diff --git a/.gitignore b/.gitignore index ba7b3e22c..9cff59870 100644 --- a/.gitignore +++ b/.gitignore @@ -146,3 +146,4 @@ input/EUROMODoutput/baseline/* .DS_Store input/InitialPopulations/original/* +input/InitialPopulations/base/* diff --git a/config/default.yml b/config/default.yml index f4640ff9c..93b7ee953 100644 --- a/config/default.yml +++ b/config/default.yml @@ -17,9 +17,9 @@ maxNumberOfRuns: 1 # number of sequential simulation runs executeWithGui: false # true = launch JAS-mine GUI; false = headless (required on servers/CI) randomSeed: 606 # seed for the first run; incremented automatically if randomSeedInnov is true -startYear: 2019 # first year of simulation (must have matching input/donor data) -endYear: 2022 # last year of simulation (inclusive) -popSize: 50000 # simulated population size (larger = more accurate, slower) +startYear: 2011 # first year of simulation (must have matching input/donor data) +endYear: 2024 # last year of simulation (inclusive) +popSize: 100000 # simulated population size (larger = more accurate, slower) # countryString: "United Kingdom" # Auto-detected from donor DB if omitted # integrationTest: false # true = write output to a fixed folder for comparison in CI tests diff --git a/input/DatabaseCountryYear.xlsx b/input/DatabaseCountryYear.xlsx index 05ed7d165..135367313 100644 Binary files a/input/DatabaseCountryYear.xlsx and b/input/DatabaseCountryYear.xlsx differ diff --git a/input/EUROMODpolicySchedule.xlsx b/input/EUROMODpolicySchedule.xlsx index 8c8bdae52..72ca67946 100644 Binary files a/input/EUROMODpolicySchedule.xlsx and b/input/EUROMODpolicySchedule.xlsx differ diff --git a/input/InitialPopulations/compile/00_master.do b/input/InitialPopulations/compile/00_master.do index 0fa05bf75..1507cce73 100644 --- a/input/InitialPopulations/compile/00_master.do +++ b/input/InitialPopulations/compile/00_master.do @@ -176,7 +176,7 @@ global scProvWaves "f g h i j k l m n o" //Next time available in wave 16 p global firstSimYear = 2010 global lastSimYear = 2024 global wealthStartYear = 2015 -global wealthEndYear = 2019 +global wealthEndYear = 2021 * Define threshold ages @@ -216,6 +216,65 @@ global age_force_leave_spell1_edu 30 global age_have_child_max 49 // allow this to be led by the data +/************************************************************************************** +* INFLATION FOR DEFLATING FINANCIALS TO REFERENCE YEAR + +CPIH INDEX 00: ALL ITEMS 2015=100 +CDID L522 +Source dataset ID MM23 +PreUnit +Unit Index, base year = 100 +Release date 20-03-2024 +Next release 17 April 2024 +https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 +**************************************************************************************/ +global inflation_minyear = 2008 +global inflation_maxyear = 2025 +matrix inflation = ( /// +0.862 \ /// 2009 +0.879 \ /// 2009 +0.901 \ /// 2010 +0.936 \ /// 2011 +0.96 \ /// 2012 +0.982 \ /// 2013 +0.996 \ /// 2014 +1 \ /// 2015 +1.01 \ /// 2016 +1.036 \ /// 2017 +1.06 \ /// 2018 +1.078 \ /// 2019 +1.089 \ /// 2020 +1.116 \ /// 2021 +1.205 \ /// 2022 +1.286 \ /// 2023 +1.329 \ /// 2024 +1.329) /// 2025 //to update when becomes available + + +/************************************************************************************** +* social care wage rates (real 2015 prices for consistency with inflation figures) +**************************************************************************************/ +global careWageRate_minyear = 2010 +global careWageRate_maxyear = 2025 +matrix careHourlyWageRates = ( /// +9.04 \ /// 2010 +9.12 \ /// 2011 +8.91 \ /// 2012 +8.71 \ /// 2013 +8.58 \ /// 2014 +8.79 \ /// 2015 +9.13 \ /// 2016 +9.22 \ /// 2017 +9.37 \ /// 2018 +9.61 \ /// 2019 +9.97 \ /// 2020 +9.92 \ /// 2021 +10.01 \ /// 2022 +10.01 \ /// 2023 +10.01 \ /// 2024 +10.01) /// 2025 + + /************************************************************************************** * ROUTE TO WORKER FILES **************************************************************************************/ @@ -230,7 +289,6 @@ do "${dir_do}/04_social_care_provided.do" do "${dir_do}/05_create_benefit_units.do" * reweight data and slice into yearly segments do "${dir_do}/06_reweight_and_slice.do" - * impute wealth data for selected years do "${dir_do}/07_was_wealth_data.do" forvalues year = $wealthStartYear / $wealthEndYear { diff --git a/input/InitialPopulations/compile/02_create_UKHLS_variables.do b/input/InitialPopulations/compile/02_create_UKHLS_variables.do index 876273190..1a33ed8e8 100644 --- a/input/InitialPopulations/compile/02_create_UKHLS_variables.do +++ b/input/InitialPopulations/compile/02_create_UKHLS_variables.do @@ -2107,36 +2107,12 @@ replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1 if dhhtp_c4 == 4 drop dnc013 dnc1418 -/************************Income CPI********************************************/ -/*CPIH INDEX 00: ALL ITEMS 2015=100 -CDID L522 -Source dataset ID MM23 -PreUnit -Unit Index, base year = 100 -Release date 20-03-2024 -Next release 17 April 2024 -https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 -*/ +/************************Inflation deflators********************************************/ gen CPI = . -replace CPI = 0.879 if intdaty_dv == 2009 -replace CPI = 0.901 if intdaty_dv == 2010 -replace CPI = 0.936 if intdaty_dv == 2011 -replace CPI = 0.96 if intdaty_dv == 2012 -replace CPI = 0.982 if intdaty_dv == 2013 -replace CPI = 0.996 if intdaty_dv == 2014 -replace CPI = 1 if intdaty_dv == 2015 -replace CPI = 1.01 if intdaty_dv == 2016 -replace CPI = 1.036 if intdaty_dv == 2017 -replace CPI = 1.06 if intdaty_dv == 2018 -replace CPI = 1.078 if intdaty_dv == 2019 -replace CPI = 1.089 if intdaty_dv == 2020 -replace CPI = 1.116 if intdaty_dv == 2021 -replace CPI = 1.205 if intdaty_dv == 2022 -replace CPI = 1.286 if intdaty_dv == 2023 -replace CPI = 1.329 if intdaty_dv == 2024 -replace CPI = 1.329 if intdaty_dv == 2025 //to update when becomes available - +forvalues yy = $inflation_minyear/$inflation_maxyear { + replace CPI = inflation[`yy'-${inflation_minyear}+1,1] if intdaty_dv == `yy' +} /**************************** Hourly labour income ***************************************/ @@ -3480,6 +3456,11 @@ gen total_wealth = -9 gen total_pensions = -9 gen housing_wealth = -9 gen mortgage_debt = -9 +gen unsecured_low_debt = -9 +gen unsecured_high_debt = -9 +gen contRateOPEe = -9 +gen contRateOPEr = -9 +gen contRatePP = -9 gen smp = -9 gen rnk = -9 gen mtc = -9 @@ -3487,6 +3468,8 @@ label var total_wealth "total wealth net of liabilities of benefit unit includin label var total_pensions "value of all private (personal and occupational) pensions of benefit unit" label var housing_wealth "value of main home gross of mortgage debt of benefit unit" label var mortgage_debt "total mortgage debt owed on main home of benefit unit" +label var unsecured_low_debt "low-cost unsecured debt" +label var unsecured_high_debt "high-cost unsecured debt" *check for duplicates in the pooled dataset duplicates tag idperson idhh swv, gen(dup) diff --git a/input/InitialPopulations/compile/03_social_care_received.do b/input/InitialPopulations/compile/03_social_care_received.do index d6a54b69a..a841490c9 100644 --- a/input/InitialPopulations/compile/03_social_care_received.do +++ b/input/InitialPopulations/compile/03_social_care_received.do @@ -21,25 +21,7 @@ global seedBase = 3141592 global seedAdjust = 0 global careWageRate_minyear = 2010 -* social care wage rates (real 2015 prices for consistency with inflation figures) -matrix careHourlyWageRates = (9.04 \ /// 2010 -9.12 \ /// 2011 -8.91 \ /// 2012 -8.71 \ /// 2013 -8.58 \ /// 2014 -8.79 \ /// 2015 -9.13 \ /// 2016 -9.22 \ /// 2017 -9.37 \ /// 2018 -9.61 \ /// 2019 -9.97 \ /// 2020 -9.92 \ /// 2021 -10.01 \ /// 2022 -10.01 \ /// 2023 -10.01 \ /// 2024 -10.01) /// 2025 - -/*TO UPDATE FOR RECENT YEARS */ + /********************************************************************** * start analysis @@ -459,23 +441,10 @@ tab formal_socare_hrs if rec_care2==3 * evaluate formal care costs *************************************************************************************/ cap gen formal_socare_cost = -9 -//replace formal_socare_cost = $careHourlyWageRates[`year' - $careWageRate_minyear + 1] * formal_socare_hrs if (formal_socare_hrs>0) -replace formal_socare_cost = 9.04 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 -replace formal_socare_cost = 9.12 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 -replace formal_socare_cost = 8.91 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2011 -replace formal_socare_cost = 8.71 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2012 -replace formal_socare_cost = 8.58 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2013 -replace formal_socare_cost = 8.79 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2014 -replace formal_socare_cost = 9.13 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2016 -replace formal_socare_cost = 9.22 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2017 -replace formal_socare_cost = 9.37 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2018 -replace formal_socare_cost = 9.61 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2019 -replace formal_socare_cost = 9.97 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2020 -replace formal_socare_cost = 9.92 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2021 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2022 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2023 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2024 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2025 +forvalues yy = $careWageRate_minyear/$careWageRate_maxyear { + + replace formal_socare_cost = formal_socare_hrs * careHourlyWageRates[`yy'-${careWageRate_minyear},1] if (formal_socare_hrs>0) & stm==`yy' +} /************************************************************************************** diff --git a/input/InitialPopulations/compile/04_social_care_provided.do b/input/InitialPopulations/compile/04_social_care_provided.do index e28b3105c..6c626ef00 100644 --- a/input/InitialPopulations/compile/04_social_care_provided.do +++ b/input/InitialPopulations/compile/04_social_care_provided.do @@ -6,7 +6,7 @@ * COUNTRY: UK * DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Justin van de Ven, Daria Popova -* LAST UPDATE: 15 Jan 2026 DP +* LAST UPDATE: 11 Aug 2026 JV * NOTE: Called from 00_master.do - see master file for further details *************************************************************************************** @@ -20,6 +20,7 @@ log using "${dir_log}/04_social_care_provided.log", replace **********************************************************************/ cd "${dir_data}" disp "identifying social care provision" +set seed 12345 // pooled data foreach waveid in $scProvWaves { @@ -30,7 +31,52 @@ foreach waveid in $scProvWaves { rename *, l rename `waveid'_* * gen swv = `waveno' - keep pidp swv aidhrs aidhu* + if (`waveno' < 14) { + rename indinui_xw wgt + } + else { + rename inding2_xw wgt + } + + // reallocate aidhrs categories 8 and 9 to categories 1 to 7 + qui { + + sum wgt if inlist(aidhrs, 1,2,3), meanonly + local sumw123 = r(sum) + sum wgt if aidhrs==1, meanonly + local p1 = r(sum) / `sumw123' + sum wgt if aidhrs==2, meanonly + local p2 = r(sum) / `sumw123' + local cut1 = `p1' + local cut2 = `p1' + `p2' + + sum wgt if inlist(aidhrs, 4,5,6,7), meanonly + local sumw4567 = r(sum) + sum wgt if aidhrs==4, meanonly + local p4 = r(sum) / `sumw4567' + sum wgt if aidhrs==5, meanonly + local p5 = r(sum) / `sumw4567' + sum wgt if aidhrs==6, meanonly + local p6 = r(sum) / `sumw4567' + local cut4 = `p4' + local cut5 = `cut4' + `p5' + local cut6 = `cut5' + `p6' + + gen _u = runiform() + rename aidhrs aidhrs_orig + gen aidhrs = aidhrs_orig + replace aidhrs = 1 if (aidhrs == 8 & _u <= `cut1') + replace aidhrs = 2 if (aidhrs == 8 & _u <= `cut2') + replace aidhrs = 3 if (aidhrs == 8) + + replace aidhrs = 4 if (aidhrs == 9 & _u <= `cut4') + replace aidhrs = 5 if (aidhrs == 9 & _u <= `cut5') + replace aidhrs = 6 if (aidhrs == 9 & _u <= `cut6') + replace aidhrs = 7 if (aidhrs == 9) + drop _u + } + + keep pidp swv aidhrs aidhu* wgt save "${dir_data}/int_temp.dta", replace use "${dir_ukhls_data}/`waveid'_egoalt.dta", clear @@ -48,10 +94,9 @@ foreach waveid in $scProvWaves { drop if (chk==1) drop chk merge 1:1 pidp using "${dir_data}/int_temp.dta", keep(2 3) nogen - keep pidp swv aidhrs aidhu* rindiv* + keep pidp swv aidhrs aidhu* rindiv* wgt save "${dir_data}/ukhls_scprov_`waveid'.dta", replace } -clear all foreach waveid in $scProvWaves { if ("`waveid'" == "f") { use "${dir_data}/ukhls_scprov_`waveid'.dta", clear @@ -109,8 +154,8 @@ replace aidhrs_adj = 27 if (aidhrs==4) replace aidhrs_adj = 42 if (aidhrs==5) replace aidhrs_adj = 74.5 if (aidhrs==6) replace aidhrs_adj = 120 if (aidhrs==7) -replace aidhrs_adj = 5.48 if (aidhrs==8) //weighted average of 1 to 3 -replace aidhrs_adj = 71.5 if (aidhrs==9) //weighted average of 4 to 7 +//replace aidhrs_adj = 5.48 if (aidhrs==8) //weighted average of 1 to 3 +//replace aidhrs_adj = 71.5 if (aidhrs==9) //weighted average of 4 to 7 gen care_nonpartner = (care_parent + care_child + care_others > 0) gen careWho = 0 diff --git a/input/InitialPopulations/compile/07_was_wealth_data.do b/input/InitialPopulations/compile/07_was_wealth_data.do index fe21a868e..fd535098c 100644 --- a/input/InitialPopulations/compile/07_was_wealth_data.do +++ b/input/InitialPopulations/compile/07_was_wealth_data.do @@ -7,11 +7,12 @@ * DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * WAS EUL version - UKDA-7215-stata [to wave 7] * AUTHORS: Liang Shi (LS), Justin van de Ven (JV), Daria Popova (DP) -* LAST UPDATE: 06/02/2026 (LS) +* LAST UPDATE: 22/07/2026 (JV) * NOTE: Called from 00_master.do - see master file for further details * * File currently compiles data to merge from 2016 -* This could be extended to at least 2011 and up to round 8 +* This could be extended to at least 2011 +* Builds synthetic longitudinal ID: was_pid * * Approach involves identifying total net wealth (wealth), * total private pension wealth (personal and occupational), gross @@ -32,6 +33,7 @@ WAVE 5: 2014 (7385), 2015 (9480), 2016 (2173) WAVE 6: 2016 (6884), 2017 (8970), 2018 (2175) WAVE 7: 2018 (6855), 2019 (8756), 2020 (1923) + WAVE 8: 2020 (7634), 2021 (6362), 2022 (1132) LS: In the parentheses are numbers of households involved in WAS waves To obtain such statistics (for example wave 5), use: @@ -52,8 +54,6 @@ log using "${dir_log}/07_was_wealth_data.log", replace /**************************************************************/ cd "${dir_data}" disp "analysing WAS wealth data" -clear all -set maxvar 10000 /**************************************************************/ @@ -62,9 +62,10 @@ set maxvar 10000 * /**************************************************************/ local ww = 5 -foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// - "$dir_was_data\was_round_6_hhold_eul_april_2022.dta" /// - "$dir_was_data\was_round_7_hhold_eul_march_2022.dta" { +foreach file in "${dir_was_data}/was_round_5_hhold_eul_feb_20.dta" /// + "${dir_was_data}/was_round_6_hhold_eul_april_2022.dta" /// + "${dir_was_data}/was_round_7_hhold_eul_march_2022.dta" /// + "${dir_was_data}/was_round_8_hhold_eul_may_2025_230525.dta" { use "`file'", clear rename *, l @@ -116,7 +117,7 @@ foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// keep case year dvhvalue main_mort flat room house_d house_s house_t accm_o accm_m accm_r accm_f hrp_manager hrp_intermediate sort case - save "$dir_data\was_temp_hh`ww'.dta", replace + save "${dir_data}/was_temp_hh`ww'.dta", replace local ww = `ww' + 1 } @@ -128,9 +129,10 @@ foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// /**************************************************************/ local ww = 5 local ww0 = 5 -foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// - "$dir_was_data\was_round_6_person_eul_april_2022.dta" /// - "$dir_was_data\was_round_7_person_eul_june_2022.dta" { +foreach file in "${dir_was_data}/was_round_5_person_eul_oct_2020.dta" /// + "${dir_was_data}/was_round_6_person_eul_april_2022.dta" /// + "${dir_was_data}/was_round_7_person_eul_june_2022.dta" /// + "${dir_was_data}/was_round_8_person_eul_may_2025_230525.dta" { disp "compiling WAS wealth data for wave `ww'" qui { @@ -139,50 +141,125 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// rename *, l if (`ww' < 6) { - keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt /// - btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' /// - pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww' dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totccr`ww'_sum dvffassetsr`ww' dvfinfvalr`ww' tothpr`ww' /// - tot_losr`ww' totmor`ww' dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' + keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i /// + dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i /// + dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' /// + enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' pprgam1w`ww' pprgam2w`ww' pprgam3w`ww' /// + pprgpe1w`ww' pprgpe2w`ww' pprgpe3w`ww' pplsta1w`ww' pplsta2w`ww' pplsta3w`ww' pplstp1w`ww' pplstp2w`ww' pplstp3w`ww' /// + pocnfr1w`ww' pocnfr2w`ww' pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' /// + dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' /// + dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' /// + dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totccr`ww'_sum dvffassetsr`ww'_sum dvfinfvalr`ww' /// + tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' /// + dltype*w`ww' dlint*w`ww' dnewltype*w`ww' dnewlowe*w`ww' lnos*r`ww' flns*r`ww' rename totccr`ww'_sum totcscr`ww'_sum + rename dvffassetsr`ww'_sum dvffassetsr`ww' recode partnow`ww' (missing=17) recode partnow`ww' (-7=17) } else if (`ww' == 6) { - keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt /// - btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' /// - pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww' dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum dvffassetsr`ww' dvfinfvalr`ww' tothpr`ww' /// - tot_losr`ww' totmor`ww' dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' + keep caser`ww' personw`ww' caser5 personw5 partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' /// + dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i /// + dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt btype1w`ww' qhealth1w`ww' /// + lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' /// + dvecactr`ww' pprgam1w`ww' pprgam2w`ww' pprgam3w`ww' pprgpe1w`ww' pprgpe2w`ww' pprgpe3w`ww' pplsta1w`ww' pplsta2w`ww' /// + pplsta3w`ww' pplstp1w`ww' pplstp2w`ww' pplstp3w`ww' pcontppw`ww' dvemeeamt1w`ww' dvemeeamt2w`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1w`ww' pocnfr2w`ww' pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// + dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' /// + totcscr`ww'_sum totcsc_transr`ww'_sum totcsc_persr`ww'_sum dvffassetsr`ww'_sum dvfinfvalr`ww' tothpr`ww'_sum tot_losr`ww' /// + tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' dltype*w`ww' dlint*w`ww' /// + dnewltype*w`ww' dnewlowe*w`ww' lnos*r`ww' flns*r`ww' + rename dvffassetsr`ww'_sum dvffassetsr`ww' recode partnow`ww' (missing=17) } - else { - keep caser`ww' personr`ww' partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt /// - btype1r`ww' qhealth1r`ww' lsillr`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// - pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum dvfinfvalr`ww' tothpr`ww' tot_losr`ww' /// - totmor`ww' dvvaldbtr`ww' dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' + else if (`ww' == 7) { + keep caser`ww' personr`ww' caser6 personw6 caser5 personw5 partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' dvgippenr`ww' /// + dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i /// + dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt btype1r`ww' qhealth1r`ww' /// + lsillr`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// + pcontppr`ww' pprgam1r`ww' pprgam2r`ww' pprgam3r`ww' pprgpe1r`ww' pprgpe2r`ww' pprgpe3r`ww' pplsta1r`ww' pplsta2r`ww' /// + pplsta3r`ww' pplstp1r`ww' pplstp2r`ww' pplstp3r`ww' dvemeeamt1r`ww' dvemeeamt2r`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1r`ww'_i pocnfr2r`ww'_i pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// + dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum totcsc_transr`ww'_sum /// + totcsc_persr`ww'_sum dvfinfvalr`ww' tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' /// + dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' dltype*r`ww' dlint*r`ww' dnewltype*r`ww' /// + dnewlowe*r`ww' lnos*r`ww' flns*r`ww' rename dvffassetsr`ww'_sum dvffassetsr`ww' rename dvdbincallr`ww' dvdbrwealthvalr`ww' gen dvpfcurvalr`ww' = dvretdc_accessr`ww' + dvretdc_noaccessr`ww' gen dvpfddvr`ww' = 0 recode partnor`ww' (missing=17) } + else { // for round/wave 8 and above + keep caser`ww' personr`ww' caser7 personr7 caser6 personw6 caser5 personw5 partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' /// + dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i /// + dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt /// + btype1r`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// + pcontppr`ww' pprgam1r`ww' pprgam2r`ww' pprgam3r`ww' pprgpe1r`ww' pprgpe2r`ww' pprgpe3r`ww' pplsta1r`ww' pplsta2r`ww' /// + pplsta3r`ww' pplstp1r`ww' pplstp2r`ww' pplstp3r`ww' dvemeeamt1r`ww' dvemeeamt2r`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1r`ww'_i pocnfr2r`ww'_i pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww'_sum /// + dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspen_oldr`ww' dvpinpval_oldr`ww' pincinp_oldr`ww' totcscr`ww'_sum /// + totcsc_transr`ww'_sum totcsc_persr`ww'_sum tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbt_oldr`ww' /// + dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' dltype*r`ww' dlint*r`ww' dnewltype*r`ww' /// + dnewlowe*r`ww' lnos*r`ww' flns*r`ww' + rename dvffassetsr`ww'_sum dvffassetsr`ww' // similar rename as round 7 + rename dvfinfvalr`ww'_sum dvfinfvalr`ww' + rename dvvaldbt_oldr`ww' dvvaldbtr`ww' // Total value of defined benefit occupational scheme - Previous pension methodology + rename dvspen_oldr`ww' dvspenr`ww' // Value of pensions expected from former spouse/partner - Previous pension methodology + rename dvpinpval_oldr`ww' dvpinpvalr`ww' + rename pincinp_oldr`ww' pincinpr`ww' + rename dvdbincallr`ww' dvdbrwealthvalr`ww' // similar remane as round 7 + gen dvpfcurvalr`ww' = dvretdc_accessr`ww' + dvretdc_noaccessr`ww' + gen dvpfddvr`ww' = 0 + // Round 8 person file has no direct counterpart to qhealth1r`ww' / lsillr`ww'. + gen qhealth1r`ww' = . // removed + gen lsillr`ww' = . // + recode partnor`ww' (missing=17) + } if (`ww' < 7) { rename *w`ww'* ** } rename *r`ww'* ** + + // Standardise unsecured-debt stock variables across rounds. + // Round 5 has total card balances but not persistent/transient splits. + foreach uv in totcsc_trans_sum totcsc_pers_sum tot_los_exc_slc tothp_sum totmo_sum { + capture confirm variable `uv' + if _rc gen `uv' = . + } + foreach stem in dltype dlint dnewltype dnewlowe lnos flns { + forvalues ii = 1/9 { + capture confirm variable `stem'`ii' + if _rc gen `stem'`ii' = . + } + } + + // Ensure linkage variables exist in all rounds (missing where unavailable) + foreach lv in caser5 caser6 caser7 personw5 personw6 personr7 { + capture confirm variable `lv' + if _rc gen `lv' = . + } + keep if (!missing(case) & !missing(person)) + gen was_round = `ww' + label var was_round "WAS round number" // merge with household level data sort case person - merge m:1 case using "$dir_data\was_temp_hh`ww'.dta", nogen sorted + merge m:1 case using "${dir_data}/was_temp_hh`ww'.dta", gen(merge_hh) sorted keep(master match) + + * Expect every person-record case to have a matching household record + count if merge_hh == 1 + assert r(N) == 0 + tab merge_hh + + drop merge_hh // ypnbihs recode dvgiemp dvgise dvgippen dvgiinv dvoigrrannual_i dvoiggtannual_i dvoigegannual_i dvoigfrannual_i dvoigmaannual_i dvoigroannual_i dvoigopannual_i (missing=0) @@ -222,6 +299,16 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// gsort case person /* allow for children of non-reference adults */ by case: replace bu=bu[_n-1] if (chld==1) & (bu==person_id) label var bu "benefit unit number" + replace bu = person_id if missing(bu) + gen bu_rp = (person_id==bu) + label var bu_rp "benefit unit reference person" + bysort was_round case bu: egen n_rp = total(bu_rp==1) + bysort was_round case bu (person_id): replace bu_rp = 1 if n_rp==0 & _n==1 + replace bu_rp = 0 if missing(bu_rp) + drop n_rp + bysort was_round case bu: egen n_rp = total(bu_rp==1) + assert n_rp==1 + drop n_rp gsort case bu by case bu: egen hrp_bu = sum(hrp) @@ -276,6 +363,79 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// replace earnings = earnings + dvgise if ((dvgise<.) & (dvgise>0)) label var earnings "gross earnings" + // private pension contributions: core (regular) and fallback (last contribution) + foreach vv in pprgam1 pprgam2 pprgam3 pprgpe1 pprgpe2 pprgpe3 pplsta1 pplsta2 pplsta3 pplstp1 pplstp2 pplstp3 pcontpp dvcontocc_emee_dc1 dvcontocc_emee_dc2 pocnfr1 pocnfr2 dvemeeamt1 dvemeeamt2 { + capture confirm variable `vv' + if _rc gen `vv' = . + capture replace `vv' = . if `vv' < 0 + } + + foreach jj in 1 2 3 { + gen pp_core_ann_`jj' = . + replace pp_core_ann_`jj' = pprgam`jj' * (52.0 / pprgpe`jj') if pprgam`jj'>=0 & inlist(pprgpe`jj',1,2,3,4,13,26,52) + replace pp_core_ann_`jj' = pprgam`jj' * 12 if pprgam`jj'>=0 & pprgpe`jj'==5 + replace pp_core_ann_`jj' = pprgam`jj' * pprgpe`jj' if pprgam`jj'>=0 & inlist(pprgpe`jj',8,9,10) + + gen pp_fallback_ann_`jj' = . + replace pp_fallback_ann_`jj' = pplsta`jj' * (52.0 / pplstp`jj') if pplsta`jj'>=0 & inlist(pplstp`jj',1,2,3,4,13,26,52) + replace pp_fallback_ann_`jj' = pplsta`jj' * 12 if pplsta`jj'>=0 & pplstp`jj'==5 + replace pp_fallback_ann_`jj' = pplsta`jj' * pplstp`jj' if pplsta`jj'>=0 & inlist(pplstp`jj',8,9,10) + } + + egen pp_core_annual = rowtotal(pp_core_ann_1 pp_core_ann_2 pp_core_ann_3) + egen pp_fallback_annual = rowtotal(pp_fallback_ann_1 pp_fallback_ann_2 pp_fallback_ann_3) + gen pp_contrib_annual = pp_core_annual + replace pp_contrib_annual = pp_fallback_annual if (missing(pp_contrib_annual) | pp_contrib_annual<=0) & pp_fallback_annual>0 + replace pp_contrib_annual = 0 if missing(pp_contrib_annual) + gen chk = pp_contrib_annual * (earnings < 0.01) + gsort was_round bu + by was_round bu: egen chk2 = sum(chk) + by was_round bu: egen earn_max = max(earnings) + gen pp_reallocate = 0 + replace pp_reallocate = chk2 if (earnings == earn_max & earnings > 0.01) + gen pp_contrib_annual2 = pp_contrib_annual + pp_reallocate + replace pp_contrib_annual2 = 0 if (chk==1) + gen pp_contrate = 0 + replace pp_contrate = pp_contrib_annual2 / (earnings) * 100 if (pp_contrib_annual2>=0 & pp_contrib_annual2<. & earnings>0 & earnings<.) + gen pp_membi = (pp_contrate>0.01) * (pp_contrate<.) * (adlt) + egen pp_membu = sum(pp_membi), by (case bu) + + //gen ocdc_contrate_emee = dvcontocc_emee_dc1 * (dvcontocc_emee_dc1<.) + dvcontocc_emee_dc2 * (dvcontocc_emee_dc2 <.) + //gen ocdc_contrate_emer = dvcontocc_emer_dc1 * (dvcontocc_emer_dc1<.) + dvcontocc_emer_dc2 * (dvcontocc_emer_dc2 <.) + + + gen byte pp_contrib_source_core = (pp_core_annual>0) + gen byte pp_contrib_source_fallback = (pp_core_annual<=0 & pp_fallback_annual>0) + label var pp_core_annual "Personal pension annual contribution (core regular amount-period)" + label var pp_fallback_annual "Personal pension annual contribution (fallback last contribution amount-period)" + label var pp_contrib_annual "Personal pension annual contribution (core with fallback)" + label var pp_contrib_annual2 "Personal pension annual contribution (core with fallback and reallocation)" + label var pp_contrib_source_core "1 if pp_contrib_annual sourced from core regular contribution" + label var pp_contrib_source_fallback "1 if pp_contrib_annual sourced from fallback last contribution" + label var pp_contrate "Personal pension contribution rate (% of gross employment income)" +// label var ocdc_contrate_emee "DC occupational employee pension contribution rate (% of gross employment income)" +// label var ocdc_contrate_emer "DC occupational employer pension contribution rate (% of gross employment income)" + label var pp_membu "number of personal pension members in benefit unit" + + gen occ_emp_contrib_rate = . + replace occ_emp_contrib_rate = max(dvcontocc_emee_dc1,0) + max(dvcontocc_emee_dc2,0) if !missing(dvcontocc_emee_dc1) | !missing(dvcontocc_emee_dc2) + replace occ_emp_contrib_rate = max(pocnfr1,0) + max(pocnfr2,0) if missing(occ_emp_contrib_rate) & (!missing(pocnfr1) | !missing(pocnfr2)) + gen occ_emp_contrib_annual = . + replace occ_emp_contrib_annual = dvemeeamt1 + dvemeeamt2 if (dvemeeamt1>=0 | dvemeeamt2>=0) + replace occ_emp_contrib_annual = earnings * occ_emp_contrib_rate / 100 if missing(occ_emp_contrib_annual) & earnings>=0 & occ_emp_contrib_rate>=0 + replace occ_emp_contrib_annual = 0 if missing(occ_emp_contrib_annual) + label var occ_emp_contrib_rate "Occupational DC employee contribution rate (%)" + label var occ_emp_contrib_annual "Occupational DC employee annual contribution" + + gen pp_contrib_rate_income = . + replace pp_contrib_rate_income = pp_contrib_annual / inc if inc>0 + gen priv_total_contrib_rate_inc = . + replace priv_total_contrib_rate_inc = (pp_contrib_annual + occ_emp_contrib_annual) / inc if inc>0 + label var pp_contrib_rate_income "Personal pension contribution rate relative to annual private income" + label var priv_total_contrib_rate_inc "Personal + occupational employee contribution rate relative to annual private income" + + drop pp_core_ann_1 pp_core_ann_2 pp_core_ann_3 pp_fallback_ann_1 pp_fallback_ann_2 pp_fallback_ann_3 + // individual labour force status gen sempi=(stat==2) gen fti= (stat==1 & ftptwk==1) @@ -306,6 +466,9 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// gen op_memb = (pemmem==1) label var op_memb "whether member of occupational pension" + gen op_membui = op_memb * adlt + egen op_membu = sum(op_membui), by (case bu) + label var op_membu "number of occupational pension members in benefit unit" gen op_db = (((poctyp1==2) + (poctyp2==2))>0) * op_memb label var op_db "whether has current defined benefit scheme" @@ -369,8 +532,85 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// // financial and non-financial assets desc dvffassets desc dvfinfval - replace totcsc_sum = 0 if (totcsc_sum>=.) - gen assts = dvffassets + dvfinfval - totcsc_sum - tothp - tot_los - totmo + replace totcsc_sum = 0 if missing(totcsc_sum) + replace tothp_sum = 0 if missing(tothp_sum) + replace tot_los = 0 if missing(tot_los) + replace totmo_sum = 0 if missing(totmo_sum) + + gen cc_debt_i = totcsc_sum + gen cc_debt_trans_i = totcsc_trans_sum + gen cc_debt_pers_i = totcsc_pers_sum + gen hp_debt_i = tothp_sum + gen loan_debt_i = tot_los + gen loan_debt_exc_slc_i = tot_los_exc_slc + gen mail_debt_i = totmo_sum + gen loan_doorstep_i = 0 + gen loan_pawnbroker_i = 0 + gen loan_payday_i = 0 + gen informal_loan_debt_i = 0 + + forvalues ii = 1/9 { + replace loan_doorstep_i = loan_doorstep_i + lnos`ii' /// + if dltype`ii' == 2 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace loan_pawnbroker_i = loan_pawnbroker_i + lnos`ii' /// + if dltype`ii' == 3 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace loan_payday_i = loan_payday_i + lnos`ii' /// + if dltype`ii' == 10 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace informal_loan_debt_i = informal_loan_debt_i + flns`ii' /// + if dltype`ii' == 7 & flns`ii' > 0 + + replace loan_doorstep_i = loan_doorstep_i + dnewlowe`ii' /// + if dnewltype`ii' == 2 & dnewlowe`ii' > 0 + replace loan_pawnbroker_i = loan_pawnbroker_i + dnewlowe`ii' /// + if dnewltype`ii' == 3 & dnewlowe`ii' > 0 + replace loan_payday_i = loan_payday_i + dnewlowe`ii' /// + if dnewltype`ii' == 10 & dnewlowe`ii' > 0 + replace informal_loan_debt_i = informal_loan_debt_i + dnewlowe`ii' /// + if dnewltype`ii' == 7 & dnewlowe`ii' > 0 + } + gen highcost_loan_debt_i = loan_doorstep_i + loan_pawnbroker_i + loan_payday_i + + egen cc_debt = sum(cc_debt_i), by (case bu) + egen cc_debt_trans = sum(cc_debt_trans_i), by (case bu) + egen cc_debt_pers = sum(cc_debt_pers_i), by (case bu) + egen hp_debt = sum(hp_debt_i), by (case bu) + egen loan_debt = sum(loan_debt_i), by (case bu) + egen loan_debt_exc_slc = sum(loan_debt_exc_slc_i), by (case bu) + egen mail_debt = sum(mail_debt_i), by (case bu) + egen loan_doorstep = sum(loan_doorstep_i), by (case bu) + egen loan_pawnbroker = sum(loan_pawnbroker_i), by (case bu) + egen loan_payday = sum(loan_payday_i), by (case bu) + egen informal_loan_debt = sum(informal_loan_debt_i), by (case bu) + egen highcost_loan_debt = sum(highcost_loan_debt_i), by (case bu) + gen loan_debt_slc = loan_debt - loan_debt_exc_slc if !missing(loan_debt) & !missing(loan_debt_exc_slc) + gen unsec_debt_total = cc_debt + hp_debt + loan_debt + mail_debt + gen unsec_debt_core = cc_debt + loan_debt_exc_slc + gen highcost_debt_proxy = cc_debt_pers + mail_debt + highcost_loan_debt + gen lowcost_debt = hp_debt + loan_debt_exc_slc - highcost_loan_debt + + replace cc_debt_trans = . if was_round == 5 + replace cc_debt_pers = . if was_round == 5 + replace highcost_debt_proxy = . if was_round == 5 + + label var cc_debt "Benefit-unit total credit/store/charge card debt" + label var cc_debt_trans "Benefit-unit total transient card debt (waves 6-8)" + label var cc_debt_pers "Benefit-unit total persistent card debt (waves 6-8)" + label var hp_debt "Benefit-unit total hire purchase debt" + label var loan_debt "Benefit-unit total formal/informal/SLC loan debt" + label var loan_debt_exc_slc "Benefit-unit total formal/informal loan debt excluding SLC" + label var loan_debt_slc "Benefit-unit student loan component of loan debt" + label var loan_doorstep "Benefit-unit cash-home-collector loan debt" + label var loan_pawnbroker "Benefit-unit pawnbroker/cash-converter loan debt" + label var loan_payday "Benefit-unit payday-lender loan debt" + label var informal_loan_debt "Benefit-unit informal friend/family/private loan debt" + label var highcost_loan_debt "Benefit-unit explicit high-cost loan debt" + label var mail_debt "Benefit-unit total mail order debt" + label var unsec_debt_total "Benefit-unit total unsecured debt" + label var unsec_debt_core "Benefit-unit unsecured debt: cards + non-SLC loans" + label var highcost_debt_proxy "Benefit-unit proxy high-cost debt: persistent cards + mail order + explicit high-cost loans" + label var lowcost_debt "Benefit-unit proxy low-cost debt: hire-purchase agreements and non-student/non-high-cost loans" + + gen assts = dvffassets + dvfinfval - cc_debt_i - hp_debt_i - loan_debt_i - mail_debt_i egen assets = sum(assts), by (case bu) label var assets "net value of financial and non-financial (non-property) assets" @@ -388,7 +628,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// egen tot_open = sum(op_tot), by (case bu) label var tot_open "value of aggregate occupational pension rights" gen tot_pp = tot_pen - tot_open - label var tot_pp "value of aggregate private pension rights" // Added by LS, private/personal pension rights (non-occupational) + label var tot_pp "value of aggregate personal pension rights" gen pi_temp = pincinp * (pincinp>0.01) // If pincinp is greater than 0.01, pi_temp = pincinp; otherwise, pi_temp = 0. egen pinc_now = sum(pi_temp), by (case bu) @@ -401,10 +641,10 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// replace ww = ww - main_mort if ( main_mort<.) label var ww "net wealth excluding ISAs and business equity" - save "$dir_data\chk.dta", replace + save "${dir_data}/chk.dta", replace // partner characteristics - save "$dir_data\was_temp.dta", replace + save "${dir_data}/was_temp.dta", replace keep case bu person_id person partno healths dlltsd grad emp drop if (partno==17) @@ -420,7 +660,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// drop person rename partno person - merge 1:1 case person using "$dir_data\was_temp.dta" + merge 1:1 case person using "${dir_data}/was_temp.dta" tab partno _m drop if _m==1 drop _m @@ -430,6 +670,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// // weight gen dwt = round(xshhwgt*10,1) label var dwt "cross-sectional household weight" + drop if missing(dwt) /* dhe2 = 1 very good or better - reference @@ -437,17 +678,17 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// dhe2 = 3 fair dhe2 = 4 bad / very bad */ - gen dhe2 = 0 - replace dhe2=1 if (healths<2) + gen dhe2 = . + replace dhe2=1 if (!missing(healths) & healths<2) replace dhe2=2 if (healths==2) replace dhe2=3 if (healths==3) - replace dhe2=4 if (healths>3) + replace dhe2=4 if (!missing(healths) & healths>3) label var dhe2 "General health (4 categories)" - gen dhesp2 = 0 - replace dhesp2=1 if (p_healths<2) + gen dhesp2 = . + replace dhesp2=1 if (!missing(p_healths) & p_healths<2) replace dhesp2=2 if (p_healths==2) replace dhesp2=3 if (p_healths==3) - replace dhesp2=4 if (p_healths>3) + replace dhesp2=4 if (!missing(p_healths) & p_healths>3) rename gor gor2 rename p_grad gradsp rename p_emp empsp @@ -473,12 +714,20 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// sort bu - gen bu_rp = person_id == bu + replace bu_rp = person_id == bu + bysort was_round case bu: egen n_rp = total(bu_rp==1) + bysort was_round case bu (person_id): replace bu_rp = 1 if n_rp==0 & _n==1 + drop n_rp + bysort was_round case bu: egen n_rp = total(bu_rp==1) + assert n_rp==1 + drop n_rp gen single_woman = bu_rp * (na==1) * (sex==2) gen single_man = bu_rp * (na==1) * (sex==1) gen couple_ref = bu_rp * (na==2) gen couple = (na==2) gen single = (na==1) + + xtile qtl = inc [fweight=dwt], nq(5) gen pct = . xtile pct1 = inc [fweight=dwt] if (single_woman & grad), nq(10) @@ -499,21 +748,252 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// xtile pct1 = inc [fweight=dwt] if (couple_ref & grad==0), nq(10) replace pct = pct1 if (pct1<.) drop pct1 + + // inflation adjust + gen CPI = . + forvalues yy = $inflation_minyear/$inflation_maxyear { + + replace CPI = inflation[`yy'-${inflation_minyear}+1,1] if year == `yy' + } + foreach var in tot_pen dvhvalue main_mort wealth inc { + + replace `var' = `var' / CPI + } + // save control data - // Variables below: total value of ISAs, net value of own-business assets, net value of financial and non-financial (non-property) assets, aggregate occupational pension rights, ww, private/personal pension rights (non‑occupational) - keep case person_id bu bu_rp year sex grad gradsp dvage17 na nk* single_man /// + // Variables below: total value of ISAs, net value of own-business assets, net value of financial and non-financial (non-property) assets, aggregate occupational pension rights, ww, private/personal pension rights (non-occupational) + keep was_round case person person_id bu bu_rp year sex grad gradsp dvage17 na nk* single_man /// single_woman couple couple_ref gor2 dhe2 healths p_healths dlltsd dlltsdsp /// - idnk04 pct emp empsp tot_pen dvhvalue main_mort wealth inc was dwt + idnk04 pct qtl emp empsp tot_pen dvhvalue main_mort wealth inc was dwt /// + isa_fam bus_assets assets tot_open ww tot_pp oprop db_op dc_op dc_pen pinc_now benefits /// + totcsc_sum totcsc_trans_sum totcsc_pers_sum tothp_sum tot_los tot_los_exc_slc totmo_sum /// + cc_debt cc_debt_trans cc_debt_pers hp_debt loan_debt loan_debt_exc_slc loan_debt_slc /// + loan_doorstep loan_pawnbroker loan_payday informal_loan_debt highcost_loan_debt /// + mail_debt unsec_debt_total unsec_debt_core highcost_debt_proxy lowcost_debt /// + op_memb pp_membu op_membu op_db op_dc /// + pp_core_annual pp_fallback_annual pp_contrib_annual pp_contrib_rate_income priv_total_contrib_rate_inc /// + pp_contrib_source_core pp_contrib_source_fallback occ_emp_contrib_rate occ_emp_contrib_annual /// + caser5 caser6 caser7 personw5 personw6 personr7 if (`ww' > `ww0') { - append using "$dir_data\was_wealthdata.dta" + append using "${dir_data}/was_wealthdata.dta" } - save "$dir_data\was_wealthdata.dta", replace + drop if missing(was_round) + save "${dir_data}/was_wealthdata.dta", replace local ww = `ww' + 1 } } +/**************************************************************/ +* +* CONSTRUCT LONGITUDINAL LINKAGE ACROSS WAS ROUNDS 5-8 +* +/**************************************************************/ + +use "${dir_data}/was_wealthdata.dta", clear + +* Build round-specific person keys (current round key + backward links carried in later rounds) +gen long obs_id = _n +label var obs_id "Row identifier before longitudinal linkage assignment" + +gen case_r5 = . +gen person_r5 = . +replace case_r5 = case if was_round==5 +replace person_r5 = person if was_round==5 +replace case_r5 = caser5 if missing(case_r5) +replace person_r5 = personw5 if missing(person_r5) + +gen case_r6 = . +gen person_r6 = . +replace case_r6 = case if was_round==6 +replace person_r6 = person if was_round==6 +replace case_r6 = caser6 if missing(case_r6) +replace person_r6 = personw6 if missing(person_r6) + +gen case_r7 = . +gen person_r7_link = . +replace case_r7 = case if was_round==7 +replace person_r7_link = person if was_round==7 +replace case_r7 = caser7 if missing(case_r7) +replace person_r7_link = personr7 if missing(person_r7_link) + +gen case_r8 = . +gen person_r8 = . +replace case_r8 = case if was_round==8 +replace person_r8 = person if was_round==8 + +gen str40 key_r5 = "" +replace key_r5 = "r5:" + trim(string(case_r5, "%20.0f")) + ":" + trim(string(person_r5, "%8.0f")) if !missing(case_r5) & !missing(person_r5) + +gen str40 key_r6 = "" +replace key_r6 = "r6:" + trim(string(case_r6, "%20.0f")) + ":" + trim(string(person_r6, "%8.0f")) if !missing(case_r6) & !missing(person_r6) + +gen str40 key_r7 = "" +replace key_r7 = "r7:" + trim(string(case_r7, "%20.0f")) + ":" + trim(string(person_r7_link, "%8.0f")) if !missing(case_r7) & !missing(person_r7_link) + +gen str40 key_r8 = "" +replace key_r8 = "r8:" + trim(string(case_r8, "%20.0f")) + ":" + trim(string(person_r8, "%8.0f")) if !missing(case_r8) & !missing(person_r8) + +* Pairwise one-to-one linkage propagation across adjacent rounds +* This replaces the earlier "earliest available key wins" anchor approach. +tempfile r5_lookup r6_lookup r7_lookup assign_r5 assign_r6 assign_r7 assign_r8 assign_all + +* Round 5 lookup / assignments (base chains) +preserve + keep if was_round==5 + keep obs_id sex key_r5 + keep if key_r5!="" + rename key_r5 r5_key + isid r5_key + gen str40 chain_key = r5_key + rename sex sex_r5_lookup + save `r5_lookup', replace + + keep obs_id chain_key + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r5', replace +restore + +* Round 6: link to R5 via (caser5, personw5) +preserve + keep if was_round==6 + keep obs_id sex key_r6 caser5 personw5 + keep if key_r6!="" + rename key_r6 r6_key + gen str40 r5_key = "" + replace r5_key = "r5:" + trim(string(caser5, "%20.0f")) + ":" + trim(string(personw5, "%8.0f")) if !missing(caser5) & !missing(personw5) + + merge m:1 r5_key using `r5_lookup', keep(master match) keepusing(chain_key sex_r5_lookup) gen(_m56) + + duplicates tag r5_key if _m56==3, gen(dup_t56) + replace dup_t56 = 0 if missing(dup_t56) + duplicates tag r6_key if _m56==3, gen(dup_s56) + replace dup_s56 = 0 if missing(dup_s56) + + gen byte edge56_sex_bad = (sex != sex_r5_lookup) if _m56==3 & !missing(sex) & !missing(sex_r5_lookup) + replace edge56_sex_bad = 0 if missing(edge56_sex_bad) + + gen byte edge56_ok = (_m56==3 & dup_t56==0 & dup_s56==0 & edge56_sex_bad==0) + + gen str40 chain_key_out = "" + replace chain_key_out = chain_key if edge56_ok==1 + replace chain_key_out = r6_key if chain_key_out=="" + + rename sex sex_r6_lookup + keep obs_id r6_key sex_r6_lookup chain_key_out edge56_ok edge56_sex_bad + rename chain_key_out chain_key + save `r6_lookup', replace + + keep obs_id chain_key edge56_ok edge56_sex_bad + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r6', replace +restore + +* Round 7: link to R6 via (caser6, personw6) +preserve + keep if was_round==7 + keep obs_id sex key_r7 caser6 personw6 + keep if key_r7!="" + rename key_r7 r7_key + gen str40 r6_key = "" + replace r6_key = "r6:" + trim(string(caser6, "%20.0f")) + ":" + trim(string(personw6, "%8.0f")) if !missing(caser6) & !missing(personw6) + + merge m:1 r6_key using `r6_lookup', keep(master match) keepusing(chain_key sex_r6_lookup) gen(_m67) + + duplicates tag r6_key if _m67==3, gen(dup_t67) + replace dup_t67 = 0 if missing(dup_t67) + duplicates tag r7_key if _m67==3, gen(dup_s67) + replace dup_s67 = 0 if missing(dup_s67) + + gen byte edge67_sex_bad = (sex != sex_r6_lookup) if _m67==3 & !missing(sex) & !missing(sex_r6_lookup) + replace edge67_sex_bad = 0 if missing(edge67_sex_bad) + + gen byte edge67_ok = (_m67==3 & dup_t67==0 & dup_s67==0 & edge67_sex_bad==0) + + gen str40 chain_key_out = "" + replace chain_key_out = chain_key if edge67_ok==1 + replace chain_key_out = r7_key if chain_key_out=="" + + rename sex sex_r7_lookup + keep obs_id r7_key sex_r7_lookup chain_key_out edge67_ok edge67_sex_bad + rename chain_key_out chain_key + save `r7_lookup', replace + + keep obs_id chain_key edge67_ok edge67_sex_bad + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r7', replace +restore + +* Round 8: link to R7 via (caser7, personr7) +preserve + keep if was_round==8 + keep obs_id sex key_r8 caser7 personr7 + keep if key_r8!="" + rename key_r8 r8_key + gen str40 r7_key = "" + replace r7_key = "r7:" + trim(string(caser7, "%20.0f")) + ":" + trim(string(personr7, "%8.0f")) if !missing(caser7) & !missing(personr7) + + merge m:1 r7_key using `r7_lookup', keep(master match) keepusing(chain_key sex_r7_lookup) gen(_m78) + + duplicates tag r7_key if _m78==3, gen(dup_t78) + replace dup_t78 = 0 if missing(dup_t78) + duplicates tag r8_key if _m78==3, gen(dup_s78) + replace dup_s78 = 0 if missing(dup_s78) + + gen byte edge78_sex_bad = (sex != sex_r7_lookup) if _m78==3 & !missing(sex) & !missing(sex_r7_lookup) + replace edge78_sex_bad = 0 if missing(edge78_sex_bad) + + gen byte edge78_ok = (_m78==3 & dup_t78==0 & dup_s78==0 & edge78_sex_bad==0) + + rename chain_key chain_key_prev + gen str40 chain_key = "" + replace chain_key = chain_key_prev if edge78_ok==1 + replace chain_key = r8_key if chain_key=="" + + keep obs_id chain_key edge78_ok edge78_sex_bad + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + save `assign_r8', replace +restore + +* Combine round-specific assignments and merge back to full file +use `assign_r5', clear +append using `assign_r6' +append using `assign_r7' +append using `assign_r8' +isid obs_id +save `assign_all', replace + +use "${dir_data}/was_wealthdata.dta", clear + +gen long obs_id = _n +label var obs_id "Row identifier before longitudinal linkage assignment" + +merge 1:1 obs_id using `assign_all', nogen keep(master match) keepusing(chain_key) +assert !missing(chain_key) + +rename chain_key was_link_key +label var was_link_key "Canonical linkage key from pairwise one-to-one propagation" + +egen was_pid = group(was_link_key) +label var was_pid "Synthetic longitudinal person ID (WAS rounds 5-8 linkage)" + +sort was_pid year was_round +save "${dir_data}/was_wealthdata.dta", replace /**************************************************************/ * * ANALYSIS OF WORKING VARIABLES @@ -521,7 +1001,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// /**************************************************************/ /* -use "$dir_data\was_wealthdata.dta", clear +use "${dir_data}/was_wealthdata.dta", clear tab gor2 year if (year>2014 & year<2020) [fweight=dwt], nol tab dvage17 year if (year>2014 & year<2020 & dvage17>4) [fweight=dwt], nol @@ -608,6 +1088,7 @@ local files_to_drop was_temp_hh5.dta was_temp_hh6.dta was_temp_hh7.dta + was_temp_hh8.dta ; #delimit cr // cr stands for carriage return diff --git a/input/InitialPopulations/compile/08_wealth_to_ukhls.do b/input/InitialPopulations/compile/08_wealth_to_ukhls.do index 4651787b8..d212e423a 100644 --- a/input/InitialPopulations/compile/08_wealth_to_ukhls.do +++ b/input/InitialPopulations/compile/08_wealth_to_ukhls.do @@ -37,7 +37,7 @@ global seedAdjust = 0 *********************************************************************/ use "population_initial_fs_UK_$yearWealth", clear sort idperson -drop total_wealth total_pensions housing_wealth mortgage_debt smp rnk mtc +drop total_wealth total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP smp rnk mtc /********************************************************************** @@ -207,6 +207,22 @@ drop if (bu_rp==0) *keep if (year==$yearWealth) keep if (year>=$yearWealth-1 & year<=$yearWealth+1) +capture confirm variable unsec_debt_total +if _rc { + di as error "was_wealthdata.dta must include unsec_debt_total for initial unsecured debt stocks" + exit 111 +} +capture confirm variable highcost_debt_proxy +if _rc { + di as error "was_wealthdata.dta must include highcost_debt_proxy for initial unsecured debt stocks" + exit 111 +} +recode unsec_debt_total highcost_debt_proxy (missing=0) +gen unsec_high = highcost_debt_proxy +replace unsec_high = 0 if (unsec_high<0 | unsec_high>=.) +gen unsec_low = lowcost_debt +replace unsec_low = 0 if (unsec_low<0 | unsec_low>=.) + * limit sample gen chk = 0 sort bu @@ -295,6 +311,10 @@ gen wealthi = -9 gen tot_peni = -9 gen housingi = -9 gen mortgagei = -9 +gen unsec_lowi = -9 +gen unsec_highi = -9 +gen op_membui = -9 +gen pp_membui = -9 qui { sum treat, mean local nn = r(mean) * r(N) @@ -370,12 +390,20 @@ forval kk = 1/`nn' { local pw = tot_pen[1] local hw = dvhvalue[1] local mm = main_mort[1] + local ul = unsec_low[1] + local uh = unsec_high[1] + local op = op_membu[1] + local pp = pp_membu[1] restore replace mtc=`mtc' if (_n==`kk') replace wealthi = `ww' if (_n==`kk') replace tot_peni = `pw' if (_n==`kk') replace housingi = `hw' if (_n==`kk') replace mortgagei = `mm' if (_n==`kk') + replace unsec_lowi = `ul' if (_n==`kk') + replace unsec_highi = `uh' if (_n==`kk') + replace op_membui = `op' if (_n==`kk') + replace pp_membui = `pp' if (_n==`kk') } replace rnk=`rnk' if (_n==`kk') drop chk @@ -394,18 +422,42 @@ recode wealthi (mis=0) recode tot_peni (mis=0) recode housingi (mis=0) recode mortgagei (mis=0) +recode unsec_lowi (mis=0) +recode unsec_highi (mis=0) +recode op_membui (mis=0) +recode pp_membui (mis=0) by bu: egen total_wealth = sum(wealthi) by bu: egen total_pensions = sum(tot_peni) by bu: egen housing_wealth = sum(housingi) by bu: egen mortgage_debt = sum(mortgagei) +by bu: egen unsecured_low_debt = sum(unsec_lowi) +by bu: egen unsecured_high_debt = sum(unsec_highi) +drop op_membu pp_membu +by bu: egen op_membu = sum(op_membui) +by bu: egen pp_membu = sum(pp_membui) +gen contRateOPEe = 0 +replace contRateOPEe = 0.05 if ((treat & op_membu==1) | (op_membu==2 & (dag>17))) +gen contRateOPEr = contRateOPEe +gen contRatePP = 0 +replace contRatePP = 0.05 if ((treat & pp_membu==1) | (pp_membu==2 & (dag>17))) + recode total_wealth (-9=0) recode total_pensions (-9=0) recode housing_wealth (-9=0) recode mortgage_debt (-9=0) +recode unsecured_low_debt (-9=0) +recode unsecured_high_debt (-9=0) +recode op_membu (-9=0) +recode pp_membu (-9=0) label var total_wealth "total wealth net of liabilities of benefit unit including housing, business and private (personal and occupational) pensions" label var total_pensions "value of all private (personal and occupational) pensions of benefit unit" label var housing_wealth "value of main home gross of mortgage debt of benefit unit" label var mortgage_debt "total mortgage debt owed on main home of benefit unit" +label var unsecured_low_debt "low-cost unsecured debt of benefit unit" +label var unsecured_high_debt "high-cost unsecured debt of benefit unit" +label var contRateOPEe "Employee contribution rate to occupational pension" +label var contRateOPEr "Employer contribution rate to occupational pension" +label var contRatePP "Employee contribution rate to personal pension" save ukhls_wealthtemp3, replace /* @@ -427,7 +479,8 @@ sum total_wealth [fweight=dwt2], detail use ukhls_wealthtemp3, clear drop dvage17 year gor gor2 sex nk na dhe2 dhesp2 grad gradsp emp empsp inci inc nk04i nk04 idnk04 dhe2grad dhe2ngrad /// dlltsdgrad dlltsdngrad empage single_woman single_man couple single ee ee2 was bu couple_ref pct dwt2 treat case person_id /// -p_healths dlltsdsp healths wealth bu_rp tt dhe3 dhe4 dvage07 nk2 nk3 gor3 gor4 pct2 wealthi tot_peni housingi mortgagei +p_healths dlltsdsp healths wealth bu_rp tt dhe3 dhe4 dvage07 nk2 nk3 gor3 gor4 pct2 /// +wealthi tot_peni housingi mortgagei unsec_low unsec_high unsec_lowi unsec_highi recode rnk smp mtc (missing = -9) label var rnk "matching level: 1 = most fine, 2, 3 = most coarse, 4=no match" label var smp "matching sample - number of matched candidates to choose from" diff --git a/input/InitialPopulations/compile/09_finalise_input_data.do b/input/InitialPopulations/compile/09_finalise_input_data.do index 1be0c1461..da1e4ab76 100644 --- a/input/InitialPopulations/compile/09_finalise_input_data.do +++ b/input/InitialPopulations/compile/09_finalise_input_data.do @@ -146,7 +146,6 @@ save "$dir_data\UKHLS_pooled_ipop.dta", replace /*panel dataset with missing val forvalues yy = $firstSimYear/$lastSimYear { * load pooled data with missing values removed use "$dir_data\ukhls_pooled_ipop.dta", clear - rename *, l * limit year global year = `yy' @@ -192,26 +191,26 @@ forvalues yy = $firstSimYear/$lastSimYear { by idhh idbenefitunit: egen disp_inc = sum(ydisp) *limit saved variables - keep idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// + keep idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh - + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + order idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// - yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh - + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + recode idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// - yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh (missing = -9) + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh (missing = -9) /*Rename variables following the new Codebook */ @@ -229,11 +228,11 @@ rename dgn demMaleFlag rename dag demAge //rename dcpst demPartnerStatus rename dnc02 demNChild0to2 -rename dnc demNChild -rename ded eduSpellFlag -rename deh_c3 eduHighestC3 -rename deh_c4 eduHighestC4 -rename sedex eduExitSampleFlag +rename dnc demNChild +rename ded eduSpellFlag +rename deh_c3 eduHighestC3 +rename deh_c4 eduHighestC4 +rename sedex eduExitSampleFlag //rename jbstat labStatus //rename les_c3 labStatusC3 rename dlltsd01 healthDsblLongtermFlag @@ -274,15 +273,14 @@ rename dot01 demEthnC6 * --- Income, labour, wealth --- rename obs_earnings_hourly labWageHrly rename l1_obs_earnings_hourly labWageHrlyL1 -//rename liquid_wealth wealthLiq -//rename tot_pen wealthPensValue -//rename nvmhome wealthPrptyValue rename disp_inc yDispMonth //disposable income at the benefit unit level -rename total_wealth wealthTotValue //total wealth net of liabilities of benefit unit including housing, business and -rename mortgage_debt wealthMortgageDebtValue //total mortgage debt owed on main home of benefit unit -rename housing_wealth wealthPrptyValue //value of main home gross of mortgage debt of benefit unit -rename total_pensions wealthPensValue //value of all private (personal and occupational) pensions of benefit unit +rename total_wealth wealthTotValue //total wealth net of liabilities of benefit unit including housing, business and +rename mortgage_debt wealthMortgageDebtValue //total mortgage debt owed on main home of benefit unit +rename housing_wealth wealthPrptyValue //value of main home gross of mortgage debt of benefit unit +rename total_pensions wealthPensValue //value of all private (personal and occupational) pensions of benefit unit +rename unsecured_low_debt wealthUnsecuredDebtLowValue //value of low-cost unsecured debt of benefit unit +rename unsecured_high_debt wealthUnsecuredDebtHighValue //value of high-cost unsecured debt of benefit unit rename econ_benefits yBenReceivedFlag rename econ_benefits_nonuc yBenNonUCReceivedFlag @@ -302,7 +300,7 @@ rename need_socare careNeedFlag rename formal_socare_hrs careHrsFormal rename informal_socare_hrs careHrsInformal rename formal_socare_cost careFormalX -rename carehoursprovidedweekly careHrsProvidedWeek +rename careHoursProvidedWeekly careHrsProvidedWeek * --- Health & wellbeing --- rename dhm healthWbScore0to36 @@ -317,8 +315,8 @@ rename financial_distress yFinDstrssFlag save "$dir_data/population_initial_UK_$year.dta", replace /*panel dataset with missing values removed*/ -recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthPrptyValue wealthPensValue /// - careNeedFlag careHrsFormal careHrsInformal careFormalX careHrsProvidedWeek (-9=0) +recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue wealthPrptyValue wealthPensValue /// + careNeedFlag careHrsFormal careHrsInformal careFormalX careHrsProvidedWeek (-9=0) export delimited using "$dir_data/population_initial_UK_$year.csv", nolabel replace diff --git a/input/InitialPopulations/compile/99_training_data.do b/input/InitialPopulations/compile/99_training_data.do index 75d16299d..0f1a3333e 100644 --- a/input/InitialPopulations/compile/99_training_data.do +++ b/input/InitialPopulations/compile/99_training_data.do @@ -24,7 +24,7 @@ global dir_do "${dir_work}/do" global dir_data "${dir_work}/data" global wealthStartYear = 2015 -global wealthEndYear = 2019 +global wealthEndYear = 2021 /********************************************************************************/ @@ -184,7 +184,7 @@ rename dwt2 wgtHhCross save "$dir_data/temp10", replace // adjust continuous variables -foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yPersAndPartnerGrossDiffMonth wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue /// +foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yPersAndPartnerGrossDiffMonth wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue /// yDispMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsInformal careFormalX { gen tmp = `vv' order tmp, a(`vv') @@ -212,7 +212,7 @@ save "$dir_data/temp11", replace // set benefit unit level variables use "$dir_data/temp11", clear -foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue yDispMonth { +foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue yDispMonth { rename `vv' `vv'i bys idBu: egen `vv' = mean(`vv'i) @@ -223,7 +223,7 @@ foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross weal /************************************************************************************** * export training data *************************************************************************************/ -recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag careHrsFormal careHrsInformal careFormalX (-9=0) +recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue careNeedFlag careHrsFormal careHrsInformal careFormalX (-9=0) export delimited using "$dir_data/training_population_initial_UK_$wealthEndYear.csv", nolabel replace diff --git a/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do b/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do index 8a17508fb..1adec5f89 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do +++ b/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do @@ -441,7 +441,7 @@ process_regression, domain("socialcare") process("S3b") sheet("S3b") /// -/******************* OLS care hours provided, Singles (S3c) ******************/ +/************** Ordered logit care hours provided, Singles (S3c) **************/ display "${s3c_if_condition}" /* reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// @@ -458,8 +458,22 @@ process_regression, domain("socialcare") process("S3c") sheet("S3c_orig") /// gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// ifcond("${s3c_if_condition}") */ - -reg careHrsProvidedWeekIhs /// + +* Ordered outcome for weekly informal-care hours provided. The category values +* are representative hours for the seven bands: 2, 7, 14.5, 27, 42, 74.5, 120. +cap drop careHrsProvidedWeekCategory +gen byte careHrsProvidedWeekCategory = . +replace careHrsProvidedWeekCategory = 1 if careHoursProvidedWeekly > 0 & careHoursProvidedWeekly <= 4 +replace careHrsProvidedWeekCategory = 2 if careHoursProvidedWeekly > 4 & careHoursProvidedWeekly <= 9 +replace careHrsProvidedWeekCategory = 3 if careHoursProvidedWeekly > 9 & careHoursProvidedWeekly <= 19 +replace careHrsProvidedWeekCategory = 4 if careHoursProvidedWeekly > 19 & careHoursProvidedWeekly <= 34 +replace careHrsProvidedWeekCategory = 5 if careHoursProvidedWeekly > 34 & careHoursProvidedWeekly <= 49 +replace careHrsProvidedWeekCategory = 6 if careHoursProvidedWeekly > 49 & careHoursProvidedWeekly <= 99 +replace careHrsProvidedWeekCategory = 7 if careHoursProvidedWeekly >= 100 & careHoursProvidedWeekly < . +label define careHrsProvidedWeekCategoryLabel 1 "2" 2 "7" 3 "14.5" 4 "27" 5 "42" 6 "74.5" 7 "120", replace +label values careHrsProvidedWeekCategory careHrsProvidedWeekCategoryLabel + +ologit careHrsProvidedWeekCategory /// careHrsProvidedWeekIhsL1 /// demMaleFlag /// demAge20to24 demAge25to29 demAge30to34 demAge35to39 demAge40to44 demAge45to49 demAge50to54 /// @@ -468,32 +482,17 @@ reg careHrsProvidedWeekIhs /// eduHighestC4High eduHighestC4Medium eduHighestC4Low /// yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// demYear2020 demYear2021 $regions $ethnicity /// - if ${s3c_if_condition} [pweight=${weight}], vce(r) + if ${s3c_if_condition} [pweight=${weight}], vce(robust) -process_regression, domain("socialcare") process("S3c") sheet("S3c") /// +process_ologit, domain("socialcare") process("S3c") sheet("S3c") /// title("Process S3c: Informal care hours provided, Singles") /// gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// ifcond("${s3c_if_condition}") - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s3c_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Informal care hours provided, Singles: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A11 = ("S3c") B11 = (rmse) -restore + * RMSE is not defined for the ordered-logit outcome. -/****************** OLS care hours provided, Partnered (S3d) *****************/ +/************* Ordered logit care hours provided, Partnered (S3d) *************/ display "${s3d_if_condition}" /* reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// @@ -513,7 +512,7 @@ process_regression, domain("socialcare") process("S3d") sheet("S3d_orig") /// ifcond("${s3d_if_condition}") */ -reg careHrsProvidedWeekIhs /// +ologit careHrsProvidedWeekCategory /// careHrsProvidedWeekIhsL1 /// demMaleFlag /// demAge20to24 demAge25to29 demAge30to34 demAge35to39 demAge40to44 demAge45to49 demAge50to54 /// @@ -524,29 +523,14 @@ reg careHrsProvidedWeekIhs /// eduHighestC4High eduHighestC4Medium /// yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// demYear2020 demYear2021 $regions $ethnicity /// - if ${s3d_if_condition} [pweight=${weight}], vce(r) + if ${s3d_if_condition} [pweight=${weight}], vce(robust) -process_regression, domain("socialcare") process("S3d") sheet("S3d") /// +process_ologit, domain("socialcare") process("S3d") sheet("S3d") /// title("Process S3d: Informal care hours provided, Partnered") /// gofrow(35) goflabel("S3d - Hours of informal care provided, Partnered") /// ifcond("${s3d_if_condition}") - * Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s3d_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Informal care hours provided, Partnered: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A12 = ("S3d") B12 = (rmse) - -restore + * RMSE is not defined for the ordered-logit outcome. display "Social care analysis complete!" diff --git a/input/InitialPopulations/training/population_initial_UK_2019.csv b/input/InitialPopulations/training/population_initial_UK_2019.csv index 4ecd18458..70d7f39d0 100644 --- a/input/InitialPopulations/training/population_initial_UK_2019.csv +++ b/input/InitialPopulations/training/population_initial_UK_2019.csv @@ -1,37824 +1,34629 @@ -idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduHighestC4,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,scghq2_dv,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrss0to12,demAdultChildFlag,labWageHrly,labWageHrlyL1,careNeedFlag,careHrsFormal,careHrsInformal,careFormalX,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,yDispMonth -1,1,1,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.220020136362614,8.463558536711108,0,0,0,-860.953515633259,0,3,2,2019,23,10,38,39,1,10,0,15.58786889757598,15.58786889757598,0,0,0,0,2,1,1,0,.8256137456368082,0,33.49,64.26000000000001,-9,-9,1.666666666666667,1,1,0,0,8,1,4,1,241,734031.0334677139,519374.7593430534,323933.1871342995,104292.8229358354,1619.630118650561 -1,2,2,-9,3,-9,1,0,22,0,0,0,2,2,-9,0,4,0,6.079985139932093,6.040881027457674,0,0,-1044.580912462595,-9,2,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,6.235676122491325,0,26.44,62.16,-9,-9,1.666666666666667,1,1,0,0,0,1,2,1,2563,-121800.3258226071,0,0,0,230.6363845224001 -1,3,3,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1012.743380923286,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.640540187492784,0,40.14,16.93,-9,-9,1.666666666666667,1,1,0,0,0,1,1,1,913,162563.8175861339,0,0,0,385.1114699868884 -2,4,4,5,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,7.690003128191351,8.168757056500155,7.199504835574803,6,13,-22.17077429201253,0,-9,-9,2019,9,1,15,15,1,1,0,16.11707095774705,16.11707095774705,0,0,0,0,0,1,1,0,5.45539586101969,7.354163711031129,62.83,12.04,36.98,56.92,6.666666666666667,1,1,0,0,8,12,4,1,845.5,336233.2385054777,178869.9226888564,207584.2683449487,0,2333.46446634024 -2,4,5,4,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.740818862325488,6.527129927197087,0,21,-13,36.40963809565422,0,2,3,2019,13,3,16,16,1,3,0,8.203522090638426,8.203522090638426,0,0,0,0,7,1,1,0,2.349721277661799,0,36.98,56.92,62.83,12.04,8.333333333333334,1,1,0,0,6,12,4,1,845.5,336233.2385054777,178869.9226888564,207584.2683449487,0,2333.46446634024 -3,5,6,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,5.55478824688289,5.913797727854157,0,0,-918.3237301799984,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.225395488219158,5.637996072539194,58.13,18.26,-9,-9,5,1,1,0,0,0,7,2,1,328,10139.10033739618,0,0,0,1240.769780068275 -4,6,7,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.438840775058381,8.575219665315084,0,0,0,-993.1254171087915,0,3,2,2019,12,0,40,40,1,0,0,15.18666029859575,15.18666029859575,0,0,0,0,0,0,0,0,3.632808895706871,0,33.04,66.23999999999999,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,236,155984.8203845699,86880.22009981815,171909.7453420879,44929.11157661792,1307.614585883028 -5,7,8,-9,9,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.4982092468082,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,585.6666666666666,68738.24833216368,0,0,0,2001.962056650976 -5,7,9,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1046.354470444285,1,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.44,55.46,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,585.6666666666666,68738.24833216368,0,0,0,2001.962056650976 -5,7,10,-9,9,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.8899796402933,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,585.6666666666666,68738.24833216368,0,0,0,2001.962056650976 -6,8,11,12,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.086233523103353,9.014578284255604,0,7,5,-.1576219861609964,0,3,3,2019,7,0,44,43,1,0,0,22.63154586006701,22.63154586006701,0,0,0,0,0,0,0,0,0,0,43.71,56.91,45.81,44.2,8.333333333333334,1,1,0,0,6,5,5,1,589,2309608.43846971,1861687.515509142,345030.2441613083,0,3566.757867169114 -6,8,12,11,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,7.05859859670465,7.157601279701132,27,-5,194.7593349483754,0,3,3,2019,8,0,0,41,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.349830450104299,45.81,44.2,43.71,56.91,8.333333333333334,1,1,0,0,10,5,5,1,589,2309608.43846971,1861687.515509142,345030.2441613083,0,3566.757867169114 -7,9,13,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.628203920750405,6.425547094658125,0,0,-985.6763627285303,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,4.648804403140327,0,0,1,1,0,0,6.381545951253822,45.48,31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,464,210419.1059292787,58422.08962227905,94343.00541915983,0,432.5132667605287 -8,10,14,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.041916876384707,6.121103957263257,0,0,-988.8663631230334,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.0403899610232,44.74,21.58,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,998,328635.0697735947,13453.94190360691,337893.9108198834,0,1591.260796247942 -9,11,15,16,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.504349673442965,6.581598215823094,0,39,0,-32.78703537335477,0,3,2,2019,21,10,17,18,1,10,0,5.467303192572183,5.467303192572183,0,0,0,0,2,0,0,0,5.537633504591186,0,42.02,53.62,33.31,51.41,10,1,1,0,0,9,5,3,1,1081,798690.4738359759,457632.5133756333,123014.3673273138,0,1661.125751938921 -9,11,16,15,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.286313916085303,7.693905133746653,6.702963826397053,39,0,47.86519655830257,0,3,3,2019,13,1,34,30,1,1,0,4.476808404728994,4.476808404728994,0,0,0,0,0,0,0,0,0,6.485567464407742,33.31,51.41,42.02,53.62,5,1,1,0,0,11,5,3,1,1081,798690.4738359759,457632.5133756333,123014.3673273138,0,1661.125751938921 -9,12,17,18,15,16,1,1,22,0,0,0,1,1,-9,0,3,8.094266026896991,7.82741427769316,0,1,0,-55.6972318704426,-9,2,3,2019,21,7,42,0,1,7,0,6.479012985371908,6.479012985371908,0,0,0,0,0,0,0,0,0,0,32.89,59.48,32.89,65.90000000000001,0,1,1,0,0,4,5,3,1,3002.5,29579.05584114895,49699.74714470812,0,0,1543.152578475643 -9,12,18,17,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.163592434918185,7.041251151343796,0,1,0,-24.14386904146232,-9,-9,-9,2019,17,7,25,0,1,7,0,5.000495301138725,5.000495301138725,0,0,0,0,0,0,0,0,0,0,32.89,65.90000000000001,32.89,59.48,3.333333333333333,1,1,0,0,0,5,3,1,3002.5,29579.05584114895,49699.74714470812,0,0,1543.152578475643 -10,13,19,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-919.2347164246322,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,4.68856572272358,0,0,1,1,0,0,0,39.74,18.66,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,752,132945.6313857164,0,153103.8590750196,0,1652.239656355934 -11,14,20,-9,21,22,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.8741306810058,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,929.75,3262221.837098258,2153452.300591501,777886.3288737754,34271.80618043917,5791.552361228925 -11,14,21,22,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.69600600923808,7.979971200659913,0,6,-4,1.441481261931142,0,3,3,2019,11,0,16,20,1,0,0,13.71766671617356,13.71766671617356,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.08,52.1,8.333333333333334,1,1,0,0,7,9,5,1,929.75,3262221.837098258,2153452.300591501,777886.3288737754,34271.80618043917,5791.552361228925 -11,14,22,21,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.439624801436787,9.399462147600088,0,6,4,-16.17815134569847,0,2,2,2019,11,0,38,43,1,0,0,44.13693920668788,44.13693920668788,0,0,0,0,0,0,0,0,4.002698992016922,0,51.08,52.1,54.1,59.11,8.333333333333334,1,1,0,0,7,9,5,1,929.75,3262221.837098258,2153452.300591501,777886.3288737754,34271.80618043917,5791.552361228925 -11,14,23,-9,21,22,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.5475630182593,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,929.75,3262221.837098258,2153452.300591501,777886.3288737754,34271.80618043917,5791.552361228925 -11,15,24,-9,21,22,1,1,18,0,2,0,2,2,1,0,4,7.883260786809166,8.014117988498528,0,0,0,-1024.157585942552,-9,2,1,2019,7,0,40,0,1,0,1,7.234723919323854,7.234723919323854,0,0,0,0,0,0,0,0,.9807112556699499,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,3788,31128.38531450139,0,0,0,1261.105470242708 -12,16,25,26,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.814808430407512,6.946756283172408,56,-1,129.5731929823999,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.877840262301405,54.79,55.86,56.9,36,8.333333333333334,1,1,0,0,0,11,2,1,647.5,561767.3100600654,311146.0958542314,159326.6449836221,0,2015.169303233966 -12,16,26,25,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.357076679920273,5.682874041320563,55,1,15.21884587935003,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.083446681756379,5.583778931854599,56.9,36,54.79,55.86,8.333333333333334,1,1,0,0,0,11,2,1,647.5,561767.3100600654,311146.0958542314,159326.6449836221,0,2015.169303233966 -13,17,27,-9,28,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1095.479401880008,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.778313906024057,0,41.15,54.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,222,194220.4280291777,70336.63914159406,144142.8390751237,61349.6285180234,1383.465491724588 -13,17,28,-9,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,7.034813967449492,7.142005123841894,6.249266764687608,0,0,-1037.488194202618,0,1,1,2019,10,1,16,16,1,1,0,7.339608899880957,7.339608899880957,0,0,0,0,0,1,1,0,5.985588178871286,0,41.57,29.82,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,222,194220.4280291777,70336.63914159406,144142.8390751237,61349.6285180234,1383.465491724588 -13,18,29,-9,28,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1091.823999683936,-9,2,-9,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,36.48,61.57,-9,-9,6.666666666666667,1,1,0,0,3,4,2,1,366,4684.525289100829,0,0,0,0 -14,19,30,31,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.314433107428775,5.327339968191931,51,-2,28.00623948156835,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.672718468780485,5.35314206798108,55.94,47.09,50.34,45.67,8.333333333333334,1,1,0,0,0,4,2,1,2987,502329.9384350657,477980.0152103266,162856.8267270443,0,1500.671871081863 -14,19,31,30,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.344789565914124,7.32989317682606,51,2,2.99477466304206,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.227691679917291,5.650148031302145,50.34,45.67,55.94,47.09,8.333333333333334,1,1,0,0,0,4,2,1,2987,502329.9384350657,477980.0152103266,162856.8267270443,0,1500.671871081863 -15,20,32,33,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,8,1,0,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.523718912293098,0,54.2,57.49,44.43,56.74,8.333333333333334,1,1,0,0,8,11,1,1,441.5,253740.6781623458,47084.45324281111,145131.5652338674,0,-419.5707576512128 -15,20,33,32,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,-1,0,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,44.43,56.74,54.2,57.49,8.333333333333334,1,1,0,0,8,11,1,1,441.5,253740.6781623458,47084.45324281111,145131.5652338674,0,-419.5707576512128 -16,21,34,35,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.925599353444966,8.213378699090704,0,9,0,-20.51115812736578,0,3,2,2019,10,1,60,40,1,1,0,6.036909018861216,6.036909018861216,0,0,0,0,0,0,0,0,0,0,58.57,35.72,55.3,31.67,8.333333333333334,1,1,0,0,9,1,5,0,572.5,371444.5929615445,225122.5745778431,75287.99241074052,0,2948.809827537701 -16,21,35,34,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.311661430495434,7.966750030356251,0,9,0,2.695807861717832,0,3,3,2019,11,1,96,72,1,1,0,5.315918484170862,5.315918484170862,0,0,0,0,0,0,0,0,0,0,55.3,31.67,58.57,35.72,5,1,1,0,0,11,1,5,0,572.5,371444.5929615445,225122.5745778431,75287.99241074052,0,2948.809827537701 -17,22,36,37,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.693817437283164,6.840888562880544,6,0,71.85391647596144,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,3.243615981788634,0,0,1,1,0,4.613556555216151,6.767866695446571,55.62,23.5,53.13,27,8.333333333333334,1,1,0,0,0,11,2,1,989,582412.8185948634,322262.2368996989,315513.6414394432,0,1727.212650270837 -17,22,37,36,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,4.875992356276112,5.216990772132136,6,0,41.24083906350329,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.187999781310594,5.458573702048202,53.13,27,55.62,23.5,8.333333333333334,1,1,0,0,0,11,2,1,989,582412.8185948634,322262.2368996989,315513.6414394432,0,1727.212650270837 -18,23,38,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,6.509643593779642,6.52361369500581,0,0,0,-1071.392246133236,0,3,3,2019,6,0,10,13,1,0,0,6.935931121387283,6.935931121387283,0,0,0,0,0,1,1,0,0,0,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,3759,-164452.2779934452,84106.53173703079,105435.2861404539,13600.25226400067,766.8712351576135 -19,24,39,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.422958393229242,8.82564108630871,0,0,0,-1059.11000616308,0,-9,-9,2019,6,0,39,38,1,0,0,14.46599383720808,14.46599383720808,0,0,0,0,0,0,0,0,4.813477409406871,0,58.62,52.91,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,235,66086.43214045784,-13993.99336975733,0,0,2679.373832709021 -20,25,40,42,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,5.872505018352327,6.458512560591753,0,15,-5,-27.84832381927226,0,-9,-9,2019,18,6,6,12,1,6,0,6.968904625218743,6.968904625218743,0,0,0,0,0,1,1,0,6.498812281975376,0,42.26,55.21,57.33,53.46,6.666666666666667,2,3,0,0,4,4,4,1,1118.6,264822.0940195572,134376.0847242695,0,0,4521.585639271303 -20,25,41,-9,40,42,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.758655917995,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1118.6,264822.0940195572,134376.0847242695,0,0,4521.585639271303 -20,25,42,40,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,9.002909804233168,8.828230481129655,0,15,5,95.72563782311514,0,-9,-9,2019,7,0,37,40,1,0,0,29.31205680020352,29.31205680020352,0,0,0,0,0,1,1,0,5.263602905928165,0,57.33,53.46,42.26,55.21,8.333333333333334,2,3,0,0,7,4,4,1,1118.6,264822.0940195572,134376.0847242695,0,0,4521.585639271303 -20,25,43,-9,40,42,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-884.0491309661423,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,1118.6,264822.0940195572,134376.0847242695,0,0,4521.585639271303 -20,25,44,-9,40,42,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.9965063965635,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,1,1118.6,264822.0940195572,134376.0847242695,0,0,4521.585639271303 -21,26,45,46,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,32,-7,62.45249000795097,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.16,49.79,57.18,47.78,8.333333333333334,1,1,0,0,6,9,4,1,838,1513251.161217737,823162.0477940907,355358.5365562533,0,2097.097497100763 -21,26,46,45,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.611097392314685,8.726512850376002,5.807433188605216,34,7,-5.976207420816307,0,3,2,2019,13,3,60,60,1,3,0,11.0983644836828,11.0983644836828,0,0,0,0,0,0,0,0,0,6.425528469930576,57.18,47.78,48.16,49.79,5,1,1,0,0,11,9,4,1,838,1513251.161217737,823162.0477940907,355358.5365562533,0,2097.097497100763 -22,27,47,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.849841144109928,8.040784797443061,0,0,0,-1049.397165409611,0,2,2,2019,24,12,36,36,1,12,0,10.23342277264743,10.23342277264743,0,0,0,0,27,1,1,0,0,0,31.88,32.98,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,448,602046.6612361951,358879.8015875121,117251.88401005,117037.9303675182,1485.322501908722 -23,28,48,49,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.600661528497914,5.716661722789623,44,7,74.71512235025385,0,2,3,2019,7,0,0,45,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.81889327980489,60.12,54.8,45.74,22.61,8.333333333333334,1,1,0,0,12,9,2,1,711,543717.0465511072,338812.4075232563,315214.535617066,0,460.1632959196357 -23,28,49,48,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,10,-7,-35.61274705116556,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,2.786762936705013,6.531768894535861,29.86426199252105,0,1,1,0,0,0,45.74,22.61,60.12,54.8,3.333333333333333,1,1,0,0,0,9,2,1,711,543717.0465511072,338812.4075232563,315214.535617066,0,460.1632959196357 -24,29,50,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.367558726993909,8.727856354562153,0,0,0,-929.6452541091054,0,3,1,2019,16,4,42,42,1,4,0,11.78669358497978,11.78669358497978,0,0,0,0,0,0,0,0,1.013950420843209,0,43.27,38.73,-9,-9,3.333333333333333,1,1,0,0,12,11,4,1,355,55714.07161062921,171821.8829183602,134421.1025909671,98162.43923948814,1900.579234868683 -25,30,51,52,-9,-9,1,1,45,2,2,0,1,1,-9,0,3,8.995183520804634,8.795873065969895,0,4,5,17.52286917843067,0,-9,-9,2019,6,0,35,35,1,0,0,28.52099199215148,28.52099199215148,0,0,0,0,0,1,1,0,5.378350386544025,0,57.33,53.46,57.06,57.76,10,4,2,0,0,10,8,5,1,1120.5,583572.8889761382,231876.5878316285,555468.7716144503,203287.7055906085,6030.648419517343 -25,30,52,51,-9,-9,1,0,40,2,2,0,1,1,-9,0,5,8.207874331505149,8.41982058047746,0,4,-5,-9.174799821060626,0,2,2,2019,8,0,22,21,1,0,0,20.90133951207896,20.90133951207896,0,0,0,0,0,1,1,0,7.730266273291186,0,57.06,57.76,57.33,53.46,10,4,2,0,0,10,8,5,1,1120.5,583572.8889761382,231876.5878316285,555468.7716144503,203287.7055906085,6030.648419517343 -25,30,53,-9,52,51,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-943.506522873494,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,5,1,1120.5,583572.8889761382,231876.5878316285,555468.7716144503,203287.7055906085,6030.648419517343 -25,30,54,-9,52,51,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-931.0536982084315,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,1120.5,583572.8889761382,231876.5878316285,555468.7716144503,203287.7055906085,6030.648419517343 -26,31,55,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.762778972148331,8.144429984750172,7.792544737493259,0,0,-975.1588330629706,0,3,3,2019,8,0,21,21,1,0,0,12.86356867722302,12.86356867722302,0,0,0,0,0,1,1,0,2.040825958780971,7.526655888647388,57.33,53.46,-9,-9,5,1,1,0,0,9,12,4,1,382,886035.9763214022,760554.4725866336,218321.7575795432,0,1211.891746216978 -27,32,56,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,0,0,0,0,0,-953.4520024504939,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,4,2,1,1,0,5,1,1,183,-141826.8040789405,0,0,0,70.82721461703724 -28,33,57,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,0,0,0,0,0,-862.2415859947216,0,2,3,2019,27,10,0,37,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,38.9,32.16,-9,-9,0,1,1,1,1,10,11,1,1,653,198497.9030063777,142476.33243443,0,0,154.3276596196054 -28,33,58,-9,57,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.2275040373657,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,11,1,1,653,198497.9030063777,142476.33243443,0,0,154.3276596196054 -29,34,59,-9,60,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1130.816550501547,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,357,55228.71883244954,79597.73616328023,206094.974574612,118061.8510814061,3698.327426162813 -29,34,60,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,3,8.212376997947715,7.881446328032477,0,0,0,-1083.488717844569,0,3,3,2019,11,0,32,34,1,0,0,10.295832869056,10.295832869056,0,0,0,0,0,1,1,0,0,0,52.58,47.36,-9,-9,6.666666666666667,1,1,0,0,8,9,3,1,357,55228.71883244954,79597.73616328023,206094.974574612,118061.8510814061,3698.327426162813 -29,35,61,-9,60,-9,1,0,25,0,1,0,2,2,-9,0,4,8.123997115183876,8.088798171159429,0,0,0,-978.2846111319099,0,2,2,2019,7,0,40,40,1,0,1,10.61198588484183,10.61198588484183,0,0,0,0,0,1,1,0,0,0,43.84,57.1,-9,-9,10,4,2,0,0,8,9,4,1,357,-303067.760352348,-25901.36564467119,0,0,1783.318175828374 -29,36,62,-9,60,-9,1,1,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-857.5036800175507,1,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,4,2,0,0,5,9,1,1,1020,-14686.764324492,0,0,0,-989.6650688933355 -30,37,63,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.8601334938332,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,24.82,39.19,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,1006,195724.9756921009,-17430.58040362949,0,0,766.5367449359878 -31,38,64,65,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.566203266616972,8.664076601399252,0,37,0,56.47754977568931,0,3,3,2019,15,4,35,35,1,4,0,20.04098717698609,20.04098717698609,0,0,0,0,0,0,0,0,2.782615275679479,0,56.37,34.68,20.85,62.14,8.333333333333334,1,1,0,0,11,6,5,1,626.5,488255.3884776408,366859.685730472,193820.3995705119,109248.0540551218,3015.076385191712 -31,38,65,64,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.699319827712542,7.697786659983398,0,37,0,-70.69224957032431,0,2,3,2019,30,12,30,30,1,12,0,8.665325292008859,8.665325292008859,0,0,0,0,7,0,0,0,0,0,20.85,62.14,56.37,34.68,5,1,1,0,0,11,6,5,1,626.5,488255.3884776408,366859.685730472,193820.3995705119,109248.0540551218,3015.076385191712 -32,39,66,67,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.735308531756108,7.961568978304174,0,4,-2,15.91192642498438,0,-9,-9,2019,6,0,50,54,1,0,0,6.691129148517945,6.691129148517945,0,0,0,0,0,0,0,0,0,0,57.16,56.15,63.65,35.93,10,1,1,0,0,5,4,4,0,693,183758.1400776982,270725.3806349398,113633.6724875311,35128.33786389312,2981.477082646867 -32,39,67,66,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.281942933582645,8.314807510206215,0,4,2,30.76810327862264,0,3,3,2019,6,0,45,40,1,0,0,10.71515668516125,10.71515668516125,0,0,0,0,0,0,0,0,0,0,63.65,35.93,57.16,56.15,10,1,1,0,0,9,4,4,0,693,183758.1400776982,270725.3806349398,113633.6724875311,35128.33786389312,2981.477082646867 -33,40,68,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.643659344002833,8.641193159617524,0,0,0,-999.608165129717,0,2,2,2019,3,0,43,48,1,0,0,11.57482666377022,11.57482666377022,0,0,0,0,0,0,0,0,.5663606865741152,0,55.26,55.85,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,345,411011.5144165483,149098.9712837146,437695.2269516498,238791.8474087614,1466.065482900608 -34,41,69,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1088.343967817029,0,3,-9,2019,3,0,0,0,4,0,0,0,0,1,1.533745655532031,0,22.34510914699631,0,1,1,0,0,0,49.91,31.39,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,429,57077.31151741297,0,0,0,1129.781002130927 -35,42,70,71,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.131179252412127,7.017108748034792,57,0,-72.58592041924648,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.028500873463011,6.768169776476519,57.45,41.24,46,23.63,8.333333333333334,1,1,0,0,0,4,2,0,492.5,353682.2857859436,189554.8750171298,93542.62379207976,0,1495.954530509811 -35,42,71,70,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,8,0,-53.66924549701768,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,2.715406835555016,0,0,1,1,0,0,0,46,23.63,57.45,41.24,8.333333333333334,1,1,0,0,0,4,2,0,492.5,353682.2857859436,189554.8750171298,93542.62379207976,0,1495.954530509811 -36,43,72,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1045.492144833812,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.52,42.03,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,3014,152131.0288007986,0,121033.3008520125,0,1085.194145772095 -37,44,73,74,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.35022780550829,8.411783639532256,0,2,-3,98.98398325845577,0,-9,-9,2019,7,0,68,44,1,0,0,6.932196881354263,6.932196881354263,0,0,0,0,0,0,0,0,0,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,8,9,5,0,325.5,445464.6284267954,226089.1297640889,206554.1220883984,55079.86847903509,2643.778841850508 -37,44,74,73,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,8.031622113782907,7.888046471424852,0,2,3,-4.578225025439304,0,2,-9,2019,5,0,44,46,1,0,0,8.936163323353849,8.936163323353849,0,0,0,0,0,0,0,0,0,0,50.65,60.47,57.06,57.76,10,1,1,0,0,8,9,5,0,325.5,445464.6284267954,226089.1297640889,206554.1220883984,55079.86847903509,2643.778841850508 -38,45,75,76,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,46,-3,60.0354837204752,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.013786907054847,0,51.84,51.67,48.48,54.62,8.333333333333334,1,1,0,0,0,9,2,1,907.5,1184694.130501261,283198.5681578473,622632.7128868048,0,2660.397228497844 -38,45,76,75,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.470656808395806,7.281377383367017,45,3,-.5512747450865678,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.828861169059792,7.492877535227344,48.48,54.62,51.84,51.67,8.333333333333334,1,1,0,0,8,9,2,1,907.5,1184694.130501261,283198.5681578473,622632.7128868048,0,2660.397228497844 -39,46,77,78,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.444063769605421,8.661053245247789,0,26,2,-146.9636826118924,0,2,3,2019,11,2,43,40,1,2,0,14.09122591016955,14.09122591016955,0,0,0,0,0,0,0,0,4.875580198432991,0,54.79,55.86,54.79,55.86,10,1,1,0,0,7,7,5,1,411,308349.4482388776,233433.281358373,276306.6434819119,42259.93563114874,2472.818927360373 -39,46,78,77,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.135447600051178,8.513451527496837,0,26,-2,21.46731726142448,0,3,3,2019,7,0,36,40,1,0,0,14.22656950037686,14.22656950037686,0,0,0,0,14.5,0,0,0,4.520340173119465,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,6,7,5,1,411,308349.4482388776,233433.281358373,276306.6434819119,42259.93563114874,2472.818927360373 -39,47,79,-9,77,78,1,1,22,0,0,0,2,2,-9,0,5,8.186184539354823,7.971179485156105,0,0,0,-878.3542107607573,0,2,2,2019,7,0,45,45,1,0,1,7.657950331305811,7.657950331305811,0,0,0,0,0,0,0,0,.9187279049251429,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,1570,-28099.09078336466,0,0,0,1214.713821718122 -39,48,80,-9,77,78,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.6536190623875,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,1,7,1,1,257,0,0,0,0,0 -40,49,81,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.44710804721187,8.728365753301025,0,0,0,-975.6739342560488,0,3,3,2019,17,5,40,40,1,5,0,12.52850854718809,12.52850854718809,0,0,0,0,0,1,0,1,0,0,31.8,58.32,-9,-9,5,2,3,0,0,1,4,5,0,612,-31576.12270625617,91729.25250708319,0,0,1906.126586626561 -40,50,82,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,6.194548982506721,6.243630019093627,0,0,0,-1018.853441850479,-9,-9,-9,2019,22,6,12,0,1,6,0,4.193129666020178,4.193129666020178,0,0,0,0,42,1,0,1,0,0,24.19,61.89,-9,-9,0,2,3,0,1,3,4,2,0,691,534540.1817391366,0,0,0,422.2312439707844 -41,51,83,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-943.2298754456506,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,13.00678831448265,0,130.2345519364836,0,1,1,0,0,0,46.25,25.76,-9,-9,5,1,1,0,0,0,12,1,0,419,146345.9166126335,0,0,0,2204.379017761697 -42,52,84,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1009.436326806744,-9,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.65,25.24,-9,-9,0,1,1,0,1,0,9,2,0,797,3933.239784399664,0,0,0,785.2059345863432 -42,53,85,-9,84,-9,1,1,34,0,0,0,2,2,-9,0,2,7.76675583242051,8.035449023287356,0,0,0,-1173.510920774028,-9,2,2,2019,22,9,30,0,1,9,0,10.78016517375843,10.78016517375843,0,0,0,0,14.5,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,1,1,0,1,10,9,4,0,197,146013.3877861067,-73245.86753719712,0,0,1259.012867310341 -43,54,86,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-856.010931651693,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,57.8,49.13,-9,-9,0,1,1,0,0,0,6,1,1,493,180123.2015952652,0,226476.0249798475,0,1007.965166276298 -43,55,87,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.319586189427474,8.532400600483161,0,0,0,-942.9348186595579,0,2,1,2019,9,0,65,100,1,0,0,6.527311379916116,6.527311379916116,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,6,6,4,1,398,-40910.10656704278,30329.64015666911,0,0,1396.381220318454 -44,56,88,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.3915260589796,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.43,30.17,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,726,159882.5067938362,0,0,0,556.7857619256828 -44,57,89,-9,88,-9,1,1,20,0,0,0,2,2,-9,0,5,7.79338471567901,7.468358736343845,0,0,0,-942.4144152167895,0,3,-9,2019,10,1,25,25,1,1,1,9.943006063356352,9.943006063356352,0,0,0,0,0,1,0,1,0,0,43.22,63.04,-9,-9,10,1,1,0,0,3,2,3,0,1458,-1137.187607326265,0,0,0,1482.283234105298 -45,58,90,92,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.8245903555982,9.96581771328789,0,10,-2,-60.67960385619419,0,2,2,2019,10,0,42,38,1,0,0,39.78256446084534,39.78256446084534,0,0,0,0,0,0,0,0,4.281717344637188,0,49.91,58.02,57.86,41.98,8.333333333333334,1,1,0,0,10,6,5,1,1287,1608125.187036743,1167189.52539072,0,0,6161.099562012873 -45,58,91,-9,92,90,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.464324725052,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1287,1608125.187036743,1167189.52539072,0,0,6161.099562012873 -45,58,92,90,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,10,2,-16.04537368749758,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.86,41.98,49.91,58.02,8.333333333333334,1,1,0,0,2,6,5,1,1287,1608125.187036743,1167189.52539072,0,0,6161.099562012873 -46,59,93,-9,94,95,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1066.280283404548,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,12,4,1,1206.333333333333,512261.8224975684,440818.9466139604,220947.0014194538,50000.61888466414,3342.495691068188 -46,59,94,95,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.224688250383839,8.482982748993237,0,31,-4,-11.20041179478516,0,3,3,2019,11,0,30,30,1,0,0,13.59534186027252,13.59534186027252,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,6.666666666666667,1,1,0,0,8,12,4,1,1206.333333333333,512261.8224975684,440818.9466139604,220947.0014194538,50000.61888466414,3342.495691068188 -46,59,95,94,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,8.455425598837625,8.68514838221142,0,31,4,-62.78446309502122,0,2,2,2019,10,0,45,47,1,0,0,11.58268476442294,11.58268476442294,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,8,12,4,1,1206.333333333333,512261.8224975684,440818.9466139604,220947.0014194538,50000.61888466414,3342.495691068188 -46,60,96,-9,94,95,1,1,19,0,1,0,2,2,-9,0,4,7.692908010142383,7.610914888733086,0,0,0,-1000.159644386609,-9,1,2,2019,10,0,38,0,1,2,1,7.086706854371901,7.086706854371901,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,1,1393,28808.03013465343,0,0,0,1551.487006222958 -47,61,97,98,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.269397027220529,8.908185451617943,0,5,3,-59.24532006390937,0,2,2,2019,9,0,35,37,1,0,0,31.76044026020436,31.76044026020436,0,0,0,0,0,0,0,0,7.582074641861777,0,54.79,55.86,33.66,56.04,8.333333333333334,1,1,0,0,10,6,5,1,545.5,1061802.695421447,467810.9650362075,862670.7089879902,437163.9794970751,3320.552534512415 -47,61,98,97,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,4.437987577254979,4.339368215598856,0,5,-3,73.51169429582703,0,-9,-9,2019,21,7,3,2,1,7,0,3.206952504059449,3.206952504059449,0,0,0,0,0,0,0,0,6.90172711303037,0,33.66,56.04,54.79,55.86,6.666666666666667,1,1,0,0,11,6,5,1,545.5,1061802.695421447,467810.9650362075,862670.7089879902,437163.9794970751,3320.552534512415 -48,62,99,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-986.370655927046,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.17,27.29,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,374,150707.3744945016,303304.4331611556,13282.01103961885,80553.04365540517,1044.529911082013 -48,62,100,-9,99,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.578697518032,-9,2,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,40.49,54.51,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,374,150707.3744945016,303304.4331611556,13282.01103961885,80553.04365540517,1044.529911082013 -48,63,101,-9,99,-9,1,1,19,0,0,0,2,2,1,0,4,7.338139590572965,7.72302418746165,0,0,0,-961.772664841512,-9,2,-9,2019,12,0,39,0,1,0,1,4.477881317376341,4.477881317376341,0,0,0,0,0,1,1,0,1.192461126146399,0,50.56,46.68,-9,-9,8.333333333333334,1,1,0,0,1,11,3,1,441,158322.1589776345,0,0,0,1041.396630456676 -48,64,102,-9,99,-9,1,1,19,0,0,0,2,2,1,0,4,7.333440604839032,7.486938649516324,0,0,0,-1013.226128951092,-9,2,-9,2019,10,0,39,0,1,0,1,5.228319205907856,5.228319205907856,0,0,0,0,0,1,1,0,0,0,42.83,57.26,-9,-9,5,1,1,0,0,1,11,3,1,108,12277.15255897261,65053.19106132253,0,0,657.8042932391132 -49,65,103,104,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.815036367351068,8.946210808285283,0,15,3,-101.4688881299283,0,2,1,2019,8,0,37,37,1,0,0,21.68472800982063,21.68472800982063,0,0,0,0,0,0,0,0,5.043054778786497,0,54.79,55.86,54.97,47.63,8.333333333333334,1,1,0,0,12,2,5,1,629.5,66391.38468628837,159388.959338143,0,0,3568.115782819033 -49,65,104,103,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.136957456179491,7.936964485614093,0,15,-3,-16.80791853425807,0,2,2,2019,10,0,40,37,1,0,0,9.089260622865257,9.089260622865257,0,0,0,0,0,0,0,0,4.204982470638916,0,54.97,47.63,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,629.5,66391.38468628837,159388.959338143,0,0,3568.115782819033 -50,66,105,106,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.323874616858008,8.331939418425282,0,1,-13,-15.99377361194864,-9,-9,-9,2019,9,0,38,0,1,1,0,13.84936617703405,13.84936617703405,0,0,0,0,0,0,0,0,0,0,52,55,50.48,23.32,7,1,1,0,0,1,4,4,0,407,375031.4140388052,135577.3811123197,125507.0678312959,0,2458.126171925905 -50,66,106,105,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.308287417528335,7.172482799585968,0,6,13,48.90564575276267,-9,3,2,2019,11,1,24,0,1,1,0,7.545157903395095,7.545157903395095,0,0,0,0,0,0,0,0,0,0,50.48,23.32,52,55,6.666666666666667,1,1,0,0,9,4,4,0,407,375031.4140388052,135577.3811123197,125507.0678312959,0,2458.126171925905 -51,67,107,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-987.4490844905769,0,3,2,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.44,40.72,-9,-9,3.333333333333333,2,3,0,1,2,5,2,1,401.5,109339.0803109144,0,117980.8206205137,0,330.6324123954116 -51,67,108,-9,107,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-982.3661819854858,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,.3295578684926834,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,2,1,401.5,109339.0803109144,0,117980.8206205137,0,330.6324123954116 -51,68,109,-9,107,-9,1,0,20,0,1,1,2,0,0,0,3,0,6.002126365460454,5.874783454905682,0,0,-1009.926519117606,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,5.848133067148701,0,36.48,58.9,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,729,158269.5280175446,0,0,0,-152.3077447227772 -52,69,110,111,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.101712880959576,7.267614464976495,50,-3,-36.52156179289214,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.310910390762133,7.061163700185404,39.74,39.79,62.12,32.01,6.666666666666667,1,1,0,0,0,12,2,1,832,354328.6219800134,169780.1175590286,111973.8763768961,0,1542.173567140893 -52,69,111,110,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.55589281045267,5.545863665456011,50,3,-45.21602601359422,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.814672827551965,5.235619694613148,62.12,32.01,39.74,39.79,8.333333333333334,1,1,0,0,0,12,2,1,832,354328.6219800134,169780.1175590286,111973.8763768961,0,1542.173567140893 -53,70,112,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,5.317259856526062,6.313336249873021,6.232638862162626,0,0,-1022.177016982958,0,2,1,2019,16,5,18,15,1,5,0,1.689718334991372,1.689718334991372,0,0,0,0,2,1,1,0,1.108367934818629,5.987417957818503,45.23,37.81,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,723,1080313.672638653,193376.7270341347,906437.9627956274,0,980.180555581221 -54,71,113,114,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.217944609683573,7.387913096312837,0,8,-1,-34.55567097411499,0,2,3,2019,11,1,24,25,1,1,0,6.283531060410129,6.283531060410129,0,0,0,0,0,0,0,0,0,0,54.37,54.8,46.62,50.93,6.666666666666667,1,1,0,0,9,10,5,1,258.5,1346841.003138369,1056378.399964796,270810.2988868259,0,8123.211932498114 -54,71,114,113,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.367008721200209,9.626749945405743,8.230915196813674,8,1,-176.3459848965954,0,-9,-9,2019,21,7,50,55,1,7,0,24.55371556360713,24.55371556360713,0,0,0,0,0,0,0,0,7.905012139240305,7.918709703037792,46.62,50.93,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,258.5,1346841.003138369,1056378.399964796,270810.2988868259,0,8123.211932498114 -54,72,115,-9,113,114,1,1,27,0,0,0,3,3,-9,0,3,7.06798379816357,7.102695397927891,0,0,0,-974.8634225521954,0,2,2,2019,19,7,30,25,1,7,1,5.558394993799882,5.558394993799882,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,486,-64382.21461252264,0,0,0,1515.720406495779 -55,73,116,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.563834152247148,7.276264151404066,41,-13,-4.373970744414869,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,11.36564078948186,0,0,1,1,0,7.418107751184866,7.291481854790997,55.34,30.32,53.44,55.06,8.333333333333334,1,1,0,0,0,12,3,1,540,318457.0489268454,76595.42574711489,91885.82159952969,0,998.2053553134733 -55,74,117,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,6.241204129009029,6.587350257013889,41,13,-37.73860713445161,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.216686079671301,6.569966984486193,53.44,55.06,55.34,30.32,8.333333333333334,1,1,0,0,0,12,3,1,666,420456.6732982432,157764.6007397268,293801.7168333494,0,1134.919210386335 -56,75,118,119,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,6,-5,0,0,2,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.67,60.06,35.19,51.54,0,1,1,0,0,0,13,1,1,860,0,0,0,0,304.0204967402011 -56,75,119,118,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,6,5,0,0,3,3,2019,19,7,0,46,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.19,51.54,19.67,60.06,3.333333333333333,1,1,1,0,6,13,1,1,860,0,0,0,0,304.0204967402011 -56,75,120,-9,118,119,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.063780788028,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,1,1,860,0,0,0,0,304.0204967402011 -56,76,121,-9,118,119,1,1,20,0,1,0,2,2,1,0,4,7.540190594360009,7.226551890273273,0,0,0,-964.6942953924929,-9,2,2,2019,2,0,18,0,1,0,1,10.59735564948561,10.59735564948561,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,718,-96454.2030939852,-46965.67286736312,0,0,405.3710590814241 -57,77,122,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-936.0582013490102,0,3,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,47,38,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,125,-69725.56485761495,0,0,0,1135.856980950028 -58,78,123,124,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,59,-2,87.14933258636333,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,40.53592347530662,0,0,1,1,0,0,0,46.3,21.62,54.2,57.49,8.333333333333334,1,1,0,0,0,13,2,1,1940.5,493853.102698567,170013.3640234476,199095.2268611484,0,2195.891500614148 -58,78,124,123,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.92247436879467,6.745339745651129,59,2,44.28437336390265,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.050625506575135,7.211793073154052,54.2,57.49,46.3,21.62,10,1,1,0,0,5,13,2,1,1940.5,493853.102698567,170013.3640234476,199095.2268611484,0,2195.891500614148 -59,79,125,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.645097388612155,7.371639834557002,0,0,0,-1051.304976159028,0,3,2,2019,6,0,24,24,1,0,0,11.9808614810645,11.9808614810645,0,0,0,0,0,0,0,0,3.551624557551325,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,9,3,1,2393,170483.7085841904,82338.76267372753,0,0,1144.696988140666 -60,80,126,127,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.679285510194447,8.691067811030935,0,8,-3,111.9199094718014,0,-9,-9,2019,9,0,50,50,1,0,0,14.44675800135973,14.44675800135973,0,0,0,0,0,0,0,0,0,0,54,54,59.29,49.68,8,1,1,0,0,1,12,5,1,523,1068289.145584231,995532.8708947262,173520.5692606986,0,3253.00772485282 -60,80,127,126,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.269033948396832,7.095775603977784,0,40,3,43.97814391722653,0,3,3,2019,6,0,25,25,1,0,0,5.129900463192535,5.129900463192535,0,0,0,0,2,0,0,0,0,0,59.29,49.68,54,54,8.333333333333334,1,1,0,0,9,12,5,1,523,1068289.145584231,995532.8708947262,173520.5692606986,0,3253.00772485282 -61,81,128,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1002.273461698846,0,3,3,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.27,42.46,-9,-9,0,1,1,0,1,2,6,1,0,486,9432.244041008702,0,0,0,711.4965675277297 -62,82,129,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.257980303866596,8.314572747326855,0,0,0,-1131.51109456837,0,2,2,2019,4,0,37,38,1,0,0,12.69659652735888,12.69659652735888,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,460,-101111.1509109901,69136.5949439727,0,0,1523.665846357165 -63,83,130,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,0,0,-824.1400256201231,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,44.42,29.96,-9,-9,3.333333333333333,1,1,0,1,7,7,1,0,304,-37708.0966218367,0,0,0,355.9393329964665 -64,84,131,-9,-9,-9,1,0,46,0,0,0,2,2,1,0,2,0,8.60838847897571,8.641116857485819,0,0,-980.9169672007804,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.071981012243175,0,54.59,32.29,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,718,117272.2809503324,0,0,0,3262.984060367264 -64,84,132,-9,131,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1164.632723495847,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.32,57.18,-9,-9,8.333333333333334,1,1,0,0,2,6,5,1,718,117272.2809503324,0,0,0,3262.984060367264 -65,85,133,134,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.816278255736307,8.435414917504454,0,8,14,-35.87733398203797,0,-9,-9,2019,12,0,37,37,1,0,0,20.70472094171876,20.70472094171876,0,0,0,0,0,1,1,0,0,0,55.36,54.24,48.87,58.55,8.333333333333334,1,1,0,0,9,4,5,1,1042.75,871921.4193549817,568017.3543681032,276949.8275082537,56236.95259397638,3817.303253875336 -65,85,134,133,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.376274131008149,8.385807241527381,0,8,-14,63.30042741716154,0,1,2,2019,12,0,28,24,1,0,0,18.5985095211263,18.5985095211263,0,0,0,0,0,1,1,0,0,0,48.87,58.55,55.36,54.24,10,1,1,0,0,9,4,5,1,1042.75,871921.4193549817,568017.3543681032,276949.8275082537,56236.95259397638,3817.303253875336 -65,85,135,-9,134,133,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.138256766921,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,4,5,1,1042.75,871921.4193549817,568017.3543681032,276949.8275082537,56236.95259397638,3817.303253875336 -65,85,136,-9,134,133,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.3699086145904,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,4,5,1,1042.75,871921.4193549817,568017.3543681032,276949.8275082537,56236.95259397638,3817.303253875336 -66,86,137,138,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.495784157419152,7.7618256070108,53,-4,46.87127438273468,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.612464536677712,51,46,60.29,52.11,7,1,1,0,0,0,11,3,1,494,874384.013699135,570655.6731901849,212716.8396173477,0,1966.824436083954 -66,86,138,137,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.135352763223294,7.012979569250282,50,4,129.2596296460909,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.066404223181019,0,1,1,0,3.398733764188956,6.995642232046804,60.29,52.11,51,46,10,1,1,0,0,0,11,3,1,494,874384.013699135,570655.6731901849,212716.8396173477,0,1966.824436083954 -66,87,139,-9,137,138,1,0,45,0,0,0,1,1,-9,0,4,7.138736057160254,7.168271313030483,0,0,0,-954.3732597831246,-9,2,2,2019,10,0,40,0,1,1,0,3.611056439375846,3.611056439375846,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,11,3,1,448,-133719.0051756013,28245.39514913348,0,0,1531.499304148051 -67,88,140,-9,141,142,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.2484660668676,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,431.3333333333333,208225.3709164148,72706.51557234686,0,0,1924.611633835372 -67,88,141,142,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,6.675960174828251,6.616435687060372,0,15,-3,-98.60469073117454,0,-9,-9,2019,19,9,40,30,1,9,0,1.883198423259597,1.883198423259597,0,0,0,0,2,1,1,0,.7535733318330514,0,43.08,45.41,57.16,56.15,6.666666666666667,1,1,0,0,10,8,3,0,431.3333333333333,208225.3709164148,72706.51557234686,0,0,1924.611633835372 -67,88,142,141,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.12482722463594,8.162415466841598,0,15,3,1.498157982755351,0,1,1,2019,6,0,34,24,1,0,0,11.35785940869032,11.35785940869032,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.08,45.41,6.666666666666667,2,3,0,0,10,8,3,0,431.3333333333333,208225.3709164148,72706.51557234686,0,0,1924.611633835372 -68,89,143,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.583925596064045,9.073244333669741,6.408609707820101,0,0,-1076.580700974436,0,2,3,2019,12,0,37,40,1,0,0,15.78680339264214,15.78680339264214,0,0,0,0,0,1,1,0,7.027918114082539,0,49.64,48.69,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,697,434454.4072645183,234112.3748057664,253818.6532230218,26599.13808590211,2307.736264125235 -68,90,144,-9,143,-9,1,0,26,0,0,0,1,1,-9,0,2,6.985549319898862,6.916063631559213,0,0,0,-834.0224518857625,0,2,1,2019,12,0,28,0,1,0,1,6.249125066176132,6.249125066176132,0,0,0,0,0,1,1,0,0,0,23.48,58.65,-9,-9,0,1,1,0,0,5,2,2,1,2650,99359.04537525927,11007.23216702107,0,0,680.3381355823971 -68,91,145,-9,143,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1078.774251364071,-9,3,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,0,1,1,0,0,0,2,2,1,530,-225699.0007591459,0,0,0,0 -68,92,146,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,8.073993114087376,8.092830569016332,0,0,0,-1016.483744344908,0,-9,-9,2019,19,7,55,55,1,7,0,6.811384859758339,6.811384859758339,0,0,0,0,0,1,1,0,0,0,30.32,45.77,-9,-9,1.666666666666667,1,1,0,1,6,2,4,1,294,292667.2888268524,53981.23334822745,0,0,1457.848050301528 -69,93,147,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.1274190018116,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.54,46.62,-9,-9,1.666666666666667,1,1,0,0,9,1,1,1,1285,-3915.97691251168,0,0,0,658.660982504859 -70,94,148,-9,151,149,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.8868417642743,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,4,1,818,923772.3933113046,490124.8951245623,584345.7434750801,89569.53480664708,3146.635712854452 -70,94,149,151,-9,-9,1,1,57,0,2,0,2,2,-9,0,1,8.652331815141171,9.050747192010416,0,9,5,-14.53209272209557,0,2,2,2019,30,12,51,50,1,12,0,16.26057058867587,16.26057058867587,0,0,0,0,0,1,1,0,0,0,13,52.79,51.21,43.72,1.666666666666667,1,1,0,0,10,7,4,1,818,923772.3933113046,490124.8951245623,584345.7434750801,89569.53480664708,3146.635712854452 -70,94,150,-9,151,149,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-879.8761206022799,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,4,1,818,923772.3933113046,490124.8951245623,584345.7434750801,89569.53480664708,3146.635712854452 -70,94,151,149,-9,-9,1,0,52,0,2,0,3,3,-9,0,4,7.125668182688141,7.46621170449362,0,9,-5,-61.71353693895009,0,3,3,2019,12,0,22,22,1,0,0,7.313696848232225,7.313696848232225,0,0,0,0,0,1,1,0,.978070712813085,0,51.21,43.72,13,52.79,6.666666666666667,1,1,0,0,8,7,4,1,818,923772.3933113046,490124.8951245623,584345.7434750801,89569.53480664708,3146.635712854452 -71,95,152,-9,154,155,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.703452462709,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,1426.25,1189951.24087012,373729.2477075284,596936.6342720588,14754.81417616417,4812.466775049686 -71,95,153,-9,154,155,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.0059108612127,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,5,1,1426.25,1189951.24087012,373729.2477075284,596936.6342720588,14754.81417616417,4812.466775049686 -71,95,154,155,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.742492615707452,8.573367196857616,0,24,-3,-125.9911516326413,0,2,2,2019,11,1,34,21,1,1,0,17.80764108716162,17.80764108716162,0,0,0,0,0,1,1,0,6.126475715421263,0,57.06,57.76,20.23,65.13,8.333333333333334,1,1,0,0,10,1,5,1,1426.25,1189951.24087012,373729.2477075284,596936.6342720588,14754.81417616417,4812.466775049686 -71,95,155,154,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.081402356191401,8.961544318957962,0,24,3,-28.97033449256273,0,2,2,2019,32,12,37,47,1,12,0,23.08936563775531,23.08936563775531,0,0,0,0,0,1,1,0,0,0,20.23,65.13,57.06,57.76,6.666666666666667,1,1,0,0,12,1,5,1,1426.25,1189951.24087012,373729.2477075284,596936.6342720588,14754.81417616417,4812.466775049686 -72,96,156,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,4,7.630403434588569,8.339860048660269,6.325344775786516,0,0,-911.6473268276525,-9,-9,-9,2019,10,0,39,0,1,0,0,9.086498003935722,9.086498003935722,0,0,0,0,0,0,0,0,6.050106558879554,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,482,-140327.7143803675,-54215.28742840687,0,0,1611.75976419932 -73,97,157,158,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.317295331139418,7.554549219617212,0,13,1,-223.247699776989,0,2,1,2019,11,0,25,0,1,0,0,7.815982479622241,7.815982479622241,0,0,0,0,0,1,1,0,0,0,59.47,41.3,46.5,58.26,8.333333333333334,1,1,0,0,0,2,4,0,464.5,300547.2626457463,185882.7534787903,189431.4747472595,0,3127.925261510476 -73,97,158,157,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.879752946511386,9.122152887441933,0,13,-1,47.50305082827826,0,2,2,2019,12,1,38,38,1,1,0,20.70648962902198,20.70648962902198,0,0,0,0,0,1,1,0,0,0,46.5,58.26,59.47,41.3,5,1,1,0,0,9,2,4,0,464.5,300547.2626457463,185882.7534787903,189431.4747472595,0,3127.925261510476 -74,98,159,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.722093162931963,7.796214501430691,0,0,-1087.712835386103,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.047014842411427,52,45,-9,-9,8,1,1,0,0,0,9,3,1,892,1077716.485531981,346856.2576005636,521693.0592671602,0,2319.157817265268 -75,99,160,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1149.163863108535,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.73,46.66,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,1853,-232142.3200106153,0,0,0,1507.038692708935 -76,100,161,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.256795312668466,7.188870428574018,0,0,0,-1009.784254458044,0,-9,2,2019,8,0,50,45,1,0,0,3.43573660169406,3.43573660169406,0,0,0,0,2,1,1,0,0,0,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,13,1,3,1,501,43246.35910543962,0,73768.60717388309,22417.11358898881,813.3126109452087 -77,101,162,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.794161410471041,8.151296881613392,7.629582302376556,0,0,-1019.978383396748,0,2,2,2019,15,3,36,38,1,3,0,13.45393789611949,13.45393789611949,0,0,0,0,0,1,1,0,1.926933431907746,7.236260948049098,47.16,28.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,417,602124.6526281985,608086.9667364348,0,0,2099.000925127498 -78,102,163,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.192529251247169,6.194096230892739,0,0,-897.3484424358228,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.904675405587839,6.090513093015381,56.67,42.78,-9,-9,8.333333333333334,1,1,0,0,7,6,2,0,1243,-5702.348488362419,90915.77045889599,0,0,952.8049642562723 -79,103,164,165,-9,-9,1,1,62,0,0,0,2,2,-9,1,4,0,0,0,9,-1,0,0,3,3,2019,17,5,0,42,3,5,0,0,0,0,0,0,0,120,1,0,1,0,0,36.18,52.56,49,48,5,1,1,0,0,9,12,1,0,385,277273.7902927967,0,153869.3179230025,0,1658.213818641166 -79,103,165,164,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,0,0,0,9,1,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,36.18,52.56,7,1,1,0,0,0,12,1,0,385,277273.7902927967,0,153869.3179230025,0,1658.213818641166 -80,104,166,167,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.907221213335278,6.048331849975376,62,3,-3.280400210240461,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,6.92238522624103,7.396325178553303,0,0,1,1,0,0,5.948181510465189,63.17,22.41,63.33,25.23,6.666666666666667,1,1,0,0,0,9,2,0,358.5,143487.4347835979,170673.1049681834,0,0,1362.007469081963 -80,104,167,166,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,59,-3,-68.96377943676502,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,9.223451822923444,0,0,1,1,0,0,0,63.33,25.23,63.17,22.41,6.666666666666667,1,1,0,0,0,9,2,0,358.5,143487.4347835979,170673.1049681834,0,0,1362.007469081963 -81,105,168,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,6.69557502709419,6.899673180586967,5.652778080785867,0,0,-1235.65827655629,0,2,1,2019,7,0,18,18,1,0,0,4.113546558714532,4.113546558714532,0,0,0,0,2,1,1,0,4.313757703495929,6.062152282517458,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,711,457397.4626786258,-49292.36898383114,135605.6743046676,0,853.3717500193272 -82,106,169,170,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,28,1,-30.82456961394684,0,2,3,2019,23,10,0,3,3,10,0,0,0,0,0,0,1.624638125141235,14.5,1,1,0,0,0,42.96,19.78,40.38,59.14,8.333333333333334,1,1,0,0,5,2,4,1,514.5,682637.6644575035,447751.5581641762,339262.8297848916,74378.81984097834,2307.855056329919 -82,106,170,169,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.532773003933913,8.646964115545442,6.875665253586972,28,-1,143.499805536962,0,2,3,2019,15,4,37,48,1,4,0,17.00737149537163,17.00737149537163,0,0,0,0,0,1,1,0,0,6.915701761556841,40.38,59.14,42.96,19.78,3.333333333333333,1,1,0,0,9,2,4,1,514.5,682637.6644575035,447751.5581641762,339262.8297848916,74378.81984097834,2307.855056329919 -82,107,171,-9,169,170,1,1,21,0,0,0,2,2,-9,0,5,7.844414458288372,8.038388230408216,0,0,0,-877.1153764844377,0,2,2,2019,0,0,60,60,1,0,1,4.436641206162025,4.436641206162025,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,5,1,1,0,0,4,2,3,1,150,125913.5323825974,31083.57570338607,0,0,732.6445904405462 -82,108,172,-9,169,170,1,1,20,0,0,0,2,2,-9,0,5,7.501916051661492,7.858045674007798,0,0,0,-1041.15120915782,0,3,2,2019,9,1,30,40,1,1,1,5.931803112804527,5.931803112804527,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,476,-87676.80365126014,0,0,0,2626.72518093396 -82,109,173,-9,169,170,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1081.104911669617,0,3,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,1358,10062.22527670563,0,0,0,0 -83,110,174,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.129435040501484,6.147824041127662,0,0,-932.5815023264557,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.717640857465455,5.970708880135077,46.71,26.18,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1040,531714.6440613881,96739.56340083529,247485.9947391236,0,932.6904757821262 -84,111,175,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.800544664431307,6.069165533463953,0,0,-987.8025802551753,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.75322472438185,6.173306213565653,49.67,43.39,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,68,330271.3457068985,72756.14528474362,114060.1080936221,0,1417.455304568344 -85,112,176,177,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,0,0,43,1,97.88767939556703,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.221958373118925,0,58.87,51.29,46.08,57.2,8.333333333333334,1,1,0,0,9,6,3,1,915.5,161190.1162259755,0,74052.25225758283,0,1643.519837115167 -85,112,177,176,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.803369812225319,8.024246430164048,0,43,-1,65.28531552185844,0,3,3,2019,13,1,38,38,1,1,0,9.163415099901652,9.163415099901652,0,0,0,0,0,0,0,0,3.731391014148504,0,46.08,57.2,58.87,51.29,6.666666666666667,1,1,0,0,11,6,3,1,915.5,161190.1162259755,0,74052.25225758283,0,1643.519837115167 -86,113,178,179,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,5.788863722088871,7.235244543145078,6.196194854944789,28,-2,-7.906122287023606,0,-9,-9,2019,12,2,5,5,1,2,0,6.904103305871896,6.904103305871896,0,0,0,0,14.5,0,0,0,2.73037677624707,6.417346559942056,37.9,18.09,50.72,46.82,8.333333333333334,1,1,0,0,3,9,5,1,839.5,2272507.255227185,1366790.220642016,423045.1483921143,0,3340.603610992472 -86,113,179,178,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.238354250401496,8.329886249156523,8.124282819972434,28,2,115.4421698604445,0,2,2,2019,10,0,20,30,1,0,0,18.69446490408507,18.69446490408507,0,0,0,0,2,0,0,0,0,7.640338881646265,50.72,46.82,37.9,18.09,6.666666666666667,1,1,0,0,10,9,5,1,839.5,2272507.255227185,1366790.220642016,423045.1483921143,0,3340.603610992472 -86,114,180,-9,178,179,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-958.4555475883755,1,1,1,2019,11,1,0,17,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,2328,-97410.79375003965,0,0,0,0 -87,115,181,-9,182,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.246692960766,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,614.5,-18547.87113684604,56770.14170948717,0,0,1782.391601200754 -87,115,182,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.108512373429998,7.134714229021127,4.819611166921194,0,0,-1116.912914866642,-9,3,3,2019,17,5,20,0,1,5,0,6.159190117529172,6.159190117529172,0,0,0,0,0,1,1,0,4.982744166249299,0,34.48,61.03,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,614.5,-18547.87113684604,56770.14170948717,0,0,1782.391601200754 -88,116,183,184,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.524784954187941,8.72543021783264,0,10,-3,-38.33164326109715,0,3,3,2019,7,0,36,36,1,0,0,18.17305143297691,18.17305143297691,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.77,50.48,8.333333333333334,1,1,0,0,11,6,5,0,165.5,59282.24211242585,134142.7076509682,198974.0730733518,3156.669186852931,3326.142115981086 -88,116,184,183,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.059026822407831,7.28399264912056,5.737323559253309,10,3,-75.73406277281998,0,-9,-9,2019,5,0,17,18,1,0,0,7.947263603157706,7.947263603157706,0,0,0,0,2,1,1,0,5.937373875536553,0,52.77,50.48,54.2,57.49,8.333333333333334,1,1,0,0,10,6,5,0,165.5,59282.24211242585,134142.7076509682,198974.0730733518,3156.669186852931,3326.142115981086 -89,117,185,186,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.371252910387463,8.572429355326307,6.185333330775491,4,2,-45.68533625252364,0,2,2,2019,6,0,35,35,1,0,0,16.81127193028801,16.81127193028801,0,0,0,0,0,0,0,0,5.793078839413403,5.918864588717805,57.16,35.48,51.09,53.64,8.333333333333334,3,4,0,0,7,8,5,1,548.5,946486.0547396375,500793.7691732594,655488.711672789,85498.46917202583,7940.812490420069 -89,117,186,185,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.746662211818741,8.970153098269739,0,4,-2,-10.33558402892352,0,-9,-9,2019,8,1,41,40,1,1,0,22.17465278938567,22.17465278938567,0,0,0,0,0,0,0,0,8.215012151691285,0,51.09,53.64,57.16,35.48,8.333333333333334,3,4,0,0,5,8,5,1,548.5,946486.0547396375,500793.7691732594,655488.711672789,85498.46917202583,7940.812490420069 -89,118,187,-9,185,186,1,0,25,0,0,0,1,1,-9,0,3,8.947179337404123,8.7817561328838,0,0,0,-998.0319274094693,0,2,1,2019,15,4,50,48,1,4,1,10.82807982923478,10.82807982923478,0,0,0,4.072869185365612,0,0,0,0,0,0,30.7,62.92,-9,-9,6.666666666666667,3,4,0,0,3,8,5,1,268,10007.46695751992,71122.93128920835,0,0,2113.160532610802 -90,119,188,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.845403894222348,8.106851171954181,0,0,0,-951.5936585505103,0,-9,2,2019,12,0,50,50,1,0,0,9.004062506778595,9.004062506778595,0,0,0,0,0,0,0,0,0,0,39.29,41.42,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,2012,-51027.78854198786,2606.572870043633,118723.3441870657,57647.94900804448,1639.667185858835 -90,120,189,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-949.4686023573948,1,-9,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.58,46.62,-9,-9,5,1,1,0,0,3,11,1,1,949,0,0,0,0,0 -91,121,190,191,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.776114473132807,8.885300138743846,0,3,4,-91.70720989331159,0,2,3,2019,8,0,45,40,1,0,0,16.82756000963068,16.82756000963068,0,0,0,0,0,0,0,0,0,0,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,351.5,157794.8653070918,6408.10957920452,109117.3483389008,-7649.913741181212,4308.747058855464 -91,121,191,190,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.616517768468237,8.442540537697752,0,3,-4,18.48768349661943,0,-9,-9,2019,10,0,48,38,1,0,0,13.47204978419476,13.47204978419476,0,0,0,0,0,0,0,0,1.957367078471981,0,57.16,56.15,52.99,51.28,8.333333333333334,1,1,0,0,12,4,5,1,351.5,157794.8653070918,6408.10957920452,109117.3483389008,-7649.913741181212,4308.747058855464 -92,122,192,193,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,55,3,0,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.938748862592457,0,53,46,50.69,52.35,8,1,1,0,0,0,13,1,1,539.5,492544.4154708772,0,380011.6925429617,0,836.2407437293771 -92,122,193,192,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,55,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,50.69,52.35,53,46,10,1,1,0,0,0,13,1,1,539.5,492544.4154708772,0,380011.6925429617,0,836.2407437293771 -93,123,194,-9,195,-9,1,1,56,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1010.732627332903,-9,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.650214485567043,0,35,44.22,-9,-9,3.333333333333333,1,1,0,0,6,5,1,1,350,131680.619611016,-40707.93847184406,188862.5740419388,0,248.6964324721166 -93,124,195,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.467588125257498,7.007656674430641,0,0,-1086.151942265211,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.69001081076089,6.819553435404349,52,45,-9,-9,8,1,1,0,0,0,5,2,1,828,378315.6072019073,1813.268620686962,89755.03400009887,0,1078.096864138941 -94,125,196,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,6.952253483731256,7.211379638195374,0,0,-1033.256620558622,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.725778040145302,7.448271308045206,57.98,20.77,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,42,495657.6632138094,298846.063088097,73122.06458271282,0,1594.847455149595 -95,126,197,-9,198,201,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.505608586173,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,840.8,-46452.88431628204,29245.80990709552,0,0,2278.948556966707 -95,126,198,201,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,8,-3,5.538327742897501,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,48.87,58.55,7,2,3,0,0,0,8,3,0,840.8,-46452.88431628204,29245.80990709552,0,0,2278.948556966707 -95,126,199,-9,198,201,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.9516985444061,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,840.8,-46452.88431628204,29245.80990709552,0,0,2278.948556966707 -95,126,200,-9,198,201,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-883.576247287389,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,840.8,-46452.88431628204,29245.80990709552,0,0,2278.948556966707 -95,126,201,198,202,-9,1,1,35,0,3,0,2,2,-9,0,4,8.236194337054934,8.427053734561239,0,15,3,107.3485743176779,0,3,3,2019,12,0,36,36,1,0,0,12.0119698432309,12.0119698432309,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48,57,5,2,3,0,0,11,8,3,0,840.8,-46452.88431628204,29245.80990709552,0,0,2278.948556966707 -95,127,202,-9,-9,-9,1,0,79,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1047.014910270256,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,0,604,0,0,0,0,1141.253779569289 -96,128,203,204,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,8.141963596585695,8.650911267102792,0,11,0,20.89581103095151,0,2,1,2019,6,0,38,38,1,0,0,12.16458854149019,12.16458854149019,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51,56,10,2,3,0,0,9,8,5,1,624.75,886729.9608157595,369527.3971530568,954635.8534102472,391880.9589871935,4379.159707883464 -96,128,204,203,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.91945892477381,8.660508481198155,0,10,0,68.14485200609897,0,-9,-9,2019,9,0,38,38,1,1,0,24.31329710547879,24.31329710547879,0,0,0,0,0,1,1,0,0,0,51,56,62.49,55.09,8,2,3,0,0,1,8,5,1,624.75,886729.9608157595,369527.3971530568,954635.8534102472,391880.9589871935,4379.159707883464 -96,128,205,-9,203,204,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.9333623155235,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,624.75,886729.9608157595,369527.3971530568,954635.8534102472,391880.9589871935,4379.159707883464 -96,128,206,-9,203,204,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.771023634451,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,624.75,886729.9608157595,369527.3971530568,954635.8534102472,391880.9589871935,4379.159707883464 -97,129,207,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.377719864180925,8.451506260416542,0,0,0,-956.4864870572866,0,2,1,2019,6,0,55,40,1,0,0,10.40469004143587,10.40469004143587,0,0,0,0,0,0,0,0,3.517638010316618,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,215,111887.509716543,0,0,0,1996.040410482433 -98,130,208,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.980233830025963,8.728787558355512,0,0,0,-918.5080499358839,0,2,2,2019,12,1,40,40,1,1,0,20.53456997133356,20.53456997133356,0,0,0,0,0,0,0,0,1.749170734961493,0,36.99,54.41,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,210,-146032.0231839419,-28229.28035414581,0,0,3103.588604148019 -99,131,209,210,-9,-9,1,0,51,0,1,0,2,2,-9,1,2,8.144622085019892,8.119043303014486,0,10,3,-24.93020435993946,0,2,3,2019,11,1,50,50,1,1,0,10.70703155873736,10.70703155873736,0,0,0,0,2,1,1,0,0,0,56.49,37.8,49.89,22.03,3.333333333333333,1,1,0,0,10,13,3,1,567.6666666666666,317483.4067834615,92311.83814883773,113767.6919200717,101385.7308857381,2174.521758662604 -99,131,210,209,-9,-9,1,1,48,0,1,0,3,3,-9,0,1,0,0,0,10,-3,-31.32942228977537,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.89,22.03,56.49,37.8,5,1,1,1,1,0,13,3,1,567.6666666666666,317483.4067834615,92311.83814883773,113767.6919200717,101385.7308857381,2174.521758662604 -99,131,211,-9,209,210,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.588518513534,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,567.6666666666666,317483.4067834615,92311.83814883773,113767.6919200717,101385.7308857381,2174.521758662604 -99,132,212,-9,209,210,1,0,18,0,1,0,3,3,1,0,3,5.151311354199817,5.433159739006969,0,0,0,-1031.981521323851,-9,2,3,2019,19,7,5,0,1,7,1,5.113790128461157,5.113790128461157,0,0,0,0,0,1,1,0,0,0,30.25,56.52,-9,-9,5,1,1,0,0,2,13,2,1,951,-44827.26456719921,0,0,0,218.2221551032159 -100,133,213,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.956801098423973,6.951149008529598,4.507221272303283,0,0,-1060.658488736445,0,3,3,2019,14,2,16,0,1,2,0,7.706324829465155,7.706324829465155,0,0,0,0,0,0,0,0,7.161849205513253,6.596140951824879,45.98,56.3,-9,-9,1.666666666666667,1,1,0,1,3,4,2,1,817,417716.6770331661,32616.90746669413,93634.12676367373,0,-3.57255803756162 -101,134,214,216,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,7.834398506846966,7.762742251733671,0,15,-1,75.05871120092846,0,1,1,2019,10,0,18,18,1,0,0,13.03284665755227,13.03284665755227,0,0,0,0,0,1,1,0,2.678641733124016,0,52.43,55.57,43.42,62.33,10,1,1,0,0,9,9,5,1,1245.25,789290.9945623681,59710.37997369607,1016619.500388088,445224.2107963559,6228.591022466171 -101,134,215,-9,214,216,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.9288303210849,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1245.25,789290.9945623681,59710.37997369607,1016619.500388088,445224.2107963559,6228.591022466171 -101,134,216,214,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.520796508548784,8.973724402251079,0,10,1,90.32655215119226,0,2,2,2019,12,2,45,55,1,2,0,34.46589072790454,34.46589072790454,0,0,0,0,0,1,1,0,7.454063307772876,0,43.42,62.33,52.43,55.57,8.333333333333334,1,1,0,0,11,9,5,1,1245.25,789290.9945623681,59710.37997369607,1016619.500388088,445224.2107963559,6228.591022466171 -101,134,217,-9,214,216,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.768133038076,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1245.25,789290.9945623681,59710.37997369607,1016619.500388088,445224.2107963559,6228.591022466171 -102,135,218,-9,219,221,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1050.773573944503,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,374.25,791424.2437356473,453936.0590808507,198133.7654890812,5586.820933576873,3818.00413057224 -102,135,219,221,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.723244394871978,7.657455946336913,0,10,0,-46.56379354214187,0,2,2,2019,7,0,52,30,1,0,0,5.1567575051493,5.1567575051493,0,0,0,0,0,1,1,0,0,0,52.54,54.24,52,54.51,8.333333333333334,1,1,0,0,11,4,4,1,374.25,791424.2437356473,453936.0590808507,198133.7654890812,5586.820933576873,3818.00413057224 -102,135,220,-9,219,221,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1038.273410964859,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.6557126483149853,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,374.25,791424.2437356473,453936.0590808507,198133.7654890812,5586.820933576873,3818.00413057224 -102,135,221,219,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.609408184060355,8.638545862865364,0,10,0,-123.7369353119099,0,1,2,2019,10,1,43,40,1,1,0,14.02115794811188,14.02115794811188,0,0,0,0,0,1,1,0,.7249483216439291,0,52,54.51,52.54,54.24,8.333333333333334,1,1,0,0,11,4,4,1,374.25,791424.2437356473,453936.0590808507,198133.7654890812,5586.820933576873,3818.00413057224 -103,136,222,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.270377732774747,8.580752554693694,0,0,0,-922.4520523090176,0,3,3,2019,7,0,50,40,1,0,0,8.657870151833015,8.657870151833015,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,9,8,4,1,276,180062.8972902655,0,0,0,1395.404309506511 -104,137,223,224,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.510075007406451,7.149285597526493,45,-8,104.1173057818445,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.716518327234743,7.557688034689378,51.67,60.18,57.16,56.15,8.333333333333334,1,1,0,0,3,10,2,0,951,605424.702054291,297695.5515924832,231492.750965014,0,3012.846159414191 -104,137,224,223,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,0,0,45,8,67.59998465799342,0,-9,3,2019,8,0,0,70,4,0,0,0,0,0,0,0,0,0,1,1,0,5.940896512568416,0,57.16,56.15,51.67,60.18,8.333333333333334,1,1,0,0,9,10,2,0,951,605424.702054291,297695.5515924832,231492.750965014,0,3012.846159414191 -105,138,225,226,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,2.800762497886959,2.887213155760763,51,0,50.64656622270631,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,2.714089051308084,30.34,48.15,39.5,41.06,10,1,1,0,0,0,5,2,1,1398,313099.0725826734,161224.9566283407,190016.9967375899,0,1891.987151182004 -105,138,226,225,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.317171276752963,7.267388589712656,51,0,109.5885515273309,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.203299142145805,7.09691204653788,39.5,41.06,30.34,48.15,6.666666666666667,1,1,0,0,0,5,2,1,1398,313099.0725826734,161224.9566283407,190016.9967375899,0,1891.987151182004 -106,139,227,228,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.655678518491931,7.599525404849159,0,3,-2,-128.0023625376859,0,2,2,2019,10,0,29,0,1,0,0,6.325762420041454,6.325762420041454,0,0,0,0,0,0,0,0,2.462014339884627,0,45.01,49.59,57.03,48.06,6.666666666666667,1,1,0,0,8,7,4,1,895.5,193899.1626557265,34907.29601595168,0,0,2036.980976764445 -106,139,228,227,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.672185313414231,7.863575259230804,5.641183184484193,3,2,-82.50542524520647,0,2,2,2019,9,1,60,50,1,1,0,4.239940098999427,4.239940098999427,0,0,0,0,0,0,0,0,0,5.00697766290566,57.03,48.06,45.01,49.59,8.333333333333334,1,1,0,0,8,7,4,1,895.5,193899.1626557265,34907.29601595168,0,0,2036.980976764445 -107,140,229,230,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.077728318917954,7.19765516277419,0,39,2,-100.6923728339707,0,3,2,2019,6,0,30,24,1,0,0,5.627301751414372,5.627301751414372,0,0,0,0,2,0,0,0,3.463189915846415,0,58.92,48.59,54.2,57.49,8.333333333333334,1,1,0,0,11,6,4,1,622.5,316999.0981923507,228028.12667798,74247.22667789629,0,2319.59246254354 -107,140,230,229,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.194490044481968,8.2120730364417,0,40,-2,-64.68559367208545,0,3,3,2019,9,0,37,37,1,0,0,12.84075241082878,12.84075241082878,0,0,0,0,2,0,0,0,2.816975657197013,0,54.2,57.49,58.92,48.59,8.333333333333334,1,1,0,0,11,6,4,1,622.5,316999.0981923507,228028.12667798,74247.22667789629,0,2319.59246254354 -108,141,231,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.69409001956074,8.694108502808616,0,0,0,-975.7317894071954,0,1,1,2019,4,0,42,42,1,0,0,17.91312092641041,17.91312092641041,0,0,0,0,0,1,1,0,2.564986011455723,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,421,135889.5329234443,73458.66622997003,0,0,2688.35973081997 -109,142,232,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1034.142469541833,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,2.605225000565879,2.858609336432369,19.94994025452017,0,1,1,0,0,0,57.99,10.56,-9,-9,5,3,4,0,1,0,5,2,1,524,36938.49605552308,0,99432.941548503,0,989.8752205979923 -110,143,233,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,5,0,5.112343945412104,5.333932360400286,0,0,-1108.285805921872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.01779115387964,5.302758820600445,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,338,425949.3060725756,-27283.90577154547,205959.6521974239,0,2774.694964039901 -111,144,234,235,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,6,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.485614053839533,0,62.39,56.71,51.41,56.15,10,1,1,0,0,7,7,1,1,953,168686.2875029724,0,403280.8433599311,0,776.6259028695988 -111,144,235,234,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.0077153230615205,0,51.41,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,7,1,1,953,168686.2875029724,0,403280.8433599311,0,776.6259028695988 -112,145,236,237,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.970464562045623,8.181662202721157,0,40,-1,-2.996814827008034,0,-9,-9,2019,3,1,21,23,1,1,0,13.50846470244628,13.50846470244628,0,0,0,0,0,0,0,0,0,0,64.64,20.06,51.33,43.71,10,1,1,0,0,12,10,3,1,788.5,820708.9282814278,386008.33633966,420272.8292525127,15204.96323689155,1232.490781125254 -112,145,237,236,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,0,0,0,40,1,19.64134702151203,0,-9,-9,2019,5,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,2.330021165778119,0,51.33,43.71,64.64,20.06,8.333333333333334,1,1,0,0,12,10,3,1,788.5,820708.9282814278,386008.33633966,420272.8292525127,15204.96323689155,1232.490781125254 -113,146,238,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.757044093936765,7.94520051303011,5.854050952894655,0,0,-934.2785943881156,0,3,2,2019,12,1,30,30,1,1,0,7.869672096312116,7.869672096312116,0,0,0,0,0,1,1,0,0,5.816276457565872,50,40.18,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,436,-15014.01238196241,112951.3616656983,0,0,794.2778283692921 -114,147,239,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-901.6756259265436,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,1093,185491.2783287236,0,25389.20159821563,0,651.4833170171997 -115,148,240,-9,242,241,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.5987529560714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,226.6666666666667,-66695.13038663907,0,0,0,2085.68733587301 -115,148,241,242,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.203372245667826,8.107826503469347,0,8,3,-55.8373606551637,0,-9,-9,2019,6,0,45,48,1,0,0,10.61738804983866,10.61738804983866,0,0,0,0,0,1,1,0,0,0,47,51,58.32,50.22,10,1,1,0,0,12,9,3,0,226.6666666666667,-66695.13038663907,0,0,0,2085.68733587301 -115,148,242,241,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.360991133004744,7.056047656318607,0,8,-3,-17.17566178342577,0,2,3,2019,8,0,28,28,1,0,0,5.494477320485016,5.494477320485016,0,0,0,0,0,1,1,0,0,0,58.32,50.22,47,51,10,1,1,0,0,10,9,3,0,226.6666666666667,-66695.13038663907,0,0,0,2085.68733587301 -116,149,243,245,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.836807083139648,9.827236021236288,0,8,0,26.64204688666141,0,1,1,2019,10,0,50,50,1,0,0,42.10503227415489,42.10503227415489,0,0,0,0,0,0,0,0,6.905321542369959,0,48.28,60.18,49.02,55.87,8.333333333333334,2,3,0,0,9,8,5,1,261.5,218792.7042160787,85777.88618360626,0,0,16177.25631665809 -116,149,244,-9,245,243,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.603659646952,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,261.5,218792.7042160787,85777.88618360626,0,0,16177.25631665809 -116,149,245,243,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,8,0,32.07119251538495,0,-9,-9,2019,6,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.02,55.87,48.28,60.18,8.333333333333334,1,1,1,0,8,8,5,1,261.5,218792.7042160787,85777.88618360626,0,0,16177.25631665809 -116,149,246,-9,245,243,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.638985559637,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,261.5,218792.7042160787,85777.88618360626,0,0,16177.25631665809 -117,150,247,249,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.813734235941664,7.934341942826895,0,7,-2,-94.17271325886252,0,2,2,2019,12,0,30,30,1,0,0,13.41533600341638,13.41533600341638,0,0,0,0,0,1,1,0,0,0,49.12,51.75,57.33,53.46,3.333333333333333,1,1,0,0,8,1,5,1,520,431334.0609468946,151498.9808501682,126506.9075114798,0,3566.812950066379 -117,150,248,-9,247,249,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.615645861566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,520,431334.0609468946,151498.9808501682,126506.9075114798,0,3566.812950066379 -117,150,249,247,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.64418755049712,8.58310889723214,0,7,2,-130.6064583764021,0,2,-9,2019,12,0,41,41,1,0,0,14.71507742958716,14.71507742958716,0,0,0,0,0,1,1,0,.6301653020588874,0,57.33,53.46,49.12,51.75,8.333333333333334,1,1,0,0,8,1,5,1,520,431334.0609468946,151498.9808501682,126506.9075114798,0,3566.812950066379 -118,151,250,-9,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,7.833939369860121,8.013194620464473,0,0,0,-824.3679194087345,0,3,3,2019,8,0,36,36,1,0,0,9.908002132072376,9.908002132072376,0,0,0,0,42,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,1,10,5,3,1,291,334218.7511544345,292628.0805539739,56315.25068861808,63800.37440328088,1453.374814685323 -118,152,251,-9,250,-9,1,0,23,0,1,0,2,2,-9,0,3,7.770976840898748,7.789601586251248,0,0,0,-1051.217638061474,0,2,-9,2019,13,0,38,38,1,3,1,9.639550835342732,9.639550835342732,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,6,1,1,0,0,2,5,3,1,882,-12758.182277066,18552.31819745342,0,0,1887.227827218204 -118,153,252,-9,253,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.170103434431,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,1,2169.5,11231.89401356858,0,0,0,784.5054782309653 -118,153,253,-9,250,-9,1,0,20,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1067.14900413562,-9,2,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,5.24,57.72,-9,-9,3.333333333333333,1,1,1,0,0,5,1,1,2169.5,11231.89401356858,0,0,0,784.5054782309653 -119,154,254,255,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,5.365322936608127,5.490725085925955,0,31,-4,-80.93690716565273,0,3,3,2019,11,0,2,0,1,2,0,12.19123151037148,12.19123151037148,0,0,0,0,0,0,0,0,4.043815747394665,0,48,49,42.41,45.48,7,2,3,0,0,1,2,2,1,1347,846173.5338462216,695656.2571346824,121918.182838632,43882.8048806533,1040.773724831845 -119,154,255,254,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.227952359294412,7.407802976418965,0,31,4,-100.8699533001638,0,3,3,2019,17,5,2,6,1,5,0,64.4446426914197,64.4446426914197,0,0,0,0,0,0,0,0,0,0,42.41,45.48,48,49,5,2,3,0,0,7,2,2,1,1347,846173.5338462216,695656.2571346824,121918.182838632,43882.8048806533,1040.773724831845 -119,155,256,-9,254,255,1,1,25,0,0,0,1,1,-9,0,5,7.899950980683688,7.776483204340558,0,0,0,-1137.495955280842,0,3,1,2019,12,2,35,35,1,2,1,8.259068322336683,8.259068322336683,0,0,0,0,0,0,0,0,0,0,37.46,65.27,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,704,-41666.87236666554,0,0,0,1340.556728345206 -120,156,257,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.05719693116079,5.817902930458787,0,0,-1007.332957459539,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.387037622792022,5.779766470015238,57.76,48.98,-9,-9,10,1,1,0,0,0,5,2,1,392,245273.2712041122,133848.9839962214,83876.62464048044,0,394.0034555543896 -121,157,258,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.106271046880964,6.835705508034409,0,0,-937.5180751394024,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.470833013874969,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,8,4,3,0,308,219865.740945476,219362.8623287738,62278.44489592765,0,1137.364749294247 -122,158,259,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.130339710446219,9.4288269291507,0,0,0,-1069.610509698093,0,-9,-9,2019,4,0,42,25,1,0,0,36.45141058065176,36.45141058065176,0,0,0,0,0,1,1,0,2.879169981437849,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,238,268445.7619231165,0,0,0,4711.268474181154 -123,159,260,261,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.021905139024497,7.32320822624737,9,4,-30.56619550354741,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.582528527994727,7.190735836010602,57.33,53.46,60.13,49.27,8.333333333333334,1,1,0,0,0,9,3,1,1259.5,1001214.917269018,322677.2588822636,432094.91438044,0,2501.46198341133 -123,159,261,260,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.846897033434418,6.995184578506575,9,-4,72.24595120967996,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.387572851591061,7.205062370891977,60.13,49.27,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,1259.5,1001214.917269018,322677.2588822636,432094.91438044,0,2501.46198341133 -124,160,262,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.272332124873525,8.325181309004126,0,0,-883.5549210469119,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,0,0,0,8.347089747672792,8.059035284620862,26.17,45.49,-9,-9,1.666666666666667,1,1,0,1,9,7,4,1,305,1426488.295394659,810353.4292076378,279609.4576859317,0,1504.077469985593 -125,161,263,264,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.497986183406702,6.59559044937805,51,0,-88.30988813565546,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.748468894025892,6.431128576345638,40.46,35.78,52.38,52.93,5,1,1,0,0,5,10,3,1,423,462523.9811875694,296621.9474402512,218273.4549838128,0,2068.898343003722 -125,161,264,263,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,7.185639643056756,7.460861429333728,0,51,0,-2.794890062289525,0,2,2,2019,6,0,25,20,1,0,0,8.072931010282467,8.072931010282467,0,0,0,0,0,1,1,0,1.226367569161373,0,52.38,52.93,40.46,35.78,8.333333333333334,1,1,0,0,11,10,3,1,423,462523.9811875694,296621.9474402512,218273.4549838128,0,2068.898343003722 -126,162,265,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.769260270728324,7.917569435463414,0,0,-1023.646754623015,0,3,-9,2019,22,8,0,0,4,8,0,0,0,0,5.730420214700373,0,0,0,1,1,0,0,7.703616203101932,31.41,37.37,-9,-9,1.666666666666667,1,1,0,0,0,4,3,1,4484,619938.303729669,171682.6946226085,0,0,2491.753750554846 -127,163,266,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,2,8.126081348395894,8.225284189565013,0,0,0,-985.1942713441474,0,2,1,2019,14,2,80,0,1,2,0,5.186598891162968,5.186598891162968,0,0,0,0,0,0,0,0,4.399344016642114,0,47.56,40.9,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,593,93024.55619973551,75736.95226532733,211303.7373308674,71587.72196630957,1313.977790366185 -128,164,267,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,5.961243125202268,6.07988947911161,0,0,0,-1012.948037851702,0,2,-9,2019,5,0,40,36,1,0,0,1.352500808975072,1.352500808975072,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,2,3,0,0,4,4,2,0,570,-159891.9307607197,0,0,0,830.3351393556937 -129,165,268,-9,270,271,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.7652406443947,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1314.5,927505.4501069833,196571.3492440344,183965.3715598682,0,3350.063311704645 -129,165,269,-9,270,271,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-945.6392195117719,-9,1,3,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.724584434435193,0,57.63,56.14,-9,-9,10,1,1,0,0,1,11,4,1,1314.5,927505.4501069833,196571.3492440344,183965.3715598682,0,3350.063311704645 -129,165,270,271,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.69573054782322,7.687693699387558,0,21,-1,81.90400525601612,0,3,3,2019,10,0,27,26,1,0,0,9.747452820794013,9.747452820794013,0,0,0,0,0,1,1,0,.2103924261245447,0,55.96,49.93,59.04,51.29,1.666666666666667,1,1,0,0,10,11,4,1,1314.5,927505.4501069833,196571.3492440344,183965.3715598682,0,3350.063311704645 -129,165,271,270,-9,-9,1,1,53,0,1,0,3,3,-9,0,5,8.111815459354576,8.159713750687294,0,21,1,57.44274258662823,0,3,3,2019,11,0,44,40,1,0,0,8.65089767283904,8.65089767283904,0,0,0,0,2,1,1,0,3.301585730822926,0,59.04,51.29,55.96,49.93,8.333333333333334,1,1,0,0,11,11,4,1,1314.5,927505.4501069833,196571.3492440344,183965.3715598682,0,3350.063311704645 -130,166,272,273,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,7.901319065386602,8.093649354056177,0,16,-16,34.56888795178196,0,1,3,2019,15,5,44,50,1,5,0,9.580472434558397,9.580472434558397,0,0,0,0,0,0,0,0,7.517644873122365,0,38.01,61.37,33.06,25.26,6.666666666666667,1,1,0,1,10,4,3,1,866,2100089.665786182,1410131.482408227,298801.7809061923,0,977.3136354931638 -130,166,273,272,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,16,16,-62.86326553196866,0,2,1,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,33.06,25.26,38.01,61.37,1.666666666666667,1,1,1,1,7,4,3,1,866,2100089.665786182,1410131.482408227,298801.7809061923,0,977.3136354931638 -131,167,274,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1033.499477700685,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.4,28.89,-9,-9,5,1,1,0,0,0,9,1,1,320,139369.2187508544,0,0,0,676.2759389453739 -132,168,275,276,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.975783353658958,7.867232287806875,0,8,3,-63.78369605868052,0,-9,-9,2019,10,0,38,38,1,0,0,8.663036719676263,8.663036719676263,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,5,1,684.5,285542.807519474,62546.04053060134,96071.81470534579,51652.37228980303,3133.091700367032 -132,168,276,275,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.222934734526598,8.485853776339038,0,8,-3,-67.71259460954172,0,1,1,2019,10,0,40,40,1,0,0,11.03580754266919,11.03580754266919,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,684.5,285542.807519474,62546.04053060134,96071.81470534579,51652.37228980303,3133.091700367032 -133,169,277,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.172635441657588,8.314606428399109,0,0,0,-991.5529368986366,0,-9,2,2019,12,2,38,38,1,2,0,11.31562821190412,11.31562821190412,0,0,0,0,0,0,0,0,2.521208967876773,0,46.16,54.36,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,532,414012.1510498595,247468.8678406414,185710.6144685575,0,1435.94722186847 -134,170,278,279,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.722499807116904,4.655157521798063,50,0,68.4492763766322,0,3,3,2019,27,11,0,0,4,11,0,0,0,1,0,15.31111325949058,0,0,1,1,0,1.871943322307427,4.82738512446028,28.53,42.84,42.62,54.02,3.333333333333333,1,1,0,1,0,7,2,1,761.5,916446.6823897928,449186.7929432847,247009.717802804,0,2028.882156841569 -134,170,279,278,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.012461129829884,7.057188732612986,50,0,-101.8864421992062,0,3,3,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,4.112600854432091,6.876678329032181,42.62,54.02,28.53,42.84,8.333333333333334,1,1,0,0,9,7,2,1,761.5,916446.6823897928,449186.7929432847,247009.717802804,0,2028.882156841569 -135,171,280,281,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,53,-1,-20.53897164897333,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,35.51,57.16,56.15,5,1,1,0,0,3,10,2,1,1537.5,752217.2755606216,264278.6363657538,301182.1953786477,0,980.9082829910942 -135,171,281,280,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.923764904123717,6.818021658839275,53,1,-77.30123390744691,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.685075515804622,6.991781929867694,57.16,56.15,44.49,35.51,10,1,1,0,0,7,10,2,1,1537.5,752217.2755606216,264278.6363657538,301182.1953786477,0,980.9082829910942 -136,172,282,283,-9,-9,1,1,45,0,1,0,2,2,-9,0,1,0,0,0,10,6,-24.14461035318566,0,2,2,2019,28,11,0,39,3,11,0,0,0,0,0,0,0,0,1,1,0,6.709949944127856,0,34.16,38.97,41,56.99,1.666666666666667,2,3,1,0,12,4,2,1,509,136231.4811578105,49077.73496259867,0,0,1452.90900319635 -136,172,283,282,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,7.627544598574731,7.657707965349539,0,20,-6,9.466850183517998,0,2,1,2019,19,8,28,-9,1,8,0,9.33675074917606,9.33675074917606,0,0,0,0,0,1,1,0,0,0,41,56.99,34.16,38.97,5,2,3,0,0,5,4,2,1,509,136231.4811578105,49077.73496259867,0,0,1452.90900319635 -136,172,284,-9,283,282,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-968.5565510618507,-9,1,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,1.994708269751767,0,52.05,55.95,-9,-9,8.333333333333334,2,3,1,0,0,4,2,1,509,136231.4811578105,49077.73496259867,0,0,1452.90900319635 -136,172,285,-9,283,282,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.863608938989,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,509,136231.4811578105,49077.73496259867,0,0,1452.90900319635 -137,173,286,287,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.728934485398987,8.336454354635029,0,1,0,-31.16502795826501,-9,-9,-9,2019,7,1,40,0,1,1,0,16.27336677268383,16.27336677268383,0,0,0,0,0,0,0,0,0,0,52,54.51,42.07,50.91,8.333333333333334,1,1,0,0,5,12,5,1,170,214004.0032917472,52388.19945103768,0,0,3550.119453125462 -137,173,287,286,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.024477757486153,8.123746706982335,0,1,0,-6.120429131580609,0,2,2,2019,9,1,49,50,1,1,0,8.62042504109581,8.62042504109581,0,0,0,0,0,0,0,0,0,0,42.07,50.91,52,54.51,6.666666666666667,1,1,0,0,8,12,5,1,170,214004.0032917472,52388.19945103768,0,0,3550.119453125462 -138,174,288,-9,291,290,1,0,28,1,1,0,2,2,-9,1,2,0,0,0,0,0,-1037.563290808147,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,27.39,46.07,-9,-9,0,2,3,1,0,0,8,1,1,410,0,0,0,0,1079.558096326687 -138,174,289,-9,288,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.9995039263611,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,1,410,0,0,0,0,1079.558096326687 -138,175,290,291,-9,-9,1,1,75,1,1,0,3,3,-9,0,1,0,0,0,8,8,0,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,0,46.42885254095992,0,0,1,1,0,0,0,20.9,21.84,21.72,22.57,1.666666666666667,2,3,0,1,0,8,1,1,679,-67422.52108814302,-2922.781911624606,0,0,2032.712513673018 -138,175,291,290,-9,-9,1,0,67,1,1,0,3,3,-9,0,1,0,0,0,42,-8,0,0,3,3,2019,29,10,0,0,4,10,0,0,0,1,0,30.06075847727769,0,0,1,1,0,0,0,21.72,22.57,20.9,21.84,0,2,3,0,1,0,8,1,1,679,-67422.52108814302,-2922.781911624606,0,0,2032.712513673018 -139,176,292,293,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.195534558551268,8.175639904749035,0,7,-4,138.2664529839666,0,-9,-9,2019,8,0,36,42,1,0,0,10.53485719913463,10.53485719913463,0,0,0,0,7,1,0,1,.58408211626827,0,40.98,57.51,42.85,30.91,8.333333333333334,1,1,0,0,6,4,3,1,1065,286087.458739071,185575.8618820608,170060.6054850292,59695.75060369684,2755.014212732258 -139,176,293,292,-9,-9,1,1,51,0,1,0,2,2,-9,1,1,0,6.569369882036442,6.528692995334915,7,4,-44.32537167941629,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,6.535759372556648,6.561072523217496,42.85,30.91,40.98,57.51,8.333333333333334,1,1,0,0,0,4,3,1,1065,286087.458739071,185575.8618820608,170060.6054850292,59695.75060369684,2755.014212732258 -139,177,294,-9,292,293,1,0,20,0,1,0,1,1,1,0,4,0,0,0,0,0,-1142.454758992134,-9,2,2,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,2,1,0,1,4.007333472262096,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1285,214097.7582900325,0,0,0,-103.5753116243748 -140,178,295,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.9150986739876,8.319703489699094,0,3,3,32.21806259638726,0,3,3,2019,9,0,37,48,1,0,0,12.80327140534158,12.80327140534158,0,0,0,0,0,0,0,0,0,0,62.01,38.87,52.01,48.98,8.333333333333334,1,1,0,0,11,5,4,1,1600,151900.8340979388,25976.6723466496,0,0,1385.416228218101 -140,179,296,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.027072897754582,8.163854362521098,0,3,-3,-44.95200324857025,0,-9,-9,2019,17,5,51,39,1,5,0,8.437180775374186,8.437180775374186,0,0,0,0,0,0,0,0,6.448408296901127,0,52.01,48.98,62.01,38.87,8.333333333333334,1,1,0,0,4,5,4,1,714,-106718.6592210408,-106390.0711697765,0,0,1242.091029678099 -141,180,297,298,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.611158587749819,4.408565772585932,59,-1,-43.24310553656237,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.695253559811666,4.619491080038399,53,44,54.78,14.45,8,1,1,0,0,0,9,3,1,736.5,592655.828563928,-4078.500908000643,0,0,2949.613387399439 -141,180,298,297,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,7.867944979458504,7.753231905291468,59,1,44.76775949865304,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,13.88409637530806,14.75256345323346,0,0,1,1,0,5.188544863350048,7.900232639931495,54.78,14.45,53,44,8.333333333333334,1,1,0,0,0,9,3,1,736.5,592655.828563928,-4078.500908000643,0,0,2949.613387399439 -142,181,299,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1071.61425317826,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,.4014851194683207,0,1,1,0,0,0,32.7,35.21,-9,-9,5,1,1,0,0,0,12,1,0,332,0,0,0,0,1867.969866963334 -143,182,300,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.060430043771859,9.206760233004227,0,1,-18,65.89737600638983,-9,3,3,2019,10,0,50,0,1,0,0,23.28118451427702,23.28118451427702,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,3.333333333333333,1,1,0,0,7,8,5,1,729,703011.9674575513,697396.6269344345,0,0,2784.610662719866 -144,183,301,302,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,0,0,0,25,0,32.17993767897276,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.661348738692209,0,53.56,49.66,57.16,56.15,8.333333333333334,1,1,0,0,10,1,5,1,188,276366.4056031299,16729.64148742794,306554.1498608632,174091.972075259,15464.43917652729 -144,183,302,301,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.714749101337087,9.695439830202805,0,10,0,58.64739069882351,-9,-9,-9,2019,5,0,51,0,1,0,0,36.88834937713767,36.88834937713767,0,0,0,0,0,0,0,0,6.112701952125911,0,57.16,56.15,53.56,49.66,8.333333333333334,1,1,0,0,8,1,5,1,188,276366.4056031299,16729.64148742794,306554.1498608632,174091.972075259,15464.43917652729 -144,183,303,-9,301,302,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.009866621265,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,188,276366.4056031299,16729.64148742794,306554.1498608632,174091.972075259,15464.43917652729 -145,184,304,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1002.955396263293,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.52,47.59,-9,-9,8.333333333333334,1,1,0,0,10,10,1,0,1227,20149.91532812879,0,0,0,743.8660889022945 -146,185,305,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.68026805132463,6.923414553781983,0,0,0,-1052.008198813794,0,-9,-9,2019,12,0,16,8,1,0,0,5.958805604837859,5.958805604837859,0,0,0,.0265362528582624,0,1,1,0,0,0,43.36,54.78,-9,-9,6.666666666666667,1,1,0,1,11,1,2,0,1211.5,16845.18047341181,0,0,0,2190.488741880812 -146,185,306,-9,305,-9,1,0,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-938.5668497980139,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,2,0,1211.5,16845.18047341181,0,0,0,2190.488741880812 -146,185,307,-9,305,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1109.532985943061,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,1211.5,16845.18047341181,0,0,0,2190.488741880812 -146,185,308,-9,305,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-838.2700711237051,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,1211.5,16845.18047341181,0,0,0,2190.488741880812 -147,186,309,-9,310,311,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.305841539165,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,788.3333333333334,52611.33378947722,88277.22432457579,197501.0078769507,181694.1419787913,3646.601228105337 -147,186,310,311,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,3,-3,-41.63211956726067,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,54.61,51.04,10,1,1,0,0,0,12,5,1,788.3333333333334,52611.33378947722,88277.22432457579,197501.0078769507,181694.1419787913,3646.601228105337 -147,186,311,310,-9,-9,1,1,28,0,1,0,2,2,-9,0,2,9.305919939366037,9.572970089160991,0,3,3,-13.3579545850338,0,2,2,2019,10,1,58,78,1,1,0,21.86212763131475,21.86212763131475,0,0,0,0,0,1,1,0,0,0,54.61,51.04,49.71,55.64,8.333333333333334,1,1,0,0,9,12,5,1,788.3333333333334,52611.33378947722,88277.22432457579,197501.0078769507,181694.1419787913,3646.601228105337 -148,187,312,313,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.094362000064255,7.983962106862045,0,20,-4,-19.6514935882474,0,-9,-9,2019,8,0,37,42,1,0,0,8.810726469128687,8.810726469128687,0,0,0,0,0,1,1,0,0,0,44.09,55.83,38.05,30.52,10,1,1,0,0,6,1,3,0,537,179847.4292942554,348115.7162859623,0,0,2359.352481227834 -148,187,313,312,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,4,4,113.8546024146798,0,-9,-9,2019,20,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,30.52,44.09,55.83,5,1,1,0,0,0,1,3,0,537,179847.4292942554,348115.7162859623,0,0,2359.352481227834 -149,188,314,-9,315,316,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.9621572650875,0,1,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,44.08,-9,-9,6.666666666666667,1,1,0,0,1,2,4,0,782.3333333333334,138000.2029566914,130753.6594300314,0,0,2629.514848064469 -149,188,315,316,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.040559133815888,8.251985228113947,0,20,-5,-10.55050372569101,0,2,2,2019,11,0,40,38,1,2,0,10.17995769217514,10.17995769217514,0,0,0,0,0,0,0,0,2.702057317409986,0,48,56,33.82,42.48,7,1,1,0,0,1,2,4,0,782.3333333333334,138000.2029566914,130753.6594300314,0,0,2629.514848064469 -149,188,316,315,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.890845584482849,7.50552436046409,0,5,5,49.20992311419531,0,-9,-9,2019,18,6,40,40,1,6,0,7.644479518784187,7.644479518784187,0,0,0,0,0,0,0,0,0,0,33.82,42.48,48,56,3.333333333333333,1,1,0,0,5,2,4,0,782.3333333333334,138000.2029566914,130753.6594300314,0,0,2629.514848064469 -149,189,317,-9,315,316,1,1,20,0,0,0,2,2,-9,0,4,8.382271424475254,8.08136311339541,0,0,0,-1010.02493847533,0,1,2,2019,11,0,40,40,1,2,1,11.42143118461474,11.42143118461474,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,2,4,0,413,108362.3908385126,-630.6624519793213,0,0,1496.188142058096 -150,190,318,319,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.315545594134814,8.009762775284278,0,8,-3,69.72128213866138,0,-9,-9,2019,10,0,35,35,1,0,0,11.61463795518219,11.61463795518219,0,0,0,0,0,0,0,0,0,0,52,54.51,40.36,53.96,8.333333333333334,1,1,0,0,11,10,5,1,199,220657.4355321375,117573.9255870729,169895.6609613595,165542.8032210362,3488.689763304247 -150,190,319,318,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.788183444457504,8.890226858272092,0,8,3,-51.30171876396757,0,-9,-9,2019,14,2,37,37,1,2,0,18.73120223023581,18.73120223023581,0,0,0,0,0,0,0,0,0,0,40.36,53.96,52,54.51,6.666666666666667,1,1,0,0,12,10,5,1,199,220657.4355321375,117573.9255870729,169895.6609613595,165542.8032210362,3488.689763304247 -151,191,320,321,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.857847136012871,6.612651428524535,7,5,-5.206782362498867,0,2,3,2019,8,0,0,32,4,0,0,0,0,0,0,0,1.318419002638018,7,1,1,0,0,6.390805576068185,59.86,48.06,46.8,57.03,8.333333333333334,1,1,0,0,7,13,3,1,830.5,1125907.926175969,650122.2105148942,372853.1994078505,0,2831.712786558737 -151,191,321,320,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,8.18207888104171,8.095281248519218,7,-5,31.42421740362386,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.280154727062925,46.8,57.03,59.86,48.06,8.333333333333334,1,1,0,0,4,13,3,1,830.5,1125907.926175969,650122.2105148942,372853.1994078505,0,2831.712786558737 -152,192,322,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.54524415539812,8.602470408711843,0,0,0,-1024.031970830936,0,2,2,2019,16,4,53,45,1,4,0,8.67776284610223,8.67776284610223,0,0,0,0,0,1,1,0,0,0,48.88,47.84,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,792,-94925.97207098095,0,0,0,2307.006863304689 -153,193,323,-9,324,325,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.912920743467,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,407.5,18820.63685720564,-10670.30518182561,0,0,2251.443608829421 -153,193,324,325,-9,-9,1,0,39,2,2,0,2,2,-9,0,4,6.678417541944872,6.807735834431532,0,13,-1,-232.0594778229527,0,2,2,2019,19,7,12,12,1,7,0,7.057882748200566,7.057882748200566,0,0,0,.0789531070912428,0,1,1,0,0,0,17.04,70.52,28.61,63.63,5,1,1,0,0,11,5,3,1,407.5,18820.63685720564,-10670.30518182561,0,0,2251.443608829421 -153,193,325,324,-9,-9,1,1,40,2,2,0,2,2,-9,0,3,8.317821337064498,8.3194396251382,0,13,1,-55.83296110040602,0,2,2,2019,17,5,42,37,1,5,0,11.22388830757255,11.22388830757255,0,0,0,0,0,1,1,0,0,0,28.61,63.63,17.04,70.52,1.666666666666667,1,1,0,0,11,5,3,1,407.5,18820.63685720564,-10670.30518182561,0,0,2251.443608829421 -153,193,326,-9,324,325,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-906.5281215400383,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,407.5,18820.63685720564,-10670.30518182561,0,0,2251.443608829421 -154,194,327,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-946.5943637070568,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,42.66,-9,-9,10,1,1,0,0,0,9,1,0,201,165067.3710328789,0,0,0,586.7297815126509 -155,195,328,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.079563757986931,4.107688682807172,0,0,-1084.777881504752,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,2.799471553347242,0,0,1,1,0,3.431142295119128,4.242023878448309,40.43,39.18,-9,-9,1.666666666666667,1,1,0,0,4,9,2,1,1017,282251.0178370086,231447.4205182902,281376.0516143105,-12545.4232266763,369.2875690022917 -156,196,329,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,4.818076516729613,4.837319331673164,0,0,-1060.819724411173,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.025342410190761,0,0,1,1,0,5.259673797573202,4.84376877278746,53,45.74,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,387,-89120.84992855509,92909.07618447943,0,0,308.3171650035431 -157,197,330,331,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.860286806373642,7.768528965139003,7,10,27.63174396820925,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.791456859512398,7.708444852677374,57.16,56.15,54.74,57.22,10,1,1,0,0,1,11,5,1,1498,1319276.643026077,952739.6579047726,68460.35030769484,0,4102.929165097576 -157,197,331,330,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.694502074310307,8.361706023548352,0,7,-10,-23.98273078553867,0,2,2,2019,7,0,37,37,1,0,0,15.77938040886468,15.77938040886468,0,0,0,0,0,0,0,0,6.267979396264348,0,54.74,57.22,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,1498,1319276.643026077,952739.6579047726,68460.35030769484,0,4102.929165097576 -158,198,332,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.027403488482727,6.546993692352149,0,0,-1076.293244662818,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,7.034862188140878,14.09436747096471,58.35596742976701,0,1,1,0,1.534754585665151,7.03874584814242,46.64,27.09,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,702,79023.49529890338,51156.12010028289,156077.3677065495,0,1602.305803072203 -159,199,333,334,-9,-9,1,1,53,1,1,0,3,3,-9,0,3,7.507169453429488,7.890639185250739,0,6,4,-17.36468799994048,0,3,-9,2019,12,0,35,35,1,0,0,6.587639050254971,6.587639050254971,0,0,0,0,0,1,1,0,0,0,53.71,44.13,26.14,24.95,8.333333333333334,1,1,0,0,7,2,2,0,457.5,-129395.1962405336,12287.02148364617,0,0,1247.113424855218 -159,199,334,333,-9,-9,1,0,49,1,1,0,3,3,-9,1,1,0,0,0,6,-4,45.41421696920212,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.14,24.95,53.71,44.13,8.333333333333334,1,1,0,0,0,2,2,0,457.5,-129395.1962405336,12287.02148364617,0,0,1247.113424855218 -159,200,335,-9,334,333,1,0,26,1,1,0,2,2,-9,0,2,7.169943629488852,6.99868815424748,0,0,0,-1055.98788152097,0,3,3,2019,10,2,20,35,1,2,1,8.759569851623795,8.759569851623795,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,10,1,1,0,0,7,2,3,0,642,-56422.04336236609,0,69616.9305267602,79946.93059742928,914.0139318534489 -159,200,336,-9,335,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.29246299106,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,642,-56422.04336236609,0,69616.9305267602,79946.93059742928,914.0139318534489 -159,201,337,338,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,7.215325826961203,7.087243480149075,0,1,1,53.61653652755114,-9,-9,-9,2019,9,1,42,0,1,1,0,4.575100957924142,4.575100957924142,0,0,0,0,0,1,1,0,0,0,46.5,58.26,36.18,37.77,5,1,1,0,0,1,2,2,0,630,126738.8119364031,80059.54292128925,0,0,1239.721811068863 -159,201,338,337,334,333,1,0,21,1,1,0,2,2,-9,0,2,0,0,0,1,-1,-164.0050683314645,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,37.77,46.5,58.26,8.333333333333334,1,1,1,0,0,2,2,0,630,126738.8119364031,80059.54292128925,0,0,1239.721811068863 -160,202,339,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.601211657479061,8.28766292380431,4.309474449752669,0,0,-1054.503290502521,0,2,2,2019,4,0,40,43,1,0,0,14.86914783633243,14.86914783633243,0,0,0,0,0,0,0,0,4.641839206190702,0,57.06,57.76,-9,-9,10,1,1,0,0,8,5,5,1,252,450305.5931911247,13864.91836369852,394701.8093485656,0,1898.013483402817 -160,203,340,-9,339,-9,1,1,24,0,0,0,1,1,-9,0,5,8.068426322493993,8.064141425806994,0,0,0,-1057.943591760466,0,1,2,2019,7,0,38,36,1,0,1,10.13781472072512,10.13781472072512,0,0,0,0,0,0,0,0,.5192984400023951,0,57.06,57.76,-9,-9,10,1,1,0,0,6,5,4,1,1508,74740.55268626705,-52144.081095169,0,0,1030.265099126919 -161,204,341,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.473198822377296,7.60111451003115,0,0,0,-956.9205830795478,0,-9,-9,2019,8,0,24,35,1,0,0,6.080185481717935,6.080185481717935,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,586,415942.2831612278,158980.8946566785,340566.2516147688,16060.69003994078,739.0166518938785 -162,205,342,343,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.814085922399628,7.822838706744189,48,-1,-132.5220481736154,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,.5200825351618263,0,1,1,0,4.265138146608843,8.047408890407876,44.03,48.4,49.35,59.64,8.333333333333334,1,1,0,0,0,2,3,1,303.5,862854.3649255652,668417.4723301537,166112.7773370311,0,3192.793374580715 -162,205,343,342,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,48,1,90.51177499818604,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.154803387873518,0,49.35,59.64,44.03,48.4,8.333333333333334,1,1,0,0,0,2,3,1,303.5,862854.3649255652,668417.4723301537,166112.7773370311,0,3192.793374580715 -163,206,344,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,3.58969320292121,3.66514335353482,0,0,-1101.399925939962,0,-9,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.357665110151451,0,45.81,49.73,-9,-9,5,1,1,1,0,0,1,2,0,4780,-11977.28986007325,81377.01210532388,0,0,1291.173355209241 -163,206,345,-9,344,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-995.4515817367363,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,2,0,4780,-11977.28986007325,81377.01210532388,0,0,1291.173355209241 -164,207,346,347,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.908692798212792,8.831407280948746,0,15,-6,-67.79108673882537,0,2,2,2019,4,0,37,38,1,0,0,24.55186270406144,24.55186270406144,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.01,29.19,8.333333333333334,3,4,0,0,7,7,5,1,950,2417220.182380877,1098905.345465105,1211954.113668783,76178.5947426097,5430.899416971579 -164,207,347,346,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.181779026377876,9.16955037953703,0,17,6,2.998335534003258,0,-9,-9,2019,12,2,55,55,1,2,0,22.63667523969063,22.63667523969063,0,0,0,0,0,0,0,0,0,0,57.01,29.19,51.83,57.2,8.333333333333334,1,1,0,0,12,7,5,1,950,2417220.182380877,1098905.345465105,1211954.113668783,76178.5947426097,5430.899416971579 -164,207,348,-9,346,347,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.1013270749638,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.72141240192367,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,5,1,950,2417220.182380877,1098905.345465105,1211954.113668783,76178.5947426097,5430.899416971579 -164,207,349,-9,346,347,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.4598662665525,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,950,2417220.182380877,1098905.345465105,1211954.113668783,76178.5947426097,5430.899416971579 -165,208,350,351,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.497423978904635,8.520263533107018,0,11,-1,173.5402086642162,0,2,2,2019,6,0,30,24,1,0,0,14.48583105320937,14.48583105320937,0,0,0,0,2,0,0,0,8.430948865839099,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,297,1113791.122118047,526417.9770536483,623938.1578597822,249180.6670531619,9274.346057232284 -165,208,351,350,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.854614288028978,9.73120678167118,0,11,1,.3340921546148845,0,2,2,2019,7,0,55,50,1,0,0,37.02761874872457,37.02761874872457,0,0,0,0,0,0,0,0,6.770392625819141,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,297,1113791.122118047,526417.9770536483,623938.1578597822,249180.6670531619,9274.346057232284 -166,209,352,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.487925052813287,8.767716053463241,0,0,0,-929.9231990648268,0,3,3,2019,7,0,35,35,1,0,0,16.61944281568465,16.61944281568465,0,0,0,0,0,0,0,0,0,0,51.57,47.76,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,343,798964.9687319702,742727.0476076925,147270.6406898402,0,1980.647320812251 -167,210,353,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.116742794231,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,43.99,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,161,328150.1170157929,0,68693.88178141076,0,828.4840642187437 -168,211,354,355,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.037089858357453,7.987072850026746,5.274909179117869,10,1,178.8673848463627,0,3,3,2019,8,1,41,38,1,1,0,7.529250113762076,7.529250113762076,0,0,0,0,7,1,1,0,0,5.016272706008364,57.49,34.36,61.45,29.78,8.333333333333334,1,1,0,0,11,9,3,1,350,735955.8390527588,595165.1427308056,382309.9371609333,0,1953.626446207958 -168,211,355,354,-9,-9,1,1,62,0,0,0,2,2,-9,1,3,5.004260344966603,4.983035466287559,0,10,-1,50.78534068293104,0,3,3,2019,6,0,30,30,1,0,0,.5966954333719037,.5966954333719037,0,0,0,0,0,1,1,0,0,0,61.45,29.78,57.49,34.36,8.333333333333334,1,1,0,0,7,9,3,1,350,735955.8390527588,595165.1427308056,382309.9371609333,0,1953.626446207958 -169,212,356,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.53644297915401,6.667340810177367,0,0,-930.1830951149351,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.725930431133547,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,0,800,431557.6063231475,182424.7489575088,198787.0333252501,0,1134.632876331677 -170,213,357,358,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.62653447678223,7.774767533123392,27,-5,-1.993345230963886,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.1278561247284,7.469858743296231,46.33,55.93,46.17,46.33,8.333333333333334,1,1,0,0,11,5,4,0,446,1206345.218830663,1116230.52788642,220962.3775042343,0,2604.297361887294 -170,213,358,357,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.388873075751313,7.918483240195819,27,5,-31.50112216077195,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.440750950124206,7.666883752091787,46.17,46.33,46.33,55.93,8.333333333333334,1,1,0,0,11,5,4,0,446,1206345.218830663,1116230.52788642,220962.3775042343,0,2604.297361887294 -171,214,359,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.283139603188747,6.862496080363597,0,0,-867.9835529033815,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.44546144886447,6.540665263597871,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,3692,169325.8062041297,117785.5420838078,0,0,820.9404632386551 -172,215,360,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.371870577561368,7.429962198263961,0,0,-1078.368831901827,0,3,3,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,27,1,1,0,3.253572430468734,7.634477223925662,27.29,29.73,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,154,204082.1080021534,245407.8739521319,0,0,1832.181513469786 -173,216,361,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.688137551922469,7.664942621684424,0,0,-928.8313634597844,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.203555056306783,8.18719856074835,54,45,-9,-9,8,1,1,0,0,11,2,3,1,177,208770.9729514474,202055.9438524129,0,0,1627.215828725334 -174,217,362,363,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.479424927696011,7.473952784686552,10,5,-42.64189457554585,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,2.003424141513073,7.66180882746305,30.42,52.56,40.31,51.86,5,1,1,0,0,0,7,3,1,672,650351.5594420716,262571.1929587511,189774.9224204096,0,2455.172732357994 -174,217,363,362,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.997348352738548,5.026785151875741,10,-5,68.04497882721816,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.867804501300284,5.056528591832355,40.31,51.86,30.42,52.56,5,1,1,0,0,4,7,3,1,672,650351.5594420716,262571.1929587511,189774.9224204096,0,2455.172732357994 -175,218,364,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.214889231991179,8.43596479811381,0,0,0,-831.894140789012,0,2,2,2019,7,0,42,70,1,0,0,11.69616098516724,11.69616098516724,0,0,0,0,0,0,0,0,.0499704251132044,0,54.72,46.41,-9,-9,5,1,1,0,0,6,1,5,1,210,446889.6905981214,155228.7950250611,256579.3234835496,0,2111.564009787003 -176,219,365,366,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.732131849747163,7.563240977864673,9,-7,83.56100934988,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.515056678622932,57.16,56.15,49.07,22.42,8.333333333333334,1,1,0,0,0,2,3,1,641.5,870625.2927350387,326908.1630086701,416897.5663897136,0,2498.639515365946 -176,219,366,365,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.541715385211071,6.20845421149343,9,7,-120.6253445429778,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,.1994406625970835,0,0,1,1,0,5.558046715165949,6.185284020799588,49.07,22.42,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,641.5,870625.2927350387,326908.1630086701,416897.5663897136,0,2498.639515365946 -177,220,367,368,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.671567415095668,6.038543872647725,53,3,-202.6490726301655,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,38.81122177062196,0,0,1,1,0,0,5.712284632595741,42.62,15.89,60.84,23.72,5,1,1,0,0,0,5,2,1,316,142671.7807965577,67560.51136924229,0,0,1425.206348473687 -177,220,368,367,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-3,84.53142146274647,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,0,0,60.84,23.72,42.62,15.89,8.333333333333334,1,1,0,0,0,5,2,1,316,142671.7807965577,67560.51136924229,0,0,1425.206348473687 -178,221,369,371,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,8.845237656606985,8.911751959558142,0,9,-1,32.7078728841533,0,2,3,2019,12,2,40,41,1,2,0,25.83689966270389,25.83689966270389,0,0,0,0,0,1,1,0,0,0,44.85,44.59,52.43,55.57,8.333333333333334,1,1,0,0,8,5,5,1,620,2882659.519004541,271711.9948081941,325783.7242383574,194878.0281340485,3759.222585719428 -178,221,370,-9,371,369,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.2376182371879,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,620,2882659.519004541,271711.9948081941,325783.7242383574,194878.0281340485,3759.222585719428 -178,221,371,369,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.309931897027001,8.356577749487853,0,9,1,-53.90552886894142,0,3,3,2019,10,2,39,32,1,2,0,10.62032112444344,10.62032112444344,0,0,0,0,0,1,1,0,3.085001390523298,0,52.43,55.57,44.85,44.59,8.333333333333334,1,1,0,0,11,5,5,1,620,2882659.519004541,271711.9948081941,325783.7242383574,194878.0281340485,3759.222585719428 -178,221,372,-9,371,369,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.0934950368443,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,620,2882659.519004541,271711.9948081941,325783.7242383574,194878.0281340485,3759.222585719428 -179,222,373,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.256226534707579,7.113150764265637,5.728361042208404,0,0,-1024.66781130753,0,1,1,2019,6,0,12,25,1,0,0,16.09223278899627,16.09223278899627,0,0,0,0,0,1,1,0,5.826926914283815,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,10,2,0,594.6666666666666,138343.1651982892,41517.57115865473,211649.5449591944,77477.93180707002,2117.798488284453 -179,222,374,-9,373,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.150875945117,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,594.6666666666666,138343.1651982892,41517.57115865473,211649.5449591944,77477.93180707002,2117.798488284453 -179,222,375,-9,373,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.886424975874,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,594.6666666666666,138343.1651982892,41517.57115865473,211649.5449591944,77477.93180707002,2117.798488284453 -180,223,376,377,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.807975133012429,8.518332770106708,0,2,-1,89.88356145035129,0,-9,-9,2019,15,3,45,47,1,3,0,12.78045561673908,12.78045561673908,0,0,0,0,0,0,0,0,2.663675881916409,0,51.24,58.84,59.29,49.68,8.333333333333334,1,1,0,0,3,4,5,1,419.5,-57420.42071659559,4802.151152375191,0,0,3483.196985946073 -180,223,377,376,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.162020855172621,8.288095602534563,0,2,1,133.8484499460398,0,-9,-9,2019,13,3,46,46,1,3,0,10.30367024437647,10.30367024437647,0,0,0,0,0,0,0,0,0,0,59.29,49.68,51.24,58.84,8.333333333333334,1,1,0,0,4,4,5,1,419.5,-57420.42071659559,4802.151152375191,0,0,3483.196985946073 -181,224,378,379,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.928527740870909,8.849633733454057,0,1,-1,-87.62814101956572,-9,-9,-9,2019,13,1,42,0,1,1,0,20.7322167043168,20.7322167043168,0,0,0,0,0,1,1,0,3.793054244291017,0,55,57,51.67,60.18,10,1,1,0,0,9,12,5,1,922.5,430277.3301161188,169905.6934322613,171657.8188481864,125172.0121981307,3882.098149309411 -181,224,379,378,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,8.049854802861661,8.293976870718089,5.755586887012344,16,1,21.92979680068449,-9,3,2,2019,11,0,22,0,1,0,0,16.73976121296745,16.73976121296745,0,0,0,0,0,1,1,0,6.477889930611375,0,51.67,60.18,55,57,8.333333333333334,1,1,0,0,9,12,5,1,922.5,430277.3301161188,169905.6934322613,171657.8188481864,125172.0121981307,3882.098149309411 -181,224,380,-9,379,378,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.513701284867,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,922.5,430277.3301161188,169905.6934322613,171657.8188481864,125172.0121981307,3882.098149309411 -181,224,381,-9,379,378,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.7796614879906,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,922.5,430277.3301161188,169905.6934322613,171657.8188481864,125172.0121981307,3882.098149309411 -182,225,382,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.972752795942784,8.599761768875315,0,0,0,-972.5670878564698,0,-9,-9,2019,7,0,38,37,1,0,0,18.27970371552792,18.27970371552792,0,0,0,0,0,0,0,0,6.406155991973288,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,9,5,0,1171,111570.9379011754,12151.38274261888,0,0,2097.793798874697 -183,226,383,384,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.903361451206433,7.979277177876834,5.614373760153497,37,1,19.22560593857286,0,-9,-9,2019,6,0,42,40,1,0,0,7.929673739646512,7.929673739646512,0,0,0,0,71.5,1,1,0,0,5.950931583747103,62.39,56.71,37.18,21.13,10,1,1,0,0,10,2,4,0,430.5,1723292.883753996,605427.3776388541,374173.1611960161,0,2609.913450312849 -183,226,384,383,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,0,6.924662074410505,6.764692430647846,37,-1,-27.550812691186,0,3,2,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.852053958153309,37.18,21.13,62.39,56.71,1.666666666666667,1,1,0,0,6,2,4,0,430.5,1723292.883753996,605427.3776388541,374173.1611960161,0,2609.913450312849 -184,227,385,387,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.701826417838401,8.789568607126048,0,5,4,40.69715952577309,0,2,2,2019,12,0,40,45,1,0,0,15.54066328555722,15.54066328555722,0,0,0,0,0,1,1,0,3.849873160060397,0,52.08,55.93,47.46,52.7,6.666666666666667,1,1,0,0,10,11,4,1,923.3333333333334,450539.7137219004,72358.65020957902,308892.0074186877,89977.68425076526,4515.624781734758 -184,227,386,-9,-9,385,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.4176993833505,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,923.3333333333334,450539.7137219004,72358.65020957902,308892.0074186877,89977.68425076526,4515.624781734758 -184,227,387,385,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.954369291293134,8.21338411801182,0,5,-4,-9.325247778449551,0,-9,-9,2019,8,0,44,35,1,0,0,8.277595140552361,8.277595140552361,0,0,0,0,0,1,1,0,0,0,47.46,52.7,52.08,55.93,8.333333333333334,1,1,0,0,5,11,4,1,923.3333333333334,450539.7137219004,72358.65020957902,308892.0074186877,89977.68425076526,4515.624781734758 -184,228,388,-9,-9,385,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1102.70460587344,0,2,1,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,11,1,1,625,-115020.3394054301,0,0,0,-387.2439186404459 -185,229,389,390,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.500994304565898,8.310448816536875,0,9,-2,-168.7282931159757,0,2,2,2019,15,4,44,37,1,4,0,7.815373326626305,7.815373326626305,0,0,0,0,0,0,0,0,0,0,43.48,60.97,60.42,54.81,5,1,1,0,0,10,11,4,0,1306,618762.8288826491,349937.357701548,83608.69330701616,0,2321.992477039703 -185,229,390,389,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.507138005886345,7.261397823843165,0,9,2,-67.6677844751016,0,2,2,2019,3,0,23,22,1,0,0,6.108810691076447,6.108810691076447,0,0,0,0,0,0,0,0,0,0,60.42,54.81,43.48,60.97,8.333333333333334,1,1,0,0,10,11,4,0,1306,618762.8288826491,349937.357701548,83608.69330701616,0,2321.992477039703 -185,230,391,-9,389,390,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-862.0097454023145,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,34.66,63.64,-9,-9,3.333333333333333,1,1,0,0,10,11,1,0,342,10762.61059251758,0,0,0,750.4357752059569 -186,231,392,393,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.81135982372426,8.554217294576777,0,6,1,-16.88624161042404,0,-9,-9,2019,8,1,53,52,1,1,0,10.97634737115397,10.97634737115397,0,0,0,0,0,0,0,0,0,0,58.3,52.91,46.4,42.22,8.333333333333334,1,1,0,0,10,13,5,1,555,-108155.590041477,0,0,0,3044.546988587687 -186,231,393,392,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.006735360575748,8.143721750682268,0,6,-1,-143.5745564159637,0,2,2,2019,12,2,38,37,1,2,0,8.890296275795842,8.890296275795842,0,0,0,0,0,0,0,0,0,0,46.4,42.22,58.3,52.91,10,1,1,0,0,8,13,5,1,555,-108155.590041477,0,0,0,3044.546988587687 -187,232,394,395,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.203999636057871,8.233844138377572,0,6,-4,50.19649333990182,0,2,3,2019,11,0,39,53,1,0,0,9.257517650247095,9.257517650247095,0,0,0,0,0,1,1,0,0,0,44.83,41.9,28.35,41.48,5,1,1,0,0,7,11,3,1,978,96003.23006068103,-18184.58673117051,43480.09951452567,55634.21351468413,1606.769489540158 -187,232,395,394,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,6,4,-26.06135912509031,0,2,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.35,41.48,44.83,41.9,1.666666666666667,1,1,0,0,3,11,3,1,978,96003.23006068103,-18184.58673117051,43480.09951452567,55634.21351468413,1606.769489540158 -187,233,396,-9,395,394,1,1,20,0,0,0,2,2,-9,0,3,8.720121236666589,8.635096012860361,0,0,0,-1015.088093258569,0,3,2,2019,9,1,55,60,1,1,1,16.40860888947129,16.40860888947129,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,0,1,1,0,0,3,11,5,1,176,-57382.93460479144,0,0,0,2381.564932106222 -187,234,397,-9,395,394,1,1,18,0,0,0,2,2,-9,0,4,6.101593577810697,5.937311720739062,0,0,0,-992.7637121855371,0,3,2,2019,7,0,41,0,1,0,1,1.129362594363104,1.129362594363104,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,1,1,11,2,1,949,48771.63491313237,-46789.76104099581,0,0,568.5938652581906 -188,235,398,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.029708053991182,6.334582800472624,0,0,-866.3005125206822,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.024892146329394,55.35,46.17,-9,-9,10,4,2,0,0,0,8,2,1,161,293242.884845257,-22752.48795283446,342775.127242439,0,1283.80580512104 -189,236,399,-9,400,401,1,1,17,0,1,1,2,0,0,0,4,0,6.263934879177089,5.932447001380127,0,0,-1094.678986209113,-9,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.978958880066108,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,609.75,1135051.079485008,664259.3840731337,799569.5200205292,272550.5110180977,4141.743327738671 -189,236,400,401,-9,-9,1,0,53,0,1,0,2,2,-9,0,5,0,0,0,31,-1,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,.4375573055478075,27,1,1,0,1.193744514751201,0,57.06,57.76,51.34,34.4,1.666666666666667,1,1,0,0,8,9,1,1,609.75,1135051.079485008,664259.3840731337,799569.5200205292,272550.5110180977,4141.743327738671 -189,236,401,400,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,0,0,0,31,1,0,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,8.956576876392923,0,51.34,34.4,57.06,57.76,8.333333333333334,1,1,0,0,8,9,1,1,609.75,1135051.079485008,664259.3840731337,799569.5200205292,272550.5110180977,4141.743327738671 -189,236,402,-9,400,401,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.9753604768761,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,1,1,609.75,1135051.079485008,664259.3840731337,799569.5200205292,272550.5110180977,4141.743327738671 -189,237,403,-9,400,401,1,1,22,0,1,0,1,1,1,0,5,8.44786276428418,8.243069716632057,0,0,0,-937.1089070219614,-9,2,1,2019,6,0,40,0,1,0,1,14.99011396595423,14.99011396595423,0,0,0,0,0,1,1,0,.909536683273952,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,682,-283397.256022983,85545.40974938471,0,0,1745.117575682055 -189,238,404,-9,400,401,1,1,20,0,1,0,2,2,0,0,3,0,7.200056337127472,7.410774925776451,0,0,-1092.696887022891,-9,1,1,2019,27,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,7.700223023494332,0,10.44,66.73,-9,-9,5,1,1,0,0,1,9,3,1,207,234139.065067017,0,0,0,1031.008551148072 -190,239,405,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.4404463454557,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.24,50.75,-9,-9,5,1,1,0,1,0,1,1,0,942,79818.32484573226,-4502.26931854221,0,0,898.0415913593848 -191,240,406,-9,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,7.738567369936827,7.944233995119328,0,0,0,-997.2100594572605,0,-9,-9,2019,12,1,40,40,1,1,0,8.074518573615494,8.074518573615494,0,0,0,0,2,0,0,0,0,0,18.87,64.38,-9,-9,5,1,1,0,0,3,11,3,1,648,143224.6868330477,82248.55429366019,0,0,885.2638160945172 -192,241,407,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.866845193188686,7.487754461665105,0,0,-985.3687940936921,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,27.03960494053854,0,0,1,1,0,2.309766156776835,7.122638042241261,52,48,-9,-9,7,1,1,0,0,0,13,3,1,288,393071.0385318178,374023.029550159,92675.27012750093,0,1659.101834042126 -193,242,408,410,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.849842674414834,8.272777452701012,0,19,-3,3.19638897483489,0,-9,-9,2019,7,0,44,44,1,0,0,11.77102529625246,11.77102529625246,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.19,58.01,8.333333333333334,1,1,0,0,9,9,3,1,380.25,248974.504899369,152221.801522101,277857.7775158077,34985.76650593583,2709.189436020071 -193,242,409,-9,410,408,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.7610880747706,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,380.25,248974.504899369,152221.801522101,277857.7775158077,34985.76650593583,2709.189436020071 -193,242,410,408,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,7.017839021902528,7.066307744283739,0,19,3,-6.486088800806586,0,-9,-9,2019,12,1,16,16,1,1,0,6.63115301925398,6.63115301925398,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.06,57.76,8.333333333333334,1,1,0,0,9,9,3,1,380.25,248974.504899369,152221.801522101,277857.7775158077,34985.76650593583,2709.189436020071 -193,242,411,-9,410,408,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.83423427688,-9,3,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,380.25,248974.504899369,152221.801522101,277857.7775158077,34985.76650593583,2709.189436020071 -194,243,412,413,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,34,7,105.9954247520745,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.8,36.74,53,55,8.333333333333334,2,3,0,0,0,7,3,1,595.5,272015.503378225,239920.7818691516,0,0,812.5003409695138 -194,243,413,412,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.092549247539305,7.863033556509589,0,9,-7,-62.53022550466851,0,-9,-9,2019,9,0,36,40,1,1,0,8.166594585783358,8.166594585783358,0,0,0,0,0,0,0,0,0,0,53,55,66.8,36.74,8,2,3,0,0,1,7,3,1,595.5,272015.503378225,239920.7818691516,0,0,812.5003409695138 -194,244,414,-9,412,413,1,1,27,0,0,0,2,2,-9,0,3,6.575069760170812,6.567861719709317,0,0,0,-1046.606315542588,0,3,3,2019,11,0,40,0,1,0,1,2.20499208595982,2.20499208595982,0,0,0,0,0,0,0,0,0,0,36.59,56.63,-9,-9,6,2,3,0,0,8,7,2,1,489,-137917.4736878161,18161.75362602756,0,0,917.6780289965595 -194,245,415,-9,412,413,1,1,29,0,0,0,2,2,-9,0,4,7.657911725373486,7.583092938060058,0,0,0,-1077.053895929928,0,3,3,2019,9,0,8,40,1,0,1,37.45316499173863,37.45316499173863,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,6,7,3,1,385,-7347.786966444931,27139.81816349164,0,0,830.1210208101141 -194,246,416,-9,412,413,1,1,30,0,0,0,2,2,-9,0,4,7.606610731148873,7.752921783242989,0,0,0,-965.886196247959,0,3,3,2019,8,0,40,40,1,0,1,6.411112014392343,6.411112014392343,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,6,7,3,1,1153,0,0,0,0,835.2597464790611 -194,247,417,-9,412,413,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1001.00800101393,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.50044331366045,0,60.02,56.42,-9,-9,10,2,3,0,0,0,7,2,1,750,0,0,0,0,134.6727105270774 -194,248,418,-9,412,413,1,1,22,0,0,0,1,1,1,0,5,8.619196389136253,8.308075125277142,0,0,0,-891.6615481391559,-9,3,3,2019,6,0,40,0,1,0,1,12.91416297370748,12.91416297370748,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,7,5,1,188,-133610.4928576507,-53561.69761011216,0,0,1979.766000514499 -195,249,419,420,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.567363655529141,7.576765732320904,0,7,-1,88.62765557113009,0,2,2,2019,7,0,16,16,1,0,0,16.30689862863259,16.30689862863259,0,0,0,0,0,1,1,0,8.624084814976863,0,58.3,52.91,64.15000000000001,32.53,8.333333333333334,1,1,0,0,8,4,3,1,1508.5,574878.9609339279,401097.6465761471,154756.9312350948,0,5597.429245789199 -195,249,420,419,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,7,1,-173.0321852765111,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9303359640604,0,64.15000000000001,32.53,58.3,52.91,8.333333333333334,1,1,0,0,0,4,3,1,1508.5,574878.9609339279,401097.6465761471,154756.9312350948,0,5597.429245789199 -196,250,421,422,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,5.415134178316778,5.379560308788069,3,-10,24.29968906951956,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.97004131478329,5.177584578435109,30.77,22.6,34.03,26.65,1.666666666666667,1,1,0,0,0,10,2,0,570.5,295898.9374617339,28483.5045040189,211479.5932775494,0,2390.840534655432 -196,250,422,421,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,36,10,-75.5364869532696,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,34.03,26.65,30.77,22.6,5,1,1,0,0,0,10,2,0,570.5,295898.9374617339,28483.5045040189,211479.5932775494,0,2390.840534655432 -197,251,423,426,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,9.454630606398773,9.669682683942094,0,1,5,-93.54619461961735,-9,1,1,2019,7,0,40,0,1,0,0,34.08365997269526,34.08365997269526,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,9,12,5,1,653.5,699218.8353581019,234160.123654466,312674.7636425322,22072.42590461771,6151.354722462034 -197,251,424,-9,426,423,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.7839931605007,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,653.5,699218.8353581019,234160.123654466,312674.7636425322,22072.42590461771,6151.354722462034 -197,251,425,-9,426,423,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.512461021396,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,653.5,699218.8353581019,234160.123654466,312674.7636425322,22072.42590461771,6151.354722462034 -197,251,426,423,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,8.821792268885355,8.626287505359052,0,1,-5,-21.33748388553407,-9,-9,-9,2019,11,0,45,0,1,0,0,12.95314383398088,12.95314383398088,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,10,1,1,0,0,9,12,5,1,653.5,699218.8353581019,234160.123654466,312674.7636425322,22072.42590461771,6151.354722462034 -198,252,427,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.281223714191185,7.298379363757215,0,0,-859.2165541626249,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,13.66319305490195,0,0,1,1,0,0,7.5420727079135,51.38,28.8,-9,-9,10,1,1,0,0,0,11,3,1,589,153961.9431481257,-21708.38404400524,0,0,1256.376452185542 -199,253,428,-9,430,429,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.0865354260293,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,521.4,-39706.3388169258,0,0,0,2557.30796180845 -199,253,429,430,-9,-9,1,1,46,0,3,0,3,3,-9,1,4,0,0,0,21,8,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,0,8,1,0,521.4,-39706.3388169258,0,0,0,2557.30796180845 -199,253,430,429,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,0,0,0,8,-8,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,521.4,-39706.3388169258,0,0,0,2557.30796180845 -199,253,431,-9,430,429,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.7431595871893,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,521.4,-39706.3388169258,0,0,0,2557.30796180845 -199,253,432,-9,430,429,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.8236786493579,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,521.4,-39706.3388169258,0,0,0,2557.30796180845 -199,254,433,-9,430,429,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-929.2318054747549,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,1601,99523.60745506012,0,0,0,0 -200,255,434,435,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,0,0,0,6,-18,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,58.15,52.91,24.93,19.95,6.666666666666667,1,1,0,1,0,13,1,0,405.5,0,0,0,0,1193.057032736351 -200,255,435,434,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,6,18,0,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,3.411646548540202,25.10999496391104,0,0,1,1,0,0,0,24.93,19.95,58.15,52.91,5,1,1,0,1,0,13,1,0,405.5,0,0,0,0,1193.057032736351 -201,256,436,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,6.142375287291694,5.92002755934672,0,0,0,-1066.327937947005,0,3,3,2019,12,0,30,0,1,0,0,1.651153501273804,1.651153501273804,0,0,0,0,0,0,0,0,0,0,41.43,64.75,-9,-9,0,2,3,0,0,1,6,2,1,1127,93793.72737847475,120687.0521602459,20174.98990226633,41244.76494975765,423.0098767119559 -202,257,437,438,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.213016375945518,6.241604591070651,6,-3,-45.95398227315237,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.385837184258033,6.19809583444671,52.48,34.94,47.12,45.03,8.333333333333334,1,1,0,0,0,7,3,1,376,1251973.904803901,772696.2021869714,419122.2418107776,0,3387.428365503478 -202,257,438,437,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.214943949004956,8.011647412765972,6,3,-26.92093228885479,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.508944023744896,8.085647364577847,47.12,45.03,52.48,34.94,8.333333333333334,1,1,0,0,0,7,3,1,376,1251973.904803901,772696.2021869714,419122.2418107776,0,3387.428365503478 -203,258,439,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,4,0,6.182968318241113,6.396277724566725,0,0,-1049.443604345364,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.22197647215169,0,0,1,1,0,7.726558945945864,6.372735033297118,61.8,45.76,-9,-9,10,1,1,0,0,0,12,2,1,371,448226.1934537946,66596.78460855462,257793.5772543932,0,2165.297722539749 -204,259,440,441,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.453977025315591,8.268965486213348,0,7,0,-55.701200237732,0,1,1,2019,6,0,40,40,1,0,0,12.6058640658109,12.6058640658109,0,0,0,0,0,0,0,0,0,0,60.12,54.8,45.69,45.37,8.333333333333334,1,1,0,0,7,8,4,0,690.5,129519.3333350854,-5680.391517631007,0,0,1594.254790201175 -204,259,441,440,-9,-9,1,0,28,0,0,0,2,2,1,0,3,0,0,0,7,0,-62.98681537304487,-9,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,45.69,45.37,60.12,54.8,8.333333333333334,1,1,1,1,1,8,4,0,690.5,129519.3333350854,-5680.391517631007,0,0,1594.254790201175 -204,260,442,-9,-9,-9,1,0,20,0,0,1,1,0,-9,0,4,0,0,0,0,0,-1038.763284074776,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.67,53.2,-9,-9,8.333333333333334,1,1,0,0,1,8,1,0,1307,-120480.1945714087,0,0,0,-155.6353674849061 -205,261,443,444,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.712947081188506,8.65835344553485,0,4,1,89.77206842881787,0,1,1,2019,5,0,36,36,1,0,0,17.67339336675941,17.67339336675941,0,0,0,0,0,1,1,0,4.858125263531177,0,60.18,48.05,57.16,56.15,10,1,1,0,0,5,5,5,1,242.5,961492.1616908548,466692.2027902345,216302.1437569835,0,5254.531295962161 -205,261,444,443,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.183034712910134,8.668192278110004,8.215952262515328,4,-1,-58.00929577335124,0,-9,-9,2019,9,0,50,50,1,0,0,6.944529378911003,6.944529378911003,0,0,0,0,0,1,1,0,4.608373856865012,8.456331878988268,57.16,56.15,60.18,48.05,10,1,1,0,0,8,5,5,1,242.5,961492.1616908548,466692.2027902345,216302.1437569835,0,5254.531295962161 -206,262,445,446,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.873511439875269,9.055986245311269,0,3,21,4.690306725716523,0,1,1,2019,13,2,76,40,1,2,0,10.73732488572846,10.73732488572846,0,0,0,0,0,0,0,0,0,0,45.4,56.19,30.3,63.25,8.333333333333334,4,2,0,0,10,7,5,1,465,224022.9005550983,149120.4545122523,0,0,3615.293788452875 -206,262,446,445,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.269277922081532,8.216010078116266,0,3,-21,79.50893420289459,0,-9,-9,2019,12,1,40,45,1,1,0,10.3327610784481,10.3327610784481,0,0,0,0,0,0,0,0,.5520241589463327,0,30.3,63.25,45.4,56.19,8.333333333333334,1,1,0,0,2,7,5,1,465,224022.9005550983,149120.4545122523,0,0,3615.293788452875 -207,263,447,448,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.966408828285306,9.097078929803436,0,10,-4,48.91849206431786,0,2,2,2019,11,2,35,35,1,2,0,21.36147283343698,21.36147283343698,0,0,0,0,0,0,0,0,6.187862317051816,0,46.73,57.01,28.1,66.68000000000001,8.333333333333334,1,1,0,0,10,8,5,1,1143,1049732.649752446,-9281.37775893353,732870.7032138378,26146.37309762894,4931.652910451541 -207,263,448,447,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.362434344508795,8.313648470258709,0,10,4,-67.9298121957281,0,2,2,2019,22,10,72,37,1,10,0,6.00123203878679,6.00123203878679,0,0,0,0,0,0,0,0,5.668167478184055,0,28.1,66.68000000000001,46.73,57.01,5,1,1,0,0,6,8,5,1,1143,1049732.649752446,-9281.37775893353,732870.7032138378,26146.37309762894,4931.652910451541 -208,264,449,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1074.719550150269,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,1,0,306,176565.5644716288,0,195444.4379090637,0,1462.325217437306 -209,265,450,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1005.011621605099,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.56,59.44,-9,-9,6.666666666666667,3,4,0,0,2,8,1,0,1061,159038.7717720696,0,0,0,1091.549485676433 -210,266,451,452,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.84490094294275,7.999679218879158,0,1,3,42.05367419038992,0,2,2,2019,22,10,40,38,1,10,0,6.441882529104464,6.441882529104464,0,0,0,0,0,0,0,0,0,0,20.11,67.84999999999999,8.42,52.97,8.333333333333334,1,1,0,0,4,5,4,0,954,25755.40855064274,153214.8766944394,0,0,1804.481541410315 -210,266,452,451,-9,-9,1,0,18,0,0,0,2,2,-9,0,3,7.843353284961278,7.701957640298723,0,1,-3,-19.45387417856461,-9,-9,-9,2019,33,12,40,0,1,12,0,5.734214256024996,5.734214256024996,0,0,0,0,0,0,0,0,0,0,8.42,52.97,20.11,67.84999999999999,1.666666666666667,1,1,0,0,1,5,4,0,954,25755.40855064274,153214.8766944394,0,0,1804.481541410315 -211,267,453,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.631316544770685,7.502398515863597,0,0,-1128.382216183502,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.600893630354038,7.510791991091268,54.55,49.25,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,965,426906.0580596571,157201.1313381751,214033.0287379154,0,2059.321032754467 -212,268,454,-9,456,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.187478642937,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,300.6666666666667,34667.85595376254,-76932.28435768794,78179.82233794959,59889.69590098108,2463.854464958179 -212,268,455,-9,456,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-968.2194684097489,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,3,1,300.6666666666667,34667.85595376254,-76932.28435768794,78179.82233794959,59889.69590098108,2463.854464958179 -212,268,456,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.907588946105121,8.438027946511404,7.676208260561018,0,0,-938.3087624299627,0,1,2,2019,11,0,20,20,1,0,0,12.86835483362162,12.86835483362162,0,0,0,0,0,1,1,0,7.068256902407014,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,300.6666666666667,34667.85595376254,-76932.28435768794,78179.82233794959,59889.69590098108,2463.854464958179 -213,269,457,458,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,55,2,-19.53920974792609,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,1.177861007117707,30.27562403380991,0,5.48,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,349.5,528006.1891095439,60498.41081844567,352918.5260289138,0,1640.6629712055 -213,269,458,457,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.055149482061139,7.198015907522773,55,-2,58.9600712691425,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.930612299510453,0,0,71.5,1,1,0,0,7.388110215155814,55,45,53,44,8,1,1,0,0,0,8,2,1,349.5,528006.1891095439,60498.41081844567,352918.5260289138,0,1640.6629712055 -214,270,459,460,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.384217564618183,7.74885249000648,2,-2,116.0337036834806,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,.6425083567233898,14.5,1,1,0,0,7.606610959565175,41.81,60.52,36.5,41.7,8.333333333333334,1,1,0,0,0,13,4,1,791.5,1250828.066920456,500540.6839691163,331728.5914775751,0,4282.087977139032 -214,270,460,459,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.893928271735327,8.034308572745823,2,2,30.99000111977205,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,8.418079291966347,0,0,1,1,0,0,7.945370214324676,36.5,41.7,41.81,60.52,6.666666666666667,1,1,0,0,0,13,4,1,791.5,1250828.066920456,500540.6839691163,331728.5914775751,0,4282.087977139032 -215,271,461,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1038.840749987228,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,37.13,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,613,-282779.6482046845,0,0,0,780.4340773008505 -215,272,462,-9,461,-9,1,0,31,0,0,0,1,1,-9,0,2,8.229422301025782,8.124853859273392,0,0,0,-949.205724024837,0,2,-9,2019,10,2,20,17,1,2,0,20.7140961342178,20.7140961342178,0,0,0,0,0,1,1,0,0,0,47.39,52.89,-9,-9,8.333333333333334,4,5,0,0,2,8,4,0,67,103323.515591207,59461.76235203784,128135.025878764,63789.43748422567,1346.267306358237 -216,273,463,-9,466,465,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.7198826314263,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1155.25,17604.46390845978,0,106188.8882874147,51464.65657504824,1459.543246534686 -216,273,464,-9,466,465,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.906583040786,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1155.25,17604.46390845978,0,106188.8882874147,51464.65657504824,1459.543246534686 -216,273,465,466,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,6.67746748741757,6.847864319834303,0,9,15,-33.98468524802968,0,3,3,2019,15,3,16,16,1,3,0,7.22543638426608,7.22543638426608,0,0,0,0,0,1,1,0,0,0,24.18,60.54,30.87,65.23999999999999,3.333333333333333,1,1,0,0,10,4,2,0,1155.25,17604.46390845978,0,106188.8882874147,51464.65657504824,1459.543246534686 -216,273,466,465,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,9,-15,47.86262083078771,0,2,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.87,65.23999999999999,24.18,60.54,3.333333333333333,1,1,0,0,1,4,2,0,1155.25,17604.46390845978,0,106188.8882874147,51464.65657504824,1459.543246534686 -217,274,467,468,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.013187954153265,5.775112532508369,46,0,-72.2222528533464,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.387732766394138,57.33,53.46,58.32,50.22,6.666666666666667,1,1,0,0,4,2,2,1,1362.5,473265.8669173591,138535.8833658243,163606.1250079382,0,1722.326386475319 -217,274,468,467,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,46,0,50.97115927820299,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.586202689931292,0,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,3,2,2,1,1362.5,473265.8669173591,138535.8833658243,163606.1250079382,0,1722.326386475319 -218,275,469,470,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,2.940250909463917,3.342522831859831,39,3,-102.7814368948341,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,68.41656823203736,0,0,1,1,0,0,3.11018246373526,20.38,32.9,45.93,35.54,1.666666666666667,1,1,0,0,0,5,2,0,348,380576.9249452686,12085.87809776809,209241.1573968225,0,2854.558978283371 -218,275,470,469,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,39,-3,24.25719009537063,0,3,3,2019,24,11,0,0,4,11,0,0,0,1,0,0,0,74.5,1,1,0,0,0,45.93,35.54,20.38,32.9,6.666666666666667,1,1,0,0,0,5,2,0,348,380576.9249452686,12085.87809776809,209241.1573968225,0,2854.558978283371 -219,276,471,472,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.521266943460004,7.610857521238489,0,21,-1,-28.98021037610168,0,3,2,2019,12,0,28,0,1,0,0,6.280702407581962,6.280702407581962,0,0,0,0,0,1,1,0,6.795886806345426,0,47.15,55.39,52,56,1.666666666666667,2,3,0,0,1,5,3,1,765.25,13349.34677435971,18377.78457436738,57429.70038684635,15993.14409367303,3196.840507570259 -219,276,472,471,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.897505991493892,7.772221706012649,0,21,1,-141.7158328771141,0,3,2,2019,9,0,60,50,1,1,0,4.739270287207408,4.739270287207408,0,0,0,0,0,1,1,0,7.212551573383706,0,52,56,47.15,55.39,8,2,3,0,0,1,5,3,1,765.25,13349.34677435971,18377.78457436738,57429.70038684635,15993.14409367303,3196.840507570259 -219,276,473,-9,471,472,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-851.3511513316779,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,5,3,1,765.25,13349.34677435971,18377.78457436738,57429.70038684635,15993.14409367303,3196.840507570259 -219,276,474,-9,471,472,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.061142920893,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,1,765.25,13349.34677435971,18377.78457436738,57429.70038684635,15993.14409367303,3196.840507570259 -220,277,475,476,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.936257365474658,9.600256309268726,0,6,10,34.12595386561254,0,3,3,2019,1,0,50,50,1,0,0,36.36903710520582,36.36903710520582,0,0,0,0,0,0,0,0,7.967957333502794,0,57.06,57.76,52.35,46.24,1.666666666666667,1,1,0,0,6,2,5,1,3520,2138884.519202637,1506702.723467265,444542.0636401441,16327.11856061422,6368.82231923654 -220,277,476,475,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.580814427330965,7.356489689605249,0,6,-10,-121.1321292189985,0,3,3,2019,8,0,10,12,1,0,0,18.12508148971727,18.12508148971727,0,0,0,0,0,0,0,0,3.394790945872169,0,52.35,46.24,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,3520,2138884.519202637,1506702.723467265,444542.0636401441,16327.11856061422,6368.82231923654 -220,278,477,-9,476,475,1,0,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-1009.255183208525,-9,2,1,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,.8117371860837928,0,25.1,65.76000000000001,-9,-9,6.666666666666667,1,1,1,0,5,2,1,1,728,23090.20652099189,0,0,0,-246.5262846462444 -221,279,478,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-852.6136764937069,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,7,3,4,0,0,0,6,1,0,305,-137909.7692873041,0,0,0,1185.67010383722 -222,280,479,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1028.77412429281,0,1,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.597412021147599,0,48.32,46.55,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,1444,42252.47879984394,0,0,0,1213.87541616347 -223,281,480,481,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.981480642315768,8.345370700719595,32,5,-126.7575500187302,0,3,3,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.924650232701959,61.68,49.95,51.83,57.2,10,1,1,0,0,7,1,4,1,1859,1829508.427328175,1550402.715067404,230364.4822493927,0,3497.571037839724 -223,281,481,480,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.092850513048182,8.284821637530447,33,-5,49.01666118780957,0,3,3,2019,10,2,0,40,4,2,0,0,0,0,0,0,0,7,0,0,0,4.3031706298359,8.084232109014909,51.83,57.2,61.68,49.95,8.333333333333334,1,1,0,0,9,1,4,1,1859,1829508.427328175,1550402.715067404,230364.4822493927,0,3497.571037839724 -224,282,482,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-993.383339182458,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,40.38,29.22,-9,-9,1.666666666666667,3,4,0,1,1,8,1,0,364,32189.01199519939,0,0,0,968.9923272076762 -224,283,483,-9,482,-9,1,1,30,0,0,0,2,2,-9,0,4,8.506089472122898,8.33961329489396,0,0,0,-1028.12418827454,0,2,2,2019,12,2,37,37,1,2,1,14.9095309026756,14.9095309026756,0,0,0,0,0,1,1,0,2.079623490858542,0,52.65,27.21,-9,-9,6.666666666666667,4,2,0,0,11,8,4,0,1422,-154465.8901623598,21813.6384515559,0,0,1749.128906499648 -225,284,484,-9,487,486,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.67074871098,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,476.5,425986.9108850005,36423.73928071334,97679.60786698152,111898.06801324,2184.011539685994 -225,284,485,-9,487,486,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1208.507372294759,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,476.5,425986.9108850005,36423.73928071334,97679.60786698152,111898.06801324,2184.011539685994 -225,284,486,487,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.382431554310315,8.385078823494892,0,23,2,-101.5883974605999,0,2,2,2019,12,2,44,44,1,2,0,12.65602074915388,12.65602074915388,0,0,0,0,0,1,1,0,2.643828963452586,0,48.81,59.91,53.2,33.98,8.333333333333334,1,1,0,0,13,1,3,1,476.5,425986.9108850005,36423.73928071334,97679.60786698152,111898.06801324,2184.011539685994 -225,284,487,486,-9,-9,1,0,45,0,2,0,2,2,-9,1,3,6.14910562566738,6.139921394862171,0,22,-2,-62.97179634273716,0,2,2,2019,12,2,8,8,1,2,0,8.510148452308178,8.510148452308178,0,0,0,0,14.5,1,1,0,0,0,53.2,33.98,48.81,59.91,8.333333333333334,1,1,0,0,6,1,3,1,476.5,425986.9108850005,36423.73928071334,97679.60786698152,111898.06801324,2184.011539685994 -226,285,488,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1041.583646010706,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,.5288232860170775,0,41.3,34.16,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,159,282882.5158896128,0,0,0,2094.977702842853 -227,286,489,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.1887995141744,-9,1,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.14,41.34,-9,-9,3.333333333333333,1,1,0,0,6,12,1,1,386,-100058.368512558,0,0,0,-241.9598488308558 -228,287,490,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,6.480645630466705,6.855683325004827,0,0,-1036.56329097743,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.828665255632621,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1762,508627.2909637219,71160.47484612674,245725.9648889621,0,793.5426102528252 -229,288,491,-9,492,493,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-895.2438868294601,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,676.3333333333334,222250.3130979485,38808.05975207686,75196.42540284863,15254.18112719822,3645.018968854564 -229,288,492,493,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.059563140364048,7.887726160131344,0,6,-2,137.1457284356779,0,2,-9,2019,9,0,30,36,1,0,0,11.51783562791864,11.51783562791864,0,0,0,0,0,1,1,0,0,0,51.73,58.82,52.43,55.57,6.666666666666667,1,1,0,0,7,12,3,1,676.3333333333334,222250.3130979485,38808.05975207686,75196.42540284863,15254.18112719822,3645.018968854564 -229,288,493,492,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.448174542509352,7.304601786229491,0,6,2,-6.406158136484661,0,-9,-9,2019,7,0,50,50,1,0,0,3.418350917375583,3.418350917375583,0,0,0,0,0,1,1,0,0,0,52.43,55.57,51.73,58.82,6.666666666666667,1,1,0,0,7,12,3,1,676.3333333333334,222250.3130979485,38808.05975207686,75196.42540284863,15254.18112719822,3645.018968854564 -230,289,494,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,0,0,-980.1493788191082,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,1,1,1,11,1,1,674,-26979.34637798836,0,0,0,604.1908520124171 -230,290,495,-9,494,-9,1,1,24,0,0,0,2,2,-9,0,4,7.128192006086143,6.980234348191212,0,0,0,-967.3964957642614,0,3,-9,2019,12,0,20,20,1,0,1,6.570297364493577,6.570297364493577,0,0,0,0,0,1,1,0,0,0,39.57,53.21,-9,-9,6.666666666666667,1,1,0,0,2,11,2,1,708,91940.05580278099,0,0,0,885.5832277928575 -231,291,496,497,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.927957990007175,8.023297197243236,0,4,-2,124.0566610792962,0,-9,-9,2019,8,0,44,62,1,0,0,6.088815855688054,6.088815855688054,0,0,0,0,0,0,0,0,0,0,58.15,52.91,33.66,34.78,8.333333333333334,1,1,0,0,6,9,5,1,481.5,-31236.8863124067,67376.2790917744,0,0,3763.36722636551 -231,291,497,496,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.952573786675542,8.457450525951128,0,4,2,-21.71713694524979,0,2,-9,2019,19,7,55,60,1,7,0,16.55621082167122,16.55621082167122,0,0,0,0,0,0,0,0,0,0,33.66,34.78,58.15,52.91,3.333333333333333,1,1,0,0,8,9,5,1,481.5,-31236.8863124067,67376.2790917744,0,0,3763.36722636551 -232,292,498,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.470863165501065,8.27031355369285,0,0,0,-985.4251016761915,0,1,1,2019,6,0,37,37,1,0,0,14.569112463959,14.569112463959,0,0,0,0,0,0,0,0,4.645809708190772,0,54.79,55.86,-9,-9,10,1,1,0,0,4,10,5,0,329,-322985.8844232336,-7801.676218309274,0,0,1670.097414728909 -233,293,499,500,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.726776368072137,6.401656994358496,8,2,27.13982800856664,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.593983484144268,52.11,39.8,38.18,28.74,6.666666666666667,1,1,0,0,0,12,2,1,356.5,134120.7737822824,59639.89669006248,0,0,1904.708640425502 -233,293,500,499,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,8,-2,45.37323836069434,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,1.351731338098966,0,0,1,1,0,0,0,38.18,28.74,52.11,39.8,5,1,1,0,1,0,12,2,1,356.5,134120.7737822824,59639.89669006248,0,0,1904.708640425502 -234,294,501,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,4.612512622372241,3.980220609293368,0,0,-915.1167733003796,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.67556178368278,4.082605413441177,46.65,31.16,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,151,217634.8867530538,0,151328.4949214986,89013.58118548947,649.4126692797995 -235,295,502,503,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.97166596456514,6.988793213287388,55,4,-59.97923694439217,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.140920058496847,6.863912022814209,57.91,48.98,59.31,49.81,8.333333333333334,1,1,0,0,0,10,2,1,584.5,312897.0327891746,246920.7440846259,197673.6927957129,0,1667.414390567583 -235,295,503,502,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,-93.67850769696327,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9421233416002969,0,59.31,49.81,57.91,48.98,8.333333333333334,1,1,0,0,0,10,2,1,584.5,312897.0327891746,246920.7440846259,197673.6927957129,0,1667.414390567583 -236,296,504,505,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,7.182355405945499,7.23078569016791,31,4,-47.91246399676306,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,7.139274477558236,30.6,18.53,38.49,38.18,1.666666666666667,1,1,0,0,0,13,2,1,516.5,628045.7702095667,376844.5200120267,240924.5514248175,0,1853.445628983063 -236,296,505,504,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,31,-4,52.38098876501228,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.49,38.18,30.6,18.53,5,1,1,0,0,0,13,2,1,516.5,628045.7702095667,376844.5200120267,240924.5514248175,0,1853.445628983063 -237,297,506,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.688585278584506,7.693192037953453,0,0,-980.3076733573341,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.30926432540997,7.525618223746404,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,595,1373473.541435153,773907.9029552201,384395.8467664263,0,1122.31029425357 -238,298,507,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.427525295189943,8.297783410054933,0,0,0,-836.5237267261615,0,3,3,2019,18,6,40,37,1,6,0,13.16815407689045,13.16815407689045,0,0,0,0,0,1,1,0,0,0,37.01,50.93,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,266,812414.9689878819,773405.5727390522,106340.4499330065,64284.45919671158,1514.709078109816 -239,299,508,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1045.719533638971,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,10,1,1,0,0,9,12,1,1,1486,72608.84911290524,0,0,0,943.700749816923 -240,300,509,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.114755371925566,6.880073491195764,0,0,-905.7773171981421,0,2,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.608247543568189,37.71,26.03,-9,-9,1.666666666666667,1,1,0,0,0,12,3,0,223,606886.9618236949,285422.7933064086,227541.6722204032,33491.30522717164,1613.958334850433 -241,301,510,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.808136544624904,7.821086809958723,0,0,0,-926.8824695116842,0,2,3,2019,14,6,20,20,1,6,0,16.50876058384987,16.50876058384987,0,0,0,0,0,0,0,0,1.464703582634584,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,8,2,3,1,510,79269.91282404208,39903.91301347441,0,0,1370.709041989896 -242,302,511,512,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.611316860943981,7.099876257946242,8,9,35.71368692908915,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.014210251727945,6.815678562008087,57.09,46.7,36.91,38.64,8.333333333333334,1,1,0,0,0,8,2,1,757,89340.86842981188,153714.6883317121,0,0,2740.314858886572 -242,302,512,511,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,6.544815035733244,6.471441118941772,8,0,58.57287570137456,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.392952928491603,6.683905950016553,36.91,38.64,57.09,46.7,1.666666666666667,3,4,0,0,0,8,2,1,757,89340.86842981188,153714.6883317121,0,0,2740.314858886572 -242,303,513,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.670699304381126,7.846778843559791,0,0,0,-1090.181132840212,0,-9,-9,2019,10,0,40,40,1,0,0,7.489813013095069,7.489813013095069,0,0,0,0,0,1,1,0,4.270250354465099,0,46.63,59.72,-9,-9,5,1,1,0,0,9,8,3,1,762,-13702.81157327945,-34669.12481991778,0,0,926.2363056021812 -243,304,514,515,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.559937298363925,7.797153676397422,0,2,4,-85.73506466303625,0,-9,-9,2019,6,0,38,38,1,0,0,10.05306291672305,10.05306291672305,0,0,0,0,0,0,0,0,0,0,49.86,55.31,32.99,40.53,8.333333333333334,1,1,0,0,1,6,5,1,456.5,308179.5860330915,78213.83750877937,214198.784306169,167700.3288393668,3047.903681956053 -243,304,515,514,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,8.330239950018301,8.230390431175547,0,2,-4,-17.7661625123051,0,-9,-9,2019,23,10,47,38,1,10,0,11.82532943299366,11.82532943299366,0,0,0,0,0,0,0,0,0,0,32.99,40.53,49.86,55.31,3.333333333333333,1,1,0,0,6,6,5,1,456.5,308179.5860330915,78213.83750877937,214198.784306169,167700.3288393668,3047.903681956053 -244,305,516,517,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.362553502268501,4.33954951114617,7,-1,-25.9732106967816,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,1.410918607705623,3.050859962081126,17.918112678657,0,1,1,0,0,4.479297659746982,32.8,21.51,63.48,51.85,5,1,1,0,0,0,6,2,0,267,494763.879496882,96888.64587291982,158138.3265613311,0,2772.815955015824 -244,305,517,516,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,6.337779714591301,7.115408216468099,6.432129809671456,7,1,33.13829317467908,0,3,3,2019,9,1,7,14,1,1,0,8.215758121907832,8.215758121907832,1,0,0,0,0,1,1,0,5.136880817196987,6.696738731154453,63.48,51.85,32.8,21.51,8.333333333333334,1,1,0,0,8,6,2,0,267,494763.879496882,96888.64587291982,158138.3265613311,0,2772.815955015824 -245,306,518,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,6.128177365909369,6.190880837985769,0,0,-953.9863652992514,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,5.792574704438409,0,0,1,1,0,0,5.793042898103339,36.37,23,-9,-9,1.666666666666667,1,1,0,1,0,1,2,0,368,312357.2202279656,-55636.06312549172,115041.3185992591,0,711.4659563756541 -246,307,519,-9,520,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.5303095055101,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,865.5,-10177.95903784168,0,0,0,1346.312174946243 -246,307,520,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,3,0,7.099618159487821,7.253370372168066,0,0,-957.8070365043753,0,2,1,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,7.421018198028976,0,17.25,58.46,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,865.5,-10177.95903784168,0,0,0,1346.312174946243 -247,308,521,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.059947387836907,8.065285560459831,0,0,0,-1028.924983575892,0,-9,-9,2019,10,0,40,39,1,0,0,11.33152545024599,11.33152545024599,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,730,69147.91327607924,49229.50070284042,0,0,1367.436330209121 -248,309,522,523,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.78067253437672,7.854404039235209,33,0,-29.12601466236416,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.077042085476097,7.590333423496963,64.48,48.62,61.12,51.57,10,1,1,0,0,4,6,3,1,1039.5,782939.342631547,212832.2133925651,378582.6622701607,0,862.7375873609516 -248,309,523,522,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,33,0,-13.90361015088087,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.699080573806711,0,61.12,51.57,64.48,48.62,10,1,1,0,0,5,6,3,1,1039.5,782939.342631547,212832.2133925651,378582.6622701607,0,862.7375873609516 -249,310,524,525,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.184415003890352,8.36227195622231,0,1,2,32.58224062624738,-9,2,3,2019,10,0,50,0,1,0,0,9.585838860949696,9.585838860949696,0,0,0,0,0,0,0,0,4.050485138022714,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,513,561444.974098101,302843.6186177466,172151.5329141109,22804.69290928105,3972.688881227935 -249,310,525,524,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.346997863395149,8.284249766732254,0,1,-2,96.39190920750892,-9,2,2,2019,6,0,37,0,1,0,0,14.73356801870445,14.73356801870445,0,0,0,0,0,0,0,0,4.819658158248756,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,11,5,1,513,561444.974098101,302843.6186177466,172151.5329141109,22804.69290928105,3972.688881227935 -250,311,526,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1124.086718438919,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,735,-33646.55808689728,0,0,0,1108.770479271818 -251,312,527,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.554893555458419,8.505500911685449,0,0,0,-836.0222162022322,0,3,2,2019,3,1,49,60,1,1,0,11.17897762481364,11.17897762481364,0,0,0,0,0,0,0,0,0,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,1902,918577.3016494106,620073.8037087435,60305.82655285081,83143.49763692824,2127.517432229065 -252,313,528,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.510708295483247,6.570910545073629,0,0,-985.2021315837112,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.458529902837564,55.56,46,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,812,398835.1708482562,46922.17744987799,124626.5232415888,0,1309.369004478632 -253,314,529,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.434943053976198,5.20434972633972,0,0,-1042.064943763892,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.921111290030349,55.33,55.59,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,515,167907.9862539513,72997.3356422169,153729.6334602172,0,686.7893001178064 -254,315,530,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.276214400152273,7.114392056437858,3.921270368280779,0,0,-927.9209616074689,0,3,3,2019,11,0,21,35,1,0,0,8.535052769965455,8.535052769965455,0,0,0,0,7,0,0,0,5.299707177026265,4.140307531717909,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,2218,148505.0331884995,0,180367.3668323568,109646.657486178,836.5884146921128 -255,316,531,532,-9,-9,1,0,54,0,1,0,1,1,-9,1,3,8.727707036918638,8.463699254024627,0,27,1,92.40270107081628,0,3,-9,2019,7,0,30,30,1,0,0,23.96962648044611,23.96962648044611,0,0,0,0,7,1,1,0,8.781596221023339,0,50.42,51.35,56.49,40.63,8.333333333333334,1,1,0,0,12,13,4,1,264.3333333333333,1416266.611392703,1069960.881951514,272434.400813753,0,6974.216154829865 -255,316,532,531,-9,-9,1,1,53,0,1,0,1,1,-9,0,2,6.828401027911515,6.725299085169151,0,27,-1,-22.032746949627,0,-9,-9,2019,12,3,38,40,1,3,0,2.424914694878799,2.424914694878799,0,0,0,2.061249195479403,2,1,1,0,6.700006008757785,0,56.49,40.63,50.42,51.35,8.333333333333334,1,1,0,0,13,13,4,1,264.3333333333333,1416266.611392703,1069960.881951514,272434.400813753,0,6974.216154829865 -255,316,533,-9,531,532,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.5824527391137,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,13,4,1,264.3333333333333,1416266.611392703,1069960.881951514,272434.400813753,0,6974.216154829865 -256,317,534,535,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,50,-3,-38.42792866622837,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,63.42,26.14,56.95,46.69,6.666666666666667,1,1,0,0,0,1,2,1,552,326254.686797321,170503.8992358375,176223.5227972174,0,1060.344951905274 -256,317,535,534,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.58528141910586,6.933936672877502,50,3,144.3972609636476,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.644461189970158,56.95,46.69,63.42,26.14,6.666666666666667,1,1,0,0,0,1,2,1,552,326254.686797321,170503.8992358375,176223.5227972174,0,1060.344951905274 -257,318,536,537,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,8.089267567046015,8.233085105908748,6.040611190997083,18,7,43.89414909420054,0,3,3,2019,7,0,44,39,1,0,0,9.800228696227503,9.800228696227503,0,0,0,0,0,0,0,0,3.914368008049008,6.244375005025535,60.02,56.42,59.53,43.34,10,1,1,0,0,8,5,4,1,568.5,497275.5169641305,210526.194494192,285798.9558062807,0,2362.837836549836 -257,318,537,536,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,6.985727107296141,7.411098321433182,5.953850907666698,23,-7,66.52148378445361,0,3,-9,2019,8,0,28,17,1,0,0,4.214625034934936,4.214625034934936,0,0,0,0,0,0,0,0,0,6.219002235304981,59.53,43.34,60.02,56.42,8.333333333333334,1,1,0,0,8,5,4,1,568.5,497275.5169641305,210526.194494192,285798.9558062807,0,2362.837836549836 -257,319,538,-9,537,536,1,1,24,0,0,0,1,1,-9,0,4,7.622299374365733,7.656034629064306,0,0,0,-1013.556821057776,0,2,2,2019,12,0,36,0,1,0,1,7.160656269511259,7.160656269511259,0,0,0,0,0,0,0,0,3.318469050048984,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,253,-18606.09611349504,0,0,0,990.4878628927263 -258,320,539,540,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,8,3,0,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,41.67,40.53,29.17,23.07,5,1,1,0,0,0,6,1,0,301,-69631.02798136233,0,0,0,2288.435321599109 -258,320,540,539,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,8,-3,0,0,3,3,2019,30,11,0,0,4,11,0,0,0,1,0,125.0803993933914,0,0,1,1,0,0,0,29.17,23.07,41.67,40.53,0,1,1,0,0,0,6,1,0,301,-69631.02798136233,0,0,0,2288.435321599109 -259,321,541,542,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,36,2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,48,49,48,7,2,3,0,0,6,8,1,1,317.5,404033.2943709413,0,642841.5315712178,0,342.4137778425256 -259,321,542,541,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,36,-2,0,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,317.5,404033.2943709413,0,642841.5315712178,0,342.4137778425256 -259,322,543,-9,542,541,1,1,22,0,0,0,2,2,-9,0,4,8.275965455235921,8.350104387568489,0,0,0,-949.4458286910673,0,3,3,2019,11,0,48,0,1,1,0,8.990375109944921,8.990375109944921,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,1,8,4,1,340,9155.956665167758,-106455.4123012022,0,0,1423.57418264836 -260,323,544,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,6.188066018878576,6.347885329927632,0,0,-925.4590378894505,0,2,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,6.334958107847927,0,54.19,26.02,-9,-9,5,1,1,0,0,0,6,2,1,1867,-117757.6263949311,0,0,0,885.7676394953348 -260,324,545,-9,544,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1097.614874474496,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,6,6,1,1,524,73396.29781576677,0,0,0,-684.8271004870708 -260,325,546,-9,544,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.0364028238387,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,.4394800753884356,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,210,-77428.60029782343,0,0,0,-374.9444297421242 -261,326,547,-9,550,548,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.8456181152949,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,3,0,417.75,119316.7434797172,106090.7085592605,487697.1686212226,326931.4741219174,1172.118565839279 -261,326,548,550,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,7.779937322149968,7.656358941684045,0,26,1,113.6246204873266,0,3,3,2019,7,0,25,38,1,0,0,10.93481325328494,10.93481325328494,0,0,0,0,0,0,0,0,0,0,58.99,51.66,57.06,57.76,0,3,4,0,0,8,7,3,0,417.75,119316.7434797172,106090.7085592605,487697.1686212226,326931.4741219174,1172.118565839279 -261,326,549,-9,550,548,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1081.84602890346,-9,2,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,57.16,-9,-9,10,3,4,0,0,0,7,3,0,417.75,119316.7434797172,106090.7085592605,487697.1686212226,326931.4741219174,1172.118565839279 -261,326,550,548,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.431965830503404,7.732463957126367,0,26,-1,-6.605169515702269,0,2,1,2019,9,0,20,28,1,0,0,7.652709217594783,7.652709217594783,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.99,51.66,6.666666666666667,3,4,0,0,9,7,3,0,417.75,119316.7434797172,106090.7085592605,487697.1686212226,326931.4741219174,1172.118565839279 -261,327,551,-9,550,548,1,1,22,0,1,0,2,2,0,0,5,0,2.218435382823706,2.643134474371852,0,0,-1042.491782562011,-9,1,2,2019,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,3.041533422737255,0,30.06,71.22,-9,-9,10,3,4,0,0,0,7,2,0,853,81057.88179021381,-68186.78400512203,0,0,188.1771906112356 -262,328,552,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.238238926492488,7.079929372194433,0,0,-1008.199397256133,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,0,7.32767339282314,59.47,38.95,-9,-9,10,1,1,0,0,0,9,3,1,1430,631274.6174571548,279295.2659256757,114424.5678408901,0,1352.344846207422 -263,329,553,554,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.134899948788881,8.375387615614471,0,17,16,54.16250997400361,0,2,3,2019,19,6,38,40,1,6,0,11.06234443202799,11.06234443202799,0,0,0,0,0,0,0,0,0,0,27.39,32.66,52.97,53.97,6.666666666666667,1,1,0,0,12,10,5,0,330,1138170.032464419,612138.3785338525,550669.3321212234,130363.460624977,3376.221441693588 -263,329,554,553,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.528221134339812,8.181651172648488,0,17,-16,49.89450940021048,0,3,2,2019,8,1,55,40,1,1,0,9.256754158492186,9.256754158492186,0,0,0,0,0,0,0,0,0,0,52.97,53.97,27.39,32.66,8.333333333333334,1,1,0,0,12,10,5,0,330,1138170.032464419,612138.3785338525,550669.3321212234,130363.460624977,3376.221441693588 -264,330,555,556,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,6.829908606260332,6.716833715608644,0,7,-2,-7.259072882758351,0,-9,-9,2019,6,0,75,75,1,0,0,1.217602389566677,1.217602389566677,0,0,0,0,0,0,0,0,0,0,55.39,54.22,61.88,41.71,10,1,1,0,0,4,4,3,1,428,200974.0439726982,4345.343408044144,313028.1967743284,53815.41708296018,1135.994930007725 -264,330,556,555,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.084554788605685,7.489867629342533,0,19,2,50.53235279613784,0,2,2,2019,8,0,60,60,1,0,0,3.38773411345016,3.38773411345016,0,0,0,0,2,0,0,0,1.187934425571405,0,61.88,41.71,55.39,54.22,10,1,1,0,0,8,4,3,1,428,200974.0439726982,4345.343408044144,313028.1967743284,53815.41708296018,1135.994930007725 -265,331,557,558,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.753410086506017,8.874429878656187,0,36,-1,-73.1423343559679,0,2,3,2019,12,1,40,65,1,1,0,24.4349763747693,24.4349763747693,0,0,0,0,0,0,0,0,3.044735390065009,0,45.52,33.27,45,39,8.333333333333334,1,1,0,0,12,13,5,1,626,956883.6061928653,640389.5734480469,312015.4325884287,73170.68513519072,5056.445606861754 -265,331,558,557,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.875605427433113,8.631433531100752,7.427050114787116,36,1,-68.54007152344658,0,2,2,2019,8,0,40,0,1,0,0,8.511349945942339,8.511349945942339,0,0,0,0,0,0,0,0,0,7.341558878733188,45,39,45.52,33.27,8.333333333333334,1,1,0,0,12,13,5,1,626,956883.6061928653,640389.5734480469,312015.4325884287,73170.68513519072,5056.445606861754 -266,332,559,560,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.125670625963174,8.011862035060412,6.386726649044925,42,0,85.8767019152712,0,3,3,2019,7,0,34,35,1,0,0,12.42592113741577,12.42592113741577,0,0,0,0,0,0,0,0,7.028206337127498,6.511537603186267,57.73,54.53,57.42,49.34,0,1,1,0,0,11,5,4,1,348,1549390.91355229,749937.6403892839,443267.4823615446,0,2219.461289790261 -266,332,560,559,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,6.135429099457827,6.722257344006231,42,0,-15.49261029656235,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.916879988342745,6.57871831498288,57.42,49.34,57.73,54.53,6.666666666666667,1,1,0,0,10,5,4,1,348,1549390.91355229,749937.6403892839,443267.4823615446,0,2219.461289790261 -267,333,561,562,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,5.43408958490544,5.626733401750781,7,-15,43.41665190247711,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,5.723599089479183,50,48,47.38,47.02,7,1,1,0,0,0,7,3,1,536.5,704078.0586431146,355552.0844701166,142959.7139294033,0,3386.384366924874 -267,333,562,561,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.771222042271836,7.951637747850023,20,15,-160.1653823410955,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,6.977534201078686,7.660223728276079,47.38,47.02,50,48,5,1,1,0,0,0,7,3,1,536.5,704078.0586431146,355552.0844701166,142959.7139294033,0,3386.384366924874 -268,334,563,564,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.16341927245093,7.290835733188647,0,7,-3,-11.3227502336935,0,2,2,2019,7,0,35,40,1,0,0,5.476449731286842,5.476449731286842,0,0,0,0,7,0,0,0,3.53326583137704,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,765,348278.4074365591,17835.94286600033,307605.2126103223,136230.858553563,2707.488242092021 -268,334,564,563,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.580382665051,8.298904439413342,6.707068854134333,7,3,30.43260015761537,0,-9,-9,2019,9,0,37,35,1,0,0,6.033279184219284,6.033279184219284,0,0,0,0,7,0,0,0,.7377484742725444,7.161655427533158,54.96,53.17,57.16,56.15,6.666666666666667,1,1,0,0,11,9,4,1,765,348278.4074365591,17835.94286600033,307605.2126103223,136230.858553563,2707.488242092021 -269,335,565,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.99664236344803,7.773308566705042,0,0,-773.8025457980889,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.438344742971669,7.913399936098953,49.21,53.11,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,949,555708.3516176619,206877.3053874772,291766.723220896,0,3059.695226948418 -270,336,566,567,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.07995260834026,7.136906708801566,29,2,62.18006121272294,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.251140123132802,55.96,49.93,59.43,58.05,8.333333333333334,1,1,0,0,8,12,5,1,1336,2495250.775134011,2337342.320084757,0,0,4981.641325363496 -270,336,567,566,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,8.528423544317409,8.35333371133521,0,8,-2,36.60545457254889,0,2,2,2019,8,0,46,50,1,0,0,12.44871605935688,12.44871605935688,0,0,0,0,0,1,1,0,7.323943892032029,0,59.43,58.05,55.96,49.93,10,1,1,0,0,9,12,5,1,1336,2495250.775134011,2337342.320084757,0,0,4981.641325363496 -271,337,568,-9,569,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.173983872144,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,1,0,444.5,-9359.329544033852,0,0,0,777.7490777779601 -271,337,569,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,0,0,0,0,0,-932.870924008633,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.2,58.57,-9,-9,3.333333333333333,1,1,1,0,0,8,1,0,444.5,-9359.329544033852,0,0,0,777.7490777779601 -272,338,570,571,-9,-9,1,1,26,0,0,0,3,3,-9,0,3,8.125105875669325,8.23155533430837,0,2,0,19.79077674002014,0,2,3,2019,9,0,40,40,1,0,0,12.00703563240581,12.00703563240581,0,0,0,0,0,0,0,0,0,0,51.41,56.15,27.13,52.53,5,1,1,0,0,3,10,4,0,764,-182383.668953736,-24149.95445466756,227253.7842361568,155870.5793209847,2597.247792308699 -272,338,571,570,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.215887171587116,7.432793515481061,0,2,0,30.41647233562243,0,-9,-9,2019,20,7,24,0,1,7,0,9.316136362887059,9.316136362887059,0,0,0,0,0,0,0,0,0,0,27.13,52.53,51.41,56.15,6.666666666666667,1,1,0,1,0,10,4,0,764,-182383.668953736,-24149.95445466756,227253.7842361568,155870.5793209847,2597.247792308699 -273,339,572,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.938873924606297,7.841326422279236,0,0,0,-895.8482083975466,0,2,2,2019,12,1,60,60,1,1,0,5.399049338812947,5.399049338812947,0,0,0,0,0,0,0,0,0,0,47.1,41.76,-9,-9,3.333333333333333,2,3,0,0,8,12,4,1,1108,0,0,0,0,1256.274846651228 -274,340,573,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,6.925066271466454,7.182168082689885,0,0,-908.6159579040333,0,3,2,2019,19,7,0,0,4,7,0,0,0,1,.9495001868485005,43.04836407983406,19.90532601650537,0,1,1,0,6.893965069545625,7.58087211745687,45.99,12.81,-9,-9,5,1,1,0,0,0,6,3,1,338,343614.8293429274,71733.47148515414,107210.6124783132,0,2218.383028084339 -275,341,574,-9,575,577,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1143.526363717823,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,462.75,336158.937865753,0,418682.628380528,101618.7880231308,3175.64967137484 -275,341,575,577,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,12,-11,-205.9018881442972,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.29,52.11,57.33,53.46,10,3,4,0,0,3,8,2,0,462.75,336158.937865753,0,418682.628380528,101618.7880231308,3175.64967137484 -275,341,576,-9,575,577,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.894908457529,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,462.75,336158.937865753,0,418682.628380528,101618.7880231308,3175.64967137484 -275,341,577,575,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.299324900749563,7.070376789506716,0,12,11,72.92750468446835,0,2,1,2019,6,0,24,24,1,0,0,6.225440370919155,6.225440370919155,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,8.333333333333334,3,4,0,0,5,8,2,0,462.75,336158.937865753,0,418682.628380528,101618.7880231308,3175.64967137484 -276,342,578,579,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.138465421020303,8.079848166673624,7.610668378252655,6,-1,.6792706735584941,0,2,-9,2019,8,0,4,34,1,0,0,39.36533634252966,39.36533634252966,0,0,0,0,0,0,0,0,5.115857725877247,7.581986344154179,55.09,55.87,41,63.4,8.333333333333334,1,1,0,0,7,13,4,1,442.5,416154.298098393,77860.64443145468,196519.1585909765,-5574.486403668558,3086.511570084082 -276,342,579,578,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.404932244493521,8.29455044428164,0,6,1,71.84615881990086,0,-9,-9,2019,12,0,37,37,1,0,0,12.08759416380763,12.08759416380763,0,0,0,0,0,0,0,0,5.196865214974212,0,41,63.4,55.09,55.87,8.333333333333334,1,1,0,0,7,13,4,1,442.5,416154.298098393,77860.64443145468,196519.1585909765,-5574.486403668558,3086.511570084082 -277,343,580,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,5,0,7.733999191749047,7.575668338860068,0,0,-933.4983299328763,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.036453875165833,7.625433484786796,58.2,48.99,-9,-9,10,1,1,0,0,0,1,3,1,322,631411.0306707944,152237.7634249863,404919.043865812,0,2202.142715476084 -278,344,581,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.883083224681341,8.029310734351075,0,0,-943.7510737518722,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.13238299136467,8.158222859941841,58.95,26.11,-9,-9,3.333333333333333,1,1,0,0,7,2,4,1,958,655765.6915631709,596606.1448484007,69915.01676653097,-13400.42417387961,1812.062388516143 -279,345,582,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.80589823710605,8.239326442705256,6.18509222632729,0,0,-953.6535559701244,-9,-9,-9,2019,10,0,30,0,1,0,0,11.58244146926113,11.58244146926113,0,0,0,0,0,1,1,0,5.165087314934762,6.298931645042657,59.53,56.44,-9,-9,10,1,1,0,0,9,5,4,1,250,670219.0487827717,691520.9878603772,209013.9574618387,18857.65591989976,2260.619340293698 -280,346,583,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1129.696800087714,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.24,32.39,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,612,-102756.1383639878,0,0,0,608.2315779331863 -280,347,584,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.357817685872458,6.49046701432654,0,0,-1010.226158062492,-9,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,66.44880614161785,0,0,1,1,0,6.147932605928832,6.282698446946256,50.51,15.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,663,9077.628994804953,171788.0810145705,0,0,1063.045347828408 -281,348,585,586,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.792479204772454,7.607201412261234,0,6,-2,71.54011571765653,0,2,-9,2019,6,0,38,43,1,0,0,8.915669594213632,8.915669594213632,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,49,10,1,1,0,0,7,4,5,1,173.5,998375.1110908007,829044.9858848576,192619.6377525753,107297.8239355631,3926.295663942348 -281,348,586,585,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.631515139606478,8.653863832715983,0,6,2,-129.7611339565065,0,-9,-9,2019,10,0,40,38,1,1,0,14.95836392074619,14.95836392074619,0,0,0,0,0,0,0,0,7.430307486623482,0,51,49,57.16,56.15,7,4,1,0,0,1,4,5,1,173.5,998375.1110908007,829044.9858848576,192619.6377525753,107297.8239355631,3926.295663942348 -281,349,587,-9,585,586,1,0,22,0,0,0,2,2,-9,0,3,7.139716872536742,7.173310229121466,0,0,0,-887.7763124222704,0,3,-9,2019,8,0,15,20,1,0,1,9.156319014761195,9.156319014761195,0,0,0,0,0,0,0,0,0,0,50.76,52.44,-9,-9,10,1,1,0,0,3,4,3,1,1423,-117321.8145043596,0,0,0,542.3838334704708 -282,350,588,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.128989556615899,8.076966032709441,0,0,-1072.532221883084,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.862109555674748,8.456049854279181,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,578,1049526.648354602,503717.5538949913,237513.6916182596,0,2184.493703965985 -283,351,589,590,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.772733614528415,7.873213548346068,0,1,-3,-110.6465506498933,-9,-9,-9,2019,5,0,36,0,1,0,0,10.52891105257199,10.52891105257199,0,0,0,0,0,0,0,0,0,0,61.12,51.57,55.19,54.26,10,1,1,0,0,0,9,4,1,392.5,206603.0551233381,143267.4654649956,310380.3873343678,166696.792962587,2600.213647454517 -283,351,590,589,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.177047125239321,8.040778348193275,0,1,3,-42.22211624401619,0,2,2,2019,7,0,42,52,1,0,0,7.621268343314062,7.621268343314062,0,0,0,0,2,0,0,0,0,0,55.19,54.26,61.12,51.57,8.333333333333334,1,1,0,0,9,9,4,1,392.5,206603.0551233381,143267.4654649956,310380.3873343678,166696.792962587,2600.213647454517 -284,352,591,592,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,8.787876980523842,8.616950747985973,0,5,-5,52.24465198213245,0,-9,-9,2019,10,0,46,40,1,1,0,13.23271513150396,13.23271513150396,0,0,0,0,0,1,1,0,5.841566191429311,0,53,47,46.46,46,7,1,1,0,0,1,9,4,1,435.5,899592.749486597,691971.6852046425,286447.1790672726,-16947.4771013322,3766.195228761581 -284,352,592,591,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.453427254963458,5.502912439050485,53,5,-11.5523913750565,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.199037096740971,5.363252700414775,46.46,46,53,47,8.333333333333334,1,1,0,1,0,9,4,1,435.5,899592.749486597,691971.6852046425,286447.1790672726,-16947.4771013322,3766.195228761581 -285,353,593,594,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.045519625448058,4.768861400366286,7,6,-39.2430820267004,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.849131858276174,4.865651194174952,60.29,52.11,41.82,57.72,8.333333333333334,1,1,0,0,3,4,3,1,309,274888.5731836526,51665.3343874062,112720.2450208461,1902.416150107578,1785.066956477339 -285,353,594,593,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.834173829115205,7.76815021956194,0,7,-6,21.92027528402384,0,3,2,2019,12,0,28,28,1,0,0,8.825214178887304,8.825214178887304,0,0,0,0,0,1,1,0,2.890931776671024,0,41.82,57.72,60.29,52.11,6.666666666666667,1,1,0,0,7,4,3,1,309,274888.5731836526,51665.3343874062,112720.2450208461,1902.416150107578,1785.066956477339 -286,354,595,596,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.172629098516113,7.054659754135404,45,-2,79.17417872763554,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.257347731310327,7.484251441981088,61.12,51.57,59.14,52.5,10,1,1,0,0,0,9,4,1,287.5,1387024.086791146,1124422.636601574,342138.5601761626,0,3694.655742267761 -286,354,596,595,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,8.078940339392254,8.214650450596812,0,45,2,30.79201914697856,0,2,2,2019,7,0,37,0,1,0,0,9.517194702889018,9.517194702889018,0,0,0,0,0,1,1,0,1.936529966507488,0,59.14,52.5,61.12,51.57,8.333333333333334,1,1,0,0,7,9,4,1,287.5,1387024.086791146,1124422.636601574,342138.5601761626,0,3694.655742267761 -287,355,597,599,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.488092293382216,9.962554682098608,0,17,-1,39.0674040644916,0,2,3,2019,6,0,35,35,1,0,0,45.5464711251643,45.5464711251643,0,0,0,0,0,0,0,0,4.080877867065962,0,57.16,56.15,40.23,61.31,10,1,1,0,0,9,12,5,1,1576.25,608061.5256247666,547667.4196739229,306563.2416438699,194276.7675208091,5029.715931115476 -287,355,598,-9,599,597,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.186093022257,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1576.25,608061.5256247666,547667.4196739229,306563.2416438699,194276.7675208091,5029.715931115476 -287,355,599,597,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.158274162217032,6.288700956888901,0,16,1,-129.6553694941448,0,3,2,2019,15,6,12,0,1,6,0,5.429004686497376,5.429004686497376,0,0,0,0,0,0,0,0,2.258713279516807,0,40.23,61.31,57.16,56.15,6.666666666666667,1,1,0,0,0,12,5,1,1576.25,608061.5256247666,547667.4196739229,306563.2416438699,194276.7675208091,5029.715931115476 -287,355,600,-9,599,597,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-843.988389120865,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,12,5,1,1576.25,608061.5256247666,547667.4196739229,306563.2416438699,194276.7675208091,5029.715931115476 -288,356,601,-9,-9,-9,1,0,37,0,1,0,3,3,-9,0,5,6.488196643980891,6.566797630024706,0,0,0,-915.0537688565071,0,2,-9,2019,15,3,16,18,1,3,0,5.008031361837467,5.008031361837467,0,0,0,0,0,1,1,0,0,0,28.7,64.06,-9,-9,5,1,1,0,1,4,5,2,0,72,-23011.47984758834,0,0,0,217.8384167075649 -288,357,602,-9,601,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-894.5980191570578,-9,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,154,59125.23613730024,0,0,0,0 -289,358,603,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.151731319864007,8.405971567591791,0,0,0,-975.3129900830501,0,2,-9,2019,31,12,39,38,1,12,1,9.071521386921571,9.071521386921571,0,0,0,0,0,0,0,0,0,0,7.04,67.41,-9,-9,3.333333333333333,1,1,0,1,6,12,4,0,463,116945.8821504946,40661.67167812138,0,0,1735.11902618617 -290,359,604,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.311002837176969,6.151653526311843,0,0,-1039.428895481641,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.069370965209026,40.32,43.69,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,123,-15905.30600607552,46705.03206327325,0,0,554.2594095621413 -291,360,605,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.199865845309589,8.16044112139347,0,0,0,-993.2837744942826,0,-9,3,2019,9,1,38,40,1,1,0,13.57545756672538,13.57545756672538,0,0,0,0,0,0,0,0,0,0,31.56,43.62,-9,-9,5,3,4,0,0,8,8,4,1,1786,751109.0819087042,524357.2617531482,247411.3063383616,0,1621.173126783991 -291,361,606,-9,605,-9,1,1,34,0,0,0,2,2,-9,0,4,8.6134044963548,8.756842606123117,0,0,0,-999.4901288308758,0,1,-9,2019,10,0,40,36,1,1,1,16.98814031803517,16.98814031803517,0,0,0,.846655348916725,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,5,1,554,-86632.43165521632,112146.0225111051,0,0,2133.27305161948 -291,362,607,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.647531051829201,8.673518202363937,0,0,0,-1056.682351844325,-9,-9,-9,2019,7,0,60,0,1,0,0,12.18196371551523,12.18196371551523,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,233,1072342.94806416,921825.0728981326,245362.4455738288,100251.5299090162,2266.186015191585 -292,363,608,609,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,8.577590411382118,8.742502820415632,0,7,-4,-47.46192917161034,0,1,-9,2019,32,12,43,42,1,12,0,18.81286226176004,18.81286226176004,0,0,0,0,0,0,0,0,4.824619981105299,0,16.9,51.91,40.11,48.43,1.666666666666667,1,1,0,0,10,7,5,1,485.5,846439.6990720896,209180.9820251406,703207.3603045457,291128.5489138467,6211.601338947922 -292,363,609,608,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.229232916497903,9.330501078110236,0,7,4,-25.1961110376528,0,-9,-9,2019,12,0,38,37,1,0,0,30.37045200569997,30.37045200569997,0,0,0,0,0,0,0,0,4.492240548813301,0,40.11,48.43,16.9,51.91,3.333333333333333,1,1,0,0,7,7,5,1,485.5,846439.6990720896,209180.9820251406,703207.3603045457,291128.5489138467,6211.601338947922 -293,364,610,611,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.428420820552741,8.717889689840955,5.893322439701128,5,3,173.865867999477,0,3,3,2019,6,0,42,42,1,0,0,15.33263652351456,15.33263652351456,0,0,0,0,2,0,0,0,0,6.33040601730829,54.8,50.32,54.19,45.22,8.333333333333334,1,1,0,0,6,5,5,1,1634.5,404094.6382658723,99374.39971315977,263215.1072608086,25460.57469169597,2446.622203431661 -293,364,611,610,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.360563574087949,7.203639598963803,0,5,-3,-114.7613350159983,0,3,3,2019,4,0,22,0,1,0,0,6.290262934101953,6.290262934101953,0,0,0,0,2,0,0,0,1.846100632330448,0,54.19,45.22,54.8,50.32,8.333333333333334,1,1,0,0,6,5,5,1,1634.5,404094.6382658723,99374.39971315977,263215.1072608086,25460.57469169597,2446.622203431661 -294,365,612,-9,616,613,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.524452484114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,1172.4,459389.2868424365,346921.0881725479,119018.0932673604,70880.32119249366,3164.079362367082 -294,365,613,616,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,8.879446714744219,8.655486136707678,0,6,1,33.23664016913824,0,-9,-9,2019,10,0,45,45,1,1,0,15.99771408869389,15.99771408869389,0,0,0,0,0,1,1,0,0,0,50,57,41.17,59.31,7,1,1,0,0,1,1,4,1,1172.4,459389.2868424365,346921.0881725479,119018.0932673604,70880.32119249366,3164.079362367082 -294,365,614,-9,616,613,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.6861938460712,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1172.4,459389.2868424365,346921.0881725479,119018.0932673604,70880.32119249366,3164.079362367082 -294,365,615,-9,616,613,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.002674205491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,1172.4,459389.2868424365,346921.0881725479,119018.0932673604,70880.32119249366,3164.079362367082 -294,365,616,613,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.331501060135499,7.40141974527096,0,6,-1,3.212156339982286,0,2,2,2019,12,0,36,33,1,0,0,7.1686692662759,7.1686692662759,0,0,0,0,0,1,1,0,0,0,41.17,59.31,50,57,8.333333333333334,1,1,0,0,7,1,4,1,1172.4,459389.2868424365,346921.0881725479,119018.0932673604,70880.32119249366,3164.079362367082 -295,366,617,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.372186613985255,8.260830750198554,0,0,0,-1042.529257794358,0,-9,3,2019,9,1,38,38,1,1,0,11.10441630236677,11.10441630236677,0,0,0,0,2,0,0,0,2.260603848102717,0,44.02,60.7,-9,-9,8.333333333333334,3,4,0,0,9,8,4,1,341,1088994.910129494,461625.18747689,258787.7339030362,0,1805.136061930892 -296,367,618,619,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.377945185110046,5.868754549317635,62,2,-31.25442046750521,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.706860267974825,5.769247777606872,54,46,62.26,42.8,8,1,1,0,0,0,8,2,1,938,490246.01649662,-22797.56075767786,363051.9805101402,0,1734.718338759221 -296,367,619,618,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.717849446096328,5.807916304066005,9,-2,82.76988833592998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.601033967474883,62.26,42.8,54,46,8.333333333333334,1,1,0,0,0,8,2,1,938,490246.01649662,-22797.56075767786,363051.9805101402,0,1734.718338759221 -297,368,620,621,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.807670757322027,8.834297504016044,55,-1,-96.04494817145672,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.851721478293458,8.98397570618152,54.8,31.92,57.16,56.15,1.666666666666667,1,1,0,0,7,6,4,1,289.5,2012813.339704814,843999.860627032,387044.6010287276,0,4535.79659875998 -297,368,621,620,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.223220042420574,5.816370759034653,55,1,-18.08211145878276,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.046393846961545,5.793206252534689,57.16,56.15,54.8,31.92,8.333333333333334,1,1,0,0,0,6,4,1,289.5,2012813.339704814,843999.860627032,387044.6010287276,0,4535.79659875998 -298,369,622,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-818.3009950594743,0,3,3,2019,9,0,0,21,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.857621296610514,0,53.14,48.42,-9,-9,10,1,1,0,0,8,12,2,1,498,0,0,0,0,779.0250807367602 -299,370,623,624,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.889944326031154,8.776881122791639,0,6,4,-10.09761919738329,-9,3,2,2019,9,0,40,0,1,1,0,21.49156046420261,21.49156046420261,0,0,0,0,0,1,1,0,0,0,54,54,61.12,51.57,8,1,1,0,0,1,4,4,0,463.6666666666667,371278.0590844254,286935.877423777,0,0,4008.746218781709 -299,370,624,623,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,7.626192347487935,7.159252204686248,0,16,-4,75.34495497415321,0,3,3,2019,7,0,25,24,1,0,0,7.487502800154707,7.487502800154707,0,0,0,0,0,1,1,0,0,0,61.12,51.57,54,54,8.333333333333334,1,1,0,0,9,4,4,0,463.6666666666667,371278.0590844254,286935.877423777,0,0,4008.746218781709 -299,370,625,-9,624,623,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.844919801995,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,4,4,0,463.6666666666667,371278.0590844254,286935.877423777,0,0,4008.746218781709 -300,371,626,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.970814654939192,9.392091879502258,0,0,0,-976.8750866042698,-9,2,2,2019,20,7,65,0,1,7,0,13.7188613255693,13.7188613255693,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,5,1,1,0,0,8,8,5,0,2735,0,0,0,0,2977.184781393123 -301,372,627,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,0,0,0,0,0,-979.7516911647368,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.23,57.2,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,946,-100530.2515005559,0,0,0,626.141881292599 -301,373,628,-9,627,-9,1,0,19,0,0,0,2,2,1,0,3,5.435900911589912,5.468529400908982,0,0,0,-975.495441263953,-9,3,-9,2019,2,0,6,0,1,0,1,5.322939665040465,5.322939665040465,0,0,0,0,2,1,1,0,0,0,57.18,48.06,-9,-9,8.333333333333334,4,2,0,0,1,2,2,0,131,-16245.76416684125,0,0,0,132.4836046388297 -302,374,629,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,7.336046165116737,7.570819992080156,0,0,0,-895.7555660499506,0,-9,-9,2019,12,0,30,35,1,0,0,7.356719170022418,7.356719170022418,0,0,0,0,0,0,0,0,0,0,52.21,59.91,-9,-9,8.333333333333334,2,3,0,0,11,2,3,0,543,203225.4488733014,3484.752933333713,0,0,1536.112792290831 -303,375,630,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.808563778640162,5.743521734480325,0,0,-989.1143245483966,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.832655041819754,5.681092054268946,62.39,56.71,-9,-9,0,1,1,0,0,5,1,2,1,295,200173.0531064303,35826.40670991613,111420.096237797,0,444.8987169654899 -304,376,631,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.959205656154138,8.845099891301585,0,0,0,-1010.740914987897,0,3,3,2019,23,11,37,37,1,11,0,24.16630522573779,24.16630522573779,0,0,0,0,0,0,0,0,.8513974496517429,0,41.93,44.38,-9,-9,5,1,1,0,0,4,1,5,1,825,119336.0771453131,149078.7897216718,0,0,3122.875624180233 -305,377,632,635,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.236665539604855,8.228122192014277,0,10,-6,-32.88018653231847,0,2,-9,2019,6,0,22,33,1,0,0,21.75429107643288,21.75429107643288,0,0,0,0,0,1,1,0,.3090672621600702,0,48.87,58.55,52,55,8.333333333333334,1,1,0,0,10,7,4,1,1205.75,173957.8504817815,27020.86663859254,379697.6017303025,207597.3346044888,3231.675203325322 -305,377,633,-9,632,635,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.793355702738,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1205.75,173957.8504817815,27020.86663859254,379697.6017303025,207597.3346044888,3231.675203325322 -305,377,634,-9,632,635,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.1562694195285,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1205.75,173957.8504817815,27020.86663859254,379697.6017303025,207597.3346044888,3231.675203325322 -305,377,635,632,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.553465346748796,8.336226321245199,0,7,6,98.40955890605655,0,-9,-9,2019,9,0,40,45,1,1,0,11.24577904030342,11.24577904030342,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,7,4,1,1205.75,173957.8504817815,27020.86663859254,379697.6017303025,207597.3346044888,3231.675203325322 -306,378,636,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.551099080412904,8.325132382462545,0,0,0,-1009.272829634104,0,2,2,2019,11,0,36,36,1,0,0,15.89960482897525,15.89960482897525,0,0,0,0,0,0,0,0,5.207154668728061,0,44.43,56.74,-9,-9,6.666666666666667,3,4,0,0,9,8,4,1,391,-112273.630239236,0,0,0,1795.924473664579 -307,379,637,638,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,43,3,58.62004385410737,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,48.28,60.18,10,1,1,0,0,0,8,3,1,589.5,1298995.61284022,548596.5714179239,538601.3046062388,0,2115.119519083549 -307,379,638,637,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.456487650634383,7.661986452445725,44,-3,10.20454625379702,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.856509644352216,48.28,60.18,62.1,51.16,10,1,1,0,0,8,8,3,1,589.5,1298995.61284022,548596.5714179239,538601.3046062388,0,2115.119519083549 -308,380,639,640,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.225666679365809,6.418097966715514,8,-4,-102.8224287978766,0,-9,-9,2019,13,2,0,12,4,2,0,0,0,0,0,0,0,0,1,1,0,8.30872420318827,6.388379339708664,43.14,61.33,52.65,54.32,8.333333333333334,1,1,0,0,9,4,3,1,606.5,977087.6324380459,686343.6504459855,195774.1656850288,0,11245.91981780088 -308,380,640,639,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.426710592169165,7.7099609161414,8,4,-32.38282652826988,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.990079370935877,7.75236840175927,52.65,54.32,43.14,61.33,6.666666666666667,1,1,0,0,2,4,3,1,606.5,977087.6324380459,686343.6504459855,195774.1656850288,0,11245.91981780088 -309,381,641,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.857623064847014,7.771533160309934,0,0,0,-848.7286978151515,0,2,2,2019,25,11,37,37,1,11,0,9.214366692170376,9.214366692170376,0,0,0,0,7,0,0,0,.1590096112470448,0,40.41,33.07,-9,-9,3.333333333333333,1,1,0,0,9,12,3,0,1148,69798.7001141792,72168.60549111871,0,0,1501.024626601752 -310,382,642,644,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,0,0,0,7,-5,8.848911410916305,0,-9,-9,2019,16,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,45.71,42.65,41.23,51.32,0,2,3,0,0,1,6,3,1,1373.666666666667,257112.149681887,128133.4721116162,69870.99717144844,47170.67789461484,1764.042288406667 -310,382,643,-9,642,644,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.175966833576,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,6,3,1,1373.666666666667,257112.149681887,128133.4721116162,69870.99717144844,47170.67789461484,1764.042288406667 -310,382,644,642,-9,645,1,1,35,1,1,0,1,1,-9,0,3,8.066221104695607,8.442674052146588,0,7,5,-64.34119966147853,0,3,3,2019,12,0,37,38,1,0,0,13.20059924441487,13.20059924441487,0,0,0,0,7,1,1,0,0,0,41.23,51.32,45.71,42.65,5,2,3,0,0,9,6,3,1,1373.666666666667,257112.149681887,128133.4721116162,69870.99717144844,47170.67789461484,1764.042288406667 -310,383,645,-9,-9,-9,1,1,77,1,1,0,3,3,-9,0,3,0,5.59534990389678,5.545831739353433,0,0,-960.2308070843048,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.451146383886286,53,46,-9,-9,7,2,3,0,0,0,6,2,1,1365,258245.5326768209,0,118211.8741409958,0,729.6508717515801 -311,384,646,647,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.16006870791389,8.895890205387179,0,9,-4,-91.36761003053803,0,2,2,2019,21,9,35,35,1,9,0,27.53107135032766,27.53107135032766,0,0,0,0,0,0,0,0,6.512686418274373,0,40.42,61.41,46.1,59.99,6.666666666666667,1,1,0,0,9,8,5,1,399,2208324.407057422,1421911.066821606,881402.1053306955,312873.0908808357,5028.64327484195 -311,384,647,646,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.597175904946507,8.659819442833504,0,9,4,52.33001739023397,0,2,2,2019,15,4,37,36,1,4,0,19.12159249095769,19.12159249095769,0,0,0,0,0,0,0,0,5.795457486615297,0,46.1,59.99,40.42,61.41,6.666666666666667,1,1,0,0,5,8,5,1,399,2208324.407057422,1421911.066821606,881402.1053306955,312873.0908808357,5028.64327484195 -312,385,648,649,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,4,-3,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,2,1,1,1318,96206.45017561725,0,0,0,470.0905128731501 -312,385,649,648,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,4,3,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,24.07165470073591,0,0,1,1,0,0,0,55,45,52,45,8,2,3,0,0,0,2,1,1,1318,96206.45017561725,0,0,0,470.0905128731501 -313,386,650,-9,651,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.656875262554,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,2,0,515,7867.339662723079,-31187.39632763669,0,0,2423.958138489453 -313,386,651,-9,-9,-9,1,0,34,0,4,0,2,2,-9,0,2,7.056672337794566,7.571978704788289,6.201997666764493,0,0,-1027.43898489608,0,2,2,2019,14,3,16,26,1,3,0,8.371020819330873,8.371020819330873,0,0,0,0,14.5,1,1,0,5.510258502719264,0,42.8,38.88,-9,-9,6.666666666666667,1,1,0,0,1,11,2,0,515,7867.339662723079,-31187.39632763669,0,0,2423.958138489453 -313,386,652,-9,651,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.0073899758883,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,2,0,515,7867.339662723079,-31187.39632763669,0,0,2423.958138489453 -314,387,653,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.771572540467296,8.017585711825289,0,0,0,-982.9863376320473,0,3,3,2019,13,1,38,37,1,1,1,9.319603314089061,9.319603314089061,0,0,0,0,0,0,0,0,0,0,37.22,57.27,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,792,-1329.163680283259,0,0,0,440.4582341495743 -315,388,654,655,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,61,-2,0,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,57.66,26.31,54.14,38.87,6.666666666666667,1,1,0,0,0,5,1,1,703.5,225443.3138208432,-37644.88081561225,160610.675770752,0,1272.226457796059 -315,388,655,654,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,61,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.14,38.87,57.66,26.31,8.333333333333334,1,1,0,0,0,5,1,1,703.5,225443.3138208432,-37644.88081561225,160610.675770752,0,1272.226457796059 -316,389,656,-9,659,657,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.0268863296166,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,9,2,1,444,84272.78709843637,85950.84434076943,0,0,1179.98173365711 -316,389,657,659,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,6.100736331784303,6.250228225172515,0,13,-4,69.42386112743017,0,1,1,2019,10,0,40,42,1,1,0,1.392364175272162,1.392364175272162,0,0,0,0,0,1,1,0,0,0,50,56,57.06,57.76,7,1,1,0,0,1,9,2,1,444,84272.78709843637,85950.84434076943,0,0,1179.98173365711 -316,389,658,-9,659,657,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.7557663920242,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,2,1,444,84272.78709843637,85950.84434076943,0,0,1179.98173365711 -316,389,659,657,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,7.405756676306059,7.448275548846784,0,13,4,159.9077243682096,0,2,2,2019,7,0,24,25,1,0,0,8.232885318766515,8.232885318766515,0,0,0,0,0,1,1,0,.5857114527360132,0,57.06,57.76,50,56,10,1,1,0,0,4,9,2,1,444,84272.78709843637,85950.84434076943,0,0,1179.98173365711 -317,390,660,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.341702737147034,6.72179568832536,0,0,-950.2281487113298,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.482946082936713,6.898311408836067,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,2407,497627.4841727987,180774.1159336933,150172.0134698417,0,1320.298439608936 -318,391,661,662,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,1,-2,122.2825559411822,-9,-9,-9,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.516216867160454,0,57.16,56.15,46.31,56.45,10,2,3,0,0,0,8,4,1,579.5,1489990.346497664,1085439.175386328,404679.4701142205,0,1231.928468616828 -318,391,662,661,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.27495681377054,8.571075783338594,0,24,2,40.60870752769046,-9,-9,-9,2019,1,0,25,0,1,0,0,19.03991768034622,19.03991768034622,0,0,0,0,0,0,0,0,0,0,46.31,56.45,57.16,56.15,8.333333333333334,2,3,0,0,9,8,4,1,579.5,1489990.346497664,1085439.175386328,404679.4701142205,0,1231.928468616828 -318,392,663,-9,661,662,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.8501932874914,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,4.94200409838086,0,51.64,55.4,-9,-9,10,2,3,1,0,0,8,1,1,153,0,0,0,0,874.1525157555764 -318,393,664,-9,661,662,1,1,26,0,0,0,1,1,-9,0,4,8.315937962966055,8.207349260825932,0,0,0,-1042.092010499974,-9,3,3,2019,17,5,39,0,1,5,1,13.33410945686247,13.33410945686247,0,0,0,0,0,0,0,0,0,0,45.5,54.92,-9,-9,6.666666666666667,2,3,0,0,6,8,4,1,1437,38391.38272871467,114405.5758774976,0,0,1697.614632526918 -319,394,665,-9,666,667,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-972.1481344835034,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,295.5,120241.6549727602,-5702.534926383534,149396.2616432658,81759.3169039358,2717.76336995967 -319,394,666,667,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.609912062041669,7.249336820206404,0,17,2,-90.67554112367554,0,3,3,2019,11,1,26,0,1,1,0,7.351749106748677,7.351749106748677,0,0,0,0,0,1,1,0,0,0,55.73,53.98,54.2,57.49,3.333333333333333,1,1,0,0,10,5,4,1,295.5,120241.6549727602,-5702.534926383534,149396.2616432658,81759.3169039358,2717.76336995967 -319,394,667,666,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.312673836706681,8.451440150228462,0,17,-2,26.31884418231427,0,2,3,2019,13,3,50,45,1,3,0,10.60790687941955,10.60790687941955,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.73,53.98,6.666666666666667,1,1,0,0,10,5,4,1,295.5,120241.6549727602,-5702.534926383534,149396.2616432658,81759.3169039358,2717.76336995967 -319,394,668,-9,666,667,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.6367620372356,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,5,4,1,295.5,120241.6549727602,-5702.534926383534,149396.2616432658,81759.3169039358,2717.76336995967 -320,395,669,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.867294279676009,6.879008149013733,0,0,-994.6297534318694,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.27857695555508,7.020050792302454,56.02,44.25,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,2395,251850.3786842452,1466.149507402581,94172.42465808071,0,1278.635984261525 -321,396,670,673,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.356194638822396,8.039246916153449,0,31,3,78.59652975900015,-9,3,3,2019,12,1,55,0,1,1,0,9.239063358122504,9.239063358122504,0,0,0,0,0,1,1,0,3.893687037129746,0,40.4,40.66,49.17,58.56,5,1,1,0,0,13,4,3,1,1142,1331701.237740857,780275.3782606897,372104.9515869502,0,3169.187807753621 -321,396,671,-9,673,670,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.984494242077,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1142,1331701.237740857,780275.3782606897,372104.9515869502,0,3169.187807753621 -321,396,672,-9,673,670,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.0682029383688,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,3,1,1142,1331701.237740857,780275.3782606897,372104.9515869502,0,3169.187807753621 -321,396,673,670,-9,-9,1,0,48,0,2,0,3,3,-9,1,5,0,0,0,31,-3,-109.8516734148886,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,1.319349152547427,0,49.17,58.56,40.4,40.66,8.333333333333334,1,1,0,0,2,4,3,1,1142,1331701.237740857,780275.3782606897,372104.9515869502,0,3169.187807753621 -321,397,674,-9,673,670,1,0,22,0,2,0,2,2,-9,0,4,7.961039577223101,8.019118853929831,0,0,0,-1074.724694233455,0,3,3,2019,17,5,75,42,1,5,1,3.661725738783498,3.661725738783498,0,0,0,0,0,1,1,0,0,0,29.84,60.48,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,82,89048.54832288661,111985.5440675119,0,0,772.2157265920511 -322,398,675,676,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,8,-7,38.89696327914679,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.263366123458185,0,43.49,43.6,44.57,46.8,8.333333333333334,2,3,0,0,0,4,4,1,423,1797454.639865493,1062236.735548008,364999.8310729124,0,3956.174120148831 -322,398,676,675,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.435401788605413,8.539635558561912,52,7,-75.14121889488626,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.326134128274024,8.916410781677612,44.57,46.8,43.49,43.6,8.333333333333334,2,3,0,0,8,4,4,1,423,1797454.639865493,1062236.735548008,364999.8310729124,0,3956.174120148831 -323,399,677,-9,678,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.7816063490403,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,317.5,-76728.03619118396,-13629.11140690616,0,0,1769.576124282331 -323,399,678,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.918478738264968,6.751646932236178,0,0,0,-933.7088265450296,0,3,3,2019,10,0,16,16,1,0,0,8.883662006278042,8.883662006278042,0,0,0,0,14.5,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,1,3,9,2,0,317.5,-76728.03619118396,-13629.11140690616,0,0,1769.576124282331 -324,400,679,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-983.6137682604252,-9,2,2,2019,31,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.9,21.84,-9,-9,0,1,1,0,1,1,2,1,0,967,-10789.22786349624,0,0,0,1717.387569244911 -325,401,680,681,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.626049842412808,8.490199656939515,0,37,1,-41.53055247322802,0,3,2,2019,7,0,46,44,1,0,0,12.87448253198437,12.87448253198437,0,0,0,0,2,1,1,0,0,0,49.46,56.91,48.83,14.54,8.333333333333334,1,1,0,0,13,11,4,1,3373.5,762276.3497070917,641904.0826136712,102728.3637225475,0,1675.44067666807 -325,401,681,680,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,37,-1,72.66827292459882,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.83,14.54,49.46,56.91,6.666666666666667,1,1,0,0,7,11,4,1,3373.5,762276.3497070917,641904.0826136712,102728.3637225475,0,1675.44067666807 -325,402,682,-9,681,680,1,0,31,0,0,0,1,1,-9,1,2,7.511147521443727,7.421428894743266,0,0,0,-1082.190912210889,0,2,2,2019,20,5,25,0,1,5,1,6.462869671657214,6.462869671657214,0,0,0,0,0,1,1,0,0,0,28.72,46.89,-9,-9,5,1,1,0,0,2,11,3,1,913,-970.0123292001108,28782.40217083128,0,0,1267.948567627561 -326,403,683,684,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.98885701833267,7.539617542626052,6,-1,-30.12983456642751,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.159311351942996,7.605385023248777,48.28,60.18,49.01,39.5,8.333333333333334,1,1,0,0,0,2,3,1,439,714906.9190620373,455869.0301109685,229221.8058170717,0,2610.311400122522 -326,403,684,683,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.52503783863995,6.831467439887412,6,1,147.8302620715716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.82954546710052,6.716890185745122,49.01,39.5,48.28,60.18,8.333333333333334,1,1,0,0,0,2,3,1,439,714906.9190620373,455869.0301109685,229221.8058170717,0,2610.311400122522 -327,404,685,-9,687,686,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-874.2128775520375,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,655.75,4236961.741432901,2425023.601754945,1984718.640996165,412300.8954908402,49403.09808589016 -327,404,686,687,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,0,0,0,21,1,-57.99220694120702,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.57804370801875,0,54.1,59.11,54.2,57.49,10,1,1,0,0,6,9,5,1,655.75,4236961.741432901,2425023.601754945,1984718.640996165,412300.8954908402,49403.09808589016 -327,404,687,686,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.62461388136056,9.547881737277535,0,21,-1,57.2877209196679,0,2,3,2019,6,0,55,50,1,0,0,31.03260151434661,31.03260151434661,0,0,0,0,0,0,0,0,7.93825227630878,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,7,9,5,1,655.75,4236961.741432901,2425023.601754945,1984718.640996165,412300.8954908402,49403.09808589016 -327,404,688,-9,687,686,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-906.2994259204764,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,655.75,4236961.741432901,2425023.601754945,1984718.640996165,412300.8954908402,49403.09808589016 -328,405,689,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,4,0,0,0,0,0,-921.8427669358657,0,3,2,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.708821670808834,0,59.53,56.44,-9,-9,10,1,1,0,0,0,7,1,0,315,53815.29511154686,0,0,0,1471.385111008948 -329,406,690,691,-9,-9,1,1,32,0,2,0,2,2,-9,1,3,6.813263579540349,6.669931059529563,0,5,-6,4.320688159010094,0,-9,-9,2019,11,0,20,15,1,0,0,4.670575637626761,4.670575637626761,0,0,0,0,27,1,1,0,0,0,46.76,51.4,46.44,59.62,5,1,1,0,0,4,10,3,0,1389.333333333333,61263.15670402426,-1991.54209883911,153682.0124050307,143935.1588074849,3185.971323585072 -329,406,691,690,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.885263028496452,8.192560521360726,5.854800894978327,5,6,-15.78187246728849,0,-9,-9,2019,8,0,30,30,1,0,0,14.39031631351743,14.39031631351743,0,0,0,0,27,1,1,0,5.991289937810551,0,46.44,59.62,46.76,51.4,6.666666666666667,1,1,0,0,2,10,3,0,1389.333333333333,61263.15670402426,-1991.54209883911,153682.0124050307,143935.1588074849,3185.971323585072 -329,406,692,-9,691,690,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.971584339284,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,1389.333333333333,61263.15670402426,-1991.54209883911,153682.0124050307,143935.1588074849,3185.971323585072 -330,407,693,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.056040632908598,7.418878504998406,7.184408226903645,0,0,-1090.10553671514,0,3,2,2019,7,0,20,20,1,0,0,2.73705874493679,2.73705874493679,0,0,0,0,0,1,1,0,3.530486347484515,7.138479450926124,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,12,8,3,1,214,958902.298060613,0,651260.7664328357,0,1274.148547833848 -331,408,694,-9,-9,-9,1,0,23,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1022.847453464286,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,2,1,0,4451,-5255.572130686763,0,0,0,537.3885091414702 -332,409,695,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,5.619841470867273,5.539780517735402,0,0,-984.9345131625267,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,13.25794350970258,21.23125499407765,141.3543435031623,0,1,1,0,0,5.28764080674992,56,44,-9,-9,8,1,1,0,0,0,10,2,1,363,473719.0574325047,41245.19661262028,348101.1945452554,0,1530.301607574788 -333,410,696,697,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,30,0,36.70644933654447,0,3,2,2019,12,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,1.182922089078144,0,43.85,34.28,34.16,49.23,8.333333333333334,1,1,0,0,12,6,5,1,697.5,390594.9945250381,359412.9396881244,122199.8092332582,18296.62096001116,5777.594398426087 -333,410,697,696,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.820307481607323,9.781539667301427,0,30,0,130.8642519025395,0,3,3,2019,18,7,43,85,1,7,0,44.4352056796257,44.4352056796257,0,0,0,0,0,0,0,0,0,0,34.16,49.23,43.85,34.28,8.333333333333334,1,1,0,0,13,6,5,1,697.5,390594.9945250381,359412.9396881244,122199.8092332582,18296.62096001116,5777.594398426087 -333,411,698,-9,696,697,1,1,29,0,0,0,2,2,-9,0,4,8.701166597655893,8.380103556087043,0,0,0,-1033.41158871444,0,1,1,2019,12,0,20,48,1,0,1,28.12945477484284,28.12945477484284,0,0,0,0,27,0,0,0,0,0,43.44,58.7,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,777,53877.70432568702,-8650.017892530015,0,0,2596.996702643778 -333,412,699,-9,696,697,1,1,23,0,0,0,1,1,1,0,5,7.885378453580377,7.938688735143322,0,0,0,-978.8151495616496,-9,2,1,2019,12,0,40,0,1,0,1,6.98474358675263,6.98474358675263,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,397,56774.01422596446,0,0,0,1427.318622227469 -333,413,700,-9,696,697,1,1,21,0,0,0,2,2,-9,0,5,7.88249791951762,7.901026682556786,0,0,0,-989.9654345309013,0,2,1,2019,12,0,35,0,1,0,1,8.890330976967029,8.890330976967029,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,452,-224320.7372515372,59695.10227214808,0,0,1198.843029873513 -333,414,701,-9,696,697,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-878.2960381078615,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,185,-67408.24896136641,0,0,0,0 -334,415,702,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,7.607938179007023,7.480475278230709,0,0,0,-895.8839684010654,0,2,3,2019,34,11,38,38,1,11,0,5.580085979820124,5.580085979820124,0,0,0,0,0,0,0,0,0,0,14.3,39.93,-9,-9,0,1,1,0,1,9,4,3,0,406,748014.261718219,471753.011892313,121288.7593278611,0,984.9488601497565 -335,416,703,-9,704,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.357226719453,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,4,2,-9,0,0,9,1,0,630.6666666666666,0,0,0,0,1345.316196196648 -335,416,704,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,0,0,0,0,-884.4217188005666,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,55,-9,-9,3.333333333333333,4,2,0,1,3,9,1,0,630.6666666666666,0,0,0,0,1345.316196196648 -335,416,705,-9,704,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.554019638549,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,1,0,630.6666666666666,0,0,0,0,1345.316196196648 -335,417,706,-9,704,-9,1,0,18,0,3,0,2,2,-9,0,3,7.779551292047234,7.938086153328064,0,0,0,-1058.525804902246,0,2,-9,2019,8,0,38,0,1,0,1,11.15672596211105,11.15672596211105,0,0,0,0,0,1,0,1,0,0,57.49,45.09,-9,-9,8.333333333333334,4,5,0,0,2,9,4,0,501,-129016.6733336594,-25286.85004198854,0,0,1472.056462446247 -335,417,707,-9,706,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.2921625189273,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,4,5,-9,0,0,9,4,0,501,-129016.6733336594,-25286.85004198854,0,0,1472.056462446247 -336,418,708,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1048.951857079248,0,-9,2,2019,7,0,0,42,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,3365,46020.0632622777,0,0,0,1124.723760993969 -337,419,709,710,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,7.783909309786393,8.362379184173347,7.849174110421371,7,8,-47.47130142523175,0,-9,-9,2019,11,0,37,37,1,0,0,7.155315295847276,7.155315295847276,0,0,0,0,0,0,0,0,2.546104511149088,7.917179291909514,57.06,57.76,57.33,53.46,10,1,1,0,0,8,12,5,1,192.5,601361.4589251084,696442.4623149901,126923.2548805582,94179.49328980065,3198.91182680281 -337,419,710,709,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.513785284514316,7.774866876263449,5.87230814044767,7,-8,-9.14956069474548,0,3,-9,2019,8,0,25,23,1,0,0,7.824651713742862,7.824651713742862,0,0,0,0,0,0,0,0,0,6.003122570710314,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,192.5,601361.4589251084,696442.4623149901,126923.2548805582,94179.49328980065,3198.91182680281 -338,420,711,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.575244372421897,7.950497716717928,7.307297237325328,25,23,104.8102195157448,0,2,2,2019,8,0,9,9,1,0,0,21.79108099200774,21.79108099200774,0,0,0,0,0,1,1,0,6.391193782455896,6.779701066821784,48.28,60.18,52,55,8.333333333333334,1,1,0,0,11,9,3,0,1005,681694.061948614,287942.4834604767,426982.8667080166,0,1683.473305641051 -339,421,712,-9,714,713,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1055.756104577683,-9,2,1,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.94,60.48,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,816.3333333333334,1071198.606614004,571413.1387467212,439451.1086654269,163254.7580312657,5400.341531669868 -339,421,713,714,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.046483356008187,9.395511644777867,0,6,-3,82.39568210701319,0,3,3,2019,15,3,36,36,1,3,0,33.1733594699427,33.1733594699427,0,0,0,0,0,1,1,0,0,0,41.62,60.42,49.14,41.36,8.333333333333334,1,1,0,0,7,13,5,1,816.3333333333334,1071198.606614004,571413.1387467212,439451.1086654269,163254.7580312657,5400.341531669868 -339,421,714,713,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.694218089717946,8.779800889600461,0,6,3,38.13033584428746,0,3,2,2019,9,1,36,36,1,1,0,19.52859834239557,19.52859834239557,0,0,0,0,0,1,1,0,0,0,49.14,41.36,41.62,60.42,8.333333333333334,1,1,0,0,7,13,5,1,816.3333333333334,1071198.606614004,571413.1387467212,439451.1086654269,163254.7580312657,5400.341531669868 -340,422,715,-9,719,716,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.180475572509,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1004.4,597523.8868041498,0,635052.1565088301,49334.37024316691,4478.463868713715 -340,422,716,719,-9,-9,1,1,52,1,3,0,2,2,-9,0,4,8.919418555367789,9.255547422075551,0,7,16,-131.881526085842,0,3,3,2019,9,0,40,50,1,0,0,26.47547220352636,26.47547220352636,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,10,1,1,0,0,7,9,4,1,1004.4,597523.8868041498,0,635052.1565088301,49334.37024316691,4478.463868713715 -340,422,717,-9,719,716,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.444188731934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,1004.4,597523.8868041498,0,635052.1565088301,49334.37024316691,4478.463868713715 -340,422,718,-9,719,716,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-965.444806465361,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1004.4,597523.8868041498,0,635052.1565088301,49334.37024316691,4478.463868713715 -340,422,719,716,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,7.418751204763579,7.50176135594884,0,14,-16,-100.582615830066,0,2,2,2019,11,0,24,20,1,0,0,6.499006246509141,6.499006246509141,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,4,9,4,1,1004.4,597523.8868041498,0,635052.1565088301,49334.37024316691,4478.463868713715 -341,423,720,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.102989001559357,7.051787753400871,0,0,-925.1198946922045,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.451540432139105,6.939232540742609,55.71,37.76,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,263,278347.406231816,120124.8291992429,0,0,2816.459312170756 -342,424,721,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.022376982347169,4.80355875902509,0,0,-1009.166928743389,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.130458507836658,4.820023521167358,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,596,156693.6516005648,3235.767116608313,267815.7584684262,0,304.1395807566762 -343,425,722,723,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.245636672776323,9.335355308514639,0,7,-1,51.17001869392526,0,1,1,2019,8,0,36,35,1,0,0,37.43667194805934,37.43667194805934,0,0,0,0,0,0,0,0,4.953508951764623,0,46.88,60.96,58.05,54.52,8.333333333333334,1,1,0,0,9,6,5,1,1815,1350367.057460565,1052841.693729993,301979.7697442876,9247.370510796038,12720.86084106363 -343,425,723,722,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.820814378757905,9.838901732268653,0,35,1,77.15363716946246,0,2,3,2019,8,0,57,58,1,0,0,37.29157977793385,37.29157977793385,0,0,0,0,0,0,0,0,5.279428185279663,0,58.05,54.52,46.88,60.96,8.333333333333334,1,1,0,0,7,6,5,1,1815,1350367.057460565,1052841.693729993,301979.7697442876,9247.370510796038,12720.86084106363 -344,426,724,725,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.818692237929087,7.792606413881944,0,15,1,12.99811164804934,0,3,1,2019,6,0,8,24,1,0,0,44.80892678274429,44.80892678274429,0,0,0,0,0,1,1,0,0,0,50.62,55.06,46.71,47.23,10,2,3,0,0,3,7,4,1,1962.25,1457011.721170689,251592.209736696,364560.8358637735,179012.509228598,3709.836609077212 -344,426,725,724,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.596133105228247,8.649091091721022,0,15,-1,-47.44000211570687,0,1,1,2019,19,7,50,50,1,7,0,12.90850435716458,12.90850435716458,0,0,0,0,0,1,1,0,0,0,46.71,47.23,50.62,55.06,6.666666666666667,2,3,0,0,10,7,4,1,1962.25,1457011.721170689,251592.209736696,364560.8358637735,179012.509228598,3709.836609077212 -344,426,726,-9,724,725,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.596993222562,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,7,4,1,1962.25,1457011.721170689,251592.209736696,364560.8358637735,179012.509228598,3709.836609077212 -344,426,727,-9,724,725,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.5853717948651,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,4,1,1962.25,1457011.721170689,251592.209736696,364560.8358637735,179012.509228598,3709.836609077212 -345,427,728,729,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.003648203780767,8.342398857389666,0,36,-1,-9.16984795700848,0,-9,-9,2019,12,0,44,47,1,0,0,11.1610878905599,11.1610878905599,0,0,0,0,0,0,0,0,0,0,52.78,47.24,46,39,8.333333333333334,1,1,0,0,9,6,5,1,954.5,819938.4478787694,531919.5477578571,228574.1618080352,98543.52020813993,4518.17349324733 -345,427,729,728,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,9.131332322617721,9.105713087528791,0,36,1,15.86515359618503,0,3,2,2019,12,0,45,41,1,0,0,24.78274732112324,24.78274732112324,0,0,0,0,0,0,0,0,0,0,46,39,52.78,47.24,3.333333333333333,1,1,0,0,9,6,5,1,954.5,819938.4478787694,531919.5477578571,228574.1618080352,98543.52020813993,4518.17349324733 -345,428,730,-9,728,729,1,1,23,0,0,0,2,2,-9,0,3,7.837350238120542,7.80005068593383,0,0,0,-988.1205518526933,0,3,2,2019,14,3,39,46,1,3,1,7.681084380271909,7.681084380271909,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,78,-1215.807450488557,0,0,0,452.2586664190458 -346,429,731,732,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,34,3,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.51,31.85,45.48,38.91,5,1,1,0,0,0,4,1,0,822,186784.7924661031,86773.85360417173,111952.9659886453,63389.37829469273,1767.797776139515 -346,429,732,731,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,34,-3,0,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,45.48,38.91,57.51,31.85,8.333333333333334,1,1,0,0,0,4,1,0,822,186784.7924661031,86773.85360417173,111952.9659886453,63389.37829469273,1767.797776139515 -346,430,733,-9,732,731,1,0,20,0,0,0,2,2,-9,0,4,8.098374110827029,7.911475646887393,0,0,0,-1074.705949723393,0,2,3,2019,12,2,38,38,1,2,1,8.338207518778438,8.338207518778438,0,0,0,0,0,1,1,0,.6457243454609571,0,33.49,64.26000000000001,-9,-9,8.333333333333334,1,1,0,0,3,4,4,0,588,6234.378971860844,0,0,0,545.1735396833961 -347,431,734,735,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.500079128868043,8.032933624243807,0,2,5,-4.266145949359872,-9,-9,-9,2019,10,0,40,0,1,1,0,12.61131310067459,12.61131310067459,0,0,0,0,0,0,0,0,0,0,49,58,54.2,57.49,7,4,1,0,0,1,7,5,1,406.5,-48336.69244593364,2400.398420065707,0,0,3509.518563151377 -347,431,735,734,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.218514564740737,8.07500428977664,0,2,-5,73.09894882569819,0,2,1,2019,6,1,37,50,1,1,0,12.41335773662862,12.41335773662862,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49,58,10,1,1,0,0,7,7,5,1,406.5,-48336.69244593364,2400.398420065707,0,0,3509.518563151377 -348,432,736,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.6015635197383,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.36411980283785,0,27.99533914558064,0,1,1,0,4.16611824300591,0,54.52,46.77,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,222,111132.9151930485,0,0,0,1375.564442727522 -349,433,737,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,9.440446414700554,9.498017228884226,0,0,0,-923.2122359640924,0,2,2,2019,6,0,38,-9,1,0,0,40.24531060487225,40.24531060487225,0,0,0,0,0,0,0,0,7.023509343977759,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,10,5,1,905,229862.7147230107,-35622.0571516027,70084.52824706052,31643.77092358615,4558.531639021479 -349,434,738,-9,737,-9,1,1,23,0,0,0,2,2,-9,0,5,7.477777137923617,7.09559585191252,0,0,0,-1032.080388996231,0,3,-9,2019,7,0,40,40,1,0,1,5.204456154483818,5.204456154483818,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,277,93004.38296990858,-77884.50593021925,0,0,1232.330071390219 -349,435,739,-9,737,-9,1,0,19,0,0,0,2,2,-9,0,3,5.64829134056121,6.249681837715832,0,0,0,-1031.417676215699,0,3,-9,2019,8,0,54,-9,1,0,1,.58410128812981,.58410128812981,0,0,0,0,0,0,0,0,0,0,61.44,40.51,-9,-9,10,1,1,0,0,12,10,2,1,239,72790.2719858512,0,0,0,-325.4928890644378 -350,436,740,741,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.415624947096676,8.265196812505071,0,2,-4,-117.0560804889603,0,3,2,2019,14,4,35,35,1,4,0,14.39662089863231,14.39662089863231,0,0,0,0,0,0,0,0,1.843158999253229,0,43.32,63.94,54.37,44.27,8.333333333333334,1,1,0,0,8,13,5,1,689.5,328778.585808458,63664.22696905586,285210.2831797909,147962.5630897238,3371.786348115574 -350,436,741,740,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.485333838615631,8.3033537610927,0,2,4,-53.13499535762908,0,-9,-9,2019,6,0,38,37,1,0,0,16.27935353937259,16.27935353937259,0,0,0,0,0,0,0,0,1.725656229579475,0,54.37,44.27,43.32,63.94,8.333333333333334,1,1,0,0,4,13,5,1,689.5,328778.585808458,63664.22696905586,285210.2831797909,147962.5630897238,3371.786348115574 -351,437,742,743,-9,-9,1,0,36,0,3,0,3,3,-9,0,5,0,0,0,10,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.85,52.43,10,1,1,0,1,0,2,1,0,603.4,30794.16093601228,0,0,0,1705.86822543009 -351,437,743,742,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,0,0,0,10,0,0,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,52.43,57.06,57.76,8.333333333333334,1,1,1,0,0,2,1,0,603.4,30794.16093601228,0,0,0,1705.86822543009 -351,437,744,-9,742,743,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-923.125912283063,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.59,38.76,-9,-9,10,1,1,0,0,0,2,1,0,603.4,30794.16093601228,0,0,0,1705.86822543009 -351,437,745,-9,742,743,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.0829763174255,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,603.4,30794.16093601228,0,0,0,1705.86822543009 -351,437,746,-9,742,743,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1146.878460640462,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,1,0,603.4,30794.16093601228,0,0,0,1705.86822543009 -352,438,747,748,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.812950932961165,7.669906833969796,0,9,-1,23.62098169665477,0,3,2,2019,21,9,27,29,1,9,0,10.08708020323902,10.08708020323902,0,0,0,0,0,0,0,0,0,0,40.14,24.96,48.44,42.36,3.333333333333333,1,1,0,0,10,9,5,1,197,1506565.936728155,729476.3123223509,528573.9931089666,0,3062.320068179728 -352,438,748,747,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.40212888452813,8.688868446616706,4.427801736100405,9,1,-59.00799677695272,0,3,3,2019,10,0,45,51,1,1,0,11.72205617488778,11.72205617488778,0,0,0,0,0,0,0,0,0,4.28719583129317,48.44,42.36,40.14,24.96,5,1,1,0,0,10,9,5,1,197,1506565.936728155,729476.3123223509,528573.9931089666,0,3062.320068179728 -353,439,749,751,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.386542662397502,7.19021682808069,0,7,-3,105.3450587514266,0,2,3,2019,10,1,28,28,1,1,0,7.672183015672916,7.672183015672916,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,9,9,3,0,1093,876499.5517221182,-26346.35585699869,521588.7545272064,24600.50251197303,1789.388775772663 -353,439,750,-9,749,751,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.933690789833,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1093,876499.5517221182,-26346.35585699869,521588.7545272064,24600.50251197303,1789.388775772663 -353,439,751,749,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,7.535178758801637,7.729355257833873,0,7,3,-5.651734995993496,0,-9,-9,2019,5,0,48,40,1,0,0,5.108647385878089,5.108647385878089,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,10,1,1,0,0,11,9,3,0,1093,876499.5517221182,-26346.35585699869,521588.7545272064,24600.50251197303,1789.388775772663 -354,440,752,-9,756,754,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.103320577059,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,1,740.4,263903.4781947049,24241.75641839544,322932.2561635808,157191.6925328734,4086.36888576883 -354,440,753,-9,756,754,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1113.696817333413,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.953910899772045,0,59.43,58.05,-9,-9,10,1,1,0,0,0,8,3,1,740.4,263903.4781947049,24241.75641839544,322932.2561635808,157191.6925328734,4086.36888576883 -354,440,754,756,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.185142836093512,8.269417908889913,4.958705637273522,16,6,180.0766855044154,0,-9,2,2019,9,0,40,36,1,0,0,8.805624225673805,8.805624225673805,0,0,0,0,2,1,1,0,5.46039990037521,0,53.61,51.1,60.02,56.42,8.333333333333334,1,1,0,0,4,8,3,1,740.4,263903.4781947049,24241.75641839544,322932.2561635808,157191.6925328734,4086.36888576883 -354,440,755,-9,756,754,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.909123667013,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,1,740.4,263903.4781947049,24241.75641839544,322932.2561635808,157191.6925328734,4086.36888576883 -354,440,756,754,-9,-9,1,0,38,0,3,0,2,2,-9,0,5,7.521070380884545,7.415485895535903,0,4,-6,-81.76515134054598,-9,-9,-9,2019,6,0,18,0,1,0,0,8.610456049689409,8.610456049689409,0,0,0,0,0,1,1,0,7.28179184111217,0,60.02,56.42,53.61,51.1,10,1,1,0,0,9,8,3,1,740.4,263903.4781947049,24241.75641839544,322932.2561635808,157191.6925328734,4086.36888576883 -355,441,757,-9,758,759,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.402832972453,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,442.3333333333333,63588.92381264318,0,0,0,1766.281296670147 -355,441,758,759,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,0,0,0,25,-12,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49,55,50,49,7,2,3,0,0,0,8,2,0,442.3333333333333,63588.92381264318,0,0,0,1766.281296670147 -355,441,759,758,-9,-9,1,1,55,0,1,0,3,3,-9,1,3,0,0,0,25,12,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,49,55,7,2,3,0,0,0,8,2,0,442.3333333333333,63588.92381264318,0,0,0,1766.281296670147 -355,442,760,-9,758,759,1,0,23,0,1,0,2,2,-9,0,4,8.212573119753785,8.023905557941946,0,0,0,-938.9570814474952,0,3,3,2019,12,0,37,41,1,2,1,10.93971899053486,10.93971899053486,0,0,0,0,7,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,6,8,4,0,486,-45888.09943911614,3502.006140484238,0,0,1484.983119562545 -355,443,761,-9,758,759,1,0,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-1008.833405340355,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,4,8,2,0,3725,246124.7800310635,0,0,0,0 -355,444,762,-9,758,759,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-967.5286824479577,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,2,8,1,0,1344,-33857.8783468552,0,0,0,0 -356,445,763,765,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,8.06547927027208,7.824666651642234,0,23,-8,-98.14203438845007,0,-9,-9,2019,13,2,30,38,1,2,0,11.56912151985157,11.56912151985157,0,0,0,0,0,1,1,0,6.151591147654854,0,44.47,57.73,53.3,55.06,6.666666666666667,1,1,0,0,5,9,4,1,333,846594.254034359,323922.8609878217,354710.0569915819,0,4207.536467945836 -356,445,764,-9,763,765,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.4169028496757,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,333,846594.254034359,323922.8609878217,354710.0569915819,0,4207.536467945836 -356,445,765,763,-9,-9,1,1,54,0,3,0,1,1,-9,0,4,8.802394694816876,8.976179264120681,0,24,8,81.40042854551805,0,3,2,2019,11,0,55,50,1,0,0,18.9740547334743,18.9740547334743,0,0,0,0,0,1,1,0,0,0,53.3,55.06,44.47,57.73,8.333333333333334,4,2,0,0,9,9,4,1,333,846594.254034359,323922.8609878217,354710.0569915819,0,4207.536467945836 -356,445,766,-9,763,765,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-915.7490458537144,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,2,-9,0,0,9,4,1,333,846594.254034359,323922.8609878217,354710.0569915819,0,4207.536467945836 -356,445,767,-9,763,765,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.6667955603261,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,4,1,333,846594.254034359,323922.8609878217,354710.0569915819,0,4207.536467945836 -357,446,768,769,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.673261476758478,8.569135366795765,0,6,3,12.26181600174496,0,-9,-9,2019,10,0,80,65,1,0,0,7.402146043424986,7.402146043424986,0,0,0,0,0,1,1,0,0,0,46.33,55.93,62.42,37.4,5,1,1,0,0,6,4,4,1,735.25,-169392.4483694829,0,41904.31648617126,82711.52497594435,2802.745322689868 -357,446,769,768,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,5.866259185049493,6.253625113364422,0,15,-3,10.78910135420767,0,3,3,2019,10,0,8,0,1,0,0,5.307188520135752,5.307188520135752,0,0,0,0,0,1,1,0,0,0,62.42,37.4,46.33,55.93,8.333333333333334,1,1,0,0,1,4,4,1,735.25,-169392.4483694829,0,41904.31648617126,82711.52497594435,2802.745322689868 -357,446,770,-9,769,768,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.5701855004734,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,735.25,-169392.4483694829,0,41904.31648617126,82711.52497594435,2802.745322689868 -357,446,771,-9,769,768,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.174119095788,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,735.25,-169392.4483694829,0,41904.31648617126,82711.52497594435,2802.745322689868 -358,447,772,773,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.973036471600365,9.056230895347193,0,7,13,-18.61540390624126,0,2,2,2019,9,0,50,50,1,0,0,25.0408489826626,25.0408489826626,0,0,0,0,0,0,0,0,7.304843123166552,0,52.77,55.33,60.02,56.42,6.666666666666667,1,1,0,0,9,8,5,0,864.5,478825.1063022485,275875.8715228795,354796.5850873069,211798.7029830688,6162.400051472418 -358,447,773,772,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.57153106470156,8.341606995639918,0,7,-13,-79.42745529370407,0,2,1,2019,6,0,40,40,1,0,0,14.66228454633593,14.66228454633593,0,0,0,0,0,0,0,0,2.968322916109729,0,60.02,56.42,52.77,55.33,10,2,3,0,0,4,8,5,0,864.5,478825.1063022485,275875.8715228795,354796.5850873069,211798.7029830688,6162.400051472418 -359,448,774,775,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,2,-4,0,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.64,16.58,31.04,51.35,3.333333333333333,1,1,0,0,0,6,2,0,309,-85134.49247560769,0,0,0,2765.845461096699 -359,448,775,774,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,2,4,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,31.04,51.35,37.64,16.58,3.333333333333333,1,1,0,0,0,6,2,0,309,-85134.49247560769,0,0,0,2765.845461096699 -360,449,776,777,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.220398286234621,8.304814866047973,0,28,-8,83.81177364450679,-9,3,3,2019,7,0,38,0,1,0,0,10.52926943539138,10.52926943539138,0,0,0,0,2,1,1,0,5.816578332106062,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,296,978740.2298735979,737566.6927628582,243454.4473418544,0,4195.597755914036 -360,449,777,776,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.339747886865775,8.790001456390737,7.250351840465697,28,8,36.20136245915879,-9,3,2,2019,7,0,43,0,1,0,0,11.50923077758688,11.50923077758688,0,0,0,0,0,1,1,0,7.465246937481466,7.516719421709815,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,296,978740.2298735979,737566.6927628582,243454.4473418544,0,4195.597755914036 -360,450,778,-9,776,777,1,1,23,0,0,0,1,1,-9,0,3,8.376169275154739,8.139168650469014,0,0,0,-1056.372112789059,-9,2,3,2019,8,0,45,0,1,0,1,12.72931130164172,12.72931130164172,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,4,1,929,14008.54791556638,60731.64894116073,0,0,2085.202087476177 -360,451,779,-9,776,777,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-961.8477241911626,-9,2,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,2.020960657173525,0,39.5,58.86,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,374,-42179.37160505088,0,0,0,-590.1248082087367 -361,452,780,782,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.860606624861421,7.539837427553008,0,7,-3,-68.98096388460708,0,1,2,2019,7,0,30,29,1,0,0,8.831027408999365,8.831027408999365,0,0,0,0,0,1,1,0,.5877094020579285,0,56.92,47.03,52.3,51.67,10,1,1,0,0,7,11,5,1,684.6666666666666,15816.9143098185,42013.31239631343,0,0,3257.009275345456 -361,452,781,-9,780,782,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.4788268846273,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,684.6666666666666,15816.9143098185,42013.31239631343,0,0,3257.009275345456 -361,452,782,780,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,8.765745832431936,8.768754550550002,0,7,3,-40.94643909019823,0,2,2,2019,5,0,40,38,1,0,0,15.84095447622141,15.84095447622141,0,0,0,0,0,1,1,0,.2338635476827359,0,52.3,51.67,56.92,47.03,8.333333333333334,1,1,0,0,8,11,5,1,684.6666666666666,15816.9143098185,42013.31239631343,0,0,3257.009275345456 -362,453,783,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-978.5347724448075,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.14,27.03,-9,-9,0,1,1,0,0,0,11,1,1,642,82507.963772787,-57460.99955966829,104771.5512885772,97403.96084448461,0 -363,454,784,-9,785,786,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-984.2753289376436,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,13,3,1,569.6666666666666,56367.53626812936,99144.67438548256,193538.5355076074,115757.6706160334,2583.643278796576 -363,454,785,786,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,5,-3,-188.8732311378658,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,29.4,46.33,55.93,1.666666666666667,1,1,0,0,0,13,3,1,569.6666666666666,56367.53626812936,99144.67438548256,193538.5355076074,115757.6706160334,2583.643278796576 -363,454,786,785,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.230117851352095,8.240743482296395,0,5,3,66.68219691607275,0,3,3,2019,15,5,40,38,1,5,0,11.83850299337676,11.83850299337676,0,0,0,0,27,1,1,0,0,0,46.33,55.93,19.25,29.4,5,1,1,0,0,5,13,3,1,569.6666666666666,56367.53626812936,99144.67438548256,193538.5355076074,115757.6706160334,2583.643278796576 -363,455,787,-9,785,786,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-990.0499569280229,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.92,61.29,-9,-9,10,1,1,0,0,0,13,1,1,334,109493.7679583472,0,0,0,0 -364,456,788,789,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.637820453983544,8.76594686958248,0,17,-7,4.352831029765892,0,2,3,2019,7,0,38,41,1,0,0,17.72955467302224,17.72955467302224,0,0,0,0,0,0,0,0,8.449398634596184,0,53.42,52.33,58.49,31.12,8.333333333333334,1,1,0,0,9,1,5,1,564.5,491302.7922480545,74706.68737208654,401070.9795102652,0,6468.993380225473 -364,456,789,788,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.319542914084929,9.100744389954809,0,18,7,69.69072196946092,0,2,2,2019,7,0,50,50,1,0,0,19.25361815032783,19.25361815032783,0,0,0,0,0,0,0,0,4.90671332486541,0,58.49,31.12,53.42,52.33,6.666666666666667,1,1,0,0,9,1,5,1,564.5,491302.7922480545,74706.68737208654,401070.9795102652,0,6468.993380225473 -365,457,790,-9,794,793,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.531018530865,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,565,9665.393366810529,30201.25953569599,0,0,2199.498730264675 -365,457,791,-9,794,793,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.857202583966,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,565,9665.393366810529,30201.25953569599,0,0,2199.498730264675 -365,457,792,-9,794,793,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.994616636078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,565,9665.393366810529,30201.25953569599,0,0,2199.498730264675 -365,457,793,794,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.153449305607284,8.022619000195784,0,17,-6,25.77757039193743,0,3,2,2019,10,0,25,16,1,1,0,15.22301223685663,15.22301223685663,0,0,0,0,0,1,1,0,0,0,50,57,49,56,7,2,3,0,0,13,8,2,0,565,9665.393366810529,30201.25953569599,0,0,2199.498730264675 -365,457,794,793,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,17,6,-50.12312796677736,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,50,57,7,2,3,0,1,10,8,2,0,565,9665.393366810529,30201.25953569599,0,0,2199.498730264675 -366,458,795,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1070.65581746234,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,36.86,-9,-9,5,1,1,0,0,0,4,1,0,156,-82837.1865105594,0,0,0,847.6658352314512 -367,459,796,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.423354839430367,8.530447068070712,0,0,0,-1039.132558682586,0,2,2,2019,3,0,43,38,1,0,1,12.39447018593468,12.39447018593468,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1779,18766.66915902893,-6277.34171862461,0,0,1455.911521066782 -368,460,797,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,8.598850158895656,8.971135104349466,7.47277949597964,0,0,-1037.766461306505,0,3,3,2019,10,0,41,40,1,0,0,20.83519950857173,20.83519950857173,0,0,0,0,2,1,1,0,0,8.110376968379695,49.27,56.95,-9,-9,6.666666666666667,1,1,0,0,13,4,5,0,308,2185577.467528549,1337071.31990193,450026.653412967,0,4404.772855393201 -369,461,798,799,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.072292574068131,9.080624786118781,0,9,-6,-148.3833715612527,0,-9,-9,2019,21,9,46,47,1,9,0,16.23391067526004,16.23391067526004,0,0,0,0,0,0,0,0,0,0,36.78,53.77,57.86,34.11,6.666666666666667,1,1,0,0,10,11,5,1,1021.5,169251.5078904105,146325.8763279279,201758.9962340549,101520.6590320758,3253.689167791213 -369,461,799,798,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.254185933037895,8.08576296600266,0,9,6,-23.41133942957752,0,3,-9,2019,12,0,32,32,1,0,0,10.72310947146805,10.72310947146805,0,0,0,0,0,0,0,0,2.093070921621177,0,57.86,34.11,36.78,53.77,8.333333333333334,1,1,0,0,10,11,5,1,1021.5,169251.5078904105,146325.8763279279,201758.9962340549,101520.6590320758,3253.689167791213 -370,462,800,801,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,-10,0,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,27.73855869310886,0,0,1,1,0,0,0,57.48,16.73,56,44,5,1,1,0,0,0,11,2,1,727,337634.9546674437,-52524.70446016957,294777.2785309473,0,2210.7656993027 -370,462,801,800,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,22,10,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,2.115802182479946,29.96035715996302,18.64892851132842,0,1,1,0,0,0,56,44,57.48,16.73,8,1,1,0,0,0,11,2,1,727,337634.9546674437,-52524.70446016957,294777.2785309473,0,2210.7656993027 -371,463,802,803,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.73733268574451,9.490588207072545,0,6,0,-131.6406554659989,0,2,2,2019,3,0,32,28,1,0,0,58.21533580109062,58.21533580109062,0,0,0,0,0,0,0,0,0,0,52.88,56.68,51.14,52.08,8.333333333333334,1,1,0,0,10,4,5,1,402.5,180303.2911171082,92402.81840448375,206871.6138447492,164535.5324057749,8394.103114445972 -371,463,803,802,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,9.11275755963201,9.040897841979534,0,6,0,-114.5188882309695,0,-9,-9,2019,11,0,35,50,1,0,0,27.08750774868761,27.08750774868761,0,0,0,0,0,0,0,0,3.568753178595742,0,51.14,52.08,52.88,56.68,6.666666666666667,1,1,0,0,5,4,5,1,402.5,180303.2911171082,92402.81840448375,206871.6138447492,164535.5324057749,8394.103114445972 -372,464,804,-9,805,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.083004532822,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1588.5,29598.31079224728,12086.47682695873,0,0,3413.789045957462 -372,464,805,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,8.742785608390328,8.478916817838288,0,0,0,-859.8615541969156,0,2,2,2019,7,0,30,30,1,0,0,19.84222796118728,19.84222796118728,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1588.5,29598.31079224728,12086.47682695873,0,0,3413.789045957462 -372,464,806,-9,805,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.5556235486439,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1588.5,29598.31079224728,12086.47682695873,0,0,3413.789045957462 -372,464,807,-9,805,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-987.9931780605523,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,44.63,-9,-9,8.333333333333334,1,1,0,1,0,11,4,1,1588.5,29598.31079224728,12086.47682695873,0,0,3413.789045957462 -373,465,808,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.228517496018657,7.023099957653444,0,0,-1029.310124876252,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.961624056103314,6.886721240552619,60.62,43.73,-9,-9,10,1,1,0,0,0,12,3,1,645,21882.97816348303,64691.93625105181,0,0,1230.126259109206 -374,466,809,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.78873059354336,7.869193158327685,0,0,0,-953.3550127121821,0,-9,-9,2019,7,0,38,38,1,0,0,10.27520666228997,10.27520666228997,0,0,0,0,0,0,0,0,2.022931479057103,0,62.39,56.71,-9,-9,0,1,1,0,0,10,12,4,0,814,63608.50436359672,0,0,0,1261.168778848706 -375,467,810,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,5.775044839538535,5.759802677535231,0,0,-1148.928405524378,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.418788232090352,0,1,1,0,0,5.851796573639522,64,38.07,-9,-9,10,1,1,0,0,0,13,2,1,96,449851.1772698373,0,293679.0973558768,0,772.3827570305696 -376,468,811,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,8.093008719962789,7.864640994567532,0,0,0,-1116.346264401595,0,3,3,2019,6,0,39,15,1,0,0,12.88559555388255,12.88559555388255,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,10,1,1,0,0,9,12,4,1,235,99598.87808570596,132089.8057385316,0,0,2168.183503670876 -377,469,812,813,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.203577145940699,9.234941378316885,8.736908851801516,9,2,198.263723277551,0,2,2,2019,17,5,24,37,1,5,0,20.46551741682047,20.46551741682047,0,0,0,0,0,0,0,0,2.64104215554231,8.715299772854271,43.59,59.64,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,754.5,485781.7416267762,73246.14989655593,264909.8043017609,0,4749.148803070548 -377,469,813,812,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.43095883504595,6.362481925809112,0,9,-2,58.01965352834013,0,2,2,2019,6,0,6,3,1,0,0,10.34768904032786,10.34768904032786,0,0,0,0,2,0,0,0,7.04379026209326,0,57.16,56.15,43.59,59.64,8.333333333333334,1,1,0,0,9,13,5,1,754.5,485781.7416267762,73246.14989655593,264909.8043017609,0,4749.148803070548 -378,470,814,815,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.316660613856827,8.302071151368786,4.320685042148262,1,7,-82.22474643217724,0,2,-9,2019,9,0,59,45,1,0,0,6.27152847078239,6.27152847078239,0,0,0,0,0,0,0,0,5.492593717324312,0,57.33,53.46,46,58,6.666666666666667,1,1,0,0,6,5,5,0,517.5,41099.02015614422,17160.89012070589,185345.3046332952,112092.5698153078,2824.230435893191 -378,470,815,814,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.897116664355174,8.198629286764058,0,1,-7,9.238429439259942,-9,-9,-9,2019,12,0,40,0,1,2,0,9.802181716976898,9.802181716976898,0,0,0,0,0,0,0,0,0,0,46,58,57.33,53.46,7,1,1,0,0,1,5,5,0,517.5,41099.02015614422,17160.89012070589,185345.3046332952,112092.5698153078,2824.230435893191 -379,471,816,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.705853918138185,8.508951867646685,0,0,0,-1031.578826130036,0,2,2,2019,19,7,37,39,1,7,0,17.18579235959097,17.18579235959097,0,0,0,0,0,0,0,0,0,0,41.51,56.74,-9,-9,6.666666666666667,1,1,0,0,5,12,4,0,2192,26783.50410559499,29339.79455733462,0,0,1597.191916358059 -380,472,817,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.057027268888382,6.08159243323068,0,0,-1041.850410547351,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,15.83784690418942,23.30642605156808,133.2838137570932,0,1,1,0,0,6.349027794762513,54,44,-9,-9,8,1,1,0,0,0,10,2,1,1426,-6420.901446990028,20123.62109159493,0,0,1512.901829649574 -381,473,818,819,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.548476503634019,8.657319630938607,38,1,67.31567061534814,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.580492354841765,8.264609572637584,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,11,11,4,1,307.5,1533782.249348319,494219.6599466733,117429.0547009416,0,3092.573063636396 -381,473,819,818,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,38,-1,71.20970616840674,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.341247587893762,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,10,11,4,1,307.5,1533782.249348319,494219.6599466733,117429.0547009416,0,3092.573063636396 -381,474,820,-9,818,819,1,0,22,0,0,0,1,1,1,0,4,7.129390222544247,7.052181898625276,0,0,0,-998.3841124948967,-9,1,1,2019,13,2,25,0,1,2,0,5.920861216527144,5.920861216527144,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,4,11,3,1,722,20280.79641861986,0,0,0,667.5887756015425 -381,475,821,-9,818,819,1,0,21,0,0,0,2,2,0,0,1,0,0,0,0,0,-1013.343775662779,-9,1,1,2019,29,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,15.24,48.66,-9,-9,1.666666666666667,1,1,0,0,3,11,1,1,512,24263.61293533523,0,0,0,0 -382,476,822,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-992.2993956892998,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16.04,23.99,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,466,213339.1168012825,-55187.57301654363,0,0,0 -383,477,823,824,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,21,1,-20.8225072100769,0,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,27,0,0,0,8.30920949825876,0,35.9,60.41,46.67,55.57,3.333333333333333,1,1,0,0,7,9,5,1,225.5,3062635.229140061,2308330.735524875,526873.0082775452,7539.523166300311,7380.048804977274 -383,477,824,823,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.687191229904409,9.531320945934999,0,21,-1,-2.588423453409833,0,2,3,2019,11,2,88,53,1,2,0,19.76445646149938,19.76445646149938,0,0,0,0,7,0,0,0,3.857425997289938,0,46.67,55.57,35.9,60.41,8.333333333333334,1,1,0,0,13,9,5,1,225.5,3062635.229140061,2308330.735524875,526873.0082775452,7539.523166300311,7380.048804977274 -383,478,825,-9,823,824,1,0,21,0,0,0,2,2,-9,0,3,0,6.600035590663848,6.385735458026544,0,0,-1031.611386955923,1,2,1,2019,6,0,0,36,2,0,1,0,0,0,0,0,0,14.5,0,0,0,6.67875603975066,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,118,-61202.52511412793,-59032.45673869738,0,0,777.2761994230586 -384,479,826,827,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.583806441881823,8.36980989788136,0,7,3,-47.13565713050287,0,-9,-9,2019,9,0,40,30,1,1,0,12.16488318864472,12.16488318864472,0,0,0,0,0,1,1,0,3.717831565408575,0,52,55,41.13,40.48,8,1,1,0,0,1,12,4,0,251,332528.9840823354,138535.7165662728,87432.05825966282,12423.45909634152,3119.468985270805 -384,479,827,826,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,7.085005146841326,7.498342136111806,0,7,-3,-70.05826553211234,0,-9,3,2019,12,0,30,39,1,0,0,7.161553422420424,7.161553422420424,0,0,0,0,0,1,1,0,0,0,41.13,40.48,52,55,8.333333333333334,1,1,0,0,4,12,4,0,251,332528.9840823354,138535.7165662728,87432.05825966282,12423.45909634152,3119.468985270805 -385,480,828,829,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.032968912738099,6.11340843891802,46,-1,-14.43550538144602,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.507829450840164,6.188076834682521,57.16,56.15,50.63,45.45,6.666666666666667,1,1,0,0,5,12,2,1,641.5,612566.16156663,421123.5883927095,156202.7667237224,0,1649.367345468889 -385,480,829,828,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,5.017805256116678,4.482903389325115,41,1,99.01164438669377,0,2,2,2019,7,0,0,45,4,0,0,0,0,0,0,0,0,2,1,1,0,5.169360981479825,5.00606486885632,50.63,45.45,57.16,56.15,10,1,1,0,0,9,12,2,1,641.5,612566.16156663,421123.5883927095,156202.7667237224,0,1649.367345468889 -386,481,830,832,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,0,0,0,4,-5,-60.13046528692961,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,55.96,49.93,8.333333333333334,1,1,0,0,0,4,2,0,351.4,-63021.47805936008,0,0,0,2594.139646939109 -386,481,831,-9,830,832,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.378287731062,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,351.4,-63021.47805936008,0,0,0,2594.139646939109 -386,481,832,830,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,7.465376754412159,7.489647663784646,0,4,5,67.00797166814002,0,-9,-9,2019,10,0,24,26,1,0,0,8.90287438056078,8.90287438056078,0,0,0,0,0,1,1,0,0,0,55.96,49.93,54.45,56.22,8.333333333333334,1,1,0,0,6,4,2,0,351.4,-63021.47805936008,0,0,0,2594.139646939109 -386,481,833,-9,830,832,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.691867720007,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,351.4,-63021.47805936008,0,0,0,2594.139646939109 -386,481,834,-9,830,832,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-917.4192115109543,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,351.4,-63021.47805936008,0,0,0,2594.139646939109 -387,482,835,-9,840,837,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.918433090279,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -387,482,836,-9,840,837,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1024.351623920427,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -387,482,837,840,-9,-9,1,1,29,1,4,0,3,3,-9,1,2,0,0,0,2,2,0,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,57.2,27.82,29.76,44.82,0,1,1,1,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -387,482,838,-9,840,837,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-972.93644870312,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -387,482,839,-9,840,837,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.601676865683,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -387,482,840,837,-9,-9,1,0,27,1,4,0,2,2,-9,1,5,0,0,0,2,-2,0,0,-9,-9,2019,12,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.76,44.82,57.2,27.82,1.666666666666667,1,1,0,0,0,1,1,0,780.1666666666666,4066.813681783932,0,0,0,2944.691649897333 -388,483,841,-9,844,843,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.615790980833,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,712.75,-20301.52335276967,0,0,0,2270.206162578581 -388,483,842,-9,844,843,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.7883252085584,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,712.75,-20301.52335276967,0,0,0,2270.206162578581 -388,483,843,844,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.573902322948353,8.906651439252277,0,6,2,-35.62432800293765,0,2,2,2019,13,2,45,45,1,2,0,11.21877613926743,11.21877613926743,0,0,0,0,0,1,1,0,.2699851161321712,0,43.96,62.06,49.44,56.93,8.333333333333334,1,1,0,0,8,7,3,1,712.75,-20301.52335276967,0,0,0,2270.206162578581 -388,483,844,843,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,6,-2,-28.99593125967946,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,43.96,62.06,8.333333333333334,1,1,0,0,3,7,3,1,712.75,-20301.52335276967,0,0,0,2270.206162578581 -389,484,845,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.805341452967314,6.821335626091949,0,0,-944.3836553412107,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.841650549862757,51.32,43.57,-9,-9,10,3,4,0,0,0,8,2,1,305,328542.0063726753,35937.3121025757,316053.5211875431,0,917.4608352410889 -390,485,846,847,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,32.57,20.42,37.56,19.73,5,1,1,0,0,0,1,2,0,235,164889.6040849348,0,0,0,3333.294336944326 -390,485,847,846,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.56,19.73,32.57,20.42,5,1,1,0,0,0,1,2,0,235,164889.6040849348,0,0,0,3333.294336944326 -391,486,848,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-991.7911675947813,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,5.015851803156639,0,53.9869703465338,0,1,1,0,0,0,65.65000000000001,21.23,-9,-9,10,1,1,0,0,0,12,1,1,1240,-15818.41330979659,0,0,0,1161.484288468213 -392,487,849,-9,852,850,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.76136939458,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,4,0,369.5,224079.6776317492,96633.6757573864,97454.66037672304,62786.56243398898,2451.332400869927 -392,487,850,852,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,7.810178457088651,7.975917217750649,0,18,4,-48.34312705324695,0,2,2,2019,9,0,38,38,1,0,0,7.690649383072723,7.690649383072723,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.03,52.62,8.333333333333334,3,4,0,0,8,2,4,0,369.5,224079.6776317492,96633.6757573864,97454.66037672304,62786.56243398898,2451.332400869927 -392,487,851,-9,852,850,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.672975627618,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,4,0,369.5,224079.6776317492,96633.6757573864,97454.66037672304,62786.56243398898,2451.332400869927 -392,487,852,850,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.280803742311544,7.972541183389075,0,18,-4,-24.82593948151283,0,3,3,2019,9,0,30,30,1,0,0,10.2245713756996,10.2245713756996,0,0,0,0,0,1,1,0,0,0,50.03,52.62,57.16,56.15,8.333333333333334,3,4,0,0,10,2,4,0,369.5,224079.6776317492,96633.6757573864,97454.66037672304,62786.56243398898,2451.332400869927 -393,488,853,854,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,6.25318960974518,6.256620287215525,35,-21,69.60904166345189,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.084784598873698,5.968981241363781,54.1,59.11,50,35,8.333333333333334,1,1,0,0,12,11,2,1,638,692852.4112764099,302617.1981977544,275051.8774888446,0,1231.302967175328 -393,488,854,853,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,7.283915225449304,7.124736722459541,35,21,-155.096672575462,0,-9,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.323479170514581,7.13121424430507,50,35,54.1,59.11,8.333333333333334,1,1,0,0,1,11,2,1,638,692852.4112764099,302617.1981977544,275051.8774888446,0,1231.302967175328 -394,489,855,856,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,5.936093491703308,5.682202964444296,10,-1,-91.18801686431875,0,2,2,2019,2,0,0,27,3,0,0,0,0,0,0,0,0,2,0,0,0,5.771619833780906,6.486583942409185,58.15,52.91,63.63,24.75,10,1,1,0,0,12,10,2,1,397.5,358682.95489784,125753.221510426,217753.8616626933,0,496.3630058192109 -394,489,856,855,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,0,0,10,1,46.3712520750063,0,-9,-9,2019,10,1,0,16,4,1,0,0,0,0,0,0,0,0,0,0,0,6.004881731906488,0,63.63,24.75,58.15,52.91,8.333333333333334,1,1,0,0,11,10,2,1,397.5,358682.95489784,125753.221510426,217753.8616626933,0,496.3630058192109 -395,490,857,858,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,8.255652805913369,7.872621597119294,61,-1,-42.16391978970353,0,3,3,2019,14,1,0,0,4,1,0,0,0,1,2.246480425038142,0,0,71.5,1,1,0,0,8.081699287642824,58.41,14.3,61.62,5.83,5,1,1,0,0,0,9,3,1,919,1996300.721183178,258741.5418903953,791819.6759802891,0,3340.96453042661 -395,490,858,857,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,6.329768990842391,6.357054598567665,61,1,-11.47729289386287,0,2,2,2019,21,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.202422130180149,6.327505728716917,61.62,5.83,58.41,14.3,8.333333333333334,1,1,0,0,0,9,3,1,919,1996300.721183178,258741.5418903953,791819.6759802891,0,3340.96453042661 -396,491,859,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.448149335668175,6.456210797056393,0,0,-936.5607283372502,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.492370121364784,6.404724856020621,52.82,53.97,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,399,418671.3737094711,117380.0219045255,151435.7907456317,0,1463.746203069424 -397,492,860,861,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.930435603250725,7.911556528655127,0,5,14,98.45374727780842,0,2,2,2019,12,0,32,32,1,0,0,8.835312899851585,8.835312899851585,0,0,0,0,0,0,0,0,1.632907548554803,0,53.38,52.51,48,57,5,1,1,0,0,10,10,5,0,627,192938.3990401384,-56096.84423557481,231621.9013256406,125906.6453080242,2534.418807581734 -397,492,861,860,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.394113362243289,8.335523555950481,0,5,-14,70.50182049431291,0,-9,-9,2019,11,0,32,32,1,2,0,16.53952431729309,16.53952431729309,0,0,0,0,0,0,0,0,0,0,48,57,53.38,52.51,7,1,1,0,0,1,10,5,0,627,192938.3990401384,-56096.84423557481,231621.9013256406,125906.6453080242,2534.418807581734 -398,493,862,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.851524099595558,8.933586828063675,0,0,0,-1134.49713050654,0,2,3,2019,15,3,38,41,1,3,0,23.66685167149574,23.66685167149574,0,0,0,0,0,0,0,0,2.323187424381496,0,43.84,58.37,-9,-9,5,1,1,0,1,10,9,5,0,248,218097.1240083645,155362.5754324735,0,0,2907.803098273317 -399,494,863,866,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.51262427736147,8.486843773535295,0,20,1,-59.91243047902628,0,2,2,2019,9,0,48,48,1,0,0,12.04067713550472,12.04067713550472,0,0,0,0,0,1,1,0,0,0,59.51,44.25,60.29,52.11,10,2,3,0,0,6,9,4,1,495,792120.6228169897,665258.6640588008,208265.2895661988,147165.0985069241,4342.681294644047 -399,494,864,-9,863,866,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-979.0514980873937,-9,2,2,2019,18,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,56.16,-9,-9,5,2,3,0,0,1,9,4,1,495,792120.6228169897,665258.6640588008,208265.2895661988,147165.0985069241,4342.681294644047 -399,494,865,-9,863,866,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.336807265843,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,4,1,495,792120.6228169897,665258.6640588008,208265.2895661988,147165.0985069241,4342.681294644047 -399,494,866,863,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.446670143353787,8.202004091779431,0,20,-1,8.760639138425265,0,2,2,2019,7,0,45,57,1,0,0,11.24670168188888,11.24670168188888,0,0,0,0,0,1,1,0,2.819596725126631,0,60.29,52.11,59.51,44.25,8.333333333333334,2,3,0,0,8,9,4,1,495,792120.6228169897,665258.6640588008,208265.2895661988,147165.0985069241,4342.681294644047 -400,495,867,868,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,8,1,-3.486810623614327,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.87223553335611,0,0,1,1,0,4.619597980453292,0,51.82,44.93,53.87,29.51,8.333333333333334,1,1,0,0,0,9,2,1,1324.5,993470.1297154961,298059.8001776336,434572.079925364,0,1762.967742611021 -400,495,868,867,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.416388052669872,7.141223754274341,8,-1,-79.9073712476907,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.525884781435172,7.606072827695607,53.87,29.51,51.82,44.93,8.333333333333334,1,1,0,0,2,9,2,1,1324.5,993470.1297154961,298059.8001776336,434572.079925364,0,1762.967742611021 -401,496,869,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.314479679382824,8.027716232605041,0,0,0,-986.7233784685487,0,3,3,2019,5,0,48,37,1,0,0,8.318054241407102,8.318054241407102,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,10,1,1,0,0,7,7,4,1,1730,480511.814255083,68634.57178846012,248092.5332502039,96182.10034897468,1651.438011642335 -402,497,870,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1093.830663925456,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,5.795058078403761,0,0,1,1,0,0,0,54.51,36.04,-9,-9,10,1,1,0,0,0,11,1,0,809,-203330.2819411405,0,0,0,1491.200768435893 -403,498,871,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.815227314322899,8.164514403711946,0,0,-1047.5745001695,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.81750461210541,8.183472500283782,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,495,114610.7423880297,8631.090609616793,90013.16071866569,63314.30454062027,2657.063281302595 -404,499,872,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1021.099150291963,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,30.04714640715424,44.50651971619282,280.9668852527968,0,1,1,0,0,0,33.4,20.16,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,785,-130895.8648272126,0,0,0,2079.896673063859 -405,500,873,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-989.0285475856607,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,22.98,54.62,-9,-9,3.333333333333333,1,1,1,0,2,1,1,0,306,-90813.93085071484,-11500.78111845096,0,0,748.7584406620033 -406,501,874,875,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.009496112169579,7.784282639824125,0,5,1,-66.61702509950806,0,-9,-9,2019,9,0,42,42,1,0,0,8.53333552200319,8.53333552200319,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,10,1,1,0,0,7,11,4,1,277.5,230892.1921516866,63174.67805411245,90698.72109554871,0,2677.80432712276 -406,501,875,874,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.021190604832199,7.902750204012443,0,5,-1,66.93999108631823,-9,-9,-9,2019,6,0,37,0,1,0,0,10.38826897240914,10.38826897240914,0,0,0,0,7,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,277.5,230892.1921516866,63174.67805411245,90698.72109554871,0,2677.80432712276 -407,502,876,-9,877,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-850.0792674412858,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,2209.75,-26100.94837360259,0,0,0,1501.273348008157 -407,502,877,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,0,0,0,0,0,-839.9665430319096,0,3,3,2019,21,7,0,16,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,40.38,61.66,-9,-9,10,1,1,0,0,7,5,1,0,2209.75,-26100.94837360259,0,0,0,1501.273348008157 -407,502,878,-9,877,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.740664164283,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,2209.75,-26100.94837360259,0,0,0,1501.273348008157 -407,502,879,-9,877,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.548990281545,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,2209.75,-26100.94837360259,0,0,0,1501.273348008157 -408,503,880,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.77038832055884,8.056594189829445,0,0,-1064.486095707274,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.539411928669941,7.48036370497555,56,52,-9,-9,5,1,1,0,0,10,7,3,1,561,807436.7498282057,466751.6259068144,435025.2137774982,0,1504.755040491346 -409,504,881,-9,883,882,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.023639181547,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,1252,1162328.4849395,411769.0286940257,692168.977117396,113016.1454376592,1353.182726262512 -409,504,882,883,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.373629817528044,7.214297080837286,0,35,6,-18.22558189500632,0,3,3,2019,9,0,24,24,1,0,0,6.134500456032723,6.134500456032723,0,0,0,0,0,1,1,0,0,0,54,54,51,54,8,2,3,0,0,9,8,2,1,1252,1162328.4849395,411769.0286940257,692168.977117396,113016.1454376592,1353.182726262512 -409,504,883,882,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,0,0,0,35,-6,-154.8942442918258,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.071168061405936,0,51,54,54,54,8,2,3,0,0,0,8,2,1,1252,1162328.4849395,411769.0286940257,692168.977117396,113016.1454376592,1353.182726262512 -409,505,884,-9,883,882,1,0,24,0,1,0,2,2,-9,0,4,8.647829436083285,8.566477558967208,0,0,0,-1069.45708457439,0,3,3,2019,13,1,52,48,1,1,1,11.32538108122103,11.32538108122103,0,0,0,0,0,1,1,0,0,0,46.5,58.39,-9,-9,10,2,3,0,0,6,8,5,1,562,64173.97700829162,34908.5124560421,0,0,1699.732996340673 -409,506,885,-9,883,882,1,0,29,0,1,0,1,1,-9,0,5,7.547112630320752,8.003558553278365,0,0,0,-1169.863617503125,0,3,3,2019,12,4,22,22,1,4,1,12.0560329329764,12.0560329329764,0,0,0,0,0,1,1,0,0,0,30.94,57.16,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,419,113940.7662799746,70677.1342259933,0,0,831.5058801225912 -410,507,886,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.720031123717286,8.935579623398826,0,0,0,-1092.497153930025,0,-9,-9,2019,20,9,55,55,1,9,0,12.88492423775277,12.88492423775277,0,0,0,0,2,0,0,0,2.843375988885187,0,35.18,59.62,-9,-9,5,1,1,0,0,2,8,5,0,358,10878.04022641679,-64492.88201376879,88981.45100921694,65559.45392696868,3027.561890013616 -410,508,887,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.899321067250595,8.672964525114008,0,0,0,-1090.194689827622,0,-9,-9,2019,11,1,35,46,1,1,0,17.39247211352737,17.39247211352737,0,0,0,0,0,0,0,0,0,0,33.12,61.85,-9,-9,6.666666666666667,1,1,0,0,2,8,5,0,270,138201.3728631038,-102733.2323470301,0,0,2297.400115682835 -411,509,888,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.567166466949037,7.15137546686939,0,0,-996.8646060679777,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,11.03132189264605,0,0,1,1,0,4.718127911782154,6.856071225228613,52,44,-9,-9,8,1,1,0,0,0,2,2,1,366,80137.60359574383,54892.48795398045,0,0,2145.556690421842 -411,510,889,-9,888,-9,1,0,49,0,0,0,2,2,-9,0,4,7.682972973837481,8.004983245212115,0,0,0,-920.1280692525388,0,3,-9,2019,12,0,40,38,1,0,0,9.687452576879345,9.687452576879345,0,0,0,0,74.5,1,1,0,0,0,40.48,60.05,-9,-9,1.666666666666667,1,1,0,0,4,2,4,1,185,31474.80290732851,88189.18566334186,0,0,1662.510592944346 -412,511,890,891,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,7.793708595973266,8.917500952678395,8.311917752442607,36,0,-12.65517447571828,0,3,2,2019,6,0,20,20,1,0,0,17.35827289050771,17.35827289050771,0,0,0,0,0,1,1,0,4.320170521154644,8.170176254705453,62.15,49.94,49.35,59.64,8.333333333333334,1,1,0,0,8,12,5,1,437,1359467.572269428,621087.8348730574,462755.6322063018,91330.66822805247,6294.225476276317 -412,511,891,890,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.062983546096509,8.183028881761345,36,0,-32.39894391832527,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.756526992130008,7.700946006660656,49.35,59.64,62.15,49.94,10,1,1,0,0,0,12,5,1,437,1359467.572269428,621087.8348730574,462755.6322063018,91330.66822805247,6294.225476276317 -413,512,892,893,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,7.901928914332609,7.901624722527796,0,28,-4,-3.247212312080329,0,-9,-9,2019,16,6,22,32,1,6,0,17.58719794428249,17.58719794428249,0,0,0,0,0,1,1,0,0,0,40.23,47.45,48,49,6.666666666666667,1,1,0,1,11,8,4,1,932,23986.21014879408,64034.42840134964,0,0,2482.643976586336 -413,512,893,892,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.046882174441079,8.279489976581244,0,9,4,55.32434076316863,0,-9,-9,2019,10,0,20,50,1,0,0,22.28431538130179,22.28431538130179,0,0,0,0,0,1,1,0,.0203788787246557,0,48,49,40.23,47.45,0,2,3,0,0,12,8,4,1,932,23986.21014879408,64034.42840134964,0,0,2482.643976586336 -413,512,894,-9,893,892,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1172.178963137287,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,1,932,23986.21014879408,64034.42840134964,0,0,2482.643976586336 -413,513,895,-9,893,892,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-964.8854809061061,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,0,8,1,1,210,104014.8134745444,0,0,0,0 -414,514,896,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1091.825296365403,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.69,19.91,-9,-9,1.666666666666667,1,1,1,0,0,9,1,0,206,32798.66962829071,0,226453.2742056262,81014.11675157423,1512.74664907264 -414,515,897,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.515900277759701,6.311232574426501,0,0,-969.6163913194639,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,.5594796759449656,6.202726602297082,38.05,23.32,-9,-9,3.333333333333333,1,1,0,1,0,9,2,0,1009,38186.32098726116,306633.0902063659,0,0,1584.646601668948 -415,516,898,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.380284145355,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,.0805475649234233,0,0,1,1,0,0,0,37.64,31.02,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1318,-38352.18750057687,0,0,0,147.2510730581782 -415,517,899,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1012.720526919239,0,3,3,2019,24,11,0,0,4,11,0,0,0,1,0,7.883622728439218,0,0,1,1,0,3.047256268120517,0,33.7,23.95,-9,-9,3.333333333333333,1,1,0,0,0,8,1,1,132,0,0,0,0,860.0218642150683 -416,518,900,901,-9,-9,1,0,62,0,1,0,2,2,-9,0,4,0,5.093749675474482,4.992909706265579,7,-5,151.566753004039,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.281844650875434,5.283758552459714,46.16,58.62,51,52.08,6.666666666666667,1,1,0,0,0,11,2,1,369.5,516615.6267618939,321605.560925818,227292.3080470474,0,1625.43542178669 -416,518,901,900,-9,-9,1,1,67,0,1,0,2,2,-9,0,4,0,7.759195955336988,7.611743796264664,7,5,-83.36136182927241,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.807244558380975,7.506009944850773,51,52.08,46.16,58.62,3.333333333333333,1,1,0,0,0,11,2,1,369.5,516615.6267618939,321605.560925818,227292.3080470474,0,1625.43542178669 -416,519,902,-9,-9,903,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.3424559541194,-9,-9,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,194.5,-71216.29206434989,0,0,0,2294.786571261327 -416,519,903,-9,900,901,1,1,39,0,1,0,3,3,-9,0,1,8.460046782969915,8.662339534962927,0,0,0,-1033.224597485716,0,2,1,2019,34,12,60,53,1,12,0,8.601103866615935,8.601103866615935,0,0,0,0,0,1,1,0,0,0,31.88,37.09,-9,-9,0,1,1,0,0,7,11,4,1,194.5,-71216.29206434989,0,0,0,2294.786571261327 -417,520,904,905,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.535917970000325,8.500835978787688,0,8,3,9.596201504117417,0,3,3,2019,16,4,38,38,1,4,0,15.25228806339681,15.25228806339681,0,0,0,0,0,1,1,0,0,0,33.07,55.18,52.23,55.6,5,1,1,0,0,8,11,5,1,444.5,934077.5557156201,194461.524741045,242016.3325269305,60031.5679041879,3150.142490826145 -417,520,905,904,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,7.948410354683642,8.043004195888566,0,8,-3,-68.67954894225936,0,2,2,2019,12,1,30,30,1,1,0,11.12947166541045,11.12947166541045,0,0,0,0,5.48,1,1,0,.9258336650372637,0,52.23,55.6,33.07,55.18,6.666666666666667,1,1,0,0,9,11,5,1,444.5,934077.5557156201,194461.524741045,242016.3325269305,60031.5679041879,3150.142490826145 -418,521,906,907,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.68476786042006,7.024982599425088,48,2,-26.35449010983448,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.023126805406005,6.502209029211277,57.09,43.99,41.17,59.31,10,1,1,0,0,0,5,3,1,1072,1510293.771603936,723800.3697652679,505360.9038282302,0,3885.953012608976 -418,521,907,906,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.069526895912436,7.991659696536428,48,-2,80.64490408473876,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.373732943420272,41.17,59.31,57.09,43.99,8.333333333333334,1,1,0,0,9,5,3,1,1072,1510293.771603936,723800.3697652679,505360.9038282302,0,3885.953012608976 -419,522,908,-9,911,910,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1133.236879772595,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1201,504027.0361025208,165262.7793655757,335722.453636118,71455.68676093363,2928.310465852733 -419,522,909,-9,911,910,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.498789250256,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1201,504027.0361025208,165262.7793655757,335722.453636118,71455.68676093363,2928.310465852733 -419,522,910,911,-9,-9,1,1,55,0,3,0,2,2,-9,0,5,8.938827014758038,8.854581422722422,0,12,16,-30.72841133265193,0,2,2,2019,13,2,40,42,1,2,0,21.03070655367651,21.03070655367651,0,0,0,0,0,1,1,0,0,0,36.02,63.11,48.53,58.91,6.666666666666667,1,1,0,0,8,10,4,1,1201,504027.0361025208,165262.7793655757,335722.453636118,71455.68676093363,2928.310465852733 -419,522,911,910,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,6.922497026648781,6.758049791963186,0,13,-16,-63.47955122686673,0,2,2,2019,11,0,8,7,1,0,0,13.87292667718813,13.87292667718813,0,0,0,0,0,1,1,0,0,0,48.53,58.91,36.02,63.11,8.333333333333334,1,1,0,0,4,10,4,1,1201,504027.0361025208,165262.7793655757,335722.453636118,71455.68676093363,2928.310465852733 -419,522,912,-9,911,910,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.600265172649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1201,504027.0361025208,165262.7793655757,335722.453636118,71455.68676093363,2928.310465852733 -420,523,913,-9,914,915,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.1773892198644,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,977.5,111406.2345821723,71299.65541284651,181301.1641458925,132602.3227262914,5176.240987759608 -420,523,914,915,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.43699366194642,7.37222607802186,0,10,-8,-68.06796047525259,0,2,2,2019,13,4,15,15,1,4,0,15.43597170180609,15.43597170180609,0,0,0,0,0,1,1,0,6.692380500897314,0,46.5,58.26,52.23,55.6,8.333333333333334,1,1,0,0,7,2,4,1,977.5,111406.2345821723,71299.65541284651,181301.1641458925,132602.3227262914,5176.240987759608 -420,523,915,914,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.886188993257628,8.655614417484195,0,10,8,-65.51102160615579,0,-9,-9,2019,4,0,42,42,1,0,0,22.83432049678403,22.83432049678403,0,0,0,0,0,1,1,0,0,0,52.23,55.6,46.5,58.26,8.333333333333334,1,1,0,0,8,2,4,1,977.5,111406.2345821723,71299.65541284651,181301.1641458925,132602.3227262914,5176.240987759608 -420,523,916,-9,914,915,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.9088100427039,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,977.5,111406.2345821723,71299.65541284651,181301.1641458925,132602.3227262914,5176.240987759608 -421,524,917,-9,-9,-9,1,1,37,0,0,0,3,3,-9,0,4,8.219348994316569,8.070227673317794,0,0,0,-1254.172967886924,0,2,-9,2019,6,0,38,38,1,0,0,10.6875713590049,10.6875713590049,0,0,0,0,0,0,0,0,.1208446714927496,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,2039,-10697.13667229862,0,0,0,2151.314796386589 -422,525,918,919,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,9.599780228780944,9.453088786198679,0,3,-5,-24.26344110222984,0,2,-9,2019,6,0,55,52,1,0,0,31.50304342907997,31.50304342907997,0,0,0,0,0,1,1,0,8.141971288786044,0,60.12,54.8,56.35,37.8,8.333333333333334,1,1,0,0,8,10,5,1,1260,1622503.808104632,1132430.221639062,241044.0227002182,0,5959.251029953025 -422,525,919,918,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,6.532011234760084,6.468234184499195,0,3,5,-111.3960556457136,0,2,3,2019,9,0,15,15,1,0,0,4.83442699644436,4.83442699644436,0,0,0,0,0,1,1,0,8.312494076375438,0,56.35,37.8,60.12,54.8,8.333333333333334,1,1,0,0,8,10,5,1,1260,1622503.808104632,1132430.221639062,241044.0227002182,0,5959.251029953025 -422,526,920,-9,918,919,1,1,18,0,0,0,2,2,1,0,4,6.868931278222198,6.741698362928602,0,0,0,-990.1749352326964,-9,2,2,2019,11,1,8,0,1,1,1,10.99723428870742,10.99723428870742,0,0,0,0,0,1,1,0,2.568348990072113,0,47.26,56.73,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,350,108623.9043966979,0,117247.1939437039,0,519.2618825478539 -423,527,921,-9,923,924,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.5798716563596,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1172.5,260155.7557678573,240589.6028842404,79506.84533501536,41746.39086915889,2561.636489815679 -423,527,922,-9,923,924,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.661225737548,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1172.5,260155.7557678573,240589.6028842404,79506.84533501536,41746.39086915889,2561.636489815679 -423,527,923,924,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.696833036874289,7.615270191425401,0,8,-6,2.287596775162934,0,-9,-9,2019,15,3,20,22,1,3,0,11.80101566477387,11.80101566477387,0,0,0,0,0,1,1,0,4.0632681794322,0,31.15,62.63,57.33,53.46,5,1,1,0,0,10,2,3,1,1172.5,260155.7557678573,240589.6028842404,79506.84533501536,41746.39086915889,2561.636489815679 -423,527,924,923,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.14196788187874,8.113635257337512,0,15,6,-59.02458481996663,0,3,3,2019,6,0,43,37,1,0,0,8.689928297429551,8.689928297429551,0,0,0,0,0,1,1,0,0,0,57.33,53.46,31.15,62.63,6.666666666666667,1,1,0,0,7,2,3,1,1172.5,260155.7557678573,240589.6028842404,79506.84533501536,41746.39086915889,2561.636489815679 -424,528,925,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.4155067553454,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.245544579043937,0,50.75,28.48,-9,-9,3.333333333333333,1,1,0,0,0,8,1,1,1265,89505.15142657103,0,0,0,195.603322916883 -425,529,926,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,5.821592148421942,5.781743400711303,0,0,-1003.787748449258,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.598012963614829,56,44,-9,-9,8,1,1,0,0,0,2,2,1,688,191281.9974215429,37956.42370074037,0,0,500.8824152256762 -426,530,927,-9,928,929,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.846244634434,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,583.5,2252019.08222288,987121.8380901681,935573.0107244351,403840.6815636513,3945.933032393845 -426,530,928,929,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,0,0,0,9,0,-209.1346512507926,0,-9,-9,2019,20,8,0,31,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,64.09999999999999,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,583.5,2252019.08222288,987121.8380901681,935573.0107244351,403840.6815636513,3945.933032393845 -426,530,929,928,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.29635519350566,9.199045722765911,6.531132413916538,9,0,58.04204994096198,0,1,1,2019,6,0,47,45,1,0,0,36.8776400343606,36.8776400343606,0,0,0,0,0,0,0,0,6.709234177506795,0,57.06,57.76,37.89,64.09999999999999,10,1,1,0,0,10,12,5,1,583.5,2252019.08222288,987121.8380901681,935573.0107244351,403840.6815636513,3945.933032393845 -426,530,930,-9,928,929,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.817570232162,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,583.5,2252019.08222288,987121.8380901681,935573.0107244351,403840.6815636513,3945.933032393845 -427,531,931,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1010.242205518111,-9,-9,-9,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,15.67,34.98,-9,-9,0,1,1,0,1,0,11,1,0,1383,25548.65797980037,0,0,0,308.8239481181289 -428,532,932,933,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,8.52127148681028,8.645230826361136,6,1,-181.9546931012624,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,1.823843578335261,0,0,2,1,1,0,0,8.3890255623852,58.32,50.22,52,45,8.333333333333334,1,1,0,0,0,11,4,1,596.5,532217.4443000412,176362.6664800504,252770.2695270869,0,3784.991241300337 -428,532,933,932,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-1,2.69834599629627,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.663634620418462,0,52,45,58.32,50.22,8,4,1,0,0,0,11,4,1,596.5,532217.4443000412,176362.6664800504,252770.2695270869,0,3784.991241300337 -429,533,934,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1057.510126203854,0,-9,-9,2019,16,4,0,20,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,-9,-9,3.333333333333333,2,3,1,1,1,7,1,0,228,0,0,0,0,1877.483749857801 -430,534,935,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.781932941859758,8.107551630065512,0,0,0,-931.3831762853609,0,3,3,2019,12,1,36,36,1,1,0,10.45068915066364,10.45068915066364,0,0,0,0,2,1,1,0,3.730299099468285,0,40.81,55.44,-9,-9,5,1,1,0,0,10,6,4,1,174,29865.66349854359,-61795.79830533027,0,0,1384.095559953448 -431,535,936,938,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.067373736934636,9.205436384053417,0,22,3,-61.74845187508915,0,2,3,2019,12,0,41,42,1,0,0,17.81178634870354,17.81178634870354,0,0,0,0,0,1,1,0,4.252176092378317,0,44.44,55.46,54.2,57.49,5,1,1,0,0,10,7,5,1,416.3333333333333,-26421.09027949019,74672.95320782106,349226.6112280962,316835.9034138924,4166.335429421019 -431,535,937,-9,938,936,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.3983062780765,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,416.3333333333333,-26421.09027949019,74672.95320782106,349226.6112280962,316835.9034138924,4166.335429421019 -431,535,938,936,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.436435991112019,8.469844406828811,0,22,-3,-10.71387811054903,0,2,3,2019,7,0,34,28,1,0,0,13.18219618833466,13.18219618833466,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.44,55.46,10,1,1,0,0,10,7,5,1,416.3333333333333,-26421.09027949019,74672.95320782106,349226.6112280962,316835.9034138924,4166.335429421019 -432,536,939,941,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.826093805697175,7.447068378335588,0,20,-6,2.88103679667233,0,-9,2,2019,12,0,36,36,1,0,0,8.608705806178406,8.608705806178406,0,0,0,0,0,0,0,0,0,0,44.36,54.04,51.24,58.84,5,1,1,0,0,9,1,5,1,815,499670.9270580188,268015.1062246378,173755.9478978463,0,3759.502559881189 -432,536,940,-9,939,941,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1027.458976481088,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,1,0,0,1,5,1,815,499670.9270580188,268015.1062246378,173755.9478978463,0,3759.502559881189 -432,536,941,939,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.810074573881508,8.928911179194673,0,20,6,147.7233686697633,0,-9,-9,2019,10,0,39,40,1,0,0,22.97144322586535,22.97144322586535,0,0,0,0,0,0,0,0,0,0,51.24,58.84,44.36,54.04,6.666666666666667,1,1,0,0,9,1,5,1,815,499670.9270580188,268015.1062246378,173755.9478978463,0,3759.502559881189 -432,537,942,-9,939,941,1,1,23,0,0,0,2,2,-9,0,5,8.414138760022277,8.21212677319363,0,0,0,-1019.274922224734,0,2,2,2019,7,0,39,40,1,0,1,14.35739810029405,14.35739810029405,0,0,0,0,0,0,0,0,2.013172914482043,0,57,59.12,-9,-9,5,1,1,0,0,0,1,4,1,778,0,0,0,0,1878.092004866437 -433,538,943,944,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.017829742023391,9.145635936674147,0,4,2,-70.71745091006548,0,-9,-9,2019,10,2,40,17,1,2,0,26.79035796615911,26.79035796615911,0,0,0,0,0,0,0,0,8.645407938675715,0,46.98,59.35,44.02,60.7,6.666666666666667,1,1,0,1,8,9,5,1,1553,775809.7563280389,285503.1270086059,594686.9939114684,226604.9293849496,5798.041896567595 -433,538,944,943,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.136701329405014,8.307033538824557,5.311597676321706,4,-2,113.2453895670136,0,-9,-9,2019,9,0,18,30,1,0,0,28.8824037235875,28.8824037235875,0,0,0,0,0,0,0,0,5.443880428726949,0,44.02,60.7,46.98,59.35,8.333333333333334,1,1,0,0,8,9,5,1,1553,775809.7563280389,285503.1270086059,594686.9939114684,226604.9293849496,5798.041896567595 -434,539,945,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.291996321359115,6.406445920193058,0,0,-976.9918436292306,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.557914353517825,71.47,25.01,-9,-9,0,1,1,0,0,0,1,2,1,204,328299.160572591,65976.24056056971,275318.6676721646,0,1071.178885966473 -435,540,946,947,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.69120480746964,8.84499950557459,0,6,-4,-152.1533956274014,0,2,2,2019,7,0,45,45,1,0,0,18.62787783927312,18.62787783927312,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.31,52.76,8.333333333333334,1,1,0,0,7,4,5,1,488,119982.4793935711,16645.49113608896,379114.6471283498,267878.7537149048,4150.883199229815 -435,540,947,946,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.066492339228509,7.816190327093823,0,6,4,29.53143258038763,0,-9,-9,2019,10,0,10,10,1,0,0,32.91405557974591,32.91405557974591,0,0,0,0,0,1,1,0,0,0,52.31,52.76,57.16,56.15,8.333333333333334,1,1,0,0,3,4,5,1,488,119982.4793935711,16645.49113608896,379114.6471283498,267878.7537149048,4150.883199229815 -435,540,948,-9,947,946,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.4199950177318,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,488,119982.4793935711,16645.49113608896,379114.6471283498,267878.7537149048,4150.883199229815 -435,540,949,-9,947,946,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.7567652218227,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,488,119982.4793935711,16645.49113608896,379114.6471283498,267878.7537149048,4150.883199229815 -436,541,950,951,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.964298568697884,6.954263472586977,0,31,5,105.4054533504363,0,2,2,2019,12,0,40,40,1,0,0,3.176478099830838,3.176478099830838,0,0,0,0,0,0,0,0,7.468684834746429,0,50,49,42.27,53.29,6.666666666666667,1,1,0,0,10,5,3,1,502,1194252.1313586,28333.93532951,950303.3567680437,0,3686.154656448185 -436,541,951,950,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.875334410087651,6.612236185558053,0,31,-5,21.17199999594279,0,2,2,2019,12,0,15,24,1,0,0,6.059352851271285,6.059352851271285,0,0,0,0,2,0,0,0,8.237923338568452,0,42.27,53.29,50,49,8.333333333333334,1,1,0,0,10,5,3,1,502,1194252.1313586,28333.93532951,950303.3567680437,0,3686.154656448185 -436,542,952,-9,951,950,1,0,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-916.7230905601029,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,867,-42885.51254360509,0,0,0,1430.744849563492 -437,543,953,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1022.361640417647,0,3,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,0,41.67,41.91,-9,-9,10,1,1,0,0,0,8,1,0,164,398206.473769722,246350.6841103593,167991.497049119,0,1646.419691870157 -438,544,954,956,959,958,1,1,51,0,1,0,1,1,-9,0,4,8.83819923137268,8.99490480876865,0,21,12,4.943832216238967,0,2,2,2019,6,0,37,47,1,0,0,23.53587629787478,23.53587629787478,0,0,0,0,0,1,1,0,0,0,60.12,54.8,33.2,63.27,8.333333333333334,2,3,0,0,12,5,4,1,931.75,1358853.287702158,1089886.692874876,227830.0152635453,28008.40679309593,3431.173864284025 -438,544,955,-9,956,954,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1057.873532787227,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,5,4,1,931.75,1358853.287702158,1089886.692874876,227830.0152635453,28008.40679309593,3431.173864284025 -438,544,956,954,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.534643197584315,7.670838565161128,0,21,-12,8.324329021685248,0,3,2,2019,12,0,30,30,1,0,0,8.083523994410131,8.083523994410131,0,0,0,0,0,1,1,0,0,0,33.2,63.27,60.12,54.8,5,2,3,0,0,8,5,4,1,931.75,1358853.287702158,1089886.692874876,227830.0152635453,28008.40679309593,3431.173864284025 -438,544,957,-9,956,954,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-985.786130550958,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,10,2,3,0,0,0,5,4,1,931.75,1358853.287702158,1089886.692874876,227830.0152635453,28008.40679309593,3431.173864284025 -438,545,958,959,-9,-9,1,1,84,0,1,0,2,2,-9,0,3,0,6.500403549251928,6.624183615150798,60,8,44.00557103241363,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.113713851306176,55,45,51,46,8,2,3,0,0,0,5,2,1,362.5,120332.6164506924,44341.80271225328,185581.9956528781,0,814.5963443814253 -438,545,959,958,-9,-9,1,0,76,0,1,0,2,2,-9,0,3,0,0,0,9,-8,62.67297962729046,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,55,45,7,2,3,0,0,0,5,2,1,362.5,120332.6164506924,44341.80271225328,185581.9956528781,0,814.5963443814253 -439,546,960,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,7.030215552148273,6.859586152870018,0,0,0,-1088.594426137547,0,3,3,2019,8,0,20,20,1,0,0,5.235781698226811,5.235781698226811,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,9,12,2,0,352.5,39048.60359101909,79460.70342121954,146899.1473048666,80882.94021416419,79.16318666902197 -439,546,961,-9,960,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.8932546508977,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,352.5,39048.60359101909,79460.70342121954,146899.1473048666,80882.94021416419,79.16318666902197 -440,547,962,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.8091742417254,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,7.987332953867395,0,54.82,26.18,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,174,-5158.960884251363,0,0,0,1015.008531525051 -441,548,963,-9,964,966,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.556801211007,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,824,99683.86744293314,32084.63873649046,284908.3727658708,211201.618094593,4113.722148975567 -441,548,964,966,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.121815798183246,7.901367505715384,0,14,1,-12.99857390122844,0,2,2,2019,10,0,30,38,1,0,0,12.31653013481551,12.31653013481551,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.34,56.4,8.333333333333334,1,1,0,0,9,1,5,1,824,99683.86744293314,32084.63873649046,284908.3727658708,211201.618094593,4113.722148975567 -441,548,965,-9,964,966,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.0059409158953,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,824,99683.86744293314,32084.63873649046,284908.3727658708,211201.618094593,4113.722148975567 -441,548,966,964,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,8.975018191204541,8.51881075218037,0,14,-1,38.03249242695158,0,2,2,2019,12,0,37,38,1,0,0,25.90294016499698,25.90294016499698,0,0,0,0,0,1,1,0,0,0,50.34,56.4,51.83,57.2,8.333333333333334,1,1,0,0,9,1,5,1,824,99683.86744293314,32084.63873649046,284908.3727658708,211201.618094593,4113.722148975567 -442,549,967,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.960631577148676,7.076798392192899,0,0,-962.4723667035463,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3371823325854,64.55,36.47,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2150,-144.2783618615504,259364.9055283783,0,0,1072.509631893096 -443,550,968,-9,-9,-9,1,0,26,0,1,0,1,1,-9,0,3,7.701230178173555,7.617838044945685,0,0,0,-985.5753489078744,0,1,1,2019,13,2,40,0,1,2,0,5.277820270892152,5.277820270892152,0,0,0,0,0,1,1,0,0,0,32.6,54.09,-9,-9,3.333333333333333,1,1,0,0,0,8,3,0,559.5,114095.8265990097,-2192.214204252454,0,0,1806.179536746169 -443,550,969,-9,968,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.832272625751,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,0,559.5,114095.8265990097,-2192.214204252454,0,0,1806.179536746169 -444,551,970,971,-9,-9,1,1,66,1,1,0,1,1,-9,0,2,0,0,0,7,7,29.73917399114685,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,3.839096274726785,0,0,1,1,0,0,0,42.46,41.62,49,48,6.666666666666667,2,3,0,0,7,8,2,1,577,-79759.6596646949,47579.55333915585,0,0,1224.624839943261 -444,551,971,970,-9,-9,1,0,59,1,1,0,2,2,-9,0,3,7.096827740293628,6.740119557717482,0,40,-7,99.44699997076793,0,2,2,2019,11,0,28,42,1,2,0,4.846795089218705,4.846795089218705,0,0,0,0,0,1,1,0,1.318668659171671,0,49,48,42.46,41.62,7,2,3,0,0,9,8,2,1,577,-79759.6596646949,47579.55333915585,0,0,1224.624839943261 -444,552,972,973,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,0,0,0,4,-3,159.9045113225626,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,50,57,7,2,3,0,0,0,8,3,1,2034.333333333333,109240.8514409214,72865.79391374929,0,0,1937.298261405674 -444,552,973,972,971,970,1,1,33,1,1,0,2,2,-9,0,4,8.212093556373636,8.427510522785486,0,4,3,-51.65564205622613,0,1,1,2019,10,0,47,46,1,1,0,10.96459800358834,10.96459800358834,0,0,0,0,0,1,1,0,0,0,50,57,48,57,7,2,3,0,0,5,8,3,1,2034.333333333333,109240.8514409214,72865.79391374929,0,0,1937.298261405674 -444,552,974,-9,972,973,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.75234911136,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,2034.333333333333,109240.8514409214,72865.79391374929,0,0,1937.298261405674 -444,553,975,-9,971,970,1,1,28,1,1,0,2,2,-9,0,4,8.586829669768333,8.800820930249284,0,0,0,-943.533301931427,0,1,1,2019,10,0,40,50,1,1,1,25.11821615690146,25.11821615690146,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,4,8,5,1,64,248555.7656069834,0,267072.8635927071,121899.3099366493,2610.372559865119 -444,554,976,-9,971,970,1,0,28,1,1,0,1,1,-9,0,4,8.438947074858598,8.324320878117781,0,0,0,-1009.156232433957,0,1,2,2019,11,0,40,53,1,2,1,10.50558997265204,10.50558997265204,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,8,8,4,1,281,-1512.8197258201,-103222.114840963,0,0,1700.873467066894 -445,555,977,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.89573705274365,8.995493892253412,0,0,0,-1024.994798872662,0,3,3,2019,10,0,25,28,1,0,0,35.39660654143472,35.39660654143472,0,0,0,0,0,1,1,0,4.08208340820557,0,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,1857,629430.0333280036,422568.897813964,182978.9311451027,0,2699.113544966007 -446,556,978,979,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.921645606009823,5.894050721379964,8,2,-78.12709427239457,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.780421035776405,5.917765826412529,57.33,53.46,49.29,54.59,8.333333333333334,1,1,0,0,3,5,2,1,450,207710.7658817401,131414.6373135869,94677.63370754388,0,1287.937975862254 -446,556,979,978,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.168706915143367,4.8663160230235,8,-2,79.03834604806796,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.904087502185787,4.88768491638495,49.29,54.59,57.33,53.46,8.333333333333334,1,1,0,0,5,5,2,1,450,207710.7658817401,131414.6373135869,94677.63370754388,0,1287.937975862254 -447,557,980,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.8282916372,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.69,44.4,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,782,-5498.312724183092,0,0,0,619.6963924274811 -448,558,981,982,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,6.274977195836378,6.376639910753026,8,7,-23.82427159696899,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.465370405669389,6.176299757823656,55,45,52,45,8,1,1,0,0,0,4,2,0,1317,465649.6554768099,120290.7039346815,270974.889402403,0,1713.50384636042 -448,558,982,981,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,8,-7,-35.07201875809497,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,4,2,0,1317,465649.6554768099,120290.7039346815,270974.889402403,0,1713.50384636042 -449,559,983,-9,985,986,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.159831330644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,3,1,1178.25,150371.478754718,71057.29881218023,201644.3590652491,28761.75802489841,2551.240610041765 -449,559,984,-9,985,986,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.570119847594,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,1178.25,150371.478754718,71057.29881218023,201644.3590652491,28761.75802489841,2551.240610041765 -449,559,985,986,-9,-9,1,0,41,1,2,0,2,2,-9,1,4,7.004000355906467,6.784549419402206,0,15,-1,83.49453649707905,0,2,2,2019,23,11,12,12,1,11,0,10.61044174768963,10.61044174768963,0,0,0,0,14.5,1,1,0,0,0,27.87,64.32000000000001,34.66,56.88,3.333333333333333,1,1,0,0,13,5,3,1,1178.25,150371.478754718,71057.29881218023,201644.3590652491,28761.75802489841,2551.240610041765 -449,559,986,985,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.227559307374305,8.105568914894986,0,15,1,79.35432525130243,0,2,2,2019,15,3,37,49,1,3,0,14.11710000027914,14.11710000027914,0,0,0,0,14.5,1,1,0,0,0,34.66,56.88,27.87,64.32000000000001,3.333333333333333,1,1,0,0,13,5,3,1,1178.25,150371.478754718,71057.29881218023,201644.3590652491,28761.75802489841,2551.240610041765 -450,560,987,-9,988,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.9985542144509,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,773,21083.50946373238,-15753.97861656728,0,0,1398.535873077192 -450,560,988,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,7.019802033045404,7.259575350418224,0,0,0,-984.5216114059642,0,-9,2,2019,17,5,16,16,1,5,0,11.17978696373952,11.17978696373952,0,0,0,0,0,1,1,0,0,0,50.85,28.5,-9,-9,8.333333333333334,4,2,0,0,8,12,2,0,773,21083.50946373238,-15753.97861656728,0,0,1398.535873077192 -451,561,989,990,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.34991955598813,8.378720328846091,41,8,-64.49811623546995,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.479015117414893,8.444193587662888,54.37,54.8,50,47,5,1,1,0,0,0,9,4,1,442.5,832962.400956703,423179.6533440608,461235.4298655469,0,3894.251209428191 -451,561,990,989,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,41,-8,118.8340705302691,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,54.37,54.8,8.333333333333334,1,1,0,0,4,9,4,1,442.5,832962.400956703,423179.6533440608,461235.4298655469,0,3894.251209428191 -452,562,991,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,6.264780763531189,5.681056685867599,0,0,-886.8901857504245,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,3.189034872411648,0,0,0,1,1,0,5.67006775262296,5.756260466622641,45.82,38.14,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,235,411190.2009532461,80963.71447617147,256803.390729703,0,823.8897775503337 -453,563,992,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.996728597641811,8.913797214921125,0,0,0,-1021.099461511382,0,2,2,2019,6,0,70,67,1,0,0,13.68982700541067,13.68982700541067,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,9,5,0,202,2052235.379576815,684000.1990069167,638100.4865569026,0,3243.828152997834 -454,564,993,-9,995,994,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.550156432756,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,452,66243.45875851017,95426.28239052267,117004.354754621,88352.85866766276,3314.626126135363 -454,564,994,995,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.541965798386961,8.659114116528643,0,3,0,67.29868834570414,0,-9,-9,2019,12,0,60,70,1,0,0,9.661738866830856,9.661738866830856,0,0,0,0,0,1,1,0,3.134216275258352,0,41.64,54.12,45.67,53.13,6.666666666666667,1,1,0,0,8,13,4,1,452,66243.45875851017,95426.28239052267,117004.354754621,88352.85866766276,3314.626126135363 -454,564,995,994,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,7.787106840847286,7.668434698819173,0,3,0,9.247871532195287,0,-9,-9,2019,8,0,18,25,1,0,0,15.54086792557881,15.54086792557881,0,0,0,0,0,1,1,0,0,0,45.67,53.13,41.64,54.12,6.666666666666667,1,1,0,0,6,13,4,1,452,66243.45875851017,95426.28239052267,117004.354754621,88352.85866766276,3314.626126135363 -455,565,996,-9,-9,-9,1,0,30,0,0,0,1,1,0,0,3,0,0,0,0,0,-996.7102834511361,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,8,2,1,1,965,-73659.98202783606,0,0,0,978.0716773150162 -456,566,997,998,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.315440273871006,6.35117176565049,8,-1,-1.236386632747665,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.996414690013056,5.789688177777998,51.24,40.87,49.18,51.65,8.333333333333334,1,1,0,1,3,12,2,1,468,535834.929104276,189848.5051290474,172905.5234649624,0,992.8024133106843 -456,566,998,997,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,8,1,-129.3456510797268,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.816719655576985,0,0,1,1,0,0,0,49.18,51.65,51.24,40.87,5,1,1,0,1,0,12,2,1,468,535834.929104276,189848.5051290474,172905.5234649624,0,992.8024133106843 -457,567,999,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.255951385389015,6.121160803534538,0,0,-1004.225286659721,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.127353121989018,6.304415412492791,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,623,362800.8135792865,172993.2370934395,200949.5070663573,0,1466.634518888089 -458,568,1000,1001,-9,-9,1,0,31,0,2,0,1,1,-9,0,5,8.348701177174961,8.114818667167595,0,1,0,47.25389012018786,-9,2,2,2019,8,0,30,0,1,0,0,17.06339875430568,17.06339875430568,0,0,0,0,0,1,1,0,0,0,51.67,60.18,60.12,54.8,10,1,1,0,0,9,4,4,1,805.5,415233.146330211,260875.9250950865,202330.9722790554,78643.99604325912,2796.142608620673 -458,568,1001,1000,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.333795052668577,8.395728705628864,0,1,9,-16.93276427343289,-9,2,2,2019,5,0,48,0,1,0,0,8.570009713294139,8.570009713294139,0,0,0,1.631241410795047,0,1,1,0,0,0,60.12,54.8,51.67,60.18,8.333333333333334,1,1,0,0,11,4,4,1,805.5,415233.146330211,260875.9250950865,202330.9722790554,78643.99604325912,2796.142608620673 -458,568,1002,-9,1000,1001,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.6226743158791,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,805.5,415233.146330211,260875.9250950865,202330.9722790554,78643.99604325912,2796.142608620673 -458,568,1003,-9,1000,1001,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.625892020355,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,805.5,415233.146330211,260875.9250950865,202330.9722790554,78643.99604325912,2796.142608620673 -459,569,1004,1005,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.583768917529434,6.464657856115723,43,-6,50.64180152216908,0,3,-9,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,6.581543678045757,46.18,45,42.91,31.55,8.333333333333334,1,1,0,0,6,7,3,1,237.5,1215997.334683893,368182.8567530208,601275.9535343337,0,2417.340326589721 -459,569,1005,1004,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.37748179785529,7.212165670496765,43,6,-108.0150714962424,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,3.905668106392978,7.385454798764116,42.91,31.55,46.18,45,3.333333333333333,1,1,0,0,0,7,3,1,237.5,1215997.334683893,368182.8567530208,601275.9535343337,0,2417.340326589721 -460,570,1006,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1062.433877566597,-9,2,3,2019,15,3,0,0,4,3,0,0,0,1,6.688104152988759,6.659352762627686,50.22046142432669,0,1,1,0,0,0,33.77,39.42,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,283,35463.9417003358,0,191149.2012371942,0,1243.057473011942 -461,571,1007,1008,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.835960445120435,9.030137216640806,0,8,-11,46.77887656287368,0,2,1,2019,7,0,60,60,1,0,0,12.40143690463162,12.40143690463162,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,8,6,5,1,1916,159921.4011490352,68850.72606895182,0,0,2887.456771936911 -461,571,1008,1007,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.269330326797657,5.406766168040787,8,11,18.87372043788539,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.325466559283692,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,1916,159921.4011490352,68850.72606895182,0,0,2887.456771936911 -462,572,1009,1010,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.755877424685332,4.96341596815668,9,-2,111.5822812716016,0,3,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.096935267963829,4.499534541025952,50.28,30.69,46.03,50.54,8.333333333333334,1,1,0,0,8,11,2,1,2036.5,1279639.049971872,641960.663917549,426764.365041276,0,1796.296767620436 -462,572,1010,1009,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.628551392923265,6.778421808802342,9,2,80.99928522174149,-9,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.688304809190355,6.969574999396386,46.03,50.54,50.28,30.69,8.333333333333334,1,1,0,0,0,11,2,1,2036.5,1279639.049971872,641960.663917549,426764.365041276,0,1796.296767620436 -463,573,1011,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,5.171394531085976,4.931038171068495,0,0,-953.9776046674317,0,2,2,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,27,1,1,0,0,4.934950759172184,20.96,46.34,-9,-9,1.666666666666667,1,1,0,1,8,9,2,0,451,180042.5252104778,-6810.088317493242,0,0,1198.712369873076 -464,574,1012,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.715687134289471,9.147246638450865,0,0,0,-879.7550972998421,0,2,-9,2019,6,0,45,48,1,0,0,15.59614473181084,15.59614473181084,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,2694,-14071.97396769802,0,0,0,2664.539875639126 -465,575,1013,1014,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,7.770282847228564,7.713992499683578,26,4,14.51545431581628,0,2,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,5.214026118234462,7.745996385573664,37.52,46.6,56,51.53,6.666666666666667,1,1,0,0,10,5,4,1,1001,2083331.140078062,1076963.623374324,369590.3352116164,0,2824.268984711608 -465,575,1014,1013,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,8.101031358525509,7.93967940914882,26,-4,23.71784571191072,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.388564519884948,8.081639824348365,56,51.53,37.52,46.6,6.666666666666667,1,1,0,0,10,5,4,1,1001,2083331.140078062,1076963.623374324,369590.3352116164,0,2824.268984711608 -466,576,1015,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.787917658171586,5.33977555505674,0,0,-1078.021977448294,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.73101816972821,5.855946798713743,49.21,38.32,-9,-9,5,1,1,0,0,0,1,2,1,414,136679.4863342933,-12592.20793462594,102552.968279686,0,1352.174204412282 -467,577,1016,1017,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.054200058317036,8.185215985328881,0,8,2,15.12062628318206,0,2,2,2019,6,0,39,39,1,0,0,7.142028555108041,7.142028555108041,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,8.333333333333334,1,1,0,0,8,1,4,1,184.5,105713.4998571237,118971.3382713295,94645.18573008486,0,1765.823385992123 -467,577,1017,1016,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.388100971616939,7.37967414315989,0,8,-2,-6.883972337712071,0,-9,-9,2019,12,0,24,26,1,0,0,6.748241030829422,6.748241030829422,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,5,1,1,0,0,8,1,4,1,184.5,105713.4998571237,118971.3382713295,94645.18573008486,0,1765.823385992123 -467,578,1018,-9,1017,1016,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1120.758400447072,1,2,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.8768025711421635,0,39.28,55.39,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,65,75131.41744433805,0,0,0,-44.22642402637849 -468,579,1019,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.495642302519034,7.681889683875569,0,0,0,-1027.405727002957,-9,-9,-9,2019,9,0,50,0,1,0,0,4.493582949740197,4.493582949740197,0,0,0,0,0,0,0,0,.1710047792908177,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,594,-73385.6464270647,-60856.06984332689,0,0,727.5856116916048 -468,580,1020,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.467785679887776,8.515543208891287,0,0,0,-926.3614704581487,-9,-9,-9,2019,8,0,50,0,1,0,0,11.19695303183029,11.19695303183029,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,5,5,1,666,112489.540458994,-76822.78235637641,0,0,2587.109104532087 -469,581,1021,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.170895035395993,6.084475233159848,0,0,-1066.470479444684,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.717678765266195,51.98,54.53,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,623,176673.0894318886,56481.80969933736,0,0,1163.764939664807 -469,582,1022,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.010416260491,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1067,-207083.8627306965,0,0,0,1141.870214992107 -470,583,1023,1024,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.385785376593383,7.691114303685122,53,-1,22.52957657100168,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.94303960017168,7.609139660896089,53.37,52.37,49.28,50.19,8.333333333333334,1,1,0,0,0,9,3,1,701.5,1433622.081346962,657265.314280679,459281.1452729355,0,2987.671138138381 -470,583,1024,1023,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.382485657969739,7.619932496151469,53,1,-46.97423855430024,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.431081816047314,7.716282630016787,49.28,50.19,53.37,52.37,8.333333333333334,1,1,0,0,0,9,3,1,701.5,1433622.081346962,657265.314280679,459281.1452729355,0,2987.671138138381 -471,584,1025,1029,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,3,-3,-132.8555379994017,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,55.12,51,57,6.666666666666667,1,1,0,0,6,8,3,0,998.6,110533.5722706115,124955.4615872869,228582.0885205387,187840.6247033188,4346.857739679412 -471,584,1026,-9,1025,1029,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.5289403738794,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,998.6,110533.5722706115,124955.4615872869,228582.0885205387,187840.6247033188,4346.857739679412 -471,584,1027,-9,1025,1029,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.033964470121,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,998.6,110533.5722706115,124955.4615872869,228582.0885205387,187840.6247033188,4346.857739679412 -471,584,1028,-9,1025,1029,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.6445463313456,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,998.6,110533.5722706115,124955.4615872869,228582.0885205387,187840.6247033188,4346.857739679412 -471,584,1029,1025,-9,-9,1,1,32,0,3,0,3,3,-9,0,4,8.490969634356945,8.87725071838414,0,3,3,173.8065992241829,0,-9,-9,2019,10,0,60,16,1,1,0,12.34610828260921,12.34610828260921,0,0,0,0,0,1,1,0,0,0,51,57,45,55.12,7,2,3,0,0,1,8,3,0,998.6,110533.5722706115,124955.4615872869,228582.0885205387,187840.6247033188,4346.857739679412 -472,585,1030,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.777831388957654,5.408133165680723,0,0,-936.4319827491668,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,2.906763753325349,0,24.76466447488924,0,1,1,0,0,5.751823069424323,40.55,21,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,100,-41171.87053807917,-53084.63325410595,11932.29249376353,0,1203.421355876919 -473,586,1031,1033,-9,-9,1,1,50,0,2,0,1,1,-9,1,2,0,0,0,3,8,26.80855933399435,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,2.532099227822115,0,44,40,50.94,53.44,8.333333333333334,1,1,0,0,1,13,2,1,737,345110.9293238842,14445.59824942477,331525.9370465468,0,1778.228775768656 -473,586,1032,-9,1033,1031,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.442636782222,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,737,345110.9293238842,14445.59824942477,331525.9370465468,0,1778.228775768656 -473,586,1033,1031,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.617909015216372,6.516694178862689,0,13,-8,5.544610553291674,0,2,2,2019,11,0,14,15,1,0,0,6.006315841951595,6.006315841951595,0,0,0,0,42,1,0,1,0,0,50.94,53.44,44,40,6.666666666666667,1,1,0,0,5,13,2,1,737,345110.9293238842,14445.59824942477,331525.9370465468,0,1778.228775768656 -474,587,1034,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.015386500517953,7.283158265037304,0,0,-1057.974207182568,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.991965086706157,7.12699901783389,57.16,56.15,-9,-9,10,1,1,0,0,0,7,2,1,229,91433.93611919353,79102.74506315036,0,0,1340.281754811443 -475,588,1035,-9,-9,-9,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-1047.426168073617,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,62.84,-9,-9,6.666666666666667,1,1,0,1,12,12,1,0,187,203207.0467228999,0,0,0,306.0104958872399 -476,589,1036,1038,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.119240870570781,8.140296480376747,0,24,-4,18.44151714196439,0,3,2,2019,13,1,22,22,1,1,0,14.67329032665262,14.67329032665262,0,0,0,0,0,1,1,0,1.904638487935315,0,43.38,52.86,47.9,43.96,5,1,1,0,0,13,2,5,1,771.3333333333334,2222760.943985434,1706746.429281082,198273.7225236699,0,6498.035971504859 -476,589,1037,-9,1036,1038,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1095.427737240746,-9,1,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,771.3333333333334,2222760.943985434,1706746.429281082,198273.7225236699,0,6498.035971504859 -476,589,1038,1036,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.487738807166924,9.454066678846806,0,11,4,52.79616428089626,0,-9,-9,2019,10,0,40,35,1,0,0,42.07811041464965,42.07811041464965,0,0,0,0,0,1,1,0,0,0,47.9,43.96,43.38,52.86,5,1,1,0,0,13,2,5,1,771.3333333333334,2222760.943985434,1706746.429281082,198273.7225236699,0,6498.035971504859 -477,590,1039,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.398258302123001,8.174050606958327,5.005586368196322,0,0,-931.8102045889109,0,1,2,2019,6,1,30,29,1,1,0,22.27113088991337,22.27113088991337,0,0,0,0,0,1,1,0,5.237556005690964,0,49.33,58.41,-9,-9,8.333333333333334,1,1,0,1,12,10,4,0,537,250513.2587015451,101614.2920033824,198470.0648813014,50186.89549921126,1746.115301353781 -477,590,1040,-9,1039,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-963.9573784239485,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,4,0,537,250513.2587015451,101614.2920033824,198470.0648813014,50186.89549921126,1746.115301353781 -477,590,1041,-9,1039,-9,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-756.3681024157914,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,4,0,537,250513.2587015451,101614.2920033824,198470.0648813014,50186.89549921126,1746.115301353781 -478,591,1042,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.985474920974768,7.870374148393486,0,0,0,-1035.609425706046,0,2,2,2019,23,11,78,41,1,11,0,4.293894615048992,4.293894615048992,0,0,0,0,0,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,810,120918.3052886028,7978.790965733868,0,0,1036.467594022281 -479,592,1043,1044,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,0,0,21,1,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,1,1,0,0,0,5,1,0,4641,-85853.19972087399,21978.11784240038,0,0,2210.918603083568 -479,592,1044,1043,-9,-9,1,0,50,0,0,0,2,2,-9,1,4,0,0,0,21,-1,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,54,53,55,8,1,1,0,0,0,5,1,0,4641,-85853.19972087399,21978.11784240038,0,0,2210.918603083568 -480,593,1045,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.150182591390935,7.372228670389535,0,0,0,-1012.675926632644,0,2,2,2019,24,12,24,24,1,12,0,8.450556373153436,8.450556373153436,0,0,0,1.244285893886817,0,1,0,1,.9194287330568589,0,20.59,55.4,-9,-9,0,1,1,0,0,8,2,3,1,836,225107.1514071092,132184.7516687136,0,0,1548.719572185217 -480,594,1046,-9,1045,-9,1,0,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1030.979910822259,-9,3,-9,2019,8,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,42.12,47.3,-9,-9,10,1,1,1,0,0,2,1,1,1065,262471.118376719,0,0,0,37.19966489733824 -481,595,1047,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.502407729597437,7.668143282499645,0,0,0,-1029.570209689955,-9,2,-9,2019,10,0,19,0,1,1,1,12.66176660104617,12.66176660104617,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,3,0,253,-143858.8561614729,0,0,0,985.4847652050565 -481,596,1048,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.721326172856614,7.827449436263163,0,0,0,-990.2177372579889,-9,2,-9,2019,15,5,14,0,1,5,1,17.60002832169891,17.60002832169891,0,0,0,0,0,1,1,0,0,0,36.73,57.63,-9,-9,8.333333333333334,3,4,0,0,5,8,3,0,274,-111151.8721194603,0,0,0,1523.016687440281 -481,597,1049,-9,-9,-9,1,1,18,0,0,1,2,0,-9,0,3,0,6.336470817971963,6.188407273336987,0,0,-1079.315160838867,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,1,0,5.729399128124641,0,41,56.99,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,251,-144531.3392405773,52547.36190555012,0,0,-251.6985489551834 -482,598,1050,-9,1053,1052,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.267743322704,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,0,812,90808.79863653856,1286.95924294363,0,0,2412.555597043209 -482,598,1051,-9,1053,1052,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.344029470047,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,812,90808.79863653856,1286.95924294363,0,0,2412.555597043209 -482,598,1052,1053,-9,-9,1,1,31,1,4,0,2,2,-9,0,5,8.272107275325943,8.604719780769495,0,9,2,48.85308114607318,0,-9,-9,2019,11,0,45,47,1,0,0,14.4981810216765,14.4981810216765,0,0,0,0,0,1,1,0,1.302971895005784,0,57.06,57.76,33.74,63,5,1,1,0,1,10,11,3,0,812,90808.79863653856,1286.95924294363,0,0,2412.555597043209 -482,598,1053,1052,-9,-9,1,0,29,1,4,0,2,2,-9,0,4,0,0,0,9,-2,-38.65581403727762,0,-9,-9,2019,14,3,0,29,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,57.06,57.76,5,1,1,1,1,5,11,3,0,812,90808.79863653856,1286.95924294363,0,0,2412.555597043209 -482,598,1054,-9,1053,1052,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1097.980743953225,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,812,90808.79863653856,1286.95924294363,0,0,2412.555597043209 -483,599,1055,-9,-9,-9,1,0,61,0,0,0,1,1,-9,1,1,0,0,0,0,0,-851.1213725972818,0,2,1,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,2.079487259749185,0,28.54,22.31,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,180,162228.829139317,0,0,0,985.3139619159842 -484,600,1056,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,6.722837601367404,7.129207857998272,0,0,-955.6366038162236,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.914669818415333,0,56.19,5.98,-9,-9,0,1,1,0,0,0,4,2,1,272,49678.13472634341,-8387.107438703722,111571.7364075304,0,991.7253079199231 -485,601,1057,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.23337553824382,7.2982844083248,0,0,-1106.79579666812,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.823212949839601,7.133310963198412,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,810,707605.5522071426,443458.7727795158,136574.3567347972,0,1903.136958706853 -486,602,1058,-9,1059,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.5353036391646,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,552,766904.3424218519,200436.1813897823,451190.0328107735,45443.66407222181,2036.342290663508 -486,602,1059,-9,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,8.319216546157559,8.109616398063324,0,0,0,-891.8037458741694,0,2,2,2019,10,2,39,29,1,2,0,11.86542139585742,11.86542139585742,0,0,0,0,0,1,1,0,1.806947304808959,0,55.04,41.82,-9,-9,10,1,1,0,0,7,9,3,0,552,766904.3424218519,200436.1813897823,451190.0328107735,45443.66407222181,2036.342290663508 -486,602,1060,-9,1059,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.629151212462,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,552,766904.3424218519,200436.1813897823,451190.0328107735,45443.66407222181,2036.342290663508 -487,603,1061,1062,-9,-9,1,0,45,1,4,0,3,3,-9,1,2,0,0,0,9,-5,0,0,3,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45.49,23.88,52,54.51,6.666666666666667,1,1,0,0,0,13,1,0,463,76216.88884524947,0,0,0,1362.915708878685 -487,603,1062,1061,-9,-9,1,1,50,1,4,0,3,3,-9,1,3,0,0,0,9,5,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52,54.51,45.49,23.88,6.666666666666667,1,1,0,1,0,13,1,0,463,76216.88884524947,0,0,0,1362.915708878685 -487,603,1063,-9,1061,1062,1,0,14,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.463556709489,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,13,1,0,463,76216.88884524947,0,0,0,1362.915708878685 -487,604,1064,-9,1065,-9,1,1,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-924.9522468668682,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,1,0,1065.25,35278.4078847815,0,0,0,770.6976510198512 -487,604,1065,-9,1061,1062,1,0,26,1,4,0,2,2,-9,0,3,0,0,0,0,0,-1012.118578071357,0,3,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1065.25,35278.4078847815,0,0,0,770.6976510198512 -487,604,1066,-9,1065,-9,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.187608223102,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,1065.25,35278.4078847815,0,0,0,770.6976510198512 -487,604,1067,-9,1065,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.886697566846,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,1065.25,35278.4078847815,0,0,0,770.6976510198512 -487,605,1068,-9,1061,1062,1,1,20,1,4,0,2,2,-9,0,4,7.670706390273761,7.525435009475365,0,0,0,-965.5981816513333,0,3,3,2019,11,0,37,36,1,2,1,5.824715829199171,5.824715829199171,0,0,0,0,2,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,3,13,3,0,987,49857.05314187744,6590.659958088954,0,0,732.0866157560818 -488,606,1069,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.597015133667,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.994567346375156,0,44.24,28.07,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,1255,31026.46715002741,0,0,0,1668.96866397036 -488,607,1070,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.555989211396028,9.526978383790441,3.470502572147448,0,0,-947.4347914341032,0,-9,-9,2019,13,2,37,37,1,2,0,43.19002485375516,43.19002485375516,0,0,0,0,0,1,1,0,2.878556038409521,3.957024408470393,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,6,8,5,0,793,849749.1162724197,0,572267.4500613444,0,6233.155191643686 -489,608,1071,1072,-9,-9,1,0,63,1,2,0,2,2,-9,0,4,0,0,0,10,-1,-107.1060327309657,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,45.91,59.89,46.75,56.99,8.333333333333334,1,1,0,0,4,13,3,1,714.5,202884.9019887087,219742.7202741767,184718.3601385739,17603.6035424846,2360.462465935364 -489,608,1072,1071,-9,-9,1,1,64,1,2,0,3,3,-9,0,4,7.920669910812579,8.091953029077656,0,10,1,-70.38258032858529,0,3,3,2019,12,0,38,40,1,0,0,9.412909615546372,9.412909615546372,0,0,0,0,0,1,0,1,0,0,46.75,56.99,45.91,59.89,8.333333333333334,1,1,0,0,9,13,3,1,714.5,202884.9019887087,219742.7202741767,184718.3601385739,17603.6035424846,2360.462465935364 -489,609,1073,1074,1071,1072,1,1,34,1,2,0,2,2,-9,0,3,8.047205094777389,7.60013845887592,0,4,1,27.20892529640503,0,3,3,2019,13,1,45,48,1,1,0,6.955790867662323,6.955790867662323,0,0,0,0,0,1,0,1,0,0,45.88,53.37,37.51,51.79,6.666666666666667,1,1,0,0,11,13,3,1,263.3333333333333,-109171.0163436465,-23078.9218626815,0,0,2347.695182505745 -489,609,1074,1073,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.605703870650316,7.540617015122827,0,4,-1,51.28824062208131,0,-9,-9,2019,21,7,25,42,1,7,0,9.608475727992863,9.608475727992863,0,0,0,0,0,1,0,1,0,0,37.51,51.79,45.88,53.37,8.333333333333334,1,1,0,0,2,13,3,1,263.3333333333333,-109171.0163436465,-23078.9218626815,0,0,2347.695182505745 -489,609,1075,-9,1074,1073,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.985266573088,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,263.3333333333333,-109171.0163436465,-23078.9218626815,0,0,2347.695182505745 -489,610,1076,-9,-9,-9,1,0,20,1,2,0,3,3,-9,0,4,0,0,0,0,0,-864.1805443420602,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,0,1,0,13,1,1,1074,73353.45361562466,0,0,0,707.9055234210705 -489,610,1077,-9,1076,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.8160328159885,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,1,1,1074,73353.45361562466,0,0,0,707.9055234210705 -489,611,1078,-9,-9,-9,1,1,19,1,2,0,3,3,-9,0,3,7.876196476053425,7.989404100397024,0,0,0,-1053.262031499132,0,-9,-9,2019,9,3,50,40,1,3,0,5.76239389369216,5.76239389369216,0,0,0,0,0,1,0,1,5.825298561876414,0,46.8,45.18,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,459,106944.9527419237,22067.68883219056,0,0,1556.913025093905 -490,612,1079,1080,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,6,0,-40.6941212512913,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.073341029739373,0,56,52,64,38.07,8,1,1,0,0,0,9,2,1,115.5,345299.4092895951,370764.3718315946,172485.1859980986,0,2306.499893365465 -490,612,1080,1079,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.062943352656785,7.24672314109911,45,0,-57.64922470951838,0,3,3,2019,5,0,0,33,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.256764551630485,64,38.07,56,52,8.333333333333334,1,1,0,0,9,9,2,1,115.5,345299.4092895951,370764.3718315946,172485.1859980986,0,2306.499893365465 -491,613,1081,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,5.869506884371593,5.469155839637008,0,0,-926.6611306016956,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,5.620906146146869,19.37,30.88,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,338,140414.8870060503,-31707.29301289378,0,0,1390.770952760431 -492,614,1082,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-984.978111046276,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,875,43927.18372120544,0,92863.67392966649,0,1001.876628630647 -493,615,1083,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,5.07383430800409,5.112993824438658,0,0,-1049.742095877901,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.727118283606209,5.152481599076644,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,8,2,1,446,473677.7073563388,32682.93086094472,0,0,-1126.52008382674 -493,616,1084,-9,-9,1083,1,0,28,0,0,0,2,2,-9,0,3,7.86664252662988,7.919651262537286,0,0,0,-945.3309529514388,0,-9,2,2019,12,1,38,38,1,1,0,9.324198084643118,9.324198084643118,0,0,0,0,0,0,0,0,0,0,39.08,57.81,-9,-9,6.666666666666667,1,1,0,0,6,8,4,1,347,-8447.38764259727,0,0,0,1638.353551606721 -494,617,1085,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1047.812193857425,0,2,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.42,32.69,-9,-9,0,1,1,0,0,0,7,1,0,203,26084.04649462062,-27948.2230043393,0,0,735.0951688691616 -495,618,1086,-9,-9,-9,1,1,98,0,0,0,3,3,-9,0,4,0,0,0,0,0,-993.50574191703,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,1.064796046271075,0,57.17,39.88,-9,-9,10,1,1,0,0,1,7,1,0,639,141920.7878719581,0,0,0,679.289090828507 -496,619,1087,-9,1088,1089,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.880152368581,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,479.6666666666667,782306.7958189765,284078.027342689,490571.3509287597,109524.1804988699,4513.702366105532 -496,619,1088,1089,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,8.630414246189822,8.695286134959792,0,10,-3,-7.509149011047569,0,2,3,2019,13,1,51,25,1,1,0,11.63023535672936,11.63023535672936,0,0,0,0,0,1,1,0,0,0,40.48,62.56,57.16,56.15,5,1,1,0,1,13,2,5,1,479.6666666666667,782306.7958189765,284078.027342689,490571.3509287597,109524.1804988699,4513.702366105532 -496,619,1089,1088,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.720716193507581,9.21857196478072,0,10,3,21.52268721329319,0,2,2,2019,7,0,57,52,1,0,0,13.46991711073398,13.46991711073398,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.48,62.56,8.333333333333334,1,1,0,1,13,2,5,1,479.6666666666667,782306.7958189765,284078.027342689,490571.3509287597,109524.1804988699,4513.702366105532 -497,620,1090,1091,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.706773703927384,8.565140032045342,0,5,2,108.3219065899345,0,3,3,2019,13,3,35,42,1,3,0,16.51801845185838,16.51801845185838,0,0,0,0,0,0,0,0,0,0,49.78,60.98,48,56,8.333333333333334,1,1,0,0,5,12,5,1,1051.5,110256.9872922015,87401.04712011793,0,0,3099.25207494602 -497,620,1091,1090,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.332752783822534,7.575748367363838,0,5,-2,44.51344962184015,0,2,2,2019,11,0,45,45,1,2,0,3.381753216516048,3.381753216516048,0,0,0,0,0,0,0,0,3.51158949688153,0,48,56,49.78,60.98,7,1,1,0,0,1,12,5,1,1051.5,110256.9872922015,87401.04712011793,0,0,3099.25207494602 -498,621,1092,1093,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.238756166123208,8.363907191042713,0,30,3,-68.58012957826539,0,3,3,2019,9,0,37,40,1,0,0,14.96301740032034,14.96301740032034,0,0,0,0,0,0,0,0,2.16302714893789,0,54.62,48,52,54.51,8.333333333333334,1,1,0,0,9,13,5,1,445,1276477.891571698,1156026.543787979,207688.8671653187,40748.49313812606,3455.766964875224 -498,621,1093,1092,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.508580741239175,8.646282220606997,0,31,-3,109.2262523344142,0,2,-9,2019,11,0,38,37,1,0,0,15.29827143885667,15.29827143885667,0,0,0,0,0,0,0,0,1.057754621403716,0,52,54.51,54.62,48,8.333333333333334,1,1,0,0,9,13,5,1,445,1276477.891571698,1156026.543787979,207688.8671653187,40748.49313812606,3455.766964875224 -498,622,1094,-9,1093,1092,1,0,23,0,0,0,2,2,-9,0,5,6.355175659931292,6.087064256734847,0,0,0,-1030.223258453881,0,2,2,2019,12,0,8,14,1,0,1,5.995648095368546,5.995648095368546,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,826,4192.939119216277,0,0,0,560.2940690112421 -498,623,1095,-9,1093,1092,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1117.836943547235,-9,2,1,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,5,1,1,1,1,1,13,1,1,731,-95327.69241204695,0,0,0,0 -499,624,1096,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.871862035304765,6.533776608157996,0,0,-938.4976373100944,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.945145824994809,6.940767812365813,56.15,41.66,-9,-9,10,1,1,0,0,0,9,2,0,220,524109.4643922134,128547.5846848543,251995.8463216354,0,1501.573998107473 -500,625,1097,1099,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.716030892126989,8.84420904103046,0,6,7,19.43002893827441,0,2,-9,2019,11,2,45,40,1,2,0,13.28957579874232,13.28957579874232,0,0,0,0,0,1,1,0,0,0,43.6,51.61,43.42,62.33,8.333333333333334,1,1,0,0,6,4,4,0,688.75,75495.73831069793,27347.40233854283,137603.8634326003,75634.72682995995,3759.329977907583 -500,625,1098,-9,1099,1097,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.8967302594001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,688.75,75495.73831069793,27347.40233854283,137603.8634326003,75634.72682995995,3759.329977907583 -500,625,1099,1097,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.565811571740018,7.714226691282034,0,13,-7,9.523966147484561,0,-9,2,2019,8,1,15,7,1,1,0,19.10975394750597,19.10975394750597,0,0,0,0,0,1,1,0,0,0,43.42,62.33,43.6,51.61,8.333333333333334,1,1,0,0,5,4,4,0,688.75,75495.73831069793,27347.40233854283,137603.8634326003,75634.72682995995,3759.329977907583 -500,625,1100,-9,1099,1097,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.816936214918,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,688.75,75495.73831069793,27347.40233854283,137603.8634326003,75634.72682995995,3759.329977907583 -501,626,1101,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.657181591629863,7.769552838627133,0,0,-964.5927039051217,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.828000360699424,7.587170541037397,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,191,-8054.221792931159,80952.39994370329,0,0,1230.180986531928 -501,627,1102,-9,-9,1101,1,1,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1125.762557273531,0,-9,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,12,1,1,820,0,0,0,0,836.5168758898309 -502,628,1103,1104,-9,-9,1,0,20,1,1,0,2,2,-9,1,1,0,0,0,3,0,0,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.99,30.43,20.9,47.42,5,1,1,0,0,0,1,1,0,314.3333333333333,-26619.10272122638,0,0,0,2046.358210911246 -502,628,1104,1103,-9,-9,1,1,20,1,1,0,2,2,-9,1,2,0,0,0,3,0,0,-9,-9,-9,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.9,47.42,34.99,30.43,0,1,1,1,0,0,1,1,0,314.3333333333333,-26619.10272122638,0,0,0,2046.358210911246 -502,628,1105,-9,1103,1104,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.00357320707,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,314.3333333333333,-26619.10272122638,0,0,0,2046.358210911246 -503,629,1106,1107,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.595897648150469,9.02982021301424,0,33,1,58.20963796075209,0,2,3,2019,9,0,35,35,1,0,0,16.34921335315056,16.34921335315056,0,0,0,0,0,0,0,0,0,0,51.83,57.2,46.16,58.62,8.333333333333334,1,1,0,0,13,11,5,1,656,1210911.599586347,891344.592110093,251353.4001440207,0,4113.559730861048 -503,629,1107,1106,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.420561985617441,8.712772117347534,0,33,-1,-85.4013085535976,-9,2,2,2019,11,0,45,0,1,0,0,12.86002076022898,12.86002076022898,0,0,0,0,27,0,0,0,1.081246228238328,0,46.16,58.62,51.83,57.2,8.333333333333334,1,1,0,0,13,11,5,1,656,1210911.599586347,891344.592110093,251353.4001440207,0,4113.559730861048 -504,630,1108,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.67154424388932,7.966186044069653,0,0,0,-1063.709641387875,0,2,3,2019,5,0,48,42,1,0,0,6.929822090620238,6.929822090620238,0,0,0,0,7,0,0,0,0,0,57.97,48.09,-9,-9,6.666666666666667,1,1,0,0,10,9,3,0,265,475782.8882703561,206756.2322430452,397566.0608881345,169653.3150186549,1078.238423611188 -504,631,1109,-9,-9,1108,1,1,24,0,0,0,2,2,-9,0,2,8.008646235216014,7.993689481933385,0,0,0,-940.2262803211745,0,3,2,2019,11,0,37,38,1,0,1,7.571250174319585,7.571250174319585,0,0,0,0,0,0,0,0,0,0,50.02,44.92,-9,-9,6.666666666666667,1,1,0,0,4,9,4,0,1240,279596.5613551894,0,0,0,1044.118499037164 -505,632,1110,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,4.820841813837407,5.256649909271477,0,0,-1039.629636472125,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.842447503128267,5.126716706433717,43.5,36.48,-9,-9,10,1,1,0,0,0,13,2,1,646,60398.06154815073,42412.54523346324,72154.23878451517,0,325.2511849702736 -506,633,1111,-9,1113,1114,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.0748081138646,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,512.5,750622.766416125,332149.5593295494,507216.9151351138,110811.2212594123,5181.5176941507 -506,633,1112,-9,1113,1114,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.7605863352679,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,512.5,750622.766416125,332149.5593295494,507216.9151351138,110811.2212594123,5181.5176941507 -506,633,1113,1114,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.844236024518386,8.801214190581463,0,16,-1,-33.71341805633781,0,1,1,2019,10,0,36,35,1,0,0,27.34096346063529,27.34096346063529,0,0,0,0,0,0,0,0,6.7195566337153,0,49.63,57.02,51.24,58.84,8.333333333333334,1,1,0,0,8,12,5,1,512.5,750622.766416125,332149.5593295494,507216.9151351138,110811.2212594123,5181.5176941507 -506,633,1114,1113,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.877997155497278,8.820201239050594,0,16,1,-51.24704056250969,0,2,1,2019,10,0,43,43,1,0,0,22.21822616445052,22.21822616445052,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.63,57.02,1.666666666666667,1,1,0,0,9,12,5,1,512.5,750622.766416125,332149.5593295494,507216.9151351138,110811.2212594123,5181.5176941507 -507,634,1115,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.601036955165743,8.731918157295178,0,0,0,-1074.211668037691,0,2,2,2019,6,0,40,42,1,0,0,21.87795044114376,21.87795044114376,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,873,875349.4953541372,607767.077470892,168110.4315340302,97938.51560044603,2786.111493379633 -508,635,1116,1117,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.022272697898431,6.717250730296842,30,6,5.926143546416337,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.693577681894165,6.582588306086383,53.22,48.44,57.16,56.15,8.333333333333334,1,1,0,0,8,10,3,1,1424.5,1089834.080882883,61566.76150621878,354950.7812981529,0,1183.297397965827 -508,635,1117,1116,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,6.480142801987117,6.717480840601892,5.103309409022426,35,-6,-44.23468322741188,0,3,3,2019,10,0,10,0,1,0,0,8.911714696866202,8.911714696866202,0,0,0,0,0,1,1,0,0,5.696106292444142,57.16,56.15,53.22,48.44,8.333333333333334,1,1,0,0,11,10,3,1,1424.5,1089834.080882883,61566.76150621878,354950.7812981529,0,1183.297397965827 -509,636,1118,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,0,0,-919.3304371919053,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,55.33,-9,-9,5,1,1,0,0,5,9,1,1,2018,-40257.32540607447,0,0,0,-364.4540223534423 -509,637,1119,-9,-9,1118,1,1,28,0,0,0,1,1,1,0,4,6.101628134421968,6.151342442323879,0,0,0,-931.2534491676893,-9,1,1,2019,11,0,15,0,1,0,0,3.442001001343184,3.442001001343184,0,0,0,0,0,0,0,0,0,0,41.87,59.15,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,370,-258532.0643836891,0,0,0,337.7642231221189 -510,638,1120,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.057356041028344,8.454759603227245,5.715566665139645,0,0,-955.8289518082474,0,3,3,2019,6,0,40,42,1,0,0,8.392803380016984,8.392803380016984,0,0,0,0,0,1,1,0,3.224451642036895,5.688916119748167,62.39,56.71,-9,-9,10,1,1,0,0,8,4,4,0,743,766151.4713951912,481666.311156314,173130.0664673307,-7553.057327305038,1624.985148359638 -511,639,1121,1124,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.480129360814892,9.002010674809645,0,17,0,37.68793794200145,0,3,2,2019,9,0,39,39,1,0,0,17.21857053433233,17.21857053433233,0,0,0,0,2,1,1,0,0,0,49.51,46.42,45.08,48.01,6.666666666666667,1,1,0,0,10,5,4,1,720.25,157021.3931187277,96304.72560046047,125022.5059155716,51264.51705725509,2934.184525859211 -511,639,1122,-9,1124,1121,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.202799033298,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,157021.3931187277,96304.72560046047,125022.5059155716,51264.51705725509,2934.184525859211 -511,639,1123,-9,1124,1121,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.869968549774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,157021.3931187277,96304.72560046047,125022.5059155716,51264.51705725509,2934.184525859211 -511,639,1124,1121,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.185043795317313,7.385767181549027,0,15,0,-82.73490305637812,0,3,3,2019,12,1,24,22,1,1,0,5.454247132616103,5.454247132616103,0,0,0,0,0,1,1,0,0,0,45.08,48.01,49.51,46.42,5,1,1,0,0,10,5,4,1,720.25,157021.3931187277,96304.72560046047,125022.5059155716,51264.51705725509,2934.184525859211 -512,640,1125,-9,1126,1127,1,1,23,0,0,0,1,1,-9,0,5,7.329596136134492,7.362348180678142,0,0,0,-1116.632073769096,0,2,2,2019,8,0,24,24,1,0,1,8.533466039716441,8.533466039716441,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,6.666666666666667,2,3,0,0,3,4,3,1,1206,-213519.1751762246,33422.71476038099,0,0,418.9889872282283 -512,641,1126,1127,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,25,-7,-35.1663558193733,0,-9,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,57.33,53.46,8.333333333333334,2,3,0,0,0,4,2,1,694.5,192061.833781823,0,25200.23216124763,0,1322.134405196339 -512,641,1127,1126,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.287528202060567,7.307854484366929,0,25,7,4.22382253631433,0,-9,-9,2019,6,0,35,24,1,0,0,4.995251679736231,4.995251679736231,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.39,37.66,8.333333333333334,2,3,0,0,9,4,2,1,694.5,192061.833781823,0,25200.23216124763,0,1322.134405196339 -512,642,1128,-9,1126,1127,1,0,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-1060.443296755639,-9,2,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,1,1,625,85257.91254295972,0,0,0,0 -513,643,1129,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1101.32416220083,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,8.26,42.6,-9,-9,0,1,1,0,1,0,6,1,0,232,23250.97329576529,25040.25973784125,30303.19185610599,0,1282.860763093104 -514,644,1130,1132,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.337484948074239,8.205252295384046,0,17,-5,-.8976841141123952,0,2,2,2019,11,0,37,38,1,2,0,13.92385557779984,13.92385557779984,0,0,0,0,0,0,0,0,0,0,49,56,44.96,43.15,7,1,1,0,0,1,2,3,0,720.25,386392.5415129347,217043.970384595,170580.1538755755,0,2316.611456575705 -514,644,1131,-9,1130,1132,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1005.489196608335,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,3,0,720.25,386392.5415129347,217043.970384595,170580.1538755755,0,2316.611456575705 -514,644,1132,1130,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,7.713717813486251,8.138661378286541,0,2,5,-86.10798646130966,0,-9,-9,2019,18,6,40,40,1,6,0,10.25408506770582,10.25408506770582,0,0,0,0,0,0,0,0,0,0,44.96,43.15,49,56,3.333333333333333,1,1,0,0,2,2,3,0,720.25,386392.5415129347,217043.970384595,170580.1538755755,0,2316.611456575705 -514,644,1133,-9,1130,1132,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.389480944889,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,720.25,386392.5415129347,217043.970384595,170580.1538755755,0,2316.611456575705 -515,645,1134,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.7473319946485,6.235010783126472,0,0,-1034.781891243202,0,2,1,2019,25,9,0,0,4,9,0,0,0,1,31.39164981753846,0,286.0616733567385,0,1,1,0,5.671849649023049,6.132794219034665,38.47,28.46,-9,-9,5,1,1,0,0,3,1,2,0,369,35878.32654558124,98361.9592974707,0,0,1262.753809593835 -516,646,1135,-9,-9,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.332690426413,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,47.24,-9,-9,8.333333333333334,2,3,0,0,3,6,1,0,473,-63492.63516278678,0,0,0,197.2547267294653 -517,647,1136,1137,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.450940001586602,8.518143703073147,0,27,0,-24.00435374439162,-9,2,3,2019,10,0,36,0,1,0,0,14.90056244851999,14.90056244851999,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,9,13,5,1,900,1459160.586279614,1168810.617602707,245953.1312933884,0,4358.346391574953 -517,647,1137,1136,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.312551806713861,9.134879734024043,0,27,0,54.7781185037209,-9,2,2,2019,9,0,40,0,1,0,0,31.98042228284201,31.98042228284201,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.37,54.8,6.666666666666667,1,1,0,0,9,13,5,1,900,1459160.586279614,1168810.617602707,245953.1312933884,0,4358.346391574953 -518,648,1138,-9,1140,1141,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.136464763911,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,970.5,35268.31877183208,97924.2268888925,55966.53656732691,84277.05518382043,3229.720752091965 -518,648,1139,-9,1140,1141,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.7171948893387,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,970.5,35268.31877183208,97924.2268888925,55966.53656732691,84277.05518382043,3229.720752091965 -518,648,1140,1141,-9,-9,1,0,31,0,2,0,1,1,-9,0,4,7.064662895528581,7.292685961272153,0,6,0,-11.49683065707146,0,2,-9,2019,19,7,26,16,1,7,0,5.559716425357032,5.559716425357032,0,0,0,0,0,1,1,0,4.309937307476078,0,36.54,60.21,54.96,53.17,8.333333333333334,1,1,0,0,7,10,4,1,970.5,35268.31877183208,97924.2268888925,55966.53656732691,84277.05518382043,3229.720752091965 -518,648,1141,1140,-9,-9,1,1,31,0,2,0,3,3,-9,0,3,8.61982794919272,8.694960587668843,0,6,0,77.80681116550129,0,-9,-9,2019,8,0,40,40,1,0,0,19.88910637076861,19.88910637076861,0,0,0,0,0,1,1,0,0,0,54.96,53.17,36.54,60.21,6.666666666666667,1,1,0,0,6,10,4,1,970.5,35268.31877183208,97924.2268888925,55966.53656732691,84277.05518382043,3229.720752091965 -519,649,1142,1145,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.54533058063872,7.674815974672329,0,13,-2,-78.97141733454575,0,1,3,2019,11,0,28,28,1,0,0,9.912258185395059,9.912258185395059,0,0,0,0,2,0,0,0,7.918258106004765,0,45.43,53.5,43.92,47.65,8.333333333333334,1,1,0,0,8,2,4,1,808.25,309170.1085384619,231198.4887944825,252622.5715704783,137668.9949773499,3956.651198450286 -519,649,1143,-9,1142,1145,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.2923423030845,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,808.25,309170.1085384619,231198.4887944825,252622.5715704783,137668.9949773499,3956.651198450286 -519,649,1144,-9,1142,1145,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.9538924527361,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,808.25,309170.1085384619,231198.4887944825,252622.5715704783,137668.9949773499,3956.651198450286 -519,649,1145,1142,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.822405256535493,8.772889522697698,0,13,2,-38.04264724585438,0,2,2,2019,11,0,43,52,1,0,0,13.79576370530216,13.79576370530216,0,0,0,0,0,0,0,0,6.316488575508365,0,43.92,47.65,45.43,53.5,5,1,1,0,0,9,2,4,1,808.25,309170.1085384619,231198.4887944825,252622.5715704783,137668.9949773499,3956.651198450286 -520,650,1146,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.792788471415822,6.881620873889377,0,0,-830.2524272169957,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.979720564930782,6.997780168653254,57.16,56.15,-9,-9,10,1,1,0,0,0,12,2,1,535,108922.6943176589,142239.2864493532,0,0,1712.543935362316 -521,651,1147,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.412229420666689,7.654770929623377,0,0,-1048.195096688615,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,3.677458254949466,7.081084588184974,36.13,52.03,-9,-9,6.666666666666667,1,1,0,0,7,12,3,1,570,739505.8448760812,209025.2279987181,90067.91905506866,0,1587.360626988832 -522,652,1148,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.136308885920041,8.25714864994141,0,0,0,-965.7859030981601,0,-9,-9,2019,8,1,37,35,1,1,0,12.1218299840509,12.1218299840509,0,0,0,0,0,0,0,0,1.745746204103353,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,5,10,4,0,576,-134977.5216518718,-36339.20160375742,0,0,1640.031297444731 -523,653,1149,-9,1151,1150,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.781570021938,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,681,26827.47060770944,-36914.31824149615,0,0,2007.378369595973 -523,653,1150,1151,-9,-9,1,1,27,2,2,0,2,2,-9,0,3,7.849554339317368,7.782467606284291,0,3,-2,-66.94594310495769,0,-9,-9,2019,15,5,43,42,1,5,0,8.417526014643647,8.417526014643647,0,0,0,0,0,1,1,0,0,0,45.21,53.42,49.04,55.86,6.666666666666667,1,1,0,0,11,5,3,1,681,26827.47060770944,-36914.31824149615,0,0,2007.378369595973 -523,653,1151,1150,-9,-9,1,0,29,2,2,0,2,2,-9,0,3,5.830743232699922,5.831217151659773,0,3,2,45.72179042590999,0,-9,-9,2019,14,2,16,16,1,2,0,1.838726413355742,1.838726413355742,0,0,0,0,0,1,1,0,0,0,49.04,55.86,45.21,53.42,6.666666666666667,1,1,0,0,9,5,3,1,681,26827.47060770944,-36914.31824149615,0,0,2007.378369595973 -523,653,1152,-9,1151,1150,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-946.7532994422459,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,681,26827.47060770944,-36914.31824149615,0,0,2007.378369595973 -524,654,1153,-9,1155,1154,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.853857416339,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,0,350.3333333333333,251173.8950735398,34882.05500190416,189964.3212400483,47133.4711657475,2229.652772809144 -524,654,1154,1155,-9,-9,1,1,30,0,1,0,1,1,-9,0,4,7.603990722471398,7.659335888991595,0,5,1,141.5923269721091,0,2,2,2019,10,0,45,40,1,1,0,6.892713071267422,6.892713071267422,0,0,0,0,0,1,1,0,3.836925510275229,0,49,58,40.86,51.7,7,1,1,0,0,1,11,4,0,350.3333333333333,251173.8950735398,34882.05500190416,189964.3212400483,47133.4711657475,2229.652772809144 -524,654,1155,1154,-9,-9,1,0,29,0,1,0,1,1,-9,0,3,7.942946835471663,8.034535664755223,0,5,-1,-52.01593398390791,0,-9,-9,2019,14,2,45,38,1,2,0,6.890894964279833,6.890894964279833,0,0,0,0,0,1,1,0,0,0,40.86,51.7,49,58,6.666666666666667,1,1,0,0,5,11,4,0,350.3333333333333,251173.8950735398,34882.05500190416,189964.3212400483,47133.4711657475,2229.652772809144 -525,655,1156,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.75712396017091,8.672243826853332,0,0,0,-999.538861636401,0,2,2,2019,11,2,20,40,1,2,0,31.38647999640824,31.38647999640824,0,0,0,0,0,0,0,0,0,0,43.85,50.34,-9,-9,5,1,1,0,0,10,2,5,1,990,418527.7678167687,260581.8513690213,199437.118190133,0,1935.488229973459 -526,656,1157,-9,-9,-9,1,0,33,1,4,0,2,2,-9,0,3,6.44469224600533,7.479509917635664,6.61655984770831,0,0,-990.3737899276424,0,2,2,2019,8,0,11,0,1,0,0,8.339878769481043,8.339878769481043,0,0,0,0,0,1,1,0,6.691863454609217,0,57.92,51.82,-9,-9,5,1,1,0,0,4,4,2,0,649,-11424.06266940869,72331.14247243626,0,0,2007.25109795893 -526,656,1158,-9,1157,-9,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-948.2288212510476,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,649,-11424.06266940869,72331.14247243626,0,0,2007.25109795893 -526,656,1159,-9,1157,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.098249708898,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,2,0,649,-11424.06266940869,72331.14247243626,0,0,2007.25109795893 -526,656,1160,-9,1157,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-864.0689276847173,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,649,-11424.06266940869,72331.14247243626,0,0,2007.25109795893 -526,656,1161,-9,1157,-9,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.4589090177645,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,2,0,649,-11424.06266940869,72331.14247243626,0,0,2007.25109795893 -527,657,1162,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.03665233263991,6.751637701520594,0,0,-1040.320082237382,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.706168550416557,52,48,-9,-9,7,3,4,0,0,7,6,2,1,287,902961.145034064,310288.3775466769,153866.9229841858,0,972.1155214545354 -528,658,1163,1164,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.824609694585872,9.254806953530448,0,29,3,22.23436623977774,0,2,3,2019,20,8,40,48,1,8,0,30.11463666425492,30.11463666425492,0,0,0,0,0,0,0,0,0,0,36.3,48.72,47.7,47.03,3.333333333333333,1,1,0,0,10,10,5,1,367,1157124.866880332,760858.7039096928,292025.2726208681,0,4075.502629082622 -528,658,1164,1163,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.086336052811147,8.325610744829476,0,9,-3,38.38751709414557,0,-9,-9,2019,11,0,38,37,1,0,0,7.499282072658908,7.499282072658908,0,0,0,0,0,0,0,0,0,0,47.7,47.03,36.3,48.72,5,1,1,0,0,10,10,5,1,367,1157124.866880332,760858.7039096928,292025.2726208681,0,4075.502629082622 -529,659,1165,1166,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.090056071757221,7.489064317235091,10,4,-129.7729441397887,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.492987785851705,55.93,52.62,54.36,46.43,10,1,1,0,0,0,12,3,1,1033,847913.0066354513,241570.4185098438,241958.3887249587,0,2656.21894530791 -529,659,1166,1165,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.121143950774772,6.292351434728715,10,-4,-11.75391245763237,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.192901034471273,54.36,46.43,55.93,52.62,8.333333333333334,1,1,0,0,3,12,3,1,1033,847913.0066354513,241570.4185098438,241958.3887249587,0,2656.21894530791 -530,660,1167,1168,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.804719956651574,8.693810675282032,0,30,-2,-11.26801161409552,0,2,2,2019,10,0,27,24,1,0,0,24.01589337962465,24.01589337962465,0,0,0,0,0,0,0,0,3.324315454455582,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,982.5,1032989.031089274,984994.3796383434,180760.077356599,0,4571.267729658243 -530,660,1168,1167,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.384837396440624,7.586052981746334,0,30,2,147.964662210439,0,2,2,2019,9,0,65,60,1,0,0,3.223135804208402,3.223135804208402,0,0,0,0,7,0,0,0,8.294586462143474,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,9,4,5,1,982.5,1032989.031089274,984994.3796383434,180760.077356599,0,4571.267729658243 -530,661,1169,-9,1167,1168,1,1,22,0,0,0,1,1,1,0,3,8.114144062364982,7.948624255755029,0,0,0,-857.0882827090211,-9,1,2,2019,11,1,42,0,1,1,1,11.04279400701801,11.04279400701801,0,0,0,0,0,0,0,0,4.521255490353062,0,50.2,52.61,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,501,0,0,0,0,1118.038670957439 -531,662,1170,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.955878152731247,7.087612352556693,0,0,-1055.532579807328,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.065496488703997,7.038334798664986,64.39,28.77,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,340,692123.635172744,32685.51092792892,319360.5018651182,0,1004.670464664786 -532,663,1171,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.304912296571326,7.602799356012175,0,0,-831.1099195906501,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,4.264750727836343,7.47679773843854,45.27,39.87,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,585,182630.8332158448,191224.7927853311,0,0,1352.656017952193 -533,664,1172,1173,-9,-9,1,0,56,1,2,0,3,3,-9,0,3,0,0,0,6,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,1,1,1,0,0,4,1,0,128,39782.74758386612,0,0,0,-116.3700252193272 -533,664,1173,1172,-9,-9,1,1,60,1,2,0,3,3,-9,0,3,0,0,0,6,4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,1.633965648195341,0,51,48,49,48,7,1,1,0,0,0,4,1,0,128,39782.74758386612,0,0,0,-116.3700252193272 -533,665,1174,-9,1175,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.5997710304814,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,251,-3420.246313112827,0,0,0,1046.108258207765 -533,665,1175,-9,1172,1173,1,0,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-868.6840572252586,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,251,-3420.246313112827,0,0,0,1046.108258207765 -533,665,1176,-9,1175,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.3294648458343,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,251,-3420.246313112827,0,0,0,1046.108258207765 -533,666,1177,-9,1172,1173,1,1,19,1,2,0,3,3,-9,0,4,0,0,0,0,0,-873.7817593415873,0,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,4,1,0,330,0,0,0,0,0 -533,667,1178,-9,1172,1173,1,1,19,1,2,0,3,3,1,1,4,0,0,0,0,0,-968.898430768715,-9,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,.2966348380560264,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,558,0,0,0,0,-76.71957235712438 -534,668,1179,-9,-9,-9,1,0,53,1,1,0,2,2,-9,0,4,7.79577107326765,7.72907637641109,0,0,0,-1027.065253352568,0,2,-9,2019,12,0,16,16,1,0,0,13.55277521664444,13.55277521664444,0,0,0,0,2,1,1,0,6.746119148182498,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,8,9,3,1,74,86331.80525138321,0,0,0,1273.799123346452 -534,669,1180,1182,-9,-9,1,1,21,1,1,0,2,2,-9,0,5,7.758437419493956,7.665847523564978,0,2,0,-77.01537830046847,0,-9,-9,2019,15,4,30,50,1,4,0,8.070433649854996,8.070433649854996,0,0,0,0,0,1,1,0,0,0,40.28,62.6,51.41,56.15,5,1,1,0,1,3,9,3,1,546.6666666666666,-21049.99445296026,0,0,0,1851.819289555501 -534,669,1181,-9,1182,1180,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.946661713468,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,546.6666666666666,-21049.99445296026,0,0,0,1851.819289555501 -534,669,1182,1180,1179,-9,1,0,21,1,1,0,2,2,-9,0,3,6.79920086827883,6.702419875170969,0,2,0,122.7187995603987,0,2,-9,2019,9,0,16,16,1,0,0,7.384279843357778,7.384279843357778,0,0,0,0,110,1,1,0,0,0,51.41,56.15,40.28,62.6,6.666666666666667,1,1,0,0,7,9,3,1,546.6666666666666,-21049.99445296026,0,0,0,1851.819289555501 -535,670,1183,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.052080824669067,6.871336548080327,0,0,-912.9452115968875,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.598461031547139,6.978630017654803,57.14,30.64,-9,-9,10,1,1,0,0,7,6,2,0,929,673573.6184115276,219856.1780061822,0,0,1621.324267725556 -536,671,1184,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1046.077519136812,0,2,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,54.94,42.45,-9,-9,8.333333333333334,1,1,0,0,6,10,1,1,61,1106048.975859432,341972.7517915986,131719.4174395381,0,770.3373596274353 -537,672,1185,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,5,6.765110436854028,6.632511053587689,0,0,0,-1031.203483281081,0,-9,-9,2019,7,0,16,16,1,0,0,6.050425979249411,6.050425979249411,0,0,0,0,0,1,1,0,0,0,37.14,57.59,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,1467.5,-19872.4604440708,0,0,0,1392.969321531845 -537,672,1186,-9,1185,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.464876901986,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1467.5,-19872.4604440708,0,0,0,1392.969321531845 -538,673,1187,1188,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.011276391394734,6.038354199161183,45,1,-68.75062198420625,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,4.449678848133109,6.247055035772584,44.9,41.71,42.05,21.8,6.666666666666667,1,1,0,0,0,2,2,1,385,574078.7587698222,99662.83387639013,79107.05431057043,0,2509.630417552869 -538,673,1188,1187,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,3.7233499869843,3.790621408156897,45,-1,-130.4768537785949,0,2,2,2019,16,4,0,0,4,4,0,0,0,1,0,13.86203416075218,0,0,1,1,0,4.492656351532623,4.233640856306692,42.05,21.8,44.9,41.71,3.333333333333333,1,1,0,0,0,2,2,1,385,574078.7587698222,99662.83387639013,79107.05431057043,0,2509.630417552869 -539,674,1189,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.274999150708315,7.184845007206444,0,0,-996.1477874165503,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2748987968269,51.7,49.11,-9,-9,8.333333333333334,1,1,0,0,13,10,3,1,417,340035.8006392373,209003.353376882,0,0,797.6152298972696 -540,675,1190,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-893.6429582958868,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.89,32.54,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1315,37313.33483394574,0,146460.1319155565,0,1237.201211026752 -541,676,1191,1192,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.086022476255035,9.137220910078737,7.929704041250385,5,-2,28.84821141985408,0,-9,-9,2019,6,0,35,30,1,0,0,11.54985903830611,11.54985903830611,0,0,0,0,0,0,0,0,3.21987699134265,8.505929314755816,57.06,57.76,57.16,56.15,10,1,1,0,0,10,12,5,1,1108.5,205893.990717984,-10463.47281929172,341320.363476035,186222.6342380154,4067.881820726739 -541,676,1192,1191,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.8350718408044,6.861929060592091,5,2,-84.26446520307492,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.230667090301092,6.407486044218162,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,1108.5,205893.990717984,-10463.47281929172,341320.363476035,186222.6342380154,4067.881820726739 -541,677,1193,-9,1192,1191,1,1,26,0,0,0,2,2,-9,0,5,8.599216277778224,8.913251196132746,0,0,0,-903.6671214783472,0,2,2,2019,10,1,56,53,1,1,1,13.21852053146084,13.21852053146084,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,624,-76726.17664165446,101710.2826719488,0,0,2214.157968519475 -542,678,1194,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-915.2540122974332,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,49,-9,-9,3.333333333333333,1,1,0,1,8,13,1,1,279,-238207.5046014916,0,0,0,483.6162009479826 -543,679,1195,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.408935363592907,6.310284411671871,0,0,-820.8921249943589,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.859672077703668,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,280,226622.4722456571,22594.61533446108,77076.74588214222,0,950.3336873794781 -544,680,1196,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.962430633076204,8.762324725464655,0,9,-1,-65.40246450424478,0,3,3,2019,9,1,47,40,1,1,0,13.57720335145483,13.57720335145483,0,0,0,0,0,0,0,0,3.305404691554954,0,54.96,53.17,59.88,41.66,6.666666666666667,1,1,0,0,8,2,5,1,438,97589.65735280266,146221.5471099729,118796.9441007002,67164.06990810216,1745.131412887414 -544,681,1197,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,5.133847858579981,4.968464811763086,0,9,1,-154.4962099568741,0,-9,-9,2019,8,1,20,25,1,1,0,.769626638071632,.769626638071632,0,0,0,0,0,0,0,0,0,0,59.88,41.66,54.96,53.17,10,1,1,0,0,9,2,4,1,942,-125537.9902249813,0,0,0,-264.0331944775186 -545,682,1198,1199,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,8.0654129267693,8.433289223617729,5.174386518104288,11,3,-10.66265400603033,0,-9,-9,2019,11,2,45,37,1,2,0,9.741816567370886,9.741816567370886,0,0,0,0,2,1,1,0,4.141580593469918,5.603042483048552,41.2,37.99,59.43,58.05,10,1,1,0,0,12,2,4,1,687.5,1151037.49733093,984474.476922147,117943.3513675336,0,2805.011307999951 -545,682,1199,1198,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.09254555985782,7.810746352610461,4.889644746692771,40,-3,-128.4677566827136,0,2,2,2019,9,0,43,45,1,0,0,7.95728224376147,7.95728224376147,0,0,0,0,7,1,1,0,5.369705174509618,0,59.43,58.05,41.2,37.99,8.333333333333334,1,1,0,0,12,2,4,1,687.5,1151037.49733093,984474.476922147,117943.3513675336,0,2805.011307999951 -545,683,1200,1201,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.071936580023243,7.897107486653101,0,1,-3,-41.74137973503196,-9,-9,-9,2019,4,0,37,0,1,0,0,9.27418355296455,9.27418355296455,0,0,0,0,2,1,1,0,2.028386499416575,0,58.15,52.91,34.07,46.41,8.333333333333334,1,1,0,0,10,2,4,1,534,118322.9536499449,43868.15469784122,156297.2538489051,117914.405697593,2271.186186165559 -545,683,1201,1200,1198,1199,1,1,31,0,0,0,2,2,-9,0,3,8.214334259255375,7.90212062546318,0,1,3,15.13598431965301,0,2,2,2019,11,3,44,47,1,3,0,8.951970221396712,8.951970221396712,0,0,0,0,2,1,1,0,0,0,34.07,46.41,58.15,52.91,8.333333333333334,1,1,0,0,11,2,4,1,534,118322.9536499449,43868.15469784122,156297.2538489051,117914.405697593,2271.186186165559 -546,684,1202,1203,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.772691245993338,8.862137780928764,0,2,20,64.72523840044587,0,1,1,2019,6,0,40,38,1,0,0,18.87607274361945,18.87607274361945,0,0,0,0,0,0,0,0,0,0,59.32,44.13,49.65,57.01,8.333333333333334,4,2,0,0,9,7,5,1,483,723380.9760568239,730855.2242982732,172453.2575534496,148266.9420841188,3659.283555612647 -546,684,1203,1202,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.952858870692598,7.864719827477181,0,2,-20,27.95262262413524,0,-9,-9,2019,11,0,45,50,1,0,0,7.920277853713087,7.920277853713087,0,0,0,0,0,0,0,0,0,0,49.65,57.01,59.32,44.13,6.666666666666667,1,1,0,0,1,7,5,1,483,723380.9760568239,730855.2242982732,172453.2575534496,148266.9420841188,3659.283555612647 -547,685,1204,1205,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,50,-6,22.25216664894845,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,45.67,50.96,8.333333333333334,1,1,0,0,6,2,2,1,397.5,659610.9110789594,126496.9619866479,321715.0284269386,0,2108.729091977018 -547,685,1205,1204,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.292885728616728,6.670389641641771,50,6,40.015227020311,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.207728572199235,6.9859370772559,45.67,50.96,51.24,58.84,10,1,1,0,0,0,2,2,1,397.5,659610.9110789594,126496.9619866479,321715.0284269386,0,2108.729091977018 -548,686,1206,1207,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.279991665802136,7.394292537919653,48,6,50.51000429105186,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.331044005243198,7.746458773297575,63.24,42.39,40.29,42.14,8.333333333333334,1,1,0,0,4,2,3,1,1220.5,1518342.829750263,659722.0356884107,275847.2995526167,0,3355.26740404158 -548,686,1207,1206,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.401227645165443,7.378501896414002,48,-6,-20.04550831248577,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.808736092454719,7.255450567452269,40.29,42.14,63.24,42.39,3.333333333333333,1,1,0,0,4,2,3,1,1220.5,1518342.829750263,659722.0356884107,275847.2995526167,0,3355.26740404158 -549,687,1208,-9,1210,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-866.8290009607027,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1040.75,40458.53027129745,83721.19762333899,0,0,2212.871775563206 -549,687,1209,-9,1210,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.7548623692152,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1040.75,40458.53027129745,83721.19762333899,0,0,2212.871775563206 -549,687,1210,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,6.982580191676783,7.261399435502371,6.099687736173442,0,0,-990.064361924241,0,3,3,2019,14,2,31,31,1,2,0,3.628293110482166,3.628293110482166,0,0,0,0,7,1,1,0,5.720504372032013,0,27.81,65.69,-9,-9,5,1,1,0,0,5,2,2,0,1040.75,40458.53027129745,83721.19762333899,0,0,2212.871775563206 -549,687,1211,-9,1210,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.306809580866,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,0,1040.75,40458.53027129745,83721.19762333899,0,0,2212.871775563206 -550,688,1212,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.368757180784618,8.682623386534805,0,0,0,-1065.02714709581,-9,2,2,2019,13,1,39,0,1,1,0,11.75618766401486,11.75618766401486,0,0,0,0,0,1,1,0,2.113094511725198,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,219,46646.536672296,153692.1585807146,120943.2866030621,31828.86401543474,1957.082518526797 -551,689,1213,1214,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.65033604180636,7.84794597684955,0,6,4,-.8683995202948478,0,2,2,2019,4,0,32,48,1,0,0,7.83454339300985,7.83454339300985,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.15,52.91,0,1,1,0,0,7,5,4,1,1192.5,52000.55685431131,-5313.961026635689,0,0,2013.285620412878 -551,689,1214,1213,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.283479286199825,7.588534112914085,0,6,-4,-4.130088572087196,0,2,3,2019,7,0,51,35,1,0,0,3.731267657691784,3.731267657691784,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,10,1,1,0,0,7,5,4,1,1192.5,52000.55685431131,-5313.961026635689,0,0,2013.285620412878 -551,690,1215,-9,1214,1213,1,1,20,0,0,0,2,2,-9,0,4,7.241229780670873,7.159174536078019,0,0,0,-1068.134067639978,0,2,3,2019,5,0,35,40,1,0,1,5.003166142310255,5.003166142310255,0,0,0,0,0,0,0,0,3.448941240726998,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,1293,-22849.65506727732,0,0,0,804.8377965857281 -552,691,1216,1217,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,8.944376772877344,8.89380688695106,0,29,0,-76.0152523004393,0,2,2,2019,8,0,48,78,1,0,0,19.53602131399509,19.53602131399509,0,0,0,0,2,1,1,0,8.976545993144885,0,56.47,59.4,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,831,1519872.057836513,1424663.617844455,211780.1062712024,72743.7127128219,5364.616213880046 -552,691,1217,1216,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,7.520514640072028,7.619362448764401,0,29,0,68.79088566553787,0,3,3,2019,8,0,25,15,1,0,0,9.105079671580134,9.105079671580134,0,0,0,0,7,1,1,0,0,0,57.16,56.15,56.47,59.4,1.666666666666667,1,1,0,0,6,6,5,1,831,1519872.057836513,1424663.617844455,211780.1062712024,72743.7127128219,5364.616213880046 -552,691,1218,-9,1217,1216,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.878038830937,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,831,1519872.057836513,1424663.617844455,211780.1062712024,72743.7127128219,5364.616213880046 -553,692,1219,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.708425899079293,8.295080270186332,7.750387890676168,0,0,-941.1712354813742,0,3,3,2019,11,0,40,29,1,0,0,9.080191308969226,9.080191308969226,0,0,0,0,0,1,1,0,0,7.675694906904738,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,309,1135696.271601054,622816.3225081271,418818.7180346888,0,1840.831134942085 -554,693,1220,1221,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,38,-2,40.11570494795775,0,2,1,2019,10,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,.5921059498354582,0,54.37,54.8,57.16,56.15,10,1,1,0,0,9,6,5,1,710.5,4170490.289019676,2485317.610463104,564347.3645515211,0,5175.030823008381 -554,693,1221,1220,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.556216626316287,9.496553573352786,7.049767639912017,38,2,70.15728290503479,0,3,2,2019,6,0,43,44,1,0,0,34.43489199650779,34.43489199650779,0,0,0,0,0,0,0,0,5.129528066994943,7.299414276399284,57.16,56.15,54.37,54.8,10,1,1,0,0,9,6,5,1,710.5,4170490.289019676,2485317.610463104,564347.3645515211,0,5175.030823008381 -555,694,1222,-9,1224,1226,1,1,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-953.7924905807811,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,854.2,677907.9976580597,327306.5586720135,618386.5416788587,307707.5410524117,7248.547770014025 -555,694,1223,-9,1224,1226,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.197504668684,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,854.2,677907.9976580597,327306.5586720135,618386.5416788587,307707.5410524117,7248.547770014025 -555,694,1224,1226,-9,-9,1,0,36,2,3,0,1,1,-9,0,4,7.427564380494534,7.360804608907128,0,11,-2,-101.5389963156432,0,2,1,2019,11,0,26,38,1,0,0,8.16260038506287,8.16260038506287,0,0,0,0,0,0,0,0,4.874550142766572,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,854.2,677907.9976580597,327306.5586720135,618386.5416788587,307707.5410524117,7248.547770014025 -555,694,1225,-9,1224,1226,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.484098472641,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,854.2,677907.9976580597,327306.5586720135,618386.5416788587,307707.5410524117,7248.547770014025 -555,694,1226,1224,-9,-9,1,1,38,2,3,0,1,1,-9,0,4,9.590579838736055,9.244133826422026,0,11,2,-90.57780380265359,0,2,2,2019,6,0,53,60,1,0,0,35.01536353098271,35.01536353098271,0,0,0,0,0,0,0,0,2.387312217559622,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,854.2,677907.9976580597,327306.5586720135,618386.5416788587,307707.5410524117,7248.547770014025 -556,695,1227,1228,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.703262038534691,8.720961374553998,0,27,6,-.3746255371970804,0,-9,-9,2019,3,0,45,30,1,0,0,13.71091760123647,13.71091760123647,0,0,0,0,0,0,0,0,0,0,59.43,49.68,58.56,46.45,8.333333333333334,1,1,0,0,13,12,5,1,537,1011957.315379358,843002.8417081458,267157.0122200095,33151.14119522813,2515.162857743958 -556,695,1228,1227,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.105952846115413,8.174342261276145,0,27,-6,-66.81578573496977,0,3,3,2019,7,0,28,28,1,0,0,14.02804389588787,14.02804389588787,0,0,0,0,2,0,0,0,6.576964260958755,0,58.56,46.45,59.43,49.68,8.333333333333334,1,1,0,0,13,12,5,1,537,1011957.315379358,843002.8417081458,267157.0122200095,33151.14119522813,2515.162857743958 -556,696,1229,-9,1228,1227,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1039.464342415875,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,-9,-9,1.666666666666667,1,1,0,0,2,12,1,1,158,156638.3091150367,0,0,0,0 -557,697,1230,1233,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,8.198766007647517,7.991302460986144,0,8,5,-51.16921463194075,0,3,3,2019,12,0,41,37,1,0,0,10.91071403496006,10.91071403496006,0,0,0,0,0,1,1,0,0,0,42.81,54.48,36.57,52.23,5,2,3,0,0,10,6,3,1,431.5,316995.7295095065,120279.233584665,229828.3042215036,119056.1676611686,1493.477879925165 -557,697,1231,-9,1233,1230,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.8874127805166,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,431.5,316995.7295095065,120279.233584665,229828.3042215036,119056.1676611686,1493.477879925165 -557,697,1232,-9,1233,1230,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.20166337176,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,431.5,316995.7295095065,120279.233584665,229828.3042215036,119056.1676611686,1493.477879925165 -557,697,1233,1230,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,0,0,0,8,-5,28.20752813285818,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,42.81,54.48,1.666666666666667,2,3,0,0,1,6,3,1,431.5,316995.7295095065,120279.233584665,229828.3042215036,119056.1676611686,1493.477879925165 -558,698,1234,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,7.344528182688657,7.765864040770133,0,0,-1193.574043386984,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.619501868866554,64.37,53.06,-9,-9,8.333333333333334,1,1,0,0,11,8,3,0,724,2668330.089190152,270454.3192104144,1465125.747086251,0,1322.800507754645 -558,699,1235,-9,1234,-9,1,0,30,0,0,0,2,2,-9,0,4,8.6544573555945,8.620325787038972,0,0,0,-1128.788789285878,0,2,2,2019,12,0,44,49,1,0,0,13.76056630496656,13.76056630496656,0,0,0,0,0,1,1,0,2.241158229711254,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,311,18879.98613853267,24330.33244865215,0,0,1657.762107362213 -559,700,1236,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.828173673122022,6.731708652718447,0,0,-857.2280591935071,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,7.049122043299532,6.561570754170915,38.76,52.3,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,1605,594938.7854853157,523224.5150627105,138536.6512344663,0,753.4867276178572 -560,701,1237,-9,-9,-9,1,0,32,0,1,0,3,3,-9,0,4,0,5.999128505472072,5.963662679015713,0,0,-1060.287354138677,0,3,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,6.602427888221351,0,27.28,65.96000000000001,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,876.5,52091.21614273253,38460.14953121914,0,0,90.82349326515583 -560,701,1238,-9,1237,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.067728140978,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,876.5,52091.21614273253,38460.14953121914,0,0,90.82349326515583 -561,702,1239,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.42873550412861,7.307705215222833,0,0,-994.6243041675211,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.516760453356833,7.924780955100866,62.81,36.34,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,3107,1016972.040010252,348626.2351127205,376129.4010915045,0,1954.820655068472 -562,703,1240,-9,1242,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.748406835476,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1075.666666666667,150632.9743241123,56930.85944771811,130917.994667431,47091.66923941946,1926.616134812816 -562,703,1241,-9,1242,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.600759927027,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1075.666666666667,150632.9743241123,56930.85944771811,130917.994667431,47091.66923941946,1926.616134812816 -562,703,1242,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.84244937627144,7.896971367395848,5.738016229076088,0,0,-1004.238284990681,-9,1,1,2019,12,2,37,0,1,2,0,8.108141383653505,8.108141383653505,0,0,0,0,0,1,1,0,5.530435446442167,0,40.87,44.58,-9,-9,5,1,1,0,0,10,6,3,0,1075.666666666667,150632.9743241123,56930.85944771811,130917.994667431,47091.66923941946,1926.616134812816 -563,704,1243,-9,1246,1244,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.7806739078444,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1738.5,530748.295072269,402457.4163423488,171817.5128661331,145542.6462347991,3631.570215190392 -563,704,1244,1246,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.108632482315629,8.099266975182539,0,10,0,108.8175457363996,0,2,2,2019,9,0,50,37,1,0,0,8.944597832127643,8.944597832127643,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,10,1,1,0,0,11,13,4,1,1738.5,530748.295072269,402457.4163423488,171817.5128661331,145542.6462347991,3631.570215190392 -563,704,1245,-9,1246,1244,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.4032789419381,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,1738.5,530748.295072269,402457.4163423488,171817.5128661331,145542.6462347991,3631.570215190392 -563,704,1246,1244,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.580313428949845,8.773053213564312,0,10,0,-20.74485460099862,0,-9,-9,2019,8,0,32,35,1,0,0,19.52891521025108,19.52891521025108,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,13,4,1,1738.5,530748.295072269,402457.4163423488,171817.5128661331,145542.6462347991,3631.570215190392 -564,705,1247,1248,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.406934098133101,9.598988941726338,7.014738151362097,2,4,37.32614730505937,0,3,2,2019,21,9,33,0,1,9,0,45.15748937543356,45.15748937543356,0,0,0,0,7,0,0,0,0,6.637162106945706,36.34,37.44,22.59,65.42,6.666666666666667,1,1,0,0,6,11,5,1,484.5,3503994.510946614,3067078.917403819,231181.6743857492,0,8600.835600113794 -564,705,1248,1247,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.184440062350751,8.323603471480617,0,2,-4,154.8591606190064,0,-9,-9,2019,27,11,38,37,1,11,0,9.511374840856007,9.511374840856007,0,0,0,0,27,0,0,0,0,0,22.59,65.42,36.34,37.44,6.666666666666667,1,1,0,0,11,11,5,1,484.5,3503994.510946614,3067078.917403819,231181.6743857492,0,8600.835600113794 -565,706,1249,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,5.289630980365123,5.654917114992609,0,0,-1043.894100667373,0,2,3,2019,12,1,0,89,4,1,0,0,0,0,0,0,0,5.48,1,1,0,2.314395197444604,5.705910445044485,45.99,27.95,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,869,4729.967627479942,-38543.78500160895,0,0,100.6554119324599 -566,707,1250,1251,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.170867905769364,6.852375918845402,51,1,7.312998122488626,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.145361125155748,51.01,39.32,57.33,32.79,8.333333333333334,1,1,0,0,6,10,2,1,164,345440.6979208763,358780.6032331228,0,0,1597.765058666306 -566,707,1251,1250,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,51,-1,-22.99827667668652,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,30.29482086901804,0,2,1,1,0,1.262417688099487,0,57.33,32.79,51.01,39.32,8.333333333333334,1,1,0,0,5,10,2,1,164,345440.6979208763,358780.6032331228,0,0,1597.765058666306 -567,708,1252,1253,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.384841127144917,5.417478207833139,64,-1,-43.40001124060012,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,4.894483981137943,60.45,43.72,53.05,39.99,8.333333333333334,1,1,0,0,0,6,2,1,358,253486.6480008079,54321.46636428709,145948.0236672563,0,1060.524634275763 -567,708,1253,1252,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,6,1,-118.6220306435481,0,-9,-9,2019,8,2,0,0,4,2,0,0,0,1,0,22.34137142694757,0,0,1,1,0,0,0,53.05,39.99,60.45,43.72,8.333333333333334,1,1,0,0,0,6,2,1,358,253486.6480008079,54321.46636428709,145948.0236672563,0,1060.524634275763 -568,709,1254,1255,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.953797395971621,8.008528565103763,0,22,3,75.51538821341572,0,2,2,2019,6,0,42,35,1,0,0,7.322831451169133,7.322831451169133,0,0,0,0,84,1,1,0,2.110669304367029,0,57.06,57.76,31.11,27.77,6.666666666666667,1,1,0,0,10,6,3,1,1324.5,100993.711484549,76775.76438189892,61061.84135656897,21729.06283956557,2453.798818340557 -568,709,1255,1254,-9,-9,1,1,45,0,1,0,3,3,-9,1,1,0,0,0,22,-3,-148.3644013841251,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.11,27.77,57.06,57.76,6.666666666666667,1,1,0,0,5,6,3,1,1324.5,100993.711484549,76775.76438189892,61061.84135656897,21729.06283956557,2453.798818340557 -569,710,1256,1257,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.577563897870099,6.565951535100183,7,-1,139.944506123413,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6375555853688021,6.511878839023526,59.15,44.82,54.85,45.16,8.333333333333334,1,1,0,0,0,4,2,1,698.5,136835.3497235828,131738.1146635805,121343.0085740874,0,1705.577727180623 -569,710,1257,1256,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,7,1,54.52421284348993,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.85,45.16,59.15,44.82,10,1,1,0,0,0,4,2,1,698.5,136835.3497235828,131738.1146635805,121343.0085740874,0,1705.577727180623 -570,711,1258,1259,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,8.671671877688164,8.755692473760764,63,6,-79.751764783825,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,7.406923197526108,8.619272481947391,57.64,23.63,59.7,53.75,8.333333333333334,1,1,0,0,0,4,5,1,1279.5,1577221.776130808,587152.3886804977,486861.2339814936,0,5738.891447086964 -570,711,1259,1258,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.564690582575703,7.33734930197333,63,-6,56.78114290304022,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.982102986098589,7.431737954116473,59.7,53.75,57.64,23.63,8.333333333333334,1,1,0,0,0,4,5,1,1279.5,1577221.776130808,587152.3886804977,486861.2339814936,0,5738.891447086964 -571,712,1260,1261,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,0,0,0,9,1,-14.67063648925926,1,3,3,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,55.01,36.8,40.46,63.68,8.333333333333334,1,1,0,0,4,2,4,1,236.5,624.0040786001191,-1763.336914243111,0,0,1717.3134622382 -571,712,1261,1260,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.515336145156537,8.520234928053123,0,9,-1,67.00090048464919,0,2,2,2019,15,3,43,42,1,3,0,14.34543018396403,14.34543018396403,0,0,0,0,0,0,0,0,0,0,40.46,63.68,55.01,36.8,6.666666666666667,1,1,0,0,10,2,4,1,236.5,624.0040786001191,-1763.336914243111,0,0,1717.3134622382 -572,713,1262,1263,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,0,0,40,-1,-163.2100380931356,0,2,3,2019,18,0,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.93,19.89,43.78,22.13,10,1,1,0,0,0,10,3,1,767,946787.3385950178,522907.6310489862,216033.5902974345,0,3127.621064231556 -572,713,1263,1262,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,8.139086732040104,8.36532312109326,40,1,-89.19527343265088,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,42,1,1,0,3.941821689117831,8.472683859192788,43.78,22.13,33.93,19.89,3.333333333333333,1,1,0,0,0,10,3,1,767,946787.3385950178,522907.6310489862,216033.5902974345,0,3127.621064231556 -573,714,1264,1265,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.729143380700011,7.895934215735942,0,31,17,-27.6941734677153,0,3,3,2019,12,3,37,38,1,3,0,8.370467391270331,8.370467391270331,0,0,0,0,0,1,1,0,0,0,53.57,28.07,46.21,36.93,8.333333333333334,1,1,0,0,8,11,5,0,720.5,1552010.798029663,782509.2298413855,276384.7136790415,0,3562.375323334775 -573,714,1265,1264,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.3413580632999,8.453505327753184,0,31,-17,23.58382225278786,0,3,3,2019,13,5,49,37,1,5,0,9.932517822346624,9.932517822346624,0,0,0,.6778625749835197,0,1,1,0,3.12912082703,0,46.21,36.93,53.57,28.07,1.666666666666667,1,1,0,0,9,11,5,0,720.5,1552010.798029663,782509.2298413855,276384.7136790415,0,3562.375323334775 -574,715,1266,1267,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,4.517254829695705,4.513401896972674,8,9,-20.80062577989871,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,32.76766515540764,0,0,1,1,0,0,4.818055412087301,44.5,24.45,38.26,60.7,6.666666666666667,1,1,0,0,0,11,2,1,624.5,362992.1320038926,90968.7635673675,380548.3828179126,0,2348.987571623045 -574,715,1267,1266,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.327098091282727,6.569667025068989,8,0,-52.56618051977462,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,6.179298923169688,38.26,60.7,44.5,24.45,8.333333333333334,1,1,0,0,5,11,2,1,624.5,362992.1320038926,90968.7635673675,380548.3828179126,0,2348.987571623045 -574,716,1268,-9,1267,1266,1,1,36,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.628290539007,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,5,1,1,1,0,3,11,1,1,472,-100455.2347969233,0,0,0,-178.9758809182717 -575,717,1269,1270,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,5.872814131468216,5.67810040388476,0,7,4,1.42269319855451,0,2,2,2019,9,0,80,80,1,1,0,.4488691933308199,.4488691933308199,0,0,0,0,2,1,1,0,0,0,52,55,51.14,60.45,8,1,1,0,0,6,4,3,0,1476.666666666667,2209887.737565433,198926.8843211026,2004855.934945644,418277.9294220377,1260.44318611216 -575,717,1270,1269,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.624434826084122,7.795295166354258,0,7,-4,-65.01284897082358,0,-9,-9,2019,11,1,35,25,1,1,0,6.325483414392425,6.325483414392425,0,0,0,0,0,1,1,0,2.547080095993672,0,51.14,60.45,52,55,10,1,1,0,0,4,4,3,0,1476.666666666667,2209887.737565433,198926.8843211026,2004855.934945644,418277.9294220377,1260.44318611216 -575,717,1271,-9,1270,1269,1,1,17,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1105.894413245524,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.28,22.84,-9,-9,5,1,1,1,1,0,4,3,0,1476.666666666667,2209887.737565433,198926.8843211026,2004855.934945644,418277.9294220377,1260.44318611216 -575,718,1272,-9,1270,1269,1,0,22,0,0,0,2,2,-9,0,5,7.150545738172066,7.191514384482852,0,0,0,-1092.510306758417,0,2,2,2019,9,0,31,24,1,0,1,6.366092496302754,6.366092496302754,0,0,0,0,0,1,1,0,2.677939896313077,0,31.78,59.99,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,452,-69440.93781456302,0,0,0,575.3815740815296 -575,719,1273,-9,1270,1269,1,0,24,0,0,0,2,2,-9,0,4,7.930529802979334,8.062833158970903,0,0,0,-973.370468104986,0,2,2,2019,11,0,37,31,1,2,1,7.506193106606259,7.506193106606259,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,7,4,3,0,1038,-22651.17842942367,0,0,0,1297.196182955817 -575,720,1274,-9,1270,1269,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-907.401451001837,1,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,801,37472.92905801583,0,0,0,0 -576,721,1275,1276,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.604490529487357,7.398644569399572,0,2,-4,177.7805683883855,0,-9,-9,2019,5,0,24,24,1,0,0,10.55968550612127,10.55968550612127,0,0,0,0,0,0,0,0,0,0,49.51,41.82,59.71,48.06,8.333333333333334,1,1,0,0,3,4,4,1,405,124915.6500867317,7121.332937059786,160787.5137257106,106159.6584701869,2234.050124257879 -576,721,1276,1275,1279,1278,1,1,26,0,0,0,2,2,-9,0,4,8.300206101943896,8.261285496576876,0,2,4,-40.8414197498406,0,2,2,2019,11,0,50,40,1,0,0,10.56757380518984,10.56757380518984,0,0,0,0,0,0,0,0,.1882641807317902,0,59.71,48.06,49.51,41.82,8.333333333333334,1,1,0,0,7,4,4,1,405,124915.6500867317,7121.332937059786,160787.5137257106,106159.6584701869,2234.050124257879 -576,722,1277,-9,1279,1278,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1072.479936017617,0,2,2,2019,22,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,33.2,65.78,-9,-9,3.333333333333333,1,1,1,0,1,4,1,1,462,-17944.87580027173,0,0,0,0 -576,723,1278,1279,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.132898456850473,8.255675403824808,0,4,2,41.91178076768952,0,-9,-9,2019,7,0,55,84,1,0,0,9.790780158562811,9.790780158562811,0,0,0,0,0,0,0,0,.5983157010426936,0,61.28,48.88,45.18,53.5,3.333333333333333,1,1,0,0,9,4,4,1,892,67041.1065253581,18868.25097667322,94917.33107231426,78194.98822091053,2218.158841640106 -576,723,1279,1278,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.24525509779249,7.726989764730948,0,4,-2,17.98644148845455,0,-9,-9,2019,12,1,28,25,1,1,0,7.651355969196618,7.651355969196618,0,0,0,0,0,0,0,0,0,0,45.18,53.5,61.28,48.88,10,1,1,0,0,7,4,4,1,892,67041.1065253581,18868.25097667322,94917.33107231426,78194.98822091053,2218.158841640106 -577,724,1280,1281,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.134474744833043,6.287909194492608,10,15,6.981351773996727,0,2,3,2019,11,0,0,35,3,0,0,0,0,1,0,0,0,0,1,1,0,6.44110561945862,6.355704269254984,46.57,44.73,40.78,27.62,6.666666666666667,1,1,1,0,9,7,2,0,360.5,655254.4404307727,243921.474675641,400347.4988904582,0,1644.763283066322 -577,724,1281,1280,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.306949887813404,7.446950417971834,0,10,-15,65.72898616121718,0,1,1,2019,23,11,40,0,1,11,0,3.56782579405551,3.56782579405551,0,0,0,0,0,1,1,0,0,0,40.78,27.62,46.57,44.73,3.333333333333333,4,2,0,0,6,7,2,0,360.5,655254.4404307727,243921.474675641,400347.4988904582,0,1644.763283066322 -578,725,1282,1283,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.850506546209473,9.15419822905722,0,4,0,52.35755047153965,0,-9,-9,2019,7,0,44,40,1,0,0,23.35762876584188,23.35762876584188,0,0,0,0,0,0,0,0,7.174265036373495,0,59.43,58.05,54.63,58.83,8.333333333333334,2,3,0,0,5,12,5,1,187.5,511878.3240638501,512591.4366419652,295135.0943082478,228883.2407244369,5559.389205129462 -578,725,1283,1282,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.4003239300893,8.320726580155387,0,4,0,-63.31417345955983,0,-9,-9,2019,9,1,41,39,1,1,0,14.30889309871956,14.30889309871956,0,0,0,0,0,0,0,0,0,0,54.63,58.83,59.43,58.05,6.666666666666667,2,3,0,0,5,12,5,1,187.5,511878.3240638501,512591.4366419652,295135.0943082478,228883.2407244369,5559.389205129462 -579,726,1284,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.873590529998464,7.146480139254286,0,0,-900.566297669699,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.091621818082572,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1405,155269.9583189802,154905.6202967052,101334.5091483839,0,1488.612581199404 -580,727,1285,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,6.165137857010044,6.330945954309406,0,0,-1004.160214929353,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.589814713776584,6.427277848847646,33.7,49.34,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,378,648004.698575942,116296.8122794352,443468.293682248,0,907.6274822043729 -581,728,1286,1287,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.493488639164111,8.713946585226001,0,32,-11,-71.92872977111851,0,-9,-9,2019,7,0,39,37,1,0,0,16.88133003722399,16.88133003722399,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,47,6.666666666666667,1,1,0,0,7,8,5,1,460,729482.1447338033,572580.1381377582,225734.0853115735,0,3209.554419236211 -581,728,1287,1286,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,6.241651634142556,7.757435859284991,7.502130119141357,33,11,31.47272426429546,0,-9,-9,2019,10,0,50,52,1,1,0,1.485826464479457,1.485826464479457,1,0,0,0,7,1,1,0,1.990737645176261,7.663236912451218,52,47,57.16,56.15,7,2,3,0,0,1,8,5,1,460,729482.1447338033,572580.1381377582,225734.0853115735,0,3209.554419236211 -581,729,1288,-9,1286,1287,1,0,26,0,0,0,2,2,-9,0,4,7.836690686054545,7.995949691123026,0,0,0,-1051.889250453227,0,2,2,2019,11,0,37,36,1,2,1,10.67288087132743,10.67288087132743,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,2,0,0,1,8,4,1,467,27272.37810140951,0,0,0,1228.706570799556 -581,730,1289,-9,1286,1287,1,1,25,0,0,0,1,1,-9,0,4,3.544272102450912,3.748260484952431,0,0,0,-948.5789138612588,0,2,2,2019,10,0,40,45,1,1,1,.1204294426043724,.1204294426043724,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,2,1,569,52950.7172848414,0,0,0,-446.1100505776822 -582,731,1290,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1068.084812376181,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,62.28,26.88,-9,-9,8.333333333333334,1,1,0,1,0,2,1,0,389,0,0,0,0,1725.587483538445 -583,732,1291,1292,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.882529169235641,7.608290835797511,44,2,-145.9035913208393,0,2,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.725533020796693,7.927430710186053,53.63,40.71,30.77,64.34,8.333333333333334,1,1,0,0,0,4,3,1,308.5,1419183.519308755,929197.1882909122,282419.3456528861,0,3282.745910949659 -583,732,1292,1291,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.304250497428474,7.283347827821008,43,-2,40.08429390692001,0,-9,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.630133449060841,6.944798281580733,30.77,64.34,53.63,40.71,8.333333333333334,1,1,0,0,0,4,3,1,308.5,1419183.519308755,929197.1882909122,282419.3456528861,0,3282.745910949659 -584,733,1293,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-953.9824674999134,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,427,-77262.0179193595,0,0,0,329.0571996451856 -585,734,1294,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1065.350057657028,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,29.63,31.37,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,296,0,0,0,0,363.1351423411056 -585,735,1295,-9,1294,-9,1,0,19,0,0,0,2,2,-9,0,5,7.78036040713901,7.264265108037657,0,0,0,-1014.759918070934,0,3,-9,2019,24,8,20,20,1,8,1,9.509250298961824,9.509250298961824,0,0,0,0,0,1,1,0,0,0,20.49,69.16,-9,-9,6.666666666666667,1,1,0,0,2,7,3,0,1593,53829.04752602765,0,0,0,928.1359115439024 -586,736,1296,1297,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.970716005218517,8.793657670564214,38,4,99.94554623401024,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.93391941585098,8.745504727162043,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,5,9,5,1,1076,790371.5967849339,92093.05435670153,967210.2666669143,208405.5466200172,4481.061030999464 -586,736,1297,1296,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,5.120211995534045,5.465585835136159,38,-4,-89.39949796120635,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.03649557704017,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,1076,790371.5967849339,92093.05435670153,967210.2666669143,208405.5466200172,4481.061030999464 -587,737,1298,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.074151148487063,7.916054309771034,0,0,0,-917.8908514356783,0,1,3,2019,12,0,40,37,1,0,0,7.69594199754566,7.69594199754566,0,0,0,0,0,1,1,0,0,0,42.44,57.54,-9,-9,5,1,1,0,0,9,2,4,0,89,119517.2128091753,-67028.12772895423,0,0,934.9468759669531 -588,738,1299,1301,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,8.616883803156147,8.373366608950111,0,13,2,86.71921109918927,0,2,2,2019,6,0,38,38,1,0,0,21.63019220619928,21.63019220619928,0,0,0,0,0,0,0,0,2.663733480804706,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,4,8,5,1,890.3333333333334,1777550.888980216,878736.1843547445,912663.4906699839,185210.6799241614,5696.654244300725 -588,738,1300,-9,1301,1299,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.430671520698,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,8,5,1,890.3333333333334,1777550.888980216,878736.1843547445,912663.4906699839,185210.6799241614,5696.654244300725 -588,738,1301,1299,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,9.186740219602525,9.331393567039576,0,13,-2,16.72312789503953,0,2,1,2019,7,0,42,42,1,0,0,26.93429668760634,26.93429668760634,0,0,0,0,0,0,0,0,2.088499796729793,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,890.3333333333334,1777550.888980216,878736.1843547445,912663.4906699839,185210.6799241614,5696.654244300725 -589,739,1302,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,5.529448450591113,5.614335851964077,0,0,-1128.60900541315,0,2,2,2019,10,0,0,39,4,0,0,0,0,0,0,0,0,0,1,1,0,5.058396318081616,5.153072646472301,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,1653,292157.5963402413,49636.22101479108,230827.4440578596,0,845.4006928150474 -590,740,1303,-9,1304,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.648240583971,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,939.5,118338.6940412388,108880.0666041742,156834.0199745976,148991.3804060974,1524.222886068254 -590,740,1304,-9,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.590459818058742,8.3839410198455,0,0,0,-956.7892324706224,0,2,3,2019,19,7,40,54,1,7,0,11.29223062152008,11.29223062152008,0,0,0,0,0,0,0,0,0,0,41.54,51.19,-9,-9,3.333333333333333,1,1,0,1,9,13,4,1,939.5,118338.6940412388,108880.0666041742,156834.0199745976,148991.3804060974,1524.222886068254 -591,741,1305,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,4.41738157045318,4.665740884206716,0,0,-975.6082504930989,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.041490485772779,4.494991994390673,53.08,28.33,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,133,72114.0966334774,6022.434375545381,0,0,778.4136398138986 -592,742,1306,1307,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,4.712799136740922,4.572898303046459,22,15,91.53439378814018,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.659744113524225,4.636400032448377,59.07,43.05,63.73,36.85,8.333333333333334,1,1,0,0,0,7,5,1,715.5,1900621.456440226,337849.7444976642,1973956.657755357,313679.1393309698,5182.04350728864 -592,742,1307,1306,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.382811806040197,9.572640217543874,6.380238195133345,22,-15,-23.25852532594092,0,2,2,2019,8,0,50,37,1,0,0,32.3264830278681,32.3264830278681,0,0,0,0,0,1,1,0,6.944337066465474,6.866361871861577,63.73,36.85,59.07,43.05,8.333333333333334,1,1,0,0,11,7,5,1,715.5,1900621.456440226,337849.7444976642,1973956.657755357,313679.1393309698,5182.04350728864 -593,743,1308,-9,1310,-9,1,1,22,0,0,0,3,3,-9,0,5,8.258857495279402,8.271515861168604,0,0,0,-933.9465839804565,0,2,2,2019,6,0,8,45,1,0,1,49.54678649337273,49.54678649337273,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,332,768823.6930107822,-13415.09456883748,0,0,1020.299386448562 -593,744,1309,-9,1310,-9,1,0,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-872.653769619174,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,807,-116399.233448735,0,0,0,777.9050223340807 -593,745,1310,1311,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,2,-7,24.7351155666987,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.3,28.84,63.18,27.41,3.333333333333333,1,1,0,0,1,7,2,1,739.5,103995.7649802943,-5136.774356637408,0,0,1660.162412327853 -593,745,1311,1310,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,5.690513118524899,5.518991385250596,0,2,7,-25.72586042280592,0,-9,-9,2019,11,0,60,55,1,0,0,.5626928514374081,.5626928514374081,0,0,0,0,0,1,1,0,0,0,63.18,27.41,33.3,28.84,6.666666666666667,1,1,0,0,7,7,2,1,739.5,103995.7649802943,-5136.774356637408,0,0,1660.162412327853 -594,746,1312,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.7787703387404,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,19.64929633470891,0,0,1,1,0,0,0,34.54,29.07,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,183,158129.9080111349,0,164535.579596222,0,799.5030021163325 -595,747,1313,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.902564584902267,7.389343183392378,0,0,-902.8059101327834,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.870989699683719,7.634967839836359,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,501,310238.0282069318,-73774.2407214214,60904.11477365212,0,1967.695548028997 -596,748,1314,1315,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,8.458723060802992,8.15126364171811,6,2,16.63817503226381,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.137742813858713,8.396842216736136,51.48,46.41,57.07,41.15,10,1,1,0,0,0,10,4,1,732.5,671671.6856420257,84337.65103039227,430053.5039315125,0,8425.571158826537 -596,748,1315,1314,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.379515134970208,7.419683417611664,6,-2,-41.35660715707782,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.13728620924701,7.619664024075719,57.07,41.15,51.48,46.41,8.333333333333334,1,1,0,0,0,10,4,1,732.5,671671.6856420257,84337.65103039227,430053.5039315125,0,8425.571158826537 -597,749,1316,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.544231033283202,8.665354826699529,0,0,0,-936.6378200520608,0,2,2,2019,9,0,35,35,1,0,0,13.14525781402187,13.14525781402187,0,0,0,0,0,1,1,0,0,0,46.31,58.29,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,1854,361679.2785801236,605703.0361928853,77961.81107119862,49563.66776874444,2190.139950714517 -597,750,1317,1318,1316,-9,1,1,22,0,0,0,2,2,-9,0,3,7.788451319196233,7.967703797657048,0,2,0,115.3105271953684,0,2,-9,2019,12,2,40,0,1,2,0,7.545200461203617,7.545200461203617,0,0,0,0,0,1,1,0,.3173010586165171,0,46.08,57.2,54.96,53.17,6.666666666666667,1,1,0,0,4,4,3,1,872,176576.0477318325,17708.65699681928,47443.79538468509,41517.39977541508,811.9850797048114 -597,750,1318,1317,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,2,0,-30.35506386527841,-9,-9,-9,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.08,57.2,8.333333333333334,1,1,0,0,0,4,3,1,872,176576.0477318325,17708.65699681928,47443.79538468509,41517.39977541508,811.9850797048114 -598,751,1319,1320,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.519749796771033,7.440165544760813,0,37,-2,23.73029474940869,0,3,2,2019,6,0,16,24,1,0,0,10.49755780415974,10.49755780415974,0,0,0,0,7,0,0,0,0,0,56.77,52.22,53,54,8.333333333333334,1,1,0,0,10,9,5,1,806,1534486.269055922,687993.4675889156,998530.3516179875,389737.1601962908,5401.06326694277 -598,751,1320,1319,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.366846572380128,9.278059956029047,8.695109704735428,9,2,-60.94330368947726,0,-9,-9,2019,9,0,40,40,1,0,0,16.15203424834425,16.15203424834425,0,0,0,0,0,0,0,0,0,9.032504745576489,53,54,56.77,52.22,8,1,1,0,0,1,9,5,1,806,1534486.269055922,687993.4675889156,998530.3516179875,389737.1601962908,5401.06326694277 -599,752,1321,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.923584382038157,7.906312951996264,5.001473889174679,0,0,-1006.409837180401,0,3,3,2019,7,0,28,28,1,0,0,10.15707206843554,10.15707206843554,0,0,0,0,0,1,1,0,1.709583053023808,5.327994192319356,57.73,54.53,-9,-9,6.666666666666667,1,1,0,0,9,11,3,0,456,139781.6575354801,-51776.39889228391,0,0,1439.663266243215 -600,753,1322,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,6.234333406802378,6.23510966688992,0,0,-888.686089085181,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.135117870332614,60.69,53.18,-9,-9,10,1,1,0,0,0,12,2,1,585,368384.8796727676,70742.29354493036,72649.91723856863,0,1572.996765690021 -601,754,1323,-9,1325,1324,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.7222193992291,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,310.3333333333333,582561.7146367254,419850.1525501162,165310.7563730021,66504.1647868593,3471.41701056698 -601,754,1324,1325,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.927701260969526,8.480465876971676,0,14,6,5.988821512509794,0,2,1,2019,11,1,37,38,1,1,0,23.27482838332868,23.27482838332868,0,0,0,0,2,1,1,0,0,0,44.42,59.09,53.4,38.94,8.333333333333334,1,1,0,0,12,9,5,1,310.3333333333333,582561.7146367254,419850.1525501162,165310.7563730021,66504.1647868593,3471.41701056698 -601,754,1325,1324,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,7.383639615746818,7.943916256803504,0,14,-6,82.79362129037789,0,2,2,2019,7,0,20,18,1,0,0,10.31968455788426,10.31968455788426,0,0,0,0,0,1,1,0,5.402756173929052,0,53.4,38.94,44.42,59.09,6.666666666666667,1,1,0,0,12,9,5,1,310.3333333333333,582561.7146367254,419850.1525501162,165310.7563730021,66504.1647868593,3471.41701056698 -602,755,1326,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.474517465011633,7.603423391377263,0,0,0,-1031.404267570868,0,-9,2,2019,12,1,35,42,1,1,0,6.111582634612642,6.111582634612642,0,0,0,0,0,1,0,1,7.176518344216102,0,40.01,58.61,-9,-9,8.333333333333334,1,1,0,1,5,7,3,0,167,-46611.20772984601,136404.4590499666,0,0,1642.201129965071 -603,756,1327,-9,1330,1328,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-914.0703420142125,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,783.8,257388.8799826891,-1170.007867465395,421277.5903922635,200130.9986260709,2846.470739685822 -603,756,1328,1330,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.910465629176041,8.844516241698422,0,7,7,8.552551084474461,0,-9,-9,2019,9,0,50,50,1,1,0,11.1476105438956,11.1476105438956,0,0,0,0,0,1,1,0,3.875041768955964,0,51,56,43.32,63.94,8,1,1,0,0,1,10,3,1,783.8,257388.8799826891,-1170.007867465395,421277.5903922635,200130.9986260709,2846.470739685822 -603,756,1329,-9,1330,1328,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.904808763266,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.8,257388.8799826891,-1170.007867465395,421277.5903922635,200130.9986260709,2846.470739685822 -603,756,1330,1328,-9,-9,1,0,31,1,3,0,2,2,-9,0,5,0,0,0,7,-7,-127.1488402850999,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.32,63.94,51,56,0,1,1,0,0,1,10,3,1,783.8,257388.8799826891,-1170.007867465395,421277.5903922635,200130.9986260709,2846.470739685822 -603,756,1331,-9,1330,1328,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.801694357263,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.8,257388.8799826891,-1170.007867465395,421277.5903922635,200130.9986260709,2846.470739685822 -604,757,1332,1333,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.811618764239758,7.218672668172324,48,3,-46.17068308715273,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.476213100408038,6.978824605691302,59.29,49.68,50.72,46.82,8.333333333333334,1,1,0,0,2,5,3,1,2015,913635.7991319431,563507.7000081034,137386.5020224174,0,2897.394135524086 -604,757,1333,1332,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.820025544133132,6.57801162913997,48,-3,73.60552490905874,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.04310843961242,6.799317219946941,50.72,46.82,59.29,49.68,6.666666666666667,1,1,0,0,3,5,3,1,2015,913635.7991319431,563507.7000081034,137386.5020224174,0,2897.394135524086 -605,758,1334,1335,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.209034719359712,8.558672423718678,6.590051237827288,6,-3,246.2164421553817,0,-9,-9,2019,12,2,26,30,1,2,0,13.35980084645438,13.35980084645438,0,0,0,0,0,0,0,0,6.911827069402893,0,41.93,55.12,57.16,56.15,8.333333333333334,1,1,0,0,12,10,4,1,365,727015.8765044669,415074.0412462322,288520.9447979755,137184.7607608651,3161.732749768606 -605,758,1335,1334,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.589953738447925,8.132130356990517,0,6,3,80.56863769307758,0,2,2,2019,9,0,38,38,1,0,0,8.378396545835127,8.378396545835127,0,0,0,0,0,0,0,0,1.778548029379759,0,57.16,56.15,41.93,55.12,8.333333333333334,1,1,0,0,9,10,4,1,365,727015.8765044669,415074.0412462322,288520.9447979755,137184.7607608651,3161.732749768606 -606,759,1336,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.48720615451456,8.183509830560531,0,0,0,-883.9294826691275,0,2,2,2019,12,3,79,46,1,3,0,7.011073702184139,7.011073702184139,0,0,0,0,7,0,0,0,0,0,52.41,34.15,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,417,64734.75104228535,96892.81543853962,0,0,2393.797944041659 -606,760,1337,-9,1336,-9,1,0,22,0,0,0,2,2,-9,0,2,8.095563609328959,8.11593373758884,0,0,0,-946.7393261049174,0,2,-9,2019,24,8,35,39,1,8,1,11.0847265531345,11.0847265531345,0,0,0,0,0,0,0,0,0,0,13.01,55.13,-9,-9,5,1,1,0,0,5,2,4,1,183,-122928.6771314858,58884.22790330463,0,0,1161.948297425348 -607,761,1338,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,8.06526478458318,7.72155177640075,0,0,0,-922.6563404832963,0,-9,-9,2019,12,5,10,10,1,5,0,35.9400445637472,35.9400445637472,0,0,0,0,0,1,1,0,0,0,47.06,32.58,-9,-9,8.333333333333334,3,4,0,0,11,6,4,1,560,33717.25805257917,42731.9088246335,0,0,3120.271925569175 -608,762,1339,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.229574759521743,8.395023602594284,0,1,-5,-108.6398957601879,0,-9,-9,2019,12,0,42,40,1,0,0,14.10101189908545,14.10101189908545,0,0,0,0,71.5,1,1,0,0,0,41.47,59.33,50,55,3.333333333333333,1,1,0,0,9,7,4,0,533,63096.32666167473,171933.3296464357,194287.0297981142,30831.17464367921,2278.12646099178 -609,763,1340,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1101.261914216376,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.44,33.6,-9,-9,3.333333333333333,1,1,0,1,2,9,1,0,188,250050.438926622,0,0,0,844.0476084990887 -610,764,1341,1342,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,52,0,-89.95636773120792,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.622911890844288,0,59.14,52.5,60.12,54.8,8.333333333333334,1,1,0,0,0,6,2,1,1261,548110.3788402418,281796.5736929103,249986.4763745938,0,2045.636335976882 -610,764,1342,1341,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.416903539865761,7.658311037380145,52,0,27.942963328178,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.33195826814668,7.152189376580512,60.12,54.8,59.14,52.5,8.333333333333334,1,1,0,0,0,6,2,1,1261,548110.3788402418,281796.5736929103,249986.4763745938,0,2045.636335976882 -611,765,1343,1344,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.079808940792041,6.221506499698643,59,0,-76.57311586646053,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.841395508038011,6.16463130814136,57.14,36.18,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,741.5,96036.54388658279,56141.9922745697,106300.2591151446,0,1349.701194300835 -611,765,1344,1343,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.300799066132068,4.432784048178922,59,0,-87.33350970283951,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.1276706112567693,4.559010397238101,57.33,53.46,57.14,36.18,10,1,1,0,0,0,12,2,1,741.5,96036.54388658279,56141.9922745697,106300.2591151446,0,1349.701194300835 -612,766,1345,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.192953215809161,5.047779046969772,0,0,-1067.381076724886,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.4006995265311308,5.114420193357551,58.51,36.28,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,1343,188449.6286064033,0,287811.0267992542,0,1319.975538569532 -613,767,1346,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.684658411843154,6.571512835619126,0,0,0,-966.498038533656,0,3,3,2019,6,0,10,14,1,0,0,8.488441203362274,8.488441203362274,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,1,6,2,2,0,2627,94302.14241337651,59379.94645993342,123031.4286355553,13528.5437251627,836.2081650615272 -614,768,1347,-9,-9,-9,1,0,55,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1058.141207979964,0,1,3,2019,18,7,0,48,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,40.25,15.6,-9,-9,3.333333333333333,1,1,0,1,10,7,1,0,472,-175144.7142336483,0,0,0,-911.6687566851032 -614,769,1348,1349,1347,-9,1,1,21,1,2,0,2,2,-9,0,4,8.493020819181195,8.380313626347075,0,4,-1,59.13948633910205,0,2,-9,2019,10,0,61,60,1,0,0,7.206700896176081,7.206700896176081,0,0,0,0,0,1,0,1,0,0,54.2,57.49,27.06,57.72,10,1,1,0,0,5,7,3,0,900.6666666666666,222224.2887079864,69893.22842959309,553578.5609145644,225612.9861008869,1825.350932414149 -614,769,1349,1348,-9,-9,1,0,22,1,2,0,2,2,-9,0,4,7.160696912135818,6.905355357712831,0,4,1,-149.466426525189,0,-9,-9,2019,19,8,16,0,1,8,0,7.757565306680865,7.757565306680865,0,0,0,0,7,1,0,1,0,0,27.06,57.72,54.2,57.49,10,1,1,0,0,3,7,3,0,900.6666666666666,222224.2887079864,69893.22842959309,553578.5609145644,225612.9861008869,1825.350932414149 -614,769,1350,-9,1349,1348,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.2801797838605,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,0,900.6666666666666,222224.2887079864,69893.22842959309,553578.5609145644,225612.9861008869,1825.350932414149 -615,770,1351,-9,1354,1353,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.1152263922597,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,761.25,227520.4475609291,52953.32464262025,355348.2233948212,148552.5524296701,2248.040843693974 -615,770,1352,-9,1354,1353,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.355292949762,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,761.25,227520.4475609291,52953.32464262025,355348.2233948212,148552.5524296701,2248.040843693974 -615,770,1353,1354,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.041384670782463,8.412996631781937,0,15,3,-20.09632461859582,0,3,3,2019,9,0,40,40,1,1,0,9.894674080221609,9.894674080221609,0,0,0,0,0,1,1,0,0,0,51,56,46,51,8,1,1,0,0,12,5,3,1,761.25,227520.4475609291,52953.32464262025,355348.2233948212,148552.5524296701,2248.040843693974 -615,770,1354,1353,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.240496021908699,5.54896443413236,0,15,-3,127.1704013804714,0,2,2,2019,12,0,2,0,1,2,0,14.50013085757928,14.50013085757928,0,0,0,0,0,1,1,0,0,0,46,51,51,56,7,1,1,0,0,3,5,3,1,761.25,227520.4475609291,52953.32464262025,355348.2233948212,148552.5524296701,2248.040843693974 -615,771,1355,-9,1354,1353,1,0,18,0,2,0,2,2,1,0,4,7.234682797956802,7.180884707615405,0,0,0,-948.2017604065022,-9,2,2,2019,15,4,31,0,1,4,1,3.996925486015226,3.996925486015226,0,0,0,0,0,1,1,0,0,0,47.58,56.39,-9,-9,8.333333333333334,2,3,0,0,1,5,3,1,406,52917.18778591832,0,0,0,817.0944175426682 -616,772,1356,1357,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.391570393770994,8.230334879495087,0,8,0,43.96454353904151,0,2,2,2019,7,0,40,33,1,0,0,13.44905271184309,13.44905271184309,0,0,0,0,0,0,0,0,4.780900888772288,0,55.53,51.55,47.01,58,8.333333333333334,1,1,0,0,10,10,5,1,308,1555370.173840763,930264.9638579094,520107.8404194016,0,3443.994178493755 -616,772,1357,1356,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.734227195420317,8.799635148341421,0,8,0,95.12413661201612,0,2,2,2019,11,0,52,47,1,0,0,16.99921575103092,16.99921575103092,0,0,0,0,0,0,0,0,4.510844662557525,0,47.01,58,55.53,51.55,8.333333333333334,1,1,0,0,11,10,5,1,308,1555370.173840763,930264.9638579094,520107.8404194016,0,3443.994178493755 -616,773,1358,-9,1357,1356,1,0,25,0,0,0,1,1,-9,0,4,7.875227162679155,7.995838250049059,0,0,0,-965.5665851910605,-9,1,1,2019,9,1,38,0,1,1,1,7.134043197803035,7.134043197803035,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,7,10,4,1,585,-129774.9475272778,-55352.64773076909,0,0,1709.731772317866 -616,774,1359,-9,1357,1356,1,1,21,0,0,1,2,0,0,0,4,0,6.091170605593147,6.063824998859031,0,0,-903.1120493420427,-9,2,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,5.812468869672117,0,54.2,57.49,-9,-9,0,1,1,0,0,3,10,2,1,1475,3813.63166800906,0,0,0,386.6667724670472 -617,775,1360,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.778317236605362,7.895130671151586,0,0,0,-869.905368691916,-9,3,2,2019,14,2,32,0,1,2,0,5.996817171189893,5.996817171189893,0,0,0,0,0,0,0,0,.3842100734952379,0,29.72,52,-9,-9,3.333333333333333,3,4,0,0,7,8,3,0,697,57961.34535979691,14122.64407777004,0,0,757.0976367700745 -618,776,1361,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,0,0,-996.7977536435035,0,3,3,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35.11,24.62,-9,-9,0,1,1,1,1,0,11,1,0,1013,-114289.3106483698,0,0,0,489.9500359457721 -618,777,1362,-9,1361,-9,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-973.3634223311253,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,120,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,389,0,0,0,0,-532.3996249849135 -619,778,1363,-9,1366,1365,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.1852629637488,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,1069.75,550346.082224289,2242.451975228185,751018.9527404051,359507.9253195959,6122.648118556509 -619,778,1364,-9,1366,1365,1,1,10,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1139.855504515665,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,5,1,1069.75,550346.082224289,2242.451975228185,751018.9527404051,359507.9253195959,6122.648118556509 -619,778,1365,1366,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,9.069410503643523,8.927725478566586,0,15,0,233.2619136661512,0,2,1,2019,7,0,43,50,1,0,0,24.57090780689934,24.57090780689934,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,2,3,0,0,10,8,5,1,1069.75,550346.082224289,2242.451975228185,751018.9527404051,359507.9253195959,6122.648118556509 -619,778,1366,1365,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.153975725996272,8.860942255087672,0,15,0,-57.0582652749729,0,-9,-9,2019,7,1,28,36,1,1,0,35.08929597268745,35.08929597268745,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,11,8,5,1,1069.75,550346.082224289,2242.451975228185,751018.9527404051,359507.9253195959,6122.648118556509 -620,779,1367,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.284445471200135,9.35216807585053,0,0,0,-1082.734816272328,0,2,2,2019,9,0,60,60,1,1,0,21.9010778443357,21.9010778443357,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,6,7,5,1,111,111317.5689736179,-2176.405299451711,407911.6020018502,309489.2657217084,2878.021389176755 -621,780,1368,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-950.2245221664996,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,41.98,-9,-9,5,1,1,0,1,9,13,1,0,178,30653.38987914901,0,0,0,648.3499723557838 -622,781,1369,1370,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,0,0,0,23,0,24.62925101944784,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.107287432147241,0,56.58,45.49,45.4,56.19,1.666666666666667,1,1,0,0,0,9,5,1,275,3488233.945395252,857089.6772828298,2267634.510276218,0,4679.886888202162 -622,781,1370,1369,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.559317757053943,9.590642323525087,0,23,0,88.7326189645499,0,2,3,2019,11,0,38,45,1,0,0,39.43380537191953,39.43380537191953,0,0,0,0,0,0,0,0,0,0,45.4,56.19,56.58,45.49,6.666666666666667,1,1,0,0,12,9,5,1,275,3488233.945395252,857089.6772828298,2267634.510276218,0,4679.886888202162 -622,782,1371,-9,1369,1370,1,1,19,0,1,1,2,0,0,0,4,0,6.701602059536194,6.698301873173967,0,0,-1084.469218286105,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,6.175343956411433,0,46.39,60.99,-9,-9,3.333333333333333,1,1,0,0,1,9,2,1,752,180418.9297560501,0,0,0,112.1360395657528 -623,783,1372,1373,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.476777501213727,8.557719250617511,0,6,-1,151.0292620097956,0,-9,-9,2019,11,0,40,40,1,0,0,11.75679938812094,11.75679938812094,0,0,0,0,0,0,0,0,1.813523464989069,0,38.3,44.66,54.21,49.46,5,2,3,0,0,4,9,5,1,1441,336083.5094423377,200403.1298739521,618370.6936965388,351432.5846779422,3160.169277015488 -623,783,1373,1372,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.335430453173917,8.375426754801991,0,6,1,-54.29830812207507,0,1,1,2019,10,1,91,47,1,1,0,5.579653084314721,5.579653084314721,0,0,0,0,0,0,0,0,0,0,54.21,49.46,38.3,44.66,6.666666666666667,2,3,0,0,11,9,5,1,1441,336083.5094423377,200403.1298739521,618370.6936965388,351432.5846779422,3160.169277015488 -624,784,1374,1375,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,10,-2,0,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.099339408834956,0,51.83,57.2,57.76,41.11,10,1,1,0,0,9,2,1,1,719,1030937.684487334,475951.4052876143,523542.4083648626,0,142.9405474176874 -624,784,1375,1374,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,10,2,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4985374222645891,0,57.76,41.11,51.83,57.2,8.333333333333334,1,1,0,0,8,2,1,1,719,1030937.684487334,475951.4052876143,523542.4083648626,0,142.9405474176874 -625,785,1376,1377,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.549085096617268,6.75366445182306,19,0,45.17421321777638,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.303414168767977,6.619162679700453,54.96,53.17,63.67,35.92,8.333333333333334,1,1,0,0,2,1,2,1,691,399741.2812420881,56075.60499603584,86848.87004656576,0,1677.322780566289 -625,785,1377,1376,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,19,0,157.9965303332746,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.440734468673272,0,63.67,35.92,54.96,53.17,8.333333333333334,1,1,0,0,1,1,2,1,691,399741.2812420881,56075.60499603584,86848.87004656576,0,1677.322780566289 -626,786,1378,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.253582136552705,7.418333864222279,5.845792068259534,0,0,-1029.539031096192,0,3,3,2019,12,0,20,20,1,0,0,9.852137852164553,9.852137852164553,0,0,0,0,0,0,0,0,0,5.939631756268827,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,724,348146.1511112462,26163.29027014206,0,0,902.9518646180597 -626,787,1379,-9,1378,-9,1,0,18,0,0,0,2,2,-9,0,4,7.244616403250906,7.138729194024442,0,0,0,-958.5399062901331,0,2,-9,2019,20,8,25,0,1,8,1,7.697688870472487,7.697688870472487,0,0,0,0,0,0,0,0,0,0,32.37,58.14,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,602,125257.8086507635,0,0,0,-43.99511501021095 -627,788,1380,1381,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.681759273022298,6.74357963480946,0,31,0,-3.659233578685636,0,3,-9,2019,6,0,15,0,1,0,0,6.390465588378508,6.390465588378508,0,0,0,0,0,0,0,0,.3213728848567453,0,57.06,57.76,57.16,56.15,10,1,1,0,0,5,6,4,1,509,1849986.463335372,1238310.23073659,538327.5865701416,161044.087431878,2323.732687249985 -627,788,1381,1380,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.277236119387272,8.28462578747061,0,31,9,-68.4126884977621,0,1,-9,2019,7,0,20,20,1,0,0,23.63471143806959,23.63471143806959,0,0,0,0,0,0,0,0,4.492995306923686,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,6,4,1,509,1849986.463335372,1238310.23073659,538327.5865701416,161044.087431878,2323.732687249985 -628,789,1382,-9,1384,1385,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1158.28294077053,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,4,1,531.25,228613.9811769774,81182.06813917123,151694.0160557112,55247.42155155382,3718.183770099661 -628,789,1383,-9,1384,1385,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1008.442998040212,-9,1,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,4,1,531.25,228613.9811769774,81182.06813917123,151694.0160557112,55247.42155155382,3718.183770099661 -628,789,1384,1385,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.798490161780576,8.876203467147509,0,23,-5,65.10643986589736,0,2,3,2019,6,1,42,39,1,1,0,22.79582929861282,22.79582929861282,0,0,0,0,0,1,1,0,0,0,56.92,49.39,55.96,49.93,8.333333333333334,1,1,0,0,7,11,4,1,531.25,228613.9811769774,81182.06813917123,151694.0160557112,55247.42155155382,3718.183770099661 -628,789,1385,1384,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,7.669986278280347,7.815064305404897,0,23,5,-111.634903525817,0,3,2,2019,7,0,37,0,1,0,0,7.829928202034925,7.829928202034925,0,0,0,0,0,1,1,0,0,0,55.96,49.93,56.92,49.39,1.666666666666667,1,1,0,0,8,11,4,1,531.25,228613.9811769774,81182.06813917123,151694.0160557112,55247.42155155382,3718.183770099661 -629,790,1386,1387,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.338636973257426,7.233637429332609,0,8,-4,192.3695225967413,0,3,3,2019,12,0,16,0,1,0,0,7.68090311508869,7.68090311508869,0,0,0,0,0,1,1,0,0,0,44.84,47.1,51.27,48.12,5,1,1,0,0,11,13,4,1,585.5,132679.8380206031,38521.66163828749,132285.7841806885,70275.27402262179,2495.032541416959 -629,790,1387,1386,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.917810664405469,8.069012507721586,8,4,-80.0028017442512,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.868282785206043,7.881475203659547,51.27,48.12,44.84,47.1,8.333333333333334,1,1,0,0,0,13,4,1,585.5,132679.8380206031,38521.66163828749,132285.7841806885,70275.27402262179,2495.032541416959 -630,791,1388,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.588516736197852,6.695875493982665,0,0,-1009.967774327268,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.402547037105311,6.572088141258185,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,1000,217951.3729467975,196750.8540021693,0,0,1868.341916520695 -631,792,1389,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.967457612639053,7.926927722794358,0,0,-984.5739994683199,-9,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.207604461635149,8.029646318252389,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,12,1,4,1,69,941918.6524256449,712059.5785883585,193677.0448029345,0,43.34162541168624 -632,793,1390,1391,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.67896147748366,5.790829942888153,2,-2,-23.51179554374237,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,5.764149568688886,61.85,47.26,60.02,56.42,8.333333333333334,1,1,0,0,0,9,2,1,1099,1055338.75483454,234312.5590423044,491903.6800449155,0,1309.249287520478 -632,793,1391,1390,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,4.686156380758034,4.712680661687267,2,2,-25.70172108232496,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,0,1,4.424387761958815,4.566775585841192,60.02,56.42,61.85,47.26,1.666666666666667,1,1,0,0,0,9,2,1,1099,1055338.75483454,234312.5590423044,491903.6800449155,0,1309.249287520478 -633,794,1392,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-945.3756456117956,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,14.37,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,789,0,0,0,0,425.9346143402422 -633,795,1393,-9,-9,1392,1,0,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-897.112647633531,-9,-9,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,1,0,185,-268695.3992350554,0,0,0,0 -634,796,1394,1395,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.157048656334251,8.165664398105122,0,30,1,-26.15529292519165,-9,3,-9,2019,11,0,41,0,1,2,0,10.31948744846481,10.31948744846481,0,0,0,0,0,0,0,0,0,0,46.61,56.93,47.38,49.75,3.333333333333333,1,1,0,0,7,9,4,1,480,982232.5997069619,793464.5060456162,166625.0621572335,0,2812.832849712865 -634,796,1395,1394,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.143509055007211,8.12031966493983,0,30,-1,139.9020622242178,-9,2,-9,2019,11,0,48,0,1,0,0,7.612578393900614,7.612578393900614,0,0,0,0,0,0,0,0,0,0,47.38,49.75,46.61,56.93,6.666666666666667,1,1,0,0,9,9,4,1,480,982232.5997069619,793464.5060456162,166625.0621572335,0,2812.832849712865 -634,797,1396,-9,1394,1395,1,1,23,0,0,0,1,1,-9,0,5,7.885242396578884,8.321320013304616,0,0,0,-840.0989618798523,-9,2,2,2019,15,3,42,0,1,3,1,7.944578562191068,7.944578562191068,0,0,0,0,0,0,0,0,0,0,39.29,59.13,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,594,-432.4888083695314,0,0,0,1129.658780885783 -635,798,1397,1398,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,43,2,83.57783961243119,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,48,10,1,1,0,0,0,13,4,1,286.5,1460021.414607728,1104914.153930761,416563.1956047445,0,3097.171782656243 -635,798,1398,1397,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.607969229358984,8.837201557538052,0,8,-2,-80.13490644975622,0,-9,-9,2019,10,0,15,40,1,1,0,37.94014749127529,37.94014749127529,0,0,0,0,0,1,1,0,0,0,52,48,57.06,57.76,7,1,1,0,0,1,13,4,1,286.5,1460021.414607728,1104914.153930761,416563.1956047445,0,3097.171782656243 -636,799,1399,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,3,0,5.744173182594015,5.61966573128695,0,0,-843.3216903159531,0,1,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,5.634930602397326,0,44.09,51.25,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,728,-273102.702278689,0,0,0,1487.841635384517 -637,800,1400,1401,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.57814784849376,6.038844915618943,53,1,39.66307870421158,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.544720219439697,54.67,43.45,62.39,56.71,8.333333333333334,1,1,0,0,0,5,2,1,1779.5,401960.0891996349,238814.4896046495,176105.2408396151,0,1633.234096832482 -637,800,1401,1400,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.559737628419973,6.55718962219234,53,-1,79.67816694382805,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.64508021520836,6.636517251766422,62.39,56.71,54.67,43.45,10,1,1,0,0,5,5,2,1,1779.5,401960.0891996349,238814.4896046495,176105.2408396151,0,1633.234096832482 -638,801,1402,1403,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.976003521201066,7.108160997355602,53,0,112.0769350834593,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.346251562137688,6.82359235765484,52,46,53,46,8,1,1,0,0,0,13,3,1,1001,950728.3530305994,416020.0844398721,277862.7520571277,0,1993.873866783898 -638,801,1403,1402,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.109620253742175,7.055355844111823,53,0,118.0585343831011,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.522387143241166,7.155815090027517,53,46,52,46,8,1,1,0,0,0,13,3,1,1001,950728.3530305994,416020.0844398721,277862.7520571277,0,1993.873866783898 -639,802,1404,1405,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.972229975832724,4.946401067662957,58,1,58.39943497027997,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.782759381839948,5.313392698461682,48.45,57.49,57.92,51.82,10,1,1,0,0,0,9,2,1,938,248118.5105617535,38022.60561805213,213524.005471491,0,455.1348073883543 -639,802,1405,1404,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-1,99.35224328530397,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.92,51.82,48.45,57.49,5,1,1,0,0,0,9,2,1,938,248118.5105617535,38022.60561805213,213524.005471491,0,455.1348073883543 -640,803,1406,1407,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,10,14,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,4.08610334499822,1.251038513821127,20.05517268526627,0,1,1,0,0,0,53.99,26.44,61.19,42.11,8.333333333333334,1,1,0,0,0,4,1,0,507.5,98158.83550335391,57023.97585166819,46900.7274228343,-19340.81136210189,2107.507519884111 -640,803,1407,1406,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,22,-14,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,.8289574588081127,0,61.19,42.11,53.99,26.44,8.333333333333334,1,1,0,0,0,4,1,0,507.5,98158.83550335391,57023.97585166819,46900.7274228343,-19340.81136210189,2107.507519884111 -641,804,1408,1409,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,3.323129904245654,3.129394431500713,0,33,1,-100.1909916038963,0,-9,-9,2019,6,0,40,40,1,0,0,.0542382318413339,.0542382318413339,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,8,4,1,400.5,1436743.997169404,202467.8101711445,442275.6601380636,0,3131.760025956831 -641,804,1409,1408,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.621455991665217,8.547255901676321,4.776892654533379,33,-1,47.48968328900385,0,-9,-9,2019,10,0,48,60,1,0,0,12.50104335942559,12.50104335942559,0,0,0,0,0,0,0,0,4.389679644378524,0,51.24,58.84,51.83,57.2,1.666666666666667,4,2,0,0,10,8,4,1,400.5,1436743.997169404,202467.8101711445,442275.6601380636,0,3131.760025956831 -641,805,1410,-9,1408,1409,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1151.669334782694,0,3,3,2019,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,28.54,47.83,-9,-9,5,4,2,1,1,1,8,1,1,534,-47569.98273581957,0,0,0,0 -642,806,1411,1412,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,6,1,-82.42733881529757,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,2.706974670457745,0,42.21,42.88,50.17,53.95,6.666666666666667,1,1,0,0,1,11,5,1,934,399709.9598473636,3370.388129164812,355769.7018766351,194443.4850257567,3078.734165971308 -642,806,1412,1411,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,9.052867585804327,8.881577765902406,0,6,-1,-16.95800716479447,0,2,2,2019,9,0,55,50,1,0,0,23.4087524801231,23.4087524801231,0,0,0,0,7,1,1,0,3.58180448753232,0,50.17,53.95,42.21,42.88,8.333333333333334,1,1,0,0,7,11,5,1,934,399709.9598473636,3370.388129164812,355769.7018766351,194443.4850257567,3078.734165971308 -642,807,1413,-9,1411,1412,1,1,30,0,0,0,2,2,-9,1,3,7.250401619000939,7.22030364564558,0,0,0,-1014.960543212936,0,2,2,2019,12,0,17,17,1,0,1,12.17137543775123,12.17137543775123,0,0,0,0,0,1,1,0,0,0,46.56,50.26,-9,-9,6.666666666666667,1,1,0,0,7,11,3,1,557,-173517.472147931,-8652.170166701879,0,0,1328.863143560097 -643,808,1414,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1096.886201324659,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,11.22930951193129,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,1578,-26434.52101962984,0,153725.3376402224,0,1531.058692634588 -644,809,1415,1416,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.964992800312472,7.979848263779753,0,30,-3,-23.9448751962916,0,2,2,2019,7,0,29,27,1,0,0,11.59616709310764,11.59616709310764,0,0,0,0,0,1,1,0,4.282724955012885,0,60.98,40.77,59.29,49.68,8.333333333333334,1,1,0,0,10,4,5,1,1399.5,1532323.124891936,1553037.633129739,-10236.90709508215,31064.07198782823,3678.073841840652 -644,809,1416,1415,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.610837938280879,8.495107668893825,0,32,3,-173.2492933186152,0,2,2,2019,8,0,38,38,1,0,0,18.97053626737654,18.97053626737654,0,0,0,0,0,1,1,0,2.589120713248704,0,59.29,49.68,60.98,40.77,8.333333333333334,1,1,0,0,10,4,5,1,1399.5,1532323.124891936,1553037.633129739,-10236.90709508215,31064.07198782823,3678.073841840652 -644,810,1417,-9,1415,1416,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-938.4594457559041,-9,2,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,33.31,61.94,-9,-9,5,1,1,0,0,0,4,1,1,356,0,0,0,0,0 -645,811,1418,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.696969403878508,7.210599547993021,0,0,-889.1048816676075,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.959999330646472,7.048300243526592,52,47,-9,-9,7,1,1,0,0,0,6,2,1,3335,739327.1724742927,275175.9301990978,544877.3989822119,0,1346.84661795712 -646,812,1419,1420,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,0,0,33,2,66.9206817654938,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.852184361271166,0,55.53,51.55,57.06,57.76,8.333333333333334,1,1,0,0,0,10,3,1,778,1853420.965566539,180792.2052588923,715903.3458731452,0,858.4139747989392 -646,812,1420,1419,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.334401322035075,7.753420753601216,0,33,-2,34.81523163604025,0,3,2,2019,6,0,45,60,1,0,0,5.07617333538284,5.07617333538284,0,0,0,0,0,1,1,0,3.991055476146873,0,57.06,57.76,55.53,51.55,6.666666666666667,1,1,0,0,12,10,3,1,778,1853420.965566539,180792.2052588923,715903.3458731452,0,858.4139747989392 -646,813,1421,-9,1419,1420,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-917.9943322481099,-9,1,1,2019,11,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,.550775977940446,0,49.3,59.89,-9,-9,8.333333333333334,1,1,1,0,0,10,1,1,263,-110604.7909370223,0,0,0,-35.29141102476003 -647,814,1422,1423,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.561231225637471,8.472539747776615,0,17,2,-28.51363754298278,0,2,2,2019,11,2,55,48,1,2,0,13.48338684602708,13.48338684602708,0,0,0,0,0,1,1,0,0,0,45.56,60.26,49,55,8.333333333333334,1,1,0,0,8,7,4,0,1864.5,80948.73546730584,155133.2370670903,0,0,3606.073353379084 -647,814,1423,1422,-9,-9,1,0,38,0,2,0,1,1,1,0,4,6.662629389309681,6.808152194758363,0,17,-2,-17.05989541267337,-9,-9,-9,2019,11,0,4,0,1,2,0,34.45353554978401,34.45353554978401,0,0,0,0,0,1,1,0,0,0,49,55,45.56,60.26,7,1,1,0,0,7,7,4,0,1864.5,80948.73546730584,155133.2370670903,0,0,3606.073353379084 -647,814,1424,-9,1423,1422,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.0426713620377,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,0,1864.5,80948.73546730584,155133.2370670903,0,0,3606.073353379084 -647,814,1425,-9,1423,1422,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.4765247580864,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,7,4,0,1864.5,80948.73546730584,155133.2370670903,0,0,3606.073353379084 -648,815,1426,-9,1427,1428,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.348560157008,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,773.3333333333334,99730.23953009066,162997.2904709552,95572.00313305052,88817.4694057138,3193.277644054597 -648,815,1427,1428,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.645268822520293,8.356428389164167,0,3,-6,22.46323235909714,0,-9,-9,2019,10,0,40,41,1,0,0,13.60065673147475,13.60065673147475,0,0,0,0,0,1,1,0,1.235754160820976,0,54.2,57.49,50,57,8.333333333333334,1,1,0,0,4,13,4,1,773.3333333333334,99730.23953009066,162997.2904709552,95572.00313305052,88817.4694057138,3193.277644054597 -648,815,1428,1427,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.190742644221762,8.009548876125098,0,3,6,11.60743865602892,0,3,3,2019,10,0,40,45,1,1,0,11.31879356667894,11.31879356667894,0,0,0,0,0,1,1,0,0,0,50,57,54.2,57.49,7,1,1,0,0,1,13,4,1,773.3333333333334,99730.23953009066,162997.2904709552,95572.00313305052,88817.4694057138,3193.277644054597 -649,816,1429,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.712765195038594,6.614122491642232,0,0,-1044.720061997529,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,0,7.714067636471859,0,0,1,1,0,0,6.489955518667681,39.15,36.1,-9,-9,5,1,1,0,0,2,10,2,1,259,98444.33898304979,105582.5084606963,0,0,865.7403168606198 -650,817,1430,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.946571921760293,7.921376896668459,0,0,0,-1074.331249382167,0,1,-9,2019,4,1,35,59,1,1,1,7.888817854662131,7.888817854662131,0,0,0,0,0,0,0,0,0,0,56.88,50.89,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,297,56110.65374573512,0,0,0,1915.021006196294 -651,818,1431,1432,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.648860506631285,7.743139496684002,0,2,-5,-88.50989211193344,0,2,-9,2019,11,0,40,53,1,0,0,7.104130135820886,7.104130135820886,0,0,0,0,0,0,0,0,0,0,51.83,57.2,46.08,57.2,6.666666666666667,1,1,0,0,7,11,5,1,1357.5,732470.3750787496,570985.5581248672,124762.8032423561,99788.71484307738,2721.11389014743 -651,818,1432,1431,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.458564940737256,8.481141190682084,0,2,5,27.687008340118,-9,-9,-9,2019,12,1,49,0,1,1,0,10.6880119516691,10.6880119516691,0,0,0,0,0,0,0,0,0,0,46.08,57.2,51.83,57.2,8.333333333333334,1,1,0,0,3,11,5,1,1357.5,732470.3750787496,570985.5581248672,124762.8032423561,99788.71484307738,2721.11389014743 -652,819,1433,-9,1435,1437,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.9133371875851,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,698,583074.8475867625,704602.0546148571,0,0,2811.194659514235 -652,819,1434,-9,1435,1437,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.4740953285261,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,698,583074.8475867625,704602.0546148571,0,0,2811.194659514235 -652,819,1435,1437,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,7.520534901096663,7.620926710147796,0,21,2,-60.7702306174961,0,2,2,2019,5,0,15,16,1,0,0,13.03323666052037,13.03323666052037,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.36,51.57,10,1,1,0,0,6,9,3,1,698,583074.8475867625,704602.0546148571,0,0,2811.194659514235 -652,819,1436,-9,1435,1437,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1090.120433892595,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,3,1,698,583074.8475867625,704602.0546148571,0,0,2811.194659514235 -652,819,1437,1435,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,8.020776426785448,8.393814694361348,0,21,-2,-45.14884116383816,0,2,3,2019,7,0,50,60,1,0,0,9.41736313894288,9.41736313894288,0,0,0,0,0,1,1,0,0,0,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,9,9,3,1,698,583074.8475867625,704602.0546148571,0,0,2811.194659514235 -653,820,1438,1439,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,6,2,-45.92357457157814,0,2,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,52.71,55.38,46.15,8.333333333333334,1,1,1,0,5,10,3,0,451,-90096.85093304739,13261.2956380151,192598.4245081092,140522.0960036914,1178.212195154891 -653,820,1439,1438,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.954444933552071,7.885540079290832,0,6,-2,-104.1263478168608,0,-9,-9,2019,8,0,21,51,1,0,0,14.58665022484852,14.58665022484852,0,0,0,0,0,0,0,0,0,0,55.38,46.15,51.81,52.71,5,1,1,0,0,4,10,3,0,451,-90096.85093304739,13261.2956380151,192598.4245081092,140522.0960036914,1178.212195154891 -654,821,1440,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.364840278846846,7.367174452011252,0,0,-1155.939285316076,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.816474724280333,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,437,326372.7779733227,198202.8388984381,176362.6246461189,0,1900.315054081584 -655,822,1441,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.171456405242914,8.034540804536539,0,0,-1043.710653209515,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.212682208205109,6.61882257873339,51.42,48.12,-9,-9,10,1,1,0,0,0,11,4,1,244,552727.4972566863,291513.9521676638,57593.89385413351,0,3720.45491259767 -656,823,1442,1443,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.242515059062116,8.432751543784981,0,25,7,97.06894195909967,0,3,3,2019,10,0,30,40,1,0,0,17.39342202017186,17.39342202017186,0,0,0,0,0,0,0,0,0,0,55.12,42.1,54.38,49.27,8.333333333333334,1,1,0,0,11,2,4,1,841,225497.8928029603,19831.83857574892,181203.8454353444,0,1645.719574124554 -656,823,1443,1442,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,26,-7,-64.12733804074485,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.38,49.27,55.12,42.1,8.333333333333334,1,1,0,0,10,2,4,1,841,225497.8928029603,19831.83857574892,181203.8454353444,0,1645.719574124554 -656,824,1444,-9,1443,1442,1,1,27,0,0,0,2,2,-9,0,3,8.26447825923934,8.233781327005989,0,0,0,-978.7262547437957,0,2,2,2019,13,1,40,43,1,1,1,9.93405248111071,9.93405248111071,0,0,0,0,0,0,0,0,0,0,39.22,55.19,-9,-9,5,1,1,0,0,10,2,4,1,282,126514.0281166157,67674.4255506114,0,0,1212.217736285846 -656,825,1445,-9,1443,1442,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1119.575670437232,-9,2,3,2019,7,1,0,0,2,1,1,0,0,0,0,0,2.872994206309956,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,3,2,1,1,434,16894.557211746,0,0,0,0 -657,826,1446,1447,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,6.807495313280047,6.742430721497852,0,2,2,15.33247698173631,0,2,-9,2019,15,3,14,0,1,3,0,7.027451916027294,7.027451916027294,0,0,0,0,0,0,0,0,0,0,34.89,36.4,44.86,37.2,8.333333333333334,2,3,0,0,1,2,2,1,971.5,102485.1508944398,565.9007390976294,0,0,848.9463932149029 -657,826,1447,1446,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,6.76247651487979,6.617660563078512,0,2,-2,17.04755138024367,0,-9,-9,2019,26,9,23,23,1,9,0,4.285023925455629,4.285023925455629,0,0,0,0,0,0,0,0,0,0,44.86,37.2,34.89,36.4,5,2,3,0,0,5,2,2,1,971.5,102485.1508944398,565.9007390976294,0,0,848.9463932149029 -658,827,1448,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,4,0,0,0,0,0,-1022.814170164287,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,401,-76110.34308342746,0,0,0,746.8445181394466 -659,828,1449,1450,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.393119009875828,5.315755186824904,31,18,55.68179182673904,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.780347231566108,5.45325130667897,56.67,42.78,51.08,52.1,8.333333333333334,1,1,0,0,0,9,2,1,375,271439.2628821123,-40102.56066060208,196609.5941462465,0,1444.662814504978 -659,828,1450,1449,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,31,-18,-39.8881182939442,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,0,0,51.08,52.1,56.67,42.78,3.333333333333333,1,1,0,0,3,9,2,1,375,271439.2628821123,-40102.56066060208,196609.5941462465,0,1444.662814504978 -660,829,1451,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.171262421694882,6.211267851965144,0,0,-1034.101774005073,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,1.219274337885901,0,1,1,0,.5663967367518616,5.939332978096871,53,44,-9,-9,8,1,1,0,0,0,12,2,0,556,43596.04448292425,14120.5862488466,175466.5824785344,0,1335.787423036703 -661,830,1452,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.803765380446559,8.084072566300822,0,0,0,-949.1545594694149,0,-9,-9,2019,6,0,36,38,1,0,0,8.973008128130765,8.973008128130765,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,11,13,4,1,1816,373214.3691850548,70948.0831592624,0,0,904.1233852309128 -662,831,1453,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.400385317154851,6.898071077422264,0,0,-898.0207533812412,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,8.112404178916179,7.611561057808383,44.72,38.06,-9,-9,5,1,1,0,0,0,9,3,1,1135,708936.4713382347,207477.533181114,639773.0671165505,0,1865.918075871287 -662,832,1454,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.61102413160571,6.414401004276223,0,0,-1042.595785564521,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.300498598013078,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2192,305711.5010058511,75441.63812275513,217240.8026552579,0,1395.211398663148 -663,833,1455,-9,1456,1457,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.338368813781,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,652,159143.2551704767,106462.8108171006,289369.7667369377,218677.9897621259,4169.204712435902 -663,833,1456,1457,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,8.10100544410928,8.275580811712162,0,4,-2,85.90417782451746,0,-9,-9,2019,8,0,23,23,1,0,0,12.96892790864744,12.96892790864744,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,652,159143.2551704767,106462.8108171006,289369.7667369377,218677.9897621259,4169.204712435902 -663,833,1457,1456,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.947813339758527,8.96678848066254,0,4,2,-41.31772739441025,0,2,2,2019,5,0,44,41,1,0,0,23.2454834715673,23.2454834715673,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,6,5,1,652,159143.2551704767,106462.8108171006,289369.7667369377,218677.9897621259,4169.204712435902 -664,834,1458,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-968.1833349808219,0,3,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,-9,-9,0,1,1,0,1,0,9,1,0,241,-180508.4513760695,0,0,0,629.0588634825606 -665,835,1459,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1018.330993059356,0,2,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,27.51,36.35,-9,-9,1.666666666666667,1,1,0,1,0,9,2,0,446,0,0,0,0,1378.849895672346 -665,835,1460,-9,-9,1459,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.628397916877,1,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,9,2,0,446,0,0,0,0,1378.849895672346 -666,836,1461,1463,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.075303858921584,8.992751605655815,0,8,8,-56.21277939729049,0,2,2,2019,7,0,35,40,1,0,0,24.11985225480283,24.11985225480283,0,0,0,0,0,1,1,0,3.118231997979706,0,54.37,54.8,46.14,54.22,6.666666666666667,1,1,0,0,10,1,5,1,1385.666666666667,1548271.495677354,1102843.669522956,232072.7543778487,36441.09629178626,3686.854546141178 -666,836,1462,-9,1463,1461,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.086724363135,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,1385.666666666667,1548271.495677354,1102843.669522956,232072.7543778487,36441.09629178626,3686.854546141178 -666,836,1463,1461,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.086245817046295,7.829547217226262,0,8,-8,3.412867741564902,0,2,2,2019,6,0,25,30,1,0,0,14.69049361727104,14.69049361727104,0,0,0,0,0,1,1,0,0,0,46.14,54.22,54.37,54.8,8.333333333333334,1,1,0,0,10,1,5,1,1385.666666666667,1548271.495677354,1102843.669522956,232072.7543778487,36441.09629178626,3686.854546141178 -666,837,1464,-9,1463,1461,1,1,20,0,1,1,1,0,0,0,3,0,0,0,0,0,-1073.049228206834,-9,1,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,1,6,1,1,1,1261,-60410.61109883145,0,0,0,0 -667,838,1465,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.887358422003003,7.994782323797121,0,0,0,-952.6649391727461,0,3,2,2019,11,0,37,42,1,0,0,7.343287880466128,7.343287880466128,0,0,0,0,0,0,0,0,0,0,48.12,50.58,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,822,-228124.6209112008,0,0,0,1335.759863416052 -668,839,1466,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,3.63145188380187,3.855376072549412,0,0,-988.0095942664979,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.465696961817871,37.24,38.17,-9,-9,5,1,1,0,0,0,9,2,1,420,82601.91977569574,0,0,0,1467.044030714476 -669,840,1467,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.7164428388312,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,59.99,23.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,527,120810.495298322,0,189589.9572977718,0,1258.539927406371 -670,841,1468,-9,1470,1473,1,1,18,0,1,0,2,2,-9,0,4,7.157234465416084,7.072078887852353,0,0,0,-984.7429559691527,0,2,2,2019,21,7,30,0,1,7,1,5.340843710811735,5.340843710811735,0,0,0,0,0,1,1,0,0,0,24.65,60.36,-9,-9,6.666666666666667,1,1,0,0,6,5,2,1,529,-33089.19139229209,0,0,0,883.0340173855957 -670,842,1469,-9,1470,1473,1,1,18,0,1,0,2,2,1,0,4,5.895005765669557,6.120630825643813,0,0,0,-921.7185589594635,-9,2,2,2019,5,0,12,0,1,0,1,3.94853470415326,3.94853470415326,0,0,0,0,0,1,1,0,0,0,44.59,59.08,-9,-9,8.333333333333334,1,1,0,0,1,5,2,1,917,-142896.5426416472,0,0,0,1007.758706212329 -670,843,1470,1473,-9,-9,1,0,39,0,1,0,2,2,-9,0,2,8.092357016773885,7.954271103235476,6.45498558320199,4,0,68.99465838344989,0,3,3,2019,16,5,50,54,1,5,0,7.948371517395275,7.948371517395275,0,0,0,0,2,1,1,0,6.335410725127194,0,49.63,42.83,14.93,50.29,0,1,1,0,0,9,5,5,1,1007.75,326973.3940793421,221378.4017382962,211532.4275552048,79449.32942822605,4940.355324503535 -670,843,1471,-9,1470,1473,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.990818459995,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,1007.75,326973.3940793421,221378.4017382962,211532.4275552048,79449.32942822605,4940.355324503535 -670,843,1472,-9,1470,1473,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-1073.829697288792,-9,2,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.66,44.53,-9,-9,6.666666666666667,1,1,0,0,1,5,5,1,1007.75,326973.3940793421,221378.4017382962,211532.4275552048,79449.32942822605,4940.355324503535 -670,843,1473,1470,-9,-9,1,1,39,0,1,0,2,2,-9,0,1,8.810004950602289,8.931290027597317,0,4,0,-149.9694991597203,0,-9,-9,2019,26,9,39,39,1,9,0,15.32310460476519,15.32310460476519,0,0,0,0,2,1,1,0,0,0,14.93,50.29,49.63,42.83,3.333333333333333,1,1,0,0,9,5,5,1,1007.75,326973.3940793421,221378.4017382962,211532.4275552048,79449.32942822605,4940.355324503535 -671,844,1474,-9,1476,1477,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.9820585345418,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,5,-9,0,0,6,3,0,300,705957.0054379734,446674.0682384294,183549.1112618319,1430.291752090748,1796.144133753697 -671,844,1475,-9,1476,1477,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.364259638321,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,3,0,300,705957.0054379734,446674.0682384294,183549.1112618319,1430.291752090748,1796.144133753697 -671,844,1476,1477,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,7,-13,174.050784062697,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,39.96,46.57,7,4,5,0,0,0,6,3,0,300,705957.0054379734,446674.0682384294,183549.1112618319,1430.291752090748,1796.144133753697 -671,844,1477,1476,-9,-9,1,1,42,1,3,0,3,3,-9,0,3,8.269520864077922,8.353700599682016,0,12,13,39.64148121680648,0,3,2,2019,21,9,24,60,1,9,0,17.03828667639939,17.03828667639939,0,0,0,0,0,1,1,0,0,0,39.96,46.57,48,57,5,4,5,0,1,9,6,3,0,300,705957.0054379734,446674.0682384294,183549.1112618319,1430.291752090748,1796.144133753697 -671,844,1478,-9,1476,1477,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.672269779406,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,3,0,300,705957.0054379734,446674.0682384294,183549.1112618319,1430.291752090748,1796.144133753697 -672,845,1479,1480,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.480691508531003,7.574764618152049,37,3,-123.6547949875305,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.944887542634999,7.374465741415603,44.4,55.03,57.33,53.46,8.333333333333334,1,1,0,0,0,12,3,1,496.5,796023.0688389463,568951.0947570099,419118.1160676004,124625.5141687166,2903.100930957961 -672,845,1480,1479,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.797594240999842,6.69842371127845,37,-3,18.98247320138056,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.505623111366301,6.829504772002475,57.33,53.46,44.4,55.03,8.333333333333334,1,1,0,0,0,12,3,1,496.5,796023.0688389463,568951.0947570099,419118.1160676004,124625.5141687166,2903.100930957961 -673,846,1481,1482,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.243784425299595,7.409647049039219,45,2,93.43006720508235,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.980155800688621,7.201729800773657,50.71,52.35,43.88,31.94,8.333333333333334,1,1,0,0,12,1,3,1,243,1157352.438086023,904359.835113782,90767.25187478162,0,1837.625646862572 -673,846,1482,1481,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.525423360609355,7.529166553164341,45,-2,-27.65056198449721,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,.547206390658646,0,1,1,0,6.903444184684229,7.219891578411168,43.88,31.94,50.71,52.35,8.333333333333334,1,1,0,0,9,1,3,1,243,1157352.438086023,904359.835113782,90767.25187478162,0,1837.625646862572 -674,847,1483,1484,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,43,2,-67.73140904834172,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,45.11,57.9,33.44,10,1,1,0,0,3,7,4,1,382.5,319285.6933745616,0,255012.1790902489,9401.041676283799,2829.429536280871 -674,847,1484,1483,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,8.409259543362085,8.060857361277639,43,-2,5.855897802181232,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.376348494054826,57.9,33.44,61.52,45.11,8.333333333333334,1,1,0,0,3,7,4,1,382.5,319285.6933745616,0,255012.1790902489,9401.041676283799,2829.429536280871 -675,848,1485,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,6.153117633402871,6.552066471493654,0,0,-1036.865132710959,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.328830410158135,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,8,2,1,417,736089.0875212278,250366.3434904927,386170.2054377866,0,1133.890431996749 -676,849,1486,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-983.2776667240977,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,49.72,50.05,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,620,43337.12109650061,102104.4638437738,0,0,1140.475039347127 -676,850,1487,-9,1486,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.875606603415,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1184,104843.1847438843,0,0,0,0 -677,851,1488,1489,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.677664449540394,8.628275425521267,42,4,98.55376027589054,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.731807875953487,8.667779878891771,54.68,50.55,50.71,52.35,8.333333333333334,1,1,0,0,12,6,5,1,825.5,3636905.085810613,1498421.487736045,1215471.270101994,0,5921.528405188579 -677,851,1489,1488,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.073462548822281,8.038988800647745,42,-4,-98.77191692102674,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.182955092284118,8.152256000451175,50.71,52.35,54.68,50.55,10,1,1,0,0,0,6,5,1,825.5,3636905.085810613,1498421.487736045,1215471.270101994,0,5921.528405188579 -678,852,1490,-9,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,9.777070367938437,9.66179078755405,0,0,0,-963.20867667453,0,-9,-9,2019,11,0,30,35,1,0,0,73.9896923696938,73.9896923696938,0,0,0,0,2,1,1,0,0,0,53.42,52.33,-9,-9,8.333333333333334,1,1,0,0,4,11,5,1,822,327314.9718055387,314488.5122308005,143664.047846497,31306.63091788046,10798.39984529748 -678,852,1491,-9,1490,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.7727256761624,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,5,1,822,327314.9718055387,314488.5122308005,143664.047846497,31306.63091788046,10798.39984529748 -678,852,1492,-9,1490,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.4418382362117,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,5,1,822,327314.9718055387,314488.5122308005,143664.047846497,31306.63091788046,10798.39984529748 -679,853,1493,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.20445998855207,8.247522338087482,0,0,0,-937.1171185313698,0,-9,-9,2019,10,0,37,49,1,0,0,10.42130500917648,10.42130500917648,0,0,0,0,0,0,0,0,3.178163073556667,0,43.2,59.97,-9,-9,5,1,1,0,0,9,8,4,0,2364,252480.2667340085,104217.4801369958,161979.3770325314,45275.59166075468,976.8372302066755 -680,854,1494,1495,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.766194616136445,7.967051913994107,0,1,0,-86.38455239388763,-9,-9,-9,2019,17,5,50,0,1,5,0,5.851229840583365,5.851229840583365,0,0,0,0,7,0,0,0,0,0,31.87,49.25,45.35,50.81,5,1,1,0,0,2,5,4,1,381,1091103.880722755,811160.3387948498,283247.1780428325,0,2436.000743068411 -680,854,1495,1494,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.903890296119652,7.659155899905443,0,1,9,-2.13573792482235,-9,-9,-9,2019,8,0,40,0,1,0,0,7.642377576196079,7.642377576196079,0,0,0,0,7,0,0,0,0,0,45.35,50.81,31.87,49.25,8.333333333333334,1,1,0,0,12,5,4,1,381,1091103.880722755,811160.3387948498,283247.1780428325,0,2436.000743068411 -680,855,1496,-9,-9,1495,1,0,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1019.424865631175,-9,-9,2,2019,20,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,27.4,46.98,-9,-9,3.333333333333333,1,1,1,1,5,5,1,1,180,-108742.5838910414,0,0,0,0 -681,856,1497,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,8.236321185372971,8.31541911195279,0,0,-1039.916584515651,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.260053664813942,8.333277283708929,48.77,50.89,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,260,250132.8507501527,193084.3773452194,63641.20332569182,0,2464.571933907033 -682,857,1498,-9,1500,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-938.5282646535343,0,2,2,2019,18,7,0,45,3,7,0,0,0,0,0,0,0,14.5,1,1,0,1.335153784355934,0,41.17,52.68,-9,-9,3.333333333333333,1,1,1,1,12,7,1,0,454,0,0,0,0,-414.7977423775403 -682,858,1499,-9,1500,-9,1,1,41,0,0,0,1,1,-9,0,2,7.826175790826842,8.321318057023261,0,0,0,-1091.609606649058,0,2,2,2019,11,0,50,45,1,0,0,7.525229138645454,7.525229138645454,0,0,0,0,2,1,1,0,0,0,53.86,43.07,-9,-9,3.333333333333333,1,1,0,0,12,7,4,0,571,-119531.3286175868,-55199.63980282385,0,0,1197.979528919247 -682,859,1500,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.529840845841,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,19.07431926104349,0,0,1,1,0,0,0,45.63,21.21,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,394,291115.5414285295,0,181971.9053109395,0,268.3849907519319 -683,860,1501,1502,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.83172897860966,8.147083268327696,7.089910363386801,31,-5,139.5709951375853,0,3,2,2019,6,0,24,30,1,0,0,9.32835859048213,9.32835859048213,0,0,0,0,0,1,1,0,0,7.331871336873637,57.33,53.46,43.65,58.28,10,1,1,0,0,9,9,3,1,570.5,107883.1382798203,34429.95938081796,0,0,2118.340862617926 -683,860,1502,1501,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,31,5,40.74413950107139,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,0,0,43.65,58.28,57.33,53.46,10,1,1,0,0,0,9,3,1,570.5,107883.1382798203,34429.95938081796,0,0,2118.340862617926 -684,861,1503,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1048.719031433001,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.02,28.19,-9,-9,8.333333333333334,1,1,1,0,0,8,1,1,1043,44113.70599739959,0,0,0,249.7465375905623 -684,862,1504,-9,1503,-9,1,0,28,0,0,0,1,1,-9,0,5,8.943145577518704,9.017882268879895,0,0,0,-923.7161690292908,0,1,1,2019,3,0,39,0,1,0,0,24.64975883441133,24.64975883441133,0,0,0,0,0,1,1,0,0,0,46.8,58.27,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,759,71633.21825969504,26757.24470874634,0,0,3825.66826013429 -685,863,1505,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.175035010679045,6.133982742983565,0,0,-1066.672339359124,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,15.14947700239641,3.451110340039729,133.8717388650484,0,1,1,0,0,5.973799652600732,54,46,-9,-9,8,1,1,0,0,0,10,2,1,7422,361892.6534776171,129876.03002389,114743.6711271574,0,1440.416618945965 -686,864,1506,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.393878408184574,7.132068179074172,0,0,0,-795.475876699498,0,2,3,2019,11,1,45,45,1,1,0,3.363083444987768,3.363083444987768,0,0,0,0,14.5,1,1,0,3.58364250524589,0,54.21,46.79,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,275,767839.0409911317,53999.58314941685,583875.4793034289,0,762.0683188537545 -687,865,1507,1510,-9,-9,1,0,28,2,2,0,2,2,-9,0,4,6.859256380150722,6.757595307953145,0,4,1,-2.374307481685917,0,2,2,2019,7,0,18,18,1,0,0,7.529015784584471,7.529015784584471,0,0,0,0,0,1,1,0,0,0,53.05,52.71,44.18,36.43,10,1,1,0,0,7,10,4,0,542.75,56396.38419905864,15791.29955507942,0,0,3389.891974218796 -687,865,1508,-9,1507,1510,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-950.0175142333565,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,542.75,56396.38419905864,15791.29955507942,0,0,3389.891974218796 -687,865,1509,-9,1507,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-994.2614608324856,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,542.75,56396.38419905864,15791.29955507942,0,0,3389.891974218796 -687,865,1510,1507,-9,-9,1,1,27,2,2,0,2,2,-9,0,3,8.762097161602865,8.355045333611603,0,4,-1,-35.11701275436631,0,-9,-9,2019,17,4,45,38,1,4,0,17.6351589855494,17.6351589855494,0,0,0,0,0,1,1,0,0,0,44.18,36.43,53.05,52.71,6.666666666666667,1,1,0,0,2,10,4,0,542.75,56396.38419905864,15791.29955507942,0,0,3389.891974218796 -688,866,1511,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.348380929430482,8.305041925121998,0,0,0,-1028.342635055782,0,-9,-9,2019,17,6,58,52,1,6,0,7.947162594733504,7.947162594733504,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,3.333333333333333,1,1,0,0,8,2,4,0,520,1114.021327079696,109082.0262507783,0,0,1907.793557513778 -689,867,1512,-9,1514,1515,1,1,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1049.975263657697,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1513,-9,1514,1515,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-823.1665786802531,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1514,1515,-9,-9,1,0,43,0,5,0,1,1,-9,0,5,0,0,0,9,-14,-60.33501215660439,0,1,2,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.15,34.7,54,54,10,2,3,0,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1515,1514,-9,-9,1,1,57,0,5,0,2,2,-9,0,4,7.726267188455187,7.568100142785744,0,9,14,16.36135877067788,0,3,3,2019,8,0,40,48,1,0,0,6.209472040404994,6.209472040404994,0,0,0,0,0,1,1,0,6.327973485678589,0,54,54,51.15,34.7,8,2,3,0,0,1,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1516,-9,1514,1515,1,1,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-998.8194221868501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1517,-9,1514,1515,1,0,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-828.4684808648718,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -689,867,1518,-9,1514,1515,1,0,16,0,5,1,2,0,-9,0,3,0,0,0,0,0,-1120.959835280776,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,7,2,3,0,0,0,8,2,1,560.7142857142857,59715.90220721282,0,218937.3987127729,168323.7655804124,1588.996840431035 -690,868,1519,1520,-9,-9,1,1,37,0,1,0,2,2,-9,0,2,7.883515689491214,8.037751966499316,0,13,2,-106.5930903729187,0,2,2,2019,15,4,44,38,1,4,0,9.361153668930353,9.361153668930353,0,0,0,0,0,1,1,0,0,0,43.74,43.58,33.26,61.9,5,1,1,0,0,8,6,4,1,801.6666666666666,55104.90108836009,109144.004100239,0,0,3181.985750098262 -690,868,1520,1519,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.464571617357782,8.638537879108457,0,13,-2,-204.6750213102518,0,2,2,2019,24,12,30,30,1,12,0,20.51842973612757,20.51842973612757,0,0,0,0,0,1,1,0,0,0,33.26,61.9,43.74,43.58,8.333333333333334,1,1,0,0,8,6,4,1,801.6666666666666,55104.90108836009,109144.004100239,0,0,3181.985750098262 -690,868,1521,-9,1520,1519,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.0568761606319,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,801.6666666666666,55104.90108836009,109144.004100239,0,0,3181.985750098262 -691,869,1522,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.372756759449586,5.601417662991532,0,0,-965.7393966977766,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.046374700115419,5.761567714931186,52.6,52.88,-9,-9,5,1,1,0,0,0,2,2,1,486,316011.6809597303,175631.2984573033,0,0,1396.289636182173 -692,870,1523,-9,1525,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-924.0987333776866,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,2,0,784,266745.083776076,20343.7982747923,366373.8399972857,14443.54731770045,2994.103898905966 -692,870,1524,-9,1525,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.8038432189556,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,784,266745.083776076,20343.7982747923,366373.8399972857,14443.54731770045,2994.103898905966 -692,870,1525,-9,-9,-9,1,0,46,0,2,0,1,1,-9,1,3,6.763111675069909,6.959412460970238,0,0,0,-1037.872035773893,0,2,2,2019,18,6,18,20,1,6,0,5.93955262588569,5.93955262588569,0,0,0,0,42,1,0,1,0,0,39.67,47.03,-9,-9,6.666666666666667,1,1,0,0,5,7,2,0,784,266745.083776076,20343.7982747923,366373.8399972857,14443.54731770045,2994.103898905966 -692,870,1526,-9,1525,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.0668148875166,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,784,266745.083776076,20343.7982747923,366373.8399972857,14443.54731770045,2994.103898905966 -692,870,1527,-9,1525,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.271210503205,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,784,266745.083776076,20343.7982747923,366373.8399972857,14443.54731770045,2994.103898905966 -693,871,1528,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-958.3976624823409,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,28.06,-9,-9,0,1,1,0,0,0,11,1,1,410,-40485.38569184605,-20915.02368507289,0,0,1667.171421260472 -693,871,1529,-9,-9,1528,1,1,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-967.6158198707703,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,1,410,-40485.38569184605,-20915.02368507289,0,0,1667.171421260472 -694,872,1530,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.855232209480632,7.841181785966423,0,0,-1003.550830808807,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.773567170642483,7.682621559480332,38.5,55.03,-9,-9,10,1,1,0,1,0,12,3,1,1926,570296.5226621911,342230.4700868311,153484.729254808,0,1449.205020409344 -695,873,1531,1532,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.067962251347122,5.26086110483947,58,0,-38.7932539868473,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.910497557943386,5.63166056282384,52.99,51.28,52,45,10,1,1,0,0,0,4,2,1,265,175087.5544639335,50135.20953609411,120393.6891697966,0,1053.338698693984 -695,873,1532,1531,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,58,0,-72.28550749178581,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.457487397287455,0,52,45,52.99,51.28,8,1,1,0,0,0,4,2,1,265,175087.5544639335,50135.20953609411,120393.6891697966,0,1053.338698693984 -695,874,1533,-9,1532,1531,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1049.258593141529,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,47.5,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,204,42710.02403132056,0,0,0,235.026938601406 -696,875,1534,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.250474788725663,7.765721222873553,5.811291645059956,0,0,-936.2042630434202,0,2,-9,2019,9,0,31,26,1,0,0,5.331601138942854,5.331601138942854,0,0,0,0,0,1,1,0,5.248438127571073,0,50.74,36.2,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,203.5,-3719.595971691226,0,0,0,1365.358698967817 -696,875,1535,-9,1534,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.9830844289165,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,203.5,-3719.595971691226,0,0,0,1365.358698967817 -697,876,1536,1538,-9,-9,1,0,32,2,2,0,1,1,-9,0,5,6.856515682510879,6.932075431398862,0,3,1,-5.903192515707474,0,-9,-9,2019,14,3,28,35,1,3,0,4.613975902764896,4.613975902764896,0,0,0,0,0,1,1,0,0,0,40.95,63.66,50,57,10,1,1,0,0,8,4,3,1,1669.75,353509.1212859916,79691.23674654317,212023.2708880062,70728.71749663221,2856.884311416667 -697,876,1537,-9,1536,1538,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.67108432276,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1669.75,353509.1212859916,79691.23674654317,212023.2708880062,70728.71749663221,2856.884311416667 -697,876,1538,1536,-9,-9,1,1,31,2,2,0,2,2,-9,0,4,8.526233097844155,8.337335104786598,0,3,-1,10.45988484251783,0,2,2,2019,10,0,37,50,1,1,0,13.97791128371351,13.97791128371351,0,0,0,0,0,1,1,0,0,0,50,57,40.95,63.66,7,1,1,0,0,1,4,3,1,1669.75,353509.1212859916,79691.23674654317,212023.2708880062,70728.71749663221,2856.884311416667 -697,876,1539,-9,1536,1538,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-939.1068452794749,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,1669.75,353509.1212859916,79691.23674654317,212023.2708880062,70728.71749663221,2856.884311416667 -698,877,1540,1541,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.632203877323493,7.775526953663217,0,1,0,-94.66221325290604,0,3,2,2019,10,0,60,43,1,0,0,4.083540837280119,4.083540837280119,0,0,0,0,0,0,0,0,0,0,49.76,56.93,58.56,46.45,8.333333333333334,1,1,0,0,8,7,4,0,693,292238.9343982202,-6524.353772836461,240635.3139312506,0,2351.481855254239 -698,877,1541,1540,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.910217789920188,7.998036243342666,0,1,0,-80.46364152578185,-9,-9,-9,2019,8,1,44,0,1,1,0,7.151439635972621,7.151439635972621,0,0,0,0,0,0,0,0,0,0,58.56,46.45,49.76,56.93,8.333333333333334,1,1,0,0,1,7,4,0,693,292238.9343982202,-6524.353772836461,240635.3139312506,0,2351.481855254239 -699,878,1542,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.590071320078218,7.73988970446018,0,0,-896.4583251013066,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.057242708019896,7.42178352739512,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,702,902094.9199367835,348403.8491331686,437166.5760004838,71986.47274808577,809.6449513212863 -700,879,1543,1544,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.982024661949861,8.027759846181592,0,8,-4,-4.0168853359114,0,2,2,2019,10,1,36,36,1,1,0,9.341588185237091,9.341588185237091,0,0,0,0,2,0,0,0,2.12723808244234,0,51.24,58.84,51.15,53.52,8.333333333333334,1,1,0,0,8,7,5,0,204,545316.5645920282,112763.6593731998,471852.9337789803,0,3425.24683257794 -700,879,1544,1543,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.329345637864947,8.270799098148597,5.485102297410082,8,4,61.54788279700618,0,3,3,2019,11,0,50,45,1,0,0,10.07112706019658,10.07112706019658,0,0,0,0,0,0,0,0,4.961695694675239,5.759233243551695,51.15,53.52,51.24,58.84,8.333333333333334,1,1,0,0,11,7,5,0,204,545316.5645920282,112763.6593731998,471852.9337789803,0,3425.24683257794 -701,880,1545,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1058.842917585416,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,59.06,-9,-9,8.333333333333334,1,1,0,0,3,6,1,0,424,186887.9131560162,0,231972.9284031282,0,399.6884144620822 -702,881,1546,-9,1547,1548,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.159587127556,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,538.3333333333334,109642.3024045948,97669.00920010505,177709.0451200392,107067.5691908832,4772.376531322026 -702,881,1547,1548,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.407735132702213,7.566118034902148,0,2,-3,-74.04231379657982,-9,-9,-9,2019,9,0,22,0,1,0,0,10.33895920436678,10.33895920436678,0,0,0,0,0,0,0,0,5.696052864699561,0,49.98,44.47,35.8,59.5,6.666666666666667,1,1,0,0,0,12,5,1,538.3333333333334,109642.3024045948,97669.00920010505,177709.0451200392,107067.5691908832,4772.376531322026 -702,881,1548,1547,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,9.399524663953702,9.226096759275976,0,2,3,106.1772230856291,0,-9,-9,2019,9,0,84,77,1,0,0,15.64842200984573,15.64842200984573,0,0,0,0,0,0,0,0,0,0,35.8,59.5,49.98,44.47,8.333333333333334,1,1,0,0,7,12,5,1,538.3333333333334,109642.3024045948,97669.00920010505,177709.0451200392,107067.5691908832,4772.376531322026 -703,882,1549,1550,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,5.926210330054541,5.946049792698792,0,13,0,-16.02139943326828,0,2,2,2019,7,0,6,6,1,0,0,9.920421539425321,9.920421539425321,0,0,0,0,7,1,1,0,0,0,58.47,50.22,46.08,57.2,8.333333333333334,1,1,0,0,9,9,3,1,590,101961.8434381934,14139.85454713703,0,0,2426.407717508469 -703,882,1550,1549,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.425698781419442,8.299571997783122,0,13,0,147.4771920147287,0,1,1,2019,10,0,37,37,1,0,0,15.23358471325096,15.23358471325096,0,0,0,0,7,1,1,0,2.631685737314776,0,46.08,57.2,58.47,50.22,6.666666666666667,1,1,0,0,13,9,3,1,590,101961.8434381934,14139.85454713703,0,0,2426.407717508469 -703,882,1551,-9,1549,1550,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.42474010251,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,590,101961.8434381934,14139.85454713703,0,0,2426.407717508469 -703,882,1552,-9,1549,1550,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.623264929277,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,590,101961.8434381934,14139.85454713703,0,0,2426.407717508469 -704,883,1553,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.174889492062358,5.964343470008096,0,0,-1008.235161864581,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,2.59861172114488,6.27246766121107,44.84,25.84,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,234,225760.366563749,154657.1026080828,203693.7207511039,0,703.7282197623639 -705,884,1554,-9,1555,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1044.273027187254,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,13,2,1,1287.333333333333,243827.8718200249,202362.8013637769,203357.2523573045,48523.45353013434,2061.027083857422 -705,884,1555,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,4,6.839539003949413,7.135275869721823,0,0,0,-1011.011754289452,0,1,1,2019,5,0,20,25,1,0,0,7.290286501862146,7.290286501862146,0,0,0,0,106,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,1287.333333333333,243827.8718200249,202362.8013637769,203357.2523573045,48523.45353013434,2061.027083857422 -705,884,1556,-9,1555,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.2054826865464,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,2,1,1287.333333333333,243827.8718200249,202362.8013637769,203357.2523573045,48523.45353013434,2061.027083857422 -706,885,1557,-9,1558,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.54256003922826,7.566630196775948,0,0,-991.5145048602036,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.9563893253615869,7.360266765086169,57.33,53.46,-9,-9,10,1,1,0,0,9,11,3,1,442,347821.1729313317,412258.2381245828,118602.1269336244,69617.38888353537,614.8728983411318 -706,886,1558,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,5.918233770348705,6.114186618202739,0,0,-1062.773714499236,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,6.991107207241137,.3448329261906253,46.51659074025036,0,1,1,0,2.790876450980937,6.277579055224822,69.26000000000001,14.33,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,645,214654.5922601501,85362.12141529308,142584.6259483233,0,1036.856012895514 -707,887,1559,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.890266940617233,8.609071906730788,0,0,0,-995.6794740852398,0,2,-9,2019,12,0,35,35,1,0,0,11.96388734521706,11.96388734521706,0,0,0,0,0,0,0,0,0,0,54.21,47.1,-9,-9,5,1,1,0,1,11,7,4,0,276,-111485.7637010535,86588.94748355901,0,0,1278.182750034696 -708,888,1560,1561,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.603774957776166,6.624516572559793,9,-6,-78.01874900123528,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.123701438432979,6.210262753584335,53.81,53.56,50.07,39.58,8.333333333333334,1,1,0,0,6,9,3,1,404,1028994.493716337,207786.5019740062,602110.57355568,0,3170.299328856816 -708,888,1561,1560,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,7.782924858618924,7.739462964758952,9,6,173.8988587489785,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,9.881738972853526,0,0,1,1,0,6.235403036425996,7.828872053317479,50.07,39.58,53.81,53.56,8.333333333333334,1,1,0,0,0,9,3,1,404,1028994.493716337,207786.5019740062,602110.57355568,0,3170.299328856816 -709,889,1562,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.209341507339364,7.29910979174132,0,0,-946.7086654175706,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,2.657469908308695,0,0,1,1,0,2.346815829230348,7.423225938856073,59.07,16.26,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,284,133566.7416445542,85445.06668710952,72865.14639981743,0,1431.397380789594 -710,890,1563,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.295887142590166,8.17218116931303,0,0,0,-1071.787451712295,0,2,2,2019,12,0,58,60,1,0,0,7.988242555732517,7.988242555732517,0,0,0,0,0,0,0,0,7.341525993957179,0,57.17,50.61,-9,-9,5,1,1,0,0,9,10,4,0,533,475054.3773337946,243297.3973644859,0,0,2174.277579372236 -711,891,1564,1565,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.046877334644912,7.385313854538498,0,10,-2,68.59831342081827,0,3,3,2019,8,0,20,48,1,0,0,6.411588896931903,6.411588896931903,0,0,0,0,0,0,0,0,2.82332365828001,0,57.16,56.15,50,49,8.333333333333334,1,1,0,0,7,11,5,1,833,-20638.86217412942,9637.595953936088,0,0,5410.638526508178 -711,891,1565,1564,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.75430843683052,9.34209179746804,0,10,2,101.483542912895,0,3,-9,2019,11,0,50,40,1,1,0,32.43555314564404,32.43555314564404,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,1,11,5,1,833,-20638.86217412942,9637.595953936088,0,0,5410.638526508178 -712,892,1566,1567,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.291057047322916,8.525356628943793,0,7,-11,-92.80862021821129,0,2,2,2019,9,0,44,42,1,0,0,12.58792329329752,12.58792329329752,0,0,0,0,0,0,0,0,2.683676449984437,0,51.24,58.84,54,53,8.333333333333334,1,1,0,0,8,9,5,0,2104.5,1924779.915355928,1876321.633886695,0,0,3950.271483395978 -712,892,1567,1566,-9,-9,1,1,60,0,2,0,2,2,-9,0,4,8.607803146751118,8.461765102425343,0,7,11,34.73073559616314,0,2,3,2019,8,0,39,39,1,0,0,18.17608248774655,18.17608248774655,0,0,0,0,0,0,0,0,0,0,54,53,51.24,58.84,8,1,1,0,0,1,9,5,0,2104.5,1924779.915355928,1876321.633886695,0,0,3950.271483395978 -713,893,1568,-9,1569,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.6684548537328,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,789.6666666666666,76701.41860790471,0,0,0,1439.914021502554 -713,893,1569,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,6.311792246427873,5.965510963768105,0,0,-1042.699502045188,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.212965733132101,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,11,12,2,0,789.6666666666666,76701.41860790471,0,0,0,1439.914021502554 -713,893,1570,-9,1569,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.5005464228867,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,2,0,789.6666666666666,76701.41860790471,0,0,0,1439.914021502554 -714,894,1571,-9,1574,-9,1,1,18,0,0,0,2,2,1,0,4,0,4.311626009590452,4.937035757737846,0,0,-977.5542851019499,-9,2,-9,2019,11,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,4.210922878826139,0,41.84,60.5,-9,-9,8.333333333333334,1,1,1,0,0,11,2,0,291,94773.46509161811,0,0,0,-95.24620830554645 -714,895,1572,1574,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.673407683302488,9.997967948959742,0,3,9,-68.84960853130859,-9,-9,-9,2019,7,1,42,0,1,1,0,43.12292042030543,43.12292042030543,0,0,0,0,0,1,1,0,2.367525389092479,0,54.22,52.09,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,0,1359,1608136.434119709,753639.7491595461,314807.5990168468,0,8321.704692044801 -714,895,1573,-9,1574,-9,1,0,16,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1018.266486206122,-9,2,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.3,57.2,-9,-9,8.333333333333334,1,1,0,0,1,11,5,0,1359,1608136.434119709,753639.7491595461,314807.5990168468,0,8321.704692044801 -714,895,1574,1572,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,7.838751967238416,7.487882536758735,0,3,0,65.22900148497838,0,2,2,2019,10,0,37,37,1,0,0,6.274757748309797,6.274757748309797,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.22,52.09,8.333333333333334,1,1,0,0,6,11,5,0,1359,1608136.434119709,753639.7491595461,314807.5990168468,0,8321.704692044801 -715,896,1575,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,5.688572556296654,6.590443838145877,5.958836324592455,0,0,-1008.306598117421,0,3,2,2019,12,0,21,21,1,0,0,2.72768309829253,2.72768309829253,0,0,0,0,0,1,1,0,0,6.037107199305748,49.53,24.62,-9,-9,6.666666666666667,3,4,0,0,2,8,2,1,1925,-264435.8204772549,0,0,0,1243.612075105017 -716,897,1576,1577,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,6.443352789125791,6.924364950892623,0,9,-3,-69.54211955167204,0,2,2,2019,7,1,13,14,1,1,0,8.189318100662545,8.189318100662545,0,0,0,0,0,1,1,0,0,0,59.79,28.32,52.48,41.05,6.666666666666667,1,1,0,0,9,10,2,0,383,216124.3027695463,11120.89554580694,364073.429802876,178059.8784578999,945.3815513419754 -716,897,1577,1576,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,6.859922086481655,6.563214813170295,0,9,3,12.75171453907502,0,2,2,2019,8,0,17,18,1,0,0,7.275359355136172,7.275359355136172,0,0,0,0,0,1,1,0,0,0,52.48,41.05,59.79,28.32,10,1,1,0,0,9,10,2,0,383,216124.3027695463,11120.89554580694,364073.429802876,178059.8784578999,945.3815513419754 -717,898,1578,-9,1579,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.178758942569146,7.441321389242244,0,0,-977.0357595668627,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.03821700350924,7.624049324829685,57.07,49.39,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,532,371109.2339699203,156149.7459230545,217838.7998936558,0,1303.318832226062 -717,899,1579,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,7.074772498731393,6.723326443582375,0,0,-973.740210057695,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,2.253910803617101,0,0,1,1,0,0,6.871041903170015,39.31,35.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,122,11453.25702051169,-9574.303631758492,0,0,1055.649519677768 -718,900,1580,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.860187252442524,8.356972600302431,0,0,0,-1040.089517850388,0,2,2,2019,12,0,44,45,1,0,0,15.40676815626676,15.40676815626676,0,0,0,0,0,1,1,0,0,0,41.59,61.77,-9,-9,5,1,1,0,1,10,4,4,1,1375.5,35934.97688297024,10203.55556649606,174089.2506319318,73131.52663365206,1926.973116747642 -718,900,1581,-9,1580,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.308495153392,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1375.5,35934.97688297024,10203.55556649606,174089.2506319318,73131.52663365206,1926.973116747642 -719,901,1582,-9,1584,1583,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-948.6799504007636,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -719,901,1583,1584,-9,-9,1,1,46,0,4,0,2,2,-9,0,2,8.566815302802754,8.963271914567899,0,9,1,-69.27245714408249,0,2,3,2019,12,0,40,45,1,0,0,18.60769654006435,18.60769654006435,0,0,0,0,0,1,1,0,0,0,45.45,45.7,46.39,60.99,8.333333333333334,1,1,0,0,9,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -719,901,1584,1583,-9,-9,1,0,45,0,4,0,1,1,-9,0,4,8.606050095897604,8.722005616537354,0,9,-1,-113.2843371427502,0,2,3,2019,14,3,40,37,1,3,0,17.63363734336021,17.63363734336021,0,0,0,0,0,1,1,0,2.590298874777726,0,46.39,60.99,45.45,45.7,8.333333333333334,1,1,0,0,9,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -719,901,1585,-9,1584,1583,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.83340100561,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -719,901,1586,-9,1584,1583,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-821.7779448180938,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -719,901,1587,-9,1584,1583,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1000.454098757281,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,604,826940.4440630564,771127.8665347369,95579.65951846664,22869.95173357519,4371.285196966616 -720,902,1588,1589,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.920837548256404,7.818049645366813,9,19,42.74412925355468,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.450958621739318,8.086162042060719,58.15,52.91,56.82,51,8.333333333333334,1,1,0,0,10,9,4,1,768,1920509.804056971,1038824.74001018,700789.9995828327,0,3371.765523889094 -720,902,1589,1588,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.376056225889888,8.372449155860796,0,9,-19,50.9774502813763,0,-9,3,2019,12,0,38,45,1,0,0,11.50324449383846,11.50324449383846,0,0,0,0,0,1,1,0,3.481374522543633,0,56.82,51,58.15,52.91,8.333333333333334,1,1,0,0,10,9,4,1,768,1920509.804056971,1038824.74001018,700789.9995828327,0,3371.765523889094 -721,903,1590,1591,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.532528926644173,6.618598536749191,43,-1,-44.59816816441948,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,6.327503362572944,53.62,46.84,60.12,54.8,8.333333333333334,1,1,0,0,5,6,2,1,460.5,652305.4667581104,168117.7661998428,328244.7468240141,0,1567.291921297489 -721,903,1591,1590,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.446319745033906,5.685262867264087,43,1,-15.84776562518879,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.862517504336734,60.12,54.8,53.62,46.84,10,1,1,0,0,5,6,2,1,460.5,652305.4667581104,168117.7661998428,328244.7468240141,0,1567.291921297489 -722,904,1592,1593,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,8.742562891661409,8.01217614612672,0,1,2,-117.6867826339389,0,1,2,2019,23,9,35,35,1,9,0,19.12711946629751,19.12711946629751,0,0,0,0,0,0,0,0,0,0,21.91,56.43,54.96,53.17,5,1,1,0,0,10,12,5,1,301,-112187.3640009568,1123.57952588974,0,0,3472.498737829439 -722,904,1593,1592,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.2108665946042,8.19201426708881,0,1,-2,-146.805352380639,-9,-9,-9,2019,12,5,35,0,1,5,0,12.44212694873086,12.44212694873086,0,0,0,0,0,0,0,0,0,0,54.96,53.17,21.91,56.43,8.333333333333334,1,1,0,0,1,12,5,1,301,-112187.3640009568,1123.57952588974,0,0,3472.498737829439 -723,905,1594,1596,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.766104001663153,7.861908543764552,0,20,-1,-61.49528686919077,0,2,-9,2019,14,2,42,42,1,2,0,6.030369378493872,6.030369378493872,0,0,0,0,0,1,1,0,0,0,50.6,51,43.12,26.45,8.333333333333334,1,1,0,1,11,2,3,1,602,115023.6303196855,59049.10204348647,102667.8042997018,20867.07986244863,1698.941547125739 -723,905,1595,-9,1596,1594,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.2655226195914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,602,115023.6303196855,59049.10204348647,102667.8042997018,20867.07986244863,1698.941547125739 -723,905,1596,1594,-9,-9,1,0,46,0,1,0,2,2,-9,1,1,0,0,0,13,1,-45.67941099836608,1,2,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,26.45,50.6,51,5,1,1,0,1,9,2,3,1,602,115023.6303196855,59049.10204348647,102667.8042997018,20867.07986244863,1698.941547125739 -723,906,1597,-9,1596,1594,1,0,21,0,1,0,2,2,1,0,2,6.907864531986949,6.786759744506912,0,0,0,-982.1795662609326,-9,2,2,2019,28,10,20,0,1,10,1,5.75282797949096,5.75282797949096,0,0,0,0,0,1,1,0,0,0,20.48,49.04,-9,-9,5,1,1,0,1,4,2,2,1,512,13452.19304717981,0,0,0,1043.713604752839 -724,907,1598,1599,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,3,2,14.40154135689057,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.303299835419566,0,47.5,50.29,51.83,57.2,8.333333333333334,1,1,0,0,0,4,3,1,1634,852679.5052159103,639394.4512986548,136279.3332856762,0,2594.562558557538 -724,907,1599,1598,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,8.113408093268765,7.938403437431631,3,-2,-13.05182000612847,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.613760252364532,8.12538950317728,51.83,57.2,47.5,50.29,8.333333333333334,1,1,0,0,0,4,3,1,1634,852679.5052159103,639394.4512986548,136279.3332856762,0,2594.562558557538 -725,908,1600,1601,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.710720258178432,9.258683312909184,0,7,3,135.6387057398483,0,2,3,2019,16,4,43,41,1,4,0,19.36538627988907,19.36538627988907,0,0,0,0,0,1,1,0,2.802430350547502,0,43.16,45.21,51.02,52.22,8.333333333333334,1,1,0,0,8,9,4,1,231.6666666666667,1265843.946827221,825880.0110463301,513102.7095488326,95811.08072373502,3354.733878245394 -725,908,1601,1600,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.466075221806978,7.501777395919253,0,7,-3,-20.13838160885978,0,2,2,2019,14,2,25,25,1,2,0,10.60807466716865,10.60807466716865,0,0,0,0,0,1,1,0,0,0,51.02,52.22,43.16,45.21,6.666666666666667,1,1,0,0,8,9,4,1,231.6666666666667,1265843.946827221,825880.0110463301,513102.7095488326,95811.08072373502,3354.733878245394 -725,908,1602,-9,1601,1600,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1012.415391676963,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.1004066510258797,0,25.92,66.48999999999999,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,231.6666666666667,1265843.946827221,825880.0110463301,513102.7095488326,95811.08072373502,3354.733878245394 -726,909,1603,-9,1604,1605,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.6952557899192,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1229.25,193633.1725474955,69493.76990217512,298412.1894442335,190150.6082332222,3732.210238855218 -726,909,1604,1605,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,0,0,0,15,-2,74.20336569648639,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,54.67,57.49,7,1,1,0,0,3,7,4,1,1229.25,193633.1725474955,69493.76990217512,298412.1894442335,190150.6082332222,3732.210238855218 -726,909,1605,1604,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.094414009636818,9.100501716698213,4.965470753440706,15,2,-111.888330465313,0,-9,-9,2019,3,0,50,46,1,0,0,24.98818710849365,24.98818710849365,0,0,0,0,0,1,1,0,5.688472102503016,0,54.67,57.49,48,56,8.333333333333334,1,1,0,0,8,7,4,1,1229.25,193633.1725474955,69493.76990217512,298412.1894442335,190150.6082332222,3732.210238855218 -726,909,1606,-9,1604,1605,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.5281987945799,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1229.25,193633.1725474955,69493.76990217512,298412.1894442335,190150.6082332222,3732.210238855218 -727,910,1607,1608,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.024306992356378,8.286346079895777,0,44,0,13.37252318810191,0,3,1,2019,11,0,22,20,1,2,0,16.72456250060767,16.72456250060767,0,0,0,0,0,0,0,0,6.437999835774972,0,48.59,53.29,53.34,48.86,8.333333333333334,1,1,0,0,10,2,5,1,926.5,1146829.661519112,969656.9987281924,250463.9872933291,0,3863.653712290477 -727,910,1608,1607,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.452061272578895,8.497425269010296,5.224976699843976,9,0,-60.73295050754647,0,-9,-9,2019,8,0,34,30,1,0,0,14.58578349765401,14.58578349765401,0,0,0,0,0,0,0,0,7.553844183218109,5.244926568231937,53.34,48.86,48.59,53.29,6.666666666666667,1,1,0,0,10,2,5,1,926.5,1146829.661519112,969656.9987281924,250463.9872933291,0,3863.653712290477 -728,911,1609,1611,-9,-9,1,1,26,1,1,0,1,1,-9,0,4,8.474960504034163,8.612148935106347,0,1,1,165.5474977151367,-9,-9,-9,2019,11,0,40,0,1,2,0,15.41574003393634,15.41574003393634,0,0,0,0,0,1,1,0,5.726510873895982,0,48,59,49.06,58.64,7,4,3,0,0,1,9,5,1,950,194310.5398485776,41401.7915157298,227735.4723941683,97655.99181113359,4428.035469147935 -728,911,1610,-9,1611,1609,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.7371277220802,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,5,1,950,194310.5398485776,41401.7915157298,227735.4723941683,97655.99181113359,4428.035469147935 -728,911,1611,1609,-9,-9,1,0,25,1,1,0,1,1,-9,0,4,8.06762243149587,8.377865759449758,0,1,-1,33.21536596896707,-9,3,3,2019,12,1,33,0,1,1,0,14.67627028457021,14.67627028457021,0,0,0,0,0,1,1,0,0,0,49.06,58.64,48,59,8.333333333333334,2,3,0,0,1,9,5,1,950,194310.5398485776,41401.7915157298,227735.4723941683,97655.99181113359,4428.035469147935 -729,912,1612,1613,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,6,2,5.811561620193364,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.227334845192583,0,45.78,35.74,57.16,56.15,8.333333333333334,1,1,0,0,0,4,3,1,709.5,-13890.89952997102,21074.56853671125,0,0,2016.258950908471 -729,912,1613,1612,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.967914917231998,7.858517121057269,6.908426965260597,6,-2,22.15296630655045,0,3,3,2019,8,0,45,40,1,0,0,5.650408996462707,5.650408996462707,0,0,0,0,14.5,1,1,0,0,6.847598833568163,57.16,56.15,45.78,35.74,1.666666666666667,1,1,0,0,7,4,3,1,709.5,-13890.89952997102,21074.56853671125,0,0,2016.258950908471 -730,913,1614,1615,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,9.121559851904639,9.013186244516257,0,3,-4,17.12426381096262,0,-9,-9,2019,12,0,48,45,1,0,0,14.78872446784224,14.78872446784224,0,0,0,0,0,0,0,0,0,0,54.62,53.53,49.35,59.64,8.333333333333334,1,1,0,0,1,8,5,1,794,330325.9013220645,111188.3704092556,486182.1705098867,311377.4996687914,6019.952861972294 -730,913,1615,1614,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.998568658617753,9.510100477376199,0,3,4,44.36846355914256,0,-9,-9,2019,11,0,49,43,1,0,0,21.34060311515876,21.34060311515876,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.62,53.53,6.666666666666667,1,1,0,0,10,8,5,1,794,330325.9013220645,111188.3704092556,486182.1705098867,311377.4996687914,6019.952861972294 -731,914,1616,1617,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.280279888560431,8.671633675948588,0,33,4,-63.35724811514577,0,2,2,2019,10,0,38,42,1,1,0,13.19740340392952,13.19740340392952,0,0,0,0,2,0,0,0,0,0,50,49,48,49,7,1,1,0,0,12,5,4,1,320.5,468855.6160465702,371254.7523339999,192666.1821991261,0,2198.746900023611 -731,914,1617,1616,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.702239200349189,7.491896105717327,0,33,-4,-73.54980637848885,0,2,2,2019,12,0,39,28,1,2,0,5.546683495016035,5.546683495016035,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,0,12,5,4,1,320.5,468855.6160465702,371254.7523339999,192666.1821991261,0,2198.746900023611 -731,915,1618,-9,1617,1616,1,0,26,0,0,0,2,2,-9,0,4,8.800445811202414,8.791271159816164,0,0,0,-1064.398135141951,0,2,2,2019,11,0,35,30,1,2,1,22.04696055379877,22.04696055379877,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,5,1,324,30981.97916334763,0,0,0,2632.185692865128 -732,916,1619,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.818980885758772,6.499287499105313,0,0,-1017.913477724942,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.475919080655174,54.96,53.17,-9,-9,10,1,1,0,0,0,4,2,1,426,-75976.74335334437,131169.4022141131,0,0,1226.998472717778 -733,917,1620,1621,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.728098234643022,9.229525701492133,0,10,0,87.82824922098986,0,2,2,2019,8,0,45,45,1,0,0,16.9827195854813,16.9827195854813,0,0,0,0,0,1,1,0,0,0,51,52.08,38.75,50.13,6.666666666666667,1,1,0,0,11,12,5,1,796.5,459389.5315613291,168478.1008543526,85563.38729147073,0,3880.199990331414 -733,917,1621,1620,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.145105315654154,8.353050399210755,0,10,0,-4.38157126559934,0,2,2,2019,15,4,34,25,1,4,0,10.61373672698795,10.61373672698795,0,0,0,0,2,1,1,0,1.697420353504325,0,38.75,50.13,51,52.08,3.333333333333333,1,1,0,1,10,12,5,1,796.5,459389.5315613291,168478.1008543526,85563.38729147073,0,3880.199990331414 -733,918,1622,-9,1621,1620,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1060.71078356926,-9,1,-9,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49.27,56.95,-9,-9,6.666666666666667,1,1,0,0,2,12,1,1,1400,45415.65880878097,0,0,0,0 -733,919,1623,-9,1621,1620,1,0,19,0,0,0,2,2,0,1,1,0,6.643097135931485,6.360871100970583,0,0,-922.7412871753475,-9,1,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,6.476482030304139,0,27.91,34.78,-9,-9,1.666666666666667,1,1,0,0,4,12,2,1,383,-74723.44228024551,0,0,0,719.7892761365443 -734,920,1624,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.903864891692804,7.762268343871413,0,0,-1048.502677350975,0,2,2,2019,24,9,0,0,4,9,0,0,0,1,0,2.836180839221545,0,0,1,1,0,0,8.200395127918982,54.81,28.33,-9,-9,5,1,1,0,0,0,2,4,1,763,45213.09285743447,237702.6232921895,0,0,2229.409806833187 -735,921,1625,1626,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.933718719688637,8.100445845223589,14,4,78.63182084977966,0,2,2,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.094496675132061,7.66851099191087,62.82,38.84,51.95,57.56,8.333333333333334,1,1,0,0,9,5,5,1,1138,2004026.214794033,1365069.072752511,462402.8420522257,0,3219.324503689165 -735,921,1626,1625,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.757654963448759,8.943449610231422,0,18,-4,4.114956217640303,0,3,3,2019,7,0,22,39,1,0,0,33.84758318630017,33.84758318630017,0,0,0,0,0,0,0,0,0,0,51.95,57.56,62.82,38.84,10,1,1,0,0,7,5,5,1,1138,2004026.214794033,1365069.072752511,462402.8420522257,0,3219.324503689165 -736,922,1627,1628,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.983311774411091,7.688706372297693,44,-2,53.67117965860032,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.393045029330579,7.685532629223615,55.11,47.63,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,847.5,2193820.0309193,1572228.738896735,220411.4778470358,0,3985.496111309841 -736,922,1628,1627,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.114462205549334,8.234644140414911,44,2,-19.51824961096112,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.564455948603857,8.186355434039132,54.2,57.49,55.11,47.63,8.333333333333334,1,1,0,0,0,4,4,1,847.5,2193820.0309193,1572228.738896735,220411.4778470358,0,3985.496111309841 -737,923,1629,1630,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.396812573161357,8.616418980467566,0,8,-6,-2.461329501696344,0,-9,-9,2019,7,0,45,50,1,0,0,11.96709125454639,11.96709125454639,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,9,10,5,1,1840,608010.1621292529,-2191.133892287306,394312.0144746513,13247.29561065259,3268.315569802684 -737,923,1630,1629,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,8.181000176221326,7.977596233643625,5.443199329160161,13,6,14.57266209557328,0,2,2,2019,9,0,25,25,1,0,0,14.61991009196807,14.61991009196807,0,0,0,0,0,1,1,0,5.374341581159288,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,1840,608010.1621292529,-2191.133892287306,394312.0144746513,13247.29561065259,3268.315569802684 -737,923,1631,-9,1630,1629,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-953.7954028091095,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1840,608010.1621292529,-2191.133892287306,394312.0144746513,13247.29561065259,3268.315569802684 -738,924,1632,-9,1634,1633,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1048.970103869858,1,2,3,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,1,170,28539.04630920059,0,0,0,0 -738,925,1633,1634,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.079441176221337,9.011075153216716,0,8,1,78.22931056311751,0,-9,-9,2019,7,0,30,56,1,0,0,25.84490420801622,25.84490420801622,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50,54,6.666666666666667,1,1,0,0,7,8,5,1,1403,127791.2139670117,0,289889.1418940072,106457.8042628328,3178.419676607803 -738,925,1634,1633,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,6.475371656606462,6.97268881016971,0,8,-1,42.45903384405335,0,-9,-9,2019,10,0,21,3,1,1,0,4.230317517888266,4.230317517888266,0,0,0,0,0,0,0,0,0,0,50,54,51.83,57.2,8,1,1,0,0,7,8,5,1,1403,127791.2139670117,0,289889.1418940072,106457.8042628328,3178.419676607803 -739,926,1635,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,6.782152276348686,6.632520825831677,1.406989327622019,0,0,-1062.384005954464,0,2,3,2019,23,11,16,16,1,11,0,6.282673427963877,6.282673427963877,0,0,0,0,27,1,1,0,.917901572511602,0,30.36,28.46,-9,-9,1.666666666666667,1,1,0,1,11,10,2,0,367,23653.83953365543,27606.08124107796,0,0,1074.122897794203 -739,927,1636,-9,1635,-9,1,1,21,0,0,0,2,2,-9,1,4,0,5.126548871964491,4.507231610750932,0,0,-962.4662365496079,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,5.316780822498782,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,613,133485.9429992528,104111.478074344,0,0,811.5227932619346 -740,928,1637,1638,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.832198585875631,8.084522930031282,0,7,-4,7.564594431689898,0,-9,-9,2019,15,3,35,35,1,3,0,9.030262246595612,9.030262246595612,0,0,0,0,0,1,1,0,0,0,43.53,51.26,44.34,39.37,5,1,1,0,0,4,4,3,0,581,-50718.73084497653,7586.229495788339,0,0,1467.274706079551 -740,928,1638,1637,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,6.603693791633791,6.458443911234935,0,7,4,-36.08919605305014,0,3,3,2019,17,6,16,0,1,6,0,5.862385123579868,5.862385123579868,0,0,0,0,0,1,1,0,0,0,44.34,39.37,43.53,51.26,6.666666666666667,1,1,0,0,1,4,3,0,581,-50718.73084497653,7586.229495788339,0,0,1467.274706079551 -740,929,1639,-9,1637,1638,1,1,20,0,0,0,2,2,-9,0,3,6.0682696264501,5.678868515753252,0,0,0,-1059.248501699888,-9,2,2,2019,10,0,9,0,1,0,1,4.97997739168684,4.97997739168684,0,0,0,0,0,1,1,0,0,0,36.73,57.63,-9,-9,5,1,1,0,0,0,4,2,0,162,117431.8436405765,0,0,0,307.5791443049825 -741,930,1640,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.7925701184303,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.94,27.47,-9,-9,1.666666666666667,1,1,0,0,2,8,1,0,2129,-61901.09326802992,0,0,0,1355.92689767592 -742,931,1641,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.56984110389781,7.598553225326196,0,0,-936.0510426788971,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,5.703325555810136,0,0,1,1,0,1.863161442351146,7.342201413850454,46.46,30.27,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,505,597971.2752578986,453204.001702041,241760.6692366666,0,2572.97584349622 -743,932,1642,-9,1645,1643,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.4536562725068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,432.75,2225532.834702159,1966661.024712788,409458.5586133284,186923.3652815635,4824.026081675375 -743,932,1643,1645,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,9.334592194160331,9.179013600378449,0,18,12,100.9866432272919,0,3,2,2019,9,0,55,48,1,0,0,26.37394667569408,26.37394667569408,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.69,57.47,6.666666666666667,1,1,0,0,12,2,5,1,432.75,2225532.834702159,1966661.024712788,409458.5586133284,186923.3652815635,4824.026081675375 -743,932,1644,-9,1645,1643,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1077.21272486345,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,432.75,2225532.834702159,1966661.024712788,409458.5586133284,186923.3652815635,4824.026081675375 -743,932,1645,1643,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,7.769420507360776,7.762902722723331,0,18,-12,-49.32995836452625,0,1,1,2019,9,0,39,36,1,0,0,7.380674838051243,7.380674838051243,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51.24,58.84,10,1,1,0,0,12,2,5,1,432.75,2225532.834702159,1966661.024712788,409458.5586133284,186923.3652815635,4824.026081675375 -744,933,1646,1647,-9,-9,1,0,46,0,0,0,1,1,-9,1,3,0,0,0,17,-11,9.155426062478952,0,2,2,2019,12,0,0,41,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,26.69,52.8,7,1,1,0,0,10,4,3,0,1133.5,3371.311817023416,-43468.23645036051,0,0,1750.344533319841 -744,933,1647,1646,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.952281542771778,8.08130163576201,0,18,11,3.075178024278201,0,2,1,2019,23,11,50,35,1,11,0,6.900058417110597,6.900058417110597,0,0,0,0,76,1,1,0,3.831384515727492,0,26.69,52.8,46,50,3.333333333333333,1,1,0,0,11,4,3,0,1133.5,3371.311817023416,-43468.23645036051,0,0,1750.344533319841 -744,934,1648,-9,1646,1647,1,0,22,0,0,0,2,2,-9,0,3,7.827830276906356,7.941119993135745,0,0,0,-961.1290838989327,0,1,2,2019,7,0,42,28,1,0,1,8.053705298318468,8.053705298318468,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,935,-137623.2175263001,12149.34909470939,0,0,738.8669040443851 -745,935,1649,-9,1650,1651,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.977132216515,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.4579414789590306,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,247.75,985018.2911883433,637849.9121647645,231163.318738001,5037.924546342542,4100.081389640871 -745,935,1650,1651,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.36698220267596,7.247955931007257,0,13,-16,80.40386875284672,0,2,2,2019,11,1,20,25,1,1,0,8.141630292377339,8.141630292377339,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,3,9,5,1,247.75,985018.2911883433,637849.9121647645,231163.318738001,5037.924546342542,4100.081389640871 -745,935,1651,1650,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,9.237199839242525,8.679452968739643,0,6,16,9.850292493816099,0,3,3,2019,12,1,50,55,1,1,0,21.44175785392205,21.44175785392205,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,6,9,5,1,247.75,985018.2911883433,637849.9121647645,231163.318738001,5037.924546342542,4100.081389640871 -745,935,1652,-9,1650,1651,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.3316522242782,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,247.75,985018.2911883433,637849.9121647645,231163.318738001,5037.924546342542,4100.081389640871 -746,936,1653,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1028.452191980642,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.21,38.67,-9,-9,5,1,1,0,0,0,2,1,1,450,102331.8273516602,0,217412.7902813024,0,1511.099846693174 -747,937,1654,1655,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.964103483884466,8.0201736630948,0,10,3,-23.55695125230535,0,-9,-9,2019,7,0,38,38,1,0,0,10.59052115553325,10.59052115553325,0,0,0,0,0,0,0,0,0,0,49.88,47.22,57.33,53.46,8.333333333333334,1,1,0,0,11,8,4,0,411.5,335350.7513571471,64962.76308696163,175896.5522142011,0,2148.353636031047 -747,937,1655,1654,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.026376625824422,7.948076353773486,0,10,-3,108.6100151511006,0,-9,3,2019,7,0,39,40,1,0,0,9.10100630658162,9.10100630658162,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.88,47.22,8.333333333333334,1,1,0,0,10,8,4,0,411.5,335350.7513571471,64962.76308696163,175896.5522142011,0,2148.353636031047 -748,938,1656,1657,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.997899796442015,9.063875208732455,0,6,8,-68.96424051121069,0,2,2,2019,12,1,45,42,1,1,0,24.55612259964075,24.55612259964075,0,0,0,0,0,1,1,0,0,0,40.1,53.23,62.49,55.09,8.333333333333334,1,1,0,0,13,9,5,1,815.25,1521578.50175612,546956.9204104015,1570033.821290607,655737.611080986,6094.422803262852 -748,938,1657,1656,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.066242449364351,9.047631503892889,0,9,-8,-171.9959058558925,0,2,2,2019,10,0,42,40,1,0,0,19.36390142074286,19.36390142074286,0,0,0,0,0,1,1,0,0,0,62.49,55.09,40.1,53.23,8.333333333333334,1,1,0,0,12,9,5,1,815.25,1521578.50175612,546956.9204104015,1570033.821290607,655737.611080986,6094.422803262852 -748,938,1658,-9,1657,1656,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.6088210965617,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,815.25,1521578.50175612,546956.9204104015,1570033.821290607,655737.611080986,6094.422803262852 -748,938,1659,-9,1657,1656,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.1815891121137,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,815.25,1521578.50175612,546956.9204104015,1570033.821290607,655737.611080986,6094.422803262852 -749,939,1660,1661,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.363487018137356,8.430113661145397,0,36,-3,-108.1240366773342,0,3,2,2019,15,4,37,32,1,4,0,10.30592664381023,10.30592664381023,0,0,0,0,0,0,0,0,8.753513925270898,0,41.89,43.23,48.77,60.16,6.666666666666667,3,4,0,0,8,8,4,1,453.5,3060210.614255911,1958352.992455014,228334.5777209422,0,4420.984548715051 -749,939,1661,1660,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.787992186107574,7.643934262765632,0,36,3,-149.3660073123378,0,3,2,2019,11,0,25,25,1,0,0,12.63666297595557,12.63666297595557,0,0,0,0,0,0,0,0,0,0,48.77,60.16,41.89,43.23,8.333333333333334,1,1,0,0,12,8,4,1,453.5,3060210.614255911,1958352.992455014,228334.5777209422,0,4420.984548715051 -750,940,1662,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.147678112139263,6.163272993486165,0,0,-1014.890570186398,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.384070839117582,52,45,-9,-9,8,1,1,0,0,0,5,2,1,194,130939.3517316894,87087.50063469984,0,0,736.8611510882268 -751,941,1663,1664,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,8.059796598868978,8.23354553265805,45,5,65.90144492032057,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4689439804883786,8.164597757858418,67.82000000000001,19.2,57.33,37.4,8.333333333333334,1,1,0,0,5,2,3,1,2028.5,671322.7340477363,279663.4755837941,236754.8785692778,0,2132.822235571372 -751,941,1664,1663,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,45,-5,114.0936801941589,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3560933881592465,0,57.33,37.4,67.82000000000001,19.2,8.333333333333334,1,1,0,0,5,2,3,1,2028.5,671322.7340477363,279663.4755837941,236754.8785692778,0,2132.822235571372 -751,942,1665,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,6.684692472282594,6.759919569009671,0,0,0,-1009.480551465504,-9,-9,-9,2019,19,7,16,0,1,7,0,5.259637992451582,5.259637992451582,0,0,0,0,0,1,1,0,0,0,38.45,60.79,-9,-9,5,1,1,0,0,1,2,2,1,391,-84247.92443128049,146228.1688122339,0,0,370.2944993635048 -752,943,1666,1667,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.601692898174035,7.72017112093099,0,9,-1,-15.53951514275145,0,-9,-9,2019,9,0,35,40,1,0,0,6.504220854523892,6.504220854523892,0,0,0,0,0,1,1,0,0,0,56.35,51.16,64.05,26.3,5,1,1,0,0,10,10,3,1,432,1093745.562973096,429192.7943619132,309611.439308202,21031.84837246941,2704.623929710614 -752,943,1667,1666,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.218538515092042,6.999209614168361,38,1,11.25091453005065,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.152307448251348,64.05,26.3,56.35,51.16,8.333333333333334,1,1,0,0,4,10,3,1,432,1093745.562973096,429192.7943619132,309611.439308202,21031.84837246941,2704.623929710614 -753,944,1668,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.3693581899432,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,3.678297059640879,0,15.3535310740807,0,1,1,0,0,0,48.31,23.6,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,739,171507.5785340689,0,0,0,829.4187401081753 -754,945,1669,1670,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.38985738574133,7.570411284203089,0,41,-3,-54.94552614095036,0,3,3,2019,11,0,20,20,1,0,0,11.26884221376209,11.26884221376209,0,0,0,0,0,1,1,0,0,0,50.58,40.29,54.96,53.17,1.666666666666667,1,1,0,0,9,10,4,1,638,-10536.31270865114,-187560.1435698369,0,0,3244.848861463026 -754,945,1670,1669,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.260578366626298,8.070303818793903,6.84216767532453,41,3,81.83702199798049,0,3,3,2019,8,0,50,50,1,0,0,8.891181622112123,8.891181622112123,0,0,0,0,2,1,1,0,0,6.621175661929096,54.96,53.17,50.58,40.29,5,1,1,0,0,9,10,4,1,638,-10536.31270865114,-187560.1435698369,0,0,3244.848861463026 -755,946,1671,1674,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,9.027597178390666,9.04536164280012,0,12,8,7.890326764479362,0,-9,-9,2019,12,1,37,43,1,1,0,27.27414963699272,27.27414963699272,0,0,0,.9046486204398025,0,1,1,0,6.480852943969598,0,33.49,64.26000000000001,48.77,60.16,6.666666666666667,1,1,0,0,10,2,4,1,1297.5,216702.7407541103,12154.82773590945,239805.4161591596,115370.636725848,4798.144571823903 -755,946,1672,-9,1674,1671,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.7943862232008,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1297.5,216702.7407541103,12154.82773590945,239805.4161591596,115370.636725848,4798.144571823903 -755,946,1673,-9,1674,1671,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.958984824231,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1297.5,216702.7407541103,12154.82773590945,239805.4161591596,115370.636725848,4798.144571823903 -755,946,1674,1671,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,7.66399354089905,7.738883307985336,0,12,-8,1.221203098659938,0,2,2,2019,6,0,14,15,1,0,0,15.20530498396947,15.20530498396947,0,0,0,0,0,1,1,0,6.977322855447137,0,48.77,60.16,33.49,64.26000000000001,8.333333333333334,1,1,0,0,9,2,4,1,1297.5,216702.7407541103,12154.82773590945,239805.4161591596,115370.636725848,4798.144571823903 -756,947,1675,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.549958543287241,8.056446952757804,0,0,0,-951.9699028941938,0,3,2,2019,9,0,39,41,1,0,0,12.79343092473106,12.79343092473106,0,0,0,0,7,0,0,0,2.344718121649406,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,175,592931.4125848557,461421.9104859456,177969.5463807138,0,1871.508937486887 -757,948,1676,-9,1678,1677,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.147979680343,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1894.5,14315.5307414272,-120.822802184771,105116.3365468165,94888.87030184636,1966.127015373237 -757,948,1677,1678,-9,-9,1,1,26,1,2,0,3,3,-9,0,2,8.527062487766251,8.361240564603635,0,5,0,-82.68443377392728,0,-9,-9,2019,10,1,48,40,1,1,0,9.380272158306814,9.380272158306814,0,0,0,0,0,1,1,0,0,0,53.8,45.89,40.71,62.41,8.333333333333334,1,1,0,0,9,13,3,1,1894.5,14315.5307414272,-120.822802184771,105116.3365468165,94888.87030184636,1966.127015373237 -757,948,1678,1677,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,5,0,132.7473818398244,0,-9,-9,2019,10,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,53.8,45.89,8.333333333333334,1,1,0,0,6,13,3,1,1894.5,14315.5307414272,-120.822802184771,105116.3365468165,94888.87030184636,1966.127015373237 -757,948,1679,-9,1678,1677,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.010182247449,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1894.5,14315.5307414272,-120.822802184771,105116.3365468165,94888.87030184636,1966.127015373237 -758,949,1680,1681,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,43,6,0,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,46.39,60.99,50,47,6.666666666666667,1,1,0,0,6,9,1,1,1354.5,404242.1812069035,0,362480.6218996404,0,1579.16933014519 -758,949,1681,1680,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,7,-6,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,46.39,60.99,7,1,1,0,0,0,9,1,1,1354.5,404242.1812069035,0,362480.6218996404,0,1579.16933014519 -759,950,1682,-9,1683,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1003.358060638177,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,590,-10235.34834258826,-79821.83490349537,0,0,2424.932649834421 -759,950,1683,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.376297719542294,7.956297551076845,6.608068504492101,0,0,-929.5504310322979,0,2,2,2019,22,8,39,40,1,8,0,5.04077546460095,5.04077546460095,0,0,0,0,0,1,1,0,6.31798294262869,0,38.17,53.94,-9,-9,5,1,1,0,0,3,6,2,0,590,-10235.34834258826,-79821.83490349537,0,0,2424.932649834421 -759,950,1684,-9,1683,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.4111623089693,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,590,-10235.34834258826,-79821.83490349537,0,0,2424.932649834421 -760,951,1685,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.403141944912,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,23.20123762963666,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,1,0,12,1,0,510,220814.239092242,0,0,0,790.3289305726927 -761,952,1686,1688,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,9.638311373197233,9.672536986130247,0,10,1,37.71536125369797,-9,2,2,2019,10,0,45,0,1,0,0,35.02665526544237,35.02665526544237,0,0,0,0,0,0,0,0,1.821859822869144,0,50.52,40.15,59.14,52.5,8.333333333333334,1,1,0,0,12,5,5,1,1643.666666666667,379743.2689670839,334080.4398658253,304643.0089939364,204905.096976348,5319.829650851305 -761,952,1687,-9,1688,1686,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.0949081935704,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1643.666666666667,379743.2689670839,334080.4398658253,304643.0089939364,204905.096976348,5319.829650851305 -761,952,1688,1686,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.768113654549437,7.503710520741772,0,10,-1,16.0745988448156,0,3,2,2019,8,1,37,37,1,1,0,6.749225344399234,6.749225344399234,0,0,0,0,0,0,0,0,0,0,59.14,52.5,50.52,40.15,10,1,1,0,0,11,5,5,1,1643.666666666667,379743.2689670839,334080.4398658253,304643.0089939364,204905.096976348,5319.829650851305 -762,953,1689,-9,1690,1691,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.251874191636,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,0,2255.666666666667,238603.0909894158,28836.34132990268,0,0,2506.540749938641 -762,953,1690,1691,-9,-9,1,0,37,0,1,0,1,1,-9,0,2,8.284728031913341,8.565560876813811,0,9,-3,79.47250279035742,0,-9,-9,2019,36,12,28,28,1,12,0,21.83139220942366,21.83139220942366,0,0,0,0,0,0,0,0,0,0,22.92,58.94,50,57,1.666666666666667,1,1,0,0,8,5,4,0,2255.666666666667,238603.0909894158,28836.34132990268,0,0,2506.540749938641 -762,953,1691,1690,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,7.924006045611621,7.788472084331971,0,9,3,-82.50740359419477,0,2,2,2019,10,0,48,-9,1,1,0,5.845374705205375,5.845374705205375,0,0,0,0,0,0,0,0,2.926473003228559,0,50,57,22.92,58.94,6.666666666666667,1,1,0,0,11,5,4,0,2255.666666666667,238603.0909894158,28836.34132990268,0,0,2506.540749938641 -763,954,1692,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,7.779152511544694,7.864309658940594,0,0,-1078.298994948986,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.653244583699707,58.92,19.45,-9,-9,10,4,5,0,0,10,6,4,1,547,150493.5061508062,0,463017.5600303832,190294.6774637387,1484.597804384862 -764,955,1693,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,6.933656846983666,6.6801680052113,0,0,0,-887.3944957308072,0,-9,-9,2019,23,11,16,20,1,11,0,6.286310999564414,6.286310999564414,0,0,0,0,0,1,1,0,0,0,26.63,55.63,-9,-9,3.333333333333333,1,1,0,0,4,1,2,0,339,0,0,0,0,1685.964786956925 -764,955,1694,-9,1693,-9,1,0,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1029.665834508903,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,32,-9,-9,3,1,1,-9,0,0,1,2,0,339,0,0,0,0,1685.964786956925 -765,956,1695,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,7.962372434827352,7.968090496624231,0,0,0,-1150.222562883408,0,2,2,2019,10,0,43,41,1,0,1,6.385322285980881,6.385322285980881,0,0,0,.4990380835455976,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,6,4,1,311,412559.3419651075,86405.45334604691,173855.5604449284,0,940.6302547299441 -766,957,1696,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.954078045164001,8.804038247490006,0,0,0,-978.5989297651809,0,2,3,2019,3,0,42,43,1,0,0,18.82265954470129,18.82265954470129,0,0,0,0,5.48,1,1,0,3.23155159221451,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,219,40188.02240610197,47299.91777988957,200316.4377394251,141301.7955261863,2813.696300621719 -767,958,1697,1698,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.631960022693138,7.847615857581727,41,8,10.03415434000339,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.499003400629735,7.663387439849323,52.71,51.49,54.2,57.49,8.333333333333334,1,1,0,0,8,11,4,1,640,299027.0998338048,-34333.42535645021,107445.5699495331,74030.38029191678,2896.534092777484 -767,958,1698,1697,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.99337185082031,7.741559339551197,6.686499677091598,41,-8,-101.1173381244852,0,2,2,2019,11,0,16,28,1,0,0,7.692750160493081,7.692750160493081,0,0,0,0,0,1,1,0,0,6.665376375668473,54.2,57.49,52.71,51.49,8.333333333333334,1,1,0,0,10,11,4,1,640,299027.0998338048,-34333.42535645021,107445.5699495331,74030.38029191678,2896.534092777484 -768,959,1699,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,7.610587136782497,7.80523219107496,0,0,-976.2691153367202,0,3,2,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.816934127802741,8.068546723183452,35.29,26.33,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,868,650624.4881404489,0,486296.147506169,0,2538.742055470125 -769,960,1700,1702,-9,-9,1,1,28,1,1,0,2,2,-9,0,2,8.30673494718857,8.21847576948435,0,3,2,11.66308193240652,0,-9,-9,2019,11,3,38,41,1,3,0,14.06075899380077,14.06075899380077,0,0,0,0,0,1,1,0,0,0,40.78,46.7,49.36,58.53,8.333333333333334,1,1,0,0,7,12,4,1,870,-82058.17567331941,-16738.42965921771,99591.03877391014,90771.92784869019,3224.911188315584 -769,960,1701,-9,1702,1700,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-843.7809568648363,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,870,-82058.17567331941,-16738.42965921771,99591.03877391014,90771.92784869019,3224.911188315584 -769,960,1702,1700,-9,-9,1,0,26,1,1,0,2,2,-9,0,5,7.808892891415871,8.02107784823758,0,3,-2,-115.0181365769009,0,2,2,2019,8,0,14,8,1,0,0,24.15614249988653,24.15614249988653,0,0,0,0,0,1,1,0,0,0,49.36,58.53,40.78,46.7,8.333333333333334,1,1,0,0,7,12,4,1,870,-82058.17567331941,-16738.42965921771,99591.03877391014,90771.92784869019,3224.911188315584 -770,961,1703,-9,1705,1704,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.060001814634,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,381,218808.3214857719,166764.7064681345,314309.92023202,235899.2150981518,4377.070735896916 -770,961,1704,1705,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.179093201936492,9.630949782859945,0,9,5,-52.36755178821941,0,1,1,2019,10,0,53,43,1,0,0,22.63379263376787,22.63379263376787,0,0,0,0,0,0,0,0,3.674552235529054,0,52.51,54.26,53.9,52.09,6.666666666666667,2,3,0,0,7,6,5,1,381,218808.3214857719,166764.7064681345,314309.92023202,235899.2150981518,4377.070735896916 -770,961,1705,1704,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.333989789065884,7.695770220850482,0,9,-5,80.0775628018921,0,2,3,2019,11,0,26,27,1,0,0,10.04168662169937,10.04168662169937,0,0,0,0,0,0,0,0,3.40824826418478,0,53.9,52.09,52.51,54.26,8.333333333333334,2,3,0,0,5,6,5,1,381,218808.3214857719,166764.7064681345,314309.92023202,235899.2150981518,4377.070735896916 -770,961,1706,-9,1705,1704,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3497368638,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,381,218808.3214857719,166764.7064681345,314309.92023202,235899.2150981518,4377.070735896916 -771,962,1707,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,1,0,4.113659436247088,4.008152722360437,0,0,-943.2167597581837,-9,2,2,2019,15,3,0,0,4,3,0,0,0,1,4.085574181922525,14.67523830588708,40.46575224117856,0,1,1,0,0,4.097504383026287,41.17,22.09,-9,-9,5,1,1,0,0,0,8,2,1,51,-2817.429651494454,26932.23639528241,0,0,1911.983458751325 -772,963,1708,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.669829882107068,8.884047650008307,0,0,0,-1258.431241456908,0,2,2,2019,10,0,37,37,1,0,0,16.73098679587378,16.73098679587378,0,0,0,0,0,0,0,0,0,0,43.44,58.7,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,1032,-34845.80293612603,43371.1118025882,0,0,2071.223515386116 -772,964,1709,-9,-9,1708,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1048.41555728473,-9,-9,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,31,60.29,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,590,192476.618825279,0,0,0,126.2673734114193 -773,965,1710,-9,1711,1713,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.5549960143782,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,271.4,77428.67096578761,0,0,0,1654.085906078388 -773,965,1711,1713,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,0,0,0,15,0,-14.01293146631191,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,38.9,48.23,5,2,3,0,0,0,4,2,0,271.4,77428.67096578761,0,0,0,1654.085906078388 -773,965,1712,-9,1711,1713,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.374857752522,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,271.4,77428.67096578761,0,0,0,1654.085906078388 -773,965,1713,1711,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,7.027841789869465,6.923320591892134,0,9,0,9.382805530563422,0,-9,-9,2019,11,0,16,16,1,0,0,8.040844904008198,8.040844904008198,0,0,0,0,0,1,1,0,0,0,38.9,48.23,45.97,51.9,5,2,3,0,0,12,4,2,0,271.4,77428.67096578761,0,0,0,1654.085906078388 -773,965,1714,-9,1711,1713,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.06541732801,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,271.4,77428.67096578761,0,0,0,1654.085906078388 -774,966,1715,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.122023424200679,6.278856369241469,0,0,-1064.078852870964,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.454040697694654,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,1801,52122.30279211997,19770.26123556047,102944.367236594,0,1761.442138219386 -775,967,1716,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1076.781018587666,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,2.716147684763217,0,0,1,1,0,0,0,27.88,25.37,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,177,31423.5814569354,0,0,0,973.2237902515608 -775,968,1717,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-994.1508097903831,0,2,-9,2019,13,1,0,0,4,1,0,0,0,1,0,16.74687557939954,0,0,1,1,0,0,0,40.37,37.25,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,128,-26633.81099513056,0,0,0,845.7285258431015 -776,969,1718,-9,1719,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.2208365728596,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,11,1,0,574,-22263.49381268497,0,0,0,1443.883140321209 -776,969,1719,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1105.417776923785,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,0,11,1,0,574,-22263.49381268497,0,0,0,1443.883140321209 -777,970,1720,-9,-9,-9,1,1,40,0,0,0,2,2,0,0,2,0,0,0,0,0,-1096.497176968137,-9,2,2,2019,25,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,43.68,-9,-9,1.666666666666667,1,1,0,1,11,4,1,1,349,-181939.1382129096,67201.52619206606,0,0,519.8502464382659 -778,971,1721,1722,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,6,-1,-85.06678454661507,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,17.06241332890798,75.28527479653074,0,0,1,1,0,0,0,56.52,22.01,58.15,52.91,8.333333333333334,1,1,0,0,0,12,2,0,467.5,163992.6713454248,-21030.44338062981,64961.13000886267,0,1819.992802950415 -778,971,1722,1721,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.351623746090568,6.476332941750056,6,1,-49.12965693738673,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.274877670562526,58.15,52.91,56.52,22.01,8.333333333333334,1,1,0,0,0,12,2,0,467.5,163992.6713454248,-21030.44338062981,64961.13000886267,0,1819.992802950415 -779,972,1723,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-903.5036479015251,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.09,46.7,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,775,277577.4817173491,0,0,0,306.4446612334145 -780,973,1724,1725,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.239128628514122,8.025097271848216,49,0,-1.20606459825609,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.814010765151621,8.080746354124354,59.88,45.37,54.37,54.8,8.333333333333334,1,1,0,0,0,6,3,1,1067.5,1246826.927721678,932864.5936279396,204417.5139961382,0,2971.03462810755 -780,973,1725,1724,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,48,0,-19.26438900103953,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.69369494871386,0,54.37,54.8,59.88,45.37,8.333333333333334,1,1,0,0,0,6,3,1,1067.5,1246826.927721678,932864.5936279396,204417.5139961382,0,2971.03462810755 -781,974,1726,1728,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.211668507370939,7.979797279907689,0,5,7,-154.7283690402479,0,2,2,2019,15,3,37,41,1,3,0,12.65727626878143,12.65727626878143,0,0,0,0,0,1,1,0,0,0,31.69,59.68,22.78,57.04,6.666666666666667,1,1,0,0,8,10,4,1,596,206533.4178125023,275859.3492586838,124878.0979469529,108820.0541593573,2757.217696814254 -781,974,1727,-9,1728,1726,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.8958883484844,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,596,206533.4178125023,275859.3492586838,124878.0979469529,108820.0541593573,2757.217696814254 -781,974,1728,1726,-9,-9,1,0,28,1,1,0,1,1,1,0,3,7.337410108496944,7.304210724810481,0,5,-7,54.2759797187842,-9,-9,-9,2019,21,9,28,0,1,9,0,5.892019299456515,5.892019299456515,0,0,0,0,0,1,1,0,0,0,22.78,57.04,31.69,59.68,3.333333333333333,1,1,0,0,7,10,4,1,596,206533.4178125023,275859.3492586838,124878.0979469529,108820.0541593573,2757.217696814254 -782,975,1729,1730,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.264122328226498,5.298775700460131,50,3,22.338087317546,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.195990698600845,4.987593821172861,54.96,53.17,51.66,54.88,8.333333333333334,1,1,0,0,0,2,2,1,362.5,285332.2542407706,246062.0971386385,76592.52247745101,50518.84470276808,1788.258506347245 -782,975,1730,1729,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.520349661751998,6.659342175972344,50,-3,-62.22465870128462,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.978721282971954,51.66,54.88,54.96,53.17,8.333333333333334,1,1,0,0,6,2,2,1,362.5,285332.2542407706,246062.0971386385,76592.52247745101,50518.84470276808,1788.258506347245 -783,976,1731,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.575355601170179,7.7217143650083,0,0,-935.8323256295243,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.255870440623506,42.85,51.08,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,2030,843537.3268137104,609807.77545589,0,0,1214.335826878339 -784,977,1732,1735,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,10.06638233502474,9.914286460134251,0,26,8,-39.20037808531215,0,2,2,2019,11,1,46,60,1,1,0,58.2844460698444,58.2844460698444,0,0,0,0,0,0,0,0,6.015019518393381,0,51.24,58.84,54.7,46.42,8.333333333333334,2,3,0,0,9,9,5,1,1051.25,1762167.388792272,341486.2904817598,913081.6361811159,0,10900.34106522634 -784,977,1733,-9,1735,1732,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-965.9619736630178,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,1051.25,1762167.388792272,341486.2904817598,913081.6361811159,0,10900.34106522634 -784,977,1734,-9,1735,1732,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.1339430595299,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,9,5,1,1051.25,1762167.388792272,341486.2904817598,913081.6361811159,0,10900.34106522634 -784,977,1735,1732,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.443323548307481,8.290408215595017,0,6,-8,-80.81560086312169,0,3,-9,2019,8,0,40,37,1,0,0,10.10849436101757,10.10849436101757,0,0,0,0,0,0,0,0,7.519416852694926,0,54.7,46.42,51.24,58.84,8.333333333333334,4,2,0,0,5,9,5,1,1051.25,1762167.388792272,341486.2904817598,913081.6361811159,0,10900.34106522634 -784,978,1736,-9,1735,1732,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-968.7104837876158,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,3053,133332.4196415792,0,0,0,107.5333148061126 -785,979,1737,1738,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,8.483291397069934,8.418660678341658,0,42,-2,48.90033987510112,0,-9,-9,2019,14,3,43,42,1,3,0,9.364512470213667,9.364512470213667,0,0,0,0,0,0,0,0,0,0,37.2,45.17,53.15,29.68,5,1,1,0,0,11,10,5,0,2121,383563.4725569115,91511.98679012129,574952.6423287395,302055.0124992138,3293.261761922729 -785,979,1738,1737,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.329663690564491,8.266122035639521,0,42,2,42.45064106071868,0,2,3,2019,12,1,50,50,1,1,0,9.890511929586925,9.890511929586925,0,0,0,0,0,0,0,0,0,0,53.15,29.68,37.2,45.17,3.333333333333333,1,1,0,0,12,10,5,0,2121,383563.4725569115,91511.98679012129,574952.6423287395,302055.0124992138,3293.261761922729 -786,980,1739,-9,-9,-9,1,0,34,0,1,0,1,1,-9,1,5,0,0,0,0,0,-1052.835292069605,0,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,4.828585717246205,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,11,1,1,656.5,47991.13136076486,0,0,0,614.5039860709808 -786,980,1740,-9,1739,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.5628287542831,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,1,1,656.5,47991.13136076486,0,0,0,614.5039860709808 -787,981,1741,1742,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.124197673934077,8.210310979339221,0,24,-3,54.75669844883534,0,1,2,2019,8,0,21,35,1,0,0,27.40817131033412,27.40817131033412,0,0,0,0,0,0,0,0,0,0,47,30.79,54.37,54.8,8.333333333333334,1,1,0,0,8,8,4,1,1665.5,249032.9124435818,47267.41611061041,363375.6538925498,20597.24722206209,1828.315424286229 -787,981,1742,1741,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.76140184295349,6.639779427422269,0,24,3,-82.47269737678539,0,2,2,2019,8,0,10,35,1,0,0,10.26022094672134,10.26022094672134,0,0,0,0,2,0,0,0,0,0,54.37,54.8,47,30.79,8.333333333333334,1,1,0,0,6,8,4,1,1665.5,249032.9124435818,47267.41611061041,363375.6538925498,20597.24722206209,1828.315424286229 -788,982,1743,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.359703475886061,8.382631052466527,0,0,0,-957.1148400315157,0,2,2,2019,5,0,39,40,1,0,0,13.08629314769863,13.08629314769863,0,0,0,0,0,0,0,0,.5466997004931963,0,49.94,58.01,-9,-9,10,1,1,0,0,8,2,4,1,956,27789.56662646926,-40625.32614539134,0,0,1291.216970799948 -789,983,1744,1745,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,4.941240036526051,5.175808001102562,11,-19,-4.733519351765073,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,5.099718433393083,0,39.79,33.56,25.95,51.94,6.666666666666667,2,3,0,0,0,8,2,0,804.5,1035653.540011068,0,853336.7069731869,0,1655.00445746888 -789,983,1745,1744,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,4.014493127987707,4.301764603305953,22,19,-17.86454394647069,0,2,1,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.715545904387962,0,25.95,51.94,39.79,33.56,5,2,3,0,0,5,8,2,0,804.5,1035653.540011068,0,853336.7069731869,0,1655.00445746888 -789,984,1746,-9,1744,1745,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-864.7065745174798,-9,2,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.04,60.47,-9,-9,10,2,3,0,0,0,8,1,0,695,110680.0537987323,0,0,0,0 -790,985,1747,-9,-9,1748,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.221622072002,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,1400.5,770506.2601274499,253076.3951603813,224639.8976812876,0,1814.974104914821 -790,985,1748,-9,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,7.663469770556172,7.563745890242041,0,0,0,-1019.40576955205,0,-9,-9,2019,9,0,36,36,1,0,0,6.265898203878623,6.265898203878623,0,0,0,0,0,1,1,0,0,0,60.06,39.82,-9,-9,6.666666666666667,1,1,0,1,10,10,3,0,1400.5,770506.2601274499,253076.3951603813,224639.8976812876,0,1814.974104914821 -791,986,1749,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.753087400146947,7.903572408353577,0,0,0,-976.0304299307356,0,2,2,2019,6,0,31,31,1,0,0,7.64997086260852,7.64997086260852,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,175,-56911.61854106526,0,0,0,627.4616096956452 -791,987,1750,-9,1749,-9,1,1,26,0,0,0,1,1,-9,0,5,8.121665337573198,8.119069310222729,0,0,0,-1013.389685767352,0,2,2,2019,11,0,35,36,1,0,1,12.1463190016339,12.1463190016339,0,0,0,0,0,0,0,0,3.171037654784139,0,41.07,60.93,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,1498,119623.4856620625,-40319.7053666593,0,0,1173.599318474703 -791,988,1751,-9,1749,-9,1,0,21,0,0,0,1,1,1,0,4,8.118760375201784,8.03665403997246,0,0,0,-959.2115843046423,-9,2,-9,2019,13,2,70,0,1,2,1,6.154276365981662,6.154276365981662,0,0,0,0,0,0,0,0,5.558096166316742,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,738,145356.3070730862,-105.5018146165039,0,0,2026.47263969701 -792,989,1752,1753,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.708678647121321,9.270678739499694,8.239588819802014,15,10,-4.885386005894778,0,3,3,2019,20,8,40,50,1,8,0,20.09233767960567,20.09233767960567,0,0,0,0,0,1,1,0,3.696740232454091,8.08155381721466,32.38,58.28,51.77,58.57,6.666666666666667,1,1,0,0,9,2,5,1,423.5,2205568.832675435,1579772.353212586,248825.6479356725,0,5577.359392763246 -792,989,1753,1752,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,7.420268315217948,7.444434539034393,18,-10,13.9203600600792,0,3,3,2019,19,7,0,43,4,7,0,0,0,0,0,0,0,0,1,1,0,5.133209663637847,7.41244813549441,51.77,58.57,32.38,58.28,8.333333333333334,1,1,0,0,5,2,5,1,423.5,2205568.832675435,1579772.353212586,248825.6479356725,0,5577.359392763246 -792,990,1754,-9,1753,1752,1,0,22,0,0,0,1,1,1,0,4,8.250072743477755,8.667610504295345,8.375960398957211,0,0,-1076.694467492302,-9,3,3,2019,12,1,40,0,1,1,0,12.74545950368822,12.74545950368822,0,0,0,0,0,1,1,0,8.255638924755775,0,52.31,52.76,-9,-9,8.333333333333334,1,1,0,0,3,2,5,1,262,0,0,0,0,3947.908714087211 -792,991,1755,-9,1753,1752,1,0,24,0,0,0,1,1,-9,0,5,8.366663637404745,8.60242590186934,0,0,0,-1002.972851628245,0,2,2,2019,10,1,48,54,1,1,0,9.14978787236555,9.14978787236555,0,0,0,0,0,1,1,0,4.898986746567561,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,515,-61840.05271123424,96844.50677250233,0,0,1539.969496667873 -793,992,1756,1757,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,57,1,25.34761580402082,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.873955085800294,0,55.47,52.91,57.06,57.76,10,1,1,0,0,0,4,3,1,1964,547053.9922524693,360133.0799292752,215754.9518345665,0,3030.598131329467 -793,992,1757,1756,-9,-9,1,0,79,0,0,0,3,3,-9,0,5,0,8.461973720311475,8.712785142707567,57,-1,104.0620031772695,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.666727100133438,8.275412466609119,57.06,57.76,55.47,52.91,10,1,1,0,0,0,4,3,1,1964,547053.9922524693,360133.0799292752,215754.9518345665,0,3030.598131329467 -794,993,1758,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.465296017902434,8.14373784101676,0,0,0,-1002.228688381634,0,2,-9,2019,7,0,37,38,1,0,0,11.31978700353986,11.31978700353986,0,0,0,0,0,1,1,0,3.721131999904066,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,3265,215691.7917526668,-45627.07393121151,252217.4189028292,70669.32653161831,1768.286296954318 -794,994,1759,-9,1758,-9,1,1,30,0,0,0,2,2,-9,0,4,7.628209612435113,7.672342799959836,0,0,0,-1092.931722919044,-9,2,-9,2019,10,0,45,0,1,1,1,6.294728959130581,6.294728959130581,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,3,1,213,40729.86246813033,0,135304.6207934767,34621.18623007541,838.6146993352487 -794,995,1760,-9,1758,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-956.1509089884671,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,1,0,0,9,1,1,955,0,0,0,0,-77.35651742769838 -795,996,1761,-9,1762,1763,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.574810321829,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1542.25,447561.0419969922,65317.87384842982,462654.5267588391,152096.433435611,8015.954513951706 -795,996,1762,1763,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.419127536550571,9.108621966578882,0,8,-2,138.4027089349631,0,2,1,2019,10,0,37,42,1,0,0,28.35607992713651,28.35607992713651,0,0,0,0,0,1,1,0,3.373929891381757,0,45.75,62.87,47.69,53.79,6.666666666666667,1,1,0,0,9,6,5,1,1542.25,447561.0419969922,65317.87384842982,462654.5267588391,152096.433435611,8015.954513951706 -795,996,1763,1762,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.23855367361582,8.142495228681513,0,8,2,-50.64891951388871,0,2,2,2019,15,4,20,30,1,4,0,24.59024586223852,24.59024586223852,0,0,0,0,0,1,1,0,9.832417926876309,0,47.69,53.79,45.75,62.87,3.333333333333333,1,1,0,0,7,6,5,1,1542.25,447561.0419969922,65317.87384842982,462654.5267588391,152096.433435611,8015.954513951706 -795,996,1764,-9,1762,1763,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.1814808399567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,1542.25,447561.0419969922,65317.87384842982,462654.5267588391,152096.433435611,8015.954513951706 -796,997,1765,1766,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-5,2.687849356848795,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.672433901524851,0,51,46,36.28,44.53,7,1,1,0,0,0,5,2,1,614,409888.9615403016,304014.5337128938,229187.2240888227,0,1021.682393914001 -796,997,1766,1765,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.191678201005176,7.305868613208473,46,5,-60.33672377791217,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,2.650149308089087,7.457562685729767,36.28,44.53,51,46,6.666666666666667,1,1,0,0,0,5,2,1,614,409888.9615403016,304014.5337128938,229187.2240888227,0,1021.682393914001 -797,998,1767,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1044.415487348895,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.55,54.01,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,125,191397.2926405576,0,80752.77997948382,0,655.1032997018664 -798,999,1768,1769,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.631427554652467,5.703758562145913,45,23,26.75468036932058,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,7.087270549638871,18.02814294146665,0,0,1,1,0,2.673000936070344,5.475134259322235,56.18,16.69,51,46,6.666666666666667,1,1,0,0,0,10,3,1,604.5,616849.7773664031,228529.9623863264,375117.8905487597,0,2832.145694772063 -798,999,1769,1768,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.856379474579846,7.494571850833727,45,-23,-82.88592714849078,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.484614172987412,51,46,56.18,16.69,8.333333333333334,1,1,0,0,0,10,3,1,604.5,616849.7773664031,228529.9623863264,375117.8905487597,0,2832.145694772063 -799,1000,1770,1771,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,8.373667555093062,8.540164994151848,26,-12,134.2880384304228,0,2,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,6.631628493610589,8.536631699096496,37.03,26.66,54.1,59.11,8.333333333333334,1,1,0,0,0,10,5,1,748,1876190.045790633,894970.3427893802,715276.1191295201,0,5465.745338652832 -799,1000,1771,1770,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.015234897054603,7.655911722613023,26,12,53.17557094029894,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.319056335032034,54.1,59.11,37.03,26.66,8.333333333333334,1,1,0,0,0,10,5,1,748,1876190.045790633,894970.3427893802,715276.1191295201,0,5465.745338652832 -800,1001,1772,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,5,0,8.07065738515533,8.057582152770705,0,0,-937.2766155346787,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,13.6525973840902,0,0,1,1,0,0,8.258879232227155,55.24,55.87,-9,-9,1.666666666666667,1,1,0,0,0,10,4,1,2096,734767.4520654312,437880.3666596627,241206.8008995238,0,2165.933790588342 -800,1002,1773,-9,1772,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.697125496615,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.211697315688437,0,62.49,55.09,-9,-9,10,1,1,0,0,0,10,2,1,397,-129931.1787407361,0,0,0,323.1424364068105 -801,1003,1774,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.080814045423717,8.088761003466393,0,0,0,-1029.852028016858,0,-9,-9,2019,14,3,35,7,1,3,0,8.335678289396174,8.335678289396174,0,0,0,0,0,0,0,0,1.349963285731259,0,31.29,61.29,-9,-9,3.333333333333333,1,1,0,0,6,12,4,0,87,-135917.2903616921,0,0,0,1467.803870389756 -802,1004,1775,1778,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,7.421743055606186,7.365219413179473,0,7,3,-11.72421423838866,0,2,1,2019,17,5,20,70,1,5,0,10.45360312804358,10.45360312804358,0,0,0,0,2,1,1,0,0,0,32.63,39.17,38.8,49.69,1.666666666666667,1,1,0,1,9,9,3,1,693.5,1037799.651601458,544993.1737850485,369399.6637614949,0,2135.410020917475 -802,1004,1776,-9,1778,1775,1,1,17,0,0,1,2,0,0,0,5,0,5.12251899819458,4.987397152825602,0,0,-1080.709238055111,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.026092633617511,0,55.26,55.85,-9,-9,10,1,1,0,0,0,9,3,1,693.5,1037799.651601458,544993.1737850485,369399.6637614949,0,2135.410020917475 -802,1004,1777,-9,1778,1775,1,1,17,0,0,1,2,0,0,0,4,0,4.819924147027015,5.036370912071415,0,0,-1080.319617996767,-9,1,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,4.606537355635833,0,40.49,55.63,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,693.5,1037799.651601458,544993.1737850485,369399.6637614949,0,2135.410020917475 -802,1004,1778,1775,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.569835200514661,7.757950438971453,0,24,-3,.1176499543481989,0,3,2,2019,19,8,40,20,1,8,0,5.099938716147124,5.099938716147124,0,0,0,0,86,1,1,0,3.187848431695725,0,38.8,49.69,32.63,39.17,3.333333333333333,1,1,0,0,9,9,3,1,693.5,1037799.651601458,544993.1737850485,369399.6637614949,0,2135.410020917475 -803,1005,1779,1780,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,7.19767456567758,7.163232752402404,30,4,-11.15746847407839,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.418046519068324,54.2,57.49,49.86,55.31,8.333333333333334,3,4,0,0,11,8,3,1,372,1293327.022154375,260521.7143805277,495262.4392294267,0,1604.468874139273 -803,1005,1780,1779,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.636384974065519,7.375966627718582,0,30,-4,25.24706830725429,0,3,2,2019,8,0,36,36,1,0,0,6.198343328437092,6.198343328437092,0,0,0,0,0,1,1,0,0,0,49.86,55.31,54.2,57.49,6.666666666666667,3,4,0,0,12,8,3,1,372,1293327.022154375,260521.7143805277,495262.4392294267,0,1604.468874139273 -803,1006,1781,-9,1779,1780,1,1,26,0,0,0,2,2,-9,0,3,7.667657947515544,7.67174318134093,0,0,0,-946.493238409201,0,2,2,2019,6,0,36,0,1,0,1,7.413087734999168,7.413087734999168,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,2,8,3,1,382,84079.87971456356,29420.83300720316,0,0,891.2156743893657 -804,1007,1782,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.683338187808089,7.624820908657881,0,0,-847.1135221920554,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,2.109627450940734,0,0,0,1,1,0,6.261107265935476,7.685533684341083,47.53,23.08,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,862,274699.5303043347,322968.7893299488,214611.794480715,0,1695.842870666623 -805,1008,1783,-9,1785,1784,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.268536962078,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,320.75,-27398.53150881298,-27046.85446441127,0,0,2094.843322489401 -805,1008,1784,1785,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,9,5,0,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.72,51.29,47,57,8.333333333333334,1,1,1,0,2,9,1,0,320.75,-27398.53150881298,-27046.85446441127,0,0,2094.843322489401 -805,1008,1785,1784,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,0,0,0,9,-5,0,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,58.72,51.29,7,1,1,1,0,0,9,1,0,320.75,-27398.53150881298,-27046.85446441127,0,0,2094.843322489401 -805,1008,1786,-9,1785,1784,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.2601484664798,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,320.75,-27398.53150881298,-27046.85446441127,0,0,2094.843322489401 -806,1009,1787,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.537005905842395,6.931521588589161,0,0,-1000.827170890838,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.751217202156882,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,1272,386927.6601032484,83288.37693791396,459500.20750062,0,1816.226273608566 -807,1010,1788,-9,1789,1790,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-807.3939259623006,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,2,1,736,-46514.34834698273,0,0,0,1405.564819406205 -807,1010,1789,1790,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,32,-5,-107.4783840351534,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.116615280733622,0,51.83,57.2,38,21.86,6.666666666666667,1,1,0,0,0,4,2,1,736,-46514.34834698273,0,0,0,1405.564819406205 -807,1010,1790,1789,-9,-9,1,1,60,0,1,0,2,2,-9,0,1,0,5.517340565057554,5.538915568702677,32,5,-138.9414356750747,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.424999757891516,5.252412830196042,38,21.86,51.83,57.2,3.333333333333333,1,1,0,0,0,4,2,1,736,-46514.34834698273,0,0,0,1405.564819406205 -808,1011,1791,1792,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,8.643721353312744,8.366482990608992,0,1,-11,27.99728064857959,-9,-9,-9,2019,10,0,51,0,1,1,0,11.09778427272597,11.09778427272597,0,0,0,0,2,1,0,1,0,0,51,56,47,49,7,2,3,0,1,13,8,4,1,4082,-42336.36148258989,58650.02464255523,0,0,2942.160792630405 -808,1011,1792,1791,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.992890234879209,6.899054152606555,0,17,11,-84.15440217433718,-9,3,3,2019,12,0,28,0,1,2,0,5.304242116814624,5.304242116814624,0,0,0,0,0,1,0,1,0,0,47,49,51,56,7,2,3,0,0,7,8,4,1,4082,-42336.36148258989,58650.02464255523,0,0,2942.160792630405 -808,1012,1793,-9,1792,1791,1,0,22,0,0,0,3,3,-9,0,5,0,0,0,0,0,-987.0607990666533,-9,3,3,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,51.63,47.98,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,3872,-57653.50606607612,0,0,0,692.4546218845367 -808,1013,1794,-9,1792,1791,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-977.8136249838325,-9,3,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,0,1,0,0,51.15,50.81,-9,-9,0,2,3,0,0,0,8,1,1,1932,-100295.0972676456,0,0,0,0 -808,1014,1795,-9,1792,1791,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.176056686212,-9,3,3,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,41.34,56.62,-9,-9,0,2,3,1,0,0,8,1,1,133,18317.67159719513,0,0,0,0 -809,1015,1796,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.300491651751869,7.823232663489791,0,5,2,52.16784393222716,0,-9,-9,2019,16,4,40,40,1,4,0,9.408672052296398,9.408672052296398,0,0,0,0,0,1,1,0,0,0,30.58,56.37,44.58,28.35,6.666666666666667,1,1,0,0,6,6,5,0,519,43913.32545775591,-23272.80072093323,135528.2845048179,90135.638581609,1426.490633092044 -809,1015,1797,-9,1796,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.642621338797,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,0,519,43913.32545775591,-23272.80072093323,135528.2845048179,90135.638581609,1426.490633092044 -809,1016,1798,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.900868940316073,8.94967467855561,0,5,-2,-41.62755054611616,0,-9,-9,2019,24,11,55,58,1,11,0,17.57005458271183,17.57005458271183,0,0,0,0,0,1,1,0,0,0,44.58,28.35,30.58,56.37,3.333333333333333,1,1,0,0,4,6,5,0,334,145565.2869695592,0,0,0,1969.605743742386 -810,1017,1799,1800,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,6.372730207423924,6.792481098604166,48,5,164.9916837517871,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.38814755784741,42.9,51.77,50,47,8.333333333333334,1,1,0,0,8,6,2,1,340.5,824886.4251893936,0,690908.5557057816,0,1598.986452188374 -810,1017,1800,1799,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-5,25.9639258376859,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,42.9,51.77,7,1,1,0,0,0,6,2,1,340.5,824886.4251893936,0,690908.5557057816,0,1598.986452188374 -811,1018,1801,1803,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.48167431885823,8.179555085896897,0,4,-2,-30.0630324450301,0,-9,-9,2019,10,0,37,37,1,1,0,15.21231041448486,15.21231041448486,0,0,0,0,0,1,1,0,0,0,50,57,46.94,59.6,7,4,1,0,0,1,13,4,1,473,113157.3847179887,35838.08929811184,168103.014980093,88583.19286791715,3705.509761290624 -811,1018,1802,-9,1803,1801,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.298244636195,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,473,113157.3847179887,35838.08929811184,168103.014980093,88583.19286791715,3705.509761290624 -811,1018,1803,1801,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,8.029536538382557,7.655260108509012,0,4,2,-2.895185977271237,0,3,2,2019,7,0,30,26,1,0,0,12.63451987057454,12.63451987057454,0,0,0,0,0,1,1,0,5.887234142132857,0,46.94,59.6,50,57,0,1,1,0,0,6,13,4,1,473,113157.3847179887,35838.08929811184,168103.014980093,88583.19286791715,3705.509761290624 -811,1018,1804,-9,1803,1801,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.1758500442076,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,473,113157.3847179887,35838.08929811184,168103.014980093,88583.19286791715,3705.509761290624 -812,1019,1805,1806,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,5.795458319356215,5.685257889408176,0,7,14,-59.08123705273343,0,3,2,2019,8,0,45,50,1,0,0,.942616535878658,.942616535878658,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,1,7,10,5,1,479.5,936656.1702747736,436443.9079162378,368294.0284890913,0,2310.536795797439 -812,1019,1806,1805,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.088257753694194,8.692115767593203,0,7,-14,-57.55660595545581,0,2,2,2019,12,2,55,45,1,2,0,12.99389357147457,12.99389357147457,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,479.5,936656.1702747736,436443.9079162378,368294.0284890913,0,2310.536795797439 -813,1020,1807,1808,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.683897127122667,6.851582635497808,53,-3,-90.15911609749288,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,5.883389048246817,6.898305809857757,37.57,49,54,46,3.333333333333333,1,1,0,0,9,4,3,1,391,537674.6392953648,440888.6326552067,146279.3141666131,0,3300.88641715802 -813,1020,1808,1807,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.713174051973888,7.690682430766905,53,3,47.92614182037345,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,27.42066216286785,0,0,1,1,0,6.002302471430321,7.784881608060385,54,46,37.57,49,7,1,1,0,0,0,4,3,1,391,537674.6392953648,440888.6326552067,146279.3141666131,0,3300.88641715802 -814,1021,1809,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.952787614475354,8.092719612013061,0,0,0,-1086.769468694681,0,2,3,2019,12,0,40,40,1,0,0,6.481262618104727,6.481262618104727,0,0,0,0,7,0,0,0,2.800191965061254,0,49.92,47.32,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,798,169391.7442837882,-19006.6119450423,0,0,1180.595203566274 -815,1022,1810,1811,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.195115725933222,7.321208539820437,0,5,7,-51.73019734871774,0,-9,-9,2019,11,0,35,37,1,0,0,4.575212832133143,4.575212832133143,0,0,0,0,0,0,0,0,.9184446830319718,0,45.29,54.84,50.03,52.62,6.666666666666667,1,1,0,0,9,2,3,1,836.5,-73828.37202814873,17311.21800696021,0,0,1490.918018305865 -815,1022,1811,1810,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.720233767536773,7.811210505849712,0,5,-7,-108.0830207829446,0,-9,-9,2019,6,0,40,40,1,0,0,5.74427892318113,5.74427892318113,0,0,0,0,0,0,0,0,.6133027912124169,0,50.03,52.62,45.29,54.84,8.333333333333334,1,1,0,0,5,2,3,1,836.5,-73828.37202814873,17311.21800696021,0,0,1490.918018305865 -816,1023,1812,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-898.0930720632266,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,1,500,314095.3725755305,133080.1363007589,97041.50619327508,0,1035.816983864397 -817,1024,1813,1814,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,8.134053109260147,8.030677373618257,6,6,28.4810666505129,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.484439016630677,7.872317444840437,54,46,48.27,33.43,8,4,1,0,0,0,4,3,1,2525.5,540274.6661359601,296603.7488400153,66739.44334348246,0,6924.662934964294 -817,1024,1814,1813,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,6.477297888048935,6.829149895105706,5.027878151710396,6,-6,99.56520128857329,0,-9,-9,2019,13,6,14,14,1,6,0,6.858245608967922,6.858245608967922,0,0,0,0,0,1,1,0,4.949557642456131,4.91253542202108,48.27,33.43,54,46,8.333333333333334,1,1,0,0,9,4,3,1,2525.5,540274.6661359601,296603.7488400153,66739.44334348246,0,6924.662934964294 -818,1025,1815,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.326633131708357,8.470553627672968,0,0,0,-1018.518991099991,0,2,1,2019,6,0,25,30,1,0,0,26.35584461215579,26.35584461215579,0,0,0,0,0,0,0,0,4.736276670221075,0,61.12,51.57,-9,-9,10,1,1,0,0,11,12,5,1,651,12070.71777251977,72978.21731768337,0,0,3155.342000982418 -819,1026,1816,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-968.1033019427601,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,29.69,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,71,-140086.3707089056,0,0,0,1741.166433635905 -820,1027,1817,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-994.9933252538675,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.97,41.17,-9,-9,10,1,1,0,0,3,1,1,0,295,-147523.7885336528,0,0,0,1002.027391727247 -821,1028,1818,1819,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.428652195317044,8.304343073267075,0,6,2,-105.4688392382491,0,2,2,2019,13,1,38,38,1,1,0,12.80577398374116,12.80577398374116,0,0,0,0,0,0,0,0,0,0,40.27,50.59,50.03,52.62,6.666666666666667,1,1,0,0,8,1,5,0,2010,52658.4444992871,138221.8511454205,112462.7195369113,28678.013976582,3736.330191647794 -821,1028,1819,1818,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.414558129759392,8.238885466493278,0,6,-2,-176.2111152031126,0,-9,-9,2019,7,0,38,38,1,0,0,13.69150925435939,13.69150925435939,0,0,0,0,0,0,0,0,6.466333364385633,0,50.03,52.62,40.27,50.59,8.333333333333334,1,1,0,0,6,1,5,0,2010,52658.4444992871,138221.8511454205,112462.7195369113,28678.013976582,3736.330191647794 -822,1029,1820,1822,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.856273638733649,7.053165390471773,0,21,-4,-101.3509471812811,0,-9,-9,2019,8,0,13,13,1,0,0,8.929614132617456,8.929614132617456,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.65,56.19,8.333333333333334,1,1,0,0,11,7,4,1,339,1292917.576269885,73066.03193117918,1494637.886526628,381162.9672272741,2761.432608739289 -822,1029,1821,-9,1820,1822,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.462631226029,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,4,1,339,1292917.576269885,73066.03193117918,1494637.886526628,381162.9672272741,2761.432608739289 -822,1029,1822,1820,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.785018533024413,8.824407911286158,0,21,4,-80.85384332477668,0,3,3,2019,12,0,48,54,1,0,0,15.25249032693027,15.25249032693027,0,0,0,0,0,1,1,0,0,0,39.65,56.19,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,1,339,1292917.576269885,73066.03193117918,1494637.886526628,381162.9672272741,2761.432608739289 -822,1029,1823,-9,1820,1822,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.0120026171985,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,339,1292917.576269885,73066.03193117918,1494637.886526628,381162.9672272741,2761.432608739289 -823,1030,1824,1826,-9,-9,1,0,42,1,1,0,1,1,-9,0,5,8.811229050462126,9.10927114278833,0,4,0,-95.76236412460571,0,-9,-9,2019,6,0,35,0,1,0,0,21.44099540186432,21.44099540186432,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.02,60.7,10,1,1,0,0,8,8,4,0,1103.333333333333,299999.1850765789,138338.392646503,400553.2012205652,93828.21894512414,398.423599487784 -823,1030,1825,-9,1824,1826,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-876.8866235947723,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,1103.333333333333,299999.1850765789,138338.392646503,400553.2012205652,93828.21894512414,398.423599487784 -823,1030,1826,1824,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,0,0,0,4,0,13.84295350456849,0,-9,-9,2019,12,1,0,10,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,62.39,56.71,5,4,2,1,1,5,8,4,0,1103.333333333333,299999.1850765789,138338.392646503,400553.2012205652,93828.21894512414,398.423599487784 -824,1031,1827,1828,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,.9636394865982112,5.942427527077166,5.788805611861496,7,1,49.77694928017145,0,-9,-9,2019,10,0,30,30,1,0,0,.0076208931801967,.0076208931801967,0,0,0,0,0,1,1,0,5.935130228354986,6.057771608091226,44.13,43.31,63.56,36.87,6.666666666666667,1,1,0,0,10,9,2,1,1477.5,624273.2554583242,193586.1136553098,282361.9450508414,0,1282.706748220948 -824,1031,1828,1827,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.347103726956585,6.398523208443231,0,41,-1,10.84527468054574,0,2,2,2019,10,0,13,13,1,0,0,5.81698143648024,5.81698143648024,0,0,0,0,0,1,1,0,0,0,63.56,36.87,44.13,43.31,6.666666666666667,1,1,0,0,10,9,2,1,1477.5,624273.2554583242,193586.1136553098,282361.9450508414,0,1282.706748220948 -825,1032,1829,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1088.18034542938,0,3,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.27,37.82,-9,-9,6.666666666666667,1,1,0,1,0,4,1,0,223,140256.1597243595,0,0,0,428.7714499201417 -826,1033,1830,1831,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,8.133391420096416,8.268117032073629,0,9,4,-35.01931931100879,0,2,2,2019,13,2,37,37,1,2,0,14.23076448330008,14.23076448330008,0,0,0,0,14.5,1,1,0,0,0,34.83,49.52,55.82,25.88,3.333333333333333,1,1,0,0,10,10,4,1,364,667077.643440441,496859.8240419865,324563.8174603594,162988.9346886113,2860.663136623258 -826,1033,1831,1830,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.261809238474028,7.587108624790704,0,9,-4,-7.737958065053325,0,2,3,2019,8,2,24,24,1,2,0,6.913911458110987,6.913911458110987,0,0,0,0,7,1,1,0,6.376546510044376,0,55.82,25.88,34.83,49.52,5,1,1,0,1,10,10,4,1,364,667077.643440441,496859.8240419865,324563.8174603594,162988.9346886113,2860.663136623258 -827,1034,1832,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,6.107643012042926,6.053274076583986,0,0,-911.7500733468926,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.112839527440466,0,53.94,26.61,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,770,379181.8568061725,166264.4413790141,101710.8547151643,0,1758.110157820261 -828,1035,1833,1834,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,8.386016164504712,8.377963463105358,13,2,-146.5138901140658,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,8.002366331352054,8.066707096056099,54.76,16.81,33.64,29.63,8.333333333333334,1,1,0,0,1,2,4,1,401,2075662.038861343,1407487.129737769,359067.3578632241,0,6522.56091777503 -828,1035,1834,1833,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,3.235898297559769,2.988660312888193,13,-2,20.75709506362895,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,7,1,1,0,5.123264326054292,3.164555776285662,33.64,29.63,54.76,16.81,8.333333333333334,1,1,0,0,0,2,4,1,401,2075662.038861343,1407487.129737769,359067.3578632241,0,6522.56091777503 -829,1036,1835,1836,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.321133931021745,8.525424978056773,0,9,-6,34.21095571166738,0,3,3,2019,9,0,18,24,1,0,0,31.73337075101061,31.73337075101061,0,0,0,0,0,1,1,0,0,0,54.13,48.04,42.29,55.19,6.666666666666667,1,1,0,0,7,11,5,1,893,405481.7623077416,389228.6678517547,227508.482599174,200785.8336650823,3609.141369182259 -829,1036,1836,1835,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2682257285792,8.187816168960589,0,9,6,11.44286755475337,0,3,3,2019,11,0,35,0,1,0,0,10.23759573109928,10.23759573109928,0,0,0,0,0,1,1,0,0,0,42.29,55.19,54.13,48.04,3.333333333333333,1,1,0,0,7,11,5,1,893,405481.7623077416,389228.6678517547,227508.482599174,200785.8336650823,3609.141369182259 -830,1037,1837,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.244765998941763,7.275578246506956,0,0,-1002.785173584613,0,1,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,5.796692012472916,7.218491527653149,40.87,44.58,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,333,738669.7259584761,347032.2543938076,282270.2733099169,0,1193.419760756347 -831,1038,1838,1839,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.842036573090564,8.095161546975881,0,8,-3,-88.65869506912112,-9,2,1,2019,10,0,24,0,1,1,0,14.29403184670795,14.29403184670795,0,0,0,0,0,0,0,0,4.177989117681687,0,52,53,54.07,49.4,8,4,5,0,0,1,7,4,1,196,329618.9720584773,63048.65173526325,295792.2200578301,21460.01774104892,2210.390078165776 -831,1038,1839,1838,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.680618146050832,7.404011105231326,8,3,-32.87389800901405,0,3,3,2019,8,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.169398505166997,54.07,49.4,52,53,6.666666666666667,1,1,0,0,8,7,4,1,196,329618.9720584773,63048.65173526325,295792.2200578301,21460.01774104892,2210.390078165776 -832,1039,1840,1841,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,6.392698116685807,6.562505518116594,0,52,-6,-13.33728856849183,0,-9,-9,2019,6,0,11,11,1,0,0,5.346150464270292,5.346150464270292,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,9,4,2,1,728.5,332700.1024940189,144570.0850717064,183003.9631549859,0,1325.378442460003 -832,1039,1841,1840,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,4.44883099035248,4.448443888059692,52,6,-20.02538815686228,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.409176869068029,4.132028860450874,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,728.5,332700.1024940189,144570.0850717064,183003.9631549859,0,1325.378442460003 -833,1040,1842,-9,1843,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.2524050268322,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,330,315571.6850296396,238496.4130626571,163866.0242563546,0,3177.634506246257 -833,1040,1843,-9,-9,-9,1,0,43,0,2,0,1,1,-9,1,2,8.344617699740922,8.724569493406239,6.900704190107041,0,0,-1073.294384996654,0,-9,-9,2019,8,0,41,37,1,0,0,11.20656703562775,11.20656703562775,0,0,0,0,0,1,1,0,0,7.055462977428439,50.91,30.85,-9,-9,6.666666666666667,1,1,0,0,7,4,4,1,330,315571.6850296396,238496.4130626571,163866.0242563546,0,3177.634506246257 -833,1040,1844,-9,1843,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.6992794192568,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,330,315571.6850296396,238496.4130626571,163866.0242563546,0,3177.634506246257 -834,1041,1845,1846,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.618125125665557,7.662885272091179,0,42,-1,21.80989508765269,0,3,3,2019,7,0,30,32,1,0,0,8.42619202149376,8.42619202149376,0,0,0,0,0,0,0,0,3.729152470636861,0,55.79,52.62,51,49,8.333333333333334,1,1,0,0,8,5,5,1,565,549711.9725951138,405478.4869314041,94772.78765860139,0,4552.982932682267 -834,1041,1846,1845,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.65847740695647,8.964846573027234,7.273563462529685,42,1,32.10711649524385,0,3,3,2019,10,0,45,-9,1,1,0,14.38336362248246,14.38336362248246,0,0,0,0,0,0,0,0,4.722859049858736,7.948825721607919,51,49,55.79,52.62,7,1,1,0,0,1,5,5,1,565,549711.9725951138,405478.4869314041,94772.78765860139,0,4552.982932682267 -835,1042,1847,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.233326264954026,7.237219788517394,0,0,-1011.353775031215,0,3,2,2019,17,7,0,0,4,7,0,0,0,1,3.204893259058839,2.909331378304807,24.93681946369579,0,1,1,0,3.128909898379109,6.962976610098345,33.89,52.29,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,139,133206.0819557016,-48539.17089800983,125264.8655494593,0,1661.461611154968 -836,1043,1848,1849,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.59192354267457,8.595866741865686,50,2,18.12478989033,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.810273015187455,8.607510348409059,56.44,52.37,58.3,52.91,8.333333333333334,1,1,0,0,0,12,4,1,956,1089806.939451657,725773.6802781045,185892.761332281,0,5026.816238397195 -836,1043,1849,1848,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.650872094230124,7.301411803797001,50,-2,-105.0806354005951,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.224721883283546,7.355077161789873,58.3,52.91,56.44,52.37,10,1,1,0,0,0,12,4,1,956,1089806.939451657,725773.6802781045,185892.761332281,0,5026.816238397195 -837,1044,1850,-9,1851,1852,1,1,20,0,0,0,2,2,1,0,3,7.240033927429976,7.220560162228956,0,0,0,-930.5490300890935,-9,1,3,2019,12,0,14,0,1,0,1,12.99667863309202,12.99667863309202,0,0,0,0,0,0,0,0,0,0,47.94,53.79,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,331,-45601.05597207133,99445.09366786621,0,0,1547.401414460354 -837,1045,1851,1852,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.708594385700391,8.108535759845253,5.514293549832209,2,8,1.590184781574854,-9,-9,-9,2019,12,0,40,0,1,0,0,8.192402697183296,8.192402697183296,0,0,0,0,0,0,0,0,5.204681090458441,0,51.71,58.83,55.39,54.22,6.666666666666667,1,1,0,0,3,7,5,0,410.6666666666667,597086.7383015644,86696.63290213942,431788.9944006777,0,6631.635241650988 -837,1045,1852,1851,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.806922442866796,9.3870107888616,8.748065402581142,2,-8,44.15865243757373,0,-9,-9,2019,7,0,50,57,1,0,0,16.42193204925234,16.42193204925234,0,0,0,0,0,0,0,0,0,8.643809127474555,55.39,54.22,51.71,58.83,8.333333333333334,1,1,0,0,7,7,5,0,410.6666666666667,597086.7383015644,86696.63290213942,431788.9944006777,0,6631.635241650988 -837,1045,1853,-9,1851,1852,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1136.502373671621,-9,1,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,1,7,5,0,410.6666666666667,597086.7383015644,86696.63290213942,431788.9944006777,0,6631.635241650988 -838,1046,1854,1855,-9,-9,1,1,84,0,0,0,2,2,-9,0,5,0,6.120516021360582,6.208629505628561,57,7,48.62451836658849,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.957145782964115,57.06,57.76,55.19,54.26,8.333333333333334,1,1,0,0,0,1,2,0,1561,378483.5966351678,27535.51974823232,140669.1401275315,0,1243.202439503266 -838,1046,1855,1854,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.125251459497055,5.892497027104729,8,-7,106.876784530903,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.168133488649196,55.19,54.26,57.06,57.76,10,1,1,0,0,0,1,2,0,1561,378483.5966351678,27535.51974823232,140669.1401275315,0,1243.202439503266 -839,1047,1856,1857,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.594482159814843,6.659330291191992,51,0,-104.8553811709501,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.432388547302557,6.567134275837034,46.55,58.3,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,936.5,768210.5714597786,601099.5648929798,347960.4327172105,116435.5550883941,3939.096003384471 -839,1047,1857,1856,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.731360270684854,7.521973420714789,51,0,3.192410665837805,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.960837159758684,7.821001550809055,54.2,57.49,46.55,58.3,10,1,1,0,0,0,5,3,1,936.5,768210.5714597786,601099.5648929798,347960.4327172105,116435.5550883941,3939.096003384471 -840,1048,1858,1860,-9,-9,1,1,38,0,1,0,2,2,-9,0,5,9.182259677977404,9.092936949722983,0,6,1,-62.95889607065627,0,2,2,2019,7,0,42,40,1,0,0,25.48042779384393,25.48042779384393,0,0,0,0,0,1,1,0,2.774127975926741,0,51.73,58.82,52.13,57.22,8.333333333333334,1,1,0,0,10,8,5,1,725.6666666666666,740474.2261278766,263664.4506043388,732118.2581123464,259834.6279302481,5446.675930220018 -840,1048,1859,-9,1860,1858,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.0478057826575,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,725.6666666666666,740474.2261278766,263664.4506043388,732118.2581123464,259834.6279302481,5446.675930220018 -840,1048,1860,1858,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.53419170210346,8.418090447404976,0,6,-1,-189.5023630516428,0,1,2,2019,10,0,42,43,1,0,0,16.6684682492937,16.6684682492937,0,0,0,0,0,1,1,0,3.336070513608732,0,52.13,57.22,51.73,58.82,8.333333333333334,1,1,0,0,10,8,5,1,725.6666666666666,740474.2261278766,263664.4506043388,732118.2581123464,259834.6279302481,5446.675930220018 -841,1049,1861,1862,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,43,5,49.76510899764098,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.781120979101506,0,40.85,34.27,60.97,40.64,8.333333333333334,1,1,0,0,4,1,2,0,529.5,655739.664511306,383875.575322453,237268.6094259684,0,1487.992739961711 -841,1049,1862,1861,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.258500737954081,7.35473597383233,43,-5,-62.55868842074928,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.481788691189323,6.932394170490343,60.97,40.64,40.85,34.27,10,1,1,0,0,0,1,2,0,529.5,655739.664511306,383875.575322453,237268.6094259684,0,1487.992739961711 -842,1050,1863,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,0,0,-934.4030944813579,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.158229051021457,0,43.11,43.42,-9,-9,6.666666666666667,1,1,0,0,5,7,1,1,1306,122520.5572366792,0,0,0,613.6894179120695 -843,1051,1864,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.68956495482851,8.899358235607389,0,0,0,-930.7953799000762,0,2,3,2019,5,1,101,98,1,1,0,7.120027396288159,7.120027396288159,0,0,0,0,0,0,0,0,.8771674191141789,0,56.57,57.78,-9,-9,10,1,1,0,0,9,2,5,1,10716,57818.47819064742,-9969.486516147119,0,0,3005.492636594451 -844,1052,1865,-9,1867,1866,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.713003272554,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,373,-43719.32168493838,9501.088085192565,5493.127585113842,75699.82996045027,2271.400030252204 -844,1052,1866,1867,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.200440444023906,8.173687281955965,0,7,4,-89.58075832640181,0,-9,-9,2019,10,0,35,35,1,1,0,11.60583364253689,11.60583364253689,0,0,0,0,0,1,1,0,0,0,50,57,23.91,64.5,7,2,3,0,0,1,2,3,1,373,-43719.32168493838,9501.088085192565,5493.127585113842,75699.82996045027,2271.400030252204 -844,1052,1867,1866,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,10,-4,-85.57069360418997,0,3,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,3.567857361163946,0,23.91,64.5,50,57,1.666666666666667,2,3,0,0,4,2,3,1,373,-43719.32168493838,9501.088085192565,5493.127585113842,75699.82996045027,2271.400030252204 -844,1052,1868,-9,1867,1866,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.9509407590617,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,3,1,373,-43719.32168493838,9501.088085192565,5493.127585113842,75699.82996045027,2271.400030252204 -845,1053,1869,-9,1871,1870,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.3458151717026,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,12,4,1,1151.25,400240.8025217833,353722.0263730651,201599.225199376,173448.5429203878,3898.642897030174 -845,1053,1870,1871,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.12243189881338,8.445551955581243,0,6,-2,-25.96937026253137,0,3,3,2019,16,6,90,60,1,6,0,5.648697742437904,5.648697742437904,0,0,0,0,0,1,1,0,0,0,51.65,52.38,58.47,50.22,5,3,4,0,0,7,12,4,1,1151.25,400240.8025217833,353722.0263730651,201599.225199376,173448.5429203878,3898.642897030174 -845,1053,1871,1870,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.495239035512537,8.754761762911263,0,6,2,-17.74378902634476,0,2,2,2019,8,0,38,38,1,0,0,18.46584775763762,18.46584775763762,0,0,0,0,0,1,1,0,0,0,58.47,50.22,51.65,52.38,8.333333333333334,3,4,0,1,7,12,4,1,1151.25,400240.8025217833,353722.0263730651,201599.225199376,173448.5429203878,3898.642897030174 -845,1053,1872,-9,1871,1870,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.1330062484855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,12,4,1,1151.25,400240.8025217833,353722.0263730651,201599.225199376,173448.5429203878,3898.642897030174 -846,1054,1873,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.567890763098589,8.783909803571586,0,0,0,-915.1611525587211,0,2,2,2019,14,2,50,40,1,2,0,12.51112164840631,12.51112164840631,0,0,0,0,0,1,1,0,0,0,44.85,41.57,-9,-9,5,1,1,0,0,1,2,5,0,732,220913.9475295963,-21149.87225825122,0,0,2300.730302054688 -847,1055,1874,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-926.3568313231127,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,741,151668.1250644734,0,0,0,586.1048930311891 -848,1056,1875,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.630481460235254,5.812075407340475,0,0,-1132.055223893597,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.670970916454648,57.49,42.39,-9,-9,5,1,1,0,0,6,9,2,1,364,623250.6668744427,102062.8539129546,512800.6149027338,0,592.5418103660479 -849,1057,1876,1878,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,0,0,0,7,0,-163.7382219469941,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,9,13,3,1,1494.666666666667,248390.8302706933,81382.68703092143,193205.0495589016,107394.5506459909,1168.891756323151 -849,1057,1877,-9,1876,1878,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.4219894764742,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1494.666666666667,248390.8302706933,81382.68703092143,193205.0495589016,107394.5506459909,1168.891756323151 -849,1057,1878,1876,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.094206670456133,8.058027955125539,0,7,0,28.09138745028167,-9,2,2,2019,6,0,30,0,1,0,0,12.97936533467935,12.97936533467935,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,7,13,3,1,1494.666666666667,248390.8302706933,81382.68703092143,193205.0495589016,107394.5506459909,1168.891756323151 -850,1058,1879,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,8.130282568717417,7.99564209249107,0,0,0,-1020.872286455883,0,2,2,2019,23,8,42,38,1,8,0,6.46594706270923,6.46594706270923,0,0,0,0,0,1,1,0,0,0,35.5,38.04,-9,-9,0,1,1,0,0,6,9,3,1,339,74853.2792758147,100898.4362437523,0,0,1396.052914511812 -851,1059,1880,1881,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.664023710753847,9.613141196709993,0,3,2,-36.07253774260481,0,-9,-9,2019,16,4,84,80,1,4,0,22.23842133059865,22.23842133059865,0,0,0,0,0,0,0,0,6.185694843969387,0,55.12,39.4,60.12,54.8,5,1,1,0,0,13,12,5,1,375,1117833.207729184,415208.51926511,604434.6030922025,0,6614.509681191501 -851,1059,1881,1880,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,7.569601634886099,7.573409588018309,3,-2,-64.02237732866539,0,3,3,2019,9,0,0,38,4,0,0,0,0,0,0,0,1.701739019423693,0,0,0,0,0,7.710164456734359,60.12,54.8,55.12,39.4,8.333333333333334,1,1,0,0,11,12,5,1,375,1117833.207729184,415208.51926511,604434.6030922025,0,6614.509681191501 -851,1060,1882,-9,1881,1880,1,0,27,0,0,0,1,1,-9,0,3,7.837663620814912,7.904590781638824,0,0,0,-1000.484006822834,0,2,-9,2019,13,1,37,37,1,1,1,9.166438583964124,9.166438583964124,0,0,0,0,0,0,0,0,6.5802246299042,0,22.65,64.05,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,369,-157696.3407463122,-82556.10844047561,145551.0202924842,91863.3620431708,1802.565577089584 -852,1061,1883,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.044388288786113,7.99086183972393,0,0,0,-981.9581292273314,0,-9,-9,2019,13,1,38,38,1,1,0,8.611650661889652,8.611650661889652,0,0,0,0,0,0,0,0,0,0,37.85,56.63,-9,-9,6.666666666666667,4,2,0,0,6,1,4,1,1058,93028.34799251264,0,0,0,1048.856586525868 -853,1062,1884,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.81068823587636,5.490761844999345,0,0,-1100.568930097071,0,3,2,2019,17,4,0,0,4,4,0,0,0,1,3.666775050063429,0,20.65427609624203,0,1,1,0,0,5.600937751121156,49.68,16.59,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,322,441741.8547226393,194352.862401946,0,0,1757.416768181132 -854,1063,1885,-9,1888,1886,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-965.1073216043685,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,755,816748.4513717958,639585.1933020055,224657.3582056518,100610.5781667524,4767.242566251356 -854,1063,1886,1888,-9,-9,1,1,33,2,2,0,1,1,-9,0,3,9.065061343067219,9.00105679544026,0,7,1,-32.31464703046867,0,2,2,2019,8,1,40,40,1,1,0,30.69839261032303,30.69839261032303,0,0,0,0,0,1,1,0,3.864943293766672,0,52.25,53.24,51.83,57.2,10,1,1,0,0,8,12,5,1,755,816748.4513717958,639585.1933020055,224657.3582056518,100610.5781667524,4767.242566251356 -854,1063,1887,-9,1888,1886,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.303456406808,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,755,816748.4513717958,639585.1933020055,224657.3582056518,100610.5781667524,4767.242566251356 -854,1063,1888,1886,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.412215517383823,7.963383915437529,0,7,-1,101.0942871902775,0,-9,-9,2019,10,0,24,27,1,0,0,17.78072285250859,17.78072285250859,0,0,0,0,0,1,1,0,6.342832391515182,0,51.83,57.2,52.25,53.24,8.333333333333334,1,1,0,0,6,12,5,1,755,816748.4513717958,639585.1933020055,224657.3582056518,100610.5781667524,4767.242566251356 -855,1064,1889,1891,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.703189702446432,8.041721493938045,0,9,6,-14.59645000230775,0,-9,-9,2019,19,7,40,5,1,7,0,8.088871225841162,8.088871225841162,0,0,0,0,0,1,1,0,0,0,29.03,58.4,55.79,52.62,3.333333333333333,1,1,0,0,12,6,3,1,128.3333333333333,322567.6407192236,0,134290.6335024242,0,2520.919869170129 -855,1064,1890,-9,1891,1889,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.571524665949,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,6,3,1,128.3333333333333,322567.6407192236,0,134290.6335024242,0,2520.919869170129 -855,1064,1891,1889,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.398691411806446,7.092124442437388,0,9,-6,61.29356014375815,0,1,2,2019,10,0,23,15,1,0,0,6.860495068256712,6.860495068256712,0,0,0,0,0,1,1,0,0,0,55.79,52.62,29.03,58.4,6.666666666666667,4,2,0,0,12,6,3,1,128.3333333333333,322567.6407192236,0,134290.6335024242,0,2520.919869170129 -856,1065,1892,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.119558867257411,6.916130786909386,0,0,-876.0354093508123,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.745029736485908,7.023316723046604,36.48,37.64,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,466,385282.2460950267,307133.9293581338,0,0,1054.290300982826 -857,1066,1893,-9,1894,1896,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-944.6829060991232,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,743.5,276125.1924673038,-5378.213724511505,595772.1949507706,254880.9997528373,6493.957988049588 -857,1066,1894,1896,-9,-9,1,0,34,2,2,0,1,1,-9,0,5,8.838431929464562,8.82169673244751,0,5,0,-83.28278439911648,0,-9,-9,2019,11,1,38,38,1,1,0,15.02553008082817,15.02553008082817,0,0,0,0,0,0,0,0,0,0,43.44,61.22,43.54,59.6,8.333333333333334,1,1,0,0,8,10,5,1,743.5,276125.1924673038,-5378.213724511505,595772.1949507706,254880.9997528373,6493.957988049588 -857,1066,1895,-9,1894,1896,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-909.5769073952426,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,743.5,276125.1924673038,-5378.213724511505,595772.1949507706,254880.9997528373,6493.957988049588 -857,1066,1896,1894,-9,-9,1,1,34,2,2,0,1,1,-9,0,4,9.698160163564019,9.568483235271849,0,5,0,13.98086203755816,0,1,1,2019,10,2,45,40,1,2,0,36.5667983469322,36.5667983469322,0,0,0,0,0,0,0,0,0,0,43.54,59.6,43.44,61.22,6.666666666666667,4,2,0,0,11,10,5,1,743.5,276125.1924673038,-5378.213724511505,595772.1949507706,254880.9997528373,6493.957988049588 -858,1067,1897,1898,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.995153297307769,6.961830661686048,48,0,1.986938713006984,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.324930610631538,7.048709893204979,51.41,56.15,40.12,41.22,8.333333333333334,1,1,0,0,5,8,2,1,506.5,839077.3499271635,366975.050706269,373107.8098836774,0,1833.051646756254 -858,1067,1898,1897,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.770332304423787,5.790543081521498,48,0,-6.010106554104079,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.035791019080163,5.663663944769588,40.12,41.22,51.41,56.15,8.333333333333334,1,1,0,0,3,8,2,1,506.5,839077.3499271635,366975.050706269,373107.8098836774,0,1833.051646756254 -859,1068,1899,1900,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,0,0,18,5,-35.68221106941793,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.33,40.83,57.58,43.6,8.333333333333334,1,1,0,0,0,4,2,1,2212,760302.0915899258,301148.5233465536,384990.9933877265,0,795.8049531489387 -859,1068,1900,1899,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,5.262475918794779,7.092934443732219,7.167265145559515,16,-5,84.60255667073136,0,2,1,2019,8,0,70,60,1,0,0,.2605768186440815,.2605768186440815,0,0,0,0,0,1,1,0,0,7.25816017923426,57.58,43.6,50.33,40.83,6.666666666666667,1,1,0,0,9,4,2,1,2212,760302.0915899258,301148.5233465536,384990.9933877265,0,795.8049531489387 -859,1069,1901,-9,1899,1900,1,1,26,0,0,0,2,2,-9,0,3,7.403437885230405,7.800587889869663,5.375583340341067,0,0,-979.1990866572453,0,1,1,2019,6,1,80,0,1,1,1,2.957099342533767,2.957099342533767,0,0,0,0,0,1,1,0,5.825825068812194,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,719,-245201.1154632131,0,0,0,1136.219094553851 -860,1070,1902,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,4.190401723077518,4.581496881388675,0,0,-1005.701717565387,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,1.010337281522377,4.267349046828627,35.98,28.4,-9,-9,5,1,1,0,0,0,12,2,1,276,-95917.72000065396,0,0,0,534.0339318694755 -861,1071,1903,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1054.100433936189,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,5,1,1,1,0,3,11,1,0,175,25961.23201217893,-58432.32045261197,109985.1875295455,81798.98365516153,1431.996348649737 -862,1072,1904,-9,-9,-9,1,0,37,1,4,0,3,3,-9,0,3,6.067581246738465,6.211684869872751,0,0,0,-1005.839691954666,0,2,3,2019,26,11,12,0,1,11,0,4.617436293608336,4.617436293608336,0,0,0,0,14.5,1,1,0,0,0,22.15,49.28,-9,-9,5,1,1,0,0,2,13,2,0,1341.5,14337.97148344373,-18758.23444906593,0,0,1389.201644728267 -862,1072,1905,-9,1904,-9,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.833663274895,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,1341.5,14337.97148344373,-18758.23444906593,0,0,1389.201644728267 -862,1073,1906,-9,1904,-9,1,0,18,1,4,0,3,3,-9,0,3,0,0,0,0,0,-1013.557382276978,0,3,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,28.35,59,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,308.5,-36783.8666458842,0,0,0,454.1580175519441 -862,1073,1907,-9,1906,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-989.3882011905807,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,308.5,-36783.8666458842,0,0,0,454.1580175519441 -863,1074,1908,1909,-9,-9,1,1,84,0,0,0,1,1,-9,0,2,0,8.280976345029327,8.305242031970712,7,2,-21.47867608842689,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.926584068991685,8.220903459038047,41.95,37.91,44.79,55.04,3.333333333333333,1,1,0,0,0,6,3,1,206,587823.0050363706,0,358494.8441735159,0,2813.480233034707 -863,1074,1909,1908,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-14.28148715537019,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,15.06212344469001,0,136.3086470126153,0,1,1,0,3.222227617161848,0,44.79,55.04,41.95,37.91,5,1,1,0,0,0,6,3,1,206,587823.0050363706,0,358494.8441735159,0,2813.480233034707 -864,1075,1910,-9,1911,1912,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.866698274939,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,571.6666666666666,161771.4492352838,166721.0088017346,289463.8284708986,181452.24282753,2994.382162882877 -864,1075,1911,1912,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,8.135962363679154,7.673817081133448,0,14,2,18.65332420954238,0,2,2,2019,12,0,40,40,1,0,0,7.736408376094678,7.736408376094678,0,0,0,0,0,1,1,0,1.021095558527486,0,54.1,59.11,44.46,60.71,8.333333333333334,1,1,0,0,6,9,4,0,571.6666666666666,161771.4492352838,166721.0088017346,289463.8284708986,181452.24282753,2994.382162882877 -864,1075,1912,1911,-9,-9,1,1,35,0,1,0,3,3,-9,0,5,8.205412847339391,8.279764167145618,0,14,-2,15.44427187702371,0,2,2,2019,6,0,48,50,1,0,0,9.724681636152573,9.724681636152573,0,0,0,0,0,1,1,0,0,0,44.46,60.71,54.1,59.11,10,1,1,0,0,10,9,4,0,571.6666666666666,161771.4492352838,166721.0088017346,289463.8284708986,181452.24282753,2994.382162882877 -865,1076,1913,-9,1914,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.599912860701,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,464.5,250913.7371510269,179025.989738161,267697.9812236836,160055.7953598622,3372.41111095879 -865,1076,1914,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.744190060137772,8.677171605928095,4.459750016710511,0,0,-1135.200942830243,0,3,2,2019,7,0,40,50,1,0,0,14.39500025942787,14.39500025942787,0,0,0,0,2,1,1,0,7.617556150743589,0,50.59,16.2,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,464.5,250913.7371510269,179025.989738161,267697.9812236836,160055.7953598622,3372.41111095879 -865,1077,1915,-9,1914,-9,1,0,23,0,1,0,1,1,-9,0,4,8.207691203068455,8.237156837648627,0,0,0,-910.4368399373078,0,1,2,2019,9,0,45,40,1,0,1,7.322449117929147,7.322449117929147,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,835,-52276.34953961663,-16412.72357173957,0,0,1192.044118850742 -866,1078,1916,1917,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.837190522812062,8.419886137780274,0,8,1,6.70083789102765,0,3,3,2019,14,2,36,40,1,2,0,15.06389169935669,15.06389169935669,0,0,0,0,0,1,1,0,0,0,39.26,51.33,34.91,62.37,3.333333333333333,1,1,0,1,9,7,4,1,440.5,382711.3271891759,284597.0391591891,329494.6756806549,147508.0328762344,4816.61314118038 -866,1078,1917,1916,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.549447658209266,8.946733483982312,0,8,-1,-30.57072721761553,0,-9,-9,2019,22,9,35,40,1,9,0,21.01097780147245,21.01097780147245,0,0,0,0,0,1,1,0,0,0,34.91,62.37,39.26,51.33,1.666666666666667,1,1,0,0,10,7,4,1,440.5,382711.3271891759,284597.0391591891,329494.6756806549,147508.0328762344,4816.61314118038 -867,1079,1918,1920,-9,-9,1,1,34,1,2,0,2,2,-9,1,3,7.965680264839267,7.943933795750208,0,4,11,120.0072222727397,0,-9,-9,2019,16,4,40,36,1,4,0,8.33349988704324,8.33349988704324,0,0,0,0,0,1,1,0,0,0,40.04,45.19,52.43,55.57,3.333333333333333,1,1,0,1,4,10,3,0,523.3333333333334,347806.6341667067,239565.9553559533,315473.5204617058,140392.8658828194,1908.641977312155 -867,1079,1919,-9,1920,1918,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.332538490832,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,523.3333333333334,347806.6341667067,239565.9553559533,315473.5204617058,140392.8658828194,1908.641977312155 -867,1079,1920,1918,-9,-9,1,0,23,1,2,0,2,2,-9,1,4,0,0,0,4,-11,108.1280412712141,0,2,3,2019,13,1,0,23,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,40.04,45.19,5,1,1,1,0,6,10,3,0,523.3333333333334,347806.6341667067,239565.9553559533,315473.5204617058,140392.8658828194,1908.641977312155 -868,1080,1921,1922,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.759563226561408,8.251529545057078,0,5,2,4.482785508938424,0,3,3,2019,27,12,60,45,1,12,0,11.56801302826285,11.56801302826285,0,0,0,0,0,0,0,0,2.85463038099189,0,26.41,62.18,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,306,704120.6975312767,7271.574282950753,626984.6986017968,83284.81449758972,3229.811457106241 -868,1080,1922,1921,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.258876383715588,8.010321822951488,0,5,-2,116.5196266768622,0,-9,-9,2019,6,0,48,48,1,0,0,7.517643489986333,7.517643489986333,0,0,0,0,0,0,0,0,4.17264853733828,0,57.06,57.76,26.41,62.18,0,1,1,0,0,9,7,5,1,306,704120.6975312767,7271.574282950753,626984.6986017968,83284.81449758972,3229.811457106241 -869,1081,1923,1924,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,45,-2,-90.84231542784731,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,42.46,39.71,64.23,36.81,5,1,1,0,0,0,5,3,1,1262,1046148.46337867,509008.9348154279,397226.2463319834,0,1969.10691085255 -869,1081,1924,1923,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.192153718738673,8.047877311488866,45,2,-188.0069084801736,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,3.130902317351756,8.007743643544783,64.23,36.81,42.46,39.71,8.333333333333334,1,1,0,0,4,5,3,1,1262,1046148.46337867,509008.9348154279,397226.2463319834,0,1969.10691085255 -869,1082,1925,-9,1923,1924,1,0,34,0,0,0,2,2,-9,1,3,0,0,0,0,0,-935.5941066349034,0,3,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,172,-151790.7029081688,-47375.31654734711,0,0,820.310298980859 -870,1083,1926,-9,1929,1927,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-988.2578857793366,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.7,47.3,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,920.5,591221.5875579205,138688.6709175954,573858.6499780867,180269.1356224881,4511.792916678399 -870,1083,1927,1929,-9,-9,1,1,43,0,2,0,2,2,-9,1,3,8.454658640694737,8.587879871005956,0,20,0,-145.5101324400622,0,3,2,2019,7,0,39,39,1,0,0,12.64921602548127,12.64921602548127,0,0,0,0,0,1,1,0,4.21051246242615,0,61.28,46.17,44.88,29.61,8.333333333333334,1,1,0,0,9,8,4,1,920.5,591221.5875579205,138688.6709175954,573858.6499780867,180269.1356224881,4511.792916678399 -870,1083,1928,-9,1929,1927,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.94653012888,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,1,920.5,591221.5875579205,138688.6709175954,573858.6499780867,180269.1356224881,4511.792916678399 -870,1083,1929,1927,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.715427831710866,8.788363471174353,0,20,0,82.52126345094069,0,2,-9,2019,15,5,42,41,1,5,0,18.21612387967248,18.21612387967248,0,0,0,0,0,1,1,0,0,0,44.88,29.61,61.28,46.17,6.666666666666667,1,1,0,0,9,8,4,1,920.5,591221.5875579205,138688.6709175954,573858.6499780867,180269.1356224881,4511.792916678399 -871,1084,1930,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1038.143068557304,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.53,38.46,-9,-9,5,1,1,0,0,0,10,1,0,689,276081.2363088928,60017.80360540231,238753.377823326,116497.2503283954,1412.314502508932 -872,1085,1931,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,8.485225614932023,8.392998543376395,6.119652078306774,0,0,-953.4413777104393,0,2,2,2019,6,0,37,40,1,0,0,14.20392092312424,14.20392092312424,0,0,0,0,0,1,1,0,7.052650202559608,6.095771349040102,57.33,53.46,-9,-9,10,1,1,0,0,7,10,5,1,323,925415.098206784,489343.0467653768,276695.4913565818,0,3225.346303358908 -873,1086,1932,1933,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,0,0,58,5,80.95034856269456,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,56.5,48.33,56.31,34.1,5,1,1,0,0,10,9,4,1,585,935587.0990969003,471084.9660112385,448878.2187046232,0,4024.610006442884 -873,1086,1933,1932,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,8.457293648293843,8.256634651309026,58,-5,-63.37998712491559,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.515849406519381,8.578531375328735,56.31,34.1,56.5,48.33,8.333333333333334,1,1,0,0,6,9,4,1,585,935587.0990969003,471084.9660112385,448878.2187046232,0,4024.610006442884 -874,1087,1934,-9,1935,1937,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.1028030906759,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,728.2,3359.287312437059,0,210441.7881669981,172025.6420311345,1942.908391481846 -874,1087,1935,1937,-9,-9,1,0,37,0,3,0,3,3,-9,0,3,7.148077222336013,7.237186457280361,0,17,-19,-15.33788979048676,0,3,3,2019,9,4,26,22,1,4,0,6.149925286782365,6.149925286782365,0,0,0,0,0,1,1,0,0,0,45.29,49.34,49.72,24.99,8.333333333333334,2,3,0,1,2,8,2,0,728.2,3359.287312437059,0,210441.7881669981,172025.6420311345,1942.908391481846 -874,1087,1936,-9,1935,1937,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.67864064131,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,728.2,3359.287312437059,0,210441.7881669981,172025.6420311345,1942.908391481846 -874,1087,1937,1935,-9,-9,1,1,56,0,3,0,3,3,-9,1,1,0,0,0,17,19,30.68425763563048,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,49.72,24.99,45.29,49.34,6.666666666666667,2,3,0,1,5,8,2,0,728.2,3359.287312437059,0,210441.7881669981,172025.6420311345,1942.908391481846 -874,1087,1938,-9,1935,1937,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.1921337026597,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,728.2,3359.287312437059,0,210441.7881669981,172025.6420311345,1942.908391481846 -875,1088,1939,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.150913026872519,7.573379325297058,0,0,-966.5740046433618,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.402377529529656,7.353934306826632,55.2,41.97,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,686,1080356.42716376,183943.4467185739,456686.0030780107,0,938.1483497955804 -876,1089,1940,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.7497307461163,0,3,-9,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.27,34.51,-9,-9,5,1,1,0,0,0,10,2,0,766,127517.6292696545,0,146305.924617342,0,1194.06128235241 -877,1090,1941,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.909165857854492,7.788421436599106,0,0,0,-1014.703492742557,0,-9,-9,2019,3,0,43,40,1,0,0,7.391630206643134,7.391630206643134,0,0,0,0,0,0,0,0,1.523713287732858,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,6,11,3,0,162,39838.30982562474,137680.6506537824,0,0,1744.409370704941 -877,1091,1942,1943,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.042876419483369,8.398051896123217,0,2,4,-51.06600234962102,-9,-9,-9,2019,6,0,50,0,1,0,0,8.997290147875107,8.997290147875107,0,0,0,0,0,0,0,0,0,0,60.29,52.11,8.970000000000001,64.92,10,1,1,0,0,7,11,4,0,753,-52556.32692531123,56884.2665701884,0,0,2487.679027714344 -877,1091,1943,1942,1941,-9,1,0,22,0,0,0,2,2,-9,0,3,7.837818333525484,7.92224084514949,0,2,-4,-42.12654113353336,-9,2,2,2019,19,5,40,0,1,5,0,9.127621118579231,9.127621118579231,0,0,0,0,0,0,0,0,0,0,8.970000000000001,64.92,60.29,52.11,3.333333333333333,1,1,0,0,5,11,4,0,753,-52556.32692531123,56884.2665701884,0,0,2487.679027714344 -878,1092,1944,-9,1946,1947,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.3430169901852,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,864,809657.9648458282,563898.8501445674,208256.4662758776,129155.1536107649,4469.744488982509 -878,1092,1945,-9,1946,1947,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.2752350804005,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,864,809657.9648458282,563898.8501445674,208256.4662758776,129155.1536107649,4469.744488982509 -878,1092,1946,1947,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,6.959427393093812,6.695919061167181,0,14,0,36.37249019718567,0,2,2,2019,17,5,56,40,1,5,0,1.974105409116296,1.974105409116296,0,0,0,0,0,1,1,0,0,0,41.06,62.04,48.87,58.55,8.333333333333334,1,1,0,0,13,5,4,1,864,809657.9648458282,563898.8501445674,208256.4662758776,129155.1536107649,4469.744488982509 -878,1092,1947,1946,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.019547494652892,8.802970699012121,0,14,0,26.48371258412047,0,1,1,2019,10,1,85,70,1,1,0,10.91183049408699,10.91183049408699,0,0,0,0,0,1,1,0,6.989482516222888,0,48.87,58.55,41.06,62.04,8.333333333333334,1,1,0,0,10,5,4,1,864,809657.9648458282,563898.8501445674,208256.4662758776,129155.1536107649,4469.744488982509 -879,1093,1948,-9,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,0,0,-1098.788726515948,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.6,-9,-9,8.333333333333334,1,1,1,1,2,9,1,0,578.75,-66102.78099985269,0,0,0,1083.549790719178 -879,1093,1949,-9,1948,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-882.4770260523845,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,578.75,-66102.78099985269,0,0,0,1083.549790719178 -879,1093,1950,-9,1948,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.280114469079,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,578.75,-66102.78099985269,0,0,0,1083.549790719178 -879,1093,1951,-9,1948,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-972.9875142309048,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,578.75,-66102.78099985269,0,0,0,1083.549790719178 -880,1094,1952,1953,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.950763294496719,8.833382167604256,9,-1,54.78547635340878,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.419266527004965,8.932016271928433,60.05,45.35,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,1709,2140885.71860992,1208649.456988907,681170.6335669693,0,5783.549618561402 -880,1094,1953,1952,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,6.828233985702719,6.160330451110146,9,1,28.21282166023965,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.854615019621995,6.13700734103615,57.16,56.15,60.05,45.35,8.333333333333334,1,1,0,0,0,9,5,1,1709,2140885.71860992,1208649.456988907,681170.6335669693,0,5783.549618561402 -881,1095,1954,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,6.94964813724468,7.179041875339293,6.35467666687832,0,0,-1004.189107668912,0,-9,-9,2019,10,0,40,40,1,0,0,2.524781970100817,2.524781970100817,0,0,0,0,0,1,1,0,7.36630649191758,5.927934578568769,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,544,40746.11169650506,0,176549.8508020616,-2830.859953686368,2157.579430338665 -882,1096,1955,1956,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.73805300115787,6.669012190001945,49,-3,-98.75416936967368,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,6.910494377989123,6.339701945131291,45.72,53.17,64.07000000000001,47.52,5,1,1,0,0,0,5,2,1,267.5,606813.3592957988,277128.4240440577,241627.2163659548,0,2689.562396700356 -882,1096,1956,1955,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,5.883717018985694,5.618869143612872,49,3,.3385370656505414,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.490003094430644,6.030437287102131,64.07000000000001,47.52,45.72,53.17,8.333333333333334,1,1,0,0,11,5,2,1,267.5,606813.3592957988,277128.4240440577,241627.2163659548,0,2689.562396700356 -883,1097,1957,1958,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.736001361894095,8.935546766299932,0,27,1,-55.66116185027003,0,3,2,2019,8,0,54,51,1,0,0,12.29923219160225,12.29923219160225,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,5,1,1,0,0,13,2,5,1,213,548050.8570690021,307611.9918250208,186842.1867730425,10841.45092815299,2934.055852729807 -883,1097,1958,1957,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.517446953067426,8.033290358702974,0,27,-1,-37.33924354942428,0,2,2,2019,7,0,21,23,1,0,0,11.90876617156369,11.90876617156369,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,13,2,5,1,213,548050.8570690021,307611.9918250208,186842.1867730425,10841.45092815299,2934.055852729807 -883,1098,1959,-9,1958,1957,1,1,20,0,0,0,2,2,-9,0,5,7.791227944624642,7.911371461894856,0,0,0,-895.9447691868396,0,2,3,2019,6,0,42,20,1,0,1,8.119605041958195,8.119605041958195,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,132,-162900.4719979458,0,0,0,425.8804613859703 -883,1099,1960,-9,1958,1957,1,1,18,0,0,0,2,2,-9,0,5,6.605378289345905,6.773095785868671,0,0,0,-1020.245211271091,0,2,3,2019,6,0,19,0,1,0,1,4.828431110580135,4.828431110580135,0,0,0,0,0,1,1,0,0,0,55.37,44.89,-9,-9,10,1,1,0,0,1,2,2,1,1251,-180414.1519177196,0,0,0,799.0776747545779 -884,1100,1961,-9,1962,1964,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.055804692699,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,1341.75,-52673.02232534796,35287.98796926625,0,0,2117.076503016571 -884,1100,1962,1964,-9,-9,1,0,30,1,2,0,2,2,-9,1,2,0,0,0,2,-1,114.3482451796546,0,3,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,28.98,41.78,48.45,8.333333333333334,1,1,0,0,2,10,3,0,1341.75,-52673.02232534796,35287.98796926625,0,0,2117.076503016571 -884,1100,1963,-9,1962,1964,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.1346037877912,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1341.75,-52673.02232534796,35287.98796926625,0,0,2117.076503016571 -884,1100,1964,1962,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.319900813422594,8.306582491125933,0,2,1,138.6256092411977,-9,-9,-9,2019,11,2,45,0,1,2,0,13.63519202117658,13.63519202117658,0,0,0,0,2,1,1,0,0,0,41.78,48.45,58.3,28.98,8.333333333333334,1,1,0,0,4,10,3,0,1341.75,-52673.02232534796,35287.98796926625,0,0,2117.076503016571 -885,1101,1965,1966,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.609050502469394,8.550805574166754,0,26,0,63.75743452584381,0,2,2,2019,8,0,66,70,1,0,0,9.786262233830275,9.786262233830275,0,0,0,0,0,1,1,0,0,0,43.14,61.33,64.23,39.15,8.333333333333334,1,1,0,0,12,11,4,1,1126.5,345593.1049013618,221685.0490274045,165435.6994198787,0,3833.982030372955 -885,1101,1966,1965,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.983540565506791,6.597445949864523,27,9,11.59126699007083,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.964926411480568,64.23,39.15,43.14,61.33,8.333333333333334,1,1,0,0,10,11,4,1,1126.5,345593.1049013618,221685.0490274045,165435.6994198787,0,3833.982030372955 -886,1102,1967,-9,1969,1968,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.6194708604071,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1064.75,245818.6942871166,134985.4475332121,107178.1306890875,48546.83772525946,3290.274702615387 -886,1102,1968,1969,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.666197075397212,8.677268199825047,0,12,0,16.28343849650646,0,2,2,2019,6,0,52,56,1,0,0,12.57956302222925,12.57956302222925,0,0,0,0,0,1,1,0,5.118917725244542,0,61.1,41.19,48.87,58.55,10,1,1,0,0,9,12,4,1,1064.75,245818.6942871166,134985.4475332121,107178.1306890875,48546.83772525946,3290.274702615387 -886,1102,1969,1968,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.818727926689956,8.181424026854584,0,12,0,-47.81612418303398,0,3,3,2019,9,0,20,19,1,0,0,18.6691607745491,18.6691607745491,0,0,0,0,0,1,1,0,4.443992113223929,0,48.87,58.55,61.1,41.19,8.333333333333334,1,1,0,0,9,12,4,1,1064.75,245818.6942871166,134985.4475332121,107178.1306890875,48546.83772525946,3290.274702615387 -886,1102,1970,-9,1969,1968,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.556910289663,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1064.75,245818.6942871166,134985.4475332121,107178.1306890875,48546.83772525946,3290.274702615387 -887,1103,1971,-9,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,6.531539618215617,6.679365130660445,0,0,0,-749.1887142508484,0,-9,-9,2019,11,1,16,20,1,1,0,5.774013291569164,5.774013291569164,0,0,0,0,0,1,1,0,0,0,44.72,47.99,-9,-9,5,1,1,0,1,1,9,2,0,408,99112.24256620684,16990.26315168658,205138.3995392378,42793.63763851194,1451.794464254023 -888,1104,1972,1973,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.264985613688012,8.663710258110225,0,5,0,11.80084913849366,0,1,1,2019,12,0,52,48,1,0,0,11.95897238207575,11.95897238207575,0,0,0,0,0,1,1,0,0,0,40.13,62.93,48,56,6.666666666666667,1,1,0,0,6,5,5,0,344,-88121.96639469286,20529.37150525858,0,0,4049.988634985258 -888,1104,1973,1972,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.227141100437999,8.052209611101221,0,5,0,83.10964681981581,-9,-9,-9,2019,11,0,35,0,1,2,0,12.72834105146999,12.72834105146999,0,0,0,0,0,1,1,0,0,0,48,56,40.13,62.93,7,4,1,0,0,1,5,5,0,344,-88121.96639469286,20529.37150525858,0,0,4049.988634985258 -889,1105,1974,-9,1976,1977,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.459563561575,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,3,1,433.75,1283296.652080477,1115436.963106044,301415.6593439527,106074.8067371396,1954.944320305925 -889,1105,1975,-9,1976,1977,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.2411778809661,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,433.75,1283296.652080477,1115436.963106044,301415.6593439527,106074.8067371396,1954.944320305925 -889,1105,1976,1977,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.166294364633795,7.441862513071938,0,10,-8,34.99298894103412,0,2,2,2019,8,0,10,10,1,0,0,12.64489035718962,12.64489035718962,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.33,53.71,8.333333333333334,1,1,0,0,11,10,3,1,433.75,1283296.652080477,1115436.963106044,301415.6593439527,106074.8067371396,1954.944320305925 -889,1105,1977,1976,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,0,7.792522433421637,7.852115407487331,10,8,73.79116476096738,0,-9,-9,2019,12,1,0,44,3,1,0,0,0,0,0,0,0,0,1,1,0,2.533616728071488,7.945532955271903,53.33,53.71,57.16,56.15,6.666666666666667,1,1,1,0,7,10,3,1,433.75,1283296.652080477,1115436.963106044,301415.6593439527,106074.8067371396,1954.944320305925 -890,1106,1978,1979,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.626051580587719,7.689299417319666,0,7,-3,78.58480332920311,0,2,2,2019,7,0,34,28,1,0,0,7.013562494983337,7.013562494983337,0,0,0,0,0,1,1,0,2.360691043397093,0,57.06,57.76,49.35,59.64,8.333333333333334,1,1,0,0,8,12,4,1,1321.25,173847.1546903013,23124.80036636828,183790.0165160584,137200.4012405197,3206.262629316037 -890,1106,1979,1978,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.289028268696255,8.36959372689833,0,7,3,67.93752646026188,0,3,3,2019,11,0,44,44,1,0,0,13.19365715168898,13.19365715168898,0,0,0,0,2,1,1,0,2.310643506558608,0,49.35,59.64,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,1321.25,173847.1546903013,23124.80036636828,183790.0165160584,137200.4012405197,3206.262629316037 -890,1106,1980,-9,1978,1979,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.102597097913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,1321.25,173847.1546903013,23124.80036636828,183790.0165160584,137200.4012405197,3206.262629316037 -890,1106,1981,-9,1978,1979,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.4016483468034,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1321.25,173847.1546903013,23124.80036636828,183790.0165160584,137200.4012405197,3206.262629316037 -891,1107,1982,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.323626542539103,8.42709278885936,0,0,0,-926.2144958670608,0,2,2,2019,7,0,37,42,1,0,0,11.96812329785889,11.96812329785889,0,0,0,0,0,1,1,0,3.065409610663715,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,684,-92182.36766702939,22696.47759029079,143731.646660918,138032.2144695923,1171.962769133259 -892,1108,1983,-9,1984,1986,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-898.2498442285107,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,2,0,624.5,89616.28457769391,0,0,0,2309.601215726966 -892,1108,1984,1986,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,3,-3,21.68757153833806,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.57,49.69,10,1,1,0,0,0,9,2,0,624.5,89616.28457769391,0,0,0,2309.601215726966 -892,1108,1985,-9,1984,1986,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.8458452684746,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,624.5,89616.28457769391,0,0,0,2309.601215726966 -892,1108,1986,1984,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,7.75397155968537,7.655714717738345,0,3,3,43.94780364426271,0,3,3,2019,8,0,39,47,1,0,0,6.618013185288991,6.618013185288991,0,0,0,0,0,1,1,0,0,0,57.57,49.69,48.87,58.55,8.333333333333334,1,1,0,0,5,9,2,0,624.5,89616.28457769391,0,0,0,2309.601215726966 -893,1109,1987,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.996480980735604,8.041615059249473,0,0,0,-1090.8061783504,0,2,2,2019,10,0,39,39,1,0,0,10.47665015326633,10.47665015326633,0,0,0,0,0,0,0,0,0,0,55.76,28.7,-9,-9,5,1,1,0,0,10,5,4,1,414,573281.4533895006,600074.8355624318,147183.4039257062,112337.1699781846,1358.897864108242 -893,1110,1988,-9,1987,-9,1,0,34,0,0,0,1,1,-9,0,2,7.723696294208931,7.766006827668824,0,0,0,-987.9913993152104,0,2,3,2019,15,5,42,40,1,5,1,7.771263167678328,7.771263167678328,0,0,0,0,0,0,0,0,2.441971262175776,0,32.08,42.35,-9,-9,3.333333333333333,1,1,0,0,10,5,4,1,483,40817.96055767794,-55790.92651526928,89159.15435854244,50192.24018760467,1284.522488713749 -894,1111,1989,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.7157599145023,0,2,2,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.92,29.16,-9,-9,6.666666666666667,4,5,0,1,0,5,1,1,1113,-84644.49635690267,0,0,0,552.124028264146 -895,1112,1990,-9,1992,1993,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-982.1533446038246,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,4,1,1605,1968889.351217358,885386.7160205708,550354.7985756915,0,3856.915962080153 -895,1112,1991,-9,1992,1993,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1232.550748871516,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,9,4,1,1605,1968889.351217358,885386.7160205708,550354.7985756915,0,3856.915962080153 -895,1112,1992,1993,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.768921962421203,8.978890562953081,0,15,-8,144.4131929314948,0,2,2,2019,11,2,53,70,1,2,0,11.93848112121647,11.93848112121647,0,0,0,0,0,1,1,0,1.245246570638477,0,51.14,60.45,58.47,44.69,8.333333333333334,1,1,0,0,8,9,4,1,1605,1968889.351217358,885386.7160205708,550354.7985756915,0,3856.915962080153 -895,1112,1993,1992,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.270074613732275,8.337174137100996,0,15,8,-134.5335523614354,0,2,2,2019,7,0,37,37,1,0,0,11.52954059719448,11.52954059719448,0,0,0,0,0,1,1,0,0,0,58.47,44.69,51.14,60.45,8.333333333333334,1,1,0,0,5,9,4,1,1605,1968889.351217358,885386.7160205708,550354.7985756915,0,3856.915962080153 -896,1113,1994,1997,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.155251310831148,7.07086232768952,0,10,0,-13.89459738241259,0,2,3,2019,8,0,18,18,1,0,0,7.015275521557245,7.015275521557245,0,0,0,0,0,1,1,0,6.197642284483618,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,9,4,4,0,1792.25,461270.1653508593,439358.1782851685,230257.5947028625,80543.33868927804,3634.638970192506 -896,1113,1995,-9,1994,1997,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.7837497731061,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,1792.25,461270.1653508593,439358.1782851685,230257.5947028625,80543.33868927804,3634.638970192506 -896,1113,1996,-9,1994,1997,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.084810026215,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,1792.25,461270.1653508593,439358.1782851685,230257.5947028625,80543.33868927804,3634.638970192506 -896,1113,1997,1994,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.712440771094473,8.993488101836814,0,10,0,3.796425254477719,-9,3,2,2019,9,0,40,0,1,1,0,17.19221865540144,17.19221865540144,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,7,1,1,0,0,1,4,4,0,1792.25,461270.1653508593,439358.1782851685,230257.5947028625,80543.33868927804,3634.638970192506 -897,1114,1998,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,5.791425878510765,5.847332986294352,0,0,-1057.964689905536,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.681775876460014,5.867218288134841,50.24,46.94,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,171,202203.7079946077,6369.365856303717,153304.9013046581,0,864.3090088043241 -898,1115,1999,2000,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,8.560541159140424,8.673397274207478,0,6,0,-62.51818027226052,0,-9,-9,2019,7,1,30,30,1,1,0,21.18130779434566,21.18130779434566,0,0,0,0,0,1,1,0,0,0,49.12,57.28,51.83,57.2,10,1,1,0,0,7,11,5,1,1224.6,542456.0828043071,307385.6789846502,391814.2870681267,140564.8671951237,4436.22068032155 -898,1115,2000,1999,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,8.633192586503249,8.424026214381525,0,6,0,83.70353849616046,0,1,1,2019,8,1,55,50,1,1,0,13.52437851490845,13.52437851490845,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.12,57.28,8.333333333333334,1,1,0,0,7,11,5,1,1224.6,542456.0828043071,307385.6789846502,391814.2870681267,140564.8671951237,4436.22068032155 -898,1115,2001,-9,1999,2000,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-856.7400222668425,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1224.6,542456.0828043071,307385.6789846502,391814.2870681267,140564.8671951237,4436.22068032155 -898,1115,2002,-9,1999,2000,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1190.241704371266,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1224.6,542456.0828043071,307385.6789846502,391814.2870681267,140564.8671951237,4436.22068032155 -898,1115,2003,-9,1999,2000,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-889.3246650744532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1224.6,542456.0828043071,307385.6789846502,391814.2870681267,140564.8671951237,4436.22068032155 -899,1116,2004,-9,-9,-9,1,0,38,0,0,0,3,3,-9,0,3,8.612191887297078,8.801784561486841,0,0,0,-932.4035246711993,0,2,-9,2019,9,2,49,45,1,2,0,15.5576357886908,15.5576357886908,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,6.666666666666667,3,4,0,0,13,8,5,0,241,-58426.0510954928,-122567.8589295043,0,0,2751.031752088481 -899,1117,2005,-9,2004,-9,1,0,24,0,0,0,1,1,-9,0,3,8.347850895137125,8.436241621580953,0,0,0,-955.0989113581822,-9,3,-9,2019,12,1,45,0,1,1,0,8.969385253397979,8.969385253397979,0,0,0,0,0,0,0,0,0,0,50.01,52.64,-9,-9,5,3,4,0,0,4,8,4,0,575,-46946.94784939706,0,0,0,1467.277096358784 -900,1118,2006,2007,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.58006610441008,7.850629300305549,0,38,1,-61.85868206100559,0,3,3,2019,12,0,30,0,1,0,0,10.27759155896681,10.27759155896681,0,0,0,0,0,0,0,0,0,0,47.54,52.36,48.93,52.46,3.333333333333333,1,1,0,1,9,6,3,0,276,569140.7013268243,59246.08955526035,252493.2078438568,0,1921.225828754442 -900,1118,2007,2006,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.11554266937262,6.95870806894763,0,9,-1,-4.205490959693824,0,-9,-9,2019,13,1,10,10,1,1,0,12.4060947700878,12.4060947700878,0,0,0,0,0,0,0,0,0,0,48.93,52.46,47.54,52.36,6.666666666666667,1,1,0,1,10,6,3,0,276,569140.7013268243,59246.08955526035,252493.2078438568,0,1921.225828754442 -901,1119,2008,2011,-9,-9,1,1,38,1,3,0,1,1,-9,0,3,8.821131820586697,8.770144102254021,0,13,5,-19.54237354966369,0,3,1,2019,11,1,38,38,1,1,0,16.18079559523242,16.18079559523242,0,0,0,0,0,1,1,0,0,0,36.18,48.3,40.88,49.19,6.666666666666667,2,3,0,1,10,7,3,0,845.8,1625935.961012313,302942.8888502929,997790.5746288974,249665.9545258818,2745.776789601655 -901,1119,2009,-9,2011,2008,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.0231609111833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,7,3,0,845.8,1625935.961012313,302942.8888502929,997790.5746288974,249665.9545258818,2745.776789601655 -901,1119,2010,-9,2011,2008,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-876.342206882705,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,0,845.8,1625935.961012313,302942.8888502929,997790.5746288974,249665.9545258818,2745.776789601655 -901,1119,2011,2008,-9,-9,1,0,33,1,3,0,1,1,-9,0,2,0,0,0,13,-5,-42.25877628932871,0,2,1,2019,13,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,49.19,36.18,48.3,6.666666666666667,2,3,1,1,7,7,3,0,845.8,1625935.961012313,302942.8888502929,997790.5746288974,249665.9545258818,2745.776789601655 -901,1119,2012,-9,2011,2008,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-841.3266593972237,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,7,3,0,845.8,1625935.961012313,302942.8888502929,997790.5746288974,249665.9545258818,2745.776789601655 -902,1120,2013,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,5,0,0,0,0,0,-880.636048962201,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.86,56.91,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,261,160810.617677602,0,123435.6692535933,72980.86057710226,1090.659394373023 -903,1121,2014,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.27256073980982,5.44256421278429,0,0,-898.7025265828813,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.709565654664169,5.809790323077329,55,45,-9,-9,8,1,1,0,0,0,2,2,1,677,340164.2017114377,73930.42126440947,182760.5194356638,0,143.4351800868911 -904,1122,2015,2016,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.19111848925227,8.402831106984035,0,31,7,-7.270296196907399,0,3,-9,2019,6,0,40,40,1,0,0,9.428044354805319,9.428044354805319,0,0,0,0,86,1,1,0,0,0,56.81,41.38,48,49,6.666666666666667,4,2,0,0,9,8,4,0,515.5,912220.9094605594,211369.9656889574,326598.6004483224,0,3908.741671711463 -904,1122,2016,2015,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.84265891839383,6.904539137639142,0,31,-7,75.65937220200567,0,2,-9,2019,12,0,16,0,1,2,0,7.463521668905133,7.463521668905133,0,0,0,0,110,1,1,0,0,0,48,49,56.81,41.38,7,3,4,0,0,11,8,4,0,515.5,912220.9094605594,211369.9656889574,326598.6004483224,0,3908.741671711463 -904,1123,2017,-9,2016,2015,1,0,22,0,0,1,3,0,0,1,4,0,0,0,0,0,-957.1439990654571,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,0,389,-132754.1179976897,-33682.24442612892,0,0,224.9793341810579 -904,1124,2018,-9,2016,2015,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1005.721112799797,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.41,45.74,-9,-9,10,3,4,0,0,0,8,1,0,191,0,0,0,0,769.0891572609071 -904,1125,2019,-9,2016,2015,1,1,19,0,0,1,3,0,0,1,4,0,0,0,0,0,-1045.560949880188,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,238,276621.4322549336,0,0,0,1028.629503741186 -905,1126,2020,-9,2022,2023,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-948.0752631929068,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,5,1,434.5,504350.9670917757,485240.6900954483,139054.5287978795,91999.34881766915,3620.121253847232 -905,1126,2021,-9,2022,2023,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.663004184219,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,434.5,504350.9670917757,485240.6900954483,139054.5287978795,91999.34881766915,3620.121253847232 -905,1126,2022,2023,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.701921911493273,7.652871486957894,0,19,-1,57.81326475153045,0,2,-9,2019,8,0,23,26,1,0,0,12.17315995592669,12.17315995592669,0,0,0,0,0,1,1,0,0,0,59.14,52.5,57.33,53.46,8.333333333333334,1,1,0,0,12,4,5,1,434.5,504350.9670917757,485240.6900954483,139054.5287978795,91999.34881766915,3620.121253847232 -905,1126,2023,2022,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.039521039527886,8.990574983503672,0,10,1,-121.8091030894188,0,-9,-9,2019,6,0,50,55,1,0,0,20.06097685389113,20.06097685389113,0,0,0,0,0,1,1,0,4.819627047689757,0,57.33,53.46,59.14,52.5,8.333333333333334,1,1,0,0,12,4,5,1,434.5,504350.9670917757,485240.6900954483,139054.5287978795,91999.34881766915,3620.121253847232 -906,1127,2024,2025,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,7.787408511194717,7.83449903288566,3.933784998432912,34,-7,19.20617551465057,0,2,3,2019,5,0,27,37,1,0,0,10.25950612523682,10.25950612523682,0,0,0,0,0,1,1,0,6.104109772349761,4.38806266713399,62.25,45.63,54.96,53.17,8.333333333333334,1,1,0,0,8,9,5,0,1674,3693271.649383524,1057462.491512747,962648.8245445949,0,6649.175214186762 -906,1127,2025,2024,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,9.234481516337301,8.925141842031749,7.428686861986404,34,7,-34.01072675801773,0,3,3,2019,6,0,35,37,1,0,0,28.04270234839563,28.04270234839563,0,0,0,0,0,1,1,0,1.322353158876648,7.131611438186829,54.96,53.17,62.25,45.63,8.333333333333334,1,1,0,0,8,9,5,0,1674,3693271.649383524,1057462.491512747,962648.8245445949,0,6649.175214186762 -907,1128,2026,2027,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.283626289635523,9.725972188732156,8.028451378106562,3,0,-5.862015804942554,0,-9,2,2019,19,8,60,60,1,8,0,19.40591888295594,19.40591888295594,0,0,0,0,2,1,1,0,2.870273285555288,8.030591073385656,27.28,65.96000000000001,45.78,51.81,3.333333333333333,1,1,0,0,9,9,5,1,2168.5,1969974.181908241,1067359.248099032,468548.9478773047,0,5513.715081777324 -907,1128,2027,2026,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,5.778494823975843,6.718264129346697,6.532867384190371,3,0,-85.56551940363967,0,2,1,2019,13,2,4,4,1,2,0,9.748598444581816,9.748598444581816,0,0,0,0,2,1,1,0,5.735471898719537,0,45.78,51.81,27.28,65.96000000000001,6.666666666666667,1,1,0,0,3,9,5,1,2168.5,1969974.181908241,1067359.248099032,468548.9478773047,0,5513.715081777324 -908,1129,2028,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1008.350075150038,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,25.29,-9,-9,5,1,1,0,0,0,8,1,0,524,249205.5365196984,0,349166.4034111025,0,361.3344622751206 -909,1130,2029,-9,2030,2031,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.002374965261,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,831.3333333333334,57916.0986437476,13808.48942455606,183397.4033186067,89008.3328978143,3791.792594980339 -909,1130,2030,2031,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.658545522324797,8.777243599777083,6.912797237375663,5,1,10.53216442209247,0,1,1,2019,8,0,48,22,1,0,0,15.83343981545904,15.83343981545904,0,0,0,0,0,1,1,0,0,7.603006610644145,48.87,58.55,38.43,56.45,8.333333333333334,1,1,0,0,10,2,5,1,831.3333333333334,57916.0986437476,13808.48942455606,183397.4033186067,89008.3328978143,3791.792594980339 -909,1130,2031,2030,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.999860738369121,8.187764069004878,0,5,-1,-133.3360971596562,-9,-9,-9,2019,12,0,42,0,1,0,0,7.099083247155536,7.099083247155536,0,0,0,0,0,1,1,0,0,0,38.43,56.45,48.87,58.55,8.333333333333334,1,1,0,0,5,2,5,1,831.3333333333334,57916.0986437476,13808.48942455606,183397.4033186067,89008.3328978143,3791.792594980339 -910,1131,2032,2033,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.711066180216599,7.782458598297382,8,-3,-29.34249900981677,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.62023878074701,47.97,48.24,60.11,39.83,8.333333333333334,1,1,0,0,1,4,4,1,929,969575.3869471328,479859.1245259925,324542.7487635793,0,2128.07235319163 -910,1131,2033,2032,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.923560719295143,8.435735427544396,0,8,3,88.60111306622987,0,3,3,2019,6,0,38,38,1,0,0,9.284515207937226,9.284515207937226,0,0,0,0,0,0,0,0,0,0,60.11,39.83,47.97,48.24,6.666666666666667,1,1,0,0,9,4,4,1,929,969575.3869471328,479859.1245259925,324542.7487635793,0,2128.07235319163 -910,1132,2034,-9,2032,2033,1,1,22,0,0,0,2,2,-9,0,4,7.976998523618082,7.903757206273251,0,0,0,-1124.80789528389,0,2,2,2019,7,0,45,44,1,0,1,6.316986243609524,6.316986243609524,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,132,49110.84667644938,0,0,0,809.161123751777 -910,1133,2035,-9,2032,2033,1,0,19,0,0,0,2,2,-9,0,2,8.065793157382169,7.841778807356029,0,0,0,-922.5521469240759,0,2,2,2019,15,3,25,20,1,3,1,16.57735437832282,16.57735437832282,0,0,0,0,0,0,0,0,0,0,37.87,42.28,-9,-9,6.666666666666667,1,1,0,0,2,4,4,1,1096,31008.79105663321,0,0,0,1564.725460990278 -911,1134,2036,2037,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.321614448003871,5.38348939379907,54,0,-64.83342852926992,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.708514004243885,5.270803026896658,57.16,56.15,50.51,52.44,1.666666666666667,1,1,0,0,8,4,2,1,3689.5,114289.3145277555,108256.8968118358,0,0,2021.533197856455 -911,1134,2037,2036,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,6.555435602006362,7.286562602409734,6.380868617296658,54,0,-75.76046755856795,0,3,3,2019,7,0,20,20,1,0,0,3.821078871023999,3.821078871023999,0,0,0,0,0,1,1,0,4.023855490417884,6.751988206348264,50.51,52.44,57.16,56.15,8.333333333333334,1,1,0,0,11,4,2,1,3689.5,114289.3145277555,108256.8968118358,0,0,2021.533197856455 -912,1135,2038,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.324632268460214,5.642106255371024,0,0,-1004.296812595631,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.744208414732535,36.92,51.87,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,755,-70313.92432528944,216932.1183071763,57314.51081666369,40258.7731878203,812.4072139284061 -913,1136,2039,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.465478399914376,8.370302053812189,0,0,0,-954.6680383545928,0,2,2,2019,13,3,37,37,1,3,0,11.09014739203995,11.09014739203995,0,0,0,0,0,1,1,0,3.955300966636966,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,114,-47195.62487845306,-75598.98799163914,0,0,1611.527842868674 -914,1137,2040,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1025.854438629144,0,2,2,2019,32,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,22.77,39.85,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,351,104841.5266378427,0,0,0,843.6528160110431 -915,1138,2041,2043,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,7.970053048615566,7.427613153783382,0,9,7,-71.15575373525637,0,3,3,2019,13,1,12,16,1,1,0,25.02562730221901,25.02562730221901,0,0,0,0,14.5,1,1,0,0,0,40.48,60.05,52.5,51.97,5,2,3,0,0,12,9,5,1,557.25,518776.502168679,142886.845272238,472628.3328189699,52042.85859338021,3588.149167053105 -915,1138,2042,-9,2041,2043,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.26385235859,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,557.25,518776.502168679,142886.845272238,472628.3328189699,52042.85859338021,3588.149167053105 -915,1138,2043,2041,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.605183884651563,8.608153087031848,0,9,-7,-47.57139163268955,0,-9,-9,2019,6,0,50,40,1,0,0,13.22223736115615,13.22223736115615,0,0,0,0,0,1,1,0,0,0,52.5,51.97,40.48,60.05,3.333333333333333,2,3,0,0,13,9,5,1,557.25,518776.502168679,142886.845272238,472628.3328189699,52042.85859338021,3588.149167053105 -915,1138,2044,-9,2041,2043,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1039.252648502875,-9,3,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,61.75,-9,-9,6.666666666666667,2,3,0,0,0,9,5,1,557.25,518776.502168679,142886.845272238,472628.3328189699,52042.85859338021,3588.149167053105 -915,1139,2045,-9,2041,2043,1,1,21,0,1,0,2,2,-9,0,3,7.944703735756763,7.907440507417291,0,0,0,-1161.726861821379,0,3,1,2019,6,0,50,41,1,0,1,7.017009572087789,7.017009572087789,0,0,0,0,2,1,1,0,0,0,38.78,52.41,-9,-9,8.333333333333334,2,3,0,0,5,9,4,1,449,-101016.2522173179,77603.91074271228,0,0,1300.900637968793 -916,1140,2046,2047,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,7.904690581142298,8.195668491391601,0,5,-5,-37.87013289829666,0,-9,-9,2019,9,0,37,20,1,0,0,10.24414044622307,10.24414044622307,0,0,0,0,0,0,0,0,0,0,48.71,61.53,60.02,56.42,8.333333333333334,1,1,0,0,8,12,3,0,740,24840.89794798692,0,0,0,1533.149321842978 -916,1140,2047,2046,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,6.22696493595947,6.273212119828,0,5,5,-23.07066434743833,0,-9,-9,2019,9,1,11,8,1,1,0,4.879503254490997,4.879503254490997,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.71,61.53,8.333333333333334,1,1,0,0,6,12,3,0,740,24840.89794798692,0,0,0,1533.149321842978 -917,1141,2048,2049,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.880436589696345,9.087329669407845,0,33,3,-122.8527651973038,0,2,3,2019,7,0,50,55,1,0,0,20.20501290476103,20.20501290476103,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,53,6.666666666666667,1,1,0,0,7,12,5,1,675.5,645988.9751626542,237102.7806925339,354811.4055098422,193733.6117572697,3748.177473702969 -917,1141,2049,2048,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.50709109359892,7.106354027864314,0,33,-3,52.00863140558435,0,3,3,2019,10,0,10,16,1,1,0,20.03777812049198,20.03777812049198,0,0,0,0,0,0,0,0,3.066434589141104,0,52,53,57.06,57.76,8,1,1,0,0,1,12,5,1,675.5,645988.9751626542,237102.7806925339,354811.4055098422,193733.6117572697,3748.177473702969 -918,1142,2050,2051,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,46,0,-80.97336487605864,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.011728792977728,0,57.54,42.36,55.53,51.55,10,1,1,0,0,0,5,2,1,706.5,361779.4373426135,-20242.8793436919,166998.5032269452,0,1550.37751927558 -918,1142,2051,2050,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.871210043049472,6.675199283234744,46,0,-53.50631443764453,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.58229908032128,6.76055989616304,55.53,51.55,57.54,42.36,8.333333333333334,1,1,0,0,0,5,2,1,706.5,361779.4373426135,-20242.8793436919,166998.5032269452,0,1550.37751927558 -919,1143,2052,2053,-9,-9,1,1,40,1,3,0,2,2,-9,0,4,9.096522748381386,8.857563946928588,0,2,13,21.60656268648928,0,2,2,2019,9,0,48,41,1,0,0,19.35284769678574,19.35284769678574,0,0,0,0,0,1,1,0,0,0,52.82,53.97,44.69,33.87,6.666666666666667,1,1,0,0,4,2,4,0,549.2,166179.4440851113,46067.47589387725,217989.222980327,48972.85831413855,4425.698599950233 -919,1143,2053,2052,-9,-9,1,0,27,1,3,0,3,3,-9,0,2,0,0,0,2,-13,-6.012387177642722,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.69,33.87,52.82,53.97,5,1,1,0,0,0,2,4,0,549.2,166179.4440851113,46067.47589387725,217989.222980327,48972.85831413855,4425.698599950233 -919,1143,2054,-9,2053,2052,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-897.2074684826534,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,549.2,166179.4440851113,46067.47589387725,217989.222980327,48972.85831413855,4425.698599950233 -919,1143,2055,-9,2053,2052,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.763719807902,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,549.2,166179.4440851113,46067.47589387725,217989.222980327,48972.85831413855,4425.698599950233 -919,1143,2056,-9,2053,2052,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.382525020166,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,549.2,166179.4440851113,46067.47589387725,217989.222980327,48972.85831413855,4425.698599950233 -920,1144,2057,2058,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.973831237976026,5.245896270226586,6,-15,-15.04875440534916,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.289082038433908,6.091574353136814,57.16,56.15,52,45,8.333333333333334,1,1,0,0,5,9,2,1,583.5,2658689.443750692,0,2922313.010305927,604041.0079725329,1814.712072711563 -920,1144,2058,2057,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.675001632585023,5.417896684497295,6,15,-95.84100070772755,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,6.748655277551565,5.716297511393911,69.75137480713418,0,1,1,0,0,5.695940705010736,52,45,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,583.5,2658689.443750692,0,2922313.010305927,604041.0079725329,1814.712072711563 -921,1145,2059,2060,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,5.510089839704903,5.254130479945062,0,4,0,104.4193170947923,0,3,3,2019,8,0,7,13,1,0,0,3.685558124233313,3.685558124233313,0,0,0,0,0,0,0,0,0,0,46.08,57.2,41.41,59.45,6.666666666666667,1,1,0,0,12,12,5,1,1071.5,1287126.042965247,1113430.47993382,202735.7490759756,0,2579.51687070897 -921,1145,2060,2059,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.803464274858108,9.104802961810318,6.764659770589859,4,0,82.91097247129764,0,-9,-9,2019,16,4,36,43,1,4,0,20.3351207397044,20.3351207397044,0,0,0,0,0,0,0,0,0,6.620287595236534,41.41,59.45,46.08,57.2,8.333333333333334,1,1,0,0,12,12,5,1,1071.5,1287126.042965247,1113430.47993382,202735.7490759756,0,2579.51687070897 -922,1146,2061,2062,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.889715398406173,6.062883633894509,56,-1,-43.40316825888551,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.268812107329854,46.18,50.19,57.33,53.46,8.333333333333334,1,1,0,0,4,10,2,1,641.5,395285.0216043718,219169.2981232001,168387.4180629774,0,1261.443199247508 -922,1146,2062,2061,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,9,1,-61.20303178268341,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,0,2,1,1,0,2.255346364176959,0,57.33,53.46,46.18,50.19,8.333333333333334,1,1,0,0,11,10,2,1,641.5,395285.0216043718,219169.2981232001,168387.4180629774,0,1261.443199247508 -923,1147,2063,-9,2064,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-912.9435617048929,-9,3,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.79,62.62,-9,-9,5,2,3,0,0,0,2,1,0,301,-70274.94467348687,0,0,0,1244.071341494972 -923,1147,2064,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1062.959338053791,0,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.42,27.51,-9,-9,0,2,3,1,1,0,2,1,0,301,-70274.94467348687,0,0,0,1244.071341494972 -923,1148,2065,-9,2064,-9,1,0,25,0,0,0,1,1,-9,0,5,8.208835383258457,8.292218967758426,0,0,0,-913.6321901486016,0,2,-9,2019,5,2,44,35,1,2,1,10.24906883706674,10.24906883706674,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,8.333333333333334,2,3,0,0,3,2,4,0,1812,21762.91843839514,27110.23135718184,117926.7867815184,93798.10808126641,1148.351575217771 -923,1149,2066,-9,2064,-9,1,0,24,0,0,0,2,2,1,0,2,0,0,0,0,0,-1053.959319319423,-9,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.6,54.12,-9,-9,3.333333333333333,2,3,1,1,0,2,1,0,543,227567.0673064605,0,0,0,577.1436156008888 -923,1150,2067,-9,2064,-9,1,1,23,0,0,0,1,1,1,0,4,7.662864620535789,7.642420179372502,0,0,0,-995.7874484848948,-9,3,-9,2019,10,0,18,0,1,0,1,13.74459277145218,13.74459277145218,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,1,2,3,0,1302,-92797.54114174697,0,0,0,430.8135109644221 -923,1151,2068,-9,2064,-9,1,0,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1069.521943916957,-9,3,-9,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38.9,56.89,-9,-9,6.666666666666667,2,3,0,0,0,2,2,0,583,10704.80542442736,0,0,0,-29.63886243195432 -924,1152,2069,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.355957505030576,8.093637121771962,7.42187579931176,0,0,-942.1841738904371,0,2,3,2019,8,0,25,38,1,0,0,5.982454253126239,5.982454253126239,0,0,0,0,0,0,0,0,7.204186247153615,7.079706437388242,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1062,136397.7027584188,-6498.853342869879,0,0,1573.471549061612 -925,1153,2070,2071,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.076123526724479,6.927810915188512,0,2,9,14.14020261305023,0,2,2,2019,20,9,75,-9,1,9,0,1.499008240300693,1.499008240300693,0,0,0,0,0,0,0,0,3.010185516065635,0,27.77,44.36,50.03,52.62,3.333333333333333,1,1,0,0,10,12,3,1,597,1236500.652090525,1057686.044374139,170569.9814015486,0,1171.012437414852 -925,1153,2071,2070,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,7.603860256440068,7.468587401353879,0,2,0,-80.10148770507763,0,2,2,2019,12,1,30,30,1,1,0,5.742384664854341,5.742384664854341,0,0,0,0,0,0,0,0,0,0,50.03,52.62,27.77,44.36,5,1,1,0,0,8,12,3,1,597,1236500.652090525,1057686.044374139,170569.9814015486,0,1171.012437414852 -926,1154,2072,2073,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,6,1,-142.9290955181896,0,-9,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.83,30.64,52,55,1.666666666666667,1,1,1,0,0,9,3,0,545.5,-95080.53357367507,87016.17781464614,158648.4234680146,127049.4082926074,3686.976644833097 -926,1154,2073,2072,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,7.9954306464613,7.92330746880449,0,6,-1,43.40403087791042,0,-9,-9,2019,9,0,40,40,1,1,0,8.190415243634693,8.190415243634693,0,0,0,0,0,1,1,0,9.034433650876361,0,52,55,45.83,30.64,7,1,1,0,0,1,9,3,0,545.5,-95080.53357367507,87016.17781464614,158648.4234680146,127049.4082926074,3686.976644833097 -927,1155,2074,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.521338817464743,7.664178446049375,0,0,0,-1128.686522620101,0,3,3,2019,12,2,25,25,1,2,0,11.78494398028424,11.78494398028424,0,0,0,0,0,0,0,0,0,0,37.42,60.49,-9,-9,10,1,1,0,0,11,13,3,1,300,-1578.672738837449,96098.90236734934,93029.96819834267,106154.3608067714,1010.752261795275 -928,1156,2075,-9,2076,2077,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-983.134828847484,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,345.75,429097.9524736833,83255.50869672847,252392.4764819252,0,4715.743745600808 -928,1156,2076,2077,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.692198053586127,8.333837382254357,0,20,0,4.804718004122508,0,2,2,2019,9,0,45,45,1,0,0,18.60718480665502,18.60718480665502,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,12,5,1,345.75,429097.9524736833,83255.50869672847,252392.4764819252,0,4715.743745600808 -928,1156,2077,2076,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.678418340976521,8.504050186248028,0,20,0,-32.91056459376662,0,2,2,2019,7,0,37,36,1,0,0,19.31838280936892,19.31838280936892,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,345.75,429097.9524736833,83255.50869672847,252392.4764819252,0,4715.743745600808 -928,1156,2078,-9,2076,2077,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.5389449234009,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,345.75,429097.9524736833,83255.50869672847,252392.4764819252,0,4715.743745600808 -929,1157,2079,2080,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,59,-4,23.47671642119172,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,54.8,37.17,50.6,10,1,1,0,0,6,11,2,1,1076,404917.7997060268,150426.2337762257,198572.9019982741,0,2074.455544446781 -929,1157,2080,2079,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.947022420558279,7.568559982402348,59,4,-53.21642860434883,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.234482856022856,7.411045425865502,37.17,50.6,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,1,1076,404917.7997060268,150426.2337762257,198572.9019982741,0,2074.455544446781 -930,1158,2081,-9,2084,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-978.3655046329554,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,1136.25,48930.63136947335,0,0,0,1811.764434656559 -930,1158,2082,-9,2084,-9,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-853.7033326407661,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,1136.25,48930.63136947335,0,0,0,1811.764434656559 -930,1158,2083,-9,2084,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.0341034380344,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1136.25,48930.63136947335,0,0,0,1811.764434656559 -930,1158,2084,-9,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,0,0,0,0,0,-984.2376054503101,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,41.13,-9,-9,5,1,1,0,1,0,11,1,0,1136.25,48930.63136947335,0,0,0,1811.764434656559 -931,1159,2085,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.764893137817264,7.688150381660262,0,1,-16,86.10322238168013,0,-9,-9,2019,9,1,80,30,1,1,0,3.373544007098127,3.373544007098127,0,0,0,0,0,0,0,0,0,0,42.6,61.6,59.84,43.22,8.333333333333334,1,1,0,0,3,12,5,0,141,110103.4298346489,-51632.02514539967,0,0,1264.143447382243 -931,1160,2086,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,9.524108393871737,9.328720275962095,0,1,16,65.65998758022933,-9,-9,-9,2019,4,0,96,0,1,0,0,16.97470611419159,16.97470611419159,0,0,0,0,0,0,0,0,0,0,59.84,43.22,42.6,61.6,6.666666666666667,1,1,0,0,9,12,5,0,365,129958.0988268399,0,0,0,5276.582672669723 -932,1161,2087,2088,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.756452406599021,7.958757170952596,6.32522527754088,2,-4,86.39551144215457,0,2,2,2019,7,0,23,23,1,0,0,13.9909707961402,13.9909707961402,0,0,0,0,0,1,1,0,6.438460153254776,0,54.2,57.49,39.57,56.39,8.333333333333334,1,1,0,0,8,6,4,1,1360,30824.20881878183,17552.25876731268,0,0,2999.146207371514 -932,1161,2088,2087,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,8.034860991765862,7.939037514037183,0,2,4,84.29612531079552,0,-9,-9,2019,16,5,43,37,1,5,0,9.859216287280544,9.859216287280544,0,0,0,0,0,1,1,0,0,0,39.57,56.39,54.2,57.49,6.666666666666667,1,1,0,1,10,6,4,1,1360,30824.20881878183,17552.25876731268,0,0,2999.146207371514 -933,1162,2089,-9,2090,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-946.7959961353347,-9,3,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,1,7,4,0,626,666937.6516197661,266381.7687152086,457313.2310458742,250425.2639209575,3335.178003118552 -933,1162,2090,-9,-9,-9,1,0,53,0,3,0,3,3,-9,0,4,9.043605330440993,9.023206183579768,0,0,0,-960.2336270849472,0,2,2,2019,6,0,20,19,1,0,0,49.62231028479068,49.62231028479068,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,7,4,0,626,666937.6516197661,266381.7687152086,457313.2310458742,250425.2639209575,3335.178003118552 -933,1163,2091,-9,2090,-9,1,1,18,0,3,0,2,2,1,0,5,0,0,0,0,0,-916.2393053474492,-9,3,-9,2019,26,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,44.71,59.44,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,464,0,0,0,0,0 -933,1164,2092,-9,2090,-9,1,1,36,0,3,0,2,2,-9,0,2,0,0,0,0,0,-994.7507893131445,-9,3,-9,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,49.81,51.82,-9,-9,3.333333333333333,1,1,0,1,0,7,1,0,4420,-74297.18183307529,0,0,0,254.5554088840124 -934,1165,2093,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.201449604033764,6.344807086967035,0,0,-1034.77464386248,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,6.972547442426052,0,0,1,1,0,0,6.492716571851654,23.04,34.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,133,313469.2238230159,-71158.01907466092,195718.7617815061,0,181.3157495646776 -934,1166,2094,-9,2093,-9,1,0,61,0,0,0,2,2,-9,0,5,8.354807171657923,8.575675273395012,0,0,0,-1134.53514330498,0,3,2,2019,6,0,30,30,1,0,0,16.0470820007782,16.0470820007782,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,5,4,1,510,119982.455656568,0,57244.32420307975,3793.815186991747,1555.303308193722 -935,1167,2095,-9,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.206785417997988,8.561252231490949,0,0,0,-1023.433114923693,0,1,2,2019,5,0,40,40,1,0,0,12.72348908695996,12.72348908695996,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,6,2,4,1,1126.5,161252.4330932989,-4616.51192385819,0,0,1487.978999241812 -935,1167,2096,-9,2095,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.1302178039972,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,1126.5,161252.4330932989,-4616.51192385819,0,0,1487.978999241812 -936,1168,2097,2098,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.48475056654863,8.448424805939322,0,6,3,79.79354901796121,0,2,2,2019,7,0,37,37,1,0,0,13.43613341836834,13.43613341836834,0,0,0,0,0,0,0,0,0,0,54.9,54.53,37.93,54.93,6.666666666666667,1,1,0,0,12,4,5,0,306,136511.1831460056,160375.5440521656,209540.8432106389,181815.8083096626,3201.161438454356 -936,1168,2098,2097,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.206572868625175,8.374807827002664,0,6,-3,-43.75721792426224,0,-9,-9,2019,13,1,48,50,1,1,0,9.605602620283689,9.605602620283689,0,0,0,0,0,0,0,0,4.24452969328883,0,37.93,54.93,54.9,54.53,5,1,1,0,0,9,4,5,0,306,136511.1831460056,160375.5440521656,209540.8432106389,181815.8083096626,3201.161438454356 -937,1169,2099,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,3,0,0,0,0,0,-866.423764022994,-9,3,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,14.68,48.8,-9,-9,0,1,1,1,1,0,9,1,0,3138,-133047.9421694163,0,0,0,1062.221109526897 -938,1170,2100,2101,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.421528786642472,7.052815219536178,0,38,-11,-.2833860612679004,0,3,3,2019,12,0,26,25,1,0,0,5.021482864386434,5.021482864386434,0,0,0,0,27,1,1,0,.3029900946861033,0,49.04,55.86,49.64,48.69,6.666666666666667,1,1,0,0,10,7,3,1,474,580028.7611415077,63681.80282447344,363512.6083965837,0,1864.305282686356 -938,1170,2101,2100,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.597654874610645,7.574245026309031,0,38,11,76.88520030188512,0,3,3,2019,9,1,36,50,1,1,0,8.085608105756364,8.085608105756364,0,0,0,0,0,1,1,0,0,0,49.64,48.69,49.04,55.86,1.666666666666667,1,1,0,0,9,7,3,1,474,580028.7611415077,63681.80282447344,363512.6083965837,0,1864.305282686356 -938,1171,2102,-9,2100,2101,1,0,27,0,0,0,1,1,-9,0,2,8.216587497505124,7.97589587061014,0,0,0,-1121.249393428533,0,2,3,2019,16,5,37,38,1,5,1,15.14795048495497,15.14795048495497,0,0,0,0,0,1,1,0,0,0,41.23,53.22,-9,-9,6.666666666666667,1,1,0,0,6,7,4,1,405,-125468.9463407749,0,0,0,2017.424277346623 -939,1172,2103,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.295563968351022,7.335762908398665,0,0,-941.0425986104002,0,1,1,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.326807078895876,7.070439919652301,42.58,34.6,-9,-9,5,1,1,0,1,0,7,3,1,111,1294110.344325223,259715.9563690614,600459.4465296818,0,1091.759985458667 -940,1173,2104,2105,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.846477216323294,8.865123880991574,3.625700227087911,9,4,12.73474753346969,0,3,3,2019,7,0,42,40,1,0,0,13.76012158825949,13.76012158825949,0,0,0,0,2,0,0,0,3.204684013526046,0,55.2,49.4,35.21,41.12,6.666666666666667,1,1,0,0,10,11,5,1,749,404886.2964113154,139316.6670390164,63843.43138619303,0,2919.535931178686 -940,1173,2105,2104,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.448991750115617,7.353858902519842,0,9,-4,-132.5759149970122,0,2,3,2019,15,3,30,30,1,3,0,5.171753532479635,5.171753532479635,0,0,0,0,7,0,0,0,0,0,35.21,41.12,55.2,49.4,8.333333333333334,1,1,0,0,10,11,5,1,749,404886.2964113154,139316.6670390164,63843.43138619303,0,2919.535931178686 -940,1174,2106,-9,2105,2104,1,0,22,0,0,0,1,1,-9,0,4,8.460608481815759,8.333416151063771,0,0,0,-1009.089137220356,0,3,2,2019,15,4,31,10,1,4,1,18.04691301320807,18.04691301320807,0,0,0,0,0,0,0,0,.3761716516398755,0,29.12,56.9,-9,-9,8.333333333333334,1,1,0,0,6,11,5,1,551,300156.832815599,232803.9300627257,0,0,1564.674138433595 -941,1175,2107,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.852417912486993,7.665067667994889,7.803470101929344,0,0,-1012.742502047611,0,3,3,2019,13,3,14,14,1,3,0,6.706608386617133,6.706608386617133,0,0,0,0,0,1,1,0,7.677186354798609,0,36.99,33.18,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,407,406901.7616073209,229483.1035625109,291805.5295869054,0,1613.73333492625 -942,1176,2108,2109,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.442543073219542,7.510775230432897,0,8,0,-8.330183900846105,0,-9,-9,2019,13,2,32,40,1,2,0,5.494049878338928,5.494049878338928,0,0,0,0,0,0,0,0,1.935068308193647,0,54.2,57.49,52.48,55.6,10,1,1,0,0,9,4,4,1,269.5,467807.2696626663,437620.9374581692,133186.9348565419,43193.89858923975,2414.822439084604 -942,1176,2109,2108,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.310246067268963,8.715246480414146,0,39,0,18.02406738881451,0,2,2,2019,7,0,46,43,1,0,0,12.14085105031642,12.14085105031642,0,0,0,0,0,0,0,0,1.688905875260269,0,52.48,55.6,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,269.5,467807.2696626663,437620.9374581692,133186.9348565419,43193.89858923975,2414.822439084604 -942,1177,2110,-9,2108,2109,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-988.5892441948529,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.336121365156351,0,47.32,49.99,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,455,0,0,0,0,392.2168617819066 -943,1178,2111,2112,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.280194036823811,8.562832623700949,0,24,4,13.66220409553254,0,2,2,2019,7,0,40,40,1,0,0,12.41346449491535,12.41346449491535,0,0,0,0,0,1,1,0,0,0,57.57,49.69,51.17,14.72,8.333333333333334,1,1,0,0,10,2,5,1,655,1735816.786283927,1272144.145980782,324284.8060628323,0,4739.635255692395 -943,1178,2112,2111,-9,-9,1,0,51,0,0,0,1,1,-9,0,1,8.672314219323029,8.886599130172005,0,24,-4,-68.57249866714885,0,3,3,2019,11,1,50,45,1,1,0,15.4878264480895,15.4878264480895,0,0,0,0,0,1,1,0,0,0,51.17,14.72,57.57,49.69,6.666666666666667,1,1,0,0,10,2,5,1,655,1735816.786283927,1272144.145980782,324284.8060628323,0,4739.635255692395 -943,1178,2113,-9,2112,2111,1,0,16,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.0770633711955,-9,1,1,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,5,1,1,0,0,0,2,5,1,655,1735816.786283927,1272144.145980782,324284.8060628323,0,4739.635255692395 -943,1179,2114,-9,2112,2111,1,1,18,0,0,0,2,2,1,0,3,5.388226626481622,5.750830799799708,0,0,0,-1066.12541390524,-9,1,1,2019,6,0,5,0,1,0,1,7.927744561296576,7.927744561296576,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,10,1,1,0,0,1,2,2,1,459,191983.7095435177,0,0,0,-50.88135491265294 -944,1180,2115,2116,-9,-9,1,0,42,0,2,0,2,2,-9,1,4,7.598626720057394,7.669153958484715,0,23,-5,19.43095354113779,0,2,2,2019,9,0,23,23,1,0,0,14.3953700181847,14.3953700181847,0,0,0,0,42,1,1,0,0,0,54.2,57.49,51.94,55.88,8.333333333333334,1,1,0,0,9,5,4,1,497.6666666666667,969654.4659787385,651475.0198853143,198924.0095708419,63238.08171977101,3667.424715186062 -944,1180,2116,2115,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.424664616738745,8.483795255830497,0,23,5,41.48118322367517,0,2,2,2019,9,1,44,43,1,1,0,10.43163379537517,10.43163379537517,0,0,0,0,14.5,1,1,0,0,0,51.94,55.88,54.2,57.49,6.666666666666667,1,1,0,0,9,5,4,1,497.6666666666667,969654.4659787385,651475.0198853143,198924.0095708419,63238.08171977101,3667.424715186062 -944,1180,2117,-9,2115,2116,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.9224558890246,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,497.6666666666667,969654.4659787385,651475.0198853143,198924.0095708419,63238.08171977101,3667.424715186062 -945,1181,2118,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1075.785096065301,0,3,3,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,1,1,8,1,1,500,0,0,0,0,143.6770870240328 -946,1182,2119,2122,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.655616340822263,8.653102094910885,0,17,4,41.57802560611955,0,1,1,2019,8,0,45,47,1,0,0,14.92185665448303,14.92185665448303,0,0,0,0,0,0,0,0,6.008077474631557,0,57.16,56.15,55.09,55.87,10,1,1,0,0,9,2,4,1,936.8,538502.9510868567,258257.5656525514,266903.1972414332,8410.051849459491,3303.26598304025 -946,1182,2120,-9,2122,2119,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.544207414182,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,936.8,538502.9510868567,258257.5656525514,266903.1972414332,8410.051849459491,3303.26598304025 -946,1182,2121,-9,2122,2119,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.7540925539796,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,936.8,538502.9510868567,258257.5656525514,266903.1972414332,8410.051849459491,3303.26598304025 -946,1182,2122,2119,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,7.600527210312931,7.928075415965499,0,17,-4,64.119808165668,0,2,1,2019,6,0,30,30,1,0,0,10.23273444587942,10.23273444587942,0,0,0,0,0,0,0,0,.3320074502189413,0,55.09,55.87,57.16,56.15,10,1,1,0,0,8,2,4,1,936.8,538502.9510868567,258257.5656525514,266903.1972414332,8410.051849459491,3303.26598304025 -946,1182,2123,-9,2122,2119,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.796269805369,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,936.8,538502.9510868567,258257.5656525514,266903.1972414332,8410.051849459491,3303.26598304025 -947,1183,2124,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.952202787599077,8.343183542908745,0,0,0,-945.9382636119933,0,-9,-9,2019,12,0,60,48,1,0,0,9.774426239851554,9.774426239851554,0,0,0,0,0,1,1,0,0,0,44.98,57.48,-9,-9,6.666666666666667,1,1,0,1,11,1,4,0,176,90628.00802934369,0,211146.448504257,0,1107.644116152683 -948,1184,2125,-9,2126,-9,1,1,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-937.5436349467767,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,4.025782295989259,0,51.71,22.32,-9,-9,3.333333333333333,1,1,0,0,5,6,1,1,539,-102507.9337339909,0,0,0,-82.4684916571068 -948,1185,2126,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1125.639007268252,0,-9,-9,2019,23,8,0,0,4,8,0,0,0,1,0,15.91498207146152,0,2,1,1,0,4.155541085770989,0,42.03,17.4,-9,-9,5,1,1,0,0,0,6,1,1,894,174588.358058123,0,0,0,649.1782258049141 -949,1186,2127,-9,2129,2130,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.9144456249487,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,1,1904.75,114767.4113709534,57392.48733425551,116841.9637643536,77013.6778612757,2332.112571936777 -949,1186,2128,-9,2129,2130,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.4799388870574,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1904.75,114767.4113709534,57392.48733425551,116841.9637643536,77013.6778612757,2332.112571936777 -949,1186,2129,2130,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.152634892745832,6.989422185027021,0,2,-1,115.5047738628502,0,-9,-9,2019,10,1,25,23,1,1,0,6.246432337938812,6.246432337938812,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48,58,8.333333333333334,1,1,0,0,9,5,3,1,1904.75,114767.4113709534,57392.48733425551,116841.9637643536,77013.6778612757,2332.112571936777 -949,1186,2130,2129,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,7.915631670241986,8.005072057017848,0,2,1,-24.21671080819322,-9,-9,-9,2019,10,0,36,0,1,1,0,9.884993793674006,9.884993793674006,0,0,0,0,0,1,1,0,0,0,48,58,57.16,56.15,7,4,1,0,0,1,5,3,1,1904.75,114767.4113709534,57392.48733425551,116841.9637643536,77013.6778612757,2332.112571936777 -950,1187,2131,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.881703396887576,8.299630521716484,0,0,0,-1045.39139456504,0,-9,-9,2019,12,3,40,43,1,3,0,10.7828306031809,10.7828306031809,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,0,3,4,0,0,4,8,4,0,753,150222.2446294933,0,131481.0592611022,31444.45845345105,2130.128845073416 -950,1188,2132,-9,-9,2131,1,0,19,0,0,0,2,2,-9,0,3,7.18476981808475,7.230263686519922,0,0,0,-993.377308552823,-9,-9,2,2019,12,4,22,0,1,4,1,8.240611161743102,8.240611161743102,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,3,4,0,0,3,8,3,0,957,234385.742064572,14360.70509531361,0,0,820.6370640949738 -950,1189,2133,-9,-9,2131,1,1,18,0,0,0,2,2,1,0,4,7.209547016930745,6.610001105572166,0,0,0,-985.5583470284164,-9,-9,2,2019,12,1,17,0,1,1,1,7.016951478521823,7.016951478521823,0,0,0,0,0,1,1,0,1.124308475128809,0,41.06,62.04,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,235,183042.4784483717,0,0,0,290.9562092647899 -951,1190,2134,2135,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-2,-222.9078389999439,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.677010453297393,0,51.83,57.2,52,48,8.333333333333334,1,1,0,0,0,9,5,1,346,297694.3269839204,171401.0276300751,278535.0873294008,69707.71344413635,4704.085116897193 -951,1190,2135,2134,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.851329880938883,9.145097852727805,7.435350056916058,9,2,27.76754613561431,0,-9,-9,2019,10,0,45,45,1,1,0,16.12927351348082,16.12927351348082,0,0,0,0,0,1,1,0,5.009234390310469,7.594108156460658,52,48,51.83,57.2,7,1,1,0,0,1,9,5,1,346,297694.3269839204,171401.0276300751,278535.0873294008,69707.71344413635,4704.085116897193 -952,1191,2136,-9,2138,2137,1,0,41,0,0,0,2,2,-9,0,3,8.258536651098014,7.971215173795978,0,0,0,-1009.024298755953,0,2,1,2019,8,2,47,48,1,2,0,8.862766242008496,8.862766242008496,0,0,0,0,7,1,1,0,0,0,42.25,34.76,-9,-9,6.666666666666667,3,4,0,0,8,6,4,0,1510,131976.206646335,163161.9402587122,236832.4135279949,81158.51092023501,888.6471409217063 -952,1192,2137,2138,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,0,0,2,3,9.025549638607483,-9,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,11.30969870752673,0,0,1,1,0,0,0,49.72,32.62,54.37,54.8,6.666666666666667,3,4,0,1,0,6,2,0,303,420936.497923082,-6837.356284625585,212121.0917964751,0,238.2075130271252 -952,1192,2138,2137,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.951310218643437,5.95139166317535,2,-3,-234.8260107065168,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.983594183578337,54.37,54.8,49.72,32.62,6.666666666666667,3,4,0,0,0,6,2,0,303,420936.497923082,-6837.356284625585,212121.0917964751,0,238.2075130271252 -953,1193,2139,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.529793819503993,8.615318878666026,0,0,0,-1068.246335281743,0,3,3,2019,17,5,35,50,1,5,0,17.02885421152275,17.02885421152275,0,0,0,0,0,0,0,0,0,0,45.67,47.76,-9,-9,5,1,1,0,0,7,4,5,1,493,344077.1291448093,54823.71818685342,148343.3443922049,79989.41457964884,2054.579793452771 -954,1194,2140,2141,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,58,-1,-122.4549360361198,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,59.7,32.49,8.333333333333334,1,1,0,0,0,9,4,1,426,222677.081673341,372728.3452283646,0,0,3806.050312900972 -954,1194,2141,2140,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.895734494975125,8.65949940826567,58,1,-166.2207900341788,0,2,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.328216120798391,59.7,32.49,52.4,55.58,6.666666666666667,1,1,0,0,0,9,4,1,426,222677.081673341,372728.3452283646,0,0,3806.050312900972 -955,1195,2142,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-812.8689976908797,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,7.42918665100703,0,0,1,1,0,.9921144282246643,0,54,43,-9,-9,8,1,1,0,0,0,9,1,1,436,-146670.2730414671,0,0,0,1305.405610770678 -956,1196,2143,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-970.3334169777119,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,5,13,1,1,178,0,0,0,0,143.1539193483088 -957,1197,2144,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,5.591518534895183,5.587016475484563,0,0,-1030.365261655876,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.78304743222989,5.791436131346616,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,442,424690.1134142238,92337.0334938272,190194.1032763203,0,912.7593847815737 -958,1198,2145,-9,2146,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.084530585192,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,710,44263.78902971749,4845.798658682059,0,0,2009.511561406869 -958,1198,2146,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.14509054669481,8.218034290699929,5.632391454584372,0,0,-896.0978617399293,0,3,2,2019,7,0,39,37,1,0,0,11.83515515620615,11.83515515620615,0,0,0,0,0,1,1,0,5.208334503031194,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,710,44263.78902971749,4845.798658682059,0,0,2009.511561406869 -959,1199,2147,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,1,0,7.514298766469836,7.392327710868721,0,0,-929.1101447410509,0,2,3,2019,15,4,0,0,4,4,0,0,0,1,0,11.50274519489532,0,0,1,1,0,0,7.519173746871186,35.53,19.08,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,251,604961.2318984917,157892.9350352311,333464.4646121901,0,1529.783532907979 -960,1200,2148,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.199411816047,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,0,1,0,0,57.03,27.79,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,3478,110527.2756933154,0,0,0,681.5552688965868 -961,1201,2149,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.683672749698,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,1.131496979161137,3.285063255221228,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,0,625,166691.8098411827,0,0,0,1610.017576434402 -962,1202,2150,-9,2151,2153,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.197200958808,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,2,0,1140.2,360356.6369853095,195449.2747498489,255251.7487516995,43760.70986588481,2151.202106598841 -962,1202,2151,2153,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,2,-4,-93.06916404008153,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,4,5,0,0,0,8,2,0,1140.2,360356.6369853095,195449.2747498489,255251.7487516995,43760.70986588481,2151.202106598841 -962,1202,2152,-9,2151,2153,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-868.9954368157516,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1140.2,360356.6369853095,195449.2747498489,255251.7487516995,43760.70986588481,2151.202106598841 -962,1202,2153,2151,-9,-9,1,1,42,1,3,0,1,1,-9,0,4,7.965657280310876,7.781252608599644,0,2,4,-130.0361033104444,0,-9,-9,2019,9,0,50,25,1,1,0,5.546519237377602,5.546519237377602,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,5,0,0,3,8,2,0,1140.2,360356.6369853095,195449.2747498489,255251.7487516995,43760.70986588481,2151.202106598841 -962,1202,2154,-9,2151,2153,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.0666023750707,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,2,0,1140.2,360356.6369853095,195449.2747498489,255251.7487516995,43760.70986588481,2151.202106598841 -963,1203,2155,2156,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.801734669763923,6.902659158954809,52,0,-29.04654683339569,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8184276630417,57.33,53.46,58.15,52.91,6.666666666666667,1,1,0,0,4,11,2,1,782,479010.028090099,289329.0324096946,239117.173224287,0,1445.347893524174 -963,1203,2156,2155,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,0,-52.17835767627885,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,5.890940995108028,0,67.68715034028469,0,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,0,11,2,1,782,479010.028090099,289329.0324096946,239117.173224287,0,1445.347893524174 -964,1204,2157,2158,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,9.188241080972558,9.485355866245612,0,29,-4,-4.296128271358351,0,2,2,2019,8,0,45,48,1,0,0,25.39648567634615,25.39648567634615,0,0,0,0,7,1,1,0,3.1429438108275,0,54.2,57.49,59.54,48.41,8.333333333333334,1,1,0,0,9,4,5,1,670,561939.829221312,266222.2018369673,290965.3618143905,87110.55453970224,5761.933981489982 -964,1204,2158,2157,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.262648439827613,8.20059674003938,29,4,-56.43785278051419,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.705098887378554,8.612742716363343,59.54,48.41,54.2,57.49,10,1,1,0,0,6,4,5,1,670,561939.829221312,266222.2018369673,290965.3618143905,87110.55453970224,5761.933981489982 -965,1205,2159,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.976006532361489,8.246694793610445,0,0,0,-1013.2322179651,0,1,2,2019,15,4,30,38,1,4,0,9.1481210093774,9.1481210093774,0,0,0,0,14.5,1,1,0,0,0,52.38,55.6,-9,-9,8.333333333333334,3,4,0,0,10,4,3,1,754,313662.2210520427,-8427.877426959152,113779.8577097309,44736.71221608858,2629.754415142722 -966,1206,2160,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.957272833215078,6.371806121271251,0,0,-969.1969251825084,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.426084296545766,7.022551059858669,60.12,54.8,-9,-9,10,1,1,0,0,5,2,2,1,2014,491793.3565517621,73600.37975199368,338269.1090179181,0,1705.556108111251 -967,1207,2161,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-939.1728206365168,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,3,13,1,1,1108,-101787.614020534,0,0,0,857.5423212337927 -967,1208,2162,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1097.568346167292,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,2175,145174.7525892751,0,78364.57421045708,0,1158.746712937444 -968,1209,2163,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,8.024362124009947,7.952934774172758,0,0,0,-1139.327593035898,0,3,3,2019,6,0,45,46,1,0,0,7.475461946776003,7.475461946776003,0,0,0,0,0,1,1,0,1.643112135604053,0,49.04,55.86,-9,-9,1.666666666666667,3,4,0,0,11,2,4,1,459,285378.6466919689,162133.3033280095,173281.2884027383,0,2272.879913546097 -968,1210,2164,-9,-9,2163,1,1,36,0,0,0,2,2,-9,0,2,8.220392012771654,8.152669254749503,0,0,0,-1057.205651993453,-9,-9,3,2019,0,0,37,0,1,0,0,11.05524487758113,11.05524487758113,0,0,0,0,0,1,1,0,0,0,54.02,45.3,-9,-9,10,4,2,0,0,0,2,4,1,621,10928.94506306273,0,0,0,1824.818484302898 -969,1211,2165,-9,2166,2167,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.0660119395486,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,492.3333333333333,1006584.946820885,808320.9415127826,416442.0708988439,319002.5292819308,4901.407402485326 -969,1211,2166,2167,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,8.941366618740936,8.887953468489103,0,17,-4,136.2642328014573,0,2,-9,2019,16,4,36,40,1,4,0,25.86515936032382,25.86515936032382,0,0,0,0,0,1,1,0,0,0,35.79,61.73,38.57,64.48,8.333333333333334,1,1,0,0,7,10,5,1,492.3333333333333,1006584.946820885,808320.9415127826,416442.0708988439,319002.5292819308,4901.407402485326 -969,1211,2167,2166,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,9.134386612648703,8.835456381242334,0,17,4,-.8035390311434683,0,2,2,2019,16,5,42,40,1,5,0,15.96981906288354,15.96981906288354,0,0,0,0,0,1,1,0,0,0,38.57,64.48,35.79,61.73,6.666666666666667,1,1,0,0,9,10,5,1,492.3333333333333,1006584.946820885,808320.9415127826,416442.0708988439,319002.5292819308,4901.407402485326 -970,1212,2168,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.328394200112585,8.560547015764771,0,0,0,-1044.887775495251,0,1,1,2019,8,0,25,35,1,0,0,20.24481403658565,20.24481403658565,0,0,0,0,0,0,0,0,4.203976734029804,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,421,68114.74492553875,-117693.280537775,0,0,1978.097428361511 -971,1213,2169,2170,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.828354872122546,8.751828621087656,0,29,0,-47.74002495252203,0,2,2,2019,12,0,44,50,1,0,0,15.51009218657823,15.51009218657823,0,0,0,0,0,0,0,0,2.478727210822177,0,51.92,47.92,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,1114.5,445981.5908741009,249486.2107897484,273724.674176352,124356.4292699339,4398.483610794811 -971,1213,2170,2169,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.288487746478511,8.354297796147938,0,29,0,-44.06494516040586,0,2,2,2019,9,0,40,40,1,0,0,13.33076149001102,13.33076149001102,0,0,0,0,0,0,0,0,5.896426647282229,0,57.16,56.15,51.92,47.92,8.333333333333334,1,1,0,0,10,2,5,1,1114.5,445981.5908741009,249486.2107897484,273724.674176352,124356.4292699339,4398.483610794811 -971,1214,2171,-9,2169,2170,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-1049.796669364066,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.7031400696771161,0,53.75,59.47,-9,-9,10,1,1,0,0,5,2,1,1,502,0,0,0,0,329.6023600013835 -971,1215,2172,-9,2169,2170,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1000.220249829752,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,.7397649616926039,0,0,0,0,.9495863803552795,0,41.3,60.77,-9,-9,10,1,1,0,0,3,2,1,1,367,0,0,0,0,496.1880095344617 -972,1216,2173,2174,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.151221486372796,7.574407153585214,46,4,21.76941854085124,0,2,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.633977552308523,49.53,17.87,61.28,46.17,8.333333333333334,1,1,0,0,0,9,3,1,752.5,801221.5868369436,290740.443891748,369770.6419588677,0,2225.343339960733 -972,1216,2174,2173,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-4,43.74491566471897,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.709635281590794,0,61.28,46.17,49.53,17.87,8.333333333333334,1,1,0,0,0,9,3,1,752.5,801221.5868369436,290740.443891748,369770.6419588677,0,2225.343339960733 -973,1217,2175,-9,2177,2176,1,1,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-870.7001872634293,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,2,4,1,1580.6,500498.4658651069,354686.0304424284,190232.2543565792,67025.63699467904,4571.323638196761 -973,1217,2176,2177,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,9.405537593338684,9.312508902317944,0,18,9,28.12099546816481,0,3,3,2019,12,0,24,30,1,0,0,50.49050694340853,50.49050694340853,0,0,0,0,0,1,1,0,0,0,46.34,38.05,48,57,6.666666666666667,2,3,0,0,11,2,4,1,1580.6,500498.4658651069,354686.0304424284,190232.2543565792,67025.63699467904,4571.323638196761 -973,1217,2177,2176,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,-46.13381410535614,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,46.34,38.05,7,2,3,0,0,0,2,4,1,1580.6,500498.4658651069,354686.0304424284,190232.2543565792,67025.63699467904,4571.323638196761 -973,1217,2178,-9,2177,2176,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.739029644678,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,1580.6,500498.4658651069,354686.0304424284,190232.2543565792,67025.63699467904,4571.323638196761 -973,1217,2179,-9,2177,2176,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-970.301508215034,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,4,1,1580.6,500498.4658651069,354686.0304424284,190232.2543565792,67025.63699467904,4571.323638196761 -974,1218,2180,2181,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,6.118714991953467,6.791572370478694,7,4,-64.57997111811559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.756747754263979,6.790935599907732,61.91,40.48,52.31,58.29,8.333333333333334,1,1,0,0,0,12,2,1,308.5,669317.3119444372,322109.4450278163,160354.4543452045,0,1521.394996967358 -974,1218,2181,2180,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.064916181808818,6.167939297193673,7,-4,66.43377710987583,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.642762720694032,5.775749371176691,52.31,58.29,61.91,40.48,8.333333333333334,1,1,0,0,3,12,2,1,308.5,669317.3119444372,322109.4450278163,160354.4543452045,0,1521.394996967358 -975,1219,2182,-9,2183,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.632110159917,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,694.5,47912.36142512298,15332.41785080632,0,0,1394.701332746869 -975,1219,2183,-9,-9,-9,1,0,38,0,3,0,1,1,-9,1,2,0,0,0,0,0,-880.7763572758007,0,2,2,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,39.3,35.3,-9,-9,5,3,4,0,0,0,6,1,0,694.5,47912.36142512298,15332.41785080632,0,0,1394.701332746869 -976,1220,2184,2185,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.615773145387129,8.966221043812201,7.440527754765919,47,-1,-53.13312523090885,0,3,2,2019,3,0,25,20,1,0,0,24.93276151529656,24.93276151529656,0,0,0,0,0,0,0,0,.5736132536955207,7.585264933203002,48.77,60.16,55.79,52.62,8.333333333333334,1,1,0,0,10,10,5,1,1557.5,1684786.72139241,817729.442772015,324491.4960591104,0,3059.562865428987 -976,1220,2185,2184,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,0,0,47,1,142.8269724695934,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.401765099615642,0,55.79,52.62,48.77,60.16,8.333333333333334,1,1,0,0,7,10,5,1,1557.5,1684786.72139241,817729.442772015,324491.4960591104,0,3059.562865428987 -977,1221,2186,2187,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.347707636133945,5.255753062595752,8,-1,-161.754439538346,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,9.73237588015613,0,0,1,1,0,0,5.19908090495984,47.29,25.79,58.47,34.16,6.666666666666667,1,1,0,0,0,4,2,0,306.5,126646.9640310247,169622.9413064518,63718.12461703718,0,2082.939420323441 -977,1221,2187,2186,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.02531646117389,5.741321985716221,8,1,71.51430592396981,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,1.382377822926635,0,1,1,0,0,5.673779099519689,58.47,34.16,47.29,25.79,6.666666666666667,1,1,0,0,0,4,2,0,306.5,126646.9640310247,169622.9413064518,63718.12461703718,0,2082.939420323441 -978,1222,2188,2189,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,67,2,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,24.29883893484702,0,0,1,1,0,1.16921415985394,0,55.64,36.99,62.42,45.64,8.333333333333334,1,1,0,0,0,9,1,1,885,396984.2713254357,0,269289.9288825364,0,2595.820443999544 -978,1222,2189,2188,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,67,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.384190450780472,0,62.42,45.64,55.64,36.99,8.333333333333334,1,1,0,0,0,9,1,1,885,396984.2713254357,0,269289.9288825364,0,2595.820443999544 -979,1223,2190,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-991.6348542586861,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,13.18,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,454,0,0,0,0,535.5940345257343 -980,1224,2191,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.581353796457957,8.704048230812274,0,0,0,-1016.73451114433,0,1,1,2019,15,3,40,42,1,3,0,14.62316486949677,14.62316486949677,0,0,0,0,0,0,0,0,2.969803601266738,0,36.37,60.23,-9,-9,5,1,1,0,0,10,8,5,1,649,-12995.95714051637,71245.13715333844,0,0,2082.01263346906 -981,1225,2192,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,5,9.10983617999532,9.115417534523177,0,0,0,-939.8343660770408,0,2,2,2019,12,0,26,26,1,0,0,36.31866487200036,36.31866487200036,0,0,0,0,0,0,0,0,3.716700346648687,0,57.06,57.76,-9,-9,10,1,1,0,0,12,9,5,1,1259,1011525.130922864,98858.79928142107,645913.6171052777,178931.3075168931,2102.859230544827 -982,1226,2193,-9,2195,2194,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-787.7862561692777,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,623.5,457838.8786837584,41261.12813942604,172087.9435221759,115420.0751654687,3205.590210180549 -982,1226,2194,2195,-9,-9,1,1,43,0,2,0,3,3,-9,0,2,7.929027065487275,7.825959073837264,0,6,6,162.1241487298575,0,2,3,2019,26,12,60,60,1,12,0,5.687005833677093,5.687005833677093,0,0,0,0,0,1,1,0,0,0,36.82,37.4,49.76,56.93,8.333333333333334,1,1,0,1,6,6,4,1,623.5,457838.8786837584,41261.12813942604,172087.9435221759,115420.0751654687,3205.590210180549 -982,1226,2195,2194,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.743301247122227,8.370447681709118,0,6,-6,21.65060161972218,0,2,1,2019,7,0,35,35,1,0,0,16.93405699825123,16.93405699825123,0,0,0,0,0,1,1,0,0,0,49.76,56.93,36.82,37.4,8.333333333333334,1,1,0,0,6,6,4,1,623.5,457838.8786837584,41261.12813942604,172087.9435221759,115420.0751654687,3205.590210180549 -982,1226,2196,-9,2195,2194,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.8807673414243,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,623.5,457838.8786837584,41261.12813942604,172087.9435221759,115420.0751654687,3205.590210180549 -983,1227,2197,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.119549655736432,7.943118944419923,0,0,0,-1062.022334542797,0,2,2,2019,11,0,10,16,1,0,0,41.24575110233818,41.24575110233818,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,9,4,0,988,47574.95861699368,50400.01989526372,0,0,1809.597546983525 -983,1228,2198,-9,2197,-9,1,1,28,0,0,0,2,2,-9,0,4,8.15560647750549,8.115623808358896,0,0,0,-921.3692874235593,0,1,-9,2019,12,0,38,38,1,0,1,10.34086706893646,10.34086706893646,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,6,9,4,0,1770,43023.05083409328,85827.77558639144,0,0,1554.250060291025 -983,1229,2199,-9,2197,-9,1,0,24,0,0,0,2,2,-9,0,4,8.497608385046052,8.537050619696528,0,0,0,-1040.577446735752,0,1,2,2019,13,2,43,42,1,2,1,13.73313044547658,13.73313044547658,0,0,0,0,0,0,0,0,0,0,36.25,59.21,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,821,59751.53632384148,0,0,0,2054.14448090791 -983,1230,2200,-9,2197,-9,1,0,22,0,0,0,2,2,-9,0,3,0,5.865905057951169,5.975033276550163,0,0,-1084.463635880794,0,1,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,5.788352405882772,0,37.71,39.26,-9,-9,6.666666666666667,1,1,1,1,1,9,2,0,1891,-152812.7335834951,0,0,0,-66.78783965475873 -984,1231,2201,2202,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,7,-4,105.41095227832,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.19,30.28,37.74,6.666666666666667,1,1,0,0,0,4,2,0,555.5,205056.8066595757,180480.6520741059,87874.97127907258,0,2394.647315558911 -984,1231,2202,2201,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.032298118908338,5.999461863388167,7,4,56.68594726880411,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,71.5,1,1,0,0,5.742041681497774,30.28,37.74,37.36,19.19,3.333333333333333,1,1,0,0,0,4,2,0,555.5,205056.8066595757,180480.6520741059,87874.97127907258,0,2394.647315558911 -985,1232,2203,-9,2205,2204,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.596953897423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,888.25,734264.3338951383,422133.4340440567,608880.0954114951,355372.3605746119,6529.428166543398 -985,1232,2204,2205,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.233927743750206,9.21065171427842,0,17,6,-61.23056572234017,0,3,3,2019,6,0,40,38,1,0,0,42.34555831298518,42.34555831298518,0,0,0,0,0,0,0,0,0,0,51.73,58.82,58.15,52.91,8.333333333333334,1,1,0,0,9,6,5,1,888.25,734264.3338951383,422133.4340440567,608880.0954114951,355372.3605746119,6529.428166543398 -985,1232,2205,2204,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.033106507220547,9.08826754922358,0,17,-6,-45.20679764200172,0,2,2,2019,3,0,47,45,1,0,0,20.58974810275384,20.58974810275384,0,0,0,0,0,0,0,0,.8682667764261841,0,58.15,52.91,51.73,58.82,8.333333333333334,1,1,0,0,9,6,5,1,888.25,734264.3338951383,422133.4340440567,608880.0954114951,355372.3605746119,6529.428166543398 -985,1232,2206,-9,2205,2204,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.586481863197,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,888.25,734264.3338951383,422133.4340440567,608880.0954114951,355372.3605746119,6529.428166543398 -986,1233,2207,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.329968175840412,5.234593122645272,0,0,-1154.523647113428,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.167895328756119,52,48,-9,-9,7,1,1,0,1,0,8,2,0,1516,80015.03364187668,0,250755.0574002638,-4346.466505961374,1356.303467312063 -987,1234,2208,2209,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.918298210662348,8.129726057056233,6.512213728287069,8,-1,183.7146750992547,0,3,3,2019,9,0,37,45,1,0,0,7.221299945749063,7.221299945749063,0,0,0,0,0,0,0,0,6.851258833064684,6.496721163689711,62.39,56.71,49.35,59.64,8.333333333333334,1,1,0,0,9,12,4,1,360,75145.37065814095,51454.79485257111,0,0,2773.335480747811 -987,1234,2209,2208,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.062285315095745,7.203245214206481,0,8,1,89.52483050746183,0,3,2,2019,8,0,20,20,1,0,0,6.781505068876622,6.781505068876622,0,0,0,0,0,0,0,0,6.841635007428396,0,49.35,59.64,62.39,56.71,8.333333333333334,1,1,0,0,8,12,4,1,360,75145.37065814095,51454.79485257111,0,0,2773.335480747811 -988,1235,2210,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.177393678094795,8.549200751397118,0,0,0,-1114.619871121126,0,-9,2,2019,12,0,40,40,1,0,0,14.4946996431731,14.4946996431731,0,0,0,0,0,0,0,0,3.499469217740198,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,1562,1088147.103569133,668520.7782434179,295720.584366138,0,1997.759427477595 -989,1236,2211,-9,-9,-9,1,0,73,0,1,0,3,3,-9,0,1,0,0,0,0,0,-1015.633521992215,0,-9,-9,2019,18,4,0,0,4,4,0,0,0,1,0,6.955323758348788,0,0,1,1,0,0,0,15.54,40.3,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,212,-68302.90351093974,0,132196.5381835693,0,490.7940878840286 -989,1237,2212,-9,2213,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.7074787213097,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,1,596.5,192222.9335260486,0,67641.35635389696,32478.82921644438,1271.648443807012 -989,1237,2213,-9,2211,-9,1,0,47,0,1,0,3,3,-9,0,4,7.016270621884998,6.687570173078919,0,0,0,-1025.073096020331,0,3,-9,2019,9,0,12,16,1,0,0,11.10522022933113,11.10522022933113,0,0,0,0,0,1,1,0,0,0,27.71,64.78,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,596.5,192222.9335260486,0,67641.35635389696,32478.82921644438,1271.648443807012 -990,1238,2214,2215,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.492962414110343,8.296142074068548,0,12,-1,159.7274740527742,0,3,3,2019,9,0,37,37,1,0,0,10.89360406490954,10.89360406490954,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,10,10,5,1,376,660365.6422438066,0,281153.4016664642,0,3809.324519306771 -990,1238,2215,2214,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.524400480267637,8.319230080484413,0,11,1,-52.03808842801008,0,2,2,2019,7,0,39,39,1,0,0,14.71296075899882,14.71296075899882,0,0,0,0,0,0,0,0,3.752505168883431,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,376,660365.6422438066,0,281153.4016664642,0,3809.324519306771 -991,1239,2216,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.844796161725488,7.800761074229989,0,0,0,-1097.048091825267,-9,2,3,2019,9,1,16,0,1,1,0,20.39916154824421,20.39916154824421,0,0,0,0,0,1,1,0,.6618841760985363,0,49.94,58.01,-9,-9,8.333333333333334,4,2,0,0,11,9,4,1,727,77689.34746203222,22684.28826910527,0,0,1477.40006144221 -991,1240,2217,-9,2216,-9,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1050.819727724899,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,42.97,53.35,-9,-9,6.666666666666667,4,2,0,0,4,9,2,1,363,-43427.49316773124,0,0,0,1312.43381406305 -992,1241,2218,-9,2220,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.822062852709,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,1,1,796,251850.9454257245,0,194164.9712558824,0,1217.157056569815 -992,1241,2219,-9,2220,-9,1,0,16,0,2,1,2,0,-9,0,1,0,5.512628722544707,5.510831624378241,0,0,-1099.108732378452,-9,2,-9,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,4.91647265857079,0,31.86,35.73,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,796,251850.9454257245,0,194164.9712558824,0,1217.157056569815 -992,1241,2220,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,0,0,0,0,0,-823.2194971366124,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,1,1,13,1,1,796,251850.9454257245,0,194164.9712558824,0,1217.157056569815 -992,1242,2221,-9,2220,-9,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-990.2867043337891,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,13,1,1,280,-4715.963676538432,0,0,0,367.4608893139003 -993,1243,2222,2223,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.385411061745076,8.114438920217214,0,4,-14,57.92309203544426,0,-9,-9,2019,2,1,32,52,1,1,0,10.20521093503947,10.20521093503947,0,0,0,0,0,0,0,0,0,0,37,50.59,46.33,50.4,10,1,1,0,0,5,10,4,0,1008,432397.497781225,116678.9510936833,287869.7687346537,108157.0761148773,3074.213670284753 -993,1243,2223,2222,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.073249274969184,8.059800030567905,0,4,14,23.26229086211855,0,2,2,2019,12,0,32,37,1,0,0,13.92991573765829,13.92991573765829,0,0,0,0,0,0,0,0,7.182512713635106,0,46.33,50.4,37,50.59,8.333333333333334,1,1,0,0,9,10,4,0,1008,432397.497781225,116678.9510936833,287869.7687346537,108157.0761148773,3074.213670284753 -994,1244,2224,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1030.534555937278,-9,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,24.4,42.39,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,206,589.8517538698361,0,0,0,2202.08219737326 -994,1244,2225,-9,2224,-9,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1071.745767864942,-9,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,4,2,0,1,0,9,1,0,206,589.8517538698361,0,0,0,2202.08219737326 -994,1245,2226,-9,2224,-9,1,0,19,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1058.517414975781,-9,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,4,2,0,0,0,9,1,0,711,-2177.616412600468,0,0,0,1.911919412739337 -995,1246,2227,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,0,0,0,0,0,-931.0099053952322,0,2,2,2019,12,0,0,42,3,0,1,0,0,0,0,0,0,27,1,1,0,0,0,36.3,50.77,-9,-9,8.333333333333334,2,3,0,0,7,6,1,1,419,1766.902278530839,0,0,0,0 -996,1247,2228,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1122.160391336937,0,3,3,2019,34,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,2,1,0,151,-611.7381355195112,0,0,0,840.1708357924456 -997,1248,2229,2230,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,9.154549450107636,8.773243863628393,0,6,-2,-76.5265828118318,0,-9,-9,2019,13,1,42,48,1,1,0,21.1174793225542,21.1174793225542,0,0,0,0,0,0,0,0,5.648815589937953,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,6,7,5,1,416.5,-105860.5715282453,121719.8587970083,0,0,5771.307265942013 -997,1248,2230,2229,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.189783131720606,9.025945063151438,0,6,2,-80.16731283773568,0,-9,-9,2019,10,0,42,48,1,0,0,27.74650225396007,27.74650225396007,0,0,0,0,0,0,0,0,5.166921381723373,0,52,54.51,46.08,57.2,8.333333333333334,2,3,0,0,11,7,5,1,416.5,-105860.5715282453,121719.8587970083,0,0,5771.307265942013 -998,1249,2231,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.756043941935442,8.846138671005448,0,0,0,-910.7381723689863,0,2,1,2019,14,2,63,45,1,2,0,10.587191209772,10.587191209772,0,0,0,0,0,0,0,0,7.760153895829973,0,42.19,58.81,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,651,34240.00328923008,66785.12565670763,244536.1978835546,70338.63798771787,3912.275529500692 -999,1250,2232,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-992.6619874424434,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,43.24,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,441,1045.895979859911,0,0,0,1210.043945346127 -1000,1251,2233,-9,2235,2234,1,0,50,0,0,0,2,2,-9,0,3,8.89064774419829,8.890885705197286,0,0,0,-983.8849268775954,0,2,3,2019,12,1,37,0,1,1,0,19.0183928790498,19.0183928790498,0,0,0,0,0,1,1,0,7.057222153309842,0,41.04,46.15,-9,-9,3.333333333333333,1,1,0,0,11,8,5,1,185,1194382.772398874,761303.1911083172,250061.3247067506,0,2958.767183496414 -1000,1252,2234,2235,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,4,7,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.98,49.99,48.68,21.42,5,1,1,0,0,0,8,1,1,1515,248854.8314487025,0,267366.1691057218,0,887.7620420788734 -1000,1252,2235,2234,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,4,-7,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9785201854702065,0,48.68,21.42,38.98,49.99,3.333333333333333,1,1,0,0,0,8,1,1,1515,248854.8314487025,0,267366.1691057218,0,887.7620420788734 -1001,1253,2236,2237,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.732389799308029,9.06183201234075,0,28,4,108.1211932717593,0,2,3,2019,7,0,45,45,1,0,0,13.81025449843642,13.81025449843642,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,392,15239.7226217344,125936.6954358762,0,0,2920.326131923297 -1001,1253,2237,2236,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.394833631628968,7.173314641970249,0,28,-4,-147.2200543188474,0,-9,-9,2019,8,0,33,16,1,0,0,7.364691755985882,7.364691755985882,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,4,4,5,1,392,15239.7226217344,125936.6954358762,0,0,2920.326131923297 -1001,1254,2238,-9,2237,2236,1,1,24,0,0,0,1,1,-9,0,2,8.562815408729806,8.126095965477097,0,0,0,-1039.877840018497,0,2,3,2019,15,4,70,80,1,4,1,8.33708218821122,8.33708218821122,0,0,0,0,0,0,0,0,0,0,33.95,56.45,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,1958,-33007.5876849683,86415.51656130751,212550.1037613908,95261.07468825261,2131.877840688779 -1002,1255,2239,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,5.677710088553769,6.109637730778799,0,0,-1097.819025196252,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.031265022011103,6.196960587869917,47.15,23.24,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,259,727444.5452082508,-111032.9609308965,141979.1081408676,0,1183.924750956611 -1003,1256,2240,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.699907391517796,7.61416097646029,0,0,-1127.413076614527,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.695228403426063,7.457973218071248,57.16,56.15,-9,-9,10,1,1,0,0,0,12,3,1,47,949902.1567983303,497687.9569672847,312003.5814956561,0,1839.797208255301 -1004,1257,2241,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.061030078173578,6.818207570677083,0,0,-933.2868158396888,0,1,1,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.330548540112522,55.93,49.95,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,420,678430.152399412,0,216069.3878776505,0,729.2425429164435 -1005,1258,2242,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.488482638484761,8.597039125798027,6.834556836514328,0,0,-1109.230736494572,0,3,2,2019,9,0,39,35,1,0,0,11.63739286752974,11.63739286752974,0,0,0,0,2,1,1,0,7.44141967509613,0,55.51,43.54,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1170,318028.1493816043,46400.75204726588,249226.2011362589,68451.58687768434,1864.262389972733 -1006,1259,2243,2244,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.084747272662215,8.027971745595909,0,7,-4,-3.179078614484909,0,-9,-9,2019,7,0,40,40,1,0,0,8.299654996256345,8.299654996256345,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,8,12,5,1,300,207676.3703203265,177323.5870599601,405541.6154598286,320653.9619943543,4427.33350462356 -1006,1259,2244,2243,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.322593106010952,9.278837880090979,0,7,4,65.51139421411017,0,-9,-9,2019,9,0,38,43,1,0,0,23.34635846258373,23.34635846258373,0,0,0,0,0,0,0,0,2.437078238112416,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,300,207676.3703203265,177323.5870599601,405541.6154598286,320653.9619943543,4427.33350462356 -1007,1260,2245,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.833220683648837,6.828178246269397,0,0,-940.416251995475,0,2,2,2019,13,0,0,0,4,3,0,0,0,1,0,6.563908178289811,0,0,1,1,0,0,6.57173784288449,30.17,26.91,-9,-9,5,1,1,0,0,4,9,2,1,159,510218.0266457314,91097.9901319506,349664.299076741,0,644.79276852942 -1008,1261,2246,2247,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.769555249669676,8.783558045836143,0,6,-1,22.14418141560563,0,-9,-9,2019,9,0,60,37,1,1,0,8.531802427212584,8.531802427212584,0,0,0,0,0,0,0,0,5.11920154002823,0,53,55,54.2,57.49,8,1,1,0,0,1,13,5,1,247.5,399964.8235459577,-18002.41666338559,288171.9373832406,0,3205.376203262414 -1008,1261,2247,2246,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.869704812097773,7.921746235969961,0,6,1,70.38668740152966,0,2,2,2019,9,0,30,30,1,0,0,8.597153827744801,8.597153827744801,0,0,0,0,14.5,0,0,0,5.463127284558738,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,13,5,1,247.5,399964.8235459577,-18002.41666338559,288171.9373832406,0,3205.376203262414 -1009,1262,2248,2249,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.117996226318752,5.811448103198732,40,-1,-.3783644734866178,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,6.14051493899567,55.96,49.93,54.97,47.63,10,1,1,0,0,2,10,5,1,123.5,3414531.118984282,1002655.413842454,731753.9444190618,0,5265.377060220457 -1009,1262,2249,2248,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.509343505990092,10.06124201101897,0,41,1,-21.83817169960146,0,2,2,2019,9,0,45,47,1,0,0,44.46982490051385,44.46982490051385,0,0,0,0,0,0,0,0,4.574840113495241,0,54.97,47.63,55.96,49.93,8.333333333333334,1,1,0,0,8,10,5,1,123.5,3414531.118984282,1002655.413842454,731753.9444190618,0,5265.377060220457 -1010,1263,2250,-9,2254,2253,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.902699769549,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,2,1,917,240817.6538936364,30939.79075133845,430251.2588782826,189935.1646404956,1157.613034791491 -1010,1263,2251,-9,2254,2253,1,0,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-969.1103255135688,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,2,1,917,240817.6538936364,30939.79075133845,430251.2588782826,189935.1646404956,1157.613034791491 -1010,1263,2252,-9,2254,2253,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.7041704281579,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,917,240817.6538936364,30939.79075133845,430251.2588782826,189935.1646404956,1157.613034791491 -1010,1263,2253,2254,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,6.833867682642107,6.334980415272629,0,7,10,-28.73660076049514,0,-9,-9,2019,7,0,50,45,1,0,0,1.389181033840024,1.389181033840024,0,0,0,0,0,1,1,0,0,0,55.79,52.62,27.95,52.49,8.333333333333334,1,1,0,0,5,7,2,1,917,240817.6538936364,30939.79075133845,430251.2588782826,189935.1646404956,1157.613034791491 -1010,1263,2254,2253,-9,-9,1,0,31,1,3,0,2,2,-9,0,2,7.271505860134222,7.113870314327564,0,7,-10,221.7771491420908,0,2,2,2019,21,6,29,28,1,6,0,4.909181930121728,4.909181930121728,0,0,0,0,0,1,1,0,0,0,27.95,52.49,55.79,52.62,5,1,1,0,0,9,7,2,1,917,240817.6538936364,30939.79075133845,430251.2588782826,189935.1646404956,1157.613034791491 -1011,1264,2255,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.150126777938222,6.255569632230646,0,0,-993.3384680516091,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.371992537221248,52,45,-9,-9,8,1,1,0,0,0,6,2,1,337,443400.3537006672,-26103.13768764045,146083.19429244,0,713.4344213398839 -1011,1265,2256,-9,2255,-9,1,0,59,0,0,0,2,2,-9,1,4,7.757703290828566,7.627339672399742,0,0,0,-987.0056537507245,0,3,-9,2019,26,9,36,40,1,9,0,6.146989915446983,6.146989915446983,0,0,0,0,0,1,1,0,0,0,41.38,55.91,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,444,62653.89931644429,92398.36313660172,0,0,1189.553323136416 -1012,1266,2257,-9,2259,2258,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.097500063212,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,1,627,1375362.255011449,179309.6332501592,777426.2703524649,0,2002.206000058364 -1012,1266,2258,2259,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.284668961459965,7.337924369428213,0,23,2,95.64188140172236,0,-9,-9,2019,10,0,10,10,1,0,0,16.71009504328132,16.71009504328132,0,0,0,0,0,1,1,0,0,0,52,54.51,57.06,57.76,8.333333333333334,3,4,0,0,12,8,3,1,627,1375362.255011449,179309.6332501592,777426.2703524649,0,2002.206000058364 -1012,1266,2259,2258,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,7.331773028049335,7.343561120110778,0,23,-2,17.34542258222154,0,-9,-9,2019,8,0,21,12,1,0,0,7.932472979415136,7.932472979415136,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,3,4,0,0,9,8,3,1,627,1375362.255011449,179309.6332501592,777426.2703524649,0,2002.206000058364 -1012,1266,2260,-9,2259,2258,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.6405718683957,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,1,627,1375362.255011449,179309.6332501592,777426.2703524649,0,2002.206000058364 -1013,1267,2261,2262,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.888805464539228,7.012952910493307,0,6,-1,65.21713184858882,0,2,3,2019,13,3,22,23,1,3,0,9.439709875058819,9.439709875058819,0,0,0,0,0,0,0,0,0,0,51.41,56.15,41.79,55.02,8.333333333333334,1,1,0,0,7,10,5,1,964,1230338.962364671,718810.4846206886,213275.5385857805,45826.28874093919,9082.861665635664 -1013,1267,2262,2261,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.852170832412476,9.797084125964426,0,6,1,-56.10676832302835,0,-9,-9,2019,18,5,70,70,1,5,0,26.8469682159852,26.8469682159852,0,0,0,0,0,0,0,0,0,0,41.79,55.02,51.41,56.15,5,1,1,0,1,7,10,5,1,964,1230338.962364671,718810.4846206886,213275.5385857805,45826.28874093919,9082.861665635664 -1013,1268,2263,-9,2261,2262,1,1,24,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.234726654487,0,2,2,2019,16,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,45.39,57.93,-9,-9,3.333333333333333,1,1,0,0,1,10,2,1,438,-100205.229746436,0,0,0,0 -1014,1269,2264,-9,2268,2265,1,1,27,0,2,0,1,1,-9,0,5,7.841490606188841,7.987185626850504,0,0,0,-1167.482302755644,0,3,3,2019,9,0,37,37,1,1,1,12.14387772424802,12.14387772424802,0,0,0,0,0,0,0,0,0,0,51,60,-9,-9,8,2,3,0,1,9,1,4,0,526,210460.2050263227,-121820.7968790178,0,0,1308.951233798664 -1014,1270,2265,2268,-9,-9,1,1,55,0,2,0,3,3,-9,0,3,0,0,0,29,10,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,57.65,56.13,7,2,3,1,0,0,1,1,0,1475.75,155289.7270114861,20628.89373392457,131903.9307660779,17901.86744084342,0 -1014,1270,2266,-9,2268,2265,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-986.1976217712034,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,1,1,0,1475.75,155289.7270114861,20628.89373392457,131903.9307660779,17901.86744084342,0 -1014,1270,2267,-9,2268,2265,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1103.828995148067,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,2,3,0,0,0,1,1,0,1475.75,155289.7270114861,20628.89373392457,131903.9307660779,17901.86744084342,0 -1014,1270,2268,2265,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,0,0,0,29,-10,0,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,49,49,8,2,3,0,0,0,1,1,0,1475.75,155289.7270114861,20628.89373392457,131903.9307660779,17901.86744084342,0 -1014,1271,2269,-9,2268,2265,1,1,23,0,2,0,1,1,1,0,4,7.024587357220166,6.889427506733563,0,0,0,-1065.72947854926,-9,2,3,2019,11,0,20,0,1,1,1,5.718386051987387,5.718386051987387,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,3,1,2,0,1403,-101046.4544512205,0,0,0,592.4858242688265 -1015,1272,2270,-9,2273,2272,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.763807587248,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,502.5,380222.2703310268,254529.3107389579,146663.2660464504,36808.19397060304,3651.755282471494 -1015,1272,2271,-9,2273,2272,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.9537093867026,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,502.5,380222.2703310268,254529.3107389579,146663.2660464504,36808.19397060304,3651.755282471494 -1015,1272,2272,2273,-9,-9,1,1,47,0,2,0,3,3,-9,0,2,9.468510898416254,9.453981996154232,0,10,-2,-55.5721054445341,0,-9,-9,2019,16,4,40,41,1,4,0,27.09201372194892,27.09201372194892,0,0,0,0,0,0,0,0,.1431802434305129,0,47.61,46.11,51.73,58.82,6.666666666666667,1,1,0,0,11,5,5,1,502.5,380222.2703310268,254529.3107389579,146663.2660464504,36808.19397060304,3651.755282471494 -1015,1272,2273,2272,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,0,0,0,10,2,48.59083661670107,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.354945787207561,0,51.73,58.82,47.61,46.11,8.333333333333334,1,1,0,0,4,5,5,1,502.5,380222.2703310268,254529.3107389579,146663.2660464504,36808.19397060304,3651.755282471494 -1016,1273,2274,2275,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.206509383704248,8.00782937072511,0,8,-12,-22.16735162461694,0,-9,-9,2019,9,0,46,49,1,0,0,9.262478049534758,9.262478049534758,0,0,0,0,0,1,1,0,0,0,51.25,50.81,54.46,13.02,6.666666666666667,4,2,0,0,11,4,4,1,229.5,1032203.267896502,500758.5542701939,280936.3059647867,15916.69954323482,2624.933005117258 -1016,1273,2275,2274,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.126748811674789,6.428609165499534,27,12,7.025187837334572,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.449257127120725,54.46,13.02,51.25,50.81,8.333333333333334,1,1,0,0,8,4,4,1,229.5,1032203.267896502,500758.5542701939,280936.3059647867,15916.69954323482,2624.933005117258 -1017,1274,2276,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.284489085782228,9.190268458637261,0,0,0,-942.4527323489142,0,3,3,2019,6,0,13,15,1,0,0,116.3533530992677,116.3533530992677,0,0,0,0,0,0,0,0,8.001452258033934,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,758,943990.9861605695,791525.690264771,132467.5187135571,0,5684.89247843321 -1018,1275,2277,2278,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.868120013654218,7.970361076203134,5.346698310953421,2,-3,24.64731064737385,0,1,1,2019,8,1,50,40,1,1,0,6.617080865429704,6.617080865429704,0,0,0,0,0,0,0,0,5.062475979363423,0,52.8,53.98,50,57,8.333333333333334,1,1,0,0,2,5,4,0,354,-44773.57478475265,-14973.17108882242,130920.1189879845,80246.6032421547,3523.023454783322 -1018,1275,2278,2277,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.205805835012109,8.390703084037639,0,2,3,22.65289031769009,-9,-9,-9,2019,10,0,38,0,1,1,0,10.71946406635099,10.71946406635099,0,0,0,0,0,0,0,0,2.709738871550879,0,50,57,52.8,53.98,7,4,1,0,0,1,5,4,0,354,-44773.57478475265,-14973.17108882242,130920.1189879845,80246.6032421547,3523.023454783322 -1019,1276,2279,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.264456409935121,7.986583351810872,0,0,0,-956.8645192940644,0,2,-9,2019,36,12,15,15,1,12,0,23.1682752596255,23.1682752596255,0,0,0,0,7,1,0,1,0,0,27.15,47.14,-9,-9,0,3,4,0,1,5,8,3,0,965,107568.2398967149,-85015.93062950132,186308.2276970731,33245.52567298788,1917.733823129218 -1019,1277,2280,-9,2279,-9,1,1,25,0,2,0,2,2,-9,0,4,0,0,0,0,0,-998.2871127048504,0,2,-9,2019,35,12,0,40,3,12,1,0,0,0,0,0,0,0,1,0,1,0,0,37.76,55.72,-9,-9,3.333333333333333,3,4,1,1,4,8,1,0,396,0,0,0,0,634.1763126100929 -1019,1278,2281,-9,2279,-9,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1037.745827129107,0,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,1,0,1,.9455159036071694,0,44.42,48.36,-9,-9,5,3,4,0,1,2,8,1,0,2465,0,0,0,0,-707.6555497004232 -1019,1279,2282,-9,2283,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.114602272994,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,2,0,336.5,-193835.7856168222,0,0,0,343.3505818115465 -1019,1279,2283,-9,2279,-9,1,0,30,0,2,0,2,2,-9,0,4,6.497396287386458,6.813859969413539,0,0,0,-920.5422703314025,-9,2,-9,2019,36,12,8,0,1,12,1,11.66940784690516,11.66940784690516,0,0,0,0,0,1,0,1,0,0,44.42,48.36,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,336.5,-193835.7856168222,0,0,0,343.3505818115465 -1020,1280,2284,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.308946858421519,7.39439809032304,0,0,-976.7133496899742,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.083095915815321,7.511717429205086,55.53,51.55,-9,-9,5,1,1,0,0,4,7,3,1,1156,714678.6447862033,304765.7555480334,431440.4701904434,0,691.562421863298 -1021,1281,2285,-9,2288,2287,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.288060490396,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,0,939.25,86800.47563037839,31072.76850248202,171222.192798497,117931.1240945105,1917.326036241776 -1021,1281,2286,-9,2288,2287,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.738888781607,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,0,939.25,86800.47563037839,31072.76850248202,171222.192798497,117931.1240945105,1917.326036241776 -1021,1281,2287,2288,-9,-9,1,1,39,0,2,0,3,3,-9,0,4,7.956517923103773,7.892344863482266,0,4,7,-60.17432269299366,-9,-9,-9,2019,12,2,40,0,1,2,0,8.7047304881379,8.7047304881379,0,0,0,0,0,1,1,0,2.247022286465229,0,36.86,41.1,47.29,37.58,6.666666666666667,2,3,0,1,6,9,3,0,939.25,86800.47563037839,31072.76850248202,171222.192798497,117931.1240945105,1917.326036241776 -1021,1281,2288,2287,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,6.305372810432255,6.031509245246131,0,4,-7,-6.402473832646901,-9,2,1,2019,14,2,35,0,1,2,0,1.495248926756738,1.495248926756738,0,0,0,0,0,1,1,0,4.231220305358534,0,47.29,37.58,36.86,41.1,3.333333333333333,2,3,0,0,4,9,3,0,939.25,86800.47563037839,31072.76850248202,171222.192798497,117931.1240945105,1917.326036241776 -1022,1282,2289,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-938.1129196234037,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,38,26,-9,-9,0,1,1,0,1,0,6,1,0,646,0,0,0,0,409.2251829075246 -1023,1283,2290,-9,2291,2292,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.39700587691,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,839,10210.80966596356,62103.34356715042,0,0,3361.789893258812 -1023,1283,2291,2292,-9,-9,1,0,40,1,2,0,2,2,-9,1,3,8.227423971865562,8.272766800746275,0,7,-3,88.44304396354865,0,3,2,2019,7,0,36,48,1,0,0,13.15950698107869,13.15950698107869,0,0,0,0,42,1,1,0,0,0,54.37,54.8,59.53,56.44,8.333333333333334,1,1,0,0,7,10,4,1,839,10210.80966596356,62103.34356715042,0,0,3361.789893258812 -1023,1283,2292,2291,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.137348801633006,8.105377561595663,0,7,3,-115.3441483578784,0,-9,-9,2019,6,0,43,43,1,0,0,7.808730080881305,7.808730080881305,0,0,0,0,83,1,1,0,3.914540547083289,0,59.53,56.44,54.37,54.8,8.333333333333334,1,1,0,0,10,10,4,1,839,10210.80966596356,62103.34356715042,0,0,3361.789893258812 -1024,1284,2293,2294,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,7,-20,-18.01362914053918,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,38.34,62.12,8,2,3,0,0,0,8,4,1,584,1215696.950853024,468414.4444995638,686748.0364675076,30477.2278193499,3828.812196019178 -1024,1284,2294,2293,-9,-9,1,1,62,0,2,0,1,1,-9,0,4,9.16015923338888,9.128767272679445,0,7,20,101.5246074781182,0,2,2,2019,10,0,18,42,1,0,0,51.04965484682482,51.04965484682482,0,0,0,0,0,1,1,0,7.72936822535756,0,38.34,62.12,49,55,6.666666666666667,1,1,0,0,8,8,4,1,584,1215696.950853024,468414.4444995638,686748.0364675076,30477.2278193499,3828.812196019178 -1025,1285,2295,2296,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.326834319281231,7.521893868070855,0,5,-1,41.17415519679789,0,-9,-9,2019,11,2,51,27,1,2,0,3.471267950446835,3.471267950446835,0,0,0,0,0,0,0,0,0,0,50.63,50.99,46.08,57.2,6.666666666666667,1,1,0,0,3,10,3,0,773.5,-3305.639977081486,0,0,0,599.049018675796 -1025,1285,2296,2295,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,6.737258295085791,6.795282180331861,0,5,1,71.75546338928032,0,2,3,2019,11,0,16,1,1,0,0,5.290784869164762,5.290784869164762,0,0,0,0,0,0,0,0,0,0,46.08,57.2,50.63,50.99,8.333333333333334,1,1,0,0,3,10,3,0,773.5,-3305.639977081486,0,0,0,599.049018675796 -1026,1286,2297,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1108.923775507082,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,13,1,1,735,-37154.79556524348,0,0,0,1268.157823933708 -1027,1287,2298,-9,2300,2301,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.26989825049,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,631,-14107.32308579566,0,55258.90950876457,14879.95952759758,1932.441461554854 -1027,1287,2299,-9,2300,2301,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.6672945350596,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,631,-14107.32308579566,0,55258.90950876457,14879.95952759758,1932.441461554854 -1027,1287,2300,2301,-9,-9,1,0,28,1,2,0,1,1,-9,0,4,0,0,0,4,-2,-21.39062933880961,-9,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,24.85,67.03,50,57,3.333333333333333,2,3,0,0,4,4,2,1,631,-14107.32308579566,0,55258.90950876457,14879.95952759758,1932.441461554854 -1027,1287,2301,2300,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.712717466962273,7.653740030854767,0,1,2,8.772086147906506,-9,-9,-9,2019,10,0,38,0,1,1,0,7.175266012028929,7.175266012028929,0,0,0,0,0,1,1,0,0,0,50,57,24.85,67.03,7,2,3,0,0,1,4,2,1,631,-14107.32308579566,0,55258.90950876457,14879.95952759758,1932.441461554854 -1028,1288,2302,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.83248450876047,6.849185552849433,0,0,-1042.842563517633,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.694091464746094,66.06,35.51,-9,-9,10,1,1,0,0,0,10,2,1,295,-9845.048679013271,141853.2170368717,57293.18467147656,0,1279.144114935793 -1029,1289,2303,2304,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,6.843674822246899,6.899647372054088,0,1,-3,32.55201679064267,-9,-9,-9,2019,13,1,45,0,1,1,0,2.22465632791801,2.22465632791801,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,2,4,3,0,795,-109698.074277808,9271.297642972648,0,0,1903.379509804872 -1029,1289,2304,2303,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.879774352997058,7.643235325429352,0,1,3,-59.31142608047059,-9,2,1,2019,9,0,39,0,1,0,0,8.549310284129971,8.549310284129971,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,4,3,0,795,-109698.074277808,9271.297642972648,0,0,1903.379509804872 -1030,1290,2305,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,7.559924693693053,7.494783817961138,0,0,0,-1100.378772484628,0,3,-9,2019,19,8,32,40,1,8,0,7.972279955485803,7.972279955485803,0,0,0,0,0,1,1,0,.6826422551121446,0,49.25,15.59,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,335,-102182.789779558,51990.24890477178,0,0,1338.153783183622 -1031,1291,2306,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,6.789788743812421,6.91395204218248,0,0,0,-976.4730539155443,-9,2,2,2019,16,5,25,0,1,5,0,3.865518659751197,3.865518659751197,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,6.666666666666667,1,1,0,0,1,12,2,1,501,-24010.45962968333,0,0,0,1288.86235274144 -1032,1292,2307,2308,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,8.155361130461968,7.722838438788284,32,-10,8.945022911213529,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.127185787719418,8.205707894798161,56.47,59.4,57.21,52.23,8.333333333333334,1,1,0,0,0,7,5,1,534.5,3954862.001753432,726902.650300927,1151177.160437683,0,5332.555166866186 -1032,1292,2308,2307,-9,-9,1,1,81,0,0,0,1,1,-9,0,5,0,8.401023381924785,8.615364093347628,28,10,-9.952655153015426,0,3,2,2019,15,5,0,0,4,5,0,0,0,1,1.475952664481516,11.95436179648831,25.71744800966324,5.48,1,1,0,7.888415117038559,8.597655569814988,57.21,52.23,56.47,59.4,8.333333333333334,1,1,0,0,0,7,5,1,534.5,3954862.001753432,726902.650300927,1151177.160437683,0,5332.555166866186 -1033,1293,2309,-9,2311,2310,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.660815213992,-9,1,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1.134370066782897,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,228,0,0,0,0,465.3924998366371 -1033,1294,2310,2311,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.23582352895591,8.991609753441939,0,2,7,111.4194612823328,0,-9,-9,2019,14,4,38,40,1,4,0,28.43207410182069,28.43207410182069,0,0,0,0,0,0,0,0,7.917666291653174,0,49.75,50.01,60.06,37.11,8.333333333333334,1,1,0,0,9,6,5,1,851.5,1244274.293738376,834773.6692133539,184358.236804719,0,7102.805062937326 -1033,1294,2311,2310,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.429524146976973,9.028467160498748,0,2,-7,-29.21298220221834,0,2,2,2019,11,0,57,47,1,0,0,19.00663650385566,19.00663650385566,0,0,0,0,0,0,0,0,4.112201400379033,0,60.06,37.11,49.75,50.01,8.333333333333334,1,1,0,0,9,6,5,1,851.5,1244274.293738376,834773.6692133539,184358.236804719,0,7102.805062937326 -1034,1295,2312,2314,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,8.914225536948036,9.043477306490365,0,6,4,30.29371485482815,0,2,2,2019,6,0,60,60,1,0,0,12.28960937913285,12.28960937913285,0,0,0,0,0,1,1,0,0,0,54.79,55.86,44.36,56.72,8.333333333333334,1,1,0,0,7,9,4,1,905.6666666666666,141999.7341290413,48739.14929088778,224040.5881718216,143634.9232345856,2909.070717857387 -1034,1295,2313,-9,2314,2312,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-915.9627947937532,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,905.6666666666666,141999.7341290413,48739.14929088778,224040.5881718216,143634.9232345856,2909.070717857387 -1034,1295,2314,2312,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,0,0,0,6,-4,-46.48638710524739,0,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.36,56.72,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,1,905.6666666666666,141999.7341290413,48739.14929088778,224040.5881718216,143634.9232345856,2909.070717857387 -1035,1296,2315,2317,-9,-9,1,0,35,0,1,0,3,3,-9,0,3,0,0,0,1,0,119.0709879260342,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,47,54.2,57.49,8.333333333333334,1,1,1,0,3,11,3,1,1046.666666666667,615378.5599368756,519976.3303165601,172454.1873141999,101269.185484827,2038.126831327046 -1035,1296,2316,-9,2315,2317,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.6938814428461,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1046.666666666667,615378.5599368756,519976.3303165601,172454.1873141999,101269.185484827,2038.126831327046 -1035,1296,2317,2315,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.179191468949211,8.226301646157049,0,1,0,-22.04032833146097,-9,2,2,2019,0,0,37,0,1,0,0,13.70203506473987,13.70203506473987,0,0,0,.8233823388048123,14.5,1,1,0,0,0,54.2,57.49,38.51,47,8.333333333333334,1,1,0,0,9,11,3,1,1046.666666666667,615378.5599368756,519976.3303165601,172454.1873141999,101269.185484827,2038.126831327046 -1036,1297,2318,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.920199462173273,8.460168139596508,7.051560779632039,0,0,-1047.751978967661,0,1,1,2019,8,0,23,19,1,0,0,12.41903638194648,12.41903638194648,0,0,0,0,14.5,0,0,0,4.566855644259364,7.049063167351444,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,1672,150479.114836459,36518.72902697425,183656.5476553592,27945.70388982368,1693.020319670924 -1037,1298,2319,2321,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.085518553296948,8.276755994953851,0,9,11,28.82719496280664,0,-9,-9,2019,10,0,49,49,1,0,0,7.322121502279485,7.322121502279485,0,0,0,0,0,1,1,0,0,0,59.8,39.25,39.68,53.79,6.666666666666667,1,1,0,0,5,5,3,1,792,231872.6389200153,183615.9809740739,332620.9179631453,279853.6307002561,2175.160609911964 -1037,1298,2320,-9,2321,2319,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.797957154495,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,792,231872.6389200153,183615.9809740739,332620.9179631453,279853.6307002561,2175.160609911964 -1037,1298,2321,2319,-9,-9,1,0,29,1,3,0,2,2,-9,0,2,7.049341433599254,7.017767306669601,0,9,-11,-103.354017064562,0,-9,2,2019,13,1,18,20,1,1,0,7.637819510727183,7.637819510727183,0,0,0,0,0,1,1,0,0,0,39.68,53.79,59.8,39.25,5,1,1,0,0,5,5,3,1,792,231872.6389200153,183615.9809740739,332620.9179631453,279853.6307002561,2175.160609911964 -1037,1298,2322,-9,2321,2319,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.1620155661565,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,792,231872.6389200153,183615.9809740739,332620.9179631453,279853.6307002561,2175.160609911964 -1037,1298,2323,-9,2321,2319,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.689611081758,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,792,231872.6389200153,183615.9809740739,332620.9179631453,279853.6307002561,2175.160609911964 -1038,1299,2324,2325,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.607434116788244,8.3926401396026,0,9,11,-5.996006166369376,0,2,2,2019,6,0,24,32,1,0,0,28.39356500986389,28.39356500986389,0,0,0,0,0,0,0,0,5.786077541011514,0,57.9,51.84,55.71,24.41,8.333333333333334,1,1,0,0,10,4,5,1,1104,303807.6343113047,95223.1228543365,204666.8703273634,22276.31703600498,4939.33609271945 -1038,1299,2325,2324,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.890520838378617,9.011308415337847,0,9,-11,100.4998698279569,0,2,2,2019,15,6,38,38,1,6,0,20.93125316650645,20.93125316650645,0,0,0,0,14.5,0,0,0,5.670996585578769,0,55.71,24.41,57.9,51.84,6.666666666666667,1,1,0,0,10,4,5,1,1104,303807.6343113047,95223.1228543365,204666.8703273634,22276.31703600498,4939.33609271945 -1039,1300,2326,2327,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.128596184188783,8.803730163329092,8.295634084889127,30,2,-103.4797556818044,0,2,2,2019,10,0,30,30,1,0,0,12.11935825374776,12.11935825374776,0,0,0,0,0,0,0,0,0,8.421691602477088,53.14,45.74,35.71,32.06,6.666666666666667,1,1,0,0,12,9,5,1,592.5,847459.511845177,634044.0139927998,777652.1637801508,435835.2244990688,4493.166754334092 -1039,1300,2327,2326,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.191847355618407,7.056564462007691,6.628776546221723,30,-2,78.82671037188175,0,-9,-9,2019,17,7,14,15,1,7,0,8.000497976737849,8.000497976737849,0,0,0,0,0,0,0,0,0,6.737521125793403,35.71,32.06,53.14,45.74,3.333333333333333,1,1,0,0,5,9,5,1,592.5,847459.511845177,634044.0139927998,777652.1637801508,435835.2244990688,4493.166754334092 -1039,1301,2328,-9,2327,2326,1,0,26,0,0,0,1,1,-9,0,3,8.304445721642617,8.247254216274923,0,0,0,-957.2677825185942,0,1,1,2019,15,3,43,43,1,3,1,8.684355852276724,8.684355852276724,0,0,0,0,0,0,0,0,0,0,32.93,55.18,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,1151,0,0,0,0,1447.262246870872 -1040,1302,2329,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.859891849141994,7.947963211408277,0,0,0,-1023.10024459949,0,3,3,2019,9,3,46,40,1,3,0,6.682836858067406,6.682836858067406,0,0,0,0,0,1,1,0,0,0,37.13,50.16,-9,-9,6.666666666666667,3,4,0,0,10,2,3,1,363,65778.28209312708,280674.8396251861,0,0,1413.048247894185 -1041,1303,2330,2331,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.258777564734075,8.491616418481932,6.716315295828256,2,4,-21.0730386789871,0,3,3,2019,10,1,37,41,1,1,0,13.08614022906136,13.08614022906136,0,0,0,0,0,0,0,0,0,7.201190211808847,44.26,43.52,43.31,38.38,3.333333333333333,1,1,0,0,11,4,4,1,393.5,1282091.920742364,506963.8317827167,259823.8364003736,0,2284.988072298139 -1041,1303,2331,2330,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,0,0,0,2,-4,77.63015051043148,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.31,38.38,44.26,43.52,5,1,1,1,0,2,4,4,1,393.5,1282091.920742364,506963.8317827167,259823.8364003736,0,2284.988072298139 -1042,1304,2332,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,0,0,0,0,-968.1029875351119,0,2,-9,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,3,4,0,0,0,8,1,0,111,56623.19754276259,0,0,0,468.6781323665355 -1043,1305,2333,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.568738467378566,8.44410470522206,0,0,0,-922.7558125425692,0,2,2,2019,12,0,34,35,1,0,0,17.5330256831659,17.5330256831659,0,0,0,0,0,1,1,0,3.796248703053667,0,44.51,40.48,-9,-9,5,1,1,0,0,9,6,4,1,1386.5,377345.5987418772,165563.3053858335,247207.2651987317,133945.2686554749,1898.698099108955 -1043,1305,2334,-9,2333,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.491712232968,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,4,1,1386.5,377345.5987418772,165563.3053858335,247207.2651987317,133945.2686554749,1898.698099108955 -1044,1306,2335,2336,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,2,-6,-107.4414311470465,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,23.26,50.2,52.61,3.333333333333333,1,1,0,0,0,4,3,0,1029,886686.757689537,431022.5473754328,300094.4413795572,0,2587.991316818862 -1044,1306,2336,2335,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.120352291347434,7.882252985823603,4.849240744465444,2,6,69.31205587355129,0,-9,-9,2019,10,0,44,54,1,0,0,8.086227824331568,8.086227824331568,0,0,0,0,7,1,1,0,0,5.030897165163475,50.2,52.61,46.35,23.26,5,1,1,0,0,10,4,3,0,1029,886686.757689537,431022.5473754328,300094.4413795572,0,2587.991316818862 -1045,1307,2337,-9,-9,-9,1,1,42,0,0,0,1,1,-9,1,2,7.377496690427044,7.316531141389742,0,0,0,-957.4049993067549,0,2,2,2019,10,1,6,4,1,1,0,34.60301969373393,34.60301969373393,0,0,0,0,0,1,1,0,0,0,51.8,38.82,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,2312,-135892.5309976095,0,0,0,2506.390037834031 -1046,1308,2338,-9,2341,2339,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.591920461458,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,396,588063.6303767583,280437.9863807339,276199.2916526402,0,4895.223195423049 -1046,1308,2339,2341,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,9.108577483916907,9.105908175786849,0,18,4,83.46853737615348,0,2,3,2019,9,0,42,41,1,0,0,23.87989385315148,23.87989385315148,0,0,0,0,7,1,1,0,4.717644222615045,0,51.14,60.45,54.69,57.47,8.333333333333334,1,1,0,0,10,12,5,1,396,588063.6303767583,280437.9863807339,276199.2916526402,0,4895.223195423049 -1046,1308,2340,-9,2341,2339,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.30648700845,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,396,588063.6303767583,280437.9863807339,276199.2916526402,0,4895.223195423049 -1046,1308,2341,2339,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.306904705682046,8.114139531565861,0,19,-4,42.80955629533069,0,2,2,2019,12,0,38,38,1,0,0,11.20876637343333,11.20876637343333,0,0,0,0,0,1,1,0,0,0,54.69,57.47,51.14,60.45,10,1,1,0,0,9,12,5,1,396,588063.6303767583,280437.9863807339,276199.2916526402,0,4895.223195423049 -1047,1309,2342,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.654666088479773,8.738164630490365,0,0,0,-1002.090258573307,0,2,2,2019,2,0,37,37,1,0,0,17.63816236938644,17.63816236938644,0,0,0,0,0,0,0,0,5.503303930279003,0,59.19,51.29,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,627,134316.8035424715,-27796.65165094135,101378.1521488273,31013.67364218532,2315.207271296841 -1048,1310,2343,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.522939527914943,8.589482810251967,0,0,0,-1046.263593825946,0,2,2,2019,11,0,37,37,1,1,0,17.76138054018121,17.76138054018121,0,0,0,0,0,1,1,0,3.670892326352727,0,49,56,-9,-9,7,3,4,0,0,11,6,5,0,389,104528.8598821386,15743.48463952873,0,0,2204.378921618185 -1049,1311,2344,2345,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.224751897506367,8.106618567403286,0,26,-8,-4.82493846586228,0,-9,-9,2019,27,9,41,40,1,9,0,9.67234380564077,9.67234380564077,0,0,0,0,7,0,0,0,3.601413068912519,0,10.14,58.03,54.96,53.17,3.333333333333333,1,1,0,0,6,12,5,1,666.5,102233.9074775871,159533.3219023992,193798.4254948946,78212.7975920579,2972.889082394282 -1049,1311,2345,2344,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.315006394046923,8.513294819731694,0,26,8,103.6256554534594,0,3,3,2019,7,0,25,57,1,0,0,19.07034150280656,19.07034150280656,0,0,0,0,0,0,0,0,0,0,54.96,53.17,10.14,58.03,8.333333333333334,1,1,0,0,7,12,5,1,666.5,102233.9074775871,159533.3219023992,193798.4254948946,78212.7975920579,2972.889082394282 -1050,1312,2346,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.204045522804114,8.071502047175271,0,0,0,-988.310084524566,0,2,2,2019,8,0,17,22,1,0,0,28.45640205426847,28.45640205426847,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,2724,238697.4930420103,135489.1075016779,210732.747250481,0,1598.979097720386 -1051,1313,2347,-9,-9,-9,1,1,33,0,0,0,2,2,-9,1,5,5.383365769217934,5.207971102512057,0,0,0,-877.0017730398941,0,2,1,2019,8,1,50,50,1,1,0,.5670118186284,.5670118186284,0,0,0,0,0,1,1,0,1.011170362382973,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,8,7,2,0,259,48576.98605574558,0,0,0,237.723380369204 -1052,1314,2348,-9,2352,2351,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-983.0588986170992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,366,151195.2206406313,-25896.56540969145,82255.16896225148,0,2297.623103122786 -1052,1314,2349,-9,2352,2351,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.058005930177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,366,151195.2206406313,-25896.56540969145,82255.16896225148,0,2297.623103122786 -1052,1314,2350,-9,2352,2351,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-925.5128422847494,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,2,1,366,151195.2206406313,-25896.56540969145,82255.16896225148,0,2297.623103122786 -1052,1314,2351,2352,-9,-9,1,1,39,1,4,0,2,2,-9,0,4,7.663097578722941,7.624188543213056,0,9,11,51.45900383305531,0,-9,-9,2019,10,0,40,24,1,1,0,4.032150880671585,4.032150880671585,0,0,0,0,0,1,1,0,0,0,51,57,40.34,54.53,7,2,3,0,0,4,4,2,1,366,151195.2206406313,-25896.56540969145,82255.16896225148,0,2297.623103122786 -1052,1314,2352,2351,-9,-9,1,0,28,1,4,0,2,2,-9,0,5,0,0,0,14,-11,2.642092717445099,0,3,3,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,2.856101201742532,0,40.34,54.53,51,57,1.666666666666667,2,3,0,0,0,4,2,1,366,151195.2206406313,-25896.56540969145,82255.16896225148,0,2297.623103122786 -1053,1315,2353,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.738175247015,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.67,35.03,-9,-9,5,1,1,0,0,0,1,1,0,120,95632.87064393114,0,0,0,848.8532903904132 -1054,1316,2354,-9,2355,2356,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-967.2682993121542,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,5,5,1,495.3333333333333,1414019.091920933,379966.3597413139,263592.7806836723,0,5087.209198455524 -1054,1316,2355,2356,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.082099889318883,8.286978025684126,0,9,-11,-55.53648810173406,0,2,2,2019,6,0,37,35,1,0,0,8.862463281648624,8.862463281648624,0,0,0,0,0,1,1,0,7.560285806360325,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,5,5,1,495.3333333333333,1414019.091920933,379966.3597413139,263592.7806836723,0,5087.209198455524 -1054,1316,2356,2355,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.838185536708091,9.141941508154579,0,9,11,-12.32937412523415,0,3,3,2019,9,0,15,10,1,0,0,53.07187838968768,53.07187838968768,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,495.3333333333333,1414019.091920933,379966.3597413139,263592.7806836723,0,5087.209198455524 -1055,1317,2357,2358,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,1,0,22.69403273700058,0,0,1,1,0,0,0,31.44,22.39,39.39,37.66,3.333333333333333,1,1,0,1,0,13,1,1,975,-8805.072472210788,0,0,0,2291.838833321994 -1055,1317,2358,2357,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,8,-5,0,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,37.66,31.44,22.39,1.666666666666667,1,1,0,1,0,13,1,1,975,-8805.072472210788,0,0,0,2291.838833321994 -1056,1318,2359,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,6.959229631440233,6.937876207121795,20,12,44.63183189286361,0,-9,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2.760434557304474,6.762007920253504,49.72,39.53,57.97,37.36,6.666666666666667,1,1,1,0,8,6,2,1,722,123252.8530006065,88410.26906824637,0,0,421.6302469010299 -1056,1319,2360,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,6.415354137794785,6.297123136463377,0,10,-12,24.49024322352196,0,-9,-9,2019,11,1,20,10,1,1,0,3.856201210312518,3.856201210312518,0,0,0,0,0,0,0,0,0,0,57.97,37.36,49.72,39.53,5,1,1,0,0,9,6,2,1,723,208238.4136123553,64625.57983944496,0,0,671.977226709276 -1057,1320,2361,-9,2364,2363,1,0,27,0,0,0,1,1,-9,0,3,7.946238807349237,7.83292886036497,0,0,0,-1088.041461033464,0,3,3,2019,9,0,33,37,1,0,1,7.903013712093548,7.903013712093548,0,0,0,0,0,1,1,0,0,0,46.16,54.36,-9,-9,8.333333333333334,2,3,0,0,3,2,3,1,1620,-146559.7870983682,0,0,0,986.1943215684527 -1057,1321,2362,-9,2364,2363,1,1,24,0,0,0,2,2,-9,0,3,7.762108744542575,8.003181675019171,0,0,0,-1091.949999519348,0,3,3,2019,18,6,40,40,1,6,1,8.347054273089828,8.347054273089828,0,0,0,0,0,1,1,0,0,0,36.63,50.87,-9,-9,3.333333333333333,2,3,0,0,4,2,4,1,330,147101.3267418457,8364.305232090774,0,0,966.0204364166565 -1057,1322,2363,2364,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,0,0,42,1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.63,54.22,45.06,36.24,8.333333333333334,2,3,0,0,0,2,1,1,1132,191382.6963378779,0,194537.7129944344,0,522.6940893909033 -1057,1322,2364,2363,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,42,-1,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,36.24,49.63,54.22,6.666666666666667,2,3,0,0,0,2,1,1,1132,191382.6963378779,0,194537.7129944344,0,522.6940893909033 -1058,1323,2365,2366,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,4,-8,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.89,18.61,52.24,50.75,6.666666666666667,1,1,0,0,0,10,1,0,849.5,-32849.74369755246,0,0,0,2446.129744269283 -1058,1323,2366,2365,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,4,8,0,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,52.24,50.75,27.89,18.61,6.666666666666667,1,1,0,0,7,10,1,0,849.5,-32849.74369755246,0,0,0,2446.129744269283 -1059,1324,2367,2368,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,32,3,0,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.58,17.9,47.46,32.43,6.666666666666667,1,1,0,0,7,11,1,1,1154.5,-11288.28643427122,93089.03433867593,0,0,2299.917209492099 -1059,1324,2368,2367,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,32,-3,0,0,3,3,2019,13,1,0,14,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,32.43,58.58,17.9,6.666666666666667,1,1,0,0,11,11,1,1,1154.5,-11288.28643427122,93089.03433867593,0,0,2299.917209492099 -1060,1325,2369,2370,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.205215722204789,8.34816425202056,43,8,183.8673938812309,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.196920072102391,8.019316862868948,59.95,25.68,46.44,22.61,8.333333333333334,1,1,0,0,0,9,3,1,1011.5,1387658.497479612,364649.3685348703,410531.0707652768,0,2390.093899764825 -1060,1325,2370,2369,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,43,-8,40.71473635277979,0,2,-9,2019,21,7,0,0,4,7,0,0,0,1,0,13.03078267884204,0,0,1,1,0,2.076412761675637,0,46.44,22.61,59.95,25.68,3.333333333333333,1,1,0,0,0,9,3,1,1011.5,1387658.497479612,364649.3685348703,410531.0707652768,0,2390.093899764825 -1061,1326,2371,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,7.163246150901164,7.266691849883122,0,0,-1077.354494686253,0,2,2,2019,17,4,0,0,4,4,0,0,0,1,6.786125635066666,.5296792399745334,59.91602513701033,0,1,1,0,5.981293468491028,7.322712112650621,27.89,18.61,-9,-9,6.666666666666667,1,1,0,0,0,12,3,0,746,383039.5599740708,282866.9525535456,383175.6821785301,0,2875.547843677833 -1062,1327,2372,2373,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,0,0,31,0,-90.62017951378039,0,2,2,2019,6,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,5.171972101290416,0,55.18,49.42,57.09,46.7,6.666666666666667,1,1,1,0,10,7,3,1,2918.5,903853.9924268399,81609.70367655568,659968.3223713407,0,1331.441516698569 -1062,1327,2373,2372,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.986301205710344,7.653939026880188,0,31,0,-38.31610721029225,0,2,3,2019,6,0,32,33,1,0,0,8.770662386889828,8.770662386889828,0,0,0,0,0,0,0,0,2.900684823812827,0,57.09,46.7,55.18,49.42,8.333333333333334,1,1,0,0,10,7,3,1,2918.5,903853.9924268399,81609.70367655568,659968.3223713407,0,1331.441516698569 -1062,1328,2374,-9,2373,2372,1,0,23,0,0,0,2,2,-9,0,2,7.856199334917946,8.355408270213754,0,0,0,-918.6735322582661,0,2,2,2019,20,6,38,40,1,6,1,9.171070772136421,9.171070772136421,0,0,0,.6431744774339645,0,0,0,0,3.857132987126538,0,35.33,41.01,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2229,-65186.88687733422,-24586.84677767053,0,0,1591.434753478465 -1062,1329,2375,-9,2373,2372,1,0,21,0,0,0,2,2,-9,0,4,7.28999003129142,7.412252833189623,0,0,0,-972.4397823150355,0,2,1,2019,30,12,38,38,1,12,1,5.434620526112283,5.434620526112283,0,0,0,0,0,0,0,0,0,0,36.62,58.96,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,332,-55283.6004350992,42094.7078867852,0,0,598.2939075126135 -1063,1330,2376,2377,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.882283708289787,9.086221724370221,0,3,2,.7131747619435342,0,-9,-9,2019,5,0,43,50,1,0,0,19.46564504050655,19.46564504050655,0,0,0,0,0,0,0,0,3.343381229976135,0,49.59,58.37,48.28,60.18,8.333333333333334,1,1,0,0,6,9,5,1,496,701209.8121043526,194415.8813394777,438562.1628777744,318378.235154089,5494.088670900153 -1063,1330,2377,2376,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,9.108502552329034,8.900105277120611,0,3,-2,104.2339591158457,-9,-9,-9,2019,9,1,42,0,1,1,0,19.61447438717238,19.61447438717238,0,0,0,0,0,0,0,0,3.824406118471915,0,48.28,60.18,49.59,58.37,8.333333333333334,1,1,0,0,5,9,5,1,496,701209.8121043526,194415.8813394777,438562.1628777744,318378.235154089,5494.088670900153 -1064,1331,2378,2379,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.253324596516961,8.684232917269343,0,9,-1,-29.91817952532926,0,-9,-9,2019,17,5,40,35,1,5,0,13.1780509307846,13.1780509307846,0,0,0,0,0,0,0,0,2.156617994716017,0,49.41,58.28,25.84,63.8,5,1,1,0,0,13,7,4,1,133,69588.13141676784,72600.30863343831,0,0,3251.520990859083 -1064,1331,2379,2378,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.450160238566809,7.675454241714088,0,9,1,-7.437626486509573,0,2,2,2019,25,12,16,28,1,12,0,12.54479852190411,12.54479852190411,0,0,0,0,5.48,0,0,0,.502961766559274,0,25.84,63.8,49.41,58.28,3.333333333333333,1,1,0,0,13,7,4,1,133,69588.13141676784,72600.30863343831,0,0,3251.520990859083 -1065,1332,2380,-9,2381,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.605044705301,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,962,0,0,0,0,1636.795668646205 -1065,1332,2381,-9,-9,-9,1,0,37,0,3,0,2,2,-9,1,1,0,0,0,0,0,-953.3672547393533,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,2.516838215679464,0,40.07,30.64,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,962,0,0,0,0,1636.795668646205 -1066,1333,2382,2384,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,9.167033084668136,8.995365700911657,0,7,-5,-12.80399880489325,0,3,3,2019,13,3,48,0,1,3,0,30.16956560165271,30.16956560165271,0,0,0,0,0,1,1,0,.1163012660900918,0,30.94,61.65,43.34,60.31,6.666666666666667,3,4,0,0,6,8,5,0,643.25,234033.2981232586,0,248060.2269874457,120366.8891815721,7364.023834181918 -1066,1333,2383,-9,2384,2382,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.4724693827649,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,0,643.25,234033.2981232586,0,248060.2269874457,120366.8891815721,7364.023834181918 -1066,1333,2384,2382,-9,-9,1,0,36,1,2,0,2,2,-9,0,5,8.971058043737404,9.024474613772179,0,7,5,69.51897456059646,0,-9,-9,2019,13,1,37,51,1,1,0,19.5306783394879,19.5306783394879,0,0,0,0,0,1,1,0,0,0,43.34,60.31,30.94,61.65,8.333333333333334,1,1,0,0,9,8,5,0,643.25,234033.2981232586,0,248060.2269874457,120366.8891815721,7364.023834181918 -1066,1333,2385,-9,2384,2382,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.7016131053917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,0,643.25,234033.2981232586,0,248060.2269874457,120366.8891815721,7364.023834181918 -1067,1334,2386,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1035.766088637265,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.529883058049981,0,0,1,1,0,0,0,29.61,21.77,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,70,-21381.37836113217,0,0,0,1285.978791640568 -1068,1335,2387,2389,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.141638165322078,8.173439270372718,0,5,2,31.2850648722681,0,-9,-9,2019,8,0,45,44,1,0,0,9.423369464099318,9.423369464099318,0,0,0,0,0,0,0,0,0,0,48.87,58.55,44.43,56.74,8.333333333333334,1,1,0,0,9,7,5,1,411,329690.355015033,127864.1117679898,340654.0265715604,94735.95037199125,4897.002809137899 -1068,1335,2388,-9,2387,2389,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.914075246598,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,411,329690.355015033,127864.1117679898,340654.0265715604,94735.95037199125,4897.002809137899 -1068,1335,2389,2387,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,9.053562776246078,9.049854243278139,0,5,-2,128.6864235396588,0,3,2,2019,12,0,48,47,1,0,0,18.23085593498996,18.23085593498996,0,0,0,0,0,0,0,0,6.960440174373009,0,44.43,56.74,48.87,58.55,8.333333333333334,1,1,0,0,8,7,5,1,411,329690.355015033,127864.1117679898,340654.0265715604,94735.95037199125,4897.002809137899 -1069,1336,2390,2391,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,6.376181690158915,6.094138747403973,6,3,75.29276668310516,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.191294188481172,6.325375009156313,57.87,41.33,50.08,55.33,6.666666666666667,1,1,0,0,7,6,2,1,713.5,348937.0818593411,207233.1897375744,248461.5366823892,-3113.328743171297,844.1240927412564 -1069,1336,2391,2390,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-178.7860870157728,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.08,55.33,57.87,41.33,8.333333333333334,1,1,0,1,7,6,2,1,713.5,348937.0818593411,207233.1897375744,248461.5366823892,-3113.328743171297,844.1240927412564 -1070,1337,2392,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1122.533298755603,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.973857362314884,0,40.3,22.27,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,181,-67609.31622281038,0,0,0,1117.927117309123 -1071,1338,2393,2395,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.760855181289207,8.885593564544894,0,7,0,91.22972649918725,0,-9,-9,2019,14,4,40,40,1,4,0,20.99227422394975,20.99227422394975,0,0,0,0,0,1,1,0,1.47707009067463,0,49.27,56.95,49.92,52.49,8.333333333333334,1,1,0,0,8,9,5,1,282.25,330425.6402782341,122585.2846023679,347893.7936393047,256023.0239512844,4137.428402441327 -1071,1338,2394,-9,2395,2393,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.0934856668641,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,282.25,330425.6402782341,122585.2846023679,347893.7936393047,256023.0239512844,4137.428402441327 -1071,1338,2395,2393,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.308257788949915,8.203318206195947,0,7,0,-23.90475034877625,0,3,3,2019,9,1,28,30,1,1,0,17.26796555949604,17.26796555949604,0,0,0,0,0,1,1,0,0,0,49.92,52.49,49.27,56.95,8.333333333333334,1,1,0,0,8,9,5,1,282.25,330425.6402782341,122585.2846023679,347893.7936393047,256023.0239512844,4137.428402441327 -1071,1338,2396,-9,2395,2393,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.218617441169,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.944477972396724,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,282.25,330425.6402782341,122585.2846023679,347893.7936393047,256023.0239512844,4137.428402441327 -1072,1339,2397,2398,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,33,-5,0,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,63.41,39.7,8.333333333333334,1,1,0,0,0,5,1,1,429.5,145510.3256838456,17086.57569774575,177751.2955153642,0,1103.536975259485 -1072,1339,2398,2397,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,33,5,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,61.27,46.03,8.333333333333334,1,1,0,0,0,5,1,1,429.5,145510.3256838456,17086.57569774575,177751.2955153642,0,1103.536975259485 -1073,1340,2399,2400,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.581611401629058,9.042491167925492,6.504658943184002,33,2,-66.27821123081004,0,-9,-9,2019,11,0,55,57,1,0,0,13.62049010987549,13.62049010987549,0,0,0,0,2,0,0,0,3.256582321903253,6.418573653697986,37.41,41.3,54.2,57.49,6.666666666666667,1,1,0,0,9,6,5,1,1755.5,2632666.017998197,2003556.506355204,472179.9375330794,0,4933.904785013352 -1073,1340,2400,2399,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.507038780075957,8.415172109388596,0,33,-2,116.5656928307263,0,3,2,2019,11,0,37,37,1,0,0,14.04990846333468,14.04990846333468,0,0,0,0,0,0,0,0,6.254436860436352,0,54.2,57.49,37.41,41.3,8.333333333333334,2,3,0,0,8,6,5,1,1755.5,2632666.017998197,2003556.506355204,472179.9375330794,0,4933.904785013352 -1074,1341,2401,2402,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-5,-50.34142969838488,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.23,31.28,53.14,46.96,10,1,1,0,0,0,13,2,1,1823.5,618201.1617163024,99856.14094152585,320224.7229167176,0,1469.867476280217 -1074,1341,2402,2401,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.918698714549202,6.972861488629233,51,5,109.7742988855338,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.505333133240655,53.14,46.96,64.23,31.28,8.333333333333334,1,1,0,0,0,13,2,1,1823.5,618201.1617163024,99856.14094152585,320224.7229167176,0,1469.867476280217 -1075,1342,2403,2404,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,6,-5,-18.46847268104091,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,48,57.09,46.7,7,1,1,0,0,6,12,3,1,1370,1264869.97859074,600994.4826533387,267086.3163844541,0,2468.709837388651 -1075,1342,2404,2403,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.783314154268166,7.735638345624836,6,5,-5.644087778543485,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.347326216700911,8.034001291558194,57.09,46.7,50,48,8.333333333333334,1,1,0,0,5,12,3,1,1370,1264869.97859074,600994.4826533387,267086.3163844541,0,2468.709837388651 -1076,1343,2405,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.858411435553928,6.990293942537678,0,0,-905.5628413071345,0,2,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.7161497250492649,6.97849139887924,47.78,25.43,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,797,426984.1995826119,108399.9085162318,92514.06528604469,0,1180.931381109622 -1077,1344,2406,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.423873824779331,7.443979433521958,0,0,-1060.400689326277,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.929996633471096,7.46343259380459,56.92,44.01,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,210,760311.3242669434,539117.3029154611,219846.4599098673,0,1487.111389311775 -1078,1345,2407,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.159834011591467,8.079253383221264,0,0,0,-1066.445191062484,0,-9,-9,2019,12,1,43,41,1,1,0,10.8512701878685,10.8512701878685,0,0,0,0,27,1,1,0,0,0,31.17,47.95,-9,-9,1.666666666666667,1,1,0,1,13,11,4,0,3190,-70788.91679704131,54535.55305675411,0,0,1642.980089435719 -1079,1346,2408,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.706114593792709,7.914699327372528,0,0,0,-927.9576788084313,0,1,-9,2019,9,1,16,18,1,1,0,14.94100686383316,14.94100686383316,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,882,90494.39939084712,32678.56017944508,0,0,2347.808237780675 -1079,1346,2409,-9,2408,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.307727167109,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,-9,0,0,8,2,0,882,90494.39939084712,32678.56017944508,0,0,2347.808237780675 -1079,1346,2410,-9,2408,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.6370164482535,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,882,90494.39939084712,32678.56017944508,0,0,2347.808237780675 -1080,1347,2411,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.516117101442909,8.33736115612955,0,0,0,-1043.296861060568,0,2,2,2019,10,0,40,43,1,0,0,14.2703783384426,14.2703783384426,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,3,4,0,0,8,9,5,1,691,258278.246826417,205168.9319588155,164826.9761363671,93065.28807784546,1144.999618387424 -1081,1348,2412,2413,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.369518425876016,5.911532435919534,47,-3,56.85351961341352,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.76317914029942,6.23738830034476,42.22,56.11,62.27,48.47,3.333333333333333,1,1,0,0,0,5,2,1,547.5,245041.6844963417,12112.47270812034,0,0,2792.457137275709 -1081,1348,2413,2412,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.936859461527636,5.801953322893531,47,3,8.323267807692627,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.542451381927851,5.930286679954315,62.27,48.47,42.22,56.11,8.333333333333334,1,1,0,0,9,5,2,1,547.5,245041.6844963417,12112.47270812034,0,0,2792.457137275709 -1082,1349,2414,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,5,0,6.937520058560209,6.644514836900918,0,0,-1049.178623848766,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.328459015632552,7.061966951491654,62.39,56.71,-9,-9,10,1,1,0,0,0,1,2,1,3234,81438.14678220196,167706.0236079881,0,0,1363.62837966361 -1083,1350,2415,-9,2417,2416,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.419408531885,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,796.25,-26765.23437126902,55411.72947882478,151954.5184060084,73871.65572809786,3338.718878532401 -1083,1350,2416,2417,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.690858921631213,8.609941844247233,0,6,0,-24.41807555617098,0,-9,-9,2019,10,0,37,47,1,0,0,18.46300472764982,18.46300472764982,0,0,0,0,0,1,1,0,0,0,49.52,56.95,46.67,55.57,6.666666666666667,1,1,0,0,7,1,4,1,796.25,-26765.23437126902,55411.72947882478,151954.5184060084,73871.65572809786,3338.718878532401 -1083,1350,2417,2416,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.924716921158451,8.042734487251032,0,6,0,-29.19402472229854,0,2,2,2019,12,0,24,24,1,0,0,13.66330656248158,13.66330656248158,0,0,0,0,0,1,1,0,0,0,46.67,55.57,49.52,56.95,8.333333333333334,1,1,0,0,7,1,4,1,796.25,-26765.23437126902,55411.72947882478,151954.5184060084,73871.65572809786,3338.718878532401 -1083,1350,2418,-9,2417,2416,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.0587163242042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,796.25,-26765.23437126902,55411.72947882478,151954.5184060084,73871.65572809786,3338.718878532401 -1084,1351,2419,2420,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,9.092771601838022,9.112971620711242,0,7,1,82.23222285341993,0,2,3,2019,27,12,12,35,1,12,0,108.0812667976273,108.0812667976273,0,0,0,0,0,0,0,0,.8012398776677422,0,28.12,52.47,26.75,43.41,3.333333333333333,1,1,0,0,8,9,5,1,338,412491.6181776309,401702.0906807893,0,0,3398.306511888014 -1084,1351,2420,2419,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,7.274549933674029,7.047872580592571,0,7,-1,-179.975437584761,0,3,3,2019,22,9,12,55,1,9,0,8.791987507334182,8.791987507334182,0,0,0,0,0,0,0,0,2.047906247959657,0,26.75,43.41,28.12,52.47,1.666666666666667,1,1,0,0,7,9,5,1,338,412491.6181776309,401702.0906807893,0,0,3398.306511888014 -1085,1352,2421,-9,2423,2422,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.3628623812826,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,0,1015,29156.73068394818,-21339.82410397465,0,0,2186.04372070609 -1085,1352,2422,2423,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,7.987864316071173,7.680819171266733,0,10,-1,101.3320325462205,0,1,2,2019,10,1,40,40,1,1,0,8.626411043885691,8.626411043885691,0,0,0,0,0,1,1,0,0,0,42.74,50.45,25.69,51.84,6.666666666666667,4,2,0,0,12,7,3,0,1015,29156.73068394818,-21339.82410397465,0,0,2186.04372070609 -1085,1352,2423,2422,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.27780591569413,7.4299526528192,0,10,1,16.76976144367046,0,1,2,2019,30,11,88,60,1,11,0,1.821586802485704,1.821586802485704,0,0,0,0,0,1,1,0,.3978144006460759,0,25.69,51.84,42.74,50.45,1.666666666666667,4,2,0,1,12,7,3,0,1015,29156.73068394818,-21339.82410397465,0,0,2186.04372070609 -1086,1353,2424,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.336013868999519,7.216013274928422,0,0,-1031.65832268298,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.385581049285561,7.3818266923634,58.06,40.77,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,390,471058.0627232774,272625.8779596483,127559.4342109199,0,1990.532951528638 -1087,1354,2425,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.916609316265445,6.613030591967366,0,0,-1183.732058642262,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.176197152710822,6.838727165068416,63.41,39.7,-9,-9,10,1,1,0,0,4,9,2,1,604,632937.3842768267,300037.8397902227,407673.9410886204,0,699.8008407306472 -1088,1355,2426,2428,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.859808594030255,8.034951264934188,0,29,1,-131.3801679731465,0,2,2,2019,9,0,48,48,1,1,0,8.225500829217543,8.225500829217543,0,0,0,0,0,1,1,0,0,0,53,54,48,49,8,2,3,0,0,7,8,5,1,521.3333333333334,1152321.681935595,308729.4022036438,899378.6813458046,107068.7180470994,3645.998046961131 -1088,1355,2427,-9,2428,2426,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.742866483435,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,521.3333333333334,1152321.681935595,308729.4022036438,899378.6813458046,107068.7180470994,3645.998046961131 -1088,1355,2428,2426,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.574876469646183,8.263125624096467,0,29,-1,-40.96565522696321,0,3,3,2019,12,0,37,37,1,2,0,21.43078042149529,21.43078042149529,0,0,0,0,0,1,1,0,0,0,48,49,53,54,7,2,3,0,0,8,8,5,1,521.3333333333334,1152321.681935595,308729.4022036438,899378.6813458046,107068.7180470994,3645.998046961131 -1088,1356,2429,2430,2428,2426,1,0,26,0,0,0,2,2,-9,0,4,8.132409658194558,8.218081675867614,0,2,-8,-22.23202768655387,0,1,1,2019,7,0,37,0,1,0,0,11.76125801216275,11.76125801216275,0,0,0,0,0,1,1,0,0,0,51.73,56.3,61.11,48.86,8.333333333333334,2,3,0,0,3,8,5,1,319.5,335332.9704661234,20220.88577621513,365278.1731285014,170312.3698603424,3674.554079345909 -1088,1356,2430,2429,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.613425417721192,8.700184423532201,0,2,8,-24.73870202409692,0,-9,-9,2019,10,1,50,0,1,1,0,20.80870107760571,20.80870107760571,0,0,0,0,0,1,1,0,0,0,61.11,48.86,51.73,56.3,8.333333333333334,2,3,0,0,1,8,5,1,319.5,335332.9704661234,20220.88577621513,365278.1731285014,170312.3698603424,3674.554079345909 -1089,1357,2431,-9,2433,-9,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.832948565567,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,505.5,-29613.86002739958,0,0,0,2924.140177653559 -1089,1357,2432,-9,2433,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.600186615894,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,505.5,-29613.86002739958,0,0,0,2924.140177653559 -1089,1357,2433,-9,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,7.149154370525101,6.919076816335253,4.44609816954051,0,0,-909.6625463387071,0,3,2,2019,20,7,16,0,1,7,0,7.581684392208271,7.581684392208271,0,0,0,0,0,1,1,0,4.482983140709539,0,45,51,-9,-9,3.333333333333333,2,3,0,0,1,8,2,0,505.5,-29613.86002739958,0,0,0,2924.140177653559 -1089,1357,2434,-9,2433,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.0253195107571,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,505.5,-29613.86002739958,0,0,0,2924.140177653559 -1090,1358,2435,2436,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.86883696702904,8.431800657667459,0,21,-18,-89.72101582515842,0,2,2,2019,11,0,35,43,1,0,0,20.35002055281408,20.35002055281408,0,0,0,0,0,1,1,0,4.456439942050071,0,57.16,56.15,54.7,46.42,8.333333333333334,1,1,0,0,10,10,5,1,676.5,140425.7518696348,-27507.12348135062,308269.8687247076,247844.9794932409,5938.738240801074 -1090,1358,2436,2435,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.885244223669833,8.213350449648978,7.95900181246728,21,18,-28.95139259511182,0,3,2,2019,9,1,40,30,1,1,0,7.218819968886613,7.218819968886613,0,0,0,0,0,1,1,0,6.9716025695326,7.908880816569193,54.7,46.42,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,676.5,140425.7518696348,-27507.12348135062,308269.8687247076,247844.9794932409,5938.738240801074 -1091,1359,2437,-9,-9,-9,1,1,29,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1053.715016162182,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.66,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,1338,-19493.94712587974,0,0,0,1361.735025207569 -1092,1360,2438,2439,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.289593865582426,7.490099386460904,0,9,-1,-21.06209225206951,0,2,2,2019,10,1,26,30,1,1,0,7.880290490142772,7.880290490142772,0,0,0,0,0,1,1,0,2.400314978955639,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,11,5,4,1,1091.333333333333,-104944.3851965925,30049.69388473764,117664.9307247378,97970.62248647945,2409.481417141032 -1092,1360,2439,2438,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,7.954133598613915,7.969751391290171,0,9,1,97.67480028334138,0,3,2,2019,12,0,58,45,1,0,0,6.003146729751228,6.003146729751228,0,0,0,.5274390140898504,0,1,1,0,6.142880299528444,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,11,5,4,1,1091.333333333333,-104944.3851965925,30049.69388473764,117664.9307247378,97970.62248647945,2409.481417141032 -1092,1360,2440,-9,2438,2439,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.1712984552639,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1091.333333333333,-104944.3851965925,30049.69388473764,117664.9307247378,97970.62248647945,2409.481417141032 -1093,1361,2441,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.538918498238,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.879926287630431,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,202,-25343.46972457424,-64086.82475442255,298883.9806188015,1282.478500217681,3844.707763503431 -1094,1362,2442,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.393621881288765,7.184824123097536,0,0,0,-1076.653278170494,0,2,3,2019,6,0,50,30,1,0,0,3.675620934704264,3.675620934704264,0,0,0,0,0,0,0,0,3.316197517366283,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,10,3,0,295,121205.581640366,3534.161706513207,28580.85106728994,0,1213.871613504449 -1095,1363,2443,2444,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.685028179792146,6.815395076865218,34,16,-80.06277850714019,0,1,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.107053492106476,6.883387504313101,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,424.5,282180.9141687363,5389.718326224185,314968.4389549988,0,2605.064366614637 -1095,1363,2444,2443,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.98566555375044,8.159807203408008,7.489400637531211,36,-16,.53896507270021,0,2,2,2019,6,0,18,20,1,0,0,13.28662541437429,13.28662541437429,0,0,0,0,0,1,1,0,1.45515585531511,7.334352818086989,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,424.5,282180.9141687363,5389.718326224185,314968.4389549988,0,2605.064366614637 -1096,1364,2445,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.6940120927586,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.439020186887989,0,0,1,1,0,1.624890968343833,0,68.34,24.19,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,302,3694.2836542527,0,0,0,1135.568678236066 -1097,1365,2446,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.918942437268791,5.528318913396403,0,0,-1125.064181572672,0,1,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.209557502691596,5.561050014047884,56.11,44.4,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,908,563498.0324207513,76036.60277717249,339477.5306293654,0,1837.755002872105 -1097,1366,2447,-9,2446,-9,1,1,50,0,0,0,1,1,-9,0,5,8.747824428255319,8.82030708312244,0,0,0,-1023.889558317837,0,2,1,2019,6,0,60,60,1,0,0,13.93822507076771,13.93822507076771,0,0,0,0,0,1,1,0,1.514354246201292,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,342,707337.6941957313,719544.2548844325,0,0,2350.11067445519 -1097,1367,2448,-9,2446,-9,1,1,46,0,0,0,1,1,-9,0,3,7.02727618140315,7.217838515771047,0,0,0,-950.6693798567295,0,2,1,2019,10,0,60,50,1,0,0,2.809149438821325,2.809149438821325,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,5,1,1,0,0,10,7,3,1,948,-62023.83314680609,0,0,0,191.0675824251548 -1098,1368,2449,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.136815267691013,8.255412459866761,0,0,0,-948.9243777006968,0,1,2,2019,8,0,38,26,1,0,1,12.42868282633342,12.42868282633342,0,0,0,0,0,1,1,0,5.654981846447172,0,51.86,49.31,-9,-9,6.666666666666667,4,2,0,0,2,8,4,1,468,-309112.1428896145,0,0,0,1524.598377289578 -1099,1369,2450,2451,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.987823376858043,6.167877858156488,7,-4,86.13342971150611,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.0514408814398,42.47,26.59,52.99,51.28,8.333333333333334,1,1,0,1,4,4,4,1,983,1038089.733889994,891253.4502263507,0,0,4409.480618776568 -1099,1369,2451,2450,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,7.175952894512738,8.760769650871552,8.415795283762858,7,4,80.56051705540879,0,3,3,2019,10,0,20,25,1,0,0,8.071495900453748,8.071495900453748,0,0,0,0,0,1,1,0,5.231320180588106,8.191097093144801,52.99,51.28,42.47,26.59,5,1,1,0,0,8,4,4,1,983,1038089.733889994,891253.4502263507,0,0,4409.480618776568 -1100,1370,2452,2453,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,10,-4,-80.72772231347892,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,.6697621410378445,0,0,1,1,0,0,0,42.35,33.61,42.95,29.14,6.666666666666667,1,1,0,0,0,11,2,1,234.5,503830.8542493489,142221.7732626761,169548.3595061764,0,1998.360438800502 -1100,1370,2453,2452,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.122355844799646,5.95604599762669,10,4,-154.2787915075724,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.10312392182874,0,0,1,1,0,0,5.999357239707607,42.95,29.14,42.35,33.61,5,1,1,0,0,0,11,2,1,234.5,503830.8542493489,142221.7732626761,169548.3595061764,0,1998.360438800502 -1101,1371,2454,2455,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.934466976360018,7.736349815037276,6,3,-117.9526912084148,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,1.145900898871128,8.080168781573439,54.7,46.42,48.11,34.23,6.666666666666667,1,1,0,0,0,12,3,1,428,1229289.597852395,769399.609247918,206735.6268837097,0,2698.256257578606 -1101,1371,2455,2454,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-153.4673000554412,0,3,2,2019,12,0,0,14,3,0,0,0,0,1,0,0,0,120,1,1,0,0,0,48.11,34.23,54.7,46.42,5,1,1,0,0,6,12,3,1,428,1229289.597852395,769399.609247918,206735.6268837097,0,2698.256257578606 -1101,1372,2456,-9,2455,2454,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1077.45065671604,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.13,18.99,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,775,0,0,0,0,0 -1102,1373,2457,2458,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.087303207224865,7.805613890216166,0,23,-2,41.62456864877056,0,2,2,2019,9,0,35,35,1,0,0,9.635737146877251,9.635737146877251,0,0,0,0,0,0,0,0,0,0,51.02,52.22,57.33,53.46,3.333333333333333,1,1,0,0,9,12,5,1,400.5,144619.8165384902,192536.601407343,0,0,3606.742343574548 -1102,1373,2458,2457,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.528228929141799,8.27759057526886,0,23,2,-43.9681532701636,0,-9,2,2019,12,0,35,35,1,0,0,16.90020106594289,16.90020106594289,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.02,52.22,6.666666666666667,1,1,0,0,6,12,5,1,400.5,144619.8165384902,192536.601407343,0,0,3606.742343574548 -1102,1374,2459,-9,2457,2458,1,1,24,0,0,0,2,2,-9,0,3,7.918011087659075,8.026666562871487,0,0,0,-1021.382837341373,0,2,2,2019,12,0,38,40,1,0,1,7.313939000209375,7.313939000209375,0,0,0,0,0,0,0,0,0,0,38.86,59.06,-9,-9,3.333333333333333,1,1,0,0,6,12,4,1,904,32312.15775172534,-23507.98352667462,0,0,1756.438979525844 -1102,1375,2460,-9,2457,2458,1,1,21,0,0,0,2,2,-9,0,4,6.120350576680105,5.911559709457026,0,0,0,-1036.376313475711,0,2,2,2019,15,2,25,37,1,2,1,2.099245577482254,2.099245577482254,0,0,0,0,0,0,0,0,0,0,57.18,47.78,-9,-9,5,1,1,0,0,5,12,2,1,696,0,0,0,0,457.5197941014726 -1103,1376,2461,-9,2462,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.4455379617594,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,426.3333333333333,139847.2196772006,85934.75629703914,0,0,614.210452874147 -1103,1376,2462,-9,-9,-9,1,0,49,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1029.544101433358,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.28,52.76,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,426.3333333333333,139847.2196772006,85934.75629703914,0,0,614.210452874147 -1103,1376,2463,-9,2462,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.346283172351,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,426.3333333333333,139847.2196772006,85934.75629703914,0,0,614.210452874147 -1104,1377,2464,2465,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,66,1,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.989419171314282,0,120,1,1,0,2.109081046200566,0,48.52,40.98,55.2,11.06,10,1,1,0,0,0,9,1,1,698,440605.0737216681,0,281358.3847573643,0,1693.422586458728 -1104,1377,2465,2464,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,66,-1,0,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,127.2826610414406,0,120,1,1,0,0,0,55.2,11.06,48.52,40.98,6.666666666666667,1,1,0,0,0,9,1,1,698,440605.0737216681,0,281358.3847573643,0,1693.422586458728 -1105,1378,2466,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,5,0,6.44622020182549,6.902473904353579,0,0,-901.4225866409964,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,17.03864180616371,0,2,1,1,0,5.153157041593391,6.980467936408414,59,51,-9,-9,0,1,1,0,0,0,12,2,1,313,6163.552237486016,18980.6095712697,38451.65499408513,0,959.3996450593652 -1106,1379,2467,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,0,0,-889.6261974667145,0,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,56.66,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,1287,85388.27196881696,0,42630.21782991199,5189.238165564029,1079.06966261233 -1107,1380,2468,2471,-9,-9,1,1,39,0,5,0,3,3,-9,0,2,7.476194351697195,7.413281891831053,0,16,2,42.24609362446122,-9,3,3,2019,25,12,24,0,1,12,0,6.294131156868396,6.294131156868396,0,0,0,0,0,1,1,0,0,0,36.31,41.6,43.42,36.49,3.333333333333333,2,3,0,1,9,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2469,-9,2471,2468,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1057.677757631612,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2470,-9,2471,2468,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1025.420859840838,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2471,2468,-9,-9,1,0,37,0,5,0,3,3,-9,0,3,0,0,0,16,-2,-79.04664991156724,-9,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,36.49,36.31,41.6,5,2,3,0,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2472,-9,2471,2468,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-974.6126253747187,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,.0659009164354103,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2473,-9,2471,2468,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1084.737324402399,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1380,2474,-9,2471,2468,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1173.053816175704,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,787,125521.4594843237,0,90051.92249336958,0,1880.650979857331 -1107,1381,2475,-9,2471,2468,1,0,18,0,5,1,2,0,-9,0,5,0,0,0,0,0,-1022.466380532311,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.27,53,-9,-9,3.333333333333333,2,3,0,0,0,2,1,0,426,-136190.3304172577,0,0,0,0 -1108,1382,2476,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.081169539833759,8.383512995451849,5.696482107910464,0,0,-968.1687730226114,0,2,1,2019,15,4,22,23,1,4,0,13.87384853344755,13.87384853344755,0,0,0,0,2,1,1,0,6.318792770503782,0,53.79,48.04,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,255,-84999.94131412855,-18671.67743105731,0,0,1573.625291294001 -1108,1382,2477,-9,2476,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1020.434651430642,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,255,-84999.94131412855,-18671.67743105731,0,0,1573.625291294001 -1108,1382,2478,-9,2476,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.177815901003,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,255,-84999.94131412855,-18671.67743105731,0,0,1573.625291294001 -1109,1383,2479,2480,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.63841691445103,7.55967034945575,48,3,-99.55871123592073,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.17485133959136,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,2,3,1,232.5,1159562.341402245,633663.164622166,209963.0585558958,0,2973.106803890544 -1109,1383,2480,2479,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.279695801606239,7.380940000830687,48,-3,49.51093619441833,0,2,2,2019,6,0,0,25,4,0,0,0,0,0,0,0,0,0,1,1,0,.163538035713162,7.697291340885093,58.15,52.91,57.33,53.46,10,1,1,0,0,11,2,3,1,232.5,1159562.341402245,633663.164622166,209963.0585558958,0,2973.106803890544 -1110,1384,2481,-9,2485,2482,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-855.1479786790881,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,226.8,155520.9500143394,-92.7048885754164,97006.1518015828,0,2762.833165086994 -1110,1384,2482,2485,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,8.019547280328563,8.189881526062353,0,9,7,-7.005363862364933,0,-9,-9,2019,12,1,37,37,1,1,0,10.84712548895957,10.84712548895957,0,0,0,2.488858182460728,0,1,1,0,0,0,40.1,54.56,45.16,51.93,8.333333333333334,1,1,0,0,9,13,3,0,226.8,155520.9500143394,-92.7048885754164,97006.1518015828,0,2762.833165086994 -1110,1384,2483,-9,2485,2482,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.8563866048892,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,0,226.8,155520.9500143394,-92.7048885754164,97006.1518015828,0,2762.833165086994 -1110,1384,2484,-9,2485,2482,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.9616103978377,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,226.8,155520.9500143394,-92.7048885754164,97006.1518015828,0,2762.833165086994 -1110,1384,2485,2482,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,9,-7,9.644197461440198,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.16,51.93,40.1,54.56,6.666666666666667,1,1,0,0,6,13,3,0,226.8,155520.9500143394,-92.7048885754164,97006.1518015828,0,2762.833165086994 -1111,1385,2486,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,6.310396007872276,6.231180190312844,0,0,-1069.39114005141,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.010144452568404,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,0,89,415200.5184808079,81448.68685022423,135175.2790754875,0,754.0259949323124 -1112,1386,2487,-9,2489,2488,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.751705840109,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,738.5,515761.8086441013,370246.6364498042,166667.8615487029,11639.32958914386,3526.086127160898 -1112,1386,2488,2489,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.271270822102451,9.517856854773067,0,7,1,4.935091365951715,0,-9,-9,2019,13,3,37,42,1,3,0,28.58813444292401,28.58813444292401,0,0,0,0,2,1,1,0,0,0,45.32,53.65,53.08,47.11,6.666666666666667,1,1,0,0,8,4,4,1,738.5,515761.8086441013,370246.6364498042,166667.8615487029,11639.32958914386,3526.086127160898 -1112,1386,2489,2488,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.124839077006406,5.17793865060815,0,24,-1,-128.0964977858825,0,2,2,2019,12,3,5,10,1,3,0,3.969598960024888,3.969598960024888,0,0,0,0,71.5,1,1,0,0,0,53.08,47.11,45.32,53.65,8.333333333333334,1,1,0,0,9,4,4,1,738.5,515761.8086441013,370246.6364498042,166667.8615487029,11639.32958914386,3526.086127160898 -1112,1386,2490,-9,2489,2488,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.399150570499,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,738.5,515761.8086441013,370246.6364498042,166667.8615487029,11639.32958914386,3526.086127160898 -1112,1387,2491,-9,2489,2488,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1048.204538369424,0,2,1,2019,27,9,0,40,3,9,1,0,0,0,0,0,0,27,1,1,0,0,0,7.3,71.22,-9,-9,0,1,1,1,0,1,4,1,1,295,0,0,0,0,341.2275869826947 -1113,1388,2492,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.917914197702045,8.607127275507777,0,0,0,-1023.25088172049,0,2,2,2019,15,6,40,42,1,6,0,17.81478106733533,17.81478106733533,0,0,0,0,2,1,1,0,.8007834267398845,0,48.66,54.86,-9,-9,8.333333333333334,4,2,0,0,9,6,5,1,167,85470.46015630275,111044.2695291708,199644.533011859,98270.4762539238,2200.954485558069 -1114,1389,2493,-9,2496,2494,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.563540957002,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,10,5,1,527.5,1072156.879006175,282578.5618182417,618597.661252656,71626.17340944587,4976.959905236183 -1114,1389,2494,2496,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.284516601487956,8.253336936157085,0,26,1,47.55541094014007,0,2,2,2019,9,0,31,23,1,1,0,16.28286101038501,16.28286101038501,0,0,0,0,0,1,1,0,0,0,53,54,40.53,55.55,8,1,1,0,0,6,10,5,1,527.5,1072156.879006175,282578.5618182417,618597.661252656,71626.17340944587,4976.959905236183 -1114,1389,2495,-9,2496,2494,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.3348151799578,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,10,5,1,527.5,1072156.879006175,282578.5618182417,618597.661252656,71626.17340944587,4976.959905236183 -1114,1389,2496,2494,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,9.12938014064698,8.97333563552422,0,6,-1,-15.75823433068298,0,2,1,2019,15,3,37,37,1,3,0,28.05273899141306,28.05273899141306,0,0,0,0,0,1,1,0,0,0,40.53,55.55,53,54,5,1,1,0,0,5,10,5,1,527.5,1072156.879006175,282578.5618182417,618597.661252656,71626.17340944587,4976.959905236183 -1115,1390,2497,2498,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,7,-2,-48.57162623424365,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,35.62,45.06,7,2,3,1,1,0,8,3,1,353.5,1605792.193598813,1117284.27287737,439957.7126995753,0,1717.996844732616 -1115,1390,2498,2497,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,8.28107491104481,8.203419748552808,0,42,2,-13.8319905914985,0,3,3,2019,15,4,60,60,1,4,0,8.003652515958454,8.003652515958454,0,0,0,0,0,0,0,0,0,0,35.62,45.06,49,48,5,2,3,0,0,9,8,3,1,353.5,1605792.193598813,1117284.27287737,439957.7126995753,0,1717.996844732616 -1115,1391,2499,2500,2497,2498,1,1,34,0,0,0,2,2,-9,0,3,7.988656513902777,8.237797092608194,0,7,4,232.5028864806232,0,3,3,2019,6,0,60,63,1,0,0,7.356609400038645,7.356609400038645,0,0,0,0,0,0,0,0,0,0,61.28,46.17,57.16,56.15,8.333333333333334,2,3,0,0,9,8,4,1,199,60397.0371420343,-78331.1141540301,0,0,3223.018640449721 -1115,1391,2500,2499,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.992393082694052,8.034085416716948,0,7,-4,3.374778683343937,0,-9,-9,2019,11,0,38,38,1,2,0,8.700617910990461,8.700617910990461,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.28,46.17,8.333333333333334,2,3,0,0,8,8,4,1,199,60397.0371420343,-78331.1141540301,0,0,3223.018640449721 -1116,1392,2501,2504,-9,-9,1,1,27,0,3,0,2,2,-9,0,3,8.22656653000911,7.906697410769295,0,1,1,8.696204760045816,-9,1,2,2019,8,0,40,0,1,0,0,9.534800716523216,9.534800716523216,0,0,0,0,0,1,1,0,0,0,41,56.65,32.28,58.05,8.333333333333334,1,1,0,0,4,7,3,0,412.2,1253.936155642473,0,0,0,2779.271105181867 -1116,1392,2502,-9,2504,2501,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.054367258538,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,412.2,1253.936155642473,0,0,0,2779.271105181867 -1116,1392,2503,-9,2504,2501,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.488544073932,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,412.2,1253.936155642473,0,0,0,2779.271105181867 -1116,1392,2504,2501,-9,-9,1,0,26,0,3,0,3,3,-9,0,3,0,0,0,1,-1,-42.56752551799776,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.28,58.05,41,56.65,8.333333333333334,1,1,0,0,0,7,3,0,412.2,1253.936155642473,0,0,0,2779.271105181867 -1116,1392,2505,-9,2504,2501,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.4468598263927,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,412.2,1253.936155642473,0,0,0,2779.271105181867 -1117,1393,2506,2507,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.613903348415803,8.387626552788131,55,5,-88.49073169003115,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.819548386801666,8.396786539655524,58.15,52.91,61.73,40.51,10,1,1,0,0,0,1,4,1,382,956020.6732713226,423703.0448704647,465113.4526766308,0,3476.776889933924 -1117,1393,2507,2506,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,55,-5,-31.24311785430602,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.649532930359776,0,61.73,40.51,58.15,52.91,10,1,1,0,0,10,1,4,1,382,956020.6732713226,423703.0448704647,465113.4526766308,0,3476.776889933924 -1118,1394,2508,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.274696444324141,8.261662919040182,0,0,0,-952.5653131029522,0,2,2,2019,7,0,37,40,1,0,0,11.56098268957577,11.56098268957577,0,0,0,0,0,0,0,0,0,0,52.83,56.93,-9,-9,6.666666666666667,1,1,0,0,4,13,4,0,83,294056.2955680988,-11788.24374121289,100399.5821332363,58195.61764510485,1939.164476960403 -1119,1395,2509,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.652647489136337,9.663748780150707,0,0,0,-988.175446582774,0,2,1,2019,12,1,50,45,1,1,0,38.0079219780517,38.0079219780517,0,0,0,0,2,1,1,0,7.212984802440404,0,49.44,54.26,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,668,2012428.417999379,1229165.101260502,302798.3883118859,22201.432803237,5639.111673488888 -1120,1396,2510,2511,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.845089778196621,6.311090721463259,48,0,-11.83934666539634,0,3,3,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.190270770430797,53.33,32.61,53.77,36.51,5,1,1,0,0,0,7,2,1,1023.5,286714.1495286818,25908.25392997447,278703.5345534175,0,1689.290374832131 -1120,1396,2511,2510,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,47,0,51.77827313079424,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.77,36.51,53.33,32.61,8.333333333333334,1,1,0,0,0,7,2,1,1023.5,286714.1495286818,25908.25392997447,278703.5345534175,0,1689.290374832131 -1121,1397,2512,2513,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,5.857907143249176,5.609104390704932,0,6,-4,-29.62633948482024,0,2,2,2019,8,0,4,0,1,0,0,8.094124469323697,8.094124469323697,0,0,0,0,0,0,0,0,.5556159709615601,0,47.15,50.19,58.2,54.53,8.333333333333334,1,1,0,0,1,12,4,1,551.5,55667.74223776744,175305.9664104742,84381.59677756586,0,1865.958527773077 -1121,1397,2513,2512,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.279476097568873,8.301041469334313,0,30,4,-63.22457958014283,0,2,2,2019,11,0,60,55,1,0,0,7.614277901782304,7.614277901782304,0,0,0,0,0,0,0,0,0,0,58.2,54.53,47.15,50.19,10,1,1,0,0,5,12,4,1,551.5,55667.74223776744,175305.9664104742,84381.59677756586,0,1865.958527773077 -1122,1398,2514,2515,-9,-9,1,1,57,0,0,0,1,1,-9,1,1,0,0,0,4,4,-63.73069463769407,0,3,1,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.148456227162895,0,15.45,33.86,27.43,48.34,1.666666666666667,2,3,0,1,0,2,3,1,398.5,549827.9042616484,114119.400236019,313903.7392165244,0,1322.19142810905 -1122,1398,2515,2514,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.587158472234756,7.481490238061008,0,25,-4,-45.24475157469552,0,3,2,2019,20,8,27,0,1,8,0,9.181286141324701,9.181286141324701,0,0,0,0,27,1,1,0,0,0,27.43,48.34,15.45,33.86,3.333333333333333,2,3,0,1,13,2,3,1,398.5,549827.9042616484,114119.400236019,313903.7392165244,0,1322.19142810905 -1122,1399,2516,-9,2515,2514,1,1,27,0,0,0,2,2,-9,0,3,8.443824403843857,8.051908168059235,0,0,0,-963.2864633095877,0,2,1,2019,3,1,35,35,1,1,1,12.3426193864957,12.3426193864957,0,0,0,0,0,1,1,0,0,0,57.96,49.02,-9,-9,8.333333333333334,2,3,0,0,13,2,4,1,84,-351395.425554929,96343.57282509896,0,0,2021.734253212143 -1122,1400,2517,-9,2515,2514,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-899.8917942459886,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.57,54.66,-9,-9,6.666666666666667,2,3,0,0,10,2,2,1,304,-80657.54403817969,0,0,0,0 -1123,1401,2518,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.54878869535785,7.260878228848261,0,0,-1075.144980926043,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.284729231775094,53.12,42.9,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,377,592904.1382470019,187845.9841042627,256839.3988317177,0,1550.785399143209 -1124,1402,2519,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1044.542297790085,1,3,2,2019,31,10,0,0,2,10,0,0,0,0,0,0,0,0,1,0,1,0,0,6.95,66.08,-9,-9,0,1,1,0,1,0,2,1,0,319,-12653.86582930702,0,0,0,1861.769131036918 -1125,1403,2520,2521,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.932279913028511,6.986913683557733,8,1,95.93977395788423,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.402295218275467,6.648273034770876,54.11,42.52,37.24,38.17,8.333333333333334,1,1,0,0,0,2,2,1,944.5,143911.3558079058,107072.5857018336,114741.1565991706,0,1542.03613270304 -1125,1403,2521,2520,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,57,-1,-23.98886361486023,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,71.5,1,1,0,0,0,37.24,38.17,54.11,42.52,10,1,1,0,0,0,2,2,1,944.5,143911.3558079058,107072.5857018336,114741.1565991706,0,1542.03613270304 -1126,1404,2522,2523,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.211055088329848,9.090150950422425,0,23,3,38.35165488536036,0,2,2,2019,12,0,50,90,1,0,0,20.71147688120034,20.71147688120034,0,0,0,0,0,0,0,0,3.354804622427547,0,44.22,56.66,38.66,57.81,3.333333333333333,1,1,0,0,13,10,5,1,494,1634340.676754334,1099993.617090905,526472.2939158811,6280.949323348779,6810.54352630991 -1126,1404,2523,2522,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.177330053289967,7.221911381507227,0,11,-3,13.16159086507075,0,-9,-9,2019,11,0,50,50,1,0,0,2.243720495152773,2.243720495152773,0,0,0,0,0,0,0,0,8.412406056200146,0,38.66,57.81,44.22,56.66,6.666666666666667,1,1,0,0,11,10,5,1,494,1634340.676754334,1099993.617090905,526472.2939158811,6280.949323348779,6810.54352630991 -1127,1405,2524,-9,2527,2525,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-957.0754175923785,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,7,4,1,476.75,105560.6565620096,38822.15785874976,286931.2226375055,171657.6795700444,3250.550967862891 -1127,1405,2525,2527,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.27652555040388,8.508220768936328,0,14,1,-90.12133777330222,0,3,3,2019,11,1,38,38,1,1,0,9.431202501386737,9.431202501386737,0,0,0,0,0,1,1,0,0,0,33.13,51.76,69.45,42.54,5,2,3,0,0,11,7,4,1,476.75,105560.6565620096,38822.15785874976,286931.2226375055,171657.6795700444,3250.550967862891 -1127,1405,2526,-9,2527,2525,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.0661525134807,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,476.75,105560.6565620096,38822.15785874976,286931.2226375055,171657.6795700444,3250.550967862891 -1127,1405,2527,2525,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.724109418217461,7.838327094068372,0,14,-1,-126.4517050721067,0,2,2,2019,9,0,32,-9,1,0,0,8.154984728480605,8.154984728480605,0,0,0,0,0,1,1,0,0,0,69.45,42.54,33.13,51.76,8.333333333333334,2,3,0,0,10,7,4,1,476.75,105560.6565620096,38822.15785874976,286931.2226375055,171657.6795700444,3250.550967862891 -1128,1406,2528,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.072681485395449,6.020410725805257,0,0,-977.2739300588058,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,2.937217475600804,0,15.46588153896935,0,1,1,0,0,5.674286926678899,53,45,-9,-9,8,1,1,0,0,0,9,2,1,3011,214576.8389205936,96232.68407807351,216374.1432339138,0,1532.20175600399 -1129,1407,2529,2532,-9,-9,1,0,33,1,3,0,2,2,-9,0,3,8.651139428325623,8.546914104459379,6.272167978054225,1,-4,-78.45652330290115,-9,2,-9,2019,10,0,36,0,1,0,0,20.73223637874756,20.73223637874756,0,0,0,0,0,1,1,0,5.982606580453441,0,53.54,49.68,50,57,8.333333333333334,1,1,0,0,2,10,4,1,767.8,110214.3744973348,-25339.55688983222,274704.8235175014,181587.4375933821,4964.314570922583 -1129,1407,2530,-9,2529,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.7747845735519,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,767.8,110214.3744973348,-25339.55688983222,274704.8235175014,181587.4375933821,4964.314570922583 -1129,1407,2531,-9,2529,-9,1,1,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1031.784585972003,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,10,4,1,767.8,110214.3744973348,-25339.55688983222,274704.8235175014,181587.4375933821,4964.314570922583 -1129,1407,2532,2529,-9,-9,1,1,37,1,3,0,3,3,-9,0,4,8.083402726313317,8.318224641824553,0,1,4,77.01497023916471,-9,-9,-9,2019,10,0,40,0,1,1,0,9.874515677902252,9.874515677902252,0,0,0,0,0,1,1,0,1.927036085961807,0,50,57,53.54,49.68,7,4,1,0,0,1,10,4,1,767.8,110214.3744973348,-25339.55688983222,274704.8235175014,181587.4375933821,4964.314570922583 -1129,1407,2533,-9,2529,2532,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.869841297492,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,767.8,110214.3744973348,-25339.55688983222,274704.8235175014,181587.4375933821,4964.314570922583 -1130,1408,2534,2535,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,9.079965923072256,9.210387897874304,0,20,-2,41.49787470673294,0,2,2,2019,23,10,40,20,1,10,0,28.8929520251903,28.8929520251903,0,0,0,0,0,0,0,0,4.557960647233078,0,19.34,53.33,48,49,3.333333333333333,1,1,0,0,7,8,5,1,901.5,843868.0194030819,459197.2204284155,560113.7552151182,81546.67471174874,5327.995134344386 -1130,1408,2535,2534,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.552515520900096,8.519371868119498,0,20,2,-142.8164570691445,-9,-9,-9,2019,12,0,38,0,1,2,0,13.68603353112575,13.68603353112575,0,0,0,0,0,0,0,0,0,0,48,49,19.34,53.33,7,1,1,0,0,1,8,5,1,901.5,843868.0194030819,459197.2204284155,560113.7552151182,81546.67471174874,5327.995134344386 -1131,1409,2536,2537,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.226707467557059,8.00280774775057,0,10,3,30.51873781768504,0,3,3,2019,12,1,38,38,1,1,0,11.41938789495921,11.41938789495921,0,0,0,0,0,0,0,0,0,0,37.58,55.77,41.45,40.45,6.666666666666667,1,1,0,0,11,6,4,1,281.5,390145.1760018709,123790.951018572,117718.2307960097,41562.05494623598,2509.251417147734 -1131,1409,2537,2536,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.753912777773645,7.94052896293206,0,10,-3,-63.57629592093836,0,2,2,2019,12,0,41,76,1,0,0,6.937138438553391,6.937138438553391,0,0,0,0,0,0,0,0,1.070952811549797,0,41.45,40.45,37.58,55.77,5,1,1,0,0,11,6,4,1,281.5,390145.1760018709,123790.951018572,117718.2307960097,41562.05494623598,2509.251417147734 -1132,1410,2538,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1025.621244977888,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,48.65,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,543,0,0,0,0,854.0422853019268 -1133,1411,2539,2540,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.102136383136076,6.080835807169652,9,2,-5.166614258168853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.350948977931585,6.265990855029024,54.37,54.8,59.14,52.5,8.333333333333334,1,1,0,0,3,10,3,1,463,1002425.909267823,640188.1453399581,343517.5239730156,13817.04326444612,3119.976886459286 -1133,1411,2540,2539,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.95218715888624,7.860857447815525,9,-2,-129.9756632222339,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.12554954460918,7.775462343801549,59.14,52.5,54.37,54.8,8.333333333333334,1,1,0,0,4,10,3,1,463,1002425.909267823,640188.1453399581,343517.5239730156,13817.04326444612,3119.976886459286 -1134,1412,2541,2543,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,8,0,-44.53798132177216,0,-9,-9,2019,18,8,0,30,3,8,0,0,0,0,0,0,0,0,1,1,0,1.458439540515585,0,43.06,59.91,28.13,46.94,8.333333333333334,1,1,0,0,7,6,5,1,1293.25,92342.44953896967,56518.62766968763,116690.0190849051,106066.9028711627,4801.845803768882 -1134,1412,2542,-9,2541,2543,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.716481717472,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1293.25,92342.44953896967,56518.62766968763,116690.0190849051,106066.9028711627,4801.845803768882 -1134,1412,2543,2541,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,9.395977610587746,9.415884360798028,0,8,0,44.77768420541694,0,2,2,2019,23,11,60,60,1,11,0,24.84348789554674,24.84348789554674,0,0,0,0,0,1,1,0,0,0,28.13,46.94,43.06,59.91,6.666666666666667,1,1,0,0,8,6,5,1,1293.25,92342.44953896967,56518.62766968763,116690.0190849051,106066.9028711627,4801.845803768882 -1134,1412,2544,-9,2541,2543,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.779130891916,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1293.25,92342.44953896967,56518.62766968763,116690.0190849051,106066.9028711627,4801.845803768882 -1135,1413,2545,2546,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.989699493080328,8.936215915617696,0,27,-1,22.98732686132976,0,-9,-9,2019,6,0,38,38,1,0,0,24.96124830588291,24.96124830588291,0,0,0,0,7,0,0,0,5.044874107933724,0,54.2,57.49,50.25,54.04,8.333333333333334,1,1,0,0,10,5,5,1,948.5,642019.7213216459,534896.7312409204,130779.5022022145,10943.41508932218,3672.638703100744 -1135,1413,2546,2545,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.689219774304792,7.427304115053595,0,27,1,90.7725980601454,0,2,2,2019,9,0,35,27,1,0,0,8.393075140810465,8.393075140810465,0,0,0,0,0,0,0,0,.6061198058007112,0,50.25,54.04,54.2,57.49,8.333333333333334,4,2,0,0,10,5,5,1,948.5,642019.7213216459,534896.7312409204,130779.5022022145,10943.41508932218,3672.638703100744 -1135,1414,2547,-9,2546,2545,1,0,19,0,0,0,2,2,-9,0,4,7.218732947583348,7.374263124204669,0,0,0,-1032.290990666434,0,2,3,2019,4,0,30,44,1,0,1,4.418907772645059,4.418907772645059,0,0,0,0,0,0,0,0,1.677407411834388,0,57.74,49,-9,-9,10,4,2,0,0,3,5,3,1,1593,-58966.80273611538,0,0,0,808.792041966512 -1136,1415,2548,2549,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,0,6.58833127357614,6.069291742188426,8,3,136.9641896747651,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.347483019885873,5.269287174009402,57.06,57.76,44.84,28.34,8.333333333333334,1,1,0,0,0,4,3,1,959.5,1334753.724020001,708281.9791828515,276757.9184339058,0,1939.671415201821 -1136,1415,2549,2548,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,0,7.266490422740596,7.641136627313394,8,-3,-36.01598800589521,0,2,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,1,1,0,6.819817111395223,7.31638622135843,44.84,28.34,57.06,57.76,3.333333333333333,1,1,0,0,4,4,3,1,959.5,1334753.724020001,708281.9791828515,276757.9184339058,0,1939.671415201821 -1137,1416,2550,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-950.301822109896,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.31,13.64,-9,-9,10,1,1,0,0,3,6,1,0,716,-6995.039784726271,0,0,0,1799.660838120814 -1138,1417,2551,2552,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.598823687746868,7.473592594451905,38,1,-89.95722018884506,0,2,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,5.087043100182468,7.591442697609841,50.89,48.05,50.65,28.51,8.333333333333334,1,1,0,0,8,9,4,1,607,2528191.526055502,1290258.17922682,666970.172529679,0,2686.516649039071 -1138,1417,2552,2551,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.835746471940561,8.114471503801296,38,-1,-130.5116757472712,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.23299348165914,7.77341556121022,50.65,28.51,50.89,48.05,8.333333333333334,1,1,0,0,8,9,4,1,607,2528191.526055502,1290258.17922682,666970.172529679,0,2686.516649039071 -1139,1418,2553,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-965.6841021668679,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.950908696103754,0,43.25,31.31,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,188,-191328.5687813744,0,0,0,-179.9729262271335 -1140,1419,2554,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.545717588299818,5.835504799390357,0,0,-912.9433112260897,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,7.582296968490678,14.68288432825636,0,0,1,1,0,0,6.05396033585342,69.63,25.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,226,441750.6064991034,30564.46302358055,123483.957346907,0,1656.468272886626 -1141,1420,2555,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.154434112536196,8.904990514003849,0,0,0,-1098.330604306657,0,-9,-9,2019,6,0,48,38,1,0,0,18.49935317983618,18.49935317983618,0,0,0,0,0,0,0,0,2.192254084329884,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,6,8,5,1,1284,179071.940987509,47504.00497684512,0,0,2240.163438930174 -1142,1421,2556,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.544689113932389,5.779425946698826,0,0,-1133.414221641254,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.516585324577138,5.605424423906664,59.06,29.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,373,114518.3915941751,0,170759.4603848874,0,831.1320441935394 -1143,1422,2557,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.026971923743452,5.799172909150374,0,0,-1039.972318423779,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.865312309419349,51,46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,757,307692.4864971929,78054.82324706178,129521.5940713708,0,750.4598555183145 -1144,1423,2558,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.1428144831022,6.359779297888924,0,0,-1107.889171104307,-9,2,2,2019,14,5,0,0,4,5,0,0,0,1,0,10.76221866994127,0,0,1,1,0,1.273839679926951,6.236540336824281,55.49,10.21,-9,-9,8.333333333333334,1,1,0,0,4,11,2,0,557,257846.3918491762,196696.8920448652,67794.37557503492,-18548.9448780618,1484.509955803638 -1145,1424,2559,2560,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,44,2,29.94196331418271,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.57,49.24,8.333333333333334,1,1,0,0,0,13,5,1,681,2321209.432993988,1814017.667122141,396821.2659189327,0,6637.988163195309 -1145,1424,2560,2559,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,9.097312256710692,9.18671416692554,0,44,-2,95.85165309223278,0,3,3,2019,7,0,55,40,1,0,0,17.68885759070339,17.68885759070339,0,0,0,0,0,1,1,0,0,0,54.57,49.24,54.96,53.17,8.333333333333334,1,1,0,0,10,13,5,1,681,2321209.432993988,1814017.667122141,396821.2659189327,0,6637.988163195309 -1146,1425,2561,2562,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.644810674481422,7.130755708589795,0,10,1,-21.05262051833223,0,3,3,2019,22,10,27,27,1,10,0,8.451535656528259,8.451535656528259,0,0,0,0,0,0,0,0,0,0,28.5,58.67,36.15,45.69,3.333333333333333,1,1,0,0,11,9,3,1,1195,298980.2530533828,133490.560525936,248733.795459257,7142.197441045117,1782.814368355582 -1146,1425,2562,2561,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.682792333915939,7.620788849851277,0,10,-1,50.79796750747264,0,3,2,2019,18,7,20,20,1,7,0,11.70835946783863,11.70835946783863,0,0,0,0,0,0,0,0,0,0,36.15,45.69,28.5,58.67,3.333333333333333,1,1,0,0,10,9,3,1,1195,298980.2530533828,133490.560525936,248733.795459257,7142.197441045117,1782.814368355582 -1147,1426,2563,2564,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,0,0,0,8,1,161.5029748066511,0,3,3,2019,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39.56,32.11,49.35,59.64,6.666666666666667,1,1,0,0,4,2,4,1,415,-38020.50794610805,-35710.36589344892,0,0,1941.471242888241 -1147,1426,2564,2563,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.516719566500013,8.376566555986528,0,8,-1,-35.05557189020929,0,2,2,2019,9,0,42,43,1,0,0,13.84589785763932,13.84589785763932,0,0,0,0,0,0,0,0,0,0,49.35,59.64,39.56,32.11,6.666666666666667,1,1,0,0,9,2,4,1,415,-38020.50794610805,-35710.36589344892,0,0,1941.471242888241 -1148,1427,2565,2566,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.823284949694883,5.731508367023533,52,-1,-52.64155993410361,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.939091357354937,5.912837308606023,61.27,46.03,61.01,53.18,8.333333333333334,1,1,0,0,5,6,3,1,386.5,736995.1197314506,470642.5597718498,242126.5768591519,0,3651.984169696799 -1148,1427,2566,2565,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,8.016042285636836,8.149333278922942,52,1,27.46533751682144,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.208205588113454,7.756005344124332,61.01,53.18,61.27,46.03,8.333333333333334,1,1,0,0,2,6,3,1,386.5,736995.1197314506,470642.5597718498,242126.5768591519,0,3651.984169696799 -1149,1428,2567,2568,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.541985373267531,6.513162537817674,57,4,-56.31937521764794,-9,2,2,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,6.28884321881015,6.357843018912239,40.9,20.63,33.64,24.43,6.666666666666667,1,1,0,0,0,7,2,1,503,259925.0571719095,59722.2933672436,195576.8401048199,0,1605.78158417928 -1149,1428,2568,2567,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,5.337323402280762,5.351152740404129,57,-4,195.1796093877504,-9,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,7,1,1,0,5.079436479474971,5.685106613926929,33.64,24.43,40.9,20.63,8.333333333333334,1,1,0,0,0,7,2,1,503,259925.0571719095,59722.2933672436,195576.8401048199,0,1605.78158417928 -1150,1429,2569,-9,2570,2571,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.994206434254,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,744,167056.6565451431,161451.0862226486,383831.0431418665,242690.3125245379,6349.001829571364 -1150,1429,2570,2571,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.902275339933853,9.046169171853684,0,7,0,-131.1617087274302,0,2,2,2019,12,0,40,47,1,0,0,17.66294423016176,17.66294423016176,0,0,0,0,0,0,0,0,2.545639631631166,0,49.41,58.28,43.71,56.91,5,1,1,0,0,9,2,5,1,744,167056.6565451431,161451.0862226486,383831.0431418665,242690.3125245379,6349.001829571364 -1150,1429,2571,2570,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.196252437778949,9.278605433026184,0,7,0,20.82040110111204,0,1,1,2019,8,0,55,50,1,0,0,18.27731519153286,18.27731519153286,0,0,0,0,0,0,0,0,0,0,43.71,56.91,49.41,58.28,8.333333333333334,1,1,0,0,7,2,5,1,744,167056.6565451431,161451.0862226486,383831.0431418665,242690.3125245379,6349.001829571364 -1151,1430,2572,2573,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,48,-6,59.18551899048501,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.83,49.95,60.15,41.58,10,1,1,0,0,6,2,2,1,746,267008.0100252,170193.8926911113,141835.5749883784,0,1925.131987428323 -1151,1430,2573,2572,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.064342512392352,6.450835263374637,48,6,-85.65768180704048,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.310032562330326,6.381904990769215,60.15,41.58,61.83,49.95,10,1,1,0,0,0,2,2,1,746,267008.0100252,170193.8926911113,141835.5749883784,0,1925.131987428323 -1152,1431,2574,-9,2575,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1068.859760238422,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,10,3,0,440,-284.5425905939264,-9571.12849634421,0,0,1104.435786103309 -1152,1431,2575,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.724035799588664,7.674483258586538,5.417544934876551,0,0,-982.9869079856336,0,2,2,2019,11,0,30,30,1,0,0,6.559468161374981,6.559468161374981,0,0,0,0,0,1,1,0,5.507117568850016,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,11,10,3,0,440,-284.5425905939264,-9571.12849634421,0,0,1104.435786103309 -1153,1432,2576,2577,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,68,-3,0,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,27.25260766450222,0,0,1,1,0,0,0,61.22,17.8,50.92,44.4,3.333333333333333,1,1,0,0,0,6,1,1,584,295682.0769665496,0,205433.0546629049,-1984.379501376159,1045.373173112739 -1153,1432,2577,2576,-9,-9,1,1,90,0,0,0,2,2,-9,0,2,0,0,0,68,3,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,50.92,44.4,61.22,17.8,8.333333333333334,1,1,0,0,0,6,1,1,584,295682.0769665496,0,205433.0546629049,-1984.379501376159,1045.373173112739 -1154,1433,2578,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.140364337686214,5.816644890392265,0,0,-975.2085500658616,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,4.639215743686179,23.19146715220681,50.27383990979303,0,1,1,0,3.159439207140842,6.01306612605248,31.2,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,627,373943.9490916025,-67283.97011041202,281757.4110233897,0,1499.061726857036 -1155,1434,2579,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.688300322021537,6.646793865301473,0,0,-937.4891936471629,0,2,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.787319351035323,6.630851841730182,48.09,44.05,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,174,338018.3577309014,181285.2818601344,130124.183654346,0,1097.786519688457 -1156,1435,2580,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.279349765383499,7.218843012476873,0,0,-1022.94923394554,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.892854240991271,7.157478949983072,43.12,58.55,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,817,528098.7670263236,119469.0992231443,148136.5286473026,0,2118.801801049831 -1157,1436,2581,2582,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,7.842142833178751,8.279241983615734,6.899967891313942,44,2,-21.15162174358789,0,2,2,2019,26,12,40,40,1,12,0,7.333566102263233,7.333566102263233,0,0,0,0,7,1,1,0,0,6.528547023164681,39.97,14.6,35.79,20.44,1.666666666666667,1,1,0,0,6,11,3,0,692.5,1032279.12004416,868251.2871123317,341389.9361646804,0,2227.785719270259 -1157,1436,2582,2581,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,44,-2,-149.3088715993683,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,20.44,39.97,14.6,6.666666666666667,1,1,0,0,0,11,3,0,692.5,1032279.12004416,868251.2871123317,341389.9361646804,0,2227.785719270259 -1158,1437,2583,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1027.676343770729,0,2,2,2019,7,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,5.034563184709139,0,52,54.51,-9,-9,8.333333333333334,1,1,1,0,9,5,1,1,98,-129515.8635311284,37198.0421388558,0,0,105.6616804975559 -1159,1438,2584,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-957.9852394969103,0,2,2,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,0,1,0,0,45.41,18.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,318,45629.11358322838,0,0,0,1561.963337035587 -1160,1439,2585,-9,2587,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.628324160522,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,656.2,-5455.923410317931,0,0,0,3063.205759751131 -1160,1439,2586,-9,2587,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.5193185015743,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,656.2,-5455.923410317931,0,0,0,3063.205759751131 -1160,1439,2587,2589,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.252734502629883,7.666963778845108,6.084526985509593,3,13,21.86915349555928,0,-9,-9,2019,15,3,40,0,1,3,0,4.32630966804521,4.32630966804521,0,0,0,0,0,1,1,0,6.001826322103517,0,45.99,35.48,33.12,58.23,5,1,1,0,0,2,10,3,0,656.2,-5455.923410317931,0,0,0,3063.205759751131 -1160,1439,2588,-9,2587,2589,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-986.7697140368795,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,656.2,-5455.923410317931,0,0,0,3063.205759751131 -1160,1439,2589,2587,-9,-9,1,1,26,1,3,0,2,2,-9,0,3,7.722921944920513,7.450173162763456,0,3,-13,-92.31663073776254,0,2,2,2019,16,4,42,35,1,4,0,5.540834732470916,5.540834732470916,0,0,0,0,0,1,1,0,0,0,33.12,58.23,45.99,35.48,5,1,1,0,0,7,10,3,0,656.2,-5455.923410317931,0,0,0,3063.205759751131 -1161,1440,2590,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.152207254306329,7.077511198063526,0,0,-1052.214530061233,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.436671660658327,7.018795641655063,47.96,53.77,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,310,364250.8386911651,357781.0899600617,91780.29239843345,0,767.9635680454303 -1162,1441,2591,2592,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,3,-5,0,0,2,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.01,60.12,23.68,49.98,3.333333333333333,1,1,0,0,0,10,1,1,2176.5,30899.16714489557,35797.41730060392,0,0,1091.781130061602 -1162,1441,2592,2591,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,3,5,0,0,2,3,2019,24,9,0,42,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.68,49.98,32.01,60.12,1.666666666666667,1,1,0,0,13,10,1,1,2176.5,30899.16714489557,35797.41730060392,0,0,1091.781130061602 -1162,1442,2593,-9,2591,2592,1,1,19,0,0,1,3,0,0,1,4,0,0,0,0,0,-979.8922943213091,-9,3,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,158,-124928.0638386566,0,0,0,581.3796797633672 -1163,1443,2594,2595,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.026390548370324,7.142200435417204,31,-1,33.88268206624091,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.148731389945539,51.41,56.15,52.01,40.95,8.333333333333334,1,1,0,0,0,2,3,1,455,1496483.986181654,641157.8600024023,342499.4493140857,0,3579.573453852199 -1163,1443,2595,2594,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.959147448176962,7.941880729661285,31,1,-66.91121157686322,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.898710164850687,52.01,40.95,51.41,56.15,8.333333333333334,1,1,0,0,0,2,3,1,455,1496483.986181654,641157.8600024023,342499.4493140857,0,3579.573453852199 -1164,1444,2596,2597,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.686217151453397,9.092072300220273,0,37,-6,11.65856378963552,0,3,3,2019,17,5,52,40,1,5,0,15.23722843967082,15.23722843967082,0,0,0,0,0,0,0,0,0,0,33.28,44.08,57.16,56.15,5,2,3,0,0,10,6,5,1,951.5,599476.239681755,265783.6331528999,117721.7528746907,0,4437.663984182976 -1164,1444,2597,2596,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.637913274187888,8.620811084496813,6.618022184739172,8,6,-35.53519802134556,0,-9,-9,2019,6,0,38,38,1,0,0,20.14322915394391,20.14322915394391,0,0,0,0,0,0,0,0,1.779595967939522,7.065339423671655,57.16,56.15,33.28,44.08,8.333333333333334,2,3,0,0,10,6,5,1,951.5,599476.239681755,265783.6331528999,117721.7528746907,0,4437.663984182976 -1164,1445,2598,-9,2596,2597,1,1,28,0,0,0,1,1,-9,0,5,8.461753845737922,8.357132592656063,0,0,0,-1030.864770439236,0,3,2,2019,7,0,38,40,1,0,1,15.83110108516073,15.83110108516073,0,0,0,0,0,0,0,0,3.54894097683843,0,54.69,57.47,-9,-9,8.333333333333334,2,3,0,0,1,6,5,1,814,116041.890957568,-8946.620829428251,0,0,2235.550752251875 -1164,1446,2599,2600,2596,2597,1,1,32,0,0,0,1,1,-9,0,4,8.521295128110371,8.814132791842981,0,3,1,22.82140342570153,0,3,2,2019,7,0,46,40,1,0,0,16.03973388112529,16.03973388112529,0,0,0,0,0,0,0,0,3.278315801291804,0,52.23,55.6,51.83,57.2,6.666666666666667,2,3,0,0,6,6,5,1,678,243039.1933114913,219013.9896305068,192371.1003865982,152613.2961873407,3666.296187613295 -1164,1446,2600,2599,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.652104745828876,8.25070847806384,0,3,-1,99.29579825806444,0,-9,-9,2019,13,4,37,40,1,4,0,17.8116871981371,17.8116871981371,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.23,55.6,8.333333333333334,2,3,0,0,4,6,5,1,678,243039.1933114913,219013.9896305068,192371.1003865982,152613.2961873407,3666.296187613295 -1165,1447,2601,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.26415576577654,5.014828772890907,0,0,-966.8739621772174,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.004918773250278,4.999134793286887,41.56,36.29,-9,-9,3.333333333333333,1,1,0,1,2,10,2,1,164,-252184.0982985135,-16217.17586290265,0,0,945.2238664167775 -1166,1448,2602,2603,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.110742982673878,8.160805556111589,0,29,-10,-88.33535054770147,0,2,2,2019,6,0,37,37,1,0,0,15.49668892588135,15.49668892588135,0,0,0,0,0,1,1,0,4.639765218181901,0,57.73,54.53,50.03,52.62,8.333333333333334,1,1,0,0,9,4,3,1,1167,76749.49915986786,178982.5175945049,167767.946800825,36178.94671443156,2264.003610006382 -1166,1448,2603,2602,-9,-9,1,0,60,0,1,0,2,2,-9,0,3,0,6.318603556886348,6.458338255704104,28,10,5.926445008287085,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.423496745354294,5.922206568346261,50.03,52.62,57.73,54.53,8.333333333333334,1,1,0,0,3,4,3,1,1167,76749.49915986786,178982.5175945049,167767.946800825,36178.94671443156,2264.003610006382 -1166,1449,2604,-9,2603,2602,1,0,23,0,1,0,2,2,0,0,3,0,0,0,0,0,-1140.567679400437,-9,2,2,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.2423270152054359,0,53.09,39.08,-9,-9,6.666666666666667,1,1,0,0,1,4,1,1,288,78870.46585065602,0,0,0,136.1982453615365 -1166,1449,2605,-9,2604,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.978911291798,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,1,288,78870.46585065602,0,0,0,136.1982453615365 -1167,1450,2606,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.688286444669471,8.571669080790119,0,3,13,-78.2428326261698,0,3,2,2019,14,4,39,40,1,4,0,13.98101162184727,13.98101162184727,0,0,0,0,0,0,0,0,0,0,45.85,61.26,54.96,53.17,6.666666666666667,1,1,0,0,8,2,5,1,661,-96063.92996988306,32371.74058102805,0,0,1850.43522332258 -1167,1451,2607,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.570404778153252,8.257418793132871,0,3,-13,104.6129141608004,0,-9,-9,2019,6,0,37,40,1,0,0,12.40029858349791,12.40029858349791,0,0,0,0,0,0,0,0,0,0,54.96,53.17,45.85,61.26,8.333333333333334,1,1,0,0,4,2,5,1,941,196356.2528818139,6151.073312927891,0,0,1450.628203898046 -1168,1452,2608,2610,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,7.666028622383213,7.610153009024549,0,3,6,6.781622136607139,0,-9,3,2019,9,1,40,40,1,1,0,6.603383374666737,6.603383374666737,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,1,3,0,475.3333333333333,-103856.8895458134,8971.405584544982,0,0,1665.164086119722 -1168,1452,2609,-9,2610,2608,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-970.2389914819173,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,475.3333333333333,-103856.8895458134,8971.405584544982,0,0,1665.164086119722 -1168,1452,2610,2608,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,0,0,0,3,-6,81.66691151114706,0,-9,-9,2019,8,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,1,0,6,1,3,0,475.3333333333333,-103856.8895458134,8971.405584544982,0,0,1665.164086119722 -1169,1453,2611,2612,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,20,-14,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.96,53.17,58.32,28.96,8.333333333333334,1,1,0,0,0,4,1,0,433,156104.2036392535,1726.576282122631,208950.5604977985,0,2638.734407334738 -1169,1453,2612,2611,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,8,14,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.32,28.96,54.96,53.17,8.333333333333334,1,1,0,0,0,4,1,0,433,156104.2036392535,1726.576282122631,208950.5604977985,0,2638.734407334738 -1170,1454,2613,2614,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,7,-1,-144.8159374842195,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62,41.73,60.29,52.11,10,1,1,0,0,0,2,3,1,564,824655.6548690875,573452.8557784352,118191.3859752729,0,2536.30829262977 -1170,1454,2614,2613,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.688189255769292,7.754257947526522,7,1,22.64441461361058,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.946474386210004,60.29,52.11,62,41.73,10,1,1,0,0,0,2,3,1,564,824655.6548690875,573452.8557784352,118191.3859752729,0,2536.30829262977 -1171,1455,2615,2616,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,4,-1,0,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,0,0,42,1,1,0,0,0,35.75,39.27,52,47,8.333333333333334,1,1,0,0,0,13,2,1,890.5,67600.21694869705,0,169995.4995713832,0,1071.713273381055 -1171,1455,2616,2615,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,4,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,35.75,39.27,7,1,1,0,0,0,13,2,1,890.5,67600.21694869705,0,169995.4995713832,0,1071.713273381055 -1171,1456,2617,-9,2615,2616,1,1,43,0,0,0,3,3,-9,1,4,0,0,0,0,0,-911.0764174113413,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,13,1,1,349,-207530.7071038637,0,0,0,683.0303445718804 -1171,1457,2618,-9,2615,2616,1,1,38,0,0,0,3,3,-9,1,4,0,0,0,0,0,-999.4351481171017,-9,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,1,0,13,1,1,413,-29714.00896294723,39813.20383389523,0,0,676.6645377663427 -1171,1458,2619,-9,-9,-9,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-957.6288106188181,-9,1,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,4.262348673056758,0,49,62,-9,-9,0,1,1,0,0,0,13,1,1,622,-45756.15195544111,0,0,0,-733.5525556967949 -1172,1459,2620,2623,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,9.601812381941496,9.49011831208186,0,8,1,170.1898367968468,0,2,1,2019,12,0,55,50,1,0,0,21.71657461673108,21.71657461673108,0,0,0,0,0,0,0,0,3.319240499280304,0,48.8,49.1,46.5,58.26,5,1,1,0,0,9,9,5,1,551.75,713111.6960408426,111305.9407647857,616454.8363145813,54927.30626778739,5748.857414824577 -1172,1459,2621,-9,2623,2620,1,0,17,0,1,1,2,0,0,0,5,0,3.963189950903351,4.100604904482795,0,0,-978.5630954595742,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.222446708915285,0,57.06,57.76,-9,-9,10,1,1,0,0,1,9,5,1,551.75,713111.6960408426,111305.9407647857,616454.8363145813,54927.30626778739,5748.857414824577 -1172,1459,2622,-9,2623,2620,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.952357791288,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,551.75,713111.6960408426,111305.9407647857,616454.8363145813,54927.30626778739,5748.857414824577 -1172,1459,2623,2620,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.532152997117477,8.256006463069674,0,8,-1,-7.476908816526262,0,2,2,2019,10,0,26,23,1,0,0,22.05413288265981,22.05413288265981,0,0,0,0,2,0,0,0,0,0,46.5,58.26,48.8,49.1,8.333333333333334,1,1,0,0,9,9,5,1,551.75,713111.6960408426,111305.9407647857,616454.8363145813,54927.30626778739,5748.857414824577 -1173,1460,2624,2625,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.578597159807645,9.555903881841051,0,14,4,-67.22213753364977,0,-9,-9,2019,12,0,40,42,1,0,0,33.73813106106893,33.73813106106893,0,0,0,0,0,0,0,0,0,0,44.09,57.1,60.02,56.42,5,2,3,0,0,10,8,5,1,1019.333333333333,539294.5972499998,13483.78586654763,452946.1708193149,0,3957.448417478982 -1173,1460,2625,2624,-9,-9,1,0,36,0,1,0,1,1,0,0,5,0,0,0,14,-4,-76.26637961778988,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.720860878948996,0,60.02,56.42,44.09,57.1,10,2,3,0,0,4,8,5,1,1019.333333333333,539294.5972499998,13483.78586654763,452946.1708193149,0,3957.448417478982 -1173,1460,2626,-9,2625,2624,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.9334627916953,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,1019.333333333333,539294.5972499998,13483.78586654763,452946.1708193149,0,3957.448417478982 -1174,1461,2627,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.389477778729129,8.478931026064643,0,0,0,-1111.519490870866,-9,-9,-9,2019,10,0,37,0,1,1,0,11.52392065699976,11.52392065699976,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,12,4,1,2598,130101.1686885227,0,56535.54786771251,78067.7003935536,1538.263865348378 -1174,1462,2628,2629,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.679408353245412,7.392659067951992,0,6,2,-8.780495752760245,0,3,-9,2019,10,0,21,21,1,1,0,12.38585956117845,12.38585956117845,0,0,0,0,7,0,0,0,0,0,51,53,53,54,8,1,1,0,0,6,12,5,1,911.5,1200779.709965515,1266546.429751656,135986.2798379303,-10186.83104815032,4598.844834706812 -1174,1462,2629,2628,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.588476974861214,8.974742528013008,7.778607172042918,6,-2,24.73154072438441,-9,3,3,2019,9,0,36,0,1,1,0,18.11769470327699,18.11769470327699,0,0,0,0,0,0,0,0,6.582943885582104,7.963131190393317,53,54,51,53,8,1,1,0,0,1,12,5,1,911.5,1200779.709965515,1266546.429751656,135986.2798379303,-10186.83104815032,4598.844834706812 -1174,1463,2630,-9,2628,2629,1,0,27,0,0,0,1,1,-9,0,4,8.421172457703365,8.026638101448286,0,0,0,-1189.865072385847,-9,3,2,2019,11,0,37,0,1,2,1,13.07568283835895,13.07568283835895,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,12,4,1,661,27847.80746555727,51786.50063583234,0,0,1924.688151214972 -1175,1464,2631,2632,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.402347054744245,7.289082968321104,0,32,-5,-94.08966986089764,0,2,1,2019,8,0,22,16,1,0,0,8.950681080159022,8.950681080159022,0,0,0,0,0,1,1,0,0,0,36.95,51.85,54.79,55.86,8.333333333333334,1,1,0,0,11,7,4,1,540.6666666666666,22920.75056568066,39953.62451265676,0,0,2635.868386783455 -1175,1464,2632,2631,-9,-9,1,1,54,0,1,0,3,3,-9,0,4,8.52564769943953,8.490799742292781,0,9,5,-286.8057340143726,0,2,2,2019,7,0,58,51,1,0,0,9.335014332935888,9.335014332935888,0,0,0,0,0,1,1,0,0,0,54.79,55.86,36.95,51.85,8.333333333333334,1,1,0,0,11,7,4,1,540.6666666666666,22920.75056568066,39953.62451265676,0,0,2635.868386783455 -1175,1464,2633,-9,2631,2632,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-900.7227325968544,-9,2,3,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,4.113917696982961,0,27.68,65.63,-9,-9,5,1,1,0,0,0,7,4,1,540.6666666666666,22920.75056568066,39953.62451265676,0,0,2635.868386783455 -1176,1465,2634,2635,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,10,1,13.54880233541881,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.12,42.1,54.96,53.17,5,1,1,0,0,1,11,5,1,681.5,410472.5729226299,237227.6229701551,245973.7368972138,81099.11278626541,2710.176585531975 -1176,1465,2635,2634,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.979779819471576,9.577190308059462,0,10,-1,-76.84819277020263,0,2,2,2019,6,0,49,53,1,0,0,20.0267611195229,20.0267611195229,0,0,0,0,0,1,1,0,4.7466700092892,0,54.96,53.17,55.12,42.1,6.666666666666667,1,1,0,0,11,11,5,1,681.5,410472.5729226299,237227.6229701551,245973.7368972138,81099.11278626541,2710.176585531975 -1176,1466,2636,-9,2634,2635,1,1,34,0,0,0,2,2,-9,1,3,6.927997129571145,7.002784945834241,0,0,0,-1090.661811097552,0,2,2,2019,8,0,15,16,1,0,1,9.126821737631374,9.126821737631374,0,0,0,0,0,1,1,0,0,0,52.99,48.57,-9,-9,10,1,1,0,0,11,11,2,1,628,268861.7754587921,0,0,0,590.3513381844787 -1177,1467,2637,2638,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.101439966107518,7.229294255138869,0,5,-8,74.71671069758945,0,3,3,2019,23,11,30,22,1,11,0,5.308663959117945,5.308663959117945,0,0,0,0,0,0,0,0,0,0,27.56,41.12,58.17,42.52,6.666666666666667,1,1,0,0,6,11,4,1,538.5,309755.1007000763,141093.1416717417,223599.396109838,0,2201.640089310182 -1177,1467,2638,2637,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.974513774111704,8.16087224835962,3.463091341406838,5,8,-17.97485838649941,0,3,2,2019,7,0,37,37,1,0,0,11.25026552090002,11.25026552090002,0,0,0,0,0,0,0,0,3.569349996239362,4.180133375413504,58.17,42.52,27.56,41.12,8.333333333333334,1,1,0,0,6,11,4,1,538.5,309755.1007000763,141093.1416717417,223599.396109838,0,2201.640089310182 -1178,1468,2639,2642,-9,-9,1,1,42,0,2,0,2,2,-9,1,3,8.504326883663408,8.8701618859294,0,11,-3,-103.4176596678939,0,3,1,2019,16,5,22,26,1,5,0,22.78381674533806,22.78381674533806,0,0,0,0,74.5,1,1,0,0,0,29.46,59.39,47.31,39.47,5,1,1,0,0,13,9,4,1,621.5,369166.3268228427,-31501.40489822981,517613.015786892,205719.1284419108,4203.238934336614 -1178,1468,2640,-9,2642,2639,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.866590251022,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,621.5,369166.3268228427,-31501.40489822981,517613.015786892,205719.1284419108,4203.238934336614 -1178,1468,2641,-9,2642,2639,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.3707047902057,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,621.5,369166.3268228427,-31501.40489822981,517613.015786892,205719.1284419108,4203.238934336614 -1178,1468,2642,2639,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,8.442759574859997,8.451936058838113,0,11,3,-138.4184819441438,0,2,3,2019,13,4,27,28,1,4,0,18.70022594991219,18.70022594991219,0,0,0,0,99,1,1,0,0,0,47.31,39.47,29.46,59.39,6.666666666666667,1,1,0,0,13,9,4,1,621.5,369166.3268228427,-31501.40489822981,517613.015786892,205719.1284419108,4203.238934336614 -1179,1469,2643,2644,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,54,2,93.99708813690039,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,50,59.46,46.99,10,1,1,0,0,0,10,2,0,846.5,1113771.405239014,49762.74514994033,755375.5614023488,0,1243.297135102373 -1179,1469,2644,2643,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.94615689254676,7.22054377525737,54,-2,-150.3345109142069,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.91607397435898,6.823798899158951,59.46,46.99,55,50,8.333333333333334,1,1,0,0,0,10,2,0,846.5,1113771.405239014,49762.74514994033,755375.5614023488,0,1243.297135102373 -1180,1470,2645,2646,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.704430934792036,7.512205496091926,0,14,-5,-16.08458408496801,0,-9,-9,2019,14,5,24,22,1,5,0,11.85052235133703,11.85052235133703,0,0,0,0,0,1,1,0,0,0,38.39,50.38,52,56,6.666666666666667,1,1,0,0,9,9,4,1,1638.666666666667,353552.8227747544,35489.10846557584,350269.1380442728,18385.94231964301,2790.940219459617 -1180,1470,2646,2645,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.549413957712028,8.381486868732178,0,13,5,-57.78290632248414,0,-9,-9,2019,9,0,37,37,1,1,0,11.76169464583295,11.76169464583295,0,0,0,0,0,1,1,0,0,0,52,56,38.39,50.38,8,1,1,0,0,1,9,4,1,1638.666666666667,353552.8227747544,35489.10846557584,350269.1380442728,18385.94231964301,2790.940219459617 -1180,1470,2647,-9,2645,2646,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.019054949168,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1638.666666666667,353552.8227747544,35489.10846557584,350269.1380442728,18385.94231964301,2790.940219459617 -1181,1471,2648,2649,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-3,42.2766986370679,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.446458866116184,0,60.89,38.22,55,45,6.666666666666667,1,1,0,0,0,9,2,0,597.5,452380.2219328407,155485.3737616892,270662.5819434969,0,2507.179563399536 -1181,1471,2649,2648,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.388236814585704,7.35073714609702,62,3,-8.873611093022181,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,9.759352070815675,0,0,1,1,0,3.58302467012539,7.332280388894167,55,45,60.89,38.22,8,1,1,0,0,0,9,2,0,597.5,452380.2219328407,155485.3737616892,270662.5819434969,0,2507.179563399536 -1182,1472,2650,-9,2652,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.2825979606305,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,1106.333333333333,0,0,0,0,1945.372937718912 -1182,1472,2651,-9,2652,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.330961999318,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,1,0,1106.333333333333,0,0,0,0,1945.372937718912 -1182,1472,2652,-9,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,0,0,0,0,0,-1103.525891293389,0,2,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1106.333333333333,0,0,0,0,1945.372937718912 -1183,1473,2653,2654,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.676061405194417,8.752962961655292,0,16,-8,-32.14677280870743,0,-9,2,2019,20,8,40,40,1,8,0,12.62371240699554,12.62371240699554,0,0,0,0,0,0,0,0,2.915781423819268,0,47.41,19.83,60.12,54.8,5,2,3,0,0,8,9,5,1,330,2547373.776128411,1850958.588931344,304131.8035462642,0,3985.970922580677 -1183,1473,2654,2653,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.202420176178103,7.897945688850077,15,8,50.54059316529428,0,-9,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.919886985635376,60.12,54.8,47.41,19.83,10,1,1,0,0,8,9,5,1,330,2547373.776128411,1850958.588931344,304131.8035462642,0,3985.970922580677 -1184,1474,2655,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.694147349785283,6.749207428742528,0,0,-983.6262694153156,0,2,2,2019,6,0,0,12,4,0,0,0,0,0,0,0,0,0,1,1,0,3.768021615920671,6.786852432053916,63.09,47.92,-9,-9,10,1,1,0,0,8,10,2,1,290,325046.7881244784,282369.7750455052,170497.6563850794,0,1126.261249787526 -1185,1475,2656,2657,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.09754770407198,8.150996815425698,0,9,8,-53.41565335098284,0,2,2,2019,7,0,41,50,1,0,0,11.51923188531392,11.51923188531392,0,0,0,0,2,0,0,0,0,0,58.15,52.91,51.94,55.88,8.333333333333334,1,1,0,0,10,12,5,1,1174,262842.414270811,0,279911.1122453455,73899.07432824517,3129.301448072305 -1185,1475,2657,2656,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.125547689242003,8.346942876839538,0,9,-8,-46.05170405636535,0,3,3,2019,10,0,40,40,1,0,0,9.307392962348203,9.307392962348203,0,0,0,0,0,0,0,0,0,0,51.94,55.88,58.15,52.91,6.666666666666667,1,1,0,0,10,12,5,1,1174,262842.414270811,0,279911.1122453455,73899.07432824517,3129.301448072305 -1186,1476,2658,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.873172308860747,8.346506667298518,7.404382994027142,0,0,-938.3414000746698,-9,2,3,2019,14,4,24,0,1,4,0,11.08009348842873,11.08009348842873,0,0,0,0,0,0,0,0,7.200467655074526,6.753468467269339,35.24,56.7,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,1008,-45764.67448828514,54938.68038433761,0,0,1095.043688683516 -1187,1477,2659,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.848697479427,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,22.19,33.15,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,120,-256606.5574419837,0,0,0,1144.884979062637 -1188,1478,2660,-9,2662,2661,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.7655632986191,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,3,0,647.3333333333334,118730.5461872239,8632.894264517743,114696.2337365801,53911.89312266562,1579.286093224528 -1188,1478,2661,2662,-9,-9,1,1,21,1,1,0,2,2,-9,0,4,8.015977423130305,7.966611770438526,0,2,0,38.66594093577544,0,-9,-9,2019,10,0,38,38,1,1,0,8.387764772113169,8.387764772113169,0,0,0,0,7,1,1,0,0,0,48,59,20.93,42.13,7,1,1,0,0,3,12,3,0,647.3333333333334,118730.5461872239,8632.894264517743,114696.2337365801,53911.89312266562,1579.286093224528 -1188,1478,2662,2661,-9,-9,1,0,30,1,1,0,2,2,-9,0,2,0,0,0,2,9,46.15368270420807,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.93,42.13,48,59,0,2,3,0,1,5,12,3,0,647.3333333333334,118730.5461872239,8632.894264517743,114696.2337365801,53911.89312266562,1579.286093224528 -1189,1479,2663,2664,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.839806872298446,8.78323144620097,0,8,0,96.14227085721689,0,1,1,2019,17,4,37,37,1,4,0,24.32550004136046,24.32550004136046,0,0,0,0,0,0,0,0,.674746324365072,0,36.65,52.31,37.52,61.39,5,1,1,0,0,9,7,5,0,243,-62851.43934609366,91082.01671965577,0,0,4736.440471222137 -1189,1479,2664,2663,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.591944613519688,8.556992863329031,0,8,0,161.0462756282651,0,2,2,2019,27,12,44,50,1,12,0,14.986869963044,14.986869963044,0,0,0,0,0,0,0,0,0,0,37.52,61.39,36.65,52.31,6.666666666666667,1,1,0,0,11,7,5,0,243,-62851.43934609366,91082.01671965577,0,0,4736.440471222137 -1190,1480,2665,2666,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.738473698482949,7.735414651158632,0,5,1,149.7612475821618,0,-9,-9,2019,12,0,40,25,1,0,0,5.854143740806021,5.854143740806021,0,0,0,0,0,0,0,0,4.398872715159818,0,34.08,56.34,54.96,53.17,6.666666666666667,1,1,0,0,4,8,4,0,1081.5,90680.73204590168,25631.75954640689,0,0,2666.412108296856 -1190,1480,2666,2665,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,7.809789789937791,8.206519933813587,0,5,-1,53.79910829885377,0,-9,-9,2019,9,0,41,45,1,0,0,10.18571687788756,10.18571687788756,0,0,0,0,0,0,0,0,0,0,54.96,53.17,34.08,56.34,8.333333333333334,1,1,0,0,8,8,4,0,1081.5,90680.73204590168,25631.75954640689,0,0,2666.412108296856 -1191,1481,2667,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.89717004668,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,15.69199582994646,0,0,1,1,0,0,0,20.02,28.77,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,652,214301.4970634456,0,119174.0591038873,0,905.1689417678991 -1192,1482,2668,2669,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.154231874727824,9.344997302141913,0,6,4,52.76227742393472,0,2,2,2019,12,2,50,48,1,2,0,21.34383188169463,21.34383188169463,0,0,0,0,0,1,1,0,0,0,44.59,59.08,53.51,40.29,3.333333333333333,2,3,0,0,9,2,5,1,736.6666666666666,451848.1672278624,241578.6869871973,344233.2547728047,263717.8162885054,6572.722214880465 -1192,1482,2669,2668,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,8.856633192871422,8.520775438630835,0,6,-4,-29.60290551250284,0,1,1,2019,11,3,37,38,1,3,0,19.27266180772279,19.27266180772279,0,0,0,0,0,1,1,0,0,0,53.51,40.29,44.59,59.08,8.333333333333334,2,3,0,0,7,2,5,1,736.6666666666666,451848.1672278624,241578.6869871973,344233.2547728047,263717.8162885054,6572.722214880465 -1192,1482,2670,-9,2669,2668,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-895.2767931185124,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,5,1,736.6666666666666,451848.1672278624,241578.6869871973,344233.2547728047,263717.8162885054,6572.722214880465 -1193,1483,2671,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.510482160329514,7.385139834386984,0,0,0,-1110.823804591987,0,3,1,2019,6,0,20,24,1,0,0,12.76533800393826,12.76533800393826,0,0,0,0,0,0,0,0,0,0,53.56,46.96,-9,-9,8.333333333333334,2,3,0,0,10,4,3,1,541,74212.69189603589,2513.56029719274,0,0,1115.495143531859 -1194,1484,2672,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.882026776258424,6.006940426120469,0,0,-997.2665191842868,-9,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.01437162035905,6.153316907773843,66.36,32.68,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,323,1226077.755613864,199612.7663567289,913696.7032202595,0,1375.938869785582 -1195,1485,2673,-9,2675,2674,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.2115414916589,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,1174.75,520708.3393063573,363196.1902742938,133877.1500832181,73587.24046444743,3984.663090330175 -1195,1485,2674,2675,-9,-9,1,1,31,1,2,0,2,2,-9,1,3,7.951630534875273,8.444394306341069,5.449148309770946,7,0,-47.70480124562098,0,-9,-9,2019,18,6,37,40,1,6,0,11.22769772392461,11.22769772392461,0,0,0,0,0,1,1,0,5.637859278459782,0,25.3,43.76,57.16,56.15,3.333333333333333,1,1,0,1,6,11,3,1,1174.75,520708.3393063573,363196.1902742938,133877.1500832181,73587.24046444743,3984.663090330175 -1195,1485,2675,2674,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.298666066913429,7.290636398153287,0,7,0,-15.5229119428503,0,-9,-9,2019,6,0,16,16,1,0,0,9.38372239535545,9.38372239535545,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.3,43.76,8.333333333333334,1,1,0,1,12,11,3,1,1174.75,520708.3393063573,363196.1902742938,133877.1500832181,73587.24046444743,3984.663090330175 -1195,1485,2676,-9,2675,2674,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.6305200384709,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,1174.75,520708.3393063573,363196.1902742938,133877.1500832181,73587.24046444743,3984.663090330175 -1196,1486,2677,2678,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.676047011208508,8.861210648027729,0,39,-4,144.3208842629054,0,2,2,2019,9,0,45,42,1,0,0,12.99284451885884,12.99284451885884,0,0,0,0,0,0,0,0,0,0,54.2,57.49,43.95,53.15,6.666666666666667,1,1,0,0,11,7,5,1,143.5,923729.3128808738,446824.787217189,469101.2085504412,0,4882.720999989005 -1196,1486,2678,2677,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.758317805684532,8.791292812890223,6.675038353682871,37,4,45.48929923301957,0,3,3,2019,15,3,45,50,1,3,0,15.13078233986205,15.13078233986205,0,0,0,0,0,0,0,0,6.642468406580731,0,43.95,53.15,54.2,57.49,5,1,1,0,0,11,7,5,1,143.5,923729.3128808738,446824.787217189,469101.2085504412,0,4882.720999989005 -1197,1487,2679,2680,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.863038327505175,7.831623259599199,0,25,-4,41.35542915551633,0,2,2,2019,12,0,35,35,1,0,0,6.032142067677054,6.032142067677054,0,0,0,0,0,1,1,0,0,0,50.18,52.62,54.2,57.49,6.666666666666667,1,1,0,0,11,4,4,1,1790,-74021.26214139663,-70256.70855394268,139291.3066037961,59611.26504505848,2647.595522783521 -1197,1487,2680,2679,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.197459754988502,8.079208402735764,0,25,4,83.61751373427073,0,-9,-9,2019,7,0,23,45,1,0,0,21.86155790664093,21.86155790664093,0,0,0,0,2,1,1,0,0,0,54.2,57.49,50.18,52.62,8.333333333333334,1,1,0,0,13,4,4,1,1790,-74021.26214139663,-70256.70855394268,139291.3066037961,59611.26504505848,2647.595522783521 -1197,1487,2681,-9,2679,2680,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-986.3781397327567,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.36,52.51,-9,-9,10,1,1,0,0,1,4,4,1,1790,-74021.26214139663,-70256.70855394268,139291.3066037961,59611.26504505848,2647.595522783521 -1197,1488,2682,-9,2679,2680,1,1,19,0,1,0,2,2,-9,0,4,7.382637435434434,7.241804760203705,0,0,0,-888.4541012294794,-9,2,2,2019,12,0,37,0,1,0,1,7.010199994055428,7.010199994055428,0,0,0,0,0,1,1,0,0,0,43.69,38.01,-9,-9,8.333333333333334,1,1,0,0,3,4,3,1,729,-166860.279247725,0,0,0,557.638309682221 -1198,1489,2683,2685,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,27,0,0,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,1,0,373.6,61204.70809080328,57084.47863510034,0,0,3281.655202863038 -1198,1489,2684,-9,2685,2683,1,0,17,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1036.042964435945,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,0,373.6,61204.70809080328,57084.47863510034,0,0,3281.655202863038 -1198,1489,2685,2683,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,27,0,0,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,51,54,53,55,8,2,3,1,0,0,8,1,0,373.6,61204.70809080328,57084.47863510034,0,0,3281.655202863038 -1198,1489,2686,-9,2685,2683,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.0283005968712,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,373.6,61204.70809080328,57084.47863510034,0,0,3281.655202863038 -1198,1489,2687,-9,2685,2683,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.8012298580558,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,1,0,373.6,61204.70809080328,57084.47863510034,0,0,3281.655202863038 -1198,1490,2688,-9,2685,2683,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-999.3342767978534,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,2,0,506,-26375.77294341939,0,0,0,81.76603874726425 -1199,1491,2689,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.315222815572829,8.725885307511591,0,0,-963.8321423076513,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.134993436150554,8.15154314930855,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,723,1486026.837743758,791407.4028412127,254336.9306976816,0,3231.974895919857 -1200,1492,2690,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,5.674415410004122,6.229887954325865,0,0,-998.9683051873726,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.413933166990124,6.139963775619266,62.49,55.09,-9,-9,10,1,1,0,0,7,7,2,1,558,1823577.507485385,898407.0896776762,690847.9602906668,0,1778.896004053137 -1201,1493,2691,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.806502623442275,6.122715043009063,0,0,-949.863504487351,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,8.296232010002011,0,0,1,1,0,0,6.362113660645981,52,45,-9,-9,8,1,1,0,0,0,6,2,1,1343,121789.7060198737,64228.08590285602,167148.1453137725,0,1350.168048903077 -1202,1494,2692,2694,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.526560829569658,7.710145710564744,0,23,0,-23.37967819958156,0,2,2,2019,13,3,22,20,1,3,0,9.104757752258484,9.104757752258484,0,0,0,0,0,1,1,0,0,0,57.9,22.03,53,55,5,1,1,0,0,9,7,4,1,820,343444.958012406,-21026.01627297851,167423.9115207457,66735.11276312222,3092.576987287921 -1202,1494,2693,-9,2692,2694,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-967.0710187064075,-9,3,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.85,45.17,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,820,343444.958012406,-21026.01627297851,167423.9115207457,66735.11276312222,3092.576987287921 -1202,1494,2694,2692,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.496042613048276,8.846719102374291,0,6,0,-14.38447967883414,0,-9,-9,2019,9,0,40,40,1,1,0,15.93195189884626,15.93195189884626,0,0,0,0,0,1,1,0,0,0,53,55,57.9,22.03,8,1,1,0,0,1,7,4,1,820,343444.958012406,-21026.01627297851,167423.9115207457,66735.11276312222,3092.576987287921 -1202,1495,2695,-9,2692,2694,1,0,19,0,0,0,2,2,1,0,3,7.931195606995622,7.791876571072521,0,0,0,-1121.262377538583,-9,3,2,2019,11,1,38,0,1,1,1,7.52246374041941,7.52246374041941,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,213,175186.557144656,-5204.355307148009,0,0,1222.723663453828 -1203,1496,2696,2697,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.789206085798829,8.884175213768374,0,6,-7,-50.91565675478231,0,3,3,2019,9,0,60,41,1,1,0,15.30687009804806,15.30687009804806,0,0,0,3.765767687617741,0,1,1,0,0,0,53,52,62.01,38.87,8,1,1,0,0,1,10,5,1,509.5,1221035.012035855,1021994.582318864,399275.0770130936,278746.3663663624,4922.929460253069 -1203,1496,2697,2696,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.241387864874676,7.631852024837968,6,7,52.7378390704566,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.349284992231603,7.989411627890743,62.01,38.87,53,52,8.333333333333334,1,1,0,0,3,10,5,1,509.5,1221035.012035855,1021994.582318864,399275.0770130936,278746.3663663624,4922.929460253069 -1204,1497,2698,2699,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,42,-4,0,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,20.5,39.39,37.66,5,1,1,0,0,0,12,1,0,629,315832.2505252564,195382.4582442561,0,0,2035.07844841121 -1204,1497,2699,2698,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,4,0,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,15.02823137304501,0,42,1,1,0,0,0,39.39,37.66,29.86,20.5,1.666666666666667,1,1,0,0,0,12,1,0,629,315832.2505252564,195382.4582442561,0,0,2035.07844841121 -1204,1498,2700,-9,2698,2699,1,1,34,0,0,0,1,1,-9,0,4,8.198508250951901,7.660669626238862,0,0,0,-968.0265755515411,0,2,2,2019,12,0,38,40,1,0,1,8.117195595750211,8.117195595750211,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,6146,8832.407823746165,-70180.38037151005,0,0,1751.28499846765 -1205,1499,2701,2702,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,27,-5,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,17.69,31.43,18.27,1.666666666666667,1,1,0,1,0,6,1,0,343,244898.6583909912,176995.1617681288,202824.550239212,36848.59048342545,1206.924689688543 -1205,1499,2702,2701,-9,-9,1,1,62,0,0,0,1,1,-9,0,1,0,0,0,3,5,0,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,31.43,18.27,44.4,17.69,3.333333333333333,1,1,0,1,0,6,1,0,343,244898.6583909912,176995.1617681288,202824.550239212,36848.59048342545,1206.924689688543 -1205,1500,2703,-9,2701,2702,1,0,28,0,0,0,2,2,-9,0,2,7.034826722563161,6.99411110345901,4.182464559097474,0,0,-974.609660171271,0,3,3,2019,20,6,16,16,1,6,0,6.735644634949376,6.735644634949376,0,0,0,0,71.5,1,1,0,2.754760854595905,4.284260191940087,42.27,39.15,-9,-9,5,1,1,0,1,7,6,2,0,117,-217556.0208121367,0,0,0,1681.928585469382 -1206,1501,2704,2705,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,21,-3,17.45440692969822,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.67,53.14,51,56,8.333333333333334,1,1,0,0,0,1,2,0,1676.4,-21496.66081698583,-17916.55023836746,0,0,2302.991855958809 -1206,1501,2705,2704,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,7.901191430704058,7.775103604030662,0,21,3,-48.01379963534404,0,3,-9,2019,10,0,42,42,1,1,0,7.280813914170738,7.280813914170738,0,0,0,0,0,1,1,0,0,0,51,56,36.67,53.14,7,1,1,0,0,1,1,2,0,1676.4,-21496.66081698583,-17916.55023836746,0,0,2302.991855958809 -1206,1501,2706,-9,2704,2705,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.1585026743251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,0,1676.4,-21496.66081698583,-17916.55023836746,0,0,2302.991855958809 -1206,1501,2707,-9,2704,2705,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.014124844673,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,1676.4,-21496.66081698583,-17916.55023836746,0,0,2302.991855958809 -1206,1501,2708,-9,2704,2705,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-880.461324431659,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,1676.4,-21496.66081698583,-17916.55023836746,0,0,2302.991855958809 -1207,1502,2709,2710,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.564866916819561,7.776584271887037,0,25,0,-40.07315788992143,0,3,2,2019,7,0,45,45,1,0,0,4.45004328748724,4.45004328748724,0,0,0,0,0,0,0,0,4.687139407591673,0,51.24,58.84,46.02,48.04,8.333333333333334,1,1,0,0,13,2,5,1,337.5,662776.2096800946,229214.9587572956,431578.3886319083,68611.92426231939,3192.187475076992 -1207,1502,2710,2709,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.769304618679882,8.933229216696697,0,25,0,53.86105191776666,0,2,-9,2019,11,0,45,42,1,0,0,15.74231102003346,15.74231102003346,0,0,0,0,0,0,0,0,2.615301340455282,0,46.02,48.04,51.24,58.84,6.666666666666667,1,1,0,0,11,2,5,1,337.5,662776.2096800946,229214.9587572956,431578.3886319083,68611.92426231939,3192.187475076992 -1208,1503,2711,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,7.964748364209319,8.423963613105014,6.401519578241063,0,0,-885.1851591922549,0,3,3,2019,5,1,40,0,1,1,0,7.640878319309074,7.640878319309074,0,0,0,0,0,0,0,0,6.894185547861674,0,43.45,43.74,-9,-9,10,1,1,0,0,2,2,4,0,426,-17406.34198049366,138565.9295091136,36368.25013692846,36754.65488491683,1677.274182712556 -1209,1504,2712,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.066371520539544,7.998367854338347,4.594095728625687,0,0,-954.7460759950204,0,2,2,2019,6,0,40,40,1,0,0,7.78899288487525,7.78899288487525,0,0,0,0,0,0,0,0,0,4.934158673033305,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,13,5,4,1,661,40973.544298136,65420.87570514614,0,0,1046.71102949779 -1210,1505,2713,2716,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.21303982360762,8.05259286943191,0,16,7,-54.98714203297215,0,3,2,2019,12,1,40,34,1,1,0,8.291002065384449,8.291002065384449,0,0,0,0,0,1,1,0,0,0,37,53.29,17.63,68.89,5,1,1,0,0,9,13,3,1,1021.5,262887.6028960454,180448.2358394932,50659.58672343395,0,2177.922158182005 -1210,1505,2714,-9,2716,2713,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.293606050426,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,1021.5,262887.6028960454,180448.2358394932,50659.58672343395,0,2177.922158182005 -1210,1505,2715,-9,2716,2713,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.678363580747,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,1,1021.5,262887.6028960454,180448.2358394932,50659.58672343395,0,2177.922158182005 -1210,1505,2716,2713,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.553440487230464,7.730009618555667,0,16,-7,3.760543094630913,0,2,2,2019,18,6,24,18,1,6,0,9.717538560362298,9.717538560362298,0,0,0,0,0,1,1,0,0,0,17.63,68.89,37,53.29,1.666666666666667,1,1,0,1,11,13,3,1,1021.5,262887.6028960454,180448.2358394932,50659.58672343395,0,2177.922158182005 -1211,1506,2717,2718,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,7.333241642508977,7.082627329244768,0,18,0,-38.75894192937642,0,-9,-9,2019,23,11,2,2,1,11,0,79.20127878486929,79.20127878486929,0,0,0,.0699328991355994,74.5,1,1,0,0,0,18.05,64.93000000000001,50.28,51.35,8.333333333333334,1,1,0,0,10,10,4,1,688.8,118540.6893916558,199827.9109266527,206312.3366190021,137856.903863543,3619.69134376147 -1211,1506,2718,2717,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.761271056316579,8.60519138718298,0,18,9,39.15408383653458,0,2,2,2019,10,0,41,40,1,0,0,13.46895350838422,13.46895350838422,0,0,0,0,42,1,1,0,2.246341504885728,0,50.28,51.35,18.05,64.93000000000001,6.666666666666667,1,1,0,0,10,10,4,1,688.8,118540.6893916558,199827.9109266527,206312.3366190021,137856.903863543,3619.69134376147 -1211,1506,2719,-9,2717,2718,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-950.2529073704482,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,688.8,118540.6893916558,199827.9109266527,206312.3366190021,137856.903863543,3619.69134376147 -1211,1506,2720,-9,2717,2718,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.2399165455389,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,688.8,118540.6893916558,199827.9109266527,206312.3366190021,137856.903863543,3619.69134376147 -1211,1506,2721,-9,2717,2718,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-855.9627154902635,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,688.8,118540.6893916558,199827.9109266527,206312.3366190021,137856.903863543,3619.69134376147 -1212,1507,2722,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,6.507881094781276,7.073791050323382,0,0,0,-927.165721543648,0,-9,-9,2019,5,0,50,30,1,0,0,1.859217246711928,1.859217246711928,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,11,2,2,0,2639,157483.3690569735,0,0,0,-36.54350618854795 -1213,1508,2723,2724,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,11,-4,-13.78860539112063,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.194957234236183,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,5,5,4,1,1481.25,89547.49955296631,82481.31557594583,0,0,3562.657335479357 -1213,1508,2724,2723,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.836784549612879,9.127777550632148,0,12,4,64.73348247430988,0,2,2,2019,7,0,42,40,1,0,0,19.0634754467335,19.0634754467335,0,0,0,0,2,1,1,0,3.666097919794646,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,1481.25,89547.49955296631,82481.31557594583,0,0,3562.657335479357 -1213,1508,2725,-9,2723,2724,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.4917578211248,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,1481.25,89547.49955296631,82481.31557594583,0,0,3562.657335479357 -1213,1508,2726,-9,2723,2724,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.036119088765,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1481.25,89547.49955296631,82481.31557594583,0,0,3562.657335479357 -1214,1509,2727,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.578116970236004,7.74914126301223,0,0,0,-976.0445485780344,0,3,3,2019,11,1,36,40,1,1,0,6.696025518460862,6.696025518460862,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,947,-135085.0792292123,47714.62938459952,0,0,1167.487649072932 -1215,1510,2728,2729,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,10,23,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.02,33.74,48.14,53.42,8.333333333333334,1,1,0,0,0,9,1,0,1982.5,19247.6534557129,0,0,0,1227.469402085148 -1215,1510,2729,2728,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,22,-23,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.14,53.42,53.02,33.74,5,1,1,0,0,7,9,1,0,1982.5,19247.6534557129,0,0,0,1227.469402085148 -1216,1511,2730,2732,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,6.004273968979554,6.081281724893472,0,2,2,-104.1203668992661,0,-9,-9,2019,12,0,15,0,1,0,0,3.897658123664787,3.897658123664787,0,0,0,0,0,1,1,0,0,0,46.55,58.3,55.09,43.45,8.333333333333334,1,1,0,0,0,5,2,0,738.75,71147.36206600424,0,0,0,1767.680515003733 -1216,1511,2731,-9,2732,2730,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.284536253376,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,738.75,71147.36206600424,0,0,0,1767.680515003733 -1216,1511,2732,2730,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,2,-2,-96.88482436690109,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,43.45,46.55,58.3,10,1,1,0,0,0,5,2,0,738.75,71147.36206600424,0,0,0,1767.680515003733 -1216,1511,2733,-9,2732,2730,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.782324785927,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,738.75,71147.36206600424,0,0,0,1767.680515003733 -1217,1512,2734,2735,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.645001688622292,8.665743796258216,0,8,-1,-48.03158631889521,0,2,2,2019,13,1,48,62,1,1,0,13.16772873252887,13.16772873252887,0,0,0,0,0,0,0,0,0,0,57.16,56.15,12.12,67.62,8.333333333333334,1,1,0,0,11,2,5,1,2884.5,407263.6305527497,205940.5162113081,469352.0630970972,232324.1226621475,3348.779603263037 -1217,1512,2735,2734,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.284354605465998,7.985718701843258,0,8,1,100.1251493199001,0,-9,-9,2019,29,10,43,44,1,10,0,8.890791023268525,8.890791023268525,0,0,0,0,0,0,0,0,0,0,12.12,67.62,57.16,56.15,3.333333333333333,1,1,0,0,13,2,5,1,2884.5,407263.6305527497,205940.5162113081,469352.0630970972,232324.1226621475,3348.779603263037 -1218,1513,2736,2737,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.720973318011626,7.763758174000853,0,9,1,-55.88616544459007,0,3,3,2019,8,0,42,38,1,0,0,7.35360060419459,7.35360060419459,0,0,0,0,27,0,0,0,0,0,49.11,45,31.41,23.68,8.333333333333334,1,1,0,0,10,4,3,0,791,494535.6871694291,221604.9795587646,172441.4430364653,0,1132.884967205013 -1218,1513,2737,2736,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,9,-1,-20.61615866452113,0,-9,-9,2019,18,6,0,15,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,23.68,49.11,45,3.333333333333333,1,1,1,0,5,4,3,0,791,494535.6871694291,221604.9795587646,172441.4430364653,0,1132.884967205013 -1219,1514,2738,2739,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.036822759132598,7.048509880690976,0,23,7,17.48972818586004,0,-9,-9,2019,13,4,50,40,1,4,0,3.687312336514872,3.687312336514872,0,0,0,0,0,0,0,0,8.895098653066333,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,11,10,3,1,172,12212.61669048083,-6362.145601889748,0,0,4056.005201490869 -1219,1514,2739,2738,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.639013117508141,7.560053752047892,0,23,-7,-2.934805640556622,0,2,2,2019,7,0,25,30,1,0,0,9.685209031664142,9.685209031664142,0,0,0,0,0,0,0,0,1.750000498463927,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,11,10,3,1,172,12212.61669048083,-6362.145601889748,0,0,4056.005201490869 -1219,1515,2740,-9,2739,2738,1,1,20,0,0,0,2,2,-9,0,5,7.983393439625998,7.792017712218283,0,0,0,-919.7972835237194,0,2,2,2019,12,0,35,35,1,0,1,8.855362543620585,8.855362543620585,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,381,-92467.19022963151,0,0,0,1350.212322691684 -1219,1516,2741,-9,2739,2738,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1070.48622134621,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.25900364649212,0,42.9,55.84,-9,-9,5,1,1,0,0,11,10,1,1,503,0,0,0,0,618.3852806114004 -1220,1517,2742,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,6.51820458434872,6.712978080854479,0,0,-933.9122020846813,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.200833678373433,6.258255714061779,47.62,33.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,3160,535636.47547756,93717.63597066879,305449.2175001226,0,1882.540332341506 -1221,1518,2743,2744,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.495710615277679,7.434457094665579,10,2,26.8726830093295,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.050533067272635,7.638750411252683,61.29,38.14,48.55,29.76,8.333333333333334,1,1,0,0,0,10,3,1,395.5,970121.2798603766,201249.5413781275,362795.8335579992,0,2557.224473514384 -1221,1518,2744,2743,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.831563876265223,6.17145292046784,10,-2,-78.40956756314462,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.639214870607661,5.435816048931433,48.55,29.76,61.29,38.14,8.333333333333334,1,1,0,0,0,10,3,1,395.5,970121.2798603766,201249.5413781275,362795.8335579992,0,2557.224473514384 -1222,1519,2745,-9,2747,2748,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.2804123311987,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,577.75,284226.1614709955,77761.83405271501,296138.0434433303,181209.7276426704,3713.738682980297 -1222,1519,2746,-9,2747,2748,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.4776716450141,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,577.75,284226.1614709955,77761.83405271501,296138.0434433303,181209.7276426704,3713.738682980297 -1222,1519,2747,2748,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.951084545608135,7.686450901746671,0,21,-3,60.13298143924844,0,2,2,2019,14,3,12,15,1,3,0,28.02295583076858,28.02295583076858,0,0,0,0,0,1,1,0,3.82683955958422,0,47.87,57.73,40.46,63.68,3.333333333333333,1,1,0,0,7,1,5,1,577.75,284226.1614709955,77761.83405271501,296138.0434433303,181209.7276426704,3713.738682980297 -1222,1519,2748,2747,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.831603488127188,8.850750936736913,0,21,3,31.29498184845959,0,2,2,2019,24,12,52,52,1,12,0,18.50861180149963,18.50861180149963,0,0,0,0,0,1,1,0,2.024300081896956,0,40.46,63.68,47.87,57.73,3.333333333333333,1,1,0,0,9,1,5,1,577.75,284226.1614709955,77761.83405271501,296138.0434433303,181209.7276426704,3713.738682980297 -1222,1520,2749,-9,2747,2748,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1067.98041294161,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,1,1,1,423,-254848.9886620957,0,0,0,0 -1223,1521,2750,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.195409459956098,6.844052971452725,0,0,-938.4081593095062,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.802263320026173,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,890,292069.2865988101,21479.87968109208,34728.03065295261,0,894.6111141164088 -1224,1522,2751,-9,-9,2752,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.555085069057,1,-9,2,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,27.28,51.17,-9,-9,3.333333333333333,1,1,0,0,1,10,5,1,973.5,3142190.0919927,2845671.221702918,180851.0661448798,0,3386.489815290353 -1224,1522,2752,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.164921922782151,9.122457481413054,6.717154495276518,0,0,-973.2579488159829,0,-9,-9,2019,8,0,60,52,1,0,0,21.73499416714967,21.73499416714967,0,0,0,0,0,0,0,0,0,6.478246400286393,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,10,5,1,973.5,3142190.0919927,2845671.221702918,180851.0661448798,0,3386.489815290353 -1224,1523,2753,-9,-9,2752,1,1,20,0,0,0,2,2,-9,0,5,5.222557019364225,5.342013926774317,0,0,0,-997.3468072051063,0,-9,2,2019,11,1,40,46,1,1,1,.5244880398672682,.5244880398672682,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,1,3,10,2,1,736,0,0,0,0,94.22027483508073 -1225,1524,2754,2755,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.530094575930191,8.690590427286731,0,8,2,62.34460016002568,0,-9,-9,2019,11,0,40,40,1,1,0,18.72786392990793,18.72786392990793,0,0,0,0,0,1,1,0,2.88764970909917,0,50,50,57.16,56.15,7,4,1,0,0,1,13,5,1,1837,693992.4200891596,366567.606279844,221486.4024331319,8988.196326594762,4637.733186037505 -1225,1524,2755,2754,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.129148383844498,8.666459953387148,0,8,-2,-127.9392446284175,0,3,3,2019,6,0,37,30,1,0,0,17.0790824248337,17.0790824248337,0,0,0,0,0,1,1,0,4.001497692306572,0,57.16,56.15,50,50,10,1,1,0,0,9,13,5,1,1837,693992.4200891596,366567.606279844,221486.4024331319,8988.196326594762,4637.733186037505 -1225,1525,2756,-9,2755,2754,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-996.6707620232834,-9,2,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,2862,0,0,0,0,689.6137389824142 -1226,1526,2757,2758,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.72725337705447,7.405592648098144,46,0,-68.32012039531263,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,2.326214884293263,0,14.5,1,1,0,2.002648934753485,7.655183464857255,62.57,51.16,62.39,56.71,10,1,1,0,0,0,9,3,1,940.5,1445026.634164228,746664.3647314957,598959.1397176394,3157.287522770232,1884.863711515115 -1226,1526,2758,2757,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.601647046741888,5.851225455949725,46,0,43.30488699329602,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.17571355458706,6.150950347881374,62.39,56.71,62.57,51.16,10,1,1,0,0,0,9,3,1,940.5,1445026.634164228,746664.3647314957,598959.1397176394,3157.287522770232,1884.863711515115 -1227,1527,2759,2760,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.856878103131142,7.140870850888155,0,37,0,-19.90227272719703,0,-9,-9,2019,11,0,10,15,1,2,0,11.08511193482859,11.08511193482859,0,0,0,0,0,1,1,0,.7571953336356382,0,49,48,57.16,56.15,7,1,1,0,0,1,12,3,1,234.5,294468.1248080576,41105.1490272285,162555.8944252488,0,1802.901673816851 -1227,1527,2760,2759,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.031416548949029,6.894007948467906,37,9,32.87083686628351,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.924320872244819,7.013537600810677,57.16,56.15,49,48,8.333333333333334,1,1,0,0,7,12,3,1,234.5,294468.1248080576,41105.1490272285,162555.8944252488,0,1802.901673816851 -1228,1528,2761,2763,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.729666866846157,8.962685235381327,0,7,-8,107.3269731442297,0,3,2,2019,23,11,41,41,1,11,0,16.09124165077268,16.09124165077268,0,0,0,0,0,1,1,0,1.992283126102796,0,30.25,46,57.92,51.82,3.333333333333333,1,1,0,0,8,11,5,1,768,671084.8397005005,377582.8835094207,255227.6596553623,252350.4608199541,5293.664857483904 -1228,1528,2762,-9,2761,2763,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.749291667518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,5,1,768,671084.8397005005,377582.8835094207,255227.6596553623,252350.4608199541,5293.664857483904 -1228,1528,2763,2761,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.908443189948638,8.809899474787146,0,7,8,28.67772894150701,0,2,2,2019,6,0,36,50,1,0,0,24.65363484853857,24.65363484853857,0,0,0,0,0,1,1,0,0,0,57.92,51.82,30.25,46,8.333333333333334,1,1,0,0,8,11,5,1,768,671084.8397005005,377582.8835094207,255227.6596553623,252350.4608199541,5293.664857483904 -1228,1528,2764,-9,2761,2763,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-992.5942202258722,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,1,1,11,5,1,768,671084.8397005005,377582.8835094207,255227.6596553623,252350.4608199541,5293.664857483904 -1229,1529,2765,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.330361045599886,8.529155237439296,0,0,0,-827.4403883933112,0,2,2,2019,9,0,55,0,1,0,0,6.632691253330512,6.632691253330512,0,0,0,0,0,0,0,0,0,0,50.82,44.55,-9,-9,6.666666666666667,1,1,0,1,8,4,4,0,1196,-21656.50351547335,-28720.71316358291,0,0,1044.945311684535 -1230,1530,2766,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.225748614996,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,10.26994872833404,0,0,1,1,0,0,0,64.25,28.77,-9,-9,10,3,4,0,0,0,5,1,1,178,0,0,0,0,126.1985751449928 -1231,1531,2767,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,5.903904376982892,5.500878812040294,0,0,-1000.692990776435,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.101076381502726,5.767228664627699,39.43,45.8,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,301,218162.3344437467,0,0,0,1526.255566688867 -1232,1532,2768,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,1,7.545641661615549,7.592090595449575,0,0,0,-922.6513321706228,0,3,3,2019,36,12,25,25,1,12,0,9.245453971041155,9.245453971041155,0,0,0,0,2,1,1,0,0,0,22.21,47.14,-9,-9,0,1,1,0,1,6,9,2,1,401.6666666666667,268240.6854470993,171076.1150750419,231026.9777809852,92118.85976987833,2055.373068894398 -1232,1532,2769,-9,2768,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.930116515756,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,401.6666666666667,268240.6854470993,171076.1150750419,231026.9777809852,92118.85976987833,2055.373068894398 -1232,1532,2770,-9,2768,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.6709950815808,-9,3,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,61.54,-9,-9,5,1,1,0,0,0,9,2,1,401.6666666666667,268240.6854470993,171076.1150750419,231026.9777809852,92118.85976987833,2055.373068894398 -1232,1533,2771,-9,2768,-9,1,1,20,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1003.034665422381,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,.7539557914630777,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,1,4,9,1,1,1619,89722.20942004491,0,0,0,90.39930471770714 -1233,1534,2772,2773,-9,-9,1,1,33,1,2,0,1,1,-9,0,3,8.539952363941699,8.647797277819686,0,10,1,-79.9508058774517,0,2,2,2019,19,7,37,37,1,7,0,14.97786361894666,14.97786361894666,0,0,0,0,0,1,1,0,0,0,37.7,54.28,47.79,56.46,5,1,1,0,0,10,13,4,1,559.75,657088.0776659049,625981.8700100947,221094.0340687755,101972.2298635119,3698.591797539502 -1233,1534,2773,2772,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,8.00602141434698,7.67608653163295,0,10,-1,68.37445951250585,0,2,2,2019,9,0,29,29,1,0,0,7.943761609829632,7.943761609829632,0,0,0,0,0,1,1,0,0,0,47.79,56.46,37.7,54.28,8.333333333333334,1,1,0,0,10,13,4,1,559.75,657088.0776659049,625981.8700100947,221094.0340687755,101972.2298635119,3698.591797539502 -1233,1534,2774,-9,2773,2772,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.036411780305,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,559.75,657088.0776659049,625981.8700100947,221094.0340687755,101972.2298635119,3698.591797539502 -1233,1534,2775,-9,2773,2772,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.001774624897,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,559.75,657088.0776659049,625981.8700100947,221094.0340687755,101972.2298635119,3698.591797539502 -1234,1535,2776,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,0,0,0,0,0,-877.125844195088,0,2,2,2019,11,0,0,24,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,35.8,59.5,-9,-9,5,2,3,1,0,10,8,1,0,358,121554.8586548502,0,0,0,0 -1235,1536,2777,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,4,0,7.588824836892575,7.167180149025789,0,0,-983.3929451792033,0,3,3,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.514929562838887,8.000593551647146,48.74,53.13,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,2224,511128.6408863005,66283.64240374291,182882.9970227824,0,1496.310025936273 -1236,1537,2778,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,9.23306227010527,9.355334770937962,0,0,0,-986.9198549058468,0,3,2,2019,19,7,40,0,1,7,0,26.37223408417494,26.37223408417494,0,0,0,0,0,1,1,0,0,0,39.64,30.85,-9,-9,5,3,4,0,1,1,4,5,0,303,77570.26124417409,0,0,0,5548.078165712187 -1236,1538,2779,-9,2778,-9,1,0,30,0,0,0,1,1,-9,0,3,0,0,0,0,0,-980.3118371932835,1,2,2,2019,6,0,0,23,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,4,5,0,0,6,4,1,0,4181,193564.3254445391,0,0,0,210.2331148491606 -1237,1539,2780,2781,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,47,6,165.7362636114509,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,7.428683581049754,0,0,1,1,0,.272774874269338,0,58.98,23.2,53.96,28.04,10,1,1,0,0,0,11,2,1,566,142376.3628106928,0,127673.3738004338,0,278.6650876331212 -1237,1539,2781,2780,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,3.7608122840917,3.906070023808606,47,-6,10.95901820140836,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,3.954956166927466,53.96,28.04,58.98,23.2,8.333333333333334,1,1,0,0,0,11,2,1,566,142376.3628106928,0,127673.3738004338,0,278.6650876331212 -1238,1540,2782,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1036.179687314209,0,3,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,49.14,-9,-9,10,1,1,1,0,0,6,1,0,637,29402.81991061227,-15456.59056281469,0,0,213.280579105129 -1239,1541,2783,-9,2784,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1003.380688260883,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,4,2,-9,0,0,6,2,0,1136.5,-14776.30914307488,0,237377.7245871153,55617.59630656416,1236.775987831241 -1239,1541,2784,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,5.798557389551968,5.613392047419078,0,0,0,-932.6903898409157,0,2,1,2019,17,5,16,16,1,5,0,2.603681849438805,2.603681849438805,0,0,0,0,0,1,1,0,0,0,27.5,51.38,-9,-9,1.666666666666667,4,2,0,1,7,6,2,0,1136.5,-14776.30914307488,0,237377.7245871153,55617.59630656416,1236.775987831241 -1240,1542,2785,2786,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,28,0,71.03012628165963,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,51,56,8,2,3,0,0,0,8,2,0,1759.333333333333,61785.976306959,-49670.33258005176,162667.1985178544,68307.06126303006,2517.423602187575 -1240,1542,2786,2785,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.66267607193047,7.569723644493077,0,28,0,76.7017840339501,0,3,3,2019,9,0,24,35,1,1,0,11.16452760235921,11.16452760235921,0,0,0,0,0,1,1,0,0,0,51,56,50,55,7,2,3,0,1,11,8,2,0,1759.333333333333,61785.976306959,-49670.33258005176,162667.1985178544,68307.06126303006,2517.423602187575 -1240,1542,2787,-9,2785,2786,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-966.2912064320655,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,1759.333333333333,61785.976306959,-49670.33258005176,162667.1985178544,68307.06126303006,2517.423602187575 -1240,1543,2788,-9,2785,2786,1,0,23,0,1,0,2,2,-9,0,3,8.163943996640363,8.205811463387322,0,0,0,-1068.606555975525,0,2,3,2019,21,7,42,0,1,7,1,9.473366407706829,9.473366407706829,0,0,0,0,0,1,1,0,.8537726663549366,0,26.8,45.8,-9,-9,6.666666666666667,2,3,0,0,2,8,4,0,581,116797.1236308533,1277.120486099939,0,0,1127.665480301292 -1240,1544,2789,-9,2785,2786,1,0,18,0,1,0,2,2,1,0,4,7.300971037391078,6.975867855066349,0,0,0,-1007.98793112182,-9,2,3,2019,12,0,24,0,1,2,1,6.216042904873428,6.216042904873428,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,1,8,3,0,254,186971.5557577163,-38072.12137886669,0,0,657.7501413912602 -1241,1545,2790,-9,2793,2791,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.935514326385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,476.75,703683.4578601763,74914.02393602884,478987.9623519608,-902.5813289506621,3624.518039888299 -1241,1545,2791,2793,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.319146680452205,8.443786207743955,0,4,1,-74.4794202111225,0,-9,-9,2019,7,0,35,35,1,0,0,19.56861362494962,19.56861362494962,0,0,0,0,0,1,1,0,0,0,60.02,56.42,53.81,53.56,8.333333333333334,1,1,0,0,10,12,4,1,476.75,703683.4578601763,74914.02393602884,478987.9623519608,-902.5813289506621,3624.518039888299 -1241,1545,2792,-9,2793,2791,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.584330031972,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,476.75,703683.4578601763,74914.02393602884,478987.9623519608,-902.5813289506621,3624.518039888299 -1241,1545,2793,2791,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.369696429761264,8.651772158752419,0,12,-1,-10.74339492373199,0,1,2,2019,7,0,28,28,1,0,0,16.20614294289355,16.20614294289355,0,0,0,0,0,1,1,0,0,0,53.81,53.56,60.02,56.42,8.333333333333334,1,1,0,0,8,12,4,1,476.75,703683.4578601763,74914.02393602884,478987.9623519608,-902.5813289506621,3624.518039888299 -1242,1546,2794,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1102.660166354004,-9,2,2,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,1,0,354,-59313.36952449119,0,0,0,136.3070004714499 -1243,1547,2795,-9,2796,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.196039832654,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,555,90245.12636788998,0,0,0,1710.004673302278 -1243,1547,2796,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,7.002104380935246,6.800685611019083,0,0,0,-898.8965044276771,0,2,3,2019,13,1,22,16,1,1,0,6.191896371888174,6.191896371888174,0,0,0,0,0,1,1,0,0,0,33.44,52.06,-9,-9,3.333333333333333,1,1,0,0,3,12,2,0,555,90245.12636788998,0,0,0,1710.004673302278 -1244,1548,2797,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.40332300016038,7.680591694759165,0,0,-1048.768862484843,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.312068265526495,6.97909488459598,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,884,80607.70543705436,-79949.11711402769,176571.6126041494,0,1667.979101862775 -1245,1549,2798,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-969.7578159391211,0,-9,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,2,1,0,1436,0,0,0,0,1389.006324635119 -1246,1550,2799,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-996.817473064168,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,3.891452548486976,0,43.84,37.11,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,1780,-2644.918400711566,0,0,0,62.99154093330966 -1247,1551,2800,2801,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.22857973827368,8.999935465564871,0,7,7,148.0020683897399,0,2,2,2019,10,2,35,45,1,2,0,24.89250517227742,24.89250517227742,0,0,0,0,0,0,0,0,7.993241722152614,0,41.53,63.13,56.92,49.39,8.333333333333334,1,1,0,0,11,8,5,1,639,407469.05222126,56700.49961489389,433551.1587455848,159232.5639603915,6330.558050812029 -1247,1551,2801,2800,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.912098482014827,8.985595775971253,0,7,-7,-19.30413931257834,0,-9,-9,2019,6,0,50,55,1,0,0,16.9001788471107,16.9001788471107,0,0,0,0,0,0,0,0,0,0,56.92,49.39,41.53,63.13,8.333333333333334,1,1,0,0,6,8,5,1,639,407469.05222126,56700.49961489389,433551.1587455848,159232.5639603915,6330.558050812029 -1248,1552,2802,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.156529522851738,6.608440032190928,0,0,-885.9358191866642,0,3,2,2019,28,10,0,0,4,10,0,0,0,1,74.0017879464516,1.174942266230802,676.0493998138114,0,1,1,0,0,6.55039833195071,30.6,18.53,-9,-9,0,1,1,0,0,3,9,2,1,420,159905.3811796756,-36164.22628780159,154166.5889620681,0,1424.198267438339 -1249,1553,2803,2804,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,41,3,-44.17741537573862,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7758363392406067,0,60.02,56.42,62.57,51.16,10,1,1,0,0,0,8,3,1,576.5,776798.7076514349,257097.6827586351,481149.5940186286,0,2222.649731798178 -1249,1553,2804,2803,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,7.915429122994751,7.856121047410767,42,-3,125.1183982513207,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.88615828001631,62.57,51.16,60.02,56.42,8.333333333333334,1,1,0,0,8,8,3,1,576.5,776798.7076514349,257097.6827586351,481149.5940186286,0,2222.649731798178 -1250,1554,2805,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.232000662414507,6.224682280207485,0,0,-1011.166837773242,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,6.691653870934594,0,69.31018635205318,0,1,1,0,6.434562727087582,6.428355601577266,53,45,-9,-9,8,1,1,0,0,0,9,2,1,2020,436517.7037291976,17848.2507995187,230564.3803028575,0,1110.956032202705 -1251,1555,2806,2807,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.117839541775282,7.975117414654412,6,-2,-36.52647250362147,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.012999719665162,7.782698929641882,40.27,50.59,49.41,52.74,6.666666666666667,1,1,0,0,0,7,4,1,241.5,2097254.189432467,581969.8598249527,1358053.656030248,0,3261.267350457367 -1251,1555,2807,2806,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.460167777645657,7.523998569387139,6,2,-72.77228132210627,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.745419224009667,7.42572499421343,49.41,52.74,40.27,50.59,8.333333333333334,1,1,0,0,0,7,4,1,241.5,2097254.189432467,581969.8598249527,1358053.656030248,0,3261.267350457367 -1252,1556,2808,-9,2809,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.33638231978,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,789.5,-145473.6192848169,84014.58889507817,0,0,616.4302006731356 -1252,1556,2809,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,4.882663501997168,4.764688854721003,0,0,0,-932.5378018397104,0,2,2,2019,10,1,16,16,1,1,0,.961602122033649,.961602122033649,0,0,0,0,0,1,1,0,0,0,43.75,50.34,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,789.5,-145473.6192848169,84014.58889507817,0,0,616.4302006731356 -1253,1557,2810,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.415546319751247,9.530522515394281,0,0,0,-1081.46592690518,0,2,1,2019,15,3,43,50,1,3,0,35.39016187886284,35.39016187886284,0,0,0,0,0,0,0,0,2.462283714982424,0,32.37,60.51,-9,-9,3.333333333333333,2,3,0,0,10,6,5,1,915,30213.7965407899,162373.3267897522,85635.94212976232,59226.1909343022,4462.630961429559 -1254,1558,2811,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.672019638344372,8.563075552748947,0,0,0,-1047.491003187361,-9,2,-9,2019,11,0,47,0,1,0,0,17.04378517191291,17.04378517191291,0,0,0,0,0,0,0,0,1.574452809845437,0,54.2,57.49,-9,-9,5,1,1,0,0,8,8,5,1,587,630763.4904231909,-108432.3128830515,638302.3847353283,0,2278.188526230019 -1255,1559,2812,2815,-9,-9,1,1,32,1,3,0,2,2,-9,0,3,7.890687453422946,7.801533932605538,0,3,2,93.42822920789003,0,-9,-9,2019,6,0,36,0,1,0,0,5.740625547135282,5.740625547135282,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,0,10,2,0,1660.2,157571.6017550449,0,170960.0415573788,31008.13398200853,1867.498634442038 -1255,1559,2813,-9,2815,2812,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.422093432424,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1660.2,157571.6017550449,0,170960.0415573788,31008.13398200853,1867.498634442038 -1255,1559,2814,-9,2815,2812,1,1,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1054.655289964587,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,2,0,1660.2,157571.6017550449,0,170960.0415573788,31008.13398200853,1867.498634442038 -1255,1559,2815,2812,-9,-9,1,0,30,1,3,0,3,3,-9,0,4,0,0,0,3,-2,-104.6568791996604,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,0,10,2,0,1660.2,157571.6017550449,0,170960.0415573788,31008.13398200853,1867.498634442038 -1255,1559,2816,-9,2815,2812,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.995732117869,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,1660.2,157571.6017550449,0,170960.0415573788,31008.13398200853,1867.498634442038 -1256,1560,2817,2818,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.56096961394225,7.544361968442752,0,8,3,18.72884474263614,0,2,2,2019,13,2,37,35,1,2,0,6.471309952119027,6.471309952119027,0,0,0,0,0,1,1,0,0,0,52.82,53.97,57.16,56.15,1.666666666666667,1,1,0,0,9,2,4,1,705.3333333333334,635269.2430679662,170751.3223618553,313775.6145477808,11966.15016501483,3292.495292828176 -1256,1560,2818,2817,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.810759925659605,8.899398867593701,0,8,-3,25.22651426244744,0,3,3,2019,6,0,41,37,1,0,0,15.72699927919694,15.72699927919694,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.82,53.97,8.333333333333334,1,1,0,0,9,2,4,1,705.3333333333334,635269.2430679662,170751.3223618553,313775.6145477808,11966.15016501483,3292.495292828176 -1256,1560,2819,-9,2817,2818,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.934816910468,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,705.3333333333334,635269.2430679662,170751.3223618553,313775.6145477808,11966.15016501483,3292.495292828176 -1256,1561,2820,-9,2817,2818,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-900.04997132725,-9,2,2,2019,22,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,38.28,57.07,-9,-9,1.666666666666667,1,1,1,0,0,2,1,1,134,-1839.389034434034,0,0,0,0 -1257,1562,2821,-9,2823,2822,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.1014156280429,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,844.2,91906.28689554401,41470.3472592804,205021.1216471004,162684.3748070642,2959.527753036731 -1257,1562,2822,2823,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,8.288931032227584,7.892256186402564,0,8,7,-41.83037101000365,0,-9,-9,2019,8,0,44,40,1,0,0,10.87256031761923,10.87256031761923,0,0,0,0,82,1,1,0,0,0,55.51,51.57,43.84,58.37,6.666666666666667,1,1,0,0,7,1,3,0,844.2,91906.28689554401,41470.3472592804,205021.1216471004,162684.3748070642,2959.527753036731 -1257,1562,2823,2822,-9,-9,1,0,31,0,3,0,3,3,-9,1,3,0,0,0,8,-7,-144.2908917218796,0,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.84,58.37,55.51,51.57,8.333333333333334,1,1,0,0,0,1,3,0,844.2,91906.28689554401,41470.3472592804,205021.1216471004,162684.3748070642,2959.527753036731 -1257,1562,2824,-9,2823,2822,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.0619611669335,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,844.2,91906.28689554401,41470.3472592804,205021.1216471004,162684.3748070642,2959.527753036731 -1257,1562,2825,-9,2823,2822,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-843.4685036641363,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,0,844.2,91906.28689554401,41470.3472592804,205021.1216471004,162684.3748070642,2959.527753036731 -1258,1563,2826,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.828759910488187,8.351474275184966,0,0,-932.7969870568364,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.899927028672998,7.361327163536507,57.31,27.01,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,46,879677.9918992184,452873.6064117675,537064.9845813274,0,1991.314565456043 -1259,1564,2827,2828,-9,-9,1,1,46,1,1,0,2,2,-9,0,4,8.990665709234559,8.847344499119176,0,2,10,152.5187379415935,0,-9,-9,2019,13,1,38,37,1,1,0,25.8716210260223,25.8716210260223,0,0,0,0,0,0,0,0,0,0,43.39,54.21,47.52,57.75,5,1,1,0,0,3,13,5,0,438,814712.1634845092,730496.3358045258,211305.8779107818,127008.3846485495,4568.599534412207 -1259,1564,2828,2827,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.344566453542406,8.189969229847902,0,2,-10,-63.76491344245818,0,2,2,2019,6,0,37,37,1,0,0,13.3691998994788,13.3691998994788,0,0,0,0,0,0,0,0,6.702782436353319,0,47.52,57.75,43.39,54.21,10,1,1,0,0,10,13,5,0,438,814712.1634845092,730496.3358045258,211305.8779107818,127008.3846485495,4568.599534412207 -1259,1564,2829,-9,2828,2827,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.6750685251835,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,0,438,814712.1634845092,730496.3358045258,211305.8779107818,127008.3846485495,4568.599534412207 -1259,1565,2830,-9,2828,2827,1,0,20,1,1,1,2,0,0,0,4,0,0,0,0,0,-1046.919165855901,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,13,1,0,537,-33490.83603579711,0,0,0,0 -1259,1566,2831,-9,2828,2827,1,0,19,1,1,1,2,0,0,0,4,0,0,0,0,0,-848.484067059023,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1340,-54047.66808527033,0,0,0,0 -1260,1567,2832,-9,2833,2834,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.5796007824439,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,656.75,678411.7591331444,309542.2546039085,477086.3255325086,269288.5192485434,4428.202661138309 -1260,1567,2833,2834,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,8.734026924759407,9.166415528962649,0,4,2,-65.14991970246375,0,2,2,2019,10,0,24,24,1,0,0,33.56703516947135,33.56703516947135,0,0,0,0,0,1,1,0,2.709977158275474,0,48.66,49.1,52.57,52.89,8.333333333333334,1,1,0,0,8,4,5,1,656.75,678411.7591331444,309542.2546039085,477086.3255325086,269288.5192485434,4428.202661138309 -1260,1567,2834,2833,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,8.355039372095499,8.378307788351702,0,4,-2,72.22838868555374,0,-9,-9,2019,9,0,44,44,1,0,0,13.16385154271373,13.16385154271373,0,0,0,0,0,1,1,0,5.052386556745282,0,52.57,52.89,48.66,49.1,8.333333333333334,1,1,0,0,4,4,5,1,656.75,678411.7591331444,309542.2546039085,477086.3255325086,269288.5192485434,4428.202661138309 -1260,1567,2835,-9,2833,2834,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.396058502784,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,656.75,678411.7591331444,309542.2546039085,477086.3255325086,269288.5192485434,4428.202661138309 -1261,1568,2836,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.403287748099618,8.486550262062314,8.25840143059183,0,0,-940.777640675407,0,2,2,2019,5,0,18,18,1,0,0,9.113862985985074,9.113862985985074,0,0,0,0,0,0,0,0,9.363909043516015,0,61.12,51.57,-9,-9,10,1,1,0,0,9,9,5,1,786,475807.0489731681,302236.5555979809,310195.5561607173,0,3371.916178231332 -1262,1569,2837,-9,2840,2838,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.8623105534316,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,643.5,319687.6568078023,212523.2825892143,214340.6703943956,75544.89564806731,3852.322594743553 -1262,1569,2838,2840,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.008817587923846,6.852792152090192,0,12,2,12.45760424706268,0,2,2,2019,18,6,14,16,1,6,0,11.78611173900697,11.78611173900697,0,0,0,0,2,1,1,0,0,0,38.74,55.32,28.1,60.27,5,1,1,0,0,9,5,4,1,643.5,319687.6568078023,212523.2825892143,214340.6703943956,75544.89564806731,3852.322594743553 -1262,1569,2839,-9,2840,2838,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.916565502416,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,643.5,319687.6568078023,212523.2825892143,214340.6703943956,75544.89564806731,3852.322594743553 -1262,1569,2840,2838,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.795756822790532,8.5566857561872,0,13,-2,-73.45412080592861,0,2,2,2019,13,2,50,48,1,2,0,14.63724476946853,14.63724476946853,0,0,0,0,0,1,1,0,.5942164067775256,0,28.1,60.27,38.74,55.32,3.333333333333333,1,1,0,0,9,5,4,1,643.5,319687.6568078023,212523.2825892143,214340.6703943956,75544.89564806731,3852.322594743553 -1263,1570,2841,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.44720738044881,7.412857064893073,0,0,-960.0712407595353,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.599296435816743,7.425510201614045,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,1295,671143.0262306147,296408.3027071036,267426.1792586644,0,722.7397278629488 -1264,1571,2842,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1048.867859885811,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,32.2630457929592,0,0,1,1,0,0,0,36.4,25.66,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,221,-1711.761594719548,0,0,0,413.6361782268017 -1265,1572,2843,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.099808238409773,6.248393015662252,0,0,-995.8325654266226,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,33.92890454972054,0,321.5938688515466,0,1,1,0,0,5.779425643311218,53,44,-9,-9,8,3,4,0,0,0,8,2,0,733,158493.3345880626,119188.4017697262,0,0,835.3668282110932 -1266,1573,2844,-9,2845,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-990.5159379704966,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,1033,327726.1256518971,289267.1595673299,252264.3051045914,170853.2517949521,3397.968845042031 -1266,1573,2845,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,2,8.290738684792172,8.471986647304728,6.925325632120834,0,0,-1040.632800587059,0,-9,-9,2019,11,0,37,37,1,0,0,14.76380972196617,14.76380972196617,0,0,0,0,0,1,1,0,0,7.227574280205791,39.39,37.66,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,1033,327726.1256518971,289267.1595673299,252264.3051045914,170853.2517949521,3397.968845042031 -1266,1573,2846,-9,2845,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1172.892196774247,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,4,1,1033,327726.1256518971,289267.1595673299,252264.3051045914,170853.2517949521,3397.968845042031 -1267,1574,2847,2848,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.204458868584879,8.414302147034023,6.91950552795045,7,-3,-130.1999680033972,0,-9,-9,2019,8,0,38,26,1,0,0,12.36993335819293,12.36993335819293,0,0,0,0,0,0,0,0,6.169625352329845,0,48.37,49.31,57.33,53.46,8.333333333333334,1,1,0,0,13,10,4,1,1090.5,611042.511872816,557453.1582505195,242827.916481881,174033.1244122884,2811.83935893496 -1267,1574,2848,2847,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.730243358046133,7.601223756604006,0,7,3,-7.719701908042094,0,2,2,2019,11,0,38,38,1,0,0,7.595229621373406,7.595229621373406,0,0,0,0,0,0,0,0,3.882248125894578,0,57.33,53.46,48.37,49.31,8.333333333333334,1,1,0,0,10,10,4,1,1090.5,611042.511872816,557453.1582505195,242827.916481881,174033.1244122884,2811.83935893496 -1268,1575,2849,2850,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,58,0,-41.80552025364543,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.467759485721261,0,57.33,53.46,57.33,53.46,1.666666666666667,1,1,0,0,0,2,3,1,539,897382.5886628747,633181.0482117863,208807.4727678283,0,2168.787609877458 -1268,1575,2850,2849,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.51460131470191,7.54871695878185,58,0,-60.00169486759233,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.450262325933728,7.554463588143559,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,539,897382.5886628747,633181.0482117863,208807.4727678283,0,2168.787609877458 -1269,1576,2851,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.988561380951396,8.857112212838413,0,0,0,-1068.601280118982,0,-9,-9,2019,17,5,36,16,1,5,0,22.74084878064757,22.74084878064757,0,0,0,0,0,0,0,0,3.711232850951851,0,34.28,61.39,-9,-9,3.333333333333333,1,1,0,0,8,8,5,0,914,9519.662483694825,-40025.79786063612,0,0,2219.283076788438 -1270,1577,2852,2853,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.835252177382428,7.647135156822327,52,1,69.85065970049948,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.361857804141508,7.805575786752673,54.2,57.49,52,46,10,1,1,0,0,2,10,3,1,1352.5,988384.9103518418,278530.5750692706,431610.8509579362,0,2260.028873965342 -1270,1577,2853,2852,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,52,-1,46.26565245335208,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.014129586954819,0,52,46,54.2,57.49,7,1,1,0,0,4,10,3,1,1352.5,988384.9103518418,278530.5750692706,431610.8509579362,0,2260.028873965342 -1271,1578,2854,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-947.3642308827026,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,355,181613.955268106,0,0,0,1187.791558788908 -1272,1579,2855,2856,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.479354552594243,8.842784202301377,0,5,1,70.9857368312492,0,3,2,2019,4,0,37,37,1,0,0,18.74289004695356,18.74289004695356,0,0,0,0,0,0,0,0,1.17725202188374,0,52.31,58.29,51.27,50.79,8.333333333333334,1,1,0,0,10,10,5,1,1069,437193.2983795187,48356.16966739317,465530.0509512671,173766.6765279215,4324.025440315763 -1272,1579,2856,2855,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.63740744063764,8.558917677340187,0,5,-1,-41.97602101882322,0,-9,-9,2019,9,1,37,39,1,1,0,14.65322463536566,14.65322463536566,0,0,0,0,0,0,0,0,0,0,51.27,50.79,52.31,58.29,0,1,1,0,0,5,10,5,1,1069,437193.2983795187,48356.16966739317,465530.0509512671,173766.6765279215,4324.025440315763 -1273,1580,2857,2858,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.321492965958601,8.545068556619654,8.100996788883529,6,4,106.8470967423161,0,2,3,2019,13,5,2,4,1,5,0,112.3290390179065,112.3290390179065,0,0,0,0,5.48,0,0,0,6.724061795802757,7.966833193965625,45.69,57.19,31.29,55.75,8.333333333333334,1,1,0,0,8,10,5,1,2190.5,1598209.131941325,1415431.279398168,277570.4461473784,116547.9877316852,6358.714353868616 -1273,1580,2858,2857,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,9.171895738965054,8.901503931802957,0,6,-4,36.73259387048803,0,2,2,2019,26,11,40,37,1,11,0,24.26158332692387,24.26158332692387,0,0,0,0,2,0,0,0,3.178952794849836,0,31.29,55.75,45.69,57.19,8.333333333333334,1,1,0,0,8,10,5,1,2190.5,1598209.131941325,1415431.279398168,277570.4461473784,116547.9877316852,6358.714353868616 -1274,1581,2859,-9,2860,2861,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-838.6057096175839,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,613.5,2819454.362441052,227384.8137969049,319775.1857443642,197547.4800346954,4047.879943621697 -1274,1581,2860,2861,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.6704538475257,7.871817002411404,0,2,-4,84.89871918038062,0,2,2,2019,15,6,26,40,1,6,0,9.684713703373072,9.684713703373072,0,0,0,0,0,1,1,0,0,0,45.26,56.19,50,57,8.333333333333334,1,1,0,0,8,5,5,1,613.5,2819454.362441052,227384.8137969049,319775.1857443642,197547.4800346954,4047.879943621697 -1274,1581,2861,2860,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,8.985476094539901,9.090790563085763,0,2,4,6.84567888308879,-9,-9,-9,2019,10,0,45,0,1,1,0,26.77538032220533,26.77538032220533,0,0,0,0,0,1,1,0,4.143081950810007,0,50,57,45.26,56.19,7,4,1,0,0,1,5,5,1,613.5,2819454.362441052,227384.8137969049,319775.1857443642,197547.4800346954,4047.879943621697 -1274,1581,2862,-9,2860,2861,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.309924853252,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,613.5,2819454.362441052,227384.8137969049,319775.1857443642,197547.4800346954,4047.879943621697 -1275,1582,2863,-9,2865,2866,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-901.1302176833307,-9,3,2,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,-9,-9,6.666666666666667,1,1,0,0,0,5,5,1,648.25,430881.1939158239,224206.5410681869,221924.4172628528,31689.28340420488,3071.478322932962 -1275,1582,2864,-9,2865,2866,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.897010034672,-9,3,2,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,.9149099329334128,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,648.25,430881.1939158239,224206.5410681869,221924.4172628528,31689.28340420488,3071.478322932962 -1275,1582,2865,2866,-9,-9,1,0,44,0,0,0,3,3,-9,0,3,8.2357729369624,8.016095477713311,0,7,-2,-34.81687785825486,0,3,3,2019,12,0,30,24,1,0,0,11.59426536740682,11.59426536740682,0,0,0,0,0,1,1,0,0,0,52.93,52.64,49.04,55.86,8.333333333333334,1,1,0,0,7,5,5,1,648.25,430881.1939158239,224206.5410681869,221924.4172628528,31689.28340420488,3071.478322932962 -1275,1582,2866,2865,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.538244729918851,8.892442405078047,0,7,2,15.42630760974249,0,3,3,2019,11,0,43,40,1,0,0,18.07487375674798,18.07487375674798,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.93,52.64,8.333333333333334,1,1,0,0,7,5,5,1,648.25,430881.1939158239,224206.5410681869,221924.4172628528,31689.28340420488,3071.478322932962 -1276,1583,2867,2868,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.973966207240539,7.749848492841468,0,2,-2,-20.91883808237016,0,1,1,2019,12,1,30,39,1,1,0,8.354214274486072,8.354214274486072,0,0,0,0,0,0,0,0,.4642417845708254,0,44.67,52.97,44,53,5,1,1,0,1,7,2,4,1,295.5,112012.8992656438,17321.7171562033,163074.0962781095,126586.7833489138,3148.237872340306 -1276,1583,2868,2867,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.300493398319453,8.40160542966075,0,2,2,-25.82180691992928,-9,-9,-9,2019,8,0,38,0,1,0,0,11.44608283193169,11.44608283193169,0,0,0,0,0,0,0,0,5.047189767781459,0,44,53,44.67,52.97,8.333333333333334,1,1,0,0,2,2,4,1,295.5,112012.8992656438,17321.7171562033,163074.0962781095,126586.7833489138,3148.237872340306 -1277,1584,2869,2870,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.937678229437485,6.930542011657465,7,-1,-42.7271956376533,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.320392079369081,6.990568846357556,58.87,51.29,65.63,42.66,8.333333333333334,1,1,0,0,0,6,3,1,824,749668.2230596021,475558.2461428029,229933.520526106,0,2705.055025768877 -1277,1584,2870,2869,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.416834911135087,7.727445276894249,55,1,-2.641877408015866,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.224251461364796,0,0,1,1,0,0,7.44511136368756,65.63,42.66,58.87,51.29,10,1,1,0,0,0,6,3,1,824,749668.2230596021,475558.2461428029,229933.520526106,0,2705.055025768877 -1278,1585,2871,2872,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.049163680565108,8.300859040392631,0,7,-2,130.8350460357058,0,-9,-9,2019,15,4,31,25,1,4,0,12.76460934196585,12.76460934196585,0,0,0,0,0,0,0,0,1.091668692672306,0,45.16,27.99,54.2,57.49,6.666666666666667,1,1,0,0,6,8,5,1,283,861052.6381832216,532263.7607069423,641612.1889372582,144818.5632815149,5322.658874218712 -1278,1585,2872,2871,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.243698095421955,9.429166852617408,0,7,2,-79.96708095802663,0,3,2,2019,11,0,37,37,1,0,0,46.32549563607089,46.32549563607089,0,0,0,0,0,0,0,0,2.503840882422869,0,54.2,57.49,45.16,27.99,8.333333333333334,1,1,0,0,13,8,5,1,283,861052.6381832216,532263.7607069423,641612.1889372582,144818.5632815149,5322.658874218712 -1279,1586,2873,2874,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.061164291833272,8.100352244460968,0,32,-4,24.77431528924808,0,2,2,2019,11,1,47,48,1,1,0,8.148656071178372,8.148656071178372,0,0,0,0,0,0,0,0,0,0,54.59,32.29,62.39,56.71,3.333333333333333,1,1,0,0,11,5,5,1,538,1555788.191445336,1048041.392958172,472472.6195754509,105109.4433382518,3754.225212533951 -1279,1586,2874,2873,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.764917987439306,8.563044950360794,6.464374733084504,32,4,-77.50921778962656,0,2,2,2019,6,0,42,41,1,0,0,15.69015423423969,15.69015423423969,0,0,0,0,14.5,0,0,0,0,7.0775365434919,62.39,56.71,54.59,32.29,8.333333333333334,1,1,0,0,9,5,5,1,538,1555788.191445336,1048041.392958172,472472.6195754509,105109.4433382518,3754.225212533951 -1279,1587,2875,-9,2873,2874,1,0,27,0,0,0,2,2,-9,0,4,8.145474126895284,8.225331467832055,0,0,0,-949.4026254223929,0,2,1,2019,11,0,35,37,1,0,1,9.506269518946361,9.506269518946361,0,0,0,0,0,0,0,0,2.712236443580196,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,1474,34680.60528875697,0,0,0,1572.068692609462 -1280,1588,2876,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.908951821413556,7.929206965465827,0,0,0,-864.2637059970233,0,2,3,2019,19,6,41,39,1,6,0,9.42106147595114,9.42106147595114,0,0,0,0,27,1,1,0,0,0,42.17,43.91,-9,-9,5,2,3,0,1,5,7,4,0,339,136924.0904211503,139604.0742691958,169562.1814085335,59717.72049363487,1631.10884238042 -1281,1589,2877,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.871748771271946,6.996599375204289,0,0,-861.9662758132331,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,38.37560225767149,0,0,1,1,0,0,6.886598998848783,45.43,14.88,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,103,235086.767039343,132177.2251837571,122810.0733686574,0,999.1856016020645 -1282,1590,2878,2879,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.474897581754675,8.309380049090429,0,14,1,50.42893353936797,0,2,-9,2019,26,11,50,35,1,11,0,11.68150380594743,11.68150380594743,0,0,0,0,7,1,1,0,0,0,33.94,38.29,46.02,58.57,6.666666666666667,1,1,0,0,12,11,5,1,899.6666666666666,678869.8558341787,859762.2202044694,148059.0049106631,127378.6502933727,3881.460776029825 -1282,1590,2879,2878,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.27974686171725,8.656817562271835,0,14,-1,8.034188032311874,0,2,2,2019,13,3,45,40,1,3,0,11.32013352351544,11.32013352351544,0,0,0,0,2,1,1,0,5.251048912653701,0,46.02,58.57,33.94,38.29,6.666666666666667,1,1,0,0,10,11,5,1,899.6666666666666,678869.8558341787,859762.2202044694,148059.0049106631,127378.6502933727,3881.460776029825 -1282,1590,2880,-9,2878,2879,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.9757166180535,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,899.6666666666666,678869.8558341787,859762.2202044694,148059.0049106631,127378.6502933727,3881.460776029825 -1283,1591,2881,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.300714325578268,5.7358448173206,0,0,-1071.821651440665,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.878159596425918,54.34,53.29,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,896,210910.5676288634,238080.125793284,0,0,870.4051339366599 -1284,1592,2882,2883,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.742300454045997,9.82742647566805,0,9,2,88.97034487515505,0,2,2,2019,23,11,55,53,1,11,0,33.86259959412256,33.86259959412256,0,0,0,0,0,0,0,0,4.890200555279068,0,38.57,64.48,34.54,59.67,6.666666666666667,1,1,0,0,10,5,5,1,1343.5,13844.76099991129,55808.94692576545,240728.1619112095,201181.5704897638,7618.312651911018 -1284,1592,2883,2882,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,3.612363320671619,3.456587939003304,0,9,-2,7.766031022699663,0,2,2,2019,30,11,44,0,1,11,0,.1233525330159693,.1233525330159693,0,0,0,0,0,0,0,0,0,0,34.54,59.67,38.57,64.48,6.666666666666667,1,1,0,1,4,5,5,1,1343.5,13844.76099991129,55808.94692576545,240728.1619112095,201181.5704897638,7618.312651911018 -1285,1593,2884,2885,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,40,2,-44.92958673993181,0,3,2,2019,6,1,0,0,4,1,0,0,0,1,0,35.93146812746426,0,0,1,1,0,0,0,51.26,36.16,45.07,38.73,0,1,1,0,0,0,1,2,0,356.5,167455.5782554074,126165.0164940791,127187.4008581914,0,1293.482297636748 -1285,1593,2885,2884,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.070624561705794,5.753240711142926,40,-2,176.8442100446672,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.290280209459118,5.96058965423859,45.07,38.73,51.26,36.16,5,1,1,0,0,0,1,2,0,356.5,167455.5782554074,126165.0164940791,127187.4008581914,0,1293.482297636748 -1286,1594,2886,2889,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.934968261332338,9.332898564838493,0,18,0,-23.98812983074942,0,2,2,2019,9,0,42,41,1,0,0,26.00534964678413,26.00534964678413,0,0,0,0,0,1,1,0,2.958244280244407,0,46.39,60.99,45.32,54.77,8.333333333333334,1,1,0,0,11,13,5,1,395.6,638711.6042678241,301162.5958460291,348477.467260764,86730.30189271584,5231.298850041293 -1286,1594,2887,-9,2889,2886,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.255353864435,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,395.6,638711.6042678241,301162.5958460291,348477.467260764,86730.30189271584,5231.298850041293 -1286,1594,2888,-9,2889,2886,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.7167712213064,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,395.6,638711.6042678241,301162.5958460291,348477.467260764,86730.30189271584,5231.298850041293 -1286,1594,2889,2886,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,8.668769663120532,8.421891038289113,0,18,0,11.70954621504788,0,2,2,2019,11,0,27,28,1,0,0,21.54173784695667,21.54173784695667,0,0,0,0,0,1,1,0,2.053855454310212,0,45.32,54.77,46.39,60.99,8.333333333333334,1,1,0,0,8,13,5,1,395.6,638711.6042678241,301162.5958460291,348477.467260764,86730.30189271584,5231.298850041293 -1286,1594,2890,-9,2889,2886,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-982.9674499642648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,5,1,395.6,638711.6042678241,301162.5958460291,348477.467260764,86730.30189271584,5231.298850041293 -1287,1595,2891,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,5.173924548649646,5.605310833646823,0,0,-1091.469006429392,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.421029198130336,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,0,499,-76079.49270185534,102591.9552444653,81104.18731875539,0,1525.585525146155 -1288,1596,2892,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.820039268913682,6.89826431100613,0,0,-966.1476665736458,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.912752781853122,7.244064976123556,48.68,58.58,-9,-9,10,1,1,0,0,0,11,3,0,1007,821417.9691440207,339794.6250770858,222549.2327655434,0,2256.129157715021 -1289,1597,2893,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.437658517722653,8.437727754352764,0,0,0,-1030.565299579923,0,2,3,2019,12,1,45,53,1,1,0,11.76597704300029,11.76597704300029,0,0,0,0,0,0,0,0,0,0,42.11,41.98,-9,-9,5,1,1,0,0,10,5,5,1,535,39351.53768735555,63787.51927306852,0,0,2043.474489378512 -1290,1598,2894,2895,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.732941845869502,5.117839170712597,10,6,-73.37943709949529,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,1.890821347100743,0,0,1,1,0,0,4.89493547257795,59.29,49.68,55.71,43.17,8.333333333333334,1,1,0,0,6,7,2,0,844.5,947199.8549268453,103519.8088420847,825324.4123754888,0,864.4020299233081 -1290,1598,2895,2894,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.7763233645656,5.935750377684054,10,-6,-56.86356752221507,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.565868707866856,55.71,43.17,59.29,49.68,8.333333333333334,1,1,0,0,8,7,2,0,844.5,947199.8549268453,103519.8088420847,825324.4123754888,0,864.4020299233081 -1291,1599,2896,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1066.461553026766,0,3,2,2019,12,0,0,56,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,43.84,-9,-9,3.333333333333333,1,1,1,0,3,8,1,0,432,-220541.1084087987,0,0,0,514.2204384158431 -1292,1600,2897,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.912345221034862,8.958778670684715,0,0,0,-911.1342468310837,0,2,2,2019,10,0,48,53,1,0,0,18.47429205363822,18.47429205363822,0,0,0,0,0,1,1,0,5.762261084432264,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1107,334928.6072613393,287193.3966877831,0,0,2512.438941025172 -1293,1601,2898,2899,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,9.191460989508002,9.150402583412319,0,10,-3,36.79159776406014,0,2,2,2019,16,6,47,31,1,6,0,25.76532649988231,25.76532649988231,0,0,0,0,0,0,0,0,7.293515595276602,0,44.56,59.1,45.81,61.51,6.666666666666667,1,1,0,0,11,1,5,0,1272,1179769.425469146,259158.4878281925,343477.3072995563,0,6849.157312716393 -1293,1601,2899,2898,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.172537568957337,8.338988338235341,0,10,3,54.61742935777384,0,1,1,2019,14,3,35,28,1,3,0,10.84266111658755,10.84266111658755,0,0,0,0,14.5,0,0,0,6.6600417131837,0,45.81,61.51,44.56,59.1,8.333333333333334,1,1,0,0,11,1,5,0,1272,1179769.425469146,259158.4878281925,343477.3072995563,0,6849.157312716393 -1293,1602,2900,-9,2898,2899,1,0,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1011.286647128567,-9,1,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,67.33,43.48,-9,-9,10,1,1,0,0,12,1,2,0,588,-166111.836265706,0,0,0,0 -1294,1603,2901,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.9229391326804,8.552316019202506,0,0,0,-1120.944518471659,0,2,2,2019,14,4,43,45,1,4,0,20.48986613026833,20.48986613026833,0,0,0,0,7,1,1,0,6.08291254779494,0,43.34,60.31,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,930,518750.7389656006,448594.5134252919,173923.7055388508,0,2334.813684278012 -1295,1604,2902,2903,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,8.072806631154817,8.301666317039725,0,1,0,-19.30214829965674,-9,3,3,2019,16,5,35,0,1,5,0,16.30903223445238,16.30903223445238,0,0,0,0,7,1,1,0,0,0,52.05,40.05,54.2,57.49,3.333333333333333,1,1,0,1,7,12,4,1,211,614251.8090531053,306959.4685496831,150739.8614859392,35026.87910843836,3059.991559601277 -1295,1604,2903,2902,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.328207150802818,8.526055471350803,0,1,0,-43.50894659047595,-9,2,2,2019,8,0,49,0,1,0,0,7.903467247591125,7.903467247591125,0,0,0,0,7,1,1,0,0,0,54.2,57.49,52.05,40.05,8.333333333333334,1,1,0,0,9,12,4,1,211,614251.8090531053,306959.4685496831,150739.8614859392,35026.87910843836,3059.991559601277 -1296,1605,2904,-9,2905,-9,1,0,40,0,1,0,2,2,-9,0,4,8.534802684514307,8.801637633609699,0,0,0,-852.5688279873633,-9,3,-9,2019,11,0,74,0,1,0,0,8.467122592768179,8.467122592768179,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,831,-18357.22205205163,62771.42302425467,0,0,2408.82719870644 -1296,1606,2905,-9,-9,-9,1,0,77,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1011.618236272023,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.159695464803057,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1664,0,0,0,0,657.2378205223906 -1296,1607,2906,-9,2905,-9,1,0,40,0,1,0,1,1,-9,0,4,8.616829165341681,8.643596785113605,0,0,0,-1019.380360079863,-9,2,2,2019,12,0,36,0,1,0,0,14.63668355320218,14.63668355320218,0,0,0,0,0,1,1,0,2.600983962063004,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,430,55236.86329885435,59314.39904522034,288228.2201234417,137714.3513949696,2563.585574611437 -1296,1608,2907,-9,2906,-9,1,1,21,0,1,1,2,0,-9,0,5,0,0,0,0,0,-969.8201938325311,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.698512753843481,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,2,1,1015,0,0,0,0,23.39387675362496 -1296,1609,2908,-9,2906,-9,1,1,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-931.1896170770041,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,1,1,771,0,0,0,0,0 -1297,1610,2909,-9,2911,2910,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.733765951604,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,651.6666666666666,59393.57781299117,0,0,0,6325.470090324524 -1297,1610,2910,2911,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,9.158757108881446,9.637926496664745,0,10,4,-140.2413642376609,0,2,2,2019,15,3,40,43,1,3,0,37.23878457104417,37.23878457104417,0,0,0,0,0,0,0,0,0,0,51.98,54.53,41.06,62.04,6.666666666666667,1,1,0,0,11,9,5,1,651.6666666666666,59393.57781299117,0,0,0,6325.470090324524 -1297,1610,2911,2910,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.362543962962802,8.467791535087652,0,10,-4,-36.71297924105965,0,3,3,2019,11,0,35,20,1,0,0,19.91551477623571,19.91551477623571,0,0,0,0,0,0,0,0,0,0,41.06,62.04,51.98,54.53,6.666666666666667,1,1,0,0,11,9,5,1,651.6666666666666,59393.57781299117,0,0,0,6325.470090324524 -1297,1611,2912,-9,2911,2910,1,1,22,0,1,1,2,0,0,0,5,0,0,0,0,0,-1004.064943195,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,163,107623.5041274258,0,0,0,0 -1297,1612,2913,-9,2911,2910,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1021.650277906779,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,762,5688.037281110851,0,0,0,0 -1298,1613,2914,2915,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,8,0,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,56.03,62.49,55.09,8.333333333333334,1,1,1,1,0,13,2,0,191,473020.3839364271,0,256211.3067083872,0,1490.81029339199 -1298,1613,2915,2914,-9,-9,1,1,55,0,0,0,3,3,-9,1,4,0,0,0,8,0,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,38.4,56.03,8.333333333333334,1,1,1,1,0,13,2,0,191,473020.3839364271,0,256211.3067083872,0,1490.81029339199 -1298,1614,2916,-9,2914,2915,1,0,28,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1005.122754604637,0,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,1,1,0,13,1,0,464,-155820.4311908603,0,0,0,422.2245309675133 -1299,1615,2917,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,0,0,0,0,0,-997.1174523438746,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,574.6666666666666,18980.14387968337,0,0,0,1190.01977417364 -1299,1615,2918,-9,2917,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.570696613649,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,574.6666666666666,18980.14387968337,0,0,0,1190.01977417364 -1299,1615,2919,-9,2917,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.4014164384635,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,574.6666666666666,18980.14387968337,0,0,0,1190.01977417364 -1300,1616,2920,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.784372296235214,5.671010440758895,0,0,-1049.400743392323,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.919663027739629,3.910174591337516,0,120,1,1,0,4.438698932002831,5.380548641349118,44.18,33.44,-9,-9,10,1,1,0,0,0,10,2,1,322,204033.7074490981,0,346373.7401479974,0,583.0303200868958 -1300,1617,2921,-9,2920,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1106.330101099695,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,2515,285514.0419810599,-14926.55256456859,0,0,780.3008889596085 -1301,1618,2922,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.508713619565476,7.494421704066982,0,0,-1040.55095781213,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.493509375247298,7.462142588409671,60.72,47.63,-9,-9,0,1,1,0,0,0,10,3,1,531,389323.8266357931,278459.926125146,0,0,2045.285408566348 -1302,1619,2923,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.144773821485861,7.393013771826594,0,0,-1044.538801720471,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,7.536683101276774,39.24,15.77,-9,-9,6.666666666666667,1,1,0,0,7,13,3,1,884,1105518.208735869,831576.1042669832,100879.7550334642,0,137.350810114857 -1303,1620,2924,2927,-9,-9,1,1,39,1,3,0,1,1,-9,0,4,9.024137718802756,9.177426766342663,0,6,1,0,0,2,2,2019,9,0,35,40,1,0,0,27.83398097762043,27.83398097762043,0,0,0,0,0,1,1,0,4.010521091583173,0,52.34,56.95,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,1996.6,842734.2120441537,817889.4982873762,153065.7283605633,83084.22509767162,6462.435593897669 -1303,1620,2925,-9,2927,2924,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.3727608526365,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1996.6,842734.2120441537,817889.4982873762,153065.7283605633,83084.22509767162,6462.435593897669 -1303,1620,2926,-9,2927,2924,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.5008656672,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1996.6,842734.2120441537,817889.4982873762,153065.7283605633,83084.22509767162,6462.435593897669 -1303,1620,2927,2924,-9,-9,1,0,38,1,3,0,1,1,-9,0,5,9.017513225340764,9.02824019828754,0,6,-1,0,0,2,1,2019,8,0,8,6,1,0,0,115.7700440748633,115.7700440748633,0,0,0,0,0,1,1,0,2.31313435145475,0,54.1,59.11,52.34,56.95,8.333333333333334,1,1,0,0,7,12,5,1,1996.6,842734.2120441537,817889.4982873762,153065.7283605633,83084.22509767162,6462.435593897669 -1303,1620,2928,-9,2927,2924,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.223038929999,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1996.6,842734.2120441537,817889.4982873762,153065.7283605633,83084.22509767162,6462.435593897669 -1304,1621,2929,2930,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.794468987403926,8.718552980288324,0,2,-3,18.99270847542844,0,1,1,2019,12,1,38,38,1,1,0,21.08353337851348,21.08353337851348,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52,54.51,8.333333333333334,1,1,0,0,8,2,5,0,434,28663.56979545458,101293.3615238651,124944.826978081,127297.4632502379,3095.998740525496 -1304,1621,2930,2929,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.092041263790705,7.882503019288865,0,2,3,-74.67079713508502,0,-9,-9,2019,8,1,38,45,1,1,0,8.937177881676098,8.937177881676098,0,0,0,0,0,0,0,0,0,0,52,54.51,51.83,57.2,6.666666666666667,1,1,0,0,2,2,5,0,434,28663.56979545458,101293.3615238651,124944.826978081,127297.4632502379,3095.998740525496 -1305,1622,2931,2932,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,46,0,-44.66924037225291,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,115.9083987355722,0,0,1,1,0,0,0,29.78,17.81,55.76,52.64,5,1,1,0,0,0,2,2,0,1405.5,311701.1254056077,0,174251.7027414484,0,2326.805802665145 -1305,1622,2932,2931,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.83587871898043,6.568496232963983,46,0,-32.63345285087422,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.728704993451519,55.76,52.64,29.78,17.81,8.333333333333334,1,1,0,0,6,2,2,0,1405.5,311701.1254056077,0,174251.7027414484,0,2326.805802665145 -1306,1623,2933,2934,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,10,0,-57.84250670358287,0,3,3,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.89,27.8,60.27,25.33,5,1,1,0,0,0,11,2,0,322.5,107564.7467154409,35333.07403378461,0,0,2726.092918205138 -1306,1623,2934,2933,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.424109815949778,6.492800451685789,10,9,-39.49264550805268,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,6.138590472843317,0,71.5,1,1,0,0,6.233415134922329,60.27,25.33,28.89,27.8,6.666666666666667,1,1,0,0,0,11,2,0,322.5,107564.7467154409,35333.07403378461,0,0,2726.092918205138 -1307,1624,2935,2936,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.137930085132655,8.739008545861321,0,24,1,-7.493151049744042,0,2,1,2019,10,3,76,42,1,3,0,13.66260455699477,13.66260455699477,0,0,0,0,0,0,0,0,4.611190664623443,0,56.77,52.22,51.81,46.52,8.333333333333334,1,1,0,0,13,7,5,1,335.5,843726.9783348597,944832.9755948721,0,0,2867.338880863994 -1307,1624,2936,2935,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,6.5766657102271,6.658553997251487,24,-1,-56.89612559848837,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6.935850958223377,0,51.81,46.52,56.77,52.22,8.333333333333334,1,1,0,0,7,7,5,1,335.5,843726.9783348597,944832.9755948721,0,0,2867.338880863994 -1308,1625,2937,2942,-9,-9,1,0,40,2,3,0,3,3,-9,0,4,8.346364800001242,8.431562359877782,6.546153619910636,4,-10,-58.22144314950198,0,1,1,2019,8,0,40,40,1,0,0,8.358140422463913,8.358140422463913,0,0,0,0,0,1,1,0,6.588013080516862,0,57.16,56.15,33.41,62.84,8.333333333333334,1,1,0,0,11,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1308,1625,2938,-9,2937,-9,1,1,17,2,3,0,2,2,1,0,3,0,0,0,0,0,-944.6657788952616,-9,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.5489165296030991,0,44.38,58.1,-9,-9,5,1,1,0,0,1,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1308,1625,2939,-9,2937,2942,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.424902642757,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1308,1625,2940,-9,2937,2942,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-954.7462537847732,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1308,1625,2941,-9,2937,-9,1,1,12,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.618349243969,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1308,1625,2942,2937,-9,-9,1,1,50,2,3,0,1,1,-9,0,3,8.895983549707179,8.816397052573683,0,4,10,-108.2928369107338,0,-9,-9,2019,13,4,37,37,1,4,0,17.79369826915178,17.79369826915178,0,0,0,0,0,1,1,0,0,0,33.41,62.84,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,1902.166666666667,1796546.176606071,1519106.188138215,355935.3446135423,97940.02813393746,4662.450808238572 -1309,1626,2943,2946,-9,-9,1,0,39,0,1,0,3,3,-9,0,3,6.344917823668214,6.250043982462866,0,7,-2,-62.79753580237183,0,3,2,2019,13,1,10,10,1,1,0,6.12772332050127,6.12772332050127,0,0,0,0,0,1,1,0,2.451039077310888,0,49.68,37.85,42.93,54.5,6.666666666666667,1,1,0,0,8,11,3,1,792.5,13695.39202895336,0,0,0,2248.923774184328 -1309,1626,2944,-9,2943,2946,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-964.7611689879537,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,3,1,792.5,13695.39202895336,0,0,0,2248.923774184328 -1309,1626,2945,-9,2943,2946,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-987.8215396804956,-9,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,8.333333333333334,1,1,1,0,0,11,3,1,792.5,13695.39202895336,0,0,0,2248.923774184328 -1309,1626,2946,2943,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.286274841088526,8.324177813323043,0,7,2,-23.07509329806053,0,-9,-9,2019,20,7,84,45,1,7,0,5.384801851505215,5.384801851505215,0,0,0,0,0,1,1,0,0,0,42.93,54.5,49.68,37.85,6.666666666666667,1,1,0,0,8,11,3,1,792.5,13695.39202895336,0,0,0,2248.923774184328 -1309,1627,2947,-9,2943,2946,1,0,19,0,1,0,2,2,-9,0,4,5.660062088434699,5.768685684729117,0,0,0,-1001.008956358689,0,3,2,2019,12,0,16,0,1,0,1,2.306136214920304,2.306136214920304,0,0,0,0,0,1,1,0,0,0,39.76,59.88,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,219,39811.52638382022,0,0,0,156.5943185004286 -1310,1628,2948,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.548673126223181,6.784125489179329,0,0,-972.2572271507511,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.542283197086874,6.78762653822593,54.34,50.92,-9,-9,0,1,1,0,0,0,6,2,1,239,127755.9615697637,133692.4028600145,0,0,1062.945817988721 -1311,1629,2949,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.549510290764256,6.553018421465071,0,0,-942.2174753433957,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.445288155733157,54.2,57.49,-9,-9,5,1,1,0,0,5,11,2,1,491,307556.2380353542,67005.69429472422,163254.0072792851,0,747.9935905056574 -1311,1630,2950,-9,2949,-9,1,1,43,0,0,0,2,2,-9,0,2,6.468846161323812,6.329824515980477,0,0,0,-1096.336479300723,0,2,-9,2019,19,7,32,36,1,7,0,2.641485939922838,2.641485939922838,0,0,0,0,0,1,1,0,0,0,30.55,47.19,-9,-9,1.666666666666667,1,1,0,0,7,11,2,1,151,56254.12347187499,46985.53659170957,0,0,-88.59362352531639 -1312,1631,2951,2952,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.918435929233892,8.860437055238343,0,30,-4,56.96511742437497,0,2,3,2019,7,0,44,45,1,0,0,18.14185067327938,18.14185067327938,0,0,0,0,7,1,1,0,1.618565586665505,0,58.89,48.6,57.81,15.61,8.333333333333334,1,1,0,0,11,7,4,1,362,1471151.222498452,1167441.92459236,221084.0137020704,92192.68621106334,2925.44213906897 -1312,1631,2952,2951,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,6.850870800263842,6.425498972306951,8,4,-58.17659728081144,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,5.845300226012257,6.424963656093919,57.81,15.61,58.89,48.6,3.333333333333333,1,1,0,1,7,7,4,1,362,1471151.222498452,1167441.92459236,221084.0137020704,92192.68621106334,2925.44213906897 -1312,1632,2953,-9,2951,2952,1,1,26,0,0,0,2,2,-9,0,4,7.875281382430339,7.643441730006916,0,0,0,-1078.546682745364,0,2,2,2019,7,0,32,35,1,0,1,8.582105551766281,8.582105551766281,0,0,0,0,0,1,1,0,.389239585479922,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,985,-92802.00220634206,2387.610185095781,0,0,1341.728646835562 -1313,1633,2954,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.716608346115546,8.454177720686792,0,0,0,-1028.578952901522,0,-9,-9,2019,11,0,40,40,1,0,0,13.77129012641398,13.77129012641398,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,13,4,5,1,1700,2266310.985083947,1457839.099785752,444758.651934113,0,2196.801654702367 -1314,1634,2955,2956,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.602289159329588,7.409424472908836,9,4,.8476434897928886,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.065281095047292,47.22,53.97,37.18,28.8,8.333333333333334,1,1,0,0,0,6,2,1,2376.5,457169.997029962,225455.506868993,51633.93086266948,0,1206.919103634098 -1314,1634,2956,2955,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,.6165963478324766,.7525960773108682,9,-4,-129.7382171016487,0,3,3,2019,0,0,0,0,4,0,0,0,0,1,0,20.80404460497222,0,0,1,1,0,0,.7978583630900528,37.18,28.8,47.22,53.97,6.666666666666667,2,3,0,0,5,6,2,1,2376.5,457169.997029962,225455.506868993,51633.93086266948,0,1206.919103634098 -1315,1635,2957,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,7.785319870847274,7.6963416813939,0,0,-914.777774770997,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,1.430536412256617,0,0,1,1,0,0,7.796249437703535,54.48,36.94,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,310,401983.7938477261,251537.2713149296,162633.1844967888,0,1802.186868488256 -1316,1636,2958,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.44356973366621,6.456045273805097,0,0,-1007.558019815881,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.424655551155638,50.43,29.76,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,2823,269551.4710998732,105889.9745041881,202524.2607209475,0,1696.841685752654 -1316,1637,2959,-9,2958,-9,1,0,42,0,0,0,2,2,-9,0,4,8.622517664915684,8.683760793656459,0,0,0,-891.7883993115953,0,3,-9,2019,7,0,40,39,1,0,0,17.07510392633146,17.07510392633146,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1416,319788.5787592398,140775.732320233,195932.1431507619,102445.2911481128,1921.065693072208 -1317,1638,2960,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1035.623193816789,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,1.531904221696899,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,2,1,0,189,32240.40803789315,0,0,0,1432.708533497283 -1318,1639,2961,2964,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.70097431252358,7.100616223288402,0,8,7,-38.79134072304214,0,2,-9,2019,12,0,30,32,1,0,0,3.409990247940425,3.409990247940425,0,0,0,0,0,1,1,0,4.84624422381702,0,57.33,53.46,59.43,58.05,8.333333333333334,1,1,0,0,10,4,3,1,573,258901.2644685766,123334.7974723932,70071.66038846105,22373.60147020643,1557.153514701588 -1318,1639,2962,-9,2964,2961,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.411261977089,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,573,258901.2644685766,123334.7974723932,70071.66038846105,22373.60147020643,1557.153514701588 -1318,1639,2963,-9,2964,2961,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-924.5393910920985,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.242496285599086,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,573,258901.2644685766,123334.7974723932,70071.66038846105,22373.60147020643,1557.153514701588 -1318,1639,2964,2961,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.867641010999743,7.741260298324332,0,8,-7,-69.4428648847996,0,-9,-9,2019,9,0,31,33,1,0,0,9.456037434679951,9.456037434679951,0,0,0,0,0,1,1,0,3.031821339775131,0,59.43,58.05,57.33,53.46,10,1,1,0,0,9,4,3,1,573,258901.2644685766,123334.7974723932,70071.66038846105,22373.60147020643,1557.153514701588 -1319,1640,2965,-9,2966,-9,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1118.68785518556,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.37,55.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,885.5,85595.54322054578,88588.10179348871,0,0,1134.35168462617 -1319,1640,2966,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,6.977061945142933,7.220031089635187,0,0,0,-1070.313293783526,-9,2,2,2019,11,0,24,0,1,0,0,6.563851729056608,6.563851729056608,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,10,1,1,0,0,12,9,3,0,885.5,85595.54322054578,88588.10179348871,0,0,1134.35168462617 -1320,1641,2967,-9,2969,2968,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.583457727457,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,1226.666666666667,109934.5617186257,68815.40822309758,205041.6212223696,101819.4823466855,4361.748132001886 -1320,1641,2968,2969,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.119019102833651,7.721538110012682,0,7,-1,-21.61000560098524,0,2,-9,2019,10,0,40,20,1,0,0,10.0202442191029,10.0202442191029,0,0,0,0,2,1,1,0,1.532418662667134,0,57.33,53.46,54.79,55.86,6.666666666666667,1,1,0,0,9,5,5,1,1226.666666666667,109934.5617186257,68815.40822309758,205041.6212223696,101819.4823466855,4361.748132001886 -1320,1641,2969,2968,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,9.060192167182695,9.139685879752408,0,7,1,-73.02024891887604,0,2,2,2019,6,0,43,43,1,0,0,24.45579004904032,24.45579004904032,0,0,0,0,0,1,1,0,5.227977928278317,0,54.79,55.86,57.33,53.46,1.666666666666667,1,1,0,0,9,5,5,1,1226.666666666667,109934.5617186257,68815.40822309758,205041.6212223696,101819.4823466855,4361.748132001886 -1320,1642,2970,-9,2969,2968,1,0,20,0,1,0,2,2,-9,0,4,6.907895557455324,6.843793825726179,0,0,0,-855.3858881474291,0,1,2,2019,9,0,32,0,1,0,1,3.746264603251433,3.746264603251433,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,757,66686.35349022446,0,0,0,660.1285610046751 -1321,1643,2971,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.488660534903484,8.352712283545847,0,0,0,-985.0563855045793,0,1,1,2019,10,0,42,40,1,0,0,14.91280112359801,14.91280112359801,0,0,0,0,0,0,0,0,1.87047572555576,0,46.48,58.28,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,511,101038.8969074923,-73401.71276251653,0,0,1304.859486057713 -1322,1644,2972,2973,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.970977056627062,9.24949034898823,19,-1,-16.29216152861055,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.799446697247228,8.997187043960599,55.96,49.93,55.36,51.57,8.333333333333334,1,1,0,0,6,10,5,1,1187,5751585.148423531,2818038.460862903,1093439.702013533,0,7476.728469193594 -1322,1644,2973,2972,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.110114902694642,8.065306634016252,19,1,-94.31297007390437,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.8914900553786219,7.889795911584501,55.36,51.57,55.96,49.93,8.333333333333334,1,1,0,0,7,10,5,1,1187,5751585.148423531,2818038.460862903,1093439.702013533,0,7476.728469193594 -1323,1645,2974,2975,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.314830820651425,4.802232039302353,59,-3,-66.74576400349278,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,1.537555358191539,0,0,1,1,0,3.291857260652628,4.663349620650424,51,52.08,41.38,53.82,8.333333333333334,1,1,0,0,0,5,3,1,609.5,614173.6005550504,400738.0839314552,143243.9501373347,0,2945.416429759497 -1323,1645,2975,2974,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,8.027324916283398,8.006556987598556,59,3,-81.55296929152658,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.756489970839214,41.38,53.82,51,52.08,8.333333333333334,1,1,0,0,0,5,3,1,609.5,614173.6005550504,400738.0839314552,143243.9501373347,0,2945.416429759497 -1324,1646,2976,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.003556467248703,7.811553502179716,0,0,0,-988.1013165056695,0,3,2,2019,1,0,35,35,1,0,0,9.332310385515912,9.332310385515912,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,2268,109979.7724214086,224484.4811621283,-16077.39837142445,32.84474288428964,808.9883771552331 -1325,1647,2977,2979,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.296728209558562,9.349924297096177,0,30,-1,1.542158151357085,0,1,1,2019,8,1,42,43,1,1,0,35.44917395750726,35.44917395750726,0,0,0,0,0,1,1,0,7.04538546648043,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,802,1762406.96410685,885103.4987312974,825026.4814118472,0,5129.534040318237 -1325,1647,2978,-9,2977,2979,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1086.491881828376,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.38845117721773,0,49.86,52.97,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,802,1762406.96410685,885103.4987312974,825026.4814118472,0,5129.534040318237 -1325,1647,2979,2977,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.656039061373585,7.454399385549936,0,30,1,-8.519811461433648,0,2,2,2019,7,0,20,30,1,0,0,10.10145263115687,10.10145263115687,0,0,0,0,0,1,1,0,7.282682574536709,0,57.06,57.76,54.79,55.86,6.666666666666667,1,1,0,0,10,7,5,1,802,1762406.96410685,885103.4987312974,825026.4814118472,0,5129.534040318237 -1325,1648,2980,-9,2977,2979,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-975.97652093003,-9,1,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,.5448772092947518,0,1,1,0,4.635502620401232,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,377,-35608.46276421047,0,0,0,107.0655591246432 -1326,1649,2981,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.683659939955545,8.40819463911151,0,0,0,-1089.871928421103,0,-9,-9,2019,8,0,30,28,1,0,0,20.65371952944093,20.65371952944093,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,628,464756.8040249701,107270.2805311788,286753.8068665862,0,1294.868631758461 -1327,1650,2982,-9,2984,2985,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.126158926723,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,562.2,1554973.679936769,211881.1809105689,231133.8705420448,0,4224.56351318222 -1327,1650,2983,-9,2984,2985,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.411174955079,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,562.2,1554973.679936769,211881.1809105689,231133.8705420448,0,4224.56351318222 -1327,1650,2984,2985,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.73593242518537,9.005103833299055,0,17,-6,-25.5393548033184,0,1,1,2019,23,10,60,45,1,10,0,11.97498190019524,11.97498190019524,0,0,0,0,0,1,1,0,0,0,27.81,65.69,55.79,52.62,6.666666666666667,1,1,0,0,7,13,5,1,562.2,1554973.679936769,211881.1809105689,231133.8705420448,0,4224.56351318222 -1327,1650,2985,2984,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.760654141895897,8.767946412120706,0,19,6,16.58622003921683,0,3,2,2019,11,0,42,40,1,0,0,17.63482944880107,17.63482944880107,0,0,0,0,0,1,1,0,0,0,55.79,52.62,27.81,65.69,8.333333333333334,1,1,0,0,8,13,5,1,562.2,1554973.679936769,211881.1809105689,231133.8705420448,0,4224.56351318222 -1327,1650,2986,-9,2984,2985,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.638925869011,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,562.2,1554973.679936769,211881.1809105689,231133.8705420448,0,4224.56351318222 -1328,1651,2987,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.031313510359009,8.124325827587038,0,0,0,-821.723788024716,0,2,2,2019,15,3,50,45,1,3,0,8.079594594157244,8.079594594157244,0,0,0,0,0,1,1,0,.8418114267025704,0,57.08,41.02,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,1533,528978.0631252378,695335.3626032039,0,0,1096.432531420349 -1329,1652,2988,2989,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.510266158839563,7.296069959917065,0,6,-5,-15.32668949472423,0,2,2,2019,11,3,25,20,1,3,0,10.1480403565592,10.1480403565592,0,0,0,0,0,1,1,0,0,0,52.27,57.22,60.44,46.58,8.333333333333334,1,1,0,0,10,6,5,1,294,613767.500633636,448322.0656464393,207562.5282294574,23825.88358497409,4984.505967722273 -1329,1652,2989,2988,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.120080755125505,9.484388620968232,0,6,5,97.3493421359055,0,-9,-9,2019,7,0,42,42,1,0,0,31.40937113616922,31.40937113616922,0,0,0,0,0,1,1,0,4.596575292251232,0,60.44,46.58,52.27,57.22,8.333333333333334,1,1,0,0,10,6,5,1,294,613767.500633636,448322.0656464393,207562.5282294574,23825.88358497409,4984.505967722273 -1330,1653,2990,2991,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.404671170812942,7.33547955253965,0,10,-1,-67.70231505952114,0,-9,-9,2019,6,0,8,12,1,0,0,24.08797008430486,24.08797008430486,0,0,0,0,7,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,2,3,1,1017.5,93501.86662556778,42943.86056899157,94492.89235033235,79739.24571039432,1129.386592951289 -1330,1653,2991,2990,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,6.490145850077193,6.319512578004266,0,41,1,-59.20001047875282,0,3,3,2019,0,0,60,50,1,0,0,.9037367721028317,.9037367721028317,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,0,1,1,0,0,12,2,3,1,1017.5,93501.86662556778,42943.86056899157,94492.89235033235,79739.24571039432,1129.386592951289 -1331,1654,2992,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.22985430160119,8.466513631425599,0,0,0,-1003.939113733786,0,2,2,2019,32,12,37,37,1,12,0,18.46359021818828,18.46359021818828,0,0,0,0,0,1,1,0,0,0,27.72,58.93,-9,-9,3.333333333333333,1,1,0,0,10,10,5,1,574,2489785.092202972,1537747.975593521,976009.1370906881,0,2382.975883625676 -1332,1655,2993,-9,2994,2995,1,1,19,0,0,0,2,2,-9,0,4,7.498391788709452,7.455782142131365,4.594539556103283,0,0,-1108.138354463813,0,2,2,2019,7,0,40,0,1,0,1,5.581639664173694,5.581639664173694,0,0,0,0,0,0,0,0,4.623417116811931,0,62.49,55.09,-9,-9,10,1,1,0,0,10,11,3,1,463,-20111.11587925635,-50714.39953822913,0,0,518.4070491910059 -1332,1656,2994,2995,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.820015294389025,7.64542138239074,0,7,-7,1.827393151146568,0,2,2,2019,6,0,28,28,1,0,0,9.934517794660936,9.934517794660936,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.19,54.26,10,1,1,0,0,8,11,4,1,1892,19816.86739032427,73518.8140638153,133572.5242394423,73627.73143139045,2896.960485839943 -1332,1656,2995,2994,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.389655329497934,8.378026007397102,0,7,7,20.14987734648269,0,-9,-9,2019,9,0,52,40,1,0,0,8.347252241510185,8.347252241510185,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,8,11,4,1,1892,19816.86739032427,73518.8140638153,133572.5242394423,73627.73143139045,2896.960485839943 -1333,1657,2996,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.791614257346525,8.082320070654381,0,0,-990.1797192856349,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,8.135905417292213,43.97,54.03,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,166,632698.8655981778,595246.4473275079,128685.1931100276,0,1804.728058555693 -1334,1658,2997,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1091.378151635473,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,1,0,0,54.18,16.88,-9,-9,5,1,1,0,0,0,12,1,1,5181,90619.26540821676,0,0,0,1077.370227797156 -1334,1659,2998,-9,-9,2997,1,1,24,0,0,0,2,2,0,0,5,0,0,0,0,0,-1067.58249093079,-9,-9,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,2.074867720019967,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,567,18828.33007249203,0,0,0,-448.3154816885362 -1335,1660,2999,3000,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,63,-2,-89.83143595467655,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,4.758733638688028,0,0,1,1,0,0,0,53.94,21.61,34.47,18.35,5,1,1,0,0,0,7,2,1,1440.5,648127.4154356117,235992.6033150994,391778.7613885409,0,2806.029473137319 -1335,1660,3000,2999,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.867752969088863,7.361254296053669,63,2,50.24644383310892,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.769579987402299,6.948410713686413,34.47,18.35,53.94,21.61,8.333333333333334,1,1,0,0,0,7,2,1,1440.5,648127.4154356117,235992.6033150994,391778.7613885409,0,2806.029473137319 -1336,1661,3001,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.063747751772514,7.952381745903945,0,0,0,-952.9698658414603,0,3,3,2019,7,0,35,35,1,0,0,9.420188124264062,9.420188124264062,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,10,6,3,1,2211,167109.7827054368,12660.86945560186,144627.8456196416,25754.23665216918,2077.529892346233 -1336,1661,3002,-9,3001,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-908.6141826595573,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,42.43,-9,-9,5,2,3,1,0,0,6,3,1,2211,167109.7827054368,12660.86945560186,144627.8456196416,25754.23665216918,2077.529892346233 -1336,1661,3003,-9,3001,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-844.2027647068365,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,1,6,3,1,2211,167109.7827054368,12660.86945560186,144627.8456196416,25754.23665216918,2077.529892346233 -1337,1662,3004,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.581050286625841,8.796788947485688,0,0,0,-1079.916376866463,0,1,1,2019,10,0,40,40,1,0,0,25.59295148822304,25.59295148822304,0,0,0,0,0,0,0,0,7.750554450274445,0,53.18,48.67,-9,-9,6.666666666666667,1,1,0,0,11,10,5,0,1033,591760.510358423,362255.1058249155,170472.1743001192,28862.01977589529,3929.047497931301 -1338,1663,3005,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.758473072250035,7.19814191482752,0,0,-832.4592097512874,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.903604982555477,7.546169627472727,60.78,32.51,-9,-9,10,1,1,0,0,0,4,3,1,582,408739.2458023111,288204.1079833264,177844.4470734823,0,1248.762700435675 -1339,1664,3006,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-968.4921411368792,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,17.49,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,179,-66655.45775045559,0,0,0,1376.453763461977 -1340,1665,3007,3008,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.324012422598262,7.161481789778787,41,0,112.2054314293789,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,5.739830845841569,0,0,1,1,0,0,7.196990887440845,31.1,42.76,40.58,47.62,6.666666666666667,1,1,0,0,0,8,2,0,426.5,1319601.012332335,1053349.540453881,188886.5500029077,0,2367.510011863264 -1340,1665,3008,3007,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,41,0,-36.42879304560527,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.58,47.62,31.1,42.76,8.333333333333334,1,1,0,0,0,8,2,0,426.5,1319601.012332335,1053349.540453881,188886.5500029077,0,2367.510011863264 -1341,1666,3009,-9,3010,-9,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.6695342026826,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,938.6,8289.096271678141,0,0,0,3474.978960046803 -1341,1666,3010,-9,-9,-9,1,0,43,0,4,0,2,2,-9,0,4,7.103387651394947,6.887510301135404,0,0,0,-1183.865179767193,0,3,-9,2019,10,0,16,16,1,1,0,7.252512281045915,7.252512281045915,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,3,4,0,1,7,8,2,0,938.6,8289.096271678141,0,0,0,3474.978960046803 -1341,1666,3011,-9,3010,-9,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.328071553728,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,938.6,8289.096271678141,0,0,0,3474.978960046803 -1341,1666,3012,-9,3010,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-958.4593033690326,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,938.6,8289.096271678141,0,0,0,3474.978960046803 -1341,1666,3013,-9,3010,-9,1,0,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-891.4082855442508,-9,2,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,938.6,8289.096271678141,0,0,0,3474.978960046803 -1341,1667,3014,-9,3010,-9,1,0,26,0,4,0,1,1,-9,0,4,0,0,0,0,0,-1107.514835262293,1,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,1,0,8,1,0,682,35619.2364508259,-142125.0002532585,0,0,1571.351824940432 -1341,1668,3015,-9,3010,-9,1,1,20,0,4,0,2,2,-9,1,4,0,0,0,0,0,-969.4669811736763,1,2,-9,2019,6,0,0,14,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,1,8,1,0,392,-69775.32279778832,0,0,0,698.5994344502299 -1342,1669,3016,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,2,0,7.367197698518977,7.143194837793714,0,0,-1000.563110526848,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.418706568801783,7.006362632663754,49.82,38.26,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,223,271611.8541015843,134834.7491604505,84496.16550551643,0,1286.190606379554 -1343,1670,3017,3018,-9,-9,1,0,90,0,0,0,3,3,-9,0,5,0,0,0,67,-2,-30.56877033849045,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.443416921607368,0,59.43,58.05,60.12,54.8,10,1,1,0,0,0,10,3,1,2491,739727.1819762953,298742.2835975514,199696.7192577197,0,1762.827797744195 -1343,1670,3018,3017,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,7.268504820220518,7.524102291840189,67,2,52.82947348972191,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,8.448949357917691,0,0,1,1,0,0,7.542602466782917,60.12,54.8,59.43,58.05,10,1,1,0,0,0,10,3,1,2491,739727.1819762953,298742.2835975514,199696.7192577197,0,1762.827797744195 -1344,1671,3019,3020,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.427192298622389,5.625406510752985,6,-6,-11.89747784223286,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.122700022564716,5.338181148410706,46.39,60.99,60.05,45.35,8.333333333333334,1,1,0,0,0,4,3,1,845,561748.3284282752,285979.3696604,163386.6689961651,0,2462.587800226991 -1344,1671,3020,3019,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.989663926327259,7.881087208354592,6,6,-8.83976844408552,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.229853885551143,7.831415700144992,60.05,45.35,46.39,60.99,8.333333333333334,1,1,0,0,0,4,3,1,845,561748.3284282752,285979.3696604,163386.6689961651,0,2462.587800226991 -1345,1672,3021,3022,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.895077061989447,8.69653128163454,0,10,10,28.37306994985791,0,3,2,2019,16,5,38,37,1,5,0,19.61789650742855,19.61789650742855,0,0,0,0,0,0,0,0,5.524716418668308,0,34.74,55.63,41,41,5,4,2,0,0,11,2,5,1,1022,66182.14995612246,198838.865711934,158320.4502392783,151116.5752353414,3638.22298268779 -1345,1672,3022,3021,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.492064798385869,7.892885303241805,0,10,-10,-87.21851951800079,0,2,2,2019,21,8,74,37,1,8,0,3.680524076161854,3.680524076161854,0,0,0,0,0,0,0,0,0,0,41,41,34.74,55.63,5,1,1,0,0,11,2,5,1,1022,66182.14995612246,198838.865711934,158320.4502392783,151116.5752353414,3638.22298268779 -1346,1673,3023,3024,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.043995140033256,6.565277646215142,47,-2,-11.75849578172712,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.54691803409666,6.470384541773631,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,4,6,3,1,622.5,479553.5719397724,194033.1171217787,277713.6228574723,0,1946.654801107179 -1346,1673,3024,3023,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.182130343655182,6.898852350535263,47,2,60.84554871286662,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.491109230626943,7.054311111759937,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,8,6,3,1,622.5,479553.5719397724,194033.1171217787,277713.6228574723,0,1946.654801107179 -1347,1674,3025,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.351492506761142,7.495718160475448,0,0,-1032.176881414931,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.46890355287009,50.34,30.88,-9,-9,10,1,1,0,0,0,12,3,0,1399,625350.9593155563,182194.7132313806,305589.1286326656,0,1661.018727335681 -1348,1675,3026,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-963.2710490678204,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.37470072966665,0,50.33,41.27,-9,-9,10,1,1,0,0,0,7,1,1,1933,198837.1808760889,0,0,0,730.3749410052422 -1349,1676,3027,-9,3028,3029,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.4655304963046,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,329.6666666666667,286578.4438990016,114892.3124370884,288268.813981128,119431.837583993,5884.071384964743 -1349,1676,3028,3029,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,7.565346698132245,7.345376203582898,0,13,-1,45.30976823262444,0,1,1,2019,9,2,28,26,1,2,0,7.362602222876296,7.362602222876296,0,0,0,0,0,1,1,0,8.106504587076174,0,53.12,45.94,31.99,57.05,10,1,1,0,0,7,9,5,1,329.6666666666667,286578.4438990016,114892.3124370884,288268.813981128,119431.837583993,5884.071384964743 -1349,1676,3029,3028,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.88997901372899,9.021140605632159,0,8,1,124.9157370711731,0,2,2,2019,14,3,57,57,1,3,0,15.35785508015615,15.35785508015615,0,0,0,0,0,1,1,0,8.214064982781638,0,31.99,57.05,53.12,45.94,3.333333333333333,1,1,0,0,9,9,5,1,329.6666666666667,286578.4438990016,114892.3124370884,288268.813981128,119431.837583993,5884.071384964743 -1350,1677,3030,-9,3033,-9,1,1,17,0,4,1,3,0,0,0,3,0,0,0,0,0,-1001.719727478244,-9,3,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,8,1,1,0,0,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1677,3031,-9,3033,-9,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-912.5885570924904,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1677,3032,-9,3033,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-921.1003830334666,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1677,3033,-9,-9,-9,1,0,42,0,4,0,3,3,-9,1,2,0,0,0,0,0,-966.3020885490926,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,61.83,26.01,-9,-9,6.666666666666667,3,4,0,1,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1677,3034,-9,3033,-9,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.4981853410596,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1677,3035,-9,3033,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1024.116361990391,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,8,1,0,723.8333333333334,3959.527063755583,0,0,0,2837.784635371825 -1350,1678,3036,-9,3033,-9,1,0,19,0,4,0,2,2,-9,0,2,0,0,0,0,0,-951.7174647771589,0,3,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,19.22,44.29,-9,-9,0,3,4,1,1,0,8,1,0,1315,-101926.7469306162,0,0,0,0 -1351,1679,3037,3038,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.515984336293965,8.632491623664329,3.427143616083675,38,8,7.570956985328533,0,3,3,2019,12,1,50,51,1,1,0,10.0392740985074,10.0392740985074,0,0,0,0,0,0,0,0,4.098136667093935,3.325358860311747,46.05,25.13,45.07,38.73,3.333333333333333,1,1,0,1,9,5,4,1,754,818521.6266819083,442415.6392135733,219515.0431607579,0,1965.691646721752 -1351,1679,3038,3037,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,38,-8,-79.95282549752568,0,3,3,2019,12,0,0,23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.07,38.73,46.05,25.13,8.333333333333334,1,1,0,0,4,5,4,1,754,818521.6266819083,442415.6392135733,219515.0431607579,0,1965.691646721752 -1351,1680,3039,-9,3038,3037,1,1,27,0,0,0,2,2,-9,0,5,7.731582798845503,7.835580077149182,0,0,0,-986.9956443722548,0,2,2,2019,4,0,42,39,1,0,1,7.065023377419417,7.065023377419417,0,0,0,0,0,0,0,0,0,0,46.11,51.3,-9,-9,10,1,1,0,0,6,5,3,1,542,-24613.63908003027,0,0,0,1287.911418189306 -1352,1681,3040,3041,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.55864313077704,7.164195390460436,0,2,-13,-129.226974916941,0,-9,-9,2019,7,0,24,24,1,0,0,9.146110534750132,9.146110534750132,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.98,57.22,8.333333333333334,1,1,0,0,11,4,3,1,464,224010.7556850594,22198.06169074203,327071.6666841436,46799.41934292832,2138.154950589445 -1352,1681,3041,3040,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.25495214887595,7.432535146984717,3.526591934154427,2,13,-29.0998696518606,-9,2,2,2019,10,0,30,0,1,0,0,6.959766573353855,6.959766573353855,0,0,0,0,0,1,1,0,3.536548373869253,3.391087617617965,48.98,57.22,57.16,56.15,8.333333333333334,1,1,0,0,7,4,3,1,464,224010.7556850594,22198.06169074203,327071.6666841436,46799.41934292832,2138.154950589445 -1353,1682,3042,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,5,6.270408393768674,6.422944694264536,0,0,0,-1040.529818859947,0,-9,2,2019,26,12,14,55,1,12,0,3.966376250979966,3.966376250979966,0,0,0,0,42,1,1,0,0,0,38.44,29.6,-9,-9,3.333333333333333,1,1,0,1,6,11,2,0,1193.666666666667,-42269.99350153928,0,0,0,1656.526783445632 -1353,1682,3043,-9,3042,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.6215118729893,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1193.666666666667,-42269.99350153928,0,0,0,1656.526783445632 -1353,1682,3044,-9,3042,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1118.765760443215,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,11,2,0,1193.666666666667,-42269.99350153928,0,0,0,1656.526783445632 -1354,1683,3045,-9,3046,3047,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.3022571658355,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.689670619198628,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,598.25,214751.2875762572,34868.42612883305,321347.1890980591,165601.7738963625,2195.09572140516 -1354,1683,3046,3047,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,6.715697062937366,6.690273930418341,0,8,0,-43.40003101492277,0,2,2,2019,5,0,12,0,1,0,0,7.584275893310757,7.584275893310757,0,0,0,0,0,1,1,0,1.988769543107236,0,54.1,59.11,32.49,27.81,8.333333333333334,1,1,0,0,6,9,3,0,598.25,214751.2875762572,34868.42612883305,321347.1890980591,165601.7738963625,2195.09572140516 -1354,1683,3047,3046,-9,-9,1,1,34,0,2,0,1,1,-9,0,1,8.082497894752629,8.046047518852779,0,8,0,-94.11569531442657,0,-9,-9,2019,28,11,34,34,1,11,0,10.83302087515373,10.83302087515373,0,0,0,0,0,1,1,0,0,0,32.49,27.81,54.1,59.11,6.666666666666667,1,1,0,0,10,9,3,0,598.25,214751.2875762572,34868.42612883305,321347.1890980591,165601.7738963625,2195.09572140516 -1354,1683,3048,-9,3046,3047,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.940276638928,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,598.25,214751.2875762572,34868.42612883305,321347.1890980591,165601.7738963625,2195.09572140516 -1355,1684,3049,3050,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.398881544658691,7.076758926344372,7,-1,-16.87489529148625,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.008563337713026,6.912905713188198,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,1,9,4,1,337.5,1709241.082512246,1211160.921149493,505813.7841306039,0,1813.336325844148 -1355,1684,3050,3049,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.517913191726809,8.73881628319123,0,7,1,130.1309746830678,0,2,2,2019,6,0,38,43,1,0,0,16.05404245434012,16.05404245434012,0,0,0,0,0,0,0,0,5.903868740205336,0,59.43,58.05,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,337.5,1709241.082512246,1211160.921149493,505813.7841306039,0,1813.336325844148 -1356,1685,3051,3052,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.121012235666479,8.228705019213532,40,-1,-7.301464157771354,0,2,3,2019,25,11,0,30,4,11,0,0,0,0,0,0,0,0,0,0,0,8.20454377906851,8.182299414411062,42.85,45.55,42.6,29.19,8.333333333333334,1,1,0,1,9,10,3,1,356,615185.6560767689,302216.4133647237,208090.6552894865,0,1742.026638326394 -1356,1685,3052,3051,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,3.343763449545329,4.051985934721362,3.354817127944453,40,1,-46.59644948490732,0,2,2,2019,14,0,9,12,1,3,0,.3056075980273069,.3056075980273069,0,0,0,0,2,0,0,0,0,3.206613165436632,42.6,29.19,42.85,45.55,5,1,1,0,0,11,10,3,1,356,615185.6560767689,302216.4133647237,208090.6552894865,0,1742.026638326394 -1356,1686,3053,-9,3052,3051,1,1,29,0,0,0,1,1,-9,0,3,7.618564066792764,7.79692528249022,0,0,0,-1027.796744354322,0,2,1,2019,18,6,24,12,1,6,1,8.376134236728813,8.376134236728813,0,0,0,0,0,0,0,0,0,0,46,53,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,201,35956.35251337952,0,0,0,532.4969666485665 -1357,1687,3054,3055,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,5.674819186462299,5.758341143948121,1,0,-.1125276299815905,-9,3,3,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.080381323128853,5.542703323352479,72.45,14.07,66.91,26.23,8.333333333333334,1,1,0,0,0,9,2,0,254,837739.9012160213,50906.73698653525,604948.6417375773,0,2075.778807898977 -1357,1687,3055,3054,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,1,0,-116.7696767425153,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.91,26.23,72.45,14.07,8.333333333333334,1,1,0,0,0,9,2,0,254,837739.9012160213,50906.73698653525,604948.6417375773,0,2075.778807898977 -1358,1688,3056,3057,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.090303769280673,7.910576667385969,0,6,1,-34.78277227835957,0,-9,-9,2019,8,0,40,40,1,0,0,7.124865121988694,7.124865121988694,0,0,0,0,0,0,0,0,0,0,52.37,56.93,52.38,55.6,8.333333333333334,1,1,0,0,11,13,4,0,793,-57181.56454242433,-32370.02346723001,138763.5901901665,-9495.076740005083,1679.002365557032 -1358,1688,3057,3056,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.7279877883813,7.852338883023701,0,6,-1,-107.8823806863046,0,3,3,2019,8,1,40,38,1,1,0,5.965487471592627,5.965487471592627,0,0,0,0,0,0,0,0,0,0,52.38,55.6,52.37,56.93,8.333333333333334,1,1,0,0,9,13,4,0,793,-57181.56454242433,-32370.02346723001,138763.5901901665,-9495.076740005083,1679.002365557032 -1358,1689,3058,-9,3057,3056,1,1,21,0,0,0,2,2,-9,0,5,7.961461552955402,7.687764998337289,0,0,0,-1021.749259830972,0,2,2,2019,5,0,38,37,1,0,1,7.721161675809548,7.721161675809548,0,0,0,0,0,0,0,0,1.165966974857505,0,57.06,57.76,-9,-9,10,1,1,0,0,3,13,3,0,74,267054.046455585,-51438.01841801048,0,0,70.18694304665428 -1359,1690,3059,3060,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.237831764850648,9.16387616215826,0,6,3,-38.2684606172723,0,-9,-9,2019,9,0,37,47,1,1,0,31.06486188423096,31.06486188423096,0,0,0,0,0,1,1,0,0,0,54,54,57.16,56.15,8,1,1,0,0,1,9,5,1,1116,1238420.057938106,628102.2555911946,443081.1252644323,0,4763.264722840217 -1359,1690,3060,3059,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.977490671142156,7.57112547985067,0,34,-3,77.95916794196081,0,3,2,2019,6,0,24,24,1,0,0,9.284573103878731,9.284573103878731,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54,54,8.333333333333334,1,1,0,0,7,9,5,1,1116,1238420.057938106,628102.2555911946,443081.1252644323,0,4763.264722840217 -1359,1691,3061,-9,3060,3059,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-943.7111816994091,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48.55,51.92,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,1690,44676.75811843511,0,0,0,-204.499566044881 -1360,1692,3062,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.80622344847826,6.522076694719673,0,0,0,-940.1624231990482,0,3,-9,2019,12,0,21,16,1,0,0,5.214351363831128,5.214351363831128,0,0,0,0,2,1,1,0,0,0,48.18,53.42,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,1109,153844.2400190344,90791.11140627734,246670.6106635917,55729.23958486481,481.9010432406178 -1361,1693,3063,3064,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,7,6,0,0,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,6.54275643851868,0,30.99,29.58,42.35,33.61,0,2,3,0,0,0,6,1,1,398,15488.35984200485,38127.16325001881,0,0,1798.191822274051 -1361,1693,3064,3063,-9,-9,1,0,48,0,0,0,3,3,-9,1,2,0,0,0,30,-6,0,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.35,33.61,30.99,29.58,3.333333333333333,2,3,0,0,0,6,1,1,398,15488.35984200485,38127.16325001881,0,0,1798.191822274051 -1361,1694,3065,-9,3064,3063,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1055.285847091648,0,3,2,2019,11,0,0,30,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,41.34,55.47,-9,-9,5,2,3,1,0,2,6,1,1,1838,-6782.689379661372,0,0,0,0 -1361,1695,3066,-9,3064,3063,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.4460863602947,0,3,2,2019,12,3,0,25,3,3,1,0,0,0,0,0,0,7,1,1,0,0,0,38.16,44.66,-9,-9,5,2,3,1,1,0,6,1,1,725,-85348.42632256863,0,0,0,0 -1362,1696,3067,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.024454780269438,5.488650445264275,0,0,-814.3959279757484,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.487776946333294,5.825026573397939,57.16,56.15,-9,-9,10,1,1,0,0,0,11,2,1,374,-5307.247926089985,93877.8993753851,0,0,1469.919786099413 -1363,1697,3068,3069,3070,-9,1,1,20,0,0,0,2,2,1,0,2,0,0,0,3,0,-104.175111202218,-9,2,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,24.53,56.8,8.73,69.18000000000001,5,1,1,1,1,0,1,2,0,3283,0,0,0,0,524.5222182590338 -1363,1697,3069,3068,-9,-9,1,0,20,0,0,0,2,2,1,0,4,4.758266326548231,4.721566921623562,0,3,0,-39.38825706283059,-9,-9,-9,2019,29,12,3,0,1,12,0,4.165032558790658,4.165032558790658,0,0,0,0,0,1,1,0,0,0,8.73,69.18000000000001,24.53,56.8,6.666666666666667,1,1,0,1,1,1,2,0,3283,0,0,0,0,524.5222182590338 -1363,1698,3070,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.662432353482786,7.482594354339893,0,0,0,-1066.426188084899,0,-9,-9,2019,25,9,37,28,1,9,0,7.088406742048643,7.088406742048643,0,0,0,0,0,1,1,0,0,0,28.87,61.03,-9,-9,1.666666666666667,1,1,0,1,3,1,3,0,961,-491.6680856792973,-49854.84706993714,0,0,1418.670825095129 -1363,1699,3071,-9,3070,-9,1,0,19,0,0,0,2,2,1,0,3,6.202105748421674,6.618151828724724,0,0,0,-952.7211589785996,-9,2,-9,2019,9,1,12,0,1,1,1,5.118186958727061,5.118186958727061,0,0,0,0,0,1,1,0,0,0,42.75,52.23,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,295,39500.85609717094,0,0,0,-53.94703821338294 -1364,1700,3072,3073,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.185666487374746,8.442132089161735,0,24,5,30.68460757884961,0,2,2,2019,10,0,30,33,1,0,0,16.29426185578254,16.29426185578254,0,0,0,0,0,1,1,0,0,0,59.32,46.98,54.96,53.17,8.333333333333334,1,1,0,0,11,7,4,1,1047.333333333333,1423077.435680462,618163.5159323845,747125.907496232,0,3444.925646082493 -1364,1700,3073,3072,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.783648429349467,7.714641028087127,0,23,-5,18.01506030140846,0,2,2,2019,7,0,30,26,1,0,0,9.052294276067077,9.052294276067077,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.32,46.98,8.333333333333334,1,1,0,0,11,7,4,1,1047.333333333333,1423077.435680462,618163.5159323845,747125.907496232,0,3444.925646082493 -1364,1700,3074,-9,3073,3072,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1049.646557494993,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.826449880508479,0,47,60,-9,-9,7,1,1,0,0,0,7,4,1,1047.333333333333,1423077.435680462,618163.5159323845,747125.907496232,0,3444.925646082493 -1364,1701,3075,-9,3073,3072,1,0,20,0,0,0,2,2,-9,0,2,7.692445650192738,7.347741204438636,0,0,0,-1034.857592806118,0,2,2,2019,16,5,34,30,1,5,1,5.207488275404614,5.207488275404614,0,0,0,0,0,1,1,0,0,0,29.84,53.01,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,758,-55023.93610627178,0,0,0,1057.239276900201 -1365,1702,3076,3077,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.342961648347874,7.569277359268504,0,2,-1,83.3417833448718,0,2,2,2019,13,2,24,33,1,2,0,7.461339970324001,7.461339970324001,0,0,0,0,0,0,0,0,0,0,56.75,41.53,54.37,44.27,8.333333333333334,1,1,0,0,7,13,4,1,280,971313.4446675354,770527.4810514806,174544.3784199679,10483.42772594608,2511.76795813378 -1365,1702,3077,3076,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.584770083697521,8.497807452838693,0,2,1,183.7256444436178,0,-9,-9,2019,10,0,49,42,1,0,0,12.62280122023701,12.62280122023701,0,0,0,0,0,0,0,0,0,0,54.37,44.27,56.75,41.53,8.333333333333334,1,1,0,0,9,13,4,1,280,971313.4446675354,770527.4810514806,174544.3784199679,10483.42772594608,2511.76795813378 -1366,1703,3078,-9,3080,3081,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.740909112146,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,787.25,1328198.11604688,891405.000644893,396180.8018714164,0,4955.503893246124 -1366,1703,3079,-9,3080,3081,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.040815428966,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,787.25,1328198.11604688,891405.000644893,396180.8018714164,0,4955.503893246124 -1366,1703,3080,3081,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,8.678077306379572,8.957788936621297,0,14,-6,-79.30189458480569,0,2,-9,2019,11,0,55,55,1,0,0,11.59530291793758,11.59530291793758,0,0,0,0,7,1,1,0,0,0,33.43,60.46,54.77,55.87,6.666666666666667,1,1,0,0,6,12,5,1,787.25,1328198.11604688,891405.000644893,396180.8018714164,0,4955.503893246124 -1366,1703,3081,3080,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.737789195569039,9.048809536577988,0,14,6,41.63292410655903,0,1,2,2019,8,0,50,55,1,0,0,16.8186466555325,16.8186466555325,0,0,0,0,0,1,1,0,0,0,54.77,55.87,33.43,60.46,8.333333333333334,1,1,0,0,8,12,5,1,787.25,1328198.11604688,891405.000644893,396180.8018714164,0,4955.503893246124 -1367,1704,3082,-9,3085,3083,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.994286780668,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,564.75,470310.7890011772,91289.20043380361,325985.1313286514,67980.39990748468,4108.475854117214 -1367,1704,3083,3085,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.783417414199475,7.672864283368372,0,18,2,-68.51965335495942,0,2,2,2019,12,0,50,8,1,0,0,7.759800026006199,7.759800026006199,0,0,0,0,0,1,1,0,4.504080268533172,0,37,50.59,46.16,45.22,8.333333333333334,1,1,0,0,13,12,4,0,564.75,470310.7890011772,91289.20043380361,325985.1313286514,67980.39990748468,4108.475854117214 -1367,1704,3084,-9,3085,3083,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.140511698644,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.094676499988203,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,0,564.75,470310.7890011772,91289.20043380361,325985.1313286514,67980.39990748468,4108.475854117214 -1367,1704,3085,3083,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.485320048840549,8.62925282625878,7.585281514205344,18,-2,-107.463712463606,0,2,2,2019,13,1,47,47,1,1,0,8.374248835383714,8.374248835383714,0,0,0,0,0,1,1,0,3.374645179883619,7.660166436098574,46.16,45.22,37,50.59,8.333333333333334,1,1,0,0,13,12,4,0,564.75,470310.7890011772,91289.20043380361,325985.1313286514,67980.39990748468,4108.475854117214 -1368,1705,3086,3087,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,9.695797667951217,9.673248076854623,0,7,1,89.46173136177241,0,2,2,2019,9,0,30,35,1,0,0,73.12096302602571,73.12096302602571,0,0,0,0,0,1,1,0,3.593333758016171,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,8,12,5,1,897.4,943781.4592804757,735791.441828699,309425.4735701445,153577.8066104865,10341.85665541906 -1368,1705,3087,3086,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,9.317090151318272,9.012288155306805,0,7,-1,-123.9250443419713,0,2,1,2019,10,1,8,8,1,1,0,143.2093721844988,143.2093721844988,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,8,12,5,1,897.4,943781.4592804757,735791.441828699,309425.4735701445,153577.8066104865,10341.85665541906 -1368,1705,3088,-9,3087,3086,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4086190183549,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,897.4,943781.4592804757,735791.441828699,309425.4735701445,153577.8066104865,10341.85665541906 -1368,1705,3089,-9,3087,3086,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.977895075141,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,897.4,943781.4592804757,735791.441828699,309425.4735701445,153577.8066104865,10341.85665541906 -1368,1705,3090,-9,3087,3086,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.296217752488,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,897.4,943781.4592804757,735791.441828699,309425.4735701445,153577.8066104865,10341.85665541906 -1369,1706,3091,3092,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,30,-4,171.1526555581021,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.59,58.37,57.33,53.46,8.333333333333334,2,3,0,0,0,6,2,1,457.6666666666667,131019.6475681497,215942.7639101603,148958.9592027871,88141.55595742537,1093.32480888586 -1369,1706,3092,3091,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.481209751705047,7.044197129010872,0,30,4,32.1521348622685,0,3,3,2019,7,0,24,0,1,0,0,7.165489943297548,7.165489943297548,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.59,58.37,8.333333333333334,2,3,0,0,5,6,2,1,457.6666666666667,131019.6475681497,215942.7639101603,148958.9592027871,88141.55595742537,1093.32480888586 -1369,1706,3093,-9,3091,3092,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1068.79608921523,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,2,1,457.6666666666667,131019.6475681497,215942.7639101603,148958.9592027871,88141.55595742537,1093.32480888586 -1369,1707,3094,-9,3091,3092,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1005.693752921827,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,800,0,0,0,0,0 -1369,1708,3095,-9,3091,3092,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-962.1290971217863,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,341,0,0,0,0,0 -1370,1709,3096,3097,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.647019932025065,6.599466714260528,50,3,42.72777191411586,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.073274834862353,6.687929474725657,45.91,59.89,45.69,19.85,8.333333333333334,1,1,0,0,3,2,2,1,146,416315.242386807,229453.8767550008,87114.59374234961,0,2829.742556799921 -1370,1709,3097,3096,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,5.884657052577931,6.032125491185246,51,-3,-154.7887037099512,0,-9,2,2019,22,9,0,0,4,9,0,0,0,1,0,5.908893383110517,0,14.5,1,1,0,0,6.103087044687961,45.69,19.85,45.91,59.89,3.333333333333333,1,1,0,0,0,2,2,1,146,416315.242386807,229453.8767550008,87114.59374234961,0,2829.742556799921 -1371,1710,3098,-9,3100,3099,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.2061419418031,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,439.3333333333333,46406.1553490895,2208.874219514093,139769.6641978391,101410.0310617666,2345.30310819782 -1371,1710,3099,3100,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,8.03515634619005,8.327870854688777,0,2,3,70.76784691854419,0,2,-9,2019,11,1,47,44,1,1,0,7.974216015700114,7.974216015700114,0,0,0,0,0,1,1,0,0,0,48.53,58.91,40.1,40.8,8.333333333333334,1,1,0,0,6,6,3,0,439.3333333333333,46406.1553490895,2208.874219514093,139769.6641978391,101410.0310617666,2345.30310819782 -1371,1710,3100,3099,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,6.772057750644195,6.554279300925394,0,2,-3,-71.8383392660506,0,-9,-9,2019,16,5,19,21,1,5,0,6.11888679048643,6.11888679048643,0,0,0,0,0,1,1,0,0,0,40.1,40.8,48.53,58.91,8.333333333333334,1,1,0,0,1,6,3,0,439.3333333333333,46406.1553490895,2208.874219514093,139769.6641978391,101410.0310617666,2345.30310819782 -1372,1711,3101,3102,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.415483649873857,7.402439084206691,0,5,-1,-147.93862559464,0,-9,-9,2019,12,0,20,22,1,0,0,8.562925615326655,8.562925615326655,0,0,0,0,0,1,1,0,1.970001240502786,0,52.43,55.57,51.73,58.82,8.333333333333334,1,1,0,0,4,4,5,1,418.3333333333333,69194.63131655302,59694.04812066821,169380.854666887,82535.8700029726,3180.707063764566 -1372,1711,3102,3101,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,9.209887029914533,8.906064962579626,0,5,1,-97.8714885815177,0,2,2,2019,10,0,35,39,1,0,0,31.14742450345424,31.14742450345424,0,0,0,0,0,1,1,0,6.565812054435874,0,51.73,58.82,52.43,55.57,8.333333333333334,1,1,0,0,7,4,5,1,418.3333333333333,69194.63131655302,59694.04812066821,169380.854666887,82535.8700029726,3180.707063764566 -1372,1711,3103,-9,3101,3102,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.404823002756,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,418.3333333333333,69194.63131655302,59694.04812066821,169380.854666887,82535.8700029726,3180.707063764566 -1373,1712,3104,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.007966922914312,6.941261538871196,0,0,-912.0501453788693,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.595146772748627,51,46,-9,-9,7,1,1,0,0,0,5,2,1,613,173683.3109246413,168559.9931188683,0,0,1365.338690554523 -1374,1713,3105,3106,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.306079213384723,7.457284086381827,36,-14,-84.56527752553819,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.44770411754227,7.500650187293161,60.3,43.72,57.16,56.15,8.333333333333334,1,1,0,0,6,4,2,1,322,743861.5566991683,482481.2459074436,177443.5807064076,26737.30362545235,1756.375546849099 -1374,1713,3106,3105,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,0,0,38,14,38.69693287844994,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,60.3,43.72,10,1,1,0,0,9,4,2,1,322,743861.5566991683,482481.2459074436,177443.5807064076,26737.30362545235,1756.375546849099 -1374,1714,3107,-9,3105,3106,1,0,23,0,0,1,1,0,0,0,4,0,6.026226824227351,5.981122239130516,0,0,-1066.954149399388,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.713450391912435,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,701,118911.7683185478,0,0,0,-54.14150904003725 -1375,1715,3108,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,4.06788638974292,4.008498434693784,0,0,-1059.842478416493,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,6.272062544851879,0,68.43289215412855,0,1,1,0,0,4.154714788449532,38.02,28.54,-9,-9,0,1,1,0,1,2,13,2,0,1262,5540.369841486043,25048.11449821366,0,0,759.0918091226713 -1376,1716,3109,3110,-9,-9,1,0,48,1,1,0,3,3,-9,1,1,0,0,0,29,0,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,0,1,0,0,42.28,21.33,26.7,21.88,6.666666666666667,1,1,0,0,0,4,1,0,891.5,24954.53983021285,0,0,0,960.7361023332635 -1376,1716,3110,3109,-9,-9,1,1,57,1,1,0,3,3,-9,1,1,0,0,0,29,9,0,0,-9,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,26.7,21.88,42.28,21.33,5,1,1,0,0,0,4,1,0,891.5,24954.53983021285,0,0,0,960.7361023332635 -1376,1717,3111,-9,3109,3110,1,1,27,1,1,0,2,2,-9,0,2,6.74703437258416,6.723456093898672,0,0,0,-975.142265557608,0,3,3,2019,12,0,10,10,1,0,1,11.42009016941532,11.42009016941532,0,0,0,0,7,1,0,1,0,0,36.78,53.77,-9,-9,5,1,1,0,1,3,4,2,0,1277,123709.7384458039,0,0,0,630.6298327904045 -1376,1718,3112,-9,3114,3113,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.55775034981,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,1,0,781,52490.02634490849,0,0,0,2141.92440786927 -1376,1718,3113,3114,-9,-9,1,1,25,1,1,0,2,2,-9,1,2,0,0,0,3,1,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,42.02,21.53,49.74,36.15,8.333333333333334,1,1,0,0,0,4,1,0,781,52490.02634490849,0,0,0,2141.92440786927 -1376,1718,3114,3113,3109,3110,1,0,24,1,1,0,2,2,-9,1,3,0,0,0,3,-1,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,49.74,36.15,42.02,21.53,8.333333333333334,1,1,0,0,1,4,1,0,781,52490.02634490849,0,0,0,2141.92440786927 -1377,1719,3115,3116,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,8,6,0,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,5,50.96,55.51,51.57,0,1,1,0,0,0,5,1,0,1299.5,0,0,0,0,1724.551559408051 -1377,1719,3116,3115,-9,-9,1,1,40,0,0,0,3,3,-9,1,3,0,0,0,8,-6,0,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,55.51,51.57,5,50.96,8.333333333333334,1,1,1,0,0,5,1,0,1299.5,0,0,0,0,1724.551559408051 -1378,1720,3117,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1057.482270498077,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,181,242511.5530947731,0,137679.6883728181,0,1032.429968093187 -1379,1721,3118,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.617834255299083,8.51865654407899,0,0,0,-1072.549111907713,0,2,2,2019,8,0,43,41,1,0,0,16.83739785888163,16.83739785888163,0,0,0,0,0,0,0,0,0,0,47.92,40.33,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,1068,630847.3698102304,454570.2156216166,249049.249521599,43822.74908888685,2300.645780340557 -1380,1722,3119,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,9.163742605466418,8.954718029603132,0,0,0,-985.2390550450345,0,2,2,2019,8,1,38,38,1,1,0,22.19479710282013,22.19479710282013,0,0,0,0,0,0,0,0,5.493906193480222,0,51.14,52.42,-9,-9,6.666666666666667,2,3,0,0,7,8,5,0,256,67305.04148708648,-11408.91963413188,0,0,2395.35979586959 -1381,1723,3120,3121,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.178578070149357,7.334202493495711,29,0,52.66699222356961,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.309131903044086,6.987832985724409,57.06,57.76,64.07000000000001,47.52,10,1,1,0,0,0,7,3,1,1275.5,1003101.499662816,191068.2674319287,787510.1058631309,0,2625.404166600531 -1381,1723,3121,3120,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.26757261867562,7.416595489600136,29,9,172.7650940044171,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.887978351296493,7.488704758889322,64.07000000000001,47.52,57.06,57.76,0,1,1,0,0,0,7,3,1,1275.5,1003101.499662816,191068.2674319287,787510.1058631309,0,2625.404166600531 -1382,1724,3122,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.852124601779409,6.828127479721662,0,0,0,-1119.097182062153,0,2,-9,2019,7,0,17,13,1,0,0,5.451402191595414,5.451402191595414,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,177,-137172.0942039175,0,0,0,882.1076324917582 -1383,1725,3123,-9,3124,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-771.7467024186761,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,580,-11107.04192208294,31649.98404721523,0,0,1350.904582313686 -1383,1725,3124,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,0,0,-922.4324486301074,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,0,5,1,0,580,-11107.04192208294,31649.98404721523,0,0,1350.904582313686 -1383,1725,3125,-9,3124,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.6098593876524,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,580,-11107.04192208294,31649.98404721523,0,0,1350.904582313686 -1384,1726,3126,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,6.53590528973316,6.898532412611048,0,0,0,-1190.020282588766,0,3,2,2019,9,0,12,12,1,0,0,7.185172373255083,7.185172373255083,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,2,0,896,-71597.94460626287,-70670.17079252006,0,0,1778.345571065948 -1385,1727,3127,-9,3129,3130,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.484440705069,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1385,1727,3128,-9,3129,3130,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.5897925899541,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1385,1727,3129,3130,-9,-9,1,0,33,1,4,0,2,2,-9,0,4,6.988558458816078,7.045695811340531,5.386811695796565,8,-13,46.84249263852416,0,2,2,2019,7,0,18,16,1,0,0,6.175579273727752,6.175579273727752,0,0,0,0,0,1,0,1,5.522675633450515,0,51.83,57.2,36.14,57.86,8.333333333333334,1,1,0,0,10,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1385,1727,3130,3129,-9,-9,1,1,46,1,4,0,2,2,-9,0,4,7.680839428631085,7.755042368084196,0,8,13,-58.05137642627159,0,2,-9,2019,20,7,37,38,1,7,0,6.770461344766479,6.770461344766479,0,0,0,0,0,1,0,1,0,0,36.14,57.86,51.83,57.2,6.666666666666667,1,1,0,0,9,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1385,1727,3131,-9,3129,3130,1,0,16,1,4,1,3,0,-9,1,3,0,0,0,0,0,-974.4592184617142,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1385,1727,3132,-9,3129,3130,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1091.994772184351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,866.3333333333334,332944.0589627602,192082.7890222978,161968.8108763335,14673.49567338306,2971.079725641751 -1386,1728,3133,3134,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.404421031184456,6.261757830143699,55,8,28.56270334454104,-9,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.054448952509929,6.54848072348091,55,45,49.27,32.35,8,1,1,0,0,0,12,3,1,193,285813.8956988524,236396.1455262667,45830.83710201172,0,2610.938842436642 -1386,1728,3134,3133,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.285849103426017,7.109962812409507,7,-8,-10.43579175301684,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,10.13738946660491,0,0,1,1,0,5.344747983015598,7.283256298803139,49.27,32.35,55,45,8.333333333333334,1,1,0,0,0,12,3,1,193,285813.8956988524,236396.1455262667,45830.83710201172,0,2610.938842436642 -1387,1729,3135,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,3.86264566492394,3.859633066997322,0,0,-1151.52873455914,0,3,3,2019,23,7,0,0,4,7,0,0,0,1,0,9.983501843463273,0,0,1,1,0,4.727733682060993,4.030414497027945,24.33,21.59,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,768,73670.28835806153,0,54419.18380310762,0,262.2958103507518 -1388,1730,3136,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.519532865478583,7.371393978953808,0,0,-936.219132425433,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.625095839123521,7.345420753215109,67.58,44.57,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,407,438052.2186894217,185578.5106992389,138786.8049436217,0,1521.814278281543 -1389,1731,3137,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.616935418113678,5.469117606661123,0,0,-971.8322587505988,0,3,3,2019,9,0,0,28,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.659004800301706,57.18,47.78,-9,-9,1.666666666666667,1,1,0,0,9,1,2,1,397,505531.5226864682,126958.5533175703,101376.4550120222,0,766.7609608812911 -1390,1732,3138,3139,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.616833325541774,7.743607356152967,6.717705314271745,42,-3,37.664932675789,0,2,2,2019,14,2,28,24,1,2,0,8.67770784051139,8.67770784051139,0,0,0,0,14.5,1,1,0,2.631648151010474,6.961578056214417,42.62,33.25,26.91,41.62,3.333333333333333,1,1,0,0,7,2,4,1,743.5,1542312.845349356,66656.94805407192,303771.3014316341,70881.91009228567,3361.987225047701 -1390,1732,3139,3138,-9,-9,1,1,63,0,0,0,2,2,-9,1,3,0,8.021013390927942,8.078070768261748,42,3,70.39784824982465,0,-9,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,8.246031924444944,26.91,41.62,42.62,33.25,1.666666666666667,1,1,0,0,7,2,4,1,743.5,1542312.845349356,66656.94805407192,303771.3014316341,70881.91009228567,3361.987225047701 -1391,1733,3140,3141,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,7.717317304359266,7.308071376784929,44,3,76.00008830939825,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,0,0,0,6.600912627410009,7.791584501343933,39.14,23.02,49,48,6.666666666666667,1,1,0,0,4,6,4,0,419.5,889000.741804887,650327.248428383,271080.9136649631,5773.854812755111,2734.353471936458 -1391,1733,3141,3140,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.398275080122628,8.086263495716942,4.811751742276569,44,-3,172.3212533135696,0,3,3,2019,11,0,37,35,1,2,0,10.30824774517349,10.30824774517349,0,0,0,0,2,0,0,0,1.844089654554616,5.468728674215114,49,48,39.14,23.02,7,1,1,0,0,10,6,4,0,419.5,889000.741804887,650327.248428383,271080.9136649631,5773.854812755111,2734.353471936458 -1392,1734,3142,-9,-9,-9,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1018.578256458121,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.24,32.5,-9,-9,0,1,1,0,1,3,4,1,0,649,0,0,0,0,835.8895854519703 -1393,1735,3143,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.006166567423519,5.828081838210003,0,0,-1064.332010301002,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,2.238177234160106,0,22.04161908546641,0,1,1,0,0,5.838037223537763,63.98,22.02,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1882,136854.4718969901,0,103472.0119593094,0,1562.857360933576 -1394,1736,3144,-9,3145,3146,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.0129240118284,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,482,138494.1606521995,-1364.228680819855,280574.9234362288,165169.5824217721,4156.171574272429 -1394,1736,3145,3146,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,8.402875741134446,8.215696105029103,0,15,-5,-104.6012333057776,0,2,2,2019,11,3,37,37,1,3,0,10.97073710894255,10.97073710894255,0,0,0,0,0,1,1,0,3.895753440077177,0,51.14,60.45,54.75,47.86,8.333333333333334,1,1,0,0,11,10,5,1,482,138494.1606521995,-1364.228680819855,280574.9234362288,165169.5824217721,4156.171574272429 -1394,1736,3146,3145,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.206437839445487,8.160157024306699,0,15,5,24.33304943597382,0,2,2,2019,11,0,44,44,1,0,0,10.57699512411605,10.57699512411605,0,0,0,0,0,1,1,0,5.512936507838408,0,54.75,47.86,51.14,60.45,10,1,1,0,0,11,10,5,1,482,138494.1606521995,-1364.228680819855,280574.9234362288,165169.5824217721,4156.171574272429 -1395,1737,3147,3148,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.245363269086451,7.255024015219806,52,2,-48.07861445303912,0,-9,-9,2019,24,9,0,0,4,9,0,0,0,1,0,2.494140918685945,0,0,1,1,0,.9568327415272299,7.218828981663281,23.82,47.48,62.03,41.71,3.333333333333333,1,1,0,0,0,10,2,1,838,476410.3140988238,192005.241309309,251063.9314709626,0,2664.646405849109 -1395,1737,3148,3147,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.00773081000878,5.829532245040563,52,-2,10.69021553897747,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.58815128746251,5.780131914138611,62.03,41.71,23.82,47.48,8.333333333333334,1,1,0,0,0,10,2,1,838,476410.3140988238,192005.241309309,251063.9314709626,0,2664.646405849109 -1396,1738,3149,3150,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.205311682514969,8.224813474064117,0,7,3,-170.4580560482396,0,-9,-9,2019,14,3,34,32,1,3,0,15.69279469938125,15.69279469938125,0,0,0,0,7,0,0,0,0,0,33.57,49.28,59.28,39.3,6.666666666666667,1,1,0,0,8,4,5,1,351,1424651.046447254,903989.8158908702,262405.7249047938,17612.97639489083,2796.106108821979 -1396,1738,3150,3149,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.472328577416876,8.702882643551739,0,7,-3,-81.119032253857,0,3,2,2019,10,0,37,37,1,0,0,13.05176942345082,13.05176942345082,0,0,0,0,0,0,0,0,0,0,59.28,39.3,33.57,49.28,6.666666666666667,1,1,0,0,8,4,5,1,351,1424651.046447254,903989.8158908702,262405.7249047938,17612.97639489083,2796.106108821979 -1397,1739,3151,-9,3154,3153,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.6483148347863,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,781.5,46626.25025364196,30670.69325364244,85032.40802262141,61869.51859127019,2585.043245933663 -1397,1739,3152,-9,3154,3153,1,0,12,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1019.64825936798,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,1,781.5,46626.25025364196,30670.69325364244,85032.40802262141,61869.51859127019,2585.043245933663 -1397,1739,3153,3154,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,8.54123613185129,8.907462249796549,0,8,4,107.8161509835422,0,3,3,2019,7,0,39,39,1,0,0,16.04654195816712,16.04654195816712,0,0,0,0,0,1,1,0,0,0,56.95,46.69,51.83,57.2,6.666666666666667,1,1,0,0,10,2,4,1,781.5,46626.25025364196,30670.69325364244,85032.40802262141,61869.51859127019,2585.043245933663 -1397,1739,3154,3153,-9,-9,1,0,39,1,2,0,2,2,-9,0,4,6.354675224533167,6.336236358925315,0,8,-4,67.09841511403894,0,3,3,2019,6,0,12,12,1,0,0,6.171334518416011,6.171334518416011,0,0,0,0,2,1,1,0,0,0,51.83,57.2,56.95,46.69,10,1,1,0,0,10,2,4,1,781.5,46626.25025364196,30670.69325364244,85032.40802262141,61869.51859127019,2585.043245933663 -1398,1740,3155,3156,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.344097067394268,8.749145529904158,6.910997071053306,39,7,61.57475348643293,0,2,3,2019,7,0,60,75,1,0,0,5.445028183570445,5.445028183570445,0,0,0,0,2,1,1,0,7.288206823085422,7.205599669651311,53.87,45.57,55.49,45.89,8.333333333333334,1,1,0,0,9,10,4,1,763,408503.593292853,236233.0757790578,143059.9393030681,10855.71220505942,3250.593535189441 -1398,1740,3156,3155,-9,3157,1,0,59,0,0,0,3,3,-9,0,4,6.500865886537369,6.45135882184106,0,39,-7,-12.04961276283517,0,3,3,2019,11,1,20,30,1,1,0,4.05962087084721,4.05962087084721,0,0,0,0,106,1,1,0,0,0,55.49,45.89,53.87,45.57,1.666666666666667,1,1,0,0,9,10,4,1,763,408503.593292853,236233.0757790578,143059.9393030681,10855.71220505942,3250.593535189441 -1398,1741,3157,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.797420040024278,5.87491285265443,0,0,-1060.737319849746,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.565709565571171,5.29666526448714,57.22,18.21,-9,-9,10,1,1,0,0,0,10,2,1,876,892226.1949232793,0,526133.556286359,0,2711.070759448097 -1399,1742,3158,-9,3162,-9,1,1,16,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1212.202470074705,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,-9,-9,10,1,1,0,0,0,7,2,0,500,133553.1178889562,0,0,0,1486.605873757089 -1399,1742,3159,-9,3162,3160,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.7474810778676,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,500,133553.1178889562,0,0,0,1486.605873757089 -1399,1742,3160,3162,-9,-9,1,1,25,1,3,0,2,2,-9,0,4,7.845460478126817,7.939220643862035,0,4,-12,11.03972350051682,0,-9,-9,2019,10,1,46,45,1,1,0,6.222732789026521,6.222732789026521,0,0,0,0,0,1,1,0,0,0,61.51,44.56,35.57,58.04,8.333333333333334,1,1,0,0,4,7,2,0,500,133553.1178889562,0,0,0,1486.605873757089 -1399,1742,3161,-9,3162,-9,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.8915887552523,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,500,133553.1178889562,0,0,0,1486.605873757089 -1399,1742,3162,3160,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,4,12,15.27964416520239,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,58.04,61.51,44.56,1.666666666666667,1,1,0,0,3,7,2,0,500,133553.1178889562,0,0,0,1486.605873757089 -1400,1743,3163,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.360120906967818,8.535142075648753,0,0,0,-1064.756977346903,0,3,2,2019,25,12,46,44,1,12,0,10.50896874356043,10.50896874356043,0,0,0,0,0,1,1,0,0,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,1286,215591.7205511106,28191.00923898787,163938.4292998546,74089.67299212929,2089.60891284438 -1401,1744,3164,3166,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.351483116673541,6.471035313004692,0,8,-4,44.78956767502777,0,2,3,2019,12,0,16,20,1,0,0,5.436916155024918,5.436916155024918,0,0,0,0,0,1,1,0,0,0,56.92,33.28,20.8,37.96,6.666666666666667,1,1,0,0,7,12,2,0,1352.25,-15744.34317690069,0,0,0,1937.390206870622 -1401,1744,3165,-9,3164,3166,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.8767198104778,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,2,0,1352.25,-15744.34317690069,0,0,0,1937.390206870622 -1401,1744,3166,3164,-9,-9,1,1,38,0,2,0,2,2,-9,1,2,0,0,0,8,4,-26.66986459446908,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,20.8,37.96,56.92,33.28,3.333333333333333,1,1,1,0,0,12,2,0,1352.25,-15744.34317690069,0,0,0,1937.390206870622 -1401,1744,3167,-9,3164,3166,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-977.9618313140465,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,1352.25,-15744.34317690069,0,0,0,1937.390206870622 -1402,1745,3168,-9,3171,3169,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.0306997726706,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,846.5,1892391.87245629,1195336.267780171,437732.8546467393,53415.3697048171,2611.473132235075 -1402,1745,3169,3171,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,8.239959953398726,8.086331675630444,0,16,2,5.915880146171296,0,1,3,2019,10,1,30,30,1,1,0,9.99209134039825,9.99209134039825,0,0,0,0,0,1,1,0,0,0,46.88,51.82,43.71,56.91,8.333333333333334,1,1,0,1,11,9,4,0,846.5,1892391.87245629,1195336.267780171,437732.8546467393,53415.3697048171,2611.473132235075 -1402,1745,3170,-9,3171,3169,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.3329185013835,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,0,846.5,1892391.87245629,1195336.267780171,437732.8546467393,53415.3697048171,2611.473132235075 -1402,1745,3171,3169,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.068015356123052,7.600275048983409,0,17,-2,-80.60809697519349,0,2,2,2019,10,1,40,38,1,1,0,7.460682309373465,7.460682309373465,0,0,0,0,0,1,1,0,0,0,43.71,56.91,46.88,51.82,8.333333333333334,1,1,0,1,9,9,4,0,846.5,1892391.87245629,1195336.267780171,437732.8546467393,53415.3697048171,2611.473132235075 -1403,1746,3172,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.964961563829807,7.085284395537706,0,0,0,-966.7534723691542,0,3,3,2019,1,0,10,10,1,0,0,14.85426765026562,14.85426765026562,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,5,6,2,1,758,112731.619417633,129462.1240955179,0,0,546.043584063507 -1403,1747,3173,-9,3172,-9,1,1,27,0,0,0,2,2,-9,0,4,7.760431114016348,7.854730445585274,0,0,0,-1055.093295148447,0,2,3,2019,10,0,40,50,1,1,1,6.095531838409343,6.095531838409343,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,1,6,3,1,913,29684.35431322131,28924.5735168064,0,0,1128.40444587881 -1404,1748,3174,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-980.5930114299596,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.250252419858791,0,0,1,1,0,0,0,60.98,39.98,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,623,0,0,0,0,219.0717886839944 -1405,1749,3175,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1027.974352056917,0,3,2,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.01,48.45,-9,-9,5,2,3,0,0,0,7,1,0,710,249136.3077829799,0,208787.8351007158,0,1139.584250406077 -1406,1750,3176,3177,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.475935695371153,6.413441231735837,15,-2,148.7765104838339,0,3,3,2019,8,0,0,25,4,0,0,0,0,0,0,0,0,7,1,1,0,8.173214402476903,6.621606365054718,49.97,56.66,51.16,18.85,5,1,1,0,0,9,1,3,1,753.5,1812573.011767429,723022.8659992277,733428.869835322,0,4819.514044136407 -1406,1750,3177,3176,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.712986566879209,7.816692337704993,15,2,39.39483172845244,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,19.46286889276573,0,2,1,1,0,0,7.681334181737923,51.16,18.85,49.97,56.66,8.333333333333334,1,1,0,0,0,1,3,1,753.5,1812573.011767429,723022.8659992277,733428.869835322,0,4819.514044136407 -1407,1751,3178,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.431801790109025,6.211152917369052,0,0,-994.3126657201301,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.192351115418839,6.508755435938198,51.32,42.01,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,690,37578.04736285636,100937.318391715,0,0,5613.276435785022 -1408,1752,3179,-9,3181,3180,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-847.2809622173844,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,496,644999.496051493,250309.1781276253,273827.8890185134,21372.68261057443,3357.74552165591 -1408,1752,3180,3181,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.997479789026837,8.902273441735785,0,21,-7,159.3571967196133,0,2,3,2019,9,0,35,36,1,0,0,26.71243833655222,26.71243833655222,0,0,0,0,0,1,1,0,5.022047830740623,0,51.98,38.47,60.29,52.11,6.666666666666667,1,1,0,0,9,4,4,1,496,644999.496051493,250309.1781276253,273827.8890185134,21372.68261057443,3357.74552165591 -1408,1752,3181,3180,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,5.536969108982643,5.760187161201745,0,21,7,-74.86070311647616,0,2,2,2019,7,0,7,6,1,0,0,5.273111416427015,5.273111416427015,0,0,0,0,0,1,1,0,0,0,60.29,52.11,51.98,38.47,8.333333333333334,1,1,0,0,9,4,4,1,496,644999.496051493,250309.1781276253,273827.8890185134,21372.68261057443,3357.74552165591 -1409,1753,3182,3183,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.388477169481407,8.100414621521324,0,3,-1,1.981700904462457,0,-9,-9,2019,7,0,40,40,1,0,0,12.70271956850724,12.70271956850724,0,0,0,0,0,0,0,0,0,0,53.39,52.35,41.6,53.68,8.333333333333334,1,1,0,0,1,12,4,1,339.5,-8140.08906934582,0,0,0,2784.337573937716 -1409,1753,3183,3182,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.697579652494256,7.452981659555004,0,3,1,-84.31612415753881,0,2,2,2019,10,1,40,40,1,1,0,7.557002453257746,7.557002453257746,0,0,0,0,0,0,0,0,0,0,41.6,53.68,53.39,52.35,8.333333333333334,1,1,0,0,6,12,4,1,339.5,-8140.08906934582,0,0,0,2784.337573937716 -1410,1754,3184,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-928.3098986059522,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,876,183088.0874241247,0,0,0,762.9921899928283 -1411,1755,3185,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.067227007857232,8.191257989515099,0,0,0,-912.7199356332314,0,1,2,2019,6,0,42,44,1,0,0,11.64576872176959,11.64576872176959,0,0,0,0,0,0,0,0,0,0,59.83,48.07,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,126,94538.57298161791,-814.9138002388463,0,0,1134.325864543257 -1412,1756,3186,3187,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,8,2,0,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,35.87,43.12,30.35,42.02,1.666666666666667,1,1,1,0,0,6,1,0,1790.5,185134.658886193,0,0,0,515.2004512293802 -1412,1756,3187,3186,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,0,1,0,0,30.35,42.02,35.87,43.12,5,1,1,1,0,0,6,1,0,1790.5,185134.658886193,0,0,0,515.2004512293802 -1412,1757,3188,-9,3186,3187,1,1,28,0,0,0,2,2,-9,0,3,8.113831446854338,7.863579523209617,0,0,0,-911.5889948240912,0,2,2,2019,7,0,56,21,1,0,1,6.502512744349658,6.502512744349658,0,0,0,0,0,1,0,1,0,0,44.57,46.8,-9,-9,5,1,1,0,0,3,6,4,0,31,-129741.0259460065,-14564.09674096778,0,0,1400.951280771418 -1412,1758,3189,-9,3186,3187,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1112.594048351924,0,2,2,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,38.86,51.72,-9,-9,10,1,1,1,0,0,6,1,0,140,146279.3861061262,0,0,0,182.072179561059 -1413,1759,3190,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-945.3975522332034,0,3,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.95,44.64,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,2284,-109310.2810600777,0,0,0,1004.354526515246 -1414,1760,3191,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.771823284590498,8.26874421720068,0,0,0,-954.8873940368888,0,1,1,2019,11,0,36,43,1,0,0,16.56631627347698,16.56631627347698,0,0,0,0,0,0,0,0,4.406022614793736,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,1642,236112.2773172864,56475.59191381373,207577.028340883,88365.15086607484,1649.349995830873 -1414,1761,3192,-9,-9,3191,1,1,23,0,0,0,1,1,-9,0,4,8.250214520205466,7.899103498590622,0,0,0,-1089.842162744812,0,-9,2,2019,12,0,42,37,1,0,1,11.70882827905551,11.70882827905551,0,0,0,0,0,0,0,0,0,0,63.09,39.69,-9,-9,1.666666666666667,1,1,0,0,6,6,4,1,470,36472.87090710983,0,0,0,2119.65794844432 -1415,1762,3193,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-872.7807950800847,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.96691080145276,0,0,1,1,0,0,0,40.82,39.82,-9,-9,5,1,1,0,0,0,9,1,0,375,1531064.325988368,116464.0943349734,1182693.333459178,0,1484.668660637744 -1416,1763,3194,3195,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.242842574757658,7.934311773207656,0,10,8,40.39313319423094,0,3,2,2019,10,0,37,37,1,0,0,12.82672686059886,12.82672686059886,0,0,0,0,0,0,0,0,3.703761366998194,0,50.51,53.71,29.32,59.39,8.333333333333334,1,1,0,0,11,5,5,1,347.5,396281.0984167759,468665.1057050895,162314.4837474885,75217.70105689172,3344.61675974018 -1416,1763,3195,3194,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.298796739002357,8.590103815743044,0,10,-8,-10.58744573395905,0,2,2,2019,19,8,40,40,1,8,0,11.89395765764518,11.89395765764518,0,0,0,0,0,0,0,0,2.955350302429335,0,29.32,59.39,50.51,53.71,8.333333333333334,1,1,0,0,11,5,5,1,347.5,396281.0984167759,468665.1057050895,162314.4837474885,75217.70105689172,3344.61675974018 -1417,1764,3196,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.766428976995774,7.73776587153616,0,0,-998.6571314249732,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.663963991452006,41.1,54.85,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,394,388829.3197739745,463902.8660935886,149578.1657974135,0,830.3106678010088 -1418,1765,3197,-9,3198,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-993.9862759905656,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.62,43.19,-9,-9,6.666666666666667,1,1,1,0,0,2,2,1,48,0,0,0,0,817.0605968447196 -1418,1766,3198,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-919.8804422319007,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,2,1,1,1131,77232.48447078916,0,0,0,1481.315544093315 -1419,1767,3199,3200,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.875705071044877,7.744518044159348,0,7,3,-63.61408977211642,0,3,3,2019,10,0,40,40,1,1,0,5.717856321241478,5.717856321241478,0,0,0,0,0,0,0,0,0,0,51,49,54.96,53.17,7,1,1,0,0,1,13,4,1,516.5,298676.7142648468,128531.1068032851,0,0,2129.481415289473 -1419,1767,3200,3199,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.003473654172078,8.573931126747867,0,7,-3,-53.66463144965134,0,3,3,2019,6,0,37,37,1,0,0,11.50916130553011,11.50916130553011,0,0,0,0,0,0,0,0,0,0,54.96,53.17,51,49,8.333333333333334,1,1,0,0,9,13,4,1,516.5,298676.7142648468,128531.1068032851,0,0,2129.481415289473 -1420,1768,3201,3203,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.838514875339449,9.10803325425714,0,13,4,.9221650163068993,0,2,1,2019,10,0,45,60,1,1,0,22.57952641079133,22.57952641079133,0,0,0,0,0,1,1,0,0,0,51,56,55.36,54.24,7,1,1,0,0,1,6,5,1,269.3333333333333,-50213.50592695732,33694.33316054753,197856.114341841,165394.1845477495,4633.305546286647 -1420,1768,3202,-9,3203,3201,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.6858650216711,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,269.3333333333333,-50213.50592695732,33694.33316054753,197856.114341841,165394.1845477495,4633.305546286647 -1420,1768,3203,3201,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.27556562303748,8.242251175354811,0,13,-4,-16.27868661608543,0,3,2,2019,10,1,40,43,1,1,0,12.27572514415388,12.27572514415388,0,0,0,0,0,1,1,0,0,0,55.36,54.24,51,56,8.333333333333334,1,1,0,0,9,6,5,1,269.3333333333333,-50213.50592695732,33694.33316054753,197856.114341841,165394.1845477495,4633.305546286647 -1421,1769,3204,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.148867279074,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,44.84,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,297,170451.3599872399,0,224461.6722481682,0,987.4531975013756 -1422,1770,3205,-9,3207,3208,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.100272994153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,585.25,569359.4554900231,376742.7750002645,368317.3569108587,192733.807029767,3683.585677680906 -1422,1770,3206,-9,3207,3208,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.850247758706,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,5,1,585.25,569359.4554900231,376742.7750002645,368317.3569108587,192733.807029767,3683.585677680906 -1422,1770,3207,3208,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.658167865360902,8.45644607755051,0,18,-7,108.0021752738714,0,2,2,2019,8,1,40,40,1,1,0,13.6544895782116,13.6544895782116,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,585.25,569359.4554900231,376742.7750002645,368317.3569108587,192733.807029767,3683.585677680906 -1422,1770,3208,3207,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.9028397388046,8.905763501626714,0,18,7,49.47702411277304,0,2,1,2019,9,0,44,45,1,0,0,15.53297031765164,15.53297031765164,0,0,0,0,0,1,1,0,4.423092712575819,0,54.1,59.11,55.19,54.26,8.333333333333334,1,1,0,0,12,11,5,1,585.25,569359.4554900231,376742.7750002645,368317.3569108587,192733.807029767,3683.585677680906 -1423,1771,3209,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,0,4.402150828254165,4.69741432517315,0,0,-1024.225562897245,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.347783038676294,0,40.05,43.86,-9,-9,6.666666666666667,4,5,1,0,0,7,2,0,359,-120982.3957810308,0,0,0,1651.57034089102 -1423,1771,3210,-9,-9,3209,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.533540914352,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,7,2,0,359,-120982.3957810308,0,0,0,1651.57034089102 -1424,1772,3211,3212,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,6,-5,-44.41349217614321,0,3,1,2019,21,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.33894173576387,0,36.6,36.16,62.67,49.54,1.666666666666667,1,1,0,0,2,7,5,1,590.5,3513514.983005996,626294.2853755996,2670697.808561004,0,8174.358142172427 -1424,1772,3212,3211,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,9.116560546623578,9.032802178111037,6,5,138.738927319668,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.356911352048517,8.068577456312429,62.67,49.54,36.6,36.16,8.333333333333334,1,1,0,0,5,7,5,1,590.5,3513514.983005996,626294.2853755996,2670697.808561004,0,8174.358142172427 -1425,1773,3213,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1013.132801377315,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,664,103475.8839691882,0,0,0,745.2402961078228 -1426,1774,3214,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,7.119445630276957,7.382328030725296,0,0,-984.8583527329894,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.298643165581987,7.204166537790847,58.05,54.52,-9,-9,10,1,1,0,0,0,6,3,1,124,408182.3164052364,156389.7070235181,326639.2642402209,0,1165.58536300204 -1427,1775,3215,3216,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.334966984676587,7.913558932915495,0,2,-1,114.1857332014226,0,3,3,2019,14,0,37,37,1,3,0,10.96984005621791,10.96984005621791,0,0,0,0,0,0,0,0,2.737621772247066,0,43,39,57.06,57.76,6,1,1,0,0,11,11,5,0,810,242348.0424956321,91922.17284173632,0,0,3004.043591071178 -1427,1775,3216,3215,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,8.315244441388218,8.547393770831162,0,2,1,-15.6994228239744,0,3,3,2019,6,0,40,38,1,0,0,12.61177582684568,12.61177582684568,0,0,0,0,0,0,0,0,3.397092229273129,0,57.06,57.76,43,39,6.666666666666667,1,1,0,0,11,11,5,0,810,242348.0424956321,91922.17284173632,0,0,3004.043591071178 -1428,1776,3217,3218,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.109542567462819,6.42546912010955,6,0,147.0332339160512,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.9503699442303627,5.932323718059154,52.57,25.97,60.29,38.88,8.333333333333334,1,1,0,0,0,10,3,1,445.5,971658.7248043271,225365.813884964,520526.7151535577,0,2810.638150556845 -1428,1776,3218,3217,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.186338398903507,7.673858005501182,6,0,-69.4913045845816,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.620654001330277,8.173840817752703,60.29,38.88,52.57,25.97,8.333333333333334,1,1,0,0,0,10,3,1,445.5,971658.7248043271,225365.813884964,520526.7151535577,0,2810.638150556845 -1429,1777,3219,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-820.6833836854519,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,7,3,4,0,1,0,8,1,0,514,-192941.9258843582,0,0,0,1841.018205060272 -1430,1778,3220,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.9068231228408,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,1.249570415550863,0,0,0,1,1,0,1.733162082300273,0,45.59,34.4,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,862,-86957.84374080044,0,0,0,234.6800479890541 -1431,1779,3221,3222,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,9,8,74.24461050798715,0,2,2,2019,13,3,0,4,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,31.42,46.24,47.97,56.11,8.333333333333334,1,1,0,0,5,6,4,1,491.5,328001.3637472826,42629.25121696785,141849.674919578,0,2625.788193694103 -1431,1779,3222,3221,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.904144839249165,9.030129364512964,0,9,-8,-15.52421053816203,-9,-9,-9,2019,7,2,59,0,1,2,0,12.32968277401154,12.32968277401154,0,0,0,0,0,0,0,0,6.990236539205751,0,47.97,56.11,31.42,46.24,8.333333333333334,1,1,0,0,9,6,4,1,491.5,328001.3637472826,42629.25121696785,141849.674919578,0,2625.788193694103 -1431,1780,3223,-9,3221,3222,1,1,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-1112.841692206084,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.966955295600001,0,35.15,61.1,-9,-9,6.666666666666667,1,1,0,0,1,6,1,1,549,120526.3278991192,0,0,0,-1242.752366041943 -1432,1781,3224,3225,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-4,65.77063547691409,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,62.8,26.26,52.13,57.22,8.333333333333334,1,1,0,0,0,13,2,1,395,428231.8372117948,151575.7835339793,105965.75560151,0,2181.969240157486 -1432,1781,3225,3224,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,7.414366056217503,7.369966714775946,7,4,-17.81898063464565,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.61685795364413,7.307441030860603,52.13,57.22,62.8,26.26,8.333333333333334,1,1,0,0,8,13,2,1,395,428231.8372117948,151575.7835339793,105965.75560151,0,2181.969240157486 -1433,1782,3226,3227,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.744162405239363,8.924286226779296,0,7,-2,-98.43574862814239,0,1,1,2019,10,0,48,48,1,0,0,17.27661379220991,17.27661379220991,0,0,0,0,0,0,0,0,2.048144191379821,0,48.87,58.55,47,57,6.666666666666667,1,1,0,0,11,2,5,1,488.5,358800.0009183183,81213.01978407313,283953.0981793191,200685.1860428704,6577.838271043115 -1433,1782,3227,3226,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.023329544470668,9.56109160577385,0,7,2,-41.35558255988917,0,-9,-9,2019,11,0,40,0,1,2,0,28.75401877957657,28.75401877957657,0,0,0,0,0,0,0,0,0,0,47,57,48.87,58.55,7,1,1,0,0,1,2,5,1,488.5,358800.0009183183,81213.01978407313,283953.0981793191,200685.1860428704,6577.838271043115 -1434,1783,3228,3229,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.543749717055459,9.129041547087452,8.701430890808917,39,5,-51.22022369923256,0,2,3,2019,10,0,19,19,1,0,0,10.24930295159163,10.24930295159163,0,0,0,0,0,0,0,0,8.225810666479143,8.761480506833456,57.73,54.53,51.83,57.2,8.333333333333334,1,1,0,0,9,5,5,1,996.5,782082.3101205712,524033.63001189,201776.8624955843,45282.85985810448,5943.095172376991 -1434,1783,3229,3228,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.316373835100471,8.068029298352535,0,39,-5,42.46085472026346,0,3,3,2019,12,0,37,37,1,0,0,10.81599785817254,10.81599785817254,0,0,0,0,0,0,0,0,7.605946563568361,0,51.83,57.2,57.73,54.53,6.666666666666667,1,1,0,0,12,5,5,1,996.5,782082.3101205712,524033.63001189,201776.8624955843,45282.85985810448,5943.095172376991 -1435,1784,3230,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.801046445208559,8.760356547588311,0,0,0,-831.5399356480842,0,2,2,2019,11,1,47,41,1,1,0,15.60859858319386,15.60859858319386,0,0,0,0,0,0,0,0,2.181282369755213,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,12,1,5,1,1796,271907.2179602647,345154.6940040062,190067.5401024097,0,1820.889012205447 -1436,1785,3231,-9,3232,3233,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.080752177328,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,881.25,307953.1076858298,213590.6695993389,0,0,4669.465815750555 -1436,1785,3232,3233,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.450783731912184,8.687734691549736,5.363031436501592,6,4,-144.4621151833693,0,2,2,2019,14,2,31,31,1,2,0,20.14720774129603,20.14720774129603,0,0,0,0,0,1,1,0,5.290431680179299,0,51.67,60.18,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,881.25,307953.1076858298,213590.6695993389,0,0,4669.465815750555 -1436,1785,3233,3232,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.995413561334431,8.695186951444978,0,6,-4,47.63316421191571,0,-9,-9,2019,11,0,50,48,1,0,0,17.99111630045599,17.99111630045599,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.67,60.18,8.333333333333334,1,1,0,0,12,5,5,1,881.25,307953.1076858298,213590.6695993389,0,0,4669.465815750555 -1436,1785,3234,-9,3232,3233,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.23284615633,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,881.25,307953.1076858298,213590.6695993389,0,0,4669.465815750555 -1437,1786,3235,3236,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.795619118748085,6.854391752717026,60,4,97.42279459676951,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.34021870150692,57.33,53.46,55.93,49.95,8.333333333333334,1,1,0,0,0,4,2,0,3641.5,270781.3561253366,52273.88720447643,195394.2812261449,0,1149.863028559461 -1437,1786,3236,3235,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,60,-4,-4.604925790347527,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.93,49.95,57.33,53.46,10,1,1,0,0,0,4,2,0,3641.5,270781.3561253366,52273.88720447643,195394.2812261449,0,1149.863028559461 -1438,1787,3237,3238,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,42,-5,-3.980688264578187,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.439691004061127,0,38.39,48.48,57.16,56.15,8.333333333333334,1,1,0,0,4,12,3,1,362.5,1625327.834907788,1334877.812284975,216670.7190257101,0,2565.688100331598 -1438,1787,3238,3237,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.96680176347689,8.070552555760241,42,5,-108.3496298718456,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.033176484262265,8.500341003510487,57.16,56.15,38.39,48.48,8.333333333333334,1,1,0,0,8,12,3,1,362.5,1625327.834907788,1334877.812284975,216670.7190257101,0,2565.688100331598 -1439,1788,3239,-9,3242,3240,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.97892282926,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1766.8,233881.3591469176,58748.79442480164,241089.6913841709,51606.07233769945,3745.532615523191 -1439,1788,3240,3242,-9,-9,1,1,40,0,3,0,3,3,-9,0,3,8.273105010084558,8.749543636759048,0,19,3,-68.09074523928254,0,3,1,2019,11,0,40,41,1,0,0,10.36967270062775,10.36967270062775,0,0,0,0,0,1,1,0,1.727200935223657,0,50.25,51.37,57.06,57.76,3.333333333333333,1,1,0,0,10,9,4,1,1766.8,233881.3591469176,58748.79442480164,241089.6913841709,51606.07233769945,3745.532615523191 -1439,1788,3241,-9,3242,3240,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.805080665939,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1766.8,233881.3591469176,58748.79442480164,241089.6913841709,51606.07233769945,3745.532615523191 -1439,1788,3242,3240,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,7.888361751385125,7.626526258203889,0,18,-3,-10.23780010080978,0,1,2,2019,13,4,17,12,1,4,0,13.10719471189137,13.10719471189137,0,0,0,0,0,1,1,0,2.617933350604535,0,57.06,57.76,50.25,51.37,10,1,1,0,0,9,9,4,1,1766.8,233881.3591469176,58748.79442480164,241089.6913841709,51606.07233769945,3745.532615523191 -1439,1788,3243,-9,3242,3240,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.1339741492933,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,1766.8,233881.3591469176,58748.79442480164,241089.6913841709,51606.07233769945,3745.532615523191 -1440,1789,3244,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.223837418225042,8.142196570207053,0,0,-1055.69789645985,-9,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.960284970944433,8.079545163014911,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,4,5,4,1,319,202437.5269151733,221813.786928034,67211.64852175003,0,2649.562944675134 -1441,1790,3245,-9,3246,3247,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.359867352926,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,0,753.6666666666666,608725.5590032181,372226.35528273,216088.3390986441,52681.00937885886,2621.933547528193 -1441,1790,3246,3247,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.453582700023445,7.396082192817809,0,6,-2,-35.55648076699147,0,-9,-9,2019,7,0,20,20,1,0,0,7.186404711092662,7.186404711092662,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.98,50.87,8.333333333333334,1,1,0,0,4,6,4,0,753.6666666666666,608725.5590032181,372226.35528273,216088.3390986441,52681.00937885886,2621.933547528193 -1441,1790,3247,3246,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.66008767866264,8.906415743802224,0,6,2,-32.20018444558811,0,2,2,2019,10,1,42,42,1,1,0,17.18524668619135,17.18524668619135,0,0,0,0,0,1,1,0,0,0,53.98,50.87,57.16,56.15,3.333333333333333,1,1,0,0,6,6,4,0,753.6666666666666,608725.5590032181,372226.35528273,216088.3390986441,52681.00937885886,2621.933547528193 -1442,1791,3248,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1027.944141198487,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.36,49.13,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,602,105251.8393424948,0,163692.9393750554,0,0 -1443,1792,3249,3250,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.665010710117637,6.497981360804003,8,1,69.43843979806503,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.079548095369875,6.308237541708518,57.16,56.15,48.44,30.57,8.333333333333334,1,1,0,0,8,5,3,1,692.5,418819.9618230261,128613.4789322555,285668.4351602481,0,3655.507097303107 -1443,1792,3250,3249,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.87630387721132,7.911515412412325,47,-1,-67.74630150260015,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.634306892993106,8.011693129841717,48.44,30.57,57.16,56.15,5,1,1,0,0,10,5,3,1,692.5,418819.9618230261,128613.4789322555,285668.4351602481,0,3655.507097303107 -1444,1793,3251,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.206080133792,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,6,12,1,1,482,156049.0961517988,0,0,0,586.7512399016011 -1445,1794,3252,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.323519560991519,8.447909289331424,0,0,0,-966.3449691942865,0,3,-9,2019,4,0,42,45,1,0,1,10.88779843148566,10.88779843148566,0,0,0,0,0,1,1,0,0,0,56.9,49.4,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,479,-199570.9892043436,125654.7617012769,0,0,1300.35154990441 -1446,1795,3253,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.230727545933817,9.330390253409764,0,17,1,43.52725548733125,0,2,2,2019,12,0,50,60,1,0,0,22.53709081844563,22.53709081844563,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,155,454865.1118733711,441523.1811827092,0,0,4241.382643036601 -1446,1796,3254,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.829852475536937,8.908374366294488,0,16,-1,-26.3064710422294,0,2,2,2019,11,2,45,45,1,2,0,18.28217439689501,18.28217439689501,0,0,0,0,0,0,0,0,5.618558957890349,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,273,80480.94028529988,36233.74784901524,184875.4986580995,118379.065351433,2839.161685246106 -1447,1797,3255,3256,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.071183489113389,6.485342545814681,31,10,-19.77620460772481,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.875692426124917,6.602880489042083,52,54.51,60.12,54.8,8.333333333333334,1,1,0,0,3,4,4,1,943,-101313.7247821789,127913.3249392554,0,0,2092.536137565412 -1447,1797,3256,3255,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.285766311189374,8.311389136970414,0,32,-10,84.5970766442038,0,2,2,2019,6,0,37,37,1,0,0,14.01819247420149,14.01819247420149,0,0,0,0,0,0,0,0,0,0,60.12,54.8,52,54.51,6.666666666666667,1,1,0,0,12,4,4,1,943,-101313.7247821789,127913.3249392554,0,0,2092.536137565412 -1448,1798,3257,3258,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,0,0,0,22,2,-107.119094002297,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.95,25.68,52.43,55.57,8.333333333333334,1,1,0,0,3,7,4,1,885,351466.2112220644,188880.9463296189,354190.3675272031,92247.64221640385,3901.948879569867 -1448,1798,3258,3257,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.068425185617857,9.094541540447072,0,22,-2,91.40160957575608,0,1,2,2019,6,0,40,40,1,0,0,22.87584498743963,22.87584498743963,0,0,0,0,0,0,0,0,0,0,52.43,55.57,59.95,25.68,10,1,1,0,0,9,7,4,1,885,351466.2112220644,188880.9463296189,354190.3675272031,92247.64221640385,3901.948879569867 -1449,1799,3259,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.865965352071941,7.023588901040068,0,0,-1052.9422364913,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.125802121309371,7.027732963875075,62.42,40.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,401,196341.1779612517,-44146.87969828364,157281.3548769041,0,1211.569040570497 -1450,1800,3260,3261,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,-4,14.7578358110153,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,54.7,57.33,53.46,10,1,1,0,0,0,5,2,1,638,529096.7854345744,270771.4318794925,140192.8346797995,0,1415.172906164662 -1450,1800,3261,3260,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.123319386463752,7.291386089092004,48,4,84.59987199564286,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.693502199661213,0,0,1,1,0,0,7.073663426328273,57.33,53.46,36.77,54.7,10,1,1,0,0,0,5,2,1,638,529096.7854345744,270771.4318794925,140192.8346797995,0,1415.172906164662 -1451,1801,3262,3263,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.715236813764375,5.36842291982729,11,2,-.0680460738203079,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,.9799609052489204,0,0,1,1,0,0,5.757559711592738,38.8,31.86,52,47,8.333333333333334,1,1,0,0,0,8,5,0,437,611526.7309922401,373246.7064814529,343791.7177640653,25197.85342670548,8386.978211028862 -1451,1801,3263,3262,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,9.505379474715896,9.675149006139439,0,7,-2,-8.959091887515184,0,-9,-9,2019,10,0,38,35,1,1,0,42.38710815272991,42.38710815272991,0,0,0,0,0,1,1,0,7.055877371604955,0,52,47,38.8,31.86,7,1,1,0,0,1,8,5,0,437,611526.7309922401,373246.7064814529,343791.7177640653,25197.85342670548,8386.978211028862 -1452,1802,3264,3265,-9,-9,1,1,67,1,1,0,2,2,-9,0,4,0,8.05299056946904,7.69762227423028,2,27,-37.16027717383486,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.989926340004446,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,0,8,3,1,588,499981.7392551359,324893.6650968592,153415.1072678804,0,1606.550815001664 -1452,1802,3265,3264,-9,-9,1,0,40,1,1,0,1,1,-9,0,5,0,0,0,2,-27,34.75169262472333,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.12,54.8,10,2,3,1,0,0,8,3,1,588,499981.7392551359,324893.6650968592,153415.1072678804,0,1606.550815001664 -1452,1803,3266,-9,3267,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9561718599739,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,1,883.5,21382.6729975887,0,0,0,921.9939229076276 -1452,1803,3267,-9,3265,3264,1,0,23,1,1,0,3,3,-9,1,1,0,0,0,0,0,-917.6418382279577,0,1,2,2019,30,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,15.21,43.47,-9,-9,0,1,1,1,1,0,8,1,1,883.5,21382.6729975887,0,0,0,921.9939229076276 -1453,1804,3268,3269,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.096395396625196,9.034457938935656,0,3,0,14.11634785478264,0,2,2,2019,9,0,43,40,1,0,0,25.47727727043119,25.47727727043119,0,0,0,0,0,1,1,0,6.046400997683606,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,1,8,5,1,1179.666666666667,472511.3904570781,246480.9220873929,405841.1704326615,149324.0282308386,5293.171284523794 -1453,1804,3269,3268,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.661119863846441,8.610023722945069,0,3,0,-77.76181829142405,0,-9,-9,2019,12,0,35,35,1,0,0,17.17345978137045,17.17345978137045,0,0,0,0,0,1,1,0,4.800377140115806,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,5,8,5,1,1179.666666666667,472511.3904570781,246480.9220873929,405841.1704326615,149324.0282308386,5293.171284523794 -1453,1804,3270,-9,3269,3268,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.500980486998,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,1,1179.666666666667,472511.3904570781,246480.9220873929,405841.1704326615,149324.0282308386,5293.171284523794 -1454,1805,3271,-9,3273,3274,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.486054084515,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.5,549382.3506798429,-51452.73952333756,530778.8580782574,136985.4162019496,4117.862301380037 -1454,1805,3272,-9,3273,3274,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.257950555771,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.5,549382.3506798429,-51452.73952333756,530778.8580782574,136985.4162019496,4117.862301380037 -1454,1805,3273,3274,-9,-9,1,0,34,1,2,0,2,2,-9,0,5,7.358041498290284,7.354270839908462,0,4,-8,-15.23410244285273,-9,2,2,2019,24,12,11,0,1,12,0,15.91311658925218,15.91311658925218,0,0,0,0,0,1,1,0,1.491736095433708,0,34.15,60.28,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,726.5,549382.3506798429,-51452.73952333756,530778.8580782574,136985.4162019496,4117.862301380037 -1454,1805,3274,3273,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.334513926496955,9.276544711479108,0,4,8,96.04901534540097,-9,1,1,2019,14,2,45,0,1,2,0,24.84902728761365,24.84902728761365,0,0,0,0,0,1,1,0,0,0,57.16,56.15,34.15,60.28,6.666666666666667,1,1,0,0,10,7,5,1,726.5,549382.3506798429,-51452.73952333756,530778.8580782574,136985.4162019496,4117.862301380037 -1455,1806,3275,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.52298904696675,5.357134053639152,0,0,-1021.150129610137,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.074003997872573,5.730398522271013,52,45,-9,-9,8,1,1,0,0,0,13,2,1,933,108144.0657819845,227117.7862739729,0,0,567.6349211476933 -1456,1807,3276,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-794.5050897951578,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,25.09,24.02,-9,-9,0,4,2,0,0,0,8,1,0,1043,113293.8274611054,-123409.1410535024,0,0,1557.737815283006 -1457,1808,3277,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.270465389432,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,1.666666666666667,1,1,0,0,2,6,1,1,317,0,0,0,0,925.8095159300635 -1458,1809,3278,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.705095953701644,8.969425766534027,0,0,0,-1014.378286424707,0,2,2,2019,10,0,38,60,1,0,0,18.64843979666518,18.64843979666518,0,0,0,0,0,0,0,0,4.008204175662096,0,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,469,1925590.830056055,505885.3792850318,1471263.076386887,388462.7112494479,2605.497088546786 -1459,1810,3279,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.717636239156403,7.709824367691411,0,0,0,-1139.721621963925,0,-9,-9,2019,11,3,21,15,1,3,0,12.02205886970305,12.02205886970305,0,0,0,0,2,1,1,0,6.434769839015193,0,40.93,48.42,-9,-9,3.333333333333333,1,1,0,0,12,12,3,0,634,107523.3607447833,8722.437304088544,0,0,976.4785322906978 -1460,1811,3280,3283,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.042504393390644,8.039608002406457,0,2,-2,-10.98687653459312,-9,2,2,2019,8,0,20,0,1,0,0,16.33517979430356,16.33517979430356,0,0,0,0,0,0,0,0,.8619804275157614,0,45.45,40.73,51.24,58.84,6.666666666666667,1,1,0,0,10,8,5,1,1034,2751753.000906548,1617212.692994837,1195119.831703642,228874.6568197299,4615.094495500411 -1460,1811,3281,-9,3280,3283,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-897.8976021879486,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1034,2751753.000906548,1617212.692994837,1195119.831703642,228874.6568197299,4615.094495500411 -1460,1811,3282,-9,3280,3283,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.1872093608508,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,1034,2751753.000906548,1617212.692994837,1195119.831703642,228874.6568197299,4615.094495500411 -1460,1811,3283,3280,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.493037809628257,9.193254179671728,0,2,2,72.45535516198996,0,2,2,2019,8,0,47,48,1,0,0,30.28170404753375,30.28170404753375,0,0,0,0,0,0,0,0,0,0,51.24,58.84,45.45,40.73,6.666666666666667,1,1,0,0,8,8,5,1,1034,2751753.000906548,1617212.692994837,1195119.831703642,228874.6568197299,4615.094495500411 -1461,1812,3284,-9,3289,3285,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-995.0918813070539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3285,3289,-9,-9,1,1,32,0,7,0,2,2,-9,0,3,7.790946416691562,7.560182780942046,0,7,-8,-20.25347372292866,0,3,2,2019,8,0,50,55,1,0,0,9.862012780039306,9.862012780039306,0,0,0,0,0,1,1,0,0,0,54.77,53.2,48.38,45.18,8.333333333333334,1,1,0,0,3,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3286,-9,3289,3285,1,1,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-834.2829618444379,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3287,-9,3289,3285,1,0,12,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1060.594147069867,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3288,-9,3289,3285,1,0,3,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1038.094823977426,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3289,3285,-9,-9,1,0,40,0,7,0,2,2,-9,0,3,0,0,0,7,8,-5.007906129571058,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,45.18,54.77,53.2,6.666666666666667,1,1,0,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3290,-9,3289,3285,1,1,14,0,7,1,3,0,-9,0,4,0,0,0,0,0,-975.0399447324799,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1812,3291,-9,3289,3285,1,0,7,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1030.93849384517,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,667.625,96949.02380189505,130936.3054509102,104121.2756534232,79221.5663642061,3577.834347083226 -1461,1813,3292,-9,3289,3285,1,1,22,0,7,0,2,2,-9,0,3,7.420489545939836,7.141152620327169,0,0,0,-1079.555054741217,0,2,2,2019,8,0,30,20,1,0,1,5.210869340021461,5.210869340021461,0,0,0,0,0,1,1,0,0,0,50.63,50.99,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,150,-149100.8333193772,-20391.54632019902,0,0,492.9100245282113 -1461,1814,3293,-9,3289,3285,1,1,21,0,7,0,2,2,-9,0,5,0,0,0,0,0,-1006.940723741056,0,2,3,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,1,0,0,12,1,0,1889,300569.5727584008,0,0,0,0 -1462,1815,3294,3295,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,6.526984925645874,6.716013950364212,9,0,-14.60133396865303,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,2.81019766481195,6.766278696546141,38.1,35.5,40.38,34.42,3.333333333333333,2,3,0,0,10,6,2,1,628,512744.8108353126,460346.1367331017,0,0,548.7686234464185 -1462,1815,3295,3294,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.911508436024408,6.819265383870487,9,0,-53.53155394230257,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,2.882700808536691,6.881457423928973,40.38,34.42,38.1,35.5,3.333333333333333,2,3,0,0,0,6,2,1,628,512744.8108353126,460346.1367331017,0,0,548.7686234464185 -1463,1816,3296,3297,-9,-9,1,0,66,0,0,0,1,1,0,0,2,0,0,0,3,-10,-36.19044228079922,-9,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.315663169245325,0,44.36,31.32,50.67,42.05,6.666666666666667,1,1,0,0,4,8,2,1,1284.5,896333.7565799195,0,408412.1916977699,0,2181.348086690107 -1463,1816,3297,3296,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.105256857380684,6.977746895335417,3,10,41.52510310639685,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.169568561915691,6.824677377222894,50.67,42.05,44.36,31.32,10,1,1,0,0,5,8,2,1,1284.5,896333.7565799195,0,408412.1916977699,0,2181.348086690107 -1464,1817,3298,3299,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.81781624342259,6.650501051144791,0,7,-6,19.53417572997504,0,3,2,2019,8,0,40,10,1,0,0,2.669034035834646,2.669034035834646,0,0,0,0,0,1,1,0,3.495177513567937,0,47.61,55.04,54.2,57.49,8.333333333333334,1,1,0,0,8,12,3,1,1889,489135.5440522491,214643.1432422142,178551.8987877385,0,1299.95399257098 -1464,1817,3299,3298,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.980716147523633,7.168731700887144,7,6,-8.473362544711346,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.528070509371763,7.227312338937576,54.2,57.49,47.61,55.04,8.333333333333334,1,1,0,0,5,12,3,1,1889,489135.5440522491,214643.1432422142,178551.8987877385,0,1299.95399257098 -1465,1818,3300,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,0,0,-871.4798515571878,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.64,54.12,-9,-9,5,1,1,0,0,0,13,1,0,1115.5,-6868.102282456301,0,0,0,117.8526012783439 -1465,1818,3301,-9,3300,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.2112490333277,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,1115.5,-6868.102282456301,0,0,0,117.8526012783439 -1465,1819,3302,-9,3300,-9,1,1,23,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1064.099414929497,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1030,-37308.9217416522,0,0,0,-113.5837531370293 -1466,1820,3303,3304,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,20,1,-32.95837788818149,0,3,3,2019,26,12,0,40,3,12,0,0,0,0,0,0,2.590317659684578,0,0,0,0,0,0,32.14,39.53,57.16,56.15,3.333333333333333,1,1,1,0,12,9,2,0,182.5,355318.7108389356,39999.03416703647,0,0,882.3804824853628 -1466,1820,3304,3303,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.668691158031085,7.720677754397774,0,31,-1,-63.12459444107446,0,3,3,2019,10,0,50,40,1,0,0,4.040687732904379,4.040687732904379,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.14,39.53,6.666666666666667,1,1,0,0,12,9,2,0,182.5,355318.7108389356,39999.03416703647,0,0,882.3804824853628 -1467,1821,3305,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,6.808849884492821,6.645772737249453,0,0,-918.2164774566913,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,2.428267316421794,11.90327220324767,17.18464846411421,0,1,1,0,7.076091892447782,0,36.36,36.99,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,465,794938.7658631968,-90569.04756290274,622632.1750561664,0,941.726749366753 -1468,1822,3306,-9,3308,3307,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.470898603213,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,456.75,8100.985242006578,0,0,0,2485.579691015875 -1468,1822,3307,3308,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.665266608845362,8.511122894977781,0,4,3,-40.37142704699263,0,2,2,2019,15,3,42,42,1,3,0,12.40554343045904,12.40554343045904,0,0,0,0,0,1,1,0,0,0,52.16,35.62,30.93,59.15,6.666666666666667,1,1,0,0,6,6,4,0,456.75,8100.985242006578,0,0,0,2485.579691015875 -1468,1822,3308,3307,-9,-9,1,0,24,1,2,0,2,2,-9,0,2,7.328445901606215,7.474939612086402,0,4,-3,-23.92221298885133,0,-9,-9,2019,19,5,36,21,1,5,0,6.569580029319922,6.569580029319922,0,0,0,0,0,1,1,0,0,0,30.93,59.15,52.16,35.62,8.333333333333334,1,1,0,0,3,6,4,0,456.75,8100.985242006578,0,0,0,2485.579691015875 -1468,1822,3309,-9,3308,3307,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.521384738863,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,456.75,8100.985242006578,0,0,0,2485.579691015875 -1469,1823,3310,3311,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.557333890098636,7.437338882026521,0,24,-3,-5.587292377154082,0,1,1,2019,18,6,18,20,1,6,0,13.48167474587911,13.48167474587911,0,0,0,0,0,0,0,0,3.773817572264702,0,40.67,62.66,46.45,51.59,3.333333333333333,1,1,0,0,9,5,4,1,131.5,509808.0063395089,-61383.95803036464,264892.8908647425,0,2206.087389237157 -1469,1823,3311,3310,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.840675475330842,8.076177951798307,0,24,3,13.7835700685516,0,3,3,2019,11,0,77,0,1,0,0,5.55701324072526,5.55701324072526,0,0,0,0,0,0,0,0,0,0,46.45,51.59,40.67,62.66,6.666666666666667,1,1,0,0,11,5,4,1,131.5,509808.0063395089,-61383.95803036464,264892.8908647425,0,2206.087389237157 -1469,1824,3312,-9,3310,3311,1,0,18,0,0,0,2,2,1,0,4,0,4.39876498714125,4.200688680119143,0,0,-988.1581422408051,-9,1,1,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,4.367055182899248,0,27.95,61.48,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,3774,-3491.370512771734,0,0,0,-234.8148166443283 -1470,1825,3313,3314,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.812114904355356,8.864382060629776,0,6,2,135.0633976236535,0,3,3,2019,10,0,50,48,1,0,0,14.46956222382698,14.46956222382698,0,0,0,0,2,0,0,0,.634508094902442,0,49.04,55.86,43.54,35.67,6.666666666666667,1,1,0,0,7,12,5,1,556.5,1607994.176798805,1231203.642277875,342312.2568706223,18926.1856541827,4973.116045450779 -1470,1825,3314,3313,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.65749392245668,8.89546322902779,0,6,-2,-53.05975668607303,0,3,3,2019,15,3,43,41,1,3,0,15.09870505958903,15.09870505958903,0,0,0,0,2,0,0,0,0,0,43.54,35.67,49.04,55.86,3.333333333333333,1,1,0,0,7,12,5,1,556.5,1607994.176798805,1231203.642277875,342312.2568706223,18926.1856541827,4973.116045450779 -1470,1826,3315,-9,3313,3314,1,0,24,0,0,0,1,1,1,0,5,8.316928895155208,7.854714063792358,0,0,0,-927.5875425951671,-9,1,2,2019,12,0,32,0,1,0,1,12.41179508087772,12.41179508087772,0,0,0,0,2,0,0,0,1.721861103431587,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,823,84884.3869232704,0,0,0,1195.548483022479 -1470,1827,3316,-9,3313,3314,1,1,22,0,0,0,1,1,1,0,5,6.732350396838809,6.099920048257193,0,0,0,-945.0599666355048,-9,1,2,2019,3,0,32,0,1,0,1,2.511388506932769,2.511388506932769,0,0,0,0,0,0,0,0,6.680522921206193,0,58.05,54.52,-9,-9,10,1,1,0,0,4,12,2,1,971,0,0,0,0,-194.2245969240973 -1471,1828,3317,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.764591736933204,7.503323716544147,0,0,-940.0296240226704,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.762428757940285,7.964532079013232,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,13,3,1,2902,574453.8203178695,576228.0954500182,185325.922085567,28043.857247643,1546.361309746624 -1472,1829,3318,3319,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,33,5,-69.77502469243694,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.716431820143026,0,57.33,53.46,57.57,49.69,8.333333333333334,1,1,0,0,0,9,3,1,629.5,932390.4115153514,573188.1013394067,436769.8387343705,0,1695.903102402141 -1472,1829,3319,3318,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,7.312285335013521,7.625070080438382,6.906342841002116,33,-5,3.910758005299671,0,3,2,2019,6,0,24,24,1,0,0,7.508413441271993,7.508413441271993,0,0,0,0,0,1,1,0,3.685664285268797,7.254079178683461,57.57,49.69,57.33,53.46,8.333333333333334,1,1,0,0,11,9,3,1,629.5,932390.4115153514,573188.1013394067,436769.8387343705,0,1695.903102402141 -1473,1830,3320,3321,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.713709505843894,6.469847034709152,0,4,-3,-81.53510027255371,0,-9,-9,2019,11,0,19,45,1,0,0,4.038250000801212,4.038250000801212,0,0,0,0,0,0,0,0,0,0,40.65,57.36,46.67,34.44,6.666666666666667,1,1,0,0,3,9,3,0,597,1057.215437526931,-24702.38996477314,168770.9586813687,117021.9844919111,1475.56786385446 -1473,1830,3321,3320,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,7.750775671287041,8.070237830650091,0,4,3,-27.67019049717469,0,-9,-9,2019,13,2,40,40,1,2,0,8.587599106708545,8.587599106708545,0,0,0,0,0,0,0,0,0,0,46.67,34.44,40.65,57.36,8.333333333333334,1,1,0,0,4,9,3,0,597,1057.215437526931,-24702.38996477314,168770.9586813687,117021.9844919111,1475.56786385446 -1474,1831,3322,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,9.378733263870595,9.042560200840949,0,0,0,-933.3266581049238,0,2,2,2019,5,0,9,12,1,0,0,116.5460841880951,116.5460841880951,0,0,0,0,2,0,0,0,0,0,41.07,60.93,-9,-9,10,4,2,0,0,3,7,5,0,1820,548726.5790580647,-4798.735948504851,457817.0285745353,0,4035.663846912291 -1474,1832,3323,-9,3322,-9,1,0,37,0,0,0,1,1,-9,0,4,7.14263438134005,6.967153046411137,0,0,0,-835.4632493248286,0,2,-9,2019,7,0,24,24,1,0,1,6.260352396585048,6.260352396585048,0,0,0,1.581003479006812,2,0,0,0,.8190487588296107,0,60.12,54.8,-9,-9,10,3,4,0,0,3,7,3,0,347,12199.18215554419,63247.18972667644,0,0,300.9979568415336 -1475,1833,3324,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1115.266275161901,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,41.22,48.82,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1934,-5802.918451225247,0,0,0,1079.329220679846 -1476,1834,3325,-9,3327,3328,1,0,17,0,1,1,2,0,0,0,4,0,4.634671466718961,4.648887390522545,0,0,-992.5717705628163,-9,2,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,4.550367213660347,0,25.06,60.14,-9,-9,0,4,2,0,0,0,8,3,0,1187.25,97154.35930916553,53910.84173110606,0,0,2559.553752633999 -1476,1834,3326,-9,3327,3328,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1061.297125640154,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,3,0,1187.25,97154.35930916553,53910.84173110606,0,0,2559.553752633999 -1476,1834,3327,3328,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.030620275730612,8.339862072733148,0,7,-4,57.92853094834042,0,-9,-9,2019,6,0,37,37,1,0,0,13.62332206753079,13.62332206753079,0,0,0,0,0,0,0,0,0,0,57.33,53.46,42.78,31.78,8.333333333333334,1,1,0,0,10,8,3,0,1187.25,97154.35930916553,53910.84173110606,0,0,2559.553752633999 -1476,1834,3328,3327,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,7.564563621543582,7.760407342387982,0,7,4,.9076747906177196,0,-9,-9,2019,14,4,56,48,1,4,0,5.203829280768786,5.203829280768786,0,0,0,0,0,0,0,0,0,0,42.78,31.78,57.33,53.46,5,4,2,0,0,12,8,3,0,1187.25,97154.35930916553,53910.84173110606,0,0,2559.553752633999 -1477,1835,3329,3330,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.825557138369499,7.806521561586417,0,9,3,71.85787086745982,0,3,2,2019,11,0,37,37,1,1,0,9.028549076697242,9.028549076697242,0,0,0,0,0,0,0,0,0,0,49,50,57.16,56.15,7,1,1,0,0,10,13,5,1,1653,5080.929801339953,89641.99754532101,0,0,4991.531639673428 -1477,1835,3330,3329,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.12779199472803,9.359389781841418,0,9,-3,-67.73707485469346,0,2,2,2019,9,0,95,61,1,0,0,11.04756267367066,11.04756267367066,0,0,0,0,0,0,0,0,3.33399411416714,0,57.16,56.15,49,50,8.333333333333334,1,1,0,0,10,13,5,1,1653,5080.929801339953,89641.99754532101,0,0,4991.531639673428 -1478,1836,3331,3332,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.301726863388012,8.019808728057351,10,-8,94.22829545564382,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.920351753433393,8.232650276915342,47.61,55.04,54.33,42.47,8.333333333333334,1,1,0,0,8,13,3,1,873.5,2570604.663488635,1051065.84693193,574813.8873567057,0,2513.000414904453 -1478,1836,3332,3331,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.365773772200506,6.348394137440525,10,8,-88.17382773856866,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.953575462132235,6.159553702586278,54.33,42.47,47.61,55.04,8.333333333333334,1,1,0,0,9,13,3,1,873.5,2570604.663488635,1051065.84693193,574813.8873567057,0,2513.000414904453 -1479,1837,3333,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.213328264552693,8.041635838393784,0,0,0,-978.7840250452198,0,-9,-9,2019,12,1,40,43,1,1,0,9.651632530456371,9.651632530456371,0,0,0,0,0,0,0,0,2.928959747744754,0,41,56.99,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,384,10694.48671849844,108414.3657120568,0,0,1202.707517177308 -1480,1838,3334,3335,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,39,8,72.45192308766363,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,2.909884603460683,0,0,1,1,0,0,0,41.38,51.32,41.2,30.23,8.333333333333334,1,1,0,0,2,9,2,1,405.5,192715.310779408,155338.9610494902,162395.7793617539,0,555.2783016035175 -1480,1838,3335,3334,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,5.820727831418948,5.688159425356297,39,-8,-36.28335158650638,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.342079205832269,6.050652073075173,41.2,30.23,41.38,51.32,6.666666666666667,1,1,0,0,6,9,2,1,405.5,192715.310779408,155338.9610494902,162395.7793617539,0,555.2783016035175 -1481,1839,3336,3337,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.870065780980903,8.004290247413488,0,21,1,19.03998855700866,0,3,3,2019,12,1,24,23,1,1,0,16.52703471713384,16.52703471713384,0,0,0,0,2,1,1,0,1.036044871761849,0,48.89,34.25,56.27,42.92,6.666666666666667,1,1,0,0,5,6,3,1,349.5,732525.4245696764,589868.9394426569,131400.3350068378,19535.22081027341,820.3243839853727 -1481,1839,3337,3336,-9,-9,1,1,48,0,0,0,1,1,-9,1,3,0,0,0,21,-1,113.2378391728988,0,2,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,2.143008056475867,0,56.27,42.92,48.89,34.25,8.333333333333334,1,1,0,0,8,6,3,1,349.5,732525.4245696764,589868.9394426569,131400.3350068378,19535.22081027341,820.3243839853727 -1482,1840,3338,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.159625077936051,7.419155153278565,5.432940153383631,0,0,-1047.024754289076,0,2,2,2019,10,0,16,16,1,0,0,7.713154468977695,7.713154468977695,0,0,0,0,5.48,1,1,0,5.428741299754789,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,502,321375.5243858426,87681.69921905307,157121.3101568866,0,1002.506161733083 -1482,1841,3339,-9,3338,-9,1,0,20,0,0,0,2,2,-9,0,4,7.728707588518431,7.765275727905051,0,0,0,-931.5373551093362,0,2,-9,2019,6,0,38,38,1,0,1,8.278053231121511,8.278053231121511,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,402,4597.446415636074,0,0,0,1101.031562440333 -1483,1842,3340,3342,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.534641280548139,8.037535618071615,0,8,-2,-14.00719312212452,0,3,3,2019,10,0,32,7,1,0,0,8.012483775844201,8.012483775844201,0,0,0,0,2,1,1,0,0,0,49.61,54.24,43.26,46.12,8.333333333333334,1,1,0,1,9,8,5,1,542,1085567.187998154,351885.6205414904,491070.8408695725,21586.8967325316,3191.159665221479 -1483,1842,3341,-9,3340,3342,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1124.91441373691,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,8,5,1,542,1085567.187998154,351885.6205414904,491070.8408695725,21586.8967325316,3191.159665221479 -1483,1842,3342,3340,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.834418021574621,8.980835209001031,6.030712333849234,8,2,22.50866234987677,0,3,3,2019,10,0,37,37,1,0,0,20.95045800395679,20.95045800395679,0,0,0,0,2,1,1,0,0,6.32036354228549,43.26,46.12,49.61,54.24,6.666666666666667,1,1,0,0,9,8,5,1,542,1085567.187998154,351885.6205414904,491070.8408695725,21586.8967325316,3191.159665221479 -1483,1843,3343,-9,3340,3342,1,0,23,0,1,0,1,1,-9,0,4,7.518481077015677,7.58105036180847,0,0,0,-1014.266987623898,0,2,2,2019,8,0,37,37,1,0,1,7.138416440259864,7.138416440259864,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,138,121954.2606477139,88593.30254038889,0,0,1605.787396967261 -1483,1844,3344,-9,3340,3342,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.9713949753818,1,2,3,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.4382002388963497,0,39.99,62.58,-9,-9,8.333333333333334,1,1,0,1,4,8,1,1,1473,-9971.736387956984,0,0,0,4078.742052020586 -1483,1845,3345,3346,-9,-9,1,0,18,0,1,1,2,0,-9,0,2,0,0,0,1,0,0,-9,-9,-9,2019,25,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,49.45,46.23,1.666666666666667,1,1,0,0,2,8,1,1,678.5,-22261.27690811376,0,0,0,0 -1483,1845,3346,3345,3340,3342,1,1,18,0,1,1,3,0,0,0,3,0,0,0,1,0,0,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.45,46.23,38,44,8.333333333333334,1,1,0,0,11,8,1,1,678.5,-22261.27690811376,0,0,0,0 -1484,1846,3347,-9,3348,3350,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.530815077337,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,375.5,124279.0487910892,51542.59102269614,223017.2311438809,158669.9208554095,3914.089694995102 -1484,1846,3348,3350,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.543954015039328,6.786852810754157,0,1,8,2.213355692740712,-9,-9,-9,2019,11,0,30,0,1,0,0,2.564881537401987,2.564881537401987,0,0,0,0,42,0,0,0,0,0,52,54.51,46.9,56.66,8.333333333333334,1,1,0,0,2,12,5,1,375.5,124279.0487910892,51542.59102269614,223017.2311438809,158669.9208554095,3914.089694995102 -1484,1846,3349,-9,3348,3350,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.1304157137704,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,375.5,124279.0487910892,51542.59102269614,223017.2311438809,158669.9208554095,3914.089694995102 -1484,1846,3350,3348,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.570622289264417,9.198219112449145,0,12,-8,187.7482160866951,-9,2,2,2019,11,0,55,0,1,0,0,23.51803923024985,23.51803923024985,0,0,0,0,0,0,0,0,0,0,46.9,56.66,52,54.51,6.666666666666667,1,1,0,1,9,12,5,1,375.5,124279.0487910892,51542.59102269614,223017.2311438809,158669.9208554095,3914.089694995102 -1485,1847,3351,-9,3352,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.092206040307,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1423,60809.5381107361,-2625.255852724888,0,0,1713.320952095739 -1485,1847,3352,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.123947298009854,8.125217210589842,0,0,0,-950.564710802695,0,2,2,2019,13,1,33,32,1,1,0,10.14707740580793,10.14707740580793,0,0,0,0,0,1,1,0,0,0,44.36,55.26,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,1423,60809.5381107361,-2625.255852724888,0,0,1713.320952095739 -1485,1847,3353,-9,3352,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.8287623261526,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1423,60809.5381107361,-2625.255852724888,0,0,1713.320952095739 -1486,1848,3354,3355,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.226205204386153,7.933364919354045,6,3,9.26021110170324,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,8.02765770480948,60.12,54.8,47.84,9.75,10,1,1,0,0,0,2,3,0,511.5,762274.5273148933,329125.3498988578,228146.0917271106,0,3544.472832491998 -1486,1848,3355,3354,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,6,-3,-29.15585157380343,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.581702054422722,0,47.84,9.75,60.12,54.8,3.333333333333333,1,1,0,0,0,2,3,0,511.5,762274.5273148933,329125.3498988578,228146.0917271106,0,3544.472832491998 -1487,1849,3356,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.851244407158477,9.046168256584263,0,0,0,-1008.576356548644,0,2,2,2019,8,0,36,41,1,0,0,24.76421245288033,24.76421245288033,0,0,0,0,0,0,0,0,4.645919758972008,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,182,197036.7247304741,149378.9647358627,182142.7866450675,118826.668208085,3357.309773030861 -1488,1850,3357,3358,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,50,1,0,0,3,-9,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,120,1,1,0,0,0,29.35,35.33,56.96,13.5,5,1,1,0,0,0,12,1,1,165,213679.1871629935,204428.9963314542,0,0,1981.071017104232 -1488,1850,3358,3357,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,50,-1,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,13.5,29.35,35.33,1.666666666666667,1,1,0,0,0,12,1,1,165,213679.1871629935,204428.9963314542,0,0,1981.071017104232 -1489,1851,3359,3360,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.640615446600085,8.778517100872456,0,1,-6,16.24718447133762,-9,-9,-9,2019,11,0,60,0,1,0,0,10.87917263320545,10.87917263320545,0,0,0,0,0,1,1,0,0,0,52.4,39.48,38.58,19.11,5,1,1,0,0,11,6,5,0,456,122328.0836002517,75805.4579314521,82745.30958303729,49874.53628597944,3191.370711619139 -1489,1851,3360,3359,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,7.272132364002125,7.245937271037707,0,1,6,-24.92381412552351,0,2,1,2019,26,12,20,22,1,12,0,6.870032033950179,6.870032033950179,0,0,0,0,0,1,1,0,0,0,38.58,19.11,52.4,39.48,3.333333333333333,1,1,0,1,7,6,5,0,456,122328.0836002517,75805.4579314521,82745.30958303729,49874.53628597944,3191.370711619139 -1490,1852,3361,3362,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.380217774598353,8.328174392703948,0,40,0,27.91136918228587,0,3,3,2019,7,0,39,38,1,0,0,11.84737468768585,11.84737468768585,0,0,0,0,0,0,0,0,4.353504865094915,0,57.06,57.76,59.46,46.99,8.333333333333334,1,1,0,0,9,5,4,1,295,202097.2788224503,86479.17073480645,111218.3573841556,109158.8071191838,2516.424781265764 -1490,1852,3362,3361,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.61843972737016,7.731550644826261,0,40,0,13.08157661448032,0,-9,-9,2019,10,0,45,45,1,0,0,5.765959455812591,5.765959455812591,0,0,0,0,0,0,0,0,3.050278862157793,0,59.46,46.99,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,295,202097.2788224503,86479.17073480645,111218.3573841556,109158.8071191838,2516.424781265764 -1490,1853,3363,-9,3361,3362,1,1,32,0,0,0,2,2,-9,0,3,7.740406403700512,7.621435646812686,0,0,0,-817.2344004041666,0,2,2,2019,16,4,40,30,1,4,1,6.522094899537137,6.522094899537137,0,0,0,0,0,0,0,0,0,0,36.31,55.17,-9,-9,3.333333333333333,1,1,0,0,3,5,3,1,759,-79386.95498084888,-58131.58269221822,0,0,966.8799045542219 -1491,1854,3364,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1186.037040553551,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,29.87,49.76,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,1454,98297.73385914393,0,0,0,199.2518391439601 -1492,1855,3365,3366,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,41,5,57.53649790439059,0,-9,-9,2019,26,11,0,0,4,11,0,0,0,1,0,2.414524645886405,0,0,1,1,0,0,0,39.01,21.43,47.45,44.32,3.333333333333333,1,1,0,0,8,9,2,1,2688.5,94031.49235663495,85432.88255711562,0,0,1402.283053703462 -1492,1855,3366,3365,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.777753675124091,5.697421912226411,41,-5,68.36945923694995,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.319718343122186,5.404772389949356,47.45,44.32,39.01,21.43,3.333333333333333,1,1,0,0,5,9,2,1,2688.5,94031.49235663495,85432.88255711562,0,0,1402.283053703462 -1493,1856,3367,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.210293340270326,8.310742053401764,5.689184910595237,0,0,-1033.596100382266,0,3,2,2019,12,1,25,34,1,1,0,14.22378848340014,14.22378848340014,0,0,0,0,0,1,1,0,5.714591946658431,0,51.83,57.2,-9,-9,5,1,1,0,0,10,2,4,0,143,123766.1666833948,0,257480.4794911419,0,2179.522336846042 -1494,1857,3368,3369,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.288647661867895,8.2378617556321,0,8,-5,93.16186573214191,0,3,3,2019,15,3,37,37,1,3,0,12.36479216122873,12.36479216122873,0,0,0,0,27,0,0,0,0,0,39.91,22.38,25.89,44.19,1.666666666666667,1,1,0,1,8,4,3,1,667,106039.0072435063,-2017.312679010894,156758.3942381388,0,1375.02033979146 -1494,1857,3369,3368,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,8,5,166.2663597151312,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,25.89,44.19,39.91,22.38,1.666666666666667,1,1,0,1,0,4,3,1,667,106039.0072435063,-2017.312679010894,156758.3942381388,0,1375.02033979146 -1495,1858,3370,3371,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.973690576239506,8.159923199978699,0,23,-1,-64.59409244828672,0,2,2,2019,10,1,37,38,1,1,0,11.84824336271463,11.84824336271463,0,0,0,0,0,0,0,0,0,0,48.47,46.95,36.2,60.58,6.666666666666667,1,1,0,0,12,11,5,1,4412,1004996.646760646,749258.7363907205,236552.7152870856,0,3035.749032848468 -1495,1858,3371,3370,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.355461786373954,8.08740505028698,8.192946921675563,23,1,91.21634544160015,0,2,2,2019,17,6,35,36,1,6,0,6.514015996662218,6.514015996662218,0,0,0,0,0,0,0,0,5.986649617016245,7.764633620037401,36.2,60.58,48.47,46.95,5,1,1,0,0,11,11,5,1,4412,1004996.646760646,749258.7363907205,236552.7152870856,0,3035.749032848468 -1496,1859,3372,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.899699350665338,6.436980740378863,0,0,-881.7256284567136,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.005398464356126,6.845293383304464,63.17,32.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,323,-1208.947792134073,43598.19057525331,0,0,1192.672681554654 -1497,1860,3373,3374,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.149459697625129,9.222983936863256,0,5,4,6.624658083344951,0,-9,-9,2019,10,0,39,37,1,0,0,21.01480560360293,21.01480560360293,0,0,0,0,0,0,0,0,9.027440577488775,0,57.16,56.15,54.1,59.11,8.333333333333334,2,3,0,0,10,7,5,1,257,172255.2218022497,81500.13570856712,232719.0083055262,216427.3912138838,6542.529307046707 -1497,1860,3374,3373,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.938095925354578,8.824921494921277,0,5,-4,-69.24365244988161,0,2,1,2019,7,0,38,37,1,0,0,23.76740571826518,23.76740571826518,0,0,0,0,0,0,0,0,2.484163568952031,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,257,172255.2218022497,81500.13570856712,232719.0083055262,216427.3912138838,6542.529307046707 -1498,1861,3375,3376,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.595483681477416,6.775680294377636,48,2,-76.11750037235453,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.167359840770821,6.496563587925126,54.96,53.17,46.39,60.99,8.333333333333334,1,1,0,0,0,6,3,0,343,1410860.819302338,738170.5248123393,197082.0869707259,0,2569.7626366498 -1498,1861,3376,3375,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.76469887120612,7.601023822350206,48,-2,-86.63017543671404,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.309067994754756,7.458434491074759,46.39,60.99,54.96,53.17,6.666666666666667,1,1,0,0,4,6,3,0,343,1410860.819302338,738170.5248123393,197082.0869707259,0,2569.7626366498 -1499,1862,3377,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.036809974096544,6.505811717817422,0,0,-942.0196165449506,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.990747148306492,0,0,1,1,0,5.595155297653408,6.489553971402346,58.32,50.22,-9,-9,10,1,1,0,0,0,6,2,1,653,-42695.42097718782,46483.88866735388,44242.3473714315,6373.54967523332,1312.458650719318 -1500,1863,3378,3379,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.271230101253312,5.701465323671467,0,8,-4,-53.33527416202803,0,1,2,2019,8,1,25,25,1,1,0,1.752003109866463,1.752003109866463,0,0,0,0,0,0,0,0,6.766206608748474,0,53.22,52.7,57.33,53.46,8.333333333333334,1,1,0,0,11,12,3,1,564.5,257031.461815273,15587.65179275158,278535.5802258831,0,2831.683581048112 -1500,1863,3379,3378,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.939520722667224,7.981925445220943,8,4,37.1026780631394,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.791855561817167,7.307246895993184,57.33,53.46,53.22,52.7,8.333333333333334,1,1,0,0,8,12,3,1,564.5,257031.461815273,15587.65179275158,278535.5802258831,0,2831.683581048112 -1501,1864,3380,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-976.2425133181408,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,.1517449544960403,0,1,1,0,0,0,60.06,34.62,-9,-9,10,1,1,0,0,0,9,1,1,568,-44252.80103535881,0,0,0,470.284506981467 -1502,1865,3381,-9,3382,-9,1,0,29,0,0,0,1,1,-9,0,5,8.783028755521684,8.743967832636278,0,0,0,-1057.274481468294,-9,3,3,2019,7,1,35,0,1,1,0,22.64381880986527,22.64381880986527,0,0,0,0,0,1,1,0,.4749294114711872,0,62.39,56.71,-9,-9,10,2,3,0,0,5,8,5,1,1340,-183903.5516327438,-41945.24859756992,0,0,2245.251672454381 -1502,1866,3382,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.3397797853768,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,26.62791058061311,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,8,1,1,231,253562.38649837,0,156115.177812816,0,1465.548800839508 -1502,1867,3383,-9,3382,-9,1,0,37,0,0,0,1,1,-9,0,3,0,0,0,0,0,-943.4360041021604,-9,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.04,51.3,-9,-9,8.333333333333334,2,3,1,1,0,8,1,1,1431,-20434.75659383661,0,0,0,0 -1502,1868,3384,3385,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,0,0,0,1,-13,36.86904334381709,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,2,1,474.5,-22401.12261948337,0,0,0,970.0654706998085 -1502,1868,3385,3384,3382,-9,1,1,42,0,0,0,2,2,-9,0,4,6.979689160869235,7.22020307885454,0,1,13,-4.844423577522446,-9,3,-9,2019,9,0,20,0,1,1,0,5.277341895141989,5.277341895141989,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,1,0,8,2,1,474.5,-22401.12261948337,0,0,0,970.0654706998085 -1502,1869,3386,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.020082467506867,8.143957304393167,0,0,0,-967.6276744254159,-9,-9,-9,2019,7,0,35,0,1,0,0,10.25338974085948,10.25338974085948,0,0,0,0,0,1,1,0,0,0,57.34,47.92,-9,-9,8.333333333333334,2,3,0,0,1,8,4,1,827,61135.1666411246,21784.27478035787,0,0,1387.342188084425 -1502,1870,3387,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-938.9536001777697,-9,-9,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.56,52.46,-9,-9,8.333333333333334,2,3,0,0,2,8,1,1,131,-16101.81540251571,0,0,0,333.2709124422931 -1502,1871,3388,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1007.681644603646,-9,-9,-9,2019,34,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,5,2,3,0,0,1,8,1,1,459,221346.178369648,0,0,0,315.4057995999809 -1502,1872,3389,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.449706298757294,8.061780615744555,0,0,0,-1025.575270207224,-9,-9,-9,2019,9,0,46,0,1,1,0,9.053988802855825,9.053988802855825,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,7,2,3,0,0,8,8,4,1,591,324980.3145488401,259903.4168906568,0,0,2006.548747282348 -1502,1873,3390,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1078.979634028369,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,2,3,0,0,0,8,1,1,441,12417.65263960381,0,0,0,0 -1503,1874,3391,3392,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.258915515565434,7.304672279743195,49,3,-83.84981967827518,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.936519886202174,7.334944988568301,46.56,37.03,57.09,46.7,8.333333333333334,1,1,0,0,0,4,2,1,1958,764092.1346504332,124931.8415726191,192277.3434872507,0,1611.807319677852 -1503,1874,3392,3391,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,5.476769497913573,5.206475754631062,8,-3,90.01141563219942,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.689359340984446,5.625625017013082,57.09,46.7,46.56,37.03,8.333333333333334,1,1,0,0,0,4,2,1,1958,764092.1346504332,124931.8415726191,192277.3434872507,0,1611.807319677852 -1504,1875,3393,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.176017386285087,8.498373168025486,0,0,0,-876.3122860171242,0,3,3,2019,25,12,38,38,1,12,0,11.12390159786329,11.12390159786329,0,0,0,0,0,1,1,0,1.47437193822127,0,26.07,55.66,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,506,65256.64181389432,-62459.43204914768,0,0,1539.288940183355 -1505,1876,3394,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.722015892089003,7.100521124236296,0,0,-1039.183493696396,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,3.061131463625415,0,27.959961172252,0,1,1,0,0,6.861943836618801,46.79,34.69,-9,-9,5,1,1,0,0,0,2,2,1,1135,261980.0553903729,164069.0077149903,146088.8040083841,0,1763.210318514821 -1506,1877,3395,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.560758318189122,7.731683690198937,0,0,0,-1080.495753725641,0,3,3,2019,12,0,50,47,1,2,0,5.410256131255541,5.410256131255541,0,0,0,0,0,0,0,0,0,0,47,50,-9,-9,7,1,1,0,0,4,2,3,0,573,86033.08199925793,128670.6019872786,0,0,1220.280673634034 -1507,1878,3396,3397,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,41,-3,-89.85312688324585,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.392618646344574,0,57.33,53.46,60.28,43.74,8.333333333333334,1,1,0,0,8,5,3,1,228,806625.3736835576,467536.8142017829,237468.2663857455,13211.78224618709,714.8082950045987 -1507,1878,3397,3396,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.642845325569792,7.825013603931778,41,3,128.5228101554757,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.899720957704155,7.748126396771863,60.28,43.74,57.33,53.46,8.333333333333334,1,1,0,0,8,5,3,1,228,806625.3736835576,467536.8142017829,237468.2663857455,13211.78224618709,714.8082950045987 -1507,1879,3398,-9,3396,3397,1,1,31,0,0,0,2,2,-9,0,4,7.683733633125291,7.476879883617719,0,0,0,-979.3350534974406,0,2,2,2019,3,0,24,26,1,0,0,8.079843998637566,8.079843998637566,0,0,0,0,0,0,0,0,2.33037756171291,0,52.31,58.29,-9,-9,10,1,1,0,0,8,5,3,1,267,183817.0335455364,-9064.507354298854,0,0,738.2864109359524 -1508,1880,3399,-9,-9,-9,1,0,53,0,2,0,3,3,-9,0,4,7.733373782236292,7.544805711241472,0,0,0,-945.1720049290351,0,-9,-9,2019,17,4,18,40,1,4,0,16.55657301924462,16.55657301924462,0,0,0,0,0,1,1,0,0,0,43.59,58.37,-9,-9,6.666666666666667,1,1,0,0,6,11,3,1,1341,168589.0284117474,48940.62990661804,107330.5316882787,0,1633.129614006908 -1508,1880,3400,-9,3399,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.1920779287219,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,3,1,1341,168589.0284117474,48940.62990661804,107330.5316882787,0,1633.129614006908 -1508,1880,3401,-9,3399,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.7170187129487,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,1341,168589.0284117474,48940.62990661804,107330.5316882787,0,1633.129614006908 -1509,1881,3402,3403,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.072405131155936,8.453328260106726,7.235949441851083,29,-3,31.62695172399071,0,3,2,2019,9,0,37,37,1,0,0,8.309575280753853,8.309575280753853,0,0,0,0,0,0,0,0,4.632987699357579,7.469899319367267,57.16,56.15,32.71,65.81,8.333333333333334,1,1,0,0,7,2,5,1,633,1617616.556292361,1035312.912462024,353681.3481401779,0,4050.838128652518 -1509,1881,3403,3402,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.273830227249096,8.261204819833729,0,30,3,83.95612743841721,0,3,3,2019,23,11,41,41,1,11,0,13.03650264466061,13.03650264466061,0,0,0,0,0,0,0,0,3.70623956168014,0,32.71,65.81,57.16,56.15,5,1,1,0,0,9,2,5,1,633,1617616.556292361,1035312.912462024,353681.3481401779,0,4050.838128652518 -1510,1882,3404,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-874.3366403497575,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,99.82198883854176,0,940.2682943347958,0,1,1,0,0,0,44.27,18.13,-9,-9,10,1,1,0,0,0,6,1,0,1053,133199.6539849879,0,34133.12891610325,0,444.6182570951896 -1511,1883,3405,3406,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.135091299292178,8.585404644470843,57,3,74.50930192656399,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.487618324396835,8.036748876247449,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,2331,1195469.621622183,450549.0389653601,407188.4856870366,0,3016.303376255821 -1511,1883,3406,3405,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,-3,-12.55781553896712,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.154448225628347,0,57.16,56.15,56.58,49.75,10,1,1,0,0,0,10,3,1,2331,1195469.621622183,450549.0389653601,407188.4856870366,0,3016.303376255821 -1512,1884,3407,3408,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.186001145086658,8.255577264063845,0,18,-3,-20.90496930560688,0,2,2,2019,9,0,37,42,1,0,0,11.74875252768378,11.74875252768378,0,0,0,0,0,1,1,0,0,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,9,9,5,0,302,1255101.443152606,340207.2540318713,911421.423267031,598783.6725338349,3931.786134260309 -1512,1884,3408,3407,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,9.051297800568825,8.96629910732778,0,7,3,-18.40159219108606,-9,-9,-9,2019,6,0,38,0,1,0,0,20.13242564986007,20.13242564986007,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.33,53.46,10,1,1,0,0,10,9,5,0,302,1255101.443152606,340207.2540318713,911421.423267031,598783.6725338349,3931.786134260309 -1513,1885,3409,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,3,0,0,0,0,0,-932.3421200759221,-9,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,1.666666666666667,1,1,1,0,5,2,1,0,356,18813.04467550675,0,0,0,206.8372016286933 -1514,1886,3410,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1100.355719832473,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,38.66,21.8,-9,-9,3.333333333333333,2,3,1,1,7,6,1,1,620,-70401.15716141059,0,0,0,772.2315553728679 -1514,1887,3411,-9,3410,-9,1,0,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1107.591596218845,0,3,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,36.48,37.64,-9,-9,5,2,3,1,1,1,6,2,1,3572,102820.2075114951,0,0,0,442.3324146798903 -1514,1888,3412,-9,3410,-9,1,1,29,0,0,0,3,3,-9,0,4,8.057326486527039,8.041747963549181,0,0,0,-1002.544999834276,0,3,3,2019,7,0,35,50,1,0,1,9.93334095670324,9.93334095670324,0,0,0,0,0,1,1,0,0,0,45.09,58.82,-9,-9,8.333333333333334,2,3,0,0,3,6,4,1,747,87356.62160306842,0,0,0,1682.070893319071 -1514,1889,3413,-9,3410,-9,1,0,26,0,0,0,2,2,-9,0,3,8.590235392962676,8.399312424280227,0,0,0,-930.1491054609555,0,2,-9,2019,7,1,39,0,1,1,1,16.15296721137445,16.15296721137445,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,5,2,3,0,0,4,6,5,1,618,95758.97532365272,-128400.4179983223,0,0,2883.544899977646 -1514,1890,3414,-9,3410,-9,1,1,23,0,0,0,2,2,-9,0,4,8.141022606286739,8.096096541717399,0,0,0,-983.6347762396475,0,2,-9,2019,11,1,58,58,1,1,1,5.513326165036891,5.513326165036891,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,1.666666666666667,2,3,0,0,3,6,4,1,1293,122515.2361896967,-89379.92792825554,0,0,854.495773594227 -1514,1891,3415,-9,3410,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1005.19026089382,-9,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.4,57.44,-9,-9,3.333333333333333,2,3,1,0,0,6,1,1,343,0,0,0,0,76.22856762861639 -1515,1892,3416,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.299172111276135,8.566902207325651,0,0,0,-993.6610257426888,0,2,1,2019,6,0,45,45,1,0,0,12.17819909696909,12.17819909696909,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,919,200562.4598125776,159693.9881313714,64021.60979417995,0,2559.63508759489 -1516,1893,3417,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.3495480339848,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,17.38969937750038,0,0,1,1,0,0,0,42.6,44.91,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,495,-182062.2675233553,0,0,0,1154.509450204506 -1516,1894,3418,-9,3417,-9,1,0,60,0,0,0,1,1,-9,1,2,0,0,0,0,0,-964.1333772210647,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.68,31.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1055,33072.18268584073,160974.7012326913,28899.37901829329,0,382.6827927661878 -1517,1895,3419,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,8.987569638413023,8.720650328703369,0,0,-899.3122870421502,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.628593841739876,8.988632389158337,61.26,51.57,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,508,881562.1067121772,648150.5641286112,214647.6192515245,0,4378.742767496497 -1518,1896,3420,3421,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,37,-3,159.2776265386254,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.404682126320407,0,53.24,36.78,47.21,44.69,8.333333333333334,1,1,0,0,0,10,5,1,795.5,2135349.244755602,2058610.770510706,204899.8244350108,14500.24608773757,5532.179962648592 -1518,1896,3421,3420,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,9.117380830981936,9.300839027672929,10,3,-60.63907132034497,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.761066250432689,8.977873137872084,47.21,44.69,53.24,36.78,8.333333333333334,1,1,0,0,10,10,5,1,795.5,2135349.244755602,2058610.770510706,204899.8244350108,14500.24608773757,5532.179962648592 -1519,1897,3422,3423,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.272949637657591,7.434132250752427,6.11507306358527,8,-10,-95.38499376028119,0,3,2,2019,8,0,21,21,1,0,0,7.017681258250994,7.017681258250994,0,0,0,0,0,1,1,0,6.093947423310724,0,47.62,56.48,48.58,37.56,8.333333333333334,1,1,0,0,9,7,3,0,312.3333333333333,143691.1492939223,16010.04463800719,254905.7139432005,38652.92808120043,3062.40336215584 -1519,1897,3423,3422,-9,-9,1,1,54,0,2,0,2,2,-9,0,2,7.579082566846107,8.113719946852513,6.643325431948087,8,10,15.30267407909437,0,-9,-9,2019,13,2,40,45,1,2,0,7.144568670614082,7.144568670614082,0,0,0,0,0,1,1,0,7.435150160944402,0,48.58,37.56,47.62,56.48,8.333333333333334,1,1,0,0,3,7,3,0,312.3333333333333,143691.1492939223,16010.04463800719,254905.7139432005,38652.92808120043,3062.40336215584 -1519,1897,3424,-9,3422,3423,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.649436577155,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,3,0,312.3333333333333,143691.1492939223,16010.04463800719,254905.7139432005,38652.92808120043,3062.40336215584 -1520,1898,3425,3426,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.818012121413767,7.708635477433915,0,6,-3,-36.66557225693178,0,2,2,2019,6,0,47,15,1,0,0,6.67342567433111,6.67342567433111,0,0,0,0,0,0,0,0,2.807193606431424,0,57.16,56.15,52.38,55.95,5,1,1,0,0,11,4,4,0,456,87513.1983992085,3918.308009916826,0,0,1716.346918583055 -1520,1898,3426,3425,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.339649222426208,7.219704546328801,0,6,3,-37.68606263337753,0,-9,-9,2019,8,0,35,40,1,0,0,4.822424310856048,4.822424310856048,0,0,0,0,0,0,0,0,0,0,52.38,55.95,57.16,56.15,5,2,3,0,0,5,4,4,0,456,87513.1983992085,3918.308009916826,0,0,1716.346918583055 -1521,1899,3427,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,8.722893105419603,8.608884420533869,0,0,-953.5908348219174,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,7.975335849120205,6.602581835619028,66.4522751363168,0,1,1,0,6.655020713188849,8.37253769561717,58.57,40.92,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,190,760169.3400260224,247122.1862322403,282268.2612994818,0,3804.36934869702 -1522,1900,3428,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.165234396487869,7.059783764825315,0,0,-962.9621049135832,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.827431069275291,44.51,49.63,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,1703,366920.3205303056,397741.311394654,310604.8431929442,0,1191.213731397517 -1523,1901,3429,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.302241876681,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,2.019441075909809,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,1,0,2,1,0,222,0,0,0,0,1500.565119407428 -1524,1902,3430,-9,-9,-9,1,0,26,0,0,0,1,1,1,0,4,8.174306528032144,8.165253034299067,0,0,0,-1037.36112411935,-9,1,1,2019,8,0,39,0,1,0,0,10.65571490468717,10.65571490468717,0,0,0,0,0,0,0,0,.0763856750701495,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,1,4,0,262,149765.6184134282,44604.08627203261,122991.1293541531,44013.54764121061,1353.765544109991 -1525,1903,3431,3433,-9,-9,1,0,37,0,1,0,1,1,-9,1,2,0,0,0,5,-6,95.29599021669775,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39.73,43.15,40.94,58.35,3.333333333333333,4,5,0,0,0,6,5,0,489.3333333333333,1142404.829357949,894058.7763347741,137866.279620184,75924.08527613507,3398.069275484493 -1525,1903,3432,-9,3431,3433,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.129816672601,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,0,489.3333333333333,1142404.829357949,894058.7763347741,137866.279620184,75924.08527613507,3398.069275484493 -1525,1903,3433,3431,-9,-9,1,1,43,0,1,0,3,3,-9,0,3,9.347017549990685,9.533446956680848,0,5,6,-15.56658698307722,0,-9,-9,2019,9,0,45,44,1,0,0,28.59773035414184,28.59773035414184,0,0,0,0,0,1,1,0,0,0,40.94,58.35,39.73,43.15,3.333333333333333,4,2,0,0,6,6,5,0,489.3333333333333,1142404.829357949,894058.7763347741,137866.279620184,75924.08527613507,3398.069275484493 -1526,1904,3434,3435,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.371802106561555,6.192458987215345,49,-2,-24.59392431874863,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.03436957052941,6.234137228095346,61.99,34.03,58.76,52.91,8.333333333333334,1,1,0,0,0,9,4,1,767,881944.0550307537,510011.385296221,378390.6261289938,0,4432.544789158072 -1526,1904,3435,3434,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.882534837955247,8.526736389647628,49,2,-21.84843144146303,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.159695500931388,7.651195103768631,58.76,52.91,61.99,34.03,10,1,1,0,0,6,9,4,1,767,881944.0550307537,510011.385296221,378390.6261289938,0,4432.544789158072 -1527,1905,3436,-9,-9,-9,1,1,68,0,6,0,2,2,-9,0,5,5.000136255478008,6.672478154132707,6.262922452918929,0,0,-1041.431471708897,0,-9,-9,2019,8,1,25,32,1,1,0,.6950444734404932,.6950444734404932,0,0,0,0,2,1,1,0,7.544166931065357,6.723853265335224,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,10,4,2,1,577,934856.0107047803,163315.7950687213,348619.0092799385,0,531.7928548268329 -1527,1906,3437,3438,-9,3436,1,1,42,0,6,0,2,2,-9,0,4,8.121471875555223,8.434361992567625,0,7,4,6.462109881334128,0,-9,2,2019,9,0,45,45,1,0,0,11.32814449587293,11.32814449587293,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,10,4,3,1,289,114886.2167289951,185440.0980410124,0,0,4575.505029136506 -1527,1906,3438,3437,-9,-9,1,0,38,0,6,0,2,2,-9,0,4,6.746264898407846,7.3415824746847,5.907305151337953,7,-4,30.84135965281012,0,1,1,2019,14,2,20,35,1,2,0,4.464335493138194,4.464335493138194,0,0,0,0,0,1,1,0,6.727872185053105,0,48.28,60.18,54.2,57.49,5,1,1,0,0,8,4,3,1,289,114886.2167289951,185440.0980410124,0,0,4575.505029136506 -1527,1906,3439,-9,3438,3437,1,0,16,0,6,1,2,0,0,0,3,0,0,0,0,0,-902.4603019950196,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,29.89,57.78,-9,-9,3.333333333333333,1,1,0,0,1,4,3,1,289,114886.2167289951,185440.0980410124,0,0,4575.505029136506 -1527,1906,3440,-9,3438,3437,1,1,16,0,6,1,2,0,0,0,4,0,0,0,0,0,-970.076314988801,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,1.579138019009545,0,1,1,0,0,0,35.25,62,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,289,114886.2167289951,185440.0980410124,0,0,4575.505029136506 -1527,1906,3441,-9,3438,3437,1,1,11,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1059.749407665298,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,289,114886.2167289951,185440.0980410124,0,0,4575.505029136506 -1528,1907,3442,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,8.415141188037373,8.172235581552421,0,0,0,-884.3623262809833,0,2,1,2019,22,9,75,65,1,9,0,6.488823188076434,6.488823188076434,0,0,0,0,0,0,0,0,0,0,29.82,39.47,-9,-9,5,1,1,0,1,8,13,4,0,2015,67668.28592278322,2264.460425046374,0,0,1553.733871167427 -1529,1908,3443,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.041489195287242,7.571312737842438,6.089643249254101,0,0,-960.2729149929069,0,3,3,2019,15,3,22,25,1,3,0,5.970023091013495,5.970023091013495,0,0,0,0,7,0,0,0,.476093354294279,6.266199883605494,49.44,54.26,-9,-9,5,1,1,0,0,7,2,3,0,1195,397858.0666227426,331179.1491442799,145638.3153904995,0,950.2438043818361 -1530,1909,3444,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.598871299486286,7.502938558294606,0,0,-1064.581208354734,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.55050527411553,9.588382459294021,22.00822259760033,0,1,1,0,0,7.865428076910157,65.53,28.23,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,456,639885.2993546664,313726.0532255894,257945.8781377876,0,1345.057149908352 -1531,1910,3445,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.004808835609115,6.913640590969889,0,0,-1047.890696348013,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.867742808470394,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,141,165255.4614007506,133825.9003992081,0,0,1918.583804464859 -1532,1911,3446,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1137.781190684022,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.271942530184512,0,42.81,39.77,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,362,93962.84427662674,0,0,0,311.2580345373318 -1533,1912,3447,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.390858411180867,6.373345693727066,0,0,-1045.25288274304,0,3,3,2019,34,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.546633705439124,6.355509422961299,16.04,23.99,-9,-9,5,1,1,0,0,0,9,2,1,773,124804.887344266,84121.01987982067,152657.0643684552,0,701.2351040078776 -1534,1913,3448,3449,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.646432803459739,6.696629034859601,47,-3,-42.67150428616973,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.362950883305223,6.555685385427587,57.06,57.76,63.17,32.94,10,1,1,0,0,0,8,2,1,343,264378.23758681,127977.1780617629,181564.4105242183,0,1618.677204814845 -1534,1913,3449,3448,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.837386680716786,5.410888491304706,47,3,4.956530415338672,0,3,3,2019,4,0,0,8,4,0,0,0,0,1,0,0,0,0,1,1,0,6.284903844117776,5.619510350761827,63.17,32.94,57.06,57.76,8.333333333333334,1,1,0,0,8,8,2,1,343,264378.23758681,127977.1780617629,181564.4105242183,0,1618.677204814845 -1535,1914,3450,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,3.994447201831662,3.729145284459662,0,0,-1018.016312659356,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.574758146647138,4.031084107300318,60.02,56.42,-9,-9,10,1,1,0,0,0,13,2,1,832,69884.4184695916,73679.96105266019,0,0,768.7432232796141 -1536,1915,3451,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.852155759080346,7.663516710923505,0,0,0,-1088.912469681955,0,3,2,2019,7,0,44,42,1,0,0,7.989828706642305,7.989828706642305,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,937,353132.6306092708,213257.1843696699,0,0,1252.31329313151 -1537,1916,3452,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,4.584058473519299,4.760503742276122,3.90134306451031,0,0,-996.4516311223125,0,3,3,2019,12,1,5,4,1,1,0,2.342374502167839,2.342374502167839,0,0,0,0,0,1,1,0,5.157716563891563,3.738874226078718,50.2,49.87,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,603,884223.2441859704,85280.77106805,809755.2558097848,46720.86273187565,774.8869842947516 -1538,1917,3453,3454,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.473155072964746,7.263841026019991,10,18,-2.243211672298075,0,3,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.153171532092498,33.07,19.72,54.96,53.17,3.333333333333333,1,1,0,0,0,8,3,0,598,1182524.367085895,467420.5453365468,609941.0279971728,0,2499.327958144409 -1538,1917,3454,3453,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.722037289949121,6.872117968545757,10,-18,-142.5262148968503,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.759268631169375,54.96,53.17,33.07,19.72,8.333333333333334,1,1,0,0,11,8,3,0,598,1182524.367085895,467420.5453365468,609941.0279971728,0,2499.327958144409 -1538,1918,3455,3456,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.307536150042218,8.606076686040923,0,5,-1,-64.25919429408123,0,-9,-9,2019,17,6,35,35,1,6,0,15.51344542567736,15.51344542567736,0,0,0,0,0,1,1,0,0,0,33.07,55.18,38.34,62.12,6.666666666666667,1,1,0,0,4,8,5,0,639.5,185292.7167935442,-36531.61295362473,417488.5601168757,191753.7127843928,2982.468284002333 -1538,1918,3456,3455,3454,3453,1,0,27,0,0,0,1,1,1,0,4,7.781669699886043,8.169130026768904,0,5,1,48.38313910158176,-9,2,3,2019,10,1,35,0,1,1,0,10.18327004362133,10.18327004362133,0,0,0,0,0,1,1,0,0,0,38.34,62.12,33.07,55.18,8.333333333333334,1,1,0,0,9,8,5,0,639.5,185292.7167935442,-36531.61295362473,417488.5601168757,191753.7127843928,2982.468284002333 -1539,1919,3457,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1009.610066762982,-9,-9,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,1,0,3,5,2,0,1549,64436.44512168596,0,0,0,0 -1540,1920,3458,3459,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.612683329386048,8.880090244575682,0,20,13,-10.8387288784703,0,2,2,2019,6,0,37,37,1,0,0,16.08301562488303,16.08301562488303,0,0,0,0,2,1,1,0,4.662804045050189,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,1,5,1,734.5,441984.2861862137,59278.31565331213,351888.2491807527,84897.59573804168,4789.530590420161 -1540,1920,3459,3458,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.697828979308509,8.749043626718885,0,20,-13,-49.49215180352216,0,2,2,2019,12,0,40,40,1,0,0,14.67431287193319,14.67431287193319,0,0,0,0,7,1,1,0,3.860988708815212,0,51.24,58.84,54.2,57.49,5,1,1,0,0,11,1,5,1,734.5,441984.2861862137,59278.31565331213,351888.2491807527,84897.59573804168,4789.530590420161 -1540,1921,3460,-9,3458,3459,1,0,18,0,0,0,2,2,1,0,4,6.437462405369334,6.374919016133749,0,0,0,-1052.03462498858,-9,1,1,2019,15,5,10,0,1,5,1,6.133249451676186,6.133249451676186,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,1,2,1,936,0,0,0,0,239.9631506477546 -1541,1922,3461,3462,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.129800203834591,7.761767997667032,0,12,-11,33.32277096932823,0,3,3,2019,10,0,40,45,1,1,0,9.246256489528898,9.246256489528898,0,0,0,0,0,0,0,0,.5654086957618448,0,50,56,50.38,58.02,7,2,3,0,0,1,2,5,0,551,1350852.921240838,1031952.831719424,167544.5649903182,0,3369.165301046697 -1541,1922,3462,3461,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.784718514944638,8.496929189353098,0,12,11,77.8639374078026,0,3,3,2019,8,1,55,56,1,1,0,11.55573794590275,11.55573794590275,0,0,0,0,0,0,0,0,0,0,50.38,58.02,50,56,8.333333333333334,1,1,0,0,11,2,5,0,551,1350852.921240838,1031952.831719424,167544.5649903182,0,3369.165301046697 -1542,1923,3463,3464,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,7.145927598177961,6.854428913662943,28,-10,64.38214773322974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.833442674546425,6.788238232376012,55.19,54.26,54,46,10,1,1,0,0,0,11,2,1,242.5,597893.1329136416,162704.0653454877,212024.7679938428,0,1967.638233949384 -1542,1923,3464,3463,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,11,10,91.50202188901129,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.517335067854661,0,54,46,55.19,54.26,8,1,1,0,0,0,11,2,1,242.5,597893.1329136416,162704.0653454877,212024.7679938428,0,1967.638233949384 -1543,1924,3465,-9,3466,3467,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.205447006855,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.86,50.57,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1045.5,1902741.350544107,1776312.204386926,277181.8741692913,127351.9818187631,3504.251063873913 -1543,1924,3466,3467,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,0,0,0,18,2,-136.0073807861156,0,3,3,2019,19,7,0,31,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,51.15,53.52,6.666666666666667,1,1,1,0,13,10,4,1,1045.5,1902741.350544107,1776312.204386926,277181.8741692913,127351.9818187631,3504.251063873913 -1543,1924,3467,3466,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.299020092729375,9.167004025980418,0,4,-2,15.18286974856074,0,2,3,2019,8,2,43,42,1,2,0,20.72800089342807,20.72800089342807,0,0,0,0,0,1,1,0,0,0,51.15,53.52,39.08,57.81,8.333333333333334,1,1,0,0,13,10,4,1,1045.5,1902741.350544107,1776312.204386926,277181.8741692913,127351.9818187631,3504.251063873913 -1543,1924,3468,-9,3466,3467,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.349348633177,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,1045.5,1902741.350544107,1776312.204386926,277181.8741692913,127351.9818187631,3504.251063873913 -1544,1925,3469,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.231033541896629,8.165655984928474,0,0,0,-1099.726484865408,0,2,2,2019,12,1,40,38,1,1,0,7.891927483043908,7.891927483043908,0,0,0,0,0,0,0,0,3.996107874638463,0,49.69,52.99,-9,-9,8.333333333333334,2,3,0,0,8,11,4,0,222,112348.8350563517,39696.58772128156,0,0,1984.972002111588 -1545,1926,3470,3471,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.700371024355778,8.747122290772797,7.47053394250075,24,-14,-28.98503377333362,0,3,2,2019,9,1,30,5,1,1,0,10.0422930089605,10.0422930089605,0,0,0,0,0,0,0,0,0,7.825893469314529,62.43,29.37,50.52,47.59,8.333333333333334,1,1,0,0,10,9,4,1,775.5,1258495.325839798,412077.9429845022,509995.0159554982,64454.49578041931,2808.369025540213 -1545,1926,3471,3470,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,7.481613437489596,7.315769068481131,24,14,-5.181894266617399,0,2,2,2019,11,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.847026121382198,50.52,47.59,62.43,29.37,5,1,1,0,1,11,9,4,1,775.5,1258495.325839798,412077.9429845022,509995.0159554982,64454.49578041931,2808.369025540213 -1545,1927,3472,-9,3470,3471,1,1,20,0,0,0,2,2,-9,0,4,7.240434413860892,7.230081265715717,0,0,0,-1060.729319182263,0,2,2,2019,9,0,25,25,1,0,1,7.134187780039364,7.134187780039364,0,0,0,0,0,0,0,0,7.285946972076816,0,52.23,55.6,-9,-9,1.666666666666667,1,1,0,0,4,9,3,1,2235,-145671.8734502632,0,0,0,1270.398695795603 -1546,1928,3473,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,7.111264330790772,7.270310576953063,0,0,-1130.028595494457,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8846474974849,7.067402015227398,57.06,57.76,-9,-9,0,1,1,0,0,0,5,3,1,588,244981.6248042111,197076.368479645,145463.2465303426,0,1021.271041489842 -1547,1929,3474,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.422810505780225,8.716604531879298,7.382612450471736,0,0,-1088.609648753618,0,2,2,2019,8,0,42,47,1,0,0,13.01127738757495,13.01127738757495,0,0,0,0,0,0,0,0,0,7.720173382182243,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,7,5,5,1,419,927810.5079842812,889490.1911954252,146065.4058939865,166105.9797013977,3055.787750301605 -1548,1930,3475,3476,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.250402464666824,7.250320432747869,10,4,-64.86796503573068,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.537768156280385,7.387850695795992,49.13,51.4,49,47,10,1,1,0,0,7,2,2,1,385,191730.0821204838,125628.472411326,0,0,1348.984723515992 -1548,1930,3476,3475,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.280506156296656,6.176735270489476,10,-4,-16.11592347784577,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.005520350743732,49,47,49.13,51.4,7,4,1,0,0,0,2,2,1,385,191730.0821204838,125628.472411326,0,0,1348.984723515992 -1549,1931,3477,-9,-9,-9,1,0,47,1,2,0,1,1,-9,1,2,8.526691830677096,8.37836148395019,0,0,0,-977.0843142747381,0,2,2,2019,12,2,24,30,1,2,0,19.58853322245883,19.58853322245883,0,0,0,0,0,1,1,0,3.098596746236157,0,40.17,24.85,-9,-9,6.666666666666667,1,1,0,0,11,10,3,1,1002,62781.68481005179,15725.01070524682,0,0,3166.657794495316 -1549,1931,3478,-9,3477,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.661648690776,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,10,3,1,1002,62781.68481005179,15725.01070524682,0,0,3166.657794495316 -1549,1931,3479,-9,3477,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.361515716893,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,1002,62781.68481005179,15725.01070524682,0,0,3166.657794495316 -1550,1932,3480,3481,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.184601625069027,6.431532092083152,9,-10,16.95551533500528,0,2,-9,2019,7,0,0,0,4,0,0,0,0,1,1.718041809217508,2.175308519304844,18.58541204238394,120,1,1,0,0,6.303736534102908,60.45,30.52,34.76,26.01,8.333333333333334,1,1,0,0,1,10,2,0,501.5,17963.81146166744,148822.1288762799,0,0,2031.170682051836 -1550,1932,3481,3480,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.046888235170353,6.365922249366388,9,10,-23.50233547955868,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,14.85402231885784,46.25642036127268,111.726303025149,0,1,1,0,0,6.294836940888781,34.76,26.01,60.45,30.52,3.333333333333333,1,1,0,0,0,10,2,0,501.5,17963.81146166744,148822.1288762799,0,0,2031.170682051836 -1551,1933,3482,3483,-9,-9,1,1,26,1,1,0,2,2,-9,0,5,8.13149508660144,8.154220525061898,0,3,0,-24.70874960606597,0,-9,-9,2019,6,0,30,33,1,0,0,10.58090191696656,10.58090191696656,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,9,4,1,203,78157.57309040338,16345.51911978512,0,0,3118.070796221434 -1551,1933,3483,3482,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.789144772315652,7.740576128669555,0,3,0,30.84020628432727,0,-9,-9,2019,5,0,25,25,1,0,0,10.71637827599801,10.71637827599801,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,10,1,1,0,0,9,9,4,1,203,78157.57309040338,16345.51911978512,0,0,3118.070796221434 -1551,1933,3484,-9,3483,3482,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.6746144152028,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,203,78157.57309040338,16345.51911978512,0,0,3118.070796221434 -1552,1934,3485,3486,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,60,-3,86.42994130919799,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.452151613368188,0,57.16,56.15,54.85,53.03,10,1,1,0,0,0,11,3,1,855,442215.7490819989,295191.3835625757,0,0,2540.379078689492 -1552,1934,3486,3485,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,8.219229386912268,8.268910404162026,60,3,-27.73670867034855,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.549517351553222,7.970128306197354,54.85,53.03,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,855,442215.7490819989,295191.3835625757,0,0,2540.379078689492 -1553,1935,3487,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1051.711916557446,0,2,2,2019,3,0,0,12,4,0,0,0,0,0,0,0,0,0,1,1,0,1.396356712796502,0,58.19,26.04,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,421,-9524.347346160344,0,0,0,1089.393137696175 -1554,1936,3488,3489,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.796583655789862,8.138393184569919,1,3,104.5109767188968,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.882756478768971,60.12,54.8,58.72,51.29,8.333333333333334,1,1,0,0,0,10,3,1,521.5,767757.7732709385,301824.1139874847,275533.486651808,0,2211.863361532795 -1554,1936,3489,3488,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.356323524480276,5.096881922884164,1,-3,82.97416793165826,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.663978081926505,5.333680146410519,58.72,51.29,60.12,54.8,8.333333333333334,1,1,0,0,10,10,3,1,521.5,767757.7732709385,301824.1139874847,275533.486651808,0,2211.863361532795 -1555,1937,3490,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,5,0,7.732913690741873,7.634770915077216,0,0,-933.3153827475835,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.110299754500216,46.22,38.1,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1679,51601.28261796471,-19786.37263044948,0,0,2321.722129471343 -1556,1938,3491,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1009.664076854545,0,2,2,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,0,1,0,0,45.2,40.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1037,-84921.10161974118,0,0,0,1180.985313037225 -1557,1939,3492,3493,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,6.853527305037013,6.95771530223783,0,11,4,34.75725429517554,0,3,2,2019,14,0,16,16,1,3,0,6.19489505308639,6.19489505308639,0,0,0,0,0,0,0,0,0,0,28.3,56.39,37.59,51.94,5,2,3,0,0,10,5,3,0,343,301386.3738490533,292766.1160806317,78847.40873726357,51008.86419666452,1629.964941734319 -1557,1939,3493,3492,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,7.963295438899436,7.971229995782247,0,7,-4,-34.96217232407623,0,3,2,2019,11,0,44,50,1,0,0,7.918997946094674,7.918997946094674,0,0,0,0,0,0,0,0,0,0,37.59,51.94,28.3,56.39,6.666666666666667,2,3,0,0,8,5,3,0,343,301386.3738490533,292766.1160806317,78847.40873726357,51008.86419666452,1629.964941734319 -1558,1940,3494,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,1,0,0,0,0,0,-961.7599710963096,0,2,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,35.45,24.41,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,271,58678.31340141655,0,0,0,1390.388059195158 -1558,1941,3495,-9,3496,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-864.831134763479,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,1,0,842.5,-65317.26848487015,0,0,0,1596.298250767113 -1558,1941,3496,-9,3494,-9,1,0,20,1,1,0,2,2,1,1,3,0,0,0,0,0,-1031.197789537805,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,42.33,53.39,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,842.5,-65317.26848487015,0,0,0,1596.298250767113 -1559,1942,3497,3498,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,6.794924231963433,6.850992037358063,62,6,4.744048898847519,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,83.89077229785025,0,0,1,1,0,0,7.458579639623347,62.14,37.52,58.83,52.64,10,1,1,0,0,0,5,2,1,640.5,819372.9318300934,53633.9493400923,386648.8638006967,0,1928.128688158233 -1559,1942,3498,3497,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.480503849875904,6.402935578377861,10,-6,-155.2985574856918,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.249966224474027,0,0,1,1,0,0,6.715471614731942,58.83,52.64,62.14,37.52,10,1,1,0,0,0,5,2,1,640.5,819372.9318300934,53633.9493400923,386648.8638006967,0,1928.128688158233 -1560,1943,3499,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.899299904143461,7.827009044959272,0,0,0,-993.8010691207596,0,2,2,2019,24,9,37,38,1,9,0,10.48397146068091,10.48397146068091,0,0,0,0,0,0,0,0,1.506843916600686,0,37.41,38.15,-9,-9,8.333333333333334,1,1,0,1,11,5,4,1,1147,365306.1562805945,184729.5659006527,291665.4380067897,0,1186.176921098573 -1561,1944,3500,3502,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.859976882892807,8.22707156819046,0,24,-4,8.70856919284064,0,2,2,2019,12,0,35,35,1,0,0,10.21202523957519,10.21202523957519,0,0,0,0,0,1,1,0,0,0,38.57,64.48,43.02,57.64,5,1,1,0,0,13,10,3,1,605.75,-26344.20472088899,0,0,0,409.3883049649641 -1561,1944,3501,-9,3500,3502,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1076.681247839335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,3,1,605.75,-26344.20472088899,0,0,0,409.3883049649641 -1561,1944,3502,3500,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,23,4,80.68627822212493,0,1,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.02,57.64,38.57,64.48,6.666666666666667,1,1,1,0,12,10,3,1,605.75,-26344.20472088899,0,0,0,409.3883049649641 -1561,1944,3503,-9,3500,3502,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-927.2805523703469,0,2,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.365665679042309,0,53.39,52.35,-9,-9,10,1,1,0,0,1,10,3,1,605.75,-26344.20472088899,0,0,0,409.3883049649641 -1561,1945,3504,-9,3500,3502,1,1,19,0,1,0,2,2,-9,0,3,8.079258371209884,7.785594634269258,0,0,0,-1051.7207407476,0,2,2,2019,15,4,40,42,1,4,1,8.953034680557664,8.953034680557664,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,6.666666666666667,1,1,0,0,3,10,4,1,309,8718.072077396982,-17854.9000700601,0,0,1341.008895158365 -1562,1946,3505,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1042.58815975617,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,36.51,28.13,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,622,96557.19065643751,0,203136.6183615208,0,480.0782539430188 -1563,1947,3506,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.100300047216704,7.995224037024766,0,3,-5,-96.30860204755626,0,1,2,2019,11,0,78,42,1,0,0,6.155789835962594,6.155789835962594,0,0,0,0,0,0,0,0,2.827700096270283,0,51.77,58.57,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,659,337218.6042297037,172051.5607080009,284403.4793324409,127031.3802800961,1067.369886429507 -1563,1948,3507,-9,3506,-9,1,0,21,0,0,0,2,2,1,0,4,8.076140096236411,8.390447412550442,7.081960683473736,0,0,-983.1051538339318,-9,2,-9,2019,9,0,38,0,1,0,1,6.837535983301242,6.837535983301242,0,0,0,0,0,0,0,0,7.414198851693256,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,1,2,9,4,1,1349,-147105.5858088372,101209.8921825112,0,0,1437.773037477974 -1563,1949,3508,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.27944390430984,8.34244425136516,0,3,5,-81.42890087352669,0,-9,-9,2019,8,0,41,42,1,0,0,13.72232111195723,13.72232111195723,0,0,0,0,2,0,0,0,0,0,55.79,52.62,51.77,58.57,8.333333333333334,1,1,0,0,12,9,5,1,239,267431.8406436442,69620.56264859239,233811.9091132145,35536.62374425674,1981.148393583984 -1564,1950,3509,3510,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.497011982923208,7.730289709251252,0,3,-4,-68.53196528024354,0,-9,-9,2019,9,1,37,42,1,1,0,7.300873969864456,7.300873969864456,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,3,2,4,0,501,106637.8190886269,33485.34784071599,124408.0700190739,140955.8022850855,2070.216057024951 -1564,1950,3510,3509,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,7.977810184515748,7.887482707330991,0,3,4,-79.62460434155943,0,2,2,2019,2,0,38,47,1,0,0,7.478581079188491,7.478581079188491,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,0,501,106637.8190886269,33485.34784071599,124408.0700190739,140955.8022850855,2070.216057024951 -1565,1951,3511,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.567152043759209,7.502832100031593,0,0,-1077.745973605895,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.475428830193385,59.37,44.13,-9,-9,10,1,1,0,0,0,10,3,1,639,635855.2168763238,137702.3480709346,234377.5530186238,0,2116.953353887423 -1566,1952,3512,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.120840727519223,7.900034090778417,0,0,0,-1023.826161135332,-9,-9,-9,2019,7,0,35,0,1,0,0,8.108398311899707,8.108398311899707,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,8,3,1,327,34408.37703472299,0,0,0,991.4492931830982 -1566,1953,3513,3514,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.217875913822661,8.244684455558881,5.918341935129911,1,1,66.50687323662913,-9,-9,-9,2019,7,0,43,0,1,0,0,8.999875607223549,8.999875607223549,0,0,0,0,0,0,0,0,7.082921550940591,0,48.81,59.91,35.73,63.1,8.333333333333334,1,1,0,0,6,8,4,1,645,46552.16571374834,8014.815364375914,0,0,2711.187560728125 -1566,1953,3514,3513,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,6.62166425783317,6.719108485767862,0,1,-1,-31.96396986497253,-9,1,2,2019,19,6,11,0,1,6,0,9.449245951658185,9.449245951658185,0,0,0,0,0,0,0,0,0,0,35.73,63.1,48.81,59.91,6.666666666666667,1,1,0,0,7,8,4,1,645,46552.16571374834,8014.815364375914,0,0,2711.187560728125 -1567,1954,3515,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.520109929938588,8.423291134848739,0,0,0,-1027.397260894231,0,1,1,2019,9,2,37,37,1,2,0,13.10445560832106,13.10445560832106,0,0,0,0,0,0,0,0,3.66892536595203,0,37.95,62.73,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,553,3247096.442826002,1423006.931064024,687402.2411822845,0,2064.317169769676 -1568,1955,3516,-9,3518,3517,1,0,17,0,0,1,2,0,0,0,4,0,4.561987130337259,4.187350599884563,0,0,-897.8963067889704,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.064818774277247,0,43.2,51.94,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,614,1091730.312834982,776099.0057347189,239125.7322143708,0,4083.211802329239 -1568,1955,3517,3518,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.753921454610873,9.22047687179964,0,28,0,2.430616734171057,0,2,2,2019,10,1,48,42,1,1,0,13.28495786217547,13.28495786217547,0,0,0,0,2,1,1,0,0,0,54.79,55.86,46.1,59.99,8.333333333333334,1,1,0,0,10,2,5,1,614,1091730.312834982,776099.0057347189,239125.7322143708,0,4083.211802329239 -1568,1955,3518,3517,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.164733924735716,8.41553058754797,0,28,0,106.1478870303802,0,2,2,2019,23,11,40,42,1,11,0,7.605233608918168,7.605233608918168,0,0,0,1.38978393172696,0,1,1,0,0,0,46.1,59.99,54.79,55.86,6.666666666666667,1,1,0,0,10,2,5,1,614,1091730.312834982,776099.0057347189,239125.7322143708,0,4083.211802329239 -1568,1956,3519,-9,3518,3517,1,1,22,0,0,0,1,1,1,0,5,0,3.07636738319691,3.062057892568534,0,0,-951.9746284080288,-9,1,1,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,3.603889585734432,0,49.87,58.27,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,2001,-4571.156992433719,0,0,0,-201.0291362241626 -1568,1957,3520,-9,3518,3517,1,0,20,0,0,0,2,2,1,0,4,0,1.495309690595135,1.43663858179895,0,0,-1002.926547520425,-9,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,1.932020977989592,0,46,58,-9,-9,7,1,1,0,0,0,2,2,1,550,-54074.44546135367,0,0,0,370.0860023747468 -1569,1958,3521,3522,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.190325250158264,5.469040037374773,9,4,-16.38039081075303,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.910700595943336,5.269884165829257,58.15,52.91,52.31,40.62,8.333333333333334,1,1,0,0,9,8,2,1,2006.5,1382553.683563476,0,957084.9227436064,0,1379.564485750266 -1569,1958,3522,3521,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.39904352237088,6.904464341087772,9,-4,-6.133850819992476,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.507816340146047,52.31,40.62,58.15,52.91,6.666666666666667,1,1,0,0,9,8,2,1,2006.5,1382553.683563476,0,957084.9227436064,0,1379.564485750266 -1570,1959,3523,3524,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.166949424565232,8.300660535133909,22,2,-7.282901218003177,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.971641332019196,8.374554471167203,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,7,3,1,613,1648554.22273467,709985.0070581345,600810.7193826286,0,7209.942692754377 -1570,1959,3524,3523,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,22,-2,-38.17090429637479,0,2,2,2019,6,0,0,8,4,0,0,0,0,1,0,0,0,2,1,1,0,9.338098459705074,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,613,1648554.22273467,709985.0070581345,600810.7193826286,0,7209.942692754377 -1571,1960,3525,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,8.275575689837897,8.348052614493396,0,0,0,-1069.585373796808,0,2,2,2019,11,1,38,43,1,1,0,9.398510901267615,9.398510901267615,0,0,0,0,0,1,1,0,0,0,38.74,60.52,-9,-9,6.666666666666667,1,1,0,1,9,11,3,0,505,88320.897519819,13445.97374309645,0,0,1568.865227028631 -1572,1961,3526,3527,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.289644842833988,8.917962242375125,0,31,-1,113.6112479742884,0,2,2,2019,6,0,40,40,1,0,0,26.30508155871923,26.30508155871923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.89,54.32,8.333333333333334,1,1,0,0,10,7,5,1,883.5,1136318.645232329,879758.1371112601,412504.0996713346,26137.21142437933,5342.91952020323 -1572,1961,3527,3526,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.94529753926091,8.796232211078141,0,7,1,69.87757833486819,0,2,-9,2019,10,0,35,35,1,0,0,24.16308079659417,24.16308079659417,0,0,0,0,0,0,0,0,7.581959053397257,0,46.89,54.32,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,883.5,1136318.645232329,879758.1371112601,412504.0996713346,26137.21142437933,5342.91952020323 -1573,1962,3528,3529,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,8.838972700328565,8.551283822874931,0,8,2,-62.21407459316889,0,-9,-9,2019,12,0,43,43,1,0,0,11.34987118165783,11.34987118165783,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.5,40.07,10,1,1,0,0,13,9,4,1,1259.333333333333,246004.6658327667,127079.7548425791,266832.4729030554,111162.775164776,2939.287194561807 -1573,1962,3529,3528,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.769436592233014,7.47181665130072,0,8,-2,136.6387082879288,0,-9,2,2019,12,0,24,23,1,0,0,8.329897220781824,8.329897220781824,0,0,0,0,0,1,1,0,0,0,45.5,40.07,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,1259.333333333333,246004.6658327667,127079.7548425791,266832.4729030554,111162.775164776,2939.287194561807 -1573,1962,3530,-9,3529,3528,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-983.4904387948163,-9,2,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1259.333333333333,246004.6658327667,127079.7548425791,266832.4729030554,111162.775164776,2939.287194561807 -1574,1963,3531,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.765622204969498,8.803964060845347,0,0,0,-919.3419572003835,0,1,1,2019,16,7,44,43,1,7,0,16.05232203690115,16.05232203690115,0,0,0,0,0,0,0,0,0,0,48.18,44.49,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,327,29591.01238685905,51938.03147325757,0,0,2348.413457516354 -1575,1964,3532,-9,-9,-9,1,0,50,0,2,0,3,3,-9,0,4,6.99338678455311,6.760022772450499,0,0,0,-906.5591741645346,0,2,-9,2019,6,0,14,14,1,0,0,10.34838927897548,10.34838927897548,0,0,0,0,0,1,1,0,1.641271237449323,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,8,1,2,1,829.3333333333334,180912.3248366058,0,198651.3747238033,38146.58339935377,1326.388072460982 -1575,1964,3533,-9,3532,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.5155089793163,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,829.3333333333334,180912.3248366058,0,198651.3747238033,38146.58339935377,1326.388072460982 -1575,1964,3534,-9,3532,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1072.802391051163,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,1,829.3333333333334,180912.3248366058,0,198651.3747238033,38146.58339935377,1326.388072460982 -1576,1965,3535,3537,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,8.159705213485157,7.971855509611887,0,12,-3,23.12926869298473,0,1,1,2019,6,0,52,58,1,0,0,6.660647708364801,6.660647708364801,0,0,0,0,0,1,1,0,0,0,58.72,51.29,58.32,50.22,10,2,3,0,0,9,10,4,1,263.6666666666667,146759.5267768721,74642.77228420285,172704.5075051581,121898.559392219,3172.168805768031 -1576,1965,3536,-9,3537,3535,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.233465038822,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,10,4,1,263.6666666666667,146759.5267768721,74642.77228420285,172704.5075051581,121898.559392219,3172.168805768031 -1576,1965,3537,3535,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,8.299063752112342,8.43993532011512,0,12,3,153.9085839932007,0,2,2,2019,6,0,48,49,1,0,0,10.33692551074553,10.33692551074553,0,0,0,0,0,1,1,0,0,0,58.32,50.22,58.72,51.29,8.333333333333334,2,3,0,0,9,10,4,1,263.6666666666667,146759.5267768721,74642.77228420285,172704.5075051581,121898.559392219,3172.168805768031 -1577,1966,3538,3539,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,9,7,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.693372394189314,0,57.9,51.84,60.45,41.05,8.333333333333334,1,1,0,0,6,6,1,1,1278.5,35929.44072011152,72604.63527881062,0,0,1074.083066175388 -1577,1966,3539,3538,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,9,-7,0,0,3,2,2019,12,1,0,70,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.45,41.05,57.9,51.84,8.333333333333334,1,1,1,0,9,6,1,1,1278.5,35929.44072011152,72604.63527881062,0,0,1074.083066175388 -1578,1967,3540,-9,3541,-9,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1128.828214100292,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,2,0,427.6666666666667,14394.82913711667,21138.48115961493,0,0,2833.725002072956 -1578,1967,3541,-9,-9,-9,1,0,38,2,5,0,2,2,-9,1,4,6.118938714646339,6.186679064095015,0,0,0,-1037.842936569849,0,1,2,2019,12,0,12,0,1,0,0,4.55119595656473,4.55119595656473,0,0,0,0,114,1,1,0,0,0,45.03,53.83,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,427.6666666666667,14394.82913711667,21138.48115961493,0,0,2833.725002072956 -1578,1967,3542,-9,3541,-9,1,1,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-871.0457885939593,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,427.6666666666667,14394.82913711667,21138.48115961493,0,0,2833.725002072956 -1578,1968,3543,-9,3544,-9,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1111.518490452692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1023,74560.82667247384,0,0,0,448.3613823438036 -1578,1968,3544,-9,3541,-9,1,0,21,2,5,0,2,2,1,0,4,0,0,0,0,0,-999.0693871827212,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1023,74560.82667247384,0,0,0,448.3613823438036 -1578,1969,3545,-9,3541,-9,1,0,18,2,5,1,2,0,0,0,5,0,0,0,0,0,-1050.11346115524,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,1,1,0,280,144439.324831374,0,0,0,824.7682834577623 -1579,1970,3546,3547,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.243284931090605,7.296665206236074,0,28,-3,19.8617510584415,0,3,3,2019,14,3,18,18,1,3,0,9.770496249187524,9.770496249187524,0,0,0,0,0,0,0,0,2.415662530548272,0,30.58,57.62,42.35,30.78,3.333333333333333,1,1,0,0,8,11,4,1,1140.5,100402.4510844321,6187.437074781486,69608.80770373499,642.8703220634397,2406.032052573347 -1579,1970,3547,3546,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.433972528312802,8.474233991136616,0,28,3,-62.04413744832828,0,2,2,2019,21,9,50,53,1,9,0,10.10619960689714,10.10619960689714,0,0,0,0,0,0,0,0,1.212391868409747,0,42.35,30.78,30.58,57.62,3.333333333333333,1,1,0,0,7,11,4,1,1140.5,100402.4510844321,6187.437074781486,69608.80770373499,642.8703220634397,2406.032052573347 -1579,1971,3548,-9,3546,3547,1,0,22,0,0,0,1,1,-9,0,5,6.663299793154501,6.937104534044219,0,0,0,-1072.551676816691,0,2,2,2019,22,9,10,8,1,9,1,9.674229552901926,9.674229552901926,0,0,0,0,0,0,0,0,.4883935100533168,0,30.5,53.54,-9,-9,6.666666666666667,1,1,0,0,2,11,2,1,417,-185599.9319450024,0,0,0,9.750644968270365 -1580,1972,3549,3550,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.045459566037136,8.114398257744377,0,6,0,18.82659558510023,0,3,3,2019,18,6,38,39,1,6,0,9.715661879505538,9.715661879505538,0,0,0,0,14.5,1,1,0,0,0,51.98,54.53,50.35,14.98,8.333333333333334,1,1,0,0,7,6,3,1,524.5,1130993.872041574,578911.0265245502,267582.3734753112,0,2565.597602227173 -1580,1972,3550,3549,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,5.847203906595126,6.00297323503947,6,0,-30.90243374108045,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.850494788203782,5.941802885431468,50.35,14.98,51.98,54.53,6.666666666666667,1,1,0,0,5,6,3,1,524.5,1130993.872041574,578911.0265245502,267582.3734753112,0,2565.597602227173 -1581,1973,3551,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.723495769917699,8.878027476013537,0,0,0,-1068.536848614847,0,2,1,2019,14,5,41,40,1,5,0,17.90823688802804,17.90823688802804,0,0,0,0,0,0,0,0,0,0,34.53,46.39,-9,-9,1.666666666666667,1,1,0,0,12,4,5,1,122,533050.0222907894,412696.6009290882,71059.64852888508,83184.9589136908,2807.028696148082 -1582,1974,3552,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.869178369393854,6.193528998229739,0,0,-1011.049667443717,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,124.3263771817683,13.18074956595317,1165.276699380751,0,1,1,0,5.3151816416548,6.086113474578022,54,45,-9,-9,8,1,1,0,0,0,10,2,0,120,108197.2307608457,60987.28401806913,0,0,1003.840249957843 -1583,1975,3553,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.661925760975722,8.572220148848599,0,0,0,-1068.073510291634,0,3,3,2019,6,0,43,39,1,0,0,11.08317953768921,11.08317953768921,0,0,0,0,0,0,0,0,0,0,62.66,41.87,-9,-9,1.666666666666667,1,1,0,0,10,13,5,0,229,194035.0784286198,60087.82434785698,83758.47559021815,54474.86080993916,2037.622390626675 -1584,1976,3554,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.42669288001264,8.439973257506677,0,0,0,-932.2223779096156,0,2,2,2019,11,2,35,42,1,2,0,12.8164599005167,12.8164599005167,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,6,8,4,1,437,31841.26219776784,-58701.11180425619,0,0,1214.778884755128 -1585,1977,3555,3556,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.090289074674999,7.982174081950627,0,29,8,-86.45571905460601,0,-9,-9,2019,31,12,50,50,1,12,0,6.129693173679813,6.129693173679813,0,0,0,0,0,0,0,0,0,0,37.4,40.86,57.31,48.26,5,1,1,0,0,11,5,4,0,1132,287831.3578071407,133211.850605039,305550.0990033105,69780.80721119567,2211.965309304363 -1585,1977,3556,3555,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.461656765217392,7.810961562897346,0,29,-8,-7.591885764632925,0,-9,-9,2019,11,0,27,25,1,0,0,8.774554727428082,8.774554727428082,0,0,0,0,0,0,0,0,0,0,57.31,48.26,37.4,40.86,3.333333333333333,1,1,0,0,12,5,4,0,1132,287831.3578071407,133211.850605039,305550.0990033105,69780.80721119567,2211.965309304363 -1585,1978,3557,-9,3556,3555,1,0,24,0,0,0,2,2,-9,0,4,7.841568391808953,7.714021941430163,0,0,0,-1017.618589446774,0,2,2,2019,18,6,26,21,1,6,1,8.108811530729215,8.108811530729215,0,0,0,0,0,0,0,0,0,0,32.74,57.76,-9,-9,6.666666666666667,1,1,0,0,3,5,3,0,529,61190.8751945558,0,0,0,1327.826501931641 -1586,1979,3558,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,7.674054521867308,7.665449086100092,0,0,-957.9092709292232,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.6728988130261919,7.167987565244888,63.31,38.47,-9,-9,10,1,1,0,0,0,4,3,1,260,343719.7190495898,156134.015321164,231069.1856585861,0,1748.370275772838 -1587,1980,3559,-9,3561,-9,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1070.004648245098,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,2,1,0,887,42876.73242332716,0,0,0,2106.132092754383 -1587,1980,3560,-9,3561,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.462661065655,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,887,42876.73242332716,0,0,0,2106.132092754383 -1587,1980,3561,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1040.369434533578,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.37,30.55,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,887,42876.73242332716,0,0,0,2106.132092754383 -1588,1981,3562,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1028.130652612107,0,2,1,2019,17,5,0,26,3,5,0,0,0,0,0,0,0,2,1,1,0,4.655317568459174,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,1,8,8,1,1,1357,788248.8465147716,297269.3711958702,597073.470290254,165891.752507762,-190.6018489534968 -1589,1982,3563,-9,3564,3567,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.723393985446,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,716,339206.3954127597,0,376623.9880597768,13968.93133926408,2562.10499729013 -1589,1982,3564,3567,-9,-9,1,0,39,1,4,0,1,1,-9,0,4,0,0,0,5,0,40.40365529357426,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,2,3,0,1,0,8,3,1,716,339206.3954127597,0,376623.9880597768,13968.93133926408,2562.10499729013 -1589,1982,3565,-9,3564,3567,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.60849194706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,716,339206.3954127597,0,376623.9880597768,13968.93133926408,2562.10499729013 -1589,1982,3566,-9,3564,3567,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.409583406145,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,716,339206.3954127597,0,376623.9880597768,13968.93133926408,2562.10499729013 -1589,1982,3567,3564,-9,-9,1,1,48,1,4,0,1,1,-9,0,5,8.237963849769161,8.078718236582098,0,5,9,-8.837434183092544,0,2,2,2019,6,0,30,0,1,0,0,14.27067370052594,14.27067370052594,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,2,3,0,1,5,8,3,1,716,339206.3954127597,0,376623.9880597768,13968.93133926408,2562.10499729013 -1590,1983,3568,3569,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.097392492844623,7.803015894905643,0,35,1,-55.23615371012674,0,3,3,2019,7,0,20,20,1,0,0,15.87376105493989,15.87376105493989,0,0,0,0,0,0,0,0,0,0,57.49,39.89,54.79,55.86,8.333333333333334,1,1,0,0,12,4,5,1,459.5,1381325.669967249,1010112.077726937,76292.88913501843,0,3619.460312034398 -1590,1983,3569,3568,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.427482923077728,8.427787455921504,0,35,-1,-.3522527944679323,0,2,1,2019,6,0,42,45,1,0,0,11.18430024220485,11.18430024220485,0,0,0,0,0,0,0,0,5.95787815661227,0,54.79,55.86,57.49,39.89,8.333333333333334,4,2,0,0,10,4,5,1,459.5,1381325.669967249,1010112.077726937,76292.88913501843,0,3619.460312034398 -1591,1984,3570,3571,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,8.743886722494464,8.88921524392766,0,8,8,14.27067200458767,0,3,2,2019,17,5,20,25,1,5,0,33.12340853040202,33.12340853040202,1,0,1.031217591763357,0,0,1,1,0,0,0,34.6,59.57,60.13,49.27,0,1,1,0,0,10,10,5,0,251,2256676.193434416,1173573.961750779,864966.3892069852,0,5669.018692619407 -1591,1984,3571,3570,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.817854070111103,7.956430252608247,0,8,-8,-.8679928077770027,0,2,1,2019,4,0,25,30,1,0,0,12.64380847413491,12.64380847413491,0,0,0,0,0,1,1,0,7.814307697243203,0,60.13,49.27,34.6,59.57,8.333333333333334,1,1,0,0,10,10,5,0,251,2256676.193434416,1173573.961750779,864966.3892069852,0,5669.018692619407 -1592,1985,3572,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,6.946039097106771,7.122915513160281,0,0,-950.211569831783,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,7.205738631632876,48.43,15.8,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,2116,678078.0551785509,444815.1386019918,57378.21475727211,0,494.7695741178259 -1593,1986,3573,3574,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.849683271522929,7.901248612958893,54,2,-36.97425238690786,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.449786013603832,7.697574801407881,62.1,51.16,52,54.51,10,1,1,0,0,0,11,3,1,573.5,604251.8495723762,452480.9401527756,0,0,1843.698369430644 -1593,1986,3574,3573,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,54,-2,-34.36405870597155,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,62.1,51.16,8.333333333333334,1,1,0,0,0,11,3,1,573.5,604251.8495723762,452480.9401527756,0,0,1843.698369430644 -1594,1987,3575,-9,3576,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-947.7790018968553,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,5,-9,0,0,7,1,1,374,-42617.94093533885,0,0,0,-890.1623683750697 -1594,1987,3576,-9,-9,-9,1,0,28,1,1,0,1,1,-9,0,2,0,0,0,0,0,-994.9140929972544,0,-9,-9,2019,10,0,0,52,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.64,44.51,-9,-9,8.333333333333334,4,5,0,0,6,7,1,1,374,-42617.94093533885,0,0,0,-890.1623683750697 -1595,1988,3577,3578,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.678968984611895,9.606225931767124,0,8,1,-68.95684977006319,0,2,-9,2019,13,2,35,-9,1,2,0,49.49867920105577,49.49867920105577,0,0,0,0,0,0,0,0,6.014755677594817,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,7,5,1,1850,1011511.282868287,122713.822354279,893572.1625541139,62572.53534421235,8532.316552512886 -1595,1988,3578,3577,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.935023661305168,9.208255491629503,0,32,-1,114.9228132587279,0,2,2,2019,9,0,40,40,1,0,0,30.20456749523173,30.20456749523173,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,10,7,5,1,1850,1011511.282868287,122713.822354279,893572.1625541139,62572.53534421235,8532.316552512886 -1596,1989,3579,-9,3580,3581,1,0,16,2,1,1,3,0,-9,0,5,0,0,0,0,0,-898.1776617611204,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,797,-31717.5259137229,55714.11113530229,212076.6717903699,118574.2613898966,5377.308703488817 -1596,1989,3580,3581,-9,-9,1,0,46,2,1,0,2,2,-9,0,5,8.050655790742796,8.209365533688278,0,6,-3,17.61309395897378,0,3,3,2019,9,0,84,50,1,0,0,5.206297737012784,5.206297737012784,0,0,0,0,0,1,1,0,0,0,54.69,57.47,63.83,27.55,8.333333333333334,1,1,0,0,5,13,4,1,797,-31717.5259137229,55714.11113530229,212076.6717903699,118574.2613898966,5377.308703488817 -1596,1989,3581,3580,-9,-9,1,1,49,2,1,0,2,2,-9,0,2,7.626110857941739,7.681702148955283,0,6,3,114.9632179761661,0,3,3,2019,7,0,65,65,1,0,0,4.588069478252,4.588069478252,0,0,0,0,0,1,1,0,0,0,63.83,27.55,54.69,57.47,8.333333333333334,1,1,0,0,5,13,4,1,797,-31717.5259137229,55714.11113530229,212076.6717903699,118574.2613898966,5377.308703488817 -1596,1990,3582,-9,3580,3581,1,1,21,2,1,0,2,2,-9,0,3,7.744112397532359,7.845876867032912,0,0,0,-1028.437394888468,0,2,-9,2019,5,0,45,43,1,0,1,6.34071394810592,6.34071394810592,0,0,0,0,0,1,1,0,0,0,53.53,46.97,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,638.75,-50439.93040687621,0,0,0,1202.40950588149 -1596,1990,3583,-9,-9,3582,1,1,1,2,1,1,3,0,-9,0,4,0,0,0,0,0,-894.3047576087713,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,13,3,1,638.75,-50439.93040687621,0,0,0,1202.40950588149 -1596,1990,3584,-9,-9,3582,1,1,4,2,1,1,3,0,-9,0,4,0,0,0,0,0,-977.1825921336078,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,3,1,638.75,-50439.93040687621,0,0,0,1202.40950588149 -1596,1990,3585,-9,-9,3582,1,1,6,2,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.968822123673,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,3,1,638.75,-50439.93040687621,0,0,0,1202.40950588149 -1597,1991,3586,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.38545384604957,8.288014579258014,0,0,0,-901.5377237157184,0,3,3,2019,9,0,45,0,1,0,0,11.94758863154168,11.94758863154168,0,0,0,0,0,1,1,0,4.336163577767937,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,8,5,0,500,621259.3244209301,-14199.03897511588,405301.7523373571,36860.5005578805,3135.776446839687 -1598,1992,3587,3588,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.461577212108041,8.617678070287376,0,1,5,23.87647535174803,-9,2,2,2019,10,0,43,0,1,0,0,9.965243274717354,9.965243274717354,0,0,0,0,0,0,0,0,7.023190111639783,0,56.75,47.06,50,57,8.333333333333334,1,1,0,0,5,9,5,1,446,-133032.3488928317,35362.43250609149,0,0,4210.653961523891 -1598,1992,3588,3587,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.419233141170411,8.386226163227709,0,1,-5,78.72685846369187,-9,-9,-9,2019,10,0,40,0,1,1,0,12.41741002779096,12.41741002779096,0,0,0,0,0,0,0,0,0,0,50,57,56.75,47.06,7,4,1,0,0,1,9,5,1,446,-133032.3488928317,35362.43250609149,0,0,4210.653961523891 -1599,1993,3589,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.19052968243183,8.099254494271173,0,0,0,-1042.271456441928,-9,-9,-9,2019,11,0,40,0,1,2,0,8.042512001604825,8.042512001604825,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,1,8,4,0,429,1781.151260941908,0,0,0,1253.475060506924 -1599,1994,3590,-9,3589,-9,1,1,31,0,0,0,1,1,-9,0,4,8.535326470635678,8.462227934537072,0,0,0,-846.8402050695267,-9,2,-9,2019,10,0,40,0,1,1,1,13.94872107834501,13.94872107834501,0,0,0,0,0,0,0,0,2.739457946872271,0,50,57,-9,-9,7,3,4,0,0,1,8,5,0,1422,72538.87989810118,168593.8174549504,0,0,2332.111482350163 -1599,1995,3591,-9,3589,-9,1,1,27,0,0,0,1,1,-9,0,4,7.538258761510119,7.784310531201143,0,0,0,-1039.180378821032,0,2,-9,2019,11,0,41,36,1,0,1,5.472607865047662,5.472607865047662,0,0,0,0,0,0,0,0,0,0,45.32,46.92,-9,-9,10,3,4,0,0,4,8,3,0,815,-7195.472310894533,0,0,0,1082.447807151351 -1599,1996,3592,-9,3589,-9,1,0,24,0,0,0,2,2,-9,0,4,7.586002204155837,8.013031486987886,0,0,0,-1159.62495717769,-9,2,-9,2019,11,0,40,0,1,2,1,5.41235156413944,5.41235156413944,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,488,83036.27116618217,29525.30368976694,0,0,1359.608698338373 -1600,1997,3593,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.349540910744794,8.767890913220741,0,0,0,-1126.351451569031,0,3,3,2019,14,3,5,37,1,3,0,90.25503436164871,90.25503436164871,0,0,0,0,0,1,1,0,0,0,28.45,52,-9,-9,1.666666666666667,1,1,0,1,7,12,3,0,587.5,410869.1010911264,246601.0734711083,128066.3195568646,0,1582.371753063483 -1600,1997,3594,-9,3593,-9,1,0,16,0,1,1,2,0,-9,0,2,0,0,0,0,0,-978.5408266091213,-9,1,-9,2019,15,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.8,43.44,-9,-9,6.666666666666667,1,1,0,1,0,12,3,0,587.5,410869.1010911264,246601.0734711083,128066.3195568646,0,1582.371753063483 -1601,1998,3595,3596,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.578010106502743,7.792811937831267,8,5,47.50463699530449,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.777742117563897,1.643141588427639,25.88991362616944,0,1,1,0,4.717124407732608,7.492275859924833,61.02,36.57,46.29,36.59,10,1,1,0,0,8,5,3,1,829.5,1597161.607398686,561532.5261770298,272815.0120684513,0,3578.73539099099 -1601,1998,3596,3595,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.093135385536715,7.309317562768206,8,-5,-79.65241053516267,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,7.196945398720374,7.036809889956709,46.29,36.59,61.02,36.57,8.333333333333334,1,1,0,0,6,5,3,1,829.5,1597161.607398686,561532.5261770298,272815.0120684513,0,3578.73539099099 -1602,1999,3597,3599,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.361770913094382,8.22401958410603,0,26,-5,14.91458776670041,0,2,2,2019,7,0,48,75,1,0,0,7.942495944642589,7.942495944642589,0,0,0,0,0,1,1,0,7.202169156611347,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,1030.75,1967686.979895146,39296.36478056993,767621.7609828943,52755.52070663799,5122.438779655849 -1602,1999,3598,-9,3597,3599,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.9001174703332,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,1030.75,1967686.979895146,39296.36478056993,767621.7609828943,52755.52070663799,5122.438779655849 -1602,1999,3599,3597,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,8.612420747700599,8.737757140028448,0,26,5,3.378517008760092,0,2,2,2019,6,0,30,30,1,0,0,31.32348004922168,31.32348004922168,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,1030.75,1967686.979895146,39296.36478056993,767621.7609828943,52755.52070663799,5122.438779655849 -1602,1999,3600,-9,3597,3599,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1102.038641730869,-9,2,1,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,1.641914790097738,0,36.37,60.23,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,1030.75,1967686.979895146,39296.36478056993,767621.7609828943,52755.52070663799,5122.438779655849 -1603,2000,3601,3602,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.8306566476182,7.999754528814076,0,9,0,-26.6065157041869,0,-9,-9,2019,6,0,59,50,1,0,0,7.374150547237018,7.374150547237018,0,0,0,0,0,0,0,0,0,0,44.61,46.92,59.06,48.59,1.666666666666667,1,1,0,0,10,10,3,1,641.5,-55113.56158123328,-66593.68277250546,0,0,1785.288270167833 -1603,2000,3602,3601,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.333172643018463,6.164311786842711,0,9,0,-20.52116483558398,0,3,3,2019,10,0,30,30,1,0,0,1.662069857605643,1.662069857605643,0,0,0,0,27,0,0,0,0,0,59.06,48.59,44.61,46.92,8.333333333333334,1,1,0,0,10,10,3,1,641.5,-55113.56158123328,-66593.68277250546,0,0,1785.288270167833 -1604,2001,3603,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.859551235320659,8.398615805237139,7.655174767995244,0,0,-920.634769102955,0,-9,-9,2019,11,0,38,39,1,0,0,7.822694609571359,7.822694609571359,0,0,0,0,0,0,0,0,7.915678761516764,5.754605960165033,44.19,58.01,-9,-9,5,1,1,0,0,8,7,4,0,75,209640.2902812445,-14675.27732747405,266343.6155290257,13271.95653413185,2584.178325630183 -1604,2002,3604,-9,3603,-9,1,0,31,0,0,0,2,2,-9,0,4,8.114759984100472,7.727543458784183,0,0,0,-934.5014120796467,0,3,-9,2019,11,0,35,35,1,2,1,10.5461449647399,10.5461449647399,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,4,0,427,36609.22840793995,129722.3807095487,0,0,1677.213284600975 -1604,2003,3605,-9,3603,-9,1,1,28,0,0,0,2,2,-9,0,4,7.700706989466818,7.803927059844345,0,0,0,-974.5978378579309,0,3,-9,2019,10,0,38,35,1,1,1,9.522606154153614,9.522606154153614,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,4,0,528,-281306.009069079,11611.62632514545,0,0,1192.749601174192 -1605,2004,3606,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.118336150382659,8.211983229498275,0,0,0,-1098.722323746631,0,1,1,2019,9,0,40,60,1,0,0,11.45248301242857,11.45248301242857,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,5,1,1,0,0,12,13,4,1,443,30005.46871011554,-98831.12212758799,53404.08239149576,76601.54934425464,1324.182883566577 -1606,2005,3607,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,5.985135310163471,5.941577415906913,0,0,0,-1096.522587098846,0,2,-9,2019,17,6,10,16,1,6,0,5.649829551783497,5.649829551783497,0,0,0,0,0,1,1,0,0,0,31.24,29.07,-9,-9,1.666666666666667,1,1,0,1,12,10,2,0,520,1336.677718792465,-24885.46730829005,0,0,1202.800109702667 -1606,2005,3608,-9,3607,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1030.359488878041,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,0,0,0,10,2,0,520,1336.677718792465,-24885.46730829005,0,0,1202.800109702667 -1606,2005,3609,-9,3607,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-988.1154735440728,0,2,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.16,53.1,-9,-9,10,1,1,0,0,2,10,2,0,520,1336.677718792465,-24885.46730829005,0,0,1202.800109702667 -1607,2006,3610,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1046.645821941068,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,1.945683460260042,0,35.29,42.24,-9,-9,5,1,1,0,0,7,11,1,1,1048,66694.52413244532,0,0,0,84.32092256825979 -1608,2007,3611,-9,3612,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.7938996568877,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,1233.5,24645.73406674131,20194.78974568695,0,0,3535.443785984377 -1608,2007,3612,-9,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.318242252055797,7.519297344874658,6.207168469357631,0,0,-1036.879704318261,0,1,2,2019,8,0,20,13,1,0,0,7.186075410548116,7.186075410548116,0,0,0,0,0,1,1,0,6.178151400027133,0,49.27,56.95,-9,-9,8.333333333333334,1,1,0,0,6,6,2,0,1233.5,24645.73406674131,20194.78974568695,0,0,3535.443785984377 -1609,2008,3613,3614,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.377681068131394,6.962429306983487,53,6,-28.02761503907883,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.409316131552738,7.28845701338192,39.09,53.39,36.42,39.34,8.333333333333334,1,1,0,0,8,12,2,1,288.5,417012.8788186762,153482.6173884179,197776.1903449437,0,2517.788555121526 -1609,2008,3614,3613,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,4.794137025252405,4.816409319610257,53,-6,-42.21080715393194,0,3,2,2019,25,12,0,0,4,12,0,0,0,1,0,3.923584552149992,0,0,1,1,0,7.769217778408283,4.765485192483231,36.42,39.34,39.09,53.39,6.666666666666667,1,1,0,0,7,12,2,1,288.5,417012.8788186762,153482.6173884179,197776.1903449437,0,2517.788555121526 -1610,2009,3615,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-924.8879156493012,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,2,1,0,166,57433.55291380409,0,111302.9810083655,0,968.8881717936706 -1611,2010,3616,3617,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.417193076919284,8.297525228926157,39,8,145.983356275589,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.058617103832264,8.40269920411801,54.2,57.49,39.78,14.51,8.333333333333334,1,1,0,0,0,7,4,1,241.5,1611268.903490334,881616.5943510244,649419.8635536507,0,3222.039633144755 -1611,2010,3617,3616,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,0,6.290544033248386,6.322817193826256,39,-8,51.70230930008767,0,3,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,.9853819725725431,6.317596584454765,39.78,14.51,54.2,57.49,3.333333333333333,1,1,0,0,2,7,4,1,241.5,1611268.903490334,881616.5943510244,649419.8635536507,0,3222.039633144755 -1612,2011,3618,3619,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.838281990845397,6.571476203248664,9,6,-12.54152485676699,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,8.337989144145341,4.894947105784593,70.32908888033064,0,1,1,0,0,6.892217609864878,29.61,21.77,33.67,37.48,6.666666666666667,1,1,0,0,0,11,3,1,1028,681488.3388902678,497082.3558420888,103358.8596164565,9638.713821285328,2269.873550314657 -1612,2011,3619,3618,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.939580726946733,7.962907480176337,0,9,-6,42.69007121671923,0,3,3,2019,14,2,30,35,1,2,0,9.370658503937971,9.370658503937971,0,0,0,0,0,1,1,0,0,0,33.67,37.48,29.61,21.77,6.666666666666667,1,1,0,0,10,11,3,1,1028,681488.3388902678,497082.3558420888,103358.8596164565,9638.713821285328,2269.873550314657 -1613,2012,3620,3621,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,56,5,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,47.55,44.33,10,1,1,0,0,0,6,2,1,1145,-91752.88931307908,0,0,0,1239.402161194844 -1613,2012,3621,3620,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,56,-5,0,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,60.29,52.11,8.333333333333334,1,1,0,0,0,6,2,1,1145,-91752.88931307908,0,0,0,1239.402161194844 -1614,2013,3622,-9,3625,3626,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-904.8770035294478,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,5,1,505,959913.6436470313,332191.3192326251,892702.5356809881,410286.4599694849,14031.08244546286 -1614,2013,3623,-9,3625,3626,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.738141968134,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,505,959913.6436470313,332191.3192326251,892702.5356809881,410286.4599694849,14031.08244546286 -1614,2013,3624,-9,3625,3626,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.8704633986458,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,505,959913.6436470313,332191.3192326251,892702.5356809881,410286.4599694849,14031.08244546286 -1614,2013,3625,3626,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.182967474965288,7.401044965309403,0,5,-2,41.56971931527282,0,2,2,2019,11,0,24,20,1,0,0,5.683197187254233,5.683197187254233,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.45,57.49,6.666666666666667,1,1,0,0,13,8,5,1,505,959913.6436470313,332191.3192326251,892702.5356809881,410286.4599694849,14031.08244546286 -1614,2013,3626,3625,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,9.483463686307445,9.67156442109364,0,5,2,-52.67395533377868,0,2,2,2019,11,0,45,42,1,0,0,33.36411892258938,33.36411892258938,0,0,0,0,0,0,0,0,0,0,48.45,57.49,45.91,59.89,8.333333333333334,1,1,0,0,11,8,5,1,505,959913.6436470313,332191.3192326251,892702.5356809881,410286.4599694849,14031.08244546286 -1615,2014,3627,-9,3630,3629,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.3328448391218,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1233,566242.2164166903,475631.9445676715,221239.3133166855,87625.16709958989,3224.108071550678 -1615,2014,3628,-9,3630,3629,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.551233388243,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1233,566242.2164166903,475631.9445676715,221239.3133166855,87625.16709958989,3224.108071550678 -1615,2014,3629,3630,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.699739329161666,8.613321232128158,0,11,2,-64.64320366850133,0,2,2,2019,9,0,40,58,1,0,0,17.48605918319261,17.48605918319261,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.46,56.91,8.333333333333334,1,1,0,0,7,2,4,1,1233,566242.2164166903,475631.9445676715,221239.3133166855,87625.16709958989,3224.108071550678 -1615,2014,3630,3629,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.9586664899382,8.174735752279698,0,11,-2,-69.0472809842361,0,2,2,2019,7,0,23,23,1,0,0,12.99266060861598,12.99266060861598,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,1.666666666666667,1,1,0,0,8,2,4,1,1233,566242.2164166903,475631.9445676715,221239.3133166855,87625.16709958989,3224.108071550678 -1616,2015,3631,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,9.029142372027144,8.864357505142623,0,0,0,-846.4605659195573,0,-9,-9,2019,13,5,48,54,1,5,0,16.31213853078364,16.31213853078364,0,0,0,0,0,0,0,0,0,0,43.88,46.28,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,636,240427.9372688101,76905.10822118011,22728.78912253503,14577.18875206318,2679.412307380636 -1617,2016,3632,3633,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.60711929469139,8.467371571117809,0,10,10,-24.90182882741036,0,-9,-9,2019,12,2,65,65,1,2,0,8.92278433473372,8.92278433473372,0,0,0,0,0,0,0,0,0,0,42.33,53.39,31.74,61.12,8.333333333333334,1,1,0,0,10,2,5,1,1445,63911.79306930152,105130.0253656288,121443.2081186937,46598.42363008944,3420.510846793992 -1617,2016,3633,3632,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.554198345129547,7.432607875907136,0,10,-10,19.32230051842483,0,-9,-9,2019,17,4,25,27,1,4,0,10.12117972602989,10.12117972602989,0,0,0,0,7,0,0,0,0,0,31.74,61.12,42.33,53.39,8.333333333333334,1,1,0,0,12,2,5,1,1445,63911.79306930152,105130.0253656288,121443.2081186937,46598.42363008944,3420.510846793992 -1618,2017,3634,3637,-9,-9,1,0,30,0,2,0,1,1,-9,0,3,0,0,0,8,-14,37.19422297877593,1,3,2,2019,12,0,0,40,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.08,60.5,57.24,46.7,6.666666666666667,1,1,0,0,5,12,3,1,2080,677489.8399789628,726346.2041339189,0,0,1631.80645286081 -1618,2017,3635,-9,3634,3637,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.570212100021,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,2080,677489.8399789628,726346.2041339189,0,0,1631.80645286081 -1618,2017,3636,-9,3634,3637,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.385243586833,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,2080,677489.8399789628,726346.2041339189,0,0,1631.80645286081 -1618,2017,3637,3634,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.390285132744067,8.536175307475368,0,8,14,-68.90786342216103,0,3,3,2019,12,0,42,41,1,0,0,12.5252631440272,12.5252631440272,0,0,0,0,0,1,1,0,0,0,57.24,46.7,36.08,60.5,6.666666666666667,1,1,0,0,11,12,3,1,2080,677489.8399789628,726346.2041339189,0,0,1631.80645286081 -1618,2018,3638,-9,3634,3637,1,1,23,0,2,0,2,2,-9,0,4,7.743646614803371,7.730192355947729,0,0,0,-986.048305190528,0,2,3,2019,11,0,44,48,1,0,1,6.151634702312388,6.151634702312388,0,0,0,0,0,1,1,0,1.46989346373283,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,712,-6062.420583810142,0,0,0,791.0249210746695 -1619,2019,3639,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.598831946194672,7.468129447958952,0,0,-894.8596018318048,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.939346810662736,7.614803603571543,47.64,44.65,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,767,811878.7351551598,449527.7777324935,205223.0705430041,0,1669.645202949371 -1620,2020,3640,-9,3641,3642,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1020.246929490661,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,2,0,628,479943.9598236517,233950.2414388097,273054.1718896923,55068.00625790048,3185.248669064217 -1620,2020,3641,3642,-9,-9,1,0,50,0,2,0,3,3,-9,1,2,0,0,0,27,-6,41.77952101732625,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.89,45.63,43.82,40.74,5,1,1,0,0,1,10,2,0,628,479943.9598236517,233950.2414388097,273054.1718896923,55068.00625790048,3185.248669064217 -1620,2020,3642,3641,-9,-9,1,1,56,0,2,0,3,3,-9,1,2,8.016716572947747,7.75844716509957,0,27,6,40.37852963931913,0,2,2,2019,12,3,40,47,1,3,0,6.708532224622424,6.708532224622424,0,0,0,0,0,1,1,0,0,0,43.82,40.74,36.89,45.63,5,1,1,0,0,5,10,2,0,628,479943.9598236517,233950.2414388097,273054.1718896923,55068.00625790048,3185.248669064217 -1620,2020,3643,-9,3641,3642,1,1,16,0,2,0,2,2,-9,1,4,0,0,0,0,0,-924.7560756816628,-9,3,3,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.53,37.87,-9,-9,10,1,1,0,0,0,10,2,0,628,479943.9598236517,233950.2414388097,273054.1718896923,55068.00625790048,3185.248669064217 -1621,2021,3644,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,8.384218042465639,8.325861751633823,0,0,0,-1047.074120488648,0,2,3,2019,12,2,39,37,1,2,0,11.73248471561653,11.73248471561653,0,0,0,0,0,1,1,0,0,0,13.24,63.22,-9,-9,5,1,1,0,0,9,6,4,1,244,-3318.374221006161,-97610.55096233905,140092.0292919841,53315.32856848704,2209.682974123553 -1622,2022,3645,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.332074925932359,6.888366856021042,0,0,0,-990.697593627458,0,1,1,2019,8,0,8,16,1,0,0,16.98314827750827,16.98314827750827,0,0,0,0,0,1,1,0,4.361418891246985,0,54.24,41.15,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,343,26493.69635155761,0,0,0,1483.740285753876 -1623,2023,3646,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,6.878102431993421,7.124872489905838,0,0,-1042.617345689839,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.364137172209408,6.638972009411269,66.05,8.91,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,415,389423.2148409036,81738.57264024072,86865.90676057391,0,922.5847004800751 -1624,2024,3647,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.769964305615749,8.518627305166916,0,0,0,-1032.921940191184,0,-9,-9,2019,10,1,37,36,1,1,0,19.23993230937072,19.23993230937072,0,0,0,0,0,0,0,0,3.15056113662112,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,6,12,5,1,968,-49435.23568752474,10162.8300325242,0,0,1842.561957720456 -1625,2025,3648,-9,3649,3650,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.7455648111754,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,1015,58479.57327671334,-21353.09337163535,0,0,2349.6415307517 -1625,2025,3649,3650,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,10,0,18.39505423537594,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,54.79,55.86,6.666666666666667,1,1,0,1,5,7,4,1,1015,58479.57327671334,-21353.09337163535,0,0,2349.6415307517 -1625,2025,3650,3649,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.731477745097799,9.06514736523204,0,10,0,-64.71343271333197,0,2,2,2019,9,0,38,37,1,0,0,22.55760092064408,22.55760092064408,0,0,0,0,0,1,1,0,0,0,54.79,55.86,44,52,6.666666666666667,1,1,0,0,11,7,4,1,1015,58479.57327671334,-21353.09337163535,0,0,2349.6415307517 -1625,2025,3651,-9,3649,3650,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.116948235091,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1015,58479.57327671334,-21353.09337163535,0,0,2349.6415307517 -1626,2026,3652,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1129.038110378599,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.481585667008622,0,62.09,43.49,-9,-9,1.666666666666667,1,1,0,0,9,10,1,1,578,-147426.8590568808,0,0,0,214.4346428585725 -1627,2027,3653,3654,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,16,11,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,42.11,52.71,50,55,8.333333333333334,1,1,0,1,0,4,1,0,289,72535.06954461512,-9668.706741687325,87590.3396249808,15614.02131225294,1544.145623280787 -1627,2027,3654,3653,-9,-9,1,0,42,0,0,0,2,2,-9,1,4,0,0,0,16,-11,0,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,42.11,52.71,8,1,1,0,0,0,4,1,0,289,72535.06954461512,-9668.706741687325,87590.3396249808,15614.02131225294,1544.145623280787 -1627,2028,3655,-9,3654,3653,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1164.400197402115,0,3,2,2019,24,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,47.54,56.62,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,846,216353.1768053263,0,0,0,969.7561468883181 -1627,2029,3656,-9,3654,3653,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-982.8305985541372,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,4,1,0,1422,0,0,0,0,556.7971422312894 -1627,2030,3657,-9,3654,3653,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-971.336952897796,0,2,2,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,4,1,0,1008,0,0,0,0,0 -1628,2031,3658,3659,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.337705113601968,7.721219938764126,0,26,-8,-111.1946966236966,0,3,2,2019,7,0,25,39,1,0,0,7.341639667460276,7.341639667460276,0,0,0,0,0,1,1,0,0,0,54.76,42.33,42.76,49.72,10,1,1,0,0,1,10,4,1,680,372561.7166658022,113129.3080173936,256844.2190424929,0,1940.414024262649 -1628,2031,3659,3658,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.10751510984352,8.179097377161392,0,11,8,-43.00238835498177,0,3,2,2019,20,8,37,53,1,8,0,9.829992698561744,9.829992698561744,0,0,0,0,0,1,1,0,0,0,42.76,49.72,54.76,42.33,3.333333333333333,1,1,0,0,5,10,4,1,680,372561.7166658022,113129.3080173936,256844.2190424929,0,1940.414024262649 -1628,2032,3660,-9,3658,3659,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-990.2907363811438,-9,2,3,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.11,45.8,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,1237,-2290.761513833025,0,0,0,0 -1629,2033,3661,3662,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,4.067558518014195,4.325553812082202,3,2,66.07773133659329,0,-9,-9,2019,26,9,0,0,4,9,0,0,0,1,4.174909103809664,4.189862815222663,44.13209356998757,120,1,1,0,1.592384135259997,4.371590148453,23.94,23.19,34.92,16.66,0,1,1,0,1,0,9,2,1,435,268649.6196987497,0,206440.0221989231,0,877.0590797245868 -1629,2033,3662,3661,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,4.425906530406138,4.157782923644065,3,-2,-57.17802648809153,-9,-9,-9,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,4.079544701352129,34.92,16.66,23.94,23.19,0,1,1,0,1,0,9,2,1,435,268649.6196987497,0,206440.0221989231,0,877.0590797245868 -1630,2034,3663,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.794887562660346,8.494681249155141,0,0,0,-918.9420998002126,0,-9,-9,2019,10,0,45,45,1,0,0,13.49376334810677,13.49376334810677,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,471,378006.3567082572,20653.20049353885,235756.2313215407,4199.056266030508,2206.255964759713 -1631,2035,3664,3667,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.934214876396744,8.98982269469907,0,13,0,28.43113001681865,0,2,1,2019,17,7,40,45,1,7,0,25.56491691609759,25.56491691609759,0,0,0,0,0,1,1,0,7.782202434045097,0,34,61.21,57.06,57.76,3.333333333333333,1,1,0,0,8,8,5,1,526.25,1602358.748980053,167006.2448831342,639018.4946974678,0,4969.358028544471 -1631,2035,3665,-9,3667,3664,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.171402781173,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,526.25,1602358.748980053,167006.2448831342,639018.4946974678,0,4969.358028544471 -1631,2035,3666,-9,3667,3664,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.911900145705,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,526.25,1602358.748980053,167006.2448831342,639018.4946974678,0,4969.358028544471 -1631,2035,3667,3664,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,7.41959033953178,7.613891500408548,0,13,0,-71.59320442915072,0,2,2,2019,5,0,4,10,1,0,0,52.27941368618072,52.27941368618072,0,0,0,0,0,1,1,0,0,0,57.06,57.76,34,61.21,8.333333333333334,3,4,0,0,8,8,5,1,526.25,1602358.748980053,167006.2448831342,639018.4946974678,0,4969.358028544471 -1632,2036,3668,3669,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,8.868236538768308,8.547120269080867,54,1,-157.6527051472555,0,-9,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.709936022773455,9.014125403015981,61.16,53.18,52,46,0,1,1,0,0,0,10,4,1,542,2197909.534689751,776189.6062909525,669197.6443363081,0,4280.619856888074 -1632,2036,3669,3668,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,54,-1,26.44913038528882,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,61.16,53.18,8,1,1,0,0,0,10,4,1,542,2197909.534689751,776189.6062909525,669197.6443363081,0,4280.619856888074 -1633,2037,3670,3671,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,6.683263402474059,6.781894864313233,0,5,0,-18.9606939233579,-9,2,2,2019,9,0,24,0,1,0,0,3.845430016731512,3.845430016731512,0,0,0,0,0,1,1,0,0,0,62.49,55.09,44.66,57.83,8.333333333333334,1,1,0,0,9,13,3,0,867.3333333333334,53858.25690113296,8952.715043746068,114871.7775226784,0,1679.551992531632 -1633,2037,3671,3670,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.783706583287755,7.563976384410667,0,5,0,106.781267179732,0,2,2,2019,13,2,37,37,1,2,0,8.770014303199092,8.770014303199092,0,0,0,0,0,1,1,0,0,0,44.66,57.83,62.49,55.09,8.333333333333334,1,1,0,0,10,13,3,0,867.3333333333334,53858.25690113296,8952.715043746068,114871.7775226784,0,1679.551992531632 -1633,2037,3672,-9,3671,3670,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.4289458763997,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,867.3333333333334,53858.25690113296,8952.715043746068,114871.7775226784,0,1679.551992531632 -1634,2038,3673,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,7.304707066446809,7.56869409667545,0,0,-952.4520068802415,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.546383101470211,66.46000000000001,34.24,-9,-9,10,1,1,0,0,0,7,3,1,1895,200874.8599612814,191439.4700880429,0,0,1919.858787205891 -1634,2039,3674,3676,-9,3673,1,0,40,0,0,0,2,2,-9,0,3,8.086424818547989,7.711668638569551,0,4,-14,48.50039216358602,0,-9,2,2019,13,1,40,40,1,1,0,10.73278656607442,10.73278656607442,0,0,0,0,2,1,1,0,0,0,49.04,55.86,46.23,55.03,3.333333333333333,1,1,0,0,9,7,4,1,571.6666666666666,1494738.097204038,557368.9623020362,763836.7109676934,0,3255.525303711783 -1634,2039,3675,-9,3674,3676,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.933467275756,-9,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.15,55.98,-9,-9,3.333333333333333,1,1,1,0,0,7,4,1,571.6666666666666,1494738.097204038,557368.9623020362,763836.7109676934,0,3255.525303711783 -1634,2039,3676,3674,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.287471120867675,8.503746248094433,0,4,14,-47.80874526807919,0,-9,-9,2019,6,0,46,50,1,0,0,9.142340368038402,9.142340368038402,0,0,0,0,0,1,1,0,0,0,46.23,55.03,49.04,55.86,6.666666666666667,1,1,0,0,13,7,4,1,571.6666666666666,1494738.097204038,557368.9623020362,763836.7109676934,0,3255.525303711783 -1634,2040,3677,-9,3674,3676,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-830.2964093294461,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.2,51.88,-9,-9,6.666666666666667,1,1,0,0,5,7,1,1,236,0,0,0,0,728.9701370823532 -1635,2041,3678,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1166.715244315956,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,31.29,-9,-9,5,1,1,0,0,0,1,2,0,535,24925.93296536064,0,0,0,826.9489631443697 -1636,2042,3679,3680,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.342705107032938,9.105281017882447,0,9,-1,129.4337214041402,0,1,3,2019,12,0,50,49,1,0,0,26.01074098612036,26.01074098612036,0,0,0,0,0,0,0,0,4.925207820940353,0,58.15,52.91,63.48,51.85,8.333333333333334,1,1,0,0,10,9,5,1,1515,215117.5922462561,4429.272738204992,389070.8658310533,309358.1547605315,6932.688628389966 -1636,2042,3680,3679,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.301115485586191,9.29194421086261,0,9,1,85.87180119395998,0,1,1,2019,7,0,41,41,1,0,0,28.67706759047461,28.67706759047461,0,0,0,0,0,0,0,0,4.595743365367713,0,63.48,51.85,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,1515,215117.5922462561,4429.272738204992,389070.8658310533,309358.1547605315,6932.688628389966 -1637,2043,3681,3682,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.210325021752126,7.314342298225842,7,-5,50.71736435094134,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.676772565676139,7.130470654156279,44.71,59.44,49.88,38.99,8.333333333333334,1,1,0,0,6,5,3,1,633.5,980649.3378481062,736480.6928682735,212673.5737411992,0,2505.239191680573 -1637,2043,3682,3681,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.200364258362382,7.052472018141781,7,5,212.679283794443,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,1.103427188381695,2.31284460840381,0,0,1,1,0,5.447879363616375,7.464328439213257,49.88,38.99,44.71,59.44,8.333333333333334,1,1,0,0,7,5,3,1,633.5,980649.3378481062,736480.6928682735,212673.5737411992,0,2505.239191680573 -1638,2044,3683,3684,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.951582831602439,6.954105537972797,0,33,-5,45.67888780588714,0,2,2,2019,18,5,18,16,1,5,0,6.689863425174625,6.689863425174625,0,0,0,0,0,0,0,0,0,0,44.66,48.57,53.19,41.55,6.666666666666667,1,1,0,0,9,7,4,1,427.5,545096.5633737817,4936.321404297534,484412.4770558468,0,2513.924130357408 -1638,2044,3684,3683,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.670344907586424,8.394526033170214,5.774941613274411,34,5,-114.974540858748,0,2,2,2019,12,0,44,44,1,0,0,14.72993055640181,14.72993055640181,0,0,0,0,0,0,0,0,.3356319271036519,5.897964482517813,53.19,41.55,44.66,48.57,8.333333333333334,1,1,0,0,11,7,4,1,427.5,545096.5633737817,4936.321404297534,484412.4770558468,0,2513.924130357408 -1638,2045,3685,-9,3683,3684,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1026.645072853941,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.5221788671417354,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,4,7,1,1,1421,166221.0731507142,0,0,0,1364.782304148574 -1639,2046,3686,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1086.35363110135,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,27.32,20.23,-9,-9,0,1,1,0,1,0,5,1,0,1112,83586.01069256298,0,0,0,649.3847649337364 -1639,2047,3687,-9,-9,-9,1,1,20,0,0,0,3,3,-9,0,4,8.074080342022986,8.168678384608654,0,0,0,-1085.123013975981,0,-9,-9,2019,11,0,40,40,1,2,0,8.821907691753401,8.821907691753401,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,4,0,428,-108838.4260502483,-99789.07276601811,57303.44131124949,42417.40200167451,545.9554075726015 -1640,2048,3688,3689,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.610249546067664,6.153736995838806,25,1,73.2134380342615,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.339376247862435,6.453195312967543,49.44,56.93,57.16,56.15,8.333333333333334,1,1,0,0,5,4,5,1,720.5,4445176.743149001,1873543.00608027,353124.1419284916,0,3291.181711546647 -1640,2048,3689,3688,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.950923215729961,8.727954105610992,25,-1,24.74126076162747,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.811018326627488,8.772131569473929,57.16,56.15,49.44,56.93,8.333333333333334,1,1,0,0,7,4,5,1,720.5,4445176.743149001,1873543.00608027,353124.1419284916,0,3291.181711546647 -1641,2049,3690,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1051.246574022142,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,399,-199368.1733232862,0,0,0,0 -1642,2050,3691,3692,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.633220348461522,4.936864859248465,52,-4,88.57471702224272,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.578088803560524,4.447202279968871,57.74,49,49.67,43.39,10,1,1,0,0,0,12,3,1,1519.5,2131839.081415405,817106.6520790817,254503.2671248432,0,3186.648893612084 -1642,2050,3692,3691,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.160032511564138,7.965734932849593,52,4,23.46586314803069,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.913272228018887,8.288496427631468,49.67,43.39,57.74,49,8.333333333333334,1,1,0,0,0,12,3,1,1519.5,2131839.081415405,817106.6520790817,254503.2671248432,0,3186.648893612084 -1643,2051,3693,3695,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,7.933141035208612,8.114478667257847,0,8,-8,21.88764053618919,0,2,1,2019,12,0,42,24,1,0,0,9.869250433466398,9.869250433466398,0,0,0,0,0,1,1,0,0,0,46.61,56.93,30.95,45.59,8.333333333333334,1,1,0,0,8,11,4,0,313,340265.3411909414,350233.3149646061,84928.20515229461,0,3425.574710758564 -1643,2051,3694,-9,3693,3695,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.222392808688,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,0,313,340265.3411909414,350233.3149646061,84928.20515229461,0,3425.574710758564 -1643,2051,3695,3693,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.951660482232704,8.596826203500155,0,8,8,45.78121681127358,0,-9,-9,2019,19,7,40,40,1,7,0,16.91852381546319,16.91852381546319,0,0,0,0,0,1,1,0,3.472933056770708,0,30.95,45.59,46.61,56.93,5,1,1,0,0,10,11,4,0,313,340265.3411909414,350233.3149646061,84928.20515229461,0,3425.574710758564 -1643,2051,3696,-9,3693,3695,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.6169819823805,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,313,340265.3411909414,350233.3149646061,84928.20515229461,0,3425.574710758564 -1644,2052,3697,3698,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.422263721626037,5.137613272307205,44,-3,98.73812058371767,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.366402054662877,5.478332344570942,56.94,49.53,57.16,56.15,8.333333333333334,1,1,0,0,9,2,3,1,1219,1152956.982522555,893532.8825888376,229345.6728949507,0,2898.143397751343 -1644,2052,3698,3697,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.885370254338091,8.1880915625283,44,3,19.47414341194294,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.12646306740859,7.899962099416983,57.16,56.15,56.94,49.53,8.333333333333334,1,1,0,0,8,2,3,1,1219,1152956.982522555,893532.8825888376,229345.6728949507,0,2898.143397751343 -1644,2053,3699,-9,3697,3698,1,1,36,0,0,0,2,2,-9,0,5,7.696489203809407,7.833963325150646,0,0,0,-983.4364969881605,0,3,2,2019,7,0,44,44,1,0,0,5.792697860860827,5.792697860860827,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,2,3,1,491,-40947.68353596326,0,0,0,1160.10674162779 -1645,2054,3700,-9,-9,-9,1,0,32,0,0,0,1,1,0,0,3,0,0,0,0,0,-1012.232302371695,-9,1,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1.419451982025068,0,17.06,62.63,-9,-9,6.666666666666667,4,2,0,0,10,8,2,1,381,30421.65513699216,0,0,0,-57.1151422658869 -1646,2055,3701,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1014.946529413096,0,-9,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.84,44.47,-9,-9,5,1,1,0,0,0,12,1,0,198,19996.15630273773,-65214.49896286494,35926.11225968487,0,1938.569379270562 -1647,2056,3702,-9,3704,3703,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.5120905172029,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,500.5,-10076.19439258283,54884.77122941558,0,0,5904.152551310732 -1647,2056,3703,3704,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,9.200891240021251,9.178319910492126,0,6,2,65.86069143399459,0,-9,-9,2019,7,0,50,60,1,0,0,19.99336116798155,19.99336116798155,0,0,0,0,0,1,1,0,0,0,51.14,60.45,49.25,61.25,6.666666666666667,1,1,0,0,8,2,5,1,500.5,-10076.19439258283,54884.77122941558,0,0,5904.152551310732 -1647,2056,3704,3703,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.406067916421536,7.524590616225773,0,6,-2,74.40114495259908,0,-9,-9,2019,8,0,4,1,1,0,0,53.15126593458749,53.15126593458749,0,0,0,.2635737405182539,0,1,1,0,8.015407108661522,0,49.25,61.25,51.14,60.45,8.333333333333334,1,1,0,0,10,2,5,1,500.5,-10076.19439258283,54884.77122941558,0,0,5904.152551310732 -1647,2056,3705,-9,3704,3703,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.726942056186,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,500.5,-10076.19439258283,54884.77122941558,0,0,5904.152551310732 -1648,2057,3706,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1026.895463404285,0,-9,2,2019,10,1,0,0,4,1,0,0,0,1,0,2.644619110465785,0,0,1,1,0,0,0,53.06,10.02,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,609,80130.94982182252,-45018.95859318269,0,0,1412.862929483336 -1649,2058,3707,3708,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,9.078923814483032,8.996293745139775,0,4,2,38.41153319451053,0,-9,-9,2019,2,0,48,60,1,0,0,20.96841099553822,20.96841099553822,0,0,0,0,0,0,0,0,6.419282010522133,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,330,88990.58520838292,40956.22003542555,93536.392256728,69611.303294285,8002.766425160534 -1649,2058,3708,3707,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,9.633635579441489,9.688804191171998,0,4,-2,50.69400321626634,0,3,-9,2019,7,0,38,12,1,0,0,44.84270888655889,44.84270888655889,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,6,5,5,1,330,88990.58520838292,40956.22003542555,93536.392256728,69611.303294285,8002.766425160534 -1650,2059,3709,3710,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,6.062966545622259,6.120423352746858,0,33,-2,114.0431163995547,0,2,2,2019,20,8,12,15,1,8,0,5.247540122774061,5.247540122774061,0,0,0,0,0,1,1,0,3.688546407356436,0,37.2,26.29,46.98,59.35,5,1,1,0,0,10,9,5,1,970,1618309.941100569,143748.4467230909,848505.0183863079,0,4450.557700291085 -1650,2059,3710,3709,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.400596563312705,9.343447819716424,0,33,2,-38.30895688250313,0,2,1,2019,12,1,45,45,1,1,0,31.61049957404701,31.61049957404701,0,0,0,0,0,1,1,0,4.110473276099839,0,46.98,59.35,37.2,26.29,6.666666666666667,1,1,0,0,7,9,5,1,970,1618309.941100569,143748.4467230909,848505.0183863079,0,4450.557700291085 -1651,2060,3711,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-813.4781386162114,1,-9,-9,2019,18,7,0,40,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,6.666666666666667,1,1,0,1,2,4,1,0,912,0,0,0,0,0 -1652,2061,3712,3713,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.584579326800532,5.449291402956696,9,-3,45.86410554557069,0,2,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.370550932565641,63.46,23.18,60.12,54.8,10,1,1,0,0,1,6,2,1,199.5,392296.643315818,24408.961506638,213767.0211425506,0,2222.820992978281 -1652,2061,3713,3712,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,9,3,17.55682409570802,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.403609788829269,0,60.12,54.8,63.46,23.18,10,1,1,0,0,5,6,2,1,199.5,392296.643315818,24408.961506638,213767.0211425506,0,2222.820992978281 -1653,2062,3714,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.066557104743966,6.162219214818942,0,0,-987.4954665843709,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.139067244007539,50,47,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,283,38708.83330557906,46549.37844096063,62867.85732457219,0,911.190281860041 -1654,2063,3715,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.756439688940678,7.543275926636252,0,0,0,-1059.390129236886,0,2,2,2019,11,0,35,37,1,0,0,8.170486523654407,8.170486523654407,0,0,0,0,2,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,1755,51334.36970844088,52854.30602509246,0,0,1227.169064768121 -1655,2064,3716,3717,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.143235967455482,9.132194908539127,0,15,-3,-15.20982707928084,0,-9,2,2019,22,10,43,20,1,10,0,19.47526009306981,19.47526009306981,0,0,0,0,0,0,0,0,8.252466306732712,0,39.23,60.15,52.15,48.98,10,1,1,0,0,9,9,5,1,570.5,2358426.942212339,1833742.17716011,473009.5804336217,70322.88829655619,9453.956034139039 -1655,2064,3717,3716,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.739913467126307,9.523979248204846,0,15,3,-56.28064521376521,0,3,3,2019,8,0,38,38,1,0,0,48.0066794779085,48.0066794779085,0,0,0,0,0,0,0,0,0,0,52.15,48.98,39.23,60.15,8.333333333333334,1,1,0,0,7,9,5,1,570.5,2358426.942212339,1833742.17716011,473009.5804336217,70322.88829655619,9453.956034139039 -1656,2065,3718,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.70801525998902,8.711080426735281,0,0,0,-992.0768407078589,0,1,1,2019,7,0,40,37,1,0,0,15.58891268852086,15.58891268852086,0,0,0,0,0,0,0,0,6.601868319076007,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,515,164511.2019812641,177598.2801218586,0,0,1617.619463005627 -1657,2066,3719,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.493486589088278,5.635896511643252,0,0,-1044.395530241038,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.680212285764645,39.09,53.39,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,186,-37964.8747506924,-8786.51671623125,31647.08096844379,0,701.0464877596353 -1658,2067,3720,3721,-9,-9,1,1,54,0,2,0,1,1,-9,1,1,8.904882433396548,8.428075744048815,0,17,16,-42.67269637192713,0,3,3,2019,26,12,45,53,1,12,0,15.36830566632596,15.36830566632596,0,0,0,0,2,1,0,1,0,0,43.27,20.92,40.89,51.69,1.666666666666667,4,5,0,1,10,8,3,0,602.25,808839.4760173347,454167.1514804013,258412.3532598803,0,3274.204376099957 -1658,2067,3721,3720,-9,-9,1,0,38,0,2,0,1,1,1,0,3,0,0,0,17,-16,126.0529924667883,-9,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,40.89,51.69,43.27,20.92,8.333333333333334,4,5,0,1,0,8,3,0,602.25,808839.4760173347,454167.1514804013,258412.3532598803,0,3274.204376099957 -1658,2067,3722,-9,3721,3720,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.783548187032,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,5,-9,0,0,8,3,0,602.25,808839.4760173347,454167.1514804013,258412.3532598803,0,3274.204376099957 -1658,2067,3723,-9,3721,3720,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.2110313279318,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,3,0,602.25,808839.4760173347,454167.1514804013,258412.3532598803,0,3274.204376099957 -1659,2068,3724,3727,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,0,0,0,33,-4,35.82507040588071,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,50,49,10,2,3,0,0,0,4,2,1,696.5,-51724.62932321769,-41777.90706905896,0,0,1513.08349334837 -1659,2068,3725,-9,3724,3727,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.389015672456,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,696.5,-51724.62932321769,-41777.90706905896,0,0,1513.08349334837 -1659,2068,3726,-9,3724,3727,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1018.168687113884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,1,696.5,-51724.62932321769,-41777.90706905896,0,0,1513.08349334837 -1659,2068,3727,3724,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,6.483866212720629,6.634044473462121,0,8,4,-42.65040862295612,0,-9,-9,2019,10,0,26,26,1,1,0,3.821390266360439,3.821390266360439,0,0,0,0,0,1,1,0,4.438660413492,0,50,49,57.06,57.76,7,2,3,0,0,1,4,2,1,696.5,-51724.62932321769,-41777.90706905896,0,0,1513.08349334837 -1659,2069,3728,-9,3724,3727,1,1,30,0,2,0,1,1,-9,0,4,8.95413075694735,9.087509625733714,0,0,0,-1101.331773237824,0,2,2,2019,10,0,38,38,1,1,1,27.32253785118436,27.32253785118436,0,0,0,0,0,1,1,0,5.579626072377681,0,49,58,-9,-9,7,2,3,0,0,1,4,5,1,304,324341.4652124919,492736.8461078667,287224.3156434366,138366.2590576981,3269.953652050679 -1659,2070,3729,-9,3724,3727,1,0,25,0,2,0,1,1,-9,0,2,8.069321821612588,8.072915545167684,0,0,0,-1014.672825803562,0,2,3,2019,6,1,41,37,1,1,1,9.591188806267214,9.591188806267214,0,0,0,0,0,1,1,0,0,0,57.18,45.76,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,639,-15521.84864455236,61761.4430921387,0,0,1570.178624793614 -1659,2071,3730,-9,3724,3727,1,0,21,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1000.396604204136,0,2,3,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,1,0,0,4,1,1,863,59909.19661490915,0,0,0,0 -1659,2072,3731,-9,3724,3727,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-883.0431076623323,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,27,1,1,0,0,0,49.86,55.31,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,296,0,0,0,0,0 -1660,2073,3732,3733,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,9.801193998429621,9.841948666058997,8.767845725300049,15,5,113.796753130627,0,1,3,2019,12,2,42,28,1,2,0,33.26828655645111,33.26828655645111,0,0,0,0,0,1,1,0,3.81385188470527,8.959254844959821,41.12,55.95,51.14,60.45,6.666666666666667,1,1,0,0,11,6,5,1,517,2683725.504069485,1723454.769034499,576888.5581080415,0,10879.43763834628 -1660,2073,3733,3732,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.473012358616682,8.29639804171412,0,15,-5,121.7184807315032,0,2,2,2019,8,0,40,40,1,0,0,13.22884149342982,13.22884149342982,0,0,0,0,0,1,1,0,4.556320191691116,0,51.14,60.45,41.12,55.95,8.333333333333334,1,1,0,0,10,6,5,1,517,2683725.504069485,1723454.769034499,576888.5581080415,0,10879.43763834628 -1661,2074,3734,3735,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,8.222138796007776,8.249376359427336,0,5,-6,50.31772350487525,0,-9,-9,2019,9,0,30,30,1,0,0,14.8635114389448,14.8635114389448,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,12,4,1,490,274913.4261472999,184810.0083677744,135418.0038629525,96984.88238742584,4725.232641303152 -1661,2074,3735,3734,-9,-9,1,1,44,2,3,0,2,2,-9,0,4,8.519094147988453,8.552707061646553,0,5,6,-7.978748165339042,0,2,1,2019,12,0,40,40,1,0,0,18.21203827867187,18.21203827867187,0,0,0,0,0,1,1,0,7.641965776953459,0,48.87,58.55,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,490,274913.4261472999,184810.0083677744,135418.0038629525,96984.88238742584,4725.232641303152 -1661,2074,3736,-9,3734,3735,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-929.4195172635641,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,490,274913.4261472999,184810.0083677744,135418.0038629525,96984.88238742584,4725.232641303152 -1661,2074,3737,-9,3734,3735,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-952.7230603633271,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,490,274913.4261472999,184810.0083677744,135418.0038629525,96984.88238742584,4725.232641303152 -1661,2074,3738,-9,3734,3735,1,1,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-985.2876421695498,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,490,274913.4261472999,184810.0083677744,135418.0038629525,96984.88238742584,4725.232641303152 -1662,2075,3739,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.847753607381269,7.983610615129777,6.424219614007242,0,0,-955.4082143967091,0,2,1,2019,9,0,23,23,1,0,0,13.74271563055748,13.74271563055748,0,0,0,0,0,0,0,0,6.432071056652214,6.660843666438073,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,559,-71500.99038665148,19782.39632588658,0,0,705.1216954548573 -1662,2076,3740,-9,3739,-9,1,0,24,0,0,0,1,1,-9,0,4,8.513191138705645,8.294272103964117,0,0,0,-1008.124480293386,0,2,-9,2019,14,4,52,53,1,4,1,10.08950129595479,10.08950129595479,0,0,0,0,0,0,0,0,.5047396960679348,0,43.44,58.7,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1146,-255683.69371029,0,0,0,1401.293738362336 -1663,2077,3741,-9,3747,3745,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-983.2952964571452,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3742,-9,3747,3745,1,1,16,1,5,1,2,0,-9,0,4,0,0,0,0,0,-892.885155932226,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3743,-9,3747,3745,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1086.405823143685,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3744,-9,3747,3745,1,1,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-944.4755714135785,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3745,3747,3748,-9,1,1,46,1,5,0,1,1,-9,0,4,8.635888122068421,8.63603001070741,0,25,5,-79.84118107118108,0,3,3,2019,13,1,35,40,1,1,0,19.84349994915076,19.84349994915076,0,0,0,0,7,1,1,0,0,0,36.01,50.99,49,55,8.333333333333334,2,3,0,0,9,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3746,-9,3747,3745,1,0,15,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1008.533804991806,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2077,3747,3745,-9,-9,1,0,41,1,5,0,3,3,-9,0,4,0,0,0,25,-5,-71.25836963797968,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,36.01,50.99,8,2,3,0,0,0,7,3,1,768.1428571428571,-46513.31143566787,26073.55527655762,0,0,2805.373718331965 -1663,2078,3748,-9,-9,-9,1,0,78,1,5,0,2,2,-9,0,3,0,0,0,0,0,-1074.984182638088,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,325,0,0,0,0,181.1706934051168 -1663,2079,3749,-9,3747,3745,1,1,20,1,5,1,2,0,0,0,4,0,0,0,0,0,-955.9455422453482,-9,3,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,1290,-21089.0471246825,0,0,0,0 -1663,2080,3750,-9,3747,3745,1,0,19,1,5,1,3,0,0,0,4,0,0,0,0,0,-1034.347337790475,-9,3,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,2,1,582,-152640.198949163,0,0,0,0 -1664,2081,3751,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1003.778568846442,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.762076496965787,0,58.56,41.25,-9,-9,8.333333333333334,1,1,0,1,3,8,1,1,501,56807.66177340313,0,290319.9065223191,122014.4798596615,202.749666461165 -1665,2082,3752,3753,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.974938786110187,7.882322452929616,0,4,0,27.53326930244673,0,-9,-9,2019,20,7,44,44,1,7,0,7.465248857168167,7.465248857168167,0,0,0,0,0,1,1,0,0,0,45.32,54.77,35.79,46.84,6.666666666666667,1,1,0,1,4,1,3,1,500.3333333333333,23513.05979883585,27581.15932967661,0,0,1333.260438980258 -1665,2082,3753,3752,-9,-9,1,1,26,0,1,0,2,2,-9,1,4,0,0,0,4,0,35.95041064228911,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,46.84,45.32,54.77,6.666666666666667,1,1,0,0,6,1,3,1,500.3333333333333,23513.05979883585,27581.15932967661,0,0,1333.260438980258 -1665,2082,3754,-9,3752,3753,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.507637241735,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,500.3333333333333,23513.05979883585,27581.15932967661,0,0,1333.260438980258 -1666,2083,3755,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.128790862364017,8.291740683429916,0,0,-839.4058083361448,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.458681720351336,7.908007242197062,62.1,51.16,-9,-9,10,1,1,0,0,0,8,4,1,1088,1131756.518872157,507556.9875893893,456952.0633878252,0,1947.822822688016 -1667,2084,3756,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.845775428791504,7.521055455884608,0,0,0,-1108.961634494268,0,3,3,2019,15,5,38,33,1,5,0,7.290329295868246,7.290329295868246,0,0,0,0,0,0,0,0,0,0,47.5,42.26,-9,-9,3.333333333333333,1,1,0,0,8,4,3,0,652,135215.8359663782,81409.15277636985,218327.852466706,0,1180.321016733059 -1668,2085,3757,3758,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,8.137280535879617,8.525711876762415,35,1,-172.2907780000241,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.412886617718852,8.220647576498676,58.05,54.52,43.67,61.06,10,1,1,0,0,0,9,5,1,263.5,4477469.574734034,896778.4872608641,758500.3678003238,0,3805.846780006797 -1668,2085,3758,3757,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.120990703698878,8.129557868986803,0,35,-1,-75.59851447405686,0,2,2,2019,10,1,19,24,1,1,0,21.46759760528038,21.46759760528038,0,0,0,0,0,0,0,0,0,0,43.67,61.06,58.05,54.52,8.333333333333334,1,1,0,0,13,9,5,1,263.5,4477469.574734034,896778.4872608641,758500.3678003238,0,3805.846780006797 -1668,2086,3759,-9,3758,3757,1,0,27,0,0,0,1,1,-9,0,4,8.212501556938136,8.008854446921513,0,0,0,-952.8759934509577,0,1,1,2019,13,1,40,43,1,1,1,8.840323922276033,8.840323922276033,0,0,0,0,0,0,0,0,.1224875554745551,0,44.06,47.03,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1470,149982.0670995556,-97023.19522509673,0,0,1283.799146015831 -1669,2087,3760,3761,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.121067753906498,7.991665388310681,33,1,-48.91348534249897,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.893758140568642,8.160238779101826,60.27,49.27,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,521.5,1029491.411566796,654961.8548573217,343444.079603408,0,3348.884122249228 -1669,2087,3761,3760,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.854878296155937,8.41958735663572,8.043164588061238,33,-1,51.70810373473994,0,3,3,2019,7,0,10,11,1,0,0,11.25173895135669,11.25173895135669,0,0,0,0,0,1,1,0,4.206415092330895,7.851388376988769,57.16,56.15,60.27,49.27,8.333333333333334,1,1,0,0,9,7,5,1,521.5,1029491.411566796,654961.8548573217,343444.079603408,0,3348.884122249228 -1670,2088,3762,3763,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.444066676429511,7.30986675812146,38,0,-156.8231952630899,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8287414722597,7.580702133867707,58.72,43.42,57.42,49.34,8.333333333333334,1,1,0,0,4,9,3,1,1763,1511695.152767233,429543.2144061122,657920.9551375371,0,2673.134916715518 -1670,2088,3763,3762,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.615379548365529,6.305930467147041,38,0,131.8664652519324,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,5.21192610634813,0,0,1,1,0,2.200193192297578,6.557848477912526,57.42,49.34,58.72,43.42,8.333333333333334,1,1,0,0,1,9,3,1,1763,1511695.152767233,429543.2144061122,657920.9551375371,0,2673.134916715518 -1671,2089,3764,3765,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.979754605562475,7.659883366830717,0,8,3,-63.76054425940385,0,-9,-9,2019,10,0,40,40,1,1,0,8.138653759171893,8.138653759171893,0,0,0,0,0,0,0,0,0,0,51,48,45.81,58.99,7,1,1,0,0,1,4,4,1,1192,1038214.950144142,453904.2305990768,275907.2037695233,0,2597.6411329792 -1671,2089,3765,3764,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.063765161907529,7.67878081006153,41,-3,-143.0844342297915,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3811698993454,7.825855634246538,45.81,58.99,51,48,8.333333333333334,1,1,0,0,4,4,4,1,1192,1038214.950144142,453904.2305990768,275907.2037695233,0,2597.6411329792 -1672,2090,3766,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.262976139010057,8.276203621126298,0,0,0,-967.2747493572808,0,2,1,2019,15,3,37,39,1,3,0,14.13808882650737,14.13808882650737,0,0,0,0,0,0,0,0,3.684329878365424,0,45.18,54.77,-9,-9,8.333333333333334,1,1,0,0,3,10,5,1,208,34888.90640459982,13105.82524889811,0,0,1081.223319889519 -1673,2091,3767,3768,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.197402570719907,8.456663076183826,55,-1,-7.948860697121395,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.392744571213198,8.336974041296964,48.06,51.06,54.62,53.53,6.666666666666667,1,1,0,0,0,4,3,1,515.5,632219.8643179345,518785.3714111717,78437.00111480897,0,3111.256491582204 -1673,2091,3768,3767,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,1,15.58004086920645,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.583996512982039,0,54.62,53.53,48.06,51.06,8.333333333333334,1,1,0,0,0,4,3,1,515.5,632219.8643179345,518785.3714111717,78437.00111480897,0,3111.256491582204 -1674,2092,3769,3770,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,7,12,-46.07455939351443,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,53,47,5,1,1,0,0,9,9,3,1,738.5,511454.5427354634,434297.7099352945,219518.4906830106,0,2596.260870748095 -1674,2092,3770,3769,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.909915147903121,8.289775453824433,7,-12,154.8227521148304,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.556137942176189,53,47,52,45,7,1,1,0,0,0,9,3,1,738.5,511454.5427354634,434297.7099352945,219518.4906830106,0,2596.260870748095 -1675,2093,3771,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1118.297856486947,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.769514825114617,0,49.4,29.02,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1471,-169570.5978441903,59793.63567383153,0,0,2213.002975793156 -1675,2094,3772,-9,3771,-9,1,0,23,0,0,0,2,2,-9,0,4,7.924523733265088,7.874911833203583,0,0,0,-1068.069109484034,0,2,-9,2019,12,0,35,40,1,2,1,8.239964740586981,8.239964740586981,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,139,-19276.38031231271,0,0,0,1353.206925078712 -1675,2095,3773,-9,3771,-9,1,0,23,0,0,0,2,2,-9,0,4,7.865576443339481,7.770646657016817,0,0,0,-1008.579244702743,0,2,-9,2019,12,0,35,0,1,2,1,6.849892684863838,6.849892684863838,0,0,0,0,0,1,1,0,1.995825920157997,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,220,-9160.649068931536,0,0,0,1386.730837617237 -1676,2096,3774,3775,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,4.343178558016247,4.571633512817169,39,1,-43.24158595536447,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,4.052048824882414,4.075862581974453,58.62,52.91,55.12,42.1,8.333333333333334,1,1,0,0,2,6,3,1,854,1176226.60284958,509595.0533994297,311827.4546666089,0,1476.357656677084 -1676,2096,3775,3774,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.614181967238643,8.105195967453161,39,-1,73.2630751696653,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.73943736084781,7.984035882270565,55.12,42.1,58.62,52.91,8.333333333333334,1,1,0,0,7,6,3,1,854,1176226.60284958,509595.0533994297,311827.4546666089,0,1476.357656677084 -1677,2097,3776,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1071.695808672042,-9,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.93,49.45,-9,-9,1.666666666666667,1,1,0,0,1,12,1,0,269,41715.33031716464,0,0,0,730.8226566145769 -1678,2098,3777,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.98914015420021,6.938129977645847,0,0,-1001.53401754075,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,.1267833731370382,0,0,1,1,0,0,6.566198079925037,51,46,-9,-9,8,1,1,0,0,0,11,2,0,1345,354030.9887214198,253953.8327047799,162808.6748693771,0,1048.980223264743 -1679,2099,3778,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-972.6740664687574,0,2,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,17.62,27.15,-9,-9,1.666666666666667,1,1,0,0,3,10,1,0,856,-148442.162924815,0,0,0,1068.596029412548 -1680,2100,3779,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.526041648529803,8.236662264579351,0,0,0,-1013.645558564594,0,3,3,2019,14,2,38,37,1,2,0,11.07068446774256,11.07068446774256,0,0,0,0,0,1,1,0,6.382958501090779,0,43.25,51.98,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,210,309250.2147137037,137554.2403148891,0,0,1996.080808659023 -1681,2101,3780,-9,3782,3783,1,1,16,0,2,1,3,0,-9,0,5,0,3.18329683109235,2.912654674666347,0,0,-1063.421447606526,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,3.332708018095149,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,381.8,2978385.451356929,1787879.976092573,1199776.166590671,97093.50503488418,4074.828094658549 -1681,2101,3781,-9,3782,3783,1,1,17,0,2,1,2,0,0,0,5,0,4.142958819168632,3.978185961303568,0,0,-1178.456311295186,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.629495474654536,0,43.97,60.95,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,381.8,2978385.451356929,1787879.976092573,1199776.166590671,97093.50503488418,4074.828094658549 -1681,2101,3782,3783,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.318685618743485,8.431811756853634,0,4,-1,36.53632255460405,0,-9,-9,2019,18,7,30,30,1,7,0,14.84667069969911,14.84667069969911,0,0,0,0,0,0,0,0,0,0,45.89,38.81,57.06,57.76,6.666666666666667,1,1,0,0,3,9,4,1,381.8,2978385.451356929,1787879.976092573,1199776.166590671,97093.50503488418,4074.828094658549 -1681,2101,3783,3782,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.907557238677052,8.59732387747901,0,4,1,6.927634375927563,0,1,1,2019,7,0,41,38,1,0,0,17.41248825654046,17.41248825654046,0,0,0,0,0,0,0,0,6.940552994588065,0,57.06,57.76,45.89,38.81,8.333333333333334,1,1,0,0,10,9,4,1,381.8,2978385.451356929,1787879.976092573,1199776.166590671,97093.50503488418,4074.828094658549 -1681,2101,3784,-9,3782,3783,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.336484799967,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,381.8,2978385.451356929,1787879.976092573,1199776.166590671,97093.50503488418,4074.828094658549 -1682,2102,3785,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,5.057054183412998,5.185590943730478,0,0,-982.6796437232866,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,5.335940129851853,5.88492135963533,54.1,59.11,-9,-9,10,1,1,0,0,12,7,2,1,2523,-15560.0141535341,0,0,0,-221.7061560583887 -1683,2103,3786,3787,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,5.928931339224333,6.386999457232488,55,3,-52.38899183761544,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,132.8627563540454,0,0,1,1,0,5.342497289730399,5.873422985010356,50.42,20.76,52.65,51.64,8.333333333333334,1,1,0,0,0,9,2,1,592.5,245681.1952531724,0,346734.7556993419,0,2079.620586282545 -1683,2103,3787,3786,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.211323085977448,5.868725310952781,55,-3,-45.75039046811929,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.992755056908848,52.65,51.64,50.42,20.76,6.666666666666667,1,1,0,0,0,9,2,1,592.5,245681.1952531724,0,346734.7556993419,0,2079.620586282545 -1684,2104,3788,3789,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,5.684723181276909,5.397334434621774,0,1,6,72.92100269647337,-9,-9,-9,2019,0,0,32,0,1,0,0,.928884061947687,.928884061947687,0,0,0,0,0,0,0,0,0,0,51,56,57.56,34.56,0,1,1,0,0,5,11,3,0,891,-953.9538182574906,-9719.673992404238,0,0,1284.497076467649 -1684,2104,3789,3788,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.096010655129239,7.911566622474923,0,1,-6,-115.6598870239393,-9,3,-9,2019,8,0,42,0,1,0,0,9.388883850498026,9.388883850498026,0,0,0,0,0,0,0,0,0,0,57.56,34.56,51,56,6.666666666666667,1,1,0,0,11,11,3,0,891,-953.9538182574906,-9719.673992404238,0,0,1284.497076467649 -1685,2105,3790,-9,3792,3793,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.1377137966672,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,4,1,867,249713.4514507779,33380.70826588232,481472.9620216591,214184.5354878327,3101.0922385264 -1685,2105,3791,-9,3792,3793,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.730732098751,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,867,249713.4514507779,33380.70826588232,481472.9620216591,214184.5354878327,3101.0922385264 -1685,2105,3792,3793,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.379667742185376,8.320162606609449,0,15,-4,-182.9553002848556,0,3,3,2019,7,0,47,58,1,0,0,11.82180424505618,11.82180424505618,0,0,0,0,0,1,1,0,0,0,68.37,33.49,51.5,34.54,8.333333333333334,2,3,0,0,8,10,4,1,867,249713.4514507779,33380.70826588232,481472.9620216591,214184.5354878327,3101.0922385264 -1685,2105,3793,3792,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.615694018688838,7.561914746368128,0,15,4,-38.37520631794468,0,3,3,2019,11,0,46,25,1,0,0,5.917212335808717,5.917212335808717,0,0,0,0,0,1,1,0,0,0,51.5,34.54,68.37,33.49,6.666666666666667,2,3,0,0,7,10,4,1,867,249713.4514507779,33380.70826588232,481472.9620216591,214184.5354878327,3101.0922385264 -1686,2106,3794,-9,3796,3797,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.618513167076,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,612.25,222727.9886258438,181728.8490650975,206862.1486637999,108070.233993991,4175.334769070035 -1686,2106,3795,-9,3796,3797,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.5604056623491,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,612.25,222727.9886258438,181728.8490650975,206862.1486637999,108070.233993991,4175.334769070035 -1686,2106,3796,3797,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.523375134418194,7.530087157969315,0,21,-6,-15.71301946521612,0,-9,2,2019,20,8,30,30,1,8,0,8.685082797708528,8.685082797708528,0,0,0,0,0,0,0,0,0,0,33.64,53.56,44.75,56.39,8.333333333333334,1,1,0,0,12,2,5,1,612.25,222727.9886258438,181728.8490650975,206862.1486637999,108070.233993991,4175.334769070035 -1686,2106,3797,3796,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,9.113847690466217,9.26073244207924,0,21,6,77.35710919433328,0,2,2,2019,11,0,43,45,1,0,0,24.69613092345802,24.69613092345802,0,0,0,0,0,0,0,0,3.47948535322764,0,44.75,56.39,33.64,53.56,6.666666666666667,1,1,0,0,12,2,5,1,612.25,222727.9886258438,181728.8490650975,206862.1486637999,108070.233993991,4175.334769070035 -1687,2107,3798,-9,3799,-9,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-951.339829095546,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,9,5,1,1290.5,1522245.826003508,792313.2494357098,570281.3187919896,28547.69151677991,6615.997743140835 -1687,2107,3799,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.429859404085821,9.210119482406737,8.729637316102581,26,0,-34.39949395130999,0,3,3,2019,8,0,98,12,1,0,0,5.482617403660918,5.482617403660918,0,0,0,0,28,1,1,0,8.66541335944037,5.81924979975149,51.02,52.22,49,48,8.333333333333334,1,1,0,0,10,9,5,1,1290.5,1522245.826003508,792313.2494357098,570281.3187919896,28547.69151677991,6615.997743140835 -1688,2108,3800,-9,3802,3803,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6800955810633,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,778.5,235820.7586398934,175687.0097652177,0,0,2913.495105158905 -1688,2108,3801,-9,3802,3803,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.991165931785,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,778.5,235820.7586398934,175687.0097652177,0,0,2913.495105158905 -1688,2108,3802,3803,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.335303626959733,7.290793407258314,0,7,-3,-38.96296760047734,0,-9,-9,2019,8,0,24,40,1,0,0,7.556634741364452,7.556634741364452,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.64,55.03,8.333333333333334,1,1,0,0,9,5,3,0,778.5,235820.7586398934,175687.0097652177,0,0,2913.495105158905 -1688,2108,3803,3802,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.340973565664017,8.40784508575747,0,7,3,-16.6250622842696,0,-9,-9,2019,13,1,40,85,1,1,0,10.2796163363197,10.2796163363197,0,0,0,0,0,1,1,0,0,0,38.64,55.03,57.16,56.15,8.333333333333334,1,1,0,0,7,5,3,0,778.5,235820.7586398934,175687.0097652177,0,0,2913.495105158905 -1689,2109,3804,3805,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.177120994727424,9.022379697511068,0,39,-1,142.6911685832893,0,3,3,2019,8,0,50,60,1,0,0,19.63891591793364,19.63891591793364,0,0,0,0,0,0,0,0,0,0,44.19,58.01,49.04,55.86,8.333333333333334,1,1,0,0,10,9,5,1,844.5,912904.3203933276,268479.5930572835,389650.2601689253,0,4366.279671456726 -1689,2109,3805,3804,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.995955100536706,8.144904489050479,0,39,1,97.77429137743057,0,2,1,2019,11,0,20,25,1,0,0,20.70597494189023,20.70597494189023,0,0,0,0,0,0,0,0,4.739778907326046,0,49.04,55.86,44.19,58.01,8.333333333333334,1,1,0,0,9,9,5,1,844.5,912904.3203933276,268479.5930572835,389650.2601689253,0,4366.279671456726 -1690,2110,3806,3807,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,62,0,-147.2088641697302,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,2.50289845393151,0,74.5,1,1,0,1.185398161619243,0,57.92,38.59,57.44,18.08,8.333333333333334,1,1,0,0,0,5,2,1,311.5,338360.1812892713,42802.30154515088,129973.6895985938,0,727.0655846756156 -1690,2110,3807,3806,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.009244500929929,6.043260490712363,62,0,-101.1165231501727,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.988362922274655,5.815405072626304,57.44,18.08,57.92,38.59,10,1,1,0,0,0,5,2,1,311.5,338360.1812892713,42802.30154515088,129973.6895985938,0,727.0655846756156 -1691,2111,3808,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.993185271782219,5.366310137948775,0,0,-919.6052242305756,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.491839847428365,32.6,54.09,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1376,-96060.45666619125,72082.84827223123,25284.63452954794,34719.80096245537,681.7100896028428 -1692,2112,3809,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.527119203878998,8.404372478829401,0,0,0,-920.3863251372022,0,2,2,2019,8,0,38,41,1,0,0,15.28838933082645,15.28838933082645,0,0,0,0,0,1,1,0,.7652354237019386,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,592,-27645.68668871862,-45894.59050417126,0,0,1823.410796109354 -1693,2113,3810,3813,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.26856011957387,8.410458659642833,0,14,8,-52.32265099973738,0,2,2,2019,12,0,45,40,1,0,0,9.912119557070127,9.912119557070127,0,0,0,0,0,1,1,0,0,0,46.67,55.57,50.51,42.98,5,1,1,0,0,9,10,4,1,1170.75,2720501.662456603,1886941.235711439,511242.9271840767,0,3087.975522532867 -1693,2113,3811,-9,3813,3810,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.539556477686,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,4,1,1170.75,2720501.662456603,1886941.235711439,511242.9271840767,0,3087.975522532867 -1693,2113,3812,-9,3813,3810,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.4750129593209,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,1170.75,2720501.662456603,1886941.235711439,511242.9271840767,0,3087.975522532867 -1693,2113,3813,3810,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.634726011181113,7.322800357034302,0,14,-8,-22.20008214188012,0,3,2,2019,10,0,14,16,1,0,0,14.31320724415699,14.31320724415699,0,0,0,0,0,1,1,0,6.459008781466382,0,50.51,42.98,46.67,55.57,6.666666666666667,2,3,0,0,7,10,4,1,1170.75,2720501.662456603,1886941.235711439,511242.9271840767,0,3087.975522532867 -1694,2114,3814,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-869.2637916942863,0,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,11,1,0,289,21198.17005827522,-23361.55260299879,0,0,889.1459063023568 -1695,2115,3815,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,5.531639672017847,5.63801134011328,0,0,-953.8414159563922,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,.9264867850863723,0,31.48438391568347,0,1,1,0,0,5.784975538900266,44.61,30.52,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,743,159673.0766090207,195486.7909128014,105548.5274016994,0,591.5454098056674 -1696,2116,3816,3817,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.589349635452239,6.822855028704612,7,-7,-118.6265864550572,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.680763219988328,6.920511923297075,57.16,56.15,54.95,44.79,8.333333333333334,1,1,0,0,6,10,3,1,1373.5,643105.9785871457,344021.5915390556,187874.1874291947,0,2228.438675843863 -1696,2116,3817,3816,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.993329920268728,7.003815539149969,7,7,-82.13845640177639,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.560951270449646,7.113225231347761,54.95,44.79,57.16,56.15,10,1,1,0,0,0,10,3,1,1373.5,643105.9785871457,344021.5915390556,187874.1874291947,0,2228.438675843863 -1697,2117,3818,3819,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,9,1,-13.93267516201185,0,2,1,2019,12,0,0,0,4,0,0,0,0,1,2.555605415096839,13.47425509393515,18.20861779266337,2,1,1,0,0,0,37.52,52.14,32.43,51.92,5,1,1,0,0,4,7,5,1,231.5,1408502.255993338,953911.9047514574,488846.3075647356,0,3623.019499966933 -1697,2117,3819,3818,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,8.833892359324112,8.926556237481071,6.821348801371804,9,-1,16.21324326513041,0,2,2,2019,16,5,20,12,1,5,0,42.66650058595619,42.66650058595619,0,0,0,0,7,1,1,0,3.961607169798922,6.88868352380365,32.43,51.92,37.52,52.14,8.333333333333334,1,1,0,0,11,7,5,1,231.5,1408502.255993338,953911.9047514574,488846.3075647356,0,3623.019499966933 -1698,2118,3820,3821,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.685116269485537,8.821925128459146,0,1,-2,52.27572147741672,-9,-9,-9,2019,6,1,47,0,1,1,0,13.70395544468188,13.70395544468188,0,0,0,0,0,0,0,0,.4646658429289082,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,2,10,5,0,282,80291.63327189552,-48319.98299113602,0,0,4281.920132207078 -1698,2118,3821,3820,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.494743566676988,8.785367799260483,0,1,2,-16.95134751324786,0,-9,-9,2019,11,1,40,39,1,1,0,16.08163647335243,16.08163647335243,0,0,0,0,0,0,0,0,2.41256051958576,0,55.09,55.87,57.16,56.15,1.666666666666667,1,1,0,0,4,10,5,0,282,80291.63327189552,-48319.98299113602,0,0,4281.920132207078 -1699,2119,3822,3823,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,33,-2,55.38535871290414,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,6.971450097012188,0,49,48,58.32,50.22,7,1,1,0,0,0,5,5,1,1082.5,1198736.508816177,961496.2232356647,102117.0230190768,6063.843352980941,8118.997282617607 -1699,2119,3823,3822,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.866900155871901,9.654258105680919,0,33,2,-30.25546654731961,0,2,1,2019,6,0,24,21,1,0,0,71.2121216897845,71.2121216897845,0,0,0,0,0,0,0,0,8.792214216806713,0,58.32,50.22,49,48,8.333333333333334,1,1,0,0,9,5,5,1,1082.5,1198736.508816177,961496.2232356647,102117.0230190768,6063.843352980941,8118.997282617607 -1700,2120,3824,3825,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.693951762593031,9.631343397240062,0,16,-1,-55.26747648842163,0,3,3,2019,7,0,70,72,1,0,0,22.60151233838604,22.60151233838604,0,0,0,0,0,0,0,0,2.424531623588937,0,58.74,40.91,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,651.75,199978.4509138907,102447.9204387184,400864.672262201,285096.3608235836,4926.759921050739 -1700,2120,3825,3824,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,17,1,-7.399891299805853,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.40399183726876,0,48.87,58.55,58.74,40.91,6.666666666666667,1,1,0,0,2,7,5,1,651.75,199978.4509138907,102447.9204387184,400864.672262201,285096.3608235836,4926.759921050739 -1700,2120,3826,-9,3825,3824,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.9813725164537,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,651.75,199978.4509138907,102447.9204387184,400864.672262201,285096.3608235836,4926.759921050739 -1700,2120,3827,-9,3825,3824,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.1865289287638,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,651.75,199978.4509138907,102447.9204387184,400864.672262201,285096.3608235836,4926.759921050739 -1701,2121,3828,-9,3829,3831,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.585665100091,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,387,989382.3489951681,809015.797394346,224315.0633063742,75209.19130381753,3675.743298214365 -1701,2121,3829,3831,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,7.230406088104164,6.998751220445286,0,18,0,-169.6548032684851,0,2,2,2019,6,0,12,36,1,0,0,16.46138887455811,16.46138887455811,0,0,0,0,2,1,1,0,0,0,57.73,54.53,58.72,51.29,8.333333333333334,1,1,0,0,10,7,4,1,387,989382.3489951681,809015.797394346,224315.0633063742,75209.19130381753,3675.743298214365 -1701,2121,3830,-9,3829,3831,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.6924206235591,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,387,989382.3489951681,809015.797394346,224315.0633063742,75209.19130381753,3675.743298214365 -1701,2121,3831,3829,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.797138625013464,8.804870299358601,0,18,0,-9.29122280252272,0,2,3,2019,4,0,40,40,1,0,0,20.18956143279565,20.18956143279565,0,0,0,0,0,1,1,0,0,0,58.72,51.29,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,387,989382.3489951681,809015.797394346,224315.0633063742,75209.19130381753,3675.743298214365 -1702,2122,3832,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.915542889820337,6.97482304305865,0,0,0,-1026.763498119593,0,-9,-9,2019,13,2,20,22,1,2,0,5.825694391842021,5.825694391842021,0,0,0,0,0,0,0,0,5.934231572101513,0,56.45,35.13,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,121,-51231.01025552431,0,0,0,694.1209525737496 -1702,2123,3833,-9,3832,-9,1,0,25,0,0,0,2,2,-9,0,5,7.748420949634013,7.707446795361473,0,0,0,-924.7742784906382,0,2,-9,2019,3,0,37,37,1,0,1,7.902374438967484,7.902374438967484,0,0,0,.0466068580025087,27,0,0,0,0,0,53.89,55.07,-9,-9,1.666666666666667,1,1,0,0,6,10,3,1,665,-66375.78461100659,-103326.377950629,0,0,1424.692553937976 -1703,2124,3834,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.32496423596505,7.108423312875445,0,0,-1032.558411878987,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,28.6835066465255,0,0,1,1,0,3.826873132640683,7.10924702152126,63.83,11.31,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,402,634868.4399992267,158325.0070743711,46632.35107026611,0,1574.802708639706 -1703,2125,3835,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1030.558319500472,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,48.53,44.13,-9,-9,10,1,1,0,0,0,11,1,1,551,-66717.30394443707,0,0,0,769.1645742130675 -1704,2126,3836,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,6.592414733491755,6.737511539355914,0,0,-916.4792884813648,0,2,2,2019,28,12,0,0,4,12,0,0,0,1,6.355122101370907,0,0,0,1,1,0,3.134829181133327,6.773345707040221,35.64,25.41,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,670,366718.1743292797,158603.7219525435,160750.0246603731,0,1557.308752484586 -1705,2127,3837,-9,-9,3838,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-1037.446678955066,-9,-9,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,5,1,1,0,1,1,4,1,0,1399,79460.99067374796,0,0,0,531.0104139045728 -1705,2128,3838,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.734084456184378,7.830159823431069,0,0,0,-938.7439025804728,0,-9,-9,2019,20,8,50,0,1,8,0,5.204514698719508,5.204514698719508,0,0,0,0,0,1,1,0,0,0,33.76,56.35,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,220,293662.4928542114,22274.22444235347,77402.69629389964,0,1322.240926372373 -1706,2129,3839,3840,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.884672269362817,7.737398749019016,0,23,3,108.3189121931382,0,2,2,2019,9,0,45,42,1,0,0,8.931198289509998,8.931198289509998,0,0,0,0,71.5,1,1,0,.7287305603866358,0,54.69,57.47,27.98,26.63,8.333333333333334,1,1,0,0,11,6,3,1,1291.5,74372.48513882286,0,163977.3582034158,44607.53243146733,1833.756446013471 -1706,2129,3840,3839,-9,-9,1,1,46,0,1,0,3,3,-9,1,1,0,0,0,23,-3,134.9588068429036,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,27.98,26.63,54.69,57.47,6.666666666666667,1,1,0,0,5,6,3,1,1291.5,74372.48513882286,0,163977.3582034158,44607.53243146733,1833.756446013471 -1707,2130,3841,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.979119010413083,7.138992071378996,0,0,-1024.568514578324,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.715326389289547,12.31028192237908,22.78735479032671,0,1,1,0,4.714149825823615,6.93090366745102,51.78,33.05,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1784,870878.6745026108,260578.2187620717,190465.0859538615,0,1433.475027126136 -1708,2131,3842,-9,3843,3844,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.1318615724416,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1002.666666666667,176679.0900290863,73258.76477138219,164730.4556307732,76611.67200465004,2393.150437241054 -1708,2131,3843,3844,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,1,0,-81.07632786155436,-9,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,27.32,57.85,50,57,5,1,1,0,0,11,12,4,1,1002.666666666667,176679.0900290863,73258.76477138219,164730.4556307732,76611.67200465004,2393.150437241054 -1708,2131,3844,3843,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.88469476472322,8.809079017994888,0,1,0,33.07802866612898,-9,-9,-9,2019,10,0,46,0,1,1,0,13.47889419389413,13.47889419389413,0,0,0,0,7,1,1,0,0,0,50,57,27.32,57.85,8.333333333333334,1,1,0,0,11,12,4,1,1002.666666666667,176679.0900290863,73258.76477138219,164730.4556307732,76611.67200465004,2393.150437241054 -1709,2132,3845,3848,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,7.084369040913147,7.1520247800612,0,9,-1,51.83748852959766,0,-9,-9,2019,10,0,25,40,1,1,0,7.963982530905099,7.963982530905099,0,0,0,0,0,1,1,0,0,0,51,56,49,55,7,2,3,0,0,12,8,2,1,744.75,41672.61183697069,-53195.68379675065,0,0,1408.295816678543 -1709,2132,3846,-9,3848,3845,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1027.949682908876,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,2,3,-9,0,0,8,2,1,744.75,41672.61183697069,-53195.68379675065,0,0,1408.295816678543 -1709,2132,3847,-9,3848,3845,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.8027418259398,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,744.75,41672.61183697069,-53195.68379675065,0,0,1408.295816678543 -1709,2132,3848,3845,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,0,0,0,9,1,-80.71787936541806,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,56,7,2,3,0,0,0,8,2,1,744.75,41672.61183697069,-53195.68379675065,0,0,1408.295816678543 -1709,2133,3849,-9,3848,3845,1,1,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-954.4889969326741,-9,3,3,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.59,44.75,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,201,0,0,0,0,0 -1709,2134,3850,-9,3848,3845,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1053.152800395522,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,1,1,390,0,0,0,0,0 -1710,2135,3851,3852,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.804749081009008,7.607207388269366,7,0,-29.73410155115813,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.771932934109303,7.606186965343451,63.98,38.08,54.37,54.8,8.333333333333334,1,1,0,0,0,1,3,1,744,907569.0746288657,507597.008009691,196823.0190624316,0,2420.526684992416 -1710,2135,3852,3851,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.557858066994445,4.760886229368322,7,0,18.60648512517389,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.387315921407974,54.37,54.8,63.98,38.08,8.333333333333334,1,1,0,0,2,1,3,1,744,907569.0746288657,507597.008009691,196823.0190624316,0,2420.526684992416 -1711,2136,3853,3855,-9,-9,1,1,59,0,2,0,1,1,-9,0,3,8.837929200392585,9.11849613703475,0,10,9,60.29906483631828,0,3,3,2019,8,0,45,41,1,0,0,23.86233232893796,23.86233232893796,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,1.666666666666667,1,1,0,0,11,4,4,1,1030.75,355115.2489487809,328771.3473754769,167399.8392429614,116704.2432729379,3037.72754988081 -1711,2136,3854,-9,3855,3853,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1073.976892422908,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,4,1,1030.75,355115.2489487809,328771.3473754769,167399.8392429614,116704.2432729379,3037.72754988081 -1711,2136,3855,3853,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,0,0,0,10,0,123.1452053772598,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,58.32,50.22,6.666666666666667,1,1,0,0,3,4,4,1,1030.75,355115.2489487809,328771.3473754769,167399.8392429614,116704.2432729379,3037.72754988081 -1711,2136,3856,-9,3855,3853,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-870.224573220615,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,1.666666666666667,1,1,0,1,0,4,4,1,1030.75,355115.2489487809,328771.3473754769,167399.8392429614,116704.2432729379,3037.72754988081 -1712,2137,3857,-9,3861,3858,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1011.267873835395,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,1.435954525560968,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,5,3,1,1082.8,96362.36927829336,27969.50899899939,0,0,2425.617364788704 -1712,2137,3858,3861,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.135487794905858,8.305574902977144,0,10,-1,-36.72261241634818,0,-9,-9,2019,7,1,55,45,1,1,0,7.170079249270144,7.170079249270144,0,0,0,0,0,1,0,1,0,0,60.29,52.11,57.63,39.4,10,1,1,0,0,11,5,3,1,1082.8,96362.36927829336,27969.50899899939,0,0,2425.617364788704 -1712,2137,3859,-9,3861,3858,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1064.341822109485,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,5,3,1,1082.8,96362.36927829336,27969.50899899939,0,0,2425.617364788704 -1712,2137,3860,-9,3861,3858,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.4365266075456,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1082.8,96362.36927829336,27969.50899899939,0,0,2425.617364788704 -1712,2137,3861,3858,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.242766388232982,6.222332398177895,0,28,1,-71.160077711147,0,2,2,2019,7,1,10,0,1,1,0,5.897791112104017,5.897791112104017,0,0,0,0,0,1,0,1,0,0,57.63,39.4,60.29,52.11,10,1,1,0,0,1,5,3,1,1082.8,96362.36927829336,27969.50899899939,0,0,2425.617364788704 -1713,2138,3862,3863,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,8.027986035888192,8.2645288810279,7.074842988680953,7,2,-42.36581999580567,0,3,3,2019,9,2,40,40,1,2,0,7.764452042359739,7.764452042359739,0,0,0,0,7,1,1,0,4.266339411222667,6.882964873986614,50.68,28.49,57.34,39.89,5,1,1,0,0,6,12,5,1,259,570499.596494904,266159.1228775231,138526.0193338549,0,4004.452522549274 -1713,2138,3863,3862,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.548473538746828,8.406221135741948,0,7,-2,-131.6591133486522,0,2,3,2019,7,1,35,35,1,1,0,16.64297152839249,16.64297152839249,0,0,0,0,14.5,1,1,0,4.532741827700732,0,57.34,39.89,50.68,28.49,8.333333333333334,1,1,0,0,8,12,5,1,259,570499.596494904,266159.1228775231,138526.0193338549,0,4004.452522549274 -1714,2139,3864,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-911.2027381837878,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,4,1,1,356,-46173.27436986698,0,0,0,185.6732612558582 -1715,2140,3865,3868,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.974051672048821,8.991756296957915,0,7,3,29.19040965155222,0,-9,-9,2019,10,1,50,50,1,1,0,19.4862390597585,19.4862390597585,0,0,0,0,0,1,1,0,0,0,48.28,60.18,57.33,53.46,6.666666666666667,4,2,0,0,12,7,5,1,520,-63212.6060218371,66764.62542425128,0,0,2762.502725457569 -1715,2140,3866,-9,3868,3865,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-898.4534015751771,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.984268466583926,0,44,59,-9,-9,10,1,1,0,0,3,7,5,1,520,-63212.6060218371,66764.62542425128,0,0,2762.502725457569 -1715,2140,3867,-9,3868,3865,1,1,10,0,1,1,3,0,-9,0,2,0,0,0,0,0,-905.5732317345571,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,4,2,-9,0,0,7,5,1,520,-63212.6060218371,66764.62542425128,0,0,2762.502725457569 -1715,2140,3868,3865,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,6.866292766875325,7.037373594002677,0,15,-3,16.91402308184444,0,2,2,2019,6,0,26,38,1,0,0,4.487090646900189,4.487090646900189,0,0,0,0,0,1,1,0,1.794450852130443,0,57.33,53.46,48.28,60.18,8.333333333333334,1,1,0,0,12,7,5,1,520,-63212.6060218371,66764.62542425128,0,0,2762.502725457569 -1716,2141,3869,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.364828209700484,8.276977172302979,0,0,0,-939.2421869342484,0,2,3,2019,11,1,35,35,1,1,0,12.70709188382317,12.70709188382317,0,0,0,0,0,1,1,0,2.522746484429848,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,349,130630.1667658256,-46107.87061414823,0,0,1714.092612659884 -1717,2142,3870,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.64578061029676,5.720748475166635,0,0,-868.6695073582009,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.536128596768319,5.386591842895246,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,653,92721.73671987472,-2405.554359168571,386749.6380572141,0,727.8760588647822 -1718,2143,3871,3872,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,7.073857444200892,6.386710071746958,8,-2,99.21533877261697,0,2,2,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.737876234400662,6.363170523064793,24.93,19.95,35.78,55.1,3.333333333333333,1,1,0,0,0,10,3,1,258.5,736225.0772524341,459235.3182121416,159372.9181941584,0,1961.812637722849 -1718,2143,3872,3871,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.246724748275497,6.605908012526069,8,2,29.4183069945421,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.654082327247597,7.3850470522933,35.78,55.1,24.93,19.95,6.666666666666667,1,1,0,0,10,10,3,1,258.5,736225.0772524341,459235.3182121416,159372.9181941584,0,1961.812637722849 -1719,2144,3873,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.019316837371,0,2,3,2019,23,11,0,37,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,29.51,47.63,-9,-9,0,1,1,1,1,7,2,1,0,262,-44850.7008181727,0,0,0,300.5687343552804 -1720,2145,3874,3875,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.104539382252732,8.253701710393377,0,5,-3,-84.67468789505193,0,-9,-9,2019,10,0,37,37,1,0,0,8.429757787010724,8.429757787010724,0,0,0,0,0,0,0,0,0,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,367,7374.553404358463,110142.4090138127,0,0,2883.235581655561 -1720,2145,3875,3874,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.111424188011396,7.997002803284109,0,5,3,-88.05573813863145,0,2,2,2019,7,0,41,38,1,0,0,11.89260247111378,11.89260247111378,0,0,0,0,0,0,0,0,1.271459123495639,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,7,9,4,1,367,7374.553404358463,110142.4090138127,0,0,2883.235581655561 -1721,2146,3876,3877,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,40,-1,-20.63065024456872,-9,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,57.16,56.15,6.666666666666667,1,1,0,0,0,7,3,1,747,946816.5824817441,187924.5334016957,753852.2908603024,0,3148.59645900787 -1721,2146,3877,3876,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.612405350604436,7.7329759580946,1,1,45.97581792000596,-9,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.0181957421467211,7.858322400035379,57.16,56.15,41.47,58.08,8.333333333333334,1,1,0,0,7,7,3,1,747,946816.5824817441,187924.5334016957,753852.2908603024,0,3148.59645900787 -1721,2147,3878,-9,3876,3877,1,1,26,0,0,0,2,2,-9,0,5,8.201958542849324,8.159466405349184,0,0,0,-938.7560401039013,-9,2,3,2019,9,2,52,0,1,2,0,8.48990089060527,8.48990089060527,0,0,0,0,0,1,1,0,5.384622423761973,0,47.9,56.38,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,589,0,0,0,0,2182.193374995732 -1722,2148,3879,3880,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,9,-14,9.718865763107489,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.6542071465560979,0,55.19,54.26,63.24,47.92,8.333333333333334,1,1,0,0,8,7,2,1,279.5,524297.1109788828,298777.9505323948,326839.1446797868,0,1939.179739187404 -1722,2148,3880,3879,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.216180121693509,7.248465291080264,43,14,34.5998990665738,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.650289082932556,63.24,47.92,55.19,54.26,8.333333333333334,1,1,0,0,8,7,2,1,279.5,524297.1109788828,298777.9505323948,326839.1446797868,0,1939.179739187404 -1723,2149,3881,3882,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.940226316181632,8.093799622751344,0,9,-5,144.6645292271102,0,2,2,2019,10,0,35,35,1,0,0,10.37513996619377,10.37513996619377,0,0,0,0,0,0,0,0,.5510166335601411,0,58.72,51.29,56.81,27.06,8.333333333333334,1,1,0,0,10,11,4,1,957.5,675154.1102338413,337612.9152099089,278564.4576307121,57689.75292501686,2741.804427722992 -1723,2149,3882,3881,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.693522125371547,7.664217654205578,9,5,-17.06956514889648,0,2,2,2019,7,1,0,93,4,1,0,0,0,0,0,0,0,0,0,0,0,1.290210759796159,7.742035803999756,56.81,27.06,58.72,51.29,10,1,1,0,0,9,11,4,1,957.5,675154.1102338413,337612.9152099089,278564.4576307121,57689.75292501686,2741.804427722992 -1723,2150,3883,-9,3882,3881,1,1,23,0,0,0,2,2,-9,0,4,6.974633089522953,7.025876723229946,0,0,0,-924.7772175833305,-9,1,2,2019,7,1,22,0,1,1,1,8.259553909829501,8.259553909829501,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,8,11,3,1,302,148821.434522053,55888.2314106741,0,0,3818.325547530671 -1724,2151,3884,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,6.910553351516794,6.505412886762748,21,12,109.0560130053842,0,-9,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1.848365794549427,6.8660826980753,25.38,40.48,46.88,43.66,1.666666666666667,1,1,1,1,8,6,3,1,735,626733.1525467621,268663.7540549767,0,0,799.6379916187632 -1724,2152,3885,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,0,7.696013632750603,7.555220389401883,11,-12,-32.70068244776885,0,-9,-9,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,6.888448451584519,7.224194993525071,46.88,43.66,25.38,40.48,3.333333333333333,1,1,1,0,10,6,3,1,832,135540.5804898262,-42600.5211853443,140841.2806725532,52002.17588387884,1217.449684937559 -1725,2153,3886,-9,-9,-9,1,0,70,0,1,0,3,3,-9,0,2,0,6.00988051612329,6.156299096329731,0,0,-908.5789986258984,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.084478024932141,0,43.3,48.12,-9,-9,5,1,1,0,0,0,10,2,1,454,251373.7469344145,-17371.27101118242,212412.4215696992,0,122.4593499457766 -1725,2154,3887,3889,3886,-9,1,1,46,0,1,0,2,2,-9,0,2,9.023409523062394,9.019400014692367,0,7,-6,-98.8945413733892,0,2,2,2019,11,0,43,40,1,0,0,26.62951808752877,26.62951808752877,0,0,0,0,0,1,1,0,0,0,54.77,42.67,57.16,56.15,5,1,1,0,0,8,10,5,1,297.3333333333333,697895.4670546075,527750.867567995,201921.2346325645,55269.85021635997,6586.146545458653 -1725,2154,3888,-9,3889,3887,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-965.8240000126973,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,297.3333333333333,697895.4670546075,527750.867567995,201921.2346325645,55269.85021635997,6586.146545458653 -1725,2154,3889,3887,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.258686048492171,8.890600498693853,0,7,6,-51.55477758851826,0,2,2,2019,9,0,40,40,1,0,0,22.33611491733939,22.33611491733939,0,0,0,0,0,1,1,0,3.275837718768973,0,57.16,56.15,54.77,42.67,8.333333333333334,1,1,0,0,8,10,5,1,297.3333333333333,697895.4670546075,527750.867567995,201921.2346325645,55269.85021635997,6586.146545458653 -1726,2155,3890,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.835733254969844,8.95914360311483,0,0,0,-1155.621698532865,-9,3,2,2019,11,0,60,0,1,0,0,13.52275068153383,13.52275068153383,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,6.666666666666667,1,1,0,0,13,6,5,1,777,246473.4615595869,114710.2071169597,121721.6110746964,0,2177.386140970932 -1727,2156,3891,3892,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.898068066317971,6.61960629547176,0,1,0,5.671314185012266,-9,3,2,2019,10,0,70,0,1,0,0,1.421540593658423,1.421540593658423,0,0,0,0,0,1,1,0,2.112183925122076,0,61.01,44.96,59.72,32.15,8.333333333333334,1,1,0,0,8,11,2,0,428,342740.2178012955,49827.90425968208,162916.8469858606,2582.477066817733,1723.720296226178 -1727,2156,3892,3891,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,6.715340967831054,6.799949385526631,0,1,0,43.18672569566876,-9,3,2,2019,7,0,50,0,1,0,0,1.867107095938552,1.867107095938552,0,0,0,0,0,1,1,0,0,0,59.72,32.15,61.01,44.96,8.333333333333334,1,1,0,0,4,11,2,0,428,342740.2178012955,49827.90425968208,162916.8469858606,2582.477066817733,1723.720296226178 -1727,2157,3893,-9,3892,3891,1,1,22,0,0,0,2,2,-9,0,5,8.935241820458611,9.088575468087086,4.769555931140842,0,0,-1108.487939302883,-9,3,2,2019,7,0,70,0,1,0,1,13.58735148286094,13.58735148286094,0,0,0,0,0,1,1,0,5.970010457488579,5.144482524613649,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,249,147363.6229121925,-1479.643553820216,0,0,3324.863196121385 -1727,2158,3894,-9,3892,3891,1,1,19,0,0,0,2,2,-9,0,4,8.545457871283229,8.442984241360815,0,0,0,-1022.641923198035,-9,3,2,2019,6,0,70,0,1,0,1,8.998521007795452,8.998521007795452,0,0,0,0,0,1,1,0,0,0,49.27,56.95,-9,-9,8.333333333333334,1,1,0,0,4,11,5,0,171,-197727.2308188489,8093.020439991125,0,0,1933.246383307058 -1728,2159,3895,3896,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,9.09008088667445,9.160234265940257,0,10,-2,-147.1061842733546,0,2,2,2019,17,6,57,105,1,6,0,19.03451275345792,19.03451275345792,0,0,0,0,0,0,0,0,3.69346114208096,0,36.89,57.17,47.47,51.08,6.666666666666667,1,1,0,0,11,7,5,1,1757.333333333333,2388856.355830241,1573223.642417431,1195184.353766102,212189.5818512736,7763.508875191767 -1728,2159,3896,3895,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.45777312382357,9.393242329640362,0,10,2,37.46773160700035,0,2,2,2019,9,0,55,60,1,0,0,30.33926100777521,30.33926100777521,0,0,0,0,0,0,0,0,4.856314519851503,0,47.47,51.08,36.89,57.17,10,1,1,0,0,11,7,5,1,1757.333333333333,2388856.355830241,1573223.642417431,1195184.353766102,212189.5818512736,7763.508875191767 -1728,2159,3897,-9,3895,3896,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.6025010777153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1757.333333333333,2388856.355830241,1573223.642417431,1195184.353766102,212189.5818512736,7763.508875191767 -1729,2160,3898,3899,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.925642257340078,9.223368688113704,0,6,3,-22.21150690423621,0,-9,-9,2019,6,0,40,38,1,0,0,24.57669343602253,24.57669343602253,0,0,0,0,0,0,0,0,1.630575658932653,0,57.06,57.76,38.21,54.03,10,1,1,0,0,9,8,5,1,1075,389903.1029019332,78785.57026641337,239090.551065311,32570.98028748629,3285.200284685934 -1729,2160,3899,3898,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,6.849359678365407,6.594861901496464,0,6,-3,-58.94873316556961,0,2,2,2019,23,11,15,0,1,11,0,5.378238633933412,5.378238633933412,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.06,57.76,5,1,1,0,0,7,8,5,1,1075,389903.1029019332,78785.57026641337,239090.551065311,32570.98028748629,3285.200284685934 -1730,2161,3900,3901,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.64759062331701,9.54539818301034,7.093744924800915,41,2,-33.17095756696015,0,3,2,2019,7,0,40,40,1,0,0,33.2276534636742,33.2276534636742,0,0,0,0,0,0,0,0,4.080532401053675,7.734983620060478,60.12,54.8,57.16,56.15,1.666666666666667,1,1,0,0,12,6,5,1,662,2723074.829232397,1910806.359211553,334054.3276982651,0,4741.279404980179 -1730,2161,3901,3900,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.485509031555996,7.097668893125769,41,-2,-81.51962816501936,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.939962627731623,7.230454982940358,57.16,56.15,60.12,54.8,10,1,1,0,0,9,6,5,1,662,2723074.829232397,1910806.359211553,334054.3276982651,0,4741.279404980179 -1731,2162,3902,3903,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,6.912737361344286,7.764335818910759,7.386880730984799,3,3,-201.2298418546689,0,3,3,2019,9,0,37,37,1,0,0,3.465948644121903,3.465948644121903,0,0,0,0,0,1,1,0,6.947169897934281,7.422828768575694,52,54.51,38.15,42.16,6.666666666666667,1,1,0,0,7,1,3,1,1120.5,170393.2308993864,8546.707840574716,174733.4607538293,35324.1738353429,2305.173985612276 -1731,2162,3903,3902,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,3,-3,-39.78789343002258,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,42.16,52,54.51,3.333333333333333,1,1,0,1,0,1,3,1,1120.5,170393.2308993864,8546.707840574716,174733.4607538293,35324.1738353429,2305.173985612276 -1732,2163,3904,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.12116124772876,7.400499461013283,0,0,-869.3448794092294,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.345655682393046,6.703975668546557,38.74,61.79,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,2935,433158.2619994321,152984.2393578065,349872.8595297543,0,1645.411729307503 -1733,2164,3905,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.613390622297452,8.706690328482114,0,0,0,-1051.902064243311,0,2,1,2019,9,0,40,40,1,0,0,16.39222818549016,16.39222818549016,0,0,0,0,0,0,0,0,2.038607058187278,0,42.27,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,1138,7733.119694632816,-87655.93120206975,0,0,1745.946424922551 -1734,2165,3906,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.008914300275142,7.789638509836343,0,0,0,-919.4930842925243,0,-9,-9,2019,11,0,40,40,1,0,0,7.211747914760926,7.211747914760926,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,10,3,4,0,0,9,6,4,1,768,-106134.4825552608,0,0,0,1026.510609303959 -1735,2166,3907,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.110356958222965,8.060732536208935,6.225697264781362,0,0,-793.4340044343134,0,-9,-9,2019,11,0,20,15,1,0,0,16.47817768308971,16.47817768308971,0,0,0,0,0,0,0,0,2.514603066817037,6.535712734358706,55.2,49.4,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,121,212620.8269447718,0,0,0,1023.189804431154 -1736,2167,3908,3909,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,8.793165693187943,9.022961627937196,0,40,3,10.96350615241876,0,3,3,2019,7,0,40,55,1,0,0,23.62402175598406,23.62402175598406,0,0,0,0,0,0,0,0,2.949380364948919,0,61.1,41.19,45.85,61.26,8.333333333333334,1,1,0,0,10,10,5,1,883.5,840222.0612838976,372818.1421127017,413209.6468493345,0,2566.517717936192 -1736,2167,3909,3908,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,40,-3,-61.71735398247655,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,2.458854340819653,0,45.85,61.26,61.1,41.19,6.666666666666667,1,1,1,0,8,10,5,1,883.5,840222.0612838976,372818.1421127017,413209.6468493345,0,2566.517717936192 -1737,2168,3910,-9,3912,3911,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1173.980404302039,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,244.5,1182095.509609682,823966.8535158793,471179.2342880409,162867.4631815472,5107.747929484698 -1737,2168,3911,3912,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.166805770552113,8.960287385711316,0,19,4,68.93473889429754,-9,2,2,2019,9,0,49,0,1,1,0,28.61755317649942,28.61755317649942,0,0,0,0,0,1,1,0,0,0,51,56,48.1,48.1,8,1,1,0,0,1,9,5,1,244.5,1182095.509609682,823966.8535158793,471179.2342880409,162867.4631815472,5107.747929484698 -1737,2168,3912,3911,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,6.558568088869521,6.507310500094374,0,20,-4,-6.102135113921415,0,3,2,2019,15,3,8,13,1,3,0,12.21877911045101,12.21877911045101,0,0,0,0,42,1,1,0,0,0,48.1,48.1,51,56,3.333333333333333,1,1,0,1,8,9,5,1,244.5,1182095.509609682,823966.8535158793,471179.2342880409,162867.4631815472,5107.747929484698 -1737,2168,3913,-9,3912,3911,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.009658132018,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,244.5,1182095.509609682,823966.8535158793,471179.2342880409,162867.4631815472,5107.747929484698 -1738,2169,3914,-9,3916,3915,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.0388804240998,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,895.75,554795.8431780395,304140.7371636496,341335.6306639184,103542.8971787041,7310.991595876582 -1738,2169,3915,3916,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.507128456695234,8.770158733024379,0,7,3,-13.45936870421534,0,2,2,2019,12,0,40,42,1,0,0,14.59839884362638,14.59839884362638,0,0,0,0,0,1,1,0,7.357591011523473,0,54.53,49.11,43.86,63.67,6.666666666666667,1,1,0,0,11,5,5,1,895.75,554795.8431780395,304140.7371636496,341335.6306639184,103542.8971787041,7310.991595876582 -1738,2169,3916,3915,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,9.371972488818978,9.521310181986305,0,7,-3,-177.8046826756955,0,-9,-9,2019,9,0,50,48,1,0,0,30.74620140672267,30.74620140672267,0,0,0,0,0,1,1,0,0,0,43.86,63.67,54.53,49.11,8.333333333333334,1,1,0,0,9,5,5,1,895.75,554795.8431780395,304140.7371636496,341335.6306639184,103542.8971787041,7310.991595876582 -1738,2169,3917,-9,3916,3915,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.5906154736658,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,5,1,895.75,554795.8431780395,304140.7371636496,341335.6306639184,103542.8971787041,7310.991595876582 -1739,2170,3918,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,0,0,0,0,0,-1074.17257416363,-9,3,2,2019,30,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,25.62,42.98,-9,-9,0,1,1,1,1,0,7,1,0,1038,-95066.83400592684,0,0,0,1205.712022441071 -1740,2171,3919,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.825730096861417,7.464984520931045,0,0,-981.760116225028,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.659944453123487,7.401781982848075,60.05,42.65,-9,-9,10,1,1,0,0,0,9,3,1,407,1411491.190421637,271474.2836921113,128125.3747127384,0,1337.390453210507 -1741,2172,3920,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.367009170258594,6.511871950163258,0,0,0,-1126.500526480324,0,3,2,2019,14,3,18,18,1,3,0,3.805028810383673,3.805028810383673,0,0,0,0,0,1,1,0,0,0,49.75,38.05,-9,-9,5,2,3,0,0,7,9,2,0,1081,-78675.44469322504,0,0,0,767.3686504900433 -1742,2173,3921,3922,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.817667710025132,8.71824028228596,0,7,0,43.18414563523625,0,2,3,2019,6,0,40,35,1,0,0,17.68922489977965,17.68922489977965,0,0,0,0,14.5,0,0,0,3.382626550899004,0,62.39,56.71,52.95,43.28,10,1,1,0,0,8,1,5,1,273.5,1461953.552687013,440418.2315889277,618270.1341413279,0,5109.00156082699 -1742,2173,3922,3921,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.034648757679609,9.310277890758446,0,7,0,34.92616089751908,0,3,3,2019,14,3,37,57,1,3,0,20.80876492267068,20.80876492267068,0,0,0,0,14.5,0,0,0,1.943265349140367,0,52.95,43.28,62.39,56.71,8.333333333333334,1,1,0,0,8,1,5,1,273.5,1461953.552687013,440418.2315889277,618270.1341413279,0,5109.00156082699 -1743,2174,3923,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1038.429211691724,0,3,3,2019,12,0,0,65,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.66,38.31,-9,-9,5,1,1,1,0,3,2,2,0,944,118296.36750775,-34595.85485465697,0,0,-96.83714749347939 -1744,2175,3924,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,6.809365056449212,6.663470307183331,0,0,0,-990.3110231278429,0,2,3,2019,6,0,40,35,1,0,0,2.344833746407707,2.344833746407707,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,5,13,2,1,223,-37676.99826688926,0,0,0,142.3917353524229 -1745,2176,3925,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.808251117182849,8.994838268139185,0,0,-1080.858753359052,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,8.020069836458502,9.082307410652433,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,392,1835756.86088162,1179345.339340687,379832.4737981264,0,3590.382826823546 -1746,2177,3926,3927,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.782888494923673,8.855888290947783,0,23,-3,55.97783642301599,0,2,2,2019,15,4,42,10,1,4,0,25.50427966995997,25.50427966995997,0,0,0,0,0,1,0,1,0,0,48.28,60.18,46.4,52.9,8.333333333333334,1,1,0,0,13,10,5,1,272,1245638.399393651,985993.1566224233,377514.4609583666,40058.93870399751,4151.874265235535 -1746,2177,3927,3926,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,2.254101595539807,2.175661797242436,0,11,3,-83.05587420450937,0,-9,-9,2019,10,0,40,48,1,0,0,.0212477618044433,.0212477618044433,0,0,0,0,0,1,0,1,6.887268184036476,0,46.4,52.9,48.28,60.18,8.333333333333334,1,1,0,0,13,10,5,1,272,1245638.399393651,985993.1566224233,377514.4609583666,40058.93870399751,4151.874265235535 -1746,2178,3928,-9,3926,3927,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-920.1282542530544,-9,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,700,490795.5163707479,0,0,0,141.5876621577304 -1747,2179,3929,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1107.541702647562,1,-9,-9,2019,8,0,0,39,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.68,54.5,-9,-9,1.666666666666667,1,1,0,0,12,11,2,0,471,-43403.75614180198,-17927.37475253252,0,0,-142.1822414166535 -1748,2180,3930,-9,3932,3931,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.83052376551,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,698.3333333333334,54832.0006575193,8576.01074898349,0,0,5834.3804923136 -1748,2180,3931,3932,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,9.455505826987521,9.440535256193289,0,4,0,20.32331334127163,0,2,1,2019,15,5,35,35,1,5,0,34.5947028576872,34.5947028576872,0,0,0,0,0,1,1,0,3.631580146843059,0,37.76,62.64,20.64,60.45,6.666666666666667,1,1,0,0,9,9,5,1,698.3333333333334,54832.0006575193,8576.01074898349,0,0,5834.3804923136 -1748,2180,3932,3931,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.552873792989734,8.387283705027874,0,4,0,116.2858386497655,0,-9,-9,2019,24,7,29,30,1,7,0,19.05171374967087,19.05171374967087,0,0,0,0,0,1,1,0,1.783727728057178,0,20.64,60.45,37.76,62.64,5,1,1,0,0,4,9,5,1,698.3333333333334,54832.0006575193,8576.01074898349,0,0,5834.3804923136 -1749,2181,3933,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.62994117723669,7.692160223839799,0,0,-1061.734971764302,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.08152113434929,7.444708893345658,57.16,56.15,-9,-9,10,1,1,0,0,0,7,3,1,1227,801472.1658489474,715036.6507584931,0,0,1516.348498842267 -1750,2182,3934,3935,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.008642052135457,7.966522664058511,0,2,15,-25.32704842455621,0,3,3,2019,6,0,49,50,1,0,0,8.769394444099415,8.769394444099415,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,1,8,4,3,1,345.75,115059.6334917922,75404.61707990462,60953.39236808706,12044.21547222927,2143.346002562887 -1750,2182,3935,3934,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,2,-15,39.23933749685945,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,1,0,4,3,1,345.75,115059.6334917922,75404.61707990462,60953.39236808706,12044.21547222927,2143.346002562887 -1750,2182,3936,-9,3935,3934,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1064.575483020206,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,3,1,345.75,115059.6334917922,75404.61707990462,60953.39236808706,12044.21547222927,2143.346002562887 -1750,2182,3937,-9,3935,3934,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.817194124232,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,345.75,115059.6334917922,75404.61707990462,60953.39236808706,12044.21547222927,2143.346002562887 -1751,2183,3938,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.407241216496294,7.435478236825856,0,0,-1035.943424205228,0,-9,-9,2019,24,9,0,0,4,9,0,0,0,1,0,45.76297322099312,0,0,1,1,0,0,7.765372601919752,32.82,20.99,-9,-9,5,1,1,0,0,0,2,3,1,631,399598.9110304315,119988.6778327839,179199.1852289428,0,1646.873422890255 -1751,2184,3939,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.253133510230949,8.54582591056781,0,0,0,-933.0956073723896,0,-9,-9,2019,10,2,35,35,1,2,0,17.88391923655132,17.88391923655132,0,0,0,0,27,1,1,0,6.340321855625088,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,675,116077.2264326355,-85974.49251617955,134915.5959103545,84383.24459397566,1668.529154697879 -1752,2185,3940,3941,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.666963619052568,8.790011615200781,0,5,2,-24.61191735205262,0,-9,-9,2019,11,0,50,38,1,0,0,13.88681012258205,13.88681012258205,0,0,0,0,7,1,0,1,0,0,55.29,44.79,45.94,26.45,8.333333333333334,1,1,0,0,12,2,5,1,672.5,1372276.488777829,634702.029561749,238246.1930476006,0,4058.368271937072 -1752,2185,3941,3940,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,8.650570898004561,8.473678577949421,0,36,-2,-29.97317126106351,0,3,3,2019,12,0,16,20,1,0,0,28.09958963951618,28.09958963951618,0,0,0,0,0,1,0,1,0,0,45.94,26.45,55.29,44.79,6.666666666666667,1,1,0,0,12,2,5,1,672.5,1372276.488777829,634702.029561749,238246.1930476006,0,4058.368271937072 -1753,2186,3942,-9,-9,-9,1,0,27,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1028.442982177901,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,35.47,56.8,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,693,-8576.526406555473,0,0,0,1652.830685087049 -1753,2186,3943,-9,3942,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.833421269134,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,1,0,693,-8576.526406555473,0,0,0,1652.830685087049 -1754,2187,3944,3946,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,6.986973387126948,7.087509719011329,0,5,-4,-20.84157020018285,0,-9,-9,2019,16,4,20,18,1,4,0,6.803816689038441,6.803816689038441,0,0,0,0,0,1,1,0,.3893744412131866,0,44.36,32.78,58.18,39.69,3.333333333333333,1,1,0,0,2,4,3,0,843.6666666666666,137580.4721494053,46150.70126270218,165715.4194271188,13943.79359025948,3299.878109502882 -1754,2187,3945,-9,3944,3946,1,1,17,0,1,0,3,3,-9,0,3,0,0,0,0,0,-941.6754615164579,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.6441727672357279,0,45,51.17,-9,-9,6.666666666666667,1,1,1,1,0,4,3,0,843.6666666666666,137580.4721494053,46150.70126270218,165715.4194271188,13943.79359025948,3299.878109502882 -1754,2187,3946,3944,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.384765490532448,8.272017864473611,0,5,4,91.28987486775287,0,2,2,2019,8,0,56,38,1,0,0,10.09561534240671,10.09561534240671,0,0,0,0,0,1,1,0,.0836212811129649,0,58.18,39.69,44.36,32.78,6.666666666666667,1,1,0,0,3,4,3,0,843.6666666666666,137580.4721494053,46150.70126270218,165715.4194271188,13943.79359025948,3299.878109502882 -1754,2188,3947,-9,3944,3946,1,0,20,0,1,0,2,2,-9,0,4,7.300085030647734,7.184519519822663,0,0,0,-1095.557984482457,0,2,2,2019,10,0,33,0,1,0,1,5.171864812295243,5.171864812295243,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,1,3,4,3,0,354,48915.02982099622,0,43129.10469170236,114142.4126898887,1016.253124596986 -1754,2189,3948,-9,3944,3946,1,0,22,0,1,0,2,2,-9,0,4,7.140355657054091,7.307302334732423,0,0,0,-1050.99646339116,0,2,2,2019,11,0,36,36,1,2,1,5.261123201442613,5.261123201442613,0,0,0,0,0,1,1,0,.4103483070444273,0,46,58,-9,-9,7,1,1,0,0,5,4,3,0,206,-265387.3054246301,0,44886.66687547009,95058.78972791223,1463.245924853229 -1755,2190,3949,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.904815208572714,7.275983475283531,0,0,-976.7617746152753,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.935804971625026,60.02,56.42,-9,-9,10,1,1,0,0,5,13,3,1,273,578518.4543152422,292960.4081166341,73753.55929927152,0,1731.659174970226 -1756,2191,3950,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.079882194578319,7.822309392206104,0,0,0,-950.8221873977786,0,1,1,2019,5,0,40,40,1,0,0,8.714499054181651,8.714499054181651,0,0,0,0,0,0,0,0,0,0,53.18,34.96,-9,-9,10,3,4,0,0,4,4,4,0,318,409278.0288348923,310620.6838297928,160039.2509580889,8148.478118148211,1580.791507802519 -1756,2192,3951,-9,3950,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.6856319424456,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.12,57.34,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,1101,18126.8231443544,0,0,0,106.1253768397565 -1757,2193,3952,3953,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.767492084346568,7.72497625262477,0,23,0,17.7408677186054,0,2,1,2019,13,2,35,25,1,2,0,7.510971748912493,7.510971748912493,0,0,0,0,0,1,1,0,0,0,40.64,54.86,54,53,5,2,3,0,0,3,8,5,1,225.3333333333333,2509491.827289495,2049068.510494265,351608.2812399869,0,4780.138482727968 -1757,2193,3953,3952,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.259636900569587,9.425350475696826,0,23,9,-73.11136969513167,0,2,2,2019,9,0,50,50,1,1,0,24.89861196445914,24.89861196445914,0,0,0,0,0,1,1,0,0,0,54,53,40.64,54.86,8,2,3,0,0,9,8,5,1,225.3333333333333,2509491.827289495,2049068.510494265,351608.2812399869,0,4780.138482727968 -1757,2193,3954,-9,3952,3953,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-982.0439660868678,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,5,1,225.3333333333333,2509491.827289495,2049068.510494265,351608.2812399869,0,4780.138482727968 -1757,2194,3955,-9,3952,3953,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1003.505167978437,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,1,586,18319.70627456061,0,0,0,0 -1758,2195,3956,3957,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.668177752839587,7.051578157021346,10,-6,11.1860419371097,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.696935090189088,52.38,34.03,48.45,57.49,8.333333333333334,1,1,0,0,0,13,2,1,918.5,565331.2596611069,345603.1625475854,235651.2948533674,0,1907.380797153467 -1758,2195,3957,3956,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.727184749870128,5.517416906332755,10,6,82.11898722546032,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.023339015803628,5.789512998430828,48.45,57.49,52.38,34.03,8.333333333333334,1,1,0,0,0,13,2,1,918.5,565331.2596611069,345603.1625475854,235651.2948533674,0,1907.380797153467 -1759,2196,3958,3959,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,6.068624642461725,5.895316794410569,11,-7,52.47201361801338,0,1,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,6.04632086086514,6.086999614922261,40.32,18.64,55,45,6.666666666666667,1,1,0,0,11,8,3,1,1333.5,1164863.887166019,504226.943435548,391377.8568960459,0,3229.371049429446 -1759,2196,3959,3958,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.099276590559297,7.944666907993266,8,7,-26.56756520526152,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.983162775323069,55,45,40.32,18.64,8,1,1,0,0,0,8,3,1,1333.5,1164863.887166019,504226.943435548,391377.8568960459,0,3229.371049429446 -1760,2197,3960,3963,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.104757251253197,7.102259967819659,0,7,-4,-89.03604341047193,0,2,3,2019,8,0,20,20,1,0,0,6.82425339480313,6.82425339480313,0,0,0,0,0,1,1,0,0,0,47.32,52.7,34.47,39.61,6.666666666666667,1,1,0,0,6,12,2,0,733.5,-40974.16944808999,-24365.66649600489,0,0,2170.90939437598 -1760,2197,3961,-9,3960,3963,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.777490159978,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,733.5,-40974.16944808999,-24365.66649600489,0,0,2170.90939437598 -1760,2197,3962,-9,3960,3963,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1018.850062919524,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,2,0,733.5,-40974.16944808999,-24365.66649600489,0,0,2170.90939437598 -1760,2197,3963,3960,-9,-9,1,1,37,0,2,0,2,2,-9,1,3,0,0,0,7,4,-3.715095357827725,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.47,39.61,47.32,52.7,3.333333333333333,1,1,1,0,0,12,2,0,733.5,-40974.16944808999,-24365.66649600489,0,0,2170.90939437598 -1761,2198,3964,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,6.774229355859426,6.965357366871301,0,0,-1017.409767967486,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.88435685527918,55,42,-9,-9,8,1,1,0,0,0,8,2,0,1266,220946.5418563039,26876.75414068254,198105.485599938,0,1223.428776661043 -1762,2199,3965,3968,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,7.834516601001935,7.478516258501115,0,16,-11,-105.3779350249959,0,2,2,2019,10,1,26,27,1,1,0,12.26985168703746,12.26985168703746,0,0,0,0,0,1,1,0,0,0,45.99,51.88,56.18,51.02,8.333333333333334,1,1,0,0,6,9,4,0,392,215975.5593188758,88918.863165538,200146.165885033,59400.46170807782,3149.450841517944 -1762,2199,3966,-9,3965,3968,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.4733052497976,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,392,215975.5593188758,88918.863165538,200146.165885033,59400.46170807782,3149.450841517944 -1762,2199,3967,-9,3965,3968,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.972848693319,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,392,215975.5593188758,88918.863165538,200146.165885033,59400.46170807782,3149.450841517944 -1762,2199,3968,3965,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.487743648834531,8.656201405323788,0,14,11,162.5216357659045,0,2,2,2019,9,1,40,45,1,1,0,14.67197429813649,14.67197429813649,0,0,0,0,0,1,1,0,1.456389952433621,0,56.18,51.02,45.99,51.88,8.333333333333334,1,1,0,0,10,9,4,0,392,215975.5593188758,88918.863165538,200146.165885033,59400.46170807782,3149.450841517944 -1762,2200,3969,-9,3965,3968,1,0,21,0,2,0,2,2,-9,0,4,7.628323696806088,7.196776653620187,0,0,0,-980.5636920866137,0,1,2,2019,11,0,12,12,1,2,1,13.21843147815576,13.21843147815576,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,0,2777,-33267.22917991603,12743.19149548997,0,0,713.1535861364707 -1763,2201,3970,3971,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.084928396035462,8.793669149118472,0,24,3,-170.7016355517197,0,2,1,2019,10,0,60,65,1,0,0,16.97334866348572,16.97334866348572,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,11,12,4,1,501,1703352.48054949,1253775.916993985,233249.1173666455,0,5481.664246342209 -1763,2201,3971,3970,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.711990549386372,7.775714550060306,0,24,-3,2.891143522207027,0,2,3,2019,8,0,40,35,1,0,0,5.98070274054464,5.98070274054464,0,0,0,0,7,1,1,0,8.624124747968628,0,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,11,12,4,1,501,1703352.48054949,1253775.916993985,233249.1173666455,0,5481.664246342209 -1763,2202,3972,-9,3971,3970,1,0,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-951.4339558118717,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.22,54.85,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,144,-20344.40979151643,0,0,0,0 -1763,2203,3973,-9,3971,3970,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1050.74634275023,-9,1,1,2019,34,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,15.08,66.28,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,160,91466.06127463406,0,0,0,0 -1764,2204,3974,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1042.250324198567,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.187013751119665,0,62.66,52.4,-9,-9,0,1,1,0,0,6,4,1,1,364,-64895.006197568,0,0,0,-180.3868716643058 -1765,2205,3975,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.681688084738693,5.821095158070206,0,0,-1152.504871697929,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,1.152572344135138,0,0,0,1,1,0,3.463174851575508,5.863120100855525,43.04,44.4,-9,-9,5,1,1,0,0,0,1,2,0,1079,181627.5583692701,82439.67432855751,0,0,1845.411165200124 -1766,2206,3976,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1102.169534241918,-9,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.94,57.43,-9,-9,6.666666666666667,1,1,1,1,0,8,1,1,220,0,0,0,0,0 -1767,2207,3977,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.546032352029503,8.507291333993967,0,0,0,-1010.480587861949,0,3,3,2019,7,0,37,37,1,0,0,15.59244054272356,15.59244054272356,0,0,0,0,0,0,0,0,2.501795162369592,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,13,5,1,700,104926.1107245905,135571.4266605044,-36713.68616482359,37422.98481082558,1233.033414569088 -1768,2208,3978,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.079123743825743,7.906811481967165,0,0,0,-1019.562226583142,0,2,2,2019,4,0,28,23,1,0,0,12.0727879222989,12.0727879222989,0,0,0,0,7,0,0,0,2.337455820721472,0,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,776,-62024.55244098726,167957.3505401675,-3633.079205345668,12761.27330855172,1180.603823869524 -1769,2209,3979,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.957984412810286,7.850566672229821,0,0,-807.072458601494,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.506257930229463,8.035769655515109,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,242,1162974.040944469,604514.6472418456,149341.2163581129,0,1128.960527403992 -1770,2210,3980,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.966403649504542,6.017305985645932,0,0,-1042.028886319096,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.028550516962754,38.16,44.66,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,445,460214.2447697041,-20944.81860984978,348436.9035184009,0,561.7543630465857 -1771,2211,3981,-9,3982,3983,1,1,19,0,0,0,2,2,1,0,4,8.217488118870159,8.348913846136655,0,0,0,-940.0623548631843,-9,2,2,2019,6,0,84,0,1,0,1,4.537441336586821,4.537441336586821,0,0,0,0,0,1,1,0,4.855097184259435,0,52,37.76,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,430,-102014.0054614828,-47222.8010431868,0,0,971.8120098139437 -1771,2212,3982,3983,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,2,-4,-37.02210164232854,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.1346447225999017,0,58.55,37.91,60.29,52.11,8.333333333333334,1,1,0,0,0,4,4,1,996,356904.5314101537,187540.0550692668,138964.6879030516,97519.94198262133,2813.764197287972 -1771,2212,3983,3982,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.946208960810143,8.670534997836693,0,2,4,105.9667075819185,0,-9,-9,2019,8,0,60,48,1,0,0,13.53237175446557,13.53237175446557,0,0,0,0,5.48,1,1,0,0,0,60.29,52.11,58.55,37.91,10,1,1,0,0,11,4,4,1,996,356904.5314101537,187540.0550692668,138964.6879030516,97519.94198262133,2813.764197287972 -1772,2213,3984,3985,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,67,-1,22.28621666381041,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.464550390239791,0,46.2,43.53,47.48,42.75,8.333333333333334,1,1,0,0,0,1,2,1,1042,510607.69523313,11158.85982041914,333433.7288545291,0,1834.861409820799 -1772,2213,3985,3984,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.707420710342804,7.018929412003989,67,1,73.79313127923837,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.446460563436545,7.048132075980958,47.48,42.75,46.2,43.53,10,1,1,0,0,0,1,2,1,1042,510607.69523313,11158.85982041914,333433.7288545291,0,1834.861409820799 -1773,2214,3986,3987,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.24054102463068,7.928228957798657,0,37,0,-6.48062802984228,0,3,3,2019,6,0,43,43,1,0,0,11.13335927934168,11.13335927934168,0,0,0,0,0,0,0,0,0,0,60.13,49.27,61.12,51.57,8.333333333333334,1,1,0,0,11,12,5,1,752,370932.2035529853,10548.56756914408,221112.1873839943,0,2727.163141475911 -1773,2214,3987,3986,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.179711421917929,8.234928791837527,0,37,0,77.21341480928811,0,3,-9,2019,6,0,38,8,1,0,0,8.729872969449247,8.729872969449247,0,0,0,0,0,0,0,0,0,0,61.12,51.57,60.13,49.27,8.333333333333334,1,1,0,0,11,12,5,1,752,370932.2035529853,10548.56756914408,221112.1873839943,0,2727.163141475911 -1773,2215,3988,-9,3987,3986,1,0,25,0,0,0,2,2,-9,0,4,7.718818486217222,7.492743180242958,0,0,0,-1039.543665832897,0,2,2,2019,8,0,40,37,1,0,1,5.595424647421051,5.595424647421051,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,5,1,1,0,0,8,12,3,1,250,117741.3284998984,-89958.44537918048,0,0,1181.862511768458 -1774,2216,3989,3990,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.567356406142993,8.689544098869153,34,1,5.716639118416521,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.911432627554111,8.623118498263434,59.84,29.31,47.61,26.9,8.333333333333334,1,1,0,0,0,5,5,1,731,1812380.065884415,760158.7590143897,383921.4130077775,0,5364.202045008983 -1774,2216,3990,3989,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.967238268706224,8.0594357335971,34,-1,-102.0774747303317,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.80821300171968,7.980005435948626,47.61,26.9,59.84,29.31,6.666666666666667,1,1,0,0,0,5,5,1,731,1812380.065884415,760158.7590143897,383921.4130077775,0,5364.202045008983 -1775,2217,3991,3993,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.667915207965566,7.462395883123464,0,16,-7,76.47095260487136,0,2,2,2019,8,0,18,18,1,0,0,11.15097237243251,11.15097237243251,0,0,0,0,0,0,0,0,2.3747546598528,0,60.02,56.42,46.48,53.76,0,1,1,0,0,11,4,5,1,319.3333333333333,771885.4696224566,611901.4079134065,269896.4033128006,91675.96785146534,3840.943521769476 -1775,2217,3992,-9,3991,3993,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.035046628828,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,319.3333333333333,771885.4696224566,611901.4079134065,269896.4033128006,91675.96785146534,3840.943521769476 -1775,2217,3993,3991,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.626742890965961,8.697227611288479,0,17,7,-62.0117989267351,0,2,2,2019,6,0,60,45,1,0,0,11.77365087595117,11.77365087595117,0,0,0,0,0,0,0,0,6.751340490623055,0,46.48,53.76,60.02,56.42,8.333333333333334,1,1,0,0,9,4,5,1,319.3333333333333,771885.4696224566,611901.4079134065,269896.4033128006,91675.96785146534,3840.943521769476 -1776,2218,3994,3996,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.39528516930394,7.181142846627131,0,13,7,-54.5108454576728,0,3,3,2019,7,0,36,36,1,0,0,6.124363667050308,6.124363667050308,0,0,0,0,0,1,1,0,0,0,44.01,54.41,61.28,48.88,6.666666666666667,2,3,0,0,7,7,3,1,841,176587.2446120136,29734.37206154887,173689.229012513,39557.13940257645,2072.340760391307 -1776,2218,3995,-9,3996,3994,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.167314690599,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,841,176587.2446120136,29734.37206154887,173689.229012513,39557.13940257645,2072.340760391307 -1776,2218,3996,3994,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.869735383272076,7.734472652021037,0,13,-7,7.881441259571548,0,3,3,2019,9,0,37,34,1,0,0,8.115234013940025,8.115234013940025,0,0,0,0,0,1,1,0,0,0,61.28,48.88,44.01,54.41,8.333333333333334,2,3,0,0,10,7,3,1,841,176587.2446120136,29734.37206154887,173689.229012513,39557.13940257645,2072.340760391307 -1776,2218,3997,-9,3996,3994,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.501864437731,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,841,176587.2446120136,29734.37206154887,173689.229012513,39557.13940257645,2072.340760391307 -1777,2219,3998,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.366458293325694,5.830780648124358,0,0,-1124.629718784314,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.076671607462047,5.519533279753614,51.17,36.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,284,158311.0392891964,56628.68075689996,117821.3606175798,0,854.313194009264 -1778,2220,3999,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.642337747238745,7.855387878781067,0,0,0,-985.3800811157258,0,3,2,2019,10,2,27,28,1,2,0,8.23548438609755,8.23548438609755,0,0,0,0,0,1,1,0,0,0,49.7,28.69,-9,-9,5,2,3,0,0,8,4,3,1,5237,-111042.4455798914,131543.1297408521,0,0,608.5781336569097 -1779,2221,4000,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.590238496274279,7.527036330555798,0,0,0,-999.4072732572789,0,-9,-9,2019,7,2,36,40,1,2,0,5.683547931630452,5.683547931630452,0,0,0,0,0,0,0,0,3.689086700029743,0,50,57,-9,-9,10,1,1,0,0,12,6,3,1,791,-39483.3402025704,20645.70586410265,0,0,1479.05454515852 -1780,2222,4001,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.507904927513111,6.324345485230466,0,0,-1166.05428713366,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.343989356765787,6.246861435435211,34.15,19.97,-9,-9,3.333333333333333,1,1,0,0,9,4,2,1,588,157505.3022825731,87288.75209001324,152110.7659212526,0,948.4475207561964 -1781,2223,4002,4003,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.327394605140946,7.397827500895803,6,2,4.111215004374092,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,8.289880242218508,0,0,1,1,0,0,7.163610233324341,60.12,54.8,57.16,56.15,10,1,1,0,0,2,8,2,1,1551.5,491308.8597027079,63282.4208163181,306380.0279621726,0,1771.302839212654 -1781,2223,4003,4002,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,-2,45.32526820258789,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.337680833805676,0,57.16,56.15,60.12,54.8,10,1,1,0,0,2,8,2,1,1551.5,491308.8597027079,63282.4208163181,306380.0279621726,0,1771.302839212654 -1782,2224,4004,4005,-9,-9,1,0,40,0,1,0,2,2,-9,1,1,0,0,0,2,-5,0,0,3,3,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,31.17,34.88,0,1,1,0,0,0,4,1,0,489,444608.1885458297,241355.5231304648,411730.1087982801,193239.8503069508,2108.045184540781 -1782,2224,4005,4004,-9,-9,1,1,45,0,1,0,1,1,-9,1,1,0,0,0,2,5,0,0,2,3,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,31.17,34.88,19.01,22.64,0,1,1,0,0,3,4,1,0,489,444608.1885458297,241355.5231304648,411730.1087982801,193239.8503069508,2108.045184540781 -1782,2224,4006,-9,4004,4005,1,0,17,0,1,0,3,3,1,0,3,0,0,0,0,0,-1029.79039783971,-9,2,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,36.43,60.14,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,489,444608.1885458297,241355.5231304648,411730.1087982801,193239.8503069508,2108.045184540781 -1782,2224,4007,-9,4004,4005,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-896.5813841337812,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,1,0,489,444608.1885458297,241355.5231304648,411730.1087982801,193239.8503069508,2108.045184540781 -1782,2225,4008,-9,4004,4005,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-916.177582084431,-9,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,4.898781059452296,0,55.09,49.14,-9,-9,10,1,1,1,0,0,4,1,0,688,-113751.3204951193,0,0,0,603.4872733793584 -1783,2226,4009,4010,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.748415990126997,7.014282503787243,4,8,-58.75376419020191,0,-9,-9,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.160368514163705,6.418317676777699,44.94,42.48,51.61,61.54,10,1,1,0,0,9,10,2,1,174.5,852169.067101799,622914.6755477008,294490.1883796946,0,1600.48873381879 -1783,2226,4010,4009,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,4,-8,-10.87449873824518,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.342522753041236,0,51.61,61.54,44.94,42.48,10,1,1,0,0,13,10,2,1,174.5,852169.067101799,622914.6755477008,294490.1883796946,0,1600.48873381879 -1784,2227,4011,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,7.326860299040852,7.380275935394547,0,0,-997.6894577717181,-9,-9,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,7.465557107585269,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,357,-169501.0631523852,-6306.172190978197,0,0,714.5609349237168 -1785,2228,4012,4013,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.371631493063452,8.283358876032844,0,6,5,-20.81629450327879,0,-9,-9,2019,10,1,43,45,1,1,0,11.46015002235717,11.46015002235717,0,0,0,0,0,0,0,0,1.715527199997222,0,50.03,52.62,46.31,56.45,6.666666666666667,1,1,0,0,6,5,5,1,695,93680.41020336249,14569.83158647382,142715.8927018239,141112.1275106104,2884.89845528279 -1785,2228,4013,4012,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.070550023159695,8.324074085306528,0,6,-5,15.36935018683836,0,2,2,2019,6,0,40,39,1,0,0,10.85542572852011,10.85542572852011,0,0,0,0,0,0,0,0,2.913150149704078,0,46.31,56.45,50.03,52.62,8.333333333333334,1,1,0,0,8,5,5,1,695,93680.41020336249,14569.83158647382,142715.8927018239,141112.1275106104,2884.89845528279 -1786,2229,4014,-9,4019,4020,1,0,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-799.5113048490549,-9,1,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,5.48,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,3,2,1,0,357,27637.51381230745,0,0,0,0 -1786,2230,4015,-9,4019,4020,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.8115979181568,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1786,2230,4016,-9,4019,4020,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1095.091936184398,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1786,2230,4017,-9,4019,4020,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.598916361588,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1786,2230,4018,-9,4019,4020,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.6221799153891,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1786,2230,4019,4020,-9,-9,1,0,40,0,4,0,1,1,-9,1,1,0,0,0,6,-3,-93.56912828588131,0,1,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,40.55,23.7,34.76,45.21,5,1,1,0,0,0,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1786,2230,4020,4019,-9,-9,1,1,43,0,4,0,2,2,-9,0,2,7.959141966139669,7.696853231717527,0,6,3,-58.24271471816795,0,-9,-9,2019,13,1,48,38,1,1,0,6.102772095685532,6.102772095685532,0,0,0,0,78,1,1,0,3.024105911391686,0,34.76,45.21,40.55,23.7,3.333333333333333,1,1,0,0,5,2,2,0,409.1666666666667,2599.064491362313,76348.75969576037,0,0,6109.029519128143 -1787,2231,4021,4022,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.971701835456061,7.654625458321525,0,40,-5,36.73241446401643,0,2,2,2019,6,0,35,34,1,0,0,8.582088808296112,8.582088808296112,0,0,0,0,0,0,0,0,0,0,58.32,50.22,47.26,54.06,8.333333333333334,1,1,0,0,10,5,4,1,335.5,51794.06901529907,83178.53374306615,67477.05600996122,14834.52723741952,2511.217116894553 -1787,2231,4022,4021,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.977300789679109,8.017668422032671,6.391853816751857,40,5,14.43177422020221,0,3,3,2019,12,2,38,37,1,2,0,7.755068742629835,7.755068742629835,0,0,0,0,0,0,0,0,5.53986947352546,6.662343554212377,47.26,54.06,58.32,50.22,6.666666666666667,1,1,0,0,10,5,4,1,335.5,51794.06901529907,83178.53374306615,67477.05600996122,14834.52723741952,2511.217116894553 -1788,2232,4023,4024,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.860969388567154,8.283719921525512,7.020350665195791,30,1,68.64848056756496,0,2,2,2019,10,0,8,42,1,0,0,41.14792845349028,41.14792845349028,0,0,0,0,0,0,0,0,7.437338595633871,7.469124883471299,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,580,933042.5530758656,464798.2438202478,348065.386711417,0,3487.895222093148 -1788,2232,4024,4023,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,30,-1,57.397107899963,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.134302914030068,0,57.16,56.15,48.87,58.55,10,1,1,0,0,8,4,4,1,580,933042.5530758656,464798.2438202478,348065.386711417,0,3487.895222093148 -1789,2233,4025,4026,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,50,-3,-141.2581603780063,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,46.32,53.44,24,25.7,8.333333333333334,1,1,0,0,4,7,2,1,927,336393.1568189159,13971.02577517135,249199.2215419895,0,657.2749085779799 -1789,2233,4026,4025,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.522132176218095,6.482797864525311,50,3,60.71269559481037,0,3,2,2019,24,9,0,0,4,9,0,0,0,1,0,129.7711839987143,0,0,1,1,0,0,6.617358419531544,24,25.7,46.32,53.44,6.666666666666667,1,1,0,0,6,7,2,1,927,336393.1568189159,13971.02577517135,249199.2215419895,0,657.2749085779799 -1790,2234,4027,-9,4029,4028,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-988.9903147319324,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,1570,2817660.818976615,2138464.868427075,736613.3781526006,37898.83141305677,4200.142435108321 -1790,2234,4028,4029,-9,-9,1,1,65,0,1,0,3,3,-9,0,3,8.333350862745844,8.944620681718359,8.006940839771143,7,9,70.26916925332701,0,-9,-9,2019,4,0,37,37,1,0,0,8.809156976316633,8.809156976316633,0,0,0,0,0,1,1,0,8.048742523830967,7.991000184379076,53.18,51.37,67.59,34.18,10,3,4,0,0,10,8,4,1,1570,2817660.818976615,2138464.868427075,736613.3781526006,37898.83141305677,4200.142435108321 -1790,2234,4029,4028,-9,-9,1,0,56,0,1,0,2,2,-9,0,2,7.623652734153272,7.43837292452864,0,20,0,-124.6605922958943,0,2,-9,2019,7,0,36,30,1,0,0,6.944633454537724,6.944633454537724,0,0,0,0,0,1,1,0,.6262526556524156,0,67.59,34.18,53.18,51.37,10,3,4,0,0,10,8,4,1,1570,2817660.818976615,2138464.868427075,736613.3781526006,37898.83141305677,4200.142435108321 -1790,2235,4030,-9,4029,4028,1,1,30,0,1,0,1,1,-9,0,4,8.072618034487103,8.000815430522302,0,0,0,-1031.795684655745,0,2,3,2019,10,0,35,35,1,1,1,8.321544934976217,8.321544934976217,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,671,-60023.17169548244,51820.35535809473,0,0,1192.247094582531 -1790,2236,4031,-9,4029,4028,1,1,25,0,1,0,2,2,-9,0,4,7.31992178829676,7.593809294326105,0,0,0,-990.8669232729708,0,2,3,2019,10,0,40,35,1,1,1,5.51647900544959,5.51647900544959,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,617,-110582.6441701547,0,0,0,597.7719350766017 -1791,2237,4032,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.335973523450702,8.240643310545904,0,0,0,-926.5054020530507,0,-9,-9,2019,10,0,40,43,1,0,0,12.3262170113592,12.3262170113592,0,0,0,0,0,1,1,0,0,0,40.25,43.49,-9,-9,3.333333333333333,1,1,0,0,13,10,5,1,411,-142286.5053481452,-94248.76999369523,195547.5542042557,340820.4214878024,2186.949977239468 -1792,2238,4033,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.466811619805402,6.870833767698866,0,0,-1001.839240641441,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,.9658645928012888,6.863707585565054,52.15,15.61,-9,-9,5,1,1,0,0,0,10,2,1,1187,63682.32353761309,0,0,0,1018.218139658927 -1792,2239,4034,-9,4033,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.327845837538,0,3,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,42,1,1,0,2.246877780121473,0,25.03,56.31,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,252,0,0,0,0,479.0941511318279 -1792,2240,4035,-9,4033,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-944.1459176509992,0,3,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,2,1,1,0,.7576456515837333,0,32.19,34.56,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,221,-26120.18334719357,0,0,0,759.7456249519773 -1792,2241,4036,4037,4033,-9,1,1,37,0,0,0,3,3,-9,0,3,7.909337708773275,7.865916117574581,0,2,1,61.36973825411695,0,3,-9,2019,15,2,42,41,1,2,0,7.621372327631518,7.621372327631518,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.91,59.89,1.666666666666667,1,1,0,0,11,10,4,1,811,-64187.20899133518,56900.53106580367,0,0,2289.738096441239 -1792,2241,4037,4036,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.009067025461146,7.797884766527222,0,2,-1,41.49993266496052,0,2,2,2019,11,0,39,37,1,0,0,7.733720937166067,7.733720937166067,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,1.666666666666667,1,1,0,0,12,10,4,1,811,-64187.20899133518,56900.53106580367,0,0,2289.738096441239 -1793,2242,4038,4039,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.145121871355892,8.007497602956342,0,38,-6,15.12135408202682,0,2,1,2019,7,0,54,54,1,0,0,6.394735271527176,6.394735271527176,0,0,0,0,0,1,1,0,0,0,52.71,36.52,52.86,45.86,6.666666666666667,1,1,0,0,9,10,3,1,2604,461873.9391746742,272011.8265057016,500729.7317889888,65792.34181696532,1354.603788444731 -1793,2242,4039,4038,-9,-9,1,1,63,0,0,0,1,1,-9,1,3,0,0,0,36,6,-77.69214393544351,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.86,45.86,52.71,36.52,6.666666666666667,1,1,0,0,8,10,3,1,2604,461873.9391746742,272011.8265057016,500729.7317889888,65792.34181696532,1354.603788444731 -1793,2243,4040,-9,4038,4039,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-922.5755097736826,-9,1,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,82,0,0,0,0,-363.6166020115166 -1794,2244,4041,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.250094020488628,7.156041920052572,0,0,0,-962.9535523558325,0,3,3,2019,11,0,30,30,1,0,0,5.570329178702693,5.570329178702693,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,795,-47540.12796686478,0,0,0,1462.050076942685 -1794,2245,4042,-9,4041,-9,1,0,21,0,0,0,2,2,-9,0,4,7.625602849711253,7.603789575705603,0,0,0,-952.6730589644709,0,3,-9,2019,11,0,33,27,1,2,1,6.247390710176838,6.247390710176838,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,3,0,1769,-124210.2402699903,65263.10958791919,0,0,740.9154068018826 -1795,2246,4043,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.87429286996214,7.974268313968121,0,0,0,-877.4321295411404,-9,3,-9,2019,10,0,32,0,1,1,0,12.1872515496792,12.1872515496792,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,8,3,4,0,0,8,8,4,1,280,265353.8332530422,233765.2406672079,165883.423799027,18307.45073829825,1358.828961297741 -1795,2247,4044,-9,4043,-9,1,1,23,0,0,0,2,2,-9,0,1,0,0,0,0,0,-955.8558408582948,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.9,46.44,-9,-9,10,3,4,0,0,0,8,2,1,929,67667.79522459072,0,0,0,-120.0316390030268 -1796,2248,4045,4046,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.257500859865706,8.068065532393554,58,-1,74.14778538867941,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,8.084072646072121,8.361141704007471,49.28,50.19,65.14,32.13,8.333333333333334,1,1,0,0,4,1,4,1,934,1929610.820626305,904677.1609004135,367033.103709463,0,4807.2227027986 -1796,2248,4046,4045,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.366570201108211,7.54381538279682,58,1,-14.12966138257039,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.536652664792484,0,0,1,1,0,7.482827921341991,7.6660723663235,65.14,32.13,49.28,50.19,10,1,1,0,0,0,1,4,1,934,1929610.820626305,904677.1609004135,367033.103709463,0,4807.2227027986 -1797,2249,4047,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.84754008773695,7.864669285556674,0,0,0,-892.9010114733948,0,-9,-9,2019,10,0,70,50,1,1,0,4.048738104006976,4.048738104006976,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,3,1,327,-37227.59127182269,0,0,0,1599.109208059106 -1797,2250,4048,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.626338939115162,6.655485182869952,0,0,-951.8152003291801,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.436310139125629,6.498128046866801,60.69,50.51,-9,-9,10,1,1,0,0,0,7,2,1,637,491820.0657448953,67924.29830204058,307137.9512532196,0,1143.012171425065 -1798,2251,4049,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,3,0,0,0,0,0,-980.3247429565881,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,35.5,33.44,-9,-9,1.666666666666667,2,3,0,1,0,4,2,1,256.5,-26943.86772864834,0,0,0,1256.757440142283 -1798,2251,4050,-9,4049,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.332980209111,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,256.5,-26943.86772864834,0,0,0,1256.757440142283 -1798,2252,4051,-9,4049,-9,1,0,21,0,1,0,2,2,-9,1,5,8.525569049020961,8.458063935395533,0,0,0,-913.8998479527693,0,2,-9,2019,14,5,60,36,1,5,1,10.75868253347941,10.75868253347941,0,0,0,0,0,1,1,0,0,0,33.78,64.28,-9,-9,6.666666666666667,2,3,0,0,2,4,5,1,834,103737.4069834819,-19572.01244851991,0,0,3280.657706813823 -1798,2252,4052,-9,4051,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1016.046614923643,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,4,5,1,834,103737.4069834819,-19572.01244851991,0,0,3280.657706813823 -1798,2253,4053,-9,4049,-9,1,0,21,0,1,0,2,2,-9,0,4,7.921329961409243,7.703969607431771,0,0,0,-1041.389940980927,0,2,-9,2019,8,0,40,40,1,0,1,6.807620412967606,6.807620412967606,0,0,0,0,0,1,1,0,0,0,62.25,45.63,-9,-9,6.666666666666667,2,3,0,1,2,4,3,1,518,46352.17357147479,-97570.67571175595,0,0,709.2557185917037 -1799,2254,4054,-9,-9,-9,1,1,39,0,0,0,1,1,-9,1,1,0,0,0,0,0,-916.7499552726226,0,-9,-9,2019,19,7,0,38,3,7,0,0,0,0,0,0,3.924162755934868,0,1,1,0,3.962105998698436,0,45.66,24.15,-9,-9,3.333333333333333,1,1,0,0,7,8,1,1,88,0,0,0,0,541.1988808865445 -1800,2255,4055,4056,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.204061041470315,8.473821491303447,0,2,1,-205.6135524240395,-9,-9,-9,2019,7,0,37,0,1,0,0,11.00872673828921,11.00872673828921,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.46,50.26,8.333333333333334,1,1,0,0,6,2,5,1,1288.5,7976.205132705989,159131.2811012992,0,0,2687.732985405732 -1800,2255,4056,4055,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.537474235881628,8.258765727578146,0,2,-1,-48.03967105879647,0,1,2,2019,12,1,58,55,1,1,0,8.105518906802201,8.105518906802201,0,0,0,0,0,0,0,0,1.245200384515861,0,46.46,50.26,54.1,59.11,8.333333333333334,1,1,0,0,13,2,5,1,1288.5,7976.205132705989,159131.2811012992,0,0,2687.732985405732 -1801,2256,4057,4058,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,25,4,-39.35270933613789,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,35.6,39.31,52.14,3.333333333333333,1,1,0,0,6,9,4,1,2075,2073301.959118356,1739922.378720155,448688.1144697001,0,2343.781076111321 -1801,2256,4058,4057,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.546149710519796,8.271098052625915,0,25,-4,-135.0054995966222,0,2,2,2019,11,0,37,37,1,0,0,15.91797317385992,15.91797317385992,0,0,0,0,2,1,1,0,0,0,39.31,52.14,31.75,35.6,6.666666666666667,1,1,0,0,12,9,4,1,2075,2073301.959118356,1739922.378720155,448688.1144697001,0,2343.781076111321 -1802,2257,4059,4060,-9,-9,1,1,48,0,2,0,3,3,-9,0,5,8.479397092135738,8.547479901718205,0,20,8,-33.79683649992525,0,3,2,2019,14,2,40,40,1,2,0,11.22956537383719,11.22956537383719,0,0,0,0,0,1,1,0,3.878876445934008,0,55.09,55.87,46.02,58.57,5,1,1,0,0,12,6,4,1,853.8,496476.6317531124,231407.8180426963,165138.4266813722,0,2823.22917305447 -1802,2257,4060,4059,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.504428474346122,7.574933021454215,0,20,-8,97.3759733367384,0,2,2,2019,11,2,20,22,1,2,0,11.52516356922079,11.52516356922079,0,0,0,0,0,1,1,0,2.09228451700513,0,46.02,58.57,55.09,55.87,8.333333333333334,1,1,0,1,12,6,4,1,853.8,496476.6317531124,231407.8180426963,165138.4266813722,0,2823.22917305447 -1802,2257,4061,-9,4060,4059,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.9251568802571,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,853.8,496476.6317531124,231407.8180426963,165138.4266813722,0,2823.22917305447 -1802,2257,4062,-9,4060,4059,1,0,17,0,2,0,2,2,1,0,3,0,0,0,0,0,-927.7654609342884,-9,2,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,853.8,496476.6317531124,231407.8180426963,165138.4266813722,0,2823.22917305447 -1802,2257,4063,-9,4060,4059,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-977.2957795193554,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,4,1,853.8,496476.6317531124,231407.8180426963,165138.4266813722,0,2823.22917305447 -1803,2258,4064,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.888330814336313,6.704661701972445,0,0,-934.3675761223799,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,11.59173963704894,0,0,1,1,0,0,6.590926070674366,55.04,22.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,122,161211.7618826363,119039.6182645176,0,0,1000.026661773672 -1804,2259,4065,4068,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.819227643967967,9.169506011558703,0,7,3,-62.87244832038263,0,2,2,2019,19,7,45,40,1,7,0,18.71094564082369,18.71094564082369,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.65,57.36,8.333333333333334,1,1,0,0,8,7,5,1,433.25,724050.6630520507,519065.8778424131,712870.8453200572,418610.3038673226,5144.57786512834 -1804,2259,4066,-9,4068,4065,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.770540481253,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,433.25,724050.6630520507,519065.8778424131,712870.8453200572,418610.3038673226,5144.57786512834 -1804,2259,4067,-9,4068,4065,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.17591664661,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,433.25,724050.6630520507,519065.8778424131,712870.8453200572,418610.3038673226,5144.57786512834 -1804,2259,4068,4065,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,8.381680887936019,8.35625771212233,0,7,-3,-115.9483196625467,0,-9,-9,2019,22,10,32,34,1,10,0,20.63138732284899,20.63138732284899,0,0,0,0,0,1,1,0,0,0,40.65,57.36,54.2,57.49,6.666666666666667,1,1,0,0,8,7,5,1,433.25,724050.6630520507,519065.8778424131,712870.8453200572,418610.3038673226,5144.57786512834 -1805,2260,4069,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.533300048363191,8.622309226366777,0,0,0,-885.6950458424408,0,2,3,2019,9,1,30,37,1,1,0,21.77603653068521,21.77603653068521,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,10,9,4,1,430.3333333333333,798027.8525095331,439259.9367251193,367688.9646775238,185196.5882265369,2212.175407593576 -1805,2260,4070,-9,4069,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.5759671850934,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,430.3333333333333,798027.8525095331,439259.9367251193,367688.9646775238,185196.5882265369,2212.175407593576 -1805,2260,4071,-9,4069,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.105138883989,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,430.3333333333333,798027.8525095331,439259.9367251193,367688.9646775238,185196.5882265369,2212.175407593576 -1806,2261,4072,4073,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.398558903100665,7.177796702597909,0,26,-1,-5.693849777892312,0,2,2,2019,11,0,18,22,1,0,0,9.126291288622925,9.126291288622925,0,0,0,0,0,1,1,0,2.803651326513776,0,53.5,51.02,52,48,8.333333333333334,1,1,0,0,10,9,2,1,333,290007.7195013727,121085.2400911403,0,0,2324.20687518829 -1806,2261,4073,4072,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,4.233587041365809,4.635790849397416,7,1,-123.8391096759789,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.246421284248584,4.391285627901657,52,48,53.5,51.02,7,1,1,0,0,0,9,2,1,333,290007.7195013727,121085.2400911403,0,0,2324.20687518829 -1807,2262,4074,4075,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.050666803835123,6.48126476894441,7,2,-101.1605124556606,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.244211178893988,6.855967019517606,50.82,36.52,53.78,48.41,5,1,1,0,0,4,7,3,1,556.5,1202363.242066383,504336.4794384835,621051.9087044834,0,2628.034055960813 -1807,2262,4075,4074,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.453371061879494,7.734390018330841,7,-2,9.622365256484947,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.506640469712552,7.602014961634879,53.78,48.41,50.82,36.52,8.333333333333334,1,1,0,0,3,7,3,1,556.5,1202363.242066383,504336.4794384835,621051.9087044834,0,2628.034055960813 -1808,2263,4076,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.375574042381,0,3,2,2019,19,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,28.79,21.04,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1194,-104853.4835347217,0,0,0,1313.60992370477 -1809,2264,4077,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,6.893744782406412,7.190828814289224,0,0,0,-998.5377350333154,0,-9,-9,2019,16,4,16,24,1,4,0,7.554803395473721,7.554803395473721,0,0,0,0,0,1,1,0,0,0,39.13,44.14,-9,-9,5,1,1,0,0,8,13,2,0,153.5,-32123.83775048368,0,0,0,697.3239144410654 -1809,2264,4078,-9,4077,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.5766230386306,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,153.5,-32123.83775048368,0,0,0,697.3239144410654 -1810,2265,4079,4080,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.462234573809248,6.395500550979702,50,1,-32.99581340109725,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.050762070746319,6.397017792134096,53.14,51.28,58.89,35.37,10,1,1,0,0,0,9,3,1,456,1137728.456457722,521596.2929646211,429739.9110611961,0,2799.316460725758 -1810,2265,4080,4079,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.842490395333883,8.156353671066249,50,-1,-116.8647037873499,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,3.399188787863871,2,1,1,0,4.843599771535554,7.848132508775206,58.89,35.37,53.14,51.28,8.333333333333334,1,1,0,0,11,9,3,1,456,1137728.456457722,521596.2929646211,429739.9110611961,0,2799.316460725758 -1811,2266,4081,-9,4082,4084,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1095.384764829822,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,4,2,0,335.5,-27624.31124930721,0,0,0,2564.336037403642 -1811,2266,4082,4084,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.700504555044148,7.991042047828556,0,17,-1,-4.097722038025735,0,2,2,2019,6,0,30,30,1,0,0,11.1845714321612,11.1845714321612,0,0,0,0,96,1,1,0,0,0,62.51,39.17,23.69,50.66,8.333333333333334,1,1,0,0,5,4,2,0,335.5,-27624.31124930721,0,0,0,2564.336037403642 -1811,2266,4083,-9,4082,4084,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1073.188112677709,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,2,0,335.5,-27624.31124930721,0,0,0,2564.336037403642 -1811,2266,4084,4082,-9,-9,1,1,46,0,2,0,3,3,-9,1,1,0,0,0,17,1,-91.70539554166099,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,23.69,50.66,62.51,39.17,3.333333333333333,2,3,0,0,8,4,2,0,335.5,-27624.31124930721,0,0,0,2564.336037403642 -1812,2267,4085,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.46436331655968,8.770163255692118,6.439614420361371,22,22,-11.37870990035234,0,2,2,2019,8,0,45,40,1,0,0,12.51582422685264,12.51582422685264,0,0,0,0,0,1,1,0,5.709318142597029,5.973352361051822,53.78,56.44,50.46,36.31,8.333333333333334,1,1,0,0,8,9,5,0,132,142422.709353852,346105.3239212523,0,0,3253.199214491481 -1812,2268,4086,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.201493554766477,8.636166194969785,0,19,-22,4.354865860899623,0,3,2,2019,8,0,38,38,1,0,0,11.2391446303796,11.2391446303796,0,0,0,0,0,1,1,0,.2308822486374648,0,50.46,36.31,53.78,56.44,8.333333333333334,1,1,0,0,8,9,5,0,797,582056.1663517308,51502.03562154026,280814.7960155426,64926.29621062634,1839.959237440567 -1813,2269,4087,4088,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.124279046019656,7.52247834348986,0,38,2,-65.77073927873627,0,-9,-9,2019,11,0,40,35,1,0,0,2.866232044555372,2.866232044555372,0,0,0,0,0,0,0,0,0,0,38.24,63.73,49.28,50.19,6.666666666666667,1,1,0,0,11,2,3,1,678.5,-151241.2610893575,30086.34295335981,0,0,1441.571209245909 -1813,2269,4088,4087,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.37104664974264,7.601956509324102,0,38,-2,-41.72413934478347,0,2,2,2019,10,0,32,24,1,0,0,4.919086702897722,4.919086702897722,0,0,0,0,0,0,0,0,2.882899939859859,0,49.28,50.19,38.24,63.73,8.333333333333334,1,1,0,0,11,2,3,1,678.5,-151241.2610893575,30086.34295335981,0,0,1441.571209245909 -1814,2270,4089,4090,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.515345612444423,7.835605489426149,0,10,5,-117.6088025718765,0,-9,3,2019,12,0,36,36,1,0,0,6.597340759664175,6.597340759664175,0,0,0,0,0,1,1,0,0,0,43.6,51.61,24.69,57.43,8.333333333333334,1,1,0,0,8,12,2,0,800.5,175273.6552932323,0,112488.2278617918,0,2648.280779121175 -1814,2270,4090,4089,-9,-9,1,0,40,0,2,0,2,2,-9,1,4,0,0,0,10,-5,-93.06067733394229,0,3,2,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.69,57.43,43.6,51.61,5,1,1,0,0,0,12,2,0,800.5,175273.6552932323,0,112488.2278617918,0,2648.280779121175 -1814,2270,4091,-9,4090,4089,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.42179302834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,800.5,175273.6552932323,0,112488.2278617918,0,2648.280779121175 -1814,2270,4092,-9,4090,4089,1,1,16,0,2,1,3,0,-9,1,3,0,0,0,0,0,-776.3951874986207,-9,2,2,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,45.64,-9,-9,3.333333333333333,1,1,0,1,0,12,2,0,800.5,175273.6552932323,0,112488.2278617918,0,2648.280779121175 -1815,2271,4093,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.46637788095423,8.400676620250033,0,0,0,-1032.400507646896,0,2,2,2019,14,3,40,50,1,3,0,16.46482023022478,16.46482023022478,0,0,0,0,0,0,0,0,0,0,45.22,63.14,-9,-9,6.666666666666667,1,1,0,0,9,11,5,1,1870,-88783.06805415574,134450.5707868284,147304.5314653956,156159.3572986202,1720.448700844811 -1816,2272,4094,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,3.226519422346179,3.294917247341919,0,0,-994.8300978354282,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,25.58639810432803,0,0,1,1,0,3.364229015709487,3.422950733275727,44,37.89,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,288,7293.594000465935,-14586.86728387331,112799.7762458113,0,1424.130650246554 -1817,2273,4095,4098,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.122470445440923,8.305460454506633,0,13,-11,25.05385599862753,0,2,2,2019,6,0,40,45,1,0,0,10.61434602858614,10.61434602858614,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.31,32.15,8.333333333333334,2,3,0,0,8,8,4,0,948.75,635046.8287407642,-7910.590459543786,453438.0684865539,69027.92074457128,3417.139149349538 -1817,2273,4096,-9,4095,4098,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.935806130382,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,948.75,635046.8287407642,-7910.590459543786,453438.0684865539,69027.92074457128,3417.139149349538 -1817,2273,4097,-9,4095,4098,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.3634712745483,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,948.75,635046.8287407642,-7910.590459543786,453438.0684865539,69027.92074457128,3417.139149349538 -1817,2273,4098,4095,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.337626262752417,8.297045687761273,0,8,11,20.4561015001612,0,-9,-9,2019,0,0,54,49,1,0,0,8.587429837326336,8.587429837326336,0,0,0,0,0,1,1,0,0,0,47.31,32.15,62.39,56.71,8.333333333333334,2,3,0,0,11,8,4,0,948.75,635046.8287407642,-7910.590459543786,453438.0684865539,69027.92074457128,3417.139149349538 -1818,2274,4099,4100,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,6.695343926258413,7.146543274731973,10,3,12.83327872253679,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.786292481649268,7.060722567548043,57.06,57.76,57.16,56.15,10,1,1,0,0,0,2,2,1,765,181881.8943957816,19722.80356590521,162069.9530181988,0,1084.194575342882 -1818,2274,4100,4099,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,52,-3,-80.22538551901843,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,.3456226987666042,0,28.06417286541491,7,1,1,0,3.273675403497623,0,57.16,56.15,57.06,57.76,10,1,1,0,0,3,2,2,1,765,181881.8943957816,19722.80356590521,162069.9530181988,0,1084.194575342882 -1819,2275,4101,4102,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.892293251382269,7.180299126592564,10,8,-54.65397228840245,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.88142472426146,0,0,1,1,0,0,7.428174668519722,51,46,57.33,53.46,10,1,1,0,0,0,7,5,1,472,229037.85685208,335598.6839676718,0,0,4932.950813664156 -1819,2275,4102,4101,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.915483016115724,8.543044253494873,10,-8,70.43451256300564,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.691317644991505,8.670738651043726,57.33,53.46,51,46,8.333333333333334,1,1,0,0,0,7,5,1,472,229037.85685208,335598.6839676718,0,0,4932.950813664156 -1820,2276,4103,4104,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,6.414889868830112,6.246856690665571,34,3,16.38943696620402,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,2.537143040199163,46.40734698646907,24.64226921066,0,1,1,0,3.206130970744079,6.446980856448286,30.6,18.53,61.28,48.88,6.666666666666667,1,1,0,0,6,2,3,1,612.5,1080696.609028297,651679.1242912889,337526.4120314715,0,2185.028115220735 -1820,2276,4104,4103,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.442757008818194,7.435705958731531,34,-3,-.7199511366030078,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,42,1,1,0,4.540211386521617,7.412424667642741,61.28,48.88,30.6,18.53,8.333333333333334,1,1,0,0,9,2,3,1,612.5,1080696.609028297,651679.1242912889,337526.4120314715,0,2185.028115220735 -1821,2277,4105,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-966.026151378775,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.732927278782803,0,38.62,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,977,337858.3445590592,0,113366.7871475685,0,823.3306044033591 -1822,2278,4106,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,4,0,0,0,0,0,-950.1386196178443,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,42,1,0,1,0,0,42.05,58.8,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,1645,0,0,0,0,540.6532005807627 -1822,2278,4107,-9,4106,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.3129152810271,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,1645,0,0,0,0,540.6532005807627 -1823,2279,4108,-9,4109,4111,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.299885065406,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.0043387870156018,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,586.5,393816.9229376372,265389.549206237,134504.4532399268,0,3560.936249766663 -1823,2279,4109,4111,-9,-9,1,0,42,0,2,0,2,2,-9,1,4,8.013713870367319,7.855577996624888,0,18,-7,17.46847082357729,0,2,3,2019,16,4,37,39,1,4,0,9.455662281960853,9.455662281960853,0,0,0,0,0,1,1,0,0,0,30.77,64.34,38.05,45.93,8.333333333333334,1,1,0,0,11,1,4,1,586.5,393816.9229376372,265389.549206237,134504.4532399268,0,3560.936249766663 -1823,2279,4110,-9,4109,4111,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.102741563319,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,586.5,393816.9229376372,265389.549206237,134504.4532399268,0,3560.936249766663 -1823,2279,4111,4109,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.488469568992477,8.513747228202092,0,10,7,2.088920323053147,0,-9,-9,2019,13,2,37,37,1,2,0,13.2425992658601,13.2425992658601,0,0,0,0,0,1,1,0,0,0,38.05,45.93,30.77,64.34,8.333333333333334,1,1,0,1,11,1,4,1,586.5,393816.9229376372,265389.549206237,134504.4532399268,0,3560.936249766663 -1824,2280,4112,4113,-9,-9,1,0,66,0,0,0,3,3,-9,1,3,0,0,0,35,4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,1,0,0,0,0,1,1,0,0,0,49,47,50,48,7,2,3,0,1,0,6,1,1,710.5,-144293.8918695014,0,0,0,546.3856860439505 -1824,2280,4113,4112,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,0,0,35,-4,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,48,49,47,7,2,3,0,1,0,6,1,1,710.5,-144293.8918695014,0,0,0,546.3856860439505 -1825,2281,4114,-9,-9,-9,1,0,100,0,0,0,3,3,-9,0,3,0,7.246115008852892,7.438599515383262,0,0,-1058.644371377719,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.482317730833272,7.453266490622029,53.59,41.41,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,1177,372358.8718728838,106295.671214017,195441.3804070452,0,1678.09562100208 -1826,2282,4115,-9,-9,4116,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1036.090584878435,1,-9,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.3,57.2,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,734.5,-8159.556055004112,111983.6563386327,0,0,1286.849266029834 -1826,2282,4116,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,0,7.738820302364217,7.979972775864598,0,0,-1061.066761270938,0,2,2,2019,6,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,4.218476517247055,7.565907108361779,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,734.5,-8159.556055004112,111983.6563386327,0,0,1286.849266029834 -1827,2283,4117,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,0,0,-839.842333684204,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,24.45,-9,-9,3.333333333333333,1,1,0,0,3,7,1,0,682.6666666666666,-81973.81322898286,-35014.36834991063,0,0,2190.682447194704 -1827,2283,4118,-9,4117,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.5136577147257,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,682.6666666666666,-81973.81322898286,-35014.36834991063,0,0,2190.682447194704 -1827,2283,4119,-9,4117,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.1576171089268,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,682.6666666666666,-81973.81322898286,-35014.36834991063,0,0,2190.682447194704 -1828,2284,4120,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1013.301106358028,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,7,1,1,0,0,0,6,1,0,118,-134417.3404127387,0,75621.08544491557,0,819.4423743775635 -1829,2285,4121,4122,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,7.643020162903944,7.759110418676712,4.874188603145473,37,3,113.9040315766644,0,2,2,2019,11,0,60,48,1,0,0,4.374839059715175,4.374839059715175,0,0,0,0,0,0,0,0,4.770525471906556,5.033279630100204,57.68,29.16,39.39,52.44,5,1,1,0,0,11,2,5,1,206.5,1628590.615981576,0,534285.7879911177,0,3790.353496591445 -1829,2285,4122,4121,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,9.019217570951378,9.036915343091776,0,37,-3,-8.319254011151468,0,3,3,2019,15,4,25,20,1,4,0,36.56589949400597,36.56589949400597,0,0,0,0,7,0,0,0,0,0,39.39,52.44,57.68,29.16,6.666666666666667,1,1,0,0,11,2,5,1,206.5,1628590.615981576,0,534285.7879911177,0,3790.353496591445 -1830,2286,4123,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-788.1699346931614,0,3,3,2019,16,4,0,8,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.96,39.87,-9,-9,6.666666666666667,1,1,0,1,2,8,1,0,221,49393.32532424651,0,0,0,1215.38110001075 -1831,2287,4124,4125,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.444626288179894,8.463070130410113,6.274639439047728,40,0,55.54934731662954,0,3,3,2019,7,0,37,40,1,0,0,13.41011725128711,13.41011725128711,0,0,0,0,0,1,1,0,0,6.669060149208351,54.96,53.17,61.68,49.95,8.333333333333334,1,1,0,0,13,12,4,1,234.5,1417474.609791576,1072818.076890921,274086.6998502053,0,4329.565108015389 -1831,2287,4125,4124,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.444057398946144,7.358069426550438,40,0,102.1908252526844,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.275056669103567,7.247341397458845,61.68,49.95,54.96,53.17,10,1,1,0,0,9,12,4,1,234.5,1417474.609791576,1072818.076890921,274086.6998502053,0,4329.565108015389 -1832,2288,4126,-9,-9,-9,1,1,25,0,0,0,1,1,1,0,5,8.550022700417435,8.656354418797351,0,3,-4,-94.69181383304112,-9,1,1,2019,8,1,50,0,1,1,0,12.56699237202564,12.56699237202564,0,0,0,0,0,0,0,0,.6430082770118772,0,46.56,59.98,54.79,55.86,6.666666666666667,4,2,0,0,8,1,5,1,178,-453.0086243058322,110703.539300725,170765.2799600176,130441.1893277507,1728.920638638466 -1832,2289,4127,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.869725452788128,8.93531824977684,0,3,4,90.77943208522721,0,-9,-9,2019,6,0,48,45,1,0,0,18.75381775860318,18.75381775860318,0,0,0,0,0,0,0,0,2.929854164580061,0,54.79,55.86,46.56,59.98,6.666666666666667,1,1,0,0,3,1,5,1,217,32380.70653767794,110497.7998275065,0,0,2718.802875007419 -1833,2290,4128,4129,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.275746130511967,8.231177977211425,0,20,0,55.34666144567062,0,2,3,2019,9,0,35,30,1,0,0,13.60090989142187,13.60090989142187,0,0,0,0,0,1,1,0,2.274918230192866,0,56.67,42.78,47,50,6.666666666666667,1,1,0,0,6,8,4,1,1064,245761.9835331306,161493.4160862419,197800.5030985231,103336.8698536341,3840.842892575682 -1833,2290,4129,4128,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.391164295823373,8.622295197144581,0,20,0,-.89375416933439,0,2,2,2019,12,0,43,44,1,0,0,10.47612016948416,10.47612016948416,0,0,0,0,7,1,1,0,2.874405396349587,0,47,50,56.67,42.78,6.666666666666667,1,1,0,0,9,8,4,1,1064,245761.9835331306,161493.4160862419,197800.5030985231,103336.8698536341,3840.842892575682 -1833,2290,4130,-9,4129,4128,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1117.945041481038,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.867903753231765,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,1064,245761.9835331306,161493.4160862419,197800.5030985231,103336.8698536341,3840.842892575682 -1834,2291,4131,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.843831320088465,6.891837711182736,0,0,-1057.222028445085,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.514274056301984,57.24,30.64,-9,-9,10,1,1,0,0,0,1,2,0,379,768792.1584982532,82125.91053637682,131900.7972979315,0,1449.095004965702 -1835,2292,4132,4133,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.50507454031794,8.825264402558687,36,-1,158.7775257123075,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,4.08486650296252,8.766031192634358,51.24,58.84,55.36,54.24,6.666666666666667,1,1,0,0,3,4,4,1,315.5,2560119.119146564,1722009.262662155,732063.7596347984,0,3094.813854176719 -1835,2292,4133,4132,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,36,1,-12.47964114843731,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,.3051055639041162,0,55.36,54.24,51.24,58.84,10,1,1,0,0,7,4,4,1,315.5,2560119.119146564,1722009.262662155,732063.7596347984,0,3094.813854176719 -1836,2293,4134,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1044.383172728536,0,1,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,31.05,-9,-9,6.666666666666667,1,1,1,1,0,1,1,0,341,-194889.9934704491,0,0,0,997.9032880474369 -1837,2294,4135,-9,4136,-9,1,1,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1097.816094564445,0,1,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,11.04,49.63,-9,-9,3.333333333333333,2,3,0,0,0,2,1,1,973,-47800.56955390199,0,0,0,699.0897297913042 -1837,2295,4136,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1005.910527085507,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,31.26,22.23,-9,-9,3.333333333333333,2,3,0,0,0,2,1,1,525,-90260.52914680257,0,0,0,631.7937445693851 -1838,2296,4137,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,6.456372012578331,6.182107406877583,0,0,-1188.38210580038,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.197434626760884,6.237697563262013,55.27,56.95,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,219,349456.5093404662,37172.848712488,215241.9264884605,0,823.6483144602325 -1839,2297,4138,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.424374228092315,8.386103918359479,0,0,0,-1094.171080298476,0,2,2,2019,12,1,35,30,1,1,0,13.28014642624038,13.28014642624038,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,229,742208.7568813654,547884.394530547,11373.3394368122,0,1498.302058645737 -1839,2298,4139,-9,4138,-9,1,0,27,0,0,0,2,2,-9,0,3,7.549344471997232,7.143331722388513,0,0,0,-1070.946485284912,0,2,-9,2019,7,0,32,30,1,0,1,6.870273423683418,6.870273423683418,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,11,3,1,514,-34167.56249655809,0,0,0,914.5411584542027 -1839,2299,4140,-9,4138,-9,1,1,25,0,0,0,2,2,-9,0,4,7.53024295980006,7.649217601978338,0,0,0,-863.9531846533978,0,2,-9,2019,6,0,40,40,1,0,1,6.234323882354408,6.234323882354408,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,453,116694.3022399297,15499.7853671952,0,0,976.4758863530952 -1840,2300,4141,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.00221869743608,8.27570006683761,5.943259294129249,0,0,-831.3966786749806,0,-9,-9,2019,11,3,34,37,1,3,0,10.02646051162815,10.02646051162815,0,0,0,0,0,1,0,1,5.673341633199557,0,25.79,65.03,-9,-9,6.666666666666667,1,1,0,0,10,5,3,0,536,237013.4550938901,101448.9169716077,264331.0309414209,108172.6923347198,1851.911363148878 -1841,2301,4142,-9,4143,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.2189433689011,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,822,-11966.12133473154,0,0,0,1841.45848933067 -1841,2301,4143,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,0,0,0,0,-981.302777530005,0,2,2,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,57.48,16.73,-9,-9,10,3,4,0,0,0,8,2,0,822,-11966.12133473154,0,0,0,1841.45848933067 -1841,2302,4144,-9,4143,-9,1,0,27,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1076.087312554282,1,3,2,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,14.5,1,0,1,0,0,48.17,29.36,-9,-9,5,3,4,0,1,3,8,1,0,930,11140.77777997882,0,0,0,763.4260110708416 -1841,2303,4145,-9,4143,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1007.055051964792,-9,3,-9,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,0,1,0,0,63.33,24.58,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,892,327407.6919306953,0,0,0,254.4053509630716 -1842,2304,4146,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.5213486583073,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,55.84,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,621,36408.82890312775,0,0,0,843.1460716660638 -1843,2305,4147,4148,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.505864629380328,8.473988296138655,0,7,0,50.8417201946337,0,2,3,2019,6,0,39,42,1,0,0,14.42216262063933,14.42216262063933,0,0,0,0,0,0,0,0,0,0,57.33,53.46,24.26,51.38,6.666666666666667,1,1,0,0,9,6,5,1,998,860604.3684897406,879254.9079484607,0,0,2980.856911875267 -1843,2305,4148,4147,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,8.216776973389823,8.262831976995558,0,7,0,22.21932777959158,0,2,3,2019,15,3,35,40,1,3,0,11.04486050029976,11.04486050029976,0,0,0,0,7,0,0,0,0,0,24.26,51.38,57.33,53.46,5,1,1,0,0,6,6,5,1,998,860604.3684897406,879254.9079484607,0,0,2980.856911875267 -1844,2306,4149,4150,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,-4,-182.5999966640662,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,35.87741869447629,0,27,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,11,2,1,1248.5,227072.7180742236,8422.996466534103,149446.8830955412,0,1872.364437114226 -1844,2306,4150,4149,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.419557706741092,6.638825584592565,6,4,125.1581618888416,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,0,6.403926778035673,53,46,51,46,8,1,1,0,0,0,11,2,1,1248.5,227072.7180742236,8422.996466534103,149446.8830955412,0,1872.364437114226 -1845,2307,4151,4152,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,9,0,-82.30827363553594,0,3,3,2019,18,8,0,0,3,8,0,0,0,0,0,0,0,7,0,0,0,3.601496347546202,0,48.7,56.22,42.12,61.5,8.333333333333334,1,1,1,0,7,9,3,1,718.5,1281929.915690331,758235.5203441989,294104.8373282211,0,1298.514186537066 -1845,2307,4152,4151,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.050599965546176,8.408976818914615,9,0,47.80169198670552,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3.636635643974457,8.193773262755197,42.12,61.5,48.7,56.22,8.333333333333334,1,1,0,0,10,9,3,1,718.5,1281929.915690331,758235.5203441989,294104.8373282211,0,1298.514186537066 -1846,2308,4153,4155,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,6.972581539166068,6.414956117374421,0,1,-2,3.348824441877817,-9,-9,-9,2019,11,0,40,0,1,0,0,2.697588152215121,2.697588152215121,0,0,0,0,0,1,1,0,0,0,44,53,46.29,54.22,7,1,1,0,0,8,13,3,0,551.25,45391.90908784224,33982.69168985838,141104.6889988868,71981.97006975286,2214.956616308645 -1846,2308,4154,-9,4153,4155,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.740397224476,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,551.25,45391.90908784224,33982.69168985838,141104.6889988868,71981.97006975286,2214.956616308645 -1846,2308,4155,4153,-9,-9,1,1,29,1,2,0,2,2,-9,0,4,8.331719294200393,8.173604901069188,0,1,2,38.28118082510219,-9,2,3,2019,8,0,45,0,1,0,0,8.99615265040261,8.99615265040261,0,0,0,0,0,1,1,0,0,0,46.29,54.22,44,53,6.666666666666667,1,1,0,0,10,13,3,0,551.25,45391.90908784224,33982.69168985838,141104.6889988868,71981.97006975286,2214.956616308645 -1846,2308,4156,-9,4153,4155,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-807.3575100776222,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,551.25,45391.90908784224,33982.69168985838,141104.6889988868,71981.97006975286,2214.956616308645 -1847,2309,4157,4159,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.366416621086525,7.300491556917327,0,20,1,6.653882975678508,0,2,2,2019,6,0,20,-9,1,0,0,9.206427335302038,9.206427335302038,0,0,0,0,0,1,1,0,1.557790604397358,0,51.17,52.06,40.48,54.19,8.333333333333334,1,1,0,0,8,2,3,1,1114.333333333333,42583.39311897071,58357.8122527453,143416.1254249938,186445.1233563767,2400.258580857704 -1847,2309,4158,-9,4157,4159,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-822.5299026105884,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,1114.333333333333,42583.39311897071,58357.8122527453,143416.1254249938,186445.1233563767,2400.258580857704 -1847,2309,4159,4157,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,7.842210675700121,7.9242019434515,0,10,-1,68.27561798460179,0,-9,-9,2019,10,1,40,-9,1,1,0,7.430784036740484,7.430784036740484,0,0,0,0,0,1,1,0,0,0,40.48,54.19,51.17,52.06,6.666666666666667,1,1,0,0,9,2,3,1,1114.333333333333,42583.39311897071,58357.8122527453,143416.1254249938,186445.1233563767,2400.258580857704 -1847,2310,4160,-9,4157,4159,1,0,18,0,3,0,2,2,1,0,4,7.400504632836566,7.046048557627423,0,0,0,-906.7556196094311,-9,2,1,2019,11,1,35,0,1,1,1,5.17574283582737,5.17574283582737,0,0,0,0,0,1,1,0,0,0,41.21,55.01,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,339,-13277.13845304022,-76715.74082244441,0,0,793.0985515130126 -1848,2311,4161,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.102185374842,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,3.091042941133049,16.3883677507849,23.62498484789119,0,1,1,0,0,0,52.56,12.55,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,347,-3050.132276319786,0,0,0,1364.592180121948 -1849,2312,4162,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.986944588009,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,71.89488901045263,0,0,1,1,0,0,0,29.9,21.49,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,354,-144644.0424234296,0,0,0,1633.187987114561 -1850,2313,4163,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.734093063977985,8.085471422754463,0,0,0,-1092.003769481407,0,3,2,2019,6,0,75,75,1,0,0,4.080127238451736,4.080127238451736,0,0,0,0,0,1,1,0,0,0,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,415,610120.9449129998,69804.79091934822,299677.4386680176,0,1840.948652405111 -1851,2314,4164,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.334924857881289,8.053435282397237,0,0,0,-1068.927315377472,0,3,1,2019,13,1,42,43,1,1,0,11.06820695102458,11.06820695102458,0,0,0,0,0,1,1,0,0,0,35.97,33.94,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,424,298569.5058538964,33371.75877606846,102179.6818230368,35797.18783007126,2119.421275093659 -1852,2315,4165,4166,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7449882595238,7.661322758161234,0,41,-2,-29.80465142434976,0,3,3,2019,20,8,12,25,1,8,0,22.79617940341425,22.79617940341425,0,0,0,0,0,0,0,0,5.028357853452931,0,25.14,57.3,56.33,51.02,3.333333333333333,1,1,0,0,11,10,4,1,359,455008.256346442,223617.4157645408,422439.138548209,108331.3192646169,2781.437084283601 -1852,2315,4166,4165,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.486369589534079,7.681125934926262,0,41,2,-38.93554267638437,0,3,3,2019,12,0,21,24,1,0,0,8.462832205955241,8.462832205955241,0,0,0,0,0,0,0,0,7.210845806252991,0,56.33,51.02,25.14,57.3,8.333333333333334,1,1,0,0,11,10,4,1,359,455008.256346442,223617.4157645408,422439.138548209,108331.3192646169,2781.437084283601 -1853,2316,4167,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1015.844673151077,0,3,2,2019,17,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,16.62,38.27,-9,-9,0,1,1,0,1,0,9,1,0,222,40514.85573487973,0,0,0,858.4024533401887 -1854,2317,4168,-9,4170,4169,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.101005679802,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,884.6666666666666,464172.2538677158,110286.2372645473,232206.8263640872,43702.93253011327,3586.330294204754 -1854,2317,4169,4170,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.626004593389759,8.736936399107959,0,6,3,78.40042666153946,0,2,2,2019,14,3,62,53,1,3,0,10.0103049047883,10.0103049047883,0,0,0,0,0,1,1,0,0,0,30.61,67.32000000000001,46.39,60.99,6.666666666666667,1,1,0,0,9,6,4,1,884.6666666666666,464172.2538677158,110286.2372645473,232206.8263640872,43702.93253011327,3586.330294204754 -1854,2317,4170,4169,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.358110941090469,7.401854664965124,0,6,-3,15.92266779787555,0,2,2,2019,13,3,24,25,1,3,0,5.704823459527196,5.704823459527196,0,0,0,0,0,1,1,0,0,0,46.39,60.99,30.61,67.32000000000001,6.666666666666667,1,1,0,0,2,6,4,1,884.6666666666666,464172.2538677158,110286.2372645473,232206.8263640872,43702.93253011327,3586.330294204754 -1855,2318,4171,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-915.0930268370277,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,8.273721508158669,0,2,1,1,0,0,0,65.96000000000001,37.14,-9,-9,10,1,1,0,0,0,6,1,0,1681,-123360.0178952549,0,0,0,782.6334932716518 -1856,2319,4172,4175,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.118948121504788,8.14598329607302,0,5,0,34.30964183729662,0,-9,-9,2019,10,0,40,40,1,1,0,11.08637721145431,11.08637721145431,0,0,0,0,0,1,1,0,0,0,51,57,45.91,59.89,7,2,3,0,0,1,6,3,1,811.5,-8635.274970744129,-46694.36970335162,88973.89801380248,55004.50861921738,2210.368785456966 -1856,2319,4173,-9,4175,4172,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.613884992405,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,811.5,-8635.274970744129,-46694.36970335162,88973.89801380248,55004.50861921738,2210.368785456966 -1856,2319,4174,-9,4175,4172,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.7845650089508,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,811.5,-8635.274970744129,-46694.36970335162,88973.89801380248,55004.50861921738,2210.368785456966 -1856,2319,4175,4172,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.664290405161954,7.634143174165684,0,5,0,-32.53279180768067,0,-9,-9,2019,14,1,25,25,1,1,0,8.767301705518367,8.767301705518367,0,0,0,0,2,1,1,0,0,0,45.91,59.89,51,57,5,2,3,0,0,9,6,3,1,811.5,-8635.274970744129,-46694.36970335162,88973.89801380248,55004.50861921738,2210.368785456966 -1857,2320,4176,4177,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.525572003329168,8.847720033999718,0,30,2,-47.61941691781772,0,3,2,2019,8,0,44,45,1,0,0,14.75653103414494,14.75653103414494,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,392,425042.8921316365,145462.4284640577,320116.7675481178,92147.20383241744,2728.352248561891 -1857,2320,4177,4176,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.281086436609223,7.202361264953183,0,30,-2,87.02901546258215,0,2,2,2019,7,0,20,19,1,0,0,10.05835038755669,10.05835038755669,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,10,1,1,0,0,8,4,5,1,392,425042.8921316365,145462.4284640577,320116.7675481178,92147.20383241744,2728.352248561891 -1857,2321,4178,-9,4177,4176,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-998.5157645267271,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1337,-144090.5259438605,0,0,0,0 -1858,2322,4179,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.162745388819776,7.236716947354073,0,0,-1081.646643086703,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,7.779636860411898,7.823755435270919,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1986,249230.6153566063,280624.8744950984,0,0,1450.691930489525 -1859,2323,4180,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.181442751898227,5.973212211929008,0,0,-1149.567681687135,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.967303313347688,48.13,40.19,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,764,117370.8865465764,101264.7203185753,0,0,692.2414322337696 -1860,2324,4181,-9,4183,4182,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.479743477475,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,2,1,815.75,-1210.041568960351,0,0,0,512.7582600048387 -1860,2324,4182,4183,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,6.75431359442921,6.879181504976136,0,10,-2,109.1076502263655,0,2,2,2019,7,0,50,55,1,0,0,2.012498589508597,2.012498589508597,0,0,0,0,0,1,1,0,0,0,52.82,53.97,48.21,50.73,8.333333333333334,1,1,0,0,9,4,2,1,815.75,-1210.041568960351,0,0,0,512.7582600048387 -1860,2324,4183,4182,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,0,0,0,10,2,17.11347509456079,0,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.21,50.73,52.82,53.97,8.333333333333334,1,1,0,0,11,4,2,1,815.75,-1210.041568960351,0,0,0,512.7582600048387 -1860,2324,4184,-9,4183,4182,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.0270114018745,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,2,1,815.75,-1210.041568960351,0,0,0,512.7582600048387 -1861,2325,4185,4186,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.80723819102387,7.596585881871899,0,5,-4,-124.916686008722,0,-9,-9,2019,10,1,40,40,1,1,0,10.12711381381504,10.12711381381504,0,0,0,0,0,1,1,0,4.50160687137965,0,51.24,58.84,61.97,43.07,8.333333333333334,2,3,0,0,7,5,3,1,574.5,149325.3330020788,-9698.64082031828,201463.2638405324,0,1952.121019312407 -1861,2325,4186,4185,-9,-9,1,1,46,0,0,0,3,3,-9,1,3,5.709764032450754,5.722319486231677,0,5,4,29.06975314216788,0,-9,-9,2019,8,0,5,0,1,0,0,5.690444418164029,5.690444418164029,0,0,0,2.779914805348161,0,1,1,0,.8879839657432923,0,61.97,43.07,51.24,58.84,10,1,1,0,1,1,5,3,1,574.5,149325.3330020788,-9698.64082031828,201463.2638405324,0,1952.121019312407 -1862,2326,4187,4189,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.357906186005126,9.12887542059989,0,6,6,54.89351690464126,0,-9,-9,2019,9,0,50,35,1,1,0,21.52377132391828,21.52377132391828,0,0,0,0,0,1,1,0,0,0,53,54,31.12,63.98,8,1,1,0,0,1,9,4,1,419.3333333333333,439251.7509992337,128391.673880027,467874.6345084818,148030.9547770401,4095.392817679015 -1862,2326,4188,-9,4189,4187,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.1028950300555,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,419.3333333333333,439251.7509992337,128391.673880027,467874.6345084818,148030.9547770401,4095.392817679015 -1862,2326,4189,4187,-9,-9,1,0,42,0,3,0,1,1,-9,1,4,6.824754759808298,6.38623168335528,0,19,-6,-41.64649856360182,0,2,2,2019,20,8,15,15,1,8,0,6.542516729156741,6.542516729156741,0,0,0,0,14.5,1,1,0,0,0,31.12,63.98,53,54,8.333333333333334,1,1,0,0,4,9,4,1,419.3333333333333,439251.7509992337,128391.673880027,467874.6345084818,148030.9547770401,4095.392817679015 -1863,2327,4190,4191,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.794923634729548,8.01539865843899,3,4,13.49976937734851,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,6.538063312388786,7.847173870784924,48.77,57.64,51.84,51.67,8.333333333333334,1,1,0,0,0,2,4,1,1471.5,2117762.053250305,1464813.952809991,348042.7433535397,0,1710.523189524705 -1863,2327,4191,4190,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,0,7.843983425063389,7.900552619489076,3,-4,-118.7880516098395,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.427034868257345,7.723306815142776,51.84,51.67,48.77,57.64,10,1,1,0,0,11,2,4,1,1471.5,2117762.053250305,1464813.952809991,348042.7433535397,0,1710.523189524705 -1863,2328,4192,-9,4191,4190,1,1,22,0,0,0,1,1,1,0,4,7.771548051544316,7.964219990682459,0,0,0,-955.5258497222785,-9,1,2,2019,5,0,39,0,1,0,0,8.288996549204532,8.288996549204532,0,0,0,0,0,0,0,0,2.507723495897519,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,532,-78521.6912598256,0,0,0,719.4414016096247 -1864,2329,4193,4194,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.821583060660725,8.841326433863982,44,4,-32.56260367224058,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.384223470673266,8.895570715249383,59.7,53.75,51.77,58.57,10,1,1,0,0,0,8,4,1,325.5,2823052.589131746,1450940.182158519,1212322.914402042,0,4267.993873208774 -1864,2329,4194,4193,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.692199642852218,7.207972462277561,44,-4,57.75941460763021,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.239276041077498,51.77,58.57,59.7,53.75,8.333333333333334,1,1,0,0,6,8,4,1,325.5,2823052.589131746,1450940.182158519,1212322.914402042,0,4267.993873208774 -1865,2330,4195,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.369794110162076,6.215647916342466,0,0,-950.9562381585155,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.460491753028495,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,0,554,-25509.33235067915,187019.1688627381,0,0,1575.137984909804 -1866,2331,4196,4197,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,4,0,0,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,6.19,46.88,25.7,6.666666666666667,1,1,0,1,0,13,1,1,619,-53091.55041297454,26510.94211998758,108942.5299763676,46279.17506922594,807.0369933073847 -1866,2331,4197,4196,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,4,0,0,0,3,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,25.7,61.27,6.19,3.333333333333333,1,1,0,0,0,13,1,1,619,-53091.55041297454,26510.94211998758,108942.5299763676,46279.17506922594,807.0369933073847 -1867,2332,4198,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.753903816889647,9.305692837488561,6.258598618412729,0,0,-1012.365739393677,0,2,2,2019,7,0,14,20,1,0,0,50.37949569366568,50.37949569366568,0,0,0,0,0,0,0,0,6.047091696068844,0,38.53,62.21,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,220,-87661.21432908229,55503.77346347613,0,0,3035.80319390741 -1868,2333,4199,4200,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,6,-4,18.41869695169646,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.21,19.42,28.23,40.47,10,1,1,0,0,0,4,2,0,406,566302.1944356482,203688.3405498832,246377.8506080827,0,1055.65283933234 -1868,2333,4200,4199,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,5.786959078020667,5.846183371568487,6,4,91.3917361811928,0,3,3,2019,32,12,0,0,4,12,0,0,0,1,0,0,0,120,1,1,0,0,6.238705799841223,28.23,40.47,29.21,19.42,3.333333333333333,1,1,0,0,0,4,2,0,406,566302.1944356482,203688.3405498832,246377.8506080827,0,1055.65283933234 -1869,2334,4201,4202,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,26,-15,-23.78623052256615,0,-9,-9,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,3.934047964088373,0,48.94,54.95,57.16,56.15,8.333333333333334,1,1,0,1,0,8,3,1,1645.5,1016396.627458731,581555.63605933,439544.8311264768,0,2377.601044652442 -1869,2334,4202,4201,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.317626177301767,8.144058293600732,26,15,143.5182086618388,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.514100212429781,7.902336342378535,57.16,56.15,48.94,54.95,8.333333333333334,2,3,0,0,4,8,3,1,1645.5,1016396.627458731,581555.63605933,439544.8311264768,0,2377.601044652442 -1870,2335,4203,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,5.917560803058517,8.229224708693538,7.58773174887345,0,0,-998.0600194955682,0,3,3,2019,10,0,5,5,1,0,0,7.129671699191057,7.129671699191057,0,0,0,0,0,1,1,0,7.699517213121322,7.661429136635186,45.17,19.96,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,490,719355.6934652494,541105.6094998253,205552.9205109718,90372.11832370432,2437.246259624873 -1871,2336,4204,4205,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,5.797924147006936,6.06100956226197,40,0,-33.39356831559471,0,-9,-9,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,5.48,1,1,0,4.866441331055787,6.127494153658103,42.79,19.83,41.75,40.68,3.333333333333333,1,1,0,0,4,6,4,1,1558,662509.0466327269,382299.95464449,187304.2783101305,0,3689.842718317107 -1871,2336,4205,4204,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,8.656751797719176,8.608309706376087,42,0,103.0324865351118,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,7.820856683775736,8.667075868600058,41.75,40.68,42.79,19.83,3.333333333333333,1,1,0,0,0,6,4,1,1558,662509.0466327269,382299.95464449,187304.2783101305,0,3689.842718317107 -1872,2337,4206,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.236196250339666,6.505719496222218,0,0,-1017.076191207574,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.743695283142329,52.42,28.61,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,354,148890.4586667582,210816.6380298345,0,0,1063.076380610094 -1873,2338,4207,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,7.208075946837649,7.265298448260402,0,0,-900.1219173911463,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.594281899127481,7.285266972496522,57.8,41.32,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,984,613917.5703630829,322078.5534733193,164217.9061660462,0,1129.197475376146 -1873,2339,4208,-9,4207,-9,1,0,36,0,0,0,2,2,-9,0,5,8.202352651418035,7.892872062274725,0,0,0,-1002.253668513992,0,2,-9,2019,6,0,42,45,1,0,0,9.80219112716471,9.80219112716471,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,271,96893.09600074729,73944.07542755522,101074.3395851868,52207.11235879637,1810.950535739937 -1874,2340,4209,-9,4211,4210,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-945.066614732672,-9,2,1,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,535.6666666666666,976040.6010335028,725919.263803177,323601.2355260759,77947.65808812705,3748.058630708675 -1874,2340,4210,4211,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.63228563034421,9.171878384238042,0,8,-2,146.3916701225844,0,-9,-9,2019,8,0,36,36,1,0,0,26.13563895864365,26.13563895864365,0,0,0,0,0,1,1,0,0,0,57.92,51.82,52.31,58.29,8.333333333333334,1,1,0,0,9,13,5,1,535.6666666666666,976040.6010335028,725919.263803177,323601.2355260759,77947.65808812705,3748.058630708675 -1874,2340,4211,4210,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.972546290426988,7.860939780454395,0,8,2,-52.76235048650583,0,2,2,2019,8,0,30,30,1,0,0,10.65293877635073,10.65293877635073,0,0,0,0,7,1,1,0,0,0,52.31,58.29,57.92,51.82,8.333333333333334,1,1,0,0,9,13,5,1,535.6666666666666,976040.6010335028,725919.263803177,323601.2355260759,77947.65808812705,3748.058630708675 -1874,2341,4212,-9,4211,4210,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-916.4478762129002,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,13,1,1,513,0,0,0,0,0 -1875,2342,4213,4214,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,59,-2,20.35698904082174,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.29,52.11,47.1,42.35,0,1,1,0,0,0,7,2,0,1711,247459.1316643955,109706.7157884935,153079.4759544755,0,1413.286883059002 -1875,2342,4214,4213,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.742733526188926,5.689579684734929,59,2,2.319047499964386,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.445693161284683,47.1,42.35,60.29,52.11,10,1,1,0,0,0,7,2,0,1711,247459.1316643955,109706.7157884935,153079.4759544755,0,1413.286883059002 -1876,2343,4215,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.357711677452482,6.900861769528763,0,0,-1015.822895827316,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,.8162838607442058,.9766884969601957,23.98368655659469,0,1,1,0,3.51207315637688,6.839380037655098,52,45,-9,-9,8,1,1,0,0,0,12,2,0,237,343041.5622021416,94854.03959527869,233042.6828907217,0,1764.9987152752 -1877,2344,4216,4217,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.936968963524161,6.85075119991099,47,-2,-3.16202436698207,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,6.519697881994825,7.072146152637885,51.17,49.39,64.64,48.76,8.333333333333334,1,1,0,0,0,5,2,1,632,700484.1591803593,187586.0306986984,203224.0479331493,0,1636.352853900475 -1877,2344,4217,4216,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,3.534154713983549,3.558428584671803,47,2,-145.3131224600948,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.972656897465605,3.884162008405241,64.64,48.76,51.17,49.39,10,1,1,0,0,0,5,2,1,632,700484.1591803593,187586.0306986984,203224.0479331493,0,1636.352853900475 -1878,2345,4218,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.906095151616443,8.093094782461858,0,0,0,-994.2408188768467,0,-9,-9,2019,23,11,38,38,1,11,0,7.765812325484721,7.765812325484721,0,0,0,0,2,0,0,0,2.048909588365508,0,29.54,58.14,-9,-9,3.333333333333333,3,4,0,0,6,6,3,1,374,-162199.4491273508,0,0,0,720.2156459372131 -1879,2346,4219,4220,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.680298663709184,7.300060887375023,0,5,-1,71.61706905840754,-9,3,2,2019,8,0,40,0,1,0,0,5.740752443342461,5.740752443342461,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.25,56.54,10,2,3,0,0,5,9,4,1,522,650311.2887212436,328667.8638439132,499527.5959670072,51565.89480172325,3389.895406304061 -1879,2346,4220,4219,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.15526562236119,7.994864171536278,0,5,1,-30.76053711183505,-9,1,1,2019,11,0,35,0,1,0,0,13.1056048289951,13.1056048289951,0,0,0,0,0,0,0,0,8.003295084610798,0,50.25,56.54,57.16,56.15,8.333333333333334,2,3,0,0,3,9,4,1,522,650311.2887212436,328667.8638439132,499527.5959670072,51565.89480172325,3389.895406304061 -1880,2347,4221,4222,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.40656422500368,6.397524704600184,10,1,-37.01079952068547,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.789317126713534,6.505107196224359,66.97,31.19,53.7,48.26,8.333333333333334,1,1,0,0,0,12,3,1,446,1015502.358636066,648607.1598828861,399406.5828857536,0,2211.033757131131 -1880,2347,4222,4221,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.312083702820972,7.177643399044425,10,-1,5.877378823242159,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.503067753953112,7.759096887827843,53.7,48.26,66.97,31.19,8.333333333333334,1,1,0,0,0,12,3,1,446,1015502.358636066,648607.1598828861,399406.5828857536,0,2211.033757131131 -1881,2348,4223,4224,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.804222931102645,9.805862141902383,0,25,2,-32.93729974171172,0,2,2,2019,9,0,10,44,1,0,0,186.4027969682167,186.4027969682167,0,0,0,0,0,0,0,0,0,0,52.31,58.29,57.16,56.15,8.333333333333334,2,3,0,0,10,10,5,1,791.5,1421274.877039676,865008.4957081133,400398.8213317523,237004.0565983106,13332.88961275323 -1881,2348,4224,4223,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.478345397082245,9.70290540196158,0,9,-2,131.6451007528857,0,3,1,2019,9,0,88,48,1,0,0,17.88081595489504,17.88081595489504,0,0,0,0,0,0,0,0,8.646619262133997,0,57.16,56.15,52.31,58.29,8.333333333333334,2,3,0,0,9,10,5,1,791.5,1421274.877039676,865008.4957081133,400398.8213317523,237004.0565983106,13332.88961275323 -1882,2349,4225,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.836548134366144,8.681706171489704,0,0,0,-923.7902880176591,0,2,2,2019,10,0,50,50,1,0,0,16.94620887634832,16.94620887634832,0,0,0,0,0,0,0,0,6.569544701494796,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,496,414072.9509600594,273286.1737576997,0,0,2853.987076912865 -1883,2350,4226,4227,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.023486684977414,8.138128045305951,27,-1,15.95016143755392,0,1,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.451227077407379,7.918664024138309,57.06,57.76,61.12,51.57,10,1,1,0,0,8,6,4,1,969.5,1695815.083771523,1077679.728421518,369094.8987391875,0,3262.668174347502 -1883,2350,4227,4226,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.114704869991026,8.089773761005308,30,1,124.4760131154472,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.117593872957581,8.071414403735362,61.12,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,969.5,1695815.083771523,1077679.728421518,369094.8987391875,0,3262.668174347502 -1884,2351,4228,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.715311568299033,7.738612058171904,0,0,-969.4676686482009,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.997591550067296,7.65135211828062,49.28,50.19,-9,-9,5,1,1,0,0,0,6,3,1,471,272380.3277499655,40677.02184020828,202510.0097758573,48717.42771780337,1766.669352290293 -1885,2352,4229,4230,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.539714238338878,7.751045383816304,24,15,105.3105806788654,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.403599252075053,7.466839115321945,64.40000000000001,42,57.16,56.15,8.333333333333334,1,1,0,0,10,7,3,1,535,895771.5596237073,281473.7860572883,434067.5698835056,0,2195.05564451877 -1885,2352,4230,4229,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.223415072106839,7.365171528470534,0,24,-15,86.79496789869329,0,3,3,2019,7,0,22,20,1,0,0,9.143619994682954,9.143619994682954,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.40000000000001,42,8.333333333333334,1,1,0,0,12,7,3,1,535,895771.5596237073,281473.7860572883,434067.5698835056,0,2195.05564451877 -1886,2353,4231,4232,-9,-9,1,1,27,0,0,0,2,2,-9,0,1,0,6.070846476896092,6.020317933976573,1,5,-26.31883596388766,-9,-9,-9,2019,29,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,6.463587278008945,0,19.88,50.7,4.600000000000001,65.98,1.666666666666667,1,1,0,0,0,7,3,0,908.5,-35881.11574127698,0,0,0,1346.42075693777 -1886,2353,4232,4231,-9,-9,1,0,22,0,0,0,1,1,1,0,2,7.528188992809477,7.700380927334203,6.389701923921526,1,-5,-17.14424854727044,-9,-9,-9,2019,31,11,30,0,1,11,0,6.766301906468028,6.766301906468028,0,0,0,0,0,1,1,0,6.234192209729046,0,4.600000000000001,65.98,19.88,50.7,1.666666666666667,1,1,0,0,2,7,3,0,908.5,-35881.11574127698,0,0,0,1346.42075693777 -1887,2354,4233,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.88273530735648,8.712670759070297,0,0,0,-935.9707268886935,0,2,2,2019,8,1,36,36,1,1,0,17.80249799788747,17.80249799788747,0,0,0,0,0,0,0,0,6.775561942763,0,47.91,48.36,-9,-9,3.333333333333333,2,3,0,0,11,8,5,1,581,970904.0256784351,350202.8492053153,280265.9563763822,0,2472.752230599411 -1888,2355,4234,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.235187103560017,7.372755912684312,0,0,-971.7935309834185,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.525845293289709,7.412232898908351,58.07,46.29,-9,-9,10,1,1,0,0,0,4,3,1,495,430393.5562379725,180630.107654504,174570.4152068648,0,1602.540414356124 -1889,2356,4235,4236,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.879324244116509,5.650414932230832,4,2,-43.32331556775291,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,5.683019802896029,56.19,45.49,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1605,289173.0574359183,86731.96903593926,121507.7927823438,0,1928.979065394063 -1889,2356,4236,4235,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.991604281448536,8.289253321589337,6.708713016388177,4,-2,193.558614669224,0,3,3,2019,7,0,60,60,1,0,0,6.85736193772769,6.85736193772769,0,0,0,0,0,0,0,0,3.454604661410925,6.919309537602382,57.16,56.15,56.19,45.49,8.333333333333334,1,1,0,0,9,12,4,1,1605,289173.0574359183,86731.96903593926,121507.7927823438,0,1928.979065394063 -1890,2357,4237,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.388609449169676,6.010086307198296,0,0,-857.9547158960825,0,2,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,1.179353941446383,6.415767085668073,42.01,56.54,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,3539,71244.07350917239,-34789.41111029583,0,0,1638.544750000685 -1891,2358,4238,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.118222991185704,9.277422430791491,0,3,8,-25.55677108288231,0,2,3,2019,18,6,41,41,1,6,0,36.96072420883842,36.96072420883842,0,0,0,0,0,0,0,0,7.117772313076768,0,38.26,60.7,49,56,6.666666666666667,1,1,0,0,8,8,5,1,1351,442563.7043822082,281982.8983672524,330832.7417021572,34640.49576045347,4495.911097879543 -1892,2359,4239,4240,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.777212593204019,6.626836770709179,58,-2,11.09790509999986,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.62467423279089,48.89,40.72,36.72,53.1,8.333333333333334,1,1,0,0,0,11,2,1,200,625026.1597649381,192994.9582268883,429225.9374005113,0,2267.393719645003 -1892,2359,4240,4239,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.589724605927129,6.940135108424804,58,2,9.88048145739919,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.4605051062030716,6.845573504459291,36.72,53.1,48.89,40.72,6.666666666666667,1,1,0,0,0,11,2,1,200,625026.1597649381,192994.9582268883,429225.9374005113,0,2267.393719645003 -1893,2360,4241,4242,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.907239320623919,8.79716525095958,0,2,4,-47.99681938225432,0,2,2,2019,6,0,39,39,1,0,0,17.76042421019144,17.76042421019144,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,10,1,1,0,0,9,9,4,1,429.5,634446.1876595978,161480.291534015,516412.7050694042,210102.0118745368,2665.946113918852 -1893,2360,4242,4241,-9,-9,1,0,28,0,0,0,1,1,0,0,4,0,0,0,2,-4,86.64913194131067,-9,-9,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,4,2,0,0,2,9,4,1,429.5,634446.1876595978,161480.291534015,516412.7050694042,210102.0118745368,2665.946113918852 -1894,2361,4243,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,7.968047757285074,7.9382618103206,0,0,0,-1130.214473826851,-9,-9,-9,2019,7,0,45,0,1,0,0,7.460522981536412,7.460522981536412,0,0,0,0,0,0,0,0,0,0,49.75,53.18,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,183,-21716.94531584616,0,0,0,1362.433870589352 -1895,2362,4244,4245,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,4.726396085846854,4.87271131397379,72,2,55.26938931866393,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,2.775316132555191,6.689540234542248,0,0,1,1,0,0,4.669276885888224,28.1,28.06,46.41,35.13,6.666666666666667,2,3,0,0,0,4,2,1,796,359334.9978366354,105600.5648928456,255008.8019599676,0,2564.283977929786 -1895,2362,4245,4244,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.9225532924784,6.400090526201456,72,-2,61.99421358300143,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,15.13651898610131,14.51114717224343,0,0,1,1,0,0,6.425042744657324,46.41,35.13,28.1,28.06,5,4,2,0,0,0,4,2,1,796,359334.9978366354,105600.5648928456,255008.8019599676,0,2564.283977929786 -1896,2363,4246,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,7.511872329480532,7.414028320856025,0,0,-999.3295653434823,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,2.282594343249214,1.103994669832995,20.43477075263604,0,1,1,0,2.353480036923727,7.50092559759149,60.98,29.25,-9,-9,1.666666666666667,1,1,0,0,0,6,3,1,428,238656.597032101,-13633.86022168331,223101.1712871571,0,764.592067105877 -1897,2364,4247,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.952157603952392,8.003167079294217,0,0,0,-854.4142747981784,0,3,2,2019,7,0,30,30,1,0,0,10.99972961477587,10.99972961477587,0,0,0,0,0,1,1,0,.2424287940076545,0,47.78,35.95,-9,-9,6.666666666666667,1,1,0,0,7,9,3,0,401,121854.8689628841,-82567.0144901129,152467.9250417194,55859.16285877328,1058.615098012502 -1898,2365,4248,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1081.451883609347,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.29,36.7,-9,-9,1.666666666666667,2,3,0,1,4,10,1,1,297,-232541.2253133215,0,0,0,1443.356246836408 -1898,2366,4249,-9,4248,-9,1,0,23,0,0,0,2,2,-9,0,3,6.567850489195996,6.697169460257764,0,0,0,-1074.414829406906,0,2,-9,2019,7,0,20,20,1,0,1,3.773280226536625,3.773280226536625,0,0,0,0,0,1,1,0,0,0,47.07,53.97,-9,-9,5,2,3,0,0,4,10,2,1,195,-114602.6062439147,0,0,0,711.8557369574023 -1899,2367,4250,4251,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.109297901477159,7.283999474037433,56,3,66.63350174025966,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.019045329081934,7.353275960572566,55.17,47.52,56.65,33.37,8.333333333333334,1,1,0,0,0,8,2,1,336,515532.6727014107,179137.4037435101,295774.9738726752,0,2037.812636990748 -1899,2367,4251,4250,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,56,-3,33.44508543611855,0,3,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.558877359616877,0,56.65,33.37,55.17,47.52,8.333333333333334,1,1,0,0,5,8,2,1,336,515532.6727014107,179137.4037435101,295774.9738726752,0,2037.812636990748 -1900,2368,4252,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.0967310317914,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,9.470735882413498,0,0,1,1,0,0,0,53.8,35.16,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,407,-131532.8029840643,0,0,0,781.7490745961501 -1901,2369,4253,4254,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,7,1,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.88,26.59,15.56,39.16,3.333333333333333,1,1,0,0,0,1,2,0,637.5,68396.19745331313,0,0,0,2556.152553820581 -1901,2369,4254,4253,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,7,-1,0,0,-9,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.56,39.16,39.88,26.59,1.666666666666667,1,1,0,0,0,1,2,0,637.5,68396.19745331313,0,0,0,2556.152553820581 -1902,2370,4255,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.976706512111537,6.473476781820755,0,0,-949.5679749693169,0,3,2,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.552420323587357,27.49,64.26000000000001,-9,-9,5,1,1,0,0,0,9,2,1,2150,389106.9604303912,93047.85777562176,354579.5957158547,0,496.7516244603608 -1903,2371,4256,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,6.423910154293195,6.654669313266842,4.171816383064787,0,0,-993.5463658968894,0,2,1,2019,8,0,40,40,1,0,0,1.647590370452679,1.647590370452679,0,0,0,0,0,1,1,0,3.960689674377667,4.038770736765517,52.77,55.33,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,871,80906.1442653916,0,46075.15843500135,0,802.3661535777302 -1904,2372,4257,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-875.856726821196,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,9.121392012510178,0,0,1,1,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,63,-4069.959341842528,0,0,0,1331.800418471935 -1905,2373,4258,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.59239199231448,8.779031491134143,0,0,0,-970.8476509812738,0,-9,-9,2019,13,3,42,39,1,3,0,13.64436606341317,13.64436606341317,0,0,0,0,0,0,0,0,5.023196998994056,0,48.59,37.23,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,333,41142.58070387133,-123428.5501807988,0,0,2075.556560044265 -1905,2374,4259,-9,4258,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-995.2753972391093,1,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.061618421882714,0,49.67,43.39,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,412,-86501.89620581215,0,0,0,121.2530716720299 -1906,2375,4260,-9,4263,4262,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1062.596301684764,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,3,1,1049.75,102588.0623935829,-41421.92714327885,109701.9694512995,40228.08236853925,1979.903823704578 -1906,2375,4261,-9,4263,4262,1,1,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-936.7603897959281,-9,2,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.2,40.63,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,1049.75,102588.0623935829,-41421.92714327885,109701.9694512995,40228.08236853925,1979.903823704578 -1906,2375,4262,4263,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,7.69117900046251,7.851652727846965,0,23,0,-157.8018609389611,-9,3,3,2019,15,3,39,0,1,3,0,6.806116297888496,6.806116297888496,0,0,0,0,0,1,0,1,0,0,48,50,46.67,34.44,6,2,3,0,0,11,6,3,1,1049.75,102588.0623935829,-41421.92714327885,109701.9694512995,40228.08236853925,1979.903823704578 -1906,2375,4263,4262,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.250172404195206,7.369609490341503,0,23,0,-1.771538569663678,-9,3,3,2019,12,0,29,0,1,0,0,6.197668770050708,6.197668770050708,0,0,0,0,42,1,0,1,1.237555667314966,0,46.67,34.44,48,50,8.333333333333334,2,3,0,1,2,6,3,1,1049.75,102588.0623935829,-41421.92714327885,109701.9694512995,40228.08236853925,1979.903823704578 -1906,2376,4264,-9,4263,4262,1,0,18,0,2,0,2,2,-9,1,4,0,0,0,0,0,-981.0363171033861,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,.4187148721921111,0,54.79,55.86,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,814,0,0,0,0,1560.474789830394 -1907,2377,4265,-9,4267,4266,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.1173614998485,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,396.6666666666667,26401.44981309985,69067.82718069734,0,0,2083.660905057645 -1907,2377,4266,4267,-9,-9,1,1,39,0,1,0,3,3,-9,0,2,8.444197589398588,8.406569572715577,0,10,4,11.92523653027474,0,3,3,2019,12,0,47,43,1,0,0,9.819663717216294,9.819663717216294,0,0,0,0,0,1,1,0,0,0,36.84,42.92,46.08,57.2,6.666666666666667,1,1,0,0,11,9,4,1,396.6666666666667,26401.44981309985,69067.82718069734,0,0,2083.660905057645 -1907,2377,4267,4266,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.554203849153776,6.993845362179478,0,10,-4,-54.19704541936883,0,2,-9,2019,12,0,30,26,1,0,0,6.249021180038006,6.249021180038006,0,0,0,0,0,1,1,0,0,0,46.08,57.2,36.84,42.92,8.333333333333334,1,1,0,0,11,9,4,1,396.6666666666667,26401.44981309985,69067.82718069734,0,0,2083.660905057645 -1908,2378,4268,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.911541926715715,8.304391650313967,0,0,0,-1098.797034309127,0,3,3,2019,12,0,44,80,1,0,0,7.644420944366524,7.644420944366524,0,0,0,0,0,0,0,0,0,0,48.94,54.95,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,1750,512344.7738475507,38694.74628412434,134971.5126430944,0,1527.781652261996 -1909,2379,4269,-9,4270,4271,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.168473785345,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,616,199313.1157658314,120031.9816412179,192084.6480717895,40548.95208178214,2683.63092515793 -1909,2379,4270,4271,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,5,-5,-.6423576126862383,0,1,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.83,57.2,8.333333333333334,2,3,0,0,0,8,3,1,616,199313.1157658314,120031.9816412179,192084.6480717895,40548.95208178214,2683.63092515793 -1909,2379,4271,4270,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.388892445065203,8.13162889492661,0,2,5,50.61839938882633,0,-9,-9,2019,14,2,45,50,1,2,0,12.00740621644549,12.00740621644549,0,0,0,0,0,1,1,0,7.446679122105585,0,51.83,57.2,54.37,54.8,5,2,3,0,0,5,8,3,1,616,199313.1157658314,120031.9816412179,192084.6480717895,40548.95208178214,2683.63092515793 -1909,2379,4272,-9,4270,4271,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.893245008134,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,616,199313.1157658314,120031.9816412179,192084.6480717895,40548.95208178214,2683.63092515793 -1910,2380,4273,-9,-9,-9,1,1,97,0,0,0,3,3,-9,0,4,0,6.964359899470773,7.095413805418052,0,0,-1003.708386650655,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.027813366606099,0,20.61294182443643,0,1,1,0,2.958863403174095,7.457154421536345,59,48,-9,-9,10,1,1,0,0,0,4,2,1,562,438021.2599720801,110762.0110824489,148071.4210271683,0,1943.171646919985 -1911,2381,4274,-9,4277,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-878.8838969375711,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,431.5,68211.34605492592,14104.59289876473,0,0,2524.136219590969 -1911,2381,4275,-9,4277,-9,1,1,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-1034.12519290488,-9,3,-9,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,0,3,4,0,1,0,8,2,0,431.5,68211.34605492592,14104.59289876473,0,0,2524.136219590969 -1911,2381,4276,-9,4277,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1117.743799958155,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,431.5,68211.34605492592,14104.59289876473,0,0,2524.136219590969 -1911,2381,4277,-9,-9,-9,1,0,40,1,3,0,3,3,-9,0,4,7.396521647983347,7.296418231282233,0,0,0,-968.7925797758446,0,3,3,2019,10,0,20,20,1,1,0,10.72690292897725,10.72690292897725,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,7,3,4,0,1,7,8,2,0,431.5,68211.34605492592,14104.59289876473,0,0,2524.136219590969 -1912,2382,4278,-9,4279,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-909.9498817431244,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1083.5,205157.4735182938,177062.5935673402,125186.8783253678,87997.59304430321,2451.052222970528 -1912,2382,4279,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.795886306212573,8.926456604397542,5.76519618371594,0,0,-977.1445831982201,0,3,2,2019,10,1,50,55,1,1,0,17.46795195010347,17.46795195010347,0,0,0,0,0,1,1,0,6.437525728786025,0,47.49,55.02,-9,-9,5,1,1,0,0,10,12,5,1,1083.5,205157.4735182938,177062.5935673402,125186.8783253678,87997.59304430321,2451.052222970528 -1913,2383,4280,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,4.487375823662212,4.627504083990255,0,0,-1008.174550341875,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,0,4.554415260042321,29.35,35.33,-9,-9,6.666666666666667,1,1,0,1,0,12,2,1,255,264449.5884725684,0,0,0,413.577671895783 -1914,2384,4281,4282,4284,4283,1,1,21,0,0,0,2,2,-9,0,3,7.816813595445544,8.051550101263182,0,2,-1,-39.67949432166235,0,2,2,2019,9,1,37,37,1,1,0,9.088347336409116,9.088347336409116,0,0,0,0,0,0,0,0,0,0,48.7,56.22,57.13,44.29,6.666666666666667,1,1,0,0,2,1,4,0,576,-100965.6493511059,0,0,0,1695.096808114265 -1914,2384,4282,4281,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,7.092861144059421,7.162120718377957,0,2,1,-112.2074444699476,0,2,2,2019,5,0,25,12,1,0,0,5.881378543384598,5.881378543384598,0,0,0,0,2,0,0,0,0,0,57.13,44.29,48.7,56.22,10,1,1,0,0,2,1,4,0,576,-100965.6493511059,0,0,0,1695.096808114265 -1914,2385,4283,4284,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.676855817137785,9.681523263851703,0,1,1,-88.37652816928338,-9,-9,-9,2019,9,0,40,0,1,1,0,47.55014930679314,47.55014930679314,0,0,0,0,0,0,0,0,0,0,53,54,50.46,53.68,7,1,1,0,0,1,1,5,0,916.5,301426.7550053976,79363.96845188903,156206.1334053512,103154.9560409297,7183.058086741412 -1914,2385,4284,4283,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.401377195693811,7.231069960940617,0,1,-1,54.53064899958169,0,-9,-9,2019,4,0,35,28,1,0,0,5.549629832027272,5.549629832027272,0,0,0,0,0,0,0,0,0,0,50.46,53.68,53,54,8.333333333333334,1,1,0,0,8,1,5,0,916.5,301426.7550053976,79363.96845188903,156206.1334053512,103154.9560409297,7183.058086741412 -1915,2386,4285,4286,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.825979133570188,8.964676102282112,0,19,-6,75.95554437646041,0,2,2,2019,14,3,48,50,1,3,0,13.9414908408639,13.9414908408639,0,0,0,0,0,1,1,0,0,0,39.68,54.56,40.66,55.74,6.666666666666667,2,3,0,0,10,2,4,1,558.75,1646207.389440052,1451033.512401161,115984.6528068101,48951.48151500129,3717.105468792087 -1915,2386,4286,4285,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.799303350438855,7.615991939331242,0,19,6,6.449752843447222,0,3,3,2019,12,0,36,38,1,0,0,10.13709205770902,10.13709205770902,0,0,0,0,0,1,1,0,2.288534672408827,0,40.66,55.74,39.68,54.56,6.666666666666667,2,3,0,0,10,2,4,1,558.75,1646207.389440052,1451033.512401161,115984.6528068101,48951.48151500129,3717.105468792087 -1915,2386,4287,-9,4285,4286,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.617239359541,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,558.75,1646207.389440052,1451033.512401161,115984.6528068101,48951.48151500129,3717.105468792087 -1915,2386,4288,-9,4285,4286,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.051458575597,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,558.75,1646207.389440052,1451033.512401161,115984.6528068101,48951.48151500129,3717.105468792087 -1916,2387,4289,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.22442293217548,5.38593799732705,0,0,-1033.768019632847,0,3,3,2019,9,3,0,0,4,3,0,0,0,0,1.346185417906305,0,0,0,1,1,0,0,5.497077818638869,47.04,15.9,-9,-9,10,1,1,0,0,0,9,2,1,400,-142275.6309838853,7104.547143071559,0,0,798.3604753024285 -1917,2388,4290,4291,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.700535657147241,7.804365765663921,26,5,-57.03921307850926,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.13142083800624,7.898921421502282,52.99,51.28,37.26,44.13,8.333333333333334,1,1,0,0,6,10,3,1,365,1729263.029586692,1154205.626371579,442342.0317346926,0,2054.925453592814 -1917,2388,4291,4290,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,0,0,26,-5,-93.93690373888847,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.516336722819368,0,37.26,44.13,52.99,51.28,8.333333333333334,1,1,0,0,0,10,3,1,365,1729263.029586692,1154205.626371579,442342.0317346926,0,2054.925453592814 -1917,2389,4292,-9,4290,4291,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1105.859773586085,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.715027252644375,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,445,21556.37799209515,0,0,0,-219.8132971448483 -1918,2390,4293,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.743703664167901,7.969424622449986,0,0,0,-1032.213458142652,0,3,3,2019,9,0,30,21,1,0,0,9.931997623247801,9.931997623247801,0,0,0,0,7,1,1,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,9,12,4,0,375,188033.8698063798,207096.5800694689,0,0,1558.739988791858 -1919,2391,4294,4295,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.545408332882053,8.724153961192707,6.435027813907953,7,-4,.8357237294389835,0,1,2,2019,13,1,46,46,1,1,0,15.1657457151523,15.1657457151523,0,0,0,0,0,0,0,0,7.266072072568535,0,51.71,58.83,41.15,48.96,8.333333333333334,1,1,0,0,9,9,5,1,632.5,31741.01963801478,61753.03737170628,472310.0138795346,344386.9774819953,4887.496366104351 -1919,2391,4295,4294,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.945831212783482,8.946377347407408,0,7,4,24.12529910016855,0,-9,-9,2019,12,2,38,38,1,2,0,23.56161661051694,23.56161661051694,0,0,0,0,0,0,0,0,0,0,41.15,48.96,51.71,58.83,8.333333333333334,1,1,0,0,6,9,5,1,632.5,31741.01963801478,61753.03737170628,472310.0138795346,344386.9774819953,4887.496366104351 -1920,2392,4296,-9,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.027319925849072,8.454121867475056,7.123640407098528,0,0,-1013.244748510876,-9,2,2,2019,19,4,38,0,1,4,0,8.556156755212131,8.556156755212131,0,0,0,0,88,1,1,0,7.238149453781532,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,549.5,1409040.243157369,608128.6758347392,581495.8575653811,33065.48631675207,2240.19751764556 -1920,2392,4297,-9,4296,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.2752775176484,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,549.5,1409040.243157369,608128.6758347392,581495.8575653811,33065.48631675207,2240.19751764556 -1921,2393,4298,4299,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.126398439398526,8.062502358664858,0,3,-3,-62.53015658647944,0,3,3,2019,7,0,30,30,1,0,0,13.17970992765041,13.17970992765041,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,0,1550,1046836.951418616,361050.0980249012,236717.1128359977,0,2617.898420007552 -1921,2393,4299,4298,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.112050653284766,7.073420106868328,4.547321466784032,3,3,-21.17313564022925,0,-9,-9,2019,6,0,18,18,1,0,0,6.970270706295514,6.970270706295514,0,0,0,0,0,1,1,0,0,4.710332371642892,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,7,4,0,1550,1046836.951418616,361050.0980249012,236717.1128359977,0,2617.898420007552 -1922,2394,4300,-9,4302,4301,1,1,31,0,0,0,1,1,-9,0,5,8.55503377646118,8.474704626584085,0,0,0,-1045.289195551746,0,2,2,2019,11,0,62,71,1,0,1,10.57799432286043,10.57799432286043,0,0,0,0,0,0,0,0,0,0,46.4,59.87,-9,-9,8.333333333333334,2,3,0,0,5,6,5,1,1350,120071.8813313088,6101.650796170001,172494.2386675769,181656.8238078991,2529.931224644848 -1922,2395,4301,4302,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.921744759363746,8.569233837729739,0,4,1,15.35426480267806,-9,-9,-9,2019,10,0,38,0,1,1,0,20.14399831179594,20.14399831179594,0,0,0,0,0,0,0,0,5.307993117266859,0,51,49,49,48,7,4,3,0,0,1,6,5,1,685.5,131662.2019302029,42257.38218673565,217025.436410322,38591.68636384176,3105.800304819183 -1922,2395,4302,4301,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.859787098417838,6.861859461059518,0,4,-1,-9.111063848604456,-9,-9,-9,2019,11,0,38,0,1,2,0,2.773761424024115,2.773761424024115,0,0,0,0,0,0,0,0,0,0,49,48,51,49,7,2,3,0,0,1,6,5,1,685.5,131662.2019302029,42257.38218673565,217025.436410322,38591.68636384176,3105.800304819183 -1923,2396,4303,4304,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.21342030190586,8.514535084951989,0,37,2,35.58508202402876,0,3,3,2019,7,0,38,37,1,0,0,11.44423689253925,11.44423689253925,0,0,0,0,2,0,0,0,0,0,61.28,35.65,51.83,57.2,8.333333333333334,1,1,0,0,11,2,4,1,529.5,631983.7668203257,562066.1236891256,172912.4380072363,0,2666.090708543892 -1923,2396,4304,4303,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.686188618932366,7.774875415122708,0,36,-2,-50.21485813671592,0,1,3,2019,10,0,32,38,1,0,0,8.267983664001855,8.267983664001855,0,0,0,0,0,0,0,0,0,0,51.83,57.2,61.28,35.65,8.333333333333334,1,1,0,0,11,2,4,1,529.5,631983.7668203257,562066.1236891256,172912.4380072363,0,2666.090708543892 -1924,2397,4305,4306,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,9.010599007592889,9.413073316089642,6.861149513624765,42,2,95.87501390533225,0,3,3,2019,6,0,42,42,1,0,0,21.45345983705871,21.45345983705871,0,0,0,0,0,0,0,0,0,7.458054424833651,60.02,56.42,49.96,56.89,0,1,1,0,0,9,9,5,1,835.5,4821550.627898956,849767.0499128064,983612.7550384046,0,4515.651322620726 -1924,2397,4306,4305,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,6.983266155076105,6.969692557642331,0,42,-2,-79.96517047646,0,3,3,2019,6,0,20,24,1,0,0,6.230890470662077,6.230890470662077,0,0,0,0,0,0,0,0,0,0,49.96,56.89,60.02,56.42,1.666666666666667,1,1,0,0,10,9,5,1,835.5,4821550.627898956,849767.0499128064,983612.7550384046,0,4515.651322620726 -1925,2398,4307,4308,4311,-9,1,1,45,1,3,0,2,2,-9,0,4,8.186545615156081,8.346695058546276,0,20,1,-18.56465314137319,-9,3,-9,2019,9,0,37,0,1,1,0,12.50364537272555,12.50364537272555,0,0,0,0,0,1,1,0,0,0,52,55,50,55,8,2,3,0,0,1,7,3,1,1251,149682.2225710029,72402.07802154146,0,0,1691.400686026124 -1925,2398,4308,4307,-9,-9,1,0,44,1,3,0,2,2,-9,0,4,0,0,0,21,-1,-50.37512171057292,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,8,2,3,0,0,0,7,3,1,1251,149682.2225710029,72402.07802154146,0,0,1691.400686026124 -1925,2398,4309,-9,4308,4307,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.169301679885,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1251,149682.2225710029,72402.07802154146,0,0,1691.400686026124 -1925,2398,4310,-9,4308,4307,1,0,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-1102.09521610584,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,7,3,1,1251,149682.2225710029,72402.07802154146,0,0,1691.400686026124 -1925,2399,4311,-9,-9,-9,1,0,76,1,3,0,3,3,-9,0,3,0,0,0,0,0,-860.1083107606727,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,7,1,1,483,0,0,0,0,0 -1925,2400,4312,-9,4308,4307,1,0,24,1,3,0,1,1,-9,0,2,7.863385277661351,7.713070691394293,0,0,0,-957.6423734279543,-9,2,3,2019,15,3,36,0,1,3,1,9.127390465999021,9.127390465999021,0,0,0,0,0,1,1,0,0,0,39.35,45.79,-9,-9,6.666666666666667,2,3,0,1,5,7,4,1,653.5,0,0,0,0,1846.521733591481 -1925,2400,4313,-9,4312,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.959207377781,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,7,4,1,653.5,0,0,0,0,1846.521733591481 -1925,2401,4314,-9,4308,4307,1,1,20,1,3,0,2,2,-9,0,4,6.328492884088681,6.622802436183321,0,0,0,-952.0122972805186,-9,2,2,2019,11,0,43,0,1,2,1,1.338326533410267,1.338326533410267,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,7,2,1,449,57707.58272275867,0,0,0,81.51343408370076 -1926,2402,4315,4316,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.286561426105024,8.203845299020525,5.57426701900245,9,0,71.51111161563342,0,3,2,2019,12,0,40,40,1,0,0,10.73119195849311,10.73119195849311,0,0,0,0,0,1,1,0,5.642382827865796,0,49.98,43.25,51.5,31.71,6.666666666666667,1,1,0,1,8,5,4,0,465.5,204596.8628104661,216637.3595953756,71068.08054972602,22599.61329508421,2576.551659241187 -1926,2402,4316,4315,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,7.465921826196561,7.593843896458345,0,9,9,139.2452149014278,0,2,2,2019,14,3,29,27,1,3,0,6.738271475263542,6.738271475263542,0,0,0,0,2,1,1,0,0,0,51.5,31.71,49.98,43.25,5,1,1,0,0,7,5,4,0,465.5,204596.8628104661,216637.3595953756,71068.08054972602,22599.61329508421,2576.551659241187 -1927,2403,4317,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-960.2350146593417,0,-9,1,2019,7,1,0,10,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,5,1,1,1,1,5,8,1,0,180,159544.4988579905,84358.00639437417,0,0,0 -1928,2404,4318,-9,4321,4320,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.8924055093011,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,4,1,968.75,351092.8572776886,67239.3685391488,130439.351354562,93677.54735391636,4389.127304246541 -1928,2404,4319,-9,4321,4320,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.568839015372,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,968.75,351092.8572776886,67239.3685391488,130439.351354562,93677.54735391636,4389.127304246541 -1928,2404,4320,4321,-9,-9,1,1,37,1,2,0,1,1,-9,0,5,8.614927398028847,8.86368848529133,0,10,1,-38.42397860308763,0,1,1,2019,6,0,40,40,1,0,0,17.75888888995751,17.75888888995751,0,0,0,0,0,1,1,0,7.02709030068074,0,54.35,57.84,57.16,56.15,10,1,1,0,0,12,1,4,1,968.75,351092.8572776886,67239.3685391488,130439.351354562,93677.54735391636,4389.127304246541 -1928,2404,4321,4320,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.239115912650124,8.415884198292487,0,10,-1,28.40070270782697,0,2,2,2019,4,0,25,38,1,0,0,18.89027759376269,18.89027759376269,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.35,57.84,10,1,1,0,0,12,1,4,1,968.75,351092.8572776886,67239.3685391488,130439.351354562,93677.54735391636,4389.127304246541 -1929,2405,4322,-9,4325,4324,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1057.35324475164,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,2002.5,352378.1440403095,278205.9242589378,197670.2209409075,0,2766.426304961944 -1929,2405,4323,-9,4325,4324,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1047.057696841754,-9,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,2,3,1,2002.5,352378.1440403095,278205.9242589378,197670.2209409075,0,2766.426304961944 -1929,2405,4324,4325,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,6.607367181257511,6.274301976125416,0,8,3,-10.09339569533155,0,3,3,2019,9,0,40,40,1,1,0,1.909088975770801,1.909088975770801,0,0,0,0,0,1,1,0,0,0,52,55,52.57,52.89,8,1,1,0,0,1,2,3,1,2002.5,352378.1440403095,278205.9242589378,197670.2209409075,0,2766.426304961944 -1929,2405,4325,4324,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.220401692831039,8.431242926221516,0,8,-3,-49.379837411941,0,3,3,2019,9,0,40,40,1,0,0,11.48030573545631,11.48030573545631,0,0,0,0,0,1,1,0,6.570014499567014,0,52.57,52.89,52,55,0,1,1,0,0,10,2,3,1,2002.5,352378.1440403095,278205.9242589378,197670.2209409075,0,2766.426304961944 -1929,2406,4326,-9,4325,4324,1,1,25,0,1,0,2,2,-9,0,4,8.610410784742458,8.59736501202268,0,0,0,-897.0055992345976,0,2,2,2019,10,0,40,40,1,1,1,14.05908582184796,14.05908582184796,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,5,1,634,78653.43217948521,16601.02755392806,0,0,1817.062994107039 -1930,2407,4327,4328,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.273739952793841,8.027731461138902,0,2,-6,-2.289890632238365,-9,-9,-9,2019,11,0,37,0,1,2,0,9.708860772041922,9.708860772041922,0,0,0,0,0,1,1,0,5.067524901334115,0,49,48,57.93,46.29,7,1,1,0,0,1,5,4,1,599,1576481.226736884,960586.2256760278,239102.110067112,0,3628.29903959859 -1930,2407,4328,4327,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.765722039135202,7.305394928256702,2,6,73.97824221936008,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.280568897957512,7.804159562028892,57.93,46.29,49,48,10,1,1,0,0,0,5,4,1,599,1576481.226736884,960586.2256760278,239102.110067112,0,3628.29903959859 -1931,2408,4329,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.215335589173254,8.395311492403483,0,0,0,-948.4646079850895,0,-9,-9,2019,12,0,35,29,1,0,0,14.15234094737784,14.15234094737784,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,615,133733.6660134761,-88735.8002893159,0,0,1140.576483723438 -1932,2409,4330,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.735512935228378,9.991197147474635,0,0,0,-1051.865577039144,0,2,3,2019,7,0,55,50,1,0,0,45.68369488444088,45.68369488444088,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,179,309812.1324031585,355400.9926503209,-17756.54744492144,8675.576466823166,6452.840924086359 -1933,2410,4331,4333,-9,-9,1,1,41,1,4,0,2,2,-9,0,4,7.388305190317468,7.414960942267864,0,18,4,-63.33762023846626,0,-9,2,2019,11,0,35,30,1,0,0,5.127483324556803,5.127483324556803,0,0,0,0,0,1,1,0,6.333819746295175,0,54.2,57.49,49,56,8.333333333333334,2,3,0,0,10,4,2,1,543,-59011.28949322893,0,0,0,3799.183459484392 -1933,2410,4332,-9,4333,4331,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-945.2555727280926,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,543,-59011.28949322893,0,0,0,3799.183459484392 -1933,2410,4333,4331,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,0,0,0,18,-4,-28.57443215228684,0,3,3,2019,11,0,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,7.979712218648984,0,49,56,54.2,57.49,7,2,3,0,0,9,4,2,1,543,-59011.28949322893,0,0,0,3799.183459484392 -1933,2410,4334,-9,4333,4331,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-951.6440486128488,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,543,-59011.28949322893,0,0,0,3799.183459484392 -1933,2410,4335,-9,4333,4331,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.267788984272,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,543,-59011.28949322893,0,0,0,3799.183459484392 -1934,2411,4336,4337,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,4,-3,62.47560064439642,0,3,-9,2019,13,1,0,20,4,1,0,0,0,0,0,0,0,0,1,1,0,.5605802966054827,0,52,54.51,57.33,53.46,6.666666666666667,1,1,0,0,12,10,4,1,415,808192.6066492576,596929.2249712651,234241.4688238049,0,3691.356715506357 -1934,2411,4337,4336,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.453655485717402,8.414508715708413,0,4,3,119.7693506715189,0,-9,-9,2019,6,0,20,20,1,0,0,22.36051666835245,22.36051666835245,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,54.51,10,1,1,0,0,13,10,4,1,415,808192.6066492576,596929.2249712651,234241.4688238049,0,3691.356715506357 -1935,2412,4338,4339,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,7.636686296938335,8.082565319521109,50,-8,-79.811104788249,0,2,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,7.942487637428225,58,52,57.33,53.46,10,1,1,0,0,0,6,3,1,315,264058.0794816769,163460.398321611,172445.006380978,0,3530.95703602597 -1935,2412,4339,4338,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.85344228862721,6.227663647776917,50,8,69.46508318052902,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,5.948370671067339,57.33,53.46,58,52,10,1,1,0,0,0,6,3,1,315,264058.0794816769,163460.398321611,172445.006380978,0,3530.95703602597 -1936,2413,4340,4341,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.106624782474498,8.535862458107838,0,1,6,-144.7035135387214,0,1,1,2019,15,4,60,61,1,4,0,9.084520800720634,9.084520800720634,0,0,0,0,0,0,0,0,0,0,39.1,57.79,50,57,6.666666666666667,1,1,0,0,8,4,5,0,126.5,467137.8438356458,213976.1142576024,281254.5070690523,113347.0124301572,2953.696450602915 -1936,2413,4341,4340,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.15341442849914,8.117651061945656,0,1,-6,153.3556781989751,-9,-9,-9,2019,10,0,35,0,1,1,0,16.26285729406981,16.26285729406981,0,0,0,0,0,0,0,0,0,0,50,57,39.1,57.79,7,1,1,0,0,1,4,5,0,126.5,467137.8438356458,213976.1142576024,281254.5070690523,113347.0124301572,2953.696450602915 -1937,2414,4342,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.158306723695517,8.426168914852074,0,0,0,-1085.407903125054,0,3,2,2019,2,0,46,49,1,0,0,8.788341674672777,8.788341674672777,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,936,-205237.9321596778,37952.08933114543,0,0,1477.699419023546 -1938,2415,4343,-9,4346,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-943.3991833969133,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,3,1,740.5,127208.9662489984,46691.91662554505,110202.9131875013,24994.54384366432,2554.139199634212 -1938,2415,4344,-9,4346,-9,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-989.8999514222126,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,11,3,1,740.5,127208.9662489984,46691.91662554505,110202.9131875013,24994.54384366432,2554.139199634212 -1938,2415,4345,-9,4346,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-940.8705075888282,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,3,1,740.5,127208.9662489984,46691.91662554505,110202.9131875013,24994.54384366432,2554.139199634212 -1938,2415,4346,-9,-9,-9,1,0,44,0,3,0,2,2,-9,0,2,0,8.247105191580818,7.96587727304079,0,0,-1047.435421172129,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.763812891239314,8.191374362565783,34.46,37.11,-9,-9,3.333333333333333,1,1,0,0,9,11,3,1,740.5,127208.9662489984,46691.91662554505,110202.9131875013,24994.54384366432,2554.139199634212 -1939,2416,4347,4348,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.526379336843689,8.348890097958412,0,12,-3,48.57556595962592,0,2,2,2019,8,0,37,41,1,0,0,20.35117806346977,20.35117806346977,0,0,0,0,0,0,0,0,3.062656177043746,0,53.61,51.1,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,965,-6182.733019048781,-54518.75122369397,190649.5887815246,137574.7153497475,2877.02721006735 -1939,2416,4348,4347,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.644678184099742,8.523904204394256,0,12,3,73.2079589272102,0,3,3,2019,6,0,37,37,1,0,0,13.56465258889385,13.56465258889385,0,0,0,0,0,0,0,0,4.719944495321108,0,57.16,56.15,53.61,51.1,8.333333333333334,1,1,0,0,9,6,5,1,965,-6182.733019048781,-54518.75122369397,190649.5887815246,137574.7153497475,2877.02721006735 -1940,2417,4349,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,5.763531015772832,5.648712087830191,0,0,-1048.762029213603,0,3,3,2019,10,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,5.642027096256248,6.144265718720407,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,8,13,2,1,637,223947.9290842056,27435.23814683013,184165.4479319679,0,1021.753484716502 -1941,2418,4350,4351,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,8,-6,20.51094230954905,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.66,34.5,8.333333333333334,4,5,0,0,0,6,3,1,627.5,397673.6276272752,183697.4222785122,131501.9781599087,0,2399.992073102322 -1941,2418,4351,4350,-9,-9,1,1,42,0,3,0,3,3,-9,0,2,8.086064267135214,8.147388137288095,0,19,6,66.54205477348181,0,3,3,2019,12,1,40,37,1,1,0,7.68456345706961,7.68456345706961,0,0,0,0,0,1,1,0,0,0,37.66,34.5,51.24,58.84,5,1,1,0,0,7,6,3,1,627.5,397673.6276272752,183697.4222785122,131501.9781599087,0,2399.992073102322 -1941,2418,4352,-9,4350,4351,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.25340439088,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,3,1,627.5,397673.6276272752,183697.4222785122,131501.9781599087,0,2399.992073102322 -1941,2418,4353,-9,4350,4351,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.416268456388,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,627.5,397673.6276272752,183697.4222785122,131501.9781599087,0,2399.992073102322 -1942,2419,4354,-9,4358,4359,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-838.0271867775408,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4355,-9,4358,4359,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.265841309579,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4356,-9,4358,4359,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.5233599657497,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4357,-9,4358,4359,1,0,17,1,4,1,2,0,0,0,3,0,0,0,0,0,-1006.628974449732,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,8.66,54.2,-9,-9,0,1,1,0,1,1,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4358,4359,-9,-9,1,0,38,1,4,0,1,1,-9,1,2,0,0,0,4,-3,187.1497200649665,0,1,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,55.42,29.07,44.11,55.31,8.333333333333334,1,1,0,0,0,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4359,4358,-9,-9,1,1,41,1,4,0,2,2,-9,0,3,7.788066660023833,7.544175181469475,0,4,3,101.2257055126104,0,-9,-9,2019,13,2,38,38,1,2,0,6.567283606034932,6.567283606034932,0,0,0,0,5.48,1,1,0,0,0,44.11,55.31,55.42,29.07,6.666666666666667,1,1,0,0,2,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1942,2419,4360,-9,4358,4359,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.855765617113,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,573.5714285714286,-4586.076016425475,68765.28083352536,0,0,4699.167668577977 -1943,2420,4361,4362,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,33,1,70.47355616668705,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.751931314055563,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,11,2,3,1,1314,49090.94433181058,75792.15779038964,0,0,2548.868287482964 -1943,2420,4362,4361,4364,-9,1,1,55,0,0,0,1,1,-9,0,4,7.755455318422516,7.865344973897254,0,33,-1,-34.45648636229203,0,2,2,2019,16,6,18,36,1,6,0,14.10229084457314,14.10229084457314,0,0,0,0,14.5,1,1,0,7.810605155500055,0,48.87,58.55,54.1,59.11,5,1,1,0,0,12,2,3,1,1314,49090.94433181058,75792.15779038964,0,0,2548.868287482964 -1943,2421,4363,-9,4361,4362,1,0,22,0,0,0,1,1,1,0,4,8.069236473827324,8.249021375756733,0,0,0,-987.5779897258832,-9,1,1,2019,12,0,30,0,1,0,1,13.22292847886641,13.22292847886641,0,0,0,0,0,1,1,0,0,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,322,66996.9909147986,-43529.03261995095,0,0,1138.072046935859 -1943,2422,4364,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1023.107397034444,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,3.642671868473623,0,0,1,1,0,5.950723085929356,0,47.7,24.01,-9,-9,5,1,1,0,0,0,2,1,1,550,-56424.15002094764,0,0,0,106.8301465625219 -1944,2423,4365,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,6.790836413426128,6.725234407199899,0,0,0,-1075.121240530176,0,1,-9,2019,12,0,45,50,1,0,0,2.220745610659282,2.220745610659282,0,0,0,0,0,1,1,0,0,0,38.92,49.8,-9,-9,8.333333333333334,1,1,0,1,11,12,2,1,334,-113267.8790866859,-80746.46782016171,32520.25638945664,19298.77164344287,1425.571851326745 -1945,2424,4366,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1134.240433013278,0,3,2,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39.29,26.69,-9,-9,5,1,1,1,1,0,9,1,0,195,184362.5372153399,-432.1389470874255,0,0,845.2611612541168 -1946,2425,4367,-9,4368,4371,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-898.6315083628486,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,1195.4,513294.2402415414,-14429.07047868231,438448.5969823616,0,3980.831971262142 -1946,2425,4368,4371,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.856087458210455,8.069940233188536,0,21,-7,-140.4109592059908,0,2,2,2019,10,0,37,33,1,0,0,7.905866022116835,7.905866022116835,0,0,0,0,0,1,1,0,0,0,43.2,59.97,62.49,55.09,1.666666666666667,2,3,0,0,11,8,3,1,1195.4,513294.2402415414,-14429.07047868231,438448.5969823616,0,3980.831971262142 -1946,2425,4369,-9,4368,4371,1,1,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-922.5893300402246,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,1195.4,513294.2402415414,-14429.07047868231,438448.5969823616,0,3980.831971262142 -1946,2425,4370,-9,4368,4371,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.990456522664,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,1195.4,513294.2402415414,-14429.07047868231,438448.5969823616,0,3980.831971262142 -1946,2425,4371,4368,-9,-9,1,1,46,0,3,0,2,2,-9,0,4,8.570126758674743,8.348705036591639,0,21,7,-86.29602537764805,0,3,3,2019,9,0,55,55,1,1,0,10.5580954833848,10.5580954833848,0,0,0,.2482851910841912,0,1,1,0,0,0,62.49,55.09,43.2,59.97,10,2,3,0,0,11,8,3,1,1195.4,513294.2402415414,-14429.07047868231,438448.5969823616,0,3980.831971262142 -1947,2426,4372,4373,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,10,-1,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.14,50.45,56.77,52.22,8.333333333333334,1,1,0,0,5,6,1,1,704.5,123415.0475225681,0,94769.65165304419,0,1262.628387311325 -1947,2426,4373,4372,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,10,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,39.14,50.45,8.333333333333334,1,1,0,0,0,6,1,1,704.5,123415.0475225681,0,94769.65165304419,0,1262.628387311325 -1948,2427,4374,4375,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.852176817335311,8.152975052610742,0,1,-1,-71.46900023237586,0,-9,-9,2019,8,0,37,40,1,0,0,9.330439248350764,9.330439248350764,0,0,0,0,0,0,0,0,1.593778195309372,0,54.1,59.11,46.1,59.99,8.333333333333334,1,1,0,0,3,2,4,1,956.5,13650.60195062623,147043.242227858,0,0,2482.481001420994 -1948,2427,4375,4374,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.387414024013065,8.286024156168459,0,1,1,-84.03731858770776,-9,-9,-9,2019,12,1,52,0,1,1,0,7.456825760471648,7.456825760471648,0,0,0,0,0,0,0,0,4.061999158590739,0,46.1,59.99,54.1,59.11,8.333333333333334,1,1,0,0,2,2,4,1,956.5,13650.60195062623,147043.242227858,0,0,2482.481001420994 -1949,2428,4376,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,5.79396351976229,5.973078108319527,0,0,-1136.350522307749,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.838150735230127,42.5,46.84,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,423,185707.0949551992,107093.1568122916,0,0,811.989522541272 -1950,2429,4377,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,5.090470276361906,4.936744365662606,0,0,-1042.411815388144,0,3,3,2019,30,11,0,0,3,11,0,0,0,1,0,0,0,0,1,1,0,0,5.004525393154787,19.01,22.64,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,591,32066.15769595726,4343.708816902523,0,0,1871.432520666842 -1951,2430,4378,-9,4379,-9,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-937.09344622935,-9,3,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,2,2,0,1165.5,34393.49777259934,-20539.82258176039,0,0,538.2070479153601 -1951,2430,4379,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1050.054667778453,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,1.666666666666667,2,3,1,1,0,2,2,0,1165.5,34393.49777259934,-20539.82258176039,0,0,538.2070479153601 -1951,2431,4380,-9,4379,-9,1,0,24,0,1,0,1,1,-9,0,5,7.407025369873341,7.496627073941635,0,0,0,-1022.25314402443,0,2,-9,2019,7,1,35,35,1,1,1,4.248675546297825,4.248675546297825,0,0,0,0,0,1,1,0,0,0,62.99,46.83,-9,-9,8.333333333333334,2,3,0,0,2,2,3,0,206,-152601.3210214652,-107400.6736104593,-3276.783741657615,74838.18534406794,1445.537723902424 -1951,2432,4381,-9,4379,-9,1,0,23,0,1,1,3,0,0,0,5,0,0,0,0,0,-987.004834235156,-9,3,-9,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.42,48.02,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,471,28353.48032555891,0,0,0,1488.688116512538 -1951,2433,4382,-9,4379,-9,1,1,22,0,1,1,1,0,0,0,5,0,0,0,0,0,-1011.518110242061,-9,3,-9,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,0,0,1,2,1,0,434,37941.17646080002,0,0,0,502.2666484666219 -1951,2434,4383,-9,4379,-9,1,0,20,0,1,1,1,0,0,0,4,0,0,0,0,0,-1028.409015205589,-9,3,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.73,58.78,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,912,44022.84262677654,0,0,0,-178.9787526977798 -1952,2435,4384,-9,4385,4387,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.6032894794496,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1747.25,256662.4748121668,222818.4949210001,183321.6423193869,121165.5790506602,5450.688538622499 -1952,2435,4385,4387,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.815240279599982,8.662732140110394,0,7,2,-6.103047393831069,0,-9,-9,2019,13,2,8,7,1,2,0,80.01841618842369,80.01841618842369,0,0,0,0,0,1,1,0,1.887360195870818,0,42.05,58.8,53.99,48.04,8.333333333333334,1,1,0,0,5,11,5,1,1747.25,256662.4748121668,222818.4949210001,183321.6423193869,121165.5790506602,5450.688538622499 -1952,2435,4386,-9,4385,4387,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.6044215878197,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1747.25,256662.4748121668,222818.4949210001,183321.6423193869,121165.5790506602,5450.688538622499 -1952,2435,4387,4385,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.759760363720014,8.899821010474827,0,13,-2,-13.47452156296074,0,1,2,2019,15,4,37,37,1,4,0,16.31989355915278,16.31989355915278,0,0,0,0,0,1,1,0,0,0,53.99,48.04,42.05,58.8,8.333333333333334,1,1,0,0,8,11,5,1,1747.25,256662.4748121668,222818.4949210001,183321.6423193869,121165.5790506602,5450.688538622499 -1953,2436,4388,4389,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.150722627299986,8.226927479019531,11,2,78.70453293894268,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.431521960217187,8.092594656187142,54.21,49.46,57.06,57.76,8.333333333333334,1,1,0,0,6,11,4,1,1107.5,1740888.492522695,974866.235218107,248378.6852196333,0,4504.553205930845 -1953,2436,4389,4388,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,6.983491114761559,7.132742656600941,23,-2,13.46645144740906,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.928594246923734,57.06,57.76,54.21,49.46,10,1,1,0,0,12,11,4,1,1107.5,1740888.492522695,974866.235218107,248378.6852196333,0,4504.553205930845 -1954,2437,4390,4392,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.144567072720793,7.975507909129494,0,11,-8,.2685357319135631,0,2,3,2019,18,6,38,38,1,6,0,7.431573696720605,7.431573696720605,0,0,0,0,0,1,1,0,0,0,28.62,62.36,49.35,59.64,3.333333333333333,1,1,0,0,11,5,4,1,259.75,174236.3964246639,55048.90772244267,139736.481465076,78031.60668601128,2821.265213243123 -1954,2437,4391,-9,4390,4392,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1010.857865970097,-9,2,2,2019,31,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,12.15,55.75,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,259.75,174236.3964246639,55048.90772244267,139736.481465076,78031.60668601128,2821.265213243123 -1954,2437,4392,4390,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.079016148370272,8.155316348958323,0,11,8,-14.13575581997926,0,2,3,2019,12,0,47,45,1,0,0,8.332930974598643,8.332930974598643,0,0,0,0,0,1,1,0,0,0,49.35,59.64,28.62,62.36,8.333333333333334,1,1,0,0,12,5,4,1,259.75,174236.3964246639,55048.90772244267,139736.481465076,78031.60668601128,2821.265213243123 -1954,2437,4393,-9,4390,4392,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-952.7607320765572,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.67,54.18,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,259.75,174236.3964246639,55048.90772244267,139736.481465076,78031.60668601128,2821.265213243123 -1954,2438,4394,-9,4390,4392,1,1,25,0,0,0,2,2,-9,0,4,7.902192342415956,7.674392801913645,0,0,0,-1058.051878532654,0,2,2,2019,9,0,38,38,1,0,1,7.813113946623736,7.813113946623736,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,538,44499.67055192457,-70071.37833657869,0,0,1332.623905654934 -1955,2439,4395,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.427928258816168,6.411683366146062,0,0,-1028.552313801403,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.696092054023071,6.447253512032793,53.57,40.49,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,352,56434.600153965,-32689.33787824867,309752.3636267418,0,2363.127434748726 -1956,2440,4396,-9,4397,4398,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.9288008273484,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1471.333333333333,224854.8070106838,59842.2800733934,220031.855221143,173942.8797217965,4677.433264709375 -1956,2440,4397,4398,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,7.932993121383279,8.099917594207916,0,8,-2,1.727579734538877,0,2,2,2019,10,0,36,0,1,0,0,9.276396340468335,9.276396340468335,0,0,0,0,0,1,1,0,4.330644992634085,0,57.33,53.46,48.28,60.18,8.333333333333334,1,1,0,0,7,5,5,1,1471.333333333333,224854.8070106838,59842.2800733934,220031.855221143,173942.8797217965,4677.433264709375 -1956,2440,4398,4397,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.878448814195167,9.124003846813659,0,8,2,62.00078344355487,0,2,3,2019,8,0,42,42,1,0,0,21.8190864910617,21.8190864910617,0,0,0,0,0,1,1,0,5.617389605426604,0,48.28,60.18,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,1471.333333333333,224854.8070106838,59842.2800733934,220031.855221143,173942.8797217965,4677.433264709375 -1957,2441,4399,4401,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.572070341296183,7.346499091856636,0,10,13,-145.1172248710186,0,-9,-9,2019,8,0,24,22,1,0,0,11.83296454819622,11.83296454819622,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,12,10,4,1,880,797420.2784616835,661614.4839255111,223415.0711376258,86661.63174759892,2761.848134088038 -1957,2441,4400,-9,4399,4401,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.67365423203,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,880,797420.2784616835,661614.4839255111,223415.0711376258,86661.63174759892,2761.848134088038 -1957,2441,4401,4399,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.081632972906478,8.364730185199544,0,12,-13,-112.0735665697779,0,-9,-9,2019,10,0,45,45,1,0,0,13.56400965044927,13.56400965044927,0,0,0,0,0,1,1,0,.8105495806412313,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,12,10,4,1,880,797420.2784616835,661614.4839255111,223415.0711376258,86661.63174759892,2761.848134088038 -1957,2442,4402,-9,4399,4401,1,0,25,0,1,0,2,2,-9,0,4,8.24103387837606,8.674000158279696,0,0,0,-1126.93735432992,0,2,3,2019,11,0,36,54,1,0,1,15.94454080757165,15.94454080757165,0,0,0,0,0,1,1,0,3.631093519800013,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,798,-13015.0492060274,0,0,0,2207.070930304896 -1958,2443,4403,4404,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.844261714503694,8.157920610081012,0,18,-7,48.66579966306143,0,2,3,2019,7,0,37,37,1,0,0,9.786298108588264,9.786298108588264,0,0,0,0,0,0,0,0,0,0,54.55,49.25,52.6,36.82,8.333333333333334,1,1,0,0,12,11,4,1,659.5,355313.518899063,161738.8784264942,186508.6814825319,89837.92182851079,2551.729031168716 -1958,2443,4404,4403,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.131253105862937,8.071531579333232,0,18,7,-131.4799441535924,0,3,3,2019,10,1,37,37,1,1,0,10.03510511520742,10.03510511520742,0,0,0,0,0,0,0,0,0,0,52.6,36.82,54.55,49.25,6.666666666666667,1,1,0,0,9,11,4,1,659.5,355313.518899063,161738.8784264942,186508.6814825319,89837.92182851079,2551.729031168716 -1959,2444,4405,4406,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.810222980024813,8.335044911451664,0,7,-5,-2.072371151879671,0,3,3,2019,10,2,30,30,1,2,0,15.6978559755743,15.6978559755743,0,0,0,0,0,0,0,0,0,0,58.48,28.63,62.39,56.71,8.333333333333334,1,1,0,0,7,12,5,1,1001.5,510674.0664636718,150665.6848897185,508130.3285243402,0,3784.928884489017 -1959,2444,4406,4405,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.148103031660458,8.665885305006713,0,7,5,176.4271535041107,0,2,2,2019,6,0,40,-9,1,0,0,12.17986346282997,12.17986346282997,0,0,0,0,0,0,0,0,2.100627895790582,0,62.39,56.71,58.48,28.63,8.333333333333334,1,1,0,0,8,12,5,1,1001.5,510674.0664636718,150665.6848897185,508130.3285243402,0,3784.928884489017 -1960,2445,4407,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.942904111515147,5.50913172213628,0,0,-993.6489354694032,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.929754432613657,5.828509654918677,43.67,42.66,-9,-9,10,1,1,0,0,0,7,2,1,878,84862.14370163169,114250.3588393664,49719.09638883704,0,1562.926021485901 -1961,2446,4408,4409,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.433166194554595,8.359146138935717,46,-7,88.26880694642512,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.020535825534402,8.682268012296527,52.6,50.15,48,46.89,8.333333333333334,1,1,0,0,0,1,5,1,828.5,1767287.607014631,803199.3575256946,372690.2027544461,0,5579.429234023808 -1961,2446,4409,4408,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.151286846537451,8.363624939538592,10,7,.9032739514149706,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.548159424606771,48,46.89,52.6,50.15,8.333333333333334,1,1,0,0,0,1,5,1,828.5,1767287.607014631,803199.3575256946,372690.2027544461,0,5579.429234023808 -1962,2447,4410,4411,-9,-9,1,0,45,0,0,0,2,2,-9,1,4,0,0,0,7,0,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,43.13,46.2,51.66,11.39,6.666666666666667,1,1,0,0,0,10,1,0,1526,10897.35717308703,0,0,0,1598.697491830976 -1962,2447,4411,4410,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,7,9,0,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,11.39,43.13,46.2,6.666666666666667,1,1,0,0,2,10,1,0,1526,10897.35717308703,0,0,0,1598.697491830976 -1963,2448,4412,4413,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.477376238902932,7.420280446081159,44,-2,48.06806894805953,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.95681914083063,7.326136982067933,60.12,54.8,62.66,52.4,10,1,1,0,0,0,4,3,1,112.5,980002.4015521852,795257.0080912235,243704.5663740747,0,3117.582539311997 -1963,2448,4413,4412,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.338728528673991,7.3541077199789,44,2,-139.4101262537833,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.5273817291844,6.992301742398621,62.66,52.4,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,112.5,980002.4015521852,795257.0080912235,243704.5663740747,0,3117.582539311997 -1964,2449,4414,-9,-9,-9,1,0,66,0,0,0,1,1,-9,1,1,0,6.20691244319246,5.896565426728013,0,0,-1031.636101895806,0,2,2,2019,25,11,0,0,3,11,0,0,0,1,14.76502192185653,2.850774235640773,0,0,1,1,0,0,5.987661291962958,49.35,22.3,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,486,519182.1539060468,242193.0406089479,157359.1074632398,0,2318.433061646369 -1965,2450,4415,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.238171684857658,8.239715151361272,0,0,0,-1050.346621635707,0,1,1,2019,8,1,22,21,1,1,0,18.0052012431696,18.0052012431696,0,0,0,0,0,1,1,0,6.781638541581548,0,46.39,60.99,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,1199,41934.0783383579,118891.6801813133,0,0,2155.898164111525 -1966,2451,4416,-9,4417,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.1399385281792,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,1,0,660,143210.596693636,0,0,0,2253.308225434032 -1966,2451,4417,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,0,0,0,0,0,-989.0843812561077,0,-9,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.02,36.1,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,660,143210.596693636,0,0,0,2253.308225434032 -1966,2452,4418,-9,4417,-9,1,1,23,0,1,0,2,2,0,0,4,0,0,0,0,0,-1025.902138873355,-9,2,-9,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,42.6,61.6,-9,-9,8.333333333333334,1,1,0,0,6,1,1,0,748,-160358.0578839566,0,0,0,125.7518615055433 -1967,2453,4419,4420,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.242532154824907,8.533969310410885,6.38556927024728,17,-3,-64.45023039741113,0,-9,-9,2019,8,0,24,40,1,0,0,15.62243620413244,15.62243620413244,0,0,0,0,0,0,0,0,0,6.575291583663573,55,53,57.34,47.92,8,1,1,0,0,1,7,5,1,478,212691.4527539742,-53051.86392867019,205946.7084822506,55678.89856075675,3569.301868482135 -1967,2453,4420,4419,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.810415200388455,8.541808541850674,0,17,3,94.37555887238133,0,3,3,2019,9,0,42,40,1,0,0,15.45714386054752,15.45714386054752,0,0,0,0,0,0,0,0,0,0,57.34,47.92,55,53,6.666666666666667,1,1,0,0,8,7,5,1,478,212691.4527539742,-53051.86392867019,205946.7084822506,55678.89856075675,3569.301868482135 -1968,2454,4421,4422,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.195873863609966,8.381067725116877,0,34,2,46.61128021604382,0,2,2,2019,7,0,37,40,1,0,0,14.28069219155181,14.28069219155181,0,0,0,0,0,0,0,0,6.212145566239578,0,60.3,46.58,56.74,44.56,8.333333333333334,4,2,0,0,11,4,4,1,1182,559778.8790135988,573091.9986114445,171289.8795033199,73110.52144524491,2408.291510394527 -1968,2454,4422,4421,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.420458273252295,7.391264545285373,0,34,-2,-.2211534773694074,0,3,2,2019,12,0,21,20,1,0,0,8.900268482985433,8.900268482985433,0,0,0,0,0,0,0,0,0,0,56.74,44.56,60.3,46.58,6.666666666666667,1,1,0,0,11,4,4,1,1182,559778.8790135988,573091.9986114445,171289.8795033199,73110.52144524491,2408.291510394527 -1968,2455,4423,-9,4422,4421,1,0,28,0,0,0,2,2,-9,0,3,7.610392371401505,7.788994220547277,0,0,0,-1000.024624423049,0,2,2,2019,11,0,38,43,1,0,1,7.70650910831977,7.70650910831977,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,497,24979.63410366419,0,0,0,805.5562513679324 -1969,2456,4424,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.217945668399896,8.165708619250106,0,0,0,-1057.065520364195,0,-9,3,2019,17,5,55,50,1,5,0,6.436336379279743,6.436336379279743,0,0,0,0,0,1,1,0,0,0,41.95,60.42,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,219,616091.9234828723,92437.71909215549,667116.253487907,257002.8087255744,914.3848166297804 -1970,2457,4425,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.793642019912687,8.531574093694895,0,0,0,-1065.546081626774,0,-9,-9,2019,9,0,50,35,1,0,0,13.77061691103631,13.77061691103631,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,8.333333333333334,2,3,0,0,5,2,5,1,1180,0,0,0,0,2282.453132288787 -1971,2458,4426,4427,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.609823394147757,8.375008723840029,0,6,-5,23.62305466521574,0,2,2,2019,8,0,37,42,1,0,0,19.81781372972749,19.81781372972749,0,0,0,0,0,0,0,0,1.240251769853354,0,46.39,60.99,57.76,54.51,8.333333333333334,1,1,0,0,6,6,5,1,578.5,614201.0229174125,548057.4370498622,185147.4581669679,116615.5661346574,3229.843031495514 -1971,2458,4427,4426,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.302219451468035,8.158619349671342,0,6,5,84.8700878816535,0,2,2,2019,3,0,40,0,1,0,0,11.24725290017976,11.24725290017976,0,0,0,0,0,0,0,0,1.127353304090108,0,57.76,54.51,46.39,60.99,10,1,1,0,0,6,6,5,1,578.5,614201.0229174125,548057.4370498622,185147.4581669679,116615.5661346574,3229.843031495514 -1972,2459,4428,4431,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,7.913898156992875,7.592924216757845,0,12,-3,36.67322698036376,0,2,2,2019,7,0,45,39,1,0,0,6.712530485011155,6.712530485011155,0,0,0,0,7,1,1,0,0,0,56.52,48.31,37.48,23.67,8.333333333333334,1,1,0,0,6,5,3,1,981.5,-20873.71361066426,-24560.03309992042,0,0,2528.453731435033 -1972,2459,4429,-9,4431,4428,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-799.3923610272161,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,981.5,-20873.71361066426,-24560.03309992042,0,0,2528.453731435033 -1972,2459,4430,-9,4431,4428,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.1267821058758,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,981.5,-20873.71361066426,-24560.03309992042,0,0,2528.453731435033 -1972,2459,4431,4428,-9,-9,1,0,40,0,2,0,2,2,-9,1,2,7.757386158103382,7.947940158977381,0,12,3,42.00449616390893,0,2,2,2019,21,9,30,32,1,9,0,7.217558503863963,7.217558503863963,0,0,0,0,0,1,1,0,0,0,37.48,23.67,56.52,48.31,3.333333333333333,1,1,0,0,6,5,3,1,981.5,-20873.71361066426,-24560.03309992042,0,0,2528.453731435033 -1973,2460,4432,4434,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,.8998827978865077,.8566913685359427,0,6,1,93.61743689997411,0,3,3,2019,12,0,36,40,1,0,0,.0078162834881903,.0078162834881903,0,0,0,0,0,1,1,0,0,0,54.37,54.8,41.78,43.59,1.666666666666667,1,1,0,0,7,13,4,1,642.3333333333334,193789.5428595883,147825.0414348641,186324.3737516331,75242.34513169479,2273.279259847445 -1973,2460,4433,-9,4434,4432,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.042564642564,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,642.3333333333334,193789.5428595883,147825.0414348641,186324.3737516331,75242.34513169479,2273.279259847445 -1973,2460,4434,4432,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.718587325959009,8.906660010284945,0,6,-1,27.14570369269986,0,-9,-9,2019,13,1,30,28,1,1,0,27.53905542960713,27.53905542960713,0,0,0,0,2,1,1,0,3.308224937396138,0,41.78,43.59,54.37,54.8,6.666666666666667,1,1,0,0,7,13,4,1,642.3333333333334,193789.5428595883,147825.0414348641,186324.3737516331,75242.34513169479,2273.279259847445 -1974,2461,4435,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.996375456553472,8.085943466874539,5.172605993246516,0,0,-940.1277286805768,0,2,2,2019,12,3,32,32,1,3,0,10.30355562962905,10.30355562962905,0,0,0,0,0,1,1,0,0,5.177386049721642,55.72,41.55,-9,-9,8.333333333333334,1,1,0,1,11,10,4,0,109,-150172.7554480307,174344.1931009621,0,0,1369.535244312806 -1975,2462,4436,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.950067806023323,9.021587091163093,0,0,0,-1081.227701705864,0,2,2,2019,10,0,50,52,1,0,0,18.52296756973483,18.52296756973483,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,10,12,5,1,223,135218.7341973867,195462.0525587276,87825.9817816773,42595.82921926784,2003.760141918123 -1976,2463,4437,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.244863018606496,7.886646543002226,0,0,0,-1086.490885118973,0,2,3,2019,22,8,38,38,1,8,0,9.943845876952992,9.943845876952992,0,0,0,0,0,0,0,0,0,0,41.8,26.99,-9,-9,1.666666666666667,1,1,0,0,8,5,4,0,276,145283.956930576,-83171.51972536539,0,0,1521.919692948102 -1977,2464,4438,4439,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.088259386784891,8.341115692311908,41,5,-80.36874813420485,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1035541797899837,8.161186602389384,59.15,20.54,59.04,45.74,6.666666666666667,1,1,0,0,4,2,3,1,478,1096221.215413769,594403.8183773516,171923.7465529039,0,2992.337487985946 -1977,2464,4439,4438,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,3,-5,14.64550053494902,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,45.74,59.15,20.54,8.333333333333334,1,1,0,0,0,2,3,1,478,1096221.215413769,594403.8183773516,171923.7465529039,0,2992.337487985946 -1978,2465,4440,4441,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,9.568095973465052,9.797489827383089,0,35,2,71.54879407403418,0,2,2,2019,7,0,20,20,1,0,0,105.4798692941613,105.4798692941613,0,0,0,0,0,0,0,0,0,0,57.48,37.4,52.81,41.1,8.333333333333334,1,1,0,0,11,5,5,1,415.5,1321839.342359208,932164.4703446901,118002.5693464731,0,10904.29552531218 -1978,2465,4441,4440,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.649114984848961,8.545791689893539,5.93331407118687,35,-2,-20.20552049685756,0,2,3,2019,8,1,42,48,1,1,0,16.25972414821626,16.25972414821626,0,0,0,0,0,0,0,0,0,6.21645465149885,52.81,41.1,57.48,37.4,6.666666666666667,1,1,0,0,10,5,5,1,415.5,1321839.342359208,932164.4703446901,118002.5693464731,0,10904.29552531218 -1978,2466,4442,-9,4441,4440,1,1,22,0,0,0,2,2,-9,0,4,8.076645887668965,8.100171891280228,0,0,0,-902.7463249291314,0,2,2,2019,9,1,48,42,1,1,1,7.753503492292796,7.753503492292796,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,5,5,4,1,360,-55426.30637066623,-7715.39493795451,0,0,1086.242025337409 -1979,2467,4443,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-983.5074016082068,0,-9,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,150,-152277.7198759361,0,0,0,1195.384881967467 -1980,2468,4444,-9,-9,4445,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.863672299043,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,1515.5,-196783.1098703664,0,0,0,1291.636421343177 -1980,2468,4445,-9,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1040.365889594717,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,1,0,0,2,2,0,1515.5,-196783.1098703664,0,0,0,1291.636421343177 -1981,2469,4446,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1014.064040156474,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.4,60.75,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1224,307039.7334714405,0,0,0,0 -1982,2470,4447,-9,4449,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.3264509028716,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,622.3333333333334,-44264.57640536592,44019.62778545774,98900.30519367704,74706.12214325299,1646.898212065501 -1982,2470,4448,-9,4449,-9,1,1,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1071.100382217694,-9,1,-9,2019,27,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,50.08,28.22,-9,-9,1.666666666666667,1,1,0,0,0,4,3,1,622.3333333333334,-44264.57640536592,44019.62778545774,98900.30519367704,74706.12214325299,1646.898212065501 -1982,2470,4449,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.679493612468471,7.915179450167571,6.33913708814874,0,0,-955.8316915126228,0,2,2,2019,9,0,30,32,1,0,0,6.486222459247195,6.486222459247195,0,0,0,0,2,1,1,0,5.983775886009415,0,44.75,56.39,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,622.3333333333334,-44264.57640536592,44019.62778545774,98900.30519367704,74706.12214325299,1646.898212065501 -1983,2471,4450,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.217627512964212,8.539395594676947,0,0,0,-1069.242220415761,0,-9,-9,2019,14,3,32,43,1,3,0,14.53532748186355,14.53532748186355,0,0,0,0,0,0,0,0,0,0,46.55,47.77,-9,-9,8.333333333333334,2,3,0,0,12,8,4,1,362,192602.5549620497,80463.7247565198,0,0,1381.483354372358 -1983,2472,4451,-9,4450,-9,1,0,36,0,0,0,1,1,-9,0,2,8.694064263950546,8.610966419647559,0,0,0,-956.1407029745193,0,2,1,2019,12,0,40,35,1,0,1,13.39049634160885,13.39049634160885,0,0,0,0,0,0,0,0,0,0,30.17,39.1,-9,-9,0,2,3,0,0,7,8,5,1,781,-104141.3770674399,44493.23768254782,0,0,2340.210917452092 -1983,2473,4452,-9,4450,-9,1,1,35,0,0,0,1,1,-9,0,4,9.034662281593912,9.210114892433493,0,0,0,-874.0939901706799,0,2,1,2019,10,0,35,35,1,1,1,36.80584303015956,36.80584303015956,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,5,1,708,545106.5434217253,-3225.606422537123,509674.4674657718,162434.5308388892,4095.852225890177 -1984,2474,4453,-9,4459,4454,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1047.060582713057,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.460399180243726,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4454,4459,-9,-9,1,1,46,0,5,0,3,3,-9,0,4,6.949623982206463,6.930061972629696,0,7,6,17.09955584601672,0,2,2,2019,9,0,26,27,1,1,0,5.215940085060669,5.215940085060669,0,0,0,0,14.5,1,1,0,0,0,52,55,49,55,8,3,4,0,1,8,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4455,-9,4459,4454,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-942.9039344990423,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4456,-9,4459,4454,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1042.597819462289,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,.2175456658761128,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4457,-9,4459,4454,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-982.5291732561757,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4458,-9,4459,4454,1,0,17,0,5,1,2,0,0,0,4,0,0,0,0,0,-1005.600524855502,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4459,4454,-9,-9,1,0,40,0,5,0,2,2,-9,0,4,0,0,0,7,-6,1.992493643916905,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,3,4,0,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1984,2474,4460,-9,4459,4454,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1095.440240893525,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,1439.375,-24379.93690782468,5756.112058606494,0,0,1620.305225072462 -1985,2475,4461,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.409002462591004,7.271493554564482,0,0,0,-1107.481122817416,-9,2,2,2019,12,1,25,0,1,1,0,7.382116202799011,7.382116202799011,0,0,0,0,0,1,0,1,0,0,46.71,52.95,-9,-9,6.666666666666667,1,1,0,1,8,10,3,0,214,28863.06862727685,223.1632792116702,0,0,873.0867635910603 -1985,2476,4462,-9,4461,-9,1,0,22,0,0,0,2,2,-9,0,3,7.451820125389835,7.315020821778847,0,0,0,-1083.937974282354,-9,2,-9,2019,9,0,30,0,1,0,1,5.845681825338333,5.845681825338333,0,0,0,0,0,1,0,1,0,0,38.76,52.62,-9,-9,6.666666666666667,1,1,0,0,3,10,3,0,405,-67234.68446147426,-70752.66189464563,0,0,25.33826125881944 -1986,2477,4463,4464,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,7.626106189832202,7.704942027792152,0,6,-1,-86.26863978519459,0,3,3,2019,9,0,40,20,1,0,0,5.388320114305385,5.388320114305385,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,47,8.333333333333334,1,1,0,0,7,13,3,1,569.5,401706.1569491501,109526.2702477298,210626.1065237556,0,2816.977609821948 -1986,2477,4464,4463,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.006868130351762,6.987306831960691,6,1,-30.62375007630633,0,3,3,2019,10,0,0,30,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.25655962783787,52,47,54.69,57.47,7,1,1,0,0,6,13,3,1,569.5,401706.1569491501,109526.2702477298,210626.1065237556,0,2816.977609821948 -1987,2478,4465,4466,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.632122987054731,6.399527944753969,45,-14,-1.818365922271558,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,6.992878986163026,6.440327245907598,56.33,51.02,47.79,38.66,8.333333333333334,1,1,0,0,0,11,2,1,700.5,520312.4395928051,289971.581055851,135528.3487487218,0,2567.703632775028 -1987,2478,4466,4465,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.190843615188187,5.458890435760174,45,14,45.00151001680127,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,35.40986945959506,0,0,1,1,0,5.756111269953166,5.314692795725017,47.79,38.66,56.33,51.02,8.333333333333334,1,1,0,0,0,11,2,1,700.5,520312.4395928051,289971.581055851,135528.3487487218,0,2567.703632775028 -1988,2479,4467,-9,4472,4468,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.133725814657,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2479,4468,4472,-9,-9,1,1,40,1,3,0,2,2,-9,0,4,8.597861104373665,8.711534113239116,0,6,7,-34.3521823968742,0,-9,-9,2019,9,0,35,65,1,1,0,17.46861946878092,17.46861946878092,0,0,0,0,0,1,1,0,0,0,51,56,52.42,55.7,8,4,2,0,0,1,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2479,4469,-9,4472,4468,1,1,17,1,3,1,2,0,-9,0,5,0,0,0,0,0,-834.3246949149199,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2479,4470,-9,4472,4468,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.2738421662094,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2479,4471,-9,4472,4468,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.710089239061,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2479,4472,4468,4473,-9,1,0,33,1,3,0,2,2,-9,1,4,0,0,0,6,-7,8.862686640779192,0,2,2,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52.42,55.7,51,56,8.333333333333334,3,4,0,0,0,8,3,0,424.3333333333333,130445.4085775491,21831.35100103225,338973.4089476693,184233.0275383565,3442.225299113306 -1988,2480,4473,-9,-9,-9,1,0,61,1,3,0,2,2,-9,0,2,6.967433897155889,6.842168631022369,0,0,0,-1041.767162607005,0,-9,-9,2019,12,1,15,18,1,1,0,6.937921916177817,6.937921916177817,0,0,0,0,14.5,1,1,0,0,0,55.6,37.07,-9,-9,6.666666666666667,3,4,0,0,9,8,2,0,297,169122.6200508852,305481.1775559413,0,0,570.9219305561189 -1989,2481,4474,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,1,0,5.460945381052048,5.64570143635425,0,0,-1030.919395071407,0,3,2,2019,23,8,0,0,4,8,0,0,0,1,14.91110678838601,9.502998819512586,140.5788936738738,0,1,1,0,0,5.349480098751028,41.2,25.03,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,510,-229643.84927381,0,0,0,1026.503998173079 -1990,2482,4475,4476,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.383903357465726,8.653623983649954,0,10,1,26.12456414775406,0,2,2,2019,9,1,25,23,1,1,0,21.73421338352427,21.73421338352427,0,0,0,0,0,0,0,0,0,0,53.99,48.04,27.34,64.59,8.333333333333334,1,1,0,0,11,9,5,1,410.5,453682.2943793102,-24392.6363554058,920143.8891982574,655218.2790583984,5362.267619648775 -1990,2482,4476,4475,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.318212882143664,9.175169357272415,0,10,-1,-29.80578162216118,0,2,3,2019,24,11,68,120,1,11,0,15.96565155948905,15.96565155948905,0,0,0,0,0,0,0,0,0,0,27.34,64.59,53.99,48.04,3.333333333333333,1,1,0,0,11,9,5,1,410.5,453682.2943793102,-24392.6363554058,920143.8891982574,655218.2790583984,5362.267619648775 -1990,2482,4477,-9,4475,4476,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.1613379791158,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,410.5,453682.2943793102,-24392.6363554058,920143.8891982574,655218.2790583984,5362.267619648775 -1990,2482,4478,-9,4475,4476,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.2144112412454,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,410.5,453682.2943793102,-24392.6363554058,920143.8891982574,655218.2790583984,5362.267619648775 -1991,2483,4479,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-909.1349290978511,0,-9,3,2019,9,0,0,0,4,0,0,0,0,1,0,13.16263804118038,0,0,1,1,0,0,0,47.97,17.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,407,24271.65919270407,0,0,0,1415.643701909715 -1992,2484,4480,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.70790954954246,9.055174615805189,0,0,0,-1027.884114266758,0,3,3,2019,6,0,55,53,1,0,0,12.35677274586074,12.35677274586074,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,9,9,5,1,225,2127008.680337335,1178883.107137182,761711.7655205699,0,2447.409454025761 -1993,2485,4481,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.035725309381524,8.600134145157607,0,0,0,-938.4768598662301,0,2,2,2019,8,0,43,43,1,0,0,13.92857857852377,13.92857857852377,0,0,0,0,0,1,1,0,.2022221690271463,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,364,95812.85481993239,60300.30703306857,0,0,2098.134214348458 -1993,2485,4482,-9,-9,4481,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-925.1245496852575,-9,-9,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.935554325540842,0,55.09,55.87,-9,-9,8.333333333333334,1,1,1,0,0,9,4,1,364,95812.85481993239,60300.30703306857,0,0,2098.134214348458 -1994,2486,4483,4484,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,4.045343633641107,4.049820091403744,7,-4,-2.730278917370156,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,4.849164799691159,54.1,59.11,57.57,38.96,8.333333333333334,2,3,0,0,0,8,3,1,479,879410.1530717807,469586.9547931011,421480.2910576868,170967.0642557183,1415.860446205024 -1994,2486,4484,4483,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.177531207581767,8.427952179369919,40,4,111.8487137304495,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.630478270639473,8.372440978122752,57.57,38.96,54.1,59.11,5,2,3,0,0,0,8,3,1,479,879410.1530717807,469586.9547931011,421480.2910576868,170967.0642557183,1415.860446205024 -1995,2487,4485,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.356584670234396,7.200805705564059,0,0,0,-960.4270351009192,0,-9,-9,2019,3,0,18,0,1,0,0,11.16200505911258,11.16200505911258,0,0,0,0,0,0,0,0,1.173845018359126,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,1,10,3,0,552,72051.85188545905,-79342.49414464155,0,0,594.1846215314167 -1996,2488,4486,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,8.217846023790432,8.283445410557874,5.790353412253726,0,0,-1015.187441931805,0,3,-9,2019,10,0,43,48,1,0,0,11.00804754150996,11.00804754150996,0,0,0,0,0,1,1,0,6.575282364968747,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,9,9,3,0,609.5,365212.4535070079,61208.28622982385,335680.9471556785,51741.04135523537,1894.275389475969 -1996,2488,4487,-9,4486,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1068.374343644729,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,0,609.5,365212.4535070079,61208.28622982385,335680.9471556785,51741.04135523537,1894.275389475969 -1996,2489,4488,-9,4486,-9,1,0,18,0,2,0,2,2,1,0,3,6.710681016890007,7.104409686703808,0,0,0,-1031.823501514993,-9,2,-9,2019,12,0,25,0,1,0,1,4.267690505936927,4.267690505936927,0,0,0,0,0,1,1,0,6.83019366378782,0,46.67,55.57,-9,-9,5,1,1,0,0,2,9,2,0,293,57640.77872325575,0,0,0,776.4194464692488 -1997,2490,4489,4490,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,5.397195108467391,5.934207711968885,0,4,3,-51.15326915096778,0,-9,-9,2019,14,4,10,30,1,4,0,3.386796773912393,3.386796773912393,0,0,0,0,0,0,0,0,1.19828334110108,0,43.92,53.94,52.24,50.75,8.333333333333334,1,1,0,0,6,7,5,1,311.5,760937.2273556781,424748.9961552811,255030.3140632497,36230.23932931817,3457.038293386929 -1997,2490,4490,4489,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,9.011426279787035,9.237074678746238,0,4,-3,-60.28286052112294,0,-9,-9,2019,9,1,55,44,1,1,0,20.91236592258971,20.91236592258971,0,0,0,0,2,0,0,0,1.993553830667796,0,52.24,50.75,43.92,53.94,10,1,1,0,0,4,7,5,1,311.5,760937.2273556781,424748.9961552811,255030.3140632497,36230.23932931817,3457.038293386929 -1998,2491,4491,-9,4492,4493,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.8084997852677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,429.3333333333333,404412.5531377249,199229.2433074559,666723.8930973822,470886.6392572913,8567.301626850611 -1998,2491,4492,4493,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.513456336772456,7.733070733465782,0,19,0,186.0128436737128,0,2,1,2019,12,0,10,10,1,0,0,22.7827789451728,22.7827789451728,0,0,0,0,0,1,1,0,3.045380234930212,0,48.87,58.55,51.14,60.45,8.333333333333334,1,1,0,0,8,8,5,1,429.3333333333333,404412.5531377249,199229.2433074559,666723.8930973822,470886.6392572913,8567.301626850611 -1998,2491,4493,4492,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,9.672669210001631,9.96096105964136,0,19,0,15.61531167896618,0,2,1,2019,14,3,56,66,1,3,0,34.40033648924479,34.40033648924479,0,0,0,0,0,1,1,0,0,0,51.14,60.45,48.87,58.55,1.666666666666667,1,1,0,0,9,8,5,1,429.3333333333333,404412.5531377249,199229.2433074559,666723.8930973822,470886.6392572913,8567.301626850611 -1999,2492,4494,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,6.700861362032587,6.526099114794683,0,0,-876.8398584273482,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.051541594183522,6.241833034306175,52.41,43.29,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,190,32015.87719215106,94830.03194500525,-7461.698966870099,0,959.9299377722666 -2000,2493,4495,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.379714787114284,6.877781814703359,0,0,-1046.676691129689,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.004403968534928,54.97,26.37,-9,-9,5,1,1,0,0,0,4,3,1,209,374904.6063629632,304904.0851849536,238360.3876254384,0,1163.518061622776 -2001,2494,4496,4497,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.619065184834701,5.627847630978365,60,-2,60.25453368857119,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.291436499184641,57.73,54.53,59.54,45.7,10,1,1,0,0,0,9,2,1,629.5,736185.714348811,266258.8462085888,348288.000780721,0,1456.002401478842 -2001,2494,4497,4496,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.789518192336421,6.963498993032431,60,2,-83.17892157818045,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.381025210723146,6.900427436408195,59.54,45.7,57.73,54.53,8.333333333333334,1,1,0,0,0,9,2,1,629.5,736185.714348811,266258.8462085888,348288.000780721,0,1456.002401478842 -2002,2495,4498,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.647749858732347,8.540680168789459,0,0,0,-1047.577391604908,0,-9,-9,2019,18,5,40,40,1,5,0,16.91404849786396,16.91404849786396,0,0,0,0,0,1,1,0,0,0,46.17,45.06,-9,-9,5,1,1,0,0,2,12,5,1,215,76690.07063087905,53475.02144464337,101340.6183906103,108862.4470749419,1976.357826192259 -2003,2496,4499,4501,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,6.624424721759877,6.682404004230857,0,19,2,83.90676510469328,0,2,2,2019,6,0,84,-9,1,0,0,1.093135911301836,1.093135911301836,0,0,0,0,0,1,1,0,0,0,67.63,34.98,48.43,43.94,8.333333333333334,1,1,0,0,9,2,3,1,1572.666666666667,18094.32349092947,70831.33479489775,0,0,2003.592293004326 -2003,2496,4500,-9,4501,4499,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.4838135388543,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,1572.666666666667,18094.32349092947,70831.33479489775,0,0,2003.592293004326 -2003,2496,4501,4499,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.888004065088357,8.030841708691879,0,2,-2,-27.3026124239244,0,-9,-9,2019,6,0,16,16,1,0,0,20.57907419604541,20.57907419604541,0,0,0,0,0,1,1,0,2.466173385804795,0,48.43,43.94,67.63,34.98,10,1,1,0,0,11,2,3,1,1572.666666666667,18094.32349092947,70831.33479489775,0,0,2003.592293004326 -2004,2497,4502,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.7617269620566,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,3,11,1,1,509,-41207.74748715813,0,0,0,811.9962439428548 -2005,2498,4503,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.340583772071819,8.281697318065611,0,0,0,-955.1052305832055,0,3,3,2019,6,0,80,80,1,0,0,6.840752952043823,6.840752952043823,0,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,1,1,0,0,12,11,4,1,728,366768.8847503701,141169.4509944817,206169.0651354575,0,2480.38771030975 -2006,2499,4504,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.907414198245071,6.939167535195008,0,0,-845.0432163560918,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.656181915978967,7.074032171787008,60.29,52.11,-9,-9,10,1,1,0,0,0,6,2,1,606,622665.8361434684,396162.569301658,107444.08309248,0,1195.715888469265 -2007,2500,4505,4506,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.2572268467332,7.860125510946647,0,3,-1,-55.93930100641799,0,-9,-9,2019,4,0,25,25,1,0,0,14.72955668696239,14.72955668696239,0,0,0,0,0,0,0,0,0,0,48.64,53.29,58.15,52.91,5,1,1,0,0,12,9,5,1,763,444264.5352340416,-40557.50314279537,430118.9074248105,135969.8547692071,3529.734996424568 -2007,2500,4506,4505,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.530375937686403,8.161021236041856,0,3,1,-41.12994828414237,0,2,2,2019,6,0,66,66,1,0,0,8.375074182054282,8.375074182054282,0,0,0,0,0,0,0,0,2.273002869280443,0,58.15,52.91,48.64,53.29,8.333333333333334,1,1,0,0,12,9,5,1,763,444264.5352340416,-40557.50314279537,430118.9074248105,135969.8547692071,3529.734996424568 -2008,2501,4507,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-955.9578019425239,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.094491638996728,0,29.76,21.44,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1483,-93675.72903915332,0,0,0,1637.609511110018 -2009,2502,4508,4509,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.856114417879141,7.674179685293494,0,6,-1,-44.21289377120252,0,3,2,2019,11,0,14,20,1,2,0,21.16739493317402,21.16739493317402,0,0,0,0,0,1,1,0,0,0,50,47,62.83,18.52,7,2,3,0,0,1,8,4,1,720,1309140.569007401,693372.9863621199,650187.3811972972,0,3853.758228261806 -2009,2502,4509,4508,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.787660845296903,7.680030463871717,41,1,-56.91947197040758,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,11.03069229640337,0,0,1,1,0,3.777284286053495,8.010514325547284,62.83,18.52,50,47,1.666666666666667,2,3,0,0,0,8,4,1,720,1309140.569007401,693372.9863621199,650187.3811972972,0,3853.758228261806 -2009,2503,4510,-9,4508,4509,1,1,33,0,0,0,1,1,-9,0,4,8.946768676369469,8.754052980438779,0,0,0,-1127.648463334305,0,2,2,2019,11,0,44,41,1,0,0,18.46794262427359,18.46794262427359,0,0,0,0,2,1,1,0,0,0,45.46,57.33,-9,-9,3.333333333333333,2,3,0,0,8,8,5,1,433,95007.60729702906,81324.79649867177,46412.12265999134,42937.30674462208,2669.829685384188 -2009,2504,4511,-9,4508,4509,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-943.7347175741605,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,60.79,-9,-9,5,2,3,1,0,0,8,1,1,601,-14011.98661093723,0,0,0,321.6325159796133 -2010,2505,4512,4514,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.114131283535235,8.311703756402613,0,7,0,-58.5707842023109,0,2,2,2019,6,0,30,37,1,0,0,16.58249215626828,16.58249215626828,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.04,55.86,8.333333333333334,1,1,0,0,8,2,5,1,758,222907.2450870892,186534.2615531026,316005.4500202234,170470.707675823,3826.709406117067 -2010,2505,4513,-9,4514,4512,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.600069650863,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,758,222907.2450870892,186534.2615531026,316005.4500202234,170470.707675823,3826.709406117067 -2010,2505,4514,4512,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,8.597863315324499,8.747069487703506,0,7,0,-49.19529812546247,0,-9,-9,2019,7,0,42,42,1,0,0,14.34088558506071,14.34088558506071,0,0,0,0,0,1,1,0,0,0,49.04,55.86,60.12,54.8,8.333333333333334,1,1,0,0,7,2,5,1,758,222907.2450870892,186534.2615531026,316005.4500202234,170470.707675823,3826.709406117067 -2011,2506,4515,-9,4517,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.408953315311,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,938.3333333333334,68395.84238667246,122596.4583631329,49289.40291902985,44648.70420675389,3309.176871685801 -2011,2506,4516,-9,4517,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.338190324504,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,938.3333333333334,68395.84238667246,122596.4583631329,49289.40291902985,44648.70420675389,3309.176871685801 -2011,2506,4517,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,9.018470635211983,8.969213086768288,6.134875245255523,0,0,-909.60176492198,0,2,3,2019,12,0,45,46,1,0,0,21.30037904929311,21.30037904929311,0,0,0,0,0,1,1,0,6.046022168187666,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,938.3333333333334,68395.84238667246,122596.4583631329,49289.40291902985,44648.70420675389,3309.176871685801 -2012,2507,4518,4519,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,9,8,72.51965333736891,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.57,49.24,52.64,36.51,6.666666666666667,1,1,0,0,0,5,2,1,808,299642.9851754917,55207.93968177905,174492.1839237504,0,1132.442221245567 -2012,2507,4519,4518,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.435407443323864,5.242867133363509,9,-8,105.554029490055,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.887680935827958,5.51751590842433,52.64,36.51,54.57,49.24,8.333333333333334,1,1,0,0,0,5,2,1,808,299642.9851754917,55207.93968177905,174492.1839237504,0,1132.442221245567 -2013,2508,4520,4521,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.170235068723795,7.357072982732473,36,9,-52.47208552626155,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.95648753426693,57.16,56.15,49,48,8.333333333333334,1,1,0,0,7,12,3,1,1615,332679.3186943355,222085.1105898066,196613.204868478,0,2303.958647690101 -2013,2508,4521,4520,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.138995439172478,7.293419258802094,2.665470713299816,36,0,-114.6133326732754,-9,-9,-9,2019,11,0,15,0,1,2,0,10.62981320402692,10.62981320402692,0,0,0,0,0,1,1,0,6.459193846159407,2.451300957587455,49,48,57.16,56.15,7,1,1,0,0,1,12,3,1,1615,332679.3186943355,222085.1105898066,196613.204868478,0,2303.958647690101 -2014,2509,4522,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.0802756255773,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,1602,149657.8176073498,0,0,0,375.8432225833363 -2015,2510,4523,-9,4525,4526,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-812.2727670593703,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,455.25,126878.3775358174,87020.28337810079,166167.5499728006,109754.9291811279,3160.356220380124 -2015,2510,4524,-9,4525,4526,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.8865879479649,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,455.25,126878.3775358174,87020.28337810079,166167.5499728006,109754.9291811279,3160.356220380124 -2015,2510,4525,4526,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.738863431125403,7.824513450885874,0,16,-4,53.4464119338344,0,2,2,2019,14,3,32,32,1,3,0,7.528762094266997,7.528762094266997,0,0,0,0,0,1,1,0,0,0,51.77,58.57,41.43,64.75,6.666666666666667,1,1,0,0,9,4,4,1,455.25,126878.3775358174,87020.28337810079,166167.5499728006,109754.9291811279,3160.356220380124 -2015,2510,4526,4525,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.541060975852124,8.49538837410112,0,16,4,-115.2073698222134,0,2,2,2019,18,6,49,51,1,6,0,13.27134138493275,13.27134138493275,0,0,0,0,0,1,1,0,0,0,41.43,64.75,51.77,58.57,6.666666666666667,1,1,0,0,8,4,4,1,455.25,126878.3775358174,87020.28337810079,166167.5499728006,109754.9291811279,3160.356220380124 -2016,2511,4527,-9,4528,4530,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.413048962456,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,611.25,170903.950034004,-1921.159204359637,87737.97108000844,50509.33619547105,1964.37095287376 -2016,2511,4528,4530,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,7.373365343831068,7.382301289079463,0,20,-1,12.85819439631887,0,-9,-9,2019,10,1,20,20,1,1,0,9.125592508981315,9.125592508981315,0,0,0,0,7,1,1,0,0,0,51.31,48.33,59.82,46.7,5,2,3,0,0,12,6,3,1,611.25,170903.950034004,-1921.159204359637,87737.97108000844,50509.33619547105,1964.37095287376 -2016,2511,4529,-9,4528,4530,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.567441544155,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,6,3,1,611.25,170903.950034004,-1921.159204359637,87737.97108000844,50509.33619547105,1964.37095287376 -2016,2511,4530,4528,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.492056160080404,7.881202404553339,0,20,1,-117.5167751632723,0,3,3,2019,8,0,37,37,1,0,0,8.5558494424012,8.5558494424012,0,0,0,0,0,1,1,0,0,0,59.82,46.7,51.31,48.33,8.333333333333334,2,3,0,0,12,6,3,1,611.25,170903.950034004,-1921.159204359637,87737.97108000844,50509.33619547105,1964.37095287376 -2017,2512,4531,4532,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,0,0,0,10,-2,-27.30284606949392,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.29,55.45,58.06,52.01,8.333333333333334,2,3,0,0,0,9,3,1,270.5,248792.9642677127,96312.15323790579,313236.6228715928,98454.85398566289,1179.670861822818 -2017,2512,4532,4531,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.781047613042701,7.569777253906951,0,10,2,186.4850171144051,0,3,2,2019,8,0,36,36,1,0,0,7.804520800830296,7.804520800830296,0,0,0,0,0,0,0,0,0,0,58.06,52.01,38.29,55.45,10,2,3,0,0,11,9,3,1,270.5,248792.9642677127,96312.15323790579,313236.6228715928,98454.85398566289,1179.670861822818 -2017,2513,4533,-9,4531,4532,1,1,21,0,0,0,2,2,-9,0,4,8.245160286072489,8.232344217853619,0,0,0,-1061.595023752608,0,3,3,2019,3,0,36,42,1,0,1,11.22104381700471,11.22104381700471,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1122,198580.4368753333,-59516.67965579198,0,0,1444.087537615174 -2017,2514,4534,-9,4531,4532,1,0,19,0,0,0,2,2,1,0,4,7.318270233801091,7.303372810065487,0,0,0,-1110.808098282627,-9,3,3,2019,10,0,25,0,1,0,1,7.759809597180496,7.759809597180496,0,0,0,0,0,0,0,0,0,0,53.84,53.46,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,1017,-235463.2830692852,0,0,0,572.0049989829188 -2018,2515,4535,-9,4536,4537,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.116731254272,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1160,343106.5316820545,0,204705.632309555,0,1552.875805086962 -2018,2515,4536,4537,-9,-9,1,0,29,0,2,0,3,3,-9,1,2,0,0,0,4,-1,0,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,29.07,31.5,40.95,32.8,6.666666666666667,1,1,0,0,0,13,1,0,1160,343106.5316820545,0,204705.632309555,0,1552.875805086962 -2018,2515,4537,4536,-9,-9,1,1,30,0,2,0,3,3,-9,0,2,0,0,0,4,1,0,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.95,32.8,29.07,31.5,6.666666666666667,1,1,1,0,0,13,1,0,1160,343106.5316820545,0,204705.632309555,0,1552.875805086962 -2018,2515,4538,-9,4536,4537,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.4436320050621,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1160,343106.5316820545,0,204705.632309555,0,1552.875805086962 -2019,2516,4539,4541,-9,-9,1,0,47,1,1,0,1,1,-9,0,4,8.192849538976375,7.915659557441824,0,7,3,60.2910634725216,0,2,2,2019,15,4,15,11,1,4,0,24.06385561819548,24.06385561819548,0,0,0,0,0,1,1,0,0,0,35.81,53.81,49.04,55.86,6.666666666666667,1,1,0,1,6,8,4,1,399.3333333333333,207366.0399146094,15773.99598056447,359566.5336122166,136228.0746499413,3752.481108273107 -2019,2516,4540,-9,4539,4541,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-886.4667798238313,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,399.3333333333333,207366.0399146094,15773.99598056447,359566.5336122166,136228.0746499413,3752.481108273107 -2019,2516,4541,4539,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,7.647831793245842,7.762707689093948,7.112662579943662,7,-3,105.7950656304306,0,3,3,2019,10,0,25,20,1,0,0,6.612755450964095,6.612755450964095,0,0,0,0,0,1,1,0,7.978929723347011,0,49.04,55.86,35.81,53.81,5,1,1,0,0,8,8,4,1,399.3333333333333,207366.0399146094,15773.99598056447,359566.5336122166,136228.0746499413,3752.481108273107 -2020,2517,4542,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.301234029958481,7.609294811193685,0,0,0,-1044.059648534317,0,3,2,2019,8,0,40,35,1,0,0,5.169227146421883,5.169227146421883,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,262,-134512.7387354964,0,0,0,709.9588711138157 -2021,2518,4543,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.986374665037158,4.71340223313824,0,0,-971.218128715436,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.911863023083938,57.84,34,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,495,286017.3210438754,102640.4758512075,245166.6722703484,0,327.0018850713802 -2022,2519,4544,4547,-9,-9,1,1,43,0,2,0,1,1,-9,0,2,8.814489721481827,8.468852744688057,0,20,3,-84.82527265618458,0,2,3,2019,15,2,48,37,1,2,0,16.43859963264855,16.43859963264855,0,0,0,0,0,1,1,0,0,0,42.85,51.08,10.8,49.75,5,2,3,0,0,8,9,5,1,1398.5,920984.3071337795,356194.3161723768,530859.4959936403,0,4792.305025302666 -2022,2519,4545,-9,4547,4544,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.353439601633,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,5,1,1398.5,920984.3071337795,356194.3161723768,530859.4959936403,0,4792.305025302666 -2022,2519,4546,-9,4547,4544,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.686918408994,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,5,1,1398.5,920984.3071337795,356194.3161723768,530859.4959936403,0,4792.305025302666 -2022,2519,4547,4544,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,8.203940632723249,8.710315796033264,0,20,-3,-38.25806240333488,0,3,3,2019,36,12,33,36,1,12,0,17.2053994732994,17.2053994732994,0,0,0,0,0,1,1,0,7.759183140185416,0,10.8,49.75,42.85,51.08,1.666666666666667,2,3,0,0,9,9,5,1,1398.5,920984.3071337795,356194.3161723768,530859.4959936403,0,4792.305025302666 -2023,2520,4548,4549,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.590767840927574,8.647244946948069,0,10,3,-5.963365826085484,0,-9,-9,2019,9,0,37,38,1,0,0,18.1050714991683,18.1050714991683,0,0,0,0,0,1,1,0,0,0,42.69,56.27,46.85,47.29,8.333333333333334,1,1,0,0,11,10,4,1,795.5,1481117.411373366,1054088.386585381,360134.6032166145,157412.6499105963,3239.758265241104 -2023,2520,4549,4548,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.919023718087443,7.888140324375968,0,10,-3,55.52042183959589,0,2,2,2019,12,1,30,22,1,1,0,10.95133044490151,10.95133044490151,0,0,0,0,0,1,1,0,0,0,46.85,47.29,42.69,56.27,5,1,1,0,0,11,10,4,1,795.5,1481117.411373366,1054088.386585381,360134.6032166145,157412.6499105963,3239.758265241104 -2023,2520,4550,-9,4549,4548,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.9781389419711,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,795.5,1481117.411373366,1054088.386585381,360134.6032166145,157412.6499105963,3239.758265241104 -2023,2520,4551,-9,4549,4548,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.135660033204,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,795.5,1481117.411373366,1054088.386585381,360134.6032166145,157412.6499105963,3239.758265241104 -2024,2521,4552,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1026.022215650424,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,7.269778918399676,0,51.53,51.8,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,503,837509.9664717133,247929.215589582,120983.5600202435,0,1282.316464555337 -2025,2522,4553,4554,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.378151399302829,7.4015453860095,4,4,80.41012758395536,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.011127009414209,7.376636723806182,60.3,46.58,57.16,56.15,8.333333333333334,1,1,0,0,5,5,5,1,451,118274.1626887485,0,134972.4546216918,0,5186.246848712699 -2025,2522,4554,4553,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.35783865265147,9.311306656852389,6.283285282318802,4,-4,-25.46010699170911,0,-9,-9,2019,10,2,36,40,1,2,0,26.42915580709774,26.42915580709774,0,0,0,0,0,1,1,0,6.934545625885384,6.388934574030891,57.16,56.15,60.3,46.58,10,1,1,0,0,4,5,5,1,451,118274.1626887485,0,134972.4546216918,0,5186.246848712699 -2026,2523,4555,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,8.012872970567125,7.804632964161738,0,0,0,-897.7933556318387,0,2,1,2019,12,2,37,35,1,2,1,9.964812224706559,9.964812224706559,0,0,0,0,0,1,1,0,0,0,29.4,50.23,-9,-9,5,1,1,0,0,1,12,4,1,1399,-52934.41632697077,-24749.20312156264,0,0,1831.034598506642 -2026,2524,4556,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-882.5397989509113,0,2,1,2019,28,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,2.12538654826377,0,17.76,49.37,-9,-9,0,1,1,1,1,0,12,1,1,576,-71168.59932894802,0,0,0,75.61216522750696 -2027,2525,4557,-9,4558,4560,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.0591497728423,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,559,312041.0696112801,153906.9136590244,265784.0976482307,118383.869828487,3602.325335108208 -2027,2525,4558,4560,-9,-9,1,0,45,0,3,0,1,1,-9,0,5,6.966201248441165,7.009383170626431,0,18,-2,-29.96387541745208,0,2,2,2019,6,0,6,20,1,0,0,22.58238721834547,22.58238721834547,0,0,0,.9155051391053846,0,1,1,0,6.737837495102244,0,57.06,57.76,53,55,10,1,1,0,0,5,7,4,1,559,312041.0696112801,153906.9136590244,265784.0976482307,118383.869828487,3602.325335108208 -2027,2525,4559,-9,4558,4560,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.417935838119,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,559,312041.0696112801,153906.9136590244,265784.0976482307,118383.869828487,3602.325335108208 -2027,2525,4560,4558,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,8.780399413844515,9.053335674706517,0,6,2,29.47327089703549,0,-9,-9,2019,9,0,45,45,1,1,0,18.20934289344856,18.20934289344856,0,0,0,0,0,1,1,0,2.312849596138284,0,53,55,57.06,57.76,8,1,1,0,0,1,7,4,1,559,312041.0696112801,153906.9136590244,265784.0976482307,118383.869828487,3602.325335108208 -2027,2525,4561,-9,4558,4560,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-874.8164133609597,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,559,312041.0696112801,153906.9136590244,265784.0976482307,118383.869828487,3602.325335108208 -2028,2526,4562,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-869.1886208591209,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.279416286142196,0,54,44,-9,-9,8,1,1,0,0,0,1,1,1,2025,-39526.92357525493,47252.25471738145,0,0,1373.580714700602 -2029,2527,4563,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1057.230387805357,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.76,39.41,-9,-9,5,1,1,0,1,0,8,2,0,156,300037.4888295202,0,187962.8303823647,0,1058.279771020837 -2030,2528,4564,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.750378388839494,7.753803592120423,0,0,-886.3572621639063,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.531501589142141,7.476718824322087,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,983,1139.934887718293,135461.1482403096,175847.0275336101,0,1829.902123736527 -2031,2529,4565,-9,-9,4566,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-926.0790614235307,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.43,29.79,-9,-9,5,1,1,0,1,0,11,1,1,110,0,0,0,0,812.6079231889826 -2031,2530,4566,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.797184349237249,5.954662397442582,0,0,-1099.386764304887,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.736760602558237,5.819082758178311,48.51,54.51,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,375,-50754.00920747409,-73905.30460259441,0,0,622.023568574949 -2032,2531,4567,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.602692931960949,8.515808397862447,5.265997502999292,0,0,-973.0652032749133,0,2,2,2019,6,0,37,38,1,0,0,13.18299814496337,13.18299814496337,0,0,0,0,0,1,1,0,1.695898007017034,5.332980292663636,53.87,53.44,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,294,750503.541901083,457707.367932877,282652.5174618231,0,2026.418058019375 -2033,2532,4568,4569,-9,-9,1,0,41,0,0,0,3,3,-9,0,2,7.36040026910801,7.460379176307762,0,7,3,-8.178083618551483,0,3,3,2019,12,2,27,32,1,2,0,7.681830130056706,7.681830130056706,0,0,0,0,0,1,1,0,0,0,50.57,44.76,52,54.51,6.666666666666667,1,1,0,0,8,6,4,0,674,127233.4517508791,20730.90138874475,0,0,2467.372960774574 -2033,2532,4569,4568,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.143861342184813,8.28670742434697,0,7,-3,-152.1316611210499,0,3,3,2019,5,0,40,41,1,0,0,13.0499981839022,13.0499981839022,0,0,0,0,0,1,1,0,0,0,52,54.51,50.57,44.76,6.666666666666667,1,1,0,0,8,6,4,0,674,127233.4517508791,20730.90138874475,0,0,2467.372960774574 -2034,2533,4570,4571,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-84.19609649177127,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,57.16,56.15,7,1,1,0,0,0,13,3,1,398,1148672.16208851,469634.759313426,200869.4960948222,0,2655.535281985439 -2034,2533,4571,4570,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.066587947135258,7.951228380141917,6,1,-97.44977223559691,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.428850362095252,8.122756899770074,57.16,56.15,51,46,8.333333333333334,1,1,0,0,3,13,3,1,398,1148672.16208851,469634.759313426,200869.4960948222,0,2655.535281985439 -2035,2534,4572,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.881421875177822,7.713137216494294,0,0,0,-1072.695375758291,0,3,3,2019,12,3,36,36,1,3,0,7.878673585079079,7.878673585079079,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,5,2,3,0,0,10,5,3,1,538,22332.86367646354,45208.90126114222,0,0,1230.102273920898 -2035,2535,4573,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.557095803322762,7.301614639299718,0,0,0,-815.6119450703677,0,2,2,2019,6,0,38,38,1,0,0,4.694521545495476,4.694521545495476,0,0,0,0,0,0,0,0,0,0,66.61,45.12,-9,-9,8.333333333333334,2,3,0,0,10,5,3,1,1479,1191497.051613024,650592.3706262461,285574.0063925391,0,772.1927937943326 -2036,2536,4574,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.980871090063334,7.430916073331969,0,0,-1081.558502785955,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.185695987644171,7.50485432988645,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,2550,487383.9294830458,452740.6348532329,180677.9842130193,0,1828.782802099889 -2037,2537,4575,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,3.664651070893238,3.734809924744785,0,0,-988.8516728919628,0,3,3,2019,17,5,0,44,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3.742478540178294,43.48,30.37,-9,-9,8.333333333333334,1,1,1,0,11,1,2,1,528,292853.1939988182,79017.35379521089,248078.3327088538,0,310.5112534029244 -2038,2538,4576,4577,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,40,0,0,0,3,2,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,0,0,39.77,46.47,33.22,17.55,3.333333333333333,1,1,0,1,8,10,1,1,1627.5,363773.1430850511,53278.90532835237,202772.0136900842,0,1021.401307962178 -2038,2538,4577,4576,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,10,9,0,0,-9,3,2019,22,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,33.22,17.55,39.77,46.47,0,1,1,0,1,0,10,1,1,1627.5,363773.1430850511,53278.90532835237,202772.0136900842,0,1021.401307962178 -2039,2539,4578,-9,-9,-9,1,0,36,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.381277694573,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.25,40.89,-9,-9,5,1,1,1,1,0,2,1,0,675,137393.7753400916,0,0,0,291.126532615252 -2040,2540,4579,4580,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.88122637693556,8.44520395537668,0,6,-7,-104.3713521567556,0,2,2,2019,7,0,47,50,1,0,0,15.7902652511021,15.7902652511021,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51,54,10,1,1,0,0,7,7,5,1,569,102690.7897900957,11071.03028674386,204469.4030023573,126046.1530888441,3223.371565921652 -2040,2540,4580,4579,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.589796217303897,7.735645339693838,0,6,7,-47.03556521166936,-9,2,2,2019,10,0,10,0,1,1,0,26.04135893618598,26.04135893618598,0,0,0,0,0,0,0,0,0,0,51,54,57.06,57.76,8,1,1,0,0,1,7,5,1,569,102690.7897900957,11071.03028674386,204469.4030023573,126046.1530888441,3223.371565921652 -2040,2541,4581,-9,4580,4579,1,1,18,0,0,0,2,2,-9,0,4,7.752166893667395,7.271987510270981,0,0,0,-932.3381132113233,0,2,2,2019,10,0,40,0,1,2,1,4.949221595911895,4.949221595911895,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,1431,-156722.1337344618,-94745.19906490239,0,0,546.1736166642543 -2041,2542,4582,4583,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.547067184835107,8.573007302820823,0,30,2,11.6654292942365,0,2,2,2019,5,0,40,35,1,0,0,17.44665606683963,17.44665606683963,0,0,0,0,0,0,0,0,4.267117959106844,0,54.79,55.86,46.11,53.15,8.333333333333334,1,1,0,0,8,12,5,1,336,594915.4114396006,404362.1737352992,217428.5779802695,0,5291.817766699256 -2041,2542,4583,4582,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.037973494423909,8.995259428113537,0,30,-2,-153.8500547250509,0,2,2,2019,11,0,45,35,1,0,0,24.61810270329139,24.61810270329139,0,0,0,0,0,0,0,0,0,0,46.11,53.15,54.79,55.86,8.333333333333334,1,1,0,0,11,12,5,1,336,594915.4114396006,404362.1737352992,217428.5779802695,0,5291.817766699256 -2042,2543,4584,4585,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.536011826001923,8.443196726683459,0,9,13,-21.16247931463491,0,2,2,2019,8,0,40,38,1,0,0,12.25778588650724,12.25778588650724,0,0,0,0,0,0,0,0,3.606493305418778,0,62.67,44.01,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,671.5,-48597.27362082146,26423.3604450512,0,0,3727.734156445724 -2042,2543,4585,4584,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.399775144145,8.797277452533852,0,9,-13,-73.76979840567475,0,2,1,2019,7,0,41,45,1,0,0,13.2553815008992,13.2553815008992,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.67,44.01,10,1,1,0,0,9,5,5,1,671.5,-48597.27362082146,26423.3604450512,0,0,3727.734156445724 -2043,2544,4586,4588,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,8,-2,10.23660763222591,0,1,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8.547566159258894,0,51.24,58.84,46.55,58.3,8.333333333333334,1,1,0,0,4,9,5,1,533.25,809755.9157934634,314034.5006877151,617748.7609745943,102734.4469175191,5613.364555338872 -2043,2544,4587,-9,4586,4588,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.0267141969448,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.25,809755.9157934634,314034.5006877151,617748.7609745943,102734.4469175191,5613.364555338872 -2043,2544,4588,4586,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.407071578438257,9.356386552076538,0,8,2,77.29532060915113,0,3,3,2019,12,0,48,45,1,0,0,29.24000073043429,29.24000073043429,0,0,0,0,0,0,0,0,4.544241529386529,0,46.55,58.3,51.24,58.84,5,1,1,0,0,9,9,5,1,533.25,809755.9157934634,314034.5006877151,617748.7609745943,102734.4469175191,5613.364555338872 -2043,2544,4589,-9,4586,4588,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.363767388737,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.25,809755.9157934634,314034.5006877151,617748.7609745943,102734.4469175191,5613.364555338872 -2044,2545,4590,4593,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.586313736734127,8.857472498846246,0,8,1,2.933281319622726,0,-9,-9,2019,9,0,40,40,1,0,0,20.02622170172157,20.02622170172157,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.73,54.53,8.333333333333334,1,1,0,0,11,10,5,1,486.75,513813.1060194543,241216.1047466993,361287.001802892,107199.8015039981,4521.271524714135 -2044,2545,4591,-9,4593,4590,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-999.2883281115969,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,486.75,513813.1060194543,241216.1047466993,361287.001802892,107199.8015039981,4521.271524714135 -2044,2545,4592,-9,4593,4590,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.316888745903,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,486.75,513813.1060194543,241216.1047466993,361287.001802892,107199.8015039981,4521.271524714135 -2044,2545,4593,4590,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.714023592936254,8.916699645356857,0,8,-1,64.99990384732531,0,1,1,2019,9,0,36,28,1,0,0,16.79480295779161,16.79480295779161,0,0,0,0,0,1,1,0,3.41110986990655,0,57.73,54.53,55.73,53.98,8.333333333333334,1,1,0,0,8,10,5,1,486.75,513813.1060194543,241216.1047466993,361287.001802892,107199.8015039981,4521.271524714135 -2045,2546,4594,4595,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.603026068626649,8.141006197763867,7,-7,-17.05735771056677,0,2,1,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.892469372816247,8.367567065221541,49,48,52,47,7,1,1,0,0,6,13,3,1,188.5,1353151.428146167,875385.1588393719,150020.5560848152,0,2661.391807159707 -2045,2546,4595,4594,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,7,7,-44.65320631888901,0,3,2,2019,10,0,0,30,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,49,48,7,1,1,0,0,9,13,3,1,188.5,1353151.428146167,875385.1588393719,150020.5560848152,0,2661.391807159707 -2046,2547,4596,-9,4602,4601,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1106.005082433371,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4597,-9,4602,4601,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1055.782458057912,-9,3,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,5,-9,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4598,-9,4602,4601,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1033.073706653619,-9,3,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,5,-9,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4599,-9,4602,4601,1,0,17,0,5,1,2,0,-9,0,4,0,0,0,0,0,-968.0662460596695,-9,3,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4600,-9,4602,4601,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-985.9247975527023,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4601,4602,-9,-9,1,1,47,0,5,0,1,1,-9,0,4,5.492207249445007,5.314180560268287,0,20,4,26.14800537348884,-9,-9,-9,2019,12,0,2,0,1,0,0,15.33426099985657,15.33426099985657,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,6.666666666666667,4,5,0,0,11,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4602,4601,-9,-9,1,0,43,0,5,0,3,3,-9,0,4,0,0,0,2,-4,63.67253144903419,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,6.666666666666667,4,5,0,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2547,4603,-9,4602,4601,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-955.908635481414,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,5,-9,0,0,6,2,0,822.125,286218.8220192567,222113.7692611568,199215.0591760084,121904.3498753329,2613.780034372217 -2046,2548,4604,-9,4602,4601,1,0,24,0,5,0,2,2,-9,0,3,0,0,0,0,0,-875.8669078416901,-9,3,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,4,5,0,0,0,6,1,0,1322,-185869.3521526726,0,0,0,-191.9264572683974 -2046,2549,4605,-9,4602,4601,1,1,22,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1009.927254450505,-9,3,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,9.685904307191546,0,57.16,56.15,-9,-9,8.333333333333334,4,5,0,0,0,6,1,0,1082,68265.93507698714,0,0,0,9765.562194167067 -2046,2550,4606,-9,4602,4601,1,0,21,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1056.355549684751,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,6.666666666666667,4,5,0,0,0,6,1,0,1420,14607.04672596851,0,0,0,115.7379631757831 -2047,2551,4607,4608,-9,-9,1,0,51,0,0,0,3,3,-9,1,4,0,0,0,6,-3,-73.1286947964046,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,2.105470276052655,0,61.27,46.03,41.44,50.84,8.333333333333334,1,1,0,0,1,5,2,1,319.5,412584.1368419672,18996.99562630588,336537.3303143074,0,716.1674472538314 -2047,2551,4608,4607,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,6.395338142032299,6.726987371772387,0,6,3,43.53999343437959,0,2,2,2019,8,0,45,45,1,0,0,2.106291239282565,2.106291239282565,0,0,0,0,0,1,1,0,0,0,41.44,50.84,61.27,46.03,3.333333333333333,1,1,0,0,7,5,2,1,319.5,412584.1368419672,18996.99562630588,336537.3303143074,0,716.1674472538314 -2047,2552,4609,-9,4607,4608,1,1,24,0,0,0,2,2,-9,0,5,8.339832345754649,8.791224655196359,0,0,0,-1020.260174926951,0,3,3,2019,7,0,34,20,1,0,1,22.38548379713059,22.38548379713059,0,0,0,0,0,1,1,0,0,0,52.13,57.22,-9,-9,10,1,1,0,0,7,5,5,1,1068,174265.8427455614,18187.44262796512,0,0,1803.954251949739 -2048,2553,4610,-9,4612,4613,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.862246020678,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,318.25,3481.744559054066,94671.98169373296,0,0,2292.171654107714 -2048,2553,4611,-9,4612,4613,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.553677056111,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,318.25,3481.744559054066,94671.98169373296,0,0,2292.171654107714 -2048,2553,4612,4613,-9,-9,1,0,29,0,2,0,1,1,-9,0,5,7.746837904956452,7.50470469348307,0,10,-10,15.45558088964277,0,-9,-9,2019,6,0,37,0,1,0,0,5.959648440143357,5.959648440143357,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.48,50.07,8.333333333333334,1,1,0,0,1,7,3,0,318.25,3481.744559054066,94671.98169373296,0,0,2292.171654107714 -2048,2553,4613,4612,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,7.537959175858942,7.496492722844661,0,10,10,97.06906088335816,0,1,1,2019,9,0,20,40,1,0,0,8.696360756456848,8.696360756456848,0,0,0,0,27,1,1,0,0,0,52.48,50.07,57.06,57.76,6.666666666666667,4,5,0,0,5,7,3,0,318.25,3481.744559054066,94671.98169373296,0,0,2292.171654107714 -2049,2554,4614,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,8.476225160783468,8.690612757035222,9,0,23.44933844475177,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9886588714919244,8.673005411825518,47.2,34.16,56.91,49.54,3.333333333333333,1,1,0,0,0,4,4,1,1395,154220.6811251686,65656.39947043493,0,0,3042.675359193967 -2049,2555,4615,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.129416826630456,7.557027403327643,9,0,115.0409705742418,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.815899536803473,7.291532998852337,56.91,49.54,47.2,34.16,8.333333333333334,1,1,0,0,7,4,4,1,1566,671009.9427855192,122286.2822324944,188673.0760279213,0,875.3335111671903 -2050,2556,4616,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.407417655789697,7.90887288545817,0,0,0,-985.144722133365,0,1,3,2019,8,0,38,38,1,0,0,11.95701461659944,11.95701461659944,0,0,0,0,0,0,0,0,2.010088197804857,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,204,-115359.3188083473,0,0,0,1140.193457766048 -2051,2557,4617,4618,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.616872449362657,7.928269291388131,0,15,3,-57.9975076670115,0,2,2,2019,11,0,38,40,1,0,0,8.440946290815145,8.440946290815145,0,0,0,0,0,1,1,0,3.681892760175716,0,34.22,49.43,57.63,56.14,6.666666666666667,1,1,0,0,9,7,3,1,716.5,70029.08677290753,51103.44602537873,0,0,1449.63981841343 -2051,2557,4618,4617,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,0,0,0,15,-3,34.23869929734239,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,34.22,49.43,8.333333333333334,1,1,0,0,0,7,3,1,716.5,70029.08677290753,51103.44602537873,0,0,1449.63981841343 -2051,2557,4619,-9,4618,4617,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.976530660146,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,716.5,70029.08677290753,51103.44602537873,0,0,1449.63981841343 -2051,2557,4620,-9,4618,4617,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.3259302452973,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,716.5,70029.08677290753,51103.44602537873,0,0,1449.63981841343 -2052,2558,4621,4623,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.530489964998585,8.622851884069945,0,5,0,27.66523230304721,0,-9,-9,2019,13,1,40,46,1,1,0,11.96178812580194,11.96178812580194,0,0,0,0,86,1,1,0,0,0,42.64,53.5,47.71,14.7,8.333333333333334,1,1,0,0,6,6,4,0,383.3333333333333,34660.04550989662,34271.60901820815,245885.3411165826,155862.5297256238,2436.764707653847 -2052,2558,4622,-9,4623,4621,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-976.0609992927001,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,4,0,383.3333333333333,34660.04550989662,34271.60901820815,245885.3411165826,155862.5297256238,2436.764707653847 -2052,2558,4623,4621,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,7.362585498113544,7.420171056339282,0,5,0,102.1161748393607,0,2,2,2019,25,11,28,24,1,11,0,6.649270479898203,6.649270479898203,0,0,0,0,0,1,1,0,3.238385103371418,0,47.71,14.7,42.64,53.5,6.666666666666667,1,1,0,0,10,6,4,0,383.3333333333333,34660.04550989662,34271.60901820815,245885.3411165826,155862.5297256238,2436.764707653847 -2053,2559,4624,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-963.2818164672451,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,27.53,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,2591,314316.2928754564,0,0,0,0 -2054,2560,4625,-9,-9,4627,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1069.870064287496,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2054,2560,4626,4627,-9,-9,1,0,34,0,4,0,2,2,-9,0,2,0,3.786215417248398,3.523699566764273,6,-6,15.85111846972138,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.598507549543744,0,45.7,48.39,57.18,45.76,8.333333333333334,1,1,0,0,0,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2054,2560,4627,4626,-9,-9,1,1,40,0,4,0,2,2,-9,0,2,8.571429658059527,8.35950757429203,5.115074111891488,6,6,-9.841275278346396,0,2,2,2019,6,0,40,40,1,0,0,13.13213383953128,13.13213383953128,0,0,0,0,0,1,1,0,4.984137097508177,0,57.18,45.76,45.7,48.39,8.333333333333334,1,1,0,0,8,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2054,2560,4628,-9,4626,4627,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-891.7972184907313,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2054,2560,4629,-9,4626,4627,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-936.9271003359644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2054,2560,4630,-9,-9,4627,1,1,11,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1177.483087349552,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,10,3,1,1111.333333333333,138270.1205239788,27820.57993294649,252874.2075362576,73299.33053466539,2301.411391947566 -2055,2561,4631,4632,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.01654131717509,8.948415477034739,0,44,-6,5.725957643531229,0,2,3,2019,15,4,25,24,1,4,0,38.70387346806786,38.70387346806786,0,0,0,0,2,1,1,0,0,0,46.31,51.53,53.58,46.94,8.333333333333334,1,1,0,0,9,2,5,1,568,933238.9441665935,237978.1235769466,331824.7280093963,0,7992.463409378584 -2055,2561,4632,4631,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.04499470330718,6.962524272246652,0,44,6,-76.78469580853906,0,2,2,2019,6,0,3,2,1,0,0,48.7728021169631,48.7728021169631,0,0,0,0,0,1,1,0,8.837479868960763,0,53.58,46.94,46.31,51.53,6.666666666666667,1,1,0,0,9,2,5,1,568,933238.9441665935,237978.1235769466,331824.7280093963,0,7992.463409378584 -2056,2562,4633,4634,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.517757110857204,8.481832577280318,0,7,12,60.7945698900609,0,3,3,2019,7,0,40,45,1,0,0,13.84031966034172,13.84031966034172,0,0,0,0,0,0,0,0,2.036859636067215,0,51.24,58.84,41.7,60.44,1.666666666666667,1,1,0,0,8,7,4,1,2725.5,561202.5621278291,143135.8819108598,421898.4637886454,0,2422.717718757787 -2056,2562,4634,4633,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,6.365031957169228,6.089807324714333,0,7,-12,-26.10703264243461,0,2,3,2019,16,5,40,40,1,5,0,1.655541812935247,1.655541812935247,0,0,0,0,0,0,0,0,3.016171925303704,0,41.7,60.44,51.24,58.84,8.333333333333334,1,1,0,0,8,7,4,1,2725.5,561202.5621278291,143135.8819108598,421898.4637886454,0,2422.717718757787 -2057,2563,4635,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.419307512319424,7.466784696876379,5.856428794981622,0,0,-1097.99534193622,0,-9,-9,2019,7,0,24,60,1,0,0,7.058448725694823,7.058448725694823,0,0,0,0,14.5,0,0,0,0,5.833928730543938,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,1777,272200.2869494967,166271.1453236062,97321.46257898987,28460.46407432462,742.8533665774037 -2058,2564,4636,4637,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.25673850939936,8.409923112117417,0,6,14,-132.6074674830934,-9,-9,-9,2019,10,0,37,0,1,1,0,12.72485224480511,12.72485224480511,0,0,0,0,0,0,0,0,4.243465978355361,0,52,47,25.82,68.09999999999999,7,1,1,0,0,1,11,4,1,1630.5,419535.2808781285,216657.2218779505,126615.920369132,0,2554.913587074393 -2058,2564,4637,4636,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.200842684503053,8.123307805398047,0,16,-14,99.96508205399573,0,2,2,2019,24,11,37,37,1,11,0,9.677863893933234,9.677863893933234,0,0,0,0,0,0,0,0,.7156606353294365,0,25.82,68.09999999999999,52,47,3.333333333333333,1,1,0,0,6,11,4,1,1630.5,419535.2808781285,216657.2218779505,126615.920369132,0,2554.913587074393 -2059,2565,4638,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.820003689433786,5.930031446493555,0,0,-938.2553152659693,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.66611645069542,60.74,37.25,-9,-9,10,1,1,0,0,0,10,2,0,463,240869.9798216774,82630.66389211311,110736.9297858268,0,910.2814900561233 -2059,2566,4639,-9,4638,-9,1,1,52,0,0,0,2,2,-9,0,4,7.59997186227291,7.495037081050753,0,0,0,-1023.630131287601,0,2,-9,2019,9,0,25,30,1,1,0,10.33512658276522,10.33512658276522,0,0,0,0,0,1,1,0,2.987037800810357,0,53,55,-9,-9,8,1,1,0,0,1,10,3,0,494,575965.6216089816,62238.99404851611,274049.859494167,0,1305.245953012482 -2060,2567,4640,4641,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.929215565920629,9.100109682017139,0,10,5,-38.41555866369481,0,-9,-9,2019,13,2,49,43,1,2,0,23.17851324108296,23.17851324108296,0,0,0,0,0,0,0,0,3.869792757304849,0,47.01,58,47.58,56.39,3.333333333333333,1,1,0,0,8,2,5,1,402,2489419.432340214,2244362.564669216,294920.1985519656,0,3466.618023916881 -2060,2567,4641,4640,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,0,0,0,27,-5,-24.86125231603966,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,56.39,47.01,58,3.333333333333333,1,1,0,0,11,2,5,1,402,2489419.432340214,2244362.564669216,294920.1985519656,0,3466.618023916881 -2061,2568,4642,-9,-9,-9,1,1,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-968.2386068799888,0,-9,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,5.48,1,1,0,0,0,32.08,29.28,-9,-9,3.333333333333333,1,1,0,1,0,10,1,1,201,-100343.6432514941,0,0,0,889.0827354321352 -2061,2569,4643,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.066292008835236,6.587274741043101,0,0,-922.8250084820859,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,2.340524573689274,6.579981252839099,43.92,47.65,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,973,365727.7916924922,28396.10849027486,155167.4992160904,0,883.7943540381234 -2062,2570,4644,4645,-9,-9,1,1,89,0,0,0,1,1,-9,0,4,0,8.170065515276715,8.114143268891249,31,11,-101.816747321293,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.7769879982525736,7.950827699306531,54.5,43.93,57.16,56.15,8.333333333333334,1,1,0,0,0,2,4,1,1888.5,1448072.456629033,389354.8417554718,377975.3875385524,0,2943.44269579655 -2062,2570,4645,4644,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.604538719159317,6.650359526464771,31,-11,35.70745389255006,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.273499369084012,6.643530827677175,57.16,56.15,54.5,43.93,10,1,1,0,0,0,2,4,1,1888.5,1448072.456629033,389354.8417554718,377975.3875385524,0,2943.44269579655 -2063,2571,4646,4647,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,6.476636157513901,6.15572637604589,8,13,65.39110453631103,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.242237766124794,65.21000000000001,44.28,50,47,0,1,1,0,0,0,13,2,0,1267,181382.7795649481,46365.73138596731,167602.6889706005,0,1697.650518138238 -2063,2571,4647,4646,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,8,-13,48.09411383431311,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.361614797513099,0,50,47,65.21000000000001,44.28,7,1,1,0,0,0,13,2,0,1267,181382.7795649481,46365.73138596731,167602.6889706005,0,1697.650518138238 -2064,2572,4648,-9,4650,4649,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.4723686261661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,616.5,119235.0713841624,-7794.184179171749,79840.96179183948,42865.31482009411,2693.713330444067 -2064,2572,4649,4650,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,7.68554683287191,7.997568708116163,0,14,6,-69.82276373762134,0,3,3,2019,9,1,37,37,1,1,0,7.872720989003295,7.872720989003295,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.91,58.02,5,1,1,0,0,6,2,3,1,616.5,119235.0713841624,-7794.184179171749,79840.96179183948,42865.31482009411,2693.713330444067 -2064,2572,4650,4649,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,7.799276631419465,7.978821241397124,0,7,-6,.2112358880432257,0,-9,-9,2019,13,3,22,20,1,3,0,11.19357750694241,11.19357750694241,0,0,0,0,0,1,1,0,2.412843015426409,0,49.91,58.02,57.16,56.15,8.333333333333334,1,1,0,0,9,2,3,1,616.5,119235.0713841624,-7794.184179171749,79840.96179183948,42865.31482009411,2693.713330444067 -2064,2572,4651,-9,4650,4649,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.43180089329,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,616.5,119235.0713841624,-7794.184179171749,79840.96179183948,42865.31482009411,2693.713330444067 -2065,2573,4652,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,9.734495540986961,9.7154860924849,0,0,-955.3129313000379,-9,2,2,2019,10,0,0,0,4,0,0,0,0,1,124.5334787344562,0,1175.125766011212,0,1,1,0,9.203342031153538,9.812027562069831,47.98,45.38,-9,-9,6.666666666666667,1,1,0,0,0,9,5,0,937,1258782.324250256,310253.1953089484,366904.5889995286,0,12206.08486818491 -2066,2574,4653,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,5.649666497921531,5.226406090211203,0,0,-1056.133059852887,0,2,1,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.912495020813345,5.376933433265012,30.37,24.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,326,-113423.5800382681,0,0,0,1194.50733797207 -2067,2575,4654,4655,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,8,-5,-70.10566955858492,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.176654328860975,0,0,1,1,0,3.959351935823105,0,47.04,40.62,48.27,33.62,8.333333333333334,1,1,0,0,0,9,2,1,746.5,435125.9370875132,138882.1364017175,225005.3500319498,0,1358.141097428407 -2067,2575,4655,4654,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,4.971321246335824,4.794390494592283,8,5,-99.05200958972765,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.909415519191158,5.139428322931855,48.27,33.62,47.04,40.62,8.333333333333334,1,1,0,0,0,9,2,1,746.5,435125.9370875132,138882.1364017175,225005.3500319498,0,1358.141097428407 -2068,2576,4656,4657,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,8.216896825929169,7.919952989791705,0,6,2,60.41512988212722,0,2,2,2019,12,4,37,41,1,4,0,10.4163322743703,10.4163322743703,0,0,0,0,0,1,1,0,0,0,50.21,41.87,37.07,47.79,8.333333333333334,1,1,0,0,8,4,5,1,154,1134241.829181008,895823.4624856575,146354.3503887366,0,4995.251243373863 -2068,2576,4657,4656,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.098340987647275,8.998605606363475,0,6,-2,44.17132524775845,0,2,2,2019,13,1,50,48,1,1,0,24.47013079354439,24.47013079354439,0,0,0,0,0,1,1,0,5.944523999932916,0,37.07,47.79,50.21,41.87,3.333333333333333,1,1,0,0,9,4,5,1,154,1134241.829181008,895823.4624856575,146354.3503887366,0,4995.251243373863 -2069,2577,4658,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.127785833791853,6.187175667526135,0,0,-1052.945707258752,0,-9,-9,2019,19,9,0,0,4,9,0,0,0,1,26.70744915007201,3.386006727951944,256.8240762515393,0,1,1,0,0,6.409406681661641,28.79,21.04,-9,-9,8.333333333333334,3,4,0,0,0,6,2,0,2363,408452.5307477379,361478.3972787817,196134.1323228169,0,1458.336831031582 -2070,2578,4659,4661,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.639167449230101,9.637468711886298,0,10,0,-5.471615214523168,0,2,1,2019,8,0,45,46,1,0,0,43.97363044377068,43.97363044377068,0,0,0,0,0,0,0,0,2.088131870984074,0,54.2,57.49,54.5,49.13,6.666666666666667,2,3,0,0,11,4,5,1,1335.333333333333,1944556.085596883,293260.5287936397,308775.7194975067,73521.23259760744,6298.731650950253 -2070,2578,4660,-9,4659,4661,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.2952612915025,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,1335.333333333333,1944556.085596883,293260.5287936397,308775.7194975067,73521.23259760744,6298.731650950253 -2070,2578,4661,4659,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.378827999211593,8.409401470798921,0,9,0,60.22204579377077,0,-9,-9,2019,13,1,55,70,1,1,0,13.34484555468165,13.34484555468165,0,0,0,0,0,0,0,0,0,0,54.5,49.13,54.2,57.49,6.666666666666667,1,1,0,0,7,4,5,1,1335.333333333333,1944556.085596883,293260.5287936397,308775.7194975067,73521.23259760744,6298.731650950253 -2071,2579,4662,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.180478856290435,9.062270424584382,0,0,0,-994.5433292504173,0,-9,2,2019,6,0,40,40,1,0,0,30.30456991094358,30.30456991094358,0,0,0,0,0,1,1,0,5.840631071399709,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,418,-86344.08255368625,-23567.4466868282,260776.8801322571,176135.6192860299,3736.320821317624 -2072,2580,4663,4664,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.628485565105164,8.559132155747642,0,40,1,-26.88670037995962,0,3,3,2019,9,0,40,43,1,0,0,17.06141971810785,17.06141971810785,0,0,0,0,0,0,0,0,1.060067340751298,0,54.96,53.17,46.08,57.2,5,1,1,0,0,9,2,4,1,1446,1654668.609735817,735803.7754389988,479216.5508072731,0,2232.701556348203 -2072,2580,4664,4663,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.528942205317385,6.780791800122802,40,-1,55.86503552864115,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,.3534718239802982,6.643662111069653,46.08,57.2,54.96,53.17,5,1,1,0,0,9,2,4,1,1446,1654668.609735817,735803.7754389988,479216.5508072731,0,2232.701556348203 -2073,2581,4665,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.8168982757857,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,.5283499610013571,0,0,1,1,0,.5638839315463359,0,48.67,39.92,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,438,-122465.1882271912,0,0,0,1392.702187260621 -2073,2582,4666,-9,4665,-9,1,1,45,0,0,0,1,1,-9,0,4,8.177779851146976,7.980522972860011,0,0,0,-1103.024368516262,0,3,-9,2019,9,0,40,40,1,1,0,9.634063203273206,9.634063203273206,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,2,4,1,1611,277561.1446677782,-14296.97486027618,90192.51764613297,44757.39089433642,1355.902062901334 -2074,2583,4667,4668,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.51537304055636,7.244868419958626,4,6,95.13303859844429,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.899348558296811,7.469334005290447,54.13,48.04,55.59,43.19,8.333333333333334,1,1,0,0,0,2,3,1,419,801262.0614327927,158425.3847597102,280052.9461084996,0,4402.969773127648 -2074,2583,4668,4667,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.984065066746908,6.80900470560004,4,-6,-46.24049726839559,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.836729685918601,6.833250017638243,55.59,43.19,54.13,48.04,8.333333333333334,1,1,0,0,0,2,3,1,419,801262.0614327927,158425.3847597102,280052.9461084996,0,4402.969773127648 -2075,2584,4669,4670,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,9,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,45,54,46,8,1,1,0,0,0,13,1,1,1435.5,304553.1868835975,22843.39401966627,202040.8678426674,-3470.062185889408,1685.918887971476 -2075,2584,4670,4669,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,9,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,25.99858030175219,17.47726814138527,253.2569630945832,0,1,1,0,0,0,54,46,51,45,8,1,1,0,0,0,13,1,1,1435.5,304553.1868835975,22843.39401966627,202040.8678426674,-3470.062185889408,1685.918887971476 -2075,2585,4671,-9,4669,4670,1,0,48,0,0,0,2,2,-9,0,3,8.371169677792114,8.141240571682477,0,0,0,-1154.627417763975,0,3,3,2019,24,12,38,36,1,12,0,10.89518958167451,10.89518958167451,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,1,1,0,0,10,13,4,1,501,-119536.3389988584,-102869.5196460227,87865.51884559052,72090.82829960974,1304.228481869141 -2075,2586,4672,-9,4671,-9,1,0,24,0,0,0,1,1,-9,0,4,8.572092988910027,8.346689893435906,0,0,0,-930.0582260511878,0,2,-9,2019,12,0,36,37,1,2,1,14.64755132767299,14.64755132767299,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,3,13,4,1,480,40958.22752573037,196861.6314431799,0,0,1675.763200113333 -2075,2587,4673,-9,4671,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1102.016633143488,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,1,1,578,80588.20176664827,0,0,0,0 -2076,2588,4674,4675,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.721955178063006,8.680428102067721,0,14,2,31.2434560894896,0,-9,-9,2019,14,2,54,45,1,2,0,11.7760770942689,11.7760770942689,0,0,0,0,0,0,0,0,0,0,25.96,62.34,25.33,61.71,6.666666666666667,1,1,0,0,10,8,5,1,809,406936.993536679,-62775.28711852137,315796.7123831533,0,2654.801240378155 -2076,2588,4675,4674,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.383894301888203,7.625451358366789,0,9,-2,43.21332376323659,0,2,1,2019,9,0,35,40,1,0,0,5.782316349789944,5.782316349789944,0,0,0,0,0,0,0,0,3.058374018470987,0,25.33,61.71,25.96,62.34,3.333333333333333,4,5,0,0,7,8,5,1,809,406936.993536679,-62775.28711852137,315796.7123831533,0,2654.801240378155 -2077,2589,4676,4677,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.016283976085417,7.10517885195964,0,44,1,-77.60927299594242,0,3,2,2019,10,1,60,60,1,1,0,1.966300878080734,1.966300878080734,0,0,0,0,0,1,1,0,0,0,44.43,56.74,57.06,57.76,8.333333333333334,1,1,0,0,8,5,2,0,368,622023.553677002,-11403.23475167776,477055.0095329665,80055.97947475688,2654.713795990599 -2077,2589,4677,4676,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.427923545662623,6.148047027342241,44,-1,154.9542746646843,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.407914746813284,6.120175197296049,57.06,57.76,44.43,56.74,8.333333333333334,1,1,0,0,7,5,2,0,368,622023.553677002,-11403.23475167776,477055.0095329665,80055.97947475688,2654.713795990599 -2078,2590,4678,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.029325554923028,8.23940167937155,0,0,0,-937.6265014824238,0,3,2,2019,19,6,30,20,1,6,0,8.697702763323582,8.697702763323582,0,0,0,0,14.5,1,1,0,0,0,29.71,64.88,-9,-9,1.666666666666667,3,4,0,1,8,8,4,0,332,-56365.03726384506,94421.91837398933,0,0,1755.232770864356 -2079,2591,4679,-9,4681,4682,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.9857864320227,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1082.25,-22364.57444897164,24661.64134358761,136133.1003456967,101948.6505729812,2529.778043058983 -2079,2591,4680,-9,4681,4682,1,1,10,1,2,1,3,0,-9,0,2,0,0,0,0,0,-1098.969757592162,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,46,-9,-9,5,4,2,-9,0,0,7,3,0,1082.25,-22364.57444897164,24661.64134358761,136133.1003456967,101948.6505729812,2529.778043058983 -2079,2591,4681,4682,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,4,-3,-64.0653250521372,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44,52,39.15,41.42,5,1,1,0,0,0,7,3,0,1082.25,-22364.57444897164,24661.64134358761,136133.1003456967,101948.6505729812,2529.778043058983 -2079,2591,4682,4681,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.528205013403934,8.206515097518047,0,4,3,15.31356215274015,0,2,2,2019,15,3,45,45,1,3,0,11.17230717630053,11.17230717630053,0,0,0,0,0,1,1,0,1.621297383119355,0,39.15,41.42,44,52,6.666666666666667,1,1,0,0,9,7,3,0,1082.25,-22364.57444897164,24661.64134358761,136133.1003456967,101948.6505729812,2529.778043058983 -2080,2592,4683,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.535043672953234,8.430204003703686,8.50832712129171,2,-1,105.2828071470805,0,-9,-9,2019,16,4,15,15,1,4,0,17.34189067836389,17.34189067836389,0,0,0,0,0,0,0,0,9.065332843378059,0,32.94,56.52,50.32,46.8,8.333333333333334,1,1,0,0,12,6,4,1,569,20085.56954608184,71044.66124097296,0,0,3099.088341198863 -2080,2593,4684,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,4.211170938429746,4.591997852796986,0,2,1,82.74785828747086,0,-9,-9,2019,9,0,5,12,1,0,0,1.844865628613585,1.844865628613585,0,0,0,2.125412899238988,0,0,0,0,0,0,50.32,46.8,32.94,56.52,8.333333333333334,1,1,0,0,2,6,4,1,785,114729.3574359217,0,0,0,-557.6067822113043 -2081,2594,4685,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.431129434997767,7.356961510225097,0,0,0,-1032.74254032313,0,3,2,2019,13,2,48,40,1,2,0,4.132136845861687,4.132136845861687,0,0,0,0,2,0,0,0,7.458576920830742,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,358,696288.5521082472,133621.0258240158,505122.7994859008,18267.1694586638,1885.048890334279 -2082,2595,4686,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.870837512821544,7.925360210019202,0,0,0,-994.195263053104,0,3,2,2019,10,1,49,39,1,1,0,6.467077527956346,6.467077527956346,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,274,68486.55552971843,-35603.32904051975,0,0,253.2573184541117 -2082,2596,4687,-9,4686,-9,1,0,23,0,0,0,1,1,-9,0,3,7.621796839876684,7.577157368252254,0,0,0,-991.7147248541504,0,2,-9,2019,5,0,44,44,1,0,1,6.311891309026797,6.311891309026797,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,12,3,0,282,-9156.978361949747,11999.76107745766,0,0,1374.720864806539 -2083,2597,4688,4689,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.722184517227684,7.942072214654355,0,36,-10,-40.13492867935376,0,3,3,2019,18,5,37,37,1,5,0,5.866745698919378,5.866745698919378,0,0,0,0,2,0,0,0,0,0,46.66,34,57.57,49.69,5,3,4,0,0,8,10,4,1,436.5,442283.6996110942,333190.3347026393,287685.1867370312,0,2560.847584380688 -2083,2597,4689,4688,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.709891713587789,8.196057938456436,6.596698579867848,7,10,49.22304335283005,0,-9,-9,2019,10,0,40,37,1,0,0,6.202669060779278,6.202669060779278,0,0,0,0,0,0,0,0,0,6.546373357988587,57.57,49.69,46.66,34,6.666666666666667,3,4,0,0,6,10,4,1,436.5,442283.6996110942,333190.3347026393,287685.1867370312,0,2560.847584380688 -2084,2598,4690,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.903968583046105,6.673928654689952,0,0,-954.2615657817812,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.891215938292713,44.31,21.85,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,326,438675.4505730278,138157.0803986136,76803.86889109788,0,1546.897361967075 -2085,2599,4691,4692,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,54,-3,-8.491896555327353,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.231796512799903,0,48.76,53.24,47.52,57.75,10,1,1,0,0,0,5,2,1,1123.5,382568.4914355337,0,202384.7571129906,0,1524.45569573948 -2085,2599,4692,4691,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.478243045240022,6.493677689359261,54,3,74.3702011853605,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.514792475759458,6.68320327582263,47.52,57.75,48.76,53.24,8.333333333333334,1,1,0,0,0,5,2,1,1123.5,382568.4914355337,0,202384.7571129906,0,1524.45569573948 -2086,2600,4693,4694,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,9.974496819439262,10.20588020211345,10,9,41.37996663856345,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,1,0,73.22445175406527,0,0,1,1,0,3.432949574651761,9.737976853270757,42.72,29.56,22.29,32.88,5,1,1,0,0,0,12,5,1,470.5,3732170.207191726,2624304.990164764,818395.4123064388,0,14597.8766647946 -2086,2600,4694,4693,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.506459072509303,6.272353249633077,10,0,-20.01627551626396,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,4.975327444516677,6.348825940479643,22.29,32.88,42.72,29.56,1.666666666666667,1,1,0,0,0,12,5,1,470.5,3732170.207191726,2624304.990164764,818395.4123064388,0,14597.8766647946 -2087,2601,4695,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.634869459144634,7.449636640498323,0,0,-1035.183650901951,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.386341929790619,7.115757643033213,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,148,672205.8177730977,280218.6973893879,349765.7435486109,0,2112.093337906501 -2088,2602,4696,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,7.315794323725417,8.247608365432342,7.280943233330558,0,0,-1036.38760410153,0,3,3,2019,1,0,19,20,1,0,0,8.877065008920829,8.877065008920829,0,0,0,0,0,1,1,0,6.816722013142527,6.211439592670291,66.36,43.76,-9,-9,10,1,1,0,0,7,2,3,1,1177,-145000.4912309677,0,0,0,2186.815913362862 -2088,2602,4697,-9,4696,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.745175740183,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,1177,-145000.4912309677,0,0,0,2186.815913362862 -2088,2603,4698,-9,4696,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-876.4574112823535,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.93,51.72,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,469,4116.557144888313,0,0,0,-570.3963169922982 -2089,2604,4699,-9,4700,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.6774904843663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,3,0,462.5,71250.20921778932,-19623.34252272866,0,0,2207.878990424393 -2089,2604,4700,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.674497549079049,7.652646378663314,0,0,0,-1059.925377999202,0,1,1,2019,10,1,24,24,1,1,0,9.798832482684178,9.798832482684178,0,0,0,0,0,1,1,0,0,0,47.62,34.93,-9,-9,5,4,2,0,0,9,10,3,0,462.5,71250.20921778932,-19623.34252272866,0,0,2207.878990424393 -2090,2605,4701,4702,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.576015093689686,7.503420127156043,6.007437299784058,8,7,-59.09520529614068,0,3,2,2019,13,2,35,50,1,2,0,5.636750923386605,5.636750923386605,0,0,0,0,0,0,0,0,1.506828445948061,5.989059039386002,41.13,58.45,33.01,63.17,6.666666666666667,1,1,0,0,10,7,3,1,1929.5,305095.0289665904,247952.5865032302,228421.3005432258,0,958.4269206594497 -2090,2605,4702,4701,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,8,-7,-70.7547298273342,0,-9,-9,2019,12,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,41.13,58.45,8.333333333333334,1,1,0,0,5,7,3,1,1929.5,305095.0289665904,247952.5865032302,228421.3005432258,0,958.4269206594497 -2091,2606,4703,-9,4705,4704,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.1835549754342,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,9,5,1,689.3333333333334,3427867.083134729,1603563.239475491,725160.473607196,0,5142.304109234853 -2091,2606,4704,4705,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,9.351415450997065,8.868850103666633,0,34,-1,22.08894098687259,0,3,2,2019,7,1,49,44,1,1,0,25.54780908691864,25.54780908691864,0,0,0,0,0,1,1,0,7.176537756213033,0,55.36,54.24,46.41,48.82,8.333333333333334,1,1,0,0,7,9,5,1,689.3333333333334,3427867.083134729,1603563.239475491,725160.473607196,0,5142.304109234853 -2091,2606,4705,4704,-9,-9,1,0,58,0,1,0,1,1,-9,0,3,6.882080027968383,6.828708166275884,0,34,1,47.86079940258835,0,2,2,2019,13,1,17,14,1,1,0,9.76493575170344,9.76493575170344,0,0,0,0,2,1,1,0,2.891684008249892,0,46.41,48.82,55.36,54.24,3.333333333333333,1,1,0,0,7,9,5,1,689.3333333333334,3427867.083134729,1603563.239475491,725160.473607196,0,5142.304109234853 -2091,2607,4706,-9,4705,4704,1,0,29,0,1,0,1,1,0,0,3,0,0,0,0,0,-911.6466520595463,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,337,-46844.23056734891,0,0,0,676.3953630364574 -2091,2608,4707,4708,-9,-9,1,1,29,0,1,0,1,1,1,0,4,7.417222690834891,7.372682638672872,0,6,3,-96.13067213148246,-9,2,2,2019,15,3,23,0,1,3,0,7.670850663880193,7.670850663880193,0,0,0,0,0,1,1,0,0,0,35.63,62.19,45.38,53.41,3.333333333333333,1,1,0,0,5,9,4,1,468.5,287921.3625229075,64702.48372636366,202820.2710896455,0,2973.149449739405 -2091,2608,4708,4707,4705,4704,1,0,26,0,1,0,1,1,1,0,3,8.506051175018925,8.101586709608819,0,6,-3,17.21712303299583,-9,1,2,2019,5,0,42,0,1,0,0,9.624586918049442,9.624586918049442,0,0,0,0,0,1,1,0,0,0,45.38,53.41,35.63,62.19,5,1,1,0,0,5,9,4,1,468.5,287921.3625229075,64702.48372636366,202820.2710896455,0,2973.149449739405 -2091,2609,4709,-9,4705,4704,1,1,21,0,1,0,2,2,1,0,4,7.598239484335333,7.599637070477608,0,0,0,-1032.201203100409,-9,1,2,2019,10,1,30,0,1,1,1,5.99156553497538,5.99156553497538,0,0,0,0,0,1,1,0,0,0,41.76,57.81,-9,-9,6.666666666666667,1,1,0,0,6,9,3,1,54,244994.3607106385,0,0,0,1279.688081830862 -2091,2610,4710,-9,4705,4704,1,0,19,0,1,0,2,2,1,0,3,5.880755304823998,6.137694910315017,0,0,0,-1120.119405510109,-9,1,2,2019,13,2,48,0,1,2,1,.8593058056162369,.8593058056162369,0,0,0,0,0,1,1,0,0,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,639,0,0,0,0,484.5768263804751 -2092,2611,4711,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.510515394306182,8.586850971969533,5.522145372923243,0,0,-1101.679166348109,0,2,2,2019,20,9,42,41,1,9,0,15.17618189710238,15.17618189710238,0,0,0,0,7,1,1,0,0,5.721565093453838,40.01,34.68,-9,-9,3.333333333333333,1,1,0,0,12,7,5,1,950,834276.8972523973,440194.9236723093,371614.4469293965,34946.30339015595,2073.008506786943 -2093,2612,4712,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,8.297188651410664,8.294577810106478,0,0,0,-1083.649849692333,0,-9,-9,2019,10,0,50,60,1,0,0,8.788903225518773,8.788903225518773,0,0,0,0,0,0,0,0,0,0,39.15,41.42,-9,-9,5,1,1,0,0,11,9,4,1,643,331344.1995059204,379.6880492769815,203130.0397647695,62956.63196703086,1781.224612181911 -2094,2613,4713,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1001.272990883877,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,-9,-9,3.333333333333333,1,1,0,0,11,1,1,1,1357,37960.61078848597,0,0,0,265.152632662548 -2095,2614,4714,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,9.891022161430277,9.425034906144148,0,0,0,-1071.113256102409,0,2,2,2019,6,0,47,47,1,0,0,36.54010530204905,36.54010530204905,0,0,0,0,0,0,0,0,4.412113980132631,0,60.29,52.11,-9,-9,1.666666666666667,1,1,0,0,9,7,5,1,1432,79973.77334384782,-8918.128443701982,0,0,5415.135205238216 -2096,2615,4715,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.846317096015746,7.907200804314267,0,0,-942.6389767701021,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.186081996351852,7.875328755117806,48.45,57.49,-9,-9,10,1,1,0,0,0,10,3,1,364,562712.1902994517,37868.01504732267,189032.7436330528,0,1992.430895758862 -2097,2616,4716,-9,4717,4719,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-947.1712157178862,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,2,1,318.75,1933240.825836135,46542.36884840183,841613.3694434416,287244.511392121,8652.179518633542 -2097,2616,4717,4719,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.145758789395967,7.091270986237572,0,8,0,-54.88007898796228,0,2,1,2019,16,5,16,15,1,5,0,8.566425129493885,8.566425129493885,0,0,0,0,0,1,1,0,8.450667637180697,0,41.22,37.77,57.16,56.15,6.666666666666667,1,1,0,0,11,7,2,1,318.75,1933240.825836135,46542.36884840183,841613.3694434416,287244.511392121,8652.179518633542 -2097,2616,4718,-9,4717,4719,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.7112439296245,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,318.75,1933240.825836135,46542.36884840183,841613.3694434416,287244.511392121,8652.179518633542 -2097,2616,4719,4717,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.057070282643504,7.457781609997844,0,8,0,59.17576306796764,0,-9,-9,2019,9,0,77,100,1,0,0,1.84888804918263,1.84888804918263,0,0,0,0,0,1,1,0,8.95599878833711,0,57.16,56.15,41.22,37.77,3.333333333333333,1,1,0,0,12,7,2,1,318.75,1933240.825836135,46542.36884840183,841613.3694434416,287244.511392121,8652.179518633542 -2098,2617,4720,4721,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.785964711526041,8.04574154680417,5.780882998835418,6,-4,37.55890963308121,0,-9,-9,2019,10,0,40,60,1,1,0,6.492483968104545,6.492483968104545,0,0,0,0,0,1,1,0,5.361601690489092,5.805034061297115,51,54,44.89,53.77,8,2,3,0,0,1,8,5,1,270,2735366.457837687,2498674.382995039,343221.0630688333,114774.2296508579,4549.36237011923 -2098,2617,4721,4720,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.911335639272581,8.77199437950522,6.41412678120525,27,4,-20.43178418538931,0,3,3,2019,8,1,60,55,1,1,0,13.3905588618523,13.3905588618523,0,0,0,0,0,1,1,0,0,6.43087585223327,44.89,53.77,51,54,5,2,3,0,0,7,8,5,1,270,2735366.457837687,2498674.382995039,343221.0630688333,114774.2296508579,4549.36237011923 -2098,2617,4722,-9,4720,4721,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.818393534114,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,5.48,1,1,0,1.481273062387487,0,55.98,51.39,-9,-9,6.666666666666667,2,3,0,0,0,8,5,1,270,2735366.457837687,2498674.382995039,343221.0630688333,114774.2296508579,4549.36237011923 -2098,2618,4723,4724,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,6,3,43.46128776170546,0,-9,-9,2019,9,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,46.87,43.13,8,2,3,1,0,0,8,3,1,298.5,600834.253011096,62731.54336111118,494795.197661855,0,2191.655892352596 -2098,2618,4724,4723,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.560740239792262,7.84532064044378,0,6,-3,-60.12500047955429,0,-9,-9,2019,1,0,38,40,1,0,0,5.899887775607205,5.899887775607205,0,0,0,0,0,1,1,0,0,0,46.87,43.13,53,55,8.333333333333334,2,3,0,0,4,8,3,1,298.5,600834.253011096,62731.54336111118,494795.197661855,0,2191.655892352596 -2098,2619,4725,-9,4720,4721,1,1,23,0,0,0,2,2,-9,0,4,7.577526829141206,7.719372074476802,0,0,0,-1036.761453933226,0,1,2,2019,10,0,40,40,1,1,1,7.034062604714348,7.034062604714348,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,1,1289,140585.5730284995,0,0,0,1312.328472192046 -2098,2620,4726,-9,4724,4723,1,1,21,0,0,0,2,2,-9,0,5,7.4941891504713,7.671310830533913,0,0,0,-1051.482623076799,0,2,3,2019,14,2,45,40,1,2,1,6.073452647587049,6.073452647587049,0,0,0,0,0,1,1,0,5.278475321586697,0,49.65,38.19,-9,-9,6.666666666666667,2,3,0,0,3,8,3,1,1758,70519.22971165874,0,0,0,1382.46585335809 -2098,2621,4727,-9,4724,4723,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-841.3863560162904,1,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.460700973264447,0,48.66,54.86,-9,-9,6.666666666666667,2,3,0,0,2,8,1,1,327,0,0,0,0,-123.5536980756555 -2099,2622,4728,-9,-9,-9,1,0,51,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1048.969764880442,0,3,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.03,40.6,-9,-9,6.666666666666667,4,2,0,0,3,8,1,0,1041,0,0,0,0,369.7445459779098 -2099,2623,4729,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,0,0,0,0,0,-928.1461778650342,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.24,37.95,-9,-9,6.666666666666667,1,1,0,1,9,8,1,0,673,50816.97567907301,0,0,0,824.7034299753839 -2100,2624,4730,4731,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.466668935443929,8.480564508940734,0,7,0,38.54152517640475,0,2,2,2019,6,0,36,36,1,0,0,18.02717575720551,18.02717575720551,0,0,0,0,0,1,1,0,2.708894716284817,0,51.83,57.2,51.41,45.62,8.333333333333334,1,1,0,0,8,2,4,1,841.25,364175.6142037729,316331.3540171915,211494.6760526791,151082.1848227429,2798.836330526654 -2100,2624,4731,4730,-9,-9,1,1,47,1,2,0,1,1,-9,0,2,8.043139129367557,8.139407279764292,0,7,9,175.8815448923984,0,-9,-9,2019,10,0,26,37,1,0,0,16.00714313040106,16.00714313040106,0,0,0,0,0,1,1,0,0,0,51.41,45.62,51.83,57.2,8.333333333333334,1,1,0,0,8,2,4,1,841.25,364175.6142037729,316331.3540171915,211494.6760526791,151082.1848227429,2798.836330526654 -2100,2624,4732,-9,4730,4731,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.7154967531384,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,841.25,364175.6142037729,316331.3540171915,211494.6760526791,151082.1848227429,2798.836330526654 -2100,2624,4733,-9,4730,4731,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.3646635811924,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,841.25,364175.6142037729,316331.3540171915,211494.6760526791,151082.1848227429,2798.836330526654 -2101,2625,4734,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-999.5787234324318,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,29.86,20.5,-9,-9,0,1,1,0,1,0,5,1,0,389,113224.1245436711,0,0,0,423.3034528990893 -2101,2626,4735,-9,-9,-9,1,1,19,0,0,0,3,3,-9,0,4,7.958904793659594,7.98912607048447,0,0,0,-1015.03880974401,-9,-9,-9,2019,10,0,40,0,1,2,0,6.759732325073774,6.759732325073774,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,3,0,6645,-4276.405207299522,137139.7298483555,0,0,1057.269845178528 -2102,2627,4736,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.810592540174378,8.946310177261235,0,0,0,-1023.629853848558,0,2,3,2019,18,6,37,39,1,6,0,26.71718593712112,26.71718593712112,0,0,0,0,0,0,0,0,0,0,43.82,34.3,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,1536,1258900.465101508,152528.9603106816,937838.4263310205,0,2693.7673243691 -2103,2628,4737,4739,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.871674373227711,8.147946734737856,0,22,-1,-17.40292127681187,0,3,3,2019,13,2,28,27,1,2,0,11.13435556259251,11.13435556259251,0,0,0,0,0,1,1,0,0,0,44.83,55.13,53.64,48.41,6.666666666666667,1,1,0,0,11,11,5,1,1784,691485.3256754433,508401.571009969,288716.6007237713,111458.9761909421,3556.323523239645 -2103,2628,4738,-9,4737,4739,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-895.7368870442007,-9,1,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,5,1,1784,691485.3256754433,508401.571009969,288716.6007237713,111458.9761909421,3556.323523239645 -2103,2628,4739,4737,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.616289572592716,8.711638454800093,0,22,1,-51.57889025371988,0,3,3,2019,9,1,62,44,1,1,0,10.13816106527209,10.13816106527209,0,0,0,0,0,1,1,0,4.198545468902598,0,53.64,48.41,44.83,55.13,8.333333333333334,1,1,0,0,12,11,5,1,1784,691485.3256754433,508401.571009969,288716.6007237713,111458.9761909421,3556.323523239645 -2103,2628,4740,-9,4737,4739,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1037.603978039166,0,1,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,0,0,1,11,5,1,1784,691485.3256754433,508401.571009969,288716.6007237713,111458.9761909421,3556.323523239645 -2104,2629,4741,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-987.8142731286596,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.27,39.44,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,140,118690.8762651986,0,0,0,650.3261340417373 -2105,2630,4742,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.640055725896936,7.536653719270619,6.046047866422275,0,0,-947.5269198473545,0,3,3,2019,10,0,30,28,1,0,0,6.846913212939818,6.846913212939818,0,0,0,0,0,1,1,0,0,5.91771989233043,62.42,42.94,-9,-9,10,1,1,0,0,10,2,3,0,1904,-66482.86422346866,-108795.9971567974,167367.9442919409,42845.23172061378,1038.162911792865 -2106,2631,4743,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.782417167640549,6.999826396425601,0,0,-881.1240327188762,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.233744928683566,6.855745496833798,25.26,60.58,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,2151,491672.4202017038,55024.99140600323,96416.6756379118,0,2315.351556643215 -2107,2632,4744,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.136852214793221,6.697543407832887,0,0,-1044.28991558819,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.301402735715569,7.025402932895211,42.85,38.11,-9,-9,1.666666666666667,1,1,0,0,0,1,2,1,1258,200439.440093628,54065.52877044246,0,0,698.8954499936824 -2108,2633,4745,4746,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.929512885224751,7.887211891986309,40,7,-9.214694084347137,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.314017948676103,7.799935478002687,43.57,47.42,55.59,26.79,8.333333333333334,2,3,0,0,0,8,3,1,1039,1424946.488542303,592174.9200084785,498854.580044376,0,1637.141381935563 -2108,2633,4746,4745,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,40,-7,-45.18462351573826,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,26.79,43.57,47.42,6.666666666666667,2,3,0,1,0,8,3,1,1039,1424946.488542303,592174.9200084785,498854.580044376,0,1637.141381935563 -2108,2634,4747,-9,4746,4745,1,0,35,0,0,0,1,1,-9,0,4,7.389196341817555,7.515594886743119,0,0,0,-959.9196077186357,0,2,2,2019,11,0,38,38,1,2,1,5.075020062993116,5.075020062993116,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,3,1,681,-142374.8170891037,0,97563.09176558864,98141.78917925336,1074.232551336766 -2109,2635,4748,4749,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,66,1,66.8977100126086,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,73.79680919811759,0,0,1,1,0,0,0,46.64,42.72,55.95,39.4,8.333333333333334,1,1,0,0,0,9,2,1,476,456686.0743895043,116247.0148992343,286270.8195861327,0,1406.214657337784 -2109,2635,4749,4748,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.596559472166981,6.146965318949127,66,-1,99.50158664758931,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.678237662448397,55.95,39.4,46.64,42.72,8.333333333333334,1,1,0,0,5,9,2,1,476,456686.0743895043,116247.0148992343,286270.8195861327,0,1406.214657337784 -2110,2636,4750,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,3.010543134051691,3.266296378291107,0,0,-880.7460347351483,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,3.628184873774063,3.216092084743666,30.6,18.53,-9,-9,0,1,1,0,0,0,10,2,0,1586,-54193.22582511866,0,0,0,1669.374265127971 -2111,2637,4751,4752,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,0,0,0,4,7,-112.7340051951376,0,-9,-9,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,2.018702207132194,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,1,2,0,822,-102434.3093509645,-15476.13900647816,0,0,2688.857134793502 -2111,2637,4752,4751,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,8.007866205611801,7.840077165304515,0,4,-7,-91.55038447630953,0,-9,-9,2019,12,0,37,0,1,0,0,7.816424986497208,7.816424986497208,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,1,2,0,822,-102434.3093509645,-15476.13900647816,0,0,2688.857134793502 -2111,2637,4753,-9,4752,4751,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.404846314432,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,822,-102434.3093509645,-15476.13900647816,0,0,2688.857134793502 -2112,2638,4754,4755,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.210175083599767,8.176443799619484,0,13,-8,1.328367328207165,0,3,2,2019,19,8,32,40,1,8,0,11.64846551860903,11.64846551860903,0,0,0,0,0,1,1,0,6.83348499229667,0,35.73,63.1,54.37,54.8,6.666666666666667,1,1,0,0,8,2,5,1,344.5,426261.1057842647,92931.54388584694,499258.2255859156,219803.1403358071,3328.813499480901 -2112,2638,4755,4754,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.210094870369597,8.081993177210189,0,7,8,16.14549223988142,0,-9,-9,2019,9,0,32,40,1,0,0,10.58503890400573,10.58503890400573,0,0,0,0,0,1,1,0,2.931623403621596,0,54.37,54.8,35.73,63.1,8.333333333333334,1,1,0,0,8,2,5,1,344.5,426261.1057842647,92931.54388584694,499258.2255859156,219803.1403358071,3328.813499480901 -2112,2639,4756,-9,4754,4755,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-967.5391350937417,0,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,1.03109987457053,0,47,57,-9,-9,7,1,1,1,0,0,2,1,1,244,0,0,0,0,-102.6846432665722 -2112,2640,4757,-9,4754,4755,1,1,29,0,0,0,2,2,0,0,4,0,0,0,0,0,-1078.300916598155,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,4.766959584173414,0,49,58,-9,-9,7,1,1,0,0,0,2,1,1,99,60114.86741992639,0,0,0,276.0659459403104 -2113,2641,4758,4759,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.545421961723685,6.889993800034166,40,8,-57.15350849829368,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.379483488663483,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,0,1,2,1,1013.5,494213.3962103742,326131.4202762764,91738.93835529263,0,1998.935833596555 -2113,2641,4759,4758,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.710659576853598,5.756488598258362,40,-8,16.2643938482162,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.655220869089796,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,1013.5,494213.3962103742,326131.4202762764,91738.93835529263,0,1998.935833596555 -2114,2642,4760,4761,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.150592275352601,7.928400543262345,0,1,0,27.27624019670277,-9,-9,-9,2019,10,0,38,0,1,1,0,8.992812557175199,8.992812557175199,0,0,0,0,0,0,0,0,3.949358373731253,0,51,54,62.27,42.94,8,4,1,0,0,1,9,4,1,1045.5,1267354.737074587,284590.0349971072,833845.0932316687,0,2363.759635000346 -2114,2642,4761,4760,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.064006915395378,8.442202299933246,0,1,0,-2.60733535988468,-9,3,3,2019,7,1,60,0,1,1,0,7.650536122095815,7.650536122095815,0,0,0,0,0,0,0,0,0,0,62.27,42.94,51,54,8.333333333333334,1,1,0,0,8,9,4,1,1045.5,1267354.737074587,284590.0349971072,833845.0932316687,0,2363.759635000346 -2115,2643,4762,-9,4766,4764,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.0070036948546,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,505.4,46946.17992864085,0,0,0,1840.168616813836 -2115,2643,4763,-9,4766,4764,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-805.5581921178124,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,505.4,46946.17992864085,0,0,0,1840.168616813836 -2115,2643,4764,4766,4767,-9,1,1,45,0,3,0,3,3,-9,0,4,7.420503537217042,7.407144541947175,0,10,11,-63.36477464619863,0,3,3,2019,9,0,24,24,1,1,0,7.880352031742554,7.880352031742554,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,2,3,0,0,13,8,2,0,505.4,46946.17992864085,0,0,0,1840.168616813836 -2115,2643,4765,-9,4766,4764,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-959.4504258786957,-9,2,3,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,505.4,46946.17992864085,0,0,0,1840.168616813836 -2115,2643,4766,4764,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,10,-11,43.02292192189987,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,2,3,0,0,0,8,2,0,505.4,46946.17992864085,0,0,0,1840.168616813836 -2115,2644,4767,-9,-9,-9,1,0,78,0,3,0,3,3,-9,0,3,0,0,0,0,0,-987.10689426029,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,2,3,0,0,0,8,1,0,388,333628.3938483356,0,324749.5238448885,0,1731.20713505239 -2116,2645,4768,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.347920940153698,7.106273364220925,4.541251231260675,0,0,-895.8907552753585,0,3,-9,2019,13,2,30,28,1,2,0,8.120411408159592,8.120411408159592,0,0,0,0,0,0,0,0,0,5.10905265102298,42.7,51.67,-9,-9,5,1,1,0,1,10,11,3,1,926,-31462.05397505754,10278.5395393886,0,0,1200.728995350323 -2116,2646,4769,-9,4768,-9,1,0,28,0,0,0,2,2,-9,0,1,6.545326652665673,6.497163489398798,0,0,0,-1090.318084119836,0,2,2,2019,13,1,22,22,1,1,1,4.241977842314486,4.241977842314486,0,0,0,0,0,0,0,0,0,0,52.71,36.99,-9,-9,3.333333333333333,1,1,0,1,7,11,2,1,344,154069.5244032807,0,0,0,446.7788973284235 -2116,2647,4770,-9,4768,-9,1,0,23,0,0,0,2,2,-9,0,3,7.970729339636362,7.892611008540083,0,0,0,-933.9223591334455,0,2,2,2019,12,0,52,47,1,0,1,6.369303926075924,6.369303926075924,0,0,0,0,0,0,0,0,0,0,43.87,41.89,-9,-9,6.666666666666667,1,1,0,0,4,11,4,1,1025,-6676.121115898588,29538.89088383274,0,0,936.3247034519591 -2117,2648,4771,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1051.499428345809,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,1.683168905597122,0,0,1,1,0,0,0,58.22,40.76,-9,-9,10,1,1,0,0,0,2,1,0,444,109378.9992609938,0,51777.11868788001,0,1885.867799379226 -2118,2649,4772,4773,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,2.225695411389979,2.410002539951474,58,3,-2.783233555397552,0,3,-9,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.60378604617622,2.527128208140811,36.44,41.5,59.24,40.21,8.333333333333334,1,1,0,0,0,6,2,1,2029,62847.35384130889,0,209206.7766385702,0,1204.561769158052 -2118,2649,4773,4772,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,58,-3,-76.96211878506713,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.24,40.21,36.44,41.5,5,1,1,0,0,2,6,2,1,2029,62847.35384130889,0,209206.7766385702,0,1204.561769158052 -2119,2650,4774,4775,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.501801529092589,8.007605919488581,8,0,-26.26022745461446,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.387024271301125,8.449535230745308,48.94,34.29,58.41,48.73,6.666666666666667,1,1,0,0,0,8,3,1,224.5,775534.7491022563,336063.7102882772,223439.9128346097,0,3147.64238026211 -2119,2650,4775,4774,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,0,58.37791861763183,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.768698034890193,0,58.41,48.73,48.94,34.29,8.333333333333334,1,1,0,0,0,8,3,1,224.5,775534.7491022563,336063.7102882772,223439.9128346097,0,3147.64238026211 -2120,2651,4776,-9,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,8.573193381531793,8.249618371845294,0,0,0,-1049.620327756502,0,-9,-9,2019,9,0,50,50,1,0,0,9.020162378497627,9.020162378497627,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,783,226582.0724379939,0,265966.0740397624,129204.742112452,1969.155408605418 -2120,2652,4777,4779,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,0,0,0,7,-14,-46.48282548465955,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,38.24,63.73,52,55,6.666666666666667,1,1,0,1,1,8,3,0,781.6666666666666,-76223.87136272505,0,0,0,2185.950922325429 -2120,2652,4778,-9,4777,4779,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.918926573343,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,3,0,781.6666666666666,-76223.87136272505,0,0,0,2185.950922325429 -2120,2652,4779,4777,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.068260990688923,8.226243974639811,0,7,14,67.64416935255404,0,-9,-9,2019,9,0,40,50,1,1,0,13.71822878756629,13.71822878756629,0,0,0,0,0,1,1,0,0,0,52,55,38.24,63.73,8,1,1,0,0,1,8,3,0,781.6666666666666,-76223.87136272505,0,0,0,2185.950922325429 -2121,2653,4780,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.472651619259189,8.583780885946435,0,0,0,-1074.85549098622,-9,2,2,2019,19,7,110,0,1,7,0,5.556934017086281,5.556934017086281,0,0,0,0,0,0,0,0,0,0,29.95,54.36,-9,-9,3.333333333333333,1,1,0,1,10,5,5,0,200,-16589.28748454306,-17842.45066582162,0,0,2063.984576111503 -2122,2654,4781,-9,4783,4784,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2938346578557,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,439,99277.36734483369,5538.317704799347,131426.2814761246,74463.06814411044,755.866954369357 -2122,2654,4782,-9,4783,4784,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.462142923037,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,439,99277.36734483369,5538.317704799347,131426.2814761246,74463.06814411044,755.866954369357 -2122,2654,4783,4784,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-6,.7246946864725894,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.1,37.99,47.35,5,1,1,0,0,0,12,2,0,439,99277.36734483369,5538.317704799347,131426.2814761246,74463.06814411044,755.866954369357 -2122,2654,4784,4783,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,4.269492994983098,4.482031549557949,0,2,6,-41.52052911056711,0,3,3,2019,13,1,16,16,1,1,0,.5570565303907042,.5570565303907042,0,0,0,0,0,1,1,0,0,0,37.99,47.35,31.77,61.1,5,1,1,0,0,1,12,2,0,439,99277.36734483369,5538.317704799347,131426.2814761246,74463.06814411044,755.866954369357 -2123,2655,4785,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.586899652349501,8.122953009072271,0,0,0,-1084.602160847001,0,3,3,2019,12,0,37,37,1,0,0,6.62014585826305,6.62014585826305,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,465,-93490.2450289516,-87983.56109859265,0,0,1242.789918365679 -2124,2656,4786,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.932376960023054,7.941671654947421,0,0,-1078.553394261485,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.321000728967526,7.895621074674287,59.7,43.22,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,472,895999.8151924976,576660.1494685815,330119.5651386402,0,1607.864261434782 -2125,2657,4787,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,6.675967683846801,6.67685791044663,0,0,-928.1343837276218,0,2,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,2.763376050144646,6.868804719998774,49.96,50.49,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,801,171639.572413597,125069.3998497187,0,0,1703.147155228763 -2126,2658,4788,4789,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.679138536924788,7.745081767025606,0,28,-4,93.63299796879953,0,3,3,2019,12,0,30,25,1,0,0,7.124970574129961,7.124970574129961,0,0,0,0,0,1,1,0,8.32709687695059,0,47,50,41.34,56.62,8.333333333333334,2,3,0,0,11,5,5,1,605,1117917.564919083,375952.6211934423,471549.3195329113,-69.21763779165485,8789.988962222529 -2126,2658,4789,4788,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.584785923937087,9.52629918487575,0,9,4,224.7489744711377,0,2,2,2019,12,0,40,37,1,0,0,44.42279049021953,44.42279049021953,0,0,0,0,0,1,1,0,5.973706189848272,0,41.34,56.62,47,50,6.666666666666667,2,3,0,0,7,5,5,1,605,1117917.564919083,375952.6211934423,471549.3195329113,-69.21763779165485,8789.988962222529 -2126,2658,4790,-9,4788,4789,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-964.2300912866818,-9,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,55.13,-9,-9,8.333333333333334,2,3,0,0,0,5,5,1,605,1117917.564919083,375952.6211934423,471549.3195329113,-69.21763779165485,8789.988962222529 -2126,2659,4791,-9,4788,4789,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-904.5304487728325,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.3897563827231305,0,62.66,52.4,-9,-9,8.333333333333334,2,3,0,0,2,5,2,1,3672,0,0,0,0,-122.111297457422 -2127,2660,4792,4793,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,8.563052840721344,8.869830370141299,0,22,-6,-34.12889932325053,0,3,3,2019,7,0,40,40,1,0,0,17.23269756085772,17.23269756085772,0,0,0,0,0,1,1,0,0,0,54.1,59.11,37.03,63.93,8.333333333333334,1,1,0,0,9,8,5,1,286.3333333333333,760070.8510815315,285962.7833065668,622462.4152289197,146641.7475458112,4912.126110862827 -2127,2660,4793,4792,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.717657117816943,8.941353478529168,0,22,6,110.9236334584758,0,-9,-9,2019,18,6,60,50,1,6,0,16.59027631953595,16.59027631953595,0,0,0,0,0,1,1,0,0,0,37.03,63.93,54.1,59.11,1.666666666666667,1,1,0,0,9,8,5,1,286.3333333333333,760070.8510815315,285962.7833065668,622462.4152289197,146641.7475458112,4912.126110862827 -2127,2660,4794,-9,4792,4793,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-986.6065895440205,-9,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,.606186123881887,0,42.95,61.24,-9,-9,5,1,1,0,0,0,8,5,1,286.3333333333333,760070.8510815315,285962.7833065668,622462.4152289197,146641.7475458112,4912.126110862827 -2128,2661,4795,-9,4797,4796,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-977.5241459022776,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,2.000330617207803,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,6,4,0,562,105085.4996397496,2726.20729588052,251381.8444971156,119170.4490564014,2809.398079567563 -2128,2661,4796,4797,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,8.710096005341249,8.968163880723726,0,10,3,50.80334878066198,0,2,3,2019,13,1,72,72,1,1,0,9.175328675832528,9.175328675832528,0,0,0,0,0,1,1,0,0,0,40.73,49.19,26.15,50.58,5,1,1,0,0,13,6,4,0,562,105085.4996397496,2726.20729588052,251381.8444971156,119170.4490564014,2809.398079567563 -2128,2661,4797,4796,-9,-9,1,0,37,0,2,0,3,3,-9,1,2,0,0,0,10,-3,-70.55210883010217,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,26.15,50.58,40.73,49.19,5,1,1,0,0,0,6,4,0,562,105085.4996397496,2726.20729588052,251381.8444971156,119170.4490564014,2809.398079567563 -2128,2661,4798,-9,4797,4796,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.4690376194417,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,562,105085.4996397496,2726.20729588052,251381.8444971156,119170.4490564014,2809.398079567563 -2129,2662,4799,4800,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,7.927582446039816,8.070388562956053,33,0,-66.33166124978968,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,3.786361306003488,7.884097324550595,35.22,56.72,43.92,62.31,5,1,1,0,0,12,9,5,1,457.5,1332873.317046093,226880.0335633107,1293156.383514417,181755.3896603673,5668.031259602321 -2129,2662,4800,4799,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.049043008527553,9.109220023908215,8.43599871850242,33,0,14.96736965543443,0,2,2,2019,11,1,38,38,1,1,0,31.46798776938326,31.46798776938326,0,0,0,0,0,0,0,0,2.952301396711924,8.264736271041997,43.92,62.31,35.22,56.72,6.666666666666667,1,1,0,0,10,9,5,1,457.5,1332873.317046093,226880.0335633107,1293156.383514417,181755.3896603673,5668.031259602321 -2130,2663,4801,4802,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.494490058270891,8.858084465859617,51,3,-85.41117850761836,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.953579558753066,8.397891453775124,62.49,55.09,58.05,54.52,8.333333333333334,1,1,0,0,0,7,4,1,561.5,828134.2531877657,0,712342.3956640897,0,4465.63186581052 -2130,2663,4802,4801,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,6.915040975561763,7.209641721230105,51,-3,10.70735626567708,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.188257610054237,58.05,54.52,62.49,55.09,10,1,1,0,0,0,7,4,1,561.5,828134.2531877657,0,712342.3956640897,0,4465.63186581052 -2131,2664,4803,-9,4806,4805,1,1,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-987.9132855956402,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,3,4,-9,0,0,8,3,0,211.75,-39794.32343222561,30782.83178823091,0,0,2658.559802528753 -2131,2664,4804,-9,4806,4805,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.560005521813,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,211.75,-39794.32343222561,30782.83178823091,0,0,2658.559802528753 -2131,2664,4805,4806,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.34778763840092,8.397321463873832,0,7,5,100.2070752110051,0,-9,-9,2019,12,2,41,45,1,2,0,11.1267693041986,11.1267693041986,0,0,0,0,0,1,1,0,0,0,52.19,46.58,51.94,55.88,8.333333333333334,3,4,0,0,4,8,3,0,211.75,-39794.32343222561,30782.83178823091,0,0,2658.559802528753 -2131,2664,4806,4805,-9,-9,1,0,40,0,2,0,1,1,1,0,3,0,0,0,7,-5,60.52002563852224,-9,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,52.19,46.58,6.666666666666667,3,4,1,0,4,8,3,0,211.75,-39794.32343222561,30782.83178823091,0,0,2658.559802528753 -2132,2665,4807,4808,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.603274207014938,7.719802464089597,7,1,-88.32308624059537,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.403630604648183,8.201776127701928,58.15,52.91,51.72,49.2,8.333333333333334,1,1,0,0,3,12,4,1,540.5,1090718.816578903,592087.8097503823,403605.5508834471,0,3073.538488241684 -2132,2665,4808,4807,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.43627857161025,7.256097105209792,7,-1,105.8122071161079,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.125248732632026,7.172272565359637,51.72,49.2,58.15,52.91,8.333333333333334,1,1,0,0,0,12,4,1,540.5,1090718.816578903,592087.8097503823,403605.5508834471,0,3073.538488241684 -2133,2666,4809,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1020.119461940506,0,-9,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,0,0,4,1,0,572,-205854.7749667919,0,0,0,2423.55190343984 -2134,2667,4810,4811,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.837946842390352,7.998905387846533,9,6,-57.87713571864935,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.795365328063261,7.528978728106593,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,409.5,1134297.523281054,565089.5944512957,351001.4244316699,0,3814.347076904943 -2134,2667,4811,4810,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.685656252072122,7.090155718049139,43,-6,66.38056878542235,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.270086628095946,6.997416734502602,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,0,9,3,1,409.5,1134297.523281054,565089.5944512957,351001.4244316699,0,3814.347076904943 -2135,2668,4812,4815,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.863653287888596,7.751166688109017,0,7,0,-53.10118787080719,0,-9,3,2019,9,0,28,28,1,0,0,9.662725953922799,9.662725953922799,0,0,0,0,7,0,0,0,0,0,55.21,45.89,55.19,54.26,8.333333333333334,1,1,0,0,9,1,3,1,684.75,357679.9379336776,205517.9446238462,167168.7356438974,6568.917318905507,2312.164723063186 -2135,2668,4813,-9,4812,4815,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1014.154906475057,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,684.75,357679.9379336776,205517.9446238462,167168.7356438974,6568.917318905507,2312.164723063186 -2135,2668,4814,-9,4812,4815,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.5396527291,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,684.75,357679.9379336776,205517.9446238462,167168.7356438974,6568.917318905507,2312.164723063186 -2135,2668,4815,4812,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,7.767267763410772,7.350356882981147,0,7,0,-160.2122639220272,-9,-9,-9,2019,10,0,60,0,1,0,0,4.034795010240497,4.034795010240497,0,0,0,0,2,0,0,0,1.991795779674969,0,55.19,54.26,55.21,45.89,8.333333333333334,1,1,0,0,9,1,3,1,684.75,357679.9379336776,205517.9446238462,167168.7356438974,6568.917318905507,2312.164723063186 -2136,2669,4816,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.215704970121257,8.220044828978814,0,0,0,-999.683707713756,0,3,3,2019,8,1,89,89,1,1,0,5.593548216402168,5.593548216402168,0,0,0,0,2,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,5,10,4,0,215,911643.8294656764,697703.8670213777,257645.9289753886,49496.47752090832,2026.049683377953 -2137,2670,4817,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.129033848332902,8.204441951198236,0,0,-1106.523645636985,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.699676809314788,8.07500716876106,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,554,1071022.503480384,842862.294059306,166044.437071104,0,2225.003343452167 -2138,2671,4818,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.616294269343867,7.689806780690075,0,0,0,-1005.523893566405,0,-9,-9,2019,20,5,43,0,1,5,0,6.412877837217523,6.412877837217523,0,0,0,0,0,0,0,0,0,0,13.73,54.95,-9,-9,5,1,1,0,0,2,9,3,0,1497,61485.69641183259,0,0,0,602.4380430441502 -2139,2672,4819,4820,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,4.79486990477411,4.624205061890556,8,-1,-50.14642728169807,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.122444791681289,63.48,51.85,62.66,52.4,8.333333333333334,1,1,0,0,0,8,2,1,1095.5,128524.7915781945,-8019.745429097959,0,0,1019.322172457201 -2139,2672,4820,4819,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.116707099406834,6.305287891775909,8,1,.9635328761082464,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.206855346124751,6.339734104201735,62.66,52.4,63.48,51.85,1.666666666666667,1,1,0,0,0,8,2,1,1095.5,128524.7915781945,-8019.745429097959,0,0,1019.322172457201 -2140,2673,4821,4822,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.68452101490087,6.475116097887982,48,3,31.97999501838212,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.5313817992090453,6.464019401162496,59.14,52.5,57.16,56.15,8.333333333333334,1,1,0,0,5,7,2,1,1364.5,769052.7696765939,268192.3369014354,359515.3992367594,0,2017.729741901828 -2140,2673,4822,4821,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.97941521777681,6.663824255013445,48,-3,53.9378134698466,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.317765495440668,7.008885695905791,57.16,56.15,59.14,52.5,10,1,1,0,0,7,7,2,1,1364.5,769052.7696765939,268192.3369014354,359515.3992367594,0,2017.729741901828 -2141,2674,4823,-9,4825,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.717824648625,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,758.3333333333334,73666.78572736868,-14435.33319397247,0,0,2545.386321800147 -2141,2674,4824,-9,4825,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1031.166039433925,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.83,54.24,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,758.3333333333334,73666.78572736868,-14435.33319397247,0,0,2545.386321800147 -2141,2674,4825,-9,-9,-9,1,0,48,0,2,0,2,2,-9,1,1,0,6.521096118930831,5.984796097795756,0,0,-1109.942391594767,0,-9,3,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,6.581070984635796,0,20.99,36.84,-9,-9,1.666666666666667,1,1,0,0,3,11,2,0,758.3333333333334,73666.78572736868,-14435.33319397247,0,0,2545.386321800147 -2142,2675,4826,-9,4828,4827,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.8662092963079,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,544.6666666666666,1048086.279665029,431649.047658986,545543.1214514127,0,1580.531108067357 -2142,2675,4827,4828,-9,-9,1,1,60,1,2,0,2,2,-9,0,3,7.444092265471938,7.917770652357433,6.571535910395385,14,22,-78.3713645342397,0,1,1,2019,16,4,25,0,1,4,0,8.834433279122338,8.834433279122338,0,0,0,0,0,1,1,0,0,6.715824134760728,48.45,57.49,44.89,53.77,3.333333333333333,2,3,0,0,5,8,2,0,544.6666666666666,1048086.279665029,431649.047658986,545543.1214514127,0,1580.531108067357 -2142,2675,4828,4827,-9,-9,1,0,38,1,2,0,2,2,-9,0,3,0,0,0,13,-22,72.15932955107826,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.89,53.77,48.45,57.49,8.333333333333334,4,2,0,1,0,8,2,0,544.6666666666666,1048086.279665029,431649.047658986,545543.1214514127,0,1580.531108067357 -2142,2676,4829,-9,4828,4827,1,1,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1048.349759943114,0,2,2,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,1,0,0,8,1,0,1097,0,0,0,0,0 -2143,2677,4830,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1147.238053726237,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,3.570795035417255,6.903527228299283,17.84072162803733,0,1,1,0,2.260895233532603,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,1218,242898.7336640932,0,0,0,1465.243464724179 -2144,2678,4831,-9,4833,4832,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.8699514745538,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,547.5,485815.3005228973,295653.775321358,422131.2955673027,261532.007557248,3511.679894513699 -2144,2678,4832,4833,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,9.075339984182081,8.921850211678855,0,5,2,-7.056034006620397,0,-9,-9,2019,8,0,50,50,1,0,0,18.34887471616837,18.34887471616837,0,0,0,0,0,1,1,0,.7940692897287835,0,52,54.51,57.33,53.46,8.333333333333334,4,2,0,0,11,7,4,1,547.5,485815.3005228973,295653.775321358,422131.2955673027,261532.007557248,3511.679894513699 -2144,2678,4833,4832,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.640425393222327,7.177542347503274,0,13,-2,32.03058104563599,-9,2,2,2019,6,0,30,0,1,0,0,8.47535585193833,8.47535585193833,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,54.51,8.333333333333334,1,1,0,0,11,7,4,1,547.5,485815.3005228973,295653.775321358,422131.2955673027,261532.007557248,3511.679894513699 -2144,2678,4834,-9,4833,4832,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-899.2635234858413,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,547.5,485815.3005228973,295653.775321358,422131.2955673027,261532.007557248,3511.679894513699 -2145,2679,4835,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.82162427662184,9.01333697804788,0,0,0,-1041.441794778001,0,3,2,2019,11,1,40,40,1,1,0,17.7647749968374,17.7647749968374,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,336,-63142.47760131827,-54116.73280515496,300369.0008885719,105592.8664166798,2078.579502683237 -2146,2680,4836,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,1,0,6.249011502434145,6.204660626987637,0,0,-926.3445139233152,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.297636403911118,6.242317717011179,50.78,27.5,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,375,403236.8671533967,56485.22311264156,260508.1970916225,0,1613.964765853956 -2147,2681,4837,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.786386553804999,6.456502011117918,0,0,-1065.260288491006,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,70.1681010244903,0,0,1,1,0,0,6.568498933977867,44.71,15.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,55,102889.8163143753,36541.43927883943,0,0,1710.044575684894 -2147,2682,4838,-9,4837,-9,1,0,54,0,0,0,2,2,-9,0,3,7.495422964363137,7.328160467615724,0,0,0,-1069.702455012931,0,2,2,2019,12,1,30,40,1,1,0,6.682684316571723,6.682684316571723,0,0,0,0,74.5,1,1,0,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,0,1,11,7,3,1,957,143354.6320429878,46204.62234555119,0,0,986.0689906964553 -2148,2683,4839,4841,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.62368642737599,9.489979571836416,0,20,0,-35.69694317234264,0,2,3,2019,11,0,45,60,1,0,0,35.21655426519251,35.21655426519251,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.33,53.46,6.666666666666667,1,1,0,0,9,9,5,1,741,2411354.468172131,1870346.070198407,683290.6707632709,305629.8217644739,4640.162896632672 -2148,2683,4840,-9,4841,4839,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1085.499963442123,-9,2,1,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,741,2411354.468172131,1870346.070198407,683290.6707632709,305629.8217644739,4640.162896632672 -2148,2683,4841,4839,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,0,0,0,20,0,-39.29367680531337,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.149809138917055,0,57.33,53.46,49.04,55.86,8.333333333333334,1,1,0,0,0,9,5,1,741,2411354.468172131,1870346.070198407,683290.6707632709,305629.8217644739,4640.162896632672 -2148,2683,4842,-9,4841,4839,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.9533656600532,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,741,2411354.468172131,1870346.070198407,683290.6707632709,305629.8217644739,4640.162896632672 -2149,2684,4843,4844,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.629023538098091,8.870358425395201,0,4,-2,28.89649309149436,0,-9,-9,2019,19,8,37,36,1,8,0,16.4804470848189,16.4804470848189,0,0,0,0,0,0,0,0,5.923369950065736,0,29.03,58.4,33.49,64.26000000000001,5,1,1,0,0,9,9,5,1,454,1140710.075009771,189513.3366996563,773698.3937480643,85671.19687257099,3760.214539486213 -2149,2684,4844,4843,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.652501342327385,8.76205572071235,0,4,2,-5.50683342725722,0,3,3,2019,25,12,38,0,1,12,0,16.44396343994613,16.44396343994613,0,0,0,0,7,0,0,0,3.248566445706343,0,33.49,64.26000000000001,29.03,58.4,6.666666666666667,1,1,0,0,4,9,5,1,454,1140710.075009771,189513.3366996563,773698.3937480643,85671.19687257099,3760.214539486213 -2150,2685,4845,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,1,0,3.736353161626794,3.69742167888518,0,0,-988.8539758685984,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,29.26834480423314,14.35470525044993,264.3850372607438,0,1,1,0,4.663457863195077,3.45603794242477,59.39,13.57,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,257,189624.4923341986,81684.68333021271,178311.0921789919,0,1525.653973877867 -2151,2686,4846,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.653425980524853,8.366740714332142,0,0,0,-991.0862258089063,0,3,3,2019,8,0,56,48,1,0,0,5.5301973681436,5.5301973681436,0,0,0,0,0,1,1,0,1.264178695512591,0,53.37,45.61,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,271,130166.7522720918,-24862.08697573847,0,0,1279.015794384618 -2152,2687,4847,4848,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.478205915575286,6.514709801860034,48,4,53.72401741463347,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,5.61572568292129,0,0,1,1,0,6.912580428828406,6.687598950055026,35.96,53.81,57.33,53.46,10,1,1,0,0,8,10,2,1,1051,296608.4705572589,92548.17008787626,155843.939727558,0,1829.68944133874 -2152,2687,4848,4847,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.276446551617353,5.994378926475046,48,-4,-95.00659627191828,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.470348888884346,6.042801378868016,57.33,53.46,35.96,53.81,8.333333333333334,1,1,0,0,8,10,2,1,1051,296608.4705572589,92548.17008787626,155843.939727558,0,1829.68944133874 -2153,2688,4849,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,1,0,7.565331439101064,7.575412841163274,0,0,-992.047125702969,0,2,-9,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,7.360340121370127,26.56,28.78,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,552,146850.7220223799,-34407.64345361369,79731.70838672554,27538.44856868821,1274.735529676934 -2154,2689,4850,4851,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.583102447616835,4.543162355752721,36,0,115.5410920639269,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.859601897413583,4.360268861419249,57.33,53.46,53.14,51.28,10,1,1,0,0,0,12,3,1,1012.5,2158926.378957974,770260.8158835617,241223.4853203809,0,3287.537433769908 -2154,2689,4851,4850,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.064794172342832,8.202661062372314,36,0,-70.58447020051518,0,-9,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.188292528955039,53.14,51.28,57.33,53.46,8.333333333333334,1,1,0,0,6,12,3,1,1012.5,2158926.378957974,770260.8158835617,241223.4853203809,0,3287.537433769908 -2155,2690,4852,4853,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.73745021417762,8.923929958621446,0,8,2,-15.8188490683385,0,2,2,2019,12,0,50,72,1,0,0,14.38625319321557,14.38625319321557,0,0,0,0,0,0,0,0,0,0,57.16,56.15,64.52,50.23,8.333333333333334,1,1,0,0,9,11,4,1,1798.5,575614.7579948909,280508.6980098981,281485.2122272875,56783.69294477288,2152.8338599086 -2155,2690,4853,4852,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,5.550314134115847,5.698575446437122,0,8,-2,4.793224204094086,0,2,3,2019,8,0,70,80,1,0,0,.4824141027643674,.4824141027643674,0,0,0,0,0,0,0,0,0,0,64.52,50.23,57.16,56.15,10,1,1,0,0,9,11,4,1,1798.5,575614.7579948909,280508.6980098981,281485.2122272875,56783.69294477288,2152.8338599086 -2155,2691,4854,-9,4852,4853,1,1,23,0,0,0,2,2,1,0,5,8.258170374318196,8.208615402882677,0,0,0,-905.6160907174816,-9,1,2,2019,13,1,40,0,1,1,1,8.815268942477394,8.815268942477394,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,8,11,4,1,500,-73228.54604541279,-19563.20571312968,0,0,917.6342884023238 -2156,2692,4855,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.8713238083351,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.428904440734206,0,64.69,32.26,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,719,-19580.20184975935,0,150218.0482890672,0,1977.547918368551 -2157,2693,4856,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.290828776919387,8.415999844491871,0,0,-958.3900628725339,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,9.230856692895031,0,0,1,1,0,0,8.842851705464357,61.43,38.14,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,2960,897422.1321326455,304832.9262961438,226071.1259087489,0,2709.045051052272 -2157,2694,4857,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.429533216067137,7.138564573932331,0,0,-957.8367812565126,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,1.931671571675168,0,18.24416670260154,0,1,1,0,7.019583165950674,7.646989001453341,45.6,57.67,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,171,368053.7421555131,172482.3453292404,115227.7622361153,0,2448.929652128656 -2158,2695,4858,4859,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,11,2,-4.601622415555669,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,31.46,50.56,49.65,6.666666666666667,1,1,1,0,0,1,3,1,440,-126298.307225761,-31814.02811580807,0,0,1820.766487783706 -2158,2695,4859,4858,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.128579716358697,8.371836358539975,0,11,-2,50.38541596210928,0,3,2,2019,7,0,16,16,1,0,0,21.52495615387006,21.52495615387006,0,0,0,0,0,1,1,0,0,0,50.56,49.65,58.47,31.46,8.333333333333334,1,1,0,0,12,1,3,1,440,-126298.307225761,-31814.02811580807,0,0,1820.766487783706 -2159,2696,4860,4861,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.547896945528883,8.322666339625496,51,3,73.60643871707292,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1597955796740673,8.29785096525951,49.04,55.86,55.95,36.7,6.666666666666667,1,1,0,0,0,12,4,1,489.5,1803089.763039694,721918.9510794173,216450.861770121,0,3831.558587510956 -2159,2696,4861,4860,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.476456000413311,6.967405869205183,51,-3,-45.64180741197525,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.13142742785678,7.541682920470579,55.95,36.7,49.04,55.86,8.333333333333334,1,1,0,0,0,12,4,1,489.5,1803089.763039694,721918.9510794173,216450.861770121,0,3831.558587510956 -2160,2697,4862,4863,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.728702520854506,8.30250861525875,0,5,5,-95.43579993638106,0,-9,-9,2019,7,0,45,52,1,0,0,11.25564983616967,11.25564983616967,0,0,0,0,0,0,0,0,3.090729728965306,0,46.77,48.57,54.1,59.11,8.333333333333334,1,1,0,0,5,5,5,1,1349,138898.9402074847,-61236.93179092128,0,0,3029.940144090737 -2160,2697,4863,4862,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.260792923220697,8.229567292783845,0,5,-5,-3.551443582405328,0,2,2,2019,6,0,39,37,1,0,0,9.805401044330711,9.805401044330711,0,0,0,0,0,0,0,0,3.063854276792056,0,54.1,59.11,46.77,48.57,8.333333333333334,1,1,0,0,7,5,5,1,1349,138898.9402074847,-61236.93179092128,0,0,3029.940144090737 -2161,2698,4864,4865,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,14,-10,0,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,60.62,27.67,55.44,52.99,8.333333333333334,1,1,0,0,0,2,1,0,225,261781.3312286279,0,224276.1482326732,2870.503599751933,1812.511847495516 -2161,2698,4865,4864,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,14,10,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.44,52.99,60.62,27.67,10,1,1,0,0,0,2,1,0,225,261781.3312286279,0,224276.1482326732,2870.503599751933,1812.511847495516 -2162,2699,4866,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.907440653916456,5.974855201079621,0,0,-1003.748194071237,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.395320783527795,5.748337221265936,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,342,145092.5168057115,52981.30020057633,0,0,1431.519554011159 -2163,2700,4867,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1012.131802249273,0,-9,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.6,25.23,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,223,8067.192184390246,0,0,0,2825.432485469101 -2164,2701,4868,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.0906901032181,6.285160509183528,0,0,-956.6871934450841,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.301433887872281,5.953228376796948,58.9,45.74,-9,-9,10,1,1,0,0,0,12,2,1,429,53121.71064349981,247.0993867942125,0,0,881.5956823848505 -2165,2702,4869,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.905524686396258,5.69367919934418,0,0,-980.3338725969107,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,3.730021984481839,0,0,1,1,0,0,5.774781186466742,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,501,326585.4462194312,-10614.53052777276,83385.08065603665,0,1720.712498238949 -2165,2703,4870,-9,4869,-9,1,1,43,0,0,0,3,3,-9,1,4,0,0,0,0,0,-977.5458120560788,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.88974668179382,0,52,56,-9,-9,8,1,1,0,0,0,5,1,1,109,-191084.2333806473,0,0,0,286.1135223750766 -2166,2704,4871,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.920105880578914,7.915597789843087,6.341737460671448,0,0,-961.2765380075086,0,2,2,2019,15,4,37,38,1,4,0,10.01603808620499,10.01603808620499,0,0,0,0,0,1,1,0,6.531189876527862,5.846124637878963,35.86,48.52,-9,-9,5,1,1,0,0,7,9,4,0,331,52245.21957378929,86530.38466543729,0,0,1329.856080831503 -2167,2705,4872,-9,4874,4873,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-961.1971575251607,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,848.75,42194.98771645698,5069.348799796599,211671.4546415248,157509.9871739555,2774.94871005868 -2167,2705,4873,4874,-9,-9,1,1,38,2,2,0,2,2,-9,0,4,7.626613047185899,7.596105706961549,0,7,2,26.54758804162541,0,-9,-9,2019,10,0,37,38,1,1,0,7.555753418521629,7.555753418521629,0,0,0,0,0,1,1,0,0,0,51,56,41.4,58.06,7,4,1,0,0,1,2,4,0,848.75,42194.98771645698,5069.348799796599,211671.4546415248,157509.9871739555,2774.94871005868 -2167,2705,4874,4873,-9,-9,1,0,36,2,2,0,2,2,-9,0,4,8.336650745715799,8.266644815326627,0,7,-2,-93.68530260801879,0,2,2,2019,15,3,25,25,1,3,0,19.73148689643581,19.73148689643581,0,0,0,0,0,1,1,0,3.707901717400265,0,41.4,58.06,51,56,8.333333333333334,1,1,0,0,8,2,4,0,848.75,42194.98771645698,5069.348799796599,211671.4546415248,157509.9871739555,2774.94871005868 -2167,2705,4875,-9,4874,4873,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-962.7919291265315,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,848.75,42194.98771645698,5069.348799796599,211671.4546415248,157509.9871739555,2774.94871005868 -2168,2706,4876,-9,4877,-9,1,1,17,0,0,1,2,0,0,0,3,0,3.354692559798951,3.573871220832541,0,0,-930.7047232049641,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.269707972982781,0,38.96,60.54,-9,-9,3.333333333333333,1,1,0,1,0,7,3,0,444.5,-51421.00767658353,-26366.24413489699,0,0,1598.762820445865 -2168,2706,4877,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.108935857806006,7.11094495303341,0,0,0,-1204.413587657536,0,2,-9,2019,15,3,25,25,1,3,0,5.864799819990728,5.864799819990728,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,7,7,3,0,444.5,-51421.00767658353,-26366.24413489699,0,0,1598.762820445865 -2169,2707,4878,4879,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.911976351672638,6.672416832104073,59,3,-12.9891655238472,0,2,2,2019,9,2,0,0,4,2,0,0,0,1,0,42.46882076456026,0,0,1,1,0,5.22174057650495,7.147543400661451,54.29,15.71,41.04,40.62,6.666666666666667,1,1,0,0,0,2,2,1,600,379539.9330326217,237299.3922301797,166236.9411338269,0,1973.536488150374 -2169,2707,4879,4878,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.163547353899808,5.528764167913269,59,-3,48.04182268169101,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,2.366298097660452,5.139146981649949,41.04,40.62,54.29,15.71,5,1,1,0,0,0,2,2,1,600,379539.9330326217,237299.3922301797,166236.9411338269,0,1973.536488150374 -2169,2708,4880,-9,4879,4878,1,1,56,0,0,0,2,2,-9,0,3,7.988732831565646,8.340576855382146,0,0,0,-863.942237298127,0,3,2,2019,11,0,38,37,1,1,0,10.27659998265862,10.27659998265862,0,0,0,0,0,1,1,0,5.577614078985498,0,50,49,-9,-9,7,1,1,0,0,1,2,4,1,1617,212767.4411405327,0,131160.6680889857,36699.77014013349,2383.037984436347 -2170,2709,4881,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1042.231476039833,0,2,2,2019,30,12,0,16,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.4,22.31,-9,-9,0,1,1,1,1,5,2,1,0,1636,-72672.29368057422,0,0,0,1981.051986998193 -2170,2709,4882,-9,4881,-9,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1076.647967978621,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.36,46.8,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1636,-72672.29368057422,0,0,0,1981.051986998193 -2170,2710,4883,-9,4881,-9,1,1,28,0,0,0,2,2,-9,0,2,8.392834275309044,8.172687481729662,0,0,0,-1064.467282709928,0,3,2,2019,30,12,70,60,1,12,1,5.420535774902755,5.420535774902755,0,0,0,0,7,1,1,0,0,0,34.26,49.91,-9,-9,10,1,1,0,0,7,2,4,0,522,198547.9413340895,50346.76979476074,0,0,1666.667628612737 -2171,2711,4884,4888,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.265864766627427,8.800193290369853,0,3,2,131.1942187410323,0,-9,-9,2019,9,0,20,0,1,1,0,24.59353691998125,24.59353691998125,0,0,0,0,0,1,1,0,7.897617905587378,0,51,56,54.2,57.49,8,2,3,0,0,1,8,3,0,988,127490.9337816195,75957.78143305099,203492.8572509755,104350.4179464469,5621.935392691692 -2171,2711,4885,-9,4888,4884,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.571820953301,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,988,127490.9337816195,75957.78143305099,203492.8572509755,104350.4179464469,5621.935392691692 -2171,2711,4886,-9,4888,4884,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.6047190735785,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,988,127490.9337816195,75957.78143305099,203492.8572509755,104350.4179464469,5621.935392691692 -2171,2711,4887,-9,4888,4884,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.44170115237,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,988,127490.9337816195,75957.78143305099,203492.8572509755,104350.4179464469,5621.935392691692 -2171,2711,4888,4884,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,5.850349147231705,5.816720387526187,0,10,-2,15.48040513971405,0,-9,-9,2019,9,0,24,8,1,0,0,1.481715067538933,1.481715067538933,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,2,3,0,0,8,8,3,0,988,127490.9337816195,75957.78143305099,203492.8572509755,104350.4179464469,5621.935392691692 -2172,2712,4889,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.095971184727432,5.78276569720113,0,0,-995.6312124958469,-9,2,-9,2019,10,1,0,0,4,1,0,0,0,1,0,70.27064385792326,0,0,1,1,0,6.254277149788797,5.955357978079237,56.01,34.94,-9,-9,10,1,1,0,0,0,9,2,1,235,18880.81441464197,113882.9172538381,0,0,1128.927256796641 -2173,2713,4890,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,5,0,0,0,0,0,-977.0362904010381,-9,3,-9,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,41.07,39.71,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,875,135859.1394112596,0,0,0,554.0371152954344 -2174,2714,4891,4894,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,6.584599420635975,7.157640475851221,5.799023367975378,13,10,-73.94234080493423,0,3,3,2019,11,2,3,0,1,2,0,30.18197731277771,30.18197731277771,0,0,0,0,0,1,1,0,3.463642379617636,5.586554397900786,36.51,61.56,54.69,57.47,6.666666666666667,1,1,0,0,3,7,4,1,653.5,1880705.862142693,773831.5097284114,466597.4257322532,0,2713.688796201598 -2174,2714,4892,-9,4894,4891,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.1873075378355,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.5,1880705.862142693,773831.5097284114,466597.4257322532,0,2713.688796201598 -2174,2714,4893,-9,4894,4891,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.3778915605227,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.5,1880705.862142693,773831.5097284114,466597.4257322532,0,2713.688796201598 -2174,2714,4894,4891,-9,-9,1,0,51,0,2,0,3,3,-9,0,5,8.455610382498202,8.336740914540087,0,13,-10,97.16949726063031,0,2,2,2019,10,1,28,28,1,1,0,24.32463659896374,24.32463659896374,0,0,0,0,0,1,1,0,4.576407913182327,0,54.69,57.47,36.51,61.56,6.666666666666667,1,1,0,0,9,7,4,1,653.5,1880705.862142693,773831.5097284114,466597.4257322532,0,2713.688796201598 -2175,2715,4895,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.774612262004049,5.262417891573435,0,0,-1025.798590213232,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.833013764661329,0,15.58337814070311,0,1,1,0,0,5.900734469990494,55,45,-9,-9,8,1,1,0,0,0,12,2,1,187,236197.4839714001,180062.8981034801,0,0,441.5429528432505 -2176,2716,4896,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,5.59567656554172,5.407370599527001,0,0,-963.4363039006168,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,5.291135256413049,45.23,36.22,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2103,94608.00320274335,0,0,0,1085.866769172967 -2176,2717,4897,-9,4896,-9,1,1,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1098.752678326271,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,5,1,1,251,75981.3156279533,0,0,0,500.4622710682131 -2177,2718,4898,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.169736296641396,7.276772570888012,0,0,0,-1056.782034633659,0,3,1,2019,6,0,24,0,1,0,0,6.774010105682035,6.774010105682035,0,0,0,0,0,1,1,0,0,0,56.19,46.16,-9,-9,10,3,4,0,0,1,8,2,0,621,-1510.393586041448,-31443.39095858527,0,0,2466.97503918941 -2177,2718,4899,-9,4898,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.263219674189,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,621,-1510.393586041448,-31443.39095858527,0,0,2466.97503918941 -2177,2719,4900,-9,4898,-9,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1135.431200308519,-9,2,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,1,1,0,8,2,0,484,0,0,0,0,0 -2178,2720,4901,4903,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,0,0,0,6,-8,-49.15508707601949,0,2,2,2019,7,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,63.99,43.47,8.333333333333334,1,1,0,0,7,7,3,0,427.3333333333333,1322013.574156441,957856.7014721585,398617.9619613656,0,1126.96974933557 -2178,2720,4902,-9,4901,4903,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.7701324595439,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,427.3333333333333,1322013.574156441,957856.7014721585,398617.9619613656,0,1126.96974933557 -2178,2720,4903,4901,-9,-9,1,1,43,1,1,0,2,2,-9,0,5,8.098160661002275,8.013718419277458,0,6,8,72.72869815334508,0,3,3,2019,5,0,40,40,1,0,0,10.87585403539225,10.87585403539225,0,0,0,0,0,1,1,0,0,0,63.99,43.47,54.2,57.49,10,1,1,0,0,8,7,3,0,427.3333333333333,1322013.574156441,957856.7014721585,398617.9619613656,0,1126.96974933557 -2179,2721,4904,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.190320689038382,8.679152424745189,7.160168479157267,0,0,-950.8193869504685,0,1,1,2019,13,2,20,39,1,2,0,20.05865244782809,20.05865244782809,0,0,0,0,7,1,1,0,6.300492980674079,7.292167191691841,35.7,52.74,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,199,611321.7290910301,448710.4748097704,132866.6097589856,31239.12866110402,2591.754826912744 -2180,2722,4905,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.506473762197016,5.854515986562934,0,0,-996.7619581484171,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.918659121629953,5.696913826469616,42.85,43.64,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,328,481144.4493632941,0,208742.5950277984,0,953.3409622896909 -2181,2723,4906,4907,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,44,-2,-204.0255733510034,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.792222817943196,0,42.11,57.44,55.09,41.39,8.333333333333334,1,1,0,0,7,2,2,1,581.5,396926.0551855996,163352.2584279853,217313.4573717249,0,1938.964594249649 -2181,2723,4907,4906,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.437663577272843,7.297270039444091,44,2,-6.640103127375871,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.705027781434444,7.105013188990518,55.09,41.39,42.11,57.44,8.333333333333334,1,1,0,0,0,2,2,1,581.5,396926.0551855996,163352.2584279853,217313.4573717249,0,1938.964594249649 -2182,2724,4908,4909,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.253167582062658,7.874883512067972,0,30,-7,145.3166399902231,0,3,3,2019,9,0,33,39,1,0,0,5.549786387788511,5.549786387788511,0,0,0,0,0,1,1,0,.306975224045055,0,57.33,53.46,50,49,5,2,3,0,0,10,5,4,1,667,166993.3246081099,71024.8955604159,0,0,2215.092623105582 -2182,2724,4909,4908,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.723447021845273,7.917670749681377,0,8,7,12.31958252836118,0,3,3,2019,10,0,30,50,1,1,0,11.85172901726666,11.85172901726666,0,0,0,0,0,1,1,0,0,0,50,49,57.33,53.46,7,2,3,0,0,1,5,4,1,667,166993.3246081099,71024.8955604159,0,0,2215.092623105582 -2183,2725,4910,4912,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,7.392255738640173,7.201362300135306,0,7,-7,82.42953557086659,0,-9,-9,2019,12,0,18,18,1,0,0,9.173974860985734,9.173974860985734,0,0,0,0,0,1,1,0,.8792792205844616,0,44.53,56.37,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,700.6,174982.2209087264,100455.7163939333,104941.1405762598,83368.22425119826,8801.338340934653 -2183,2725,4911,-9,4910,4912,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.328484402128,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,700.6,174982.2209087264,100455.7163939333,104941.1405762598,83368.22425119826,8801.338340934653 -2183,2725,4912,4910,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,9.528485721556027,9.769432297356566,0,7,7,-121.7714326400094,0,-9,-9,2019,9,0,45,50,1,0,0,43.69543199371202,43.69543199371202,0,0,0,0,0,1,1,0,7.173031613661468,0,51.83,57.2,44.53,56.37,8.333333333333334,1,1,0,0,8,2,5,1,700.6,174982.2209087264,100455.7163939333,104941.1405762598,83368.22425119826,8801.338340934653 -2183,2725,4913,-9,4910,4912,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.1487986607943,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,700.6,174982.2209087264,100455.7163939333,104941.1405762598,83368.22425119826,8801.338340934653 -2183,2725,4914,-9,4910,4912,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.241656092339,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,700.6,174982.2209087264,100455.7163939333,104941.1405762598,83368.22425119826,8801.338340934653 -2184,2726,4915,4916,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.538574350578115,8.969421638695598,0,5,0,113.3922177121799,0,-9,-9,2019,13,4,42,43,1,4,0,12.6652428020508,12.6652428020508,0,0,0,0,0,0,0,0,0,0,54.2,57.49,39.56,54.83,6.666666666666667,1,1,0,0,5,6,4,0,239.5,187586.3872835653,141121.990151038,118614.7043677002,50273.87624759419,2096.28476854469 -2184,2726,4916,4915,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.04600944838626,6.521916365982214,0,5,0,-112.7056335240143,0,2,1,2019,12,0,22,25,1,0,0,5.083103679426814,5.083103679426814,0,0,0,0,0,0,0,0,0,0,39.56,54.83,54.2,57.49,6.666666666666667,1,1,0,0,11,6,4,0,239.5,187586.3872835653,141121.990151038,118614.7043677002,50273.87624759419,2096.28476854469 -2185,2727,4917,4918,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,7.845702089194672,8.168799949858519,0,4,3,-153.0957489427293,0,-9,-9,2019,12,0,50,50,1,0,0,8.465662034853093,8.465662034853093,0,0,0,0,0,0,0,0,0,0,43.43,54.3,36.94,58.61,6.666666666666667,1,1,0,0,8,11,5,1,1923.5,128758.5524518861,57482.85736535623,0,0,4055.125778678753 -2185,2727,4918,4917,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.738628438701317,8.678881546505689,0,4,-3,-16.47482673080584,0,2,2,2019,14,4,45,57,1,4,0,17.27268250911607,17.27268250911607,0,0,0,0,0,0,0,0,0,0,36.94,58.61,43.43,54.3,6.666666666666667,1,1,0,0,7,11,5,1,1923.5,128758.5524518861,57482.85736535623,0,0,4055.125778678753 -2186,2728,4919,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.032181513282458,7.488360592127767,0,0,0,-1007.128903548549,0,-9,-9,2019,6,0,30,30,1,0,0,9.447589489639617,9.447589489639617,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,3,4,0,0,10,8,3,0,1615,893857.055517472,245701.1133523231,804814.8420762167,0,1471.869628691024 -2186,2729,4920,-9,4919,-9,1,1,24,0,0,0,2,2,-9,0,4,7.967125262749363,7.864764492903076,0,0,0,-972.6892893580506,0,2,-9,2019,10,0,35,45,1,1,1,10.60806390888605,10.60806390888605,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,5,8,4,0,844,-17232.47471674811,0,0,0,1713.140093114474 -2187,2730,4921,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,7.246632529219339,7.426975609038338,5.853619290219772,0,0,-884.7795983906706,0,3,2,2019,11,0,22,23,1,0,0,6.873194761244558,6.873194761244558,0,0,0,0,0,1,1,0,0,6.131936090994182,44.29,47.71,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,127,540490.8923717708,104780.929894018,384184.733081467,11525.43138233551,1205.429710833339 -2188,2731,4922,4923,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,53,-5,-18.99245781584562,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40.12,38.52,58.47,34.16,5,1,1,0,0,0,6,2,1,829.5,218756.2980770649,0,298811.9600931599,0,411.3569032856618 -2188,2731,4923,4922,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,4.530170780802793,4.483472361973505,53,5,-28.78325050581866,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.602489494835359,58.47,34.16,40.12,38.52,5,1,1,0,0,0,6,2,1,829.5,218756.2980770649,0,298811.9600931599,0,411.3569032856618 -2189,2732,4924,-9,4925,-9,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-890.4608484201282,-9,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,11,4,0,805.5,-110496.6349849214,65737.52216806891,0,0,2269.950019035976 -2189,2732,4925,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,8.254195491225721,8.399606615192901,0,0,0,-1036.937048355698,0,2,2,2019,19,7,39,43,1,7,0,11.44845526700803,11.44845526700803,0,0,0,0,0,1,1,0,0,0,36.37,41.82,-9,-9,3.333333333333333,1,1,0,1,11,11,4,0,805.5,-110496.6349849214,65737.52216806891,0,0,2269.950019035976 -2190,2733,4926,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.533284969745,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.62,37.09,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,735,76408.61755586887,0,0,0,149.6425924458758 -2190,2734,4927,-9,4926,-9,1,0,31,0,0,0,2,2,-9,0,4,8.779216033711275,8.619814645008443,0,0,0,-1112.309734806665,0,3,-9,2019,16,4,36,35,1,4,1,16.2224330892677,16.2224330892677,0,0,0,0,0,1,0,1,0,0,45.8,54.59,-9,-9,6.666666666666667,2,3,0,0,9,8,5,0,663,206002.146123806,-80519.72761322639,0,0,2357.419527831898 -2190,2735,4928,-9,4926,-9,1,0,27,0,0,0,1,1,-9,0,4,8.533817438944839,8.196874197021749,0,0,0,-1034.158796558646,0,3,3,2019,13,3,44,38,1,3,1,10.17209864554722,10.17209864554722,0,0,0,0,0,1,0,1,3.770302035378691,0,35.73,63.1,-9,-9,10,2,3,0,0,6,8,4,0,635,-274941.4551350518,69511.76708767432,0,0,1658.307652734474 -2190,2736,4929,-9,4926,-9,1,0,25,0,0,0,2,2,-9,0,3,7.602671736830311,7.54972132429985,0,0,0,-997.8412244076361,0,3,3,2019,12,3,28,33,1,3,1,8.860283949291912,8.860283949291912,0,0,0,0,0,1,0,1,0,0,53.63,33.27,-9,-9,8.333333333333334,2,3,0,0,5,8,3,0,477,39657.07490636592,21611.06953954003,0,0,1524.657423918273 -2191,2737,4930,4931,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,5.906411425864897,6.173059995898174,0,19,-3,-122.633783454047,0,2,2,2019,6,0,7,7,1,0,0,6.075649424595169,6.075649424595169,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.06,57.76,8.333333333333334,1,1,0,0,3,7,3,1,716,70202.52524219801,18244.93053651886,0,0,2191.815688849769 -2191,2737,4931,4930,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,7.771840664714182,8.053969441928265,0,14,3,-36.56523274493844,0,2,2,2019,4,1,37,40,1,1,0,7.44756627029985,7.44756627029985,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.49,55.09,10,1,1,0,0,5,7,3,1,716,70202.52524219801,18244.93053651886,0,0,2191.815688849769 -2191,2737,4932,-9,4930,4931,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.61380404015,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,716,70202.52524219801,18244.93053651886,0,0,2191.815688849769 -2191,2737,4933,-9,4930,4931,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.9452797272994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,716,70202.52524219801,18244.93053651886,0,0,2191.815688849769 -2192,2738,4934,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.624571986675289,8.505895987258057,0,0,0,-1050.778269490657,0,2,2,2019,14,2,50,49,1,2,0,10.78690985202324,10.78690985202324,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,1170,239311.4540152682,0,233605.7392179177,119388.7094860646,1610.413684379836 -2193,2739,4935,-9,4938,4939,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1066.350732694219,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,746.2,-3015.58494018904,0,0,0,1315.170913423793 -2193,2739,4936,-9,4938,4939,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1015.563183758487,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,746.2,-3015.58494018904,0,0,0,1315.170913423793 -2193,2739,4937,-9,4938,4939,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-947.5549244885306,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,0,6,2,1,746.2,-3015.58494018904,0,0,0,1315.170913423793 -2193,2739,4938,4939,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,20,-3,-59.69382753375484,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.63,53.99,8.333333333333334,2,3,0,0,0,6,2,1,746.2,-3015.58494018904,0,0,0,1315.170913423793 -2193,2739,4939,4938,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,5.500527711092555,5.607620340741828,0,20,3,4.834994144878705,0,3,3,2019,7,0,38,38,1,0,0,.7053906892516751,.7053906892516751,0,0,0,0,0,1,1,0,0,0,52.63,53.99,57.33,53.46,8.333333333333334,2,3,0,0,12,6,2,1,746.2,-3015.58494018904,0,0,0,1315.170913423793 -2193,2740,4940,-9,4938,4939,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1148.633223107462,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,65.8,47,-9,-9,10,2,3,0,0,0,6,2,1,968,147724.9928958084,0,0,0,0 -2194,2741,4941,-9,4942,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1091.456143179388,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,9,4,1,1381.5,241073.0517546146,0,212566.7951946662,58296.57906450125,2039.732018288718 -2194,2741,4942,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.36029224242365,7.89743680452354,6.985483431998965,0,0,-990.5875023604351,0,3,2,2019,16,5,19,20,1,5,0,9.089857836107509,9.089857836107509,0,0,0,0,0,1,1,0,7.127443621336246,0,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1381.5,241073.0517546146,0,212566.7951946662,58296.57906450125,2039.732018288718 -2194,2742,4943,-9,4942,-9,1,0,18,0,0,0,2,2,1,0,3,6.806750197794692,7.011577019370272,0,0,0,-858.1155207681099,-9,2,-9,2019,6,0,25,0,1,0,1,4.396093355841613,4.396093355841613,0,0,0,0,0,1,1,0,0,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,276,9633.26660619975,0,0,0,519.668100224913 -2195,2743,4944,4945,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,8,-22,8.411386529801481,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.9,51.55,46.39,60.99,8.333333333333334,4,2,0,1,0,8,3,0,2543,1890542.481011698,326482.1362304705,855600.2958714041,0,1673.633959394639 -2195,2743,4945,4944,-9,-9,1,1,63,0,2,0,2,2,-9,0,4,8.098946258138216,8.115033568590423,6.47464055349861,9,22,49.87969081627809,-9,1,1,2019,8,0,37,0,1,0,0,9.607036268281686,9.607036268281686,0,0,0,0,7,1,0,1,0,6.571982420723563,46.39,60.99,51.9,51.55,3.333333333333333,2,3,0,1,8,8,3,0,2543,1890542.481011698,326482.1362304705,855600.2958714041,0,1673.633959394639 -2195,2743,4946,-9,4944,4945,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.340915420858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,2543,1890542.481011698,326482.1362304705,855600.2958714041,0,1673.633959394639 -2195,2743,4947,-9,4944,4945,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1069.113155892823,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,4,2,-9,0,0,8,3,0,2543,1890542.481011698,326482.1362304705,855600.2958714041,0,1673.633959394639 -2195,2744,4948,-9,4944,4945,1,1,23,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1167.502260033996,-9,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,4,2,1,0,0,8,1,0,909,0,0,0,0,0 -2196,2745,4949,4950,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,0,0,0,5,-19,-47.46025632781269,0,-9,-9,2019,17,4,0,38,3,4,0,0,0,0,0,0,0,0,1,1,0,2.954549685220128,0,51.83,57.2,48.87,58.55,5,1,1,1,0,9,4,2,1,2251.5,406578.6941620422,26375.88071665655,368312.9419870272,0,913.7276790888803 -2196,2745,4950,4949,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.449407025149256,6.340890142382756,5,19,-13.36844764195998,0,-9,-9,2019,10,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,3.164354053763542,6.378863222295589,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,9,4,2,1,2251.5,406578.6941620422,26375.88071665655,368312.9419870272,0,913.7276790888803 -2197,2746,4951,-9,4953,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.180517837592,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,10,1,0,1080,80367.63814065546,0,0,0,2281.41800746242 -2197,2746,4952,-9,4953,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.9619957807751,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,10,1,0,1080,80367.63814065546,0,0,0,2281.41800746242 -2197,2746,4953,-9,-9,-9,1,0,36,0,2,0,3,3,-9,1,1,0,0,0,0,0,-922.7205306382002,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,25.65,-9,-9,5,3,4,1,0,0,10,1,0,1080,80367.63814065546,0,0,0,2281.41800746242 -2198,2747,4954,4955,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-3,-91.2901039251992,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,.289651592541043,0,1,1,0,1.430873861195781,0,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,3,1,1957.5,1385842.927131038,247520.8315628476,636560.2492037439,0,2963.879058173906 -2198,2747,4955,4954,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.104790202872113,8.017763538870751,58,3,-28.84210062593576,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.914565445289253,8.19044444386819,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1957.5,1385842.927131038,247520.8315628476,636560.2492037439,0,2963.879058173906 -2199,2748,4956,4959,-9,-9,1,0,40,0,2,0,1,1,-9,1,2,8.2440462418376,8.572955885332455,0,9,3,-28.23093152444694,0,2,2,2019,12,1,39,37,1,1,0,9.716100995714076,9.716100995714076,0,0,0,0,0,1,1,0,0,0,52.29,23.64,40.15,42.79,8.333333333333334,1,1,0,0,7,6,4,0,741.25,96533.94147885154,66482.5176621696,195370.7439319517,138238.5842673998,3716.660482330556 -2199,2748,4957,-9,4956,4959,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.6768737696154,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,741.25,96533.94147885154,66482.5176621696,195370.7439319517,138238.5842673998,3716.660482330556 -2199,2748,4958,-9,4956,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1095.647048895523,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,0,741.25,96533.94147885154,66482.5176621696,195370.7439319517,138238.5842673998,3716.660482330556 -2199,2748,4959,4956,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.384546072460598,8.276340314085784,0,9,-3,-111.7177622129429,0,2,2,2019,12,1,55,55,1,1,0,8.133019787391484,8.133019787391484,0,0,0,0,0,1,1,0,0,0,40.15,42.79,52.29,23.64,6.666666666666667,1,1,0,0,9,6,4,0,741.25,96533.94147885154,66482.5176621696,195370.7439319517,138238.5842673998,3716.660482330556 -2200,2749,4960,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,3.999229301118149,3.931937700736858,0,0,-962.6966775342803,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,18.22552706673161,0,0,1,1,0,4.570349528952834,0,41.48,24.66,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,405,181860.7406899554,59420.86910075243,244882.0091373682,0,705.9079368032307 -2201,2750,4961,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.515606414602628,8.423923352631617,0,0,-1068.638966152633,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.250407708780544,8.55482766376309,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,663,1054229.616090291,917771.9634625838,0,0,3391.641435823598 -2202,2751,4962,4963,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.665338268329933,7.844167543914782,39,-4,-89.17559469542537,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,8.073012245201815,35.37,48.33,55,45,8.333333333333334,1,1,0,0,0,6,4,1,1573,1693721.125857295,706883.4175085092,590071.1871238498,0,3842.975081063477 -2202,2751,4963,4962,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,7.423279584377007,7.495249523399984,9,4,113.4187200529436,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.098538259164044,55,45,35.37,48.33,8,1,1,0,0,0,6,4,1,1573,1693721.125857295,706883.4175085092,590071.1871238498,0,3842.975081063477 -2203,2752,4964,-9,-9,4965,1,0,50,0,0,0,3,3,-9,0,1,0,0,0,0,0,-897.1986979531243,0,-9,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,29.27,22.13,-9,-9,1.666666666666667,1,1,0,1,0,12,2,0,420,89149.50244252557,0,0,0,627.9161042254088 -2203,2753,4965,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-831.6223214246038,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,25.08709890676854,1.454716975527203,0,1,1,0,0,0,47.31,30.91,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,1036,-49195.0175450212,0,0,0,2686.344920580625 -2204,2754,4966,4967,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.344958389052213,8.510871298852132,0,11,-4,59.46382951107754,0,2,2,2019,18,7,41,40,1,7,0,12.60668577190531,12.60668577190531,0,0,0,0,7,0,0,0,3.102951161012203,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1200,22716.09786073409,0,0,0,3543.263273630706 -2204,2754,4967,4966,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.398922327543234,8.269641597737051,0,11,4,52.5999640642526,0,3,3,2019,6,0,37,35,1,0,0,12.74454932745447,12.74454932745447,0,0,0,0,0,0,0,0,3.708535343298195,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,8,6,5,1,1200,22716.09786073409,0,0,0,3543.263273630706 -2205,2755,4968,4969,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.258387424380551,8.065941559342134,7.149400690553226,4,2,-34.3569510517526,0,2,2,2019,10,0,30,28,1,0,0,6.558557864542218,6.558557864542218,0,0,0,0,0,1,1,0,7.246878576894229,0,54.37,54.8,53,55,6.666666666666667,1,1,0,0,9,1,4,1,1550,10115.37312170251,86975.41725713194,117880.1420626387,88146.55904549651,3884.829639656291 -2205,2755,4969,4968,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.226352655255274,8.511080343127256,0,4,-2,86.43693792539429,-9,-9,-9,2019,9,0,45,0,1,1,0,11.29839590261993,11.29839590261993,0,0,0,0,0,1,1,0,7.143565504892152,0,53,55,54.37,54.8,8,1,1,0,0,1,1,4,1,1550,10115.37312170251,86975.41725713194,117880.1420626387,88146.55904549651,3884.829639656291 -2206,2756,4970,4971,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.092777857517902,8.140237352625695,6.24802925470641,9,10,-239.6954309714407,0,3,3,2019,6,0,40,40,1,0,0,10.87392590673717,10.87392590673717,1,0,33.32266050375457,0,0,1,1,0,7.020070945566863,6.869132351108885,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,9,13,5,1,1651,810336.3211354025,275057.1533671372,317410.229696586,0,4197.109792641475 -2206,2756,4971,4970,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.747180890996054,7.809347864819339,0,9,-10,7.379600253690273,0,3,3,2019,7,0,38,38,1,0,0,8.368697140892081,8.368697140892081,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,6.666666666666667,1,1,0,0,9,13,5,1,1651,810336.3211354025,275057.1533671372,317410.229696586,0,4197.109792641475 -2207,2757,4972,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1118.5287563158,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.943830645851561,0,56,44,-9,-9,8,1,1,0,0,0,2,1,1,1261,141665.4539800307,0,0,0,1650.489655349172 -2207,2758,4973,-9,-9,4972,1,1,59,0,0,0,2,2,-9,0,2,7.917146191679048,7.993642191646673,0,0,0,-782.2801861911191,0,2,2,2019,17,5,12,12,1,5,0,26.77165164890549,26.77165164890549,0,0,0,0,14.5,1,1,0,2.711929886276228,0,40.85,39.8,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,224,232274.8700972544,163877.5474745942,0,0,1529.378352773548 -2208,2759,4974,4975,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.25400908007316,6.965934971562886,7,0,103.7808988024859,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.862557031566194,7.503269219194541,60.59,54.8,58.32,50.22,10,1,1,0,0,3,12,3,1,862,738226.3860237919,342052.4530277809,223983.7992761341,0,3289.645924269116 -2208,2759,4975,4974,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.979943680195858,6.169028802597619,7,0,-66.51361412064406,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.090071248881082,5.857263605749651,58.32,50.22,60.59,54.8,10,1,1,0,0,2,12,3,1,862,738226.3860237919,342052.4530277809,223983.7992761341,0,3289.645924269116 -2209,2760,4976,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,5.786514300088751,5.938955973717361,0,0,-970.7543113128529,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,1.35818943087333,0,25.30034455201424,0,1,1,0,0,5.961044378797988,53.01,20.22,-9,-9,5,1,1,0,0,0,10,2,0,1168,115556.1343396741,112349.4703275932,0,0,2129.072433321523 -2210,2761,4977,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.954161539306362,9.104750257813064,5.976239813601648,0,0,-1058.679199439778,0,-9,-9,2019,6,0,50,45,1,0,0,25.66137142075806,25.66137142075806,0,0,0,0,0,1,1,0,6.003079626683773,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,619,450812.7005604752,152456.6951999016,0,0,3158.344151193376 -2210,2761,4978,-9,4977,-9,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1019.816682557836,-9,1,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,619,450812.7005604752,152456.6951999016,0,0,3158.344151193376 -2210,2761,4979,-9,4977,-9,1,0,17,0,0,1,2,0,0,0,4,0,4.013447606626908,4.295904880318453,0,0,-1118.250889050078,-9,1,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.153456815478246,0,46.16,58.62,-9,-9,8.333333333333334,4,2,0,0,1,9,5,1,619,450812.7005604752,152456.6951999016,0,0,3158.344151193376 -2211,2762,4980,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.359238968668242,7.306393979347688,0,0,-1070.975572259626,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.269647386957299,7.144491223146567,58.47,47.36,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,227,77049.52970143649,144829.1383522771,0,0,1808.638729434773 -2212,2763,4981,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-952.6621979254784,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,7.526295249361046,0,0,1,1,0,0,0,28.85,26.09,-9,-9,3.333333333333333,1,1,0,1,0,2,1,1,444,247386.9276118727,0,99624.88183725,0,927.0797220588772 -2213,2764,4982,4983,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,5.805494339464217,5.555745570070775,8,-1,-24.57027275254158,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,5.69486018779638,0,0,1,1,0,0,5.799004675297554,57.59,25.39,57.09,46.7,8.333333333333334,1,1,0,0,0,12,2,0,242.5,197203.8872075166,-15657.66084224816,88742.67591609483,0,2039.749636373186 -2213,2764,4983,4982,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,1,-85.12545038056531,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.09,46.7,57.59,25.39,8.333333333333334,1,1,0,0,0,12,2,0,242.5,197203.8872075166,-15657.66084224816,88742.67591609483,0,2039.749636373186 -2214,2765,4984,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.614074520027225,7.628846928636341,0,0,0,-995.9785485990441,0,2,2,2019,15,4,28,28,1,4,0,7.618543293391839,7.618543293391839,0,0,0,0,0,0,0,0,0,0,45.18,30.81,-9,-9,8.333333333333334,1,1,0,0,12,6,3,0,2007,82965.90683838431,0,138736.3198927921,0,1145.512498779622 -2215,2766,4985,4986,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,52,-1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.737159779345649,125.9319328637798,49.50109089009877,0,1,1,0,0,0,53.06,21.66,60.68,35.38,6.666666666666667,1,1,0,0,0,7,1,1,703,282862.6966540993,-14869.02133629698,259045.6197300383,0,1480.228059142281 -2215,2766,4986,4985,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,52,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,3.185626035651434,0,20.15040194076038,71.5,1,1,0,.4611551335172873,0,60.68,35.38,53.06,21.66,6.666666666666667,1,1,0,1,0,7,1,1,703,282862.6966540993,-14869.02133629698,259045.6197300383,0,1480.228059142281 -2216,2767,4987,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.441556888577349,8.31365273641269,0,0,0,-1138.25752307309,0,3,3,2019,7,0,35,30,1,0,0,17.09267078093554,17.09267078093554,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,12,9,5,1,652,58291.51247023699,20921.15922848793,0,0,1490.373787524556 -2217,2768,4988,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,6.156821241975314,6.193025791021403,0,0,-1059.528939329065,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,15.92217738961478,0,0,0,1,1,0,6.163417990578226,6.389663138805344,50.56,23.1,-9,-9,5,1,1,0,0,0,7,2,1,247,29162.59692715073,117518.0804884849,0,0,1339.109243639968 -2218,2769,4989,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.224850696460063,8.321161903950879,5.43396753214034,0,0,-848.9585524297611,0,2,2,2019,11,0,36,36,1,0,0,11.04430798510748,11.04430798510748,0,0,0,0,0,1,1,0,5.233289935210483,0,47.77,56.48,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,450,72740.66503990325,-5917.516652029572,143379.2136047447,87579.38582370813,1732.99261312979 -2219,2770,4990,4993,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.904984933083369,8.891369134616829,0,6,0,8.326573494369995,0,-9,-9,2019,6,0,55,55,1,0,0,17.47711616596175,17.47711616596175,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.55,55.06,8.333333333333334,1,1,0,0,7,9,5,1,1819,1456674.0857898,855995.2322798767,546041.9578670545,0,4060.594785623608 -2219,2770,4991,-9,4993,4990,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.158531704084,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1819,1456674.0857898,855995.2322798767,546041.9578670545,0,4060.594785623608 -2219,2770,4992,-9,4993,4990,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.8741754880068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1819,1456674.0857898,855995.2322798767,546041.9578670545,0,4060.594785623608 -2219,2770,4993,4990,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.642872357017443,7.693674167734898,0,6,0,167.0973506325615,0,2,2,2019,9,0,26,21,1,0,0,8.750249255319343,8.750249255319343,0,0,0,0,0,1,1,0,0,0,47.55,55.06,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,1819,1456674.0857898,855995.2322798767,546041.9578670545,0,4060.594785623608 -2220,2771,4994,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,9.454553902650074,9.472219564543529,0,6,18,-6.686309302377826,0,3,2,2019,26,11,30,40,1,11,0,46.50241093603961,46.50241093603961,0,0,0,0,0,0,0,0,0,0,26.39,44.91,47.05,56.66,3.333333333333333,1,1,0,0,6,13,5,1,500,1997315.112612871,1000661.222080248,334482.201739842,0,3180.980133087334 -2220,2772,4995,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.778908442827174,8.701373445844798,0,6,-18,5.367719970996725,0,3,3,2019,8,0,51,52,1,0,0,15.55913076884807,15.55913076884807,0,0,0,0,0,0,0,0,0,0,47.05,56.66,26.39,44.91,8.333333333333334,1,1,0,0,6,13,5,1,287,460538.2251329001,146823.3679245731,0,0,2301.005434990591 -2221,2773,4996,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1078.816624155157,-9,-9,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.09999999999999,39.96,-9,-9,8.333333333333334,1,1,0,0,3,9,2,0,1137,0,0,0,0,378.7037552599567 -2222,2774,4997,4998,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,1,-3,0,-9,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,14.09240941528342,27.35266980930805,135.4533701045422,0,1,1,0,0,0,40.61,26.05,40.12,40.88,3.333333333333333,2,3,0,1,0,2,2,1,263,60356.21701570356,44851.21129259489,85809.38191276512,0,2317.158510286176 -2222,2774,4998,4997,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,0,0,1,3,0,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.12,40.88,40.61,26.05,5,2,3,0,0,0,2,2,1,263,60356.21701570356,44851.21129259489,85809.38191276512,0,2317.158510286176 -2223,2775,4999,5000,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,7.84977250289203,8.084545422866823,0,7,-4,52.76473593989692,0,-9,-9,2019,8,0,6,3,1,0,0,56.56513742780354,56.56513742780354,0,0,0,0,14.5,1,1,0,8.262622439974175,0,60.28,46.44,53,54,8.333333333333334,1,1,0,0,4,10,4,1,572,415513.4199435068,225868.6200822872,329580.8512582754,206379.2706092598,5431.054346405027 -2223,2775,5000,4999,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,8.535420804313061,8.545818253050125,0,7,4,-46.36963002888624,0,2,2,2019,9,0,40,32,1,1,0,13.31028856260595,13.31028856260595,0,0,0,0,0,1,1,0,3.306578884977502,0,53,54,60.28,46.44,8,1,1,0,0,1,10,4,1,572,415513.4199435068,225868.6200822872,329580.8512582754,206379.2706092598,5431.054346405027 -2223,2775,5001,-9,4999,5000,1,0,16,0,2,1,2,0,-9,1,5,0,0,0,0,0,-987.2095022274378,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.093192369845138,0,39.86,45.32,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,572,415513.4199435068,225868.6200822872,329580.8512582754,206379.2706092598,5431.054346405027 -2223,2775,5002,-9,4999,5000,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1051.076528347388,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,1,572,415513.4199435068,225868.6200822872,329580.8512582754,206379.2706092598,5431.054346405027 -2224,2776,5003,5004,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,10,2,67.45787781235835,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.14,51.28,43.61,46.08,8.333333333333334,1,1,0,0,8,7,2,1,218,800037.3098342062,414756.7832707322,351880.1291873882,0,1127.41484815917 -2224,2776,5004,5003,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.357136304416836,7.628226862637311,10,-2,-1.479923771895155,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.504456781452547,7.571454102294561,43.61,46.08,53.14,51.28,6.666666666666667,1,1,0,0,0,7,2,1,218,800037.3098342062,414756.7832707322,351880.1291873882,0,1127.41484815917 -2225,2777,5005,5006,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.58636991211948,8.599839400388225,0,7,-1,100.0394396678437,0,3,3,2019,10,0,37,38,1,1,0,13.52730503477185,13.52730503477185,0,0,0,0,0,1,1,0,0,0,52,48,34.54,51.79,7,1,1,0,0,1,7,4,1,428.5,1350068.858825124,924488.7384988376,396165.4804640678,0,2332.031655938427 -2225,2777,5006,5005,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,7,1,87.18402085358915,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.463746859158563,0,34.54,51.79,52,48,1.666666666666667,1,1,0,0,6,7,4,1,428.5,1350068.858825124,924488.7384988376,396165.4804640678,0,2332.031655938427 -2225,2778,5007,-9,5006,-9,1,1,42,0,0,0,2,2,-9,0,4,7.453100500718301,7.607021250372173,0,0,0,-1076.741099148329,0,3,-9,2019,9,0,30,30,1,1,0,6.352638459601049,6.352638459601049,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,7,3,1,351,-35109.64770674597,0,0,0,974.5008167120593 -2225,2779,5008,-9,5006,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1101.614158285641,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,1,0,0,7,1,1,728,0,0,0,0,2.609857498483166 -2226,2780,5009,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.310957376609945,8.272309029777,0,0,0,-871.8444303267611,0,2,2,2019,6,0,49,47,1,0,0,8.726633490957502,8.726633490957502,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,571,444770.5386587309,74396.11318696663,257327.3178180265,0,2002.568289696627 -2227,2781,5010,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.538468302446358,8.430668428027799,0,0,0,-917.3643451302104,0,2,2,2019,11,1,43,40,1,1,0,14.93331772677909,14.93331772677909,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,122,208371.2310012365,-46009.5798746099,0,0,2130.423324465901 -2228,2782,5011,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.359454169735477,8.990895851239978,0,0,0,-969.2626206441087,0,2,1,2019,32,12,58,63,1,12,0,11.61107199031907,11.61107199031907,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,-9,-9,3.333333333333333,1,1,0,0,4,8,5,0,268,198284.3094459844,0,0,0,2089.795720014543 -2228,2783,5012,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.378410578944132,8.417792062508063,0,0,0,-944.4026923668303,0,-9,-9,2019,4,0,42,45,1,0,0,11.99369623863476,11.99369623863476,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,2,8,4,0,545,150704.2436091749,67670.33310146003,0,0,1883.160052375373 -2229,2784,5013,5014,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.311470118475752,8.345318426955144,7.14072073765421,46,7,7.587001000851768,0,3,3,2019,6,0,15,25,1,0,0,29.01335749556757,29.01335749556757,0,0,0,0,0,0,0,0,0,7.37276459534665,57.16,56.15,52,53,8.333333333333334,1,1,0,0,10,12,5,1,344.5,1260469.808495817,1076417.183859301,170912.3486088719,0,4142.182540705122 -2229,2784,5014,5013,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.476254914565889,8.7425054689242,0,4,-7,30.2359065949089,0,3,3,2019,10,0,40,40,1,1,0,15.60245179885249,15.60245179885249,0,0,0,0,0,0,0,0,0,0,52,53,57.16,56.15,8,1,1,0,0,1,12,5,1,344.5,1260469.808495817,1076417.183859301,170912.3486088719,0,4142.182540705122 -2230,2785,5015,5016,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,6,0,-131.9073255649233,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.66,29.1,54.2,57.49,0,1,1,1,1,0,6,3,1,1792,11455.94776274737,0,0,0,962.4731242498149 -2230,2785,5016,5015,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.798944550230082,7.820005945065271,0,6,0,-146.6812956574236,0,3,2,2019,6,0,50,45,1,0,0,6.840469834257096,6.840469834257096,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.66,29.1,8.333333333333334,1,1,0,1,8,6,3,1,1792,11455.94776274737,0,0,0,962.4731242498149 -2231,2786,5017,5020,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,17,5,11.58923947967091,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,57.16,56.15,10,1,1,1,0,0,6,3,0,1037,16944.9796123279,80578.00114801858,0,0,3590.888729865874 -2231,2786,5018,-9,5017,5020,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.4789043647412,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1037,16944.9796123279,80578.00114801858,0,0,3590.888729865874 -2231,2786,5019,-9,5017,5020,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.666322483674,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,1037,16944.9796123279,80578.00114801858,0,0,3590.888729865874 -2231,2786,5020,5017,-9,-9,1,1,37,0,2,0,2,2,-9,1,4,8.527714280719827,8.480617731885571,0,19,-5,18.46115143782178,0,-9,3,2019,6,0,45,0,1,0,0,13.448483123105,13.448483123105,0,0,0,0,0,1,0,1,0,0,57.16,56.15,57.16,56.15,0,1,1,0,0,9,6,3,0,1037,16944.9796123279,80578.00114801858,0,0,3590.888729865874 -2232,2787,5021,5022,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,56,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,.5070920781793919,71.5,1,1,0,0,0,54.96,53.17,56.99,24,8.333333333333334,1,1,0,0,0,6,1,1,958,105976.5456259534,-701.9991360286149,0,0,2613.85630159249 -2232,2787,5022,5021,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,56,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.99,24,54.96,53.17,8.333333333333334,1,1,0,0,0,6,1,1,958,105976.5456259534,-701.9991360286149,0,0,2613.85630159249 -2232,2788,5023,-9,5022,5021,1,1,43,0,0,0,2,2,-9,0,3,7.977378116134727,7.964284372043676,0,0,0,-988.4082808961803,0,3,3,2019,10,0,40,40,1,0,0,9.203482532707147,9.203482532707147,0,0,0,0,0,1,1,0,0,0,59.04,48.6,-9,-9,1.666666666666667,1,1,0,0,12,6,4,1,847,156664.5182306327,98362.6039212804,0,0,1831.109948918405 -2233,2789,5024,-9,5026,5025,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-928.3226776120822,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,512.3333333333334,171073.9561942698,199202.1470008873,111668.4312583522,76271.32614767736,2789.700196070074 -2233,2789,5025,5026,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.001065026622086,7.922438473772634,0,4,6,-67.79115232759459,0,-9,-9,2019,7,0,40,40,1,0,0,7.034760405843815,7.034760405843815,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,11,4,1,512.3333333333334,171073.9561942698,199202.1470008873,111668.4312583522,76271.32614767736,2789.700196070074 -2233,2789,5026,5025,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.253180566827515,8.401510345409484,0,4,-6,33.75498074557404,0,2,2,2019,12,0,30,32,1,0,0,17.63159751961738,17.63159751961738,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,6.666666666666667,1,1,0,0,8,11,4,1,512.3333333333334,171073.9561942698,199202.1470008873,111668.4312583522,76271.32614767736,2789.700196070074 -2234,2790,5027,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.339417429149179,9.078723617294145,0,0,-995.5946751570004,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.939358575833826,8.711871745092152,47.01,58,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,1263,1248218.388645856,1083138.882671999,10788.92393922005,9199.496320271737,4720.32918905502 -2235,2791,5028,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.944118542535392,9.102652079052854,0,0,0,-944.8322774211044,0,2,2,2019,10,0,40,45,1,0,0,27.29766009644083,27.29766009644083,0,0,0,0,0,1,1,0,7.24020103722328,0,53.54,46.82,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,698,200291.1249825224,118081.4608661751,0,0,3499.872263344312 -2236,2792,5029,5031,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.624163308758302,8.951076058243382,0,24,1,5.775331675407012,0,2,2,2019,6,0,36,41,1,0,0,20.77594628236866,20.77594628236866,0,0,0,0,14.5,1,1,0,6.964634488390613,0,50.83,42.63,55.19,54.26,5,1,1,0,0,9,13,5,0,558,410446.6403323752,243528.8610363248,405309.1630415474,223948.1436537864,5743.413735062418 -2236,2792,5030,-9,5029,5031,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-895.5214198701774,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,0,558,410446.6403323752,243528.8610363248,405309.1630415474,223948.1436537864,5743.413735062418 -2236,2792,5031,5029,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.933799763530853,8.82728398036207,0,24,-1,-94.11080284986312,0,3,3,2019,12,0,60,70,1,0,0,16.11009641185186,16.11009641185186,0,0,0,0,7,1,1,0,0,0,55.19,54.26,50.83,42.63,8.333333333333334,1,1,0,0,9,13,5,0,558,410446.6403323752,243528.8610363248,405309.1630415474,223948.1436537864,5743.413735062418 -2237,2793,5032,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,7.98766655188225,8.128006323217354,0,0,0,-1014.858042151583,0,2,1,2019,6,0,64,35,1,0,0,6.637279382899227,6.637279382899227,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,6,4,1,802,303280.84525052,330294.1201506645,179796.0287264823,30772.50345534666,1175.763939762268 -2238,2794,5033,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,9.399665348330725,8.917611415345483,0,0,-1068.485948756861,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.514985288971831,9.080717312464273,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,819,1417962.236714249,131272.4702871015,67300.62465723557,0,4151.07650779866 -2239,2795,5034,5035,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,0,0,0,3,2,-50.6482151647057,-9,-9,-9,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,42.36,45.47,54.2,57.49,6.666666666666667,1,1,1,0,9,12,5,0,949.5,310174.6747235982,164959.0833039809,198751.6773451917,66519.37088204644,3112.738352125332 -2239,2795,5035,5034,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.840145176764448,9.210404501850599,0,3,-2,14.46631818739401,-9,-9,-9,2019,7,0,40,0,1,0,0,31.83985865185711,31.83985865185711,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.36,45.47,8.333333333333334,1,1,0,0,5,12,5,0,949.5,310174.6747235982,164959.0833039809,198751.6773451917,66519.37088204644,3112.738352125332 -2240,2796,5036,5037,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.71928099547834,7.724827998497307,38,0,-80.74868466008334,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,2.154742646387026,0,1,1,0,2.175953939552854,7.861048715321795,56.63,30.9,57.06,57.76,8.333333333333334,1,1,0,0,1,2,3,1,715,1301465.311543772,1196455.471508572,279541.221356686,103464.2799150319,2897.842625323232 -2240,2796,5037,5036,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.66302413760418,7.413045669383789,0,8,0,14.80221093763133,0,-9,-9,2019,6,0,10,8,1,0,0,17.09493635103857,17.09493635103857,0,0,0,0,14.5,1,1,0,2.298826494861529,0,57.06,57.76,56.63,30.9,8.333333333333334,1,1,0,0,9,2,3,1,715,1301465.311543772,1196455.471508572,279541.221356686,103464.2799150319,2897.842625323232 -2241,2797,5038,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.529849640446093,8.530296662107798,5.280172327361118,0,0,-979.3199580000118,0,2,2,2019,22,8,43,40,1,8,0,11.94505813396179,11.94505813396179,0,0,0,0,0,1,1,0,5.991266660217228,0,28.1,60.27,-9,-9,1.666666666666667,1,1,0,0,9,7,4,1,286.5,1156520.001165723,187034.6700724047,693844.4414160803,0,1845.347460009662 -2241,2797,5039,-9,5038,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1088.615574009916,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,4,1,286.5,1156520.001165723,187034.6700724047,693844.4414160803,0,1845.347460009662 -2242,2798,5040,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.233953974754,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.990596089572849,0,0,1,1,0,0,0,36.79,35.01,-9,-9,1.666666666666667,1,1,0,0,3,13,1,0,132,39100.88409014383,-95611.89639238168,179638.1169548319,5187.45819410723,1172.086084783434 -2243,2799,5041,-9,5043,5044,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.712864144871,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,562.6,304999.3408686294,13678.29842278529,506299.9199740066,272103.9648594087,6305.963523326801 -2243,2799,5042,-9,5043,5044,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.767205868649,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,562.6,304999.3408686294,13678.29842278529,506299.9199740066,272103.9648594087,6305.963523326801 -2243,2799,5043,5044,-9,-9,1,0,38,1,3,0,1,1,-9,0,5,0,0,0,14,-2,34.30698775205917,0,1,1,2019,11,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,2.974902884266734,0,40.05,61.22,50,56,8.333333333333334,1,1,0,0,8,9,5,1,562.6,304999.3408686294,13678.29842278529,506299.9199740066,272103.9648594087,6305.963523326801 -2243,2799,5044,5043,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,9.936229913061108,9.540991876689299,0,14,2,54.69917986598066,-9,2,2,2019,10,0,50,0,1,1,0,43.77118547569496,43.77118547569496,0,0,0,0,0,0,0,0,.1076103466244143,0,50,56,40.05,61.22,7,1,1,0,0,1,9,5,1,562.6,304999.3408686294,13678.29842278529,506299.9199740066,272103.9648594087,6305.963523326801 -2243,2799,5045,-9,5043,5044,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.672308384627,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,562.6,304999.3408686294,13678.29842278529,506299.9199740066,272103.9648594087,6305.963523326801 -2244,2800,5046,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.105435663486988,8.085744966399965,0,0,0,-1085.559696599351,0,1,1,2019,8,1,50,35,1,1,0,7.777515377461671,7.777515377461671,0,0,0,.0955116725732523,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,960,735064.8539360744,468562.8775178138,393300.2478081686,88490.31835435779,1321.849566523446 -2245,2801,5047,5048,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.792250794892873,8.068267374832201,0,9,1,-92.03215903774314,0,2,-9,2019,6,0,40,40,1,0,0,7.034433417346724,7.034433417346724,0,0,0,0,0,0,0,0,.3445788647776494,0,57.06,57.76,57.33,53.46,0,1,1,0,0,10,4,3,1,526.5,1001075.333253037,729434.531639968,283589.8643546936,0,1501.603298886168 -2245,2801,5048,5047,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,0,0,9,-1,23.46205272365681,0,2,3,2019,9,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,.738497944382682,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,1,0,10,4,3,1,526.5,1001075.333253037,729434.531639968,283589.8643546936,0,1501.603298886168 -2245,2802,5049,-9,5047,5048,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-944.8483028111883,0,2,1,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.526435768342272,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,0,4,1,1,612,10162.21306514744,0,0,0,148.9355305262633 -2246,2803,5050,-9,5051,5053,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.555427658514,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,752.25,462007.6643146727,96606.27677802272,540617.6629969738,227324.7943287055,5676.766651014269 -2246,2803,5051,5053,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.602261608801193,8.758468009974493,0,8,-1,-95.19029906785043,0,1,2,2019,7,0,44,48,1,0,0,17.02724623950866,17.02724623950866,0,0,0,0,0,1,1,0,1.667727526369067,0,49.86,55.31,49.86,55.31,8.333333333333334,1,1,0,0,12,9,5,1,752.25,462007.6643146727,96606.27677802272,540617.6629969738,227324.7943287055,5676.766651014269 -2246,2803,5052,-9,5051,5053,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.887784468536,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,752.25,462007.6643146727,96606.27677802272,540617.6629969738,227324.7943287055,5676.766651014269 -2246,2803,5053,5051,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,9.259490276082941,9.427647648205278,0,8,1,-38.10968421583759,0,2,2,2019,7,0,77,77,1,0,0,15.20228881048958,15.20228881048958,0,0,0,0,0,1,1,0,3.22506418689551,0,49.86,55.31,49.86,55.31,8.333333333333334,1,1,0,0,12,9,5,1,752.25,462007.6643146727,96606.27677802272,540617.6629969738,227324.7943287055,5676.766651014269 -2247,2804,5054,-9,-9,-9,1,0,56,1,1,0,2,2,-9,0,4,8.44118665051235,8.201352339610285,0,0,0,-891.2548721835884,-9,3,3,2019,6,0,36,0,1,0,0,10.96683782110961,10.96683782110961,0,0,0,0,2,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,724,98397.18795279705,201972.8775911388,172985.6815628982,107628.4215356975,1159.557112581645 -2247,2805,5055,-9,5054,-9,1,0,22,1,1,0,2,2,-9,0,4,7.82228488661521,7.927901915798004,0,0,0,-906.4370302857228,-9,2,-9,2019,6,0,38,0,1,0,1,8.172414538831797,8.172414538831797,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,394,-132779.1459797277,66169.09111846819,0,0,1366.375442838208 -2248,2806,5056,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.530238319718706,6.500886431449737,0,0,-1157.772745193412,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.265741907353262,36.79,45.74,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1430,229507.7757630793,228497.382887514,0,0,1339.662976006545 -2249,2807,5057,-9,5059,5058,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.6386627999661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,729.75,1513806.474911428,74662.66535351833,1011047.155229457,236264.8184893943,2111.365473145893 -2249,2807,5058,5059,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.132149919496372,8.411326537037601,0,9,3,78.81379772975579,0,-9,-9,2019,10,2,40,40,1,2,0,15.9026617134727,15.9026617134727,0,0,0,0,0,1,1,0,0,0,51.71,59.93,41.71,59.04,8.333333333333334,1,1,0,0,5,7,3,0,729.75,1513806.474911428,74662.66535351833,1011047.155229457,236264.8184893943,2111.365473145893 -2249,2807,5059,5058,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,22,-3,-123.2723706081875,0,3,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.71,59.04,51.71,59.93,8.333333333333334,1,1,1,0,3,7,3,0,729.75,1513806.474911428,74662.66535351833,1011047.155229457,236264.8184893943,2111.365473145893 -2249,2807,5060,-9,5059,5058,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.2169727349226,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.98917438713405,0,54.2,57.49,-9,-9,10,1,1,0,0,0,7,3,0,729.75,1513806.474911428,74662.66535351833,1011047.155229457,236264.8184893943,2111.365473145893 -2250,2808,5061,-9,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,0,0,0,0,0,-871.9687541335729,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.17,38.71,-9,-9,3.333333333333333,3,4,1,0,0,2,1,0,1044,502023.3693861483,553845.7022637946,0,0,1571.42472594011 -2250,2808,5062,-9,-9,5061,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.107702519768,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,2,1,0,1044,502023.3693861483,553845.7022637946,0,0,1571.42472594011 -2251,2809,5063,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.150707452083893,8.045401998951178,0,0,0,-927.6029739447522,-9,-9,-9,2019,12,0,40,0,1,2,0,11.05869102798835,11.05869102798835,0,0,0,0,0,0,0,0,0,0,46.23,31.53,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,382,-90240.69163060433,-3548.412069600356,0,0,1690.953432027649 -2252,2810,5064,5065,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.862549869451458,8.78484100886733,0,19,-5,-.1282656853264659,-9,2,2,2019,7,0,43,0,1,0,0,18.72506498646542,18.72506498646542,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.28,48.88,10,1,1,0,0,11,9,5,1,608,288700.2009204713,-609.357001890603,259525.4019091917,84883.65255875236,4525.752467287179 -2252,2810,5065,5064,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.035532125736617,8.119750833282838,0,20,5,-56.28910579465539,-9,3,-9,2019,6,0,42,0,1,0,0,9.222247156332902,9.222247156332902,0,0,0,0,0,1,1,0,0,0,61.28,48.88,57.16,56.15,10,1,1,0,0,10,9,5,1,608,288700.2009204713,-609.357001890603,259525.4019091917,84883.65255875236,4525.752467287179 -2253,2811,5066,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-962.2176571522677,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,14.86,53.05,-9,-9,5,1,1,1,0,0,6,1,0,211,215956.8284641114,0,0,0,1054.954469837645 -2254,2812,5067,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.708331717612913,6.771692363127905,0,0,-1017.676266432937,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.048697553403799,6.695188947600789,67.51000000000001,35.12,-9,-9,10,1,1,0,0,0,10,2,0,310,425566.7069058758,5476.086208023858,166478.043083888,0,413.9036959938019 -2255,2813,5068,-9,5070,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1150.574486950085,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,321.6666666666667,164017.1329745995,1282.317815367736,287831.3406210846,127303.8447164588,2123.066224622529 -2255,2813,5069,-9,5070,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.018678190247,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,321.6666666666667,164017.1329745995,1282.317815367736,287831.3406210846,127303.8447164588,2123.066224622529 -2255,2813,5070,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.600284468435158,7.907624948101137,0,0,0,-1065.130657507555,0,2,2,2019,18,6,32,30,1,6,0,6.640113674923483,6.640113674923483,0,0,0,0,0,1,1,0,0,0,34.79,57.07,-9,-9,5,1,1,0,0,8,2,3,0,321.6666666666667,164017.1329745995,1282.317815367736,287831.3406210846,127303.8447164588,2123.066224622529 -2256,2814,5071,5072,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.172884034392538,9.109863123750522,0,29,1,-241.4561719489958,0,3,3,2019,10,1,45,68,1,1,0,22.63260611456768,22.63260611456768,0,0,0,0,0,0,0,0,4.530213498650767,0,49.41,56.95,56.33,51.02,5,1,1,0,0,10,6,5,1,751,267479.0962811785,-35325.20540077551,203530.166696214,171249.4463062599,4221.58266677071 -2256,2814,5072,5071,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.716999767504964,7.825293384783208,0,16,-1,-95.86068052512105,0,3,3,2019,12,0,36,28,1,0,0,6.886797714573976,6.886797714573976,0,0,0,0,0,0,0,0,4.097423689466053,0,56.33,51.02,49.41,56.95,8.333333333333334,1,1,0,0,10,6,5,1,751,267479.0962811785,-35325.20540077551,203530.166696214,171249.4463062599,4221.58266677071 -2257,2815,5073,5074,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.492501660485168,8.143031111815468,0,7,8,12.49702934581752,0,2,1,2019,13,1,37,37,1,1,0,17.04402661924411,17.04402661924411,0,0,0,0,0,0,0,0,0,0,36.89,57.17,20.32,52.93,5,1,1,0,0,8,5,5,1,763,754270.6417675675,499246.9869296626,170858.3649728561,15898.92245618896,2778.581595932652 -2257,2815,5074,5073,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.029948862569142,7.959653380612304,0,7,-8,77.63623221626818,0,2,2,2019,24,12,45,44,1,12,0,7.744118645272344,7.744118645272344,0,0,0,0,0,0,0,0,0,0,20.32,52.93,36.89,57.17,5,1,1,0,0,8,5,5,1,763,754270.6417675675,499246.9869296626,170858.3649728561,15898.92245618896,2778.581595932652 -2258,2816,5075,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.765585855382686,7.81886012076997,0,0,0,-862.4337256516225,0,3,2,2019,11,0,32,31,1,0,0,7.354133579847852,7.354133579847852,0,0,0,0,0,1,1,0,0,0,53.47,45.9,-9,-9,8.333333333333334,1,1,0,1,6,6,3,0,250,90887.1496192599,10620.04251159491,0,0,1037.541276462759 -2258,2817,5076,-9,5075,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-997.8868748094485,1,2,-9,2019,12,0,0,10,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,1,0,688,0,0,0,0,0 -2259,2818,5077,-9,5078,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.1436301670573,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,989,157336.0371769444,24413.81043709155,174526.1030911212,0,2924.700579257566 -2259,2818,5078,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.485010927654955,8.580276605535005,0,0,0,-947.0937364620108,0,1,1,2019,9,0,25,40,1,0,0,28.00503525504521,28.00503525504521,0,0,0,0,0,1,1,0,4.84890278731198,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,989,157336.0371769444,24413.81043709155,174526.1030911212,0,2924.700579257566 -2260,2819,5079,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-820.661912911375,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.575068197628565,0,57.77,44.12,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1312,80573.17606686841,0,161257.3771855292,0,879.515464212554 -2261,2820,5080,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.432324890135083,7.538735677819706,5.391464806552879,0,0,-1047.453676520524,0,2,-9,2019,14,4,27,0,1,4,0,6.282094548047065,6.282094548047065,0,0,0,0,7,1,1,0,5.797736168041142,0,54.1,41.15,-9,-9,5,1,1,0,0,8,13,3,1,682,69830.59329331879,0,0,0,2318.774668954635 -2261,2820,5081,-9,5080,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.943242554082,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,682,69830.59329331879,0,0,0,2318.774668954635 -2262,2821,5082,-9,5083,5084,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.387660727595,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,952.5,524439.1377028016,283266.0212704535,358639.4417867863,169800.2298955471,4175.288637122223 -2262,2821,5083,5084,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,8.137619152261033,8.17773101199783,0,19,-8,34.07337431020859,0,2,3,2019,17,5,38,35,1,5,0,12.82357718931439,12.82357718931439,0,0,0,0,0,1,1,0,1.893607538002026,0,39.32,54.04,55,56,3.333333333333333,2,3,0,0,12,7,4,1,952.5,524439.1377028016,283266.0212704535,358639.4417867863,169800.2298955471,4175.288637122223 -2262,2821,5084,5083,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,8.93958227898543,9.000217837518743,0,19,8,3.526968544043981,0,-9,-9,2019,8,1,50,46,1,1,0,16.78433750323801,16.78433750323801,0,0,0,0,0,1,1,0,4.338094687950316,0,55,56,39.32,54.04,6.666666666666667,3,4,0,0,13,7,4,1,952.5,524439.1377028016,283266.0212704535,358639.4417867863,169800.2298955471,4175.288637122223 -2262,2821,5085,-9,5083,5084,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.201772669054,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,2,-9,0,0,7,4,1,952.5,524439.1377028016,283266.0212704535,358639.4417867863,169800.2298955471,4175.288637122223 -2263,2822,5086,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.03810898691022,7.011277110737156,35,9,66.96735797352943,0,-9,-9,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,4.763940302111378,6.948137390865035,46.08,57.2,52,53,6.666666666666667,1,1,0,0,5,5,3,1,2733,394937.8293624246,442736.4933219206,106050.9737666626,0,495.4682474353033 -2263,2823,5087,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.99595544343963,7.787090108916911,0,4,0,5.564258188884398,0,-9,-9,2019,10,0,32,40,1,1,0,8.856309711811889,8.856309711811889,0,0,0,0,0,1,1,0,3.111787768156965,0,52,53,46.08,57.2,8,1,1,0,0,1,5,3,1,864,396040.1840230512,392189.7745245459,2022.447582922632,0,757.3581379595911 -2264,2824,5088,5089,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,7.562898559550701,7.542860757372513,6,1,-90.95362862307856,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,7.480573102589846,24.11,22.84,23.98,36.98,3.333333333333333,1,1,0,0,10,5,3,1,1175.5,846618.2819967421,479802.6101515961,174367.3300874725,0,1616.312069529514 -2264,2824,5089,5088,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,6,-1,58.87724194858496,-9,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,71.5,1,1,0,0,0,23.98,36.98,24.11,22.84,3.333333333333333,1,1,1,1,0,5,3,1,1175.5,846618.2819967421,479802.6101515961,174367.3300874725,0,1616.312069529514 -2265,2825,5090,5091,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,7.965619095148167,8.149522556191341,0,6,6,-74.53421839123018,0,2,3,2019,10,1,43,40,1,1,0,7.965513846893301,7.965513846893301,0,0,0,0,0,1,1,0,0,0,47.31,50.2,36,51.15,8.333333333333334,1,1,0,0,9,12,3,1,913.75,201281.330832632,0,88399.82011060376,0,1865.514499536289 -2265,2825,5091,5090,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,6,-6,34.34871713333681,0,2,3,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36,51.15,47.31,50.2,8.333333333333334,1,1,0,0,0,12,3,1,913.75,201281.330832632,0,88399.82011060376,0,1865.514499536289 -2265,2825,5092,-9,5091,5090,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.588855826796,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,913.75,201281.330832632,0,88399.82011060376,0,1865.514499536289 -2265,2825,5093,-9,5091,5090,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.047042318787,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,913.75,201281.330832632,0,88399.82011060376,0,1865.514499536289 -2266,2826,5094,5095,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.286609317444041,5.891573741798951,51,3,-3.472483002502441,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,5.940827867182422,47.05,42.96,48.01,31.87,0,1,1,0,0,0,10,2,0,608.5,365915.0695309705,162518.6805697163,253603.8264558497,0,1753.136089756199 -2266,2826,5095,5094,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,3.404286958979374,3.612405432373484,51,-3,16.333693417673,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.37316137869174,3.361620926324436,48.01,31.87,47.05,42.96,5,1,1,0,0,8,10,2,0,608.5,365915.0695309705,162518.6805697163,253603.8264558497,0,1753.136089756199 -2267,2827,5096,5097,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,2.250065258043736,2.171223285293895,36,2,-98.40580586724667,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.660032279417332,0,58.31,42.52,62.39,32.43,8.333333333333334,1,1,0,0,1,10,2,1,465,449864.3053897574,-44560.40485697451,489898.9821394767,0,-214.6182587251981 -2267,2827,5097,5096,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,36,-2,83.80712382671921,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.900928291432573,0,62.39,32.43,58.31,42.52,10,1,1,0,0,6,10,2,1,465,449864.3053897574,-44560.40485697451,489898.9821394767,0,-214.6182587251981 -2268,2828,5098,5099,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.628671101908249,7.525665022303396,36,1,91.85400551287545,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.865782990678206,7.442699404020722,42.27,33.62,55,53,8.333333333333334,1,1,0,0,8,9,4,1,1304.5,2051562.988479038,1230400.316866059,513443.5343205002,0,2361.64867754145 -2268,2828,5099,5098,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.367131759436958,8.013527948895719,36,-1,-85.16970706416258,-9,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.197798232349241,55,53,42.27,33.62,8,1,1,0,0,0,9,4,1,1304.5,2051562.988479038,1230400.316866059,513443.5343205002,0,2361.64867754145 -2269,2829,5100,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,6.959347305462186,6.809788835326665,0,0,0,-975.5096964657225,0,2,-9,2019,10,0,30,40,1,0,0,4.174214243236162,4.174214243236162,0,0,0,0,0,1,0,1,0,0,50.27,48.86,-9,-9,1.666666666666667,1,1,0,1,8,6,3,0,958,189813.6309538796,0,234651.0920905566,0,752.413997620331 -2270,2830,5101,-9,-9,-9,1,0,27,0,1,0,3,3,-9,0,2,0,0,0,0,0,-860.2644142248969,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.51,45.85,-9,-9,5,1,1,1,0,0,11,2,0,965.5,38821.4141265652,0,0,0,1198.846217760306 -2270,2830,5102,-9,5101,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.670527129945,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.000090649762438,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,965.5,38821.4141265652,0,0,0,1198.846217760306 -2271,2831,5103,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.040907058123329,8.278601130199077,0,0,0,-993.8248596027742,0,1,2,2019,5,0,32,40,1,0,0,13.37043688248105,13.37043688248105,0,0,0,0,0,0,0,0,0,0,56.35,51.16,-9,-9,8.333333333333334,2,3,0,0,9,5,3,0,801.5,-33826.94688135807,138656.0455382533,0,0,1691.224428573073 -2271,2831,5104,-9,5103,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.775924234122,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,0,801.5,-33826.94688135807,138656.0455382533,0,0,1691.224428573073 -2272,2832,5105,5106,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.991648746560227,7.62136867654795,0,6,-7,51.51342131518275,0,-9,-9,2019,12,0,34,28,1,0,0,9.635394611480143,9.635394611480143,0,0,0,0,0,0,0,0,0,0,46.1,59.99,34.21,51.94,8.333333333333334,1,1,0,0,7,12,4,0,943,15286.34298959107,-75189.68994865249,0,0,1898.957212069358 -2272,2832,5106,5105,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.73750811322756,7.519821278806766,0,6,7,-8.257751757299317,0,-9,-9,2019,12,0,38,30,1,0,0,6.856550224505488,6.856550224505488,0,0,0,0,0,0,0,0,0,0,34.21,51.94,46.1,59.99,3.333333333333333,1,1,0,0,5,12,4,0,943,15286.34298959107,-75189.68994865249,0,0,1898.957212069358 -2273,2833,5107,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.129468716545093,7.06582476365534,0,0,0,-1137.65948843586,0,-9,-9,2019,6,0,15,20,1,0,0,9.111459764658777,9.111459764658777,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,1,8,2,2,0,1385,18740.65929815421,0,0,0,723.9872719378276 -2273,2833,5108,-9,5107,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.561296796225,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,1385,18740.65929815421,0,0,0,723.9872719378276 -2274,2834,5109,5111,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,6.834068781684926,6.924712823439696,0,6,7,126.8456242185345,-9,-9,-9,2019,10,0,45,0,1,0,0,2.320401757656383,2.320401757656383,0,0,0,0,0,0,0,0,7.390748897356456,0,61.2,31.05,42.36,56.12,6.666666666666667,1,1,0,0,10,9,5,1,859,600583.8698529506,403052.5327292262,288609.5303001071,139853.1335397841,3549.88559361857 -2274,2834,5110,-9,5111,5109,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.987117315943,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,859,600583.8698529506,403052.5327292262,288609.5303001071,139853.1335397841,3549.88559361857 -2274,2834,5111,5109,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.999048162049787,8.844579649769324,0,6,-7,-39.61413356619462,0,2,2,2019,11,1,37,0,1,1,0,27.31079980785308,27.31079980785308,0,0,0,0,0,0,0,0,4.473170128093556,0,42.36,56.12,61.2,31.05,6.666666666666667,1,1,0,0,9,9,5,1,859,600583.8698529506,403052.5327292262,288609.5303001071,139853.1335397841,3549.88559361857 -2275,2835,5112,-9,5113,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1022.1605646522,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,557,963746.16079148,817805.2567644275,159611.2752085885,48196.17840013315,1984.02430800814 -2275,2835,5113,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.127371340480833,8.243518734588589,0,0,0,-903.0785046163428,-9,3,2,2019,6,0,35,0,1,0,0,14.38725137499341,14.38725137499341,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,557,963746.16079148,817805.2567644275,159611.2752085885,48196.17840013315,1984.02430800814 -2275,2836,5114,-9,5113,-9,1,0,24,0,1,0,2,2,-9,0,4,8.099604221623094,7.858438813148886,0,0,0,-996.5341804088204,-9,2,3,2019,10,0,50,0,1,0,1,7.393215108243123,7.393215108243123,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,7,2,4,1,873,-256004.1980058111,-119454.0857196282,0,0,1092.633650855084 -2276,2837,5115,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,0,0,-960.5494310090853,0,2,2,2019,25,12,0,0,4,12,0,0,0,1,0,28.9099177236353,0,0,1,1,0,0,0,32.51,25.74,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,311,-105523.0240514378,0,0,0,837.7886212593036 -2277,2838,5116,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.271762429002,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,35.2055700531284,0,0,1,1,0,0,0,62.67,25.08,-9,-9,10,1,1,0,0,0,1,1,0,646,391759.9446263576,0,54282.85068884994,0,779.8088510716224 -2278,2839,5117,5118,-9,-9,1,0,40,0,3,0,2,2,-9,1,3,0,0,0,5,-1,22.25883801192827,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,32.84,60.85,42.16,36.22,6.666666666666667,1,1,0,0,0,5,3,0,295.2,574936.956551113,217321.0482734923,374223.4358293347,52741.98612440667,2525.053095167464 -2278,2839,5118,5117,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.06080542310025,7.769972813722196,0,5,1,49.12624660527584,0,2,2,2019,12,0,38,37,1,0,0,11.68237303437227,11.68237303437227,0,0,0,0,71.5,1,1,0,0,0,42.16,36.22,32.84,60.85,5,1,1,0,0,6,5,3,0,295.2,574936.956551113,217321.0482734923,374223.4358293347,52741.98612440667,2525.053095167464 -2278,2839,5119,-9,5117,5118,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.501958484422,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,295.2,574936.956551113,217321.0482734923,374223.4358293347,52741.98612440667,2525.053095167464 -2278,2839,5120,-9,5117,5118,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.3704575823003,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,295.2,574936.956551113,217321.0482734923,374223.4358293347,52741.98612440667,2525.053095167464 -2278,2839,5121,-9,5117,5118,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.129568815183,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,295.2,574936.956551113,217321.0482734923,374223.4358293347,52741.98612440667,2525.053095167464 -2279,2840,5122,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.269437926378952,8.370903886977377,0,0,0,-1015.771143311842,0,2,2,2019,12,2,35,40,1,2,0,17.52550853082041,17.52550853082041,0,0,0,1.01924948741574,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,7,5,5,0,668,-325296.9710834065,-56263.03387593433,0,0,1516.881151093381 -2280,2841,5123,5124,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.729057746267199,7.566624477186543,4.702258011806765,7,7,-25.10946457559404,0,3,3,2019,11,0,30,21,1,0,0,10.03038756570829,10.03038756570829,0,0,0,0,0,1,1,0,5.411553073138883,0,43.6,48.91,51.81,57.22,5,1,1,0,0,7,6,5,0,856.3333333333334,635109.9567430929,209302.2230174705,209713.8748584028,15050.93818033491,3902.786822102711 -2280,2841,5124,5123,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,9.07286848159068,9.064683538180711,0,7,-7,-81.19459236492712,0,-9,-9,2019,11,2,59,49,1,2,0,19.33095643013497,19.33095643013497,0,0,0,0,0,1,1,0,2.7281027527209,0,51.81,57.22,43.6,48.91,8.333333333333334,1,1,0,0,9,6,5,0,856.3333333333334,635109.9567430929,209302.2230174705,209713.8748584028,15050.93818033491,3902.786822102711 -2280,2841,5125,-9,5123,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.0140302655473,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,0,856.3333333333334,635109.9567430929,209302.2230174705,209713.8748584028,15050.93818033491,3902.786822102711 -2281,2842,5126,5127,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.696771211710997,8.762702177259996,0,7,1,81.75415087738385,0,2,3,2019,5,2,15,38,1,2,0,43.21546022866886,43.21546022866886,0,0,0,0,0,0,0,0,4.742392239498301,0,49.35,59.64,46.28,62.6,10,1,1,0,0,8,12,5,1,659,1849859.435367038,1434940.109744534,221860.8551048355,31717.29816789028,4575.803537621538 -2281,2842,5127,5126,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.945337214648418,8.863049484366,0,7,-1,-97.25316110589768,0,-9,-9,2019,17,5,42,48,1,5,0,19.82458644524785,19.82458644524785,0,0,0,0,0,0,0,0,4.326879512096768,0,46.28,62.6,49.35,59.64,6.666666666666667,1,1,0,0,6,12,5,1,659,1849859.435367038,1434940.109744534,221860.8551048355,31717.29816789028,4575.803537621538 -2282,2843,5128,-9,5129,5130,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-980.6850668438805,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,12,4,1,1497.666666666667,1030898.612126438,677701.0901852933,283053.4767513489,93782.86215358069,2820.716093298104 -2282,2843,5129,5130,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.336730967627442,8.563607293796597,0,7,1,139.8395673996265,0,2,1,2019,11,0,28,27,1,0,0,18.36372821515662,18.36372821515662,0,0,0,0,0,1,1,0,4.018671570883914,0,38.69,61.75,43.32,63.94,8.333333333333334,1,1,0,0,8,12,4,1,1497.666666666667,1030898.612126438,677701.0901852933,283053.4767513489,93782.86215358069,2820.716093298104 -2282,2843,5130,5129,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,7.817284152528382,8.126227198548191,0,7,-1,5.642922167748424,0,1,2,2019,20,9,38,40,1,9,0,9.577502559728783,9.577502559728783,0,0,0,0,0,1,1,0,4.177957967011976,0,43.32,63.94,38.69,61.75,8.333333333333334,1,1,0,0,8,12,4,1,1497.666666666667,1030898.612126438,677701.0901852933,283053.4767513489,93782.86215358069,2820.716093298104 -2282,2844,5131,-9,5129,5130,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-949.8247369492552,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,.1632981065507426,0,1,1,0,4.398362500959717,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,629,-13625.643861934,0,0,0,-32.19695219754851 -2283,2845,5132,5133,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.400562050616998,8.226399275682098,0,3,-1,49.81059760587507,0,-9,-9,2019,16,5,38,37,1,5,0,14.51271758764241,14.51271758764241,0,0,0,0,0,0,0,0,3.475197628101162,0,36.2,64.19,54.77,55.87,8.333333333333334,1,1,0,0,4,10,4,1,701,128005.5535243851,44703.5599567082,315753.2066080829,91735.3490584543,2778.67304366685 -2283,2845,5133,5132,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.621100792479837,7.292032951546238,0,3,1,105.0496780443416,0,2,2,2019,3,0,18,32,1,0,0,13.03203317672283,13.03203317672283,0,0,0,0,0,0,0,0,1.713061324836121,0,54.77,55.87,36.2,64.19,8.333333333333334,1,1,0,0,12,10,4,1,701,128005.5535243851,44703.5599567082,315753.2066080829,91735.3490584543,2778.67304366685 -2284,2846,5134,-9,5135,5136,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.1798103361734,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,400,70966.99479444996,1635.509377099023,0,0,2879.95518938812 -2284,2846,5135,5136,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,7.373968122711131,7.65960891196358,0,11,-6,8.066549787196443,0,2,1,2019,15,5,25,20,1,5,0,6.094133023088816,6.094133023088816,0,0,0,0,0,1,1,0,0,0,45.25,53.64,36.16,49.78,3.333333333333333,1,1,0,1,9,7,4,1,400,70966.99479444996,1635.509377099023,0,0,2879.95518938812 -2284,2846,5136,5135,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.602882388040365,8.769489725510423,0,11,6,50.98771887198113,0,2,1,2019,22,8,45,47,1,8,0,18.08430812496891,18.08430812496891,0,0,0,0,0,1,1,0,0,0,36.16,49.78,45.25,53.64,3.333333333333333,1,1,0,0,11,7,4,1,400,70966.99479444996,1635.509377099023,0,0,2879.95518938812 -2285,2847,5137,-9,5138,5139,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.546788619512,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,425.75,163183.4900410649,48190.20249950109,344176.181237668,248217.6469466045,3351.547347048992 -2285,2847,5138,5139,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.058306227462349,8.100393423708642,0,13,-7,49.29083607739896,0,2,2,2019,11,0,30,34,1,0,0,11.29811947739336,11.29811947739336,0,0,0,0,2,1,1,0,0,0,35.84,61.77,52.57,52.89,5,1,1,0,0,8,8,4,1,425.75,163183.4900410649,48190.20249950109,344176.181237668,248217.6469466045,3351.547347048992 -2285,2847,5139,5138,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.791642815972743,8.83341553003082,0,13,7,16.7318908052604,0,2,2,2019,5,0,40,39,1,0,0,15.57336122621289,15.57336122621289,0,0,0,0,0,1,1,0,0,0,52.57,52.89,35.84,61.77,6.666666666666667,1,1,0,0,8,8,4,1,425.75,163183.4900410649,48190.20249950109,344176.181237668,248217.6469466045,3351.547347048992 -2285,2847,5140,-9,5138,5139,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.044957444684,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,425.75,163183.4900410649,48190.20249950109,344176.181237668,248217.6469466045,3351.547347048992 -2286,2848,5141,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.742831698924615,6.572918851854757,0,0,-977.5795796069258,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.837582756418765,6.573526850895546,61.11,43.69,-9,-9,0,1,1,0,0,0,7,2,1,331,838776.4551459163,181526.5299072111,634296.1480062022,0,472.5126659586048 -2287,2849,5142,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.001241946934804,5.778333417610114,0,0,-1004.97603220933,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.370424978343501,6.045464511316339,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,12,12,2,1,967,620556.8734966606,499042.4778106906,166007.2690570288,0,1262.6932692229 -2288,2850,5143,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.2237868524248,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,772,34002.04764591971,0,46297.39656887513,0,1238.187059186859 -2289,2851,5144,5145,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,49,3,-18.18916964518677,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,135.143988945815,0,0,1,1,0,0,0,37.56,19.73,31.59,52.92,6.666666666666667,1,1,0,0,0,4,2,1,355.5,163118.2466918239,23147.86306948653,0,0,1853.342988100477 -2289,2851,5145,5144,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.305557218989475,6.450290943641361,49,-3,82.48196627991999,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.339063174427293,31.59,52.92,37.56,19.73,6.666666666666667,1,1,0,0,6,4,2,1,355.5,163118.2466918239,23147.86306948653,0,0,1853.342988100477 -2290,2852,5146,5147,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.644048523391117,9.007514698854845,0,41,0,85.33306573607005,0,2,3,2019,7,0,20,36,1,0,0,46.93143447630435,46.93143447630435,0,0,0,0,2,1,1,0,0,0,55.36,54.24,41.23,59.35,8.333333333333334,1,1,0,0,11,11,5,1,525.5,4369789.84250433,2690408.03188211,866438.9432363585,0,8135.023296663465 -2290,2852,5147,5146,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.594774620722427,8.324983994918231,0,41,0,38.25280885732656,0,2,2,2019,13,2,40,40,1,2,0,19.95122127428909,19.95122127428909,0,0,0,0,0,1,1,0,7.282556936553054,0,41.23,59.35,55.36,54.24,8.333333333333334,1,1,0,0,11,11,5,1,525.5,4369789.84250433,2690408.03188211,866438.9432363585,0,8135.023296663465 -2291,2853,5148,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1073.537763558463,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.480574927694595,0,60.64,25.88,-9,-9,10,1,1,0,0,0,13,1,1,153,-76758.25846762744,0,0,0,1712.293247125408 -2292,2854,5149,-9,5150,5151,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1025.710758928307,-9,1,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,481.75,1439016.153434845,191070.6849271294,739609.056207181,0,3231.194673907995 -2292,2854,5150,5151,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.631729059010308,8.4910673606889,0,8,-8,11.04515011825511,0,2,2,2019,5,0,45,43,1,0,0,15.69043255953789,15.69043255953789,0,0,0,0,0,1,1,0,4.902620174858918,0,55.09,55.87,57.06,57.76,8.333333333333334,1,1,0,0,9,6,4,1,481.75,1439016.153434845,191070.6849271294,739609.056207181,0,3231.194673907995 -2292,2854,5151,5150,-9,-9,1,1,57,0,1,0,2,2,-9,0,5,7.926620149338693,7.965317173338513,0,8,8,23.8380577162012,0,2,2,2019,7,0,25,20,1,0,0,10.82232870059776,10.82232870059776,0,0,0,0,0,1,1,0,3.471964797747787,0,57.06,57.76,55.09,55.87,1.666666666666667,1,1,0,0,9,6,4,1,481.75,1439016.153434845,191070.6849271294,739609.056207181,0,3231.194673907995 -2292,2854,5152,-9,5150,5151,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-936.3353907869958,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,1,481.75,1439016.153434845,191070.6849271294,739609.056207181,0,3231.194673907995 -2293,2855,5153,5154,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.897430840150935,8.020488808375141,0,5,-2,-30.9879793846586,0,-9,2,2019,7,0,39,19,1,0,0,6.017437420901571,6.017437420901571,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,6.666666666666667,1,1,0,0,7,2,3,0,612.6666666666666,64497.53813836909,44299.88712398798,0,0,2703.341168816013 -2293,2855,5154,5153,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,8.044919179437132,7.917545119105196,0,5,2,81.18253501324071,0,-9,-9,2019,10,0,40,41,1,1,0,8.903843116066557,8.903843116066557,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,7,1,1,0,0,1,2,3,0,612.6666666666666,64497.53813836909,44299.88712398798,0,0,2703.341168816013 -2293,2855,5155,-9,5153,5154,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.432863263477,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,3,0,612.6666666666666,64497.53813836909,44299.88712398798,0,0,2703.341168816013 -2294,2856,5156,5158,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,0,0,0,12,-3,-90.6866045215412,-9,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,31.41,31.89,47.55,33.8,0,1,1,0,1,7,13,2,1,840.75,33142.40988147281,99803.90590008069,0,0,1917.912032566564 -2294,2856,5157,-9,5156,5158,1,0,16,0,2,1,2,0,-9,0,3,0,5.622435273687467,5.671083631414933,0,0,-1032.03790015478,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,27,1,1,0,5.714680550957581,0,45.63,54.63,-9,-9,5,1,1,0,0,0,13,2,1,840.75,33142.40988147281,99803.90590008069,0,0,1917.912032566564 -2294,2856,5158,5156,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,7.921672304896533,8.231862001270544,0,12,3,-151.2940605734784,-9,3,3,2019,12,0,43,0,1,0,0,9.262623142630964,9.262623142630964,0,0,0,0,0,1,1,0,0,0,47.55,33.8,31.41,31.89,8.333333333333334,1,1,0,0,11,13,2,1,840.75,33142.40988147281,99803.90590008069,0,0,1917.912032566564 -2294,2856,5159,-9,5156,5158,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.4479848269134,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,840.75,33142.40988147281,99803.90590008069,0,0,1917.912032566564 -2294,2857,5160,-9,5156,5158,1,0,18,0,2,0,2,2,-9,1,2,0,0,0,0,0,-838.2833253635591,-9,1,2,2019,24,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,20.14,50.78,-9,-9,1.666666666666667,1,1,0,0,1,13,1,1,77,19820.47545857013,0,0,0,893.4799298541209 -2295,2858,5161,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,0,0,0,0,0,-892.8059629750376,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.28,51.93,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,515,18064.57771044937,0,0,0,2757.494320744384 -2296,2859,5162,5163,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,9.400481995576486,9.233375549998629,8,7,82.03616804998204,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.296974043533904,9.260179480328961,60.59,54.8,50,39.28,8.333333333333334,3,4,0,0,1,6,5,1,895.5,2741818.55470719,1992529.514838642,461446.4194278477,0,7113.282001654145 -2296,2859,5163,5162,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.080741616091863,7.275563625638184,8,-7,35.81205650726604,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.616599298157179,50,39.28,60.59,54.8,6.666666666666667,2,3,0,0,6,6,5,1,895.5,2741818.55470719,1992529.514838642,461446.4194278477,0,7113.282001654145 -2297,2860,5164,5165,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,7.480724790009843,7.348041709168045,0,15,-8,-95.64199409954165,0,3,3,2019,8,1,12,34,1,1,0,15.97094199720277,15.97094199720277,0,0,0,0,0,0,0,0,0,0,56.37,52.64,51.83,57.2,10,2,3,0,0,9,9,5,0,1382.333333333333,1420062.323273293,387414.5807248496,980540.5919118864,157425.8357969722,4010.168448578375 -2297,2860,5165,5164,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.204581134055003,9.086426369772873,0,14,8,113.9524627680125,0,3,3,2019,6,0,41,38,1,0,0,22.85611485785454,22.85611485785454,0,0,0,0,0,0,0,0,0,0,51.83,57.2,56.37,52.64,5,1,1,0,0,11,9,5,0,1382.333333333333,1420062.323273293,387414.5807248496,980540.5919118864,157425.8357969722,4010.168448578375 -2297,2860,5166,-9,5164,5165,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.8823089574884,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,0,1382.333333333333,1420062.323273293,387414.5807248496,980540.5919118864,157425.8357969722,4010.168448578375 -2298,2861,5167,-9,5168,5169,1,1,31,0,0,0,1,1,-9,0,5,8.842094624220948,9.075735844502027,0,0,0,-1024.656936294601,0,2,1,2019,7,0,40,40,1,0,0,22.94818585773483,22.94818585773483,0,0,0,0,0,1,1,0,3.409406462659884,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,8,7,5,1,782,218470.8009458737,-75398.90035186989,0,0,3019.46709210954 -2298,2862,5168,5169,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,8,5,0,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,1.538100349209615,0,27.41,25.55,54.2,57.49,1.666666666666667,2,3,0,0,0,7,1,1,987.5,417369.5906841696,189523.2563519724,0,0,1051.652087677707 -2298,2862,5169,5168,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,0,0,8,-5,0,0,-9,-9,2019,11,0,0,20,4,0,0,0,0,1,5.780734356767836,8.190458485214894,67.18773212476087,0,1,1,0,0,0,54.2,57.49,27.41,25.55,8.333333333333334,2,3,0,0,9,7,1,1,987.5,417369.5906841696,189523.2563519724,0,0,1051.652087677707 -2299,2863,5170,5171,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.573441202154916,7.957894228452777,5.947637140571642,5,-2,-122.3384626784942,0,-9,-9,2019,7,0,13,14,1,0,0,18.90253897249269,18.90253897249269,0,0,0,0,0,0,0,0,6.13865744175355,6.053379847633322,54.58,34.21,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,501,882266.2287640517,725964.786884323,204639.8679427619,76596.94030087721,3961.418600070561 -2299,2863,5171,5170,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.181027442804057,8.07469644513732,7.606982325757989,5,2,-96.60072915682682,0,2,2,2019,7,0,4,7,1,0,0,57.108876578903,57.108876578903,0,0,0,0,0,0,0,0,7.156655832886655,7.979083911594565,57.16,56.15,54.58,34.21,8.333333333333334,1,1,0,0,8,12,4,1,501,882266.2287640517,725964.786884323,204639.8679427619,76596.94030087721,3961.418600070561 -2299,2864,5172,-9,5170,5171,1,0,28,0,0,0,1,1,-9,0,5,8.415046199813172,8.450083291387008,0,0,0,-1198.946078385036,0,2,1,2019,9,1,40,37,1,1,1,12.66289759884551,12.66289759884551,0,0,0,0,0,0,0,0,3.907327818838154,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,916,-229612.0010198262,-10807.06560786762,0,0,2085.434462022301 -2300,2865,5173,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,7.437105495743385,7.489940818255346,4.878772133374068,0,0,-1042.696106032818,0,2,2,2019,8,1,3,15,1,1,0,53.59565876104124,53.59565876104124,0,0,0,0,0,0,0,0,4.837358828760858,0,48.98,57.22,-9,-9,6.666666666666667,1,1,0,0,11,7,3,1,331,844492.2434109608,369202.7969934876,0,0,533.4685843877801 -2301,2866,5174,5175,-9,-9,1,1,63,1,3,0,3,3,-9,0,3,7.712173141007397,7.633531787016666,0,10,4,-103.7450231784541,0,3,2,2019,10,0,50,48,1,1,0,5.576459074707437,5.576459074707437,0,0,0,0,0,1,1,0,0,0,51,48,48,48,7,2,3,0,0,12,2,2,1,952.5,395451.4248504214,34866.66496079156,331309.755772028,15441.58399177587,1001.924425581084 -2301,2866,5175,5174,-9,-9,1,0,59,1,3,0,3,3,-9,0,3,0,0,0,10,-4,-49.46728583473013,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,51,48,7,2,3,0,0,0,2,2,1,952.5,395451.4248504214,34866.66496079156,331309.755772028,15441.58399177587,1001.924425581084 -2301,2867,5176,-9,5177,5178,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1171.297103242868,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,993.6,34536.09277771707,50089.73312929099,0,0,1682.479092341822 -2301,2867,5177,5178,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,12,-3,-15.77089585800699,0,3,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.9,53.64,55.24,53.7,8.333333333333334,2,3,0,0,5,2,2,1,993.6,34536.09277771707,50089.73312929099,0,0,1682.479092341822 -2301,2867,5178,5177,5175,5174,1,1,32,1,3,0,2,2,-9,0,5,6.880818261441203,6.795864186281464,0,12,3,219.9228920303469,0,3,3,2019,2,0,35,48,1,0,0,3.133052084985514,3.133052084985514,0,0,0,0,0,1,1,0,0,0,55.24,53.7,36.9,53.64,10,2,3,0,0,12,2,2,1,993.6,34536.09277771707,50089.73312929099,0,0,1682.479092341822 -2301,2867,5179,-9,5177,5178,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.315720297286,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,993.6,34536.09277771707,50089.73312929099,0,0,1682.479092341822 -2301,2867,5180,-9,5177,5178,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.3125229562849,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,1,993.6,34536.09277771707,50089.73312929099,0,0,1682.479092341822 -2301,2868,5181,-9,5175,5174,1,0,18,1,3,0,2,2,0,0,2,0,0,0,0,0,-904.6927800117254,-9,3,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50.73,31.2,-9,-9,5,2,3,0,0,0,2,1,1,938,-53391.90809164022,0,0,0,0 -2302,2869,5182,5184,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,9.421116051569422,9.216742169394209,0,9,8,-2.234219594672478,-9,-9,-9,2019,25,10,55,0,1,10,0,25.32978480131894,25.32978480131894,0,0,0,0,2,0,0,0,7.679868786724378,0,27.62,57.72,33.14,64.63,1.666666666666667,1,1,0,0,10,9,5,1,1363.666666666667,292405.9200092758,-26106.10826717176,557275.9071420874,324256.6879376667,7854.457897978955 -2302,2869,5183,-9,5182,5184,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-960.9517185736626,-9,2,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,1363.666666666667,292405.9200092758,-26106.10826717176,557275.9071420874,324256.6879376667,7854.457897978955 -2302,2869,5184,5182,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.408855454470404,9.666697021392528,0,9,-8,-27.96275303728229,0,2,2,2019,16,4,56,47,1,4,0,19.95690059796833,19.95690059796833,0,0,0,0,2,0,0,0,0,0,33.14,64.63,27.62,57.72,5,1,1,0,0,8,9,5,1,1363.666666666667,292405.9200092758,-26106.10826717176,557275.9071420874,324256.6879376667,7854.457897978955 -2303,2870,5185,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.335055312802684,8.482309270401021,0,0,0,-957.8362998498502,0,2,2,2019,12,0,27,39,1,0,0,19.54553816484174,19.54553816484174,0,0,0,0,2,0,0,0,3.960132145060649,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,375,492904.836274483,370622.087887566,222391.0914204877,114442.4341451081,1636.270780528139 -2304,2871,5186,5188,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,9.772986520938309,9.647554660910185,0,7,-1,-27.41830921234599,-9,-9,-9,2019,9,0,60,0,1,1,0,30.62622141793653,30.62622141793653,0,0,0,0,0,1,1,0,.5300785058969009,0,52,55,47.79,49.49,8,1,1,0,0,1,11,5,1,1710.333333333333,897209.869287313,710762.4132581232,363381.8221763903,129529.3187882127,35800.01153038182 -2304,2871,5187,-9,5188,5186,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.9329040486081,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,5,1,1710.333333333333,897209.869287313,710762.4132581232,363381.8221763903,129529.3187882127,35800.01153038182 -2304,2871,5188,5186,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.444513897725677,7.875388658912684,0,7,1,-62.5709106449259,0,3,2,2019,16,3,35,38,1,3,0,8.753441511604022,8.753441511604022,0,0,0,0,2,1,1,0,5.029201857346758,0,47.79,49.49,52,55,6.666666666666667,1,1,0,0,9,11,5,1,1710.333333333333,897209.869287313,710762.4132581232,363381.8221763903,129529.3187882127,35800.01153038182 -2304,2872,5189,-9,5188,5186,1,0,19,0,1,0,2,2,-9,0,4,7.181134110451423,6.939480822817329,0,0,0,-1068.361728207758,0,1,3,2019,11,0,12,20,1,2,1,11.57352504738719,11.57352504738719,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,2,1,2861,26261.2173984501,57517.35968608848,0,0,678.7307806442287 -2304,2873,5190,-9,5188,5186,1,1,18,0,1,0,2,2,-9,0,4,7.828157793738963,7.771657996835373,0,0,0,-1004.790071702893,0,1,3,2019,10,0,21,0,1,2,1,13.46222245187854,13.46222245187854,0,0,0,0,0,1,1,0,4.557377380549874,0,48,59,-9,-9,7,1,1,0,0,1,11,3,1,2403,102878.7479605552,0,0,0,1005.380106253363 -2305,2874,5191,5192,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,10,11,138.3404458370914,0,3,3,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,30.58,22.51,53.77,45.91,1.666666666666667,1,1,0,1,5,10,2,0,880.3333333333334,77233.98546237605,20366.72282437321,0,0,1129.50990692375 -2305,2874,5192,5191,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,5.758321225746789,6.204169133685833,0,10,-11,-49.72275574685708,0,-9,-9,2019,13,1,32,32,1,1,0,1.056910329819505,1.056910329819505,0,0,0,0,7,1,1,0,0,0,53.77,45.91,30.58,22.51,5,1,1,0,1,7,10,2,0,880.3333333333334,77233.98546237605,20366.72282437321,0,0,1129.50990692375 -2305,2874,5193,-9,5191,5192,1,0,17,0,0,0,2,2,1,0,2,0,0,0,0,0,-977.40640785989,-9,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.61,52.25,-9,-9,5,1,1,1,1,0,10,2,0,880.3333333333334,77233.98546237605,20366.72282437321,0,0,1129.50990692375 -2306,2875,5194,5195,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.77724053357599,8.518047055854037,0,2,6,106.3214845333426,0,-9,-9,2019,18,6,55,50,1,6,0,13.45844095083372,13.45844095083372,0,0,0,0,0,0,0,0,0,0,42.81,54.48,55.14,47.62,8.333333333333334,1,1,0,0,2,4,5,1,666,67896.52691058897,88262.22516781212,0,0,2462.060501571929 -2306,2875,5195,5194,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,6.367657699562518,6.283260535646915,0,2,-6,-4.97152700003257,0,-9,-9,2019,7,0,40,40,1,0,0,1.777155014765449,1.777155014765449,0,0,0,0,0,0,0,0,0,0,55.14,47.62,42.81,54.48,8.333333333333334,1,1,0,0,11,4,5,1,666,67896.52691058897,88262.22516781212,0,0,2462.060501571929 -2307,2876,5196,5197,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.198897227441064,7.157592010036915,42,-8,46.12368864203177,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.60452032123799,7.267315037579584,51.08,52.1,53,44,8.333333333333334,1,1,0,0,0,10,2,1,871,1038762.578797313,43250.50285178368,498653.1070815249,0,1875.348017034436 -2307,2876,5197,5196,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.621606020582895,5.301373708165348,42,8,-55.59777715829914,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,28.67171299081333,0,0,1,1,0,0,5.402287096145623,53,44,51.08,52.1,8,1,1,0,0,0,10,2,1,871,1038762.578797313,43250.50285178368,498653.1070815249,0,1875.348017034436 -2308,2877,5198,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,3,0,0,0,0,0,-967.3089733082965,0,-9,-9,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,45,52,-9,-9,10,2,3,1,0,0,6,1,0,340,60171.21279240254,0,0,0,1091.256642135656 -2309,2878,5199,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.489753825502818,8.183474155057455,7.353614258593616,0,0,-905.5680257647588,0,2,2,2019,12,0,20,22,1,0,0,9.951086488943451,9.951086488943451,0,0,0,0,0,1,1,0,5.835164598978552,7.942961223669273,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,262,113587.3851271638,0,112645.2638526017,-8271.553116534869,2094.933949031344 -2309,2879,5200,-9,5199,-9,1,0,35,0,0,0,1,1,-9,0,4,7.980046440467154,7.92745460622305,0,0,0,-1143.19175190151,-9,2,-9,2019,11,0,39,0,1,2,0,9.644008493454129,9.644008493454129,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,3,1,312,30670.55966926948,-39877.40546095076,0,0,1107.604934114219 -2310,2880,5201,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.293093153257011,8.171724039387561,0,0,0,-1153.490205132703,0,2,2,2019,17,6,40,35,1,6,0,12.79134622168218,12.79134622168218,0,0,0,0,0,1,1,0,0,0,53.35,17.72,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,167,1417633.971754367,901382.1648203469,582938.0560744177,50201.01186085696,1404.041432238458 -2311,2881,5202,5203,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,5.938996444852813,6.085376249502361,0,3,-2,-59.27880018928676,-9,-9,-9,2019,10,0,37,0,1,1,0,.989975351493975,.989975351493975,0,0,0,0,0,1,1,0,0,0,50,57,54.67,49.46,7,4,1,0,0,1,13,5,1,395,399595.2582226596,166137.8946445059,352481.2588253161,206439.2015914883,11413.26447952446 -2311,2881,5203,5202,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,9.667015520981654,9.504164545583391,0,3,2,55.809082265524,0,3,2,2019,1,0,26,55,1,0,0,79.26332393052591,79.26332393052591,0,0,0,0,0,1,1,0,6.219367307487805,0,54.67,49.46,50,57,0,1,1,0,0,5,13,5,1,395,399595.2582226596,166137.8946445059,352481.2588253161,206439.2015914883,11413.26447952446 -2311,2881,5204,-9,5203,5202,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.879325531883,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,395,399595.2582226596,166137.8946445059,352481.2588253161,206439.2015914883,11413.26447952446 -2312,2882,5205,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.873767849812,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,8.001630286687252,0,47.72,55.04,-9,-9,6.666666666666667,4,2,1,0,5,8,1,1,284,-225131.6789451642,0,0,0,1270.496367614906 -2312,2883,5206,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.505843241895164,8.429534383147478,0,0,0,-1073.616780095135,0,3,3,2019,11,0,45,35,1,0,0,12.2990589664675,12.2990589664675,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,54,73779.21859492372,126381.9199785529,0,0,2150.132198751807 -2313,2884,5207,-9,-9,-9,1,0,63,0,2,0,2,2,-9,1,3,8.193018165167073,8.100669548395945,0,0,0,-1019.073895117515,0,2,2,2019,11,0,37,37,1,2,0,7.228331029914974,7.228331029914974,0,0,0,0,14.5,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,6,8,3,1,340.5,995212.3986418017,142667.1274066942,834319.6854318357,0,1362.391024969044 -2313,2884,5208,-9,5207,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-940.6192914911392,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,3,1,340.5,995212.3986418017,142667.1274066942,834319.6854318357,0,1362.391024969044 -2314,2885,5209,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.808333331101673,7.957346867485425,0,0,0,-1107.508857882327,0,3,3,2019,11,0,37,32,1,0,0,7.011985182273622,7.011985182273622,0,0,0,0,2,0,0,0,0,0,57.17,50.61,-9,-9,1.666666666666667,1,1,0,0,9,11,3,1,766,533622.1068494484,334268.3967468931,161614.4171696126,0,853.9893052324509 -2315,2886,5210,5211,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,5,-3,0,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.3,38.41,22.56,26.36,1.666666666666667,1,1,1,1,0,2,1,0,938,0,0,0,0,1102.283898729501 -2315,2886,5211,5210,-9,-9,1,0,47,0,0,0,2,2,-9,0,1,0,0,0,5,3,0,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.56,26.36,35.3,38.41,1.666666666666667,1,1,1,0,0,2,1,0,938,0,0,0,0,1102.283898729501 -2316,2887,5212,-9,-9,-9,1,0,85,0,2,0,2,2,-9,0,2,0,7.535055768735162,7.244043027187164,0,0,-1051.107348965948,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,2.410405259589423,0,0,1,1,0,0,7.594553608663093,56.01,33.88,-9,-9,5,1,1,0,0,0,7,2,1,871,250724.3700253453,37315.02685849087,227647.315969919,0,1562.972058728959 -2316,2888,5213,-9,5214,5216,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.5169257464871,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,819,400875.6621837944,288493.2266233374,298186.2151268722,151876.2142807667,4234.609582243678 -2316,2888,5214,5216,5212,-9,1,0,48,0,2,0,2,2,-9,0,2,8.222994515479725,8.665995117708121,0,2,3,-54.16158380517854,0,2,-9,2019,21,8,29,34,1,8,0,12.24238707693818,12.24238707693818,0,0,0,0,71.5,1,1,0,0,0,39.47,40.48,36.21,26.85,3.333333333333333,1,1,0,0,2,7,5,1,819,400875.6621837944,288493.2266233374,298186.2151268722,151876.2142807667,4234.609582243678 -2316,2888,5215,-9,5214,5216,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.110684431142,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,819,400875.6621837944,288493.2266233374,298186.2151268722,151876.2142807667,4234.609582243678 -2316,2888,5216,5214,-9,-9,1,1,45,0,2,0,2,2,-9,1,1,8.902208391789127,8.909922536246794,0,2,-3,-22.83563439090712,0,-9,-9,2019,13,4,38,37,1,4,0,19.47942224173857,19.47942224173857,0,0,0,0,2,1,1,0,0,0,36.21,26.85,39.47,40.48,8.333333333333334,1,1,0,0,9,7,5,1,819,400875.6621837944,288493.2266233374,298186.2151268722,151876.2142807667,4234.609582243678 -2316,2889,5217,-9,5214,5216,1,0,20,0,2,1,2,0,0,0,1,0,0,0,0,0,-984.6538792686594,-9,2,2,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,2,1,1,0,2.57079243580916,0,37.1,34.81,-9,-9,5,1,1,0,0,2,7,1,1,2066,-62675.40204787983,0,0,0,949.9932586337418 -2317,2890,5218,-9,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,8.395728939791507,8.693417499819841,0,0,0,-965.2672521439958,0,-9,-9,2019,21,9,37,30,1,9,0,14.66518978316647,14.66518978316647,0,0,0,0,0,1,1,0,0,0,38.63,63.11,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,402.5,-195548.8163697594,-11091.59648384739,0,0,1229.443672390401 -2317,2890,5219,-9,5218,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.3714131066148,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,402.5,-195548.8163697594,-11091.59648384739,0,0,1229.443672390401 -2318,2891,5220,5221,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.184540201324863,8.066331355155164,0,1,5,-18.97052642480033,0,-9,2,2019,14,3,38,38,1,3,0,11.71291851372098,11.71291851372098,0,0,0,0,0,0,0,0,0,0,45.22,40.16,48,59,8.333333333333334,1,1,0,0,10,4,3,1,608.5,-21369.95301310174,-35961.36553306784,0,0,1236.129166919193 -2318,2891,5221,5220,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,5.047348263192924,5.025808850925216,0,1,-5,-88.7197344485092,-9,-9,-9,2019,10,0,45,0,1,1,0,.4204392841124493,.4204392841124493,0,0,0,0,0,0,0,0,.1008600209946337,0,48,59,45.22,40.16,7,4,1,0,0,1,4,3,1,608.5,-21369.95301310174,-35961.36553306784,0,0,1236.129166919193 -2319,2892,5222,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.453948240326578,7.71342236239878,6.163719737726443,0,0,-989.9097862257061,0,3,-9,2019,15,5,24,21,1,5,0,7.63085841120904,7.63085841120904,0,0,0,0,27,1,1,0,6.313164372535821,0,43.46,30.35,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,310,93529.51360548733,82329.94292090854,0,0,1083.787154020298 -2320,2893,5223,-9,5224,5226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.54196605463,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,2059,390210.5513602708,99659.44915792724,362531.4212450724,155145.2703095068,2106.798475159319 -2320,2893,5224,5226,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.832884628613194,6.8003697163849,0,8,-5,110.4458621480888,0,3,2,2019,8,0,19,0,1,0,0,5.454965998532427,5.454965998532427,0,0,0,0,0,1,1,0,1.388717664325854,0,50.03,52.62,50.5,50.1,6.666666666666667,1,1,0,0,0,9,3,1,2059,390210.5513602708,99659.44915792724,362531.4212450724,155145.2703095068,2106.798475159319 -2320,2893,5225,-9,5224,5226,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.6739906260395,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,2059,390210.5513602708,99659.44915792724,362531.4212450724,155145.2703095068,2106.798475159319 -2320,2893,5226,5224,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.245157108541166,8.274423708793146,0,8,5,-11.68349198806123,0,2,2,2019,12,4,47,40,1,4,0,9.104672022226094,9.104672022226094,0,0,0,0,0,1,1,0,0,0,50.5,50.1,50.03,52.62,8.333333333333334,1,1,0,0,7,9,3,1,2059,390210.5513602708,99659.44915792724,362531.4212450724,155145.2703095068,2106.798475159319 -2321,2894,5227,-9,5229,5228,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-877.635330361896,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,620.3333333333334,522700.3084526708,339003.1199534694,200152.0773157974,0,3252.873772955088 -2321,2894,5228,5229,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.461279150829792,8.03919450223199,0,8,-2,65.73793724411063,0,2,-9,2019,8,0,50,50,1,0,0,10.12619068609048,10.12619068609048,0,0,0,0,0,1,1,0,2.303885244208548,0,50.03,52.62,51.14,60.45,8.333333333333334,1,1,0,0,9,2,4,1,620.3333333333334,522700.3084526708,339003.1199534694,200152.0773157974,0,3252.873772955088 -2321,2894,5229,5228,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,7.889261084257712,7.789099251073885,0,8,2,114.8328442381181,0,-9,-9,2019,3,0,50,40,1,0,0,5.715439554201965,5.715439554201965,0,0,0,0,0,1,1,0,0,0,51.14,60.45,50.03,52.62,10,1,1,0,0,9,2,4,1,620.3333333333334,522700.3084526708,339003.1199534694,200152.0773157974,0,3252.873772955088 -2322,2895,5230,5231,-9,-9,1,1,39,0,0,0,3,3,-9,1,1,0,0,0,1,-1,102.4718887024563,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.88,40.94,53.51,60.74,1.666666666666667,1,1,0,0,0,12,3,0,371.5,-56549.56194984265,-14970.92170879882,173505.4595140442,115746.8358048561,2704.41628895954 -2322,2895,5231,5230,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.905423425125129,7.766103754529519,0,1,1,20.93401821137977,-9,-9,-9,2019,4,0,29,0,1,0,0,10.61156679426815,10.61156679426815,0,0,0,0,5.48,1,1,0,0,0,53.51,60.74,20.88,40.94,10,1,1,0,0,1,12,3,0,371.5,-56549.56194984265,-14970.92170879882,173505.4595140442,115746.8358048561,2704.41628895954 -2323,2896,5232,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,4.283169811959136,4.282471636179761,0,0,-1127.123648899631,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.989248773585101,0,47.58,56.73,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,448,124030.6002884333,0,0,0,146.7997146183063 -2324,2897,5233,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.627946794009197,6.603677340691159,0,33,-5,-33.55579992394343,0,-9,-9,2019,25,10,12,10,1,10,0,6.85185795965941,6.85185795965941,0,0,0,0,0,1,1,0,0,0,28.22,53.7,55.19,54.26,3.333333333333333,1,1,0,0,10,10,2,0,118,139893.6005186814,-13468.08946594138,0,0,534.2740816777973 -2324,2898,5234,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,5.62474540578645,5.721067034757848,0,33,5,-93.52621669178171,0,2,2,2019,11,0,36,48,1,0,0,.920150803303976,.920150803303976,0,0,0,0,0,1,1,0,0,0,55.19,54.26,28.22,53.7,8.333333333333334,1,1,0,0,8,10,2,0,114,-35642.4074644071,73834.62218745064,0,0,563.2469277859268 -2325,2899,5235,5237,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,9.224056170896967,9.043781613285136,0,12,0,124.0071532324394,0,2,1,2019,19,7,50,50,1,7,0,20.34320584014802,20.34320584014802,0,0,0,0,0,1,1,0,2.173863769054487,0,36.62,58.96,49.04,55.86,3.333333333333333,1,1,0,0,8,7,5,1,1029.666666666667,1244454.66357374,822550.8023757994,755643.1465107432,210266.3212421025,2974.063853331181 -2325,2899,5236,-9,5237,5235,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.3649568632432,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1029.666666666667,1244454.66357374,822550.8023757994,755643.1465107432,210266.3212421025,2974.063853331181 -2325,2899,5237,5235,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,0,0,0,12,0,-.5087186114821467,0,2,3,2019,12,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,3.021960299270943,0,49.04,55.86,36.62,58.96,5,1,1,1,0,8,7,5,1,1029.666666666667,1244454.66357374,822550.8023757994,755643.1465107432,210266.3212421025,2974.063853331181 -2326,2900,5238,-9,5240,5239,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-988.5269814018181,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.2,60.58,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,793.5,494850.3447950471,408558.2834595569,169846.9975554831,91744.67884110828,3409.618380025804 -2326,2900,5239,5240,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.466463340824365,8.642781430217003,0,7,-3,73.24472951169572,0,3,3,2019,6,0,37,37,1,0,0,18.94091719451206,18.94091719451206,0,0,0,0,2,1,1,0,.6257260405009302,0,60.12,54.8,48.87,58.55,8.333333333333334,1,1,0,0,8,2,4,1,793.5,494850.3447950471,408558.2834595569,169846.9975554831,91744.67884110828,3409.618380025804 -2326,2900,5240,5239,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.685420663389696,7.975326673033092,0,7,3,-24.41239494109664,0,2,2,2019,9,0,35,37,1,0,0,7.3902697141917,7.3902697141917,0,0,0,0,0,1,1,0,0,0,48.87,58.55,60.12,54.8,8.333333333333334,1,1,0,0,8,2,4,1,793.5,494850.3447950471,408558.2834595569,169846.9975554831,91744.67884110828,3409.618380025804 -2326,2900,5241,-9,5240,5239,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.9873359999676,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,793.5,494850.3447950471,408558.2834595569,169846.9975554831,91744.67884110828,3409.618380025804 -2327,2901,5242,5243,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,11,0,-142.4046333651117,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,0,10,4,0,558.3333333333334,872142.9108352488,600461.4750849734,205655.9013474421,66508.78709612339,3218.23743008881 -2327,2901,5243,5242,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.683185397163525,8.489723347358368,0,11,0,-43.42118641660512,0,2,2,2019,7,0,50,52,1,0,0,11.6666335954329,11.6666335954329,0,0,0,0,7,1,1,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,13,10,4,0,558.3333333333334,872142.9108352488,600461.4750849734,205655.9013474421,66508.78709612339,3218.23743008881 -2327,2901,5244,-9,5242,5243,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1022.866068305575,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51.63,57.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,0,558.3333333333334,872142.9108352488,600461.4750849734,205655.9013474421,66508.78709612339,3218.23743008881 -2328,2902,5245,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.301395353319151,5.7766639681699,0,0,-1071.19243434146,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.391154470584208,5.594322074663769,62.84,43.99,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,156,398492.4158137307,5198.939464854251,243869.6652475513,0,1463.295634382395 -2329,2903,5246,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.850730542396953,8.503465655238511,0,0,0,-1125.613416455375,0,3,3,2019,11,0,45,50,1,0,0,16.39069104313115,16.39069104313115,0,0,0,0,0,0,0,0,2.252555560223409,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,530,765751.3358969125,456625.7760539716,264022.9056482399,0,2771.53241029897 -2329,2904,5247,-9,5246,-9,1,1,22,0,0,0,1,1,-9,0,4,7.276726847076593,7.446124697916567,0,0,0,-1154.500300887779,0,1,-9,2019,10,0,42,42,1,0,1,5.118715616292947,5.118715616292947,0,0,0,0,0,0,0,0,0,0,55.73,53.98,-9,-9,10,4,2,0,0,6,6,3,1,655,0,0,0,0,413.2746718837919 -2329,2905,5248,-9,5246,-9,1,1,20,0,0,0,2,2,1,0,5,7.633696831648939,7.549866811498855,0,0,0,-988.0693353676695,-9,1,-9,2019,4,0,25,0,1,0,1,6.743962693464497,6.743962693464497,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,4,2,0,0,4,6,3,1,747,-17092.6133326686,-96601.3527915741,0,0,388.7668425629826 -2329,2906,5249,-9,5246,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1059.921196414625,-9,1,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,0,4,2,0,0,4,6,2,1,938,-6590.613559021525,0,0,0,0 -2330,2907,5250,-9,-9,-9,1,1,27,0,0,0,1,1,-9,1,1,9.778093425846386,9.643749599519568,0,0,0,-1078.540476658165,0,3,2,2019,19,7,55,60,1,7,1,36.37219442783071,36.37219442783071,0,0,0,0,2,1,1,0,0,0,37.58,35.91,-9,-9,1.666666666666667,2,3,0,0,4,6,5,1,1423,-94093.76855665028,-20662.33853200627,0,0,13450.00748568066 -2331,2908,5251,5252,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.803162692935475,8.872946726399642,4.660984326919969,20,-1,-78.26522956421057,0,3,3,2019,9,0,55,60,1,0,0,10.73323180173695,10.73323180173695,0,0,0,0,14.5,0,0,0,5.22178013483435,5.095531589975473,54.63,43.68,58.15,52.91,10,1,1,0,0,9,6,5,1,1713.5,629332.6694938856,25478.39195136766,342520.3547926218,0,3468.381320875167 -2331,2908,5252,5251,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.266846971386475,8.185168272425349,0,20,1,-7.809886139300787,0,3,3,2019,8,0,45,40,1,0,0,8.310539106093497,8.310539106093497,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.63,43.68,8.333333333333334,1,1,0,0,9,6,5,1,1713.5,629332.6694938856,25478.39195136766,342520.3547926218,0,3468.381320875167 -2332,2909,5253,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,7.581268789239296,7.604016550759075,5.861036680362421,0,0,-913.892178555548,0,3,3,2019,20,8,20,20,1,8,0,12.86934584200678,12.86934584200678,0,0,0,0,0,1,1,0,5.917266691063165,0,26.67,56.78,-9,-9,0,1,1,0,1,10,6,3,1,198,87648.86259664944,51816.23991598107,57022.93703914293,71281.28309079153,2527.308495391942 -2333,2910,5254,-9,5257,5256,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1008.745524934742,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,2,1,924.75,169647.4851054312,8112.575841707163,107824.9368935257,0,1407.318839940833 -2333,2910,5255,-9,5257,5256,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1056.324540542221,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,2,1,924.75,169647.4851054312,8112.575841707163,107824.9368935257,0,1407.318839940833 -2333,2910,5256,5257,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,7.472529172569323,7.663649931586555,0,25,1,-9.292891080695439,0,3,3,2019,11,0,50,25,1,0,0,4.096206100769184,4.096206100769184,0,0,0,0,0,1,1,0,2.842032781574525,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,9,13,2,1,924.75,169647.4851054312,8112.575841707163,107824.9368935257,0,1407.318839940833 -2333,2910,5257,5256,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,0,0,0,25,-1,-42.85690376457273,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.946741936934984,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,0,13,2,1,924.75,169647.4851054312,8112.575841707163,107824.9368935257,0,1407.318839940833 -2333,2911,5258,-9,5257,5256,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-927.9650749453155,-9,2,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,447,-207806.8084516292,0,0,0,113.6930583528785 -2333,2912,5259,-9,5257,5256,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-994.3104772709833,-9,2,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,444,28862.56494471944,0,0,0,614.3481872518392 -2334,2913,5260,5262,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,0,0,0,11,-2,-45.65493058481355,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.04136184263729,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,4,9,4,1,384.5,50757.88476778085,46013.93469515086,250845.1655984443,156674.4337947768,3022.547629898454 -2334,2913,5261,-9,5260,5262,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.133572441849,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,384.5,50757.88476778085,46013.93469515086,250845.1655984443,156674.4337947768,3022.547629898454 -2334,2913,5262,5260,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.87629152950624,9.144371625651377,0,11,2,97.57674604208027,0,2,2,2019,7,0,45,49,1,0,0,17.77281343904911,17.77281343904911,0,0,0,0,0,1,1,0,3.508802237471982,0,57.16,56.15,54.2,57.49,10,1,1,0,0,10,9,4,1,384.5,50757.88476778085,46013.93469515086,250845.1655984443,156674.4337947768,3022.547629898454 -2334,2913,5263,-9,5260,5262,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.4505116915248,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,384.5,50757.88476778085,46013.93469515086,250845.1655984443,156674.4337947768,3022.547629898454 -2335,2914,5264,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,7.198761726019948,7.771651065944413,7.484013587555765,0,0,-1114.038982222883,0,3,3,2019,15,3,15,15,1,3,0,8.910643400649395,8.910643400649395,1,0,0,0,0,1,1,0,0,7.679040145735097,51.86,19.84,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,1309,276982.4643115837,139768.3132924818,0,0,2299.812422420431 -2336,2915,5265,5266,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.066951356492194,7.176804073553268,8,3,-11.64586857462832,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.100546411090259,62.66,52.4,39.94,42.22,8.333333333333334,1,1,0,0,0,13,2,1,380,446277.7096775452,281101.5717687124,152785.1949914544,-9526.424325408701,1746.63255142648 -2336,2915,5266,5265,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.955230352310974,6.182540777786302,8,-3,25.97576767357402,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,4.922371833648653,6.074283371093778,39.94,42.22,62.66,52.4,5,1,1,0,0,0,13,2,1,380,446277.7096775452,281101.5717687124,152785.1949914544,-9526.424325408701,1746.63255142648 -2337,2916,5267,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1013.607590254642,0,2,2,2019,26,9,0,24,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.09,47.89,-9,-9,0,1,1,1,1,7,10,1,0,1912,0,0,0,0,950.7354209905061 -2338,2917,5268,5269,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.051607598152822,8.129379608838017,26,3,67.84354003485178,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.401887029959985,7.935195337376338,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,2,10,3,1,486,1766472.206984143,1026928.137144079,594193.0518673027,0,4572.805884100574 -2338,2917,5269,5268,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,6.726858063881486,6.502774284041368,26,-3,-53.36207236569934,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.051969221998409,6.719744920211602,48.28,60.18,54.2,57.49,8.333333333333334,1,1,0,0,8,10,3,1,486,1766472.206984143,1026928.137144079,594193.0518673027,0,4572.805884100574 -2339,2918,5270,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.579969510376,0,-9,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50.17,22.09,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,2234,32269.47574978175,-6921.008175053354,0,0,1120.731921660218 -2340,2919,5271,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.297011080702774,8.468255135926944,0,0,0,-881.3821497934167,0,-9,-9,2019,11,0,47,43,1,0,0,9.250572677040257,9.250572677040257,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,1528,-42847.88576819545,0,0,0,1807.643344232512 -2341,2920,5272,5273,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.631564424571907,7.895628381679294,0,35,-4,-86.68809134284663,0,3,2,2019,11,0,37,37,1,2,0,7.94961528408423,7.94961528408423,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,7,2,3,0,0,9,8,3,1,1210.5,516092.6517420348,84644.9995427312,305921.4415181185,0,1448.327937757187 -2341,2920,5273,5272,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,6.131023093189522,6.516044931233933,4.623428177455096,7,4,-13.60606849183421,0,3,3,2019,10,0,40,30,1,0,0,1.286590631299893,1.286590631299893,0,0,0,0,0,0,0,0,2.859389768695017,4.569286748971108,44.84,49.01,49,48,6.666666666666667,2,3,0,0,9,8,3,1,1210.5,516092.6517420348,84644.9995427312,305921.4415181185,0,1448.327937757187 -2341,2921,5274,-9,5272,5273,1,0,23,0,0,0,1,1,-9,0,4,8.393086455221106,8.441170973644756,0,0,0,-866.6147371793016,0,2,3,2019,11,0,36,23,1,2,1,16.20549981233065,16.20549981233065,0,0,0,0,0,0,0,0,2.126746698062303,0,47,58,-9,-9,7,2,3,0,0,2,8,5,1,267,-5370.008149902744,0,0,0,2097.303217259659 -2342,2922,5275,5277,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,0,0,0,23,-1,104.5592056881199,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9.467690145362162,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,1,0,8,5,1,435.3333333333333,1695780.230691254,511232.3632525887,871227.4792163629,0,15549.18022002181 -2342,2922,5276,-9,5275,5277,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1131.173517600637,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,5,1,435.3333333333333,1695780.230691254,511232.3632525887,871227.4792163629,0,15549.18022002181 -2342,2922,5277,5275,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.597515802190152,9.965991097937859,0,23,1,-127.4628876512833,0,2,2,2019,11,1,67,60,1,1,0,23.91258027818531,23.91258027818531,0,0,0,0,0,0,0,0,9.333675673860599,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,435.3333333333333,1695780.230691254,511232.3632525887,871227.4792163629,0,15549.18022002181 -2343,2923,5278,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.305235943545945,8.091594160626146,0,0,-1117.878933927574,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.994442804014423,46.73,52.75,-9,-9,8.333333333333334,1,1,0,0,0,12,4,0,952,483120.3197393648,126869.3325763136,293840.2376634454,0,2773.754594549021 -2344,2924,5279,5280,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.422495306340729,5.271897677302093,8,4,83.94138262367338,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.527961872161696,5.140328266574396,68.73999999999999,28.12,55.5,41.04,10,1,1,0,0,0,12,2,1,210,653362.9397908242,389202.6312956016,111850.371566419,55235.73837876471,473.472282264371 -2344,2924,5280,5279,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,2.860518830654161,2.680202165179779,8,-4,-94.20890156849813,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.813061859630979,3.010205785248228,55.5,41.04,68.73999999999999,28.12,6.666666666666667,1,1,0,0,3,12,2,1,210,653362.9397908242,389202.6312956016,111850.371566419,55235.73837876471,473.472282264371 -2345,2925,5281,5282,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.803662290030586,7.767239411697467,0,3,-14,28.7737590684663,0,2,2,2019,26,12,32,39,1,12,0,8.64437632070716,8.64437632070716,0,0,0,0,0,1,1,0,0,0,44.48,42.27,36.37,61.5,5,1,1,0,0,12,8,4,1,659,419882.2998136765,88653.83770030471,372059.7736575716,77540.37624127022,2838.592529865918 -2345,2925,5282,5281,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.455971494996514,7.516678812231693,0,3,14,-56.94490674508854,0,3,3,2019,14,3,44,43,1,3,0,4.948776165105985,4.948776165105985,0,0,0,0,2,1,1,0,0,0,36.37,61.5,44.48,42.27,6.666666666666667,1,1,0,0,12,8,4,1,659,419882.2998136765,88653.83770030471,372059.7736575716,77540.37624127022,2838.592529865918 -2345,2926,5283,-9,5281,5282,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.4204683202036,0,3,2,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,27.73,64.27,-9,-9,6.666666666666667,1,1,0,0,3,8,1,1,1576,7121.619199910018,0,0,0,111.2963521476227 -2346,2927,5284,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.746838629545,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1003,123892.2493017346,0,0,0,918.7603000159762 -2346,2928,5285,-9,5284,-9,1,0,42,0,0,0,2,2,-9,0,3,7.312321033936647,7.531340221647884,0,0,0,-955.8772374556594,0,3,-9,2019,8,0,12,12,1,0,0,12.81595902853598,12.81595902853598,0,0,0,0,0,1,0,1,0,0,57.09,46.7,-9,-9,5,1,1,0,1,7,7,3,0,519,6001.759286289245,25685.48437343221,0,0,1044.317066780334 -2347,2929,5286,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.947277157655895,5.959810100441299,0,0,-1027.513124352652,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,5.760956034966662,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,2461,-36239.11702553445,0,0,0,-111.0006977882247 -2348,2930,5287,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.930802028805503,7.044123578905206,0,0,-1063.112528064099,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.461853904244775,7.30976399707379,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,359,225559.891233263,96187.52364124775,26043.94263134967,0,1444.80371813599 -2349,2931,5288,5289,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.620536683972558,7.755390958922217,35,0,61.31600258674795,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.614703747735668,7.736133387282259,53.28,44.34,53,47,8.333333333333334,1,1,0,0,4,9,3,1,258,1341098.315916568,387195.602264071,656419.8442268069,0,1709.168401809598 -2349,2931,5289,5288,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.36609555159613,6.702780651314802,35,0,-146.2537584036444,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.036515298681094,6.504290134315953,53,47,53.28,44.34,7,1,1,0,0,1,9,3,1,258,1341098.315916568,387195.602264071,656419.8442268069,0,1709.168401809598 -2350,2932,5290,5291,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,7.710569374080428,8.286013513729877,7.20521474246845,11,-3,-30.39692454020969,0,2,2,2019,11,0,10,16,1,0,0,23.27686795015605,23.27686795015605,0,0,0,0,0,1,1,0,7.984319326344378,7.593704471474497,54.2,57.49,49.68,37.85,8.333333333333334,1,1,0,0,13,8,4,1,475.5,971434.3808021735,0,982141.1491973967,0,3894.173444188056 -2350,2932,5291,5290,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.088468598960291,6.882711257838154,11,3,-32.45387945897602,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.955398219683723,7.006943552787098,49.68,37.85,54.2,57.49,6.666666666666667,1,1,0,0,6,8,4,1,475.5,971434.3808021735,0,982141.1491973967,0,3894.173444188056 -2351,2933,5292,5293,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.770294329309271,9.289148080033195,0,6,-5,41.06072379627341,0,3,2,2019,9,0,48,48,1,0,0,15.36152158447717,15.36152158447717,0,0,0,0,0,0,0,0,4.960254250333636,0,55.19,54.26,59.71,50.89,8.333333333333334,1,1,0,0,8,9,5,1,1941.5,930112.2806919523,682551.4094781192,333139.636270805,0,3073.656126001093 -2351,2933,5293,5292,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,6,5,-42.7044799078356,0,3,3,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,3.956570413910451,0,59.71,50.89,55.19,54.26,8.333333333333334,1,1,0,0,8,9,5,1,1941.5,930112.2806919523,682551.4094781192,333139.636270805,0,3073.656126001093 -2351,2934,5294,-9,5292,5293,1,1,24,0,0,0,1,1,-9,0,5,8.352117484538923,8.333148647972502,0,0,0,-897.7065327271857,0,1,2,2019,18,7,45,45,1,7,1,9.683058902889735,9.683058902889735,0,0,0,0,0,0,0,0,0,0,35.53,63.81,-9,-9,3.333333333333333,1,1,0,0,2,9,4,1,1033,-59374.27501898737,0,0,0,1585.606636392733 -2352,2935,5295,5296,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.903611605674148,8.154516393237158,50,3,9.649750133313908,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.029002110372416,8.219571731688031,51.66,54.88,59.53,56.44,8.333333333333334,1,1,0,0,8,10,3,1,185.5,2467968.078368691,980932.5408195686,1211506.146410798,0,3080.178724739556 -2352,2935,5296,5295,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.771088930167715,6.20046326478134,50,-3,148.0681887481905,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.462833130592996,6.152424926754509,59.53,56.44,51.66,54.88,0,1,1,0,0,7,10,3,1,185.5,2467968.078368691,980932.5408195686,1211506.146410798,0,3080.178724739556 -2353,2936,5297,5298,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.773136318647026,8.224772403236893,6.016040965318528,7,3,72.89484564825034,0,3,3,2019,9,0,60,60,1,0,0,4.683827385471716,4.683827385471716,0,0,0,0,2,0,0,0,0,6.294531617081629,57.57,49.69,42.84,50.73,5,1,1,0,0,8,11,4,1,721.5,329236.7295930063,59775.82565785825,134609.3541828585,57004.96072819663,2524.697555385193 -2353,2936,5298,5297,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.75366957204039,7.512645188436956,0,7,-3,-60.88280264164391,0,2,2,2019,13,2,34,25,1,2,0,8.446401417842129,8.446401417842129,0,0,0,0,0,0,0,0,0,0,42.84,50.73,57.57,49.69,10,1,1,0,0,8,11,4,1,721.5,329236.7295930063,59775.82565785825,134609.3541828585,57004.96072819663,2524.697555385193 -2354,2937,5299,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-991.1890762239534,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,23.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,449,46605.21605332378,0,0,0,1135.763605485345 -2354,2938,5300,-9,5299,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1000.505159019227,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.26,12.2,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,960,-107096.7603631999,-2895.802419346154,0,0,520.9803080922057 -2355,2939,5301,5302,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.291732741470131,7.297386940816902,0,23,0,90.11499768590789,0,2,2,2019,11,1,39,36,1,1,0,3.657428461446852,3.657428461446852,0,0,0,0,0,1,1,0,0,0,53.54,49.68,48.45,57.49,6.666666666666667,1,1,0,0,10,10,4,1,367.6666666666667,332134.49317489,287023.7615239651,267159.5149213285,42682.71066510869,2879.254695852311 -2355,2939,5302,5301,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.57582015376736,8.516315360866932,0,26,0,211.866038906538,0,3,3,2019,11,1,57,74,1,1,0,10.47482768849065,10.47482768849065,0,0,0,0,0,1,1,0,0,0,48.45,57.49,53.54,49.68,3.333333333333333,1,1,0,0,10,10,4,1,367.6666666666667,332134.49317489,287023.7615239651,267159.5149213285,42682.71066510869,2879.254695852311 -2355,2939,5303,-9,5301,5302,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1077.573112251342,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.145189659300785,0,51.77,58.57,-9,-9,10,1,1,0,0,1,10,4,1,367.6666666666667,332134.49317489,287023.7615239651,267159.5149213285,42682.71066510869,2879.254695852311 -2356,2940,5304,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.819845857055066,8.813710401006945,0,0,0,-1104.675512086606,0,2,1,2019,10,0,47,50,1,0,0,12.89107358767001,12.89107358767001,0,0,0,0,0,1,1,0,0,0,51.81,30.79,-9,-9,8.333333333333334,1,1,0,1,11,12,5,1,495,164403.1941228664,144281.6286209356,180859.8861957919,71922.68710202879,1759.959251451857 -2357,2941,5305,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.139537963742,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.84,37.34,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,96,174960.9167240316,0,0,0,2099.704102374771 -2358,2942,5306,-9,5307,5308,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-879.2191860996724,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,59.12,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,672.3333333333334,1606007.339483231,1456002.516636485,105838.4480365971,32501.52521811855,4351.867589192043 -2358,2942,5307,5308,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.112978941012026,7.072896663128501,0,30,0,51.34837991552092,0,2,2,2019,6,0,22,18,1,0,0,7.648230793974361,7.648230793974361,0,0,0,0,7,1,1,0,0,0,62.18,36.18,49.44,44.51,10,1,1,0,0,9,13,5,1,672.3333333333334,1606007.339483231,1456002.516636485,105838.4480365971,32501.52521811855,4351.867589192043 -2358,2942,5308,5307,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,9.012582809854939,9.117683695506397,0,30,9,-36.10665070255492,0,2,2,2019,2,0,45,42,1,0,0,21.10677929071877,21.10677929071877,0,0,0,0,2,1,1,0,4.183968447745899,0,49.44,44.51,62.18,36.18,8.333333333333334,1,1,0,0,9,13,5,1,672.3333333333334,1606007.339483231,1456002.516636485,105838.4480365971,32501.52521811855,4351.867589192043 -2358,2943,5309,-9,5310,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.6219417284836,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,337,30262.97059570035,0,0,0,1037.64720960153 -2358,2943,5310,-9,5307,5308,1,0,25,0,1,0,2,2,0,0,3,0,0,0,0,0,-1097.904385694772,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,337,30262.97059570035,0,0,0,1037.64720960153 -2358,2944,5311,-9,5307,5308,1,0,22,0,1,0,2,2,-9,0,4,8.208439522909877,8.234082237383832,0,0,0,-1043.925579041895,0,2,1,2019,14,3,40,0,1,3,1,10.36504517775406,10.36504517775406,0,0,0,0,0,1,1,0,0,0,50.42,59.1,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,2128,13662.55461815793,-10260.57551249074,0,0,2068.470733388522 -2359,2945,5312,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.878901903562808,8.835909192288446,0,0,0,-1035.430508891117,0,3,3,2019,9,0,37,38,1,0,0,24.33489610236456,24.33489610236456,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,891,425162.5389893944,499281.4611081009,73709.56351379587,0,2101.408929311234 -2360,2946,5313,5315,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.858333487720385,7.652496483932881,0,10,0,-16.84150438843436,0,2,2,2019,6,0,33,28,1,0,0,6.990782303235937,6.990782303235937,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.92,45.17,8.333333333333334,1,1,0,0,12,1,2,1,959.6666666666666,16024.08568949722,0,54782.67643405422,53870.84184820894,388.6624735949303 -2360,2946,5314,-9,5313,5315,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.731395485638,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,1,959.6666666666666,16024.08568949722,0,54782.67643405422,53870.84184820894,388.6624735949303 -2360,2946,5315,5313,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,0,0,0,10,0,55.84334034306483,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.92,45.17,54.79,55.86,8.333333333333334,1,1,0,0,12,1,2,1,959.6666666666666,16024.08568949722,0,54782.67643405422,53870.84184820894,388.6624735949303 -2361,2947,5316,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.959867347834226,7.819324807972273,0,0,0,-942.9520186869706,0,2,2,2019,8,0,27,23,1,0,0,11.81917228286926,11.81917228286926,0,0,0,0,2,1,1,0,0,0,56.19,46.16,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,281,1028041.192020131,174486.2934318362,591786.9015719532,0,1126.644016805852 -2362,2948,5317,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1056.890006867607,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,2.382097246048975,0,0,1,1,0,0,0,55.12,18.17,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,1601,63963.55567188243,0,0,0,735.5471738137518 -2363,2949,5318,-9,5320,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.2174709902977,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,444.3333333333333,22706.3666934765,54715.19883818497,170396.8501832495,91847.87401683231,2839.635775152918 -2363,2949,5319,5320,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.33936070765315,8.60985280231265,0,7,-5,-55.17820923650842,0,-9,-9,2019,10,0,48,48,1,1,0,11.10961527414318,11.10961527414318,0,0,0,0,0,0,0,0,0,0,50,57,54.1,59.11,7,1,1,0,0,1,2,4,1,444.3333333333333,22706.3666934765,54715.19883818497,170396.8501832495,91847.87401683231,2839.635775152918 -2363,2949,5320,5319,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,7.637336514865195,7.326068760088923,0,7,5,-86.75675374452851,0,2,2,2019,9,0,23,25,1,0,0,6.647110172258202,6.647110172258202,0,0,0,0,7,0,0,0,0,0,54.1,59.11,50,57,8.333333333333334,1,1,0,0,10,2,4,1,444.3333333333333,22706.3666934765,54715.19883818497,170396.8501832495,91847.87401683231,2839.635775152918 -2364,2950,5321,5322,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.63972201338613,8.83417500338213,0,9,17,-86.84431172179046,0,2,1,2019,13,1,35,45,1,1,0,20.34295121462062,20.34295121462062,0,0,0,0,0,0,0,0,0,0,47.7,47.03,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,686.5,1293082.323739367,1003523.112157244,145307.3356845003,0,2931.413197421777 -2364,2950,5322,5321,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.617452357879344,7.287496215678178,0,10,-17,43.23485012243743,0,1,1,2019,7,0,20,25,1,0,0,11.90938854310216,11.90938854310216,0,0,0,0,0,0,0,0,0,0,57.16,56.15,47.7,47.03,8.333333333333334,1,1,0,0,7,4,5,1,686.5,1293082.323739367,1003523.112157244,145307.3356845003,0,2931.413197421777 -2365,2951,5323,5324,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.275759362593055,8.640980695025476,0,5,0,-7.135093943909504,0,-9,-9,2019,9,2,58,58,1,2,0,7.196911866724164,7.196911866724164,0,0,0,0,0,0,0,0,2.208388583407345,0,47.58,63.43,42.22,58.79,8.333333333333334,1,1,0,0,9,8,5,1,1482,162787.5618526082,-55940.50744984102,343888.1458724203,306574.6669169101,4992.557961549948 -2365,2951,5324,5323,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,9.133953233099259,9.168698454503355,0,5,0,48.15158864067057,0,-9,-9,2019,13,3,41,42,1,3,0,28.51029454372211,28.51029454372211,0,0,0,0,0,0,0,0,0,0,42.22,58.79,47.58,63.43,8.333333333333334,1,1,0,0,4,8,5,1,1482,162787.5618526082,-55940.50744984102,343888.1458724203,306574.6669169101,4992.557961549948 -2366,2952,5325,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,9.028169036020586,9.10512442719619,0,0,0,-852.5047997438426,0,2,-9,2019,12,0,60,59,1,0,0,16.74921632209721,16.74921632209721,0,0,0,0,2,1,1,0,0,0,49.69,51.4,-9,-9,5,3,4,0,0,12,8,5,1,771,301122.3073174831,55991.32513891158,457923.3452032398,310425.2392701792,3594.823094676074 -2366,2952,5326,-9,5325,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.225465971267,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,8,5,1,771,301122.3073174831,55991.32513891158,457923.3452032398,310425.2392701792,3594.823094676074 -2366,2952,5327,-9,5325,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.846172544818,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,771,301122.3073174831,55991.32513891158,457923.3452032398,310425.2392701792,3594.823094676074 -2366,2953,5328,-9,5325,-9,1,1,22,0,2,0,1,1,1,0,3,8.085921522394644,8.210216581736496,0,0,0,-975.410193965302,-9,1,-9,2019,10,1,45,0,1,1,1,11.06502112353749,11.06502112353749,0,0,0,0,0,1,1,0,0,0,34.93,55.72,-9,-9,3.333333333333333,3,4,0,0,5,8,4,1,296.5,-65241.58443763673,111909.9086932831,0,0,1112.514585273544 -2366,2953,5329,-9,-9,5328,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.541347809029,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,1,296.5,-65241.58443763673,111909.9086932831,0,0,1112.514585273544 -2366,2954,5330,-9,5325,-9,1,0,20,0,2,0,2,2,-9,0,3,7.5292206498554,7.419038720887626,0,0,0,-901.2946810059739,0,1,-9,2019,18,4,36,0,1,4,1,6.575599366067982,6.575599366067982,0,0,0,0,0,1,1,0,0,0,34.65,58.34,-9,-9,3.333333333333333,3,4,0,1,4,8,3,1,696,-126502.3416355789,93382.50309922567,0,0,811.2114298552846 -2367,2955,5331,5332,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,48,0,54.71757767185529,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.564599187037217,0,64.01000000000001,22.01,59.53,27.3,8.333333333333334,1,1,0,0,0,2,2,1,693.5,511057.8439380716,267191.2686191365,127324.4672858525,0,1375.875214681038 -2367,2955,5332,5331,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,5.896749946219354,6.069697202357299,48,0,-9.254401134848859,0,2,3,2019,9,1,0,24,4,1,0,0,0,0,0,0,0,0,1,1,0,6.410805364736187,6.121185978534551,59.53,27.3,64.01000000000001,22.01,3.333333333333333,1,1,0,0,6,2,2,1,693.5,511057.8439380716,267191.2686191365,127324.4672858525,0,1375.875214681038 -2368,2956,5333,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.98449089342954,7.915453244059907,0,0,-924.4989766458999,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,8.708310090208226,7.701023893241427,43.84,47.84,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,267,2564235.542338585,165861.4669701687,1557638.757214342,0,1626.10256432644 -2369,2957,5334,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,6.972429976328455,7.269774296299427,0,0,-1084.16459451657,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,6.29100311900824,7.197408256813264,46.3,58.97,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,685,114867.0932282297,230293.3928184469,0,0,1331.484466600805 -2370,2958,5335,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.802455720195,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,14.26881104055512,46.18734991904182,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,8,1,1,623,-58451.26185320051,0,0,0,591.3634045442254 -2371,2959,5336,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.923864146654107,7.881632017837664,0,0,0,-931.5995360235354,0,3,1,2019,12,0,36,36,1,2,0,8.394654021368522,8.394654021368522,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,1,10,8,4,1,145,433887.2293506454,-56102.20682899287,598949.372737326,0,1165.152045376602 -2371,2960,5337,-9,5336,-9,1,1,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-927.5291321602278,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,1957,55583.27832792611,0,0,0,0 -2372,2961,5338,-9,5340,5339,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-968.588407473165,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,768.6666666666666,245806.4195180091,-16528.16097252205,401642.4655441067,203125.1145001676,2736.137446759791 -2372,2961,5339,5340,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.442368066480096,8.452049471124578,0,8,-4,-25.73051927580333,0,-9,-9,2019,5,0,42,41,1,0,0,12.83756502231342,12.83756502231342,0,0,0,0,0,1,1,0,2.47358564640501,0,54.2,57.49,40,54.21,10,1,1,0,0,10,5,4,1,768.6666666666666,245806.4195180091,-16528.16097252205,401642.4655441067,203125.1145001676,2736.137446759791 -2372,2961,5340,5339,-9,-9,1,0,39,1,1,0,1,1,-9,0,4,0,0,0,8,4,4.027636648832123,0,2,2,2019,13,4,0,32,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,54.21,54.2,57.49,8.333333333333334,1,1,1,0,9,5,4,1,768.6666666666666,245806.4195180091,-16528.16097252205,401642.4655441067,203125.1145001676,2736.137446759791 -2373,2962,5341,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.550780316372571,6.655450352216204,0,0,-958.3817527014845,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.49582025564143,57,51,-9,-9,10,1,1,0,0,0,6,2,0,120,82740.13968949029,305189.0483944608,0,0,1005.037831339564 -2374,2963,5342,5343,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,7.395552674956998,7.548001717705939,5.440237115378843,8,5,153.4513121371754,0,3,3,2019,6,0,14,40,1,0,0,14.54171964615564,14.54171964615564,0,0,0,0,0,1,1,0,4.784534850912555,5.486404265262601,62.49,55.09,54.2,57.49,10,1,1,0,0,9,1,3,1,664,486867.0912324195,291171.16790734,164888.634983838,0,2123.768094070865 -2374,2963,5343,5342,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,8,-5,134.7060789718703,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.49,55.09,1.666666666666667,1,1,0,0,7,1,3,1,664,486867.0912324195,291171.16790734,164888.634983838,0,2123.768094070865 -2374,2964,5344,-9,5343,5342,1,1,31,0,0,0,1,1,-9,0,4,6.343475970279361,6.529352672956485,0,0,0,-898.8033670647108,0,2,2,2019,9,1,56,40,1,1,0,1.63012936741217,1.63012936741217,0,0,0,0,0,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,0,7,1,2,1,731,-60932.21275409798,0,0,0,277.7823995778517 -2374,2965,5345,-9,5343,5342,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-950.7881979486027,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.97,46.39,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,362,0,0,0,0,0 -2375,2966,5346,-9,5348,5347,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.700920896432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,670.8,65595.05924528159,100716.9563563145,64363.77085642135,46551.90396112185,1715.618170292009 -2375,2966,5347,5348,-9,-9,1,1,58,0,3,0,2,2,-9,0,1,7.930041860585625,7.804681891322861,0,8,12,56.35474657784345,0,-9,-9,2019,32,11,50,0,1,11,0,5.135737234885778,5.135737234885778,0,0,0,0,0,1,1,0,0,0,23.93,34.27,51.24,58.84,1.666666666666667,1,1,0,1,8,11,3,1,670.8,65595.05924528159,100716.9563563145,64363.77085642135,46551.90396112185,1715.618170292009 -2375,2966,5348,5347,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,7.708121420987791,7.660755521810863,0,14,-12,44.24586023475693,0,3,-9,2019,7,0,32,24,1,0,0,7.44692952240757,7.44692952240757,0,0,0,0,0,1,1,0,0,0,51.24,58.84,23.93,34.27,5,1,1,0,0,8,11,3,1,670.8,65595.05924528159,100716.9563563145,64363.77085642135,46551.90396112185,1715.618170292009 -2375,2966,5349,-9,5348,5347,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.9259750941917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,670.8,65595.05924528159,100716.9563563145,64363.77085642135,46551.90396112185,1715.618170292009 -2375,2966,5350,-9,5348,5347,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-969.9735560750403,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,11,3,1,670.8,65595.05924528159,100716.9563563145,64363.77085642135,46551.90396112185,1715.618170292009 -2376,2967,5351,5353,-9,-9,1,0,45,1,2,0,2,2,-9,0,4,0,0,0,9,-6,-62.52391635084089,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,1.614619273439388,0,51.24,58.84,41.19,49.77,6.666666666666667,1,1,0,0,8,11,3,1,436.5,140513.5491323399,130794.0613398696,46983.39000189118,46539.44913666318,1999.778836214571 -2376,2967,5352,-9,5351,5353,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.757677413475,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,436.5,140513.5491323399,130794.0613398696,46983.39000189118,46539.44913666318,1999.778836214571 -2376,2967,5353,5351,-9,-9,1,1,51,1,2,0,2,2,-9,0,3,8.215202220232435,8.411070087051785,0,9,6,-77.11963119453404,0,-9,-9,2019,11,0,37,37,1,0,0,9.33192789215135,9.33192789215135,0,0,0,0,0,1,1,0,3.955259625491566,0,41.19,49.77,51.24,58.84,5,1,1,0,0,10,11,3,1,436.5,140513.5491323399,130794.0613398696,46983.39000189118,46539.44913666318,1999.778836214571 -2376,2967,5354,-9,5351,5353,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.4445985668436,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,436.5,140513.5491323399,130794.0613398696,46983.39000189118,46539.44913666318,1999.778836214571 -2377,2968,5355,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.185346556686321,9.293102781824304,0,0,0,-949.6133015738938,0,-9,-9,2019,4,0,40,40,1,0,0,34.53817293300865,34.53817293300865,0,0,0,0,2,0,0,0,7.040230766875937,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,193,1188799.030592998,640735.1469494797,0,0,6596.555765417711 -2378,2969,5356,5357,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,17,5,5.380863040774003,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.37,28.07,37.75,24.81,3.333333333333333,1,1,0,0,1,2,3,0,886,10626.77787619015,33528.5428626272,87218.32135382117,14749.86921400149,1332.630594245368 -2378,2969,5357,5356,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,8.034130646564277,8.040038534011948,0,17,-5,-1.528621441380923,0,3,3,2019,14,2,41,39,1,2,0,6.920406680032751,6.920406680032751,0,0,0,0,0,1,1,0,0,0,37.75,24.81,45.37,28.07,6.666666666666667,1,1,0,0,11,2,3,0,886,10626.77787619015,33528.5428626272,87218.32135382117,14749.86921400149,1332.630594245368 -2379,2970,5358,5359,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.542421227572245,8.707828455273161,0,26,0,56.98747775712111,0,2,3,2019,8,0,42,41,1,0,0,14.84963459218673,14.84963459218673,0,0,0,0,0,1,1,0,0,0,56.33,32.41,53.64,37.88,8.333333333333334,1,1,0,0,10,4,5,1,611,318928.0219387779,204064.1587066135,148833.9155842014,49450.74584262367,3418.555716936287 -2379,2970,5359,5358,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.306903536514588,8.466343763407473,0,26,0,-34.66772696019425,0,1,2,2019,8,0,38,37,1,0,0,12.90655901977393,12.90655901977393,0,0,0,0,0,1,1,0,0,0,53.64,37.88,56.33,32.41,8.333333333333334,1,1,0,0,11,4,5,1,611,318928.0219387779,204064.1587066135,148833.9155842014,49450.74584262367,3418.555716936287 -2379,2971,5360,-9,5358,5359,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1113.588032958721,-9,1,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,331,46990.09611574745,0,0,0,0 -2380,2972,5361,-9,5362,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.0732950118172,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,3,0,1753,108614.500867382,-72289.96422871012,0,0,1755.660686287191 -2380,2972,5362,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.471780041643598,7.527211504061315,0,0,0,-1043.086349783168,-9,2,2,2019,9,0,25,0,1,0,0,6.842825311985052,6.842825311985052,0,0,0,0,0,1,0,1,0,0,55.34,54.26,-9,-9,10,1,1,0,0,10,9,3,0,1753,108614.500867382,-72289.96422871012,0,0,1755.660686287191 -2381,2973,5363,5364,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.632463845377545,8.590667291000965,0,5,3,-17.95545660794953,0,2,2,2019,3,0,39,43,1,0,0,16.89080752178584,16.89080752178584,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.3,59.89,10,1,1,0,0,6,2,5,1,992.5,163151.262715973,201967.6437838889,147656.5305094036,69797.25897768629,4417.335248688712 -2381,2973,5364,5363,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.742121882974097,8.510608809344422,0,5,-3,32.66386600831449,0,-9,-9,2019,9,1,45,40,1,1,0,17.64825918628983,17.64825918628983,0,0,0,0,0,0,0,0,0,0,49.3,59.89,59.53,56.44,10,1,1,0,0,4,2,5,1,992.5,163151.262715973,201967.6437838889,147656.5305094036,69797.25897768629,4417.335248688712 -2382,2974,5365,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.926816311640154,8.976255378134782,0,0,-1048.771853440523,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.240924417181339,8.85108926713268,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,602,1751527.692430458,995903.5154520281,473800.3447701778,0,4384.515201580974 -2383,2975,5366,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.560366904238376,5.732926418208889,0,0,-1118.618982333476,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.805797585729652,51,46,-9,-9,7,1,1,0,0,0,6,2,1,192,305142.6982371307,117654.3838449988,149374.1092387993,0,820.7742475519169 -2384,2976,5367,5368,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.309185198397477,8.240075428676873,0,4,-1,-77.12766591180605,0,2,2,2019,13,2,38,38,1,2,0,11.92963863700689,11.92963863700689,0,0,0,0,0,0,0,0,0,0,53.23,55.33,47.62,57.75,10,1,1,0,0,9,13,5,1,566,-37171.28266320984,74529.2123190994,0,0,3381.085470213369 -2384,2976,5368,5367,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.514736862632963,8.362630623660241,0,4,1,33.57954860688321,0,-9,-9,2019,9,0,37,38,1,0,0,13.13446492759134,13.13446492759134,0,0,0,0,0,0,0,0,0,0,47.62,57.75,53.23,55.33,8.333333333333334,1,1,0,0,5,13,5,1,566,-37171.28266320984,74529.2123190994,0,0,3381.085470213369 -2385,2977,5369,5371,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.80620842501124,7.719705342435979,0,7,-2,-4.251028657277452,0,-9,2,2019,11,0,23,25,1,0,0,10.06479513357098,10.06479513357098,0,0,0,0,0,1,1,0,0,0,53.14,45.74,52.77,55.33,8.333333333333334,1,1,0,0,8,9,4,1,1676,630950.6348513436,253691.8935681457,277417.6729978372,40447.50401256917,3498.525126580398 -2385,2977,5370,-9,5369,5371,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.7796052832448,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1676,630950.6348513436,253691.8935681457,277417.6729978372,40447.50401256917,3498.525126580398 -2385,2977,5371,5369,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.580135547419124,8.554494356085034,0,7,2,81.98164911856854,0,-9,-9,2019,10,0,43,43,1,0,0,15.76735848525797,15.76735848525797,0,0,0,0,0,1,1,0,0,0,52.77,55.33,53.14,45.74,10,1,1,0,0,12,9,4,1,1676,630950.6348513436,253691.8935681457,277417.6729978372,40447.50401256917,3498.525126580398 -2386,2978,5372,5373,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.303676366760818,6.514248954584545,45,-1,119.4586913901433,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.456698237920479,25.74,31.76,50,47,8.333333333333334,4,5,0,0,0,4,2,1,273.5,395193.3848473782,14590.34334897975,216156.3291034817,0,1431.595949261244 -2386,2978,5373,5372,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,45,1,-44.09549299522149,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,13.27531379035163,0,0,1,1,0,0,0,50,47,25.74,31.76,7,4,5,0,1,0,4,2,1,273.5,395193.3848473782,14590.34334897975,216156.3291034817,0,1431.595949261244 -2387,2979,5374,5375,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,49,5,69.68878004350222,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,59.07,43.05,7,1,1,0,0,0,11,3,1,530,831030.1299658732,334087.7232261045,432766.7463433957,0,1864.419222951194 -2387,2979,5375,5374,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.716543406963218,7.657134873960397,49,-5,5.270624328834035,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.0664225022835604,7.65578592827221,59.07,43.05,53,47,5,1,1,0,0,0,11,3,1,530,831030.1299658732,334087.7232261045,432766.7463433957,0,1864.419222951194 -2388,2980,5376,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.079939386519849,7.081476874730535,0,0,-936.7918113199287,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.274646942222844,57.17,50.61,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,386,285895.1337688711,207408.4422896177,0,0,2134.678191572997 -2389,2981,5377,-9,-9,-9,1,0,34,0,0,0,3,3,-9,1,1,0,0,0,0,0,-803.7707736320926,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,32.11,-9,-9,0,1,1,0,1,0,6,1,0,301,-64439.97289158375,0,0,0,1614.71598848713 -2390,2982,5378,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.24441166457,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.406069240784201,0,53.98,50.87,-9,-9,10,1,1,0,0,0,4,1,0,902,-29242.28094724905,0,0,0,1111.323593447424 -2391,2983,5379,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,4,6.474476164045615,6.644319886844446,0,0,0,-945.2668212252664,0,-9,-9,2019,10,0,8,8,1,0,0,7.811161383269869,7.811161383269869,0,0,0,0,14.5,1,0,1,0,0,41.55,59.5,-9,-9,5,1,1,0,0,7,11,2,0,207,-50237.36544113994,0,0,0,2346.180406532671 -2391,2983,5380,-9,5379,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.63202097839,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,207,-50237.36544113994,0,0,0,2346.180406532671 -2392,2984,5381,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.822434336881829,8.738052927823901,0,0,0,-1064.438096784275,0,-9,-9,2019,8,0,51,65,1,0,0,11.09037437271423,11.09037437271423,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,988,-68992.71582414104,0,0,0,1537.593151776983 -2393,2985,5382,5383,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,33,0,-87.20377178689596,0,3,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,44.63,18.77,48.28,60.18,0,4,5,0,0,0,8,5,1,645,554771.9734660687,81947.41411059385,410279.4620710824,0,3039.843446236901 -2393,2985,5383,5382,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.210763020215946,9.406585849249417,0,32,0,88.20538546463769,0,3,3,2019,10,0,38,40,1,0,0,32.45536369398619,32.45536369398619,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.63,18.77,3.333333333333333,1,1,0,0,10,8,5,1,645,554771.9734660687,81947.41411059385,410279.4620710824,0,3039.843446236901 -2393,2986,5384,-9,5382,5383,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.226964060563,0,2,1,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,42.5,44.01,-9,-9,3.333333333333333,4,2,1,0,0,8,1,1,2164,187485.1446253941,0,0,0,0 -2394,2987,5385,-9,-9,-9,1,1,51,0,1,0,2,2,-9,1,3,0,0,0,0,0,-933.5301552261373,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,44.96,50.74,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,525,0,0,0,0,2540.608016744015 -2395,2988,5386,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.747615497982148,5.706941529958837,0,0,-1130.202445657069,-9,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.823990807651342,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,360,191763.5016093421,133256.9091466907,0,0,1428.337409044957 -2396,2989,5387,5388,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,8,8,62.50191669096408,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.137904319366073,0,0,1,1,0,3.494032231505044,0,57.3,35.6,61.16,47.65,8.333333333333334,1,1,0,0,9,13,3,1,653,1234974.472140019,931276.8120753234,118241.6610289712,0,2570.756105819912 -2396,2989,5388,5387,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.916418793107775,7.919797853883688,8,-8,106.8725843136095,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.178481735732851,8.269066327025769,61.16,47.65,57.3,35.6,8.333333333333334,1,1,0,0,7,13,3,1,653,1234974.472140019,931276.8120753234,118241.6610289712,0,2570.756105819912 -2397,2990,5389,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.164722461293229,8.108079049284523,0,0,0,-961.0420932034195,0,2,2,2019,19,7,37,0,1,7,0,11.55462594706735,11.55462594706735,0,0,0,0,0,0,0,0,0,0,28.31,49.08,-9,-9,5,1,1,0,0,11,10,4,1,1233,199337.322482219,130928.678841533,261126.3485926017,63603.21495564948,1755.306345255215 -2398,2991,5390,-9,5392,5393,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.9718468969969,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,788,543487.9230554395,254627.1642857388,495338.262824064,310758.7643501104,8871.867967104157 -2398,2991,5391,-9,5392,5393,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.5505977824913,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,788,543487.9230554395,254627.1642857388,495338.262824064,310758.7643501104,8871.867967104157 -2398,2991,5392,5393,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.692846973918878,7.431979899571597,0,10,-2,-46.06046726610186,-9,2,2,2019,12,2,17,0,1,2,0,13.4458254915259,13.4458254915259,0,0,0,0,0,1,1,0,3.21749811774618,0,46.1,59.99,54.96,53.17,1.666666666666667,1,1,0,0,13,2,5,1,788,543487.9230554395,254627.1642857388,495338.262824064,310758.7643501104,8871.867967104157 -2398,2991,5393,5392,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,9.721428815397307,9.911245070459556,0,20,2,53.03148876425554,0,2,1,2019,11,0,55,45,1,0,0,33.58598147266585,33.58598147266585,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.1,59.99,8.333333333333334,1,1,0,0,13,2,5,1,788,543487.9230554395,254627.1642857388,495338.262824064,310758.7643501104,8871.867967104157 -2399,2992,5394,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1074.797723127311,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.01,32.97,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,358,-225183.3724030807,0,0,0,1363.918284371561 -2400,2993,5395,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.590460105906823,7.298940330782591,0,0,0,-962.3746627158577,-9,1,2,2019,4,1,33,0,1,1,0,10.14346032391825,10.14346032391825,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,351,-141212.1105016473,-51755.58493534625,0,0,781.0154795471954 -2401,2994,5396,5397,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,9.012157000628854,8.8250492162746,0,6,3,161.6926205736936,-9,-9,-9,2019,10,0,40,0,1,1,0,17.30959699649476,17.30959699649476,0,0,0,0,0,0,0,0,0,0,52,47,23.88,57.05,7,1,1,0,0,1,4,5,1,482.5,654500.113134987,545555.8120298234,52319.98908913133,0,3618.774118879847 -2401,2994,5397,5396,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.238498596002072,7.230452724039946,0,39,-3,8.730045045136594,0,2,2,2019,30,12,25,30,1,12,0,6.79850721044181,6.79850721044181,0,0,0,0,2,0,0,0,6.45228153221577,0,23.88,57.05,52,47,6.666666666666667,1,1,0,0,8,4,5,1,482.5,654500.113134987,545555.8120298234,52319.98908913133,0,3618.774118879847 -2402,2995,5398,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.980777734063476,7.863509559222607,0,0,-874.7475338655975,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,4.970419447416146,7.657158173952072,53.35,32.27,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,350,849431.5265846901,476078.8066067806,378729.5854095961,0,2054.135412400748 -2403,2996,5399,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.3889945286468,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.74,36.56,-9,-9,0,1,1,0,0,0,1,1,0,691,-48213.99742071128,0,0,0,1735.525403705476 -2404,2997,5400,5401,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.936547158362639,6.739853604984314,0,32,-2,182.2907686107299,0,3,3,2019,12,1,3,20,1,1,0,33.25537439092763,33.25537439092763,0,0,0,0,0,0,0,0,0,0,64.88,42.16,35.16,48.81,10,1,1,0,0,8,11,3,1,350,189724.0815673311,-20020.36724438233,137421.8757127862,14010.55863604873,1345.925081231876 -2404,2997,5401,5400,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.517096056559383,7.728612307416139,0,32,2,-27.19236257802707,0,3,3,2019,14,2,38,38,1,2,0,6.969761657567563,6.969761657567563,0,0,0,0,0,0,0,0,1.013468899995403,0,35.16,48.81,64.88,42.16,5,1,1,0,0,8,11,3,1,350,189724.0815673311,-20020.36724438233,137421.8757127862,14010.55863604873,1345.925081231876 -2405,2998,5402,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,6.685900086467274,7.026401739798165,6.434466746353136,0,0,-973.7048086926336,0,2,-9,2019,15,3,18,15,1,3,0,5.16710949830193,5.16710949830193,0,0,0,0,0,1,1,0,6.813120222620057,0,26.04,63.76,-9,-9,3.333333333333333,1,1,0,0,6,9,2,0,1034.5,50341.63055918156,0,0,0,1487.816234967309 -2405,2998,5403,-9,5402,-9,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-976.8462947268799,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.22,40.05,-9,-9,10,1,1,0,0,0,9,2,0,1034.5,50341.63055918156,0,0,0,1487.816234967309 -2406,2999,5404,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.340953229149614,8.263271412213747,0,0,0,-1030.536943174161,0,2,2,2019,12,0,37,38,1,0,0,11.44346791709789,11.44346791709789,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,1.666666666666667,1,1,0,0,8,9,4,0,629,265224.0766395233,272409.2150328517,199691.6349846044,89468.70382507924,1371.575781133288 -2407,3000,5405,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.83968415150375,8.969203263526792,0,0,0,-880.7380395227401,0,-9,-9,2019,11,1,44,37,1,1,0,18.97042312849711,18.97042312849711,0,0,0,0,0,0,0,0,10.1221466714283,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,396,451867.7106350508,475416.7500266629,0,0,41203.7619591434 -2408,3001,5406,-9,5407,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.98890959082,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,1,628.3333333333334,-22881.65927947768,29165.18922479304,0,0,-29.261253585191 -2408,3001,5407,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,0,0,0,0,0,-934.4485376477547,0,1,1,2019,20,8,0,32,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.68,57.73,-9,-9,0,1,1,0,1,5,9,1,1,628.3333333333334,-22881.65927947768,29165.18922479304,0,0,-29.261253585191 -2408,3001,5408,-9,5407,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.275276561493,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,1,628.3333333333334,-22881.65927947768,29165.18922479304,0,0,-29.261253585191 -2409,3002,5409,-9,5411,5410,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.750799952663,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1036.666666666667,-56217.16969368744,93571.51781564415,113194.011899869,87185.83851653694,2130.865787379428 -2409,3002,5410,5411,-9,-9,1,1,58,0,1,0,2,2,-9,0,2,8.284633162674163,8.703548782985793,0,30,5,-4.892553019825568,0,2,2,2019,14,1,47,44,1,1,0,8.969612541790173,8.969612541790173,0,0,0,0,0,1,1,0,4.668232225800337,0,58.32,36.99,43.69,40.53,6.666666666666667,1,1,0,0,10,6,3,1,1036.666666666667,-56217.16969368744,93571.51781564415,113194.011899869,87185.83851653694,2130.865787379428 -2409,3002,5411,5410,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.018395662157221,6.926526497233535,0,30,-5,-5.053199629380398,0,2,2,2019,18,4,18,16,1,4,0,5.798397493900147,5.798397493900147,0,0,0,0,0,1,1,0,0,0,43.69,40.53,58.32,36.99,5,1,1,0,0,9,6,3,1,1036.666666666667,-56217.16969368744,93571.51781564415,113194.011899869,87185.83851653694,2130.865787379428 -2409,3003,5412,-9,5411,5410,1,0,28,0,1,0,2,2,-9,0,4,7.330255091057024,7.168037373469066,0,0,0,-884.4198888623196,0,2,2,2019,7,1,26,0,1,1,1,5.997601945032506,5.997601945032506,0,0,0,0,0,1,1,0,.2802867831435952,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,981,0,0,0,0,1009.139020250161 -2410,3004,5413,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.197526394180469,7.102267396023599,0,0,-1064.324957773636,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.927719028295664,7.510575540047301,58.41,47.38,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,535,602092.8492893331,109873.1615846415,62167.81335613962,0,1859.996728533254 -2410,3005,5414,-9,-9,5413,1,1,53,0,0,0,1,1,-9,0,2,8.672660973698163,9.118611287223425,0,0,0,-1012.675387554893,0,2,2,2019,12,1,40,40,1,1,0,19.73830411568911,19.73830411568911,0,0,0,0,0,1,1,0,0,0,42.68,51.1,-9,-9,3.333333333333333,1,1,0,0,7,5,5,1,323,283504.404909204,163982.4271859874,229128.7436090979,91981.04616169236,2618.227427131742 -2411,3006,5415,5416,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.13902427826862,8.23231006383177,0,6,0,-100.4820247823941,0,-9,-9,2019,15,3,41,38,1,3,0,12.72224211155983,12.72224211155983,0,0,0,0,0,0,0,0,0,0,39.26,46.73,54.79,55.86,8.333333333333334,1,1,0,0,7,2,5,1,196.5,12002.02329124056,0,0,0,3682.880270943468 -2411,3006,5416,5415,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.76115539875185,8.799162497182696,0,6,0,36.38569849502258,0,2,2,2019,6,0,40,40,1,0,0,21.20336215188922,21.20336215188922,0,0,0,0,0,0,0,0,4.335202745755353,0,54.79,55.86,39.26,46.73,8.333333333333334,1,1,0,0,7,2,5,1,196.5,12002.02329124056,0,0,0,3682.880270943468 -2412,3007,5417,-9,5418,-9,1,0,30,0,1,0,1,1,-9,0,5,8.80131798930768,8.771328891151599,0,0,0,-1108.724933523549,-9,3,-9,2019,12,0,41,0,1,0,1,15.51928782519576,15.51928782519576,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,9,8,5,0,1475,16820.55704318349,-117593.0658515333,0,0,1980.087597019301 -2412,3008,5418,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,0,0,0,0,0,-921.0551922982395,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.43,43.39,-9,-9,5,1,1,1,0,0,8,1,0,461.5,-50393.58413489303,0,0,0,1225.947928995048 -2412,3008,5419,-9,5418,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-921.9235322748468,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,1,0,461.5,-50393.58413489303,0,0,0,1225.947928995048 -2413,3009,5420,5421,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,58,-6,-43.06486954892519,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,44.29,40.27,46.89,35.63,6.666666666666667,1,1,0,0,0,8,2,1,429,109949.1270195171,5265.3345877881,196754.3316373833,0,1647.618481591234 -2413,3009,5421,5420,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.242179450736402,7.112798454957248,58,6,78.36229335406269,0,2,3,2019,10,2,0,0,4,2,0,0,0,1,0,27.17055486511219,0,0,1,1,0,0,7.243339513442459,46.89,35.63,44.29,40.27,6.666666666666667,1,1,0,0,0,8,2,1,429,109949.1270195171,5265.3345877881,196754.3316373833,0,1647.618481591234 -2414,3010,5422,5423,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.155799970099524,7.819529143968992,0,2,2,50.78735223674245,0,-9,-9,2019,4,0,37,33,1,0,0,9.910114750729864,9.910114750729864,0,0,0,0,0,0,0,0,0,0,55.36,54.24,48.87,58.55,8.333333333333334,1,1,0,0,7,5,4,0,524.5,132858.8533028256,-42119.74232555034,97358.47010294795,46929.14281546127,2434.994610611584 -2414,3010,5423,5422,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.593913729540244,7.729614704839372,0,2,-2,72.81397932439381,0,-9,-9,2019,22,9,40,40,1,9,0,6.094808066108627,6.094808066108627,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.36,54.24,5,1,1,0,0,3,5,4,0,524.5,132858.8533028256,-42119.74232555034,97358.47010294795,46929.14281546127,2434.994610611584 -2415,3011,5424,5425,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.285411729691106,9.24494016822754,0,7,1,119.9402456882441,0,1,1,2019,5,0,42,41,1,0,0,33.35629831539714,33.35629831539714,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.6,51,8.333333333333334,1,1,0,0,9,12,5,1,783.5,2251813.912369968,1985127.134964726,372638.365875967,241864.2745963236,4840.860519926133 -2415,3011,5425,5424,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.877122824974265,8.778811396241135,0,7,-1,71.74152686292877,0,2,1,2019,9,0,47,46,1,0,0,15.07313428698787,15.07313428698787,0,0,0,0,0,0,0,0,0,0,50.6,51,54.1,59.11,3.333333333333333,1,1,0,0,9,12,5,1,783.5,2251813.912369968,1985127.134964726,372638.365875967,241864.2745963236,4840.860519926133 -2415,3012,5426,-9,5425,5424,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1013.7541152435,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.582536270530223,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,452,-61017.16816863135,0,0,0,-42.72410521946637 -2416,3013,5427,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1028.315541464011,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.320081630960154,0,55,43,-9,-9,8,3,4,0,0,0,8,1,0,1826,56170.3675534548,0,0,0,974.5695411079806 -2417,3014,5428,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.416805099354782,8.616481525390597,0,0,0,-1061.629850292096,0,1,2,2019,12,0,30,30,1,0,0,15.93725434344852,15.93725434344852,0,0,0,0,7,0,0,0,4.082239002752908,0,43.59,59.64,-9,-9,5,1,1,0,0,10,8,5,1,567,200946.231694963,194522.3297027384,0,0,1792.699079549596 -2418,3015,5429,5430,-9,-9,1,1,65,0,1,0,2,2,-9,0,3,0,0,0,3,20,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,37.19,34.68,7,4,2,0,0,0,8,1,0,1081.5,-95531.41627678071,0,0,0,2307.469155235831 -2418,3015,5430,5429,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,3,-20,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.19,34.68,52,48,8.333333333333334,4,2,0,0,2,8,1,0,1081.5,-95531.41627678071,0,0,0,2307.469155235831 -2419,3016,5431,5432,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.041422395509395,7.363843502826301,2,-4,-121.3943420941109,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.153038846282973,7.181035315752978,60.12,54.8,58.33,39.49,10,1,1,0,0,0,6,3,1,335.5,688041.5326905493,453885.8672304417,213114.1231155434,0,2622.666374024189 -2419,3016,5432,5431,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.435509345197375,6.970120209983843,2,4,97.49955479997936,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.968583129758545,6.764508304259177,58.33,39.49,60.12,54.8,8.333333333333334,1,1,0,0,0,6,3,1,335.5,688041.5326905493,453885.8672304417,213114.1231155434,0,2622.666374024189 -2420,3017,5433,5435,-9,-9,1,0,41,0,1,0,2,2,-9,1,1,0,0,0,18,0,-17.03711710637902,0,2,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.36,18.82,49.04,55.86,10,4,2,0,0,0,7,3,1,1254.333333333333,1340899.914549519,900716.6064439419,346006.9619874982,0,4607.215474646899 -2420,3017,5434,-9,5433,5435,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1049.871498004767,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,42,1,1,0,2.064667308720168,0,36.63,46.67,-9,-9,8.333333333333334,4,2,0,0,0,7,3,1,1254.333333333333,1340899.914549519,900716.6064439419,346006.9619874982,0,4607.215474646899 -2420,3017,5435,5433,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.643974757100237,8.101808821871023,0,18,0,90.80372893356798,0,-9,-9,2019,8,2,30,24,1,2,0,22.78817551422543,22.78817551422543,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,36.36,18.82,5,1,1,0,0,8,7,3,1,1254.333333333333,1340899.914549519,900716.6064439419,346006.9619874982,0,4607.215474646899 -2421,3018,5436,5437,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,49,1,73.09702862280525,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.9,45.74,62.6,37.23,8.333333333333334,1,1,0,0,0,6,3,1,610.5,859860.1587682134,567898.0184649411,278106.5904371302,0,2193.42668559895 -2421,3018,5437,5436,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.676495326984588,7.735107671174672,49,-1,15.57005248048981,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.57738305273742,7.493729207439396,62.6,37.23,58.9,45.74,10,1,1,0,0,12,6,3,1,610.5,859860.1587682134,567898.0184649411,278106.5904371302,0,2193.42668559895 -2422,3019,5438,-9,5439,5441,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-947.2917753997928,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,3,0,495.2,26139.96753676148,45088.62232102633,0,0,2277.909983377182 -2422,3019,5439,5441,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,10,-3,-.056545344981453,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,0,495.2,26139.96753676148,45088.62232102633,0,0,2277.909983377182 -2422,3019,5440,-9,5439,5441,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.0935003044618,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,495.2,26139.96753676148,45088.62232102633,0,0,2277.909983377182 -2422,3019,5441,5439,5443,-9,1,1,37,0,3,0,2,2,-9,0,4,8.112482211216344,8.499900835243343,0,17,3,64.76817903885623,0,3,3,2019,10,0,36,42,1,1,0,13.65978900196494,13.65978900196494,0,0,0,0,7,1,1,0,0,0,50,57,47,57,7,2,3,0,0,13,8,3,0,495.2,26139.96753676148,45088.62232102633,0,0,2277.909983377182 -2422,3019,5442,-9,5439,5441,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-924.285993982083,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,3,0,495.2,26139.96753676148,45088.62232102633,0,0,2277.909983377182 -2422,3020,5443,-9,-9,-9,1,0,81,0,3,0,2,2,-9,0,3,0,0,0,0,0,-978.0878374208568,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,15.0591913978328,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,0,584,-167948.2378173719,0,0,0,887.9262588267003 -2423,3021,5444,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1071.636130336244,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.526756131353159,0,59.81,35.89,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,730,-15420.03226962276,0,0,0,1006.340900299223 -2424,3022,5445,-9,-9,-9,1,0,45,0,5,0,1,1,-9,1,3,8.273279824061353,8.410401001724043,0,0,0,-1061.462841815203,-9,2,2,2019,1,0,39,0,1,0,0,12.23330289620588,12.23330289620588,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,2,3,0,0,3,10,3,0,689,19814.6785802587,0,0,0,2408.228742595286 -2424,3022,5446,-9,5445,-9,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-989.121732604054,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,0,689,19814.6785802587,0,0,0,2408.228742595286 -2424,3022,5447,-9,5445,-9,1,1,17,0,5,0,2,2,-9,0,4,0,0,0,0,0,-1199.710052928504,-9,1,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,9,10,3,0,689,19814.6785802587,0,0,0,2408.228742595286 -2425,3023,5448,5450,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,7.510986652617696,7.59455223170272,0,10,3,-43.63983274643636,0,3,2,2019,12,2,28,28,1,2,0,7.820849463596255,7.820849463596255,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.35,33.61,6.666666666666667,1,1,0,0,11,12,5,1,1091.666666666667,741797.1912203943,461601.4728458968,195719.7128224805,63713.61769144968,5437.855974473248 -2425,3023,5449,-9,5448,5450,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1058.817513161078,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1091.666666666667,741797.1912203943,461601.4728458968,195719.7128224805,63713.61769144968,5437.855974473248 -2425,3023,5450,5448,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,9.337043936955531,9.448609875200397,0,10,-3,4.302604809374952,0,-9,-9,2019,12,0,82,94,1,0,0,18.11641490974015,18.11641490974015,0,0,0,0,0,0,0,0,0,0,42.35,33.61,54.1,59.11,5,1,1,0,0,11,12,5,1,1091.666666666667,741797.1912203943,461601.4728458968,195719.7128224805,63713.61769144968,5437.855974473248 -2425,3024,5451,-9,5448,5450,1,1,26,0,1,0,2,2,-9,0,4,8.11191156483469,7.966757771474757,0,0,0,-1082.533542391482,0,2,2,2019,12,0,45,45,1,0,1,8.973761824310632,8.973761824310632,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,256,183785.373840918,-46829.18780862654,122756.4885697083,97586.39052571365,1791.302160795568 -2426,3025,5452,5453,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.044927686558617,9.197424179728484,0,6,-2,120.9947161340373,0,2,1,2019,14,2,48,55,1,2,0,22.81453946499703,22.81453946499703,0,0,0,0,0,0,0,0,7.842107123416852,0,42.36,56.12,52.34,56.95,6.666666666666667,1,1,0,0,7,9,5,1,1019,399002.9117743645,43132.94906603239,372421.9086116051,175694.6521910394,6033.621064933274 -2426,3025,5453,5452,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.524014340894333,7.225056488862366,0,6,2,122.5176515695912,0,2,-9,2019,11,1,10,20,1,1,0,24.33700144389339,24.33700144389339,0,0,0,0,0,0,0,0,7.164745841874994,0,52.34,56.95,42.36,56.12,8.333333333333334,1,1,0,0,7,9,5,1,1019,399002.9117743645,43132.94906603239,372421.9086116051,175694.6521910394,6033.621064933274 -2426,3025,5454,-9,5453,5452,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.2119248932287,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1019,399002.9117743645,43132.94906603239,372421.9086116051,175694.6521910394,6033.621064933274 -2427,3026,5455,5456,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,9,0,-73.44475886978172,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.74,40.91,51.5,45.28,10,2,3,0,0,8,7,4,1,499.5,1560550.135129931,1003097.063755327,483689.001821534,0,1528.344343106488 -2427,3026,5456,5455,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.338617998321466,8.233193569532807,0,9,0,-95.29058752556057,0,2,2,2019,12,0,38,37,1,0,0,13.30997504483193,13.30997504483193,0,0,0,0,0,1,0,1,0,0,51.5,45.28,58.74,40.91,8.333333333333334,1,1,0,0,10,7,4,1,499.5,1560550.135129931,1003097.063755327,483689.001821534,0,1528.344343106488 -2427,3027,5457,-9,5455,5456,1,1,20,0,0,0,2,2,-9,0,3,8.539536674429122,8.477519762012721,0,0,0,-955.3338373860481,0,2,2,2019,11,0,60,0,1,0,1,8.648125626197567,8.648125626197567,0,0,0,0,0,1,0,1,0,0,48.7,56.22,-9,-9,5,2,3,0,0,3,7,5,1,143,0,0,0,0,2576.139902560469 -2427,3028,5458,-9,5455,5456,1,0,32,0,0,0,3,3,-9,0,3,7.535754065064557,7.865360121424795,0,0,0,-1070.409011663115,0,2,2,2019,12,0,45,50,1,0,1,5.059525475431037,5.059525475431037,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,10,7,3,1,336,-51745.20724739883,0,0,0,1136.884357594112 -2428,3029,5459,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.298544655275803,8.184156947414827,0,0,0,-1003.026260705737,0,2,1,2019,16,5,42,35,1,5,0,12.96687404538469,12.96687404538469,0,0,0,0,0,0,0,0,7.175732258519866,0,35.53,63.81,-9,-9,6.666666666666667,1,1,0,0,8,11,4,0,4814,126660.7425492103,50509.6137344484,0,0,1719.990102415752 -2429,3030,5460,5461,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,8.734023977009773,8.328987382888371,8,1,66.60724706959893,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.235444371435531,62.29,49.94,52.25,45.21,10,1,1,0,0,3,11,5,1,520.5,818289.1850649619,297722.0937560746,205313.5779618918,19114.19311133329,2946.907940417762 -2429,3030,5461,5460,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.477221632778726,7.500603620296354,0,8,-1,-103.13452114595,0,2,2,2019,9,0,20,20,1,0,0,10.95513886268126,10.95513886268126,0,0,0,0,0,0,0,0,4.682022639463122,0,52.25,45.21,62.29,49.94,8.333333333333334,1,1,0,0,9,11,5,1,520.5,818289.1850649619,297722.0937560746,205313.5779618918,19114.19311133329,2946.907940417762 -2430,3031,5462,-9,5464,5466,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.918743747708,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,480.6,2548415.271794231,2143994.712869522,423848.5542295749,47880.48732938369,3915.33502562106 -2430,3031,5463,-9,5464,5466,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.4533431515,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,480.6,2548415.271794231,2143994.712869522,423848.5542295749,47880.48732938369,3915.33502562106 -2430,3031,5464,5466,-9,-9,1,0,44,0,3,0,2,2,-9,0,1,3.456857040688003,3.57796262245986,0,16,-5,-51.94748047911001,0,2,2,2019,8,1,75,75,1,1,0,.0456360482821596,.0456360482821596,0,0,0,0,0,0,0,0,0,0,62.48,9.74,41.17,59.31,6.666666666666667,1,1,0,0,8,2,5,1,480.6,2548415.271794231,2143994.712869522,423848.5542295749,47880.48732938369,3915.33502562106 -2430,3031,5465,-9,5464,5466,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.534390708953,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,5,1,480.6,2548415.271794231,2143994.712869522,423848.5542295749,47880.48732938369,3915.33502562106 -2430,3031,5466,5464,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.889840728489164,9.358239045424055,0,16,5,-52.26531788844313,0,2,2,2019,18,6,57,45,1,6,0,25.16777119349486,25.16777119349486,0,0,0,0,0,0,0,0,0,0,41.17,59.31,62.48,9.74,6.666666666666667,1,1,0,0,7,2,5,1,480.6,2548415.271794231,2143994.712869522,423848.5542295749,47880.48732938369,3915.33502562106 -2431,3032,5467,-9,5470,5469,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.573420074611,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,868.2,414221.3995825758,388127.2430826849,182957.9243876543,141234.291523762,3370.323912283377 -2431,3032,5468,-9,5470,5469,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.290208139775,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,868.2,414221.3995825758,388127.2430826849,182957.9243876543,141234.291523762,3370.323912283377 -2431,3032,5469,5470,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.815101000222063,8.703691976424116,0,6,0,-34.58719524424129,0,2,3,2019,11,0,37,37,1,0,0,22.27632762766438,22.27632762766438,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,868.2,414221.3995825758,388127.2430826849,182957.9243876543,141234.291523762,3370.323912283377 -2431,3032,5470,5469,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.228217196774525,7.482055265304049,0,6,0,25.81022029541239,0,2,2,2019,7,0,30,8,1,0,0,8.173434509420243,8.173434509420243,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,6.666666666666667,1,1,0,0,7,11,4,1,868.2,414221.3995825758,388127.2430826849,182957.9243876543,141234.291523762,3370.323912283377 -2431,3032,5471,-9,5470,5469,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1117.988834600518,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,868.2,414221.3995825758,388127.2430826849,182957.9243876543,141234.291523762,3370.323912283377 -2432,3033,5472,5473,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,0,0,39,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.20077826425806,0,57.33,40.23,52,45,8.333333333333334,1,1,0,0,0,7,1,0,183,253021.8267066135,0,213039.6349817799,0,2343.785987480543 -2432,3033,5473,5472,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,39,-2,0,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,57.33,40.23,8,1,1,0,0,0,7,1,0,183,253021.8267066135,0,213039.6349817799,0,2343.785987480543 -2433,3034,5474,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.31603426387052,8.411484927773202,0,0,0,-1005.30536500407,0,3,3,2019,13,5,35,36,1,5,0,13.57310339710171,13.57310339710171,0,0,0,0,0,0,0,0,0,0,37.51,56.99,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,377,177094.7406853562,27167.65068255816,0,0,2392.650739594504 -2434,3035,5475,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.738096577042,0,3,3,2019,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,3.333333333333333,1,1,1,0,9,11,1,0,415,-272394.4983617436,-76975.28603061267,0,0,0 -2435,3036,5476,-9,5477,5479,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-996.7554242898891,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,1149.5,393755.886955741,180285.6452138769,176915.51586277,41416.07225641117,3623.944803936773 -2435,3036,5477,5479,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,8.581675820027753,8.594858927763735,0,2,-3,61.72147912346674,0,2,2,2019,12,0,29,29,1,0,0,19.70484924767867,19.70484924767867,0,0,0,0,0,1,1,0,1.745709145000331,0,48.52,49.66,51.83,57.2,8.333333333333334,1,1,0,0,10,12,5,1,1149.5,393755.886955741,180285.6452138769,176915.51586277,41416.07225641117,3623.944803936773 -2435,3036,5478,-9,5477,5479,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.793028540351,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,1149.5,393755.886955741,180285.6452138769,176915.51586277,41416.07225641117,3623.944803936773 -2435,3036,5479,5477,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.662111894934739,8.574010587147903,0,2,3,108.4479556336689,0,-9,-9,2019,10,0,45,40,1,0,0,14.99898532957949,14.99898532957949,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.52,49.66,8.333333333333334,1,1,0,0,9,12,5,1,1149.5,393755.886955741,180285.6452138769,176915.51586277,41416.07225641117,3623.944803936773 -2436,3037,5480,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.243662711185517,7.268224487559396,0,0,-964.8868740871716,0,3,-9,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.034285796359429,7.61699583831957,50.24,58.02,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,1642,755282.9390042051,382378.0204887688,211687.5516097959,0,1956.510839628223 -2437,3038,5481,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.801618442719516,8.761217685167386,0,0,0,-1140.726991605805,0,2,2,2019,10,0,47,43,1,0,0,15.24381239119351,15.24381239119351,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,11,9,5,1,723,-34836.64579492511,0,0,0,2351.981411384484 -2438,3039,5482,5483,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.514857152671274,7.262194400787518,0,7,3,-125.1441788072102,0,3,2,2019,9,0,40,44,1,0,0,5.003866205713335,5.003866205713335,0,0,0,0,2,0,0,0,2.703765597508705,0,54.96,53.17,51.7,49.11,6.666666666666667,1,1,0,0,8,11,2,1,2069,240320.7163075874,66141.43414416163,0,0,489.0276293363938 -2438,3039,5483,5482,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,7,-3,10.86078427833598,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.7,49.11,54.96,53.17,8.333333333333334,1,1,0,0,1,11,2,1,2069,240320.7163075874,66141.43414416163,0,0,489.0276293363938 -2439,3040,5484,-9,5486,5485,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.252082671129,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,171,477008.7679807624,374350.276986914,0,0,5334.163563255434 -2439,3040,5485,5486,-9,-9,1,1,42,0,2,0,1,1,-9,0,2,8.852529277678016,8.941653240326419,0,6,0,11.38632644534957,0,3,2,2019,14,2,52,48,1,2,0,19.49400241233962,19.49400241233962,0,0,0,0,71.5,1,1,0,4.152534706564659,0,32.08,47.89,54.79,55.86,6.666666666666667,1,1,0,0,6,13,5,1,171,477008.7679807624,374350.276986914,0,0,5334.163563255434 -2439,3040,5486,5485,-9,-9,1,0,42,0,2,0,1,1,-9,1,4,8.747845194047489,8.975124425692069,0,6,0,-70.80525341162219,0,2,1,2019,10,1,49,40,1,1,0,14.35278841526108,14.35278841526108,0,0,0,0,71.5,1,1,0,0,0,54.79,55.86,32.08,47.89,10,1,1,0,0,6,13,5,1,171,477008.7679807624,374350.276986914,0,0,5334.163563255434 -2439,3040,5487,-9,5486,5485,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1201.993956065773,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,171,477008.7679807624,374350.276986914,0,0,5334.163563255434 -2440,3041,5488,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.191418250519276,7.046379428348659,0,0,0,-1024.281508223716,-9,3,3,2019,7,0,20,0,1,0,0,7.257516870227575,7.257516870227575,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,5,4,2,0,301,34330.83399181288,0,0,0,909.1799114882383 -2441,3042,5489,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-932.9839586175426,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,37.73,-9,-9,5,1,1,0,0,0,1,1,1,407,225396.1063390578,0,112491.7317953106,0,920.421703394723 -2442,3043,5490,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.715144312698412,5.454293700015532,0,0,-889.0767421600779,-9,3,2,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.857322409857685,0,44.74,34.68,-9,-9,5,1,1,0,0,0,7,2,1,262,57650.86332085497,-23395.54913938956,0,0,79.90128553157012 -2443,3044,5491,5492,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.453101027140313,8.530983393933388,0,25,-3,-163.3363142406078,0,2,3,2019,6,0,37,37,1,0,0,19.16029414013605,19.16029414013605,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,8,2,5,1,863,656128.677539529,525433.6572208352,210949.1161640912,49932.91905589955,2983.180583984465 -2443,3044,5492,5491,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.883879988692859,8.73644108904352,0,25,3,42.86913715159208,0,3,3,2019,7,0,60,55,1,0,0,10.67439014066934,10.67439014066934,0,0,0,0,0,0,0,0,0,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,863,656128.677539529,525433.6572208352,210949.1161640912,49932.91905589955,2983.180583984465 -2443,3044,5493,-9,5491,5492,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.6955500368321,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.111798797456012,0,57.16,56.15,-9,-9,10,1,1,0,0,8,2,5,1,863,656128.677539529,525433.6572208352,210949.1161640912,49932.91905589955,2983.180583984465 -2443,3044,5494,-9,5491,5492,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1086.112348214659,0,2,2,2019,5,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1.083811505574193,0,50.54,62.09,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,863,656128.677539529,525433.6572208352,210949.1161640912,49932.91905589955,2983.180583984465 -2444,3045,5495,5497,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.47153768729809,8.482537296537167,0,6,1,113.1878459001664,0,2,2,2019,10,0,40,43,1,0,0,13.46153764899944,13.46153764899944,0,0,0,0,0,1,1,0,3.645136146905409,0,53.39,39.15,34.46,29.7,5,1,1,0,0,7,12,4,1,1199.333333333333,337419.7239404565,3563.39666431485,251366.3488897675,0,3228.741937834513 -2444,3045,5496,-9,5497,5495,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.5210085817466,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1199.333333333333,337419.7239404565,3563.39666431485,251366.3488897675,0,3228.741937834513 -2444,3045,5497,5495,-9,-9,1,0,50,0,1,0,1,1,-9,0,1,7.675985173153459,8.149701951718082,0,6,-1,-17.63601650535641,0,2,2,2019,25,10,32,0,1,10,0,10.50465595600505,10.50465595600505,0,0,0,0,0,1,1,0,0,0,34.46,29.7,53.39,39.15,3.333333333333333,1,1,0,1,6,12,4,1,1199.333333333333,337419.7239404565,3563.39666431485,251366.3488897675,0,3228.741937834513 -2444,3046,5498,-9,5497,5495,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-997.6852356020743,-9,1,-9,2019,13,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,38.28,63.48,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,1476,-176986.644942328,0,0,0,0 -2445,3047,5499,-9,5501,5502,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.4420965349572,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,652.4,961407.859903347,466857.2531552591,785547.6422975727,211796.6723760373,6970.622046962359 -2445,3047,5500,-9,5501,5502,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.1155038898747,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,652.4,961407.859903347,466857.2531552591,785547.6422975727,211796.6723760373,6970.622046962359 -2445,3047,5501,5502,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.76502462487605,8.812245428175896,0,19,-2,45.5903236887922,0,2,3,2019,7,0,50,50,1,0,0,14.54955509182122,14.54955509182122,0,0,0,0,0,0,0,0,4.920166254426845,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,652.4,961407.859903347,466857.2531552591,785547.6422975727,211796.6723760373,6970.622046962359 -2445,3047,5502,5501,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.757662717540706,9.588061101101816,0,10,2,13.07905698686093,0,-9,-9,2019,9,0,45,45,1,0,0,45.10696675298895,45.10696675298895,0,0,0,0,0,0,0,0,5.922118984765897,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,652.4,961407.859903347,466857.2531552591,785547.6422975727,211796.6723760373,6970.622046962359 -2445,3047,5503,-9,5501,5502,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1003.644019131777,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,5,1,652.4,961407.859903347,466857.2531552591,785547.6422975727,211796.6723760373,6970.622046962359 -2446,3048,5504,5505,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.015819806929157,8.050586354813561,6.498434321980612,9,4,-66.84622894349249,0,3,2,2019,7,0,30,30,1,0,0,10.82663603208148,10.82663603208148,0,0,0,0,0,0,0,0,6.464095680335769,6.353691957192281,53.65,40.69,52.99,51.28,6.666666666666667,1,1,0,0,10,10,5,1,743,856404.0548789275,358796.8995262234,338199.8548258279,0,3336.666402759579 -2446,3048,5505,5504,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.510151228461552,8.57531967727558,6.269204918638424,9,-4,75.16531019611371,0,2,2,2019,8,0,38,38,1,0,0,11.55301842243671,11.55301842243671,0,0,0,0,0,0,0,0,7.069064744082067,6.158857913771441,52.99,51.28,53.65,40.69,8.333333333333334,1,1,0,0,10,10,5,1,743,856404.0548789275,358796.8995262234,338199.8548258279,0,3336.666402759579 -2447,3049,5506,5507,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,1,2,0,0,3,2,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,21.72,22.57,36.77,38.64,0,1,1,0,0,0,9,2,0,1489.5,145833.7464429245,52368.3576286414,0,0,2251.235974814412 -2447,3049,5507,5506,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,1,-2,0,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,36.77,38.64,21.72,22.57,5,1,1,0,0,0,9,2,0,1489.5,145833.7464429245,52368.3576286414,0,0,2251.235974814412 -2448,3050,5508,5509,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.395458968517076,8.311553883156719,0,5,4,-125.7495193729225,0,3,3,2019,16,4,48,48,1,4,0,11.16485895622633,11.16485895622633,0,0,0,0,0,0,0,0,0,0,41.2,49.96,44.84,53.55,3.333333333333333,2,3,0,0,10,10,5,1,327.5,2177701.567534475,1679570.03055528,203241.5819029878,0,3027.396362204822 -2448,3050,5509,5508,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.280255309589759,8.311370329175013,0,5,-4,52.98269929455693,0,3,2,2019,11,0,50,50,1,0,0,9.840193827027459,9.840193827027459,0,0,0,0,0,0,0,0,0,0,44.84,53.55,41.2,49.96,6.666666666666667,2,3,0,0,10,10,5,1,327.5,2177701.567534475,1679570.03055528,203241.5819029878,0,3027.396362204822 -2449,3051,5510,5511,-9,-9,1,0,48,0,0,0,1,1,-9,1,3,0,0,0,7,-5,-15.15301318648484,0,1,1,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.649997759968374,0,46.14,22.07,45.75,62.87,5,1,1,0,0,0,8,5,1,316.5,4239148.055878316,3393641.546335836,749854.867855916,0,5327.345730400801 -2449,3051,5511,5510,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.783822041014794,9.590656161685057,0,7,5,-50.49849829942293,0,1,2,2019,9,2,45,45,1,2,0,31.92740243281908,31.92740243281908,0,0,0,0,14.5,1,1,0,4.402996892228836,0,45.75,62.87,46.14,22.07,8.333333333333334,1,1,0,0,8,8,5,1,316.5,4239148.055878316,3393641.546335836,749854.867855916,0,5327.345730400801 -2450,3052,5512,5513,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,4.430918006061789,4.408514293935542,7,6,53.57039678250634,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.273983201329165,3.865833426077671,48.76,38.46,53.98,50.87,8.333333333333334,1,1,0,0,0,2,2,1,440.5,207842.9508609945,19759.74858547316,128159.6741695196,0,1589.504548366068 -2450,3052,5513,5512,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-6,36.47751501345615,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.50769728576603,0,53.98,50.87,48.76,38.46,8.333333333333334,1,1,0,0,0,2,2,1,440.5,207842.9508609945,19759.74858547316,128159.6741695196,0,1589.504548366068 -2451,3053,5514,5515,5516,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,43,-6,-165.1355694133709,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,41.05,54.17,51.14,60.45,6.666666666666667,1,1,0,0,2,7,3,1,995.5,824181.1508310686,543258.5857573873,374388.48321709,0,1984.339809516359 -2451,3053,5515,5514,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.460523434194055,7.735586915855766,43,6,16.74698199530146,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.66998606732772,51.14,60.45,41.05,54.17,8.333333333333334,1,1,0,0,0,7,3,1,995.5,824181.1508310686,543258.5857573873,374388.48321709,0,1984.339809516359 -2451,3054,5516,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.238618865037157,5.985401486816722,0,0,-848.0399273372799,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.945169960487484,55,43,-9,-9,8,1,1,0,0,0,7,2,1,294,371362.9694876318,-1969.233147787469,152529.749271931,0,1198.275351193613 -2452,3055,5517,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.133322786708337,8.234349627794119,0,2,-8,109.6477019904433,-9,-9,-9,2019,10,0,40,0,1,1,0,11.01350328857121,11.01350328857121,0,0,0,0,0,0,0,0,0,0,50,57,52.17,30.53,7,4,1,0,0,1,11,4,1,2556,26905.46870607532,-42119.94598236799,0,0,1394.584307620127 -2452,3056,5518,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.812152063377268,8.137436245202013,0,2,8,39.16271003476897,0,2,2,2019,6,0,32,32,1,0,0,8.301127681385305,8.301127681385305,0,0,0,0,0,0,0,0,7.739310419610211,0,52.17,30.53,50,57,8.333333333333334,1,1,0,0,7,11,4,1,948,80367.34565263196,0,0,0,2580.726383535186 -2453,3057,5519,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.828245237191521,8.038155988629653,0,0,0,-993.9876967200747,0,3,3,2019,6,0,37,37,1,0,0,11.08346364773985,11.08346364773985,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,981,-47940.91822914823,92320.59800226617,117701.3308551964,16134.89154859475,1885.917623489608 -2453,3058,5520,-9,5519,-9,1,0,24,0,0,0,2,2,-9,0,5,7.789191370199071,8.023988909608995,0,0,0,-992.2116748946183,0,2,3,2019,21,7,40,35,1,7,1,6.550702198056078,6.550702198056078,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,5,3,0,536,-45072.01272188438,-92298.63812959944,0,0,692.4121961037754 -2454,3059,5521,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1251.585378230522,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.53,38.19,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,382,-71792.40679849424,0,0,0,462.5474854881218 -2455,3060,5522,5523,-9,-9,1,0,33,0,1,0,2,2,-9,0,1,7.30991340247816,7.409739488423783,0,10,-3,98.28018657033836,0,3,3,2019,10,1,19,16,1,1,0,9.08560706698322,9.08560706698322,0,0,0,0,0,1,1,0,0,0,49.84,27.47,57.16,56.15,3.333333333333333,1,1,0,0,8,10,3,1,1328,10250.89825890658,18287.76346742684,227307.0468267465,166500.7596479389,2493.291372297592 -2455,3060,5523,5522,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.273346812878346,8.243290216892051,0,10,3,53.01058515274939,0,2,-9,2019,8,0,47,44,1,0,0,6.619287665920616,6.619287665920616,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.84,27.47,6.666666666666667,1,1,0,0,12,10,3,1,1328,10250.89825890658,18287.76346742684,227307.0468267465,166500.7596479389,2493.291372297592 -2455,3060,5524,-9,5522,5523,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.417598185263,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,1328,10250.89825890658,18287.76346742684,227307.0468267465,166500.7596479389,2493.291372297592 -2456,3061,5525,5526,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.648469005237361,8.402216935080551,7.943865321645348,40,5,165.7654342275472,0,2,3,2019,8,0,19,19,1,0,0,13.33007172046969,13.33007172046969,0,0,0,0,0,0,0,0,7.697325922897056,7.992067860461495,55.57,48.59,47.22,53.97,8.333333333333334,1,1,0,0,10,5,5,1,1443.5,306265.6292865481,46611.83758243878,161166.8684195348,74470.25542939405,4406.091650952016 -2456,3061,5526,5525,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.634961887553663,8.614568352010792,0,40,-5,114.4693565222089,0,3,3,2019,12,0,37,37,1,0,0,15.18471756500017,15.18471756500017,0,0,0,0,0,0,0,0,0,0,47.22,53.97,55.57,48.59,5,1,1,0,0,13,5,5,1,1443.5,306265.6292865481,46611.83758243878,161166.8684195348,74470.25542939405,4406.091650952016 -2456,3062,5527,-9,5526,5525,1,1,26,0,0,0,1,1,-9,0,4,8.433292075206834,8.78792829148475,0,0,0,-1047.059506503472,-9,2,2,2019,10,0,60,0,1,0,1,12.99064840052079,12.99064840052079,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,5,5,1,1831,-56148.11788834656,96852.19941373859,0,0,2261.023188912811 -2457,3063,5528,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.045981699293694,7.717323186792266,0,0,0,-1031.871925162348,0,-9,-9,2019,9,0,74,42,1,0,0,4.795858176760628,4.795858176760628,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,10,4,0,660,128378.1100255628,124755.8326526789,141208.1908538828,0,1181.999582774503 -2458,3064,5529,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,4.892893356642338,4.757826581011758,0,0,-1028.548704038775,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.536971844818062,0,43.23,58.28,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,338,443882.5421570243,0,366914.863496155,0,-147.9298561801114 -2459,3065,5530,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.685855061332481,6.07550228694424,0,0,-981.0185978452924,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.979177103644939,5.703577272869421,30.19,37.62,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,627,246504.2840535095,-62968.72856780878,107262.324028154,0,951.1651129260724 -2459,3066,5531,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.589936277727677,6.534840169674498,0,0,-1095.62519370442,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.471580485650792,48.87,34.3,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1397,-5670.153096425827,173443.8192413521,0,0,1107.846741633721 -2460,3067,5532,5533,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.243960176091606,7.296945789866737,0,24,0,-88.55991520517397,-9,2,1,2019,22,10,23,0,1,10,0,7.222106702742304,7.222106702742304,0,0,0,0,0,0,0,0,1.614175204531313,0,43.4,46.44,47.01,55.33,5,1,1,0,0,6,8,5,1,555.5,3084876.900310871,2209633.560535623,505423.3456191155,0,8628.787088240104 -2460,3067,5533,5532,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.726509289288892,9.65012975890439,0,1,0,-77.41770241480094,-9,-9,-9,2019,15,5,50,0,1,5,0,31.91466287811179,31.91466287811179,0,0,0,0,0,0,0,0,9.14011308527966,0,47.01,55.33,43.4,46.44,1.666666666666667,1,1,0,0,12,8,5,1,555.5,3084876.900310871,2209633.560535623,505423.3456191155,0,8628.787088240104 -2460,3068,5534,-9,5532,5533,1,0,21,0,0,0,1,1,-9,0,4,8.177979148904967,8.647244738946414,7.343994732162262,0,0,-1038.539041497133,-9,1,1,2019,10,2,36,0,1,2,1,8.76023900619705,8.76023900619705,0,0,0,0,0,0,0,0,7.435475689483161,0,43.14,61.33,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,161,-27805.57948393514,0,0,0,2621.765708667586 -2461,3069,5535,5536,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,7,0,-44.8247706858341,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,59.22,37.52,8,1,1,0,0,0,11,2,1,677,745512.2791543658,65148.04261169685,510566.6019526601,0,1353.352386376497 -2461,3069,5536,5535,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.494930460918485,5.192186529882983,7,0,86.29879358282078,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.171101449847761,5.274076729352162,59.22,37.52,53,44,8.333333333333334,1,1,0,0,0,11,2,1,677,745512.2791543658,65148.04261169685,510566.6019526601,0,1353.352386376497 -2462,3070,5537,5538,-9,-9,1,1,50,0,0,0,1,1,-9,1,4,0,0,0,23,-1,71.88537953289266,0,2,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.58,52.99,52.16,35.42,8.333333333333334,1,1,0,0,9,6,3,1,267,972220.2028970498,129649.5936848417,323659.8006177982,115913.6852120635,-474.25781811825 -2462,3070,5538,5537,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,6.873335190408553,7.889064840928649,6.735923230942711,23,1,-39.67138276238642,0,3,3,2019,13,1,8,15,1,1,0,14.21352200752698,14.21352200752698,0,0,0,0,7,1,1,0,6.453024270732475,0,52.16,35.42,55.58,52.99,8.333333333333334,1,1,0,0,7,6,3,1,267,972220.2028970498,129649.5936848417,323659.8006177982,115913.6852120635,-474.25781811825 -2463,3071,5539,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.130303113770059,8.1439076581034,7.467196430996037,0,0,-918.5070886645974,0,-9,-9,2019,12,3,29,20,1,3,0,4.454859773445428,4.454859773445428,0,0,0,0,0,0,0,0,6.790189100220256,7.423451209198434,45.18,54.77,-9,-9,6.666666666666667,1,1,0,0,8,1,4,0,519,158566.9901081862,0,0,0,1509.778699235715 -2464,3072,5540,-9,5542,5541,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-800.8602039251252,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,0,383.5,-22052.71104296131,0,0,0,1463.303882961131 -2464,3072,5541,5542,-9,-9,1,1,46,0,3,0,3,3,-9,1,4,0,0,0,15,14,-65.19799974358547,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,21.71,65.77,8,2,3,0,1,0,7,2,0,383.5,-22052.71104296131,0,0,0,1463.303882961131 -2464,3072,5542,5541,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,6.842971842588751,6.685154709684135,0,16,-14,-23.06810578628481,0,3,2,2019,11,0,14,0,1,2,0,6.852251891579468,6.852251891579468,0,0,0,0,5.48,1,1,0,0,0,21.71,65.77,53,55,1.666666666666667,2,3,0,0,1,7,2,0,383.5,-22052.71104296131,0,0,0,1463.303882961131 -2464,3072,5543,-9,5542,5541,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.066833615929,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,0,383.5,-22052.71104296131,0,0,0,1463.303882961131 -2465,3073,5544,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.626610189522792,7.554116618246332,0,0,0,-1045.668082102683,0,2,2,2019,17,6,25,25,1,6,0,7.99600791902306,7.99600791902306,0,0,0,0,2,0,0,0,0,0,36.4,18.91,-9,-9,8.333333333333334,3,4,0,1,11,8,3,0,868,86707.79464904206,203668.6238725372,0,0,842.9771679037524 -2466,3074,5545,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.915171682025163,6.37443003382031,0,0,-976.0242159152214,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.705098688162001,6.605392768315794,44.63,45.97,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1332,-5748.804049715895,-29386.67793059846,0,0,1605.170280865377 -2467,3075,5546,-9,5547,5548,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.010541243098,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,5,1,551.3333333333334,1373709.105012958,495659.3811432482,959733.0739942041,11498.45567314368,7221.262085338104 -2467,3075,5547,5548,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,9.602498327797313,9.210426554778937,0,15,-1,18.47493807878577,0,1,1,2019,7,0,46,50,1,0,0,29.79894005990628,29.79894005990628,0,0,0,0,0,0,0,0,6.167407758761558,0,55.09,55.87,38.78,52.41,8.333333333333334,1,1,0,0,12,8,5,1,551.3333333333334,1373709.105012958,495659.3811432482,959733.0739942041,11498.45567314368,7221.262085338104 -2467,3075,5548,5547,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.513409698827731,8.513768737656779,0,15,1,43.59218555659656,0,1,1,2019,12,0,40,47,1,0,0,14.55568135881013,14.55568135881013,0,0,0,0,0,0,0,0,7.408432012635885,0,38.78,52.41,55.09,55.87,8.333333333333334,1,1,0,0,12,8,5,1,551.3333333333334,1373709.105012958,495659.3811432482,959733.0739942041,11498.45567314368,7221.262085338104 -2468,3076,5549,5550,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.920995789614033,5.527462604087255,24,-1,-16.55576095403287,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.704971570976046,5.434275315267694,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,1171,1992659.781312846,1356597.968486253,621354.8127908977,0,3076.896770817919 -2468,3076,5550,5549,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.123962037259165,8.113092837656401,24,1,62.61417819837749,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.32999079459084,8.014982056444566,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,1171,1992659.781312846,1356597.968486253,621354.8127908977,0,3076.896770817919 -2469,3077,5551,-9,5553,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.4746948422484,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1184.333333333333,0,0,0,0,1750.368881204153 -2469,3077,5552,-9,5553,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.9080169149606,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1184.333333333333,0,0,0,0,1750.368881204153 -2469,3077,5553,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,2,7.753456079912559,7.679577353005357,0,0,0,-999.5855671995749,0,3,1,2019,13,1,30,0,1,1,0,8.633860626414821,8.633860626414821,0,0,0,0,0,1,1,0,0,0,44.25,50.64,-9,-9,5,1,1,0,0,5,4,3,0,1184.333333333333,0,0,0,0,1750.368881204153 -2470,3078,5554,-9,5555,5557,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.056322688341,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,8,3,0,1330.6,334069.9450364268,253046.1706696963,168566.9073535368,48407.47466457666,3486.304973413343 -2470,3078,5555,5557,-9,-9,1,0,47,0,3,0,3,3,-9,0,4,0,0,0,16,1,46.21362875016842,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.7,23.88,52,55,6.666666666666667,4,5,0,0,0,8,3,0,1330.6,334069.9450364268,253046.1706696963,168566.9073535368,48407.47466457666,3486.304973413343 -2470,3078,5556,-9,5555,5557,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.8515382991761,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,3,0,1330.6,334069.9450364268,253046.1706696963,168566.9073535368,48407.47466457666,3486.304973413343 -2470,3078,5557,5555,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,8.769528003434578,8.786784820556544,0,16,-1,69.14043796669435,0,3,3,2019,9,0,35,35,1,1,0,17.27367435230355,17.27367435230355,0,0,0,0,0,1,1,0,0,0,52,55,67.7,23.88,8,4,5,0,0,1,8,3,0,1330.6,334069.9450364268,253046.1706696963,168566.9073535368,48407.47466457666,3486.304973413343 -2470,3078,5558,-9,5555,5557,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.091958464571,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,3,0,1330.6,334069.9450364268,253046.1706696963,168566.9073535368,48407.47466457666,3486.304973413343 -2471,3079,5559,5560,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.067885363547083,5.927025020958407,48,8,-10.90541791723986,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.102565555995993,60.2,45.35,50.65,60.47,10,1,1,0,0,0,6,3,1,993.5,792890.3039793075,379724.9705443141,291464.125643029,0,3325.523476207178 -2471,3079,5560,5559,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,8.020027993830505,8.157476977972584,48,-8,-9.781614769161484,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.240085188461231,7.797645571603553,50.65,60.47,60.2,45.35,10,1,1,0,0,0,6,3,1,993.5,792890.3039793075,379724.9705443141,291464.125643029,0,3325.523476207178 -2472,3080,5561,5562,-9,-9,1,1,86,0,0,0,3,3,-9,0,1,0,7.460097750799998,7.216090902498909,66,2,43.87097769932697,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,8.106238546591367,4.941751540590477,91.9376500828166,42,1,1,0,0,6.948106239298586,29.27,22.13,49.67,10.31,3.333333333333333,1,1,0,0,0,11,2,0,533.5,323698.7058705677,219249.5289929097,190288.3632067603,0,3108.332303262099 -2472,3080,5562,5561,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,4.457020293148837,4.851682481775788,66,-2,55.59406310543909,0,3,-9,2019,12,3,0,0,4,3,0,0,0,1,2.25404038139173,0,23.77108338503479,71.5,1,1,0,0,4.746856812127588,49.67,10.31,29.27,22.13,3.333333333333333,1,1,0,0,0,11,2,0,533.5,323698.7058705677,219249.5289929097,190288.3632067603,0,3108.332303262099 -2473,3081,5563,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.163305281541438,8.184405684316008,0,0,0,-973.1132923780547,0,-9,-9,2019,12,1,41,39,1,1,0,11.04011077777008,11.04011077777008,0,0,0,0,0,0,0,0,0,0,47.86,53.77,-9,-9,6.666666666666667,1,1,0,0,6,10,4,0,655,18445.90271773003,-72372.09267744022,164094.0556898497,119072.7525301728,1205.255426511647 -2474,3082,5564,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.124803048424433,7.325553754865188,0,0,-1013.485044607273,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.91705768734565,7.645984855801991,57.16,56.15,-9,-9,10,1,1,0,0,0,13,3,1,230,217434.318786379,213058.0281456246,207011.4844185249,0,2065.82505706626 -2475,3083,5565,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.014985544536538,8.449047784061845,0,0,-829.3456402526556,0,2,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.00900711879053,8.399168850861642,52.77,55.33,-9,-9,6.666666666666667,1,1,0,0,7,10,4,1,203,202377.8166856282,243099.8726512773,0,0,1955.913689143351 -2476,3084,5566,-9,-9,-9,1,0,60,0,1,0,2,2,-9,0,2,7.402894351835139,7.697334446839748,0,0,0,-1159.581253399487,0,-9,-9,2019,14,1,40,40,1,1,0,7.562280433323047,7.562280433323047,0,0,0,0,0,1,1,0,0,0,50.69,42.04,-9,-9,5,1,1,0,0,7,2,3,0,607,87266.20892323165,0,0,0,1019.930214726207 -2476,3085,5567,-9,5568,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.6696229188826,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,0,949,6637.156639635226,3331.116518470659,0,0,1291.251488093582 -2476,3085,5568,-9,5566,-9,1,0,31,0,1,0,2,2,-9,0,3,0,4.772250066799298,5.329679521582106,0,0,-1080.428143360347,0,2,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,120,1,1,0,5.148768791055137,0,21.36,62.23,-9,-9,0,1,1,0,1,0,2,2,0,949,6637.156639635226,3331.116518470659,0,0,1291.251488093582 -2476,3086,5569,-9,5566,-9,1,0,26,0,1,0,1,1,-9,0,2,7.781855904557957,7.374568248783569,0,0,0,-1034.717809806472,0,2,-9,2019,14,3,42,40,1,3,1,6.507231454189258,6.507231454189258,0,0,0,0,0,1,1,0,0,0,33.4,43.04,-9,-9,5,1,1,0,0,8,2,3,0,948,-177099.9200905386,0,0,0,821.3986623107243 -2477,3087,5570,5572,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,8.45695053736074,8.623464320562178,0,6,-8,-128.37188287187,0,2,2,2019,24,12,40,41,1,12,0,15.48136236797728,15.48136236797728,0,0,0,0,0,1,1,0,.8394930812906718,0,24.85,67.03,54.45,56.22,6.666666666666667,1,1,0,0,7,11,5,1,689.2,4538994.161238086,1060845.579565061,939381.7169769655,64588.52763343556,4358.852487903724 -2477,3087,5571,-9,5570,5572,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.126843985895,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,689.2,4538994.161238086,1060845.579565061,939381.7169769655,64588.52763343556,4358.852487903724 -2477,3087,5572,5570,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,8.818772958764789,8.903843180367536,0,6,8,-17.47420061204075,0,-9,-9,2019,10,0,45,45,1,0,0,16.99984593286351,16.99984593286351,0,0,0,0,0,1,1,0,0,0,54.45,56.22,24.85,67.03,8.333333333333334,1,1,0,0,11,11,5,1,689.2,4538994.161238086,1060845.579565061,939381.7169769655,64588.52763343556,4358.852487903724 -2477,3087,5573,-9,5570,5572,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-934.3313483393592,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,689.2,4538994.161238086,1060845.579565061,939381.7169769655,64588.52763343556,4358.852487903724 -2477,3087,5574,-9,5570,5572,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.0429741232598,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,689.2,4538994.161238086,1060845.579565061,939381.7169769655,64588.52763343556,4358.852487903724 -2478,3088,5575,-9,-9,5576,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.6984370621816,-9,-9,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,55,22445.63926659409,-21395.11084966305,102288.7489436568,26132.03074908343,1009.707517749304 -2478,3088,5576,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,6.769195918389588,6.692942962275809,0,0,0,-907.3667210507896,0,-9,2,2019,11,1,50,55,1,1,0,1.934820417413257,1.934820417413257,0,0,0,0,0,1,1,0,0,0,58.9,37.87,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,55,22445.63926659409,-21395.11084966305,102288.7489436568,26132.03074908343,1009.707517749304 -2479,3089,5577,5578,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.539291824668928,6.977499090224784,7,-1,-33.34393682376788,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.602897295445648,0,0,1,1,0,3.26968326334326,7.480902278669562,59.81,35.89,62.39,56.71,8.333333333333334,1,1,0,0,0,12,3,1,144,240923.9746518516,0,301858.7457454743,0,2812.98283841042 -2479,3089,5578,5577,-9,-9,1,1,83,0,0,0,1,1,-9,0,5,0,6.893293483515923,6.733135091761164,7,1,-118.1325049502156,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.734526347264651,6.91325713333155,62.39,56.71,59.81,35.89,10,1,1,0,0,6,12,3,1,144,240923.9746518516,0,301858.7457454743,0,2812.98283841042 -2480,3090,5579,-9,5581,5580,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.6845530728457,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,861,982523.2761016829,403635.9943969724,292730.7790414862,101423.2207157859,6602.965331406272 -2480,3090,5580,5581,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.939108451149824,9.240409321153113,0,27,-3,-37.3637520369658,0,2,2,2019,15,4,41,40,1,4,0,30.53177104662439,30.53177104662439,0,0,0,0,0,1,1,0,0,0,40.77,61.04,55.19,54.26,5,4,2,0,0,7,6,5,1,861,982523.2761016829,403635.9943969724,292730.7790414862,101423.2207157859,6602.965331406272 -2480,3090,5581,5580,-9,-9,1,0,48,0,3,0,2,2,-9,0,4,8.820695344820811,8.896532678715165,0,27,3,43.02031298733167,0,2,1,2019,7,0,12,12,1,0,0,77.71897919465829,77.71897919465829,0,0,0,0,2,1,1,0,0,0,55.19,54.26,40.77,61.04,8.333333333333334,1,1,0,0,9,6,5,1,861,982523.2761016829,403635.9943969724,292730.7790414862,101423.2207157859,6602.965331406272 -2480,3090,5582,-9,5581,5580,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.538322262451,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,861,982523.2761016829,403635.9943969724,292730.7790414862,101423.2207157859,6602.965331406272 -2480,3090,5583,-9,5581,5580,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.537604375665,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,861,982523.2761016829,403635.9943969724,292730.7790414862,101423.2207157859,6602.965331406272 -2481,3091,5584,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.314756567087207,7.093946180885935,0,0,-1032.093344163363,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.138859641209602,7.199515995110206,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,334,546239.0804143022,70575.80827657285,257601.6604625461,0,2117.660461114706 -2482,3092,5585,-9,5586,-9,1,1,23,0,0,0,2,2,-9,0,4,8.339721110139076,8.15752294703749,0,0,0,-1104.064958465421,-9,2,2,2019,10,0,40,0,1,1,1,11.55507429719269,11.55507429719269,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,0,737,-138335.6559880468,108077.5428984812,0,0,1704.037727039439 -2482,3093,5586,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,7.556935544257626,7.747787121258033,0,0,0,-862.3287811712484,-9,2,3,2019,9,0,56,0,1,0,0,4.166178687019505,4.166178687019505,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,8.333333333333334,3,4,0,1,9,8,3,0,747,212278.9533182193,101082.809938573,0,0,1271.166744946591 -2483,3094,5587,-9,-9,-9,1,0,20,0,1,0,2,2,1,0,4,7.797432148628685,8.105126937829466,0,0,0,-955.1246677564557,-9,3,3,2019,11,1,37,0,1,1,1,8.635617180656201,8.635617180656201,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,1,2,3,0,1225,80460.55208753499,62349.81171592364,0,0,1242.05015191859 -2484,3095,5588,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.128845424237339,8.046352041105667,0,0,0,-940.3135853155453,0,-9,-9,2019,2,0,40,40,1,0,0,9.222191349878052,9.222191349878052,0,0,0,0,0,0,0,0,0,0,62.1,51.16,-9,-9,10,3,4,0,0,5,5,4,0,178,226711.3434101379,-17009.97408824877,0,0,1296.015744410844 -2485,3096,5589,-9,-9,-9,1,0,30,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1005.908836613529,0,3,2,2019,22,8,0,40,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,18.25,58.03,-9,-9,5,1,1,1,1,4,7,1,0,147,0,0,0,0,1177.236011240673 -2486,3097,5590,-9,5594,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1217.497160803692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,405.8,-51993.08329396324,-4973.722065709206,0,0,3306.66741100578 -2486,3097,5591,-9,5594,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-903.390160189795,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,3,4,-9,0,0,8,2,0,405.8,-51993.08329396324,-4973.722065709206,0,0,3306.66741100578 -2486,3097,5592,-9,5594,-9,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-999.2001059624173,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,2,0,405.8,-51993.08329396324,-4973.722065709206,0,0,3306.66741100578 -2486,3097,5593,-9,5594,-9,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1159.210328346061,-9,2,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,405.8,-51993.08329396324,-4973.722065709206,0,0,3306.66741100578 -2486,3097,5594,-9,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,7.26994071213919,7.507837429786609,0,0,0,-1180.965543189194,0,2,2,2019,7,0,24,24,1,0,0,6.592835593023593,6.592835593023593,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,12,8,2,0,405.8,-51993.08329396324,-4973.722065709206,0,0,3306.66741100578 -2487,3098,5595,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.93138846747407,6.161620109195059,0,0,-927.5963394978158,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,6.942605504384816,0,0,1,1,0,0,5.943706043374159,52.08,51.67,-9,-9,10,1,1,0,0,0,12,2,1,108,93372.04846520274,-5083.674608222296,0,0,1179.859634824879 -2488,3099,5596,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.884017709120474,6.619964036481387,0,0,-1096.520129172241,0,1,1,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.746285991910447,5.963169499038448,56.32,40.65,-9,-9,6.666666666666667,2,3,0,0,8,8,2,1,1306,305858.9809177881,174913.9287931958,0,0,920.7950115016876 -2489,3100,5597,5598,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,52,-2,-31.89442486811385,0,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,.3555217886206403,0,0,1,1,0,0,0,42.74,40.71,60.07,30.24,8.333333333333334,1,1,0,0,0,4,2,1,208.5,887505.2066080214,448384.3499912645,181201.9383769099,0,1025.204779372392 -2489,3100,5598,5597,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.035706135245964,7.284724099707385,52,2,-68.45283072785118,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.041099358855291,7.237599346983625,60.07,30.24,42.74,40.71,6.666666666666667,4,5,0,0,0,4,2,1,208.5,887505.2066080214,448384.3499912645,181201.9383769099,0,1025.204779372392 -2490,3101,5599,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,8.120159368655099,8.189184451827687,0,0,-926.7524563406662,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.944208231841436,63.96,30.07,-9,-9,10,3,4,0,0,0,8,4,1,605,1640799.526480353,373901.3431946712,836987.3519221395,0,1988.993175339818 -2491,3102,5600,5601,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.946033590251842,8.781794094862974,0,32,-1,-49.00559733981762,0,-9,-9,2019,7,0,36,36,1,0,0,19.26040722147549,19.26040722147549,0,0,0,0,5.48,0,0,0,0,0,48.17,52.08,54,53,8.333333333333334,1,1,0,0,9,9,4,1,917.5,421688.4291640338,185031.0422852341,277062.3647767666,63879.93857772298,2923.375929694721 -2491,3102,5601,5600,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,36,1,66.40678163406312,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.17548151840951,0,54,53,48.17,52.08,3.333333333333333,1,1,0,0,5,9,4,1,917.5,421688.4291640338,185031.0422852341,277062.3647767666,63879.93857772298,2923.375929694721 -2491,3103,5602,-9,5600,5601,1,1,19,0,0,1,3,0,0,0,3,0,0,0,0,0,-939.6776352330846,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,751,0,0,0,0,0 -2492,3104,5603,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.968134038701585,7.095787281456627,0,0,-1111.519942142688,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,3.889899664654065,7.561109673140328,48.52,43.78,-9,-9,6.666666666666667,1,1,0,1,0,10,3,1,744,248882.9750924706,50373.75844990349,232732.0971926613,0,823.2357591187074 -2493,3105,5604,5605,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.656526454053258,7.540933980087735,0,7,-14,-183.2903484486112,0,-9,-9,2019,11,0,37,45,1,2,0,7.745730203983829,7.745730203983829,0,0,0,0,0,0,0,0,0,0,48,57,52.32,57.31,7,3,4,0,0,1,7,3,0,1011,542172.407162261,153104.2670912616,266376.0871989755,0,3048.242922960065 -2493,3105,5605,5604,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,6.849173925204154,6.864048496743439,0,15,14,64.53446412550558,0,2,2,2019,8,1,8,65,1,1,0,12.88436999832315,12.88436999832315,0,0,0,0,0,0,0,0,7.756911640167133,0,52.32,57.31,48,57,8.333333333333334,1,1,0,0,9,7,3,0,1011,542172.407162261,153104.2670912616,266376.0871989755,0,3048.242922960065 -2494,3106,5606,5608,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.771132464796271,8.443630492785196,0,27,1,-59.57803181536028,0,3,2,2019,6,0,42,42,1,0,0,15.34316652079498,15.34316652079498,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,468,3645186.168271383,3075857.060637958,279067.9289087443,0,4426.089034201394 -2494,3106,5607,-9,5608,5606,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1006.175427683837,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,13,5,1,468,3645186.168271383,3075857.060637958,279067.9289087443,0,4426.089034201394 -2494,3106,5608,5606,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.634194825929399,8.515260256945988,0,27,-1,109.8823677724777,0,3,2,2019,9,0,49,37,1,0,0,11.02212156234049,11.02212156234049,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,13,5,1,468,3645186.168271383,3075857.060637958,279067.9289087443,0,4426.089034201394 -2495,3107,5609,5610,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,3.041750598830259,2.837352992768229,0,8,-1,-28.64252721877595,-9,3,3,2019,15,3,30,0,1,3,0,.0650507781793473,.0650507781793473,0,0,0,0,0,0,0,0,0,0,36.44,44.52,46.67,55.57,3.333333333333333,1,1,0,0,9,10,3,1,752,213308.3008489366,200221.7215009514,200762.0399657952,122028.7676166793,1196.819239305015 -2495,3107,5610,5609,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.018350452174936,8.10166399627154,0,8,1,118.6227681862959,-9,-9,-9,2019,7,0,50,0,1,0,0,6.463751763742582,6.463751763742582,0,0,0,0,0,0,0,0,0,0,46.67,55.57,36.44,44.52,5,1,1,0,0,9,10,3,1,752,213308.3008489366,200221.7215009514,200762.0399657952,122028.7676166793,1196.819239305015 -2496,3108,5611,5614,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,0,0,0,3,-1,41.1321860962078,0,2,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.85557777373844,0,48.18,61.8,49.04,55.86,8.333333333333334,1,1,0,0,2,5,3,0,742.75,354338.0958859215,198878.9706715144,213134.4459944265,120193.7791419904,2361.034368108278 -2496,3108,5612,-9,5611,5614,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.129958393237,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,742.75,354338.0958859215,198878.9706715144,213134.4459944265,120193.7791419904,2361.034368108278 -2496,3108,5613,-9,5611,5614,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.4781063647466,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,742.75,354338.0958859215,198878.9706715144,213134.4459944265,120193.7791419904,2361.034368108278 -2496,3108,5614,5611,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,8.38666662849136,8.325207842902397,0,3,1,120.2890805208298,0,2,1,2019,15,4,55,58,1,4,0,9.920333801018851,9.920333801018851,0,0,0,0,0,1,1,0,3.557583272768884,0,49.04,55.86,48.18,61.8,8.333333333333334,1,1,0,0,9,5,3,0,742.75,354338.0958859215,198878.9706715144,213134.4459944265,120193.7791419904,2361.034368108278 -2497,3109,5615,-9,5618,-9,1,0,32,0,0,0,1,1,-9,0,5,8.760079414624348,8.560156378904257,0,0,0,-949.9155005036748,0,2,2,2019,7,0,45,85,1,0,0,14.06363726429149,14.06363726429149,0,0,0,0,71.5,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,0,0,4,8,5,1,789,265635.8348365903,2099.57450804851,383086.0702780515,70477.00599446261,2390.57918937504 -2497,3110,5616,-9,5618,-9,1,0,37,0,0,0,1,1,-9,0,3,9.482523740066506,9.603127036920744,0,0,0,-1059.245889638832,0,3,3,2019,12,4,60,60,1,4,0,29.2095736221871,29.2095736221871,0,0,0,0,7,1,1,0,0,0,43.38,55.61,-9,-9,8.333333333333334,2,3,0,0,3,8,5,1,1329,41431.16110478195,-76056.42516516044,0,0,28590.45762780474 -2497,3111,5617,-9,5618,-9,1,0,33,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1065.211445818044,0,1,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.46,40.35,-9,-9,1.666666666666667,2,3,0,1,0,8,1,1,1328,86575.42995233851,0,0,0,1023.04505806456 -2497,3112,5618,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.087243274930531,5.835599163161575,0,0,-938.0549866339582,0,-9,-9,2019,19,5,0,0,4,5,0,0,0,1,0,11.35117466676381,0,0,1,1,0,6.259766286203201,0,52.99,32.51,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,512,357784.9601828925,361377.6623508165,172686.2352420878,0,1386.947973986363 -2497,3113,5619,-9,5621,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-925.3880787800131,-9,1,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,8,1,1,156,0,0,0,0,0 -2497,3114,5620,-9,5621,-9,1,0,21,0,0,1,1,0,0,0,5,0,6.108837404495419,5.967904815753799,0,0,-1100.816962331421,-9,1,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.006237906927601,0,48.77,60.16,-9,-9,8.333333333333334,2,3,0,1,1,8,2,1,769,-9364.556069955033,0,0,0,703.1474527224107 -2497,3115,5621,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1015.890763306136,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,927,49849.71041007267,0,0,0,0 -2498,3116,5622,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.77075839185815,7.936004499258796,0,0,0,-1077.448896883589,0,2,3,2019,2,0,16,10,1,0,0,16.15179092587639,16.15179092587639,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,6,3,0,244,172883.0956230339,-17146.33038976161,0,0,976.0534106057708 -2499,3117,5623,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1037.541546620966,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,3.971405269469372,10.44300311061953,14.95007235219171,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,248,154845.4224521646,0,0,0,780.2857024282325 -2500,3118,5624,-9,5626,5625,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.054037195595,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,406.3333333333333,125107.9146692154,6946.186413134496,194362.1738626716,97329.61260255046,4818.202838790677 -2500,3118,5625,5626,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,9.277041717985343,8.836740361849028,0,13,2,88.50143739873546,0,2,1,2019,4,0,42,42,1,0,0,25.88173877607506,25.88173877607506,0,0,0,0,0,1,1,0,4.030647570843236,0,54.2,57.49,51.66,54.88,8.333333333333334,1,1,0,0,9,5,5,1,406.3333333333333,125107.9146692154,6946.186413134496,194362.1738626716,97329.61260255046,4818.202838790677 -2500,3118,5626,5625,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.185697620798424,7.953068975663101,0,13,-2,-99.14668217378075,0,2,2,2019,10,0,26,26,1,0,0,16.00845832200338,16.00845832200338,0,0,0,0,0,1,1,0,0,0,51.66,54.88,54.2,57.49,6.666666666666667,1,1,0,0,11,5,5,1,406.3333333333333,125107.9146692154,6946.186413134496,194362.1738626716,97329.61260255046,4818.202838790677 -2501,3119,5627,5628,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.878008392447465,5.882011283472311,41,-3,-74.49462592778161,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.314932651545355,5.398739185824794,59.07,16.26,54.79,55.86,8.333333333333334,1,1,0,0,0,5,5,1,1073,1897552.001288152,1453075.027850332,403762.1215004575,0,4324.032158485757 -2501,3119,5628,5627,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,9.191627478068888,9.011820858153174,41,3,-27.02586238484265,0,2,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.826516317842774,54.79,55.86,59.07,16.26,8.333333333333334,1,1,0,0,9,5,5,1,1073,1897552.001288152,1453075.027850332,403762.1215004575,0,4324.032158485757 -2502,3120,5629,5631,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,0,0,0,13,-5,-81.96116672090494,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.23,49.99,54.62,53.53,8.333333333333334,2,3,1,0,0,9,4,0,884,415706.7863117753,2032.384189950682,448337.7811329545,180443.1303168006,5573.669631363937 -2502,3120,5630,-9,5629,5631,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.2427175989776,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,0,884,415706.7863117753,2032.384189950682,448337.7811329545,180443.1303168006,5573.669631363937 -2502,3120,5631,5629,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.798587685890771,8.433011242652292,0,13,5,75.87853624895737,0,1,1,2019,7,2,41,37,1,2,0,16.14740961713155,16.14740961713155,0,0,0,0,0,1,1,0,8.444393193808949,0,54.62,53.53,42.23,49.99,8.333333333333334,2,3,0,0,10,9,4,0,884,415706.7863117753,2032.384189950682,448337.7811329545,180443.1303168006,5573.669631363937 -2502,3120,5632,-9,5629,5631,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.000311148836,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,0,884,415706.7863117753,2032.384189950682,448337.7811329545,180443.1303168006,5573.669631363937 -2503,3121,5633,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.305345097682,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.890687138798492,0,60.45,30.52,-9,-9,5,1,1,0,0,0,13,1,0,431,181656.5114958218,0,0,0,222.1509828560763 -2504,3122,5634,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.365088234039419,5.324951410081511,0,0,-830.1922799524289,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.006693878048604,5.335971552766587,60.29,41.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,284,57085.05125757954,-4095.082028664387,0,0,506.7930119624949 -2505,3123,5635,5637,-9,-9,1,0,37,0,3,0,3,3,-9,0,3,0,5.017383190319352,5.075044346827077,4,-1,-111.2834695498825,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.847672553203513,0,37.34,59.07,40.46,37.24,8.333333333333334,1,1,0,1,0,7,2,0,504.2,-4920.303051944978,0,0,0,703.6978486826627 -2505,3123,5636,-9,5635,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.245255684114,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,504.2,-4920.303051944978,0,0,0,703.6978486826627 -2505,3123,5637,5635,-9,-9,1,1,38,0,3,0,2,2,-9,0,2,5.630018432314402,5.50703546084118,0,4,1,95.71151472669688,0,-9,-9,2019,20,7,40,40,1,7,0,.7375052409076336,.7375052409076336,0,0,0,0,0,1,1,0,0,0,40.46,37.24,37.34,59.07,1.666666666666667,1,1,0,1,10,7,2,0,504.2,-4920.303051944978,0,0,0,703.6978486826627 -2505,3123,5638,-9,5635,5637,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.804329294105,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,504.2,-4920.303051944978,0,0,0,703.6978486826627 -2505,3123,5639,-9,5635,5637,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.4220055821594,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,504.2,-4920.303051944978,0,0,0,703.6978486826627 -2506,3124,5640,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1015.56683601085,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,2.821203803900886,9.618398917485569,20.39877077058079,0,1,1,0,3.786535170850999,0,39.58,37.65,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,538,-104561.2202288449,0,0,0,804.3643052618471 -2507,3125,5641,5642,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,6.979860622778389,6.652142999644467,0,6,-1,31.39260514545636,0,2,2,2019,11,0,40,42,1,0,0,2.259774104715571,2.259774104715571,0,0,0,0,0,0,0,0,5.310310092784622,0,52.64,38.41,49.81,59.64,6.666666666666667,1,1,0,0,9,5,5,0,719.5,556838.5012374487,95032.01179340514,224782.3463984135,123318.3057120888,14752.66494018316 -2507,3125,5642,5641,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.834573268274548,10.02788086836217,0,6,1,-57.70343641400925,0,2,2,2019,9,1,42,38,1,1,0,44.26909860913742,44.26909860913742,0,0,0,0,0,0,0,0,5.871672550373293,0,49.81,59.64,52.64,38.41,8.333333333333334,1,1,0,0,9,5,5,0,719.5,556838.5012374487,95032.01179340514,224782.3463984135,123318.3057120888,14752.66494018316 -2508,3126,5643,5646,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.341623242270774,9.093778447507702,0,9,-2,-97.13900411533311,0,2,2,2019,7,0,80,39,1,0,0,21.2753569908484,21.2753569908484,0,0,0,0,0,0,0,0,.4532235207217195,0,54.2,57.49,33.24,65.53,10,1,1,0,0,10,12,5,1,1172,1514868.957490426,1060523.682259375,348796.2154318569,0,6683.476828456356 -2508,3126,5644,-9,5643,5646,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.3909824710527,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1172,1514868.957490426,1060523.682259375,348796.2154318569,0,6683.476828456356 -2508,3126,5645,-9,5643,5646,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.516627917978,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1172,1514868.957490426,1060523.682259375,348796.2154318569,0,6683.476828456356 -2508,3126,5646,5643,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.895175516392433,9.168745349215696,0,9,2,151.0005879362481,0,-9,-9,2019,15,4,37,37,1,4,0,25.47979706007223,25.47979706007223,0,0,0,0,0,0,0,0,0,0,33.24,65.53,54.2,57.49,6.666666666666667,1,1,0,0,10,12,5,1,1172,1514868.957490426,1060523.682259375,348796.2154318569,0,6683.476828456356 -2509,3127,5647,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.179691746616989,8.097061102577328,0,0,-916.3043036888938,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.440511950827012,8.345339443177714,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1048,93753.83887996324,155200.0421785118,106630.6603667091,0,1409.892937933356 -2509,3128,5648,-9,5647,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1132.843631355758,-9,1,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,462,76985.52502567568,0,0,0,0 -2510,3129,5649,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,7.382788657362189,7.318984476967544,0,0,0,-1109.423070727845,0,3,3,2019,14,2,20,27,1,2,0,9.762462698223368,9.762462698223368,0,0,0,0,0,1,1,0,0,0,37.7,31.56,-9,-9,5,1,1,0,0,9,12,3,1,2920,78496.4646942571,173652.2600710591,0,0,1364.43786816199 -2511,3130,5650,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.248485728030548,8.309074307544783,0,0,0,-1117.40268264146,0,2,2,2019,16,4,38,37,1,4,0,11.52013164928164,11.52013164928164,0,0,0,0,0,0,0,0,2.766457471902318,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,11,7,4,0,518,406110.5789248619,53407.49568794806,174776.8052258803,73680.39063599514,1387.07222545715 -2512,3131,5651,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.875737187624326,8.833917234624668,0,0,0,-1066.614845013336,0,1,1,2019,15,4,70,70,1,4,0,11.14063080377784,11.14063080377784,0,0,0,0,0,0,0,0,0,0,37.76,58.68,-9,-9,3.333333333333333,4,2,0,0,12,8,5,1,305.6666666666667,64403.52780034509,164161.0048190026,0,0,3469.190490501558 -2512,3131,5652,-9,5651,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.3716819895227,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,305.6666666666667,64403.52780034509,164161.0048190026,0,0,3469.190490501558 -2512,3131,5653,-9,5651,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.7335272161001,-9,1,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,8,5,1,305.6666666666667,64403.52780034509,164161.0048190026,0,0,3469.190490501558 -2513,3132,5654,5656,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,0,0,0,4,1,0,-9,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,20.41,65.22,41.88,22.93,5,1,1,1,0,5,6,1,0,595,76389.97700502675,0,95133.98884024637,23455.96812214183,2980.802967872092 -2513,3132,5655,-9,5656,5654,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1090.040689979829,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,1,0,595,76389.97700502675,0,95133.98884024637,23455.96812214183,2980.802967872092 -2513,3132,5656,5654,-9,-9,1,0,39,0,2,0,2,2,-9,1,1,0,0,0,4,-1,0,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,22.93,20.41,65.22,1.666666666666667,1,1,0,0,3,6,1,0,595,76389.97700502675,0,95133.98884024637,23455.96812214183,2980.802967872092 -2513,3132,5657,-9,5656,5654,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.2158623565754,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,0,595,76389.97700502675,0,95133.98884024637,23455.96812214183,2980.802967872092 -2514,3133,5658,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.68848262554408,6.727588751076294,0,0,-844.0904773779607,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.335996759116449,6.320609625884861,57.24,46.7,-9,-9,0,1,1,0,0,0,10,2,1,1493,20403.24968362018,65338.98534518442,0,0,554.7622780871815 -2515,3134,5659,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.832784832411532,7.579791672154094,0,0,0,-1067.01050960621,0,3,2,2019,8,0,39,36,1,0,0,7.018943182151316,7.018943182151316,0,0,0,0,0,0,0,0,3.49523642033672,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,1095,687594.6550384492,237899.4462055194,319927.8559027636,0,1002.652414592431 -2515,3135,5660,-9,5659,-9,1,1,38,0,0,0,2,2,-9,0,4,0,6.52740514952167,6.903539807357736,0,0,-1013.064577573089,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.31143715146889,0,57.16,56.15,-9,-9,5,1,1,0,0,0,12,2,1,239,3989.081888656137,0,0,0,698.4688884985641 -2516,3136,5661,5662,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,55,-5,-49.70346523701182,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.26,38.16,64.40000000000001,42,8.333333333333334,1,1,0,0,0,6,2,1,244.5,418364.594614501,48704.9367262953,124520.5448782274,0,2018.927897726948 -2516,3136,5662,5661,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.543172125199147,6.609510112157986,55,5,-69.31879765100371,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.506790348244676,0,0,1,1,0,3.447959822590851,6.534232461262735,64.40000000000001,42,61.26,38.16,8.333333333333334,1,1,0,0,0,6,2,1,244.5,418364.594614501,48704.9367262953,124520.5448782274,0,2018.927897726948 -2517,3137,5663,5664,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.540290721872072,8.488064803829348,0,6,9,91.37286625095464,0,2,2,2019,9,0,43,40,1,0,0,13.42140229103196,13.42140229103196,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,6.666666666666667,1,1,0,0,6,6,5,1,844.5,1470348.871911373,1132544.620365204,235937.4918681578,0,4978.192287825314 -2517,3137,5664,5663,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.907178424090404,8.962991127011609,0,6,0,-148.1993344698608,0,2,2,2019,8,0,53,53,1,0,0,16.38853955075341,16.38853955075341,0,0,0,0,0,0,0,0,1.601322292508572,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,7,6,5,1,844.5,1470348.871911373,1132544.620365204,235937.4918681578,0,4978.192287825314 -2518,3138,5665,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,7.817682719722232,8.274022146390497,7.104562895708168,0,0,-891.6577878368461,0,3,3,2019,11,0,25,42,1,0,0,13.7033217255941,13.7033217255941,0,0,0,0,0,1,1,0,7.450604823079133,7.361407303889353,41.7,59.17,-9,-9,5,1,1,0,0,10,7,4,1,1024,98296.2348482564,110795.5162406452,0,0,2592.170446367806 -2519,3139,5666,5667,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.453017746075171,8.811825846253722,0,23,-4,-164.5439427667906,0,3,3,2019,9,0,34,50,1,0,0,18.2274286326253,18.2274286326253,0,0,0,0,0,0,0,0,3.909264573143961,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,558.5,1097134.854680751,418204.6006589896,422596.7990018769,0,4985.089558938455 -2519,3139,5667,5666,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.215777477181536,9.085308300540792,0,6,4,4.452144976146413,0,-9,-9,2019,5,0,44,47,1,0,0,26.43585827150349,26.43585827150349,0,0,0,0,2,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,2,5,1,558.5,1097134.854680751,418204.6006589896,422596.7990018769,0,4985.089558938455 -2520,3140,5668,-9,5673,5672,1,1,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1100.981450551635,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2520,3140,5669,-9,5673,5672,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-935.6081062378468,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2520,3140,5670,-9,5673,5672,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.6664084601347,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2520,3140,5671,-9,5673,5672,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.433275453184,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2520,3140,5672,5673,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.470176616571138,8.321316643936623,0,9,3,-23.38874941499247,0,2,3,2019,11,0,40,40,1,0,0,13.19710248338106,13.19710248338106,0,0,0,0,0,1,1,0,0,0,41.64,54.12,54.59,56.57,10,1,1,0,0,9,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2520,3140,5673,5672,-9,-9,1,0,34,1,4,0,3,3,-9,0,5,0,0,0,9,-3,-77.50368262708818,0,-9,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.59,56.57,41.64,54.12,10,1,1,0,0,0,7,3,0,514.5,68653.29530304084,23198.60673606547,0,0,3045.148471944598 -2521,3141,5674,5675,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.391558099995477,9.486203997757009,0,5,4,-172.416097907531,0,3,3,2019,10,0,45,45,1,0,0,44.28471442307581,44.28471442307581,0,0,0,0,0,0,0,0,3.078622713638484,0,55.77,42.25,59.15,49.67,6.666666666666667,1,1,0,0,7,12,5,1,697,910337.8065294081,263708.4836269067,472366.6929428059,34583.98689154624,8059.54174004674 -2521,3141,5675,5674,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.705128706535653,8.662272156856528,0,5,-4,12.50056934935788,0,-9,-9,2019,11,0,85,57,1,0,0,9.668232492410795,9.668232492410795,0,0,0,0,0,0,0,0,2.724213663291829,0,59.15,49.67,55.77,42.25,8.333333333333334,1,1,0,0,9,12,5,1,697,910337.8065294081,263708.4836269067,472366.6929428059,34583.98689154624,8059.54174004674 -2522,3142,5676,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.745610700054884,8.590484426938772,0,0,0,-1089.068858400004,0,3,3,2019,8,1,55,55,1,1,0,11.17708048693816,11.17708048693816,0,0,0,0,0,0,0,0,0,0,64.16,16.47,-9,-9,5,1,1,0,1,11,9,5,1,655,850861.8571900713,635676.6592746772,329458.0095064149,6965.697560991122,2858.595719735785 -2523,3143,5677,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.551966840513813,5.535064306024805,0,0,-861.2924011314808,-9,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.581547107033806,5.819606729949659,55.12,26.04,-9,-9,5,1,1,0,0,0,8,2,1,481,703545.5003212487,33604.5253552498,576094.1744030712,0,159.3653402638879 -2524,3144,5678,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1039.752525318781,0,2,2,2019,33,12,0,17,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.15,29.72,-9,-9,3.333333333333333,4,2,1,0,1,6,1,0,1447,-146102.6382710835,0,0,0,1333.607164801748 -2525,3145,5679,-9,5683,-9,1,0,33,1,3,0,2,2,-9,0,3,0,0,0,0,0,-992.4900469048891,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,936.5,20969.93003115426,0,0,0,845.1627157394284 -2525,3145,5680,-9,5679,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.8388139240415,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,1,0,936.5,20969.93003115426,0,0,0,845.1627157394284 -2525,3145,5681,-9,5679,-9,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.3370267568692,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,1,0,936.5,20969.93003115426,0,0,0,845.1627157394284 -2525,3145,5682,-9,5679,-9,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.165863111041,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,1,0,936.5,20969.93003115426,0,0,0,845.1627157394284 -2525,3146,5683,-9,-9,-9,1,0,69,1,3,0,3,3,-9,0,3,0,0,0,0,0,-1072.0779975509,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,24.52006182729164,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,2,0,454,0,0,0,0,1418.24854481083 -2526,3147,5684,5685,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.284191061435809,7.793638764858059,0,4,6,-43.80930365903721,0,3,3,2019,12,1,35,37,1,1,0,9.881289723687173,9.881289723687173,0,0,0,0,0,0,0,0,0,0,52.35,27.48,50.95,43.05,8.333333333333334,1,1,0,0,11,9,5,1,2249.5,0,0,0,0,3297.587777015773 -2526,3147,5685,5684,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.425442963201775,8.262744114303576,0,4,-6,-2.645632856691128,0,-9,-9,2019,14,3,41,42,1,3,0,11.25931336729901,11.25931336729901,0,0,0,0,0,0,0,0,0,0,50.95,43.05,52.35,27.48,6.666666666666667,1,1,0,0,11,9,5,1,2249.5,0,0,0,0,3297.587777015773 -2527,3148,5686,5689,-9,-9,1,0,42,0,2,0,2,2,-9,1,1,0,0,0,5,-2,-106.8081238013327,0,-9,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,24.39,20.22,52.23,55.6,5,1,1,0,0,0,2,3,1,812,1128048.373351054,235438.1220879341,254819.634083127,59836.50029377229,3447.566871829879 -2527,3148,5687,-9,5686,5689,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.390545305584,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,812,1128048.373351054,235438.1220879341,254819.634083127,59836.50029377229,3447.566871829879 -2527,3148,5688,-9,5686,5689,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1022.965400359461,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,3,1,812,1128048.373351054,235438.1220879341,254819.634083127,59836.50029377229,3447.566871829879 -2527,3148,5689,5686,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.09838458337209,8.01197588189193,0,5,2,99.9094002649652,0,-9,-9,2019,13,1,40,60,1,1,0,11.40392981979781,11.40392981979781,0,0,0,0,2,1,1,0,0,0,52.23,55.6,24.39,20.22,8.333333333333334,1,1,0,1,11,2,3,1,812,1128048.373351054,235438.1220879341,254819.634083127,59836.50029377229,3447.566871829879 -2528,3149,5690,5691,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.641810102464549,7.959364095278212,48,4,154.3253408007218,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.429351318002914,7.719958356099099,57.33,37.4,52.75,41.81,1.666666666666667,1,1,0,0,0,7,3,1,676.5,792796.535363869,183840.3879916943,427801.2247409405,0,2301.816164632009 -2528,3149,5691,5690,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,48,-4,-.8346413404009052,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.651280587767824,0,52.75,41.81,57.33,37.4,6.666666666666667,1,1,0,0,0,7,3,1,676.5,792796.535363869,183840.3879916943,427801.2247409405,0,2301.816164632009 -2529,3150,5692,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.147574573794726,7.010358902138655,0,0,-1122.232725962137,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.104307772150256,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,350,632957.6035667164,690961.1088794749,98786.87153551487,0,1963.757244451809 -2529,3151,5693,-9,-9,5692,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1058.767519409641,-9,-9,3,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.6049380922640046,0,50.41,42.98,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,246,44798.81386697144,0,0,0,322.2037615493296 -2530,3152,5694,5695,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.01936541006499,8.201302103251477,0,8,-1,155.2659508151227,0,2,3,2019,9,0,44,43,1,0,0,7.960515360653964,7.960515360653964,0,0,0,0,0,1,1,0,.7397976039175287,0,48.81,59.91,38.06,61.12,8.333333333333334,1,1,0,0,8,8,5,0,628.6666666666666,485545.0542509402,11348.3691366676,1011538.718538417,599634.6210836428,4579.02636350492 -2530,3152,5695,5694,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,9.148835677362019,9.111523945206136,0,8,1,-48.54606621964476,0,1,2,2019,14,3,48,49,1,3,0,20.43042827152422,20.43042827152422,0,0,0,0,0,1,1,0,2.555122443353554,0,38.06,61.12,48.81,59.91,8.333333333333334,1,1,0,0,8,8,5,0,628.6666666666666,485545.0542509402,11348.3691366676,1011538.718538417,599634.6210836428,4579.02636350492 -2530,3152,5696,-9,5694,5695,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.0406632541044,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,0,628.6666666666666,485545.0542509402,11348.3691366676,1011538.718538417,599634.6210836428,4579.02636350492 -2531,3153,5697,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.043745896533833,8.508810507811924,6.649330108507392,0,0,-851.3724985753258,0,-9,-9,2019,9,1,40,38,1,1,0,13.4288003293239,13.4288003293239,0,0,0,0,0,0,0,0,0,7.012495426712526,47.78,45.41,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,1413,107771.8661962066,84362.9985300236,0,0,2272.49750650023 -2531,3154,5698,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.397768556740351,7.725109592543331,6.488251328375545,0,0,-865.2028477738284,0,-9,-9,2019,16,5,28,30,1,5,0,5.456337929843047,5.456337929843047,0,0,0,0,0,0,0,0,7.489298183356143,6.745491700964866,28.18,49.4,-9,-9,3.333333333333333,1,1,0,0,10,8,3,1,244,-253463.1585821738,-136009.2289112693,0,0,2397.796218608821 -2532,3155,5699,5700,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.185863281507773,9.234442039352752,0,3,5,-24.67407869857588,0,-9,-9,2019,7,0,45,40,1,0,0,30.34207420762001,30.34207420762001,0,0,0,0,0,0,0,0,1.480317025494855,0,53.42,52.33,46,58,8.333333333333334,1,1,0,0,11,12,5,1,185.5,70907.92233259535,11773.13369190024,274994.002920371,245413.8774892158,4884.734410113133 -2532,3155,5700,5699,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.485976136435218,8.382111085963377,0,3,-5,62.5539867106825,0,-9,-9,2019,12,0,38,38,1,2,0,11.55621682144526,11.55621682144526,0,0,0,0,0,0,0,0,0,0,46,58,53.42,52.33,7,1,1,0,0,2,12,5,1,185.5,70907.92233259535,11773.13369190024,274994.002920371,245413.8774892158,4884.734410113133 -2533,3156,5701,-9,-9,5703,1,1,54,0,0,0,2,2,-9,0,4,9.168272643596993,9.061486315860691,0,0,0,-1110.486688438633,0,2,2,2019,9,0,40,0,1,0,0,28.5437682605315,28.5437682605315,0,0,0,0,7,1,0,1,1.131980085164794,0,44.11,54.03,-9,-9,6.666666666666667,3,4,0,0,12,8,5,1,325,199973.5153731988,62435.86031870693,0,0,5505.199759971075 -2533,3157,5702,-9,-9,5701,1,1,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1030.993700755647,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,.4982814586089899,0,47.25,38.93,-9,-9,6.666666666666667,3,4,0,0,0,8,1,1,743,101998.6550800003,0,0,0,1127.262180729972 -2533,3158,5703,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.868939188057845,6.807656714717907,0,0,-963.8816285216865,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.816408293044874,44.82,40,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,1164,388468.3617670108,99429.28606250556,159212.2245114169,0,1171.579697156434 -2534,3159,5704,5705,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.031764078525984,4.335013140082287,52,-4,112.8249627582869,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.178108677095726,4.182643442004281,54.61,49.13,57.33,53.46,10,1,1,0,0,0,2,2,1,631,502973.8371442073,218733.784237996,15411.65420848314,0,2272.578709672724 -2534,3159,5705,5704,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.303344905276293,7.430893728521208,52,4,-25.41589024443667,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.29528131432905,7.548293274568428,57.33,53.46,54.61,49.13,8.333333333333334,1,1,0,0,0,2,2,1,631,502973.8371442073,218733.784237996,15411.65420848314,0,2272.578709672724 -2535,3160,5706,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-970.9663362951616,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.111054350131385,0,51.9,21.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,606,228625.937195431,103227.2844350054,0,0,1777.634149676255 -2536,3161,5707,5709,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.143473741577337,9.437054070158867,0,25,1,104.209133068647,0,2,2,2019,10,0,60,60,1,0,0,20.83607804262309,20.83607804262309,0,0,0,0,0,0,0,0,5.32646442418665,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,257.3333333333333,622924.2043198214,370787.634792493,297829.5165449642,93466.0489720647,5111.316150331745 -2536,3161,5708,-9,5709,5707,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-960.0932693360725,-9,2,2,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,.9805064549309903,0,35.83,59.06,-9,-9,10,1,1,0,0,0,5,5,1,257.3333333333333,622924.2043198214,370787.634792493,297829.5165449642,93466.0489720647,5111.316150331745 -2536,3161,5709,5707,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.534356107462949,8.415390521924133,0,25,-1,84.22907546555254,0,2,2,2019,7,1,47,42,1,1,0,16.85227311605022,16.85227311605022,0,0,0,0,0,0,0,0,1.224295912832449,0,57.06,57.76,54.79,55.86,10,1,1,0,0,8,5,5,1,257.3333333333333,622924.2043198214,370787.634792493,297829.5165449642,93466.0489720647,5111.316150331745 -2536,3162,5710,-9,5709,5707,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-988.965376088692,-9,2,2,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,.6532386817686393,0,42.81,54.48,-9,-9,10,1,1,0,0,5,5,1,1,314,123935.9623459873,0,0,0,-944.0230293135642 -2537,3163,5711,5712,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.512309050408266,8.346853022125032,0,9,0,3.060027179995223,0,1,1,2019,8,1,32,30,1,1,0,14.41051573985418,14.41051573985418,0,0,0,0,0,1,1,0,0,0,53.1,52.62,46.31,51.53,8.333333333333334,1,1,0,0,9,13,5,1,678.6666666666666,939664.5291429019,747722.593288524,130844.3923142473,34027.5322733781,3498.064138619271 -2537,3163,5712,5711,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.458843736551527,8.3444882338772,0,9,0,101.1653564974588,0,2,3,2019,12,1,60,60,1,1,0,8.47808638385087,8.47808638385087,0,0,0,0,0,1,1,0,0,0,46.31,51.53,53.1,52.62,6.666666666666667,1,1,0,0,9,13,5,1,678.6666666666666,939664.5291429019,747722.593288524,130844.3923142473,34027.5322733781,3498.064138619271 -2537,3163,5713,-9,5711,5712,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-895.1999315910892,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.18,52.11,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,678.6666666666666,939664.5291429019,747722.593288524,130844.3923142473,34027.5322733781,3498.064138619271 -2537,3164,5714,-9,5711,5712,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1187.445811332449,-9,1,1,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,4482,18970.22245381412,0,0,0,-324.0602703177082 -2538,3165,5715,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,7.211915425409036,7.156965392059838,0,0,-1071.783694515924,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,5.979291113214481,0,0,1,1,0,4.563874971480788,6.984036874130863,31.35,26.5,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,490,348552.4919525139,67407.24533975794,140982.8292199727,0,1267.656401419747 -2539,3166,5716,-9,5717,5718,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.4434130246611,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1357,33285.5955005267,14347.51181403691,0,0,802.4261459513181 -2539,3166,5717,5718,-9,-9,1,0,34,0,3,0,3,3,-9,0,2,0,0,0,18,-12,-7.440529052375218,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,26.48,52,56,6.666666666666667,2,3,0,0,0,4,2,1,1357,33285.5955005267,14347.51181403691,0,0,802.4261459513181 -2539,3166,5718,5717,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,7.575201371856394,7.742908844440165,0,9,12,-7.336004066092272,0,-9,-9,2019,9,0,5,-9,1,1,0,40.28165459762903,40.28165459762903,0,0,0,0,0,0,0,0,0,0,52,56,36.45,26.48,8,2,3,0,0,1,4,2,1,1357,33285.5955005267,14347.51181403691,0,0,802.4261459513181 -2540,3167,5719,-9,5720,5723,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1037.398899100892,-9,2,2,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,39.41,-9,-9,10,3,4,0,0,0,8,3,0,1309.6,468850.8418113245,37480.43703600972,504864.8255450682,150594.6525918117,3305.155092177109 -2540,3167,5720,5723,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.538458591347301,7.464659249718363,0,19,-1,-20.28649612155863,0,3,-9,2019,8,1,28,28,1,1,0,7.861158844423489,7.861158844423489,0,0,0,0,0,1,1,0,0,0,48.43,43.94,60.02,56.42,8.333333333333334,3,4,0,0,6,8,3,0,1309.6,468850.8418113245,37480.43703600972,504864.8255450682,150594.6525918117,3305.155092177109 -2540,3167,5721,-9,5720,5723,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.9380054954634,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1309.6,468850.8418113245,37480.43703600972,504864.8255450682,150594.6525918117,3305.155092177109 -2540,3167,5722,-9,5720,5723,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.650698896664,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1309.6,468850.8418113245,37480.43703600972,504864.8255450682,150594.6525918117,3305.155092177109 -2540,3167,5723,5720,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.60322268715573,8.365652691010789,0,19,1,70.10856165626706,0,-9,-9,2019,2,0,40,59,1,0,0,13.43001323651377,13.43001323651377,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.43,43.94,10,3,4,0,0,7,8,3,0,1309.6,468850.8418113245,37480.43703600972,504864.8255450682,150594.6525918117,3305.155092177109 -2541,3168,5724,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.4415943841714,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,32.81,25.91,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,902,54672.96496277174,0,0,0,841.424834406423 -2542,3169,5725,5726,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.394560174380555,7.462650937790616,0,3,0,99.51055020922277,0,-9,-9,2019,12,0,30,25,1,0,0,6.406988165504666,6.406988165504666,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,383.5,180544.2066762267,45434.34547321186,0,0,3298.502665406438 -2542,3169,5726,5725,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.666321150089875,8.961802295878739,0,8,0,119.5413297508605,0,2,1,2019,12,0,43,38,1,0,0,14.48691232113496,14.48691232113496,0,0,0,0,0,0,0,0,3.128987583074579,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,7,5,1,383.5,180544.2066762267,45434.34547321186,0,0,3298.502665406438 -2543,3170,5727,5728,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.087237521694271,7.202333103179872,9,-5,-77.07634418409202,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,.6606310891671983,7.386304315533027,36.52,33.33,53,46,6.666666666666667,1,1,0,0,0,13,2,1,2205.5,530581.4611858812,71551.64032668405,131294.2625523198,0,2156.229291980408 -2543,3170,5728,5727,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.677502800343095,5.949525337597792,9,5,53.58200541595348,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,6.923877084431696,39.82480797600272,61.09967198513528,0,1,1,0,0,5.912702774828381,53,46,36.52,33.33,7,1,1,0,0,0,13,2,1,2205.5,530581.4611858812,71551.64032668405,131294.2625523198,0,2156.229291980408 -2544,3171,5729,5730,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.731264815767613,8.644316100391602,0,1,2,-34.34077286025074,-9,-9,-9,2019,9,0,50,0,1,1,0,11.12281367647497,11.12281367647497,0,0,0,0,0,1,0,1,0,0,52,55,23.81,39.67,8,1,1,0,0,1,5,4,1,866,421362.1032154799,247503.2592325088,110711.3831020524,43329.38950076824,3004.624053806423 -2544,3171,5730,5729,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,1,-2,-164.5296263739067,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,23.81,39.67,52,55,6.666666666666667,1,1,1,0,9,5,4,1,866,421362.1032154799,247503.2592325088,110711.3831020524,43329.38950076824,3004.624053806423 -2545,3172,5731,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.434758784031736,7.309846413047408,0,0,-1014.915393454187,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.637184273239833,7.261376943025274,57.73,51.86,-9,-9,10,1,1,0,0,9,7,3,0,378,321982.5732131918,232049.2072718453,0,0,1205.038057520248 -2546,3173,5732,5733,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.935613664617054,7.079338950570427,10,9,-47.71109082337004,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.208322327617398,7.392425705067075,57.33,53.46,38.9,42.69,8.333333333333334,1,1,0,0,5,9,3,1,667.5,1660965.884281062,1282038.222429328,444373.9663578066,0,3058.199611279129 -2546,3173,5733,5732,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.413398498912191,8.095144711126594,6.899446961863453,10,0,-22.97477879695133,0,2,3,2019,18,6,40,25,1,6,0,5.27180683817877,5.27180683817877,0,0,0,0,0,1,1,0,6.880349758220568,6.674844586531178,38.9,42.69,57.33,53.46,3.333333333333333,1,1,0,0,11,9,3,1,667.5,1660965.884281062,1282038.222429328,444373.9663578066,0,3058.199611279129 -2547,3174,5734,5736,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.60572516640809,8.848783401680793,0,7,0,-26.65660268103183,0,-9,-9,2019,12,0,30,38,1,0,0,19.36485583457528,19.36485583457528,0,0,0,0,0,1,1,0,0,0,33.33,58.31,37.78,60.97,6.666666666666667,1,1,0,0,8,2,4,1,555,133026.1889231601,1227.027130439582,114035.224759852,74266.39237215898,3440.633987150326 -2547,3174,5735,-9,5734,5736,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.180110098858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,555,133026.1889231601,1227.027130439582,114035.224759852,74266.39237215898,3440.633987150326 -2547,3174,5736,5734,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,8.218600519865046,7.733321950873941,0,7,0,.213801389117877,0,2,2,2019,6,0,38,47,1,0,0,8.804710365434889,8.804710365434889,0,0,0,0,0,1,1,0,0,0,37.78,60.97,33.33,58.31,6.666666666666667,1,1,0,0,8,2,4,1,555,133026.1889231601,1227.027130439582,114035.224759852,74266.39237215898,3440.633987150326 -2548,3175,5737,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.632029459874095,6.446060286804152,0,0,-991.4040155224925,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.322063387347836,38.41,56.49,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,575,810466.7922202075,250784.8156462845,383529.9418389807,0,1517.605081992934 -2549,3176,5738,5739,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.546808702446105,9.448677822720034,0,7,-2,-65.33055550311386,0,-9,-9,2019,9,0,48,48,1,0,0,30.4761909480978,30.4761909480978,0,0,0,0,0,0,0,0,3.595913024886455,0,57.16,56.15,43.28,46.55,8.333333333333334,1,1,0,0,8,12,5,1,646,2200881.820469632,1974109.347924134,324497.2994167552,173799.7254564656,6537.199756355902 -2549,3176,5739,5738,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,8.469577959628605,8.293897924888888,0,7,2,119.5677581535594,0,2,2,2019,16,4,24,0,1,4,0,24.23778884589109,24.23778884589109,0,0,0,0,0,0,0,0,0,0,43.28,46.55,57.16,56.15,3.333333333333333,1,1,0,0,8,12,5,1,646,2200881.820469632,1974109.347924134,324497.2994167552,173799.7254564656,6537.199756355902 -2550,3177,5740,5741,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.08708760231101,7.138625091933563,48,5,42.18527239446777,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.981480317722613,44.47,57.73,50.59,37.46,6.666666666666667,1,1,0,0,5,10,3,1,613.5,998573.5932259628,742427.841165866,379304.5037411554,0,2848.226070150902 -2550,3177,5741,5740,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.490276015074548,7.417110508978631,48,-5,-100.1834113876832,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.154930972872956,7.084468951181751,50.59,37.46,44.47,57.73,5,1,1,0,0,5,10,3,1,613.5,998573.5932259628,742427.841165866,379304.5037411554,0,2848.226070150902 -2551,3178,5742,-9,5744,5743,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.7750969460335,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,669.6666666666666,18846.87438437998,-25030.23025090141,0,0,4364.595607312201 -2551,3178,5743,5744,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,9.175504859160501,9.097429163685765,0,6,-2,7.173669981847459,0,1,1,2019,14,2,55,55,1,2,0,18.42556970445957,18.42556970445957,0,0,0,0,0,1,1,0,3.182803268922613,0,47.31,37.56,25.25,45.44,5,1,1,0,0,9,7,5,1,669.6666666666666,18846.87438437998,-25030.23025090141,0,0,4364.595607312201 -2551,3178,5744,5743,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.119431852018947,7.839340729916584,0,6,2,-123.8762874747513,0,-9,-9,2019,22,6,30,0,1,6,0,9.565309948903847,9.565309948903847,0,0,0,0,0,1,1,0,0,0,25.25,45.44,47.31,37.56,5,1,1,0,0,12,7,5,1,669.6666666666666,18846.87438437998,-25030.23025090141,0,0,4364.595607312201 -2552,3179,5745,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.898585009592535,7.921429579654517,0,0,-975.3216464464696,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.912381747072972,7.619929322262987,59.15,49.67,-9,-9,10,1,1,0,0,4,1,4,1,381,510094.9496452402,337833.9749629811,120448.9036444234,0,2052.65293575539 -2553,3180,5746,-9,5747,-9,1,1,34,0,0,0,2,2,-9,0,2,8.521672615951239,8.792749715571842,0,0,0,-990.5556992658155,0,2,-9,2019,13,2,70,70,1,2,1,11.54432232087121,11.54432232087121,0,0,0,0,0,0,0,0,1.898051587401938,0,43.78,42.43,-9,-9,5,1,1,0,0,8,9,5,1,308,112241.4916166004,150062.3229285203,0,0,1866.570038020851 -2553,3181,5747,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.670587274145555,7.843780746864737,5.778793884326126,0,0,-1085.393279869762,0,-9,-9,2019,27,11,29,30,1,11,0,9.660691734080247,9.660691734080247,0,0,0,0,0,0,0,0,4.635599672235216,5.500124838086107,9.380000000000001,55.6,-9,-9,1.666666666666667,1,1,0,0,8,9,3,1,350,886796.7406942222,536649.2020522013,290106.7271512612,0,469.8573318059732 -2554,3182,5748,5749,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.160791962613091,8.016151146203439,0,6,-2,75.45308955844509,0,2,2,2019,10,0,43,53,1,0,0,7.407845221223749,7.407845221223749,0,0,0,0,0,0,0,0,7.364584339401177,0,52.77,55.33,52.27,58.55,8.333333333333334,1,1,0,0,5,2,4,1,482.5,-8124.952662105832,4652.036371236827,118362.2772402816,83879.82123297134,3688.099122904282 -2554,3182,5749,5748,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.476714084513388,8.10458936962833,0,6,2,-7.098930361889584,0,2,2,2019,9,1,35,32,1,1,0,15.27777967326005,15.27777967326005,0,0,0,0,0,0,0,0,0,0,52.27,58.55,52.77,55.33,8.333333333333334,1,1,0,0,8,2,4,1,482.5,-8124.952662105832,4652.036371236827,118362.2772402816,83879.82123297134,3688.099122904282 -2555,3183,5750,5751,-9,-9,1,1,33,0,0,0,3,3,-9,1,2,0,0,0,6,9,0,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.1,55.18,35.9,28.98,1.666666666666667,1,1,1,0,2,11,1,0,705,-55383.8867546832,29968.54756718135,0,0,2018.466626411445 -2555,3183,5751,5750,-9,-9,1,0,24,0,0,0,1,1,-9,1,4,0,0,0,6,0,0,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,28.98,25.1,55.18,3.333333333333333,1,1,0,0,0,11,1,0,705,-55383.8867546832,29968.54756718135,0,0,2018.466626411445 -2556,3184,5752,5753,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.633639217314393,8.485133063658312,0,3,6,-37.74168298422457,0,2,2,2019,12,0,40,45,1,0,0,17.4289605845711,17.4289605845711,0,0,0,0,0,1,1,0,0,0,41.11,40.82,42.98,55.94,5,1,1,0,0,13,2,4,1,368.6666666666667,80429.1796154147,-13515.84099479101,74171.8944608349,43866.90398970663,4789.318330567 -2556,3184,5753,5752,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.139239215349958,8.364102629129606,0,12,-6,52.91209937850536,0,2,3,2019,9,0,85,40,1,0,0,5.345950096462413,5.345950096462413,0,0,0,0,0,1,1,0,0,0,42.98,55.94,41.11,40.82,10,1,1,0,0,12,2,4,1,368.6666666666667,80429.1796154147,-13515.84099479101,74171.8944608349,43866.90398970663,4789.318330567 -2556,3184,5754,-9,5753,5752,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-918.8534821493892,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.63,51.86,-9,-9,0,1,1,0,0,1,2,4,1,368.6666666666667,80429.1796154147,-13515.84099479101,74171.8944608349,43866.90398970663,4789.318330567 -2557,3185,5755,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.702176319825867,7.832610154848911,0,0,0,-1022.407346454078,0,3,3,2019,11,0,22,22,1,0,0,12.02841999893506,12.02841999893506,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,383,127552.0141750292,129958.1009529649,66940.60642257371,32440.17681959004,919.3768192175022 -2557,3186,5756,-9,5755,-9,1,1,18,0,0,0,2,2,1,0,4,7.957881726728641,7.682698559052635,0,0,0,-950.2201004252408,-9,2,-9,2019,5,0,37,0,1,0,1,8.329755889680104,8.329755889680104,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,950,-49277.96040433367,-18287.95273381319,0,0,1111.727352234255 -2558,3187,5757,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.731936224749187,8.698579882707099,0,0,0,-1177.318695143764,0,-9,-9,2019,9,1,58,60,1,1,0,19.28323168413916,19.28323168413916,0,0,0,0,2,0,0,0,6.754368216919138,0,55.39,40.94,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,1398,265245.9960824132,-30063.97611801569,318161.5699952607,103198.913722693,2950.374045069253 -2559,3188,5758,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.8163125898544,0,2,1,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,44,41,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,257,0,0,0,0,1555.976667578591 -2560,3189,5759,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,7.836179244498578,7.736551775147457,0,0,-954.6472738314674,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.701349667296338,57.06,57.76,-9,-9,10,1,1,0,0,0,13,3,1,232,396665.6776024736,199576.5204091658,218482.3570752234,66998.09921500941,1714.696025104876 -2561,3190,5760,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.4631231403015,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.940063956338678,0,49.72,35.32,-9,-9,10,1,1,0,0,0,1,1,1,493,32072.74045450164,0,0,0,491.3318802892045 -2562,3191,5761,5762,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,6.796914222660731,6.496790684649407,0,46,-1,96.29370387163367,0,-9,-9,2019,6,0,15,15,1,0,0,6.112079477101217,6.112079477101217,0,0,0,0,0,1,1,0,0,0,52.42,51.51,53.57,31.34,10,1,1,0,0,9,2,5,1,1990.5,375746.5845473334,261157.1726055784,114283.1186625103,22680.59080128398,3011.838218454831 -2562,3191,5762,5761,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.822681278243779,8.506326143354922,5.466470387819941,46,1,173.0558341779323,0,-9,-9,2019,9,1,60,50,1,1,0,13.80581156527133,13.80581156527133,0,0,0,0,0,1,1,0,6.591252077233841,6.237278270766784,53.57,31.34,52.42,51.51,8.333333333333334,1,1,0,0,9,2,5,1,1990.5,375746.5845473334,261157.1726055784,114283.1186625103,22680.59080128398,3011.838218454831 -2562,3192,5763,-9,5761,5762,1,1,43,0,0,0,2,2,-9,0,3,7.624344766520474,7.727829722451459,0,0,0,-1049.672542525436,0,2,3,2019,7,0,36,40,1,0,1,6.772130957205577,6.772130957205577,0,0,0,0,0,1,1,0,0,0,53.65,51.02,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,1266,150687.2795737235,163999.7815463263,114704.7911222259,68181.04627423789,1074.312930683051 -2563,3193,5764,5765,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.711000822876533,8.618439795501967,0,4,1,74.71772270330092,0,3,2,2019,12,0,50,45,1,0,0,12.13443486179177,12.13443486179177,0,0,0,0,0,0,0,0,0,0,44.23,58.35,39.56,54.83,6.666666666666667,1,1,0,0,11,9,5,1,986,312975.1113899646,203645.6165110165,233442.6900552816,59500.25433389269,3082.332866666781 -2563,3193,5765,5764,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.988576500212965,8.156163785521056,0,4,-1,107.4701537156801,0,-9,-9,2019,12,2,37,37,1,2,0,10.45927748823684,10.45927748823684,0,0,0,0,0,0,0,0,0,0,39.56,54.83,44.23,58.35,3.333333333333333,1,1,0,0,6,9,5,1,986,312975.1113899646,203645.6165110165,233442.6900552816,59500.25433389269,3082.332866666781 -2563,3194,5766,-9,5765,5764,1,0,18,0,0,0,2,2,-9,0,2,7.80949762100877,7.892755277446308,0,0,0,-1074.05464002765,0,2,2,2019,24,10,47,0,1,10,1,5.859852818996824,5.859852818996824,0,0,0,0,0,0,0,0,0,0,18.32,41.85,-9,-9,1.666666666666667,1,1,0,1,12,9,3,1,606,-74656.86836394534,0,0,0,890.0906678528123 -2564,3195,5767,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.739435004350763,5.644763403286492,0,0,-884.431775894524,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.072579853678024,5.908884915078128,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,2,6,2,1,1917,430696.0427002428,322247.7922105931,0,0,680.7863845208558 -2565,3196,5768,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.836584475839784,9.071653491458203,0,0,0,-1057.343033565155,0,2,3,2019,11,0,46,42,1,0,0,14.44585071091213,14.44585071091213,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,318,727954.6077075404,141132.4354164542,525436.3866146373,107271.8756584828,2170.381882683144 -2566,3197,5769,5770,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.18929980096108,6.783813740665647,7,8,178.681143106669,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.6924458476048739,7.037542103307401,52,48,49.1,23.9,7,1,1,0,0,0,8,3,1,991.5,1704560.194155976,853371.7513590535,933632.3008279774,67041.57404175698,2419.801827711152 -2566,3197,5770,5769,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,7.576621368892427,7.796818811429016,7,-8,37.96876436573766,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.734319181662862,7.884787350814951,49.1,23.9,52,48,6.666666666666667,1,1,0,0,0,8,3,1,991.5,1704560.194155976,853371.7513590535,933632.3008279774,67041.57404175698,2419.801827711152 -2567,3198,5771,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.764528525772546,6.777270319912619,0,0,-1083.313308217477,0,2,2,2019,31,10,0,0,4,10,0,0,0,1,0,129.5538968887512,0,0,1,1,0,0,6.815194146666081,36.57,22.97,-9,-9,1.666666666666667,1,1,0,1,0,2,2,1,517,279957.6604514949,0,314343.0354197398,0,583.3669344125966 -2567,3199,5772,-9,5771,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1117.574773936744,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,33.33,45.08,-9,-9,3.333333333333333,1,1,0,1,9,2,1,1,850,45271.01231770559,-96403.94552357915,0,0,1137.805834952253 -2568,3200,5773,-9,5775,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.922042354917,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,795.75,7922.477120682175,-55973.06307227815,0,0,2544.896766206984 -2568,3200,5774,-9,5775,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.672791165525,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,795.75,7922.477120682175,-55973.06307227815,0,0,2544.896766206984 -2568,3200,5775,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,1,6.719497302221608,6.676236176818924,0,0,0,-1052.591008167213,-9,3,2,2019,20,8,18,0,1,8,0,4.887165904446062,4.887165904446062,0,0,0,0,0,1,1,0,0,0,41.14,30.1,-9,-9,5,1,1,0,0,3,2,2,0,795.75,7922.477120682175,-55973.06307227815,0,0,2544.896766206984 -2568,3200,5776,-9,5775,-9,1,1,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-992.8222071619633,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,795.75,7922.477120682175,-55973.06307227815,0,0,2544.896766206984 -2569,3201,5777,5778,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.527998221534367,7.505501684005404,0,1,-1,125.305291973128,-9,3,2,2019,16,6,36,0,1,6,0,5.462415512695038,5.462415512695038,0,0,0,0,0,1,1,0,0,0,43.24,47.55,52.44,51.54,5,3,4,0,1,5,6,2,0,694,-57509.07782470225,0,175582.7267718509,81708.48008644604,1855.551570941372 -2569,3201,5778,5777,-9,-9,1,0,31,0,0,0,2,2,-9,0,5,0,0,0,1,1,-72.91132128421141,-9,-9,-9,2019,17,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,52.44,51.54,43.24,47.55,3.333333333333333,3,4,0,0,0,6,2,0,694,-57509.07782470225,0,175582.7267718509,81708.48008644604,1855.551570941372 -2570,3202,5779,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.333017150016323,8.358388650707823,0,0,0,-1026.664586972299,0,-9,-9,2019,6,0,38,42,1,0,0,15.25541841423987,15.25541841423987,0,0,0,0,7,0,0,0,0,0,61.99,34.03,-9,-9,8.333333333333334,1,1,0,0,12,12,5,0,3810,84315.51827892581,109516.2488524092,0,0,1426.497249167026 -2570,3203,5780,-9,5779,-9,1,0,26,0,0,0,2,2,-9,0,3,6.504218292978664,6.373750224430086,0,0,0,-932.0129899098004,0,2,-9,2019,21,9,40,45,1,9,1,2.272122233831453,2.272122233831453,0,0,0,0,0,0,0,0,0,0,42.28,54.75,-9,-9,5,1,1,0,0,6,12,2,0,1374,45809.98407346477,0,0,0,372.6308024830233 -2571,3204,5781,5782,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,3,-116.6688507620549,0,3,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,50.02,43.02,6.666666666666667,1,1,0,0,7,12,2,1,400,346789.2899627507,-29778.0366328463,212825.2478954649,0,1990.137997665538 -2571,3204,5782,5781,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.688742428891977,5.687988826700406,9,-3,88.18104250753075,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.886889417577434,5.738282317886377,50.02,43.02,52,46,8.333333333333334,1,1,0,0,0,12,2,1,400,346789.2899627507,-29778.0366328463,212825.2478954649,0,1990.137997665538 -2572,3205,5783,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,7.961807414311187,7.560370472405187,0,0,-867.2629914144902,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.155491899784789,7.545756718602876,50.41,53.71,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,554,353444.0413666688,36541.67759564839,203121.8855739289,0,1640.360816430543 -2573,3206,5784,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,0,0,-961.6359511245473,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.05918506848166,0,53.68,45.47,-9,-9,6.666666666666667,1,1,1,1,6,8,1,0,1110,317950.6136202488,0,0,0,796.9902031234396 -2574,3207,5785,5786,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.624898585071019,8.506474363135885,0,10,7,-58.69265816973716,0,3,3,2019,10,1,60,60,1,1,0,7.653028334340002,7.653028334340002,0,0,0,.6167236009773962,0,0,0,0,0,0,59.6,46.99,42.6,40.24,6.666666666666667,3,4,0,0,9,7,5,0,718,646724.0037700993,63556.69098215747,437591.717780203,0,3315.051697100857 -2574,3207,5786,5785,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.071432530129238,7.857641052139596,0,37,-7,10.22105471761553,0,3,3,2019,10,0,30,42,1,0,0,9.469552334743454,9.469552334743454,0,0,0,0,0,0,0,0,0,0,42.6,40.24,59.6,46.99,6.666666666666667,3,4,0,1,12,7,5,0,718,646724.0037700993,63556.69098215747,437591.717780203,0,3315.051697100857 -2574,3208,5787,-9,5786,5785,1,0,36,0,0,0,2,2,-9,0,4,7.931102888171375,8.036532334955194,0,0,0,-904.3949002418834,0,3,2,2019,11,0,59,58,1,2,1,4.988327693012189,4.988327693012189,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,12,7,4,0,742,0,0,0,0,1217.372926448125 -2575,3209,5788,5789,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.928653056065537,8.036733858608741,0,35,4,-31.09272063127516,0,3,-9,2019,6,0,30,40,1,0,0,8.178693944426014,8.178693944426014,0,0,0,0,0,1,1,0,3.289436520870222,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,10,3,1,543,403717.375930455,138349.6766294047,176765.1678537364,0,2037.455508045231 -2575,3209,5789,5788,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,35,-4,28.61145940226962,0,3,3,2019,7,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,7.162501532113756,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,543,403717.375930455,138349.6766294047,176765.1678537364,0,2037.455508045231 -2576,3210,5790,5791,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.637216304094432,8.604271295407216,0,9,12,1.115353511896283,0,2,2,2019,8,0,50,50,1,0,0,13.38021896449057,13.38021896449057,0,0,0,0,0,0,0,0,3.756734313959604,0,46.08,57.2,49.36,58.53,5,1,1,0,0,8,7,4,1,803,312905.8962009444,226184.0307557393,0,0,1635.042991466065 -2576,3210,5791,5790,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,0,0,0,10,-12,32.5610156563354,0,2,3,2019,9,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,2.044418732520998,0,49.36,58.53,46.08,57.2,8.333333333333334,1,1,0,0,8,7,4,1,803,312905.8962009444,226184.0307557393,0,0,1635.042991466065 -2577,3211,5792,5793,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.379679496288707,7.296516956687292,44,-5,135.3013085542735,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.78633185714274,7.28293999341871,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,0,2,4,1,1515,1713387.469549768,968614.6891769569,426543.5134096226,0,3795.467189599115 -2577,3211,5793,5792,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.073527273778389,8.156788215927323,44,5,5.375794166641805,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.136566855992053,8.172344102507253,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,4,2,4,1,1515,1713387.469549768,968614.6891769569,426543.5134096226,0,3795.467189599115 -2578,3212,5794,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.118915990365129,4.81060323219432,0,0,-903.6558670795739,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.454690800014286,4.538059480684618,54,46,-9,-9,7,1,1,0,0,0,8,2,1,250,326352.4111642041,38461.96742409627,385337.2097698118,0,1363.780526520319 -2579,3213,5795,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1159.336706750381,0,2,2,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,1,0,8,12,1,1,1723,95883.65675383774,-63983.83612988661,0,0,0 -2580,3214,5796,5797,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,8,18,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.38,41.59,41.92,41.2,1.666666666666667,2,3,0,0,0,9,2,1,497.5,1006996.614395195,0,823679.2518381512,5416.103779077244,336.5118630317935 -2580,3214,5797,5796,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,8,-18,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.8335956393082311,0,41.92,41.2,65.38,41.59,8.333333333333334,2,3,0,0,0,9,2,1,497.5,1006996.614395195,0,823679.2518381512,5416.103779077244,336.5118630317935 -2580,3215,5798,-9,5797,5796,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-929.9452402589286,0,3,3,2019,17,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,1.595749429281276,0,26.02,67.39,-9,-9,3.333333333333333,2,3,0,0,6,9,1,1,2049,-63809.33042628651,0,0,0,-235.3526972538667 -2580,3216,5799,-9,5797,5796,1,0,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1117.759578021403,1,3,3,2019,14,2,0,38,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,38.72,64.82000000000001,-9,-9,8.333333333333334,2,3,0,0,2,9,1,1,212,-14328.90200311006,0,0,0,0 -2580,3217,5800,-9,5797,5796,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.896700609223,-9,3,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.28,60.79,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,283,-65907.65398168369,0,0,0,332.8079337148481 -2581,3218,5801,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.793386093148943,7.74337932223664,0,0,0,-1064.113011864784,-9,1,1,2019,3,0,37,0,1,0,1,7.554609065348967,7.554609065348967,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,219,-21069.20426284888,92397.46742254221,0,0,1357.27118099831 -2582,3219,5802,5803,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.955154439430326,4.63484591257293,56,-5,-61.04046757873566,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,4.29011849358036,4.850086896480296,45.73,57.57,54,46,5,1,1,0,0,0,8,2,1,627,515535.5989036208,26388.28356869135,228523.2112023834,0,1669.796546860965 -2582,3219,5803,5802,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.513219036657391,6.561213468312475,7,5,12.61598431355304,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.116900450818621,54,46,45.73,57.57,8,1,1,0,0,0,8,2,1,627,515535.5989036208,26388.28356869135,228523.2112023834,0,1669.796546860965 -2583,3220,5804,-9,5806,5805,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1037.70438611594,-9,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.66,61.83,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1470.666666666667,-1743.336970184653,28570.95964305073,141031.5017767853,3531.522014856651,2890.270322296938 -2583,3220,5805,5806,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.941361745464041,7.583504512377361,0,4,-1,-204.4495996934702,0,-9,-9,2019,6,0,39,40,1,0,0,8.243527888839758,8.243527888839758,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,12,4,1,1470.666666666667,-1743.336970184653,28570.95964305073,141031.5017767853,3531.522014856651,2890.270322296938 -2583,3220,5806,5805,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.112923975923465,8.265325819076445,0,17,1,86.11295010563362,0,-9,-9,2019,6,0,40,40,1,0,0,12.35644745812902,12.35644745812902,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,12,4,1,1470.666666666667,-1743.336970184653,28570.95964305073,141031.5017767853,3531.522014856651,2890.270322296938 -2583,3221,5807,-9,5806,5805,1,1,23,0,0,0,1,1,-9,0,3,7.91065811073567,8.208398765947276,0,0,0,-1043.893747958464,-9,2,2,2019,6,0,40,0,1,0,1,8.52862093189508,8.52862093189508,0,0,0,0,0,1,1,0,0,0,50.07,47.32,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,617,6950.638983815043,-32408.02059785791,0,0,1117.135551204163 -2584,3222,5808,5809,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.902744662874303,7.801720126150647,0,8,3,-49.70987293610857,0,2,2,2019,9,0,38,40,1,0,0,9.189018645999182,9.189018645999182,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,414,627490.5324057681,639033.9685199894,145800.9808058413,72881.71243454624,4167.175849645454 -2584,3222,5809,5808,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.712838231515127,8.469681006823809,0,8,-3,22.33255697560102,0,-9,-9,2019,6,0,36,38,1,0,0,18.35747894198436,18.35747894198436,0,0,0,0,0,0,0,0,7.355744335263102,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,414,627490.5324057681,639033.9685199894,145800.9808058413,72881.71243454624,4167.175849645454 -2585,3223,5810,-9,5811,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.6897167536404,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,.1172759325978845,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,654,28486.07184036319,97089.53281368921,94309.34425352332,33507.03541649207,2897.549448471422 -2585,3223,5811,-9,-9,-9,1,0,44,0,2,0,1,1,-9,1,2,8.217068710502552,8.762101204336656,6.997840447820622,0,0,-1028.64775887461,0,-9,-9,2019,8,0,37,41,1,0,0,16.14097336709851,16.14097336709851,0,0,0,0,0,1,1,0,4.70678183832324,6.861040924723443,45.06,41.77,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,654,28486.07184036319,97089.53281368921,94309.34425352332,33507.03541649207,2897.549448471422 -2585,3223,5812,-9,5811,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.57163613196,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,654,28486.07184036319,97089.53281368921,94309.34425352332,33507.03541649207,2897.549448471422 -2586,3224,5813,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1076.538636986629,0,2,2,2019,16,4,0,6,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.1,23.62,-9,-9,1.666666666666667,1,1,0,0,8,6,1,0,1302,-135576.7969897359,0,0,0,1546.85595409357 -2587,3225,5814,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.150619333840693,8.094336749313822,0,0,0,-1032.102274958546,0,3,3,2019,8,0,37,37,1,0,0,10.8567114125164,10.8567114125164,0,0,0,0,0,1,1,0,0,0,51.1,49.38,-9,-9,8.333333333333334,1,1,0,0,7,1,4,1,439,457926.4779723997,327850.1264117644,138746.1357781726,31983.36034884703,1227.953991784285 -2587,3226,5815,-9,5814,-9,1,0,21,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1024.792214663592,0,1,-9,2019,33,11,0,44,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,9.93,72.73999999999999,-9,-9,1.666666666666667,4,2,1,1,5,1,1,1,888,-225685.4252047716,0,0,0,39.71753012471322 -2588,3227,5816,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1063.342433691703,0,-9,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,.5118804762262739,0,19.83,40.06,-9,-9,0,1,1,0,0,0,12,1,0,328,0,0,0,0,831.0388503252756 -2589,3228,5817,-9,5820,5819,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.3908573140171,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.264095365507945,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,973.5,2049.627502127536,22374.47435812821,131642.0055612965,123930.4713179428,2289.821112957305 -2589,3228,5818,-9,5820,5819,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.05360487154,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,973.5,2049.627502127536,22374.47435812821,131642.0055612965,123930.4713179428,2289.821112957305 -2589,3228,5819,5820,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,7.883276546205509,8.05644104000257,0,6,5,136.2976167863574,0,2,1,2019,10,0,43,45,1,1,0,8.148005208755515,8.148005208755515,0,0,0,0,0,1,1,0,0,0,51,56,48.06,50.73,7,1,1,0,0,1,10,3,0,973.5,2049.627502127536,22374.47435812821,131642.0055612965,123930.4713179428,2289.821112957305 -2589,3228,5820,5819,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,5.550749276149051,5.538243870599374,0,6,-5,-84.33282997182562,0,2,2,2019,13,2,12,0,1,2,0,2.552759551920144,2.552759551920144,0,0,0,0,0,1,1,0,0,0,48.06,50.73,51,56,8.333333333333334,1,1,0,1,1,10,3,0,973.5,2049.627502127536,22374.47435812821,131642.0055612965,123930.4713179428,2289.821112957305 -2590,3229,5821,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,6.994086439565314,7.179025829947898,0,0,-1044.835376248185,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.46830857088547,60.02,56.42,-9,-9,10,1,1,0,0,0,7,3,1,297,542324.7824686883,109947.6437241516,438313.7064574176,0,1389.251181007965 -2591,3230,5822,5823,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.228431436822774,8.297806764676045,0,8,0,83.38430951211851,0,3,2,2019,11,0,40,40,1,0,0,12.84511985358521,12.84511985358521,0,0,0,0,0,1,1,0,0,0,51.17,49.39,30.71,49.36,6.666666666666667,1,1,0,1,7,5,4,0,986.5,566083.6870656929,402027.2032347583,219982.2837301653,46235.98385573964,2241.414357480915 -2591,3230,5823,5822,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.784654386848909,7.418535658534853,0,8,9,-53.01514694640382,0,2,2,2019,16,6,27,32,1,6,0,9.274421989008843,9.274421989008843,0,0,0,0,0,1,1,0,0,0,30.71,49.36,51.17,49.39,8.333333333333334,1,1,0,0,6,5,4,0,986.5,566083.6870656929,402027.2032347583,219982.2837301653,46235.98385573964,2241.414357480915 -2592,3231,5824,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.083003141273206,6.808430189611074,0,0,0,-1037.125608987902,0,-9,-9,2019,15,7,28,18,1,7,0,4.232711037134621,4.232711037134621,0,0,0,0,0,1,0,1,0,0,41.32,47.21,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,777,-48526.2104877557,0,0,0,816.7031511718775 -2592,3231,5825,-9,5824,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.187905848961,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,777,-48526.2104877557,0,0,0,816.7031511718775 -2593,3232,5826,-9,-9,-9,1,1,19,0,0,1,2,0,0,1,3,0,0,0,0,0,-944.7714735078187,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,869,0,0,0,0,440.2159527914507 -2594,3233,5827,-9,5828,5829,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1003.237901217675,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,677,1243931.048657822,866108.4412597534,178877.6413795352,24524.63898563677,4091.150127762218 -2594,3233,5828,5829,-9,-9,1,0,47,0,1,0,3,3,-9,0,5,8.444538151520089,8.658002081115303,0,3,-2,-75.35431903664788,0,-9,-9,2019,7,0,30,30,1,0,0,19.88212262437766,19.88212262437766,0,0,0,0,0,1,1,0,0,0,57.06,57.76,64.84999999999999,25.93,8.333333333333334,1,1,0,0,10,2,5,1,677,1243931.048657822,866108.4412597534,178877.6413795352,24524.63898563677,4091.150127762218 -2594,3233,5829,5828,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.594883985908295,8.769380971249348,0,3,2,88.86947287892222,0,-9,-9,2019,10,1,50,55,1,1,0,18.52452181468023,18.52452181468023,0,0,0,0,0,1,1,0,2.184603239543403,0,64.84999999999999,25.93,57.06,57.76,6.666666666666667,1,1,0,0,10,2,5,1,677,1243931.048657822,866108.4412597534,178877.6413795352,24524.63898563677,4091.150127762218 -2595,3234,5830,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.027262901640466,7.723150284693231,0,0,0,-1048.081074177148,-9,2,2,2019,7,0,9,0,1,0,0,45.8679034191465,45.8679034191465,0,0,0,0,0,1,1,0,2.550637854163732,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,6,2,4,0,1828,250739.968662713,77996.52165099059,82489.77471280302,56032.27910326904,939.426014550427 -2596,3235,5831,5834,-9,-9,1,0,43,0,4,0,2,2,-9,1,4,6.693194704833764,6.733490363064643,0,20,1,-141.8038973545607,0,2,2,2019,10,0,16,16,1,1,0,6.067613961843167,6.067613961843167,0,0,0,0,71.5,1,1,0,0,0,50,55,51,56,8,1,1,0,0,6,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2596,3235,5832,-9,5831,5834,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1072.846849218114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2596,3235,5833,-9,5831,5834,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.948494929847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2596,3235,5834,5831,-9,-9,1,1,42,0,4,0,2,2,-9,0,4,8.573666921109805,8.766396234806226,0,20,-1,-118.2663627444141,0,3,3,2019,9,0,40,55,1,1,0,13.60858972281746,13.60858972281746,0,0,0,0,0,1,1,0,0,0,51,56,50,55,8,1,1,0,0,1,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2596,3235,5835,-9,5831,5834,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1117.666357041913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2596,3235,5836,-9,5831,5834,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-988.3573974084164,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1605.833333333333,1664305.017653228,288297.4808040388,260834.2797154318,0,4802.322695614227 -2597,3236,5837,-9,5842,5839,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-948.3220939683064,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2597,3236,5838,-9,5842,5839,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.701739007759,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2597,3236,5839,5842,-9,-9,1,1,39,1,4,0,2,2,-9,0,4,7.148830882823273,7.485657931691499,0,9,6,-18.20861041860532,-9,3,2,2019,10,0,10,0,1,1,0,18.75658436371311,18.75658436371311,0,0,0,0,0,1,1,0,0,0,51,56,48,57,7,2,3,0,0,11,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2597,3236,5840,-9,5842,5839,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.537003073561,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2597,3236,5841,-9,5842,5839,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.549667058398,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2597,3236,5842,5839,-9,-9,1,0,33,1,4,0,2,2,-9,0,4,0,0,0,1,-6,56.6740643847065,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,8,2,0,889.8333333333334,8579.971637152681,0,0,0,2306.894594111112 -2598,3237,5843,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.466807579388796,8.871426616335,6.768090840512245,0,0,-970.5177295749709,0,2,2,2019,12,1,50,40,1,1,0,12.80743267764858,12.80743267764858,0,0,0,0,0,1,1,0,6.779316876808894,0,42.61,49.31,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,878.5,357810.8745948711,-13969.32785205861,369397.270485001,127682.2435022915,2838.173114390752 -2598,3237,5844,-9,5843,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.4510732635313,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,878.5,357810.8745948711,-13969.32785205861,369397.270485001,127682.2435022915,2838.173114390752 -2599,3238,5845,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,3,6.205092452117624,6.060040349251555,0,0,0,-886.7351442185731,0,-9,-9,2019,10,0,20,0,1,0,0,3.714365966581254,3.714365966581254,0,0,0,0,0,1,0,1,0,0,32.02,50.04,-9,-9,6.666666666666667,1,1,0,0,3,10,2,0,3271,129927.6990226875,69369.1680013227,0,0,714.1237497099517 -2600,3239,5846,5848,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.153522643667936,8.252850576304827,0,26,-3,-20.85263746645953,0,3,3,2019,11,0,34,33,1,0,0,11.28249491738391,11.28249491738391,0,0,0,0,0,1,1,0,0,0,42.29,55.19,50.18,52.62,1.666666666666667,1,1,0,0,8,4,4,1,486.5,447500.8915972796,163514.5820281295,181148.0032712644,0,2110.730011494631 -2600,3239,5847,-9,5846,5848,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.496538361454,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,486.5,447500.8915972796,163514.5820281295,181148.0032712644,0,2110.730011494631 -2600,3239,5848,5846,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.039801229598519,7.888514745670189,0,5,3,-39.64641994340926,0,3,3,2019,10,0,33,33,1,0,0,10.43913857829597,10.43913857829597,0,0,0,0,0,1,1,0,0,0,50.18,52.62,42.29,55.19,6.666666666666667,1,1,0,0,6,4,4,1,486.5,447500.8915972796,163514.5820281295,181148.0032712644,0,2110.730011494631 -2600,3239,5849,-9,5846,5848,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-956.1795123814746,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.413367193523496,0,61.01,50.48,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,486.5,447500.8915972796,163514.5820281295,181148.0032712644,0,2110.730011494631 -2601,3240,5850,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,3.991640448903472,4.03761594396433,0,0,-945.5307697275368,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.258100774294921,0,0,1,1,0,1.115905901246317,3.768088399517213,56.7,42.76,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,2279,6974.399928813276,-13964.32797125066,-30218.11722446166,0,1541.644483538632 -2602,3241,5851,-9,5852,5853,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.2814756360463,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,300.6666666666667,1123035.205562498,833755.0429454306,351218.7952810321,74379.89211057669,2916.896208228671 -2602,3241,5852,5853,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,6.709272678974857,6.675221416031011,0,17,0,5.871816849331719,0,2,2,2019,22,10,15,16,1,10,0,7.253622643982809,7.253622643982809,0,0,0,0,0,1,1,0,.7940782111518083,0,33.03,50.85,48.11,56.11,3.333333333333333,1,1,0,0,13,12,5,1,300.6666666666667,1123035.205562498,833755.0429454306,351218.7952810321,74379.89211057669,2916.896208228671 -2602,3241,5853,5852,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.966909814894064,8.985153602203232,0,18,0,5.274648734804916,0,2,2,2019,6,0,43,52,1,0,0,22.5803436255532,22.5803436255532,0,0,0,0,0,1,1,0,4.491586361392233,0,48.11,56.11,33.03,50.85,8.333333333333334,1,1,0,0,13,12,5,1,300.6666666666667,1123035.205562498,833755.0429454306,351218.7952810321,74379.89211057669,2916.896208228671 -2603,3242,5854,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,5.173942279134397,5.493853031238364,0,0,-951.4818039216902,0,3,3,2019,22,9,0,10,3,9,0,0,0,0,0,0,0,120,1,1,0,5.602277311191176,0,42.52,32.35,-9,-9,1.666666666666667,1,1,0,0,2,8,2,0,782,30159.44861413412,0,0,0,2481.632724954939 -2604,3243,5855,5856,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.63616899056054,7.338700146586345,43,5,40.51156562780777,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.527348067268819,7.957194121701738,48.53,58.91,40.16,59.89,3.333333333333333,1,1,0,0,8,10,3,1,675,1211449.839697133,776088.0058944956,322049.0384835612,0,1804.861383613684 -2604,3243,5856,5855,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.348741508639415,7.27718092499847,43,-5,-45.399750403277,0,2,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,74.5,1,1,0,5.339347943124535,7.184702411044256,40.16,59.89,48.53,58.91,0,1,1,0,0,7,10,3,1,675,1211449.839697133,776088.0058944956,322049.0384835612,0,1804.861383613684 -2605,3244,5857,5859,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,7,2,-14.04850722970884,1,3,3,2019,12,1,0,16,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,58.27,51.02,49.39,5,1,1,0,0,11,11,3,0,524.5,142073.4605714885,16160.04454682121,263915.3573900372,177435.2337941974,1675.272300542225 -2605,3244,5858,-9,5857,5859,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.381202965488,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,524.5,142073.4605714885,16160.04454682121,263915.3573900372,177435.2337941974,1675.272300542225 -2605,3244,5859,5857,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.510378565180282,8.478438674638317,0,7,-2,-40.61351789925831,0,-9,-9,2019,6,0,42,45,1,0,0,13.79104100930521,13.79104100930521,0,0,0,0,0,1,1,0,0,0,51.02,49.39,46.8,58.27,5,1,1,0,0,10,11,3,0,524.5,142073.4605714885,16160.04454682121,263915.3573900372,177435.2337941974,1675.272300542225 -2605,3244,5860,-9,5857,5859,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.9729969096587,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,524.5,142073.4605714885,16160.04454682121,263915.3573900372,177435.2337941974,1675.272300542225 -2606,3245,5861,5862,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,7.862693630855588,8.318742828594761,6.593270296896528,15,2,-60.34225020038887,0,2,2,2019,12,0,43,43,1,0,0,8.018395085884773,8.018395085884773,0,0,0,0,0,0,0,0,3.225658073704825,6.178253378824167,38.62,40.08,37.69,41.95,1.666666666666667,1,1,0,0,10,12,4,0,514.5,51054.29479995774,0,170819.5745199198,74426.15186687167,3516.643286720906 -2606,3245,5862,5861,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.405864768877459,8.323313139863354,0,15,-2,-58.90680078480934,0,2,2,2019,15,3,25,30,1,3,0,21.43233216354668,21.43233216354668,0,0,0,0,0,0,0,0,2.789544431432425,0,37.69,41.95,38.62,40.08,6.666666666666667,1,1,0,0,10,12,4,0,514.5,51054.29479995774,0,170819.5745199198,74426.15186687167,3516.643286720906 -2606,3245,5863,-9,5862,5861,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-977.7996787334057,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,0,514.5,51054.29479995774,0,170819.5745199198,74426.15186687167,3516.643286720906 -2606,3245,5864,-9,5862,5861,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.5182660187364,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,514.5,51054.29479995774,0,170819.5745199198,74426.15186687167,3516.643286720906 -2607,3246,5865,5866,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.858067815015331,7.88767571405533,0,45,-2,-71.39407687945179,0,3,3,2019,7,0,35,35,1,0,0,8.920657025620269,8.920657025620269,0,0,0,0,0,0,0,0,2.915810525562293,0,60.3,46.58,51,48,6.666666666666667,1,1,0,0,11,10,5,1,356.5,894970.3439777223,530562.9337233426,355410.1036865671,0,3459.868930630743 -2607,3246,5866,5865,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.597966198572639,8.74590795634936,0,8,2,70.18237751363853,-9,-9,-9,2019,10,0,40,0,1,1,0,14.08287374192417,14.08287374192417,0,0,0,2.586107578802174,0,0,0,0,0,0,51,48,60.3,46.58,7,1,1,0,0,1,10,5,1,356.5,894970.3439777223,530562.9337233426,355410.1036865671,0,3459.868930630743 -2608,3247,5867,5868,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.967213720298554,8.787211259280225,0,2,-5,-135.3564418915583,0,-9,-9,2019,10,0,64,-9,1,1,0,10.24152805503134,10.24152805503134,0,0,0,0,0,0,0,0,0,0,48,59,42.05,50.93,7,4,1,0,0,1,4,5,1,934,54014.39537659883,26831.31795230829,118724.6928651708,109704.5652349364,4234.023932808618 -2608,3247,5868,5867,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.160468966933514,8.199604187542915,0,2,5,-96.3563595313781,0,-9,2,2019,14,2,38,38,1,2,0,9.267006424204885,9.267006424204885,0,0,0,0,0,0,0,0,0,0,42.05,50.93,48,59,6.666666666666667,1,1,0,0,11,4,5,1,934,54014.39537659883,26831.31795230829,118724.6928651708,109704.5652349364,4234.023932808618 -2609,3248,5869,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.701574981162299,9.629921884916882,0,0,0,-949.7250177889332,0,2,2,2019,9,0,37,40,1,0,0,62.19456955632242,62.19456955632242,0,0,0,0,0,0,0,0,7.096010943753654,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,6,2,5,0,578,-76404.12843090021,0,0,0,5311.249331582104 -2610,3249,5870,5871,-9,-9,1,1,44,1,2,0,1,1,-9,0,2,8.629453923339632,8.956695574747799,0,5,5,20.81992380187764,0,-9,-9,2019,24,12,55,50,1,12,0,10.63089292176781,10.63089292176781,0,0,0,0,0,1,1,0,0,0,25.54,57.96,52,54.51,0,1,1,0,1,11,4,5,1,874.25,423710.3349754114,372995.8981260841,334575.0450832918,243404.5122593083,4954.596000541686 -2610,3249,5871,5870,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,8.778653831717653,9.066968963261756,0,5,-5,-46.78520943751329,0,1,2,2019,6,1,44,35,1,1,0,18.76201984414209,18.76201984414209,0,0,0,0,0,1,1,0,0,0,52,54.51,25.54,57.96,10,1,1,0,0,9,4,5,1,874.25,423710.3349754114,372995.8981260841,334575.0450832918,243404.5122593083,4954.596000541686 -2610,3249,5872,-9,5871,5870,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.0074088715527,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,874.25,423710.3349754114,372995.8981260841,334575.0450832918,243404.5122593083,4954.596000541686 -2610,3249,5873,-9,5871,5870,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.259396052605,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,874.25,423710.3349754114,372995.8981260841,334575.0450832918,243404.5122593083,4954.596000541686 -2611,3250,5874,5875,-9,-9,1,1,63,0,0,0,1,1,-9,1,1,0,4.918342939669532,5.171251595976967,9,5,-191.8220175768147,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.574322529693701,54.29,16.4,57.06,57.76,5,1,1,0,0,0,10,3,0,481,319284.7013865473,0,200158.4912388881,0,2274.655313864386 -2611,3250,5875,5874,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.608890534175697,7.800699220724804,0,9,-5,-95.56358499662166,0,3,3,2019,11,0,39,32,1,0,0,8.559384100502557,8.559384100502557,0,0,0,0,5.48,1,1,0,0,0,57.06,57.76,54.29,16.4,8.333333333333334,1,1,0,0,10,10,3,0,481,319284.7013865473,0,200158.4912388881,0,2274.655313864386 -2611,3251,5876,-9,5875,5874,1,0,23,0,0,0,1,1,-9,0,5,8.35215838651075,8.49153873486987,0,0,0,-1069.339587339115,0,2,1,2019,8,0,37,39,1,0,1,9.04242897494127,9.04242897494127,0,0,0,0,0,1,1,0,.4308628019323364,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,233,64807.29989579234,0,0,0,1737.167535509644 -2612,3252,5877,-9,5879,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.62334047589,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,514.5,180090.1969465688,211395.5019292986,157809.7961870666,103631.6453990033,2414.666178189183 -2612,3252,5878,5879,-9,-9,1,1,39,0,3,0,2,2,-9,0,5,7.415460386736271,7.433318573633775,0,5,7,75.62487789921869,0,-9,-9,2019,9,0,28,28,1,0,0,6.653027409266922,6.653027409266922,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.88,61.85,8.333333333333334,1,1,0,0,3,5,3,0,514.5,180090.1969465688,211395.5019292986,157809.7961870666,103631.6453990033,2414.666178189183 -2612,3252,5879,5878,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.77525403998234,8.041970632767594,5.810655753827792,5,-7,-51.18363748519616,0,2,2,2019,13,1,39,33,1,1,0,6.971425268449778,6.971425268449778,0,0,0,0,0,1,1,0,6.05076924579859,0,38.88,61.85,54.1,59.11,8.333333333333334,1,1,0,0,6,5,3,0,514.5,180090.1969465688,211395.5019292986,157809.7961870666,103631.6453990033,2414.666178189183 -2612,3252,5880,-9,5879,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.707380357806,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,514.5,180090.1969465688,211395.5019292986,157809.7961870666,103631.6453990033,2414.666178189183 -2613,3253,5881,5882,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,9,4,49.98431291210218,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,5.48,0,0,0,4.743128943674756,0,54.37,54.8,54.37,54.8,8.333333333333334,1,1,0,0,4,6,5,1,1208.5,1239780.847982689,895594.4470279443,351146.6272538646,8095.801074626699,7099.989652945079 -2613,3253,5882,5881,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.670375584511046,10.00125439306197,8.662436236298481,9,-4,91.56460573213887,0,2,2,2019,10,0,40,40,1,0,0,41.35007013025938,41.35007013025938,0,0,0,0,0,0,0,0,5.128752748530198,9.445735172932356,54.37,54.8,54.37,54.8,8.333333333333334,1,1,0,0,10,6,5,1,1208.5,1239780.847982689,895594.4470279443,351146.6272538646,8095.801074626699,7099.989652945079 -2614,3254,5883,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.503528087713937,8.617544162437099,6.079972006017227,0,0,-1007.965772414315,0,1,2,2019,7,0,35,38,1,0,0,15.68062635546277,15.68062635546277,0,0,0,0,0,0,0,0,5.643886692958235,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,284,297893.2272041196,142098.2560483045,130269.8909649785,0,1848.857162161371 -2615,3255,5884,5886,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,6.698939937229114,6.630067810826151,0,24,0,-43.91118269107065,0,2,2,2019,12,0,22,13,1,0,0,4.49614573099653,4.49614573099653,0,0,0,0,0,1,1,0,0,0,52.48,54.33,39.32,46.01,8.333333333333334,1,1,0,0,5,6,3,0,726.25,645982.5317069953,197675.6894803275,314771.0130343254,0,1528.040822802477 -2615,3255,5885,-9,5884,5886,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.6816161294963,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,726.25,645982.5317069953,197675.6894803275,314771.0130343254,0,1528.040822802477 -2615,3255,5886,5884,-9,-9,1,1,54,0,2,0,3,3,-9,0,2,7.792749789490811,7.56588824781451,0,24,9,-77.99592481381951,0,2,-9,2019,12,0,42,42,1,0,0,3.808722535093856,3.808722535093856,0,0,0,0,0,1,1,0,0,0,39.32,46.01,52.48,54.33,5,1,1,0,0,8,6,3,0,726.25,645982.5317069953,197675.6894803275,314771.0130343254,0,1528.040822802477 -2615,3255,5887,-9,5884,5886,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.530326068079,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,726.25,645982.5317069953,197675.6894803275,314771.0130343254,0,1528.040822802477 -2616,3256,5888,5889,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.108483001597377,5.066718864228547,8,-3,30.145903711435,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.507502661024829,5.003494601795542,44.36,54.04,45.77,41.53,8.333333333333334,1,1,0,0,0,6,2,1,231.5,85179.94295424306,57340.94122477922,0,0,58.73679400014657 -2616,3256,5889,5888,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,8,3,46.16525092687319,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,5.514496826838855,0,0,1,1,0,0,0,45.77,41.53,44.36,54.04,6.666666666666667,1,1,0,0,0,6,2,1,231.5,85179.94295424306,57340.94122477922,0,0,58.73679400014657 -2617,3257,5890,5891,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.008942258554081,7.896046656796993,0,5,0,68.26870024641671,0,1,2,2019,6,0,37,36,1,0,0,9.951944018921676,9.951944018921676,0,0,0,0,0,0,0,0,0,0,62.39,56.71,48.42,55.98,8.333333333333334,1,1,0,0,7,9,4,0,867,305.0106495949804,-10648.03121152703,0,0,2939.025042125973 -2617,3257,5891,5890,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.177618205788969,8.03298951660757,0,5,0,-14.88405079651237,0,-9,-9,2019,9,0,65,60,1,0,0,4.46045073929124,4.46045073929124,0,0,0,0,0,0,0,0,0,0,48.42,55.98,62.39,56.71,8.333333333333334,1,1,0,0,9,9,4,0,867,305.0106495949804,-10648.03121152703,0,0,2939.025042125973 -2618,3258,5892,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.123080875091003,6.269091452669292,0,0,-1067.214469422316,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.209255938147593,6.606289472408938,46.55,58.3,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,367,218.687873738003,25041.16661280896,0,0,1648.162391608228 -2619,3259,5893,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.797156676906075,8.681506639204521,0,0,0,-1006.227122554972,0,3,3,2019,8,1,50,38,1,1,0,14.86628719162589,14.86628719162589,0,0,0,0,7,0,0,0,0,0,62.81,26.6,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,2344,-40211.4377627424,0,0,0,2395.176192644047 -2620,3260,5894,-9,5896,5895,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-863.3122889758837,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,477.3333333333333,414216.6246359632,77509.96179013996,413604.7580497324,138950.4687482448,4086.673822332561 -2620,3260,5895,5896,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.817813717989663,8.627064634264999,0,9,5,-.1382968753035203,0,-9,-9,2019,17,5,40,40,1,5,0,13.28851961573237,13.28851961573237,0,0,0,0,0,1,1,0,0,0,33.07,55.18,42.61,54.85,6.666666666666667,1,1,0,0,13,11,5,1,477.3333333333333,414216.6246359632,77509.96179013996,413604.7580497324,138950.4687482448,4086.673822332561 -2620,3260,5896,5895,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.348184891453592,8.602620532856465,0,9,-5,42.46535897688359,0,-9,-9,2019,10,0,40,40,1,0,0,11.88857293819114,11.88857293819114,0,0,0,0,0,1,1,0,0,0,42.61,54.85,33.07,55.18,6.666666666666667,1,1,0,0,11,11,5,1,477.3333333333333,414216.6246359632,77509.96179013996,413604.7580497324,138950.4687482448,4086.673822332561 -2621,3261,5897,5899,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.610674991996841,9.025875757732036,0,8,-8,114.0247393959277,0,2,3,2019,10,0,40,40,1,0,0,17.93363050552552,17.93363050552552,0,0,0,0,0,1,1,0,0,0,43,60.68,48.54,46.62,6.666666666666667,1,1,0,0,9,13,5,1,176.6666666666667,19039.17129986263,52143.03347021258,0,0,3917.049044400798 -2621,3261,5898,-9,5899,5897,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1027.328432647125,0,3,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,5.469262305039878,0,42.95,61.24,-9,-9,3.333333333333333,1,1,0,0,1,13,5,1,176.6666666666667,19039.17129986263,52143.03347021258,0,0,3917.049044400798 -2621,3261,5899,5897,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.6659840204544,7.681939085892047,0,8,8,58.6643454271995,0,3,2,2019,10,0,40,40,1,0,0,5.71481406517155,5.71481406517155,0,0,0,0,0,1,1,0,7.641062782942148,0,48.54,46.62,43,60.68,8.333333333333334,1,1,0,0,9,13,5,1,176.6666666666667,19039.17129986263,52143.03347021258,0,0,3917.049044400798 -2621,3262,5900,-9,5899,5897,1,0,21,0,0,0,2,2,-9,0,4,8.148190886488175,8.111003758932247,0,0,0,-964.766977432942,-9,3,2,2019,7,0,40,0,1,0,1,9.775976243942864,9.775976243942864,0,0,0,0,0,1,1,0,0,0,50.86,50.74,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,2061,109893.4254874977,0,0,0,1390.970687986787 -2622,3263,5901,5903,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,8.766200469081934,8.407093443210227,0,20,0,-4.494147948201787,0,2,2,2019,10,0,36,40,1,0,0,14.21739775619812,14.21739775619812,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.1,36.02,10,1,1,0,0,10,12,5,1,683.3333333333334,420229.2709232126,171232.3579870966,326738.6062210359,75408.76190823464,3829.865621939451 -2622,3263,5902,-9,5901,5903,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.578150028419,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,683.3333333333334,420229.2709232126,171232.3579870966,326738.6062210359,75408.76190823464,3829.865621939451 -2622,3263,5903,5901,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.65894764761787,8.465412442917557,0,20,0,53.82648770543056,0,2,2,2019,13,2,50,40,1,2,0,15.14581818522394,15.14581818522394,0,0,0,0,0,1,1,0,0,0,51.1,36.02,57.33,53.46,8.333333333333334,1,1,0,0,10,12,5,1,683.3333333333334,420229.2709232126,171232.3579870966,326738.6062210359,75408.76190823464,3829.865621939451 -2623,3264,5904,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1059.521787299169,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,3.71801289748707,0,0,0,1,1,0,0,0,51.52,32.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,222,104834.7735621363,0,383179.5213284934,0,221.6240598339251 -2624,3265,5905,5907,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.081713568059655,8.230275472816835,0,2,-4,-29.9447974960807,0,-9,-9,2019,9,0,49,42,1,0,0,6.745366061618196,6.745366061618196,0,0,0,0,0,1,1,0,0,0,55.73,49.95,57.16,56.15,8.333333333333334,1,1,0,0,1,12,3,0,210,-28114.26020475634,29352.42389862721,0,0,3776.617023321324 -2624,3265,5906,-9,5907,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1040.440782132046,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,3,0,210,-28114.26020475634,29352.42389862721,0,0,3776.617023321324 -2624,3265,5907,5905,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.403157068810573,7.441365728568099,0,2,4,127.4878500277341,0,3,3,2019,11,0,31,30,1,0,0,7.153929932974348,7.153929932974348,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.73,49.95,8.333333333333334,1,1,0,0,7,12,3,0,210,-28114.26020475634,29352.42389862721,0,0,3776.617023321324 -2624,3266,5908,-9,5907,-9,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1004.534967693689,1,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,12,1,0,53,-24872.08415121818,0,0,0,0 -2625,3267,5909,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.225100878847075,9.304073497167671,0,0,0,-1060.70862616428,0,3,2,2019,9,0,40,40,1,0,0,26.74531598997888,26.74531598997888,0,0,0,0,0,0,0,0,6.852844161554668,0,59.56,43.01,-9,-9,6.666666666666667,2,3,0,0,12,9,5,1,496,7399.040310384882,-15578.2438750682,0,0,3083.798655095535 -2626,3268,5910,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.5737132472539,0,3,3,2019,20,6,0,0,4,6,0,0,0,1,0,11.71515722772007,0,0,1,1,0,0,0,34.96,41.15,-9,-9,5,1,1,0,0,0,1,1,1,321,19810.11332724623,0,56108.96280474011,0,1112.442721361728 -2627,3269,5911,5913,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.278902155349108,8.304562868611969,0,2,2,179.6325119820185,0,2,2,2019,6,0,44,45,1,0,0,9.527187642268647,9.527187642268647,0,0,0,0,0,1,1,0,0,0,51.83,57.2,58.55,22.17,10,1,1,0,0,8,7,4,0,786.3333333333334,105232.3878430305,10475.5785575079,208262.5532569909,84642.78119719189,3216.344313504878 -2627,3269,5912,-9,5913,5911,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.424821722105,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,0,786.3333333333334,105232.3878430305,10475.5785575079,208262.5532569909,84642.78119719189,3216.344313504878 -2627,3269,5913,5911,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.298320468658533,8.317082880570137,5.312425287506553,2,-2,102.8643526170681,0,-9,-9,2019,9,0,37,36,1,0,0,11.83707930620094,11.83707930620094,0,0,0,0,0,1,1,0,5.499398403049419,0,58.55,22.17,51.83,57.2,10,1,1,0,0,9,7,4,0,786.3333333333334,105232.3878430305,10475.5785575079,208262.5532569909,84642.78119719189,3216.344313504878 -2628,3270,5914,5916,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.231571122972257,8.991065621586472,0,32,2,-84.42782531247309,0,3,2,2019,11,3,60,126,1,3,0,18.15940985220615,18.15940985220615,0,0,0,0,0,1,1,0,.384234750851371,0,45.15,57.46,28.54,33.04,8.333333333333334,1,1,0,0,9,9,5,1,465,1337996.202623666,422864.1408609782,827962.7529427038,117750.2502489328,4641.137218813092 -2628,3270,5915,-9,5916,5914,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.903893332648,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,465,1337996.202623666,422864.1408609782,827962.7529427038,117750.2502489328,4641.137218813092 -2628,3270,5916,5914,-9,-9,1,0,48,0,1,0,2,2,-9,0,1,7.786343961061653,7.696431484542574,0,31,-2,-47.82032479784983,0,3,3,2019,22,10,25,25,1,10,0,9.956094153739656,9.956094153739656,0,0,0,0,0,1,1,0,3.493966752570357,0,28.54,33.04,45.15,57.46,6.666666666666667,1,1,0,0,9,9,5,1,465,1337996.202623666,422864.1408609782,827962.7529427038,117750.2502489328,4641.137218813092 -2629,3271,5917,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.367978448285184,8.137363180823085,0,0,0,-821.1353073106503,0,2,2,2019,16,4,55,60,1,4,0,7.897818831264059,7.897818831264059,0,0,0,0,0,0,0,0,0,0,36.89,55.12,-9,-9,5,1,1,0,0,6,13,5,1,1329,137350.0186769424,-103159.6694745127,57860.4848848066,54379.15623552095,1892.333763774974 -2630,3272,5918,5919,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.743059692491878,8.673873883104456,0,20,1,-62.99229733229699,0,2,2,2019,5,0,40,40,1,0,0,18.00862010451656,18.00862010451656,0,0,0,0,0,1,1,0,0,0,57.73,54.53,49.12,57.28,8.333333333333334,1,1,0,0,8,4,4,1,590.25,272437.6155331893,334322.7682815262,131598.9216398426,26747.65582100199,3662.874868760226 -2630,3272,5919,5918,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.355035873772875,8.116700819565068,0,14,-1,122.8202334827769,0,-9,-9,2019,11,0,55,40,1,0,0,9.042320976643767,9.042320976643767,0,0,0,0,0,1,1,0,0,0,49.12,57.28,57.73,54.53,6.666666666666667,1,1,0,0,9,4,4,1,590.25,272437.6155331893,334322.7682815262,131598.9216398426,26747.65582100199,3662.874868760226 -2630,3272,5920,-9,5918,5919,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.219068777263,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,590.25,272437.6155331893,334322.7682815262,131598.9216398426,26747.65582100199,3662.874868760226 -2630,3272,5921,-9,5918,5919,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.194117361062,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,590.25,272437.6155331893,334322.7682815262,131598.9216398426,26747.65582100199,3662.874868760226 -2631,3273,5922,-9,5926,5924,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.398638769875,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,471.4,443979.7743060929,302027.6958905236,159192.6299635094,38769.93873921296,2865.446590923476 -2631,3273,5923,-9,5926,5924,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1082.188068837597,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,471.4,443979.7743060929,302027.6958905236,159192.6299635094,38769.93873921296,2865.446590923476 -2631,3273,5924,5926,-9,-9,1,1,45,1,4,0,2,2,-9,0,4,7.945009261955959,7.820315917596089,0,7,13,-5.291593507945305,0,2,-9,2019,11,0,38,38,1,0,0,8.061286643104477,8.061286643104477,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.73,54.53,8.333333333333334,1,1,0,0,8,6,2,1,471.4,443979.7743060929,302027.6958905236,159192.6299635094,38769.93873921296,2865.446590923476 -2631,3273,5925,-9,5926,5924,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-892.9099053807984,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,471.4,443979.7743060929,302027.6958905236,159192.6299635094,38769.93873921296,2865.446590923476 -2631,3273,5926,5924,-9,-9,1,0,32,1,4,0,2,2,-9,1,4,6.851945444388561,6.821685490159648,0,7,-13,-84.11408172420347,0,2,2,2019,7,0,16,16,1,0,0,7.298838108265188,7.298838108265188,0,0,0,0,0,1,1,0,0,0,57.73,54.53,52.23,55.6,8.333333333333334,1,1,0,0,9,6,2,1,471.4,443979.7743060929,302027.6958905236,159192.6299635094,38769.93873921296,2865.446590923476 -2632,3274,5927,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.142210961873698,7.657853463052502,0,0,0,-1050.556890667262,0,2,2,2019,11,1,40,50,1,1,0,10.64221762507101,10.64221762507101,0,0,0,0,0,1,1,0,2.578813236805582,0,49.06,58.64,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,175,431558.6122637709,84755.90576551881,246858.655683945,0,1748.227690416945 -2633,3275,5928,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.742183145168696,8.989825529402886,0,0,0,-959.8176317536278,0,1,1,2019,6,0,44,52,1,0,0,19.32699726356343,19.32699726356343,0,0,0,0,0,0,0,0,4.683223064569682,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,383,-124308.2944054743,49574.74127056461,0,0,1939.705777185864 -2634,3276,5929,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.718074499054548,7.65044516741109,0,0,-934.9312983263758,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.831885120455778,0,0,1,1,0,0,7.941877939085225,58.16,48.06,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,186,533221.3358083175,248450.5874061733,373988.1457253233,0,1643.02486644068 -2635,3277,5930,5931,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,9.107587577054687,8.621906036052879,0,5,0,-54.98230383276861,0,-9,-9,2019,6,0,50,49,1,0,0,14.67159233211147,14.67159233211147,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.77,55.87,10,1,1,0,0,3,12,5,1,839.5,697978.4183911841,479190.2339977918,275363.441884012,123149.2126256585,4624.385859670279 -2635,3277,5931,5930,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.237975385349349,8.27063350598397,0,5,0,64.05988507435717,0,-9,-9,2019,9,0,36,36,1,0,0,16.29123294730953,16.29123294730953,0,0,0,0,0,1,1,0,3.249810376452806,0,54.77,55.87,57.06,57.76,10,1,1,0,0,12,12,5,1,839.5,697978.4183911841,479190.2339977918,275363.441884012,123149.2126256585,4624.385859670279 -2636,3278,5932,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-992.7391845198971,0,-9,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,108,-95358.03930559839,14178.90401437739,-5690.439370138003,0,2235.264216137889 -2637,3279,5933,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.14851363700051,4.198163338820794,0,0,-1112.164452296861,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,.7304757441883658,0,0,0,1,1,0,0,4.640864554691457,51.24,40.23,-9,-9,10,1,1,0,0,0,10,2,1,329,107369.7633535721,0,179341.8295046948,0,483.3386705198247 -2638,3280,5934,5937,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.650652205666066,8.606117753485211,0,16,5,-52.31786669816613,0,2,2,2019,7,0,50,38,1,0,0,10.87351665097472,10.87351665097472,0,0,0,0,0,1,1,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,10,4,5,1,2380.5,382973.3117143463,125418.7765700625,349776.7600935762,126871.9947802662,4320.276549905924 -2638,3280,5935,-9,5934,5937,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.470074800467,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,2380.5,382973.3117143463,125418.7765700625,349776.7600935762,126871.9947802662,4320.276549905924 -2638,3280,5936,-9,5934,5937,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.8617348002718,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,2380.5,382973.3117143463,125418.7765700625,349776.7600935762,126871.9947802662,4320.276549905924 -2638,3280,5937,5934,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.64403359216694,8.79527163507967,0,16,-5,-25.49450337346266,0,2,3,2019,11,0,48,50,1,0,0,15.4484569959372,15.4484569959372,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,10,4,5,1,2380.5,382973.3117143463,125418.7765700625,349776.7600935762,126871.9947802662,4320.276549905924 -2639,3281,5938,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.098653297138851,8.174614032925623,0,0,0,-921.5829259688043,0,1,1,2019,6,0,38,37,1,0,0,10.08332676213727,10.08332676213727,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,171,121921.1354327144,0,42991.45446046585,-7033.655637978802,1064.545733577414 -2639,3282,5939,-9,5938,-9,1,1,42,0,0,0,2,2,-9,0,4,4.079334411172062,4.093188429352212,0,0,0,-1055.126777846442,0,2,-9,2019,9,0,40,35,1,0,1,.1986567081145408,.1986567081145408,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,6.666666666666667,4,2,0,0,11,11,2,1,275,140765.6491552897,193496.2393510323,0,0,875.0795508849134 -2640,3283,5940,5941,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.905935113246646,7.945946711696523,0,28,-1,87.8984228117446,0,-9,-9,2019,13,2,18,7,1,2,0,17.09309713930276,17.09309713930276,0,0,0,0,0,1,1,0,0,0,48.43,47.89,45.84,50.44,1.666666666666667,1,1,0,1,7,5,3,1,2021,408949.2116049909,92554.97458316933,152637.7600360066,0,2458.986791919214 -2640,3283,5941,5940,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,1,9.475978024970436,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.84,50.44,48.43,47.89,8.333333333333334,4,5,0,0,2,5,3,1,2021,408949.2116049909,92554.97458316933,152637.7600360066,0,2458.986791919214 -2641,3284,5942,5943,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.315094901674799,8.302180827171396,0,5,0,-115.3222661674574,0,-9,-9,2019,13,1,40,40,1,1,0,12.42552669194773,12.42552669194773,0,0,0,0,0,0,0,0,2.299389274817124,0,44.81,57.83,48,57,6.666666666666667,1,1,0,0,6,2,4,0,2563.5,27031.5649328902,-92997.88567708214,191230.6468612943,184552.2255313793,2779.631070440763 -2641,3284,5943,5942,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.677935516171762,7.972123020761435,0,5,0,167.7148798213065,0,-9,-9,2019,11,0,32,40,1,2,0,7.732846649720421,7.732846649720421,0,0,0,0,0,0,0,0,0,0,48,57,44.81,57.83,7,1,1,0,0,1,2,4,0,2563.5,27031.5649328902,-92997.88567708214,191230.6468612943,184552.2255313793,2779.631070440763 -2642,3285,5944,-9,-9,5947,1,1,52,0,0,0,2,2,-9,0,4,9.006759907959221,8.86090284058035,0,0,0,-820.2959482786815,0,2,2,2019,9,0,37,50,1,1,0,24.65161000599522,24.65161000599522,0,0,0,0,0,1,1,0,1.131574981756982,0,53,54,-9,-9,8,3,4,0,0,10,8,5,1,1001,231836.2799541452,52471.11135176941,323100.621653057,66335.6205138111,3188.376747806491 -2642,3286,5945,-9,-9,5944,1,1,34,0,0,0,2,2,-9,1,4,0,0,0,0,0,-883.4307941473526,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,154,0,0,0,0,1167.23687952123 -2642,3287,5946,-9,-9,5944,1,1,30,0,0,0,2,2,-9,0,4,7.827747070006007,7.731843346960154,0,0,0,-1043.999333565086,0,2,2,2019,10,0,35,36,1,1,1,7.000405689988975,7.000405689988975,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,1,556,-161696.037611559,44777.23587889635,0,0,793.4023298392765 -2642,3288,5947,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-994.6717008767279,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,8,1,1,228,8877.356360822845,0,0,0,1376.051996092663 -2643,3289,5948,-9,5949,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.283865322305,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,603.5,3901.634290854607,26838.32696129272,0,0,2274.500168405869 -2643,3289,5949,-9,-9,-9,1,0,21,0,1,0,2,2,-9,0,3,7.690932327427683,7.759255991579987,0,0,0,-1076.307692397903,0,-9,-9,2019,12,0,43,36,1,0,0,6.535664284210693,6.535664284210693,0,0,0,0,0,1,1,0,0,0,47.75,40.39,-9,-9,3.333333333333333,1,1,0,0,2,11,3,0,603.5,3901.634290854607,26838.32696129272,0,0,2274.500168405869 -2644,3290,5950,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.946936885783467,8.18769347186697,0,0,0,-1005.014525260152,0,3,3,2019,3,0,40,32,1,0,0,9.059402926094855,9.059402926094855,0,0,0,0,0,0,0,0,5.883026174850364,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,91,120396.2139215983,150458.6993135907,0,0,1488.243736235697 -2645,3291,5951,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.943738893781666,7.89975027357546,0,0,0,-978.7602430086504,0,-9,-9,2019,9,0,13,38,1,0,0,33.24813972858932,33.24813972858932,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,12,2,4,1,1194,169277.1803023121,164804.7022434502,13882.53638141763,0,174.3430220829048 -2645,3292,5952,-9,5951,-9,1,0,29,0,0,0,1,1,-9,0,4,8.141329952069915,8.387730818576813,0,0,0,-972.7069849845864,0,2,-9,2019,23,11,38,38,1,11,1,10.14944499280486,10.14944499280486,0,0,0,0,0,0,0,0,0,0,36.62,58.96,-9,-9,5,3,4,0,1,6,2,4,1,566,-246073.9366957714,-116346.5294499432,0,0,1880.60469223726 -2646,3293,5953,5954,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.782204800992968,3.482634946528902,31,9,-20.57708505610976,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.832232718285165,3.478585077746227,53.5,53.7,57.16,56.15,10,1,1,0,0,0,7,3,1,129.5,711748.8450009932,471406.2589019128,200551.9601963559,0,1631.55786403413 -2646,3293,5954,5953,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.879092949837628,7.815615827898471,31,0,-10.87035360248862,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.784223107753698,7.773831868174952,57.16,56.15,53.5,53.7,10,1,1,0,0,5,7,3,1,129.5,711748.8450009932,471406.2589019128,200551.9601963559,0,1631.55786403413 -2647,3294,5955,5956,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,5.833044713146423,5.999939385225384,28,-6,81.80431705518336,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,13.24793560494246,0,0,1,1,0,8.281447129483714,6.112928823937485,48.52,39.52,42.31,54.62,8.333333333333334,1,1,0,0,0,9,4,1,707.5,1750078.952547384,172226.9984169037,567743.8362175436,0,7001.999220723863 -2647,3294,5956,5955,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.709071783353926,8.945989043063852,29,6,-53.47032074006498,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,8.54265964762252,8.708729401821516,42.31,54.62,48.52,39.52,8.333333333333334,1,1,0,0,8,9,4,1,707.5,1750078.952547384,172226.9984169037,567743.8362175436,0,7001.999220723863 -2648,3295,5957,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.458287337684443,7.255984080314043,0,0,0,-1055.360291938502,0,3,2,2019,7,0,30,35,1,0,0,5.949563626654444,5.949563626654444,0,0,0,0,27,1,1,0,0,0,58.17,42.52,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,1001,-98090.70998127607,-89532.68682246943,0,0,315.2342566614386 -2648,3296,5958,-9,5957,-9,1,1,21,0,0,0,2,2,0,1,3,0,0,0,0,0,-831.0917559079551,-9,2,-9,2019,23,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.8301612081765005,0,24.18,60.54,-9,-9,3.333333333333333,1,1,0,0,1,7,1,1,641,0,0,0,0,111.1520908433438 -2649,3297,5959,-9,-9,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1057.837178071512,0,-9,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,0,1,0,0,22.86,29.27,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,857,71359.6360156091,-93887.440400634,0,0,1039.95951024288 -2649,3298,5960,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.686010554260568,6.366652742094702,0,0,-1033.274547467529,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,0,1,2.601765108002521,6.832870364145163,52.06,39.39,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,412,849304.4724064227,245415.0183227852,360806.0078478286,0,1331.653249412537 -2650,3299,5961,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1095.489679227966,0,2,1,2019,19,6,0,30,3,6,0,0,0,0,0,0,0,0,1,1,0,6.650298855305465,0,38.39,16.39,-9,-9,6.666666666666667,1,1,0,1,5,2,1,0,546,-73040.54445920094,0,0,0,1575.072066591896 -2651,3300,5962,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,7.915732926388409,7.788736672269125,0,0,-1020.677222800343,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,2.017860400151367,0,22.90710873899197,0,1,1,0,7.172425317756661,7.79482026973354,44.34,11.36,-9,-9,3.333333333333333,1,1,0,0,3,9,4,1,831,809573.1222720714,106109.0208599044,524206.5660526607,0,3769.666137764172 -2652,3301,5963,-9,5966,5965,1,0,22,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1105.294426802088,-9,3,1,2019,16,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,30.31,56.16,-9,-9,5,1,1,0,0,2,11,2,1,1729,-127883.6966203194,0,0,0,1829.084747660082 -2652,3302,5964,-9,5966,5965,1,1,19,0,1,0,2,2,-9,0,4,6.97978938510157,7.008425513037357,0,0,0,-995.8279376195686,0,3,1,2019,7,0,30,12,1,0,1,3.596316690694083,3.596316690694083,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,11,2,1,3044,114287.1512200967,144309.4462465416,0,0,260.8750690485918 -2652,3303,5965,5966,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.473624195630142,8.597933923538891,6.92881567122602,10,11,.3626792943736227,0,-9,-9,2019,10,0,70,55,1,0,0,8.38822650713943,8.38822650713943,0,0,0,0,0,1,1,0,0,7.005249385983331,51.41,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,11,4,1,371.3333333333333,1047576.896967437,388464.0473493476,367597.9096145128,0,3516.383987505309 -2652,3303,5966,5965,-9,-9,1,0,41,0,1,0,3,3,-9,0,4,7.770657051647524,7.898507534735123,0,10,-11,97.81432130401059,0,2,2,2019,10,0,35,40,1,0,0,8.852291789237377,8.852291789237377,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.41,56.15,8.333333333333334,1,1,0,0,11,11,4,1,371.3333333333333,1047576.896967437,388464.0473493476,367597.9096145128,0,3516.383987505309 -2652,3303,5967,-9,5966,5965,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.609991390696,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,371.3333333333333,1047576.896967437,388464.0473493476,367597.9096145128,0,3516.383987505309 -2653,3304,5968,5969,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,5.567833585646022,5.60888102371714,4,4,147.9816815223273,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,2,0,0,0,7.864801996365486,5.4012642646957,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,12,2,1,987.5,636237.002897881,406826.962351292,0,0,3710.424551144966 -2653,3304,5969,5968,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.061704774066603,6.866424511580917,0,4,-4,20.69323686126266,0,1,2,2019,7,0,20,30,1,0,0,6.674311216278586,6.674311216278586,0,0,0,0,0,0,0,0,8.325134251846475,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,6,12,2,1,987.5,636237.002897881,406826.962351292,0,0,3710.424551144966 -2654,3305,5970,5971,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,28,-7,0,0,3,3,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,5.87,45.03,52.64,47.24,1.666666666666667,1,1,0,1,0,4,1,1,1151,248253.2166161113,0,18572.92437909698,0,892.3822618493439 -2654,3305,5971,5970,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,28,7,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,52.64,47.24,5.87,45.03,5,1,1,0,0,0,4,1,1,1151,248253.2166161113,0,18572.92437909698,0,892.3822618493439 -2654,3306,5972,-9,5970,5971,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1019.014741342441,1,3,3,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,2,1,1,0,0,0,30.83,43.12,-9,-9,3.333333333333333,1,1,0,1,0,4,1,1,813,114194.4609671718,0,0,0,-243.3592263139872 -2654,3307,5973,-9,5970,5971,1,1,20,0,0,0,2,2,-9,0,4,7.961154211061999,7.666906716597307,0,0,0,-1098.94491542571,0,3,3,2019,18,7,38,37,1,7,1,6.238290835861112,6.238290835861112,0,0,0,0,7,1,1,0,.0182118093982501,0,28.1,66.68000000000001,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,2581,103527.1692961699,83246.6403105738,0,0,1244.845816194465 -2655,3308,5974,5975,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,8.237780667992205,8.352235711332105,0,29,13,-10.0610852130747,0,3,3,2019,10,0,70,50,1,0,0,5.46571129419348,5.46571129419348,1,0,0,2.418045082192718,0,0,0,0,2.096233925259542,0,49,37,57.16,56.15,6.666666666666667,1,1,0,0,8,5,4,1,1000,552092.9895975562,79705.90918700831,143720.0311430659,0,2156.949690047384 -2655,3308,5975,5974,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.427202778175518,7.280424069807874,0,29,-13,8.103588696318656,0,3,3,2019,9,1,60,0,1,1,0,2.42320218394862,2.42320218394862,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49,37,10,1,1,0,0,8,5,4,1,1000,552092.9895975562,79705.90918700831,143720.0311430659,0,2156.949690047384 -2655,3309,5976,-9,5975,5974,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-986.6168522005552,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,43,-105260.1532828786,0,0,0,270.8740428277438 -2656,3310,5977,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.636132500888099,8.482324842516451,0,0,0,-1164.434543523569,0,3,3,2019,7,0,45,42,1,0,0,13.11164118736265,13.11164118736265,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,497,-85397.09000251531,63394.89857541082,129429.0977811441,83825.66164540661,2819.603781486554 -2657,3311,5978,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.910125212561269,6.861211617245497,0,0,-891.4818316344146,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.084937276924183,6.773356668835108,47.22,53.97,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,644,291639.3383152335,16960.07171887493,49775.14482294433,0,1392.435341314073 -2658,3312,5979,-9,5982,5983,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1102.831314678108,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1755,1915639.333749085,1573898.814164234,328385.3282886205,0,5210.020348849396 -2658,3312,5980,-9,5982,5983,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.887278402567,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1755,1915639.333749085,1573898.814164234,328385.3282886205,0,5210.020348849396 -2658,3312,5981,-9,5982,5983,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.711247023884,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,4,4,1,1755,1915639.333749085,1573898.814164234,328385.3282886205,0,5210.020348849396 -2658,3312,5982,5983,-9,-9,1,0,44,0,4,0,2,2,0,0,4,0,0,0,7,-1,-111.9270753461086,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.778228485303622,0,57.16,56.15,61.27,43.2,8.333333333333334,1,1,0,0,6,4,4,1,1755,1915639.333749085,1573898.814164234,328385.3282886205,0,5210.020348849396 -2658,3312,5983,5982,-9,-9,1,1,45,0,4,0,2,2,-9,0,4,9.222107726313046,9.09788247271206,0,7,1,-57.22253809430499,0,2,1,2019,8,0,50,40,1,0,0,22.67400709224986,22.67400709224986,0,0,0,0,0,1,1,0,8.006029556871992,0,61.27,43.2,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,1755,1915639.333749085,1573898.814164234,328385.3282886205,0,5210.020348849396 -2659,3313,5984,5985,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.364510265066503,8.130684733611176,0,5,1,35.29590048086752,0,-9,-9,2019,8,0,25,25,1,0,0,17.65868554231079,17.65868554231079,0,0,0,0,0,0,0,0,7.004759278903836,0,55.53,51.55,34.49,52.94,10,1,1,0,0,13,12,5,1,669.5,410308.269832889,273043.4187800465,250578.6740333166,192536.4160481254,5849.690521927128 -2659,3313,5985,5984,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.614821212066056,9.619024546326738,0,5,-1,128.5925465112336,0,2,2,2019,12,0,46,50,1,0,0,39.15829448963627,39.15829448963627,0,0,0,0,0,0,0,0,3.962410393060686,0,34.49,52.94,55.53,51.55,6.666666666666667,1,1,0,0,11,12,5,1,669.5,410308.269832889,273043.4187800465,250578.6740333166,192536.4160481254,5849.690521927128 -2659,3313,5986,-9,5984,5985,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.8918261724614,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,669.5,410308.269832889,273043.4187800465,250578.6740333166,192536.4160481254,5849.690521927128 -2659,3313,5987,-9,5984,5985,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.3038244540371,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,669.5,410308.269832889,273043.4187800465,250578.6740333166,192536.4160481254,5849.690521927128 -2660,3314,5988,5989,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,0,0,9,-6,27.95747651048442,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.242450138907246,0,54.01,53.44,60.02,56.42,8.333333333333334,1,1,0,0,0,12,2,1,1425.5,998189.7897430602,523110.9916033624,330778.3403628716,0,1305.425815241087 -2660,3314,5989,5988,-9,-9,1,1,77,0,0,0,1,1,-9,0,5,0,5.787575111274259,5.272978726491543,9,6,194.1470731789827,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.833431731227935,60.02,56.42,54.01,53.44,10,1,1,0,0,0,12,2,1,1425.5,998189.7897430602,523110.9916033624,330778.3403628716,0,1305.425815241087 -2661,3315,5990,-9,5991,5992,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.6491475447179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,2,3,1,802,64889.83941422824,29087.12868394082,0,0,1973.71190652059 -2661,3315,5991,5992,-9,-9,1,0,31,0,3,0,2,2,-9,0,5,7.459322775769259,7.388710318430058,0,13,0,-56.33354808401545,0,-9,-9,2019,9,0,32,40,1,0,0,5.693736154026301,5.693736154026301,0,0,0,0,0,1,1,0,0,0,51.14,60.45,53.56,38.45,8.333333333333334,1,1,0,0,5,2,3,1,802,64889.83941422824,29087.12868394082,0,0,1973.71190652059 -2661,3315,5992,5991,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,7.560662851380664,7.353820045361806,0,13,0,-4.026901877841217,0,2,-9,2019,19,5,60,75,1,5,0,3.570508515078687,3.570508515078687,0,0,0,0,7,1,1,0,0,0,53.56,38.45,51.14,60.45,8.333333333333334,1,1,0,0,8,2,3,1,802,64889.83941422824,29087.12868394082,0,0,1973.71190652059 -2661,3315,5993,-9,5991,5992,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-811.8773302979018,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,2,3,1,802,64889.83941422824,29087.12868394082,0,0,1973.71190652059 -2661,3315,5994,-9,5991,5992,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-886.4962084093551,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,3,1,802,64889.83941422824,29087.12868394082,0,0,1973.71190652059 -2662,3316,5995,5998,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.816867036030898,8.793659010524099,0,19,-3,-82.98241713376608,0,3,3,2019,9,0,38,38,1,0,0,21.97162306331374,21.97162306331374,0,0,0,0,0,1,1,0,0,0,46.38,47,48.84,47.98,8.333333333333334,2,3,0,0,9,9,5,1,885.2,1505755.260660021,1209561.434513707,557594.7066171889,244176.9829651521,8142.237197926566 -2662,3316,5996,-9,5995,5998,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-898.5867353257599,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,44.61,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,885.2,1505755.260660021,1209561.434513707,557594.7066171889,244176.9829651521,8142.237197926566 -2662,3316,5997,-9,5995,5998,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.678362517381,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,9,5,1,885.2,1505755.260660021,1209561.434513707,557594.7066171889,244176.9829651521,8142.237197926566 -2662,3316,5998,5995,-9,6000,1,1,49,0,2,0,1,1,-9,0,5,8.882734270260961,8.895398858930339,0,19,3,36.30463342140123,0,3,2,2019,10,0,40,40,1,0,0,21.72531797704429,21.72531797704429,0,0,0,0,2,1,1,0,8.840487482086747,0,48.84,47.98,46.38,47,8.333333333333334,2,3,0,1,8,9,5,1,885.2,1505755.260660021,1209561.434513707,557594.7066171889,244176.9829651521,8142.237197926566 -2662,3316,5999,-9,5995,5998,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.526032300583,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,885.2,1505755.260660021,1209561.434513707,557594.7066171889,244176.9829651521,8142.237197926566 -2662,3317,6000,-9,-9,-9,1,1,86,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1013.891870694009,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,708,241901.2071952567,0,276124.0923879782,0,0 -2663,3318,6001,-9,6002,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.015040327099,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,5,-9,0,0,7,2,0,959.6666666666666,-39036.65196294294,0,0,0,628.8768447635366 -2663,3318,6002,-9,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1055.817424916395,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,5,4,5,0,0,0,7,2,0,959.6666666666666,-39036.65196294294,0,0,0,628.8768447635366 -2663,3318,6003,-9,6002,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-876.4877000964519,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,5,-9,0,0,7,2,0,959.6666666666666,-39036.65196294294,0,0,0,628.8768447635366 -2664,3319,6004,6005,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.173069215069094,6.241590574244476,49,3,-50.17487604824016,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.185841976529802,6.304623526376059,58.4,51.64,57.33,53.46,10,1,1,0,0,5,6,2,1,1014.5,547729.275640777,349005.4744666235,115529.0305149669,0,2492.713498360505 -2664,3319,6005,6004,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.384652297788986,6.529856737146588,49,-3,-127.8218945624801,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.402817161290431,6.458795939800667,57.33,53.46,58.4,51.64,8.333333333333334,1,1,0,0,0,6,2,1,1014.5,547729.275640777,349005.4744666235,115529.0305149669,0,2492.713498360505 -2665,3320,6006,-9,-9,-9,1,1,38,0,0,0,2,2,-9,1,5,8.689552013115936,8.845862158326112,0,0,0,-1059.64281699609,-9,2,-9,2019,6,0,38,0,1,0,0,15.71734937213716,15.71734937213716,0,0,0,0,88,1,1,0,0,0,56.34,53.98,-9,-9,10,1,1,0,0,10,8,5,0,209,238732.82247608,90142.88067569907,324357.1290890094,160732.5555154667,7449.580833737296 -2666,3321,6007,-9,6009,6008,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.0103100471663,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,2137.75,369749.8179641239,120317.7672421186,201858.212953843,170759.9831159735,3058.482568094328 -2666,3321,6008,6009,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.30959645749904,8.317315323874645,0,9,0,-114.1617666432218,0,-9,-9,2019,9,0,40,40,1,0,0,11.50215984779489,11.50215984779489,0,0,0,0,0,1,1,0,0,0,54.2,57.49,39.44,60.23,6.666666666666667,1,1,0,0,12,5,4,1,2137.75,369749.8179641239,120317.7672421186,201858.212953843,170759.9831159735,3058.482568094328 -2666,3321,6009,6008,-9,-9,1,0,42,1,2,0,1,1,-9,0,4,7.927488590786278,7.9569817928088,0,9,0,43.74662144858564,0,1,1,2019,10,0,21,30,1,0,0,18.87300795504839,18.87300795504839,0,0,0,0,0,1,1,0,0,0,39.44,60.23,54.2,57.49,5,1,1,0,0,10,5,4,1,2137.75,369749.8179641239,120317.7672421186,201858.212953843,170759.9831159735,3058.482568094328 -2666,3321,6010,-9,6009,6008,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.9092008612265,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,2137.75,369749.8179641239,120317.7672421186,201858.212953843,170759.9831159735,3058.482568094328 -2667,3322,6011,-9,6014,6012,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-898.970794280986,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,782.25,43361.87248785348,3350.158928599121,168520.2873679672,85377.39375526176,2731.103123557313 -2667,3322,6012,6014,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.670842451642908,8.608765166641906,0,13,1,148.680664560366,0,3,3,2019,11,1,49,51,1,1,0,10.74842211736602,10.74842211736602,0,0,0,0,2,1,1,0,4.299201803394316,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,11,4,1,782.25,43361.87248785348,3350.158928599121,168520.2873679672,85377.39375526176,2731.103123557313 -2667,3322,6013,-9,6014,6012,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.0664719501652,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,782.25,43361.87248785348,3350.158928599121,168520.2873679672,85377.39375526176,2731.103123557313 -2667,3322,6014,6012,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,6.933842340877636,7.197617987746599,0,13,-1,-2.054733325579364,0,3,3,2019,13,1,16,16,1,1,0,9.200210573464325,9.200210573464325,0,0,0,0,2,1,1,0,0,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,782.25,43361.87248785348,3350.158928599121,168520.2873679672,85377.39375526176,2731.103123557313 -2668,3323,6015,6016,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.574032106497688,7.429302404552052,9,8,11.85604657012518,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.164890285459252,7.255559145822349,60.1,54.82,51.77,58.57,10,1,1,0,0,3,12,3,1,997.5,957360.5699654743,350558.4271466054,282101.1903029463,0,2031.710058603363 -2668,3323,6016,6015,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.066820910799587,7.410242694633292,0,9,-8,-87.92668826440163,0,2,1,2019,10,0,20,30,1,0,0,8.186359699144482,8.186359699144482,0,0,0,0,0,1,1,0,0,0,51.77,58.57,60.1,54.82,8.333333333333334,1,1,0,0,10,12,3,1,997.5,957360.5699654743,350558.4271466054,282101.1903029463,0,2031.710058603363 -2669,3324,6017,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.166507707975047,8.479853410555448,8.045856649148158,0,0,-966.1186960521366,0,2,2,2019,9,0,25,20,1,0,0,14.79791636649359,14.79791636649359,0,0,0,0,0,1,1,0,7.786306669974158,7.896456380618686,54.55,49.25,-9,-9,5,1,1,0,0,13,5,5,1,532,547004.1404415506,142373.9109882631,101979.2980343801,0,4049.284473012018 -2670,3325,6018,6019,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,38,-3,-109.3408351051282,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,0,0,0,3.031953478729293,0,43.42,43.93,45.56,60.26,8.333333333333334,1,1,0,0,0,13,3,1,627.5,525700.6918046848,392654.1254849746,153225.6750855825,0,1606.16333501126 -2670,3325,6019,6018,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,7.553597640727973,7.963281307760932,38,3,-44.34674393954843,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.948747818859081,7.902391456255179,45.56,60.26,43.42,43.93,8.333333333333334,1,1,0,0,6,13,3,1,627.5,525700.6918046848,392654.1254849746,153225.6750855825,0,1606.16333501126 -2670,3326,6020,-9,6018,6019,1,0,32,0,0,0,1,1,-9,0,4,8.136617649411361,7.974989950654104,0,0,0,-910.6017617275859,-9,2,2,2019,10,1,38,0,1,1,1,10.89271180684867,10.89271180684867,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,210,122487.0290269625,103644.8951100571,0,0,1224.30291159473 -2671,3327,6021,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.831541908422328,5.662595197553112,0,0,-984.5684989961356,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.360358463483811,6.004591960788395,43.09,54.67,-9,-9,5,1,1,0,0,0,1,2,1,739,104759.3976091854,-31126.44839034061,0,0,1269.540703912827 -2671,3328,6022,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,4.426193074214282,3.803765325680152,0,0,-936.4454022271281,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,3.180290947488357,0,32.93,49.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1668,-5292.392710364617,0,0,0,1428.715176148862 -2672,3329,6023,6024,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.104410947611322,8.076004329735147,5.24107326873026,39,-5,87.9017716389713,0,2,1,2019,15,3,54,54,1,3,0,5.404591909500724,5.404591909500724,0,0,0,0,0,0,0,0,5.282528857328739,0,39.99,55.83,49.42,50.19,1.666666666666667,1,1,0,0,10,10,3,1,743,1249543.293333818,595276.2527402698,351870.2066111784,0,1500.294992343139 -2672,3329,6024,6023,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,37,5,-104.3040316121652,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.42,50.19,39.99,55.83,6.666666666666667,1,1,0,0,8,10,3,1,743,1249543.293333818,595276.2527402698,351870.2066111784,0,1500.294992343139 -2673,3330,6025,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-895.8296710731095,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,19.67622683713513,0,0,1,1,0,0,0,66.04000000000001,17.28,-9,-9,10,1,1,0,0,6,2,1,0,378,8715.116459700728,0,0,0,1297.906988873705 -2674,3331,6026,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,7.892077967388834,7.977115996042033,6.348064829888732,0,0,-968.232814000576,0,2,1,2019,10,1,35,39,1,1,0,9.759460819787922,9.759460819787922,1,0,0,0,0,0,0,0,3.112248824398031,6.488652759267532,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,10,1,4,1,81,1136.290719913862,0,0,0,1169.245833210364 -2675,3332,6027,6028,-9,-9,1,0,47,0,0,0,1,1,-9,1,1,0,0,0,7,0,-108.3914255631835,0,-9,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,43.37,51.75,6.666666666666667,1,1,0,1,0,13,5,1,407.5,478595.7525941732,180356.1650983694,229170.0792163906,132231.6444065439,5042.997881784737 -2675,3332,6028,6027,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.15989127206706,8.914377093241198,0,7,0,16.91157837429095,0,3,2,2019,18,6,62,60,1,6,0,19.97732192409957,19.97732192409957,0,0,0,0,0,1,1,0,0,0,43.37,51.75,29.19,19.44,3.333333333333333,1,1,0,1,8,13,5,1,407.5,478595.7525941732,180356.1650983694,229170.0792163906,132231.6444065439,5042.997881784737 -2675,3333,6029,-9,6027,6028,1,0,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-910.592984564878,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,3729,32741.04231336758,0,0,0,0 -2676,3334,6030,6031,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,0,0,9,0,-20.62400501426199,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.181101701081656,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,4,3,1,233.5,776433.1815289119,460644.0626343992,213394.7846800235,0,1623.307531065955 -2676,3334,6031,6030,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.961708436569531,7.832662609005967,31,0,-101.4418195629849,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.906433309497359,7.798498370959745,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,4,3,1,233.5,776433.1815289119,460644.0626343992,213394.7846800235,0,1623.307531065955 -2677,3335,6032,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.425357964673868,8.194763975214135,7.301510040153399,0,0,-986.1695267382632,0,2,3,2019,7,0,25,40,1,0,0,8.439516368451811,8.439516368451811,0,0,0,0,7,1,1,0,1.0352870316939,7.417602757007772,52.37,56.93,-9,-9,10,1,1,0,0,10,7,4,1,502,843455.0273217113,234891.4791734943,457427.8682051136,0,2041.532977944355 -2678,3336,6033,6034,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.324736081960191,8.573671129898651,0,5,2,12.95915787076266,0,2,2,2019,13,1,37,37,1,1,0,14.6846236251452,14.6846236251452,0,0,0,0,0,0,0,0,.4860860571593068,0,34.85,56.98,48.87,58.55,6.666666666666667,1,1,0,0,10,11,5,1,255.5,698910.808027464,600438.0414691308,169852.939563237,68098.53449730028,3213.325111653101 -2678,3336,6034,6033,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.383534679939279,8.087193668749915,0,5,-2,-12.34737628849424,0,-9,-9,2019,4,0,37,37,1,0,0,11.59526470813137,11.59526470813137,0,0,0,0,0,0,0,0,.7456639141241123,0,48.87,58.55,34.85,56.98,8.333333333333334,1,1,0,0,5,11,5,1,255.5,698910.808027464,600438.0414691308,169852.939563237,68098.53449730028,3213.325111653101 -2679,3337,6035,-9,6038,6036,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.691792482399,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,1371.5,381263.1997225623,-2926.237200141827,258501.2630759331,0,3964.466482765749 -2679,3337,6036,6038,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.064546462101374,7.185968624879312,0,6,-3,-98.82785985191695,0,-9,-9,2019,10,1,60,30,1,1,0,2.922473089052437,2.922473089052437,0,0,0,0,0,1,1,0,8.695079825777697,0,54.94,35.22,43.49,39.65,8.333333333333334,1,1,0,0,9,4,3,1,1371.5,381263.1997225623,-2926.237200141827,258501.2630759331,0,3964.466482765749 -2679,3337,6037,-9,6038,6036,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-868.9892910463687,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,1,1371.5,381263.1997225623,-2926.237200141827,258501.2630759331,0,3964.466482765749 -2679,3337,6038,6036,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,7.794705499522093,7.352283922421068,0,16,3,22.72901533678947,0,3,3,2019,12,1,10,10,1,1,0,22.34955798829274,22.34955798829274,0,0,0,0,0,1,1,0,6.886507296297249,0,43.49,39.65,54.94,35.22,3.333333333333333,1,1,0,0,9,4,3,1,1371.5,381263.1997225623,-2926.237200141827,258501.2630759331,0,3964.466482765749 -2680,3338,6039,6040,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.150623841612184,8.345718675656698,0,3,-8,22.13964189014692,0,2,2,2019,19,9,40,37,1,9,0,12.30615082415366,12.30615082415366,0,0,0,0,0,0,0,0,.3019110074317009,0,30.24,64.61,62.28,45.64,3.333333333333333,1,1,0,0,9,6,4,1,1064,446396.9663435444,392825.2547981358,223166.1297712834,0,2691.611878383671 -2680,3338,6040,6039,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.936986181821467,7.941906649009464,0,3,8,-75.15686904822907,0,3,3,2019,6,0,38,38,1,0,0,10.98116064256541,10.98116064256541,0,0,0,0,0,0,0,0,0,0,62.28,45.64,30.24,64.61,8.333333333333334,1,1,0,0,9,6,4,1,1064,446396.9663435444,392825.2547981358,223166.1297712834,0,2691.611878383671 -2681,3339,6041,-9,-9,-9,1,1,49,0,0,0,1,1,-9,1,1,0,0,0,0,0,-934.1669307934724,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.64,29.63,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,439,-44051.32626775161,0,0,0,1872.323211998824 -2682,3340,6042,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.129221837360626,5.808978782773119,0,0,-986.3605034412344,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.241462522220877,40.92,29.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,132,426694.2735237122,59165.81459562253,111484.7100265462,0,567.7358575191257 -2683,3341,6043,6044,-9,-9,1,0,29,0,0,0,2,2,-9,1,2,7.843624192338025,7.880728840989803,0,5,-7,-70.05109067489687,0,-9,-9,2019,18,7,38,37,1,7,0,6.548869151561126,6.548869151561126,0,0,0,0,2,1,1,0,0,0,35.62,33.86,51.49,57.57,5,1,1,0,1,9,13,4,1,801,188680.9605175861,50156.25640325788,0,0,3258.956399829349 -2683,3341,6044,6043,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.087498619801643,8.098543997951055,0,5,7,-70.1888037203975,0,2,2,2019,2,0,38,37,1,0,0,10.01289685227613,10.01289685227613,0,0,0,0,0,1,1,0,1.904985053040394,0,51.49,57.57,35.62,33.86,6.666666666666667,1,1,0,0,6,13,4,1,801,188680.9605175861,50156.25640325788,0,0,3258.956399829349 -2684,3342,6045,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,6.810582376064152,7.455420728949992,7.17903011073115,0,0,-1082.962319385294,0,-9,-9,2019,6,0,15,30,1,0,0,6.840156294276636,6.840156294276636,0,0,0,0,0,1,1,0,6.584236020379279,6.224143368897565,56.69,48.3,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,982,526964.6694643371,210097.7815645138,193351.935458244,0,1877.769069874868 -2684,3342,6046,-9,-9,6045,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1107.911561636934,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,982,526964.6694643371,210097.7815645138,193351.935458244,0,1877.769069874868 -2685,3343,6047,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.059814798181813,8.056085418793586,0,0,0,-955.4738315661624,0,2,2,2019,6,0,30,29,1,0,0,9.636873228470252,9.636873228470252,0,0,0,0,0,1,1,0,.0645316078634083,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1083,-131840.1131033545,0,0,0,1209.044928283608 -2685,3343,6048,-9,6047,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1142.581344731001,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,1083,-131840.1131033545,0,0,0,1209.044928283608 -2686,3344,6049,-9,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.317544649659206,8.2671047529577,0,0,0,-844.719382321462,0,3,3,2019,11,0,37,37,1,0,0,10.51999833954412,10.51999833954412,0,0,0,0,0,1,1,0,0,0,58.08,40.76,-9,-9,5,1,1,0,0,10,12,3,1,300,23145.6440621269,-76991.18955792242,155625.9887342321,62375.67731694872,2108.109284839315 -2686,3344,6050,-9,-9,6049,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.586743193257,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,300,23145.6440621269,-76991.18955792242,155625.9887342321,62375.67731694872,2108.109284839315 -2686,3344,6051,-9,-9,6049,1,1,16,0,2,1,2,0,-9,0,4,0,5.684103080234237,5.262591035782311,0,0,-1075.605855319379,-9,-9,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.045684453252402,0,48.62,53.12,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,300,23145.6440621269,-76991.18955792242,155625.9887342321,62375.67731694872,2108.109284839315 -2687,3345,6052,6053,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,5.696655190195989,6.13809760340621,0,13,-2,-16.21876890188739,0,2,2,2019,6,0,4,8,1,0,0,11.22584740875998,11.22584740875998,0,0,0,0,2,1,1,0,6.65307463045847,0,54.96,53.17,49.86,55.31,8.333333333333334,1,1,0,0,8,9,3,1,725.4,672694.1846030874,210787.7307758903,188990.5511267491,104763.4949886622,3591.559963433826 -2687,3345,6053,6052,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,8.55395632954956,8.733218055839087,0,13,2,-49.03874928228123,0,2,3,2019,8,0,50,54,1,0,0,11.92396581670981,11.92396581670981,0,0,0,0,2,1,1,0,0,0,49.86,55.31,54.96,53.17,8.333333333333334,1,1,0,0,10,9,3,1,725.4,672694.1846030874,210787.7307758903,188990.5511267491,104763.4949886622,3591.559963433826 -2687,3345,6054,-9,6052,6053,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.5866579895625,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,725.4,672694.1846030874,210787.7307758903,188990.5511267491,104763.4949886622,3591.559963433826 -2687,3345,6055,-9,6052,6053,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.1718355979847,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,725.4,672694.1846030874,210787.7307758903,188990.5511267491,104763.4949886622,3591.559963433826 -2687,3345,6056,-9,6052,6053,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.178790735128,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,725.4,672694.1846030874,210787.7307758903,188990.5511267491,104763.4949886622,3591.559963433826 -2688,3346,6057,6058,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,7.331414992396551,7.187881205340416,21,5,-65.79262755482353,0,2,2,2019,8,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.277998841362564,54.2,57.49,49.87,50.46,10,1,1,0,0,12,12,3,1,157,330880.1151188435,164720.6566262267,150712.0229673007,0,1123.656313670818 -2688,3346,6058,6057,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.762534971099083,6.703440972325165,0,21,-5,-66.34303663265885,0,-9,-9,2019,13,1,12,12,1,1,0,8.232678622971905,8.232678622971905,0,0,0,0,0,0,0,0,0,0,49.87,50.46,54.2,57.49,8.333333333333334,1,1,0,0,10,12,3,1,157,330880.1151188435,164720.6566262267,150712.0229673007,0,1123.656313670818 -2689,3347,6059,-9,6061,6060,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.6083434066946,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,911,-20967.81885772551,0,0,0,261.8194087205345 -2689,3347,6060,6061,-9,-9,1,1,25,1,2,0,3,3,-9,0,2,0,0,0,1,2,0,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,49.41,52.43,5,1,1,1,1,3,13,1,0,911,-20967.81885772551,0,0,0,261.8194087205345 -2689,3347,6061,6060,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,0,0,0,1,-2,0,-9,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,.0265183291767901,0,1,1,0,0,0,49.41,52.43,39.53,37.66,10,1,1,1,0,0,13,1,0,911,-20967.81885772551,0,0,0,261.8194087205345 -2689,3347,6062,-9,6061,6060,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.819824269315,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,911,-20967.81885772551,0,0,0,261.8194087205345 -2690,3348,6063,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-967.9493626243121,-9,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,32.29,-9,-9,8.333333333333334,1,1,0,0,7,12,1,0,1381,112103.9895355876,0,0,0,1227.674925708686 -2691,3349,6064,-9,6065,6068,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.107365486637,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2691,3349,6065,6068,-9,-9,1,0,45,0,4,0,2,2,-9,0,5,7.897621407223156,7.86845080067117,0,8,13,37.65025202855043,0,2,2,2019,6,0,32,13,1,0,0,11.25728539348625,11.25728539348625,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50,58,10,1,1,0,0,5,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2691,3349,6066,-9,6065,6068,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.279496172972,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2691,3349,6067,-9,6065,6068,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-959.1198080716965,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2691,3349,6068,6065,-9,-9,1,1,32,0,4,0,3,3,-9,0,4,8.321142629949472,8.383293862495773,0,8,-13,-7.12539785096418,-9,3,3,2019,10,0,40,0,1,1,0,14.67214693348849,14.67214693348849,0,0,0,0,0,1,1,0,6.963155642552261,0,50,58,60.02,56.42,7,1,1,0,0,1,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2691,3349,6069,-9,6065,6068,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-882.3978241305656,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,819.6666666666666,156462.6351595258,66223.97649292643,0,0,4276.561206668232 -2692,3350,6070,-9,6072,6073,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.478129584052,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,4,1,634.2,273818.9319850589,224733.7231659616,109785.7827552065,69881.67029844019,4100.661500031628 -2692,3350,6071,-9,6072,6073,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.128624555123,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,634.2,273818.9319850589,224733.7231659616,109785.7827552065,69881.67029844019,4100.661500031628 -2692,3350,6072,6073,6075,-9,1,0,41,0,3,0,1,1,-9,0,3,0,0,0,18,0,36.13301661193253,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.925430452194814,0,62.03,36.18,43.15,50.5,6.666666666666667,1,1,0,0,0,4,4,1,634.2,273818.9319850589,224733.7231659616,109785.7827552065,69881.67029844019,4100.661500031628 -2692,3350,6073,6072,-9,-9,1,1,41,0,3,0,1,1,-9,0,3,9.045367172865271,9.481078958166254,0,18,0,47.32128369270536,0,2,1,2019,9,1,43,46,1,1,0,27.18382772252197,27.18382772252197,0,0,0,0,2,1,1,0,0,0,43.15,50.5,62.03,36.18,8.333333333333334,1,1,0,0,7,4,4,1,634.2,273818.9319850589,224733.7231659616,109785.7827552065,69881.67029844019,4100.661500031628 -2692,3350,6074,-9,6072,6073,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.728643985683,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,634.2,273818.9319850589,224733.7231659616,109785.7827552065,69881.67029844019,4100.661500031628 -2692,3351,6075,-9,-9,-9,1,0,70,0,3,0,1,1,-9,0,3,0,7.320813534384161,6.673156238313618,0,0,-876.8563107774994,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.913677852606494,6.640400903743306,58.49,20.39,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,3449,-264386.9212585144,0,0,0,984.5494972216434 -2693,3352,6076,6077,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.836937153621008,8.722862704975215,0,14,0,-98.1856994386366,0,2,2,2019,6,0,38,37,1,0,0,14.91256199204775,14.91256199204775,0,0,0,0,7,0,0,0,0,0,56.35,51,48.82,47.62,8.333333333333334,1,1,0,0,9,6,5,1,519,621949.5711547482,467382.5546375001,196940.7633084769,16336.2029174521,3615.925625270267 -2693,3352,6077,6076,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.287243883220237,7.988065705905669,0,14,0,-118.1738104209542,0,2,2,2019,15,3,38,37,1,3,0,11.78496404354439,11.78496404354439,0,0,0,0,7,0,0,0,0,0,48.82,47.62,56.35,51,8.333333333333334,1,1,0,0,12,6,5,1,519,621949.5711547482,467382.5546375001,196940.7633084769,16336.2029174521,3615.925625270267 -2694,3353,6078,6079,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.509253944066723,9.03683211469682,0,16,-10,13.63996545247678,0,2,2,2019,20,9,37,37,1,9,0,14.41419672719486,14.41419672719486,0,0,0,0,0,0,0,0,0,0,37.47,19.27,57.9,51.84,3.333333333333333,1,1,0,0,9,7,5,1,422.5,1061486.65542738,506023.9600744743,380285.9449232497,0,3216.264435710019 -2694,3353,6079,6078,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.8057747464472,7.940746835669028,5.52713878541276,16,10,-22.81273118340704,0,2,3,2019,8,0,45,45,1,0,0,7.310537639601,7.310537639601,0,0,0,0,0,0,0,0,5.926835545641362,5.280066748590436,57.9,51.84,37.47,19.27,6.666666666666667,1,1,0,0,9,7,5,1,422.5,1061486.65542738,506023.9600744743,380285.9449232497,0,3216.264435710019 -2695,3354,6080,6081,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.571069346632598,7.254121326634186,0,8,4,-32.34046804233623,0,-9,-9,2019,7,0,20,37,1,0,0,8.659759450461706,8.659759450461706,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.33,53.46,10,1,1,0,0,9,8,3,1,1146.5,390096.8274911686,128990.716893965,385460.2304523238,119499.9117096522,1491.415154445606 -2695,3354,6081,6080,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,37,-4,-90.08076505104091,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.79,55.86,8.333333333333334,4,2,0,0,7,8,3,1,1146.5,390096.8274911686,128990.716893965,385460.2304523238,119499.9117096522,1491.415154445606 -2695,3355,6082,-9,6081,6080,1,0,28,0,0,0,1,1,-9,0,5,7.762925908895197,7.809579436633989,0,0,0,-1033.350339628635,-9,3,2,2019,4,0,48,0,1,0,0,6.869767801780089,6.869767801780089,0,0,0,1.278664631039925,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,8,3,1,224,-73858.14436741846,0,0,0,823.8588268667822 -2695,3356,6083,-9,6081,6080,1,0,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-972.1794816780118,-9,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,6.666666666666667,2,3,1,0,4,8,1,1,1681,136028.8053249141,0,0,0,-153.9385403818108 -2696,3357,6084,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,8.135567323843672,8.324530011214302,0,0,-985.2111602401615,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.130178254897181,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,706,632584.3505753478,361977.6903773337,276617.2274647212,0,2557.248011423379 -2697,3358,6085,6086,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.011504033478673,4.975696619911958,58,1,30.29800240925247,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,.1242232671135532,0,1,1,0,3.429939592920026,5.371118533565683,40.38,23.69,46.55,41.89,6.666666666666667,1,1,0,0,0,4,2,1,1565.5,438849.3967477843,175660.9039627736,169285.9482244995,0,1896.163303461244 -2697,3358,6086,6085,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,7.298839476982209,7.343729841168358,58,-1,23.95431890697167,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.027711998249287,6.899896683327288,46.55,41.89,40.38,23.69,8.333333333333334,1,1,0,0,0,4,2,1,1565.5,438849.3967477843,175660.9039627736,169285.9482244995,0,1896.163303461244 -2698,3359,6087,6088,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.345894535532238,9.543808131747626,8.583599699585946,6,2,68.13987917257944,0,2,2,2019,14,3,43,37,1,3,0,11.15589370279231,11.15589370279231,0,0,0,0,0,0,0,0,3.123659677125598,9.128206685973586,48.98,46.69,54.79,55.86,5,1,1,0,0,7,13,5,1,404.5,882886.3214973249,563504.9969239929,286093.147524543,0,5471.761983672925 -2698,3359,6088,6087,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.690360820097079,6.583243590521582,0,6,-2,-87.14942408086795,0,2,2,2019,5,0,6,4,1,0,0,18.77609840190909,18.77609840190909,0,0,0,0,0,0,0,0,6.460051452653286,0,54.79,55.86,48.98,46.69,8.333333333333334,1,1,0,0,6,13,5,1,404.5,882886.3214973249,563504.9969239929,286093.147524543,0,5471.761983672925 -2699,3360,6089,-9,6091,6090,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.696196816902,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,505.3333333333333,34648.6246731592,0,0,0,2210.995478157471 -2699,3360,6090,6091,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,7.835475625684692,7.436590512974519,0,8,1,-22.93029057000412,0,-9,-9,2019,10,0,27,28,1,1,0,9.322966368731944,9.322966368731944,0,0,0,0,0,1,1,0,.3209992251497446,0,49,58,12.63,51.31,7,1,1,0,0,1,12,3,0,505.3333333333333,34648.6246731592,0,0,0,2210.995478157471 -2699,3360,6091,6090,-9,-9,1,0,27,0,1,0,2,2,-9,0,2,6.996016149326682,6.886097101077918,0,8,-1,9.045699086181797,0,2,2,2019,35,12,20,20,1,12,0,6.702558529840022,6.702558529840022,0,0,0,0,0,1,1,0,0,0,12.63,51.31,49,58,1.666666666666667,1,1,0,0,10,12,3,0,505.3333333333333,34648.6246731592,0,0,0,2210.995478157471 -2700,3361,6092,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.22779717021179,7.678706777760234,0,0,0,-1014.739808741779,0,3,2,2019,6,0,24,24,1,0,0,8.168965775149717,8.168965775149717,0,0,0,0,0,0,0,0,0,0,50.58,53.69,-9,-9,10,1,1,0,0,2,6,3,1,611,-36314.09214728435,0,0,0,921.1307854773308 -2701,3362,6093,6094,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.505369269947506,8.435712684145974,0,38,1,-85.08684276659764,0,3,3,2019,6,0,40,40,1,0,0,18.49523950220932,18.49523950220932,0,0,0,0,7,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,8,4,4,1,723,700431.8397579028,536332.9938502687,0,0,2193.890431356237 -2701,3362,6094,6093,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,7,-1,-6.708326135886222,0,-9,-9,2019,6,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,1,0,9,4,4,1,723,700431.8397579028,536332.9938502687,0,0,2193.890431356237 -2702,3363,6095,6096,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.52066990882599,8.319481433196051,4.588951954915304,4,1,156.6503066467248,0,3,3,2019,11,0,45,45,1,0,0,11.02035486269755,11.02035486269755,0,0,0,0,0,0,0,0,6.796856673154367,4.422667686717696,50.66,47.59,46.84,58.02,6.666666666666667,1,1,0,0,8,9,4,0,288,282592.2880438243,207663.470700604,0,0,3064.599309538366 -2702,3363,6096,6095,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.587033511561372,7.17162190505406,0,4,-1,104.5121199141066,0,3,3,2019,15,4,20,20,1,4,0,9.320728879591515,9.320728879591515,0,0,0,0,0,0,0,0,0,0,46.84,58.02,50.66,47.59,3.333333333333333,1,1,0,0,8,9,4,0,288,282592.2880438243,207663.470700604,0,0,3064.599309538366 -2702,3364,6097,-9,6096,6095,1,0,27,0,0,0,1,1,-9,0,4,7.743230287866906,8.183070176560122,0,0,0,-1029.322633676906,-9,3,2,2019,14,2,46,0,1,2,1,6.52383366791658,6.52383366791658,0,0,0,0,0,0,0,0,0,0,43.48,60.97,-9,-9,3.333333333333333,1,1,0,1,8,9,3,0,562,-29757.65035497537,0,0,0,1174.09786222102 -2703,3365,6098,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.691111304591421,5.257009490484602,0,0,-1006.973810651847,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.394968597231755,45.81,49.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,319,172377.4675211894,0,28511.26188995167,0,304.8693341631915 -2704,3366,6099,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,8.274744106315168,8.156136809068263,0,0,0,-1085.08524083184,0,2,2,2019,27,12,40,40,1,12,0,9.085830440531099,9.085830440531099,0,0,0,0,2,0,0,0,0,0,29.93,23.01,-9,-9,0,1,1,0,1,11,5,4,1,179,366648.0504439786,71798.33897316236,103438.9135115862,7048.759160375549,1659.371997462791 -2705,3367,6100,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,0,6.064869907619785,6.429100094447683,0,0,-1060.732971486972,1,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.440597413096853,0,44.19,56.73,-9,-9,8.333333333333334,2,3,0,0,7,1,2,0,205,82096.96026731031,0,0,0,-87.86883580394186 -2706,3368,6101,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.945240649489983,6.662220209958914,0,0,-940.2783253474321,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.425804973224095,6.938476994059505,62.85,38.46,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,415,66896.37966577112,251242.9395957092,0,0,2013.431125117774 -2707,3369,6102,-9,6104,6103,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.9945449590556,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,2,0,836.6666666666666,-27622.85789716,0,0,0,549.1560307111083 -2707,3369,6103,6104,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,3.196863369598947,3.235247722951993,0,10,7,91.38086384350456,0,3,3,2019,6,0,25,25,1,0,0,.137159304999364,.137159304999364,0,0,0,0,0,1,1,0,0,0,47.27,49.64,47.05,49.9,5,1,1,0,0,8,11,2,0,836.6666666666666,-27622.85789716,0,0,0,549.1560307111083 -2707,3369,6104,6103,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,7.204766459931649,6.594149214248413,0,10,-7,-1.552367659909408,0,3,3,2019,10,0,16,19,1,0,0,8.15140693437027,8.15140693437027,0,0,0,0,0,1,1,0,0,0,47.05,49.9,47.27,49.64,5,1,1,0,0,13,11,2,0,836.6666666666666,-27622.85789716,0,0,0,549.1560307111083 -2708,3370,6105,-9,6106,6107,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.1039165106615,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1115.333333333333,192640.7865265467,204031.5967817923,144543.3873121337,33973.723217947,2922.729333218146 -2708,3370,6106,6107,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.607514127838174,7.198330215159444,0,7,-3,15.29249209539779,0,2,2,2019,20,8,31,31,1,8,0,6.787031103344172,6.787031103344172,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.33,53.46,6.666666666666667,1,1,0,0,8,12,4,1,1115.333333333333,192640.7865265467,204031.5967817923,144543.3873121337,33973.723217947,2922.729333218146 -2708,3370,6107,6106,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.370248613970201,8.388734070334984,0,7,3,12.49854333373539,0,2,3,2019,8,0,50,40,1,0,0,10.2661783582103,10.2661783582103,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.54,59.6,8.333333333333334,1,1,0,0,8,12,4,1,1115.333333333333,192640.7865265467,204031.5967817923,144543.3873121337,33973.723217947,2922.729333218146 -2709,3371,6108,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.604500730424057,8.295495528123826,0,0,0,-910.8200157949411,0,2,2,2019,8,0,38,40,1,0,0,16.26005950323359,16.26005950323359,0,0,0,0,0,0,0,0,1.438449833758606,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,550,209924.6902470924,96332.74533242606,278293.7304355202,107498.7904876622,1661.448924847227 -2710,3372,6109,6110,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.796431375032688,6.223289211895685,55,4,-15.41903320494108,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,5.448536554678441,5.914563627568242,50.16,40.41,57.59,19.86,8.333333333333334,1,1,0,0,0,6,2,1,2010.5,363197.8070728446,240300.6501181455,97826.64067514642,0,2132.748239338136 -2710,3372,6110,6109,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.014710652216441,7.06686351772517,55,-4,39.87494146746791,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,14.52465424958418,0,0,1,1,0,0,7.310330944423102,57.59,19.86,50.16,40.41,5,1,1,0,0,0,6,2,1,2010.5,363197.8070728446,240300.6501181455,97826.64067514642,0,2132.748239338136 -2711,3373,6111,6112,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.951051316811358,7.858693359185971,46,2,-82.1718386167026,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.537772673088425,51.25,50.81,52.6,52.88,8.333333333333334,1,1,0,0,0,9,3,1,1000.5,1189278.154792693,925474.4476240599,290690.1110176658,0,1832.818442693644 -2711,3373,6112,6111,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,46,-2,18.09337232434597,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,51.25,50.81,8.333333333333334,1,1,0,0,0,9,3,1,1000.5,1189278.154792693,925474.4476240599,290690.1110176658,0,1832.818442693644 -2712,3374,6113,-9,6116,6115,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.6550017108866,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,4,1,368,430826.2128203523,56856.74274347407,0,0,3023.70948381288 -2712,3374,6114,-9,6116,6115,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.5997327555033,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,368,430826.2128203523,56856.74274347407,0,0,3023.70948381288 -2712,3374,6115,6116,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.77707606145443,8.92494504966279,0,10,7,-2.213228559146868,0,2,1,2019,11,1,40,38,1,1,0,25.57135329544443,25.57135329544443,0,0,0,0,0,1,1,0,0,0,53.64,51.08,61.1,41.19,6.666666666666667,2,3,0,0,9,9,4,1,368,430826.2128203523,56856.74274347407,0,0,3023.70948381288 -2712,3374,6116,6115,-9,-9,1,0,31,1,2,0,1,1,-9,0,2,0,0,0,11,-7,-48.32983832578259,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.1,41.19,53.64,51.08,10,2,3,0,0,2,9,4,1,368,430826.2128203523,56856.74274347407,0,0,3023.70948381288 -2713,3375,6117,6118,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,7.917125053385548,7.778822830945705,0,5,8,129.2335119511475,0,2,2,2019,8,0,35,35,1,0,0,9.346241116282464,9.346241116282464,0,0,0,0,0,1,1,0,6.752206316373917,0,60.02,56.42,60.12,54.8,8.333333333333334,1,1,0,0,10,1,4,1,522,183630.1815259111,3411.58482126291,94523.23562794141,-15466.03429834411,3120.004676899541 -2713,3375,6118,6117,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.249092997230056,7.963314178361352,0,5,-8,-67.60178757046037,0,-9,-9,2019,6,0,37,37,1,0,0,10.07880484790642,10.07880484790642,0,0,0,0,2,1,1,0,0,0,60.12,54.8,60.02,56.42,10,1,1,0,0,10,1,4,1,522,183630.1815259111,3411.58482126291,94523.23562794141,-15466.03429834411,3120.004676899541 -2714,3376,6119,6120,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.967225517387799,8.799934583305477,0,5,1,96.6285226858619,0,-9,-9,2019,7,0,48,52,1,0,0,17.14724002050238,17.14724002050238,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,4,8,5,0,637.5,260496.6124943254,50121.51128393563,328282.4319171297,223265.1425993077,4194.793301427335 -2714,3376,6120,6119,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.586058280844359,8.527315632008829,0,5,-1,-4.349773073246418,0,2,2,2019,10,0,43,45,1,0,0,14.94149025550404,14.94149025550404,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6.666666666666667,1,1,0,0,7,8,5,0,637.5,260496.6124943254,50121.51128393563,328282.4319171297,223265.1425993077,4194.793301427335 -2715,3377,6121,-9,6122,6123,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.352985723848,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,3,0,535.6666666666666,70609.27144916111,23841.45522068994,0,0,1490.690451932951 -2715,3377,6122,6123,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,0,0,0,5,0,120.6228506400888,0,-9,-9,2019,4,0,0,12,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,48,59,8.333333333333334,1,1,0,0,5,5,3,0,535.6666666666666,70609.27144916111,23841.45522068994,0,0,1490.690451932951 -2715,3377,6123,6122,-9,-9,1,1,24,1,1,0,2,2,-9,0,4,8.159117071694491,7.999034166258517,0,5,0,-210.3840719184138,0,-9,-9,2019,11,0,48,41,1,2,0,7.060526345045887,7.060526345045887,0,0,0,0,0,1,1,0,0,0,48,59,52.4,52.91,7,1,1,0,0,1,5,3,0,535.6666666666666,70609.27144916111,23841.45522068994,0,0,1490.690451932951 -2716,3378,6124,6125,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,5.901461391170771,5.567974689850527,8,14,103.2544995373072,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.10440854165765,5.657644732695498,59.07,43.05,55.52,30.45,5,1,1,0,0,5,2,2,0,428,185462.2422745586,0,144422.7598055656,0,1223.23993164573 -2716,3378,6125,6124,-9,-9,1,0,51,0,0,0,3,3,-9,0,1,0,0,0,8,-14,-24.68063415573703,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.52,30.45,59.07,43.05,10,1,1,0,0,4,2,2,0,428,185462.2422745586,0,144422.7598055656,0,1223.23993164573 -2717,3379,6126,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.201054250302048,8.424447908420372,0,0,0,-915.8047275466106,0,-9,-9,2019,0,0,38,-9,1,0,0,13.65973618820795,13.65973618820795,0,0,0,0,0,0,0,0,0,0,65.8,47,-9,-9,10,4,2,0,0,12,8,4,1,522,54386.43332636872,-57349.04567111973,0,0,2218.426228471274 -2718,3380,6127,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,6.856362628183668,7.107366451123073,0,0,0,-1088.296968105477,0,-9,2,2019,17,6,16,16,1,6,0,6.486815056818608,6.486815056818608,0,0,0,0,0,1,0,1,0,0,41.82,57.72,-9,-9,1.666666666666667,4,2,0,0,12,12,2,0,908.5,-96215.46205639918,74756.38786770064,0,0,1111.749728844364 -2718,3380,6128,-9,6127,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.537953494746,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,908.5,-96215.46205639918,74756.38786770064,0,0,1111.749728844364 -2719,3381,6129,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.461621368282744,8.560204859671781,0,0,0,-1043.910428436154,0,3,3,2019,6,0,35,40,1,0,0,12.67066079393643,12.67066079393643,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,12,13,5,1,380,586301.3357563261,387925.389274294,53088.63689889641,0,2039.833456783076 -2720,3382,6130,6131,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,9.396276295630143,9.002018622199706,0,33,-6,-43.33155662540025,0,3,-9,2019,21,8,23,21,1,8,0,44.58124273102349,44.58124273102349,0,0,0,0,0,1,1,0,7.166933779014485,0,42.39,52.15,51,49,8.333333333333334,1,1,0,0,6,4,5,1,318,1054605.293496115,318059.10624532,1241384.835899224,426457.4915268322,5514.591980981515 -2720,3382,6131,6130,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.143613008363015,8.458138240909269,0,7,6,11.55117823775339,0,-9,-9,2019,10,0,25,28,1,1,0,17.17561282999721,17.17561282999721,0,0,0,0,0,1,1,0,0,0,51,49,42.39,52.15,7,1,1,0,0,1,4,5,1,318,1054605.293496115,318059.10624532,1241384.835899224,426457.4915268322,5514.591980981515 -2721,3383,6132,6133,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,4.812120948963544,5.175601239307134,8,0,41.18843742922216,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.722151277029425,5.263398665936314,53.23,55.33,57.73,54.53,8.333333333333334,1,1,0,0,0,1,4,1,231.5,1436689.953926233,1227758.399505281,230325.0025065306,0,3579.426172276904 -2721,3383,6133,6132,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.281601894598166,8.331757327843667,49,0,32.46007225647496,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.270796737020125,8.440825675904215,57.73,54.53,53.23,55.33,8.333333333333334,1,1,0,0,0,1,4,1,231.5,1436689.953926233,1227758.399505281,230325.0025065306,0,3579.426172276904 -2722,3384,6134,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.805340987948128,7.148621696751192,0,0,-1177.131068994978,0,-9,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.863305676930137,46.93,15.34,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,293,238747.577431952,182616.4815812313,0,0,1134.912588500804 -2723,3385,6135,6136,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,45,3,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.073531320661865,0,60.28,9.43,41.17,59.31,8.333333333333334,1,1,0,0,0,11,1,1,968,183560.2400693477,0,290976.8659665884,0,1535.508366686746 -2723,3385,6136,6135,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,45,-3,0,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4961319142009,0,41.17,59.31,60.28,9.43,8.333333333333334,1,1,0,0,8,11,1,1,968,183560.2400693477,0,290976.8659665884,0,1535.508366686746 -2724,3386,6137,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,8.491666842749186,8.385100606186317,0,0,-901.9627015935691,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.383736819417637,8.169156095857838,57.03,45.36,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,2208,912270.3426468953,344580.2497382282,193918.8265408247,0,2765.924853688051 -2725,3387,6138,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,8.318827876169866,8.154960245273589,0,0,0,-961.2649176478127,0,-9,-9,2019,6,0,38,37,1,0,0,11.36419307559384,11.36419307559384,0,0,0,0,0,0,0,0,5.636548539448457,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,7,4,0,1172,310754.6269897668,52533.87823990139,0,0,1601.620078628528 -2726,3388,6139,6140,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.52299547326561,8.386834166234424,0,6,-1,-.0920131278637185,0,2,3,2019,8,0,28,28,1,0,0,25.46459849499222,25.46459849499222,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.91,54.79,8.333333333333334,1,1,0,0,7,11,5,1,321,2037125.104524503,1611148.046364528,259655.6277338728,0,4171.754843788806 -2726,3388,6140,6139,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.513478990458268,8.616030101687873,0,6,1,81.36311528804566,0,2,2,2019,10,0,48,42,1,0,0,15.31927849463001,15.31927849463001,0,0,0,0,0,0,0,0,3.667526306859488,0,50.91,54.79,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,321,2037125.104524503,1611148.046364528,259655.6277338728,0,4171.754843788806 -2726,3389,6141,-9,6139,6140,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-973.8386817318311,0,1,2,2019,15,5,0,46,3,5,1,0,0,0,0,0,0,0,0,0,0,5.287942167215886,0,41.21,42.16,-9,-9,3.333333333333333,1,1,1,0,2,11,1,1,229,-55731.21489979822,0,0,0,-190.5351793397989 -2727,3390,6142,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,0,0,0,0,-975.7623821295703,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,6.815712384134033,0,57.06,57.76,-9,-9,6.666666666666667,1,1,1,0,10,2,1,1,478,128561.2868538065,-113949.737446319,310475.2904265815,0,932.804770157802 -2728,3391,6143,-9,6145,6144,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.924796655668,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1403,619710.3003669052,146440.9582591074,421164.4136358162,19663.2912025558,4126.646212307296 -2728,3391,6144,6145,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.976872718787371,8.841493368776336,0,22,0,-26.48989547292033,0,1,2,2019,12,0,35,35,1,0,0,20.9655430262685,20.9655430262685,0,0,0,0,0,1,1,0,3.602492705314887,0,41.76,59.08,51.24,58.84,6.666666666666667,1,1,0,0,10,7,5,1,1403,619710.3003669052,146440.9582591074,421164.4136358162,19663.2912025558,4126.646212307296 -2728,3391,6145,6144,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.337446795111072,8.323059000702409,0,20,0,-3.410382703020303,0,2,1,2019,10,0,24,24,1,0,0,23.25159789506498,23.25159789506498,0,0,0,0,0,1,1,0,3.175905738415702,0,51.24,58.84,41.76,59.08,8.333333333333334,1,1,0,0,10,7,5,1,1403,619710.3003669052,146440.9582591074,421164.4136358162,19663.2912025558,4126.646212307296 -2728,3391,6146,-9,6145,6144,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.854161175555,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1403,619710.3003669052,146440.9582591074,421164.4136358162,19663.2912025558,4126.646212307296 -2729,3392,6147,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,3.468102063601215,3.965250578167669,0,0,-733.1304372717523,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.4094257760347647,3.498925640625971,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,501,187749.6949947952,0,0,0,328.6287439926245 -2730,3393,6148,6149,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.945602202033237,7.77745893295811,0,46,-7,-18.18994223703135,0,3,3,2019,9,0,37,37,1,0,0,7.340340118842923,7.340340118842923,0,0,0,0,0,1,1,0,5.214145090446475,0,51.83,57.2,44.81,43.04,8.333333333333334,1,1,0,0,10,7,3,1,689,925953.6119466769,617788.3683951625,199650.4759024602,0,2034.053778736968 -2730,3393,6149,6148,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.30782371230517,5.884683695143342,46,7,65.91540849371881,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.801825640277368,6.359966755512247,44.81,43.04,51.83,57.2,3.333333333333333,1,1,0,0,4,7,3,1,689,925953.6119466769,617788.3683951625,199650.4759024602,0,2034.053778736968 -2731,3394,6150,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.901077440076999,8.10289693252485,0,0,0,-1024.766795314662,0,-9,-9,2019,5,0,39,40,1,0,0,9.617320002875818,9.617320002875818,0,0,0,0,7,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,12,4,0,2609,0,0,0,0,1404.169024774458 -2731,3395,6151,-9,6150,-9,1,0,22,0,0,0,2,2,-9,0,4,7.524573508920513,7.492558003956736,0,0,0,-964.606388007785,-9,2,-9,2019,13,1,37,0,1,1,1,7.066341483290646,7.066341483290646,0,0,0,0,0,0,0,0,0,0,42.21,55.17,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,2781,-129496.6681950377,0,0,0,1074.05179467247 -2732,3396,6152,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.646528521104623,7.31588311248687,0,0,0,-977.8055099641829,0,-9,-9,2019,6,0,50,56,1,0,0,4.511779185740014,4.511779185740014,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,1610,0,0,0,0,942.9584752347639 -2733,3397,6153,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.850644939517006,8.062679715668105,0,0,0,-963.6124097957454,0,3,2,2019,7,0,37,39,1,0,0,10.8302708926385,10.8302708926385,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,1862,105520.3067661492,-60373.11037574564,0,0,1468.147450857724 -2734,3398,6154,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.431803329799,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.99,30.49,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,62,85414.63357992846,0,0,0,1359.173836335042 -2735,3399,6155,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,0,5.100927230920769,4.993007121697893,0,0,-1021.616045482054,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,4.887711592382616,0,27.73,64.27,-9,-9,6.666666666666667,1,1,1,1,0,8,2,0,295.5,18604.34719799579,0,0,0,1473.08823423166 -2735,3399,6156,-9,6155,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-798.3561383167628,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,295.5,18604.34719799579,0,0,0,1473.08823423166 -2736,3400,6157,-9,6158,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.452799643675,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,776.75,118998.5081934361,0,81753.96849771685,52556.7212462918,1228.054278688867 -2736,3400,6158,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,0,0,0,0,0,-924.2005686166102,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,10,1,1,1,0,0,4,1,0,776.75,118998.5081934361,0,81753.96849771685,52556.7212462918,1228.054278688867 -2736,3400,6159,-9,6158,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1102.08932213672,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,4,1,0,776.75,118998.5081934361,0,81753.96849771685,52556.7212462918,1228.054278688867 -2736,3400,6160,-9,6158,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.454748173929,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,1,0,776.75,118998.5081934361,0,81753.96849771685,52556.7212462918,1228.054278688867 -2737,3401,6161,6163,-9,-9,1,1,32,1,2,0,3,3,-9,0,5,8.62062562581275,8.899497361632179,0,4,3,-127.6427029740772,0,-9,-9,2019,5,0,55,22,1,0,0,10.70910693972943,10.70910693972943,0,0,0,0,0,1,1,0,0,0,57.06,57.76,43.09,61.58,10,1,1,0,0,6,12,4,0,763.25,280012.3572381509,272265.8375578728,236920.0092512193,114105.6820176085,3186.345806767161 -2737,3401,6162,-9,6163,6161,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.5360296401316,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,763.25,280012.3572381509,272265.8375578728,236920.0092512193,114105.6820176085,3186.345806767161 -2737,3401,6163,6161,-9,-9,1,0,29,1,2,0,1,1,-9,0,5,7.344160325381947,6.938132344806128,0,4,-3,-46.04683071917045,0,3,2,2019,8,0,19,18,1,0,0,8.133260042145539,8.133260042145539,0,0,0,0,0,1,1,0,0,0,43.09,61.58,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,0,763.25,280012.3572381509,272265.8375578728,236920.0092512193,114105.6820176085,3186.345806767161 -2737,3401,6164,-9,6163,6161,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.764372500315,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,763.25,280012.3572381509,272265.8375578728,236920.0092512193,114105.6820176085,3186.345806767161 -2738,3402,6165,6166,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,26,-6,-37.62899260247431,0,3,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.1188831194938627,0,15.57,35.04,57.33,42.25,5,1,1,0,0,0,5,2,1,3082.5,53226.64737036868,0,0,0,424.9054321984121 -2738,3402,6166,6165,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,2.194545767786428,2.209940679373375,0,25,6,115.2617399380941,0,3,2,2019,11,0,9,9,1,0,0,.103390084587576,.103390084587576,0,0,0,0,42,1,1,0,0,0,57.33,42.25,15.57,35.04,5,1,1,0,0,9,5,2,1,3082.5,53226.64737036868,0,0,0,424.9054321984121 -2739,3403,6167,6168,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,2.156859872711778,1.717082698014162,9,3,9.43256699697065,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.938723642501911,1.698055962022576,48.7,40.16,46.09,49.17,6.666666666666667,1,1,0,0,3,2,5,1,657,86868.78596654961,337.0434601992492,118991.1988447069,22799.95864858462,3346.731874278677 -2739,3403,6168,6167,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.682999816411392,8.977532985343505,7.027927075242865,9,-3,-133.727651699522,0,3,3,2019,17,5,39,37,1,5,0,21.07030556329315,21.07030556329315,0,0,0,0,0,1,1,0,0,7.111042360866263,46.09,49.17,48.7,40.16,3.333333333333333,1,1,0,0,12,2,5,1,657,86868.78596654961,337.0434601992492,118991.1988447069,22799.95864858462,3346.731874278677 -2740,3404,6169,6171,-9,-9,1,1,64,0,1,0,3,3,-9,0,4,8.388208579847847,8.348718108015753,0,6,9,15.09312131791386,0,-9,-9,2019,9,0,37,40,1,0,0,14.94259041318238,14.94259041318238,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.79,30.5,10,3,4,0,0,9,8,4,1,689.6666666666666,592163.653847815,74713.10446145239,433065.7089871109,0,2103.27178010418 -2740,3404,6170,-9,6171,6169,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1075.724838064366,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,689.6666666666666,592163.653847815,74713.10446145239,433065.7089871109,0,2103.27178010418 -2740,3404,6171,6169,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,7.385705548924446,7.205239103378513,0,19,0,110.0247887118493,0,2,-9,2019,6,0,30,32,1,0,0,5.430882952026992,5.430882952026992,0,0,0,0,0,1,1,0,0,0,57.79,30.5,57.16,56.15,10,3,4,0,0,9,8,4,1,689.6666666666666,592163.653847815,74713.10446145239,433065.7089871109,0,2103.27178010418 -2740,3405,6172,-9,6171,6169,1,1,29,0,1,0,1,1,-9,0,4,8.066132926677042,8.13790104232301,0,0,0,-1082.43529088592,0,2,3,2019,10,0,35,35,1,1,1,11.72070040125558,11.72070040125558,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,143,-206935.1545493871,0,0,0,1530.175813373062 -2740,3406,6173,-9,6171,6169,1,1,24,0,1,0,2,2,-9,0,4,8.175877996182814,8.08156914839004,0,0,0,-974.6031945980344,0,2,3,2019,10,0,35,37,1,1,1,12.86877224346985,12.86877224346985,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,200,-6562.98753850992,0,0,0,1588.680520623142 -2741,3407,6174,-9,6176,-9,1,0,24,0,1,0,2,2,0,0,4,0,0,0,0,0,-971.2083828153712,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,2,0,0,0,5,1,0,132,81956.73387695484,0,0,0,0 -2741,3408,6175,-9,6176,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1069.895463682988,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,2,0,318.5,180024.1637007468,-8299.406030306534,0,0,1522.235203171609 -2741,3408,6176,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.270046335206884,7.314452525734996,0,0,0,-1007.581146989159,0,2,2,2019,9,0,25,25,1,0,0,6.642245509159461,6.642245509159461,0,0,0,0,0,1,1,0,0,0,57.06,29.28,-9,-9,8.333333333333334,4,2,0,0,8,5,2,0,318.5,180024.1637007468,-8299.406030306534,0,0,1522.235203171609 -2742,3409,6177,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-829.1579789196711,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.469283887644951,0,49.47,41.45,-9,-9,10,1,1,0,0,7,12,1,1,527,32861.41790156692,0,62503.87028397844,0,1260.518973344124 -2743,3410,6178,6179,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.773911935015179,7.724215993595364,0,7,0,-11.27480350810333,0,-9,-9,2019,12,3,38,38,1,3,0,6.321825509769051,6.321825509769051,0,0,0,0,0,0,0,0,0,0,45.98,56.3,37.93,54.93,6.666666666666667,1,1,0,0,4,2,4,0,1284,127221.9959431696,96432.73502697799,0,0,2419.395507088509 -2743,3410,6179,6178,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.984816465064985,7.850464319060521,0,7,0,79.07670858761688,0,3,3,2019,17,4,38,38,1,4,0,9.038315817263854,9.038315817263854,0,0,0,0,0,0,0,0,0,0,37.93,54.93,45.98,56.3,1.666666666666667,1,1,0,1,6,2,4,0,1284,127221.9959431696,96432.73502697799,0,0,2419.395507088509 -2744,3411,6180,6181,-9,-9,1,1,58,0,0,0,3,3,-9,1,4,0,0,0,36,5,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,51,54,8,2,3,0,0,0,8,1,0,185,141527.4852461526,126585.5085047454,0,0,1101.168381004738 -2744,3411,6181,6180,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,7,-5,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,2,3,0,0,0,8,1,0,185,141527.4852461526,126585.5085047454,0,0,1101.168381004738 -2744,3412,6182,-9,6181,6180,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.373977880279,0,2,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,-9,-9,6.666666666666667,2,3,1,0,6,8,1,0,698,175964.6632647727,0,0,0,239.6132728233086 -2744,3413,6183,-9,6181,6180,1,1,24,0,0,0,2,2,1,0,4,7.182513231786888,7.060034225221263,0,0,0,-1013.974639785427,-9,2,3,2019,10,0,40,0,1,1,1,4.16890040610494,4.16890040610494,0,0,0,0,0,1,1,0,.1285522899821412,0,49,58,-9,-9,7,2,3,0,0,1,8,3,0,401,-147998.3735195776,0,0,0,466.1690432423065 -2745,3414,6184,-9,6185,-9,1,0,16,0,1,1,2,0,-9,0,3,0,5.833331242435392,5.533217729550095,0,0,-933.3673568673753,-9,3,-9,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,5.590431224557216,0,41.82,57.72,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,2472.5,37495.1341645809,0,0,0,2160.876296146347 -2745,3414,6185,-9,-9,-9,1,0,51,0,1,0,3,3,-9,1,1,0,0,0,0,0,-985.0131089910185,0,3,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.46,37.05,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,2472.5,37495.1341645809,0,0,0,2160.876296146347 -2746,3415,6186,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.844257981201458,7.526056251495182,0,0,0,-973.8108322730116,0,2,2,2019,10,0,30,35,1,0,0,10.60700797890611,10.60700797890611,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,327,205657.6469082946,108393.3658933041,0,0,1399.241028387437 -2747,3416,6187,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.68035841491454,6.644998211564056,0,0,-970.0388547057917,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,.1087201349188761,6.702599516176106,43.45,38.38,-9,-9,5,1,1,0,0,4,13,2,1,208,281409.7376771453,198873.952596527,181909.9596614665,0,1050.165307023535 -2748,3417,6188,6189,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,8.954973606549627,9.213470185739084,0,9,-2,86.36466124149369,0,2,1,2019,10,0,40,40,1,0,0,36.16403223829501,36.16403223829501,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.4,43.72,8.333333333333334,1,1,0,0,10,7,5,1,792.5,981548.4695629546,21158.96037629419,737725.2618279755,32933.52243554735,4689.524935014688 -2748,3417,6189,6188,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.37166712203908,8.233596226916239,0,9,2,-38.92705718123178,0,2,1,2019,10,0,35,45,1,0,0,11.04791014402104,11.04791014402104,0,0,0,0,0,0,0,0,2.937645675582538,0,51.4,43.72,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,792.5,981548.4695629546,21158.96037629419,737725.2618279755,32933.52243554735,4689.524935014688 -2749,3418,6190,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.602692661477303,7.670348123546417,0,0,0,-953.6956583695172,0,3,3,2019,12,0,30,32,1,0,0,8.972596769707703,8.972596769707703,0,0,0,2.967764677309571,0,0,0,0,1.895359662435526,0,43.37,57.28,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,1614,107808.6769537886,204459.9738336348,0,0,787.0014497347606 -2750,3419,6191,-9,6192,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.3742711200609,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,1213,0,0,0,0,821.8453862478382 -2750,3419,6192,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1107.649614709859,0,2,2,2019,21,9,0,16,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,44.45,28.61,-9,-9,3.333333333333333,1,1,1,1,7,1,1,0,1213,0,0,0,0,821.8453862478382 -2751,3420,6193,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.174570182193717,8.292598345686187,0,0,-1049.162133089824,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.890986762094192,8.384549458186646,59.12,36.62,-9,-9,6.666666666666667,1,1,0,0,0,1,4,1,700,1166108.369403708,688473.3024759422,141463.9332942184,0,2849.812336818492 -2752,3421,6194,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.97769102900473,7.739858631450972,0,0,0,-1170.60304862671,0,2,2,2019,6,0,35,35,1,0,0,8.39073200019361,8.39073200019361,0,0,0,0,2,1,1,0,0,0,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,913,74706.69079502305,28467.40513627831,0,0,1222.697744602506 -2753,3422,6195,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-952.9140240320645,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,0,1,2.55865932605437,0,48.03,21.48,-9,-9,1.666666666666667,1,1,1,0,0,11,1,1,605,0,0,0,0,1113.43660289462 -2754,3423,6196,6197,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,53,3,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.16,44.66,49.14,35.82,5,2,3,0,1,3,8,2,1,1811.5,589405.8772285612,0,582846.8909137953,0,521.1279964095592 -2754,3423,6197,6196,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,0,0,53,-3,0,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,35.82,38.16,44.66,7,2,3,0,0,0,8,2,1,1811.5,589405.8772285612,0,582846.8909137953,0,521.1279964095592 -2755,3424,6198,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.637891115696487,6.515807177832596,0,0,-932.6043087575124,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.427433641368117,0,57.16,56.15,-9,-9,10,1,1,0,0,0,5,2,0,1777,-162746.2179765508,0,0,0,315.993783784761 -2756,3425,6199,-9,6200,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.5642973768892,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,2457.5,68871.10211700766,3481.319242529364,130541.1215756678,96009.30576826747,2909.012717365774 -2756,3425,6200,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.404987801777358,8.664929068641079,6.1049476379028,0,0,-1070.388346528773,0,2,3,2019,8,0,30,32,1,0,0,17.52264473161176,17.52264473161176,0,0,0,0,0,1,1,0,6.781634580694582,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,2457.5,68871.10211700766,3481.319242529364,130541.1215756678,96009.30576826747,2909.012717365774 -2757,3426,6201,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-872.0375541123057,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.03,48.69,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,261,-197971.5474881755,0,0,0,1238.867573729493 -2757,3427,6202,-9,6201,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-972.291297023971,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,71.5,1,1,0,0,0,37.96,24.76,-9,-9,5,1,1,0,0,0,11,1,0,661,158789.667510816,0,0,0,58.33015494166702 -2757,3428,6203,-9,6201,-9,1,0,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.0839157663698,1,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,369,178743.9505212924,0,0,0,0 -2758,3429,6204,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.878852338388551,7.665703251168881,0,0,0,-991.7831045748314,0,3,2,2019,1,0,35,35,1,0,0,10.27741695490267,10.27741695490267,0,0,0,0,7,0,0,0,3.872101046676786,0,47.62,56.48,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,930,256333.9052422735,247900.96623746,56822.67078386386,-18992.46754590613,2105.56551422754 -2759,3430,6205,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.335141117394986,9.384704217208869,0,0,0,-1080.78736161255,0,-9,2,2019,6,0,50,44,1,0,0,24.11866162826766,24.11866162826766,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,592,26148.29114429274,7245.786118112062,83656.96273560963,84387.63107586949,3266.803426596215 -2760,3431,6206,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.609574374979172,6.685207521620304,0,0,-1120.363628166174,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.909488427725853,6.439458957357213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,750,378594.1393292863,0,192459.7764755946,0,1687.462714534117 -2761,3432,6207,6208,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.154968808257212,7.980706752683915,0,8,6,-22.52899324392497,0,3,3,2019,15,3,38,38,1,3,0,8.957387674368091,8.957387674368091,0,0,0,0,0,0,0,0,0,0,49.92,52.49,58.15,50.21,6.666666666666667,1,1,0,0,8,13,5,1,742.5,709032.6364704843,709690.2358019531,0,0,2753.204532323389 -2761,3432,6208,6207,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.555807451140877,8.535213300757754,0,8,-6,50.47100763689252,0,3,3,2019,11,0,38,38,1,0,0,16.30554995376385,16.30554995376385,0,0,0,0,0,0,0,0,0,0,58.15,50.21,49.92,52.49,8.333333333333334,1,1,0,0,8,13,5,1,742.5,709032.6364704843,709690.2358019531,0,0,2753.204532323389 -2761,3433,6209,-9,6208,6207,1,1,21,0,0,0,2,2,-9,0,4,7.809130180207006,7.75016955053425,0,0,0,-1207.241504467775,0,1,2,2019,17,6,42,42,1,6,1,6.696349498624649,6.696349498624649,0,0,0,0,0,0,0,0,0,0,51.33,53.17,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,235,156157.4523881038,0,0,0,896.379452398324 -2762,3434,6210,6211,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.604593605463183,6.36755862472552,41,10,3.833437693829566,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.389688223873129,51,48,48,49,7,2,3,0,0,0,8,2,0,527,740426.0408046062,312889.9753235905,398409.1438316429,0,1547.203743681142 -2762,3434,6211,6210,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,41,-10,9.802907932522903,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,49,51,48,7,2,3,0,0,0,8,2,0,527,740426.0408046062,312889.9753235905,398409.1438316429,0,1547.203743681142 -2762,3435,6212,-9,6211,6210,1,0,28,0,0,0,1,1,-9,0,3,9.090580976018709,9.045612430318553,0,0,0,-951.6487089875213,0,1,1,2019,10,0,41,0,1,0,1,27.29758075434638,27.29758075434638,0,0,0,0,2,1,1,0,0,0,37.36,54.65,-9,-9,6.666666666666667,2,3,0,0,9,8,5,0,3756,-28360.55948544212,-3655.195744345092,0,0,3596.539771646725 -2762,3436,6213,-9,6211,6210,1,1,23,0,0,0,1,1,-9,0,5,7.7751764291908,8.050600510832748,0,0,0,-1042.690357959208,0,1,2,2019,23,7,80,37,1,7,1,3.813968806298781,3.813968806298781,0,0,0,0,0,1,1,0,0,0,34.53,54.61,-9,-9,5,2,3,0,0,2,8,4,0,224,-91716.28395017433,49149.94245631328,0,0,1110.727570618704 -2763,3437,6214,6215,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.264957106415139,8.253646737112819,0,6,-1,-125.217202175846,0,2,2,2019,10,0,50,43,1,1,0,7.126171407829788,7.126171407829788,0,0,0,0,0,1,1,0,3.956769214895163,0,51,54,47.68,61.82,8,1,1,0,0,1,11,3,1,1028.5,88005.25010773854,129128.3635530509,106358.631583288,35870.80072523472,1812.002435813308 -2763,3437,6215,6214,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,0,0,6,1,20.57490120042201,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.68,61.82,51,54,5,1,1,1,1,0,11,3,1,1028.5,88005.25010773854,129128.3635530509,106358.631583288,35870.80072523472,1812.002435813308 -2764,3438,6216,6217,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,33,5,0,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,17.76,47.32,52.7,3.333333333333333,2,3,0,1,3,4,1,1,1118.5,21397.89875838011,0,0,0,520.1850155182963 -2764,3438,6217,6216,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,33,-5,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,47.32,52.7,41.69,17.76,8.333333333333334,2,3,0,1,0,4,1,1,1118.5,21397.89875838011,0,0,0,520.1850155182963 -2765,3439,6218,6219,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,0,0,23,7,52.93768960048504,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.33,38.36,59.53,56.44,6.666666666666667,1,1,0,0,7,8,5,1,412,1849764.081944618,1224635.443384221,612217.35187668,0,3294.277325407137 -2765,3439,6219,6218,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.278733664197539,9.275026165331543,0,23,-7,99.24329735691377,0,-9,-9,2019,7,0,78,43,1,0,0,13.62595286609843,13.62595286609843,0,0,0,0,7,0,0,0,0,0,59.53,56.44,40.33,38.36,10,1,1,0,0,7,8,5,1,412,1849764.081944618,1224635.443384221,612217.35187668,0,3294.277325407137 -2765,3440,6220,-9,6219,6218,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.4582064685644,1,1,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.701747686973867,0,48,59,-9,-9,7,4,2,0,0,0,8,1,1,514,0,0,0,0,47.76792329309715 -2766,3441,6221,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.867881152589167,8.868028033950068,0,0,0,-1126.416224945542,0,2,-9,2019,17,6,48,48,1,6,1,16.35415531112769,16.35415531112769,0,0,0,0,0,1,1,0,4.052453234080142,0,39.79,63.29,-9,-9,5,1,1,0,0,4,8,5,1,471,-71417.58155624688,-69225.6119443096,0,0,3217.745814508667 -2767,3442,6222,6223,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.003995870587108,8.574544922563328,7.934660432952099,2,4,-72.58447771269877,-9,-9,-9,2019,10,0,40,0,1,1,0,6.634609257813602,6.634609257813602,0,0,0,0,0,0,0,0,6.510847284311342,8.220702106777706,50,49,44.04,26.14,7,2,3,0,0,1,8,4,0,431.5,1090715.8072885,685920.6651268111,397018.8963964551,2023.043341961466,2649.626206233792 -2767,3442,6223,6222,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-4,21.34251423110504,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,44.04,26.14,50,49,8.333333333333334,2,3,1,1,3,8,4,0,431.5,1090715.8072885,685920.6651268111,397018.8963964551,2023.043341961466,2649.626206233792 -2768,3443,6224,6225,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.121977278728176,9.088339491544975,0,18,1,-131.3509328602475,-9,-9,-9,2019,9,0,61,0,1,0,0,19.05799698197083,19.05799698197083,0,0,0,0,0,0,0,0,0,0,51.41,56.15,48.87,58.55,8.333333333333334,1,1,0,0,7,13,5,1,1230.666666666667,633747.0017645668,363636.8213094302,362588.9937665702,93127.54173086362,4673.745313356744 -2768,3443,6225,6224,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.483898653766351,7.99635164709443,0,18,-1,71.82124704143637,-9,-9,-9,2019,12,3,29,0,1,3,0,17.40946625660263,17.40946625660263,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.41,56.15,8.333333333333334,1,1,0,0,9,13,5,1,1230.666666666667,633747.0017645668,363636.8213094302,362588.9937665702,93127.54173086362,4673.745313356744 -2768,3443,6226,-9,6225,6224,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-959.4919469335362,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,10,1,1,0,0,0,13,5,1,1230.666666666667,633747.0017645668,363636.8213094302,362588.9937665702,93127.54173086362,4673.745313356744 -2768,3444,6227,-9,6225,6224,1,1,20,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1052.149029934347,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,1,1,839,127492.2206036336,0,0,0,0 -2769,3445,6228,6229,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.673182861005838,8.652562684842628,0,8,4,74.2111926553697,0,3,3,2019,13,1,40,39,1,1,0,17.73177127463536,17.73177127463536,0,0,0,0,0,1,1,0,0,0,49.44,49.06,38.75,53.76,3.333333333333333,1,1,0,0,9,12,5,1,568.5,420085.8968726831,96737.63931411183,267211.5289490249,0,3551.264736475805 -2769,3445,6229,6228,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.408982656812388,7.344641453251343,0,8,-4,-83.38293887413994,0,3,2,2019,20,8,35,35,1,8,0,4.987884394138359,4.987884394138359,0,0,0,0,0,1,1,0,0,0,38.75,53.76,49.44,49.06,3.333333333333333,1,1,0,0,9,12,5,1,568.5,420085.8968726831,96737.63931411183,267211.5289490249,0,3551.264736475805 -2770,3446,6230,6231,-9,-9,1,1,57,0,0,0,2,2,-9,1,3,0,0,0,7,-5,0,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.85,39.38,40.98,22.05,6.666666666666667,1,1,0,0,0,12,2,0,716,68906.47733024822,0,75393.95142032286,44640.68938605204,2367.546976681625 -2770,3446,6231,6230,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,22,5,0,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.98,22.05,51.85,39.38,8.333333333333334,1,1,0,0,0,12,2,0,716,68906.47733024822,0,75393.95142032286,44640.68938605204,2367.546976681625 -2771,3447,6232,-9,6233,-9,1,0,2,1,0,1,3,0,-9,0,4,0,0,0,0,0,-992.1540324163462,-9,-9,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1113,19665.87260164843,0,0,0,822.2642275884139 -2771,3447,6233,-9,-9,-9,1,0,42,1,0,0,2,2,-9,0,2,0,0,0,0,0,-943.2937448351798,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.17,48.24,-9,-9,6.666666666666667,1,1,1,0,2,1,1,0,1113,19665.87260164843,0,0,0,822.2642275884139 -2772,3448,6234,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.717784903599041,7.465513642953305,0,0,-1053.344251312269,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.568073110195564,6.866066648070845,55.04,38.68,-9,-9,5,1,1,0,0,4,9,2,1,1422,428686.541692671,236675.9323380493,0,0,1441.961103741289 -2773,3449,6235,6237,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.008049874346796,6.843256080482164,0,6,-5,46.71578814797079,0,3,3,2019,9,1,16,16,1,1,0,7.212219863941328,7.212219863941328,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.23999999999999,44.83,10,1,1,0,0,8,9,3,0,531.5,943669.8908883962,94555.42137090587,510718.3571158391,52580.37787183969,2473.585304920363 -2773,3449,6236,-9,6235,6237,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.925074983279,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,531.5,943669.8908883962,94555.42137090587,510718.3571158391,52580.37787183969,2473.585304920363 -2773,3449,6237,6235,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,8.383287609652625,8.137431074876075,0,6,5,22.05081393019568,0,2,-9,2019,7,0,48,53,1,0,0,11.10085507054015,11.10085507054015,0,0,0,0,0,1,1,0,0,0,64.23999999999999,44.83,57.16,56.15,10,1,1,0,0,8,9,3,0,531.5,943669.8908883962,94555.42137090587,510718.3571158391,52580.37787183969,2473.585304920363 -2773,3449,6238,-9,6235,6237,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.882866104754,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,3,0,531.5,943669.8908883962,94555.42137090587,510718.3571158391,52580.37787183969,2473.585304920363 -2774,3450,6239,-9,6241,6242,1,0,26,0,0,0,2,2,-9,0,4,9.693299970090788,9.70808167368077,0,0,0,-1066.990797485522,0,2,2,2019,9,2,50,30,1,2,1,47.56315076249472,47.56315076249472,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,443,104037.3396866665,84773.65379127309,0,0,16907.86432564836 -2774,3451,6240,-9,6241,6242,1,1,21,0,0,0,2,2,-9,0,4,7.345666053057512,7.499584648097247,0,0,0,-942.5947613325859,0,2,2,2019,8,0,45,20,1,0,1,4.015573093010561,4.015573093010561,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,4,3,1,675,-38444.14746126992,-66276.07061296151,0,0,789.8140560386524 -2774,3452,6241,6242,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.640689859916373,6.538894072563454,0,5,-1,-81.31915427134604,0,-9,-9,2019,12,2,30,24,1,2,0,3.054574861197461,3.054574861197461,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,9,4,5,1,785,3344007.971591253,190049.5669894818,686368.6489905573,0,3013.780581974147 -2774,3452,6242,6241,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.701866676909326,8.951066938423097,0,5,1,32.52052341199914,0,-9,-9,2019,12,0,37,40,1,0,0,19.8989574936248,19.8989574936248,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,4,5,1,785,3344007.971591253,190049.5669894818,686368.6489905573,0,3013.780581974147 -2775,3453,6243,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.183303901904364,7.339323854644792,0,0,-1076.228326870616,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,2.941065390938282,0,21.41319200649444,0,1,1,0,0,7.352666609465618,39.38,43.19,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,592,619701.3969723855,-77849.15763374873,216200.3881833982,0,1230.796043313569 -2776,3454,6244,6245,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.511515449172173,7.525407774251017,41,3,-39.1044727293546,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.81060773370171,7.461534797028127,59.86,37.35,60.12,54.8,10,1,1,0,0,7,11,3,1,387,883732.7079907155,522286.348231706,269904.5138605741,13944.34963067596,1173.800097431672 -2776,3454,6245,6244,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,41,-3,6.842642983602846,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.86,37.35,8.333333333333334,1,1,0,0,9,11,3,1,387,883732.7079907155,522286.348231706,269904.5138605741,13944.34963067596,1173.800097431672 -2777,3455,6246,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.63813530880649,8.18604763263663,0,0,0,-919.9460311442429,0,2,3,2019,9,0,38,42,1,0,0,12.65203641277405,12.65203641277405,0,0,0,0,2,0,0,0,5.609049266671863,0,38.93,54.2,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,225,-103550.4745864478,0,64492.07572852816,14651.82831314219,1499.911762255841 -2778,3456,6247,6248,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,9,11,0,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.99,54.49,34.54,31.77,5,1,1,0,0,0,10,1,0,1966,964149.7402443627,355245.8397392156,311698.0707239163,0,1036.619649462111 -2778,3456,6248,6247,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,0,0,0,9,-11,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,34.54,31.77,40.99,54.49,1.666666666666667,1,1,0,0,0,10,1,0,1966,964149.7402443627,355245.8397392156,311698.0707239163,0,1036.619649462111 -2779,3457,6249,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.377400696572867,6.710919163392148,0,0,-1069.24787333217,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,4.048510448193989,0,0,1,1,0,0,6.815501238307975,64.55,36.47,-9,-9,10,1,1,0,0,0,8,2,0,37,600854.6495413962,-51841.31664192252,348436.9517371597,0,1396.304857575315 -2780,3458,6250,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.260045634088144,5.918295223440215,0,0,-1024.78949637558,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.665568543392087,0,0,1,1,0,0,6.37272454758837,66.62,13.15,-9,-9,10,1,1,0,0,0,7,2,1,274,151467.2912948978,-55888.09822325686,0,0,1442.37852482507 -2781,3459,6251,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.652617461633274,6.387316710936449,0,0,-1002.450631443215,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.674474900356138,53,47,-9,-9,7,1,1,0,0,0,2,2,1,5468,288275.6823544109,64736.41749409141,40217.46934669233,0,2175.120830679532 -2782,3460,6252,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.696395695719461,7.109679708662364,6.026161830912407,0,0,-1018.097454864177,0,2,1,2019,14,3,19,18,1,3,0,9.750576244922359,9.750576244922359,0,0,0,0,0,1,1,0,5.743294287480862,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,8,4,2,0,492,107032.821732518,92612.06929298294,0,0,1983.642609160348 -2783,3461,6253,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,5.847616828679904,5.994064496513653,0,0,-1071.791778794428,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.080654668010608,5.674330251673196,62.39,56.71,-9,-9,10,1,1,0,0,0,13,2,1,544,33547.05713588693,28336.02199624909,0,0,1231.385505805373 -2784,3462,6254,6255,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.206233350615918,9.129194627172408,0,8,4,21.62863200825217,0,-9,-9,2019,6,0,38,38,1,0,0,25.62863881564397,25.62863881564397,0,0,0,0,0,0,0,0,.4979821951239917,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,11,5,1,1337,1025914.000387225,427821.0636729862,292711.9874744986,118487.4388416979,12195.32630676218 -2784,3462,6255,6254,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,9.735782240770437,9.76233062006153,0,28,-4,49.60292820686231,0,1,1,2019,9,1,46,50,1,1,0,44.89220813576318,44.89220813576318,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,1337,1025914.000387225,427821.0636729862,292711.9874744986,118487.4388416979,12195.32630676218 -2784,3462,6256,-9,6255,6254,1,1,17,0,1,0,2,2,1,0,5,0,4.419584186207754,4.63505711783125,0,0,-1076.845652149683,-9,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.188573142412332,0,59.43,58.05,-9,-9,10,1,1,1,0,0,11,5,1,1337,1025914.000387225,427821.0636729862,292711.9874744986,118487.4388416979,12195.32630676218 -2784,3463,6257,-9,6255,6254,1,1,19,0,1,0,2,2,1,0,5,6.61770236350173,6.690905026589911,0,0,0,-940.6416097083485,-9,1,1,2019,6,0,40,0,1,0,1,2.095529515368296,2.095529515368296,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,4,11,2,1,1080,105422.0982764102,35560.71609181118,0,0,696.9214907716095 -2785,3464,6258,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,6.931169379370656,7.109664691230652,0,0,-929.6032191098661,0,2,2,2019,6,0,0,22,4,0,0,0,0,0,0,0,0,0,1,1,0,4.812551681465559,6.924913696582447,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,12,4,2,0,1308,0,0,0,0,522.7511681319919 -2786,3465,6259,-9,6260,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.3362856575243,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,1272.333333333333,53414.43510312911,55558.67579293981,0,0,2410.12959445593 -2786,3465,6260,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,8.079193250450281,7.986453214691867,0,0,0,-956.5436510993585,-9,1,-9,2019,8,0,44,0,1,0,0,6.929184044014933,6.929184044014933,0,0,0,0,0,1,1,0,0,0,52.89,47.88,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,1272.333333333333,53414.43510312911,55558.67579293981,0,0,2410.12959445593 -2786,3465,6261,-9,6260,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-983.7349770634861,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,6.666666666666667,3,4,0,0,0,8,3,0,1272.333333333333,53414.43510312911,55558.67579293981,0,0,2410.12959445593 -2787,3466,6262,6263,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,0,0,12,-8,-107.9193113530885,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,50.03,52.62,10,2,3,1,0,8,4,3,1,671.5,1413326.935976282,946976.6277590261,364258.242152259,8379.696941553202,1396.746081693742 -2787,3466,6263,6262,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.841979228301222,7.794860415838969,12,8,29.82181086208168,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.05088631361258,7.674088869145739,50.03,52.62,59.43,58.05,8.333333333333334,1,1,0,0,5,4,3,1,671.5,1413326.935976282,946976.6277590261,364258.242152259,8379.696941553202,1396.746081693742 -2788,3467,6264,-9,6266,6267,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.888171918589,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1989,117629.5628951882,20492.45360580743,210681.9584587211,126513.5144366777,3441.050645459554 -2788,3467,6265,-9,6266,6267,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.2943508266072,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1989,117629.5628951882,20492.45360580743,210681.9584587211,126513.5144366777,3441.050645459554 -2788,3467,6266,6267,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.208805849313205,7.872343904581879,0,12,-2,13.22009891781715,0,2,2,2019,14,4,50,37,1,4,0,6.882459581070413,6.882459581070413,0,0,0,0,0,1,1,0,0,0,42.21,25.58,37.2,53.87,6.666666666666667,1,1,0,0,10,13,4,1,1989,117629.5628951882,20492.45360580743,210681.9584587211,126513.5144366777,3441.050645459554 -2788,3467,6267,6266,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,7.882736316277891,8.247883968537773,6.960329148275661,12,2,-74.00471352951078,0,3,2,2019,11,0,50,10,1,0,0,7.391044993930084,7.391044993930084,0,0,0,0,0,1,1,0,0,7.613635351406017,37.2,53.87,42.21,25.58,8.333333333333334,1,1,0,0,10,13,4,1,1989,117629.5628951882,20492.45360580743,210681.9584587211,126513.5144366777,3441.050645459554 -2789,3468,6268,6269,-9,-9,1,1,32,1,1,0,2,2,-9,0,2,8.359557859271622,8.591789524088696,0,1,8,76.05443745729873,0,-9,-9,2019,11,0,52,48,1,0,0,11.11010047385072,11.11010047385072,0,0,0,0,0,1,1,0,0,0,48.12,47.31,47,57,6.666666666666667,1,1,0,0,8,7,4,0,1047.333333333333,33721.48398384645,0,335973.4577685919,199763.9156865127,1528.809171065609 -2789,3468,6269,6268,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,6.889580426350795,6.780902725276407,0,1,-8,23.52406278849356,-9,-9,-9,2019,12,0,20,0,1,2,0,4.518866609812315,4.518866609812315,0,0,0,0,0,1,1,0,0,0,47,57,48.12,47.31,7,4,1,0,0,1,7,4,0,1047.333333333333,33721.48398384645,0,335973.4577685919,199763.9156865127,1528.809171065609 -2789,3468,6270,-9,6269,6268,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-875.9412220724412,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,7,4,0,1047.333333333333,33721.48398384645,0,335973.4577685919,199763.9156865127,1528.809171065609 -2790,3469,6271,6272,-9,-9,1,0,43,0,0,0,1,1,-9,1,1,0,0,0,1,-6,-30.97660167805165,-9,2,2,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.28,26.86,49.51,46.42,5,1,1,0,0,8,1,5,0,783.5,597136.5241014705,37548.33469552692,411220.1138237484,0,2961.000814206005 -2790,3469,6272,6271,-9,-9,1,1,49,0,0,0,3,3,-9,0,2,8.677389556015015,8.554806936602416,0,1,6,-76.82053587190219,-9,-9,2,2019,7,0,40,0,1,0,0,22.74220679866138,22.74220679866138,0,0,0,0,0,1,1,0,0,0,49.51,46.42,42.28,26.86,6.666666666666667,1,1,0,0,10,1,5,0,783.5,597136.5241014705,37548.33469552692,411220.1138237484,0,2961.000814206005 -2790,3470,6273,-9,6271,6272,1,0,19,0,0,0,2,2,-9,0,3,7.587550554621281,7.393074742506775,0,0,0,-889.0016450732188,-9,1,3,2019,10,0,50,0,1,0,1,3.110577707128816,3.110577707128816,0,0,0,0,2,1,1,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,1,1,3,0,301,-145457.0226123304,0,0,0,983.5220956897638 -2791,3471,6274,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.803685324802707,8.629352259145181,0,0,0,-956.857549050785,0,2,2,2019,15,3,40,37,1,3,0,15.76097029558648,15.76097029558648,0,0,0,0,0,0,0,0,0,0,43.38,51.59,-9,-9,3.333333333333333,1,1,0,0,8,10,5,1,526,1048409.772366781,337359.8919416761,483002.7738495315,0,1883.476885837684 -2792,3472,6275,6276,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.042635894425473,8.136488437240505,0,32,-1,-93.28559284388645,0,3,3,2019,8,0,38,37,1,0,0,11.51050866145402,11.51050866145402,0,0,0,0,2,0,0,0,0,0,57.06,57.76,39.43,46.68,6.666666666666667,1,1,0,0,8,4,3,1,229,1256191.653755587,740485.0042744617,252712.4049562283,0,1144.792899318625 -2792,3472,6276,6275,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,0,0,37,1,-99.98760524453564,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,39.43,46.68,57.06,57.76,5,1,1,1,0,4,4,3,1,229,1256191.653755587,740485.0042744617,252712.4049562283,0,1144.792899318625 -2792,3473,6277,-9,6275,6276,1,1,28,0,0,0,2,2,-9,0,5,8.034356579319969,8.288638260858979,0,0,0,-1088.974593824253,0,2,3,2019,8,0,40,40,1,0,1,12.39085238988447,12.39085238988447,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,5,4,4,1,397,72125.34504127871,0,0,0,1493.294994271576 -2793,3474,6278,6279,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.398289713596573,7.269097881809122,46,-5,-67.55345003613846,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.38290886460749,7.231215722424327,54.2,57.49,54.96,53.17,10,1,1,0,0,0,6,4,1,812.5,1659501.889636355,1030394.444966982,272437.0233399776,0,3694.788409487093 -2793,3474,6279,6278,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.518451399248489,8.333477413384763,46,5,-26.26686535001029,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.987534001791109,8.077133990672971,54.96,53.17,54.2,57.49,10,1,1,0,0,0,6,4,1,812.5,1659501.889636355,1030394.444966982,272437.0233399776,0,3694.788409487093 -2794,3475,6280,6281,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.115125339322694,7.05491454092069,9,-2,93.28386398648138,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.076666814899121,63.26,45.23,47.52,33.82,8.333333333333334,1,1,0,0,4,13,3,1,805.5,751451.8508010067,265164.8185066339,366716.6437620048,0,1833.263129650388 -2794,3475,6281,6280,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.979235534302601,6.779480355416931,9,2,50.3336136011196,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.68527297759338,7.091857760916641,47.52,33.82,63.26,45.23,8.333333333333334,1,1,0,0,0,13,3,1,805.5,751451.8508010067,265164.8185066339,366716.6437620048,0,1833.263129650388 -2795,3476,6282,-9,6283,6284,1,1,24,0,0,0,1,1,-9,0,4,8.417771533521574,8.600788514793818,0,0,0,-1043.654235330481,0,2,2,2019,11,0,40,40,1,0,1,18.00957225952033,18.00957225952033,0,0,0,0,0,0,0,0,3.374319260852289,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,5165,218605.7939649997,-140124.4307407698,177228.1567988967,68993.41407399258,2513.268555409163 -2795,3477,6283,6284,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.535191614097815,7.735159590578993,0,33,1,-160.2072860464975,0,3,3,2019,11,2,17,17,1,2,0,14.30143951005301,14.30143951005301,0,0,0,0,0,0,0,0,5.944677741542755,0,51.06,32.08,57.91,46.31,8.333333333333334,1,1,0,0,11,4,5,1,696.5,1141613.928016196,1045140.06581538,201024.760594577,98978.38835311231,3001.672473684291 -2795,3477,6284,6283,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.696023117627014,8.933780620574156,0,33,-1,68.05024703526537,0,3,3,2019,7,0,37,37,1,0,0,20.7720544845758,20.7720544845758,0,0,0,0,0,0,0,0,4.360560388847967,0,57.91,46.31,51.06,32.08,10,1,1,0,0,11,4,5,1,696.5,1141613.928016196,1045140.06581538,201024.760594577,98978.38835311231,3001.672473684291 -2796,3478,6285,6286,-9,-9,1,0,36,0,0,0,3,3,-9,1,2,0,0,0,2,2,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,36.43,57.17,47.91,6.666666666666667,1,1,0,0,0,13,1,0,429.5,0,0,0,0,2025.515167227023 -2796,3478,6286,6285,-9,-9,1,1,34,0,0,0,3,3,-9,1,4,0,0,0,2,-2,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.17,47.91,35.97,36.43,8.333333333333334,1,1,1,0,2,13,1,0,429.5,0,0,0,0,2025.515167227023 -2797,3479,6287,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.534380540541136,8.023116600195195,5.643204408789598,0,0,-1056.519464164484,0,1,2,2019,12,2,50,40,1,2,0,9.617343000010482,9.617343000010482,0,0,0,0,0,1,1,0,6.026913081486935,0,45.28,42.57,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,407.5,368646.5854491938,126676.7849316478,200797.2738899597,249613.5405730899,1888.055611470899 -2797,3479,6288,-9,6287,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.4602898614668,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,407.5,368646.5854491938,126676.7849316478,200797.2738899597,249613.5405730899,1888.055611470899 -2798,3480,6289,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.603359016008451,9.133027970421132,0,0,0,-951.1934948028629,0,2,1,2019,8,0,37,37,1,0,0,19.4596265521278,19.4596265521278,0,0,0,0,0,1,1,0,5.728045532219987,0,48.87,58.55,-9,-9,10,1,1,0,0,8,1,5,1,65,567447.9445091502,469729.291247954,0,0,2285.303704947751 -2799,3481,6290,6291,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,8.661343571433122,8.613911905603,6.835865980941906,51,1,-9.794028872997849,0,3,3,2019,18,7,24,20,1,7,0,25.00113262712779,25.00113262712779,1,0,3.713053545497003,0,0,1,1,0,7.187026921352362,7.436466082821997,49.52,35.69,44.26,46.23,5,1,1,0,0,9,8,4,1,373.5,1834034.024360992,1327059.360961431,636766.2151249016,48202.16024336522,4164.978728993363 -2799,3481,6291,6290,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.552134609536714,6.704524339050174,51,-1,129.0369711813597,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.796642826040745,6.403487070354257,44.26,46.23,49.52,35.69,8.333333333333334,1,1,0,0,5,8,4,1,373.5,1834034.024360992,1327059.360961431,636766.2151249016,48202.16024336522,4164.978728993363 -2800,3482,6292,-9,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,5.591136742839613,5.785389366987022,0,0,-1004.206001158834,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.559096434274694,5.939628442952103,59.21,43.05,-9,-9,8.333333333333334,3,4,0,0,4,8,2,0,197,319518.3585046674,336284.9951557099,0,0,-530.2233134536687 -2800,3483,6293,-9,6294,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.300817828955,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,270.5,240854.548535281,213740.5072866312,0,0,3646.23950592349 -2800,3483,6294,-9,6292,-9,1,0,37,0,1,0,2,2,-9,0,4,8.262972621250773,8.353197697574874,0,0,0,-943.448629887592,0,3,-9,2019,11,0,20,20,1,2,0,27.1820663800084,27.1820663800084,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,1,8,4,0,270.5,240854.548535281,213740.5072866312,0,0,3646.23950592349 -2801,3484,6295,6296,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.659586841491166,6.143882849679295,39,1,64.84966203190335,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.004940699306134,5.730127890885614,48.28,53.42,55.93,52.62,5,1,1,0,0,0,11,3,1,258,4151641.548507295,3754437.563922071,266006.2669685014,0,1091.23798885006 -2801,3484,6296,6295,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,8.175096543764278,7.9336266978315,4,-1,139.5312647676924,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.755462742833156,55.93,52.62,48.28,53.42,8.333333333333334,1,1,0,0,9,11,3,1,258,4151641.548507295,3754437.563922071,266006.2669685014,0,1091.23798885006 -2802,3485,6297,6298,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.569212188507789,8.766622524051812,0,6,1,-21.13279740011878,0,2,2,2019,9,0,40,40,1,0,0,18.96536800654273,18.96536800654273,0,0,0,0,0,0,0,0,1.376668979927063,0,54,53,41.62,36.49,8,1,1,0,0,1,9,5,1,1451.5,1963959.409172603,1246860.156402246,578366.817665174,0,3477.246242650562 -2802,3485,6298,6297,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.107081987016977,8.147672556683794,0,38,-1,15.1684041305081,0,2,2,2019,12,0,38,42,1,0,0,8.60904483042563,8.60904483042563,0,0,0,0,0,0,0,0,0,0,41.62,36.49,54,53,6.666666666666667,1,1,0,0,9,9,5,1,1451.5,1963959.409172603,1246860.156402246,578366.817665174,0,3477.246242650562 -2803,3486,6299,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.691413184188892,5.463403133657336,0,0,-952.2109825822663,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.778126434442835,52,45,-9,-9,8,1,1,0,0,0,6,2,1,1735,148349.2847440106,16731.09418406737,194439.5632303459,0,1403.122543774698 -2804,3487,6300,6301,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.929556217178428,8.796336324543942,0,10,1,-137.5776807030158,0,2,3,2019,11,0,35,35,1,0,0,19.74552968825185,19.74552968825185,0,0,0,0,0,1,1,0,3.097071862301775,0,46.08,57.2,47.31,48.3,8.333333333333334,1,1,0,0,13,13,5,1,443.3333333333333,143074.4253961618,123405.8422045288,207650.5788493985,0,2875.638319505769 -2804,3487,6301,6300,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.836456713130442,7.909363413611304,0,10,-1,67.15531798413484,0,3,3,2019,9,1,29,30,1,1,0,12.67220236035675,12.67220236035675,0,0,0,0,0,1,1,0,.5903707951172985,0,47.31,48.3,46.08,57.2,8.333333333333334,1,1,0,0,13,13,5,1,443.3333333333333,143074.4253961618,123405.8422045288,207650.5788493985,0,2875.638319505769 -2804,3487,6302,-9,6301,6300,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.302911562889,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,443.3333333333333,143074.4253961618,123405.8422045288,207650.5788493985,0,2875.638319505769 -2805,3488,6303,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.694514094682148,5.717269710902377,0,0,-886.5472016175519,0,3,3,2019,26,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,5.676501121650995,53,46,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,339,161784.1578434137,106968.5535852468,0,0,1133.042707364663 -2806,3489,6304,-9,6305,6307,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1001.809405207662,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,604.5,52273.43954733221,30985.4777693578,87171.64274473117,0,3373.166632141268 -2806,3489,6305,6307,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.105187822928059,7.923008952903051,0,6,-1,-98.49822363771639,0,3,3,2019,7,0,35,35,1,0,0,9.678631484246232,9.678631484246232,0,0,0,0,2,1,1,0,0,0,62.39,56.71,35.63,62.19,10,1,1,0,0,7,5,4,1,604.5,52273.43954733221,30985.4777693578,87171.64274473117,0,3373.166632141268 -2806,3489,6306,-9,6305,6307,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.8899519696718,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,604.5,52273.43954733221,30985.4777693578,87171.64274473117,0,3373.166632141268 -2806,3489,6307,6305,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.494811227487586,8.861636065897969,0,6,1,-8.076656806500118,0,3,3,2019,13,1,55,55,1,1,0,9.865852928289637,9.865852928289637,0,0,0,0,0,1,1,0,0,0,35.63,62.19,62.39,56.71,6.666666666666667,1,1,0,0,6,5,4,1,604.5,52273.43954733221,30985.4777693578,87171.64274473117,0,3373.166632141268 -2806,3490,6308,-9,6305,6307,1,1,19,0,1,0,2,2,1,0,5,7.686227220348752,8.060498037230515,0,0,0,-942.3433804094973,-9,2,-9,2019,0,0,40,0,1,0,1,10.01850815283045,10.01850815283045,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,5,4,1,342,106269.7970173776,0,0,0,1669.439109973168 -2807,3491,6309,6310,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.458805440806483,8.519052806289503,0,9,-3,-39.34077720061791,0,3,-9,2019,9,0,37,37,1,1,0,15.15502855439764,15.15502855439764,0,0,0,0,7,1,1,0,0,0,33.05,57.87,57.06,57.76,3.333333333333333,2,3,0,0,9,12,5,1,2396.5,282836.8908535084,292740.0783373595,118560.7028989275,51890.74000304708,3062.810984177319 -2807,3491,6310,6309,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.32658850602127,7.970540008517903,0,9,3,153.6819360437816,0,2,2,2019,11,0,30,30,1,0,0,10.33127452324107,10.33127452324107,0,0,0,0,0,1,1,0,0,0,57.06,57.76,33.05,57.87,6.666666666666667,2,3,0,0,10,12,5,1,2396.5,282836.8908535084,292740.0783373595,118560.7028989275,51890.74000304708,3062.810984177319 -2807,3492,6311,-9,6310,6309,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-919.0590684506197,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,2,3,0,0,5,12,1,1,10887,-72278.1562676223,0,0,0,323.437236882751 -2807,3493,6312,-9,6310,6309,1,0,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-930.7527452728616,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.7,47.77,-9,-9,6.666666666666667,2,3,0,0,2,12,1,1,5280,11787.7268602502,0,0,0,0 -2808,3494,6313,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.166841437266806,8.458173207435477,0,0,0,-1048.116953532329,0,3,3,2019,11,0,44,44,1,2,0,10.53227200932193,10.53227200932193,0,0,0,0,7,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,8,7,4,1,2175,693557.6878674179,180396.9345561342,291381.3797323439,0,1217.223169494614 -2808,3495,6314,-9,6315,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-895.1705504370805,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,6,-9,0,0,7,1,1,720.5,127935.1439240678,0,0,0,554.9002855472447 -2808,3495,6315,-9,6313,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.5725773377274,1,1,-9,2019,7,0,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,10,3,4,0,0,4,7,1,1,720.5,127935.1439240678,0,0,0,554.9002855472447 -2808,3495,6316,-9,6315,-9,1,0,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1135.594908170764,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,1,1,720.5,127935.1439240678,0,0,0,554.9002855472447 -2808,3495,6317,-9,6315,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-898.7080397430462,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,1,1,720.5,127935.1439240678,0,0,0,554.9002855472447 -2809,3496,6318,-9,6321,6319,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.5743861765161,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,648.5,847873.4230457431,242394.5638916598,331282.1392142418,65427.25970710886,3454.794751511799 -2809,3496,6319,6321,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.388016930959584,8.081263459280098,0,9,2,90.34890762729489,0,3,3,2019,7,0,40,39,1,0,0,9.686907504587293,9.686907504587293,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.97,53.97,6.666666666666667,1,1,0,0,10,13,4,1,648.5,847873.4230457431,242394.5638916598,331282.1392142418,65427.25970710886,3454.794751511799 -2809,3496,6320,-9,6321,6319,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1166.751333466638,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.977218960374166,0,52.34,56.95,-9,-9,10,1,1,0,0,0,13,4,1,648.5,847873.4230457431,242394.5638916598,331282.1392142418,65427.25970710886,3454.794751511799 -2809,3496,6321,6319,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.891880649723776,8.65498100134084,0,9,-2,-91.00267562687146,0,3,3,2019,6,0,38,38,1,0,0,20.17871777319495,20.17871777319495,0,0,0,0,0,1,1,0,0,0,52.97,53.97,54.79,55.86,8.333333333333334,1,1,0,0,10,13,4,1,648.5,847873.4230457431,242394.5638916598,331282.1392142418,65427.25970710886,3454.794751511799 -2810,3497,6322,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1048.456988018217,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,6.666666666666667,1,1,0,0,8,5,1,1,513,-48197.65904395883,0,0,0,671.0247330849392 -2811,3498,6323,6324,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.019127046802668,8.635031502718556,0,6,-1,10.99107710160557,0,3,3,2019,8,0,48,48,1,0,0,18.83471181443937,18.83471181443937,0,0,0,0,0,0,0,0,1.938947367552503,0,57.16,56.15,59.44,50.02,8.333333333333334,1,1,0,0,8,4,5,1,1078.5,1435619.708500045,1065500.029767471,450031.529030735,26455.88377624291,3293.670825551173 -2811,3498,6324,6323,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.830261582193607,7.59294983992521,0,39,1,-120.0637816775145,0,3,3,2019,9,0,36,30,1,0,0,7.258368238682235,7.258368238682235,0,0,0,0,0,0,0,0,3.147303189718314,0,59.44,50.02,57.16,56.15,10,1,1,0,0,8,4,5,1,1078.5,1435619.708500045,1065500.029767471,450031.529030735,26455.88377624291,3293.670825551173 -2811,3499,6325,-9,6324,6323,1,0,22,0,0,0,2,2,-9,0,3,7.690010679097863,7.852733726660222,0,0,0,-1067.326832265866,0,2,2,2019,13,1,36,38,1,1,1,8.096096383508122,8.096096383508122,0,0,0,0,0,0,0,0,0,0,43.55,57.37,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1139,13050.30976896361,0,0,0,785.9124324038673 -2812,3500,6326,6327,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.287691686787363,6.619300942455877,9,-6,-98.83700111949196,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.106580091028595,6.481292379011583,47.44,56.39,45.57,53.5,6.666666666666667,1,1,0,0,0,8,5,1,606.5,2465027.124117177,1005131.098302103,888549.4829162915,0,4887.33229712831 -2812,3500,6327,6326,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.724492842660979,8.316737574979177,22,6,33.37411672798332,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,1.583122773708704,14.5,1,1,0,9.182308367377495,8.673548690262233,45.57,53.5,47.44,56.39,8.333333333333334,1,1,0,0,0,8,5,1,606.5,2465027.124117177,1005131.098302103,888549.4829162915,0,4887.33229712831 -2812,3501,6328,-9,6326,6327,1,1,28,0,0,0,2,2,-9,1,3,0,0,0,0,0,-850.2679798766585,0,1,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.561524122949349,0,42.02,48.45,-9,-9,1.666666666666667,1,1,1,0,1,8,1,1,696,-139529.998230148,0,0,0,336.6779509949537 -2813,3502,6329,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.497773597087528,8.352478368481632,0,0,0,-974.5782946763641,0,-9,-9,2019,9,0,50,50,1,0,0,10.51028540274231,10.51028540274231,0,0,0,0,0,0,0,0,2.109210564623289,0,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,10,4,4,0,721,147365.9543483272,55029.43930810737,0,0,1279.408698249726 -2814,3503,6330,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,0,5.487622606727682,5.323914385822752,0,0,-962.4057946351051,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,5.466879737179196,0,34.98,58.78,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,1769.333333333333,19626.63828313017,0,0,0,1544.880340158884 -2814,3503,6331,-9,6330,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.724934341386,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1769.333333333333,19626.63828313017,0,0,0,1544.880340158884 -2814,3503,6332,-9,6330,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.9407524552958,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1769.333333333333,19626.63828313017,0,0,0,1544.880340158884 -2815,3504,6333,6334,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,6,-1,14.64335429621786,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,36.18,43.26,44.86,10,1,1,0,0,0,8,2,1,353,234426.2607240623,114308.1726759149,0,0,1639.5817459545 -2815,3504,6334,6333,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.563834929925702,5.508158210393807,50,1,26.45811355568692,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.943173373456219,5.458701252537885,43.26,44.86,62.18,36.18,6.666666666666667,1,1,0,0,0,8,2,1,353,234426.2607240623,114308.1726759149,0,0,1639.5817459545 -2816,3505,6335,6337,-9,-9,1,0,37,1,2,0,2,2,-9,0,5,7.149341897159468,7.341048454495787,0,7,-1,-12.28588906844818,0,-9,-9,2019,5,0,16,10,1,0,0,10.87022605946536,10.87022605946536,0,0,0,0,0,0,0,0,7.794619400615963,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,4,5,1,495.5,622724.9697526896,343900.6206127194,383918.2808328973,237351.929998397,19826.8555938492 -2816,3505,6336,-9,6335,6337,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.6406717751672,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,495.5,622724.9697526896,343900.6206127194,383918.2808328973,237351.929998397,19826.8555938492 -2816,3505,6337,6335,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.654234334661259,9.794818744479098,0,7,1,-91.78161795666092,0,-9,-9,2019,10,1,46,41,1,1,0,33.89019805852644,33.89019805852644,0,0,0,0,0,0,0,0,9.168329584039157,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,495.5,622724.9697526896,343900.6206127194,383918.2808328973,237351.929998397,19826.8555938492 -2816,3505,6338,-9,6335,6337,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.9696944993914,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,495.5,622724.9697526896,343900.6206127194,383918.2808328973,237351.929998397,19826.8555938492 -2817,3506,6339,6340,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.048807245170247,8.143540825091195,0,28,-3,-76.18995334594459,0,3,3,2019,7,0,34,35,1,0,0,15.36941767230709,15.36941767230709,0,0,0,0,0,1,1,0,0,0,41.53,59.52,52.24,50.75,8.333333333333334,1,1,0,0,10,4,4,1,253.3333333333333,149823.6591642676,96677.93240274997,182807.4923109433,6809.335785320141,2663.870320790811 -2817,3506,6340,6339,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,7.760874903344268,7.489150447977195,0,7,3,7.604081979042537,0,3,3,2019,9,0,36,36,1,0,0,8.613263095555812,8.613263095555812,0,0,0,0,14.5,1,1,0,0,0,52.24,50.75,41.53,59.52,5,1,1,0,0,8,4,4,1,253.3333333333333,149823.6591642676,96677.93240274997,182807.4923109433,6809.335785320141,2663.870320790811 -2817,3506,6341,-9,6339,6340,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.9027063843705,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,253.3333333333333,149823.6591642676,96677.93240274997,182807.4923109433,6809.335785320141,2663.870320790811 -2817,3507,6342,-9,6339,6340,1,0,18,0,1,0,2,2,1,0,4,7.920148403844509,7.467695342704689,0,0,0,-1112.699383412637,-9,2,2,2019,12,0,39,0,1,2,1,6.983065446290786,6.983065446290786,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,2,4,3,1,2809,336555.4124011861,69859.12884845481,0,0,982.8755895899051 -2818,3508,6343,6344,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.36106517138002,6.471491300704167,7,1,-35.15186837338088,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.312171223343467,6.494569002619399,56.57,57.78,37.36,54.65,6.666666666666667,1,1,0,0,6,5,2,1,448.5,420827.4741689966,203384.6704512303,224549.8822034878,0,2442.612258424345 -2818,3508,6344,6343,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,49,-1,-63.89687273378436,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,54.65,56.57,57.78,8.333333333333334,1,1,0,0,6,5,2,1,448.5,420827.4741689966,203384.6704512303,224549.8822034878,0,2442.612258424345 -2819,3509,6345,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.649894275371009,7.079930740598788,0,0,0,-1066.553055797872,0,3,3,2019,7,0,17,17,1,0,0,6.103588135158057,6.103588135158057,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,1,1,0,0,7,13,2,1,712,371449.778458178,0,89395.19427594422,0,86.66759647153424 -2820,3510,6346,6347,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,5.180250741149184,5.253653313618788,29,3,-88.3744611950745,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.054426511928302,50.57,13.73,67.51000000000001,19.06,8.333333333333334,1,1,0,0,0,11,2,0,2138.5,112341.3277480966,49198.04647150722,93829.07229711229,0,1452.595265942017 -2820,3510,6347,6346,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,32,-3,87.30404815036168,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,67.51000000000001,19.06,50.57,13.73,8.333333333333334,1,1,0,0,0,11,2,0,2138.5,112341.3277480966,49198.04647150722,93829.07229711229,0,1452.595265942017 -2821,3511,6348,6349,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,35,-6,-98.88707085802986,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,4.176243843131891,0,63.48,51.85,57.16,56.15,10,1,1,0,0,0,9,3,1,470,577166.8151731899,2498.451203923018,402346.790502156,0,1461.54117306471 -2821,3511,6349,6348,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.86407132026722,8.058291394321483,35,6,48.56523127785657,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.278513262534515,7.683477146233507,57.16,56.15,63.48,51.85,8.333333333333334,1,1,0,0,1,9,3,1,470,577166.8151731899,2498.451203923018,402346.790502156,0,1461.54117306471 -2822,3512,6350,6352,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.38868310744793,8.438176131265008,0,12,-2,-37.61776455875731,0,2,2,2019,7,0,38,37,1,0,0,13.35127775893774,13.35127775893774,0,0,0,0,0,1,1,0,0,0,52,54.51,51.24,58.84,8.333333333333334,1,1,0,0,9,12,3,1,602.75,-43531.31524954012,-13189.01720662235,0,0,3385.089122176693 -2822,3512,6351,-9,6352,6350,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.1989701097909,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,3,1,602.75,-43531.31524954012,-13189.01720662235,0,0,3385.089122176693 -2822,3512,6352,6350,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.155896539591774,7.334649561665723,5.50546091847703,12,2,-21.71748478755087,0,2,3,2019,6,0,39,30,1,0,0,3.098055504874861,3.098055504874861,0,0,0,0,0,1,1,0,6.883545518805652,0,51.24,58.84,52,54.51,8.333333333333334,1,1,0,0,12,12,3,1,602.75,-43531.31524954012,-13189.01720662235,0,0,3385.089122176693 -2822,3512,6353,-9,6352,6350,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-867.2774699717761,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,63.66,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,602.75,-43531.31524954012,-13189.01720662235,0,0,3385.089122176693 -2823,3513,6354,-9,-9,-9,1,0,25,1,1,0,3,3,-9,0,3,0,0,0,0,0,-964.3413571071263,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,.7700441746810149,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,3,9,1,0,1141,9025.16478779188,0,0,0,678.8757668640219 -2823,3513,6355,-9,6354,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.8156625010855,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,1141,9025.16478779188,0,0,0,678.8757668640219 -2824,3514,6356,6357,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.10981791122027,7.501138936037292,50,0,-92.53789086861877,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.764779349500428,8.018556626453083,57.33,53.46,27.57,58.92,8.333333333333334,1,1,0,0,6,9,3,1,740,1342811.016477142,607025.2859599065,292462.0285748134,0,2419.078977327606 -2824,3514,6357,6356,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,50,0,9.282030648434285,-9,3,2,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,6.632120240993254,0,27.57,58.92,57.33,53.46,5,1,1,0,0,0,9,3,1,740,1342811.016477142,607025.2859599065,292462.0285748134,0,2419.078977327606 -2825,3515,6358,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.510013932947753,5.673514821035298,0,0,-1000.574199077597,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,1.871234740891405,6.359111140045734,20.68670697799617,0,1,1,0,0,5.587069007356247,52.64,28.68,-9,-9,5,1,1,0,0,0,11,2,1,1694,15589.68438762054,-60205.14618642212,0,0,631.6379723201219 -2826,3516,6359,6360,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.252698390039606,8.152886756334897,0,34,-1,-74.64607147313498,0,2,2,2019,25,12,35,41,1,12,0,12.16819062598763,12.16819062598763,0,0,0,0,0,0,0,0,6.58987376739987,0,27.53,54.1,57.06,57.76,0,1,1,0,0,10,4,4,1,1130,799371.9285592498,507897.4835038898,177640.398775852,0,3484.397448655936 -2826,3516,6360,6359,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.898252999742612,7.745846261952035,0,34,1,-38.49326523088871,0,3,2,2019,6,0,40,1,1,0,0,6.611058186345518,6.611058186345518,0,0,0,0,0,0,0,0,0,0,57.06,57.76,27.53,54.1,8.333333333333334,1,1,0,0,6,4,4,1,1130,799371.9285592498,507897.4835038898,177640.398775852,0,3484.397448655936 -2826,3517,6361,-9,6359,6360,1,0,23,0,0,0,1,1,-9,0,4,8.062359526847073,8.186138126135383,0,0,0,-885.3945325451273,0,2,2,2019,10,0,50,25,1,0,1,7.939737721904867,7.939737721904867,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,107,-8699.966717500049,95750.83992283129,0,0,979.244333349009 -2827,3518,6362,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.787675382403723,5.670863145626564,0,0,-1159.261423420805,0,2,3,2019,10,1,0,0,4,1,0,0,0,1,0,11.50859199535406,0,0,1,1,0,0,5.388330581331319,56.94,49.53,-9,-9,10,1,1,0,0,0,9,2,1,1127,332510.5688604867,16476.8277280813,288257.5922070876,0,659.8558101886958 -2828,3519,6363,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.949133208382,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.85,41.75,-9,-9,5,1,1,0,0,0,12,1,0,730,1901.018590379426,0,0,0,1975.774904839629 -2829,3520,6364,6365,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.107851863231211,8.285973797757103,0,22,9,-76.36312221707807,0,3,2,2019,4,0,45,44,1,0,0,9.07792874174643,9.07792874174643,0,0,0,0,2,1,1,0,0,0,60.12,54.8,75.54000000000001,25.96,8.333333333333334,1,1,0,0,11,7,4,0,2051.5,1567995.093109889,407226.1085822368,353322.1472503321,0,2115.808869611813 -2829,3520,6365,6364,-9,-9,1,0,46,0,0,0,3,3,-9,1,5,6.460374846869247,6.250675838771651,0,22,0,-22.92175055681748,0,-9,-9,2019,8,1,16,16,1,1,0,4.608091850036307,4.608091850036307,0,0,0,0,0,1,1,0,0,0,75.54000000000001,25.96,60.12,54.8,10,1,1,0,0,10,7,4,0,2051.5,1567995.093109889,407226.1085822368,353322.1472503321,0,2115.808869611813 -2830,3521,6366,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1082.258509434556,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39.57,24.08,-9,-9,5,4,5,0,1,0,8,1,1,1715,87530.66638655047,0,0,0,648.1971444899173 -2831,3522,6367,-9,6368,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.502066732,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,960.6666666666666,45963.88057535876,23206.1188737082,0,0,1182.464258516964 -2831,3522,6368,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,2,0,2.504901238799869,2.404153876040789,0,0,-1065.441464987122,0,-9,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,.8590202023546677,2.404791773318443,46.46,35.8,-9,-9,5,1,1,0,0,7,10,2,0,960.6666666666666,45963.88057535876,23206.1188737082,0,0,1182.464258516964 -2831,3522,6369,-9,6368,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.118646866444,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,960.6666666666666,45963.88057535876,23206.1188737082,0,0,1182.464258516964 -2832,3523,6370,6371,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,16,6,54.59674375134232,-9,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,48.47,44.25,7,1,1,1,0,9,8,5,1,669.5,1008144.298784291,395701.5775206088,667531.3648563984,102830.1143402481,3305.631125063842 -2832,3523,6371,6370,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.280606821038081,9.546850521059074,0,16,-6,-72.3853123601575,-9,2,2,2019,16,5,50,0,1,5,0,23.33669920675464,23.33669920675464,0,0,0,0,0,0,0,0,2.809387571365168,0,48.47,44.25,49,48,3.333333333333333,1,1,0,0,9,8,5,1,669.5,1008144.298784291,395701.5775206088,667531.3648563984,102830.1143402481,3305.631125063842 -2833,3524,6372,6373,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.858648017629501,5.814615491504313,2,8,59.24717004613312,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.468192000158105,5.471126292036393,54.96,53.17,54.1,59.11,10,1,1,0,0,9,10,2,1,288,301923.9526260033,24009.29416275371,224878.5948917709,0,525.9256234063014 -2833,3524,6373,6372,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,2,-8,-20.16345136236041,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.60561681370491,0,54.1,59.11,54.96,53.17,10,1,1,0,0,11,10,2,1,288,301923.9526260033,24009.29416275371,224878.5948917709,0,525.9256234063014 -2834,3525,6374,6375,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.049438682090145,8.663488049724469,0,6,-5,6.880031071164383,0,-9,-9,2019,20,8,55,55,1,8,0,14.05814266559147,14.05814266559147,0,0,0,0,0,0,0,0,0,0,26.61,59.47,51.49,57.57,3.333333333333333,1,1,0,0,7,4,5,0,2495,-6184.42501179481,34446.21721314998,107573.4105055457,110640.6439938424,4846.336476029815 -2834,3525,6375,6374,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.619787210312332,8.499905989031978,0,6,5,-79.52684238243191,0,2,2,2019,9,0,50,48,1,0,0,10.38778549808899,10.38778549808899,0,0,0,0,0,0,0,0,0,0,51.49,57.57,26.61,59.47,8.333333333333334,1,1,0,0,7,4,5,0,2495,-6184.42501179481,34446.21721314998,107573.4105055457,110640.6439938424,4846.336476029815 -2835,3526,6376,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,9.045616793451304,9.411719072012982,0,0,0,-918.7547254870731,0,2,2,2019,10,0,55,55,1,0,0,21.20469342790863,21.20469342790863,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,2482,-109877.6226894528,86847.35011945726,0,0,3138.079317044065 -2836,3527,6377,-9,6378,6379,1,1,10,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1026.058292761887,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,381.75,423790.8119180693,279113.8615860743,634839.3122304735,477411.0504382799,6059.197656576407 -2836,3527,6378,6379,-9,-9,1,0,41,1,2,0,1,1,-9,1,4,9.077939959521331,9.115845132507628,0,17,1,-52.31139173466074,0,2,2,2019,34,12,38,-9,1,12,0,23.61169958454296,23.61169958454296,0,0,0,0,0,1,1,0,0,0,49,56,51.83,57.2,4,1,1,0,0,10,13,5,1,381.75,423790.8119180693,279113.8615860743,634839.3122304735,477411.0504382799,6059.197656576407 -2836,3527,6379,6378,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.01463502286056,8.737198372504515,0,17,-1,-57.51711160101475,0,2,2,2019,8,0,38,40,1,0,0,25.58463201081141,25.58463201081141,0,0,0,0,27,1,1,0,3.881700483679035,0,51.83,57.2,49,56,6.666666666666667,1,1,0,0,9,13,5,1,381.75,423790.8119180693,279113.8615860743,634839.3122304735,477411.0504382799,6059.197656576407 -2836,3527,6380,-9,6378,6379,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.396149285357,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,5,1,381.75,423790.8119180693,279113.8615860743,634839.3122304735,477411.0504382799,6059.197656576407 -2837,3528,6381,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.127031106204438,9.218591899743521,0,0,0,-1004.850056725374,0,-9,-9,2019,10,0,78,49,1,0,0,15.23240277128368,15.23240277128368,0,0,0,0,0,0,0,0,2.386007714100576,0,56.96,44.07,-9,-9,6.666666666666667,2,3,0,0,8,9,5,1,1155,-58736.36142874033,170419.0635102252,0,0,3322.432507028559 -2838,3529,6382,6383,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.417805780513087,8.848350970731957,6.941901558516403,9,6,-6.768595108644287,0,-9,-9,2019,7,0,38,38,1,0,0,18.00137103989142,18.00137103989142,0,0,0,0,0,0,0,0,7.37095105641541,7.104697241184975,54.79,55.86,47.64,37.66,8.333333333333334,2,3,0,0,11,6,5,1,473.5,507334.358546263,175988.844897553,421915.1794745836,41060.80130480482,4537.980655892885 -2838,3529,6383,6382,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.5358996555505,8.64734239798725,0,38,-6,-76.60944441696599,0,3,3,2019,16,4,40,52,1,4,0,14.93119928170877,14.93119928170877,0,0,0,0,0,0,0,0,2.472002200056457,0,47.64,37.66,54.79,55.86,3.333333333333333,2,3,0,0,11,6,5,1,473.5,507334.358546263,175988.844897553,421915.1794745836,41060.80130480482,4537.980655892885 -2838,3530,6384,-9,6383,6382,1,1,29,0,0,0,1,1,-9,0,4,8.41446491607482,8.620472942051059,0,0,0,-1029.049300232303,0,3,2,2019,7,0,40,38,1,0,1,12.91320164169048,12.91320164169048,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,2,6,5,1,293,58454.09333195681,5036.38406055572,114833.8598325707,126173.0748820062,1851.611952483147 -2839,3531,6385,-9,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,9.333797254748077,9.580058441928072,0,0,0,-1032.141931567184,0,1,3,2019,12,1,84,84,1,1,0,10.37143980492687,10.37143980492687,0,0,0,0,0,0,0,0,0,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,141,166465.8233698566,44509.52296809441,0,0,4140.147144597646 -2839,3532,6386,-9,6387,6385,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.845262709377,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,803,247373.9137744586,95866.19537672181,55462.97684796112,95375.90221789823,2420.435868791036 -2839,3532,6387,-9,-9,-9,1,0,46,1,1,0,1,1,-9,0,4,9.235401819747079,9.450919572792801,0,0,0,-1037.098619203068,-9,-9,-9,2019,15,6,42,0,1,6,0,25.04707063625464,25.04707063625464,0,0,0,0,0,0,0,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,803,247373.9137744586,95866.19537672181,55462.97684796112,95375.90221789823,2420.435868791036 -2840,3533,6388,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-895.4554739004985,0,2,2,2019,24,12,0,36,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,27.39,34.55,-9,-9,5,1,1,0,1,8,12,1,0,2106,-1875.230533467632,0,0,0,690.5294649040331 -2841,3534,6389,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.105241924241056,8.563115913872277,7.365344614003275,0,0,-1022.833007149004,0,2,2,2019,13,2,37,37,1,2,0,9.831238929089137,9.831238929089137,0,0,0,0,0,1,1,0,6.820816178938074,0,36.78,46.67,-9,-9,5,1,1,0,1,11,5,3,1,643,43992.26622063305,26983.93452245582,125615.3920056838,18435.71491230027,2343.667488480203 -2841,3534,6390,-9,6389,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1028.610478562401,-9,2,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.76,64.84999999999999,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,643,43992.26622063305,26983.93452245582,125615.3920056838,18435.71491230027,2343.667488480203 -2842,3535,6391,6392,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.071875913524139,7.446411466092599,0,10,-2,161.0448476702317,0,-9,-9,2019,17,6,25,22,1,6,0,5.879183073505764,5.879183073505764,0,0,0,0,0,0,0,0,0,0,37.17,50.6,55.61,50.3,8.333333333333334,1,1,0,0,10,1,4,1,1293.5,151527.964901722,160846.1621822549,76350.44972159561,51035.59008162726,1213.853156567732 -2842,3535,6392,6391,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.730209496672949,8.043045355903635,0,10,2,14.37816300227995,0,2,2,2019,5,0,39,39,1,0,0,8.256797185011866,8.256797185011866,0,0,0,0,0,0,0,0,0,0,55.61,50.3,37.17,50.6,10,1,1,0,0,10,1,4,1,1293.5,151527.964901722,160846.1621822549,76350.44972159561,51035.59008162726,1213.853156567732 -2842,3536,6393,-9,6391,6392,1,1,21,0,0,0,1,1,1,0,4,6.937786459836809,6.91702579445615,0,0,0,-1088.149465437176,-9,2,2,2019,18,7,16,0,1,7,1,7.24558698614144,7.24558698614144,0,0,0,0,0,0,0,0,0,0,36.94,60.38,-9,-9,1.666666666666667,1,1,0,1,4,1,2,1,319,0,0,0,0,321.8579576320566 -2843,3537,6394,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,4.651691521695181,4.848310345952404,0,0,-1124.223540775165,0,3,2,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,4.730066962669777,33.48,37.99,-9,-9,8.333333333333334,4,5,0,1,0,9,2,1,929,47930.71809568976,69287.53031503636,0,0,1250.062652793599 -2844,3538,6395,-9,6398,6396,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.3807677802137,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,1323.25,252449.1591648078,190458.1775107812,0,0,5069.992388674726 -2844,3538,6396,6398,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.965001374842473,9.029525993904462,0,3,2,-53.32258870083149,0,1,1,2019,12,3,45,40,1,3,0,20.82376056835016,20.82376056835016,0,0,0,0,0,0,0,0,0,0,49.58,55.59,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,1323.25,252449.1591648078,190458.1775107812,0,0,5069.992388674726 -2844,3538,6397,-9,6398,6396,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.6418011092534,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1323.25,252449.1591648078,190458.1775107812,0,0,5069.992388674726 -2844,3538,6398,6396,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.978387396024536,8.775643747270367,0,3,-2,216.1760185102067,0,-9,-9,2019,6,0,36,38,1,0,0,16.66927585759274,16.66927585759274,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.58,55.59,8.333333333333334,1,1,0,0,11,12,5,1,1323.25,252449.1591648078,190458.1775107812,0,0,5069.992388674726 -2845,3539,6399,6400,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.427170130464797,7.688203630323146,0,24,-7,-5.060583246228436,0,2,2,2019,4,0,20,30,1,0,0,9.4157835116754,9.4157835116754,0,0,0,0,0,1,1,0,6.544257130250776,0,55.73,53.98,38.64,51.41,8.333333333333334,2,3,0,0,9,12,4,1,897.5,1494101.824074946,819876.045872754,304149.8466684123,0,3662.369105408252 -2845,3539,6400,6399,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,8.218586714476039,8.272055412016233,0,24,7,-9.867455919380093,0,2,1,2019,9,2,55,60,1,2,0,11.33078111837242,11.33078111837242,0,0,0,0,0,1,1,0,7.098139235401061,0,38.64,51.41,55.73,53.98,3.333333333333333,2,3,0,0,12,12,4,1,897.5,1494101.824074946,819876.045872754,304149.8466684123,0,3662.369105408252 -2846,3540,6401,6402,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,9.014702160555215,8.849699328819966,7,8,-85.51554595723803,0,2,1,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,7.908260722349713,9.092641933820213,55.9,31.06,57.06,57.76,8.333333333333334,1,1,0,0,0,13,5,1,261.5,3472071.199959579,1713279.261574176,480646.6708530156,0,7130.921823549746 -2846,3540,6402,6401,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.774795564820074,8.132849446676682,7,-8,-7.576605785095038,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.216153000302922,7.963150268047244,57.06,57.76,55.9,31.06,10,1,1,0,0,0,13,5,1,261.5,3472071.199959579,1713279.261574176,480646.6708530156,0,7130.921823549746 -2847,3541,6403,6404,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.793704840536423,7.575444491111911,0,3,1,-57.67603424594432,0,1,2,2019,24,11,37,37,1,11,0,5.551181629146571,5.551181629146571,0,0,0,.9341521291111761,0,1,1,0,0,0,39.74,39.79,46.67,55.57,8.333333333333334,1,1,0,0,5,9,4,1,436.6666666666667,-144834.127887897,40089.12382965715,0,0,3478.190100514748 -2847,3541,6404,6403,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.501174385248989,8.197373736037175,0,3,-1,80.80731321195972,0,1,1,2019,10,0,35,35,1,0,0,18.23053027620957,18.23053027620957,0,0,0,0,0,1,1,0,0,0,46.67,55.57,39.74,39.79,6.666666666666667,2,3,0,0,9,9,4,1,436.6666666666667,-144834.127887897,40089.12382965715,0,0,3478.190100514748 -2847,3541,6405,-9,6403,6404,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.1758040173469,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,436.6666666666667,-144834.127887897,40089.12382965715,0,0,3478.190100514748 -2848,3542,6406,-9,-9,-9,1,1,69,0,1,0,1,1,-9,0,4,7.139133232906629,7.416677550736148,6.073931216857511,0,0,-919.4044116704684,0,2,2,2019,8,0,10,25,1,0,0,11.49198146016508,11.49198146016508,0,0,0,0,2,1,1,0,5.724576812979134,6.299550302647011,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,4,2,1,209,74055.77030566327,0,0,0,1287.292310499164 -2848,3542,6407,-9,-9,6406,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.4579010620447,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,209,74055.77030566327,0,0,0,1287.292310499164 -2849,3543,6408,-9,6410,6411,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.3356877887552,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,626.5,18519.56840696132,111854.7599677268,0,0,3892.247806769081 -2849,3543,6409,-9,6410,6411,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.148584515148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,626.5,18519.56840696132,111854.7599677268,0,0,3892.247806769081 -2849,3543,6410,6411,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,8.264214718465013,8.39975713046552,0,4,-1,14.97036006061137,0,2,1,2019,6,0,30,44,1,0,0,13.2345979608101,13.2345979608101,0,0,0,0,0,1,1,0,0,0,56.33,51.02,57.06,57.76,10,1,1,0,0,7,9,5,1,626.5,18519.56840696132,111854.7599677268,0,0,3892.247806769081 -2849,3543,6411,6410,-9,-9,1,1,32,1,2,0,1,1,-9,0,5,8.940119928687,9.078238515371185,0,4,1,-53.44777083721563,0,2,2,2019,8,0,45,50,1,0,0,18.54336713594484,18.54336713594484,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.33,51.02,8.333333333333334,1,1,0,0,8,9,5,1,626.5,18519.56840696132,111854.7599677268,0,0,3892.247806769081 -2850,3544,6412,6413,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.954666813098365,9.091319320228433,0,22,-5,35.62986221686835,0,3,3,2019,5,0,40,37,1,0,0,19.89015531354022,19.89015531354022,0,0,0,0,0,0,0,0,3.569866943196799,0,60.12,54.8,54.79,55.86,10,1,1,0,0,7,10,5,1,280,1657229.150298316,1021744.018848707,446986.3389066487,29906.16192480839,3294.802590399265 -2850,3544,6413,6412,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.810961947038164,7.077723539462683,0,22,5,-.0196475566849852,0,3,3,2019,8,0,12,5,1,0,0,8.653229099389215,8.653229099389215,0,0,0,0,2,0,0,0,0,0,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,7,10,5,1,280,1657229.150298316,1021744.018848707,446986.3389066487,29906.16192480839,3294.802590399265 -2850,3545,6414,-9,6413,6412,1,1,20,0,0,0,2,2,1,0,3,8.199933434632372,8.087509864073937,0,0,0,-1074.974424598728,-9,2,1,2019,9,1,30,0,1,1,1,11.24990957545743,11.24990957545743,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,200,68467.45691474422,46730.87129914678,0,0,1758.313230207911 -2851,3546,6415,6416,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,-1,-37.93899846007199,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,.7689825952641718,0,50.57,37.79,57.42,49.34,5,1,1,0,0,2,10,2,1,645.5,903577.6750426469,93927.33069672443,311054.9848067795,0,1817.926099530825 -2851,3546,6416,6415,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.030575743399553,7.256438112430615,52,1,-10.35125314367,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.646389567119132,7.013844227383236,57.42,49.34,50.57,37.79,8.333333333333334,1,1,0,0,2,10,2,1,645.5,903577.6750426469,93927.33069672443,311054.9848067795,0,1817.926099530825 -2852,3547,6417,6418,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,45,-20,-90.06627731001862,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.78,17.81,58.72,51.29,3.333333333333333,1,1,0,0,3,10,2,1,2679.5,1404187.801249815,209902.7075187226,701735.8598871017,0,1991.442313520479 -2852,3547,6418,6417,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,6.139232175544899,5.933885477609987,45,20,-98.15508570704564,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.516538579962309,5.869058003936456,58.72,51.29,29.78,17.81,8.333333333333334,1,1,0,0,0,10,2,1,2679.5,1404187.801249815,209902.7075187226,701735.8598871017,0,1991.442313520479 -2853,3548,6419,6420,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.628314981326303,6.936962295821117,56,4,-25.98403947530788,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.3057445761274,6.737577868138453,54,46,51,46,8,1,1,0,0,0,7,2,1,422,152700.8709855882,37699.00337366978,0,0,1605.145938676745 -2853,3548,6420,6419,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,31.32741217433079,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.275499395296952,0,51,46,54,46,8,1,1,0,0,9,7,2,1,422,152700.8709855882,37699.00337366978,0,0,1605.145938676745 -2854,3549,6421,6422,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,7,-1,28.81985003317236,0,3,3,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,8.449986073202542,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,474.5,233595.3946460302,57558.19904332779,136384.8333588126,37528.45680769065,5889.172603414472 -2854,3549,6422,6421,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,6.933080923901606,8.60398469914708,8.309679996975483,7,1,-85.22182941136663,0,3,3,2019,6,0,35,50,1,0,0,2.613513706702041,2.613513706702041,0,0,0,0,0,0,0,0,8.121619761940364,8.342043326935695,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,7,13,4,1,474.5,233595.3946460302,57558.19904332779,136384.8333588126,37528.45680769065,5889.172603414472 -2855,3550,6423,6424,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.785343047181313,8.317573810634412,0,3,0,-12.13474989394614,0,2,2,2019,8,0,35,35,1,0,0,7.637839913309411,7.637839913309411,0,0,0,0,0,0,0,0,0,0,59.04,54.12,57.06,57.76,8.333333333333334,1,1,0,0,5,4,4,1,911.5,2535.758505831167,145206.7859911348,72041.19850999021,69734.21645138331,2981.112159400118 -2855,3550,6424,6423,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.280249063497218,7.93856761279236,0,3,0,-23.44728658654413,0,-9,-9,2019,7,0,47,42,1,0,0,9.246178282552718,9.246178282552718,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.04,54.12,8.333333333333334,1,1,0,0,2,4,4,1,911.5,2535.758505831167,145206.7859911348,72041.19850999021,69734.21645138331,2981.112159400118 -2856,3551,6425,6426,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.565698955344342,6.876029506082173,41,-4,-38.10803691363064,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.178049513245071,6.576855681534818,44.72,56.46,56.35,51.16,8.333333333333334,1,1,0,0,0,9,4,1,416,1955212.597908043,991773.9667659507,769490.3094000845,0,3210.960892109266 -2856,3551,6426,6425,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.340885648366179,8.321927542857477,41,4,-57.24400777061775,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.699749774439578,8.144332674960101,56.35,51.16,44.72,56.46,8.333333333333334,1,1,0,0,7,9,4,1,416,1955212.597908043,991773.9667659507,769490.3094000845,0,3210.960892109266 -2857,3552,6427,-9,6429,6430,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1078.097860870567,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,860.5,2579363.13406444,1484473.534017548,919897.6461628777,0,3825.312820139251 -2857,3552,6428,-9,6429,6430,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1141.518150142672,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,860.5,2579363.13406444,1484473.534017548,919897.6461628777,0,3825.312820139251 -2857,3552,6429,6430,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.495607309815941,8.414037009200397,0,30,-13,64.78772904227066,0,2,2,2019,12,0,59,49,1,0,0,8.331742973078413,8.331742973078413,0,0,0,0,0,1,1,0,3.195847778977326,0,51.49,57.57,60.02,56.42,8.333333333333334,1,1,0,0,7,7,4,1,860.5,2579363.13406444,1484473.534017548,919897.6461628777,0,3825.312820139251 -2857,3552,6430,6429,-9,-9,1,1,60,0,1,0,2,2,-9,0,5,0,7.606005413708433,7.618223676446645,28,13,109.1558413112853,0,3,3,2019,9,0,0,65,4,0,0,0,0,0,0,0,0,0,1,1,0,.9410212794781176,7.947007795560409,60.02,56.42,51.49,57.57,8.333333333333334,1,1,0,0,7,7,4,1,860.5,2579363.13406444,1484473.534017548,919897.6461628777,0,3825.312820139251 -2858,3553,6431,-9,6432,6433,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.777217543103,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,426.5,2019431.014371346,1118928.466151304,865762.3164210366,193108.3641118901,2828.180529986598 -2858,3553,6432,6433,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.081748545461415,6.973909950388244,0,19,-13,-45.19407914402602,0,-9,-9,2019,8,0,15,15,1,0,0,8.98448351673982,8.98448351673982,0,0,0,0,0,1,1,0,4.800467203120934,0,48.29,47.89,51,49,3.333333333333333,1,1,0,0,10,9,4,1,426.5,2019431.014371346,1118928.466151304,865762.3164210366,193108.3641118901,2828.180529986598 -2858,3553,6433,6432,-9,-9,1,1,59,0,1,0,1,1,-9,0,3,8.560375321779333,8.443217453912258,0,19,13,82.52913845884885,0,2,1,2019,10,0,50,60,1,1,0,12.87718389578465,12.87718389578465,0,0,0,0,0,1,1,0,3.11988949197128,0,51,49,48.29,47.89,7,4,2,0,0,1,9,4,1,426.5,2019431.014371346,1118928.466151304,865762.3164210366,193108.3641118901,2828.180529986598 -2858,3553,6434,-9,6432,6433,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1004.181812637007,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,426.5,2019431.014371346,1118928.466151304,865762.3164210366,193108.3641118901,2828.180529986598 -2859,3554,6435,-9,6436,-9,1,1,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.830105626914,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,803.25,-80213.30460633711,0,0,0,2438.931967470779 -2859,3554,6436,-9,-9,-9,1,0,28,2,3,0,2,2,-9,0,3,7.231943796355564,7.346475442707116,0,0,0,-1002.903957738352,-9,2,2,2019,8,0,18,0,1,0,0,8.295799654793123,8.295799654793123,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,5,2,0,803.25,-80213.30460633711,0,0,0,2438.931967470779 -2859,3554,6437,-9,6436,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.796679637898,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,2,0,803.25,-80213.30460633711,0,0,0,2438.931967470779 -2859,3554,6438,-9,6436,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-972.5277645655614,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,2,0,803.25,-80213.30460633711,0,0,0,2438.931967470779 -2860,3555,6439,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-936.866300160292,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.69,29.66,-9,-9,5,1,1,0,1,0,11,1,0,177,-86234.21255127514,-26622.43207310614,0,0,593.08108797394 -2861,3556,6440,-9,-9,-9,1,0,54,1,1,0,1,1,-9,0,4,8.660639805646118,8.469453288461521,6.973171869631194,0,0,-1102.339122611922,0,2,2,2019,12,0,45,40,1,0,0,15.09167534108206,15.09167534108206,0,0,0,0,7,1,1,0,7.338272133050752,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,145,376638.4748811992,-86561.03121634059,172941.6269169878,20215.25739281885,2652.722599409271 -2861,3557,6441,-9,6442,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.103226360934,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,1029.5,17530.54943745729,14615.88452667579,0,0,685.0366337866017 -2861,3557,6442,-9,6440,-9,1,0,22,1,1,0,1,1,-9,0,5,6.086625383519762,5.770423227688777,0,0,0,-972.1502014286157,0,1,1,2019,4,0,5,6,1,0,1,7.423868206181074,7.423868206181074,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,1029.5,17530.54943745729,14615.88452667579,0,0,685.0366337866017 -2861,3558,6443,-9,6440,-9,1,0,19,1,1,1,2,0,0,0,5,0,0,0,0,0,-961.0500989765383,-9,1,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,13,1,1,773,53421.98849934297,0,0,0,-465.7885554557316 -2862,3559,6444,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.737996500416713,5.630523555310583,0,0,-1044.295060487232,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.355366365199613,39.72,27.69,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,220,316233.863263621,139621.5809270267,196691.0648367191,0,557.3242397933717 -2862,3560,6445,-9,6444,-9,1,0,43,0,0,0,2,2,-9,0,3,6.591625349001804,6.293348326752908,0,0,0,-1033.617682424737,0,3,-9,2019,10,0,55,60,1,0,0,1.455727025154028,1.455727025154028,0,0,0,0,0,1,1,0,0,0,50.4,47.17,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,692,-66661.07007573014,0,0,0,274.6893609242417 -2863,3561,6446,6447,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.685151323759559,6.710493596985305,0,47,-6,-91.73223194365511,0,-9,-9,2019,11,0,12,11,1,2,0,7.186017239338656,7.186017239338656,0,0,0,0,0,1,1,0,0,0,49,48,52,47,7,1,1,0,0,10,4,3,1,158.5,201379.8166653032,228358.3180145342,155330.8889183452,0,1840.316574465745 -2863,3561,6447,6446,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.307429138022186,7.448095524837886,7,6,34.01921470957009,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.709228890293895,7.215158246632811,52,47,49,48,7,1,1,0,0,0,4,3,1,158.5,201379.8166653032,228358.3180145342,155330.8889183452,0,1840.316574465745 -2864,3562,6448,-9,6450,6449,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.2833827104597,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1576.75,18205.55267729103,18250.62119838876,270653.7584961177,208427.2061700643,2103.544430194549 -2864,3562,6449,6450,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,0,0,0,6,0,-150.7301712203131,0,-9,-9,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,60.02,56.42,8.333333333333334,1,1,1,0,6,13,3,1,1576.75,18205.55267729103,18250.62119838876,270653.7584961177,208427.2061700643,2103.544430194549 -2864,3562,6450,6449,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.190462124754022,8.486772896471681,0,6,0,74.55516408404921,0,2,2,2019,9,0,32,32,1,0,0,21.37212588669897,21.37212588669897,0,0,0,.7762709155002074,0,1,1,0,0,0,60.02,56.42,58.05,54.52,8.333333333333334,1,1,0,0,7,13,3,1,1576.75,18205.55267729103,18250.62119838876,270653.7584961177,208427.2061700643,2103.544430194549 -2864,3562,6451,-9,6450,6449,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.3170861363126,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,1576.75,18205.55267729103,18250.62119838876,270653.7584961177,208427.2061700643,2103.544430194549 -2865,3563,6452,6453,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.935426574356416,7.990108457976196,5.683366116374696,33,4,-79.57111144090887,0,3,3,2019,10,0,30,37,1,0,0,11.69481599579644,11.69481599579644,0,0,0,0,0,0,0,0,6.980811959132934,6.195379921693783,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,0,922,897468.257145807,943550.4614387976,162478.0024664506,67546.9364384097,4112.032655329704 -2865,3563,6453,6452,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.671236287348961,8.793062412764874,0,33,-4,46.119269605509,0,2,3,2019,6,0,50,50,1,0,0,13.03492753874119,13.03492753874119,0,0,0,0,0,0,0,0,.811716470010363,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,2,5,0,922,897468.257145807,943550.4614387976,162478.0024664506,67546.9364384097,4112.032655329704 -2866,3564,6454,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.292674589807058,7.045541173177097,0,0,-1072.703103694178,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.969441004449581,7.228658541555261,50,56.64,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,326,393812.068350052,169940.3312074962,121365.2941072223,0,1022.145691275478 -2867,3565,6455,-9,6457,-9,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-994.3649348470062,-9,3,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,527.5,174793.4877791503,162929.7657542401,0,0,1674.735866464915 -2867,3565,6456,-9,6457,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.6106618173436,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,1,0,527.5,174793.4877791503,162929.7657542401,0,0,1674.735866464915 -2867,3565,6457,-9,-9,-9,1,0,33,0,3,0,3,3,-9,1,3,0,0,0,0,0,-995.0394789172644,0,3,3,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,15.81,48.39,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,527.5,174793.4877791503,162929.7657542401,0,0,1674.735866464915 -2867,3565,6458,-9,6457,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.933925430962,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,527.5,174793.4877791503,162929.7657542401,0,0,1674.735866464915 -2868,3566,6459,6460,-9,-9,1,1,46,0,1,0,3,3,-9,1,2,0,0,0,2,1,0,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,38.29,34.01,18.86,28.18,3.333333333333333,1,1,0,1,0,12,1,0,525.6666666666666,-26683.02820548004,0,0,0,1953.06966432008 -2868,3566,6460,6459,-9,-9,1,0,45,0,1,0,3,3,-9,1,1,0,0,0,2,-1,0,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.86,28.18,38.29,34.01,0,1,1,0,0,0,12,1,0,525.6666666666666,-26683.02820548004,0,0,0,1953.06966432008 -2868,3566,6461,-9,6460,6459,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-993.6768550316733,-9,3,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,1,0,525.6666666666666,-26683.02820548004,0,0,0,1953.06966432008 -2868,3567,6462,-9,6460,6459,1,1,25,0,1,0,3,3,-9,1,1,0,0,0,0,0,-935.026949369521,0,3,3,2019,32,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,18.47,22.91,-9,-9,1.666666666666667,1,1,1,1,0,12,1,0,153,58090.32009487109,0,0,0,220.8667787377631 -2868,3568,6463,-9,6460,6459,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-976.0644804440655,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.99,46.79,-9,-9,10,1,1,1,1,0,12,1,0,271,-84150.42173387833,0,0,0,0 -2868,3569,6464,-9,6460,6459,1,0,21,0,1,0,2,2,-9,0,5,7.655292491851696,7.824152143451499,0,0,0,-1050.293671021596,0,3,3,2019,1,0,49,40,1,0,1,4.500304160307679,4.500304160307679,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,10,1,1,0,0,3,12,3,0,694,189920.8116281164,0,0,0,985.5570049005115 -2869,3570,6465,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.484724827085255,8.164779910864784,0,0,0,-981.1641522997629,-9,-9,-9,2019,11,0,42,0,1,0,0,14.21864819133377,14.21864819133377,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,482,-27881.68593311675,-104221.6167626178,0,0,2228.661765723983 -2870,3571,6466,-9,-9,-9,1,0,50,1,3,0,2,2,-9,0,2,8.424595605256155,8.352498427090431,0,0,0,-960.8643074624441,0,-9,-9,2019,12,0,50,65,1,0,0,7.875575976650774,7.875575976650774,0,0,0,0,0,1,1,0,0,0,39.13,44.46,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,87,39775.42054070625,62224.7416710551,0,0,812.6810840315067 -2870,3572,6467,6469,6466,-9,1,0,32,1,3,0,2,2,-9,0,3,6.296868895709171,6.565876224579053,0,10,-1,-34.70945827416726,0,2,2,2019,9,1,25,10,1,1,0,2.713001289715843,2.713001289715843,0,0,0,0,0,1,1,0,0,0,47.08,54.41,49,57,8.333333333333334,1,1,0,0,10,7,3,1,789,-56141.0839107286,27140.30345943071,0,0,2721.098208211663 -2870,3572,6468,-9,6467,6469,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.7267594639527,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,789,-56141.0839107286,27140.30345943071,0,0,2721.098208211663 -2870,3572,6469,6467,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,8.298816819981882,8.427582052905782,0,10,1,-9.631812179211781,0,-9,-9,2019,10,0,40,40,1,1,0,12.20767010830906,12.20767010830906,0,0,0,0,0,1,1,0,3.875549137836974,0,49,57,47.08,54.41,7,1,1,0,0,1,7,3,1,789,-56141.0839107286,27140.30345943071,0,0,2721.098208211663 -2871,3573,6470,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-982.761516331734,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,33.51,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1376,-118416.7440447958,0,0,0,2390.280223292915 -2872,3574,6471,6472,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.943860573115034,8.901542198735147,6.089749008908243,40,-3,-71.31584079478186,0,2,3,2019,7,0,43,49,1,0,0,22.30000911316849,22.30000911316849,0,0,0,0,0,1,1,0,6.196283672668261,6.718759027027371,58.71,40.92,59.07,43.05,8.333333333333334,1,1,0,0,11,7,5,1,422.5,1955383.139479788,949533.8427683902,671219.8930010605,0,4290.717947947125 -2872,3574,6472,6471,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.703379616008958,6.476998680224979,40,3,100.4310716587337,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.06908111243587,6.469584654675304,59.07,43.05,58.71,40.92,8.333333333333334,1,1,0,0,11,7,5,1,422.5,1955383.139479788,949533.8427683902,671219.8930010605,0,4290.717947947125 -2873,3575,6473,6474,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,26,4,0,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,28.78,29.2,48.12,18.77,1.666666666666667,1,1,0,0,0,12,1,0,403.5,0,0,0,0,886.324115563446 -2873,3575,6474,6473,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,26,-4,0,0,-9,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,18.77,28.78,29.2,6.666666666666667,1,1,0,0,0,12,1,0,403.5,0,0,0,0,886.324115563446 -2874,3576,6475,-9,6476,6478,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.1294923248561,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,1017.75,579808.4134623375,217887.973113481,245189.1802879047,0,2922.045871489331 -2874,3576,6476,6478,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.477964527059572,7.327607465789175,0,20,-5,140.7127640292576,0,2,2,2019,12,0,28,28,1,0,0,7.589228104840714,7.589228104840714,0,0,0,0,0,1,0,1,6.954629054303841,0,53.14,51.28,38.98,46.38,6.666666666666667,2,3,0,1,12,10,3,1,1017.75,579808.4134623375,217887.973113481,245189.1802879047,0,2922.045871489331 -2874,3576,6477,-9,6476,6478,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-925.852944554823,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,4,2,-9,0,0,10,3,1,1017.75,579808.4134623375,217887.973113481,245189.1802879047,0,2922.045871489331 -2874,3576,6478,6476,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,7.812703904614974,7.662486862062659,4.56752461322469,20,5,41.50905455927108,0,3,3,2019,21,9,42,41,1,9,0,7.202796706177231,7.202796706177231,0,0,0,0,0,1,0,1,0,4.907682707024612,38.98,46.38,53.14,51.28,3.333333333333333,1,1,0,1,8,10,3,1,1017.75,579808.4134623375,217887.973113481,245189.1802879047,0,2922.045871489331 -2875,3577,6479,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.707285417379421,8.624973739700717,0,0,0,-1088.841588854366,0,2,2,2019,13,2,52,50,1,2,0,13.77399233928838,13.77399233928838,0,0,0,0,0,0,0,0,0,0,45.12,34.87,-9,-9,5,1,1,0,0,13,7,5,1,313,83983.64774653422,72887.53749104959,0,0,2702.788782176036 -2875,3578,6480,-9,6479,-9,1,0,35,0,0,0,1,1,-9,0,4,8.98367162429801,9.002288480698024,0,0,0,-944.9706713541949,0,2,-9,2019,9,0,44,45,1,0,1,20.91866907762047,20.91866907762047,0,0,0,0,0,0,0,0,4.361146068469114,0,55.19,54.26,-9,-9,8.333333333333334,4,2,0,0,7,7,5,1,448,360307.4655852,7363.373946589614,570077.9236594512,248357.0470233317,2480.168184506186 -2876,3579,6481,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1120.756213924906,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.95867968185131,0,40.38,61.66,-9,-9,5,3,4,0,0,0,9,1,0,626,21447.86329759003,0,0,0,579.3990810415087 -2877,3580,6482,6483,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.646639640534696,7.589885552710609,0,3,20,169.7551858635297,0,2,3,2019,8,0,55,55,1,0,0,4.468435828127657,4.468435828127657,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,6.666666666666667,1,1,0,0,9,10,3,0,580.5,644737.2129106591,456058.6169042649,180630.1608981534,26555.39546268955,1148.13707637249 -2877,3580,6483,6482,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,0,0,0,3,-20,.0301902491787462,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,6.666666666666667,2,3,0,0,0,10,3,0,580.5,644737.2129106591,456058.6169042649,180630.1608981534,26555.39546268955,1148.13707637249 -2878,3581,6484,-9,6486,6485,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.713974357058,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,352.3333333333333,-103392.4737268231,-1694.968786022922,0,0,1598.932043898523 -2878,3581,6485,6486,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,0,0,0,14,0,-31.2125729894262,0,2,2,2019,14,2,0,39,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.6,52.84,53.53,51,8.333333333333334,1,1,1,1,8,11,3,1,352.3333333333333,-103392.4737268231,-1694.968786022922,0,0,1598.932043898523 -2878,3581,6486,6485,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.593725249389655,7.903946665034369,0,12,9,-24.28669231878084,0,2,2,2019,10,0,32,27,1,0,0,10.02241319311718,10.02241319311718,0,0,0,0,0,1,1,0,0,0,53.53,51,49.6,52.84,10,1,1,0,1,9,11,3,1,352.3333333333333,-103392.4737268231,-1694.968786022922,0,0,1598.932043898523 -2878,3582,6487,-9,6486,6485,1,0,19,0,1,0,2,2,-9,0,4,6.130981466942373,6.444696146825332,0,0,0,-1018.920338089162,0,2,2,2019,11,0,40,20,1,2,1,1.581600849155331,1.581600849155331,0,0,0,0,0,1,1,0,.4614452318469842,0,46,58,-9,-9,7,1,1,0,0,1,11,2,1,174,-29746.69057027353,0,0,0,679.1904684802726 -2879,3583,6488,6490,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.854373456306051,9.634525561678355,0,11,4,82.30394439195101,0,1,1,2019,11,0,50,40,1,0,0,40.31763106722387,40.31763106722387,0,0,0,0,0,0,0,0,3.77067881195206,0,36.75,54.56,40.75,58.26,6.666666666666667,2,3,0,0,12,8,5,1,309,1425275.837689991,491608.823602063,887856.2425481381,0,6663.337163290814 -2879,3583,6489,-9,6490,6488,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.9747307800071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,309,1425275.837689991,491608.823602063,887856.2425481381,0,6663.337163290814 -2879,3583,6490,6488,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.473872280389149,7.589600688241461,0,11,-4,43.90639544248918,0,1,1,2019,21,9,23,0,1,9,0,9.636067243923986,9.636067243923986,0,0,0,0,0,0,0,0,0,0,40.75,58.26,36.75,54.56,1.666666666666667,2,3,0,0,1,8,5,1,309,1425275.837689991,491608.823602063,887856.2425481381,0,6663.337163290814 -2879,3583,6491,-9,6490,6488,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.775053343548,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,309,1425275.837689991,491608.823602063,887856.2425481381,0,6663.337163290814 -2880,3584,6492,6493,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,7,8,0,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.58,49.75,45.61,46.62,8.333333333333334,1,1,0,0,3,9,2,1,460.5,94687.965718983,0,226609.8366890097,0,1578.112377449186 -2880,3584,6493,6492,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-8,0,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.61,46.62,56.58,49.75,8.333333333333334,1,1,0,0,0,9,2,1,460.5,94687.965718983,0,226609.8366890097,0,1578.112377449186 -2881,3585,6494,6495,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.378421778255866,9.250319576969654,0,8,3,15.47167523103891,0,-9,-9,2019,7,0,55,39,1,0,0,22.82077492041718,22.82077492041718,0,0,0,0,0,0,0,0,2.154663606844775,0,45.81,61.51,58.23,37.93,8.333333333333334,1,1,0,0,11,8,5,1,1025.5,6073817.8016285,5263807.587217735,585627.1107418363,120305.5280886613,4756.060547210669 -2881,3585,6495,6494,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.373790965050224,8.33332555191328,0,8,-3,-79.16513974820768,0,2,2,2019,8,1,41,41,1,1,0,13.86124318492739,13.86124318492739,0,0,0,0,0,0,0,0,0,0,58.23,37.93,45.81,61.51,8.333333333333334,4,2,0,0,9,8,5,1,1025.5,6073817.8016285,5263807.587217735,585627.1107418363,120305.5280886613,4756.060547210669 -2882,3586,6496,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.38427813430194,8.123543891582628,0,0,0,-988.9767884065478,0,3,2,2019,9,0,38,38,1,0,0,10.85763688729586,10.85763688729586,0,0,0,0,0,0,0,0,0,0,48.88,47.84,-9,-9,5,3,4,0,0,12,8,5,0,796,-22641.68529356221,0,0,0,1916.090917968105 -2883,3587,6497,-9,6498,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.2411254643908,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,618,135411.0216838069,43513.71816279317,137450.015157675,45235.81103789899,1412.11179922525 -2883,3587,6498,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.805149670397536,7.514025586658037,0,0,0,-1018.648795882993,0,1,2,2019,24,12,21,22,1,12,0,12.2232446311791,12.2232446311791,0,0,0,0,0,1,1,0,.4289913304552803,0,40.46,45.27,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,618,135411.0216838069,43513.71816279317,137450.015157675,45235.81103789899,1412.11179922525 -2884,3588,6499,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.694701040649138,9.059927014702518,0,0,0,-1063.970771588041,0,-9,-9,2019,3,0,41,42,1,0,0,19.83912420656789,19.83912420656789,0,0,0,0,0,0,0,0,3.625352420738709,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,10,9,5,0,1496,-165853.3039228141,-14477.61357652768,0,0,2059.770947709407 -2885,3589,6500,6501,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,64,2,-29.69026288565841,0,3,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,50,35,27.24,26.68,6.666666666666667,1,1,0,0,0,9,2,1,679,18082.83344438425,0,0,0,1720.575570060763 -2885,3589,6501,6500,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.675677556590252,5.039961200084468,64,-2,-61.12646584557268,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,0,2.959089756101799,0,0,1,1,0,0,4.741376594881636,27.24,26.68,50,35,8.333333333333334,1,1,0,0,0,9,2,1,679,18082.83344438425,0,0,0,1720.575570060763 -2886,3590,6502,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.36577870280377,8.349639143096077,7.07968770658873,0,0,-1001.44157503637,0,3,2,2019,11,1,45,41,1,1,0,11.95193981123594,11.95193981123594,0,0,0,0,0,0,0,0,1.090260145234919,7.66647392247791,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,135,419526.7776237145,659223.7040393781,144104.5035480341,43424.39681250064,2467.381496262705 -2887,3591,6503,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,7.495495514478256,7.692867264841618,5.742965190878179,0,0,-888.8257198772324,0,2,3,2019,16,6,32,32,1,6,0,6.011185104800084,6.011185104800084,0,0,0,0,0,1,1,0,5.596302325407693,0,36.27,28.62,-9,-9,3.333333333333333,1,1,0,0,7,4,3,1,479,215168.1974025416,122897.3109611476,0,0,1569.824785940831 -2888,3592,6504,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-962.1972445552175,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.136581316154283,0,0,1,1,0,0,0,51.09,9.4,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,3230,313748.8206216578,0,111843.2682903123,18443.17342584674,999.5569756520009 -2889,3593,6505,6506,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.108837013448434,7.321523903133989,45,-2,-64.64734650384956,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.082526468130911,7.036795627282498,58.61,40.49,60.12,54.8,8.333333333333334,1,1,0,0,6,7,4,1,1579,51818.34806564136,77111.16344943702,0,0,4053.411522254986 -2889,3593,6506,6505,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.380791014999662,8.379323428616649,6.893653498492561,45,2,122.5901139930759,0,-9,-9,2019,5,0,30,28,1,0,0,18.62424046354548,18.62424046354548,0,0,0,0,0,0,0,0,6.279518348360003,7.167488612362535,60.12,54.8,58.61,40.49,10,1,1,0,0,9,7,4,1,1579,51818.34806564136,77111.16344943702,0,0,4053.411522254986 -2890,3594,6507,6508,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.270259477544027,7.546515922925418,44,2,-1.307721265632473,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.036515988296151,57.33,53.46,50,47,8.333333333333334,1,1,0,0,8,13,2,1,1326,583975.4434592285,419302.4684821897,236961.0829476452,0,1945.76889740822 -2890,3594,6508,6507,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,44,-2,41.49275061509427,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.33,53.46,7,1,1,0,0,0,13,2,1,1326,583975.4434592285,419302.4684821897,236961.0829476452,0,1945.76889740822 -2891,3595,6509,-9,6510,6511,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.967638725739,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1092.25,433960.4720967302,303827.7392046944,317662.4871948883,182811.9765254332,4001.905389838887 -2891,3595,6510,6511,-9,-9,1,0,43,0,2,0,2,2,-9,1,2,7.806039564328562,7.7581717098131,0,24,4,-20.50262808782618,0,1,1,2019,13,1,17,17,1,1,0,16.35262164302598,16.35262164302598,0,0,0,0,27,1,1,0,3.621121685367637,0,47.56,48.93,48.71,51.81,8.333333333333334,1,1,0,0,8,4,4,1,1092.25,433960.4720967302,303827.7392046944,317662.4871948883,182811.9765254332,4001.905389838887 -2891,3595,6511,6510,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,9.006727873871498,9.075550220555023,0,24,-4,-37.27450638340612,0,2,2,2019,8,0,55,56,1,0,0,11.0647572052075,11.0647572052075,0,0,0,0,27,1,1,0,0,0,48.71,51.81,47.56,48.93,8.333333333333334,1,1,0,0,9,4,4,1,1092.25,433960.4720967302,303827.7392046944,317662.4871948883,182811.9765254332,4001.905389838887 -2891,3595,6512,-9,6510,6511,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.586749222227,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1092.25,433960.4720967302,303827.7392046944,317662.4871948883,182811.9765254332,4001.905389838887 -2892,3596,6513,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,6.657841912204473,6.329262769621037,0,0,0,-1031.874772533412,-9,1,1,2019,11,1,75,0,1,1,0,.9636689594402075,.9636689594402075,0,0,0,0,5.48,1,1,0,0,0,45.82,38.67,-9,-9,3.333333333333333,1,1,0,1,8,10,2,0,724,-23966.85962555243,0,0,0,773.3085712225133 -2893,3597,6514,6515,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,33,-6,-96.97805461994299,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.107773969915591,0,30.87,58.96,45.63,46.6,6.666666666666667,1,1,0,0,0,10,3,1,372,794378.3360955475,420662.5899526501,239503.1403645524,0,3326.920073657121 -2893,3597,6515,6514,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.353333157605178,8.039332346757718,33,6,-12.04831493571659,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,.0982098902071762,0,1,1,0,4.478950219328216,7.91858681880366,45.63,46.6,30.87,58.96,8.333333333333334,1,1,0,0,0,10,3,1,372,794378.3360955475,420662.5899526501,239503.1403645524,0,3326.920073657121 -2894,3598,6516,6517,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,0,0,71,-5,8.490526628998015,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,3.94167988712305,0,36.41,57.29,56,44,6.666666666666667,1,1,0,0,0,7,2,1,607.5,767994.7852294331,37133.76285921637,664680.1293414575,0,1586.695234241923 -2894,3598,6517,6516,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,5.80617476860306,6.021343031794928,71,5,-91.74954353819062,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.049779598188396,5.698535967454128,56,44,36.41,57.29,8,1,1,0,0,0,7,2,1,607.5,767994.7852294331,37133.76285921637,664680.1293414575,0,1586.695234241923 -2895,3599,6518,6519,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.587499986709529,7.501822894401178,0,32,-4,-30.60951923713555,0,2,2,2019,5,1,28,30,1,1,0,9.315794394374102,9.315794394374102,0,0,0,0,2,0,0,0,0,0,59.31,49.81,57.07,49.39,10,1,1,0,0,11,5,4,1,397.5,693236.0126169047,474786.5198793578,293484.3975113771,56922.8059684917,2351.965473074672 -2895,3599,6519,6518,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.431106340568881,8.205951865226067,0,32,4,56.28370141505417,0,2,2,2019,9,0,42,38,1,0,0,10.53166864511423,10.53166864511423,0,0,0,0,2,0,0,0,0,0,57.07,49.39,59.31,49.81,8.333333333333334,1,1,0,0,10,5,4,1,397.5,693236.0126169047,474786.5198793578,293484.3975113771,56922.8059684917,2351.965473074672 -2895,3600,6520,-9,6518,6519,1,0,25,0,0,0,2,2,-9,0,4,6.784595898571799,6.869417265410469,0,0,0,-1117.310395904977,-9,2,2,2019,11,0,30,0,1,2,1,3.10320389140787,3.10320389140787,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,6,5,2,1,156,2835.065130714513,0,0,0,218.7297039797887 -2896,3601,6521,6522,-9,-9,1,1,75,0,0,0,1,1,-9,0,1,0,7.937099161212872,7.832866328679802,42,5,-124.0102864931166,0,2,1,2019,14,4,0,15,4,4,0,0,0,1,0,0,0,0,1,1,0,2.95705620815729,7.953583735571217,63.74,23.76,47.76,48.16,8.333333333333334,1,1,0,0,10,2,5,1,817,1786682.353289926,1129798.66599664,356594.6227430315,0,5274.649116670328 -2896,3601,6522,6521,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,7.885788966237778,8.706849852000085,8.191988626071364,42,-5,-34.02225465166872,0,3,2,2019,15,4,72,70,1,4,0,3.315320218785345,3.315320218785345,0,0,0,0,0,1,1,0,7.31139818740444,8.15138866714951,47.76,48.16,63.74,23.76,6.666666666666667,1,1,0,0,10,2,5,1,817,1786682.353289926,1129798.66599664,356594.6227430315,0,5274.649116670328 -2896,3602,6523,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.208330799690064,7.518672743006088,0,0,0,-975.3972694390994,-9,2,2,2019,9,0,38,0,1,0,0,4.500756184774428,4.500756184774428,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,10,1,1,0,0,5,2,3,1,833,26523.46655455708,0,0,0,1344.197134215152 -2897,3603,6524,-9,6525,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.183718877674,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,1,0,515.6666666666666,75963.6683680343,0,0,0,1580.60270158039 -2897,3603,6525,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1115.45334161048,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,515.6666666666666,75963.6683680343,0,0,0,1580.60270158039 -2897,3603,6526,-9,6525,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.214303712516,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,515.6666666666666,75963.6683680343,0,0,0,1580.60270158039 -2898,3604,6527,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,5.823759884596942,5.798896309682774,0,0,-1068.342519925088,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.440114378082766,5.80056305974869,33.79,43.83,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,555,179731.2898054717,66313.53731956058,0,0,1062.138745550677 -2899,3605,6528,6530,-9,-9,1,0,33,0,2,0,3,3,-9,0,2,0,0,0,12,0,-89.81654595580949,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.61,55.89,51,57,6.666666666666667,2,3,0,0,0,4,2,0,1319.5,-50415.13813493428,0,0,0,2059.835859634312 -2899,3605,6529,-9,6528,6530,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.8408276633477,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1319.5,-50415.13813493428,0,0,0,2059.835859634312 -2899,3605,6530,6528,-9,-9,1,1,33,0,2,0,3,3,-9,0,4,7.194698274795932,7.221791517178301,0,6,0,6.877268758937714,0,-9,-9,2019,10,0,16,16,1,1,0,12.15654944422869,12.15654944422869,0,0,0,0,0,1,1,0,0,0,51,57,30.61,55.89,7,2,3,0,0,1,4,2,0,1319.5,-50415.13813493428,0,0,0,2059.835859634312 -2899,3605,6531,-9,6528,6530,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.209029647284,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1319.5,-50415.13813493428,0,0,0,2059.835859634312 -2900,3606,6532,6533,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,6.99128191861653,6.662086298427216,36,8,141.3867320832446,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.202483127557175,6.326901488387039,49.2,48.71,58.74,35.37,10,1,1,0,0,0,10,2,0,1000.5,260379.8373407166,76264.61155656603,102484.5835582867,0,2069.320164200294 -2900,3606,6533,6532,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,36,-8,97.62326964024462,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.574636059144289,0,58.74,35.37,49.2,48.71,1.666666666666667,1,1,0,0,0,10,2,0,1000.5,260379.8373407166,76264.61155656603,102484.5835582867,0,2069.320164200294 -2901,3607,6534,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.605004205330685,8.572230366551908,0,0,0,-873.0144546798799,-9,2,3,2019,10,0,37,0,1,0,0,17.0838524997594,17.0838524997594,0,0,0,0,2,0,0,0,0,0,44.72,57.73,-9,-9,3.333333333333333,1,1,0,0,11,11,5,0,263,1671061.041803897,1248239.715501042,222977.9766872304,0,2387.836467682528 -2901,3608,6535,-9,6534,-9,1,1,34,0,0,0,1,1,-9,0,3,8.257692564757084,8.348490273977156,0,0,0,-964.8635135073407,-9,2,2,2019,2,0,35,0,1,0,1,10.81279182432909,10.81279182432909,0,0,0,0,0,0,0,0,4.295724297029124,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,11,4,0,1109,86755.30234171508,-55826.54454498702,0,0,1015.867646349639 -2901,3609,6536,-9,6534,-9,1,1,36,0,0,0,1,1,-9,0,2,8.180539863412651,8.751386325749156,0,0,0,-941.4698073270056,0,2,2,2019,21,7,38,30,1,7,1,14.33796745065908,14.33796745065908,0,0,0,0,0,0,0,0,0,0,37.68,56.2,-9,-9,3.333333333333333,1,1,0,0,10,11,5,0,80,101176.9190574242,-19806.10388337546,161643.0513047394,45204.54344551007,2211.409777486369 -2902,3610,6537,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.443137420813477,8.453297476381962,0,0,0,-1064.372943215866,0,3,1,2019,13,1,15,55,1,1,0,32.18556597889374,32.18556597889374,0,0,0,0,0,0,0,0,.4136275573305986,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,1,11,1,5,0,270,-109950.6706242731,76908.78657283279,0,0,2148.257844327919 -2903,3611,6538,6539,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.282809349380408,6.711829503907743,46,-1,-127.5184521147131,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.165366797558971,6.664319315465799,56.94,49.53,60.12,54.8,10,1,1,0,0,0,12,4,1,1430,1368053.970291266,565858.8008199148,151030.3679958456,0,3672.138353841804 -2903,3611,6539,6538,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.480118857665623,8.834806839822846,0,46,1,29.93641206959675,0,3,3,2019,7,0,37,37,1,0,0,12.87964021046762,12.87964021046762,0,0,0,0,0,1,1,0,5.430585691675134,0,60.12,54.8,56.94,49.53,8.333333333333334,1,1,0,0,9,12,4,1,1430,1368053.970291266,565858.8008199148,151030.3679958456,0,3672.138353841804 -2904,3612,6540,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.977229813908,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,58.73,29.86,-9,-9,1.666666666666667,1,1,0,1,4,12,1,0,393,113632.7027541657,0,0,0,1280.379554853218 -2904,3613,6541,-9,-9,6540,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-947.3798805412389,0,-9,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,45.3,-9,-9,5,4,5,1,1,0,12,1,0,1019,0,0,0,0,0 -2904,3614,6542,-9,-9,6540,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-993.4099138215634,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,509,-43655.5897510314,0,0,0,0 -2905,3615,6543,-9,6548,6545,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1066.342875851826,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,1,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2905,3615,6544,-9,6548,6545,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-988.0192362606185,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2905,3615,6545,6548,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.64930652899996,8.436423905854742,0,19,0,39.03515574890346,0,3,3,2019,10,0,45,49,1,0,0,12.64643166649851,12.64643166649851,0,0,0,0,0,1,1,0,0,0,45.91,59.89,28.47,63.88,8.333333333333334,1,1,0,0,11,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2905,3615,6546,-9,6548,6545,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.4449687528336,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2905,3615,6547,-9,6548,6545,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.807179580241,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2905,3615,6548,6545,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.552458656694196,7.593892306013428,0,19,0,19.91501129244123,0,-9,-9,2019,25,11,27,27,1,11,0,8.575466374579827,8.575466374579827,0,0,0,0,0,1,1,0,0,0,28.47,63.88,45.91,59.89,3.333333333333333,1,1,0,1,11,1,4,0,694.5,-3930.547722123199,834.6641035676779,96683.22971546747,94758.0889916608,3507.223745079156 -2906,3616,6549,6550,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.203748517182923,7.67041219081166,6.281603728417281,37,-1,-35.49063242484073,0,3,3,2019,7,0,18,20,1,0,0,10.81151061882314,10.81151061882314,0,0,0,0,0,0,0,0,2.68642964409307,6.630514149167259,54.61,49.13,48.93,50.55,8.333333333333334,2,3,0,0,13,8,5,1,2512,1906404.06301688,1356506.544934408,365110.0760130814,0,4688.302480071407 -2906,3616,6550,6549,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.497214157644009,8.888609361789474,6.843441639553082,37,1,-151.3885653337049,0,2,3,2019,9,0,38,37,1,0,0,15.63773338983213,15.63773338983213,0,0,0,0,0,0,0,0,8.39304621702642,7.508432806821484,48.93,50.55,54.61,49.13,8.333333333333334,2,3,0,0,13,8,5,1,2512,1906404.06301688,1356506.544934408,365110.0760130814,0,4688.302480071407 -2907,3617,6551,6552,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,9.516358896771253,9.275539291667819,17,5,92.65713079400071,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.945556331804934,9.416661497440909,52.24,50.75,49.27,56.95,8.333333333333334,1,1,0,0,0,8,5,1,464,1443259.561685061,470829.2323276125,670072.6057437903,244013.6290463043,11433.25996729765 -2907,3617,6552,6551,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.371866049497882,9.394961766431072,0,17,-5,45.48178585723058,0,2,2,2019,7,1,35,80,1,1,0,43.27043577237117,43.27043577237117,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.24,50.75,5,1,1,0,0,7,8,5,1,464,1443259.561685061,470829.2323276125,670072.6057437903,244013.6290463043,11433.25996729765 -2908,3618,6553,6554,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.076793250128786,8.91714054372178,0,6,0,-132.5377722752164,0,-9,-9,2019,14,4,40,43,1,4,0,27.07252100725293,27.07252100725293,0,0,0,0,0,0,0,0,4.173309425348395,0,38.34,62.12,49.52,56.95,6.666666666666667,4,2,0,0,6,7,5,0,302.5,340993.3372755988,173412.3425147397,346586.0587747472,168122.3548546113,4894.829864159055 -2908,3618,6554,6553,-9,-9,1,0,29,0,0,0,3,3,-9,0,3,8.12331467292864,7.961968987835949,0,6,0,1.666721034521023,0,2,2,2019,9,1,40,38,1,1,0,9.77097074460762,9.77097074460762,0,0,0,0,0,0,0,0,0,0,49.52,56.95,38.34,62.12,8.333333333333334,1,1,0,0,11,7,5,0,302.5,340993.3372755988,173412.3425147397,346586.0587747472,168122.3548546113,4894.829864159055 -2909,3619,6555,6556,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,6.743173769863066,6.568251326869926,11,5,-162.6202880471467,0,-9,-9,2019,7,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,7.009398509248285,6.458726682114916,50.98,33.55,62.49,55.09,8.333333333333334,1,1,0,0,12,7,2,1,1585.5,1427683.828793084,546981.4305154777,764189.3443961968,0,1148.65010721104 -2909,3619,6556,6555,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,5.592973316254862,5.808631485700706,35,-5,129.2612746273763,0,2,2,2019,5,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.898156579070769,62.49,55.09,50.98,33.55,10,1,1,0,0,12,7,2,1,1585.5,1427683.828793084,546981.4305154777,764189.3443961968,0,1148.65010721104 -2910,3620,6557,6558,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.407220128966175,7.284160602752618,37,-6,-13.17687895272201,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.695342975987216,7.492164083862997,57.33,53.46,52.22,53.26,8.333333333333334,1,1,0,0,2,5,2,1,713,379480.7090833315,322016.250674878,179045.2879487432,0,1937.802571489653 -2910,3620,6558,6557,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,37,6,-54.77256340435948,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.649535723368336,0,52.22,53.26,57.33,53.46,8.333333333333334,1,1,0,0,0,5,2,1,713,379480.7090833315,322016.250674878,179045.2879487432,0,1937.802571489653 -2911,3621,6559,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.999205905652718,6.847223351130721,0,0,-1139.068983356015,0,2,2,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.640907009965574,50.38,44.32,-9,-9,8.333333333333334,1,1,0,1,11,2,2,0,1496,-138195.8645999966,-28607.05616792088,220147.9577688887,0,1053.924747818914 -2912,3622,6560,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-997.2293958936818,0,3,3,2019,12,3,0,50,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.63,25.47,-9,-9,6.666666666666667,1,1,1,0,7,5,1,0,2472,-48787.10810748654,-57715.97558896404,0,0,1100.614351737801 -2912,3623,6561,-9,-9,6560,1,1,21,0,0,0,2,2,-9,0,4,7.740715022109553,7.716221750625468,0,0,0,-1045.561276219566,0,2,3,2019,10,0,45,37,1,1,1,6.360049937974201,6.360049937974201,0,0,0,1.03007527536553,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,3,0,1543,-178247.2243889502,0,0,0,1880.575194823727 -2913,3624,6562,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.644735473140868,8.63103228009936,0,10,-5,-113.0325251675908,0,2,2,2019,29,11,43,43,1,11,0,14.87997235925111,14.87997235925111,0,0,0,0,2,0,0,0,0,0,31.83,43.62,39.39,37.66,5,1,1,0,0,11,7,5,1,360,-9457.19925515652,0,0,0,1890.855139688751 -2913,3625,6563,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.006920973202543,8.334969503025013,0,10,5,-28.78703200082003,0,3,3,2019,13,1,38,38,1,1,0,13.84837250594402,13.84837250594402,0,0,0,0,0,0,0,0,3.522983518876354,0,39.39,37.66,31.83,43.62,6.666666666666667,1,1,0,0,12,7,5,1,793,236138.8175022644,0,0,0,2214.902951025556 -2914,3626,6564,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.696251336636035,7.532040078035604,0,0,0,-1090.117125890892,0,2,2,2019,21,9,60,0,1,9,0,3.28519072013327,3.28519072013327,0,0,0,0,0,0,0,0,0,0,38.41,43.03,-9,-9,3.333333333333333,1,1,0,0,5,5,3,0,234,350535.6330276876,0,0,0,519.78302145884 -2915,3627,6565,6566,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.367852337191933,7.25871727800033,10,-1,-12.25938780740361,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.230612395247269,7.329638674116753,43.83,52.7,49.91,58.02,8.333333333333334,1,1,0,0,11,13,4,1,650,424549.4202154387,163643.9155382575,372108.2041275761,94358.11006497359,2243.936026434475 -2915,3627,6566,6565,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.349251154781998,8.044536562028352,0,10,1,-30.82780558457424,0,-9,-9,2019,11,0,37,37,1,0,0,12.4855004792997,12.4855004792997,0,0,0,0,0,0,0,0,6.148936703338273,0,49.91,58.02,43.83,52.7,8.333333333333334,1,1,0,0,11,13,4,1,650,424549.4202154387,163643.9155382575,372108.2041275761,94358.11006497359,2243.936026434475 -2916,3628,6567,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.65755717933517,7.836392882832215,0,0,-970.4460661842165,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.897599761995672,8.083202215642638,62.49,55.09,-9,-9,10,1,1,0,0,9,4,3,1,1248,812149.9212619796,714311.8808527207,191618.9600823992,0,1308.693264959788 -2917,3629,6568,6569,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.263243541685283,7.607198363560414,0,28,5,57.87465488496499,0,3,3,2019,7,0,50,50,1,0,0,4.32959862290581,4.32959862290581,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.55,44.33,8.333333333333334,1,1,0,0,11,13,2,1,1329.5,459349.440514341,120883.6096090869,152545.1672075292,0,2047.088055241132 -2917,3629,6569,6568,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,27,-5,12.89068622985133,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,57.16,56.15,1.666666666666667,1,1,0,0,1,13,2,1,1329.5,459349.440514341,120883.6096090869,152545.1672075292,0,2047.088055241132 -2917,3630,6570,-9,6569,6568,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1016.684493662389,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,5.970359621277041,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,6,13,1,1,380,-104087.8469758239,0,0,0,0 -2918,3631,6571,-9,6572,6573,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.278117991967,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.1256759435801484,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,663.75,176525.2149093121,97654.31272771732,0,0,4589.88861539378 -2918,3631,6572,6573,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.480127972825988,8.521999313266734,0,6,-6,109.2173592664333,0,1,2,2019,25,10,45,50,1,10,0,13.62840748561884,13.62840748561884,0,0,0,0,0,1,1,0,0,0,35.61,59.41,52,56,3.333333333333333,1,1,0,0,9,1,5,1,663.75,176525.2149093121,97654.31272771732,0,0,4589.88861539378 -2918,3631,6573,6572,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.543849360580655,8.200951544575716,0,6,6,-95.40911924671094,-9,2,1,2019,9,0,35,0,1,1,0,15.47088230467973,15.47088230467973,0,0,0,0,0,1,1,0,0,0,52,56,35.61,59.41,7,1,1,0,0,1,1,5,1,663.75,176525.2149093121,97654.31272771732,0,0,4589.88861539378 -2918,3631,6574,-9,6572,6573,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.676526351525,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,663.75,176525.2149093121,97654.31272771732,0,0,4589.88861539378 -2919,3632,6575,6576,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.708918860259063,7.522772751135022,2,2,-20.73624199863306,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,.5680762062806086,7.854721533737629,38.51,59.43,57.82,28.48,3.333333333333333,1,1,0,0,0,13,3,1,1249.5,548786.7425133941,315818.609902187,328719.7955762031,0,2708.582596564831 -2919,3632,6576,6575,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,2,-2,-104.7632076283985,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,26.83216431092236,0,0,1,1,0,0,0,57.82,28.48,38.51,59.43,6.666666666666667,1,1,0,0,0,13,3,1,1249.5,548786.7425133941,315818.609902187,328719.7955762031,0,2708.582596564831 -2920,3633,6577,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.032158872919508,7.684457691837776,0,0,0,-1002.760728946499,0,-9,-9,2019,6,0,40,38,1,0,0,7.837346750770818,7.837346750770818,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,1,4,0,679,-9758.126273491254,-50179.76862565731,0,0,1155.332707619037 -2921,3634,6578,-9,6579,6580,1,1,17,0,1,0,3,3,-9,1,4,0,0,0,0,0,-924.7594831475969,0,1,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,10,5,0,849,710373.6163338321,90087.60231815507,453138.4746939251,34886.35834396358,5631.326583210732 -2921,3634,6579,6580,-9,-9,1,0,46,0,1,0,1,1,-9,1,1,8.951916876157556,9.048616154693041,0,17,-7,-158.9050979420793,0,2,2,2019,23,10,24,19,1,10,0,37.56987712444235,37.56987712444235,0,0,0,0,102,1,1,0,0,0,31.07,28,54.74,57.22,6.666666666666667,1,1,0,0,2,10,5,0,849,710373.6163338321,90087.60231815507,453138.4746939251,34886.35834396358,5631.326583210732 -2921,3634,6580,6579,-9,-9,1,1,53,0,1,0,1,1,1,0,4,8.293897045479396,7.899913561660844,5.834749087864691,17,7,-165.2968191623796,-9,2,2,2019,3,0,40,0,1,0,0,10.90364986269733,10.90364986269733,0,0,0,0,2,1,1,0,6.010152432558141,0,54.74,57.22,31.07,28,6.666666666666667,1,1,0,0,1,10,5,0,849,710373.6163338321,90087.60231815507,453138.4746939251,34886.35834396358,5631.326583210732 -2922,3635,6581,6582,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.432877982842896,9.352672157175538,0,11,-2,46.41250747109603,0,-9,-9,2019,7,0,55,36,1,0,0,23.65589774177359,23.65589774177359,0,0,0,0,0,0,0,0,8.971796395373056,0,51.83,57.2,34.3,34.74,8.333333333333334,3,4,0,0,12,8,5,1,736.5,715477.1835572325,296410.6030323427,322597.337849549,27325.84348545305,7249.4566241552 -2922,3635,6582,6581,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.757149162230494,8.633676413721821,0,34,2,40.56269542549622,-9,3,3,2019,26,12,36,0,1,12,0,20.22638892407022,20.22638892407022,0,0,0,0,0,0,0,0,7.506911235092508,0,34.3,34.74,51.83,57.2,8.333333333333334,3,4,0,0,13,8,5,1,736.5,715477.1835572325,296410.6030323427,322597.337849549,27325.84348545305,7249.4566241552 -2922,3636,6583,-9,6581,6582,1,0,27,0,0,0,1,1,-9,0,2,4.268032812913163,4.357260756548891,0,0,0,-927.3791300020026,0,1,1,2019,11,1,16,-9,1,1,1,.7278099067793177,.7278099067793177,0,0,0,0,0,0,0,0,0,0,39.19,43.1,-9,-9,8.333333333333334,3,4,0,0,6,8,2,1,484,192209.167218616,0,0,0,223.7876477939748 -2922,3637,6584,-9,6581,6582,1,1,24,0,0,0,2,2,-9,0,4,8.623506019698269,8.543469189648079,0,0,0,-1007.973782698118,0,1,2,2019,8,0,37,36,1,0,1,17.18886939582508,17.18886939582508,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,3,8,5,1,1155,50400.03603593924,32520.84057577335,0,0,2067.426169315473 -2922,3638,6585,-9,6581,6582,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1096.541018159267,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,818,0,0,0,0,328.0599672902579 -2923,3639,6586,6587,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4349322850377,8.879604392795946,0,31,-4,-58.53059466083649,0,2,3,2019,11,1,41,44,1,1,0,16.64477201645953,16.64477201645953,0,0,0,0,71.5,1,1,0,0,0,51.94,55.88,38.56,29.73,8.333333333333334,1,1,0,0,12,7,5,1,279,79001.58349780209,109743.3940234672,0,0,3052.05555041888 -2923,3639,6587,6586,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.747229219359136,6.526612013847132,9,4,-153.286169584411,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,6.634030069818838,6.739043569655703,38.56,29.73,51.94,55.88,5,1,1,1,1,7,7,5,1,279,79001.58349780209,109743.3940234672,0,0,3052.05555041888 -2923,3640,6588,-9,6586,6587,1,1,27,0,0,0,2,2,-9,0,4,7.892425007490735,7.639799915190233,0,0,0,-969.0363620657029,0,2,2,2019,8,0,20,32,1,0,1,14.73002175104772,14.73002175104772,0,0,0,0,0,1,1,0,.964904103392326,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,1380,-149771.3417402304,-27977.11397655087,0,0,809.2785683471936 -2924,3641,6589,6590,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.099824557774408,8.054387815865459,0,9,13,50.31192698478111,0,2,2,2019,7,0,50,50,1,0,0,7.951366561546307,7.951366561546307,0,0,0,0,0,0,0,0,0,0,53.56,49.66,39.18,50.81,8.333333333333334,1,1,0,0,11,5,5,1,525,1996506.708039062,1509087.85376595,365495.844351674,0,4276.831265099062 -2924,3641,6590,6589,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.822955894273599,9.167077512725191,0,9,-13,-137.7491085184647,0,3,3,2019,19,5,45,48,1,5,0,13.81885628279736,13.81885628279736,0,0,0,0,0,0,0,0,0,0,39.18,50.81,53.56,49.66,3.333333333333333,2,3,0,0,11,5,5,1,525,1996506.708039062,1509087.85376595,365495.844351674,0,4276.831265099062 -2925,3642,6591,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-882.6231570879123,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,5.583586027485036,0,39.79990483448176,0,1,1,0,0,0,26.57,34.74,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1182,110124.9401076384,-33341.91859133458,0,0,873.6643329537159 -2926,3643,6592,6593,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,47,-1,-40.66609758309212,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,8.72399821185129,0,0,1,1,0,0,0,33.01,43.31,57.16,56.15,5,1,1,0,0,0,7,2,0,509.5,369238.6237051749,108143.1186527568,266804.1250261978,0,1968.981193919249 -2926,3643,6593,6592,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,6.484646366658715,6.426454864055649,47,1,4.432249787064297,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.629356759999775,6.365244685273791,57.16,56.15,33.01,43.31,8.333333333333334,1,1,0,0,0,7,2,0,509.5,369238.6237051749,108143.1186527568,266804.1250261978,0,1968.981193919249 -2927,3644,6594,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.905168251885964,8.713807940018713,0,0,0,-1022.15399962627,0,3,2,2019,8,0,60,50,1,0,0,15.54029914899609,15.54029914899609,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,1392,-1766.61739201408,0,0,0,3147.341339694796 -2928,3645,6595,6596,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.772875048308771,6.819471529291324,0,7,-5,-30.98478243976583,0,2,2,2019,6,0,30,30,1,0,0,3.362993379488313,3.362993379488313,0,0,0,0,0,0,0,0,4.754335440404489,0,58.15,52.91,60.12,54.8,10,1,1,0,0,8,10,3,1,180.5,169718.2902083692,61935.31898337189,174489.5579848922,0,1470.437508892381 -2928,3645,6596,6595,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.524747539774648,7.468168959012115,0,7,5,86.49753290677427,0,2,2,2019,4,0,25,18,1,0,0,8.3987012921055,8.3987012921055,0,0,0,0,0,0,0,0,4.099339559440651,0,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,5,10,3,1,180.5,169718.2902083692,61935.31898337189,174489.5579848922,0,1470.437508892381 -2929,3646,6597,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,9.820595986735444,9.341625605053551,0,0,0,-903.5015345865525,0,2,2,2019,8,0,55,50,1,0,0,39.87671058344168,39.87671058344168,0,0,0,0,0,0,0,0,0,0,54.61,51.04,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,1105,14420.86552674331,1736.491871349994,119402.6548348451,159030.4206614631,3940.649378200413 -2930,3647,6598,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.892410749167652,6.837400602619068,0,0,-1144.544754211647,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.938098356339191,54.69,57.47,-9,-9,10,1,1,0,0,0,11,2,1,183,303589.3911578807,18736.13545932321,188058.675432232,0,1940.496183087037 -2931,3648,6599,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,9.146180164649033,9.300803725731059,0,0,0,-968.5416831594864,0,2,2,2019,12,1,30,30,1,1,0,41.36347901482949,41.36347901482949,0,0,0,0,7,0,0,0,0,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,9,5,5,0,910,378715.4151760146,346627.4766151516,0,0,3493.252149556215 -2932,3649,6600,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,5.198386427265856,5.445624406424635,0,0,-1079.518860244233,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.618621572800882,5.107450534074349,53,44,-9,-9,8,1,1,0,0,0,11,2,1,383,225597.6687818323,30340.41099559208,181497.0850996308,0,788.7974058846061 -2933,3650,6601,-9,6602,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.517613216906,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,623.5,109723.0305565068,1227.35751204914,0,0,1285.95233428887 -2933,3650,6602,-9,6603,-9,1,0,40,0,1,0,2,2,-9,0,4,6.849669098981203,7.044018621433333,5.761683856589336,0,0,-883.2387739531158,0,3,3,2019,10,0,16,18,1,0,0,6.170974281784283,6.170974281784283,0,0,0,0,0,1,1,0,5.870901190328376,0,45.07,56.1,-9,-9,6.666666666666667,1,1,0,0,9,9,2,1,623.5,109723.0305565068,1227.35751204914,0,0,1285.95233428887 -2933,3651,6603,-9,-9,-9,1,0,74,0,1,0,3,3,-9,0,2,0,0,0,0,0,-920.936715634649,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.41,48.31,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,292,329109.1782628459,0,115494.0411871204,0,806.0963283781397 -2934,3652,6604,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.450792950286075,8.009188350117139,0,0,0,-994.7467334249552,0,2,2,2019,10,0,45,43,1,0,0,9.339333993819599,9.339333993819599,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,11,10,4,0,244,200382.3366163398,12086.97306013391,156650.8163121886,142256.5415742964,1489.834556581183 -2935,3653,6605,6606,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.687514121364913,8.536152457051781,0,8,-1,-72.05576203748905,0,2,2,2019,9,0,45,0,1,0,0,13.35798942689806,13.35798942689806,0,0,0,0,0,0,0,0,0,0,54.04,60.47,53.06,55.68,6.666666666666667,1,1,0,0,5,12,5,1,402.5,16268.945543597,76780.31049042822,368932.3487647465,209383.1741384803,3015.507860097621 -2935,3653,6606,6605,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.552136620577771,8.610051783461344,0,8,1,48.0150043522711,0,-9,-9,2019,10,2,37,45,1,2,0,19.32303350599401,19.32303350599401,0,0,0,0,0,0,0,0,3.755239055309858,0,53.06,55.68,54.04,60.47,8.333333333333334,1,1,0,0,6,12,5,1,402.5,16268.945543597,76780.31049042822,368932.3487647465,209383.1741384803,3015.507860097621 -2936,3654,6607,6608,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.132633254464492,8.156068726868012,0,40,0,-75.07926077119389,0,3,3,2019,8,0,40,42,1,0,0,10.98857379325056,10.98857379325056,0,0,0,0,0,0,0,0,3.066732959241473,0,57.33,53.46,53.56,49.66,8.333333333333334,1,1,0,0,9,7,4,1,511.5,662513.5198456732,322995.7411118986,359426.8701952563,100310.5033761977,2896.46367504042 -2936,3654,6608,6607,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.200441985449295,7.813068053385574,0,40,0,126.130248296767,0,3,3,2019,8,0,37,36,1,0,0,9.151582450483739,9.151582450483739,0,0,0,0,2,0,0,0,2.924121532131433,0,53.56,49.66,57.33,53.46,8.333333333333334,1,1,0,0,7,7,4,1,511.5,662513.5198456732,322995.7411118986,359426.8701952563,100310.5033761977,2896.46367504042 -2937,3655,6609,-9,6611,6610,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.6063314157864,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,455.6666666666667,1510727.835636595,416481.4987611198,690734.0343668456,0,4011.011287557445 -2937,3655,6610,6611,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.479454187513079,8.679978880380235,0,20,0,-94.82738458734481,0,1,2,2019,18,6,35,35,1,6,0,22.48936576793964,22.48936576793964,0,0,0,0,0,1,1,0,3.932118732267813,0,31.83,59.68,46.28,62.6,3.333333333333333,1,1,0,0,8,7,4,1,455.6666666666667,1510727.835636595,416481.4987611198,690734.0343668456,0,4011.011287557445 -2937,3655,6611,6610,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.510889666851165,8.114503239964982,0,18,0,179.074648500778,0,2,1,2019,15,3,24,24,1,3,0,19.31235541233687,19.31235541233687,0,0,0,0,0,1,1,0,0,0,46.28,62.6,31.83,59.68,8.333333333333334,1,1,0,0,8,7,4,1,455.6666666666667,1510727.835636595,416481.4987611198,690734.0343668456,0,4011.011287557445 -2938,3656,6612,-9,6614,6617,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.033204032541,-9,2,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,3,4,0,0,0,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2938,3656,6613,-9,6614,6617,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1140.344225271797,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2938,3656,6614,6617,-9,-9,1,0,41,1,4,0,2,2,-9,0,4,7.460341617306233,7.387130949328231,0,6,1,-24.36817515774172,-9,2,1,2019,6,0,22,0,1,0,0,8.092281892857033,8.092281892857033,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,6.666666666666667,3,4,0,0,7,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2938,3656,6615,-9,6614,6617,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1188.366959500345,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2938,3656,6616,-9,6614,6617,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1085.142458358819,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2938,3656,6617,6614,-9,-9,1,1,40,1,4,0,1,1,-9,0,4,0,0,0,5,-1,-157.9091302481122,-9,3,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,5,4,2,0,0,6,9,2,0,792,279453.8972893003,24566.31780021993,358735.0568757122,67140.36438975261,2857.080020520099 -2939,3657,6618,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.608628046638929,8.526328661444678,0,0,0,-1127.091712369374,0,3,3,2019,8,0,45,40,1,0,0,13.0114854515286,13.0114854515286,0,0,0,0,0,0,0,0,8.576408865058426,0,52.54,54.24,-9,-9,6.666666666666667,3,4,0,0,8,8,5,1,155,302989.5834161544,287060.4351723848,0,0,4032.028045209443 -2940,3658,6619,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,5.767565876585505,5.749103353618704,0,0,0,-1048.270702429002,0,2,1,2019,16,5,8,8,1,5,0,5.175642108405255,5.175642108405255,0,0,0,0,0,1,1,0,0,0,38.86,53.83,-9,-9,8.333333333333334,1,1,0,0,3,11,2,0,1299,-5263.790386730534,0,0,0,1290.282750566115 -2941,3659,6620,-9,6622,6621,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.425764164955,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,596.8,2212668.572557963,1162839.049686966,456748.2937587842,0,7519.85015511649 -2941,3659,6621,6622,-9,-9,1,1,49,2,3,0,1,1,-9,0,3,9.720123186579608,9.292771721912377,0,10,10,53.12380618775888,0,2,2,2019,9,2,40,40,1,2,0,36.69669485357768,36.69669485357768,0,0,0,0,0,0,0,0,6.536626826910066,0,50.6,51,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,596.8,2212668.572557963,1162839.049686966,456748.2937587842,0,7519.85015511649 -2941,3659,6622,6621,-9,-9,1,0,39,2,3,0,1,1,-9,0,4,8.323861158866306,8.460263110781396,0,10,-10,69.39331419417314,0,2,1,2019,3,0,18,18,1,0,0,28.20803187372299,28.20803187372299,0,0,0,0,0,0,0,0,8.697382241435839,0,57.16,56.15,50.6,51,8.333333333333334,1,1,0,0,12,7,5,1,596.8,2212668.572557963,1162839.049686966,456748.2937587842,0,7519.85015511649 -2941,3659,6623,-9,6622,6621,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-976.0796795810611,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,596.8,2212668.572557963,1162839.049686966,456748.2937587842,0,7519.85015511649 -2941,3659,6624,-9,6622,6621,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-952.6131452754897,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,596.8,2212668.572557963,1162839.049686966,456748.2937587842,0,7519.85015511649 -2942,3660,6625,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-940.4279004148036,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.36,36.79,-9,-9,0,1,1,1,1,0,11,1,1,512,47963.57186052171,0,0,0,305.0861015487869 -2943,3661,6626,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.908822501433004,8.144673052470154,0,0,0,-965.8257134680611,0,3,2,2019,12,1,40,40,1,1,0,10.67313786298564,10.67313786298564,0,0,0,0,0,0,0,0,0,0,37.93,47.5,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,258,434614.2494254132,109986.7366298739,329690.9716072038,24810.64228968616,1090.399530259532 -2943,3662,6627,-9,6626,-9,1,0,20,0,0,0,2,2,-9,0,4,7.430942956045607,7.57224014209522,0,0,0,-945.5203108938924,0,3,-9,2019,11,0,43,50,1,2,1,4.367109010428432,4.367109010428432,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,3,0,2518,20864.85152423883,0,0,0,887.9458539986442 -2944,3663,6628,6629,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.32423605066433,7.325004251294858,47,2,17.68632757260084,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.177147712778893,7.356911604282057,52.82,19.32,59.7,53.75,8.333333333333334,1,1,0,0,0,12,2,1,538.5,465524.227468345,-9690.317891796387,381885.4969737951,0,1624.117444269287 -2944,3663,6629,6628,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,49,-2,-29.02036143218827,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.989349304282629,0,59.7,53.75,52.82,19.32,8.333333333333334,1,1,0,0,0,12,2,1,538.5,465524.227468345,-9690.317891796387,381885.4969737951,0,1624.117444269287 -2945,3664,6630,6631,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.735927228078937,8.875090671426463,0,30,-3,27.6608554459091,-9,2,3,2019,15,3,38,0,1,3,0,26.20420465066761,26.20420465066761,0,0,0,0,0,0,0,0,0,0,39.33,58.88,57.9,15.47,6.666666666666667,1,1,0,0,11,13,5,1,565,441005.7833610945,431451.9265681446,0,0,4217.22266585493 -2945,3664,6631,6630,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,8.47497107170628,8.525787227982855,0,31,3,-83.19471649955737,0,2,-9,2019,15,4,38,38,1,4,0,15.50745173158073,15.50745173158073,0,0,0,0,0,0,0,0,3.983494306758486,0,57.9,15.47,39.33,58.88,8.333333333333334,1,1,0,0,11,13,5,1,565,441005.7833610945,431451.9265681446,0,0,4217.22266585493 -2945,3665,6632,-9,6630,6631,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-939.4152856315209,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.14,54.03,-9,-9,10,1,1,0,0,1,13,1,1,758,-61259.43862491691,0,0,0,-181.9453389912879 -2945,3666,6633,-9,6630,6631,1,1,18,0,0,0,3,3,1,0,2,0,0,0,0,0,-906.5657731620313,-9,1,1,2019,14,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,48.87,40.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,1,334,-553.7831453900282,0,0,0,0 -2946,3667,6634,6635,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,2,7,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.59,28.62,59.49,30.91,6.666666666666667,1,1,0,0,0,2,1,0,271.5,-71330.07375678689,0,0,0,2257.117288430818 -2946,3667,6635,6634,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,2,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.49,30.91,63.59,28.62,8.333333333333334,1,1,0,0,0,2,1,0,271.5,-71330.07375678689,0,0,0,2257.117288430818 -2947,3668,6636,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,8.160261821481692,7.864185286999853,0,0,-947.2857138660898,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,2.172789396427741,7.865835407888401,42.62,33.25,-9,-9,5,1,1,0,0,0,6,4,1,1183,1015710.305478204,413557.568253729,395961.2780556959,0,2447.122861060368 -2948,3669,6637,6638,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-103.3557522448078,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,1.810761073981668,0,42.26,47.95,58.33,47.36,1.666666666666667,1,1,0,0,0,4,3,1,652.5,947244.1390224027,635039.1175504804,152042.8410136593,0,2963.097650763647 -2948,3669,6638,6637,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.75271451191881,7.744238841027423,8,2,-13.41183616421358,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.853691376552316,7.715070696071088,58.33,47.36,42.26,47.95,8.333333333333334,1,1,0,0,1,4,3,1,652.5,947244.1390224027,635039.1175504804,152042.8410136593,0,2963.097650763647 -2948,3670,6639,-9,6637,6638,1,1,35,0,0,0,2,2,-9,0,3,0,0,0,0,0,-867.1329472157063,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,1,5,4,1,1,1006,-38508.12350880935,0,0,0,0 -2949,3671,6640,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.639541769959941,7.93861604828346,0,0,0,-1084.502516293053,0,3,3,2019,31,12,33,39,1,12,0,9.116571173755368,9.116571173755368,0,0,0,0,0,0,0,0,0,0,16.98,65.47,-9,-9,3.333333333333333,1,1,0,0,13,9,3,1,792,216082.7970010886,-42975.69553943531,0,0,810.068725855002 -2950,3672,6641,6643,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,9.326101374819086,9.113137141916521,0,22,3,-132.4990024931794,0,1,1,2019,12,0,60,60,1,0,0,22.95751338154603,22.95751338154603,0,0,0,0,0,0,0,0,4.544119361738237,0,62.66,52.4,40.02,49.16,8.333333333333334,1,1,0,0,9,12,5,1,457.75,1379326.536036493,533351.5491540271,568777.9373811067,36017.66989112436,5438.183921912684 -2950,3672,6642,-9,6643,6641,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1068.459505609575,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,457.75,1379326.536036493,533351.5491540271,568777.9373811067,36017.66989112436,5438.183921912684 -2950,3672,6643,6641,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.560496218315018,8.371809518065012,0,22,-3,-137.8390087745337,0,1,1,2019,12,0,45,45,1,0,0,10.4131919837404,10.4131919837404,0,0,0,0,0,0,0,0,2.952690811704187,0,40.02,49.16,62.66,52.4,5,1,1,0,0,8,12,5,1,457.75,1379326.536036493,533351.5491540271,568777.9373811067,36017.66989112436,5438.183921912684 -2950,3672,6644,-9,6643,6641,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.990613762529,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,457.75,1379326.536036493,533351.5491540271,568777.9373811067,36017.66989112436,5438.183921912684 -2951,3673,6645,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,6.969145217173113,6.81050602214005,0,0,0,-1086.058229281647,-9,-9,-9,2019,9,0,38,0,1,0,0,3.116743841505934,3.116743841505934,0,0,0,0,0,0,0,0,3.478445985423019,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,2,0,325,0,0,0,0,538.3034284280003 -2951,3674,6646,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.230732279117048,7.028040428187766,0,0,0,-949.1828534619099,-9,-9,-9,2019,10,0,36,0,1,0,0,5.068384743102048,5.068384743102048,0,0,0,0,0,0,0,0,1.344583793566957,0,62.39,56.71,-9,-9,10,1,1,0,0,7,11,3,0,1462,-128916.9775537668,0,0,0,420.5745821988752 -2951,3675,6647,-9,6646,-9,1,0,23,0,0,0,2,2,-9,0,4,2.948820543333201,2.798957838371698,0,0,0,-852.2980177264327,-9,2,-9,2019,11,0,30,0,1,2,1,.0762728368280666,.0762728368280666,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,10,1,1,0,0,1,11,2,0,346,-68324.48868736802,0,0,0,88.41791590252225 -2951,3676,6648,-9,6646,-9,1,0,18,0,0,0,2,2,-9,0,3,7.938505174392116,7.812033891507975,0,0,0,-951.4313372827362,-9,2,-9,2019,31,12,37,0,1,12,1,6.287873234754081,6.287873234754081,0,0,0,0,0,0,0,0,0,0,28.71,61.83,-9,-9,5,1,1,0,0,1,11,3,0,500,126364.6498531221,0,0,0,1072.223452717609 -2952,3677,6649,6650,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.57855206767339,6.245840798219073,44,2,99.68719468737322,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,1.875800771097024,0,0,1,1,0,6.434811979460985,6.389919412291291,39.55,18.56,38.63,57.58,5,1,1,0,0,0,2,2,1,1977,629228.1942015742,459666.1418657317,136216.4995111934,0,2217.773891188538 -2952,3677,6650,6649,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.443944501244889,6.288432045815492,5,-2,-9.074230256662059,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.736060335005145,6.458963203307608,38.63,57.58,39.55,18.56,8.333333333333334,1,1,0,0,8,2,2,1,1977,629228.1942015742,459666.1418657317,136216.4995111934,0,2217.773891188538 -2953,3678,6651,6652,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.368715270823872,8.184604587378983,0,28,9,-16.30420066993991,0,2,2,2019,11,0,45,40,1,0,0,8.390125926605556,8.390125926605556,0,0,0,0,0,1,1,0,0,0,48.45,49.46,54.2,57.49,8.333333333333334,1,1,0,0,7,5,3,0,445.5,100077.6458611282,88188.92049461855,60136.6672819271,69730.19033812106,2025.299085530432 -2953,3678,6652,6651,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,29,0,45.22235734865166,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.45,49.46,5,1,1,0,0,0,5,3,0,445.5,100077.6458611282,88188.92049461855,60136.6672819271,69730.19033812106,2025.299085530432 -2953,3679,6653,-9,6652,6651,1,0,21,0,1,0,2,2,-9,0,3,7.507019370466792,7.60430390535576,0,0,0,-939.5312716273401,0,2,2,2019,8,0,33,37,1,0,1,6.500334841046159,6.500334841046159,0,0,0,0,0,1,1,0,0,0,53.87,40.03,-9,-9,5,1,1,0,0,4,5,3,0,394,-142761.8714902964,0,0,0,1120.178884106405 -2954,3680,6654,6655,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.626856730130687,5.966947971358936,10,9,-111.6789419393577,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.527850683449375,53.45,49.53,54.2,57.49,10,1,1,0,0,7,9,4,1,131.5,748288.9982230724,425822.1396027127,358576.1355270917,0,2121.590560598936 -2954,3680,6655,6654,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.592927613260805,8.244324446340855,0,10,0,-19.81501425369883,0,-9,-9,2019,5,0,43,9,1,0,0,9.861682242243612,9.861682242243612,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.45,49.53,10,1,1,0,0,11,9,4,1,131.5,748288.9982230724,425822.1396027127,358576.1355270917,0,2121.590560598936 -2955,3681,6656,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.313202307676364,7.01296807140548,0,0,-1016.328238538879,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,4.224154102912802,0,1,1,0,4.265853634999841,7.094003347507774,51.65,39.74,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,330,299383.5780915808,302150.5370529182,254828.7592959183,0,1399.553201416547 -2956,3682,6657,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.141855479968612,8.966436051934572,0,0,0,-1052.912510996292,0,3,3,2019,6,0,12,15,1,0,0,82.07703905181047,82.07703905181047,0,0,0,0,2,0,0,0,7.557632689870776,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,602,32749.78415191441,22484.31255154798,81815.38833932926,-11385.32469980702,4016.697283831744 -2957,3683,6658,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.281717366796181,6.50616450505229,0,0,-1006.982052853981,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.785166937611922,6.652260806471806,49.47,32.98,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1553,167749.4682045478,288807.8659111844,0,0,759.3845491149781 -2958,3684,6659,6661,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.656114924124019,8.683194020393696,0,6,0,11.59952691774578,0,2,2,2019,8,1,43,43,1,1,0,12.98717139283437,12.98717139283437,0,0,0,0,2,1,1,0,4.221646200869759,0,56.44,52.37,49.04,55.86,8.333333333333334,1,1,0,0,6,13,4,1,539,376407.2366738788,281934.9400905902,101712.631169495,59357.69271471357,2860.655475799158 -2958,3684,6660,-9,6661,6659,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.0595660192567,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,539,376407.2366738788,281934.9400905902,101712.631169495,59357.69271471357,2860.655475799158 -2958,3684,6661,6659,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.727014934347427,7.639245295901421,0,6,0,111.0111750971713,0,-9,-9,2019,14,2,32,32,1,2,0,8.398760746340573,8.398760746340573,0,0,0,0,0,1,1,0,2.222235040402987,0,49.04,55.86,56.44,52.37,8.333333333333334,1,1,0,0,6,13,4,1,539,376407.2366738788,281934.9400905902,101712.631169495,59357.69271471357,2860.655475799158 -2959,3685,6662,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.760813780573995,7.980398761178948,0,0,0,-1065.548093627937,-9,3,3,2019,11,0,30,0,1,0,0,8.286827653453274,8.286827653453274,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,616,-39513.08630055205,0,0,0,1918.704767759032 -2960,3686,6663,-9,6667,6666,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.7688871416754,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,1062.2,234246.0095890432,141085.3343096011,289992.1697792965,139427.5783604106,4815.742448536867 -2960,3686,6664,-9,6667,6666,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.430924411601,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1062.2,234246.0095890432,141085.3343096011,289992.1697792965,139427.5783604106,4815.742448536867 -2960,3686,6665,-9,6667,6666,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.92920164708,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1062.2,234246.0095890432,141085.3343096011,289992.1697792965,139427.5783604106,4815.742448536867 -2960,3686,6666,6667,-9,-9,1,1,47,0,3,0,2,2,-9,0,4,8.230303597082369,8.837910416689583,0,7,1,-14.79353496659307,0,2,3,2019,7,0,50,44,1,0,0,9.795214189170414,9.795214189170414,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.51,42.98,8.333333333333334,1,1,0,0,7,13,4,1,1062.2,234246.0095890432,141085.3343096011,289992.1697792965,139427.5783604106,4815.742448536867 -2960,3686,6667,6666,-9,-9,1,0,46,0,3,0,1,1,-9,0,3,8.3241031577528,8.310456637111949,0,7,-1,43.88531868728867,0,2,2,2019,11,0,36,30,1,0,0,14.69928313872233,14.69928313872233,0,0,0,0,0,1,1,0,6.936037074334099,0,50.51,42.98,57.16,56.15,6.666666666666667,1,1,0,0,7,13,4,1,1062.2,234246.0095890432,141085.3343096011,289992.1697792965,139427.5783604106,4815.742448536867 -2961,3687,6668,6669,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,43,-1,69.88632642605162,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.572681636800335,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,1199,1086763.249958861,535957.6903472111,222698.9667975606,0,3525.566916073903 -2961,3687,6669,6668,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.933876183687281,8.586758507733055,43,1,5.517301229068089,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.138308672535221,7.932149672713288,57.06,57.76,48.87,58.55,10,1,1,0,0,5,13,3,1,1199,1086763.249958861,535957.6903472111,222698.9667975606,0,3525.566916073903 -2962,3688,6670,6671,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.497420999065836,8.588245710826854,0,6,3,-7.291663853844331,0,-9,-9,2019,10,0,50,60,1,1,0,10.93214696985796,10.93214696985796,0,0,0,.7788901245002027,0,1,1,0,.5283824617166912,0,51,56,54.89,24.95,7,1,1,0,0,1,2,4,1,731.5,88805.07100990583,76812.1188602123,164501.47015082,129478.8794527144,3367.56555469851 -2962,3688,6671,6670,-9,-9,1,0,33,0,2,0,1,1,-9,0,1,7.791296440070213,8.022840986388935,0,11,-3,-48.85659726779036,0,2,2,2019,8,0,37,23,1,0,0,6.801070340624273,6.801070340624273,0,0,0,0,2,1,1,0,0,0,54.89,24.95,51,56,6.666666666666667,1,1,0,0,6,2,4,1,731.5,88805.07100990583,76812.1188602123,164501.47015082,129478.8794527144,3367.56555469851 -2962,3688,6672,-9,6671,6670,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.3395023095555,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,731.5,88805.07100990583,76812.1188602123,164501.47015082,129478.8794527144,3367.56555469851 -2962,3688,6673,-9,6671,6670,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.229015854874,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,731.5,88805.07100990583,76812.1188602123,164501.47015082,129478.8794527144,3367.56555469851 -2963,3689,6674,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.090292705651045,7.730031377542939,0,0,0,-1089.838367997929,0,3,3,2019,10,0,15,35,1,0,0,25.21186261061838,25.21186261061838,0,0,0,0,0,0,0,0,0,0,52.77,55.33,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,1564,801737.07416782,528035.3543686478,205005.3943754471,0,1353.01938862484 -2963,3690,6675,-9,-9,6674,1,0,26,0,0,0,2,2,-9,0,3,8.082241161856023,8.052264265918716,0,0,0,-975.9410028368225,0,2,2,2019,9,0,42,43,1,0,1,8.570777334268072,8.570777334268072,0,0,0,0,0,0,0,0,1.63820692764909,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,544,73208.99135649057,-17613.25972978151,0,0,1304.17598220011 -2964,3691,6676,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.056858107018018,7.830126071036235,0,0,0,-1101.299092225558,0,2,-9,2019,5,0,37,37,1,0,0,8.407798005653362,8.407798005653362,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,406,104935.1137579341,0,0,0,969.4042902189278 -2965,3692,6677,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.593373345358667,5.656609111123673,0,0,-880.8115772113357,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.411708003668004,5.519516251074341,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,513,556134.2862408222,-106751.7469819939,383490.8479983914,0,1823.76209741267 -2966,3693,6678,6680,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,9.029154051995535,8.581997730690393,0,4,4,-22.33364830129313,0,2,2,2019,5,0,38,45,1,0,0,26.98576276101597,26.98576276101597,0,0,0,0,0,1,1,0,1.790050275424243,0,51.41,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,439.6666666666667,358417.7160194626,190239.4692227564,195220.5904472147,128263.0046556577,4821.131544292257 -2966,3693,6679,-9,6680,6678,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.3557016242116,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,439.6666666666667,358417.7160194626,190239.4692227564,195220.5904472147,128263.0046556577,4821.131544292257 -2966,3693,6680,6678,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.701928370105728,8.651330279729375,0,4,-4,-54.09230938992687,0,-9,-9,2019,9,0,40,21,1,0,0,15.11347467248984,15.11347467248984,0,0,0,0,0,1,1,0,.6432454178996311,0,54.1,59.11,51.41,56.15,0,1,1,0,0,5,12,5,1,439.6666666666667,358417.7160194626,190239.4692227564,195220.5904472147,128263.0046556577,4821.131544292257 -2967,3694,6681,6683,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.30426822221292,8.811618661415183,7.972286231870377,18,3,-2.325458893821839,0,3,3,2019,6,0,37,41,1,0,0,11.22947675776941,11.22947675776941,0,0,0,0,0,1,1,0,6.769244077629722,8.062221371588757,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,985.5,515341.8759632256,389043.7051293554,251555.2109110559,255864.7598640616,5154.393491470097 -2967,3694,6682,-9,6683,6681,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-971.7814570042489,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,5,1,985.5,515341.8759632256,389043.7051293554,251555.2109110559,255864.7598640616,5154.393491470097 -2967,3694,6683,6681,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.624514881962964,8.29547154108657,7.447866617388049,18,-3,-15.53304226277786,0,2,2,2019,12,0,24,22,1,0,0,11.60960959126704,11.60960959126704,0,0,0,0,0,1,1,0,3.496699283222368,7.441952356842497,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,9,12,5,1,985.5,515341.8759632256,389043.7051293554,251555.2109110559,255864.7598640616,5154.393491470097 -2967,3694,6684,-9,6683,6681,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.7711967721317,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,985.5,515341.8759632256,389043.7051293554,251555.2109110559,255864.7598640616,5154.393491470097 -2968,3695,6685,-9,-9,-9,1,0,40,0,1,0,1,1,1,1,1,0,7.351109361101643,7.072497228187686,0,0,-1012.173462598091,-9,2,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,8.511209184325937,0,34,28,-9,-9,4,1,1,0,0,0,7,2,1,858.5,-77647.10058190684,0,0,0,3753.831695826451 -2968,3695,6686,-9,6685,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.8750624202434,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,858.5,-77647.10058190684,0,0,0,3753.831695826451 -2969,3696,6687,6688,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,0,0,6,15,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,56.92,33.48,7,1,1,0,0,0,5,1,0,149,467443.5765162675,0,311090.4023439006,0,1439.060189054077 -2969,3696,6688,6687,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,6,-15,0,0,3,1,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.92,33.48,51,48,10,1,1,0,0,0,5,1,0,149,467443.5765162675,0,311090.4023439006,0,1439.060189054077 -2970,3697,6689,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,6.824849307356846,7.214034929470591,0,0,0,-964.4451779424596,0,2,2,2019,15,4,13,15,1,4,0,8.355129875008377,8.355129875008377,0,0,0,0,2,0,0,0,0,0,32.88,55.08,-9,-9,6.666666666666667,1,1,0,0,9,2,2,1,135,-14777.70575048694,0,0,0,810.9305284920722 -2971,3698,6690,6691,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,57,-3,-133.9468549745972,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,54.79,55.86,8.333333333333334,1,1,0,0,0,8,3,1,846,532713.5436513782,0,350644.1661445436,0,2876.517339459572 -2971,3698,6691,6690,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,8.030019290532001,8.089540143056476,57,3,-105.4258106019714,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.821700625139,54.79,55.86,59.46,46.99,8.333333333333334,1,1,0,0,0,8,3,1,846,532713.5436513782,0,350644.1661445436,0,2876.517339459572 -2972,3699,6692,6693,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.979507311018593,8.173712734534844,0,4,8,.9943235155082779,0,-9,-9,2019,11,0,38,44,1,0,0,6.421637148723489,6.421637148723489,0,0,0,0,0,0,0,0,0,0,44.3,58.08,51.25,50.81,6.666666666666667,1,1,0,0,4,13,4,1,4322.5,490935.0081370701,271098.7998345793,114186.0265729875,0,2339.206946638722 -2972,3699,6693,6692,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.133234455002142,8.155021039848332,0,4,-8,-2.798658870599024,0,3,3,2019,12,0,44,44,1,0,0,7.682589455491338,7.682589455491338,0,0,0,0,0,0,0,0,0,0,51.25,50.81,44.3,58.08,6.666666666666667,1,1,0,0,12,13,4,1,4322.5,490935.0081370701,271098.7998345793,114186.0265729875,0,2339.206946638722 -2972,3700,6694,-9,6693,6692,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-994.6385064942543,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,6,13,1,1,425,104445.6328693062,0,0,0,16.39557585351358 -2972,3701,6695,-9,6693,6692,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-922.1650736416384,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.76,54.41,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,293,0,0,0,0,0 -2973,3702,6696,6698,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,9.005447575481481,9.277358701909822,0,17,1,57.95525233542986,0,2,1,2019,1,0,7,7,1,0,0,156.9605546356173,156.9605546356173,0,0,0,0,0,1,1,0,7.987879041798434,0,57.06,57.76,62.5,49.56,10,3,4,0,0,12,8,5,1,639.3333333333334,2598670.257221835,1564930.011387189,1200348.188317286,208252.3801472816,8564.716579348287 -2973,3702,6697,-9,6696,6698,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1009.691115946926,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,3,4,0,0,0,8,5,1,639.3333333333334,2598670.257221835,1564930.011387189,1200348.188317286,208252.3801472816,8564.716579348287 -2973,3702,6698,6696,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.891652531974117,8.718850371880464,0,19,-1,-65.68919143423093,0,2,2,2019,7,0,36,36,1,0,0,23.90880462501683,23.90880462501683,0,0,0,0,0,1,1,0,1.799005097984213,0,62.5,49.56,57.06,57.76,10,3,4,0,0,13,8,5,1,639.3333333333334,2598670.257221835,1564930.011387189,1200348.188317286,208252.3801472816,8564.716579348287 -2973,3703,6699,-9,6696,6698,1,1,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-1065.991140727782,-9,2,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,6.666666666666667,3,4,0,1,3,8,1,1,488,0,0,0,0,0 -2974,3704,6700,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-896.799054950677,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,7.730743273339078,0,0,1,1,0,0,0,36.95,22.38,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,199,-25875.08897882639,0,0,0,794.6592909114609 -2975,3705,6701,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,6.840998136451689,6.650860765036732,0,0,0,-1101.699260012015,0,2,2,2019,19,6,9,15,1,6,0,13.12392125477273,13.12392125477273,0,0,0,0,2,1,1,0,1.914938962583319,0,27.61,34.92,-9,-9,1.666666666666667,1,1,0,0,10,1,2,1,253,29710.97314944626,85773.59974507087,0,0,720.066762154615 -2976,3706,6702,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.985874499729849,6.042146074865924,0,0,-1010.384189666796,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.653951320179282,6.123215332931305,33.81,48.01,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,2601,63207.61437458557,1358.294469656314,0,0,-14.39173262388067 -2977,3707,6703,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-970.3361700872101,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.95,54.36,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,74,-13006.84227585442,0,0,0,977.1248976890124 -2978,3708,6704,6705,-9,-9,1,1,39,0,3,0,2,2,-9,0,2,8.396820758237313,8.331968605080119,0,11,10,-35.83288865129419,0,-9,-9,2019,14,4,44,45,1,4,0,10.92536249845453,10.92536249845453,0,0,0,0,0,1,1,0,0,0,34.9,31.78,45.33,53.84,1.666666666666667,1,1,0,0,9,5,3,0,452.4,-14670.43443597464,-15236.70386307282,127021.2931898951,100085.7400938074,2581.582257403149 -2978,3708,6705,6704,-9,-9,1,0,29,0,3,0,2,2,-9,0,5,6.664524215772963,6.773533327068192,0,11,-10,-36.79624316242695,0,3,3,2019,9,1,16,0,1,1,0,7.17644938413545,7.17644938413545,0,0,0,0,0,1,1,0,0,0,45.33,53.84,34.9,31.78,10,1,1,0,0,6,5,3,0,452.4,-14670.43443597464,-15236.70386307282,127021.2931898951,100085.7400938074,2581.582257403149 -2978,3708,6706,-9,6705,6704,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.997144958343,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,452.4,-14670.43443597464,-15236.70386307282,127021.2931898951,100085.7400938074,2581.582257403149 -2978,3708,6707,-9,6705,6704,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.832316086574,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,452.4,-14670.43443597464,-15236.70386307282,127021.2931898951,100085.7400938074,2581.582257403149 -2978,3708,6708,-9,6705,6704,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-915.3213564192596,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,452.4,-14670.43443597464,-15236.70386307282,127021.2931898951,100085.7400938074,2581.582257403149 -2979,3709,6709,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.164542303030887,7.276763347839933,0,0,0,-994.7967662834683,0,-9,1,2019,14,3,24,0,1,3,0,6.533531976304982,6.533531976304982,0,0,0,0,0,0,0,0,0,0,39.2,56.55,-9,-9,5,2,3,0,0,2,5,2,1,637,85105.9465761304,-80920.96083116079,0,0,518.7697763693683 -2979,3710,6710,-9,6709,-9,1,1,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-1100.478291358409,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,5,1,1,1217,0,0,0,0,39.00020790358394 -2980,3711,6711,6712,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.001813648456309,7.755480617609506,0,28,4,-31.17137062448184,0,3,3,2019,9,0,41,36,1,0,0,9.232259169599393,9.232259169599393,0,0,0,0,0,0,0,0,0,0,51.33,34.77,51.98,42.74,6.666666666666667,3,4,0,0,12,8,5,1,289.5,858104.9593638052,606678.1739116913,308779.5950821242,136404.0683037182,2774.321078662946 -2980,3711,6712,6711,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.280022501215958,8.445133195485411,0,28,-4,161.0331069588155,0,-9,-9,2019,12,1,56,50,1,1,0,8.599909142430443,8.599909142430443,0,0,0,0,0,0,0,0,0,0,51.98,42.74,51.33,34.77,3.333333333333333,1,1,0,0,10,8,5,1,289.5,858104.9593638052,606678.1739116913,308779.5950821242,136404.0683037182,2774.321078662946 -2980,3712,6713,-9,6711,6712,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-904.2140512029935,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,8.333333333333334,4,2,0,0,2,8,1,1,3091,0,0,0,0,0 -2980,3713,6714,-9,6711,6712,1,1,23,0,0,0,2,2,-9,0,4,7.970236524870733,8.258124105060174,0,0,0,-1025.092077859266,0,2,2,2019,9,1,83,41,1,1,1,2.666468687102862,2.666468687102862,0,0,0,0,0,0,0,0,0,0,35.86,56.52,-9,-9,5,4,2,0,0,5,8,3,1,418,-76900.11127610221,0,0,0,856.6750515314961 -2981,3714,6715,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.008444891134372,8.048831576904263,0,0,0,-948.4854238392574,0,1,1,2019,12,0,37,37,1,0,0,13.01369392186164,13.01369392186164,0,0,0,0,0,0,0,0,0,0,42.22,56.11,-9,-9,5,4,2,0,0,6,11,4,1,351,201261.9232269583,64739.42285337887,127855.2414283375,0,1669.511172226125 -2982,3715,6716,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.913270841240804,8.085441868694971,0,0,-1017.740377060336,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.021164798403453,7.927893637530996,47.55,55.06,-9,-9,6.666666666666667,1,1,0,0,5,11,4,1,459,17069.54369075481,0,32587.98520246526,0,1765.310235566891 -2983,3716,6717,6718,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.560598316502264,7.387897344403327,0,41,-3,40.3093620528827,0,2,2,2019,12,0,32,32,1,0,0,7.461077435696988,7.461077435696988,0,0,0,0,0,0,0,0,0,0,45.82,54.57,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,625.5,1784716.390965735,712536.2255611665,290288.3922208684,0,2265.396594180389 -2983,3716,6718,6717,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.727405523688639,7.928756421150358,41,3,156.1245787950976,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.824015661266661,7.795771204101074,54.2,57.49,45.82,54.57,8.333333333333334,1,1,0,0,10,2,4,1,625.5,1784716.390965735,712536.2255611665,290288.3922208684,0,2265.396594180389 -2983,3717,6719,-9,6717,6718,1,1,29,0,0,0,1,1,-9,0,4,8.256259234612216,8.478572336722406,0,0,0,-1003.600243681744,0,1,1,2019,14,3,37,40,1,3,1,15.1271618037561,15.1271618037561,0,0,0,0,0,0,0,0,0,0,29.12,62.1,-9,-9,6.666666666666667,1,1,0,0,3,2,5,1,573,-21165.11624837834,27561.37387865961,186559.3327590691,84068.43362835524,1709.308728006389 -2984,3718,6720,-9,6723,6724,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-966.7009310365332,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,57.46,-9,-9,6.666666666666667,4,2,0,0,0,8,4,1,1358,172162.0667332438,172556.0136065415,0,0,3695.15295140923 -2984,3718,6721,-9,6723,6724,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.1667917265048,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,4,2,-9,0,0,8,4,1,1358,172162.0667332438,172556.0136065415,0,0,3695.15295140923 -2984,3718,6722,-9,6723,6724,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-896.1207859751888,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,2,-9,0,0,8,4,1,1358,172162.0667332438,172556.0136065415,0,0,3695.15295140923 -2984,3718,6723,6724,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,0,0,0,21,-2,102.4178774871976,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,35.65,54.35,57.84,8.333333333333334,3,4,0,0,0,8,4,1,1358,172162.0667332438,172556.0136065415,0,0,3695.15295140923 -2984,3718,6724,6723,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.288298794163415,9.129532752230217,0,21,2,57.19470645121215,0,-9,-9,2019,10,1,44,45,1,1,0,27.93973524687798,27.93973524687798,0,0,0,0,0,1,1,0,1.87279904301225,0,54.35,57.84,61.28,35.65,8.333333333333334,1,1,0,0,7,8,4,1,1358,172162.0667332438,172556.0136065415,0,0,3695.15295140923 -2984,3719,6725,-9,6723,6724,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-951.4163664869312,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.3817719981472695,0,49.44,56.93,-9,-9,8.333333333333334,4,2,0,0,1,8,1,1,1627,-119299.4874697645,0,0,0,730.4736389194711 -2985,3720,6726,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-888.3187823999963,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,1,1,0,1108,255019.0995026838,0,87470.15573637729,0,1907.295529882099 -2986,3721,6727,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.754330956457,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4663929694826071,0,54.2,44.29,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,128,3192.729733233043,0,0,0,1257.426611756429 -2987,3722,6728,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,5.075458754091456,4.896481331818575,0,0,0,-1032.070816152134,0,3,2,2019,22,10,32,35,1,10,0,.5464033996069625,.5464033996069625,0,0,0,0,0,0,0,0,6.512458374567931,0,38.22,40.47,-9,-9,3.333333333333333,1,1,0,0,9,6,2,1,691,340439.6265018345,0,220353.1243316326,28405.31028407992,340.9285863807489 -2988,3723,6729,6730,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,30,12,-40.35664176057974,0,2,-9,2019,27,11,0,0,4,11,0,0,0,1,0,22.84918373183904,0,0,1,1,0,0,0,34.75,26.16,58.15,52.91,0,1,1,0,1,1,6,3,0,593,94311.29049828296,51762.82297337505,134100.0474016334,48257.38328234524,3279.479709635209 -2988,3723,6730,6729,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.163288325434767,7.964998407220659,0,30,-12,-62.4505956702043,0,3,-9,2019,9,0,50,53,1,0,0,7.41731424775875,7.41731424775875,0,0,0,0,0,1,1,0,0,0,58.15,52.91,34.75,26.16,8.333333333333334,1,1,0,0,9,6,3,0,593,94311.29049828296,51762.82297337505,134100.0474016334,48257.38328234524,3279.479709635209 -2988,3724,6731,-9,6730,6729,1,0,20,0,0,0,2,2,-9,0,2,7.735103640403909,7.392361060758444,0,0,0,-1042.835421609755,0,3,3,2019,16,4,30,21,1,4,1,8.733774997761124,8.733774997761124,0,0,0,0,0,1,1,0,0,0,35.75,35.19,-9,-9,5,1,1,0,0,2,6,3,0,2275,106634.2420369354,0,0,0,1423.456021236522 -2988,3725,6732,-9,6730,6729,1,1,18,0,0,0,2,2,-9,0,4,8.324958477946602,8.101417431715605,0,0,0,-901.2343978767099,0,3,3,2019,6,0,55,45,1,0,1,8.31685013682824,8.31685013682824,0,0,0,0,0,1,1,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,95,-158359.5130766355,73793.01924260674,0,0,1337.196400447057 -2989,3726,6733,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,5.961359810694691,5.92004418704903,0,0,0,-987.9728421002453,0,3,2,2019,7,0,10,16,1,0,0,3.895358463028364,3.895358463028364,0,0,0,0,7,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,1,9,2,0,1379,89645.40171088534,-105375.506580986,0,0,-125.299021928746 -2990,3727,6734,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,9.146182349175794,9.123076189595546,0,0,0,-1069.879344359751,0,3,3,2019,11,1,37,37,1,1,0,26.82941134189656,26.82941134189656,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,9,9,5,1,2293,12040.72168099579,0,0,0,2793.05698940186 -2991,3728,6735,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-992.5256845550537,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,8.333333333333334,1,1,0,0,7,2,1,1,962,-77386.31675605601,0,0,0,0 -2992,3729,6736,6737,-9,-9,1,1,32,1,2,0,3,3,-9,0,2,8.100963169040376,7.963897282992503,0,6,-3,86.72412858217911,0,2,2,2019,7,0,50,35,1,0,0,6.806229544083892,6.806229544083892,0,0,0,0,76,1,1,0,0,0,62.9,48.63,15.05,27.23,8.333333333333334,1,1,0,0,7,13,3,0,846.5,195468.1557645599,130853.5197265029,88345.65866650488,83392.13084004619,3179.102269742673 -2992,3729,6737,6736,-9,-9,1,0,35,1,2,0,2,2,-9,1,1,0,0,0,6,3,148.0605604765349,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,15.05,27.23,62.9,48.63,8.333333333333334,1,1,0,0,0,13,3,0,846.5,195468.1557645599,130853.5197265029,88345.65866650488,83392.13084004619,3179.102269742673 -2992,3729,6738,-9,6737,6736,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-852.9018369324546,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,846.5,195468.1557645599,130853.5197265029,88345.65866650488,83392.13084004619,3179.102269742673 -2992,3729,6739,-9,6737,6736,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.4798515258875,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,846.5,195468.1557645599,130853.5197265029,88345.65866650488,83392.13084004619,3179.102269742673 -2993,3730,6740,-9,-9,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-972.6062011468057,-9,2,2,2019,3,1,0,0,2,1,1,0,0,0,0,0,0,27,1,1,0,.5028774107959089,0,56.47,59.4,-9,-9,10,1,1,0,0,0,13,1,1,79,8503.999202321078,0,0,0,259.8461989514119 -2994,3731,6741,6742,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.497084529352193,7.09599489596567,0,26,5,15.69716412787884,0,2,2,2019,11,1,45,45,1,1,0,3.813967393369714,3.813967393369714,0,0,0,0,2,0,0,0,.5158566593551084,0,51.43,45.6,47.64,31.09,6.666666666666667,1,1,0,0,9,9,3,1,696,23584.16859007293,-18176.99183772577,0,0,1620.405501226842 -2994,3731,6742,6741,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,7.553720098086528,7.881493535383459,0,26,-5,58.84732245001412,0,2,2,2019,16,4,20,21,1,4,0,11.80225660112066,11.80225660112066,0,0,0,0,2,0,0,0,0,0,47.64,31.09,51.43,45.6,5,1,1,0,0,9,9,3,1,696,23584.16859007293,-18176.99183772577,0,0,1620.405501226842 -2995,3732,6743,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1157.197931477317,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,0,0,0,4,1,1,397,-74036.01206900002,0,0,0,873.8336460805066 -2996,3733,6744,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.134935660779545,8.368702991542964,0,0,0,-1088.607881199121,0,3,3,2019,6,0,35,35,1,0,0,12.79374116079536,12.79374116079536,0,0,0,0,0,0,0,0,2.753340990125546,0,43.51,55.11,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,644,213053.6126520726,85676.48213485305,223158.8404600745,46707.12197280166,1260.112165551782 -2996,3734,6745,-9,6744,-9,1,1,28,0,0,0,2,2,-9,0,4,8.428895791219208,8.195728255056029,0,0,0,-1019.293858707492,0,1,3,2019,11,1,52,62,1,1,1,10.92821061568509,10.92821061568509,0,0,0,0,0,0,0,0,0,0,47.55,57.73,-9,-9,3.333333333333333,1,1,0,0,7,8,4,1,1328,-199654.486427091,-62241.49554961207,0,0,1765.45141480278 -2996,3735,6746,-9,6744,-9,1,1,26,0,0,0,2,2,-9,0,5,8.425511152656931,8.223179848854796,0,0,0,-1051.472841940211,0,1,2,2019,9,2,46,45,1,2,1,9.755275345609732,9.755275345609732,0,0,0,0,0,0,0,0,.9952703808707413,0,46.21,59.91,-9,-9,6.666666666666667,1,1,0,0,10,8,4,1,385,-61734.03311531333,140957.3309962282,0,0,1052.802771336819 -2996,3736,6747,-9,6744,-9,1,0,22,0,0,0,1,1,1,0,3,7.220615362226227,7.082484721195848,0,0,0,-1072.393924854817,-9,1,-9,2019,13,1,30,0,1,1,1,5.43649823985961,5.43649823985961,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,5,8,3,1,1895,83215.13889667147,0,0,0,731.0852759906142 -2997,3737,6748,6749,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,8.057315102663901,7.935525435096377,48,2,21.88307750186399,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.552194089316621,7.86964285739635,62.39,56.71,57.16,56.15,10,1,1,0,0,5,12,3,1,461.5,872999.7247591305,90961.86931679916,366142.9310784208,0,2085.394332089363 -2997,3737,6749,6748,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,48,-2,1.11275696465518,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,10,1,1,0,0,0,12,3,1,461.5,872999.7247591305,90961.86931679916,366142.9310784208,0,2085.394332089363 -2998,3738,6750,6751,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.321553698715714,5.432669276088911,45,-6,-5.94092225333888,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.683787493475309,5.6191999991689,56.52,48.31,58.32,50.22,8.333333333333334,1,1,0,0,6,7,3,1,973.5,1302235.039525572,581055.2614902391,469957.085186045,0,2547.728345636584 -2998,3738,6751,6750,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.853520784534719,7.823838362999577,45,6,-27.73793839110515,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.173121699263767,7.908185601293331,58.32,50.22,56.52,48.31,8.333333333333334,1,1,0,0,0,7,3,1,973.5,1302235.039525572,581055.2614902391,469957.085186045,0,2547.728345636584 -2999,3739,6752,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1104.86537264287,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,607,-137793.405311598,0,76044.54728042809,0,167.8028603489851 -3000,3740,6753,6754,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.834427698089272,8.911328658546035,0,19,-3,.6217027364313659,0,3,2,2019,4,0,40,35,1,0,0,20.71965323036949,20.71965323036949,0,0,0,0,0,1,1,0,1.426611486558311,0,49.29,54.59,43.92,47.65,8.333333333333334,1,1,0,0,8,7,4,0,1369,143187.4394189724,62116.07790789133,0,0,3336.457925838327 -3000,3740,6754,6753,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.061511813696558,6.800128812106744,0,19,3,-4.905973440805963,0,3,2,2019,16,4,10,10,1,4,0,14.11106649945238,14.11106649945238,0,0,0,0,0,1,1,0,0,0,43.92,47.65,49.29,54.59,6.666666666666667,1,1,0,0,2,7,4,0,1369,143187.4394189724,62116.07790789133,0,0,3336.457925838327 -3001,3741,6755,-9,6757,6756,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.466923366916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,958.75,123649.7285467922,53404.09199557564,118082.6890132989,0,3511.094086102979 -3001,3741,6756,6757,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.267890297445419,8.269746511383969,0,8,2,52.54092231244836,0,2,2,2019,12,0,36,36,1,0,0,11.94600270718656,11.94600270718656,0,0,0,0,0,1,1,0,0,0,44.7,53.68,54.2,57.49,3.333333333333333,1,1,0,0,9,1,4,1,958.75,123649.7285467922,53404.09199557564,118082.6890132989,0,3511.094086102979 -3001,3741,6757,6756,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.316010361720295,8.284782532848851,0,8,-2,-7.897424103821747,0,2,2,2019,9,0,30,28,1,0,0,15.4995842618939,15.4995842618939,0,0,0,0,0,1,1,0,3.612146701493942,0,54.2,57.49,44.7,53.68,5,1,1,0,0,9,1,4,1,958.75,123649.7285467922,53404.09199557564,118082.6890132989,0,3511.094086102979 -3001,3741,6758,-9,6757,6756,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.0396601576641,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,958.75,123649.7285467922,53404.09199557564,118082.6890132989,0,3511.094086102979 -3002,3742,6759,6760,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.577608179432563,8.083870013444564,30,0,53.13006758799763,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.352613252010707,57.63,56.14,53.87,53.44,8.333333333333334,1,1,0,0,6,1,4,1,834.5,1787529.406531394,785503.6629932383,326392.930336848,0,5298.591349209866 -3002,3742,6760,6759,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.858893277812316,7.905998785414948,30,0,87.97271225764877,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.47513720097806,7.500597044355098,53.87,53.44,57.63,56.14,8.333333333333334,1,1,0,0,0,1,4,1,834.5,1787529.406531394,785503.6629932383,326392.930336848,0,5298.591349209866 -3003,3743,6761,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,7.781724490986902,8.196167629185247,0,0,0,-946.7411049123295,0,2,2,2019,11,0,37,37,1,0,0,9.889774073425748,9.889774073425748,0,0,0,0,0,0,0,0,4.624427170583077,0,48.12,47.31,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,2138,51069.2835781309,9327.705485684543,49320.63897386321,37636.31292017304,1534.339914571748 -3004,3744,6762,-9,6763,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.813829556751,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,546.6666666666666,-87613.01194607762,17984.08304922192,0,0,1896.024291436863 -3004,3744,6763,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.029896679316543,7.281533911784932,5.977408420579409,0,0,-1029.867377250753,0,2,2,2019,7,0,16,0,1,0,0,7.094833544062373,7.094833544062373,0,0,0,0,0,1,0,1,6.192550130733885,0,40.32,56.92,-9,-9,8.333333333333334,1,1,0,0,6,6,2,0,546.6666666666666,-87613.01194607762,17984.08304922192,0,0,1896.024291436863 -3004,3744,6764,-9,6763,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.4539553856087,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,2,0,546.6666666666666,-87613.01194607762,17984.08304922192,0,0,1896.024291436863 -3005,3745,6765,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.107201908224415,7.177462746902274,0,0,-1031.253752523155,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,2.886470000331675,0,20.18375951003737,2,1,1,0,0,7.034170356767974,50.74,49.6,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,96,530272.3467993073,248127.6700656895,173058.6568760092,0,1225.813625591184 -3006,3746,6766,-9,6769,6768,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.1633532936377,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,1992540.614379457,910592.383370481,393024.2069662623,171101.3140963585,7478.028544725875 -3006,3746,6767,-9,6769,6768,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1111.86971656572,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,1992540.614379457,910592.383370481,393024.2069662623,171101.3140963585,7478.028544725875 -3006,3746,6768,6769,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,9.112772267822093,8.795764150162896,0,28,5,93.41716186213236,0,2,2,2019,10,1,39,40,1,1,0,25.16420640339895,25.16420640339895,0,0,0,0,2,0,0,0,6.853848908062051,0,55.17,27.84,33.66,60.3,6.666666666666667,1,1,0,0,9,10,5,1,514.5,1992540.614379457,910592.383370481,393024.2069662623,171101.3140963585,7478.028544725875 -3006,3746,6769,6768,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.711022664738699,9.923307554115418,0,28,-5,-8.910731260038602,0,2,2,2019,15,5,50,50,1,5,0,35.31630815042659,35.31630815042659,0,0,0,0,0,0,0,0,6.628097967086555,0,33.66,60.3,55.17,27.84,8.333333333333334,1,1,0,0,7,10,5,1,514.5,1992540.614379457,910592.383370481,393024.2069662623,171101.3140963585,7478.028544725875 -3007,3747,6770,6771,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.428380910101588,8.274741231421013,0,7,-4,4.24151944946544,0,3,3,2019,11,0,25,16,1,0,0,20.66549611932187,20.66549611932187,0,0,0,0,0,0,0,0,0,0,54.45,56.22,43.25,41.45,8.333333333333334,1,1,0,0,8,9,5,1,965.75,589355.5133542026,235124.2874239754,508091.5095031642,154495.6879958347,5503.477829127985 -3007,3747,6771,6770,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,9.103371018583617,9.302847994475513,0,7,4,-20.84378043805216,0,2,2,2019,12,0,35,38,1,0,0,32.74888842235491,32.74888842235491,0,0,0,0,0,0,0,0,2.454515204521929,0,43.25,41.45,54.45,56.22,6.666666666666667,1,1,0,0,8,9,5,1,965.75,589355.5133542026,235124.2874239754,508091.5095031642,154495.6879958347,5503.477829127985 -3007,3747,6772,-9,6770,6771,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.9724166738556,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,965.75,589355.5133542026,235124.2874239754,508091.5095031642,154495.6879958347,5503.477829127985 -3007,3747,6773,-9,6770,6771,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.977504712208,-9,2,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,9,5,1,965.75,589355.5133542026,235124.2874239754,508091.5095031642,154495.6879958347,5503.477829127985 -3008,3748,6774,6775,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,8.832930074792605,8.602404269281919,0,6,-4,-165.4692987269104,0,2,1,2019,10,1,37,37,1,1,0,19.08492126290127,19.08492126290127,0,0,0,0,0,1,1,0,0,0,46.5,58.26,51.94,55.88,6.666666666666667,1,1,0,0,7,11,5,1,654,135889.5743697832,84968.04087917671,243156.0168345539,143748.9740676743,3912.259535579108 -3008,3748,6775,6774,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.360940020509691,8.219084478243866,0,6,4,23.62530639150423,0,2,2,2019,11,1,45,50,1,1,0,10.138427149965,10.138427149965,0,0,0,0,0,1,1,0,3.61847057677875,0,51.94,55.88,46.5,58.26,10,1,1,0,0,7,11,5,1,654,135889.5743697832,84968.04087917671,243156.0168345539,143748.9740676743,3912.259535579108 -3008,3748,6776,-9,6774,6775,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.0296467612927,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,654,135889.5743697832,84968.04087917671,243156.0168345539,143748.9740676743,3912.259535579108 -3009,3749,6777,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.023870914622535,7.89685995446165,0,0,-1126.565602726785,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.366526806731173,53.37,52.37,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,653,756066.7283912397,535087.3642875629,172679.6720914309,0,2544.409876056275 -3009,3750,6778,-9,-9,6777,1,0,24,0,0,0,1,1,-9,0,4,8.223756729243444,8.496872506201239,0,0,0,-961.9186486680228,0,-9,1,2019,6,0,30,39,1,0,0,15.42586968820945,15.42586968820945,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,10,1,1,0,0,2,11,4,1,655,26371.40963966609,-126702.3913364369,0,0,1464.923814356971 -3010,3751,6779,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.732511585872841,9.808445095255884,0,0,0,-1019.899649289836,-9,1,2,2019,18,6,40,0,1,6,0,48.05291505455404,48.05291505455404,0,0,0,0,0,0,0,0,3.570087567595698,0,46.98,59.35,-9,-9,5,1,1,0,0,5,11,5,0,157,428518.5618368562,38070.19902343539,251247.1723622264,96884.1993017783,9011.327325786036 -3011,3752,6780,-9,6782,6781,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.3545967875357,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1031.333333333333,373877.1421907673,136754.4775883898,153362.7933589192,0,3102.074644856322 -3011,3752,6781,6782,-9,-9,1,1,55,0,1,0,1,1,-9,0,5,8.732615388268968,8.684395456568184,0,22,1,.8910566254474531,0,2,2,2019,11,0,40,40,1,0,0,16.78810470520708,16.78810470520708,0,0,0,0,0,1,1,0,0,0,59.43,58.05,54.69,57.47,6.666666666666667,1,1,0,0,12,1,4,1,1031.333333333333,373877.1421907673,136754.4775883898,153362.7933589192,0,3102.074644856322 -3011,3752,6782,6781,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.015697393862979,7.691023997752169,0,22,-1,99.44254839409622,0,3,3,2019,6,0,25,18,1,0,0,10.76718637584149,10.76718637584149,0,0,0,0,0,1,1,0,0,0,54.69,57.47,59.43,58.05,8.333333333333334,1,1,0,0,12,1,4,1,1031.333333333333,373877.1421907673,136754.4775883898,153362.7933589192,0,3102.074644856322 -3011,3753,6783,-9,6782,6781,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1073.154657559124,-9,1,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,.1746172628507419,0,33.83,63.9,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,974,-68765.43258440265,0,0,0,-267.6650838138135 -3012,3754,6784,6785,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.733512040463957,8.390991451521609,51,0,-146.7458350940229,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.334208372800518,57.16,56.15,47.89,56.25,8.333333333333334,1,1,0,0,0,9,4,1,304,867662.1592607161,500353.9466252802,345968.7385745306,0,3178.189287564946 -3012,3754,6785,6784,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,51,0,-106.6627610042356,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.289122544636053,0,47.89,56.25,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,304,867662.1592607161,500353.9466252802,345968.7385745306,0,3178.189287564946 -3013,3755,6786,6788,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,8.650135275538101,8.343303776627884,0,23,-4,-13.2301044651287,0,-9,-9,2019,9,0,42,30,1,0,0,15.32398217445193,15.32398217445193,0,0,0,0,0,1,1,0,0,0,51.13,50.73,38.74,42.83,8.333333333333334,1,1,0,0,8,11,4,1,346.75,457601.7768543712,283268.2925682628,379398.3431148627,169459.5918305742,4019.074857897687 -3013,3755,6787,-9,6786,6788,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.7504142709288,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,346.75,457601.7768543712,283268.2925682628,379398.3431148627,169459.5918305742,4019.074857897687 -3013,3755,6788,6786,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.683851460009707,8.689356393420709,0,23,4,77.38598546237272,0,3,3,2019,21,7,37,37,1,7,0,19.4890156360896,19.4890156360896,0,0,0,0,0,1,1,0,0,0,38.74,42.83,51.13,50.73,3.333333333333333,1,1,0,0,8,11,4,1,346.75,457601.7768543712,283268.2925682628,379398.3431148627,169459.5918305742,4019.074857897687 -3013,3755,6789,-9,6786,6788,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-912.4879451520096,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,4,1,346.75,457601.7768543712,283268.2925682628,379398.3431148627,169459.5918305742,4019.074857897687 -3013,3756,6790,-9,6786,6788,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-976.3701487608582,-9,1,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,1,663,-2713.174606487981,0,0,0,0 -3014,3757,6791,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.457569311726235,8.380902553074298,0,0,0,-995.5300748149577,0,3,3,2019,10,0,40,0,1,1,0,11.96866643348565,11.96866643348565,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,4,0,291,-78337.19603926719,0,0,0,2027.169625447475 -3015,3758,6792,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.817801970931281,6.054490827335377,0,0,-928.5208531953749,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,10.88091489539878,0,0,1,1,0,1.227111910456686,5.702148917172286,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,751,-8211.681577441777,22132.79090893962,144739.9435407608,0,542.1277260256643 -3015,3759,6793,-9,6792,-9,1,1,52,0,0,0,3,3,-9,0,3,8.034660273903816,7.9038209332414,0,0,0,-934.880854606304,0,3,3,2019,12,0,32,30,1,0,0,9.490048146636026,9.490048146636026,0,0,0,0,0,1,1,0,0,0,49.35,51.77,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,335,435992.0434818056,30120.96719560468,131766.9010862171,0,961.5255800397501 -3016,3760,6794,-9,6796,6795,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.6095910904038,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,0,861.6666666666666,177510.0340635188,-26687.56173696408,383614.7917135395,244930.4227974266,3597.452033258218 -3016,3760,6795,6796,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.539821965600973,8.706726582313138,0,9,4,103.8055543494509,0,2,2,2019,6,0,37,37,1,0,0,16.53788599668058,16.53788599668058,0,0,0,0,0,1,1,0,0,0,48.48,55.86,40.77,61.04,8.333333333333334,1,1,0,0,8,9,5,0,861.6666666666666,177510.0340635188,-26687.56173696408,383614.7917135395,244930.4227974266,3597.452033258218 -3016,3760,6796,6795,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.051663378367092,8.255255220339835,0,5,-4,-57.06916117184814,0,2,2,2019,17,5,24,24,1,5,0,22.51370532831108,22.51370532831108,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.48,55.86,8.333333333333334,1,1,0,0,7,9,5,0,861.6666666666666,177510.0340635188,-26687.56173696408,383614.7917135395,244930.4227974266,3597.452033258218 -3017,3761,6797,6798,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.54525087452113,8.916383903560204,0,38,0,5.900136475933713,0,-9,-9,2019,7,0,40,40,1,0,0,13.1323282817377,13.1323282817377,0,0,0,0,14.5,1,1,0,3.928660280238841,0,59.55,43.22,51,53,8.333333333333334,1,1,0,0,9,12,4,1,307.5,315061.1543529994,185790.9436466,180141.0213234101,23499.00807277472,2749.535319731342 -3017,3761,6798,6797,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.419137024598891,7.411221934678935,0,8,0,-12.81676298790552,0,-9,-9,2019,10,0,16,16,1,1,0,10.61500184500637,10.61500184500637,0,0,0,0,0,1,1,0,0,0,51,53,59.55,43.22,8,1,1,0,0,1,12,4,1,307.5,315061.1543529994,185790.9436466,180141.0213234101,23499.00807277472,2749.535319731342 -3017,3762,6799,-9,6798,6797,1,1,33,0,0,0,1,1,-9,0,4,8.521433432850472,8.473838832051834,0,0,0,-1029.99652236604,0,-9,2,2019,10,0,50,40,1,1,1,11.19057410626992,11.19057410626992,0,0,0,0,0,1,1,0,2.401572561340393,0,50,57,-9,-9,7,1,1,0,0,1,12,5,1,895,185416.8052677544,79091.5474759661,89355.24016123953,48300.25356269362,1717.826978763121 -3018,3763,6800,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1056.53272295288,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.220834748232076,0,0,1,1,0,2.6402826595959,0,63.56,42.39,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,380,-131133.5918842514,0,0,0,1005.764081527757 -3019,3764,6801,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,0,0,-837.2039596199999,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.68,46.02,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,777,2911.858796266295,0,0,0,939.6373082742431 -3019,3765,6802,-9,-9,6801,1,1,20,0,0,0,2,2,1,0,3,5.924968175470234,5.860391120266621,0,0,0,-930.430917693021,-9,3,2,2019,16,4,9,0,1,4,1,4.119404882872781,4.119404882872781,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,5,1,1,0,0,2,13,2,0,478,134552.3215768686,-54739.15506359767,0,0,882.5516586804122 -3020,3766,6803,6804,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,30,0,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,48,48,7,2,3,1,1,0,6,2,1,461.5,-139850.1576231842,0,0,0,0 -3020,3766,6804,6803,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,8,0,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,2,3,0,1,0,6,2,1,461.5,-139850.1576231842,0,0,0,0 -3020,3767,6805,-9,6804,6803,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1071.74078603432,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,0,6,1,1,686,163610.4022467116,0,0,0,0 -3021,3768,6806,6807,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.15840496264299,9.336499598066769,0,6,0,-27.20895833803271,0,1,2,2019,13,2,40,38,1,2,0,33.12402969220179,33.12402969220179,0,0,0,0,0,0,0,0,.3982192812041991,0,49.28,52.09,56.41,36.04,8.333333333333334,1,1,0,0,11,10,5,0,829.5,786718.2763267908,952047.7418499067,0,0,5594.944389300927 -3021,3768,6807,6806,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.312810899360473,8.485964852998245,0,6,0,133.0480397027712,0,-9,-9,2019,13,3,43,43,1,3,0,12.48494953842421,12.48494953842421,0,0,0,0,0,0,0,0,7.359580613968414,0,56.41,36.04,49.28,52.09,8.333333333333334,1,1,0,0,5,10,5,0,829.5,786718.2763267908,952047.7418499067,0,0,5594.944389300927 -3022,3769,6808,-9,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,7.201692243454266,7.010093022986243,0,0,0,-979.6773704097942,0,-9,-9,2019,24,12,16,16,1,12,0,7.950407351387564,7.950407351387564,0,0,0,0,7,1,1,0,0,0,24.03,57.05,-9,-9,1.666666666666667,1,1,0,0,3,9,2,0,254,193876.5787754127,0,186107.8221330507,8776.126951956992,1545.027247513078 -3023,3770,6809,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,5.275781664649929,5.220481893753263,0,0,-904.3837286773997,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.707493675850722,4.964790395349425,53.96,41.27,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,2044,266072.8339659031,0,239459.153340187,0,827.0652401901589 -3023,3771,6810,-9,6809,-9,1,1,48,0,0,0,1,1,-9,0,4,8.245221064520202,8.646565842633073,0,0,0,-993.0589186128832,0,1,1,2019,9,4,50,66,1,4,0,9.268750141954792,9.268750141954792,0,0,0,0,0,1,1,0,.6082849757655882,0,55.76,52.64,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,608,139121.4772736579,-55401.83314896721,0,0,1759.647983221553 -3024,3772,6811,6812,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,6.479220036879294,6.525479562949849,8,1,-34.32636048892838,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.625842180730712,0,0,1,1,0,4.131734774234509,6.486962779488654,36.03,31.14,37.26,26.17,6.666666666666667,1,1,0,0,0,11,2,1,563.5,-47318.28140367346,14981.81788620468,0,0,1819.26295607529 -3024,3772,6812,6811,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,8,-1,-40.25843037373328,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,9.946070002518498,0,0,1,1,0,3.938484042675517,0,37.26,26.17,36.03,31.14,8.333333333333334,1,1,0,0,0,11,2,1,563.5,-47318.28140367346,14981.81788620468,0,0,1819.26295607529 -3025,3773,6813,6814,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.049927201009762,6.891694418370265,44,4,58.53973587450981,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.971666382054956,44.24,35.51,46.31,48.83,5,1,1,0,0,8,10,3,1,873.5,1403015.517499488,556877.8145257221,240195.3876168067,0,1866.024559339939 -3025,3773,6814,6813,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.736284803973997,7.76347826981348,5.2596678737397,46,-4,-3.991709628069097,0,-9,-9,2019,10,0,31,37,1,0,0,6.484651577819501,6.484651577819501,0,0,0,0,0,1,1,0,0,5.313178808243757,46.31,48.83,44.24,35.51,8.333333333333334,1,1,0,0,11,10,3,1,873.5,1403015.517499488,556877.8145257221,240195.3876168067,0,1866.024559339939 -3026,3774,6815,-9,6816,6817,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.8618218857731,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,543.25,17850.2899819044,-13144.90746678963,217210.9727736572,187685.5911492704,3295.935060621986 -3026,3774,6816,6817,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,8.7639197976068,8.659184019869437,0,1,4,69.8863129603438,-9,1,2,2019,10,3,60,0,1,3,0,11.04856195225706,11.04856195225706,0,0,0,0,0,1,1,0,0,0,45.69,53.27,48,58,8.333333333333334,1,1,0,0,10,4,4,1,543.25,17850.2899819044,-13144.90746678963,217210.9727736572,187685.5911492704,3295.935060621986 -3026,3774,6817,6816,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.375737754686535,7.252525377676064,0,1,-4,3.084335869998464,-9,-9,-9,2019,10,0,40,0,1,1,0,4.014389594845191,4.014389594845191,0,0,0,0,0,1,1,0,0,0,48,58,45.69,53.27,7,1,1,0,0,12,4,4,1,543.25,17850.2899819044,-13144.90746678963,217210.9727736572,187685.5911492704,3295.935060621986 -3026,3774,6818,-9,6816,6817,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.6708835734938,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,1,543.25,17850.2899819044,-13144.90746678963,217210.9727736572,187685.5911492704,3295.935060621986 -3027,3775,6819,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,7.356761421948803,7.570450805104531,0,0,-1051.069249585936,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.704232156560765,7.735030267521648,59.31,46.96,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1575,783058.5884525767,443895.0596488139,339932.8325437397,0,1852.941157319209 -3028,3776,6820,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.478259721291763,7.464187293673605,0,0,0,-942.6519577803186,-9,-9,-9,2019,7,1,26,0,1,1,0,8.704340243749362,8.704340243749362,0,0,0,0,0,0,0,0,.8396748599618935,0,40.18,42.33,-9,-9,10,1,1,0,0,0,9,3,0,610,80676.2840116204,0,0,0,1047.334352086058 -3029,3777,6821,6822,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.057747553937648,6.220105698308321,28,6,30.79601593382167,0,3,3,2019,8,0,0,26,4,0,0,0,0,0,0,0,0,0,1,1,0,6.044202824476926,5.743736152584691,53,47,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,648,1110811.252729642,187141.0866618998,232354.9994518569,0,2095.526234651906 -3029,3777,6822,6821,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.343666299191287,7.28779969976849,4.996284870469712,33,-6,-.1972018977786305,0,3,3,2019,11,0,20,20,1,0,0,8.770105745280459,8.770105745280459,0,0,0,0,0,1,1,0,7.399706754256203,5.062459253938733,57.16,56.15,53,47,8.333333333333334,1,1,0,0,10,9,3,1,648,1110811.252729642,187141.0866618998,232354.9994518569,0,2095.526234651906 -3029,3778,6823,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.465498133714027,8.501419911731002,0,0,0,-936.0565605660312,0,2,2,2019,10,1,60,60,1,1,0,8.573067557216461,8.573067557216461,0,0,0,0,0,1,1,0,.5488329065510473,0,56.19,46.16,-9,-9,5,1,1,0,0,10,9,4,1,1421,269516.4318146785,-40982.30333238072,464960.5845467769,64291.33410501779,1967.529201807521 -3030,3779,6824,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1124.61342239653,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,42.35,36.31,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,197,83976.11422264042,0,0,0,527.763568391726 -3031,3780,6825,6826,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.288698931351764,8.523454256323049,0,25,-4,11.54360845600892,0,2,2,2019,11,0,40,37,1,0,0,12.36797360183083,12.36797360183083,0,0,0,0,0,0,0,0,7.726201788544538,0,49.35,59.64,51.77,58.57,6.666666666666667,1,1,0,0,2,2,4,1,387,136202.2018192917,0,281185.9148038111,50052.56052183846,3824.761349287982 -3031,3780,6826,6825,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.833793889582754,8.18769582958139,0,24,4,-28.82734525910404,0,2,2,2019,7,0,45,37,1,0,0,8.647322273624017,8.647322273624017,0,0,0,0,0,0,0,0,7.809963689601401,0,51.77,58.57,49.35,59.64,8.333333333333334,1,1,0,0,6,2,4,1,387,136202.2018192917,0,281185.9148038111,50052.56052183846,3824.761349287982 -3032,3781,6827,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1049.502582672838,-9,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,2,3,0,0,0,4,1,0,553,-30150.47255805104,0,0,0,1605.304955502385 -3032,3782,6828,-9,6827,-9,1,1,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1087.601970821588,-9,3,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,29.17,53.18,-9,-9,0,2,3,0,1,2,4,1,0,380,-88013.06195280954,0,0,0,407.4846703890559 -3033,3783,6829,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.350073605420635,4.732788875013219,0,0,-1040.401385513836,0,3,3,2019,6,0,0,28,4,0,0,0,0,0,0,0,0,74.5,1,1,0,3.815762756657754,4.892238847069909,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,579,13196.48086381296,148263.2307804454,0,0,353.7282156283799 -3034,3784,6830,6831,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.085257250438572,8.713503752608965,6.916380548725118,7,5,-18.10815682209808,0,-9,-9,2019,10,0,40,40,1,1,0,9.747583555767676,9.747583555767676,0,0,0,0,0,1,1,0,6.197494154032892,6.507339121412259,52,48,55.36,51.57,7,1,1,0,0,1,2,4,1,471.5,451055.7603963709,118102.7993342131,183406.8718110254,33654.20774080591,3562.165914269376 -3034,3784,6831,6830,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.448486618420207,7.464576029765363,4.991521009713201,7,-5,6.329639730833801,0,3,-9,2019,12,1,25,30,1,1,0,9.693729968438323,9.693729968438323,0,0,0,0,0,1,1,0,0,5.288886194313831,55.36,51.57,52,48,8.333333333333334,1,1,0,0,10,2,4,1,471.5,451055.7603963709,118102.7993342131,183406.8718110254,33654.20774080591,3562.165914269376 -3035,3785,6832,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.62530397462444,8.604165198656478,0,0,0,-986.1639270212887,-9,-9,-9,2019,12,0,38,0,1,0,0,15.97417410813368,15.97417410813368,0,0,0,0,0,0,0,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,3,8,5,0,1545,493648.1010233385,161536.1340320132,620452.7061956479,146590.7121213548,2567.56578105197 -3036,3786,6833,6834,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.837905415246196,9.646090302788711,6.20274287846891,15,-2,-40.43178900314649,0,3,3,2019,10,0,42,48,1,1,0,52.72809598557537,52.72809598557537,0,0,0,0,0,1,1,0,0,6.422874622088824,52,48,50,47,7,1,1,0,0,9,7,5,0,502.5,4350686.23839548,2950150.532182883,643624.267117677,0,6038.185537381736 -3036,3786,6834,6833,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.672266449994686,6.570436184064119,15,2,-43.75709339346997,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.517154271315567,50,47,52,48,7,1,1,0,0,0,7,5,0,502.5,4350686.23839548,2950150.532182883,643624.267117677,0,6038.185537381736 -3037,3787,6835,6836,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.815329127195294,7.875601611390326,6.403461618737706,30,-6,33.07004019678129,0,2,2,2019,19,7,20,-9,1,7,0,9.993682128985169,9.993682128985169,0,0,0,0,0,0,0,0,6.042656952444283,0,35.61,55.45,52.34,56.95,6.666666666666667,1,1,0,0,12,9,5,1,419,1585701.887317715,943228.2592333839,515604.658119463,0,6632.037710420853 -3037,3787,6836,6835,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.238154588678285,9.418416930310183,8.531577425583526,30,6,30.32129395280419,0,2,1,2019,17,6,24,51,1,6,0,44.32691792234365,44.32691792234365,0,0,0,0,0,0,0,0,8.481875454829856,0,52.34,56.95,35.61,55.45,8.333333333333334,1,1,0,0,13,9,5,1,419,1585701.887317715,943228.2592333839,515604.658119463,0,6632.037710420853 -3038,3788,6837,6838,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.966267474099441,8.692194176763033,0,2,4,5.151581007730929,0,-9,-9,2019,10,0,27,30,1,1,0,33.7862874398535,33.7862874398535,0,0,0,0,0,1,1,0,0,0,48,58,43.57,62.68,7,1,1,0,0,1,2,4,0,250.3333333333333,10618.22906898549,-33726.56465659182,149784.1508463371,116984.760384382,3541.877826604446 -3038,3788,6838,6837,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,0,0,0,2,-4,43.51481419356955,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,48,58,10,2,3,0,0,0,2,4,0,250.3333333333333,10618.22906898549,-33726.56465659182,149784.1508463371,116984.760384382,3541.877826604446 -3038,3788,6839,-9,6838,6837,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.1327852312713,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,2,4,0,250.3333333333333,10618.22906898549,-33726.56465659182,149784.1508463371,116984.760384382,3541.877826604446 -3039,3789,6840,6841,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.523483924129541,7.411660922895322,0,8,1,47.3237333231385,0,3,3,2019,16,4,20,37,1,4,0,11.69434326765214,11.69434326765214,0,0,0,0,7,1,1,0,0,0,43.35,52.88,43.71,56.91,8.333333333333334,1,1,0,1,9,11,3,1,596.3333333333334,39726.35566580216,101115.5340599291,94953.74864108326,50122.4974632649,2687.675386543267 -3039,3789,6841,6840,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,7.745797259593523,7.86822098274687,0,8,-1,3.873500896150933,0,2,2,2019,16,5,60,60,1,5,0,5.178174055138786,5.178174055138786,0,0,0,0,0,1,1,0,0,0,43.71,56.91,43.35,52.88,8.333333333333334,1,1,0,1,9,11,3,1,596.3333333333334,39726.35566580216,101115.5340599291,94953.74864108326,50122.4974632649,2687.675386543267 -3039,3789,6842,-9,6840,6841,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1054.483337396519,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,1,596.3333333333334,39726.35566580216,101115.5340599291,94953.74864108326,50122.4974632649,2687.675386543267 -3039,3790,6843,-9,6840,6841,1,0,26,0,1,0,2,2,-9,0,4,7.989759211432625,8.201983189680686,0,0,0,-985.9878343344552,0,3,3,2019,11,0,40,41,1,0,1,7.560198682505165,7.560198682505165,0,0,0,0,0,1,1,0,0,0,56.58,39.02,-9,-9,6.666666666666667,1,1,0,0,9,11,4,1,204,97547.46579320611,64249.34202793388,0,0,774.7762360097472 -3040,3791,6844,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.972060566725874,7.168640732024834,0,0,0,-951.1041145077432,0,2,-9,2019,15,3,11,6,1,3,0,10.16004548946516,10.16004548946516,0,0,0,0,0,1,1,0,6.07462289471485,0,42.48,45.49,-9,-9,6.666666666666667,1,1,0,0,12,10,2,1,132,282472.1218743662,90697.45381907705,78385.66294116004,42192.23581744058,1031.576093179825 -3041,3792,6845,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.416402170662638,7.58480022923263,0,0,0,-982.8262945237256,0,2,2,2019,12,0,35,35,1,0,0,5.913398381151925,5.913398381151925,0,0,0,0,0,0,0,0,2.015123612849966,0,41.89,46.99,-9,-9,3.333333333333333,1,1,0,0,8,1,3,1,365,164596.0891355333,-117102.854763662,195439.1089817363,0,1022.671498021418 -3042,3793,6846,6847,6849,-9,1,0,60,0,0,0,1,1,-9,0,4,0,0,0,36,-1,29.17647237250669,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.968954946863533,0,53,52,55,53,8,1,1,0,0,0,9,4,1,919,1804627.439359564,1082018.660962784,634554.4640847382,0,3046.811791908568 -3042,3793,6847,6846,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.600541011998429,8.582280872858975,0,36,1,19.80283208545366,0,2,1,2019,8,0,40,42,1,0,0,14.29436276399073,14.29436276399073,0,0,0,0,0,1,1,0,2.503328807180257,0,55,53,53,52,8,1,1,0,0,1,9,4,1,919,1804627.439359564,1082018.660962784,634554.4640847382,0,3046.811791908568 -3042,3794,6848,-9,6846,6847,1,0,32,0,0,0,1,1,1,0,1,0,8.846315211142864,9.001873542376467,0,0,-975.7143609949978,-9,1,1,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,14.5,1,1,0,8.913393402411916,0,40.32,29.37,-9,-9,3.333333333333333,1,1,0,1,7,9,5,1,64,584557.7840731676,120219.4755119734,153956.3852837587,0,4163.148810132559 -3042,3795,6849,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,8.685006268605456,8.612188836027247,0,0,-955.1128274705128,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.104773166404618,8.482414026051636,54,43,-9,-9,8,4,6,0,0,0,9,5,1,1343,712820.7342423183,199128.0160621038,236229.3361418181,0,4394.967924648318 -3043,3796,6850,6851,-9,-9,1,1,43,0,0,0,3,3,-9,0,4,8.216751975015082,8.26835715842557,0,2,-4,134.7761156029929,0,2,3,2019,8,0,37,38,1,0,0,10.87413668527503,10.87413668527503,0,0,0,0,0,1,1,0,0,0,51.19,52.17,40.79,35.63,8.333333333333334,1,1,0,0,6,2,3,0,2062,243052.3733569146,73445.43911145579,191635.1067841806,0,1794.913808230363 -3043,3796,6851,6850,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,2,4,33.99000976049855,0,-9,-9,2019,24,11,0,27,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,40.79,35.63,51.19,52.17,6.666666666666667,1,1,0,0,4,2,3,0,2062,243052.3733569146,73445.43911145579,191635.1067841806,0,1794.913808230363 -3044,3797,6852,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.161215933187504,7.72407846661359,0,0,-927.625841153955,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,6.286260413118939,12.56151824924661,0,0,1,1,0,5.651261902492998,7.813340159177033,61.93,22.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,494,827837.7759557416,3260.229939585275,321531.6564228345,0,2459.422465571815 -3045,3798,6853,6854,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.548308083279919,8.959406032200512,0,6,-3,-107.6206381383137,0,3,3,2019,9,0,70,70,1,0,0,7.695379741662109,7.695379741662109,0,0,0,0,2,0,0,0,0,0,64.78,32.7,48.71,51.81,8.333333333333334,2,3,0,0,7,12,5,1,1651.5,696013.8177118057,485635.1843365611,255831.3992322444,112568.0870212396,3179.184616003565 -3045,3798,6854,6853,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.482595619032772,7.91191416647929,6,3,-28.2508944271203,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,0,7.566319313153887,48.71,51.81,64.78,32.7,8.333333333333334,1,1,0,0,3,12,5,1,1651.5,696013.8177118057,485635.1843365611,255831.3992322444,112568.0870212396,3179.184616003565 -3046,3799,6855,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.4339675625446,9.768396404274743,0,0,0,-968.3993946036595,0,2,2,2019,7,0,60,50,1,0,0,29.95065015779963,29.95065015779963,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,12,10,5,0,219,159356.8852352937,-110771.7449423439,288501.7218637008,114079.7979724819,7801.947441465939 -3047,3800,6856,-9,6857,6858,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.2303350916377,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,1,661.4,421165.2951002793,229430.5284860517,439539.8954193435,227451.6849701014,3750.29198391656 -3047,3800,6857,6858,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,8.07589021312425,8.159063830090423,0,8,-3,36.58903873790484,0,3,3,2019,8,1,37,23,1,1,0,9.194447636822007,9.194447636822007,0,0,0,0,0,1,1,0,7.027987252814657,0,48.15,48.01,58.51,37.08,6.666666666666667,2,3,0,1,10,6,4,1,661.4,421165.2951002793,229430.5284860517,439539.8954193435,227451.6849701014,3750.29198391656 -3047,3800,6858,6857,-9,-9,1,1,44,0,3,0,2,2,-9,0,2,8.741111231683057,8.983738283082655,0,8,3,-22.85973738679488,0,3,3,2019,12,1,41,38,1,1,0,15.31407562017779,15.31407562017779,0,0,0,0,0,1,1,0,0,0,58.51,37.08,48.15,48.01,3.333333333333333,2,3,0,1,10,6,4,1,661.4,421165.2951002793,229430.5284860517,439539.8954193435,227451.6849701014,3750.29198391656 -3047,3800,6859,-9,6857,6858,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.260616110528,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,661.4,421165.2951002793,229430.5284860517,439539.8954193435,227451.6849701014,3750.29198391656 -3047,3800,6860,-9,6857,6858,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1005.154564297762,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,4,1,661.4,421165.2951002793,229430.5284860517,439539.8954193435,227451.6849701014,3750.29198391656 -3048,3801,6861,-9,6862,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.9026178141955,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,868,421303.0468960882,130844.13890078,147530.4575628704,0,1492.581310670359 -3048,3801,6862,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.391069978191299,7.450646215471707,6.211952775593169,0,0,-955.759829644924,0,2,-9,2019,11,0,20,21,1,2,0,7.932196247585487,7.932196247585487,0,0,0,0,0,1,1,0,6.008805121590432,0,48,49,-9,-9,7,1,1,0,0,7,4,3,1,868,421303.0468960882,130844.13890078,147530.4575628704,0,1492.581310670359 -3049,3802,6863,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,6.837447294424383,6.719255523395361,0,0,0,-947.6662706143536,0,1,1,2019,7,0,21,45,1,0,0,4.081557917536063,4.081557917536063,0,0,0,0,0,0,0,0,6.538169368248808,0,59.73,37.67,-9,-9,8.333333333333334,1,1,0,0,10,8,2,1,399,185327.6140632953,0,226489.0341857998,104108.544599907,925.1804826990087 -3050,3803,6864,6866,-9,-9,1,0,40,0,3,0,3,3,-9,0,4,0,0,0,19,-5,-102.5359993367062,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49,56,52,55,7,2,3,0,1,0,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3050,3803,6865,-9,6864,6866,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.691433413389,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3050,3803,6866,6864,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,6.954234205520991,6.703667314471568,0,19,5,-138.0673248283116,0,3,3,2019,9,0,24,24,1,1,0,3.908922907190564,3.908922907190564,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,1,10,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3050,3803,6867,-9,6864,6866,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-998.4339708832822,-9,3,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3050,3803,6868,-9,6864,6866,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-915.2030468930975,-9,3,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3050,3803,6869,-9,6864,6866,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1042.923344336057,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,8,2,0,781.8333333333334,49921.54218117819,-38515.69547132989,0,0,2237.158128739068 -3051,3804,6870,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-989.5311851534865,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,1.283608441968837,0,0,1,1,0,0,0,53.03,40.44,-9,-9,5,1,1,0,0,0,1,1,1,762,-166970.0348532325,0,0,0,1045.668562995989 -3052,3805,6871,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.259763424264921,9.675159844427682,0,0,0,-985.7433274824939,0,2,2,2019,6,0,40,45,1,0,0,50.55058212072074,50.55058212072074,0,0,0,0,14.5,0,0,0,8.626739787264512,0,57.16,56.15,-9,-9,10,2,3,0,0,13,9,5,1,350,467663.7242082942,248219.9678743878,236653.6816483499,237894.8065096007,6271.269716567403 -3053,3806,6872,6873,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.463137766483055,7.223622294271085,0,2,-1,75.05774515096988,0,2,1,2019,11,1,28,38,1,1,0,7.201228135269361,7.201228135269361,0,0,0,0,0,0,0,0,2.817984071039696,0,46.33,55.93,49.04,55.86,6.666666666666667,1,1,0,0,4,9,4,1,733.5,119035.3587688332,-20126.42273678241,0,0,2405.328337825119 -3053,3806,6873,6872,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.35651484906502,8.064279944484756,0,2,1,-62.81278110170474,0,-9,-9,2019,1,0,65,57,1,0,0,6.871844765902265,6.871844765902265,0,0,0,0,0,0,0,0,1.423128808735677,0,49.04,55.86,46.33,55.93,6.666666666666667,1,1,0,0,4,9,4,1,733.5,119035.3587688332,-20126.42273678241,0,0,2405.328337825119 -3054,3807,6874,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.929083047394021,6.586588918724711,0,0,-1030.358055471744,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.872392520123221,6.757854768278482,45.12,45.4,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,561,380851.5945600708,144485.5700540739,120282.6729316249,0,823.4923839564365 -3055,3808,6875,6876,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,8,2,0,0,3,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,44.81,57.83,19.01,22.64,8.333333333333334,1,1,0,0,0,13,1,0,322,-92682.1050755285,0,0,0,1941.985444372803 -3055,3808,6876,6875,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,8,-2,0,0,2,2,2019,25,11,0,0,4,11,0,0,0,1,0,36.78729610572382,0,0,1,1,0,0,0,19.01,22.64,44.81,57.83,3.333333333333333,1,1,0,0,0,13,1,0,322,-92682.1050755285,0,0,0,1941.985444372803 -3055,3809,6877,-9,-9,-9,1,1,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-975.4258398114338,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.76,59.88,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,177,-31539.17101327111,0,0,0,501.8197967335601 -3056,3810,6878,6880,-9,-9,1,0,26,0,1,0,1,1,-9,0,3,6.89224869710329,6.797652628766546,0,5,1,-103.009382688766,0,-9,-9,2019,21,9,18,16,1,9,0,5.812771619303938,5.812771619303938,0,0,0,0,0,1,1,0,0,0,33.27,53.82,51.73,58.82,6.666666666666667,1,1,0,0,4,2,4,0,970.3333333333334,31528.59952394941,32801.20267823539,85270.72603754519,51093.32362097696,2490.202586337103 -3056,3810,6879,-9,6878,6880,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.3339398358378,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,970.3333333333334,31528.59952394941,32801.20267823539,85270.72603754519,51093.32362097696,2490.202586337103 -3056,3810,6880,6878,-9,-9,1,1,25,0,1,0,2,2,-9,0,5,8.403779313927709,8.210982143568614,0,5,-1,179.8681250352721,0,-9,-9,2019,6,0,35,35,1,0,0,17.18844970602504,17.18844970602504,0,0,0,0,0,1,1,0,0,0,51.73,58.82,33.27,53.82,6.666666666666667,1,1,0,0,10,2,4,0,970.3333333333334,31528.59952394941,32801.20267823539,85270.72603754519,51093.32362097696,2490.202586337103 -3057,3811,6881,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.30048624168982,7.288113818297043,0,0,-993.5353442661361,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.391585602234979,7.021609238150221,60.12,54.8,-9,-9,10,1,1,0,0,5,12,2,1,315,488560.9146956785,235459.3122700938,187529.8171934841,0,740.4691029430518 -3058,3812,6882,6883,-9,-9,1,0,31,0,1,0,1,1,-9,0,5,6.386950804205664,6.545002176556652,0,9,-5,-94.77152082369183,0,3,2,2019,13,3,12,10,1,3,0,5.853756337950147,5.853756337950147,0,0,0,0,0,0,0,0,0,0,35.34,39.09,37.12,43.57,3.333333333333333,2,3,0,0,7,8,4,0,495.3333333333333,28703.31806523388,110831.0619294664,0,0,1876.750339712169 -3058,3812,6883,6882,-9,-9,1,1,36,0,1,0,1,1,1,0,4,8.621777914429346,8.479633426717589,0,9,5,64.95836394615412,-9,3,1,2019,13,1,38,0,1,1,0,12.44130124077014,12.44130124077014,0,0,0,0,0,0,0,0,0,0,37.12,43.57,35.34,39.09,6.666666666666667,2,3,0,0,7,8,4,0,495.3333333333333,28703.31806523388,110831.0619294664,0,0,1876.750339712169 -3058,3812,6884,-9,6882,6883,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.5791048746834,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,495.3333333333333,28703.31806523388,110831.0619294664,0,0,1876.750339712169 -3059,3813,6885,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.627912559011055,6.890400164818073,0,0,-1004.472764167781,0,3,1,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.249213719812618,57.97,26.31,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1249,221053.8839329169,18884.39913858716,156709.5594276668,0,2220.499728448725 -3060,3814,6886,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-901.1790329100539,0,-9,-9,2019,14,5,0,0,4,5,0,0,0,1,6.590834538586311,0,62.16530834983741,0,1,1,0,0,0,64.09999999999999,14.67,-9,-9,10,2,3,0,0,0,8,1,0,728,-72309.33973771399,0,0,0,795.6075238610684 -3061,3815,6887,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1038.993004036949,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,1,6,4,1,0,803,0,0,0,0,1265.817472484183 -3062,3816,6888,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,4.445905086180066,4.703795533648326,0,0,-956.5652386108338,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.761985966942144,4.458252197699682,64.81,30.01,-9,-9,10,1,1,0,0,0,12,2,1,1119,81616.47837526131,-34221.30859892402,0,0,1048.940025959178 -3063,3817,6889,-9,6892,6891,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.6398267114287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,762.2,64013.3395670363,0,0,0,3833.631732492099 -3063,3817,6890,-9,6892,6891,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-947.1240328934955,-9,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,.88084088827311,0,32.31,59.5,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,762.2,64013.3395670363,0,0,0,3833.631732492099 -3063,3817,6891,6892,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,5.64361826967416,5.615231440181553,0,6,-7,-21.76486137626256,0,-9,-9,2019,16,4,25,25,1,4,0,1.316669920529567,1.316669920529567,0,0,0,0,0,1,1,0,0,0,50.82,57.78,40.07,57.25,3.333333333333333,3,4,0,1,9,8,2,0,762.2,64013.3395670363,0,0,0,3833.631732492099 -3063,3817,6892,6891,-9,-9,1,0,49,0,2,0,2,2,-9,1,4,7.953018168499019,7.785479372457831,0,6,7,7.599701335963995,0,1,1,2019,7,0,35,0,1,0,0,8.493884087055015,8.493884087055015,0,0,0,0,0,1,1,0,0,0,40.07,57.25,50.82,57.78,6.666666666666667,3,4,0,0,3,8,2,0,762.2,64013.3395670363,0,0,0,3833.631732492099 -3063,3817,6893,-9,6892,6891,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.6798505324305,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,762.2,64013.3395670363,0,0,0,3833.631732492099 -3064,3818,6894,-9,6896,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1249.28020399063,-9,2,-9,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.01,61.09,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,1361,731474.4919624642,77552.60994801618,278321.0232470459,0,2145.602252352448 -3064,3818,6895,6896,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.877766405877957,7.889177556428256,0,11,3,73.78369574591686,0,3,3,2019,8,0,40,40,1,0,0,7.670004958766622,7.670004958766622,0,0,0,0,0,1,1,0,4.297229424345868,0,52,54.51,52,54.51,5,1,1,0,0,12,13,4,1,1361,731474.4919624642,77552.60994801618,278321.0232470459,0,2145.602252352448 -3064,3818,6896,6895,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.290475433093246,7.540569870272356,0,11,-3,-50.05281217567935,0,3,3,2019,9,0,31,32,1,0,0,8.269203635914259,8.269203635914259,0,0,0,0,0,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,4,13,4,1,1361,731474.4919624642,77552.60994801618,278321.0232470459,0,2145.602252352448 -3064,3819,6897,-9,6896,-9,1,1,25,0,0,0,2,2,-9,0,3,7.899652029741865,7.823476589453175,0,0,0,-957.1615946890862,0,2,-9,2019,34,12,43,-9,1,12,1,6.474819675898638,6.474819675898638,0,0,0,0,0,1,1,0,5.99531734760222,0,11.09,43.39,-9,-9,1.666666666666667,1,1,0,0,3,13,3,1,1262,141036.9064105421,-13000.21314932929,0,0,1240.17193928142 -3064,3820,6898,-9,6896,-9,1,0,22,0,0,0,1,1,-9,0,3,7.794479983376524,7.836579651417352,0,0,0,-929.4864912265602,0,2,-9,2019,12,0,40,72,1,0,1,7.856594152463015,7.856594152463015,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,6.666666666666667,1,1,0,0,4,13,4,1,160,0,0,0,0,1517.03376782308 -3065,3821,6899,6901,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.788969121019594,8.705490405007572,0,9,0,-138.0390838717518,0,-9,-9,2019,11,0,35,30,1,0,0,23.09206913603082,23.09206913603082,0,0,0,0,0,1,0,1,0,0,52,54.51,38.27,54.57,5,2,3,0,0,10,9,4,1,450.3333333333333,275469.4809730062,143775.2431691869,300077.5716906089,169503.3648747711,4730.825426295997 -3065,3821,6900,-9,6901,6899,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.5598753336591,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,450.3333333333333,275469.4809730062,143775.2431691869,300077.5716906089,169503.3648747711,4730.825426295997 -3065,3821,6901,6899,-9,-9,1,0,37,0,3,0,2,2,-9,1,2,7.115554188073282,7.19024785347812,0,20,0,-18.68370346222162,0,3,2,2019,12,0,20,20,1,0,0,8.182881263224109,8.182881263224109,0,0,0,0,27,1,0,1,.311031171847144,0,38.27,54.57,52,54.51,5,2,3,0,1,5,9,4,1,450.3333333333333,275469.4809730062,143775.2431691869,300077.5716906089,169503.3648747711,4730.825426295997 -3066,3822,6902,6903,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,52,3,-63.74632651383848,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.384089207697166,0,52.13,57.22,62.81,30.81,6.666666666666667,1,1,0,0,0,10,2,1,2613.5,413989.6809372911,87505.45260698363,318927.5989417312,0,1529.398522838275 -3066,3822,6903,6902,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.725693129424423,6.585176961527954,6,-3,120.0395137591128,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.720395239176812,62.81,30.81,52.13,57.22,8.333333333333334,1,1,0,0,0,10,2,1,2613.5,413989.6809372911,87505.45260698363,318927.5989417312,0,1529.398522838275 -3067,3823,6904,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.112068207020815,8.288957289967362,0,0,0,-981.7742307135119,0,2,3,2019,7,0,48,48,1,0,0,8.922817640188192,8.922817640188192,0,0,0,0,0,0,0,0,0,0,43.21,51.88,-9,-9,5,2,3,0,0,7,8,4,0,2585,55278.08233369462,50476.42647145275,0,0,592.6536605410798 -3068,3824,6905,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.0368417242311,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,0,35.86,32.59,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,148,110219.1297850034,0,0,0,988.8672319777277 -3069,3825,6906,6907,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.844622462915007,8.868377901057725,0,1,0,131.9161350098337,-9,-9,-9,2019,3,0,48,0,1,0,0,17.17285966953427,17.17285966953427,0,0,0,0,0,0,0,0,3.127087932369605,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,10,5,1,372,1575244.375711252,1373645.198893867,259121.5439485233,89094.81774524416,4419.586953935952 -3069,3825,6907,6906,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.015755991258452,9.042851918752062,4.950117975052168,1,0,-97.97814630752541,0,2,2,2019,6,0,39,40,1,0,0,19.02087729091403,19.02087729091403,0,0,0,0,0,0,0,0,3.458156698735971,5.436200272845382,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,372,1575244.375711252,1373645.198893867,259121.5439485233,89094.81774524416,4419.586953935952 -3070,3826,6908,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.070357613368,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,10,1,1,0,0,0,11,1,1,349,108800.5311194907,0,143160.0148196854,0,534.0889718038552 -3071,3827,6909,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-877.2349996615948,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.3,25.55,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,721,-164521.9373985224,263033.0199335276,48894.21985269005,81758.17935250595,2334.416879680707 -3072,3828,6910,6911,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.834079811672319,5.611744535696458,64,3,109.0105237946918,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,.8986392222342443,0,0,1,1,0,0,5.953858943829034,36.89,45.63,54.12,32.11,8.333333333333334,1,1,0,0,0,9,2,0,921.5,546612.6731436441,56924.05491498209,277177.0165835485,0,1604.200233923372 -3072,3828,6911,6910,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,61,-3,-58.26466877117664,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,13.78174825777658,3.360864332674964,131.2396491840072,0,1,1,0,0,0,54.12,32.11,36.89,45.63,6.666666666666667,1,1,0,0,0,9,2,0,921.5,546612.6731436441,56924.05491498209,277177.0165835485,0,1604.200233923372 -3073,3829,6912,-9,6913,6914,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.364864209595,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,1644.666666666667,-43368.64450396399,5608.950379885937,141610.5287312427,105381.5869139322,3347.556393819349 -3073,3829,6913,6914,-9,-9,1,0,24,1,1,0,1,1,-9,0,4,7.284665769369451,7.149368851731684,0,2,-14,-20.35666779863928,0,-9,-9,2019,6,0,25,50,1,0,0,6.41322972667259,6.41322972667259,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.43,52.23,10,1,1,0,0,3,6,4,0,1644.666666666667,-43368.64450396399,5608.950379885937,141610.5287312427,105381.5869139322,3347.556393819349 -3073,3829,6914,6913,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.716517357190174,8.748414303804708,0,2,14,-54.18009764169841,0,3,3,2019,16,4,37,37,1,4,0,17.70349681926157,17.70349681926157,0,0,0,.0953705017076611,0,1,1,0,0,0,45.43,52.23,54.2,57.49,8.333333333333334,1,1,0,0,11,6,4,0,1644.666666666667,-43368.64450396399,5608.950379885937,141610.5287312427,105381.5869139322,3347.556393819349 -3074,3830,6915,6916,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.470488435883482,8.38325015800255,0,19,-11,106.9515887660064,0,3,2,2019,8,0,21,21,1,0,0,28.74812135015076,28.74812135015076,0,0,0,0,0,1,1,0,0,0,55.53,51.55,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,557.3333333333334,1002077.27104024,741661.1495631089,364689.9076479226,93851.09652182898,4220.654119730003 -3074,3830,6916,6915,-9,-9,1,1,58,0,1,0,3,3,-9,0,5,8.538945852665249,8.609664842630938,0,19,11,85.18705223342283,0,3,2,2019,6,0,35,40,1,0,0,16.71174806683865,16.71174806683865,0,0,0,0,0,1,1,0,4.239069892525153,0,57.06,57.76,55.53,51.55,10,1,1,0,0,8,10,5,1,557.3333333333334,1002077.27104024,741661.1495631089,364689.9076479226,93851.09652182898,4220.654119730003 -3074,3830,6917,-9,6915,6916,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.337519549498,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,557.3333333333334,1002077.27104024,741661.1495631089,364689.9076479226,93851.09652182898,4220.654119730003 -3075,3831,6918,6919,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,8.022861581281738,7.796786822363164,22,-2,-28.09279693834917,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.155397189924496,7.816649810819702,49.8,56.68,57.33,53.46,8.333333333333334,1,1,0,0,0,9,5,1,1010.5,2335215.411488813,672922.2528269638,873280.1521119424,0,5092.152498658755 -3075,3831,6919,6918,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.353932033986744,8.220407538255721,21,2,-76.70987777985412,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.398751307620695,8.554724935339239,57.33,53.46,49.8,56.68,8.333333333333334,1,1,0,0,0,9,5,1,1010.5,2335215.411488813,672922.2528269638,873280.1521119424,0,5092.152498658755 -3076,3832,6920,6921,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.336485361023868,6.276410941959829,0,1,4,-28.53121667580819,-9,2,3,2019,7,1,2,0,1,1,0,31.75015107755437,31.75015107755437,0,0,0,0,0,0,0,0,8.510432886153843,0,58.48,41.86,60.02,56.42,8.333333333333334,1,1,0,0,10,10,5,1,651,952725.7177741241,505828.098168643,339021.6402147511,0,6424.339326762361 -3076,3832,6921,6920,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.846271298768849,9.886810468394961,0,1,-4,-30.05566315328831,-9,2,-9,2019,11,1,57,0,1,1,0,36.32120169064736,36.32120169064736,0,0,0,0,0,0,0,0,7.709274813935263,0,60.02,56.42,58.48,41.86,10,1,1,0,0,10,10,5,1,651,952725.7177741241,505828.098168643,339021.6402147511,0,6424.339326762361 -3076,3833,6922,-9,6921,6920,1,1,20,0,0,0,2,2,-9,0,3,7.462317931648699,7.463631663705134,0,0,0,-1064.901642586726,-9,2,2,2019,24,10,23,0,1,10,1,8.307477850239916,8.307477850239916,0,0,0,0,0,0,0,0,0,0,27.75,60.63,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,732,141879.0749214272,-4161.489088382459,0,0,1153.262023662954 -3077,3834,6923,-9,6926,6924,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.7582893848859,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,0,518.25,-35890.19504396475,9737.652143126539,0,0,2102.481859199623 -3077,3834,6924,6926,-9,-9,1,1,25,0,2,0,2,2,-9,0,3,0,0,0,1,-22,-83.0133331096842,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,36.7,24.99,10,2,3,1,0,0,4,2,0,518.25,-35890.19504396475,9737.652143126539,0,0,2102.481859199623 -3077,3834,6925,-9,6926,6924,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.7056701990297,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,518.25,-35890.19504396475,9737.652143126539,0,0,2102.481859199623 -3077,3834,6926,6924,-9,-9,1,0,47,0,2,0,2,2,-9,1,2,6.926043625029131,7.152199772305043,0,1,22,-30.84890323934772,0,3,3,2019,34,12,18,0,1,12,0,6.589514573446929,6.589514573446929,0,0,0,0,0,1,1,0,0,0,36.7,24.99,62.66,52.4,0,2,3,0,0,1,4,2,0,518.25,-35890.19504396475,9737.652143126539,0,0,2102.481859199623 -3078,3835,6927,-9,-9,-9,1,1,74,0,2,0,2,2,-9,0,3,8.442071060041242,8.312033392122574,0,0,0,-950.6232468120511,0,3,3,2019,11,0,50,50,1,0,0,10.24796106839691,10.24796106839691,0,0,0,0,0,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,283,2504982.691677334,1569203.087526229,167077.7102199355,0,3208.223653390665 -3079,3836,6928,6929,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.389885627198374,7.192997214908234,8,2,45.58692808411347,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.213614224613798,7.279999645416051,54.94,50.33,56.35,48.33,8.333333333333334,1,1,0,0,0,7,5,1,638,880418.9192579493,0,986802.5888982269,100642.453961309,12163.77679381828 -3079,3836,6929,6928,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,9.856359570434387,10.01806350062667,8,-2,-61.88590604345295,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.178846323946872,9.722961542816046,56.35,48.33,54.94,50.33,1.666666666666667,1,1,0,0,0,7,5,1,638,880418.9192579493,0,986802.5888982269,100642.453961309,12163.77679381828 -3080,3837,6930,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.168588866872206,8.094775577299988,0,0,-1085.826288038751,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.609376834841487,7.931680890486531,39.01,41.42,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,502,1253715.20515741,480913.7182830778,334895.0232980846,0,1941.362094045409 -3081,3838,6931,-9,6933,6934,1,0,18,0,1,0,2,2,1,0,4,7.627663249047865,7.92393266004374,0,0,0,-964.969575368072,-9,3,1,2019,13,2,48,0,1,2,1,5.777893490455625,5.777893490455625,0,0,0,0,0,1,1,0,0,0,41.63,52.39,-9,-9,8.333333333333334,2,3,0,0,3,4,3,0,695,47875.94257599513,119863.4527379728,0,0,752.1388709125538 -3081,3839,6932,-9,6933,6934,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.9554010044968,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,4,4,0,511.6666666666667,250025.7238598897,71016.77066988555,169394.6275598466,14037.63735231294,2688.6006479006 -3081,3839,6933,6934,-9,-9,1,0,41,0,1,0,3,3,-9,0,3,8.117124871450009,8.096559470633204,0,6,-14,-28.09362873427518,0,3,2,2019,18,6,38,38,1,6,0,7.747819553064387,7.747819553064387,0,0,0,0,0,1,1,0,0,0,41.2,46.02,57.33,53.46,8.333333333333334,2,3,0,0,6,4,4,0,511.6666666666667,250025.7238598897,71016.77066988555,169394.6275598466,14037.63735231294,2688.6006479006 -3081,3839,6934,6933,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,8.019507045444,7.984943831955387,0,6,14,-67.06873367814404,0,-9,-9,2019,9,1,60,50,1,1,0,4.571615616731704,4.571615616731704,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.2,46.02,8.333333333333334,2,3,0,0,6,4,4,0,511.6666666666667,250025.7238598897,71016.77066988555,169394.6275598466,14037.63735231294,2688.6006479006 -3082,3840,6935,6936,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.984614366439584,6.979153917568,56,6,45.2433756082533,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.362143544643242,64.23,44.69,57.16,56.15,10,1,1,0,0,0,2,2,0,549,489102.4853124686,193315.7131776397,213506.1399726933,0,733.8101568745157 -3082,3840,6936,6935,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,56,-6,-28.98211390596509,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.23,44.69,10,1,1,0,0,4,2,2,0,549,489102.4853124686,193315.7131776397,213506.1399726933,0,733.8101568745157 -3083,3841,6937,6938,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.087213027726133,8.207032013424451,0,3,-3,89.3817767668135,-9,3,2,2019,9,0,44,0,1,0,0,11.22128082756185,11.22128082756185,0,0,0,0,0,0,0,0,1.35478186108231,0,52.72,55.58,52.82,53.97,6.666666666666667,1,1,0,0,10,11,4,1,394,738112.810561326,260817.7257496571,379457.9869890421,30556.16829047816,3149.09059291817 -3083,3841,6938,6937,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.493742392759863,7.604073434511497,0,3,3,63.98876397443364,0,3,3,2019,5,0,23,23,1,0,0,11.13895436064607,11.13895436064607,0,0,0,0,0,0,0,0,3.019420071654144,0,52.82,53.97,52.72,55.58,6.666666666666667,1,1,0,0,10,11,4,1,394,738112.810561326,260817.7257496571,379457.9869890421,30556.16829047816,3149.09059291817 -3083,3842,6939,-9,6938,6937,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-959.146161492855,0,2,2,2019,11,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,.1597085812191719,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,11,1,1,358,-87527.62253241117,0,0,0,-114.6663627347619 -3084,3843,6940,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.5144140424694,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.67,36.51,-9,-9,6.666666666666667,1,1,0,1,6,2,1,0,105,-89013.28041621867,0,0,0,-67.73591339282444 -3085,3844,6941,-9,6942,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-904.1196659486233,-9,1,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,499,1698507.236904892,603829.0975804229,508951.8559821437,0,1408.548986951983 -3085,3844,6942,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.974048349370388,8.196310814027834,0,0,0,-925.1540196284648,0,3,2,2019,10,0,46,40,1,0,0,10.4890824936057,10.4890824936057,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,8,5,3,1,499,1698507.236904892,603829.0975804229,508951.8559821437,0,1408.548986951983 -3085,3845,6943,-9,6942,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1137.492896782545,0,1,-9,2019,11,3,0,29,3,3,1,0,0,0,0,0,0,0,1,1,0,1.473100627296128,0,18.44,63.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,592,-182290.3625705823,0,0,0,337.2730211272902 -3086,3846,6944,-9,-9,-9,1,0,33,0,4,0,3,3,-9,0,4,0,0,0,0,0,-989.4822326499593,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,45.57,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,770.2,33824.25691340816,0,0,0,1475.644687407287 -3086,3846,6945,-9,6944,-9,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.556622594767,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,770.2,33824.25691340816,0,0,0,1475.644687407287 -3086,3846,6946,-9,6944,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-947.4121144524538,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,770.2,33824.25691340816,0,0,0,1475.644687407287 -3086,3846,6947,-9,6944,-9,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1133.06610150164,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,770.2,33824.25691340816,0,0,0,1475.644687407287 -3086,3846,6948,-9,6944,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.893558002266,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,770.2,33824.25691340816,0,0,0,1475.644687407287 -3087,3847,6949,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.4896909210765,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,27.48,37.7,-9,-9,5,1,1,1,0,0,11,1,1,305,204925.5054557853,511998.3904357182,0,0,0 -3088,3848,6950,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.526442292199624,8.265113415603881,0,0,0,-1073.497610909734,0,3,3,2019,15,3,46,46,1,3,0,11.33940906261335,11.33940906261335,0,0,0,0,0,1,1,0,0,0,29.17,59.73,-9,-9,5,1,1,0,0,12,10,5,0,279,241279.8572097284,116800.7027877411,0,0,1636.259523432663 -3088,3849,6951,-9,6950,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1094.097590302628,-9,2,-9,2019,34,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,18.27,66.02,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,363,0,0,0,0,194.158708044021 -3089,3850,6952,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1116.832758359823,-9,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,49.27,56.95,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,61,-23661.78723273539,0,0,0,131.3002778870416 -3090,3851,6953,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1099.94615015236,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.21,39.31,-9,-9,10,1,1,0,0,0,2,1,0,142,-29743.07765507947,0,0,0,781.3201579683729 -3090,3852,6954,-9,-9,6953,1,1,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-983.7142177398651,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,2,1,0,1561,0,0,0,0,-93.83276666026552 -3091,3853,6955,6956,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.810142614699424,5.460813718847768,11,0,-18.1547712752293,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,2.07127108150037,5.895982183037413,48.54,41.09,53.63,38.81,3.333333333333333,1,1,0,0,0,1,2,1,453,726889.265950162,316971.3762178682,273403.6787236193,0,2021.683606483087 -3091,3853,6956,6955,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.355541504609186,7.601518408247799,11,9,60.08520083972881,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.106570064549674,7.607105307498075,53.63,38.81,48.54,41.09,8.333333333333334,1,1,0,0,0,1,2,1,453,726889.265950162,316971.3762178682,273403.6787236193,0,2021.683606483087 -3092,3854,6957,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.699082495465775,6.82797566428418,0,0,-940.9031006954978,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.068851255605765,6.847009355048573,56.1,49.93,-9,-9,10,1,1,0,0,0,4,2,1,405,491836.2086840491,89797.53536693027,80925.56647235752,0,1156.931565939766 -3093,3855,6958,6959,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.875606679673206,8.539661855114643,8.204026765451326,8,0,-45.63548304873352,0,2,3,2019,8,0,22,40,1,0,0,10.53922212601401,10.53922212601401,0,0,0,0,0,1,1,0,3.430570729726131,8.323013084695377,54.37,54.8,52.23,55.6,8.333333333333334,1,1,0,0,8,13,4,1,592.5,601602.7547129039,312269.2946562628,171057.4044149098,0,2988.214240941345 -3093,3855,6959,6958,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,6.918070100339688,6.911846234254862,0,8,0,-66.12250178930279,0,2,2,2019,11,3,6,20,1,3,0,28.74178616821555,28.74178616821555,0,0,0,0,74.5,1,1,0,0,0,52.23,55.6,54.37,54.8,10,1,1,0,0,8,13,4,1,592.5,601602.7547129039,312269.2946562628,171057.4044149098,0,2988.214240941345 -3093,3856,6960,-9,6959,6958,1,0,24,0,0,0,1,1,-9,0,4,8.391553024014907,8.345994572467408,0,0,0,-1007.126943112501,0,1,2,2019,18,6,40,38,1,6,1,14.50990123749621,14.50990123749621,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,484,15852.90662698867,221814.5772221444,0,0,1547.994552424221 -3093,3857,6961,-9,6959,6958,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.359833964018,1,1,2,2019,12,1,0,38,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,509,102262.6715182698,0,0,0,352.7077095533873 -3093,3858,6962,-9,6959,6958,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1077.186066548551,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,13,1,1,713,-128838.5796506469,0,0,0,0 -3094,3859,6963,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.234211332502694,8.250054311966881,0,0,0,-934.9430518550511,0,-9,-9,2019,10,1,35,39,1,1,0,19.65240762489488,19.65240762489488,0,0,0,0,0,0,0,0,0,0,43.5,52.88,-9,-9,3.333333333333333,1,1,0,0,6,6,5,0,2285,-143169.2329417108,-42667.39108355953,0,0,2404.079687275739 -3095,3860,6964,6965,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.971097698868776,4.664394640519864,45,0,143.3082250511425,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.401368134325639,0,24.53648028793375,74.5,1,1,0,2.511515462010993,5.136246633742113,51.97,39.4,50.57,13.73,6.666666666666667,1,1,0,0,5,2,3,1,334.5,1406154.414754639,765944.8195866524,346360.3247792992,0,3026.760674734015 -3095,3860,6965,6964,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,8.198833108530408,8.137710719085254,45,0,117.7820366677626,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,77.44690786289216,0,0,1,1,0,3.47490199632567,8.009104476850453,50.57,13.73,51.97,39.4,6.666666666666667,1,1,0,0,2,2,3,1,334.5,1406154.414754639,765944.8195866524,346360.3247792992,0,3026.760674734015 -3096,3861,6966,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.223305534774651,8.231345640041097,0,0,0,-1018.445582253423,0,3,3,2019,6,0,41,41,1,0,0,12.59911742734441,12.59911742734441,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,11,1,4,1,214,140914.128626118,206507.350507234,113340.9712115612,89672.79630464737,1691.520461706941 -3097,3862,6967,-9,6968,6970,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1072.464031028845,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3097,3862,6968,6970,-9,-9,1,0,41,1,4,0,1,1,-9,0,3,7.922989197648749,7.800115897759494,0,2,-1,4.358455887631045,0,2,3,2019,12,0,25,25,1,0,0,11.98257436835318,11.98257436835318,0,0,0,0,0,1,1,0,0,0,46.65,55.59,44.13,57.97,6.666666666666667,1,1,0,1,11,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3097,3862,6969,-9,6968,6970,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.8137617056321,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3097,3862,6970,6968,-9,-9,1,1,42,1,4,0,1,1,-9,0,4,8.774149520036881,8.943787997679726,0,2,1,109.8930626587971,0,-9,-9,2019,9,1,46,47,1,1,0,17.18703711143969,17.18703711143969,0,0,0,0,0,1,1,0,0,0,44.13,57.97,46.65,55.59,6.666666666666667,1,1,0,0,11,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3097,3862,6971,-9,6968,6970,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.352943306152,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3097,3862,6972,-9,6968,6970,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.178951349852,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,1257.333333333333,465628.0990329114,210450.6004731475,214867.0865936229,17882.48252045293,3757.32583749337 -3098,3863,6973,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.219921914927731,8.010410955079584,0,0,0,-1095.835045527508,-9,1,1,2019,6,1,38,0,1,1,0,8.119128852791633,8.119128852791633,0,0,0,0,0,0,0,0,0,0,53.43,47.4,-9,-9,8.333333333333334,1,1,0,0,6,7,4,0,1721,142288.643631259,0,0,0,902.8319589345357 -3099,3864,6974,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.732338615807105,7.732490785355552,0,0,0,-925.7910249009285,0,3,3,2019,11,0,23,26,1,0,0,11.64788698966988,11.64788698966988,0,0,0,0,0,0,0,0,0,0,51.53,43.93,-9,-9,6.666666666666667,4,2,0,0,8,6,3,0,1246,65677.15315572216,-628.7015403694766,0,0,1205.248795579465 -3100,3865,6975,6976,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.813926264737948,8.005727684411912,8,6,2.955662748977608,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.414436730826177,7.770608251181202,64.16,35.24,59.32,44.13,8.333333333333334,1,1,0,0,0,2,4,1,421.5,1963087.365239483,489869.6572744483,384523.1430183923,0,4023.535911799763 -3100,3865,6976,6975,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.968029436757293,7.847194265833991,8,-6,30.86405183903181,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.438642162707557,7.709925360117672,59.32,44.13,64.16,35.24,8.333333333333334,1,1,0,0,0,2,4,1,421.5,1963087.365239483,489869.6572744483,384523.1430183923,0,4023.535911799763 -3101,3866,6977,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.543872853612132,7.351189322302394,0,0,-974.807887946362,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.27629994669418,56.29,31.26,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,4347,302374.8325243714,154319.1836580116,0,0,1140.483751792395 -3102,3867,6978,6979,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.793433844904419,8.905518314700773,0,26,4,49.61426412700359,0,3,2,2019,13,3,120,75,1,3,0,7.153293873727701,7.153293873727701,0,0,0,0,0,1,1,0,0,0,47.08,41.62,36.78,43.04,6.666666666666667,2,3,0,0,6,8,5,1,2270,154709.984108832,41796.02528372254,560138.7667251118,256177.8583183506,6227.526629880036 -3102,3867,6979,6978,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,0,0,0,26,-4,-96.45274572859633,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,8.181980159858552,0,36.78,43.04,47.08,41.62,8.333333333333334,2,3,0,0,0,8,5,1,2270,154709.984108832,41796.02528372254,560138.7667251118,256177.8583183506,6227.526629880036 -3102,3868,6980,-9,6979,6978,1,0,23,0,0,0,1,1,-9,0,5,8.440905112850212,8.569071938458279,0,0,0,-996.3912535568398,0,2,2,2019,2,0,16,44,1,0,1,32.18767452036501,32.18767452036501,0,0,0,0,0,1,1,0,2.76780288658421,0,54.35,57.84,-9,-9,10,2,3,0,0,6,8,5,1,274,15069.48218014751,0,0,0,2252.076139544136 -3102,3869,6981,-9,6979,6978,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.3952393998128,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,2,8,1,1,462,19242.14670919792,0,0,0,0 -3103,3870,6982,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.321916616857019,6.316117670368318,0,0,-1009.303822257684,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.565329808977824,47.95,49.37,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,743,199658.5205979071,163782.0436107985,0,0,1424.777324177199 -3104,3871,6983,-9,6985,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.556573452177,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,1226.666666666667,10674.04493345478,0,0,0,1589.123362393904 -3104,3871,6984,-9,6985,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.646272083247,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,1226.666666666667,10674.04493345478,0,0,0,1589.123362393904 -3104,3871,6985,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,6.944599882694822,6.609790001616284,0,0,0,-1019.629071254295,0,-9,-9,2019,19,8,24,16,1,8,0,4.442445618888708,4.442445618888708,0,0,0,0,0,1,1,0,0,0,25.44,65.40000000000001,-9,-9,8.333333333333334,1,1,0,1,7,13,2,0,1226.666666666667,10674.04493345478,0,0,0,1589.123362393904 -3105,3872,6986,6987,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.841776234750915,9.244968474021949,7.834950085170213,15,-2,76.99424082479246,0,3,3,2019,12,1,38,37,1,1,0,20.50165089056641,20.50165089056641,0,0,0,0,0,0,0,0,0,8.518966635020233,57.33,53.46,35.45,59.87,10,1,1,0,0,13,9,5,1,1697,6783437.655894425,3999708.293513227,1545626.538090791,0,4186.400095599358 -3105,3872,6987,6986,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,6.9863160705804,6.813560338079406,15,2,39.58266129466843,0,2,3,2019,22,8,0,36,4,8,0,0,0,0,0,0,0,2,0,0,0,3.113161275928911,7.140256772704769,35.45,59.87,57.33,53.46,3.333333333333333,1,1,0,0,12,9,5,1,1697,6783437.655894425,3999708.293513227,1545626.538090791,0,4186.400095599358 -3106,3873,6988,-9,6990,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.3229029140565,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,345.6666666666667,27689.68243244366,0,0,0,1520.330732599251 -3106,3873,6989,-9,6990,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.3257462230251,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,345.6666666666667,27689.68243244366,0,0,0,1520.330732599251 -3106,3873,6990,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1032.393653223671,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,35.03,63.83,-9,-9,6.666666666666667,1,1,1,0,1,10,1,0,345.6666666666667,27689.68243244366,0,0,0,1520.330732599251 -3107,3874,6991,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.748244311323053,7.817271818467312,0,0,-941.6489520194299,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.783030311292595,7.852943476040896,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,10,3,1,593,357034.4741646987,77871.6859122777,351181.1495836014,142418.1402253378,1353.711890893113 -3108,3875,6992,6993,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.163286272703411,8.249939414772982,52,-1,23.59150253031057,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.3434372299831214,8.589275581538718,31.11,51.95,40.86,62.75,8.333333333333334,1,1,0,0,4,11,4,1,969.5,1871616.739929127,911058.0533429096,647637.1797444274,0,2977.788235240611 -3108,3875,6993,6992,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,7.244203004652753,7.259311868161223,52,1,60.81613462728215,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,0,7.323682445425903,40.86,62.75,31.11,51.95,8.333333333333334,1,1,0,0,4,11,4,1,969.5,1871616.739929127,911058.0533429096,647637.1797444274,0,2977.788235240611 -3108,3876,6994,-9,6993,6992,1,1,44,0,0,0,2,2,-9,1,3,7.648381178981822,7.39504455224033,0,0,0,-1048.152339748892,0,1,1,2019,16,6,36,37,1,6,0,5.967073299188948,5.967073299188948,0,0,0,0,2,1,1,0,.3709224899480469,0,46.57,54.66,-9,-9,10,1,1,0,0,11,11,3,1,511,119839.0102569633,0,0,0,1890.91199000622 -3109,3877,6995,6996,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.154649887675376,8.047499325742464,0,9,-1,66.1378548255457,-9,2,3,2019,10,0,24,0,1,0,0,19.09794967150896,19.09794967150896,0,0,0,0,0,0,0,0,0,0,60.03,42.51,54.79,55.86,8.333333333333334,1,1,0,0,10,13,5,1,258,367345.4261235226,263916.7187776435,163815.1015792301,72611.82751169977,3641.125981736437 -3109,3877,6996,6995,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.180209079489273,9.259620779282727,0,9,1,4.612138985790829,-9,2,2,2019,9,0,48,0,1,0,0,21.99670574245893,21.99670574245893,0,0,0,0,7,0,0,0,1.822111777703722,0,54.79,55.86,60.03,42.51,8.333333333333334,1,1,0,0,10,13,5,1,258,367345.4261235226,263916.7187776435,163815.1015792301,72611.82751169977,3641.125981736437 -3110,3878,6997,6998,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.577969634934876,8.465740148548116,0,2,0,40.18854217528455,0,2,1,2019,9,1,35,35,1,1,0,16.2642261573828,16.2642261573828,0,0,0,0,0,0,0,0,2.106127519462067,0,51.14,60.45,24.9,27.84,8.333333333333334,1,1,0,0,7,9,5,1,575.5,-64587.14787741427,47064.19279292326,277506.0920974076,160272.5690184129,3679.812571337093 -3110,3878,6998,6997,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,8.406582763644733,8.590471665624181,0,2,0,-50.47067071661566,0,-9,-9,2019,32,12,41,37,1,12,0,13.56898450138446,13.56898450138446,0,0,0,0,0,0,0,0,0,0,24.9,27.84,51.14,60.45,3.333333333333333,1,1,0,0,2,9,5,1,575.5,-64587.14787741427,47064.19279292326,277506.0920974076,160272.5690184129,3679.812571337093 -3111,3879,6999,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,0,0,0,0,0,-952.2814572305213,0,3,3,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,29.8,39.23,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,697,302047.2849529068,52752.28990444406,0,0,522.1009479219373 -3112,3880,7000,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.920453283787,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.19039883213649,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,416,106324.3363786471,0,0,0,231.1169289291193 -3112,3881,7001,-9,7000,-9,1,1,61,0,0,0,1,1,-9,0,2,0,7.389354389971956,7.521791984378987,0,0,-957.1119218616965,0,2,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,71.5,1,1,0,8.000886947034553,7.662336933087347,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,639,18898.33117041527,322344.9517808701,118400.043095915,0,2472.623684232314 -3113,3882,7002,7003,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.262970554848387,7.704325059225047,54,0,-32.15449512673538,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.551416216446156,48.24,45.43,57.49,34.36,8.333333333333334,1,1,0,0,0,13,3,1,2473,958040.4901331125,105860.4107523166,385992.6261694407,0,1759.351962668579 -3113,3882,7003,7002,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.099684240125623,6.279543382593554,11,0,141.4781075183589,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,4.726594986027893,0,0,1,1,0,3.601598681480131,6.253367126724219,57.49,34.36,48.24,45.43,8.333333333333334,1,1,0,0,12,13,3,1,2473,958040.4901331125,105860.4107523166,385992.6261694407,0,1759.351962668579 -3114,3883,7004,7005,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.772595237978061,8.962424029287163,0,14,-2,66.13157286972617,0,2,1,2019,6,0,45,45,1,0,0,14.69022440423923,14.69022440423923,0,0,0,0,0,0,0,0,0,0,53.07,52.7,58.71,40.92,8.333333333333334,1,1,0,0,11,9,4,1,535,650142.488852333,70725.99063402999,608077.3804557353,199330.4818877073,2768.584733903189 -3114,3883,7005,7004,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,14,2,22.93598753664761,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.082005313347605,0,58.71,40.92,53.07,52.7,8.333333333333334,1,1,0,0,6,9,4,1,535,650142.488852333,70725.99063402999,608077.3804557353,199330.4818877073,2768.584733903189 -3115,3884,7006,7007,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,8,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.105945416899726,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,7,1,1,489,69008.76222467245,0,0,0,893.7534302968611 -3115,3884,7007,7006,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,8,3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.82067223401542,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,7,1,1,489,69008.76222467245,0,0,0,893.7534302968611 -3116,3885,7008,-9,7011,7010,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.49402058775,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1000.75,269131.8515780939,80299.67075343081,475741.1873207194,340657.1589383591,6594.86948805922 -3116,3885,7009,-9,7011,7010,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.8597522246707,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,0,1000.75,269131.8515780939,80299.67075343081,475741.1873207194,340657.1589383591,6594.86948805922 -3116,3885,7010,7011,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,8.96556163241549,8.941960535178442,0,22,3,-14.66851519084814,-9,-9,-9,2019,11,0,43,0,1,1,0,29.92131904096087,29.92131904096087,0,0,0,0,0,1,1,0,0,0,30.62,49.49,51.83,57.2,5,2,3,0,1,10,8,5,0,1000.75,269131.8515780939,80299.67075343081,475741.1873207194,340657.1589383591,6594.86948805922 -3116,3885,7011,7010,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,7.538035489280495,7.283167990442172,0,22,-3,-18.96731520097408,0,2,3,2019,6,0,25,40,1,0,0,6.948134245569086,6.948134245569086,0,0,0,0,0,1,1,0,0,0,51.83,57.2,30.62,49.49,10,2,3,0,0,5,8,5,0,1000.75,269131.8515780939,80299.67075343081,475741.1873207194,340657.1589383591,6594.86948805922 -3117,3886,7012,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.020927761429867,5.120329819179628,0,0,-1016.63352826989,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.511974710633064,5.089115174154839,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,2523,262898.8846380766,-9985.719247993286,217681.747131183,0,716.4312097350643 -3118,3887,7013,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.314458255912066,7.313716512738978,0,0,0,-897.926875243779,0,-9,-9,2019,15,3,22,20,1,3,0,8.070116675635049,8.070116675635049,0,0,0,0,7,0,0,0,0,0,40.71,62.41,-9,-9,1.666666666666667,1,1,0,0,6,13,3,0,524,1680.169536084331,-29624.02877513994,0,0,1008.05960612528 -3119,3888,7014,7015,-9,-9,1,0,58,1,1,0,2,2,-9,0,3,8.011267828054173,7.74840875425765,0,10,0,-10.02420578427565,0,3,3,2019,28,12,34,36,1,12,0,8.919680403114491,8.919680403114491,0,0,0,0,0,1,0,1,0,0,22.75,64.96000000000001,51.83,57.2,0,1,1,0,1,11,5,4,0,700,114995.7364924441,85139.38677218281,115845.3788664697,0,2403.658146346524 -3119,3888,7015,7014,-9,-9,1,1,58,1,1,0,2,2,-9,0,4,7.929800340295905,7.836688027374201,0,10,0,-47.86310451997866,0,3,3,2019,9,0,36,39,1,0,0,8.452193687714262,8.452193687714262,0,0,0,0,0,1,0,1,0,0,51.83,57.2,22.75,64.96000000000001,8.333333333333334,1,1,0,0,10,5,4,0,700,114995.7364924441,85139.38677218281,115845.3788664697,0,2403.658146346524 -3119,3889,7016,-9,7014,7015,1,1,27,1,1,0,2,2,-9,0,2,7.962889043596593,7.824032304643283,0,0,0,-963.244669210942,-9,2,2,2019,23,11,38,0,1,11,1,8.501884258882795,8.501884258882795,0,0,0,0,0,1,0,1,0,0,30.84,46.86,-9,-9,5,1,1,0,0,6,5,4,0,1419,-18803.85522936274,-32577.08935541655,0,0,531.7549223908017 -3119,3890,7017,-9,7018,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.4928924522545,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,1,0,162,69118.75222315258,0,0,0,907.6785658473835 -3119,3890,7018,-9,7014,7015,1,0,32,1,1,0,2,2,-9,0,4,0,0,0,0,0,-988.7884612252894,0,2,3,2019,14,3,0,43,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,47.55,57.73,-9,-9,8.333333333333334,1,1,0,1,11,5,1,0,162,69118.75222315258,0,0,0,907.6785658473835 -3120,3891,7019,-9,7020,-9,1,0,15,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1059.217452050754,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,32,-9,-9,4,1,1,-9,0,0,12,3,1,518,-5907.262181337661,77287.70257788341,86065.12264403678,36143.24494298412,1559.398978568131 -3120,3891,7020,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.905908074874087,7.938666733095175,0,0,0,-925.208303535052,0,2,2,2019,13,2,35,45,1,2,0,8.32458983402136,8.32458983402136,0,0,0,0,0,1,1,0,2.386173284227573,0,25.58,52.2,-9,-9,1.666666666666667,1,1,0,0,9,12,3,1,518,-5907.262181337661,77287.70257788341,86065.12264403678,36143.24494298412,1559.398978568131 -3121,3892,7021,-9,7022,7023,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.8657263819704,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,625.6666666666666,131217.5479036785,-20133.90662595738,247704.0736895453,189396.8835199533,3568.69754181462 -3121,3892,7022,7023,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.032937146366782,8.536725665224077,0,8,-1,31.17855448797338,0,2,2,2019,6,1,37,42,1,1,0,9.506994758449986,9.506994758449986,0,0,0,1.884214651461367,0,1,1,0,1.855085846950725,0,55.68,54.24,52.77,55.33,10,1,1,0,0,7,1,4,1,625.6666666666666,131217.5479036785,-20133.90662595738,247704.0736895453,189396.8835199533,3568.69754181462 -3121,3892,7023,7022,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.067901046604202,8.323561044336451,0,8,1,51.70626066035791,0,2,-9,2019,3,0,30,35,1,0,0,12.018709038034,12.018709038034,0,0,0,0,0,1,1,0,0,0,52.77,55.33,55.68,54.24,8.333333333333334,1,1,0,0,7,1,4,1,625.6666666666666,131217.5479036785,-20133.90662595738,247704.0736895453,189396.8835199533,3568.69754181462 -3122,3893,7024,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.383080759545738,8.19281093617975,0,0,0,-1017.832058280113,0,2,2,2019,16,4,32,27,1,4,0,17.01193679065655,17.01193679065655,0,0,0,0,27,1,1,0,3.743570026053396,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1163,583856.128410275,382808.1081130266,93498.10440156644,0,1987.485257021478 -3123,3894,7025,7026,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.697246093133262,7.181778399597356,8,1,-98.48848798136886,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,8.272294568670617,6.578079149788624,47.55,33.8,51.7,49.11,5,1,1,0,1,10,11,4,1,603.5,188574.4874436323,179525.3275268514,0,0,4259.647685702421 -3123,3894,7026,7025,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.777928103776389,8.427644458207007,0,8,-1,15.65145366040137,0,2,2,2019,10,0,39,39,1,0,0,14.75535875281928,14.75535875281928,0,0,0,0,2,0,0,0,2.660077145623423,0,51.7,49.11,47.55,33.8,8.333333333333334,1,1,0,0,13,11,4,1,603.5,188574.4874436323,179525.3275268514,0,0,4259.647685702421 -3124,3895,7027,7028,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.030761186278498,8.320114001153284,0,25,-2,15.10102596378165,-9,2,1,2019,17,5,23,0,1,5,0,19.90108354899657,19.90108354899657,0,0,0,0,2,0,0,0,6.477468836860735,0,46.32,61.25,51.24,58.84,8.333333333333334,1,1,0,0,13,1,5,1,531,2269162.417652894,1975426.626078329,349851.8954168545,90131.40200571051,4128.71791403519 -3124,3895,7028,7027,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.67304979416145,8.708422821878271,0,25,2,-73.94349502069686,-9,2,2,2019,11,0,42,0,1,0,0,19.88245998127238,19.88245998127238,0,0,0,0,0,0,0,0,3.680080057066476,0,51.24,58.84,46.32,61.25,8.333333333333334,1,1,0,0,12,1,5,1,531,2269162.417652894,1975426.626078329,349851.8954168545,90131.40200571051,4128.71791403519 -3125,3896,7029,7030,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.731387309495124,8.927874741067638,0,6,-2,-65.27677507204771,0,-9,-9,2019,9,0,50,40,1,1,0,16.8638419927368,16.8638419927368,0,0,0,0,0,0,0,0,4.025713883705106,0,54,53,40.89,32.92,8,1,1,0,0,1,4,4,1,1119,564106.1411120777,559890.3123738932,0,0,2379.026994376215 -3125,3896,7030,7029,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,6,2,73.19219293024304,0,2,2,2019,17,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,32.92,54,53,8.333333333333334,1,1,0,0,3,4,4,1,1119,564106.1411120777,559890.3123738932,0,0,2379.026994376215 -3126,3897,7031,-9,7032,7033,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.63932587332,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,540.5,379774.5318377072,312963.6406708584,239802.5018169874,131687.2838856349,3105.428558550279 -3126,3897,7032,7033,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,0,0,0,12,-3,-54.56243577134294,0,3,3,2019,10,0,0,10,3,0,0,0,0,0,0,0,0,74.5,1,1,0,1.592230510257938,0,45.91,59.89,25.84,61.45,6.666666666666667,1,1,0,0,9,5,5,1,540.5,379774.5318377072,312963.6406708584,239802.5018169874,131687.2838856349,3105.428558550279 -3126,3897,7033,7032,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.113588289525387,9.071559803217358,0,9,3,3.326411047859477,0,2,3,2019,24,11,80,63,1,11,0,12.23346993614105,12.23346993614105,0,0,0,0,0,1,1,0,.0301124603241305,0,25.84,61.45,45.91,59.89,3.333333333333333,1,1,0,0,11,5,5,1,540.5,379774.5318377072,312963.6406708584,239802.5018169874,131687.2838856349,3105.428558550279 -3126,3897,7034,-9,7032,7033,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-805.2833587754817,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,540.5,379774.5318377072,312963.6406708584,239802.5018169874,131687.2838856349,3105.428558550279 -3127,3898,7035,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-935.2345398850206,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,52.2,-9,-9,10,1,1,0,0,0,12,1,0,1016,115304.0600048808,0,0,0,806.6467955618571 -3128,3899,7036,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.994415129464372,8.024705247580775,0,0,0,-1014.012105484204,0,2,2,2019,11,0,30,25,1,0,0,8.761196609641514,8.761196609641514,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,204,59500.84505781982,32063.68897830814,0,0,1302.608604416916 -3129,3900,7037,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.527872594143436,8.179863304292898,0,0,0,-885.8475128714745,0,2,2,2019,7,2,18,17,1,2,0,17.51953972305643,17.51953972305643,0,0,0,0,0,0,0,0,2.928140255588021,0,54.85,28.19,-9,-9,5,1,1,0,0,11,8,3,1,690,-69751.15745400531,-194199.810480083,0,0,650.6015883254215 -3130,3901,7038,7039,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.719518629784586,6.167587580686302,8,7,-21.14711008689719,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.993026007610473,6.659148586623342,57.33,53.46,57.33,53.46,10,1,1,0,0,7,12,2,1,623.5,410344.3600873192,215628.8000303406,98796.91800708782,0,1812.788193428304 -3130,3901,7039,7038,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.705533841150225,6.813482104308313,0,8,-7,-8.879548102258024,0,3,3,2019,7,0,21,21,1,0,0,4.799583032735711,4.799583032735711,0,0,0,0,0,1,1,0,5.109525612714073,0,57.33,53.46,57.33,53.46,1.666666666666667,1,1,0,0,10,12,2,1,623.5,410344.3600873192,215628.8000303406,98796.91800708782,0,1812.788193428304 -3131,3902,7040,7041,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.624481564072162,6.950079807321937,10,0,31.37143183824397,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.951210402684326,6.689907048360483,47.55,44.33,45.39,33.63,6.666666666666667,1,1,0,0,0,4,2,1,754,381469.0681850914,155218.623474741,192984.6648519741,0,1763.836701946984 -3131,3902,7041,7040,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,10,0,44.31890061310554,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,6.724793392826534,0,0,1,1,0,0,0,45.39,33.63,47.55,44.33,5,1,1,0,0,0,4,2,1,754,381469.0681850914,155218.623474741,192984.6648519741,0,1763.836701946984 -3132,3903,7042,7043,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.084693656317514,7.075179732663901,52,0,-76.26872729710341,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,6.975652110783749,47.49,59.1,37.66,20.64,8.333333333333334,1,1,0,0,9,7,2,1,1487,867222.1448736568,481879.0029325015,345911.0660537273,0,1888.053283893377 -3132,3903,7043,7042,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,52,0,120.3951110059529,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,6.386992118985079,0,0,1,1,0,0,0,37.66,20.64,47.49,59.1,8.333333333333334,1,1,0,0,0,7,2,1,1487,867222.1448736568,481879.0029325015,345911.0660537273,0,1888.053283893377 -3133,3904,7044,7047,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,7.687475357611128,7.538503862129696,0,6,-8,111.9143611658679,0,-9,-9,2019,17,5,39,16,1,5,0,4.933049023783811,4.933049023783811,0,0,0,0,0,1,1,0,0,0,28.73,61.03,59.88,45.37,6.666666666666667,4,1,0,0,7,5,4,1,1787,211881.6763690682,67826.08652154125,227837.4516082979,107947.50331718,3232.789787623883 -3133,3904,7045,-9,7044,7047,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.676030001153,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1787,211881.6763690682,67826.08652154125,227837.4516082979,107947.50331718,3232.789787623883 -3133,3904,7046,-9,7044,7047,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.283794677225,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1787,211881.6763690682,67826.08652154125,227837.4516082979,107947.50331718,3232.789787623883 -3133,3904,7047,7044,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.841308500466553,8.701859722850507,0,6,8,-38.93103814796594,0,2,3,2019,7,0,40,40,1,0,0,18.7763304741839,18.7763304741839,0,0,0,0,0,1,1,0,3.298771579676735,0,59.88,45.37,28.73,61.03,8.333333333333334,1,1,0,0,7,5,4,1,1787,211881.6763690682,67826.08652154125,227837.4516082979,107947.50331718,3232.789787623883 -3134,3905,7048,7049,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,7.73840351502718,7.738145170018503,0,6,9,88.22142088462329,0,2,2,2019,25,11,37,28,1,11,0,6.083504905400776,6.083504905400776,0,0,0,0,14.5,1,1,0,0,0,35.09,47.68,53.55,41.28,1.666666666666667,1,1,0,0,4,5,4,0,572.5,-123923.8124859079,102835.0147727419,0,0,2081.390690595882 -3134,3905,7049,7048,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.048920442768566,7.855720918319569,5.686635161110645,6,0,-32.50516361652375,0,3,2,2019,15,3,40,50,1,3,0,8.246102456331394,8.246102456331394,0,0,0,0,2,1,1,0,6.036305770961875,0,53.55,41.28,35.09,47.68,3.333333333333333,1,1,0,1,5,5,4,0,572.5,-123923.8124859079,102835.0147727419,0,0,2081.390690595882 -3134,3906,7050,-9,7048,7049,1,0,22,0,0,0,2,2,-9,0,2,7.806601766545803,7.699728634985646,0,0,0,-947.3411347433702,0,3,2,2019,9,1,42,29,1,1,1,7.012307318942335,7.012307318942335,0,0,0,0,0,1,1,0,0,0,47.09,47.5,-9,-9,8.333333333333334,1,1,0,0,4,5,3,0,781,3491.279047997514,-171909.0281308578,0,0,1101.778698732296 -3135,3907,7051,-9,-9,7054,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.6941083376723,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,2,0,472.5,39526.14638681768,0,0,0,1156.457434756946 -3135,3907,7052,-9,-9,7054,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.0427740604816,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,472.5,39526.14638681768,0,0,0,1156.457434756946 -3135,3907,7053,-9,-9,7054,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.3327761149206,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,0,472.5,39526.14638681768,0,0,0,1156.457434756946 -3135,3907,7054,-9,-9,-9,1,1,35,0,3,0,2,2,-9,1,2,0,0,0,0,0,-1031.368445361124,0,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.51,31.19,-9,-9,3.333333333333333,2,3,0,0,0,4,2,0,472.5,39526.14638681768,0,0,0,1156.457434756946 -3136,3908,7055,7056,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,0,0,0,5,-12,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.28,52.09,22.84,64.15000000000001,6.666666666666667,1,1,0,0,0,11,1,0,1823.5,193054.6651868951,0,199055.1851786201,0,1400.731655920276 -3136,3908,7056,7055,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,5,12,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,22.84,64.15000000000001,49.28,52.09,6.666666666666667,1,1,0,1,2,11,1,0,1823.5,193054.6651868951,0,199055.1851786201,0,1400.731655920276 -3136,3909,7057,-9,7055,7056,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1009.953604133848,0,2,2,2019,33,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,10,1,1,1,0,0,11,1,0,809,0,0,0,0,486.363229069259 -3137,3910,7058,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.214875416051699,8.320553468561258,0,0,0,-1090.428108590078,0,2,2,2019,23,11,38,37,1,11,0,12.93126754966242,12.93126754966242,0,0,0,0,0,0,0,0,0,0,38.69,61.75,-9,-9,1.666666666666667,1,1,0,0,6,9,4,0,107,-48160.33554126984,-14448.81601763626,0,0,1159.333497945975 -3138,3911,7059,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.755361829571278,8.666257630313797,0,0,0,-866.985656795147,0,3,2,2019,23,11,39,38,1,11,0,17.90884967920037,17.90884967920037,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,3.333333333333333,1,1,0,0,8,12,5,0,277,465731.2546665127,341148.3162564514,0,0,1664.033076574418 -3139,3912,7060,7061,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.332741952653118,4.501094391204631,48,-1,-61.26502014686007,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5128714209463843,4.324866236699101,51.24,58.84,62.27,42.94,8.333333333333334,1,1,0,0,9,7,2,1,776,397977.4313772444,220327.400095341,285307.8148215736,36386.67986569491,1274.270784480099 -3139,3912,7061,7060,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.193145124732991,6.329498716372414,48,1,-42.12639742295399,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.919193241920611,6.159220223016526,62.27,42.94,51.24,58.84,8.333333333333334,1,1,0,0,9,7,2,1,776,397977.4313772444,220327.400095341,285307.8148215736,36386.67986569491,1274.270784480099 -3140,3913,7062,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.240400744042161,7.404078686725512,6.551465851435737,0,0,-838.7682950233466,0,2,2,2019,10,0,20,4,1,0,0,7.20148767017793,7.20148767017793,0,0,0,0,0,0,0,0,3.129246302645049,6.960992339802533,46.86,55.66,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,139,364453.0828252062,130538.7424655742,47451.71203394943,0,905.7554798292397 -3141,3914,7063,7064,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.283197879908696,7.309447932802186,52,3,-5.259149861333731,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.966435149069991,7.647580693216153,55.36,51.57,33.33,22.86,5,1,1,0,0,3,2,3,1,143,466126.045721557,183996.5675762669,201047.0381624432,0,2548.205640834942 -3141,3914,7064,7063,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,6.172282193832546,6.015223623311988,53,-3,-23.8366464144952,0,-9,2,2019,15,3,0,0,4,3,0,0,0,1,26.31330777972141,50.92289768345242,256.7044408047825,14.5,1,1,0,.7402286072152321,6.03706341110583,33.33,22.86,55.36,51.57,5,1,1,0,0,0,2,3,1,143,466126.045721557,183996.5675762669,201047.0381624432,0,2548.205640834942 -3142,3915,7065,7066,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,9.113398746633182,9.339585596886446,0,14,-6,-39.33795812842053,0,2,2,2019,9,0,45,42,1,0,0,18.38475943235907,18.38475943235907,0,0,0,0,2,0,0,0,2.578050501979711,0,49.63,54.22,26,45.97,8.333333333333334,1,1,0,0,8,9,5,1,830.5,499817.817571192,315663.878639008,285725.7908511619,151607.9785574398,3566.816706450676 -3142,3915,7066,7065,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.972528003788511,7.85874374606552,0,14,6,16.8398659918688,0,2,-9,2019,22,10,45,46,1,10,0,8.236142903078367,8.236142903078367,0,0,0,0,7,0,0,0,0,0,26,45.97,49.63,54.22,1.666666666666667,1,1,0,0,10,9,5,1,830.5,499817.817571192,315663.878639008,285725.7908511619,151607.9785574398,3566.816706450676 -3143,3916,7067,7068,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.44802641740632,8.035113385421161,0,24,5,35.96657674818652,0,3,3,2019,9,0,40,50,1,1,0,15.51404052730646,15.51404052730646,0,0,0,0,0,1,1,0,3.807359545542398,0,52,55,41.3,45.64,8,1,1,0,0,1,5,3,1,543,46375.80909998562,47898.58869530225,169360.9218538884,116307.512648178,3302.487357606248 -3143,3916,7068,7067,-9,7069,1,0,41,0,1,0,2,2,-9,1,4,0,0,0,24,-5,-126.1452685861263,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,41.3,45.64,52,55,1.666666666666667,1,1,0,0,0,5,3,1,543,46375.80909998562,47898.58869530225,169360.9218538884,116307.512648178,3302.487357606248 -3143,3917,7069,-9,-9,-9,1,1,71,0,1,0,3,3,-9,0,3,0,0,0,0,0,-865.8613102470448,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.075106312128063,0,53,47,-9,-9,8,1,1,0,0,0,5,1,1,349,18391.23926305306,0,0,0,-27.79651809464042 -3144,3918,7070,7072,-9,-9,1,0,29,0,2,0,1,1,-9,0,4,0,0,0,3,-2,-151.2256476180824,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.42,60.24,44.66,57.83,6.666666666666667,2,3,1,0,3,9,3,0,896.5,-6109.290987986466,33318.46314801586,0,0,2989.592587187394 -3144,3918,7071,-9,7070,7072,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.410582249205,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,896.5,-6109.290987986466,33318.46314801586,0,0,2989.592587187394 -3144,3918,7072,7070,-9,-9,1,1,31,0,2,0,1,1,-9,0,4,8.303638590121986,8.368734845818963,0,3,2,67.57089273523279,0,-9,-9,2019,6,0,50,68,1,0,0,9.308816244230151,9.308816244230151,0,0,0,0,0,1,0,1,0,0,44.66,57.83,39.42,60.24,8.333333333333334,2,3,0,0,7,9,3,0,896.5,-6109.290987986466,33318.46314801586,0,0,2989.592587187394 -3144,3918,7073,-9,7070,7072,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.769193219364,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,9,3,0,896.5,-6109.290987986466,33318.46314801586,0,0,2989.592587187394 -3145,3919,7074,7075,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,4.049235190200725,4.050014460757572,7,-4,-15.26200878521189,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.606335399804835,3.904209793325142,58.72,51.29,61.28,48.88,8.333333333333334,1,1,0,0,2,12,2,1,291.5,234400.5890487533,173020.1313195532,0,0,1432.076252581466 -3145,3919,7075,7074,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.60866698114069,5.276797653868766,7,4,-78.66641855406282,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.623663099842116,5.490527748566521,61.28,48.88,58.72,51.29,10,1,1,0,0,0,12,2,1,291.5,234400.5890487533,173020.1313195532,0,0,1432.076252581466 -3146,3920,7076,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.519904199114512,5.732842242673294,0,0,-981.0921674811566,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,2.004908667813321,0,27.19474045849933,0,1,1,0,0,5.533700375032417,58.3,15.57,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,322,84953.47180379163,87716.14150354602,0,0,1344.048441623791 -3147,3921,7077,7078,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4486018358295,8.860996721243527,0,9,-7,-152.0550452226921,0,2,2,2019,11,0,40,47,1,0,0,16.24709404347059,16.24709404347059,0,0,0,0,0,1,1,0,6.951429422247523,0,60.6,43.75,47,49,8.333333333333334,1,1,0,0,10,7,5,1,219.5,834333.8067014006,698460.5698128134,445241.178289348,122777.6109472798,4122.529236212085 -3147,3921,7078,7077,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.671543569107949,8.239754777374214,0,9,7,-91.85914441749478,0,2,2,2019,12,0,10,10,1,2,0,34.42872529154261,34.42872529154261,0,0,0,0,0,1,1,0,0,0,47,49,60.6,43.75,7,1,1,0,0,1,7,5,1,219.5,834333.8067014006,698460.5698128134,445241.178289348,122777.6109472798,4122.529236212085 -3147,3922,7079,-9,7078,7077,1,1,21,0,0,0,2,2,-9,0,4,8.069749754528681,7.947306029039778,0,0,0,-947.6391623446362,0,2,2,2019,11,0,40,37,1,2,1,6.8253908490441,6.8253908490441,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,4,1,538,162488.3253620407,51291.8825451208,0,0,1359.974509627622 -3148,3923,7080,7081,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.224844755203993,6.787487551804051,7,-1,-12.7959193906693,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.243168856334028,57.49,47.77,56.43,30.36,8.333333333333334,1,1,0,0,0,12,2,1,1390,669016.3941683273,252808.7240745433,124769.9428352134,0,1157.51728350007 -3148,3923,7081,7080,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,7,1,-1.547244091892603,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.43,30.36,57.49,47.77,8.333333333333334,1,1,0,0,0,12,2,1,1390,669016.3941683273,252808.7240745433,124769.9428352134,0,1157.51728350007 -3149,3924,7082,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.112018122355225,7.861010706344458,0,0,0,-1003.552302282641,0,3,3,2019,12,0,36,37,1,2,0,10.69555401994152,10.69555401994152,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,12,8,4,0,106,236299.0698876288,-189791.7380388331,0,0,1220.366344446088 -3150,3925,7083,-9,7085,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-921.8567874306752,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,1,0,452,-49491.34115891026,0,0,0,2057.825362955979 -3150,3925,7084,-9,7085,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-946.5392109928872,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.1,50.78,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,452,-49491.34115891026,0,0,0,2057.825362955979 -3150,3925,7085,-9,-9,-9,1,0,45,0,3,0,2,2,-9,1,4,0,0,0,0,0,-984.8613282814506,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,2,1,0,452,-49491.34115891026,0,0,0,2057.825362955979 -3150,3925,7086,-9,7085,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1015.897768029953,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,1,0,452,-49491.34115891026,0,0,0,2057.825362955979 -3151,3926,7087,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.374059563390434,8.387767028063099,0,0,0,-936.792172078857,0,2,3,2019,8,0,48,37,1,0,0,10.62763785111807,10.62763785111807,0,0,0,0,0,0,0,0,6.414006792284777,0,53.98,45.34,-9,-9,6.666666666666667,1,1,0,0,10,5,4,1,1039,305982.2611966847,-17456.6205755556,73811.79572245237,61341.13347096059,1906.775501936089 -3151,3927,7088,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.652496230073571,7.299072719098489,0,0,0,-934.9243582744608,0,-9,-9,2019,14,2,36,40,1,2,0,5.947669771130682,5.947669771130682,0,0,0,0,0,0,0,0,0,0,41.96,29.7,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,421,-24283.45049800978,-50329.13937946253,0,0,1117.236846311273 -3152,3928,7089,-9,7090,7091,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.956668454732,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1580,-15507.87471046027,69870.38394401186,0,0,2757.739735133421 -3152,3928,7090,7091,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.398622296403659,8.335099991807141,0,10,-10,-62.27146523081286,0,-9,-9,2019,9,2,40,40,1,2,0,10.28315551580608,10.28315551580608,0,0,0,0,0,1,1,0,0,0,41.3,60.77,51.24,58.84,8.333333333333334,1,1,0,0,12,8,4,1,1580,-15507.87471046027,69870.38394401186,0,0,2757.739735133421 -3152,3928,7091,7090,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.526729880353005,7.213253694135633,0,10,10,79.38313627583307,0,1,1,2019,12,1,48,40,1,1,0,3.632078279627008,3.632078279627008,0,0,0,0,0,1,1,0,0,0,51.24,58.84,41.3,60.77,8.333333333333334,1,1,0,0,12,8,4,1,1580,-15507.87471046027,69870.38394401186,0,0,2757.739735133421 -3153,3929,7092,7093,-9,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,2,-1,7.038158731391949,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,40.79,35.32,6.666666666666667,1,1,0,1,1,2,3,0,1587.5,39949.4303445667,-12089.25717703568,0,0,1865.05933276591 -3153,3929,7093,7092,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.315151339014292,8.32397891378432,0,2,1,-3.403169805771631,0,-9,-9,2019,15,5,40,0,1,5,0,10.83018720787183,10.83018720787183,0,0,0,0,0,1,1,0,0,0,40.79,35.32,41.65,60.41,5,4,2,0,0,1,2,3,0,1587.5,39949.4303445667,-12089.25717703568,0,0,1865.05933276591 -3154,3930,7094,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.477219726241412,8.601466789008089,6.319972684860105,0,0,-992.6295879705394,0,2,2,2019,6,0,35,30,1,0,0,12.90522856496983,12.90522856496983,0,0,0,0,0,1,1,0,6.301910237322506,0,53.75,59.47,-9,-9,10,2,3,0,0,8,9,4,0,1638.5,131094.1082430315,30106.48873215386,365116.9377767181,132418.1959153736,2805.356172453776 -3154,3930,7095,-9,7094,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-999.7722693685357,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,4,0,1638.5,131094.1082430315,30106.48873215386,365116.9377767181,132418.1959153736,2805.356172453776 -3154,3931,7096,-9,7094,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1040.938101401919,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,4,2,0,0,0,9,1,0,336,0,0,0,0,0 -3154,3932,7097,-9,7094,-9,1,0,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1104.355513723597,1,2,-9,2019,12,1,0,18,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.92,58.91,-9,-9,10,2,3,0,0,2,9,1,0,2768,-17126.15048979187,0,0,0,417.0435557180409 -3155,3933,7098,7099,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.664759171051466,7.801927379065439,0,28,1,24.66486173552565,0,3,3,2019,11,3,60,60,1,3,0,5.124247384301778,5.124247384301778,0,0,0,0,0,1,1,0,2.216217323063041,0,49.41,58.28,56.47,59.4,8.333333333333334,1,1,0,0,9,11,4,1,257,1834581.326289712,1566000.79993477,399406.8586113118,187642.8028364244,2380.185468711479 -3155,3933,7099,7098,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.304597398223107,8.131835165403011,0,27,-1,54.35726352624138,0,1,1,2019,10,0,36,35,1,0,0,14.47412317818916,14.47412317818916,0,0,0,0,0,1,1,0,0,0,56.47,59.4,49.41,58.28,8.333333333333334,1,1,0,0,10,11,4,1,257,1834581.326289712,1566000.79993477,399406.8586113118,187642.8028364244,2380.185468711479 -3155,3934,7100,-9,7099,7098,1,1,18,0,0,0,2,2,1,0,4,6.549598578551002,6.345459545155403,0,0,0,-1125.657165471761,-9,1,1,2019,9,3,14,0,1,3,1,6.72901693622503,6.72901693622503,0,0,0,0,0,1,1,0,1.887727372231807,0,24.26,60.64,-9,-9,6.666666666666667,1,1,0,0,2,11,2,1,816,-13439.38149793725,0,0,0,446.1587125798753 -3156,3935,7101,7102,-9,-9,1,1,60,0,0,0,1,1,-9,1,1,0,0,0,10,7,0,0,2,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.44,40.1,36.31,43.19,1.666666666666667,1,1,0,0,0,9,1,0,515.5,70241.22694864823,121617.0342726448,0,0,2044.620448752563 -3156,3935,7102,7101,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,10,-7,0,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,36.31,43.19,19.44,40.1,3.333333333333333,1,1,0,1,0,9,1,0,515.5,70241.22694864823,121617.0342726448,0,0,2044.620448752563 -3157,3936,7103,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1075.116704676091,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,6.977274964436297,0,54.28,42.51,-9,-9,6.666666666666667,1,1,0,0,7,8,1,1,1635,44884.68005711846,0,0,0,1550.94224820881 -3158,3937,7104,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.67594849526426,8.60892165018975,0,0,0,-1103.691347596568,0,2,2,2019,8,0,45,52,1,0,0,16.9404067694818,16.9404067694818,0,0,0,0,0,1,1,0,5.822177558704567,0,62.39,56.71,-9,-9,10,1,1,0,0,10,2,5,1,401,110881.8718352597,-55043.86348158382,98000.16871023847,-4866.308312624085,2472.830017915906 -3159,3938,7105,7106,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,8,-23,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,43.85,30.02,51.73,58.82,5,1,1,0,0,0,4,1,0,321,-49464.22080778625,83645.83433360653,0,0,2114.195655397004 -3159,3938,7106,7105,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,8,23,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,0,1,0,0,51.73,58.82,43.85,30.02,8.333333333333334,1,1,0,0,0,4,1,0,321,-49464.22080778625,83645.83433360653,0,0,2114.195655397004 -3160,3939,7107,-9,7108,7109,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.4665405653963,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,339.8,44538.87915044351,95574.82169773355,0,0,1596.234051010672 -3160,3939,7108,7109,-9,-9,1,0,32,1,3,0,3,3,-9,0,5,0,0,0,3,2,0,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,0,9,1,0,339.8,44538.87915044351,95574.82169773355,0,0,1596.234051010672 -3160,3939,7109,7108,-9,-9,1,1,30,1,3,0,2,2,-9,0,5,0,0,0,3,-2,0,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,5,1,1,1,0,0,9,1,0,339.8,44538.87915044351,95574.82169773355,0,0,1596.234051010672 -3160,3939,7110,-9,7108,7109,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.629979450687,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,339.8,44538.87915044351,95574.82169773355,0,0,1596.234051010672 -3160,3939,7111,-9,7108,7109,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.748323878895,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,339.8,44538.87915044351,95574.82169773355,0,0,1596.234051010672 -3161,3940,7112,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,7.734446311950783,8.084702851026048,7.384368793958677,0,0,-962.1565926769873,-9,-9,-9,2019,2,0,43,0,1,0,0,6.517710469802758,6.517710469802758,0,0,0,0,0,0,0,0,7.289350670590232,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,610,46686.94001632015,-48077.39203505384,0,0,1866.749460539236 -3161,3941,7113,-9,-9,-9,1,1,22,0,0,0,2,2,1,0,3,7.225402162517795,7.767865948036048,7.229816731308977,0,0,-985.8654910802194,-9,-9,-9,2019,2,0,20,0,1,0,0,6.785683166984811,6.785683166984811,0,0,0,0,0,0,0,0,7.269016013442061,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,0,8,3,0,1358,206180.515274744,49097.17896129751,0,0,1088.368603104067 -3162,3942,7114,7115,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,58,-1,-215.5228257390797,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8649425412571882,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,4,5,2,1,1312.5,537184.1408635289,223054.1720272667,233001.1301519436,0,2633.794030288732 -3162,3942,7115,7114,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.509951005105566,7.388010371552332,58,1,-.1442111451704449,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.911969344119228,7.51406097144381,62.49,55.09,57.16,56.15,10,1,1,0,0,0,5,2,1,1312.5,537184.1408635289,223054.1720272667,233001.1301519436,0,2633.794030288732 -3163,3943,7116,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.449666863569279,8.380503622460504,0,0,0,-1146.355205910141,-9,2,-9,2019,21,9,34,0,1,9,0,18.51863060855782,18.51863060855782,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,3.333333333333333,1,1,0,0,6,7,4,1,524,59269.25076676405,-14319.14069633918,0,0,2222.059180518982 -3163,3944,7117,-9,7116,-9,1,0,19,0,1,0,2,2,-9,0,3,7.998627821436418,8.032336520920294,0,0,0,-875.4166771709788,-9,2,-9,2019,19,7,40,0,1,7,1,12.04683678623345,12.04683678623345,0,0,0,0,0,1,1,0,2.002038044510852,0,24.21,59.2,-9,-9,5,1,1,0,0,3,7,4,1,278,-50317.62625629579,0,0,0,1227.989382695086 -3164,3945,7118,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.506924647344899,8.630597832732509,0,0,-878.7060085079704,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.287066553077303,8.381582912364083,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,575,911370.8162740286,435470.6706544578,280201.0258573217,0,2637.965080202761 -3165,3946,7119,7120,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,6.833504747480437,7.685657340348829,6.959973747157634,9,-3,-13.65134485203085,0,3,3,2019,10,0,7,8,1,0,0,19.07686601108505,19.07686601108505,0,0,0,0,0,1,1,0,5.992056422284724,6.799422802258253,56.5,48.33,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,511,1403735.365624334,723431.902685259,213029.3658210093,0,4178.561013698121 -3165,3946,7120,7119,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.21681146238806,8.184686639137384,35,3,81.39253781174575,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.110890812639222,8.521704965916433,57.06,57.76,56.5,48.33,8.333333333333334,1,1,0,0,0,5,4,1,511,1403735.365624334,723431.902685259,213029.3658210093,0,4178.561013698121 -3165,3947,7121,-9,7119,7120,1,0,24,0,0,0,2,2,1,0,4,8.071533709814261,7.771531071285984,0,0,0,-980.1409764177425,-9,1,1,2019,11,0,35,0,1,0,0,8.963109657258396,8.963109657258396,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,269,23263.0870148852,25713.38017843707,0,0,1191.764141074544 -3166,3948,7122,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1057.474738866986,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.93,35.96,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,387,157202.2218881346,0,0,0,484.6444933180184 -3166,3949,7123,-9,7122,-9,1,0,42,0,0,0,2,2,-9,0,3,8.174683649898894,8.010883281338185,0,0,0,-1168.720992901119,0,3,3,2019,7,0,37,38,1,0,0,6.510637220716217,6.510637220716217,0,0,0,0,0,1,1,0,.3010485423815566,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,1393,71284.52349649961,21929.90364693154,82232.27657218033,0,1423.175156579064 -3167,3950,7124,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.837641349781677,8.050082986811246,7.31744623337623,0,0,-1043.241359578201,0,2,1,2019,23,10,32,32,1,10,0,6.619468074425862,6.619468074425862,1,0,0,0,0,1,1,0,0,7.239816045942127,32.62,36.55,-9,-9,3.333333333333333,1,1,0,1,12,7,4,1,1033,783233.3108394367,613492.8629034415,199243.8851212198,0,2516.496416986029 -3168,3951,7125,7126,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.334914025954651,8.005368123708969,0,1,-2,10.57744072297379,0,2,3,2019,9,1,35,45,1,1,0,13.80089734825126,13.80089734825126,0,0,0,0,0,0,0,0,3.215322347263612,0,54.2,57.49,49,58,10,1,1,0,0,8,11,5,1,847.5,68255.75632756887,53481.51081297267,117154.344767475,91132.08888057421,4273.069691222781 -3168,3951,7126,7125,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.924904391889026,9.037826359788127,0,1,2,-53.97551495766183,-9,-9,-9,2019,10,0,40,0,1,1,0,23.9148629033838,23.9148629033838,0,0,0,0,0,0,0,0,.2551738745158454,0,49,58,54.2,57.49,7,1,1,0,0,1,11,5,1,847.5,68255.75632756887,53481.51081297267,117154.344767475,91132.08888057421,4273.069691222781 -3169,3952,7127,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.044168829539801,9.00127452834508,0,0,0,-1000.550551065163,-9,2,3,2019,10,0,45,0,1,0,0,22.25844617735444,22.25844617735444,0,0,0,0,0,0,0,0,.7684894933564537,0,46.97,53.06,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,5068,353843.5273005677,162543.044350444,215532.9478499137,23760.03796655892,2693.954303161109 -3169,3953,7128,-9,-9,7127,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.208705853138,1,-9,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,5.807519892003931,0,41.93,57.79,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,1281,102539.316429211,0,0,0,455.4360888706606 -3170,3954,7129,7130,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,7.861013208015753,8.127692081016782,0,37,-1,-86.33282770066074,0,3,3,2019,36,12,35,35,1,12,0,10.98729464960316,10.98729464960316,0,0,0,0,0,1,1,0,0,0,18.76,23.91,37.77,45.33,1.666666666666667,1,1,0,0,11,2,4,0,498,893796.2469519575,784737.6482412436,266404.7703752502,42474.04818175854,3065.00487853098 -3170,3954,7130,7129,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.103589998808445,8.053269296529951,0,37,1,-16.19185214271241,0,3,-9,2019,20,8,25,35,1,8,0,17.86724016974019,17.86724016974019,0,0,0,0,2,1,1,0,0,0,37.77,45.33,18.76,23.91,5,1,1,0,0,11,2,4,0,498,893796.2469519575,784737.6482412436,266404.7703752502,42474.04818175854,3065.00487853098 -3171,3955,7131,7133,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.265942963274574,8.20674031007934,0,8,3,-32.44397306534274,0,2,3,2019,13,1,35,36,1,1,0,9.34541457406678,9.34541457406678,0,0,0,0,0,1,1,0,0,0,40.81,52.94,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,1,764.25,90779.65386468629,82375.34317178608,100527.9558448752,89577.26349461798,3909.895896844006 -3171,3955,7132,-9,7131,7133,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.282671180815,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,764.25,90779.65386468629,82375.34317178608,100527.9558448752,89577.26349461798,3909.895896844006 -3171,3955,7133,7131,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.459824133495868,8.48016855956987,0,8,-3,92.43751118019954,0,3,2,2019,7,0,41,42,1,0,0,14.56341602682202,14.56341602682202,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.81,52.94,8.333333333333334,1,1,0,0,10,2,4,1,764.25,90779.65386468629,82375.34317178608,100527.9558448752,89577.26349461798,3909.895896844006 -3171,3955,7134,-9,7131,7133,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-869.526016070613,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,764.25,90779.65386468629,82375.34317178608,100527.9558448752,89577.26349461798,3909.895896844006 -3172,3956,7135,7137,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.714200433737947,8.585443524254366,0,25,3,-19.28711049554807,0,2,2,2019,9,0,35,35,1,1,0,14.271018426126,14.271018426126,0,0,0,0,0,0,0,0,3.523705659371367,0,53,54,48.81,59.91,8,3,4,0,0,1,8,5,1,549.3333333333334,309394.4035132714,251749.3644790431,0,0,4330.121421643315 -3172,3956,7136,-9,7137,7135,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-871.7939870272007,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,5,1,549.3333333333334,309394.4035132714,251749.3644790431,0,0,4330.121421643315 -3172,3956,7137,7135,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.951846292315919,8.995814068540911,0,25,-3,-4.285486856346782,0,2,2,2019,11,0,40,35,1,0,0,19.72806460305806,19.72806460305806,0,0,0,0,0,0,0,0,0,0,48.81,59.91,53,54,8.333333333333334,3,4,0,0,9,8,5,1,549.3333333333334,309394.4035132714,251749.3644790431,0,0,4330.121421643315 -3173,3957,7138,-9,7140,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-770.5446460933912,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,611.5,5307.432238793197,-2.247279210128909,0,0,1108.416084560738 -3173,3957,7139,-9,7140,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.5016686434416,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,611.5,5307.432238793197,-2.247279210128909,0,0,1108.416084560738 -3173,3957,7140,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.585920312412476,7.789074864212227,0,0,0,-958.5377934134946,0,-9,-9,2019,10,0,45,36,1,0,0,4.328121229855626,4.328121229855626,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,611.5,5307.432238793197,-2.247279210128909,0,0,1108.416084560738 -3173,3957,7141,-9,7140,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1135.754981030171,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,2,2,0,611.5,5307.432238793197,-2.247279210128909,0,0,1108.416084560738 -3174,3958,7142,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.555345143671063,7.655068072093811,0,0,0,-965.570830566154,0,2,2,2019,0,0,56,44,1,0,0,3.992560821842849,3.992560821842849,0,0,0,0,0,0,0,0,0,0,38.31,55.56,-9,-9,10,1,1,0,0,8,1,3,0,583,90644.82029404548,-53458.10043514618,0,0,714.6374415714222 -3174,3959,7143,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.853205950574022,8.241856523539441,2.623449675971647,0,0,-927.6460798687611,0,-9,-9,2019,10,0,40,40,1,0,0,7.039724819113053,7.039724819113053,0,0,0,0,0,0,0,0,0,2.364786984041368,63.21,19.8,-9,-9,6.666666666666667,1,1,0,0,9,1,3,0,750,7323.49883316143,22998.87762775217,0,0,1536.936577631799 -3175,3960,7144,7145,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,8,1,51.02471077474254,0,2,2,2019,18,7,0,40,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,35.48,51.26,48.45,57.49,6.666666666666667,1,1,1,0,8,1,4,1,709.5,1645273.80727119,1392226.615107736,204910.5425229672,0,939.8460650325442 -3175,3960,7145,7144,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,8.481024397825752,8.33404166788304,8,-1,-59.95396279192995,0,2,3,2019,7,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.310057787573202,8.40775051404542,48.45,57.49,35.48,51.26,6.666666666666667,1,1,0,0,7,1,4,1,709.5,1645273.80727119,1392226.615107736,204910.5425229672,0,939.8460650325442 -3176,3961,7146,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1114.106373806512,0,2,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,5,3,4,0,1,12,8,1,1,143,419250.5158840565,0,435192.047623569,-1043.25029530906,574.1861541705305 -3176,3962,7147,-9,7146,-9,1,0,23,0,0,0,2,2,-9,0,3,8.287583456653977,8.477979900127803,0,0,0,-981.7151092709769,0,2,-9,2019,11,2,50,46,1,2,1,8.742567998542391,8.742567998542391,0,0,0,0,0,0,0,0,0,0,41.41,59.45,-9,-9,6.666666666666667,3,4,0,0,6,8,4,1,610,-108752.7167824593,-35444.82645528025,0,0,1790.700545890951 -3176,3963,7148,-9,7146,-9,1,0,21,0,0,0,2,2,-9,0,4,8.152470463300856,8.294062580217833,0,0,0,-902.4276300057212,0,2,-9,2019,25,9,38,0,1,9,1,9.488772046984161,9.488772046984161,0,0,0,0,0,0,0,0,1.347549556359468,0,21.97,43.96,-9,-9,6.666666666666667,3,4,0,0,4,8,4,1,1002,0,0,0,0,1463.18066205771 -3177,3964,7149,-9,7150,7151,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.527779151,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,569.25,1781685.607293305,1329234.775746985,360150.3230909747,0,2802.226597952547 -3177,3964,7150,7151,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,5.928394928314558,5.830068462870333,0,7,-7,118.5553161041571,0,3,2,2019,12,1,7,0,1,1,0,5.7479359127405,5.7479359127405,0,0,0,0,0,1,1,0,0,0,43.95,53.15,42.9,52.21,5,1,1,0,0,2,2,4,1,569.25,1781685.607293305,1329234.775746985,360150.3230909747,0,2802.226597952547 -3177,3964,7151,7150,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,8.679408629021333,8.676946361863244,0,7,7,29.11377130005551,0,2,2,2019,18,6,38,50,1,6,0,21.41350050867548,21.41350050867548,0,0,0,0,0,1,1,0,0,0,42.9,52.21,43.95,53.15,1.666666666666667,1,1,0,0,8,2,4,1,569.25,1781685.607293305,1329234.775746985,360150.3230909747,0,2802.226597952547 -3177,3964,7152,-9,7150,7151,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.9968026681956,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,569.25,1781685.607293305,1329234.775746985,360150.3230909747,0,2802.226597952547 -3178,3965,7153,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.304525583299068,9.08467564448315,0,0,0,-1099.479180630732,0,2,1,2019,11,0,60,45,1,0,0,18.69921239278603,18.69921239278603,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6.666666666666667,4,5,0,0,7,8,5,0,363,183642.7841391721,151114.2086227681,214885.8022351623,106834.3004899323,2388.055796664682 -3179,3966,7154,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,7.81660651942036,7.850228694505011,0,0,-1058.314886785359,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,22.42472958075612,0,211.3155738134776,0,1,1,0,3.512361505158633,7.834267105249499,52.38,30.08,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,562,1365187.76518173,263406.56221568,172652.0263972757,0,3159.349326728363 -3180,3967,7155,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.601494465706141,6.984087364007736,0,0,-976.7918838163005,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.570471509757936,6.853181934069137,49.1,36.06,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,368,171318.5332387543,68508.97205434935,0,0,1280.162025789696 -3181,3968,7156,-9,7157,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.539077369963,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,577.5,-29083.24562223114,30968.51268342948,0,0,1744.894767772457 -3181,3968,7157,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,6.820377150269988,7.109688393347043,6.057953716271578,0,0,-936.1763572302403,0,2,2,2019,3,0,16,16,1,0,0,8.41151807871675,8.41151807871675,0,0,0,0,0,1,1,0,5.81423657615273,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,577.5,-29083.24562223114,30968.51268342948,0,0,1744.894767772457 -3182,3969,7158,-9,7160,7161,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.1270925000838,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,696.25,207221.7107097171,73998.4197804876,226387.1194006424,109539.9910962464,2466.312641721465 -3182,3969,7159,-9,7160,7161,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1045.887214558576,-9,3,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,4,4,1,696.25,207221.7107097171,73998.4197804876,226387.1194006424,109539.9910962464,2466.312641721465 -3182,3969,7160,7161,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,8.029401879912706,8.034348505183139,0,7,-2,-137.3772956070365,0,3,3,2019,12,0,25,25,1,0,0,11.15256903186178,11.15256903186178,0,0,0,0,2,1,1,0,0,0,43.58,48.77,41.06,62.04,6.666666666666667,1,1,0,1,8,4,4,1,696.25,207221.7107097171,73998.4197804876,226387.1194006424,109539.9910962464,2466.312641721465 -3182,3969,7161,7160,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.460438101493876,8.187841989489707,0,7,2,-127.2226275074439,0,2,2,2019,12,0,40,40,1,0,0,13.38096711992393,13.38096711992393,0,0,0,0,0,1,1,0,0,0,41.06,62.04,43.58,48.77,5,1,1,0,0,8,4,4,1,696.25,207221.7107097171,73998.4197804876,226387.1194006424,109539.9910962464,2466.312641721465 -3183,3970,7162,-9,-9,-9,1,0,55,0,0,0,1,1,-9,1,2,5.116344235265244,5.318946187660247,0,0,0,-1026.531503729857,0,2,2,2019,22,10,3,0,1,10,0,8.114533970434634,8.114533970434634,0,0,0,0,0,0,0,0,6.978778036352747,0,33.64,37.5,-9,-9,1.666666666666667,1,1,0,1,7,7,2,1,596,-48897.06188936765,0,0,0,941.7457166797712 -3184,3971,7163,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,7.4044261009718,7.29198013257623,0,0,-967.7862162253624,0,3,2,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.507192300030233,45.07,37.35,-9,-9,5,1,1,0,0,0,6,3,0,140,479692.4250238899,105970.7876139452,233001.4905070044,0,1463.779042322097 -3185,3972,7164,-9,7165,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.757979545423,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,645.3333333333334,74229.87530945317,0,135762.2364088465,100501.983037308,1613.394609453637 -3185,3972,7165,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,0,0,-965.2817603442245,0,2,1,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.71,58.13,-9,-9,8.333333333333334,1,1,0,1,0,1,1,0,645.3333333333334,74229.87530945317,0,135762.2364088465,100501.983037308,1613.394609453637 -3185,3972,7166,-9,7165,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.544970069312,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,645.3333333333334,74229.87530945317,0,135762.2364088465,100501.983037308,1613.394609453637 -3186,3973,7167,7169,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.442233580158758,9.223858433854154,0,5,7,1.382597725812484,0,3,2,2019,6,0,80,70,1,0,0,19.10307351054862,19.10307351054862,0,0,0,0,2,1,1,0,3.858100696038531,0,68.88,38.65,52.77,55.33,8.333333333333334,1,1,0,0,7,5,5,1,1856,641747.2179195586,440538.1431568018,135159.2566225258,0,10976.56761774615 -3186,3973,7168,-9,7169,7167,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.7339631077518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1856,641747.2179195586,440538.1431568018,135159.2566225258,0,10976.56761774615 -3186,3973,7169,7167,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,5,-7,21.79883539597374,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,9.158107451763978,0,52.77,55.33,68.88,38.65,10,1,1,0,0,0,5,5,1,1856,641747.2179195586,440538.1431568018,135159.2566225258,0,10976.56761774615 -3186,3974,7170,-9,7169,7167,1,1,20,0,1,0,2,2,-9,0,5,7.431135649862465,7.412925289118582,0,0,0,-1046.065288292557,0,2,2,2019,11,0,37,40,1,0,1,5.963070183856981,5.963070183856981,0,0,0,0,0,1,1,0,0,0,60.56,54.81,-9,-9,10,1,1,0,0,5,5,3,1,325,0,0,0,0,806.1884744585049 -3186,3975,7171,-9,7169,7167,1,1,18,0,1,0,2,2,-9,0,5,6.1617702146309,6.345229096843337,0,0,0,-877.9121665047279,0,2,2,2019,8,0,8,0,1,0,1,7.681357434802154,7.681357434802154,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,5,2,1,1886,-233083.901861331,4195.989648335495,0,0,762.0500906640805 -3187,3976,7172,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.411603571346889,6.588232341845573,0,0,-1091.398734401956,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.667984327526455,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,904,1111482.590501534,205983.2688849242,852059.4351223513,0,1160.334392936285 -3188,3977,7173,7174,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,0,0,54,1,95.40507333304799,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,53,45,8,3,4,0,0,0,8,2,0,1007.5,413078.8289424324,0,292693.6695153415,0,720.5504472750326 -3188,3977,7174,7173,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.164700412770849,5.137180877569643,54,-1,20.9669301493965,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.393709935125529,53,45,55,45,8,3,4,0,0,0,8,2,0,1007.5,413078.8289424324,0,292693.6695153415,0,720.5504472750326 -3188,3978,7175,-9,7174,7173,1,1,58,0,0,0,3,3,-9,0,3,8.06515305215652,8.157860810479521,0,0,0,-1015.146169862701,0,2,2,2019,10,0,40,40,1,1,0,8.290775432142341,8.290775432142341,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,3,4,0,0,1,8,4,0,486,1063172.151837895,515019.0537922074,559326.737419651,0,1390.938268768462 -3189,3979,7176,7177,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.12068756707666,8.138026073537285,44,4,-38.5186079807724,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.392933639665612,8.011599423712296,56.95,30.23,54.79,55.86,8.333333333333334,1,1,0,0,5,6,4,1,901.5,1212380.762508091,949472.0895046019,264931.5520862322,0,4471.326596931931 -3189,3979,7177,7176,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.229587841685484,7.994002905577713,0,44,-4,-53.56535385770076,0,2,2,2019,10,0,24,26,1,0,0,15.67387115230628,15.67387115230628,0,0,0,0,7,1,1,0,0,0,54.79,55.86,56.95,30.23,8.333333333333334,1,1,0,0,8,6,4,1,901.5,1212380.762508091,949472.0895046019,264931.5520862322,0,4471.326596931931 -3190,3980,7178,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.359580396754048,6.567180443530929,0,0,-1118.771112344004,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.232789168442568,6.559371762799086,60.46,33.02,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,371,164428.8095920236,300013.1150486338,0,0,2132.016911333358 -3191,3981,7179,7180,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.687323392278002,7.062605905749846,9,1,100.1777760648721,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.732722417542116,60.23,40.24,49.88,39.72,8.333333333333334,1,1,0,0,0,11,2,1,454,216494.6447185611,190507.1457326154,0,0,1075.272874550772 -3191,3981,7180,7179,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.324091883307807,5.32298465358455,9,-1,-1.901818253403841,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.925095800237134,5.045775281805156,49.88,39.72,60.23,40.24,8.333333333333334,1,1,0,0,0,11,2,1,454,216494.6447185611,190507.1457326154,0,0,1075.272874550772 -3192,3982,7181,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.22073659313954,8.385613498293594,0,0,0,-1062.568583207545,0,3,2,2019,12,0,38,37,1,0,0,12.00475315570718,12.00475315570718,0,0,0,0,0,0,0,0,5.236169500100996,0,45.96,38.67,-9,-9,5,1,1,0,0,10,1,4,1,1236,605119.1614108362,508172.3463042777,143646.1650041808,63816.75716652134,1183.316984501917 -3193,3983,7182,7183,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,5.830599081661206,6.584413474461804,6.625621032570569,42,-8,-116.0617393683042,0,3,2,2019,6,0,19,30,1,0,0,1.641787497832269,1.641787497832269,0,0,0,0,0,1,1,0,0,6.143038005735217,62.66,52.4,44.99,60.44,8.333333333333334,1,1,0,0,12,2,4,1,352,476092.0374446982,119083.7805131108,418361.9132478775,0,4279.476730876571 -3193,3983,7183,7182,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,8.68060213278709,8.437583973189778,42,8,-88.79204297737201,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.525595730671495,8.358311045016521,44.99,60.44,62.66,52.4,8.333333333333334,1,1,0,0,1,2,4,1,352,476092.0374446982,119083.7805131108,418361.9132478775,0,4279.476730876571 -3194,3984,7184,7185,-9,-9,1,0,53,0,0,0,2,2,-9,1,4,0,0,0,7,-3,17.69938388467676,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.76,54.51,38.42,15.04,8.333333333333334,1,1,1,0,6,5,2,1,1007.5,720263.0435609755,428443.4739037843,332795.8580614871,0,1858.768535534677 -3194,3984,7185,7184,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,7.06986291993047,7.555435581903939,7,3,12.54710807357059,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.744851801495495,6.87736968949307,38.42,15.04,57.76,54.51,6.666666666666667,1,1,0,0,1,5,2,1,1007.5,720263.0435609755,428443.4739037843,332795.8580614871,0,1858.768535534677 -3195,3985,7186,-9,-9,-9,1,0,99,0,0,0,2,2,-9,0,3,0,0,0,0,0,-956.0986465755595,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.37,45.38,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,547,190600.1840641132,0,0,0,593.9961823334432 -3196,3986,7187,7188,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.684997040914158,7.597432141436231,57,2,-5.33582223377528,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.521985905291858,55,45,54.2,57.49,8,1,1,0,0,0,1,4,1,574.5,1437438.481209604,1133018.38294513,89485.86554362786,0,4302.687552163306 -3196,3986,7188,7187,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.328271435857374,8.564276431288953,57,-2,-13.98630337237342,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.004453030641937,8.250463246822109,54.2,57.49,55,45,10,1,1,0,0,0,1,4,1,574.5,1437438.481209604,1133018.38294513,89485.86554362786,0,4302.687552163306 -3197,3987,7189,7190,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.120763008884429,8.259702717649398,0,7,-6,71.78059898394665,0,3,3,2019,7,0,37,36,1,0,0,13.0179476416231,13.0179476416231,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,557.5,604479.1694589215,359212.0453536612,207826.4728918094,0,3144.098726614941 -3197,3987,7190,7189,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.104749057099244,7.963063262267193,6.734813664074829,7,6,16.0592059439514,0,2,2,2019,6,0,35,30,1,0,0,10.06439706130568,10.06439706130568,0,0,0,0,14.5,0,0,0,6.087220383024458,6.909231002668385,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,557.5,604479.1694589215,359212.0453536612,207826.4728918094,0,3144.098726614941 -3198,3988,7191,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,2.914841047105766,2.803929614433117,0,0,-1007.96681291556,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.056135447052658,2.939734686897374,45.03,45.74,-9,-9,3.333333333333333,1,1,0,0,5,5,2,1,713,-11143.79443293914,-19962.75275804522,0,0,797.4096618621335 -3199,3989,7192,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.947979696657528,7.20167052161818,0,0,-1056.251670655537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.797266843992809,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,653,781520.5244099012,657050.2906807028,56976.28029130019,0,831.0704388835752 -3200,3990,7193,-9,7195,7194,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.2997662218636,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,250.3333333333333,1367139.500874924,1013703.709768187,389978.1062282692,20815.2334097603,4810.146570038408 -3200,3990,7194,7195,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,9.239318331265626,9.209426168790628,0,7,9,50.28129616964998,0,-9,-9,2019,10,0,38,38,1,1,0,37.36421620836835,37.36421620836835,0,0,0,0,0,0,0,0,5.630278743669312,0,51,49,57.16,56.15,7,1,1,0,0,1,5,5,1,250.3333333333333,1367139.500874924,1013703.709768187,389978.1062282692,20815.2334097603,4810.146570038408 -3200,3990,7195,7194,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.132485918755107,7.50861281001221,0,21,0,42.47420493965538,0,2,2,2019,6,0,24,19,1,0,0,7.667149370405163,7.667149370405163,0,0,0,0,0,0,0,0,4.550067536947326,0,57.16,56.15,51,49,8.333333333333334,1,1,0,0,7,5,5,1,250.3333333333333,1367139.500874924,1013703.709768187,389978.1062282692,20815.2334097603,4810.146570038408 -3201,3991,7196,7197,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.323183063810443,8.443894128384505,0,6,-1,94.49690451860783,0,2,2,2019,8,0,41,40,1,0,0,11.60278822395271,11.60278822395271,0,0,0,0,0,1,1,0,.6638161578252836,0,48.53,58.91,54.2,57.49,8.333333333333334,1,1,0,0,6,7,4,1,360.3333333333333,-13139.15055006089,0,279483.9729662384,207163.926245213,2452.596853006421 -3201,3991,7197,7196,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.100823732210993,7.325712715076874,0,6,1,7.553900899254677,0,2,2,2019,10,0,20,20,1,0,0,8.427844406762167,8.427844406762167,0,0,0,0,0,1,1,0,1.230257235639217,0,54.2,57.49,48.53,58.91,8.333333333333334,1,1,0,0,6,7,4,1,360.3333333333333,-13139.15055006089,0,279483.9729662384,207163.926245213,2452.596853006421 -3201,3991,7198,-9,7197,7196,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.151823346344,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,360.3333333333333,-13139.15055006089,0,279483.9729662384,207163.926245213,2452.596853006421 -3202,3992,7199,-9,7201,7200,1,1,55,0,0,0,2,2,-9,0,3,8.198786793038277,8.363780445207629,0,0,0,-1040.062665343295,-9,3,3,2019,10,0,38,0,1,1,0,10.86454041929337,10.86454041929337,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,11,4,1,337,287086.8030464264,-139060.0396311827,0,0,2701.943972882182 -3202,3993,7200,7201,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,8,5,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,44.92,52,45,8.333333333333334,1,1,0,0,0,11,1,1,304.5,440032.0771616605,-68443.64779675864,227362.7174958065,0,1602.613364721515 -3202,3993,7201,7200,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,8,-5,0,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.288996014833625,0,52,45,40.72,44.92,8,4,1,0,0,0,11,1,1,304.5,440032.0771616605,-68443.64779675864,227362.7174958065,0,1602.613364721515 -3203,3994,7202,7203,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.153822465337804,7.237157912340044,53,-5,50.47369944584035,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.296838777327302,52,45,51.65,39.74,8,2,3,0,0,0,8,2,1,96.5,1000476.515151516,301550.4230314128,472136.6554714,0,2665.464022139129 -3203,3994,7203,7202,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,0,0,53,5,39.31532083745338,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,39.74,52,45,6.666666666666667,2,3,0,0,0,8,2,1,96.5,1000476.515151516,301550.4230314128,472136.6554714,0,2665.464022139129 -3204,3995,7204,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,6.616758197217893,6.417137590297472,0,0,0,-952.4990927253917,0,3,3,2019,15,3,10,10,1,3,0,8.719046405336238,8.719046405336238,0,0,0,0,0,1,1,0,0,0,49.11,45,-9,-9,5,1,1,0,0,9,13,2,1,493,401883.5690825374,510496.1050232221,0,0,1104.111182665401 -3205,3996,7205,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.600528825514709,7.610013597291944,0,0,0,-938.4842900295871,0,2,3,2019,11,0,30,32,1,0,0,7.887098559770537,7.887098559770537,0,0,0,1.085602259790166,0,1,1,0,0,0,43.18,55.57,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,281,-59388.13702826838,-46321.35570695275,0,0,936.4549518572675 -3206,3997,7206,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,0,0,-925.1820280472257,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.69,57.21,-9,-9,6.666666666666667,2,3,0,1,0,8,1,0,579.5,0,0,0,0,1824.460531542605 -3206,3997,7207,-9,7206,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.854020605253,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,579.5,0,0,0,0,1824.460531542605 -3207,3998,7208,7210,-9,-9,1,0,52,0,3,0,2,2,-9,0,4,7.504509834525067,7.372011360681892,0,2,12,87.80577812848723,0,1,1,2019,15,5,10,20,1,5,0,15.39756976608864,15.39756976608864,0,0,0,0,0,1,1,0,3.76389364401367,0,49.45,51.4,41.23,59.35,3.333333333333333,1,1,0,0,9,12,2,0,510.6,93558.5471605677,41536.69727403885,80470.04710707684,5804.565929745332,1669.583280619489 -3207,3998,7209,-9,7208,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-919.1225772803086,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,510.6,93558.5471605677,41536.69727403885,80470.04710707684,5804.565929745332,1669.583280619489 -3207,3998,7210,7208,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,0,0,0,2,-12,-75.31492514852512,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,49.45,51.4,1.666666666666667,1,1,0,0,0,12,2,0,510.6,93558.5471605677,41536.69727403885,80470.04710707684,5804.565929745332,1669.583280619489 -3207,3998,7211,-9,7208,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-961.5438529081448,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,510.6,93558.5471605677,41536.69727403885,80470.04710707684,5804.565929745332,1669.583280619489 -3207,3998,7212,-9,-9,7210,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.987051236997,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,510.6,93558.5471605677,41536.69727403885,80470.04710707684,5804.565929745332,1669.583280619489 -3208,3999,7213,7214,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,4.39283261230355,4.923611044193188,57,-6,-17.25308377365652,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.26435124941618,4.709899802017427,54.2,57.49,55,45,10,1,1,0,0,6,4,2,0,479.5,19195.79125777401,-4063.700804376545,0,0,1175.887242074311 -3208,3999,7214,7213,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,57,6,-18.97704898122962,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.228463760928496,0,55,45,54.2,57.49,8,1,1,0,0,0,4,2,0,479.5,19195.79125777401,-4063.700804376545,0,0,1175.887242074311 -3208,4000,7215,-9,7213,7214,1,1,54,0,0,0,2,2,-9,0,4,8.50005897099952,8.323732151254074,0,0,0,-1028.993136494664,-9,2,3,2019,9,0,70,0,1,1,0,6.917447545141138,6.917447545141138,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,4,5,0,5208,936127.9549518435,652221.5953271377,157193.0822084307,118859.7745559548,2291.214477218658 -3209,4001,7216,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.133486764396,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,31.17,-9,-9,3.333333333333333,1,1,0,1,0,6,1,0,526,270780.6844124689,0,0,0,1481.522133581493 -3210,4002,7217,7218,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.971095160443253,8.936529936514605,0,31,-4,46.14089112704031,0,2,2,2019,10,0,38,37,1,0,0,20.12777690077955,20.12777690077955,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,414.5,841581.8036951406,166203.3212046059,478911.3621818808,71893.79432003597,11767.27539518672 -3210,4002,7218,7217,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.635341333417447,9.914647972795697,0,31,4,-2.578465411707478,0,3,3,2019,5,0,46,40,1,0,0,34.94819499502883,34.94819499502883,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,414.5,841581.8036951406,166203.3212046059,478911.3621818808,71893.79432003597,11767.27539518672 -3210,4003,7219,-9,7217,7218,1,1,19,0,0,0,2,2,-9,0,4,7.713323699837266,7.902113919501776,0,0,0,-1042.467406811976,0,2,2,2019,11,0,44,45,1,0,1,7.232197417966375,7.232197417966375,0,0,0,0,0,0,0,0,0,0,58.55,51.64,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,994,81106.90392443337,0,0,0,1510.363849126559 -3211,4004,7220,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1064.507252727039,1,3,3,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,2,1,1,0,0,0,31.2,48.52,-9,-9,5,2,3,0,1,7,4,1,1,1209,-129702.7606336035,0,0,0,0 -3211,4005,7221,-9,-9,-9,1,1,32,0,1,0,2,2,-9,1,3,6.885905924625591,6.57662219569762,0,0,0,-855.7156327621287,0,3,3,2019,11,1,15,15,1,1,1,5.815785301186829,5.815785301186829,0,0,0,0,42,1,1,0,0,0,34.77,55.61,-9,-9,5,2,3,0,0,7,4,2,1,496,-34418.96831318016,101066.9260675737,0,0,900.7511317892559 -3212,4006,7222,7223,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,0,0,0,4,-1,-32.35223772250133,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,52,54.51,10,1,1,0,0,9,13,2,0,827.6666666666666,56485.10549351809,20119.58795031294,116577.7678894731,73747.86794430565,1022.598785349286 -3212,4006,7223,7222,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.252877279930016,7.228599689241602,0,4,1,67.32003085567987,0,-9,-9,2019,11,0,26,0,1,0,0,4.473581173442114,4.473581173442114,0,0,0,0,0,1,1,0,0,0,52,54.51,62.66,52.4,8.333333333333334,1,1,0,0,2,13,2,0,827.6666666666666,56485.10549351809,20119.58795031294,116577.7678894731,73747.86794430565,1022.598785349286 -3212,4006,7224,-9,7222,7223,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-966.5322554643581,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,827.6666666666666,56485.10549351809,20119.58795031294,116577.7678894731,73747.86794430565,1022.598785349286 -3213,4007,7225,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.111258907120963,9.123542710147001,0,0,0,-1037.783455729987,0,2,2,2019,6,0,38,43,1,0,0,25.83110221257815,25.83110221257815,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,711,473962.0285753419,365516.9419939959,215906.3565451319,0,3135.783457767246 -3214,4008,7226,7227,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,47,4,-122.0571116677182,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,65.59,16.73,63.65,35.93,10,1,1,0,0,0,10,2,1,706,471666.8322343252,162762.1329608439,156248.9518351627,0,1673.87462128276 -3214,4008,7227,7226,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.135786794496538,7.129655444224649,47,-4,-38.4019222087034,0,3,3,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,7,1,1,0,3.241441676942502,7.088574739363216,63.65,35.93,65.59,16.73,10,1,1,0,0,8,10,2,1,706,471666.8322343252,162762.1329608439,156248.9518351627,0,1673.87462128276 -3215,4009,7228,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1010.79724414816,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.2,24.17,-9,-9,10,2,3,0,1,0,5,1,0,1126,0,0,0,0,530.3628707806727 -3216,4010,7229,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.340970213000446,5.396998598385263,0,0,-940.4648094530806,0,2,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.404773512384577,4.926290510265054,56.25,40.2,-9,-9,5,1,1,0,0,0,4,2,0,254,309891.1862928407,0,88305.50880171816,0,1445.134459676357 -3217,4011,7230,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.616474374320989,8.467652022836228,0,0,0,-913.6323727276661,0,2,2,2019,7,0,36,35,1,0,0,17.51673323394024,17.51673323394024,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,13,2,5,1,110,-50451.87882383059,0,0,0,2181.189602717634 -3218,4012,7231,7233,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,7.148740466494345,6.973834875760114,0,5,-21,-63.62018569570066,0,-9,-9,2019,15,3,21,35,1,3,0,7.153824522395917,7.153824522395917,0,0,0,0,0,1,1,0,0,0,30.22,61.83,42.22,56.11,3.333333333333333,1,1,0,1,7,11,3,1,689.75,904877.2441383254,712781.7167174242,271173.1410782714,34628.01486453446,2344.356515973629 -3218,4012,7232,-9,7231,7233,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.694143776183,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,689.75,904877.2441383254,712781.7167174242,271173.1410782714,34628.01486453446,2344.356515973629 -3218,4012,7233,7231,-9,-9,1,1,50,1,2,0,2,2,-9,0,3,8.331548475057023,8.299267673375725,0,5,21,8.751121787590478,0,2,2,2019,23,10,40,48,1,10,0,11.28720480166549,11.28720480166549,0,0,0,0,0,1,1,0,0,0,42.22,56.11,30.22,61.83,5,1,1,0,0,9,11,3,1,689.75,904877.2441383254,712781.7167174242,271173.1410782714,34628.01486453446,2344.356515973629 -3218,4012,7234,-9,7231,7233,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-890.8486980259812,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,689.75,904877.2441383254,712781.7167174242,271173.1410782714,34628.01486453446,2344.356515973629 -3219,4013,7235,7236,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.24029527568648,7.735097536016463,0,41,-11,-33.99974843860043,-9,3,3,2019,12,0,30,0,1,0,0,6.50266912639056,6.50266912639056,0,0,0,0,2,1,1,0,0,0,45.91,59.89,48.94,48.04,6.666666666666667,1,1,0,0,12,10,2,1,1085.5,160963.268247224,20284.31978317758,195784.8516635802,0,1564.992550155964 -3219,4013,7236,7235,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,1.89105650729382,1.632606706652973,41,11,-53.02544516387924,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.569533627963225,1.808858018387518,48.94,48.04,45.91,59.89,8.333333333333334,1,1,0,0,9,10,2,1,1085.5,160963.268247224,20284.31978317758,195784.8516635802,0,1564.992550155964 -3220,4014,7237,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.943988170781885,7.782686194874639,0,0,0,-1081.205003381923,0,2,-9,2019,12,0,16,16,1,0,0,14.69091533876766,14.69091533876766,0,0,0,0,0,1,1,0,2.921511619018506,0,48.87,58.55,-9,-9,5,1,1,0,0,11,9,3,1,1140,-26126.45938827423,-14938.66884899434,0,0,932.084792511003 -3221,4015,7238,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.616976407936021,7.425831057794191,0,0,-1048.029309934923,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.404834606614942,7.382171526936653,25.16,60.14,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,295,745905.3199545857,219180.2924981712,202727.9772182832,0,1609.740081474184 -3222,4016,7239,-9,7240,7241,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.4366537713095,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,437,-227.4277710665871,19290.39120876952,0,0,2288.751122408599 -3222,4016,7240,7241,-9,-9,1,0,33,1,1,0,2,2,-9,1,3,6.172530615600808,6.267867020778747,0,3,-7,-26.59021536231497,0,2,2,2019,12,2,9,0,1,2,0,6.743984340731005,6.743984340731005,0,0,0,0,0,1,1,0,0,0,38.82,51.26,66.05,43.88,8.333333333333334,1,1,0,0,6,2,4,1,437,-227.4277710665871,19290.39120876952,0,0,2288.751122408599 -3222,4016,7241,7240,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,8.580849172567552,8.704133845592859,0,3,7,30.19914899317691,0,-9,-9,2019,6,0,45,45,1,0,0,12.52623009676754,12.52623009676754,0,0,0,0,0,1,1,0,4.997940530460657,0,66.05,43.88,38.82,51.26,10,1,1,0,0,7,2,4,1,437,-227.4277710665871,19290.39120876952,0,0,2288.751122408599 -3223,4017,7242,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,3.277262500511274,3.357617290861407,0,0,-940.9889477409567,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.883437664631577,3.151255239737124,49.99,36.78,-9,-9,5,1,1,0,0,0,13,2,1,5306,268595.5008228743,-84540.0329809979,118309.9511929191,0,1006.532546645592 -3224,4018,7243,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1067.957265107668,0,3,2,2019,35,12,0,0,4,12,0,0,0,1,0,93.95340476045769,0,0,1,1,0,0,0,11.91,39.62,-9,-9,10,1,1,0,0,0,1,1,0,369,-144408.3252850993,0,0,0,1490.556548406832 -3225,4019,7244,-9,7245,7247,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.134573224206,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1758.25,745283.4612226649,256379.8835349979,678315.1847387519,315423.819973061,5072.049953737996 -3225,4019,7245,7247,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.26963536603681,7.492829252673689,0,15,0,110.7646549935979,0,2,3,2019,11,0,22,17,1,0,0,6.720740641522472,6.720740641522472,0,0,0,0,0,0,0,0,2.034397690062334,0,52.31,58.29,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,1758.25,745283.4612226649,256379.8835349979,678315.1847387519,315423.819973061,5072.049953737996 -3225,4019,7246,-9,7245,7247,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.4262760277929,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1758.25,745283.4612226649,256379.8835349979,678315.1847387519,315423.819973061,5072.049953737996 -3225,4019,7247,7245,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.407824636806128,9.756268309739859,0,10,0,-101.0977083212859,0,2,2,2019,7,0,40,42,1,0,0,44.25954280293019,44.25954280293019,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.31,58.29,8.333333333333334,1,1,0,0,13,9,5,1,1758.25,745283.4612226649,256379.8835349979,678315.1847387519,315423.819973061,5072.049953737996 -3226,4020,7248,7249,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,9.633661631122935,9.546441917398592,43,7,3.966562734782654,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,3.414086081278166,0,0,1,1,0,0,9.401455431557945,47.87,25.58,54.1,59.11,5,1,1,0,0,2,12,5,1,973.5,1986425.047519718,923130.3297158842,364697.4418253872,0,9396.999377278265 -3226,4020,7249,7248,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.080024385258012,7.757759841947637,43,-7,67.26903574881342,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,5.848042319128584,7.834499686423523,54.1,59.11,47.87,25.58,8.333333333333334,1,1,0,0,7,12,5,1,973.5,1986425.047519718,923130.3297158842,364697.4418253872,0,9396.999377278265 -3227,4021,7250,-9,7253,7252,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.114123516109,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,467,200350.6972424863,86000.13583896043,440836.1795594896,254872.3935163218,6649.058417141714 -3227,4021,7251,-9,7253,7252,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.169598672236,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,8,5,1,467,200350.6972424863,86000.13583896043,440836.1795594896,254872.3935163218,6649.058417141714 -3227,4021,7252,7253,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,9.119178927135772,9.226340160010581,0,14,0,-66.91906998997291,0,3,1,2019,8,0,35,37,1,0,0,27.98662627794734,27.98662627794734,0,0,0,0,2,1,1,0,0,0,57.33,53.46,32.11,51.15,1.666666666666667,2,3,0,0,10,8,5,1,467,200350.6972424863,86000.13583896043,440836.1795594896,254872.3935163218,6649.058417141714 -3227,4021,7253,7252,-9,-9,1,0,39,1,2,0,1,1,-9,0,2,8.705118965576363,8.753820640596009,0,14,0,-56.49142360528818,0,2,2,2019,29,10,38,38,1,10,0,22.39113395945243,22.39113395945243,0,0,0,0,0,1,1,0,1.550872823016339,0,32.11,51.15,57.33,53.46,1.666666666666667,2,3,0,0,9,8,5,1,467,200350.6972424863,86000.13583896043,440836.1795594896,254872.3935163218,6649.058417141714 -3228,4022,7254,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,7.532146487341824,7.321858946668975,0,0,-839.6543466541859,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.678356283778582,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,485,63902.7716808751,0,0,0,1968.590181147462 -3229,4023,7255,7256,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,7.095192313881915,7.396015696786489,0,7,-2,-39.12052740185679,0,3,3,2019,14,2,28,27,1,2,0,5.710202934763188,5.710202934763188,0,0,0,0,0,1,1,0,0,0,33.16,56.54,32.69,53.19,3.333333333333333,1,1,0,0,9,6,3,1,1316.25,309196.9666002615,120372.1036113778,328737.4015052715,54601.78411040029,3112.459421583116 -3229,4023,7256,7255,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.820130358463041,8.726405031494831,0,7,2,-31.00856872810905,0,2,2,2019,6,1,41,35,1,1,0,15.57890642695329,15.57890642695329,0,0,0,0,0,1,1,0,0,0,32.69,53.19,33.16,56.54,8.333333333333334,1,1,0,0,9,6,3,1,1316.25,309196.9666002615,120372.1036113778,328737.4015052715,54601.78411040029,3112.459421583116 -3229,4023,7257,-9,7255,7256,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-981.290655493677,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1316.25,309196.9666002615,120372.1036113778,328737.4015052715,54601.78411040029,3112.459421583116 -3229,4023,7258,-9,7255,7256,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.645951978286,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,6,3,1,1316.25,309196.9666002615,120372.1036113778,328737.4015052715,54601.78411040029,3112.459421583116 -3229,4024,7259,-9,-9,-9,1,1,70,0,3,0,3,3,-9,0,5,0,6.978395228517211,6.817717897735098,0,0,-877.2847470685849,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.985459445651431,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,745,468940.4720070523,158524.891099139,131388.2896779205,0,1600.618055517672 -3230,4025,7260,7262,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.601776357944264,9.651261051385138,0,14,0,104.6065753239103,0,1,2,2019,12,0,40,40,1,0,0,48.69858584631555,48.69858584631555,0,0,0,0,0,1,1,0,0,0,40.48,60.05,43.37,49.25,8.333333333333334,4,5,0,0,9,2,5,1,1361,263023.219923904,56790.28812794814,229123.7467445863,136427.9855077448,16155.22708074218 -3230,4025,7261,-9,7262,7260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.949925805679,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,2,5,1,1361,263023.219923904,56790.28812794814,229123.7467445863,136427.9855077448,16155.22708074218 -3230,4025,7262,7260,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,9.482074532659466,9.753988560186768,0,14,0,97.09619102365114,0,1,1,2019,13,3,9,9,1,3,0,187.4561250948424,187.4561250948424,0,0,0,0,0,1,1,0,0,0,43.37,49.25,40.48,60.05,8.333333333333334,4,5,0,0,10,2,5,1,1361,263023.219923904,56790.28812794814,229123.7467445863,136427.9855077448,16155.22708074218 -3230,4025,7263,-9,7262,7260,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.506477488589,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,2,5,1,1361,263023.219923904,56790.28812794814,229123.7467445863,136427.9855077448,16155.22708074218 -3231,4026,7264,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.88428871860391,8.926090192897048,0,0,0,-953.986693089951,0,2,3,2019,11,0,42,52,1,0,0,20.84244640805133,20.84244640805133,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,1021,692398.8222176194,197071.9066837287,357448.0287377781,47720.01498807826,2656.698890389697 -3232,4027,7265,-9,-9,-9,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-999.3096825893148,-9,3,3,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,5,2,3,1,1,1,7,1,1,146,0,0,0,0,0 -3232,4028,7266,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1001.814992909111,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,30.58,52.76,-9,-9,6.666666666666667,2,3,0,1,0,7,1,1,413,62750.16772742199,0,0,0,0 -3233,4029,7267,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,5.183710838164628,5.575522603943273,0,0,-869.4172777136162,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.387385445517294,5.192931340499816,47,49,-9,-9,7,1,1,0,1,5,7,2,0,1144,39840.38297771625,32434.295278055,0,0,1826.894340435825 -3234,4030,7268,7269,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,7.104411101647337,7.009071327228387,0,6,-10,174.9265522847438,0,-9,-9,2019,6,1,40,40,1,1,0,5.060860296018967,5.060860296018967,0,0,0,0,0,1,1,0,0,0,55.09,55.87,45.81,61.51,10,1,1,0,0,8,8,3,1,947,1522311.46957002,412581.7755017686,932788.1578615831,0,1665.686899849513 -3234,4030,7269,7268,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,7.485049589952305,7.210581423681166,0,6,10,22.32423040161114,0,1,1,2019,13,2,40,40,1,2,0,4.581152854848484,4.581152854848484,0,0,0,0,0,1,1,0,2.65844509490953,0,45.81,61.51,55.09,55.87,8.333333333333334,1,1,0,0,8,8,3,1,947,1522311.46957002,412581.7755017686,932788.1578615831,0,1665.686899849513 -3234,4030,7270,-9,7268,7269,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.6486609499427,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,1.95799236449931,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,1,947,1522311.46957002,412581.7755017686,932788.1578615831,0,1665.686899849513 -3235,4031,7271,7275,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.236244412809492,6.948501853802687,0,13,-1,-100.3168613311987,0,2,3,2019,8,0,4,10,1,0,0,37.89883466444044,37.89883466444044,0,0,0,0,71.5,1,1,0,0,0,52.27,58.55,51,57,8.333333333333334,1,1,0,0,4,13,2,0,965.6,77764.26975040761,0,126696.9166126926,83312.17437483575,2336.243868604844 -3235,4031,7272,-9,7271,7275,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.0604923734945,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,965.6,77764.26975040761,0,126696.9166126926,83312.17437483575,2336.243868604844 -3235,4031,7273,-9,7271,7275,1,0,16,0,2,0,3,3,-9,0,5,0,0,0,0,0,-990.6627373504659,-9,2,3,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.618129815963587,0,48.9,61.62,-9,-9,1.666666666666667,1,1,1,0,0,13,2,0,965.6,77764.26975040761,0,126696.9166126926,83312.17437483575,2336.243868604844 -3235,4031,7274,-9,7271,7275,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.088819668909,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,965.6,77764.26975040761,0,126696.9166126926,83312.17437483575,2336.243868604844 -3235,4031,7275,7271,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,6.931882404908024,6.690190652845906,0,8,1,-108.5395831678342,0,-9,-9,2019,10,0,50,20,1,1,0,2.621850881921486,2.621850881921486,0,0,0,0,2,1,1,0,0,0,51,57,52.27,58.55,7,1,1,0,0,3,13,2,0,965.6,77764.26975040761,0,126696.9166126926,83312.17437483575,2336.243868604844 -3236,4032,7276,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,6.233557951363184,5.806838886429682,0,0,-1032.276597399935,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,5.969361601105332,34.88,28.71,-9,-9,3.333333333333333,1,1,0,0,10,9,2,1,213,138078.8049724801,170464.692537767,328426.5220798683,117098.8283428815,520.7469657996648 -3237,4033,7277,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.048721613732299,7.763765016008389,0,0,0,-1113.299787424548,0,2,1,2019,5,0,42,42,1,0,0,7.972177404426251,7.972177404426251,0,0,0,0,0,1,1,0,0,0,59.96,57.78,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,154,626932.4415967227,436764.7412429051,213506.4774385107,12630.34981484101,1721.502892480615 -3238,4034,7278,7279,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.486239268293374,8.614605928380715,0,14,0,5.518491637792224,0,2,2,2019,7,0,41,43,1,0,0,12.88593382355105,12.88593382355105,0,0,0,0,0,0,0,0,1.162890094219537,0,54.2,57.49,18.86,55.42,8.333333333333334,1,1,0,0,8,7,5,1,392.5,182296.5945516096,126494.7990795318,0,0,3125.09953863293 -3238,4034,7279,7278,-9,-9,1,0,34,0,0,0,2,2,-9,0,1,8.144031789482751,8.229211573361582,0,14,0,-32.79758383514542,0,2,3,2019,13,4,37,43,1,4,0,9.196842879982855,9.196842879982855,0,0,0,0,0,0,0,0,1.101638854212169,0,18.86,55.42,54.2,57.49,1.666666666666667,1,1,0,0,7,7,5,1,392.5,182296.5945516096,126494.7990795318,0,0,3125.09953863293 -3239,4035,7280,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.212391409048038,8.142900662020663,0,0,0,-1086.293992227348,0,-9,-9,2019,11,0,37,37,1,0,0,9.736352808108052,9.736352808108052,0,0,0,0,0,0,0,0,1.781922962866425,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,720,-139111.9460090398,32386.26456733343,0,0,1145.477868897082 -3240,4036,7281,7282,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.633222663797424,8.785730804963752,48,2,114.4324719752686,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.960410821813193,8.630805668018681,66.23999999999999,35.52,62.27,42.94,8.333333333333334,1,1,0,0,0,9,4,1,1307.5,742451.8827147977,465377.7553723343,298365.8465888509,0,4142.284130050622 -3240,4036,7282,7281,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,6,-2,42.14752243612867,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.970794718144288,0,62.27,42.94,66.23999999999999,35.52,10,1,1,0,0,0,9,4,1,1307.5,742451.8827147977,465377.7553723343,298365.8465888509,0,4142.284130050622 -3241,4037,7283,7284,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.818604039057588,7.246739267132023,9,2,92.86158633878415,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.097426695359669,7.680037558201472,40.56,50.59,58.62,39.16,8.333333333333334,1,1,0,0,0,7,3,1,431.5,894306.4588033881,631946.5256009626,311971.1593936202,0,3240.169051428307 -3241,4037,7284,7283,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.529432189069704,7.038004695630271,9,-2,2.037446415677358,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.456411011991974,58.62,39.16,40.56,50.59,5,1,1,0,0,0,7,3,1,431.5,894306.4588033881,631946.5256009626,311971.1593936202,0,3240.169051428307 -3242,4038,7285,-9,7287,7288,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.805720244519,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,823,201223.6297180186,-21040.62151346428,228104.3419993708,129579.6684904967,2454.596613467495 -3242,4038,7286,-9,7287,7288,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.688435429131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,823,201223.6297180186,-21040.62151346428,228104.3419993708,129579.6684904967,2454.596613467495 -3242,4038,7287,7288,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.814545424867936,7.634488901862698,0,11,-3,-48.13616299342108,0,3,1,2019,7,0,35,33,1,0,0,7.20234885670252,7.20234885670252,0,0,0,0,0,1,1,0,0,0,54.79,55.86,43.54,59.6,10,1,1,0,0,9,1,3,1,823,201223.6297180186,-21040.62151346428,228104.3419993708,129579.6684904967,2454.596613467495 -3242,4038,7288,7287,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.21259281409387,8.523615484898899,0,10,3,-24.72387821312579,0,2,2,2019,5,0,50,48,1,0,0,9.368138920492887,9.368138920492887,0,0,0,0,0,1,1,0,0,0,43.54,59.6,54.79,55.86,10,1,1,0,0,9,1,3,1,823,201223.6297180186,-21040.62151346428,228104.3419993708,129579.6684904967,2454.596613467495 -3243,4039,7289,7290,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.619533550303553,8.720525378790732,0,30,0,62.95629431170501,0,2,2,2019,11,0,50,30,1,0,0,15.93277568105599,15.93277568105599,0,0,0,0,0,0,0,0,3.136997224174607,0,49.35,59.64,50.67,34.02,6.666666666666667,1,1,0,0,9,10,5,0,1005.5,1064113.166656582,784452.5560727392,197434.9088499447,0,3002.889219003856 -3243,4039,7290,7289,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.323535859203163,6.830172847222447,0,30,0,-56.6067147327274,0,2,3,2019,9,1,30,20,1,1,0,5.805914046855241,5.805914046855241,0,0,0,0,0,0,0,0,4.505871972075016,0,50.67,34.02,49.35,59.64,8.333333333333334,1,1,0,0,10,10,5,0,1005.5,1064113.166656582,784452.5560727392,197434.9088499447,0,3002.889219003856 -3243,4040,7291,-9,7289,7290,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1084.356526049508,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,375,-43269.64967928311,0,0,0,202.2632986711114 -3244,4041,7292,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.781970055494552,6.836086087697508,0,0,-1030.436739729805,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.150641309196172,7.195151341736346,60.14,44.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,604,122772.4043510578,153565.8336709263,162777.5009808202,0,1039.605504289511 -3245,4042,7293,7294,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.00669568430885,9.202338635412978,0,17,1,-26.09986828739336,0,2,1,2019,11,1,43,43,1,1,0,20.18026855560727,20.18026855560727,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.49,57.57,8.333333333333334,1,1,0,0,10,12,5,1,778.5,1117276.780469081,778787.5278028972,213191.9361928287,189337.2704420199,5010.571827472952 -3245,4042,7294,7293,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.719011172347169,8.8646192796067,0,17,-1,-94.72744465560507,0,1,1,2019,7,0,40,36,1,0,0,18.57162829970082,18.57162829970082,0,0,0,0,0,0,0,0,7.049525943775539,0,51.49,57.57,54.2,57.49,8.333333333333334,1,1,0,0,9,12,5,1,778.5,1117276.780469081,778787.5278028972,213191.9361928287,189337.2704420199,5010.571827472952 -3245,4042,7295,-9,7294,7293,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.2042076131448,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,778.5,1117276.780469081,778787.5278028972,213191.9361928287,189337.2704420199,5010.571827472952 -3245,4042,7296,-9,7294,7293,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.324029236101,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,778.5,1117276.780469081,778787.5278028972,213191.9361928287,189337.2704420199,5010.571827472952 -3246,4043,7297,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,6.33031410523315,6.26985580074325,0,0,-1150.286051680766,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.511842215068221,6.550212621184194,50.56,39.12,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,288,90422.8059000912,-15977.28776916508,0,0,921.3509401055428 -3247,4044,7298,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,0,0,0,0,0,-902.1575454832883,0,2,2,2019,12,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.66,39.05,-9,-9,3.333333333333333,1,1,0,0,9,6,1,1,84,0,0,0,0,48.09754414117612 -3248,4045,7299,7300,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.093011963312879,9.094299337181157,0,1,-4,78.75442754415471,0,2,1,2019,22,10,45,46,1,10,0,22.30119669682423,22.30119669682423,0,0,0,0,0,0,0,0,3.456580268376356,0,40.3,55.69,57.16,56.15,6.666666666666667,1,1,0,0,10,2,5,1,407,109660.1831800465,0,263765.9095140771,146498.8803925857,4581.311742614718 -3248,4045,7300,7299,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.019037864759728,7.999951423722136,1,4,-18.58982149918448,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.541996490791304,7.752989061209052,57.16,56.15,40.3,55.69,8.333333333333334,1,1,0,0,0,2,5,1,407,109660.1831800465,0,263765.9095140771,146498.8803925857,4581.311742614718 -3248,4046,7301,-9,-9,7300,1,1,23,0,0,0,1,1,-9,0,4,7.772546344294268,7.331030950801511,0,0,0,-1076.133306648771,-9,-9,2,2019,4,0,44,0,1,0,0,5.933701019352243,5.933701019352243,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,5,1,1,0,0,2,2,3,1,494,74355.83396468665,-27631.46163053517,0,0,1434.717018627135 -3248,4047,7302,-9,-9,7300,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-878.7269586545858,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,560,131861.1740070919,0,0,0,357.6025661431697 -3249,4048,7303,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.233027028506051,5.436383447851586,0,0,-1077.870813817027,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.340590497948115,0,0,1,1,0,0,5.334181580596792,49.45,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1022,601732.0978667511,0,420586.1166125723,0,708.8365312362473 -3250,4049,7304,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,5.490645593924764,5.481214687531293,0,0,-1012.4810133636,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.436211296091249,5.86080926754875,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,721,711266.9301510395,0,269258.382336236,0,1195.18434677991 -3251,4050,7305,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.199466676936288,8.063272494174722,0,0,0,-980.5404694102753,0,2,2,2019,6,0,42,82,1,0,0,12.05950623071545,12.05950623071545,0,0,0,0,0,1,1,0,5.755969856854433,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,659,368638.5759237487,102950.1401440701,200722.5174472482,-14440.441421655,2161.072425477853 -3252,4051,7306,-9,7309,7307,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.892152070693,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,907.25,181587.171874406,18830.41745679409,384696.9848172815,255902.9426152286,6675.595288977405 -3252,4051,7307,7309,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,9.230365343837578,9.258790724701127,0,9,2,-5.263012184251926,0,-9,-9,2019,18,6,42,40,1,6,0,36.21904677091172,36.21904677091172,0,0,0,0,0,0,0,0,7.341800140043164,0,28.29,60.36,46.8,57.03,6.666666666666667,1,1,0,0,11,9,5,1,907.25,181587.171874406,18830.41745679409,384696.9848172815,255902.9426152286,6675.595288977405 -3252,4051,7308,-9,7309,7307,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.603978478138,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,907.25,181587.171874406,18830.41745679409,384696.9848172815,255902.9426152286,6675.595288977405 -3252,4051,7309,7307,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.587268314605554,8.656830074438501,0,9,-2,-4.380617113888182,0,3,3,2019,10,2,39,0,1,2,0,13.87734255816972,13.87734255816972,0,0,0,0,0,0,0,0,0,0,46.8,57.03,28.29,60.36,8.333333333333334,2,3,0,0,4,9,5,1,907.25,181587.171874406,18830.41745679409,384696.9848172815,255902.9426152286,6675.595288977405 -3253,4052,7310,7313,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,8.625130538075183,8.806203075975045,0,4,-1,24.62154389187036,0,-9,-9,2019,11,0,50,37,1,2,0,12.82579058607124,12.82579058607124,0,0,0,0,0,1,1,0,2.96003020428556,0,47,52,42.19,59.15,7,2,3,0,0,0,11,4,1,659.25,104248.449000201,167967.9688743819,210366.918630899,136809.8563382251,3613.274436787802 -3253,4052,7311,-9,7313,7310,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-825.7076590619065,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,4,1,659.25,104248.449000201,167967.9688743819,210366.918630899,136809.8563382251,3613.274436787802 -3253,4052,7312,-9,7313,7310,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.449668059841,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,4,1,659.25,104248.449000201,167967.9688743819,210366.918630899,136809.8563382251,3613.274436787802 -3253,4052,7313,7310,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,7.057437372966374,7.291216063646323,0,4,1,43.07708843161214,0,3,3,2019,9,1,16,20,1,1,0,10.09589408470313,10.09589408470313,0,0,0,0,0,1,1,0,7.245100930979165,0,42.19,59.15,47,52,3.333333333333333,4,2,0,0,7,11,4,1,659.25,104248.449000201,167967.9688743819,210366.918630899,136809.8563382251,3613.274436787802 -3254,4053,7314,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,6.974406269116799,6.853245579510063,0,0,0,-919.5819846802269,0,2,2,2019,7,0,16,16,1,0,0,7.664002851903049,7.664002851903049,0,0,0,0,42,1,1,0,1.399763582489184,0,55.79,52.62,-9,-9,10,3,4,0,0,7,8,2,0,695.3333333333334,120367.2072491847,0,0,0,2273.783952740541 -3254,4053,7315,-9,7314,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.113844280376,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,695.3333333333334,120367.2072491847,0,0,0,2273.783952740541 -3254,4053,7316,-9,7314,-9,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1018.032847156918,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,695.3333333333334,120367.2072491847,0,0,0,2273.783952740541 -3254,4054,7317,-9,7314,-9,1,1,27,0,1,0,2,2,-9,0,3,7.576507036041046,7.696458105868123,0,0,0,-1042.315646527733,0,2,-9,2019,9,0,40,35,1,0,1,5.113389213834254,5.113389213834254,0,0,0,0,0,1,1,0,0,0,45.43,53.5,-9,-9,6.666666666666667,1,1,0,0,4,8,3,0,2456,14698.00054411294,0,0,0,1287.279099021099 -3255,4055,7318,7320,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.161824296346156,8.136868833620525,0,14,-8,17.04034532949704,0,3,3,2019,11,0,37,40,1,0,0,8.724621944059685,8.724621944059685,0,0,0,0,0,1,1,0,0,0,51.41,56.15,56.92,46.71,8.333333333333334,1,1,0,0,9,1,4,1,819.6666666666666,-34820.92075338016,52673.47067573623,0,0,2919.876463623601 -3255,4055,7319,-9,7318,7320,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.6394771606123,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,819.6666666666666,-34820.92075338016,52673.47067573623,0,0,2919.876463623601 -3255,4055,7320,7318,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.383403020841422,8.064302635587321,0,15,8,21.67587374724724,0,2,2,2019,9,0,47,40,1,0,0,7.771559484320854,7.771559484320854,0,0,0,0,0,1,1,0,0,0,56.92,46.71,51.41,56.15,8.333333333333334,1,1,0,0,9,1,4,1,819.6666666666666,-34820.92075338016,52673.47067573623,0,0,2919.876463623601 -3256,4056,7321,-9,7323,7324,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.436814991063,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,615,252277.5868524133,77475.27888468704,273614.4980103779,0,3070.139103544408 -3256,4056,7322,-9,7323,7324,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.8623072150418,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,615,252277.5868524133,77475.27888468704,273614.4980103779,0,3070.139103544408 -3256,4056,7323,7324,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.072810609780678,7.06560044366859,0,15,-8,58.54000951084354,0,2,2,2019,6,0,22,23,1,0,0,7.410025688906914,7.410025688906914,0,0,0,0,0,1,1,0,.68123850585488,0,54.79,55.86,54.96,53.17,8.333333333333334,1,1,0,0,7,10,4,1,615,252277.5868524133,77475.27888468704,273614.4980103779,0,3070.139103544408 -3256,4056,7324,7323,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.871573253138608,8.820106378018076,0,15,8,-24.01838834174426,0,1,2,2019,9,0,55,45,1,0,0,12.68544089947209,12.68544089947209,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.79,55.86,8.333333333333334,1,1,0,0,9,10,4,1,615,252277.5868524133,77475.27888468704,273614.4980103779,0,3070.139103544408 -3257,4057,7325,7326,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,20,1,129.819678669153,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,7.660885925551008,0,52,54.51,49.04,55.86,5,1,1,0,0,7,9,5,1,228.5,1602037.632039749,634213.4616057707,937900.7857812574,247773.1614430718,9749.599548204 -3257,4057,7326,7325,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.752020149958833,9.755878206205528,0,20,-1,90.86884218678571,0,2,3,2019,11,1,53,53,1,1,0,42.13468548920675,42.13468548920675,0,0,0,0,7,0,0,0,8.469345944150152,0,49.04,55.86,52,54.51,6.666666666666667,1,1,0,0,12,9,5,1,228.5,1602037.632039749,634213.4616057707,937900.7857812574,247773.1614430718,9749.599548204 -3257,4058,7327,-9,7325,7326,1,0,24,0,0,0,1,1,-9,0,4,8.050946855523614,8.430490101801634,0,0,0,-929.2787716318506,0,2,2,2019,10,2,42,0,1,2,1,12.81246859842856,12.81246859842856,0,0,0,0,7,0,0,0,2.55827926366048,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,1673,239045.3182006274,50651.34111040478,203668.2195177199,104478.0055285673,1646.306681145506 -3257,4059,7328,-9,7325,7326,1,0,20,0,0,0,2,2,1,0,3,7.415906179411116,7.912162074193524,6.959159397772914,0,0,-986.3289581923691,-9,2,1,2019,7,0,36,0,1,0,1,4.631507848834068,4.631507848834068,0,0,0,0,7,0,0,0,7.310292796224694,0,52,54.51,-9,-9,10,1,1,0,0,3,9,3,1,597,9960.136659862108,-36944.08136524377,0,0,1111.891387763616 -3258,4060,7329,-9,7331,7330,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-900.3300517491743,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,704.6666666666666,111635.4564070391,30738.57285392001,99473.88487019164,104271.4098329978,1465.839308950002 -3258,4060,7330,7331,-9,-9,1,1,28,1,1,0,2,2,-9,0,2,7.709842629266154,7.610332521077938,0,2,4,13.94949616389334,0,-9,-9,2019,12,1,37,38,1,1,0,6.055438878851757,6.055438878851757,0,0,0,0,0,1,1,0,0,0,36.89,55.12,31.74,41.13,5,1,1,0,0,4,13,3,0,704.6666666666666,111635.4564070391,30738.57285392001,99473.88487019164,104271.4098329978,1465.839308950002 -3258,4060,7331,7330,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,0,0,2,-4,7.167977808480905,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,31.74,41.13,36.89,55.12,8.333333333333334,1,1,0,1,0,13,3,0,704.6666666666666,111635.4564070391,30738.57285392001,99473.88487019164,104271.4098329978,1465.839308950002 -3259,4061,7332,7334,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.934054378374398,8.744486059351635,0,19,4,-4.74923273885406,0,2,2,2019,16,4,60,64,1,4,0,14.62588379940287,14.62588379940287,0,0,0,0,0,0,0,0,4.650706774780116,0,34.48,61.03,50.65,52.44,6.666666666666667,1,1,0,0,11,8,5,1,744.5,2225410.827867419,102840.9748812504,1721847.046362347,245711.9057806855,9050.134786795978 -3259,4061,7333,-9,7332,7334,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.833033502899,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,744.5,2225410.827867419,102840.9748812504,1721847.046362347,245711.9057806855,9050.134786795978 -3259,4061,7334,7332,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.813433736474048,9.69510742196641,0,21,-4,11.9749104328161,0,2,1,2019,9,0,50,60,1,0,0,36.49177788417872,36.49177788417872,0,0,0,0,0,0,0,0,0,0,50.65,52.44,34.48,61.03,5,4,2,0,0,11,8,5,1,744.5,2225410.827867419,102840.9748812504,1721847.046362347,245711.9057806855,9050.134786795978 -3259,4061,7335,-9,7332,7334,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.945536147429,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,744.5,2225410.827867419,102840.9748812504,1721847.046362347,245711.9057806855,9050.134786795978 -3260,4062,7336,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.645762874643293,7.605327298761033,0,0,0,-1044.696503287727,0,3,3,2019,23,11,21,20,1,11,0,11.82193676907705,11.82193676907705,0,0,0,0,7,0,0,0,0,0,38.74,51.06,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,1566,41469.7903538479,92422.64113860042,38673.34795042665,61517.71505697207,878.7377153048858 -3261,4063,7337,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.475769769227904,7.672006934705725,0,0,-1124.722722386578,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.578605732600839,7.69117670188998,61.68,49.95,-9,-9,10,1,1,0,0,4,10,3,1,396,368874.2380521906,309497.7723760482,0,0,1748.974848827074 -3262,4064,7338,7340,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.977017668144333,8.839217922702208,0,6,0,-21.12839317764248,0,2,2,2019,7,0,37,36,1,0,0,25.20632178253663,25.20632178253663,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.49,42.78,10,1,1,0,0,7,13,4,1,617,746319.7323151622,559898.546582458,190086.554073377,18408.98788835785,2531.375119887487 -3262,4064,7339,-9,7340,7338,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.3250608792731,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,617,746319.7323151622,559898.546582458,190086.554073377,18408.98788835785,2531.375119887487 -3262,4064,7340,7338,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,0,0,0,6,0,-147.0628962409013,0,3,2,2019,13,1,0,26,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,42.78,54.2,57.49,3.333333333333333,1,1,0,0,6,13,4,1,617,746319.7323151622,559898.546582458,190086.554073377,18408.98788835785,2531.375119887487 -3263,4065,7341,7342,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.46160422603802,8.026851155827469,0,2,-3,89.2552419535279,0,1,1,2019,15,5,39,47,1,5,0,11.42697671689583,11.42697671689583,0,0,0,0,0,0,0,0,2.871703420670019,0,35.78,55.1,54.1,59.11,6.666666666666667,1,1,0,0,7,4,5,1,764.5,1873.373890778421,-12332.63058737641,205153.2341859885,166321.3639217117,3955.401219037448 -3263,4065,7342,7341,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.615687109824448,9.079815817937183,0,2,3,44.13485399638408,0,-9,-9,2019,9,0,43,45,1,0,0,17.59659906973273,17.59659906973273,0,0,0,0,0,0,0,0,0,0,54.1,59.11,35.78,55.1,8.333333333333334,1,1,0,0,10,4,5,1,764.5,1873.373890778421,-12332.63058737641,205153.2341859885,166321.3639217117,3955.401219037448 -3264,4066,7343,7344,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.128974964398574,7.678854081245416,0,2,12,28.82837675801651,0,-9,-9,2019,11,0,40,0,1,0,0,5.261591376944383,5.261591376944383,0,0,0,0,0,1,1,0,0,0,39.91,46.56,49.52,55.68,5,1,1,0,1,1,4,3,0,120.5,434475.1519993684,101777.9483634622,207639.8107604334,-5205.695475366227,1393.069794238911 -3264,4066,7344,7343,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.39010604624291,7.543641302878654,0,2,-12,-177.4214708311299,0,-9,-9,2019,8,0,47,0,1,0,0,4.059487820950832,4.059487820950832,0,0,0,0,0,1,1,0,0,0,49.52,55.68,39.91,46.56,8.333333333333334,1,1,0,0,1,4,3,0,120.5,434475.1519993684,101777.9483634622,207639.8107604334,-5205.695475366227,1393.069794238911 -3265,4067,7345,7348,-9,-9,1,0,37,0,2,0,1,1,-9,1,1,0,0,0,10,-1,-97.68942779117842,0,2,2,2019,15,2,0,2,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,51.83,57.2,3.333333333333333,1,1,0,1,6,12,2,0,2446,37574.56113406204,41792.3632384084,82514.93219394823,68686.01437829055,1115.590363760804 -3265,4067,7346,-9,7345,7348,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.7278945270184,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,2,0,2446,37574.56113406204,41792.3632384084,82514.93219394823,68686.01437829055,1115.590363760804 -3265,4067,7347,-9,7345,7348,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.232198399101,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,0,2446,37574.56113406204,41792.3632384084,82514.93219394823,68686.01437829055,1115.590363760804 -3265,4067,7348,7345,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.494674659059984,7.648751985950156,0,10,1,81.68695112846486,0,2,2,2019,8,0,38,38,1,0,0,6.223229265209053,6.223229265209053,0,0,0,0,14.5,1,1,0,0,0,51.83,57.2,27.89,18.61,5,1,1,0,0,12,12,2,0,2446,37574.56113406204,41792.3632384084,82514.93219394823,68686.01437829055,1115.590363760804 -3266,4068,7349,7351,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,0,0,0,7,-1,-5.007545284178342,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,57.93,22.16,53.89,5,1,1,0,1,0,5,3,1,275.6666666666667,-3281.45907212935,2329.554539321791,0,0,1585.982957460116 -3266,4068,7350,-9,7349,7351,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.070887692284,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,275.6666666666667,-3281.45907212935,2329.554539321791,0,0,1585.982957460116 -3266,4068,7351,7349,-9,-9,1,1,27,0,1,0,3,3,-9,0,2,7.930732957372226,8.049064702011291,0,7,1,-204.054006995021,0,-9,-9,2019,16,4,40,43,1,4,0,8.016145219982675,8.016145219982675,0,0,0,0,0,1,1,0,0,0,22.16,53.89,19.42,57.93,3.333333333333333,1,1,0,0,8,5,3,1,275.6666666666667,-3281.45907212935,2329.554539321791,0,0,1585.982957460116 -3267,4069,7352,7353,-9,-9,1,0,54,1,1,0,3,3,-9,0,2,7.616080471190996,8.080241235702436,7.383372352380857,3,-4,-45.36302741690317,0,2,2,2019,14,5,22,30,1,5,0,9.404620824753925,9.404620824753925,0,0,0,0,0,1,1,0,0,7.234008299398902,45.51,48.29,51.16,48.01,6.666666666666667,1,1,0,0,8,9,5,1,1004,215837.1964656797,47775.33775851806,290644.4600957337,163292.25492784,3630.809621602231 -3267,4069,7353,7352,-9,-9,1,1,58,1,1,0,3,3,-9,0,3,8.280286745468793,8.740103628346352,7.261417770162501,3,4,8.421087703418548,0,-9,-9,2019,13,4,40,40,1,4,0,14.91987861819543,14.91987861819543,0,0,0,0,0,1,1,0,4.548726359748907,7.660221298539872,51.16,48.01,45.51,48.29,8.333333333333334,1,1,0,0,4,9,5,1,1004,215837.1964656797,47775.33775851806,290644.4600957337,163292.25492784,3630.809621602231 -3267,4070,7354,-9,7355,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.9215803246054,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,3108,34649.05730320601,0,0,0,1422.539960030822 -3267,4070,7355,-9,7352,-9,1,0,20,1,1,0,2,2,-9,0,2,6.4237989036308,6.254894970286757,0,0,0,-997.8698941495277,0,3,-9,2019,11,0,16,13,1,0,1,3.604024418009582,3.604024418009582,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,3108,34649.05730320601,0,0,0,1422.539960030822 -3268,4071,7356,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.92995952002054,7.764975007441448,0,0,0,-1135.530179331507,0,2,2,2019,25,7,35,34,1,7,0,9.694523310741829,9.694523310741829,0,0,0,0,0,0,0,0,0,0,27.03,60.81,-9,-9,0,1,1,0,0,11,2,4,1,207,17796.48778332996,-9907.713114798198,0,0,1933.234653073363 -3269,4072,7357,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.8329994080576,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,3.622420244731515,5.817688475872444,51.52046206934492,0,1,1,0,0,0,38.99,33.73,-9,-9,5,1,1,0,0,0,13,1,0,808,171247.6199267347,0,103425.4951605643,0,1588.941705386003 -3270,4073,7358,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,3.336271323784154,3.195505118482729,0,0,-942.3090822522909,0,2,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,3.069073994533409,59.48,22.69,-9,-9,5,1,1,0,0,0,9,2,0,490,236820.4324871788,0,189056.0522916734,0,-80.28912053881368 -3271,4074,7359,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1039.923193286174,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.563694235854869,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,291,-67230.92390558418,0,0,0,787.0657576889134 -3272,4075,7360,-9,7361,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.8089064956923,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,415,-2420.625457394246,0,0,0,707.1504106076537 -3272,4075,7361,-9,-9,-9,1,0,23,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1142.957882248152,-9,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,8.550000000000001,45.3,-9,-9,0,1,1,1,1,4,5,1,0,415,-2420.625457394246,0,0,0,707.1504106076537 -3273,4076,7362,7363,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.214861993814089,7.360187544994503,0,7,0,43.31990259122558,0,2,2,2019,10,0,20,20,1,0,0,10.38233282877733,10.38233282877733,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,531,67222.03788850611,17066.91400011527,0,0,1889.535188593873 -3273,4076,7363,7362,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,7.685922240504484,7.524606321588865,0,7,0,-38.54967813302693,0,-9,-9,2019,7,0,48,42,1,0,0,5.510920583608759,5.510920583608759,0,0,0,0,2,1,1,0,1.363573124457246,0,57.16,56.15,46.16,58.62,8.333333333333334,1,1,0,0,4,10,3,1,531,67222.03788850611,17066.91400011527,0,0,1889.535188593873 -3273,4076,7364,-9,7362,7363,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.32078959421,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,531,67222.03788850611,17066.91400011527,0,0,1889.535188593873 -3274,4077,7365,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1067.047937262167,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.66,18.61,-9,-9,10,1,1,0,0,0,4,1,0,2194,-149271.031531336,0,0,0,983.5734330105771 -3275,4078,7366,7367,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.88369114235518,7.939212879351201,0,22,-4,19.39749039531435,0,3,3,2019,6,0,37,40,1,0,0,7.387097697223894,7.387097697223894,0,0,0,0,2,1,1,0,0,0,56.74,52.23,36.44,26.71,5,2,3,0,0,10,2,3,1,496,120642.7832094983,138282.5425294184,0,0,1564.021220970284 -3275,4078,7367,7366,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,22,4,-189.6157089980551,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,36.44,26.71,56.74,52.23,5,2,3,0,1,5,2,3,1,496,120642.7832094983,138282.5425294184,0,0,1564.021220970284 -3275,4079,7368,-9,7367,7366,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-884.2918641754986,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,41.95,37.91,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,122,136644.6179266495,0,0,0,-175.2605951216968 -3275,4080,7369,-9,7367,7366,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1004.531462099433,-9,1,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,49.97,56.66,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1423,-210320.462486852,0,0,0,0 -3276,4081,7370,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.938601091880666,8.431201974742223,6.716973944051102,0,0,-1109.797529680583,0,-9,-9,2019,6,1,37,37,1,1,0,7.862931799072095,7.862931799072095,0,0,0,0,0,1,1,0,7.100656318174584,0,53.61,39.14,-9,-9,5,2,3,0,0,7,7,3,1,408.5,204576.7910625326,0,194637.9294899999,0,2430.716179431771 -3276,4081,7371,-9,7370,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.612784659773,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.673192968135206,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,7,3,1,408.5,204576.7910625326,0,194637.9294899999,0,2430.716179431771 -3277,4082,7372,7373,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.200106354861983,7.991069665379413,0,3,-2,99.87111740110051,0,-9,-9,2019,8,1,44,0,1,1,0,10.21025398660005,10.21025398660005,0,0,0,0,0,0,0,0,0,0,50.51,53.71,23.3,63.85,8.333333333333334,1,1,0,0,5,10,5,0,446.5,5305.193709869447,42548.92858598922,0,0,2906.267151888349 -3277,4082,7373,7372,-9,-9,1,0,26,0,0,0,1,1,1,0,4,8.280610270584262,8.265279241268322,0,3,2,30.92171934536404,-9,-9,-9,2019,20,8,68,0,1,8,0,6.429356106354089,6.429356106354089,0,0,0,0,0,0,0,0,0,0,23.3,63.85,50.51,53.71,6.666666666666667,1,1,0,0,1,10,5,0,446.5,5305.193709869447,42548.92858598922,0,0,2906.267151888349 -3278,4083,7374,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.751853522644963,7.618778865474311,0,0,0,-950.8308720151535,0,-9,-9,2019,10,0,60,45,1,0,0,5.281250607929529,5.281250607929529,0,0,0,0,0,0,0,0,0,0,38.4,60.75,-9,-9,3.333333333333333,1,1,0,0,9,1,3,1,1110,2983.066983141038,126849.7842882406,0,0,1494.831789384463 -3279,4084,7375,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.055486862091991,7.322504489563179,5.329799815712249,0,0,-1028.248389422045,0,3,3,2019,10,1,20,20,1,1,0,8.063524528525809,8.063524528525809,0,0,0,0,0,1,1,0,.397714555833526,5.390218173919725,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,2365,210127.8187397949,140769.6775230868,122378.6610014376,0,421.1136179425283 -3280,4085,7376,7377,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.425732329271396,9.315237770381611,0,9,3,-64.30085367025896,0,-9,-9,2019,27,10,60,55,1,10,0,17.33606912616769,17.33606912616769,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.23,55.6,3.333333333333333,1,1,0,0,12,8,5,1,244.5,1896817.003120612,135025.947607761,819434.439268653,454010.2707088314,5883.89185325932 -3280,4085,7377,7376,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.82682504971781,8.695566635255211,0,9,-3,10.40797662263466,0,2,2,2019,12,2,44,41,1,2,0,13.68950315931945,13.68950315931945,0,0,0,0,0,0,0,0,0,0,52.23,55.6,49.27,56.95,8.333333333333334,4,2,0,0,10,8,5,1,244.5,1896817.003120612,135025.947607761,819434.439268653,454010.2707088314,5883.89185325932 -3281,4086,7378,-9,7379,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-781.7771785011997,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,435.5,-27296.74221250582,0,0,0,1193.592740397908 -3281,4086,7379,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,6.60633751141418,7.047597871183846,0,0,0,-973.7616473274219,0,3,3,2019,11,0,18,20,1,0,0,5.920752448779066,5.920752448779066,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,435.5,-27296.74221250582,0,0,0,1193.592740397908 -3282,4087,7380,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,8.171891314493662,8.223500523145729,0,0,-1080.598011323905,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,13.37866036952157,5.604685766014498,132.4904017791177,0,1,1,0,0,8.071088876091242,53,45,-9,-9,8,4,2,0,0,0,4,4,0,1325,827720.6149281937,268575.018988432,276175.9520787544,0,3091.949308704357 -3283,4088,7381,7382,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.988427592598632,5.761781280652036,39,0,50.07828747589597,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.448011934728515,5.718947248660629,53.85,42.72,52.46,53.11,8.333333333333334,1,1,0,0,1,9,3,1,222,1585333.419544244,410985.6067214783,674673.648452692,0,2018.381083814177 -3283,4088,7382,7381,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.287403671589922,7.454986499635337,39,0,-33.88184979087568,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.603801621490388,7.204683758587069,52.46,53.11,53.85,42.72,8.333333333333334,1,1,0,0,4,9,3,1,222,1585333.419544244,410985.6067214783,674673.648452692,0,2018.381083814177 -3284,4089,7383,7384,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.386830799973007,8.635866748710038,24,8,38.39283283358889,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.31066459250477,8.337735218659603,55.09,55.87,52.91,55.33,8.333333333333334,1,1,0,0,0,9,5,1,590.5,761242.8921326043,679846.0485555655,286551.2634340539,0,5671.546593447672 -3284,4089,7384,7383,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.301979940972732,8.249941790658951,31,-8,-119.6681673554313,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.092108492246977,8.388088104780312,52.91,55.33,55.09,55.87,6.666666666666667,1,1,0,0,0,9,5,1,590.5,761242.8921326043,679846.0485555655,286551.2634340539,0,5671.546593447672 -3285,4090,7385,7386,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,5,-2,1.974944749566644,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.049820309169168,0,62.27,48.47,56.1,49.93,8.333333333333334,1,1,0,0,0,2,2,1,287,358608.8196811052,170293.2174110022,145497.7892785542,0,2010.152867259197 -3285,4090,7386,7385,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.958560798870344,6.954514087415634,5,2,98.18036758544966,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.753768832822952,7.020184232995998,56.1,49.93,62.27,48.47,8.333333333333334,1,1,0,0,0,2,2,1,287,358608.8196811052,170293.2174110022,145497.7892785542,0,2010.152867259197 -3286,4091,7387,7388,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.304442524470899,8.003968450534847,0,15,0,-10.46672097985074,0,3,3,2019,7,0,49,49,1,0,0,7.628404963075435,7.628404963075435,0,0,0,0,0,0,0,0,0,0,59.43,58.05,51.14,60.45,8.333333333333334,1,1,0,0,11,9,5,1,766,668316.1229149702,192822.0093937894,323431.3988993291,15782.19547511293,6897.325656974535 -3286,4091,7388,7387,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.285489901643642,9.428701492154273,6.798717489590357,15,0,-102.8852171472716,0,3,2,2019,12,0,40,40,1,0,0,36.97512737133925,36.97512737133925,0,0,0,0,0,0,0,0,0,7.044466974827233,51.14,60.45,59.43,58.05,5,1,1,0,0,8,9,5,1,766,668316.1229149702,192822.0093937894,323431.3988993291,15782.19547511293,6897.325656974535 -3286,4092,7389,-9,7387,7388,1,0,20,0,0,0,2,2,-9,0,2,7.596844645947712,7.831520852641288,0,0,0,-1010.232151337241,0,1,1,2019,9,1,35,35,1,1,1,9.148335393501171,9.148335393501171,0,0,0,0,0,0,0,0,0,0,44.08,54.61,-9,-9,6.666666666666667,1,1,0,0,6,9,3,1,126,211943.2126825571,0,0,0,1495.716585103368 -3287,4093,7390,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.301848627598526,6.293652201173181,0,0,-1003.213295800174,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.444064971400113,6.085480010816966,61.68,21.41,-9,-9,10,1,1,0,0,0,10,2,1,321,333811.5504475182,30747.19691370353,310095.8135251975,34764.26459032091,336.2395836355109 -3288,4094,7391,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,7.529211876447685,7.836591835809255,0,0,-971.5621192206073,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.370125115034226,7.538869681494344,48.07,41.21,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,279,489224.7825078266,100923.9680998079,135917.822835555,0,2660.254096153755 -3289,4095,7392,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-949.7605273407917,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,67.18000000000001,43.5,-9,-9,10,1,1,0,0,0,12,1,0,251,-73410.49747110432,0,0,0,1454.428514541563 -3290,4096,7393,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.688419711201083,8.756453553743043,0,0,0,-1043.914589541884,0,2,2,2019,6,0,58,50,1,0,0,12.15193801297657,12.15193801297657,0,0,0,0,14.5,0,0,0,0,0,32.83,51.48,-9,-9,8.333333333333334,3,4,0,0,9,8,5,0,1819,659410.1479706338,523227.7895799236,282253.5171375232,120340.2608494906,2902.064238259638 -3291,4097,7394,7395,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.538962227622223,8.638397934476654,0,9,-5,-6.674934845849345,0,2,1,2019,6,0,35,25,1,0,0,15.51683016245497,15.51683016245497,0,0,0,0,0,0,0,0,1.073544369993117,0,55.14,50.76,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,341,201883.4796760184,179845.6952949488,111109.813871036,86105.12293505222,3017.309730216843 -3291,4097,7395,7394,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.201660802223309,8.24736413343855,0,9,5,-98.7537858380818,0,-9,-9,2019,5,0,32,32,1,0,0,13.86893464008353,13.86893464008353,0,0,0,0,0,0,0,0,.7045122294641504,0,57.16,56.15,55.14,50.76,10,1,1,0,0,11,9,5,1,341,201883.4796760184,179845.6952949488,111109.813871036,86105.12293505222,3017.309730216843 -3292,4098,7396,-9,7397,7398,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-946.876819037674,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,13,13,5,1,2041.666666666667,271714.4936646257,208793.1781160827,271930.0820940633,252879.4123020981,38607.8460730958 -3292,4098,7397,7398,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,8.282507751069902,8.023955538141061,0,21,4,77.05524802669848,0,1,2,2019,7,0,24,24,1,0,0,16.78911700934945,16.78911700934945,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,12,13,5,1,2041.666666666667,271714.4936646257,208793.1781160827,271930.0820940633,252879.4123020981,38607.8460730958 -3292,4098,7398,7397,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.572891393341804,9.599393682613698,0,22,-4,35.07884771163894,0,2,1,2019,7,0,37,37,1,0,0,41.49884216239472,41.49884216239472,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,13,13,5,1,2041.666666666667,271714.4936646257,208793.1781160827,271930.0820940633,252879.4123020981,38607.8460730958 -3292,4099,7399,-9,7397,7398,1,1,23,0,2,0,2,2,-9,0,4,7.082572685132069,6.736625211998754,0,0,0,-1044.850272991121,0,2,2,2019,11,0,37,37,1,2,1,4.063862557578349,4.063862557578349,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,1,13,2,1,524,-68679.76907388857,-1483.251622407747,0,0,899.9456725112732 -3292,4100,7400,-9,7397,7398,1,1,18,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1052.883275944975,0,2,2,2019,12,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,202,159298.7032871003,0,0,0,356.4315459111726 -3293,4101,7401,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.348856406031411,6.934878704064529,0,0,-1036.138508245341,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.204015803737895,40.87,52.46,-9,-9,5,1,1,0,0,0,11,3,1,1516,705998.3415493731,178312.5784541015,192188.8607820148,0,1306.673551078922 -3294,4102,7402,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.541633843979581,7.51798302099406,0,0,0,-1037.807525795459,0,3,2,2019,8,0,40,27,1,0,0,5.402929706823599,5.402929706823599,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,320.5,-60614.88146052261,-27983.93789797307,0,0,1792.182434635376 -3294,4102,7403,-9,7402,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.4456541094569,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,320.5,-60614.88146052261,-27983.93789797307,0,0,1792.182434635376 -3295,4103,7404,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,4.953826867541526,6.436747689782908,5.885540362273987,0,0,-1034.885309517059,0,2,1,2019,17,5,15,18,1,5,0,1.891219547030003,1.891219547030003,0,0,0,0,2,1,1,0,4.86675439262735,6.025126907804281,48.57,45.28,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,256,1187975.106340328,-19375.69497982544,574927.7762600434,0,425.8965055652585 -3296,4104,7405,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,5.898291706942245,5.785104966105257,0,0,-1009.385884546963,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.793982596175114,49,48,-9,-9,7,2,3,0,1,0,2,2,1,832,988795.8548414758,76817.84451640767,404602.3978493374,0,604.6953050708189 -3296,4105,7406,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,0,0,0,0,0,-960.0719580317625,-9,-9,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,0,2,3,0,1,0,2,1,1,234,17414.68716352392,0,0,0,601.0201188437463 -3297,4106,7407,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.522457483255533,8.759062317789013,0,0,0,-1026.342378996578,0,2,-9,2019,10,0,38,38,1,1,0,19.32435695413767,19.32435695413767,0,0,0,0,7,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,10,9,4,0,951.3333333333334,790323.825835406,571468.7420918586,417625.7678456685,155649.7431808745,2382.929670329735 -3297,4106,7408,-9,7407,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1096.652110698017,-9,1,-9,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,18.27,67.29000000000001,-9,-9,5,4,2,0,0,1,9,4,0,951.3333333333334,790323.825835406,571468.7420918586,417625.7678456685,155649.7431808745,2382.929670329735 -3297,4106,7409,-9,7407,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.017427499649,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,4,0,951.3333333333334,790323.825835406,571468.7420918586,417625.7678456685,155649.7431808745,2382.929670329735 -3298,4107,7410,-9,7411,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.125738914633,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,500,18467.85830321248,0,0,0,1122.222882226407 -3298,4107,7411,-9,-9,-9,1,0,54,0,2,0,1,1,-9,0,5,2.782605356132866,6.395759447930665,6.576810048226137,0,0,-878.1786466833104,0,2,1,2019,10,2,10,5,1,2,0,.147297678941112,.147297678941112,0,0,0,0,0,1,1,0,6.394045036639501,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,7,12,2,1,500,18467.85830321248,0,0,0,1122.222882226407 -3298,4107,7412,-9,7411,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1009.975336794796,-9,1,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,500,18467.85830321248,0,0,0,1122.222882226407 -3299,4108,7413,7414,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-4,59.97420883700411,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,41.69,25.64,7,1,1,0,0,0,9,3,1,739,719926.6878143194,439400.0474823464,226256.9960952388,0,2474.447511245517 -3299,4108,7414,7413,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.905987907321504,7.748818327519277,45,4,59.98052769114872,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.833199368695296,7.846011804916729,41.69,25.64,50,47,3.333333333333333,1,1,0,0,0,9,3,1,739,719926.6878143194,439400.0474823464,226256.9960952388,0,2474.447511245517 -3300,4109,7415,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.836926315856615,6.013090377208367,0,0,-958.3184356520078,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.955712789849846,6.00912743308334,51.41,56.15,-9,-9,8.333333333333334,3,4,0,1,10,8,2,1,1401,727001.9396807112,309000.0884638425,312487.1101756826,0,1359.522626186253 -3301,4110,7416,7417,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.063760479199209,8.645630757599145,0,9,6,-171.5591341364613,0,2,2,2019,12,1,38,35,1,1,0,25.10209789496093,25.10209789496093,0,0,0,0,0,0,0,0,8.103896633962222,0,54.9,54.53,56.94,49.53,8.333333333333334,1,1,0,0,13,8,5,1,557.5,505098.150902042,223579.1304499095,343489.1004267095,138313.1597948916,7576.568164736529 -3301,4110,7417,7416,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.750758555014924,8.949007058944879,0,9,-6,22.74475694548622,0,-9,-9,2019,1,0,40,42,1,0,0,19.44086128081926,19.44086128081926,0,0,0,0,0,0,0,0,7.547776649916758,0,56.94,49.53,54.9,54.53,8.333333333333334,1,1,0,0,8,8,5,1,557.5,505098.150902042,223579.1304499095,343489.1004267095,138313.1597948916,7576.568164736529 -3302,4111,7418,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.372158333167169,8.900861561736455,8.153385026189751,0,0,-955.77642120681,0,3,3,2019,11,0,15,15,1,0,0,11.77953150751163,11.77953150751163,0,0,0,0,0,1,1,0,6.783623488907195,8.525727020439966,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,1280,163432.660076582,10939.44251833655,157149.2665738658,0,3485.712422304491 -3303,4112,7419,-9,-9,-9,1,0,37,0,4,0,3,3,-9,0,5,6.578765890380686,6.2747187075865,0,0,0,-959.8157565072123,0,-9,-9,2019,9,1,8,7,1,1,0,10.63176598196298,10.63176598196298,0,0,0,0,0,1,1,0,0,0,67.25,28.36,-9,-9,6.666666666666667,3,4,0,1,3,8,2,0,815,31482.24271922778,35166.46177699957,0,0,1622.051792113313 -3303,4112,7420,-9,7419,-9,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1050.822124783863,-9,3,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,3,4,-9,0,0,8,2,0,815,31482.24271922778,35166.46177699957,0,0,1622.051792113313 -3303,4112,7421,-9,7419,-9,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.983569007591,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,815,31482.24271922778,35166.46177699957,0,0,1622.051792113313 -3303,4112,7422,-9,7419,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-889.7121964314747,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,-9,0,0,8,2,0,815,31482.24271922778,35166.46177699957,0,0,1622.051792113313 -3303,4112,7423,-9,7419,-9,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1038.541430476621,-9,3,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,3,4,-9,0,0,8,2,0,815,31482.24271922778,35166.46177699957,0,0,1622.051792113313 -3304,4113,7424,7425,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,2,11,-57.7323752117629,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,49.81,49.59,46.23,10,1,1,0,0,0,13,2,1,306,375716.5859095061,174986.4990443126,137612.21765368,0,1688.70743851659 -3304,4113,7425,7424,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.112916168522032,6.914162791300686,0,2,-11,33.39934701013914,0,3,3,2019,15,3,15,20,1,3,0,10.86446617327656,10.86446617327656,0,0,0,0,0,1,1,0,8.695703452138385,0,49.59,46.23,59.31,49.81,3.333333333333333,1,1,0,1,13,13,2,1,306,375716.5859095061,174986.4990443126,137612.21765368,0,1688.70743851659 -3305,4114,7426,7427,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.583213068554733,8.413312544954083,7.304273978830319,34,10,-15.74061803305699,0,3,2,2019,9,0,15,15,1,0,0,18.44370747878644,18.44370747878644,0,0,0,0,0,1,1,0,2.823864254116883,7.362276413792186,60.29,52.11,51.24,58.84,5,1,1,0,0,9,8,5,1,248.5,569562.9115058694,42679.05378948175,392250.1282060418,0,5250.554528857268 -3305,4114,7427,7426,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.002089535515042,8.807544640633328,0,7,-10,-131.0356867716887,0,-9,-9,2019,4,0,15,15,1,0,0,54.78727474819242,54.78727474819242,0,0,0,0,0,1,1,0,0,0,51.24,58.84,60.29,52.11,8.333333333333334,2,3,0,0,8,8,5,1,248.5,569562.9115058694,42679.05378948175,392250.1282060418,0,5250.554528857268 -3305,4115,7428,-9,7427,7426,1,0,27,0,0,0,2,2,-9,0,1,7.084371456135095,7.024652934704844,0,0,0,-1096.925607776531,0,1,1,2019,18,6,40,3,1,6,1,4.150602082130992,4.150602082130992,0,0,0,0,0,1,1,0,3.616746306795763,0,44.51,36.43,-9,-9,3.333333333333333,4,2,0,0,4,8,3,1,257,7026.885081462232,0,0,0,576.4950227945607 -3305,4116,7429,-9,7427,7426,1,1,24,0,0,0,1,1,-9,0,4,7.171239184289004,7.27350348406881,0,0,0,-1067.559538778236,0,1,1,2019,11,0,50,22,1,0,1,3.063500974736773,3.063500974736773,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,5,4,2,0,0,3,8,3,1,1084,-101122.8700504942,113871.6559479989,0,0,958.9914078224081 -3306,4117,7430,7431,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,5,-2,-83.11446842010933,0,-9,-9,2019,17,4,0,53,4,4,0,0,0,0,0,0,0,0,0,0,0,6.827237542169969,0,47.53,52.22,58.21,35.45,1.666666666666667,2,3,0,0,12,6,3,1,1314.5,868285.0659534436,202315.6544554272,369961.0423577012,0,2026.57089901652 -3306,4117,7431,7430,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.933623479334595,7.85417797978848,39,2,160.0993653606492,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.388598772015329,8.304998083950911,58.21,35.45,47.53,52.22,8.333333333333334,2,3,0,0,8,6,3,1,1314.5,868285.0659534436,202315.6544554272,369961.0423577012,0,2026.57089901652 -3306,4118,7432,-9,7430,7431,1,0,36,0,0,0,1,1,-9,0,4,8.444787721257686,8.59698239597089,0,0,0,-931.6848513006712,0,2,2,2019,12,0,30,30,1,0,0,24.50264114663646,24.50264114663646,0,0,0,0,0,0,0,0,5.850985479708489,0,27.81,65.69,-9,-9,0,2,3,0,0,11,6,5,1,522,376772.8394627362,27101.95225512589,162870.306073988,76876.07345872038,2506.598454812295 -3307,4119,7433,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.435295156752842,8.668563320802877,0,0,0,-952.2011436109858,0,1,1,2019,8,1,45,40,1,1,0,12.2595320320378,12.2595320320378,0,0,0,0,0,0,0,0,0,0,52.77,58.29,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,545,-47185.69509711197,60450.1508241887,0,0,1347.141522437153 -3308,4120,7434,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.560700246196032,6.809470974904031,0,0,-974.7398615132663,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.233233038898912,62.1,51.16,-9,-9,10,1,1,0,0,0,12,2,0,1009,202439.6613342359,120403.7312579433,0,0,1361.512239499549 -3309,4121,7435,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.279782222601099,8.648050957531753,0,0,-1118.78465980601,0,3,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.723790209393619,8.193551836066167,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,1273,1055336.880839478,824248.8689146794,307240.3907549497,69329.5263292931,2446.923007230175 -3310,4122,7436,7438,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.701681018670286,8.644074273653237,0,7,-4,-28.35229705986171,0,-9,-9,2019,7,0,45,50,1,0,0,19.69825512100465,19.69825512100465,0,0,0,0,0,0,0,0,7.925100027408193,0,51.14,60.45,51.24,58.84,8.333333333333334,1,1,0,0,9,12,4,1,241,656597.8295745036,452894.8005742469,138840.817624732,72466.31246457387,3305.661606418278 -3310,4122,7437,-9,7438,7436,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-807.4039201412119,-9,1,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1.563027466142254,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,241,656597.8295745036,452894.8005742469,138840.817624732,72466.31246457387,3305.661606418278 -3310,4122,7438,7436,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,0,0,0,7,4,-35.59011154996858,0,1,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,3.168184929713787,0,51.24,58.84,51.14,60.45,8.333333333333334,1,1,0,0,10,12,4,1,241,656597.8295745036,452894.8005742469,138840.817624732,72466.31246457387,3305.661606418278 -3311,4123,7439,-9,7441,7440,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-967.531138634641,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,1189.666666666667,164843.7794132483,106848.8240173945,237528.5455886679,114994.7478241439,2834.89999630212 -3311,4123,7440,7441,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.067816534428658,8.127181897021549,0,5,1,-35.94549848942962,0,2,2,2019,5,0,37,37,1,0,0,9.629002207444708,9.629002207444708,0,0,0,.5578384379112435,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,2,5,1,1189.666666666667,164843.7794132483,106848.8240173945,237528.5455886679,114994.7478241439,2834.89999630212 -3311,4123,7441,7440,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,9.097070394669098,8.842169959278539,0,5,-1,44.70171513042542,0,-9,-9,2019,6,0,38,37,1,0,0,23.0774753234568,23.0774753234568,0,0,0,0,0,1,1,0,2.142291456910107,0,62.39,56.71,62.39,56.71,10,1,1,0,0,7,2,5,1,1189.666666666667,164843.7794132483,106848.8240173945,237528.5455886679,114994.7478241439,2834.89999630212 -3312,4124,7442,7443,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.891242810826585,8.579345420002984,42,0,60.59339511239655,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.949781441599059,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,165.5,2053889.092443376,1308861.595658122,251003.896400577,0,2668.958847320122 -3312,4124,7443,7442,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,0,113.6094076328073,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,0,5,4,1,165.5,2053889.092443376,1308861.595658122,251003.896400577,0,2668.958847320122 -3313,4125,7444,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.251733884945792,7.433985903074928,0,0,-1028.079252049755,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.429044999242308,58.24,30.37,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,1212,171552.5973886222,391491.5054606496,0,0,1170.434175134111 -3314,4126,7445,7446,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.150643426360728,6.049439963086014,7,1,46.23976808334486,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.301322626607963,6.300631607543211,53.87,53.44,55.29,43.33,6.666666666666667,1,1,0,0,4,13,2,1,185.5,503851.373625867,350428.17096141,126740.6859184119,0,858.7535957615028 -3314,4126,7446,7445,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.814402930672006,7.092248983481981,7,-1,-128.1676709938059,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.098401824708445,7.054242889613495,55.29,43.33,53.87,53.44,8.333333333333334,1,1,0,0,4,13,2,1,185.5,503851.373625867,350428.17096141,126740.6859184119,0,858.7535957615028 -3315,4127,7447,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-952.8294654339802,0,3,2,2019,25,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,41.67,33.58,-9,-9,3.333333333333333,1,1,0,1,2,1,1,1,2503,-173009.8678364917,0,0,0,338.0369294387012 -3315,4128,7448,-9,7447,-9,1,0,25,0,0,0,2,2,-9,0,5,7.940535467493584,7.963484264754638,0,0,0,-1102.302098236169,0,3,3,2019,9,0,42,40,1,0,0,8.59948657635454,8.59948657635454,0,0,0,0,27,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,622,-111355.405717586,0,0,0,1370.072509559352 -3316,4129,7449,7450,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.634575310773148,7.588898039226986,52,-3,11.79943006737948,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,0,7.455015228770942,57.32,29.18,44.4,17.69,8.333333333333334,1,1,0,0,0,5,2,1,387,609199.4799779236,310795.1154208896,110701.2476307862,0,2244.121446018419 -3316,4129,7450,7449,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,5.617564382390897,5.649723571765771,52,3,-138.9653719890046,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,50.73073553220114,0,0,1,1,0,0,5.933139803057885,44.4,17.69,57.32,29.18,6.666666666666667,1,1,0,0,0,5,2,1,387,609199.4799779236,310795.1154208896,110701.2476307862,0,2244.121446018419 -3316,4130,7451,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.348121429313576,8.442093144876123,0,0,0,-1065.276529123828,-9,3,-9,2019,10,0,40,0,1,1,0,9.575360352250369,9.575360352250369,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,40,93278.4086639153,65975.53384299022,0,0,1386.15069383433 -3317,4131,7452,7453,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.398771964714486,7.125110423581329,0,8,-2,-29.59158848585201,0,3,3,2019,12,0,22,22,1,0,0,7.124609324725999,7.124609324725999,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50,49,8.333333333333334,1,1,0,0,9,13,4,1,848.5,121667.5493070317,69634.35870450237,0,0,2285.749988553947 -3317,4131,7453,7452,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.233493919194142,8.085568305209634,0,8,2,-103.8295645951502,0,3,3,2019,10,0,25,-9,1,1,0,19.73510181521437,19.73510181521437,0,0,0,0,0,0,0,0,0,0,50,49,54.2,57.49,7,1,1,0,0,1,13,4,1,848.5,121667.5493070317,69634.35870450237,0,0,2285.749988553947 -3318,4132,7454,7455,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.863623809805373,8.847759851408906,6.265609455755849,6,-2,-99.4822318486262,0,-9,-9,2019,13,3,57,47,1,3,0,14.06244689964141,14.06244689964141,0,0,0,0,0,0,0,0,6.310610236283352,0,52.31,58.29,42.33,14.89,8.333333333333334,1,1,0,0,7,6,5,1,1135,-106342.373497691,0,0,0,4246.588234142788 -3318,4132,7455,7454,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,8.263220881195087,8.405689329979523,0,6,2,-8.661815822481369,0,2,-9,2019,17,6,40,42,1,6,0,15.94156671233394,15.94156671233394,0,0,0,0,0,0,0,0,0,0,42.33,14.89,52.31,58.29,5,1,1,0,0,7,6,5,1,1135,-106342.373497691,0,0,0,4246.588234142788 -3319,4133,7456,7457,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.234884657314215,8.137501853618748,4.81342812635477,39,8,37.63327041746191,0,3,3,2019,12,0,50,50,1,0,0,9.924468947117957,9.924468947117957,0,0,0,0,0,0,0,0,4.601101414223487,4.917103074072746,45.41,26.72,34.93,44.99,3.333333333333333,1,1,0,0,10,5,3,1,552.5,65236.59545480664,7069.176361366888,153918.3871829864,0,1736.830484888266 -3319,4133,7457,7456,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,39,-8,-149.2897633174136,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.93,44.99,45.41,26.72,8.333333333333334,1,1,0,0,4,5,3,1,552.5,65236.59545480664,7069.176361366888,153918.3871829864,0,1736.830484888266 -3319,4134,7458,-9,7457,7456,1,1,28,0,0,0,2,2,-9,0,5,7.79971577166013,7.772984311705822,0,0,0,-996.0985430264742,0,2,2,2019,4,1,39,42,1,1,1,10.55768275131067,10.55768275131067,0,0,0,0,0,0,0,0,.0627075927761796,0,57.06,57.76,-9,-9,10,1,1,0,0,7,5,4,1,323,-175985.6299615443,0,0,0,1370.867322304126 -3320,4135,7459,-9,7462,7461,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.012407443534,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,613.8,421848.135153181,383591.0096011029,51257.79363695255,43408.22230366417,4574.681894582066 -3320,4135,7460,-9,7462,7461,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.1331486761881,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,613.8,421848.135153181,383591.0096011029,51257.79363695255,43408.22230366417,4574.681894582066 -3320,4135,7461,7462,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.317355425288307,8.282740817505806,0,6,1,24.55029944369946,0,2,3,2019,7,0,44,41,1,0,0,12.08647928221711,12.08647928221711,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.79,41.89,8.333333333333334,1,1,0,0,6,13,4,1,613.8,421848.135153181,383591.0096011029,51257.79363695255,43408.22230366417,4574.681894582066 -3320,4135,7462,7461,-9,-9,1,0,45,0,3,0,1,1,-9,1,3,8.393459093003818,8.069047697969637,0,6,-1,-187.4359193499179,0,2,2,2019,13,1,30,30,1,1,0,12.2044088737294,12.2044088737294,0,0,0,0,0,1,1,0,7.157221790635414,0,46.79,41.89,57.33,53.46,6.666666666666667,1,1,0,0,6,13,4,1,613.8,421848.135153181,383591.0096011029,51257.79363695255,43408.22230366417,4574.681894582066 -3320,4135,7463,-9,7462,7461,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.582483239016,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,613.8,421848.135153181,383591.0096011029,51257.79363695255,43408.22230366417,4574.681894582066 -3321,4136,7464,-9,7466,7468,1,1,19,0,1,1,1,0,-9,0,3,0,0,0,0,0,-1028.920236842678,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,31.36,54.64,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,680,175468.4355325532,0,0,0,0 -3321,4137,7465,-9,7466,7468,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-995.7988477943283,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,1,0,820,0,0,0,0,0 -3321,4138,7466,7468,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.196026009656643,7.133347026351598,0,3,-15,-165.5309248700322,0,2,1,2019,10,2,40,40,1,2,0,4.853876095294804,4.853876095294804,0,0,0,0,0,1,1,0,0,0,35.82,49.44,50,49,3.333333333333333,2,3,0,0,7,8,3,0,261.6666666666667,411079.5122491461,-8703.208222893465,419510.3137058835,0,3402.769325489981 -3321,4138,7467,-9,7466,7468,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.948416704584,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,261.6666666666667,411079.5122491461,-8703.208222893465,419510.3137058835,0,3402.769325489981 -3321,4138,7468,7466,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.143338880726229,7.434699770009567,0,3,15,33.90655549926631,0,-9,-9,2019,10,0,24,24,1,1,0,7.970162555118438,7.970162555118438,0,0,0,0,0,1,1,0,1.883312704173798,0,50,49,35.82,49.44,7,2,3,0,0,2,8,3,0,261.6666666666667,411079.5122491461,-8703.208222893465,419510.3137058835,0,3402.769325489981 -3322,4139,7469,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.137809694838674,7.277541661453601,4.998319170936817,0,0,-1105.596362654128,0,2,2,2019,11,1,27,28,1,1,0,5.256527835226186,5.256527835226186,0,0,0,0,0,1,1,0,5.569987142287248,0,46.26,42.16,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,1509.5,82253.74963046541,44116.04933710193,0,0,1350.510747062384 -3322,4139,7470,-9,7469,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1074.477208369037,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,2,0,1509.5,82253.74963046541,44116.04933710193,0,0,1350.510747062384 -3323,4140,7471,-9,7475,7474,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.3957525632833,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,914.8,695647.9929913635,528884.1930351928,300392.4266217046,226238.8598729841,6180.416198617992 -3323,4140,7472,-9,7475,7474,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.8155538369094,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,914.8,695647.9929913635,528884.1930351928,300392.4266217046,226238.8598729841,6180.416198617992 -3323,4140,7473,-9,7475,7474,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-903.6040625544958,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,914.8,695647.9929913635,528884.1930351928,300392.4266217046,226238.8598729841,6180.416198617992 -3323,4140,7474,7475,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.538231112870248,9.555724310603809,0,8,2,113.3250376861368,0,-9,-9,2019,9,0,35,35,1,1,0,63.43566874818388,63.43566874818388,0,0,0,0,0,0,0,0,0,0,51,56,49.8,56.68,7,1,1,0,0,1,12,5,1,914.8,695647.9929913635,528884.1930351928,300392.4266217046,226238.8598729841,6180.416198617992 -3323,4140,7475,7474,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.874192453719383,8.184524204135554,0,14,-2,-20.78513893213438,0,-9,-9,2019,3,0,28,0,1,0,0,11.85051960866734,11.85051960866734,0,0,0,0,0,0,0,0,0,0,49.8,56.68,51,56,8.333333333333334,1,1,0,0,3,12,5,1,914.8,695647.9929913635,528884.1930351928,300392.4266217046,226238.8598729841,6180.416198617992 -3324,4141,7476,7477,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,6.446702462479224,6.540582948398848,8,4,-18.22896209056581,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.768588253087111,6.540740742527929,58.66,16.32,51.83,57.2,5,1,1,0,0,1,10,3,1,490.5,943208.8837952821,418575.8879985362,88289.34228834561,0,2481.777232184038 -3324,4141,7477,7476,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.038394828894742,7.361085851974152,8,-4,62.1136278774012,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.290203255664322,6.941894995779727,51.83,57.2,58.66,16.32,8.333333333333334,1,1,0,0,1,10,3,1,490.5,943208.8837952821,418575.8879985362,88289.34228834561,0,2481.777232184038 -3325,4142,7478,7479,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.925418025314229,9.016723832455714,0,7,1,-100.4324084973417,0,2,2,2019,8,0,40,45,1,0,0,24.33579399689137,24.33579399689137,0,0,0,0,0,0,0,0,2.914489940832768,0,54,54,39.03,61.51,8,1,1,0,0,1,8,5,1,864.5,2313645.614249795,1093432.018460436,667881.2349594253,0,4157.858200425268 -3325,4142,7479,7478,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.659616273737138,8.625322818822244,0,30,-1,-94.27661123368362,0,2,1,2019,17,5,52,52,1,5,0,8.479492512543933,8.479492512543933,0,0,0,0,0,0,0,0,0,0,39.03,61.51,54,54,8.333333333333334,1,1,0,0,8,8,5,1,864.5,2313645.614249795,1093432.018460436,667881.2349594253,0,4157.858200425268 -3325,4143,7480,-9,7479,7478,1,0,24,0,0,0,2,2,-9,0,4,6.694853809811738,6.83016400691866,0,0,0,-1133.181158539974,-9,1,1,2019,11,0,35,0,1,2,1,2.781889556109241,2.781889556109241,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,8,2,1,2060,-161227.7748995599,28931.73990284406,0,0,352.1020686358572 -3325,4144,7481,-9,7479,7478,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-953.4580666426804,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.75,61.27,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,429,283756.5460669171,0,0,0,259.7971898476078 -3325,4145,7482,-9,7479,7478,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1004.781119520437,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,1,358,0,0,0,0,0 -3326,4146,7483,-9,7484,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1071.491811705828,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,3,0,245,37054.07802613665,0,0,0,2273.370309981128 -3326,4146,7484,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.596448496053846,7.836670973545887,5.183482349627059,0,0,-930.9222869781923,0,2,2,2019,10,0,16,16,1,0,0,15.40906729304459,15.40906729304459,0,0,0,0,0,1,1,0,5.227168376078383,0,50.36,52.77,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,245,37054.07802613665,0,0,0,2273.370309981128 -3327,4147,7485,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.495984005720794,8.464273112693192,0,0,0,-1115.006620429838,0,2,2,2019,18,6,38,42,1,6,0,17.67359671689719,17.67359671689719,0,0,0,0,0,0,0,0,0,0,32.47,55.44,-9,-9,6.666666666666667,3,4,0,0,10,8,5,1,824,732583.8656384249,-44905.81039840508,485307.7233395452,61095.03893770764,1604.586103644879 -3328,4148,7486,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-988.5446997708779,0,3,-9,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.790072924425122,0,23.43,55.25,-9,-9,0,1,1,0,0,0,10,1,0,2980,-43511.91558560138,0,40530.39304695073,19190.6377279173,1308.662748257388 -3329,4149,7487,7488,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.188103407386027,8.380266660736574,0,4,1,18.30929515960624,0,-9,-9,2019,10,0,37,37,1,0,0,13.14541191389968,13.14541191389968,0,0,0,0,0,1,1,0,2.346139892028256,0,51.41,56.15,27.06,63.25,6.666666666666667,4,5,0,0,4,10,5,1,424,327539.2010875037,130219.0569954531,500165.6354936415,269107.6663577656,5078.621055652352 -3329,4149,7488,7487,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,9.265650695474838,8.972544288853619,0,4,-1,155.4343468305829,0,1,1,2019,14,3,40,30,1,3,0,28.39440320136608,28.39440320136608,0,0,0,0,0,1,1,0,5.176683911503969,0,27.06,63.25,51.41,56.15,6.666666666666667,1,1,0,0,10,10,5,1,424,327539.2010875037,130219.0569954531,500165.6354936415,269107.6663577656,5078.621055652352 -3329,4149,7489,-9,7488,7487,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.1476034667762,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,424,327539.2010875037,130219.0569954531,500165.6354936415,269107.6663577656,5078.621055652352 -3330,4150,7490,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.527816030947274,7.241396239062341,0,0,0,-998.4893633128627,0,3,-9,2019,16,5,29,35,1,5,0,7.345647179027699,7.345647179027699,0,0,0,0,0,0,0,0,0,0,41.64,54.12,-9,-9,8.333333333333334,4,2,0,0,7,6,3,0,321,66172.88942756024,0,107058.1071381843,0,746.3385711915076 -3331,4151,7491,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.244974864030196,8.215202011057409,0,0,0,-998.5023600506129,0,2,3,2019,6,0,35,35,1,0,0,14.09379169893102,14.09379169893102,0,0,0,0,0,0,0,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,721,164479.3920061181,-43182.44601821632,179065.3153420462,51806.60422554384,2242.513855868277 -3332,4152,7492,7493,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.766340071245281,7.889616758233005,2.491803623297269,38,-5,50.27744596316966,0,2,2,2019,7,0,27,27,1,0,0,8.701874715218807,8.701874715218807,0,0,0,0,2,0,0,0,3.552312305941238,2.255095548999618,53.17,36.24,51,49,8.333333333333334,1,1,0,0,13,9,4,1,395,582704.561243769,219314.936698381,321754.4140762544,0,2246.011459880398 -3332,4152,7493,7492,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.631182683120982,7.783893336571316,38,5,46.72159386585416,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.565800090785686,7.561597251884278,51,49,53.17,36.24,8.333333333333334,1,1,0,0,0,9,4,1,395,582704.561243769,219314.936698381,321754.4140762544,0,2246.011459880398 -3332,4153,7494,-9,7492,7493,1,1,33,0,0,0,2,2,-9,0,3,7.981485610329267,7.833191736982952,0,0,0,-989.6996978232348,0,2,1,2019,5,0,37,5,1,0,1,7.749881220120818,7.749881220120818,0,0,0,0,0,0,0,0,0,0,60.83,46.31,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,2183,-297282.8742252656,-126757.038277247,0,0,695.0080914981432 -3333,4154,7495,7496,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,36,-1,-.3667313807118378,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,46.08,57.2,57.18,42.53,8.333333333333334,1,1,0,0,7,10,3,1,552,-68044.07041583638,200242.7181340847,0,0,3756.530238120984 -3333,4154,7496,7495,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.762402283069239,7.287910684126957,0,35,1,116.733099112965,0,2,2,2019,11,0,40,40,1,0,0,6.453741467966338,6.453741467966338,0,0,0,0,2,0,0,0,9.033751604516796,0,57.18,42.53,46.08,57.2,8.333333333333334,1,1,0,0,12,10,3,1,552,-68044.07041583638,200242.7181340847,0,0,3756.530238120984 -3333,4155,7497,7498,7495,7496,1,1,26,0,0,0,1,1,-9,0,3,8.591074708295508,9.080425065152859,0,1,1,3.839982338235025,0,2,2,2019,7,0,40,40,1,0,0,18.79544632694559,18.79544632694559,0,0,0,0,0,0,0,0,5.913767503862719,0,52,54.51,42.79,64.22,5,1,1,0,0,6,10,5,1,1551.5,119418.9238591458,111893.6140818913,181433.0565648161,94193.56196192262,3249.600546515001 -3333,4155,7498,7497,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.571217830553259,8.679637264184894,0,1,-1,-15.13961235117419,-9,-9,-9,2019,20,7,14,0,1,7,0,52.74823255776379,52.74823255776379,0,0,0,0,0,0,0,0,5.282216983925563,0,42.79,64.22,52,54.51,6.666666666666667,1,1,0,0,4,10,5,1,1551.5,119418.9238591458,111893.6140818913,181433.0565648161,94193.56196192262,3249.600546515001 -3333,4156,7499,-9,7495,7496,1,1,25,0,0,0,1,1,-9,0,3,7.851225804236064,8.065591659903506,0,0,0,-965.9576734579763,0,2,2,2019,11,3,50,22,1,3,1,6.85087047297177,6.85087047297177,0,0,0,0,0,0,0,0,0,0,45.93,52,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1509,-6864.681496352086,0,0,0,948.1299929927511 -3333,4157,7500,-9,7495,7496,1,0,22,0,0,0,2,2,-9,0,4,7.971890718485833,8.115177099974309,0,0,0,-1019.378157546002,0,2,2,2019,11,0,40,45,1,0,1,9.474370401851077,9.474370401851077,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,215,-79528.42194116104,73771.82313321577,0,0,1337.999458195337 -3334,4158,7501,7502,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.308049196040279,7.326738976764997,0,33,-13,-72.31472742241333,0,3,3,2019,6,0,60,60,1,0,0,2.30905007140229,2.30905007140229,0,0,0,0,0,0,0,0,0,0,47.35,62.06,53.13,35.09,8.333333333333334,1,1,0,0,12,5,3,1,1178,1130094.216045562,366661.9255490609,413814.3621784773,0,1840.87704080033 -3334,4158,7502,7501,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,7.284993184368153,6.929465200770849,0,33,13,135.8033328483722,0,3,3,2019,7,0,65,60,1,0,0,2.755730707850542,2.755730707850542,0,0,0,0,0,0,0,0,2.273081220579703,0,53.13,35.09,47.35,62.06,6.666666666666667,1,1,0,0,13,5,3,1,1178,1130094.216045562,366661.9255490609,413814.3621784773,0,1840.87704080033 -3335,4159,7503,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.043001271950438,6.988935602301626,5.174948887089532,0,0,-1067.42993194074,0,2,2,2019,12,0,16,16,1,0,0,5.524617728125504,5.524617728125504,0,0,0,0,0,1,1,0,5.262139599114006,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,7,7,2,1,1398,-202971.9851892081,0,0,0,2088.337761519237 -3336,4160,7504,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.224339471124491,8.776768141996778,0,0,0,-1023.022421666591,0,2,2,2019,9,1,37,37,1,1,0,13.21557651873662,13.21557651873662,0,0,0,0,0,0,0,0,1.953658205340665,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,188,233169.3646187363,114494.141946949,209305.0645980084,0,1727.685902083445 -3337,4161,7505,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.707645351387701,8.6964479322271,0,2,6,-105.3300926679265,0,3,3,2019,0,0,38,38,1,0,0,17.00138881275163,17.00138881275163,0,0,0,0,0,0,0,0,2.349150207374965,0,62.39,56.71,46.8,57.03,10,1,1,0,0,8,2,5,1,788,-96690.49235938405,8944.372777859509,118575.6237783084,94586.68404546642,2793.48786713763 -3337,4162,7506,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.44334244315883,8.511691174471975,0,2,-6,5.497789966669531,0,-9,-9,2019,8,1,43,38,1,1,0,10.65738695072059,10.65738695072059,0,0,0,0,0,0,0,0,3.104602150292,0,46.8,57.03,62.39,56.71,6.666666666666667,1,1,0,0,10,2,5,1,1078,46789.20780218732,12666.20764918654,0,0,1259.765691602431 -3338,4163,7507,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.019538748302056,7.922990731938258,5.74451296597265,0,0,-1013.592348743639,0,2,3,2019,9,1,38,38,1,1,0,9.157821886328577,9.157821886328577,0,0,0,0,14.5,1,1,0,6.196389955554269,0,55.55,32.42,-9,-9,6.666666666666667,1,1,0,0,4,7,3,0,2984.5,-65096.52872230519,0,0,0,3821.649293685315 -3338,4163,7508,-9,7507,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.423807858779,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,7,3,0,2984.5,-65096.52872230519,0,0,0,3821.649293685315 -3338,4164,7509,-9,-9,-9,1,0,19,0,2,0,2,2,-9,0,5,7.653035020609384,7.735154989846257,0,0,0,-835.0962954571211,0,-9,-9,2019,7,0,35,0,1,0,0,7.857998376743009,7.857998376743009,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,3,0,126,-38978.40123691667,0,0,0,995.2144071645848 -3339,4165,7510,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.077675956994145,7.304323008470726,5.359448056293772,0,0,-1116.48044446537,0,3,3,2019,6,0,22,22,1,0,0,7.507585210430974,7.507585210430974,0,0,0,0,0,0,0,0,0,5.673250976635513,50.65,50.1,-9,-9,8.333333333333334,1,1,0,0,11,13,3,0,527,156082.1672024917,0,38105.34471294522,0,1566.979950098248 -3340,4166,7511,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.675610515561281,6.6954591750795,0,0,-1031.822700030029,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.508058868393277,6.153538527941526,59.31,49.81,-9,-9,0,1,1,0,0,1,7,2,0,241,619598.0126344744,220127.6424715335,413276.5425987964,0,703.2877097557265 -3341,4167,7512,7513,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.310146931974214,7.476475674954548,8,0,-109.5875963687637,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,10.91914186227577,0,0,1,1,0,0,7.619957824755367,57.92,51.82,47.98,50.58,5,1,1,0,0,1,12,3,1,1072,934624.2173707567,481165.5763602183,233035.1417315547,0,1938.063611665905 -3341,4167,7513,7512,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,0,-52.20377108955564,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.98,50.58,57.92,51.82,1.666666666666667,1,1,0,0,0,12,3,1,1072,934624.2173707567,481165.5763602183,233035.1417315547,0,1938.063611665905 -3342,4168,7514,7515,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,7.50475406567136,7.873019442749404,0,8,-1,-59.46032941675286,0,-9,3,2019,11,0,30,30,1,0,0,6.846252508598302,6.846252508598302,0,0,0,0,0,1,1,0,0,0,39.16,36.57,51.62,47.75,8.333333333333334,1,1,0,1,9,7,4,1,252.5,871575.5714412351,223702.2397815639,362590.2277360257,0,3451.316094977537 -3342,4168,7515,7514,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.98354378240733,8.015533832710613,0,8,1,-9.403304293281908,0,3,3,2019,6,0,40,55,1,0,0,8.821275236831461,8.821275236831461,0,0,0,0,0,1,1,0,0,0,51.62,47.75,39.16,36.57,6.666666666666667,1,1,0,1,9,7,4,1,252.5,871575.5714412351,223702.2397815639,362590.2277360257,0,3451.316094977537 -3342,4169,7516,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,7.550823917565017,7.702079403355333,0,0,0,-928.7713330185416,-9,-9,-9,2019,12,1,36,0,1,1,0,5.298259730567391,5.298259730567391,0,0,0,0,0,1,1,0,0,0,50.74,38.9,-9,-9,8.333333333333334,1,1,0,1,3,7,3,1,861,0,0,0,0,1269.110866913084 -3343,4170,7517,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.033677596497386,8.045044726140135,0,0,-905.2740910278146,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.607824409340975,8.169014902153663,61.84,33.71,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,674,468515.3724527499,239036.6137219967,132088.0470131812,61879.65773806617,2395.71293250165 -3344,4171,7518,7519,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,8.603437465847867,8.522872092333483,10,1,66.84684057699336,0,3,2,2019,3,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.701327908658914,52.48,47.57,63.4,45.23,10,1,1,0,0,10,12,5,1,618.5,708203.6550861327,227603.5946029406,210612.7277396729,0,4746.020127145923 -3344,4171,7519,7518,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.312814763914195,8.096673536190966,0,10,-1,-40.79244589099492,0,2,3,2019,7,0,41,47,1,0,0,9.810175273093874,9.810175273093874,0,0,0,0,0,0,0,0,1.1723618619937,0,63.4,45.23,52.48,47.57,10,1,1,0,0,11,12,5,1,618.5,708203.6550861327,227603.5946029406,210612.7277396729,0,4746.020127145923 -3345,4172,7520,7521,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.690958400496653,8.802308601211143,0,29,4,90.75604377832214,0,3,3,2019,10,0,48,45,1,0,0,13.81629998459497,13.81629998459497,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.83,57.2,1.666666666666667,1,1,0,0,13,6,5,1,987,1579360.724067207,1333574.630671418,162057.6989201276,-5878.084990835575,3578.850509537806 -3345,4172,7521,7520,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.443276612333973,7.464347529055335,0,29,-4,-64.40552976511917,0,3,-9,2019,11,0,37,25,1,0,0,6.445289545622109,6.445289545622109,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,13,6,5,1,987,1579360.724067207,1333574.630671418,162057.6989201276,-5878.084990835575,3578.850509537806 -3346,4173,7522,-9,7524,7523,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-798.4878591153949,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,436,1041096.475717635,855533.6321873674,274371.8823019473,76770.48743583955,3638.674814665375 -3346,4173,7523,7524,-9,-9,1,1,54,1,1,0,1,1,-9,0,3,0,7.89736740230797,7.844495714857275,5,5,37.01257034462276,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.567781071979532,41.85,45.72,55.09,55.87,8.333333333333334,1,1,0,0,7,12,4,1,436,1041096.475717635,855533.6321873674,274371.8823019473,76770.48743583955,3638.674814665375 -3346,4173,7524,7523,-9,-9,1,0,49,1,1,0,1,1,-9,0,5,8.599164693203349,8.884584561204957,0,5,-5,-37.55186092185162,0,-9,-9,2019,8,0,35,40,1,0,0,16.89000037202823,16.89000037202823,0,0,0,0,0,1,1,0,5.022743203790512,0,55.09,55.87,41.85,45.72,8.333333333333334,1,1,0,0,10,12,4,1,436,1041096.475717635,855533.6321873674,274371.8823019473,76770.48743583955,3638.674814665375 -3347,4174,7525,-9,7527,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.028266988149,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,2,0,1012.333333333333,76233.12464838651,0,205533.8959500268,107638.8431786932,2167.139312280368 -3347,4174,7526,-9,7527,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.599778834468,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,1012.333333333333,76233.12464838651,0,205533.8959500268,107638.8431786932,2167.139312280368 -3347,4174,7527,-9,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,8.075056904013195,7.910664062430101,0,0,0,-1001.198176379382,0,-9,-9,2019,9,1,55,35,1,1,0,4.975745812854114,4.975745812854114,0,0,0,0,0,1,1,0,0,0,48.19,52.52,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,1012.333333333333,76233.12464838651,0,205533.8959500268,107638.8431786932,2167.139312280368 -3347,4175,7528,-9,7527,-9,1,0,18,1,2,1,2,0,0,0,5,0,0,0,0,0,-957.8379546199259,-9,2,-9,2019,8,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,37.01,48.01,-9,-9,10,3,4,0,0,0,8,1,0,1568,85810.32420605015,0,0,0,0 -3348,4176,7529,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,0,0,0,0,-928.5848150500783,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.888383005059202,0,40.73,34.53,-9,-9,6.666666666666667,1,1,0,0,6,11,2,1,2090,40700.35782331516,55488.15587617942,127091.2846349242,0,1409.528254680498 -3349,4177,7530,7535,-9,-9,1,0,33,1,4,0,2,2,-9,0,3,0,0,0,8,-5,-29.92436268760168,0,2,2,2019,6,0,0,7,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.94,53.18,49.46,56.91,8.333333333333334,1,1,0,0,7,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3349,4177,7531,-9,7530,7535,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-999.3805882827697,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3349,4177,7532,-9,7530,7535,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-881.3901984175934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3349,4177,7533,-9,7530,7535,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1160.12757762707,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3349,4177,7534,-9,7530,7535,1,1,11,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1020.838504125599,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3349,4177,7535,7530,-9,-9,1,1,38,1,4,0,2,2,-9,0,4,6.259606242537694,5.715344375243939,0,8,5,3.995878086108208,0,2,2,2019,10,0,50,50,1,0,0,1.200837974264015,1.200837974264015,0,0,0,0,0,1,1,0,0,0,49.46,56.91,54.94,53.18,8.333333333333334,1,1,0,0,10,10,2,0,512.3333333333334,-115980.3090871036,49417.50715342009,0,0,1138.481445804885 -3350,4178,7536,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.72422818877221,5.875289839489794,0,0,-1072.659430776703,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,9.618262188434107,0,0,1,1,0,0,5.472072193780889,54.53,20.57,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,1488,141391.3469579456,88631.24462191558,0,0,396.9185577939524 -3351,4179,7537,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1085.384169909643,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,57.28,46.43,-9,-9,10,1,1,0,0,0,9,1,1,198,33412.230607744,0,0,0,244.4481511057179 -3352,4180,7538,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.993805983313115,8.927689886210739,0,0,0,-1065.206422911932,0,2,3,2019,14,2,39,38,1,2,0,20.97432309402774,20.97432309402774,0,0,0,0,0,0,0,0,5.239233588195371,0,43.24,52.75,-9,-9,5,1,1,0,0,11,4,5,1,218,271122.2268826901,-54481.95477562916,189895.0884045446,165002.5552532842,2616.095741167603 -3353,4181,7539,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1117.63644651065,-9,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,8.62213722844988,0,0,0,1,1,0,0,0,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,1359,134905.0558578008,0,0,0,1325.56711826196 -3354,4182,7540,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1152.431262760312,0,2,-9,2019,6,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,53.72,51,-9,-9,10,3,4,0,0,0,8,1,1,90,-33502.57998772056,0,0,0,465.3950068371156 -3355,4183,7541,7542,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.742253054020604,7.972499131504128,6,-1,12.6325168936246,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.776514197873541,8.100498041948097,52.46,52.76,53.68,42.61,8.333333333333334,1,1,0,0,0,4,4,1,903.5,153519.0717177588,180903.8535952428,0,0,3456.828892230442 -3355,4183,7542,7541,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.503171825486704,7.396229950128124,22,1,175.9710877686246,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.500576818999833,7.507400934574417,53.68,42.61,52.46,52.76,8.333333333333334,1,1,0,0,0,4,4,1,903.5,153519.0717177588,180903.8535952428,0,0,3456.828892230442 -3356,4184,7543,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.668432634392597,7.293634133678169,0,0,-958.6743150722243,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.429032462627869,7.471471413926833,58.91,40.89,-9,-9,5,1,1,0,0,0,9,3,1,140,368044.3076711671,194072.7320160287,117232.5456825758,0,2282.016188176334 -3357,4185,7544,7545,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,8,-4,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,2,3,0,0,0,8,1,1,1264,35942.17463939729,0,0,0,1268.228408645031 -3357,4185,7545,7544,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,57,4,0,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,46,8,2,3,0,0,3,8,1,1,1264,35942.17463939729,0,0,0,1268.228408645031 -3358,4186,7546,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-817.8346555985249,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,39.04,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,597,-120771.0470714558,0,0,0,986.473917674202 -3358,4187,7547,-9,7546,-9,1,1,29,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1058.492219840826,0,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,10,1,1,1,0,2,11,1,0,213,17063.57262593381,0,0,0,695.4178633024112 -3358,4188,7548,-9,7546,-9,1,1,28,0,0,0,2,2,-9,0,5,0,0,0,0,0,-939.5100970386877,0,3,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,52,60,-9,-9,5,1,1,1,0,4,11,1,0,700,0,0,0,0,1221.566242360841 -3359,4189,7549,7550,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.076546268087439,7.936426603209494,0,16,10,-70.6911627082947,0,2,2,2019,7,0,25,25,1,0,0,16.43695997669209,16.43695997669209,0,0,0,0,0,0,0,0,5.458085129547079,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,322.5,337552.3544268382,179225.3231342869,255809.5987043368,109957.7770603323,2936.722114799814 -3359,4189,7550,7549,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.336263119737435,8.085335743068386,0,17,-10,-89.1367696987714,0,2,3,2019,11,0,80,80,1,0,0,6.331834934511944,6.331834934511944,0,0,0,0,2,0,0,0,4.534940457479274,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,322.5,337552.3544268382,179225.3231342869,255809.5987043368,109957.7770603323,2936.722114799814 -3360,4190,7551,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.000591090121732,8.119766128282944,6.850827416381859,0,0,-1045.337161467747,0,2,1,2019,8,0,35,35,1,0,0,10.4433404054112,10.4433404054112,0,0,0,0,0,1,1,0,6.730002413269348,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,735,233345.9267039087,342796.2368997538,0,0,2060.71303459342 -3360,4190,7552,-9,7551,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.815223628395,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,735,233345.9267039087,342796.2368997538,0,0,2060.71303459342 -3361,4191,7553,7555,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,7.89977069420792,7.550589632744487,0,5,7,136.8728395319781,0,-9,-9,2019,10,1,72,0,1,1,0,4.974579831458675,4.974579831458675,0,0,0,0,0,1,1,0,0,0,54.37,54.8,37.36,61.85,5,2,3,0,0,0,8,3,0,818.75,84622.88462794702,82402.26029490901,0,0,2757.56022961996 -3361,4191,7554,-9,7555,7553,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.7494558476335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,0,818.75,84622.88462794702,82402.26029490901,0,0,2757.56022961996 -3361,4191,7555,7553,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,5,-7,15.62135109717368,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,61.85,54.37,54.8,5,2,3,1,1,0,8,3,0,818.75,84622.88462794702,82402.26029490901,0,0,2757.56022961996 -3361,4191,7556,-9,7555,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.7059944019478,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,818.75,84622.88462794702,82402.26029490901,0,0,2757.56022961996 -3362,4192,7557,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-963.0197149912281,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,42.73,37.22,-9,-9,5,1,1,0,0,0,2,1,1,159,12366.59637803397,0,0,0,160.8294666437829 -3363,4193,7558,-9,7563,7559,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-910.1168802668802,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3363,4193,7559,7563,-9,-9,1,1,39,0,4,0,3,3,-9,1,1,0,0,0,23,-1,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.88,40.96,30.04,36.78,3.333333333333333,1,1,1,1,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3363,4193,7560,-9,7563,7559,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.261532416891,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.036397459048029,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3363,4193,7561,-9,7563,7559,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-918.427128148427,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3363,4193,7562,-9,7563,7559,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1008.205332784084,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3363,4193,7563,7559,-9,-9,1,0,40,0,4,0,3,3,-9,0,1,0,0,0,23,1,0,0,2,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.04,36.78,50.88,40.96,1.666666666666667,1,1,0,1,0,5,1,0,811.6666666666666,70580.00085258744,35018.84673990175,0,0,1584.447305808713 -3364,4194,7564,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.873728886700438,7.895941418996254,0,0,0,-968.2071092781549,0,-9,-9,2019,14,2,36,36,1,2,0,10.21847338620896,10.21847338620896,0,0,0,0,0,0,0,0,0,0,50.11,54.04,-9,-9,0,3,4,0,1,6,8,4,0,379,278769.4031414773,39270.96396933789,60197.37575944318,0,937.5559812466455 -3364,4195,7565,-9,-9,7564,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-960.0471136857715,1,-9,2,2019,12,1,0,12,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,3,8,1,0,425,0,0,0,0,558.6786080907556 -3365,4196,7566,7567,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,8.754013941036884,8.544385102224608,0,33,-1,41.67039735820218,0,3,3,2019,6,0,38,38,1,0,0,21.63073371158954,21.63073371158954,0,0,0,0,0,1,1,0,.8901705148997521,0,64.08,44.69,51.49,57.57,5,1,1,0,0,8,6,5,1,535.5,1657523.427448463,1389856.54375003,222959.0083742085,0,4369.63060000285 -3365,4196,7567,7566,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.561846682769997,8.616172624553229,8.12751260695546,33,1,-81.28875006826036,0,2,3,2019,9,0,10,45,1,0,0,24.62316732904554,24.62316732904554,0,0,0,0,2,1,1,0,3.122324225898417,8.134115921792171,51.49,57.57,64.08,44.69,8.333333333333334,1,1,0,0,9,6,5,1,535.5,1657523.427448463,1389856.54375003,222959.0083742085,0,4369.63060000285 -3366,4197,7568,7569,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,0,6.732779371422913,6.453220708012914,6,-3,33.78764450012598,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,2.153397152744309,6.322590658539736,33.19,27.06,57.16,56.15,3.333333333333333,1,1,0,0,4,11,2,1,544.5,877621.7644546609,372844.1789822523,373108.4982413658,0,1046.754246296947 -3366,4197,7569,7568,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,5.666106195081073,5.525854672503334,6,3,-135.5864338432868,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.204824211806102,5.696208259134059,57.16,56.15,33.19,27.06,8.333333333333334,1,1,0,0,0,11,2,1,544.5,877621.7644546609,372844.1789822523,373108.4982413658,0,1046.754246296947 -3367,4198,7570,7571,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.888096923686603,8.218010664365995,0,11,8,-104.8026464886822,0,3,2,2019,12,0,38,37,1,0,0,13.36710645911984,13.36710645911984,0,0,0,0,0,0,0,0,3.790881059547841,0,47.07,53.97,36.62,60.23,6.666666666666667,1,1,0,0,12,5,5,1,620.5,394190.1725362671,8002.951959528076,306089.1652679117,140201.5401306746,3039.283056530789 -3367,4198,7571,7570,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.185257838279616,7.945397715461537,0,11,-8,163.6511922492527,0,2,2,2019,21,9,37,40,1,9,0,11.9890507007949,11.9890507007949,0,0,0,0,2,0,0,0,2.848797648855322,0,36.62,60.23,47.07,53.97,8.333333333333334,1,1,0,0,12,5,5,1,620.5,394190.1725362671,8002.951959528076,306089.1652679117,140201.5401306746,3039.283056530789 -3368,4199,7572,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.39104827353747,7.529053464782908,6.35558981346689,0,0,-1024.723668453371,0,-9,-9,2019,9,0,25,35,1,0,0,5.904845223252185,5.904845223252185,0,0,0,0,0,1,1,0,6.011702368766183,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,479,98288.47968506165,0,0,0,1772.091487210506 -3368,4200,7573,-9,7572,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1010.686606427242,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,2.689035684096086,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,5,1,0,464,10664.31454655445,0,0,0,-316.4318787687029 -3369,4201,7574,7575,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-3,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,71.5,1,1,0,6.152526164518866,0,41.17,52.68,54,46,5,1,1,0,0,0,5,2,1,575,-82695.13686105548,0,0,0,1952.577991092743 -3369,4201,7575,7574,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,62,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.231251414139948,0,54,46,41.17,52.68,8,1,1,0,0,0,5,2,1,575,-82695.13686105548,0,0,0,1952.577991092743 -3370,4202,7576,-9,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,1.599040762006897,6.099927740253104,6.353478206202949,0,0,-1032.168997795657,0,2,2,2019,21,8,1,0,1,8,0,.6530478815859442,.6530478815859442,0,0,0,0,14.5,1,1,0,6.155779308955613,0,21.07,40.23,-9,-9,3.333333333333333,1,1,0,0,3,9,2,0,2074.5,-96066.59518453294,52900.58355991797,0,0,2551.121814984393 -3370,4202,7577,-9,7576,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.558602078936,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,2074.5,-96066.59518453294,52900.58355991797,0,0,2551.121814984393 -3371,4203,7578,7579,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.883789309852094,8.695302403287121,0,8,7,3.939323855441525,0,2,2,2019,9,0,37,38,1,0,0,20.22953516991537,20.22953516991537,0,0,0,0,0,1,1,0,.0545269227836609,0,57.16,56.15,59.78,55.17,8.333333333333334,1,1,0,0,12,11,5,1,1286,687485.5182830336,568566.2775327327,215096.3122372287,83056.75444426214,3772.917129308395 -3371,4203,7579,7578,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.364774763622897,8.444264269993166,0,8,-7,59.02033829983271,0,-9,-9,2019,5,0,37,40,1,0,0,14.71351730478507,14.71351730478507,0,0,0,0,0,1,1,0,.801265496288993,0,59.78,55.17,57.16,56.15,8.333333333333334,1,1,0,0,12,11,5,1,1286,687485.5182830336,568566.2775327327,215096.3122372287,83056.75444426214,3772.917129308395 -3371,4203,7580,-9,7579,7578,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.870193821383,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1286,687485.5182830336,568566.2775327327,215096.3122372287,83056.75444426214,3772.917129308395 -3372,4204,7581,-9,-9,-9,1,0,54,0,2,0,2,2,1,0,3,8.455240320815482,8.489137003625764,0,0,0,-1105.211028793,-9,3,2,2019,1,0,16,0,1,0,0,31.41170732524861,31.41170732524861,0,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,3,4,0,1,5,8,3,0,299.6666666666667,710358.1734583218,296085.9490069883,404714.493738957,259080.0025624485,3829.459618594594 -3372,4204,7582,-9,7581,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.9832293643,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,299.6666666666667,710358.1734583218,296085.9490069883,404714.493738957,259080.0025624485,3829.459618594594 -3372,4204,7583,-9,7581,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.727503621493,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,299.6666666666667,710358.1734583218,296085.9490069883,404714.493738957,259080.0025624485,3829.459618594594 -3372,4205,7584,-9,7581,-9,1,0,23,0,2,0,1,1,1,0,4,6.916064989640996,7.134473822557862,0,0,0,-1043.431640547152,-9,2,1,2019,7,0,35,0,1,0,1,3.497782128001447,3.497782128001447,0,0,0,0,0,1,1,0,0,0,55.21,58.31,-9,-9,8.333333333333334,3,4,0,0,5,8,2,0,416,148649.1570455896,-114193.4803741098,0,0,390.8181652666921 -3372,4206,7585,-9,7581,-9,1,1,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-939.4238715915383,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,6,8,2,0,782,-87894.15703059659,0,0,0,169.6012950378555 -3372,4207,7586,-9,7581,-9,1,1,20,0,2,1,2,0,-9,0,3,0,0,0,0,0,-962.5637363539905,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,4483,0,0,0,0,0 -3373,4208,7587,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-975.4252610723263,-9,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,4.612053452015139,0,46.37,50.17,-9,-9,3.333333333333333,1,1,1,0,5,8,1,0,205,-5294.727600154006,0,0,0,208.3046234765016 -3374,4209,7588,7589,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.92385814913051,8.689676955234294,7.553356213096924,8,-3,20.78285733261874,0,3,3,2019,21,9,37,39,1,9,0,20.71619083815438,20.71619083815438,0,0,0,0,0,1,1,0,5.275858314910762,7.891216590177223,36.61,38.65,52.31,40.94,3.333333333333333,1,1,0,0,11,2,5,1,482.5,-11467.57883642951,-84885.16030732881,94776.96425713402,532.6420197401194,3347.864207497662 -3374,4209,7589,7588,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,1.832021147187187,1.761160576443022,8,3,-26.88981067374095,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,1.958167801569728,1.767956592874931,52.31,40.94,36.61,38.65,6.666666666666667,1,1,0,0,2,2,5,1,482.5,-11467.57883642951,-84885.16030732881,94776.96425713402,532.6420197401194,3347.864207497662 -3375,4210,7590,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.189807622764,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.009046024331237,1.360923895787514,22.99877825148298,2,1,1,0,.4269617155860735,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,997,-34975.78719085433,0,27516.55573940044,0,1228.649972668804 -3376,4211,7591,7593,-9,-9,1,1,44,0,2,0,3,3,-9,0,5,8.48695425294091,9.021130688890224,0,15,-4,-1.498806581923353,0,3,2,2019,8,0,40,40,1,0,0,14.54824327309515,14.54824327309515,0,0,0,0,0,1,1,0,8.786025853879954,0,60.02,56.42,52,54.51,8.333333333333334,1,1,0,0,9,7,4,0,483.25,72772.09609070222,44283.27486747599,0,0,5230.412518443318 -3376,4211,7592,-9,7593,7591,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-925.55413442081,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,4,0,483.25,72772.09609070222,44283.27486747599,0,0,5230.412518443318 -3376,4211,7593,7591,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.103778441360217,7.148416924163906,0,16,4,-73.9091052432014,0,3,2,2019,6,0,5,3,1,0,0,31.50782153215477,31.50782153215477,0,0,0,0,0,1,1,0,1.457750464962615,0,52,54.51,60.02,56.42,8.333333333333334,1,1,0,0,5,7,4,0,483.25,72772.09609070222,44283.27486747599,0,0,5230.412518443318 -3376,4211,7594,-9,7593,7591,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.017894504307,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,0,483.25,72772.09609070222,44283.27486747599,0,0,5230.412518443318 -3377,4212,7595,7596,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,9,-6,6.936506012175832,0,2,3,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,.4270298706856537,0,61.27,46.03,59.81,34.83,8.333333333333334,1,1,0,0,9,12,2,1,1074.5,554288.5516044766,336135.473256027,172501.428553961,0,933.6522672381611 -3377,4212,7596,7595,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.328604295385056,7.241739031459291,9,6,-19.76656202677778,0,2,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,3.99795852026556,7.392760790997154,59.81,34.83,61.27,46.03,8.333333333333334,1,1,0,0,9,12,2,1,1074.5,554288.5516044766,336135.473256027,172501.428553961,0,933.6522672381611 -3378,4213,7597,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.76355173043766,5.927191808476262,0,0,-987.1724006999284,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.33125572286808,5.581024526463226,49.1,20.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,3174,270048.7694872094,-24279.22936400833,101240.6366473959,0,559.681469504914 -3379,4214,7598,7599,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,47,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,58.31,42.52,8.333333333333334,1,1,0,0,0,6,1,0,1346,181809.244647532,151822.096410774,186790.9598071171,0,1601.797977667387 -3379,4214,7599,7598,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,62.66,52.4,0,1,1,0,0,0,6,1,0,1346,181809.244647532,151822.096410774,186790.9598071171,0,1601.797977667387 -3380,4215,7600,7601,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,6.614803373907362,6.552951088036261,0,6,10,-40.00846907054813,0,3,3,2019,6,0,6,10,1,0,0,15.73843910734421,15.73843910734421,0,0,0,0,0,1,1,0,0,0,57.57,49.69,48.41,33.06,8.333333333333334,1,1,0,1,7,13,2,1,1042,167836.3483197628,0,0,0,1292.403016699031 -3380,4215,7601,7600,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,6,-10,-112.42012957685,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.41,33.06,57.57,49.69,6.666666666666667,1,1,0,1,0,13,2,1,1042,167836.3483197628,0,0,0,1292.403016699031 -3381,4216,7602,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.722920635400556,6.529106582798284,0,0,-881.2087695287258,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.537859871508799,50.4,45.58,-9,-9,10,1,1,0,0,0,11,2,1,379,206040.447872067,41982.36425953726,133235.8959611154,0,1335.776415056289 -3382,4217,7603,-9,-9,-9,1,0,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1068.721170867049,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,33.78,43.95,-9,-9,5,1,1,0,0,0,13,1,0,196,83900.7670085431,0,0,0,698.3954133777489 -3383,4218,7604,7605,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,4.916497210433895,5.018855851380773,55,-3,-73.10888955761351,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.938754526631591,44.02,28.6,43.71,43.43,8.333333333333334,2,3,0,0,0,5,2,1,1335.5,460517.6501091969,199467.1568324626,44345.46707891994,0,1498.915104719082 -3383,4218,7605,7604,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.582848057029326,6.399762869868637,55,3,79.71076199369168,0,3,3,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.325306062720434,43.71,43.43,44.02,28.6,8.333333333333334,2,3,0,0,0,5,2,1,1335.5,460517.6501091969,199467.1568324626,44345.46707891994,0,1498.915104719082 -3384,4219,7606,7608,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,7.919400690158062,8.393345113081894,0,9,6,73.11450448965141,0,-9,-9,2019,14,3,46,40,1,3,0,9.632632842406744,9.632632842406744,0,0,0,0,0,1,0,1,0,0,30.18,68.48999999999999,36.03,37.77,8.333333333333334,1,1,0,0,8,7,3,0,676.3333333333334,21381.53287657268,-367.6566549533284,0,0,1898.404409198808 -3384,4219,7607,-9,7608,7606,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.8188877281627,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,676.3333333333334,21381.53287657268,-367.6566549533284,0,0,1898.404409198808 -3384,4219,7608,7606,-9,-9,1,0,31,0,1,0,2,2,-9,1,2,0,0,0,9,-6,38.74104515487716,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,36.03,37.77,30.18,68.48999999999999,6.666666666666667,1,1,0,1,11,7,3,0,676.3333333333334,21381.53287657268,-367.6566549533284,0,0,1898.404409198808 -3385,4220,7609,7610,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,37,0,5.911416786403506,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.255806264597121,0,27.15045078660705,7,1,1,0,3.529963946695388,0,61.01,44.96,55.57,18.34,8.333333333333334,1,1,0,0,0,9,3,1,286.5,1152127.066579806,673297.2959552687,236590.0561158634,0,2712.210906825295 -3385,4220,7610,7609,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.9733371827386,7.67801670374851,37,0,47.94614116224738,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,45.25970014544571,0,0,1,1,0,1.741620442046519,7.959149188002349,55.57,18.34,61.01,44.96,8.333333333333334,1,1,0,0,0,9,3,1,286.5,1152127.066579806,673297.2959552687,236590.0561158634,0,2712.210906825295 -3386,4221,7611,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,6.341337520300384,6.442994292808276,0,0,0,-884.6279041266541,0,3,3,2019,13,1,8,0,1,1,0,7.300630245526626,7.300630245526626,0,0,0,0,74.5,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,13,2,0,260,-11505.21883414278,0,0,0,1955.299883913184 -3386,4221,7612,-9,7611,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.101529076569,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,260,-11505.21883414278,0,0,0,1955.299883913184 -3387,4222,7613,7615,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,6.044830218431946,6.518900322046743,4.970309447207834,27,-6,-25.22906926112078,0,2,2,2019,8,0,13,6,1,0,0,4.398688473905838,4.398688473905838,0,0,0,0,0,1,1,0,2.303724189402454,5.240021649717567,54.69,57.47,62.39,56.71,10,1,1,0,0,7,6,4,1,452.6666666666667,454028.048002552,258827.3013466926,159808.9079510137,48398.83447428981,3038.113745563408 -3387,4222,7614,-9,7613,7615,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1071.053221324289,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.495321265559094,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,452.6666666666667,454028.048002552,258827.3013466926,159808.9079510137,48398.83447428981,3038.113745563408 -3387,4222,7615,7613,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.195081555753966,8.500523232091114,7.104189384965949,8,6,-17.52002187888423,0,-9,-9,2019,6,0,40,40,1,0,0,11.47953684269753,11.47953684269753,0,0,0,0,0,1,1,0,4.030208481024958,7.121338077754021,62.39,56.71,54.69,57.47,8.333333333333334,1,1,0,0,10,6,4,1,452.6666666666667,454028.048002552,258827.3013466926,159808.9079510137,48398.83447428981,3038.113745563408 -3388,4223,7616,7617,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.043671010129739,7.718148198559429,9,-2,77.52265452075073,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.493719257755744,7.841141584891821,56.77,52.22,59.71,50.89,8.333333333333334,1,1,0,0,0,9,3,1,793,1397728.274837342,630067.7201300443,254429.0636691338,0,5376.530887550474 -3388,4223,7617,7616,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.205772174902257,4.888098577497205,51,2,13.54997943319758,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.935208116707745,4.557441238178697,59.71,50.89,56.77,52.22,8.333333333333334,1,1,0,0,0,9,3,1,793,1397728.274837342,630067.7201300443,254429.0636691338,0,5376.530887550474 -3389,4224,7618,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.582794382513329,7.296388663796969,0,0,-1023.06480134789,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.605708298937881,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,765,831851.0831068089,370971.9880468576,346648.6449496141,0,820.2461392553158 -3390,4225,7619,7620,-9,-9,1,0,32,0,0,0,2,2,-9,1,2,7.94753492092797,7.810900467579637,0,8,-7,-104.6405753456525,0,-9,-9,2019,14,2,30,30,1,2,0,8.507409717067086,8.507409717067086,0,0,0,0,0,1,1,0,0,0,45.12,34.87,54.2,57.49,5,1,1,0,0,12,13,4,1,502.5,-71534.36690704754,31211.58346453595,0,0,3205.283799790237 -3390,4225,7620,7619,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.20776465120707,8.185214074644527,0,8,7,77.54904727683702,0,2,2,2019,1,0,38,38,1,0,0,10.76284829197414,10.76284829197414,0,0,0,0,27,1,1,0,2.02200484253465,0,54.2,57.49,45.12,34.87,8.333333333333334,1,1,0,0,9,13,4,1,502.5,-71534.36690704754,31211.58346453595,0,0,3205.283799790237 -3391,4226,7621,7623,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.419991134556446,8.061006389698257,0,7,-3,4.126814589405114,0,2,2,2019,22,9,32,30,1,9,0,12.92089795919221,12.92089795919221,0,0,0,0,0,0,0,0,4.155007200329672,0,17.88,67.62,51,56,8.333333333333334,1,1,0,0,7,6,5,1,649.5,1710221.117099821,1345563.186561508,331081.0490994954,113594.6246720206,4853.47663030056 -3391,4226,7622,-9,7621,7623,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.947425582111,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,649.5,1710221.117099821,1345563.186561508,331081.0490994954,113594.6246720206,4853.47663030056 -3391,4226,7623,7621,-9,-9,1,1,40,2,2,0,1,1,-9,0,4,9.301819805562333,9.386490168249376,0,7,3,-28.41379993328863,0,-9,-9,2019,9,0,40,40,1,1,0,29.18761518815544,29.18761518815544,0,0,0,0,0,0,0,0,4.604424419561217,0,51,56,17.88,67.62,8,1,1,0,0,1,6,5,1,649.5,1710221.117099821,1345563.186561508,331081.0490994954,113594.6246720206,4853.47663030056 -3391,4226,7624,-9,7621,7623,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.362814048473,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,649.5,1710221.117099821,1345563.186561508,331081.0490994954,113594.6246720206,4853.47663030056 -3392,4227,7625,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.719832573525627,7.838183609645743,0,0,-1070.444829730845,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.769998340486303,7.801627159561535,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,359,488430.4923577509,299591.1196283766,234440.6983751975,0,2782.669044115587 -3393,4228,7626,7627,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,1,5,-25.51229619583786,1,1,2,2019,10,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,57,8.333333333333334,3,4,0,0,9,8,4,0,1187.5,142792.4572419063,69114.30819302378,123500.3799805844,66121.69665210714,2161.464402952512 -3393,4228,7627,7626,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.535820531880233,8.346782180958428,0,1,-5,-71.91491267255927,-9,-9,-9,2019,11,0,35,0,1,2,0,12.70469865745448,12.70469865745448,0,0,0,0,0,0,0,0,0,0,48,57,54.2,57.49,7,4,4,0,0,1,8,4,0,1187.5,142792.4572419063,69114.30819302378,123500.3799805844,66121.69665210714,2161.464402952512 -3394,4229,7628,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.548961894021483,7.3724138916596,0,0,0,-1049.731173621152,0,3,-9,2019,4,2,28,28,1,2,0,8.476753300839036,8.476753300839036,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,2,3,0,910,-4122.752800922115,72200.33887978304,0,0,1305.546067535768 -3394,4229,7629,-9,7628,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1006.828232631116,-9,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,33.01,59.56,-9,-9,5,1,1,1,0,0,2,3,0,910,-4122.752800922115,72200.33887978304,0,0,1305.546067535768 -3394,4230,7630,-9,7628,-9,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-987.0500186290283,-9,2,-9,2019,30,9,0,0,3,9,1,0,0,0,0,0,0,0,1,0,1,0,0,2.87,57.43,-9,-9,0,1,1,1,0,7,2,1,0,215,21392.30859598056,0,0,0,277.4761445045272 -3394,4231,7631,-9,7628,-9,1,0,21,0,0,0,2,2,-9,0,3,7.832061114933117,7.704713246597667,0,0,0,-951.1160893024017,-9,2,-9,2019,26,9,43,0,1,9,1,7.294239667903963,7.294239667903963,0,0,0,0,0,1,0,1,0,0,29.37,58.49,-9,-9,3.333333333333333,1,1,0,0,4,2,3,0,702,-58965.10760911674,0,0,0,612.9786933314853 -3395,4232,7632,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.064609701851913,7.996390533814359,0,0,0,-998.8693560024237,0,3,3,2019,9,0,39,41,1,0,0,9.817150557145292,9.817150557145292,0,0,0,0,0,0,0,0,1.023186463007428,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,10,11,4,1,261,178563.1514872424,0,71212.85434882338,0,583.7402904856293 -3395,4233,7633,-9,-9,7632,1,1,27,0,0,0,2,2,-9,0,3,7.395969223996964,7.022217650104722,0,0,0,-1116.679404323546,0,-9,2,2019,14,2,35,30,1,2,1,5.653826426470487,5.653826426470487,0,0,0,0,0,0,0,0,0,0,52.26,51.57,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,318,-68549.99062811109,0,0,0,1100.139430260243 -3396,4234,7634,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1014.883399456242,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.11,53.78,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,986,0,0,0,0,861.2876866545885 -3396,4235,7635,-9,7634,-9,1,0,19,0,0,0,3,3,-9,0,2,7.246055921956691,6.980733060548185,0,0,0,-1140.864919384241,0,2,-9,2019,15,5,39,0,1,5,1,3.463667048634044,3.463667048634044,0,0,0,0,2,1,1,0,0,0,41.35,46.33,-9,-9,6.666666666666667,4,2,0,0,2,9,3,0,392,164442.9740563284,0,0,0,797.0598464156062 -3397,4236,7636,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.170991790615314,7.333067244836674,0,0,-885.6069818426262,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.333126205965549,7.341881607356862,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,936,648026.086123222,235657.1282469615,234775.3670836063,0,1715.336880427163 -3398,4237,7637,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.270652673518178,7.402952930817303,0,0,-1016.334588624104,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.571025270118755,7.463905504784837,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,361,233337.9675255306,281941.6776185635,0,0,1524.101300693542 -3399,4238,7638,7639,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.780273882146997,8.167339138178805,0,10,0,-78.47817626528472,0,3,3,2019,6,0,39,39,1,0,0,7.952959850273714,7.952959850273714,0,0,0,0,0,0,0,0,0,0,50.14,53.97,57.33,53.46,8.333333333333334,1,1,0,0,11,8,4,0,352,112383.264851021,77094.42651997556,0,0,2782.411290938331 -3399,4238,7639,7638,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.778749051155845,7.797071090591956,0,10,0,4.276080695521245,0,2,3,2019,7,0,45,49,1,0,0,9.889693223748628,9.889693223748628,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.14,53.97,8.333333333333334,1,1,0,0,11,8,4,0,352,112383.264851021,77094.42651997556,0,0,2782.411290938331 -3400,4239,7640,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,3.284307566084975,3.367050665622898,0,0,-920.2216436887506,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.212409010497755,3.309530392925816,52,45,-9,-9,8,1,1,0,0,0,7,2,1,408,-15435.90105004038,76134.23865900666,0,0,1150.194802469881 -3401,4240,7641,-9,7643,7644,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-958.4957964523953,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,5,1,814.75,239292.3906109811,-34241.2617845638,217624.4910694741,27497.64519626809,4457.93008564144 -3401,4240,7642,-9,7643,7644,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.807719180807,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,814.75,239292.3906109811,-34241.2617845638,217624.4910694741,27497.64519626809,4457.93008564144 -3401,4240,7643,7644,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,9.039272658858664,8.888850126663295,0,3,1,-14.77616951609813,0,3,1,2019,10,0,28,34,1,0,0,33.02857038639818,33.02857038639818,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48.95,44.09,8.333333333333334,1,1,0,0,8,13,5,1,814.75,239292.3906109811,-34241.2617845638,217624.4910694741,27497.64519626809,4457.93008564144 -3401,4240,7644,7643,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.620117324961713,8.530370804289944,0,3,-1,-43.30174231737149,0,2,2,2019,11,1,42,48,1,1,0,15.80086396702914,15.80086396702914,0,0,0,0,0,1,1,0,0,0,48.95,44.09,54.96,53.17,5,1,1,0,0,8,13,5,1,814.75,239292.3906109811,-34241.2617845638,217624.4910694741,27497.64519626809,4457.93008564144 -3402,4241,7645,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.719811530289256,8.489577892592129,0,0,0,-1026.513052203884,0,2,2,2019,11,0,43,42,1,0,0,17.41131348418966,17.41131348418966,0,0,0,0,0,1,1,0,4.280436566740379,0,55.48,47.38,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,1006.5,332022.5013113552,154216.5112425871,279868.5025810659,113976.8500717254,2255.349925936083 -3402,4241,7646,-9,-9,7645,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-957.3069699462789,-9,-9,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,1006.5,332022.5013113552,154216.5112425871,279868.5025810659,113976.8500717254,2255.349925936083 -3403,4242,7647,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1002.749279898763,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,21.91,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,211,104811.5240650263,0,0,0,405.70534878309 -3404,4243,7648,7649,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,4,-6,-29.94249819411349,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.47,47.17,41.57,53.76,8.333333333333334,1,1,0,0,0,13,2,1,1010,310073.1136533193,-21211.54623100622,209681.8267573802,0,835.2273071507429 -3404,4243,7649,7648,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,4.445016587687811,4.774786169130748,0,4,6,-10.66333289742316,0,3,3,2019,8,0,60,70,1,0,0,.1968802097819973,.1968802097819973,1,0,0,0,0,1,0,1,0,0,41.57,53.76,47.47,47.17,5,1,1,0,1,8,13,2,1,1010,310073.1136533193,-21211.54623100622,209681.8267573802,0,835.2273071507429 -3404,4244,7650,-9,7648,7649,1,0,31,0,0,0,1,1,-9,0,4,7.89883807926381,7.950553009487447,0,0,0,-1062.698601876504,0,2,3,2019,10,0,7,35,1,0,0,47.18936944659685,47.18936944659685,0,0,0,0,0,1,0,1,3.865625807632404,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,185,-135691.3359968929,64333.43682939948,0,0,947.8366023770465 -3404,4245,7651,-9,7648,7649,1,1,29,0,0,0,2,2,-9,0,4,8.526722217964469,8.874309932149554,0,0,0,-1029.336116570923,0,2,3,2019,12,1,60,50,1,1,0,9.895166932381839,9.895166932381839,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,5,1,1,0,0,8,13,5,1,730,122769.5723225418,74435.11921999998,0,0,2603.38496819795 -3404,4246,7652,-9,7648,7649,1,1,26,0,0,0,3,3,-9,1,3,6.973524220309561,6.740374321178635,0,0,0,-835.9158750554079,0,2,3,2019,11,0,16,16,1,0,0,5.225744730071685,5.225744730071685,0,0,0,0,0,1,0,1,6.532689032331406,0,54.37,54.8,-9,-9,3.333333333333333,1,1,0,0,7,13,2,1,777,136754.2191762443,0,0,0,1730.439099863092 -3405,4247,7653,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.0656199966093,-9,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,.6531344563954916,0,40.35,59.99,-9,-9,8.333333333333334,1,1,0,0,11,9,1,0,2767,76667.86095084928,238293.0687676881,0,0,296.3396522512703 -3406,4248,7654,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.4985975786282,7.152831463630553,0,0,-957.0208781325732,0,2,2,2019,6,1,0,0,4,1,0,0,0,1,0,7.935229490816195,0,0,1,1,0,.3291153544207071,7.618012698092192,52.81,19.32,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1171,431877.926635499,50170.86096332545,206332.9969953327,0,1554.411519815176 -3407,4249,7655,7656,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,6.125820757163829,6.122247668773826,7,0,-129.3696096184372,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.433408940934885,6.128577396268627,55.34,22.45,57.47,42.93,6.666666666666667,1,1,0,0,0,10,3,1,643,987404.4917257355,196893.2904123837,471637.4344434029,0,3448.13904784509 -3407,4249,7656,7655,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,8.083357967916225,7.951104511651587,7,0,-93.92223745811495,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.553043083947364,8.053866580466863,57.47,42.93,55.34,22.45,8.333333333333334,1,1,0,0,0,10,3,1,643,987404.4917257355,196893.2904123837,471637.4344434029,0,3448.13904784509 -3408,4250,7657,7660,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,2,-2,-67.84211694524193,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.58,51.02,10,1,1,0,0,1,2,3,0,684.5,1093.762461913419,107900.5630525949,0,0,2384.856843513502 -3408,4250,7658,-9,7657,7660,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-805.8294192779571,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,684.5,1093.762461913419,107900.5630525949,0,0,2384.856843513502 -3408,4250,7659,-9,7657,7660,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.093507514485,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,684.5,1093.762461913419,107900.5630525949,0,0,2384.856843513502 -3408,4250,7660,7657,-9,-9,1,1,27,1,2,0,1,1,-9,0,3,7.90713882065751,7.88861126223973,0,2,2,122.4187165851072,0,-9,-9,2019,8,1,52,40,1,1,0,7.828577183805989,7.828577183805989,0,0,0,0,0,1,1,0,0,0,50.58,51.02,54.79,55.86,6.666666666666667,1,1,0,0,4,2,3,0,684.5,1093.762461913419,107900.5630525949,0,0,2384.856843513502 -3409,4251,7661,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.380176690568417,7.221856890919921,0,0,0,-1017.406493002591,0,2,2,2019,9,0,42,45,1,0,0,5.861741160652563,5.861741160652563,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,0,0,9,4,3,1,1176,577100.928565576,439562.6910952809,163338.020671383,0,576.3736703776026 -3410,4252,7662,-9,7663,7664,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.2050121566111,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,447.75,211386.4069094736,163534.8951779441,146874.8554573339,13389.87749932709,2343.290717368637 -3410,4252,7663,7664,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,0,6.509540266492009,6.284939340663709,2,7,-25.91357223086915,0,-9,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.466377965951138,0,56.75,25.8,50.86,42.61,8.333333333333334,1,1,0,0,3,7,3,0,447.75,211386.4069094736,163534.8951779441,146874.8554573339,13389.87749932709,2343.290717368637 -3410,4252,7664,7663,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.079012349624389,8.004965333280273,0,2,-7,167.9903225475901,0,-9,-9,2019,14,2,35,36,1,2,0,11.94737837077603,11.94737837077603,0,0,0,0,0,1,1,0,0,0,50.86,42.61,56.75,25.8,6.666666666666667,1,1,0,0,2,7,3,0,447.75,211386.4069094736,163534.8951779441,146874.8554573339,13389.87749932709,2343.290717368637 -3410,4252,7665,-9,7663,7664,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.9205315475588,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,0,447.75,211386.4069094736,163534.8951779441,146874.8554573339,13389.87749932709,2343.290717368637 -3411,4253,7666,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,8.452496891609725,8.462440270518302,0,0,-986.2789029074002,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.574628059547205,8.313302875980767,59.75,39.92,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,1053,1861244.03237328,540267.7381267636,857782.5739418108,0,4238.266120494594 -3412,4254,7667,7668,-9,-9,1,0,30,0,1,0,2,2,-9,1,4,5.563709152655497,6.413017637370236,4.392576601600264,4,-5,93.69804273549049,0,-9,-9,2019,11,1,50,0,1,1,0,.7810163299883193,.7810163299883193,0,0,0,0,74.5,1,1,0,4.071883197525509,0,51.49,57.57,51,56,5,1,1,0,0,8,9,3,0,719.5,-23461.70571100913,-35019.4394541495,0,0,2498.947875104896 -3412,4254,7668,7667,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.027599344781201,7.900923368686412,0,4,5,43.52540180018611,0,-9,-9,2019,10,0,40,35,1,1,0,9.539564718197832,9.539564718197832,0,0,0,0,0,1,1,0,0,0,51,56,51.49,57.57,7,4,1,0,0,1,9,3,0,719.5,-23461.70571100913,-35019.4394541495,0,0,2498.947875104896 -3413,4255,7669,7670,-9,-9,1,1,59,0,1,0,3,3,-9,0,5,6.290027087922304,6.323185086113252,0,4,14,-83.40298634648535,0,2,1,2019,7,0,60,60,1,0,0,.9064405199320145,.9064405199320145,0,0,0,0,0,1,1,0,7.576457910135681,0,62.39,56.71,49.36,58.53,10,1,1,0,0,10,9,3,1,1010,618127.7193999861,685685.2585488113,146860.8572166623,95594.78600536287,3031.716970460346 -3413,4255,7670,7669,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.107943309425266,7.81727198364316,5.386062245166763,4,-14,-49.41102662693697,0,-9,-9,2019,8,0,50,50,1,0,0,6.999741897522342,6.999741897522342,0,0,0,0,0,1,1,0,7.242076748098076,0,49.36,58.53,62.39,56.71,8.333333333333334,1,1,0,0,5,9,3,1,1010,618127.7193999861,685685.2585488113,146860.8572166623,95594.78600536287,3031.716970460346 -3414,4256,7671,7672,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,1,1,54.46464419990074,-9,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.95,37.52,38.88,25.92,6.666666666666667,1,1,0,0,0,2,2,1,1549,110220.1776180487,34536.19240982558,60666.68250580754,0,1660.992269684814 -3414,4256,7672,7671,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.108046292008224,6.054386380165863,1,-1,11.02468844336309,-9,3,-9,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.127841268855582,6.106423190701395,38.88,25.92,47.95,37.52,8.333333333333334,1,1,0,0,3,2,2,1,1549,110220.1776180487,34536.19240982558,60666.68250580754,0,1660.992269684814 -3415,4257,7673,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.011056335435,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,0,298,-149516.2057130936,0,0,0,977.5759219967551 -3416,4258,7674,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.583541141034777,7.646284010237924,0,0,-1079.436576546885,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,5.465864008644087,0,48.83610048280551,0,1,1,0,2.877183180854676,7.366326392656874,51,46,-9,-9,7,1,1,0,0,0,5,3,1,549,295783.9530025587,248624.9670943762,226537.5367604136,0,2810.106157666557 -3417,4259,7675,7676,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.199752924448033,5.142771628489442,47,1,-82.9634119642995,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.383616255625545,5.171894457461832,62.57,40.11,33.28,29.62,8.333333333333334,1,1,0,0,9,11,2,1,1083.5,215841.6635165707,109647.9740887351,161865.2744484919,29744.54239146059,2163.047186902049 -3417,4259,7676,7675,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,47,-1,-36.22353487772854,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,2.879834187035898,0,0,1,1,0,4.234703906168788,0,33.28,29.62,62.57,40.11,6.666666666666667,1,1,0,0,0,11,2,1,1083.5,215841.6635165707,109647.9740887351,161865.2744484919,29744.54239146059,2163.047186902049 -3418,4260,7677,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,8.140555120294128,8.354145914569596,0,0,0,-1071.418554419631,-9,3,2,2019,4,0,39,0,1,0,0,11.40625934505891,11.40625934505891,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,3,4,0,0,2,8,4,0,3945,81344.67806777915,0,0,0,1323.43724596806 -3419,4261,7678,7679,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.296834838788863,6.451157774574793,46,-2,-25.01301400788106,0,3,3,2019,13,2,0,57,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.618390308380603,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,8,5,2,1,1133,418819.8320243902,292973.8555105705,179679.6077382978,0,1225.357640740765 -3419,4261,7679,7678,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.431265729749701,6.443510987495798,46,2,-126.0277328180819,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.560032935008629,57.16,56.15,62.1,51.16,10,1,1,0,0,0,5,2,1,1133,418819.8320243902,292973.8555105705,179679.6077382978,0,1225.357640740765 -3420,4262,7680,7683,-9,-9,1,0,38,1,2,0,3,3,-9,0,4,0,0,0,7,-22,-70.52918133285226,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,52.44,35.64,55.1,10,3,4,0,1,0,6,2,0,1192.5,60701.68729258955,53616.1176584867,0,0,1927.973726701105 -3420,4262,7681,-9,7680,7683,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.636371700896,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,2,0,1192.5,60701.68729258955,53616.1176584867,0,0,1927.973726701105 -3420,4262,7682,-9,7680,7683,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.2245079188248,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,2,0,1192.5,60701.68729258955,53616.1176584867,0,0,1927.973726701105 -3420,4262,7683,7680,-9,-9,1,1,60,1,2,0,2,2,-9,0,3,7.573525998165333,7.503840614371255,0,7,22,-53.56790489157638,0,2,2,2019,19,7,37,0,1,7,0,4.480145013527537,4.480145013527537,0,0,0,0,0,1,1,0,0,0,35.64,55.1,50.65,52.44,6.666666666666667,3,4,0,1,6,6,2,0,1192.5,60701.68729258955,53616.1176584867,0,0,1927.973726701105 -3421,4263,7684,-9,7687,7686,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-878.6353003943647,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,2020,43042.83634871167,11780.67265102028,0,0,1417.970224345764 -3421,4263,7685,-9,7687,7686,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.603361109053,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,2020,43042.83634871167,11780.67265102028,0,0,1417.970224345764 -3421,4263,7686,7687,-9,-9,1,1,37,1,3,0,3,3,-9,0,4,7.572346487273307,7.661763431837001,0,10,-7,72.520659438012,0,3,3,2019,11,0,24,35,1,0,0,9.581234817379306,9.581234817379306,0,0,0,0,0,1,1,0,0,0,53.9,52.09,57.76,54.51,5,2,3,0,0,9,6,2,1,2020,43042.83634871167,11780.67265102028,0,0,1417.970224345764 -3421,4263,7687,7686,-9,-9,1,0,44,1,3,0,2,2,-9,0,4,0,0,0,10,7,-236.3307903436771,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,53.9,52.09,0,2,3,0,0,0,6,2,1,2020,43042.83634871167,11780.67265102028,0,0,1417.970224345764 -3421,4263,7688,-9,7687,7686,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.080310714299,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,2020,43042.83634871167,11780.67265102028,0,0,1417.970224345764 -3422,4264,7689,7690,-9,-9,1,0,51,0,1,0,3,3,-9,0,4,7.925189237320664,7.670589695496359,0,17,-3,34.49689266633206,0,2,2,2019,8,0,20,20,1,0,0,16.01891482074767,16.01891482074767,0,0,0,0,0,1,1,0,3.292897417543224,0,55.58,55.48,51.83,57.2,8.333333333333334,1,1,0,0,12,13,4,1,635,566738.2045058033,508313.0850473905,254430.9600646067,138039.5918069994,3268.801286536988 -3422,4264,7690,7689,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.513974922854592,8.161029828655339,0,17,3,60.41214096834168,0,2,2,2019,6,0,53,49,1,0,0,10.75838932914727,10.75838932914727,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.58,55.48,8.333333333333334,1,1,0,0,12,13,4,1,635,566738.2045058033,508313.0850473905,254430.9600646067,138039.5918069994,3268.801286536988 -3423,4265,7691,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.690267936916,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,5,1,1,508,54640.53135487795,0,78531.12781444426,0,853.062937940997 -3424,4266,7692,7693,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.802549697250319,8.740906839398637,0,29,0,-49.24234619240448,0,-9,2,2019,9,0,35,45,1,0,0,17.40871940344184,17.40871940344184,0,0,0,0,0,0,0,0,0,0,41.06,40.47,49.35,59.64,3.333333333333333,1,1,0,0,9,1,4,1,1135,1378746.300632058,1101845.9465405,173265.8123050725,0,3267.242718875421 -3424,4266,7693,7692,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,6.87797084235177,7.215818628591721,0,16,0,-37.26632469004317,0,-9,2,2019,8,0,40,-9,1,0,0,3.102024931981267,3.102024931981267,0,0,0,0,0,0,0,0,6.469644026575438,0,49.35,59.64,41.06,40.47,1.666666666666667,1,1,0,0,7,1,4,1,1135,1378746.300632058,1101845.9465405,173265.8123050725,0,3267.242718875421 -3424,4267,7694,-9,7693,7692,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-992.0555645005029,1,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,2,1,1,1,331,0,0,0,0,0 -3425,4268,7695,7696,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,6.326741604765567,6.680559221567715,20,2,35.30001189481033,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.170968168156978,6.260557672635938,48.76,27.38,54.04,47.89,10,1,1,0,0,0,7,3,1,1007,506815.4140938446,144268.1293266972,417360.8005034704,0,2155.806247537171 -3425,4268,7696,7695,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.377492876683923,7.31000391698034,20,-2,-73.48690015121547,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.975762531016053,7.14371826217337,54.04,47.89,48.76,27.38,0,1,1,0,0,0,7,3,1,1007,506815.4140938446,144268.1293266972,417360.8005034704,0,2155.806247537171 -3426,4269,7697,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,6.434093311817058,7.779608985069904,7.516504098873662,0,0,-864.9816921874785,0,1,2,2019,29,11,20,15,1,11,0,3.549176260989852,3.549176260989852,0,0,0,0,0,1,1,0,7.122300217361239,0,17.79,63.7,-9,-9,3.333333333333333,1,1,0,0,7,4,2,1,92,208433.0938680713,69013.09977249854,233686.2778167549,112122.3301195736,1710.269476386962 -3426,4269,7698,-9,7697,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.091897366638,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,1,92,208433.0938680713,69013.09977249854,233686.2778167549,112122.3301195736,1710.269476386962 -3426,4269,7699,-9,7697,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.610668520242,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,92,208433.0938680713,69013.09977249854,233686.2778167549,112122.3301195736,1710.269476386962 -3427,4270,7700,7703,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.534290835905329,8.322113603551514,0,11,1,-89.35850440809108,0,2,3,2019,7,0,40,38,1,0,0,11.9533756901138,11.9533756901138,0,0,0,0,0,1,1,0,5.973270702296801,0,39.16,62.84,54.2,57.49,8.333333333333334,2,3,0,0,11,5,4,1,578.5,373743.4320443292,167526.1340334502,274976.6817430715,96205.55702406348,4333.28371992313 -3427,4270,7701,-9,7703,7700,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.015884375021,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,578.5,373743.4320443292,167526.1340334502,274976.6817430715,96205.55702406348,4333.28371992313 -3427,4270,7702,-9,7703,7700,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.037128223583,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,4,1,578.5,373743.4320443292,167526.1340334502,274976.6817430715,96205.55702406348,4333.28371992313 -3427,4270,7703,7700,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.572572690489807,8.477076485073223,0,11,-1,-5.665937067727126,0,2,2,2019,7,0,30,22,1,0,0,25.74525760133387,25.74525760133387,0,0,0,0,0,1,1,0,2.715805726239693,0,54.2,57.49,39.16,62.84,8.333333333333334,1,1,0,0,11,5,4,1,578.5,373743.4320443292,167526.1340334502,274976.6817430715,96205.55702406348,4333.28371992313 -3428,4271,7704,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-846.4612393205375,-9,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,37.57,51.67,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,239,336894.9862866008,0,459023.4617669545,0,970.7618851146692 -3429,4272,7705,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,3.548227610033774,3.974431330769248,0,0,-960.0692930300764,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.779922663501459,3.460703638533465,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,768,-46352.75308758722,117666.7260160967,70020.73577249446,0,1407.69376663794 -3429,4273,7706,-9,7707,-9,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.262711201019,0,1,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.639518342231968,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,720,360147.8197513587,310111.7816531351,32672.68216963389,0,2273.526150027035 -3429,4273,7707,-9,-9,7705,1,0,42,0,0,0,1,1,-9,0,5,8.631632555768041,8.575390273887532,0,0,0,-994.9664785305721,0,-9,2,2019,12,0,48,43,1,0,0,14.0637993114829,14.0637993114829,0,0,0,0,0,1,1,0,7.138428330944388,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,720,360147.8197513587,310111.7816531351,32672.68216963389,0,2273.526150027035 -3430,4274,7708,7709,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.467607966433496,9.786543580456241,39,-2,-104.5253147644102,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.37014733491688,9.54527474298329,49.97,56.66,30.34,50.86,8.333333333333334,1,1,0,0,5,9,5,0,605.5,4427919.733954513,2493465.990970252,739999.3412411788,0,13020.7043184689 -3430,4274,7709,7708,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,38,2,-19.25982039603338,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.391636035064103,0,30.34,50.86,49.97,56.66,6.666666666666667,2,3,0,0,0,9,5,0,605.5,4427919.733954513,2493465.990970252,739999.3412411788,0,13020.7043184689 -3431,4275,7710,7711,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.834737165356978,8.633618134283873,0,41,0,65.36505484897364,0,2,2,2019,7,0,50,55,1,0,0,16.46893810116126,16.46893810116126,0,0,0,0,0,1,1,0,0,0,60.12,54.8,23.71,31.2,8.333333333333334,1,1,0,0,10,6,4,0,428.5,1354199.323879266,655207.7442735934,347684.7679763606,0,2813.658187275635 -3431,4275,7711,7710,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,0,0,41,0,-57.59937801599727,0,2,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.71,31.2,60.12,54.8,1.666666666666667,1,1,0,0,8,6,4,0,428.5,1354199.323879266,655207.7442735934,347684.7679763606,0,2813.658187275635 -3431,4276,7712,-9,7711,7710,1,1,29,0,0,0,1,1,-9,0,3,8.070951996836259,8.420269361989936,0,0,0,-868.4823641251313,0,2,1,2019,12,0,51,51,1,0,1,6.572753698520453,6.572753698520453,0,0,0,0,0,1,1,0,0,0,7.88,59.77,-9,-9,5,1,1,0,0,7,6,4,0,380,422950.6792089253,143430.5340375521,0,0,1288.633121557089 -3431,4277,7713,-9,7711,7710,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-952.6953440399128,0,1,1,2019,32,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,10.06,47.18,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,198,-108747.6051550088,0,0,0,735.1777383335866 -3432,4278,7714,7715,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.925151164763143,8.721747697536452,0,2,4,132.55247294394,0,-9,-9,2019,9,1,37,38,1,1,0,20.82828500838205,20.82828500838205,0,0,0,0,0,1,1,0,0,0,52.88,21.1,25.85,45.03,5,1,1,0,0,12,11,5,1,305.5,407205.4250451662,80297.4921474307,322383.4648907182,245976.7872827314,4130.442688943312 -3432,4278,7715,7714,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.302855690214086,8.433957515332683,0,21,-4,-58.65132413060931,0,3,3,2019,22,7,98,30,1,7,0,4.769234380165967,4.769234380165967,0,0,0,0,0,1,1,0,0,0,25.85,45.03,52.88,21.1,3.333333333333333,1,1,0,0,12,11,5,1,305.5,407205.4250451662,80297.4921474307,322383.4648907182,245976.7872827314,4130.442688943312 -3432,4279,7716,-9,7715,7714,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-993.2428842449385,0,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,1,2171,345721.3914627923,0,0,0,0 -3432,4280,7717,-9,7715,7714,1,1,22,0,0,0,2,2,1,0,3,0,0,0,0,0,-1046.055536985399,-9,1,1,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,42.48,51.93,-9,-9,5,1,1,1,0,0,11,1,1,1491,-68651.37235256327,0,0,0,369.164944918977 -3432,4281,7718,-9,7715,7714,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-911.8629095205622,-9,1,1,2019,18,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,-9,-9,3.333333333333333,1,1,1,0,0,11,1,1,95,-256473.9983921298,0,0,0,192.2178757598359 -3433,4282,7719,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.219771693674385,8.270502946039683,0,0,0,-1004.430711855241,0,-9,2,2019,7,0,38,38,1,0,0,13.64328487587772,13.64328487587772,0,0,0,0,0,1,1,0,0,0,58.72,51.29,-9,-9,5,3,4,0,0,10,9,4,1,242.5,509800.5513572859,-18316.43387062277,372017.4880616422,-2809.945209416205,1316.092638409039 -3433,4282,7720,-9,7719,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1070.204254159412,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,3,4,-9,0,0,9,4,1,242.5,509800.5513572859,-18316.43387062277,372017.4880616422,-2809.945209416205,1316.092638409039 -3434,4283,7721,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.79026168283192,4.350841011033442,0,0,-923.3782771598241,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.796343230499579,4.836460746857586,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,956,228114.0253249934,0,166043.0953699298,0,878.223848250545 -3435,4284,7722,7723,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.448125641838804,7.692908677159213,43,-7,-138.8586875871587,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.339605991235584,7.316735388810059,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,5,3,1,861.5,898115.7170780562,794368.9447434376,93044.0053340186,17765.3062243489,1768.933563886331 -3435,4284,7723,7722,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.109796858115998,6.323046298778073,42,7,28.73042708785859,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.875446261476312,6.406789168039748,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,5,5,3,1,861.5,898115.7170780562,794368.9447434376,93044.0053340186,17765.3062243489,1768.933563886331 -3436,4285,7724,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-723.8935377114057,0,3,3,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,62.16,18.98,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1558,139859.3892936033,100208.6006509307,0,0,1880.40135375787 -3437,4286,7725,7726,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.464155054007812,6.319096174740355,47,1,-12.02972413830334,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.221008296187148,48.52,45.05,50.37,31.12,8.333333333333334,1,1,0,0,0,9,2,0,977,1161373.408174224,124644.4148364094,871861.3438427977,0,2018.607411303325 -3437,4286,7726,7725,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,47,-1,30.23088143937068,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,50.37,31.12,48.52,45.05,7,1,1,0,0,0,9,2,0,977,1161373.408174224,124644.4148364094,871861.3438427977,0,2018.607411303325 -3438,4287,7727,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.350587811277056,6.102690179337702,0,0,-995.5337798543692,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.5465512021169299,5.798756989321261,62.42,42.94,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1774,-10166.79243847114,124841.1402257998,0,0,627.3345075065984 -3439,4288,7728,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,0,0,0,0,0,-850.27954764726,-9,2,-9,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,-9,-9,6.666666666666667,3,4,1,0,5,8,1,0,364,-122374.1176078717,0,0,0,548.3391022382405 -3440,4289,7729,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.106030200588983,4.148481335086737,0,0,-988.2919206381492,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,3.164392489611274,8.666966339324318,30.99116707450344,0,1,1,0,4.04713959110507,4.008870799498608,51,46,-9,-9,8,1,1,0,0,0,4,2,0,967,153677.7228856458,95744.22762071497,157899.8800974253,0,1559.799482668445 -3441,4290,7730,7731,-9,-9,1,1,47,0,3,0,2,2,-9,0,3,7.626780511840075,7.799304454313668,0,9,13,12.53881475664921,0,2,-9,2019,16,4,38,37,1,4,0,6.797750662668895,6.797750662668895,0,0,0,0,0,1,0,1,0,0,13.98,55.73,33.22,59.64,1.666666666666667,1,1,0,0,10,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3441,4290,7731,7730,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.108743770405562,7.564362713046086,5.260656081186223,9,-13,-43.94518203403996,0,2,2,2019,9,0,21,18,1,0,0,8.419175035336492,8.419175035336492,0,0,0,0,7,1,0,1,5.799678337750952,0,33.22,59.64,13.98,55.73,6.666666666666667,1,1,0,0,11,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3441,4290,7732,-9,7731,7730,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.9440173763,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3441,4290,7733,-9,7731,7730,1,0,17,0,3,1,2,0,0,1,3,0,0,0,0,0,-1011.214412365352,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,.9637202197999785,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3441,4290,7734,-9,7731,7730,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.8148552355208,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3441,4290,7735,-9,7731,7730,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-794.3152632834417,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1028.333333333333,52837.59723885982,82315.1789149434,0,0,4593.182081284839 -3442,4291,7736,7737,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.341337166592368,8.145428739208485,0,28,1,101.8480051087084,0,2,2,2019,6,0,40,40,1,0,0,12.16337731711033,12.16337731711033,0,0,0,0,0,0,0,0,4.264641533348733,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,9,12,5,1,863.5,490813.529064171,381691.4514932329,304638.3665478338,89770.08989347363,3521.422984710314 -3442,4291,7737,7736,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.518648896168786,8.181111821555037,0,28,-1,145.9765146638676,-9,-9,-9,2019,7,0,50,0,1,0,0,11.38404317984205,11.38404317984205,0,0,0,0,2,0,0,0,4.625808414092784,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,863.5,490813.529064171,381691.4514932329,304638.3665478338,89770.08989347363,3521.422984710314 -3442,4292,7738,-9,7736,7737,1,0,19,0,0,0,2,2,-9,0,4,7.514268520039545,7.974474105439762,0,0,0,-920.0726720972586,0,2,2,2019,12,2,40,35,1,2,1,5.062793212137784,5.062793212137784,0,0,0,0,0,0,0,0,.8844552357638361,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,616,75796.97286112861,0,0,0,418.659132937689 -3442,4293,7739,-9,7736,7737,1,1,21,0,0,0,2,2,-9,0,4,8.214112777150456,8.089766139105688,0,0,0,-978.1066870269782,-9,2,2,2019,10,0,35,0,1,0,1,11.25653234121595,11.25653234121595,0,0,0,0,0,0,0,0,1.194422677485864,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,2,12,4,1,682,102543.0153379404,22952.99769082558,0,0,1888.917934921322 -3443,4294,7740,-9,7742,7741,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1136.880751355919,-9,2,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,56.74,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,297.6666666666667,188407.9190854003,79413.73157242738,0,0,1434.043742839261 -3443,4294,7741,7742,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,30,4,-28.21377484214747,0,2,3,2019,13,2,0,37,3,2,0,0,0,0,0,0,0,0,1,1,0,1.177030397230764,0,57.33,42.53,54.2,57.49,3.333333333333333,1,1,1,0,4,6,3,1,297.6666666666667,188407.9190854003,79413.73157242738,0,0,1434.043742839261 -3443,4294,7742,7741,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.031457416116641,8.000357507783828,0,30,-4,312.3316084160364,0,2,2,2019,12,3,50,30,1,3,0,5.089791708456645,5.089791708456645,0,0,0,0,0,1,1,0,3.002840469510605,0,54.2,57.49,57.33,42.53,5,1,1,0,0,9,6,3,1,297.6666666666667,188407.9190854003,79413.73157242738,0,0,1434.043742839261 -3444,4295,7743,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.542769328736448,4.55557630150706,0,0,-1001.33107203637,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.246196187355619,4.588816667673975,42.73,51.79,-9,-9,10,1,1,0,0,9,9,2,1,399,57432.16800359085,21599.5278303989,0,0,428.4545971782959 -3445,4296,7744,7745,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,0,-135.0662006225925,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.64,44.67,65.77,35,6.666666666666667,1,1,0,0,0,7,3,1,564,845862.393725647,282042.3435189721,425555.797169854,0,2006.951575354736 -3445,4296,7745,7744,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.654790756449025,7.270435299792678,9,0,165.6572056191033,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.781160124507537,7.406659524435244,65.77,35,58.64,44.67,10,1,1,0,0,0,7,3,1,564,845862.393725647,282042.3435189721,425555.797169854,0,2006.951575354736 -3445,4297,7746,-9,7744,7745,1,1,52,0,0,0,2,2,-9,0,4,8.486348414895858,8.523407948800175,0,0,0,-953.4303174856063,0,2,2,2019,6,0,60,60,1,0,0,10.61781312772099,10.61781312772099,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,444,1110107.215663946,798016.8805372245,305303.8414777557,0,2113.971628769877 -3446,4298,7747,7748,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.910699877897132,5.955422776637005,7,1,-124.432312574069,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.106679118459764,5.947850160807627,57.16,56.15,58.39,41.27,10,1,1,0,0,0,9,4,1,456.5,1570423.786813685,959353.4640840259,482528.7556313406,0,3957.56189704488 -3446,4298,7748,7747,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.530138384068579,8.615811739827349,7,-1,261.5467426929127,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.667740911132984,8.524954294048724,58.39,41.27,57.16,56.15,10,1,1,0,0,1,9,4,1,456.5,1570423.786813685,959353.4640840259,482528.7556313406,0,3957.56189704488 -3447,4299,7749,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.804756605426593,7.138155225886383,0,0,-1010.516814880598,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.404771251703918,7.087196848377544,58.72,51.29,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,1057,121266.6116144987,-21839.73512385506,100550.646454221,0,1475.001460761468 -3448,4300,7750,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.913887183365889,8.804498886558864,0,0,0,-1158.715389179566,0,-9,-9,2019,11,1,30,30,1,1,0,26.65038337557565,26.65038337557565,0,0,0,0,0,1,1,0,1.248128834247992,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,323,735205.2110795307,625647.4189149559,111846.5986581334,147492.5520072432,2712.853577296793 -3449,4301,7751,-9,7752,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.419695692255,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,1,1094.666666666667,-51682.77569305857,0,0,0,1723.068868491983 -3449,4301,7752,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.001979231335093,7.211730771436926,5.61152002772009,0,0,-1022.528361994775,0,2,3,2019,14,2,16,16,1,2,0,6.75230397539939,6.75230397539939,0,0,0,0,2,1,1,0,5.629433686499936,0,47.56,41.5,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,1094.666666666667,-51682.77569305857,0,0,0,1723.068868491983 -3449,4301,7753,-9,7752,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.4201935158233,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,1,1094.666666666667,-51682.77569305857,0,0,0,1723.068868491983 -3450,4302,7754,7755,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,48,0,-1.103433897545341,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.601008936146987,0,54.79,55.86,39.8,18.56,10,1,1,0,0,0,2,2,1,523,-10974.95449202468,0,0,0,1648.303467539436 -3450,4302,7755,7754,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,4.520080736886012,4.165197886023247,48,0,-38.70017818799796,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,6.463626971982454,0,2,1,1,0,6.099548863331478,4.243799830704508,39.8,18.56,54.79,55.86,8.333333333333334,1,1,0,0,0,2,2,1,523,-10974.95449202468,0,0,0,1648.303467539436 -3451,4303,7756,-9,7757,7760,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-989.3743815952552,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,820.8,12663.48798825207,50101.36834281137,0,0,1606.334833839127 -3451,4303,7757,7760,-9,-9,1,0,34,2,4,0,3,3,-9,0,3,0,0,0,1,-4,-47.45561461928771,-9,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,39.15,41.42,5,1,1,0,0,0,11,2,0,820.8,12663.48798825207,50101.36834281137,0,0,1606.334833839127 -3451,4303,7758,-9,7757,7760,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.173583474488,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,820.8,12663.48798825207,50101.36834281137,0,0,1606.334833839127 -3451,4303,7759,-9,7757,7760,1,1,7,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1121.517098989214,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,820.8,12663.48798825207,50101.36834281137,0,0,1606.334833839127 -3451,4303,7760,7757,-9,-9,1,1,38,2,4,0,2,2,-9,0,3,6.228864163664091,5.98864412763294,0,1,4,16.30349991494452,-9,-9,-9,2019,11,0,16,0,1,2,0,3.355232288640562,3.355232288640562,0,0,0,0,0,1,1,0,0,0,39.15,41.42,41.34,56.62,6.666666666666667,1,1,0,0,7,11,2,0,820.8,12663.48798825207,50101.36834281137,0,0,1606.334833839127 -3452,4304,7761,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1078.981531680188,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,15.37997681938213,0,0,0,1,1,0,0,0,39.16,25.84,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,213,0,0,0,0,1184.508826832592 -3453,4305,7762,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,6.303447769137639,6.35275697159458,0,0,-906.7996695135025,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.928489593621259,6.370366872841135,45.41,45.49,-9,-9,5,1,1,0,0,7,5,2,1,551,-175665.6903501451,0,0,0,336.1894690223373 -3454,4306,7763,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,5,7.918215466692456,7.818840191943504,0,0,0,-1084.281416578212,0,-9,3,2019,8,0,32,31,1,0,1,8.007820192292225,8.007820192292225,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,5,3,1,4618,10926.82317095487,-77788.49162737693,0,0,1431.950761585763 -3455,4307,7764,7765,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.80612352685156,7.923266224758294,0,24,-5,-16.6889922241682,0,1,1,2019,8,0,40,47,1,0,0,6.626841431738567,6.626841431738567,0,0,0,0,0,1,1,0,3.152208844855974,0,55.36,51.57,53,54,8.333333333333334,1,1,0,0,7,7,5,1,882.5,2615833.288056137,2082407.950321996,327176.7494026988,0,5258.126158754292 -3455,4307,7765,7764,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.280726016533485,9.394910292050707,0,24,5,135.5087609444635,0,2,3,2019,9,0,37,38,1,1,0,32.51723816209628,32.51723816209628,0,0,0,0,0,1,1,0,0,0,53,54,55.36,51.57,8,1,1,0,0,1,7,5,1,882.5,2615833.288056137,2082407.950321996,327176.7494026988,0,5258.126158754292 -3456,4308,7766,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,5.784612828534882,5.862298597899406,0,0,0,-1095.259443086601,0,2,2,2019,10,1,30,30,1,1,0,1.237396066742126,1.237396066742126,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,225,178593.3125464948,35820.52887622759,0,0,359.5688355767553 -3457,4309,7767,7768,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,6.979262670119973,7.501172598607772,7.291625743944128,48,-3,9.049741225936039,0,3,3,2019,7,1,8,20,1,1,0,13.65030108480786,13.65030108480786,0,0,0,0,0,1,1,0,7.195212197792195,7.031317930535217,54.1,59.11,44.08,41.97,10,3,4,0,0,10,8,3,1,239,1411587.835932859,134850.9251420324,853696.3213436392,0,3018.290754958371 -3457,4309,7768,7767,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.452585100531432,7.378668839806722,48,3,110.1757404692553,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.602917614236301,44.08,41.97,54.1,59.11,5,3,4,0,0,0,8,3,1,239,1411587.835932859,134850.9251420324,853696.3213436392,0,3018.290754958371 -3458,4310,7769,7770,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.950538409109551,8.78431480219939,0,32,1,40.2857453853996,0,3,3,2019,9,1,39,35,1,1,0,19.56581064108394,19.56581064108394,0,0,0,0,0,0,0,0,5.6525221078823,0,59.53,56.44,57.33,53.46,8.333333333333334,1,1,0,0,10,12,5,1,1618.5,529917.8619058875,79785.64797478358,185322.5233566692,101923.0318310308,6289.362857600889 -3458,4310,7770,7769,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,9.039899446005331,9.218967382405447,0,32,-1,43.29649615835338,0,2,-9,2019,7,0,50,45,1,0,0,18.35276467222594,18.35276467222594,0,0,0,0,0,0,0,0,5.077408298317205,0,57.33,53.46,59.53,56.44,8.333333333333334,1,1,0,0,10,12,5,1,1618.5,529917.8619058875,79785.64797478358,185322.5233566692,101923.0318310308,6289.362857600889 -3459,4311,7771,7774,-9,-9,1,0,40,0,2,0,1,1,1,0,4,8.340213502031016,8.567080623123115,0,18,1,-130.5299256411434,-9,1,2,2019,9,0,51,0,1,0,0,7.187664178609889,7.187664178609889,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.32,53.44,8.333333333333334,1,1,0,0,7,4,5,1,1086,239659.7353911148,161251.8502569748,215317.4129466807,141738.9544887469,4412.084076573732 -3459,4311,7772,-9,7771,7774,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.263903386921,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1086,239659.7353911148,161251.8502569748,215317.4129466807,141738.9544887469,4412.084076573732 -3459,4311,7773,-9,7771,7774,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.415233456459,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1086,239659.7353911148,161251.8502569748,215317.4129466807,141738.9544887469,4412.084076573732 -3459,4311,7774,7771,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,9.0801176544651,8.96804844913412,0,17,-1,31.33933908305351,0,2,2,2019,11,0,45,55,1,0,0,19.01809840246995,19.01809840246995,0,0,0,0,0,1,1,0,0,0,46.32,53.44,57.16,56.15,5,1,1,0,0,12,4,5,1,1086,239659.7353911148,161251.8502569748,215317.4129466807,141738.9544887469,4412.084076573732 -3460,4312,7775,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.647457312786539,8.354067062826177,0,0,0,-1050.792767514203,-9,1,2,2019,21,9,35,0,1,9,0,12.52236823773736,12.52236823773736,0,0,0,0,0,0,0,0,0,0,35.44,57.37,-9,-9,5,1,1,0,0,7,12,5,0,270,-257846.8435319979,0,0,0,1936.33349193436 -3461,4313,7776,7777,-9,-9,1,0,46,0,0,0,3,3,-9,0,1,0,0,0,29,-7,7.533537105382702,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.26,35.83,54,54,10,2,3,1,1,4,9,2,1,754,387280.9014226466,232919.4519993874,0,0,1001.020340200645 -3461,4313,7777,7776,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.201864749808467,7.675260934656738,0,6,7,-30.25241817886005,0,3,-9,2019,9,0,40,60,1,1,0,4.826133921271888,4.826133921271888,0,0,0,0,0,1,1,0,2.224577442971261,0,54,54,35.26,35.83,8,1,1,0,0,1,9,2,1,754,387280.9014226466,232919.4519993874,0,0,1001.020340200645 -3461,4314,7778,-9,7776,7777,1,1,24,0,0,0,1,1,-9,0,4,7.928672342945267,7.857088754746506,0,0,0,-1031.255114224025,0,2,3,2019,10,0,40,40,1,1,1,9.358200225214558,9.358200225214558,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,9,4,1,3676,-38359.78253056224,105473.8481150582,0,0,3172.625384000547 -3461,4315,7779,-9,7776,7777,1,1,21,0,0,0,2,2,1,0,4,6.586402516432102,7.126460127306446,0,0,0,-1229.449777207891,-9,2,2,2019,10,0,18,0,1,1,1,6.482013919930655,6.482013919930655,0,0,0,0,71.5,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,3,9,2,1,960,-100236.1086134396,0,0,0,583.7773021486792 -3461,4316,7780,-9,7776,7777,1,0,18,0,0,0,2,2,1,0,5,7.347898819740888,6.876430791762313,0,0,0,-1012.943033263266,-9,3,2,2019,18,7,40,0,1,7,1,4.059736001565804,4.059736001565804,0,0,0,0,0,1,1,0,0,0,64.88,36.63,-9,-9,10,2,3,0,0,1,9,3,1,438,57611.30345664947,0,0,0,356.4877069401851 -3462,4317,7781,-9,7782,7784,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.563393264812,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,2,0,649.25,30207.43630247865,0,0,0,1449.513252436662 -3462,4317,7782,7784,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,7.592469102286525,7.383893347558357,0,10,-13,19.09393855835769,0,2,-9,2019,12,0,20,19,1,0,0,8.854598468097453,8.854598468097453,0,0,0,0,0,1,1,0,0,0,37.9,50.3,60.45,43.75,5,1,1,0,1,11,5,2,0,649.25,30207.43630247865,0,0,0,1449.513252436662 -3462,4317,7783,-9,7782,7784,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.054201219986,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,649.25,30207.43630247865,0,0,0,1449.513252436662 -3462,4317,7784,7782,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,6.527896624703985,6.320401484575151,0,10,13,-47.22360455286989,0,-9,-9,2019,10,2,50,50,1,2,0,1.518819686668716,1.518819686668716,0,0,0,0,0,1,1,0,0,0,60.45,43.75,37.9,50.3,8.333333333333334,1,1,0,0,11,5,2,0,649.25,30207.43630247865,0,0,0,1449.513252436662 -3463,4318,7785,7786,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.754696590917826,8.730620089461173,4,1,-4.630609213114959,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.87643605354901,8.483706281844471,57.16,56.15,53.98,50.87,8.333333333333334,1,1,0,0,3,6,5,1,721,939734.8960498857,492075.6612792921,314754.8524767635,121506.912904397,5296.948668141298 -3463,4318,7786,7785,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.873597601831905,9.034616849528154,0,4,-1,-2.940277417484907,0,2,3,2019,8,0,40,43,1,0,0,21.46451770466458,21.46451770466458,0,0,0,0,0,0,0,0,0,0,53.98,50.87,57.16,56.15,5,4,2,0,0,7,6,5,1,721,939734.8960498857,492075.6612792921,314754.8524767635,121506.912904397,5296.948668141298 -3464,4319,7787,-9,7788,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1049.473046552104,-9,2,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1575.5,-3209.039447701885,0,95193.1809158024,90702.32441471305,783.121665269307 -3464,4319,7788,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,0,0,0,0,0,-954.5370841683405,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,1,0,4,13,1,0,1575.5,-3209.039447701885,0,95193.1809158024,90702.32441471305,783.121665269307 -3465,4320,7789,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,8.062596876168142,7.791045855019183,0,0,0,-976.5334292769217,0,2,2,2019,14,2,39,39,1,2,0,8.736409430795083,8.736409430795083,0,0,0,0,0,0,0,0,0,0,49.09,33.36,-9,-9,1.666666666666667,1,1,0,1,9,5,4,1,1631,121750.8593559203,0,0,0,1634.371611104314 -3466,4321,7790,7791,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.910040629849888,7.671080155897828,0,33,-3,64.66839742954357,0,3,2,2019,9,0,39,42,1,0,0,8.435109231690632,8.435109231690632,0,0,0,0,0,0,0,0,0,0,48.29,30.47,28.38,45.67,8.333333333333334,1,1,0,0,12,2,4,1,707,85692.8668522416,68682.91576840275,105169.5493968262,57359.95067382143,2193.199530509675 -3466,4321,7791,7790,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.91456855397694,7.725501360940044,0,33,3,63.81189833710513,0,3,-9,2019,17,6,37,40,1,6,0,7.903563854762916,7.903563854762916,0,0,0,0,0,0,0,0,0,0,28.38,45.67,48.29,30.47,5,1,1,0,0,10,2,4,1,707,85692.8668522416,68682.91576840275,105169.5493968262,57359.95067382143,2193.199530509675 -3467,4322,7792,-9,7794,7796,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.738946514624,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1456.6,49712.52453600311,-17434.71925405027,0,0,2855.346868692254 -3467,4322,7793,-9,7794,7796,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.780205842307,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,1456.6,49712.52453600311,-17434.71925405027,0,0,2855.346868692254 -3467,4322,7794,7796,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,7.596310708966594,7.562901505933779,0,7,0,-117.4811681750113,0,2,2,2019,8,0,34,5,1,0,0,6.756135218703587,6.756135218703587,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52,55,6.666666666666667,1,1,0,0,8,7,2,0,1456.6,49712.52453600311,-17434.71925405027,0,0,2855.346868692254 -3467,4322,7795,-9,7794,7796,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-813.7531328136852,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1456.6,49712.52453600311,-17434.71925405027,0,0,2855.346868692254 -3467,4322,7796,7794,-9,-9,1,1,45,1,3,0,3,3,-9,0,4,6.999158951614517,7.242915719153443,0,7,9,-110.0285068917437,0,-9,-9,2019,9,0,12,12,1,1,0,10.6496717686868,10.6496717686868,0,0,0,0,0,1,1,0,.8002730726673406,0,52,55,54.79,55.86,8,1,1,0,0,6,7,2,0,1456.6,49712.52453600311,-17434.71925405027,0,0,2855.346868692254 -3468,4323,7797,-9,7799,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.6768621403542,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,168.3333333333333,115274.7323491283,124528.8572959365,93015.6324722671,31475.02294188088,1832.105881753942 -3468,4323,7798,-9,7799,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.9479273134017,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,168.3333333333333,115274.7323491283,124528.8572959365,93015.6324722671,31475.02294188088,1832.105881753942 -3468,4323,7799,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,8.293165375869467,8.668969214699633,0,0,0,-1015.131330602301,0,2,1,2019,36,12,37,38,1,12,0,13.87853466897623,13.87853466897623,0,0,0,0,0,1,1,0,0,0,3.31,69.02,-9,-9,0,1,1,0,1,12,2,4,1,168.3333333333333,115274.7323491283,124528.8572959365,93015.6324722671,31475.02294188088,1832.105881753942 -3469,4324,7800,7801,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.076883511798023,8.121451750242267,0,5,4,-7.98551368493577,0,-9,-9,2019,8,1,48,48,1,1,0,8.274907008695877,8.274907008695877,0,0,0,0,0,0,0,0,0,0,52.82,53.97,46,58,8.333333333333334,1,1,0,0,10,11,4,1,443,-117216.9495942108,-58054.84742000255,0,0,1853.751069993681 -3469,4324,7801,7800,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.251688201767082,7.245490345993493,0,5,-4,2.43502946731139,0,-9,-9,2019,11,0,36,36,1,2,0,3.855211267419142,3.855211267419142,0,0,0,0,0,0,0,0,0,0,46,58,52.82,53.97,7,1,1,0,0,1,11,4,1,443,-117216.9495942108,-58054.84742000255,0,0,1853.751069993681 -3470,4325,7802,7804,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,7.087589282049935,7.096094251467675,0,25,-4,-77.52250301547562,-9,-9,-9,2019,7,0,16,0,1,0,0,7.868680931848073,7.868680931848073,0,0,0,0,0,1,1,0,0,0,62.58,34.57,54.1,59.11,10,1,1,0,0,9,10,3,1,2220.666666666667,799156.2276493823,733044.792652994,181905.5484672865,104079.7483413939,1966.218856418526 -3470,4325,7803,-9,7802,7804,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.168078856891,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,10,3,1,2220.666666666667,799156.2276493823,733044.792652994,181905.5484672865,104079.7483413939,1966.218856418526 -3470,4325,7804,7802,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,7.192823801306802,8.193780914556099,6.732182953803915,21,4,81.04824795720026,-9,-9,-9,2019,9,1,40,0,1,1,0,4.125279190705361,4.125279190705361,0,0,0,0,0,1,1,0,6.57709042972105,0,54.1,59.11,62.58,34.57,6.666666666666667,1,1,0,0,8,10,3,1,2220.666666666667,799156.2276493823,733044.792652994,181905.5484672865,104079.7483413939,1966.218856418526 -3470,4326,7805,-9,7802,7804,1,1,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1000.8838829657,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.9,48.78,-9,-9,6.666666666666667,3,4,0,0,9,10,1,1,1328,-70722.92496495461,0,0,0,542.9466504965242 -3471,4327,7806,7807,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.946849418035289,8.240356197068554,0,8,-2,37.21289031911027,0,3,2,2019,11,0,40,38,1,0,0,8.510396879223878,8.510396879223878,0,0,0,0,0,0,0,0,4.812234385146702,0,52.38,55.6,46.5,58.26,6.666666666666667,1,1,0,0,9,9,4,0,579.5,-133297.692289132,-31946.46305445511,0,0,2763.313876834742 -3471,4327,7807,7806,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.474374802813949,7.649996914750716,0,8,2,13.97521085280262,0,2,2,2019,11,1,30,30,1,1,0,6.924929694216719,6.924929694216719,0,0,0,0,0,0,0,0,6.887056792557423,0,46.5,58.26,52.38,55.6,8.333333333333334,1,1,0,0,7,9,4,0,579.5,-133297.692289132,-31946.46305445511,0,0,2763.313876834742 -3471,4328,7808,-9,7807,7806,1,1,25,0,0,0,2,2,-9,0,4,7.740817383707808,7.97691114826881,0,0,0,-936.9606789870986,0,2,2,2019,11,0,47,43,1,0,1,5.975122155512294,5.975122155512294,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,587,-144856.9259343357,0,0,0,496.8141545336769 -3472,4329,7809,-9,7810,7811,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.7780808159963,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,409.3333333333333,44514.60710656958,45632.5998836107,104834.7092487688,20681.83582947663,4314.605198963231 -3472,4329,7810,7811,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,8.481915909047247,8.307020703174189,0,13,-17,15.00942550151299,0,2,2,2019,7,0,47,39,1,0,0,13.16110437452364,13.16110437452364,0,0,0,0,0,1,1,0,3.473149369053759,0,51.94,55.88,53,54,6.666666666666667,1,1,0,0,7,10,5,0,409.3333333333333,44514.60710656958,45632.5998836107,104834.7092487688,20681.83582947663,4314.605198963231 -3472,4329,7811,7810,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.83611680216584,8.667898784196115,0,6,17,11.88290906993214,0,-9,-9,2019,9,0,55,50,1,1,0,12.82071225208843,12.82071225208843,0,0,0,0,0,1,1,0,2.115362178111203,0,53,54,51.94,55.88,8,1,1,0,0,1,10,5,0,409.3333333333333,44514.60710656958,45632.5998836107,104834.7092487688,20681.83582947663,4314.605198963231 -3473,4330,7812,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-949.5010834524721,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,35.23,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1433,73795.9373213051,0,0,0,1052.153122166757 -3474,4331,7813,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,8.655188708024271,8.471857647882061,0,0,-1059.923953628507,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.12612706067778,8.337775790737771,59.44,44.14,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,319,1012592.620610216,558859.4578286679,355081.0756341778,0,2966.83321942925 -3475,4332,7814,7815,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.678071624931817,6.445165990716055,10,4,-20.51486411823318,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,121.7084523664779,0,0,1,1,0,2.360705050283336,6.562071516397957,50,47,62.39,56.71,7,1,1,0,0,0,4,3,1,514.5,918203.3012369801,600989.9029714328,171008.0401815108,0,2290.873907438712 -3475,4332,7815,7814,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.360563634156143,7.466506658155681,46,-4,2.904089792610988,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.221275141349266,7.365444600678353,62.39,56.71,50,47,8.333333333333334,1,1,0,0,9,4,3,1,514.5,918203.3012369801,600989.9029714328,171008.0401815108,0,2290.873907438712 -3476,4333,7816,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,7.885460730255761,8.135076211174306,0,0,0,-956.5349941368096,-9,2,2,2019,13,4,40,0,1,4,0,7.6355972373546,7.6355972373546,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,601,-42637.01919266625,-142988.5563110159,0,0,1171.754922955723 -3477,4334,7817,-9,7819,7820,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.558323210247,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,436.75,195653.9614629751,95641.80856493395,165340.3526963065,123934.3411373765,2104.896038521302 -3477,4334,7818,-9,7819,7820,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.7841553450386,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,436.75,195653.9614629751,95641.80856493395,165340.3526963065,123934.3411373765,2104.896038521302 -3477,4334,7819,7820,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,7,0,-147.2607257383378,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,56.95,48.21,50.73,5,1,1,1,0,7,6,3,0,436.75,195653.9614629751,95641.80856493395,165340.3526963065,123934.3411373765,2104.896038521302 -3477,4334,7820,7819,-9,-9,1,1,32,0,2,0,1,1,-9,0,3,8.272701916744413,8.453458982948174,0,7,0,-23.28884425261216,0,2,2,2019,13,1,42,38,1,1,0,11.55458856250929,11.55458856250929,0,0,0,0,0,1,1,0,0,0,48.21,50.73,49.41,56.95,6.666666666666667,1,1,0,0,7,6,3,0,436.75,195653.9614629751,95641.80856493395,165340.3526963065,123934.3411373765,2104.896038521302 -3478,4335,7821,7822,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,6.659990429168944,7.550561027069371,6.824213062024486,5,-1,88.41581536957609,0,3,2,2019,12,0,8,16,1,0,0,13.21049830941012,13.21049830941012,0,0,0,0,0,0,0,0,0,7.188676258863327,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,4,4,1,244,587870.8595297992,385208.4080585191,356541.567371267,301960.1859605951,2142.932234957641 -3478,4335,7822,7821,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.770640453280122,8.213354303665096,6.48993929647692,5,1,-170.7978451668382,0,-9,-9,2019,6,0,30,32,1,0,0,9.1582272816149,9.1582272816149,0,0,0,0,0,0,0,0,0,6.772266500156067,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,244,587870.8595297992,385208.4080585191,356541.567371267,301960.1859605951,2142.932234957641 -3479,4336,7823,7824,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.675984894103053,7.777977221186737,41,2,41.35344679557164,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.723261118857866,57.16,56.15,62.27,42.94,10,1,1,0,0,0,2,3,1,1214.5,896812.5517466883,544307.688647734,103752.2389007497,0,2618.181428136781 -3479,4336,7824,7823,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.133734220113848,7.070845309341467,41,-2,43.06810776465355,-9,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.309697677163694,62.27,42.94,57.16,56.15,8.333333333333334,1,1,0,0,3,2,3,1,1214.5,896812.5517466883,544307.688647734,103752.2389007497,0,2618.181428136781 -3480,4337,7825,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,9.873280362654077,9.703348044640665,0,0,0,-1054.917691091897,0,2,2,2019,14,2,21,30,1,2,0,82.33891355438357,82.33891355438357,0,0,0,.010542340660205,0,0,0,0,0,0,38.53,64.73,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,187,450467.6967327836,321737.8600956287,212531.1645513229,56033.41549612216,40796.90803170385 -3481,4338,7826,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,8.459030134406484,8.13084312437752,0,0,0,-1038.202976702778,-9,2,1,2019,23,9,40,0,1,9,0,11.25062191922435,11.25062191922435,0,0,0,0,0,1,1,0,3.313795741237096,0,39.59,41.49,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,679.5,311968.4631727835,102013.0397367058,196052.1252728146,0,2178.309776389989 -3481,4338,7827,-9,7826,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.1655245600053,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,679.5,311968.4631727835,102013.0397367058,196052.1252728146,0,2178.309776389989 -3482,4339,7828,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.424203275638837,5.235576959127373,0,0,-981.5929674287431,0,-9,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.477534307471188,27.41,25.55,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,2165,254195.3435722503,-19440.01706073945,107684.2672176544,0,1974.590440021899 -3483,4340,7829,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.082240364076842,8.367659409126032,0,0,0,-974.9359422352829,0,3,2,2019,12,1,52,49,1,1,0,10.18411173471375,10.18411173471375,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,161,520853.813609238,130421.9743419974,264288.9997478502,0,899.7274817709601 -3483,4341,7830,-9,7829,-9,1,0,24,0,0,0,1,1,-9,0,4,7.820100755326108,8.181282462468522,0,0,0,-954.2353208661507,0,2,-9,2019,7,0,46,46,1,0,1,8.305008772491526,8.305008772491526,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,204,39121.6039259108,83272.89842005384,0,0,1546.337758816564 -3484,4342,7831,7832,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,0,0,0,6,-4,3.093206416229501,1,2,2,2019,7,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.46,61.59,8.333333333333334,1,1,0,0,8,13,2,0,528.5,357718.4956696974,120428.0598239027,129289.6797940461,27993.46994498449,1979.119337403283 -3484,4342,7832,7831,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,7.420502490939637,7.445805368029058,0,6,4,105.1754312082731,0,2,2,2019,13,1,40,17,1,1,0,4.543031570992265,4.543031570992265,0,0,0,0,0,0,0,0,0,0,36.46,61.59,57.16,56.15,1.666666666666667,1,1,0,0,3,13,2,0,528.5,357718.4956696974,120428.0598239027,129289.6797940461,27993.46994498449,1979.119337403283 -3485,4343,7833,7834,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.898573402389157,8.804074751066166,0,8,0,-17.78745241962842,-9,-9,-9,2019,8,0,42,0,1,0,0,27.9672420352295,27.9672420352295,0,0,0,0,0,0,0,0,0,0,58.72,51.29,53.39,44.47,8.333333333333334,1,1,0,0,11,2,5,1,975.5,266640.2219773614,155249.3051530069,158446.6497124851,165048.4609141485,2816.540418441705 -3485,4343,7834,7833,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.378275523906371,7.010398671057297,0,8,0,32.26510747587125,-9,2,3,2019,4,0,30,0,1,0,0,5.965601191163135,5.965601191163135,0,0,0,0,0,0,0,0,0,0,53.39,44.47,58.72,51.29,8.333333333333334,1,1,0,0,6,2,5,1,975.5,266640.2219773614,155249.3051530069,158446.6497124851,165048.4609141485,2816.540418441705 -3486,4344,7835,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.470129918517903,7.681900839859566,0,0,0,-1103.49751798134,0,2,2,2019,11,0,35,35,1,0,0,5.479589190814091,5.479589190814091,0,0,0,0,0,0,0,0,2.751824550561403,0,55.36,51.57,-9,-9,5,1,1,0,0,7,1,3,1,308,-87678.16843059238,0,0,0,1146.0727215948 -3487,4345,7836,7837,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,9.029097405570965,8.950219402212721,0,7,-1,-165.8915787191746,0,-9,-9,2019,18,6,50,60,1,6,0,13.69651193495118,13.69651193495118,0,0,0,0,0,0,0,0,0,0,42.19,50.93,44.94,45.31,6.666666666666667,1,1,0,0,8,9,5,1,654,-74938.5167649362,-94865.71036638248,277396.0702634859,265069.6625876529,3800.689586248676 -3487,4345,7837,7836,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.485304562486542,8.529005318798175,0,7,1,84.68208907219341,0,-9,-9,2019,14,2,37,45,1,2,0,17.67828760482442,17.67828760482442,0,0,0,0,0,0,0,0,0,0,44.94,45.31,42.19,50.93,5,1,1,0,1,9,9,5,1,654,-74938.5167649362,-94865.71036638248,277396.0702634859,265069.6625876529,3800.689586248676 -3488,4346,7838,-9,-9,7840,1,0,55,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1033.700625474368,0,3,3,2019,20,5,0,36,3,5,0,0,0,0,0,0,0,2,0,0,0,0,0,30.4,24.1,-9,-9,6.666666666666667,2,3,0,1,3,8,1,0,549,121408.8605663043,0,0,0,0 -3488,4347,7839,-9,7838,7840,1,0,32,0,0,0,1,1,-9,0,4,8.989597495104952,9.101197869894655,0,0,0,-874.3506651069808,0,2,1,2019,12,0,80,47,1,0,1,11.17795801262433,11.17795801262433,0,0,0,0,0,0,0,0,1.681209256088485,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,7,8,5,0,1119,71020.67229192,0,421422.9526497328,290712.9136110765,1879.186635371102 -3488,4348,7840,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,5.373857609425089,5.648054966616748,0,0,0,-872.3763713130875,0,-9,-9,2019,10,0,30,50,1,1,0,.680497149543973,.680497149543973,0,0,0,0,0,0,0,0,5.944119688224447,0,51,49,-9,-9,7,2,3,0,0,1,8,2,0,121,223860.5665399244,53162.02732572408,0,0,601.8602141551238 -3489,4349,7841,7842,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.36007400258919,8.83885699066375,7.094120995697383,6,0,-75.21330421749434,0,3,3,2019,8,0,45,43,1,0,0,12.82047834985584,12.82047834985584,0,0,0,0,0,0,0,0,5.931724741753942,7.309049197395622,45.9,33.33,61.27,46.03,6.666666666666667,1,1,0,0,7,5,4,1,488,387612.1343463337,245498.5076685127,153120.5794586351,52129.77451119636,2944.39645677218 -3489,4349,7842,7841,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,6.966662220712153,7.256676213752569,6.208099761696898,6,0,114.371105836232,0,3,3,2019,6,0,19,32,1,0,0,8.023269249728992,8.023269249728992,0,0,0,0,0,0,0,0,0,6.062711992124243,61.27,46.03,45.9,33.33,10,1,1,0,0,7,5,4,1,488,387612.1343463337,245498.5076685127,153120.5794586351,52129.77451119636,2944.39645677218 -3490,4350,7843,7846,-9,-9,1,0,31,2,2,0,1,1,-9,0,4,7.79450357697905,7.915825592424109,0,4,-6,-76.08638289412313,0,-9,-9,2019,9,1,26,26,1,1,0,10.995404364514,10.995404364514,0,0,0,0,0,1,1,0,0,0,44.44,33.67,49.04,55.86,8.333333333333334,1,1,0,0,7,8,5,1,623.5,133247.0389330234,199652.4631148612,253055.2465959752,174084.746924849,4160.111325302991 -3490,4350,7844,-9,7843,7846,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.615294302474,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,8,5,1,623.5,133247.0389330234,199652.4631148612,253055.2465959752,174084.746924849,4160.111325302991 -3490,4350,7845,-9,7843,7846,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-982.4680277146242,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,623.5,133247.0389330234,199652.4631148612,253055.2465959752,174084.746924849,4160.111325302991 -3490,4350,7846,7843,-9,-9,1,1,37,2,2,0,2,2,-9,0,3,8.907118700308299,9.010580238335022,0,4,6,-27.73345682057323,0,-9,-9,2019,14,4,42,42,1,4,0,22.33947179900895,22.33947179900895,0,0,0,0,0,1,1,0,0,0,49.04,55.86,44.44,33.67,8.333333333333334,1,1,0,0,6,8,5,1,623.5,133247.0389330234,199652.4631148612,253055.2465959752,174084.746924849,4160.111325302991 -3491,4351,7847,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,6.910834837486803,7.034217146519335,0,0,0,-900.6989816623601,0,3,3,2019,15,5,20,16,1,5,0,5.676666708771954,5.676666708771954,0,0,0,0,0,1,1,0,0,0,48.45,38.07,-9,-9,0,2,3,0,0,4,5,2,0,427,-21727.25680819324,0,74029.93374838382,16894.91308833596,327.7857889916926 -3491,4352,7848,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-958.6556423069708,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,5,1,0,4830,97009.67236596253,0,0,0,1265.440729260885 -3492,4353,7849,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.663624401535351,8.587222566411016,0,0,0,-1025.181936030717,0,-9,-9,2019,5,0,35,35,1,0,0,10.66163359063298,10.66163359063298,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,1509,-75585.46412978163,-36126.72736306657,0,0,2378.695831793399 -3493,4354,7850,-9,7853,-9,1,0,20,1,3,0,2,2,-9,1,3,0,0,0,0,0,-990.6333121869681,0,2,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,27,1,1,0,0,0,42.63,53.71,-9,-9,10,1,1,1,0,3,5,1,0,548,148958.6210265192,0,0,0,235.0110559170512 -3493,4354,7851,-9,7850,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.8420841323181,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,548,148958.6210265192,0,0,0,235.0110559170512 -3493,4355,7852,-9,7853,-9,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.6040095980454,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,853.8,15578.27052922337,62855.56489669012,0,0,2840.517474730522 -3493,4355,7853,7854,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,8.018231490083982,7.73951733722301,0,7,-11,73.31083673636239,0,-9,-9,2019,10,0,30,39,1,0,0,8.033956972583773,8.033956972583773,0,0,0,0,71.5,1,1,0,0,0,46.44,59.62,49.31,48.84,6.666666666666667,1,1,0,0,6,5,3,0,853.8,15578.27052922337,62855.56489669012,0,0,2840.517474730522 -3493,4355,7854,7853,-9,-9,1,1,47,1,3,0,2,2,-9,0,3,8.16653220038808,8.11625710157209,0,7,11,131.6741561277894,0,-9,-9,2019,13,2,40,40,1,2,0,8.803148013037797,8.803148013037797,0,0,0,0,0,1,1,0,0,0,49.31,48.84,46.44,59.62,5,1,1,0,0,11,5,3,0,853.8,15578.27052922337,62855.56489669012,0,0,2840.517474730522 -3493,4355,7855,-9,7853,-9,1,1,17,1,3,1,3,0,0,0,3,0,0,0,0,0,-904.6707634509179,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,-9,-9,5,1,1,0,0,0,5,3,0,853.8,15578.27052922337,62855.56489669012,0,0,2840.517474730522 -3493,4355,7856,-9,7853,-9,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-954.5889732985474,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,853.8,15578.27052922337,62855.56489669012,0,0,2840.517474730522 -3494,4356,7857,-9,7860,7859,1,1,28,0,0,0,1,1,-9,0,3,8.353283685011755,8.456997695634708,0,0,0,-997.0256959010379,0,2,2,2019,13,1,50,53,1,1,0,12.25421371070973,12.25421371070973,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,2,3,0,0,5,8,5,1,54,-60608.26514021146,-133506.6753060369,0,0,1565.100436749903 -3494,4357,7858,-9,7860,7859,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-958.0963672957342,0,3,2,2019,12,0,0,36,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.69,58.7,-9,-9,5,2,3,1,0,8,8,1,1,286,299527.8193047604,0,0,0,0 -3494,4358,7859,7860,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,44,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.66,52.82,51.58,50.6,10,2,3,0,0,8,8,1,1,497.5,-51132.47550649152,0,0,0,1017.722323459192 -3494,4358,7860,7859,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,44,-1,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.58,50.6,27.66,52.82,6.666666666666667,2,3,0,0,6,8,1,1,497.5,-51132.47550649152,0,0,0,1017.722323459192 -3495,4359,7861,7862,-9,-9,1,1,44,0,4,0,1,1,-9,0,3,7.150161130371544,7.499887966263461,0,12,-5,49.0490943255426,0,1,2,2019,7,0,50,50,1,0,0,3.499813050281826,3.499813050281826,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,12,13,3,1,620.75,359391.2539324589,365846.5784225534,94435.28245538985,63185.36081801487,2072.478860476056 -3495,4359,7862,7861,-9,-9,1,0,49,0,4,0,1,1,-9,0,5,7.999721323393829,8.16469025447727,0,12,5,-45.86054979648623,0,2,1,2019,7,0,35,25,1,0,0,9.388397613834524,9.388397613834524,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,12,13,3,1,620.75,359391.2539324589,365846.5784225534,94435.28245538985,63185.36081801487,2072.478860476056 -3495,4359,7863,-9,7862,7861,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1106.131256372911,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,359391.2539324589,365846.5784225534,94435.28245538985,63185.36081801487,2072.478860476056 -3495,4359,7864,-9,7862,7861,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.3633200836003,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,359391.2539324589,365846.5784225534,94435.28245538985,63185.36081801487,2072.478860476056 -3496,4360,7865,7866,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.730719261816436,8.114922128417005,10,8,100.3093543258871,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.289552462724485,7.863344825734186,50.34,56.4,45,38,8.333333333333334,1,1,0,0,3,6,3,1,493,520152.5776265726,227316.3813160722,204589.5413385328,0,2145.842948877163 -3496,4360,7866,7865,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,6.011178729067326,6.077481088280495,0,10,-8,68.94400419174463,-9,-9,-9,2019,14,3,8,0,1,3,0,5.896915108079254,5.896915108079254,0,0,0,0,0,1,1,0,5.520151881114281,0,45,38,50.34,56.4,8.333333333333334,1,1,0,0,13,6,3,1,493,520152.5776265726,227316.3813160722,204589.5413385328,0,2145.842948877163 -3497,4361,7867,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.939586244907269,8.14353687158366,0,0,-929.9214651330008,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.11617922750229,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,462,753356.8412855633,205775.1548961602,324623.5039265135,0,2073.588424145932 -3498,4362,7868,-9,7870,7871,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1045.298575961414,-9,1,1,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,55.06,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,551.25,1678269.2607475,142244.359041743,613672.2870995938,356764.8360801442,5599.134527108834 -3498,4362,7869,-9,7870,7871,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.315901839883,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,551.25,1678269.2607475,142244.359041743,613672.2870995938,356764.8360801442,5599.134527108834 -3498,4362,7870,7871,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.776757599991111,9.145628094233649,0,20,-2,173.3591075431094,0,2,2,2019,25,11,50,64,1,11,0,24.11252200181485,24.11252200181485,0,0,0,0,0,1,1,0,1.546117407046411,0,18.93,62.96,30.92,56.13,6.666666666666667,1,1,0,0,7,1,5,1,551.25,1678269.2607475,142244.359041743,613672.2870995938,356764.8360801442,5599.134527108834 -3498,4362,7871,7870,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.000861912762636,8.930828063178877,0,20,2,60.99290407217664,0,3,3,2019,22,8,60,60,1,8,0,21.03358991006587,21.03358991006587,0,0,0,0,0,1,1,0,0,0,30.92,56.13,18.93,62.96,3.333333333333333,1,1,0,0,9,1,5,1,551.25,1678269.2607475,142244.359041743,613672.2870995938,356764.8360801442,5599.134527108834 -3499,4363,7872,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,0,0,-931.7071606630795,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,43.31,51.83,-9,-9,5,4,5,0,0,0,7,1,0,1935,-210814.4920526575,0,0,0,1757.846594987039 -3500,4364,7873,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.693061322665467,7.851051519705479,7.671709255363277,0,0,-1152.323009671105,0,2,2,2019,6,0,20,37,1,0,0,6.339328518827213,6.339328518827213,0,0,0,0,0,1,1,0,8.345694700301276,0,71.22,21.07,-9,-9,5,1,1,0,0,6,7,3,0,646,320205.2361051015,164306.8371071715,211957.8705859365,41514.82210437254,2381.716025010725 -3500,4364,7874,-9,7873,-9,1,0,16,0,1,1,2,0,0,0,5,0,0,0,0,0,-1206.235638709081,-9,1,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,646,320205.2361051015,164306.8371071715,211957.8705859365,41514.82210437254,2381.716025010725 -3500,4365,7875,-9,7873,-9,1,1,20,0,1,0,2,2,-9,0,4,7.679328570537144,7.417508144486257,3.63313198474391,0,0,-902.9944666408812,0,1,1,2019,6,0,37,0,1,0,1,7.058153190704547,7.058153190704547,0,0,0,0,0,1,1,0,3.700845671525621,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,1,7,3,0,886,-199642.6348190139,0,0,0,1063.6698376005 -3501,4366,7876,7877,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.981084224948749,6.790798446584745,6,0,.6070849532046905,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.822369718120722,6.850815941827367,42.16,60.15,51.16,29.58,8.333333333333334,1,1,0,0,2,11,3,1,782.5,2913128.369495217,2448787.784083655,460566.224501984,0,3377.789155706846 -3501,4366,7877,7876,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.180917781887736,8.244661243950661,6,9,-13.41458507570001,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,9.823928609337234,0,0,1,1,0,5.039230098015964,8.216204250467046,51.16,29.58,42.16,60.15,8.333333333333334,1,1,0,0,0,11,3,1,782.5,2913128.369495217,2448787.784083655,460566.224501984,0,3377.789155706846 -3502,4367,7878,-9,7880,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.061547120998,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,1,0,1463.666666666667,-100682.7817411085,0,0,0,2948.64198081536 -3502,4367,7879,-9,7880,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-902.9044280418459,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,7,1,0,1463.666666666667,-100682.7817411085,0,0,0,2948.64198081536 -3502,4367,7880,-9,-9,-9,1,0,32,0,2,0,2,2,-9,1,2,0,0,0,0,0,-886.8670007452488,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,33.48,21.58,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1463.666666666667,-100682.7817411085,0,0,0,2948.64198081536 -3503,4368,7881,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,4.839800280882991,4.610950624441049,0,0,0,-834.0507053841616,0,-9,-9,2019,15,3,28,32,1,3,0,.4046069504262195,.4046069504262195,0,0,0,0,0,0,0,0,0,0,47.52,33.82,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,868,8709.286167577833,-72129.61710156345,62800.94914431807,3201.930253990806,-338.7637515127107 -3504,4369,7882,-9,7883,7884,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.6157544475702,-9,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.338890153311794,0,57.71,54.55,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,492.3333333333333,3472229.098310443,2682157.825852258,714067.526295897,144197.3675877205,5602.935259977133 -3504,4369,7883,7884,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,8.108264107459869,7.898852750159309,0,7,-1,-154.3334762636811,0,3,1,2019,16,4,30,30,1,4,0,11.99345760692657,11.99345760692657,0,0,0,0,0,0,0,0,2.364118861703508,0,44.42,54.24,54.96,53.17,3.333333333333333,1,1,0,0,8,9,5,1,492.3333333333333,3472229.098310443,2682157.825852258,714067.526295897,144197.3675877205,5602.935259977133 -3504,4369,7884,7883,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.595600811595572,9.491936709160534,0,7,1,43.30904857143977,0,2,1,2019,8,0,36,33,1,0,0,42.10722207555414,42.10722207555414,0,0,0,0,0,0,0,0,0,0,54.96,53.17,44.42,54.24,8.333333333333334,1,1,0,0,8,9,5,1,492.3333333333333,3472229.098310443,2682157.825852258,714067.526295897,144197.3675877205,5602.935259977133 -3505,4370,7885,7886,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.787291201769285,8.934432241269663,0,26,0,-14.46195943063818,0,-9,-9,2019,11,0,38,58,1,0,0,20.46013656218849,20.46013656218849,0,0,0,0,0,1,1,0,0,0,49.52,56.95,53.24,50.01,8.333333333333334,1,1,0,0,8,2,5,1,270.5,29810.08633144788,130807.9717137092,149072.4324256829,41143.52780144672,4965.340734709398 -3505,4370,7886,7885,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.658083956647701,8.759997265413659,0,26,0,80.93693506847221,0,-9,-9,2019,7,0,37,38,1,0,0,14.30695593724196,14.30695593724196,0,0,0,0,0,1,1,0,0,0,53.24,50.01,49.52,56.95,8.333333333333334,1,1,0,0,8,2,5,1,270.5,29810.08633144788,130807.9717137092,149072.4324256829,41143.52780144672,4965.340734709398 -3505,4371,7887,-9,7886,7885,1,0,23,0,0,0,2,2,-9,0,4,7.764632164573517,7.799370008958523,0,0,0,-988.7894467886277,0,2,2,2019,5,0,40,33,1,0,1,8.406102164644487,8.406102164644487,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1500,-155004.7371138865,0,0,0,1191.501332066917 -3505,4372,7888,-9,7886,7885,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-856.0988868666014,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,147,290746.5492105703,112526.2863116915,0,0,0 -3506,4373,7889,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,5.983873729980959,6.157367186758409,0,0,-982.5447103181586,0,-9,1,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,2.120778086595966,6.323602832148357,15.04,35.59,-9,-9,0,1,1,0,0,0,2,2,0,233,32044.79113554393,126132.0099693342,80069.45341736823,0,830.8249601762645 -3507,4374,7890,7891,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,6.034526887606078,5.726019148261763,0,22,-3,-59.73691880544661,0,2,2,2019,6,0,7,7,1,0,0,7.350038151273252,7.350038151273252,0,0,0,0,0,1,1,0,0,0,55.79,52.62,53,58,8.333333333333334,1,1,0,0,6,7,3,1,478,123511.1290161392,32978.82615906988,148190.9047224253,50243.56533823512,2053.680229999642 -3507,4374,7891,7890,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.095763519787115,8.10036163862587,0,17,3,-34.74868141500733,0,2,2,2019,19,5,46,50,1,5,0,7.056597943570041,7.056597943570041,0,0,0,0,0,1,1,0,.1566173631969683,0,53,58,55.79,52.62,10,1,1,0,0,8,7,3,1,478,123511.1290161392,32978.82615906988,148190.9047224253,50243.56533823512,2053.680229999642 -3507,4374,7892,-9,7890,7891,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.7153820254787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,478,123511.1290161392,32978.82615906988,148190.9047224253,50243.56533823512,2053.680229999642 -3507,4374,7893,-9,7890,7891,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.1986372506619,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,478,123511.1290161392,32978.82615906988,148190.9047224253,50243.56533823512,2053.680229999642 -3508,4375,7894,7895,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.168374697868545,8.284993324090761,0,17,-4,47.72824095235303,0,2,2,2019,16,5,35,23,1,5,0,10.49680691563843,10.49680691563843,0,0,0,0,2,1,1,0,0,0,38.34,62.12,52,55,6.666666666666667,1,1,0,0,6,6,5,1,409.6666666666667,107450.1838012168,51394.24970314,294689.8967338337,96987.52956490319,4086.564960063979 -3508,4375,7895,7894,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.881330587795535,9.020659026979002,0,17,4,52.32472445220586,0,-9,-9,2019,9,0,38,50,1,1,0,15.61013958641912,15.61013958641912,0,0,0,0,0,1,1,0,0,0,52,55,38.34,62.12,7,1,1,0,0,1,6,5,1,409.6666666666667,107450.1838012168,51394.24970314,294689.8967338337,96987.52956490319,4086.564960063979 -3508,4375,7896,-9,7894,7895,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.5489062671426,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,409.6666666666667,107450.1838012168,51394.24970314,294689.8967338337,96987.52956490319,4086.564960063979 -3509,4376,7897,-9,7900,7899,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-795.3327595813221,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.427175877157168,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,629.5,3174709.621085287,2428875.893743503,391692.540760099,0,7347.826642072574 -3509,4376,7898,-9,7900,7899,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1139.50705157527,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,629.5,3174709.621085287,2428875.893743503,391692.540760099,0,7347.826642072574 -3509,4376,7899,7900,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.345748405966026,8.452967224612767,24,15,-12.63429298173465,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.568626681693679,8.538813096441926,57.91,48.98,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,629.5,3174709.621085287,2428875.893743503,391692.540760099,0,7347.826642072574 -3509,4376,7900,7899,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.515385776914655,9.368464511474498,0,25,-15,38.59146176101376,0,2,2,2019,6,0,50,40,1,0,0,20.56502654137606,20.56502654137606,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,9,7,5,1,629.5,3174709.621085287,2428875.893743503,391692.540760099,0,7347.826642072574 -3510,4377,7901,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.333164571835068,8.460244067268572,0,0,0,-910.3404326103336,0,1,2,2019,7,0,60,60,1,0,1,9.314189125891318,9.314189125891318,0,0,0,0,0,0,0,0,1.767440758057149,0,57.06,57.76,-9,-9,10,4,2,0,0,4,8,4,0,972,86882.98098181371,0,0,0,2633.164190830589 -3511,4378,7902,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.068314949716462,7.001245320946866,0,0,-966.9138476860255,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.19834397968605,0,16.35811103172519,0,1,1,0,0,7.236943431862093,49.96,37.48,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,1874,143729.8631645293,89245.59932052807,84511.33128765394,0,1355.386443301468 -3512,4379,7903,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.930540621851348,8.990162265702851,0,0,0,-983.8713242966301,0,1,1,2019,3,0,44,45,1,0,0,20.89176410965303,20.89176410965303,0,0,0,0,0,0,0,0,.7366210518043135,0,60.02,56.42,-9,-9,10,2,3,0,0,8,8,5,0,306,-62441.59599609912,68439.46544219402,0,0,2634.886670198917 -3513,4380,7904,-9,7906,7907,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-883.1478083699376,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,391.25,226591.2729212647,66312.77817708653,253292.7887058149,90062.63021829311,6507.290773220765 -3513,4380,7905,-9,7906,7907,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-874.6885082899066,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,391.25,226591.2729212647,66312.77817708653,253292.7887058149,90062.63021829311,6507.290773220765 -3513,4380,7906,7907,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,9.465439441295603,9.591076409897846,0,2,-13,54.15402921676316,0,2,3,2019,8,0,35,19,1,0,0,46.76077980169564,46.76077980169564,0,0,0,0,0,1,1,0,5.742060006375181,0,57.16,56.15,51.41,56.15,1.666666666666667,1,1,0,0,8,12,5,1,391.25,226591.2729212647,66312.77817708653,253292.7887058149,90062.63021829311,6507.290773220765 -3513,4380,7907,7906,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,8.286878708587476,8.182329483445487,0,2,13,7.621578036395661,0,3,2,2019,11,0,60,50,1,0,0,8.295299019749491,8.295299019749491,0,0,0,0,0,1,1,0,0,0,51.41,56.15,57.16,56.15,5,1,1,0,0,8,12,5,1,391.25,226591.2729212647,66312.77817708653,253292.7887058149,90062.63021829311,6507.290773220765 -3514,4381,7908,7909,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.304186358078676,8.568793784230857,0,33,3,-49.65989467022133,0,2,-9,2019,13,1,38,38,1,1,0,16.60962494461197,16.60962494461197,0,0,0,0,0,0,0,0,1.920709040077934,0,47.91,37.83,58.72,51.29,6.666666666666667,1,1,0,0,13,13,5,1,358,1120648.230111275,588493.4997493306,201252.2100598577,0,4784.335382963805 -3514,4381,7909,7908,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.827223599798268,8.94006835645666,0,32,-3,11.82031350728721,0,2,3,2019,8,0,38,38,1,0,0,24.10523833498091,24.10523833498091,0,0,0,0,0,0,0,0,0,0,58.72,51.29,47.91,37.83,8.333333333333334,1,1,0,0,13,13,5,1,358,1120648.230111275,588493.4997493306,201252.2100598577,0,4784.335382963805 -3514,4382,7910,-9,7909,7908,1,1,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1135.553373392707,1,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.99,-9,-9,8.333333333333334,1,1,0,1,2,13,1,1,347,59919.72258449604,0,0,0,0 -3515,4383,7911,7912,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.315200603582833,7.133435286947772,0,21,-14,6.364528590501729,0,-9,-9,2019,8,0,32,32,1,0,0,7.151463182736364,7.151463182736364,0,0,0,0,0,0,0,0,0,0,46.08,57.2,50.52,55.06,5,1,1,0,0,12,6,4,1,845,-78625.89087551508,-78016.08810720571,155036.1930412893,39303.18993426433,1724.778904508119 -3515,4383,7912,7911,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.865978513827174,7.998436196361499,0,21,14,.1171285436336024,0,2,3,2019,11,0,37,37,1,0,0,7.967576688814638,7.967576688814638,0,0,0,0,2,0,0,0,0,0,50.52,55.06,46.08,57.2,8.333333333333334,1,1,0,0,12,6,4,1,845,-78625.89087551508,-78016.08810720571,155036.1930412893,39303.18993426433,1724.778904508119 -3515,4384,7913,-9,7911,7912,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-895.9354238149027,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46.92,54.3,-9,-9,8.333333333333334,1,1,0,1,4,6,1,1,143,-15788.3193069801,0,0,0,0 -3516,4385,7914,7915,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.698179698235478,7.413062132118231,0,33,-6,92.07034372153696,0,2,2,2019,9,0,60,45,1,0,0,3.35493326043467,3.35493326043467,0,0,0,0,0,1,1,0,4.569037237343458,0,57.16,56.15,49.44,54.26,8.333333333333334,1,1,0,0,11,5,4,1,900,590722.1475383529,0,487091.6260213086,0,2357.333978669301 -3516,4385,7915,7914,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.979034173677682,8.037081471667053,0,9,6,-98.59165958220736,0,-9,-9,2019,16,5,36,20,1,5,0,8.038027731839151,8.038027731839151,0,0,0,0,0,1,1,0,6.756602797408178,0,49.44,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,900,590722.1475383529,0,487091.6260213086,0,2357.333978669301 -3516,4385,7916,-9,7915,7914,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1092.234673700025,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,900,590722.1475383529,0,487091.6260213086,0,2357.333978669301 -3516,4386,7917,-9,7915,7914,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1137.431083350948,-9,2,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,128,0,0,0,0,220.0859782681744 -3517,4387,7918,7923,-9,-9,1,0,26,2,4,0,2,2,-9,1,3,0,0,0,6,-5,75.20728682504223,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,18.2,59.4,40.97,32.79,5,1,1,0,0,0,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3517,4387,7919,-9,7918,7923,1,0,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.296024708711,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3517,4387,7920,-9,7918,7923,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.084931765529,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3517,4387,7921,-9,7918,7923,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-888.8019513504264,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3517,4387,7922,-9,7918,7923,1,1,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-998.837062996453,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3517,4387,7923,7918,-9,-9,1,1,31,2,4,0,2,2,-9,1,2,6.100092506919178,6.27497450117914,0,6,5,2.282152897452193,0,3,3,2019,23,11,8,8,1,11,0,6.299817542130142,6.299817542130142,0,0,0,0,14.5,1,1,0,0,0,40.97,32.79,18.2,59.4,5,1,1,0,0,5,11,2,0,496.5,41223.79822860719,39761.69685928638,177407.5421824889,134032.283259587,3067.588697169139 -3518,4388,7924,7925,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,11,7,6.064644530905523,0,3,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,4.599641071623258,0,49.04,55.86,54.2,57.49,10,1,1,0,0,12,7,2,1,1639,971591.467223367,142670.6398209868,571049.3116158192,0,1048.243059274251 -3518,4388,7925,7924,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.995704405078613,7.018114163221831,11,-7,142.6423810800699,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.18204681445939,6.739777704311584,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,0,7,2,1,1639,971591.467223367,142670.6398209868,571049.3116158192,0,1048.243059274251 -3519,4389,7926,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.668786251163767,5.242071408628063,0,0,-921.1521679316295,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.793288163254661,5.35223063037385,55,45,-9,-9,8,1,1,0,0,0,7,2,1,256,632150.3304125374,37159.06233787675,710823.1118499087,0,714.9070839779499 -3520,4390,7927,-9,7928,7929,1,0,10,0,0,1,3,0,-9,0,2,0,0,0,0,0,-960.9339660000776,-9,-9,-9,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,2,2,1,705.3333333333334,576862.1518613023,397065.8033500721,102938.1147431568,0,2723.526465498868 -3520,4390,7928,7929,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.982448746536371,6.946374473901113,6,-2,109.3263039179013,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.680410963180845,51,47,46.48,10.28,7,2,3,0,0,0,2,2,1,705.3333333333334,576862.1518613023,397065.8033500721,102938.1147431568,0,2723.526465498868 -3520,4390,7929,7928,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,45,2,-1.83458689289715,0,3,1,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,46.48,10.28,51,47,8.333333333333334,2,3,0,0,0,2,2,1,705.3333333333334,576862.1518613023,397065.8033500721,102938.1147431568,0,2723.526465498868 -3521,4391,7930,7931,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.702671800049278,6.805578099365469,7,-6,1.986277155584617,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.013955943934874,6.894405394121673,52,45,52.27,58.55,8,1,1,0,0,0,2,2,0,817,294113.3914473007,-32543.86800085997,370947.6579594052,0,1978.433461915233 -3521,4391,7931,7930,-9,-9,1,1,87,0,0,0,3,3,-9,0,5,0,0,0,64,6,-56.26228567344197,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.828564838521986,0,52.27,58.55,52,45,10,1,1,0,0,6,2,2,0,817,294113.3914473007,-32543.86800085997,370947.6579594052,0,1978.433461915233 -3522,4392,7932,7933,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,7.075081659467492,8.430424934278813,7.651157026930347,6,1,-34.13540250130251,0,2,3,2019,8,0,27,44,1,0,0,4.758337797735566,4.758337797735566,0,0,0,0,0,1,1,0,3.891687161955695,7.793347879990439,54.1,59.11,27.43,58.87,8.333333333333334,1,1,0,0,7,10,4,1,1001,285126.5316138596,250889.1265630387,172786.3764268529,29577.49428015174,3933.545712885464 -3522,4392,7933,7932,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.492402144396494,7.158608105417057,7.133552059881061,6,-1,18.41915176550455,0,2,1,2019,29,10,10,32,1,10,0,7.148092348470771,7.148092348470771,0,0,0,0,0,1,1,0,7.920251166943914,0,27.43,58.87,54.1,59.11,6.666666666666667,1,1,0,0,7,10,4,1,1001,285126.5316138596,250889.1265630387,172786.3764268529,29577.49428015174,3933.545712885464 -3523,4393,7934,7935,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,4.472309691070606,4.968032810673477,17,-5,45.29040671412749,0,2,-9,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.208656357660774,4.773032265495192,33.07,55.18,54.2,57.49,6.666666666666667,1,1,0,1,8,12,2,1,968,869981.3402452597,333301.7313624438,166418.0369656459,0,1252.480997319373 -3523,4393,7935,7934,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.258977339359886,6.998820064489417,15,5,5.983510653219609,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.904187611032621,54.2,57.49,33.07,55.18,8.333333333333334,1,1,0,0,10,12,2,1,968,869981.3402452597,333301.7313624438,166418.0369656459,0,1252.480997319373 -3524,4394,7936,7938,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.727729944232545,7.964889425958204,0,8,-2,-12.63784968926674,-9,3,2,2019,34,12,40,0,1,12,0,9.54396051026883,9.54396051026883,0,0,0,0,2,1,1,0,6.792598177543534,0,17.45,66.57000000000001,57.09,46.7,3.333333333333333,1,1,0,0,12,5,4,1,778,128100.4599867411,120683.5725031084,187831.3364577293,104074.4068299268,2818.371613032841 -3524,4394,7937,-9,7936,7938,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1072.226989758877,0,2,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.14,60.41,-9,-9,1.666666666666667,1,1,0,0,2,5,4,1,778,128100.4599867411,120683.5725031084,187831.3364577293,104074.4068299268,2818.371613032841 -3524,4394,7938,7936,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.250782524783439,8.42787287726906,0,8,2,32.02865930663086,-9,-9,-9,2019,11,0,45,0,1,0,0,9.127196466762255,9.127196466762255,0,0,0,0,0,1,1,0,0,0,57.09,46.7,17.45,66.57000000000001,6.666666666666667,1,1,0,0,12,5,4,1,778,128100.4599867411,120683.5725031084,187831.3364577293,104074.4068299268,2818.371613032841 -3525,4395,7939,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,6.804291094987338,7.406553568802216,6.211909090080692,0,0,-887.3394922577044,0,1,1,2019,8,0,15,9,1,0,0,7.650859877163207,7.650859877163207,1,0,0,0,0,1,1,0,0,6.360904620611773,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,10,1,3,1,372,221273.7203492862,245481.9616777996,325408.6815989669,162015.5552057475,1813.96269675593 -3526,4396,7940,7941,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.67090651380255,6.653255159590054,9,-6,2.014847764582837,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.851566775311983,6.87078938265729,57.33,53.46,39.6,53.92,8.333333333333334,1,1,0,0,9,10,4,1,1062.5,1739928.291875395,785184.2636915889,492176.6959967658,0,3488.22219240056 -3526,4396,7941,7940,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,8.574979942446353,8.396420916700814,0,9,6,-109.4278473096723,0,2,3,2019,17,6,50,50,1,6,0,9.590680006247391,9.590680006247391,0,0,0,0,0,1,1,0,1.570388073923685,0,39.6,53.92,57.33,53.46,5,1,1,0,0,10,10,4,1,1062.5,1739928.291875395,785184.2636915889,492176.6959967658,0,3488.22219240056 -3527,4397,7942,7943,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,7.252109271946347,8.084469357328743,8.19030483521485,43,0,-28.69630919215445,0,2,2,2019,6,0,4,4,1,0,0,44.86386008183678,44.86386008183678,0,0,0,0,7,1,1,0,0,7.623640433135931,59.43,58.05,59.46,46.99,10,1,1,0,0,10,9,5,1,387.5,4654720.558408031,1460998.679290391,991331.2942894794,0,5004.321735521637 -3527,4397,7943,7942,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.576662324729032,8.231966808026407,41,0,-100.5361147494179,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.339223164742164,8.478927972677637,59.46,46.99,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,387.5,4654720.558408031,1460998.679290391,991331.2942894794,0,5004.321735521637 -3528,4398,7944,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.845417024481059,5.757547939107541,0,0,-965.621257661586,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.882806154775593,46.27,39.65,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,4251,339235.9729547895,120892.6374073771,229925.7610775234,0,1085.792623882243 -3529,4399,7945,7946,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,61,-4,-149.5628225639629,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.634131461232694,0,51,46,54,46,7,1,1,0,0,6,11,5,1,1383.5,879864.8396207173,431380.3797737666,0,0,4770.396126052337 -3529,4399,7946,7945,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,9.289868389449605,8.746870114508093,61,4,-16.34242854837388,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.318636343831517,8.704071724326859,54,46,51,46,8,1,1,0,0,0,11,5,1,1383.5,879864.8396207173,431380.3797737666,0,0,4770.396126052337 -3530,4400,7947,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.754681717093496,8.156041519934304,0,0,-919.5400509074293,0,3,2,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.60612512933393,7.739988574738077,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,235,726144.2205826262,612506.8107995662,57690.92356582071,43220.53381384156,2385.8741634177 -3531,4401,7948,-9,7951,7949,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.0880938943337,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,583.75,2788224.117706378,873070.4492282571,1348856.125947268,0,4882.857004438503 -3531,4401,7949,7951,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.128243587391792,9.421503271630428,0,7,1,-81.77151495064345,0,2,2,2019,12,1,38,38,1,1,0,23.91112580122501,23.91112580122501,0,0,0,0,0,1,1,0,1.005959464088347,0,43.44,58.7,41.06,62.04,5,1,1,0,1,9,8,5,1,583.75,2788224.117706378,873070.4492282571,1348856.125947268,0,4882.857004438503 -3531,4401,7950,-9,7951,7949,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.554699508148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,583.75,2788224.117706378,873070.4492282571,1348856.125947268,0,4882.857004438503 -3531,4401,7951,7949,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.273464524219596,8.291392403961931,5.278559690840621,7,-1,90.81715095077551,0,-9,-9,2019,16,5,27,26,1,5,0,15.53539712204187,15.53539712204187,0,0,0,0,0,1,1,0,6.07312273194593,0,41.06,62.04,43.44,58.7,6.666666666666667,1,1,0,0,8,8,5,1,583.75,2788224.117706378,873070.4492282571,1348856.125947268,0,4882.857004438503 -3532,4402,7952,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.492147510847,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.155856065156289,0,0,1,1,0,0,0,66.28,31.59,-9,-9,10,1,1,0,0,0,12,1,0,755,389557.5752120846,0,15174.55251186554,0,665.9173011349918 -3533,4403,7953,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,7.798897258994172,7.673602544290994,0,0,0,-925.8028477872698,0,3,1,2019,6,0,37,40,1,0,0,9.769126245903166,9.769126245903166,0,0,0,0,0,1,1,0,0,0,57.49,34.36,-9,-9,5,1,1,0,0,11,5,3,0,393,-127613.5025085924,0,0,0,2179.010330205126 -3534,4404,7954,7955,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.783453828888335,8.529003980633149,0,23,-3,41.70954118947326,0,2,-9,2019,12,2,55,10,1,2,0,10.51093438686665,10.51093438686665,0,0,0,0,0,1,1,0,0,0,49.58,55.59,55.36,51.57,6.666666666666667,1,1,0,0,8,2,5,1,1767.5,203943.8878865657,57474.63600143993,63208.68928165839,30442.13116991032,3519.14833765306 -3534,4404,7955,7954,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.268810928457764,8.081833009219981,0,23,3,99.11458147016175,0,3,3,2019,13,2,48,65,1,2,0,8.834520150219232,8.834520150219232,0,0,0,0,14.5,1,1,0,0,0,55.36,51.57,49.58,55.59,5,1,1,0,0,8,2,5,1,1767.5,203943.8878865657,57474.63600143993,63208.68928165839,30442.13116991032,3519.14833765306 -3534,4405,7956,-9,7954,7955,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1001.146917881754,1,1,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,239,0,0,0,0,0 -3535,4406,7957,-9,-9,-9,1,1,79,0,1,0,2,2,-9,0,1,0,8.072760692353627,7.909028580489917,0,0,-997.7452783834486,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,.7232441576957453,0,0,1,1,0,.1523627039363494,7.681157519625694,55.29,28.88,-9,-9,5,1,1,0,0,0,9,3,1,2354,672422.5264496384,333864.1530736913,325126.8931873979,0,2028.738197265448 -3536,4407,7958,7959,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.554633032718428,8.722948211030381,0,20,3,-72.18774367890767,0,-9,-9,2019,9,0,53,37,1,0,0,11.44927537965115,11.44927537965115,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.91,42.28,5,1,1,0,0,12,10,4,1,324,611795.534291173,142363.9653938743,286436.0902578216,38070.50229845195,3587.799222675073 -3536,4407,7959,7958,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.307704214689709,8.003421679721654,0,20,-3,31.73676858874327,0,2,2,2019,20,8,43,37,1,8,0,9.481007547486355,9.481007547486355,0,0,0,0,0,1,1,0,0,0,42.91,42.28,54.2,57.49,6.666666666666667,1,1,0,0,12,10,4,1,324,611795.534291173,142363.9653938743,286436.0902578216,38070.50229845195,3587.799222675073 -3536,4408,7960,-9,7959,7958,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1212.175308716716,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,138,-63509.22571374467,0,0,0,0 -3537,4409,7961,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.845187312534341,8.859811272411049,0,0,0,-946.4503838111065,0,2,2,2019,7,0,48,48,1,0,0,16.74494534566404,16.74494534566404,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,1198,446546.7889477,251313.505855036,293125.8898787809,160810.2269000889,2348.77396797455 -3538,4410,7962,7963,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.375911400899923,8.515411142624247,0,24,-2,-65.18242609194083,0,2,2,2019,9,0,37,37,1,0,0,18.97422778442565,18.97422778442565,0,0,0,0,0,0,0,0,0,0,64.40000000000001,36.46,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,228,371166.4338366503,160380.1944331147,218120.8786425357,52615.15451968741,3134.022199107223 -3538,4410,7963,7962,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.119096514805145,7.801031670104059,0,24,2,22.3401586832435,0,2,1,2019,9,0,40,40,1,0,0,8.7582681765308,8.7582681765308,0,0,0,0,0,0,0,0,0,0,57.16,56.15,64.40000000000001,36.46,8.333333333333334,1,1,0,0,10,9,5,1,228,371166.4338366503,160380.1944331147,218120.8786425357,52615.15451968741,3134.022199107223 -3538,4411,7964,-9,7962,7963,1,1,18,0,0,0,2,2,1,0,4,7.739425647631255,7.976918161467998,0,0,0,-1140.423874943693,-9,2,2,2019,8,0,40,0,1,0,1,7.103477693938929,7.103477693938929,0,0,0,0,0,0,0,0,0,0,49.35,48.91,-9,-9,10,1,1,0,0,0,9,3,1,243,-9100.648007051574,22885.93241662977,0,0,1203.822727263748 -3539,4412,7965,-9,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,0,0,0,0,0,-889.848203313262,0,-9,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,46.96,37.93,-9,-9,5,1,1,0,0,7,10,1,0,402,18628.70593030015,95436.05045752398,0,0,1819.958273487347 -3539,4412,7966,-9,7965,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.253907036189,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,402,18628.70593030015,95436.05045752398,0,0,1819.958273487347 -3539,4412,7967,-9,7965,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.9152902935527,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,402,18628.70593030015,95436.05045752398,0,0,1819.958273487347 -3540,4413,7968,-9,7969,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1113.864544851846,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,2,0,842.6666666666666,-58049.73101136688,18286.16267333147,0,0,1584.605057908447 -3540,4413,7969,-9,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,0,0,0,0,0,-937.0976654914582,0,2,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.23,54.54,-9,-9,5,1,1,1,1,0,11,2,0,842.6666666666666,-58049.73101136688,18286.16267333147,0,0,1584.605057908447 -3540,4413,7970,-9,7969,-9,1,0,17,0,1,1,2,0,0,0,4,0,4.417015185363973,4.20551817238872,0,0,-794.1307616033287,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.192587664204849,0,61.11,48.86,-9,-9,5,1,1,0,1,0,11,2,0,842.6666666666666,-58049.73101136688,18286.16267333147,0,0,1584.605057908447 -3540,4414,7971,-9,7969,-9,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-898.8247544623281,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,441,96269.52374993336,0,0,0,1902.582441073741 -3541,4415,7972,7973,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,54,-4,-79.97713875587796,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.699518469827682,0,51.19,45.41,62.99,38.49,8.333333333333334,1,1,0,0,0,2,4,1,776.5,1874660.284013489,1103477.800198087,548828.6936250852,0,3151.944216358138 -3541,4415,7973,7972,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.586261569193704,8.500852852411246,54,4,-14.66311510316272,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,7.520980437049922,0,0,1,1,0,3.618763302078695,8.433730688868698,62.99,38.49,51.19,45.41,8.333333333333334,1,1,0,0,0,2,4,1,776.5,1874660.284013489,1103477.800198087,548828.6936250852,0,3151.944216358138 -3542,4416,7974,7975,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.464204586877826,7.501600575270274,0,6,0,-18.24521211494062,0,-9,-9,2019,9,0,22,22,1,0,0,8.610057375148894,8.610057375148894,0,0,0,0,0,1,1,0,0,0,39.42,53.49,18.14,54.44,8.333333333333334,1,1,0,0,6,6,4,1,742.6666666666666,127204.8555310167,27496.2845263911,247987.9812954111,139306.071623209,3105.242310238786 -3542,4416,7975,7974,-9,-9,1,1,27,1,1,0,2,2,-9,0,2,8.551443620364696,8.450680601360794,0,6,0,-64.57953593898102,0,2,2,2019,26,8,38,38,1,8,0,12.80075451287694,12.80075451287694,0,0,0,0,0,1,1,0,0,0,18.14,54.44,39.42,53.49,1.666666666666667,1,1,0,0,9,6,4,1,742.6666666666666,127204.8555310167,27496.2845263911,247987.9812954111,139306.071623209,3105.242310238786 -3542,4416,7976,-9,7974,7975,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.354801034604,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,742.6666666666666,127204.8555310167,27496.2845263911,247987.9812954111,139306.071623209,3105.242310238786 -3543,4417,7977,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,5.758679445551582,5.841509163718285,0,0,-976.9097791807342,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.962176840024032,43.69,21.98,-9,-9,10,1,1,0,0,4,12,2,1,187,93278.29016225424,201071.9916410359,0,0,236.0138290766109 -3544,4418,7978,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.252966434975177,8.316209922624381,0,0,-1046.825326226946,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,6.685371400863856,8.494304754107574,49.44,56.93,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,161,1342255.845227445,248463.2060515289,425221.1989717706,0,3056.427569043514 -3545,4419,7979,7980,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.872176004976618,7.844447611744855,0,6,0,-66.50529011075366,0,2,2,2019,19,6,32,38,1,6,0,8.827527217568413,8.827527217568413,0,0,0,0,0,1,1,0,0,0,62.1,51.16,50,57,10,1,1,0,0,7,4,4,0,318.6666666666667,166573.2407639323,20443.20492193553,81387.67460389972,44719.54946724748,2970.755216160861 -3545,4419,7980,7979,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,8.205620184294125,8.283277144966343,0,6,0,107.1497266825666,0,2,2,2019,10,0,38,38,1,1,0,10.46762530665558,10.46762530665558,0,0,0,0,0,1,1,0,0,0,50,57,62.1,51.16,7,1,1,0,0,1,4,4,0,318.6666666666667,166573.2407639323,20443.20492193553,81387.67460389972,44719.54946724748,2970.755216160861 -3545,4419,7981,-9,7979,7980,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.1960145436022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,318.6666666666667,166573.2407639323,20443.20492193553,81387.67460389972,44719.54946724748,2970.755216160861 -3546,4420,7982,-9,7983,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.370100027878,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,927,-11082.64950674665,55379.45749344662,0,0,2106.139101687578 -3546,4420,7983,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1201.812520104965,-9,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,927,-11082.64950674665,55379.45749344662,0,0,2106.139101687578 -3547,4421,7984,7985,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,10,-1,-124.3415782628921,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.304945174263503,0,51.4,41.01,56.35,51,8.333333333333334,1,1,0,0,3,9,4,1,738,1505840.535947357,639843.7763966923,522795.483484679,0,4529.983314391977 -3547,4421,7985,7984,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.790164987500622,8.114218762623409,10,1,-5.596211341326633,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.761233705663846,8.606328556398708,56.35,51,51.4,41.01,8.333333333333334,1,1,0,0,1,9,4,1,738,1505840.535947357,639843.7763966923,522795.483484679,0,4529.983314391977 -3548,4422,7986,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1147.088069884069,0,2,1,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,42,1,0,1,0,0,34.91,49.61,-9,-9,3.333333333333333,3,4,0,1,4,6,1,0,379,5980.822215144013,-65343.58710145004,59442.81422869951,76079.95674158784,590.3112114358053 -3548,4422,7987,-9,7986,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.358636361476,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,3,4,-9,0,0,6,1,0,379,5980.822215144013,-65343.58710145004,59442.81422869951,76079.95674158784,590.3112114358053 -3549,4423,7988,7989,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,32,0,-123.3172289561878,0,3,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,21.72,22.57,49.69,55.66,5,1,1,0,0,7,11,4,1,1081,766128.8215733853,409050.1992330393,88324.92688745192,30516.33904678531,2667.642689360072 -3549,4423,7989,7988,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.421593952070205,8.465113439278046,0,32,0,-36.20553308762834,0,3,2,2019,8,0,38,38,1,0,0,14.26101417049311,14.26101417049311,0,0,0,0,14.5,1,1,0,0,0,49.69,55.66,21.72,22.57,6.666666666666667,1,1,0,0,8,11,4,1,1081,766128.8215733853,409050.1992330393,88324.92688745192,30516.33904678531,2667.642689360072 -3549,4424,7990,-9,7988,7989,1,1,28,0,0,0,2,2,-9,0,4,8.057393265268802,7.664191143533952,0,0,0,-1043.250696170457,-9,2,2,2019,10,0,36,0,1,1,1,9.610570381282814,9.610570381282814,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,11,4,1,937,342929.8025261721,0,0,0,1261.49243415943 -3549,4425,7991,-9,7988,7989,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1032.54086720841,0,2,2,2019,11,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,29.35,55.99,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,40,30567.57976315101,0,0,0,512.2332131765061 -3550,4426,7992,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.193081908098724,8.090336096962645,0,0,-1188.81252674914,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.968906402537395,8.177980938881218,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,811,1289001.681203641,809731.1859443164,362771.7370711389,90175.67543399984,1394.238938627448 -3551,4427,7993,7994,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,0,0,0,5,-7,14.52593053353304,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,51.66,54.88,40.39,54.22,8.333333333333334,1,1,0,0,5,9,5,1,393.3333333333333,82007.74497159752,28402.22875595962,354382.3880530182,206599.87428595,2758.877220961083 -3551,4427,7994,7993,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.978672833624751,9.084955899655291,0,5,7,.6754800220257255,0,2,2,2019,19,7,55,65,1,7,0,14.49911274123409,14.49911274123409,0,0,0,0,2,1,1,0,1.322017371671702,0,40.39,54.22,51.66,54.88,8.333333333333334,1,1,0,0,12,9,5,1,393.3333333333333,82007.74497159752,28402.22875595962,354382.3880530182,206599.87428595,2758.877220961083 -3551,4427,7995,-9,7993,7994,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.749826360164,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,393.3333333333333,82007.74497159752,28402.22875595962,354382.3880530182,206599.87428595,2758.877220961083 -3552,4428,7996,7998,-9,-9,1,0,39,1,3,0,3,3,-9,0,4,7.613987741903813,7.317305350989963,0,4,4,22.06093730407745,0,3,3,2019,11,0,24,24,1,1,0,7.120254257720148,7.120254257720148,0,0,0,0,0,1,0,1,0,0,49,56,50,57,7,2,3,0,0,5,8,2,0,743.8,216148.8390412662,-53988.61204872357,207992.6200397629,38505.79717878403,2409.553963958711 -3552,4428,7997,-9,7996,7998,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1170.03410027037,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,743.8,216148.8390412662,-53988.61204872357,207992.6200397629,38505.79717878403,2409.553963958711 -3552,4428,7998,7996,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,0,0,0,4,-4,-128.2115237601754,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,49,56,7,2,3,1,1,0,8,2,0,743.8,216148.8390412662,-53988.61204872357,207992.6200397629,38505.79717878403,2409.553963958711 -3552,4428,7999,-9,7996,7998,1,0,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1054.808595303414,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,743.8,216148.8390412662,-53988.61204872357,207992.6200397629,38505.79717878403,2409.553963958711 -3552,4428,8000,-9,7996,7998,1,0,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-941.6452259468409,-9,3,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,2,3,-9,0,0,8,2,0,743.8,216148.8390412662,-53988.61204872357,207992.6200397629,38505.79717878403,2409.553963958711 -3552,4429,8001,-9,7996,7998,1,1,20,1,3,0,2,2,1,0,4,0,0,0,0,0,-1001.926018194141,-9,3,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,1,1,0,8,1,0,402,0,0,0,0,533.3929845341663 -3553,4430,8002,8003,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,8.205783420284,8.043941383408685,48,0,-102.6547338963155,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.402169997283946,8.272846791353585,62.39,56.71,39.56,32.11,8.333333333333334,1,1,0,0,4,7,4,1,366.5,1464046.697920221,827623.2658046281,278584.3196458628,0,3395.978602803922 -3553,4430,8003,8002,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.079350296396483,6.987566332467678,48,0,-14.0816441641004,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,4.766913763599117,0,0,1,1,0,2.213561121076713,6.884738593493577,39.56,32.11,62.39,56.71,8.333333333333334,1,1,0,0,3,7,4,1,366.5,1464046.697920221,827623.2658046281,278584.3196458628,0,3395.978602803922 -3554,4431,8004,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.965157303406827,7.459951655984314,0,0,-997.7560553327186,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.834799091758669,0,24.37051807190378,0,1,1,0,6.206729935148185,7.818721399295109,58.45,42.21,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,1295,877004.6707291852,248870.8820785017,596998.6396755349,0,1616.891767300218 -3555,4432,8005,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.976820174575647,8.021648761948631,0,0,0,-1138.061877400643,-9,3,2,2019,11,1,36,0,1,1,0,8.949263962752262,8.949263962752262,0,0,0,0,0,0,0,0,0,0,47.02,45.71,-9,-9,8.333333333333334,1,1,0,0,12,8,4,0,255,104124.005668351,20836.70323829464,0,0,1764.062875856423 -3556,4433,8006,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-936.8091574198031,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.930693799211085,0,53,44,-9,-9,8,1,1,0,0,0,12,1,1,165,213296.9552402165,0,57200.89681434752,0,933.7335063591038 -3556,4434,8007,-9,8006,-9,1,0,55,0,0,0,3,3,-9,0,3,7.56664644202412,7.609399918870797,0,0,0,-1091.27375949008,0,3,3,2019,14,1,31,17,1,1,0,6.196516380341673,6.196516380341673,0,0,0,0,95,1,1,0,0,0,40.16,32.18,-9,-9,1.666666666666667,1,1,0,0,8,12,3,1,503,235670.4693877967,129867.7509197406,0,0,811.4082179136557 -3557,4435,8008,8009,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.265029776740672,8.473218519891626,7.01703544489813,10,-3,-27.42982688537508,0,2,1,2019,12,0,37,37,1,0,0,11.83566790757559,11.83566790757559,0,0,0,0,0,0,0,0,1.661047091502485,7.154677432587323,50.12,49.78,51.7,49.11,6.666666666666667,1,1,0,0,11,4,4,1,1186.5,1005467.128322473,451467.4826937196,293393.3318042931,0,2253.817954278596 -3557,4435,8009,8008,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.585467229941645,5.915118583941084,10,3,82.19935327842808,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.435406944058305,5.787751389850778,51.7,49.11,50.12,49.78,1.666666666666667,1,1,0,0,9,4,4,1,1186.5,1005467.128322473,451467.4826937196,293393.3318042931,0,2253.817954278596 -3558,4436,8010,-9,8011,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.1083270653294,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,524.5,-65268.4003263298,0,0,0,2579.397252340871 -3558,4436,8011,-9,-9,-9,1,0,32,0,1,0,3,3,-9,1,3,0,5.837804297929271,5.505812335764134,0,0,-979.4191787762775,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,71.5,1,1,0,5.661709157526008,0,53.63,30.57,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,524.5,-65268.4003263298,0,0,0,2579.397252340871 -3559,4437,8012,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.982439732923156,8.242044056589339,4.457627339806757,0,0,-915.483937330323,0,3,2,2019,18,5,36,30,1,5,0,7.750703959085284,7.750703959085284,0,0,0,0,0,0,0,0,0,4.123159997839617,35.41,52.74,-9,-9,5,2,3,0,0,12,9,4,1,340,305044.558482645,-336.0521847126552,774014.4838165093,340843.7607445267,1391.173235733265 -3559,4438,8013,-9,8012,-9,1,1,28,0,0,0,1,1,-9,0,4,7.870205590233097,7.866318874655142,0,0,0,-988.2449481267956,0,2,2,2019,10,1,45,40,1,1,1,6.76315218987646,6.76315218987646,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,12,9,4,1,313,-198357.4879725416,0,0,0,896.0318403721536 -3560,4439,8014,-9,8016,8015,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-853.9888769905006,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43.73,59.7,-9,-9,10,1,1,0,0,1,4,3,1,356,905.731259280447,48799.89835191943,0,0,2994.818491036931 -3560,4439,8015,8016,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,5.672272575087122,5.656898525023421,4,4,60.20175974505376,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.562368569730735,6.002624446686469,50.32,20.53,48.87,58.55,6.666666666666667,1,1,0,0,0,4,3,1,356,905.731259280447,48799.89835191943,0,0,2994.818491036931 -3560,4439,8016,8015,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.955006228667136,7.908432407707665,6.419058636568105,4,-4,-72.46588517738816,0,-9,-9,2019,7,0,35,40,1,0,0,9.717747947063005,9.717747947063005,0,0,0,.070880546052333,2,1,0,1,6.737989813904011,0,48.87,58.55,50.32,20.53,8.333333333333334,1,1,0,0,3,4,3,1,356,905.731259280447,48799.89835191943,0,0,2994.818491036931 -3560,4440,8017,-9,8016,8015,1,1,18,0,1,0,2,2,-9,0,4,7.49017890647381,7.54375546085678,0,0,0,-931.9408100774899,-9,2,2,2019,11,0,30,0,1,2,1,6.002357615336165,6.002357615336165,0,0,0,0,0,1,0,1,2.635604662874377,0,48,59,-9,-9,7,1,1,0,0,1,4,3,1,343,44804.23478028689,-14874.15075059007,0,0,798.7772459878679 -3561,4441,8018,8019,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,8.340156990768284,8.404957181511309,0,35,1,-155.6278109655975,-9,3,3,2019,6,0,24,0,1,0,0,18.99468787332484,18.99468787332484,0,0,0,0,0,0,0,0,0,0,61.19,37.11,46.32,53.44,10,3,4,0,0,11,4,5,0,332,988212.6017044173,808249.5028917623,147408.8068752183,0,2898.462618156655 -3561,4441,8019,8018,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.09416649998378,8.018259301626356,0,10,-1,14.03935859848212,-9,3,3,2019,10,0,48,0,1,0,0,9.225170380590942,9.225170380590942,0,0,0,0,0,0,0,0,0,0,46.32,53.44,61.19,37.11,8.333333333333334,3,4,0,1,11,4,5,0,332,988212.6017044173,808249.5028917623,147408.8068752183,0,2898.462618156655 -3561,4442,8020,-9,8018,8019,1,1,28,0,0,0,2,2,-9,0,3,7.941142360021941,8.104523296359194,0,0,0,-1083.948903536999,0,3,3,2019,18,7,50,19,1,7,1,6.563766011567912,6.563766011567912,0,0,0,0,0,0,0,0,0,0,34.45,54.63,-9,-9,3.333333333333333,3,4,0,1,5,4,4,0,719,81123.61809081087,0,0,0,980.4374099061962 -3562,4443,8021,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.009346681749,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.708864316611354,0,0,1,1,0,0,0,63.51,27.37,-9,-9,0,3,4,0,0,0,6,1,1,861,146203.7582675421,0,0,0,834.4279582435092 -3563,4444,8022,-9,-9,8023,1,0,50,0,0,0,2,2,-9,0,4,9.163486025576287,9.560155110369729,0,0,0,-939.5136656214211,0,3,3,2019,12,0,37,50,1,0,0,40.32165336308651,40.32165336308651,0,0,0,0,14.5,1,1,0,0,0,46.22,50.27,-9,-9,8.333333333333334,1,1,0,0,2,1,5,1,2508,168349.2182072363,136890.3476211426,0,0,5136.142854995743 -3563,4445,8023,-9,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,0,0,0,0,-937.4858932160757,0,2,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.0092426533229312,0,50.68,33.82,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,370,-134877.5438146596,0,0,0,1103.775020986821 -3564,4446,8024,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,9.206949556117285,9.151806483752365,0,0,0,-1088.760492529601,0,2,1,2019,10,0,40,50,1,0,0,30.91470417895423,30.91470417895423,0,0,0,0,0,1,1,0,1.682972997611133,0,52.26,51.57,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,335,1498492.043427349,678350.2962093172,642066.8507912016,0,3754.548711332809 -3565,4447,8025,8026,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.523684608457353,8.348687431760645,0,11,2,-59.98615682627471,0,3,2,2019,10,0,50,50,1,1,0,12.28626087674692,12.28626087674692,0,0,0,0,0,1,1,0,2.168181360660606,0,51,49,52.94,53.98,7,1,1,0,0,1,4,4,1,513,109415.5199441114,45691.82808655683,108834.5471216599,37838.63315322132,2548.041895595562 -3565,4447,8026,8025,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,5.53360334497057,5.658862097174499,0,48,-2,80.24594923324578,0,3,3,2019,11,0,15,20,1,0,0,1.730934072326625,1.730934072326625,0,0,0,0,0,1,1,0,0,0,52.94,53.98,51,49,6.666666666666667,1,1,0,0,12,4,4,1,513,109415.5199441114,45691.82808655683,108834.5471216599,37838.63315322132,2548.041895595562 -3566,4448,8027,8029,-9,-9,1,1,55,0,3,0,2,2,-9,0,3,8.657675807088367,8.589963239693365,0,6,8,55.18222983397843,0,2,2,2019,16,4,50,54,1,4,0,11.61339616128373,11.61339616128373,0,0,0,0,0,1,1,0,0,0,43.07,41.15,47.71,35.37,6.666666666666667,1,1,0,0,9,9,5,1,833.6666666666666,2655017.899470396,1104064.227878542,839540.2758109627,0,5765.501114581314 -3566,4448,8028,-9,8029,8027,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.7894817331645,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,833.6666666666666,2655017.899470396,1104064.227878542,839540.2758109627,0,5765.501114581314 -3566,4448,8029,8027,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,8.77560012172372,8.869232123360002,0,6,-8,3.706682265045909,0,1,-9,2019,11,1,40,39,1,1,0,28.02731148554268,28.02731148554268,0,0,0,0,0,1,1,0,0,0,47.71,35.37,43.07,41.15,6.666666666666667,1,1,0,0,8,9,5,1,833.6666666666666,2655017.899470396,1104064.227878542,839540.2758109627,0,5765.501114581314 -3567,4449,8030,-9,8031,8033,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.0099957079,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,795.25,52367.63518145892,-3475.461500297065,239314.2148959049,112693.5372268017,5000.151327911029 -3567,4449,8031,8033,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.623426714402026,8.488179283390053,0,15,-4,-18.97952647157919,0,2,2,2019,10,0,20,0,1,0,0,31.20888281500721,31.20888281500721,0,0,0,0,0,1,1,0,7.109623579008928,0,48.87,58.55,57.33,53.46,6.666666666666667,1,1,0,0,9,10,5,1,795.25,52367.63518145892,-3475.461500297065,239314.2148959049,112693.5372268017,5000.151327911029 -3567,4449,8032,-9,8031,8033,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.546166148949,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,795.25,52367.63518145892,-3475.461500297065,239314.2148959049,112693.5372268017,5000.151327911029 -3567,4449,8033,8031,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.640340067401091,8.536872229552069,0,15,4,-3.794633413123318,0,2,2,2019,6,0,37,40,1,0,0,17.04960587518761,17.04960587518761,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.87,58.55,8.333333333333334,1,1,0,0,9,10,5,1,795.25,52367.63518145892,-3475.461500297065,239314.2148959049,112693.5372268017,5000.151327911029 -3568,4450,8034,8036,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.590776667439096,9.579616242562924,0,7,10,-54.04375086815372,0,3,3,2019,8,2,36,36,1,2,0,60.07593497098561,60.07593497098561,0,0,0,0,0,0,0,0,7.795392051924302,0,55.77,36.73,55.79,52.62,8.333333333333334,1,1,0,0,8,8,5,1,469.25,2116868.236537485,1696998.049785361,565991.8078352532,162063.4697265751,12296.51982932551 -3568,4450,8035,-9,8036,8034,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.725746027739,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,469.25,2116868.236537485,1696998.049785361,565991.8078352532,162063.4697265751,12296.51982932551 -3568,4450,8036,8034,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.364711588532559,9.368694555835955,0,7,-10,-68.45148359847033,0,2,2,2019,10,0,33,33,1,0,0,33.35517667325595,33.35517667325595,0,0,0,0,0,0,0,0,1.45974933444099,0,55.79,52.62,55.77,36.73,8.333333333333334,1,1,0,0,8,8,5,1,469.25,2116868.236537485,1696998.049785361,565991.8078352532,162063.4697265751,12296.51982932551 -3568,4450,8037,-9,8036,8034,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.1895687278011,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,469.25,2116868.236537485,1696998.049785361,565991.8078352532,162063.4697265751,12296.51982932551 -3569,4451,8038,8039,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.523715417665008,8.114857089101635,35,7,-5.264791899371639,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.088423839948828,59.15,49.67,57.16,56.15,8.333333333333334,1,1,0,0,5,12,4,1,355,1394751.643400386,921768.1228272391,294807.1033287492,0,3924.375841543811 -3569,4451,8039,8038,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.436701504302778,7.390778038716431,10,-7,-17.24644304738486,0,3,3,2019,10,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.469657856109278,57.16,56.15,59.15,49.67,8.333333333333334,1,1,0,0,11,12,4,1,355,1394751.643400386,921768.1228272391,294807.1033287492,0,3924.375841543811 -3570,4452,8040,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.452391691962865,7.414767890122449,0,0,0,-937.2925789512094,0,3,-9,2019,9,1,33,33,1,1,0,6.645125220312321,6.645125220312321,0,0,0,0,14.5,1,1,0,0,0,53.17,21.79,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,1757,-3979.37534075823,-15045.14654781548,0,0,858.0597608332822 -3570,4453,8041,-9,8040,-9,1,1,28,0,0,0,2,2,-9,0,4,7.78324786158056,7.674363307797743,0,0,0,-1011.084179522834,0,2,-9,2019,10,0,40,35,1,1,1,6.708231833939951,6.708231833939951,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,2,3,1,362,151984.2978653338,-83391.89341676779,0,0,1276.438126466927 -3570,4454,8042,-9,8040,-9,1,0,19,0,0,0,2,2,-9,0,3,7.040344732184242,6.847966730239605,0,0,0,-1017.374484281128,0,2,-9,2019,18,5,25,14,1,5,1,5.399271975873821,5.399271975873821,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,2,2,2,1,232,-85881.92182994708,0,0,0,672.7019274049551 -3571,4455,8043,-9,8045,8044,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-971.2147423798713,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,0,9,4,1,867.6666666666666,1066557.709963513,227879.804693256,750714.7034936141,26328.84186926909,3382.74712026773 -3571,4455,8044,8045,-9,-9,1,1,62,0,1,0,2,2,-9,0,4,8.110733756628257,8.057170397249211,0,20,4,1.443056897881142,0,3,3,2019,7,0,25,30,1,0,0,13.11139270346395,13.11139270346395,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.91,49.54,8.333333333333334,1,1,0,0,9,9,4,1,867.6666666666666,1066557.709963513,227879.804693256,750714.7034936141,26328.84186926909,3382.74712026773 -3571,4455,8045,8044,-9,-9,1,0,58,0,1,0,1,1,-9,0,3,8.686527800060007,8.792466542647608,0,21,-4,18.32246603204712,0,2,2,2019,10,1,50,50,1,1,0,11.17543187422883,11.17543187422883,0,0,0,0,0,0,0,0,0,0,56.91,49.54,57.16,56.15,10,1,1,0,0,9,9,4,1,867.6666666666666,1066557.709963513,227879.804693256,750714.7034936141,26328.84186926909,3382.74712026773 -3572,4456,8046,-9,8047,8048,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.756390246321,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,500.25,262052.3815472119,143286.7701564835,143944.1909505625,7644.546574547239,4726.037229177302 -3572,4456,8047,8048,-9,-9,1,0,36,1,2,0,2,2,-9,0,2,7.549865618118063,7.777002288915873,0,5,1,-38.0236449131482,0,2,2,2019,9,0,21,21,1,0,0,13.80935856195018,13.80935856195018,0,0,0,0,0,1,1,0,0,0,46.67,42.34,36.15,39.12,6.666666666666667,1,1,0,1,12,5,4,1,500.25,262052.3815472119,143286.7701564835,143944.1909505625,7644.546574547239,4726.037229177302 -3572,4456,8048,8047,-9,-9,1,1,35,1,2,0,2,2,-9,0,2,8.501945419234371,8.571946127742937,0,5,-1,-67.77980299792137,-9,3,-9,2019,11,1,42,0,1,1,0,14.23245382661169,14.23245382661169,0,0,0,0,0,1,1,0,0,0,36.15,39.12,46.67,42.34,5,1,1,0,1,13,5,4,1,500.25,262052.3815472119,143286.7701564835,143944.1909505625,7644.546574547239,4726.037229177302 -3572,4456,8049,-9,8047,8048,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.714833656473,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,500.25,262052.3815472119,143286.7701564835,143944.1909505625,7644.546574547239,4726.037229177302 -3573,4457,8050,8051,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.76029028379725,8.838449816513787,0,15,1,189.0353977012914,0,2,1,2019,24,12,37,39,1,12,0,15.03580875577656,15.03580875577656,0,0,0,0,0,0,0,0,5.066126527598127,0,32.9,57.87,43.44,58.7,6.666666666666667,1,1,0,0,6,6,5,1,789.5,411712.7812761927,221567.3011326859,245159.9132665677,63513.51234430326,3976.562195326465 -3573,4457,8051,8050,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.840415001947123,8.90480810606584,0,15,-1,-78.72032874863257,0,-9,-9,2019,18,6,43,40,1,6,0,18.12974216827805,18.12974216827805,0,0,0,0,0,0,0,0,3.09235088058308,0,43.44,58.7,32.9,57.87,8.333333333333334,1,1,0,0,8,6,5,1,789.5,411712.7812761927,221567.3011326859,245159.9132665677,63513.51234430326,3976.562195326465 -3574,4458,8052,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.167601895588528,7.622850467460336,7.104001282584749,0,0,-1026.34693488315,0,3,3,2019,12,3,16,25,1,3,0,9.500861455437901,9.500861455437901,0,0,0,0,0,1,1,0,5.524206802282778,7.020253075445198,52.7,55.6,-9,-9,1.666666666666667,1,1,0,0,10,2,3,1,1371,154392.0605119215,149669.1637232045,0,0,1970.402458035368 -3575,4459,8053,8054,-9,-9,1,0,47,0,0,0,2,2,1,1,2,0,0,0,3,7,19.57330590316884,-9,2,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.32,42.4,51.41,56.15,5,1,1,0,0,5,12,3,1,237,270692.6705709393,25106.80408380455,0,0,1660.463332214294 -3575,4459,8054,8053,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.620124961782826,7.511402609066101,0,3,-7,116.6583669964152,0,2,-9,2019,8,0,60,50,1,0,0,3.977690483446455,3.977690483446455,0,0,0,0,0,1,1,0,0,0,51.41,56.15,20.32,42.4,6.666666666666667,1,1,0,0,10,12,3,1,237,270692.6705709393,25106.80408380455,0,0,1660.463332214294 -3576,4460,8055,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.848877235127,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,2,3,1,1,3,8,1,0,611,-144381.5774876465,0,0,0,967.3699749544251 -3577,4461,8056,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.880353508097207,7.955366089596173,0,0,0,-1018.380084299928,0,-9,2,2019,16,4,34,34,1,4,0,8.143445025992319,8.143445025992319,0,0,0,0,0,1,1,0,0,0,40.49,47.75,-9,-9,5,1,1,0,1,4,12,3,0,379,129727.0972475428,57288.92881256915,0,0,914.4181296635693 -3577,4462,8057,-9,8056,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-951.1025662681471,-9,1,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,36.69,49.51,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,587,55077.37937828033,0,0,0,0 -3578,4463,8058,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.1379636926397,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,5.348562814685767,0,43.64776283610692,0,1,1,0,0,0,53.77,40.71,-9,-9,5,1,1,0,1,0,12,1,0,315,235889.0266947491,0,76117.26782837557,0,1261.763684933499 -3579,4464,8059,8061,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.471647847282728,8.430527834737969,0,4,-8,-46.54423542935412,0,2,2,2019,10,0,42,60,1,0,0,15.82044577780679,15.82044577780679,0,0,0,0,0,1,1,0,0,0,45.91,59.89,42.46,54.85,6.666666666666667,1,1,0,1,12,5,5,1,1231.666666666667,505231.8636231311,258953.7925744185,476870.622739065,357398.7368806668,4843.351366402792 -3579,4464,8060,-9,8059,8061,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.405109135214,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,1231.666666666667,505231.8636231311,258953.7925744185,476870.622739065,357398.7368806668,4843.351366402792 -3579,4464,8061,8059,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,9.292932519320054,9.033583427056223,0,4,8,65.62232679003569,0,-9,-9,2019,14,3,48,45,1,3,0,29.42975347586389,29.42975347586389,0,0,0,0,0,1,1,0,0,0,42.46,54.85,45.91,59.89,8.333333333333334,1,1,0,0,4,5,5,1,1231.666666666667,505231.8636231311,258953.7925744185,476870.622739065,357398.7368806668,4843.351366402792 -3580,4465,8062,8063,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,7.958742180428104,7.88999856849724,0,30,10,-75.2698679075036,0,2,1,2019,17,5,40,45,1,5,0,7.377649587403369,7.377649587403369,0,0,0,0,0,0,0,0,0,0,40.47,47.77,41.82,57.72,3.333333333333333,1,1,0,0,9,7,5,1,512.5,608935.3079004728,4933.593855639887,493903.2091449317,6647.546379564063,3234.565655923271 -3580,4465,8063,8062,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.429682526656421,8.249449993135853,0,30,-10,-77.81778893934224,0,2,2,2019,11,1,40,38,1,1,0,10.3646871952748,10.3646871952748,0,0,0,0,0,0,0,0,0,0,41.82,57.72,40.47,47.77,8.333333333333334,1,1,0,0,11,7,5,1,512.5,608935.3079004728,4933.593855639887,493903.2091449317,6647.546379564063,3234.565655923271 -3580,4466,8064,-9,8063,8062,1,0,26,0,0,0,1,1,-9,0,3,8.186610640245195,8.039563891398206,0,0,0,-921.2407502018784,0,1,1,2019,13,3,41,40,1,3,1,9.954733538086924,9.954733538086924,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,426,182707.5606898256,13339.98569151238,0,0,1673.867598666506 -3580,4467,8065,-9,8063,8062,1,1,21,0,0,0,2,2,1,0,3,7.684886534402562,7.469431996587687,0,0,0,-1036.58609039887,-9,1,1,2019,9,0,37,0,1,0,1,7.107831455979851,7.107831455979851,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,3,7,3,1,110,-143397.8030511112,0,0,0,1209.456621620169 -3581,4468,8066,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.915729430701862,9.034065150725024,6.869386363363007,0,0,-1091.420806943387,0,3,2,2019,23,11,38,39,1,11,0,20.81912588734344,20.81912588734344,0,0,0,0,0,0,0,0,7.196070501287559,0,30.87,65.23999999999999,-9,-9,3.333333333333333,1,1,0,0,11,8,5,0,436,209410.5037355523,0,0,0,2969.118310544673 -3582,4469,8067,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.347209664512327,7.773489044412949,0,0,0,-1049.551997973735,0,-9,-9,2019,12,0,35,40,1,0,0,12.34181651967492,12.34181651967492,0,0,0,0,0,0,0,0,7.947462363916532,0,57.06,57.76,-9,-9,6.666666666666667,4,2,0,0,7,2,4,1,662,716199.6298269252,510261.767089443,191207.2797913639,-11521.66049597759,1920.676482852872 -3583,4470,8068,8069,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,34,-3,0,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.26,54.61,54.73,40.87,8.333333333333334,1,1,0,0,0,4,1,0,712.5,220842.9392204984,16305.80625846495,218911.0251763654,0,1254.717979576054 -3583,4470,8069,8068,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,34,3,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54.73,40.87,49.26,54.61,8.333333333333334,1,1,0,0,0,4,1,0,712.5,220842.9392204984,16305.80625846495,218911.0251763654,0,1254.717979576054 -3584,4471,8070,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,7.957222659038957,8.361492276439471,0,0,0,-952.2751273960129,0,2,2,2019,6,0,20,20,1,0,0,18.42241718991351,18.42241718991351,0,0,0,0,0,0,0,0,4.314818269329259,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,2,4,0,136,469799.013761517,300408.054841558,279939.7288731904,36870.58556532751,1922.471072278211 -3585,4472,8071,8072,-9,-9,1,1,65,1,1,0,1,1,-9,0,3,8.803937217539941,9.118423740239571,8.322885298437736,6,2,-46.6553349644903,-9,2,2,2019,10,0,37,0,1,1,0,18.75061943019797,18.75061943019797,0,0,0,0,0,1,1,0,4.401436923407329,8.526393659603121,52,48,55.2,28.73,7,1,1,0,0,7,4,5,1,383,932033.7436853744,436227.868551655,410479.2828309481,0,5826.019765346292 -3585,4472,8072,8071,-9,-9,1,0,63,1,1,0,2,2,-9,0,2,0,6.924163991840162,6.901774465128008,6,-2,-84.81339401240059,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.291312623108464,7.040085505865687,55.2,28.73,52,48,8.333333333333334,1,1,0,0,3,4,5,1,383,932033.7436853744,436227.868551655,410479.2828309481,0,5826.019765346292 -3585,4473,8073,-9,8072,8071,1,1,37,1,1,0,1,1,-9,0,4,0,0,0,0,0,-985.8347140615339,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,4,1,1,456,-46451.41087252717,0,0,0,284.5379820045549 -3585,4474,8074,8076,-9,-9,1,1,45,1,1,0,2,2,-9,0,4,0,0,0,5,13,-31.20372964709669,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.700767053168883,0,52,55,57.06,57.76,8,1,1,0,0,0,4,4,1,1396,84561.32097809995,-18680.15811525701,166301.9157797693,124941.5055882234,2975.546483045555 -3585,4474,8075,-9,8076,8074,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-951.9987899311923,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1396,84561.32097809995,-18680.15811525701,166301.9157797693,124941.5055882234,2975.546483045555 -3585,4474,8076,8074,8072,8071,1,0,32,1,1,0,3,3,-9,0,5,8.473533040037937,8.448830711089514,0,5,-13,42.02472879748699,-9,1,1,2019,7,0,35,0,1,0,0,17.0979972651656,17.0979972651656,0,0,0,0,0,1,1,0,3.288725864934279,0,57.06,57.76,52,55,8.333333333333334,1,1,0,0,7,4,4,1,1396,84561.32097809995,-18680.15811525701,166301.9157797693,124941.5055882234,2975.546483045555 -3586,4475,8077,8078,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.311367909035086,8.204130627907373,18,9,163.2540881574518,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.196133602490077,0,0,0,0,6.171928596829347,8.490444043081006,61.28,48.88,51.83,57.2,10,1,1,0,0,9,9,4,1,1220,1956628.070760142,1110121.112319025,779837.2908137031,0,2007.313780719758 -3586,4475,8078,8077,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,19,0,102.0775079808787,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,61.28,48.88,10,2,3,0,0,8,9,4,1,1220,1956628.070760142,1110121.112319025,779837.2908137031,0,2007.313780719758 -3587,4476,8079,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.566440751251393,7.741153311463688,0,0,0,-990.1001538238555,0,-9,-9,2019,18,7,20,20,1,7,0,12.96169215756018,12.96169215756018,0,0,0,0,2,1,1,0,.771840920808213,0,28.23,61.73,-9,-9,6.666666666666667,3,4,0,0,10,8,3,1,779.5,0,0,0,0,1468.705566052181 -3587,4476,8080,-9,8079,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1080.144088764363,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,3,4,-9,0,0,8,3,1,779.5,0,0,0,0,1468.705566052181 -3588,4477,8081,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.374838780258595,7.552443411276879,0,0,-974.6108893407734,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.031865220629565,7.514578072390115,66.78,7.46,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,287,453559.1410050922,306117.3313828975,0,0,1509.11361496018 -3589,4478,8082,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1080.271453655293,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,24.68,21.22,-9,-9,1.666666666666667,4,2,0,1,0,8,1,0,913,86018.82146573292,0,0,0,2212.530979845496 -3590,4479,8083,8084,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.432013551899612,8.476440464694038,7,2,148.197701755376,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.074736632122726,8.659801714917121,56.16,47.11,61.04,39.41,8.333333333333334,1,1,0,0,3,4,4,1,456,1701361.26197361,914181.5712472613,416602.061016637,0,4116.129458932146 -3590,4479,8084,8083,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.148014206395577,7.210221238735293,7,-2,-95.9787720608666,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.494728359637262,7.13833944075354,61.04,39.41,56.16,47.11,8.333333333333334,1,1,0,0,8,4,4,1,456,1701361.26197361,914181.5712472613,416602.061016637,0,4116.129458932146 -3591,4480,8085,-9,-9,8087,1,0,12,0,0,1,3,0,-9,0,3,0,0,0,0,0,-975.2166725085004,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,4,2,-9,0,0,7,5,1,979.6666666666666,615731.8884907776,217531.6168892293,662488.1789909553,238845.3259337211,3088.249048891785 -3591,4480,8086,8087,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.007380866206031,7.01887170255348,0,33,0,75.90765212358205,0,-9,-9,2019,6,0,20,9,1,0,0,5.837193312401761,5.837193312401761,0,0,0,0,0,1,1,0,0,0,63.41,39.7,57.16,56.15,10,2,3,0,0,10,7,5,1,979.6666666666666,615731.8884907776,217531.6168892293,662488.1789909553,238845.3259337211,3088.249048891785 -3591,4480,8087,8086,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.969813518924893,9.061893138276007,0,33,0,-66.34231586358099,0,-9,-9,2019,7,0,48,40,1,0,0,17.97730856955421,17.97730856955421,0,0,0,0,0,1,1,0,4.960412695196093,0,57.16,56.15,63.41,39.7,8.333333333333334,2,3,0,0,10,7,5,1,979.6666666666666,615731.8884907776,217531.6168892293,662488.1789909553,238845.3259337211,3088.249048891785 -3592,4481,8088,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.560655736689219,7.408693593438239,0,0,0,-988.7911794396565,0,3,3,2019,16,5,90,75,1,5,0,2.4330664875041,2.4330664875041,0,0,0,0,0,0,0,0,9.800992906377077,0,43.04,50.37,-9,-9,1.666666666666667,1,1,0,0,9,13,3,1,461,-167970.3571939347,25163.45090602212,0,0,18008.72563185207 -3593,4482,8089,8091,-9,-9,1,1,48,0,2,0,1,1,-9,1,1,8.623476292238546,8.635585681147028,0,6,1,-79.69774432599692,0,-9,-9,2019,15,5,47,61,1,5,0,12.64314634796654,12.64314634796654,0,0,0,0,0,1,1,0,0,0,44.93,18.74,46.9,56.66,6.666666666666667,1,1,0,0,12,12,4,1,830.75,644115.7995566301,561137.6033885136,141583.4660354183,127161.5760112178,4291.71201792692 -3593,4482,8090,-9,8091,8089,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-907.6861256194551,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,830.75,644115.7995566301,561137.6033885136,141583.4660354183,127161.5760112178,4291.71201792692 -3593,4482,8091,8089,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.418913771248032,8.674493439502136,0,14,-1,-40.8154937096573,0,1,2,2019,9,0,45,20,1,0,0,13.43330126086252,13.43330126086252,0,0,0,0,5.48,1,1,0,0,0,46.9,56.66,44.93,18.74,8.333333333333334,1,1,0,0,10,12,4,1,830.75,644115.7995566301,561137.6033885136,141583.4660354183,127161.5760112178,4291.71201792692 -3593,4482,8092,-9,8091,8089,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.54566630761,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,830.75,644115.7995566301,561137.6033885136,141583.4660354183,127161.5760112178,4291.71201792692 -3594,4483,8093,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.516912825607587,5.565002042540837,0,0,-889.6813566564061,0,3,3,2019,22,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.539439327128013,47.65,25.56,-9,-9,0,1,1,0,1,0,11,2,1,759,326563.0240932622,125637.14840607,248266.5691710359,0,421.5538476824384 -3595,4484,8094,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.231768494464145,9.294149010414374,0,0,0,-937.5972905689755,0,2,3,2019,10,0,44,52,1,0,0,25.00674672531913,25.00674672531913,0,0,0,0,0,0,0,0,0,0,53.74,44.11,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,397,1386220.480153045,737087.3856717966,313761.539403858,0,3015.970151480808 -3596,4485,8095,-9,8097,8096,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-813.9377997755978,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,6,2,0,520,14104.49748330779,0,0,0,2471.798664917096 -3596,4485,8096,8097,-9,-9,1,1,57,0,1,0,1,1,-9,0,3,6.317618154446603,6.486667829334362,0,30,9,-99.06021495983804,0,-9,-9,2019,10,2,50,40,1,2,0,1.377147125107435,1.377147125107435,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,2,3,0,1,5,6,2,0,520,14104.49748330779,0,0,0,2471.798664917096 -3596,4485,8097,8096,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,0,0,0,30,0,165.879237769508,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.690053314234744,0,60.12,54.8,57.33,53.46,8.333333333333334,2,3,0,0,0,6,2,0,520,14104.49748330779,0,0,0,2471.798664917096 -3596,4486,8098,-9,8097,8096,1,1,23,0,1,1,2,0,0,0,3,0,0,0,0,0,-1199.929647008441,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,36.37,61.5,-9,-9,1.666666666666667,2,3,0,0,1,6,2,0,751,-190811.9932023492,0,0,0,257.6367657806654 -3596,4487,8099,-9,8097,8096,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-1082.350965854319,-9,3,1,2019,14,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,36.44,54.6,-9,-9,8.333333333333334,2,3,0,0,1,6,1,0,142,-39138.55155272251,0,0,0,-.807073881175711 -3597,4488,8100,8101,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,6.384957899964603,6.374416745287574,2,0,2.112362094027201,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.841145302847568,6.025129696134423,59.17,16.82,64.59,22.33,8.333333333333334,1,1,0,0,0,13,3,1,247.5,829036.6400815679,592471.1892503425,125374.3508237765,0,3841.670512992255 -3597,4488,8101,8100,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.921576777762395,7.855506109463768,39,0,190.9359259679936,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,7.975664662158722,8.161595002823272,64.59,22.33,59.17,16.82,8.333333333333334,1,1,0,0,0,13,3,1,247.5,829036.6400815679,592471.1892503425,125374.3508237765,0,3841.670512992255 -3597,4489,8102,-9,8101,8100,1,1,27,0,0,0,2,2,-9,0,4,8.92407848592647,8.825425427940081,0,0,0,-900.5575696069836,0,2,2,2019,10,0,40,40,1,1,0,28.59943889645802,28.59943889645802,0,0,0,2.796266336921807,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,1222,96811.67769413545,0,0,0,3062.136891208262 -3598,4490,8103,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.712292496636239,8.638222965835656,0,0,0,-1058.623832183932,0,3,2,2019,14,4,35,26,1,4,0,28.91577116223434,28.91577116223434,0,0,0,0,0,0,0,0,3.322960185274891,0,53.78,40.38,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,7263,49382.38669693073,87698.6017135541,49244.15484906999,33772.92571838261,2830.984766393706 -3598,4491,8104,-9,-9,8103,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.8510139970487,0,-9,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,1,0,0,11,2,1,1497,64111.36073688405,0,0,0,0 -3599,4492,8105,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.242620919128372,8.388575807638867,0,0,-967.8508463933994,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.015330829425919,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,1053,789772.4900804941,712136.9294552185,125698.8988434091,0,2558.908098251954 -3600,4493,8106,-9,8109,8108,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.8216143565334,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,3548,170173.8070858063,0,131398.3243385807,105927.822285762,1295.862760825007 -3600,4493,8107,-9,8109,8108,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.4016090804653,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,2,0,3548,170173.8070858063,0,131398.3243385807,105927.822285762,1295.862760825007 -3600,4493,8108,8109,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.663527881842336,7.5423902174811,0,6,1,-39.3669271665749,-9,2,2,2019,11,0,55,0,1,0,0,4.112410033203437,4.112410033203437,0,0,0,0,0,1,1,0,0,0,43.1,42.37,41.28,34.95,5,1,1,0,0,10,12,2,0,3548,170173.8070858063,0,131398.3243385807,105927.822285762,1295.862760825007 -3600,4493,8109,8108,-9,-9,1,0,29,0,2,0,3,3,-9,0,3,0,0,0,6,-1,31.97522682340892,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,34.95,43.1,42.37,8.333333333333334,1,1,0,0,0,12,2,0,3548,170173.8070858063,0,131398.3243385807,105927.822285762,1295.862760825007 -3601,4494,8110,-9,8111,8112,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.29897584921,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,3,0,516,20937.44101945503,0,0,0,2053.375540910485 -3601,4494,8111,8112,-9,-9,1,0,20,1,1,0,2,2,-9,0,4,7.036541578887292,6.851204685829991,0,1,-7,-50.67629533581954,0,-9,-9,2019,12,0,21,0,1,0,0,6.045382463314504,6.045382463314504,0,0,0,0,0,1,1,0,0,0,64.38,39.16,26.93,59.12,8.333333333333334,1,1,0,0,2,6,3,0,516,20937.44101945503,0,0,0,2053.375540910485 -3601,4494,8112,8111,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,7.9615960954384,8.326470707255302,0,1,7,-138.9477487405773,-9,-9,-9,2019,18,6,44,0,1,6,0,6.357399745714013,6.357399745714013,0,0,0,0,0,1,1,0,0,0,26.93,59.12,64.38,39.16,5,1,1,0,0,2,6,3,0,516,20937.44101945503,0,0,0,2053.375540910485 -3602,4495,8113,8114,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.494902340904977,8.393460848253879,0,15,5,57.26065812101434,0,2,2,2019,4,0,38,37,1,0,0,16.71988810905593,16.71988810905593,0,0,0,0,0,1,1,0,4.623571599427855,0,58.15,52.91,46.91,59.62,8.333333333333334,1,1,0,0,9,4,5,1,958.5,365869.3440441968,293315.5256865727,221872.7520111541,135801.1576421836,3819.395406718855 -3602,4495,8114,8113,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.802732127587516,8.720714926204316,0,11,-5,23.20120528384961,0,2,2,2019,11,0,52,55,1,0,0,17.03788115609246,17.03788115609246,0,0,0,0,0,1,1,0,2.821833960948931,0,46.91,59.62,58.15,52.91,8.333333333333334,1,1,0,0,10,4,5,1,958.5,365869.3440441968,293315.5256865727,221872.7520111541,135801.1576421836,3819.395406718855 -3602,4495,8115,-9,8114,8113,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.898974084544,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,958.5,365869.3440441968,293315.5256865727,221872.7520111541,135801.1576421836,3819.395406718855 -3602,4495,8116,-9,8114,8113,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.188181066057,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,958.5,365869.3440441968,293315.5256865727,221872.7520111541,135801.1576421836,3819.395406718855 -3603,4496,8117,8121,-9,-9,1,0,43,0,4,0,2,2,-9,0,2,0,0,0,9,-2,-40.13573063918853,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,48.86,41.23,58.08,5,1,1,0,0,0,1,3,0,1055.4,128502.4578244702,36914.67252790627,196747.8222483556,108372.9123913128,3563.288200345746 -3603,4496,8118,-9,8117,8121,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1147.50678838896,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,3,0,1055.4,128502.4578244702,36914.67252790627,196747.8222483556,108372.9123913128,3563.288200345746 -3603,4496,8119,-9,8117,8121,1,1,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1045.137176102377,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,3,0,1055.4,128502.4578244702,36914.67252790627,196747.8222483556,108372.9123913128,3563.288200345746 -3603,4496,8120,-9,8117,8121,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1168.351153600581,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,1055.4,128502.4578244702,36914.67252790627,196747.8222483556,108372.9123913128,3563.288200345746 -3603,4496,8121,8117,-9,-9,1,1,45,0,4,0,1,1,-9,0,4,8.681867658364155,8.534649639953223,0,25,2,15.90098426096734,0,2,2,2019,10,0,46,45,1,0,0,14.20312455409878,14.20312455409878,0,0,0,0,0,1,1,0,0,0,41.23,58.08,39.15,48.86,1.666666666666667,1,1,0,0,5,1,3,0,1055.4,128502.4578244702,36914.67252790627,196747.8222483556,108372.9123913128,3563.288200345746 -3604,4497,8122,-9,8123,8124,1,1,10,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1009.739851101105,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,3,0,794,59336.34344601714,15703.77267048736,0,0,2252.866423879585 -3604,4497,8123,8124,-9,-9,1,0,29,1,2,0,2,2,-9,0,2,7.85805234721908,7.630279359158946,0,8,0,17.06703011235226,0,2,2,2019,7,0,40,32,1,0,0,7.7445699929319,7.7445699929319,0,0,0,0,0,1,1,0,0,0,45.43,47.37,49,58,5,1,1,0,0,10,4,3,0,794,59336.34344601714,15703.77267048736,0,0,2252.866423879585 -3604,4497,8124,8123,-9,-9,1,1,29,1,2,0,2,2,-9,0,4,8.385654592105228,7.962173969192802,0,8,0,-45.10202538622472,0,2,2,2019,10,0,40,40,1,1,0,8.28712723345696,8.28712723345696,0,0,0,0,0,1,1,0,0,0,49,58,45.43,47.37,7,1,1,0,0,6,4,3,0,794,59336.34344601714,15703.77267048736,0,0,2252.866423879585 -3604,4497,8125,-9,8123,8124,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.698040469004,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,794,59336.34344601714,15703.77267048736,0,0,2252.866423879585 -3605,4498,8126,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.4868220372427,8.594156079008226,0,0,0,-970.7760554302413,0,-9,-9,2019,2,0,50,48,1,0,0,9.745164405932858,9.745164405932858,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,11,5,1,739,247831.2893971383,4628.48906863026,0,0,2069.559467432538 -3606,4499,8127,8128,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.49043160353008,9.63727006903803,0,25,-1,91.44045201861398,0,2,2,2019,13,1,50,50,1,1,0,25.68387232020164,25.68387232020164,0,0,0,0,0,0,0,0,5.740112915289771,0,47.77,56.48,58.05,54.52,5,1,1,0,1,10,2,5,1,566.5,1884233.297120668,1497646.652466626,271399.2867452324,0,5360.923972255826 -3606,4499,8128,8127,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.18800087681678,8.161114391519366,0,26,1,59.55895335002565,0,3,2,2019,10,0,40,40,1,0,0,9.874869258812538,9.874869258812538,0,0,0,0,0,0,0,0,5.886512342621105,0,58.05,54.52,47.77,56.48,8.333333333333334,1,1,0,0,7,2,5,1,566.5,1884233.297120668,1497646.652466626,271399.2867452324,0,5360.923972255826 -3607,4500,8129,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1013.602861260754,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,19.31,56.58,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,402,-137791.6855624331,50013.71431952414,0,0,653.2081631508429 -3608,4501,8130,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.271930484041288,7.438913214882236,0,0,0,-1082.13762513985,0,2,-9,2019,10,0,72,72,1,0,0,2.299550710168307,2.299550710168307,0,0,0,0,2,1,1,0,6.328167804709843,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,1234,253316.1619364328,108209.9269862903,143590.4638648469,0,1785.464002428432 -3609,4502,8131,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.842474265755143,7.976257956500304,0,0,0,-1032.948889098273,-9,-9,-9,2019,10,0,35,0,1,0,0,9.393474170848396,9.393474170848396,0,0,0,0,0,0,0,0,7.521160304045005,0,44.66,59.1,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,362,113138.4127885662,-29494.90127432431,0,0,1992.583960006679 -3610,4503,8132,-9,8134,8135,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.0867134908561,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,4,1,1137.25,370233.4479760981,163794.6631032318,163914.5075339562,23751.78185241901,3646.393127653409 -3610,4503,8133,-9,8134,8135,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.946883663977,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1137.25,370233.4479760981,163794.6631032318,163914.5075339562,23751.78185241901,3646.393127653409 -3610,4503,8134,8135,-9,-9,1,0,50,0,2,0,3,3,-9,0,3,7.26795936103027,7.389176718699428,0,9,3,149.1622054333835,0,2,2,2019,9,1,24,0,1,1,0,7.746089224202411,7.746089224202411,0,0,0,0,0,1,1,0,0,0,48.76,54.52,58.15,52.91,8.333333333333334,1,1,0,0,1,11,4,1,1137.25,370233.4479760981,163794.6631032318,163914.5075339562,23751.78185241901,3646.393127653409 -3610,4503,8135,8134,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.729310098347929,8.76289759256481,0,9,-3,-4.473949417394733,0,2,2,2019,10,1,41,41,1,1,0,20.85416458848202,20.85416458848202,0,0,0,0,0,1,1,0,0,0,58.15,52.91,48.76,54.52,8.333333333333334,1,1,0,0,10,11,4,1,1137.25,370233.4479760981,163794.6631032318,163914.5075339562,23751.78185241901,3646.393127653409 -3611,4504,8136,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.9445241868707,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,44.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,647,189899.1530808585,0,0,0,1462.413770303897 -3612,4505,8137,8138,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,7,-13,131.455712475417,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.488630714110488,0,50,47,56.18,45.98,7,1,1,0,0,2,13,2,0,7703.5,327004.249296168,0,194468.2928800025,0,865.8764388204752 -3612,4505,8138,8137,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.355947205017537,6.4768468570098,7,13,12.47849679571856,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.370921409656852,56.18,45.98,50,47,8.333333333333334,1,1,0,0,0,13,2,0,7703.5,327004.249296168,0,194468.2928800025,0,865.8764388204752 -3613,4506,8139,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.824329393204,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,43.33,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,491,81946.20624624453,0,0,0,1340.818633738982 -3614,4507,8140,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,7.956940153036718,8.27389962543513,0,0,-1047.770386338692,-9,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.9788129059810138,7.851248347973177,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,300,392218.1873364644,36878.45873338662,463833.9983487764,55557.80932942273,1988.382405486082 -3614,4508,8141,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,8.915802558959902,8.65720398527772,0,0,-1029.249698805436,0,-9,-9,2019,10,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,8.03346238372024,8.792455106252399,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,8,6,5,1,602,2547075.848986995,1851563.526232781,305023.6706388604,0,2928.040117555637 -3615,4509,8142,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.626755159012081,5.666097053086225,0,0,-818.0546407740658,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.530494315360741,52.33,42.37,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2269,127277.6105838228,163886.5900215619,0,0,228.748650726268 -3616,4510,8143,-9,8145,8144,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.535788652365,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,927.6666666666666,3342208.917507713,264419.0311368363,1275248.465466368,486170.8949427344,5926.533157627833 -3616,4510,8144,8145,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.145509595731458,8.662224991233039,0,22,3,-80.54474853726907,0,-9,-9,2019,9,0,20,20,1,0,0,33.33629236816407,33.33629236816407,0,0,0,0,0,1,1,0,7.251970775678587,0,51.73,58.82,15.56,48.81,8.333333333333334,1,1,0,0,8,8,5,1,927.6666666666666,3342208.917507713,264419.0311368363,1275248.465466368,486170.8949427344,5926.533157627833 -3616,4510,8145,8144,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,9.071122055703581,8.970391977170951,0,22,-3,144.4669298324522,0,-9,-9,2019,36,12,49,90,1,12,0,17.51321154736542,17.51321154736542,0,0,0,0,0,1,1,0,5.935145655782909,0,15.56,48.81,51.73,58.82,0,2,3,0,0,11,8,5,1,927.6666666666666,3342208.917507713,264419.0311368363,1275248.465466368,486170.8949427344,5926.533157627833 -3617,4511,8146,8147,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.721611318162896,8.443318867032888,0,18,-7,-45.7810317215289,0,1,1,2019,8,0,57,57,1,0,0,11.99177069315322,11.99177069315322,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.69,52.99,8.333333333333334,1,1,0,0,9,10,5,1,522.5,374271.3309669255,316785.4334848394,0,0,4745.266494799733 -3617,4511,8147,8146,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.393868560721401,8.453851875325292,0,18,7,-1.72805946364162,0,2,1,2019,15,4,43,30,1,4,0,14.27952655142955,14.27952655142955,0,0,0,0,0,0,0,0,4.159675218884986,0,49.69,52.99,57.33,53.46,6.666666666666667,2,3,0,0,8,10,5,1,522.5,374271.3309669255,316785.4334848394,0,0,4745.266494799733 -3618,4512,8148,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,6.83681502032132,6.65379664391334,0,0,0,-1024.921749438621,0,2,2,2019,17,5,16,16,1,5,0,6.730758656154218,6.730758656154218,0,0,0,0,0,1,1,0,0,0,33.26,57.64,-9,-9,5,1,1,0,0,10,7,2,0,281,62929.35990681507,81838.14637848463,0,0,1690.995045241438 -3619,4513,8149,8150,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.566774336078867,6.105882523220873,60,0,-124.3787570157826,0,3,3,2019,18,0,0,0,4,5,0,0,0,1,0,124.8128152018234,0,0,1,1,0,1.47704934819451,6.286018659364105,52.18,21.07,43.12,19.92,8.333333333333334,1,1,0,0,0,8,3,1,255,786384.286568057,133218.7524396531,580319.5041162509,0,2981.071127338592 -3619,4513,8150,8149,-9,-9,1,1,80,0,0,0,2,2,-9,0,1,0,7.404911133002547,7.778864184229559,60,0,63.3529286054296,0,2,3,2019,26,12,0,0,4,12,0,0,0,1,0,4.158781794682076,0,71.5,1,1,0,1.384016556491914,7.630621806523373,43.12,19.92,52.18,21.07,1.666666666666667,1,1,0,0,0,8,3,1,255,786384.286568057,133218.7524396531,580319.5041162509,0,2981.071127338592 -3620,4514,8151,8152,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.828210348028755,6.008533091568578,7,5,-38.62012917735987,0,-9,-9,2019,35,12,0,0,4,12,0,0,0,1,0,31.66386000328484,0,0,1,1,0,6.873470861760848,5.930408819110109,32.8,21.51,49.08,28.96,0,1,1,0,0,4,10,2,1,557,503169.2110290142,64096.87037178061,318103.5562292358,0,1506.784495648635 -3620,4514,8152,8151,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.264386199605592,6.325643086137061,0,7,-5,-6.922561658361572,0,3,3,2019,16,3,60,60,1,3,0,1.333316399228578,1.333316399228578,0,0,0,0,27,1,1,0,0,0,49.08,28.96,32.8,21.51,3.333333333333333,1,1,0,1,9,10,2,1,557,503169.2110290142,64096.87037178061,318103.5562292358,0,1506.784495648635 -3621,4515,8153,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.008764816780859,8.347283602736768,0,0,-1076.381611854028,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.898339589227042,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,0,8,3,1,1224,1085881.754673854,287940.0878674568,387877.7785306139,0,1664.015733299688 -3621,4516,8154,-9,8153,-9,1,1,34,0,0,0,2,2,-9,1,4,8.428213640777846,8.228792337489203,0,0,0,-1132.611347644718,0,3,3,2019,10,0,44,0,1,1,0,8.965364126534974,8.965364126534974,0,0,0,0,27,1,1,0,0,0,51,56,-9,-9,7,3,4,0,0,5,8,4,1,2248,63681.10195986967,-25792.59642955017,0,0,3697.395649940867 -3621,4517,8155,-9,8153,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-929.6353483214875,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,15.14,-9,-9,6.666666666666667,3,4,0,0,0,8,1,1,486,0,0,0,0,960.5998279953943 -3622,4518,8156,8157,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,0,0,0,3,-13,0,1,-9,-9,2019,13,1,0,25,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,15.16,47.74,6.666666666666667,1,1,0,1,4,2,1,0,1155.5,150270.3298352862,0,87937.37608604456,13324.02688065689,0 -3622,4518,8157,8156,-9,-9,1,1,43,0,0,0,3,3,-9,0,1,0,0,0,3,13,0,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,15.16,47.74,54.1,59.11,1.666666666666667,1,1,1,1,9,2,1,0,1155.5,150270.3298352862,0,87937.37608604456,13324.02688065689,0 -3623,4519,8158,8160,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.209742632051505,8.980694046037343,0,6,4,24.70282110355759,0,2,2,2019,9,0,37,37,1,0,0,24.12509786575736,24.12509786575736,0,0,0,0,0,0,0,0,0,0,54.2,57.49,16.87,62.07,8.333333333333334,1,1,0,0,7,13,5,1,435.3333333333333,586437.7104225006,515444.490103849,284410.9647281462,213606.6550024365,4836.682484933845 -3623,4519,8159,-9,8160,8158,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.215895597497,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,435.3333333333333,586437.7104225006,515444.490103849,284410.9647281462,213606.6550024365,4836.682484933845 -3623,4519,8160,8158,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,8.211494106820611,8.300939297719165,0,6,-4,37.61906032135195,0,2,2,2019,20,7,30,36,1,7,0,13.2011898194401,13.2011898194401,0,0,0,0,0,0,0,0,0,0,16.87,62.07,54.2,57.49,6.666666666666667,1,1,0,0,7,13,5,1,435.3333333333333,586437.7104225006,515444.490103849,284410.9647281462,213606.6550024365,4836.682484933845 -3624,4520,8161,-9,-9,-9,1,0,18,0,0,1,2,0,-9,1,2,0,3.590765749298254,3.517301518801104,0,0,-1146.421134377264,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,5.48,1,1,0,4.007942404564064,0,33.71,48.22,-9,-9,5,1,1,0,0,0,12,2,1,849,6901.564628386773,0,0,0,197.5428940955495 -3625,4521,8162,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.693175743378847,8.715179808170465,0,0,0,-982.0949416470303,0,3,3,2019,11,1,37,35,1,1,0,16.33488144130118,16.33488144130118,0,0,0,0,14.5,1,1,0,0,0,35.03,45.86,-9,-9,0,4,2,0,0,11,8,5,0,708,323691.3402485094,100058.5923576611,293930.0661765723,13107.98944805011,2276.803180153941 -3626,4522,8163,-9,8164,8166,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-865.1565758847819,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,708.5,373954.9847921566,21135.67481531448,326548.0778390018,56557.8792235919,2291.869389004069 -3626,4522,8164,8166,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,17,3,-122.9976752110604,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.91,46.31,3.333333333333333,3,4,0,1,6,8,4,0,708.5,373954.9847921566,21135.67481531448,326548.0778390018,56557.8792235919,2291.869389004069 -3626,4522,8165,-9,8164,8166,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8192672483997,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,708.5,373954.9847921566,21135.67481531448,326548.0778390018,56557.8792235919,2291.869389004069 -3626,4522,8166,8164,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.667080381660183,8.704496617808681,0,17,-3,100.4149548318643,0,-9,-9,2019,11,1,55,60,1,1,0,13.93731767490643,13.93731767490643,0,0,0,0,0,1,1,0,0,0,57.91,46.31,48.87,58.55,3.333333333333333,1,1,0,0,12,8,4,0,708.5,373954.9847921566,21135.67481531448,326548.0778390018,56557.8792235919,2291.869389004069 -3627,4523,8167,8168,-9,-9,1,0,73,0,0,0,1,1,-9,1,2,7.719372390187896,7.913197065680981,6.439036359220515,52,-1,-88.36394545606652,0,3,2,2019,6,0,15,20,1,0,0,19.19359428137439,19.19359428137439,1,0,11.47932218526329,0,0,1,1,0,4.885337007515766,5.968206124089019,63.43,26.45,63.97,49.13,10,1,1,0,0,8,9,4,1,210.5,2033891.140029087,433599.0459045839,1012719.076629493,0,5259.21318678157 -3627,4523,8168,8167,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.515559742419919,8.273916143476736,52,1,-43.18332782858266,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.881211543106286,8.550308495687684,63.97,49.13,63.43,26.45,10,1,1,0,0,0,9,4,1,210.5,2033891.140029087,433599.0459045839,1012719.076629493,0,5259.21318678157 -3628,4524,8169,-9,-9,-9,1,0,21,0,0,1,1,0,0,0,5,0,5.785399364855095,5.754365384533797,0,0,-1002.95793364555,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,6.212667141402975,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,1,4,1,2,0,993,-71855.72133100718,0,0,0,66.83956237386229 -3628,4525,8170,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1024.259305289755,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,1,1,0,89,-31275.74541100024,0,0,0,-9.439190041302936 -3628,4526,8171,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-959.8657201798185,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,1,1,0,170,-78620.69157431529,0,0,0,-438.8235613594618 -3628,4527,8172,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1110.424829450645,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.1987477694800778,0,49,58,-9,-9,7,4,6,0,0,0,1,1,0,368,0,0,0,0,-48.302997781508 -3629,4528,8173,8174,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,28,-5,64.88892079165274,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,1.337290618912904,0,55.79,52.62,49.86,55.31,6.666666666666667,1,1,0,0,0,9,4,1,894.6666666666666,1888252.3425965,1071322.27741636,446745.0415654572,65757.60023212248,2089.13775807638 -3629,4528,8174,8173,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.971467491354668,8.546082854024773,0,28,5,-25.01072021963569,0,2,3,2019,12,0,40,42,1,0,0,18.06343206476149,18.06343206476149,0,0,0,0,14.5,1,1,0,1.463105443935929,0,49.86,55.31,55.79,52.62,8.333333333333334,1,1,0,0,10,9,4,1,894.6666666666666,1888252.3425965,1071322.27741636,446745.0415654572,65757.60023212248,2089.13775807638 -3629,4528,8175,-9,8173,8174,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-973.4880513241186,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,9,4,1,894.6666666666666,1888252.3425965,1071322.27741636,446745.0415654572,65757.60023212248,2089.13775807638 -3629,4529,8176,-9,8173,8174,1,1,20,0,1,0,2,2,-9,0,3,8.059941023998761,8.026916349514257,0,0,0,-1041.860359070894,0,2,3,2019,8,0,45,35,1,0,1,7.996623361237057,7.996623361237057,0,0,0,.4109642051135989,0,1,1,0,2.757969775639634,0,51.41,56.15,-9,-9,5,1,1,0,0,2,9,4,1,537,17825.54609905622,0,0,0,1202.575484759655 -3630,4530,8177,8178,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,38,-3,-20.20679746575935,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.800857685569548,0,48.06,45.53,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,1683,1835292.519778303,1410604.631624067,482645.7187012978,39510.29768110656,4237.314835542961 -3630,4530,8178,8177,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.734033402224876,9.10704562536924,11,3,223.4589825755758,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.047244356758776,8.975824193453663,57.16,56.15,48.06,45.53,8.333333333333334,1,1,0,0,11,10,5,1,1683,1835292.519778303,1410604.631624067,482645.7187012978,39510.29768110656,4237.314835542961 -3631,4531,8179,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.00469343225714,7.945624977484758,5.739809837344278,0,0,-825.2866528851335,0,3,3,2019,6,0,45,45,1,0,0,8.606206016470278,8.606206016470278,0,0,0,0,5.48,0,0,0,5.935032160774703,6.168534332246953,58.57,38.42,-9,-9,5,1,1,0,0,11,5,4,1,394,203973.0725083952,136035.5567123378,0,0,1391.549362291616 -3632,4532,8180,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-886.5883687561155,-9,-9,-9,2019,27,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,25.66,58.85,-9,-9,1.666666666666667,1,1,0,0,4,2,2,0,583,139472.3349667752,0,0,0,942.6392880587243 -3633,4533,8181,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.545706275197786,7.872793828631679,0,0,0,-944.6045477546576,0,2,-9,2019,12,0,60,60,1,0,0,5.43845010511673,5.43845010511673,0,0,0,0,0,1,1,0,0,0,41.79,54.12,-9,-9,3.333333333333333,1,1,0,0,4,10,4,1,818,-78284.1749547564,-37836.13253503925,0,0,2075.308167723856 -3634,4534,8182,-9,8183,8184,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-909.0437637126452,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,2546.666666666667,180117.5942113369,69881.86184891548,165108.2838691988,95719.15688126111,2714.174342147002 -3634,4534,8183,8184,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.025155129713755,7.408776782190182,0,2,-6,8.059081862802906,0,-9,-9,2019,12,1,20,17,1,1,0,9.144216199704664,9.144216199704664,0,0,0,0,0,1,1,0,0,0,52,54.51,46.78,44.54,5,1,1,0,0,8,5,4,1,2546.666666666667,180117.5942113369,69881.86184891548,165108.2838691988,95719.15688126111,2714.174342147002 -3634,4534,8184,8183,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.540692350466649,8.414914791181234,0,2,6,18.59420735257078,0,-9,-9,2019,21,7,40,45,1,7,0,15.7454622388677,15.7454622388677,0,0,0,0,0,1,1,0,0,0,46.78,44.54,52,54.51,5,1,1,0,0,9,5,4,1,2546.666666666667,180117.5942113369,69881.86184891548,165108.2838691988,95719.15688126111,2714.174342147002 -3635,4535,8185,8186,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.526626529809653,7.717544519094329,59,4,-15.42298329861706,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.687268233946676,7.641970959508492,60.45,43.75,48.63,42.45,1.666666666666667,1,1,0,0,0,6,3,1,511.5,215939.5458176292,159440.8444787596,118649.0803257706,0,2852.453242626938 -3635,4535,8186,8185,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,59,-4,15.73460283191239,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.528335350489652,0,48.63,42.45,60.45,43.75,8.333333333333334,1,1,0,0,0,6,3,1,511.5,215939.5458176292,159440.8444787596,118649.0803257706,0,2852.453242626938 -3636,4536,8187,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.374648660552293,6.146393154227304,0,0,-874.4748225026771,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.092166414231311,6.139101932087916,61.04,39.41,-9,-9,10,1,1,0,0,0,6,2,1,814,148643.6493972722,38624.54635407074,222519.6522630337,0,1101.904792220385 -3637,4537,8188,-9,8189,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.2542845598098,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,1,1,813.5,-38755.44395503985,0,0,0,1190.382945421606 -3637,4537,8189,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1001.380969810639,-9,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,39.61,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,813.5,-38755.44395503985,0,0,0,1190.382945421606 -3638,4538,8190,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.000064139840429,6.490417821583852,0,0,-856.6633531770049,0,2,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.246078385729663,6.916469537598584,47.38,28.61,-9,-9,5,1,1,0,0,10,9,2,1,563,548426.1124605119,380549.0611599971,241020.7762895976,23291.87879456001,900.9148546781091 -3639,4539,8191,-9,8192,8193,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.0186367771718,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,3,0,640.3333333333334,-16748.69521187803,45579.99464260836,103942.8219494314,87410.65781175731,2283.587577142573 -3639,4539,8192,8193,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,7.852065194932578,8.02118573462041,0,6,-1,4.489177302390218,0,2,-9,2019,11,2,40,30,1,2,0,9.054293526665271,9.054293526665271,0,0,0,0,27,1,1,0,0,0,40.58,60.95,50.74,25.67,5,1,1,0,1,10,1,3,0,640.3333333333334,-16748.69521187803,45579.99464260836,103942.8219494314,87410.65781175731,2283.587577142573 -3639,4539,8193,8192,-9,-9,1,1,29,0,1,0,2,2,-9,1,2,0,0,0,6,1,-34.32115469313825,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50.74,25.67,40.58,60.95,3.333333333333333,1,1,0,1,6,1,3,0,640.3333333333334,-16748.69521187803,45579.99464260836,103942.8219494314,87410.65781175731,2283.587577142573 -3640,4540,8194,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.212388457865252,8.110709245235844,0,0,0,-943.5771659655923,0,-9,-9,2019,14,3,42,38,1,3,0,8.441378246872466,8.441378246872466,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,398,-42229.76429227724,0,0,0,1534.27008029907 -3641,4541,8195,8196,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,9,14,0,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.83,36.36,46.8,57.03,0,1,1,0,0,0,2,1,0,495.3333333333333,-68633.94778320294,0,0,0,2789.481505755817 -3641,4541,8196,8195,-9,-9,1,1,31,0,1,0,2,2,-9,1,3,0,0,0,9,-14,0,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.8,57.03,24.83,36.36,5,1,1,1,0,3,2,1,0,495.3333333333333,-68633.94778320294,0,0,0,2789.481505755817 -3641,4541,8197,-9,8195,8196,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1067.020948045436,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.56,60.86,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,495.3333333333333,-68633.94778320294,0,0,0,2789.481505755817 -3641,4542,8198,-9,8195,8196,1,1,18,0,1,0,2,2,-9,1,4,0,0,0,0,0,-902.679266537067,1,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.26,56.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,2022,0,0,0,0,375.9663663626913 -3642,4543,8199,8200,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.580830609638295,5.971137987388507,69,-1,-8.394863835579498,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.650406966874955,52,45,29.9,21.49,8,2,3,0,0,0,8,2,0,390,83657.82626796793,114160.8056003164,0,0,1281.910810459662 -3642,4543,8200,8199,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,69,1,124.920759795078,0,3,-9,2019,21,8,0,0,4,8,0,0,0,1,17.39309005755507,0,157.2548914838657,14.5,1,1,0,0,0,29.9,21.49,52,45,8.333333333333334,2,3,0,0,0,8,2,0,390,83657.82626796793,114160.8056003164,0,0,1281.910810459662 -3643,4544,8201,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,2,7.291186633223218,7.273640218190531,0,0,0,-881.9494247413564,0,3,2,2019,7,0,35,22,1,0,0,4.208218375019408,4.208218375019408,0,0,0,0,2,1,1,0,0,0,65.68000000000001,28.56,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,2850,152555.0535310679,35059.80379291184,0,0,634.7445683253698 -3644,4545,8202,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.746892062929,0,-9,3,2019,22,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,.1946237573014533,0,36.79,56.27,-9,-9,5,1,1,1,0,10,1,1,0,216,-83349.10148949751,0,0,0,66.29607284603821 -3645,4546,8203,-9,8206,8205,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-968.7584435166244,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,3,0,1661,104756.3346711297,118163.8907298252,257248.1985693664,181595.6637549206,2588.884782632949 -3645,4546,8204,-9,8206,8205,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-979.0531242703912,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,1661,104756.3346711297,118163.8907298252,257248.1985693664,181595.6637549206,2588.884782632949 -3645,4546,8205,8206,8208,-9,1,1,36,0,3,0,2,2,-9,0,3,8.257769222124734,8.066157374270553,0,16,3,-55.60684727224034,0,3,3,2019,15,2,42,36,1,2,0,11.75718860014868,11.75718860014868,0,0,0,0,2,1,1,0,0,0,39.14,52.49,48,57,3.333333333333333,2,3,0,0,12,8,3,0,1661,104756.3346711297,118163.8907298252,257248.1985693664,181595.6637549206,2588.884782632949 -3645,4546,8206,8205,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,9,-3,69.85407457549724,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,48,57,39.14,52.49,7,2,3,0,0,0,8,3,0,1661,104756.3346711297,118163.8907298252,257248.1985693664,181595.6637549206,2588.884782632949 -3645,4546,8207,-9,8206,8205,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.5494931762838,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,1661,104756.3346711297,118163.8907298252,257248.1985693664,181595.6637549206,2588.884782632949 -3645,4547,8208,-9,-9,-9,1,0,80,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1066.173440124852,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,11.52560343486138,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,0,492,149337.4309834496,0,0,0,1693.284230850033 -3646,4548,8209,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.387785546228575,5.406487592271346,0,0,-1102.109865571568,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,4.885691932879285,0,0,1,1,0,.5192407832560824,5.396781719081434,49,34,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,372,50329.41685873974,51072.92497071651,36206.78368773083,0,294.5989146665955 -3647,4549,8210,8211,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.343265053340121,7.562116294567945,10,-2,-46.62483656293277,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.490964673506099,7.209710259937443,46.55,43.16,55.2,44.8,6.666666666666667,1,1,0,0,0,12,3,1,1631,776394.7493926154,515508.396005676,189961.2623434183,45904.14058761088,2430.258712492115 -3647,4549,8211,8210,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.191402146287533,7.441593835686587,10,2,39.64652579641862,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.153750422283593,7.119255106666358,55.2,44.8,46.55,43.16,8.333333333333334,1,1,0,0,6,12,3,1,1631,776394.7493926154,515508.396005676,189961.2623434183,45904.14058761088,2430.258712492115 -3648,4550,8212,8213,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.910000619064973,7.629554221004897,26,3,-87.84606810052011,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.824104338515781,7.456581321261861,53.81,53.56,52.65,50.06,8.333333333333334,1,1,0,0,8,8,5,1,1125.5,3002142.455963457,1473499.956742912,1166947.282289134,0,4489.343873155261 -3648,4550,8213,8212,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.826045640747672,9.104832591322069,0,26,-3,-95.24099545340667,0,2,1,2019,11,0,20,20,1,0,0,42.63579333527881,42.63579333527881,0,0,0,0,0,0,0,0,8.026577260824654,0,52.65,50.06,53.81,53.56,8.333333333333334,1,1,0,0,8,8,5,1,1125.5,3002142.455963457,1473499.956742912,1166947.282289134,0,4489.343873155261 -3648,4551,8214,-9,8213,8212,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1013.075933418048,1,1,1,2019,9,0,0,7,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,1,1,8,1,1,1434,176631.0241458904,0,0,0,0 -3649,4552,8215,8216,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.191816107149567,7.219541977893166,0,21,1,76.84749196055078,0,2,3,2019,12,1,10,30,1,1,0,14.07493762788186,14.07493762788186,0,0,0,0,0,1,1,0,0,0,41,56.99,57.63,56.14,8.333333333333334,2,3,0,0,10,8,5,1,582.5,51543.4597672571,65789.05948596087,332377.2943078075,311090.5080814211,4114.147008420202 -3649,4552,8216,8215,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.028318594199916,9.415123064273654,0,21,-1,-28.50159304690833,0,1,1,2019,6,0,55,56,1,0,0,20.51357516215898,20.51357516215898,0,0,0,0,0,1,1,0,0,0,57.63,56.14,41,56.99,8.333333333333334,2,3,0,0,11,8,5,1,582.5,51543.4597672571,65789.05948596087,332377.2943078075,311090.5080814211,4114.147008420202 -3650,4553,8217,8218,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,6.530117588353876,6.318266550271371,0,10,2,174.016164872748,0,2,2,2019,10,0,38,38,1,0,0,2.066658281399865,2.066658281399865,0,0,0,0,0,0,0,0,0,0,59.29,49.68,33.82,31.95,8.333333333333334,1,1,0,0,11,11,2,1,1782,-83378.17060081646,-18343.22515910429,0,0,697.9492101494587 -3650,4553,8218,8217,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,0,0,0,10,-2,70.91489223261512,0,2,2,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,14.5,0,0,0,5.947910356275408,0,33.82,31.95,59.29,49.68,1.666666666666667,1,1,1,1,9,11,2,1,1782,-83378.17060081646,-18343.22515910429,0,0,697.9492101494587 -3651,4554,8219,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.474333685074821,7.540669849654352,0,0,0,-1065.539555552913,0,3,3,2019,10,0,30,25,1,0,0,6.856005414064235,6.856005414064235,0,0,0,0,27,1,1,0,0,0,35.26,53.64,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,959,158314.7281319456,49918.58327724238,0,0,1901.281988307819 -3651,4555,8220,-9,8219,-9,1,0,24,0,0,0,2,2,-9,0,3,7.433163688497812,7.835402147872602,0,0,0,-989.5551523810184,0,2,2,2019,7,0,40,40,1,0,1,6.687835637772177,6.687835637772177,0,0,0,0,27,1,1,0,0,0,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,206,13568.90315193458,0,0,0,602.101173342662 -3652,4556,8221,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.149568776732275,7.060289914279097,0,0,-1052.860774935924,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.12534452842231,61.86,36.52,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,227,852823.6121675192,0,439499.7957793713,0,1025.768176352132 -3653,4557,8222,8223,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,8.852519352996923,8.831033591039285,6.930912741479077,40,-5,-173.4866953636766,0,-9,-9,2019,15,4,40,40,1,4,0,22.15045896841891,22.15045896841891,0,0,0,0,0,1,1,0,0,7.087281116848779,56.74,39.03,48.18,61.8,3.333333333333333,1,1,0,0,10,8,5,1,789,2238109.423421652,1491152.153896075,597584.0066343844,0,4482.078044435347 -3653,4557,8223,8222,-9,-9,1,0,75,0,0,0,1,1,-9,0,5,0,0,0,6,5,-93.3473374577552,0,-9,-9,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,5.811027099703831,0,48.18,61.8,56.74,39.03,8.333333333333334,1,1,0,0,10,8,5,1,789,2238109.423421652,1491152.153896075,597584.0066343844,0,4482.078044435347 -3654,4558,8224,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.087370318226679,8.143624675720897,0,0,0,-956.9011032266695,0,2,2,2019,10,2,40,40,1,2,0,11.25937579078372,11.25937579078372,0,0,0,0,0,1,1,0,0,0,54.55,39.76,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,482,185801.4097207205,-8785.784099892522,0,0,1475.629465495149 -3654,4558,8225,-9,8224,-9,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1005.004612058082,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,0,482,185801.4097207205,-8785.784099892522,0,0,1475.629465495149 -3655,4559,8226,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,5.479485155007135,6.124348201470561,0,0,-1019.917879291022,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.211664485180712,0,0,1,1,0,0,6.159706021140165,48.76,29.67,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,448,252140.930915343,0,255516.2356201426,0,941.9340727277613 -3656,4560,8227,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.259452371380512,8.595867772111372,0,0,0,-1016.241648204539,0,-9,-9,2019,7,0,39,39,1,0,0,12.78219796741778,12.78219796741778,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,955,172731.2965520903,-8585.884926911036,0,0,2036.329342213136 -3657,4561,8228,8229,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,7,2,39.34614469435317,0,2,2,2019,2,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.16,38.47,51.36,49.35,8.333333333333334,1,1,0,0,8,13,4,1,594.3333333333334,635781.2287798777,370330.5220908011,182538.5832274401,31788.62828257605,2461.21148732442 -3657,4561,8229,8228,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.514480152747426,8.619535431089547,0,7,-2,78.17860972990849,0,2,2,2019,5,0,37,38,1,0,0,18.8368455049667,18.8368455049667,0,0,0,0,0,1,1,0,0,0,51.36,49.35,63.16,38.47,10,1,1,0,0,8,13,4,1,594.3333333333334,635781.2287798777,370330.5220908011,182538.5832274401,31788.62828257605,2461.21148732442 -3657,4561,8230,-9,8229,8228,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9813312995532,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,594.3333333333334,635781.2287798777,370330.5220908011,182538.5832274401,31788.62828257605,2461.21148732442 -3657,4562,8231,-9,8229,8228,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-1128.11057759118,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.84,42.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,2070,-151025.3921784873,0,0,0,-588.1520018044761 -3658,4563,8232,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.802614872359523,9.115435925140238,0,0,0,-997.9186592833527,0,2,1,2019,11,1,60,60,1,1,0,16.89442493329614,16.89442493329614,0,0,0,0,7,1,1,0,1.556975340357406,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,615,971461.0513044377,773467.64926548,161581.2417764602,70482.38316560345,2978.017893469952 -3658,4564,8233,-9,8232,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-1066.338473907544,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,550,-36548.3957005291,0,0,0,515.0148589689636 -3659,4565,8234,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-998.1191565689658,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,43.45,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,754,18432.93124633514,0,0,0,769.3599966689303 -3660,4566,8235,-9,8236,8238,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.801842807557,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,467.5,307355.6337955665,232205.5100769234,286323.4686764774,163033.9039510677,5193.785868318741 -3660,4566,8236,8238,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,0,0,0,12,-17,-47.22124694161853,0,2,2,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.380325165951455,0,54.45,56.22,57.06,57.76,10,1,1,0,0,4,4,5,0,467.5,307355.6337955665,232205.5100769234,286323.4686764774,163033.9039510677,5193.785868318741 -3660,4566,8237,-9,8236,8238,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.3842944420431,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,0,467.5,307355.6337955665,232205.5100769234,286323.4686764774,163033.9039510677,5193.785868318741 -3660,4566,8238,8236,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,9.571786055365767,9.745527795809718,0,12,17,-.4974441344899905,0,3,2,2019,6,0,47,50,1,0,0,25.30639751157726,25.30639751157726,0,0,0,0,0,1,1,0,7.274674746319887,0,57.06,57.76,54.45,56.22,8.333333333333334,1,1,0,0,8,4,5,0,467.5,307355.6337955665,232205.5100769234,286323.4686764774,163033.9039510677,5193.785868318741 -3660,4567,8239,-9,8236,8238,1,0,21,0,2,0,2,2,-9,0,4,7.818802643717907,8.037842414809431,0,0,0,-1080.540850702553,0,1,2,2019,9,0,41,39,1,0,1,6.363073774395304,6.363073774395304,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,10,1,1,0,0,4,4,4,0,104,63267.84259779991,105066.7436051473,0,0,1053.009333980827 -3661,4568,8240,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,3,0,4.543788959397933,4.937671407907452,0,0,-943.5089528207893,-9,-9,-9,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,5.531297799463134,0,21.67,59.26,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,796,51096.73450845734,0,0,0,-237.8521501175069 -3661,4569,8241,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,7.181047379777618,7.287804267476455,0,0,-1062.021126817409,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,7.820110345045298,0,32.03,56.92,-9,-9,6.666666666666667,2,3,0,0,0,6,3,0,288,20254.61647189086,0,0,0,1353.008531863295 -3662,4570,8242,8243,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.422493072822007,8.291898645969246,0,6,1,-35.07508688886453,0,2,2,2019,9,1,39,37,1,1,0,13.163824658428,13.163824658428,0,0,0,0,2,0,0,0,1.424030303991549,0,50.14,53.97,53,54,6.666666666666667,1,1,0,0,8,10,5,1,1662,960767.7474566053,630272.9965383913,408329.5814408867,90826.26141492251,5042.536215453632 -3662,4570,8243,8242,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.671243402728564,8.856820798011062,0,6,-1,51.91629511061194,-9,-9,-9,2019,9,0,40,0,1,1,0,16.39474451936361,16.39474451936361,0,0,0,0,0,0,0,0,7.49672278694524,0,53,54,50.14,53.97,8,1,1,0,0,1,10,5,1,1662,960767.7474566053,630272.9965383913,408329.5814408867,90826.26141492251,5042.536215453632 -3663,4571,8244,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,6.385529637857517,6.367835595892233,0,0,-956.6403315058558,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.179154416197263,6.538674809025787,48.18,61.8,-9,-9,10,1,1,0,0,4,6,2,1,937,329237.3326980464,183743.3489006092,181514.5908987565,0,1162.567256487165 -3664,4572,8245,8246,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.036036164821525,7.951288368312801,9,0,91.81306764370282,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.918887197269027,8.251862823783595,52.99,51.28,57.63,56.14,8.333333333333334,1,1,0,0,1,11,3,1,799,1269322.268003156,524687.4290450951,271763.9377530408,0,3829.035020279801 -3664,4572,8246,8245,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.506344493614967,6.511325341707103,9,0,42.54331923995954,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.582849693051173,6.484167520047158,57.63,56.14,52.99,51.28,10,1,1,0,0,0,11,3,1,799,1269322.268003156,524687.4290450951,271763.9377530408,0,3829.035020279801 -3665,4573,8247,8249,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,9.530822865375331,9.366974280605795,0,7,-1,-9.268784460131007,0,2,3,2019,6,0,50,45,1,0,0,36.31309729537529,36.31309729537529,0,0,0,0,0,1,1,0,7.847679773862729,0,58.49,50.2,50.01,55.31,8.333333333333334,2,3,0,0,9,2,5,1,986.5,427509.7351085729,259388.5998837206,430312.1655882297,294926.0073928661,14165.41009978878 -3665,4573,8248,-9,8249,8247,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.124527901088,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,986.5,427509.7351085729,259388.5998837206,430312.1655882297,294926.0073928661,14165.41009978878 -3665,4573,8249,8247,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.886563887440815,8.820780924995624,0,12,1,-124.2588752186769,0,2,2,2019,10,1,45,45,1,1,0,16.24554499059927,16.24554499059927,0,0,0,0,0,1,1,0,0,0,50.01,55.31,58.49,50.2,10,2,3,0,0,6,2,5,1,986.5,427509.7351085729,259388.5998837206,430312.1655882297,294926.0073928661,14165.41009978878 -3665,4573,8250,-9,8249,8247,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.684660181774,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,986.5,427509.7351085729,259388.5998837206,430312.1655882297,294926.0073928661,14165.41009978878 -3666,4574,8251,8252,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,1,0,.3683040553289709,-9,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,41.7,60.44,31.07,64.34999999999999,6.666666666666667,1,1,1,0,0,9,3,0,504.5,17112.36410836273,0,0,0,1044.085380544456 -3666,4574,8252,8251,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.715687444242533,8.106058200684304,0,1,0,14.55149405887243,0,-9,-9,2019,20,8,37,50,1,8,0,6.912053404122965,6.912053404122965,0,0,0,0,0,0,0,0,0,0,31.07,64.34999999999999,41.7,60.44,8.333333333333334,1,1,0,0,9,9,3,0,504.5,17112.36410836273,0,0,0,1044.085380544456 -3667,4575,8253,-9,8254,-9,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-903.6533591804987,-9,2,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,352.5,-16791.73535544553,22987.97475865963,0,0,1201.098848225052 -3667,4575,8254,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.038061224486604,7.048152228768097,0,0,0,-986.4894273385626,0,-9,-9,2019,21,9,16,16,1,9,0,10.24611100710385,10.24611100710385,0,0,0,0,0,1,1,0,0,0,30.89,61.61,-9,-9,1.666666666666667,1,1,0,1,4,10,2,0,352.5,-16791.73535544553,22987.97475865963,0,0,1201.098848225052 -3668,4576,8255,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-938.2796821738914,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.17,39.27,-9,-9,10,1,1,0,0,0,8,1,1,450,127510.006769493,0,0,0,1048.974227966953 -3668,4577,8256,-9,8255,-9,1,0,26,0,0,0,1,1,1,0,4,0,0,0,0,0,-1022.881247494684,-9,1,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,41.57,55.01,-9,-9,6.666666666666667,1,1,1,0,0,8,1,1,661,-46266.88683818765,0,0,0,391.7922401636552 -3669,4578,8257,-9,-9,-9,1,0,23,0,0,0,1,1,0,0,4,0,6.181958859339131,6.188904431899283,0,0,-885.1399430829642,-9,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,6.589429232980155,0,20.3,66.55,-9,-9,6.666666666666667,1,1,0,0,4,10,2,0,662,52496.61779272075,0,0,0,1582.166862222259 -3670,4579,8258,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,5.014224528707375,5.286212269018585,0,0,-979.5892713046666,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.044861061606261,42.16,18.85,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,307,109161.1483219604,-57172.67165967256,0,0,1169.209931042064 -3671,4580,8259,8262,-9,-9,1,1,35,2,2,0,2,2,-9,0,4,9.251318939113961,9.180378602069171,0,5,2,50.58865241680979,0,-9,2,2019,10,0,35,37,1,1,0,37.44207391512567,37.44207391512567,0,0,0,0,0,1,1,0,5.466611605933944,0,50,57,51.83,57.2,7,1,1,0,0,1,7,5,1,661,75734.70208961924,117420.3262414619,283735.3971810815,169410.446052862,5367.358282792239 -3671,4580,8260,-9,8262,8259,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-876.9499496959302,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,661,75734.70208961924,117420.3262414619,283735.3971810815,169410.446052862,5367.358282792239 -3671,4580,8261,-9,8262,8259,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-980.5221987285563,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,661,75734.70208961924,117420.3262414619,283735.3971810815,169410.446052862,5367.358282792239 -3671,4580,8262,8259,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,8.231864247723903,8.349191597999555,0,5,-2,67.45342580587506,0,1,2,2019,10,0,24,28,1,0,0,18.85747545229162,18.85747545229162,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50,57,8.333333333333334,1,1,0,0,9,7,5,1,661,75734.70208961924,117420.3262414619,283735.3971810815,169410.446052862,5367.358282792239 -3672,4581,8263,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,0,0,0,0,-945.8865492567536,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,9,13,1,1,1146,-78301.36692899399,0,108349.5878445827,0,1020.420944816834 -3672,4582,8264,-9,-9,8263,1,0,23,0,0,0,1,1,-9,0,4,8.22477763595812,8.207789595529842,0,0,0,-983.0443205856997,0,-9,1,2019,12,0,38,38,1,2,0,11.40864892966552,11.40864892966552,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,3,13,4,1,569,106138.9960745215,-41780.49869255091,0,0,1734.275916624595 -3673,4583,8265,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.323511146908243,6.36309381818697,0,0,-1097.649242582942,-9,3,2,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.257303352248061,6.594682440000144,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,2991,-76283.37271729187,51081.78778401422,0,0,960.9697320426044 -3674,4584,8266,8268,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,25,-3,0,0,2,2,2019,19,7,0,8,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.97,44.03,35.34,51.61,5,1,1,0,0,2,4,1,1,1075.666666666667,0,0,0,0,758.0521685307576 -3674,4584,8267,-9,8266,8268,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.550559097078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,1,1075.666666666667,0,0,0,0,758.0521685307576 -3674,4584,8268,8266,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,0,0,0,25,3,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,.1215163964257133,0,35.34,51.61,28.97,44.03,6.666666666666667,1,1,1,1,10,4,1,1,1075.666666666667,0,0,0,0,758.0521685307576 -3674,4585,8269,-9,8266,8268,1,0,18,0,1,1,2,0,0,0,3,0,5.467080164288703,5.184134515583319,0,0,-891.0014956506551,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,4.949076564132511,0,43.84,58.37,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,406,-119474.8551970118,0,0,0,140.0691306251341 -3675,4586,8270,8271,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.208667893412541,9.186690521715617,0,10,4,141.0529657722402,0,3,3,2019,7,0,49,51,1,0,0,21.86380440419202,21.86380440419202,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.61,53.7,8.333333333333334,1,1,0,0,12,5,5,1,2022,142561.1925522968,0,263134.7259091486,33686.42516341608,4655.910512289724 -3675,4586,8271,8270,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,7.889204932838061,7.837516008939561,0,10,-4,-84.79430661855125,0,3,3,2019,12,0,45,35,1,0,0,8.872599787640253,8.872599787640253,0,0,0,0,0,0,0,0,0,0,47.61,53.7,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,1,2022,142561.1925522968,0,263134.7259091486,33686.42516341608,4655.910512289724 -3676,4587,8272,8273,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.879644495913095,7.208921388868941,58,0,72.46996522062423,0,2,3,2019,17,6,0,0,4,6,0,0,0,1,0,3.357037490426231,0,7,1,1,0,2.397242522717014,7.363776270361442,47.13,22.01,60.82,16.73,3.333333333333333,1,1,0,0,0,8,3,1,548.5,802114.0400346091,414787.9316681928,308759.8192153909,0,2418.347617544668 -3676,4587,8273,8272,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.60746896068516,6.035266620149961,58,0,-167.3591215931505,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,72.17753748318097,0,74.5,1,1,0,1.447720186547947,6.721194944416555,60.82,16.73,47.13,22.01,10,1,1,0,0,0,8,3,1,548.5,802114.0400346091,414787.9316681928,308759.8192153909,0,2418.347617544668 -3677,4588,8274,8275,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,6.798093727639111,6.32317329199056,0,2,-3,138.1531092087529,0,-9,-9,2019,9,0,25,38,1,0,0,3.869574971905613,3.869574971905613,0,0,0,0,0,0,0,0,0,0,60.12,54.8,39.96,54.46,8.333333333333334,1,1,0,0,3,9,4,0,505.5,159243.1209020583,-37757.76787955736,0,0,1661.25178849976 -3677,4588,8275,8274,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.244988472162754,8.165470989138402,0,2,3,77.83545284551965,0,2,2,2019,9,0,45,0,1,0,0,7.916981847488382,7.916981847488382,0,0,0,0,0,0,0,0,0,0,39.96,54.46,60.12,54.8,1.666666666666667,1,1,0,0,9,9,4,0,505.5,159243.1209020583,-37757.76787955736,0,0,1661.25178849976 -3678,4589,8276,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1035.108257441124,0,-9,-9,2019,13,3,0,40,4,3,0,0,0,0,0,0,0,0,1,1,0,3.744917839154934,0,43.47,50.15,-9,-9,6.666666666666667,1,1,0,0,8,8,1,1,2971,-883.4561765311664,116644.6203918779,0,0,20.53034558469949 -3679,4590,8277,8278,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.131317884143274,5.411759577193474,28,5,34.7621243806926,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.397064030240161,5.113730918854078,50.32,48.42,62.66,52.4,8.333333333333334,1,1,0,0,6,4,5,1,1364.5,726819.4662914493,514622.0974270209,116840.8105687185,0,4525.731663563245 -3679,4590,8278,8277,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.257808600133725,9.008311567794024,0,11,-5,-32.44854176709414,0,3,3,2019,6,0,42,41,1,0,0,31.37191252093633,31.37191252093633,0,0,0,0,0,0,0,0,5.086065150504439,0,62.66,52.4,50.32,48.42,8.333333333333334,1,1,0,0,13,4,5,1,1364.5,726819.4662914493,514622.0974270209,116840.8105687185,0,4525.731663563245 -3680,4591,8279,8280,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,6.837257827635969,6.944326127505461,0,37,1,-27.60184559493039,0,3,3,2019,13,1,24,20,1,1,0,5.057152648764794,5.057152648764794,0,0,0,0,0,1,1,0,0,0,43.67,61.06,53,55,8.333333333333334,1,1,0,0,8,11,4,0,407,178642.5055395126,75091.05057566911,51319.71192033254,0,1846.232411278725 -3680,4591,8280,8279,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.174252780534033,7.996787151537691,0,7,-1,43.76123894509557,-9,-9,-9,2019,9,0,40,0,1,1,0,8.608542379017976,8.608542379017976,0,0,0,0,0,1,1,0,0,0,53,55,43.67,61.06,8,1,1,0,0,1,11,4,0,407,178642.5055395126,75091.05057566911,51319.71192033254,0,1846.232411278725 -3681,4592,8281,8282,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.755867589949649,7.628098493558913,0,21,9,-47.67653062452568,0,3,3,2019,10,0,48,48,1,0,0,4.552048056239831,4.552048056239831,0,0,0,0,0,0,0,0,0,0,39.65,56.19,53,54,5,1,1,0,1,7,2,3,0,240,83471.29803812943,146572.358037348,0,0,734.7075866639427 -3681,4592,8282,8281,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,0,0,0,22,0,153.0956307956934,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,3.078260933259139,0,53,54,39.65,56.19,8,1,1,1,0,0,2,3,0,240,83471.29803812943,146572.358037348,0,0,734.7075866639427 -3682,4593,8283,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.965815643886415,8.317579516873792,0,0,-997.669421515017,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.725226937834795,8.31951202342346,61.76,11.69,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,1254,1156709.83165223,748751.7860096643,351316.3977367783,0,2899.203734681714 -3682,4594,8284,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,7.43677628419645,7.677512521357553,0,0,0,-958.4974639638344,-9,-9,-9,2019,11,1,34,0,1,1,0,7.332083449603041,7.332083449603041,0,0,0,0,0,1,1,0,0,0,42.23,49.99,-9,-9,1.666666666666667,1,1,0,0,8,2,3,1,343,-76707.46892407635,-62820.39408021573,0,0,893.349340399305 -3683,4595,8285,-9,8287,8286,1,1,16,0,0,0,2,2,-9,0,3,0,4.749395625104261,4.323951952362653,0,0,-964.6251269631116,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.102105966722604,0,38.51,59.43,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,1143,57453.67781209111,32920.09690208808,0,0,6613.644296431932 -3683,4595,8286,8287,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.60703548280582,8.48126081651316,0,24,1,107.3305024202624,0,2,1,2019,13,4,30,30,1,4,0,17.2313535862841,17.2313535862841,0,0,0,0,0,0,0,0,9.053040601163325,0,53.9,52.09,52,54.51,8.333333333333334,1,1,0,0,11,9,5,1,1143,57453.67781209111,32920.09690208808,0,0,6613.644296431932 -3683,4595,8287,8286,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.391199951501692,8.604806299468484,0,24,-1,-73.09972405715772,0,2,1,2019,11,0,42,38,1,0,0,15.08349470163169,15.08349470163169,0,0,0,0,0,0,0,0,0,0,52,54.51,53.9,52.09,6.666666666666667,4,2,0,0,11,9,5,1,1143,57453.67781209111,32920.09690208808,0,0,6613.644296431932 -3683,4596,8288,-9,8287,8286,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-966.6011738422162,-9,1,1,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,0,9,1,1,721,52661.65190610012,0,0,0,131.1008811650958 -3684,4597,8289,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-950.9125756492092,0,3,3,2019,11,0,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,6,1,0,355,-29902.78334068874,0,0,0,0 -3684,4598,8290,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,0,0,-975.8948592607566,0,3,3,2019,11,0,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,0,6,1,0,453,-114630.1111849655,0,0,0,-99.99069690816759 -3684,4599,8291,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.216186145448,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,7.203243308457037,39.92075045839738,65.99955709148118,0,1,1,0,0,0,51,47,-9,-9,7,2,3,0,0,0,6,1,0,792,-98476.25776086919,0,0,0,1047.421232431616 -3685,4600,8292,-9,8293,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.9605744168655,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,971,-30544.33969685578,23813.44945536467,0,0,2222.078741904166 -3685,4600,8293,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,8.264939441035674,8.175564122909519,0,0,0,-1104.313992495519,0,3,2,2019,18,7,50,30,1,7,0,7.648416800443328,7.648416800443328,0,0,0,0,0,1,1,0,0,0,19.6,61.19,-9,-9,6.666666666666667,1,1,0,0,7,10,3,0,971,-30544.33969685578,23813.44945536467,0,0,2222.078741904166 -3685,4600,8294,-9,8293,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.608590060313,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,3,0,971,-30544.33969685578,23813.44945536467,0,0,2222.078741904166 -3686,4601,8295,8296,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,7.939682331199567,7.970718863431038,0,1,0,77.88604559976693,-9,-9,-9,2019,10,0,40,0,1,1,0,7.878674232534173,7.878674232534173,0,0,0,0,0,1,1,0,.5747666125954128,0,50,58,46.69,58.35,7,1,1,0,0,1,2,4,0,1305.666666666667,177594.0752474472,56961.88410082252,177256.0815323132,98106.31704850942,2431.370944167749 -3686,4601,8296,8295,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.664844293613192,8.197421590360527,0,1,9,12.07664479920617,0,3,3,2019,12,0,31,35,1,0,0,12.33990075712501,12.33990075712501,0,0,0,0,2,1,1,0,0,0,46.69,58.35,50,58,5,1,1,0,0,10,2,4,0,1305.666666666667,177594.0752474472,56961.88410082252,177256.0815323132,98106.31704850942,2431.370944167749 -3686,4601,8297,-9,8296,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1042.605206171169,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,0,1305.666666666667,177594.0752474472,56961.88410082252,177256.0815323132,98106.31704850942,2431.370944167749 -3687,4602,8298,-9,8299,8302,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-969.680581951917,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3687,4602,8299,8302,-9,-9,1,0,36,1,4,0,1,1,-9,0,5,8.003369919337153,7.919672094612774,0,9,-1,-7.175548254590915,-9,2,2,2019,8,0,26,0,1,0,0,10.18140527304092,10.18140527304092,0,0,0,0,0,1,1,0,0,0,60.02,56.42,44.87,53.66,8.333333333333334,1,1,0,0,8,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3687,4602,8300,-9,8299,8302,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1091.175240881644,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3687,4602,8301,-9,8299,8302,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.5459921187114,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3687,4602,8302,8299,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.536756718057489,8.561652945225598,0,9,1,33.45799138090344,0,2,2,2019,8,0,42,48,1,0,0,13.39223217293744,13.39223217293744,0,0,0,0,0,1,1,0,8.429564998143732,0,44.87,53.66,60.02,56.42,8.333333333333334,1,1,0,0,8,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3687,4602,8303,-9,8299,8302,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.357451958317,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,418.3333333333333,344440.4791310313,101105.0341674514,320399.6227089553,96878.20477625076,5476.802490504073 -3688,4603,8304,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.300878864354857,8.123311678020288,0,0,0,-1087.925756520376,0,3,3,2019,19,7,44,45,1,7,0,8.018159557445072,8.018159557445072,0,0,0,0,0,0,0,0,0,0,41.3,45.67,-9,-9,1.666666666666667,1,1,0,0,8,12,4,0,436,1081.340672247209,0,0,0,1150.597328912151 -3688,4604,8305,-9,8304,-9,1,0,24,0,0,0,2,2,-9,0,3,7.916073051732443,7.945661391730017,0,0,0,-1016.738586794653,0,2,-9,2019,19,7,50,29,1,7,1,6.089385040590845,6.089385040590845,0,0,0,0,0,0,0,0,0,0,28.23,61.73,-9,-9,3.333333333333333,1,1,0,0,4,12,3,0,234,-37834.86764742396,0,0,0,815.0715785772843 -3689,4605,8306,-9,8309,8308,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.7079148600294,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,2012.75,808131.8478661114,329896.3430168655,507203.3072454773,167526.139633015,7202.702843329558 -3689,4605,8307,-9,8309,8308,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.392938261556,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,2012.75,808131.8478661114,329896.3430168655,507203.3072454773,167526.139633015,7202.702843329558 -3689,4605,8308,8309,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.232501459943917,9.091806338102126,0,19,0,18.54809513646998,0,2,2,2019,12,2,50,50,1,2,0,26.37659855889817,26.37659855889817,0,0,0,0,0,0,0,0,3.786894153860495,0,46.99,58.37,48.77,60.16,8.333333333333334,1,1,0,0,8,9,5,1,2012.75,808131.8478661114,329896.3430168655,507203.3072454773,167526.139633015,7202.702843329558 -3689,4605,8309,8308,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.461148018510499,9.181133682065878,0,19,0,32.53259281750029,0,2,1,2019,12,2,40,38,1,2,0,30.71571119360801,30.71571119360801,0,0,0,0,0,0,0,0,0,0,48.77,60.16,46.99,58.37,8.333333333333334,1,1,0,0,8,9,5,1,2012.75,808131.8478661114,329896.3430168655,507203.3072454773,167526.139633015,7202.702843329558 -3690,4606,8310,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1045.678453765749,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,952,60812.64922924178,0,0,0,2353.581278409968 -3691,4607,8311,8312,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.760439927998853,8.766208032506027,0,27,-1,-70.29943238599775,0,2,2,2019,8,0,37,41,1,0,0,19.73528829485553,19.73528829485553,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.19,46.16,8.333333333333334,1,1,0,0,9,9,5,1,330,3257770.966193904,1739617.820850942,1117335.386490132,78851.15485613752,5035.762451338989 -3691,4607,8312,8311,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.885612571937701,8.814225639784921,0,10,1,63.71949535311005,0,-9,-9,2019,6,0,40,40,1,0,0,17.14020307999615,17.14020307999615,0,0,0,0,0,0,0,0,0,0,56.19,46.16,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,330,3257770.966193904,1739617.820850942,1117335.386490132,78851.15485613752,5035.762451338989 -3692,4608,8313,8314,-9,-9,1,1,52,0,0,0,1,1,0,0,3,0,0,0,27,1,-89.56488698397457,-9,2,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49.52,56.95,49.12,51.75,3.333333333333333,1,1,0,0,2,6,5,1,1192.5,1574152.752551488,945760.8552454431,382260.051799984,0,7977.147258457512 -3692,4608,8314,8313,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.605737189667522,9.700668149700812,0,28,-1,40.52163612529058,0,2,2,2019,13,1,53,57,1,1,0,35.56807003112876,35.56807003112876,0,0,0,0,0,0,0,0,2.299268959775885,0,49.12,51.75,49.52,56.95,8.333333333333334,1,1,0,0,10,6,5,1,1192.5,1574152.752551488,945760.8552454431,382260.051799984,0,7977.147258457512 -3692,4609,8315,-9,8314,8313,1,1,18,0,0,1,2,0,0,0,4,0,4.369707869322511,4.465769569110769,0,0,-920.9110738198071,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.418663828849537,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,164,3568.712981595716,0,0,0,-100.8925262361148 -3693,4610,8316,8317,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.132826387075102,7.929648793505508,52,1,-46.09962682886358,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.844187240963532,8.088275593701821,43.43,54.3,46.96,48.63,8.333333333333334,1,1,0,0,0,5,3,1,194.5,1154981.7916555,557857.9940103983,223481.2587112485,0,2943.440854064665 -3693,4610,8317,8316,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,3.282789773336145,2.946480341725356,7,-1,-101.8567096549419,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.894947738289973,3.407346963121988,46.96,48.63,43.43,54.3,6.666666666666667,1,1,0,0,0,5,3,1,194.5,1154981.7916555,557857.9940103983,223481.2587112485,0,2943.440854064665 -3694,4611,8318,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-941.0456414652714,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,32.45,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,201,0,0,0,0,1132.689035018646 -3695,4612,8319,8320,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.990370129611995,7.32979910781242,7,-7,-32.45989651570977,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.164518464687128,6.863659678197684,60.69,29.25,55.47,52.91,10,1,1,0,0,0,2,3,1,2486,984827.1717705667,637152.7582989326,133652.245974262,0,2583.886224032632 -3695,4612,8320,8319,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.349399266979375,7.199664731167889,7,7,-84.48912614411057,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.16660218623422,55.47,52.91,60.69,29.25,10,1,1,0,0,0,2,3,1,2486,984827.1717705667,637152.7582989326,133652.245974262,0,2583.886224032632 -3696,4613,8321,8322,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.447133209402755,7.632595301361977,9,-4,-42.29069596610154,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.382507254041741,7.894672006783181,64.07000000000001,47.52,60.12,54.8,10,1,1,0,0,10,5,3,1,627,1205065.317767017,740913.5355922377,421904.5793601795,0,1451.6401235817 -3696,4613,8322,8321,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.157264787118546,7.361160659649498,0,9,4,-2.223004158000852,0,-9,-9,2019,5,0,25,16,1,0,0,6.666998199226849,6.666998199226849,0,0,0,0,0,0,0,0,0,0,60.12,54.8,64.07000000000001,47.52,10,1,1,0,0,10,5,3,1,627,1205065.317767017,740913.5355922377,421904.5793601795,0,1451.6401235817 -3697,4614,8323,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.171320695040299,7.976284093762056,0,0,0,-1095.670510207997,0,3,2,2019,12,1,40,50,1,1,0,9.864057932161021,9.864057932161021,0,0,0,0,0,0,0,0,0,0,48.06,46.77,-9,-9,6.666666666666667,1,1,0,1,10,10,4,0,1892,140812.0839257286,-109675.026618644,0,0,1145.563225429184 -3698,4615,8324,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-833.8244570541085,0,3,3,2019,22,8,0,20,3,8,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.46,21.88,-9,-9,0,1,1,0,1,2,11,1,0,4506,45979.31847663342,0,0,0,1031.813229280435 -3698,4616,8325,-9,8324,-9,1,0,26,0,0,0,3,3,-9,0,5,7.059494440933631,7.372845194745691,0,0,0,-1190.418031354216,0,3,-9,2019,6,0,20,20,1,0,1,9.281878526515447,9.281878526515447,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,11,3,0,1861,74668.01486849683,0,0,0,941.7079176179498 -3699,4617,8326,-9,8327,8328,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.628782791913,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,463.6666666666667,833254.674007663,741947.4795360778,0,0,4436.275917125423 -3699,4617,8327,8328,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.624586053570781,8.419836202305028,0,10,1,-23.9375909096896,0,-9,-9,2019,21,9,53,53,1,9,0,12.0718934393372,12.0718934393372,0,0,0,0,0,1,1,0,0,0,26.42,54.09,47.46,52.7,5,1,1,0,0,11,5,5,1,463.6666666666667,833254.674007663,741947.4795360778,0,0,4436.275917125423 -3699,4617,8328,8327,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.710064032154442,8.302862906289091,0,10,-1,-20.00721373204339,0,2,2,2019,13,2,45,43,1,2,0,13.62855370062818,13.62855370062818,0,0,0,0,0,1,1,0,0,0,47.46,52.7,26.42,54.09,6.666666666666667,1,1,0,0,11,5,5,1,463.6666666666667,833254.674007663,741947.4795360778,0,0,4436.275917125423 -3700,4618,8329,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-903.5343677070911,0,2,3,2019,5,0,0,0,4,0,0,0,0,1,4.155652421737547,25.0072853390884,0,0,1,1,0,0,0,56.24,19.06,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,879,37409.35928905742,0,0,0,1471.204183634948 -3701,4619,8330,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.897537829065,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,6.928899427814746,0,0,1,1,0,0,0,50.06,30.61,-9,-9,10,1,1,0,0,0,10,1,0,549,-126611.7995420579,0,0,0,1530.817659053961 -3702,4620,8331,8332,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.709891796528057,8.783113718914024,0,23,0,-149.343952809468,0,3,3,2019,19,7,60,60,1,7,0,12.88462252930853,12.88462252930853,0,0,0,0,0,0,0,0,0,0,44.11,50.11,48.06,45.53,5,1,1,0,0,11,13,5,1,594,1100643.221138837,976814.7651737283,230223.8290885971,87952.23403748932,3819.25404327921 -3702,4620,8332,8331,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.974346763252187,8.185658833669283,0,23,0,-10.8677770912511,0,2,2,2019,13,1,39,37,1,1,0,9.116528998080284,9.116528998080284,0,0,0,0,2,0,0,0,0,0,48.06,45.53,44.11,50.11,6.666666666666667,1,1,0,0,10,13,5,1,594,1100643.221138837,976814.7651737283,230223.8290885971,87952.23403748932,3819.25404327921 -3702,4621,8333,-9,8332,8331,1,1,19,0,0,0,2,2,-9,0,3,8.009833948775519,8.125333439477354,0,0,0,-929.5331224510164,0,2,2,2019,6,0,58,42,1,0,1,5.298968902891294,5.298968902891294,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,2836,270172.4564177482,-96149.83926362696,0,0,851.0195932968368 -3702,4622,8334,-9,8332,8331,1,1,19,0,0,0,2,2,-9,0,4,7.627062571810644,7.421737569609226,0,0,0,-1087.807975467613,0,2,2,2019,4,0,39,41,1,0,1,7.291980542914565,7.291980542914565,0,0,0,0,0,0,0,0,0,0,62.08,48.35,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,394,208871.9823492794,212132.1924054819,0,0,908.2369735473051 -3703,4623,8335,-9,-9,-9,1,0,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-914.506022221515,-9,-9,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.338792884615227,0,43.6,51.61,-9,-9,6.666666666666667,4,2,0,1,4,7,1,0,318,58932.43988289447,0,0,0,248.1836454917462 -3704,4624,8336,-9,8337,8338,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.6372942852486,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,967.3333333333334,112110.8759846726,0,338263.4037601294,109609.8858573366,1858.750112155512 -3704,4624,8337,8338,-9,-9,1,0,25,0,1,0,2,2,-9,0,1,5.292713790212466,5.175345523479344,0,8,-3,-122.93076419238,0,-9,-9,2019,21,8,8,20,1,8,0,3.848879025942352,3.848879025942352,0,0,0,0,0,1,1,0,1.315125752102018,0,20.49,34.18,46.92,60.71,0,1,1,0,0,2,10,3,1,967.3333333333334,112110.8759846726,0,338263.4037601294,109609.8858573366,1858.750112155512 -3704,4624,8338,8337,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.202139207662052,8.238594868559789,0,8,3,47.49150045396172,0,-9,-9,2019,16,5,40,40,1,5,0,11.88298407024014,11.88298407024014,0,0,0,0,0,1,1,0,1.37602735457302,0,46.92,60.71,20.49,34.18,5,1,1,0,0,11,10,3,1,967.3333333333334,112110.8759846726,0,338263.4037601294,109609.8858573366,1858.750112155512 -3705,4625,8339,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.126414592293143,7.928079673593663,0,0,0,-935.0786085775795,0,3,2,2019,9,0,37,37,1,0,0,11.8044046605266,11.8044046605266,0,0,0,0,0,0,0,0,4.707637216260356,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,8151,700700.9051499553,116144.5761684913,460151.5890856254,0,1603.199899511853 -3706,4626,8340,8341,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.076378462831428,7.993764164426779,0,4,-2,-134.415329545664,0,-9,-9,2019,15,5,30,36,1,5,0,14.55632044045216,14.55632044045216,0,0,0,0,7,0,0,0,2.335308650722379,0,28.33,53.48,51.83,57.2,8.333333333333334,1,1,0,0,3,8,5,1,415.5,4270631.348864591,3074079.573738191,597086.6554431834,0,5507.235686326424 -3706,4626,8341,8340,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.550790288903757,9.690239182303829,0,4,2,-22.3484041005971,0,3,2,2019,9,0,40,42,1,0,0,40.8817753905607,40.8817753905607,0,0,0,0,2,0,0,0,2.719795181491432,0,51.83,57.2,28.33,53.48,8.333333333333334,1,1,0,0,10,8,5,1,415.5,4270631.348864591,3074079.573738191,597086.6554431834,0,5507.235686326424 -3707,4627,8342,8344,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.44573292939287,7.450030723590682,0,4,8,-64.24661531909362,0,-9,-9,2019,8,0,21,18,1,0,0,10.11012810262896,10.11012810262896,0,0,0,0,0,1,1,0,.3641799632289389,0,48.87,58.55,54.2,57.49,10,1,1,0,0,7,7,4,1,535,92619.5640345617,39617.58946420961,126107.4960038433,113017.7970227057,2944.001357062216 -3707,4627,8343,-9,8342,8344,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.82977542447,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,535,92619.5640345617,39617.58946420961,126107.4960038433,113017.7970227057,2944.001357062216 -3707,4627,8344,8342,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.917098268055152,8.587919354143326,0,4,-8,24.39065389156969,0,1,1,2019,9,1,41,42,1,1,0,16.32277609729037,16.32277609729037,0,0,0,0,0,1,1,0,1.820217270763693,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,7,4,1,535,92619.5640345617,39617.58946420961,126107.4960038433,113017.7970227057,2944.001357062216 -3708,4628,8345,-9,8346,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-948.3356573250942,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,9,1,0,594.5,-38517.92792743324,43098.73028544735,107778.0396760636,54627.83564534182,1640.182956463592 -3708,4628,8346,-9,-9,-9,1,0,49,0,1,0,3,3,-9,1,1,0,0,0,0,0,-961.6449580966841,0,3,-9,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,21.36,34,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,594.5,-38517.92792743324,43098.73028544735,107778.0396760636,54627.83564534182,1640.182956463592 -3709,4629,8347,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.798492556211752,7.574966724133511,0,0,0,-1060.55855900421,-9,3,3,2019,12,1,43,0,1,1,0,7.74616023434254,7.74616023434254,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,1,2,13,3,0,275,206295.6295468736,156415.0846057497,0,0,1134.427870912199 -3709,4630,8348,-9,8347,-9,1,0,23,0,0,0,2,2,-9,0,4,7.887881572700502,7.882165291085008,0,0,0,-973.2622861523248,-9,3,3,2019,8,0,40,0,1,0,1,5.97648962695636,5.97648962695636,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,692,-16161.49041434322,53760.06153295413,0,0,526.0922672290736 -3710,4631,8349,-9,8351,8350,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.6920519988209,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1103.25,2646607.923682934,1578229.842097437,501180.2266323367,125574.2704273771,8047.707342661163 -3710,4631,8350,8351,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,8.939705851405437,9.349227355588598,0,30,5,-1.348404913119531,0,2,2,2019,10,0,40,39,1,0,0,20.81451307860434,20.81451307860434,0,0,0,0,0,0,0,0,6.501193037854591,0,59.88,48.2,33.63,64.61,8.333333333333334,1,1,0,0,11,10,5,1,1103.25,2646607.923682934,1578229.842097437,501180.2266323367,125574.2704273771,8047.707342661163 -3710,4631,8351,8350,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,9.694648573359839,9.223156268382661,4.405780036456526,30,-5,78.97945850959164,0,2,2,2019,11,0,53,46,1,0,0,41.24268548297567,41.24268548297567,0,0,0,0,0,0,0,0,6.61173042207248,0,33.63,64.61,59.88,48.2,8.333333333333334,1,1,0,0,9,10,5,1,1103.25,2646607.923682934,1578229.842097437,501180.2266323367,125574.2704273771,8047.707342661163 -3710,4631,8352,-9,8351,8350,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.840478367792,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1103.25,2646607.923682934,1578229.842097437,501180.2266323367,125574.2704273771,8047.707342661163 -3711,4632,8353,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.965534703575412,6.908626029638274,0,0,-1076.480511805156,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,1.914585660604128,20.95832021729952,24.36519235598312,0,1,1,0,0,6.981713653775445,45.18,52.07,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,282,69036.66836575473,109316.2268906038,0,0,746.817737397137 -3712,4633,8354,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,8.597602039785537,8.713116050522121,0,0,0,-999.388625400616,0,2,1,2019,5,0,38,38,1,0,0,17.4551785794121,17.4551785794121,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,5,5,0,565,179135.2439262317,1350.097280228478,72653.43661600484,17065.59723224573,3106.774862782495 -3713,4634,8355,8356,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,7.86056202124006,8.093263482817378,0,4,2,139.0504684416705,0,3,3,2019,6,0,37,41,1,0,0,9.514324471979,9.514324471979,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,452.3333333333333,203592.8897418277,42442.33234213407,0,0,2022.096778710646 -3713,4634,8356,8355,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.690846582141787,6.639123700124212,0,4,-2,.7745280014733407,0,3,3,2019,11,0,84,84,1,0,0,1.262597537669874,1.262597537669874,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,11,3,1,452.3333333333333,203592.8897418277,42442.33234213407,0,0,2022.096778710646 -3713,4634,8357,-9,8356,8355,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.756106338756,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,452.3333333333333,203592.8897418277,42442.33234213407,0,0,2022.096778710646 -3713,4635,8358,-9,8356,8355,1,1,20,0,1,0,2,2,-9,0,4,6.776870485636508,6.822687399483585,0,0,0,-1012.896466395026,-9,2,2,2019,10,0,37,0,1,1,1,2.38064689491299,2.38064689491299,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,824,-90900.49982940179,-50940.79470521666,0,0,191.7830456476867 -3713,4636,8359,-9,8356,8355,1,0,18,0,1,0,2,2,1,0,4,6.858335795143867,7.137338752720509,0,0,0,-843.6085692333045,-9,2,2,2019,6,0,35,0,1,0,1,3.402878781369457,3.402878781369457,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,1309,-33791.49602021316,0,0,0,869.9413098230467 -3714,4637,8360,-9,8361,8364,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1062.699248392888,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3714,4637,8361,8364,-9,-9,1,0,45,0,4,0,1,1,-9,0,5,8.830122864566441,8.956248966800304,0,8,0,56.908242661873,0,2,3,2019,13,4,37,47,1,4,0,14.73462286680098,14.73462286680098,0,0,0,0,0,1,1,0,4.427023968727527,0,51.67,60.18,48.62,49.45,6.666666666666667,1,1,0,0,8,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3714,4637,8362,-9,8361,8364,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-896.2603653622406,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3714,4637,8363,-9,8361,8364,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.511693558445,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3714,4637,8364,8361,-9,-9,1,1,45,0,4,0,2,2,-9,0,3,8.469623040706418,8.381309164353041,0,8,0,-30.46795627417715,0,2,3,2019,17,5,45,46,1,5,0,13.78609925346804,13.78609925346804,0,0,0,0,0,1,1,0,1.879777436449912,0,48.62,49.45,51.67,60.18,8.333333333333334,1,1,0,0,8,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3714,4637,8365,-9,8361,8364,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-988.9537590590224,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,439.6666666666667,4521210.23306217,1031294.399562271,930940.6239375157,59133.58544680944,4194.084337938944 -3715,4638,8366,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.514486822258201,6.685930829902804,0,0,-1021.097576096905,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.425884261083875,57.85,28.69,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,456,897671.3865985402,89129.86392067131,399941.535909201,0,1331.093597372034 -3716,4639,8367,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1016.671222772289,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,7,1,1,526,123951.7542185966,0,0,0,1102.640106877731 -3717,4640,8368,8370,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,6.714080109332038,7.052108236782825,0,7,9,-90.86403816967751,0,3,3,2019,7,0,12,12,1,0,0,9.02261665546003,9.02261665546003,0,0,0,0,0,1,1,0,3.381546294226316,0,53.97,40,62.49,55.09,8.333333333333334,1,1,0,0,8,7,3,1,397.75,490164.5233688132,331806.639051337,350385.1494695141,183821.6755234427,2377.165272078829 -3717,4640,8369,-9,8368,8370,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-893.0959800802955,-9,2,3,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,25.26,58.67,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,397.75,490164.5233688132,331806.639051337,350385.1494695141,183821.6755234427,2377.165272078829 -3717,4640,8370,8368,-9,-9,1,1,44,0,2,0,3,3,-9,0,4,8.388042609385998,8.284215608483969,0,7,0,23.17277341103655,0,3,3,2019,6,0,50,35,1,0,0,9.693389835508086,9.693389835508086,0,0,0,0,0,1,1,0,0,0,62.49,55.09,53.97,40,10,1,1,0,0,8,7,3,1,397.75,490164.5233688132,331806.639051337,350385.1494695141,183821.6755234427,2377.165272078829 -3717,4640,8371,-9,8368,8370,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.446232815449,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,397.75,490164.5233688132,331806.639051337,350385.1494695141,183821.6755234427,2377.165272078829 -3718,4641,8372,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.999320912111807,8.645035728770855,0,0,0,-1132.875124069315,0,3,3,2019,12,2,40,40,1,2,0,19.4389151247098,19.4389151247098,0,0,0,0,7,0,0,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,6,13,5,1,702,307618.1328881154,113350.6316254482,0,0,2472.966209670941 -3718,4642,8373,-9,8372,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-981.9240282306608,-9,1,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.9268978919911711,0,62.41,39.97,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,283,0,0,0,0,131.3351914642003 -3719,4643,8374,8376,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.360064188026747,8.233866566108095,0,26,1,.6496316141286596,0,1,1,2019,9,0,40,42,1,0,0,10.10266687903953,10.10266687903953,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.48,60.05,6.666666666666667,1,1,0,0,9,5,3,1,600.25,75661.04576594925,-13265.67886275062,163571.4999442951,80547.59426607299,2978.252709635963 -3719,4643,8375,-9,8376,8374,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.014225820325,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,600.25,75661.04576594925,-13265.67886275062,163571.4999442951,80547.59426607299,2978.252709635963 -3719,4643,8376,8374,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.885668616468312,7.799667217652192,0,26,-1,42.89342646203733,0,2,1,2019,12,0,35,35,1,0,0,8.351648480382202,8.351648480382202,0,0,0,0,0,1,1,0,0,0,40.48,60.05,54.2,57.49,3.333333333333333,1,1,0,0,8,5,3,1,600.25,75661.04576594925,-13265.67886275062,163571.4999442951,80547.59426607299,2978.252709635963 -3719,4643,8377,-9,8376,8374,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.236204367313,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,600.25,75661.04576594925,-13265.67886275062,163571.4999442951,80547.59426607299,2978.252709635963 -3720,4644,8378,8379,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.300862008741689,9.655362258123747,0,3,1,32.41241732284529,-9,2,1,2019,10,0,40,0,1,1,0,41.54017277266651,41.54017277266651,0,0,0,0,0,0,0,0,0,0,51,57,48.99,54.36,7,3,4,0,0,1,8,5,0,381,356839.9088561356,95097.49392028338,566970.5484476619,380336.7149689602,6332.670886547871 -3720,4644,8379,8378,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.750150352357579,8.463319260550621,0,3,-1,-46.95890209703948,0,-9,-9,2019,9,1,46,47,1,1,0,13.09333534385473,13.09333534385473,0,0,0,0,2,0,0,0,3.964520713953845,0,48.99,54.36,51,57,6.666666666666667,3,4,0,0,5,8,5,0,381,356839.9088561356,95097.49392028338,566970.5484476619,380336.7149689602,6332.670886547871 -3721,4645,8380,8382,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.688068810958299,8.520235638848941,0,20,1,-73.51095864758608,0,2,2,2019,13,1,42,42,1,1,0,16.09698792643122,16.09698792643122,0,0,0,0,0,1,1,0,3.147813465244627,0,38.57,58.06,38.57,58.06,3.333333333333333,1,1,0,0,10,5,4,1,1081.25,44619.05876163672,-22857.07562419507,141382.9810173345,82481.25014111365,2807.360917862416 -3721,4645,8381,-9,8382,8380,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1073.762950470851,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,4,1,1081.25,44619.05876163672,-22857.07562419507,141382.9810173345,82481.25014111365,2807.360917862416 -3721,4645,8382,8380,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.57437367797712,7.536310532177207,0,20,-1,7.824932209564817,0,2,3,2019,13,1,24,25,1,1,0,8.171888143076401,8.171888143076401,0,0,0,0,0,1,1,0,0,0,38.57,58.06,38.57,58.06,8.333333333333334,1,1,0,0,11,5,4,1,1081.25,44619.05876163672,-22857.07562419507,141382.9810173345,82481.25014111365,2807.360917862416 -3721,4645,8383,-9,8382,8380,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.262747795684,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1081.25,44619.05876163672,-22857.07562419507,141382.9810173345,82481.25014111365,2807.360917862416 -3722,4646,8384,8385,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.986494999994301,6.530565428777967,6,2,14.42306901646673,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.066021385018901,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,3,12,2,0,335,402316.9026984871,153983.3216930742,115262.7514771725,0,2459.130402296356 -3722,4646,8385,8384,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-2,-89.5544242548475,0,3,2,2019,6,0,0,75,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,12,2,0,335,402316.9026984871,153983.3216930742,115262.7514771725,0,2459.130402296356 -3723,4647,8386,8387,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.494253478619452,8.2128670391863,33,-3,77.86722043323603,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.274190638645576,7.878139165150296,57.16,56.15,43.21,47.68,8.333333333333334,1,1,0,0,6,5,4,1,963,1768304.342751399,1389873.682340047,232091.3975909132,0,5814.186412306527 -3723,4647,8387,8386,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.325620904633974,7.709985651620747,33,3,27.39263956311837,0,3,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,7.627994797896476,43.21,47.68,57.16,56.15,6.666666666666667,1,1,0,0,8,5,4,1,963,1768304.342751399,1389873.682340047,232091.3975909132,0,5814.186412306527 -3724,4648,8388,8389,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.793333422324709,9.115678012244254,0,35,3,49.42498072199096,0,-9,-9,2019,10,0,56,40,1,0,0,13.90553432637661,13.90553432637661,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,3,4,0,0,10,6,5,1,481,576031.9527093524,142746.4479053773,345608.4802181575,0,3827.106400895688 -3724,4648,8389,8388,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.111599911886501,8.340683403143379,0,34,-3,93.33989693739424,0,-9,-9,2019,9,0,38,42,1,0,0,8.575337961232588,8.575337961232588,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,481,576031.9527093524,142746.4479053773,345608.4802181575,0,3827.106400895688 -3725,4649,8390,8391,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.582559331176089,7.855911805245792,0,3,-2,90.34364943328238,0,-9,-9,2019,11,2,30,37,1,2,0,8.016220064433677,8.016220064433677,0,0,0,0,0,1,1,0,1.118741068998655,0,48.77,60.16,41.53,42.96,8.333333333333334,1,1,0,0,9,6,4,0,448,-12409.00374903403,106022.9300120655,209255.3204658331,172103.8558250451,2547.39431600231 -3725,4649,8391,8390,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.080449092810872,8.076216965126157,0,3,2,-64.01630546879845,0,2,3,2019,12,1,50,50,1,1,0,10.46689969047564,10.46689969047564,0,0,0,0,0,1,1,0,2.298540805439215,0,41.53,42.96,48.77,60.16,6.666666666666667,1,1,0,0,11,6,4,0,448,-12409.00374903403,106022.9300120655,209255.3204658331,172103.8558250451,2547.39431600231 -3726,4650,8392,8394,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,0,0,0,7,7,0,0,2,2,2019,9,3,0,38,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,32.67,51.83,57.2,5,1,1,1,1,8,11,1,1,713.6666666666666,233996.5589131688,19020.32059347658,244.5677841211339,14173.25285744355,678.5080647768522 -3726,4650,8393,-9,8394,8392,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.149126845019,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,1,713.6666666666666,233996.5589131688,19020.32059347658,244.5677841211339,14173.25285744355,678.5080647768522 -3726,4650,8394,8392,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,0,0,0,7,-7,0,0,2,2,2019,9,0,0,26,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.59,32.67,6.666666666666667,1,1,1,0,8,11,1,1,713.6666666666666,233996.5589131688,19020.32059347658,244.5677841211339,14173.25285744355,678.5080647768522 -3727,4651,8395,8396,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.234060110537922,7.810865769582723,18,2,53.08655503387098,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.505824132201893,7.646311884269698,50.01,48.55,54.2,57.49,8.333333333333334,1,1,0,0,9,1,5,1,509,-65219.85524224523,41064.17776666486,0,0,3465.817535852641 -3727,4651,8396,8395,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.721486359661993,8.575696338399231,0,17,-2,-57.7548778586086,0,1,2,2019,7,0,39,37,1,0,0,17.39832518619128,17.39832518619128,0,0,0,0,0,0,0,0,1.993050172411915,0,54.2,57.49,50.01,48.55,8.333333333333334,1,1,0,0,11,1,5,1,509,-65219.85524224523,41064.17776666486,0,0,3465.817535852641 -3728,4652,8397,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.476495915598021,6.701817685296892,0,0,-1005.701996705617,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,4.225852218726804,0,1,1,0,0,6.337954592588796,45.81,44.2,-9,-9,1.666666666666667,1,1,0,0,3,11,2,1,209,335591.955818979,61021.83166775052,137481.0618213536,0,1335.894634248737 -3729,4653,8398,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.802858960516573,8.097213166464392,0,0,-890.3514300098925,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.466194753580332,7.807177683776747,55.96,49.93,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,1728,1013709.369518804,452069.3325430508,455048.7187837512,0,1752.928394386678 -3730,4654,8399,8400,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.038312932588348,6.673057731719712,50,1,11.29194773800723,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.27136071201745,6.834884730116297,47.79,53.79,51.47,53.17,8.333333333333334,1,1,0,0,0,12,2,1,364,1905953.294290568,206678.9399485106,358888.6273742084,0,1792.24550593804 -3730,4654,8400,8399,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.583174979045602,6.779383825748869,11,-1,-73.97165858234233,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.601467454362404,6.920129197343747,51.47,53.17,47.79,53.79,8.333333333333334,1,1,0,0,6,12,2,1,364,1905953.294290568,206678.9399485106,358888.6273742084,0,1792.24550593804 -3731,4655,8401,8402,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,9.126226658820235,9.886676407985332,7.881163664349204,14,1,3.248620786499754,0,2,2,2019,5,0,42,43,1,0,0,25.73699857209572,25.73699857209572,0,0,0,0,0,1,1,0,0,8.096496610624248,60.02,56.42,56.33,51.02,10,1,1,0,0,8,7,5,0,1918,2626818.296884981,942639.5519108388,1399258.98867672,20680.67304556751,6134.032799111998 -3731,4655,8402,8401,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.168905586447762,8.110712732986466,14,-1,36.65526866665977,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7114694757238172,8.188497293801831,56.33,51.02,60.02,56.42,8.333333333333334,1,1,0,0,8,7,5,0,1918,2626818.296884981,942639.5519108388,1399258.98867672,20680.67304556751,6134.032799111998 -3732,4656,8403,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,5,0,7.113677142568978,7.616748339780576,0,0,-954.1778940197107,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.377907185480987,7.391917643405614,36.81,68.27,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,320,311673.1487060256,55973.12718249874,192699.4011967878,0,1805.216342591768 -3733,4657,8404,8405,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.366498823714273,7.522921710861191,44,0,177.1375349164014,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,1.260979413036049,7.524799577604884,64.53,36.33,59.71,50.89,8.333333333333334,1,1,0,0,4,9,4,1,779,1715185.963750992,1144698.362208124,580611.3450739647,18404.33067574792,2716.947320556095 -3733,4657,8405,8404,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.184050709808817,8.281684385834714,6.502417341910968,44,0,18.22697641572518,0,3,3,2019,6,0,40,40,1,0,0,9.950838035856567,9.950838035856567,0,0,0,0,0,0,0,0,3.706848461847017,6.948070815914217,59.71,50.89,64.53,36.33,8.333333333333334,1,1,0,0,7,9,4,1,779,1715185.963750992,1144698.362208124,580611.3450739647,18404.33067574792,2716.947320556095 -3734,4658,8406,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.245256724434189,8.07815318857223,0,0,0,-1093.760234307774,0,3,3,2019,10,0,39,39,1,0,0,12.25943156806825,12.25943156806825,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,5,1,1,0,0,12,13,4,0,186,383469.3522895325,242153.4110971802,0,0,2247.50696147077 -3735,4659,8407,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.338695526513463,8.065749352710609,0,0,0,-1038.779582016271,0,1,3,2019,11,1,50,60,1,1,0,7.528621038735676,7.528621038735676,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,582,141726.3078107363,-89317.82994365206,0,0,1756.790999960904 -3736,4660,8408,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.329330180652204,7.24309332067928,0,0,-1143.431623692676,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.180391898301983,7.336399239319936,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1775,561851.9521552471,192841.7882836244,229420.0168820315,0,1562.24542898042 -3736,4661,8409,-9,-9,8408,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1099.005717248546,0,-9,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,12,1,1,977,28213.22260759021,23614.81684458901,0,0,405.324047726346 -3737,4662,8410,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.258778924575465,9.220360182634012,0,0,0,-1025.927616205792,0,2,2,2019,5,0,55,45,1,0,0,29.43653899223138,29.43653899223138,0,0,0,0,0,1,1,0,6.958903241515022,0,54.98,55.95,-9,-9,10,1,1,0,0,8,12,5,1,346,140058.5741212223,112713.7720487797,391545.3318696229,261198.3669870982,5096.922444349942 -3738,4663,8411,8412,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,5.895288876157263,7.249787492776115,6.983646028777144,7,3,51.40850636184244,0,3,2,2019,6,0,16,40,1,0,0,2.963856363337995,2.963856363337995,0,0,0,0,0,1,1,0,8.067841558079479,6.813165614842159,54.2,57.49,40.46,33.04,6.666666666666667,1,1,0,0,8,2,4,1,775,702338.240293478,480391.3181581233,215885.7730340645,0,5310.990470693187 -3738,4663,8412,8411,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.608659693679181,8.564300383591677,7.046595909807418,7,-3,-96.95022651005846,0,2,2,2019,10,2,41,51,1,2,0,11.55243630122991,11.55243630122991,0,0,0,0,0,1,1,0,5.13897473488416,7.300399118991104,40.46,33.04,54.2,57.49,8.333333333333334,1,1,0,0,7,2,4,1,775,702338.240293478,480391.3181581233,215885.7730340645,0,5310.990470693187 -3739,4664,8413,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,6.946158485452695,7.036058382967866,0,0,0,-1069.575513564201,0,3,2,2019,11,0,16,16,1,0,0,6.786283151704335,6.786283151704335,0,0,0,0,0,1,1,0,0,0,40.25,54.22,-9,-9,5,1,1,0,0,3,10,2,1,353.3333333333333,111312.4988206486,-47783.49068983811,0,0,1210.864719131832 -3739,4664,8414,-9,8413,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.883258082205,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,353.3333333333333,111312.4988206486,-47783.49068983811,0,0,1210.864719131832 -3739,4664,8415,-9,8413,-9,1,1,16,0,2,1,2,0,-9,0,5,0,3.851499052996309,3.716587685445888,0,0,-1125.645323792713,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.208909427253583,0,40.99,58.35,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,353.3333333333333,111312.4988206486,-47783.49068983811,0,0,1210.864719131832 -3740,4665,8416,8417,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,0,0,0,1,3,0,0,2,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,51.83,57.2,5,1,1,1,0,0,2,1,0,4224.5,55790.84333844193,0,0,0,449.1405587616758 -3740,4665,8417,8416,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,1,-3,0,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.39,37.66,3.333333333333333,1,1,1,0,0,2,1,0,4224.5,55790.84333844193,0,0,0,449.1405587616758 -3741,4666,8418,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,5.492764859275128,5.319865468270524,0,0,-934.1984948998527,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.839947166679393,5.406508486422015,49.72,32.19,-9,-9,5,1,1,0,0,0,8,2,0,1430,575261.2020692702,188653.8270382392,299358.7338578285,0,917.0501653675534 -3742,4667,8419,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.397034632788488,9.427140951424191,0,0,0,-1080.41401322348,0,-9,-9,2019,9,0,65,50,1,0,0,20.52636705087022,20.52636705087022,0,0,0,0,0,0,0,0,3.652297407837444,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,251,496375.5115277418,391402.3713119306,0,0,4397.119466027915 -3742,4668,8420,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,6.870803839621982,7.035864488364075,0,0,0,-987.1382685877347,0,1,1,2019,7,0,70,65,1,0,0,2.301867047974245,2.301867047974245,0,0,0,0,0,0,0,0,.9444807063323537,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,7,8,2,0,785,156545.0927830333,73112.98326670115,0,0,311.2971157583874 -3743,4669,8421,8423,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.166180633672846,7.952665213300786,0,10,-2,-50.55891959663162,0,2,1,2019,14,2,38,12,1,2,0,8.048493584231311,8.048493584231311,0,0,0,0,0,0,0,0,0,0,38.97,59.14,54.2,57.49,8.333333333333334,1,1,0,0,10,7,5,1,652.5,2090551.551769343,658032.1382094048,745264.7478124053,0,5850.449274118864 -3743,4669,8422,-9,8421,8423,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-850.513506507159,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,652.5,2090551.551769343,658032.1382094048,745264.7478124053,0,5850.449274118864 -3743,4669,8423,8421,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.638713560669572,9.772437397609375,0,10,2,-49.95673334011835,0,2,2,2019,7,0,60,60,1,0,0,34.41974879646483,34.41974879646483,0,0,0,0,0,0,0,0,3.317333053089751,0,54.2,57.49,38.97,59.14,8.333333333333334,1,1,0,0,11,7,5,1,652.5,2090551.551769343,658032.1382094048,745264.7478124053,0,5850.449274118864 -3743,4669,8424,-9,8421,8423,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.16153209941,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,652.5,2090551.551769343,658032.1382094048,745264.7478124053,0,5850.449274118864 -3744,4670,8425,8426,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.347060182983496,9.030230858031738,0,5,1,-36.18513679094811,0,2,2,2019,6,0,46,43,1,0,0,21.59644422796945,21.59644422796945,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.62,54.7,10,1,1,0,0,9,10,5,1,509.5,1707716.048824956,1236852.777781557,463760.3973282531,0,4604.988905122273 -3744,4670,8426,8425,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.563271690435662,7.679103600800642,0,5,-1,-22.40665764126518,0,-9,-9,2019,19,7,28,28,1,7,0,7.277437398350723,7.277437398350723,0,0,0,0,0,0,0,0,0,0,36.62,54.7,57.16,56.15,6.666666666666667,1,1,0,0,6,10,5,1,509.5,1707716.048824956,1236852.777781557,463760.3973282531,0,4604.988905122273 -3745,4671,8427,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.210656061153194,7.283629032495462,0,0,-1017.457201417432,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.028121070617268,7.10843799471807,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,425,272596.5903978512,37381.70857691575,150912.7767055538,0,1475.829225353811 -3746,4672,8428,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.686992015740855,7.79257142661544,0,0,-828.3950843909854,0,3,3,2019,12,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.556353648775028,57.64,39.56,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,174,830114.9200715021,482780.1968505427,332578.4656292722,0,1823.14795810797 -3747,4673,8429,8430,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,65,2,59.05248026493177,0,3,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,71.5,1,1,0,0,0,58.08,30.23,55.78,25.98,8.333333333333334,1,1,0,0,0,9,2,1,603,32038.39595586746,0,0,0,1366.631243604191 -3747,4673,8430,8429,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.831084389470416,4.545419180524663,65,-2,73.59689413601623,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,4.653622630329167,55.78,25.98,58.08,30.23,10,1,1,0,0,0,9,2,1,603,32038.39595586746,0,0,0,1366.631243604191 -3748,4674,8431,-9,8432,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.374792107728,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,1433,-60646.33003407771,0,0,0,1668.758586297813 -3748,4674,8432,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.769857274492638,6.793684036806649,0,0,0,-1053.984839304229,0,3,3,2019,10,0,16,0,1,0,0,5.597476790962846,5.597476790962846,0,0,0,0,0,1,1,0,0,0,35.05,59.41,-9,-9,6.666666666666667,2,3,0,0,5,2,2,0,1433,-60646.33003407771,0,0,0,1668.758586297813 -3748,4674,8433,-9,8432,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.209976106678,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,0,1433,-60646.33003407771,0,0,0,1668.758586297813 -3749,4675,8434,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.864692684003618,7.887810608116314,0,0,0,-1142.874779965956,0,3,2,2019,6,0,21,0,1,0,0,15.46060933729123,15.46060933729123,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,3,4,0,0,10,8,4,1,235,187014.7827859864,7675.993860049083,158389.536053574,28715.60224862667,460.7431479466095 -3749,4676,8435,-9,8434,-9,1,0,20,0,0,0,2,2,-9,0,4,7.117779138457363,7.376327762157124,0,0,0,-1064.858850012584,0,2,-9,2019,12,0,37,25,1,2,1,3.354903255674814,3.354903255674814,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,2,8,3,1,1230,0,0,0,0,1094.537045558615 -3750,4677,8436,-9,8437,8438,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.597529801843,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,-9,-9,10,1,1,0,0,0,9,4,1,220.3333333333333,433262.1988407268,366707.0767795361,154882.9062549564,67360.36760725114,3233.090676197143 -3750,4677,8437,8438,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.194124671444287,8.708028470716796,6.04127430670083,7,-10,-47.93733253138848,0,2,2,2019,9,0,46,40,1,0,0,9.829679496180372,9.829679496180372,0,0,0,0,0,1,1,0,6.522210441351587,0,52.6,52.88,52,54.51,10,1,1,0,0,11,9,4,1,220.3333333333333,433262.1988407268,366707.0767795361,154882.9062549564,67360.36760725114,3233.090676197143 -3750,4677,8438,8437,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.333541297144262,8.456739434736377,0,7,10,55.82672632937599,0,-9,-9,2019,7,0,40,40,1,0,0,13.58542594531114,13.58542594531114,0,0,0,0,0,1,1,0,0,0,52,54.51,52.6,52.88,8.333333333333334,1,1,0,0,11,9,4,1,220.3333333333333,433262.1988407268,366707.0767795361,154882.9062549564,67360.36760725114,3233.090676197143 -3751,4678,8439,8440,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.782500289760223,7.861315328197582,0,16,7,58.69880762080223,0,3,2,2019,11,0,40,40,1,0,0,5.688302506652582,5.688302506652582,0,0,0,0,0,0,0,0,0,0,51.25,46.55,53.23,42.9,8.333333333333334,1,1,0,0,12,4,4,0,527.5,106249.4785719304,0,0,0,2205.901051064359 -3751,4678,8440,8439,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.023082928068888,7.901736939583833,0,17,-7,59.68947500440274,0,2,2,2019,9,0,42,40,1,0,0,7.32402506915144,7.32402506915144,0,0,0,0,7,0,0,0,0,0,53.23,42.9,51.25,46.55,3.333333333333333,1,1,0,0,10,4,4,0,527.5,106249.4785719304,0,0,0,2205.901051064359 -3752,4679,8441,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.396396551026056,7.321426862910297,0,0,-913.2426143808278,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,9.394973629573817,4.421571663200161,83.89878415797938,0,1,1,0,7.215078839157007,7.115048950264805,70.32000000000001,20.54,-9,-9,10,1,1,0,0,0,7,3,1,1552,136169.5292283918,146942.1402054932,0,0,745.2670844374056 -3753,4680,8442,8444,-9,-9,1,0,43,0,5,0,2,2,-9,0,4,0,0,0,20,-5,-81.01115608388368,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,50,55,52,55,8,2,3,0,1,0,8,2,1,584,-163704.4248235602,0,0,0,439.355283184067 -3753,4680,8443,-9,8442,8444,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1095.127107156487,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,584,-163704.4248235602,0,0,0,439.355283184067 -3753,4680,8444,8442,-9,-9,1,1,48,0,5,0,2,2,-9,0,4,5.725360077383591,5.794771579883682,0,7,5,8.36098244965161,0,-9,-9,2019,9,0,38,0,1,1,0,1.005693823011991,1.005693823011991,0,0,0,0,0,1,1,0,0,0,52,55,50,55,8,2,3,0,0,1,8,2,1,584,-163704.4248235602,0,0,0,439.355283184067 -3753,4681,8445,-9,8448,8447,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1141.582217242539,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,641,225853.6569240455,291449.3803266696,0,0,2967.313735272058 -3753,4681,8446,-9,8448,8447,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-905.504503252117,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,641,225853.6569240455,291449.3803266696,0,0,2967.313735272058 -3753,4681,8447,8448,-9,-9,1,1,40,0,5,0,1,1,-9,0,4,8.787907104432671,9.024772686146751,0,7,5,27.57401800181399,0,-9,-9,2019,9,0,40,40,1,1,0,18.5517402977966,18.5517402977966,0,0,0,0,0,1,1,0,0,0,51,56,48,56,8,2,3,0,0,1,8,3,1,641,225853.6569240455,291449.3803266696,0,0,2967.313735272058 -3753,4681,8448,8447,-9,-9,1,0,35,0,5,0,2,2,-9,0,4,0,0,0,10,-5,86.24164958112172,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,2,3,0,1,0,8,3,1,641,225853.6569240455,291449.3803266696,0,0,2967.313735272058 -3754,4682,8449,-9,-9,8450,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-903.7788396003511,-9,-9,1,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,33.89,62.54,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,233.6666666666667,855489.629079603,251446.9899824903,455024.9849022906,0,5281.28996502939 -3754,4682,8450,-9,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.739599689697851,9.760806633183458,0,0,0,-970.0696077986993,0,3,2,2019,21,9,45,38,1,9,0,33.88653644960349,33.88653644960349,0,0,0,0,0,0,0,0,3.588895592802958,0,45.26,54.86,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,233.6666666666667,855489.629079603,251446.9899824903,455024.9849022906,0,5281.28996502939 -3754,4682,8451,-9,-9,8450,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.275420762809,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,233.6666666666667,855489.629079603,251446.9899824903,455024.9849022906,0,5281.28996502939 -3755,4683,8452,8456,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,11,0,65.05919243779275,0,3,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,31.13,62.65,30.25,56.52,6.666666666666667,1,1,0,0,7,1,4,0,690.2,184754.7897152455,127175.3228236478,469204.7212926857,352820.4536536976,5097.954424887947 -3755,4683,8453,-9,8452,8456,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.4235573796628,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,0,690.2,184754.7897152455,127175.3228236478,469204.7212926857,352820.4536536976,5097.954424887947 -3755,4683,8454,-9,8452,8456,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1051.965069372757,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,0,690.2,184754.7897152455,127175.3228236478,469204.7212926857,352820.4536536976,5097.954424887947 -3755,4683,8455,-9,8452,8456,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.3586049539695,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,690.2,184754.7897152455,127175.3228236478,469204.7212926857,352820.4536536976,5097.954424887947 -3755,4683,8456,8452,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,9.212745396949094,9.2742312144645,0,11,0,.6456710856570549,0,-9,-9,2019,18,6,38,42,1,6,0,31.43156160282911,31.43156160282911,0,0,0,0,42,1,1,0,0,0,30.25,56.52,31.13,62.65,5,1,1,0,0,10,1,4,0,690.2,184754.7897152455,127175.3228236478,469204.7212926857,352820.4536536976,5097.954424887947 -3756,4684,8457,-9,8458,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.947740431617,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,0,687,-7154.091626680318,0,0,0,2157.757291614073 -3756,4684,8458,-9,-9,-9,1,0,33,0,1,0,3,3,-9,1,2,0,5.993390505750241,6.108072764446445,0,0,-1011.300530395629,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,5.586716495083905,0,38.63,35.22,-9,-9,5,1,1,0,0,2,4,2,0,687,-7154.091626680318,0,0,0,2157.757291614073 -3757,4685,8459,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.901087488776749,5.973509555626092,0,0,-854.3139147302113,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.592812423583083,57.76,54.51,-9,-9,10,1,1,0,0,7,9,2,0,1286,412421.6606484407,52758.05579980726,331924.9302292689,0,998.7009321628871 -3758,4686,8460,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,1,0,7.183162676037765,7.259242534320399,0,0,-1041.100285143541,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,1.134929855007444,132.0761571975987,19.6634455222293,0,1,1,0,0,7.135715836293014,52.24,10.56,-9,-9,6.666666666666667,1,1,0,0,0,4,3,0,1054,20180.22145466624,106168.9105701351,0,0,1611.560582086496 -3759,4687,8461,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1018.896849022592,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,-9,-9,0,1,1,0,1,0,13,1,0,8579,55392.6203027349,143878.2711099059,0,0,735.358501362243 -3759,4688,8462,-9,-9,8461,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1094.489634650068,-9,-9,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,1,1,4,13,1,0,338,-171483.9597973479,0,0,0,172.3685633465695 -3760,4689,8463,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1050.511350202715,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.83,19.91,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,218,-41157.88507819754,0,0,0,1750.157273776923 -3761,4690,8464,8465,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,3.059253039265007,2.804443196942447,4,4,50.35187541938194,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,2.892307551714895,57.59,25.39,58.92,43.05,8.333333333333334,1,1,0,0,0,6,2,0,1819,173043.4806262044,51775.48650120705,115183.9594715552,0,2676.871758113024 -3761,4690,8465,8464,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,6.674235710914481,6.516382833195276,4,-4,85.34436701878781,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,7.19216291270498,58.92,43.05,57.59,25.39,8.333333333333334,1,1,0,0,0,6,2,0,1819,173043.4806262044,51775.48650120705,115183.9594715552,0,2676.871758113024 -3762,4691,8466,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.044239951207167,8.011220635098985,0,0,0,-790.5599792371775,0,-9,-9,2019,9,1,38,37,1,1,0,9.164882256074545,9.164882256074545,0,0,0,0,0,0,0,0,0,0,55.28,51.42,-9,-9,10,1,1,0,0,11,2,4,1,379,341057.9517223387,85517.79113406844,206013.9303175718,29605.41849230486,1036.971785748371 -3762,4692,8467,-9,8466,-9,1,0,28,0,0,0,1,1,-9,0,4,8.28374718049427,8.295254348463963,0,0,0,-1179.037678017544,0,2,-9,2019,13,1,38,44,1,1,1,12.16630846937677,12.16630846937677,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,3,4,0,0,5,2,4,1,509,27295.73530848382,0,0,0,1716.657100703118 -3763,4693,8468,-9,8471,8469,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.5716077286799,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,0,560.5,868677.98342565,661890.8806505118,379170.6215707965,147848.0303773052,3011.314910979298 -3763,4693,8469,8471,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.121437755733547,8.231576744124329,0,7,15,-83.50870185686921,0,3,2,2019,7,0,37,45,1,0,0,11.51615928051133,11.51615928051133,0,0,0,0,0,1,1,0,0,0,57.73,54.53,32.81,63.88,8.333333333333334,1,1,0,0,8,7,4,0,560.5,868677.98342565,661890.8806505118,379170.6215707965,147848.0303773052,3011.314910979298 -3763,4693,8470,-9,8471,8469,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.4323421976117,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,560.5,868677.98342565,661890.8806505118,379170.6215707965,147848.0303773052,3011.314910979298 -3763,4693,8471,8469,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,8.061176341379744,8.188139111465425,0,7,-15,-28.36952797759984,0,-9,-9,2019,24,11,50,40,1,11,0,9.455470037511342,9.455470037511342,0,0,0,0,0,1,1,0,0,0,32.81,63.88,57.73,54.53,8.333333333333334,1,1,0,0,5,7,4,0,560.5,868677.98342565,661890.8806505118,379170.6215707965,147848.0303773052,3011.314910979298 -3764,4694,8472,8473,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-4.023876148802098,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.5,56.19,58.09,32.73,5,4,2,1,1,10,9,5,0,486,913572.8722311163,341400.4938088635,348882.9449120043,18384.98369261633,3194.294130042723 -3764,4694,8473,8472,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.196715475867572,9.158136854745498,0,18,3,-55.31866244280123,0,1,1,2019,6,0,48,50,1,0,0,24.52170578234287,24.52170578234287,0,0,0,0,0,0,0,0,0,0,58.09,32.73,39.5,56.19,5,4,2,0,0,10,9,5,0,486,913572.8722311163,341400.4938088635,348882.9449120043,18384.98369261633,3194.294130042723 -3765,4695,8474,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.443116050591282,9.508884209093235,0,0,0,-1001.604266827725,0,2,2,2019,7,0,42,42,1,0,0,41.40864335610632,41.40864335610632,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,151,224897.6365003221,81966.02020903856,141654.516982054,97803.61782413619,4482.123269131874 -3766,4696,8475,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.540011390190019,6.567855398471283,0,0,-928.261544787085,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,0,11.40899611947146,0,0,1,1,0,4.493106463016938,6.401314145404536,33.61,28.11,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1752,207314.9966446182,67428.72442451882,141373.0164729579,0,883.1136195201866 -3767,4697,8476,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,7.57880374325142,7.979209716906851,0,0,0,-934.9479004274111,0,1,2,2019,5,0,40,30,1,0,0,7.320848093286707,7.320848093286707,0,0,0,0,0,1,1,0,0,0,46.53,61.33,-9,-9,8.333333333333334,4,2,0,0,9,6,3,0,368,159666.1354787706,78060.50299487024,0,0,614.2236709137069 -3768,4698,8477,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,1,0,3.893509309385989,4.344571349379881,0,0,-984.3159422257247,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,4.297327169057168,36.15,25.71,-9,-9,5,3,4,0,0,0,6,2,0,1522,84959.83199402102,-28954.27711705079,87622.53164405283,0,1131.776675676404 -3769,4699,8478,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.835039179868971,9.126922181235368,0,0,0,-1034.305459647722,0,2,2,2019,11,0,44,44,1,0,0,16.58382903990414,16.58382903990414,0,0,0,0,0,1,1,0,6.059164881013395,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,265,868326.8349811407,89009.90099212156,319532.6458362746,0,2599.871300388867 -3770,4700,8479,8480,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,8.143794529951274,7.850301119368239,49,-4,141.295485096259,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.404659455546072,7.50934803769503,61.01,53.18,59.29,49.68,10,1,1,0,0,2,9,4,1,1590.5,596446.6615357152,388985.8581357792,224284.6491911055,0,3750.994929261781 -3770,4700,8480,8479,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.125190186542287,8.207335164838277,49,4,-46.21622561502646,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7975368077625977,8.277615849792683,59.29,49.68,61.01,53.18,10,1,1,0,0,5,9,4,1,1590.5,596446.6615357152,388985.8581357792,224284.6491911055,0,3750.994929261781 -3771,4701,8481,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.356139453969694,7.988357738784341,6.799149742147699,0,0,-994.0267269898511,0,3,3,2019,10,1,24,24,1,1,0,9.180555392144909,9.180555392144909,0,0,0,0,0,1,1,0,0,6.791654669877025,51,52.08,-9,-9,6.666666666666667,1,1,0,0,11,12,3,1,320,25923.60021599668,0,0,0,1241.759341655848 -3772,4702,8482,8483,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.116685916883674,7.232897156264023,47,0,60.16550184606259,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.611860890173674,6.972465719148435,56.18,51.02,55.76,52.64,8.333333333333334,1,1,0,0,3,9,2,1,713,511846.8329552582,0,421233.3448995677,0,1849.207607905039 -3772,4702,8483,8482,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.275376828087227,6.285009606871787,47,0,-120.5086857599247,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.626990761201728,6.155786608945775,55.76,52.64,56.18,51.02,8.333333333333334,1,1,0,0,4,9,2,1,713,511846.8329552582,0,421233.3448995677,0,1849.207607905039 -3773,4703,8484,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,4.832857909744908,4.764244128818624,0,0,-1035.445696884407,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,4.546454996934671,40.36,20.9,-9,-9,5,1,1,0,0,0,6,2,1,1128,131460.954384609,0,0,0,1211.829893508972 -3773,4704,8485,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1086.924600760162,-9,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,21.15,24.19,-9,-9,0,1,1,0,1,0,6,1,1,434,0,0,0,0,787.7682495435978 -3774,4705,8486,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,9.019619775808305,8.949343031883149,0,0,0,-1013.09650068122,0,2,1,2019,7,0,35,35,1,0,0,24.43479961535267,24.43479961535267,0,0,0,0,0,1,1,0,0,0,58.73,16.63,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,229,270078.8963479748,38547.28273451755,514816.6740778502,161447.505761421,2939.43171848645 -3775,4706,8487,8489,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.720873175191812,9.143603373482165,7.858494315918922,3,5,170.1486984142769,0,3,2,2019,10,0,42,39,1,0,0,16.40826394098734,16.40826394098734,0,0,0,0,0,1,1,0,7.534311153298628,0,57.16,56.15,48.87,58.55,10,1,1,0,0,12,9,5,0,656.25,4632079.137139793,49638.80133254461,1886839.340153963,472952.5085721174,4353.302501507234 -3775,4706,8488,-9,8489,8487,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-858.5787721516941,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,0,656.25,4632079.137139793,49638.80133254461,1886839.340153963,472952.5085721174,4353.302501507234 -3775,4706,8489,8487,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.315679981527173,7.182283731877776,0,3,-5,26.71844507640571,0,2,2,2019,12,0,20,20,1,0,0,8.637831969419887,8.637831969419887,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,10,1,1,0,0,8,9,5,0,656.25,4632079.137139793,49638.80133254461,1886839.340153963,472952.5085721174,4353.302501507234 -3775,4706,8490,-9,8489,8487,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.825829338318,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,656.25,4632079.137139793,49638.80133254461,1886839.340153963,472952.5085721174,4353.302501507234 -3775,4707,8491,-9,8489,8487,1,0,19,0,2,0,2,2,-9,0,3,8.273920788303284,8.085128608991505,0,0,0,-1064.653883897186,0,2,2,2019,17,4,65,-9,1,4,1,5.226677145812682,5.226677145812682,0,0,0,0,0,1,1,0,0,0,47.04,33.93,-9,-9,5,1,1,0,0,2,9,4,0,85,134077.9319540883,26968.20139078424,0,0,1524.94986200403 -3776,4708,8492,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.592126299389731,8.257912091128194,0,0,0,-941.3151152595758,0,2,2,2019,3,1,36,36,1,1,0,16.99736966877754,16.99736966877754,0,0,0,0,0,1,1,0,1.090821386555261,0,59.43,49.68,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,366,596056.3835676385,409708.5960595566,59314.34039982338,66886.43976407028,2154.274472317155 -3777,4709,8493,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.614956980920859,6.284203949074252,0,0,-1109.758710695383,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.424855588053164,53,45,-9,-9,8,1,1,0,0,0,11,2,1,332,216977.5845091917,-33807.64119770475,121628.3582527368,0,1138.019751304942 -3778,4710,8494,-9,8496,8495,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.580740799972,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,232,132653.6345419909,-87042.51413475681,189704.3963292238,0,2179.869999937047 -3778,4710,8495,8496,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.930690207691902,7.415418502305852,0,2,2,-194.3200337850485,0,2,2,2019,14,3,84,42,1,3,0,3.500792014619992,3.500792014619992,0,0,0,0,7,1,1,0,0,0,35.79,48.98,30.29,53.99,5,1,1,0,0,10,11,3,0,232,132653.6345419909,-87042.51413475681,189704.3963292238,0,2179.869999937047 -3778,4710,8496,8495,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.7711998310138,7.673576589852089,0,2,-2,-65.37429889451056,0,3,3,2019,12,1,37,36,1,1,0,7.49644905090716,7.49644905090716,0,0,0,0,2,1,1,0,0,0,30.29,53.99,35.79,48.98,5,1,1,0,0,9,11,3,0,232,132653.6345419909,-87042.51413475681,189704.3963292238,0,2179.869999937047 -3779,4711,8497,8498,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.042297672272002,5.739709099823549,19,1,-40.68988143122202,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.951485645516181,46.3,29.03,55.76,44.76,5,1,1,0,0,7,9,2,1,571,115039.0213451884,170367.6539456617,0,0,1475.838261208943 -3779,4711,8498,8497,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.116213968504798,5.996378112308975,19,-1,-8.324921549909547,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.762322821491809,55.76,44.76,46.3,29.03,8.333333333333334,1,1,0,0,5,9,2,1,571,115039.0213451884,170367.6539456617,0,0,1475.838261208943 -3780,4712,8499,-9,8500,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.1792476738876,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,286.5,14535.17619497436,935.1986669801991,101160.0132589539,85667.53077417728,2022.007795871503 -3780,4712,8500,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,8.848801866837869,8.793784856031543,0,0,0,-1030.202388852692,0,2,2,2019,9,0,55,55,1,0,0,12.76194903548622,12.76194903548622,0,0,0,0,14.5,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,286.5,14535.17619497436,935.1986669801991,101160.0132589539,85667.53077417728,2022.007795871503 -3781,4713,8501,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.438902601500001,8.1414070526925,0,0,0,-880.384727710294,-9,2,2,2019,10,0,41,0,1,0,0,12.45549822051066,12.45549822051066,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,910,-45310.78934687038,121721.6379119278,129426.6991121552,114783.4844449185,2429.693797758467 -3782,4714,8502,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.164460917519754,7.981576330336015,0,0,0,-1012.012575324264,0,2,2,2019,8,0,48,48,1,0,0,7.462378533342721,7.462378533342721,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,326,105564.1608748206,91252.56053171447,0,0,1757.550729105858 -3783,4715,8503,8504,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.831585217447879,8.782361940971596,6.865688446871459,7,1,84.01245041829868,0,-9,-9,2019,10,0,40,40,1,1,0,14.83394685670071,14.83394685670071,0,0,0,1.355260632738156,0,0,0,0,0,7.128220201319071,50,49,54.69,57.47,7,1,1,0,0,1,11,5,1,459.5,92815.02655018846,122359.1372172072,0,0,4512.071050969852 -3783,4715,8504,8503,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.303563910234866,8.513065960650575,0,7,-1,-20.83758306157471,0,3,-9,2019,6,0,30,30,1,0,0,13.65569406022824,13.65569406022824,0,0,0,0,0,0,0,0,1.936564524980452,0,54.69,57.47,50,49,10,1,1,0,0,8,11,5,1,459.5,92815.02655018846,122359.1372172072,0,0,4512.071050969852 -3783,4716,8505,-9,8504,8503,1,1,23,0,0,0,1,1,-9,0,3,7.993652680598452,8.168937746550947,0,0,0,-1019.583796885039,-9,2,2,2019,8,2,38,0,1,2,1,10.07232291138961,10.07232291138961,0,0,0,0,0,0,0,0,0,0,47.18,55.31,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,302,-55388.00454235772,134252.614164252,113785.1096007442,97236.70117975814,1085.453586629155 -3784,4717,8506,8507,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.139754330152584,9.353196630742326,0,9,2,-13.38799217547015,0,-9,-9,2019,10,0,44,44,1,0,0,32.57126654461994,32.57126654461994,0,0,0,0,0,1,1,0,0,0,58.07,46.29,57.16,56.15,8.333333333333334,1,1,0,0,9,1,5,1,899,1615433.214603785,1117486.296040683,411958.5508182782,0,5562.551516476265 -3784,4717,8507,8506,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.998858512328141,8.682220216948911,0,27,-2,171.3988154280569,0,2,3,2019,6,0,29,33,1,0,0,25.59731979153062,25.59731979153062,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.07,46.29,6.666666666666667,1,1,0,1,9,1,5,1,899,1615433.214603785,1117486.296040683,411958.5508182782,0,5562.551516476265 -3784,4717,8508,-9,8507,8506,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-899.1558614699478,-9,1,1,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.0505935205819497,0,13.19,67.08,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,899,1615433.214603785,1117486.296040683,411958.5508182782,0,5562.551516476265 -3785,4718,8509,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.181065797761088,8.058328688020131,0,0,0,-1141.502114058709,0,2,-9,2019,16,4,37,45,1,4,0,10.79381297539344,10.79381297539344,0,0,0,0,0,0,0,0,1.227070528608455,0,28.9,59.74,-9,-9,6.666666666666667,1,1,0,0,12,5,4,1,135,4386.681705717753,-91901.45519039434,0,0,865.8801312720459 -3786,4719,8510,8511,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.874696749283046,8.638624111594689,0,2,-1,-18.35323808980819,0,2,2,2019,12,0,43,41,1,0,0,18.58104888062264,18.58104888062264,0,0,0,0,0,0,0,0,3.075704373669347,0,41.93,55.12,57.06,57.76,5,1,1,0,0,7,11,5,1,948,250723.6971387592,118711.483503778,71357.32334630549,91712.71882436995,4792.157429386319 -3786,4719,8511,8510,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.94292799776858,8.56345562681296,0,2,1,-27.81439284365973,0,-9,-9,2019,8,0,44,48,1,0,0,15.00307770719868,15.00307770719868,0,0,0,0,0,0,0,0,6.795160321212064,0,57.06,57.76,41.93,55.12,8.333333333333334,1,1,0,0,4,11,5,1,948,250723.6971387592,118711.483503778,71357.32334630549,91712.71882436995,4792.157429386319 -3787,4720,8512,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.36961689368753,8.731531478984486,0,0,-1045.110860940921,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.769137188080667,8.580108437313106,52.48,52.75,-9,-9,10,1,1,0,0,0,11,5,1,1174,1143925.792491804,833738.7468733158,200711.1278194033,0,3693.704209924733 -3788,4721,8513,8514,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.809701423513831,5.862976441269547,10,1,1.623335130726542,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,1.592108841102538,49.54453228061634,29.85535055637438,0,1,1,0,0,5.946526308331784,31.59,26,44.33,35.37,3.333333333333333,1,1,0,0,0,12,2,1,250.5,133873.8794487055,4246.17525973583,0,0,2414.307345053536 -3788,4721,8514,8513,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,10,-1,-34.99910823026632,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,120,1,1,0,0,0,44.33,35.37,31.59,26,5,1,1,0,0,0,12,2,1,250.5,133873.8794487055,4246.17525973583,0,0,2414.307345053536 -3789,4722,8515,-9,8516,8517,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.4456834516585,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,1001.75,1174754.027043242,919964.8982096934,259486.7664431637,55759.97593709748,3067.666040423493 -3789,4722,8516,8517,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.094324533703579,7.245957146234341,0,10,0,-84.34171618425057,0,2,2,2019,7,1,2,12,1,1,0,77.17650369244419,77.17650369244419,0,0,0,0,0,1,1,0,0,0,52.4,55.58,51.83,57.2,8.333333333333334,1,1,0,0,10,10,5,1,1001.75,1174754.027043242,919964.8982096934,259486.7664431637,55759.97593709748,3067.666040423493 -3789,4722,8517,8516,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.102317486195826,8.938321690501102,0,10,0,-25.61891317035439,0,1,1,2019,8,0,42,50,1,0,0,21.66935219784741,21.66935219784741,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.4,55.58,8.333333333333334,1,1,0,0,10,10,5,1,1001.75,1174754.027043242,919964.8982096934,259486.7664431637,55759.97593709748,3067.666040423493 -3789,4722,8518,-9,8516,8517,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-809.0666644266797,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.1650301862778107,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,1001.75,1174754.027043242,919964.8982096934,259486.7664431637,55759.97593709748,3067.666040423493 -3790,4723,8519,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.989036704862517,7.058156711509942,0,0,0,-931.2369136503252,0,3,-9,2019,9,0,40,50,1,0,0,2.665041587130982,2.665041587130982,0,0,0,0,0,1,1,0,0,0,44.13,59.37,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,2873,-35864.60078628195,-88710.23162223252,0,0,545.4209870539871 -3791,4724,8520,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,3,0,0,0,0,0,-875.2902842379114,0,2,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,33.57,43.75,-9,-9,5,1,1,0,1,0,11,1,0,1008,0,0,0,0,880.0706705987271 -3791,4725,8521,-9,8520,-9,1,0,27,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.4188647304964,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.32,20.16,-9,-9,5,1,1,0,0,0,11,1,0,1266,159079.5732213557,0,0,0,1446.781507437312 -3791,4726,8522,-9,8520,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-884.2773223998898,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,19.97,40.86,-9,-9,5,1,1,0,1,0,11,1,0,2603,158997.5564921395,0,0,0,0 -3792,4727,8523,8524,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.24827793776318,7.390022552195313,0,44,-4,38.14677270414124,-9,3,3,2019,6,0,24,0,1,0,0,5.331382355472925,5.331382355472925,0,0,0,0,0,1,1,0,0,0,60.3,46.58,42.88,39.09,5,1,1,0,0,8,12,2,0,654,325229.764744458,196635.5101686292,93225.39399881067,0,1472.857008586411 -3792,4727,8524,8523,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,0,0,44,4,-41.50930909496277,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,39.09,60.3,46.58,6.666666666666667,1,1,0,0,0,12,2,0,654,325229.764744458,196635.5101686292,93225.39399881067,0,1472.857008586411 -3793,4728,8525,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-888.7353809662504,0,3,3,2019,13,0,0,40,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,45.07,-9,-9,3.333333333333333,2,3,1,0,4,9,1,1,264,-6932.468679146332,0,0,0,1223.383431863151 -3793,4729,8526,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.145007507963919,7.846644620675252,0,0,0,-1063.716999360726,0,-9,-9,2019,25,11,36,46,1,11,0,8.950384503542338,8.950384503542338,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,1.666666666666667,2,3,0,0,2,9,4,1,411,-260692.1390580814,-22819.99293174253,0,0,1091.041675272218 -3794,4730,8527,-9,8530,8529,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.511801813759,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,262.5,-3363.364850718893,0,0,0,1747.536593071649 -3794,4730,8528,-9,8530,8529,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.0387815635341,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,262.5,-3363.364850718893,0,0,0,1747.536593071649 -3794,4730,8529,8530,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,7.733431171300891,7.719410808697569,0,4,1,-31.37624794612091,0,2,2,2019,10,0,56,55,1,0,0,5.019415502020424,5.019415502020424,0,0,0,0,0,1,1,0,0,0,45.91,59.89,42.39,52.15,6.666666666666667,1,1,0,0,8,12,2,0,262.5,-3363.364850718893,0,0,0,1747.536593071649 -3794,4730,8530,8529,-9,-9,1,0,27,1,2,0,3,3,-9,0,3,0,0,0,4,-1,-17.67473911353112,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.39,52.15,45.91,59.89,5,1,1,1,1,0,12,2,0,262.5,-3363.364850718893,0,0,0,1747.536593071649 -3795,4731,8531,8532,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.113522635254737,7.272159120631758,50,1,238.0324317680374,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.595277863021255,7.150801104517964,56.52,48.31,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,453.5,555519.5143733036,128058.0327730345,328355.7258274576,0,2340.530973177244 -3795,4731,8532,8531,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.657272337426092,5.776156172274324,50,-1,-91.26194200031451,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.085410309529776,5.308266798790759,57.33,53.46,56.52,48.31,10,1,1,0,0,3,1,2,1,453.5,555519.5143733036,128058.0327730345,328355.7258274576,0,2340.530973177244 -3796,4732,8533,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.569243592766,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,14.90941849746183,27.12757068746544,132.460595018694,0,1,1,0,0,0,30.85,17.26,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,714,122280.6418064488,0,0,0,1466.300903915482 -3797,4733,8534,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,5.602535609127543,5.232188339343105,0,0,-907.0290232467955,0,-9,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,5.034919909307871,35.83,39.41,-9,-9,1.666666666666667,3,4,0,0,5,6,2,1,1816,0,0,0,0,459.2270227928855 -3798,4734,8535,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.848800100603896,9.121093797233943,0,0,0,-1017.168756297803,0,2,3,2019,12,0,45,48,1,0,0,17.188972556965,17.188972556965,0,0,0,0,2,0,0,0,2.738577514299434,0,49.52,55.68,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,138,595632.8901543375,121514.5613437818,429778.1975930182,0,2554.720856409282 -3799,4735,8536,-9,8537,8538,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.0533153168302,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,972.8,13150.79334920893,0,0,0,1886.118674120912 -3799,4735,8537,8538,-9,-9,1,0,39,0,3,0,3,3,-9,0,3,0,0,0,2,2,-20.51623737513348,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.68,50.36,51,57,5,2,3,0,0,10,6,2,1,972.8,13150.79334920893,0,0,0,1886.118674120912 -3799,4735,8538,8537,8541,-9,1,1,37,0,3,0,2,2,-9,0,4,7.443372020397391,7.49764384914877,0,2,-2,-107.9034665062436,0,3,-9,2019,10,0,25,40,1,1,0,9.263284312243535,9.263284312243535,0,0,0,0,0,1,1,0,0,0,51,57,43.68,50.36,7,2,3,0,0,1,6,2,1,972.8,13150.79334920893,0,0,0,1886.118674120912 -3799,4735,8539,-9,8537,8538,1,1,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-997.1464411162549,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,6,2,1,972.8,13150.79334920893,0,0,0,1886.118674120912 -3799,4735,8540,-9,8537,8538,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.884488626668,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,972.8,13150.79334920893,0,0,0,1886.118674120912 -3799,4736,8541,-9,-9,-9,1,0,79,0,3,0,3,3,-9,0,2,0,0,0,0,0,-1042.594914350182,-9,-9,-9,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.478820741657333,0,39.62,29.29,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,98,-19564.45452602722,0,0,0,1435.890013930588 -3800,4737,8542,8544,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.321450356162533,10.1901096365544,0,25,1,-19.99394675020051,-9,2,2,2019,12,2,62,0,1,2,0,28.18600913347167,28.18600913347167,0,0,0,0,0,0,0,0,8.213888192146083,0,48.28,60.18,57.16,56.15,8.333333333333334,1,1,0,0,12,8,5,1,418.3333333333333,5166042.439964489,2083988.736603846,1291765.215743368,423408.1860628877,9772.483200310131 -3800,4737,8543,-9,8544,8542,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.9538768869552,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,418.3333333333333,5166042.439964489,2083988.736603846,1291765.215743368,423408.1860628877,9772.483200310131 -3800,4737,8544,8542,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,0,0,25,-1,38.67942551059264,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.397935752391605,0,57.16,56.15,48.28,60.18,8.333333333333334,1,1,0,0,0,8,5,1,418.3333333333333,5166042.439964489,2083988.736603846,1291765.215743368,423408.1860628877,9772.483200310131 -3801,4738,8545,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.697584311095,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.447916499618334,0,68.5,31.88,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,173,181901.9467675318,0,0,0,276.7154020561272 -3802,4739,8546,8548,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,7.63433780612201,7.506700497869795,0,7,-1,-17.68358621045423,0,-9,-9,2019,9,0,9,16,1,1,0,24.84260394178197,24.84260394178197,0,0,0,0,0,1,1,0,0,0,51,56,19.83,32.62,8,2,3,0,0,1,4,2,0,1001.8,31534.23897802357,31348.10036182947,0,0,2546.183365408706 -3802,4739,8547,-9,8548,8546,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.483801949173,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,0,1001.8,31534.23897802357,31348.10036182947,0,0,2546.183365408706 -3802,4739,8548,8546,-9,-9,1,0,40,0,3,0,2,2,-9,1,3,0,0,0,22,1,-21.79289861774939,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,6.097394714672747,0,19.83,32.62,51,56,1.666666666666667,2,3,0,1,0,4,2,0,1001.8,31534.23897802357,31348.10036182947,0,0,2546.183365408706 -3802,4739,8549,-9,8548,8546,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.860857968681,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1001.8,31534.23897802357,31348.10036182947,0,0,2546.183365408706 -3802,4739,8550,-9,8548,8546,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.183306460112,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,0,1001.8,31534.23897802357,31348.10036182947,0,0,2546.183365408706 -3803,4740,8551,8552,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.30110438739592,7.798952500420946,50,1,-39.86159309012776,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.881557780875061,7.967159708684851,59.46,36.25,49.35,59.64,8.333333333333334,1,1,0,0,0,9,3,1,1334.5,675605.7602361364,369563.4547675851,395817.8779283616,0,3189.297465031911 -3803,4740,8552,8551,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.345947924522489,7.278127101105309,50,-1,-74.19133907703245,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.296072663808837,7.453002557542409,49.35,59.64,59.46,36.25,10,1,1,0,0,0,9,3,1,1334.5,675605.7602361364,369563.4547675851,395817.8779283616,0,3189.297465031911 -3804,4741,8553,8554,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.060442598077735,7.832809300124082,0,12,6,47.06133890142535,0,3,3,2019,11,1,38,37,1,1,0,7.705886055863821,7.705886055863821,0,0,0,0,0,1,1,0,0,0,53.98,45.34,49.42,57.29,8.333333333333334,3,4,0,0,10,7,4,1,865.6666666666666,58543.73989715619,98638.19791301848,0,0,3254.151931215846 -3804,4741,8554,8553,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,8.411196931154338,8.138770217409157,0,12,-6,-32.82533868682688,0,2,2,2019,8,0,40,45,1,0,0,14.84843218517969,14.84843218517969,0,0,0,0,0,1,1,0,0,0,49.42,57.29,53.98,45.34,6.666666666666667,1,1,0,0,8,7,4,1,865.6666666666666,58543.73989715619,98638.19791301848,0,0,3254.151931215846 -3804,4741,8555,-9,8553,8554,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.079971431221,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,865.6666666666666,58543.73989715619,98638.19791301848,0,0,3254.151931215846 -3805,4742,8556,-9,8558,8559,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.810380451205,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,1,748.25,87969.78410652498,0,174548.1628549573,39007.07566256446,2061.859762309993 -3805,4742,8557,-9,8558,8559,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.322617681874,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,3,1,748.25,87969.78410652498,0,174548.1628549573,39007.07566256446,2061.859762309993 -3805,4742,8558,8559,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.794476135322286,7.813361885062696,0,17,0,24.55189758838302,0,2,2,2019,10,0,40,0,1,0,0,7.594759131838391,7.594759131838391,0,0,0,0,0,1,1,0,0,0,53.13,49.87,55.27,56.95,8.333333333333334,2,3,0,0,1,8,3,1,748.25,87969.78410652498,0,174548.1628549573,39007.07566256446,2061.859762309993 -3805,4742,8559,8558,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,7.050405701217594,7.116312676589958,0,8,0,-85.60373635658057,0,-9,-9,2019,6,0,16,40,1,0,0,8.370493592491188,8.370493592491188,0,0,0,0,0,1,1,0,0,0,55.27,56.95,53.13,49.87,10,2,3,0,0,4,8,3,1,748.25,87969.78410652498,0,174548.1628549573,39007.07566256446,2061.859762309993 -3806,4743,8560,8561,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.679546539129423,7.872243492581068,0,37,-2,-46.28835096977699,0,3,2,2019,15,4,27,27,1,4,0,8.846410262016482,8.846410262016482,0,0,0,0,0,0,0,0,5.02776173790089,0,55.93,49.95,52.4,52.91,8.333333333333334,1,1,0,0,11,7,4,1,643.5,554323.3835869876,36665.94771528078,273653.8631833944,0,1661.807894560895 -3806,4743,8561,8560,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.148549511198857,8.00889279087011,0,8,2,-39.14485442988955,0,-9,-9,2019,11,0,38,38,1,0,0,12.75272853932712,12.75272853932712,0,0,0,0,0,0,0,0,0,0,52.4,52.91,55.93,49.95,6.666666666666667,1,1,0,0,11,7,4,1,643.5,554323.3835869876,36665.94771528078,273653.8631833944,0,1661.807894560895 -3807,4744,8562,8563,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.937559312497418,8.651131159032236,0,9,-1,114.1158134263603,0,3,3,2019,10,0,65,55,1,0,0,12.45849734719005,12.45849734719005,0,0,0,0,14.5,1,1,0,0,0,45.04,52.16,29.15,38.15,6.666666666666667,1,1,0,0,9,5,4,0,2193.5,2462137.541566371,1155591.202273708,150775.5441522849,0,2459.747059050906 -3807,4744,8563,8562,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,9,1,70.45892636459399,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,29.15,38.15,45.04,52.16,3.333333333333333,1,1,1,0,2,5,4,0,2193.5,2462137.541566371,1155591.202273708,150775.5441522849,0,2459.747059050906 -3807,4745,8564,-9,8563,8562,1,1,36,0,0,0,2,2,-9,0,2,8.259419781467937,7.948385514299396,0,0,0,-1133.256395091581,0,3,3,2019,10,0,40,45,1,0,1,9.120064985524891,9.120064985524891,0,0,0,0,5.48,1,1,0,0,0,46.75,31.6,-9,-9,3.333333333333333,1,1,0,1,8,5,4,0,716,89719.52103213509,-29341.98632063358,0,0,1197.785041390592 -3807,4746,8565,-9,8563,8562,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,0,0,-940.6987712882374,0,3,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,42.35,36.31,-9,-9,3.333333333333333,1,1,1,1,1,5,1,0,516,-19177.92800906536,0,0,0,906.4425146255364 -3807,4747,8566,-9,8563,8562,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.106040001387,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,41.46,53.68,-9,-9,3.333333333333333,1,1,1,1,0,5,1,0,285,0,0,0,0,-114.4636674353378 -3808,4748,8567,8568,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,64.23999999999999,44.83,37.25,29,8.333333333333334,1,1,0,0,0,13,2,0,559.5,332413.5839623666,0,288176.1017657527,0,2365.502116453799 -3808,4748,8568,8567,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,7,-3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.25,29,64.23999999999999,44.83,8.333333333333334,1,1,0,0,0,13,2,0,559.5,332413.5839623666,0,288176.1017657527,0,2365.502116453799 -3809,4749,8569,8570,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.281825545174664,8.511429572087762,0,26,-6,178.1234914513452,-9,2,2,2019,10,0,32,0,1,1,0,16.88483512162546,16.88483512162546,0,0,0,0,0,0,0,0,0,0,51,54,54,53,8,1,1,0,0,9,9,5,1,182.5,1591211.773612484,1244787.537873568,497017.7362111319,141031.4098133507,7109.929925260905 -3809,4749,8570,8569,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.68020956106394,9.625330891922417,0,26,6,-26.05068460054939,0,2,1,2019,8,0,55,50,1,0,0,36.8232235913612,36.8232235913612,0,0,0,0,0,0,0,0,5.801383602899928,0,54,53,51,54,8,1,1,0,0,9,9,5,1,182.5,1591211.773612484,1244787.537873568,497017.7362111319,141031.4098133507,7109.929925260905 -3809,4750,8571,-9,8569,8570,1,1,19,0,0,0,2,2,1,0,4,6.549595290351903,6.591071098690851,0,0,0,-1002.849545391475,-9,1,1,2019,10,0,14,0,1,2,1,4.312031857416781,4.312031857416781,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,2,1,527,45728.66562200541,0,0,0,156.5517813041919 -3810,4751,8572,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,3.12817896715396,3.240999817168603,0,0,-1033.456303619355,0,3,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,6.995126040525538,2.954727675800576,38.37,33.04,-9,-9,3.333333333333333,1,1,0,0,7,4,2,0,543,627016.2928303424,24239.77173650198,437413.7555509483,0,947.5071937688588 -3811,4752,8573,8574,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.968700553603461,7.925794150639668,0,14,7,81.20183463430635,0,3,2,2019,13,2,40,38,1,2,0,8.254291529590867,8.254291529590867,0,0,0,0,0,0,0,0,0,0,51.47,53.17,45.82,54.57,8.333333333333334,1,1,0,0,10,4,4,0,569,396159.9247854442,138703.5563620306,227973.2013432039,23293.17703672883,2130.349816967508 -3811,4752,8574,8573,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.109216253148167,7.727031181568105,0,15,-7,57.84737830773671,0,2,2,2019,10,1,40,42,1,1,0,7.598970971409064,7.598970971409064,0,0,0,0,0,0,0,0,0,0,45.82,54.57,51.47,53.17,6.666666666666667,1,1,0,0,8,4,4,0,569,396159.9247854442,138703.5563620306,227973.2013432039,23293.17703672883,2130.349816967508 -3811,4753,8575,-9,8574,8573,1,0,25,0,0,0,1,1,-9,0,3,8.550036561108371,8.507988033207555,0,0,0,-1036.266810758523,0,2,2,2019,5,1,45,40,1,1,1,8.62459848122905,8.62459848122905,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,1,1,0,0,8,4,4,0,817,-112788.0342573164,-3312.786475692104,0,0,640.571579573922 -3812,4754,8576,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.520799801180437,6.5126368119922,0,0,-976.255786718079,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,29.2561795968568,0,260.326973495636,0,1,1,0,3.065798485327949,6.848654691185763,55.4,19.5,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,4304,378309.5144723579,96665.18118382792,470818.5100954832,0,1227.452474671245 -3813,4755,8577,-9,8578,8579,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.820786923691,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,686,129908.5231882844,119773.593330985,143674.3113479585,60362.33912292396,1171.584117140329 -3813,4755,8578,8579,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.602022733257334,7.838559841947002,0,16,-2,-89.09398615068172,0,2,3,2019,13,2,25,16,1,2,0,10.89989034939378,10.89989034939378,0,0,0,0,0,1,1,0,0,0,48.13,47.75,61.52,37.8,8.333333333333334,1,1,0,0,13,1,3,1,686,129908.5231882844,119773.593330985,143674.3113479585,60362.33912292396,1171.584117140329 -3813,4755,8579,8578,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.434413422238976,6.442218569560381,0,16,2,-51.273345245682,0,2,2,2019,5,1,56,56,1,1,0,1.231265984898468,1.231265984898468,0,0,0,0,2,1,1,0,0,0,61.52,37.8,48.13,47.75,8.333333333333334,1,1,0,0,13,1,3,1,686,129908.5231882844,119773.593330985,143674.3113479585,60362.33912292396,1171.584117140329 -3814,4756,8580,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.235202389972301,8.122202166620767,0,0,0,-1027.264836464663,0,3,3,2019,15,3,48,50,1,3,0,8.579229245299633,8.579229245299633,0,0,0,0,0,1,1,0,0,0,42.56,48.18,-9,-9,3.333333333333333,1,1,0,1,10,5,4,1,339,39464.90436788234,184401.1940277969,155837.1154665775,82246.56453291663,1672.571898023428 -3815,4757,8581,8582,-9,-9,1,1,44,0,1,0,2,2,-9,0,1,8.718490040114894,8.627624322118855,0,2,6,-59.91843653780101,0,2,2,2019,14,2,35,0,1,2,0,23.8412028257373,23.8412028257373,0,0,0,0,0,1,1,0,8.671448737535393,0,29.82,20.07,36.29,53.61,3.333333333333333,1,1,0,0,5,10,5,0,800,802084.3951277174,208860.4564252936,516772.5733356388,181952.939706819,8214.056732276864 -3815,4757,8582,8581,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.953342827443389,7.745458396284731,4.569510533169721,2,-6,76.90193185421427,0,-9,-9,2019,20,7,16,16,1,7,0,22.49840712000282,22.49840712000282,0,0,0,0,14.5,1,1,0,4.996771149277683,0,36.29,53.61,29.82,20.07,3.333333333333333,1,1,0,0,5,10,5,0,800,802084.3951277174,208860.4564252936,516772.5733356388,181952.939706819,8214.056732276864 -3815,4757,8583,-9,8582,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.6403378644428,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,800,802084.3951277174,208860.4564252936,516772.5733356388,181952.939706819,8214.056732276864 -3816,4758,8584,-9,8585,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1055.703943288432,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,2,0,960.5,54559.40777374946,0,0,0,572.6744314403103 -3816,4758,8585,-9,8589,-9,1,0,19,1,4,0,2,2,-9,1,4,0,0,0,0,0,-1045.111590299145,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,60.1,54.82,-9,-9,10,1,1,1,0,2,5,2,0,960.5,54559.40777374946,0,0,0,572.6744314403103 -3816,4759,8586,8589,-9,-9,1,1,46,1,4,0,2,2,-9,0,2,8.295768581804184,8.203221310573891,0,6,11,-185.1900523732742,0,-9,-9,2019,14,2,40,40,1,2,0,8.6547648890937,8.6547648890937,0,0,0,0,14.5,1,1,0,0,0,50.27,48.86,36.05,52.38,5,1,1,0,0,9,5,3,0,815,272093.5349204765,220910.3414046263,188941.7140816893,21834.24898092454,3584.957801867753 -3816,4759,8587,-9,8589,-9,1,1,16,1,4,1,3,0,-9,0,2,0,0,0,0,0,-1020.286934229749,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.27,46.36,-9,-9,6.666666666666667,1,1,0,0,0,5,3,0,815,272093.5349204765,220910.3414046263,188941.7140816893,21834.24898092454,3584.957801867753 -3816,4759,8588,-9,8589,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1061.842342567009,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,815,272093.5349204765,220910.3414046263,188941.7140816893,21834.24898092454,3584.957801867753 -3816,4759,8589,8586,-9,-9,1,0,35,1,4,0,2,2,-9,0,3,8.164266176454209,8.243078070367241,0,6,-11,-37.57613692271787,0,-9,-9,2019,15,3,39,43,1,3,0,9.17854632776595,9.17854632776595,0,0,0,0,74.5,1,1,0,0,0,36.05,52.38,50.27,48.86,6.666666666666667,1,1,0,0,5,5,3,0,815,272093.5349204765,220910.3414046263,188941.7140816893,21834.24898092454,3584.957801867753 -3816,4759,8590,-9,8589,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.090956298448,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,815,272093.5349204765,220910.3414046263,188941.7140816893,21834.24898092454,3584.957801867753 -3817,4760,8591,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.018015203811082,7.874548285808229,0,0,0,-1056.959946096473,-9,2,2,2019,17,5,44,0,1,5,0,8.588199473178353,8.588199473178353,0,0,0,0,0,0,0,0,1.360979544018609,0,43.37,49.25,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,615,271231.6965602926,-119066.8100542498,172476.3810508985,14957.69440872973,1205.727044125521 -3817,4761,8592,-9,8591,-9,1,0,24,0,0,0,1,1,-9,0,4,8.292370455010493,8.245785980180296,0,0,0,-985.6583393776674,0,2,-9,2019,17,5,58,41,1,5,1,9.465993641211409,9.465993641211409,0,0,0,0,0,0,0,0,2.613557928208236,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,5,2,5,1,372,220699.4166448954,-40175.46100242782,0,0,1552.5971106076 -3818,4762,8593,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.734619643448525,8.675063587169483,0,0,0,-1115.45192252581,0,3,3,2019,9,0,45,45,1,0,0,16.06405548984276,16.06405548984276,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1164,1737847.516062707,1178231.825191497,207827.8277323665,0,2244.595049957939 -3819,4763,8594,8595,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,7.424822798605537,7.183921247016778,5.269094312825588,47,-2,56.89464787037645,0,2,3,2019,14,3,18,18,1,3,0,10.15725803214612,10.15725803214612,0,0,0,0,0,1,1,0,0,5.56134988940515,44.38,51.97,57.16,56.15,6.666666666666667,1,1,0,0,9,11,2,1,719,1140247.410865745,715737.7160034264,131623.4440040666,0,2907.405739055483 -3819,4763,8595,8594,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,47,2,3.060001578858318,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.38,51.97,8.333333333333334,1,1,0,0,4,11,2,1,719,1140247.410865745,715737.7160034264,131623.4440040666,0,2907.405739055483 -3820,4764,8596,8597,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.995419529295019,7.502433415054067,0,8,1,27.50634919690319,0,3,2,2019,12,1,38,39,1,1,0,7.727546179422265,7.727546179422265,0,0,0,0,0,0,0,0,0,0,46.08,46.68,48.54,48.53,5,1,1,0,0,13,1,4,1,386.5,-24315.05470148956,16178.13181851618,0,0,2796.232715253403 -3820,4764,8597,8596,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,7.885553305110029,8.145468290843212,0,8,-1,-143.0129578797673,0,-9,-9,2019,12,0,37,22,1,0,0,11.22167402622273,11.22167402622273,0,0,0,0,0,0,0,0,.8967643387365545,0,48.54,48.53,46.08,46.68,6.666666666666667,1,1,0,0,11,1,4,1,386.5,-24315.05470148956,16178.13181851618,0,0,2796.232715253403 -3821,4765,8598,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.454271709205068,8.514915958516037,0,0,0,-925.713634813403,0,-9,-9,2019,10,1,40,52,1,1,0,14.66701416994904,14.66701416994904,0,0,0,0,0,0,0,0,0,0,35.62,57.79,-9,-9,5,1,1,0,0,7,13,5,1,435,74729.2384358604,-107859.4688969628,0,0,1505.525901942691 -3822,4766,8599,8600,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,0,0,0,10,-3,-13.24527237003476,0,3,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1.974789141691495,0,35.5,54.11,55.79,52.62,6.666666666666667,2,3,0,0,0,8,5,1,632.5,6559235.589307415,5056884.327791576,870819.6949760178,412764.7163565609,6068.226930899806 -3822,4766,8600,8599,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,10.02364172037791,9.876189702449976,0,23,3,14.10003361976968,0,2,2,2019,12,1,50,48,1,1,0,36.22527467415915,36.22527467415915,0,0,0,0,2,0,0,0,3.263788031047969,0,55.79,52.62,35.5,54.11,8.333333333333334,2,3,0,0,12,8,5,1,632.5,6559235.589307415,5056884.327791576,870819.6949760178,412764.7163565609,6068.226930899806 -3822,4767,8601,-9,8599,8600,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-937.8829386860399,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.9985429779464999,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,726,-27699.28910344838,0,0,0,-2.841966905454996 -3823,4768,8602,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-947.7742553529782,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,0,0,0,7,1,1,833,0,0,0,0,1237.772102275125 -3823,4768,8603,-9,8602,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.915008804507,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,833,0,0,0,0,1237.772102275125 -3823,4768,8604,-9,8602,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6770276312454,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,833,0,0,0,0,1237.772102275125 -3824,4769,8605,8606,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,48,1,-129.2339014969454,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.75,51.28,8.333333333333334,1,1,0,0,0,6,3,1,756.5,934949.14549744,569154.5017681491,308745.5991151782,0,2313.580404516857 -3824,4769,8606,8605,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.18571112457292,8.06039002818493,48,-1,-22.33205233410766,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.337794406018993,58.75,51.28,55.79,52.62,10,1,1,0,0,11,6,3,1,756.5,934949.14549744,569154.5017681491,308745.5991151782,0,2313.580404516857 -3825,4770,8607,8608,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,7.941649043928947,8.237569505146194,0,2,-7,-19.07414112800535,0,-9,-9,2019,7,0,44,44,1,0,0,8.359725786238203,8.359725786238203,0,0,0,0,0,1,1,0,.7657461916103685,0,46.67,55.57,54.2,57.49,8.333333333333334,1,1,0,0,4,9,4,0,1500,321151.260217,104144.2519623348,416333.2143519075,192022.8767169862,2357.687800867334 -3825,4770,8608,8607,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,7.679545741462545,7.718282593451038,0,2,7,70.52375479405892,0,-9,-9,2019,10,0,39,0,1,0,0,7.111053350270726,7.111053350270726,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.67,55.57,6.666666666666667,1,1,0,0,0,9,4,0,1500,321151.260217,104144.2519623348,416333.2143519075,192022.8767169862,2357.687800867334 -3825,4770,8609,-9,8607,8608,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.468408273955,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1500,321151.260217,104144.2519623348,416333.2143519075,192022.8767169862,2357.687800867334 -3826,4771,8610,8611,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,2,2,0,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47.74,53.75,58.32,50.22,8.333333333333334,1,1,0,0,0,10,1,0,499,-98562.8760150524,32753.39856962041,0,0,165.7465669914737 -3826,4771,8611,8610,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,.0213983414744354,0,58.32,50.22,47.74,53.75,8.333333333333334,1,1,0,1,4,10,1,0,499,-98562.8760150524,32753.39856962041,0,0,165.7465669914737 -3827,4772,8612,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,9.011681991977529,8.932200738225959,0,0,0,-1116.686735473188,0,2,2,2019,21,8,40,43,1,8,0,24.86881005724948,24.86881005724948,0,0,0,0,0,1,1,0,.292243421419993,0,36.21,25.85,-9,-9,1.666666666666667,1,1,0,0,11,9,5,0,868,-145498.4284683536,0,0,0,2772.246828630727 -3828,4773,8613,8614,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,39,-16,-127.7108446348564,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,55.03,11.91,8.333333333333334,1,1,0,0,0,6,2,1,631.5,283043.2340726326,53438.8536584966,145774.7363903783,0,853.4660676701051 -3828,4773,8614,8613,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,5.306411893364335,5.125875574900035,39,16,198.2047231183143,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,80.38598551417046,0,0,1,1,0,5.462738169692811,5.318086627546329,55.03,11.91,57.16,56.15,8.333333333333334,1,1,0,0,0,6,2,1,631.5,283043.2340726326,53438.8536584966,145774.7363903783,0,853.4660676701051 -3829,4774,8615,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,7.472153090768967,7.877680187340443,0,0,-973.5995469388492,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.592587153979613,7.554581717756653,56,44,-9,-9,8,1,1,0,0,0,8,3,1,156,577164.2873307072,304878.752025288,93678.93759523434,0,2128.201562417374 -3829,4775,8616,-9,-9,8615,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1036.492135724781,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,398,116485.8467145702,81022.32382392767,0,0,1141.468270141433 -3830,4776,8617,8618,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.26109482915439,8.464061028449345,0,2,-2,-13.19173653370444,0,2,2,2019,10,1,24,24,1,1,0,17.39991031301347,17.39991031301347,0,0,0,0,0,1,1,0,0,0,37.19,60.95,51,56,8.333333333333334,1,1,0,0,6,13,5,1,1322.666666666667,82650.11599183752,91230.59074858214,246860.6159878433,159302.6968336229,3735.991293201073 -3830,4776,8618,8617,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.454039571936001,8.332857205462542,0,2,2,-11.59873099802779,0,2,2,2019,9,0,38,60,1,1,0,15.21473488327171,15.21473488327171,0,0,0,0,0,1,1,0,1.877585610425637,0,51,56,37.19,60.95,8,1,1,0,0,1,13,5,1,1322.666666666667,82650.11599183752,91230.59074858214,246860.6159878433,159302.6968336229,3735.991293201073 -3830,4776,8619,-9,8617,8618,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.0556429183016,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1322.666666666667,82650.11599183752,91230.59074858214,246860.6159878433,159302.6968336229,3735.991293201073 -3831,4777,8620,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.251699054415,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.14,28.83,-9,-9,6.666666666666667,1,1,0,1,0,9,1,0,2859,179163.8569254829,0,0,0,750.6284386857337 -3831,4778,8621,-9,-9,-9,1,1,18,0,0,0,3,3,1,0,5,0,0,0,0,0,-1066.809598091294,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,46.59,-9,-9,0,1,1,1,0,0,9,1,0,343,22713.42969523243,0,0,0,0 -3832,4779,8622,8623,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,0,0,40,8,61.86398507544267,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.811959193773625,0,41.4,58.06,40.02,53.08,6.666666666666667,1,1,0,0,7,2,2,1,340.5,598334.6179556223,196068.2551171717,245507.9824284579,0,7403.303855829588 -3832,4779,8623,8622,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.758296915373769,5.988267088878626,40,-8,-85.39639672327735,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,.4198770263271747,0,1,1,0,7.645333064457537,5.682308736339482,40.02,53.08,41.4,58.06,3.333333333333333,1,1,0,0,8,2,2,1,340.5,598334.6179556223,196068.2551171717,245507.9824284579,0,7403.303855829588 -3833,4780,8624,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.975093539458949,7.804439982434835,0,0,-923.8310919482265,0,2,2,2019,29,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,0,7.878175093522495,38.73,17.83,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,93,1370951.815255143,652015.1106601155,86232.32422150095,0,2239.071882479017 -3834,4781,8625,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,5.481282631031572,5.515099820150475,0,0,-995.2694712271541,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.705852441411909,5.515192670428726,55.36,54.24,-9,-9,10,1,1,0,0,0,10,2,0,1872,224442.8725796438,95647.06925502868,143329.0172964178,0,988.7878927189012 -3835,4782,8626,-9,8628,-9,1,0,16,0,1,1,2,0,-9,0,4,0,4.474959722482224,4.751746373029005,0,0,-960.94100006067,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.720495969049551,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1259,235839.2756246795,265258.0394822546,204356.3844603412,52269.16253064631,2505.083439018816 -3835,4782,8627,-9,8628,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.5314838160413,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.357906720610501,0,46,60,-9,-9,7,1,1,0,0,0,5,3,1,1259,235839.2756246795,265258.0394822546,204356.3844603412,52269.16253064631,2505.083439018816 -3835,4782,8628,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.751114109729116,8.271737418809071,7.012784037711518,0,0,-960.6593849546865,-9,2,3,2019,10,0,47,0,1,0,0,4.971228915618451,4.971228915618451,0,0,0,0,0,1,1,0,7.481180056795427,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1259,235839.2756246795,265258.0394822546,204356.3844603412,52269.16253064631,2505.083439018816 -3836,4783,8629,8630,-9,-9,1,0,43,0,2,0,3,3,-9,0,5,0,0,0,1,2,-108.9023482493206,-9,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,57.33,53.46,10,1,1,0,0,2,6,5,1,572.5,1264111.12477101,550719.3829620193,695710.2136044633,0,4258.26316825489 -3836,4783,8630,8629,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,9.632957865636245,9.569448298451185,0,1,-2,-106.7218079435014,-9,2,2,2019,9,0,60,0,1,0,0,23.59121404653867,23.59121404653867,0,0,0,0,0,0,0,0,4.269428068621972,0,57.33,53.46,48.77,60.16,8.333333333333334,1,1,0,0,7,6,5,1,572.5,1264111.12477101,550719.3829620193,695710.2136044633,0,4258.26316825489 -3837,4784,8631,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.865693342965409,5.70568332950613,0,0,-1117.902297001235,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.259186662908623,45.17,39.64,-9,-9,10,1,1,0,0,0,13,2,1,463,-12266.75779918642,96433.95856399958,0,0,905.9485509123166 -3838,4785,8632,8633,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,8.153708644568589,8.065580445414126,6.624009599336891,14,8,-8.066641382643972,0,2,3,2019,6,0,32,40,1,0,0,9.615926194885454,9.615926194885454,0,0,0,0,0,1,1,0,0,6.953249816024126,60.02,56.42,52.25,37.18,8.333333333333334,1,1,0,0,10,5,4,1,1024,580989.915104815,256994.765928434,249496.6513201527,0,2552.557287909874 -3838,4785,8633,8632,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.447784107100084,7.602181820516481,0,14,-8,99.22021104602138,0,2,2,2019,12,0,30,30,1,0,0,8.095621917407474,8.095621917407474,0,0,0,0,0,1,1,0,0,0,52.25,37.18,60.02,56.42,5,1,1,0,0,10,5,4,1,1024,580989.915104815,256994.765928434,249496.6513201527,0,2552.557287909874 -3839,4786,8634,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,3.742670126706512,3.783022749789263,0,0,-981.4707175007894,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.982949360285678,3.456325251092808,45.04,27.23,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,717,228769.2850037984,-68863.83452515511,58488.21622361153,0,933.8261500877243 -3840,4787,8635,8636,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.289152808203788,9.438947143490962,0,8,0,57.66696811215819,0,-9,-9,2019,9,0,50,40,1,0,0,25.99334027337782,25.99334027337782,0,0,0,0,0,0,0,0,0,0,52,54.51,43.26,58.26,6.666666666666667,1,1,0,0,11,7,5,1,358.5,1277977.840211604,667586.9810258467,568627.5213953604,14778.55909839126,4583.791309942397 -3840,4787,8636,8635,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.670369244421697,7.647116565438691,0,37,0,81.64832065100201,0,3,3,2019,9,1,27,30,1,1,0,9.785434554983734,9.785434554983734,0,0,0,0,0,0,0,0,0,0,43.26,58.26,52,54.51,8.333333333333334,1,1,0,0,11,7,5,1,358.5,1277977.840211604,667586.9810258467,568627.5213953604,14778.55909839126,4583.791309942397 -3841,4788,8637,8638,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.775018576867875,6.385010588129393,7,2,-39.72712415958287,0,2,2,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.937150352897962,61.11,14.56,61.12,46.03,8.333333333333334,1,1,0,0,0,13,3,1,632,1065059.917264188,837452.4932094961,223094.636125827,0,2668.987482389133 -3841,4788,8638,8637,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.653540259437523,7.369648992207175,7,-2,-72.8190601703993,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.006350177742653,7.383073539934447,61.12,46.03,61.11,14.56,8.333333333333334,1,1,0,0,4,13,3,1,632,1065059.917264188,837452.4932094961,223094.636125827,0,2668.987482389133 -3842,4789,8639,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.104359669809504,8.342535526296029,0,0,0,-1037.383673912561,-9,2,-9,2019,11,0,30,0,1,1,0,13.19888412108817,13.19888412108817,0,0,0,0,2,1,1,0,.9009599621457918,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,184,449612.4204132243,-145467.1446854354,32408.5040268618,0,643.3092469816024 -3842,4790,8640,-9,-9,8639,1,0,22,0,1,1,2,0,-9,0,4,0,0,0,0,0,-990.6015238255592,-9,-9,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,2.525896936000216,0,32.26,60.74,-9,-9,5,1,1,0,0,5,5,1,1,550,22089.6707111762,0,0,0,165.5436500640704 -3843,4791,8641,8642,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,6.689586407254951,6.597432300612067,0,3,1,-49.12998947434718,0,-9,-9,2019,21,7,12,0,1,7,0,7.219610218642532,7.219610218642532,0,0,0,0,0,1,1,0,0,0,29.63,40.3,56.57,57.78,8.333333333333334,1,1,0,0,5,10,3,0,725,157939.9970514475,0,311442.693268746,103270.7050053122,2753.58388989488 -3843,4791,8642,8641,-9,-9,1,1,26,1,2,0,2,2,-9,0,4,8.22775931912034,8.373088484061833,0,3,-1,-37.14441096327762,0,-9,-9,2019,9,0,37,37,1,0,0,13.5254998667459,13.5254998667459,0,0,0,0,0,1,1,0,0,0,56.57,57.78,29.63,40.3,8.333333333333334,1,1,0,0,4,10,3,0,725,157939.9970514475,0,311442.693268746,103270.7050053122,2753.58388989488 -3843,4791,8643,-9,8641,8642,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.357714016734,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,725,157939.9970514475,0,311442.693268746,103270.7050053122,2753.58388989488 -3843,4791,8644,-9,8641,8642,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.050522108529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,725,157939.9970514475,0,311442.693268746,103270.7050053122,2753.58388989488 -3844,4792,8645,8647,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.716799214999122,8.809774956666972,5.779944431005623,9,0,-107.5398774943973,0,2,2,2019,7,0,37,38,1,0,0,16.02154289577017,16.02154289577017,0,0,0,0,0,1,1,0,5.782339567879633,0,55.2,57.22,53.38,41.98,8.333333333333334,1,1,0,0,10,2,4,1,258.25,451057.6838481583,79094.03006945641,281751.0003442129,0,3990.813343501635 -3844,4792,8646,-9,8645,8647,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.6130951296491,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,258.25,451057.6838481583,79094.03006945641,281751.0003442129,0,3990.813343501635 -3844,4792,8647,8645,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,7.853870878187868,8.236721294449165,0,9,9,77.61584543618767,0,-9,-9,2019,11,0,25,25,1,0,0,12.92929700907569,12.92929700907569,0,0,0,0,0,1,1,0,7.624168021557512,0,53.38,41.98,55.2,57.22,8.333333333333334,1,1,0,0,10,2,4,1,258.25,451057.6838481583,79094.03006945641,281751.0003442129,0,3990.813343501635 -3844,4792,8648,-9,8645,8647,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.46838473153,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,258.25,451057.6838481583,79094.03006945641,281751.0003442129,0,3990.813343501635 -3845,4793,8649,-9,8651,8650,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.9708645321847,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,358.25,306985.5330720726,222036.051218827,189373.7150087712,91716.51074771408,3645.681427405391 -3845,4793,8650,8651,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,8.82243982932637,9.170478320786092,0,23,-4,-48.9844456680157,0,2,2,2019,7,0,56,56,1,0,0,12.97217965946081,12.97217965946081,0,0,0,0,70,1,1,0,3.404463211234777,0,53.47,52.37,38.57,44.3,8.333333333333334,1,1,0,0,8,4,4,1,358.25,306985.5330720726,222036.051218827,189373.7150087712,91716.51074771408,3645.681427405391 -3845,4793,8651,8650,-9,-9,1,0,42,1,2,0,2,2,-9,1,3,7.745377994188518,7.622125590135406,0,23,4,66.60053686601782,0,1,1,2019,13,1,17,17,1,1,0,14.06937780730042,14.06937780730042,0,0,0,0,109,1,1,0,2.509649573917018,0,38.57,44.3,53.47,52.37,6.666666666666667,1,1,0,0,7,4,4,1,358.25,306985.5330720726,222036.051218827,189373.7150087712,91716.51074771408,3645.681427405391 -3845,4793,8652,-9,8651,8650,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-836.6526288375244,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,358.25,306985.5330720726,222036.051218827,189373.7150087712,91716.51074771408,3645.681427405391 -3846,4794,8653,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.177236868645872,8.476392081524343,0,0,0,-875.9986287381721,0,2,2,2019,12,1,30,30,1,1,0,16.26319572033963,16.26319572033963,0,0,0,0,0,0,0,0,2.684722414116511,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,134,589379.7060809426,316995.6886372172,165801.8696916969,72780.17429432458,1245.109713221466 -3847,4795,8654,-9,8656,8655,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-924.047889073894,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,570.6666666666666,214293.0253966026,49097.35050062422,287862.457456398,164263.3729604934,2882.698365176253 -3847,4795,8655,8656,-9,-9,1,1,31,1,1,0,1,1,-9,0,3,8.279190079082149,8.197498940671467,0,6,3,-140.8485698694781,0,-9,-9,2019,7,0,64,45,1,0,0,6.299179144193798,6.299179144193798,0,0,0,0,0,1,1,0,0,0,47.15,56.66,57.06,57.76,8.333333333333334,1,1,0,0,4,5,4,1,570.6666666666666,214293.0253966026,49097.35050062422,287862.457456398,164263.3729604934,2882.698365176253 -3847,4795,8656,8655,-9,-9,1,0,28,1,1,0,1,1,-9,0,5,8.067569653647809,8.021395355339639,0,6,-3,79.64509373361966,0,3,3,2019,7,0,32,32,1,0,0,8.282150455240092,8.282150455240092,0,0,0,0,0,1,1,0,2.98146504770647,0,57.06,57.76,47.15,56.66,8.333333333333334,1,1,0,0,7,5,4,1,570.6666666666666,214293.0253966026,49097.35050062422,287862.457456398,164263.3729604934,2882.698365176253 -3848,4796,8657,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.147950556461218,7.814149013462379,0,0,0,-957.9600152105426,-9,3,3,2019,7,0,37,0,1,0,0,11.56480279594813,11.56480279594813,0,0,0,0,0,0,0,0,0,0,56.25,44.4,-9,-9,5,3,4,0,0,11,7,4,1,744,424311.4943260603,23468.28091086455,351079.3093281517,0,1504.036314847826 -3849,4797,8658,-9,8659,8660,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.760775318164,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,860,632359.0505550676,370001.8189540964,324365.6416592984,118950.6026930261,5176.196296468622 -3849,4797,8659,8660,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.21559097974818,8.375456272324534,0,29,0,44.01251362978548,0,2,3,2019,12,0,33,34,1,0,0,10.80866663300526,10.80866663300526,0,0,0,0,0,1,1,0,2.726680757857907,0,51.41,56.15,49.63,54.22,6.666666666666667,1,1,0,0,10,5,5,1,860,632359.0505550676,370001.8189540964,324365.6416592984,118950.6026930261,5176.196296468622 -3849,4797,8660,8659,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.722494855185653,9.776883588187337,0,28,0,-9.778783106924857,0,2,2,2019,12,0,79,47,1,0,0,18.33889517824075,18.33889517824075,0,0,0,0,0,1,1,0,3.547434081839055,0,49.63,54.22,51.41,56.15,6.666666666666667,1,1,0,0,8,5,5,1,860,632359.0505550676,370001.8189540964,324365.6416592984,118950.6026930261,5176.196296468622 -3849,4798,8661,-9,8659,8660,1,0,20,0,1,0,2,2,-9,0,3,7.853499271008934,7.908358021661905,0,0,0,-1003.845540524099,0,2,2,2019,17,4,46,44,1,4,1,5.708006995652771,5.708006995652771,0,0,0,0,0,1,1,0,0,0,45.09,54.91,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,293,-77969.87899366974,0,0,0,958.3214256132311 -3850,4799,8662,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.218314518751528,7.922312266250373,0,0,0,-1122.264619246687,0,2,2,2019,11,2,38,38,1,2,0,12.26578615235654,12.26578615235654,0,0,0,0,7,1,1,0,0,0,33.16,61,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,769,175032.7448808957,45257.30036918073,52667.42718487242,4032.836136669683,2004.954227954545 -3851,4800,8663,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.521687395551842,6.450469814001411,0,0,-956.8782689717717,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.771472099337759,6.462486709086223,47.54,39.93,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,328,355654.2920964473,179784.6666318854,186878.7851900546,15571.78344277825,434.6526768662127 -3852,4801,8664,8665,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.7644789974766,8.557296773464378,0,37,0,-41.63843407930459,0,2,3,2019,10,0,38,37,1,0,0,15.71034308058338,15.71034308058338,0,0,0,0,7,0,0,0,2.673449073712206,0,54.2,57.49,57.57,49.69,8.333333333333334,1,1,0,0,10,13,5,1,172,1563357.019333872,1118846.543496693,230684.5048394802,0,4131.015217299291 -3852,4801,8665,8664,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.436097542861489,8.200860958606153,37,0,109.0837836703121,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.676989944606854,8.524318756843277,57.57,49.69,54.2,57.49,8.333333333333334,1,1,0,0,0,13,5,1,172,1563357.019333872,1118846.543496693,230684.5048394802,0,4131.015217299291 -3853,4802,8666,8667,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.953194120102286,8.088444929407091,0,35,5,-132.9010051177939,0,2,2,2019,13,1,40,40,1,1,0,9.193638145122542,9.193638145122542,0,0,0,0,2,1,1,0,0,0,54,54,30.77,20.1,5,1,1,0,0,6,2,3,1,639,122100.6945590063,0,162812.4396954092,0,1934.459173517866 -3853,4802,8667,8666,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,35,-5,-69.77961775945937,0,2,2,2019,18,7,0,20,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,20.1,54,54,1.666666666666667,1,1,0,0,8,2,3,1,639,122100.6945590063,0,162812.4396954092,0,1934.459173517866 -3854,4803,8668,8669,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,8.402851549062634,8.565583098034447,6.052119008323264,28,11,68.75375153287209,0,2,1,2019,9,0,22,20,1,0,0,21.61734345684511,21.61734345684511,0,0,0,0,2,0,0,0,2.967225223329984,6.701631999293835,54.2,57.49,29.09,45.05,8.333333333333334,1,1,0,0,9,9,4,1,855,2021388.801990296,1370527.388573348,392038.7128670193,0,2171.410949831452 -3854,4803,8669,8668,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,29,-11,-9.995976446898199,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,45.05,54.2,57.49,3.333333333333333,1,1,0,0,9,9,4,1,855,2021388.801990296,1370527.388573348,392038.7128670193,0,2171.410949831452 -3854,4804,8670,-9,8669,8668,1,0,24,0,0,0,1,1,-9,0,4,7.962063956944951,7.904306552372248,0,0,0,-1004.085471953719,0,2,1,2019,11,0,35,37,1,2,1,7.545245540752817,7.545245540752817,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,9,3,1,1416,30525.89309239407,90791.1033052597,0,0,1090.543513801348 -3854,4805,8671,-9,8669,8668,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1072.38417604092,1,2,1,2019,16,7,0,27,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,38.18,65.09,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,402,0,0,0,0,380.207742375143 -3855,4806,8672,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.225322313320442,8.354454464417396,0,0,0,-1126.70160796507,0,-9,-9,2019,12,0,41,0,1,0,0,8.788840150247037,8.788840150247037,0,0,0,0,0,0,0,0,.67065558036933,0,41.24,62.14,-9,-9,6.666666666666667,4,2,0,0,4,2,4,0,1557,-46988.03659638729,14887.52441129004,0,0,1349.59165807416 -3856,4807,8673,8674,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.439487126989555,8.655996920245133,0,28,1,31.51318794964757,0,3,2,2019,12,1,43,39,1,1,0,11.99851110323652,11.99851110323652,0,0,0,0,0,1,1,0,4.410988107932246,0,45.22,45.39,57.16,56.15,8.333333333333334,1,1,0,0,13,2,4,1,397,1140046.505740911,853997.4806689721,198804.0019641726,0,2907.691329919753 -3856,4807,8674,8673,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.722055116196175,7.748910617649452,0,28,-1,36.69827510112112,0,3,3,2019,8,0,32,25,1,0,0,8.008730548396871,8.008730548396871,0,0,0,0,7,1,1,0,0,0,57.16,56.15,45.22,45.39,8.333333333333334,1,1,0,0,11,2,4,1,397,1140046.505740911,853997.4806689721,198804.0019641726,0,2907.691329919753 -3856,4807,8675,-9,8674,8673,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1043.529424297891,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,4,1,397,1140046.505740911,853997.4806689721,198804.0019641726,0,2907.691329919753 -3856,4808,8676,-9,8674,8673,1,1,19,0,1,0,2,2,-9,0,3,7.786341704560761,8.068146163521755,0,0,0,-1041.825441768623,0,2,2,2019,14,2,45,0,1,2,1,6.796154469063803,6.796154469063803,0,0,0,0,0,1,1,0,0,0,27.98,63,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,2948,241770.5281835357,-53179.38069687444,0,0,1191.110469388831 -3857,4809,8677,8678,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.55739573672134,8.53526572334299,0,7,5,37.23839175586885,0,-9,-9,2019,9,0,38,39,1,1,0,15.19024715359678,15.19024715359678,0,0,0,0,0,0,0,0,5.114034529863827,0,53,54,46.67,55.57,8,1,1,0,0,1,10,5,1,908,581551.6700286062,163949.952878738,431213.3937636563,65939.35331549471,3086.741658568465 -3857,4809,8678,8677,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.824488362584022,7.876461792121908,0,13,-5,27.55868019433785,0,3,2,2019,4,0,44,47,1,0,0,8.453533726814987,8.453533726814987,0,0,0,0,27,0,0,0,4.004090071968745,0,46.67,55.57,53,54,10,1,1,0,0,8,10,5,1,908,581551.6700286062,163949.952878738,431213.3937636563,65939.35331549471,3086.741658568465 -3858,4810,8679,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.333752359917284,8.448528429133452,0,0,-960.1434867423968,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.875029825436207,8.137703033300943,43.54,55.65,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,59,825429.2345482644,736593.1344762845,0,0,2162.568549979208 -3859,4811,8680,-9,8682,8681,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.242340989192,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1221.75,363668.907134083,197158.7360705107,200581.2514592485,16781.44252364257,5146.360590704423 -3859,4811,8681,8682,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.331194967935769,9.317131964646123,0,7,0,55.58839144899749,0,1,1,2019,16,5,42,42,1,5,0,25.27245774819841,25.27245774819841,0,0,0,0,0,0,0,0,4.92879981111588,0,29.56,47.6,43.48,60.97,6.666666666666667,1,1,0,0,8,9,5,0,1221.75,363668.907134083,197158.7360705107,200581.2514592485,16781.44252364257,5146.360590704423 -3859,4811,8682,8681,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.011303235924116,8.441072233094481,0,7,0,-80.22856544834796,0,-9,-9,2019,11,0,25,25,1,0,0,16.9620248832471,16.9620248832471,0,0,0,0,0,0,0,0,6.311539109175957,0,43.48,60.97,29.56,47.6,6.666666666666667,4,2,0,0,7,9,5,0,1221.75,363668.907134083,197158.7360705107,200581.2514592485,16781.44252364257,5146.360590704423 -3859,4811,8683,-9,8682,8681,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.02180574446,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,1221.75,363668.907134083,197158.7360705107,200581.2514592485,16781.44252364257,5146.360590704423 -3860,4812,8684,8685,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.177397370735225,8.037020612779445,0,9,-2,17.46001256464667,0,1,2,2019,12,1,24,40,1,1,0,18.52304775966373,18.52304775966373,0,0,0,0,0,0,0,0,2.381664027899294,0,46.5,58.26,51,57,8.333333333333334,1,1,0,0,9,9,5,1,486.3333333333333,1180724.806437506,433747.8267530375,622623.9529506289,153550.0430589712,4355.404834494169 -3860,4812,8685,8684,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.765679796148747,8.641932439477594,0,9,2,49.63894837133377,0,1,1,2019,10,0,49,45,1,1,0,15.88488163449502,15.88488163449502,0,0,0,0,0,0,0,0,0,0,51,57,46.5,58.26,7,3,4,0,0,1,9,5,1,486.3333333333333,1180724.806437506,433747.8267530375,622623.9529506289,153550.0430589712,4355.404834494169 -3860,4812,8686,-9,8684,8685,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.415683017541,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,486.3333333333333,1180724.806437506,433747.8267530375,622623.9529506289,153550.0430589712,4355.404834494169 -3861,4813,8687,8688,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.149349676153136,8.991536538737781,0,5,1,-12.6855820411626,0,1,1,2019,11,0,54,58,1,0,0,17.71081056275517,17.71081056275517,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.79,55.86,1.666666666666667,1,1,0,0,5,4,5,1,159,271352.2929609873,71223.92398936593,271334.9327857422,176174.234660114,6552.791671500223 -3861,4813,8688,8687,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.367177551541378,9.219473234946248,0,5,-1,-9.318711418856628,0,-9,-9,2019,7,0,24,24,1,0,0,44.90687466256906,44.90687466256906,0,0,0,0,0,0,0,0,3.659568544320956,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,5,4,5,1,159,271352.2929609873,71223.92398936593,271334.9327857422,176174.234660114,6552.791671500223 -3862,4814,8689,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,7.780483922534259,8.510677748654276,5.877433600641845,0,0,-1069.043161967918,0,3,3,2019,15,5,45,40,1,5,0,8.024022928612562,8.024022928612562,0,0,0,0,0,1,1,0,5.664142274954326,0,40.9,56.09,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,249,315878.8379555112,84741.51013044309,0,0,2501.87599334108 -3863,4815,8690,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.05905613720565,8.33058318458974,0,0,-1061.624321353234,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.321281383855964,8.288222914791435,52,47,-9,-9,7,1,1,0,0,0,5,4,0,255,872534.3999401495,771941.530584324,169307.1779499904,0,3203.834169594676 -3864,4816,8691,8694,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,0,0,0,7,14,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,32.14,34.36,46.3,55.95,0,1,1,0,0,0,2,1,0,238,-22164.3180995299,0,0,0,3274.486829752618 -3864,4816,8692,-9,8691,8694,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.812564672311,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,238,-22164.3180995299,0,0,0,3274.486829752618 -3864,4816,8693,-9,8691,8694,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.3121553699051,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.38,54.63,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,238,-22164.3180995299,0,0,0,3274.486829752618 -3864,4816,8694,8691,-9,-9,1,1,29,0,2,0,2,2,-9,1,3,0,0,0,7,-14,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,46.3,55.95,32.14,34.36,8.333333333333334,1,1,0,0,3,2,1,0,238,-22164.3180995299,0,0,0,3274.486829752618 -3865,4817,8695,-9,8696,8697,1,1,37,0,0,0,1,1,-9,0,5,8.489292855228928,8.606414419485906,0,0,0,-820.8217642148155,-9,2,2,2019,4,0,53,0,1,0,0,12.72266520784958,12.72266520784958,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,4,11,5,1,282,160838.2437810361,39407.20027048363,93610.24506535644,88530.92045665241,1955.370194432497 -3865,4818,8696,8697,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-54.8989548132289,-9,3,2,2019,17,5,0,0,4,5,0,0,0,1,5.992044863416983,78.72168607841324,0,0,1,1,0,0,0,42.21,34.32,38.74,40.53,5,1,1,0,0,0,11,2,1,484,818178.0124419108,217384.1041342877,215045.9030758264,0,2344.969490788782 -3865,4818,8697,8696,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.911090844418602,6.64624849607194,6,3,131.0699840382211,-9,3,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,42,1,1,0,6.291270878102237,7.264864063004691,38.74,40.53,42.21,34.32,3.333333333333333,1,1,0,0,0,11,2,1,484,818178.0124419108,217384.1041342877,215045.9030758264,0,2344.969490788782 -3866,4819,8698,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.282709337860507,6.209081802378621,0,0,-890.783314286233,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.431529956769541,52,47,-9,-9,7,1,1,0,0,0,8,2,0,518,127205.7136999599,204807.6984631367,0,0,1065.067672726218 -3867,4820,8699,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.40460627240096,8.549527373933806,0,0,0,-946.0957040752601,0,2,3,2019,23,11,28,35,1,11,0,16.51153575728064,16.51153575728064,0,0,0,0,0,0,0,0,1.91813764302913,0,12.95,62.22,-9,-9,0,1,1,0,0,12,7,5,1,109,66553.26880482043,0,0,0,2262.007010954771 -3868,4821,8700,8701,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,57,4,-33.99574490865454,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.232039899992532,0,56.16,45.84,57.18,45.76,8.333333333333334,1,1,0,0,9,9,2,1,1335.5,643124.5798985554,117960.259053922,449458.5146362447,0,-328.251373385923 -3868,4821,8701,8700,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.874901508117639,6.595194392341599,57,-4,114.1929747313532,0,2,2,2019,12,1,0,24,4,1,0,0,0,1,0,0,0,0,1,1,0,1.056476381441615,6.571709236148705,57.18,45.76,56.16,45.84,6.666666666666667,1,1,0,0,6,9,2,1,1335.5,643124.5798985554,117960.259053922,449458.5146362447,0,-328.251373385923 -3869,4822,8702,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1016.839993039394,0,2,2,2019,15,5,0,60,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,46.05,53.32,-9,-9,3.333333333333333,1,1,0,1,4,5,1,1,254,-112030.2899804969,0,0,0,0 -3870,4823,8703,8704,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.229628610045713,5.373108766419619,7,2,45.69927615443305,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,.0101998408441513,0,0,1,1,0,3.79746845255044,5.064410664476693,55.12,29.87,44.08,29.85,5,1,1,0,0,0,6,2,1,501,313251.2956019343,120675.721819581,179877.6533773309,0,1714.772337210316 -3870,4823,8704,8703,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.533713506177656,6.724260593229937,7,-2,124.4014953202121,0,3,1,2019,10,1,0,0,4,1,0,0,0,1,0,7.243953246239307,0,0,1,1,0,5.88143285313586,6.379299809588391,44.08,29.85,55.12,29.87,8.333333333333334,1,1,0,0,0,6,2,1,501,313251.2956019343,120675.721819581,179877.6533773309,0,1714.772337210316 -3871,4824,8705,-9,8708,8707,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.375053233775,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,2,0,1257.75,481003.1157071805,322212.2625845853,282474.6514930071,139843.4132783103,3310.847554204732 -3871,4824,8706,-9,8708,8707,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.1121536938784,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,2,0,1257.75,481003.1157071805,322212.2625845853,282474.6514930071,139843.4132783103,3310.847554204732 -3871,4824,8707,8708,-9,-9,1,1,47,0,3,0,3,3,-9,0,4,7.84052522253168,8.400398973492642,0,17,-1,-16.39381592298678,0,3,3,2019,9,0,40,40,1,1,0,7.968403156872333,7.968403156872333,0,0,0,0,0,1,1,0,0,0,52,55,42.35,48.08,8,4,5,0,0,1,8,2,0,1257.75,481003.1157071805,322212.2625845853,282474.6514930071,139843.4132783103,3310.847554204732 -3871,4824,8708,8707,-9,-9,1,0,48,0,3,0,3,3,-9,0,5,0,0,0,17,1,3.128830606015141,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,48.08,52,55,3.333333333333333,4,5,0,0,0,8,2,0,1257.75,481003.1157071805,322212.2625845853,282474.6514930071,139843.4132783103,3310.847554204732 -3872,4825,8709,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-967.3603158875846,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.604517091917696,0,52,45,-9,-9,7,1,1,0,0,0,6,1,1,793,0,0,0,0,524.966722494657 -3873,4826,8710,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.903209723508003,5.690958722024651,0,0,-984.451808600864,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.181831863015356,5.694628602236408,63.65,35.93,-9,-9,6.666666666666667,1,1,0,0,3,2,2,1,1132,-68346.77040514816,-56404.2912090277,0,0,1033.112429462062 -3874,4827,8711,-9,8713,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.958476216545,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,352.3333333333333,158757.0743367658,90269.41250552404,151135.6475191471,0,3028.705510718764 -3874,4827,8712,-9,8713,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-899.1562564855603,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,4,4,1,352.3333333333333,158757.0743367658,90269.41250552404,151135.6475191471,0,3028.705510718764 -3874,4827,8713,-9,-9,-9,1,0,42,0,2,0,1,1,-9,1,2,8.161681953318523,8.332299856856617,6.973433710683648,0,0,-845.3663490552877,0,-9,-9,2019,21,7,37,43,1,7,0,12.78521331876094,12.78521331876094,0,0,0,0,0,1,1,0,3.501480849764486,6.852300276540661,41.12,27.25,-9,-9,5,1,1,0,0,6,4,4,1,352.3333333333333,158757.0743367658,90269.41250552404,151135.6475191471,0,3028.705510718764 -3875,4828,8714,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.304410651725168,7.445766441703369,0,0,-965.6279221723605,0,2,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,7.323745128475554,58.72,51.29,-9,-9,6.666666666666667,3,4,0,0,8,8,3,1,1444,700195.8442246751,481537.8114705343,343366.7989073904,0,928.5172190603047 -3876,4829,8715,8718,-9,-9,1,0,39,0,2,0,1,1,0,0,5,0,0,0,7,-5,-35.36581438987295,-9,-9,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.21,12.12,0,1,1,0,0,10,4,2,1,1227,60675.68742741688,-29574.16395903898,0,0,2258.587478609616 -3876,4829,8716,-9,8715,8718,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.0518460984622,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,1227,60675.68742741688,-29574.16395903898,0,0,2258.587478609616 -3876,4829,8717,-9,8715,8718,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.786415713626,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,2,1,1227,60675.68742741688,-29574.16395903898,0,0,2258.587478609616 -3876,4829,8718,8715,-9,-9,1,1,44,0,2,0,2,2,-9,0,1,7.854654206732881,8.027200713188856,0,7,5,95.34611785992649,0,3,3,2019,10,0,39,39,1,0,0,6.64392255494973,6.64392255494973,0,0,0,0,0,1,1,0,0,0,54.21,12.12,57.06,57.76,3.333333333333333,4,2,0,0,10,4,2,1,1227,60675.68742741688,-29574.16395903898,0,0,2258.587478609616 -3877,4830,8719,-9,8720,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.104803782306,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,475.6666666666667,80785.64410096196,0,0,0,1447.29378007939 -3877,4830,8720,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1118.366711007299,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,63.46,-9,-9,5,1,1,1,0,4,9,1,0,475.6666666666667,80785.64410096196,0,0,0,1447.29378007939 -3877,4830,8721,-9,8720,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.9112850319486,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,475.6666666666667,80785.64410096196,0,0,0,1447.29378007939 -3878,4831,8722,8723,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.401150595851613,7.451881354116273,5,8,-52.52274047615815,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.448694366797792,60.28,23.75,37.6,14.31,6.666666666666667,1,1,0,0,0,11,2,1,741,258013.7597078836,36733.24357845489,171181.3985892825,0,1550.422026263006 -3878,4831,8723,8722,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,5,-8,7.177298307098615,0,3,2,2019,19,8,0,0,4,8,0,0,0,1,0,11.66001846457348,0,0,1,1,0,0,0,37.6,14.31,60.28,23.75,5,1,1,0,0,0,11,2,1,741,258013.7597078836,36733.24357845489,171181.3985892825,0,1550.422026263006 -3879,4832,8724,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-976.6835077135685,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.7111801728947267,0,37.51,58.26,-9,-9,3.333333333333333,1,1,1,0,0,2,1,1,2431,422.8655902738972,0,0,0,426.5207587186267 -3880,4833,8725,8726,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.040884782710576,6.159665276724358,7,2,-50.17329259344228,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.751679810427454,44.15,24.2,45.04,33.51,8.333333333333334,1,1,0,0,0,12,2,0,2005.5,703855.1443790211,200490.2747039554,247639.0561023632,0,2185.269842608048 -3880,4833,8726,8725,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.997859634357722,6.057752922675376,46,-2,13.60787795919182,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.038998007190856,4.879831042199188,45.04,33.51,44.15,24.2,8.333333333333334,1,1,0,0,6,12,2,0,2005.5,703855.1443790211,200490.2747039554,247639.0561023632,0,2185.269842608048 -3880,4834,8727,8728,8726,8725,1,0,28,0,0,0,2,2,-9,0,4,7.288728693167594,7.220704211307186,0,3,-15,99.16179831378992,0,2,2,2019,8,0,24,0,1,0,0,8.587943244851639,8.587943244851639,0,0,0,0,2,1,1,0,0,0,52.08,50.2,54.37,54.8,8.333333333333334,1,1,0,0,5,12,4,0,450.5,19526.91497706378,73609.63217905429,0,0,2047.730916178162 -3880,4834,8728,8727,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.997327937554738,7.763030175435561,0,3,15,9.521111905285427,0,-9,-9,2019,11,1,45,0,1,1,0,8.529461495651285,8.529461495651285,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52.08,50.2,8.333333333333334,1,1,0,0,1,12,4,0,450.5,19526.91497706378,73609.63217905429,0,0,2047.730916178162 -3881,4835,8729,8730,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.757599027007307,7.303078586872125,9,2,-36.39154407171116,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.455901765692778,50.8,52.44,51.49,57.57,8.333333333333334,1,1,0,0,0,12,3,1,580,990607.5508292211,281496.4721815907,461621.3483705753,0,2477.323728675481 -3881,4835,8730,8729,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.725277661563847,6.92184288412825,9,-2,-.4469515239072044,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.638929311935965,51.49,57.57,50.8,52.44,6.666666666666667,1,1,0,0,0,12,3,1,580,990607.5508292211,281496.4721815907,461621.3483705753,0,2477.323728675481 -3882,4836,8731,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,7.777384357018287,7.645808329173553,0,0,0,-1003.455733242863,0,-9,-9,2019,13,1,35,35,1,1,0,7.094830844948945,7.094830844948945,0,0,0,0,0,1,1,0,0,0,47.48,36.78,-9,-9,0,1,1,0,0,9,12,3,0,229,45890.19428667683,0,0,0,1441.328962442853 -3883,4837,8732,-9,8733,8735,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-992.8638727204201,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.3,58.97,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,812.6,874284.0990909131,59048.289943842,511704.282215881,55575.93102233077,2839.597445400817 -3883,4837,8733,8735,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,6.852712200767996,6.870735388618754,0,7,0,36.10529137833171,0,3,-9,2019,12,0,10,5,1,0,0,13.35741923141871,13.35741923141871,0,0,0,0,0,1,1,0,0,0,46.22,50.63,53.14,51.28,8.333333333333334,1,1,0,0,4,9,4,0,812.6,874284.0990909131,59048.289943842,511704.282215881,55575.93102233077,2839.597445400817 -3883,4837,8734,-9,8733,8735,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.6601412268822,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,0,812.6,874284.0990909131,59048.289943842,511704.282215881,55575.93102233077,2839.597445400817 -3883,4837,8735,8733,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.397301616037652,8.68850253921031,5.30395796490193,7,0,110.7345055593721,0,-9,-9,2019,11,0,48,45,1,0,0,12.0646189501066,12.0646189501066,0,0,0,0,0,1,1,0,5.305805914022755,0,53.14,51.28,46.22,50.63,6.666666666666667,1,1,0,0,8,9,4,0,812.6,874284.0990909131,59048.289943842,511704.282215881,55575.93102233077,2839.597445400817 -3883,4837,8736,-9,8733,8735,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.3644076345308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,812.6,874284.0990909131,59048.289943842,511704.282215881,55575.93102233077,2839.597445400817 -3884,4838,8737,8738,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.46505729519533,6.144110861148826,8,-12,-38.52545752111847,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,10.62204866082208,0,2,1,1,0,4.434713277033827,6.603412348569054,60.34,14.48,67.7,27.38,10,1,1,0,0,0,1,2,0,855,378983.763321082,152837.7473247488,90346.06557530761,0,2989.277532918391 -3884,4838,8738,8737,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.020118506102059,6.379472703323308,8,12,97.54033546249454,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.148834907527304,67.7,27.38,60.34,14.48,8.333333333333334,1,1,0,0,0,1,2,0,855,378983.763321082,152837.7473247488,90346.06557530761,0,2989.277532918391 -3885,4839,8739,8741,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,5.45620505770437,5.558048150328992,0,4,3,114.2586675347631,0,2,2,2019,16,5,40,35,1,5,0,.7094591937462171,.7094591937462171,0,0,0,0,0,1,1,0,0,0,35.03,51.4,45.72,55.84,8.333333333333334,1,1,0,0,11,9,2,0,762.6666666666666,-326.6950258336146,-4618.799020376483,0,0,952.5238537308859 -3885,4839,8740,-9,8741,8739,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-845.4196529171279,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,2,0,762.6666666666666,-326.6950258336146,-4618.799020376483,0,0,952.5238537308859 -3885,4839,8741,8739,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,7.344578200105965,7.055945215500222,0,4,-3,38.22114489432214,0,-9,-9,2019,10,0,12,20,1,0,0,15.15651005113163,15.15651005113163,0,0,0,0,0,1,1,0,0,0,45.72,55.84,35.03,51.4,10,1,1,0,0,5,9,2,0,762.6666666666666,-326.6950258336146,-4618.799020376483,0,0,952.5238537308859 -3886,4840,8742,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.966056548930176,7.786179543407941,0,0,-912.7189897343412,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,6.656844159829953,0,65.82007290869687,0,1,1,0,0,7.895142755278454,50.93,17.76,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,874,309605.4030742607,262201.1162246217,258419.1330898227,0,2587.592842738773 -3887,4841,8743,8744,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.787532948232083,6.985884069368145,44,5,-12.37279193225579,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.217032558309268,6.712794036833295,38.94,40.16,66.44,47.81,6.666666666666667,1,1,0,0,4,1,2,1,720.5,557216.756597657,308072.0673588387,196008.7098482021,0,1495.157259744188 -3887,4841,8744,8743,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.105323887127748,5.580925207482964,44,-5,137.4160651720642,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.849662358472634,5.563267445478072,66.44,47.81,38.94,40.16,10,1,1,0,0,0,1,2,1,720.5,557216.756597657,308072.0673588387,196008.7098482021,0,1495.157259744188 -3888,4842,8745,8746,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.902488303975007,8.713935679818524,8.037759930507018,35,-8,-37.56436934546946,0,2,2,2019,9,0,22,22,1,0,0,14.80395144016433,14.80395144016433,0,0,0,0,7,1,1,0,6.91253501337073,8.100065898745859,58.32,50.22,55.19,54.26,10,1,1,0,0,11,2,4,1,778,1556112.364775658,18566.26613979659,302942.5075477621,82533.85720479934,3433.70871629023 -3888,4842,8746,8745,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,35,8,15.11829061749903,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,58.32,50.22,6.666666666666667,1,1,0,0,6,2,4,1,778,1556112.364775658,18566.26613979659,302942.5075477621,82533.85720479934,3433.70871629023 -3889,4843,8747,8748,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,7.785621746864105,7.686150547662881,0,43,-1,2.538680449404343,0,3,3,2019,12,0,30,30,1,0,0,9.44086503401593,9.44086503401593,0,0,0,0,0,1,1,0,3.577138550546032,0,49,47,47.42,51.55,6.666666666666667,1,1,0,0,13,2,4,1,571.5,423287.8668421706,-536.8879337513827,160727.1895541866,0,-2101.4592405848 -3889,4843,8748,8747,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.296126555072306,7.826433981472057,43,1,-.7872351783518285,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,9.087288444258672,47.42,51.55,49,47,3.333333333333333,1,1,0,0,12,2,4,1,571.5,423287.8668421706,-536.8879337513827,160727.1895541866,0,-2101.4592405848 -3890,4844,8749,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.395540898420076,6.425543825645935,0,0,-1176.938122648307,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.03389585331105,6.495215165469394,47.94,53.79,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1171,436542.2842024932,27260.43503255865,312886.0795513787,0,444.3884430836919 -3891,4845,8750,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.943860532411426,8.11317181776821,7.055045285512375,0,0,-903.3955629718561,0,3,3,2019,12,1,39,39,1,1,0,7.449897399633684,7.449897399633684,0,0,0,0,0,1,1,0,6.478510570663616,7.072766595559223,44.69,33.87,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,1632,1133106.342145966,831461.7790203668,242496.0493938466,32829.79951156382,2807.463377158722 -3892,4846,8751,8752,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,66,-4,-81.5784248583762,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.93234002146526,0,0,1,1,0,0,0,72.35000000000001,17.84,53.82,41.27,10,1,1,0,0,0,10,3,1,837.5,810308.9883854131,75516.88252274573,656933.4495311246,0,1357.263100624934 -3892,4846,8752,8751,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,7.072287179263867,7.301240614852044,66,4,200.2575873665448,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.669187418273022,7.813432803520005,53.82,41.27,72.35000000000001,17.84,8.333333333333334,1,1,0,0,0,10,3,1,837.5,810308.9883854131,75516.88252274573,656933.4495311246,0,1357.263100624934 -3893,4847,8753,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.454622100299037,9.270079739237833,0,0,0,-1053.433059859983,0,3,1,2019,19,8,35,35,1,8,0,44.50713236499988,44.50713236499988,0,0,0,0,0,1,1,0,7.814559838737986,0,33.01,63.17,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,485,240655.0381881919,112966.243463546,210669.5923167981,168302.5426410903,4366.130335366598 -3894,4848,8754,8755,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.365022045647372,8.396628182252034,0,2,0,5.566136327308061,0,-9,-9,2019,8,0,37,37,1,0,0,13.1388679093851,13.1388679093851,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.05,54.52,8.333333333333334,1,1,0,0,3,13,5,0,484.5,-214966.9894929542,-43836.85084150968,0,0,2701.342776945684 -3894,4848,8755,8754,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.479709978094332,8.313142288408681,0,2,0,-53.264231660201,0,2,2,2019,6,0,37,37,1,0,0,12.24583031091554,12.24583031091554,0,0,0,0,0,0,0,0,0,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,7,13,5,0,484.5,-214966.9894929542,-43836.85084150968,0,0,2701.342776945684 -3895,4849,8756,8757,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,6,1,0,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,42.16277857877162,0,0,1,1,0,0,0,64.89,20.7,58.98,42.9,8.333333333333334,1,1,0,0,0,13,1,1,473,166245.1574828236,-62932.4731105773,98544.47254123655,0,1826.163308047323 -3895,4849,8757,8756,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.98,42.9,64.89,20.7,10,1,1,0,0,0,13,1,1,473,166245.1574828236,-62932.4731105773,98544.47254123655,0,1826.163308047323 -3896,4850,8758,-9,8759,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.3253700772943,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,234,-73247.95580082946,0,0,0,1647.536442541765 -3896,4850,8759,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1012.031116222986,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,5,1,1,1,1,9,4,2,0,234,-73247.95580082946,0,0,0,1647.536442541765 -3897,4851,8760,8761,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,8.184843741846347,8.197400350118174,0,1,-2,-34.15511251576681,-9,2,2,2019,9,0,45,0,1,0,0,9.572270890454847,9.572270890454847,0,0,0,0,0,1,1,0,7.814034431102345,0,59.43,58.05,57.03,48.06,10,1,1,0,0,12,12,4,1,1380.5,1757874.484647357,894088.8387144809,185190.3924336787,0,4663.734284320824 -3897,4851,8761,8760,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.161443804095726,7.097704240620542,22,2,-101.2540154077351,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.36589689803596,7.591746921524646,57.03,48.06,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,1380.5,1757874.484647357,894088.8387144809,185190.3924336787,0,4663.734284320824 -3898,4852,8762,-9,8764,8763,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.2446592557942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,397.6,514188.1369407292,388458.5295566083,352398.4896557428,192851.7753272435,4311.659046271392 -3898,4852,8763,8764,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.953795147344463,8.830678252197108,0,2,1,-55.45293010320179,0,2,2,2019,4,0,40,45,1,0,0,22.56148712133247,22.56148712133247,0,0,0,0,0,1,1,0,0,0,48.77,60.16,51.73,58.82,8.333333333333334,1,1,0,0,11,13,4,1,397.6,514188.1369407292,388458.5295566083,352398.4896557428,192851.7753272435,4311.659046271392 -3898,4852,8764,8763,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.301548146697941,8.374150258058053,0,2,-1,98.30069208106977,0,3,3,2019,8,0,41,41,1,0,0,10.8793078222856,10.8793078222856,0,0,0,0,0,1,1,0,4.011401622292575,0,51.73,58.82,48.77,60.16,8.333333333333334,1,1,0,0,11,13,4,1,397.6,514188.1369407292,388458.5295566083,352398.4896557428,192851.7753272435,4311.659046271392 -3898,4852,8765,-9,8764,8763,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.013007004321,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,397.6,514188.1369407292,388458.5295566083,352398.4896557428,192851.7753272435,4311.659046271392 -3898,4852,8766,-9,8764,8763,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-988.0542914835344,1,1,1,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,8.333333333333334,1,1,0,1,0,13,4,1,397.6,514188.1369407292,388458.5295566083,352398.4896557428,192851.7753272435,4311.659046271392 -3899,4853,8767,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.362023812272,-9,3,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,3,4,0,0,0,8,1,0,2412,-25879.07818637603,0,0,0,0 -3900,4854,8768,8769,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.759601957377692,9.612561152487451,0,23,1,-102.2981732534397,0,-9,-9,2019,15,4,44,47,1,4,0,34.02497076090164,34.02497076090164,0,0,0,0,0,0,0,0,4.135536067624479,0,44.74,48.1,24.85,67.03,8.333333333333334,1,1,0,0,8,4,5,1,510,1230535.255882004,580093.9555956194,435555.9420413475,0,8469.496413776222 -3900,4854,8769,8768,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.921005350248159,8.948222273122575,0,5,-1,-12.45221700899336,0,-9,-9,2019,29,12,38,0,1,12,0,27.98155935919012,27.98155935919012,0,0,0,0,0,0,0,0,5.97491310203084,0,24.85,67.03,44.74,48.1,3.333333333333333,1,1,0,0,3,4,5,1,510,1230535.255882004,580093.9555956194,435555.9420413475,0,8469.496413776222 -3901,4855,8770,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1082.103128714528,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.86,57.86,-9,-9,10,1,1,0,0,3,9,2,0,533,47400.45694595255,0,0,0,1092.96498226752 -3902,4856,8771,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.966582908212672,7.791836271356195,0,0,-1039.625477911149,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.371844602480171,44.12,47.28,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,245,1228449.712501963,386848.1116272619,689218.4694441301,0,1267.702830927984 -3902,4857,8772,-9,8771,-9,1,1,36,0,0,0,1,1,-9,0,4,8.291626679629136,8.130814409693915,0,0,0,-1041.850671871225,0,2,2,2019,8,2,38,39,1,2,0,14.21017909465366,14.21017909465366,0,0,0,0,0,1,1,0,5.755578460129345,0,49.69,55.66,-9,-9,3.333333333333333,1,1,0,0,11,10,5,1,651,294949.2960783751,80114.80584145719,332053.3222025765,164592.149730295,1594.739020733609 -3903,4858,8773,8774,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,6.910042912250299,6.858144116330537,0,6,4,-97.96403184110935,0,1,3,2019,13,2,5,7,1,2,0,20.29745282942449,20.29745282942449,0,0,0,0,0,0,0,0,7.641340836703648,0,39.44,60.23,39.31,63.19,8.333333333333334,1,1,0,0,13,12,4,1,519,86569.1155939677,-8059.29012574015,0,0,4190.499809972545 -3903,4858,8774,8773,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.943558958316189,8.528800604887223,0,6,-4,-22.6889802952088,0,-9,-9,2019,8,1,34,33,1,1,0,22.47437047365721,22.47437047365721,0,0,0,0,0,0,0,0,.179328506818959,0,39.31,63.19,39.44,60.23,8.333333333333334,1,1,0,0,2,12,4,1,519,86569.1155939677,-8059.29012574015,0,0,4190.499809972545 -3904,4859,8775,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,9.320591028936649,9.297933689742944,0,0,0,-1177.630146111047,0,-9,-9,2019,20,8,40,40,1,8,0,34.97524200917815,34.97524200917815,0,0,0,0,0,0,0,0,.3951040811665875,0,34.05,54.77,-9,-9,5,3,4,0,0,6,5,5,1,580,54934.00213037468,24902.80289156113,323628.1410424522,205530.4685452912,3871.941661673506 -3905,4860,8776,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.933260465749429,8.788859495712799,0,0,0,-911.1452557600761,0,2,2,2019,8,1,38,70,1,1,0,18.22406329696786,18.22406329696786,0,0,0,0,0,0,0,0,2.732293475038995,0,41.85,56.37,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,676,-148986.4298017113,-61302.81469201551,0,0,2902.638456564376 -3906,4861,8777,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.056217301664088,8.151475567111687,0,0,0,-1038.636092094818,0,2,2,2019,6,0,35,35,1,0,0,11.05650614447256,11.05650614447256,0,0,0,0,0,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,580,114094.495965006,275547.9281750493,0,0,951.2256096973931 -3907,4862,8778,-9,8779,8780,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1046.9935967532,-9,1,1,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,435,824012.0313326913,452798.3550459281,544950.9984444045,165664.2314934533,7398.563433289603 -3907,4862,8779,8780,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.642234150114668,8.550220852198578,0,32,0,-49.23859138997306,0,2,2,2019,6,0,35,33,1,0,0,21.55005935732289,21.55005935732289,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,11,12,5,1,435,824012.0313326913,452798.3550459281,544950.9984444045,165664.2314934533,7398.563433289603 -3907,4862,8780,8779,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.584943253346129,9.485368424465705,0,32,0,103.1596554646208,0,2,1,2019,6,0,35,45,1,0,0,47.28293670707919,47.28293670707919,0,0,0,0,0,0,0,0,4.825385184424379,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,435,824012.0313326913,452798.3550459281,544950.9984444045,165664.2314934533,7398.563433289603 -3908,4863,8781,8782,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.518281360524745,7.4415407766921,8,4,57.68148031677453,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.286323765785135,51,52.08,65.53,28.23,8.333333333333334,1,1,0,0,0,12,3,1,394.5,926198.3559488161,554139.2041861231,108758.394123062,0,2480.375635201226 -3908,4863,8782,8781,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.48245946863502,7.513221012851065,12,-4,-29.90881921104562,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.519515754512856,65.53,28.23,51,52.08,10,1,1,0,0,0,12,3,1,394.5,926198.3559488161,554139.2041861231,108758.394123062,0,2480.375635201226 -3909,4864,8783,8784,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.18539589692163,7.238601466862913,51,-1,-140.2286934486842,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.891561299049036,47.35,37.78,50.79,53.77,8.333333333333334,1,1,0,0,0,2,3,1,294.5,893947.9285602521,620246.0655248533,84654.02660374477,42838.95404552696,2265.135511283379 -3909,4864,8784,8783,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.251292999456572,7.629549640220043,51,1,-65.55531703877902,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.125365483637692,7.278302987855247,50.79,53.77,47.35,37.78,8.333333333333334,1,1,0,0,4,2,3,1,294.5,893947.9285602521,620246.0655248533,84654.02660374477,42838.95404552696,2265.135511283379 -3910,4865,8785,8786,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.012048180056525,7.134522490951261,30,-1,20.90270351897267,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,5.827333599589708,7.212486611331108,35.51,23.05,56.33,51.02,5,1,1,0,0,0,8,5,1,731,2036350.609379984,646183.8705336074,684166.1340120687,0,5097.391775841983 -3910,4865,8786,8785,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.554738966117581,8.839747358535881,31,1,-110.2398560143556,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.244136714057619,8.744069503752815,56.33,51.02,35.51,23.05,8.333333333333334,1,1,0,0,0,8,5,1,731,2036350.609379984,646183.8705336074,684166.1340120687,0,5097.391775841983 -3911,4866,8787,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.745480693495157,7.737796712408885,0,0,0,-939.9183881074543,0,2,2,2019,10,1,33,38,1,1,0,9.127786093600985,9.127786093600985,0,0,0,0,0,0,0,0,0,0,66.34,49.42,-9,-9,5,1,1,0,0,11,1,3,1,1383,60439.39766359683,-137451.7315032719,0,0,898.4091468250931 -3911,4867,8788,-9,8787,-9,1,1,25,0,0,0,2,2,-9,0,4,8.40373755075319,8.497965064610547,0,0,0,-1064.301847248617,0,2,2,2019,9,3,53,44,1,3,1,7.580947439895009,7.580947439895009,0,0,0,0,0,0,0,0,6.886653426907015,0,56.18,42.45,-9,-9,0,1,1,0,0,9,1,4,1,452,220587.3318265602,-75947.99520582196,0,0,2787.523233999809 -3912,4868,8789,8790,-9,-9,1,1,53,0,0,0,3,3,-9,0,1,7.799607945441339,8.306961051669743,6.343546952977187,38,2,13.47519715150593,0,-9,3,2019,12,0,41,43,1,0,0,7.650108591012796,7.650108591012796,0,0,0,0,0,0,0,0,0,6.288507036966825,48.68,24.28,41.49,48.72,6.666666666666667,1,1,0,1,8,9,3,0,3780,50443.67794124679,-27427.56089892198,0,0,1383.052222915695 -3912,4868,8790,8789,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,38,-2,-116.0956238714632,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,41.49,48.72,48.68,24.28,5,1,1,0,1,1,9,3,0,3780,50443.67794124679,-27427.56089892198,0,0,1383.052222915695 -3912,4869,8791,-9,8790,8789,1,0,29,0,0,0,2,2,-9,0,3,8.01047345235116,7.897693678412896,0,0,0,-958.4605984997687,0,2,3,2019,6,1,54,25,1,1,1,5.709340912857396,5.709340912857396,0,0,0,0,0,0,0,0,0,0,43.27,48.34,-9,-9,5,1,1,0,0,7,9,3,0,205,39606.78019810319,-18732.2297818356,0,0,1432.003132428148 -3912,4870,8792,-9,8790,8789,1,1,22,0,0,0,2,2,1,0,3,7.206560314692799,7.291066297373796,0,0,0,-993.482794590402,-9,2,3,2019,8,1,25,0,1,1,1,5.647386608863373,5.647386608863373,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,8.333333333333334,1,1,0,1,4,9,3,0,406,84361.47312826764,0,0,0,794.5831269703021 -3913,4871,8793,8794,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,8.341743960240887,8.401054296561099,0,33,6,-52.82158392046084,0,3,3,2019,8,1,40,42,1,1,0,10.88692663849761,10.88692663849761,0,0,0,0,0,0,0,0,0,0,62.49,17.43,57.57,44.16,6.666666666666667,1,1,0,0,9,8,3,0,494.5,991569.3307774768,911129.3028442143,0,0,1378.156475065289 -3913,4871,8794,8793,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,6.03072329198078,5.781934221061632,0,31,-6,38.6838803448917,0,-9,2,2019,11,0,6,6,1,0,0,8.432012778575169,8.432012778575169,0,0,0,0,0,0,0,0,0,0,57.57,44.16,62.49,17.43,6.666666666666667,1,1,0,0,9,8,3,0,494.5,991569.3307774768,911129.3028442143,0,0,1378.156475065289 -3914,4872,8795,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,8.042297647311065,7.901020472033723,0,0,-814.1611143907755,0,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,8.559528650341088,8.155398270916889,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,2075,172565.6044008683,461810.5238371816,0,0,1228.367581443367 -3914,4873,8796,-9,8795,-9,1,1,23,0,0,0,2,2,-9,0,5,8.616645297364633,8.779608321682124,0,0,0,-917.1913258202592,-9,2,2,2019,12,0,43,0,1,0,1,16.44923046352608,16.44923046352608,0,0,0,0,0,0,0,0,0,0,45.46,61.87,-9,-9,10,1,1,0,0,7,2,5,1,98,-146477.7830022997,55194.08750877024,0,0,1981.836698181854 -3914,4874,8797,-9,8795,-9,1,1,19,0,0,0,2,2,-9,0,5,7.859223175350553,7.856659625373316,0,0,0,-960.919603868592,-9,2,-9,2019,9,1,40,0,1,1,1,8.611106314796308,8.611106314796308,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,6.666666666666667,1,1,0,0,3,2,4,1,411,117039.9095841734,-79686.52148640044,0,0,1137.722648869343 -3915,4875,8798,8799,-9,-9,1,1,24,0,1,0,2,2,-9,0,4,8.466192464550296,8.348465162080194,0,1,-1,-59.14693335556979,0,2,2,2019,11,0,41,39,1,0,0,13.34697772428822,13.34697772428822,0,0,0,0,0,1,1,0,0,0,56.33,51.02,44.02,60.7,8.333333333333334,1,1,0,0,7,5,4,0,789.3333333333334,25918.62785326084,18447.32134613106,167780.1891327389,59013.61669909157,2633.809562507836 -3915,4875,8799,8798,-9,-9,1,0,25,0,1,0,1,1,-9,0,4,7.598103678269064,7.434283368954434,0,1,1,73.62298198323985,-9,-9,-9,2019,10,0,28,0,1,0,0,5.975744824408254,5.975744824408254,0,0,0,0,0,1,1,0,.6143077423486901,0,44.02,60.7,56.33,51.02,8.333333333333334,1,1,0,0,1,5,4,0,789.3333333333334,25918.62785326084,18447.32134613106,167780.1891327389,59013.61669909157,2633.809562507836 -3915,4875,8800,-9,8799,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1141.076300147346,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,789.3333333333334,25918.62785326084,18447.32134613106,167780.1891327389,59013.61669909157,2633.809562507836 -3916,4876,8801,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.6342177227893,0,-9,2,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.75,19.69,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,901,130758.4700468275,0,0,0,1653.302308647543 -3916,4877,8802,-9,-9,8801,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1086.733766305763,-9,-9,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,2,0,887,83147.17305790634,0,0,0,828.4349717978519 -3917,4878,8803,8804,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,28,-4,2.976764454496031,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.7,55.88,8.333333333333334,1,1,0,0,0,4,3,1,1033,869395.4187667053,645741.9191861071,145632.8514845132,0,2320.864874127316 -3917,4878,8804,8803,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.285864503746891,7.832951907091706,28,4,18.4925170775929,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.795417224248721,57.7,55.88,57.16,56.15,10,1,1,0,0,0,4,3,1,1033,869395.4187667053,645741.9191861071,145632.8514845132,0,2320.864874127316 -3918,4879,8805,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.2018789646238,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.8245025296810254,0,50,47,-9,-9,7,1,1,0,0,8,5,2,1,330,295720.4787774679,0,144757.3510205977,0,1111.657524804155 -3919,4880,8806,8807,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.072028740976172,7.996530155028326,0,29,-8,-15.60458021735489,-9,3,-9,2019,10,0,40,0,1,1,0,12.20016406386915,12.20016406386915,0,0,0,0,0,1,1,0,0,0,50,55,61.11,48.86,8,2,3,0,0,1,9,5,1,747,600529.1170612688,178553.1102651319,428306.1475999287,75626.2478336769,4113.403784227887 -3919,4880,8807,8806,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.690574173691939,9.039498985301014,0,29,8,-110.0747839237347,-9,3,3,2019,6,0,37,0,1,0,0,20.73966418748455,20.73966418748455,0,0,0,0,0,1,1,0,0,0,61.11,48.86,50,55,8.333333333333334,2,3,0,0,10,9,5,1,747,600529.1170612688,178553.1102651319,428306.1475999287,75626.2478336769,4113.403784227887 -3919,4881,8808,-9,8806,8807,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-914.8586801895025,-9,2,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,45.12,52.03,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,662,-11525.87312272544,0,0,0,0 -3920,4882,8809,8810,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.044804510006686,7.111853046500032,52,4,51.50067058166311,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.928073599668813,7.017175526294091,50.25,56.54,54.1,45.07,10,1,1,0,0,0,10,2,0,1216,382897.145447811,358432.1627059276,131850.5840870712,0,1660.311248556215 -3920,4882,8810,8809,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,3.759440488400344,3.356225944259001,52,-4,82.49515784307961,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.378399631368092,3.200038880239257,54.1,45.07,50.25,56.54,8.333333333333334,1,1,0,0,8,10,2,0,1216,382897.145447811,358432.1627059276,131850.5840870712,0,1660.311248556215 -3921,4883,8811,8812,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.874416199523528,8.50599775320296,0,6,9,75.11692358083681,0,3,2,2019,9,0,14,45,1,0,0,41.14073282439021,41.14073282439021,0,0,0,0,2,0,0,0,.61129958111048,0,50.16,34.87,23.92,43.07,10,1,1,0,0,6,12,4,1,645,365083.766210448,382245.185894804,106693.3551132499,0,2906.823223126566 -3921,4883,8812,8811,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.718584595938528,7.508000845109398,0,6,0,21.39092090925729,0,-9,-9,2019,30,12,39,39,1,12,0,5.830816641424106,5.830816641424106,0,0,0,0,0,0,0,0,0,0,23.92,43.07,50.16,34.87,1.666666666666667,1,1,0,0,6,12,4,1,645,365083.766210448,382245.185894804,106693.3551132499,0,2906.823223126566 -3922,4884,8813,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.356937338769529,7.070814007657395,0,0,-1032.616173709516,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.20843535324568,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,4,3,0,941,486046.8500257325,195142.2962288666,0,0,1578.6163102788 -3923,4885,8814,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.5797745962764,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.977895783642389,0,54,45,-9,-9,8,1,1,0,0,0,11,1,1,216,-71831.97435752602,0,108136.8721939047,0,1327.258556931336 -3924,4886,8815,-9,8816,8818,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.690212305544,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,1133.75,131924.0327497718,100177.3634798727,0,0,3558.622502319779 -3924,4886,8816,8818,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,13,-3,.506973300471028,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.15,56.92,8.333333333333334,1,1,0,0,2,8,5,1,1133.75,131924.0327497718,100177.3634798727,0,0,3558.622502319779 -3924,4886,8817,-9,8816,8818,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.4451186418617,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1133.75,131924.0327497718,100177.3634798727,0,0,3558.622502319779 -3924,4886,8818,8816,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.95433243145372,9.166853990402904,0,13,3,60.24296208886538,0,2,2,2019,11,0,45,50,1,0,0,22.01376451266445,22.01376451266445,0,0,0,0,0,0,0,0,4.847391810720767,0,43.15,56.92,54.1,59.11,6.666666666666667,1,1,0,0,10,8,5,1,1133.75,131924.0327497718,100177.3634798727,0,0,3558.622502319779 -3925,4887,8819,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.9222288241443,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,23.98,39.32,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,2666,-44910.7863118233,0,0,0,2234.828073654949 -3925,4888,8820,-9,8819,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1031.347124643657,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.7583546474114987,0,60.2,29.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,781,193437.5985907094,-117858.045522444,0,0,294.1935235770832 -3926,4889,8821,8822,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.76212933464527,7.599921664008443,0,6,0,42.850124912806,0,-9,-9,2019,24,11,49,45,1,11,0,5.292413427689533,5.292413427689533,0,0,0,0,7,0,0,0,0,0,35.2,50.61,39.08,47.28,1.666666666666667,1,1,0,0,9,1,4,1,2742,459172.981751876,-53866.11958190323,264878.3904275165,60708.64812726127,2030.399098739083 -3926,4889,8822,8821,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,7.50629788416121,7.330698242987451,0,6,0,-17.83810361773278,0,2,2,2019,12,0,20,20,1,0,0,10.44398409822357,10.44398409822357,0,0,0,0,7,0,0,0,0,0,39.08,47.28,35.2,50.61,3.333333333333333,1,1,0,0,9,1,4,1,2742,459172.981751876,-53866.11958190323,264878.3904275165,60708.64812726127,2030.399098739083 -3927,4890,8823,8824,-9,-9,1,1,61,0,0,0,2,2,-9,1,3,6.214398679815321,5.9738735595215,0,33,4,35.77559827383613,0,-9,-9,2019,11,1,8,8,1,1,0,6.911936151625428,6.911936151625428,0,0,0,0,7,1,1,0,0,0,43.96,34.98,38.87,17.61,8.333333333333334,1,1,0,0,6,6,3,1,1837.5,355895.8730108223,47507.97380891352,196107.2261156644,0,1700.968930529038 -3927,4890,8824,8823,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,7.920016620285011,7.892093615759174,0,33,-4,-49.42256630275764,0,-9,-9,2019,11,1,36,36,1,1,0,7.151253791911085,7.151253791911085,0,0,0,0,2,1,1,0,0,0,38.87,17.61,43.96,34.98,5,1,1,0,0,10,6,3,1,1837.5,355895.8730108223,47507.97380891352,196107.2261156644,0,1700.968930529038 -3928,4891,8825,-9,8829,8828,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.833488908818,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3928,4891,8826,-9,8829,8828,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-994.8896603442009,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3928,4891,8827,-9,8829,8828,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.4106809768457,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3928,4891,8828,8829,-9,-9,1,1,49,0,4,0,2,2,-9,0,2,8.958546594122922,9.132920223859857,0,18,12,67.29448017453184,0,2,2,2019,23,11,35,35,1,11,0,27.00578204018151,27.00578204018151,0,0,0,0,0,1,1,0,0,0,34.06,38.71,44.11,55.31,5,1,1,0,0,5,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3928,4891,8829,8828,-9,-9,1,0,37,0,4,0,1,1,-9,0,3,7.807889020329573,7.87722027261084,0,18,-12,-72.45012035986583,0,2,2,2019,15,4,24,18,1,4,0,11.56902225332028,11.56902225332028,0,0,0,0,0,1,1,0,3.101882786144175,0,44.11,55.31,34.06,38.71,10,1,1,0,0,5,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3928,4891,8830,-9,8829,8828,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-993.9413538605238,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,718.5,474268.4689828437,341978.3965618849,180807.7730705601,62114.05164381638,3961.94689976706 -3929,4892,8831,-9,-9,8832,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1136.383581130871,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,5,1,778.3333333333334,587568.1338373163,286173.2398944917,678404.373679354,230722.6001815158,2877.797345084086 -3929,4892,8832,8833,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.908659866758599,8.903732937514283,4.535418827513311,34,0,-148.5641397767867,0,-9,-9,2019,8,0,41,48,1,0,0,21.62480155254746,21.62480155254746,0,0,0,0,0,1,1,0,5.313266196005776,4.961052315881827,54.79,55.86,62.27,42.94,6.666666666666667,2,3,0,0,11,7,5,1,778.3333333333334,587568.1338373163,286173.2398944917,678404.373679354,230722.6001815158,2877.797345084086 -3929,4892,8833,8832,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.949644572339533,6.967371124774175,0,34,0,4.78789878293239,0,-9,-9,2019,7,0,20,20,1,0,0,7.000255451394532,7.000255451394532,0,0,0,0,0,1,1,0,0,0,62.27,42.94,54.79,55.86,8.333333333333334,2,3,0,0,11,7,5,1,778.3333333333334,587568.1338373163,286173.2398944917,678404.373679354,230722.6001815158,2877.797345084086 -3930,4893,8834,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.442532836041575,7.725052176924557,6.191858828458431,0,0,-949.2558167695225,0,-9,-9,2019,9,0,3,15,1,0,0,65.54624170545917,65.54624170545917,0,0,0,0,0,1,1,0,0,6.107611735181931,51.58,50.6,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,586,-140100.3633599469,0,0,0,1476.514631134279 -3930,4894,8835,-9,8834,-9,1,1,20,0,0,0,2,2,-9,0,5,8.589140052599381,8.414570154131761,0,0,0,-1034.161663217724,0,2,-9,2019,16,3,60,50,1,3,1,9.984498204608034,9.984498204608034,0,0,0,0,0,1,1,0,0,0,44.09,36.67,-9,-9,3.333333333333333,1,1,0,0,3,5,5,1,822,114004.8386389253,-64692.70636890591,0,0,2344.257476080134 -3930,4895,8836,-9,8834,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-966.156870166421,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,36.74,51.97,-9,-9,3.333333333333333,1,1,0,1,0,5,1,1,268,0,0,0,0,0 -3931,4896,8837,-9,8839,8838,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.618565535349,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,488.8,363694.0253789671,156140.5021371741,219340.5460405176,127355.6667214898,3269.896644946686 -3931,4896,8838,8839,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.002617929599975,7.915388120490103,0,7,4,103.2465956428943,0,2,2,2019,8,0,50,50,1,0,0,7.320711072561104,7.320711072561104,0,0,0,0,0,1,0,1,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,6,3,1,488.8,363694.0253789671,156140.5021371741,219340.5460405176,127355.6667214898,3269.896644946686 -3931,4896,8839,8838,-9,-9,1,0,35,0,3,0,1,1,-9,0,5,7.954466626712662,8.228184446582969,0,15,-4,-20.42132897013594,0,2,2,2019,8,0,20,16,1,0,0,16.20999975283998,16.20999975283998,0,0,0,0,0,1,0,1,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,6,3,1,488.8,363694.0253789671,156140.5021371741,219340.5460405176,127355.6667214898,3269.896644946686 -3931,4896,8840,-9,8839,8838,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.9531604232244,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,488.8,363694.0253789671,156140.5021371741,219340.5460405176,127355.6667214898,3269.896644946686 -3931,4896,8841,-9,8839,8838,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.7235056850221,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,488.8,363694.0253789671,156140.5021371741,219340.5460405176,127355.6667214898,3269.896644946686 -3932,4897,8842,8843,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,51,-3,-78.13219971971749,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.06,57.76,10,1,1,0,0,0,7,4,1,1696.5,2585117.788652474,837015.3732546209,1037465.330021662,0,4103.527193690528 -3932,4897,8843,8842,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.851117575572436,8.845360527878423,51,3,126.8045584624403,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.633401229774577,57.06,57.76,46.67,55.57,8.333333333333334,1,1,0,0,0,7,4,1,1696.5,2585117.788652474,837015.3732546209,1037465.330021662,0,4103.527193690528 -3933,4898,8844,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.092565869128158,7.305265998949123,0,0,-838.4723382302915,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2555526149804628,7.226072160336665,39.45,56.15,-9,-9,10,1,1,0,0,0,11,3,0,1076,268079.0166796971,360113.7262765552,142614.2930652768,0,1167.063298972369 -3934,4899,8845,-9,8848,8847,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.1426786815399,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,538.75,308629.971306172,83736.5559812969,259605.6141237682,68861.00855011443,4008.064254443871 -3934,4899,8846,-9,8848,8847,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-918.429381853113,-9,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,1,0,0,2,4,1,538.75,308629.971306172,83736.5559812969,259605.6141237682,68861.00855011443,4008.064254443871 -3934,4899,8847,8848,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.765836961967613,8.423174517887936,0,20,6,8.784182234026581,0,2,2,2019,9,1,48,50,1,1,0,12.65224895791839,12.65224895791839,0,0,0,0,14.5,1,1,0,0,0,57.42,46.51,46.5,58.26,8.333333333333334,1,1,0,0,9,2,4,1,538.75,308629.971306172,83736.5559812969,259605.6141237682,68861.00855011443,4008.064254443871 -3934,4899,8848,8847,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.654709419285433,8.322586396026221,0,20,-6,9.049847585236359,0,-9,-9,2019,9,1,38,38,1,1,0,16.42810130868995,16.42810130868995,0,0,0,0,0,1,1,0,0,0,46.5,58.26,57.42,46.51,8.333333333333334,1,1,0,0,9,2,4,1,538.75,308629.971306172,83736.5559812969,259605.6141237682,68861.00855011443,4008.064254443871 -3935,4900,8849,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,3.775194042049182,3.765214678570171,0,0,-970.6829360386839,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.224097345855315,53.31,20.39,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,324,186312.411229636,0,216294.8215210935,0,1688.695511864677 -3936,4901,8850,8851,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.329339580206733,7.784453307994871,35,0,77.81109092719036,0,-9,-9,2019,6,0,0,32,4,0,0,0,0,0,0,0,0,0,0,0,0,7.829267247661765,8.139228277903905,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,11,9,4,1,230,331798.4884385904,159320.675890882,309008.5074298519,170150.7472028712,3218.367074449526 -3936,4901,8851,8850,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.002079970691268,8.114276373760132,0,35,0,89.66824748219595,0,-9,-9,2019,10,1,38,29,1,1,0,11.09246453339861,11.09246453339861,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,12,9,4,1,230,331798.4884385904,159320.675890882,309008.5074298519,170150.7472028712,3218.367074449526 -3937,4902,8852,8856,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.77596762504616,8.619339244929916,0,10,3,-48.10014813303036,0,-9,-9,2019,11,0,42,78,1,0,0,20.39149961936268,20.39149961936268,0,0,0,0,0,1,1,0,1.659582521865002,0,54.27,39.68,52,54.51,8.333333333333334,1,1,0,0,8,2,4,1,636.2,240661.8607692123,77701.48550492506,336093.5608068323,201797.7258907383,3959.2100078424 -3937,4902,8853,-9,8856,8852,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.2155393952398,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,636.2,240661.8607692123,77701.48550492506,336093.5608068323,201797.7258907383,3959.2100078424 -3937,4902,8854,-9,8856,8852,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.116564942693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,636.2,240661.8607692123,77701.48550492506,336093.5608068323,201797.7258907383,3959.2100078424 -3937,4902,8855,-9,8856,8852,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-863.2622965069063,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,636.2,240661.8607692123,77701.48550492506,336093.5608068323,201797.7258907383,3959.2100078424 -3937,4902,8856,8852,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,8.027282718561622,7.917653624336371,0,22,-3,-55.81028289386839,0,2,2,2019,9,0,34,33,1,0,0,10.9143869199109,10.9143869199109,0,0,0,0,0,1,1,0,4.003120786022352,0,52,54.51,54.27,39.68,8.333333333333334,1,1,0,0,12,2,4,1,636.2,240661.8607692123,77701.48550492506,336093.5608068323,201797.7258907383,3959.2100078424 -3938,4903,8857,8858,8861,8860,1,1,29,0,0,0,2,2,-9,0,4,8.096252182954057,8.129903417385616,0,3,5,-9.16552494398308,0,2,2,2019,10,0,38,38,1,1,0,12.74673299193472,12.74673299193472,0,0,0,0,0,0,0,0,0,0,50,57,47,57,7,2,3,0,0,1,8,3,1,1701.5,-10411.20888487687,38667.08415899396,180436.4601222562,76677.94753562298,1790.915275236656 -3938,4903,8858,8857,-9,-9,1,0,24,0,0,0,3,3,-9,0,4,0,0,0,3,-5,-74.84964965039046,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,1701.5,-10411.20888487687,38667.08415899396,180436.4601222562,76677.94753562298,1790.915275236656 -3938,4904,8859,-9,8861,8860,1,1,25,0,0,0,2,2,-9,0,4,8.481013209873245,8.776769024314197,0,0,0,-991.7880100459506,0,2,2,2019,10,0,40,38,1,1,1,16.74557194792965,16.74557194792965,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,5,1,1286,47076.20145512764,23788.21185840306,0,0,2288.723370831887 -3938,4905,8860,8861,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,8.724897142874518,9.452400239142474,0,6,4,-6.274745095217076,0,-9,-9,2019,27,9,38,38,1,9,0,24.11599304880738,24.11599304880738,0,0,0,0,7,0,0,0,0,0,37.39,27.91,51,54,1.666666666666667,2,3,0,0,9,8,4,1,673.5,1080169.983540883,87596.66134852616,707708.1102127766,0,1889.993695353503 -3938,4905,8861,8860,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,32,-4,-2.530937825045217,0,3,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,37.39,27.91,8,2,3,0,0,0,8,4,1,673.5,1080169.983540883,87596.66134852616,707708.1102127766,0,1889.993695353503 -3939,4906,8862,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.726372643605694,7.815376635927932,0,0,-988.5488314172135,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.178570576089695,7.712979424795618,53.71,49.66,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,451,485693.8804047229,435837.5650098082,-57868.20617376624,0,1991.748272505685 -3940,4907,8863,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.813281757942419,7.651831122392087,0,0,-1182.380859241026,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.821506355587764,7.794082653365724,37.46,36.92,-9,-9,3.333333333333333,1,1,0,0,0,4,4,1,885,227023.4801618626,268199.09661661,0,0,2012.46872916039 -3941,4908,8864,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.946569794240879,8.286409627341932,5.339852569553176,0,0,-997.5960742951154,0,-9,3,2019,10,0,43,43,1,0,0,7.805609099116757,7.805609099116757,0,0,0,0,0,0,0,0,0,5.562581248116611,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,766,-119540.4541183837,-95889.47026465941,71009.09581566154,63744.2447059057,1232.177209771334 -3942,4909,8865,8866,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.800500059991855,8.483183183093125,0,2,0,28.42542302688048,0,2,1,2019,5,0,43,42,1,0,0,19.47510447821868,19.47510447821868,0,0,0,0,0,0,0,0,2.958762221747264,0,57.06,57.76,50.3,36.09,8.333333333333334,1,1,0,0,6,9,5,1,477,-106441.6048969012,-5074.450063581127,0,0,3817.829674865 -3942,4909,8866,8865,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.830742789954614,8.513726771565466,0,2,0,-26.98619145702576,-9,-9,-9,2019,11,0,40,0,1,0,0,14.53970161806297,14.53970161806297,0,0,0,0,2,0,0,0,0,0,50.3,36.09,57.06,57.76,8.333333333333334,1,1,0,0,0,9,5,1,477,-106441.6048969012,-5074.450063581127,0,0,3817.829674865 -3943,4910,8867,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.891192680805188,8.422794766360491,7.306576373044325,0,0,-1013.479923348487,0,2,3,2019,6,0,40,30,1,0,0,7.187836638867106,7.187836638867106,0,0,0,0,0,0,0,0,6.882604619809922,7.04485449589021,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,463,286870.1220157957,-2713.075996846899,279076.977889412,0,2083.274434371525 -3944,4911,8868,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.730637464692863,7.651706265318987,0,0,0,-976.3172228943197,0,1,2,2019,15,3,44,25,1,3,0,5.622724541912637,5.622724541912637,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,5,1,1,0,0,4,2,3,0,1223,-261036.7643622554,0,0,0,1309.367022528783 -3945,4912,8869,-9,8873,8874,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-877.7603244772386,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3945,4912,8870,-9,8873,8874,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-912.5461844688604,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3945,4912,8871,-9,8873,8874,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.8233451995475,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3945,4912,8872,-9,8873,8874,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-947.4700531981794,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3945,4912,8873,8874,-9,-9,1,0,27,1,4,0,3,3,-9,0,3,0,0,0,7,-7,-11.18491281878869,0,2,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,46.08,57.2,8.333333333333334,1,1,0,1,0,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3945,4912,8874,8873,-9,-9,1,1,34,1,4,0,2,2,-9,0,3,8.086584609091096,8.292247662979454,0,7,7,61.27300744550682,0,-9,-9,2019,15,3,49,49,1,3,0,6.282728951647053,6.282728951647053,0,0,0,0,0,1,1,0,0,0,46.08,57.2,28.57,61.36,6.666666666666667,1,1,0,1,6,2,2,0,516,236110.8567235751,0,362686.9261607696,170234.2859603801,2352.510019899647 -3946,4913,8875,8876,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,7.149791907466239,7.218519006493022,63,6,-44.55419348870458,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.574202321681779,7.039387199958359,41.41,47.33,54.88,35.34,6.666666666666667,1,1,0,0,0,9,2,1,245.5,786813.1321199818,172384.7941482447,315007.1708845202,0,1557.635828110301 -3946,4913,8876,8875,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,0,0,63,-6,46.41588162733386,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.623131779787935,0,54.88,35.34,41.41,47.33,8.333333333333334,1,1,0,0,0,9,2,1,245.5,786813.1321199818,172384.7941482447,315007.1708845202,0,1557.635828110301 -3947,4914,8877,8878,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,7.824392813807528,7.624388825748479,0,34,1,-9.872122377750877,0,2,1,2019,7,0,44,40,1,0,0,8.508219329212944,8.508219329212944,0,0,0,0,0,0,0,0,0,0,65.69,35.91,54.79,55.86,5,1,1,0,0,8,2,5,1,609.5,1027973.00456912,888809.505653758,143041.1992961003,0,2702.425366210923 -3947,4914,8878,8877,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.480447064163316,8.536296355308249,0,34,-1,-66.88160720651122,0,2,2,2019,5,0,39,39,1,0,0,12.54727642510436,12.54727642510436,0,0,0,0,0,0,0,0,0,0,54.79,55.86,65.69,35.91,8.333333333333334,1,1,0,0,8,2,5,1,609.5,1027973.00456912,888809.505653758,143041.1992961003,0,2702.425366210923 -3947,4915,8879,-9,8878,8877,1,0,21,0,0,0,2,2,-9,0,4,7.821277458151701,7.656094779850694,0,0,0,-938.3585938351755,0,2,2,2019,11,0,36,34,1,2,1,7.394145461543935,7.394145461543935,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,2,3,1,1142,190920.7506331328,0,0,0,1515.258962918054 -3948,4916,8880,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,7.08201188411421,7.311909058430578,0,0,-1028.639124338877,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.6910721831164,7.095412492827335,54.49,13.45,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,416,151029.6498901779,70441.89286202626,0,0,2039.432763155708 -3949,4917,8881,8882,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.927349204313355,7.89834502125738,0,6,-14,-9.680519006098359,0,-9,-9,2019,3,0,38,40,1,0,0,9.864898274874555,9.864898274874555,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.3,52.91,10,2,3,0,0,9,8,4,1,979,787720.0103693241,349880.467750325,271571.8750162629,0,2797.658115657549 -3949,4917,8882,8881,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.10452065508502,8.108219404471106,0,27,14,109.9107542124911,0,3,3,2019,6,0,42,40,1,0,0,14.03504079251287,14.03504079251287,0,0,0,0,0,0,0,0,0,0,58.3,52.91,60.12,54.8,10,2,3,0,0,9,8,4,1,979,787720.0103693241,349880.467750325,271571.8750162629,0,2797.658115657549 -3949,4918,8883,-9,8881,8882,1,0,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-992.5229904925183,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.35,57.84,-9,-9,1.666666666666667,2,3,0,0,1,8,1,1,673,10525.28379448745,0,0,0,112.2918547685738 -3949,4919,8884,-9,8881,8882,1,1,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-977.918667046019,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,555,-251745.6707114516,0,0,0,228.0228686406231 -3950,4920,8885,-9,8887,8886,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-936.1724805288482,-9,1,1,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,32.74,55.08,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,856.3333333333334,735719.6139458306,7900.30293098598,1024170.602970703,434617.9588776574,5728.42771781957 -3950,4920,8886,8887,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,9.578688917472888,9.293485287040083,0,28,0,-104.0438411951149,0,1,1,2019,8,0,50,46,1,0,0,32.66502913410041,32.66502913410041,0,0,0,0,0,0,0,0,4.539519040080875,0,48.77,60.16,40.64,52.96,1.666666666666667,1,1,0,0,8,9,5,1,856.3333333333334,735719.6139458306,7900.30293098598,1024170.602970703,434617.9588776574,5728.42771781957 -3950,4920,8887,8886,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,9.10744034461054,9.076553346529955,0,28,0,50.63927211256655,-9,3,3,2019,24,12,30,0,1,12,0,30.70020099294274,30.70020099294274,0,0,0,0,0,0,0,0,3.092514685379835,0,40.64,52.96,48.77,60.16,8.333333333333334,4,2,0,0,12,9,5,1,856.3333333333334,735719.6139458306,7900.30293098598,1024170.602970703,434617.9588776574,5728.42771781957 -3950,4921,8888,-9,8887,8886,1,0,20,0,1,1,2,0,0,0,3,0,5.413762219222451,5.340771134337478,0,0,-997.069708861083,-9,1,1,2019,27,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,4.934829755433513,0,37.78,56.98,-9,-9,8.333333333333334,4,2,0,0,1,9,2,1,127,75296.8401330112,0,0,0,132.467366071476 -3951,4922,8889,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,6.266886472026747,6.305672240748827,0,0,-1061.150391290069,0,3,3,2019,14,3,0,30,4,3,0,0,0,0,0,0,0,0,0,0,0,0,6.346538280137111,49.07,50.55,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,598,241657.5860744136,316041.7493766739,79358.34519673449,40265.91191751153,-47.71223997156881 -3952,4923,8890,-9,8893,8892,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.3970555416797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1028.25,280188.5627714625,54320.88231705713,273130.4568813887,71613.89180393596,2575.401517602122 -3952,4923,8891,-9,8893,8892,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.030493950778,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1028.25,280188.5627714625,54320.88231705713,273130.4568813887,71613.89180393596,2575.401517602122 -3952,4923,8892,8893,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.844119549205274,8.788501651529286,0,13,3,103.4095193846478,0,2,1,2019,10,0,39,38,1,0,0,24.06430130616275,24.06430130616275,0,0,0,.7345588292694369,0,1,1,0,0,0,54.2,57.49,55.35,41.97,8.333333333333334,2,3,0,0,7,4,4,1,1028.25,280188.5627714625,54320.88231705713,273130.4568813887,71613.89180393596,2575.401517602122 -3952,4923,8893,8892,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,0,0,0,13,-3,102.2013201139148,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.35,41.97,54.2,57.49,8.333333333333334,2,3,0,0,7,4,4,1,1028.25,280188.5627714625,54320.88231705713,273130.4568813887,71613.89180393596,2575.401517602122 -3953,4924,8894,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1017.165230330115,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.442895377046455,0,60.02,56.42,-9,-9,6.666666666666667,1,1,0,0,4,4,1,1,1063,554995.8291904641,422064.4416567272,0,0,675.3329191243042 -3954,4925,8895,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,6.744529687235626,6.835336840547072,0,0,-968.570287958267,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,4.168277995944095,8.392397455260973,0,0,1,1,0,1.988098271828529,7.386104453393127,51.83,25.73,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,1649,432585.2291950266,115848.0349595008,197408.0341281697,0,1392.889100602646 -3955,4926,8896,8897,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,3.802763665180637,3.848232570539305,52,2,22.06402110099279,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,3.733118452116956,35.49,28.44,53.47,48.39,6.666666666666667,1,1,0,0,0,2,2,1,217,1028841.676828164,255573.0544853243,481691.1311548222,0,2198.511527736844 -3955,4926,8897,8896,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.373308144655781,7.373221568639419,0,52,-2,101.9581986274179,0,3,3,2019,9,0,30,30,1,0,0,8.082555386783609,8.082555386783609,0,0,0,0,2,1,1,0,0,0,53.47,48.39,35.49,28.44,8.333333333333334,1,1,0,0,9,2,2,1,217,1028841.676828164,255573.0544853243,481691.1311548222,0,2198.511527736844 -3956,4927,8898,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.628668338865804,7.879473083458255,0,0,-1127.293250741838,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.217538111399112,7.410272187440984,66.14,28.74,-9,-9,10,1,1,0,0,0,10,3,1,138,681790.0975014904,318680.658098963,324298.614431522,0,1061.341735003398 -3957,4928,8899,8900,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,5.08521936208257,4.887895756887588,9,9,-42.38439041006924,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.40112587469274,5.401394245560922,54.89,51.69,50.27,44.25,10,1,1,0,0,0,10,2,1,915.5,-75248.1267090351,-23917.24312925449,0,0,1059.486090477387 -3957,4928,8900,8899,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.114420414656251,6.666434539412545,9,0,-39.73611195785553,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.117848161653913,6.776347236641937,50.27,44.25,54.89,51.69,8.333333333333334,1,1,0,0,0,10,2,1,915.5,-75248.1267090351,-23917.24312925449,0,0,1059.486090477387 -3958,4929,8901,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,1,0,0,0,0,0,-985.5465252545475,0,3,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.72,22.57,-9,-9,0,1,1,0,1,0,9,1,0,2932,-55995.86083704123,124171.0224544626,0,0,115.9252981891562 -3958,4930,8902,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-928.5097979680539,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,37.59,22.34,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,505,197183.892823772,0,0,0,2244.80460382091 -3959,4931,8903,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-931.5777456719578,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.784280580136306,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,455,121678.1752536523,0,0,0,1722.681505364114 -3960,4932,8904,8905,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.384878698821803,8.215434805026366,0,3,1,8.579783894136687,0,2,2,2019,8,0,36,45,1,0,0,13.38713822256461,13.38713822256461,0,0,0,.0157807776951007,2,0,0,0,0,0,44.19,58.01,50.48,56.4,8.333333333333334,1,1,0,0,7,11,5,1,1200.5,564643.475954924,510954.208090059,254261.6925157028,88124.0087348972,4502.306885525184 -3960,4932,8905,8904,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.997454892038734,9.130465684332918,0,3,-1,-107.3799610123767,0,3,3,2019,9,0,60,65,1,0,0,18.18784680712105,18.18784680712105,0,0,0,0,0,0,0,0,.7601548572107912,0,50.48,56.4,44.19,58.01,8.333333333333334,1,1,0,0,8,11,5,1,1200.5,564643.475954924,510954.208090059,254261.6925157028,88124.0087348972,4502.306885525184 -3960,4933,8906,-9,8904,8905,1,1,19,0,1,0,2,2,-9,0,4,7.2763426275526,7.300555198691107,0,0,0,-1073.755871119193,0,2,1,2019,11,0,38,0,1,2,1,3.28348026572094,3.28348026572094,0,0,0,0,0,0,0,0,1.253972502225888,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,1212,0,0,0,0,880.1756901192155 -3961,4934,8907,8908,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.795668337906159,7.956288370872958,34,-1,-45.75840139453933,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,8.610947011109781,7.87283163652809,62.57,40.11,50.95,56.4,8.333333333333334,1,1,0,0,6,4,4,1,1621.5,2081620.542117558,1523336.990939732,200983.4483299961,0,7304.519586947787 -3961,4934,8908,8907,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,7.690832881107593,7.684974293469113,34,1,29.79935082052161,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.133950171204429,7.695736639145069,50.95,56.4,62.57,40.11,8.333333333333334,1,1,0,0,9,4,4,1,1621.5,2081620.542117558,1523336.990939732,200983.4483299961,0,7304.519586947787 -3961,4935,8909,-9,8907,8908,1,1,22,0,0,0,1,1,-9,0,2,0,0,0,0,0,-959.4779989492259,0,1,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.5592075492635846,0,36.6,54.12,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,383,-170900.0268582378,0,0,0,81.95376128885967 -3962,4936,8910,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,7.873109770972423,7.757222013308037,0,0,0,-1031.336624832766,-9,2,2,2019,11,0,50,0,1,0,0,4.406209058691594,4.406209058691594,0,0,0,.8596053110672823,0,0,0,0,0,0,51.14,60.45,-9,-9,5,1,1,0,0,10,10,3,0,422,670492.9161153298,212048.233257471,219054.841017625,0,1240.457774314458 -3962,4937,8911,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.503991205837929,8.568477242663683,0,0,0,-1069.38199837679,-9,-9,-9,2019,18,7,52,0,1,7,0,7.73322366554487,7.73322366554487,0,0,0,0,7,0,0,0,1.968040789278268,0,34.23,58.68,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,1441,274942.8965070788,22980.09798574431,199277.8767678927,-10131.11269424098,2000.624340661772 -3962,4938,8912,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.711290741228025,7.884107449273255,0,0,0,-1125.815272869238,-9,2,2,2019,6,0,37,0,1,0,0,6.766943718796471,6.766943718796471,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,1299,-182199.094093938,44652.98599849006,0,0,1168.16732396923 -3963,4939,8913,-9,8914,8915,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.3950514275334,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,424.5,1002241.185460354,921383.2970313942,209233.1362855218,87051.06935200197,3266.791129951958 -3963,4939,8914,8915,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.302311795115518,7.248909438089678,4.257802408636747,15,-2,-53.25414295443326,0,2,2,2019,14,2,22,23,1,2,0,9.474914815125763,9.474914815125763,0,0,0,0,7,1,1,0,4.730348557523717,0,46.16,53.09,41.17,59.31,6.666666666666667,1,1,0,0,8,1,4,0,424.5,1002241.185460354,921383.2970313942,209233.1362855218,87051.06935200197,3266.791129951958 -3963,4939,8915,8914,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.896573840588612,8.700283532234119,0,7,2,3.722851001899434,0,2,2,2019,7,0,70,65,1,0,0,13.88814893778268,13.88814893778268,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.16,53.09,8.333333333333334,1,1,0,0,6,1,4,0,424.5,1002241.185460354,921383.2970313942,209233.1362855218,87051.06935200197,3266.791129951958 -3963,4939,8916,-9,8914,8915,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.994364934541,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,424.5,1002241.185460354,921383.2970313942,209233.1362855218,87051.06935200197,3266.791129951958 -3963,4940,8917,-9,8914,8915,1,0,19,0,2,0,2,2,1,0,4,7.396654958276294,7.14699695325985,0,0,0,-1000.944543322796,-9,2,2,2019,8,0,40,0,1,0,1,4.532289324549908,4.532289324549908,0,0,0,0,0,1,1,0,0,0,47.38,57.75,-9,-9,1.666666666666667,1,1,0,0,2,1,3,0,1065,-174601.7346931179,-133982.3455134562,0,0,684.8656201516493 -3964,4941,8918,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-869.3508057832878,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.03,35.59,-9,-9,6.666666666666667,1,1,1,0,5,11,1,0,585,-97727.74999996727,0,0,0,1216.907778433825 -3965,4942,8919,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.471267953174477,8.27655171930893,0,0,0,-911.0984573227869,0,3,2,2019,18,7,37,37,1,7,0,11.69872270428119,11.69872270428119,0,0,0,0,0,0,0,0,5.770628966346685,0,46.95,59.37,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,529,-72399.25405713264,0,85548.11249532719,0,1769.177084543867 -3966,4943,8920,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,.2136641283111933,.0215487558859692,0,0,-966.6695954379236,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.185309273406304,.451984589811109,62.49,55.09,-9,-9,10,4,5,0,0,0,8,2,1,135,90689.56392674329,-6011.227671658002,151305.2127427713,0,1429.669319179919 -3967,4944,8921,8922,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.332131457048826,8.401936706351284,0,31,-2,-7.060920353849541,0,3,2,2019,11,2,45,45,1,2,0,10.83948890663933,10.83948890663933,0,0,0,0,0,0,0,0,4.720027432376245,0,50,49,48.3,41.76,6.666666666666667,1,1,0,0,12,5,4,1,495.5,781122.741354774,637425.6879312551,392247.9125697982,161818.7640683349,2673.795108217702 -3967,4944,8922,8921,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.750899083451962,7.724333866668107,0,30,2,-11.71110109826637,0,-9,-9,2019,12,4,15,20,1,4,0,15.29042070035137,15.29042070035137,0,0,0,0,0,0,0,0,0,0,48.3,41.76,50,49,0,1,1,0,0,13,5,4,1,495.5,781122.741354774,637425.6879312551,392247.9125697982,161818.7640683349,2673.795108217702 -3968,4945,8923,8924,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.762112384725351,7.596840267678399,7,2,184.4924461178364,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.320442910767138,7.856275547095891,59.29,49.68,45.46,52.15,8.333333333333334,1,1,0,0,0,2,3,1,561.5,830568.3256700556,374212.8522810476,232024.0179194253,0,1713.174574101255 -3968,4945,8924,8923,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,7,-2,52.18641647279296,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.157941186343613,0,45.46,52.15,59.29,49.68,6.666666666666667,1,1,0,0,3,2,3,1,561.5,830568.3256700556,374212.8522810476,232024.0179194253,0,1713.174574101255 -3969,4946,8925,-9,8926,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1133.822856105343,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,1160,-13395.97216266063,-6849.026226834292,0,0,1966.873043125924 -3969,4946,8926,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.489457062022669,8.599585731259493,0,0,0,-751.408902623351,0,-9,-9,2019,12,2,38,42,1,2,0,11.65250986828973,11.65250986828973,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,5,3,4,0,0,2,8,3,0,1160,-13395.97216266063,-6849.026226834292,0,0,1966.873043125924 -3969,4947,8927,-9,8926,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1070.479548221568,-9,2,-9,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,44.64,53.76,-9,-9,5,3,4,0,0,1,8,1,0,669,-31005.70032303462,0,0,0,0 -3970,4948,8928,8929,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.152603223305825,8.276753211630961,0,6,7,-137.6115071957693,0,2,1,2019,8,0,42,40,1,0,0,9.974077078026269,9.974077078026269,0,0,0,0,2,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,7,5,1,583.5,613438.2849819094,93577.92028988511,214927.1311642425,43940.29842734808,3613.486499078661 -3970,4948,8929,8928,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.628590426857722,8.461411485288568,0,6,-7,-63.87434032055458,0,2,2,2019,6,0,8,35,1,0,0,69.61496571952917,69.61496571952917,0,0,0,0,0,0,0,0,5.015445140010993,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,5,7,5,1,583.5,613438.2849819094,93577.92028988511,214927.1311642425,43940.29842734808,3613.486499078661 -3971,4949,8930,-9,-9,-9,1,0,69,0,1,0,3,3,-9,0,4,0,5.670233720139885,5.638844378095511,0,0,-941.2343128029497,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.464002308025459,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,620,162351.1050010525,109403.5535582018,68256.95786165219,0,977.3631702220914 -3971,4950,8931,8933,8930,-9,1,1,45,0,1,0,2,2,-9,0,4,8.874084033807854,8.931077355595164,0,6,-6,29.72453194699904,0,2,2,2019,13,1,40,46,1,1,0,22.15449589452949,22.15449589452949,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.16,56.15,5,1,1,0,0,7,10,5,1,557,672569.2848230017,566350.1119021312,0,0,4454.399813762678 -3971,4950,8932,-9,8933,8931,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.6190498462729,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,557,672569.2848230017,566350.1119021312,0,0,4454.399813762678 -3971,4950,8933,8931,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.815849079729064,8.66742621902274,0,6,6,-51.87664590870016,0,2,2,2019,7,0,40,40,1,0,0,22.72218761578866,22.72218761578866,0,0,0,0,0,1,1,0,.8121409506554287,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,7,10,5,1,557,672569.2848230017,566350.1119021312,0,0,4454.399813762678 -3972,4951,8934,-9,8935,8937,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.266077239716,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,12,2,0,326.4,571882.1799823765,-24790.58500196224,442424.3213866063,5916.387679434443,719.1493949399824 -3972,4951,8935,8937,-9,-9,1,0,45,0,2,0,1,1,0,0,4,0,0,0,14,2,-20.52373132284509,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.683348225882917,0,60.12,54.8,59.19,51.29,6.666666666666667,2,3,0,0,1,12,2,0,326.4,571882.1799823765,-24790.58500196224,442424.3213866063,5916.387679434443,719.1493949399824 -3972,4951,8936,-9,8935,8937,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.545708428693,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,12,2,0,326.4,571882.1799823765,-24790.58500196224,442424.3213866063,5916.387679434443,719.1493949399824 -3972,4951,8937,8935,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,7.393330573000666,7.595065033251653,0,14,-2,-99.21310940717034,0,2,2,2019,8,0,4,20,1,0,0,58.624135288502,58.624135288502,0,0,0,0,0,0,0,0,2.878718805089652,0,59.19,51.29,60.12,54.8,6.666666666666667,2,3,0,0,10,12,2,0,326.4,571882.1799823765,-24790.58500196224,442424.3213866063,5916.387679434443,719.1493949399824 -3972,4951,8938,-9,8935,8937,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-998.3749582311933,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,6.666666666666667,2,3,0,0,0,12,2,0,326.4,571882.1799823765,-24790.58500196224,442424.3213866063,5916.387679434443,719.1493949399824 -3973,4952,8939,8943,-9,-9,1,1,30,2,3,0,2,2,-9,0,4,8.449990277525368,7.833851135984524,0,4,0,70.59641223449026,0,2,2,2019,9,0,47,43,1,0,0,6.983828686190135,6.983828686190135,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.66,54.88,8.333333333333334,1,1,0,0,9,2,3,0,764.4,-136437.9292142884,0,0,0,3698.137093166012 -3973,4952,8940,-9,8943,8939,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.44554995992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,764.4,-136437.9292142884,0,0,0,3698.137093166012 -3973,4952,8941,-9,8943,8939,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.184149363574,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,764.4,-136437.9292142884,0,0,0,3698.137093166012 -3973,4952,8942,-9,8943,-9,1,1,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-769.8068719098917,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,764.4,-136437.9292142884,0,0,0,3698.137093166012 -3973,4952,8943,8939,-9,-9,1,0,30,2,3,0,2,2,-9,0,3,7.395497572941117,7.360653811240732,0,4,0,31.24757552980558,0,-9,-9,2019,12,0,19,30,1,0,0,10.54405811958174,10.54405811958174,0,0,0,0,0,1,1,0,0,0,51.66,54.88,51.24,58.84,8.333333333333334,1,1,0,0,3,2,3,0,764.4,-136437.9292142884,0,0,0,3698.137093166012 -3974,4953,8944,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,7.938574590137613,7.893889272901746,0,0,-900.9039373161619,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.864189854556544,57.06,57.76,-9,-9,0,1,1,0,0,0,10,4,1,507,1256332.948652023,322928.0331392612,448576.1872345019,0,2215.403835174016 -3975,4954,8945,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.206929693017046,7.339436483928109,0,0,0,-1070.124764426041,-9,3,2,2019,11,0,22,0,1,0,0,8.57188204949693,8.57188204949693,0,0,0,0,2,1,0,1,0,0,42.28,52.7,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,277,115902.0039643927,40897.16086335351,150058.6466537988,22255.06127962094,1261.955579828753 -3975,4955,8946,-9,8945,-9,1,1,21,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1134.02831629412,-9,2,-9,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,36.44,44.52,-9,-9,5,1,1,1,0,0,12,1,1,1119,-140011.9168962399,0,0,0,380.2388298724793 -3976,4956,8947,-9,8950,8948,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1180.584750666429,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,418.5,724190.1957783772,234922.8481349513,598643.8439771947,250576.0116053099,4563.2617676494 -3976,4956,8948,8950,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.401600816518728,8.668120694324342,0,18,5,-37.94031752524582,0,3,3,2019,13,1,40,46,1,1,0,15.02436048411056,15.02436048411056,0,0,0,0,2,1,1,0,2.343179118885251,0,49.34,47.5,30.81,60.19,6.666666666666667,1,1,0,0,10,7,5,1,418.5,724190.1957783772,234922.8481349513,598643.8439771947,250576.0116053099,4563.2617676494 -3976,4956,8949,-9,8950,8948,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.220256565166,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,418.5,724190.1957783772,234922.8481349513,598643.8439771947,250576.0116053099,4563.2617676494 -3976,4956,8950,8948,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.517297529561164,8.836622143325995,0,18,-5,-12.72783893753648,0,2,2,2019,23,11,30,38,1,11,0,26.4736908864129,26.4736908864129,0,0,0,0,0,1,1,0,0,0,30.81,60.19,49.34,47.5,3.333333333333333,1,1,0,0,11,7,5,1,418.5,724190.1957783772,234922.8481349513,598643.8439771947,250576.0116053099,4563.2617676494 -3977,4957,8951,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.269280425104719,6.72465209586011,0,0,-1008.800922593061,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.199903592119484,6.968808208646859,49.44,54.26,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,694,827384.7644282074,292185.0388685606,390775.9556987929,0,1264.977569008749 -3978,4958,8952,-9,8954,8953,1,0,26,0,0,0,1,1,-9,0,4,8.464783789473353,8.149180913075174,0,0,0,-961.6305808260543,0,2,2,2019,5,0,46,48,1,0,1,9.749423798945317,9.749423798945317,0,0,0,0,0,1,1,0,3.01199164262139,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1131,196384.6646317906,155559.1319130796,0,0,1326.42191034232 -3978,4959,8953,8954,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,8.25245293863796,8.362984332101542,2,0,42.79809298620013,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.702297416022249,8.493770722511861,55.57,15.51,49,48,6.666666666666667,1,1,0,0,0,13,5,1,632,2482780.480378877,2055081.056582218,187734.172418304,0,5358.335192738254 -3978,4959,8954,8953,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.666578695888562,8.419415159842764,0,2,0,-63.5572702465181,-9,-9,-9,2019,11,0,38,0,1,2,0,16.27111112301241,16.27111112301241,0,0,0,0,0,1,1,0,0,0,49,48,55.57,15.51,7,4,1,0,0,1,13,5,1,632,2482780.480378877,2055081.056582218,187734.172418304,0,5358.335192738254 -3979,4960,8955,8956,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.956960182097278,8.260376889381877,0,27,5,10.43740335913152,0,3,3,2019,11,0,45,45,1,0,0,7.687586473659682,7.687586473659682,0,0,0,0,0,1,1,0,0,0,61.07,38.16,48.88,27.18,6.666666666666667,1,1,0,0,13,5,3,1,449,47713.46327379346,25068.0019377463,0,0,1713.81789215726 -3979,4960,8956,8955,-9,-9,1,0,44,0,1,0,2,2,-9,1,3,0,0,0,27,-5,-20.99611725855872,-9,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,48.88,27.18,61.07,38.16,5,1,1,0,0,0,5,3,1,449,47713.46327379346,25068.0019377463,0,0,1713.81789215726 -3980,4961,8957,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,5.623753310348154,5.751040540851045,0,0,-958.6374071010772,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,12.81225979175773,0,0,1,1,0,2.098628375985197,5.453618684098514,53,44,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,527,438907.4023343668,14016.97810082264,271628.6256010668,0,363.9275732068254 -3981,4962,8958,8959,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.773824992750059,8.90550075800148,0,6,-5,-73.39603776136735,0,1,1,2019,11,0,50,50,1,0,0,11.44107423555962,11.44107423555962,0,0,0,0,2,0,0,0,2.2683544447209,0,48.87,58.55,57.06,57.76,6.666666666666667,1,1,0,0,7,7,5,1,609,95395.07744183359,113811.931206079,0,0,4364.18367432374 -3981,4962,8959,8958,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.692183208217733,8.859889821865449,0,6,5,99.83794883773149,0,-9,-9,2019,3,0,35,42,1,0,0,23.50270042440682,23.50270042440682,0,0,0,0,0,0,0,0,.2677778018492544,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,8,7,5,1,609,95395.07744183359,113811.931206079,0,0,4364.18367432374 -3982,4963,8960,8961,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.055550132972842,8.20810750426649,3.509300901800852,3,-3,41.32100719700576,0,1,1,2019,10,0,50,50,1,0,0,6.11175322484092,6.11175322484092,0,0,0,0,0,0,0,0,3.411785974438373,0,50.43,53.69,49,58,8.333333333333334,1,1,0,0,3,5,5,0,305,-19591.64553716215,72302.25862245829,113164.9512709685,78914.04359276779,4101.121931222368 -3982,4963,8961,8960,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.26096729139875,8.072377304696179,0,3,3,-.5624425597586054,0,-9,-9,2019,10,0,60,38,1,1,0,7.005429378745395,7.005429378745395,0,0,0,0,0,0,0,0,0,0,49,58,50.43,53.69,7,4,1,0,0,1,5,5,0,305,-19591.64553716215,72302.25862245829,113164.9512709685,78914.04359276779,4101.121931222368 -3983,4964,8962,-9,8963,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1025.18779244926,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.058267502600615,0,45,59,-9,-9,7,4,2,0,0,0,5,5,1,305,155462.1654818835,27.66434901309913,0,0,2473.560590155274 -3983,4964,8963,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.577180229441462,8.697737107237703,0,0,0,-1004.939985507948,-9,2,2,2019,8,0,45,0,1,0,0,13.74034793890148,13.74034793890148,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,305,155462.1654818835,27.66434901309913,0,0,2473.560590155274 -3984,4965,8964,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1051.528532716614,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,29.69,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,499,145370.0943461578,0,92086.7132183956,0,1117.028268312009 -3985,4966,8965,8966,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,9.720186264192352,9.389758996599694,0,24,1,55.89987202492483,0,-9,-9,2019,6,0,105,40,1,0,0,20.28663308347498,20.28663308347498,0,0,0,0,2,0,0,0,5.863146334105249,0,52.88,56.68,46.44,59.62,8.333333333333334,1,1,0,0,10,12,5,1,409.5,347080.1018012476,220614.8762689065,233626.6167887828,160313.7880996628,6062.107695119443 -3985,4966,8966,8965,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,0,0,0,23,-1,2.618162126156086,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,3.155595179427152,0,46.44,59.62,52.88,56.68,8.333333333333334,1,1,0,0,2,12,5,1,409.5,347080.1018012476,220614.8762689065,233626.6167887828,160313.7880996628,6062.107695119443 -3985,4966,8967,-9,8966,8965,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1005.839472266874,-9,1,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,2,0,0,0,0,0,52.18,59.93,-9,-9,10,1,1,0,0,1,12,5,1,409.5,347080.1018012476,220614.8762689065,233626.6167887828,160313.7880996628,6062.107695119443 -3985,4966,8968,-9,8966,8965,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1126.1508688759,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,12,5,1,409.5,347080.1018012476,220614.8762689065,233626.6167887828,160313.7880996628,6062.107695119443 -3986,4967,8969,8970,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.98578520068687,9.830703576859671,0,13,-19,-11.12375121765225,0,3,1,2019,12,0,37,38,1,0,0,57.36846848449674,57.36846848449674,0,0,0,0,0,0,0,0,9.616392673408754,0,48.87,58.55,51.73,58.82,8.333333333333334,1,1,0,0,11,10,5,1,721,912334.8158259286,80392.404036851,472736.8849697015,0,19065.39892054912 -3986,4967,8970,8969,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.70542637870075,9.739830851295356,0,13,19,21.10951149379722,0,1,2,2019,10,0,40,40,1,0,0,47.03853703096122,47.03853703096122,0,0,0,0,0,0,0,0,4.246833031355303,0,51.73,58.82,48.87,58.55,8.333333333333334,1,1,0,0,11,10,5,1,721,912334.8158259286,80392.404036851,472736.8849697015,0,19065.39892054912 -3987,4968,8971,8972,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.076511558475463,7.893027390917221,0,24,-8,62.47014134023497,0,2,3,2019,10,0,45,46,1,0,0,7.122498365521536,7.122498365521536,0,0,0,0,2,1,1,0,0,0,40.04,55.92,43.66,32.73,8.333333333333334,1,1,0,0,5,6,3,0,443,220861.5875732074,-3055.456206956064,178276.0797550319,4123.940352456133,1857.005851109442 -3987,4968,8972,8971,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,0,0,0,24,8,11.17292846152979,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.66,32.73,40.04,55.92,5,1,1,0,0,0,6,3,0,443,220861.5875732074,-3055.456206956064,178276.0797550319,4123.940352456133,1857.005851109442 -3988,4969,8973,-9,-9,8975,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.236620967485,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,2626.333333333333,207033.5590952823,0,253343.6720729483,3993.644090344461,6310.087610601934 -3988,4969,8974,-9,-9,8975,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.934703143864,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,2626.333333333333,207033.5590952823,0,253343.6720729483,3993.644090344461,6310.087610601934 -3988,4969,8975,-9,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,9.135435788192305,9.289641214214287,6.502235797407825,0,0,-883.3389668247238,0,-9,-9,2019,12,1,50,80,1,1,0,22.90874831256025,22.90874831256025,0,0,0,0,0,1,1,0,7.954673642617962,6.31700485185708,43.69,59.95,-9,-9,8.333333333333334,1,1,0,0,5,7,5,1,2626.333333333333,207033.5590952823,0,253343.6720729483,3993.644090344461,6310.087610601934 -3989,4970,8976,-9,8977,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.1082446747623,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,689,-28995.78607785819,58142.21018338366,135030.8944926232,100266.1377872342,2629.770910397368 -3989,4970,8977,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,9.051446674844279,9.254962262580454,0,0,0,-947.2921187331115,0,2,2,2019,3,0,44,43,1,0,0,17.28929408663242,17.28929408663242,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,5,5,1,689,-28995.78607785819,58142.21018338366,135030.8944926232,100266.1377872342,2629.770910397368 -3990,4971,8978,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,9.362925641314785,9.233794725532599,0,0,0,-970.6282723261348,0,1,1,2019,10,1,44,48,1,1,0,33.74173817105684,33.74173817105684,0,0,0,0,0,0,0,0,2.171675680493095,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,1085,873961.4005792757,510030.6233171079,178316.8203766699,0,2515.898159500477 -3991,4972,8979,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.62316956766803,7.664500141636942,0,0,-996.3456866775997,0,2,2,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,4.375862509295095,7.637823279956529,50.6,51,-9,-9,5,1,1,0,0,12,5,3,1,469,629487.9007461047,451545.3402108752,205760.6169697703,-18007.80633962687,1546.349108978131 -3992,4973,8980,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,7.793461149006309,7.624607004657228,0,0,0,-943.7018985491084,-9,2,2,2019,10,0,45,0,1,0,0,4.336718471848052,4.336718471848052,0,0,0,0,0,1,1,0,0,0,51.92,47.86,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,1482,375395.2460687974,121627.724700718,149984.4972055696,0,1512.619028512047 -3993,4974,8981,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.922520838709734,4.828370476505521,0,0,-1102.504839767665,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.807514109366656,4.842232404131437,42.85,40.94,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,498,-43339.68619046779,0,175180.3444554484,0,721.0819703001503 -3994,4975,8982,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.672495571760876,8.149967932106836,0,0,-978.6703338069377,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.362895895281471,7.746290600946533,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,629,806424.0894272767,276937.2609141017,352551.2464555617,0,1740.440064562173 -3995,4976,8983,8984,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.594833918671778,9.500627650828211,0,24,5,79.70324049398516,0,3,2,2019,9,0,40,45,1,1,0,46.49501542227572,46.49501542227572,0,0,0,0,0,0,0,0,4.564866922153827,0,53,55,57.16,56.15,8,1,1,0,0,1,11,5,1,1524.5,4678508.873236491,4558397.308131114,158377.9412033666,0,11286.90070330056 -3995,4976,8984,8983,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,0,0,0,24,-5,-9.594300959282574,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.535029601098907,0,57.16,56.15,53,55,8.333333333333334,1,1,0,0,5,11,5,1,1524.5,4678508.873236491,4558397.308131114,158377.9412033666,0,11286.90070330056 -3996,4977,8985,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-923.8547350535958,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.656605643310592,0,53.51,38.7,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,363,-37485.24320472929,0,0,0,1104.778742643841 -3997,4978,8986,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,5.305498699908557,6.949235504253371,6.695464926648623,0,0,-1018.990770210839,0,2,1,2019,10,0,35,35,1,0,0,.7313235316365782,.7313235316365782,0,0,0,0,0,1,1,0,6.439462834971876,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,563.6666666666666,55243.18108091897,48289.18661441663,0,0,882.0644099025043 -3997,4978,8987,-9,8986,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.788611913487,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,563.6666666666666,55243.18108091897,48289.18661441663,0,0,882.0644099025043 -3997,4978,8988,-9,8986,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.4006867273094,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,563.6666666666666,55243.18108091897,48289.18661441663,0,0,882.0644099025043 -3998,4979,8989,8990,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.080856069971951,8.773284182744973,0,2,12,-133.1333353873268,0,-9,-9,2019,8,0,37,42,1,0,0,28.50931841197552,28.50931841197552,0,0,0,0,0,0,0,0,7.026061065018558,0,49.04,55.86,50.25,56.54,5,1,1,0,0,3,9,5,1,339.5,1406799.024727844,917822.5885121434,274140.8855264832,41677.37863065034,6474.500510884329 -3998,4979,8990,8989,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.869547339063052,9.016494435734238,5.109418039787627,2,-12,106.7965724676817,0,-9,-9,2019,9,0,42,45,1,0,0,18.12341899428635,18.12341899428635,0,0,0,0,0,0,0,0,5.592188356303618,0,50.25,56.54,49.04,55.86,8.333333333333334,1,1,0,0,7,9,5,1,339.5,1406799.024727844,917822.5885121434,274140.8855264832,41677.37863065034,6474.500510884329 -3999,4980,8991,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.378805951986696,6.435289735352641,0,0,-1079.973558971692,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.650281423674032,6.828408929787035,57.16,56.15,-9,-9,0,1,1,0,0,7,9,2,1,206,109879.4518577082,66833.75260271435,185985.0403748082,62980.08139151547,549.6788581304463 -4000,4981,8992,-9,8994,8995,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.684363989305,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,986.5,117303.5475982682,54349.61961738232,327659.3019686354,211358.0540187177,5650.535277154231 -4000,4981,8993,-9,8994,8995,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.377150122087,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,986.5,117303.5475982682,54349.61961738232,327659.3019686354,211358.0540187177,5650.535277154231 -4000,4981,8994,8995,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,0,0,0,13,-1,82.74435051604507,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.26428604225148,0,54.1,59.11,27.23,62.9,8.333333333333334,1,1,0,0,2,9,4,1,986.5,117303.5475982682,54349.61961738232,327659.3019686354,211358.0540187177,5650.535277154231 -4000,4981,8995,8994,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.171543859518215,9.38048155286239,0,13,1,24.06514736678923,0,1,1,2019,20,8,50,50,1,8,0,22.66164577188006,22.66164577188006,0,0,0,0,0,1,1,0,7.737186761495135,0,27.23,62.9,54.1,59.11,6.666666666666667,1,1,0,0,8,9,4,1,986.5,117303.5475982682,54349.61961738232,327659.3019686354,211358.0540187177,5650.535277154231 -4001,4982,8996,8998,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,0,0,0,19,6,57.92136524654053,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.2,52.61,49.46,56.91,5,1,1,0,1,0,5,3,1,1391.666666666667,-142414.4024188417,0,0,0,2234.916800297692 -4001,4982,8997,-9,8996,8998,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-760.1464170437766,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,5,3,1,1391.666666666667,-142414.4024188417,0,0,0,2234.916800297692 -4001,4982,8998,8996,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.525739166110482,8.458974708657674,0,8,-6,20.66187961300029,0,-9,-9,2019,9,0,43,42,1,0,0,15.29996900946627,15.29996900946627,0,0,0,0,7,1,1,0,0,0,49.46,56.91,50.2,52.61,6.666666666666667,1,1,0,0,9,5,3,1,1391.666666666667,-142414.4024188417,0,0,0,2234.916800297692 -4002,4983,8999,-9,9003,9000,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.0830380461786,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,492.2,1389082.354085298,1075546.373817622,306135.0171161999,71186.60373103809,7015.568493298326 -4002,4983,9000,9003,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.875882124192254,8.978022662943509,0,1,0,65.6281578336592,0,2,-9,2019,9,0,57,0,1,0,0,13.68935421502604,13.68935421502604,0,0,0,0,0,0,0,0,0,0,47.22,52.35,25.88,66.73999999999999,8.333333333333334,1,1,0,0,12,12,5,1,492.2,1389082.354085298,1075546.373817622,306135.0171161999,71186.60373103809,7015.568493298326 -4002,4983,9001,-9,9003,9000,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-898.899336438225,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,492.2,1389082.354085298,1075546.373817622,306135.0171161999,71186.60373103809,7015.568493298326 -4002,4983,9002,-9,9003,9000,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-994.9511907668644,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,492.2,1389082.354085298,1075546.373817622,306135.0171161999,71186.60373103809,7015.568493298326 -4002,4983,9003,9000,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,9.416764835783781,9.344814570936613,0,1,0,.5190185221796605,0,1,1,2019,8,0,38,43,1,0,0,31.24735479301507,31.24735479301507,0,0,0,0,0,0,0,0,8.153018025982638,0,25.88,66.73999999999999,47.22,52.35,8.333333333333334,1,1,0,0,13,12,5,1,492.2,1389082.354085298,1075546.373817622,306135.0171161999,71186.60373103809,7015.568493298326 -4003,4984,9004,9005,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.323188162883882,6.142944490400795,9,1,-31.76885963965514,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.216712399878457,6.399856195073472,64.82000000000001,37.68,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,553.5,1083373.778171204,774050.7727309081,98479.62028867946,0,2216.032218498654 -4003,4984,9005,9004,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.501346216990396,7.605970808904381,9,-1,-111.6143786669472,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.124796079878088,7.43237840713579,57.16,56.15,64.82000000000001,37.68,8.333333333333334,1,1,0,0,0,12,3,1,553.5,1083373.778171204,774050.7727309081,98479.62028867946,0,2216.032218498654 -4004,4985,9006,-9,9008,9010,1,1,16,1,4,0,2,2,-9,0,3,0,0,0,0,0,-961.0404763839495,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,42.9,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4985,9007,-9,9008,9010,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-990.0327496142824,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4985,9008,9010,-9,-9,1,0,35,1,4,0,2,2,-9,1,4,0,5.180342696032,5.313931066207426,1,0,-93.89930899694413,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.292392079382374,0,50.4,55.04,49.78,47.32,8.333333333333334,1,1,0,0,0,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4985,9009,-9,9008,9010,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-988.6020200057399,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4985,9010,9008,-9,-9,1,1,44,1,4,0,2,2,-9,0,3,8.257095511685099,8.018195532265404,0,1,9,-53.93956451713735,0,2,2,2019,10,0,38,38,1,0,0,14.93768254053055,14.93768254053055,0,0,0,0,0,1,1,0,8.538460697667412,0,49.78,47.32,50.4,55.04,8.333333333333334,1,1,0,0,10,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4985,9011,-9,9008,9010,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-956.9144207151968,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,679.5,25216.76746362628,37630.57109636419,0,0,3983.405018839754 -4004,4986,9012,-9,9008,9010,1,1,19,1,4,0,2,2,-9,0,5,7.713545027872179,7.719277249671515,0,0,0,-1071.158865279043,0,2,2,2019,1,0,62,58,1,0,1,3.581547473204794,3.581547473204794,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,3,11,3,1,229,-218624.3512838187,9573.955499221753,0,0,653.6641520030635 -4005,4987,9013,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-971.0739209593976,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.91226910493764,0,62.39,56.71,-9,-9,0,1,1,0,0,2,5,1,1,530,-100086.9833468478,0,0,0,1050.884325618567 -4006,4988,9014,-9,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.520769580397879,8.855595740820222,0,0,0,-1037.185594179969,0,2,3,2019,19,7,35,40,1,7,0,17.75438999359677,17.75438999359677,0,0,0,0,2,1,1,0,0,0,20.32,66.03,-9,-9,1.666666666666667,1,1,0,0,10,13,4,1,355,195148.216490159,132593.7410778351,190772.0803033682,44864.55137445809,2144.314678696853 -4006,4989,9015,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.625370469375195,8.747720154595294,0,0,0,-914.1787361996946,0,-9,-9,2019,12,0,35,35,1,0,0,19.94889795537754,19.94889795537754,0,0,0,0,0,1,1,0,0,0,30.47,60.56,-9,-9,5,1,1,0,0,1,13,5,1,292,121268.9195308883,216635.0416121528,38854.43333236822,100211.0915006257,2393.890688417493 -4006,4989,9016,-9,9015,9014,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.750349482537,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,292,121268.9195308883,216635.0416121528,38854.43333236822,100211.0915006257,2393.890688417493 -4007,4990,9017,9018,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.794389347139167,7.836478646720829,5,-2,12.35880567511634,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.525474350069824,7.589744166649513,48.11,37.71,61.43,43.34,8.333333333333334,1,1,0,0,0,4,3,1,580,906512.7699420985,636172.5947384369,102286.8672414257,0,2919.472605355515 -4007,4990,9018,9017,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,5,2,-96.62369135940543,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.581548352623825,0,61.43,43.34,48.11,37.71,6.666666666666667,1,1,0,0,0,4,3,1,580,906512.7699420985,636172.5947384369,102286.8672414257,0,2919.472605355515 -4008,4991,9019,9020,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,3.601991686623259,3.405549831449151,9,11,-21.35408096245395,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.652302968038248,47.99,49.93,47.32,52.7,1.666666666666667,1,1,0,0,0,13,2,0,358.5,25420.4042656927,0,88766.13611927482,0,2856.007915018718 -4008,4991,9020,9019,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,9,-11,-9.223089362058017,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,47.99,49.93,5,1,1,0,1,0,13,2,0,358.5,25420.4042656927,0,88766.13611927482,0,2856.007915018718 -4009,4992,9021,9023,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.461348078339022,7.907688380399081,0,7,-3,28.61362264763841,0,-9,-9,2019,7,0,30,30,1,0,0,7.25271120175401,7.25271120175401,0,0,0,0,0,1,1,0,0,0,61.88,41.68,37.88,15.31,8.333333333333334,1,1,0,0,9,1,2,1,1738.666666666667,48935.14459801953,0,0,0,1200.758472731138 -4009,4992,9022,-9,9021,9023,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.8473555144202,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,1738.666666666667,48935.14459801953,0,0,0,1200.758472731138 -4009,4992,9023,9021,-9,-9,1,1,56,0,1,0,2,2,-9,0,1,0,0,0,30,3,82.72116677706207,0,2,2,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,15.31,61.88,41.68,5,1,1,0,0,0,1,2,1,1738.666666666667,48935.14459801953,0,0,0,1200.758472731138 -4009,4993,9024,-9,9021,9023,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,0,0,-982.7924586705166,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,120,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,2,1,2,1,282,240439.3702498418,0,0,0,555.5774205948516 -4009,4994,9025,-9,9021,9023,1,0,23,0,1,0,2,2,-9,0,3,7.930222676051037,7.748625544531138,0,0,0,-1001.608717875355,0,2,2,2019,17,5,47,52,1,5,1,6.329840075443364,6.329840075443364,0,0,0,0,0,1,1,0,0,0,41.48,52.55,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,380,-60829.32902180382,147747.131095389,0,0,1568.002988586254 -4010,4995,9026,9027,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.427856083653831,8.549583505745115,7.301533052980591,8,-2,19.10122673161409,0,2,1,2019,8,1,8,16,1,1,0,81.74017887805671,81.74017887805671,0,0,0,0,7,0,0,0,3.05156935685415,7.765646733261989,51.73,58.82,58.15,52.91,8.333333333333334,1,1,0,0,9,12,5,1,1840.5,1072365.11621773,789296.3501672029,169124.6734721756,7165.915662968004,4661.17898430935 -4010,4995,9027,9026,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.89065773971028,8.016515573747048,8,2,80.12218051063596,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.592064273947254,8.015172073166534,58.15,52.91,51.73,58.82,8.333333333333334,1,1,0,0,8,12,5,1,1840.5,1072365.11621773,789296.3501672029,169124.6734721756,7165.915662968004,4661.17898430935 -4011,4996,9028,9029,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.845309329146826,7.724440606514732,0,6,5,-195.0099846901269,0,-9,-9,2019,11,0,42,40,1,0,0,6.340972630247673,6.340972630247673,0,0,0,0,42,1,1,0,0,0,38.56,43.06,45.38,42.8,8.333333333333334,1,1,0,0,8,6,4,0,1429.333333333333,148015.182174727,-17647.67407844737,190304.2643848182,33817.97207858192,2556.426398052192 -4011,4996,9029,9028,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.725342633202663,8.089839189889904,5.421596177719543,6,-5,-32.56627447613401,0,3,3,2019,11,0,52,45,1,0,0,5.990438662848895,5.990438662848895,0,0,0,0,42,1,1,0,6.070113385931743,0,45.38,42.8,38.56,43.06,10,1,1,0,0,8,6,4,0,1429.333333333333,148015.182174727,-17647.67407844737,190304.2643848182,33817.97207858192,2556.426398052192 -4011,4996,9030,-9,9029,9028,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-1050.552450289319,-9,2,2,2019,27,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.56,25.09,-9,-9,1.666666666666667,1,1,0,1,0,6,4,0,1429.333333333333,148015.182174727,-17647.67407844737,190304.2643848182,33817.97207858192,2556.426398052192 -4012,4997,9031,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.617866497762,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.03,50.91,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,659,-55378.87868024364,0,0,0,1310.945745592435 -4013,4998,9032,9033,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.798381733993963,8.59781564024806,0,8,-7,-10.5341085997952,0,2,1,2019,9,0,47,45,1,0,0,15.26441285197732,15.26441285197732,0,0,0,0,2,0,0,0,0,0,54.3,35.12,55.2,49.4,8.333333333333334,1,1,0,0,10,6,5,1,790.5,1432414.978244494,969159.7410795777,362537.140704723,69483.7632865476,4854.362284114 -4013,4998,9033,9032,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.619925577712866,8.757674127568295,0,8,7,-152.0006018810419,0,3,2,2019,7,0,50,40,1,0,0,20.92913393453385,20.92913393453385,0,0,0,0,7,0,0,0,0,0,55.2,49.4,54.3,35.12,6.666666666666667,1,1,0,0,11,6,5,1,790.5,1432414.978244494,969159.7410795777,362537.140704723,69483.7632865476,4854.362284114 -4014,4999,9034,9035,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.542833886264265,8.902211751432747,45,-3,-37.67504258355652,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.685526775667879,8.784322347803215,60.13,49.27,59.48,46.97,8.333333333333334,1,1,0,0,0,7,5,1,164,3816146.453031078,810803.9402387242,1985450.364770921,0,4027.713493779263 -4014,4999,9035,9034,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.447349459812604,7.684964347576669,45,3,-137.1208347812605,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.542876077667536,59.48,46.97,60.13,49.27,8.333333333333334,1,1,0,0,3,7,5,1,164,3816146.453031078,810803.9402387242,1985450.364770921,0,4027.713493779263 -4015,5000,9036,9037,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.322087598437964,5.980771640445899,43,-5,-75.50162861743135,0,-9,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.966975490237264,6.09995913673074,58.69,27.12,57.33,53.46,6.666666666666667,1,1,0,0,9,1,2,1,330.5,376716.0233382065,51605.11556850473,97319.6285514867,0,2240.315569370223 -4015,5000,9037,9036,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.337826292664935,5.309591161051937,43,5,-49.47579871620643,0,3,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,4.951214688989884,4.845468535517241,57.33,53.46,58.69,27.12,8.333333333333334,1,1,0,0,10,1,2,1,330.5,376716.0233382065,51605.11556850473,97319.6285514867,0,2240.315569370223 -4015,5001,9038,-9,9036,9037,1,1,34,0,0,0,2,2,-9,1,5,6.875665499289219,6.55097374714667,0,0,0,-987.000359535942,0,2,2,2019,4,0,9,0,1,0,0,10.99901993267461,10.99901993267461,0,0,0,0,0,1,1,0,0,0,32.58,55.79,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,427,38596.38164605854,0,0,0,453.2168316010126 -4016,5002,9039,9040,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,13,0,-57.07621023233736,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.06580475727394,.0233812012808396,27.25902713606666,0,1,1,0,1.460982891342596,0,54.61,22.34,55.34,30.32,8.333333333333334,1,1,0,0,0,5,3,1,347,564043.1011157666,130134.8226619416,171598.5237244412,0,2204.33961551533 -4016,5002,9040,9039,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.777399087484373,7.84574592102258,13,9,-3.16385768213494,0,2,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,4.60680901188437,7.892931521032187,55.34,30.32,54.61,22.34,6.666666666666667,1,1,0,0,5,5,3,1,347,564043.1011157666,130134.8226619416,171598.5237244412,0,2204.33961551533 -4017,5003,9041,-9,9042,9043,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.9199326525696,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,2,3,-9,0,0,8,1,0,681,66650.0695802016,0,0,0,1669.078226014939 -4017,5003,9042,9043,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,34,-4,0,0,2,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,51,54,36.52,22.6,8,2,3,0,1,0,8,1,0,681,66650.0695802016,0,0,0,1669.078226014939 -4017,5003,9043,9042,-9,-9,1,1,54,0,1,0,3,3,-9,0,2,0,0,0,34,4,0,0,2,1,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.52,22.6,51,54,1.666666666666667,2,3,1,1,0,8,1,0,681,66650.0695802016,0,0,0,1669.078226014939 -4017,5004,9044,-9,9042,9043,1,0,26,0,1,0,2,2,-9,0,4,7.831220712224152,8.064005893771558,0,0,0,-1027.62909028728,0,1,2,2019,11,0,43,43,1,2,1,7.610618285268834,7.610618285268834,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,1,3,8,4,0,1394,168411.4399317721,0,0,0,1416.920368019743 -4017,5005,9045,-9,9042,9043,1,1,25,0,1,0,2,2,1,0,3,8.453800356296197,8.334548323340215,0,0,0,-1103.267157233232,-9,2,2,2019,12,0,50,0,1,0,1,10.19839403426624,10.19839403426624,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,2,3,0,0,4,8,4,0,775,398727.2172751885,0,290397.7403707864,115223.8289746099,2294.15756180603 -4018,5006,9046,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.950931938999757,7.738450164802074,0,0,0,-980.3116719551638,0,3,3,2019,10,0,42,46,1,0,0,8.106420968267654,8.106420968267654,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,110.5,-13342.44623974801,0,0,0,1866.978296504981 -4018,5006,9047,-9,9046,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.5360217826343,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,0,110.5,-13342.44623974801,0,0,0,1866.978296504981 -4019,5007,9048,9049,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.421080522387056,7.180821780978521,0,7,4,-74.67833792689106,0,3,3,2019,6,0,40,35,1,0,0,4.304487654928438,4.304487654928438,0,0,0,0,0,0,0,0,0,0,54.96,53.17,47.66,52.33,10,1,1,0,0,8,1,5,1,952,749125.8652892412,216837.3937071994,276649.6719136504,40868.00321807034,4115.613786664671 -4019,5007,9049,9048,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.415425087997182,9.570196688979509,0,7,-4,-73.46856236603809,0,3,2,2019,15,4,50,46,1,4,0,21.24295769676088,21.24295769676088,0,0,0,0,0,0,0,0,0,0,47.66,52.33,54.96,53.17,6.666666666666667,1,1,0,0,8,1,5,1,952,749125.8652892412,216837.3937071994,276649.6719136504,40868.00321807034,4115.613786664671 -4020,5008,9050,9051,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.764300598122016,7.864564723440363,48,2,2.251582532606845,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.373783540590374,7.922298875244639,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,1,4,1,1215.5,824739.0326083982,462947.0945188575,207161.1774138878,0,3566.336819178004 -4020,5008,9051,9050,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,7.619849295689584,7.54802524249064,0,48,-2,73.38837164198029,0,2,3,2019,6,0,50,40,1,0,0,6.798158592231903,6.798158592231903,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,1,4,1,1215.5,824739.0326083982,462947.0945188575,207161.1774138878,0,3566.336819178004 -4021,5009,9052,-9,9053,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-935.3058201349863,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,485.75,46036.06132427721,0,0,0,1222.687991209992 -4021,5009,9053,-9,-9,-9,1,0,28,1,3,0,2,2,-9,0,5,0,0,0,0,0,-876.4765535090577,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,0,13,1,0,485.75,46036.06132427721,0,0,0,1222.687991209992 -4021,5009,9054,-9,9053,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.654045844169,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,485.75,46036.06132427721,0,0,0,1222.687991209992 -4021,5009,9055,-9,9053,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.2575679999112,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,485.75,46036.06132427721,0,0,0,1222.687991209992 -4022,5010,9056,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,8.053843635722348,8.320044992229276,0,0,-1020.24170702188,0,3,2,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,0,8.022695409545076,50.7,54.06,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,536,1124195.114982833,845318.0386025604,106438.4227432006,0,2179.196761502919 -4023,5011,9057,9058,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.395715072762091,7.437961418532637,8,4,-105.359754063828,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,2.958593360163578,11.10975046189985,19.62317293662563,0,1,1,0,0,7.743182413217887,30.52,26.54,52.63,50.07,5,1,1,0,0,0,12,4,1,956.5,2238230.805787317,649501.8683205049,222928.6876263894,0,2834.317071367474 -4023,5011,9058,9057,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,7.780912192182713,8.171746395497438,5.759632191368127,8,-4,-186.4987361583484,0,3,3,2019,9,0,28,28,1,0,0,9.614288115601004,9.614288115601004,0,0,0,0,27,1,1,0,0,5.822064030291891,52.63,50.07,30.52,26.54,8.333333333333334,1,1,0,0,9,12,4,1,956.5,2238230.805787317,649501.8683205049,222928.6876263894,0,2834.317071367474 -4024,5012,9059,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,8.158857070158714,8.0759044038646,0,0,0,-993.0675337074274,0,2,3,2019,10,0,20,22,1,0,0,21.14424903238922,21.14424903238922,0,0,0,0,0,0,0,0,0,0,55.27,33.02,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,150,803995.3784418108,683171.4256671575,138339.509623385,18015.45401375777,1390.26874693076 -4025,5013,9060,9061,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,34,10,-43.06180530775698,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.746157443562794,0,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,378.5,770790.819074649,295235.0358095685,199158.9774125842,0,2537.480387061429 -4025,5013,9061,9060,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.119782728284648,7.360987848865774,8,-10,92.1834480246544,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,8.227688331981692,6.70199068541464,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,10,2,2,1,378.5,770790.819074649,295235.0358095685,199158.9774125842,0,2537.480387061429 -4025,5014,9062,-9,9061,9060,1,0,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-855.1366188025437,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.25,51.7,-9,-9,10,1,1,0,0,0,2,1,1,430,-135555.8461021429,0,0,0,1501.93979744095 -4026,5015,9063,-9,-9,-9,1,1,20,0,0,1,2,0,0,1,3,0,0,0,0,0,-838.290915742818,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,341,-94063.12520397242,0,0,0,851.5292546705192 -4027,5016,9064,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.518870813406703,8.445420545065508,0,0,0,-970.418167212226,-9,1,1,2019,11,0,38,0,1,0,0,11.70554436705824,11.70554436705824,0,0,0,0,0,0,0,0,5.931963715502794,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,1514,69348.01018246684,-72771.7350587093,0,0,1607.675882967714 -4028,5017,9065,9066,-9,-9,1,0,65,0,4,0,3,3,-9,1,3,0,0,0,1,3,0,-9,3,3,2019,8,1,0,0,3,1,0,0,0,1,125.5015533767666,149.8994060905225,1202.55434926778,0,1,1,0,0,0,62.09,18.35,49.66,28.12,10,2,3,0,0,0,4,1,1,928,199326.8868450397,98534.49802859558,0,0,1461.100594493229 -4028,5017,9066,9065,-9,-9,1,1,62,0,4,0,3,3,-9,1,3,0,0,0,1,-3,0,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.66,28.12,62.09,18.35,10,2,3,0,0,0,4,1,1,928,199326.8868450397,98534.49802859558,0,0,1461.100594493229 -4028,5018,9067,-9,9065,9066,1,1,33,0,4,0,2,2,-9,1,3,0,0,0,0,0,-1129.901540455678,-9,3,-9,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,3.348618484550048,0,59.7,53.75,-9,-9,10,1,1,1,0,0,4,1,1,210,-50400.10230688139,0,0,0,-246.5321597818695 -4028,5019,9068,-9,9070,9067,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-852.8003444176852,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,1,751.75,-18264.82837493642,0,0,0,1316.024323508925 -4028,5019,9069,-9,9070,9067,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-897.3579553670636,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,1,751.75,-18264.82837493642,0,0,0,1316.024323508925 -4028,5019,9070,-9,-9,-9,1,0,34,0,4,0,1,1,-9,0,5,7.758679779836979,7.409541401239071,0,0,0,-917.9219315499527,-9,2,2,2019,10,3,40,0,1,3,0,5.313332998232314,5.313332998232314,0,0,0,0,42,1,1,0,0,0,55.11,59.93,-9,-9,10,2,3,0,0,2,4,2,1,751.75,-18264.82837493642,0,0,0,1316.024323508925 -4028,5019,9071,-9,9070,9067,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-981.3751511401109,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,1,751.75,-18264.82837493642,0,0,0,1316.024323508925 -4029,5020,9072,-9,9075,9074,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.608743314572,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1295.75,405110.6070283705,134272.8195696377,470896.3629911836,202579.918569459,3671.798279160183 -4029,5020,9073,-9,9075,9074,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1027.889813222361,-9,1,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,3,1,1,-9,0,0,10,4,1,1295.75,405110.6070283705,134272.8195696377,470896.3629911836,202579.918569459,3671.798279160183 -4029,5020,9074,9075,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.713352947567156,9.130481692875222,7.399472202007419,6,1,60.62349584686252,0,-9,-9,2019,7,0,36,39,1,0,0,16.76495460052377,16.76495460052377,0,0,0,0,0,1,1,0,2.8224170582077,7.834346831865638,57.16,56.15,54.36,49.13,8.333333333333334,1,1,0,0,2,10,4,1,1295.75,405110.6070283705,134272.8195696377,470896.3629911836,202579.918569459,3671.798279160183 -4029,5020,9075,9074,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.291609823439058,7.113842270298196,0,25,-1,-52.03612139432437,0,2,2,2019,8,0,34,40,1,0,0,5.192635854032509,5.192635854032509,0,0,0,0,0,1,1,0,1.960370871397903,0,54.36,49.13,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,1295.75,405110.6070283705,134272.8195696377,470896.3629911836,202579.918569459,3671.798279160183 -4030,5021,9076,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-992.7335329429727,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,16.93610150813955,23.29036551849048,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,693,299202.070644177,0,102837.1240614172,0,448.3920887258412 -4031,5022,9077,9078,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,7.381538879269212,7.186113155014706,0,5,-2,21.19812983212918,0,-9,-9,2019,16,4,16,16,1,4,0,12.07475050204094,12.07475050204094,0,0,0,0,0,1,1,0,0,0,38.51,59.43,59.53,56.44,8.333333333333334,1,1,0,0,5,5,4,0,140,113153.0742820745,88421.11347885383,152668.4257225578,93033.55736263539,3073.827941006664 -4031,5022,9078,9077,-9,-9,1,1,42,1,1,0,2,2,-9,0,4,8.913537410823476,8.713430733045966,0,5,2,-10.45323860904344,0,-9,-9,2019,12,0,80,65,1,0,0,10.40109269937005,10.40109269937005,0,0,0,0,0,1,1,0,0,0,59.53,56.44,38.51,59.43,8.333333333333334,1,1,0,0,7,5,4,0,140,113153.0742820745,88421.11347885383,152668.4257225578,93033.55736263539,3073.827941006664 -4031,5022,9079,-9,9077,9078,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.6421480073129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,140,113153.0742820745,88421.11347885383,152668.4257225578,93033.55736263539,3073.827941006664 -4032,5023,9080,9081,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,6.702778140699185,6.674391709491974,38,0,-.2655333346292714,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.529161892085369,6.960526479749774,57.16,56.15,62.39,56.71,0,1,1,0,0,7,7,4,1,618.5,3377431.21207579,0,3525224.378967242,118624.5551991193,2136.358642944901 -4032,5023,9081,9080,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.541735822238367,8.598659897297061,0,40,0,31.18472837901775,0,2,2,2019,7,0,20,39,1,0,0,23.33922281855153,23.33922281855153,0,0,0,0,0,0,0,0,4.114745886381994,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,618.5,3377431.21207579,0,3525224.378967242,118624.5551991193,2136.358642944901 -4033,5024,9082,9083,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,6.570375432146594,6.911871320913956,0,37,1,-64.30757692848421,0,3,3,2019,12,1,16,16,1,1,0,7.664389026027481,7.664389026027481,0,0,0,0,0,1,1,0,0,0,53.28,43.57,50,47,8.333333333333334,2,3,0,1,3,8,2,1,611.5,317215.2894396562,122568.2588856897,202068.664299942,0,382.6353271873861 -4033,5024,9083,9082,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,37,-1,-41.31413171950786,0,3,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53.28,43.57,3.333333333333333,2,3,1,1,0,8,2,1,611.5,317215.2894396562,122568.2588856897,202068.664299942,0,382.6353271873861 -4033,5025,9084,-9,9083,9082,1,0,29,0,0,0,2,2,-9,0,4,7.897755357031388,8.235049742372238,0,0,0,-918.0601062973907,0,3,3,2019,11,2,50,55,1,2,1,7.650866144254709,7.650866144254709,0,0,0,0,0,1,1,0,0,0,42.83,42.39,-9,-9,8.333333333333334,2,3,0,0,9,8,4,1,264,26585.58979923123,18030.34336832121,0,0,1357.459881246815 -4034,5026,9085,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.860314980298831,7.829228389910369,0,0,0,-1060.459302542313,0,2,2,2019,10,0,35,30,1,0,0,10.50956075170213,10.50956075170213,0,0,0,.0656482864794032,0,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,8,12,4,1,265,-208422.1932181339,0,35582.71192242218,81843.4810192514,1402.149804981584 -4035,5027,9086,9087,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.492542102306526,8.875844798431078,0,27,11,-86.18315271364874,0,3,3,2019,20,8,38,44,1,8,0,14.84871281745278,14.84871281745278,0,0,0,0,0,1,1,0,0,0,29.69,37.88,34.51,57.34,6.666666666666667,1,1,0,1,11,6,4,1,864.5,234706.0940328136,76991.05968742521,99373.18885235535,0,1754.447106492785 -4035,5027,9087,9086,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,0,0,0,27,-11,101.8431189654057,0,-9,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.51,57.34,29.69,37.88,8.333333333333334,1,1,0,1,1,6,4,1,864.5,234706.0940328136,76991.05968742521,99373.18885235535,0,1754.447106492785 -4035,5028,9088,-9,9087,9086,1,1,24,0,0,0,3,3,-9,0,4,8.095708588222378,8.246057717499278,0,0,0,-906.1845954689765,0,3,2,2019,10,0,40,38,1,1,1,8.463762168204447,8.463762168204447,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,776,-12294.57602874733,-65933.94617829364,0,0,1253.938850525811 -4036,5029,9089,9090,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.389632394968947,7.911954228640472,7.321663190378414,37,-3,35.50396307170492,0,2,2,2019,11,0,26,10,1,0,0,5.709160032632963,5.709160032632963,0,0,0,0,0,1,1,0,4.833464653271114,7.105668908034755,58.26,35.21,53.81,32.33,6.666666666666667,1,1,0,0,6,6,4,1,185.5,870900.613314579,654401.9523287382,152847.7763903289,0,2745.170514763657 -4036,5029,9090,9089,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.08686787089041,7.769477801301274,37,3,-25.56459195439929,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.078370971271186,7.909667733836153,53.81,32.33,58.26,35.21,8.333333333333334,1,1,0,0,6,6,4,1,185.5,870900.613314579,654401.9523287382,152847.7763903289,0,2745.170514763657 -4037,5030,9091,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.977130995418336,7.793356139345931,5.617182863340392,0,0,-990.8328339228631,0,2,1,2019,8,0,17,19,1,0,0,6.459623334138923,6.459623334138923,0,0,0,0,0,1,1,0,6.448319679687547,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,4,2,0,946.3333333333334,-16869.00383669566,-25832.05752753133,0,0,2092.422814164606 -4037,5030,9092,-9,9091,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.4487527976253,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,946.3333333333334,-16869.00383669566,-25832.05752753133,0,0,2092.422814164606 -4037,5030,9093,-9,9091,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.190325692101,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,946.3333333333334,-16869.00383669566,-25832.05752753133,0,0,2092.422814164606 -4038,5031,9094,9095,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.732408080100688,4.557422701425828,14,16,12.10120421428012,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.473894210110374,4.783612300971848,68.48999999999999,18.65,60.69,37.28,10,1,1,0,0,4,12,2,1,378.5,468988.9003902874,26312.94275384958,500258.2999894508,0,2157.915780987161 -4038,5031,9095,9094,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.242013859852395,7.212543370321318,0,14,-16,41.41537720162059,0,-9,-9,2019,7,0,25,31,1,0,0,8.03223097677072,8.03223097677072,0,0,0,0,71.5,1,1,0,0,0,60.69,37.28,68.48999999999999,18.65,8.333333333333334,1,1,0,0,12,12,2,1,378.5,468988.9003902874,26312.94275384958,500258.2999894508,0,2157.915780987161 -4039,5032,9096,9097,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.30131594810795,8.294750013015426,0,5,1,-176.7579904617281,0,-9,-9,2019,13,1,40,40,1,1,0,10.21646915678572,10.21646915678572,0,0,0,0,0,0,0,0,6.727464160011827,0,44.02,60.7,60.02,56.42,8.333333333333334,1,1,0,0,6,12,5,1,282.5,110060.2343591378,83778.5393307748,119977.9284071199,85597.34312850866,3592.980930238009 -4039,5032,9097,9096,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.543308288954742,8.466327457744773,0,5,-1,36.3969980149686,0,1,2,2019,7,0,41,44,1,0,0,13.86864630335196,13.86864630335196,0,0,0,0,0,0,0,0,0,0,60.02,56.42,44.02,60.7,8.333333333333334,1,1,0,0,5,12,5,1,282.5,110060.2343591378,83778.5393307748,119977.9284071199,85597.34312850866,3592.980930238009 -4040,5033,9098,9099,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,7.519393965977485,7.440507812700545,0,1,3,44.13936669196922,-9,1,-9,2019,10,1,50,0,1,1,0,4.972614653095873,4.972614653095873,0,0,0,0,0,0,0,0,0,0,52.24,50.75,25.13,59.12,5,1,1,0,0,5,11,3,0,587,61436.18547988321,0,0,0,434.8098160582034 -4040,5033,9099,9098,-9,-9,1,0,22,0,0,1,1,0,-9,0,2,0,0,0,1,-3,65.0260532893865,-9,-9,-9,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,5.48,0,0,0,0,0,25.13,59.12,52.24,50.75,6.666666666666667,1,1,0,1,0,11,3,0,587,61436.18547988321,0,0,0,434.8098160582034 -4041,5034,9100,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-951.7344582188715,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.43,25.61,-9,-9,10,1,1,0,1,1,7,1,0,178,-104993.8416534203,-50228.45774371986,0,0,985.9355271760444 -4042,5035,9101,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1033.553192993909,0,3,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.44,61.22,-9,-9,6.666666666666667,1,1,0,1,0,10,1,1,211,290930.2908557694,0,293061.0964579515,0,509.1351154219516 -4043,5036,9102,-9,-9,9103,1,0,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-940.5035297412984,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,456.5,348929.5760994841,0,179828.9311079248,0,1918.972527399833 -4043,5036,9103,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-932.8482171251185,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.38,25.53,-9,-9,6.666666666666667,1,1,0,1,0,9,1,0,456.5,348929.5760994841,0,179828.9311079248,0,1918.972527399833 -4044,5037,9104,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.972780538854707,7.748361526848718,0,0,0,-1080.312935628405,0,3,2,2019,1,0,25,30,1,0,0,11.63015157138899,11.63015157138899,0,0,0,0,14.5,1,1,0,0,0,58.56,46.45,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,759,-92155.39073399385,55677.68251319409,0,0,964.0923892479954 -4044,5038,9105,-9,9104,-9,1,1,22,0,0,0,2,2,0,1,3,0,0,0,0,0,-899.6327324130767,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,-9,-9,3.333333333333333,1,1,0,1,1,7,1,1,287,0,0,0,0,42.95893725881268 -4045,5039,9106,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,8.024089654717924,7.853585240683667,0,0,-1039.32766844704,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.128839106903997,7.662668180514078,47.97,30.19,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,282,569371.8055022517,167771.1814813156,341248.2106528661,0,2896.739526959738 -4046,5040,9107,-9,9109,9108,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-990.7396031970948,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,9,5,1,521,246810.2218763951,-221.9117011842075,489465.6367671187,265211.9137695474,3687.09667328258 -4046,5040,9108,9109,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.486518610917038,8.557184458602556,0,3,6,-61.3795034039865,-9,3,2,2019,17,5,50,0,1,5,0,11.77071734623691,11.77071734623691,0,0,0,0,0,0,0,0,0,0,43.49,38.07,41.52,41.71,3.333333333333333,2,3,0,0,11,9,5,1,521,246810.2218763951,-221.9117011842075,489465.6367671187,265211.9137695474,3687.09667328258 -4046,5040,9109,9108,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.407913531899144,8.190189536332579,0,3,-6,-101.9296270553253,-9,2,1,2019,11,1,40,0,1,1,0,12.51302631922608,12.51302631922608,0,0,0,0,0,0,0,0,0,0,41.52,41.71,43.49,38.07,3.333333333333333,2,3,0,0,8,9,5,1,521,246810.2218763951,-221.9117011842075,489465.6367671187,265211.9137695474,3687.09667328258 -4047,5041,9110,9112,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.217183782833629,8.127122312674027,0,27,-3,53.79738275062546,0,2,2,2019,12,1,32,30,1,1,0,13.72669027830131,13.72669027830131,0,0,0,0,2,0,0,0,2.95160825043433,0,44.68,47.44,58.89,48.6,8.333333333333334,1,1,0,0,9,1,5,1,404.3333333333333,1200855.819849729,782235.2317958398,320462.3527776197,0,5313.021589872483 -4047,5041,9111,-9,9110,9112,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-955.2311847348652,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,10,1,1,0,0,1,1,5,1,404.3333333333333,1200855.819849729,782235.2317958398,320462.3527776197,0,5313.021589872483 -4047,5041,9112,9110,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.419465177698177,9.25227313184222,0,7,3,-65.74176127353584,0,-9,-9,2019,8,1,45,48,1,1,0,36.31928497894198,36.31928497894198,0,0,0,0,2,0,0,0,5.256354574440421,0,58.89,48.6,44.68,47.44,8.333333333333334,1,1,0,0,5,1,5,1,404.3333333333333,1200855.819849729,782235.2317958398,320462.3527776197,0,5313.021589872483 -4048,5042,9113,9114,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,9.606331421241608,9.857151329328607,35,-4,-76.20988424825433,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.877936912644941,9.168028653928618,48.45,57.49,54.51,50.6,10,1,1,0,0,4,9,5,1,1026.5,4140638.349395411,2633480.028933759,481121.4049889121,0,8843.371868350569 -4048,5042,9114,9113,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.763773479250424,5.639473623715463,35,4,-12.96225276505751,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.83490918280953,5.626276597841058,54.51,50.6,48.45,57.49,10,1,1,0,0,3,9,5,1,1026.5,4140638.349395411,2633480.028933759,481121.4049889121,0,8843.371868350569 -4049,5043,9115,-9,9116,9118,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.542928652824,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1047.75,744292.8236081341,278525.5753081353,0,0,4710.98458979473 -4049,5043,9116,9118,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,0,0,0,15,3,-48.13750495505958,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.57,52.35,8.333333333333334,1,1,0,0,3,9,5,1,1047.75,744292.8236081341,278525.5753081353,0,0,4710.98458979473 -4049,5043,9117,-9,9116,9118,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.872028441987,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1047.75,744292.8236081341,278525.5753081353,0,0,4710.98458979473 -4049,5043,9118,9116,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.690998374346838,9.374775388446508,0,15,-3,48.31874424298111,0,1,1,2019,11,4,40,40,1,4,0,34.54913218966448,34.54913218966448,0,0,0,0,0,0,0,0,4.776058908919055,0,50.57,52.35,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,1047.75,744292.8236081341,278525.5753081353,0,0,4710.98458979473 -4050,5044,9119,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.709771459512778,8.844118670871195,0,0,0,-1038.139274984746,0,2,2,2019,10,0,16,16,1,0,0,41.63785735882698,41.63785735882698,0,0,0,0,0,0,0,0,0,0,40.08,56.91,-9,-9,6.666666666666667,1,1,0,0,12,5,5,0,350,289923.248325304,152976.3187028896,70919.58147981668,63719.32528049118,2617.874507523012 -4051,5045,9120,9121,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.732752479605848,8.722609227051825,0,36,2,194.4728267534467,0,2,1,2019,6,0,47,40,1,0,0,12.86679777776401,12.86679777776401,0,0,0,0,2,0,0,0,5.80583498496305,0,61.12,51.57,55.96,49.93,10,1,1,0,0,10,5,5,1,939,872060.486856895,508467.0171231234,174317.4931876389,0,3151.189843728835 -4051,5045,9121,9120,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,8.106204975119757,8.220681234252377,37,-2,-135.68627874713,0,2,2,2019,8,0,0,31,4,0,0,0,0,0,0,0,0,2,0,0,0,4.801195706371177,8.135321514376072,55.96,49.93,61.12,51.57,8.333333333333334,1,1,0,0,9,5,5,1,939,872060.486856895,508467.0171231234,174317.4931876389,0,3151.189843728835 -4052,5046,9122,9123,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.805605871649039,7.825467327428179,0,30,-6,76.39879619564846,0,2,3,2019,11,0,35,70,1,0,0,8.94146761623341,8.94146761623341,0,0,0,0,0,0,0,0,0,0,28.71,55.69,52.65,51.64,8.333333333333334,1,1,0,0,11,11,5,1,2582,1124739.817928952,1071955.242808541,299896.2750621154,85353.90345905394,4158.929935793087 -4052,5046,9123,9122,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.868667904045899,8.867493056368009,7.908137045575429,30,6,102.9899851371225,0,3,3,2019,9,0,32,32,1,0,0,11.11544335471514,11.11544335471514,0,0,0,0,0,0,0,0,0,8.034693208949447,52.65,51.64,28.71,55.69,8.333333333333334,1,1,0,0,12,11,5,1,2582,1124739.817928952,1071955.242808541,299896.2750621154,85353.90345905394,4158.929935793087 -4053,5047,9124,9125,9126,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,10,1,-96.44840274297366,0,3,3,2019,12,1,0,40,4,1,0,0,0,1,0,.3796634844397904,0,7,1,1,0,0,0,39.39,28.63,51.25,10.97,8.333333333333334,1,1,0,1,7,7,2,1,2056,222940.1556117177,-9043.007171023655,0,0,1108.616859254326 -4053,5047,9125,9124,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,4.864189027602418,5.075002005726792,11,-1,-64.16254620533947,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.15145765690461,4.862501146150454,51.25,10.97,39.39,28.63,8.333333333333334,1,1,0,0,0,7,2,1,2056,222940.1556117177,-9043.007171023655,0,0,1108.616859254326 -4053,5048,9126,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.055355484535261,6.018463641317147,0,0,-1025.01422592942,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.806412351670067,14.54691166314648,0,0,1,1,0,5.529367912874838,5.885777601636047,53,44,-9,-9,8,1,1,0,0,0,7,2,1,634,150848.0498951265,-106515.7509224603,0,0,1001.669653159248 -4054,5049,9127,9128,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,32,10,44.32280792029037,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.628302110509638,0,63.01,41.3,54.51,50.6,10,1,1,0,0,0,7,3,1,1104.5,691640.5932731378,0,515073.1937658843,0,2111.565213379514 -4054,5049,9128,9127,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.828441238328156,7.480982911586181,32,-10,-4.795911910093201,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.370841636178282,7.514236239747638,54.51,50.6,63.01,41.3,10,1,1,0,0,6,7,3,1,1104.5,691640.5932731378,0,515073.1937658843,0,2111.565213379514 -4055,5050,9129,9133,-9,-9,1,0,44,1,3,0,1,1,-9,0,3,8.155738583076817,7.604991872619379,0,7,2,-54.215587474031,0,-9,-9,2019,10,0,38,38,1,0,0,10.09632431510848,10.09632431510848,0,0,0,0,0,1,1,0,0,0,52.41,42.18,57.16,56.15,6.666666666666667,1,1,0,1,7,1,4,1,917.4,629216.3439896787,417139.5556688259,132048.9057622346,61258.81559239219,3592.876735278575 -4055,5050,9130,-9,9129,9133,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.917062942588,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,917.4,629216.3439896787,417139.5556688259,132048.9057622346,61258.81559239219,3592.876735278575 -4055,5050,9131,-9,9129,9133,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.203147696085,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,917.4,629216.3439896787,417139.5556688259,132048.9057622346,61258.81559239219,3592.876735278575 -4055,5050,9132,-9,9129,9133,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.9900600968735,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,917.4,629216.3439896787,417139.5556688259,132048.9057622346,61258.81559239219,3592.876735278575 -4055,5050,9133,9129,-9,-9,1,1,42,1,3,0,2,2,-9,0,4,8.733970946873665,8.792684366077038,0,7,-2,-114.1917334800917,0,3,3,2019,4,0,52,52,1,0,0,15.49009008792819,15.49009008792819,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.41,42.18,8.333333333333334,1,1,0,0,8,1,4,1,917.4,629216.3439896787,417139.5556688259,132048.9057622346,61258.81559239219,3592.876735278575 -4056,5051,9134,9135,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.707925910552809,6.668062354640115,0,40,0,-70.85347200716582,0,3,3,2019,11,2,18,20,1,2,0,5.285344152184546,5.285344152184546,0,0,0,0,0,0,0,0,0,0,46.08,57.2,34.15,60.28,10,1,1,0,0,9,7,4,1,658,154506.3244200086,22451.60916883161,155453.4007302742,51087.51215235256,2300.495488754098 -4056,5051,9135,9134,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.644068343706179,8.541848756383136,5.047059967596632,40,0,43.5138929629209,0,3,3,2019,25,12,64,57,1,12,0,7.259826804151642,7.259826804151642,0,0,0,0,0,0,0,0,5.339538521217352,5.492195301545118,34.15,60.28,46.08,57.2,3.333333333333333,1,1,0,0,11,7,4,1,658,154506.3244200086,22451.60916883161,155453.4007302742,51087.51215235256,2300.495488754098 -4056,5052,9136,-9,9134,9135,1,0,34,0,0,0,2,2,-9,0,2,8.170429884318427,8.023855403351449,0,0,0,-994.6590318585596,0,2,2,2019,17,6,43,40,1,6,1,9.153211334800925,9.153211334800925,0,0,0,0,0,0,0,0,0,0,34.67,53.25,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,215,-20340.9966706383,155308.4497578381,0,0,986.259316530336 -4057,5053,9137,9138,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.977732556538825,9.075505504175906,7,5,23.01129979120312,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.213599913888636,8.383629901304859,55.53,51.55,50.35,32.26,8.333333333333334,1,1,0,0,5,7,5,1,549.5,966519.2048004002,574434.127423242,410835.945409913,74726.27645121672,6798.056910149182 -4057,5053,9138,9137,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,7,-5,-134.8193345411671,0,3,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.465109451421547,0,50.35,32.26,55.53,51.55,1.666666666666667,1,1,0,0,2,7,5,1,549.5,966519.2048004002,574434.127423242,410835.945409913,74726.27645121672,6798.056910149182 -4058,5054,9139,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.60301730899827,8.194947410040026,3.47125480969951,0,0,-1021.295298225736,0,2,2,2019,14,2,52,42,1,2,0,10.83192011147288,10.83192011147288,0,0,0,0,0,1,1,0,4.358565627778579,3.755310948176549,49.33,51.63,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,359,104664.3761997534,0,0,0,2038.060363303174 -4059,5055,9140,9141,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.889804348498085,7.815765811955435,61,0,.730360939794987,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.308201979253965,7.814988920351388,30.51,49.72,41.46,44.54,8.333333333333334,1,1,0,0,0,4,4,1,1200,955375.9958528518,140742.6308173169,542367.4347120288,0,3573.320998229738 -4059,5055,9141,9140,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.877141484036397,7.849843752758293,61,0,-51.83205964658053,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.027063618124276,7.90626562560555,41.46,44.54,30.51,49.72,6.666666666666667,1,1,0,0,0,4,4,1,1200,955375.9958528518,140742.6308173169,542367.4347120288,0,3573.320998229738 -4060,5056,9142,9143,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.071568486403487,9.055063488958274,0,5,-7,-10.45944327786307,0,-9,-9,2019,9,0,40,40,1,1,0,22.11747848333514,22.11747848333514,0,0,0,0,0,1,1,0,0,0,51,56,43.42,62.33,8,2,3,0,0,1,9,5,1,634,1968875.091356682,1593168.086981854,391360.7289484962,82273.56117889265,4408.455853052363 -4060,5056,9143,9142,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.904146699459655,7.913587628399038,0,5,7,-59.60277881667992,0,3,3,2019,13,2,27,27,1,2,0,11.33868778308278,11.33868778308278,0,0,0,0,27,1,1,0,0,0,43.42,62.33,51,56,5,2,3,0,0,7,9,5,1,634,1968875.091356682,1593168.086981854,391360.7289484962,82273.56117889265,4408.455853052363 -4060,5056,9144,-9,9143,9142,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-819.5438497948186,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,5,1,634,1968875.091356682,1593168.086981854,391360.7289484962,82273.56117889265,4408.455853052363 -4060,5056,9145,-9,9143,9142,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.80289033701,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,634,1968875.091356682,1593168.086981854,391360.7289484962,82273.56117889265,4408.455853052363 -4060,5056,9146,-9,9143,9142,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1024.588462914937,-9,3,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,2,1,1,0,0,0,41.51,59.08,-9,-9,6.666666666666667,2,3,0,0,1,9,5,1,634,1968875.091356682,1593168.086981854,391360.7289484962,82273.56117889265,4408.455853052363 -4061,5057,9147,-9,9150,9148,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.3272199461463,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1063.25,240324.3848117634,154452.2395657188,165861.8602634577,108377.9424996698,2576.631452832619 -4061,5057,9148,9150,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,7.78711594418018,7.972513015867498,0,6,2,16.96535363261728,0,3,3,2019,8,0,40,40,1,0,0,6.446289667215551,6.446289667215551,0,0,0,0,0,1,1,0,0,0,59.32,46.98,29.12,59.76,8.333333333333334,1,1,0,0,7,11,3,1,1063.25,240324.3848117634,154452.2395657188,165861.8602634577,108377.9424996698,2576.631452832619 -4061,5057,9149,-9,9150,9148,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.779706296632,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.410950588278821,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1063.25,240324.3848117634,154452.2395657188,165861.8602634577,108377.9424996698,2576.631452832619 -4061,5057,9150,9148,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,7.601192430559926,7.680515321102825,0,6,-2,-146.055216598477,0,2,-9,2019,14,2,37,30,1,2,0,5.408584871100329,5.408584871100329,0,0,0,0,0,1,1,0,0,0,29.12,59.76,59.32,46.98,5,1,1,0,0,5,11,3,1,1063.25,240324.3848117634,154452.2395657188,165861.8602634577,108377.9424996698,2576.631452832619 -4062,5058,9151,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.035346072779065,6.148155590061521,0,0,-1115.326333881142,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.293724857665696,49.78,23.35,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,3740,1198053.554543395,107888.1196039339,0,0,1177.211390856761 -4063,5059,9152,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.128694219164862,8.239807253780391,4.905160542385055,0,0,-856.1289215260448,0,2,2,2019,19,7,35,35,1,7,0,10.1161670626127,10.1161670626127,0,0,0,0,0,1,1,0,5.405227482808534,0,46.35,48.13,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,1321,117113.8188380704,95375.19212489776,110155.7523810144,45351.17741236588,1266.217832651053 -4063,5059,9153,-9,9152,-9,1,0,16,0,1,1,2,0,-9,1,1,0,0,0,0,0,-1062.764063472053,-9,2,-9,2019,19,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,5.048076321182148,0,15.68,44.91,-9,-9,0,1,1,0,0,0,12,3,1,1321,117113.8188380704,95375.19212489776,110155.7523810144,45351.17741236588,1266.217832651053 -4064,5060,9154,-9,9156,9155,1,0,15,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1034.581068585729,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,2,0,266.2,141566.9046907166,51773.79683306033,178196.2125177873,44112.78004482614,1829.352021147184 -4064,5060,9155,9156,-9,-9,1,1,33,0,3,0,2,2,-9,0,5,7.652106286932859,7.669858495782302,0,7,1,10.61566168774765,0,-9,-9,2019,7,0,42,38,1,0,0,6.198362783919608,6.198362783919608,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,5,2,0,266.2,141566.9046907166,51773.79683306033,178196.2125177873,44112.78004482614,1829.352021147184 -4064,5060,9156,9155,-9,-9,1,0,32,0,3,0,1,1,-9,0,5,0,0,0,7,-1,38.12186877020206,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,1,5,2,0,266.2,141566.9046907166,51773.79683306033,178196.2125177873,44112.78004482614,1829.352021147184 -4064,5060,9157,-9,9156,9155,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.9677627737481,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,266.2,141566.9046907166,51773.79683306033,178196.2125177873,44112.78004482614,1829.352021147184 -4064,5060,9158,-9,9156,9155,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-971.1537063780363,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,2,0,266.2,141566.9046907166,51773.79683306033,178196.2125177873,44112.78004482614,1829.352021147184 -4065,5061,9159,9160,-9,-9,1,1,39,1,3,0,1,1,-9,0,3,8.237065734615864,8.325971765779917,0,10,1,25.98394536034277,-9,2,2,2019,18,6,25,0,1,6,0,20.09193082349885,20.09193082349885,0,0,0,0,0,1,1,0,.8555529105388557,0,25.08,62.98,55.41,40.6,3.333333333333333,1,1,0,0,12,9,4,1,537.4,-7188.622519206774,42314.64572233133,0,0,3900.409753064282 -4065,5061,9160,9159,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.476048852340014,8.437563316098686,0,10,-1,-39.5681043600713,-9,1,1,2019,8,1,25,0,1,1,0,20.27226598109932,20.27226598109932,0,0,0,0,0,1,1,0,0,0,55.41,40.6,25.08,62.98,6.666666666666667,1,1,0,0,12,9,4,1,537.4,-7188.622519206774,42314.64572233133,0,0,3900.409753064282 -4065,5061,9161,-9,9160,9159,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.910970771193,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,537.4,-7188.622519206774,42314.64572233133,0,0,3900.409753064282 -4065,5061,9162,-9,9160,9159,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-887.427705619056,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,537.4,-7188.622519206774,42314.64572233133,0,0,3900.409753064282 -4065,5061,9163,-9,9160,9159,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.5438547628646,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,537.4,-7188.622519206774,42314.64572233133,0,0,3900.409753064282 -4066,5062,9164,9165,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.383944124864832,6.11249494111371,63,2,-131.9273952429397,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.399459232441881,54,45,45.03,36.34,8,1,1,0,0,0,4,2,1,487,247587.1203476708,141016.5195034357,203532.7969596759,0,1421.835963531244 -4066,5062,9165,9164,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,63,-2,54.80618623061176,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,45.03,36.34,54,45,5,1,1,0,0,0,4,2,1,487,247587.1203476708,141016.5195034357,203532.7969596759,0,1421.835963531244 -4067,5063,9166,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,6.395567806321771,6.333937577945883,0,0,-924.2792739686244,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.336288421071373,0,38.11,59.76,-9,-9,5,1,1,0,0,1,12,2,0,668,104899.0382148897,0,0,0,28.79693719638868 -4068,5064,9167,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-961.5078460676726,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.944991382036108,0,40.51,20.62,-9,-9,5,1,1,0,0,0,10,1,1,635,202508.3799484498,0,223677.1962780127,0,1670.304817461663 -4069,5065,9168,-9,9169,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1001.184557371349,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,11,1,0,726.5,39254.66554547173,0,0,0,1532.116998358038 -4069,5065,9169,-9,-9,-9,1,0,33,0,1,0,3,3,-9,1,2,0,0,0,0,0,-892.6607938167722,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,44.23,31.11,-9,-9,6.666666666666667,1,1,1,1,1,11,1,0,726.5,39254.66554547173,0,0,0,1532.116998358038 -4070,5066,9170,9171,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,6.926069526861062,6.932312629419006,6.159717778426215,40,1,-68.1928112770847,0,3,3,2019,7,0,16,37,1,0,0,5.934527000431935,5.934527000431935,0,0,0,0,0,0,0,0,0,6.225172214632365,52.54,52.91,53.44,55.06,10,1,1,0,0,10,8,5,1,1619.5,914797.9715868861,878479.4290321381,0,0,3254.613850571418 -4070,5066,9171,9170,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.531963163153051,8.560528316532151,6.123329531657721,40,-1,-65.08990139717183,0,-9,-9,2019,7,0,40,37,1,0,0,14.89079624529313,14.89079624529313,0,0,0,0,0,0,0,0,0,6.547958724801018,53.44,55.06,52.54,52.91,6.666666666666667,1,1,0,0,12,8,5,1,1619.5,914797.9715868861,878479.4290321381,0,0,3254.613850571418 -4071,5067,9172,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.786163957970018,9.487469671884449,4.818062266914976,31,2,-38.45248354891589,0,3,3,2019,15,4,35,35,1,4,0,54.58199651480829,54.58199651480829,0,0,0,0,0,1,1,0,5.33047869841818,5.052846869824425,49.04,55.86,59.04,54.12,8.333333333333334,1,1,0,0,10,9,5,1,186,2302175.579748175,1377983.709155731,368477.6936012472,0,9254.960277336282 -4071,5068,9173,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.512951813508617,7.669058048350245,31,-2,-48.74727748537229,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.922686728307293,7.835835576539658,59.04,54.12,49.04,55.86,10,1,1,0,0,8,9,5,1,150,570153.2841295185,172591.2022374066,345229.791875062,0,1597.021799295599 -4072,5069,9174,9175,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.363670872805088,8.194328656812363,8,6,-5.103753410514569,0,-9,-9,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,2.967666233757362,8.38473367692926,28.21,57.67,44.08,59.33,3.333333333333333,1,1,0,0,5,2,4,1,482.5,2484306.6400037,1407108.71165238,293002.4239191588,0,3151.399209329627 -4072,5069,9175,9174,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.757845587021388,6.587641474405621,11,-6,-50.97992506820145,0,2,1,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.349344848281472,6.623351011728662,44.08,59.33,28.21,57.67,8.333333333333334,1,1,0,0,5,2,4,1,482.5,2484306.6400037,1407108.71165238,293002.4239191588,0,3151.399209329627 -4073,5070,9176,-9,9177,9178,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.116851840766,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,925.3333333333334,-42305.01588509874,10672.46063135572,221552.8704790453,187384.2098284825,1926.339625941921 -4073,5070,9177,9178,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,6.43939037191279,6.694814990306212,0,16,1,-51.00125524058125,0,2,3,2019,30,11,12,7,1,11,0,6.262286789041196,6.262286789041196,0,0,0,0,0,1,1,0,0,0,42.44,64.58,47.32,52.7,1.666666666666667,1,1,0,0,10,10,3,0,925.3333333333334,-42305.01588509874,10672.46063135572,221552.8704790453,187384.2098284825,1926.339625941921 -4073,5070,9178,9177,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.415894398719171,8.321862231532052,0,9,-1,-83.76421879314097,0,-9,-9,2019,11,0,38,38,1,0,0,10.06688176954035,10.06688176954035,0,0,0,0,0,1,1,0,0,0,47.32,52.7,42.44,64.58,5,1,1,0,0,6,10,3,0,925.3333333333334,-42305.01588509874,10672.46063135572,221552.8704790453,187384.2098284825,1926.339625941921 -4074,5071,9179,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.485360242653664,8.381912221935433,0,0,0,-1022.573505616264,0,3,3,2019,10,1,39,37,1,1,0,17.70531606031236,17.70531606031236,0,0,0,0,0,0,0,0,1.443005291009014,0,46.86,45.14,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,243,65610.53132085237,-6484.941310419716,0,0,2032.325919935425 -4075,5072,9180,9181,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.576997336296222,7.837857865497825,0,10,3,119.5097392446215,0,2,2,2019,13,5,40,45,1,5,0,7.042774799043253,7.042774799043253,0,0,0,0,0,1,0,1,0,0,57.16,56.15,30.34,53.69,1.666666666666667,1,1,0,0,11,5,3,1,537,843742.848601989,689337.1523614377,222880.9172460164,0,1682.539590219396 -4075,5072,9181,9180,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,10,-3,-18.60963539673074,0,2,2,2019,18,8,0,0,3,8,0,0,0,0,0,0,0,42,1,0,1,0,0,30.34,53.69,57.16,56.15,5,1,1,0,0,1,5,3,1,537,843742.848601989,689337.1523614377,222880.9172460164,0,1682.539590219396 -4075,5073,9182,-9,9181,9180,1,1,28,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1017.701058480309,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,0,1,1,1,0,9,5,1,1,1146,138059.9030244751,0,0,0,484.4379066069561 -4076,5074,9183,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.327147322088342,7.935127719460677,0,0,-1044.081053172031,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.679827651822754,8.204491054419794,30.98,34.75,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,554,682585.530682036,524866.5324356343,140650.079990313,0,2866.604516934031 -4077,5075,9184,9185,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,0,0,0,16,0,63.39593221386721,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.24,53.95,51.14,60.45,8.333333333333334,1,1,0,0,4,11,3,1,548.6666666666666,25025.77799655653,4166.087983586719,118340.9344871947,52781.06614102206,1658.102241353508 -4077,5075,9185,9184,-9,-9,1,1,33,1,1,0,1,1,-9,0,5,8.355030533954723,8.436336537912013,0,16,0,-150.5178569912668,0,1,1,2019,13,4,64,60,1,4,0,7.386796554352583,7.386796554352583,0,0,0,0,0,1,1,0,0,0,51.14,60.45,47.24,53.95,8.333333333333334,1,1,0,0,8,11,3,1,548.6666666666666,25025.77799655653,4166.087983586719,118340.9344871947,52781.06614102206,1658.102241353508 -4077,5075,9186,-9,9184,9185,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.525019384383,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,548.6666666666666,25025.77799655653,4166.087983586719,118340.9344871947,52781.06614102206,1658.102241353508 -4078,5076,9187,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.850524688611626,6.121905828564828,0,0,-1017.701297652343,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.645684700160212,54.55,46.39,-9,-9,6.666666666666667,3,4,0,0,0,2,2,0,210,224306.5446169648,161072.1362086003,0,0,1225.350237843318 -4079,5077,9188,-9,-9,-9,1,0,43,0,0,0,1,1,1,0,2,8.708861033042377,8.833908061398409,0,0,0,-1043.385357780292,-9,2,3,2019,15,5,20,0,1,5,0,37.87719043783944,37.87719043783944,0,0,0,0,0,0,0,0,.3066460208646861,0,58.48,28.63,-9,-9,8.333333333333334,1,1,0,0,8,7,5,0,142,284005.6106752453,140638.597266772,0,0,2006.293273142372 -4080,5078,9189,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,4.766476727270807,4.985797306072861,0,0,-1153.27414433188,0,-9,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.528699318039707,4.522473045506815,41.54,23.29,-9,-9,3.333333333333333,1,1,0,1,3,10,2,0,1060,361939.1662155946,176334.0442834194,57150.97395011816,0,982.9481429323559 -4080,5079,9190,-9,-9,9189,1,1,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1066.955491243443,0,-9,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.32,46.06,-9,-9,1.666666666666667,1,1,1,1,0,10,1,0,2512,-15164.56435635629,0,0,0,407.6706189652373 -4080,5080,9191,-9,-9,9189,1,0,21,0,0,0,3,3,-9,0,4,6.530741618780592,6.363141721986532,0,3,-11,8.376528523122488,0,-9,3,2019,10,0,5,5,1,0,0,16.46449785995463,16.46449785995463,0,0,0,0,0,1,1,0,0,0,56.57,57.78,54.2,57.49,8.333333333333334,1,1,0,0,2,10,3,0,637,-28552.89581623712,0,0,0,824.9024991552653 -4080,5081,9192,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.37857926445085,7.777911542337299,0,3,11,53.08276004655212,-9,-9,-9,2019,7,0,36,0,1,0,0,6.476711133777788,6.476711133777788,0,0,0,0,2,1,1,0,0,0,54.2,57.49,56.57,57.78,6.666666666666667,1,1,0,0,3,10,3,0,578,-80184.58268773576,-56488.42125585839,0,0,1302.799919674204 -4081,5082,9193,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.89278330402395,8.403811698832397,0,0,0,-964.1670478782289,0,3,2,2019,11,0,41,38,1,0,0,9.570708307847218,9.570708307847218,0,0,0,0,0,0,0,0,7.73801809311365,0,58.89,35.37,-9,-9,6.666666666666667,2,3,0,0,8,9,4,1,2316,450582.3035416661,221250.1151101789,192062.5497674349,0,2353.308338303541 -4082,5083,9194,9195,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.960779284476216,7.941358185472353,0,9,3,-19.08836076849484,0,2,3,2019,5,0,36,37,1,0,0,8.915237697290353,8.915237697290353,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.01,53.24,8.333333333333334,1,1,0,0,10,12,4,0,462.5,777595.4502875219,447864.9077031602,131624.8085940079,0,2268.422281868056 -4082,5083,9195,9194,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.595889115950004,7.5888290322901,0,9,-3,-1.5860033282787,0,-9,-9,2019,12,0,34,37,1,0,0,9.70331033915439,9.70331033915439,0,0,0,0,0,0,0,0,0,0,43.01,53.24,57.16,56.15,6.666666666666667,1,1,0,0,10,12,4,0,462.5,777595.4502875219,447864.9077031602,131624.8085940079,0,2268.422281868056 -4083,5084,9196,9198,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,6.299993600502065,6.802879556353831,0,9,5,-95.59505805373362,0,3,2,2019,7,0,40,40,1,0,0,1.968552658374361,1.968552658374361,0,0,0,0,0,1,1,0,2.841353448917819,0,52,47.5,57.16,56.15,8.333333333333334,1,1,0,0,10,2,3,1,1056.666666666667,307680.8805365411,48615.52761988185,215758.5262220739,0,1314.180733797742 -4083,5084,9197,-9,9198,9196,1,1,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.440122075426,1,2,1,2019,36,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,3.56,59.88,-9,-9,0,1,1,0,0,0,2,3,1,1056.666666666667,307680.8805365411,48615.52761988185,215758.5262220739,0,1314.180733797742 -4083,5084,9198,9196,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.639863949660054,7.15373933500462,0,9,-5,-95.31331751417891,0,3,3,2019,7,0,1,20,1,0,0,172.7541575434639,172.7541575434639,0,0,0,0,0,1,1,0,2.782152070229173,0,57.16,56.15,52,47.5,10,1,1,0,0,6,2,3,1,1056.666666666667,307680.8805365411,48615.52761988185,215758.5262220739,0,1314.180733797742 -4084,5085,9199,9200,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.781078966663637,8.645993771228195,0,7,2,190.2072005551193,0,3,3,2019,7,0,47,45,1,0,0,15.59904406717968,15.59904406717968,0,0,0,0,0,0,0,0,0,0,48.28,60.18,35.97,41.19,0,1,1,0,0,9,11,4,0,1055.5,1185370.187526757,597931.0821002587,147135.2912033975,0,2285.73308174992 -4084,5085,9200,9199,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,7,-2,57.15385870487412,0,-9,3,2019,17,4,0,16,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,41.19,48.28,60.18,5,1,1,1,0,8,11,4,0,1055.5,1185370.187526757,597931.0821002587,147135.2912033975,0,2285.73308174992 -4085,5086,9201,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.017674127187142,7.945210052802934,0,0,0,-1160.960840457132,-9,2,1,2019,13,1,40,0,1,1,0,9.118537210761842,9.118537210761842,0,0,0,0,0,0,0,0,1.247640250495292,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,3,1,4,0,198,32564.92545463191,41535.74749830266,0,0,1308.986020893404 -4086,5087,9202,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.665577063791245,8.861083832889408,6.974969606285375,0,0,-913.3372657067441,0,2,2,2019,16,4,30,50,1,4,0,21.49643658322755,21.49643658322755,0,0,0,0,0,1,1,0,6.952000582815512,0,46.08,57.2,-9,-9,0,1,1,0,1,7,8,5,1,559,13182.64100521308,0,0,0,2819.411525493178 -4087,5088,9203,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-983.1857263058268,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.272482606750542,0,0,1,1,0,0,0,67.12,15.13,-9,-9,10,1,1,0,0,0,6,1,0,1071,113522.1695474827,0,0,0,2358.475156574569 -4088,5089,9204,-9,9205,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-879.7796756767783,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,1349,-142616.9624433934,0,71685.60906970997,117548.1995991071,1811.41348968611 -4088,5089,9205,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.439277441328223,8.667221290361267,0,0,0,-940.5846598880967,0,-9,-9,2019,15,3,46,45,1,3,0,14.44598142721252,14.44598142721252,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,1349,-142616.9624433934,0,71685.60906970997,117548.1995991071,1811.41348968611 -4088,5089,9206,-9,9205,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.593143498842,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1349,-142616.9624433934,0,71685.60906970997,117548.1995991071,1811.41348968611 -4089,5090,9207,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1032.904892945141,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,0,1,0,0,35.11,16.75,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1165,330043.8749376452,0,102468.5341732522,0,2703.528360477909 -4090,5091,9208,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.549528389460527,6.875124679022099,0,0,-1054.189262616949,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.359283469680781,0,55.61,50.3,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,2590,428885.0040694327,115777.3915903472,173724.9615154866,0,1924.511806542565 -4091,5092,9209,9210,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.798898782077428,7.567368346028322,10,1,-60.25909233680612,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.24176936035601,8.166570353928346,57.06,57.76,54.94,53.18,8.333333333333334,1,1,0,0,8,9,4,1,981,2942147.689905534,1807992.965174489,550164.0293306051,0,3513.44264972471 -4091,5092,9210,9209,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.350079117881405,8.452371676990435,10,-1,84.62180573735863,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,8.054612302644319,8.344933235031899,54.94,53.18,57.06,57.76,1.666666666666667,1,1,0,0,1,9,4,1,981,2942147.689905534,1807992.965174489,550164.0293306051,0,3513.44264972471 -4092,5093,9211,9212,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-25.42803890857832,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.67528104971902,0,43.35,52.88,56.1,49.93,6.666666666666667,1,1,0,0,0,11,3,1,1067.5,858247.7747997678,553462.3803451627,235812.0264293599,0,1599.237059098105 -4092,5093,9212,9211,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.704527174891816,7.845056306732119,7,3,-36.90778243496024,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.922341240529149,8.01477075516506,56.1,49.93,43.35,52.88,8.333333333333334,1,1,0,0,3,11,3,1,1067.5,858247.7747997678,553462.3803451627,235812.0264293599,0,1599.237059098105 -4093,5094,9213,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,4.537116710691236,4.770849296421998,0,0,0,-1054.773954372033,0,1,2,2019,12,3,40,40,1,3,0,.29419373245369,.29419373245369,0,0,0,0,0,1,1,0,6.715588845279117,0,55.29,44.79,-9,-9,8.333333333333334,1,1,0,0,12,5,2,1,644,241279.716964693,80819.84206749566,0,0,-299.4531216976119 -4094,5095,9214,9215,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.857398580558394,7.640963833347162,42,-2,20.0260370781204,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,2.937525756895963,7.697441267072652,46.34,61.24,39.23,46.02,6.666666666666667,1,1,0,0,0,9,3,1,1018,1148606.388163946,704024.0573197035,289452.0528751239,0,1430.369342898619 -4094,5095,9215,9214,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.062135561456314,7.187982266273122,42,2,-1.316250055114621,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,6.597401383916541,7.280758440484793,39.23,46.02,46.34,61.24,3.333333333333333,1,1,0,0,2,9,3,1,1018,1148606.388163946,704024.0573197035,289452.0528751239,0,1430.369342898619 -4095,5096,9216,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.60431654705,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,280,47733.74624969083,0,0,0,752.7021157892943 -4096,5097,9217,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1012.007023805341,0,2,3,2019,22,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.25,19,-9,-9,5,1,1,0,0,0,2,1,0,167,270355.8783884692,0,0,0,1332.735705583473 -4097,5098,9218,9219,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.632046657700986,7.866489643147882,47,1,69.06351175613082,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.91398325097227,8.056336748192024,63.96,30.07,45.47,53.5,8.333333333333334,1,1,0,0,7,5,4,1,422.5,1118773.222450335,944847.1629689776,250633.9483827206,0,3439.558854340944 -4097,5098,9219,9218,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.385826496144045,7.659285335471593,47,-1,-20.53993013804891,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.09578682160935,7.452131161680923,45.47,53.5,63.96,30.07,10,1,1,0,0,4,5,4,1,422.5,1118773.222450335,944847.1629689776,250633.9483827206,0,3439.558854340944 -4098,5099,9220,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-941.4527025270525,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,6.472630121033548,0,41.08,20.85,-9,-9,8.333333333333334,2,3,0,1,0,6,1,1,293,0,0,0,0,740.3134860279827 -4098,5100,9221,-9,9220,-9,1,1,30,0,0,0,2,2,-9,0,4,6.036923169209993,6.151528467957554,0,0,0,-1065.61995087039,0,3,3,2019,20,8,40,40,1,8,1,1.424467109074688,1.424467109074688,0,0,0,0,0,1,1,0,6.805191702882837,0,32.9,57.87,-9,-9,3.333333333333333,2,3,0,0,5,6,2,1,805,23641.84377546778,0,0,0,418.7079885093801 -4099,5101,9222,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.073884430736029,7.218594114031684,0,0,0,-1103.567245343359,0,-9,-9,2019,8,0,15,19,1,0,0,9.757591827062534,9.757591827062534,0,0,0,0,0,1,1,0,6.522764805074591,0,55.27,39.27,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,2577,530580.2733405323,130460.2026616294,545609.4715720019,0,722.3408187255136 -4100,5102,9223,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.063774342371438,8.591284726006956,7.159041965478202,0,0,-1014.931990126024,0,3,3,2019,12,0,36,36,1,0,0,12.67798520219887,12.67798520219887,0,0,0,0,0,0,0,0,6.374213257488637,7.700942821480605,52.64,36.51,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,367,356985.0280169964,248315.3269980966,0,0,2728.558831245172 -4100,5103,9224,-9,-9,9223,1,1,37,0,0,0,2,2,-9,0,4,7.589094088680227,7.722979288269803,0,0,0,-1065.064313872562,0,-9,2,2019,10,0,40,40,1,1,1,5.1259929866669,5.1259929866669,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,1,2,3,1,649,-59209.29278496982,-53149.18540351905,0,0,913.3172491751955 -4101,5104,9225,-9,9228,9226,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.808828115129,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.2730069833249651,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,756.25,349904.1043838586,281878.6960893496,71073.49433468489,-4207.541491307407,3009.360616725544 -4101,5104,9226,9228,-9,-9,1,1,31,0,2,0,2,2,-9,0,5,7.011951842504555,8.226665504911843,8.039933293428032,10,1,-28.45682514955379,0,2,2,2019,7,0,60,70,1,0,0,2.060950075824038,2.060950075824038,0,0,0,0,0,0,0,0,8.228058043008522,0,57.06,57.76,22.5,58.65,8.333333333333334,1,1,0,0,6,2,4,1,756.25,349904.1043838586,281878.6960893496,71073.49433468489,-4207.541491307407,3009.360616725544 -4101,5104,9227,-9,9228,9226,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.9457845048526,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,756.25,349904.1043838586,281878.6960893496,71073.49433468489,-4207.541491307407,3009.360616725544 -4101,5104,9228,9226,-9,-9,1,0,30,0,2,0,1,1,-9,0,3,7.858625230133272,7.988915714398375,0,10,-1,24.04623692307029,0,1,2,2019,29,12,39,25,1,12,0,6.442046988589427,6.442046988589427,0,0,0,0,0,0,0,0,0,0,22.5,58.65,57.06,57.76,1.666666666666667,1,1,0,0,8,2,4,1,756.25,349904.1043838586,281878.6960893496,71073.49433468489,-4207.541491307407,3009.360616725544 -4102,5105,9229,9230,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.314665561947406,8.317626975050128,0,3,3,27.22449791125925,0,-9,-9,2019,8,0,39,39,1,0,0,11.19147959477488,11.19147959477488,0,0,0,0,0,0,0,0,2.827462497137283,0,55.34,54.26,45.81,61.51,8.333333333333334,1,1,0,0,10,12,5,1,900.5,354909.4888275194,605711.842086584,0,0,2792.881848838666 -4102,5105,9230,9229,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.28495253313096,8.12307602908572,0,3,-3,-.3862392145575174,0,2,3,2019,15,3,30,27,1,3,0,13.88565430178174,13.88565430178174,0,0,0,0,0,0,0,0,3.83877731803913,0,45.81,61.51,55.34,54.26,6.666666666666667,1,1,0,0,7,12,5,1,900.5,354909.4888275194,605711.842086584,0,0,2792.881848838666 -4103,5106,9231,9232,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.781947005734681,7.949886465685997,0,7,-3,71.4560835132468,0,1,1,2019,11,0,40,40,1,0,0,6.734937716195054,6.734937716195054,0,0,0,0,0,0,0,0,0,0,45.58,47.97,48.87,58.55,8.333333333333334,1,1,0,0,10,6,5,0,1020,815677.9487551387,479311.2586447555,428408.9750849111,283944.1468297774,4839.411670947373 -4103,5106,9232,9231,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.294787860354839,9.260255604013505,0,7,3,123.4894512747947,0,-9,-9,2019,10,0,43,43,1,0,0,33.16684044025012,33.16684044025012,0,0,0,0,0,0,0,0,4.673502519368925,0,48.87,58.55,45.58,47.97,8.333333333333334,1,1,0,0,8,6,5,0,1020,815677.9487551387,479311.2586447555,428408.9750849111,283944.1468297774,4839.411670947373 -4104,5107,9233,9234,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,10,-5,0,0,2,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,16.74,60.61,47.93,43.26,3.333333333333333,1,1,1,1,1,12,1,1,409,-120601.4751956765,-45507.01108700746,0,0,794.2024373324327 -4104,5107,9234,9233,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,10,5,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.93,43.26,16.74,60.61,5,1,1,0,1,0,12,1,1,409,-120601.4751956765,-45507.01108700746,0,0,794.2024373324327 -4105,5108,9235,9236,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,4.769826079355654,6.42183912368442,6.010513351084733,29,-4,112.2110785563358,0,1,2,2019,12,2,2,1,1,2,0,7.788602283087271,7.788602283087271,0,0,0,0,2,0,0,0,5.940650398127411,0,42.78,54.5,57.01,50.75,3.333333333333333,1,1,0,0,11,4,3,1,1080.5,64108.05858839575,79455.12788493381,97632.25360595755,26140.83004442482,1467.047483285224 -4105,5108,9236,9235,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.134080646572432,8.222908158674416,0,29,4,-73.7272370114415,0,2,2,2019,6,0,35,38,1,0,0,10.40235809323851,10.40235809323851,0,0,0,0,0,0,0,0,.3248426525452234,0,57.01,50.75,42.78,54.5,8.333333333333334,1,1,0,0,11,4,3,1,1080.5,64108.05858839575,79455.12788493381,97632.25360595755,26140.83004442482,1467.047483285224 -4105,5109,9237,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.837679755457263,7.948847076975144,0,0,0,-1126.027798501247,0,1,2,2019,7,0,42,42,1,0,0,8.210623381079314,8.210623381079314,0,0,0,0,7,0,0,0,4.495128266480414,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,302,-103788.3523538309,31089.52274517438,0,0,1295.26373489682 -4106,5110,9238,9239,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,8.245227255694235,7.760969911746366,29,2,46.58550674761852,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,7.972234477253435,48.61,26.97,46.54,23.49,8.333333333333334,1,1,0,0,0,6,4,1,396.5,1355777.768881775,1081130.704640314,170617.2245398148,0,4303.460290130377 -4106,5110,9239,9238,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.782615268639351,7.722659319602365,29,-2,74.92018659765733,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,33.52884697219686,0,27,1,1,0,.6653715503489849,7.720899754626165,46.54,23.49,48.61,26.97,5,1,1,0,0,0,6,4,1,396.5,1355777.768881775,1081130.704640314,170617.2245398148,0,4303.460290130377 -4107,5111,9240,9241,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.392552890936363,9.538889772813,0,29,-2,-24.8334004109057,0,-9,-9,2019,9,1,38,38,1,1,0,33.61004111669163,33.61004111669163,0,0,0,0,7,0,0,0,2.073205171919652,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,348.5,1391276.626788746,874689.3666588325,469608.1595846429,172418.1635460494,3227.265132521987 -4107,5111,9241,9240,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,0,0,0,29,2,2.279436278879835,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.052099999990827,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,348.5,1391276.626788746,874689.3666588325,469608.1595846429,172418.1635460494,3227.265132521987 -4108,5112,9242,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.968860515387655,7.976557103013977,0,0,0,-1039.534145691544,0,3,3,2019,7,0,40,30,1,0,0,7.560294257601663,7.560294257601663,0,0,0,0,2,1,0,1,0,0,62.27,32.41,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,376,-34671.29945757511,85461.71169005689,0,0,1568.999318223249 -4109,5113,9243,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.8175573947245,0,-9,-9,2019,27,12,0,0,3,12,0,0,0,1,0,0,0,0,1,0,1,0,0,25.5,44.17,-9,-9,3.333333333333333,1,1,1,1,0,9,1,0,112,37480.85748015116,0,0,0,0 -4110,5114,9244,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.883276604054506,7.97838177442653,0,0,0,-1049.81235112115,0,2,2,2019,11,0,40,50,1,0,0,6.841196456430113,6.841196456430113,0,0,0,0,0,0,0,0,2.117829788143127,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,130,-320719.3794433891,26452.83176064947,0,0,1127.747694678954 -4111,5115,9245,9246,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.737533689429936,7.809982900023077,0,7,8,4.717912977515097,0,2,3,2019,12,1,22,30,1,1,0,11.27050950524962,11.27050950524962,0,0,0,0,0,0,0,0,0,0,52.94,47.11,40.98,52.59,8.333333333333334,1,1,0,0,3,11,4,1,571,1517410.658484354,968571.3052455038,302153.7030337772,0,3638.659999873222 -4111,5115,9246,9245,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.746583220954905,8.663149929912533,0,7,-8,161.432434226503,-9,-9,-9,2019,11,0,40,0,1,0,0,20.62819108149454,20.62819108149454,0,0,0,0,0,0,0,0,6.303841233587746,0,40.98,52.59,52.94,47.11,6.666666666666667,1,1,0,0,4,11,4,1,571,1517410.658484354,968571.3052455038,302153.7030337772,0,3638.659999873222 -4112,5116,9247,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.65135021494293,8.412027121294257,0,0,0,-1047.240001338633,0,1,1,2019,19,6,40,40,1,6,0,11.93042382992533,11.93042382992533,0,0,0,0,0,0,0,0,3.765136156400627,0,40.72,54.38,-9,-9,3.333333333333333,1,1,0,0,11,8,4,1,621,1157024.270083268,640332.5940343054,426075.3939959112,0,2429.250779397872 -4113,5117,9248,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.371040065123361,5.121244963892126,0,0,-1086.336401034583,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.120384545983255,44.59,45.67,-9,-9,6.666666666666667,1,1,0,0,5,13,2,1,145,-62667.71205146083,-15411.8991621135,0,0,758.1081744080266 -4113,5118,9249,-9,9248,-9,1,1,32,0,0,0,2,2,-9,0,5,8.043481505296162,7.776780462913196,0,0,0,-1005.077361402668,0,1,2,2019,6,0,38,30,1,0,0,6.710673696842884,6.710673696842884,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,222,-10976.95128845285,0,0,0,1355.449305041309 -4114,5119,9250,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.663838431547,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,11.99762394087957,0,0,1,1,0,3.575046550183893,0,52.21,38.18,-9,-9,10,1,1,0,0,0,9,1,1,251,70494.78702358517,0,0,0,1076.737574545313 -4115,5120,9251,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.254824032779709,7.480596051249283,0,0,0,-1065.123281501401,0,2,-9,2019,12,0,41,41,1,0,1,3.537112729485455,3.537112729485455,0,0,0,0,0,0,0,0,0,0,35.18,56.79,-9,-9,6.666666666666667,3,4,0,0,5,8,3,0,257,59628.88671005679,0,0,0,402.4457654079064 -4116,5121,9252,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.303165097092146,8.461264234912477,0,0,0,-1042.357815645026,0,-9,-9,2019,10,1,80,15,1,1,0,5.913358859622047,5.913358859622047,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,1,7,12,4,0,929,-13471.59499189987,-16140.71849378041,0,0,1244.256738493889 -4116,5121,9253,-9,9252,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-823.7383802353392,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,929,-13471.59499189987,-16140.71849378041,0,0,1244.256738493889 -4117,5122,9254,9255,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,38,-6,-10.93592634450821,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,10,1,1,0,0,6,5,3,1,732,931740.1717378842,399014.8605949187,230490.7908779548,0,2325.986093883004 -4117,5122,9255,9254,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.581658551979585,7.417408899644632,33,6,-58.83057709787797,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.539764536201254,57.16,56.15,54.1,59.11,6.666666666666667,1,1,0,0,6,5,3,1,732,931740.1717378842,399014.8605949187,230490.7908779548,0,2325.986093883004 -4118,5123,9256,9257,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,7.749146247995164,7.618105046633076,0,4,1,-66.76479477547052,0,-9,-9,2019,13,3,50,60,1,3,0,6.519569731238027,6.519569731238027,0,0,0,0,0,1,1,0,.7830335478448009,0,48.77,45.16,41.6,53.68,8.333333333333334,1,1,0,0,10,7,3,1,886.3333333333334,-49080.7171609182,-72876.71426093781,0,0,1769.168140030552 -4118,5123,9257,9256,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.472050699794542,7.484989825362963,0,10,-1,23.52350135568269,0,2,2,2019,10,0,35,30,1,0,0,5.932604432004419,5.932604432004419,0,0,0,0,0,1,1,0,0,0,41.6,53.68,48.77,45.16,1.666666666666667,1,1,0,0,10,7,3,1,886.3333333333334,-49080.7171609182,-72876.71426093781,0,0,1769.168140030552 -4118,5123,9258,-9,9257,9256,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.569915568604,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,886.3333333333334,-49080.7171609182,-72876.71426093781,0,0,1769.168140030552 -4119,5124,9259,-9,-9,-9,1,0,33,0,3,0,3,3,-9,0,4,7.417035860040866,7.916561419898652,7.683756620410193,0,0,-940.7802367802318,0,2,2,2019,13,3,30,0,1,3,0,4.69339958877579,4.69339958877579,0,0,0,0,0,1,1,0,6.727773077031375,7.109323160270273,35.67,64.46000000000001,-9,-9,3.333333333333333,1,1,0,0,1,8,3,1,414.75,56116.71579449041,0,0,0,3741.383801147821 -4119,5124,9260,-9,9259,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1061.071736796637,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,3,1,414.75,56116.71579449041,0,0,0,3741.383801147821 -4119,5124,9261,-9,9259,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.3101461413668,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,1,414.75,56116.71579449041,0,0,0,3741.383801147821 -4119,5124,9262,-9,9259,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.6798645756736,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,1,414.75,56116.71579449041,0,0,0,3741.383801147821 -4120,5125,9263,9264,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.405537812051683,7.186495913353695,0,31,2,89.24050246173468,0,2,2,2019,6,0,15,15,1,0,0,11.80752471447075,11.80752471447075,0,0,0,0,0,0,0,0,1.575047013775662,0,57.16,56.15,57.16,56.15,10,1,1,0,0,13,8,5,1,1023.5,552026.6142376121,-41576.45216155439,473859.0092883196,97731.29292546026,4815.836185694125 -4120,5125,9264,9263,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.672026546725212,9.677445209254124,0,10,-2,33.70403551544291,0,2,3,2019,8,0,45,45,1,0,0,35.08830998956626,35.08830998956626,0,0,0,0,2,0,0,0,3.79777882363639,0,57.16,56.15,57.16,56.15,10,1,1,0,0,13,8,5,1,1023.5,552026.6142376121,-41576.45216155439,473859.0092883196,97731.29292546026,4815.836185694125 -4120,5126,9265,-9,9263,9264,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1118.6378949994,1,2,2,2019,11,0,0,72,2,0,1,0,0,0,0,0,0,0,0,0,0,3.051416121627855,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,1,4,8,1,1,149,0,0,0,0,22.87698615180766 -4121,5127,9266,9267,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.447896449877225,7.390877528939691,37,1,-9.35571245882327,0,3,3,2019,5,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.368388973345839,59.48,46.97,51.25,50.81,10,1,1,0,0,10,2,3,1,411.5,668239.5478914153,669317.8568015466,87342.03932480715,0,979.5269851173625 -4121,5127,9267,9266,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,37,-1,-78.75391576003818,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.347666367395521,0,51.25,50.81,59.48,46.97,8.333333333333334,1,1,0,0,0,2,3,1,411.5,668239.5478914153,669317.8568015466,87342.03932480715,0,979.5269851173625 -4121,5128,9268,-9,9267,9266,1,0,32,0,0,0,1,1,-9,0,3,7.852945994160316,8.223133515151973,0,0,0,-970.106023985575,0,2,2,2019,17,5,39,38,1,5,0,8.947663337792301,8.947663337792301,0,0,0,0,0,0,0,0,4.371722594968333,0,42.78,54.5,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,2089,-50222.08301925584,112506.4270991181,135448.0393805724,128616.0145764211,1506.578831868696 -4122,5129,9269,9270,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.708261370774796,7.586864663060949,0,27,0,-74.20260772723306,0,2,2,2019,14,0,28,15,1,3,0,8.28474326860635,8.28474326860635,0,0,0,0,2,0,0,0,0,0,45.9,27.36,39.22,56.75,6,3,4,0,1,10,8,3,0,613,454854.6085003719,5567.012556751317,539597.9212777629,0,798.5079580619974 -4122,5129,9270,9269,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,25,0,21.01233305061545,0,3,3,2019,14,6,0,37,3,6,0,0,0,0,0,0,0,14.5,0,0,0,.0892280967966619,0,39.22,56.75,45.9,27.36,3.333333333333333,3,4,0,1,11,8,3,0,613,454854.6085003719,5567.012556751317,539597.9212777629,0,798.5079580619974 -4122,5130,9271,-9,9270,9269,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-891.6272063291398,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.856884031249137,0,55.66,45.88,-9,-9,6.666666666666667,3,4,0,0,4,8,1,0,422,-133252.501560941,0,0,0,-343.5674054500212 -4123,5131,9272,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,6.262412226946486,5.798793176489618,0,0,-915.4685852078437,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.500610415018656,6.097735785547211,42.35,36.31,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,1221,206428.699957991,244337.6320978373,0,0,2190.090887299129 -4124,5132,9273,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.965215485377023,8.169519010368443,0,0,-998.6670909829965,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.189300814304183,52,47,-9,-9,7,1,1,0,0,0,13,4,1,590,625973.0221058322,0,142851.4251085896,0,2203.740859280278 -4125,5133,9274,9275,-9,-9,1,0,72,0,1,0,2,2,-9,0,1,0,0,0,55,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,20.7719351456192,0,0,1,1,0,0,0,42.2,13.43,43.14,54.57,1.666666666666667,2,3,0,0,0,8,1,1,513,635267.589763015,0,612429.9758492019,0,791.4225850707996 -4125,5133,9275,9274,-9,-9,1,1,76,0,1,0,1,1,-9,0,3,0,0,0,55,4,0,0,-9,-9,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.641163809640319,0,43.14,54.57,42.2,13.43,6.666666666666667,2,3,0,0,0,8,1,1,513,635267.589763015,0,612429.9758492019,0,791.4225850707996 -4125,5134,9276,9277,9274,9275,1,1,50,0,1,0,1,1,-9,0,1,8.434220288459107,8.461594030349824,0,8,4,-20.73392454933517,0,3,2,2019,28,11,45,45,1,11,0,10.59172598625171,10.59172598625171,0,0,0,0,7,1,1,0,3.413430251273731,0,36.7,47.15,49.26,50.65,1.666666666666667,2,3,0,1,10,8,3,1,716.6666666666666,778172.670234629,120190.9899207596,959115.0840683397,274646.895157736,1726.166628260422 -4125,5134,9277,9276,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,0,0,0,8,-4,162.2827357854034,-9,-9,-9,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49.26,50.65,36.7,47.15,10,2,3,1,0,10,8,3,1,716.6666666666666,778172.670234629,120190.9899207596,959115.0840683397,274646.895157736,1726.166628260422 -4125,5134,9278,-9,9277,9276,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.4782843382322,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,716.6666666666666,778172.670234629,120190.9899207596,959115.0840683397,274646.895157736,1726.166628260422 -4126,5135,9279,9281,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.56758597319336,8.442548820613466,0,20,0,115.9147994618975,0,2,2,2019,14,4,38,37,1,4,0,10.78238373645639,10.78238373645639,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.54,31.17,5,1,1,0,0,12,4,4,1,463.6666666666667,282832.047341869,37896.85184081612,85170.93050628087,62603.8611832322,3206.711840128167 -4126,5135,9280,-9,9281,9279,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.811086375382,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,463.6666666666667,282832.047341869,37896.85184081612,85170.93050628087,62603.8611832322,3206.711840128167 -4126,5135,9281,9279,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,7.28366110584713,7.691982039108344,0,20,0,-15.01513698281041,0,2,2,2019,11,1,25,25,1,1,0,10.18471819554241,10.18471819554241,0,0,0,0,0,1,1,0,0,0,41.54,31.17,54.2,57.49,8.333333333333334,1,1,0,0,10,4,4,1,463.6666666666667,282832.047341869,37896.85184081612,85170.93050628087,62603.8611832322,3206.711840128167 -4127,5136,9282,9283,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,0,0,0,12,1,-88.60109855064411,-9,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.59,31.32,28.08,62.63,8.333333333333334,1,1,0,1,0,2,4,0,538,407281.7539061556,129323.0324336314,258154.653900662,169753.1817982304,2337.547846765202 -4127,5136,9283,9282,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.724642881067673,8.834989741122685,0,12,-1,1.819267797071379,-9,2,2,2019,19,6,38,0,1,6,0,16.56404899535342,16.56404899535342,0,0,0,0,0,1,1,0,0,0,28.08,62.63,63.59,31.32,3.333333333333333,1,1,0,1,8,2,4,0,538,407281.7539061556,129323.0324336314,258154.653900662,169753.1817982304,2337.547846765202 -4127,5136,9284,-9,9282,9283,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.001186740368,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,4,0,538,407281.7539061556,129323.0324336314,258154.653900662,169753.1817982304,2337.547846765202 -4128,5137,9285,9286,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,46,1,0,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,1,0,13.23852453081909,0,0,1,1,0,0,0,50.9,20.61,47.89,53.42,6.666666666666667,1,1,0,0,0,2,1,0,886.5,-112824.4232847148,-34809.23462876622,42323.11913165556,0,1431.387590016936 -4128,5137,9286,9285,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,45,-1,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.89,53.42,50.9,20.61,6.666666666666667,1,1,0,0,3,2,1,0,886.5,-112824.4232847148,-34809.23462876622,42323.11913165556,0,1431.387590016936 -4128,5138,9287,-9,9285,9286,1,0,40,0,0,0,2,2,-9,0,3,7.732548662779597,7.750913279579867,0,0,0,-1108.010441897154,0,2,2,2019,5,0,30,0,1,0,0,8.597753580012746,8.597753580012746,0,0,0,0,2,1,1,0,0,0,54.91,49,-9,-9,10,1,1,0,0,7,2,3,0,576,-160907.96910942,0,0,0,1466.514440020211 -4128,5139,9288,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1064.145305418882,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1889,0,0,0,0,0 -4129,5140,9289,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-835.1398451659321,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,51.28,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,617,13574.35369335882,0,0,0,337.8316875639675 -4130,5141,9290,-9,9292,9291,1,0,19,0,0,1,2,0,0,0,4,0,4.164077897004117,4.236634105127331,0,0,-933.5400396260426,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.233167183334407,0,62.49,55.09,-9,-9,10,1,1,0,1,2,5,2,0,109,77543.09210257967,0,0,0,722.0709388860033 -4130,5142,9291,9292,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.901183643930612,8.043131517478542,0,1,6,-22.39719822217544,-9,-9,-9,2019,9,0,37,0,1,1,0,9.791537982450134,9.791537982450134,0,0,0,0,0,1,1,0,0,0,53,54,24.69,36.36,8,4,1,0,0,1,5,4,0,477.5,273395.5523050243,269496.5639563682,0,0,2411.593882035775 -4130,5142,9292,9291,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,7.76355862242502,7.310393766144541,0,1,-6,-126.4325739169689,0,3,3,2019,28,11,25,19,1,11,0,7.710726930566624,7.710726930566624,0,0,0,0,0,1,1,0,0,0,24.69,36.36,53,54,1.666666666666667,1,1,0,1,9,5,4,0,477.5,273395.5523050243,269496.5639563682,0,0,2411.593882035775 -4131,5143,9293,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.70102021642741,5.488122942697971,0,0,-923.9589048557657,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.128889043134313,5.827053221655422,62.82,33.31,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,354,611937.4366794074,121305.7961093511,423738.0620656559,836.5407208368888,956.8522435883322 -4132,5144,9294,9295,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.929204918277343,8.850713720051218,0,25,-1,-31.10088193113749,0,3,3,2019,18,7,50,50,1,7,0,19.72728296896276,19.72728296896276,0,0,0,0,0,0,0,0,0,0,41.78,61.86,58.89,48.6,8.333333333333334,1,1,0,0,10,12,5,1,1076,688509.3349936171,258415.2178757765,177961.0075711605,0,3929.325732417593 -4132,5144,9295,9294,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.933361469267048,8.018082143094583,0,28,1,35.57802895779961,0,3,3,2019,8,0,35,22,1,0,0,8.464877950364459,8.464877950364459,0,0,0,0,0,0,0,0,0,0,58.89,48.6,41.78,61.86,8.333333333333334,1,1,0,0,10,12,5,1,1076,688509.3349936171,258415.2178757765,177961.0075711605,0,3929.325732417593 -4133,5145,9296,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1046.987278995937,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.070120508016473,0,32.5,17.73,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1166,-100458.9747725577,0,0,0,1211.667009753013 -4134,5146,9297,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.940693089377657,8.606592426706923,0,0,0,-984.0794216881037,0,2,2,2019,11,0,48,50,1,0,0,12.03233284494589,12.03233284494589,0,0,0,0,0,0,0,0,0,0,56.52,48.31,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,198,512242.0070009063,436146.50779842,0,0,1718.828643538849 -4135,5147,9298,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.45470930005018,8.674687823008577,0,0,0,-1024.909263641257,0,-9,2,2019,16,4,35,37,1,4,0,15.55339542832457,15.55339542832457,0,0,0,0,0,0,0,0,4.294255511292014,0,47.39,48.42,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,394,867120.4296404591,755252.1579090757,56424.23788533171,105.9625774397537,1520.899448798927 -4135,5148,9299,-9,-9,9298,1,0,24,0,0,0,1,1,-9,0,5,7.979238104161952,8.247466407002094,0,0,0,-934.6262089346743,0,2,2,2019,9,0,49,55,1,0,1,8.61362603719944,8.61362603719944,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,6.666666666666667,1,1,0,0,4,4,4,1,860,-45679.23928258497,72183.33395918639,0,0,1484.179570155394 -4135,5149,9300,-9,-9,9298,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-954.772807102398,0,1,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,1,4,1,1,318,-5242.766933964576,0,0,0,0 -4136,5150,9301,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1003.979465648209,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,27.98,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1107,0,0,0,0,663.9157409496034 -4137,5151,9302,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.04274091612757,8.365545739762986,6.730436729949937,0,0,-1106.500426335026,0,2,2,2019,13,2,37,40,1,2,0,8.269645472131135,8.269645472131135,0,0,0,0,0,1,1,0,7.076084174187661,0,40.72,34.06,-9,-9,3.333333333333333,1,1,0,0,10,10,3,0,1615,134083.1171324893,0,0,0,2128.564576397756 -4137,5151,9303,-9,9302,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1087.78249035196,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,3,0,1615,134083.1171324893,0,0,0,2128.564576397756 -4138,5152,9304,9305,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.854892083678472,7.241394557777824,5.969176301340194,46,-8,-90.84374376630436,0,3,-9,2019,13,3,25,32,1,3,0,5.827151896961467,5.827151896961467,0,0,0,0,0,1,1,0,0,5.707183320467001,47.04,57.99,53.46,39.14,8.333333333333334,1,1,0,0,4,9,3,1,407,578968.2246330543,112394.86263183,333493.973414693,0,2323.703967675675 -4138,5152,9305,9304,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.413563611230237,6.411486306212767,46,8,54.86527769572164,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.153943526699853,53.46,39.14,47.04,57.99,8.333333333333334,1,1,0,0,0,9,3,1,407,578968.2246330543,112394.86263183,333493.973414693,0,2323.703967675675 -4139,5153,9306,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.198274621638809,8.916835744813993,0,0,0,-1121.378028637065,0,1,2,2019,9,2,42,41,1,2,0,24.38672247754822,24.38672247754822,0,0,0,0,0,0,0,0,3.763529199244889,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,6,9,5,0,574,-15573.2395144185,-20367.08946983608,0,0,3240.874423002026 -4140,5154,9307,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.427778765657086,8.844880646916566,0,0,0,-1076.595566214256,0,3,3,2019,8,0,37,38,1,0,0,14.37456899698546,14.37456899698546,0,0,0,0,0,0,0,0,2.878266464462795,0,45,51.51,-9,-9,6.666666666666667,3,4,0,0,11,8,5,0,1465,1244358.00696277,719703.7407537285,252406.974629975,0,2848.943749938809 -4141,5155,9308,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.780974768123934,7.748593543464949,0,0,0,-933.116705793365,0,3,3,2019,10,0,35,35,1,0,0,8.27247578977877,8.27247578977877,0,0,0,0,0,1,1,0,0,0,56.01,51.37,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,849,146489.2828213419,85340.58261744244,0,0,1087.238579162479 -4142,5156,9309,9310,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,8.366162858265801,8.416985770645729,0,17,0,13.34723285655453,0,-9,-9,2019,8,0,24,24,1,0,0,18.3348218229426,18.3348218229426,0,0,0,0,7,1,1,0,0,0,54.69,57.47,21.97,21.3,6.666666666666667,1,1,0,0,7,7,3,1,788.3333333333334,130035.6301360359,88131.31255896896,93838.03062734113,22623.30755213621,1837.385267078263 -4142,5156,9310,9309,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,0,0,0,17,0,70.8943043288111,0,2,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,54.69,57.47,3.333333333333333,4,2,0,0,0,7,3,1,788.3333333333334,130035.6301360359,88131.31255896896,93838.03062734113,22623.30755213621,1837.385267078263 -4142,5156,9311,-9,9310,9309,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1034.338139805672,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.03,52.94,-9,-9,5,4,2,0,0,0,7,3,1,788.3333333333334,130035.6301360359,88131.31255896896,93838.03062734113,22623.30755213621,1837.385267078263 -4143,5157,9312,9313,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.916017369673582,6.683174102454968,8,0,-30.3664289377132,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.409097162917612,6.666069492098045,34.39,38.81,30.76,28.13,3.333333333333333,2,3,0,0,0,6,2,1,786,1328009.013065403,470965.5148798985,740942.4084594394,0,960.2769257329649 -4143,5157,9313,9312,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,6.670727895773261,6.625519907238299,8,0,-135.1749313595386,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,3.315948548044476,6.707239946935566,30.76,28.13,34.39,38.81,3.333333333333333,2,3,0,0,10,6,2,1,786,1328009.013065403,470965.5148798985,740942.4084594394,0,960.2769257329649 -4144,5158,9314,9315,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.582776041462131,7.87926198101519,0,15,0,-26.82823440893901,0,3,3,2019,7,0,36,37,1,0,0,6.160435244558882,6.160435244558882,0,0,0,0,14.5,0,0,0,.3784751910726243,0,61.01,53.18,55.79,52.62,6.666666666666667,1,1,0,0,9,10,4,1,746.5,369461.8393978745,20274.05352681333,160241.1794079958,26406.4697747123,2684.478293157121 -4144,5158,9315,9314,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.975248914992285,8.032981673831383,0,15,0,3.077086150846692,0,3,3,2019,6,0,38,38,1,0,0,9.578645505467581,9.578645505467581,0,0,0,0,0,0,0,0,6.486313748047808,0,55.79,52.62,61.01,53.18,5,1,1,0,1,11,10,4,1,746.5,369461.8393978745,20274.05352681333,160241.1794079958,26406.4697747123,2684.478293157121 -4145,5159,9316,9317,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,9.039037601574389,8.842152518239452,0,9,2,9.994971799009239,0,3,3,2019,14,5,41,43,1,5,0,23.17916889101824,23.17916889101824,0,0,0,0,0,0,0,0,0,0,50.43,27.39,39.74,39.79,8.333333333333334,1,1,0,0,10,11,5,1,227,648346.5905866642,163460.1556503984,149739.945087731,0,3719.500562074296 -4145,5159,9317,9316,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.498931453894672,7.173572037392081,0,9,-2,22.68670686703987,0,1,2,2019,17,6,29,26,1,6,0,6.213061820814148,6.213061820814148,0,0,0,0,7,0,0,0,0,0,39.74,39.79,50.43,27.39,8.333333333333334,1,1,0,0,10,11,5,1,227,648346.5905866642,163460.1556503984,149739.945087731,0,3719.500562074296 -4146,5160,9318,-9,9319,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.784182773651,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1372.333333333333,1200917.0255372,601060.151104495,608388.7691094553,29464.877113256,2411.814605471985 -4146,5160,9319,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.893109777568733,8.606232364275012,7.737267828797608,0,0,-1100.416324378814,0,2,2,2019,14,2,8,20,1,2,0,43.70921506913924,43.70921506913924,0,0,0,0,0,1,1,0,8.176647977240025,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,1372.333333333333,1200917.0255372,601060.151104495,608388.7691094553,29464.877113256,2411.814605471985 -4146,5160,9320,-9,9319,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1063.347654004374,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,4,1,1372.333333333333,1200917.0255372,601060.151104495,608388.7691094553,29464.877113256,2411.814605471985 -4147,5161,9321,9322,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,9.443813686139453,9.136837688798357,5.296355173312693,30,-1,135.1644028867437,0,2,3,2019,8,0,50,52,1,0,0,29.22794070577664,29.22794070577664,0,0,0,0,2,0,0,0,5.683295397538735,0,59.53,56.44,54.2,57.49,10,1,1,0,0,9,7,5,1,2505,575663.6163647234,22092.03954520637,367476.4694872522,50649.03545778831,4875.07253311285 -4147,5161,9322,9321,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.454627115827393,7.66740471492525,0,30,1,-150.4393315780114,0,2,2,2019,10,1,24,23,1,1,0,10.63986624941811,10.63986624941811,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.53,56.44,8.333333333333334,1,1,0,0,9,7,5,1,2505,575663.6163647234,22092.03954520637,367476.4694872522,50649.03545778831,4875.07253311285 -4148,5162,9323,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,8.119849593398998,8.113818986834954,0,0,-975.2382948928548,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.339281673624136,7.014743177817034,57.06,57.76,-9,-9,10,1,1,0,0,0,12,4,1,258,823162.6204751522,733154.14016102,333188.7816729043,0,2348.622831543221 -4149,5163,9324,9325,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,0,0,8,5,-102.8844628856358,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.15,57.46,58.47,44.69,6.666666666666667,1,1,0,0,12,8,5,1,1713.5,1673043.007309831,910170.2252508858,475556.3375020457,0,5337.719038400826 -4149,5163,9325,9324,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,8.780202327088732,9.23801962036528,7.920635821716568,42,-5,-133.5548376461034,0,-9,-9,2019,9,2,35,0,1,2,0,18.44089321868732,18.44089321868732,1,0,0,0,0,1,1,0,6.696086397636004,7.812706240601711,58.47,44.69,45.15,57.46,6.666666666666667,1,1,0,0,12,8,5,1,1713.5,1673043.007309831,910170.2252508858,475556.3375020457,0,5337.719038400826 -4150,5164,9326,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.185735500188954,6.987732880973216,0,0,-1022.976331502416,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.40192726748349,7.153377326294608,48.31,35.89,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,235,354760.2596140245,158694.8677730012,206021.5682613201,0,1896.296316492236 -4151,5165,9327,9330,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,14,-1,.4901451493665574,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,4,13,3,1,666.75,161996.1243889957,-12036.3311457481,72400.76978990706,0,2066.8866718033 -4151,5165,9328,-9,9327,9330,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.422840911027,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,666.75,161996.1243889957,-12036.3311457481,72400.76978990706,0,2066.8866718033 -4151,5165,9329,-9,9327,9330,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.3835251967274,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,666.75,161996.1243889957,-12036.3311457481,72400.76978990706,0,2066.8866718033 -4151,5165,9330,9327,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.190256934728046,7.797090964718326,0,3,1,15.85927162808913,0,-9,-9,2019,9,0,50,50,1,1,0,6.409611828862971,6.409611828862971,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,8,4,1,0,0,1,13,3,1,666.75,161996.1243889957,-12036.3311457481,72400.76978990706,0,2066.8866718033 -4152,5166,9331,9332,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,14,-1,114.4689393288253,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.364752119465717,0,48.18,61.8,26.01,63.78,8.333333333333334,1,1,0,0,2,9,5,1,883,151384.3926003094,138113.2597865918,0,0,6743.815673379844 -4152,5166,9332,9331,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.37240607706102,9.460667664635139,0,14,1,-201.7135255000818,0,1,1,2019,20,7,50,50,1,7,0,27.49198584805287,27.49198584805287,0,0,0,0,0,0,0,0,8.648414393389881,0,26.01,63.78,48.18,61.8,5,1,1,0,0,9,9,5,1,883,151384.3926003094,138113.2597865918,0,0,6743.815673379844 -4152,5166,9333,-9,9331,9332,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.9020481630795,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,883,151384.3926003094,138113.2597865918,0,0,6743.815673379844 -4152,5166,9334,-9,9331,9332,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.518093550942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,883,151384.3926003094,138113.2597865918,0,0,6743.815673379844 -4153,5167,9335,9336,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.484941341315945,6.59602423088237,42,2,-25.83271056466987,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.045922908239756,6.499486631759314,38.39,40.89,41.23,59.35,5,1,1,0,0,0,4,3,1,457.5,1064957.70926166,504069.2788960127,254373.2660922389,0,2948.970725241066 -4153,5167,9336,9335,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.788390200935686,7.698866934432219,42,-2,-53.29881506321765,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.967243095405761,7.852528785769184,41.23,59.35,38.39,40.89,6.666666666666667,1,1,0,0,4,4,3,1,457.5,1064957.70926166,504069.2788960127,254373.2660922389,0,2948.970725241066 -4154,5168,9337,9338,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.590284142215571,8.40753596438077,0,6,0,-29.01158936525803,0,3,3,2019,10,0,40,24,1,1,0,11.96129729617975,11.96129729617975,0,0,0,0,0,0,0,0,3.155191634784138,0,51,48,56.1,49.93,7,1,1,0,0,6,5,5,1,1198,10086.57154908177,30838.66908345875,141725.4372814152,69444.66334790284,3321.915682247881 -4154,5168,9338,9337,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.054935370910282,7.929834606403405,0,6,0,52.30116176679571,0,2,3,2019,10,0,40,40,1,0,0,9.025305676838361,9.025305676838361,0,0,0,0,0,0,0,0,2.717161317179122,0,56.1,49.93,51,48,6.666666666666667,1,1,0,0,6,5,5,1,1198,10086.57154908177,30838.66908345875,141725.4372814152,69444.66334790284,3321.915682247881 -4155,5169,9339,9340,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.307136888411145,8.354989085997168,0,20,6,-42.50904450024718,0,2,2,2019,10,0,40,44,1,0,0,16.23688097011177,16.23688097011177,0,0,0,0,0,1,1,0,1.811130647011209,0,48.06,50.73,28.55,47.68,6.666666666666667,3,4,0,0,8,8,5,1,408.5,613131.9801112681,210352.9921256341,386787.1857491701,228274.8483530461,3722.056130975733 -4155,5169,9340,9339,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.910600219118587,8.768410418139762,0,22,-6,-104.007617799941,0,-9,-9,2019,26,11,50,48,1,11,0,16.97489070042147,16.97489070042147,0,0,0,0,0,1,1,0,2.086528568614253,0,28.55,47.68,48.06,50.73,8.333333333333334,1,1,0,0,8,8,5,1,408.5,613131.9801112681,210352.9921256341,386787.1857491701,228274.8483530461,3722.056130975733 -4155,5170,9341,-9,9340,9339,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-949.1837012312943,-9,1,2,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,1.784346016424102,0,46.44,59.62,-9,-9,6.666666666666667,4,2,1,0,0,8,1,1,904,-193969.8560969656,0,0,0,451.9366780562945 -4155,5171,9342,-9,9340,9339,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1010.680827764579,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,4,2,0,0,1,8,1,1,1160,-86267.83473676309,0,0,0,55.69222562537006 -4156,5172,9343,-9,-9,-9,1,0,29,0,1,0,1,1,-9,0,3,7.740866609838131,8.224380760029362,0,0,0,-978.6191824536307,-9,3,2,2019,11,2,35,0,1,2,0,9.211658731646024,9.211658731646024,0,0,0,.4211751947133813,0,1,1,0,0,0,42.86,48.04,-9,-9,3.333333333333333,1,1,0,0,2,2,3,0,587.5,-34081.6418696173,-30881.50880403544,0,0,1849.103956037203 -4156,5172,9344,-9,9343,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.834838091939,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,587.5,-34081.6418696173,-30881.50880403544,0,0,1849.103956037203 -4157,5173,9345,-9,9347,9348,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-974.9545522204218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,559.2,18319.10434597757,62780.70465946681,230232.5668858322,201906.2820980814,3936.76787879339 -4157,5173,9346,-9,9347,9348,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.692254358375,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,559.2,18319.10434597757,62780.70465946681,230232.5668858322,201906.2820980814,3936.76787879339 -4157,5173,9347,9348,-9,-9,1,0,32,2,3,0,2,2,-9,0,4,7.3030712138802,7.630766057731826,0,6,-3,-124.9165002542277,0,-9,-9,2019,14,4,20,18,1,4,0,8.423008552644065,8.423008552644065,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.24,58.84,8.333333333333334,1,1,0,0,7,2,4,0,559.2,18319.10434597757,62780.70465946681,230232.5668858322,201906.2820980814,3936.76787879339 -4157,5173,9348,9347,-9,-9,1,1,35,2,3,0,2,2,-9,0,4,8.859825078124889,8.728324473972064,0,6,3,29.73313021616658,0,2,2,2019,9,0,35,37,1,0,0,20.87214946466671,20.87214946466671,0,0,0,0,0,1,1,0,0,0,51.24,58.84,44.02,60.7,8.333333333333334,1,1,0,0,7,2,4,0,559.2,18319.10434597757,62780.70465946681,230232.5668858322,201906.2820980814,3936.76787879339 -4157,5173,9349,-9,9347,9348,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-942.736015269836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,559.2,18319.10434597757,62780.70465946681,230232.5668858322,201906.2820980814,3936.76787879339 -4158,5174,9350,9352,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,5.953276497616271,6.23288249479261,0,7,0,-157.5895874177115,0,-9,-9,2019,9,0,15,20,1,0,0,2.955128214819353,2.955128214819353,0,0,0,0,0,1,1,0,8.06247031407673,0,57.16,56.15,58.7,46.46,8.333333333333334,1,1,0,0,5,8,5,1,650.3333333333334,172502.2406443027,50131.98697796751,297139.803358131,93088.48312132154,8988.313109937941 -4158,5174,9351,-9,9350,9352,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.1278819167635,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,650.3333333333334,172502.2406443027,50131.98697796751,297139.803358131,93088.48312132154,8988.313109937941 -4158,5174,9352,9350,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,9.792696115314177,9.51491977204137,0,25,0,23.81677615533212,0,2,1,2019,10,2,47,50,1,2,0,45.72424425979307,45.72424425979307,0,0,0,0,2,1,1,0,3.647669381283366,0,58.7,46.46,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,650.3333333333334,172502.2406443027,50131.98697796751,297139.803358131,93088.48312132154,8988.313109937941 -4158,5175,9353,-9,9350,9352,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1027.952632408746,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.273999568193181,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,576,-195614.461306198,0,0,0,23.7482931764065 -4159,5176,9354,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.219417690881947,7.422972687633992,0,0,-1021.894366470895,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.044895792121566,7.296627462038288,54.85,45.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,741,529817.6617819951,379853.5268475047,171782.4057799589,0,1783.15138541877 -4160,5177,9355,9356,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.054998047402645,7.050012507039169,7,5,-37.95401159022955,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.703880273743684,7.36454743973542,52.87,40.33,57.16,56.15,8.333333333333334,1,1,0,0,5,12,2,1,228.5,580103.2557647106,414481.0102413207,258491.9802247335,0,1593.303976010745 -4160,5177,9356,9355,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,7,-5,-19.70266056878084,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.742920582824218,0,57.16,56.15,52.87,40.33,8.333333333333334,1,1,0,0,6,12,2,1,228.5,580103.2557647106,414481.0102413207,258491.9802247335,0,1593.303976010745 -4161,5178,9357,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.702083612858976,8.405177351711059,0,0,0,-978.0979707490571,0,2,2,2019,15,4,39,38,1,4,0,13.09496548309697,13.09496548309697,0,0,0,0,2,0,0,0,0,0,42.77,35.75,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,3417,126038.8542126813,32041.19534229526,212003.9671715309,71484.46658004721,2172.639086992132 -4162,5179,9358,-9,9361,9359,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-937.536322089505,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,1384,15747.55662236771,-25263.95154830373,114245.2637347018,122150.9279665448,2952.836247876606 -4162,5179,9359,9361,-9,-9,1,1,33,0,2,0,2,2,-9,0,1,8.483931117527863,8.659368225000808,0,5,0,88.37934682737979,0,3,3,2019,16,4,43,38,1,4,0,12.75420450915817,12.75420450915817,0,0,0,0,0,1,1,0,0,0,23.04,49.58,40.14,45.62,5,1,1,0,1,10,2,4,1,1384,15747.55662236771,-25263.95154830373,114245.2637347018,122150.9279665448,2952.836247876606 -4162,5179,9360,-9,9361,9359,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.780637790876,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,1384,15747.55662236771,-25263.95154830373,114245.2637347018,122150.9279665448,2952.836247876606 -4162,5179,9361,9359,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,7.010855096718212,7.531696643987305,0,5,0,-26.08036984730994,0,-9,-9,2019,19,8,20,0,1,8,0,9.142289440461742,9.142289440461742,0,0,0,0,0,1,1,0,0,0,40.14,45.62,23.04,49.58,3.333333333333333,1,1,0,1,6,2,4,1,1384,15747.55662236771,-25263.95154830373,114245.2637347018,122150.9279665448,2952.836247876606 -4163,5180,9362,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.94774143818845,7.30929889648865,0,0,-1069.337527841966,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.16530845362693,7.269864371194695,53,52,-9,-9,10,1,1,0,0,8,7,2,1,333,467498.7045609087,163223.1208770408,318559.3617399007,0,535.9547840502979 -4164,5181,9363,9365,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.434796893592894,9.357382094884352,0,1,2,-96.59127233254598,-9,1,1,2019,10,0,15,0,1,0,0,83.15446516301394,83.15446516301394,0,0,0,0,0,1,1,0,6.821613998025108,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,11,4,5,0,393.5,3376224.233704373,2501865.937652312,689609.5084104631,244380.2387190156,8152.008735464526 -4164,5181,9364,-9,9365,9363,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.1464550275534,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,393.5,3376224.233704373,2501865.937652312,689609.5084104631,244380.2387190156,8152.008735464526 -4164,5181,9365,9363,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.824377149458467,9.074912622678935,0,1,-2,-16.6723341351594,-9,1,1,2019,9,0,34,0,1,0,0,31.34294377329863,31.34294377329863,0,0,0,0,0,1,1,0,7.887567778097323,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,13,4,5,0,393.5,3376224.233704373,2501865.937652312,689609.5084104631,244380.2387190156,8152.008735464526 -4164,5181,9366,-9,9365,9363,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.378395922671,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,0,393.5,3376224.233704373,2501865.937652312,689609.5084104631,244380.2387190156,8152.008735464526 -4165,5182,9367,-9,9369,9368,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.208406834467,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,1070.333333333333,309279.4056672652,-13989.35744454695,284709.12799728,104476.545084818,2597.946652298352 -4165,5182,9368,9369,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,8.39603447281139,8.379840031691554,0,4,3,39.70569584799802,0,-9,-9,2019,9,0,44,42,1,1,0,13.04297421208631,13.04297421208631,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,3,4,0,0,11,8,3,0,1070.333333333333,309279.4056672652,-13989.35744454695,284709.12799728,104476.545084818,2597.946652298352 -4165,5182,9369,9368,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,0,0,0,4,-3,30.12950500639236,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,.5567504143920479,0,49,56,51,56,7,3,4,0,0,3,8,3,0,1070.333333333333,309279.4056672652,-13989.35744454695,284709.12799728,104476.545084818,2597.946652298352 -4166,5183,9370,9371,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,8.267638890529916,8.145961015759067,0,2,2,24.67304334584457,0,-9,-9,2019,11,3,39,8,1,3,0,9.99080907964329,9.99080907964329,0,0,0,0,0,1,1,0,1.246686765515397,0,29.95,66.13,56.18,53.85,10,1,1,0,0,10,7,3,1,403.75,11945.61440672597,0,163290.2990965689,139754.7790882914,2580.606402560542 -4166,5183,9371,9370,-9,-9,1,0,33,0,2,0,3,3,-9,0,4,8.009255840170441,7.78847398414066,0,2,-2,69.27968138572018,0,-9,-9,2019,9,0,34,26,1,0,0,7.228154900904595,7.228154900904595,0,0,0,0,0,1,1,0,0,0,56.18,53.85,29.95,66.13,10,4,2,0,0,10,7,3,1,403.75,11945.61440672597,0,163290.2990965689,139754.7790882914,2580.606402560542 -4166,5183,9372,-9,9371,9370,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.113926030886,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,1,403.75,11945.61440672597,0,163290.2990965689,139754.7790882914,2580.606402560542 -4166,5183,9373,-9,9371,9370,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-943.3762548211843,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,7,3,1,403.75,11945.61440672597,0,163290.2990965689,139754.7790882914,2580.606402560542 -4167,5184,9374,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.075731155141847,8.080968597202597,0,0,0,-1004.485569631306,0,3,2,2019,8,0,40,30,1,0,0,9.596498951738877,9.596498951738877,0,0,0,0,0,1,1,0,7.392469565233328,0,53.39,36.44,-9,-9,3.333333333333333,1,1,0,0,1,11,4,1,71,-85419.50963278941,73792.4327401011,164829.6613503282,22334.89365228071,1725.496964389252 -4168,5185,9375,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.006166230918528,6.903861253533622,0,0,0,-934.2122982278856,0,2,2,2019,15,6,22,0,1,6,0,4.744376615599244,4.744376615599244,0,0,0,0,0,1,1,0,0,0,38.89,56.26,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,140,282442.1932871324,0,0,0,1642.857671003271 -4169,5186,9376,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.523648833913331,7.832068961081774,0,2,19,9.70161462972262,0,3,3,2019,1,0,37,50,1,0,0,7.630892298394881,7.630892298394881,0,0,0,0,0,1,1,0,0,0,59.14,52.5,36.75,54.56,10,2,3,0,0,12,6,4,1,502,353679.0763186137,5826.604502134229,104301.4688301267,0,1034.667143498881 -4169,5187,9377,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.18844920070417,8.164334616139712,0,2,-19,-15.320485223934,0,-9,-9,2019,15,3,57,61,1,3,0,7.822647375795372,7.822647375795372,0,0,0,0,0,1,1,0,0,0,36.75,54.56,59.14,52.5,6.666666666666667,2,3,0,0,2,6,4,1,165,109390.2550799521,-86592.77723546122,0,0,1216.959266002525 -4170,5188,9378,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.410293229132181,8.78470831363474,0,0,0,-1059.351750259957,0,-9,-9,2019,19,7,40,37,1,7,0,18.05891342897795,18.05891342897795,0,0,0,0,0,0,0,0,2.522514726729126,0,55.67,26.94,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,1466,384545.2006360213,37761.43799713111,312658.3812111479,41926.84692486416,2030.263677434408 -4170,5189,9379,-9,-9,9378,1,1,22,0,0,0,2,2,-9,0,4,7.78052917091059,8.204997004213611,0,0,0,-1141.130836344386,0,-9,3,2019,10,0,40,43,1,1,1,8.590432526983603,8.590432526983603,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,192,-98231.43288736122,0,0,0,1168.944358941804 -4170,5190,9380,9381,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.876048694825046,7.997875715538228,0,2,-1,-106.8184857423654,0,-9,-9,2019,14,2,38,40,1,2,0,7.821401373140175,7.821401373140175,0,0,0,0,0,0,0,0,.6188654456513911,0,37.13,42.67,39.24,49.76,5,1,1,0,0,6,2,4,1,292.5,32668.53219538401,35552.94914625142,0,0,2270.981613783852 -4170,5190,9381,9380,-9,9378,1,1,24,0,0,0,2,2,-9,0,2,7.527765355223745,7.763915703477761,0,2,1,-71.70913862503713,0,-9,3,2019,9,0,40,40,1,0,0,6.311645216580534,6.311645216580534,0,0,0,0,0,0,0,0,.7430957701086529,0,39.24,49.76,37.13,42.67,6.666666666666667,1,1,0,0,4,2,4,1,292.5,32668.53219538401,35552.94914625142,0,0,2270.981613783852 -4171,5191,9382,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.700786154453417,7.6706091751014,0,0,0,-951.1107815770415,0,2,2,2019,6,0,36,36,1,0,0,7.369117841705169,7.369117841705169,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,13,3,1,770,-179466.8023865523,0,0,0,1184.642464975827 -4172,5192,9383,9384,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,4.254012349387703,4.041044749383914,45,-2,-77.77158008853915,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,3.791507470622523,49,48,51,48,7,4,2,0,1,7,9,3,1,1227,1477168.680352324,516091.5413121747,640485.8914018826,0,2008.450196284023 -4172,5192,9384,9383,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.688336515439087,7.905898622869411,45,2,-121.6738739643759,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,2.762453024311062,7.504449648667089,51,48,49,48,7,1,1,0,0,12,9,3,1,1227,1477168.680352324,516091.5413121747,640485.8914018826,0,2008.450196284023 -4173,5193,9385,9386,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,7.190217972318022,7.538138491476191,0,5,0,69.64084992437962,0,2,2,2019,15,4,28,35,1,4,0,6.662332993334216,6.662332993334216,0,0,0,1.130577445561999,0,1,1,0,10.07207253475978,0,42.87,55.86,50,54,8.333333333333334,1,1,0,0,9,4,5,1,1206,406342.1169953357,150581.7827735411,134835.9490158486,17178.010741583,10034.41393941287 -4173,5193,9386,9385,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.72360521795221,8.762767257193303,0,5,0,52.10975548560382,0,-9,-9,2019,10,0,50,35,1,1,0,14.01658852089388,14.01658852089388,0,0,0,0,0,1,1,0,3.259932663673703,0,50,54,42.87,55.86,8,1,1,0,0,1,4,5,1,1206,406342.1169953357,150581.7827735411,134835.9490158486,17178.010741583,10034.41393941287 -4174,5194,9387,9388,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.792178222500398,9.94116160257235,0,5,11,9.469576086785178,0,-9,-9,2019,7,0,38,45,1,0,0,78.44697454390598,78.44697454390598,0,0,0,0,0,0,0,0,4.087148056141198,0,57.16,56.15,54.85,49.42,8.333333333333334,1,1,0,0,8,12,5,1,806,1384559.487913223,1074291.437405557,147887.7699035085,93424.52583661361,16309.68470151158 -4174,5194,9388,9387,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.617780663019087,8.720171749086719,0,5,-11,14.04629792494484,0,-9,-9,2019,6,0,43,40,1,0,0,15.247924668734,15.247924668734,0,0,0,0,0,0,0,0,7.013307576229477,0,54.85,49.42,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,806,1384559.487913223,1074291.437405557,147887.7699035085,93424.52583661361,16309.68470151158 -4175,5195,9389,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.23110217520883,8.374867327462031,0,0,0,-1063.069598526771,0,2,2,2019,6,0,35,35,1,0,0,14.19374333761288,14.19374333761288,0,0,0,.6126410780903839,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,12,12,5,0,219,1394521.046670934,863320.6165687665,253376.9303977693,0,1727.259003847223 -4176,5196,9390,9391,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.050063751363894,7.632045511292671,51,-1,-112.5223660204556,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.751338169956061,8.183708645616599,62.85,38.46,63.17,32.94,8.333333333333334,1,1,0,0,6,12,3,1,2759.5,821213.9990074853,348608.0208875014,413148.993829984,0,3203.439255354607 -4176,5196,9391,9390,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.071634594385583,7.245799232115809,51,1,-79.56485702398915,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.79465350276683,6.992063534031114,63.17,32.94,62.85,38.46,8.333333333333334,1,1,0,0,0,12,3,1,2759.5,821213.9990074853,348608.0208875014,413148.993829984,0,3203.439255354607 -4177,5197,9392,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.031172744170719,8.430457160634161,0,0,0,-995.7482655502688,0,1,1,2019,12,0,12,40,1,0,0,36.938080511508,36.938080511508,0,0,0,0,0,0,0,0,5.951936539040478,0,36.93,56.27,-9,-9,5,1,1,0,0,6,12,4,1,880,336569.573354974,-9120.623066529433,0,0,1848.274300407812 -4178,5198,9393,-9,9395,-9,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1114.843082984666,-9,1,-9,2019,20,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,60.68,45.18,-9,-9,10,2,3,0,0,0,6,2,1,695,119242.0444983163,54175.24524239014,101588.7806957391,50732.41857387967,1212.238562951351 -4178,5198,9394,-9,9395,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1116.907372704867,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,6,2,1,695,119242.0444983163,54175.24524239014,101588.7806957391,50732.41857387967,1212.238562951351 -4178,5198,9395,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,6.840079292173129,7.024525397368568,0,0,0,-933.7501573119184,0,3,3,2019,19,8,16,16,1,8,0,6.326556809803071,6.326556809803071,0,0,0,0,0,1,1,0,0,0,29.96,41.39,-9,-9,6.666666666666667,2,3,0,1,8,6,2,1,695,119242.0444983163,54175.24524239014,101588.7806957391,50732.41857387967,1212.238562951351 -4179,5199,9396,-9,9398,9399,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.1253871617164,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,5,2,1,680,201018.1503976564,57083.04060996764,252215.1476470628,47891.73098349337,3036.396170459587 -4179,5199,9397,-9,9398,9399,1,0,12,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1189.754184957822,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,5,2,1,680,201018.1503976564,57083.04060996764,252215.1476470628,47891.73098349337,3036.396170459587 -4179,5199,9398,9399,-9,-9,1,0,45,0,4,0,3,3,-9,0,3,0,0,0,17,-14,29.00226460711193,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,36.51,51,49,8.333333333333334,2,3,0,1,0,5,2,1,680,201018.1503976564,57083.04060996764,252215.1476470628,47891.73098349337,3036.396170459587 -4179,5199,9399,9398,-9,-9,1,1,59,0,4,0,3,3,-9,0,3,7.778435979536352,7.932037211928951,0,17,14,-16.31784747484453,0,-9,-9,2019,10,0,44,40,1,1,0,11.0967768495054,11.0967768495054,0,0,0,0,0,1,1,0,0,0,51,49,49.47,36.51,7,2,3,0,0,11,5,2,1,680,201018.1503976564,57083.04060996764,252215.1476470628,47891.73098349337,3036.396170459587 -4179,5199,9400,-9,9398,9399,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-936.1004297448983,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,680,201018.1503976564,57083.04060996764,252215.1476470628,47891.73098349337,3036.396170459587 -4180,5200,9401,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.100968220577473,8.030035629701514,0,0,0,-1040.578721609955,0,2,2,2019,10,0,38,38,1,0,0,10.69573219983021,10.69573219983021,0,0,0,0,0,0,0,0,0,0,62.11,45.63,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,538,-201897.1871062413,-36042.62916228962,0,0,1421.121364135166 -4181,5201,9402,9403,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.009641718473766,6.175727695426669,47,0,-2.367237942180696,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.807559938503426,5.847301620825222,57.16,56.15,57.06,57.76,10,1,1,0,0,5,11,2,1,875.5,912457.624457782,577628.0916334921,230959.0357680327,0,1987.077743241346 -4181,5201,9403,9402,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.000338897594065,7.306286976428204,47,0,-4.4814575510896,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.382371883794984,7.014358729508745,57.06,57.76,57.16,56.15,10,1,1,0,0,8,11,2,1,875.5,912457.624457782,577628.0916334921,230959.0357680327,0,1987.077743241346 -4182,5202,9404,9405,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.518462262045204,8.193690010176635,8.062821618915319,15,16,-92.66829840823866,0,3,2,2019,13,1,40,0,1,1,0,6.337285740226004,6.337285740226004,0,0,0,0,0,0,0,0,0,7.931890445185446,42.83,42.82,57.16,56.15,6.666666666666667,1,1,0,0,9,4,5,1,368.5,1194068.561339399,948545.9672912235,247558.1607719945,60846.82021666087,3853.322384213629 -4182,5202,9405,9404,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.607379047598558,8.610103029267313,0,15,-16,-12.52600085848806,0,2,2,2019,6,0,45,50,1,0,0,17.05289340950348,17.05289340950348,0,0,0,0,0,0,0,0,0,0,57.16,56.15,42.83,42.82,10,1,1,0,0,11,4,5,1,368.5,1194068.561339399,948545.9672912235,247558.1607719945,60846.82021666087,3853.322384213629 -4183,5203,9406,9407,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.692869207943945,8.061058177904055,0,29,-4,88.01341899778792,0,3,3,2019,13,1,35,35,1,1,0,14.66932851916935,14.66932851916935,0,0,0,0,14.5,1,0,1,0,0,38.77,46.5,69.65000000000001,12.73,6.666666666666667,1,1,0,0,2,5,5,1,388.5,1355552.638688147,1016896.408162647,183445.843592949,71457.64728930764,4730.441705175856 -4183,5203,9407,9406,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,8.358537999524,8.42729771992286,0,29,4,55.11675097862494,0,3,2,2019,8,0,37,42,1,0,0,16.27361382517962,16.27361382517962,0,0,0,0,7,1,0,1,0,0,69.65000000000001,12.73,38.77,46.5,8.333333333333334,1,1,0,0,8,5,5,1,388.5,1355552.638688147,1016896.408162647,183445.843592949,71457.64728930764,4730.441705175856 -4184,5204,9408,9409,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,2.569965982958933,2.492732698255161,6,9,-64.97706209616094,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,27.0461560357651,0,0,1,1,0,2.387689598292744,2.440291601542417,46.26,22.19,49.11,41.74,8.333333333333334,2,3,0,0,0,2,2,0,279.5,-185159.0583435058,0,0,0,2109.433431640804 -4184,5204,9409,9408,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,6,0,18.89187869051543,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,49.11,41.74,46.26,22.19,8.333333333333334,2,3,0,0,0,2,2,0,279.5,-185159.0583435058,0,0,0,2109.433431640804 -4185,5205,9410,9411,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.834804744839482,8.078336604376121,6.316118274321,8,-4,81.58046328616965,0,-9,-9,2019,6,0,25,25,1,0,0,8.687294064320778,8.687294064320778,0,0,0,0,0,0,0,0,4.110823853114487,6.835538333132613,51,49,58.75,48.57,6.666666666666667,1,1,0,0,11,9,5,1,351,1860012.466920542,1074833.689625722,564819.5936228686,0,3654.375952343811 -4185,5205,9411,9410,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.4510832107503,8.861109227017931,3.825030584410304,26,4,-31.59697660088646,0,3,3,2019,2,0,50,50,1,0,0,13.7625242331548,13.7625242331548,0,0,0,0,0,0,0,0,5.377210941575306,4.331971304690178,58.75,48.57,51,49,8.333333333333334,1,1,0,0,10,9,5,1,351,1860012.466920542,1074833.689625722,564819.5936228686,0,3654.375952343811 -4186,5206,9412,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,5,0,0,0,0,0,-978.4797188203967,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.12,62.24,-9,-9,10,1,1,1,0,6,8,2,0,389,0,0,0,0,1315.717145895651 -4187,5207,9413,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.025314905237459,6.4348720149568,0,0,-980.8062396131221,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.889540540284294,55,43,-9,-9,8,1,1,0,0,0,6,2,1,502,177337.6371374173,149122.7294448913,157596.0134971155,0,418.3439153266896 -4188,5208,9414,9415,-9,-9,1,1,48,0,0,0,3,3,-9,0,5,8.614259027032045,8.659668604353364,5.791103602093443,10,3,-81.89758463439289,0,3,3,2019,12,1,39,11,1,1,0,15.82540262493102,15.82540262493102,0,0,0,0,0,1,1,0,0,6.186263050375257,41.07,60.93,39.39,57.52,8.333333333333334,1,1,0,0,10,9,5,1,317,273195.4205645707,109338.3810148513,268122.1671450508,186062.3480621272,4056.714774650471 -4188,5208,9415,9414,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.139084210379036,7.725971421790653,5.651405296359061,10,-3,41.18393792944901,0,3,2,2019,13,2,40,20,1,2,0,3.689170283070735,3.689170283070735,0,0,0,0,0,1,1,0,6.965458920387983,5.362176677326301,39.39,57.52,41.07,60.93,5,1,1,0,0,10,9,5,1,317,273195.4205645707,109338.3810148513,268122.1671450508,186062.3480621272,4056.714774650471 -4188,5209,9416,-9,9415,9414,1,1,21,0,0,0,1,1,-9,0,5,8.099447231271974,8.139841813000276,0,0,0,-833.646167597989,0,2,3,2019,4,1,7,40,1,1,1,49.36277346029485,49.36277346029485,0,0,0,0,0,1,1,0,.0268748606795691,0,57.06,57.76,-9,-9,10,1,1,0,0,3,9,4,1,1582,52735.78809063927,-45776.05571774134,0,0,1162.434292046109 -4188,5210,9417,-9,9415,9414,1,0,18,0,0,0,3,3,0,0,5,0,0,0,0,0,-983.548529205287,-9,2,3,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,50.85,34.83,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,445,158026.1289403971,0,0,0,40.6057121192393 -4189,5211,9418,-9,9419,9421,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.8616933831573,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,626.5,885933.6521298527,340646.0924268729,490613.5892161155,105549.6624760829,4488.927945217528 -4189,5211,9419,9421,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,0,0,0,15,0,-140.2174542398387,0,2,2,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,51.86,51.64,47.78,8.333333333333334,1,1,0,0,4,7,5,0,626.5,885933.6521298527,340646.0924268729,490613.5892161155,105549.6624760829,4488.927945217528 -4189,5211,9420,-9,9419,9421,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-979.5283916555284,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,7,5,0,626.5,885933.6521298527,340646.0924268729,490613.5892161155,105549.6624760829,4488.927945217528 -4189,5211,9421,9419,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,9.461341137148036,9.460992193221621,0,15,0,53.18932748669293,-9,2,2,2019,10,1,52,0,1,1,0,28.97019176761621,28.97019176761621,0,0,0,0,0,0,0,0,4.876637398992655,0,51.64,47.78,46.06,51.86,8.333333333333334,1,1,0,0,13,7,5,0,626.5,885933.6521298527,340646.0924268729,490613.5892161155,105549.6624760829,4488.927945217528 -4190,5212,9422,9423,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.573185182937646,8.399254676571307,46,2,111.360611937323,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.846258099073149,8.432448439890395,57.16,56.15,60.12,54.8,10,1,1,0,0,0,12,4,1,1541,1764445.963113208,1459323.522167657,217627.4218416879,0,4083.841605893641 -4190,5212,9423,9422,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.73263753384614,7.53903818930102,46,-2,-103.74926370401,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.505758885685736,7.370323533373584,60.12,54.8,57.16,56.15,10,1,1,0,0,0,12,4,1,1541,1764445.963113208,1459323.522167657,217627.4218416879,0,4083.841605893641 -4191,5213,9424,9425,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,6.909914142436982,7.394772967136605,9,1,1.967195826058005,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.027397673839046,54,45,64.63,17.57,8,4,1,0,0,0,4,2,1,379,197028.3075419024,136247.4164559999,200299.9017555776,25553.34170965089,2374.267492345569 -4191,5213,9425,9424,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.110039175539615,5.891975479207032,9,-1,26.93003107817295,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.961067225842287,64.63,17.57,54,45,10,1,1,0,0,0,4,2,1,379,197028.3075419024,136247.4164559999,200299.9017555776,25553.34170965089,2374.267492345569 -4192,5214,9426,9427,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.41365715431286,6.205403483972614,58,0,35.8216395885163,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,4.265139655778901,0,14.5,1,1,0,4.61765808927169,6.361039095459182,49.93,38.49,52.91,31.4,8.333333333333334,1,1,0,0,0,5,3,1,766.5,246909.472585802,182502.0899608723,0,0,2803.092428418378 -4192,5214,9427,9426,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.343379265551933,7.281843376995887,58,0,3.02559520109258,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,3.467464244417003,0,0,1,1,0,3.494130459138039,7.159528987006154,52.91,31.4,49.93,38.49,8.333333333333334,1,1,0,0,0,5,3,1,766.5,246909.472585802,182502.0899608723,0,0,2803.092428418378 -4193,5215,9428,9429,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.891970521842924,8.120777792001606,52,3,-24.0247608932925,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.817463375037606,7.69154815896131,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,0,1,3,1,611.5,631842.1296954381,319277.8094803062,297463.9932710686,0,2200.891427028899 -4193,5215,9429,9428,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,52,-3,-71.72036842166486,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.314423254712889,0,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,0,1,3,1,611.5,631842.1296954381,319277.8094803062,297463.9932710686,0,2200.891427028899 -4194,5216,9430,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.187678560843644,8.693485800753599,0,0,0,-1119.18399039883,0,2,2,2019,12,0,52,52,1,0,0,9.092491991693038,9.092491991693038,0,0,0,0,0,0,0,0,0,0,44.59,35.14,-9,-9,5,1,1,0,0,10,6,4,0,338,8059.533652415295,77009.83570106246,137842.1866645231,15157.38447448823,1609.730865629547 -4195,5217,9431,-9,9433,9432,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.0202492128095,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,265.5,95081.60651204445,67683.69895087944,88043.28496658395,71932.1295000696,2726.929507053168 -4195,5217,9432,9433,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.559092531937921,8.320344749982402,0,4,7,136.2018621333628,0,-9,-9,2019,5,0,42,45,1,0,0,10.94985148661254,10.94985148661254,0,0,0,0,0,1,1,0,0,0,68.42,44.16,29.22,58.49,10,1,1,0,0,8,2,3,1,265.5,95081.60651204445,67683.69895087944,88043.28496658395,71932.1295000696,2726.929507053168 -4195,5217,9433,9432,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.75768019875337,6.938309253299501,0,4,-7,-86.49304842535608,0,2,2,2019,21,6,8,9,1,6,0,12.97522790629227,12.97522790629227,0,0,0,0,0,1,1,0,0,0,29.22,58.49,68.42,44.16,3.333333333333333,1,1,0,0,7,2,3,1,265.5,95081.60651204445,67683.69895087944,88043.28496658395,71932.1295000696,2726.929507053168 -4195,5217,9434,-9,9433,9432,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.9256127003252,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,265.5,95081.60651204445,67683.69895087944,88043.28496658395,71932.1295000696,2726.929507053168 -4196,5218,9435,9436,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.343374765853277,6.84911309391473,41,-5,-28.52218311525914,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.730676671120579,7.122117989455224,64.63,38.23,55.36,51.57,8.333333333333334,1,1,0,0,4,5,4,1,2507,513832.3801154323,179876.022405092,222159.8282259718,0,3518.185704990074 -4196,5218,9436,9435,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.80310064850021,8.385765048064602,7.948699806776037,41,5,-18.83306280064023,0,-9,-9,2019,10,1,15,0,1,1,0,23.95856677815471,23.95856677815471,0,0,0,0,0,1,1,0,6.5743354844065,8.022230915575541,55.36,51.57,64.63,38.23,8.333333333333334,1,1,0,0,13,5,4,1,2507,513832.3801154323,179876.022405092,222159.8282259718,0,3518.185704990074 -4197,5219,9437,-9,9438,9439,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.6898879784807,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,425.75,-8423.453708521167,-14148.81467852651,0,0,6794.667882113479 -4197,5219,9438,9439,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.882375135470513,7.072067649158913,0,28,0,118.7956576232501,0,2,2,2019,10,0,25,30,1,0,0,4.951832690119748,4.951832690119748,0,0,0,0,7,0,0,0,0,0,48.71,51.81,56.94,49.53,10,1,1,0,0,13,7,5,1,425.75,-8423.453708521167,-14148.81467852651,0,0,6794.667882113479 -4197,5219,9439,9438,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.666599898002891,9.546996015936312,0,28,0,3.480923277783925,0,3,2,2019,10,0,50,50,1,0,0,37.26056437027933,37.26056437027933,0,0,0,0,0,0,0,0,0,0,56.94,49.53,48.71,51.81,8.333333333333334,1,1,0,0,13,7,5,1,425.75,-8423.453708521167,-14148.81467852651,0,0,6794.667882113479 -4197,5219,9440,-9,9438,9439,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1001.096362901224,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,54.22,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,425.75,-8423.453708521167,-14148.81467852651,0,0,6794.667882113479 -4197,5220,9441,-9,9438,9439,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1019.253070602025,0,2,2,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.3,44.97,-9,-9,3.333333333333333,1,1,0,0,2,7,1,1,282,109323.0563297597,0,0,0,0 -4198,5221,9442,9443,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,52,3,-122.4473248715451,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,126.9879233416562,0,0,1,1,0,0,0,42.5,26.85,30.64,45.73,8.333333333333334,1,1,0,0,0,4,2,1,593.5,627316.1758708514,92828.10821616318,401948.606635164,0,1592.308910720689 -4198,5221,9443,9442,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.271654517703233,6.144483343526608,52,-3,38.7089940162492,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,6.14199264804445,30.64,45.73,42.5,26.85,5,1,1,0,0,6,4,2,1,593.5,627316.1758708514,92828.10821616318,401948.606635164,0,1592.308910720689 -4198,5222,9444,-9,9443,9442,1,1,49,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1044.720565879653,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,4,2,1,1776,-358123.0152829539,62787.2442213681,0,0,661.1334118213849 -4199,5223,9445,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.207691164111084,8.206321934730669,0,0,0,-1058.498290500811,0,2,2,2019,7,0,48,50,1,0,0,9.108910824249811,9.108910824249811,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,518,92284.77727524779,0,0,0,1915.690641705718 -4200,5224,9446,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.156258612648708,8.096305832267337,0,0,0,-1077.310779129115,0,-9,-9,2019,6,0,48,59,1,0,0,9.321388142928431,9.321388142928431,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,6,5,4,0,210,-102551.1971298696,-27308.01502183867,0,0,1439.650453337621 -4201,5225,9447,9448,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,7.128685456794388,6.749288696784881,3,8,39.59348975355385,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.106168922297904,53.31,32.24,41.17,52.68,8.333333333333334,2,3,0,1,9,6,3,1,311.5,410686.8484745991,388229.8300327751,144880.2511643684,0,1789.732272352442 -4201,5225,9448,9447,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.310802739131755,7.349364902667162,0,3,-8,32.11015928292435,0,2,2,2019,21,9,21,21,1,9,0,11.23271172996684,11.23271172996684,0,0,0,0,0,0,0,0,.1735971851065435,0,41.17,52.68,53.31,32.24,6.666666666666667,1,1,0,0,8,6,3,1,311.5,410686.8484745991,388229.8300327751,144880.2511643684,0,1789.732272352442 -4202,5226,9449,9450,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,6.973998814374037,7.729039074490821,7.389499591379699,7,0,5.498003753715144,0,-9,-9,2019,8,0,13,32,1,0,0,9.100424084949497,9.100424084949497,0,0,0,0,0,0,0,0,1.889484235110039,7.655131280953615,62.6,34.56,52,55,8.333333333333334,1,1,0,0,9,10,4,1,557,488567.7854576333,378978.377902667,229412.2570617712,0,3777.67687057636 -4202,5226,9450,9449,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.179269506757795,8.183510613510446,0,25,0,144.9487587052062,-9,3,2,2019,9,0,40,0,1,1,0,10.47591911740833,10.47591911740833,0,0,0,0,0,0,0,0,7.673479050195489,0,52,55,62.6,34.56,8,1,1,0,0,1,10,4,1,557,488567.7854576333,378978.377902667,229412.2570617712,0,3777.67687057636 -4202,5227,9451,-9,9449,9450,1,1,21,0,0,0,2,2,-9,0,4,7.764372899085938,7.783154869734037,0,0,0,-1041.576064453191,-9,2,2,2019,10,0,40,0,1,1,1,5.19609688829075,5.19609688829075,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,3,1,1677,-60360.00067203208,0,0,0,346.5209981687507 -4203,5228,9452,9454,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.075277937233694,7.154888402605089,0,17,-5,166.757418257668,0,2,2,2019,12,0,21,21,1,0,0,6.125952893631245,6.125952893631245,0,0,0,0,0,1,1,0,0,0,49.29,54.59,49.53,50.82,8.333333333333334,2,3,0,0,9,10,5,1,680.6666666666666,998246.9226054571,654890.9500541083,248027.3980759002,49155.07244010229,5140.00403027045 -4203,5228,9453,-9,9452,9454,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.8523246519984,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,5,1,680.6666666666666,998246.9226054571,654890.9500541083,248027.3980759002,49155.07244010229,5140.00403027045 -4203,5228,9454,9452,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.095441277886666,9.210498399941438,0,17,5,130.5616236209732,0,3,3,2019,16,5,37,44,1,5,0,29.07108478153873,29.07108478153873,0,0,0,0,0,1,1,0,0,0,49.53,50.82,49.29,54.59,3.333333333333333,1,1,0,1,5,10,5,1,680.6666666666666,998246.9226054571,654890.9500541083,248027.3980759002,49155.07244010229,5140.00403027045 -4204,5229,9455,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.893803827359285,9.310275578571753,0,0,0,-911.9836184106096,0,2,2,2019,13,2,30,38,1,2,0,27.49669676401288,27.49669676401288,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,1735,266487.5003953201,151886.8652423042,0,0,3024.217770880441 -4205,5230,9456,-9,9460,9459,1,1,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-885.5635459216243,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5230,9457,-9,9460,9459,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.397720211765,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5230,9458,-9,9460,9459,1,1,12,0,5,1,3,0,-9,0,3,0,0,0,0,0,-905.3968909933802,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5230,9459,9460,-9,-9,1,1,49,0,5,0,2,2,-9,0,4,8.477908482847846,8.821086032412699,0,10,2,-111.2415619972645,0,3,3,2019,11,1,60,42,1,1,0,11.67587794382012,11.67587794382012,0,0,0,0,0,1,1,0,0,0,42.76,57.19,51.83,57.2,5,1,1,0,1,10,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5230,9460,9459,-9,-9,1,0,47,0,5,0,2,2,-9,0,4,7.200243996438804,7.071562557485262,0,10,-2,-119.2239495340103,0,3,3,2019,6,0,15,12,1,0,0,9.987968084005306,9.987968084005306,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.76,57.19,6.666666666666667,1,1,0,1,9,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5230,9461,-9,9460,9459,1,0,16,0,5,0,3,3,-9,0,3,0,0,0,0,0,-962.9061846203737,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,0,0,0,7,3,1,1322.833333333333,1201868.825461485,339176.5028358977,159758.946441008,7929.782164252691,3479.044509239237 -4205,5231,9462,-9,9460,9459,1,1,22,0,5,0,2,2,-9,0,4,7.305699475756413,7.38368837138707,0,0,0,-958.7587429569991,0,2,2,2019,11,0,35,35,1,2,1,4.929651195018939,4.929651195018939,0,0,0,0,0,1,1,0,2.555049237137767,0,47,59,-9,-9,7,1,1,0,0,4,7,3,1,2155,138497.079630116,0,0,0,862.2301410135508 -4205,5232,9463,-9,9460,9459,1,1,21,0,5,0,2,2,-9,0,4,7.488114518706196,7.475407757640573,0,0,0,-1041.746888782965,0,2,2,2019,3,0,24,20,1,0,1,8.163442581886407,8.163442581886407,0,0,0,0,0,1,1,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,991,1780.066226642176,0,0,0,1235.271812173369 -4206,5233,9464,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.2792482344406,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,14.28552082614539,0,0,1,1,0,0,0,45.74,28.87,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,113,1024.678936345594,0,0,0,593.798547714846 -4206,5234,9465,-9,9464,-9,1,0,58,0,0,0,2,2,-9,0,3,8.03053373209508,7.836988610972871,0,0,0,-1092.907744455584,0,3,-9,2019,6,0,25,28,1,0,0,11.67197254602335,11.67197254602335,0,0,0,0,2,1,1,0,0,0,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,854,-27591.2146800339,0,0,0,1207.672674240551 -4207,5235,9466,-9,9467,-9,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-894.443909983007,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.71,58.83,-9,-9,10,1,1,0,0,0,1,3,1,795.75,174526.0217355418,186382.4474605734,185252.8431527436,71891.35355637994,1855.823740019798 -4207,5235,9467,-9,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,8.128188855728915,8.03567842025547,0,0,0,-1119.05555996939,0,2,2,2019,10,0,37,37,1,0,0,11.8722331899272,11.8722331899272,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,795.75,174526.0217355418,186382.4474605734,185252.8431527436,71891.35355637994,1855.823740019798 -4207,5235,9468,-9,9467,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.540252938144,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,795.75,174526.0217355418,186382.4474605734,185252.8431527436,71891.35355637994,1855.823740019798 -4207,5235,9469,-9,9467,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.830018563499,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,795.75,174526.0217355418,186382.4474605734,185252.8431527436,71891.35355637994,1855.823740019798 -4208,5236,9470,9471,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.405709024678984,8.600862374711177,6,5,1.278275339002349,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,2.868898513645854,8.472107391471992,49.34,47.5,39.37,34.87,8.333333333333334,1,1,0,0,0,9,3,1,588,1637466.728085127,1072113.985051336,335215.317214949,0,3186.80007089857 -4208,5236,9471,9470,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,38,-5,-15.6857590193483,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,0,39.37,34.87,49.34,47.5,8.333333333333334,1,1,0,0,0,9,3,1,588,1637466.728085127,1072113.985051336,335215.317214949,0,3186.80007089857 -4209,5237,9472,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.891860660714818,7.836124834475022,0,0,0,-955.4696306289159,0,3,3,2019,18,5,36,35,1,5,0,6.986386829559641,6.986386829559641,0,0,0,0,0,0,0,0,6.330436787903527,0,34.51,47.72,-9,-9,3.333333333333333,2,3,0,0,9,5,3,1,303,185975.5965586827,118550.3600235392,0,0,1087.813803553643 -4209,5238,9473,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.577870548946794,7.79757031760674,0,0,0,-995.1522107688609,0,2,2,2019,8,2,38,38,1,2,0,6.357946298977865,6.357946298977865,0,0,0,0,0,0,0,0,0,0,39.22,32.94,-9,-9,1.666666666666667,2,3,0,0,9,5,3,1,2663,881944.9536321011,726940.5758925896,274649.1560872519,0,445.2139640465892 -4210,5239,9474,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.309812599924863,8.098107973985103,0,0,0,-1031.100008876774,0,2,1,2019,18,5,39,37,1,5,0,12.74929784547335,12.74929784547335,0,0,0,0,0,0,0,0,.673463344635657,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,2,10,4,1,225,65363.09999122842,133560.2074803108,0,0,956.4340885421243 -4211,5240,9475,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,8.255470801650038,7.473424499213968,0,0,-951.4268252553856,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.746360672527951,7.85319391482606,47.6,23.1,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,207,191443.0377754279,58817.39444883006,0,0,1180.025699650407 -4212,5241,9476,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.177376464262284,7.708323126285859,0,9,0,-71.30534527716873,0,2,3,2019,14,2,36,30,1,2,0,9.442985921387386,9.442985921387386,0,0,0,0,0,0,0,0,4.030535160405622,0,43.25,41.45,59.14,52.5,8.333333333333334,1,1,0,0,12,4,5,1,471,200454.4463549416,-94368.1126357546,0,0,1831.789986306665 -4213,5242,9477,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.77534382517281,8.620213192309151,0,0,0,-1062.243284382738,0,-9,2,2019,6,0,38,39,1,0,0,15.24172568622273,15.24172568622273,0,0,0,0,0,0,0,0,7.877708992474946,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,2515,-89162.62398836474,-3024.420785075575,0,0,2896.105307836357 -4214,5243,9478,-9,9479,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-897.8842783892924,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,1,0,690.5,-52239.34440834109,0,0,0,2537.181732798146 -4214,5243,9479,-9,-9,-9,1,0,34,0,3,0,3,3,-9,1,1,0,0,0,0,0,-1114.118201911578,0,3,3,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,5,1,1,0,0,0,8,1,0,690.5,-52239.34440834109,0,0,0,2537.181732798146 -4214,5243,9480,-9,9479,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.2345630483229,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,690.5,-52239.34440834109,0,0,0,2537.181732798146 -4214,5243,9481,-9,9479,-9,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.2132224136658,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,1,0,690.5,-52239.34440834109,0,0,0,2537.181732798146 -4215,5244,9482,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.358156361909578,7.336036095545924,0,0,0,-1046.168838412832,0,-9,-9,2019,11,1,30,26,1,1,0,6.656115463324658,6.656115463324658,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,4,10,3,0,858,-4161.894470667521,-12070.17588051179,0,0,647.659098023393 -4216,5245,9483,-9,9485,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.851758576533,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,673.6666666666666,-50132.82455624705,84.21141948145548,0,0,1511.437759804826 -4216,5245,9484,-9,9485,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1097.320039511475,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,2,0,673.6666666666666,-50132.82455624705,84.21141948145548,0,0,1511.437759804826 -4216,5245,9485,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.877876485422267,7.149031233878367,0,0,0,-1051.001026084437,0,2,2,2019,10,0,16,16,1,0,0,8.893437062304338,8.893437062304338,0,0,0,0,0,1,1,0,0,0,71.13,36.21,-9,-9,5,1,1,0,0,8,13,2,0,673.6666666666666,-50132.82455624705,84.21141948145548,0,0,1511.437759804826 -4217,5246,9486,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1129.929476000463,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,5.694486076967824,16.32872611332926,67.23771235476578,0,1,1,0,0,0,61.75,14.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,203,180687.1945695655,0,0,0,1248.549286095287 -4218,5247,9487,9488,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.587130614374504,5.703642951895946,11,-8,-60.9539701561611,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.620799098790799,5.794122095238023,41.93,56.33,53.23,42.9,8.333333333333334,1,1,0,0,0,10,3,1,667.5,523076.1612541037,260448.0728966241,260519.881936417,0,1972.416662423643 -4218,5247,9488,9487,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.837787226990552,7.499760382988337,11,8,-69.36801565196379,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.54930618483197,7.924953801045102,53.23,42.9,41.93,56.33,8.333333333333334,1,1,0,0,0,10,3,1,667.5,523076.1612541037,260448.0728966241,260519.881936417,0,1972.416662423643 -4219,5248,9489,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.454994973773998,7.184239680061241,0,0,-1025.10071354521,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.724410015244228,7.672662454452776,63.48,51.85,-9,-9,10,1,1,0,0,0,2,3,1,1227,151976.9646331788,467.4065633667633,0,0,1988.721373003234 -4220,5249,9490,9491,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.130661266096938,7.507006370328099,0,2,-12,-37.37528295979001,0,2,1,2019,8,0,20,20,1,0,0,6.606701469231149,6.606701469231149,0,0,0,0,0,1,1,0,0,0,53.71,37.87,57.93,46.29,8.333333333333334,1,1,0,0,9,4,2,1,841.5,-156206.6668251918,101533.606701922,0,0,1053.849723639995 -4220,5249,9491,9490,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,4.931564797970168,4.9651532550344,2,12,10.81044219225809,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.927405361107107,57.93,46.29,53.71,37.87,8.333333333333334,1,1,0,0,0,4,2,1,841.5,-156206.6668251918,101533.606701922,0,0,1053.849723639995 -4221,5250,9492,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-931.5359731665395,0,3,-9,2019,26,12,0,0,4,12,0,0,0,1,0,8.531251249030481,0,0,1,1,0,0,0,24.45,26.89,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,476,0,0,0,0,1484.163120657212 -4221,5251,9493,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.475255710253352,7.400820629639933,0,0,0,-954.2883384297692,0,-9,-9,2019,2,0,48,0,1,0,0,5.616270722736685,5.616270722736685,0,0,0,0,7,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,720,130337.0457652401,38921.7533642921,0,0,826.0919404284577 -4222,5252,9494,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.520139649845197,7.383145619569439,0,0,0,-959.0364187269203,0,2,2,2019,4,0,30,50,1,0,0,6.849277609125875,6.849277609125875,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,3.333333333333333,1,1,0,1,8,12,3,0,492,152042.8155330159,41440.45762431571,138551.8196899209,43551.01519089253,1066.959798752148 -4223,5253,9495,9496,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.473679115069609,6.58768960501163,0,21,-1,-52.7981147502281,0,3,3,2019,6,0,16,16,1,0,0,4.536618058062839,4.536618058062839,0,0,0,0,0,0,0,0,0,0,58.04,35.65,39.34,38.92,10,1,1,0,0,9,4,4,1,997.5,29779.20309958085,0,30242.59574908961,0,2197.84401625232 -4223,5253,9496,9495,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,7.963481449330551,8.490893179282356,7.105563614088053,21,1,-153.0317892105848,0,-9,-9,2019,10,1,45,45,1,1,0,7.283613457457806,7.283613457457806,0,0,0,0,0,0,0,0,7.430564779455716,7.085592976299496,39.34,38.92,58.04,35.65,6.666666666666667,1,1,0,0,11,4,4,1,997.5,29779.20309958085,0,30242.59574908961,0,2197.84401625232 -4224,5254,9497,9498,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.946281668327128,9.242348182219633,8.377448033326894,36,3,-69.7934145649243,0,2,2,2019,8,0,10,10,1,0,0,84.42244005416732,84.42244005416732,0,0,0,0,0,0,0,0,4.19168752298076,8.550713160643337,57.06,57.76,35.62,38.09,8.333333333333334,1,1,0,0,6,9,5,1,336.5,3385438.46496196,1626000.269075983,961056.3660307634,0,5204.920026021146 -4224,5254,9498,9497,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,0,0,37,-3,32.60673418144407,0,2,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,4.416072200142996,0,35.62,38.09,57.06,57.76,1.666666666666667,1,1,1,0,6,9,5,1,336.5,3385438.46496196,1626000.269075983,961056.3660307634,0,5204.920026021146 -4225,5255,9499,9500,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.491711708953585,4.405209039833891,8,0,-68.70174888230576,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,5.205969979693831,0,0,1,1,0,0,4.344370440860946,48.1,36.6,54.94,50.33,8.333333333333334,1,1,0,0,0,13,2,1,233,196958.2780109133,110648.6703360634,69957.51568645357,0,1611.380230703407 -4225,5255,9500,9499,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.692738259237575,6.818091318418025,8,0,132.7536215628663,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.540519734383075,54.94,50.33,48.1,36.6,8.333333333333334,1,1,0,0,0,13,2,1,233,196958.2780109133,110648.6703360634,69957.51568645357,0,1611.380230703407 -4226,5256,9501,9502,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.627852296876141,6.877374910955264,6,-1,91.00064177644015,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.219910906474616,7.004319328238069,50,47,57.16,56.15,7,1,1,0,0,0,11,3,1,866,1516838.656752387,1309100.565155406,144565.2593053678,3439.360442603203,2944.792055805844 -4226,5256,9502,9501,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.936698720070982,7.923610766925509,6,1,-73.47777987708406,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.4944223181420822,7.862002313394533,57.16,56.15,50,47,8.333333333333334,1,1,0,0,1,11,3,1,866,1516838.656752387,1309100.565155406,144565.2593053678,3439.360442603203,2944.792055805844 -4227,5257,9503,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.149355652421587,6.420977801584528,0,0,-1046.547296052096,0,-9,2,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.001311402187119,5.898793728569903,27.15,57.87,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,586,31789.7330925386,76713.07434117704,74137.92952931188,0,1447.428936671178 -4228,5258,9504,-9,9508,-9,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1108.015686212384,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,900,78581.43526892565,0,0,0,1618.345009063178 -4228,5258,9505,-9,9508,-9,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-902.3945352964607,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,1,0,900,78581.43526892565,0,0,0,1618.345009063178 -4228,5258,9506,-9,9508,-9,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-923.9015709615028,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,900,78581.43526892565,0,0,0,1618.345009063178 -4228,5258,9507,-9,9508,-9,1,0,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-968.5780505623459,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,900,78581.43526892565,0,0,0,1618.345009063178 -4228,5258,9508,-9,-9,-9,1,0,29,2,4,0,3,3,-9,0,5,0,0,0,0,0,-953.6279481257336,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,41.84,-9,-9,10,1,1,1,0,0,6,1,0,900,78581.43526892565,0,0,0,1618.345009063178 -4229,5259,9509,9511,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,5.940722533861233,6.05241263067913,2,-1,16.02497954516991,0,2,2,2019,14,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,0,6.164625083049321,0,40.97,32.79,41.14,30.1,3.333333333333333,1,1,0,0,12,11,3,1,878,71762.10188819817,68629.37321674569,0,0,1775.496715729825 -4229,5259,9510,-9,9509,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1086.503328975777,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,11,3,1,878,71762.10188819817,68629.37321674569,0,0,1775.496715729825 -4229,5259,9511,9509,-9,-9,1,1,46,0,1,0,2,2,-9,0,1,8.118095848848794,8.021778558208897,0,2,1,83.6998583315458,-9,-9,-9,2019,10,1,86,0,1,1,0,3.743606110029238,3.743606110029238,0,0,0,0,0,0,0,0,0,0,41.14,30.1,40.97,32.79,6.666666666666667,1,1,0,0,1,11,3,1,878,71762.10188819817,68629.37321674569,0,0,1775.496715729825 -4230,5260,9512,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,9.696037961502181,9.70291480146526,0,0,0,-952.9161946591278,-9,2,3,2019,8,0,50,0,1,0,0,36.15824387081398,36.15824387081398,0,0,0,0,0,0,0,0,4.848720980282521,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,8511,259743.9996826412,23088.09261755909,0,0,6550.684001905777 -4231,5261,9513,9514,-9,-9,1,1,53,1,0,0,3,3,-9,1,4,0,0,0,34,6,0,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,53,54,50,54,8,2,3,1,0,0,8,1,0,691,681006.2677999486,185492.6079863758,406486.9858942704,0,880.6443188158513 -4231,5261,9514,9513,-9,-9,1,0,47,1,0,0,3,3,-9,0,4,0,0,0,7,-6,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,1,0,691,681006.2677999486,185492.6079863758,406486.9858942704,0,880.6443188158513 -4231,5262,9515,-9,9514,9513,1,1,30,1,0,0,2,2,-9,0,4,8.850116139072599,8.715968447474333,0,0,0,-1000.472878430894,0,3,3,2019,10,0,30,30,1,1,1,30.72345415585688,30.72345415585688,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,5,0,260,64308.79641944398,47776.5820230478,0,0,2271.348492900177 -4231,5263,9516,-9,9514,9513,1,1,27,1,0,0,2,2,-9,0,4,7.136851513995225,6.75732067484385,0,0,0,-1115.60375887764,0,3,3,2019,10,0,40,40,1,1,1,2.938694372236909,2.938694372236909,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,2,0,340,8749.554734250418,-40869.49586235933,0,0,888.9410526606803 -4231,5264,9517,-9,9514,9513,1,0,26,1,0,0,2,2,-9,0,4,7.209836701067529,7.29715891316455,0,0,0,-948.2178392826519,0,2,2,2019,8,0,35,28,1,0,1,5.169478839464022,5.169478839464022,0,0,0,0,0,1,1,0,5.55087420601321,0,48.53,58.91,-9,-9,10,2,3,0,0,5,8,3,0,580,-104394.4782400536,0,0,0,422.3141600515834 -4231,5264,9518,-9,9517,-9,1,1,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-884.5335165437403,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,3,0,580,-104394.4782400536,0,0,0,422.3141600515834 -4231,5265,9519,-9,-9,-9,1,0,26,1,0,0,3,3,-9,0,4,0,0,0,0,0,-1050.321527458472,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,6,0,0,0,8,1,0,519,10012.38731205936,0,0,0,993.1418061918437 -4232,5266,9520,9521,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.176969655770304,7.990895517714674,0,2,-5,35.44534466070139,-9,-9,-9,2019,10,0,40,0,1,0,0,10.35410584808753,10.35410584808753,0,0,0,0,0,0,0,0,0,0,46,58,39.1,57.79,8.333333333333334,1,1,0,0,2,4,4,1,429,31617.16277046238,-23096.72130413596,100087.7161094552,96916.70019887926,2978.794011528042 -4232,5266,9521,9520,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.985235291671594,7.924639433345002,0,2,5,24.17833905317357,0,-9,-9,2019,10,0,40,42,1,0,0,10.49450097441666,10.49450097441666,0,0,0,0,0,0,0,0,.328819481494015,0,39.1,57.79,46,58,8.333333333333334,1,1,0,0,9,4,4,1,429,31617.16277046238,-23096.72130413596,100087.7161094552,96916.70019887926,2978.794011528042 -4233,5267,9522,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,6.244331983764706,6.337378564323167,0,0,-1006.390271342623,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,3.463401457529999,1.432158183057316,23.84623427611051,0,1,1,0,7.44737749272725,6.263485407675672,51.27,30.72,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,210,507007.1195492923,68884.6320107987,242366.7452103042,0,2736.92339780136 -4234,5268,9523,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,7.145754469800493,7.507506156659373,0,0,-986.2616355133067,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4452454298065768,7.264664022902801,56.43,47.07,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,315,935969.4353480352,416066.5973379569,548833.2074680459,0,1229.617222218584 -4235,5269,9524,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.241512540534549,6.484093049999025,0,0,-998.808273594818,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.553412434852215,6.417615279454193,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,524,-10482.38949801173,188158.1096310522,81984.58553991084,0,1133.134222524415 -4235,5270,9525,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.940534984179554,7.863342771853423,0,0,0,-1020.330880938113,0,3,3,2019,11,0,30,30,1,0,0,10.81476069201077,10.81476069201077,0,0,0,0,0,1,1,0,.2070520410571101,0,50.74,46.8,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,1515,-135624.3917927255,0,0,0,971.3878928819565 -4236,5271,9526,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,3.93994100064638,3.794543452398578,0,0,-900.3920755050184,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.525409003385104,3.494845676182781,65.14,32.13,-9,-9,10,1,1,0,0,0,9,2,0,1091,444597.4116009956,0,537650.717266607,0,84.01229070292834 -4237,5272,9527,9528,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.369648195739435,8.51420447242308,40,1,41.28606936144602,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,8.997919206956674,50.85,40.24,54.1,59.11,8.333333333333334,1,1,0,0,11,7,4,1,1753,3170705.788669972,1373353.211862305,869861.7356233071,0,3160.796774513668 -4237,5272,9528,9527,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.328708799082491,7.44782672205123,40,-1,-42.53138867806813,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,2.671578184281741,7.51114856571883,54.1,59.11,50.85,40.24,10,1,1,0,0,0,7,4,1,1753,3170705.788669972,1373353.211862305,869861.7356233071,0,3160.796774513668 -4237,5273,9529,-9,9528,9527,1,1,22,0,0,0,1,1,1,0,4,0,4.776954059444749,4.585932802756571,0,0,-1186.757157437258,-9,2,1,2019,4,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,5.101088898228253,0,50.46,53.68,-9,-9,6.666666666666667,1,1,1,0,0,7,2,1,446,85031.16759499196,0,0,0,98.72333919457009 -4238,5274,9530,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.589057899574664,7.379897976844729,0,0,-1181.649853396222,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.187280344411104,57.33,34.69,-9,-9,10,1,1,0,0,0,4,3,1,250,501138.1270972165,199922.9183718972,277104.8216987652,0,1697.852379257628 -4239,5275,9531,-9,9532,9533,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.7927451130421,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,3,1,1096.5,89267.69163613724,27223.1681673841,117040.393664417,48166.79593409605,3191.917404564235 -4239,5275,9532,9533,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.259079871010662,7.404626306886223,0,17,0,-159.0198503885849,0,3,3,2019,12,0,31,31,1,0,0,5.814189565983334,5.814189565983334,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,8,5,3,1,1096.5,89267.69163613724,27223.1681673841,117040.393664417,48166.79593409605,3191.917404564235 -4239,5275,9533,9532,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.412830950056761,7.301833358510512,0,17,9,40.91765929749195,0,2,2,2019,8,1,50,50,1,1,0,4.614235326112142,4.614235326112142,0,0,0,0,0,1,1,0,7.620516863402306,0,54.2,57.49,54.2,57.49,6.666666666666667,1,1,0,0,8,5,3,1,1096.5,89267.69163613724,27223.1681673841,117040.393664417,48166.79593409605,3191.917404564235 -4239,5275,9534,-9,9532,9533,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-986.7631839019446,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,3,1,1096.5,89267.69163613724,27223.1681673841,117040.393664417,48166.79593409605,3191.917404564235 -4240,5276,9535,9536,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,50,13,0,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,120,1,1,0,0,0,18.08,59.64,26.9,21.84,8.333333333333334,1,1,0,0,0,8,1,0,264,-21173.40411456187,21227.99385663274,0,0,1852.472680807258 -4240,5276,9536,9535,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,50,-13,0,0,3,3,2019,26,8,0,0,4,8,0,0,0,1,0,9.838801266512188,0,0,1,1,0,1.835837382080018,0,26.9,21.84,18.08,59.64,0,1,1,0,0,0,8,1,0,264,-21173.40411456187,21227.99385663274,0,0,1852.472680807258 -4241,5277,9537,-9,9539,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1087.326380717697,-9,2,-9,2019,27,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.64,60.82,-9,-9,5,2,3,0,0,0,8,1,0,794,44748.35966471941,0,129619.5196157749,28450.32831047363,1432.368192374299 -4241,5277,9538,-9,9539,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-973.5011846975021,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,8,1,0,794,44748.35966471941,0,129619.5196157749,28450.32831047363,1432.368192374299 -4241,5277,9539,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,3,0,0,0,0,0,-991.7402156786334,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.69,43.24,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,794,44748.35966471941,0,129619.5196157749,28450.32831047363,1432.368192374299 -4242,5278,9540,9541,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.91014698728216,7.928740647746263,0,29,-2,-77.26786085205211,0,2,2,2019,8,0,34,34,1,0,0,11.53220994359576,11.53220994359576,0,0,0,0,7,0,0,0,5.681351501216336,0,53.96,50.73,51.14,60.45,8.333333333333334,1,1,0,0,8,12,5,1,473,2024513.178277828,1088060.771775945,379538.5307736869,115534.7250109318,6278.235806555238 -4242,5278,9541,9540,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.48707907282081,9.270522615053425,0,29,2,49.58029159757681,0,1,1,2019,10,0,60,55,1,0,0,26.36284828490775,26.36284828490775,0,0,0,0,2,0,0,0,0,0,51.14,60.45,53.96,50.73,8.333333333333334,1,1,0,0,8,12,5,1,473,2024513.178277828,1088060.771775945,379538.5307736869,115534.7250109318,6278.235806555238 -4243,5279,9542,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.481390555482523,7.754797177681255,0,0,-1071.446326262886,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.233249313263906,0,2,1,1,0,0,7.726780797963642,61.64,37.78,-9,-9,10,1,1,0,0,0,13,3,1,176,161546.8677392126,95476.21286146968,79332.47503375106,0,1358.943187047494 -4244,5280,9543,9544,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.364907755177654,7.838893402021727,0,7,5,-63.46444012129159,0,3,2,2019,10,0,47,48,1,0,0,7.896565818604336,7.896565818604336,0,0,0,0,0,1,1,0,.713240922656724,0,52.48,54.33,46.81,49.9,5,1,1,0,1,8,11,4,1,1127.5,349762.8274747403,124924.559593144,156991.6385745405,36944.40606129653,2657.789116588947 -4244,5280,9544,9543,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.914214258028878,8.021213299645316,0,7,-5,-100.3378460545104,0,2,2,2019,12,0,34,30,1,0,0,9.338917676880117,9.338917676880117,0,0,0,0,0,1,1,0,0,0,46.81,49.9,52.48,54.33,6.666666666666667,1,1,0,1,8,11,4,1,1127.5,349762.8274747403,124924.559593144,156991.6385745405,36944.40606129653,2657.789116588947 -4244,5281,9545,-9,9544,9543,1,0,19,0,1,0,2,2,-9,0,5,7.533500681508094,7.68987538878205,0,0,0,-1059.080531269099,0,2,2,2019,12,0,45,50,1,0,1,5.406523132942046,5.406523132942046,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,962,47753.40692933743,-71355.69822827796,0,0,1430.430015725355 -4245,5282,9546,-9,9548,9547,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.018395594983,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,868.3333333333334,60893.03037223197,-53514.78207382193,0,0,2321.508179310882 -4245,5282,9547,9548,-9,-9,1,1,28,1,1,0,3,3,-9,1,3,0,0,0,6,2,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,33.61,36.14,5,1,1,1,0,2,7,1,0,868.3333333333334,60893.03037223197,-53514.78207382193,0,0,2321.508179310882 -4245,5282,9548,9547,-9,-9,1,0,26,1,1,0,2,2,-9,1,2,0,0,0,6,-2,0,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,33.61,36.14,49.04,55.86,1.666666666666667,1,1,1,0,0,7,1,0,868.3333333333334,60893.03037223197,-53514.78207382193,0,0,2321.508179310882 -4246,5283,9549,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,1,0,0,0,0,0,-972.9639119246061,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,30.85,27.01,-9,-9,1.666666666666667,1,1,0,1,1,9,2,0,955,-96115.1834348789,0,0,0,843.9235414416984 -4246,5284,9550,-9,9549,-9,1,1,28,0,0,0,3,3,-9,1,2,0,0,0,0,0,-973.1751308928293,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.25,39.68,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,2358,161738.6070523805,0,0,0,1107.980007063006 -4246,5285,9551,9552,9549,-9,1,0,24,0,0,0,2,2,-9,0,3,7.953584775955701,8.215973551125954,0,2,-3,10.8087383080718,0,2,-9,2019,12,2,40,10,1,2,0,9.73402032404033,9.73402032404033,0,0,0,0,2,1,1,0,0,0,41.18,37.66,46.91,51.8,6.666666666666667,1,1,0,0,3,9,4,0,437.5,-33958.01870875719,-61143.67907015258,0,0,2947.357798126433 -4246,5285,9552,9551,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.142117176411135,8.222459375593411,0,2,3,-96.58459506867383,0,-9,-9,2019,12,0,40,0,1,0,0,11.08754698918928,11.08754698918928,0,0,0,0,2,1,1,0,0,0,46.91,51.8,41.18,37.66,6.666666666666667,1,1,0,0,1,9,4,0,437.5,-33958.01870875719,-61143.67907015258,0,0,2947.357798126433 -4247,5286,9553,9554,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.178206738956964,7.533442664154982,5.724044306207104,36,2,58.10124530616727,0,3,1,2019,10,0,19,18,1,0,0,8.226473903097741,8.226473903097741,0,0,0,0,0,0,0,0,4.127392366690028,5.64837858486178,61.21,41.86,52.91,55.33,6.666666666666667,1,1,0,0,10,9,4,1,322,424160.6280384089,96008.38957810757,198812.4957902213,0,3520.898235141862 -4247,5286,9554,9553,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.843978232463943,8.466934494888179,0,35,-2,6.920591978796568,0,3,3,2019,8,0,49,42,1,0,0,12.55705059730374,12.55705059730374,0,0,0,0,0,0,0,0,5.583702359475003,0,52.91,55.33,61.21,41.86,8.333333333333334,1,1,0,0,10,9,4,1,322,424160.6280384089,96008.38957810757,198812.4957902213,0,3520.898235141862 -4247,5287,9555,-9,9553,9554,1,1,24,0,0,0,2,2,-9,0,4,7.750234163791259,7.705629065072287,0,0,0,-1096.999331727187,0,1,2,2019,12,0,30,34,1,0,1,10.89788145996395,10.89788145996395,0,0,0,0,0,0,0,0,0,0,36.01,50.99,-9,-9,5,1,1,0,1,8,9,3,1,555,-222694.0060085022,-31558.0686149803,0,0,1008.167343909029 -4247,5288,9556,-9,9553,9554,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-902.4303173496083,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,652,0,0,0,0,52.34537410707451 -4248,5289,9557,9558,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.921522689649004,7.878670675696632,0,11,-16,-3.950759989131639,0,3,3,2019,8,0,36,30,1,0,0,6.138755654854452,6.138755654854452,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,361.6666666666667,323984.9393279105,267862.7508793156,134891.6036662628,69101.63565748894,3480.128943443878 -4248,5289,9558,9557,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.599623033751897,8.526022962345651,0,7,16,-45.18247436868246,0,-9,-9,2019,8,0,47,50,1,0,0,10.19133410368636,10.19133410368636,0,0,0,0,0,1,1,0,4.339715443930771,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,2,4,1,361.6666666666667,323984.9393279105,267862.7508793156,134891.6036662628,69101.63565748894,3480.128943443878 -4248,5289,9559,-9,9557,9558,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.7048097486963,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,361.6666666666667,323984.9393279105,267862.7508793156,134891.6036662628,69101.63565748894,3480.128943443878 -4249,5290,9560,9561,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.63721984321796,6.435843497747961,9,4,113.5009416955406,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.956782532205817,6.465935402694017,54.84,42.66,46.62,25.87,8.333333333333334,1,1,0,0,0,9,3,1,289.5,835496.7987986376,336491.0719268867,421558.2585693768,0,2041.212587130772 -4249,5290,9561,9560,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,7.355173542044729,7.790115635148822,9,-4,-1.552509033816719,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.797516619074711,0,0,1,1,0,0,7.47635468336297,46.62,25.87,54.84,42.66,8.333333333333334,1,1,0,0,0,9,3,1,289.5,835496.7987986376,336491.0719268867,421558.2585693768,0,2041.212587130772 -4250,5291,9562,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,0,0,0,0,0,-812.6581637288226,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,33.68,64.36,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1406.666666666667,31077.92344663126,0,0,0,1584.838302667099 -4250,5291,9563,-9,9562,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.554069620749,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1406.666666666667,31077.92344663126,0,0,0,1584.838302667099 -4250,5291,9564,-9,9562,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-863.7515746410591,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,1,0,1406.666666666667,31077.92344663126,0,0,0,1584.838302667099 -4251,5292,9565,9566,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.488496663299779,8.242622966966398,0,7,-2,-174.4708276258387,0,-9,-9,2019,7,0,37,38,1,0,0,13.8850593197241,13.8850593197241,0,0,0,0,0,0,0,0,0,0,51.83,57.2,46.39,39.52,8.333333333333334,1,1,0,0,7,1,5,1,1185.5,910180.9874329511,229090.306996789,240504.2831585321,0,2909.091194013954 -4251,5292,9566,9565,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.126868070284617,8.216028732541826,0,7,2,-59.19545841566841,0,2,2,2019,14,3,37,38,1,3,0,13.78529205875757,13.78529205875757,0,0,0,0,0,0,0,0,0,0,46.39,39.52,51.83,57.2,6.666666666666667,1,1,0,0,10,1,5,1,1185.5,910180.9874329511,229090.306996789,240504.2831585321,0,2909.091194013954 -4252,5293,9567,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1045.330677890571,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,46.16,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,165,-41197.66533954089,0,0,0,1324.85870307152 -4253,5294,9568,-9,9571,9569,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1042.303830015683,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.2889748431931949,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,259.6,304751.2743576166,284333.964528835,251812.6335827388,125133.2058646665,3922.912323266877 -4253,5294,9569,9571,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.85218498857545,8.853303131235423,0,8,3,-47.11162433999823,-9,2,2,2019,8,0,57,0,1,0,0,14.98165358178723,14.98165358178723,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,259.6,304751.2743576166,284333.964528835,251812.6335827388,125133.2058646665,3922.912323266877 -4253,5294,9570,-9,9571,9569,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.7582581664838,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,259.6,304751.2743576166,284333.964528835,251812.6335827388,125133.2058646665,3922.912323266877 -4253,5294,9571,9569,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.304918825802945,8.650479613339419,0,8,-3,50.00852026382338,-9,2,3,2019,6,0,26,0,1,0,0,20.57753635480053,20.57753635480053,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,259.6,304751.2743576166,284333.964528835,251812.6335827388,125133.2058646665,3922.912323266877 -4253,5294,9572,-9,9571,9569,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.466250068205,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,259.6,304751.2743576166,284333.964528835,251812.6335827388,125133.2058646665,3922.912323266877 -4254,5295,9573,9574,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.710079499065833,7.698960575555069,10,4,16.1448544400267,0,-9,-9,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,7.373366759140358,56,51,55.19,54.26,3.333333333333333,1,1,0,0,10,9,3,1,617.5,1770119.493313161,768449.600681497,332234.5961763961,0,3406.618807124666 -4254,5295,9574,9573,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.63245360461775,7.790917352251825,48,-4,63.13670223573539,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.492893037076441,7.47194240182367,55.19,54.26,56,51,6.666666666666667,1,1,0,0,9,9,3,1,617.5,1770119.493313161,768449.600681497,332234.5961763961,0,3406.618807124666 -4255,5296,9575,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.611217452448727,8.326291233455175,0,0,0,-938.9877545814521,0,-9,-9,2019,13,1,40,40,1,1,0,12.47601876317797,12.47601876317797,0,0,0,0,0,1,1,0,0,0,46.86,55.66,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,1625,73202.84386484537,153766.1222056776,0,0,1933.956450534836 -4256,5297,9576,-9,9578,9577,1,0,18,0,0,0,2,2,1,0,4,4.752891634244973,5.023744584189721,0,0,0,-841.4203938152557,-9,2,2,2019,7,0,2,0,1,0,1,8.575519142337725,8.575519142337725,0,0,0,0,0,0,0,0,0,0,55.3,55.6,-9,-9,5,1,1,0,0,2,11,2,1,289,-171850.0205948061,0,0,0,-19.38548777840741 -4256,5298,9577,9578,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.03604804723661,7.972375802124081,0,8,-5,-21.59378094616761,0,3,-9,2019,6,0,39,40,1,0,0,9.291373498871462,9.291373498871462,0,0,0,0,0,0,0,0,0,0,42.29,51.8,49.64,42.03,8.333333333333334,1,1,0,0,9,11,4,1,1165.5,-73484.41506479224,69040.90566579014,0,0,2422.506407031247 -4256,5298,9578,9577,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.120852360554661,8.358090825888553,0,8,5,-133.9588062306381,0,-9,-9,2019,11,1,10,100,1,1,0,40.86308204302954,40.86308204302954,0,0,0,0,0,0,0,0,0,0,49.64,42.03,42.29,51.8,5,1,1,0,0,9,11,4,1,1165.5,-73484.41506479224,69040.90566579014,0,0,2422.506407031247 -4257,5299,9579,9580,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.995678966108286,6.724138100933405,62,1,30.73624793775873,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.22873559618588,6.616883682016544,64.45,24.83,35.19,59.41,10,1,1,0,0,0,10,2,1,834.5,769168.1832585696,113739.8918003203,325931.0208829364,0,1443.037529330529 -4257,5299,9580,9579,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.018778947256614,5.890693758182382,62,-1,-168.1574853636185,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.887099575799781,5.822222469507571,35.19,59.41,64.45,24.83,10,1,1,0,0,0,10,2,1,834.5,769168.1832585696,113739.8918003203,325931.0208829364,0,1443.037529330529 -4258,5300,9581,-9,9582,-9,1,0,17,0,1,1,3,0,0,1,4,0,0,0,0,0,-1046.587366062792,-9,1,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,38.73,-9,-9,0,1,1,0,0,0,1,2,0,670,-84049.9434881591,53428.31169567302,54424.60804804145,63212.07510735624,2228.803295341422 -4258,5300,9582,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,6.467707884063694,6.36294852505872,0,0,-891.9925484956893,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,6.724387484284709,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,670,-84049.9434881591,53428.31169567302,54424.60804804145,63212.07510735624,2228.803295341422 -4259,5301,9583,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,6.562710871596841,6.969928503909115,0,0,-903.9423087320822,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.8749382984153118,6.902446168075132,57.33,42.93,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,569,171734.0531383693,0,0,0,1146.792506546332 -4260,5302,9584,9585,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,6,-1,-110.5603948638952,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,43.92,24.34,58.08,40.76,8.333333333333334,1,1,0,0,0,2,5,1,581.5,3153577.500251834,2904000.96304663,156549.8549627864,0,8651.983747334978 -4260,5302,9585,9584,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,9.625205926967235,9.427388164641668,6,1,-25.06273770928279,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.498517960862404,9.546585667992881,58.08,40.76,43.92,24.34,8.333333333333334,1,1,0,0,5,2,5,1,581.5,3153577.500251834,2904000.96304663,156549.8549627864,0,8651.983747334978 -4261,5303,9586,-9,9587,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.3501395425209,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,399,-234.7639256353214,0,0,0,893.9391467061317 -4261,5303,9587,-9,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,7.114698760788374,7.046587185450414,0,0,0,-1014.647050629944,0,3,3,2019,10,2,20,39,1,2,0,5.89505935140375,5.89505935140375,0,0,0,0,0,1,1,0,0,0,50.64,42.62,-9,-9,5,1,1,0,1,9,2,2,0,399,-234.7639256353214,0,0,0,893.9391467061317 -4262,5304,9588,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,6.181377566219076,6.285294984459623,0,0,0,-1002.870235644227,0,1,2,2019,7,0,37,40,1,0,0,1.440527116356492,1.440527116356492,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,2,1,134,58244.30906330748,0,0,0,470.275129891873 -4263,5305,9589,9590,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,4.054528246828034,4.224050157124037,8,3,-47.83826069732611,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.412257714616838,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,1,12,2,1,870.5,156336.6514757733,128371.9711037665,86084.41138315402,0,1037.925879534579 -4263,5305,9590,9589,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.869166976461473,5.165209532277094,8,-3,-91.19680745681907,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.386962535307906,5.061398557730792,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,3,12,2,1,870.5,156336.6514757733,128371.9711037665,86084.41138315402,0,1037.925879534579 -4264,5306,9591,9595,-9,-9,1,0,34,0,3,0,2,2,-9,0,2,0,0,0,15,-4,58.15283267419492,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.68,49.16,34.65,58.34,6.666666666666667,2,3,0,0,4,2,2,1,512.6,-50.20326152999187,-35281.10821252842,0,0,1803.942214905424 -4264,5306,9592,-9,9591,9595,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.723759221719,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,512.6,-50.20326152999187,-35281.10821252842,0,0,1803.942214905424 -4264,5306,9593,-9,9591,9595,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.138721355925,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,512.6,-50.20326152999187,-35281.10821252842,0,0,1803.942214905424 -4264,5306,9594,-9,9591,9595,1,1,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1059.667176115683,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,2,2,1,512.6,-50.20326152999187,-35281.10821252842,0,0,1803.942214905424 -4264,5306,9595,9591,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,7.653169568090185,7.542327616084775,0,15,4,72.97839195301459,0,3,2,2019,12,0,24,30,1,0,0,8.124712507652756,8.124712507652756,0,0,0,0,0,1,1,0,0,0,34.65,58.34,31.68,49.16,6.666666666666667,2,3,0,0,10,2,2,1,512.6,-50.20326152999187,-35281.10821252842,0,0,1803.942214905424 -4265,5307,9596,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.478174898502523,8.148983928523542,0,0,0,-1073.521772959992,0,3,2,2019,10,0,37,0,1,0,0,13.83786393962681,13.83786393962681,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,402,579209.5554965943,113.8286636833509,342041.3978354112,0,1525.031417555347 -4266,5308,9597,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1049.766813193714,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,49.13,36.96,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,520,-1670.17072031558,85953.89064055549,0,0,1147.95695141954 -4267,5309,9598,9599,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.105138562191424,7.365157406608485,49,-1,111.3709274586189,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.834298691298697,7.083630403582376,58.31,42.52,39.88,50.52,8.333333333333334,1,1,0,0,3,13,2,1,3167.5,746259.6775055327,433878.5708876773,186027.7577130874,0,2210.582045425122 -4267,5309,9599,9598,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.7986124686453,4.799808011588909,49,1,114.7162606264784,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.169261094719064,5.07343159408718,39.88,50.52,58.31,42.52,8.333333333333334,1,1,0,0,0,13,2,1,3167.5,746259.6775055327,433878.5708876773,186027.7577130874,0,2210.582045425122 -4268,5310,9600,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.816547022677855,7.162809237714439,0,0,-1059.608188888536,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.835331119682048,6.966085996306952,52,54.51,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,608,140566.5182799186,46516.1435467206,0,0,1011.032403147956 -4269,5311,9601,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,6.230432550489837,6.092776664736157,0,0,0,-1036.631081126401,0,-9,-9,2019,13,1,14,0,1,1,0,4.55368493416747,4.55368493416747,0,0,0,0,71.5,1,1,0,0,0,39.39,37.66,-9,-9,3.333333333333333,1,1,0,0,1,12,2,0,173,97133.1688963254,26436.90902248134,84608.57658635403,16290.29546952384,528.1252991042822 -4269,5312,9602,-9,-9,9601,1,0,22,0,0,1,2,0,-9,1,3,0,0,0,0,0,-1016.470190068264,-9,-9,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,61.93,46,-9,-9,10,1,1,0,0,0,12,1,0,172,0,0,0,0,595.9511761590552 -4269,5313,9603,-9,-9,9601,1,0,21,0,0,0,3,3,-9,1,2,0,0,0,0,0,-978.7936475555089,-9,-9,3,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,28.65,37.08,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,2614,-79937.59138394422,0,0,0,1522.066843354535 -4270,5314,9604,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.16615784146731,7.241805246456958,0,0,-988.6437253964472,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.032621306321112,50.9,28.51,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,717,246484.9976025168,204643.0616594706,128443.8594796743,0,1361.898839122769 -4271,5315,9605,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,6.096164116866299,6.041756120379521,0,0,0,-1012.977637310647,0,2,2,2019,15,3,5,5,1,3,0,11.74360124383485,11.74360124383485,0,0,0,0,0,1,1,0,6.533423774093643,0,45.44,44.14,-9,-9,5,1,1,0,0,10,10,2,1,474,-165025.1098511631,-16958.67739316461,0,0,239.1974600293761 -4272,5316,9606,9607,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,6.528729576789454,7.049768926452786,53,-1,111.9390664912921,0,2,2,2019,35,12,0,0,4,12,0,0,0,1,0,71.9570329860581,0,0,1,1,0,2.208690258704065,7.009725516453192,16.04,23.99,28.13,41.4,0,1,1,0,0,2,4,2,1,745,564295.3883008459,182789.8230856601,218948.8292256827,-5053.672188225573,2547.261052175134 -4272,5316,9607,9606,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.066152520712452,6.24703808641957,53,1,19.39559572173127,0,2,2,2019,28,11,0,0,4,11,0,0,0,1,0,0,0,14.5,1,1,0,1.251893970275151,5.931560085218104,28.13,41.4,16.04,23.99,3.333333333333333,1,1,0,0,7,4,2,1,745,564295.3883008459,182789.8230856601,218948.8292256827,-5053.672188225573,2547.261052175134 -4273,5317,9608,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.058103232107968,8.479258137963173,0,0,0,-1045.119630968936,0,-9,-9,2019,12,1,36,37,1,1,0,11.44350835530103,11.44350835530103,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,5,2,3,0,0,9,8,4,0,3618,116361.686569174,0,0,0,1182.745998483577 -4274,5318,9609,9610,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.800762724453142,8.904382046273463,0,10,-1,-91.22830071287601,0,-9,-9,2019,5,0,43,43,1,0,0,17.73913266834916,17.73913266834916,0,0,0,0,0,0,0,0,7.260088071732248,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,9,7,5,1,470,1161083.290991559,807209.1242403006,248719.5875502932,27617.04787870065,6087.391318009686 -4274,5318,9610,9609,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.866753129421234,8.498233069341865,0,10,1,12.9009394448903,0,2,3,2019,10,1,46,46,1,1,0,16.71125051841339,16.71125051841339,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,10,2,3,0,0,8,7,5,1,470,1161083.290991559,807209.1242403006,248719.5875502932,27617.04787870065,6087.391318009686 -4275,5319,9611,9612,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,6,3,-31.93373748443127,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,57.33,53.46,7,1,1,0,0,0,5,2,0,491,415271.119003831,109165.028922196,212103.7572157541,0,2544.941986327 -4275,5319,9612,9611,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.766847992590951,6.730877084944447,6,-3,-34.30477899454554,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.393607463143102,57.33,53.46,52,48,8.333333333333334,1,1,0,0,2,5,2,0,491,415271.119003831,109165.028922196,212103.7572157541,0,2544.941986327 -4276,5320,9613,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.269359084532528,8.022194835023873,0,0,0,-1009.52421678894,0,3,3,2019,6,0,37,38,1,0,0,9.122416556269046,9.122416556269046,0,0,0,0,5.48,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,6,4,4,0,485,557847.156123121,224867.5453120297,212038.0998399467,21634.73266505115,1270.497728995372 -4277,5321,9614,9615,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.332766367860568,8.12196875654068,5.70794390077887,8,5,73.87264850980397,0,2,2,2019,9,0,55,60,1,0,0,8.252684269704107,8.252684269704107,0,0,0,0,0,1,1,0,3.115341081667336,6.040508821802261,60.28,43.74,53.77,45.91,8.333333333333334,1,1,0,0,8,10,5,1,1450,2189796.232879105,1884589.997604112,263442.6306696027,0,3543.890808494363 -4277,5321,9615,9614,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.056456197550547,8.383321768103105,0,8,-5,118.4962612383156,0,-9,-9,2019,15,3,60,60,1,3,0,8.598071341163823,8.598071341163823,0,0,0,0,0,1,1,0,1.72673123837298,0,53.77,45.91,60.28,43.74,3.333333333333333,1,1,0,0,9,10,5,1,1450,2189796.232879105,1884589.997604112,263442.6306696027,0,3543.890808494363 -4277,5321,9616,-9,9615,9614,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1028.416180332059,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1450,2189796.232879105,1884589.997604112,263442.6306696027,0,3543.890808494363 -4278,5322,9617,9618,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,0,0,4,-4,136.5090151925592,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.36,58.53,57.33,53.46,8.333333333333334,1,1,0,0,0,11,2,1,670,916211.3658712556,93451.28864491213,471832.5905231758,0,1201.566536346174 -4278,5322,9618,9617,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.979624032608683,4.985845335881063,4,4,-45.93540680719254,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.772112330205097,5.073274571431871,57.33,53.46,49.36,58.53,8.333333333333334,1,1,0,0,7,11,2,1,670,916211.3658712556,93451.28864491213,471832.5905231758,0,1201.566536346174 -4279,5323,9619,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1069.310090098222,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.14,33.09,-9,-9,0,3,4,0,1,0,2,1,0,595,-114776.7302691834,0,0,0,1556.995158656377 -4280,5324,9620,-9,9623,9622,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.4954067499573,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,4,1,1004.75,186966.6035308382,103315.9154083854,199012.4144682419,73791.78405412017,3101.595558885506 -4280,5324,9621,-9,9623,9622,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.737814571886,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,1,1004.75,186966.6035308382,103315.9154083854,199012.4144682419,73791.78405412017,3101.595558885506 -4280,5324,9622,9623,-9,-9,1,1,40,1,2,0,2,2,-9,1,1,8.699801397907002,8.883049968235497,0,5,6,-93.83142514892762,0,2,3,2019,13,1,43,42,1,1,0,16.2907645935174,16.2907645935174,0,0,0,0,0,1,1,0,0,0,39.9,34.6,46.36,45.33,5,1,1,0,0,12,1,4,1,1004.75,186966.6035308382,103315.9154083854,199012.4144682419,73791.78405412017,3101.595558885506 -4280,5324,9623,9622,-9,-9,1,0,34,1,2,0,2,2,-9,0,1,6.85927591442638,6.877838549877627,0,5,-6,16.97154850455366,0,-9,-9,2019,9,0,16,16,1,0,0,5.238358943262452,5.238358943262452,0,0,0,0,0,1,1,0,0,0,46.36,45.33,39.9,34.6,6.666666666666667,1,1,0,0,11,1,4,1,1004.75,186966.6035308382,103315.9154083854,199012.4144682419,73791.78405412017,3101.595558885506 -4281,5325,9624,9625,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.269388404867696,8.256307088760382,0,29,5,-105.0640847320738,0,3,2,2019,13,1,43,39,1,1,0,11.49995860142814,11.49995860142814,0,0,0,0,0,0,0,0,3.943747046211248,0,33.66,42.81,51.83,57.2,6.666666666666667,1,1,0,0,9,10,5,1,1146.5,1261897.36818646,1087926.722761512,232156.6413652817,173017.01917005,3504.696093344507 -4281,5325,9625,9624,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.335427857823916,8.273131364141721,0,29,-5,-41.60396880338029,0,1,1,2019,10,0,49,50,1,0,0,9.70372363459613,9.70372363459613,0,0,0,0,0,0,0,0,0,0,51.83,57.2,33.66,42.81,8.333333333333334,1,1,0,0,9,10,5,1,1146.5,1261897.36818646,1087926.722761512,232156.6413652817,173017.01917005,3504.696093344507 -4282,5326,9626,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,7.028006081957885,7.052497978427167,0,0,-948.494457431198,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.417847238320139,7.299804063928184,57.6,57.49,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,540,93072.55318841405,154661.9473463557,64366.20112256212,0,1406.614116312469 -4283,5327,9627,-9,-9,-9,1,0,42,1,2,0,1,1,-9,0,5,9.764331782633828,9.525480365647704,0,0,0,-986.7807823430963,0,3,3,2019,10,0,40,75,1,0,0,47.96992371808424,47.96992371808424,0,0,0,0,0,0,0,0,8.076095262737796,0,54.1,59.11,-9,-9,10,1,1,0,0,9,8,5,0,623,1266982.027342391,524807.4870455185,598441.4167754571,53702.98197758014,8718.953914161115 -4283,5327,9628,-9,9627,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.292302622092,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,0,623,1266982.027342391,524807.4870455185,598441.4167754571,53702.98197758014,8718.953914161115 -4283,5327,9629,-9,9627,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.08028085657,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,0,623,1266982.027342391,524807.4870455185,598441.4167754571,53702.98197758014,8718.953914161115 -4284,5328,9630,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,2,0,7.272556622636622,7.230559622362417,0,0,-1113.211585876726,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.568294386780308,16.5279765902571,20.9968582853881,0,1,1,0,0,7.242730676621272,55.36,38.34,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,425,334056.7487457414,359059.2735198678,124223.9691873766,0,1041.463584111401 -4285,5329,9631,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.120344170347599,6.238490799943587,0,0,-1033.099764565297,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.064815007713228,6.102986818824482,56.85,43.09,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,572,524320.3597182445,396637.7110952767,268521.8984279255,136459.9491488138,1649.741609662537 -4286,5330,9632,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,4.777277905475342,5.046100647705704,0,0,-1024.729949644191,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.237829351390458,4.818073163635407,54,44,-9,-9,8,1,1,0,0,0,11,2,1,483,334550.5188808927,0,177132.2921289977,0,1042.029984236641 -4286,5331,9633,-9,9632,-9,1,1,58,0,0,0,2,2,-9,0,4,8.000709616687187,8.075268282407372,0,0,0,-860.3677443356,0,3,3,2019,14,3,39,39,1,3,0,7.406178501790057,7.406178501790057,0,0,0,0,7,1,1,0,0,0,44.61,59.06,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,1727,79315.1603894241,67633.09225075513,106283.8882391035,23273.3400497471,2062.603714871635 -4287,5332,9634,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,6.289178203973012,6.471969442447228,0,0,-970.3050899306834,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.093509726927859,0,48.77,42.86,-9,-9,3.333333333333333,1,1,1,1,0,8,2,0,2004,2080747.08343295,718986.3007810799,453371.7026613265,0,915.1707590663489 -4288,5333,9635,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.296444581047531,7.014546167614584,0,0,0,-984.2457658742649,0,3,2,2019,13,1,32,0,1,1,0,5.015033700111998,5.015033700111998,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,1.666666666666667,1,1,0,0,5,11,3,1,697,177292.3213982591,7470.958897090631,0,0,652.1177173492787 -4289,5334,9636,9637,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.335527412257434,8.313621239703528,6,2,102.6555252943354,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.091431316260795,59.53,56.44,57.06,57.76,1.666666666666667,1,1,0,0,0,11,4,1,555.5,324171.9125984723,224285.4929852387,213593.2578162065,27591.62050617104,3337.754742363624 -4289,5334,9637,9636,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.110767102600768,8.23639464287333,0,6,-2,102.4233463317191,0,2,2,2019,5,0,30,20,1,0,0,9.247168362856929,9.247168362856929,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.53,56.44,10,1,1,0,0,7,11,4,1,555.5,324171.9125984723,224285.4929852387,213593.2578162065,27591.62050617104,3337.754742363624 -4289,5335,9638,-9,9636,9637,1,1,22,0,0,0,1,1,-9,0,5,7.991139520375253,8.29868080804232,0,0,0,-1079.718469122474,0,1,2,2019,9,1,37,8,1,1,1,10.86799768951413,10.86799768951413,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,11,4,1,966,9704.295664792015,55290.48287801063,143499.0133609153,106077.8495526872,2062.08610906536 -4289,5336,9639,-9,9636,9637,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1087.094109205,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,2580,-163773.9687877393,0,0,0,0 -4290,5337,9640,-9,9642,9644,1,0,13,1,4,1,3,0,-9,0,3,0,0,0,0,0,-916.406098643285,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4290,5337,9641,-9,9642,9644,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.642612057144,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4290,5337,9642,9644,-9,-9,1,0,32,1,4,0,2,2,-9,0,4,7.392161751341488,7.443821551709616,0,15,-4,29.63449947449002,0,2,-9,2019,10,0,24,31,1,0,0,8.471182005432777,8.471182005432777,0,0,0,0,0,1,1,0,0,0,46.16,58.62,12.58,44.64,5,1,1,0,0,4,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4290,5337,9643,-9,9642,9644,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.349174405087,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4290,5337,9644,9642,-9,-9,1,1,36,1,4,0,2,2,-9,0,2,9.497059933452586,9.493813009486411,0,15,4,58.69805827662006,0,1,2,2019,35,12,42,55,1,12,0,28.93519230966776,28.93519230966776,0,0,0,0,0,1,1,0,0,0,12.58,44.64,46.16,58.62,1.666666666666667,1,1,0,0,10,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4290,5337,9645,-9,9642,9644,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.0698169518774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,692.6666666666666,85493.80374321854,24791.18723807516,226808.5115101533,187729.3007686324,5758.617728375095 -4291,5338,9646,9647,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.722455173126563,6.679239620373314,41,4,-28.06488323326977,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.700080648826742,6.476167263828898,51.52,28.08,52,48,6.666666666666667,1,1,0,0,2,7,5,1,1686,1032610.649687781,314737.1841586574,386353.3792635304,0,4197.664104951917 -4291,5338,9647,9646,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,9.039189627526042,9.094645817115401,0,8,-4,43.6836850500898,0,3,3,2019,10,0,55,50,1,1,0,18.89872253718707,18.89872253718707,0,0,0,0,0,1,1,0,0,0,52,48,51.52,28.08,7,1,1,0,0,1,7,5,1,1686,1032610.649687781,314737.1841586574,386353.3792635304,0,4197.664104951917 -4292,5339,9648,9649,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,7.577518469519098,8.014194558710926,6.598221188466436,6,4,53.22124927923384,-9,2,-9,2019,6,0,23,0,1,0,0,9.422707460740503,9.422707460740503,0,0,0,0,0,1,0,1,6.32952185300919,0,54.69,57.47,48.09,45.48,8.333333333333334,1,1,0,0,10,1,3,0,321.6666666666667,-51256.42698961302,-44814.40658085374,164776.5871210304,139596.6258315748,2924.66909280165 -4292,5339,9649,9648,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.956204952735332,8.024366786493905,0,6,-4,-26.88737943293149,0,-9,-9,2019,10,0,37,30,1,0,0,8.721968616884697,8.721968616884697,0,0,0,0,0,1,0,1,0,0,48.09,45.48,54.69,57.47,6.666666666666667,1,1,0,1,6,1,3,0,321.6666666666667,-51256.42698961302,-44814.40658085374,164776.5871210304,139596.6258315748,2924.66909280165 -4292,5339,9650,-9,9648,9649,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.320060213199,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,321.6666666666667,-51256.42698961302,-44814.40658085374,164776.5871210304,139596.6258315748,2924.66909280165 -4293,5340,9651,-9,9652,9654,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.274834104913,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,1123.75,268683.7268527185,104053.4468563274,369782.6806638951,108443.4663388989,3122.800635994076 -4293,5340,9652,9654,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.343515858022167,8.588005505889601,0,14,-3,-86.91739174856923,-9,2,2,2019,4,0,33,0,1,0,0,16.82083175280179,16.82083175280179,0,0,0,0,0,1,1,0,.7047568845349437,0,64.55,36.47,57.35,47.77,8.333333333333334,1,1,0,0,11,7,4,1,1123.75,268683.7268527185,104053.4468563274,369782.6806638951,108443.4663388989,3122.800635994076 -4293,5340,9653,-9,9652,9654,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.0366000059919,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,1123.75,268683.7268527185,104053.4468563274,369782.6806638951,108443.4663388989,3122.800635994076 -4293,5340,9654,9652,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.191523328563457,8.293977798160432,0,14,3,-14.94936117562245,-9,3,2,2019,6,0,35,0,1,0,0,12.95879773378993,12.95879773378993,0,0,0,0,0,1,1,0,1.376853499851602,0,57.35,47.77,64.55,36.47,8.333333333333334,1,1,0,0,11,7,4,1,1123.75,268683.7268527185,104053.4468563274,369782.6806638951,108443.4663388989,3122.800635994076 -4294,5341,9655,9656,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.68228348051383,5.705782659199294,53,3,70.31506815947009,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.648533130408733,5.797320155326523,51.83,57.2,31.69,34.16,8.333333333333334,1,1,0,0,1,7,2,1,340,484703.8010688435,110660.7492489663,294579.3610690667,0,1801.801825144845 -4294,5341,9656,9655,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,53,-3,231.4439271601677,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,4.346212014512696,0,0,1,1,0,0,0,31.69,34.16,51.83,57.2,8.333333333333334,1,1,0,0,0,7,2,1,340,484703.8010688435,110660.7492489663,294579.3610690667,0,1801.801825144845 -4295,5342,9657,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.35036225465,6.542069601827477,0,0,-970.4315524163742,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.159489629054122,25.9,47.57,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,999,182924.2669417366,-85920.5906647535,0,0,1430.760865346904 -4296,5343,9658,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.109931572107775,7.504642431678878,0,0,0,-1002.583055906061,0,3,3,2019,9,0,16,0,1,0,0,13.32670748706292,13.32670748706292,0,0,0,0,0,1,1,0,0,0,52.64,36.51,-9,-9,5,3,4,0,0,3,8,2,0,1326,83319.14870138996,15374.18271102442,0,0,2259.275315695742 -4296,5343,9659,-9,9658,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.7419090773399,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,1326,83319.14870138996,15374.18271102442,0,0,2259.275315695742 -4297,5344,9660,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.874928663593103,6.795259130435132,0,0,0,-1022.816776868349,0,3,3,2019,10,0,30,40,1,0,0,4.301381428079115,4.301381428079115,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,3,4,0,0,4,8,2,0,111,266993.8585329739,119218.5034727351,0,0,1139.884436102225 -4297,5345,9661,-9,9660,-9,1,0,22,0,0,0,2,2,-9,0,3,7.078261705068416,6.592986418522732,0,0,0,-1002.318403770208,0,2,-9,2019,6,2,16,16,1,2,1,6.75517115693808,6.75517115693808,0,0,0,0,0,1,1,0,0,0,52.12,50.33,-9,-9,8.333333333333334,3,4,0,0,3,8,2,0,1625,19621.49240036511,0,0,0,-179.1134267011594 -4297,5346,9662,-9,9660,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1080.04796333548,-9,2,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,48.09,53.39,-9,-9,5,3,4,0,0,0,8,1,0,557,0,0,0,0,-221.9004258112917 -4298,5347,9663,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.626944838499067,9.791044621458145,0,0,0,-1146.542175179844,0,2,2,2019,9,1,40,40,1,1,0,60.58512235554812,60.58512235554812,0,0,0,0,0,0,0,0,1.648329516561872,0,53.2,56.67,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,536,318572.3058019727,0,360629.188150816,117484.1813318077,12011.31245481342 -4299,5348,9664,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.597158957784918,8.352664030781783,5.369349592190994,0,0,-1043.481278785172,0,3,2,2019,11,1,40,40,1,1,0,16.09490551171163,16.09490551171163,0,0,0,0,0,1,1,0,5.818054857683082,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,140,1877619.825152422,687759.9777703752,765004.1084329296,0,2505.963677769978 -4300,5349,9665,9666,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.582847101961796,5.905993098977316,7,-2,86.57875616472008,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.016566535642211,5.516781578678843,62.75,34.56,55.3,55.6,8.333333333333334,1,1,0,0,5,2,3,0,638,1608852.240839821,1350309.052338006,117520.8859729005,0,3025.967781749336 -4300,5349,9666,9665,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,7.55758708326642,7.338278820606124,0,7,2,-.0945544905087394,0,-9,-9,2019,8,0,48,50,1,0,0,4.419977776739678,4.419977776739678,0,0,0,0,2,1,1,0,6.36025021923247,0,55.3,55.6,62.75,34.56,8.333333333333334,1,1,0,0,8,2,3,0,638,1608852.240839821,1350309.052338006,117520.8859729005,0,3025.967781749336 -4301,5350,9667,-9,9670,9669,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1005.610172040412,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,5,1,2506.25,217600.2589183867,124375.558264902,122188.9067468609,-922.0021932412315,4848.361015208731 -4301,5350,9668,-9,9670,9669,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.9794177365553,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,2506.25,217600.2589183867,124375.558264902,122188.9067468609,-922.0021932412315,4848.361015208731 -4301,5350,9669,9670,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.69736804257786,8.819843066955826,0,2,0,-9.397746829353244,0,-9,-9,2019,6,0,64,60,1,0,0,9.72679544301713,9.72679544301713,0,0,0,0,2,0,0,0,0,0,57.16,56.15,55.34,54.26,10,1,1,0,0,11,11,5,1,2506.25,217600.2589183867,124375.558264902,122188.9067468609,-922.0021932412315,4848.361015208731 -4301,5350,9670,9669,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.34155542007705,8.402799182985877,0,2,9,-33.15494724830786,0,2,3,2019,7,0,80,45,1,0,0,5.483340699717554,5.483340699717554,0,0,0,0,0,0,0,0,0,0,55.34,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,11,5,1,2506.25,217600.2589183867,124375.558264902,122188.9067468609,-922.0021932412315,4848.361015208731 -4302,5351,9671,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.591340483376984,5.580981032791359,0,0,-936.7575343917318,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.862200321399721,5.598308083830402,39.77,45.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,99,555311.3218786299,145474.3310953782,519184.7559043749,0,1386.260292596836 -4303,5352,9672,9673,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.116278816735942,8.39435273030262,0,6,1,97.66338215298467,0,1,1,2019,7,0,39,40,1,0,0,11.10387749906644,11.10387749906644,0,0,0,0,0,0,0,0,0,0,54.35,57.84,55.19,54.26,8.333333333333334,1,1,0,0,7,12,4,1,1247.6,216166.0464889209,137859.2103961978,110489.4073224426,38524.32281021751,3474.382717053968 -4303,5352,9673,9672,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.645397527979297,8.582221602425069,0,6,-1,41.14008134619023,0,3,3,2019,10,0,57,60,1,0,0,11.32068577697378,11.32068577697378,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.35,57.84,6.666666666666667,1,1,0,0,6,12,4,1,1247.6,216166.0464889209,137859.2103961978,110489.4073224426,38524.32281021751,3474.382717053968 -4303,5352,9674,-9,9672,9673,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.696001288508,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1247.6,216166.0464889209,137859.2103961978,110489.4073224426,38524.32281021751,3474.382717053968 -4303,5352,9675,-9,9672,9673,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.427699132127,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.23720879070531,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1247.6,216166.0464889209,137859.2103961978,110489.4073224426,38524.32281021751,3474.382717053968 -4303,5352,9676,-9,9672,9673,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.4347688001405,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1247.6,216166.0464889209,137859.2103961978,110489.4073224426,38524.32281021751,3474.382717053968 -4304,5353,9677,9678,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.456036200862628,8.300959756394251,7.733466342310547,8,8,-74.03856963868287,0,-9,-9,2019,14,2,5,50,1,2,0,47.35923468697759,47.35923468697759,0,0,0,0,0,0,0,0,7.155496819920596,8.200685807183628,52.41,47.5,52.31,40.62,5,1,1,0,0,10,11,4,1,320,639636.6987661637,295836.0071717377,176072.3961307023,0,3103.146981722747 -4304,5353,9678,9677,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.376370617370274,6.790925755304577,0,8,-8,68.88957638357824,0,3,2,2019,7,0,16,0,1,0,0,5.260057709035169,5.260057709035169,0,0,0,0,7,0,0,0,.4866813449735963,0,52.31,40.62,52.41,47.5,1.666666666666667,1,1,0,0,9,11,4,1,320,639636.6987661637,295836.0071717377,176072.3961307023,0,3103.146981722747 -4305,5354,9679,9680,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,6.466912495572148,8.371015263124253,7.601314446124036,5,0,41.47515682529269,0,2,3,2019,18,7,10,16,1,7,0,7.8203518632338,7.8203518632338,0,0,0,0,0,0,0,0,2.067147094092629,7.920773928103401,30.67,65.95,59.12,36.62,8.333333333333334,1,1,0,0,6,11,3,1,2880.5,279367.2966720083,254672.3916726572,260648.5980607209,34145.12936692663,1970.819964558938 -4305,5354,9680,9679,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,3.61351564347606,3.938300070526923,0,5,0,-37.14297347176806,0,2,2,2019,10,0,24,24,1,0,0,.1752713415038468,.1752713415038468,0,0,0,0,0,0,0,0,6.20601691243075,0,59.12,36.62,30.67,65.95,8.333333333333334,1,1,0,0,6,11,3,1,2880.5,279367.2966720083,254672.3916726572,260648.5980607209,34145.12936692663,1970.819964558938 -4306,5355,9681,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.490749158095534,8.206790972769484,0,0,0,-1031.569031635647,0,-9,-9,2019,23,11,40,40,1,11,0,9.673394193718211,9.673394193718211,0,0,0,0,0,0,0,0,0,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,5,7,4,0,716,-30905.77098460028,0,0,0,1627.552366095716 -4306,5356,9682,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.139739065631037,8.159800028852906,0,0,0,-848.120741582652,0,-9,-9,2019,4,0,50,50,1,0,0,7.511560432910344,7.511560432910344,0,0,0,0,0,0,0,0,6.38337585106349,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,893,-160197.0742329704,0,0,0,1031.876764956578 -4307,5357,9683,9684,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,45,3,-137.0780926261722,0,-9,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,52,48,49,48,7,1,1,0,0,8,7,2,0,311.5,-58530.20736524575,29385.52049352655,0,0,2141.537539453208 -4307,5357,9684,9683,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,4.864674740400261,4.842821130204658,45,-3,-60.45207453868441,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,4.755347497994355,49,48,52,48,7,1,1,0,0,10,7,2,0,311.5,-58530.20736524575,29385.52049352655,0,0,2141.537539453208 -4308,5358,9685,9686,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.369578629467284,7.133028375773378,39,12,-66.50060113852494,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,7.408411892152969,43.43,30.37,60.12,54.8,6.666666666666667,1,1,0,0,0,8,4,0,796.5,4199893.031481811,267645.968736597,1214943.056991252,0,2249.542503737081 -4308,5358,9686,9685,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.048117492708503,8.000817307989117,0,39,-12,75.36384113955557,0,2,3,2019,6,0,38,37,1,0,0,9.809942159815082,9.809942159815082,0,0,0,0,0,1,1,0,0,0,60.12,54.8,43.43,30.37,8.333333333333334,1,1,0,0,9,8,4,0,796.5,4199893.031481811,267645.968736597,1214943.056991252,0,2249.542503737081 -4309,5359,9687,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.644473360003587,7.823040339529323,0,0,0,-1067.214080515139,0,-9,-9,2019,10,0,37,37,1,0,0,6.548046763687737,6.548046763687737,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,4,5,3,1,1112,-166702.7542783819,0,0,0,1481.22015135467 -4310,5360,9688,9689,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.00439987814366,7.965706865531128,0,6,-3,-27.15395634552644,0,-9,2,2019,9,0,40,50,1,1,0,10.90644754164303,10.90644754164303,0,0,0,0,0,0,0,0,0,0,53,55,57.06,57.76,8,1,1,0,0,1,10,4,1,566,1496662.696564513,291089.3012592042,318846.4310785296,0,3195.219830990277 -4310,5360,9689,9688,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.978668303175634,8.103782158027302,0,15,3,-83.40892524753207,0,-9,-9,2019,8,1,50,40,1,1,0,7.629497300162907,7.629497300162907,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,8,10,4,1,566,1496662.696564513,291089.3012592042,318846.4310785296,0,3195.219830990277 -4310,5361,9690,-9,9689,9688,1,0,22,0,0,0,2,2,-9,0,4,7.732508948295178,7.470519930353951,0,0,0,-977.2942736645421,0,2,2,2019,11,0,38,40,1,2,1,7.300279751174352,7.300279751174352,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,3,1,494,-69365.62242724294,0,0,0,1742.030981377209 -4311,5362,9691,9692,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.350128749101596,7.046720837545414,5.312610801579972,43,6,-11.37639245075633,0,3,3,2019,9,0,25,30,1,0,0,6.128237673037179,6.128237673037179,0,0,0,0,0,1,1,0,4.948631984913959,5.419439724905524,56.67,48.31,57.33,53.46,8.333333333333334,1,1,0,0,11,4,3,1,271,475497.6290085266,423487.9504632917,111152.619773808,0,2332.756579050594 -4311,5362,9692,9691,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.882429148980376,7.759862541860027,0,43,-6,-87.23596151315463,0,3,-9,2019,6,0,36,36,1,0,0,8.756843195237142,8.756843195237142,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.67,48.31,8.333333333333334,1,1,0,0,11,4,3,1,271,475497.6290085266,423487.9504632917,111152.619773808,0,2332.756579050594 -4311,5363,9693,-9,9692,9691,1,1,31,0,0,0,2,2,-9,0,3,9.095969454627566,8.905490537335563,0,0,0,-996.2277170830209,0,3,2,2019,10,0,47,48,1,0,1,20.32680645188991,20.32680645188991,0,0,0,0,0,1,1,0,0,0,47.91,51.06,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,1537,168009.828925418,232407.616340814,119961.0315488601,66869.11537681762,4162.945072144773 -4312,5364,9694,9695,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.98858373128692,6.450604505814868,8,-8,-2.775055075049858,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.924204802601071,68.57000000000001,41.34,63.24,42.39,0,1,1,0,0,4,7,2,0,1237,365305.9867206171,297401.2555164458,0,0,1724.16538336032 -4312,5364,9695,9694,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,2.964256283308782,2.627500562451206,8,8,30.88105748775922,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.866055340195797,2.852216077514751,63.24,42.39,68.57000000000001,41.34,8.333333333333334,1,1,0,0,0,7,2,0,1237,365305.9867206171,297401.2555164458,0,0,1724.16538336032 -4313,5365,9696,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,9.764420652817476,10.09102972677385,0,0,0,-1081.164805701118,0,-9,-9,2019,11,0,20,45,1,0,0,86.23509190963439,86.23509190963439,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,1,5,1,2133,345144.8961930781,204688.319953333,0,0,6350.003800523907 -4314,5366,9697,9698,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,7.653489576553188,7.502277770590222,0,8,1,43.99276844252746,0,-9,-9,2019,0,0,36,36,1,0,0,5.940884560368993,5.940884560368993,0,0,0,0,0,1,1,0,0,0,60.02,56.42,54.2,57.49,10,2,3,0,0,8,13,4,0,1160.25,101667.2076473077,96633.88119210786,203171.2104228334,129915.8455794539,3032.729024151162 -4314,5366,9698,9697,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.704675767514495,8.409414808918916,0,9,-1,85.50898796986799,0,2,3,2019,8,0,48,60,1,0,0,14.41266286364005,14.41266286364005,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.02,56.42,10,2,3,0,0,9,13,4,0,1160.25,101667.2076473077,96633.88119210786,203171.2104228334,129915.8455794539,3032.729024151162 -4314,5366,9699,-9,9698,9697,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.661466006835,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,0,1160.25,101667.2076473077,96633.88119210786,203171.2104228334,129915.8455794539,3032.729024151162 -4314,5366,9700,-9,9698,9697,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.1961014652975,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,4,0,1160.25,101667.2076473077,96633.88119210786,203171.2104228334,129915.8455794539,3032.729024151162 -4315,5367,9701,9702,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.773055697927216,9.105530223706996,6.175830331401212,11,5,121.5069041750201,0,-9,-9,2019,12,1,41,42,1,1,0,20.58952607615153,20.58952607615153,0,0,0,0,0,1,1,0,7.339488049136688,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,12,10,5,1,264.5,319464.468974424,91568.92487833026,261746.15706291,137742.5069469585,3804.656177435309 -4315,5367,9702,9701,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.186106813527831,8.11416118306064,0,18,-5,-9.890392271598905,0,3,2,2019,11,0,23,24,1,0,0,15.28333481710672,15.28333481710672,0,0,0,0,0,1,1,0,2.862273018446417,0,45.91,59.89,51.39,59.18,5,1,1,0,1,12,10,5,1,264.5,319464.468974424,91568.92487833026,261746.15706291,137742.5069469585,3804.656177435309 -4316,5368,9703,9704,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.509114144085453,9.048009818609099,0,2,-3,2.001458976251666,-9,-9,-9,2019,11,0,40,0,1,2,0,15.18845875081516,15.18845875081516,0,0,0,0,0,0,0,0,0,0,46,57,50.35,50.22,7,1,1,0,0,1,7,5,0,155.5,229305.1602136109,123778.9051012455,235909.3121895805,177934.7859908719,5085.232782094741 -4316,5368,9704,9703,-9,-9,1,1,31,0,0,0,1,1,-9,0,2,9.142963973904848,8.896666969668964,0,2,3,-76.51616813923403,0,3,3,2019,4,0,48,45,1,0,0,19.25705998268539,19.25705998268539,0,0,0,0,0,0,0,0,4.61350856712695,0,50.35,50.22,46,57,6.666666666666667,1,1,0,0,10,7,5,0,155.5,229305.1602136109,123778.9051012455,235909.3121895805,177934.7859908719,5085.232782094741 -4317,5369,9705,9707,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,9.249638909663101,9.088917416449494,0,4,0,-52.63382113768782,-9,-9,-9,2019,10,0,70,0,1,1,0,16.09631474845824,16.09631474845824,0,0,0,0,0,1,1,0,0,0,48,58,57.16,56.15,7,4,1,0,0,1,4,5,1,1152,120489.0860696524,-778.1049676644143,278485.5957326921,119841.6872863711,4602.812642241555 -4317,5369,9706,-9,9707,9705,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.459065754087,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,5,1,1152,120489.0860696524,-778.1049676644143,278485.5957326921,119841.6872863711,4602.812642241555 -4317,5369,9707,9705,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.812283747584038,7.930513651108667,0,4,0,140.5537208355633,0,1,2,2019,10,0,50,55,1,0,0,5.408595480093643,5.408595480093643,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48,58,8.333333333333334,1,1,0,0,12,4,5,1,1152,120489.0860696524,-778.1049676644143,278485.5957326921,119841.6872863711,4602.812642241555 -4318,5370,9708,9712,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.119888947979677,9.029105688231963,0,6,3,-50.43996394202371,0,-9,2,2019,8,0,38,42,1,0,0,25.53499690734954,25.53499690734954,0,0,0,0,7,1,1,0,5.448869206423719,0,52.99,51.28,30.7,62.92,8.333333333333334,1,1,0,0,7,4,5,1,817,774736.6252832566,553890.0802511603,245042.6823285542,129316.2456566327,4758.481541130069 -4318,5370,9709,-9,9712,9708,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.461912573412,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,817,774736.6252832566,553890.0802511603,245042.6823285542,129316.2456566327,4758.481541130069 -4318,5370,9710,-9,9712,9708,1,0,16,0,3,1,2,0,-9,0,4,0,4.524056576857649,4.168937142303452,0,0,-1027.472703261329,-9,2,2,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,4.878605332990329,0,26.98,56.36,-9,-9,6.666666666666667,1,1,0,0,0,4,5,1,817,774736.6252832566,553890.0802511603,245042.6823285542,129316.2456566327,4758.481541130069 -4318,5370,9711,-9,9712,9708,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.265016441008,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.4096783541410822,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,817,774736.6252832566,553890.0802511603,245042.6823285542,129316.2456566327,4758.481541130069 -4318,5370,9712,9708,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,8.597366847510999,8.659663512095854,0,6,-3,-29.15606490967158,0,2,2,2019,23,11,34,37,1,11,0,15.88799347737129,15.88799347737129,0,0,0,0,0,1,1,0,4.92298540101222,0,30.7,62.92,52.99,51.28,3.333333333333333,1,1,0,0,7,4,5,1,817,774736.6252832566,553890.0802511603,245042.6823285542,129316.2456566327,4758.481541130069 -4319,5371,9713,9714,-9,-9,1,0,40,0,2,0,2,2,1,1,4,0,0,0,9,-4,66.21022646312083,-9,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.3,61.38,51.49,42.78,5,1,1,0,0,0,12,2,0,1049.5,305210.973037585,153428.2180542808,216646.7160423276,22421.17391063432,2433.261000583381 -4319,5371,9714,9713,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,7.743896965281095,7.673116455850939,0,9,4,-69.83812224620156,0,-9,3,2019,12,0,36,24,1,0,0,6.783460639294005,6.783460639294005,0,0,0,0,0,1,1,0,0,0,51.49,42.78,34.3,61.38,8.333333333333334,1,1,0,0,7,12,2,0,1049.5,305210.973037585,153428.2180542808,216646.7160423276,22421.17391063432,2433.261000583381 -4320,5372,9715,9716,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,39,-1,-69.30925144615131,0,2,-9,2019,11,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,7.714139424762899,0,51.07,37.95,49.86,55.31,6.666666666666667,1,1,0,0,2,4,3,1,596,1166582.394733379,614681.1281443719,232729.0777742008,0,4469.260061685653 -4320,5372,9716,9715,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.213065402230457,7.951969827112703,39,1,40.55141465632897,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.157642289176617,8.173145101252215,49.86,55.31,51.07,37.95,8.333333333333334,1,1,0,0,8,4,3,1,596,1166582.394733379,614681.1281443719,232729.0777742008,0,4469.260061685653 -4321,5373,9717,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.210771423080145,5.22902379827204,0,0,-989.8822221318569,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.368484115175899,4.802641598204977,55.19,34.27,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,302,1462.442856222478,0,191448.6186039566,0,1075.006570420488 -4322,5374,9718,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.168517547397911,9.130016120550044,8.002157804354013,0,0,-1117.063893461213,0,2,2,2019,10,0,53,49,1,0,0,15.56663387912853,15.56663387912853,0,0,0,0,0,0,0,0,7.915473839181574,0,57.91,43.45,-9,-9,8.333333333333334,4,5,0,0,9,2,5,1,419,239251.9396062263,-50793.05443458299,152657.0259474485,20826.94511317209,3416.207318113889 -4323,5375,9719,9720,9721,-9,1,0,38,0,0,0,2,2,-9,0,4,8.787250642707603,8.90363180721836,0,8,6,-83.21893412364416,0,3,2,2019,12,0,38,37,1,0,0,19.0615815857068,19.0615815857068,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,5,5,1,458.5,95198.58958412276,10487.52295442215,177956.2609328126,93072.86415943925,3817.821202901816 -4323,5375,9720,9719,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.457709044499806,8.169942043334904,0,8,-6,91.42465900162122,0,3,3,2019,7,0,38,38,1,0,0,13.7012854146791,13.7012854146791,0,0,0,0,0,1,1,0,3.297181614696655,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,5,5,1,458.5,95198.58958412276,10487.52295442215,177956.2609328126,93072.86415943925,3817.821202901816 -4323,5376,9721,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.820562225886991,7.065573062458871,0,0,-937.2589318092402,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.396060526861056,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,500,292880.6626701707,43356.54975194443,0,0,1347.376632997059 -4324,5377,9722,-9,9723,9725,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.076743376147,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1250.25,160822.450723099,87605.33830346986,351602.1811161031,317418.2280859119,5528.298236629207 -4324,5377,9723,9725,-9,-9,1,0,34,1,2,0,2,2,-9,0,5,8.901055736263599,9.005536692190301,0,4,2,47.73060963679877,0,-9,-9,2019,6,0,38,37,1,0,0,17.82300261465708,17.82300261465708,0,0,0,3.323120624208572,0,1,1,0,0,0,48.18,61.8,54.96,53.17,1.666666666666667,1,1,0,0,9,6,5,1,1250.25,160822.450723099,87605.33830346986,351602.1811161031,317418.2280859119,5528.298236629207 -4324,5377,9724,-9,9723,9725,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.440002151494,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1250.25,160822.450723099,87605.33830346986,351602.1811161031,317418.2280859119,5528.298236629207 -4324,5377,9725,9723,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,8.870830966671813,8.725278241722327,0,4,-2,104.8369870095072,0,2,2,2019,6,0,58,48,1,0,0,16.36637008062969,16.36637008062969,0,0,0,0,0,1,1,0,.5679423021112389,0,54.96,53.17,48.18,61.8,8.333333333333334,1,1,0,0,8,6,5,1,1250.25,160822.450723099,87605.33830346986,351602.1811161031,317418.2280859119,5528.298236629207 -4325,5378,9726,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.259148497017877,8.011529902976928,0,0,0,-953.4770969827215,0,3,-9,2019,15,3,59,45,1,3,0,5.581535527712629,5.581535527712629,0,0,0,0,0,0,0,0,3.49694467355898,0,34.21,51.94,-9,-9,5,2,3,0,0,9,7,4,0,596,147356.9704475973,-12292.52547324707,214586.1898904504,84591.73264617279,1792.103328309475 -4326,5379,9727,-9,9733,-9,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.9889961613509,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9728,-9,9733,-9,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-962.0109187312718,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9729,-9,9733,-9,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1040.179058563411,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9730,-9,9733,-9,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1123.32367099975,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9731,-9,9733,-9,1,0,17,0,5,1,2,0,0,0,3,0,0,0,0,0,-985.1827046367722,-9,3,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,3,4,0,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9732,-9,9733,-9,1,1,15,0,5,1,3,0,-9,0,3,0,0,0,0,0,-973.5017795412494,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4326,5379,9733,-9,-9,-9,1,0,40,0,5,0,3,3,-9,1,2,0,0,0,0,0,-1027.433238435154,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.35,33.83,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,1042.428571428571,-4735.613720836563,0,0,0,1411.908412385216 -4327,5380,9734,9735,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,32,0,-82.8215166242245,0,-9,-9,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,5.275857265800697,0,52.23,55.6,53.51,60.74,8.333333333333334,1,1,0,0,11,10,2,1,742.5,300486.9141196919,175861.9111173439,236217.9155621258,0,821.30812249491 -4327,5380,9735,9734,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.718632571088139,6.56833073804956,32,0,14.24491392902902,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.501830092144613,0,53.51,60.74,52.23,55.6,6.666666666666667,1,1,0,0,0,10,2,1,742.5,300486.9141196919,175861.9111173439,236217.9155621258,0,821.30812249491 -4328,5381,9736,-9,9737,9739,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.5077084856898,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,533.75,135849.1761181052,0,231412.5465558197,97655.52893398254,4871.739178019299 -4328,5381,9737,9739,-9,-9,1,0,39,0,2,0,2,2,0,0,3,0,0,0,21,-8,85.13516931443588,-9,2,2,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.89,55.63,47.06,44.37,6.666666666666667,1,1,0,0,9,12,3,1,533.75,135849.1761181052,0,231412.5465558197,97655.52893398254,4871.739178019299 -4328,5381,9738,-9,9737,9739,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.861189897044,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,533.75,135849.1761181052,0,231412.5465558197,97655.52893398254,4871.739178019299 -4328,5381,9739,9737,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.489702984793684,8.221223225376647,0,8,8,27.79090246598862,0,-9,-9,2019,10,0,35,30,1,0,0,17.52765560730548,17.52765560730548,0,0,0,0,0,1,1,0,8.617508841344746,0,47.06,44.37,34.89,55.63,8.333333333333334,1,1,0,0,3,12,3,1,533.75,135849.1761181052,0,231412.5465558197,97655.52893398254,4871.739178019299 -4329,5382,9740,9741,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,8.084519910086996,8.248686770883545,6.158193810371681,10,3,-38.67799331800185,0,3,3,2019,8,0,16,-9,1,0,0,22.17772345996558,22.17772345996558,0,0,0,0,0,1,1,0,5.687309678254017,6.082174435036372,46.26,51.5,50.15,48.44,8.333333333333334,1,1,0,0,11,12,5,1,1967.5,1789762.625428754,1349812.673210268,233504.2417255598,0,7253.479343507931 -4329,5382,9741,9740,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.409912944354119,9.102841822393968,10,-3,-15.22636887793992,0,2,1,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.702374248777051,9.069183539440299,50.15,48.44,46.26,51.5,8.333333333333334,1,1,0,0,0,12,5,1,1967.5,1789762.625428754,1349812.673210268,233504.2417255598,0,7253.479343507931 -4330,5383,9742,9743,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.923362080411814,5.959478874720754,2,1,219.5980977805747,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.290193233899735,0,58.15,52.91,56.78,49.38,0,1,1,0,0,0,10,2,0,386,561196.4608056259,64408.47555415539,309502.8987405874,0,2377.9843160911 -4330,5383,9743,9742,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,2,-1,11.81645039421175,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.919374405356323,0,56.78,49.38,58.15,52.91,6.666666666666667,1,1,0,0,0,10,2,0,386,561196.4608056259,64408.47555415539,309502.8987405874,0,2377.9843160911 -4331,5384,9744,-9,9746,9745,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1018.090536551772,-9,3,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.58,56.44,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,988.3333333333334,82423.44966932175,-13749.32866535141,0,0,1698.460992694715 -4331,5384,9745,9746,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.248366859592315,8.150371281166745,0,6,0,-30.00642393279374,0,2,2,2019,6,0,40,40,1,0,0,14.4530271567903,14.4530271567903,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,7,10,3,0,988.3333333333334,82423.44966932175,-13749.32866535141,0,0,1698.460992694715 -4331,5384,9746,9745,-9,-9,1,0,47,0,1,0,3,3,-9,0,5,2.9557160326473,2.458469372754828,0,6,0,-55.3074866398991,0,3,3,2019,6,0,25,40,1,0,0,.0644229743075993,.0644229743075993,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,7,10,3,0,988.3333333333334,82423.44966932175,-13749.32866535141,0,0,1698.460992694715 -4331,5385,9747,-9,9746,9745,1,0,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-912.9816801361769,-9,3,2,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.62,55.32,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1680,-208108.0211714582,0,0,0,360.6677513147586 -4332,5386,9748,9749,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.39,37.66,46.77,17.98,3.333333333333333,2,3,0,0,0,2,1,1,286.5,174596.3435602786,-67738.50757382493,42610.53694296472,0,1037.996920304485 -4332,5386,9749,9748,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,2,-3,0,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,10.39574520973104,0,0,1,1,0,0,0,46.77,17.98,39.39,37.66,5,2,3,0,0,0,2,1,1,286.5,174596.3435602786,-67738.50757382493,42610.53694296472,0,1037.996920304485 -4333,5387,9750,-9,9751,9752,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.7211017193304,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,288,662004.2662082902,263738.3643155659,305152.6608667811,54934.88820014353,4432.476772224656 -4333,5387,9751,9752,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.14190733368703,8.147825876420134,0,21,3,43.39973505741836,0,3,3,2019,7,0,29,29,1,0,0,14.33474600069582,14.33474600069582,0,0,0,0,0,1,1,0,2.351819300079566,0,57.06,57.76,49.86,55.31,8.333333333333334,1,1,0,0,10,7,5,1,288,662004.2662082902,263738.3643155659,305152.6608667811,54934.88820014353,4432.476772224656 -4333,5387,9752,9751,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.76796387559626,9.054023540888739,0,21,-3,.6532322956493278,0,2,3,2019,8,0,43,43,1,0,0,19.33345358484387,19.33345358484387,0,0,0,0,0,1,1,0,3.675039467872301,0,49.86,55.31,57.06,57.76,8.333333333333334,1,1,0,0,12,7,5,1,288,662004.2662082902,263738.3643155659,305152.6608667811,54934.88820014353,4432.476772224656 -4334,5388,9753,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.939671031288883,8.100903284141477,0,0,0,-1152.4118175886,0,2,2,2019,11,0,36,30,1,0,0,10.07125545752638,10.07125545752638,0,0,0,0,0,1,1,0,1.4876893564914,0,57.16,56.15,-9,-9,5,1,1,0,0,9,12,4,1,845,-22713.18983213118,0,0,0,1243.025091527979 -4334,5389,9754,-9,9753,-9,1,0,20,0,0,0,2,2,-9,0,3,7.633545258620503,7.653713124658336,0,0,0,-1000.140169407742,0,2,-9,2019,22,9,36,35,1,9,1,5.832521921975446,5.832521921975446,0,0,0,0,0,1,1,0,0,0,22.41,57.29,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,693,11698.10474968159,0,0,0,1113.886321009691 -4334,5390,9755,-9,9753,-9,1,0,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-1112.600932300285,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,18.7,58.11,-9,-9,5,1,1,0,0,2,12,1,1,279,6566.530672815738,0,0,0,397.5305556539107 -4335,5391,9756,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.984826188257603,8.7016403182327,0,0,0,-1032.226435411721,0,2,3,2019,5,0,40,38,1,0,0,18.86541068300943,18.86541068300943,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,11,13,5,1,306,147186.0605017587,54416.915504777,0,0,1981.355373166559 -4336,5392,9757,-9,-9,-9,1,0,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-959.7597347844986,-9,2,2,2019,24,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,27.04,43.74,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,331,93918.67966646016,0,0,0,463.3995372945428 -4337,5393,9758,-9,9759,9761,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.3333006282829,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,957.25,-48000.71571462673,49579.5214851456,0,0,1913.319549459663 -4337,5393,9759,9761,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.083381032568469,6.849508470032889,0,10,-19,149.1020223630746,0,-9,-9,2019,8,0,3,6,1,0,0,24.48117353931047,24.48117353931047,0,0,0,0,7,1,1,0,0,0,46.67,55.57,53.67,37.78,3.333333333333333,2,3,0,0,5,6,3,1,957.25,-48000.71571462673,49579.5214851456,0,0,1913.319549459663 -4337,5393,9760,-9,9759,9761,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.438364960493,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,957.25,-48000.71571462673,49579.5214851456,0,0,1913.319549459663 -4337,5393,9761,9759,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,0,7.491002701906702,7.622510682496616,10,19,-34.05508106683428,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.614829442420986,7.384745504803629,53.67,37.78,46.67,55.57,6.666666666666667,1,1,0,0,7,6,3,1,957.25,-48000.71571462673,49579.5214851456,0,0,1913.319549459663 -4338,5394,9762,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.555528366323274,5.621564676645753,0,0,-1022.667357191448,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,5.583056573048744,59.32,46.98,-9,-9,8.333333333333334,4,2,0,0,0,2,2,0,907,-109553.163645963,29683.88892276918,0,0,2821.327349442466 -4339,5395,9763,-9,9765,9766,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.2080302873039,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,355.5,316740.1385255132,195674.0021727178,143072.404218792,65853.38583026449,3953.593624127557 -4339,5395,9764,-9,9765,9766,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.292200044997,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,4,1,355.5,316740.1385255132,195674.0021727178,143072.404218792,65853.38583026449,3953.593624127557 -4339,5395,9765,9766,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.453118275735267,8.828113821384649,8.031133054206105,1,0,-1.090359952985256,-9,3,2,2019,8,1,23,0,1,1,0,16.70604033645044,16.70604033645044,0,0,0,0,2,1,1,0,8.050379388511633,0,59.22,29.7,54.79,55.86,8.333333333333334,1,1,0,0,8,13,4,1,355.5,316740.1385255132,195674.0021727178,143072.404218792,65853.38583026449,3953.593624127557 -4339,5395,9766,9765,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.122579479931796,8.19388810512732,0,1,0,-25.17365165489278,-9,2,2,2019,8,0,41,0,1,0,0,7.399960184818283,7.399960184818283,0,0,0,0,2,1,1,0,0,0,54.79,55.86,59.22,29.7,8.333333333333334,1,1,0,0,8,13,4,1,355.5,316740.1385255132,195674.0021727178,143072.404218792,65853.38583026449,3953.593624127557 -4339,5396,9767,-9,9765,9766,1,0,21,0,2,0,2,2,-9,0,4,7.538114472734617,7.87578715273864,0,0,0,-930.9284991332279,-9,2,2,2019,11,1,40,0,1,1,1,6.751217099990264,6.751217099990264,0,0,0,1.277128490915857,0,1,1,0,0,0,35.38,63.46,-9,-9,5,1,1,0,0,5,13,3,1,631,89260.10644371787,0,0,0,359.3039697170208 -4339,5397,9768,-9,9765,9766,1,1,20,0,2,1,2,0,-9,0,4,0,0,0,0,0,-855.8862841606942,-9,2,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,51.64,41.3,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,80,-68122.64924858764,0,0,0,897.1673722278915 -4340,5398,9769,9770,-9,-9,1,1,32,1,1,0,2,2,-9,0,2,8.254703477358429,8.192820786750088,0,7,1,3.809799168402271,0,-9,-9,2019,10,1,43,45,1,1,0,9.651964820094722,9.651964820094722,0,0,0,0,0,1,1,0,0,0,63.89,37.16,57.25,45.07,6.666666666666667,1,1,0,0,11,13,4,1,612.3333333333334,659699.1753517339,15945.11109679459,163901.339213643,118662.502320367,2909.611928223871 -4340,5398,9770,9769,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.775209475975776,7.939195581393768,0,7,-1,134.6431778104063,0,2,3,2019,10,1,23,22,1,1,0,12.39887781808339,12.39887781808339,0,0,0,0,7,1,1,0,0,0,57.25,45.07,63.89,37.16,8.333333333333334,1,1,0,0,11,13,4,1,612.3333333333334,659699.1753517339,15945.11109679459,163901.339213643,118662.502320367,2909.611928223871 -4340,5398,9771,-9,9770,9769,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1152.299013406259,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,612.3333333333334,659699.1753517339,15945.11109679459,163901.339213643,118662.502320367,2909.611928223871 -4341,5399,9772,-9,9774,9773,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-921.458844254283,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,2,5,1,249.5,-1970.461100810768,47748.90986336807,0,0,9562.361982674529 -4341,5399,9773,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,9.758157725800267,9.824697210575991,0,0,0,-954.3993834550615,0,2,3,2019,4,0,60,70,1,0,0,28.42904798237726,28.42904798237726,0,0,0,0,0,1,1,0,8.215419612155614,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,249.5,-1970.461100810768,47748.90986336807,0,0,9562.361982674529 -4341,5400,9774,-9,-9,9773,1,0,43,0,1,0,1,1,-9,0,4,8.202929976886745,8.393863839064608,0,0,0,-1015.956062455182,-9,-9,2,2019,20,8,42,0,1,8,0,11.77811778747917,11.77811778747917,0,0,0,0,0,1,1,0,0,0,42.54,56.27,-9,-9,6.666666666666667,1,1,0,0,2,2,3,1,222,289823.9687466557,47732.03642128955,108393.5222503696,60039.59100540334,1166.930329036514 -4342,5401,9775,-9,9776,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1010.661459583215,-9,3,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,55.67,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,518,145169.9167688336,0,140173.9855460595,11588.86633569191,1745.107877960987 -4342,5401,9776,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1090.836609077701,-9,3,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,33.92,46.63,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,518,145169.9167688336,0,140173.9855460595,11588.86633569191,1745.107877960987 -4343,5402,9777,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.7158714020574,5.390058752404205,0,0,-1038.788167836421,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,5.830989329225456,56.33,24.38,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,409,61848.91530494126,17420.8070714008,0,0,599.5710439829159 -4344,5403,9778,9779,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,9.203498941095679,9.335103074773903,0,45,2,41.19884228796787,0,3,2,2019,6,0,30,30,1,0,0,34.40018333375689,34.40018333375689,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.63,56.14,8.333333333333334,1,1,0,0,9,10,5,1,1014.5,2343943.658348685,1523632.298545338,616799.3897437199,0,5553.062873724144 -4344,5403,9779,9778,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.063786115229606,7.08038365621305,0,45,-2,84.12536232984775,0,2,2,2019,6,0,10,5,1,0,0,10.96916991880277,10.96916991880277,0,0,0,0,7,1,1,0,0,0,57.63,56.14,57.16,56.15,10,1,1,0,0,9,10,5,1,1014.5,2343943.658348685,1523632.298545338,616799.3897437199,0,5553.062873724144 -4345,5404,9780,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.105207541782804,7.871618716687765,0,0,0,-978.3239979544422,0,2,2,2019,11,0,35,50,1,0,0,10.03795815237738,10.03795815237738,0,0,0,0,0,0,0,0,3.155357121236261,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,219,105135.3520938681,112407.5724333748,0,0,725.4752332283877 -4346,5405,9781,9782,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.953640981083457,6.375620356988045,7,1,93.06243154640813,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.583361862069326,6.281046314440781,38.67,49.01,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,495,792514.0926599404,62223.23446581238,218620.3076391554,0,1607.853773119596 -4346,5405,9782,9781,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.426968990972853,6.787836560376578,7,-1,-19.082448018441,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.878646012681513,6.871782360116375,57.16,56.15,38.67,49.01,8.333333333333334,1,1,0,0,1,2,2,1,495,792514.0926599404,62223.23446581238,218620.3076391554,0,1607.853773119596 -4347,5406,9783,9784,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.549696308862103,7.534581575443391,0,1,0,19.61126967289853,-9,3,3,2019,9,0,35,0,1,1,0,6.19479329278619,6.19479329278619,0,0,0,0,0,1,1,0,0,0,53,47,22,58.89,7,1,1,0,0,1,6,3,1,399.6666666666667,362317.9225485693,100847.2407152489,89306.1750641922,0,2179.494416655932 -4347,5406,9784,9783,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.485461757254978,6.497207260327679,1,0,-107.0712689228648,-9,3,2,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.761818081167585,6.334764344376564,22,58.89,53,47,8.333333333333334,1,1,0,0,0,6,3,1,399.6666666666667,362317.9225485693,100847.2407152489,89306.1750641922,0,2179.494416655932 -4347,5406,9785,-9,-9,9783,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1019.915865324146,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,55.18,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,399.6666666666667,362317.9225485693,100847.2407152489,89306.1750641922,0,2179.494416655932 -4348,5407,9786,9787,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.111001100017615,7.827167619817815,1,0,68.29012144927009,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.529034170289924,8.029393709351494,51.41,56.15,43.32,63.94,8.333333333333334,1,1,0,0,5,12,3,1,394.5,2279406.626096869,1766595.984442286,374959.4267341538,0,4096.630122338745 -4348,5407,9787,9786,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.407604269807821,7.175763898353732,6.350820510504303,33,0,-127.2914285110513,-9,2,2,2019,8,0,10,0,1,0,0,6.935503797270679,6.935503797270679,1,0,0,0,0,1,1,0,8.108922002185887,6.200477894059797,43.32,63.94,51.41,56.15,8.333333333333334,1,1,0,0,10,12,3,1,394.5,2279406.626096869,1766595.984442286,374959.4267341538,0,4096.630122338745 -4349,5408,9788,-9,9789,-9,1,0,26,0,0,0,1,1,0,0,4,0,0,0,0,0,-986.2426722943362,-9,2,2,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.3692632169422828,0,57.17,50.61,-9,-9,8.333333333333334,3,4,0,0,2,8,1,0,433,-179913.9269777573,0,0,0,-30.68575150206179 -4349,5409,9789,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.331725547463765,8.159200238169914,0,0,0,-1068.933116674576,0,-9,-9,2019,12,2,38,38,1,2,0,14.2400754249963,14.2400754249963,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6.666666666666667,3,4,0,1,11,8,4,0,81,1438694.133016128,1226318.915889559,317740.7767339993,89194.63003545493,2054.839185224991 -4349,5410,9790,-9,9789,-9,1,0,23,0,0,0,1,1,-9,0,2,8.503720859139504,8.19467771852664,0,0,0,-909.8826528904173,-9,1,-9,2019,12,1,45,0,1,1,1,13.07089359083821,13.07089359083821,0,0,0,0,0,0,0,0,0,0,45.02,43.46,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,346,139886.1359635961,28600.72185230747,0,0,1286.902005000381 -4350,5411,9791,-9,9792,9793,1,1,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-965.3990475615834,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4350,5411,9792,9793,-9,-9,1,0,28,1,5,0,2,2,-9,0,5,0,0,0,6,-6,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.25,48.06,10,1,1,0,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4350,5411,9793,9792,-9,-9,1,1,34,1,5,0,2,2,-9,0,4,0,0,0,6,6,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.25,48.06,57.06,57.76,8.333333333333334,1,1,1,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4350,5411,9794,-9,9792,9793,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.412383830577,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4350,5411,9795,-9,9792,9793,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1064.423338727043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4350,5411,9796,-9,9792,9793,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-975.4967653926923,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,821.5,602.3241642654951,0,0,0,1568.985625913106 -4351,5412,9797,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.664880853112182,6.755041991703874,0,0,-911.6190923707993,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.027118133034477,6.888700003343581,37.02,37.37,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,454,275482.8977772961,88262.0289160586,116514.7523141141,48811.89056603048,1971.847344834863 -4352,5413,9798,9799,-9,-9,1,0,29,0,0,0,3,3,-9,0,4,0,0,0,5,2,-60.66185964163555,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,40.98,48.98,7,2,3,1,0,0,6,2,0,526.5,-34876.12485323152,0,0,0,962.2820859212136 -4352,5413,9799,9798,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,6.720781829665621,6.579759673400853,0,5,-2,11.6081367026016,0,3,2,2019,14,2,15,0,1,2,0,7.158635230546897,7.158635230546897,0,0,0,0,0,1,1,0,0,0,40.98,48.98,48,57,10,2,3,0,0,5,6,2,0,526.5,-34876.12485323152,0,0,0,962.2820859212136 -4353,5414,9800,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.70043762319,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,6,1,0,316,261858.6872580783,0,298510.9324812423,0,750.920099449167 -4354,5415,9801,9802,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.415694049612546,5.501625034199155,7,0,-45.69594730347088,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.070094095982793,5.478971698617103,51.25,46.55,61.44,37.81,8.333333333333334,1,1,0,0,0,4,2,1,441.5,419480.5182448316,143381.3085720927,76185.31245707926,0,1393.829539825633 -4354,5415,9802,9801,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.27012337807774,6.522717204453031,41,0,51.86587402394738,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.332688045247066,61.44,37.81,51.25,46.55,8.333333333333334,1,1,0,0,6,4,2,1,441.5,419480.5182448316,143381.3085720927,76185.31245707926,0,1393.829539825633 -4355,5416,9803,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.4785558116462,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,8,1,0,163,-23553.24016081594,0,0,0,1227.733060834029 -4355,5417,9804,-9,9803,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1125.708102116345,0,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,534,83418.88660090463,0,0,0,168.3752750622139 -4356,5418,9805,9806,-9,-9,1,0,43,1,2,0,1,1,-9,0,3,0,0,0,10,2,10.7958126902822,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,52.41,50.05,6.666666666666667,1,1,0,0,2,12,5,1,1088,2828970.560507163,2116616.813298603,399130.4011472172,0,5444.408073610522 -4356,5418,9806,9805,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.662413763051674,9.933307606662709,0,10,-2,-67.06533713529828,0,2,3,2019,11,2,40,34,1,2,0,46.70249820710084,46.70249820710084,0,0,0,0,0,0,0,0,4.933722077551334,0,52.41,50.05,56.94,49.53,6.666666666666667,1,1,0,0,13,12,5,1,1088,2828970.560507163,2116616.813298603,399130.4011472172,0,5444.408073610522 -4356,5418,9807,-9,9805,9806,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.344009577015,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1088,2828970.560507163,2116616.813298603,399130.4011472172,0,5444.408073610522 -4356,5418,9808,-9,9805,9806,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.863255093833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1088,2828970.560507163,2116616.813298603,399130.4011472172,0,5444.408073610522 -4357,5419,9809,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.7639199399908,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.748369267952359,0,50.75,37.31,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,343,146489.5047170095,0,81273.85926834725,0,533.7132361320595 -4358,5420,9810,9811,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.790046358929093,8.641878213731824,0,7,0,-146.1586739861426,0,-9,-9,2019,10,0,50,50,1,0,0,13.15323881094534,13.15323881094534,0,0,0,0,0,0,0,0,0,0,48.77,60.16,54.2,57.49,8.333333333333334,1,1,0,0,7,10,5,1,217,447223.9446623123,151719.1122712366,398917.0477843385,217103.3479966788,4051.729444378836 -4358,5420,9811,9810,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.772101469975615,9.048496610249495,0,7,0,130.0788839510193,0,-9,-9,2019,9,0,40,40,1,0,0,20.78016636136619,20.78016636136619,0,0,0,0,0,0,0,0,1.179569544303449,0,54.2,57.49,48.77,60.16,8.333333333333334,1,1,0,0,6,10,5,1,217,447223.9446623123,151719.1122712366,398917.0477843385,217103.3479966788,4051.729444378836 -4359,5421,9812,9813,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,4.953945845287292,5.487343195885055,7,0,71.79188654640046,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.303350207848843,64.48,41.06,50.75,39.21,8.333333333333334,1,1,0,0,0,13,2,1,758.5,162594.8019126717,116176.3905764177,155418.7256343757,0,976.5400360233366 -4359,5421,9813,9812,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,7,0,-19.93840970812642,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,16.48140947755014,0,0,1,1,0,0,0,50.75,39.21,64.48,41.06,10,1,1,0,0,9,13,2,1,758.5,162594.8019126717,116176.3905764177,155418.7256343757,0,976.5400360233366 -4360,5422,9814,9815,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,11,-5,0,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,30.61,48.53,36.1,8.333333333333334,1,1,0,0,3,10,1,0,239.5,651645.5071663244,-43648.54389850451,527632.3732211331,0,1793.463746414632 -4360,5422,9815,9814,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,11,5,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,48.53,36.1,36.78,30.61,6.666666666666667,1,1,0,0,10,10,1,0,239.5,651645.5071663244,-43648.54389850451,527632.3732211331,0,1793.463746414632 -4361,5423,9816,9817,-9,-9,1,0,43,0,1,0,2,2,0,0,4,0,0,0,8,-3,57.84215180891806,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,.8057905967296097,0,1,1,0,0,0,57.16,56.15,59.86,44.09,8.333333333333334,1,1,0,0,6,12,4,1,795.6666666666666,381217.1790110798,242017.0037009843,192165.9061927941,126528.1819132342,3934.372318905001 -4361,5423,9817,9816,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.1801513170098,9.292261882376463,0,8,3,105.5569487784039,0,3,2,2019,12,0,40,42,1,0,0,28.35368236447714,28.35368236447714,0,0,0,0,0,1,1,0,6.390918248151291,0,59.86,44.09,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,795.6666666666666,381217.1790110798,242017.0037009843,192165.9061927941,126528.1819132342,3934.372318905001 -4361,5423,9818,-9,9816,9817,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.8825439332206,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,795.6666666666666,381217.1790110798,242017.0037009843,192165.9061927941,126528.1819132342,3934.372318905001 -4361,5424,9819,-9,9816,9817,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1054.547879472639,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.538513375563169,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1210,46181.14815774264,0,0,0,274.6720754979876 -4362,5425,9820,9821,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.551076398075431,7.805294202110001,0,8,-5,100.5185264788157,0,-9,2,2019,13,3,19,19,1,3,0,12.55090522003509,12.55090522003509,0,0,0,0,0,0,0,0,0,0,44.1,38.34,54.96,53.17,8.333333333333334,1,1,0,0,9,12,5,1,554,694113.0430373807,740377.9476939777,0,0,4000.576395741253 -4362,5425,9821,9820,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.897335750893793,9.367847267954744,0,8,5,2.594359759254636,0,3,2,2019,6,0,40,40,1,0,0,33.6763907918,33.6763907918,0,0,0,0,0,0,0,0,2.690291141982487,0,54.96,53.17,44.1,38.34,8.333333333333334,1,1,0,0,9,12,5,1,554,694113.0430373807,740377.9476939777,0,0,4000.576395741253 -4362,5426,9822,-9,9820,9821,1,1,24,0,0,0,2,2,-9,0,3,8.40915004894279,8.541173514898587,0,0,0,-972.8229543678621,0,2,2,2019,27,11,38,38,1,11,1,15.38562246839727,15.38562246839727,0,0,0,4.293334918136713,0,0,0,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,109,277043.9954712891,-21470.53304898173,0,0,1960.680656220288 -4363,5427,9823,-9,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.306442732531437,9.237080963076931,0,0,0,-1031.775612731458,-9,2,1,2019,12,1,50,0,1,1,0,24.5497128634246,24.5497128634246,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,768,3165368.819500537,1885692.714712412,498199.5257453973,0,4016.217060998804 -4364,5428,9824,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.04074137487059,8.132283424212776,0,0,0,-985.589727497503,0,2,3,2019,4,1,35,36,1,1,0,10.55836341515036,10.55836341515036,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,1573,-51471.13904992215,16029.06840014269,0,0,1319.195036020435 -4365,5429,9825,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,4.521128657195304,4.92825708624751,0,0,-889.6616248961445,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,0,0,0,6.994540647081561,4.801898649088878,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,626,221387.9379565808,116152.9331288135,44256.69758120805,0,22.64368593055116 -4366,5430,9826,9827,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.492183750520276,8.986027319941343,0,31,-1,-125.3259406004876,0,2,1,2019,9,1,20,20,1,1,0,31.42523111480563,31.42523111480563,0,0,0,0,0,0,0,0,3.373082039760201,0,54.37,54.8,59.29,49.68,8.333333333333334,1,1,0,0,12,4,5,1,562.5,941063.2248331509,892809.6295653568,266462.3267563867,32105.69190267268,3674.192923090401 -4366,5430,9827,9826,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.575802826361409,8.4948295734724,0,31,1,-38.91964241473121,0,1,2,2019,6,0,41,42,1,0,0,16.31242957617055,16.31242957617055,0,0,0,0,0,0,0,0,4.896057112739229,0,59.29,49.68,54.37,54.8,8.333333333333334,1,1,0,0,12,4,5,1,562.5,941063.2248331509,892809.6295653568,266462.3267563867,32105.69190267268,3674.192923090401 -4367,5431,9828,-9,-9,-9,1,1,26,0,0,1,1,0,0,0,4,0,0,0,0,0,-1099.236701089219,-9,-9,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1.591643259547022,0,44.59,59.08,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,1399,146312.2838874119,0,0,0,1333.446866304339 -4368,5432,9829,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.602036836785167,6.704302505795096,0,0,-1033.542213382561,0,2,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.923569409430317,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,233,123140.6178499451,131110.4875592562,0,0,666.7185641293567 -4369,5433,9830,-9,9831,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.406301665705,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,0,943.5,-19777.50732664364,0,0,0,820.2928928493347 -4369,5433,9831,-9,-9,-9,1,0,39,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1100.564352844864,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,1,0,6,6,1,0,943.5,-19777.50732664364,0,0,0,820.2928928493347 -4370,5434,9832,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,0,0,-934.4734849572329,0,3,3,2019,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40.26,64.39,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,798,8054.72976515723,0,0,0,0 -4371,5435,9833,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.67971745208655,5.571998584791777,0,0,-999.8959411752444,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.593792937859605,61.88,44.54,-9,-9,10,1,1,0,0,0,13,2,1,861,-93265.45785949471,101576.0514114501,151665.5356683324,0,359.0597711450528 -4371,5436,9834,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.856728060149,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,16.56194771533755,0,0,1,1,0,3.843623519972442,0,56.46,36,-9,-9,5,1,1,0,0,0,13,1,1,849,85116.33608005656,0,25507.89247668945,0,725.4937742745064 -4372,5437,9835,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.328691985517,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,38.16,23.4,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,305,61929.69319735391,0,0,0,1485.968896852615 -4373,5438,9836,-9,9837,9838,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.773257196657,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,506.5,119288.133857468,-6285.491376686932,0,0,3251.229239402908 -4373,5438,9837,9838,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.775537199995776,7.623154076780133,0,22,-2,152.2819058908086,0,-9,-9,2019,11,0,8,8,1,0,0,32.779921772302,32.779921772302,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,3,8,4,1,506.5,119288.133857468,-6285.491376686932,0,0,3251.229239402908 -4373,5438,9838,9837,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.635710596073366,8.907024068870875,0,22,2,-115.5034120795005,0,-9,-9,2019,6,0,49,49,1,0,0,13.26889170029011,13.26889170029011,0,0,0,0,0,1,1,0,3.331575245504254,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,8,4,1,506.5,119288.133857468,-6285.491376686932,0,0,3251.229239402908 -4373,5438,9839,-9,9837,9838,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.3349842570926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,506.5,119288.133857468,-6285.491376686932,0,0,3251.229239402908 -4374,5439,9840,-9,9841,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1050.840989661266,-9,1,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,1,2,5,1,1044.5,659207.2042867003,704806.6766790303,167075.0410680774,0,2915.196728589277 -4374,5439,9841,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.900231726222607,8.794976057847387,6.566642920769262,0,0,-971.7264983980832,0,3,3,2019,7,0,40,40,1,0,0,16.17648158906459,16.17648158906459,0,0,0,0,0,1,1,0,7.002307773656748,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,1044.5,659207.2042867003,704806.6766790303,167075.0410680774,0,2915.196728589277 -4375,5440,9842,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-872.1382495106699,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.87,24.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1708,-26890.08707291589,0,115964.6891109877,0,919.4813572296703 -4376,5441,9843,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.899338808598728,8.860922108300544,0,0,0,-946.3384184173475,0,2,2,2019,11,0,48,48,1,0,0,16.61153680862981,16.61153680862981,0,0,0,0,0,0,0,0,4.4501879899984,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,713,28983.1547030061,73661.01687404554,88315.8087121353,110934.1375820207,2351.43824167291 -4377,5442,9844,9846,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,11,-10,-140.7046819479606,1,3,3,2019,16,4,0,6,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,51.24,58.84,8.333333333333334,2,3,0,0,1,9,5,1,466.25,501730.1210461336,399175.4510222231,259027.7013676566,163477.3111596513,5032.762456968106 -4377,5442,9845,-9,9844,9846,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.3554481024416,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,466.25,501730.1210461336,399175.4510222231,259027.7013676566,163477.3111596513,5032.762456968106 -4377,5442,9846,9844,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.251670680869491,9.573786244751981,0,11,10,31.65545369977372,0,3,3,2019,10,1,52,50,1,1,0,25.29470690029499,25.29470690029499,0,0,0,.7308735800712949,0,0,0,0,2.25961531223999,0,51.24,58.84,48.81,59.91,8.333333333333334,1,1,0,0,9,9,5,1,466.25,501730.1210461336,399175.4510222231,259027.7013676566,163477.3111596513,5032.762456968106 -4377,5442,9847,-9,9844,9846,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.7007050222346,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,466.25,501730.1210461336,399175.4510222231,259027.7013676566,163477.3111596513,5032.762456968106 -4378,5443,9848,9849,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,7.820323217046821,7.818426709368899,0,10,1,29.67741890264165,0,3,3,2019,8,1,35,40,1,1,0,10.59823855862856,10.59823855862856,0,0,0,0,0,0,0,0,3.775311778386806,0,54.96,53.17,46.5,51.63,8.333333333333334,1,1,0,0,11,2,5,1,3355,2039880.154811307,1319417.170423293,448802.429620201,0,8872.055276662286 -4378,5443,9849,9848,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,9.97254686229269,10.16647741431285,0,10,-1,54.98755295659696,0,3,2,2019,11,0,50,50,1,0,0,51.81089968333988,51.81089968333988,0,0,0,0,0,0,0,0,1.09224935573786,0,46.5,51.63,54.96,53.17,8.333333333333334,1,1,0,0,11,2,5,1,3355,2039880.154811307,1319417.170423293,448802.429620201,0,8872.055276662286 -4379,5444,9850,-9,9851,9852,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.172525043397,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,4,1,395.5,496861.0400326196,68257.09722904887,441860.1175804419,0,3029.315749973414 -4379,5444,9851,9852,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.990628672755652,7.745770578349465,0,9,-6,41.7586599987693,0,2,3,2019,12,0,38,28,1,0,0,8.83023652439716,8.83023652439716,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.08,57.2,8.333333333333334,1,1,0,0,10,8,4,1,395.5,496861.0400326196,68257.09722904887,441860.1175804419,0,3029.315749973414 -4379,5444,9852,9851,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,8.44864707777068,8.347390658565384,0,9,6,-48.01384245787708,0,-9,-9,2019,12,0,55,55,1,0,0,8.060514027664826,8.060514027664826,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.83,57.2,6.666666666666667,1,1,0,0,10,8,4,1,395.5,496861.0400326196,68257.09722904887,441860.1175804419,0,3029.315749973414 -4379,5444,9853,-9,9851,9852,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.488221231661,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,395.5,496861.0400326196,68257.09722904887,441860.1175804419,0,3029.315749973414 -4380,5445,9854,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.72845891888276,7.760671005594729,0,0,0,-1004.842609192375,0,3,3,2019,6,0,25,28,1,0,0,8.36199789999349,8.36199789999349,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,6,8,3,0,963,-112406.879249659,0,0,0,696.7890495865527 -4380,5446,9855,-9,9854,-9,1,0,22,0,0,0,2,2,-9,0,4,8.346869909352852,8.337585540883637,0,0,0,-923.1980072294066,0,3,-9,2019,6,0,40,40,1,0,1,9.998521058442579,9.998521058442579,0,0,0,0,0,1,1,0,0,0,29.33,64.7,-9,-9,10,4,2,0,0,3,8,4,0,423,112339.5599326699,-4637.353932249201,0,0,1611.279808106911 -4381,5447,9856,9857,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.411957041431302,7.832646915885094,9,4,161.3642027763455,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.36009791762389,54.9,54.53,60.44,36.05,10,1,1,0,0,5,11,3,1,745,892439.799655397,647443.4537977814,243796.5240817277,0,1031.637349506833 -4381,5447,9857,9856,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,6.28191532431597,6.19009776138084,9,-4,-121.9747979105313,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.406555101836791,5.868253592933846,60.44,36.05,54.9,54.53,8.333333333333334,1,1,0,0,5,11,3,1,745,892439.799655397,647443.4537977814,243796.5240817277,0,1031.637349506833 -4382,5448,9858,9859,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.921421744739701,7.940928415879592,56,3,-121.9590093944334,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,57.9528083370546,0,0,1,1,0,4.369343790631505,7.958348565365156,44.07,22.17,54.79,55.86,8.333333333333334,1,1,0,0,0,4,3,1,466,1362570.729102422,382851.9175969925,360793.1567152593,0,3263.075385912698 -4382,5448,9859,9858,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,6.901375874690316,7.277579943481911,54,-3,-27.93001708979669,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.863562375889418,7.172312241925855,54.79,55.86,44.07,22.17,8.333333333333334,1,1,0,0,0,4,3,1,466,1362570.729102422,382851.9175969925,360793.1567152593,0,3263.075385912698 -4382,5449,9860,-9,9859,9858,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-975.0433011188733,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,0,4,1,1,810,256965.3367684828,10935.31090284433,0,0,438.7777364770774 -4383,5450,9861,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.1099092873502,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,12,1,0,1015,64483.26249733186,0,89519.4131054389,0,1359.196786256755 -4384,5451,9862,9863,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.66342437027928,6.773288535167191,61,1,-17.64676073185949,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.72023779689621,57.09,46.7,52,45,0,1,1,0,0,0,4,2,1,871,11000.42429440973,8859.220972475989,90296.16003667115,0,1187.251870979135 -4384,5451,9863,9862,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.175427996746375,5.513271791337407,61,-1,-124.3212596993523,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.940232849305372,5.719847527879381,52,45,57.09,46.7,8,1,1,0,0,0,4,2,1,871,11000.42429440973,8859.220972475989,90296.16003667115,0,1187.251870979135 -4385,5452,9864,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,3,0,6.535687559239195,6.311711621167167,0,0,-989.9248501083154,0,2,1,2019,16,4,0,0,4,4,0,0,0,1,0,14.62965865822057,0,0,1,1,0,0,6.420988834551419,41.27,49.97,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,273,240302.4439798237,98960.52763594752,330280.3052106011,0,1361.780831348362 -4386,5453,9865,9866,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,7.955969257582709,8.88065181213344,8.465322981511472,38,2,-2.909616356271629,0,3,2,2019,9,0,30,21,1,0,0,12.83367212429137,12.83367212429137,0,0,0,0,0,0,0,0,6.013502425491764,8.815230386147974,60.14,44.41,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,442.5,1625259.622743853,1203046.519820292,226052.5096831516,0,4804.206022511627 -4386,5453,9866,9865,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,6.45107258328904,7.591419310580962,7.144256248645218,39,-2,-109.1849277496639,0,2,2,2019,2,0,10,18,1,0,0,5.463587710596287,5.463587710596287,0,0,0,0,0,0,0,0,5.91752377019175,7.378216329170188,57.06,57.76,60.14,44.41,10,1,1,0,0,10,12,5,1,442.5,1625259.622743853,1203046.519820292,226052.5096831516,0,4804.206022511627 -4386,5454,9867,-9,9866,9865,1,0,23,0,0,0,2,2,-9,0,4,7.707290536303797,7.621839522086249,0,0,0,-951.8404403721142,0,2,1,2019,12,2,35,0,1,2,1,8.345089280320247,8.345089280320247,0,0,0,0,0,0,0,0,0,0,46.92,60.71,-9,-9,6.666666666666667,1,1,0,0,7,12,3,1,508,2416.729782223403,0,0,0,1101.799111043468 -4387,5455,9868,9869,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.131331441203255,8.385731000203208,0,14,-7,12.31974571716104,0,2,2,2019,10,0,38,45,1,0,0,12.11660430027077,12.11660430027077,0,0,0,0,0,0,0,0,5.173473218897281,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,7,4,1,326.5,765730.2160344825,423333.4168305711,342213.4493764569,0,3174.157368579872 -4387,5455,9869,9868,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.180883622316541,8.031427530562414,0,13,7,150.3992389197428,0,2,2,2019,9,0,45,45,1,0,0,7.723534459175829,7.723534459175829,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,7,4,1,326.5,765730.2160344825,423333.4168305711,342213.4493764569,0,3174.157368579872 -4388,5456,9870,9871,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,9,-6,-44.58170977033407,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,5.348269737266172,0,0,1,1,0,0,0,41.95,59.17,48.01,48.45,10,1,1,0,0,0,4,2,1,882,60414.0719933297,-34287.12169244359,44527.31532952238,0,827.6319527346242 -4388,5456,9871,9870,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.069665862011556,5.39723972786835,9,6,53.6401787184144,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.249854307009437,5.214981064890145,48.01,48.45,41.95,59.17,10,1,1,0,0,0,4,2,1,882,60414.0719933297,-34287.12169244359,44527.31532952238,0,827.6319527346242 -4389,5457,9872,9873,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.15530837325233,8.632496421269906,0,6,-1,-32.2374087594174,0,-9,-9,2019,9,0,40,40,1,1,0,12.92746066499305,12.92746066499305,0,0,0,0,0,0,0,0,0,0,53,55,49.04,55.86,8,4,1,0,0,1,4,4,1,247,496345.7200403161,237403.7659092857,138314.4027968282,0,2997.807430999371 -4389,5457,9873,9872,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.507065160751002,7.402205893326442,0,6,1,139.8489830345795,0,3,2,2019,11,0,28,26,1,0,0,6.793026317653291,6.793026317653291,0,0,0,0,7,0,0,0,0,0,49.04,55.86,53,55,8.333333333333334,1,1,0,0,7,4,4,1,247,496345.7200403161,237403.7659092857,138314.4027968282,0,2997.807430999371 -4390,5458,9874,9875,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.440541806394483,8.352662038089102,0,21,-18,-78.17420362304134,0,2,3,2019,20,8,40,47,1,8,0,17.81424013162568,17.81424013162568,0,0,0,0,0,1,1,0,0,0,38.16,47.36,50.67,47.25,6.666666666666667,3,4,0,1,13,6,4,1,423,871399.6767257499,454265.7474397698,326076.0027386735,0,2841.988425616089 -4390,5458,9875,9874,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.270175647914713,4.37766883601909,22,18,-3.856612686244517,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.550375774772252,4.087039311946557,50.67,47.25,38.16,47.36,8.333333333333334,3,4,0,1,0,6,4,1,423,871399.6767257499,454265.7474397698,326076.0027386735,0,2841.988425616089 -4391,5459,9876,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.347086047295443,8.111744219996865,0,0,0,-910.7601011959715,0,2,2,2019,9,0,50,50,1,0,0,11.38252454340891,11.38252454340891,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,477,300336.8900939717,41928.98969708133,262668.3925859744,114899.6196285993,1387.003788101051 -4392,5460,9877,9878,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.294499508190935,8.636152538271192,7,4,-88.04836818178565,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.393994592638072,8.483559657737215,41.87,35.22,54.1,59.11,6.666666666666667,1,1,0,0,0,9,4,1,522,2425975.01227772,1482084.73433062,478259.2175657755,0,3803.97857847644 -4392,5460,9878,9877,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,5.223568137466438,5.341625669496564,7,-4,-43.01254417250131,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.407170012413869,5.610356445536143,54.1,59.11,41.87,35.22,8.333333333333334,1,1,0,0,7,9,4,1,522,2425975.01227772,1482084.73433062,478259.2175657755,0,3803.97857847644 -4393,5461,9879,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.858890806655212,7.935862941524355,0,0,0,-1077.323457155435,0,3,3,2019,8,0,42,37,1,0,0,6.25384745693228,6.25384745693228,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,1047,412899.907408807,398086.8299297562,0,0,549.2597865359865 -4394,5462,9880,9881,-9,-9,1,1,67,0,2,0,1,1,-9,0,3,0,7.972820485673584,8.107970935735402,7,18,-46.15276421744739,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.664359701977303,8.405371633259788,55.53,51.55,54.1,59.11,5,1,1,0,0,1,9,4,1,806.5,2264216.476811069,1443906.951819728,661036.0316063578,0,4593.804769334903 -4394,5462,9881,9880,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,9.043712924511141,8.968816795574256,0,7,-18,-26.96004398571611,0,3,2,2019,12,0,39,37,1,0,0,21.55202338574268,21.55202338574268,0,0,0,0,0,1,1,0,3.922732714016235,0,54.1,59.11,55.53,51.55,10,1,1,0,0,8,9,4,1,806.5,2264216.476811069,1443906.951819728,661036.0316063578,0,4593.804769334903 -4394,5462,9882,-9,9881,9880,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.269826253115,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,806.5,2264216.476811069,1443906.951819728,661036.0316063578,0,4593.804769334903 -4394,5462,9883,-9,9881,9880,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.2435661673727,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,806.5,2264216.476811069,1443906.951819728,661036.0316063578,0,4593.804769334903 -4395,5463,9884,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.716562138246346,8.076010885124569,0,0,0,-1095.138051949059,0,-9,-9,2019,11,1,30,60,1,1,0,12.74958583953086,12.74958583953086,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,2,6,4,0,201,182107.2234764748,0,0,0,1812.533404724217 -4395,5464,9885,9886,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.948908840851328,7.872202365917401,0,2,-1,82.45821642608561,0,-9,-9,2019,7,0,32,33,1,0,0,11.42317019346126,11.42317019346126,0,0,0,0,0,0,0,0,0,0,63.29,38.47,60.02,56.42,8.333333333333334,1,1,0,0,6,6,4,0,1282,-75335.54800584956,-8925.584109699043,86893.66607382332,61408.06215028953,2958.304923684173 -4395,5464,9886,9885,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.277548504273636,8.503128385651877,0,2,1,-79.22572013066902,0,-9,-9,2019,7,1,35,35,1,1,0,11.36497280521436,11.36497280521436,0,0,0,0,0,0,0,0,0,0,60.02,56.42,63.29,38.47,6.666666666666667,1,1,0,0,2,6,4,0,1282,-75335.54800584956,-8925.584109699043,86893.66607382332,61408.06215028953,2958.304923684173 -4396,5465,9887,9888,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.892765606281836,8.688155787410627,0,8,0,-64.47840154339795,0,2,2,2019,8,0,55,48,1,0,0,13.21062153239073,13.21062153239073,0,0,0,0,0,1,1,0,1.401557051006293,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,6,5,1,549.5,1498049.474534336,1028049.629245388,227756.1044761363,-1677.279546589733,2867.200374406601 -4396,5465,9888,9887,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.802916606983882,6.281099570521762,8,9,-129.0303139471823,0,2,2,2019,8,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.561277910118154,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,7,6,5,1,549.5,1498049.474534336,1028049.629245388,227756.1044761363,-1677.279546589733,2867.200374406601 -4397,5466,9889,9890,-9,-9,1,0,44,1,1,0,2,2,-9,0,4,8.100669921563531,8.27565094607813,0,23,-1,30.71174967609599,0,3,3,2019,13,1,38,38,1,1,0,10.79299543810245,10.79299543810245,0,0,0,0,0,1,1,0,0,0,33.14,64.63,53.78,48.41,3.333333333333333,1,1,0,0,10,5,4,0,236.5,180181.8375672265,50357.35697392516,74020.8774512872,75276.36983790871,2978.87313347189 -4397,5466,9890,9889,-9,-9,1,1,45,1,1,0,3,3,-9,0,3,8.072985990591702,7.801850079612624,0,9,1,33.47953825338719,0,-9,-9,2019,11,0,54,40,1,0,0,7.228233795575008,7.228233795575008,0,0,0,1.658446559857103,0,1,1,0,0,0,53.78,48.41,33.14,64.63,3.333333333333333,1,1,0,0,9,5,4,0,236.5,180181.8375672265,50357.35697392516,74020.8774512872,75276.36983790871,2978.87313347189 -4397,5467,9891,-9,9892,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.401249989842,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,462.5,0,0,0,0,166.5769019280033 -4397,5467,9892,-9,9889,9890,1,0,21,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1114.269689658899,0,2,3,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.77,47.65,-9,-9,5,1,1,0,0,2,5,1,0,462.5,0,0,0,0,166.5769019280033 -4398,5468,9893,9894,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.49323309282979,7.341398492039088,44,1,-34.53561085556364,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,9.34036274738189,7.288120576679541,44.26,59.43,46.26,42.16,8.333333333333334,1,1,0,0,4,6,3,1,375,964206.0130074617,637163.1476429398,347784.0118985505,0,5166.482822850108 -4398,5468,9894,9893,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.373290195749264,6.261117107637086,44,-1,-71.64539332671156,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,1.917070498126264,0,2,1,1,0,5.69192868871541,6.458360864232992,46.26,42.16,44.26,59.43,8.333333333333334,1,1,0,0,0,6,3,1,375,964206.0130074617,637163.1476429398,347784.0118985505,0,5166.482822850108 -4399,5469,9895,9896,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.77062567197525,8.770867156592933,0,8,-1,-6.749502762857663,0,2,1,2019,11,4,42,43,1,4,0,22.07743874813888,22.07743874813888,0,0,0,0,14.5,0,0,0,0,0,46.85,57.37,49.35,59.64,8.333333333333334,1,1,0,0,9,5,5,1,1361,2082009.630614785,1858836.205147687,171488.9507124464,0,4563.962179577402 -4399,5469,9896,9895,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.306934335033329,8.140602335888516,8,1,56.08535609289037,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.294608100281454,8.34612193592052,49.35,59.64,46.85,57.37,10,1,1,0,0,9,5,5,1,1361,2082009.630614785,1858836.205147687,171488.9507124464,0,4563.962179577402 -4400,5470,9897,-9,-9,-9,1,1,101,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.181212263671,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.673877327549366,0,0,1,1,0,0,0,54.17,27.8,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1499,14856.78842305875,0,20592.04278476922,0,1332.246243171172 -4401,5471,9898,9899,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.391711694721161,8.338366487302475,0,10,-12,-6.277700987018468,0,-9,-9,2019,10,0,55,59,1,0,0,13.77967997837919,13.77967997837919,0,0,0,0,0,1,1,0,0,0,57.33,53.46,59.02,40.59,8.333333333333334,4,2,0,0,3,8,4,1,201.6666666666667,706999.3938475335,93298.71541442776,562887.3072323251,0,2424.343690695353 -4401,5471,9899,9898,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,25,12,-1.214598548131086,0,3,-9,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,59.02,40.59,57.33,53.46,10,1,1,0,0,2,8,4,1,201.6666666666667,706999.3938475335,93298.71541442776,562887.3072323251,0,2424.343690695353 -4401,5471,9900,-9,9899,9898,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1036.332306656768,-9,2,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,1.834079111855599,0,63.06,53.47,-9,-9,10,4,5,0,0,3,8,4,1,201.6666666666667,706999.3938475335,93298.71541442776,562887.3072323251,0,2424.343690695353 -4402,5472,9901,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.438786621585745,8.797029122186549,0,0,0,-1005.726502628055,0,1,2,2019,5,0,43,48,1,0,0,15.04876825807038,15.04876825807038,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,184,-8310.08905495107,-42342.69788877523,0,0,1809.691291196976 -4403,5473,9902,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,4.804856928144377,4.770440063551167,0,0,-1015.80571691811,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.599889369967096,50,47,-9,-9,8,2,3,0,0,3,7,2,1,276,1064359.850411514,307391.1052803334,651717.0884808778,0,372.1654547299216 -4404,5474,9903,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.654694048058738,5.532556891455202,0,0,-987.6254674458104,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.658222212225047,0,57.39,45.42,-9,-9,10,3,4,0,0,0,4,2,0,554,-2462.892894266259,0,0,0,-392.5671463283538 -4404,5475,9904,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.506851874003377,5.66860017762085,0,0,-1004.306461711231,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.831766763784843,0,47.66,53.55,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,1131,-179728.909169617,83263.45525231752,0,0,492.9007955730074 -4405,5476,9905,9906,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.042089686759333,9.399667172815441,0,3,-1,71.40704007790364,0,1,2,2019,14,3,45,51,1,3,0,19.16149672885017,19.16149672885017,0,0,0,0,0,1,1,0,0,0,45.81,61.51,54,53,6.666666666666667,1,1,0,0,9,10,5,1,804,1215411.622234635,517051.7540881167,774098.4475450106,119762.7396179134,4271.859625733476 -4405,5476,9906,9905,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.042037682563315,8.194465262455138,0,3,1,-109.6331952669854,0,3,2,2019,9,0,30,35,1,1,0,14.50333467704672,14.50333467704672,0,0,0,0,0,1,1,0,3.866491043072629,0,54,53,45.81,61.51,8,1,1,0,0,1,10,5,1,804,1215411.622234635,517051.7540881167,774098.4475450106,119762.7396179134,4271.859625733476 -4406,5477,9907,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,3,6.918077621972489,7.892256408892993,6.886277719753803,0,0,-950.4682039147484,0,2,2,2019,15,3,20,20,1,3,0,5.370528384951122,5.370528384951122,0,0,0,0,14.5,1,1,0,7.1496486588177,0,26.13,58.38,-9,-9,5,1,1,0,0,7,6,3,1,396,43144.68118465094,-1273.754341881541,0,0,2920.905179866588 -4406,5477,9908,-9,9907,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.0599714863962,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,396,43144.68118465094,-1273.754341881541,0,0,2920.905179866588 -4406,5477,9909,-9,9907,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.035972175048,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,396,43144.68118465094,-1273.754341881541,0,0,2920.905179866588 -4407,5478,9910,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,6.766560486138757,6.694815805842223,0,0,-992.7172038347954,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.04254455008209,6.904105033064711,53.87,28.36,-9,-9,5,1,1,0,0,0,7,2,1,283,466496.4698214328,54206.84420345361,232821.8603433935,0,1324.510215003208 -4408,5479,9911,-9,9912,9913,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.2802985308326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,674.75,152057.3235140336,74009.08392505508,191446.1623487117,161914.3416590927,2448.386195755424 -4408,5479,9912,9913,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,8.004888193961776,8.154936940997294,0,14,-2,-59.48923570642374,0,2,2,2019,15,2,38,43,1,2,0,10.02564893925128,10.02564893925128,0,0,0,0,0,1,1,0,0,0,40.23,61.31,46.56,52.17,8.333333333333334,1,1,0,1,6,9,4,1,674.75,152057.3235140336,74009.08392505508,191446.1623487117,161914.3416590927,2448.386195755424 -4408,5479,9913,9912,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.347262777071517,8.078548952767115,0,13,2,15.81300563133031,0,1,3,2019,11,1,30,30,1,1,0,16.01473815728975,16.01473815728975,0,0,0,0,2,1,1,0,0,0,46.56,52.17,40.23,61.31,5,1,1,0,1,8,9,4,1,674.75,152057.3235140336,74009.08392505508,191446.1623487117,161914.3416590927,2448.386195755424 -4408,5479,9914,-9,9912,9913,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.3498096905137,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,674.75,152057.3235140336,74009.08392505508,191446.1623487117,161914.3416590927,2448.386195755424 -4409,5480,9915,9917,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.297962489415481,7.351857226228238,0,19,-3,-80.51364077493621,0,2,2,2019,9,0,15,14,1,0,0,10.23984041468347,10.23984041468347,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,11,1,4,1,928,72644.61234030339,-42245.27944964406,177876.0841473908,89858.77024486386,2515.289582983142 -4409,5480,9916,-9,9915,9917,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.0160733548699,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,4,1,928,72644.61234030339,-42245.27944964406,177876.0841473908,89858.77024486386,2515.289582983142 -4409,5480,9917,9915,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.267516325123713,8.4251974801894,0,17,3,-1.930059285544402,0,2,2,2019,14,2,44,44,1,2,0,10.03872541502123,10.03872541502123,0,0,0,0,0,1,1,0,0,0,52.82,53.97,51.83,57.2,5,1,1,0,0,12,1,4,1,928,72644.61234030339,-42245.27944964406,177876.0841473908,89858.77024486386,2515.289582983142 -4410,5481,9918,9919,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,6,2,0,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,45.56,60.26,27.11,20.15,6.666666666666667,1,1,0,0,0,13,1,0,873.5,-452.3974616475316,0,0,0,3006.359130975756 -4410,5481,9919,9918,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,6,-2,0,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,27.11,20.15,45.56,60.26,1.666666666666667,1,1,0,0,0,13,1,0,873.5,-452.3974616475316,0,0,0,3006.359130975756 -4410,5482,9920,-9,-9,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-874.1674459896636,-9,-9,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,2,0,1389,-77890.50554282966,0,0,0,-281.5074909853524 -4411,5483,9921,9922,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.831205905526167,7.466453287770589,24,2,-41.25461561580885,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.241705130030877,44.19,58.01,44,53.18,8.333333333333334,1,1,0,0,0,11,3,1,375,676104.9532604929,361065.9431315855,300472.1653972338,0,2067.267013753599 -4411,5483,9922,9921,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.106938805781592,5.966074012210339,24,-2,18.65077472229847,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.487872215667697,5.708531129662026,44,53.18,44.19,58.01,8.333333333333334,1,1,0,0,0,11,3,1,375,676104.9532604929,361065.9431315855,300472.1653972338,0,2067.267013753599 -4412,5484,9923,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.267764166540067,8.331558933309601,0,0,0,-1043.44130479798,0,2,2,2019,9,2,40,40,1,2,0,10.38772425449409,10.38772425449409,0,0,0,0,0,0,0,0,.8086004762795453,0,35.63,62.19,-9,-9,1.666666666666667,1,1,0,0,10,6,4,0,659,128469.0809155762,0,0,0,1223.76885954314 -4413,5485,9924,9925,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.655025082170532,7.742601256817766,0,6,4,114.0188078765646,0,3,3,2019,10,0,60,25,1,0,0,3.655381493941348,3.655381493941348,0,0,0,0,2,0,0,0,1.422743011702754,0,42.35,39.93,42.47,38.78,1.666666666666667,1,1,0,0,8,9,5,1,185.5,2669916.813916765,2039880.192282602,712001.7188499179,33025.36386106247,3286.818319627561 -4413,5485,9925,9924,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.807056322970197,8.972720784901336,0,6,-4,28.22934600421915,0,1,2,2019,12,0,37,39,1,0,0,21.99556246375971,21.99556246375971,0,0,0,0,7,0,0,0,3.479393577598631,0,42.47,38.78,42.35,39.93,6.666666666666667,1,1,0,0,5,9,5,1,185.5,2669916.813916765,2039880.192282602,712001.7188499179,33025.36386106247,3286.818319627561 -4414,5486,9926,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.605731366412759,4.473371355836096,0,0,-1029.480940823756,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.246106904976143,4.510878308881219,12.56,49.74,-9,-9,5,1,1,0,0,0,4,2,1,936,176372.7390375284,0,0,0,377.7656731983409 -4415,5487,9927,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.32757477925511,7.096058274586661,0,0,0,-861.5220844285586,0,2,2,2019,7,0,10,30,1,0,0,17.92260897157098,17.92260897157098,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1112,171162.3809275955,-47241.14416917184,0,0,615.4747252198431 -4416,5488,9928,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,5,0,7.196908147713063,7.015887539043988,0,0,-1025.435624929106,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.453628047275692,6.868570554413568,62.39,56.71,-9,-9,0,1,1,0,0,0,6,2,1,2141,318261.3102768615,36171.0038443082,377829.9771766167,0,1522.908215055917 -4417,5489,9929,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.137523947152911,7.406964193512109,0,0,0,-972.7650387745291,0,-9,-9,2019,9,0,21,22,1,0,0,6.360721096149607,6.360721096149607,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,5,1,1,0,0,10,11,3,0,1325,231636.2334083994,-24288.12718946438,0,0,555.6150244204238 -4417,5490,9930,-9,9929,-9,1,0,20,0,0,0,2,2,-9,0,4,7.360717951142774,7.151893645673802,0,0,0,-1132.007622629712,0,2,-9,2019,12,0,35,42,1,2,1,5.216386828683518,5.216386828683518,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,11,3,0,5220,30885.49483809476,109244.0661085519,0,0,1342.979909264256 -4418,5491,9931,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,9.154865889165096,9.072744741816221,5.731548169636826,0,0,-1071.901052901859,0,3,3,2019,9,0,40,40,1,0,0,25.98290795820923,25.98290795820923,0,0,0,0,0,1,1,0,5.8678027219966,6.122468296194463,54.44,51.82,-9,-9,1.666666666666667,1,1,0,0,6,6,5,1,2550,1460934.116210202,1248163.439305469,84635.28860181068,0,4608.279053196577 -4419,5492,9932,9934,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.489612877048472,8.202595954146975,0,8,-3,-.9065826146462554,0,-9,-9,2019,16,4,46,55,1,4,0,7.266536360245381,7.266536360245381,0,0,0,0,0,1,1,0,0,0,45.75,44.32,57.15,37.43,3.333333333333333,1,1,0,0,9,9,4,1,593.75,502955.3503303719,28351.93551420658,262301.6526342417,0,2887.158413842137 -4419,5492,9933,-9,9934,9932,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.7139068388133,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,593.75,502955.3503303719,28351.93551420658,262301.6526342417,0,2887.158413842137 -4419,5492,9934,9932,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.520413807127811,7.531010754969106,0,8,3,-64.08599665640963,0,2,2,2019,8,0,33,33,1,0,0,7.297908389745066,7.297908389745066,0,0,0,0,0,1,1,0,0,0,57.15,37.43,45.75,44.32,1.666666666666667,1,1,0,0,9,9,4,1,593.75,502955.3503303719,28351.93551420658,262301.6526342417,0,2887.158413842137 -4419,5492,9935,-9,9934,9932,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.0531952569538,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,593.75,502955.3503303719,28351.93551420658,262301.6526342417,0,2887.158413842137 -4420,5493,9936,9937,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.46345420884982,7.45004786477436,6,12,111.1056662240224,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,7.941136038788452,0,0,1,1,0,4.55042538809311,7.722522923314204,56,44,45.81,61.51,8,1,1,0,0,0,8,3,1,2223.5,632008.0511508111,52804.69893754524,295945.7633598255,0,1833.344941692976 -4420,5493,9937,9936,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,6.983256847445189,6.739399818148469,40,-12,13.53764155334235,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.316158842427146,6.793704288953816,45.81,61.51,56,44,8.333333333333334,1,1,0,0,0,8,3,1,2223.5,632008.0511508111,52804.69893754524,295945.7633598255,0,1833.344941692976 -4421,5494,9938,9940,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.46991110506643,8.191859703392897,0,6,5,80.8494238822131,0,3,3,2019,8,2,60,50,1,2,0,8.313470750007331,8.313470750007331,0,0,0,0,0,1,1,0,7.006833255726459,0,63.3,29.97,55.76,52.64,8.333333333333334,1,1,0,0,7,5,4,1,585.6666666666666,194111.7847683306,110391.495122468,223805.9122586568,70920.30020632529,3659.000459389856 -4421,5494,9939,-9,9940,9938,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1061.324547439641,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.16,61.04,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,585.6666666666666,194111.7847683306,110391.495122468,223805.9122586568,70920.30020632529,3659.000459389856 -4421,5494,9940,9938,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.736876204755678,8.00045616514093,0,6,-5,63.88170662527476,0,3,3,2019,6,0,20,20,1,0,0,11.24951994091737,11.24951994091737,0,0,0,0,0,1,1,0,0,0,55.76,52.64,63.3,29.97,8.333333333333334,1,1,0,0,7,5,4,1,585.6666666666666,194111.7847683306,110391.495122468,223805.9122586568,70920.30020632529,3659.000459389856 -4422,5495,9941,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,6.801129696258842,6.606708793191319,0,0,0,-1062.442409586744,0,2,3,2019,12,0,16,32,1,0,0,6.083944206919747,6.083944206919747,0,0,0,0,0,1,1,0,0,0,35.51,59.06,-9,-9,6.666666666666667,1,1,0,0,4,8,2,0,845.6666666666666,-5666.716798727345,0,0,0,2280.923876778929 -4422,5495,9942,-9,9941,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.999121775901,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,845.6666666666666,-5666.716798727345,0,0,0,2280.923876778929 -4422,5495,9943,-9,9941,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.087598537162,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,845.6666666666666,-5666.716798727345,0,0,0,2280.923876778929 -4423,5496,9944,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.742305260875872,8.148226095122618,0,0,0,-976.6091500368657,0,2,2,2019,10,0,35,34,1,0,0,8.37049830851914,8.37049830851914,0,0,0,1.375908158606213,0,0,0,0,2.131089269164342,0,51.83,57.2,-9,-9,1.666666666666667,1,1,0,0,8,9,3,1,552,47165.91773375481,0,0,0,790.345347483114 -4424,5497,9945,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.709000077203673,7.446769274631976,0,0,0,-947.6031992005871,0,2,-9,2019,12,0,36,31,1,0,1,6.921855606470556,6.921855606470556,0,0,0,0,0,0,0,0,0,0,52.66,56.94,-9,-9,10,3,4,0,0,3,8,3,0,489,-96485.60332337119,-51296.80028071817,0,0,1301.773120199411 -4425,5498,9946,9947,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.348237040425101,8.182267512801497,0,6,-8,-194.8484218811069,0,2,2,2019,11,0,40,40,1,0,0,12.19139433720266,12.19139433720266,0,0,0,0,0,1,1,0,4.392497400476087,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,11,5,1,1576,1650597.267935699,1302774.776289417,312715.1012877085,0,4076.835441109157 -4425,5498,9947,9946,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.772553406672525,9.028501198978764,3.625996044808538,6,8,-1.328300111515358,0,3,3,2019,11,0,42,40,1,0,0,22.15471391549422,22.15471391549422,0,0,0,0,0,1,1,0,0,4.100648570860598,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,1576,1650597.267935699,1302774.776289417,312715.1012877085,0,4076.835441109157 -4426,5499,9948,-9,9949,9950,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.216340280183,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4426,5499,9949,9950,-9,-9,1,0,30,0,4,0,2,2,-9,0,4,0,0,0,14,-10,-97.05788461196158,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,50.63,50.99,10,1,1,0,0,8,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4426,5499,9950,9949,-9,-9,1,1,40,0,4,0,1,1,-9,0,3,8.455989991556638,8.887271616066133,0,14,10,51.55411533835664,0,2,1,2019,9,1,38,38,1,1,0,18.05765658016294,18.05765658016294,0,0,0,0,0,1,1,0,1.559241753793957,0,50.63,50.99,46.5,58.26,8.333333333333334,4,2,0,0,11,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4426,5499,9951,-9,9949,9950,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.8751560944074,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4426,5499,9952,-9,9949,9950,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-832.4717432476936,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4426,5499,9953,-9,9949,9950,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-893.1850674911481,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,2,3,1,910.8333333333334,310239.2064898497,269829.2690854259,110528.486368157,16291.10988871278,3045.666370572757 -4427,5500,9954,9955,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.014886611201675,8.341706097083071,7.348707780440488,4,0,97.39185673713686,0,3,3,2019,12,0,38,38,1,0,0,7.905103060144871,7.905103060144871,0,0,0,0,14.5,1,1,0,0,7.946942813865711,39.91,43.86,35.44,20.8,5,1,1,0,0,11,2,4,0,629,164858.4504534756,-40814.5715531762,204246.2571532995,0,3248.264025317922 -4427,5500,9955,9954,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,7.305749802020424,7.295281584907038,0,4,0,-87.62003648052149,0,3,3,2019,24,11,16,16,1,11,0,9.388708943710384,9.388708943710384,0,0,0,0,0,1,1,0,0,0,35.44,20.8,39.91,43.86,1.666666666666667,1,1,0,0,12,2,4,0,629,164858.4504534756,-40814.5715531762,204246.2571532995,0,3248.264025317922 -4428,5501,9956,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,4.503357288678466,4.828434380353494,0,0,-838.1722833411769,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,4.807253640618627,57.24,19.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,3345,143370.667673927,96322.7906640345,0,0,1514.003716089084 -4429,5502,9957,9958,-9,-9,1,1,30,0,0,0,1,1,-9,0,1,8.963368109363715,9.02515896921714,0,4,2,-125.0841776718831,0,-9,-9,2019,7,0,40,40,1,0,0,22.08898923953901,22.08898923953901,0,0,0,0,7,0,0,0,0,0,39.86,50.97,54.4,20.12,6.666666666666667,1,1,0,0,8,9,5,0,365.5,131293.7742756331,-4287.379783511926,322667.7787215977,325341.2579323576,2805.663776286695 -4429,5502,9958,9957,-9,-9,1,0,28,0,0,0,1,1,-9,0,1,7.41776050421569,6.707738181790141,0,4,-2,-59.63944636280885,0,2,3,2019,9,0,15,0,1,0,0,12.08310630228869,12.08310630228869,0,0,0,0,0,0,0,0,0,0,54.4,20.12,39.86,50.97,6.666666666666667,1,1,0,0,4,9,5,0,365.5,131293.7742756331,-4287.379783511926,322667.7787215977,325341.2579323576,2805.663776286695 -4430,5503,9959,9960,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.914543352556493,7.567065868425345,30,-6,-21.01938623899309,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.246179382854759,8.033103694479927,44.35,38.91,56.1,49.93,6.666666666666667,1,1,0,0,6,2,4,1,888,969295.2500170012,535830.2576537346,406257.9232862106,0,2178.582152854328 -4430,5503,9960,9959,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.728197191822027,7.75088679525354,32,6,-57.11621893325591,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.15665260498392,7.549649924781661,56.1,49.93,44.35,38.91,8.333333333333334,1,1,0,0,4,2,4,1,888,969295.2500170012,535830.2576537346,406257.9232862106,0,2178.582152854328 -4431,5504,9961,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.621074251686996,7.240785067575692,0,0,-867.4934476033554,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.253155282652218,7.553779078658065,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1066,918387.5518137624,480302.8007835865,194646.8559509085,-8072.371888107535,2063.257305031551 -4432,5505,9962,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.847787980776294,9.048853381266946,1.367761923846963,0,0,-1038.635481642236,-9,3,2,2019,13,1,47,0,1,1,0,20.00600738540776,20.00600738540776,0,0,0,0,7,0,0,0,2.216531482047866,2.089952449583342,36.73,36.37,-9,-9,5,1,1,0,0,13,7,5,1,433,868705.0765157128,595792.9934062278,290984.3864641091,62511.61438027608,2610.287490955669 -4433,5506,9963,9964,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,4.198573728684284,4.046773189942591,50,3,9.628870695843329,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.17335595300953,3.966057540545642,35.7,23.15,58.9,45.74,6.666666666666667,1,1,0,0,0,12,2,0,713,0,0,0,0,1701.859597014683 -4433,5506,9964,9963,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-3,18.16520669324247,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.9,45.74,35.7,23.15,8.333333333333334,1,1,0,0,0,12,2,0,713,0,0,0,0,1701.859597014683 -4434,5507,9965,9966,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,0,0,0,7,-8,-42.01713853801208,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.857519722461317,0,51.47,53.17,52.23,55.6,8.333333333333334,2,3,0,0,0,11,5,1,570.3333333333334,145931.0570798965,97667.69167537127,222226.9762813311,167757.2953322759,3665.138977756018 -4434,5507,9966,9965,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.939345897853004,9.214291621160019,0,12,8,-141.7508301962822,0,-9,-9,2019,8,0,43,38,1,0,0,27.61867552829197,27.61867552829197,0,0,0,0,0,1,1,0,4.228091652365117,0,52.23,55.6,51.47,53.17,8.333333333333334,2,3,0,0,9,11,5,1,570.3333333333334,145931.0570798965,97667.69167537127,222226.9762813311,167757.2953322759,3665.138977756018 -4434,5507,9967,-9,9965,9966,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.2160627606518,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,570.3333333333334,145931.0570798965,97667.69167537127,222226.9762813311,167757.2953322759,3665.138977756018 -4435,5508,9968,9969,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.309793781385681,8.468597212899757,0,2,1,-44.34960742155338,0,-9,-9,2019,7,0,37,38,1,0,0,14.10370241938686,14.10370241938686,0,0,0,0,0,0,0,0,1.467608731137179,0,58.15,52.91,55.19,54.26,8.333333333333334,1,1,0,0,4,7,5,0,149.5,68480.70647653395,4104.7930586523,382220.3819295895,354794.4477762522,3407.438455637349 -4435,5508,9969,9968,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.595324219568532,8.579560237371727,0,2,-1,128.1012587140756,-9,-9,-9,2019,9,0,45,0,1,0,0,11.53088459684704,11.53088459684704,0,0,0,0,0,0,0,0,3.163394904582875,0,55.19,54.26,58.15,52.91,8.333333333333334,1,1,0,0,2,7,5,0,149.5,68480.70647653395,4104.7930586523,382220.3819295895,354794.4477762522,3407.438455637349 -4436,5509,9970,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.063144600853515,7.508732108252245,0,0,-1017.600055804653,0,3,3,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,3.144263974689141,6.821113900171352,48.37,24.47,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,494,627989.5982991778,97785.70124770893,435604.398860028,0,1836.018666848584 -4437,5510,9971,9972,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.800764769793714,8.928084077875281,0,24,0,-69.78944864808855,0,2,2,2019,7,0,48,40,1,0,0,15.37963589434031,15.37963589434031,0,0,0,0,0,0,0,0,.7056159896098217,0,57.06,57.76,35.97,61.83,8.333333333333334,1,1,0,0,11,11,5,1,518,141862.0801209464,146799.5466181556,148145.6131779573,67944.3895471538,4407.691258352032 -4437,5510,9972,9971,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.063067722822471,7.955319134824799,0,24,0,25.25665059471772,0,2,3,2019,12,1,50,40,1,1,0,8.074587337669961,8.074587337669961,0,0,0,0,0,0,0,0,0,0,35.97,61.83,57.06,57.76,8.333333333333334,1,1,0,0,10,11,5,1,518,141862.0801209464,146799.5466181556,148145.6131779573,67944.3895471538,4407.691258352032 -4437,5511,9973,-9,9971,9972,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.655576569925,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,0,11,2,1,234,34022.52199072606,0,0,0,0 -4438,5512,9974,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,8.633594409872959,8.472938056070195,0,0,-989.6672694837259,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.287978866100755,8.627122302450424,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,65,1376958.412425732,343600.6696174492,794790.7930327092,0,3361.426734250314 -4439,5513,9975,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.571515140292197,7.464166065502118,0,0,0,-926.4976894039866,0,3,3,2019,13,2,22,23,1,2,0,11.59627424750743,11.59627424750743,0,0,0,0,0,0,0,0,0,0,45.09,60.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,679,15958.23601264841,88145.1134167531,0,0,1405.054981472964 -4440,5514,9976,9977,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.299955863144278,6.34204552212559,7,-3,90.91484301128344,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,1.588319628097716,120,1,1,0,3.377703035363328,6.638417120867602,46.83,44.5,42.46,31,6.666666666666667,1,1,0,0,0,8,3,1,922.5,1196722.7622929,479244.8453617902,540616.7323120545,0,3006.52037037894 -4440,5514,9977,9976,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.635197591452365,7.912027835698587,7,3,-101.9256284854049,0,2,2,2019,19,5,0,0,4,5,0,0,0,1,0,125.3912339753014,0,0,1,1,0,3.461698717923345,7.805866229586397,42.46,31,46.83,44.5,5,1,1,0,0,0,8,3,1,922.5,1196722.7622929,479244.8453617902,540616.7323120545,0,3006.52037037894 -4441,5515,9978,9979,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,9,4,18.39964943123234,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,42,0,0,0,6.184337172469571,0,21.13,59.53,54.2,57.49,5,1,1,0,0,9,6,2,1,1125.5,214755.5197011426,231289.1125283155,56189.63721234939,0,1102.948577620174 -4441,5515,9979,9978,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,7.094520152681285,6.995439082717122,9,-4,92.5006865207752,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,74.5,0,0,0,0,6.96612171441158,54.2,57.49,21.13,59.53,8.333333333333334,1,1,0,0,6,6,2,1,1125.5,214755.5197011426,231289.1125283155,56189.63721234939,0,1102.948577620174 -4441,5516,9980,-9,9979,9978,1,1,26,0,0,0,2,2,-9,0,3,8.023481633213253,7.598868532376645,0,0,0,-1082.607476281253,0,3,3,2019,8,0,45,-9,1,0,1,7.115804878217167,7.115804878217167,0,0,0,0,0,0,0,0,1.441836415279836,0,49.77,45.88,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,350,210663.0636157078,3016.684370444389,0,0,1822.237371082753 -4442,5517,9981,-9,9983,9985,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-903.2539004474311,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,970.4,63072.64116691505,35179.24981711981,142627.0433562127,95294.50313928029,2425.775469693288 -4442,5517,9982,-9,9983,9985,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.1648447762012,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,970.4,63072.64116691505,35179.24981711981,142627.0433562127,95294.50313928029,2425.775469693288 -4442,5517,9983,9985,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,5.410276272381847,5.391707436907781,0,15,2,-84.20775379893824,0,2,2,2019,12,0,15,8,1,0,0,1.576456212378965,1.576456212378965,0,0,0,0,0,1,1,0,0,0,55.79,52.62,51,56,6.666666666666667,1,1,0,0,9,10,3,1,970.4,63072.64116691505,35179.24981711981,142627.0433562127,95294.50313928029,2425.775469693288 -4442,5517,9984,-9,9983,9985,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.516734898775,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,970.4,63072.64116691505,35179.24981711981,142627.0433562127,95294.50313928029,2425.775469693288 -4442,5517,9985,9983,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,7.864293760435995,8.228485681447186,0,7,-2,3.231364084282376,0,-9,-9,2019,9,0,60,60,1,1,0,5.567440280474982,5.567440280474982,0,0,0,0,0,1,1,0,0,0,51,56,55.79,52.62,8,1,1,0,0,1,10,3,1,970.4,63072.64116691505,35179.24981711981,142627.0433562127,95294.50313928029,2425.775469693288 -4443,5518,9986,-9,9987,9990,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1084.061298764861,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,1,0,781.6,135708.7934401313,144433.1264757201,0,0,2353.10511444947 -4443,5518,9987,9990,-9,-9,1,0,48,0,3,0,3,3,-9,0,4,0,0,0,27,-8,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.259828332812197,0,50,55,50,49,8,2,3,0,0,0,8,1,0,781.6,135708.7934401313,144433.1264757201,0,0,2353.10511444947 -4443,5518,9988,-9,9987,9990,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-938.2418029964442,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,1,0,781.6,135708.7934401313,144433.1264757201,0,0,2353.10511444947 -4443,5518,9989,-9,9987,9990,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.3306103104521,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,1,0,781.6,135708.7934401313,144433.1264757201,0,0,2353.10511444947 -4443,5518,9990,9987,-9,-9,1,1,56,0,3,0,3,3,-9,0,3,0,0,0,27,8,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,50,55,7,2,3,1,0,3,8,1,0,781.6,135708.7934401313,144433.1264757201,0,0,2353.10511444947 -4443,5519,9991,-9,9987,9990,1,1,28,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1089.633281856936,0,3,3,2019,10,0,0,38,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,1,0,3,8,1,0,1135,0,0,0,0,0 -4443,5520,9992,-9,9987,9990,1,0,26,0,3,0,2,2,-9,1,4,8.276931470372004,7.985222021388516,0,0,0,-1018.818293733564,0,3,3,2019,11,0,43,37,1,2,1,13.75507016818405,13.75507016818405,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,7,8,4,0,318,153426.0011165528,-85120.51294901634,0,0,1759.648992795626 -4443,5521,9993,-9,9987,9990,1,0,23,0,3,0,2,2,-9,0,4,7.696335523922295,7.246878424628402,0,0,0,-929.6484533667548,0,3,3,2019,12,0,10,10,1,2,1,24.22615131537979,24.22615131537979,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,3,8,3,0,839,-222477.6355740832,8232.158526828582,0,0,950.1165498672943 -4443,5522,9994,-9,9987,9990,1,1,22,0,3,0,2,2,0,0,4,0,0,0,0,0,-1013.616008278064,-9,3,3,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,1,0,335,0,0,0,0,0 -4443,5523,9995,-9,9987,9990,1,0,19,0,3,0,3,3,-9,0,4,0,0,0,0,0,-919.2934930628292,0,3,3,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,1,0,0,8,1,0,60,-45852.3283007284,0,0,0,0 -4443,5524,9996,-9,9987,9990,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1165.346864628312,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,2,8,1,0,313,161738.8627004616,0,0,0,0 -4444,5525,9997,10000,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.845574960942502,9.014196627973488,0,6,-1,23.54871526207615,0,1,2,2019,13,3,40,45,1,3,0,26.14620406279112,26.14620406279112,0,0,0,0,0,1,1,0,4.027331102128126,0,51.24,58.84,48.48,54.62,8.333333333333334,1,1,0,0,7,12,4,1,849.25,602448.2513251563,367377.7187620642,255828.6339070963,0,4351.372437460476 -4444,5525,9998,-9,10000,9997,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.262245904887,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,849.25,602448.2513251563,367377.7187620642,255828.6339070963,0,4351.372437460476 -4444,5525,9999,-9,10000,9997,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-979.6011562740912,-9,1,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,3,12,4,1,849.25,602448.2513251563,367377.7187620642,255828.6339070963,0,4351.372437460476 -4444,5525,10000,9997,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.434245379638702,8.446964228878239,0,6,1,-40.68382726975168,0,2,1,2019,8,0,27,26,1,0,0,16.78939405183917,16.78939405183917,0,0,0,0,0,1,1,0,3.76249414755164,0,48.48,54.62,51.24,58.84,8.333333333333334,1,1,0,0,7,12,4,1,849.25,602448.2513251563,367377.7187620642,255828.6339070963,0,4351.372437460476 -4445,5526,10001,10002,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.854658460158479,8.46594236418747,0,23,-1,-42.93523379471914,0,2,2,2019,7,0,41,40,1,0,0,22.76281978632558,22.76281978632558,0,0,0,0,0,0,0,0,2.156512590002037,0,57.16,56.15,58.87,22.16,8.333333333333334,1,1,0,0,5,9,5,1,768.5,193440.8165245914,-64355.15262170535,191335.5686716459,144420.6924576896,4757.274247537405 -4445,5526,10002,10001,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,9.291987630980683,9.14926486305813,0,6,1,67.07182762255958,0,-9,-9,2019,13,3,49,50,1,3,0,20.36767032874057,20.36767032874057,0,0,0,0,0,0,0,0,0,0,58.87,22.16,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,768.5,193440.8165245914,-64355.15262170535,191335.5686716459,144420.6924576896,4757.274247537405 -4446,5527,10003,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.799517154752811,7.863159709033561,0,0,0,-1024.854292604987,0,3,3,2019,11,0,38,37,1,0,0,8.181307835769317,8.181307835769317,0,0,0,0,0,1,1,0,0,0,50.74,49.95,-9,-9,6.666666666666667,1,1,0,0,4,5,3,0,306,65730.13975196033,0,0,0,1091.010166972022 -4447,5528,10004,-9,10006,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.715586710116,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,0,540.6666666666666,394984.7357424521,95899.66343780927,167512.7941163489,0,2475.569142850112 -4447,5528,10005,-9,10006,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.779812277756,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,0,540.6666666666666,394984.7357424521,95899.66343780927,167512.7941163489,0,2475.569142850112 -4447,5528,10006,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.632504740097584,8.734384979931454,6.087009050717295,0,0,-924.9961892412945,0,2,2,2019,14,2,37,26,1,2,0,13.53853426516245,13.53853426516245,0,0,0,0,0,1,1,0,5.686534808691735,0,41.3,60.77,-9,-9,3.333333333333333,1,1,0,0,7,11,4,0,540.6666666666666,394984.7357424521,95899.66343780927,167512.7941163489,0,2475.569142850112 -4448,5529,10007,10009,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.238620262109739,8.410385395450511,0,7,1,-138.199243982471,0,2,2,2019,7,0,45,40,1,0,0,8.89082245876925,8.89082245876925,0,0,0,0,0,1,1,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,9,10,4,1,928.5,112033.5495917336,84270.56936720898,202926.8123211101,161630.353178932,2880.321921663221 -4448,5529,10008,-9,10009,10007,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.204310253183,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,928.5,112033.5495917336,84270.56936720898,202926.8123211101,161630.353178932,2880.321921663221 -4448,5529,10009,10007,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.029004194551852,7.26730903562253,0,7,-1,-31.90649871921411,0,-9,-9,2019,9,0,30,33,1,0,0,8.322746115747636,8.322746115747636,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,10,4,1,928.5,112033.5495917336,84270.56936720898,202926.8123211101,161630.353178932,2880.321921663221 -4448,5529,10010,-9,10009,10007,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.4113943821712,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,928.5,112033.5495917336,84270.56936720898,202926.8123211101,161630.353178932,2880.321921663221 -4449,5530,10011,10012,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,8.251072255570328,8.024224589401189,0,7,0,86.54504753006572,0,2,2,2019,6,0,40,40,1,0,0,9.348917934715676,9.348917934715676,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.62,57.73,8.333333333333334,1,1,0,0,11,4,4,1,670.5,45349.9572559107,38697.81434325426,73097.06308429351,65262.27485888467,2905.628305401848 -4449,5530,10012,10011,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.253721408652538,8.156200283212929,0,3,0,-17.16272297114324,0,-9,3,2019,12,0,39,39,1,0,0,10.24795647636707,10.24795647636707,0,0,0,0,2,1,1,0,0,0,44.62,57.73,57.06,57.76,6.666666666666667,1,1,0,0,11,4,4,1,670.5,45349.9572559107,38697.81434325426,73097.06308429351,65262.27485888467,2905.628305401848 -4450,5531,10013,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1115.323602712743,0,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,23.46,32.83,-9,-9,3.333333333333333,4,2,1,1,1,6,1,0,497,281700.7847642225,-174582.9618378906,0,0,2643.71156008833 -4451,5532,10014,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.457131266760541,8.460595463092426,0,0,0,-913.6875984064663,0,1,1,2019,10,0,6,50,1,0,0,109.7188441965648,109.7188441965648,0,0,0,0,2,0,0,0,4.5235046176889,0,54.1,59.11,-9,-9,0,1,1,0,0,11,9,5,1,1131,274098.4045779103,97975.91395787176,0,0,2255.366157736949 -4452,5533,10015,10016,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,32,-4,56.75373159982273,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.1,51.16,10,1,1,0,0,0,9,2,0,286,349289.4333155972,-1099.592347759868,391116.9890192688,0,1990.43811875088 -4452,5533,10016,10015,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.228745861773813,6.336334479228072,32,4,52.71664847807495,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.291987982459101,6.340417971000542,62.1,51.16,57.16,56.15,10,1,1,0,0,9,9,2,0,286,349289.4333155972,-1099.592347759868,391116.9890192688,0,1990.43811875088 -4453,5534,10017,-9,10018,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.2054962096406,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,230,8195.858054430368,0,0,0,2372.652792158442 -4453,5534,10018,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,2,5.355160085330432,5.116698828188336,0,0,0,-958.19510991845,0,3,2,2019,24,9,2,0,1,9,0,12.83842747119834,12.83842747119834,0,0,0,0,0,1,1,0,0,0,20.1,33.05,-9,-9,1.666666666666667,1,1,0,0,1,7,2,0,230,8195.858054430368,0,0,0,2372.652792158442 -4454,5535,10019,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.19539024897594,9.424974648287666,0,0,0,-983.2760804649065,0,3,3,2019,10,0,35,40,1,0,0,30.64369852393347,30.64369852393347,0,0,0,0,0,0,0,0,5.380368533480306,0,51.61,61.54,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,1205,1414089.289845316,680828.6721993892,254210.3225670679,0,3414.281725758068 -4454,5536,10020,-9,-9,10019,1,0,25,0,0,0,2,2,-9,0,3,8.090630712720372,8.414048036546191,0,0,0,-956.690485592939,0,2,2,2019,9,0,43,41,1,0,1,8.188523374056109,8.188523374056109,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,2084,-192102.9619841703,-10111.99658369332,0,0,1505.768903633354 -4455,5537,10021,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,6.704190281537276,6.880075929558968,5.677509136927617,0,0,-1023.589003140378,-9,2,2,2019,5,0,10,0,1,0,0,6.335744211190336,6.335744211190336,0,0,0,0,0,1,1,0,5.766840346487699,0,54.89,24.92,-9,-9,10,1,1,0,0,7,7,2,0,315,21943.26886394731,15407.96897258229,0,0,2228.907341410054 -4455,5538,10022,-9,10021,-9,1,1,20,0,1,0,2,2,-9,0,4,7.850741619246659,7.82401918657543,0,0,0,-922.7019883350584,-9,2,-9,2019,11,0,40,0,1,2,1,10.0522124895824,10.0522124895824,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,4,0,354,110138.1891290396,0,0,0,1475.246553886417 -4456,5539,10023,10024,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.340685426834433,6.231431886141716,6,-2,-.6076273129420712,0,3,3,2019,19,8,0,48,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.111922642654695,36.68,50.96,50,47,5,1,1,0,0,7,13,2,1,1373.5,622988.1859173357,299668.4302779273,0,0,504.648351836034 -4456,5539,10024,10023,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,6.553568985844752,6.684195999953011,6,2,121.1269676701781,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.142468719471959,6.625073918277145,50,47,36.68,50.96,7,1,1,0,0,0,13,2,1,1373.5,622988.1859173357,299668.4302779273,0,0,504.648351836034 -4456,5540,10025,-9,10024,10023,1,1,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1109.144589590832,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,121,0,0,0,0,18.69226162897155 -4457,5541,10026,10028,-9,-9,1,0,29,0,2,0,3,3,-9,0,4,0,0,0,14,-11,103.7768951229127,-9,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,38.92,49.8,7,2,3,0,0,0,2,2,1,1955.75,124570.6163473417,78818.61823275273,100377.6733890252,69760.43151129087,3047.808952347811 -4457,5541,10027,-9,10026,10028,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.1655516021457,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,1955.75,124570.6163473417,78818.61823275273,100377.6733890252,69760.43151129087,3047.808952347811 -4457,5541,10028,10026,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.113394544633438,7.047537214880523,0,14,11,89.80059127174739,0,3,2,2019,12,0,30,40,1,0,0,4.128005720411511,4.128005720411511,0,0,0,0,0,1,0,1,0,0,38.92,49.8,48,57,5,2,3,0,0,9,2,2,1,1955.75,124570.6163473417,78818.61823275273,100377.6733890252,69760.43151129087,3047.808952347811 -4457,5541,10029,-9,10026,10028,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.531071696771,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,1955.75,124570.6163473417,78818.61823275273,100377.6733890252,69760.43151129087,3047.808952347811 -4458,5542,10030,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.791333515349575,8.490764495019214,7.580607112035976,0,0,-1144.474405848324,0,2,3,2019,6,0,27,22,1,0,0,11.73527165579761,11.73527165579761,0,0,0,0,0,1,1,0,0,7.714447774587449,55.87,53.99,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,425,1486051.329968943,1173159.334272178,421658.8431036975,1425.331459109553,2701.316879202223 -4459,5543,10031,10032,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,6.155493616520603,6.082951581595755,0,34,-1,-92.02819606308344,0,2,2,2019,10,0,8,8,1,0,0,6.389638463104572,6.389638463104572,0,0,0,0,0,0,0,0,0,0,43.2,59.97,56.1,49.93,8.333333333333334,1,1,0,0,10,4,5,0,941.5,563069.7382479213,384228.3399323798,200626.6548450035,23313.15124042739,2643.488559829859 -4459,5543,10032,10031,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.891687923047678,9.05168541559272,0,34,1,138.1513971725713,0,3,-9,2019,7,1,53,38,1,1,0,13.84079754154605,13.84079754154605,0,0,0,0,0,0,0,0,0,0,56.1,49.93,43.2,59.97,8.333333333333334,1,1,0,0,10,4,5,0,941.5,563069.7382479213,384228.3399323798,200626.6548450035,23313.15124042739,2643.488559829859 -4459,5544,10033,-9,10031,10032,1,0,26,0,0,0,2,2,-9,0,4,8.419820100859251,8.286272941095536,0,0,0,-967.02505286613,0,3,2,2019,12,1,46,42,1,1,1,10.51605227449152,10.51605227449152,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,271,-6714.486930496616,-156845.3007923613,0,0,1902.838535927529 -4459,5545,10034,-9,10031,10032,1,1,22,0,0,0,2,2,-9,0,3,8.46254134800524,8.429922740694977,0,0,0,-932.7343085717273,0,2,1,2019,4,0,39,39,1,0,1,12.08574511591041,12.08574511591041,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,725,27783.4496500092,0,0,0,1623.170741783878 -4460,5546,10035,10037,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,6.982735491511845,6.908494318011824,0,11,10,-3.618153169282115,0,1,1,2019,6,0,40,20,1,0,0,3.168444996875499,3.168444996875499,0,0,0,0,0,1,1,0,2.130524166733127,0,57.16,56.15,53.76,51.1,8.333333333333334,4,5,0,0,6,7,2,0,729.75,0,0,0,0,1164.428169827276 -4460,5546,10036,-9,10037,10035,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.900189982644,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,2,0,729.75,0,0,0,0,1164.428169827276 -4460,5546,10037,10035,-9,-9,1,0,30,0,2,0,1,1,-9,0,4,6.757226850093338,6.484511015048582,0,11,-10,-40.79223437351218,0,-9,-9,2019,12,3,37,37,1,3,0,2.726617869179127,2.726617869179127,0,0,0,0,0,1,1,0,0,0,53.76,51.1,57.16,56.15,8.333333333333334,1,1,0,0,2,7,2,0,729.75,0,0,0,0,1164.428169827276 -4460,5546,10038,-9,10037,10035,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.884495996502,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,2,0,729.75,0,0,0,0,1164.428169827276 -4461,5547,10039,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.741165195005569,7.781142122242554,0,0,-986.0699672325225,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.495806691923351,7.593075603806263,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,831,1519507.05777434,259491.0769549816,787062.2759361033,0,3499.247040356407 -4462,5548,10040,10041,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.029625805698264,7.153967799051503,58,-5,-6.872007190849061,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,5.003179143633389,7.250044424027648,49.76,56.93,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,1052.5,1396850.877557885,456186.3406878603,688297.3475738999,0,2073.523243365336 -4462,5548,10041,10040,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.960563771752147,7.048167771036445,58,5,-36.47825193518322,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.174610959870634,6.982535998582931,57.16,56.15,49.76,56.93,10,1,1,0,0,4,9,3,1,1052.5,1396850.877557885,456186.3406878603,688297.3475738999,0,2073.523243365336 -4463,5549,10042,-9,-9,-9,1,1,53,0,0,0,2,2,0,0,4,0,7.400076555076125,7.518251027624993,0,0,-1023.108748573652,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8.656322541670873,7.674807659282249,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,511,938336.1257384418,545764.722573066,321572.9223592954,0,2519.924588351176 -4464,5550,10043,10044,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,7.957627473589512,7.803165968422755,0,35,-11,-55.20593015199606,0,3,3,2019,10,2,40,40,1,2,0,10.31503669192523,10.31503669192523,1,0,0,0,0,1,1,0,0,0,64.34,27.3,56.58,45.49,6.666666666666667,1,1,0,0,13,10,3,1,530,1156724.082320492,576161.2346268251,296027.0180328017,0,3297.894730177929 -4464,5550,10044,10043,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.499760825071602,6.721965678694715,35,11,-128.7827938313205,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.805825490648848,6.230979837979373,56.58,45.49,64.34,27.3,8.333333333333334,1,1,0,0,0,10,3,1,530,1156724.082320492,576161.2346268251,296027.0180328017,0,3297.894730177929 -4465,5551,10045,10046,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,7,0,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.8255266596513816,0,53,47,57.16,56.15,7,1,1,0,0,0,5,1,1,1123,174362.6450899562,-72305.02578054866,78611.93392749532,0,1648.012504401741 -4465,5551,10046,10045,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,47,0,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.302881327301485,0,57.16,56.15,53,47,0,1,1,0,0,0,5,1,1,1123,174362.6450899562,-72305.02578054866,78611.93392749532,0,1648.012504401741 -4466,5552,10047,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.857340973232587,9.074060376227026,0,0,0,-924.5563145529479,0,-9,-9,2019,2,0,45,41,1,0,0,23.59936673783143,23.59936673783143,0,0,0,0,0,0,0,0,5.617640894200896,0,51.32,56,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,424,504049.5099058072,164252.4611121068,317258.8260038293,285522.7493244835,3330.267547721974 -4466,5553,10048,-9,10047,-9,1,1,24,0,0,0,2,2,-9,0,5,7.815030055898191,7.876888840941962,0,0,0,-1098.896742514575,-9,1,-9,2019,5,0,37,0,1,0,1,9.503706936325001,9.503706936325001,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,614,199940.705710545,-93154.20009677645,0,0,1138.057433259705 -4467,5554,10049,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.180627475506278,6.96255519782887,0,0,0,-874.7813807686116,0,3,3,2019,13,1,32,25,1,1,0,6.89845048201847,6.89845048201847,0,0,0,0,0,1,0,1,0,0,47.31,50.2,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,131,25051.15374921908,-6375.22546617523,0,0,1462.670251115435 -4468,5555,10050,10051,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,0,0,0,5,3,-38.10860273018884,1,-9,-9,2019,15,3,0,95,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.35,53.49,51.05,48.16,6.666666666666667,1,1,0,0,9,10,5,1,192,238568.9259154969,98118.71516227862,143363.0234562693,88561.606551823,2610.442348728273 -4468,5555,10051,10050,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.890606373181289,8.75551271534234,0,5,-3,97.73093525446629,0,3,2,2019,11,1,47,52,1,1,0,20.97068786165071,20.97068786165071,0,0,0,0,0,1,1,0,7.449376218379114,0,51.05,48.16,36.35,53.49,6.666666666666667,1,1,0,0,11,10,5,1,192,238568.9259154969,98118.71516227862,143363.0234562693,88561.606551823,2610.442348728273 -4469,5556,10052,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,7.38385612638081,7.76023907011876,0,0,-994.4658872112291,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.399979589094239,52.03,21.07,-9,-9,1.666666666666667,2,3,0,0,0,8,3,1,714,495972.9646705023,38160.20295188532,269133.4136112331,0,1418.47227633637 -4470,5557,10053,-9,10055,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.7049664795391,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,3403,25995.09014517165,0,0,0,1148.046154073592 -4470,5557,10054,-9,10055,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.8741910882487,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,3403,25995.09014517165,0,0,0,1148.046154073592 -4470,5557,10055,-9,-9,-9,1,0,30,0,2,0,3,3,-9,0,5,5.703915970247658,5.456429099217626,0,0,0,-1016.720444177281,0,-9,-9,2019,5,0,6,0,1,0,0,6.023584051372069,6.023584051372069,0,0,0,0,0,1,1,0,0,0,68.32000000000001,45.78,-9,-9,6.666666666666667,1,1,0,0,1,5,2,0,3403,25995.09014517165,0,0,0,1148.046154073592 -4471,5558,10056,10057,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.812075759237034,7.881214320627893,43,-3,-29.19014851478765,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.912414896179789,7.737158301903284,54.37,54.8,58.33,47.36,8.333333333333334,1,1,0,0,6,12,3,1,317,1235271.733984982,933059.0854695255,203744.7859252418,0,3055.186663529474 -4471,5558,10057,10056,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.276415871231793,6.609885998798892,43,3,-37.73469816703977,0,1,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.046291038588969,5.565672608791518,58.33,47.36,54.37,54.8,8.333333333333334,1,1,0,0,6,12,3,1,317,1235271.733984982,933059.0854695255,203744.7859252418,0,3055.186663529474 -4472,5559,10058,10059,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.129824766244999,9.428591722524921,8.014021905336023,37,0,-8.674193423756416,0,3,3,2019,8,0,42,44,1,0,0,23.36338477919784,23.36338477919784,0,0,0,0,2,1,1,0,0,8.317817827636278,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,8,8,5,1,361.5,777664.9756678748,634352.295885612,0,0,6471.274064671323 -4472,5559,10059,10058,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.559275207746156,8.579982911852987,0,37,0,-.745951142608937,0,3,3,2019,10,1,34,34,1,1,0,19.43397859505187,19.43397859505187,0,0,0,0,7,1,1,0,.6017847448407871,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,12,8,5,1,361.5,777664.9756678748,634352.295885612,0,0,6471.274064671323 -4472,5560,10060,-9,10059,10058,1,1,29,0,0,0,2,2,-9,0,4,8.498010171563275,8.069171421974502,0,0,0,-1098.872150432983,0,2,2,2019,11,0,49,48,1,0,1,10.26306088508751,10.26306088508751,0,0,0,0,0,1,1,0,1.937324600566867,0,41.99,60.17,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,585,-1450.072020340087,-60798.02414069245,0,0,1687.349467486384 -4472,5561,10061,-9,10059,10058,1,0,26,0,0,0,1,1,-9,0,4,8.864715161015281,8.991188113655101,0,0,0,-893.3065466370891,0,2,2,2019,5,0,39,50,1,0,1,21.20053263829043,21.20053263829043,0,0,0,0,2,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,6,8,5,1,270,258708.8543678201,0,116292.3868211647,168989.194546307,2405.571118074454 -4473,5562,10062,10063,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,9,1,4.41258388844135,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.71,29.66,57.33,53.46,5,1,1,0,0,0,2,2,1,378.5,430743.2080997324,260557.9340142994,112477.7242077268,0,1672.359682266652 -4473,5562,10063,10062,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.546242248828614,7.447146927904097,9,-1,17.93560663635924,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.907810042777585,6.92171800663909,57.33,53.46,59.71,29.66,8.333333333333334,1,1,0,0,0,2,2,1,378.5,430743.2080997324,260557.9340142994,112477.7242077268,0,1672.359682266652 -4473,5563,10064,-9,10062,10063,1,1,53,0,0,0,2,2,-9,0,4,7.797090243772237,7.78063913970166,0,0,0,-1139.70696699881,0,2,3,2019,12,0,39,38,1,0,0,7.356477030763271,7.356477030763271,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,839,-106606.7565049262,91400.27354225457,0,0,1254.69972740321 -4474,5564,10065,10066,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.58127589778735,6.518147560352619,0,8,-2,-4.219126411124005,0,-9,-9,2019,12,0,10,10,1,0,0,9.430892862526282,9.430892862526282,0,0,0,0,0,1,1,0,0,0,45.81,44.2,50,49,6.666666666666667,1,1,0,0,8,7,3,1,687.5,-14633.09011278359,0,0,0,1461.878950559201 -4474,5564,10066,10065,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.898121071682475,7.981549589901313,0,8,2,-61.6504993210819,0,-9,-9,2019,10,0,60,60,1,1,0,4.166189057147847,4.166189057147847,0,0,0,0,0,1,1,0,0,0,50,49,45.81,44.2,7,1,1,0,0,1,7,3,1,687.5,-14633.09011278359,0,0,0,1461.878950559201 -4475,5565,10067,10068,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.683575378059046,7.721810261371041,29,9,38.69071243739883,0,3,3,2019,8,1,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,3.100043451442664,7.559582011571182,60.65,24.95,48.18,61.8,8.333333333333334,1,1,0,0,10,6,5,1,626,1285486.771541865,916414.4617175689,177695.063263416,0,4313.747788709135 -4475,5565,10068,10067,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.950924041905797,9.152896594413074,0,29,0,10.79587240885671,0,3,3,2019,14,4,43,42,1,4,0,21.45007527144526,21.45007527144526,0,0,0,0,0,0,0,0,6.751723463736721,0,48.18,61.8,60.65,24.95,8.333333333333334,1,1,0,0,10,6,5,1,626,1285486.771541865,916414.4617175689,177695.063263416,0,4313.747788709135 -4476,5566,10069,10071,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,7.625134352613698,7.305147665196844,0,1,1,-61.22473640588195,-9,-9,-9,2019,10,0,23,0,1,1,0,9.790542451495577,9.790542451495577,0,0,0,0,0,1,1,0,0,0,51,57,51.73,58.82,7,2,3,0,0,1,8,4,0,250.3333333333333,634236.3268649172,169589.4043067201,90558.44517391687,96724.5988137767,3205.94870746216 -4476,5566,10070,-9,10071,10069,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.5009427599236,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,4,0,250.3333333333333,634236.3268649172,169589.4043067201,90558.44517391687,96724.5988137767,3205.94870746216 -4476,5566,10071,10069,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.404174278445874,8.324007276058342,0,1,-1,47.60764384734925,0,2,2,2019,11,3,55,37,1,3,0,7.557600260006723,7.557600260006723,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51,57,8.333333333333334,2,3,0,0,3,8,4,0,250.3333333333333,634236.3268649172,169589.4043067201,90558.44517391687,96724.5988137767,3205.94870746216 -4477,5567,10072,10073,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,20,-5,0,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,50.32,42.89,39.97,27.7,8.333333333333334,1,1,0,0,0,2,1,0,629.3333333333334,54892.48128277274,0,0,0,1927.810342406957 -4477,5567,10073,10072,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,20,5,0,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,27.7,50.32,42.89,3.333333333333333,1,1,0,0,0,2,1,0,629.3333333333334,54892.48128277274,0,0,0,1927.810342406957 -4477,5567,10074,-9,10072,10073,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-979.6675080787248,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,1,0,629.3333333333334,54892.48128277274,0,0,0,1927.810342406957 -4478,5568,10075,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.597656014076264,8.807824239995378,0,0,0,-1020.409277829649,0,-9,-9,2019,9,0,38,37,1,0,0,18.0252034702995,18.0252034702995,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,1235,22759.82362466774,36365.9626931976,40888.17353742922,0,2194.497300119142 -4479,5569,10076,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1038.809779064866,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.12,27.25,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,2280,-170756.900299829,0,0,0,1646.476512081642 -4480,5570,10077,10078,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.019764185820149,8.108968019106987,5.018866099152619,9,-12,-62.35387153256979,0,-9,-9,2019,11,0,38,35,1,2,0,8.592978951695939,8.592978951695939,0,0,0,1.539350450128909,0,1,1,0,0,4.899310391703573,48,49,57.16,56.15,7,1,1,0,0,1,7,3,1,800,250847.0823377213,61031.97264821854,302909.4064834574,0,2279.088297714111 -4480,5570,10078,10077,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.153522316065728,6.282805183660451,33,12,-62.98053155914621,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.28784595021,6.383698582548923,57.16,56.15,48,49,10,1,1,0,0,10,7,3,1,800,250847.0823377213,61031.97264821854,302909.4064834574,0,2279.088297714111 -4481,5571,10079,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-987.7770758506385,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,17.70904842796943,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,1,264,203313.6940791013,0,326050.6258624699,0,1136.440327185715 -4482,5572,10080,-9,-9,-9,1,0,52,0,1,0,3,3,-9,0,2,7.803698016408361,7.47143794137552,0,0,0,-1101.959989143274,0,3,3,2019,11,0,28,22,1,0,0,7.574650703946229,7.574650703946229,0,0,0,0,0,1,1,0,3.233669295548222,0,47.26,43.53,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,145.5,113856.8125453456,-31362.92588754372,102347.5765767119,0,1301.604737681228 -4482,5572,10081,-9,10080,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-952.2810628979494,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,13,3,1,145.5,113856.8125453456,-31362.92588754372,102347.5765767119,0,1301.604737681228 -4483,5573,10082,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,7.185246705922264,7.177875059299909,0,0,-1013.889492763787,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.713007255918904,59.04,54.12,-9,-9,10,1,1,0,0,0,6,3,1,1314,359737.1905170607,204331.2201878914,202845.869505414,0,1922.116915179827 -4484,5574,10083,10084,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.632215573720627,8.48094416332925,0,9,5,63.34777187100047,0,2,2,2019,6,0,56,46,1,0,0,14.36641623382179,14.36641623382179,0,0,0,0,0,1,1,0,6.298638744595465,0,57.16,56.15,34.73,60.05,8.333333333333334,1,1,0,0,11,6,4,1,454,431113.7605603875,466454.9243651461,185278.4358536811,96113.34710970781,3089.580724273389 -4484,5574,10084,10083,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.045521034008044,6.98718875345349,0,9,-5,-151.4707611607162,0,3,3,2019,19,7,10,10,1,7,0,12.28620252169867,12.28620252169867,0,0,0,0,2,1,1,0,0,0,34.73,60.05,57.16,56.15,6.666666666666667,1,1,0,0,11,6,4,1,454,431113.7605603875,466454.9243651461,185278.4358536811,96113.34710970781,3089.580724273389 -4484,5574,10085,-9,10084,10083,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1026.012155819729,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,454,431113.7605603875,466454.9243651461,185278.4358536811,96113.34710970781,3089.580724273389 -4485,5575,10086,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.541811182913444,8.17573756074783,7.153842883967955,0,0,-1041.84486832865,0,2,3,2019,17,6,36,34,1,6,0,9.03045371514655,9.03045371514655,0,0,0,0,0,1,1,0,7.480423302925495,0,33.65,57.96,-9,-9,3.333333333333333,3,4,0,1,7,8,4,0,314,125004.8471450671,88291.89466983193,233045.8589359905,12983.44715195511,3087.505795092994 -4486,5576,10087,10089,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,6.890065313110106,7.030618523783364,0,4,-7,-61.73293020449231,0,-9,-9,2019,16,3,21,26,1,3,0,5.039500277161732,5.039500277161732,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,57,10,1,1,0,0,9,12,3,0,845,18638.89958156221,-12226.14416202575,160924.2878446247,85692.1359012591,2343.591005648163 -4486,5576,10088,-9,10087,10089,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.664043497775,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,845,18638.89958156221,-12226.14416202575,160924.2878446247,85692.1359012591,2343.591005648163 -4486,5576,10089,10087,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.589746157583575,8.397318947571245,0,4,7,41.86541415625468,0,3,2,2019,10,0,40,40,1,1,0,11.6420949220758,11.6420949220758,0,0,0,0,0,1,1,0,0,0,50,57,54.79,55.86,7,1,1,0,0,1,12,3,0,845,18638.89958156221,-12226.14416202575,160924.2878446247,85692.1359012591,2343.591005648163 -4486,5576,10090,-9,10087,10089,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1112.853318014749,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,0,845,18638.89958156221,-12226.14416202575,160924.2878446247,85692.1359012591,2343.591005648163 -4487,5577,10091,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.045360234189832,8.256460053172122,4.2627110109786,0,0,-1046.753257614085,0,3,3,2019,12,0,35,40,1,0,0,13.22440963730902,13.22440963730902,0,0,0,0,0,0,0,0,5.055807453277418,4.648592659625087,43.99,60.71,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,818,498375.9380236954,541492.8233334953,0,0,1203.400260157381 -4488,5578,10092,-9,10096,10095,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.2160062336383,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,885.6,132901.3440364726,35789.42788171612,0,0,2843.115968624396 -4488,5578,10093,-9,10096,10095,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.7610292217696,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,0,885.6,132901.3440364726,35789.42788171612,0,0,2843.115968624396 -4488,5578,10094,-9,10096,10095,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.466590733438,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,0,885.6,132901.3440364726,35789.42788171612,0,0,2843.115968624396 -4488,5578,10095,10096,-9,-9,1,1,35,0,3,0,2,2,-9,0,2,8.511021528896634,8.319237455959593,0,10,0,-23.22288976212125,0,2,2,2019,13,1,45,45,1,1,0,12.95284578656254,12.95284578656254,0,0,0,0,0,1,1,0,0,0,44.22,46.13,44.19,56.73,3.333333333333333,1,1,0,0,12,5,4,0,885.6,132901.3440364726,35789.42788171612,0,0,2843.115968624396 -4488,5578,10096,10095,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,7.324776499854732,7.723454422846014,0,10,0,-107.7476484247325,0,2,-9,2019,16,4,27,28,1,4,0,6.535796792235999,6.535796792235999,0,0,0,0,0,1,1,0,0,0,44.19,56.73,44.22,46.13,3.333333333333333,1,1,0,0,11,5,4,0,885.6,132901.3440364726,35789.42788171612,0,0,2843.115968624396 -4489,5579,10097,-9,10100,10099,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.304045320269,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,967,74216.24878355896,141185.5815585541,196205.1370338607,131754.0390394681,2561.889725814676 -4489,5579,10098,-9,10100,10099,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.677874630428,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,967,74216.24878355896,141185.5815585541,196205.1370338607,131754.0390394681,2561.889725814676 -4489,5579,10099,10100,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.225659966574211,8.215848566848827,0,7,0,-.2446791646935041,0,2,2,2019,24,9,35,35,1,9,0,10.73313953281317,10.73313953281317,0,0,0,0,0,1,1,0,0,0,36.72,59.86,11.54,61.23,3.333333333333333,1,1,0,0,10,4,3,1,967,74216.24878355896,141185.5815585541,196205.1370338607,131754.0390394681,2561.889725814676 -4489,5579,10100,10099,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,7.654805221693037,7.478424982409094,0,7,0,2.196539165568537,0,1,-9,2019,25,8,18,18,1,8,0,11.53579046451972,11.53579046451972,0,0,0,0,0,1,1,0,0,0,11.54,61.23,36.72,59.86,0,1,1,0,0,8,4,3,1,967,74216.24878355896,141185.5815585541,196205.1370338607,131754.0390394681,2561.889725814676 -4490,5580,10101,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.072469447244576,7.094587677492601,0,0,0,-1066.912029826117,0,1,2,2019,18,6,14,15,1,6,0,8.838526300756303,8.838526300756303,0,0,0,0,0,1,1,0,1.278349215400476,0,36.76,56.28,-9,-9,6.666666666666667,1,1,0,0,6,1,2,0,182,-132189.0376409883,68100.68763515596,0,0,487.2546071322455 -4491,5581,10102,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.884258353079012,6.114312926189609,0,0,-1162.316747492656,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.164687822002128,5.88576596680783,55.36,51.57,-9,-9,10,1,1,0,0,0,2,2,1,809,228681.3289019053,-2221.432287336276,0,0,1213.564849130294 -4492,5582,10103,-9,10105,10106,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.478178150545,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,711,552649.8836187117,6782.348828463291,336466.4553973164,69170.59801034541,4093.767492595016 -4492,5582,10104,-9,10105,10106,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.1047249847048,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,711,552649.8836187117,6782.348828463291,336466.4553973164,69170.59801034541,4093.767492595016 -4492,5582,10105,10106,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.460039064612452,8.37020666922413,0,8,-4,-15.96235945589049,0,2,1,2019,6,0,35,32,1,0,0,10.98232581099475,10.98232581099475,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.76,52.64,10,1,1,0,0,9,9,5,1,711,552649.8836187117,6782.348828463291,336466.4553973164,69170.59801034541,4093.767492595016 -4492,5582,10106,10105,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.020529668940405,8.868840683473923,0,8,4,-135.1418098342115,0,2,2,2019,10,1,40,40,1,1,0,20.5197042822346,20.5197042822346,0,0,0,0,0,1,1,0,0,0,55.76,52.64,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,711,552649.8836187117,6782.348828463291,336466.4553973164,69170.59801034541,4093.767492595016 -4493,5583,10107,10108,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.582427425418334,9.669517877742832,0,29,-1,8.465503749176042,0,2,1,2019,9,1,45,45,1,1,0,43.96283676231144,43.96283676231144,0,0,0,0,0,1,1,0,.8805659881179787,0,44.02,60.7,54.57,49.24,8.333333333333334,1,1,0,0,12,4,5,1,845.3333333333334,925311.8917657052,409269.3501077311,543121.9854835189,187069.7505287299,10719.02420506664 -4493,5583,10108,10107,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.643476852915118,8.46588327331914,0,29,1,114.6709262530996,0,1,2,2019,4,0,25,30,1,0,0,31.84364157419569,31.84364157419569,0,0,0,0,0,1,1,0,0,0,54.57,49.24,44.02,60.7,8.333333333333334,1,1,0,0,8,4,5,1,845.3333333333334,925311.8917657052,409269.3501077311,543121.9854835189,187069.7505287299,10719.02420506664 -4493,5583,10109,-9,10108,10107,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-941.5222253076793,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,4,5,1,845.3333333333334,925311.8917657052,409269.3501077311,543121.9854835189,187069.7505287299,10719.02420506664 -4493,5584,10110,-9,10108,10107,1,0,23,0,1,0,1,1,-9,0,4,7.630776666555257,7.746287710871234,0,0,0,-920.1026023055286,0,1,1,2019,13,1,35,35,1,1,1,5.377486074817589,5.377486074817589,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,459,92317.27757256848,0,0,0,549.6066890583481 -4493,5585,10111,-9,10108,10107,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-1141.339197008838,-9,1,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,1.623534540928956,0,38.04,58.33,-9,-9,5,1,1,0,0,2,4,1,1,876,32580.66358219908,0,0,0,447.5576729935996 -4493,5586,10112,-9,10108,10107,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-954.3609750083505,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.84,60.5,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,82,0,0,0,0,0 -4494,5587,10113,10114,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.533778258808992,8.551256028493412,0,32,-3,84.42088896672486,0,3,2,2019,7,0,43,85,1,0,0,13.13334574339474,13.13334574339474,0,0,0,0,0,0,0,0,3.401104333908999,0,57.16,56.15,55.53,51.55,8.333333333333334,1,1,0,0,13,9,4,1,613.5,596463.4861849044,75444.28909158579,427850.1755093196,56784.48852602211,1587.03533290415 -4494,5587,10114,10113,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,.1146733579714647,.1122775916169353,0,32,3,12.03855679956343,0,2,2,2019,9,0,20,36,1,0,0,.0010196369071174,.0010196369071174,0,0,0,0,0,0,0,0,0,0,55.53,51.55,57.16,56.15,6.666666666666667,1,1,0,0,13,9,4,1,613.5,596463.4861849044,75444.28909158579,427850.1755093196,56784.48852602211,1587.03533290415 -4495,5588,10115,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.131882628179527,8.506512458212645,0,0,0,-1047.461020672481,0,3,3,2019,17,6,37,38,1,6,0,12.0110313524835,12.0110313524835,0,0,0,0,0,0,0,0,4.798393908416698,0,36.21,32.22,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1214,456381.469092148,342473.4702040819,0,0,1284.313522672766 -4496,5589,10116,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,10.31407767745834,10.17084408422181,0,0,0,-915.7866838437725,0,2,2,2019,4,0,60,65,1,0,0,58.59680762816365,58.59680762816365,0,0,0,0,0,0,0,0,6.01351245373528,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,10,5,1,358,185054.0413969895,80811.14691710475,148755.4106056377,73941.93613969373,23561.48733871281 -4497,5590,10117,-9,-9,-9,1,1,66,0,0,0,3,3,-9,1,3,0,0,0,0,0,-966.7316957747627,0,3,3,2019,10,0,0,0,3,1,0,0,0,1,153.0723269929704,0,1402.215911375878,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,5,1,0,400,23299.66015085231,0,0,0,-130.225224964072 -4498,5591,10118,-9,10119,10121,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.891170555719,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,541,997426.5015885537,290902.4229402092,464894.3629025535,200360.2162637775,4402.122258482252 -4498,5591,10119,10121,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.385156228336607,8.5515028998253,5.615416052186935,13,8,-26.44310975038115,0,1,1,2019,15,5,25,20,1,5,0,27.22980381828491,27.22980381828491,0,0,0,0,0,1,1,0,6.844809217884531,0,30.27,37.43,48.77,60.16,6.666666666666667,1,1,0,0,9,9,5,1,541,997426.5015885537,290902.4229402092,464894.3629025535,200360.2162637775,4402.122258482252 -4498,5591,10120,-9,10119,10121,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.264942826945,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,541,997426.5015885537,290902.4229402092,464894.3629025535,200360.2162637775,4402.122258482252 -4498,5591,10121,10119,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.082085678991946,8.310729492486315,0,13,-8,-68.29336726874483,0,1,1,2019,9,0,50,50,1,0,0,11.35068498342623,11.35068498342623,0,0,0,0,0,1,1,0,0,0,48.77,60.16,30.27,37.43,8.333333333333334,1,1,0,0,11,9,5,1,541,997426.5015885537,290902.4229402092,464894.3629025535,200360.2162637775,4402.122258482252 -4499,5592,10122,10123,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.055002099164037,8.033353592647746,0,29,5,-12.25343886358833,0,1,1,2019,14,3,35,24,1,3,0,8.325700866215854,8.325700866215854,0,0,0,0,0,0,0,0,0,0,48.42,50.81,47.89,51.08,8.333333333333334,3,4,0,0,11,7,5,1,143,36935.81096688738,0,0,0,4277.078691757769 -4499,5592,10123,10122,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.04379183547109,8.936029689393434,0,29,-5,176.2828286583772,0,2,2,2019,10,0,40,40,1,0,0,25.9010604464203,25.9010604464203,0,0,0,0,0,0,0,0,2.902231184266549,0,47.89,51.08,48.42,50.81,8.333333333333334,1,1,0,0,11,7,5,1,143,36935.81096688738,0,0,0,4277.078691757769 -4499,5593,10124,-9,10122,10123,1,1,20,0,0,0,2,2,-9,0,5,0,6.549482615274222,6.219449155088425,0,0,-899.9476672609075,1,1,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,6.719512979887346,0,46.29,54.57,-9,-9,8.333333333333334,4,2,0,0,6,7,2,1,338,-148801.1854137221,45540.47501637394,0,0,1190.180005045989 -4500,5594,10125,-9,10126,10127,1,0,28,0,0,0,1,1,-9,0,5,8.338527276416203,8.26280250325898,0,0,0,-1124.330269111908,0,3,2,2019,15,3,44,44,1,3,1,11.85438414716149,11.85438414716149,0,0,0,0,0,0,0,0,0,0,35.4,62.01,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1703,-118371.376738588,0,0,0,2503.763904514064 -4500,5595,10126,10127,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.870796118048407,8.932692774766148,0,6,0,17.5682624912172,0,-9,-9,2019,12,1,48,54,1,1,0,14.77057065093264,14.77057065093264,0,0,0,0,0,0,0,0,0,0,48.81,59.91,40.44,53.32,6.666666666666667,1,1,0,0,10,9,5,1,1018,2632855.101476547,1926730.046729507,412796.1857061961,0,4635.864498609755 -4500,5595,10127,10126,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.755968025247928,8.925408216099457,0,6,0,72.08806886046682,0,-9,-9,2019,11,1,53,48,1,1,0,17.53909651406373,17.53909651406373,0,0,0,0,0,0,0,0,0,0,40.44,53.32,48.81,59.91,5,1,1,0,0,5,9,5,1,1018,2632855.101476547,1926730.046729507,412796.1857061961,0,4635.864498609755 -4500,5596,10128,-9,10126,10127,1,1,26,0,0,0,2,2,-9,0,3,8.303783671363064,8.13768398370544,0,0,0,-986.9069867679556,-9,2,2,2019,20,7,45,0,1,7,1,9.071379526625284,9.071379526625284,0,0,0,0,0,0,0,0,0,0,32.88,44.48,-9,-9,3.333333333333333,1,1,0,0,8,9,4,1,1593,16643.27733631234,49514.08291764669,0,0,1587.601126703386 -4501,5597,10129,10130,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.921680637225055,9.024595981750849,0,3,0,2.532082580944336,0,2,2,2019,15,5,50,70,1,5,0,18.98307407549346,18.98307407549346,0,0,0,0,0,0,0,0,0,0,34.63,45.12,46.67,55.57,3.333333333333333,1,1,0,0,10,9,5,1,829.5,352991.960489126,152929.6043144198,610388.5398183905,335945.483612355,4159.8105857378 -4501,5597,10130,10129,-9,-9,1,1,34,0,0,0,2,2,1,0,3,7.714681939237559,7.703609911889274,0,3,0,6.008753628439186,-9,-9,-9,2019,12,1,35,0,1,1,0,6.722699467333525,6.722699467333525,0,0,0,0,0,0,0,0,0,0,46.67,55.57,34.63,45.12,8.333333333333334,1,1,0,0,11,9,5,1,829.5,352991.960489126,152929.6043144198,610388.5398183905,335945.483612355,4159.8105857378 -4502,5598,10131,10132,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.095044943309357,8.05382973097532,4.728870314446638,30,8,99.16373713314209,0,-9,-9,2019,12,0,48,43,1,0,0,7.902168803279583,7.902168803279583,0,0,0,0,2,0,0,0,5.060134824616317,4.954275212923009,53.99,48.04,26.45,51.77,5,1,1,0,0,9,12,5,1,1995.5,217398.4971473492,68034.37391404052,189773.8019714059,27886.71610694582,2970.737427361807 -4502,5598,10132,10131,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.48447234709964,8.71472614838779,0,30,-8,29.05973189710375,0,3,3,2019,14,2,50,47,1,2,0,10.64447873094052,10.64447873094052,0,0,0,0,14.5,0,0,0,0,0,26.45,51.77,53.99,48.04,5,1,1,0,0,9,12,5,1,1995.5,217398.4971473492,68034.37391404052,189773.8019714059,27886.71610694582,2970.737427361807 -4502,5599,10133,-9,10132,10131,1,1,24,0,0,0,1,1,-9,0,3,7.993507706837287,8.131932273111346,0,0,0,-1126.124359626157,0,2,2,2019,8,0,40,42,1,0,1,8.564242799693675,8.564242799693675,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,882,-7582.501036174304,-16268.74087272585,111227.5794945124,96681.06482744214,1403.45135884551 -4503,5600,10134,10135,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,9.062263303974612,8.760366875885524,9,-3,-61.34020000041511,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.758405806267126,9.245526505523721,57.91,46.31,57.33,53.46,8.333333333333334,1,1,0,0,0,6,5,1,1060.5,1925667.661950233,827100.9995168047,411436.2513789446,0,6048.740693416551 -4503,5600,10135,10134,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.789600057512359,5.920449753069851,9,3,48.34820724552311,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.921605890071127,5.856546904861728,57.33,53.46,57.91,46.31,8.333333333333334,1,1,0,0,0,6,5,1,1060.5,1925667.661950233,827100.9995168047,411436.2513789446,0,6048.740693416551 -4504,5601,10136,10137,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,10.44775012631118,10.64963125210955,0,7,0,56.03659539802961,0,-9,-9,2019,10,1,60,72,1,1,0,61.96120796096427,61.96120796096427,0,0,0,0,0,0,0,0,3.744214803113271,0,52.43,55.57,58.15,52.91,8.333333333333334,1,1,0,0,10,5,5,1,191.5,1486693.220594703,609592.5903720325,166577.8546017331,0,18738.01534482175 -4504,5601,10137,10136,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,0,0,0,32,0,-111.5903296233539,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,2.390555163263808,0,58.15,52.91,52.43,55.57,10,1,1,0,0,5,5,5,1,191.5,1486693.220594703,609592.5903720325,166577.8546017331,0,18738.01534482175 -4504,5602,10138,-9,10137,10136,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.035404705202,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.132016922524893,0,48,59,-9,-9,7,1,1,0,0,0,5,2,1,1901,21782.21979212364,0,0,0,-414.3203519623773 -4505,5603,10139,-9,-9,-9,1,0,45,0,3,0,3,3,-9,0,3,7.103100671429682,7.262623144039717,0,0,0,-977.2375036782181,0,2,2,2019,11,0,16,16,1,0,0,8.57740016721417,8.57740016721417,0,0,0,0,2,1,1,0,0,0,36.64,49.28,-9,-9,1.666666666666667,1,1,0,0,8,12,2,0,528.5,156704.1455422131,30809.54572981747,0,0,2243.554488038332 -4505,5603,10140,-9,10139,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.9459227588335,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,528.5,156704.1455422131,30809.54572981747,0,0,2243.554488038332 -4505,5603,10141,-9,10139,-9,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-985.6161005491193,-9,3,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,2,1,1,0,0,0,36.37,57.89,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,528.5,156704.1455422131,30809.54572981747,0,0,2243.554488038332 -4505,5603,10142,-9,10139,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.8555233870867,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,12,2,0,528.5,156704.1455422131,30809.54572981747,0,0,2243.554488038332 -4506,5604,10143,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.7463313761899,7.958302793738986,0,0,0,-1080.983865478195,0,2,3,2019,9,0,45,40,1,0,0,5.960777963170385,5.960777963170385,0,0,0,0,0,1,1,0,0,0,57.12,47.12,-9,-9,6.666666666666667,1,1,0,0,8,5,3,0,626,20111.42084910591,0,100217.0739656774,0,1552.647409383186 -4507,5605,10144,10145,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,5.045762419539076,5.302929861617124,10,5,119.4650575011727,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.461638258144692,5.408476620993008,57.34,42.72,42.5,30.78,8.333333333333334,1,1,0,0,5,7,2,1,561.5,1015077.635550418,255199.0242848308,501134.0458133619,0,3545.597486223191 -4507,5605,10145,10144,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,10,-5,17.18682192414728,0,3,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,8.084190210017915,0,42.5,30.78,57.34,42.72,3.333333333333333,1,1,0,0,2,7,2,1,561.5,1015077.635550418,255199.0242848308,501134.0458133619,0,3545.597486223191 -4508,5606,10146,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.52273574855342,7.761286722869571,0,0,0,-1014.86276010027,0,-9,-9,2019,12,0,39,40,1,0,0,6.462629955576888,6.462629955576888,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,6.666666666666667,1,1,0,0,12,12,3,0,948,330438.2335798506,72138.98890091125,288427.5520140365,0,1387.981741911703 -4509,5607,10147,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,6.413436300004062,6.278881898489149,0,0,-1100.629199380627,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,6.206639328509348,0,39.38,22.52,-9,-9,6.666666666666667,2,3,1,0,0,8,2,0,157,91538.09569418314,-36342.83033824855,0,0,1177.745527461895 -4510,5608,10148,10149,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.360482500468894,8.611772652284232,0,2,1,56.43726431162501,0,-9,-9,2019,7,0,41,49,1,0,0,9.996034470026631,9.996034470026631,0,0,0,0,0,0,0,0,0,0,51.83,57.2,12.72,65.98999999999999,6.666666666666667,1,1,0,0,3,10,3,0,366.5,-21861.94933977181,-29948.98990867158,138336.0366610751,141876.8349732927,1194.774356967792 -4510,5608,10149,10148,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,2,-1,-28.79528572491848,0,-9,-9,2019,20,8,0,38,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,12.72,65.98999999999999,51.83,57.2,6.666666666666667,1,1,1,0,6,10,3,0,366.5,-21861.94933977181,-29948.98990867158,138336.0366610751,141876.8349732927,1194.774356967792 -4511,5609,10150,10151,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,6.023844533537931,5.744052207148463,29,3,-59.3331961977377,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.033672505865216,53.94,22.55,49.71,49.91,5,1,1,0,0,7,12,2,1,656,299650.1663328429,229429.6668026674,93453.37613540227,0,1547.926393928029 -4511,5609,10151,10150,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,40,-3,9.838053856104413,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,49.91,53.94,22.55,6.666666666666667,1,1,0,0,6,12,2,1,656,299650.1663328429,229429.6668026674,93453.37613540227,0,1547.926393928029 -4512,5610,10152,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.691262433194851,5.278704525595577,0,0,-991.4431407748941,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.808871501437351,55.69,51.72,-9,-9,10,1,1,0,0,3,11,2,1,801,108598.705470643,2328.613298957556,60703.20408227156,0,2050.592210937612 -4513,5611,10153,-9,10154,10156,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.041194090988,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,5,1,831.75,245969.4817149936,191752.728754621,172178.3065337173,108608.6950645569,4854.000771656691 -4513,5611,10154,10156,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.807911225226593,7.408279435296809,0,8,0,60.74746948090019,0,-9,-9,2019,13,2,38,1,1,2,0,6.954296344847714,6.954296344847714,0,0,0,0,0,1,1,0,0,0,46.16,58.62,54.79,55.86,8.333333333333334,1,1,0,0,11,1,5,1,831.75,245969.4817149936,191752.728754621,172178.3065337173,108608.6950645569,4854.000771656691 -4513,5611,10155,-9,10154,10156,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-855.3759138881343,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,5,1,831.75,245969.4817149936,191752.728754621,172178.3065337173,108608.6950645569,4854.000771656691 -4513,5611,10156,10154,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.921792008906408,9.104979262622983,0,8,0,31.86818263298067,0,-9,-9,2019,6,0,38,38,1,0,0,20.74404731319315,20.74404731319315,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.16,58.62,8.333333333333334,1,1,0,0,11,1,5,1,831.75,245969.4817149936,191752.728754621,172178.3065337173,108608.6950645569,4854.000771656691 -4514,5612,10157,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.474516864492774,8.878156292812172,0,0,0,-1096.454996574673,0,3,3,2019,13,1,37,0,1,1,0,17.03903329777171,17.03903329777171,0,0,0,0,0,1,1,0,0,0,31.78,52.66,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,621,1394421.385549642,694277.7133503555,317209.9549884599,0,1769.516431732764 -4514,5613,10158,-9,10157,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-872.2690487233613,1,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,0,8,1,0,377,217041.3914378909,0,0,0,463.5546545948346 -4515,5614,10159,10160,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.760094604232702,8.913292062337417,0,6,7,36.41067961646154,0,-9,-9,2019,0,0,35,40,1,0,0,19.19036034965217,19.19036034965217,0,0,0,0,0,0,0,0,4.861304821776286,0,57.06,57.76,53.19,50.36,10,4,5,0,0,7,8,5,1,1803.5,139451.4915115692,91099.86786740854,0,0,3534.450882145457 -4515,5614,10160,10159,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.8107625008291,7.713987084522723,0,6,-7,96.40582302723759,0,-9,-9,2019,7,0,39,35,1,0,0,7.534196326394801,7.534196326394801,0,0,0,0,0,0,0,0,0,0,53.19,50.36,57.06,57.76,10,2,3,0,0,5,8,5,1,1803.5,139451.4915115692,91099.86786740854,0,0,3534.450882145457 -4516,5615,10161,10162,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.023414976529354,7.886084137220922,39,6,27.01606812479155,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.17038505571914,7.738112073917607,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,8,3,1,562,1245810.773178986,120660.5747700885,894413.4267471426,0,2503.303617905441 -4516,5615,10162,10161,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.717190407111409,7.487645621538461,6.50543813846965,40,-6,-42.72786527762088,0,2,2,2019,7,0,18,23,1,0,0,5.330464083089841,5.330464083089841,0,0,0,0,0,1,1,0,5.289402465075701,6.464605460199509,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,8,3,1,562,1245810.773178986,120660.5747700885,894413.4267471426,0,2503.303617905441 -4517,5616,10163,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.082239520496461,9.339613371580569,0,0,0,-1079.223470642067,0,-9,-9,2019,13,2,45,53,1,2,0,24.22717543724706,24.22717543724706,0,0,0,0,0,0,0,0,4.076574905282006,0,27.75,67.05,-9,-9,3.333333333333333,1,1,0,0,9,8,5,0,1227,-102454.9385650033,-26566.65724872671,0,0,2246.765345279005 -4518,5617,10164,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.792891172833903,7.555609111434576,0,0,-1003.146092598455,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.130866441774301,7.682059454247069,38.63,63.11,-9,-9,6.666666666666667,1,1,0,0,4,8,3,1,821,1389080.850433877,177769.2767396605,633083.3831629233,0,1534.986900604214 -4518,5618,10165,-9,10164,-9,1,0,47,0,0,0,1,1,-9,0,5,7.313691552343958,7.321689844023839,0,5,-10,83.20769001845487,0,1,2,2019,11,2,6,8,1,2,0,31.57256441639016,31.57256441639016,0,0,0,0,0,1,1,0,7.563485074811781,0,50.52,55.4,52.19,54.61,6.666666666666667,1,1,0,0,9,8,4,1,537,129904.1076333993,0,0,0,1830.073774176206 -4518,5619,10166,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.47323875073033,8.361588542622545,0,5,10,146.290444218966,0,3,2,2019,4,1,65,20,1,1,0,10.32301985149578,10.32301985149578,0,0,0,0,0,1,1,0,7.746206180906825,0,52.19,54.61,50.52,55.4,6.666666666666667,1,1,0,0,8,8,4,1,387,-140750.775786849,14279.67391282645,0,0,2757.300576202186 -4519,5620,10167,-9,10168,-9,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1027.282197545331,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,2,0,843.5,147537.8920492887,79683.97153369084,0,0,1497.145212772966 -4519,5620,10168,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.431238955448839,6.860078638230144,0,0,0,-1035.944970064846,0,3,3,2019,8,0,29,19,1,0,0,5.27747684292058,5.27747684292058,0,0,0,0,0,1,1,0,0,0,50.91,49.93,-9,-9,6.666666666666667,1,1,0,0,5,1,2,0,843.5,147537.8920492887,79683.97153369084,0,0,1497.145212772966 -4519,5621,10169,-9,10168,-9,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-997.082592688933,-9,2,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,42.48,45.49,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,226,89550.60067380499,0,0,0,437.3039052450473 -4520,5622,10170,10171,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.993748897508105,8.986409392475585,0,20,-3,-110.1729595234052,0,2,2,2019,7,0,37,46,1,0,0,26.78300278954644,26.78300278954644,0,0,0,0,0,1,1,0,0,0,62.49,55.09,60.02,56.42,6.666666666666667,1,1,0,0,10,13,4,1,170,-51165.9991606985,-55703.14965598934,348627.1370357347,191350.5224571102,2628.463841570315 -4520,5622,10171,10170,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,0,0,0,20,3,25.98177143972417,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.49,55.09,6.666666666666667,1,1,0,0,1,13,4,1,170,-51165.9991606985,-55703.14965598934,348627.1370357347,191350.5224571102,2628.463841570315 -4521,5623,10172,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.973601746622629,7.823266762710794,0,0,0,-1051.551475038263,0,2,3,2019,12,3,38,38,1,3,0,7.772113472960299,7.772113472960299,0,0,0,0,0,1,1,0,0,0,44.36,56.72,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,691.5,194130.7278041341,9067.230920857313,159645.9875643762,66421.16289523122,1317.635409624069 -4521,5623,10173,-9,10172,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.5419144602563,-9,2,-9,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,15.88,65.75,-9,-9,5,1,1,0,1,2,2,4,1,691.5,194130.7278041341,9067.230920857313,159645.9875643762,66421.16289523122,1317.635409624069 -4522,5624,10174,10175,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.176711715024283,9.204531140866649,0,4,9,38.03383535236908,0,2,-9,2019,15,5,40,40,1,5,0,38.09462785346324,38.09462785346324,0,0,0,0,0,0,0,0,8.200385112830043,0,49.84,55.33,56.94,35.77,6.666666666666667,1,1,0,0,10,8,5,1,524.5,597245.5334171164,80230.28837422133,434620.7576589911,47139.54302628693,4359.186353224784 -4522,5624,10175,10174,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,0,0,0,4,0,64.35205410933382,0,-9,-9,2019,17,6,0,43,3,6,0,0,0,0,0,0,0,0,0,0,0,7.644121741297505,0,56.94,35.77,49.84,55.33,8.333333333333334,1,1,1,0,3,8,5,1,524.5,597245.5334171164,80230.28837422133,434620.7576589911,47139.54302628693,4359.186353224784 -4523,5625,10176,10177,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.036078396586756,7.626847580783297,6,15,32.98616209586093,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.96345395149618,64.52,50.23,67.34,37.81,10,1,1,0,0,6,7,3,1,556,705153.3637353256,436539.5071307484,254307.553555191,0,2292.543117002739 -4523,5625,10177,10176,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,6.403326718682335,6.366984558248617,6,-15,36.48430261777727,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,6.264670736506028,0,67.34,37.81,64.52,50.23,10,1,1,0,0,3,7,3,1,556,705153.3637353256,436539.5071307484,254307.553555191,0,2292.543117002739 -4524,5626,10178,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.398496041610941,7.693917714503276,6.175692832303138,0,0,-984.0444611520339,0,1,1,2019,5,0,20,20,1,0,0,7.295123517802328,7.295123517802328,0,0,0,0,0,1,1,0,6.324125004615768,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,905.5,-46735.81702589862,0,0,0,1736.876893096549 -4524,5626,10179,-9,10178,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.2078896020081,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,905.5,-46735.81702589862,0,0,0,1736.876893096549 -4525,5627,10180,10181,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.281995942320856,8.172897062068687,0,3,3,38.72768367806217,0,1,1,2019,15,4,39,29,1,4,0,11.31509039053073,11.31509039053073,0,0,0,0,0,0,0,0,0,0,49.43,37.85,54.1,59.11,6.666666666666667,1,1,0,0,9,10,4,0,2552.5,10384.35487062224,-5261.332231306584,275235.2182341943,224118.3606667509,2662.797164911705 -4525,5627,10181,10180,-9,-9,1,0,28,0,0,0,1,1,1,0,5,8.123917358639117,8.329575853520886,0,3,-3,47.53027388006203,-9,-9,-9,2019,12,0,37,0,1,0,0,10.19642244091758,10.19642244091758,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.43,37.85,8.333333333333334,1,1,0,0,8,10,4,0,2552.5,10384.35487062224,-5261.332231306584,275235.2182341943,224118.3606667509,2662.797164911705 -4526,5628,10182,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.525339952695056,9.074092402907928,0,0,0,-946.0071067327718,0,1,1,2019,14,2,48,52,1,2,0,12.56225970585468,12.56225970585468,0,0,0,0,0,0,0,0,0,0,43.71,51.68,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,115,125425.0139530683,-52253.76866211098,101142.028772897,31086.26101322368,2035.297081334837 -4527,5629,10183,10185,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.007959902125272,7.753322771142997,0,13,9,43.86848981450139,0,2,2,2019,7,0,37,40,1,0,0,9.727476271744354,9.727476271744354,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.34,62.12,8.333333333333334,1,1,0,1,9,4,3,1,278.3333333333333,291552.2912285639,331919.2849380259,0,0,1983.603147351062 -4527,5629,10184,-9,10185,10183,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.759234423747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,278.3333333333333,291552.2912285639,331919.2849380259,0,0,1983.603147351062 -4527,5629,10185,10183,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.761199047199578,7.543530032558459,0,11,0,75.31148111079462,0,2,3,2019,14,4,21,21,1,4,0,10.75304830522949,10.75304830522949,0,0,0,0,2,1,1,0,0,0,38.34,62.12,46.5,58.26,5,1,1,0,1,11,4,3,1,278.3333333333333,291552.2912285639,331919.2849380259,0,0,1983.603147351062 -4528,5630,10186,10187,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.454939714340566,6.517400121222719,3,11,-67.89251280307867,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.310759068309402,6.421519971034027,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,10,3,1,774,907446.699677394,463929.9766379305,413968.5406433364,-601.2542433938115,1245.167082658142 -4528,5630,10187,10186,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.091574513808051,7.135712107065865,0,3,-11,-38.47819262122589,0,3,3,2019,7,0,21,21,1,0,0,6.647759934275675,6.647759934275675,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,10,3,1,774,907446.699677394,463929.9766379305,413968.5406433364,-601.2542433938115,1245.167082658142 -4529,5631,10188,10190,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.776525416053042,7.701269862177878,0,2,0,-9.382916679043444,0,-9,-9,2019,11,0,24,24,1,2,0,9.852606617475884,9.852606617475884,0,0,0,0,0,0,0,0,0,0,48,57,43.44,58.7,7,1,1,0,1,7,12,5,1,647.75,219915.5969588375,119739.7774669127,156629.6964633508,107414.7562079004,4023.597257093134 -4529,5631,10189,-9,10188,10190,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.9216231878812,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,647.75,219915.5969588375,119739.7774669127,156629.6964633508,107414.7562079004,4023.597257093134 -4529,5631,10190,10188,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.945155102182165,8.891843225300759,0,2,9,-111.3114035544317,0,2,2,2019,14,2,10,10,1,2,0,66.24489623404084,66.24489623404084,0,0,0,0,0,0,0,0,2.050867468990381,0,43.44,58.7,48,57,8.333333333333334,1,1,0,0,9,12,5,1,647.75,219915.5969588375,119739.7774669127,156629.6964633508,107414.7562079004,4023.597257093134 -4529,5631,10191,-9,10188,10190,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.07176568459,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,647.75,219915.5969588375,119739.7774669127,156629.6964633508,107414.7562079004,4023.597257093134 -4530,5632,10192,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.057846138779579,8.413932649178374,0,0,0,-1177.183835117106,0,-9,-9,2019,6,0,42,37,1,0,0,10.98921091116992,10.98921091116992,0,0,0,0,2,0,0,0,0,0,63.26,42.53,-9,-9,8.333333333333334,3,4,0,0,12,4,4,0,732,-138536.2096163939,-22515.70228921993,0,0,1370.149457755196 -4531,5633,10193,10196,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.7376944836042,8.981846330401403,6.235112264654765,6,15,-70.42229991185388,0,2,3,2019,8,0,38,39,1,0,0,16.14231311479064,16.14231311479064,0,0,0,0,0,1,1,0,7.064972765656032,0,58.13,52.93,31.77,61.1,8.333333333333334,1,1,0,0,10,6,5,1,996.4,2581798.815187848,1763936.806897279,581906.7565176372,0,4642.317090831008 -4531,5633,10194,-9,10196,10193,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.619857023747,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,996.4,2581798.815187848,1763936.806897279,581906.7565176372,0,4642.317090831008 -4531,5633,10195,-9,10196,10193,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.669429702357,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,996.4,2581798.815187848,1763936.806897279,581906.7565176372,0,4642.317090831008 -4531,5633,10196,10193,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,8.497846481999286,8.630644832901686,0,6,-15,-62.51576174786075,0,-9,-9,2019,16,4,60,53,1,4,0,9.390889486137675,9.390889486137675,0,0,0,0,0,1,1,0,0,0,31.77,61.1,58.13,52.93,8.333333333333334,1,1,0,0,5,6,5,1,996.4,2581798.815187848,1763936.806897279,581906.7565176372,0,4642.317090831008 -4531,5633,10197,-9,10196,10193,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.1150081455246,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,996.4,2581798.815187848,1763936.806897279,581906.7565176372,0,4642.317090831008 -4532,5634,10198,10199,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.331603851024024,8.009944201708917,0,6,-3,-37.85015431797559,0,2,2,2019,7,0,43,40,1,0,0,8.909810037341824,8.909810037341824,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,5,4,1,570.5,-113103.7839502307,34392.70005820946,0,0,2609.62464986106 -4532,5634,10199,10198,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.028478153396925,7.761232619305217,0,6,3,-78.53875555350679,0,-9,-9,2019,7,0,50,47,1,0,0,7.345244035754853,7.345244035754853,0,0,0,0,0,0,0,0,1.603833152067149,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,570.5,-113103.7839502307,34392.70005820946,0,0,2609.62464986106 -4533,5635,10200,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.265133231081631,8.675516061108802,0,0,0,-992.6022345342041,0,2,2,2019,7,0,45,45,1,0,0,9.895606007863032,9.895606007863032,0,0,0,0,0,0,0,0,4.885791988893994,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,541,-123276.5990387155,-66777.76944214577,0,0,1305.248839498478 -4533,5636,10201,-9,10200,-9,1,1,26,0,0,0,2,2,-9,0,3,7.520397556234204,7.789682692522734,0,0,0,-977.4510132101116,-9,2,-9,2019,12,1,39,0,1,1,1,7.221325305184872,7.221325305184872,0,0,0,0,0,0,0,0,0,0,41.13,58.45,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,127,-95545.55988990098,0,0,0,871.038436900229 -4534,5637,10202,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.026064159404315,7.20459567066091,0,0,-1047.817835050421,0,-9,-9,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.201795327803654,15.35,57.52,-9,-9,10,1,1,0,0,0,6,2,1,1504,568350.2166480614,163978.9848176985,276688.0833457547,0,933.3215016862212 -4535,5638,10203,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,8.715412796635091,8.431144870417684,0,0,-975.5464771869318,0,1,1,2019,9,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,4.425724609206092,8.743409832587457,48.24,41.22,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,572,691493.4464041941,464026.6461305184,255652.442788923,83318.93979570711,2168.766823621736 -4536,5639,10204,10205,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.263332363783336,8.401365895358319,3.179442762124998,9,2,9.728568705941738,0,3,3,2019,8,0,38,38,1,0,0,11.63183909964955,11.63183909964955,0,0,0,2.22367211152479,7,1,1,0,5.697248206444117,0,58.32,50.22,46.16,58.62,6.666666666666667,1,1,0,0,10,10,5,1,404,1036571.956583295,293816.7175886281,763866.9831472719,232025.0527151219,3230.373206452098 -4536,5639,10205,10204,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.495423297281362,8.507705503190587,7.768163296902112,9,-2,-13.84504703760281,0,2,2,2019,10,0,30,30,1,0,0,6.781839181248997,6.781839181248997,0,0,0,0,42,1,1,0,8.479163674849907,0,46.16,58.62,58.32,50.22,8.333333333333334,1,1,0,0,9,10,5,1,404,1036571.956583295,293816.7175886281,763866.9831472719,232025.0527151219,3230.373206452098 -4536,5640,10206,-9,-9,-9,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-940.2604387409395,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,10,1,1,783,27488.56811602876,0,0,0,952.6663641602804 -4537,5641,10207,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.963295834478981,5.825289684954786,0,0,-975.2093477827243,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.784043243123642,0,50.34,46.94,-9,-9,5,1,1,0,0,0,2,2,1,999,400875.3047366238,187396.8898876611,93075.67478921475,0,432.6777225712833 -4538,5642,10208,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.817228071271456,5.448240026805231,0,0,-1022.683513408529,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.024560121074355,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,365,121173.2772074014,80887.77947085346,193057.9740720056,0,549.005583469125 -4539,5643,10209,10210,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.290798980163295,8.505585049185058,0,4,4,149.6309627238673,0,-9,-9,2019,8,0,42,40,1,0,0,10.63920766230035,10.63920766230035,0,0,0,0,0,0,0,0,0,0,43.38,60.06,28.16,65.32000000000001,6.666666666666667,1,1,0,0,10,12,5,0,522.5,292389.0370983808,50456.88377355764,327457.644917225,190960.661613518,4226.343450185053 -4539,5643,10210,10209,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.880983048366511,8.905892209911194,0,4,-4,-47.76188492279739,0,2,2,2019,19,7,92,49,1,7,0,8.234261506133926,8.234261506133926,0,0,0,0,0,0,0,0,0,0,28.16,65.32000000000001,43.38,60.06,6.666666666666667,1,1,0,0,10,12,5,0,522.5,292389.0370983808,50456.88377355764,327457.644917225,190960.661613518,4226.343450185053 -4540,5644,10211,10212,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.940227563503345,6.655366643808736,0,32,-5,128.9274301543213,0,2,2,2019,16,4,15,15,1,4,0,7.725384028261538,7.725384028261538,0,0,0,0,2,0,0,0,7.493466285330213,0,41.62,52.55,48.45,49.46,5,1,1,0,0,11,5,2,1,676.5,229448.5723760463,173916.2592615223,267589.4783133965,93224.94680040213,5179.983245461488 -4540,5644,10212,10211,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,.8655731939087516,.5297562093800752,0,32,5,-8.598785470080054,0,2,2,2019,12,0,45,45,1,0,0,.0043355629327762,.0043355629327762,0,0,0,0,0,0,0,0,9.109984923198033,0,48.45,49.46,41.62,52.55,8.333333333333334,1,1,0,0,11,5,2,1,676.5,229448.5723760463,173916.2592615223,267589.4783133965,93224.94680040213,5179.983245461488 -4541,5645,10213,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-846.1357737336124,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,5,0,0,0,8,1,0,350,-69641.00050147224,0,0,0,2293.169901416269 -4542,5646,10214,-9,10217,10215,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.319698409312,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,1022.5,-22658.79722651899,0,0,0,1789.401826529189 -4542,5646,10215,10217,-9,-9,1,1,37,1,2,0,2,2,-9,1,2,0,0,0,5,3,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,35.9,50.32,49.63,54.22,5,1,1,1,0,0,7,1,0,1022.5,-22658.79722651899,0,0,0,1789.401826529189 -4542,5646,10216,-9,10217,10215,1,0,15,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.309054662529,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,1,0,1022.5,-22658.79722651899,0,0,0,1789.401826529189 -4542,5646,10217,10215,-9,-9,1,0,34,1,2,0,3,3,-9,0,3,0,0,0,5,-3,0,0,2,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,35.9,50.32,8.333333333333334,1,1,0,0,0,7,1,0,1022.5,-22658.79722651899,0,0,0,1789.401826529189 -4543,5647,10218,10220,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.283169131441336,7.31514313721369,0,6,-5,11.17199661024761,0,2,2,2019,15,3,19,19,1,3,0,12.82885362682841,12.82885362682841,0,0,0,0,0,1,1,0,0,0,50.6,51,50.34,56.4,6.666666666666667,1,1,0,0,8,5,3,1,405.3333333333333,648131.6626794796,191639.2321765751,368463.3193873956,43391.31421992333,2208.871397173392 -4543,5647,10219,-9,10218,10220,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-926.7952264093776,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,45.9,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,405.3333333333333,648131.6626794796,191639.2321765751,368463.3193873956,43391.31421992333,2208.871397173392 -4543,5647,10220,10218,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,7.930930368043049,7.985996606404878,0,6,5,69.0069185819321,0,3,2,2019,12,0,45,39,1,0,0,9.740259758795416,9.740259758795416,0,0,0,0,2,1,1,0,4.082947165569417,0,50.34,56.4,50.6,51,3.333333333333333,1,1,0,0,9,5,3,1,405.3333333333333,648131.6626794796,191639.2321765751,368463.3193873956,43391.31421992333,2208.871397173392 -4544,5648,10221,10223,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,0,0,0,25,-1,-26.08966217876405,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,56.47,59.4,8.333333333333334,1,1,0,0,2,12,5,1,1791.333333333333,1341463.054988837,628586.2012437191,652658.8051619586,250057.47714078,7263.014892320396 -4544,5648,10222,-9,10221,10223,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1000.73243152829,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,12,5,1,1791.333333333333,1341463.054988837,628586.2012437191,652658.8051619586,250057.47714078,7263.014892320396 -4544,5648,10223,10221,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,9.938044296694864,9.658870625182697,0,26,1,16.84138724485801,0,-9,-9,2019,6,0,50,50,1,0,0,33.6706977975091,33.6706977975091,0,0,0,0,0,0,0,0,0,0,56.47,59.4,35.8,59.5,8.333333333333334,1,1,0,0,12,12,5,1,1791.333333333333,1341463.054988837,628586.2012437191,652658.8051619586,250057.47714078,7263.014892320396 -4544,5649,10224,-9,10221,10223,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1108.346438540509,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.86,60.27,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,665,-140153.8525902518,0,0,0,0 -4545,5650,10225,10226,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,9.316171482248377,9.394734653083217,0,32,5,-14.02325592038981,0,2,2,2019,11,1,45,45,1,1,0,29.25874415421238,29.25874415421238,1,0,0,0,0,0,0,0,3.953157180948403,0,50.33,35.3,49.44,56.93,6.666666666666667,1,1,0,0,10,6,5,1,848.5,1056652.276542156,776819.8726120286,242792.7125819473,0,7211.341938146238 -4545,5650,10226,10225,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.969885017726893,8.06986812264366,0,32,-5,-33.66043917179929,0,2,2,2019,8,0,38,38,1,0,0,10.39485442999168,10.39485442999168,0,0,0,0,0,0,0,0,1.259592472333459,0,49.44,56.93,50.33,35.3,8.333333333333334,1,1,0,0,12,6,5,1,848.5,1056652.276542156,776819.8726120286,242792.7125819473,0,7211.341938146238 -4546,5651,10227,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,9.385278444349877,9.428363230643791,5.199063911936268,0,0,-918.5623551771461,0,3,2,2019,9,0,1,1,1,0,0,1472.302257308158,1472.302257308158,0,0,0,0,0,1,1,0,5.935303307895005,5.420535654730727,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,783,627528.0544396153,337595.7729386569,63317.45183309048,0,4728.31172834456 -4547,5652,10228,10229,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.369260487339838,8.205461715576719,20,6,-119.1070891294913,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.220727745696688,8.33905035516441,57.16,56.15,56.78,44.13,10,1,1,0,0,2,11,4,1,431,1831539.409190014,959412.6330405305,623915.63967403,0,3633.330650898738 -4547,5652,10229,10228,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.28465463643693,7.344199116641647,20,-6,35.09188206408984,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.394139233612181,56.78,44.13,57.16,56.15,10,1,1,0,0,3,11,4,1,431,1831539.409190014,959412.6330405305,623915.63967403,0,3633.330650898738 -4548,5653,10230,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.255437828825293,8.464991452770764,6.354566288573128,0,0,-856.3269515391662,0,-9,-9,2019,12,0,32,32,1,0,0,9.140342498867543,9.140342498867543,0,0,0,0,0,1,1,0,6.662767962943866,0,52,54.51,-9,-9,5,1,1,0,0,9,1,3,1,1745.666666666667,-21285.8593693128,23911.8424194058,104882.9811536215,79476.12165387397,2585.194586668041 -4548,5653,10231,-9,10230,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1038.915901674452,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,10,1,1,0,0,0,1,3,1,1745.666666666667,-21285.8593693128,23911.8424194058,104882.9811536215,79476.12165387397,2585.194586668041 -4548,5653,10232,-9,10230,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.097813079437,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,1745.666666666667,-21285.8593693128,23911.8424194058,104882.9811536215,79476.12165387397,2585.194586668041 -4549,5654,10233,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1012.065737454794,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,39.39,37.66,-9,-9,1.666666666666667,1,1,1,1,8,4,1,0,402,189513.8899216101,0,0,0,179.2106557938093 -4549,5655,10234,-9,10233,-9,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-994.255939906417,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,1,1,0,0,3,4,1,0,174,-208024.8465929254,0,0,0,0 -4549,5656,10235,-9,10233,-9,1,1,19,0,0,0,2,2,1,0,4,7.4821857312324,7.448471873693582,0,0,0,-947.1892541938361,-9,2,-9,2019,9,0,30,0,1,0,1,5.96113101404285,5.96113101404285,0,0,0,0,0,1,0,1,.5635415505991076,0,48,59,-9,-9,10,1,1,0,0,2,4,3,0,506,76713.46476445186,0,0,0,674.6991204504443 -4550,5657,10236,-9,10238,10239,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.7117315895964,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,837.5,859934.2218076556,465194.2611316572,418548.2542540039,79974.54180297282,3756.94572874018 -4550,5657,10237,-9,10238,10239,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.9660881560432,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,837.5,859934.2218076556,465194.2611316572,418548.2542540039,79974.54180297282,3756.94572874018 -4550,5657,10238,10239,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.014873765306019,9.118107567596891,0,9,4,-159.9738301636651,0,3,3,2019,7,0,51,49,1,0,0,21.49405450951343,21.49405450951343,0,0,0,0,0,1,1,0,0,0,56.33,51.02,51.94,55.88,1.666666666666667,1,1,0,0,11,5,5,1,837.5,859934.2218076556,465194.2611316572,418548.2542540039,79974.54180297282,3756.94572874018 -4550,5657,10239,10238,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.875287995251178,7.892371209236426,0,9,-4,100.3861368125984,0,3,3,2019,9,0,35,35,1,0,0,7.934203547089544,7.934203547089544,0,0,0,0,0,1,1,0,0,0,51.94,55.88,56.33,51.02,8.333333333333334,1,1,0,0,11,5,5,1,837.5,859934.2218076556,465194.2611316572,418548.2542540039,79974.54180297282,3756.94572874018 -4551,5658,10240,10241,-9,-9,1,1,35,0,1,0,1,1,-9,0,2,9.408037010586744,9.460317345579215,0,2,4,56.86700801563707,0,-9,-9,2019,20,7,40,41,1,7,0,33.92843017072566,33.92843017072566,0,0,0,0,0,0,0,0,7.602736010261796,0,20.31,45.23,56.35,51.16,1.666666666666667,2,3,0,0,5,8,5,1,474,274125.5727878911,81766.36993988711,222661.2996561367,107755.7871698542,5660.6663479972 -4551,5658,10241,10240,-9,-9,1,0,31,0,1,0,1,1,-9,0,3,8.193888539239058,7.880693837323853,0,2,-4,63.11605807117637,0,-9,-9,2019,9,0,36,32,1,0,0,13.57563494100882,13.57563494100882,0,0,0,0,0,0,0,0,0,0,56.35,51.16,20.31,45.23,6.666666666666667,2,3,0,0,3,8,5,1,474,274125.5727878911,81766.36993988711,222661.2996561367,107755.7871698542,5660.6663479972 -4551,5658,10242,-9,10241,10240,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.642063094626,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,474,274125.5727878911,81766.36993988711,222661.2996561367,107755.7871698542,5660.6663479972 -4552,5659,10243,10244,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.184621303344567,9.226618784815916,0,36,-3,-30.99788364077151,0,2,1,2019,4,0,47,45,1,0,0,26.16156934218155,26.16156934218155,0,0,0,0,2,0,0,0,0,0,60.12,54.8,52,54.51,8.333333333333334,1,1,0,0,8,10,5,1,1001.5,1586230.876629033,1349357.841578349,340203.7336648959,125952.4889731012,4128.839203383634 -4552,5659,10244,10243,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.271081322985999,7.031046446087142,34,3,-105.3122291349229,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.76570318186089,52,54.51,60.12,54.8,8.333333333333334,1,1,0,0,9,10,5,1,1001.5,1586230.876629033,1349357.841578349,340203.7336648959,125952.4889731012,4128.839203383634 -4552,5660,10245,-9,10244,10243,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.302159421038,0,2,2,2019,11,0,0,37,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,1,0,0,10,1,1,704,-31915.29118256591,0,0,0,0 -4553,5661,10246,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.703572316831124,7.026433610163338,0,0,-1043.442513397823,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.784572729409624,6.831289136049254,46.73,57.01,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1766,-55208.01053252287,205149.5589473813,0,0,731.8116572429715 -4554,5662,10247,10248,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,6.787461782885412,6.525666138573415,0,3,2,-6.665383469952907,0,-9,-9,2019,0,0,40,40,1,0,0,2.378779488192517,2.378779488192517,0,0,0,0,0,0,0,0,0,0,66.34,49.42,62.49,55.09,8.333333333333334,2,3,0,0,7,9,2,1,1519.5,432206.1829485765,35302.43378637441,308961.4037790591,0,-79.01422694755172 -4554,5662,10248,10247,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,3,-2,66.85682571274208,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,66.34,49.42,10,2,3,1,0,0,9,2,1,1519.5,432206.1829485765,35302.43378637441,308961.4037790591,0,-79.01422694755172 -4555,5663,10249,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.110263988698445,7.279144479248017,0,0,-1116.757562650116,0,3,1,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.444685488088788,7.222175348320392,52,47,-9,-9,7,1,1,0,0,11,6,3,1,397,542898.3249294501,145502.5178938124,162535.6855911978,0,943.1558803700923 -4556,5664,10250,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.385047971477018,8.082911143531465,0,0,0,-944.7603205504046,0,2,2,2019,13,1,44,50,1,1,0,9.296620162341075,9.296620162341075,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,13,7,5,1,94,570142.018546469,104510.1633861606,417794.4062406193,176817.158985608,1649.978624737688 -4557,5665,10251,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.341006653611349,6.968268198772336,0,0,-948.7866584620913,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,7.177944480172271,59.21,43.05,-9,-9,5,1,1,0,0,1,2,2,1,548,856974.0548522968,557369.0966272416,42242.39933683908,0,557.7979547447442 -4558,5666,10252,-9,10254,10253,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-977.0756404736617,-9,3,3,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,33.03,59.54,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,541,26758.76820107243,0,0,0,174.04365646683 -4558,5667,10253,10254,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,7,2,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.28,31.75,19.01,22.64,6.666666666666667,1,1,0,0,0,11,1,0,785.5,62169.34384320686,34197.10625210982,0,0,1115.748274309951 -4558,5667,10254,10253,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,7,-2,0,-9,-9,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,19.01,22.64,46.28,31.75,0,1,1,0,1,0,11,1,0,785.5,62169.34384320686,34197.10625210982,0,0,1115.748274309951 -4559,5668,10255,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1059.80169599719,0,3,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.13,35.65,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,779.3333333333334,47584.23379176733,0,0,0,714.6785062610785 -4559,5668,10256,-9,10255,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.777394647668,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,779.3333333333334,47584.23379176733,0,0,0,714.6785062610785 -4559,5668,10257,-9,10255,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.228199121993,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,779.3333333333334,47584.23379176733,0,0,0,714.6785062610785 -4560,5669,10258,-9,10260,10259,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1066.157987229584,1,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,5,1,1,0,0,1,12,5,1,833,518331.4949744974,304163.4309125489,337588.2867165477,99775.11421938099,4901.203483447579 -4560,5669,10259,10260,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,9.170872842401472,9.246176990291364,0,8,3,131.447473590263,0,2,2,2019,9,0,47,46,1,0,0,26.71462206476666,26.71462206476666,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,0,1,1,0,0,9,12,5,1,833,518331.4949744974,304163.4309125489,337588.2867165477,99775.11421938099,4901.203483447579 -4560,5669,10260,10259,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.152239535201868,7.984646003128783,0,8,-3,-12.97404777865642,0,2,2,2019,12,0,20,21,1,0,0,20.20736128780458,20.20736128780458,0,0,0,0,0,0,0,0,1.383107364159438,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,833,518331.4949744974,304163.4309125489,337588.2867165477,99775.11421938099,4901.203483447579 -4560,5669,10261,-9,10260,10259,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1013.603851553599,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,833,518331.4949744974,304163.4309125489,337588.2867165477,99775.11421938099,4901.203483447579 -4561,5670,10262,-9,10264,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.557407831986,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,672.75,-18085.67613229084,34397.424957289,0,0,2077.561254211843 -4561,5670,10263,-9,10264,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.454221748429,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,672.75,-18085.67613229084,34397.424957289,0,0,2077.561254211843 -4561,5670,10264,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.437778904659809,7.009892070719193,0,0,0,-872.5327133121273,-9,3,2,2019,11,1,22,0,1,1,0,7.611327003516988,7.611327003516988,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,672.75,-18085.67613229084,34397.424957289,0,0,2077.561254211843 -4561,5670,10265,-9,10264,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-888.8359135600394,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,672.75,-18085.67613229084,34397.424957289,0,0,2077.561254211843 -4562,5671,10266,10267,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.013952793874022,8.188181306922424,9,13,-43.54250456713825,0,2,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,5.680608824305147,8.045087175355052,36.37,60.23,52.07,27.6,8.333333333333334,1,1,0,0,2,12,5,1,791,1610763.360394842,791063.8362486232,396568.6993489512,0,5096.77778360001 -4562,5671,10267,10266,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,9.102652178644675,9.206147182150861,0,9,-13,-97.90876592939026,0,3,3,2019,22,10,46,45,1,10,0,20.54793184073266,20.54793184073266,0,0,0,0,0,1,1,0,4.83105563631513,0,52.07,27.6,36.37,60.23,3.333333333333333,1,1,0,0,10,12,5,1,791,1610763.360394842,791063.8362486232,396568.6993489512,0,5096.77778360001 -4563,5672,10268,10269,-9,-9,1,0,39,0,0,0,2,2,-9,1,2,6.595104375397133,6.791412291002618,0,4,9,85.34056062693152,0,3,3,2019,26,10,25,25,1,10,0,3.25264720041169,3.25264720041169,0,0,0,0,0,0,0,0,7.11519428921836,0,25.06,37.44,21.44,55.1,1.666666666666667,1,1,0,1,4,10,2,0,314,308812.4923422461,-63284.74705540365,214571.1246753033,98292.91726563321,1113.153894627834 -4563,5672,10269,10268,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,6.777643807991988,6.621982350970496,4.35419745269204,4,0,-92.72572222561266,0,3,3,2019,21,7,6,10,1,7,0,16.90213020687684,16.90213020687684,0,0,0,0,0,0,0,0,4.129545422298833,0,21.44,55.1,25.06,37.44,3.333333333333333,1,1,0,1,4,10,2,0,314,308812.4923422461,-63284.74705540365,214571.1246753033,98292.91726563321,1113.153894627834 -4563,5673,10270,-9,10268,-9,1,1,18,0,0,0,2,2,1,0,5,7.823586891901451,7.856561934554273,0,0,0,-945.271828260406,-9,2,-9,2019,27,10,37,0,1,10,1,7.390368874884484,7.390368874884484,0,0,0,0,0,0,0,0,0,0,29.49,69.22,-9,-9,1.666666666666667,1,1,0,0,1,10,3,0,356,-80995.09982833732,0,0,0,699.3072374747143 -4564,5674,10271,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1050.352454701671,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,0,11,1,0,802.3333333333334,30096.9616446802,0,0,0,1251.689525797374 -4564,5674,10272,-9,10271,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.6219449736748,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,802.3333333333334,30096.9616446802,0,0,0,1251.689525797374 -4564,5674,10273,-9,10271,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.9471351140265,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,802.3333333333334,30096.9616446802,0,0,0,1251.689525797374 -4565,5675,10274,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.793161084123358,7.03671755445573,0,0,-1008.461111661441,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.089313015703442,6.941803445716099,52,45,-9,-9,8,1,1,0,0,0,8,2,1,570,484364.7274543004,68564.86148881317,281865.4278346073,0,1414.92249785442 -4566,5676,10275,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.638390615011294,7.907359349010572,0,2,-3,-94.03224537430191,0,2,2,2019,10,2,45,40,1,2,0,6.931726879698461,6.931726879698461,0,0,0,0,0,0,0,0,0,0,46.8,57.03,39.65,42.5,8.333333333333334,1,1,0,0,9,6,4,0,275,101914.7666285943,0,0,0,1500.522076812928 -4566,5677,10276,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.055224225519764,7.908917054506055,0,2,3,16.65308678608449,0,-9,-9,2019,15,4,38,15,1,4,0,9.556953985184103,9.556953985184103,0,0,0,0,0,0,0,0,0,0,39.65,42.5,46.8,57.03,5,1,1,0,0,3,6,4,0,1154,-60872.26759892018,0,0,0,1475.680626289805 -4567,5678,10277,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.274789666916137,6.570045133631221,0,0,-1041.347508823896,0,2,3,2019,13,2,0,0,4,2,0,0,0,1,3.475376953508451,0,27.06042112728946,0,1,1,0,5.021504345775409,6.47337638150295,53.92,30.97,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,271,171704.6049306546,53348.35062875791,194069.1021631666,0,700.3497124993567 -4568,5679,10278,10279,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.449619098574852,8.057646515881954,0,1,-1,33.47251927173816,-9,-9,-9,2019,6,0,54,0,1,0,0,7.464606990026453,7.464606990026453,0,0,0,0,0,0,0,0,0,0,46.61,56.93,51.14,60.45,8.333333333333334,1,1,0,0,1,4,5,0,263.5,-56570.69160826881,36097.67415084494,162117.9097327122,115282.5091284623,3243.180465438846 -4568,5679,10279,10278,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.464514781972783,8.54958883267453,0,1,1,62.56953472115541,-9,1,1,2019,12,3,48,0,1,3,0,12.9943845135576,12.9943845135576,0,0,0,0,0,0,0,0,0,0,51.14,60.45,46.61,56.93,8.333333333333334,1,1,0,0,1,4,5,0,263.5,-56570.69160826881,36097.67415084494,162117.9097327122,115282.5091284623,3243.180465438846 -4569,5680,10280,10282,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.284231872983252,8.902669260472138,0,15,0,-30.30450231943451,0,3,1,2019,6,0,35,35,1,0,0,22.99549943998119,22.99549943998119,0,0,0,0,2,1,1,0,0,0,57.16,56.15,21.58,52.16,8.333333333333334,2,3,0,0,11,8,5,1,533.25,735225.7167771738,403471.4455191714,632172.4700741294,203709.9272948041,5558.584815561358 -4569,5680,10281,-9,10282,10280,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.0371542542437,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,533.25,735225.7167771738,403471.4455191714,632172.4700741294,203709.9272948041,5558.584815561358 -4569,5680,10282,10280,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.673835058935522,8.931266922890558,0,15,0,54.55668257212631,0,2,2,2019,14,2,35,35,1,2,0,16.64119614427045,16.64119614427045,0,0,0,0,0,1,1,0,0,0,21.58,52.16,57.16,56.15,6.666666666666667,2,3,0,0,10,8,5,1,533.25,735225.7167771738,403471.4455191714,632172.4700741294,203709.9272948041,5558.584815561358 -4569,5680,10283,-9,10282,10280,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.753722775242,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,533.25,735225.7167771738,403471.4455191714,632172.4700741294,203709.9272948041,5558.584815561358 -4570,5681,10284,10285,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.438332987761183,7.379974155294946,10,-1,58.19579108058044,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,.0835840925709643,2,1,1,0,4.125539214054697,7.222659861491757,57.16,56.15,48.65,35.87,10,1,1,0,0,0,2,2,1,946.5,419105.0255699402,216654.5927179888,162800.8175014057,0,1589.091466696476 -4570,5681,10285,10284,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,10,1,79.00309105177307,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.65,35.87,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,946.5,419105.0255699402,216654.5927179888,162800.8175014057,0,1589.091466696476 -4570,5682,10286,-9,10285,10284,1,1,54,0,0,0,2,2,-9,0,4,7.867894572196939,7.742664917303333,0,0,0,-1106.815202485088,0,2,3,2019,11,1,37,39,1,1,0,6.875343304405216,6.875343304405216,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,5,1,1,0,0,11,2,3,1,654,-51871.95560497821,78845.4130359429,0,0,1016.837212504207 -4571,5683,10287,10288,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.085626487563948,6.875825112277859,0,1,-12,-6.049959282785653,-9,2,1,2019,12,1,20,0,1,1,0,6.521011809084024,6.521011809084024,0,0,0,0,0,1,1,0,0,0,42.86,31.98,60.3,46.58,8.333333333333334,1,1,0,0,8,4,3,1,488,486255.3451174143,389637.695953949,189331.8877916553,0,1387.912308953078 -4571,5683,10288,10287,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.306078228072618,6.684559879215128,1,12,-52.7174382542416,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.751147079098511,60.3,46.58,42.86,31.98,8.333333333333334,1,1,0,0,0,4,3,1,488,486255.3451174143,389637.695953949,189331.8877916553,0,1387.912308953078 -4572,5684,10289,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,5.084549750357847,5.307270175685515,0,0,-936.5587587847236,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,5.402316173989891,0,41.06,62.04,-9,-9,8.333333333333334,4,2,0,0,2,4,2,0,591,118189.9267627473,0,0,0,473.9377363232158 -4573,5685,10290,10292,-9,-9,1,1,39,0,2,0,3,3,-9,0,5,5.733907076003582,5.725228209292434,0,7,3,5.039566725802836,0,-9,-9,2019,3,1,4,30,1,1,0,10.26344552709059,10.26344552709059,0,0,0,0,0,1,1,0,0,0,52.04,45.25,50.34,56.4,10,1,1,0,0,5,11,2,1,1036.25,-13308.91602240935,14849.10198426273,0,0,1497.466725717708 -4573,5685,10291,-9,10292,10290,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.463097871691,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,1036.25,-13308.91602240935,14849.10198426273,0,0,1497.466725717708 -4573,5685,10292,10290,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.615291076139398,7.263824804931187,0,7,-3,11.96573965291497,0,2,2,2019,11,1,20,20,1,1,0,10.75768154476895,10.75768154476895,0,0,0,0,0,1,1,0,0,0,50.34,56.4,52.04,45.25,8.333333333333334,1,1,0,0,8,11,2,1,1036.25,-13308.91602240935,14849.10198426273,0,0,1497.466725717708 -4573,5685,10293,-9,10292,10290,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.291736315845,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,1036.25,-13308.91602240935,14849.10198426273,0,0,1497.466725717708 -4574,5686,10294,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.46615114460961,7.63959767120056,0,0,-994.3146369260406,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.305668608425492,7.683346874015437,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,275,393865.2001846922,325478.8732321836,140873.7653874157,0,1451.317180901951 -4575,5687,10295,10296,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.731033813224684,4.865359175200311,8,-3,17.13528442856479,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.729313174135517,4.534870236954249,57.16,56.15,61.12,51.57,10,1,1,0,0,2,10,2,1,842.5,1334497.016053786,594412.7545887171,427001.2434451324,0,2154.44812367566 -4575,5687,10296,10295,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.370167581346788,7.273375471428425,8,3,-7.040296770183669,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.476846001369821,7.741995021501928,61.12,51.57,57.16,56.15,10,1,1,0,0,2,10,2,1,842.5,1334497.016053786,594412.7545887171,427001.2434451324,0,2154.44812367566 -4576,5688,10297,10298,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.004171836375292,8.446497725935522,0,4,3,125.6740546985567,0,-9,-9,2019,11,0,45,45,1,0,0,6.846103751236111,6.846103751236111,0,0,0,0,0,0,0,0,0,0,45.73,42.44,54.79,55.86,6.666666666666667,1,1,0,0,11,10,5,1,607.5,173249.6009583274,25186.30461603536,549580.2740683574,352281.5347954803,3441.882539097309 -4576,5688,10298,10297,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.76329598520814,8.837408410569624,0,4,-3,44.29152850404321,0,1,2,2019,6,0,43,45,1,0,0,13.4061036801781,13.4061036801781,0,0,0,0,0,0,0,0,4.258868593586357,0,54.79,55.86,45.73,42.44,8.333333333333334,1,1,0,0,9,10,5,1,607.5,173249.6009583274,25186.30461603536,549580.2740683574,352281.5347954803,3441.882539097309 -4577,5689,10299,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1050.659819076222,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,6.666666666666667,3,4,0,0,8,8,1,1,291,-56099.8753686075,0,0,0,614.2426651942083 -4577,5690,10300,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.787113563313,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,.5554287643262903,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,1,4731,17262.98324889822,19037.91735802622,0,0,1236.840245353391 -4577,5691,10301,-9,10300,10299,1,1,33,0,0,0,2,2,-9,0,4,8.258110816353906,8.430660908540542,0,0,0,-1001.997238932772,0,3,2,2019,10,0,48,48,1,1,0,8.675626472993008,8.675626472993008,0,0,0,0,0,1,1,0,4.371030660261408,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,433,121325.0580640369,-8326.417312242527,0,0,1462.276323142685 -4578,5692,10302,10303,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.385793589738451,9.306943518003765,0,7,1,81.07579007229671,0,3,2,2019,11,1,45,44,1,1,0,31.49641302188923,31.49641302188923,0,0,0,0,0,0,0,0,3.741330287792672,0,38.52,58.6,56.19,46.16,8.333333333333334,1,1,0,0,8,9,5,1,1063.5,2316976.293362629,1793818.926367759,331921.8193066358,0,3911.293623141354 -4578,5692,10303,10302,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.357810549161814,7.582891566716901,7,-1,79.92012555107223,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.917500618622709,7.751909724700435,56.19,46.16,38.52,58.6,8.333333333333334,1,1,0,0,3,9,5,1,1063.5,2316976.293362629,1793818.926367759,331921.8193066358,0,3911.293623141354 -4579,5693,10304,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.048804674659813,8.567589358517846,0,0,0,-1026.375642018983,0,3,3,2019,9,0,48,44,1,0,0,15.17626942056237,15.17626942056237,0,0,0,0,7,1,1,0,3.140760050264182,0,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,1072,347211.1952364141,-16716.37556154985,286677.4873170973,52319.74627832293,2024.473018660676 -4580,5694,10305,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,7.134149823957644,6.929812593202078,0,0,-1014.263777787535,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,3.218481841066055,7.024929685968607,17.9,24.53,-9,-9,1.666666666666667,1,1,0,0,0,2,3,1,309,304185.4974861327,207681.6742066626,108891.8994809999,0,2043.544282559237 -4581,5695,10306,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,4,0,6.665594129940765,7.005153089911662,0,0,-880.6966409359694,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.283294231062749,6.675877919241144,61.69,39.21,-9,-9,10,1,1,0,0,0,12,2,1,1715,193995.4286805246,204812.5482634313,0,0,1914.294127650798 -4582,5696,10307,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.97301531913801,7.321147986707713,0,0,-989.9564447268943,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,7.255995373675695,0,0,1,1,0,0,7.378944709605991,37.46,27.3,-9,-9,5,1,1,0,0,0,7,3,1,1420,505978.0021260137,127210.4031724691,269624.0973220425,0,1008.210553325463 -4582,5697,10308,-9,10307,-9,1,0,34,0,0,0,2,2,-9,0,4,8.021160083386746,7.844485190668768,0,0,0,-977.3075262726531,0,3,-9,2019,11,0,39,35,1,0,0,7.099441554988721,7.099441554988721,0,0,0,0,2,1,1,0,0,0,58.72,51.29,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,2004,74577.49000352989,0,0,0,1569.561204129173 -4583,5698,10309,-9,10311,10310,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.040618488758,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,4,1,718,102657.516233032,106482.1489016668,233337.4348091555,143283.0593193498,2101.202342436132 -4583,5698,10310,10311,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,8.602600601738814,8.57181632451401,0,3,-4,-34.70706237166173,0,-9,-9,2019,14,2,40,40,1,2,0,20.39542894438852,20.39542894438852,0,0,0,0,0,1,1,0,0,0,40.8,47.62,57.16,56.15,5,2,3,0,0,3,6,4,1,718,102657.516233032,106482.1489016668,233337.4348091555,143283.0593193498,2101.202342436132 -4583,5698,10311,10310,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,3,4,-27.00773941948566,0,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,40.8,47.62,10,2,3,0,0,3,6,4,1,718,102657.516233032,106482.1489016668,233337.4348091555,143283.0593193498,2101.202342436132 -4583,5698,10312,-9,10311,10310,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.375590265871,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,718,102657.516233032,106482.1489016668,233337.4348091555,143283.0593193498,2101.202342436132 -4584,5699,10313,10314,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.024970373400421,8.071150204756924,0,20,-11,-1.416462008897545,0,-9,-9,2019,11,0,41,42,1,0,0,7.691690500233067,7.691690500233067,0,0,0,0,0,1,1,0,1.280529622470843,0,57.06,57.76,59.7,53.75,8.333333333333334,1,1,0,0,8,10,4,1,347.5,729013.1409442768,429982.7874462454,324903.2398427631,0,2729.828700492844 -4584,5699,10314,10313,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.544756281571996,7.762329070323589,20,11,81.68786807997839,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.454912073107503,59.7,53.75,57.06,57.76,10,1,1,0,0,8,10,4,1,347.5,729013.1409442768,429982.7874462454,324903.2398427631,0,2729.828700492844 -4585,5700,10315,10317,-9,-9,1,0,37,0,2,0,1,1,-9,0,1,0,0,0,8,-2,-75.67489609393411,0,2,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,41.12,24.58,51,57,5,1,1,0,0,6,5,5,1,601.75,294297.5585655179,99088.42154886291,296451.7691604054,165464.55996005,4185.062359979433 -4585,5700,10316,-9,10315,10317,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.834300550586,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,5,1,601.75,294297.5585655179,99088.42154886291,296451.7691604054,165464.55996005,4185.062359979433 -4585,5700,10317,10315,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.412918498034511,9.528795492768767,0,8,2,1.355518073943945,0,2,3,2019,10,0,37,38,1,1,0,27.67723360127489,27.67723360127489,0,0,0,0,0,1,1,0,0,0,51,57,41.12,24.58,7,1,1,0,0,1,5,5,1,601.75,294297.5585655179,99088.42154886291,296451.7691604054,165464.55996005,4185.062359979433 -4585,5700,10318,-9,10315,10317,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.328603090649,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,601.75,294297.5585655179,99088.42154886291,296451.7691604054,165464.55996005,4185.062359979433 -4586,5701,10319,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.526301002032794,7.347746283768359,0,0,0,-1108.115783279845,0,2,2,2019,16,4,26,28,1,4,0,7.397890553478947,7.397890553478947,0,0,0,0,0,0,0,0,0,0,44.91,36.57,-9,-9,5,1,1,0,0,8,7,3,1,1047,41537.93931268599,0,0,0,872.2068787155547 -4587,5702,10320,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,2,0,9.282593550291102,8.728488168337263,0,0,-1047.230567806671,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,14.20135897362492,6.776704258544506,144.418342930182,0,1,1,0,3.995151540799393,8.66060741106452,61.79,16.18,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,564,1324852.12002136,507306.5601035572,686779.8772040349,0,4591.278715203441 -4588,5703,10321,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1016.501624361204,0,-9,-9,2019,6,0,0,14,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,2,4,1,0,231,-70680.49399288189,0,0,0,-106.703620554808 -4588,5704,10322,-9,10321,-9,1,1,18,0,0,0,2,2,-9,0,5,8.001935045557429,7.851637761453487,0,0,0,-1044.963030615046,0,3,-9,2019,6,0,50,0,1,0,1,7.474996182792283,7.474996182792283,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,0,4,4,0,639,16331.67528062639,0,0,0,1310.110146145098 -4589,5705,10323,10324,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,9.01572661216321,8.921950837428856,0,20,-3,-50.39069325813336,0,-9,-9,2019,11,1,40,45,1,1,0,28.33884859364028,28.33884859364028,0,0,0,0,0,0,0,0,0,0,42.09,39.2,62.39,56.71,3.333333333333333,1,1,0,1,7,12,5,1,589,851427.5575998146,778743.6799261533,177318.1012010079,29037.85365800365,3266.01930395927 -4589,5705,10324,10323,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.687718253367397,7.02100138155515,0,20,3,-170.7244834135204,0,-9,-9,2019,6,0,12,12,1,0,0,7.879457761539125,7.879457761539125,0,0,0,0,0,0,0,0,0,0,62.39,56.71,42.09,39.2,10,1,1,0,0,7,12,5,1,589,851427.5575998146,778743.6799261533,177318.1012010079,29037.85365800365,3266.01930395927 -4590,5706,10325,10326,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.19313966952756,6.202397059008607,46,5,51.05706062240428,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.114061716185187,6.501896909494773,61.88,41.71,54.69,57.47,10,1,1,0,0,0,2,2,1,1335.5,381280.3965901987,60450.39553257526,205655.7917332413,0,1274.28863880056 -4590,5706,10326,10325,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,0,0,46,-5,-24.92410920641962,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.290175653653652,0,54.69,57.47,61.88,41.71,10,1,1,0,0,6,2,2,1,1335.5,381280.3965901987,60450.39553257526,205655.7917332413,0,1274.28863880056 -4591,5707,10327,10328,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,9,-1,-61.26736014770166,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.626526417638567,0,55.73,53.98,52.61,49.93,8.333333333333334,1,1,0,0,4,9,4,1,419.5,560233.2496414345,375719.1452570782,286763.0489121547,0,1906.630078060648 -4591,5707,10328,10327,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.403148514817685,8.286795201776679,7.888307653241141,9,1,52.014004020304,0,2,3,2019,13,2,40,45,1,2,0,3.465688837297905,3.465688837297905,0,0,0,0,0,0,0,0,7.417673708951274,0,52.61,49.93,55.73,53.98,8.333333333333334,1,1,0,0,10,9,4,1,419.5,560233.2496414345,375719.1452570782,286763.0489121547,0,1906.630078060648 -4591,5708,10329,-9,10327,10328,1,0,25,0,0,0,1,1,-9,0,3,7.623722765327511,8.074107011000873,0,0,0,-1084.195443557104,0,2,2,2019,7,0,40,48,1,0,1,6.336890417789355,6.336890417789355,0,0,0,0,0,0,0,0,0,0,43.09,47.91,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,236,-123934.7448553188,-17881.2879759986,0,0,2006.976183069486 -4592,5709,10330,-9,10332,10331,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1093.798191708662,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.204952043742665,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,428,708810.9248202603,29445.73615132491,630348.4208442994,70491.47618262276,5507.713989566539 -4592,5709,10331,10332,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.587040972590223,9.941093607819028,0,10,9,-93.82738069452999,0,-9,-9,2019,10,0,38,43,1,0,0,43.59045139311832,43.59045139311832,0,0,0,0,0,0,0,0,4.928251123274618,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,428,708810.9248202603,29445.73615132491,630348.4208442994,70491.47618262276,5507.713989566539 -4592,5709,10332,10331,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.927353559620742,8.160158999117318,0,24,0,48.64420396642121,0,2,2,2019,7,0,27,25,1,0,0,10.45978671489783,10.45978671489783,0,0,0,0,0,0,0,0,4.470612195929928,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,428,708810.9248202603,29445.73615132491,630348.4208442994,70491.47618262276,5507.713989566539 -4593,5710,10333,10334,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.893612282712422,7.192065757969705,0,1,-5,-132.4397253070244,-9,-9,-9,2019,23,11,35,0,1,11,0,4.230401410398136,4.230401410398136,0,0,0,0,0,0,0,0,7.532103513165013,0,40.48,60.05,51.24,58.84,6.666666666666667,1,1,0,0,7,2,5,1,1473.5,977078.0508635417,645030.1030477965,264485.6406005614,0,5431.56171412151 -4593,5710,10334,10333,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.851560258143831,8.992171572845828,0,1,5,175.6662912331827,-9,2,2,2019,11,1,49,0,1,1,0,19.62461514030499,19.62461514030499,0,0,0,0,0,0,0,0,0,0,51.24,58.84,40.48,60.05,8.333333333333334,1,1,0,0,7,2,5,1,1473.5,977078.0508635417,645030.1030477965,264485.6406005614,0,5431.56171412151 -4594,5711,10335,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.781162800992281,8.545137516741761,0,0,0,-933.2686479639633,0,1,1,2019,10,2,36,35,1,2,0,17.93720300068062,17.93720300068062,0,0,0,0,0,1,1,0,0,0,56.23,52.63,-9,-9,3.333333333333333,1,1,0,0,11,6,5,0,141,55329.90345778633,75301.53310532274,273176.8941530844,46329.65286488269,2193.640029750589 -4595,5712,10336,-9,10337,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.1939580451703,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,938.5,-125641.4124226245,0,0,0,1339.693503818812 -4595,5712,10337,-9,-9,-9,1,0,50,0,1,0,3,3,-9,1,2,0,0,0,0,0,-927.4338019622684,0,3,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,21.65,47.48,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,938.5,-125641.4124226245,0,0,0,1339.693503818812 -4596,5713,10338,10339,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,50,-3,21.74793964730202,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,59.43,49.68,10,1,1,0,0,0,11,2,1,826.5,1843065.94331191,148945.8636301074,345749.3613647947,0,1640.887530000159 -4596,5713,10339,10338,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.955512745288693,6.531003537256215,50,3,-109.5862635384004,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.024442788718532,6.79791895494193,59.43,49.68,52.65,51.64,8.333333333333334,1,1,0,0,4,11,2,1,826.5,1843065.94331191,148945.8636301074,345749.3613647947,0,1640.887530000159 -4597,5714,10340,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.780234513571587,7.290609975602059,0,0,-1083.854884050865,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.535641796441879,7.42652466634104,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,919,731818.0488935575,533812.9249398651,242038.2830566127,694.9975760042871,1736.040191870841 -4598,5715,10341,10342,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.600730321136069,8.874026292235595,0,6,0,7.03040262645538,0,-9,-9,2019,6,0,42,42,1,0,0,16.56198911386135,16.56198911386135,0,0,0,0,0,0,0,0,0,0,50.77,50.99,54.45,56.22,8.333333333333334,1,1,0,0,9,12,5,1,316,26424.458536318,151362.8197162212,0,0,3034.174646637019 -4598,5715,10342,10341,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.623058140805319,7.67236576395769,0,31,0,86.01495902808838,0,3,2,2019,9,1,27,26,1,1,0,8.386771949714674,8.386771949714674,0,0,0,0,0,0,0,0,0,0,54.45,56.22,50.77,50.99,10,1,1,0,0,9,12,5,1,316,26424.458536318,151362.8197162212,0,0,3034.174646637019 -4599,5716,10343,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.596499960790105,8.930230136179475,0,0,0,-1005.993979529098,0,3,3,2019,11,0,65,42,1,0,0,12.41875010460233,12.41875010460233,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,2,5,0,6449,347398.4848862759,362640.2652603721,201123.0979150507,48466.82606834164,3587.776692508381 -4600,5717,10344,10345,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.684112663911153,7.737590793746323,8,3,-25.84422799672556,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.531966928768161,7.562913550240574,57.63,46.42,49.32,56.04,8.333333333333334,1,1,0,0,0,11,3,1,812,1923886.068663195,304499.4112295229,347859.703861635,0,1828.296372190519 -4600,5717,10345,10344,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,8,-3,15.36635811301261,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.126237939890414,0,49.32,56.04,57.63,46.42,0,1,1,0,0,0,11,3,1,812,1923886.068663195,304499.4112295229,347859.703861635,0,1828.296372190519 -4601,5718,10346,10347,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.105659317457219,7.275814377089882,27,0,25.15768052669335,0,1,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.292302734406401,7.423993822307129,54.2,57.49,57.17,50.61,1.666666666666667,1,1,0,0,0,2,3,1,2693,2679679.465224106,1389361.051078503,399443.5878071806,0,3486.481958212888 -4601,5718,10347,10346,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.044461185732709,8.214613125157765,27,0,-64.77758089706712,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.233529750975876,7.927192214529993,57.17,50.61,54.2,57.49,8.333333333333334,1,1,0,0,0,2,3,1,2693,2679679.465224106,1389361.051078503,399443.5878071806,0,3486.481958212888 -4602,5719,10348,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.686720191374114,7.683440096884357,3.215235073038815,0,0,-966.9072338857395,0,1,1,2019,9,0,45,48,1,0,0,4.891984767176462,4.891984767176462,0,0,0,0,0,0,0,0,3.433897057063164,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,947,306941.0744700501,61186.2319053617,681579.5925078479,557806.6927889842,1149.688523172342 -4603,5720,10349,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.253436745859329,9.179568896974342,0,0,0,-1045.560926721804,0,2,2,2019,15,3,62,57,1,3,0,18.28597161372065,18.28597161372065,0,0,0,0,0,1,1,0,2.125264984582659,0,44.21,60.79,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,377,-48007.04840195662,-1143.698640564986,0,0,3380.696097939529 -4604,5721,10350,-9,10351,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.9463901994015,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,897.5,-52623.92785706596,0,0,0,1738.774175871414 -4604,5721,10351,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1034.971349997663,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,25.87,42.55,-9,-9,5,1,1,0,0,0,13,2,0,897.5,-52623.92785706596,0,0,0,1738.774175871414 -4605,5722,10352,10353,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-6,56.35442044468288,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,42,1,1,0,2.757547116750154,0,39.92,49.18,26.82,19.15,5,1,1,0,0,0,6,2,1,291.5,252986.8821689276,0,121852.4215361876,0,1431.819257037771 -4605,5722,10353,10352,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,5.15364079719865,4.821440870657812,56,6,-20.10900536325258,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,45.11851611916984,0,0,1,1,0,2.857758387859033,4.500207069686605,26.82,19.15,39.92,49.18,1.666666666666667,1,1,0,0,0,6,2,1,291.5,252986.8821689276,0,121852.4215361876,0,1431.819257037771 -4606,5723,10354,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.526854467383524,8.464399854711031,6.722779331280473,0,0,-998.4425966525429,0,3,3,2019,10,0,38,37,1,0,0,17.88667664066607,17.88667664066607,0,0,0,0,0,1,1,0,0,7.250691948830614,43.79,58.33,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,795,1599232.655910734,1221803.875878102,397899.4889949532,32048.98257593966,2357.302245713038 -4607,5724,10355,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1067.228482105472,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.65,60.47,-9,-9,6.666666666666667,1,1,0,0,3,2,1,0,160,-126150.9293418603,27202.32060099657,0,0,1455.075549063479 -4608,5725,10356,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.336031868128956,7.035234802263612,0,0,-1045.063944362218,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.955059368607163,51.99,40.97,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,293,323459.5506780303,130945.0320461575,14760.09991803444,0,1765.55738773691 -4609,5726,10357,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,8.203919308941193,8.100302501158927,0,0,-958.0729637726068,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.666239368962796,8.037250166117973,60.12,54.8,-9,-9,10,1,1,0,0,0,10,4,1,972,326279.6167074345,286693.0529164262,264420.447249733,0,2150.14561311583 -4610,5727,10358,10360,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.157566030764711,9.104828242557639,0,7,-1,-26.28686779670316,0,2,1,2019,14,2,55,48,1,2,0,17.71341191897869,17.71341191897869,0,0,0,0,0,0,0,0,9.589394658873626,0,44.19,58.01,55.3,55.6,8.333333333333334,1,1,0,0,8,9,5,1,776.3333333333334,1392137.604234651,370737.1299883789,621666.9531243382,16906.38895556704,9295.152922782781 -4610,5727,10359,-9,10360,10358,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.632639380531,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,776.3333333333334,1392137.604234651,370737.1299883789,621666.9531243382,16906.38895556704,9295.152922782781 -4610,5727,10360,10358,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.085329350325722,7.86157425242232,0,7,1,-145.8233283185733,0,2,-9,2019,5,0,6,10,1,0,0,56.13542890470418,56.13542890470418,0,0,0,0,0,0,0,0,7.500506172807618,0,55.3,55.6,44.19,58.01,6.666666666666667,1,1,0,0,8,9,5,1,776.3333333333334,1392137.604234651,370737.1299883789,621666.9531243382,16906.38895556704,9295.152922782781 -4611,5728,10361,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.356420568898907,8.514368852460972,0,0,0,-911.2474590774221,0,-9,-9,2019,8,0,40,40,1,0,0,11.46077055839765,11.46077055839765,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,4,5,0,672,29619.10623294803,0,0,0,1657.502184530264 -4612,5729,10362,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.659346178871134,7.690079483475642,0,0,0,-1107.35848542896,0,2,2,2019,7,0,38,38,1,0,0,6.90270386545393,6.90270386545393,0,0,0,0,27,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,3,4,0,0,7,12,3,1,1165,485322.4040862324,125037.6796774446,347477.714650623,84509.33541156013,688.1018446670428 -4612,5730,10363,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-981.0748918361666,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.39,16.93,-9,-9,1.666666666666667,1,1,0,1,2,12,1,1,453,51607.2570291251,0,0,0,43.94636190261832 -4612,5731,10364,-9,10363,-9,1,0,22,0,0,0,2,2,-9,0,3,7.238925962109413,7.526666436910856,0,0,0,-1004.933386035893,0,2,-9,2019,12,0,36,36,1,0,1,5.997205406921455,5.997205406921455,0,0,0,0,14.5,1,1,0,0,0,44.11,55.31,-9,-9,5,1,1,0,0,4,12,3,1,193,-136836.5224944867,0,0,0,538.0951920189846 -4613,5732,10365,10366,-9,-9,1,1,27,0,0,0,1,1,-9,0,1,8.415711237728816,8.351959571219934,0,3,2,-27.07999816217642,0,-9,-9,2019,17,5,45,46,1,5,0,11.65385129550705,11.65385129550705,0,0,0,0,2,0,0,0,0,0,30.86,49.7,22.71,32.09,3.333333333333333,1,1,0,1,5,4,4,0,438,-11780.97261730736,3381.101994258926,158662.0039424197,111614.8615409436,1914.007618155371 -4613,5732,10366,10365,-9,-9,1,0,25,0,0,0,2,2,-9,0,1,0,0,0,3,-2,21.99096310845903,0,1,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,22.71,32.09,30.86,49.7,0,4,2,0,1,2,4,4,0,438,-11780.97261730736,3381.101994258926,158662.0039424197,111614.8615409436,1914.007618155371 -4614,5733,10367,10368,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.846054736455494,7.910573439821236,0,1,-1,122.6976906667078,-9,-9,-9,2019,10,1,37,0,1,1,0,8.990219143286856,8.990219143286856,0,0,0,0,0,0,0,0,0,0,44.04,55.61,39.61,57.54,8.333333333333334,1,1,0,0,2,4,5,1,1294,211339.1847916969,-30275.87013075005,159162.053147312,142156.4897973299,3309.090810718087 -4614,5733,10368,10367,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.482327968029304,8.592193572707414,0,1,1,196.6824459649335,-9,-9,-9,2019,12,3,35,0,1,3,0,14.25624522926676,14.25624522926676,0,0,0,0,0,0,0,0,0,0,39.61,57.54,44.04,55.61,10,1,1,0,0,9,4,5,1,1294,211339.1847916969,-30275.87013075005,159162.053147312,142156.4897973299,3309.090810718087 -4615,5734,10369,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.0710627445204,5.028140598810915,0,0,-853.3412590943585,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.551424156009416,5.0003885286336,38,36.96,-9,-9,1.666666666666667,1,1,0,0,3,6,2,0,644,697889.8665809263,0,173253.8995904376,0,1693.241783330514 -4616,5735,10370,10371,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,8.070037940323944,7.961470971894077,0,1,0,-32.58094775272437,-9,-9,-9,2019,13,4,40,0,1,4,0,9.619903635001501,9.619903635001501,0,0,0,0,0,0,0,0,0,0,52.64,30.25,48.45,51.96,8.333333333333334,1,1,0,0,4,5,3,1,202,99473.61323474375,-9962.958890365117,194707.0984350664,0,2263.350640021402 -4616,5735,10371,10370,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,6.537376504474813,6.424190928809407,0,1,0,16.82334987086016,-9,3,3,2019,15,4,10,0,1,4,0,6.47927836693643,6.47927836693643,0,0,0,0,116,0,0,0,5.447669650778731,0,48.45,51.96,52.64,30.25,5,1,1,0,0,8,5,3,1,202,99473.61323474375,-9962.958890365117,194707.0984350664,0,2263.350640021402 -4616,5736,10372,-9,10371,10370,1,1,21,0,1,0,2,2,-9,0,3,7.501046910829734,7.544455183362603,0,0,0,-1004.995563839282,-9,3,2,2019,8,0,9,0,1,0,1,24.25136181002823,24.25136181002823,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,294,0,0,0,0,521.3728447783328 -4616,5737,10373,-9,10371,10370,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-851.1231927984639,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,5,1,1,362,-65344.64439621476,0,0,0,0 -4617,5738,10374,10375,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,5.524989045557491,5.373088468742317,49,3,99.06364519296541,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.889000793552947,5.230942334247341,60.02,56.42,60.81,43.46,10,1,1,0,0,0,10,2,1,531.5,296317.9092610968,121324.3712357648,438902.9822214902,78571.5866605956,1513.85085516176 -4617,5738,10375,10374,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.287225125691274,5.129410273453748,49,-3,45.28080850146154,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.893642168072089,5.397687061157942,60.81,43.46,60.02,56.42,8.333333333333334,1,1,0,0,6,10,2,1,531.5,296317.9092610968,121324.3712357648,438902.9822214902,78571.5866605956,1513.85085516176 -4618,5739,10376,10377,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.198349805352636,8.520403502939475,0,10,2,59.60593157828005,0,3,3,2019,11,0,42,42,1,1,0,8.708091075504949,8.708091075504949,0,0,0,0,0,0,0,0,0,0,49,50,48.93,50.55,7,1,1,0,0,11,13,4,1,282,1181168.473833927,727785.37117897,322835.4919049808,0,1964.582722163864 -4618,5739,10377,10376,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.25984765390171,7.602716306239599,0,10,-2,-1.867536350469102,0,3,3,2019,12,0,16,16,1,0,0,12.06823520358776,12.06823520358776,0,0,0,0,0,0,0,0,0,0,48.93,50.55,49,50,8.333333333333334,1,1,0,0,11,13,4,1,282,1181168.473833927,727785.37117897,322835.4919049808,0,1964.582722163864 -4618,5740,10378,-9,10377,10376,1,1,23,0,0,0,2,2,-9,0,4,7.727067989024512,7.767354907705612,0,0,0,-1105.629375576417,0,2,3,2019,10,0,50,40,1,0,1,5.949704558207166,5.949704558207166,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,1070,232179.7584458654,15994.63826173573,0,0,1353.870776586011 -4618,5741,10379,-9,10377,10376,1,0,22,0,0,0,1,1,-9,0,3,7.723880941388232,8.022497158577336,0,0,0,-1042.593135582356,0,2,3,2019,9,0,32,30,1,0,1,11.01325954175614,11.01325954175614,0,0,0,0,0,0,0,0,0,0,52.79,51.64,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,363,0,0,0,0,871.9666825406537 -4619,5742,10380,-9,10381,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.5415858963253,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,1,3279,-105290.2917193861,0,0,0,1952.571894954514 -4619,5742,10381,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,7.671927468701663,7.747602856980113,0,0,0,-1062.931382182071,0,-9,-9,2019,19,6,30,28,1,6,0,10.53682225203197,10.53682225203197,0,0,0,0,14.5,1,1,0,0,0,29.72,47.06,-9,-9,3.333333333333333,4,2,0,1,7,7,3,1,3279,-105290.2917193861,0,0,0,1952.571894954514 -4620,5743,10382,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,7.627801355690598,7.64116072258672,0,0,-999.2006910032901,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,5.089547841008784,6.163199463030955,50.3099035238945,0,1,1,0,3.997025617262959,7.813018917839074,46.31,13.25,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,1340,896933.0294305893,194450.5708683611,499194.9022580336,0,1625.078305008216 -4621,5744,10383,10384,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.588551306446075,7.303941807340762,0,6,2,-9.619289294282005,-9,-9,-9,2019,9,0,30,0,1,1,0,5.747909770411393,5.747909770411393,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,5,2,0,1103.5,-14513.85355570089,129366.3723717417,0,0,2027.434361068676 -4621,5744,10384,10383,-9,-9,1,0,37,0,0,0,3,3,-9,1,4,0,0,0,6,-2,-50.85683673010225,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,2,0,1103.5,-14513.85355570089,129366.3723717417,0,0,2027.434361068676 -4622,5745,10385,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.582305319596976,8.642684085697296,0,0,0,-966.7170828588503,0,-9,-9,2019,9,0,72,63,1,0,0,7.496671875191911,7.496671875191911,0,0,0,0,0,0,0,0,0,0,50.74,49.95,-9,-9,8.333333333333334,1,1,0,0,8,5,5,0,1469,134627.279268564,0,0,0,1696.766091203341 -4623,5746,10386,10389,-9,-9,1,0,30,1,6,0,2,2,-9,0,5,0,0,0,8,-6,-22.12831012907472,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.02,56.42,60.12,54.8,10,1,1,0,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10387,-9,10386,10389,1,0,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1007.086885328331,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10388,-9,10386,10389,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1069.590165781714,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10389,10386,-9,-9,1,1,36,1,6,0,2,2,-9,0,4,7.567791133096557,7.870379434109102,0,8,6,-.7112140506488327,0,3,3,2019,7,0,38,0,1,0,0,7.064792979197784,7.064792979197784,0,0,0,0,0,1,1,0,0,0,60.12,54.8,60.02,56.42,8.333333333333334,1,1,0,0,1,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10390,-9,10386,10389,1,1,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-834.1854527509234,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10391,-9,10386,10389,1,0,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-932.5605312195232,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10392,-9,10386,10389,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-916.469518438185,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4623,5746,10393,-9,10386,10389,1,0,11,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1085.931078774336,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,884.5,41156.96273472978,0,0,0,3469.424628586953 -4624,5747,10394,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.193245400748712,8.189988142271543,0,0,-987.2794611309033,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,27,1,1,0,3.203357504613844,7.919356289115806,33.08,46.79,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,434,960131.3149108186,576035.1249108698,191644.0021917939,0,2134.223696409116 -4625,5748,10395,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,8.265480921541641,8.038401272675436,0,0,0,-958.542724553994,-9,-9,-9,2019,13,3,50,0,1,3,0,7.161047355928831,7.161047355928831,0,0,0,0,0,1,1,0,0,0,53.11,51.29,-9,-9,3.333333333333333,1,1,0,0,3,12,4,0,350,19618.5980773127,35488.020286336,0,0,1335.593918823415 -4626,5749,10396,10399,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.568037663004273,6.528021245343518,0,6,-4,-59.55097134053884,0,3,2,2019,3,0,8,32,1,0,0,8.691150199417045,8.691150199417045,0,0,0,0,0,1,1,0,7.301781106077464,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,877.5,911799.7548071602,519819.4423252596,456150.311594407,94205.60283508713,5162.141804435884 -4626,5749,10397,-9,10396,10399,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.1078957137571,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,877.5,911799.7548071602,519819.4423252596,456150.311594407,94205.60283508713,5162.141804435884 -4626,5749,10398,-9,10396,10399,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-924.8200140169728,-9,2,3,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,4,1,877.5,911799.7548071602,519819.4423252596,456150.311594407,94205.60283508713,5162.141804435884 -4626,5749,10399,10396,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.899282076876123,9.147654505451776,7.376938015831407,6,4,-27.53340339327767,0,3,3,2019,9,1,84,32,1,1,0,8.641812079129952,8.641812079129952,0,0,0,0,0,1,1,0,7.084068172510099,8.069315533759278,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,9,4,1,877.5,911799.7548071602,519819.4423252596,456150.311594407,94205.60283508713,5162.141804435884 -4627,5750,10400,10401,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.810252233401451,7.927784945957118,37,1,-16.79205121051834,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.911982556819481,7.835935044178761,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,4,1,499.5,2052346.055239095,1247495.973902402,381784.9911012846,0,2883.04805014304 -4627,5750,10401,10400,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.470594433362211,7.942802416818781,37,-1,-23.31709842666431,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.485591061279213,7.307062885978328,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,499.5,2052346.055239095,1247495.973902402,381784.9911012846,0,2883.04805014304 -4628,5751,10402,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.941043356165,0,3,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,38.16,44.66,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,277,-37938.85072315458,0,0,0,1459.087162967229 -4629,5752,10403,10404,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,7.895611628673922,7.973370719721403,6.06373161755148,1,3,-2.086731812494414,-9,2,2,2019,15,3,27,0,1,3,0,7.768498397403116,7.768498397403116,0,0,0,0,0,0,0,0,6.364963242760781,0,44.14,47.71,48.28,60.18,6.666666666666667,1,1,0,0,10,10,3,1,737,1034012.292269325,777997.883479676,195465.7473724904,0,1636.947165032353 -4629,5752,10404,10403,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,0,0,0,1,-3,-34.78440621823336,-9,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.14,47.71,6.666666666666667,1,1,1,0,11,10,3,1,737,1034012.292269325,777997.883479676,195465.7473724904,0,1636.947165032353 -4630,5753,10405,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.193813159533667,8.618277837198299,0,0,0,-917.4478911233987,0,-9,-9,2019,8,0,36,47,1,0,0,13.51115121345785,13.51115121345785,0,0,0,0,0,0,0,0,0,0,58.75,48.57,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,824,247776.4239686674,256438.4482365027,126527.805402603,34681.02815414735,2015.152324725152 -4631,5754,10406,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.292061576057295,8.30695025249919,0,0,0,-933.7375853084898,0,3,2,2019,16,5,30,26,1,5,0,18.09974421243112,18.09974421243112,0,0,0,0,2,1,1,0,7.092354136137462,0,47.89,28.36,-9,-9,3.333333333333333,2,3,0,0,12,8,4,1,552,432392.5354354281,35646.20396333895,384890.7603956978,50281.1800758719,2428.8347681126 -4632,5755,10407,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.027552658269079,7.590627084792764,0,0,0,-965.0337860604401,0,2,3,2019,3,0,40,36,1,0,0,3.915394626905283,3.915394626905283,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,3,4,0,0,8,5,2,0,360,-22597.66703635173,-10342.77702672631,0,0,2164.372690503914 -4632,5755,10408,-9,10407,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.626968977332,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,2,0,360,-22597.66703635173,-10342.77702672631,0,0,2164.372690503914 -4633,5756,10409,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,9.327912275756956,9.378436864962937,0,0,0,-1025.114347275927,0,-9,-9,2019,6,0,60,60,1,0,0,19.10252783801105,19.10252783801105,0,0,0,0,0,1,1,0,2.465556879426293,0,62.39,56.71,-9,-9,0,1,1,0,0,11,2,5,0,1058,365669.4532780778,434606.0526479476,0,0,4709.56591643538 -4634,5757,10410,-9,10415,10411,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.4913717443677,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4634,5757,10411,10415,-9,-9,1,1,40,1,4,0,2,2,-9,0,4,9.135649366792286,9.21036809249145,0,9,-5,-88.43999002165177,0,2,2,2019,17,5,45,38,1,5,0,25.88642894826614,25.88642894826614,0,0,0,0,14.5,1,1,0,0,0,24.07,61.87,43.71,56.91,5,1,1,0,0,12,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4634,5757,10412,-9,10415,10411,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-915.7017676159927,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4634,5757,10413,-9,10415,10411,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.153842920549,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4634,5757,10414,-9,10415,10411,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.2401842253302,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4634,5757,10415,10411,-9,-9,1,0,45,1,4,0,1,1,-9,1,3,6.683384020122678,6.647894451403711,0,9,5,78.60872836293869,0,1,2,2019,15,3,6,8,1,3,0,21.69561835864493,21.69561835864493,0,0,0,0,14.5,1,1,0,0,0,43.71,56.91,24.07,61.87,8.333333333333334,1,1,0,0,12,6,4,1,924.8333333333334,151140.1392969305,119172.8886608378,167963.5262247928,46217.54075150574,2194.985141042237 -4635,5758,10416,-9,10417,10419,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.636894125888,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,797.75,963711.0821780397,419343.1632695612,304268.332889994,22556.23845531433,3734.341139306014 -4635,5758,10417,10419,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,15,-5,13.32490524972333,1,3,3,2019,10,0,0,21,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,5,7,4,1,797.75,963711.0821780397,419343.1632695612,304268.332889994,22556.23845531433,3734.341139306014 -4635,5758,10418,-9,10417,10419,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.044991992559,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,4,1,797.75,963711.0821780397,419343.1632695612,304268.332889994,22556.23845531433,3734.341139306014 -4635,5758,10419,10417,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.68353909961519,8.81239886898817,0,12,5,-56.1526014748531,0,3,3,2019,12,0,42,55,1,0,0,16.09004329019684,16.09004329019684,0,0,0,0,0,1,1,0,8.103839370949814,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,8,7,4,1,797.75,963711.0821780397,419343.1632695612,304268.332889994,22556.23845531433,3734.341139306014 -4636,5759,10420,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,3.432874511377166,3.309200182226312,0,0,-979.202616836841,-9,2,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.451696087622867,0,52.48,55.6,-9,-9,10,1,1,0,0,2,2,2,0,302,163003.0550096834,0,0,0,382.8283941916952 -4637,5760,10421,10422,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,5.931218752845992,6.383419098849445,6,1,-91.64635139136232,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.74751191677789,6.343300198308282,55.59,43.19,52.38,55.6,6.666666666666667,1,1,0,0,3,12,3,1,663.5,-16081.87527175661,0,0,0,2618.013816849324 -4637,5760,10422,10421,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.609104426185099,7.456904634017102,6,-1,137.9205610697526,0,1,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.181549686530379,7.38557300293994,52.38,55.6,55.59,43.19,8.333333333333334,1,1,0,0,0,12,3,1,663.5,-16081.87527175661,0,0,0,2618.013816849324 -4638,5761,10423,10425,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.939240054559733,8.185879433663326,0,8,3,-78.78749923509804,0,1,2,2019,14,4,22,22,1,4,0,14.24662886497224,14.24662886497224,0,0,0,0,0,0,0,0,0,0,45.92,54.36,54.79,55.86,8.333333333333334,1,1,0,1,9,9,5,1,687.75,1783883.945145073,622365.3877016896,1212053.180146663,447061.1778837661,5220.761803260456 -4638,5761,10424,-9,10423,10425,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.470158994905,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,687.75,1783883.945145073,622365.3877016896,1212053.180146663,447061.1778837661,5220.761803260456 -4638,5761,10425,10423,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.522518050831897,9.228609778654816,0,8,-3,-10.88900824426785,0,2,3,2019,9,0,46,61,1,0,0,31.64084476418006,31.64084476418006,0,0,0,0,0,0,0,0,0,0,54.79,55.86,45.92,54.36,8.333333333333334,1,1,0,0,11,9,5,1,687.75,1783883.945145073,622365.3877016896,1212053.180146663,447061.1778837661,5220.761803260456 -4638,5761,10426,-9,10423,10425,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-802.2406845504473,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,687.75,1783883.945145073,622365.3877016896,1212053.180146663,447061.1778837661,5220.761803260456 -4639,5762,10427,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.3058640372585,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,39.29,-9,-9,5,1,1,1,1,0,13,1,0,460,6481.141458111766,0,0,0,751.8860462149315 -4640,5763,10428,10429,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.240664741931535,7.56697935872042,47,2,-41.11019646048757,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.324012420898346,7.106133416894308,55.37,48.71,50.63,45.45,10,1,1,0,0,0,4,2,1,2176.5,553758.2763691602,241791.7678242697,183140.414102133,0,1957.612162396473 -4640,5763,10429,10428,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.139469372005069,5.686846776920867,47,-2,48.96292760607918,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.277733282752386,5.526153262857627,50.63,45.45,55.37,48.71,10,1,1,0,0,0,4,2,1,2176.5,553758.2763691602,241791.7678242697,183140.414102133,0,1957.612162396473 -4641,5764,10430,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,4,7.863295893617033,7.99311286378272,0,0,0,-1039.571785020462,-9,-9,-9,2019,14,3,59,0,1,3,0,5.138002832199963,5.138002832199963,0,0,0,0,0,0,0,0,0,0,42.85,60.33,-9,-9,5,4,2,0,1,5,2,4,0,268,-61820.1895608443,-63633.35306827725,0,0,1341.575412734149 -4642,5765,10431,-9,-9,-9,1,0,39,0,0,0,3,3,-9,1,3,0,0,0,0,0,-869.3649520167656,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,.140943858620231,0,1,0,1,.3737882549675851,0,33.47,42.84,-9,-9,3.333333333333333,2,3,1,0,0,6,1,0,1036,-59252.93426642613,0,0,0,2191.474937390799 -4642,5766,10432,-9,10431,-9,1,0,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-890.329695554572,0,3,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,.054507564785781,0,53.61,59.13,-9,-9,10,2,3,1,0,0,6,1,0,2302,-131742.4696250397,0,0,0,691.5229651116975 -4643,5767,10433,10434,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,6.914403425469893,7.885272250294193,7.353787909684848,43,-1,-14.00299470465443,0,2,2,2019,6,0,5,10,1,0,0,17.56315220353421,17.56315220353421,1,0,10.66432485506621,0,0,1,1,0,4.799108842913437,7.788344936005721,54.58,38.85,54.1,59.11,8.333333333333334,1,1,0,0,12,6,3,1,327.5,47689.24736930727,-8144.692175730147,100264.9939770031,32656.13783182008,3045.059306756448 -4643,5767,10434,10433,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,6.049752010182294,5.910326465041614,0,43,1,50.17423427441741,0,2,2,2019,7,0,4,4,1,0,0,10.34240463635623,10.34240463635623,0,0,0,0,0,1,1,0,6.268700845295091,0,54.1,59.11,54.58,38.85,8.333333333333334,1,1,0,0,12,6,3,1,327.5,47689.24736930727,-8144.692175730147,100264.9939770031,32656.13783182008,3045.059306756448 -4644,5768,10435,10436,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.711452681428362,8.815230371608612,0,28,-4,-106.7285371017975,0,2,2,2019,6,0,45,40,1,0,0,15.64269934160156,15.64269934160156,0,0,0,0,0,0,0,0,0,0,60.12,54.8,48.95,55.71,8.333333333333334,1,1,0,0,8,7,5,1,731.5,2306794.102946741,952088.2743323274,664740.2112017013,0,4357.737940506035 -4644,5768,10436,10435,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.720460863151599,8.491892563551559,0,26,4,106.1942094312369,0,3,2,2019,10,0,37,27,1,0,0,18.5515295705127,18.5515295705127,0,0,0,0,2,0,0,0,0,0,48.95,55.71,60.12,54.8,8.333333333333334,1,1,0,0,7,7,5,1,731.5,2306794.102946741,952088.2743323274,664740.2112017013,0,4357.737940506035 -4645,5769,10437,10438,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.56667194176447,6.710878090196515,55,-6,19.60286911785556,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.356629565481234,51,46,54,46,8.333333333333334,1,1,0,0,0,11,2,1,1160,556227.3670961973,302294.8249456038,232631.2210998517,0,1747.02066454043 -4645,5769,10438,10437,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.689414617768704,7.192733128189121,55,6,-110.1401827829948,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.661006543417228,54,46,51,46,8,1,1,0,0,0,11,2,1,1160,556227.3670961973,302294.8249456038,232631.2210998517,0,1747.02066454043 -4646,5770,10439,10440,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.683790688036037,8.70399300271526,0,38,1,18.08761509054865,0,2,2,2019,13,3,37,40,1,3,0,17.23003794186347,17.23003794186347,0,0,0,0,0,0,0,0,.956300950387337,0,56.35,48.33,54.84,51.94,8.333333333333334,1,1,0,0,8,9,5,1,617.5,1706889.648071037,847502.4518338573,283158.4918824192,0,3872.131470893732 -4646,5770,10440,10439,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,9.037676127089524,8.805218194175049,0,38,-1,-84.65509980833954,0,3,2,2019,7,0,37,37,1,0,0,29.42183939375626,29.42183939375626,0,0,0,0,0,0,0,0,5.082906199583889,0,54.84,51.94,56.35,48.33,8.333333333333334,1,1,0,0,8,9,5,1,617.5,1706889.648071037,847502.4518338573,283158.4918824192,0,3872.131470893732 -4647,5771,10441,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.050944188505311,6.16080795469027,0,0,-1009.462706580565,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.085916296940214,59.46,46.99,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,329,248754.5162397997,-5950.783357727611,0,0,794.1385741772237 -4648,5772,10442,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-983.767626938861,0,-9,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,1.666666666666667,1,1,0,0,3,11,1,0,599.5,38260.34236007982,0,0,0,2386.267029489526 -4648,5772,10443,-9,10442,-9,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-884.6544975770481,-9,2,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.854504744957558,0,57.06,57.76,-9,-9,10,1,1,1,0,1,11,1,0,599.5,38260.34236007982,0,0,0,2386.267029489526 -4648,5773,10444,-9,10442,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1124.788766575789,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,1.666666666666667,1,1,0,0,2,11,1,0,561,-98560.93275983442,0,0,0,0 -4649,5774,10445,10447,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,6.37139359854647,6.450658165591199,0,3,0,-144.6594198019536,0,3,3,2019,9,0,10,0,1,0,0,5.666421928811478,5.666421928811478,0,0,0,0,0,1,1,0,0,0,38.6,55.31,25.26,42.61,5,1,1,0,0,3,10,3,0,391.6666666666667,24623.75524437571,0,0,0,1827.299535307469 -4649,5774,10446,-9,10447,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-843.2075173447897,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,51.45,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,391.6666666666667,24623.75524437571,0,0,0,1827.299535307469 -4649,5774,10447,10445,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.608852596331808,7.574412423966398,0,3,9,81.01596466721918,0,3,3,2019,25,12,25,24,1,12,0,8.422547731909518,8.422547731909518,0,0,0,0,2,1,1,0,0,0,25.26,42.61,38.6,55.31,1.666666666666667,1,1,0,0,3,10,3,0,391.6666666666667,24623.75524437571,0,0,0,1827.299535307469 -4650,5775,10448,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,7.784180805697794,8.038193687469569,0,0,0,-971.1902107811446,0,2,2,2019,14,3,3,14,1,3,0,96.26256036803535,96.26256036803535,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,528,26041.19105163662,0,0,0,1763.754703295724 -4651,5776,10449,10450,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.614970960970814,7.56530810273143,0,26,0,31.32853184756243,0,3,2,2019,9,0,30,35,1,0,0,7.731134886660101,7.731134886660101,0,0,0,0,2,1,1,0,0,0,55.02,54.61,54.44,17.16,3.333333333333333,1,1,0,0,5,1,3,0,304.5,559563.7338306322,337565.5853630026,293551.5158508616,0,1588.541079361058 -4651,5776,10450,10449,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,26,0,-144.1868324460347,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,54.44,17.16,55.02,54.61,5,1,1,0,0,6,1,3,0,304.5,559563.7338306322,337565.5853630026,293551.5158508616,0,1588.541079361058 -4651,5777,10451,-9,10450,10449,1,0,22,0,0,0,1,1,-9,0,3,7.161793269383665,7.278313117069362,0,0,0,-1000.76924274345,0,2,1,2019,15,3,26,23,1,3,1,7.458834672489229,7.458834672489229,0,0,0,0,2,1,1,0,0,0,36.91,52.08,-9,-9,6.666666666666667,1,1,0,0,5,1,3,0,1372,89703.43498909875,185063.9169338838,0,0,1340.632901827624 -4652,5778,10452,-9,10454,10455,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.9384672136862,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,729,984049.2449975532,744705.3094636326,282375.9628010977,52743.44346200566,3865.677140952233 -4652,5778,10453,-9,10454,10455,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1009.537776131792,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,729,984049.2449975532,744705.3094636326,282375.9628010977,52743.44346200566,3865.677140952233 -4652,5778,10454,10455,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,0,0,0,19,-6,48.29717771176024,0,2,3,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,.315662367232266,0,55.93,49.95,48.28,60.18,8.333333333333334,1,1,0,0,10,5,4,1,729,984049.2449975532,744705.3094636326,282375.9628010977,52743.44346200566,3865.677140952233 -4652,5778,10455,10454,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.116632747252693,9.339700249318579,0,9,6,-31.48311777651807,0,-9,-9,2019,10,0,50,60,1,0,0,19.5695074829173,19.5695074829173,0,0,0,0,0,0,0,0,0,0,48.28,60.18,55.93,49.95,3.333333333333333,1,1,0,0,8,5,4,1,729,984049.2449975532,744705.3094636326,282375.9628010977,52743.44346200566,3865.677140952233 -4653,5779,10456,-9,-9,-9,1,1,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-911.1374739929078,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,28.93,50.74,-9,-9,6.666666666666667,1,1,0,1,4,9,1,0,1777,0,0,0,0,1956.425387295353 -4654,5780,10457,10458,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,42,-2,39.20503307090951,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,41.17,59.31,10,1,1,0,0,0,1,3,1,352,1461417.116201305,545876.2998723142,274164.5875768003,0,2885.993783270625 -4654,5780,10458,10457,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.164801820144531,8.163198076248349,42,2,-76.45274268920735,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.586168329358081,7.824724803881936,41.17,59.31,47.1,56.62,10,1,1,0,0,4,1,3,1,352,1461417.116201305,545876.2998723142,274164.5875768003,0,2885.993783270625 -4655,5781,10459,10460,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.993351468486544,8.373971038769115,0,36,1,-146.6088266991712,0,1,2,2019,18,6,40,40,1,6,0,10.83062951145025,10.83062951145025,0,0,0,0,0,1,0,1,0,0,42.62,57.19,55.36,51.57,6.666666666666667,1,1,0,0,11,7,5,1,730,737365.2859842269,253608.4576162164,406462.7643770984,0,4556.694896637931 -4655,5781,10460,10459,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.531781505010887,8.747550408779082,0,35,-1,-166.6391469374595,0,2,2,2019,11,0,55,55,1,0,0,10.98071836213288,10.98071836213288,0,0,0,0,0,1,0,1,0,0,55.36,51.57,42.62,57.19,8.333333333333334,1,1,0,0,11,7,5,1,730,737365.2859842269,253608.4576162164,406462.7643770984,0,4556.694896637931 -4656,5782,10461,10462,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.671548885994506,7.525700092193257,0,9,0,-67.30594876205345,0,2,1,2019,18,6,28,25,1,6,0,5.975581295658274,5.975581295658274,0,0,0,0,0,0,0,0,2.763224781467807,0,38.8,59.15,51.41,56.15,6.666666666666667,1,1,0,0,9,4,5,1,645.5,1709819.883403129,1253536.497135887,235662.2595429574,39755.38450596825,3520.454770890728 -4656,5782,10462,10461,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.714696891974924,8.725551781923555,0,9,0,-55.00105573855785,-9,2,2,2019,12,0,35,0,1,0,0,20.38944554278856,20.38944554278856,0,0,0,0,0,0,0,0,0,0,51.41,56.15,38.8,59.15,6.666666666666667,1,1,0,0,9,4,5,1,645.5,1709819.883403129,1253536.497135887,235662.2595429574,39755.38450596825,3520.454770890728 -4657,5783,10463,-9,10465,10464,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.563044058965,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,676.25,642668.4487290381,171265.7999458913,254655.8871082042,62158.63575305849,2868.428583655139 -4657,5783,10464,10465,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,8.535640168074133,8.432136191272411,0,8,3,-26.5613570039964,0,-9,-9,2019,9,0,42,45,1,1,0,14.29091292317198,14.29091292317198,0,0,0,0,0,1,1,0,3.363091381564736,0,52,55,25.24,56.95,8,1,1,0,0,1,9,4,1,676.25,642668.4487290381,171265.7999458913,254655.8871082042,62158.63575305849,2868.428583655139 -4657,5783,10465,10464,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.296766846418358,7.444389763973459,0,22,-3,-1.167775238654722,0,3,2,2019,13,1,32,50,1,1,0,6.14545301108877,6.14545301108877,0,0,0,0,0,1,1,0,0,0,25.24,56.95,52,55,5,1,1,0,0,9,9,4,1,676.25,642668.4487290381,171265.7999458913,254655.8871082042,62158.63575305849,2868.428583655139 -4657,5783,10466,-9,10465,10464,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1023.045379467012,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,676.25,642668.4487290381,171265.7999458913,254655.8871082042,62158.63575305849,2868.428583655139 -4658,5784,10467,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,7.114866512575683,7.150004200809173,0,0,-995.2081202835292,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.136816783516246,7.132095497210209,55.74,44.96,-9,-9,10,1,1,0,0,0,9,3,1,805,500162.381734547,173729.4785452915,433880.4701997692,0,1281.750209701233 -4658,5785,10468,-9,-9,10467,1,0,58,0,0,0,2,2,-9,0,4,7.423040472882141,7.148872058246838,5.7319752226423,0,0,-975.3329051060987,0,-9,3,2019,8,0,22,18,1,0,0,7.733293610711402,7.733293610711402,0,0,0,0,0,1,1,0,3.778612034643091,5.490868332088316,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,352,-102963.3540519657,40704.022830115,0,0,837.8547963319388 -4659,5786,10469,-9,10471,10470,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.6048631508093,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,979.6666666666666,493628.2887546243,8955.010263641618,470034.2296326173,150733.9406126358,4029.115997605379 -4659,5786,10470,10471,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.796445412998924,8.868984029286825,0,5,6,-86.32645510176221,0,-9,-9,2019,16,4,49,49,1,4,0,11.40363188061868,11.40363188061868,0,0,0,0,0,1,1,0,0,0,38.15,62.02,36.63,50.87,6.666666666666667,1,1,0,0,10,11,5,1,979.6666666666666,493628.2887546243,8955.010263641618,470034.2296326173,150733.9406126358,4029.115997605379 -4659,5786,10471,10470,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.82808675860678,9.053076266347768,0,5,-6,-41.81895183970603,0,2,1,2019,16,3,40,40,1,3,0,16.82581607936875,16.82581607936875,0,0,0,0,0,1,1,0,0,0,36.63,50.87,38.15,62.02,3.333333333333333,1,1,0,0,10,11,5,1,979.6666666666666,493628.2887546243,8955.010263641618,470034.2296326173,150733.9406126358,4029.115997605379 -4660,5787,10472,10474,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,7.398359096993899,7.347828246971027,0,17,9,-3.610415664745418,0,3,2,2019,10,0,40,90,1,0,0,4.634062784380779,4.634062784380779,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.63,58.83,6.666666666666667,1,1,0,0,12,6,2,0,401,170383.5710963031,0,0,0,1052.434350354831 -4660,5787,10473,-9,10474,10472,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.128342249402,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,6,2,0,401,170383.5710963031,0,0,0,1052.434350354831 -4660,5787,10474,10472,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,0,0,0,17,0,-28.69778173285642,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,57.33,53.46,8.333333333333334,1,1,0,0,0,6,2,0,401,170383.5710963031,0,0,0,1052.434350354831 -4661,5788,10475,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1055.895536326307,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.65,60.41,-9,-9,10,1,1,0,0,0,4,1,1,405,93388.42826292783,0,170800.6319395486,0,242.2412903452063 -4662,5789,10476,10479,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,0,0,0,3,-8,46.5203726513238,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,54.3,40.13,53.21,3.333333333333333,1,1,0,1,0,12,3,0,1136.25,-90854.91383401476,5700.497127875286,0,0,1447.901037750142 -4662,5789,10477,-9,10476,10479,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.2539522482933,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,1136.25,-90854.91383401476,5700.497127875286,0,0,1447.901037750142 -4662,5789,10478,-9,10476,10479,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.6269009490758,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,1136.25,-90854.91383401476,5700.497127875286,0,0,1447.901037750142 -4662,5789,10479,10476,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,7.842925818753741,8.04420278944907,0,3,8,47.12763426907165,0,-9,-9,2019,18,6,40,40,1,6,0,8.450766808033025,8.450766808033025,0,0,0,0,0,1,1,0,0,0,40.13,53.21,43.43,54.3,3.333333333333333,1,1,0,1,12,12,3,0,1136.25,-90854.91383401476,5700.497127875286,0,0,1447.901037750142 -4663,5790,10480,10481,-9,-9,1,0,37,0,1,0,1,1,1,0,5,9.118961466594568,9.07565867382206,0,15,-4,-1.145153577974527,-9,1,1,2019,6,0,8,0,1,0,0,101.0996364003066,101.0996364003066,0,0,0,0,0,0,0,0,1.913462485990258,0,62.39,56.71,48,51,10,2,3,0,0,4,8,5,1,1251.666666666667,2128059.564841415,1194486.427303211,462580.6969378817,0,10297.99566789866 -4663,5790,10481,10480,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.294056188910252,9.528211985547289,0,15,4,208.4337469643802,0,-9,-9,2019,6,1,40,40,1,1,0,43.87557954591771,43.87557954591771,0,0,0,0,0,0,0,0,0,0,48,51,62.39,56.71,5,2,3,0,0,11,8,5,1,1251.666666666667,2128059.564841415,1194486.427303211,462580.6969378817,0,10297.99566789866 -4663,5790,10482,-9,10480,10481,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.764305558503,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,1251.666666666667,2128059.564841415,1194486.427303211,462580.6969378817,0,10297.99566789866 -4664,5791,10483,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,5.694122323271058,5.713944181532207,0,0,-971.9559072748575,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.877528780240261,52.63,35.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,152,1059635.817057909,114803.9003974947,341846.2353512512,0,454.7383162280735 -4665,5792,10484,10485,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.272540203609434,8.340953712548831,0,6,10,132.2901994054094,0,-9,-9,2019,9,0,40,56,1,1,0,12.18360796188422,12.18360796188422,0,0,0,0,0,1,1,0,0,0,54,53,57.16,56.15,8,1,1,0,0,1,1,4,1,537,452605.0463684954,142265.0445015263,132994.9947618245,11932.76425283671,2902.632919936791 -4665,5792,10485,10484,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.607466344318905,7.683290845580378,0,23,-10,-93.9934240793779,0,2,2,2019,10,0,23,23,1,0,0,11.98010814632326,11.98010814632326,0,0,0,0,0,1,1,0,1.845943009390905,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,8,1,4,1,537,452605.0463684954,142265.0445015263,132994.9947618245,11932.76425283671,2902.632919936791 -4666,5793,10486,10487,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,6.970889364993575,6.906431204060698,0,5,7,6.686320739366818,0,3,3,2019,23,8,30,38,1,8,0,3.463100225277098,3.463100225277098,0,0,0,0,0,1,1,0,0,0,28.08,63.9,29.03,58.4,3.333333333333333,1,1,0,0,4,11,4,1,963.5,433794.6621801133,203425.6528056358,252397.8815975703,0,2864.764347984603 -4666,5793,10487,10486,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.769069691324036,8.85645975080773,0,5,-7,63.40774344565833,0,3,3,2019,13,1,37,39,1,1,0,20.50179276017624,20.50179276017624,0,0,0,0,0,1,1,0,0,0,29.03,58.4,28.08,63.9,1.666666666666667,1,1,0,0,8,11,4,1,963.5,433794.6621801133,203425.6528056358,252397.8815975703,0,2864.764347984603 -4667,5794,10488,10490,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,7.647446785519768,8.172775545041636,0,2,0,-14.00749638609837,0,2,-9,2019,5,0,30,25,1,0,0,9.295534674040224,9.295534674040224,0,0,0,0,0,1,1,0,0,0,54.69,57.47,49,58,10,1,1,0,0,10,11,4,1,604.3333333333334,284408.0482284224,162790.7980765654,0,0,3151.89859292002 -4667,5794,10489,-9,10488,10490,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.389057848432,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,604.3333333333334,284408.0482284224,162790.7980765654,0,0,3151.89859292002 -4667,5794,10490,10488,-9,-9,1,1,29,0,1,0,2,2,-9,0,4,8.434168073947701,7.93167170315911,0,2,0,-95.49884266700209,-9,-9,-9,2019,10,0,50,0,1,1,0,8.828822214160443,8.828822214160443,0,0,0,0,0,1,1,0,0,0,49,58,54.69,57.47,7,4,1,0,0,1,11,4,1,604.3333333333334,284408.0482284224,162790.7980765654,0,0,3151.89859292002 -4668,5795,10491,10492,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.047656863761526,8.849433266423071,0,20,6,125.9302258241259,0,-9,-9,2019,7,0,98,36,1,0,0,10.91659142565655,10.91659142565655,0,0,0,0,28,1,1,0,0,0,41.17,59.31,49,55,8.333333333333334,1,1,0,0,9,1,4,1,359,82991.99681059172,58261.42729179943,0,0,3669.231298875975 -4668,5795,10492,10491,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,5.372746558591959,5.393268738496428,0,20,-6,95.56134236798991,0,-9,-9,2019,10,0,10,10,1,1,0,2.453440771420738,2.453440771420738,0,0,0,0,0,1,1,0,0,0,49,55,41.17,59.31,8,1,1,0,0,1,1,4,1,359,82991.99681059172,58261.42729179943,0,0,3669.231298875975 -4668,5795,10493,-9,10492,10491,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.17630956535,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,359,82991.99681059172,58261.42729179943,0,0,3669.231298875975 -4668,5796,10494,-9,10492,10491,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-918.6810432616235,-9,2,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,1,1,1,359,54642.14306114265,0,0,0,724.6481005287878 -4669,5797,10495,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.642389570499679,8.670072252207449,0,0,0,-888.5973642948335,0,2,2,2019,7,0,40,30,1,0,0,16.69010978176645,16.69010978176645,0,0,0,0,0,0,0,0,3.442979137743516,0,59.29,49.68,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,369,146536.9496950047,43467.77500454403,189086.7302056254,110951.5046081611,2661.270892334828 -4670,5798,10496,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.415840297203774,8.592121252736986,0,0,0,-920.3659523816938,0,2,2,2019,10,0,35,37,1,0,0,13.1261056322419,13.1261056322419,0,0,0,0,0,0,0,0,1.863034207401129,0,46.34,61.24,-9,-9,6.666666666666667,1,1,0,0,7,4,4,1,366,78219.53949938272,0,204249.5739714252,109044.4251156021,1797.881693935589 -4671,5799,10497,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.963361722971053,6.721188262832159,0,0,-1137.259990130142,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.153949246047002,7.246767802837535,52.71,47.23,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,709,205577.0617084377,0,150160.826319983,0,1375.893165936935 -4672,5800,10498,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,9.008148585539066,8.968833334281406,0,0,0,-1069.868732712994,0,2,1,2019,4,0,30,30,1,0,0,31.95961175000556,31.95961175000556,0,0,0,0,0,0,0,0,0,0,59.24,54,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,310,30692.43189603041,-29747.46267967642,0,0,3797.660334881155 -4673,5801,10499,-9,10501,-9,1,1,37,0,0,0,2,2,-9,0,3,8.367055742373653,7.949092922890719,0,0,0,-975.5417896177604,0,3,3,2019,12,1,44,46,1,1,0,8.876997988283044,8.876997988283044,0,0,0,0,0,1,1,0,7.263313270605424,0,43.83,48.77,-9,-9,5,2,3,0,0,11,6,4,1,590,193660.0124157078,-32662.69270655836,0,0,2192.718449735916 -4673,5802,10500,-9,10501,-9,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1045.251154584339,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,6,1,1,399,-39132.45416304764,0,0,0,870.7011833285999 -4673,5803,10501,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.254419230657,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,39.39,37.66,-9,-9,5,2,3,0,1,0,6,1,1,462,119687.446423853,0,128731.3028642459,0,-453.6142001490822 -4674,5804,10502,-9,10503,-9,1,0,16,0,2,1,2,0,-9,0,3,0,3.832778380966396,3.70354797540903,0,0,-964.4383312493355,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.825314115365015,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,566.3333333333334,34994.90234399886,70315.97577821412,93227.67176299174,80741.08820919882,1585.165742639389 -4674,5804,10503,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.476719629516438,7.887397720632105,6.591142024067468,0,0,-1053.617465975175,0,3,2,2019,14,2,22,23,1,2,0,9.589820936743843,9.589820936743843,0,0,0,0,0,1,1,0,6.458990772390242,0,46.68,47.98,-9,-9,8.333333333333334,1,1,0,1,8,6,3,1,566.3333333333334,34994.90234399886,70315.97577821412,93227.67176299174,80741.08820919882,1585.165742639389 -4674,5804,10504,-9,10503,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-985.1487510968788,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,6,3,1,566.3333333333334,34994.90234399886,70315.97577821412,93227.67176299174,80741.08820919882,1585.165742639389 -4674,5805,10505,-9,10503,-9,1,1,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-968.6991770118061,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,497,-7390.961333357583,0,0,0,0 -4675,5806,10506,-9,10507,10509,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.733717793015,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,914.75,313160.0248641814,202220.8695170879,207734.2954241338,39860.62911982415,2942.297388252399 -4675,5806,10507,10509,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.378861240850201,7.243668347763762,0,22,-1,5.100850001997373,0,2,3,2019,16,4,25,25,1,4,0,7.305967955218354,7.305967955218354,0,0,0,0,0,1,1,0,0,0,35.55,42.81,42.47,44.11,8.333333333333334,1,1,0,0,12,5,4,1,914.75,313160.0248641814,202220.8695170879,207734.2954241338,39860.62911982415,2942.297388252399 -4675,5806,10508,-9,10507,10509,1,0,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-971.8941554621613,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,5,4,1,914.75,313160.0248641814,202220.8695170879,207734.2954241338,39860.62911982415,2942.297388252399 -4675,5806,10509,10507,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.846731054085577,8.986284176228818,0,22,1,36.57016901013917,0,2,2,2019,13,1,42,40,1,1,0,17.15206457260228,17.15206457260228,0,0,0,0,0,1,1,0,0,0,42.47,44.11,35.55,42.81,5,1,1,0,0,12,5,4,1,914.75,313160.0248641814,202220.8695170879,207734.2954241338,39860.62911982415,2942.297388252399 -4676,5807,10510,10511,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,15,-3,165.4946828603188,0,-9,-9,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,47,52,6,2,3,1,0,0,8,3,0,749.2,540648.3844451265,0,495643.3378902189,13686.90933937888,1606.269314402843 -4676,5807,10511,10510,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,8.253328072307635,8.357704758886745,0,8,3,114.0630851905853,-9,3,2,2019,11,0,37,0,1,2,0,10.35870611168168,10.35870611168168,0,0,0,0,0,1,1,0,0,0,47,52,40,41,7,2,3,0,0,13,8,3,0,749.2,540648.3844451265,0,495643.3378902189,13686.90933937888,1606.269314402843 -4676,5807,10512,-9,10510,10511,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.468141156119,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,749.2,540648.3844451265,0,495643.3378902189,13686.90933937888,1606.269314402843 -4676,5807,10513,-9,10510,10511,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1022.9855936877,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,749.2,540648.3844451265,0,495643.3378902189,13686.90933937888,1606.269314402843 -4676,5807,10514,-9,10510,10511,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1040.835572346155,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,749.2,540648.3844451265,0,495643.3378902189,13686.90933937888,1606.269314402843 -4677,5808,10515,-9,10517,10516,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-998.3902847375092,-9,1,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,2,4,1,240.6666666666667,173502.2538898296,-35661.95185786687,49549.58348548258,50948.67755459688,2890.973769659369 -4677,5808,10516,10517,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,6.919575932474117,7.100207116193128,0,20,9,38.44508580048204,-9,-9,-9,2019,8,0,20,0,1,0,0,6.455216795125475,6.455216795125475,0,0,0,0,0,1,1,0,0,0,43.71,56.91,54.37,54.8,8.333333333333334,2,3,0,0,7,2,4,1,240.6666666666667,173502.2538898296,-35661.95185786687,49549.58348548258,50948.67755459688,2890.973769659369 -4677,5808,10517,10516,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.675559327540977,8.308239577398611,0,20,0,-27.78596705314583,0,-9,-9,2019,10,0,40,50,1,0,0,18.04814150096939,18.04814150096939,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.71,56.91,8.333333333333334,2,3,0,0,10,2,4,1,240.6666666666667,173502.2538898296,-35661.95185786687,49549.58348548258,50948.67755459688,2890.973769659369 -4677,5809,10518,-9,10517,10516,1,1,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1083.562485082172,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,2,1,1,1570,0,0,0,0,0 -4678,5810,10519,10520,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.59396672605398,8.910889181940369,57,1,-35.01132950723551,0,2,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,8.747391797628694,55.23,32.92,44.88,46.67,8.333333333333334,1,1,0,0,0,9,4,1,481.5,1272836.621415078,676065.8315137464,400795.019358499,0,3381.832663678057 -4678,5810,10520,10519,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,57,-1,3.117587037528342,0,3,2,2019,16,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.965168728627209,0,44.88,46.67,55.23,32.92,8.333333333333334,1,1,0,0,0,9,4,1,481.5,1272836.621415078,676065.8315137464,400795.019358499,0,3381.832663678057 -4679,5811,10521,10522,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,7.602774892074081,7.813191754200249,10,-2,19.5595190698809,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,7.721315778207701,26.81,27.18,50,49,3.333333333333333,1,1,0,0,0,5,4,1,940,1814790.843139953,1536737.697111239,138681.4452063456,0,2965.378390774404 -4679,5811,10522,10521,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.438241362329185,8.200346512695331,0,10,2,37.1990996911952,0,3,3,2019,10,0,38,39,1,1,0,11.26248826146966,11.26248826146966,0,0,0,0,0,1,1,0,5.516266475993381,0,50,49,26.81,27.18,7,1,1,0,0,1,5,4,1,940,1814790.843139953,1536737.697111239,138681.4452063456,0,2965.378390774404 -4680,5812,10523,10524,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.024075661952411,7.643880896278887,0,3,5,42.8548201939626,-9,-9,-9,2019,11,0,21,0,1,0,0,14.65137687507761,14.65137687507761,0,0,0,0,0,0,0,0,0,0,38.36,52.41,36.83,53.33,3.333333333333333,1,1,0,0,6,9,4,1,985,18699.73685874371,-8871.157145442521,0,0,2323.034695219229 -4680,5812,10524,10523,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.911915539896965,8.320879433082583,0,3,-5,94.63324116436438,0,2,-9,2019,14,2,37,40,1,2,0,8.25156992749594,8.25156992749594,0,0,0,0,0,0,0,0,2.240008677060048,0,36.83,53.33,38.36,52.41,6.666666666666667,1,1,0,0,11,9,4,1,985,18699.73685874371,-8871.157145442521,0,0,2323.034695219229 -4681,5813,10525,10526,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.813527196312672,9.895855234348815,0,8,2,2.306777012847155,0,2,2,2019,7,0,44,44,1,0,0,43.36691076303263,43.36691076303263,0,0,0,0,0,0,0,0,.8778026726707342,0,54.2,57.49,40.83,55.42,8.333333333333334,1,1,0,0,8,9,5,1,1266.5,4422554.708961901,2390258.146491371,689711.9159163776,0,5496.569278559539 -4681,5813,10526,10525,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,8,-2,22.91900428495494,0,2,2,2019,11,0,0,19,3,0,0,0,0,0,0,0,0,0,0,0,0,4.456817670925406,0,40.83,55.42,54.2,57.49,8.333333333333334,1,1,1,0,8,9,5,1,1266.5,4422554.708961901,2390258.146491371,689711.9159163776,0,5496.569278559539 -4682,5814,10527,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.827689356815318,8.744730543316834,0,0,0,-989.9991440296938,0,3,1,2019,12,0,39,59,1,2,0,27.45051026501739,27.45051026501739,0,0,0,0,0,0,0,0,0,0,47,49,-9,-9,7,3,4,0,0,12,8,5,1,319,118595.4913957156,0,0,0,2944.925654506933 -4683,5815,10528,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.778538374865969,7.974318753627172,0,0,0,-1092.264034195949,0,3,3,2019,7,0,42,53,1,0,0,8.078510418018347,8.078510418018347,0,0,0,0,0,0,0,0,0,0,47.91,57.48,-9,-9,8.333333333333334,1,1,0,1,7,4,3,0,164,-38299.53131590649,-104434.9222378026,0,0,1009.543865734157 -4684,5816,10529,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.901596783524504,7.229717014743561,0,0,0,-959.8640119835914,0,-9,-9,2019,17,8,40,45,1,8,0,4.596959198435391,4.596959198435391,0,0,0,0,0,0,0,0,6.527402843311693,0,46.92,60.71,-9,-9,6.666666666666667,3,4,0,1,10,8,2,1,2796,117296.9982336351,-6512.961156321844,0,0,1126.589601397208 -4684,5817,10530,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.93927775337652,7.001610930487425,0,0,0,-1042.412993592264,-9,-9,-9,2019,21,8,33,0,1,8,0,4.08717659718091,4.08717659718091,0,0,0,0,0,0,0,0,0,0,23.72,62.52,-9,-9,3.333333333333333,3,4,0,1,1,8,2,1,1170,85380.62694851567,0,0,0,659.7343765791042 -4685,5818,10531,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,1,7.697985845959299,7.866699589626405,0,0,0,-879.5794772278583,0,2,-9,2019,13,2,35,32,1,2,0,7.021762819184655,7.021762819184655,0,0,0,0,0,1,1,0,0,0,34.23,30.82,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,167,126699.1488099747,75142.8354117313,0,0,1573.276313592922 -4685,5819,10532,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.168045920794182,8.355054182545956,0,0,-919.2295024685646,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,8.372340930479577,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1353,1434859.511904096,723125.3969952534,317680.5379367743,0,2204.805993886748 -4686,5820,10533,-9,10535,10534,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1192.900233606156,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1314.333333333333,186581.7754379774,91996.84424445039,175705.8108928515,96723.53733362524,3938.149441788161 -4686,5820,10534,10535,-9,-9,1,1,34,1,1,0,2,2,-9,0,5,8.159131266541824,8.430311909852099,0,10,2,1.381330191564964,0,2,2,2019,9,1,38,41,1,1,0,12.65764687588728,12.65764687588728,0,0,0,.2791170661713789,0,1,1,0,0,0,52.39,42.38,53.82,45.2,8.333333333333334,1,1,0,0,9,2,4,1,1314.333333333333,186581.7754379774,91996.84424445039,175705.8108928515,96723.53733362524,3938.149441788161 -4686,5820,10535,10534,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.213252087473224,8.408795560824649,0,10,-2,-35.53405265405947,0,-9,-9,2019,11,0,35,35,1,0,0,11.26324791092679,11.26324791092679,0,0,0,0,0,1,1,0,6.493418429198524,0,53.82,45.2,52.39,42.38,10,1,1,0,0,9,2,4,1,1314.333333333333,186581.7754379774,91996.84424445039,175705.8108928515,96723.53733362524,3938.149441788161 -4687,5821,10536,10537,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-2,-146.3841683253266,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.428511856916726,0,50.91,54.79,58.05,54.52,8.333333333333334,1,1,0,0,2,8,2,1,2159,538356.1256606913,163727.8536236454,306629.340561995,0,1861.386947595593 -4687,5821,10537,10536,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,7.169341863482351,7.17898462213294,7,2,26.35817977638105,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.572249581547565,7.461131685256722,58.05,54.52,50.91,54.79,8.333333333333334,1,1,0,0,2,8,2,1,2159,538356.1256606913,163727.8536236454,306629.340561995,0,1861.386947595593 -4688,5822,10538,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-948.8002144436845,0,3,2,2019,27,12,0,0,4,12,0,0,0,1,0,33.98010784414122,0,0,1,1,0,0,0,32.8,23.13,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,2555,-159723.6157567952,0,0,0,958.6376908576922 -4689,5823,10539,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.14114759298813,7.9715072241282,0,0,0,-1170.162860067989,0,2,2,2019,6,0,35,35,1,0,0,10.44728849339399,10.44728849339399,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,4,1,272,191407.6224331462,-109921.0317337512,0,0,1428.621879114687 -4690,5824,10540,10541,-9,-9,1,0,19,0,0,0,2,2,1,0,4,7.910101019987572,7.54504255374089,0,2,-1,23.42111762134769,-9,-9,-9,2019,11,1,40,0,1,1,0,6.651021128387655,6.651021128387655,0,0,0,0,0,0,0,0,0,0,48.87,58.55,46.16,58.62,6.666666666666667,1,1,0,0,3,10,4,0,955.5,53816.65266223821,-17739.94046228071,274162.1775254195,132665.633053822,1881.292678084004 -4690,5824,10541,10540,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,8.081166911392744,8.0427056348187,0,2,1,-26.93238991891679,0,-9,-9,2019,13,2,43,42,1,2,0,6.997188300813987,6.997188300813987,0,0,0,0,0,0,0,0,0,0,46.16,58.62,48.87,58.55,5,1,1,0,0,3,10,4,0,955.5,53816.65266223821,-17739.94046228071,274162.1775254195,132665.633053822,1881.292678084004 -4691,5825,10542,10544,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,9.228649298487527,9.08273367112943,0,5,1,-87.37883936591722,0,2,2,2019,6,0,40,55,1,0,0,28.29249035800736,28.29249035800736,0,0,0,0,0,1,1,0,.7747857422228585,0,51.83,57.2,48.77,60.16,8.333333333333334,1,1,0,0,9,8,5,1,536,687005.6470840976,39365.40024431221,415685.9544750006,224938.885308975,5369.305352830967 -4691,5825,10543,-9,10544,10542,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.348325601906,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,536,687005.6470840976,39365.40024431221,415685.9544750006,224938.885308975,5369.305352830967 -4691,5825,10544,10542,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.762762104125398,8.649109253334368,0,5,-1,78.63636987367912,0,1,2,2019,14,3,43,33,1,3,0,16.19115127761446,16.19115127761446,0,0,0,0,0,1,1,0,2.392176430388412,0,48.77,60.16,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,536,687005.6470840976,39365.40024431221,415685.9544750006,224938.885308975,5369.305352830967 -4692,5826,10545,10547,-9,-9,1,1,28,1,1,0,2,2,-9,0,5,8.736227765736418,8.102743537174097,0,1,-1,90.12102713122425,-9,-9,-9,2019,7,0,50,0,1,0,0,9.18826482717447,9.18826482717447,0,0,0,0,0,1,1,0,1.920997012417283,0,55.09,55.87,48.77,60.16,8.333333333333334,1,1,0,0,9,11,5,1,728,37743.63898457192,0,269273.5425961618,198337.6584811712,5887.249787666161 -4692,5826,10546,-9,10547,10545,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.52193176071,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,728,37743.63898457192,0,269273.5425961618,198337.6584811712,5887.249787666161 -4692,5826,10547,10545,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,9.093579789021964,8.904815423822484,0,1,1,-99.72391131852027,-9,-9,-9,2019,8,0,50,0,1,0,0,17.69088122424381,17.69088122424381,0,0,0,0,0,1,1,0,1.947968345550006,0,48.77,60.16,55.09,55.87,8.333333333333334,1,1,0,0,8,11,5,1,728,37743.63898457192,0,269273.5425961618,198337.6584811712,5887.249787666161 -4693,5827,10548,-9,10550,10551,1,1,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-976.2693489931025,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,2,5,1,920.75,541346.4945591136,358478.7176309024,206449.0069193876,55658.65999158479,4252.981410780155 -4693,5827,10549,-9,10550,10551,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.9917160316124,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,920.75,541346.4945591136,358478.7176309024,206449.0069193876,55658.65999158479,4252.981410780155 -4693,5827,10550,10551,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.311100122224927,8.326920492313247,0,28,-1,47.1668103152335,0,3,-9,2019,8,0,41,40,1,0,0,9.752441286989596,9.752441286989596,0,0,0,0,2,1,1,0,0,0,49.41,58.28,55.39,54.22,8.333333333333334,1,1,0,0,5,2,5,1,920.75,541346.4945591136,358478.7176309024,206449.0069193876,55658.65999158479,4252.981410780155 -4693,5827,10551,10550,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.881413450130845,9.11727357513341,0,27,1,-38.3626491835314,0,-9,-9,2019,12,0,43,39,1,0,0,17.29693543094573,17.29693543094573,0,0,0,0,0,1,1,0,0,0,55.39,54.22,49.41,58.28,6.666666666666667,1,1,0,0,8,2,5,1,920.75,541346.4945591136,358478.7176309024,206449.0069193876,55658.65999158479,4252.981410780155 -4693,5828,10552,-9,10550,10551,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-938.1654195830487,1,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,98,0,0,0,0,0 -4694,5829,10553,10554,-9,-9,1,0,55,1,2,0,3,3,-9,0,2,0,0,0,7,-5,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,32.31,33.98,23.19,27,0,1,1,0,1,2,11,1,1,603,62024.19917483946,0,123005.6347085909,47699.39026903175,1511.084751699895 -4694,5829,10554,10553,-9,-9,1,1,60,1,2,0,3,3,-9,0,1,0,0,0,7,5,0,0,3,3,2019,30,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.19,27,32.31,33.98,0,1,1,0,1,0,11,1,1,603,62024.19917483946,0,123005.6347085909,47699.39026903175,1511.084751699895 -4694,5830,10555,10557,-9,-9,1,1,22,1,2,0,3,3,-9,0,4,4.514264886118363,4.199217443389466,0,5,-3,118.9002009810841,0,-9,-9,2019,15,3,40,0,1,3,0,.2872406619403943,.2872406619403943,0,0,0,0,0,1,1,0,0,0,33.6,61.67,52.83,45.73,6.666666666666667,1,1,0,0,1,11,2,1,238.6666666666667,89445.05714246123,0,0,0,1023.140532299432 -4694,5830,10556,-9,10557,10555,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.476554073038,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,238.6666666666667,89445.05714246123,0,0,0,1023.140532299432 -4694,5830,10557,10555,10553,10554,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,5,3,42.23611841531188,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52.83,45.73,33.6,61.67,5,1,1,0,0,4,11,2,1,238.6666666666667,89445.05714246123,0,0,0,1023.140532299432 -4694,5831,10558,-9,10559,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.463211031467,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,1920,68355.14745994979,0,0,0,734.6092960857304 -4694,5831,10559,-9,10553,10554,1,0,21,1,2,0,2,2,0,0,4,0,0,0,0,0,-884.6612367662636,-9,3,3,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,27.77,63.42,-9,-9,0,1,1,0,1,0,11,1,1,1920,68355.14745994979,0,0,0,734.6092960857304 -4695,5832,10560,10562,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.143057631606592,8.093826990751911,0,8,1,-25.29434722957511,0,3,3,2019,10,1,33,28,1,1,0,11.96669947978085,11.96669947978085,0,0,0,0,0,1,1,0,0,0,48.82,54.38,48.45,57.49,8.333333333333334,1,1,0,0,9,9,5,1,582.5,262431.474123979,45236.71160950008,319389.8641079178,228514.5945806454,4093.181559018731 -4695,5832,10561,-9,10560,10562,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.5242222131486,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,582.5,262431.474123979,45236.71160950008,319389.8641079178,228514.5945806454,4093.181559018731 -4695,5832,10562,10560,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.773101785957371,8.611534672103842,0,8,-1,60.86779604695664,0,-9,-9,2019,12,2,44,40,1,2,0,20.09510964979568,20.09510964979568,0,0,0,0,0,1,1,0,2.334618178969001,0,48.45,57.49,48.82,54.38,8.333333333333334,1,1,0,0,9,9,5,1,582.5,262431.474123979,45236.71160950008,319389.8641079178,228514.5945806454,4093.181559018731 -4695,5832,10563,-9,10560,10562,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.469828362175,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,582.5,262431.474123979,45236.71160950008,319389.8641079178,228514.5945806454,4093.181559018731 -4696,5833,10564,-9,10566,10565,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.0257303137274,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,1680.75,-77071.92900398426,0,0,0,2657.621017669437 -4696,5833,10565,10566,-9,-9,1,1,47,0,2,0,3,3,-9,1,2,0,0,0,1,5,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.94,45.89,54.78,34.44,5,1,1,1,1,0,9,1,0,1680.75,-77071.92900398426,0,0,0,2657.621017669437 -4696,5833,10566,10565,-9,-9,1,0,42,0,2,0,3,3,-9,1,3,0,0,0,1,-5,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.78,34.44,53.94,45.89,6.666666666666667,1,1,1,1,0,9,1,0,1680.75,-77071.92900398426,0,0,0,2657.621017669437 -4696,5833,10567,-9,10566,10565,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.6711354372618,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1680.75,-77071.92900398426,0,0,0,2657.621017669437 -4697,5834,10568,10569,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,8.504012853232512,8.658776379308264,0,7,0,40.26452286208511,0,1,1,2019,22,11,45,40,1,11,0,16.47820367893502,16.47820367893502,0,0,0,0,0,1,1,0,0,0,20.23,65.13,45.46,61.87,6.666666666666667,1,1,0,1,8,13,5,1,492,797810.2695762072,701296.2977569288,272605.9311549831,260241.7206313852,6070.187846476937 -4697,5834,10569,10568,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,9.195334866545167,9.076423639628192,0,7,0,25.24913957474484,0,2,3,2019,11,1,38,37,1,1,0,28.12814100193864,28.12814100193864,0,0,0,0,0,1,1,0,0,0,45.46,61.87,20.23,65.13,3.333333333333333,1,1,0,0,8,13,5,1,492,797810.2695762072,701296.2977569288,272605.9311549831,260241.7206313852,6070.187846476937 -4697,5834,10570,-9,10569,10568,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.015849135773,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,492,797810.2695762072,701296.2977569288,272605.9311549831,260241.7206313852,6070.187846476937 -4698,5835,10571,10572,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,8.194384738325157,7.918051662463121,0,27,1,115.9377445107663,0,2,2,2019,14,2,43,48,1,2,0,8.451001493372194,8.451001493372194,0,0,0,0,0,0,0,0,0,0,37.49,38.46,49.04,55.86,8.333333333333334,1,1,0,0,10,5,5,1,874,502693.9712582552,378536.3697432305,274075.639215062,94663.83278969224,4423.849168867775 -4698,5835,10572,10571,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.805107255949476,9.011335678179941,0,27,-1,42.5833523060566,0,3,3,2019,7,0,80,50,1,0,0,9.411925752097488,9.411925752097488,0,0,0,0,0,0,0,0,0,0,49.04,55.86,37.49,38.46,6.666666666666667,1,1,0,0,10,5,5,1,874,502693.9712582552,378536.3697432305,274075.639215062,94663.83278969224,4423.849168867775 -4698,5836,10573,-9,10571,10572,1,0,19,0,0,0,2,2,-9,0,5,7.003236249440659,7.043666263363383,0,0,0,-993.0959962348359,0,2,2,2019,2,0,47,0,1,0,1,2.732707672440152,2.732707672440152,0,0,0,0,2,0,0,0,0,0,51.73,58.82,-9,-9,0,1,1,0,0,3,5,2,1,340,0,0,0,0,1015.521611986701 -4699,5837,10574,-9,10575,10576,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.800734495342,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,450.75,300621.5081219273,124028.2401868332,308143.9418933077,0,4141.043849534841 -4699,5837,10575,10576,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.945504350632104,7.891779434196381,0,19,-6,30.9626878375291,0,2,2,2019,7,0,28,44,1,0,0,11.22989406233266,11.22989406233266,0,0,0,0,0,1,1,0,0,0,52.37,56.93,54.79,55.86,8.333333333333334,1,1,0,0,8,9,4,1,450.75,300621.5081219273,124028.2401868332,308143.9418933077,0,4141.043849534841 -4699,5837,10576,10575,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.187401998898221,8.760050975924086,0,6,6,-111.4535177342398,0,2,2,2019,6,0,45,45,1,0,0,22.9825295895121,22.9825295895121,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.37,56.93,8.333333333333334,1,1,0,0,8,9,4,1,450.75,300621.5081219273,124028.2401868332,308143.9418933077,0,4141.043849534841 -4699,5837,10577,-9,10575,10576,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.4297603710418,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,450.75,300621.5081219273,124028.2401868332,308143.9418933077,0,4141.043849534841 -4700,5838,10578,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.435954668944548,8.003186264177629,0,0,0,-913.7286326944229,0,-9,-9,2019,7,0,47,39,1,0,0,10.26540292472062,10.26540292472062,0,0,0,0,0,0,0,0,2.593112270417762,0,54.2,57.49,-9,-9,10,1,1,0,0,11,6,4,1,354,3444.759797388203,78716.29725495883,0,0,1748.328282502895 -4701,5839,10579,-9,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,6.873972645619325,7.164308291546457,0,0,0,-922.8304065554564,0,2,-9,2019,7,0,16,16,1,0,0,7.628483883603091,7.628483883603091,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,7,4,2,1,494.8,53809.80338787641,0,0,0,2129.342099547192 -4701,5839,10580,-9,10579,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.4042762236393,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,494.8,53809.80338787641,0,0,0,2129.342099547192 -4701,5839,10581,-9,10579,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-913.5534495810866,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,494.8,53809.80338787641,0,0,0,2129.342099547192 -4701,5839,10582,-9,10579,-9,1,1,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-956.0281761881432,-9,2,-9,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.87,58.27,-9,-9,10,1,1,0,0,0,4,2,1,494.8,53809.80338787641,0,0,0,2129.342099547192 -4701,5839,10583,-9,10579,-9,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1033.701158248556,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,494.8,53809.80338787641,0,0,0,2129.342099547192 -4702,5840,10584,10585,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.012791776793459,7.322060838563974,44,4,149.9725862171515,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.221597748477541,7.127608875973473,60.69,39.98,47.08,48.43,10,1,1,0,0,0,10,3,1,580.5,944496.7650553292,428875.0379234195,10017.59529589518,0,2421.790814992628 -4702,5840,10585,10584,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.522002184113032,6.416921876724131,46,-4,-37.16412574292208,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.677436492160609,6.343504089820629,47.08,48.43,60.69,39.98,8.333333333333334,1,1,0,0,2,10,3,1,580.5,944496.7650553292,428875.0379234195,10017.59529589518,0,2421.790814992628 -4703,5841,10586,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.510679411133315,8.468444017819012,0,0,0,-1034.230861771238,0,2,2,2019,24,8,38,39,1,8,0,15.16704512070822,15.16704512070822,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,7,12,5,0,494,57206.17408333933,12945.84947291194,0,0,1203.084611338124 -4704,5842,10587,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,8.149888443336895,8.18252430219367,0,0,0,-834.1777855282764,0,2,2,2019,9,0,40,40,1,1,0,12.06757301298748,12.06757301298748,0,0,0,0,0,0,0,0,1.97342097956428,0,50,60,-9,-9,8,1,1,0,0,7,11,4,0,149,129096.7872013128,2083.886315582001,0,0,1641.775476492546 -4705,5843,10588,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,7.644841648501987,7.657161174691038,0,0,0,-961.1241731279518,0,-9,-9,2019,27,11,38,43,1,11,0,8.385760337018663,8.385760337018663,0,0,0,0,0,1,1,0,0,0,21.62,65.92,-9,-9,3.333333333333333,1,1,0,1,10,4,3,0,452,-77146.33117359818,-62890.74922633689,0,0,1329.216200957674 -4706,5844,10589,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.799302184713927,9.039481109581097,6.734629786380821,0,0,-926.5370726899372,0,2,2,2019,9,0,46,43,1,0,0,17.91253804552484,17.91253804552484,0,0,0,0,0,1,1,0,6.703230030455863,0,44.02,60.7,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,1962,456370.0548165382,110680.1935678708,717533.3615950609,251778.1605403247,3298.718743449755 -4707,5845,10590,10591,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.393315920306575,8.505647222428149,6.276501842549939,7,-4,122.2761874723383,0,-9,-9,2019,6,1,25,24,1,1,0,16.63492233415405,16.63492233415405,0,0,0,0,5.48,0,0,0,6.873244672168662,0,56.86,50.75,51,48,8.333333333333334,1,1,0,0,12,9,5,1,290.5,2041232.359112404,1628896.889786609,352220.5999389132,0,5332.685623171591 -4707,5845,10591,10590,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.696496130592307,8.728982308361092,8.20696822450692,7,4,-49.32247424841265,0,-9,-9,2019,10,0,40,30,1,1,0,5.140138822778117,5.140138822778117,0,0,0,0,0,0,0,0,7.875761069409895,8.058337340312729,51,48,56.86,50.75,7,1,1,0,0,1,9,5,1,290.5,2041232.359112404,1628896.889786609,352220.5999389132,0,5332.685623171591 -4708,5846,10592,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,7.392968004309024,7.128953099982666,0,0,-1127.655460074011,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.269556242111081,7.073801973067827,65.13,21.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,456,622874.2764212256,194951.1531053943,224144.2529663272,0,1469.485740937971 -4709,5847,10593,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,0,0,-922.0269815005599,0,1,1,2019,9,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,8.534164209901279,0,56.58,47.39,-9,-9,8.333333333333334,1,1,0,0,12,2,1,1,596,0,0,0,0,2607.865815539421 -4710,5848,10594,10595,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.868003715791003,6.862143075734084,51,-2,58.56795581052329,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.133359202373417,55.01,36.8,54.84,39.49,8.333333333333334,1,1,0,0,6,5,2,1,520.5,602871.3668720211,121460.1403489786,224085.819142558,0,2248.59475748935 -4710,5848,10595,10594,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.067551843235266,6.263104663556766,51,2,-19.98870813807952,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,6.257029347896111,54.84,39.49,55.01,36.8,0,1,1,0,0,0,5,2,1,520.5,602871.3668720211,121460.1403489786,224085.819142558,0,2248.59475748935 -4710,5849,10596,-9,10594,10595,1,1,32,0,0,0,2,2,-9,0,3,6.654589065173417,6.79193557143968,0,0,0,-991.4281846160102,0,2,2,2019,6,0,16,16,1,0,0,6.887654343051655,6.887654343051655,0,0,0,0,0,1,1,0,1.603698153358942,0,46,53,-9,-9,3.333333333333333,3,4,0,0,5,5,2,1,1013,252940.4169183953,-100122.3176014975,76774.45538439599,70649.18819481914,862.6511968664893 -4711,5850,10597,-9,-9,-9,1,1,67,1,2,0,2,2,-9,0,3,0,0,0,0,0,-983.0968590294103,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,1,0,37.12913276411194,0,0,1,1,0,0,0,32.5,36.13,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,1455,-59789.46214675354,0,0,0,1446.252409593181 -4711,5851,10598,-9,10601,10600,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.715910982791,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,475.25,38087.85346578172,0,0,0,1237.338334587094 -4711,5851,10599,-9,10601,10600,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.0390362100286,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,475.25,38087.85346578172,0,0,0,1237.338334587094 -4711,5851,10600,10601,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.849626074268611,8.030020060959558,0,3,1,57.92029754411082,0,-9,-9,2019,12,2,39,32,1,2,0,8.555307040991297,8.555307040991297,0,0,0,0,0,1,1,0,0,0,43.79,58.33,34.68,56.99,6.666666666666667,3,4,0,1,4,8,2,0,475.25,38087.85346578172,0,0,0,1237.338334587094 -4711,5851,10601,10600,-9,10597,1,0,30,1,2,0,2,2,-9,0,3,0,0,0,3,-1,-132.6725373960188,0,-9,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,34.68,56.99,43.79,58.33,6.666666666666667,3,4,0,0,4,8,2,0,475.25,38087.85346578172,0,0,0,1237.338334587094 -4712,5852,10602,10603,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.045283863913808,7.97355532368551,0,2,4,-108.1100957102868,0,-9,-9,2019,8,0,40,40,1,0,0,9.854768114952371,9.854768114952371,0,0,0,0,0,0,0,0,0,0,51.83,57.2,37.92,61.06,6.666666666666667,1,1,0,0,1,5,4,0,489,-48928.77206649982,2165.196348175736,115370.7221941238,87799.27243391552,1969.67438217395 -4712,5852,10603,10602,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.90757641822727,7.886528277224063,0,2,-4,-34.33202111776009,0,1,1,2019,17,5,46,42,1,5,0,6.053548921404527,6.053548921404527,0,0,0,0,0,0,0,0,0,0,37.92,61.06,51.83,57.2,6.666666666666667,1,1,0,0,3,5,4,0,489,-48928.77206649982,2165.196348175736,115370.7221941238,87799.27243391552,1969.67438217395 -4713,5853,10604,10605,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.293597355050885,5.892885830971204,6,-10,-31.29967406762119,0,2,-9,2019,11,1,0,0,4,1,0,0,0,1,0,9.127985032886539,0,0,1,1,0,3.84976752302513,6.245137270050479,60.09,28.54,58.77,32.12,8.333333333333334,1,1,0,0,1,10,2,1,420.5,535255.2121800499,121202.0554804923,277115.2125833742,0,2400.334104552875 -4713,5853,10605,10604,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.713523477853085,5.886725695510747,6,10,3.010324628885447,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.78671502754169,58.77,32.12,60.09,28.54,8.333333333333334,1,1,0,0,0,10,2,1,420.5,535255.2121800499,121202.0554804923,277115.2125833742,0,2400.334104552875 -4714,5854,10606,10607,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.487853569944901,8.48079043124801,7.037093216025978,43,1,77.56194181840026,0,3,3,2019,7,0,35,36,1,0,0,17.94214407859563,17.94214407859563,0,0,0,0,0,0,0,0,9.209223869202148,6.377431460326819,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,7,5,1,313,544668.4679641065,322331.9146168978,294079.0934914807,96265.58315028666,5283.468195324133 -4714,5854,10607,10606,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.314593485404181,8.367041059849425,7.90984958401969,9,-1,26.02040002495441,0,-9,-9,2019,7,0,10,10,1,0,0,20.20445078455478,20.20445078455478,0,0,0,0,0,0,0,0,2.795365337360425,7.822444510344774,54.1,59.11,57.16,56.15,10,1,1,0,0,10,7,5,1,313,544668.4679641065,322331.9146168978,294079.0934914807,96265.58315028666,5283.468195324133 -4715,5855,10608,-9,10609,10610,1,1,22,0,0,0,3,3,-9,1,1,0,0,0,0,0,-893.38934190882,0,1,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.97,24.31,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,148,121249.0215016555,0,0,0,1151.535960131559 -4715,5856,10609,10610,-9,-9,1,0,58,0,0,0,1,1,-9,1,5,6.973532775097364,7.167222450765077,0,7,-7,101.0784660049653,0,3,3,2019,7,0,30,0,1,0,0,5.778589920551344,5.778589920551344,0,0,0,0,71.5,1,1,0,0,0,49.36,58.53,52,48,8.333333333333334,1,1,0,0,3,12,3,1,495,327691.4188861744,390242.1479750932,122077.5286710235,0,3066.957101926345 -4715,5856,10610,10609,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.533526419691631,7.717260116476065,7,7,4.405502206466812,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.906028853348385,8.180809382430814,52,48,49.36,58.53,7,1,1,0,0,0,12,3,1,495,327691.4188861744,390242.1479750932,122077.5286710235,0,3066.957101926345 -4716,5857,10611,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.915547968751449,7.974323445787502,0,0,0,-1055.25499495074,0,-9,3,2019,11,0,44,24,1,0,0,8.483190672600543,8.483190672600543,0,0,0,0,0,0,0,0,0,0,52.57,42.37,-9,-9,5,1,1,0,1,12,10,4,0,1218,213676.0952636753,-36850.59022199355,170949.3874128448,0,729.9611711870792 -4716,5858,10612,-9,10611,-9,1,1,20,0,0,0,2,2,1,0,4,7.498846055776287,7.607645850621764,0,0,0,-939.0069913538472,-9,2,-9,2019,10,0,39,0,1,0,1,3.660936969155804,3.660936969155804,0,0,0,0,0,0,0,0,.575845966425544,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,10,3,0,201,95234.72659857958,-17369.16515393859,0,0,604.2232616298778 -4717,5859,10613,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.419599552518436,7.668383436355039,0,0,0,-986.854808987268,-9,3,2,2019,15,4,33,0,1,4,1,10.48990580054786,10.48990580054786,0,0,0,0,0,1,1,0,0,0,56.33,51.02,-9,-9,5,2,3,0,0,11,4,3,1,2893,-73797.22899416463,0,0,0,1195.400391223966 -4718,5860,10614,10616,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.568406466788421,8.419319780261699,5.780505420423534,1,5,.8162642772923228,-9,1,1,2019,24,10,40,0,1,10,0,16.52151739126998,16.52151739126998,0,0,0,0,2,1,1,0,6.143334334970891,0,40.47,55.65,48.87,58.55,3.333333333333333,1,1,0,1,12,5,3,1,1438.5,279168.9497593936,-16114.61583234724,336612.2050044368,83388.00424564083,2537.903841603864 -4718,5860,10615,-9,10616,10614,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.208424856531,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1438.5,279168.9497593936,-16114.61583234724,336612.2050044368,83388.00424564083,2537.903841603864 -4718,5860,10616,10614,-9,-9,1,0,41,0,2,0,1,1,-9,1,4,4.619650569173985,4.760097974857302,0,1,-5,31.95010502084196,-9,2,2,2019,13,2,2,0,1,2,0,7.442080076024427,7.442080076024427,0,0,0,0,120,1,1,0,0,0,48.87,58.55,40.47,55.65,6.666666666666667,1,1,0,1,11,5,3,1,1438.5,279168.9497593936,-16114.61583234724,336612.2050044368,83388.00424564083,2537.903841603864 -4718,5860,10617,-9,10616,10614,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.673393585,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1438.5,279168.9497593936,-16114.61583234724,336612.2050044368,83388.00424564083,2537.903841603864 -4719,5861,10618,-9,10620,10619,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1032.935917945777,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,794.25,748852.0519115156,176886.8431634469,459453.14970368,0,3573.328350483866 -4719,5861,10619,10620,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.355035034006683,8.648314224615163,0,19,2,13.43510848128755,0,2,1,2019,12,0,40,43,1,0,0,12.70617672142699,12.70617672142699,0,0,0,0,0,1,1,0,0,0,37.28,55.9,45.91,59.89,6.666666666666667,1,1,0,0,12,9,4,1,794.25,748852.0519115156,176886.8431634469,459453.14970368,0,3573.328350483866 -4719,5861,10620,10619,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.58290574405531,8.459162624097582,0,19,-2,72.34357135031644,0,2,1,2019,10,0,27,27,1,0,0,18.6255383813676,18.6255383813676,0,0,0,0,0,1,1,0,0,0,45.91,59.89,37.28,55.9,6.666666666666667,1,1,0,0,11,9,4,1,794.25,748852.0519115156,176886.8431634469,459453.14970368,0,3573.328350483866 -4719,5861,10621,-9,10620,10619,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.9111991344581,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,794.25,748852.0519115156,176886.8431634469,459453.14970368,0,3573.328350483866 -4720,5862,10622,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.953835025706878,8.838885143967477,0,0,0,-867.4575201906179,0,2,1,2019,27,9,40,40,1,9,0,18.96306162499774,18.96306162499774,0,0,0,0,0,0,0,0,1.820845347913339,0,23.49,44.69,-9,-9,8.333333333333334,1,1,0,0,13,9,5,0,305,8594.743043642178,0,0,0,2272.747207715985 -4721,5863,10623,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,3,0,6.587117630034242,5.674624814065133,0,0,-905.1176671091862,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,125.1222184393854,58.75336196274689,1139.204671789704,0,1,1,0,3.324854668355053,6.528060141943493,54.09,19.91,-9,-9,5,1,1,0,0,0,7,2,1,406,550692.3405589922,34101.49780041607,406312.3224325594,0,933.232355371397 -4722,5864,10624,-9,10625,10626,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.928500057485,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1160,631440.0124622863,473217.535408743,312409.9448578464,206953.3901855241,4592.18898413365 -4722,5864,10625,10626,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.39670267149303,7.086448554411106,0,6,-1,59.7585629172206,0,3,2,2019,3,0,30,27,1,0,0,8.121779853831816,8.121779853831816,0,0,0,0,0,0,0,0,0,0,59.04,51.29,46.16,58.62,10,1,1,0,0,7,5,5,1,1160,631440.0124622863,473217.535408743,312409.9448578464,206953.3901855241,4592.18898413365 -4722,5864,10626,10625,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.363804855981677,8.983146291451046,0,6,1,-56.33264691299505,0,2,2,2019,13,1,40,37,1,1,0,28.91397885744313,28.91397885744313,0,0,0,0,0,0,0,0,2.244220382181463,0,46.16,58.62,59.04,51.29,3.333333333333333,1,1,0,0,8,5,5,1,1160,631440.0124622863,473217.535408743,312409.9448578464,206953.3901855241,4592.18898413365 -4723,5865,10627,10628,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.100236243596337,8.407115039796206,0,17,0,-32.17864732863381,0,2,2,2019,6,0,48,45,1,0,0,8.960810119308539,8.960810119308539,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.32,54.77,1.666666666666667,1,1,0,0,11,4,3,1,662,174846.7546442802,-39689.2829523279,160506.6138599651,56344.01166919638,4007.69440537379 -4723,5865,10628,10627,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.722089738846657,6.316923272655455,0,17,9,19.09541887112547,0,-9,-9,2019,12,0,16,0,1,0,0,6.693369309513754,6.693369309513754,0,0,0,0,0,1,1,0,0,0,45.32,54.77,58.15,52.91,5,1,1,0,0,5,4,3,1,662,174846.7546442802,-39689.2829523279,160506.6138599651,56344.01166919638,4007.69440537379 -4723,5865,10629,-9,10628,10627,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-905.738031761053,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,662,174846.7546442802,-39689.2829523279,160506.6138599651,56344.01166919638,4007.69440537379 -4724,5866,10630,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,7.588683606615017,7.200096298945571,0,0,-1052.27431498247,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.317125675834679,54.31,45.49,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,519,192351.3125099728,173520.5602993381,198360.6981172266,0,1455.749193786353 -4725,5867,10631,10632,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.799814653498656,8.952576121972454,0,5,-6,-29.44491957480022,0,2,2,2019,10,0,45,40,1,0,0,21.09584423854426,21.09584423854426,0,0,0,0,0,0,0,0,0,0,52.99,51.28,49.04,55.86,6.666666666666667,1,1,0,0,12,9,5,1,1467,469657.7908708502,364332.9999359255,305058.1318735862,180484.1438860106,6211.165910732539 -4725,5867,10632,10631,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.230142729676212,9.196628586296702,0,5,6,-41.15686378420615,0,2,2,2019,9,0,42,42,1,0,0,22.88433779001383,22.88433779001383,0,0,0,0,0,0,0,0,0,0,49.04,55.86,52.99,51.28,6.666666666666667,1,1,0,0,12,9,5,1,1467,469657.7908708502,364332.9999359255,305058.1318735862,180484.1438860106,6211.165910732539 -4726,5868,10633,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-995.6231513473786,0,3,3,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.38,22.52,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1192,52771.16741655691,0,0,0,1309.637144453746 -4727,5869,10634,10635,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,9.232417001605477,9.087464520475026,0,22,-7,-4.964264518797135,-9,3,3,2019,9,0,37,0,1,0,0,27.47046823225331,27.47046823225331,0,0,0,0,0,1,1,0,7.802560836666125,0,58.75,27.34,50,48,8.333333333333334,1,1,0,0,2,6,5,1,454.5,34425.65673641623,0,179232.855151051,85420.26191257779,6216.444712320095 -4727,5869,10635,10634,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.216503482785313,7.526910804772352,0,22,7,4.795971834548661,-9,3,3,2019,10,0,60,0,1,1,0,2.955816504998769,2.955816504998769,0,0,0,0,0,1,1,0,0,0,50,48,58.75,27.34,7,1,1,0,0,1,6,5,1,454.5,34425.65673641623,0,179232.855151051,85420.26191257779,6216.444712320095 -4728,5870,10636,10637,-9,-9,1,1,32,0,0,0,2,2,-9,1,2,0,0,0,6,1,45.59556512673927,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.22,26.94,44.81,57.83,5,1,1,0,0,0,13,3,1,514,35644.43166180154,0,0,0,2835.751240999943 -4728,5870,10637,10636,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.776910099145493,7.693978063816852,0,6,-1,13.64509869757942,0,3,2,2019,10,0,39,38,1,0,0,6.996862211419838,6.996862211419838,0,0,0,0,0,1,1,0,4.644656324729524,0,44.81,57.83,39.22,26.94,6.666666666666667,1,1,0,0,8,13,3,1,514,35644.43166180154,0,0,0,2835.751240999943 -4729,5871,10638,10640,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,0,0,0,4,-1,0,0,-9,-9,2019,9,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,25.88,31.76,8,1,1,1,0,0,2,1,1,426.25,-7486.967003583683,-24431.48815733319,0,0,3405.747967481782 -4729,5871,10639,-9,10640,10638,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.19123584904,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,1,426.25,-7486.967003583683,-24431.48815733319,0,0,3405.747967481782 -4729,5871,10640,10638,-9,10642,1,0,39,0,2,0,2,2,-9,0,1,0,0,0,13,1,0,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,25.88,31.76,51,56,3.333333333333333,1,1,0,0,2,2,1,1,426.25,-7486.967003583683,-24431.48815733319,0,0,3405.747967481782 -4729,5871,10641,-9,10640,10638,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.6947240408233,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,1,426.25,-7486.967003583683,-24431.48815733319,0,0,3405.747967481782 -4729,5872,10642,-9,-9,-9,1,1,64,0,2,0,1,1,-9,0,3,0,0,0,0,0,-960.9604428997928,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,2,1,1,1400,248973.4540559763,85527.87624438669,169711.8986065879,0,1230.670851153595 -4730,5873,10643,-9,10644,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.704248860256,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,3,4,-9,0,0,4,1,0,672.5,10884.58755685148,0,0,0,815.7062973096383 -4730,5873,10644,-9,10645,10646,1,0,29,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1137.726845045243,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.37,42.43,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,672.5,10884.58755685148,0,0,0,815.7062973096383 -4730,5874,10645,10646,-9,-9,1,0,63,0,1,0,3,3,-9,0,3,0,0,0,6,-1,-24.10161724365112,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,0,1,0,0,58.32,50.22,52,48,1.666666666666667,4,2,0,0,0,4,2,0,3242.5,28691.89737914986,99436.84574323203,0,0,2417.263829071856 -4730,5874,10646,10645,-9,-9,1,1,64,0,1,0,3,3,-9,0,3,0,6.501182268884638,6.799015883749375,6,1,119.5962684810384,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,0,1,0,6.368468251163247,52,48,58.32,50.22,7,3,4,0,0,0,4,2,0,3242.5,28691.89737914986,99436.84574323203,0,0,2417.263829071856 -4731,5875,10647,-9,10648,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.170402666429,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,868,0,0,0,0,2313.312855424333 -4731,5875,10648,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,5,7.708332946006117,7.862671182590196,0,0,0,-938.784107934749,0,2,-9,2019,6,0,26,39,1,0,0,11.895586029226,11.895586029226,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,4,3,0,868,0,0,0,0,2313.312855424333 -4732,5876,10649,-9,10652,10651,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1095.274327185131,-9,1,1,2019,16,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,3.61184578056486,0,22.61,61,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,839.25,750049.3843006622,360043.7754430041,341249.7968323376,95169.13368538368,8745.563924198914 -4732,5876,10650,-9,10652,10651,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.426238572442,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,839.25,750049.3843006622,360043.7754430041,341249.7968323376,95169.13368538368,8745.563924198914 -4732,5876,10651,10652,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.64757912984973,9.632360891725577,0,22,3,-58.77542005731009,0,2,2,2019,24,12,45,45,1,12,0,42.44096934094473,42.44096934094473,0,0,0,0,0,1,1,0,5.246648258776015,0,27.81,65.69,51.37,21.36,3.333333333333333,1,1,0,0,9,9,5,1,839.25,750049.3843006622,360043.7754430041,341249.7968323376,95169.13368538368,8745.563924198914 -4732,5876,10652,10651,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,8.976128611509964,9.595885000294622,8.025293045157943,21,-3,66.26599397037744,0,1,1,2019,23,9,30,30,1,9,0,25.13549558116492,25.13549558116492,0,0,0,0,0,1,1,0,8.25401522927379,0,51.37,21.36,27.81,65.69,8.333333333333334,1,1,0,0,9,9,5,1,839.25,750049.3843006622,360043.7754430041,341249.7968323376,95169.13368538368,8745.563924198914 -4733,5877,10653,10654,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,8.072596490390151,7.479219904031256,28,-5,-80.98249569617391,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,7.690967217013307,32.59,40.89,51.41,56.15,6.666666666666667,1,1,0,0,10,5,5,1,356,2461240.762350243,1840305.892766984,413978.7706429117,0,3885.984067342107 -4733,5877,10654,10653,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.054632328352124,8.887081273423782,0,8,5,-27.37736815041939,0,3,3,2019,10,1,58,44,1,1,0,12.147880642786,12.147880642786,0,0,0,0,0,0,0,0,0,0,51.41,56.15,32.59,40.89,8.333333333333334,1,1,0,0,7,5,5,1,356,2461240.762350243,1840305.892766984,413978.7706429117,0,3885.984067342107 -4734,5878,10655,10656,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,6.675251851042684,6.606683889838818,0,26,6,30.34937169502406,-9,-9,-9,2019,9,0,40,0,1,1,0,2.148499260346274,2.148499260346274,0,0,0,0,0,1,1,0,0,0,57.32,45.08,57.16,56.15,6.666666666666667,1,1,0,0,12,9,4,1,554.3333333333334,31106.13298231854,61090.01740810106,0,0,2734.024843232509 -4734,5878,10656,10655,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.586824885295286,8.50295853979229,0,26,-6,28.94940694260948,0,2,2,2019,12,1,44,35,1,1,0,14.030431216693,14.030431216693,0,0,0,0,0,1,1,0,.9922376676731862,0,57.16,56.15,57.32,45.08,6.666666666666667,1,1,0,0,12,9,4,1,554.3333333333334,31106.13298231854,61090.01740810106,0,0,2734.024843232509 -4734,5878,10657,-9,10656,10655,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1049.314929401964,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,554.3333333333334,31106.13298231854,61090.01740810106,0,0,2734.024843232509 -4735,5879,10658,10660,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,14,1,42.06179844193463,0,2,2,2019,9,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.04,53.42,54.1,59.11,6.666666666666667,1,1,1,0,10,10,5,1,1416.75,281071.5702333687,108266.4594728403,253016.1143455108,210712.4049923676,3187.995984513513 -4735,5879,10659,-9,10658,10660,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.5883632216,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,1416.75,281071.5702333687,108266.4594728403,253016.1143455108,210712.4049923676,3187.995984513513 -4735,5879,10660,10658,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.34405754392418,9.241970010788178,0,14,-1,-183.7218197395334,-9,2,1,2019,6,0,38,0,1,0,0,31.10624388612199,31.10624388612199,0,0,0,0,0,0,0,0,2.499529237347891,0,54.1,59.11,48.04,53.42,6.666666666666667,1,1,0,0,11,10,5,1,1416.75,281071.5702333687,108266.4594728403,253016.1143455108,210712.4049923676,3187.995984513513 -4735,5879,10661,-9,10658,10660,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.732771082665,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,1416.75,281071.5702333687,108266.4594728403,253016.1143455108,210712.4049923676,3187.995984513513 -4736,5880,10662,10663,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.043678032349977,8.967907836432817,0,8,2,30.10144924289877,0,-9,-9,2019,19,7,44,47,1,7,0,24.27901516167154,24.27901516167154,0,0,0,0,0,1,1,0,0,0,36.12,59.15,56.94,49.53,3.333333333333333,1,1,0,1,8,1,5,1,780.5,1708890.272319964,1274990.581703222,325619.9869009451,174481.442649904,5787.799412537055 -4736,5880,10663,10662,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.933493517536734,8.388866616424712,0,26,-2,167.8292221411953,0,2,3,2019,7,0,33,43,1,0,0,24.85016547961152,24.85016547961152,0,0,0,0,0,1,1,0,0,0,56.94,49.53,36.12,59.15,6.666666666666667,1,1,0,1,8,1,5,1,780.5,1708890.272319964,1274990.581703222,325619.9869009451,174481.442649904,5787.799412537055 -4737,5881,10664,10665,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.268629061852031,7.146659196813467,0,45,-1,69.94254538267973,0,-9,-9,2019,11,0,7,8,1,2,0,24.20382698424654,24.20382698424654,0,0,0,0,0,1,1,0,3.505818115056902,0,50,47,60.05,32.12,7,1,1,0,0,1,10,2,1,430.5,320559.6476169053,85925.25056974782,293410.836213494,0,1700.157711615073 -4737,5881,10665,10664,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.863610367230955,5.813889165311588,45,1,88.44583853069598,0,3,3,2019,9,2,0,60,4,2,0,0,0,0,0,0,0,0,1,1,0,5.635090297873417,5.684029157797659,60.05,32.12,50,47,8.333333333333334,1,1,0,0,5,10,2,1,430.5,320559.6476169053,85925.25056974782,293410.836213494,0,1700.157711615073 -4738,5882,10666,10667,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.477848484880177,7.917312888550873,52,4,139.6031230706366,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.126885149263217,58.15,52.91,56.52,48.31,10,1,1,0,0,7,4,3,1,490.5,1015426.750283708,487394.5304891376,320905.1397255873,0,2101.671272586246 -4738,5882,10667,10666,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,52,-4,-2.420529034173184,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,58.15,52.91,8.333333333333334,1,1,0,0,0,4,3,1,490.5,1015426.750283708,487394.5304891376,320905.1397255873,0,2101.671272586246 -4739,5883,10668,10669,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.289016912864529,8.122311258086041,0,9,0,.9840867764495369,0,3,3,2019,7,0,35,45,1,0,0,11.23228985544131,11.23228985544131,0,0,0,0,0,0,0,0,2.884129020467047,0,64.66,50.23,57.33,53.46,10,2,3,0,0,10,9,5,1,654.5,917817.4611711699,402421.8722901216,420596.3564597936,0,3164.306041200375 -4739,5883,10669,10668,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.302766365664121,8.25394905030279,0,9,0,-37.28675772677885,0,3,3,2019,10,0,34,34,1,0,0,14.86446115812107,14.86446115812107,0,0,0,0,0,0,0,0,0,0,57.33,53.46,64.66,50.23,8.333333333333334,2,3,0,0,10,9,5,1,654.5,917817.4611711699,402421.8722901216,420596.3564597936,0,3164.306041200375 -4740,5884,10670,10673,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.695198257370588,8.319417789496724,0,17,3,96.33857713954821,0,3,3,2019,9,0,40,56,1,0,0,14.3799210023143,14.3799210023143,0,0,0,0,0,1,1,0,0,0,57.33,53.46,55.32,47.52,8.333333333333334,1,1,0,0,10,4,4,1,387.5,143922.8489676953,-191.6607015696845,151815.6777798099,53076.2787523725,3729.345102252589 -4740,5884,10671,-9,10673,10670,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-1002.606091798423,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.030871649963083,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,4,4,4,1,387.5,143922.8489676953,-191.6607015696845,151815.6777798099,53076.2787523725,3729.345102252589 -4740,5884,10672,-9,10673,10670,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-846.8247445176256,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,387.5,143922.8489676953,-191.6607015696845,151815.6777798099,53076.2787523725,3729.345102252589 -4740,5884,10673,10670,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.998608083129488,7.886727851790352,0,22,-3,54.83719136251675,0,3,3,2019,12,0,35,39,1,0,0,6.78611972886322,6.78611972886322,0,0,0,0,0,1,1,0,2.233694000190283,0,55.32,47.52,57.33,53.46,5,1,1,0,0,10,4,4,1,387.5,143922.8489676953,-191.6607015696845,151815.6777798099,53076.2787523725,3729.345102252589 -4741,5885,10674,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1019.046235439685,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,59.22,22.06,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,357,0,0,0,0,1518.129761126167 -4741,5886,10675,-9,10674,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1028.18917528721,0,2,2,2019,21,6,0,34,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,10.31,-9,-9,0,1,1,0,0,4,12,1,0,2219,-41997.77916311832,-8166.11417191635,0,0,1155.579622330854 -4742,5887,10676,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.308899380321128,6.938208562242737,0,0,-1001.08307391382,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.34876028693195,7.45258252636218,45.19,48.64,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1321,-66663.96149935294,53198.85651891501,0,0,1954.244164106432 -4743,5888,10677,10678,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.777075066381221,7.652409152864841,8,12,199.2815603465911,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.19941613150271,7.780914363743532,46.08,57.2,38.46,59.39,10,1,1,0,0,0,7,3,1,536.5,1025921.042944607,515838.5553042031,253760.7741931736,0,2576.608215775235 -4743,5888,10678,10677,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,6.55677042636001,6.621940461358276,8,-12,-51.42997730392247,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.545618895338154,6.434824060995094,38.46,59.39,46.08,57.2,8.333333333333334,1,1,0,0,5,7,3,1,536.5,1025921.042944607,515838.5553042031,253760.7741931736,0,2576.608215775235 -4744,5889,10679,10680,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.529740283625538,8.672156675641439,52,-1,-75.70645186734679,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.793622588652757,8.680796240225019,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,8,4,1,793,1534863.745010989,196359.6870903831,679553.1220617685,0,4489.937390249997 -4744,5889,10680,10679,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,52,1,-40.23794429230854,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,1.218943722961438,0,1,1,0,0,0,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,8,4,1,793,1534863.745010989,196359.6870903831,679553.1220617685,0,4489.937390249997 -4745,5890,10681,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.103656718383543,7.168871796458045,0,0,-988.9676772650329,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.386873518134971,6.906134055598623,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,393,583916.9629344689,306172.1036528127,146511.5347176599,0,1255.678605936867 -4746,5891,10682,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.507400173896542,8.335501889658355,0,0,0,-987.0247489168412,0,2,3,2019,8,0,60,60,1,0,0,7.546952630727683,7.546952630727683,0,0,0,0,0,0,0,0,6.888271367391143,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,650,542844.3716192557,399285.2112552388,9983.832934628139,17486.04974463371,2277.885938496182 -4746,5892,10683,-9,-9,10682,1,1,24,0,0,0,2,2,-9,0,4,6.960266032258764,7.299944113889109,0,0,0,-1143.507815263217,0,-9,2,2019,9,0,60,60,1,0,1,2.658023742635842,2.658023742635842,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,4,3,1,124,103696.6963660476,0,0,0,1014.559085881099 -4746,5893,10684,-9,-9,10682,1,0,21,0,0,0,2,2,-9,0,4,7.764363973669709,7.739845545951028,0,0,0,-950.5804776825667,0,-9,2,2019,6,0,28,38,1,0,1,8.132308736860402,8.132308736860402,0,0,0,1.589830484133758,0,0,0,0,0,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,301,20530.2052740488,0,0,0,1029.01712630029 -4747,5894,10685,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,6.955263065130742,7.11273207666355,0,0,0,-922.0046497462755,0,2,2,2019,7,0,20,23,1,0,0,6.02963516922964,6.02963516922964,0,0,0,0,0,1,1,0,3.978948662439834,0,56.92,25.45,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,697,-166363.3551853975,0,0,0,2004.055489828694 -4748,5895,10686,-9,10687,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.9157909495084,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,1,0,1631.5,-82334.30614576393,90141.38833245392,0,0,848.6467361722832 -4748,5895,10687,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1018.855840127277,0,3,3,2019,31,11,0,33,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.76,49.76,-9,-9,0,1,1,1,0,7,13,1,0,1631.5,-82334.30614576393,90141.38833245392,0,0,848.6467361722832 -4749,5896,10688,-9,10691,10690,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-966.3952683035722,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4749,5896,10689,-9,10691,10690,1,1,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-938.1489654938691,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4749,5896,10690,10691,-9,-9,1,1,42,0,4,0,1,1,-9,0,3,9.356790268407238,9.151834770053716,0,24,1,37.52524846097741,0,1,1,2019,13,1,42,48,1,1,0,25.97366996650347,25.97366996650347,0,0,0,0,0,0,0,0,6.256547978088383,0,47.66,52.33,46.31,51.53,6.666666666666667,1,1,0,0,12,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4749,5896,10691,10690,-9,-9,1,0,41,0,4,0,1,1,-9,0,3,7.723663750607277,7.472336944698087,0,24,-1,-36.00200445490077,0,1,1,2019,11,0,26,27,1,0,0,8.712944539580146,8.712944539580146,0,0,0,0,0,0,0,0,0,0,46.31,51.53,47.66,52.33,8.333333333333334,1,1,0,0,3,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4749,5896,10692,-9,10691,10690,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1050.69513086349,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4749,5896,10693,-9,10691,10690,1,1,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1093.719522431806,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,926.1666666666666,360352.7511776018,298838.9589938856,276443.0108354992,185666.8235628469,3716.404749802194 -4750,5897,10694,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.8048335666533,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.131061010103918,0,51.96,36.78,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,733,-101375.6768894871,0,0,0,1274.585449950819 -4751,5898,10695,10696,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,2,-2,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,40.31,14.24,5,1,1,0,0,0,13,1,0,689,170060.2469747069,0,0,0,1484.890595087752 -4751,5898,10696,10695,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,2,2,0,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,49.04,55.86,3.333333333333333,1,1,0,0,0,13,1,0,689,170060.2469747069,0,0,0,1484.890595087752 -4752,5899,10697,10698,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,24,0,-24.33830661008161,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,50,8.333333333333334,2,3,0,0,1,4,5,1,523,1312946.772530858,741209.924976764,97525.44404598061,0,6023.411396271604 -4752,5899,10698,10697,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.571808931612432,9.764887408160533,0,9,0,-155.1477394173207,0,-9,-9,2019,11,0,20,50,1,1,0,85.1790194877919,85.1790194877919,0,0,0,0,0,0,0,0,5.84781490755272,0,50,50,57.16,56.15,7,2,3,0,0,1,4,5,1,523,1312946.772530858,741209.924976764,97525.44404598061,0,6023.411396271604 -4752,5900,10699,-9,10697,10698,1,1,32,0,0,0,1,1,-9,0,4,7.993360892931062,8.108281921004911,0,0,0,-964.7697166560677,0,2,3,2019,6,0,35,41,1,0,1,9.313601261932778,9.313601261932778,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,4,4,1,108,139696.213443631,18204.2694060583,106156.2476776223,114807.830260569,1146.430313770429 -4752,5901,10700,-9,10697,10698,1,1,27,0,0,0,1,1,-9,0,4,8.307378406895134,8.108390031951037,0,0,0,-960.7759125471889,0,2,3,2019,6,0,37,39,1,0,1,16.3478932136409,16.3478932136409,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,295,-118972.4465177031,-87995.42680506047,0,0,1507.877112363874 -4753,5902,10701,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.415927148922514,7.147593836628861,0,0,-1140.229646652926,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.215475091403922,7.313358016899707,54.42,33.63,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,959,238416.0030962397,211333.7143872899,94736.73367829624,0,1163.38942790837 -4754,5903,10702,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.874043131118093,9.061548992933972,0,0,0,-999.6572913665888,0,2,2,2019,10,0,50,38,1,0,0,18.61875805285115,18.61875805285115,0,0,0,0,0,0,0,0,0,0,55.12,42.1,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,379,232801.5161698534,200905.8724032827,0,0,2528.281679581977 -4755,5904,10703,-9,10706,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.347830213345,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,425.5,159792.9440457694,89657.60282422628,0,0,2989.411771614769 -4755,5904,10704,10706,-9,-9,1,1,22,1,2,0,2,2,-9,0,4,8.704794357665701,8.570774557230029,0,2,-1,-86.44079455226576,0,-9,-9,2019,10,1,49,49,1,1,0,13.51886429792129,13.51886429792129,0,0,0,0,0,1,1,0,0,0,58.01,39.47,44.09,57.1,8.333333333333334,1,1,0,0,3,4,4,0,425.5,159792.9440457694,89657.60282422628,0,0,2989.411771614769 -4755,5904,10705,-9,10706,10704,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.188586392036,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,425.5,159792.9440457694,89657.60282422628,0,0,2989.411771614769 -4755,5904,10706,10704,-9,-9,1,0,23,1,2,0,3,3,-9,0,3,6.92542383559348,7.230226950437442,5.563860936313448,2,1,135.8627965672984,0,2,3,2019,4,0,16,16,1,0,0,6.944161509189953,6.944161509189953,0,0,0,0,0,1,1,0,6.020239514550628,0,44.09,57.1,58.01,39.47,6.666666666666667,1,1,0,0,5,4,4,0,425.5,159792.9440457694,89657.60282422628,0,0,2989.411771614769 -4756,5905,10707,10708,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,3,4,0,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,122.656611072071,0,0,1,1,0,1.076470189993769,0,42.46,24.25,51,46,8.333333333333334,1,1,0,0,0,1,1,1,1706.5,177525.2264841696,56558.12616902589,121945.9088874327,0,3278.65819906086 -4756,5905,10708,10707,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,48,-4,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,.6977245441431452,0,51,46,42.46,24.25,7,1,1,0,0,0,1,1,1,1706.5,177525.2264841696,56558.12616902589,121945.9088874327,0,3278.65819906086 -4757,5906,10709,10710,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.026437361357109,8.020343936726922,0,8,6,57.40370612808508,0,-9,-9,2019,13,1,45,42,1,1,0,7.334653051931235,7.334653051931235,0,0,0,0,0,0,0,0,0,0,50.86,41.37,47.98,48.03,8.333333333333334,1,1,0,0,10,11,4,1,453,-21254.85451635323,29836.44141722565,151849.2575380562,158275.7187902157,2521.525785592075 -4757,5906,10710,10709,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.784852927178796,7.864804332230703,0,8,-6,12.88762238391019,0,2,2,2019,11,2,37,39,1,2,0,8.568632217807425,8.568632217807425,0,0,0,0,7,0,0,0,0,0,47.98,48.03,50.86,41.37,8.333333333333334,1,1,0,0,9,11,4,1,453,-21254.85451635323,29836.44141722565,151849.2575380562,158275.7187902157,2521.525785592075 -4758,5907,10711,10714,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,0,0,0,7,-6,28.7576206919862,0,2,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,24.48,46.98,45.91,59.89,6.666666666666667,1,1,0,0,0,12,3,1,711,35342.15323411704,4033.807796826472,124015.9672256661,122986.2039836654,1993.08319272669 -4758,5907,10712,-9,10711,10714,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.2002365188929,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,711,35342.15323411704,4033.807796826472,124015.9672256661,122986.2039836654,1993.08319272669 -4758,5907,10713,-9,10711,10714,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.6603791852564,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,711,35342.15323411704,4033.807796826472,124015.9672256661,122986.2039836654,1993.08319272669 -4758,5907,10714,10711,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.900697740905226,8.084236395881874,0,7,6,-1.134835212143299,0,2,3,2019,11,0,40,43,1,0,0,8.088249934282155,8.088249934282155,0,0,0,0,0,1,1,0,0,0,45.91,59.89,24.48,46.98,6.666666666666667,1,1,0,0,10,12,3,1,711,35342.15323411704,4033.807796826472,124015.9672256661,122986.2039836654,1993.08319272669 -4759,5908,10715,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1092.641447304527,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.45,30.76,-9,-9,6.666666666666667,1,1,1,0,1,12,1,0,537,62691.50630166433,0,0,0,803.6827012086276 -4760,5909,10716,-9,10717,10719,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.805335031112,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,0,4417,129647.001900441,66024.0995929768,154453.7615005136,70002.82542817321,3131.272126865839 -4760,5909,10717,10719,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.793556696115814,8.142432984317823,0,3,-18,72.79954601331445,0,-9,-9,2019,12,0,24,24,1,0,0,16.52282069017207,16.52282069017207,0,0,0,0,0,1,1,0,6.332336083364298,0,51.83,57.2,41.6,60.78,8.333333333333334,1,1,0,0,6,2,3,0,4417,129647.001900441,66024.0995929768,154453.7615005136,70002.82542817321,3131.272126865839 -4760,5909,10718,-9,10717,10719,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.6918044446579,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,4417,129647.001900441,66024.0995929768,154453.7615005136,70002.82542817321,3131.272126865839 -4760,5909,10719,10717,-9,-9,1,1,51,1,2,0,2,2,-9,0,5,8.327909621718456,8.152916090299161,0,3,18,-37.77786926298673,0,2,1,2019,12,0,50,40,1,0,0,8.45080163895307,8.45080163895307,0,0,0,0,0,1,1,0,0,0,41.6,60.78,51.83,57.2,8.333333333333334,1,1,0,0,11,2,3,0,4417,129647.001900441,66024.0995929768,154453.7615005136,70002.82542817321,3131.272126865839 -4761,5910,10720,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.062646019124038,7.991248707623602,0,0,0,-966.2915065427371,0,2,1,2019,13,2,37,30,1,2,0,9.909502828846675,9.909502828846675,0,0,0,0,0,1,1,0,0,0,25.84,65.07000000000001,-9,-9,3.333333333333333,1,1,0,0,3,12,4,1,664,-221489.6333269767,-64083.6015483469,0,0,1249.340485909813 -4762,5911,10721,10722,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.198675953589636,6.287692575065446,8,1,-126.3106111338965,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,4.024445774709022,0,0,1,1,0,4.452295120884031,6.361242433422699,59.45,33.75,58.47,50.22,10,1,1,0,0,0,5,3,1,718.5,1565612.504925335,883009.7644277653,484955.6615279395,0,2855.666869246253 -4762,5911,10722,10721,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.346987020938972,7.965432733154183,8,-1,8.601117634672027,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.42367785686407,8.361289624896097,58.47,50.22,59.45,33.75,8.333333333333334,1,1,0,0,0,5,3,1,718.5,1565612.504925335,883009.7644277653,484955.6615279395,0,2855.666869246253 -4763,5912,10723,10724,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.434405806891045,7.446557071571021,0,6,-4,-19.78097741877675,0,-9,-9,2019,11,1,42,42,1,1,0,5.086690419194628,5.086690419194628,0,0,0,0,0,0,0,0,0,0,51.39,59.18,52.72,55.58,8.333333333333334,1,1,0,0,4,12,5,1,200,256556.8998763924,18339.125763221,219973.4655326342,11115.749586214,6048.2911457179 -4763,5912,10724,10723,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.779684656966724,8.780930268760947,0,6,4,-60.84554462543453,0,2,2,2019,9,0,55,60,1,0,0,11.34322721876978,11.34322721876978,0,0,0,0,0,0,0,0,7.956073944667489,0,52.72,55.58,51.39,59.18,10,1,1,0,0,9,12,5,1,200,256556.8998763924,18339.125763221,219973.4655326342,11115.749586214,6048.2911457179 -4764,5913,10725,10726,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,8.014488516028697,7.808727542328806,0,19,2,-92.87947284111209,0,3,3,2019,13,2,40,30,1,2,0,7.587702558449065,7.587702558449065,0,0,0,0,0,0,0,0,0,0,54.61,24.84,55.9,52.64,10,1,1,0,0,11,9,3,0,643.5,693070.1071649888,132510.7336115957,413474.248592779,0,1346.964805002597 -4764,5913,10726,10725,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,5.177347736399886,4.890846570632888,0,30,-2,-115.6849988196657,0,3,3,2019,8,0,40,50,1,0,0,.3778834700362899,.3778834700362899,0,0,0,0,0,0,0,0,0,0,55.9,52.64,54.61,24.84,8.333333333333334,1,1,0,0,11,9,3,0,643.5,693070.1071649888,132510.7336115957,413474.248592779,0,1346.964805002597 -4765,5914,10727,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-940.5710666259516,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.42,14.05,-9,-9,0,1,1,0,0,0,10,1,0,545,-13625.17976278645,0,0,0,1118.071313189984 -4766,5915,10728,-9,10729,10731,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.2430979320587,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,671.5,257659.9485027711,164841.8853242331,246972.0103068019,136557.2649458048,3780.638574478764 -4766,5915,10729,10731,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.519893408537595,7.450378578046531,0,17,-5,38.4824156798919,0,1,1,2019,9,1,30,30,1,1,0,7.91879897215582,7.91879897215582,0,0,0,0,0,1,1,0,3.175600260907,0,54.2,57.49,43.1,38.74,6.666666666666667,1,1,0,0,9,4,4,1,671.5,257659.9485027711,164841.8853242331,246972.0103068019,136557.2649458048,3780.638574478764 -4766,5915,10730,-9,10729,10731,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.426373713385,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,671.5,257659.9485027711,164841.8853242331,246972.0103068019,136557.2649458048,3780.638574478764 -4766,5915,10731,10729,-9,-9,1,1,43,0,2,0,1,1,-9,0,2,8.767849145809786,8.779012072486063,0,10,5,-42.85288580209337,0,1,2,2019,13,1,43,42,1,1,0,14.47283141227334,14.47283141227334,0,0,0,0,0,1,1,0,3.357780328376853,0,43.1,38.74,54.2,57.49,6.666666666666667,1,1,0,0,10,4,4,1,671.5,257659.9485027711,164841.8853242331,246972.0103068019,136557.2649458048,3780.638574478764 -4767,5916,10732,-9,-9,-9,1,0,64,1,3,0,3,3,-9,1,2,0,0,0,0,0,-962.6013370281851,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,36.85,-9,-9,5,1,1,0,0,0,4,1,0,457,0,0,0,0,1068.874584972631 -4767,5917,10733,-9,10737,10735,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.451686322775,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,831.8,63646.50774328143,0,0,0,1897.397508060156 -4767,5917,10734,-9,10737,10735,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.256330060515,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,1,0,831.8,63646.50774328143,0,0,0,1897.397508060156 -4767,5917,10735,10737,10732,-9,1,1,43,1,3,0,2,2,-9,1,2,0,0,0,3,11,0,0,3,-9,2019,19,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,2.42,65.79000000000001,36.86,59.86,3.333333333333333,1,1,0,0,0,4,1,0,831.8,63646.50774328143,0,0,0,1897.397508060156 -4767,5917,10736,-9,10737,10735,1,1,14,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1026.951313558533,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,1,0,831.8,63646.50774328143,0,0,0,1897.397508060156 -4767,5917,10737,10735,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,0,0,0,3,-11,0,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.86,59.86,2.42,65.79000000000001,5,1,1,0,0,5,4,1,0,831.8,63646.50774328143,0,0,0,1897.397508060156 -4768,5918,10738,10739,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.724236991638294,8.614961632163979,0,10,-2,-69.47075582707731,0,3,3,2019,7,0,36,38,1,0,0,18.68736404016233,18.68736404016233,0,0,0,0,7,0,0,0,0,0,49.04,55.86,40.97,29.17,8.333333333333334,1,1,0,0,13,12,5,1,737,1249837.544715004,918315.2716304318,364563.1606427128,38360.36243566079,2688.624560557243 -4768,5918,10739,10738,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,7.66263443084435,7.64989539336622,0,10,2,50.51010811693867,0,-9,-9,2019,20,8,22,25,1,8,0,10.82268301786628,10.82268301786628,0,0,0,0,0,0,0,0,3.922750770476577,0,40.97,29.17,49.04,55.86,6.666666666666667,1,1,0,0,1,12,5,1,737,1249837.544715004,918315.2716304318,364563.1606427128,38360.36243566079,2688.624560557243 -4769,5919,10740,10742,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,8.640784084923116,8.644299105109662,0,3,-4,29.60811186118407,0,-9,-9,2019,8,0,38,38,1,0,0,15.12337852561574,15.12337852561574,0,0,0,0,0,1,1,0,.8766773263307487,0,54.27,48.04,38.65,59.48,8.333333333333334,1,1,0,0,6,6,5,1,1104.666666666667,569111.4896250401,444794.7571369784,315726.6692843371,155848.897141351,3699.496974550646 -4769,5919,10741,-9,10742,10740,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.4869935826574,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1104.666666666667,569111.4896250401,444794.7571369784,315726.6692843371,155848.897141351,3699.496974550646 -4769,5919,10742,10740,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,8.974962103292501,8.981611466534074,0,3,4,-24.19138959417614,0,3,2,2019,11,2,39,40,1,2,0,19.32804478877794,19.32804478877794,0,0,0,0,0,1,1,0,0,0,38.65,59.48,54.27,48.04,8.333333333333334,1,1,0,0,6,6,5,1,1104.666666666667,569111.4896250401,444794.7571369784,315726.6692843371,155848.897141351,3699.496974550646 -4770,5920,10743,10744,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.609265932250728,5.638146825304073,9,8,-81.7222466336616,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.605809162771335,5.160031158563482,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,0,10,2,1,3208.5,588458.9990144321,164486.2867629386,0,0,817.7380684684804 -4770,5920,10744,10743,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,5.566940813532304,5.51583570010813,9,-8,-140.8465058445671,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.804762964761845,5.749792475703093,58.15,52.91,60.12,54.8,10,1,1,0,0,3,10,2,1,3208.5,588458.9990144321,164486.2867629386,0,0,817.7380684684804 -4771,5921,10745,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,9.31816543535612,9.539892483301161,0,0,0,-954.6823794262663,0,2,2,2019,9,0,77,70,1,0,0,13.56636368725769,13.56636368725769,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1795,-64187.68962216441,-1736.225128749335,125374.6060758812,101422.6995004504,3308.522208682268 -4772,5922,10746,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-991.1940583436204,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.67,39,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,729,-20527.64700144083,0,0,0,1459.226288198456 -4773,5923,10747,-9,10748,10750,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.1294455700499,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1244,205594.1188314209,124984.2107172523,222970.2692173745,167244.0635622458,3084.732428391965 -4773,5923,10748,10750,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,6.832843074324861,7.325252360271335,0,2,-5,78.10898591834457,-9,2,2,2019,13,2,20,0,1,2,0,5.155875368732157,5.155875368732157,0,0,0,0,0,1,1,0,0,0,52,54.51,62.49,55.09,10,1,1,0,0,7,9,4,0,1244,205594.1188314209,124984.2107172523,222970.2692173745,167244.0635622458,3084.732428391965 -4773,5923,10749,-9,10748,10750,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.1190154119025,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,0,1244,205594.1188314209,124984.2107172523,222970.2692173745,167244.0635622458,3084.732428391965 -4773,5923,10750,10748,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.67871419621166,8.626613069096406,5.529403274752227,2,5,94.25062525495321,-9,3,2,2019,9,0,39,0,1,0,0,15.20882391355882,15.20882391355882,0,0,0,0,0,1,1,0,5.847468737808136,0,62.49,55.09,52,54.51,10,1,1,0,0,11,9,4,0,1244,205594.1188314209,124984.2107172523,222970.2692173745,167244.0635622458,3084.732428391965 -4773,5924,10751,-9,10748,10750,1,0,18,0,2,0,2,2,1,0,2,5.165787854817425,5.680157436519679,0,0,0,-1072.916253651429,-9,2,2,2019,24,10,21,0,1,10,1,1.352529964564683,1.352529964564683,0,0,0,0,0,1,1,0,0,0,21.4,51.46,-9,-9,3.333333333333333,1,1,0,0,1,9,2,0,4218,-54071.78428620694,0,0,0,696.0370456658374 -4774,5925,10752,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.495265370255201,5.344376216987055,0,0,-1049.99882757076,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.467916518470299,55.19,54.26,-9,-9,10,1,1,0,0,0,8,2,1,402,656192.6714502315,0,638684.261009788,0,1288.363453705011 -4775,5926,10753,-9,-9,10754,1,0,25,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1021.906087074624,0,3,3,2019,15,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,34.69,36.77,-9,-9,8.333333333333334,2,3,0,0,2,8,1,1,706,-72032.2496484435,0,0,0,2074.160054160865 -4775,5927,10754,-9,-9,-9,1,1,50,0,1,0,3,3,-9,1,3,0,0,0,0,0,-935.725085364072,-9,3,3,2019,4,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.48999999999999,39.53,-9,-9,10,2,3,0,0,0,8,1,1,1443,-54946.20563654304,0,0,0,154.7445587152027 -4775,5928,10755,-9,-9,10754,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-914.4559400290161,-9,-9,3,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,67.67,36.2,-9,-9,10,2,3,0,0,0,8,1,1,862,134205.5898355487,0,0,0,0 -4776,5929,10756,10758,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.047356462761746,8.20228283759341,0,9,0,9.545191118795826,0,-9,-9,2019,6,0,35,0,1,0,0,8.878077788517237,8.878077788517237,0,0,0,0,0,0,0,0,0,0,47.19,45.82,23.49,54.27,8.333333333333334,1,1,0,0,7,4,5,1,341.25,91898.32855553643,94853.34185690757,134858.3060722543,0,5702.299388565674 -4776,5929,10757,-9,10756,10758,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.6537415612272,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,4,5,1,341.25,91898.32855553643,94853.34185690757,134858.3060722543,0,5702.299388565674 -4776,5929,10758,10756,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,9.323238104037859,9.266830294682386,0,9,0,147.5508172830986,0,-9,-9,2019,20,8,72,58,1,8,0,19.82806386882208,19.82806386882208,0,0,0,0,0,0,0,0,0,0,23.49,54.27,47.19,45.82,5,4,5,0,0,11,4,5,1,341.25,91898.32855553643,94853.34185690757,134858.3060722543,0,5702.299388565674 -4776,5929,10759,-9,10756,10758,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.039497623948,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,5,1,341.25,91898.32855553643,94853.34185690757,134858.3060722543,0,5702.299388565674 -4777,5930,10760,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,1,0,5.990271629324581,6.457909322857025,0,0,-1122.243537297169,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,5.749627688255876,0,67.85297900539821,0,1,1,0,.4319977233839288,6.130438270234552,61.01,15.83,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,643,258723.6918614701,0,237797.1826239763,0,1407.007116255131 -4778,5931,10761,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.857367040816997,8.056227140880194,0,0,0,-1050.034039505088,0,2,2,2019,8,0,46,9,1,0,0,8.338450310395626,8.338450310395626,0,0,0,0,0,0,0,0,3.763738558180173,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,670,156916.1132135684,-35802.56012523438,0,0,1282.418391574375 -4779,5932,10762,10763,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.867237903663975,7.984111106373403,0,7,12,-23.88027786998084,0,3,-9,2019,16,4,40,38,1,4,0,7.575465557935393,7.575465557935393,0,0,0,0,0,0,0,0,0,0,36.6,48.26,49.61,41.04,8.333333333333334,1,1,0,0,9,4,4,1,501,281450.6452651153,215392.5347491309,169092.1537778125,28282.21936042006,2721.504386223316 -4779,5932,10763,10762,-9,-9,1,1,49,0,0,0,2,2,-9,0,1,8.241766284197945,8.092561137252394,0,7,-12,-14.58501640336669,0,2,3,2019,11,2,36,36,1,2,0,10.89721667597006,10.89721667597006,0,0,0,0,0,0,0,0,0,0,49.61,41.04,36.6,48.26,5,1,1,0,0,7,4,4,1,501,281450.6452651153,215392.5347491309,169092.1537778125,28282.21936042006,2721.504386223316 -4780,5933,10764,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.065948974091614,4.330409932577894,0,0,-1060.808740370946,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.092504043608942,60.69,24.05,-9,-9,10,1,1,0,0,0,13,2,1,402,-57020.99685671835,55338.24581128955,0,0,1517.338275469608 -4781,5934,10765,-9,10766,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.042489911182,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,572.2,-59575.92499767772,0,0,0,1890.549758395167 -4781,5934,10766,-9,-9,-9,1,0,28,1,4,0,2,2,-9,0,4,0,5.903558276912632,5.313683214458546,0,0,-781.6688518487244,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.727680514173203,0,46,58,-9,-9,7,1,1,0,0,0,4,2,0,572.2,-59575.92499767772,0,0,0,1890.549758395167 -4781,5934,10767,-9,10766,-9,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-923.5785860148681,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,572.2,-59575.92499767772,0,0,0,1890.549758395167 -4781,5934,10768,-9,10766,-9,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.864543544829,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,572.2,-59575.92499767772,0,0,0,1890.549758395167 -4781,5934,10769,-9,10766,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.145899786285,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,572.2,-59575.92499767772,0,0,0,1890.549758395167 -4782,5935,10770,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.409836179554359,7.389011986949474,0,0,-990.8979004121084,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.070232369470651,7.38715924387028,62.12,37.54,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,443,131651.9050399461,136994.1627011682,72757.49196043555,0,2327.185397167467 -4783,5936,10771,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,1,0,0,0,0,0,-970.8716001873456,0,3,2,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,0,20.35,31.47,-9,-9,5,2,3,0,1,0,8,1,0,1030.5,0,0,0,0,1819.565971041257 -4783,5936,10772,-9,10771,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.1289029152127,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,1030.5,0,0,0,0,1819.565971041257 -4784,5937,10773,10774,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.870973952275125,7.843337085329474,8,2,16.96020583065259,-9,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.062621457712597,7.881187897091767,65.36,38.75,67.51000000000001,35.12,8.333333333333334,1,1,0,0,0,11,4,0,318.5,2898319.674329304,2351159.893220635,372832.6641569729,0,4197.188675103893 -4784,5937,10774,10773,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.882627790203364,7.694337301265854,8,-2,-16.58789987902519,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.951604349753047,7.798457631460713,67.51000000000001,35.12,65.36,38.75,8.333333333333334,1,1,0,0,0,11,4,0,318.5,2898319.674329304,2351159.893220635,372832.6641569729,0,4197.188675103893 -4785,5938,10775,10777,-9,-9,1,0,42,0,2,0,2,2,-9,0,2,0,0,0,23,-4,-40.20942954148776,0,2,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.66,50.08,53,55,8.333333333333334,4,2,0,0,0,5,2,1,453.6666666666667,-11116.43596155133,-22638.5584832962,0,0,958.1599198736664 -4785,5938,10776,-9,10775,10777,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1018.984583675685,-9,2,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.18,48.31,-9,-9,5,2,3,0,0,0,5,2,1,453.6666666666667,-11116.43596155133,-22638.5584832962,0,0,958.1599198736664 -4785,5938,10777,10775,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,6.32988217362236,6.336792888346094,0,6,4,39.40117274395583,0,-9,-9,2019,9,0,30,0,1,1,0,2.245017466215047,2.245017466215047,0,0,0,0,0,1,1,0,0,0,53,55,50.66,50.08,8,2,3,0,0,1,5,2,1,453.6666666666667,-11116.43596155133,-22638.5584832962,0,0,958.1599198736664 -4785,5939,10778,-9,10775,10777,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1098.516855806227,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.39,43.3,-9,-9,5,4,2,0,0,1,5,1,1,247,-146312.7842156426,0,0,0,0 -4786,5940,10779,10781,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,6.878197244205859,7.170727687465972,0,22,3,-17.39082623105057,0,3,-9,2019,7,0,18,17,1,0,0,6.623584692442369,6.623584692442369,0,0,0,0,0,1,1,0,0,0,60.12,54.8,43.94,58,8.333333333333334,3,4,0,0,13,7,2,0,1372.5,13755.19693642371,36466.6775151012,0,0,14.38188285983989 -4786,5940,10780,-9,10779,10781,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.2415008261588,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,2,0,1372.5,13755.19693642371,36466.6775151012,0,0,14.38188285983989 -4786,5940,10781,10779,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,0,0,0,16,-3,-143.9025660044495,0,-9,-9,2019,14,2,0,45,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.94,58,60.12,54.8,5,1,1,0,0,11,7,2,0,1372.5,13755.19693642371,36466.6775151012,0,0,14.38188285983989 -4786,5940,10782,-9,10779,10781,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-958.7030470717009,-9,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.772156940923943,0,41.09,56.74,-9,-9,5,4,2,0,0,0,7,2,0,1372.5,13755.19693642371,36466.6775151012,0,0,14.38188285983989 -4787,5941,10783,10784,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.89388075118509,8.515785565616,0,8,0,-103.4293055175635,0,-9,-9,2019,11,0,25,25,1,2,0,27.38783387466627,27.38783387466627,0,0,0,0,0,0,0,0,5.9362998890776,0,49,48,57.16,56.15,7,1,1,0,0,1,10,5,1,575.5,3338657.804700824,3070337.019273173,236901.1310209717,0,4521.135404179251 -4787,5941,10784,10783,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.74787048629765,8.266887113877702,33,0,86.84465266951449,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.164995632026112,8.189501555535283,57.16,56.15,49,48,8.333333333333334,1,1,0,0,0,10,5,1,575.5,3338657.804700824,3070337.019273173,236901.1310209717,0,4521.135404179251 -4788,5942,10785,10786,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,18,-2,-88.63076558877449,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.54,55.34,59.43,58.05,8.333333333333334,2,3,0,0,0,9,5,1,544.6666666666666,425495.0267766591,-5540.360395940249,548814.7874354505,190174.3963051145,3272.83668365626 -4788,5942,10786,10785,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,9.212763829732003,9.257109404426817,0,18,2,-31.12204198983203,0,2,2,2019,6,0,37,72,1,0,0,34.23593378697716,34.23593378697716,0,0,0,0,0,0,0,0,5.274625120396938,0,59.43,58.05,39.54,55.34,8.333333333333334,1,1,0,0,10,9,5,1,544.6666666666666,425495.0267766591,-5540.360395940249,548814.7874354505,190174.3963051145,3272.83668365626 -4788,5942,10787,-9,10785,10786,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.606232967874,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,544.6666666666666,425495.0267766591,-5540.360395940249,548814.7874354505,190174.3963051145,3272.83668365626 -4789,5943,10788,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1033.588388666321,-9,-9,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,-9,-9,5,2,3,0,0,0,9,1,0,281,0,0,0,0,-239.4477400794881 -4790,5944,10789,10790,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.89101348451072,8.704156461503031,0,8,-8,-33.20792095570967,0,3,2,2019,13,1,36,41,1,1,0,18.63389623453119,18.63389623453119,0,0,0,0,0,1,1,0,0,0,44.36,54.04,43.54,59.6,5,1,1,0,0,9,11,5,1,640,320103.2397860498,43942.73010980666,153188.6862997159,17995.7051555385,4837.241644652914 -4790,5944,10790,10789,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.671441225898247,8.809010227813069,0,8,8,93.89638902841698,0,2,2,2019,13,1,36,36,1,1,0,26.21034862724261,26.21034862724261,0,0,0,0,0,1,1,0,0,0,43.54,59.6,44.36,54.04,6.666666666666667,1,1,0,0,9,11,5,1,640,320103.2397860498,43942.73010980666,153188.6862997159,17995.7051555385,4837.241644652914 -4790,5944,10791,-9,10789,10790,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1041.041959462945,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.27,56.95,-9,-9,8.333333333333334,1,1,0,0,1,11,5,1,640,320103.2397860498,43942.73010980666,153188.6862997159,17995.7051555385,4837.241644652914 -4790,5945,10792,-9,10789,10790,1,0,18,0,0,0,2,2,1,0,3,6.623918214445017,6.474702498253014,0,0,0,-906.3119225618899,-9,2,2,2019,9,2,21,0,1,2,1,3.097218998651435,3.097218998651435,0,0,0,0,0,1,1,0,0,0,53.78,56.44,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,1263,-22896.30600813481,0,0,0,37.79051644745533 -4791,5946,10793,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,9.100062409286666,9.023411434925636,0,0,0,-1099.038422731438,0,3,3,2019,16,4,55,50,1,4,0,18.66804828453252,18.66804828453252,0,0,0,0,2,0,0,0,3.144890877470929,0,35.63,48.18,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,299,894206.5960536955,0,577501.7684720384,0,2953.387748847981 -4792,5947,10794,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,0,0,0,0,-931.1876072844966,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.79,64.22,-9,-9,10,1,1,0,0,0,11,1,1,526,-199427.7880468435,0,0,0,602.1246321897718 -4793,5948,10795,10796,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,7.408458542380241,7.823853231623281,7.032462195767412,35,7,.7902349005809453,-9,2,3,2019,10,0,20,0,1,0,0,9.586525202639173,9.586525202639173,0,0,0,0,0,1,1,0,3.93119788390396,6.953984797105966,46.46,39.74,48.13,48.03,1.666666666666667,1,1,0,0,10,4,5,0,628,989480.6961425513,530872.1084311318,274162.9633916147,141897.6380996888,4086.570412747597 -4793,5948,10796,10795,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.746390421914253,8.468743337235734,5.723672825904945,35,-7,102.9855873196208,-9,3,3,2019,8,0,38,0,1,0,0,18.89581596609208,18.89581596609208,0,0,0,0,0,1,1,0,6.403961281998084,6.077943311254538,48.13,48.03,46.46,39.74,1.666666666666667,1,1,0,0,10,4,5,0,628,989480.6961425513,530872.1084311318,274162.9633916147,141897.6380996888,4086.570412747597 -4794,5949,10797,-9,-9,-9,1,1,23,1,1,0,2,2,-9,0,3,0,0,0,0,0,-955.0033621886724,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,22.6,50.39,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,164,0,0,0,0,297.680011031169 -4794,5950,10798,10800,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,7.726701666611916,7.780942339569338,0,2,5,105.0204311686212,0,-9,-9,2019,26,11,30,45,1,11,0,10.30884148989903,10.30884148989903,0,0,0,0,0,1,0,1,0,0,18.76,57.78,23.11,51.72,1.666666666666667,1,1,0,1,2,2,3,0,405.3333333333333,-52369.63194624696,0,0,0,2159.693928172501 -4794,5950,10799,-9,10800,10798,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.80165867482,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,405.3333333333333,-52369.63194624696,0,0,0,2159.693928172501 -4794,5950,10800,10798,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,0,0,0,2,-5,34.61283893761664,1,3,2,2019,28,11,0,0,2,11,0,0,0,0,0,0,0,0,1,0,1,0,0,23.11,51.72,18.76,57.78,3.333333333333333,1,1,0,0,0,2,3,0,405.3333333333333,-52369.63194624696,0,0,0,2159.693928172501 -4795,5951,10801,-9,10802,10803,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1029.742416672454,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,4,1,1188.6,889697.627040456,246446.9632816659,650400.8058255415,166596.7892058741,4283.226997818289 -4795,5951,10802,10803,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.529563603425052,7.638494807619081,0,9,-7,96.11317341526649,-9,-9,-9,2019,11,0,40,0,1,0,0,6.194882428126371,6.194882428126371,0,0,0,0,86,1,1,0,.7397373029941988,0,43.54,59.6,45.91,59.89,5,2,3,0,0,4,8,4,1,1188.6,889697.627040456,246446.9632816659,650400.8058255415,166596.7892058741,4283.226997818289 -4795,5951,10803,10802,-9,-9,1,1,40,0,3,0,2,2,-9,1,4,8.762762196584394,9.111206933240489,0,9,7,36.35834383404979,-9,-9,-9,2019,9,0,55,0,1,0,0,13.78485906521907,13.78485906521907,0,0,0,0,7,1,1,0,0,0,45.91,59.89,43.54,59.6,5,2,3,0,0,11,8,4,1,1188.6,889697.627040456,246446.9632816659,650400.8058255415,166596.7892058741,4283.226997818289 -4795,5951,10804,-9,10802,10803,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.2306184824945,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,1188.6,889697.627040456,246446.9632816659,650400.8058255415,166596.7892058741,4283.226997818289 -4795,5951,10805,-9,10802,10803,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-802.6826410800658,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,4,1,1188.6,889697.627040456,246446.9632816659,650400.8058255415,166596.7892058741,4283.226997818289 -4796,5952,10806,10807,-9,-9,1,1,90,0,0,0,1,1,-9,0,2,0,6.528967936506023,6.542061618306549,48,16,-17.64151441646027,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.253312400104067,6.604506565431453,42.6,28.51,42.76,37.21,3.333333333333333,1,1,0,0,0,4,4,1,395,0,0,0,0,5139.230679675774 -4796,5952,10807,10806,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,8.127868276212464,8.751185685943261,46,-16,-38.29340581138739,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,4.50231542137956,3.044771874909162,23.13116987067301,0,1,1,0,3.686130582105807,8.383233608529103,42.76,37.21,42.6,28.51,6.666666666666667,1,1,0,0,0,4,4,1,395,0,0,0,0,5139.230679675774 -4797,5953,10808,-9,10810,10809,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-872.3752120498441,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,2,1,131,18968.87344040686,0,0,0,758.3717288635013 -4797,5953,10809,10810,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.059972863714896,6.918074128258972,0,27,-1,39.41308544116762,0,-9,-9,2019,7,0,16,25,1,0,0,10.68971269084902,10.68971269084902,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.18,61.8,8.333333333333334,2,3,0,0,10,4,2,1,131,18968.87344040686,0,0,0,758.3717288635013 -4797,5953,10810,10809,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,0,0,0,7,1,34.56632911399991,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,57.16,56.15,10,2,3,0,0,0,4,2,1,131,18968.87344040686,0,0,0,758.3717288635013 -4797,5954,10811,-9,10810,10809,1,0,21,0,1,1,1,0,-9,0,4,0,0,0,0,0,-920.9358798422447,-9,-9,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,44.19,56.73,-9,-9,10,2,3,0,0,0,4,1,1,395,-45150.89606621788,0,0,0,0 -4797,5955,10812,-9,10810,10809,1,0,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1032.842152888885,-9,-9,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,0,0,0,4,1,1,332,97893.8351738341,0,0,0,0 -4798,5956,10813,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.607513555848763,7.852381470761056,0,0,0,-734.6239303444262,0,2,2,2019,12,1,30,30,1,1,0,7.731005432999873,7.731005432999873,0,0,0,0,7,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,2774,97612.91662586205,43311.90411831564,0,0,1301.970166980713 -4799,5957,10814,10815,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.671109241031131,6.343077441822955,6,-5,-16.65031293530103,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.536699106437885,6.110989527643481,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,1,9,3,1,897,729877.4933478632,-143344.0712814341,0,0,1959.763526926035 -4799,5957,10815,10814,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,7.983061852746293,7.777147673024826,6,5,-58.47558035610214,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.355328882088909,7.671269202552939,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,897,729877.4933478632,-143344.0712814341,0,0,1959.763526926035 -4800,5958,10816,-9,10817,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.128609708039,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,1221.666666666667,18330.97857304946,-58775.93040657294,0,0,1765.105045684551 -4800,5958,10817,-9,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,6.80445946698204,7.230764852227551,5.249821903054286,0,0,-1008.288461450639,0,-9,-9,2019,15,4,16,16,1,4,0,11.82680210500626,11.82680210500626,0,0,0,0,0,1,1,0,4.447299373543439,0,44.43,45.53,-9,-9,6.666666666666667,1,1,0,0,12,1,2,0,1221.666666666667,18330.97857304946,-58775.93040657294,0,0,1765.105045684551 -4800,5958,10818,-9,10817,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-874.4315200215617,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,2,0,1221.666666666667,18330.97857304946,-58775.93040657294,0,0,1765.105045684551 -4801,5959,10819,10820,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.213011518467763,8.349005472259073,0,4,-3,53.20129971948565,0,2,2,2019,11,0,42,44,1,0,0,12.0063044991386,12.0063044991386,0,0,0,0,2,0,0,0,0,0,49.8,56.68,37.42,63,6.666666666666667,1,1,0,0,9,11,5,1,215,128476.5535816694,176129.5446244477,196052.9967264483,119514.5910738816,3321.934991243966 -4801,5959,10820,10819,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,8.755328779350009,8.527601921740063,0,4,3,-17.37951464889733,0,-9,-9,2019,18,6,58,55,1,6,0,9.186904055110647,9.186904055110647,0,0,0,0,2,0,0,0,0,0,37.42,63,49.8,56.68,8.333333333333334,1,1,0,0,3,11,5,1,215,128476.5535816694,176129.5446244477,196052.9967264483,119514.5910738816,3321.934991243966 -4802,5960,10821,10822,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,58,5,0,0,3,3,2019,23,8,0,0,4,8,0,0,0,1,0,14.44697421415611,0,0,1,1,0,0,0,40.29,22.13,57.99,17.94,8.333333333333334,1,1,0,0,0,5,1,1,284,398366.4298178112,0,205271.6891120872,0,1652.453096262063 -4802,5960,10822,10821,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,58,-5,0,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.99,17.94,40.29,22.13,3.333333333333333,1,1,0,0,0,5,1,1,284,398366.4298178112,0,205271.6891120872,0,1652.453096262063 -4803,5961,10823,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.997305606815623,7.592425396756003,0,0,-1032.626096147617,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.160049342529889,7.41946531500865,49.11,42.15,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,321,396367.3955476328,151961.5725442591,298720.706082315,0,1445.30981619102 -4804,5962,10824,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.301402320815459,7.082361007626144,0,0,-1029.825578423594,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.189008662971215,7.184636053111979,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,290,424029.2800468406,403231.7530152604,80093.77621684605,0,1439.402248531409 -4805,5963,10825,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1098.57145799216,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,29.43,-9,-9,3.333333333333333,4,5,0,1,0,5,1,1,352,-172543.6116041465,0,0,0,1023.169751703425 -4806,5964,10826,-9,-9,-9,1,0,32,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1033.236698437069,0,2,2,2019,23,11,0,19,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.71,60.27,-9,-9,3.333333333333333,1,1,0,0,4,2,1,0,836.5,-29145.88892059392,0,0,0,1590.100889199921 -4806,5964,10827,-9,10826,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.9219850184696,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,836.5,-29145.88892059392,0,0,0,1590.100889199921 -4807,5965,10828,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-993.1037577126177,0,3,3,2019,28,11,0,0,4,11,0,0,0,1,5.996926730880014,0,60.35018494368494,0,1,1,0,0,0,23.92,31.55,-9,-9,0,1,1,0,0,0,10,1,0,127,304799.2713146266,180982.5762502222,0,0,997.8905866990461 -4808,5966,10829,10830,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.378464874690019,8.31749917873058,35,3,26.80960181269946,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.532769718975105,55.34,54.26,54.87,51.92,10,1,1,0,0,0,5,4,1,2696.5,1492652.312451642,941553.0950278267,272035.5307883169,0,3721.492461017772 -4808,5966,10830,10829,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.003629513241182,6.263287968294758,18,-3,6.874459868398408,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7879130867751,6.058492513088871,54.87,51.92,55.34,54.26,10,1,1,0,0,0,5,4,1,2696.5,1492652.312451642,941553.0950278267,272035.5307883169,0,3721.492461017772 -4809,5967,10831,10833,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.405143244506798,8.39965769078705,0,8,3,131.830708153043,0,-9,-9,2019,9,0,40,40,1,1,0,12.2901310901733,12.2901310901733,0,0,0,0,0,1,1,0,0,0,52,55,57.06,57.76,8,1,1,0,0,1,5,4,1,695,118479.3561327283,15585.59917629232,254511.7813749701,72688.25825027704,2777.19999461993 -4809,5967,10832,-9,10833,10831,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.3347171003041,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.580718805628207,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,695,118479.3561327283,15585.59917629232,254511.7813749701,72688.25825027704,2777.19999461993 -4809,5967,10833,10831,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.665565439959404,7.742921770296316,0,8,-3,-4.658299168949404,0,3,3,2019,9,0,20,20,1,0,0,12.1575902025591,12.1575902025591,0,0,0,0,0,1,1,0,.5231576710875029,0,57.06,57.76,52,55,1.666666666666667,1,1,0,0,11,5,4,1,695,118479.3561327283,15585.59917629232,254511.7813749701,72688.25825027704,2777.19999461993 -4810,5968,10834,10836,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.156783185789463,8.20371739711109,0,10,-1,-71.39317318261804,0,2,3,2019,9,0,37,37,1,0,0,10.69615099204313,10.69615099204313,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.79,55.86,8.333333333333334,1,1,0,0,12,2,4,1,1184.5,146094.254765671,28168.63302931425,158764.7406635634,-283.6236378919048,3007.599084219839 -4810,5968,10835,-9,10834,10836,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.901388078217,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1184.5,146094.254765671,28168.63302931425,158764.7406635634,-283.6236378919048,3007.599084219839 -4810,5968,10836,10834,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.205745088948721,8.375288443140198,0,10,1,-106.4382670131596,0,3,3,2019,8,0,48,40,1,0,0,10.83451555030995,10.83451555030995,0,0,0,0,0,1,1,0,0,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,12,2,4,1,1184.5,146094.254765671,28168.63302931425,158764.7406635634,-283.6236378919048,3007.599084219839 -4810,5968,10837,-9,10834,10836,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1077.947003216721,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,1184.5,146094.254765671,28168.63302931425,158764.7406635634,-283.6236378919048,3007.599084219839 -4811,5969,10838,10839,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.876476950142354,8.747518332329285,0,4,-6,147.8788242799781,0,2,2,2019,9,0,50,55,1,0,0,19.69033684351799,19.69033684351799,0,0,0,0,0,0,0,0,0,0,58.74,44.55,39.04,56.44,0,1,1,0,0,9,12,5,1,339,1571390.6927722,1019407.070913865,439316.5547203747,100636.9549661319,3895.248754153794 -4811,5969,10839,10838,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.348961112687971,7.371099194693172,0,4,6,-66.33177235341586,0,1,1,2019,14,3,40,50,1,3,0,4.882513578681114,4.882513578681114,0,0,0,0,7,0,0,0,0,0,39.04,56.44,58.74,44.55,6.666666666666667,1,1,0,0,9,12,5,1,339,1571390.6927722,1019407.070913865,439316.5547203747,100636.9549661319,3895.248754153794 -4812,5970,10840,10841,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,9.061858512076176,9.026476264984257,6,6,83.18580991650717,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.939081928012935,9.158635504304549,62.39,56.71,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,682,1549780.882700482,1011379.8131346,368347.9312626409,0,5353.500512690299 -4812,5970,10841,10840,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-6,.0530158766508411,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.190889051352388,0,60.12,54.8,62.39,56.71,0,1,1,0,0,0,13,5,1,682,1549780.882700482,1011379.8131346,368347.9312626409,0,5353.500512690299 -4813,5971,10842,10843,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.741849899408179,6.420869980615306,9,-1,-37.84371998383117,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.245312263472623,6.716820670618596,60.12,54.8,48.87,58.55,10,1,1,0,0,9,9,4,1,326.5,1716864.501808333,1093563.639875822,784332.6164394803,0,2390.036568358742 -4813,5971,10843,10842,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.980812405223164,8.027744571796909,40,1,4.650241085194349,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.769950721579435,8.343783020123549,48.87,58.55,60.12,54.8,8.333333333333334,1,1,0,0,0,9,4,1,326.5,1716864.501808333,1093563.639875822,784332.6164394803,0,2390.036568358742 -4814,5972,10844,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,8.05139192270598,8.00643254456034,0,0,-1117.883348075588,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,13.87228463196095,45.16572192547355,136.9738195922434,0,1,1,0,6.648125668821454,8.152111488756878,71.78,6.26,-9,-9,10,1,1,0,0,1,2,4,1,2423,873929.0833492896,574776.5504511506,321102.8112894759,0,2974.906582068282 -4814,5973,10845,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,8.581719352874725,8.292574290363792,0,0,0,-1036.290815253998,0,-9,-9,2019,9,1,58,30,1,1,0,8.332159529314152,8.332159529314152,0,0,0,0,0,1,1,0,0,0,48.68,53.73,-9,-9,0,1,1,0,0,10,2,4,1,528,31330.78915579648,0,0,0,1240.527823763798 -4815,5974,10846,10847,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,7,7,-50.27378059390148,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.223320077284202,0,54.94,53.18,46.44,59.62,8.333333333333334,1,1,0,0,6,11,5,1,751.5,351239.072002646,424259.1535715483,105414.0335411976,52002.07444010858,3683.151409845738 -4815,5974,10847,10846,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.206261330501391,9.320596568161317,0,7,-7,69.47827824904617,0,2,2,2019,3,0,40,0,1,0,0,24.76490662116521,24.76490662116521,0,0,0,0,0,1,1,0,4.571218106725787,0,46.44,59.62,54.94,53.18,6.666666666666667,1,1,0,0,7,11,5,1,751.5,351239.072002646,424259.1535715483,105414.0335411976,52002.07444010858,3683.151409845738 -4816,5975,10848,10850,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,7.715666886533067,7.999073583563787,0,8,-6,161.3328655616376,0,1,3,2019,20,7,31,28,1,7,0,11.87881063622395,11.87881063622395,0,0,0,0,0,1,1,0,0,0,20.36,65.18000000000001,48.87,58.55,1.666666666666667,1,1,0,1,10,6,3,1,306,210189.4956861204,97488.2785596766,198983.5905713299,123669.889423823,2033.46491575199 -4816,5975,10849,-9,10848,10850,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.7053800046777,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,306,210189.4956861204,97488.2785596766,198983.5905713299,123669.889423823,2033.46491575199 -4816,5975,10850,10848,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,7.090375624726709,7.418385147140962,0,8,6,-2.209069701680769,0,2,2,2019,6,0,40,10,1,0,0,3.231204223131931,3.231204223131931,0,0,0,0,0,1,1,0,0,0,48.87,58.55,20.36,65.18000000000001,8.333333333333334,1,1,0,1,10,6,3,1,306,210189.4956861204,97488.2785596766,198983.5905713299,123669.889423823,2033.46491575199 -4816,5976,10851,-9,10848,10850,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-955.1786756871846,-9,1,2,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,36.58,41.5,-9,-9,5,1,1,0,0,1,6,1,1,247,-36427.14164959687,0,0,0,0 -4817,5977,10852,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,7.822559568743683,8.605335962126725,7.731577949239312,0,0,-1111.096350605276,0,2,1,2019,11,0,30,30,1,0,0,8.695166091705508,8.695166091705508,0,0,0,0,42,0,0,0,4.871565202619151,7.630779692919022,60.6,49.26,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,419,251623.1329149274,320853.6829056956,116564.1033744321,40711.47515302617,1692.115811967191 -4818,5978,10853,10854,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,8,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.9,63.09,47.92,10,1,1,0,0,0,13,1,1,429.5,42788.82038456158,-3346.91283677327,0,0,0 -4818,5978,10854,10853,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,0,0,8,-7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.09,47.92,64.64,45.9,10,1,1,0,0,0,13,1,1,429.5,42788.82038456158,-3346.91283677327,0,0,0 -4819,5979,10855,10856,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.917669867140903,8.896614316647897,4,2,-47.74285505757367,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.06318836038926,8.625566685856768,57.16,56.15,61.27,46.03,10,1,1,0,0,10,9,4,1,1029,2112087.043757609,1416885.402966102,300094.4332386835,0,5409.90111321993 -4819,5979,10856,10855,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,24,-2,120.2029577057096,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.83244008581195,0,61.27,46.03,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,1029,2112087.043757609,1416885.402966102,300094.4332386835,0,5409.90111321993 -4820,5980,10857,10858,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.016244903442777,8.913139221169704,0,7,1,-13.89288584914184,0,1,2,2019,14,2,60,30,1,2,0,13.25587900709367,13.25587900709367,0,0,0,0,0,1,1,0,0,0,43.92,59.79,48.87,58.55,8.333333333333334,1,1,0,0,9,9,5,1,526,61966.38321393076,79882.7578534966,0,0,5352.968247405154 -4820,5980,10858,10857,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.741880598974852,8.826223193726833,0,14,-1,-49.74215311974321,0,2,3,2019,13,1,30,49,1,1,0,21.29544965119928,21.29544965119928,0,0,0,0,0,1,1,0,6.620584052750659,0,48.87,58.55,43.92,59.79,5,1,1,0,0,9,9,5,1,526,61966.38321393076,79882.7578534966,0,0,5352.968247405154 -4820,5980,10859,-9,10857,10858,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.921610430622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,526,61966.38321393076,79882.7578534966,0,0,5352.968247405154 -4820,5980,10860,-9,10857,10858,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.772515610524,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,526,61966.38321393076,79882.7578534966,0,0,5352.968247405154 -4821,5981,10861,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.195794243963275,6.64974990327831,0,0,-836.3877641412697,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.315521064912677,6.904349112969202,47.53,49.72,-9,-9,10,1,1,0,0,0,11,2,1,222,256310.6816407765,142669.7241965813,103001.5269438647,0,1268.118691233131 -4822,5982,10862,10863,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.555190575700889,7.982720565646293,6.097055569762094,11,-1,-87.81756829720211,0,-9,-9,2019,11,0,40,80,1,2,0,5.406583280967191,5.406583280967191,0,0,0,0,0,0,0,0,0,6.347267584770083,49,50,60.12,54.8,7,1,1,0,0,1,1,5,1,1235.5,-32080.26780534617,84419.15778080927,0,0,7183.507577327689 -4822,5982,10863,10862,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.57788073470037,9.59213122370929,0,23,1,-5.58225203483402,0,2,2,2019,1,0,20,60,1,0,0,69.16756729631895,69.16756729631895,0,0,0,0,7,0,0,0,7.205511310621105,0,60.12,54.8,49,50,10,1,1,0,0,13,1,5,1,1235.5,-32080.26780534617,84419.15778080927,0,0,7183.507577327689 -4823,5983,10864,-9,10866,10865,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.37036713341,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,848.5,161331.1879496559,14700.2349097751,215360.8014729519,127834.3793043045,3636.731832544904 -4823,5983,10865,10866,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.428638621783296,8.573525497674996,0,19,4,-50.67936665538665,0,2,2,2019,7,0,37,40,1,0,0,12.48098904814604,12.48098904814604,0,0,0,0,0,1,1,0,1.89765997937852,0,47.04,57.99,51.24,58.84,6.666666666666667,1,1,0,0,10,10,4,1,848.5,161331.1879496559,14700.2349097751,215360.8014729519,127834.3793043045,3636.731832544904 -4823,5983,10866,10865,-9,-9,1,0,39,1,2,0,2,2,-9,0,4,8.436460477103797,8.713434754500716,0,18,-4,-109.6179469572724,0,2,2,2019,8,0,31,31,1,0,0,22.34967893876214,22.34967893876214,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.04,57.99,8.333333333333334,1,1,0,0,10,10,4,1,848.5,161331.1879496559,14700.2349097751,215360.8014729519,127834.3793043045,3636.731832544904 -4823,5983,10867,-9,10866,10865,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.578466509873,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,848.5,161331.1879496559,14700.2349097751,215360.8014729519,127834.3793043045,3636.731832544904 -4824,5984,10868,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,5,8.680437153214164,8.640269108214914,0,0,0,-1015.015310751291,-9,1,1,2019,13,2,47,0,1,2,0,19.46777560951517,19.46777560951517,0,0,0,0,0,0,0,0,0,0,38.59,63.37,-9,-9,8.333333333333334,1,1,0,0,0,8,5,0,464,41463.34326448208,0,0,0,2387.435029674373 -4825,5985,10869,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-920.4777980283145,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.64,38.46,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,149,0,0,0,0,2112.259717850224 -4825,5986,10870,-9,10869,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1066.98364919895,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.64,30.25,-9,-9,5,1,1,0,0,0,2,1,0,552,-133594.6219193438,0,0,0,1066.696692724786 -4826,5987,10871,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,7.984942912801359,8.015739508291695,0,0,0,-1028.933238530026,0,-9,-9,2019,12,0,48,48,1,0,0,7.175484169852063,7.175484169852063,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,6.666666666666667,2,3,0,0,9,8,4,1,777,156468.5020288248,110670.1212818132,0,0,1649.589002967553 -4827,5988,10872,10873,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,8,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.51,44.7,48.01,21.37,8.333333333333334,1,1,0,0,0,13,1,0,427.5,10645.40267370714,0,0,0,1992.105366180226 -4827,5988,10873,10872,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,8,-3,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.01,21.37,62.51,44.7,6.666666666666667,1,1,0,0,0,13,1,0,427.5,10645.40267370714,0,0,0,1992.105366180226 -4828,5989,10874,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1075.353390808045,0,3,2,2019,18,0,0,0,4,5,0,0,0,1,25.67547635923466,17.63154286014927,248.4037346331756,0,1,1,0,0,0,36.61,17.55,-9,-9,1.666666666666667,1,1,0,0,0,8,2,0,843,1222176.819246768,9993.203860034495,1017820.470252288,0,1933.327012295714 -4829,5990,10875,-9,10876,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.134342652138,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,1,682,0,0,0,0,1524.483170072667 -4829,5990,10876,-9,10877,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,0,0,-897.0198927203066,-9,2,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,8.324089787485827,0,31.46,57.32,-9,-9,5,1,1,0,0,8,7,1,1,682,0,0,0,0,1524.483170072667 -4829,5991,10877,-9,-9,-9,1,0,69,1,1,0,2,2,-9,0,3,0,6.162790975621427,6.045261099684821,0,0,-1036.687903248806,-9,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.986667367466556,6.132442938688814,41.12,44.77,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,1684,202951.7834106239,0,0,0,307.3242075702403 -4830,5992,10878,10879,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,65,-2,-85.6417347109161,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.085896414183607,0,37.17,45.07,57.36,42.83,10,1,1,0,0,0,10,2,1,1222,258451.0454025847,0,229151.8555284858,0,1399.552961289304 -4830,5992,10879,10878,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,2.812442733769844,3.085429700720723,65,2,26.96503653882791,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,4.581076389930513,3.009832659324806,57.36,42.83,37.17,45.07,10,1,1,0,0,0,10,2,1,1222,258451.0454025847,0,229151.8555284858,0,1399.552961289304 -4831,5993,10880,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,1,0,7.633805858545859,8.163723710496749,0,0,-930.4173693146022,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.486069370983491,7.748289215709405,60.71,24.19,-9,-9,10,1,1,0,0,0,9,4,0,2552,715081.3551804279,290893.8721547312,605412.9361386966,0,1896.166435070056 -4832,5994,10881,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.526044951179408,6.423122908361625,0,0,-1001.297691726582,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.188918403880248,41.34,56.62,-9,-9,10,1,1,0,0,0,12,2,0,535,452684.57391778,80352.46109129462,182092.6154994277,0,225.6959140829596 -4833,5995,10882,10883,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,2.853674318080642,2.546095776007852,0,6,7,42.77419201960246,0,2,1,2019,22,7,50,0,1,7,0,.0375147586620599,.0375147586620599,0,0,0,0,0,1,1,0,0,0,35.91,21.45,35.5,56.45,1.666666666666667,1,1,0,0,1,9,4,1,337,1994147.743355068,1392552.297441881,551319.7126106039,0,2520.153994625896 -4833,5995,10883,10882,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.632785945584553,8.569180042512262,0,6,-7,42.27031077441447,0,-9,-9,2019,12,3,60,45,1,3,0,11.92968452090663,11.92968452090663,0,0,0,0,5.48,1,1,0,0,0,35.5,56.45,35.91,21.45,8.333333333333334,1,1,0,0,9,9,4,1,337,1994147.743355068,1392552.297441881,551319.7126106039,0,2520.153994625896 -4834,5996,10884,10885,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.581986404516712,7.274796386560786,7,-1,34.69617302042971,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.764864666366892,7.683092075486824,43.42,62.33,51.47,53.17,8.333333333333334,1,1,0,0,0,2,3,1,296.5,1023000.926995511,720712.6455823516,240824.1730734893,0,1727.27242151708 -4834,5996,10885,10884,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.885810244792331,6.41248733841709,7,1,-54.90878225295012,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.199734872312111,6.705472502799398,51.47,53.17,43.42,62.33,8.333333333333334,1,1,0,0,0,2,3,1,296.5,1023000.926995511,720712.6455823516,240824.1730734893,0,1727.27242151708 -4835,5997,10886,10887,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.247398784724606,8.157833032630883,27,11,122.4305925892801,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.750831397900748,8.352600449450376,52.41,42.18,51,54,8.333333333333334,1,1,0,0,9,9,5,1,622,3038957.121258947,2243616.847943842,239815.942278999,0,3456.755136107167 -4835,5997,10887,10886,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.225528653367686,8.361875732129613,0,6,-11,103.6813231960084,0,-9,-9,2019,10,0,38,40,1,1,0,14.62315976043412,14.62315976043412,0,0,0,0,0,0,0,0,3.643131803463553,0,51,54,52.41,42.18,8,1,1,0,0,1,9,5,1,622,3038957.121258947,2243616.847943842,239815.942278999,0,3456.755136107167 -4836,5998,10888,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.638053625519095,8.33044755658735,0,0,0,-1009.519346859901,0,2,1,2019,15,3,38,37,1,3,0,14.83991820585362,14.83991820585362,0,0,0,0,0,1,1,0,0,0,41.05,54.17,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,364,284108.9734840182,323841.9778195493,87179.96264651153,48621.95025904477,1948.482232310731 -4836,5999,10889,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,4,0,0,0,0,0,-869.9192886818078,0,-9,-9,2019,10,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,1,1,1,1,4,1,1,1,271,70917.24079464655,0,0,0,714.0101422525004 -4837,6000,10890,10891,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,54,-5,28.87201697938338,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.83781509317607,0,61.43,43.34,57.73,54.53,10,1,1,0,0,9,1,4,1,532.5,1160749.681411823,614751.8942829203,342024.4828815921,0,2830.595151485121 -4837,6000,10891,10890,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.598652665452432,8.401047608215441,54,5,-19.81762241899646,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.125044018667315,8.871510852473973,57.73,54.53,61.43,43.34,8.333333333333334,1,1,0,0,0,1,4,1,532.5,1160749.681411823,614751.8942829203,342024.4828815921,0,2830.595151485121 -4838,6001,10892,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1043.695191726405,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.407918539086023,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,593,-42388.51438791917,0,0,0,816.3594734438601 -4839,6002,10893,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.214399844732706,6.525432311235147,0,0,-1131.207993762813,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.140091267752175,60.12,54.8,-9,-9,10,1,1,0,0,5,12,3,1,114,383632.5121181965,300805.821793946,137789.9897399736,0,1057.432421146927 -4840,6003,10894,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.954660118510966,7.584594884857491,0,0,-1058.986026278426,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1.747155398651612,7.754618663402021,53.34,23.25,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,219,660824.1993214692,331580.4689229216,269696.1898010001,0,1168.05055194897 -4841,6004,10895,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.393702653281158,8.623271590117019,0,0,0,-957.5330910557869,-9,3,2,2019,14,4,40,0,1,4,0,12.21162455695972,12.21162455695972,0,0,0,0,2,0,0,0,0,0,48.18,22.91,-9,-9,5,3,4,0,0,9,8,4,0,515,301944.5762722771,99080.7062882309,211958.396152179,70696.65693122961,1184.932168949209 -4841,6005,10896,-9,10895,-9,1,1,23,0,0,0,2,2,-9,0,4,7.948700888052328,7.911170932737511,0,0,0,-1020.850168484791,-9,1,-9,2019,10,0,38,0,1,1,1,7.396664162822177,7.396664162822177,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,0,550,119355.8444143771,-47499.5347171515,0,0,1344.385789105803 -4842,6006,10897,10898,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.120131514752931,4.872667927090172,4,-4,30.49045436885978,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.523089934133032,5.113648932451627,58.32,50.22,52,47,10,1,1,0,0,2,5,2,0,414,607940.2715915861,415296.8657200476,171442.5087126154,0,2367.664792505919 -4842,6006,10898,10897,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.849321898607299,6.849574736119187,4,4,-20.63040096056563,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.870649317577356,52,47,58.32,50.22,7,1,1,0,0,0,5,2,0,414,607940.2715915861,415296.8657200476,171442.5087126154,0,2367.664792505919 -4843,6007,10899,10901,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.071806211016954,8.968198186864337,0,19,4,54.90667683773788,0,3,2,2019,19,8,40,41,1,8,0,23.98400037343488,23.98400037343488,0,0,0,0,0,1,1,0,0,0,41.47,58.08,49.26,47.35,3.333333333333333,1,1,0,0,8,6,5,1,412.3333333333333,345550.2359830363,182234.8344859736,573277.7858971478,297245.3128268748,3224.423636339018 -4843,6007,10900,-9,10901,10899,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.698308340904,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,412.3333333333333,345550.2359830363,182234.8344859736,573277.7858971478,297245.3128268748,3224.423636339018 -4843,6007,10901,10899,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.789274889651836,6.92621945546923,0,5,-4,71.3551374096476,0,2,1,2019,11,0,19,19,1,0,0,7.465457245613948,7.465457245613948,0,0,0,0,0,1,1,0,0,0,49.26,47.35,41.47,58.08,8.333333333333334,1,1,0,1,6,6,5,1,412.3333333333333,345550.2359830363,182234.8344859736,573277.7858971478,297245.3128268748,3224.423636339018 -4844,6008,10902,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.780009283812474,8.888803287143073,0,0,0,-973.9684610617877,-9,3,3,2019,0,0,60,0,1,0,0,12.27369970764376,12.27369970764376,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,137,533418.146705072,79086.75602486223,467288.6738587751,59894.82965230028,2476.49523405246 -4845,6009,10903,10904,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,72,-4,-344.329429788248,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.625515696411409,0,0,1,1,0,3.028152890565987,0,52.76,18.38,55,44,8.333333333333334,1,1,0,0,0,6,2,1,670.5,411584.161712966,0,250074.569565501,0,1486.279245003386 -4845,6009,10904,10903,-9,-9,1,1,95,0,0,0,2,2,-9,0,3,0,4.67968270628416,4.551372883139724,72,4,48.62751908311316,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.81602003533812,4.617687415146476,55,44,52.76,18.38,8,1,1,0,0,0,6,2,1,670.5,411584.161712966,0,250074.569565501,0,1486.279245003386 -4846,6010,10905,10906,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.16274363131566,7.419429702808197,2,10,-38.15351466716621,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.62944534346616,7.123623314724592,51.58,50.6,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,991.5,624836.40961993,436034.6085941502,460551.16717802,9645.643903795453,2309.757524966783 -4846,6010,10906,10905,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.068521738469828,7.371409838329212,2,-10,-124.6042658402831,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.618762160754494,7.239485918277575,57.16,56.15,51.58,50.6,8.333333333333334,1,1,0,0,6,9,3,1,991.5,624836.40961993,436034.6085941502,460551.16717802,9645.643903795453,2309.757524966783 -4847,6011,10907,10909,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.980561022227963,8.947703629146552,0,21,-1,-24.46602309835306,0,3,2,2019,11,0,42,45,1,0,0,26.08175848295109,26.08175848295109,0,0,0,0,0,1,1,0,0,0,46.98,59.35,51.19,41.52,8.333333333333334,1,1,0,0,12,4,5,1,901.3333333333334,6708333.938253718,386916.9867021637,1198250.875404163,0,4424.123846662361 -4847,6011,10908,-9,10909,10907,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.221925138098,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,1,1,4,5,1,901.3333333333334,6708333.938253718,386916.9867021637,1198250.875404163,0,4424.123846662361 -4847,6011,10909,10907,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.349209743983133,8.395076503669285,0,21,1,-158.903000952837,0,3,2,2019,13,2,48,43,1,2,0,9.119116819388518,9.119116819388518,0,0,0,0,0,1,1,0,0,0,51.19,41.52,46.98,59.35,8.333333333333334,1,1,0,0,12,4,5,1,901.3333333333334,6708333.938253718,386916.9867021637,1198250.875404163,0,4424.123846662361 -4848,6012,10910,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.335588099053375,6.599358879809436,0,0,-993.1101956499483,0,2,1,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.251034151545388,6.984511120655239,19.19,56.16,-9,-9,3.333333333333333,1,1,0,0,5,12,2,1,3392,746093.6523415041,215728.2093314941,369059.7021166138,0,2179.8822942601 -4849,6013,10911,-9,10912,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.163639434207,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,385,65440.19545086684,14997.94293162561,0,0,666.8887880036743 -4849,6013,10912,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.199580554588606,7.265287712050027,0,0,0,-979.0857443897844,0,-9,-9,2019,14,4,20,0,1,4,0,9.712866644115108,9.712866644115108,0,0,0,0,0,1,1,0,0,0,32.08,58.42,-9,-9,6.666666666666667,1,1,0,0,8,12,2,0,385,65440.19545086684,14997.94293162561,0,0,666.8887880036743 -4850,6014,10913,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,4.842355825392612,4.707781125115273,0,0,-980.8552100156325,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,0,3.680721603385994,0,0,1,1,0,4.530775820297674,4.526779946679746,53.54,11.11,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,512,426805.2193584031,43068.730994467,166116.7599282114,0,1698.111631705725 -4851,6015,10914,10915,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,48,-4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.61,56.93,48.29,47.89,5,1,1,0,1,7,12,1,1,208,260698.4346427273,0,284746.3042248836,0,620.8314820610532 -4851,6015,10915,10914,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,48,4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.29,47.89,46.61,56.93,5,1,1,0,1,0,12,1,1,208,260698.4346427273,0,284746.3042248836,0,620.8314820610532 -4852,6016,10916,10920,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.653040756720685,8.665378391039287,0,7,0,-75.41812111089398,-9,-9,-9,2019,9,0,30,0,1,1,0,18.05811491242115,18.05811491242115,0,0,0,0,0,1,1,0,0,0,51,56,49.69,55.66,8,2,3,0,0,1,7,3,1,541,284451.7441628976,99327.63105861735,135165.3177398349,9010.658637078455,3772.607492008653 -4852,6016,10917,-9,10920,10916,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.085629596861,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,541,284451.7441628976,99327.63105861735,135165.3177398349,9010.658637078455,3772.607492008653 -4852,6016,10918,-9,10920,10916,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1090.428295563817,-9,2,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,55.59,-9,-9,8.333333333333334,2,3,0,0,0,7,3,1,541,284451.7441628976,99327.63105861735,135165.3177398349,9010.658637078455,3772.607492008653 -4852,6016,10919,-9,10920,10916,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.311818788351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,541,284451.7441628976,99327.63105861735,135165.3177398349,9010.658637078455,3772.607492008653 -4852,6016,10920,10916,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,24,0,-110.9203643477416,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,55.66,51,56,10,2,3,0,0,0,7,3,1,541,284451.7441628976,99327.63105861735,135165.3177398349,9010.658637078455,3772.607492008653 -4852,6017,10921,-9,10920,10916,1,0,19,0,2,1,2,0,0,0,3,0,0,0,0,0,-941.6522994769922,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,711,-135545.8461472001,0,0,0,484.4479366751995 -4853,6018,10922,10923,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.918069817624635,6.768433833117576,49,-2,-3.402599363973336,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.384404559502475,7.10173545204789,55.19,54.26,52,47,8.333333333333334,1,1,0,0,5,10,2,1,496.5,513080.693519072,0,428495.5267749267,0,7321.340495681538 -4853,6018,10923,10922,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,48,2,-17.89593781739965,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.48363662197495,0,52,47,55.19,54.26,7,1,1,0,0,0,10,2,1,496.5,513080.693519072,0,428495.5267749267,0,7321.340495681538 -4853,6019,10924,-9,10922,10923,1,1,35,0,0,0,2,2,-9,0,5,8.184056862636066,7.92396931600413,0,0,0,-1075.446757160913,0,1,1,2019,6,0,39,39,1,0,0,9.015879799945468,9.015879799945468,0,0,0,0,0,1,1,0,4.78678485988866,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,691,135541.5733777503,-67175.15743823504,0,0,1299.231579147528 -4854,6020,10925,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,7.590746951932994,7.302482128210864,0,0,-1023.057444881957,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,7.716165838978338,0,0,1,1,0,2.222695919937604,7.438811650992544,65.88,16.46,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,2240,130980.3979757186,86962.56744427051,141092.7803029221,0,1768.067244663375 -4855,6021,10926,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-879.19036559546,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,37.14,61.66,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,526,281037.3415245502,0,0,0,0 -4856,6022,10927,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.037783544283677,6.838107843656048,0,0,0,-992.7017781752128,0,-9,-9,2019,11,0,16,23,1,0,0,7.530063844198141,7.530063844198141,0,0,0,0,0,1,1,0,0,0,38.06,61.12,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,947.3333333333334,41146.53576330526,110352.3975261346,207637.2364474922,177807.6082442586,1712.703521118937 -4856,6022,10928,-9,10927,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.7382043321883,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,947.3333333333334,41146.53576330526,110352.3975261346,207637.2364474922,177807.6082442586,1712.703521118937 -4856,6022,10929,-9,10927,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.4869832747314,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,947.3333333333334,41146.53576330526,110352.3975261346,207637.2364474922,177807.6082442586,1712.703521118937 -4857,6023,10930,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.189939161441552,8.337517449508312,0,0,0,-1040.232949901159,0,2,2,2019,8,0,45,50,1,0,0,10.58969908093874,10.58969908093874,0,0,0,0,0,0,0,0,0,0,50.82,57.78,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,2172,213034.497114038,-17919.64040253818,314251.2771622468,75176.76022904916,1711.933488097058 -4858,6024,10931,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.146490318017203,7.225822238497653,0,0,-1086.712004695001,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.429473418868214,41.79,54.12,-9,-9,6.666666666666667,1,1,0,0,2,12,3,1,4969,614071.6206556017,177166.226514336,325609.4225423407,0,1057.325953123067 -4859,6025,10932,10933,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.758042805693258,8.991578053684172,0,7,8,-51.68710384646138,0,-9,-9,2019,10,0,40,38,1,0,0,17.9949073268661,17.9949073268661,0,0,0,0,0,0,0,0,6.343155640516937,0,50.48,56.4,50.51,53.71,10,1,1,0,0,7,2,5,1,1813,1260194.30045003,679523.5717079421,350696.7132112465,75496.58073822604,3586.831076344542 -4859,6025,10933,10932,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.710749072100063,9.087551753101771,0,7,-8,-57.99859030339138,0,3,2,2019,11,0,43,45,1,0,0,18.38199184845462,18.38199184845462,0,0,0,0,0,0,0,0,7.232045040451144,0,50.51,53.71,50.48,56.4,8.333333333333334,1,1,0,0,11,2,5,1,1813,1260194.30045003,679523.5717079421,350696.7132112465,75496.58073822604,3586.831076344542 -4860,6026,10934,10935,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.208288050828184,9.135408062105515,0,8,6,-58.14156969124711,0,-9,-9,2019,9,0,50,40,1,1,0,18.85493402812183,18.85493402812183,0,0,0,0,0,1,1,0,7.159231353102783,0,53,55,29.13,57.25,8,1,1,0,0,1,9,4,1,582.5,238280.143949392,87132.81203097526,315469.7496123437,142566.7701548248,4527.545767663431 -4860,6026,10935,10934,-9,-9,1,0,44,0,3,0,1,1,-9,1,2,6.548334702924344,6.571378058241533,0,21,-6,-31.11070508517672,0,2,2,2019,17,4,15,15,1,4,0,5.859999777290061,5.859999777290061,0,0,0,0,14.5,1,1,0,0,0,29.13,57.25,53,55,3.333333333333333,1,1,0,0,6,9,4,1,582.5,238280.143949392,87132.81203097526,315469.7496123437,142566.7701548248,4527.545767663431 -4861,6027,10936,10937,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.976884850712889,7.818729264139614,0,6,-2,-176.3952289195632,0,2,3,2019,5,1,50,55,1,1,0,6.269624992532186,6.269624992532186,0,0,0,0,0,0,0,0,0,0,55.77,47.78,57.06,57.76,6.666666666666667,1,1,0,0,8,5,3,1,1044.5,251859.7003824917,45797.05208533791,204150.9625043111,62796.25318243986,1351.164805969381 -4861,6027,10937,10936,-9,-9,1,0,51,0,0,0,3,3,-9,0,5,6.630388343408515,6.669222259032525,0,6,2,-62.70299900104916,-9,-9,-9,2019,6,0,20,0,1,0,0,4.546989838101302,4.546989838101302,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.77,47.78,6.666666666666667,1,1,0,0,1,5,3,1,1044.5,251859.7003824917,45797.05208533791,204150.9625043111,62796.25318243986,1351.164805969381 -4862,6028,10938,10939,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,10,-5,117.1080975132732,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,7.318339748119006,4.033800759290854,0,1,1,0,1.898495628584704,0,57.49,39.89,52.34,56.95,8.333333333333334,1,1,0,0,0,7,3,1,1060.5,878620.2458411329,406606.8982798341,289863.1040002612,0,2043.755997125841 -4862,6028,10939,10938,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.951834867571898,7.80163601217312,10,5,53.85739748690329,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.850878436908492,7.869954938368068,52.34,56.95,57.49,39.89,8.333333333333334,1,1,0,0,0,7,3,1,1060.5,878620.2458411329,406606.8982798341,289863.1040002612,0,2043.755997125841 -4863,6029,10940,10941,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,55,-3,110.2610509905317,0,-9,3,2019,10,0,0,0,4,1,0,0,0,1,1.421605295377838,12.83112851840015,21.5892824395302,0,1,1,0,0,0,51,46,33.33,41.72,8,1,1,0,0,0,12,3,1,303,821832.2511343214,421227.9144971478,196421.3341199638,0,2809.018305284171 -4863,6029,10941,10940,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.026864148189283,7.704436190499617,55,3,135.7926006853334,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,5.535241748677897,8.105384655929605,33.33,41.72,51,46,1.666666666666667,1,1,0,0,0,12,3,1,303,821832.2511343214,421227.9144971478,196421.3341199638,0,2809.018305284171 -4864,6030,10942,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.734901048577813,8.997480308288178,0,0,0,-1009.122008106849,0,2,2,2019,10,1,37,45,1,1,0,15.94266575875444,15.94266575875444,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,13,5,1,712,60848.04809807038,50165.78365077474,93431.9262999574,102332.8244366938,2273.851702090056 -4864,6031,10943,-9,10942,-9,1,0,22,0,0,1,2,0,0,0,4,0,6.396918307671055,6.268729984848219,0,0,-994.7208993314345,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.984484105977074,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,13,2,1,2238,166069.7123763961,0,0,0,340.0091525414219 -4865,6032,10944,-9,-9,-9,1,1,67,0,0,0,3,3,-9,1,1,0,5.148413856388961,4.973231866235208,0,0,-1042.774309613268,0,3,3,2019,15,3,0,0,3,3,0,0,0,1,7.417613699035472,16.20005758637558,67.44753970982303,0,1,1,0,0,4.870577300127575,32.23,20.79,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,570,114730.7329985777,94513.86912009913,0,0,450.8692846126723 -4866,6033,10945,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.843796893510991,6.807654842699312,0,0,-1043.193761874522,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,6.385824578174614,7.795619281718355,67.60472501145323,0,1,1,0,0,6.728153487681034,57.08,24.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,263,111854.6235251751,203983.6406122153,98933.59997874625,0,1800.83165837149 -4867,6034,10946,10947,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,6,0,-5.815564802273503,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.63,57.91,61.28,48.88,10,1,1,0,0,0,12,4,1,1119.5,1342103.845431869,704794.2575248841,354782.08218424,0,3826.984759665627 -4867,6034,10947,10946,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,8.840635039926447,8.830606952477419,6,0,-29.67219380382056,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.872152881129953,61.28,48.88,51.63,57.91,8.333333333333334,1,1,0,0,0,12,4,1,1119.5,1342103.845431869,704794.2575248841,354782.08218424,0,3826.984759665627 -4868,6035,10948,10949,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,5.089155012612168,5.201844133685303,8,0,-26.52904906204158,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.53062991941433,5.503697992621062,57.57,49.69,56.35,43.13,8.333333333333334,1,1,0,0,6,2,3,1,413,1294180.323793887,823462.1209036849,362618.4262008787,0,1686.214814535394 -4868,6035,10949,10948,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.694846940583423,7.857254501004415,8,0,166.25550938733,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.371919140555171,56.35,43.13,57.57,49.69,8.333333333333334,1,1,0,0,0,2,3,1,413,1294180.323793887,823462.1209036849,362618.4262008787,0,1686.214814535394 -4869,6036,10950,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.427952359764607,8.262611667906306,0,0,0,-941.3029664523422,-9,-9,-9,2019,10,1,45,0,1,1,0,9.677534620467696,9.677534620467696,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,980,-59754.71194465699,-131204.2079595593,0,0,1840.83129553148 -4870,6037,10951,-9,10952,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1095.412485465411,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,2,3,1,0,0,8,1,0,308,-42882.35165074217,0,0,0,337.9293122172881 -4870,6038,10952,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,5,0,0,0,0,0,-996.5969856365731,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,45.09,-9,-9,10,2,3,0,0,0,8,2,0,357,-80542.20313095249,0,0,0,1479.517027319616 -4870,6039,10953,-9,10952,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1009.30191616394,-9,3,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.96,55.09,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,603,-16460.41124309468,0,0,0,0 -4870,6040,10954,-9,10952,-9,1,0,27,0,0,0,1,1,-9,0,5,9.017352311431406,8.940077759211537,0,0,0,-996.8998082796052,0,3,-9,2019,18,7,35,38,1,7,1,25.23016919257732,25.23016919257732,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,6.666666666666667,2,3,0,0,1,8,5,0,468,216516.1344560761,-8662.624647967794,0,0,2833.717513633151 -4871,6041,10955,10956,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.735957545181853,8.688283385397268,0,10,-2,44.27688574390407,0,-9,-9,2019,10,0,46,48,1,1,0,15.24830051847773,15.24830051847773,0,0,0,0,0,1,1,0,0,0,50,57,44.76,48.36,7,1,1,0,0,1,4,5,1,978.3333333333334,43029.45664069836,19891.24409011114,268331.8537651965,189743.8263062128,4671.643732170745 -4871,6041,10956,10955,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.347966588105521,8.318733011589879,0,10,2,-14.54510754629249,0,2,2,2019,12,0,37,38,1,0,0,18.77751017824728,18.77751017824728,0,0,0,0,0,1,1,0,0,0,44.76,48.36,50,57,8.333333333333334,1,1,0,0,11,4,5,1,978.3333333333334,43029.45664069836,19891.24409011114,268331.8537651965,189743.8263062128,4671.643732170745 -4871,6041,10957,-9,10956,10955,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.662074357234,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,978.3333333333334,43029.45664069836,19891.24409011114,268331.8537651965,189743.8263062128,4671.643732170745 -4872,6042,10958,10960,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.431856206791929,8.606126461932034,0,3,-1,-67.86182637705642,0,-9,-9,2019,18,6,35,47,1,6,0,17.17219199208836,17.17219199208836,0,0,0,0,0,1,1,0,0,0,30.3,63.25,41.47,58.08,3.333333333333333,1,1,0,0,6,6,4,1,644.6666666666666,238119.3160579021,83381.49460431852,206220.239776729,125328.9318975637,2374.355878686757 -4872,6042,10959,-9,10960,10958,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-922.1793734179982,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,644.6666666666666,238119.3160579021,83381.49460431852,206220.239776729,125328.9318975637,2374.355878686757 -4872,6042,10960,10958,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,7.444471245478845,7.452925608405615,0,3,1,34.26315602239368,0,3,1,2019,13,2,15,37,1,2,0,11.1852872098321,11.1852872098321,0,0,0,0,0,1,1,0,2.816331825875533,0,41.47,58.08,30.3,63.25,8.333333333333334,1,1,0,0,11,6,4,1,644.6666666666666,238119.3160579021,83381.49460431852,206220.239776729,125328.9318975637,2374.355878686757 -4873,6043,10961,-9,-9,-9,1,1,19,0,0,1,2,0,0,1,2,0,0,0,0,0,-981.9216464550218,-9,-9,-9,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,21.04,54.21,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,1342,-74990.63385006375,0,0,0,720.2884492260971 -4874,6044,10962,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.186435015794518,5.455820746517301,0,0,-1118.293642803542,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,0,.7432710144598946,0,1,1,0,4.977783494030152,0,46.48,30.08,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,253,155047.5829393483,81246.22609734861,206925.2558016895,0,601.988866153507 -4875,6045,10963,10964,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.941685918948401,6.192187954233859,41,-2,-41.39000373895964,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,6.437703650193528,57.33,53.46,64.17,20.53,1.666666666666667,1,1,0,0,0,1,2,0,225,293962.2730086289,107688.8345740579,0,0,1825.11332565528 -4875,6045,10964,10963,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,41,2,51.81825312177708,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,37.58244981565013,0,0,1,1,0,0,0,64.17,20.53,57.33,53.46,10,1,1,0,0,0,1,2,0,225,293962.2730086289,107688.8345740579,0,0,1825.11332565528 -4876,6046,10965,-9,10967,10966,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1016.741776051185,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,344.75,266284.3183204361,84661.03022825987,267372.6448471155,89245.05259376687,4413.89177903184 -4876,6046,10966,10967,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.911450513618657,8.857181585356814,0,6,-1,25.16307390483898,-9,-9,-9,2019,9,0,50,0,1,1,0,20.9284219699748,20.9284219699748,0,0,0,0,0,0,0,0,0,0,53,55,54.2,57.49,8,1,1,0,0,1,7,5,1,344.75,266284.3183204361,84661.03022825987,267372.6448471155,89245.05259376687,4413.89177903184 -4876,6046,10967,10966,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.923130688685486,7.889416817813935,0,26,1,-9.990992323285564,0,3,2,2019,7,1,20,20,1,1,0,13.883085211876,13.883085211876,0,0,0,0,0,0,0,0,7.285231358522141,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,7,5,1,344.75,266284.3183204361,84661.03022825987,267372.6448471155,89245.05259376687,4413.89177903184 -4876,6046,10968,-9,10967,10966,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1034.148710659831,-9,1,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,7,5,1,344.75,266284.3183204361,84661.03022825987,267372.6448471155,89245.05259376687,4413.89177903184 -4876,6047,10969,-9,10967,10966,1,0,18,0,2,0,2,2,1,0,4,6.172039229695836,6.351657037210443,0,0,0,-1105.723232958685,-9,2,2,2019,12,1,10,0,1,1,1,6.818789206523271,6.818789206523271,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,203,-29657.10698119843,68088.48012518881,0,0,349.6829684945045 -4877,6048,10970,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.262880848123165,6.074712922285907,0,0,-1012.574344611297,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.203844589669592,47.1,39.26,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1319,223774.2857298017,127229.630605213,148768.5135586578,0,774.7160291482799 -4878,6049,10971,10972,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.828387951491984,7.882338481562531,0,8,-2,-1.240665331499473,0,3,3,2019,11,0,20,20,1,0,0,13.21009712666582,13.21009712666582,0,0,0,0,0,0,0,0,3.908010776057135,0,52.31,58.29,57.16,56.15,8.333333333333334,1,1,0,0,8,5,5,1,890,486661.3930894676,569456.5640875811,143426.0025275292,86997.74537489421,4925.951618479174 -4878,6049,10972,10971,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.210412952528884,9.078121768517887,0,8,2,42.90492404849503,0,3,2,2019,8,0,45,40,1,0,0,23.75792872848399,23.75792872848399,0,0,0,0,0,0,0,0,7.332241972042631,0,57.16,56.15,52.31,58.29,8.333333333333334,1,1,0,0,8,5,5,1,890,486661.3930894676,569456.5640875811,143426.0025275292,86997.74537489421,4925.951618479174 -4878,6050,10973,-9,10971,10972,1,1,25,0,0,0,2,2,-9,0,5,8.445636277285372,8.040676636731767,0,0,0,-988.9077279018777,0,2,2,2019,9,0,40,40,1,0,1,14.47748659797397,14.47748659797397,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,393,25006.16501083558,29817.3451867842,0,0,1643.649868407492 -4878,6051,10974,-9,10971,10972,1,0,25,0,0,0,1,1,-9,0,3,8.316586907000772,8.250656898610556,0,0,0,-1186.086409433049,0,2,2,2019,17,6,48,46,1,6,1,9.398707869058384,9.398707869058384,0,0,0,0,0,0,0,0,0,0,32.82,46.52,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,565,41854.92963606158,-63848.04300248346,0,0,1424.185146181305 -4879,6052,10975,-9,10976,10978,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.117865779507,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,8,4,1,826.75,497578.1897463211,0,529654.9615773505,52417.39716847888,3589.329428340657 -4879,6052,10976,10978,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,7.690337866161785,7.761674775829932,0,22,-4,112.0960462507503,0,2,2,2019,12,0,22,23,1,0,0,10.53290480378164,10.53290480378164,0,0,0,0,0,1,1,0,0,0,44.54,51.51,35.2,48.71,5,1,1,0,0,13,8,4,1,826.75,497578.1897463211,0,529654.9615773505,52417.39716847888,3589.329428340657 -4879,6052,10977,-9,10976,10978,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1179.334473386373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,4,1,826.75,497578.1897463211,0,529654.9615773505,52417.39716847888,3589.329428340657 -4879,6052,10978,10976,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.710579026688686,8.80176265985753,0,22,4,-154.7767014078407,0,-9,-9,2019,12,0,40,40,1,0,0,17.59972663018618,17.59972663018618,0,0,0,0,0,1,1,0,0,0,35.2,48.71,44.54,51.51,5,1,1,0,0,13,8,4,1,826.75,497578.1897463211,0,529654.9615773505,52417.39716847888,3589.329428340657 -4880,6053,10979,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.550952386138994,6.366853333372863,0,0,-1019.73089018886,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.282416169497886,6.864150297880734,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,399,178131.1271424855,212010.5066295436,142621.9136168092,12912.74313782163,877.966430779614 -4881,6054,10980,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.480602655588732,7.540938997916413,0,0,-1091.132860965905,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.243395308998983,46.39,27.56,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,817,1246188.523944935,109443.7021948548,593486.4736245368,0,1686.028760777596 -4881,6055,10981,-9,-9,10980,1,1,30,0,0,0,2,2,-9,0,5,8.951199856929623,8.913786318247414,0,0,0,-1038.234433741737,0,2,2,2019,8,0,37,48,1,0,0,19.36401488486796,19.36401488486796,0,0,0,0,0,1,1,0,7.938671163292311,0,62.39,56.71,-9,-9,10,1,1,0,0,10,8,5,1,480,-5132.001184431761,0,0,0,3405.94682622254 -4882,6056,10982,10983,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,6.994336020551906,7.112409241161227,0,11,5,21.70819384633744,0,-9,-9,2019,15,3,45,0,1,3,0,2.657154107056857,2.657154107056857,0,0,0,0,0,0,0,0,0,0,37.87,33.13,44.62,57.73,5,2,3,0,0,1,4,4,1,1010.5,87600.4832873962,-49625.74187934648,138962.8882890132,55803.6306839529,2182.258169531016 -4882,6056,10983,10982,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.312599171673817,8.140881946386525,0,31,-5,40.77047065975434,0,2,3,2019,13,3,41,42,1,3,0,11.17338036495268,11.17338036495268,0,0,0,0,14.5,0,0,0,4.261654934117753,0,44.62,57.73,37.87,33.13,6.666666666666667,2,3,0,0,13,4,4,1,1010.5,87600.4832873962,-49625.74187934648,138962.8882890132,55803.6306839529,2182.258169531016 -4882,6057,10984,-9,10983,10982,1,1,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-929.9728537033762,-9,2,2,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,-9,-9,5,2,3,1,0,3,4,1,1,1217,32274.49042968663,0,0,0,0 -4883,6058,10985,10986,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.102329024051462,7.809476256967628,0,5,1,-23.03686903614943,0,3,2,2019,9,0,36,38,1,0,0,8.807209804074793,8.807209804074793,0,0,0,0,0,0,0,0,.4703601924345234,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,8,4,0,237,250221.0066673254,80042.55391545829,272344.7743740688,5717.467277606841,2341.562095499504 -4883,6058,10986,10985,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.861850333310188,7.668523066565093,0,5,-1,-46.16094959498971,0,-9,-9,2019,14,3,39,41,1,3,0,10.74195830740003,10.74195830740003,0,0,0,0,7,0,0,0,3.542165221292896,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,9,8,4,0,237,250221.0066673254,80042.55391545829,272344.7743740688,5717.467277606841,2341.562095499504 -4884,6059,10987,-9,10990,10988,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-972.0221242490356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,0,812.6,269459.5469766517,120689.9209247705,219539.5722427797,119073.2294203268,6454.588941937649 -4884,6059,10988,10990,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.844805573541503,9.327677543901199,0,6,0,-75.53018202691159,0,-9,-9,2019,10,0,60,50,1,1,0,17.08723947684086,17.08723947684086,0,0,0,0,0,1,1,0,9.253208019131218,0,50,57,55.12,31.37,7,1,1,0,0,1,2,4,0,812.6,269459.5469766517,120689.9209247705,219539.5722427797,119073.2294203268,6454.588941937649 -4884,6059,10989,-9,10990,10988,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.710660730892,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,0,812.6,269459.5469766517,120689.9209247705,219539.5722427797,119073.2294203268,6454.588941937649 -4884,6059,10990,10988,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,6,0,63.83052783456667,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,1.578616997332611,0,1,1,0,0,0,55.12,31.37,50,57,8.333333333333334,1,1,0,0,0,2,4,0,812.6,269459.5469766517,120689.9209247705,219539.5722427797,119073.2294203268,6454.588941937649 -4884,6059,10991,-9,10990,10988,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.37683583502,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,812.6,269459.5469766517,120689.9209247705,219539.5722427797,119073.2294203268,6454.588941937649 -4885,6060,10992,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,5.087041298103258,5.620578446252599,0,0,-1024.214688059331,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.50484434912332,51,49,-9,-9,7,1,1,0,0,0,11,2,0,3008,112359.1321994407,105660.7613982804,0,0,1033.364901716143 -4886,6061,10993,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.9631728204302,5.236977878194298,0,0,-946.3230650416681,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,6.540819015876068,5.163253978095947,45.57,45.47,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,750,-89948.62762400204,97100.68098861699,-4402.452521113308,0,618.4462794604228 -4887,6062,10994,-9,10995,10996,1,0,28,1,2,0,2,2,-9,0,3,8.138890418752878,8.429335292780845,0,0,0,-925.6993852293547,-9,3,3,2019,12,0,38,0,1,0,0,10.93286238117294,10.93286238117294,0,0,0,0,27,1,1,0,0,0,40.13,41.02,-9,-9,1.666666666666667,2,3,0,0,5,5,3,1,119,-203842.0198097457,-53056.08381290109,0,0,1542.466309646474 -4887,6063,10995,10996,-9,-9,1,0,60,1,2,0,3,3,-9,0,3,0,0,0,10,-11,0,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.449712025619626,0,48,48,51.43,45.6,8.333333333333334,2,3,0,0,0,5,1,1,1287,172087.2272290509,37357.55588840547,40258.89831289413,0,530.9784248591229 -4887,6063,10996,10995,-9,-9,1,1,71,1,2,0,3,3,-9,0,2,0,0,0,10,11,0,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.43,45.6,48,48,8.333333333333334,2,3,0,0,0,5,1,1,1287,172087.2272290509,37357.55588840547,40258.89831289413,0,530.9784248591229 -4887,6064,10997,10998,10995,10996,1,1,33,1,2,0,2,2,-9,0,3,0,0,0,9,3,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.914381473074894,0,50.56,42.08,48.31,44.06,8.333333333333334,2,3,0,0,1,5,1,1,1485.75,-52908.68247098647,42869.52751960493,0,0,4.633240695288166 -4887,6064,10998,10997,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,0,0,0,9,-3,0,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.6557060284543421,0,48.31,44.06,50.56,42.08,5,2,3,0,0,0,5,1,1,1485.75,-52908.68247098647,42869.52751960493,0,0,4.633240695288166 -4887,6064,10999,-9,10998,10997,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.093643262463,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,1,1,1485.75,-52908.68247098647,42869.52751960493,0,0,4.633240695288166 -4887,6064,11000,-9,10998,10997,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.50833996194,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,5,1,1,1485.75,-52908.68247098647,42869.52751960493,0,0,4.633240695288166 -4888,6065,11001,11002,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.055828668300222,4.951319150190054,10,-3,-158.6372188539864,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.99096055798393,5.348773077535275,63.83,43.62,58.39,39.68,10,1,1,0,0,5,8,2,1,1093,825709.6629232463,182879.6145305268,722411.3870091975,0,2024.421659263563 -4888,6065,11002,11001,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.934071715014123,7.0032940137468,10,3,5.947338807866728,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.409776653516057,6.587853699494363,58.39,39.68,63.83,43.62,0,1,1,0,0,5,8,2,1,1093,825709.6629232463,182879.6145305268,722411.3870091975,0,2024.421659263563 -4889,6066,11003,11004,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,55,-1,-53.21333354100235,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.73,34.86,60.25,21.15,0,1,1,0,0,0,13,2,1,1045.5,65934.73537272858,84645.51528617268,93577.88220475323,0,1085.851629970731 -4889,6066,11004,11003,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.11008890681306,4.974619734287399,55,1,24.65145358758426,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.332375589460824,60.25,21.15,48.73,34.86,8.333333333333334,1,1,0,0,0,13,2,1,1045.5,65934.73537272858,84645.51528617268,93577.88220475323,0,1085.851629970731 -4890,6067,11005,-9,11006,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.083241578648,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,647.6666666666666,-75368.44843770626,72507.24947258011,0,0,1619.003538051053 -4890,6067,11006,-9,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,7.790044645665115,7.70466332982804,6.124571880469432,0,0,-1059.247088667431,-9,2,2,2019,12,0,24,0,1,0,0,12.13681528484368,12.13681528484368,0,0,0,0,0,1,1,0,6.498595083901265,0,52.8,44.52,-9,-9,5,1,1,0,0,8,6,3,0,647.6666666666666,-75368.44843770626,72507.24947258011,0,0,1619.003538051053 -4890,6067,11007,-9,11006,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.9797977737953,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,647.6666666666666,-75368.44843770626,72507.24947258011,0,0,1619.003538051053 -4891,6068,11008,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,0,0,0,0,0,-956.6074844392321,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.89,14.27,-9,-9,3.333333333333333,1,1,0,0,5,12,1,0,520,-125668.9761645962,0,0,0,965.2750275512848 -4892,6069,11009,-9,11011,11010,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1104.042501560597,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,532.3333333333334,774138.5580860511,830191.6022539058,166226.0570565721,0,3125.664676614984 -4892,6069,11010,11011,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,8.463614548924324,8.37941571241895,0,23,0,-42.34103087315522,0,-9,-9,2019,7,0,37,37,1,0,0,13.34786373267141,13.34786373267141,0,0,0,0,0,1,1,0,0,0,51.34,48.31,53.96,50.73,8.333333333333334,1,1,0,0,9,13,4,1,532.3333333333334,774138.5580860511,830191.6022539058,166226.0570565721,0,3125.664676614984 -4892,6069,11011,11010,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.119042294507485,8.382207817243099,0,18,0,-14.09363724469498,0,-9,-9,2019,11,0,37,36,1,0,0,10.71065699230424,10.71065699230424,0,0,0,0,0,1,1,0,0,0,53.96,50.73,51.34,48.31,6.666666666666667,1,1,0,0,10,13,4,1,532.3333333333334,774138.5580860511,830191.6022539058,166226.0570565721,0,3125.664676614984 -4892,6070,11012,-9,11011,11010,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1055.677089222932,-9,2,2,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,270,-100107.0751488882,0,0,0,-137.8227947347059 -4893,6071,11013,11014,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.652467409043235,8.63406220134706,7.959977591234468,13,8,69.37826885273215,-9,2,2,2019,11,2,30,0,1,2,0,11.48084177460772,11.48084177460772,0,0,0,0,0,0,0,0,3.923528382602925,8.05108767761196,51.4,42.44,28.97,59.76,6.666666666666667,1,1,0,0,13,10,4,1,676,1682405.124714477,494413.4890027859,600933.913723773,0,4079.302651333855 -4893,6071,11014,11013,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,12,-8,-39.66235614633789,0,2,1,2019,21,9,0,100,4,9,0,0,0,0,0,0,0,14.5,0,0,0,7.538067359437552,0,28.97,59.76,51.4,42.44,3.333333333333333,1,1,0,0,12,10,4,1,676,1682405.124714477,494413.4890027859,600933.913723773,0,4079.302651333855 -4893,6072,11015,-9,11014,11013,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-949.6486154422598,-9,1,2,2019,30,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1.454169646496535,0,12,70.35000000000001,-9,-9,5,1,1,0,0,0,10,1,1,286,0,0,0,0,-65.09036117301027 -4894,6073,11016,11017,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,53,0,-57.05941771650505,0,2,2,2019,31,11,0,0,4,11,0,0,0,1,0,0,0,7,1,1,0,3.917985005770297,0,24.19,23.76,44.76,24.42,0,1,1,0,0,0,6,2,1,1004.5,467778.2524615144,129929.8345670345,276052.1158152078,0,2244.771390379437 -4894,6073,11017,11016,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,7.18266209611779,7.562361867011616,53,9,33.40442566967843,0,3,2,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.722573257861505,7.573970836218077,44.76,24.42,24.19,23.76,8.333333333333334,1,1,0,0,0,6,2,1,1004.5,467778.2524615144,129929.8345670345,276052.1158152078,0,2244.771390379437 -4895,6074,11018,11019,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.322697323943417,7.350416629452752,3,-3,-145.8722183595131,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.275984246894866,7.751872989075249,48.12,42.71,54.1,59.11,8.333333333333334,1,1,0,0,8,10,4,1,284.5,2884594.954079056,1463754.089238182,409865.2686850096,0,5419.10546004806 -4895,6074,11019,11018,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.632514042736421,8.619500813135906,3,3,39.78190678375336,0,3,3,2019,9,0,0,24,4,0,0,0,0,0,0,0,2.157402749653448,0,0,0,0,7.313606611178137,8.482916846883272,54.1,59.11,48.12,42.71,8.333333333333334,1,1,0,0,9,10,4,1,284.5,2884594.954079056,1463754.089238182,409865.2686850096,0,5419.10546004806 -4896,6075,11020,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.16287701369577,7.061624928750145,0,0,-952.742647879639,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.902141158121252,6.87611080439188,58.32,50.22,-9,-9,10,1,1,0,0,0,2,2,1,430,390786.5805429104,493097.4715574479,58022.62700950418,0,1316.490151422248 -4897,6076,11021,11022,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.913436395131803,7.9785243210795,6.344165171210356,9,7,19.89807751008602,0,3,-9,2019,10,0,37,37,1,1,0,8.367888502778255,8.367888502778255,0,0,0,0,14.5,1,1,0,0,6.791598166877758,51,48,16.04,23.99,7,1,1,0,0,10,2,3,1,496,740616.7950090239,459758.3189874461,266093.1271196475,0,2497.026941153647 -4897,6076,11022,11021,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,9,-7,68.96588195987647,0,3,3,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,51,48,0,1,1,0,0,1,2,3,1,496,740616.7950090239,459758.3189874461,266093.1271196475,0,2497.026941153647 -4898,6077,11023,11024,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.58712657733556,8.065120764585258,40,3,-16.50892902440662,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.26114548664508,8.020563542276289,58.98,29.7,53.27,27.99,8.333333333333334,1,1,0,0,6,6,4,1,362,1040116.53343392,861692.9339105128,119401.8245124911,0,2661.789599393096 -4898,6077,11024,11023,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.272470190542338,6.985175032115952,40,-3,-60.59407817572721,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.252209804715223,7.405381693519603,53.27,27.99,58.98,29.7,3.333333333333333,1,1,0,0,7,6,4,1,362,1040116.53343392,861692.9339105128,119401.8245124911,0,2661.789599393096 -4899,6078,11025,-9,-9,-9,1,0,31,1,1,0,2,2,-9,0,5,7.535741799811847,7.185782775519875,0,0,0,-941.6619862985509,0,2,2,2019,11,0,16,16,1,0,0,9.048988923329329,9.048988923329329,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,423,75018.32691161305,9386.990275595112,0,0,758.7824115022123 -4899,6078,11026,-9,11025,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.0477920207736,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,6,-9,0,0,10,3,1,423,75018.32691161305,9386.990275595112,0,0,758.7824115022123 -4900,6079,11027,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1144.720639999243,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,13,1,0,315,-102239.8271293827,0,0,0,1142.090226512501 -4901,6080,11028,11029,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,6.993945278309521,7.070195563244255,0,7,-17,125.4211382017637,0,2,2,2019,8,0,40,45,1,0,0,3.608833113928924,3.608833113928924,0,0,0,0,0,1,1,0,4.830722952578893,0,51.83,57.2,56.57,57.78,8.333333333333334,1,1,0,0,9,10,3,1,132,680300.9315100007,271168.1679122184,343631.7948244345,0,2727.084737710122 -4901,6080,11029,11028,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.725135936348561,7.527115918048397,7,17,12.19503109411275,0,1,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.685574771049873,0,56.57,57.78,51.83,57.2,8.333333333333334,1,1,0,0,7,10,3,1,132,680300.9315100007,271168.1679122184,343631.7948244345,0,2727.084737710122 -4902,6081,11030,11031,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,7.376413833008017,7.219558946025543,0,8,-2,-59.40208708296211,0,3,3,2019,10,0,23,22,1,0,0,6.143914548635972,6.143914548635972,0,0,0,0,2,1,1,0,.6047514171809902,0,44.26,38.35,57.34,17.29,6.666666666666667,1,1,0,0,8,13,4,0,1616,284109.4154464329,49075.04354425142,116482.2332687221,0,1683.948462607341 -4902,6081,11031,11030,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,7.838767196236766,7.977553443285599,0,8,2,-57.02628476084171,0,3,3,2019,12,0,50,50,1,0,0,5.675660995091195,5.675660995091195,0,0,0,0,0,1,1,0,0,0,57.34,17.29,44.26,38.35,5,1,1,0,0,8,13,4,0,1616,284109.4154464329,49075.04354425142,116482.2332687221,0,1683.948462607341 -4902,6082,11032,-9,11030,11031,1,0,32,0,0,0,1,1,-9,0,3,8.485080795958924,8.414278851993739,0,0,0,-884.5760855602332,0,2,2,2019,8,0,36,36,1,0,1,15.52021899505785,15.52021899505785,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,13,5,0,1164,364959.3791070696,-62171.43435980468,135125.8882669217,76427.10415336861,1128.305147134849 -4902,6083,11033,-9,11030,11031,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-956.0882293105286,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.8674197469475018,0,50.82,57.78,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,1438,170809.4136639774,0,0,0,23.93659797946583 -4903,6084,11034,11035,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,28,0,-60.89212490877469,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,48.93,29.29,44.28,52.44,5,1,1,0,1,6,1,3,0,587.5,534334.4521866671,327859.5937113211,167345.3554730372,16370.59743774851,1439.928588206985 -4903,6084,11035,11034,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.588088733782229,7.661495400780145,0,28,0,52.61608249922613,0,3,2,2019,9,0,30,36,1,0,0,9.651452354610214,9.651452354610214,0,0,0,0,0,1,1,0,0,0,44.28,52.44,48.93,29.29,6.666666666666667,1,1,0,1,7,1,3,0,587.5,534334.4521866671,327859.5937113211,167345.3554730372,16370.59743774851,1439.928588206985 -4903,6085,11036,-9,11034,11035,1,0,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-949.7721471281408,1,2,1,2019,12,2,0,30,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,7,1,1,0,433,-100766.5174248319,0,0,0,1055.283519247886 -4904,6086,11037,-9,11040,11038,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.5302476753681,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,630,153435.4508835122,18412.49412576969,201632.0723527525,59235.90156609018,2226.36625204259 -4904,6086,11038,11040,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.107315960193482,7.956512252361875,0,7,-3,115.7326863192394,0,-9,-9,2019,17,5,35,35,1,5,0,10.20446090093739,10.20446090093739,0,0,0,0,0,1,1,0,0,0,32.87,45.28,25.63,50.7,1.666666666666667,1,1,0,0,7,7,3,1,630,153435.4508835122,18412.49412576969,201632.0723527525,59235.90156609018,2226.36625204259 -4904,6086,11039,-9,11040,11038,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.7432555272393,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,630,153435.4508835122,18412.49412576969,201632.0723527525,59235.90156609018,2226.36625204259 -4904,6086,11040,11038,11041,-9,1,0,32,0,2,0,2,2,-9,0,2,6.898381248156737,7.116546740745428,0,7,3,-47.68684190094483,0,2,-9,2019,23,10,17,17,1,10,0,6.15663585588519,6.15663585588519,0,0,0,0,0,1,1,0,0,0,25.63,50.7,32.87,45.28,5,1,1,0,0,7,7,3,1,630,153435.4508835122,18412.49412576969,201632.0723527525,59235.90156609018,2226.36625204259 -4904,6087,11041,-9,-9,-9,1,0,60,0,2,0,2,2,-9,0,2,7.885121778449208,8.107632401335415,0,0,0,-998.686090410253,0,2,2,2019,5,0,37,37,1,0,0,10.01410014125397,10.01410014125397,0,0,0,0,0,1,1,0,0,0,58.74,40.91,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,2000,462081.6216427534,25489.44355507087,222188.8790061334,-13626.87927578864,1698.920391243005 -4905,6088,11042,11043,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.46229029442161,8.336693729950577,0,4,0,-4.510745407202735,0,-9,-9,2019,6,0,37,40,1,0,0,13.31989342506809,13.31989342506809,0,0,0,0,0,0,0,0,0,0,55.34,54.26,57.33,53.46,8.333333333333334,1,1,0,0,7,4,5,1,1262,257745.3350471973,102122.3186031946,126483.458873891,142599.0344807592,2832.74650729958 -4905,6088,11043,11042,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.158686933000586,8.26642496924803,0,4,0,-107.0013736036196,0,2,2,2019,5,0,40,39,1,0,0,9.24330745729192,9.24330745729192,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.34,54.26,8.333333333333334,4,2,0,0,11,4,5,1,1262,257745.3350471973,102122.3186031946,126483.458873891,142599.0344807592,2832.74650729958 -4906,6089,11044,11048,-9,-9,1,1,51,0,3,0,2,2,-9,0,2,7.456526446732374,7.924972840492458,6.523067361502988,10,8,133.4916050387077,0,-9,2,2019,13,3,40,50,1,3,0,6.516201183419568,6.516201183419568,0,0,0,0,0,1,1,0,0,6.185965636592631,53.88,33.91,7.99,70.84,6.666666666666667,1,1,0,1,9,10,2,0,419.2,1408216.335436615,1164464.109785984,290571.9065635069,109057.7533081856,2504.500945558167 -4906,6089,11045,-9,11048,11044,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-988.625320702807,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,2,0,419.2,1408216.335436615,1164464.109785984,290571.9065635069,109057.7533081856,2504.500945558167 -4906,6089,11046,-9,11048,11044,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-932.2414004471657,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,2,0,419.2,1408216.335436615,1164464.109785984,290571.9065635069,109057.7533081856,2504.500945558167 -4906,6089,11047,-9,11048,11044,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.468506325169,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,419.2,1408216.335436615,1164464.109785984,290571.9065635069,109057.7533081856,2504.500945558167 -4906,6089,11048,11044,-9,-9,1,0,43,0,3,0,2,2,-9,0,5,0,0,0,12,-8,-4.855009963299887,0,2,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,7.99,70.84,53.88,33.91,3.333333333333333,1,1,0,1,1,10,2,0,419.2,1408216.335436615,1164464.109785984,290571.9065635069,109057.7533081856,2504.500945558167 -4907,6090,11049,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.120408554302035,8.097634810802758,7.24668178068924,0,0,-1097.52734206752,0,2,2,2019,12,1,48,37,1,1,0,9.301022841515598,9.301022841515598,0,0,0,0,0,1,1,0,6.578272043209821,5.283225873868527,41.08,46.12,-9,-9,6.666666666666667,1,1,0,1,10,10,4,0,395,504666.9568113385,258475.368622387,0,0,1603.242940279236 -4907,6091,11050,-9,11049,-9,1,0,25,0,0,0,1,1,-9,0,1,7.968283702134066,7.924615658445479,0,0,0,-977.1692403461035,0,2,2,2019,31,12,44,5,1,12,1,6.770645639731135,6.770645639731135,0,0,0,0,0,1,1,0,0,0,13.67,57.93,-9,-9,3.333333333333333,1,1,0,0,3,10,3,0,1618,59747.16367457324,-134557.3056148319,0,0,1537.144641878466 -4907,6092,11051,-9,11049,-9,1,0,22,0,0,0,2,2,-9,0,4,7.972590243642581,8.003501912476661,0,0,0,-1089.271774729836,0,2,2,2019,12,0,37,32,1,0,1,7.631043974361052,7.631043974361052,0,0,0,0,0,1,1,0,1.96342749915422,0,41.08,58.41,-9,-9,8.333333333333334,1,1,0,0,4,10,3,0,663,-402698.5876612006,-27076.42147876076,0,0,654.020496806055 -4908,6093,11052,11053,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.058292388446006,8.053386238584967,0,6,0,11.0960533496089,0,1,2,2019,18,8,18,18,1,8,0,15.28756129182997,15.28756129182997,0,0,0,0,0,0,0,0,8.341820507279239,0,38.57,58.06,51.77,58.57,8.333333333333334,1,1,0,0,7,8,5,1,867.5,3653262.642236106,1682828.333823492,353738.5267843763,0,6901.416227097639 -4908,6093,11053,11052,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.543794080094118,8.865775762707834,0,6,0,65.11272928339133,0,1,1,2019,10,0,18,18,1,0,0,33.27667952243877,33.27667952243877,0,0,0,0,0,0,0,0,7.928761787523261,0,51.77,58.57,38.57,58.06,8.333333333333334,1,1,0,0,7,8,5,1,867.5,3653262.642236106,1682828.333823492,353738.5267843763,0,6901.416227097639 -4908,6094,11054,-9,11053,11052,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-1065.242204837786,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.71,61.59,-9,-9,8.333333333333334,1,1,0,0,1,8,1,1,469,234556.6806034334,0,0,0,421.0923327333802 -4908,6095,11055,-9,11053,11052,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-958.6280281293159,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.19,52.52,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,236,-118274.2952252189,0,0,0,0 -4909,6096,11056,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.611368832329305,7.034084335453895,0,0,0,-979.9769883999844,0,2,2,2019,16,6,30,30,1,6,0,7.316017600636302,7.316017600636302,0,0,0,0,0,1,1,0,2.711571246118657,0,50.27,44.25,-9,-9,3.333333333333333,1,1,0,0,8,13,3,1,216,652573.8120565622,454595.4377226456,95626.40854356068,38979.97186689132,842.654808456869 -4909,6097,11057,-9,11056,-9,1,1,23,0,0,0,1,1,-9,0,4,7.71251776448554,7.856994554608366,3.803178706837953,0,0,-994.6514163464445,0,2,2,2019,2,0,39,30,1,0,1,7.00336254145567,7.00336254145567,0,0,0,0,0,1,1,0,5.07436308166952,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,208,-195105.9374091129,0,0,0,1270.085407547464 -4910,6098,11058,11060,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.905409334221252,8.666890506866954,0,18,-2,-65.97389694640235,0,2,2,2019,7,0,37,37,1,0,0,16.60749452333114,16.60749452333114,0,0,0,0,0,1,1,0,0,0,52.31,58.29,57.33,53.46,8.333333333333334,1,1,0,0,11,1,4,1,708,373061.3561275309,56756.25620018157,181422.065380096,57475.49240613971,3242.136627865646 -4910,6098,11059,-9,11058,11060,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.996131378166,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,708,373061.3561275309,56756.25620018157,181422.065380096,57475.49240613971,3242.136627865646 -4910,6098,11060,11058,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,7.505610777165598,7.614125216990621,0,18,2,-99.48515968403136,0,2,3,2019,8,0,50,40,1,0,0,3.770431707537999,3.770431707537999,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.31,58.29,8.333333333333334,1,1,0,0,11,1,4,1,708,373061.3561275309,56756.25620018157,181422.065380096,57475.49240613971,3242.136627865646 -4911,6099,11061,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.709380132185478,6.587714161207989,0,0,-1008.614606759148,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.800234833895698,55.71,40.47,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,1017,399588.3951568449,168550.2518823133,408110.9894075921,0,541.6786336613347 -4912,6100,11062,11063,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,4.673767030683409,4.254377938194869,28,0,93.86678842785582,-9,3,3,2019,15,3,0,0,4,3,0,0,0,1,1.02936449454912,5.251414196188071,15.97040616439423,0,1,1,0,3.679869604435026,4.728921925504861,50.49,19.06,62.03,41.71,5,1,1,0,0,0,10,2,1,243,1267445.40193426,334695.1601475518,612632.5460985827,0,3176.774401624692 -4912,6100,11063,11062,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.091449446515683,6.910490299138849,33,9,.4285238576875092,-9,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.046006836911672,6.863302643770425,62.03,41.71,50.49,19.06,8.333333333333334,1,1,0,0,0,10,2,1,243,1267445.40193426,334695.1601475518,612632.5460985827,0,3176.774401624692 -4913,6101,11064,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,6.17560403202511,6.08206539918869,0,0,-1028.592202484049,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.127741608812665,62.51,44.7,-9,-9,10,1,1,0,0,0,9,2,0,3708,324383.0843705155,90987.73250883605,350272.0861301954,0,1651.909827047938 -4914,6102,11065,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,4.60676917222522,4.787396449790956,0,0,-921.488861605432,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,2.190467210402006,3.637041928766023,21.26840199953211,0,1,1,0,5.007650080283454,4.843436949872598,56.01,27.43,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,569,261028.6683945628,48465.78461848848,8363.596113239822,0,1390.81168759501 -4915,6103,11066,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.644991525971888,7.30646562579979,0,0,-1021.384688164952,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,5.491175228982509,0,0,0,1,1,0,2.09541558107832,7.73707499471506,55.11,47.63,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,384,240762.1389819793,138682.3480705477,0,0,1555.252997690302 -4916,6104,11067,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.693723911258427,8.805219937408062,0,0,0,-909.214223731562,0,2,2,2019,8,2,40,44,1,2,0,19.28771492627332,19.28771492627332,0,0,0,0,0,0,0,0,3.649214928382509,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,180,214470.4072162023,213466.6309905524,65335.31444558671,7675.980220626033,2783.017269039044 -4917,6105,11068,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.764283988982112,6.879101498477157,0,0,-1008.682897324775,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.681696748946568,6.846367626414732,54.42,32.31,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,313,303714.9792527257,104903.220547097,59021.85016325585,0,1227.840471643247 -4918,6106,11069,-9,11072,11070,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.992386248146,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,1448,-35206.37477895465,0,0,0,1381.872018251999 -4918,6106,11070,11072,-9,-9,1,1,41,0,2,0,2,2,-9,1,2,0,0,0,1,14,0,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,35.44,39.41,43.59,59.64,3.333333333333333,1,1,0,0,0,5,1,0,1448,-35206.37477895465,0,0,0,1381.872018251999 -4918,6106,11071,-9,11072,11070,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.6429796134385,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1448,-35206.37477895465,0,0,0,1381.872018251999 -4918,6106,11072,11070,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,0,0,0,1,-14,0,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.59,59.64,35.44,39.41,1.666666666666667,1,1,0,0,0,5,1,0,1448,-35206.37477895465,0,0,0,1381.872018251999 -4919,6107,11073,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.654212790006707,8.873925961776344,0,0,0,-966.2166833232205,0,3,3,2019,14,3,37,40,1,3,0,16.63122371587564,16.63122371587564,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,-9,-9,5,1,1,0,0,11,12,5,0,369,-78504.76108395602,42966.1507768244,98306.30793812731,55212.69342081283,1893.281813218339 -4920,6108,11074,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,7,31,116.3470965436287,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,48.88,56.77,52.22,0,1,1,0,0,8,5,5,1,577,-71217.53841696493,0,0,0,397.0292135011225 -4920,6109,11075,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,9.653077095241603,9.357938939529916,0,7,-31,-128.6334530554508,0,2,2,2019,6,0,40,40,1,0,0,40.69645741718537,40.69645741718537,0,0,0,0,0,1,1,0,2.9508117232365,0,56.77,52.22,61.43,48.88,8.333333333333334,1,1,0,0,8,5,5,1,1714,181527.8318033632,193387.5271749668,174901.3252742414,30039.68394525271,4029.872311372591 -4921,6110,11076,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.330032456828787,8.156897503112987,0,0,0,-976.4378075722306,0,2,2,2019,17,6,40,40,1,6,0,11.72906633313118,11.72906633313118,0,0,0,0,0,1,1,0,3.035544060682566,0,30.35,52.76,-9,-9,6.666666666666667,1,1,0,0,8,4,4,1,185,138979.7970133529,56786.94692987747,141894.7908871988,0,607.8736910876565 -4922,6111,11077,-9,11078,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-945.1975461575553,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,2716.333333333333,520158.9281344684,47362.30481163465,188064.2463577798,0,3061.460463193924 -4922,6111,11078,-9,-9,-9,1,0,45,0,2,0,2,2,-9,1,4,7.401108181929759,7.963714458475927,7.138843305375836,0,0,-852.6730302296191,0,1,1,2019,3,0,17,17,1,0,0,13.6779953585927,13.6779953585927,0,0,0,0,109,1,1,0,7.546840119720982,0,46.63,59.72,-9,-9,10,1,1,0,0,10,4,3,1,2716.333333333333,520158.9281344684,47362.30481163465,188064.2463577798,0,3061.460463193924 -4922,6111,11079,-9,11078,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.9356236461898,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,2716.333333333333,520158.9281344684,47362.30481163465,188064.2463577798,0,3061.460463193924 -4923,6112,11080,11081,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.310045207732893,7.113040589622077,54,-1,-19.61942501252307,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.614523254536476,6.822369289843143,46.4,59.87,59.62,33.42,10,1,1,0,0,0,4,3,1,1106.5,1010140.700948128,586481.5496846221,104147.6921909834,0,2447.01479821068 -4923,6112,11081,11080,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.78253933946116,8.0824428707951,54,1,104.6933900610832,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.952606600789316,7.80781678292323,59.62,33.42,46.4,59.87,8.333333333333334,1,1,0,0,0,4,3,1,1106.5,1010140.700948128,586481.5496846221,104147.6921909834,0,2447.01479821068 -4924,6113,11082,-9,11085,11084,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.513712746479,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1188.2,106757.8425708122,50452.86837509476,153974.0629601556,54201.12944585895,2938.164312893326 -4924,6113,11083,-9,11085,11084,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-954.9763145140137,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,3,1,1188.2,106757.8425708122,50452.86837509476,153974.0629601556,54201.12944585895,2938.164312893326 -4924,6113,11084,11085,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.969296223452576,8.215618864633605,0,3,10,-46.87095911637884,-9,-9,-9,2019,9,0,40,0,1,1,0,8.766960798684909,8.766960798684909,0,0,0,0,0,1,1,0,7.519771052111039,0,53,55,54.2,57.49,8,1,1,0,0,9,11,3,1,1188.2,106757.8425708122,50452.86837509476,153974.0629601556,54201.12944585895,2938.164312893326 -4924,6113,11085,11084,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.308711837550236,7.478910208548287,7.041317151236684,15,-10,-16.35761743791924,0,2,2,2019,8,0,18,15,1,0,0,2.348451623546469,2.348451623546469,0,0,0,0,2,1,1,0,6.7254681766956,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,11,3,1,1188.2,106757.8425708122,50452.86837509476,153974.0629601556,54201.12944585895,2938.164312893326 -4924,6113,11086,-9,11085,11084,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.255744294951,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1188.2,106757.8425708122,50452.86837509476,153974.0629601556,54201.12944585895,2938.164312893326 -4925,6114,11087,-9,11088,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1010.35111185088,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,480,1062145.644848744,188792.6749207575,0,0,1953.10904889365 -4925,6114,11088,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.039481923407595,6.197502326779534,0,0,-1009.590120513124,0,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.4580950525545278,6.482924771081444,56.43,31.35,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,480,1062145.644848744,188792.6749207575,0,0,1953.10904889365 -4926,6115,11089,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,7.030362896122661,6.775812033995055,0,0,-967.0097602243877,-9,-9,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,6.480458097675216,0,45.72,49.56,-9,-9,5,1,1,0,0,3,10,2,0,510,-57527.00249435582,0,0,0,1233.024170224012 -4927,6116,11090,11091,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.861266442156706,9.015439380290944,0,28,4,-93.96837971258326,0,-9,-9,2019,7,0,38,46,1,0,0,18.40310770923112,18.40310770923112,0,0,0,1.139300466044817,0,1,1,0,0,0,56.91,49.54,48.69,42.99,8.333333333333334,1,1,0,0,9,7,4,1,270,555818.5117815837,28794.34930183867,581432.3622292886,121780.1098414198,3355.319385371973 -4927,6116,11091,11090,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,7.402467059049936,7.309962796943656,5.242472594336691,28,-4,-90.92055473204226,0,2,2,2019,13,2,20,20,1,2,0,7.84432807294582,7.84432807294582,0,0,0,0,0,1,1,0,5.853917544537993,0,48.69,42.99,56.91,49.54,8.333333333333334,1,1,0,0,13,7,4,1,270,555818.5117815837,28794.34930183867,581432.3622292886,121780.1098414198,3355.319385371973 -4928,6117,11092,-9,11096,11093,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.347825293787,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,4,3,1,388.2,747932.3828160113,757807.9201030062,148913.3723339774,53059.90044637876,1863.497723783865 -4928,6117,11093,11096,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,8.267004456436826,8.320329774064652,0,19,4,-62.05992498290956,0,3,3,2019,17,5,37,41,1,5,0,9.233082545342802,9.233082545342802,0,0,0,0,7,1,1,0,.6793669904124663,0,48.55,45.7,53.94,39.32,5,2,3,0,0,9,4,3,1,388.2,747932.3828160113,757807.9201030062,148913.3723339774,53059.90044637876,1863.497723783865 -4928,6117,11094,-9,11096,11093,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1004.859762327616,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,388.2,747932.3828160113,757807.9201030062,148913.3723339774,53059.90044637876,1863.497723783865 -4928,6117,11095,-9,11096,11093,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1004.25835305455,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,388.2,747932.3828160113,757807.9201030062,148913.3723339774,53059.90044637876,1863.497723783865 -4928,6117,11096,11093,-9,-9,1,0,38,0,3,0,2,2,-9,0,2,0,0,0,19,-4,-17.04401004412689,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,53.94,39.32,48.55,45.7,5,2,3,0,0,0,4,3,1,388.2,747932.3828160113,757807.9201030062,148913.3723339774,53059.90044637876,1863.497723783865 -4929,6118,11097,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1025.372856580671,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,-9,-9,6.666666666666667,1,1,0,0,3,13,1,0,308,-70819.57104498579,0,0,0,851.764383665051 -4930,6119,11098,11099,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,6.559848732811364,6.620011164080508,0,6,-8,68.49429287285676,0,3,2,2019,13,1,24,24,1,1,0,2.934017709192813,2.934017709192813,0,0,0,0,42,1,1,0,3.785813906133554,0,41.58,52.86,30.09,41.75,3.333333333333333,1,1,0,1,7,12,2,1,862.5,362130.3054152209,96088.0735352592,157799.4503109673,0,1595.996896690326 -4930,6119,11099,11098,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,6,8,111.6394965132848,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,30.09,41.75,41.58,52.86,8.333333333333334,1,1,0,0,0,12,2,1,862.5,362130.3054152209,96088.0735352592,157799.4503109673,0,1595.996896690326 -4930,6120,11100,-9,11099,11098,1,1,37,0,0,0,1,1,-9,0,3,7.967824429686341,7.856860954012467,0,0,0,-1075.571432124623,0,3,3,2019,24,12,40,40,1,12,1,6.913505362514193,6.913505362514193,0,0,0,0,2,1,1,0,0,0,32.42,38.97,-9,-9,3.333333333333333,1,1,0,0,7,12,3,1,151,-98729.85274932922,97291.07979086773,0,0,1360.464066605411 -4930,6121,11101,-9,11099,11098,1,1,36,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1023.379252986035,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.44,38.75,-9,-9,5,1,1,0,0,0,12,1,1,158,143280.329989687,0,0,0,1358.133483024582 -4930,6122,11102,-9,11099,11098,1,1,21,0,0,0,2,2,-9,0,3,7.969150895440564,8.103019677461161,0,0,0,-989.0486625186517,0,3,3,2019,15,3,37,50,1,3,1,7.951389682313439,7.951389682313439,0,0,0,0,2,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,1,12,3,1,673,35921.71471701356,153706.7345129223,0,0,1278.547867070215 -4930,6123,11103,-9,11099,11098,1,0,20,0,0,0,2,2,-9,0,4,6.421653044185952,6.495896908752017,0,0,0,-1011.136210273855,0,3,2,2019,6,0,14,16,1,0,1,4.627503386746915,4.627503386746915,0,0,0,0,7,1,1,0,0,0,50.42,59.1,-9,-9,0,1,1,0,0,2,12,2,1,1906,-205005.1303441143,0,0,0,744.4108367423172 -4931,6124,11104,11105,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.556666490116313,5.525612242837413,59,-5,11.87666371722527,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.38273856407358,0,0,1,1,0,5.919047490629817,5.517382399537413,49.96,40.18,54.96,53.17,10,1,1,0,0,0,5,2,1,237.5,217019.8819548924,52572.55334219092,104765.1452837716,0,1424.286961202033 -4931,6124,11105,11104,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.174120937711701,6.201314658957259,10,5,15.43626964958421,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.972428510105082,0,54.96,53.17,49.96,40.18,6.666666666666667,1,1,0,0,0,5,2,1,237.5,217019.8819548924,52572.55334219092,104765.1452837716,0,1424.286961202033 -4931,6125,11106,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.474479049086427,6.552827273812445,0,0,-867.5533055373384,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.401120912984868,6.67259453832806,52,47,-9,-9,7,4,6,0,0,0,5,2,1,622,344618.4127796022,263659.0506355285,53955.59848642393,0,1315.823608376291 -4932,6126,11107,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-898.747881879009,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.582488507838918,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,5,9,1,0,785,-127033.6248554487,0,0,0,1122.090191645014 -4933,6127,11108,-9,-9,-9,1,0,36,0,2,0,3,3,-9,1,3,6.546349531979602,7.245574669288279,5.208859601509338,0,0,-976.3103307226246,0,2,2,2019,6,0,16,16,1,0,0,5.597754927819763,5.597754927819763,0,0,0,0,110,1,1,0,5.635855476342733,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,8,2,2,0,762,57583.25181119478,-158501.2662708635,0,0,1650.529992910275 -4934,6128,11109,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,7.548675104390963,7.623341578006343,0,0,-1091.863112719348,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.971458659425814,8.090339424009922,62.39,56.71,-9,-9,10,1,1,0,0,0,4,3,1,952,382022.0953352151,205546.6037576013,136079.8826860791,0,1764.438278126538 -4935,6129,11110,11111,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,3.485083083658046,3.668385887140896,49,-2,-41.98777961626543,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.177883144567001,3.540508772550986,51,46,62.49,55.09,7,1,1,0,0,0,9,5,1,241,1965053.462182624,986153.6199079677,585789.9882913653,0,10086.66717761167 -4935,6129,11111,11110,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.779606535225893,8.66126094741724,49,2,91.10566563873031,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.22020981829815,62.49,55.09,51,46,8.333333333333334,1,1,0,0,7,9,5,1,241,1965053.462182624,986153.6199079677,585789.9882913653,0,10086.66717761167 -4936,6130,11112,11113,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,0,0,11,17,-84.78593854877012,0,1,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.618068263532824,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,10,5,1,818,2024918.601104591,1674480.109086288,248160.994844084,79268.54582013251,7351.282188027917 -4936,6130,11113,11112,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.390893251270366,9.640219217151252,0,11,-17,-54.04308830885857,0,2,2,2019,7,0,30,40,1,0,0,36.29295421741853,36.29295421741853,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,12,10,5,1,818,2024918.601104591,1674480.109086288,248160.994844084,79268.54582013251,7351.282188027917 -4937,6131,11114,11115,-9,-9,1,0,29,0,2,0,2,2,-9,0,1,0,0,0,8,-27,0,0,-9,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,22.92,33.1,37.65,26.17,3.333333333333333,1,1,0,0,0,2,1,0,1115.75,-2643.586767634981,40921.97049877324,0,0,2144.380806803258 -4937,6131,11115,11114,-9,-9,1,1,56,0,2,0,3,3,-9,1,1,0,0,0,8,27,0,0,-9,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,.8389139611071599,0,1,1,0,0,0,37.65,26.17,22.92,33.1,6.666666666666667,1,1,1,0,0,2,1,0,1115.75,-2643.586767634981,40921.97049877324,0,0,2144.380806803258 -4937,6131,11116,-9,11114,11115,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1017.033030396398,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,1115.75,-2643.586767634981,40921.97049877324,0,0,2144.380806803258 -4937,6131,11117,-9,11114,11115,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.85970172995,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1115.75,-2643.586767634981,40921.97049877324,0,0,2144.380806803258 -4938,6132,11118,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.979459113298352,9.071765098377352,5.678985405645569,0,0,-1063.054380458536,0,3,3,2019,13,1,85,80,1,1,0,8.766563345797243,8.766563345797243,0,0,0,0,0,0,0,0,0,6.128717067194096,33.37,60.58,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,175,432906.5487874437,278288.401743557,142231.5793635577,81814.66840226021,2580.237130409524 -4939,6133,11119,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.211294784835739,7.614552154996363,0,0,-970.6697280076137,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,5.060944258566908,7.084082475951315,43.73,59.7,-9,-9,1.666666666666667,1,1,0,0,8,2,3,1,906,328188.4351864668,271208.1856748998,199280.7081623753,0,1643.695328648178 -4939,6134,11120,-9,11119,-9,1,1,33,0,0,0,1,1,-9,0,4,7.699022917962846,7.41891499613218,0,0,0,-939.6051300775977,0,2,2,2019,22,10,22,22,1,10,0,9.607167453261319,9.607167453261319,0,0,0,0,0,1,1,0,0,0,28.16,65.32000000000001,-9,-9,1.666666666666667,1,1,0,1,8,2,3,1,2236,-108129.1114401303,14054.02446684213,0,0,1363.064019579458 -4940,6135,11121,11124,-9,-9,1,1,45,1,3,0,2,2,-9,0,4,0,0,0,9,8,0,0,2,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,37.71,56.96,56.86,8.333333333333334,3,4,1,1,8,8,1,0,823.2,-11769.92184935098,0,0,0,999.7001400954484 -4940,6135,11122,-9,11124,11121,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.1038811624778,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,1,0,823.2,-11769.92184935098,0,0,0,999.7001400954484 -4940,6135,11123,-9,11124,11121,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.7959287506253,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,823.2,-11769.92184935098,0,0,0,999.7001400954484 -4940,6135,11124,11121,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,9,-8,0,0,-9,-9,2019,8,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,57.47,37.71,8.333333333333334,3,4,0,1,6,8,1,0,823.2,-11769.92184935098,0,0,0,999.7001400954484 -4940,6135,11125,-9,11124,11121,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.872864224052,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,823.2,-11769.92184935098,0,0,0,999.7001400954484 -4941,6136,11126,11127,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.554441023496969,7.757293308824182,8,3,-11.73827232402652,0,3,3,2019,10,0,0,11,4,0,0,0,0,0,0,0,0,0,1,1,0,7.147009130883391,7.912114168599589,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,9,11,3,1,1321.5,957919.9369638691,751169.545946562,184817.6303483859,0,2281.029153766293 -4941,6136,11127,11126,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-10.30121512098519,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.2,57.49,10,1,1,0,0,0,11,3,1,1321.5,957919.9369638691,751169.545946562,184817.6303483859,0,2281.029153766293 -4942,6137,11128,11130,-9,-9,1,1,36,0,1,0,1,1,-9,0,4,8.24294425512946,8.132323934859794,0,16,1,-145.7258460267367,0,2,1,2019,11,0,45,40,1,0,0,9.167856902122164,9.167856902122164,0,0,0,0,0,1,1,0,.0939244286207411,0,54.2,57.49,62.49,55.09,6.666666666666667,1,1,0,1,10,4,4,1,372.3333333333333,55364.64266513114,-53686.56093439675,0,0,2476.591474384213 -4942,6137,11129,-9,11130,11128,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.76533079197,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,372.3333333333333,55364.64266513114,-53686.56093439675,0,0,2476.591474384213 -4942,6137,11130,11128,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.109769715158682,6.790859579028423,0,16,-1,275.9699991321463,0,1,-9,2019,10,0,20,44,1,0,0,5.920240939608364,5.920240939608364,0,0,0,0,0,1,1,0,0,0,62.49,55.09,54.2,57.49,6.666666666666667,1,1,0,1,9,4,4,1,372.3333333333333,55364.64266513114,-53686.56093439675,0,0,2476.591474384213 -4943,6138,11131,11132,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.056931119473308,8.945790804085997,0,1,-4,100.6622662360044,0,2,1,2019,10,0,43,40,1,0,0,20.26834162329459,20.26834162329459,0,0,0,0,0,1,1,0,0,0,46.38,59.89,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,328.5,294786.7269775857,155937.7294714312,268906.1119543259,0,7370.656499479499 -4943,6138,11132,11131,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.157206741783389,9.164469596333229,0,1,4,-125.2239631591035,-9,-9,-9,2019,3,0,58,0,1,0,0,17.95763861742603,17.95763861742603,0,0,0,0,0,1,1,0,7.468412255792481,0,57.06,57.76,46.38,59.89,10,1,1,0,0,3,8,5,1,328.5,294786.7269775857,155937.7294714312,268906.1119543259,0,7370.656499479499 -4944,6139,11133,11134,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.136821992418895,8.860531104282387,0,6,0,11.35459049262407,0,2,2,2019,8,0,65,60,1,0,0,17.31183897280383,17.31183897280383,0,0,0,0,0,0,0,0,0,0,57.16,56.15,18.2,67.27,6.666666666666667,1,1,0,0,9,2,5,1,353,150682.2142059565,13042.80816331309,222426.7577326964,74334.90636040314,3845.705732876277 -4944,6139,11134,11133,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.490250391359719,8.30022674057895,0,6,0,-48.1822930897039,0,-9,-9,2019,26,12,43,45,1,12,0,10.40796586030926,10.40796586030926,0,0,0,0,0,0,0,0,0,0,18.2,67.27,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,353,150682.2142059565,13042.80816331309,222426.7577326964,74334.90636040314,3845.705732876277 -4945,6140,11135,-9,11136,-9,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-948.2296480668183,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,3,4,-9,0,0,8,5,1,637.5,484969.1440696887,328582.0137401209,235053.5202023612,13104.89325159532,3162.70851831444 -4945,6140,11136,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.221291039509053,9.276258008582959,0,0,0,-1081.577187197423,0,2,1,2019,10,0,40,43,1,0,0,33.27968552996827,33.27968552996827,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,637.5,484969.1440696887,328582.0137401209,235053.5202023612,13104.89325159532,3162.70851831444 -4946,6141,11137,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-975.9813903496917,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.44,43.33,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,199,272952.0961326588,0,291807.5714042949,0,167.6190853592349 -4947,6142,11138,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,5,0,8.116877788244008,7.705687940566079,0,0,-1051.842984176374,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.269976053406196,8.079925148113141,62.39,56.71,-9,-9,10,1,1,0,0,0,6,4,1,282,633906.5814214929,430048.2365248363,209717.4817168571,0,3143.010000197458 -4948,6143,11139,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,6.312558686276747,6.484232786333084,0,0,-930.9290947619688,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.40480771451926,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,198,307011.8710939527,215147.479349511,109835.4484444787,0,1074.446712019315 -4949,6144,11140,-9,11141,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.5790022657712,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,6,3,0,302,185753.864314313,10235.34685122409,0,0,1228.327633454818 -4949,6144,11141,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.556171933117271,7.591768744813984,0,0,0,-1037.099158181443,0,2,3,2019,23,9,49,42,1,9,0,4.99804067929663,4.99804067929663,0,0,0,0,0,1,1,0,0,0,26.3,62.1,-9,-9,6.666666666666667,1,1,0,0,9,6,3,0,302,185753.864314313,10235.34685122409,0,0,1228.327633454818 -4949,6145,11142,-9,11141,-9,1,1,24,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1084.888021204157,-9,2,-9,2019,14,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,27.29,57.87,-9,-9,6.666666666666667,1,1,1,1,0,6,1,0,522,-199068.8399981403,0,0,0,125.9305768753984 -4950,6146,11143,11144,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.702617538473142,8.746673534428147,0,27,-3,29.75495505296979,0,3,3,2019,23,9,49,52,1,9,0,10.71242926247889,10.71242926247889,0,0,0,0,0,0,0,0,0,0,41.77,49.72,36.01,31.01,3.333333333333333,1,1,0,0,9,1,5,1,288.5,183497.4047542289,113796.3547505367,78779.74240400392,18828.17946620979,3123.294071578168 -4950,6146,11144,11143,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.703590190422154,8.079427448609634,0,27,3,-49.3645220200085,0,3,3,2019,16,5,51,37,1,5,0,6.002288190568748,6.002288190568748,0,0,0,0,0,0,0,0,0,0,36.01,31.01,41.77,49.72,1.666666666666667,1,1,0,0,9,1,5,1,288.5,183497.4047542289,113796.3547505367,78779.74240400392,18828.17946620979,3123.294071578168 -4950,6147,11145,-9,11144,11143,1,0,20,0,0,0,2,2,-9,0,3,0,6.000051572716938,6.13641338336376,0,0,-912.2928554489155,1,2,1,2019,15,4,0,19,2,4,1,0,0,0,0,0,0,0,0,0,0,5.755446686333363,0,38.64,51.41,-9,-9,6.666666666666667,1,1,0,0,5,1,2,1,293,104238.4644666321,0,0,0,203.658363194844 -4951,6148,11146,11147,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,7,1,-20.01415289596077,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,42.33,36.9,40.09,5,1,1,0,0,0,2,3,1,1557.5,1265112.083844188,651851.570281991,437446.5886920891,0,3054.998066814827 -4951,6148,11147,11146,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.021410972981762,8.289544785377577,7,-1,-42.89683996526185,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,0,8.004498705335024,36.9,40.09,32.89,42.33,8.333333333333334,1,1,0,0,0,2,3,1,1557.5,1265112.083844188,651851.570281991,437446.5886920891,0,3054.998066814827 -4952,6149,11148,-9,11149,11150,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.216924459561,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,492.3333333333333,1532130.035157332,1206620.036001335,305439.6308511629,184570.3042580715,4794.571288043726 -4952,6149,11149,11150,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,9.056623628054851,8.70848673729958,0,7,-1,-54.19699293615282,0,2,2,2019,9,0,49,50,1,0,0,20.50396379805595,20.50396379805595,0,0,0,0,0,1,1,0,0,0,43,39,58.15,52.91,10,1,1,0,0,8,1,5,1,492.3333333333333,1532130.035157332,1206620.036001335,305439.6308511629,184570.3042580715,4794.571288043726 -4952,6149,11150,11149,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.74146467284409,8.855174351282605,0,7,1,-6.023128282062722,0,3,3,2019,6,0,42,80,1,0,0,17.2623769951338,17.2623769951338,0,0,0,0,0,1,1,0,2.778126197013385,0,58.15,52.91,43,39,8.333333333333334,1,1,0,0,8,1,5,1,492.3333333333333,1532130.035157332,1206620.036001335,305439.6308511629,184570.3042580715,4794.571288043726 -4952,6150,11151,-9,11149,11150,1,1,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1084.641787797468,1,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,37.74,62.66,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,1299,-223409.594563198,0,0,0,0 -4953,6151,11152,11153,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,8.361650713240113,8.554055975345932,0,7,1,-11.89681571042737,0,2,2,2019,8,0,25,32,1,0,0,17.41950316494855,17.41950316494855,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,8,9,5,1,693.25,507939.403116938,265233.8821636717,0,0,5333.982204588021 -4953,6151,11153,11152,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.146239023814514,9.051291364820376,0,7,-1,-45.43698367070828,0,2,3,2019,9,0,40,50,1,1,0,30.34460047269892,30.34460047269892,0,0,0,0,0,0,0,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,9,5,1,693.25,507939.403116938,265233.8821636717,0,0,5333.982204588021 -4953,6151,11154,-9,11152,11153,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.0363469055856,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,693.25,507939.403116938,265233.8821636717,0,0,5333.982204588021 -4953,6151,11155,-9,11152,11153,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.1037779892476,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,693.25,507939.403116938,265233.8821636717,0,0,5333.982204588021 -4954,6152,11156,11157,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.236077525085196,7.381490520183897,5.781575395012739,10,5,-85.19923936721446,0,-9,-9,2019,10,0,25,26,1,0,0,7.178012774109457,7.178012774109457,0,0,0,0,0,0,0,0,4.906013222874794,0,62.92,18.81,68.94,19.88,6.666666666666667,1,1,0,0,11,10,4,1,478,379644.3196346668,90986.67233118453,231808.3462112609,0,2454.694584693184 -4954,6152,11157,11156,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,7.953881362103149,7.985072781266434,0,10,-5,44.7214494992972,0,2,2,2019,8,0,40,42,1,0,0,9.049483125313065,9.049483125313065,0,0,0,0,0,0,0,0,0,0,68.94,19.88,62.92,18.81,5,1,1,0,0,11,10,4,1,478,379644.3196346668,90986.67233118453,231808.3462112609,0,2454.694584693184 -4955,6153,11158,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1010.600879935907,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.7,43.52,-9,-9,5,1,1,0,0,0,4,2,0,600,-40973.83001569106,-10207.34696818026,0,0,500.7066972561091 -4956,6154,11159,-9,11162,-9,1,0,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1134.315607311501,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,3,1,938.2,-20681.30589665017,-6323.42225906298,0,0,2332.302134355834 -4956,6154,11160,-9,11162,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-942.8629231622874,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,3,1,938.2,-20681.30589665017,-6323.42225906298,0,0,2332.302134355834 -4956,6154,11161,-9,11162,-9,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-894.4487011368548,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,1,3,1,938.2,-20681.30589665017,-6323.42225906298,0,0,2332.302134355834 -4956,6154,11162,-9,-9,-9,1,0,34,1,4,0,1,1,-9,0,4,8.19825225006149,8.267292677421459,0,0,0,-1067.098389562027,0,1,3,2019,13,1,42,35,1,1,0,7.517014730553528,7.517014730553528,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,6.666666666666667,1,1,0,0,3,1,3,1,938.2,-20681.30589665017,-6323.42225906298,0,0,2332.302134355834 -4956,6154,11163,-9,11162,-9,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.69566201988,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,938.2,-20681.30589665017,-6323.42225906298,0,0,2332.302134355834 -4957,6155,11164,11165,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-1,1.221598935940872,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,30.78858341458579,0,71.5,1,1,0,.0975568447139983,0,51.71,32.85,48.13,43.82,8.333333333333334,1,1,0,0,0,5,2,1,395.5,64366.39817001188,-18556.21999940788,0,0,1750.221701674008 -4957,6155,11165,11164,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,2.532875232317304,2.64357247786251,59,1,-29.43897932993238,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.821146971162827,0,71.5,1,1,0,0,2.790968319638751,48.13,43.82,51.71,32.85,8.333333333333334,1,1,0,0,0,5,2,1,395.5,64366.39817001188,-18556.21999940788,0,0,1750.221701674008 -4958,6156,11166,11167,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,7.821207774026411,7.986333802521427,0,6,5,-67.10830522177478,0,2,3,2019,8,0,32,29,1,0,0,11.25597801308525,11.25597801308525,0,0,0,0,0,1,1,0,0,0,57.57,49.69,48.05,46.39,8.333333333333334,1,1,0,0,6,13,4,1,208,42549.71297015637,-18662.66473428791,179293.0365384976,57514.46289701763,3479.569873528455 -4958,6156,11167,11166,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.975282927496265,8.171436398998301,6,-5,30.69454685483986,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.046790113075527,7.863918856604613,48.05,46.39,57.57,49.69,8.333333333333334,1,1,0,0,4,13,4,1,208,42549.71297015637,-18662.66473428791,179293.0365384976,57514.46289701763,3479.569873528455 -4959,6157,11168,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.215439785475239,7.976888742687897,0,0,0,-878.2672806619703,0,2,2,2019,8,0,35,35,1,0,0,11.45653200541164,11.45653200541164,0,0,0,0,0,1,1,0,0,0,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,641,47743.24993024022,0,117613.6139186199,53582.92458624361,1877.804179883535 -4960,6158,11169,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.478336218939901,8.371925231122756,0,0,0,-1072.77954588566,0,2,2,2019,8,0,45,46,1,0,0,11.72233328438947,11.72233328438947,0,0,0,0,0,0,0,0,.0733580905307856,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,196,-29005.14686947569,165159.0270339896,270053.3550254084,132831.4232122454,2015.487898722462 -4961,6159,11170,11171,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.022141086415902,6.692584021802195,49,0,10.67599509599357,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,6.944206926266705,0,0,1,1,0,0,7.032035487266588,55.25,21.39,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,1547,-25113.02090305596,-33233.92081986836,0,0,1697.119317034201 -4961,6159,11171,11170,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,0,-104.5017700828506,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.25,21.39,8.333333333333334,1,1,0,0,0,12,2,1,1547,-25113.02090305596,-33233.92081986836,0,0,1697.119317034201 -4962,6160,11172,11173,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.13956426680988,7.232593644085188,0,15,-1,-36.29440136344171,0,2,2,2019,16,5,10,25,1,5,0,17.67234911195071,17.67234911195071,0,0,0,0,0,0,0,0,0,0,51.35,32.05,57.16,56.15,6.666666666666667,1,1,0,0,10,7,4,1,867.5,948995.067119051,572214.6426903948,301125.712787596,0,2736.093773894904 -4962,6160,11173,11172,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.241650442605184,7.9463239319474,0,17,1,111.8896385283613,0,-9,-9,2019,13,1,39,39,1,1,0,9.773682632306461,9.773682632306461,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,51.35,32.05,8.333333333333334,1,1,0,0,10,7,4,1,867.5,948995.067119051,572214.6426903948,301125.712787596,0,2736.093773894904 -4963,6161,11174,11175,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.803482991828588,9.016366884503633,0,6,3,-58.99591026618502,0,-9,-9,2019,7,1,40,40,1,1,0,20.81158344807823,20.81158344807823,0,0,0,0,0,1,1,0,0,0,54.37,54.8,53.56,49.66,10,3,4,0,0,10,9,5,0,790,280066.1439137998,79779.78070156445,0,0,3454.174949459126 -4963,6161,11175,11174,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.858877616868845,7.812233861956324,0,6,-3,-33.15370533298162,0,-9,-9,2019,7,0,20,22,1,0,0,14.4902305591064,14.4902305591064,0,0,0,0,0,1,1,0,0,0,53.56,49.66,54.37,54.8,6.666666666666667,1,1,0,0,12,9,5,0,790,280066.1439137998,79779.78070156445,0,0,3454.174949459126 -4963,6161,11176,-9,11175,11174,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.926518246656,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,790,280066.1439137998,79779.78070156445,0,0,3454.174949459126 -4963,6161,11177,-9,11175,11174,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.5089633623518,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,790,280066.1439137998,79779.78070156445,0,0,3454.174949459126 -4964,6162,11178,11179,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-4,-5.219789404430792,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.596612788035804,0,51,46,62.49,55.09,7,1,1,0,0,0,11,2,1,372.5,609448.7398561575,115365.308055568,430217.407489388,0,2438.416966365854 -4964,6162,11179,11178,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.866754914930475,6.998489668364714,51,4,-.1823394621066381,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.183936898553952,7.299332081211628,62.49,55.09,51,46,8.333333333333334,1,1,0,0,0,11,2,1,372.5,609448.7398561575,115365.308055568,430217.407489388,0,2438.416966365854 -4964,6163,11180,-9,11178,11179,1,0,46,0,0,0,1,1,-9,0,4,8.463897850554947,8.588903679757808,0,0,0,-1031.438938293323,0,2,2,2019,10,0,50,40,1,1,0,13.0648000948798,13.0648000948798,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,11,5,1,753,22571.14597703893,100145.4292995153,103548.3982444843,99927.02899994861,2286.598170977009 -4965,6164,11181,-9,11184,11183,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.365835270641,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,413,-59659.08847821846,0,111654.2521667498,51300.88321303119,1767.807491831731 -4965,6164,11182,-9,11184,11183,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.087192433881,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,413,-59659.08847821846,0,111654.2521667498,51300.88321303119,1767.807491831731 -4965,6164,11183,11184,-9,-9,1,1,37,2,2,0,1,1,-9,0,4,7.980053117691527,7.668305374292915,0,4,8,114.9247406973981,0,3,3,2019,7,1,8,40,1,1,0,51.84209849989934,51.84209849989934,0,0,0,0,0,1,1,0,.6592583672542083,0,56.92,49.39,61.04,44.94,8.333333333333334,3,4,0,0,8,2,3,0,413,-59659.08847821846,0,111654.2521667498,51300.88321303119,1767.807491831731 -4965,6164,11184,11183,-9,-9,1,0,29,2,2,0,2,2,-9,0,3,0,0,0,4,-8,59.58794592806486,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,44.94,56.92,49.39,6.666666666666667,3,4,1,0,0,2,3,0,413,-59659.08847821846,0,111654.2521667498,51300.88321303119,1767.807491831731 -4966,6165,11185,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-905.7002800519069,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,2.847799156453766,0,0,1,1,0,3.593004589102474,0,54.7,27.66,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1087,93764.48691914335,0,0,0,1330.04912510122 -4967,6166,11186,11187,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,25,0,0,0,3,3,2019,23,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,0,24.43,37.96,52,47,3.333333333333333,1,1,0,0,0,5,1,0,321,220814.6212435096,76210.49674980178,109113.4387645749,0,1744.87033688405 -4967,6166,11187,11186,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,25,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,24.43,37.96,7,1,1,0,0,0,5,1,0,321,220814.6212435096,76210.49674980178,109113.4387645749,0,1744.87033688405 -4968,6167,11188,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.991490653748791,7.312983271749217,0,0,-860.9662433005167,-9,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.127652854529219,7.348659052219983,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,146,275315.5724844005,178916.8309537293,0,0,2230.620119447267 -4969,6168,11189,11191,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.589459663460264,6.857232544958293,0,2,0,-106.5774804014524,0,3,2,2019,6,0,14,50,1,0,0,5.899707613801056,5.899707613801056,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.25,61.25,10,1,1,0,0,3,7,3,1,2834.333333333333,232140.5685094489,38433.1569537532,0,0,1668.717524738054 -4969,6168,11190,-9,11189,11191,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.433037615092,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,2834.333333333333,232140.5685094489,38433.1569537532,0,0,1668.717524738054 -4969,6168,11191,11189,-9,-9,1,1,21,1,1,0,2,2,-9,0,5,8.346178896735859,8.593635477641733,0,2,0,-24.33349301319169,0,-9,-9,2019,9,1,58,58,1,1,0,7.393616693238002,7.393616693238002,0,0,0,0,0,1,1,0,0,0,49.25,61.25,60.12,54.8,8.333333333333334,1,1,0,0,1,7,3,1,2834.333333333333,232140.5685094489,38433.1569537532,0,0,1668.717524738054 -4970,6169,11192,11193,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,6.134590487471785,6.286245886025454,0,7,5,-39.18268164823355,0,2,2,2019,13,2,40,50,1,2,0,1.547643386163643,1.547643386163643,0,0,0,0,0,0,0,0,3.820007601352186,0,44.91,59.07,49.29,54.59,8.333333333333334,1,1,0,0,8,6,4,1,832.5,543004.1080686301,133292.4790623147,374608.1944763667,29619.85051600946,3089.485005310602 -4970,6169,11193,11192,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.568817724329701,8.71750478530817,0,7,-5,109.8295365698097,0,2,2,2019,12,2,40,42,1,2,0,17.19982792498072,17.19982792498072,0,0,0,0,2,0,0,0,7.171398894779326,0,49.29,54.59,44.91,59.07,8.333333333333334,1,1,0,0,9,6,4,1,832.5,543004.1080686301,133292.4790623147,374608.1944763667,29619.85051600946,3089.485005310602 -4971,6170,11194,11197,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,0,0,0,10,-4,-118.5526413695253,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,60.12,54.8,10,2,3,0,0,0,8,5,1,1061.25,277581.8208065259,87747.38241443658,338764.3912199271,168244.8161682045,4986.999186823521 -4971,6170,11195,-9,11194,11197,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.196681929543,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1061.25,277581.8208065259,87747.38241443658,338764.3912199271,168244.8161682045,4986.999186823521 -4971,6170,11196,-9,11194,11197,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.974827158718,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1061.25,277581.8208065259,87747.38241443658,338764.3912199271,168244.8161682045,4986.999186823521 -4971,6170,11197,11194,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.507342028425189,9.94357446917822,0,10,4,99.73437560016228,0,1,1,2019,6,0,40,50,1,0,0,36.40525959816279,36.40525959816279,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.53,56.44,8.333333333333334,2,3,0,0,11,8,5,1,1061.25,277581.8208065259,87747.38241443658,338764.3912199271,168244.8161682045,4986.999186823521 -4972,6171,11198,11199,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.233281803993053,7.202954363314644,0,32,3,126.4519079453996,0,3,3,2019,10,0,45,60,1,0,0,3.850723718351991,3.850723718351991,0,0,0,0,0,0,0,0,2.363021810380159,0,43.02,57.64,35.6,30.15,8.333333333333334,2,3,0,0,9,8,3,1,602,821510.7505713324,502743.7683015793,184312.5192619642,0,1375.513095668214 -4972,6171,11199,11198,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,7.11938070850786,7.286319053870675,32,-3,14.82971980424163,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,7.519211904233556,35.6,30.15,43.02,57.64,3.333333333333333,2,3,1,0,0,8,3,1,602,821510.7505713324,502743.7683015793,184312.5192619642,0,1375.513095668214 -4973,6172,11200,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,0,0,-981.0057950619329,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,301,381418.5007942907,251364.1159848697,182834.1721910033,0,435.0733671163308 -4974,6173,11201,-9,11202,11204,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.514745265189,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,532.75,14374.07096245247,0,267640.854610731,234937.7283444414,4297.936039914641 -4974,6173,11202,11204,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.808374372474956,7.532385939703277,0,6,-8,-8.307030668966814,0,-9,-9,2019,12,0,27,27,1,0,0,8.173179250563814,8.173179250563814,0,0,0,0,0,1,1,0,5.230118525007102,0,54.2,57.49,60,56.43,8.333333333333334,1,1,0,0,11,13,4,1,532.75,14374.07096245247,0,267640.854610731,234937.7283444414,4297.936039914641 -4974,6173,11203,-9,11202,11204,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2932685776399,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,532.75,14374.07096245247,0,267640.854610731,234937.7283444414,4297.936039914641 -4974,6173,11204,11202,-9,-9,1,1,45,1,2,0,2,2,-9,0,5,8.86702799673461,8.817128949793144,0,6,8,60.51345693944396,0,2,2,2019,10,0,44,50,1,0,0,19.26068123937027,19.26068123937027,0,0,0,0,0,1,1,0,0,0,60,56.43,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,532.75,14374.07096245247,0,267640.854610731,234937.7283444414,4297.936039914641 -4975,6174,11205,11206,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.781354055219525,8.496549164919221,51,2,135.7684211969637,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.869374692930361,8.473415136776744,55.3,55.6,57.33,53.46,1.666666666666667,1,1,0,0,0,9,4,1,414,1027871.165863179,420006.4471946706,285957.611391637,0,4559.47210078022 -4975,6174,11206,11205,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,9,-2,47.86973683033058,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.382494720963646,0,57.33,53.46,55.3,55.6,8.333333333333334,1,1,0,0,0,9,4,1,414,1027871.165863179,420006.4471946706,285957.611391637,0,4559.47210078022 -4976,6175,11207,11208,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,8,-6,-27.72739252470706,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.19,44.13,53.37,45.61,5,1,1,0,1,0,2,3,0,923,344699.2514322936,256046.9339455172,126493.2732800063,62251.93640163491,2111.186459964347 -4976,6175,11208,11207,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.792087269792258,7.844484258516617,0,8,6,-42.30669997058422,0,-9,-9,2019,8,0,24,24,1,0,0,11.08108353649091,11.08108353649091,0,0,0,0,0,1,1,0,0,0,53.37,45.61,40.19,44.13,5,1,1,0,0,9,2,3,0,923,344699.2514322936,256046.9339455172,126493.2732800063,62251.93640163491,2111.186459964347 -4976,6175,11209,-9,11207,11208,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-945.0227530685389,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,3,0,923,344699.2514322936,256046.9339455172,126493.2732800063,62251.93640163491,2111.186459964347 -4977,6176,11210,11211,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.248990299514164,8.312631988090864,0,19,2,5.159704843783707,0,2,2,2019,8,0,38,37,1,0,0,11.01667628563992,11.01667628563992,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.4,55.58,8.333333333333334,1,1,0,0,11,2,4,1,224,1145594.055386306,956300.5635099871,156118.0295699046,0,2773.340863603857 -4977,6176,11211,11210,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.118006946019696,8.295363393750632,0,19,-2,-4.071672019452762,0,3,3,2019,9,0,43,43,1,0,0,9.232951465040065,9.232951465040065,0,0,0,0,2,0,0,0,0,0,52.4,55.58,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,224,1145594.055386306,956300.5635099871,156118.0295699046,0,2773.340863603857 -4978,6177,11212,-9,11213,11214,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.0014034526997,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,2,3,0,0,0,4,1,0,1024.333333333333,-29467.40009020848,-20875.06270067912,71292.52899587447,29525.12155830181,1040.101566903351 -4978,6177,11213,11214,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,38,-7,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,42,1,0,1,0,0,48,49,51,49,7,2,3,0,0,0,4,1,0,1024.333333333333,-29467.40009020848,-20875.06270067912,71292.52899587447,29525.12155830181,1040.101566903351 -4978,6177,11214,11213,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,0,0,9,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,3.666472728923743,0,1,0,1,0,0,51,49,48,49,7,2,3,0,0,0,4,1,0,1024.333333333333,-29467.40009020848,-20875.06270067912,71292.52899587447,29525.12155830181,1040.101566903351 -4978,6178,11215,-9,11213,11214,1,0,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1065.4343505967,0,3,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,47,57,-9,-9,7,2,3,0,0,0,4,1,0,132,112342.4887312815,0,0,0,870.1547523537765 -4978,6179,11216,-9,11213,11214,1,0,26,0,0,0,1,1,-9,0,4,8.468410509618609,8.395027325553293,0,0,0,-998.9478611970342,0,3,2,2019,11,0,37,30,1,2,1,15.12465745370271,15.12465745370271,0,0,0,0,0,1,0,1,2.366535640490838,0,47,58,-9,-9,7,2,3,0,0,1,4,5,0,596,9129.015873664639,84041.48384034797,0,0,1688.844253425985 -4978,6180,11217,-9,11213,11214,1,0,23,0,0,0,2,2,1,0,4,7.699562475199012,7.718057995569661,0,0,0,-920.2117336611498,-9,3,2,2019,12,0,26,0,1,2,1,6.881526465838492,6.881526465838492,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,4,3,0,390,-75657.3615436065,0,0,0,106.051381118703 -4978,6181,11218,-9,11213,11214,1,1,20,0,0,0,2,2,1,0,4,5.410457959324768,5.174871568337858,0,0,0,-1030.089792779928,-9,3,2,2019,11,0,23,0,1,2,1,1.208350941396574,1.208350941396574,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,1,4,2,0,934,120946.6423734991,0,0,0,114.0838750029898 -4978,6182,11219,-9,11213,11214,1,0,28,0,0,0,2,2,-9,0,4,7.850597790705283,7.87491905159968,0,0,0,-887.3543856371915,0,3,2,2019,11,0,38,38,1,2,1,7.859980841638111,7.859980841638111,0,0,0,0,0,1,0,1,0,0,47,58,-9,-9,7,2,3,0,0,1,4,3,0,308,249214.1664150221,138596.3650343623,0,0,611.6427700909229 -4979,6183,11220,11221,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.642196908825682,8.917904258944658,7.606260872434544,27,3,-31.30483616403747,0,2,3,2019,6,0,50,56,1,0,0,11.44162062657386,11.44162062657386,0,0,0,0,0,0,0,0,0,7.326494166270493,57.16,56.15,50.06,55.28,8.333333333333334,1,1,0,0,6,10,5,1,1146.5,1061398.540901038,699306.298560648,205616.915410294,56216.65675140027,4756.599844762123 -4979,6183,11221,11220,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.565489221690118,8.598718210618808,0,27,-3,-.9450759424177307,0,2,2,2019,7,0,41,40,1,0,0,12.46031673826787,12.46031673826787,0,0,0,0,0,0,0,0,0,0,50.06,55.28,57.16,56.15,6.666666666666667,1,1,0,0,10,10,5,1,1146.5,1061398.540901038,699306.298560648,205616.915410294,56216.65675140027,4756.599844762123 -4980,6184,11222,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-930.6604325532307,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,51.86,-9,-9,8.333333333333334,1,1,0,0,3,9,1,0,726,-284324.8668152277,0,0,0,0 -4981,6185,11223,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.671356621534801,7.652767968898148,0,0,0,-1018.156709131443,0,2,2,2019,15,3,37,24,1,3,0,7.173502702860485,7.173502702860485,0,0,0,0,0,0,0,0,0,0,50.79,51.1,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,591,-84104.30312907499,0,0,0,1155.333204116157 -4982,6186,11224,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.755909456950496,8.620939653704037,0,0,0,-1123.831695095237,0,1,1,2019,11,3,40,39,1,3,0,17.88384966002045,17.88384966002045,0,0,0,0,0,1,1,0,3.672748570958743,0,40.07,64.29000000000001,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,196,152748.2914663102,48281.48454986981,0,0,2379.292416285475 -4983,6187,11225,11226,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.648631946305317,8.763826289769737,6.558177024502226,37,-7,-161.9345666020108,0,3,3,2019,12,0,35,35,1,0,0,20.91973648686668,20.91973648686668,0,0,0,0,0,1,1,0,6.433228172280116,6.828805467187993,57.73,54.53,49.52,56.95,1.666666666666667,1,1,0,0,12,4,4,1,992,486475.1605575329,-71421.32339379383,363291.0905336752,86958.55494457234,3482.795749738575 -4983,6187,11226,11225,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.733460910101132,6.719584278322828,37,7,-12.46579039008338,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.435662789491328,7.265973422292352,49.52,56.95,57.73,54.53,10,1,1,0,0,10,4,4,1,992,486475.1605575329,-71421.32339379383,363291.0905336752,86958.55494457234,3482.795749738575 -4984,6188,11227,11228,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,5.326822073608714,5.190860057606898,6,-1,-17.91440581004487,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.916667649663998,5.505165190644275,57,51,45.93,46.68,3.333333333333333,1,1,0,0,0,7,2,0,684.5,112294.91366062,-20379.23898905288,0,0,1986.949224483629 -4984,6188,11228,11227,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,6,1,-63.28953513813151,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,42.50067250116732,0,0,1,1,0,0,0,45.93,46.68,57,51,5,1,1,0,0,0,7,2,0,684.5,112294.91366062,-20379.23898905288,0,0,1986.949224483629 -4985,6189,11229,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.876763833933181,8.787360462147698,0,0,0,-1096.674065475276,0,3,3,2019,9,0,35,0,1,1,0,30.3598117423793,30.3598117423793,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,8,1,1,0,0,10,7,5,1,3563,-26895.12485648062,139802.7593064242,0,0,2837.265533002752 -4986,6190,11230,-9,-9,-9,1,0,22,0,0,1,1,0,0,0,4,0,3.229064074238698,3.604931183652239,0,0,-1123.186081458621,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.789674497021327,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,1792,111503.9228607117,0,0,0,-394.9187282003987 -4987,6191,11231,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.261006529707,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,14.28030161893377,0,0,1,1,0,0,0,70.57000000000001,24.47,-9,-9,10,1,1,0,0,0,7,1,0,141,459374.9374034553,0,341318.5065759747,0,1883.768762349294 -4988,6192,11232,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.432095163157173,6.466367972938891,0,0,-1042.707975940074,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.623013838635472,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,60,367033.735851082,23505.6611227199,142736.679023136,0,921.0248062534466 -4989,6193,11233,11234,-9,-9,1,0,52,0,1,0,2,2,-9,0,2,0,0,0,16,5,-28.20905495059265,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.812853048383849,0,48.34,25.4,41.07,60.93,3.333333333333333,1,1,0,0,5,11,3,1,484,151112.3233955587,174864.4097173655,0,0,1596.341040369194 -4989,6193,11234,11233,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.032620101268696,8.290627431092121,0,8,-5,69.04366267031355,0,3,3,2019,6,0,40,39,1,0,0,9.45975689430888,9.45975689430888,0,0,0,0,0,1,1,0,0,0,41.07,60.93,48.34,25.4,10,1,1,0,0,10,11,3,1,484,151112.3233955587,174864.4097173655,0,0,1596.341040369194 -4989,6193,11235,-9,11233,11234,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-913.3978924531189,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,1,484,151112.3233955587,174864.4097173655,0,0,1596.341040369194 -4989,6194,11236,-9,11233,11234,1,1,19,0,1,0,2,2,1,0,5,7.324962353918168,7.261870248081054,0,0,0,-1047.79075745048,-9,2,2,2019,5,0,40,0,1,0,1,4.689851099546694,4.689851099546694,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,6.666666666666667,4,2,0,0,1,11,3,1,412,0,0,0,0,844.6556787866775 -4990,6195,11237,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.589643725974454,7.555691104091276,0,0,-1022.801441326343,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.050861820585771,7.376675888854249,44.13,32.58,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,305,325033.0763051471,193527.3394807705,282557.0967342141,0,352.1944344744916 -4991,6196,11238,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.94816917103886,6.092958312516432,0,0,-975.2706435080025,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.239496813038932,6.131023470712448,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,539,488888.8747822689,13063.04021604537,490619.6487482985,0,891.4999747121306 -4992,6197,11239,-9,11240,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.674639302086,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,307.5,-18590.81420438031,0,0,0,1020.656699819845 -4992,6197,11240,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1044.388461860325,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.92,50.16,-9,-9,5,1,1,0,0,0,9,1,0,307.5,-18590.81420438031,0,0,0,1020.656699819845 -4993,6198,11241,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.378971510432921,6.963492369913077,0,0,0,-904.4817773450525,0,3,3,2019,6,0,30,30,1,0,0,5.610100698595455,5.610100698595455,0,0,0,0,0,1,1,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,298,-52042.9916694912,0,0,0,1272.725245130008 -4994,6199,11242,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,4.371936948041289,4.692892856253937,0,0,-981.7624446570071,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,2.303098307062546,14.91735411153945,22.69979839917348,0,1,1,0,0,4.583652713818426,50.13,38.12,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,323,192040.4455273824,-106401.3921314181,0,0,1212.087172313631 -4995,6200,11243,11244,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.112456750754411,7.856504144156677,0,8,-2,41.24756243743653,0,3,3,2019,8,0,25,20,1,0,0,13.75846736360005,13.75846736360005,0,0,0,0,0,0,0,0,0,0,52,54.51,47.93,45.76,8.333333333333334,1,1,0,0,9,6,4,1,496,1038769.005935599,898074.7915822179,45328.31130098114,0,2311.83120246059 -4995,6200,11244,11243,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.927746029926082,8.213474477667736,0,8,2,-68.0218764514008,0,3,3,2019,15,3,38,38,1,3,0,9.243962873670355,9.243962873670355,0,0,0,0,0,0,0,0,4.203570562768608,0,47.93,45.76,52,54.51,3.333333333333333,1,1,0,0,9,6,4,1,496,1038769.005935599,898074.7915822179,45328.31130098114,0,2311.83120246059 -4996,6201,11245,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.565435326029089,6.790768063592198,0,0,-1024.497860799464,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.58728638687704,41.37,22.62,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,2674,142055.5305688591,154961.7741059427,85535.28853697643,0,1842.350382215349 -4997,6202,11246,-9,11249,11247,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1022.724249508692,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,5,1,795,1423001.68590255,908538.2907888596,372231.4978061522,0,5390.109085137158 -4997,6202,11247,11249,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.780132840039785,8.858599490091844,0,8,8,-39.20299741275672,0,-9,-9,2019,10,0,40,48,1,0,0,20.4785224889066,20.4785224889066,0,0,0,0,0,1,1,0,4.889423551317659,0,51.73,58.82,51.24,58.84,6.666666666666667,1,1,0,0,9,13,5,1,795,1423001.68590255,908538.2907888596,372231.4978061522,0,5390.109085137158 -4997,6202,11248,-9,11249,11247,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.6337441150706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,795,1423001.68590255,908538.2907888596,372231.4978061522,0,5390.109085137158 -4997,6202,11249,11247,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.899126230008157,8.955287629493748,0,17,-8,4.52564785297501,0,1,2,2019,11,1,28,32,1,1,0,29.38472423648166,29.38472423648166,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.73,58.82,8.333333333333334,1,1,0,0,9,13,5,1,795,1423001.68590255,908538.2907888596,372231.4978061522,0,5390.109085137158 -4998,6203,11250,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.919060294900024,7.948871643761083,0,0,0,-1035.500375334633,-9,-9,-9,2019,9,0,55,0,1,0,0,5.540608949044164,5.540608949044164,0,0,0,0,2,0,0,0,0,0,43.94,58,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,518,707030.8167017319,136126.0233371097,525185.5795929581,0,1286.713420569529 -4999,6204,11251,11252,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,1,23.84905473485755,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,40.96,35.62,58.49,50.2,6.666666666666667,1,1,0,0,0,9,4,1,639.5,1524024.055084615,565871.7345986078,982675.907626744,0,3401.156946590215 -4999,6204,11252,11251,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.503743857094285,8.527758325086396,6,-1,43.12301464894318,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.329614334673057,8.306352504575475,58.49,50.2,40.96,35.62,8.333333333333334,1,1,0,0,0,9,4,1,639.5,1524024.055084615,565871.7345986078,982675.907626744,0,3401.156946590215 -5000,6205,11253,-9,11255,11254,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.8566508093463,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,2486,1057547.067871022,325456.9136480095,274594.0280872025,49489.20259941198,5552.094276895655 -5000,6205,11254,11255,-9,-9,1,1,50,0,3,0,1,1,-9,0,3,9.268724028455077,9.098542308772624,0,17,5,35.33176877072302,0,2,2,2019,11,0,50,57,1,0,0,22.27330259903789,22.27330259903789,0,0,0,0,0,0,0,0,0,0,39.76,53.46,65.04000000000001,20.36,3.333333333333333,1,1,0,0,8,2,5,1,2486,1057547.067871022,325456.9136480095,274594.0280872025,49489.20259941198,5552.094276895655 -5000,6205,11255,11254,-9,-9,1,0,45,0,3,0,2,2,-9,0,2,8.209037264723765,8.101441296015468,0,17,-5,-49.96505019370589,0,2,2,2019,7,0,60,75,1,0,0,6.726018229769192,6.726018229769192,0,0,0,0,0,0,0,0,6.358937969060933,0,65.04000000000001,20.36,39.76,53.46,6.666666666666667,1,1,0,0,9,2,5,1,2486,1057547.067871022,325456.9136480095,274594.0280872025,49489.20259941198,5552.094276895655 -5001,6206,11256,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1082.123008029273,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.77,33.48,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1047,77030.01259466125,0,0,0,806.2348959891233 -5002,6207,11257,11258,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.118023917864353,5.002053730642532,5,-2,5.60618619849283,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.607923098959702,4.938798508490049,51.73,43.56,57.06,57.76,8.333333333333334,1,1,0,0,3,10,4,1,536.5,242804.1667501746,166807.6093188565,94878.14601232976,78618.93525459124,2840.727397917348 -5002,6207,11258,11257,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,8.11817109272492,8.386600173408583,6.394633398674801,5,2,122.3236097822208,0,3,2,2019,5,0,24,28,1,0,0,13.97692709592578,13.97692709592578,0,0,0,0,0,1,1,0,6.580366226968651,7.125278751490309,57.06,57.76,51.73,43.56,10,1,1,0,0,7,10,4,1,536.5,242804.1667501746,166807.6093188565,94878.14601232976,78618.93525459124,2840.727397917348 -5002,6208,11259,-9,11257,11258,1,0,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1098.022320775231,1,2,2,2019,17,5,0,38,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,31.3,66.59,-9,-9,6.666666666666667,1,1,0,0,4,10,1,1,643,-107460.8846916385,0,0,0,334.7072685699628 -5003,6209,11260,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1011.572177884816,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.78,31.2,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,211,-154849.4182042809,0,0,0,1412.694417348099 -5004,6210,11261,-9,11263,11262,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.435101524162,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,4,0,1063.5,18803.00136075732,-28214.20936888438,134822.2942416747,117976.1350693919,2342.95022922432 -5004,6210,11262,11263,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.708183963297749,8.351587598609569,0,5,8,9.405958470470605,0,3,3,2019,4,0,40,8,1,0,0,11.53791890458232,11.53791890458232,0,0,0,0,0,1,1,0,0,0,55.03,44.66,47.56,48.73,6.666666666666667,3,4,0,0,9,2,4,0,1063.5,18803.00136075732,-28214.20936888438,134822.2942416747,117976.1350693919,2342.95022922432 -5004,6210,11263,11262,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.664328120411504,7.533473729824157,0,5,-8,-15.15762735846884,0,-9,-9,2019,8,1,36,0,1,1,0,5.628145483022185,5.628145483022185,0,0,0,0,0,1,1,0,0,0,47.56,48.73,55.03,44.66,8.333333333333334,3,4,0,0,0,2,4,0,1063.5,18803.00136075732,-28214.20936888438,134822.2942416747,117976.1350693919,2342.95022922432 -5004,6210,11264,-9,11263,11262,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.536122182825,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,4,0,1063.5,18803.00136075732,-28214.20936888438,134822.2942416747,117976.1350693919,2342.95022922432 -5005,6211,11265,11266,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,4.767510304367795,5.248322314327851,7,3,41.78185547748076,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,6.331020229398768,5.019693297747203,40.88,31.02,57.16,56.15,3.333333333333333,1,1,0,0,3,12,3,1,605.5,1018427.817102189,608829.3491648617,307450.2415857867,0,2096.240219529199 -5005,6211,11266,11265,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.867415846594483,7.955154150429882,7,-3,-32.75307471755103,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.833302345061878,7.841622750606064,57.16,56.15,40.88,31.02,8.333333333333334,1,1,0,0,7,12,3,1,605.5,1018427.817102189,608829.3491648617,307450.2415857867,0,2096.240219529199 -5006,6212,11267,11268,-9,-9,1,1,92,0,0,0,1,1,-9,0,3,0,8.619493942324606,8.54989816271644,34,11,-7.226738736378874,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.280357452296957,8.517087858291129,62.58,29.37,53.53,51,6.666666666666667,1,1,0,0,0,2,5,1,894,1351054.307629038,887094.9362707091,325609.235613143,0,4977.53904875829 -5006,6212,11268,11267,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.534160854369368,7.352870707174649,34,-11,-7.693719098598077,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.767885357725382,7.748955707922226,53.53,51,62.58,29.37,8.333333333333334,1,1,0,0,0,2,5,1,894,1351054.307629038,887094.9362707091,325609.235613143,0,4977.53904875829 -5007,6213,11269,11270,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.597778242915436,7.319308717437724,0,24,0,-26.31940114991432,0,2,2,2019,6,0,33,32,1,0,0,5.803782239071634,5.803782239071634,0,0,0,0,14.5,0,0,0,0,0,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,7,4,1,932.5,240971.5802809614,0,452115.3126510876,156194.9915669816,1928.596791886498 -5007,6213,11270,11269,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.297419215442577,8.199509954914179,0,24,0,-45.30927734025905,0,2,2,2019,8,0,48,48,1,0,0,9.975002837948804,9.975002837948804,0,0,0,0,0,0,0,0,0,0,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,11,7,4,1,932.5,240971.5802809614,0,452115.3126510876,156194.9915669816,1928.596791886498 -5007,6214,11271,-9,11269,11270,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1213.667064890577,0,3,1,2019,11,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,2.941211843407296,0,54.37,54.8,-9,-9,3.333333333333333,1,1,1,0,6,7,1,1,557,0,0,0,0,963.5110180257703 -5008,6215,11272,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,1,0,7.87840549368009,7.429568548183504,0,0,-1035.472423432032,-9,2,1,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.733523145566981,39.56,24.23,-9,-9,5,1,1,0,0,0,5,3,1,186,42837.78299306887,1950.203357223079,0,0,1560.247900236572 -5008,6216,11273,-9,-9,11272,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1023.864386822461,-9,-9,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.27,58.7,-9,-9,8.333333333333334,1,1,1,0,0,5,1,1,1638,-49010.39382848688,0,0,0,223.1974105332201 -5009,6217,11274,11275,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.346816355938081,8.322765378089333,0,33,7,-40.75593701571405,0,2,3,2019,12,0,41,40,1,0,0,12.5099282339437,12.5099282339437,0,0,0,0,2,0,0,0,6.060867466480651,0,45.85,61.26,55.19,54.26,1.666666666666667,1,1,0,0,13,12,5,1,463.5,840685.1875541868,221551.8321045056,534671.2008721135,0,4622.529439328546 -5009,6217,11275,11274,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.214768028917041,8.914792611280667,0,33,-7,67.01594801536356,0,2,1,2019,11,0,46,45,1,0,0,23.26966640877304,23.26966640877304,0,0,0,0,7,0,0,0,1.470284172510256,0,55.19,54.26,45.85,61.26,8.333333333333334,1,1,0,0,11,12,5,1,463.5,840685.1875541868,221551.8321045056,534671.2008721135,0,4622.529439328546 -5010,6218,11276,11277,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.795500521781005,8.867949627887745,0,5,-4,-160.6711629061002,0,-9,-9,2019,6,0,48,50,1,0,0,15.03184498375079,15.03184498375079,0,0,0,0,0,0,0,0,.4778478696546959,0,49.41,58.28,53.59,49.64,8.333333333333334,1,1,0,0,6,5,5,1,874.5,174974.5896728051,47805.14145339133,94273.01448115797,78147.00649238014,3570.195241372711 -5010,6218,11277,11276,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.588556570199149,8.743475729176138,0,5,4,-1.905976501234134,0,1,2,2019,7,0,45,46,1,0,0,10.71392854447098,10.71392854447098,0,0,0,0,0,0,0,0,.5311464260814951,0,53.59,49.64,49.41,58.28,8.333333333333334,1,1,0,0,8,5,5,1,874.5,174974.5896728051,47805.14145339133,94273.01448115797,78147.00649238014,3570.195241372711 -5011,6219,11278,11279,-9,-9,1,1,31,1,4,0,2,2,-9,0,2,0,0,0,1,1,0,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,56.25,56.97,48.48,8.333333333333334,1,1,1,1,1,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5011,6219,11279,11278,-9,-9,1,0,30,1,4,0,2,2,-9,1,4,0,0,0,1,-1,0,-9,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,56.97,48.48,31.77,56.25,6.666666666666667,1,1,0,1,0,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5011,6219,11280,-9,11279,11278,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1038.012309136338,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5011,6219,11281,-9,11279,11278,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-890.7585335197695,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5011,6219,11282,-9,11279,11278,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-942.2426452215964,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5011,6219,11283,-9,11279,11278,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1110.453577474412,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1143.166666666667,-28006.84490073385,0,0,0,1986.314538740472 -5012,6220,11284,11285,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,18,0,0,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,48.18,61.8,54,54,6.666666666666667,1,1,1,0,0,1,1,0,731,66933.85587659033,0,0,0,1042.606769545663 -5012,6220,11285,11284,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,33,0,0,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48.18,61.8,8,1,1,0,0,0,1,1,0,731,66933.85587659033,0,0,0,1042.606769545663 -5012,6221,11286,-9,11284,11285,1,1,27,0,0,0,2,2,-9,0,4,8.09851475442108,7.993136098078035,0,0,0,-985.6219391660629,0,2,3,2019,10,0,60,60,1,1,1,5.702113306025676,5.702113306025676,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,1,4,0,243,45207.35093360752,0,0,0,682.1283920698603 -5012,6222,11287,-9,11284,11285,1,1,26,0,0,0,2,2,-9,0,4,7.906425338210476,7.952784174555736,0,0,0,-955.7146336010785,0,2,3,2019,10,0,50,20,1,1,1,6.235323500192828,6.235323500192828,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,1,1,4,0,269,-143893.8042057942,0,0,0,1507.972715852496 -5013,6223,11288,11291,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,8.213021759781997,8.364963938610281,0,6,-1,-42.40719474289658,0,2,2,2019,16,5,26,34,1,5,0,14.73952337755211,14.73952337755211,0,0,0,0,0,1,1,0,1.203629466882269,0,32.09,64.06,50.11,54.04,6.666666666666667,1,1,0,0,7,13,4,1,1145,150271.9641714231,24683.9334298513,266465.3845464129,176472.540327971,3765.527655226908 -5013,6223,11289,-9,11288,11291,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.1543391402482,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1145,150271.9641714231,24683.9334298513,266465.3845464129,176472.540327971,3765.527655226908 -5013,6223,11290,-9,11288,11291,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-908.6486568545232,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1145,150271.9641714231,24683.9334298513,266465.3845464129,176472.540327971,3765.527655226908 -5013,6223,11291,11288,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.670045369210134,8.632527826992657,0,6,1,-63.2817482002819,0,-9,-9,2019,17,5,56,53,1,5,0,10.80451004735787,10.80451004735787,0,0,0,0,0,1,1,0,0,0,50.11,54.04,32.09,64.06,8.333333333333334,1,1,0,0,7,13,4,1,1145,150271.9641714231,24683.9334298513,266465.3845464129,176472.540327971,3765.527655226908 -5014,6224,11292,11293,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.523991311465431,7.320098399218645,0,36,-7,54.31385914679409,0,3,3,2019,17,6,38,28,1,6,0,5.110728722016987,5.110728722016987,0,0,0,0,0,1,1,0,0,0,38.65,52.49,43.72,29.9,6.666666666666667,2,3,0,1,10,5,2,1,501,84763.8094832386,0,0,0,1523.299130783691 -5014,6224,11293,11292,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,7,7,26.39905705825026,0,3,3,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,29.9,38.65,52.49,0,2,3,0,1,0,5,2,1,501,84763.8094832386,0,0,0,1523.299130783691 -5014,6225,11294,-9,11293,11292,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-946.7436267885596,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.466480331607988,0,60.12,54.8,-9,-9,6.666666666666667,2,3,1,0,0,5,1,1,1462,-61543.46214557537,0,0,0,-290.3995425700311 -5014,6226,11295,-9,11293,11292,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1033.530854285098,-9,2,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,1328,-70043.55165599271,0,0,0,-397.4325714405214 -5014,6227,11296,-9,11293,11292,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.4664400482786,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,1.73147207417897,0,49.85,43.33,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,415,-120210.731172634,0,0,0,915.5412919307653 -5015,6228,11297,11298,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.660776240709717,7.392993659813675,0,1,-3,21.16369135611981,-9,-9,-9,2019,9,1,30,0,1,1,0,5.833013076252485,5.833013076252485,0,0,0,0,0,0,0,0,0,0,51.47,53.17,43.99,58.04,10,1,1,0,0,0,4,4,0,1122.5,93359.42044309652,15728.22441178092,125907.9467625863,110375.7963965105,2133.735500235316 -5015,6228,11298,11297,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.114650034258119,8.296035703261195,0,1,3,-25.61706581299749,-9,3,3,2019,13,5,73,0,1,5,0,6.061930102679965,6.061930102679965,0,0,0,0,2,0,0,0,.856855018342688,0,43.99,58.04,51.47,53.17,5,1,1,0,0,8,4,4,0,1122.5,93359.42044309652,15728.22441178092,125907.9467625863,110375.7963965105,2133.735500235316 -5016,6229,11299,-9,11301,11300,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-913.5502003650907,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,365,269871.1740752797,44447.84764723633,189188.3028722847,0,3080.285882191568 -5016,6229,11300,11301,-9,-9,1,1,42,2,3,0,2,2,-9,0,3,8.221945712725786,8.364364150478613,0,7,11,-3.364163473298659,0,-9,-9,2019,10,0,55,55,1,0,0,7.657541384952848,7.657541384952848,0,0,0,0,0,1,1,0,0,0,33.41,62.84,48.77,60.16,3.333333333333333,1,1,0,0,8,5,3,1,365,269871.1740752797,44447.84764723633,189188.3028722847,0,3080.285882191568 -5016,6229,11301,11300,-9,-9,1,0,31,2,3,0,2,2,-9,0,5,7.296896614737046,7.008806277001178,0,7,-11,15.17933434784557,0,-9,-9,2019,11,1,15,17,1,1,0,8.209634969494807,8.209634969494807,0,0,0,0,0,1,1,0,0,0,48.77,60.16,33.41,62.84,8.333333333333334,1,1,0,0,9,5,3,1,365,269871.1740752797,44447.84764723633,189188.3028722847,0,3080.285882191568 -5016,6229,11302,-9,11301,11300,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.220911616439,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,365,269871.1740752797,44447.84764723633,189188.3028722847,0,3080.285882191568 -5016,6229,11303,-9,11301,11300,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.69128511453,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,365,269871.1740752797,44447.84764723633,189188.3028722847,0,3080.285882191568 -5017,6230,11304,11305,-9,-9,1,0,82,0,0,0,1,1,-9,0,2,0,6.845485976245768,6.706690845474945,57,-1,85.44350180934617,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.663356703395806,6.844135362431366,59.45,33.75,63.4,45.23,8.333333333333334,1,1,0,0,0,9,4,1,1519,765913.8519597857,584938.1371185106,266001.0764344025,0,3272.761303889948 -5017,6230,11305,11304,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,8.262804920576841,8.161919100395419,57,1,-84.46392510534899,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.925499643919647,8.06398223266771,63.4,45.23,59.45,33.75,8.333333333333334,1,1,0,0,0,9,4,1,1519,765913.8519597857,584938.1371185106,266001.0764344025,0,3272.761303889948 -5018,6231,11306,11309,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,7.801390565337196,7.72016817583573,0,9,-7,-12.07204745845272,-9,-9,-9,2019,10,0,48,0,1,0,0,6.418457169977136,6.418457169977136,0,0,0,0,0,1,1,0,0,0,51.24,58.84,62.49,55.09,8.333333333333334,1,1,0,0,9,7,2,0,321.5,-120777.9381675506,0,0,0,3384.075025002435 -5018,6231,11307,-9,11309,11306,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.979934499441,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,321.5,-120777.9381675506,0,0,0,3384.075025002435 -5018,6231,11308,-9,11309,11306,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.851966596371,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,321.5,-120777.9381675506,0,0,0,3384.075025002435 -5018,6231,11309,11306,-9,-9,1,0,41,1,3,0,2,2,-9,1,4,0,0,0,9,7,-65.65981498167297,-9,2,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,62.49,55.09,51.24,58.84,5,1,1,0,1,7,7,2,0,321.5,-120777.9381675506,0,0,0,3384.075025002435 -5019,6232,11310,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,5.002200753250075,4.757056079755262,0,0,-985.9037294287517,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,28.11445634016271,0,245.9768313307837,0,1,1,0,0,4.79630408402539,48.56,24.17,-9,-9,5,1,1,0,0,0,5,2,1,110,187514.1723729941,-40618.0627100511,0,0,1334.650764796737 -5020,6233,11311,11312,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.259272280929528,7.894736549799705,0,34,2,-8.998372785815052,0,2,3,2019,10,1,24,28,1,1,0,15.59729451486541,15.59729451486541,0,0,0,0,2,0,0,0,1.269967237953999,0,52.6,52.88,53.96,50.73,8.333333333333334,1,1,0,0,13,10,5,1,723.5,310554.4976407756,190806.6911915956,276239.6787359827,105561.4800655615,3516.749062736879 -5020,6233,11312,11311,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.775548877899409,8.778854585807332,0,34,-2,65.99193856025835,0,2,2,2019,12,0,40,40,1,0,0,16.93951830352824,16.93951830352824,0,0,0,0,0,0,0,0,7.265059883183327,0,53.96,50.73,52.6,52.88,8.333333333333334,1,1,0,0,9,10,5,1,723.5,310554.4976407756,190806.6911915956,276239.6787359827,105561.4800655615,3516.749062736879 -5021,6234,11313,11314,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,6.56021157143003,6.34124966012569,0,33,2,55.04304837001516,0,-9,-9,2019,13,1,30,30,1,1,0,3.247075043318892,3.247075043318892,0,0,0,0,0,1,1,0,0,0,43.48,41.11,34.22,38.82,6.666666666666667,2,3,0,0,9,6,2,1,593,38099.65922592,0,0,0,562.8572220148134 -5021,6234,11314,11313,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,33,-2,-.1348907603872815,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.22,38.82,43.48,41.11,6.666666666666667,2,3,0,0,0,6,2,1,593,38099.65922592,0,0,0,562.8572220148134 -5021,6235,11315,-9,11314,11313,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-909.8993732228831,0,3,3,2019,10,0,0,37,3,1,1,0,0,0,0,0,0,0,1,1,0,.7548159919479117,0,49,58,-9,-9,7,2,3,1,1,1,6,1,1,764,2135.909509258287,0,0,0,530.6019405707126 -5021,6235,11316,-9,-9,11315,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-922.9873390753796,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,1,1,764,2135.909509258287,0,0,0,530.6019405707126 -5021,6236,11317,-9,11314,11313,1,0,19,0,0,1,2,0,0,0,3,0,6.904247123418363,7.160733559631359,0,0,-1007.866546070773,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.839164310300656,0,28.52,62.72,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,2581,-130956.9884254196,0,0,0,312.2941139696044 -5022,6237,11318,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,3,0,0,0,0,0,-852.2587930015787,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,3,4,1,0,0,8,1,0,265,-5344.59424578319,0,0,0,1289.882441755702 -5023,6238,11319,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.493988821251631,7.457843203072995,0,0,0,-933.3437619394986,0,2,2,2019,11,0,45,0,1,0,0,5.338511023222262,5.338511023222262,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,446,382700.5386097638,397072.75484954,140352.8608526728,0,1468.141181417336 -5023,6239,11320,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.998176461644716,8.410905138288307,0,0,-949.6528422739619,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.535358459959861,63.97,49.13,-9,-9,10,1,1,0,0,7,13,4,0,2446,733646.3030816731,556049.4929255398,287078.1486368366,0,1992.557814517084 -5024,6240,11321,11323,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.301605413015035,7.562023164757744,0,23,-3,-15.40308852389454,0,3,3,2019,6,0,21,22,1,0,0,9.275322782672649,9.275322782672649,0,0,0,0,7,1,1,0,0,0,57.16,56.15,38.05,49.97,10,1,1,0,0,9,13,5,1,1045.333333333333,-62241.48036229546,60602.10730740151,0,0,3769.123312238102 -5024,6240,11322,-9,11321,11323,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-990.1897204008181,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.207156277664893,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,5,1,1045.333333333333,-62241.48036229546,60602.10730740151,0,0,3769.123312238102 -5024,6240,11323,11321,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.964265479633816,8.703087430707829,0,9,3,-11.57275044810317,0,-9,-9,2019,13,1,47,40,1,1,0,19.4744060467561,19.4744060467561,0,0,0,0,0,1,1,0,0,0,38.05,49.97,57.16,56.15,3.333333333333333,1,1,0,0,7,13,5,1,1045.333333333333,-62241.48036229546,60602.10730740151,0,0,3769.123312238102 -5024,6241,11324,-9,11321,11323,1,1,19,0,0,0,2,2,-9,0,3,0,5.653243369322253,5.76291438016033,0,0,-1037.363040058463,1,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.364096818996518,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,414,0,0,0,0,288.8266120325718 -5025,6242,11325,-9,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.605562876146918,8.525874416845173,0,0,0,-1012.861528543031,0,3,3,2019,21,10,32,32,1,10,0,19.85838623856013,19.85838623856013,0,0,0,0,0,1,1,0,8.448157960234955,0,33.74,63,-9,-9,6.666666666666667,2,3,0,0,9,8,4,1,137,73047.8361368701,14235.2848154278,177699.9286294178,77936.83626458055,5850.429598989347 -5025,6242,11326,-9,11325,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.348546706685,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,4,1,137,73047.8361368701,14235.2848154278,177699.9286294178,77936.83626458055,5850.429598989347 -5026,6243,11327,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,6.591124102272644,6.264388205743896,0,0,-1069.172172464316,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,6.624305690184528,15.86,45.78,-9,-9,1.666666666666667,1,1,0,0,4,4,2,1,705,-41170.23437650478,0,0,0,1991.278344688711 -5027,6244,11328,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1060.275084735752,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.52,25.02,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,1209,0,0,0,0,1058.524271209804 -5028,6245,11329,11330,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,9,0,-52.7290733198673,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.855822830875799,0,51.28,45.2,54.94,26.26,6.666666666666667,1,1,0,0,0,4,2,1,514,710537.4931760444,350200.3304775805,152132.0067061588,0,2372.526114334913 -5028,6245,11330,11329,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.469849301604577,7.452970165963341,9,0,62.78437231351209,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,134.1524050589681,0,0,1,1,0,6.59856296307329,7.697733816459678,54.94,26.26,51.28,45.2,8.333333333333334,1,1,0,0,0,4,2,1,514,710537.4931760444,350200.3304775805,152132.0067061588,0,2372.526114334913 -5029,6246,11331,11332,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.591225130031695,8.535498361102229,0,37,1,305.5685191380749,0,3,3,2019,6,0,40,35,1,0,0,15.53179274785589,15.53179274785589,0,0,0,0,2,0,0,0,.6718752398175609,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,4,4,1,697,389522.5716693716,109262.2867884395,199312.8252035111,0,2834.653554489254 -5029,6246,11332,11331,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.468245783205274,7.035604514590381,0,6,-1,25.32242988603615,0,-9,-9,2019,9,0,20,16,1,0,0,7.357715090100607,7.357715090100607,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,697,389522.5716693716,109262.2867884395,199312.8252035111,0,2834.653554489254 -5030,6247,11333,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,6.091351865702661,6.846789736468217,0,0,-929.080498120861,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.899494121349902,52.52,58.44,-9,-9,10,3,4,0,0,0,8,2,0,2077,395698.673078843,-8986.957897347944,398204.6599331145,0,2187.069475539421 -5030,6248,11334,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-869.9802717035686,0,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,2,0,180,5844.462390203745,0,0,0,771.7847067808455 -5031,6249,11335,11336,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.333171777447222,7.211632076665494,55,5,18.06058442194814,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.630246415333917,54.97,50.31,63.17,32.94,10,1,1,0,0,0,11,2,1,344,717903.554021742,252606.434237457,362700.0595831699,0,1104.768980588024 -5031,6249,11336,11335,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.243298729903485,5.297442693329783,55,-5,-69.403829129106,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,14.25654817987548,0,0,1,1,0,0,5.233686068104438,63.17,32.94,54.97,50.31,6.666666666666667,1,1,0,0,0,11,2,1,344,717903.554021742,252606.434237457,362700.0595831699,0,1104.768980588024 -5031,6250,11337,-9,11336,11335,1,1,48,0,0,0,2,2,-9,0,4,7.873643977151628,7.698298042548267,0,0,0,-1106.560427409192,0,3,2,2019,11,0,38,38,1,0,0,6.291749653060146,6.291749653060146,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,6.666666666666667,1,1,0,0,6,11,3,1,3071,42963.57672235779,-69054.71521745627,0,0,943.6262427677977 -5032,6251,11338,11339,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.963714003354652,7.803822893725112,0,6,3,37.15571293313015,0,-9,-9,2019,12,2,28,45,1,2,0,13.49819512994912,13.49819512994912,0,0,0,0,0,0,0,0,6.551342533818136,0,45.91,59.89,46.33,55.93,3.333333333333333,1,1,0,0,6,10,5,1,1021,184837.5855793608,50946.63590037284,244234.1783567406,181901.318100343,3692.361861670363 -5032,6251,11339,11338,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.803731938124217,8.526992968971955,0,6,-3,-98.82236432640711,0,2,2,2019,12,0,38,36,1,0,0,17.32116227696135,17.32116227696135,0,0,0,0,0,0,0,0,1.890795547670199,0,46.33,55.93,45.91,59.89,6.666666666666667,1,1,0,0,11,10,5,1,1021,184837.5855793608,50946.63590037284,244234.1783567406,181901.318100343,3692.361861670363 -5033,6252,11340,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.927168841323864,7.864490290966014,0,0,0,-998.93602116469,0,2,-9,2019,2,0,35,0,1,0,0,6.626508376767066,6.626508376767066,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,4,8,3,0,1365,299461.7630312699,0,0,0,1298.268729169661 -5033,6253,11341,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.498411819529554,8.56615776110238,0,0,0,-1048.097711145791,0,3,2,2019,12,0,41,38,1,0,0,18.18974081201305,18.18974081201305,0,0,0,0,0,0,0,0,0,0,33.1,55.16,-9,-9,5,1,1,0,0,7,8,5,0,696,107987.7368168689,-92098.49557057371,0,0,1847.754401761726 -5034,6254,11342,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.508538613620752,8.755096971434849,0,0,0,-973.6013633123996,0,2,2,2019,12,1,45,35,1,1,0,15.94418772193706,15.94418772193706,0,0,0,0,0,0,0,0,4.429306875821521,0,47.3,51.13,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,777,940107.7552692175,94857.9386314678,503481.4406819426,0,2427.27504129014 -5034,6255,11343,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.187500666294071,7.884886190194919,0,0,0,-1043.702981869237,0,-9,-9,2019,8,0,37,42,1,0,0,7.832756712056862,7.832756712056862,0,0,0,0,0,0,0,0,5.815882214546859,0,58.47,50.22,-9,-9,6.666666666666667,3,4,0,1,6,8,4,1,1684,-35158.53143703041,-100013.9822449408,0,0,1222.393580785229 -5035,6256,11344,11345,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,0,0,41,1,-125.6502682397045,0,2,3,2019,8,0,0,9,4,0,0,0,0,0,0,0,0,0,0,0,0,5.811154503451587,0,32.38,47.75,40.77,61.04,6.666666666666667,1,1,0,0,6,9,2,1,398.5,2879755.929117023,1145887.871473221,806761.5278856221,0,781.1656400119122 -5035,6256,11345,11344,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,7.359981147989705,6.896948080915641,41,-1,71.4142891256805,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.281559598424252,7.154218954195087,40.77,61.04,32.38,47.75,8.333333333333334,1,1,0,0,3,9,2,1,398.5,2879755.929117023,1145887.871473221,806761.5278856221,0,781.1656400119122 -5036,6257,11346,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.041153880657951,6.976632903759221,0,0,0,-1022.89171547962,0,3,2,2019,10,0,18,16,1,0,0,5.706902006047073,5.706902006047073,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,651,0,0,0,0,448.8582799267265 -5037,6258,11347,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1017.208081744975,1,3,2,2019,7,0,0,46,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,8,5,2,1,762,1543891.865354907,0,525972.1039893462,0,1106.750013083069 -5037,6258,11348,-9,11347,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-968.738299226217,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,7.412098528903317,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,762,1543891.865354907,0,525972.1039893462,0,1106.750013083069 -5037,6259,11349,-9,11347,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1090.216609121298,0,1,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,2.945034228106598,0,42.96,48.48,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,2342,-65067.14442474484,0,0,0,213.6845537918284 -5038,6260,11350,11351,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,4.749298026652598,4.711542236403941,36,0,-58.70334358481479,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.281397929731513,4.591675960718931,53.05,53.99,56.35,51,8.333333333333334,1,1,0,0,0,13,3,1,554,1668016.995336861,988733.8818429633,125016.0660071851,0,1407.483865768703 -5038,6260,11351,11350,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.12213554076391,8.149642765559685,0,36,0,82.31423264994204,0,2,3,2019,9,0,37,40,1,0,0,11.28817134564136,11.28817134564136,0,0,0,0,14.5,0,0,0,3.805383074709683,0,56.35,51,53.05,53.99,8.333333333333334,1,1,0,0,9,13,3,1,554,1668016.995336861,988733.8818429633,125016.0660071851,0,1407.483865768703 -5039,6261,11352,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,5,-4,26.17700162718407,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,25.07,63.24,42.39,3.333333333333333,1,1,0,1,1,4,2,0,682,-59912.13328529472,0,0,0,533.342168459061 -5039,6262,11353,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.33666663995184,7.463299607659926,0,5,4,-20.36587019594589,-9,-9,-9,2019,12,0,23,0,1,0,0,7.76335405608773,7.76335405608773,0,0,0,0,0,1,1,0,0,0,63.24,42.39,28.23,25.07,8.333333333333334,1,1,0,0,0,4,2,0,2544,-12370.88682634686,55328.55946490153,71414.86553499018,0,988.261387459068 -5040,6263,11354,11355,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,6.573205723454556,6.906249711206933,0,34,4,-47.65101004902552,0,-9,-9,2019,23,11,6,8,1,11,0,17.38721702030216,17.38721702030216,0,0,0,0,74.5,1,1,0,0,0,32.51,32.5,23.29,29.99,6.666666666666667,1,1,0,0,7,6,4,1,1334,115115.1500775442,-11218.97877285538,103024.3696968085,33440.04335376713,2346.74393293114 -5040,6263,11355,11354,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.041561250683067,8.230082592797967,0,34,-4,93.28233183878494,0,-9,-9,2019,30,11,35,36,1,11,0,11.34490385049216,11.34490385049216,0,0,0,0,0,1,1,0,1.290890560818665,0,23.29,29.99,32.51,32.5,5,1,1,0,0,11,6,4,1,1334,115115.1500775442,-11218.97877285538,103024.3696968085,33440.04335376713,2346.74393293114 -5041,6264,11356,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-961.9594544526929,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.41,45.11,-9,-9,1.666666666666667,1,1,0,0,9,12,1,1,634,674099.6022523437,-117548.6825628806,160313.8024651942,0,546.5235074094841 -5042,6265,11357,11358,-9,-9,1,0,46,2,3,0,2,2,-9,0,3,0,0,0,2,-2,25.2499034346179,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.63,30.58,43.43,54.3,8.333333333333334,1,1,0,0,0,13,2,1,1003,492444.4429245954,0,132949.7959845545,35305.30420619001,1112.88477387854 -5042,6265,11358,11357,-9,-9,1,1,48,2,3,0,2,2,-9,0,4,7.398662253572279,7.412641759852014,0,2,2,-71.19111090115517,0,3,3,2019,12,0,35,45,1,0,0,8.175191857598126,8.175191857598126,0,0,0,0,7,1,1,0,0,0,43.43,54.3,56.63,30.58,8.333333333333334,1,1,0,0,9,13,2,1,1003,492444.4429245954,0,132949.7959845545,35305.30420619001,1112.88477387854 -5042,6266,11359,-9,11360,-9,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.180948662723,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,1206,0,0,0,0,916.5277757732256 -5042,6266,11360,-9,11357,11358,1,0,27,2,3,0,2,2,-9,0,5,0,0,0,0,0,-875.5953986325328,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,6,13,1,1,1206,0,0,0,0,916.5277757732256 -5042,6266,11361,-9,11360,-9,1,0,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-971.7378152449688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,1,1206,0,0,0,0,916.5277757732256 -5042,6267,11362,-9,11357,11358,1,0,26,2,3,0,2,2,-9,0,4,7.529657192197569,7.655470220971782,0,0,0,-898.1276933993549,0,2,2,2019,10,0,30,30,1,0,1,5.308504811380176,5.308504811380176,0,0,0,0,0,1,1,0,0,0,62.7,41.29,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,652,-40510.7207213401,0,0,0,1627.090468043255 -5042,6267,11363,-9,11362,-9,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1120.47068387968,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,652,-40510.7207213401,0,0,0,1627.090468043255 -5042,6268,11364,-9,11357,11358,1,1,24,2,3,0,3,3,-9,0,4,7.595017516698743,7.605706128590832,0,0,0,-992.0061109851641,0,2,2,2019,10,0,38,0,1,1,1,5.049097451215153,5.049097451215153,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,360,-107381.0898024557,0,0,0,1316.754004037962 -5042,6269,11365,-9,11357,11358,1,0,22,2,3,0,2,2,1,0,4,6.834319596947115,6.862800244714677,0,0,0,-1021.366683454286,-9,2,2,2019,11,0,38,0,1,2,1,2.825247363397448,2.825247363397448,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,2,1,731,84764.08900664076,0,0,0,608.9097521680644 -5042,6270,11366,-9,11357,11358,1,0,20,2,3,0,2,2,1,0,4,6.769477157828373,6.918788948163124,0,0,0,-952.0146698995015,-9,2,2,2019,6,0,26,0,1,0,1,4.239252064473995,4.239252064473995,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,13,2,1,1492,-50389.31326800619,0,0,0,1030.342194883604 -5043,6271,11367,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,7.650534101899001,7.65654045260617,0,0,0,-872.2710781183898,0,3,-9,2019,15,4,40,45,1,4,0,6.042306069624951,6.042306069624951,0,0,0,0,0,1,1,0,0,0,45.75,22.74,-9,-9,1.666666666666667,1,1,0,0,7,13,3,0,483,630041.9111031641,68479.63338369594,173394.7714439925,0,1146.916756628852 -5044,6272,11368,11369,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.623289480544281,4.276728302828865,56,-6,3.610690528207953,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.130911132759213,57.89,19.53,49.35,36.82,8.333333333333334,1,1,0,0,0,5,2,0,1029.5,130192.6294198117,-22876.41556610594,127219.6182410616,0,1805.95711879084 -5044,6272,11369,11368,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,9,6,-9.150024506010844,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.35,36.82,57.89,19.53,6.666666666666667,1,1,0,0,0,5,2,0,1029.5,130192.6294198117,-22876.41556610594,127219.6182410616,0,1805.95711879084 -5045,6273,11370,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.419126672195749,4.65748788262818,0,0,-1026.998619017387,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.849407953736979,4.894060660805883,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,961,79205.22689442604,0,44383.44348864897,0,982.8841707975666 -5046,6274,11371,-9,11372,11373,1,1,25,0,0,0,2,2,-9,0,4,7.815555268443704,8.122206782413381,0,0,0,-1014.448023825932,0,2,2,2019,1,0,38,35,1,0,1,9.501522354062981,9.501522354062981,0,0,0,0,0,0,0,0,2.790137946949933,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,7,7,4,1,537,32256.16999020634,0,0,0,967.5005825157741 -5046,6275,11372,11373,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.814016357824039,7.932540116300079,0,9,0,3.852466598724369,0,-9,-9,2019,16,4,32,33,1,4,0,8.683742928070043,8.683742928070043,0,0,0,0,0,0,0,0,3.581194547780234,0,37.28,50.37,46.67,55.57,3.333333333333333,1,1,0,0,12,7,4,1,294.5,675930.3779855059,393447.510276226,388174.3362825398,58771.22799840716,2905.943975707808 -5046,6275,11373,11372,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.179021060948633,8.212241254574286,0,9,0,17.29015037596354,0,-9,-9,2019,12,0,48,48,1,0,0,7.642301220436815,7.642301220436815,0,0,0,0,0,0,0,0,0,0,46.67,55.57,37.28,50.37,6.666666666666667,1,1,0,0,12,7,4,1,294.5,675930.3779855059,393447.510276226,388174.3362825398,58771.22799840716,2905.943975707808 -5047,6276,11374,-9,11375,11376,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.9521316509671,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1114.4,516526.8836478147,509396.3752478649,141778.0520400838,76917.84802310303,4507.72932735627 -5047,6276,11375,11376,-9,-9,1,0,46,0,3,0,1,1,-9,0,2,7.001566430779439,7.365010914045359,6.380828545670483,8,2,-81.69640818534465,0,3,3,2019,22,6,21,25,1,6,0,7.243014582563646,7.243014582563646,0,0,0,0,0,1,1,0,6.494447103336056,0,36.2,26.9,58.05,54.52,6.666666666666667,1,1,0,0,3,2,4,1,1114.4,516526.8836478147,509396.3752478649,141778.0520400838,76917.84802310303,4507.72932735627 -5047,6276,11376,11375,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,9.244829295842509,9.328797866766431,0,8,-2,59.21990237482668,0,-9,-9,2019,8,0,38,47,1,0,0,35.23226771199882,35.23226771199882,0,0,0,0,0,1,1,0,.9964974324690479,0,58.05,54.52,36.2,26.9,6.666666666666667,1,1,0,0,9,2,4,1,1114.4,516526.8836478147,509396.3752478649,141778.0520400838,76917.84802310303,4507.72932735627 -5047,6276,11377,-9,11375,11376,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.045277789487,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1114.4,516526.8836478147,509396.3752478649,141778.0520400838,76917.84802310303,4507.72932735627 -5047,6276,11378,-9,11375,11376,1,0,16,0,3,0,2,2,-9,0,4,0,4.505591455961636,4.610704947867553,0,0,-953.5879407038429,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,7,1,1,0,4.786281473817539,0,37.87,61.03,-9,-9,8.333333333333334,1,1,1,0,0,2,4,1,1114.4,516526.8836478147,509396.3752478649,141778.0520400838,76917.84802310303,4507.72932735627 -5048,6277,11379,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.598080354847147,9.61027175325655,0,0,0,-1053.028369171961,0,1,1,2019,13,2,47,50,1,2,0,28.94959885025223,28.94959885025223,0,0,0,0,0,1,1,0,0,0,49.69,55.66,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,843,1135649.499303849,219944.954305113,740682.3678729668,136075.3603237404,4279.141420103837 -5049,6278,11380,11382,-9,-9,1,1,33,1,2,0,1,1,-9,0,3,9.107740499185395,9.058946336440496,0,6,-1,29.70638713020929,0,2,1,2019,9,0,40,50,1,0,0,21.02888419474242,21.02888419474242,0,0,0,0,0,1,1,0,7.487915954473445,0,57.33,53.46,55.19,54.26,8.333333333333334,1,1,0,0,11,10,5,1,1213,217799.3348792897,0,0,0,5121.264399529856 -5049,6278,11381,-9,11382,11380,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.2847741753262,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1213,217799.3348792897,0,0,0,5121.264399529856 -5049,6278,11382,11380,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.349813383767115,8.028898408232326,0,6,1,8.413306260678299,0,-9,-9,2019,9,0,35,30,1,0,0,12.90919149116377,12.90919149116377,0,0,0,0,7,1,1,0,7.264503257189912,0,55.19,54.26,57.33,53.46,6.666666666666667,1,1,0,0,11,10,5,1,1213,217799.3348792897,0,0,0,5121.264399529856 -5049,6278,11383,-9,11382,11380,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.9227327224505,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1213,217799.3348792897,0,0,0,5121.264399529856 -5050,6279,11384,11385,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.675770905725342,8.805433251600494,45,0,-6.050023864995611,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.910556585461391,8.988372913742911,60.12,54.8,60.02,56.42,10,1,1,0,0,4,6,4,1,669,2541106.566735333,1636375.03168862,439246.147977589,0,3916.335292065334 -5050,6279,11385,11384,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,5.457358096795867,5.013936139300981,45,0,-12.87338645834778,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.269998741647052,5.417231026044507,60.02,56.42,60.12,54.8,10,1,1,0,0,0,6,4,1,669,2541106.566735333,1636375.03168862,439246.147977589,0,3916.335292065334 -5051,6280,11386,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,6.62916224005527,6.820541807986813,0,0,0,-995.5324428665707,0,2,3,2019,25,12,16,16,1,12,0,7.927069272971482,7.927069272971482,0,0,0,0,27,1,1,0,0,0,33.19,27.06,-9,-9,1.666666666666667,1,1,0,0,12,10,2,0,2026,-71014.6192336837,0,0,0,1022.042657755336 -5051,6281,11387,-9,11386,-9,1,1,22,0,0,0,2,2,1,1,4,0,0,0,0,0,-955.2446641655611,-9,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,466,0,0,0,0,379.2436313503742 -5052,6282,11388,11389,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.702587775482353,8.794801858327423,0,3,-10,0,0,-9,-9,2019,21,8,48,48,1,8,0,14.3506789107902,14.3506789107902,0,0,0,0,2,0,0,0,0,0,30.09,48.51,47.74,45.88,3.333333333333333,2,3,0,0,9,8,5,0,359,1185294.640387882,323578.3480190797,402064.4916562673,0,4635.834274185692 -5052,6282,11389,11388,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,9.075362890552221,8.685618151108349,0,3,10,0,0,3,2,2019,15,3,48,48,1,3,0,15.63574377266849,15.63574377266849,0,0,0,0,2,0,0,0,0,0,47.74,45.88,30.09,48.51,6.666666666666667,1,1,0,0,8,8,5,0,359,1185294.640387882,323578.3480190797,402064.4916562673,0,4635.834274185692 -5053,6283,11390,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.604109814119322,8.553643183857494,0,0,0,-906.1552539935271,0,2,2,2019,9,0,42,50,1,0,0,13.18186982717655,13.18186982717655,0,0,0,0,0,0,0,0,5.077839805353062,0,47.44,59.35,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,974,21266.65602191485,29956.78255718172,0,0,1557.612880328451 -5054,6284,11391,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.646907062388587,8.570864714113887,0,0,0,-985.8880638522202,0,2,1,2019,9,1,40,42,1,1,0,19.21008334822914,19.21008334822914,0,0,0,0,0,1,1,0,0,0,51.01,49.85,-9,-9,8.333333333333334,3,4,0,0,10,8,5,0,1167,120631.8517880498,4054.690246837701,254362.8356275623,160163.172487236,2685.28806465668 -5054,6285,11392,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,7.78098582322716,8.054375693727151,0,0,0,-1084.037417327415,0,2,1,2019,6,0,30,0,1,0,0,11.67976801025434,11.67976801025434,0,0,0,0,0,1,1,0,0,0,46.69,58.35,-9,-9,8.333333333333334,3,4,0,0,4,8,4,0,1130,115141.0475698743,-31820.45356389844,0,0,1241.217045637578 -5054,6286,11393,-9,11392,-9,1,0,32,0,0,0,2,2,-9,0,4,8.62726339084878,8.406877580997406,0,0,0,-1043.28400835631,0,2,1,2019,6,0,43,41,1,0,0,14.17143047313295,14.17143047313295,0,0,0,0,0,1,1,0,0,0,63.06,53.47,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,1329,247175.7922705314,104548.1086078639,113692.6544693831,32089.41017585707,1953.888315550024 -5054,6287,11394,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.356700341094026,8.367206201422679,0,0,0,-1159.495151589924,0,-9,-9,2019,12,1,46,40,1,1,0,10.35889935667178,10.35889935667178,0,0,0,0,0,1,1,0,0,0,50.76,51.17,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,504,-76220.78954128741,24005.47257371777,0,0,1987.620692458598 -5055,6288,11395,-9,11397,-9,1,1,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1063.076016092371,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,6,5,1,635.3333333333334,1646718.306558535,1391555.619078179,438074.611904114,234152.2965522476,3065.578240572679 -5055,6288,11396,-9,11397,-9,1,1,10,0,2,1,3,0,-9,0,1,0,0,0,0,0,-980.5979315127412,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,6,5,1,635.3333333333334,1646718.306558535,1391555.619078179,438074.611904114,234152.2965522476,3065.578240572679 -5055,6288,11397,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.96342235120601,8.95106731988154,6.942835007234522,0,0,-975.0910128889452,0,2,1,2019,5,0,42,38,1,0,0,17.82161358082387,17.82161358082387,0,0,0,0,0,1,1,0,6.509095402460974,0,46.39,45.08,-9,-9,3.333333333333333,1,1,0,0,8,6,5,1,635.3333333333334,1646718.306558535,1391555.619078179,438074.611904114,234152.2965522476,3065.578240572679 -5056,6289,11398,11399,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,2,-10,32.09241502234853,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,50,57,7,2,3,0,0,0,8,4,0,1494.5,0,0,0,0,1979.775106934651 -5056,6289,11399,11398,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.355910317112043,8.107535676992367,0,2,10,42.39323305527162,0,2,-9,2019,10,0,38,42,1,1,0,11.83086342718028,11.83086342718028,0,0,0,1.696520465745536,0,0,0,0,0,0,50,57,46,58,7,2,3,0,0,6,8,4,0,1494.5,0,0,0,0,1979.775106934651 -5057,6290,11400,11401,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.622402011871191,7.618539821336197,52,6,-29.71935791664883,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.565545415792039,7.791320439164173,48.59,53.29,41.54,19.93,8.333333333333334,1,1,0,0,0,2,3,1,772.5,1020376.3370388,498783.8226697221,160980.4973557328,0,3200.882687846548 -5057,6290,11401,11400,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,6.993761987655035,6.951998767538266,52,-6,50.54850211811559,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,24.22097325104322,0,0,1,1,0,2.726596904186049,6.765530869981995,41.54,19.93,48.59,53.29,3.333333333333333,1,1,0,0,3,2,3,1,772.5,1020376.3370388,498783.8226697221,160980.4973557328,0,3200.882687846548 -5058,6291,11402,11403,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.531981706142814,8.037300701358507,0,3,0,86.42125663680372,0,-9,-9,2019,16,4,30,32,1,4,0,10.51186509367285,10.51186509367285,0,0,0,0,0,0,0,0,0,0,41.33,23.06,48.48,47.99,6.666666666666667,1,1,0,0,6,11,4,1,628.5,717243.6640117114,443210.5762398489,261484.7215512325,120652.5913719723,2308.169768127494 -5058,6291,11403,11402,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.154659099695845,7.83987518266825,0,3,0,61.49649449662308,0,-9,-9,2019,8,0,38,38,1,0,0,9.698457965761301,9.698457965761301,0,0,0,0,0,0,0,0,0,0,48.48,47.99,41.33,23.06,8.333333333333334,1,1,0,0,8,11,4,1,628.5,717243.6640117114,443210.5762398489,261484.7215512325,120652.5913719723,2308.169768127494 -5059,6292,11404,-9,-9,-9,1,0,41,2,2,0,2,2,-9,0,3,7.774597437588526,7.530136769390798,0,0,0,-983.6430269440796,-9,3,2,2019,11,0,40,0,1,0,0,5.990691703896285,5.990691703896285,0,0,0,0,14.5,1,1,0,0,0,54.02,55.17,-9,-9,5,1,1,0,1,6,9,3,0,560,35171.57059221232,-46749.19704176913,0,0,458.0809218174829 -5059,6293,11405,-9,11407,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-993.389449475229,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,2,0,294,-104448.4924968268,0,0,0,236.1266345494279 -5059,6293,11406,-9,11407,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.367247311276,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,2,0,294,-104448.4924968268,0,0,0,236.1266345494279 -5059,6293,11407,-9,11404,-9,1,0,23,2,2,0,2,2,-9,0,3,0,0,0,0,0,-979.8484189777474,0,2,-9,2019,12,0,0,30,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.87,46.41,-9,-9,8.333333333333334,1,1,0,0,7,9,2,0,294,-104448.4924968268,0,0,0,236.1266345494279 -5060,6294,11408,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1003.741648943722,0,-9,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.05,42.96,-9,-9,8.333333333333334,1,1,0,1,2,5,1,0,615,13970.77396936187,0,0,0,227.9864161001708 -5061,6295,11409,11410,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.280248873149326,7.284754360600262,0,20,5,105.0546850644726,0,2,2,2019,12,0,20,20,1,0,0,9.693450403664698,9.693450403664698,0,0,0,0,0,0,0,0,0,0,56.11,38.87,57.33,53.46,8.333333333333334,1,1,0,0,10,12,5,1,1449.5,818286.8847801911,711947.4344032141,231411.5346547711,0,3757.455979859039 -5061,6295,11410,11409,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.469501357137812,8.885958762710297,0,20,-5,22.69281111247873,0,2,2,2019,9,0,43,42,1,0,0,16.10075327446829,16.10075327446829,0,0,0,0,0,0,0,0,0,0,57.33,53.46,56.11,38.87,8.333333333333334,1,1,0,0,6,12,5,1,1449.5,818286.8847801911,711947.4344032141,231411.5346547711,0,3757.455979859039 -5061,6296,11411,-9,11409,11410,1,0,21,0,0,0,2,2,-9,0,4,8.428020579157748,8.260216137646843,0,0,0,-958.7967704181767,0,2,2,2019,6,0,45,36,1,0,1,8.769168346392135,8.769168346392135,0,0,0,0,0,0,0,0,0,0,56.47,51.02,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,912,223162.2502724653,-26365.00980370835,0,0,1683.537702124201 -5062,6297,11412,11413,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.323626576553879,8.313900899139769,0,4,-4,95.30053059156126,0,2,2,2019,7,0,55,55,1,0,0,7.758071614160222,7.758071614160222,0,0,0,0,0,0,0,0,.4521482915478801,0,54.79,55.86,45.97,54.57,0,1,1,0,0,5,4,5,1,521.5,-23167.94564617601,90177.68357239357,129988.9915102847,105517.534685384,2952.136902517839 -5062,6297,11413,11412,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.289388774346289,8.036170378400399,0,4,4,70.45751228180158,0,-9,-9,2019,10,1,39,38,1,1,0,11.26090608294131,11.26090608294131,0,0,0,0,0,0,0,0,3.005933251762331,0,45.97,54.57,54.79,55.86,6.666666666666667,1,1,0,0,2,4,5,1,521.5,-23167.94564617601,90177.68357239357,129988.9915102847,105517.534685384,2952.136902517839 -5063,6298,11414,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1040.528096357394,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,11.96440705288921,0,0,1,1,0,0,0,58.81,34.45,-9,-9,10,1,1,0,0,0,13,1,1,418,213856.3713099064,0,198897.3175329049,0,429.9416317972809 -5063,6299,11415,-9,-9,11414,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1056.092180553225,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.78,38.23,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,362,42538.6462881695,0,0,0,-334.2500445951395 -5064,6300,11416,11417,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.613941797539109,8.676291638049413,0,6,-1,107.7514208221805,0,3,2,2019,12,0,50,50,1,0,0,13.19170425872163,13.19170425872163,0,0,0,0,0,1,1,0,0,0,42.77,58.63,59.14,52.5,3.333333333333333,1,1,0,0,7,12,5,1,911.3333333333334,308653.8752636472,146266.0406835545,415831.8523400488,241679.5957048386,5045.877534338414 -5064,6300,11417,11416,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.835891885403342,9.11195281996349,0,6,1,.0322527166360876,0,3,2,2019,8,0,45,42,1,0,0,13.98967140018462,13.98967140018462,0,0,0,0,2,1,1,0,0,0,59.14,52.5,42.77,58.63,8.333333333333334,1,1,0,0,7,12,5,1,911.3333333333334,308653.8752636472,146266.0406835545,415831.8523400488,241679.5957048386,5045.877534338414 -5064,6300,11418,-9,11417,11416,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.294940941574,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,911.3333333333334,308653.8752636472,146266.0406835545,415831.8523400488,241679.5957048386,5045.877534338414 -5064,6301,11419,-9,11417,11416,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-1006.645558409691,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,33.72,60.21,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,642,-19691.52623699942,0,0,0,0 -5065,6302,11420,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.643422586106,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,2.121202363031898,0,0,1,1,0,0,0,64.40000000000001,15.2,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,173,-30420.75841258992,0,0,0,818.0058317108044 -5066,6303,11421,11422,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.575262480019189,7.301659444298753,48,2,56.62852766393056,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.172867915885386,53.81,48.39,50.65,60.47,8.333333333333334,1,1,0,0,7,7,3,1,610.5,1727598.997278035,370154.9179662167,1231659.45659403,0,2901.337297312626 -5066,6303,11422,11421,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.513971865700941,7.612893648037553,48,-2,-54.47955291671512,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.635232700232272,50.65,60.47,53.81,48.39,10,1,1,0,0,7,7,3,1,610.5,1727598.997278035,370154.9179662167,1231659.45659403,0,2901.337297312626 -5067,6304,11423,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-871.3345272780942,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,23.08,65.11,-9,-9,10,1,1,0,0,0,4,1,0,286,-42557.71539475108,0,0,0,1147.76660942501 -5068,6305,11424,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.283351392603691,8.036327974214046,0,0,0,-1040.346296614674,0,2,2,2019,15,5,15,15,1,5,0,30.90774799418049,30.90774799418049,0,0,0,0,0,1,1,0,3.322873396461881,0,36.2,64.19,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,883,508829.6911153773,353326.3044538989,152421.195304376,75687.86981886733,1014.049114030341 -5069,6306,11425,11426,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.518014352014999,9.476243186577559,0,2,0,11.46918682116629,0,-9,-9,2019,6,0,43,50,1,0,0,32.75122489748831,32.75122489748831,0,0,0,0,0,0,0,0,7.555343536152366,0,51.24,58.84,46.33,50.4,1.666666666666667,1,1,0,0,13,8,5,1,257,2166457.058724828,1400599.111107947,946111.8363741979,289380.3751720718,5809.859425254062 -5069,6306,11426,11425,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.841190227592893,7.671136452898792,0,25,0,21.66326455731116,0,2,1,2019,18,6,25,23,1,6,0,11.01001727480055,11.01001727480055,0,0,0,0,0,0,0,0,2.239673822676639,0,46.33,50.4,51.24,58.84,3.333333333333333,1,1,0,0,7,8,5,1,257,2166457.058724828,1400599.111107947,946111.8363741979,289380.3751720718,5809.859425254062 -5070,6307,11427,11428,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,54,-4,-145.529241640897,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,.4707530367292287,0,0,1,1,0,0,0,55.61,39.56,60.69,53.18,8.333333333333334,1,1,0,0,0,4,3,1,615,609522.5371765199,370285.8374465115,288257.6029578135,0,1370.981187812081 -5070,6307,11428,11427,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.824373792207353,7.594614497965414,54,4,-175.9121759835597,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.814605317630202,60.69,53.18,55.61,39.56,10,1,1,0,0,9,4,3,1,615,609522.5371765199,370285.8374465115,288257.6029578135,0,1370.981187812081 -5071,6308,11429,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,1.589659000011931,1.770559854506609,0,0,-920.4514897255776,0,3,2,2019,11,4,0,0,4,4,0,0,0,1,0,9.278769995458052,0,0,1,1,0,0,1.659974035206341,39.33,21.66,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,431,-203583.3091345091,-1470.760363034467,0,0,1386.404214713503 -5072,6309,11430,11431,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.163315255515895,8.278430569018855,4.752834951661096,9,1,150.8379860179754,0,3,2,2019,6,0,10,10,1,0,0,43.46582810937971,43.46582810937971,0,0,0,0,0,1,1,0,4.288754569082954,4.549779398397925,64.17,46.05,57.16,56.15,10,1,1,0,0,10,11,4,0,344,1451406.559276614,959605.4615685311,136009.7684131585,0,2951.096745644764 -5072,6309,11431,11430,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,6.617174713613813,6.499912518906351,0,9,-1,-34.93743644074063,0,3,3,2019,12,0,20,10,1,0,0,3.981062043752132,3.981062043752132,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.17,46.05,10,1,1,0,0,10,11,4,0,344,1451406.559276614,959605.4615685311,136009.7684131585,0,2951.096745644764 -5072,6310,11432,-9,11431,11430,1,1,41,0,0,0,3,3,-9,0,4,7.567218208724276,7.426458083199095,0,0,0,-912.8365285149212,0,3,3,2019,6,0,25,25,1,0,0,7.173532121681725,7.173532121681725,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,5,1,1,0,0,9,11,3,0,504,71788.96079733981,0,0,0,415.2964175798614 -5073,6311,11433,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,7.953702665951835,7.871200574555406,0,0,0,-918.6298154866961,0,1,-9,2019,31,12,34,38,1,12,0,6.573101460514411,6.573101460514411,0,0,0,0,0,1,1,0,0,0,23.16,42.54,-9,-9,1.666666666666667,1,1,0,1,1,11,3,0,994,318119.4819233571,0,45964.41704761367,48439.94340001782,1268.803714911861 -5074,6312,11434,11435,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.124289099075915,5.269783618633993,34,-1,105.964697375691,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.296154656393893,62.1,51.16,49.45,46.23,10,1,1,0,0,8,9,3,1,1145.5,1493267.578030601,929310.1716329118,731820.7922138723,0,2765.414610195341 -5074,6312,11435,11434,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.146926060670825,7.979850684623496,34,1,44.56938999315364,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.03885877402599,7.741645873128013,49.45,46.23,62.1,51.16,8.333333333333334,1,1,0,0,6,9,3,1,1145.5,1493267.578030601,929310.1716329118,731820.7922138723,0,2765.414610195341 -5075,6313,11436,11438,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.921737408181368,9.600339757353895,6.588826676951762,13,-1,-90.39635147404249,0,2,3,2019,12,0,37,37,1,0,0,44.55527375671257,44.55527375671257,0,0,0,0,0,0,0,0,0,6.877787537848423,43.63,57.36,54.79,55.86,8.333333333333334,2,3,0,0,13,4,5,1,484.6666666666667,987368.4322976833,505122.7019269372,482666.2102402067,207964.3041388389,5947.031546968227 -5075,6313,11437,-9,11438,11436,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-840.5148640250635,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,4,5,1,484.6666666666667,987368.4322976833,505122.7019269372,482666.2102402067,207964.3041388389,5947.031546968227 -5075,6313,11438,11436,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.70436495633753,8.902519266060111,0,13,1,-114.4517099902283,-9,2,1,2019,8,0,39,0,1,0,0,16.5148381061527,16.5148381061527,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.63,57.36,8.333333333333334,1,1,0,0,9,4,5,1,484.6666666666667,987368.4322976833,505122.7019269372,482666.2102402067,207964.3041388389,5947.031546968227 -5076,6314,11439,11440,-9,-9,1,1,56,0,0,0,1,1,-9,1,2,6.942787349173708,6.967139665783486,0,8,-19,-27.08381338053586,0,3,3,2019,13,5,48,0,1,5,0,2.336973803448802,2.336973803448802,0,0,0,0,71.5,1,1,0,0,0,33.59,51.17,50.84,10.67,8.333333333333334,1,1,0,0,2,2,2,1,1105,1847470.626390561,1220241.595897976,531293.4106860637,0,2219.835919146919 -5076,6314,11440,11439,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,8,19,-33.12866645469278,0,2,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,50.84,10.67,33.59,51.17,6.666666666666667,1,1,0,0,0,2,2,1,1105,1847470.626390561,1220241.595897976,531293.4106860637,0,2219.835919146919 -5077,6315,11441,11442,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.282301555917805,9.515573044150551,0,9,-8,-67.18749182096218,0,1,1,2019,10,1,52,45,1,1,0,17.8084685386593,17.8084685386593,0,0,0,0,0,0,0,0,2.153645016434949,0,53.78,48.41,35.94,54.03,8.333333333333334,1,1,0,0,9,9,5,1,1359.5,420416.7684703038,143398.8434814298,644097.9557844782,364672.4104299751,5244.589199297074 -5077,6315,11442,11441,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.619493403933697,8.553559563286861,0,9,8,54.83193315544403,0,3,-9,2019,22,11,32,32,1,11,0,22.18661636273524,22.18661636273524,0,0,0,0,2,0,0,0,1.319564355905311,0,35.94,54.03,53.78,48.41,8.333333333333334,1,1,0,0,9,9,5,1,1359.5,420416.7684703038,143398.8434814298,644097.9557844782,364672.4104299751,5244.589199297074 -5078,6316,11443,11444,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.033149609795954,8.007470105809123,0,34,2,-23.70687484996736,0,2,3,2019,9,0,42,40,1,0,0,8.705797405256842,8.705797405256842,0,0,0,0,0,0,0,0,1.843843015164413,0,55.02,54.61,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,703,500521.6825460143,139342.5121960433,102109.2188318843,0,2441.298903010225 -5078,6316,11444,11443,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.86485571857876,7.668621790237585,34,-2,-147.2492306283995,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.706936114263637,7.652236805750688,54.2,57.49,55.02,54.61,10,1,1,0,0,0,13,4,1,703,500521.6825460143,139342.5121960433,102109.2188318843,0,2441.298903010225 -5079,6317,11445,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,8.326766305130082,8.277594356558703,0,0,-969.5097697098323,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.066531723158471,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,869,670668.1761448479,333990.4204577641,258463.1934087505,0,2425.730269551585 -5079,6318,11446,-9,11445,-9,1,1,44,0,0,0,3,3,-9,0,4,7.987462206404831,8.457088074610818,0,0,0,-1007.954358019668,0,2,-9,2019,9,0,39,48,1,1,0,8.725990241800902,8.725990241800902,0,0,0,0,0,1,1,0,6.368147632138555,0,52,55,-9,-9,8,1,1,0,0,1,11,4,1,610,282719.5020193862,314339.5461853445,208691.5380118411,93989.86943620721,2435.630003766838 -5080,6319,11447,11448,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.819615835065234,7.829210178211229,6.384131944375483,3,0,-72.81340888017613,0,-9,-9,2019,7,0,32,18,1,0,0,9.033988675926375,9.033988675926375,0,0,0,0,2,1,1,0,2.513286950869659,6.353547440688312,39.39,64.22,55.72,32.44,8.333333333333334,1,1,0,0,8,1,3,1,844.5,376107.0121843134,273969.7035245547,182817.9921122531,0,2213.521877225506 -5080,6319,11448,11447,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,4.455711082841535,4.453699846868064,40,9,16.43828699519261,0,3,3,2019,11,0,0,84,4,0,0,0,0,0,0,0,0,0,1,1,0,4.562077563794472,4.521503013604256,55.72,32.44,39.39,64.22,6.666666666666667,1,1,0,0,8,1,3,1,844.5,376107.0121843134,273969.7035245547,182817.9921122531,0,2213.521877225506 -5081,6320,11449,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.017487558691665,5.970059575394073,0,0,-909.9767191524458,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.767203908799977,26.9,21.84,-9,-9,8.333333333333334,1,1,0,1,0,12,2,0,250,311345.6184337958,113512.4468750817,0,0,1537.819171060233 -5082,6321,11450,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.709462492759817,8.486797156851079,0,0,0,-1010.205167506721,0,3,3,2019,7,0,37,37,1,0,0,17.92710413269393,17.92710413269393,0,0,0,0,0,0,0,0,5.639774978166932,0,54.1,48.06,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,185,48603.91134462076,0,0,0,2201.922834947498 -5082,6322,11451,-9,-9,11450,1,1,22,0,0,0,1,1,1,0,3,6.558794507664508,6.756124432611395,0,0,0,-1010.57750793488,-9,3,2,2019,10,3,30,0,1,3,1,3.122763441300641,3.122763441300641,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,436,86170.8652346719,0,0,0,422.5179055556438 -5083,6323,11452,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-901.5628221659624,0,3,3,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.78,36.21,-9,-9,8.333333333333334,1,1,0,0,9,12,1,1,528,9649.090478861548,0,0,0,99.24800615982497 -5084,6324,11453,-9,11455,11456,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.736249073874,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1139.25,-37986.58280715667,-5626.272987026237,0,0,2657.718087788776 -5084,6324,11454,-9,11455,11456,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.371566765564,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1139.25,-37986.58280715667,-5626.272987026237,0,0,2657.718087788776 -5084,6324,11455,11456,-9,-9,1,0,34,0,2,0,3,3,-9,0,2,6.897863567459248,6.627675421589544,0,6,-1,47.61166490543402,0,3,3,2019,10,0,12,0,1,0,0,8.428887730231933,8.428887730231933,0,0,0,0,0,1,1,0,0,0,39.05,43.1,43.24,47.58,5,1,1,0,1,3,11,3,1,1139.25,-37986.58280715667,-5626.272987026237,0,0,2657.718087788776 -5084,6324,11456,11455,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.538196471399718,8.477440535613255,0,6,1,-34.9687058495601,0,-9,-9,2019,10,0,60,60,1,0,0,8.631094738485961,8.631094738485961,0,0,0,0,7,1,1,0,0,0,43.24,47.58,39.05,43.1,5,1,1,0,0,7,11,3,1,1139.25,-37986.58280715667,-5626.272987026237,0,0,2657.718087788776 -5085,6325,11457,11458,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.787629774897802,8.85382966660562,0,9,-10,91.27807288554932,0,2,2,2019,9,0,40,49,1,0,0,18.2531396729813,18.2531396729813,0,0,0,0,7,0,0,0,2.449018682820772,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,10,11,5,1,439,637947.2804673995,174056.6274942241,256068.0964351679,0,3473.931431463525 -5085,6325,11458,11457,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.925862017074091,8.104685686358508,9,10,-88.44979649508318,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.195180507071329,7.857546843742265,54.2,57.49,57.06,57.76,1.666666666666667,1,1,0,0,1,11,5,1,439,637947.2804673995,174056.6274942241,256068.0964351679,0,3473.931431463525 -5086,6326,11459,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,7.768091871045518,7.723344096458487,0,0,0,-1016.178725214712,0,-9,-9,2019,7,0,40,46,1,0,0,6.067022091479691,6.067022091479691,0,0,0,0,0,1,1,0,0,0,69.45,42.54,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,1974,68106.08179497703,0,0,0,1072.703252526939 -5087,6327,11460,-9,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,6.153069112596388,6.544228313118555,0,0,0,-1018.269206221816,0,-9,2,2019,8,0,20,21,1,0,0,3.388791124884131,3.388791124884131,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,10,2,0,1342,58923.64013110961,0,0,0,741.2301018952123 -5088,6328,11461,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-973.1559738255962,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,0,1,1,0,1,0,12,1,0,243,0,0,0,0,1321.771657602442 -5088,6329,11462,-9,11461,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1019.117592150064,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,0,12,1,0,282,-44730.17600845153,0,0,0,152.4162373963858 -5089,6330,11463,11464,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,7.225918632148048,7.265474435211836,29,11,-3.185075383011909,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.866994616152489,47,38,51,54,6.666666666666667,2,3,0,1,0,6,2,1,289,836947.8524161607,795134.322248426,37344.41365544319,20822.96805998002,193.7657599301051 -5089,6330,11464,11463,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,29,-11,26.17019988846068,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.468446176815005,0,51,54,47,38,8,2,3,0,0,0,6,2,1,289,836947.8524161607,795134.322248426,37344.41365544319,20822.96805998002,193.7657599301051 -5089,6331,11465,-9,11464,11463,1,1,29,0,0,0,1,1,-9,0,3,7.699150848063059,7.372083928664114,0,0,0,-977.8057102440484,0,3,3,2019,5,0,37,40,1,0,1,6.547609249938635,6.547609249938635,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,6,3,1,6064,-18043.80109739361,0,0,0,1628.901164898226 -5090,6332,11466,11467,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.630886140796734,6.569569760646968,35,-5,-66.05327482269372,0,3,2,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,3.507460510670939,6.599481278703359,59.6,46.99,57.33,53.46,8.333333333333334,1,1,0,0,12,9,2,1,1360.5,471923.7936831634,184035.3334955131,355722.8193726819,0,1546.718967300622 -5090,6332,11467,11466,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,35,5,-55.51617998337402,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.156631688660828,0,57.33,53.46,59.6,46.99,8.333333333333334,1,1,0,0,0,9,2,1,1360.5,471923.7936831634,184035.3334955131,355722.8193726819,0,1546.718967300622 -5091,6333,11468,11469,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,39,-11,13.21845206737675,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,3.397900228528059,0,60.13,49.27,57.63,56.14,8.333333333333334,1,1,0,0,10,9,2,1,1526.5,360101.562900224,117348.1533692156,171437.5089250812,0,1664.595560893598 -5091,6333,11469,11468,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,5.491227637184132,5.846840735891398,8,11,-48.12630951565418,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.934929599295897,5.551045978639427,57.63,56.14,60.13,49.27,10,1,1,0,0,0,9,2,1,1526.5,360101.562900224,117348.1533692156,171437.5089250812,0,1664.595560893598 -5092,6334,11470,11471,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,7.12240264912297,7.320880579551519,6.580685276356495,55,-7,15.93826252573017,0,3,3,2019,7,1,8,48,1,1,0,26.33411767587237,26.33411767587237,1,0,0,.3760331015959615,0,1,1,0,8.382404653038725,6.807631364864254,56.19,40.29,59.81,35.89,10,1,1,0,0,10,4,3,1,255.5,734076.2189668684,188799.7335099429,327401.5635395318,0,5337.531727101192 -5092,6334,11471,11470,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.98365921821483,7.077980629415406,55,7,-172.2598235156334,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.004296596074742,7.327769876620684,59.81,35.89,56.19,40.29,8.333333333333334,1,1,0,0,10,4,3,1,255.5,734076.2189668684,188799.7335099429,327401.5635395318,0,5337.531727101192 -5093,6335,11472,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.435011440753374,7.343682069043925,0,0,0,-995.5418745740495,0,3,3,2019,9,1,15,15,1,1,0,11.61171981148049,11.61171981148049,0,0,0,0,0,1,1,0,.5935228698721128,0,61.58,43.34,-9,-9,10,4,5,0,0,8,11,3,1,416,832062.2445545638,238166.9206483168,439566.2279845212,0,974.3256363448163 -5094,6336,11473,11474,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.493597312959226,7.471536016642554,0,3,-6,62.93152304750416,0,-9,-9,2019,21,9,32,30,1,9,0,8.197760957440606,8.197760957440606,0,0,0,0,0,0,0,0,0,0,35.73,21.8,42.43,52.58,1.666666666666667,2,3,0,0,9,7,4,1,802.5,483528.4190201434,246768.8818287313,618082.0883023127,239337.6680162207,2302.45760954582 -5094,6336,11474,11473,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.385702267764923,8.408276992386748,0,3,6,221.5607304614016,0,3,3,2019,13,1,40,40,1,1,0,12.74581591411418,12.74581591411418,0,0,0,0,0,0,0,0,.9874901313454892,0,42.43,52.58,35.73,21.8,5,2,3,0,0,10,7,4,1,802.5,483528.4190201434,246768.8818287313,618082.0883023127,239337.6680162207,2302.45760954582 -5095,6337,11475,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.55005476761001,9.68236741312923,0,0,0,-917.8795756321739,0,1,2,2019,17,6,40,47,1,6,0,42.26216964969549,42.26216964969549,0,0,0,0,0,1,1,0,0,0,44.35,59.36,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,513,631766.4048294981,274492.6521859185,334483.9799865104,126401.8249636508,4940.541009461539 -5096,6338,11476,11477,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.178886556686088,8.389821450309507,0,17,0,33.4200713433775,0,1,3,2019,9,0,55,55,1,0,0,9.825970429956371,9.825970429956371,0,0,0,0,0,1,1,0,5.439512862706276,0,51.14,60.45,57.16,56.15,1.666666666666667,1,1,0,0,8,7,4,1,1251.333333333333,473958.0251768191,119001.8779311149,421576.2565589205,49916.51848427472,3776.839357548385 -5096,6338,11477,11476,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.318718016155097,8.263682050648432,0,17,0,-92.14179963201536,0,-9,-9,2019,12,0,31,31,1,0,0,13.9624901383833,13.9624901383833,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.14,60.45,5,1,1,0,0,6,7,4,1,1251.333333333333,473958.0251768191,119001.8779311149,421576.2565589205,49916.51848427472,3776.839357548385 -5096,6338,11478,-9,11477,11476,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1073.10843760276,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,1251.333333333333,473958.0251768191,119001.8779311149,421576.2565589205,49916.51848427472,3776.839357548385 -5096,6339,11479,-9,11477,11476,1,0,23,0,1,0,1,1,-9,0,3,8.10712672721081,8.466420301859742,5.157402653886873,0,0,-1067.212450999534,0,2,2,2019,11,0,45,21,1,0,1,9.629727329970013,9.629727329970013,0,0,0,0,0,1,1,0,5.590796628995377,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,69,-120531.0053499422,0,0,0,1590.765859257635 -5097,6340,11480,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.945186830130741,6.145547631385645,0,0,-811.8213397687905,0,3,3,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,2,1,1,0,3.292872544829464,6.045402308406413,60.29,52.11,-9,-9,10,1,1,0,0,12,5,2,1,485,236633.2486891837,51414.93240339014,138807.2630620546,0,759.2929099081823 -5098,6341,11481,-9,11482,-9,1,1,51,0,0,0,1,1,-9,0,5,8.599348808428537,8.530300244204859,0,0,0,-1025.644113047828,0,2,-9,2019,6,0,40,37,1,0,0,12.80715638591971,12.80715638591971,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,589,529241.8951447847,389439.4307119792,143449.6423318933,0,2275.403802780953 -5098,6342,11482,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.587091208842261,6.422368325163931,0,0,-999.6103863127054,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.597075704461999,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1977,204814.5571496666,144405.5508299682,127956.0531397142,0,952.5425594242454 -5099,6343,11483,-9,11484,11485,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.3631260979616,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,570.3333333333334,119278.0258528784,0,184164.2191342295,145029.072000044,2420.681377684236 -5099,6343,11484,11485,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,6.986238069710924,6.854000392323755,0,15,-6,-46.81358092741885,0,2,2,2019,9,0,16,16,1,0,0,7.239946648345993,7.239946648345993,0,0,0,0,110,1,1,0,0,0,49.44,54.26,51,56,1.666666666666667,1,1,0,0,7,2,3,0,570.3333333333334,119278.0258528784,0,184164.2191342295,145029.072000044,2420.681377684236 -5099,6343,11485,11484,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,7.706992104740198,7.55477906138295,0,8,6,76.55531892831785,0,-9,-9,2019,9,0,37,40,1,1,0,6.836845777370581,6.836845777370581,0,0,0,0,74.5,1,1,0,0,0,51,56,49.44,54.26,8,1,1,0,0,3,2,3,0,570.3333333333334,119278.0258528784,0,184164.2191342295,145029.072000044,2420.681377684236 -5100,6344,11486,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.037659338693873,8.604667664958157,0,0,-1031.010472476137,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.951679853585953,8.179332473285482,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,2032,737019.3464390584,421087.2031706333,199236.8103139623,0,2630.498090873332 -5101,6345,11487,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.38781341673227,7.739606678172619,5.987124340882977,0,0,-1003.849155172591,0,3,3,2019,10,0,36,24,1,0,0,4.716989179068592,4.716989179068592,0,0,0,0,7,1,1,0,6.017154361047393,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,336.6666666666667,-29964.37856545844,14205.78671623627,103704.4785411237,34434.5454797018,1910.439124755558 -5101,6345,11488,-9,11487,-9,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1053.38129260474,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,12,3,0,336.6666666666667,-29964.37856545844,14205.78671623627,103704.4785411237,34434.5454797018,1910.439124755558 -5101,6345,11489,-9,11487,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.4432276740874,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,336.6666666666667,-29964.37856545844,14205.78671623627,103704.4785411237,34434.5454797018,1910.439124755558 -5102,6346,11490,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,7.46310418147039,7.210710714095085,5.110598867453203,0,0,-1061.001991389019,0,2,2,2019,11,2,28,20,1,2,0,7.155993120574692,7.155993120574692,0,0,0,0,0,1,1,0,7.368492289031876,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,247,774096.180056806,0,253404.720670575,0,1733.485419445661 -5103,6347,11491,11492,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.771263100288389,7.663526657650982,46,-2,-46.79833998042083,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.782736055200322,47.36,44.23,53.14,51.28,8.333333333333334,1,1,0,0,0,11,4,1,496.5,1399516.028659242,1012117.785651034,166001.6910676609,0,3353.309898176735 -5103,6347,11492,11491,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.510643104003105,8.125746945338706,46,2,9.924748675450818,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.423105253447506,53.14,51.28,47.36,44.23,8.333333333333334,1,1,0,0,1,11,4,1,496.5,1399516.028659242,1012117.785651034,166001.6910676609,0,3353.309898176735 -5104,6348,11493,11494,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.4482055968279,7.341566681889975,0,11,-12,70.99245847409604,0,-9,-9,2019,8,0,50,50,1,0,0,4.290242524423189,4.290242524423189,0,0,0,0,0,1,1,0,.8323322559278293,0,41.06,28.62,52,47,8.333333333333334,3,4,0,0,9,8,3,0,475.5,1730467.037617452,790707.1667286039,369220.8705828825,0,1185.238245795321 -5104,6348,11494,11493,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.561366042763621,7.341455994719712,15,12,108.1442675446944,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.457041710193251,52,47,41.06,28.62,7,3,4,0,0,0,8,3,0,475.5,1730467.037617452,790707.1667286039,369220.8705828825,0,1185.238245795321 -5105,6349,11495,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-894.037946264383,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.928792622211108,0,0,1,1,0,0,0,39.42,22.95,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,258,-171522.8643814182,0,0,0,1843.878390305399 -5106,6350,11496,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.118227394551505,8.228675317044489,0,0,-1110.432770748411,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.457816154277619,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,1277,1247318.335375199,711567.9440032644,350874.2879942539,0,1917.814122526338 -5106,6351,11497,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.966831961979244,8.418270224103498,0,0,-876.7742482689589,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.884459727317173,49.61,54.24,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,485,25986.45394458057,-95995.13324612861,298849.2714589324,198418.2855083033,1744.653737504728 -5107,6352,11498,11499,-9,-9,1,1,66,1,2,0,1,1,-9,0,3,0,4.411635567879974,4.687988562158705,7,2,-193.4077700510065,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.88671284588992,4.519927258808035,34.76,59.69,48.69,41.09,6.666666666666667,1,1,0,0,6,12,2,1,360.5,701007.1528864605,378278.1170903448,273331.1084313161,0,1823.183803824371 -5107,6352,11499,11498,-9,-9,1,0,64,1,2,0,2,2,-9,0,3,0,6.266971307527887,6.095572754048439,7,-2,-46.17152218924582,0,3,2,2019,14,2,0,11,4,2,0,0,0,0,0,0,0,0,1,1,0,5.981794156045388,6.106416950065854,48.69,41.09,34.76,59.69,5,1,1,0,0,8,12,2,1,360.5,701007.1528864605,378278.1170903448,273331.1084313161,0,1823.183803824371 -5107,6353,11500,-9,11501,11503,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.781170558331,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,402.25,1548230.453472773,1002204.360796133,352899.3779262744,0,5373.376733453117 -5107,6353,11501,11503,11499,11498,1,0,35,1,2,0,1,1,-9,0,3,8.704410545533397,8.292847498066486,0,7,-5,.6722159038161546,0,2,2,2019,11,0,32,34,1,0,0,17.50263283212595,17.50263283212595,0,0,0,0,0,1,1,0,0,0,40.4,46.19,51,56,8.333333333333334,1,1,0,0,8,12,5,1,402.25,1548230.453472773,1002204.360796133,352899.3779262744,0,5373.376733453117 -5107,6353,11502,-9,11501,11503,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.273596654265,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,402.25,1548230.453472773,1002204.360796133,352899.3779262744,0,5373.376733453117 -5107,6353,11503,11501,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.782078389919121,9.068507068628485,0,7,5,17.30022241219108,0,-9,-9,2019,9,0,38,38,1,1,0,23.45269825799779,23.45269825799779,0,0,0,0,0,1,1,0,4.045484446053583,0,51,56,40.4,46.19,8,4,1,0,0,1,12,5,1,402.25,1548230.453472773,1002204.360796133,352899.3779262744,0,5373.376733453117 -5108,6354,11504,11505,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.128376445240177,8.229761239308077,0,23,-4,111.9134401648671,0,2,2,2019,6,0,30,32,1,0,0,15.13614274369645,15.13614274369645,0,0,0,0,0,1,1,0,.1754207943015488,0,60.12,54.8,54.38,41.24,10,2,3,0,0,9,11,4,1,1229.333333333333,668321.8585896932,473353.5250528986,142135.9905383451,59165.72561332753,3251.062350088414 -5108,6354,11505,11504,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.426276717632589,8.330004126432154,0,23,4,-.6451613077127922,0,-9,-9,2019,12,0,57,65,1,0,0,9.235792870821417,9.235792870821417,0,0,0,0,0,1,1,0,2.606857668626895,0,54.38,41.24,60.12,54.8,6.666666666666667,2,3,0,0,10,11,4,1,1229.333333333333,668321.8585896932,473353.5250528986,142135.9905383451,59165.72561332753,3251.062350088414 -5108,6354,11506,-9,11504,11505,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.3169557989605,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,11,4,1,1229.333333333333,668321.8585896932,473353.5250528986,142135.9905383451,59165.72561332753,3251.062350088414 -5108,6355,11507,-9,11504,11505,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-934.9442469642702,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,11,1,1,417,0,0,0,0,0 -5109,6356,11508,-9,11509,11511,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-984.6782737479878,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,3,0,1069.25,273659.9456841925,85571.53857434879,232971.7520266445,113835.06886853,2527.881520803877 -5109,6356,11509,11511,-9,-9,1,0,37,0,2,0,1,1,1,1,1,7.124819376975788,7.588357987416146,0,14,-10,41.88389207818604,-9,2,2,2019,25,8,18,0,1,8,0,6.612843247709391,6.612843247709391,0,0,0,0,5.48,1,1,0,0,0,31.93,19.35,53.07,39.41,0,1,1,0,1,1,10,3,0,1069.25,273659.9456841925,85571.53857434879,232971.7520266445,113835.06886853,2527.881520803877 -5109,6356,11510,-9,11509,11511,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-985.810098921018,-9,1,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,0,10,3,0,1069.25,273659.9456841925,85571.53857434879,232971.7520266445,113835.06886853,2527.881520803877 -5109,6356,11511,11509,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,7.741984606397947,7.600477595680656,0,14,10,122.1507628008367,0,-9,2,2019,15,4,18,0,1,4,0,16.2000847505817,16.2000847505817,0,0,0,0,0,1,1,0,0,0,53.07,39.41,31.93,19.35,5,1,1,0,1,2,10,3,0,1069.25,273659.9456841925,85571.53857434879,232971.7520266445,113835.06886853,2527.881520803877 -5110,6357,11512,11513,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,0,0,0,25,-1,-68.73425323191758,0,2,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,58.08,60.76,47.53,6.666666666666667,1,1,0,0,0,8,5,1,590,1600883.230930808,391545.6114543625,901000.9503394155,0,6988.603530679117 -5110,6357,11513,11512,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.829956207555849,9.728310022325649,0,24,1,-25.25755891040224,0,3,2,2019,6,0,37,55,1,0,0,50.15081414510371,50.15081414510371,0,0,0,0,0,1,1,0,0,0,60.76,47.53,38.54,58.08,10,1,1,0,0,10,8,5,1,590,1600883.230930808,391545.6114543625,901000.9503394155,0,6988.603530679117 -5110,6358,11514,-9,11512,11513,1,1,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1027.636960526267,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,8,1,1,2395,0,0,0,0,11.96930139400465 -5111,6359,11515,11516,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,6.924345280770678,7.14337262024429,53,1,49.55752352603047,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.316909401265284,0,0,1,1,0,3.152689219875747,7.041298577109223,62.7,41.29,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,1791,709678.5229751328,176552.3386494914,455928.9304583938,0,1978.508840175475 -5111,6359,11516,11515,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.32010838467237,5.373141873582723,53,-1,-110.587974679539,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.910838319382723,5.446940546032248,57.16,56.15,62.7,41.29,8.333333333333334,1,1,0,0,0,9,2,1,1791,709678.5229751328,176552.3386494914,455928.9304583938,0,1978.508840175475 -5112,6360,11517,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.042916272569707,7.95555195853069,0,0,0,-1041.151646444281,0,-9,-9,2019,5,0,30,30,1,0,0,14.48545753875654,14.48545753875654,0,0,0,0,0,0,0,0,5.72062788812842,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,72,-114016.9547135297,0,0,0,1784.390130403001 -5113,6361,11518,11520,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,6.469738039689047,6.02280339603303,0,4,-11,-15.7996281724947,0,-9,-9,2019,18,6,10,20,1,6,0,7.978979810333723,7.978979810333723,0,0,0,0,0,1,1,0,0,0,46.63,59.72,47.71,38.99,8.333333333333334,1,1,0,0,6,6,4,1,515.3333333333334,174068.6844063619,15057.5512184157,197098.6724155187,41794.00876537245,2901.903518043924 -5113,6361,11519,-9,11518,11520,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.244820448069,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,515.3333333333334,174068.6844063619,15057.5512184157,197098.6724155187,41794.00876537245,2901.903518043924 -5113,6361,11520,11518,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.610047252513693,8.996631448216561,0,4,11,-100.0928279139371,0,1,2,2019,11,0,46,50,1,0,0,19.63725474556933,19.63725474556933,0,0,0,0,0,1,1,0,0,0,47.71,38.99,46.63,59.72,5,1,1,0,0,10,6,4,1,515.3333333333334,174068.6844063619,15057.5512184157,197098.6724155187,41794.00876537245,2901.903518043924 -5114,6362,11521,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,3.631339118074464,3.634254630485412,0,0,-1040.302778486106,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.202898205542212,3.693547900057516,51.51,18.48,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,3054,188687.3057848887,0,88179.92574376114,0,2954.681132410246 -5115,6363,11522,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.697267389765898,8.948370486176461,0,0,0,-1147.416003857987,0,3,3,2019,11,1,40,40,1,1,0,15.72462732814109,15.72462732814109,0,0,0,0,0,0,0,0,0,0,45.2,41.12,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,152,1109789.60762027,886323.1503811064,197069.6776309319,55122.26533277029,2156.686227678329 -5116,6364,11523,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.502247825520405,6.672896940352228,0,0,0,-955.351222017807,0,2,2,2019,11,0,5,0,1,0,0,18.36522962530088,18.36522962530088,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,609,152851.3524486199,-4156.924464368713,277739.4941955776,82937.13595203958,331.9162363730871 -5117,6365,11524,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.185563256116133,9.212482687695941,0,0,0,-1022.153428365633,0,2,1,2019,15,3,42,42,1,3,0,29.81280061634199,29.81280061634199,0,0,0,0,0,0,0,0,8.234222611296671,0,43.67,61.06,-9,-9,5,4,2,0,0,9,8,5,1,333,1068939.738831925,625729.6202647382,280669.2137717899,0,4174.168471824959 -5118,6366,11525,11526,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.578279037655019,8.628483279713835,0,7,-3,77.3522395335187,0,-9,-9,2019,9,1,37,37,1,1,0,18.42625262011841,18.42625262011841,0,0,0,0,2,0,0,0,0,0,52.97,40.56,41.05,43.64,6.666666666666667,1,1,0,0,8,11,5,1,412,68419.60009404688,0,175342.983611152,166853.1727776023,3634.85012801279 -5118,6366,11526,11525,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,8.518970893771902,8.53014505954037,0,7,3,4.103788583441052,0,2,2,2019,13,1,37,37,1,1,0,15.19170504251032,15.19170504251032,0,0,0,0,2,0,0,0,0,0,41.05,43.64,52.97,40.56,3.333333333333333,1,1,0,0,12,11,5,1,412,68419.60009404688,0,175342.983611152,166853.1727776023,3634.85012801279 -5119,6367,11527,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.073705013476953,5.954487181424253,0,0,-1114.257517308894,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.577775356595102,6.01651868215539,58.33,47.36,-9,-9,10,1,1,0,0,0,2,2,1,294,-59292.59874905723,60202.50588688352,0,0,1255.184292184113 -5120,6368,11528,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1182.368564708759,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.15,18.09,-9,-9,0,1,1,0,1,0,4,1,0,357,-91516.88525662321,0,0,0,1189.891626483366 -5121,6369,11529,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,8.844198715775073,8.615379870372799,0,0,0,-1070.892273598682,0,3,2,2019,14,2,65,0,1,2,0,9.534873949662252,9.534873949662252,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,5,1,1,0,1,8,2,5,1,727,27448.47891096674,66794.00758611063,0,0,2836.817871546359 -5122,6370,11530,-9,11531,11533,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.286573260346,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1641.25,298171.7653350705,183495.2096033214,199979.3763244643,98792.54030605777,3861.642416487345 -5122,6370,11531,11533,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.689172186303706,8.543158359088467,0,21,-7,-1.88965615044568,0,3,2,2019,7,0,24,24,1,0,0,24.8926088488572,24.8926088488572,0,0,0,0,2,1,1,0,0,0,55.94,23.15,54.77,39.97,8.333333333333334,1,1,0,0,9,2,5,1,1641.25,298171.7653350705,183495.2096033214,199979.3763244643,98792.54030605777,3861.642416487345 -5122,6370,11532,-9,11531,11533,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-940.9367949305991,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1641.25,298171.7653350705,183495.2096033214,199979.3763244643,98792.54030605777,3861.642416487345 -5122,6370,11533,11531,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.065214687345453,8.725737573892511,0,21,7,34.81431575673298,0,2,2,2019,11,2,42,43,1,2,0,18.79480035375294,18.79480035375294,0,0,0,0,0,1,1,0,3.021920674459432,0,54.77,39.97,55.94,23.15,5,1,1,0,0,9,2,5,1,1641.25,298171.7653350705,183495.2096033214,199979.3763244643,98792.54030605777,3861.642416487345 -5123,6371,11534,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.903411423998913,5.654916667393393,0,0,-836.7805623790116,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.719174796514327,5.690447109010377,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,317,48218.54656866204,228148.5810999591,0,0,454.2416418772147 -5124,6372,11535,11536,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,17,-21,-75.39182066418701,0,3,-9,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,120,1,1,0,5.127603846577635,0,39.15,41.42,57,43,5,1,1,0,0,0,10,2,1,1221.5,210432.0898295186,108596.413645174,0,0,1821.977687247556 -5124,6372,11536,11535,-9,-9,1,1,97,0,0,0,3,3,-9,0,3,0,7.045747719553925,6.850081678309496,17,21,58.98223813552919,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.719036553076621,74.29713274292637,17.54108790929785,0,1,1,0,0,6.915721199211367,57,43,39.15,41.42,8,1,1,0,0,0,10,2,1,1221.5,210432.0898295186,108596.413645174,0,0,1821.977687247556 -5125,6373,11537,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.508639879280854,7.044223782674383,0,0,0,-1053.230294928033,0,-9,-9,2019,11,0,16,18,1,0,0,11.55809756315324,11.55809756315324,0,0,0,0,0,1,1,0,0,0,48.12,50.58,-9,-9,6.666666666666667,1,1,0,0,8,8,2,0,575.3333333333334,186365.193390347,101601.045862151,0,0,929.5389570871574 -5125,6373,11538,-9,11537,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.5325845285532,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,2,0,575.3333333333334,186365.193390347,101601.045862151,0,0,929.5389570871574 -5125,6373,11539,-9,11537,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.3772281238664,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,0,575.3333333333334,186365.193390347,101601.045862151,0,0,929.5389570871574 -5126,6374,11540,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.729798768818423,8.985781676975174,7.617280979092318,0,0,-941.4209567588211,0,3,3,2019,7,0,40,0,1,0,0,15.8640898500289,15.8640898500289,0,0,0,0,0,0,0,0,6.173640917254529,7.772023331319306,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,13,1,5,1,278,1115534.844567021,685158.4415412279,238043.8126221866,59791.25691946624,3480.244273873377 -5127,6375,11541,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.162908009459652,7.657792651711289,0,0,-905.8130866891744,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.011948937062085,7.893295990120756,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,243,1968311.254798206,158687.3647944681,636459.3159118263,0,3509.361709894301 -5128,6376,11542,-9,11545,11543,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.8008299371759,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,360.5,369998.4065903479,163697.0594310932,150062.8035282625,14421.82053940092,2774.933457523479 -5128,6376,11543,11545,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,7.393635909482094,7.495628152222594,0,6,0,-100.6958850465825,0,2,2,2019,10,1,30,20,1,1,0,7.043568549142257,7.043568549142257,0,0,0,0,0,1,1,0,0,0,46.08,57.2,54.94,53.18,6.666666666666667,1,1,0,0,10,2,3,1,360.5,369998.4065903479,163697.0594310932,150062.8035282625,14421.82053940092,2774.933457523479 -5128,6376,11544,-9,11545,11543,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-976.6562062434872,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,360.5,369998.4065903479,163697.0594310932,150062.8035282625,14421.82053940092,2774.933457523479 -5128,6376,11545,11543,-9,-9,1,0,40,1,3,0,2,2,-9,0,3,7.989746084301062,7.961880650380542,5.293696121502906,6,0,-17.96516807085397,0,-9,-9,2019,11,0,25,20,1,0,0,12.56619579078295,12.56619579078295,0,0,0,0,0,1,1,0,6.917950128460268,0,54.94,53.18,46.08,57.2,8.333333333333334,1,1,0,0,10,2,3,1,360.5,369998.4065903479,163697.0594310932,150062.8035282625,14421.82053940092,2774.933457523479 -5129,6377,11546,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.912237435727812,7.739765403761781,0,0,0,-1038.382840260193,0,3,3,2019,10,0,33,33,1,0,0,8.476701016700426,8.476701016700426,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,199,26151.91016838566,3311.24787101911,0,0,1697.421098495563 -5130,6378,11547,11548,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,0,0,7,10,0,0,3,3,2019,15,5,0,37,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.96,34.12,50,55,3.333333333333333,1,1,1,1,5,12,1,0,741.5,48266.51602954625,82779.18222673703,0,0,574.227079580734 -5130,6378,11548,11547,-9,-9,1,0,46,0,0,0,3,3,-9,1,4,0,0,0,7,-10,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,58.96,34.12,8,2,3,0,1,3,12,1,0,741.5,48266.51602954625,82779.18222673703,0,0,574.227079580734 -5131,6379,11549,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,4.862720040194514,7.112093353188774,6.662425642439694,0,0,-1052.358848267828,0,2,2,2019,8,0,16,16,1,0,0,1.096561321810283,1.096561321810283,0,0,0,0,0,0,0,0,0,6.595531284338087,52.62,54.33,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,934,112575.529953991,0,0,0,-100.419487526724 -5132,6380,11550,11551,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.374685705845613,8.265967598993869,0,1,-1,47.92915113235203,-9,-9,-9,2019,12,0,37,0,1,2,0,14.48049285591649,14.48049285591649,0,0,0,0,0,0,0,0,4.609748469960982,0,46,58,50.34,56.4,7,1,1,0,0,1,9,5,0,655,132220.993628467,-1698.171424337199,381755.1497533302,286326.814653853,3069.346536210574 -5132,6380,11551,11550,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.274404689722886,7.901688190415364,0,1,1,46.61960704185793,-9,1,-9,2019,12,2,48,0,1,2,0,8.623068422273811,8.623068422273811,0,0,0,0,0,0,0,0,0,0,50.34,56.4,46,58,8.333333333333334,1,1,0,0,12,9,5,0,655,132220.993628467,-1698.171424337199,381755.1497533302,286326.814653853,3069.346536210574 -5133,6381,11552,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.948744858800147,8.078164282012049,0,0,0,-995.8559945316066,0,-9,-9,2019,10,0,30,30,1,0,0,14.27220495850911,14.27220495850911,0,0,0,0,0,0,0,0,7.432732743963132,0,43.92,59.79,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,188,398856.2891999133,246575.6225665819,0,0,1429.179350941194 -5134,6382,11553,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1065.398787999046,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.644985639793677,0,70.23,24.31,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,209,463722.5008759061,59279.1351089518,428303.8398026332,0,1238.789552612084 -5135,6383,11554,11555,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,0,0,39,1,0,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.201099666273611,0,57.48,31.86,52.4,52.91,6.666666666666667,1,1,0,0,4,10,1,1,1219,334257.9713827918,92397.08243481265,193262.576495476,0,1214.745035286652 -5135,6383,11555,11554,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,10,-1,0,0,-9,-9,2019,11,0,0,35,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,57.48,31.86,6.666666666666667,1,1,0,0,10,10,1,1,1219,334257.9713827918,92397.08243481265,193262.576495476,0,1214.745035286652 -5136,6384,11556,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.239800348090872,8.031491372614214,0,0,0,-1009.538465800435,0,-9,3,2019,11,4,40,40,1,4,0,7.688758466847835,7.688758466847835,0,0,0,0,0,1,1,0,0,0,32.99,60.39,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,433,376584.3937096816,243908.8530463839,142133.540288819,44463.57196185132,901.1372806635025 -5137,6385,11557,11558,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,9,-4,-46.83746975326014,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34.53,49.29,57.33,53.46,5,1,1,0,0,9,2,3,1,873.5,1476689.799526047,1039269.530468347,474735.3621309537,0,1829.670268599616 -5137,6385,11558,11557,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.761861305990146,7.969863827335199,9,4,-22.07988912242735,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.092632881535166,7.949562770329944,57.33,53.46,34.53,49.29,8.333333333333334,1,1,0,0,6,2,3,1,873.5,1476689.799526047,1039269.530468347,474735.3621309537,0,1829.670268599616 -5138,6386,11559,-9,11561,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.9475508756099,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,767.6666666666666,0,0,0,0,805.4812475273683 -5138,6386,11560,-9,11561,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.9383590925,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,767.6666666666666,0,0,0,0,805.4812475273683 -5138,6386,11561,-9,-9,-9,1,0,30,0,2,0,3,3,-9,1,2,0,0,0,0,0,-955.6140735054182,0,2,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,29.31,46.16,-9,-9,5,1,1,0,0,0,2,1,0,767.6666666666666,0,0,0,0,805.4812475273683 -5139,6387,11562,-9,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,7.748884797204862,7.980851868386147,0,0,0,-998.2616092527543,0,-9,-9,2019,10,0,40,40,1,0,0,6.204369487927861,6.204369487927861,0,0,0,0,0,1,1,0,0,0,47.36,44.23,-9,-9,3.333333333333333,1,1,0,1,5,6,3,1,208,121351.7279574183,-42762.12355526048,92041.06134313424,15162.55393194565,855.3266723486414 -5139,6388,11563,-9,11565,11564,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.1540822448737,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,923,269852.435249276,143145.5046007467,162250.9191992348,107586.3251667183,3997.305602328033 -5139,6388,11564,11565,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.243945291758555,8.257389238634484,0,9,3,-42.52380541205096,0,-9,-9,2019,11,0,63,65,1,0,0,6.6562591106336,6.6562591106336,0,0,0,0,0,1,1,0,0,0,42.95,61.24,46.31,51.53,6.666666666666667,1,1,0,0,8,6,5,1,923,269852.435249276,143145.5046007467,162250.9191992348,107586.3251667183,3997.305602328033 -5139,6388,11565,11564,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,8.650018699164265,8.463813451358867,0,9,-3,36.79695809711387,0,1,2,2019,8,0,63,68,1,0,0,8.380647965466023,8.380647965466023,0,0,0,0,0,1,1,0,6.578367676456577,0,46.31,51.53,42.95,61.24,6.666666666666667,1,1,0,0,10,6,5,1,923,269852.435249276,143145.5046007467,162250.9191992348,107586.3251667183,3997.305602328033 -5140,6389,11566,11567,-9,-9,1,0,60,1,1,0,3,3,-9,0,3,0,0,0,9,-1,1.685070756180375,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.5,47.18,7,2,3,0,1,0,8,3,1,1272.5,258880.4757659468,126136.5611699657,277476.5457356645,174077.4829197364,1467.880357512119 -5140,6389,11567,11566,-9,-9,1,1,61,1,1,0,3,3,-9,0,2,8.459427407759728,8.363010955779048,0,44,1,54.07617627508859,0,3,3,2019,10,2,60,60,1,2,0,8.070694017618422,8.070694017618422,0,0,0,0,0,1,1,0,0,0,51.5,47.18,49,48,6.666666666666667,2,3,0,1,11,8,3,1,1272.5,258880.4757659468,126136.5611699657,277476.5457356645,174077.4829197364,1467.880357512119 -5140,6390,11568,11570,11566,11567,1,1,36,1,1,0,2,2,-9,0,4,8.152985149360594,8.228416656555133,0,9,4,-66.47149018869507,0,3,3,2019,10,0,65,60,1,1,0,8.322470662633597,8.322470662633597,0,0,0,0,0,1,1,0,0,0,50,57,59.53,56.44,7,2,3,0,0,11,8,4,1,678.6666666666666,5482.414397052475,-31434.42843209457,0,0,2990.126583347128 -5140,6390,11569,-9,11570,11568,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.347463243434,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,678.6666666666666,5482.414397052475,-31434.42843209457,0,0,2990.126583347128 -5140,6390,11570,11568,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.941556724678269,8.086309088138369,0,9,-4,-67.18577920013649,0,-9,-9,2019,6,0,38,38,1,0,0,9.155367198832865,9.155367198832865,0,0,0,0,0,1,1,0,2.515368837240418,0,59.53,56.44,50,57,8.333333333333334,2,3,0,0,9,8,4,1,678.6666666666666,5482.414397052475,-31434.42843209457,0,0,2990.126583347128 -5141,6391,11571,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.537382424756602,8.438141453934895,0,0,0,-850.3235655885707,0,2,2,2019,7,0,44,0,1,0,0,10.89280678033638,10.89280678033638,0,0,0,0,0,1,1,0,0,0,43.15,52.32,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,498,-18176.76816494977,61601.92132855098,0,0,1802.925690389176 -5142,6392,11572,11573,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.902067416634478,7.617244541904389,0,6,-1,-46.6765096707453,0,3,2,2019,12,0,40,48,1,2,0,7.145525912748057,7.145525912748057,0,0,0,0,0,0,0,0,0,0,48,49,53,54,1.666666666666667,1,1,0,0,8,2,4,1,906.5,101406.5134794115,105965.4920673959,81703.36895494566,60693.61954146066,3248.783399963033 -5142,6392,11573,11572,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.36071503065493,8.251908789831495,0,6,1,23.07639970281181,0,-9,-9,2019,9,0,40,37,1,1,0,11.5301677342647,11.5301677342647,0,0,0,0,0,0,0,0,5.955772204727655,0,53,54,48,49,8,1,1,0,0,1,2,4,1,906.5,101406.5134794115,105965.4920673959,81703.36895494566,60693.61954146066,3248.783399963033 -5143,6393,11574,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.862008578732155,9.00816619614455,0,0,0,-991.8106445374027,0,-9,-9,2019,11,0,33,43,1,0,0,23.60570458224192,23.60570458224192,0,0,0,0,0,0,0,0,0,0,40.46,63.68,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,565,64503.38249513293,-24417.34803256641,0,0,2052.931883682018 -5144,6394,11575,11576,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.980444881438001,8.1476375514785,0,4,-16,-2.734003231151817,0,2,2,2019,9,0,45,48,1,1,0,7.529946751507635,7.529946751507635,0,0,0,0,0,1,1,0,0,0,52,55,45.66,45.13,8,1,1,0,0,1,4,3,1,500.5,1141373.9078409,573288.3562972429,349657.2807253088,0,1691.414207072537 -5144,6394,11576,11575,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,4,16,84.56557396790357,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.251979269384204,0,45.66,45.13,52,55,6.666666666666667,1,1,0,0,3,4,3,1,500.5,1141373.9078409,573288.3562972429,349657.2807253088,0,1691.414207072537 -5145,6395,11577,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1016.235341591191,0,2,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,39.18,41.54,-9,-9,10,1,1,0,0,2,7,1,0,447,40799.10405965558,0,103413.4443452456,41892.4480811291,1378.941411936219 -5146,6396,11578,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1018.465197086057,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,53.31,-9,-9,10,1,1,0,0,0,6,1,0,549,354744.3644006833,0,245074.5073901979,0,1243.563016247947 -5147,6397,11579,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.833692338538215,6.667621273678423,0,0,-1014.261251505822,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.975701854313647,6.79229800206793,30.38,42.73,-9,-9,5,1,1,0,1,7,8,2,1,957,222006.8668711296,170041.7488135081,328855.0117234672,244971.213907062,1539.941962507646 -5148,6398,11580,-9,11582,11581,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-944.9654677530498,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,56.01,-9,-9,10,2,3,0,0,1,6,5,1,918.6666666666666,237801.5708285771,61937.85027548022,119851.2160802566,0,4013.143876253268 -5148,6398,11581,11582,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.471265628106615,7.255131110874231,0,27,1,51.7552049389411,0,2,2,2019,6,0,50,65,1,0,0,4.265564467651053,4.265564467651053,0,0,0,0,27,1,1,0,4.548970471940951,0,61.28,46.17,50.34,45.67,8.333333333333334,2,3,0,0,9,6,5,1,918.6666666666666,237801.5708285771,61937.85027548022,119851.2160802566,0,4013.143876253268 -5148,6398,11582,11581,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.047506219285788,9.041462842416253,0,27,-1,-158.4880984175616,0,2,2,2019,27,10,24,0,1,10,0,36.65698682695552,36.65698682695552,0,0,0,0,14.5,1,1,0,0,0,50.34,45.67,61.28,46.17,5,2,3,0,1,1,6,5,1,918.6666666666666,237801.5708285771,61937.85027548022,119851.2160802566,0,4013.143876253268 -5148,6399,11583,-9,11582,11581,1,0,24,0,0,0,2,2,-9,0,3,7.480455305164791,7.343033471254942,0,0,0,-1071.668526026078,0,2,2,2019,10,0,36,32,1,0,1,5.123100533482364,5.123100533482364,0,0,0,0,7,1,1,0,0,0,58.32,50.22,-9,-9,3.333333333333333,2,3,0,0,5,6,3,1,1117,0,0,0,0,463.4841495561797 -5149,6400,11584,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.173477167716541,5.143977862278931,0,0,-872.1628436081688,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.171615993779112,4.790678223939922,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,1378,208402.8667347537,0,216798.5949043316,0,10.34821910912018 -5150,6401,11585,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,6.304516234410805,6.190913587552501,0,0,-1048.539288757414,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.220169584626307,6.38496925522632,40.97,32.79,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,241,313685.9283299459,100075.7198634177,138775.5161659053,0,1262.006618051516 -5151,6402,11586,11587,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,8.200862346030743,8.090823685962333,0,28,3,40.313914361107,0,-9,-9,2019,10,0,40,45,1,0,0,9.220671419414966,9.220671419414966,0,0,0,0,27,1,1,0,0,0,58.78,30.79,33.5,18.89,8.333333333333334,1,1,0,1,8,5,4,1,158,680773.4879923596,507124.893775856,189931.0325251993,0,2834.901187045015 -5151,6402,11587,11586,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,7.782009171816485,7.844027699495073,0,28,-3,-59.70553452706471,0,-9,-9,2019,17,6,31,38,1,6,0,10.86382760586535,10.86382760586535,0,0,0,0,0,1,1,0,0,0,33.5,18.89,58.78,30.79,0,1,1,0,1,9,5,4,1,158,680773.4879923596,507124.893775856,189931.0325251993,0,2834.901187045015 -5152,6403,11588,-9,11589,-9,1,1,17,0,0,1,2,0,0,1,5,0,0,0,0,0,-981.5890593058826,-9,3,-9,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,5,3,4,0,0,0,8,1,0,1019,37869.92207123317,0,0,0,2475.567771517455 -5152,6403,11589,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-920.622116310329,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.2,20.19,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1019,37869.92207123317,0,0,0,2475.567771517455 -5152,6404,11590,-9,11589,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1136.308368787891,1,3,2,2019,6,0,0,24,2,0,1,0,0,0,0,0,0,0,1,1,0,.6576573760604254,0,63.38,53.47,-9,-9,8.333333333333334,3,4,0,0,3,8,1,0,278,247535.8558334854,0,0,0,268.1547438361929 -5152,6405,11591,-9,11589,-9,1,1,23,0,0,0,2,2,-9,0,3,7.893693906362768,8.209719281862544,0,0,0,-1062.051829072995,0,2,2,2019,28,11,40,45,1,11,1,9.207298114515917,9.207298114515917,0,0,0,0,0,1,1,0,0,0,25.42,62.61,-9,-9,5,3,4,0,0,4,8,4,0,1373,123328.3220384341,0,0,0,1412.184397372574 -5153,6406,11592,11595,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.529166016503767,7.705240235534461,0,18,0,-84.31802496144064,0,2,1,2019,16,5,24,22,1,5,0,9.279804348086758,9.279804348086758,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.6,51.61,8.333333333333334,1,1,0,0,9,7,4,1,1871.5,13552.79074408421,21574.8486928754,0,0,2601.906730997863 -5153,6406,11593,-9,11592,11595,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.7618108622395,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1871.5,13552.79074408421,21574.8486928754,0,0,2601.906730997863 -5153,6406,11594,-9,11592,11595,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.222947517832,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,1871.5,13552.79074408421,21574.8486928754,0,0,2601.906730997863 -5153,6406,11595,11592,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.373259166198954,8.33024330235733,0,17,0,-88.8623460965229,0,2,2,2019,12,0,44,48,1,0,0,11.20563180821313,11.20563180821313,0,0,0,0,0,1,1,0,2.340540976595103,0,43.6,51.61,58.15,52.91,8.333333333333334,1,1,0,0,9,7,4,1,1871.5,13552.79074408421,21574.8486928754,0,0,2601.906730997863 -5154,6407,11596,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.107908368900342,8.105141538362011,0,0,0,-985.652905751121,0,3,2,2019,14,0,35,47,1,3,0,11.32842648046954,11.32842648046954,0,0,0,0,0,0,0,0,5.188384211114021,0,43,39,-9,-9,6,2,3,0,0,11,8,4,1,405,219807.7335804671,13097.08200923966,0,0,1658.151297261422 -5155,6408,11597,11598,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.092907750569966,8.088038683801987,0,8,7,111.6810131314438,0,-9,-9,2019,3,1,45,45,1,1,0,10.16646932808759,10.16646932808759,0,0,0,0,0,1,1,0,0,0,62.1,51.16,40.64,38.28,10,1,1,0,0,4,4,3,0,1012.5,73324.95311317971,20037.9983188887,33845.30779284443,0,2346.632581983449 -5155,6408,11598,11597,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,0,0,0,8,-7,-71.77069638984121,0,-9,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,38.28,62.1,51.16,1.666666666666667,1,1,1,0,1,4,3,0,1012.5,73324.95311317971,20037.9983188887,33845.30779284443,0,2346.632581983449 -5155,6408,11599,-9,11598,11597,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-976.1413604990042,-9,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.340068768846576,0,31.59,56.07,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,1012.5,73324.95311317971,20037.9983188887,33845.30779284443,0,2346.632581983449 -5155,6408,11600,-9,11598,11597,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.4101927426083,-9,2,2,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,1012.5,73324.95311317971,20037.9983188887,33845.30779284443,0,2346.632581983449 -5156,6409,11601,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-897.7350757128777,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,39.54,-9,-9,8.333333333333334,1,1,0,1,10,8,1,0,889,65905.05182328567,0,227211.2476481084,0,2076.431936060315 -5157,6410,11602,-9,-9,-9,1,1,74,0,1,0,2,2,-9,0,4,0,3.881228242479215,3.586003889309967,0,0,-1063.506595147201,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.698553612443108,4.138027286982007,32.48,59.49,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,1305,-95389.08009191099,-51654.64616316283,0,0,2310.189161642605 -5157,6411,11603,-9,11604,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.6635330165825,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,992.5,236179.4085549319,182030.0480304165,223703.9502585993,84231.69421831705,2353.005061734541 -5157,6411,11604,-9,-9,11602,1,0,41,0,1,0,1,1,-9,0,5,8.260153110242872,8.225156411418487,0,0,0,-984.1738784049465,0,-9,2,2019,7,0,38,40,1,0,0,14.15273944575933,14.15273944575933,0,0,0,0,0,1,1,0,7.335781638243637,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,992.5,236179.4085549319,182030.0480304165,223703.9502585993,84231.69421831705,2353.005061734541 -5158,6412,11605,-9,11607,11608,1,0,17,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1035.505401563732,-9,2,2,2019,18,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.53,63.81,-9,-9,6.666666666666667,2,3,0,0,0,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6412,11606,-9,11607,11608,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-977.7781847337045,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6412,11607,11608,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,23,-25,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,0,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6412,11608,11607,-9,-9,1,1,66,0,3,0,2,2,-9,0,4,0,0,0,23,25,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,4,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6412,11609,-9,11607,11608,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.5104302658241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6412,11610,-9,11607,11608,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.9255438083101,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,7,1,0,2183.833333333333,308816.2836959143,82714.68578432825,226632.8075306058,0,2309.401514628954 -5158,6413,11611,-9,11607,11608,1,1,19,0,3,0,2,2,1,0,4,0,5.400589715867435,5.247907529507473,0,0,-1070.890963765806,-9,2,2,2019,16,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,4.412053357979554,0,43.46,57.03,-9,-9,8.333333333333334,2,3,0,0,0,7,2,0,158,246241.0791031953,61293.30849883181,0,0,275.9336630352383 -5159,6414,11612,-9,11613,11615,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.3416442809987,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,643,288401.7422173411,38352.3270458328,335918.8425997864,182944.0761052168,4983.527078608828 -5159,6414,11613,11615,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.510349445081395,8.80515645714841,0,11,-2,110.5799107187965,0,3,3,2019,8,0,37,37,1,0,0,16.48198118555963,16.48198118555963,0,0,0,0,2,1,1,0,0,0,59.31,49.81,49.52,55.68,6.666666666666667,1,1,0,0,10,13,5,1,643,288401.7422173411,38352.3270458328,335918.8425997864,182944.0761052168,4983.527078608828 -5159,6414,11614,-9,11613,11615,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.9771061346788,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,643,288401.7422173411,38352.3270458328,335918.8425997864,182944.0761052168,4983.527078608828 -5159,6414,11615,11613,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.598422770759624,8.823527239689399,0,11,2,-34.81722914654044,0,2,1,2019,18,6,37,48,1,6,0,22.82513355485361,22.82513355485361,0,0,0,0,0,1,1,0,0,0,49.52,55.68,59.31,49.81,8.333333333333334,1,1,0,0,9,13,5,1,643,288401.7422173411,38352.3270458328,335918.8425997864,182944.0761052168,4983.527078608828 -5160,6415,11616,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.184529311828824,8.236000333616548,0,0,0,-920.1736045400776,-9,2,2,2019,8,1,48,0,1,1,0,8.269776610600974,8.269776610600974,0,0,0,0,0,0,0,0,.7780706942187106,0,42.95,61.24,-9,-9,5,3,4,0,0,9,10,4,0,540,-42736.23601620954,25484.26884789751,0,0,1411.24844494339 -5161,6416,11617,11618,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.62345017403001,9.052775946953728,7.727271954934161,37,4,-97.30522795474323,0,2,2,2019,7,0,49,55,1,0,0,15.28112971524161,15.28112971524161,0,0,0,0,0,1,1,0,4.233996494087109,7.886392683976096,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,6,5,5,1,421,4499447.89019183,3717995.694293063,704397.6318579048,0,6539.276327273485 -5161,6416,11618,11617,-9,11619,1,0,56,0,0,0,1,1,-9,0,4,9.188687436176796,8.674376927896027,0,37,-4,-32.92009603973453,0,1,1,2019,7,0,50,55,1,0,0,23.24222207068072,23.24222207068072,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,1.666666666666667,1,1,0,0,9,5,5,1,421,4499447.89019183,3717995.694293063,704397.6318579048,0,6539.276327273485 -5161,6417,11619,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,7.781939464524111,8.111752937123599,0,0,-1106.67569891146,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.112910480556724,8.118329771107215,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,548,1018543.596999833,327218.2013014416,287913.0317006899,0,1975.122338251605 -5162,6418,11620,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.154212728711017,5.096198476277697,0,0,-949.6471962966137,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.294143074169748,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,10,7,2,0,919,-42466.59672753418,71171.95391324924,0,0,1272.249397962686 -5163,6419,11621,-9,11622,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.0310337688499,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,1,797,744771.7143614782,674293.8060847248,421325.8566045269,248789.0842605783,1716.174790075047 -5163,6419,11622,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,8.069530719006821,7.717258952457136,0,0,0,-1011.416274350166,0,2,3,2019,17,6,22,22,1,6,0,12.70221430752269,12.70221430752269,0,0,0,0,0,1,1,0,0,0,39.36,44.67,-9,-9,1.666666666666667,3,4,0,0,12,8,3,1,797,744771.7143614782,674293.8060847248,421325.8566045269,248789.0842605783,1716.174790075047 -5163,6420,11623,-9,11622,-9,1,0,20,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1073.037107770836,0,1,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,1.523817848872486,0,38,44,-9,-9,0,3,4,0,0,0,8,1,1,1598,-16328.32714967779,0,0,0,-197.1185989652431 -5163,6421,11624,-9,11622,-9,1,0,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-913.7972475756272,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,26.25,43.32,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,407,-186282.3556668603,0,0,0,0 -5164,6422,11625,11626,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.279035888835946,8.062255836138544,0,1,-13,56.69715400395941,-9,-9,-9,2019,6,0,37,0,1,0,0,9.832446928683174,9.832446928683174,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.82,54.1,8.333333333333334,1,1,0,0,6,1,5,0,863.5,1091590.98098791,935960.1889917594,236207.842694586,0,3456.847662129555 -5164,6422,11626,11625,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.554030616068225,8.774800588613022,0,1,13,79.41165732622494,-9,-9,-9,2019,13,3,37,0,1,3,0,17.01002395079928,17.01002395079928,0,0,0,0,0,0,0,0,5.262201998863663,0,49.82,54.1,57.16,56.15,6.666666666666667,1,1,0,0,4,1,5,0,863.5,1091590.98098791,935960.1889917594,236207.842694586,0,3456.847662129555 -5165,6423,11627,11628,-9,-9,1,0,53,1,0,0,2,2,-9,0,4,0,0,0,10,2,21.86273735567985,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.16,56.15,34.26,58.61,6.666666666666667,1,1,0,0,11,9,5,1,589.3333333333334,350527.4151784506,204813.0335275865,0,0,4481.575134010309 -5165,6423,11628,11627,-9,-9,1,1,51,1,0,0,2,2,-9,0,3,8.948442516150505,9.074172969212555,0,10,-2,73.74601316823845,0,2,3,2019,15,3,57,57,1,3,0,18.17917452649825,18.17917452649825,0,0,0,0,0,1,1,0,0,0,34.26,58.61,57.16,56.15,3.333333333333333,1,1,0,0,13,9,5,1,589.3333333333334,350527.4151784506,204813.0335275865,0,0,4481.575134010309 -5165,6423,11629,-9,-9,11628,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-959.0441057490373,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,9,5,1,589.3333333333334,350527.4151784506,204813.0335275865,0,0,4481.575134010309 -5166,6424,11630,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1011.129780287548,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,16.33455452980747,0,0,1,1,0,0,0,53.05,18.38,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1112,-198045.7673611206,0,0,0,1135.12075211156 -5167,6425,11631,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.093358629719566,8.745348364270477,0,0,-1072.046918704297,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.498464774046518,8.261922811417675,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,354,756545.6849180604,474376.2757299627,169586.5533205064,0,2551.151737015751 -5168,6426,11632,11633,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.246750430447738,8.813535441249577,0,7,4,-53.76112856590212,0,-9,-9,2019,10,0,42,40,1,0,0,26.11632343860024,26.11632343860024,0,0,0,0,0,0,0,0,5.413540695215739,0,54.37,54.8,46.42,52.88,8.333333333333334,1,1,0,0,5,2,5,1,649,769023.9127959659,370450.2630341044,318927.4275902545,169865.3921670506,4414.248106806461 -5168,6426,11633,11632,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.400633894768724,8.37626905606608,0,29,-4,-34.24770092175297,0,2,2,2019,12,2,45,42,1,2,0,8.688742053895119,8.688742053895119,0,0,0,0,0,0,0,0,4.464780695256313,0,46.42,52.88,54.37,54.8,8.333333333333334,1,1,0,0,8,2,5,1,649,769023.9127959659,370450.2630341044,318927.4275902545,169865.3921670506,4414.248106806461 -5168,6427,11634,-9,11633,11632,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1021.706811062319,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.445429492934927,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,784,-81984.97366778496,0,0,0,112.5786614418755 -5169,6428,11635,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,8.769630747291268,8.510461117410289,0,0,0,-984.095400799915,-9,2,2,2019,10,0,45,0,1,0,0,19.05719476693404,19.05719476693404,0,0,0,0,0,1,1,0,2.205171356594381,0,39.61,57.54,-9,-9,5,1,1,0,0,1,8,5,0,3062,89371.87867394948,-9058.571836198236,0,0,2502.658811234776 -5170,6429,11636,11638,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.614771996294238,8.3623093924288,0,13,2,-109.2394097919248,0,2,2,2019,6,0,42,42,1,0,0,14.93689812964267,14.93689812964267,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,6.666666666666667,1,1,0,0,9,6,5,1,826,483733.4011228092,208088.0134423737,142655.8296912164,93123.6607308711,4373.084456947056 -5170,6429,11637,-9,11638,11636,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.8179487520542,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,826,483733.4011228092,208088.0134423737,142655.8296912164,93123.6607308711,4373.084456947056 -5170,6429,11638,11636,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,8.098858045413674,8.677394480946516,0,20,-2,-31.56017022631281,0,2,3,2019,7,0,39,-9,1,0,0,13.78778693593356,13.78778693593356,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,11,6,5,1,826,483733.4011228092,208088.0134423737,142655.8296912164,93123.6607308711,4373.084456947056 -5171,6430,11639,11640,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.072052596213437,8.041701303029287,2.936449700699985,37,-3,-130.6626832333355,0,3,2,2019,8,0,40,43,1,0,0,11.93573316288087,11.93573316288087,1,0,0,0,0,1,1,0,0,3.26618438775608,54.2,57.49,54.1,59.11,10,1,1,0,0,12,7,5,1,1076,5011309.737770064,474500.8624555978,563163.6035063799,0,7425.341126809791 -5171,6430,11640,11639,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.126291290298612,9.239405131680115,6.766383934510474,37,3,87.54695544063311,0,2,2,2019,7,0,40,40,1,0,0,30.90150175543675,30.90150175543675,0,0,0,0,0,1,1,0,2.569059518758353,7.283685506055679,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,1076,5011309.737770064,474500.8624555978,563163.6035063799,0,7425.341126809791 -5172,6431,11641,11642,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.876933472429551,9.017134101355667,58,-7,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.289187255404029,8.97046501857303,54.1,49.39,42.84,25.21,8.333333333333334,1,1,0,0,0,6,5,1,346.5,0,0,0,0,11044.39108436584 -5172,6431,11642,11641,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,8.856258423331104,8.927594734152681,58,7,0,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,9.203126274249678,42.84,25.21,54.1,49.39,6.666666666666667,1,1,0,0,0,6,5,1,346.5,0,0,0,0,11044.39108436584 -5173,6432,11643,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.305181063269053,7.958939327639884,7.289307907029522,0,0,-1007.687031322533,0,3,1,2019,5,0,18,22,1,0,0,11.93692631097367,11.93692631097367,0,0,0,0,2,1,1,0,6.314502873311306,6.970155750388765,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,374,19057.97197843104,0,0,0,1987.419849391697 -5174,6433,11644,11645,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.107480711285946,8.011854695726157,0,1,-6,-88.06548381461134,-9,-9,-9,2019,12,0,44,0,1,0,0,8.571680916269807,8.571680916269807,0,0,0,0,0,0,0,0,0,0,40.89,53.59,54.73,30.14,5,1,1,0,0,6,9,4,1,652,99480.14107722368,42640.84939454852,0,0,2659.633250973077 -5174,6433,11645,11644,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.231702825076076,7.763558276859732,0,1,6,-11.70613656691118,-9,-9,-9,2019,13,3,36,0,1,3,0,7.42350383407959,7.42350383407959,0,0,0,0,0,0,0,0,0,0,54.73,30.14,40.89,53.59,8.333333333333334,1,1,0,0,4,9,4,1,652,99480.14107722368,42640.84939454852,0,0,2659.633250973077 -5175,6434,11646,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.003613369566903,7.7129893556775,0,0,0,-1036.915515270382,0,-9,-9,2019,24,9,31,31,1,9,0,9.110667403119022,9.110667403119022,0,0,0,0,0,1,1,0,0,0,21.71,57.89,-9,-9,1.666666666666667,4,2,0,1,11,2,3,0,1226,83715.79211315268,7508.140582208077,37634.12196845564,61145.48008263377,1014.681874288087 -5176,6435,11647,11648,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.624674281883568,7.239884079129716,0,6,4,-8.719159086372077,0,-9,-9,2019,9,0,22,23,1,0,0,8.916975352734248,8.916975352734248,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,7,10,4,1,2522,33471.27232612261,-69266.46768577411,174612.7134266045,91960.44529239926,2388.985748738041 -5176,6435,11648,11647,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.168742591280523,8.105552236734843,0,6,-4,-12.92676064560007,0,3,-9,2019,7,0,44,44,1,0,0,9.988648754594907,9.988648754594907,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,7,10,4,1,2522,33471.27232612261,-69266.46768577411,174612.7134266045,91960.44529239926,2388.985748738041 -5177,6436,11649,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.041594893378109,5.033457786163405,0,0,-996.8688362318796,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,2.716122120739699,0,23.23527767035691,0,1,1,0,1.285584323081038,5.274121223799005,63.41,18.44,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,917,279708.9369922456,-5950.247684744325,212922.6361632955,0,1107.302707307511 -5178,6437,11650,11651,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.967860339782304,8.385029748783781,9,2,-127.9318924551842,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.463978673187436,8.307626594291728,59.46,46.99,45.22,40.64,8.333333333333334,1,1,0,0,5,7,3,1,601,987333.6777924016,517773.9586422035,269577.9445748378,0,5107.947522868924 -5178,6437,11651,11650,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,9,-2,-109.3316670174403,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,6.106484230217566,0,0,1,1,0,7.326606823548106,0,45.22,40.64,59.46,46.99,8.333333333333334,1,1,0,0,0,7,3,1,601,987333.6777924016,517773.9586422035,269577.9445748378,0,5107.947522868924 -5179,6438,11652,11653,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,4.883284391596288,4.779062472040641,0,10,-2,-25.88032310112916,0,2,1,2019,8,0,60,-9,1,0,0,.2886903646105477,.2886903646105477,0,0,0,0,0,1,1,0,0,0,56.9,49.4,34.37,43.22,6.666666666666667,1,1,0,1,11,9,3,1,330.5,520890.9214758214,164646.440209661,339452.4159325009,0,2281.135488537088 -5179,6438,11653,11652,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.37762491453747,7.514838794364993,10,2,-42.29362403932144,0,2,2,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,6.796375153722126,7.55671824718259,34.37,43.22,56.9,49.4,3.333333333333333,1,1,0,0,8,9,3,1,330.5,520890.9214758214,164646.440209661,339452.4159325009,0,2281.135488537088 -5180,6439,11654,11655,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.31886073520718,8.253331761324437,0,6,2,-105.7749649686917,0,-9,-9,2019,11,0,60,55,1,0,0,8.004369360405974,8.004369360405974,0,0,0,0,0,0,0,0,4.740004182768478,0,58.32,50.22,37.1,60.05,8.333333333333334,1,1,0,0,7,2,4,1,490,78895.75126679611,43212.77397436755,0,0,2941.530470165419 -5180,6439,11655,11654,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.508966364980874,7.525626620886386,0,6,-2,-23.23313128163083,0,-9,-9,2019,11,3,36,37,1,3,0,5.790908302326231,5.790908302326231,0,0,0,0,0,0,0,0,1.637856712755374,0,37.1,60.05,58.32,50.22,8.333333333333334,1,1,0,0,9,2,4,1,490,78895.75126679611,43212.77397436755,0,0,2941.530470165419 -5181,6440,11656,11657,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.919296072349649,7.724829138468924,0,1,-2,-44.28614141174072,-9,-9,-9,2019,12,0,37,0,1,2,0,7.714160021218479,7.714160021218479,0,0,0,0,0,0,0,0,1.780845480122041,0,47,57,51.14,60.45,7,1,1,0,0,1,4,4,1,806,-43545.06124444203,-15163.97788120949,0,0,2032.258167359552 -5181,6440,11657,11656,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,7.827187637272045,7.853516865953,0,1,2,33.14281688614354,0,-9,2,2019,8,0,43,39,1,0,0,7.404245246050671,7.404245246050671,0,0,0,0,0,0,0,0,0,0,51.14,60.45,47,57,1.666666666666667,4,2,0,0,5,4,4,1,806,-43545.06124444203,-15163.97788120949,0,0,2032.258167359552 -5182,6441,11658,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.914595384645635,7.454065512340697,0,0,-983.9979415030596,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.821048113584531,53.08,29.67,-9,-9,5,1,1,0,0,0,13,3,0,1008,628033.3654138414,60429.40526154587,214250.2485215741,0,2743.470152606179 -5183,6442,11659,11660,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.113502134533098,8.22268966818856,0,7,3,-148.0664151598036,0,-9,-9,2019,9,0,37,37,1,0,0,12.16641372118862,12.16641372118862,0,0,0,0,7,0,0,0,1.720396681280147,0,57.79,35.56,62.39,56.71,8.333333333333334,1,1,0,0,8,2,4,1,965.5,226223.4578869745,98150.78862516768,146326.8886475195,68834.07795125923,2347.839782412982 -5183,6442,11660,11659,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.804455294559667,7.886337028035351,0,36,-3,-202.98416333143,0,2,2,2019,5,0,44,44,1,0,0,8.738412547890821,8.738412547890821,0,0,0,0,0,0,0,0,3.537327450034109,0,62.39,56.71,57.79,35.56,10,1,1,0,0,8,2,4,1,965.5,226223.4578869745,98150.78862516768,146326.8886475195,68834.07795125923,2347.839782412982 -5183,6443,11661,-9,11659,11660,1,1,27,0,0,0,2,2,-9,0,3,7.945893990659269,7.549311558727809,0,0,0,-1071.034463500722,0,2,2,2019,10,2,45,60,1,2,1,7.661890249375145,7.661890249375145,0,0,0,0,0,0,0,0,3.957202986825232,0,56.53,42.78,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,139,-59832.19528884361,10071.96689598953,0,0,951.2909122490755 -5184,6444,11662,11663,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,8.090078840890467,8.113704273143503,37,3,-26.27408842908779,0,2,-9,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,0,8.141276375759574,56.43,20.62,53,52,3.333333333333333,1,1,0,0,1,9,3,1,557.5,1019367.788895422,787200.0219282312,199503.305216467,0,3658.610917680953 -5184,6444,11663,11662,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,0,6.514434702749544,6.840440145432948,3,-3,21.84974933193469,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.04986022097787,6.209136073297528,53,52,56.43,20.62,8,1,1,0,0,0,9,3,1,557.5,1019367.788895422,787200.0219282312,199503.305216467,0,3658.610917680953 -5184,6445,11664,-9,11663,11662,1,1,27,0,0,0,2,2,-9,0,4,7.857374764761557,7.683043411521167,0,0,0,-877.1696899273176,-9,2,3,2019,10,0,40,0,1,1,1,8.696095513031068,8.696095513031068,0,0,0,0,0,1,1,0,6.161345275901773,0,50,57,-9,-9,7,1,1,0,0,1,9,3,1,721,170169.0278489019,28158.32518697541,0,0,1452.531964406044 -5185,6446,11665,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.245101557619995,8.447496943130757,6.44460086570216,0,0,-955.9110873848788,0,3,3,2019,6,0,35,35,1,0,0,13.54838821224708,13.54838821224708,0,0,0,0,0,1,1,0,0,6.567851893110942,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,751,-9067.818262800021,26071.62959588131,116104.1728844563,61989.55925892502,2111.787598794358 -5185,6447,11666,-9,11665,-9,1,1,22,0,0,0,2,2,1,1,2,0,0,0,0,0,-1059.920827393981,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.57,15.79,-9,-9,5,1,1,0,0,2,13,1,1,1252,2143.551212599671,0,0,0,681.21721278518 -5186,6448,11667,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.140261295594853,6.890336642619967,0,0,-1055.27021480323,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.770869904281981,6.96187324560877,56.01,43.5,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,256,455308.4379982617,138177.2656720195,125564.4987537018,0,1626.026781078311 -5187,6449,11668,11669,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.403010813760661,6.808509889359668,8,-1,150.8285231576854,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.8815449791884873,6.248706218573466,53,44,64.3,19.18,8,4,1,0,0,0,2,2,1,535,436557.6019324044,269679.3763185078,202387.3400106201,0,1106.848600499184 -5187,6449,11669,11668,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,6.100590324308021,5.782884841852854,8,1,-21.49688896936198,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.162781531891606,6.102520995057799,64.3,19.18,53,44,6.666666666666667,1,1,0,0,0,2,2,1,535,436557.6019324044,269679.3763185078,202387.3400106201,0,1106.848600499184 -5188,6450,11670,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.186839944557759,7.77943766084302,0,0,0,-1098.802298193638,-9,2,2,2019,7,0,37,0,1,0,0,10.56036653989891,10.56036653989891,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,6.666666666666667,1,1,0,0,6,10,4,0,712,-9969.163811218797,-44459.52239959951,0,0,1811.456662183808 -5189,6451,11671,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,5,0,6.284767368428663,5.799066968233539,0,0,-952.6773141954021,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.95436288928803,0,0,1,1,0,2.208231791656125,5.760003493022823,54.87,51.92,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,363,109345.8493503259,-77150.01717950896,169734.5716948778,0,1305.74815447688 -5190,6452,11672,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.668923334882072,8.613291163354511,0,0,0,-973.7803231405902,-9,1,1,2019,31,10,60,0,1,10,0,14.3588266226559,14.3588266226559,0,0,0,0,0,1,1,0,1.784353739198932,0,16.61,49.34,-9,-9,0,1,1,0,1,5,7,5,0,2392,157697.5727356526,108776.0583360738,0,0,1607.434447411435 -5191,6453,11673,-9,11674,11676,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-848.1025537780358,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,449.75,1442770.330385066,932946.5030752586,371400.9658012275,0,4361.090152716859 -5191,6453,11674,11676,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.981944543809543,8.26018044845515,0,7,1,29.92409312625735,0,1,2,2019,6,0,32,35,1,0,0,8.979405001448541,8.979405001448541,0,0,0,0,0,0,0,0,2.365321488633151,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,449.75,1442770.330385066,932946.5030752586,371400.9658012275,0,4361.090152716859 -5191,6453,11675,-9,11674,11676,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1043.695997890823,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,449.75,1442770.330385066,932946.5030752586,371400.9658012275,0,4361.090152716859 -5191,6453,11676,11674,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.032630129377813,9.280759058630256,0,7,-1,-80.56920009792948,0,2,2,2019,7,0,45,45,1,0,0,27.71830410759898,27.71830410759898,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,449.75,1442770.330385066,932946.5030752586,371400.9658012275,0,4361.090152716859 -5192,6454,11677,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,8.311355684430268,8.330031899231479,0,0,-1051.527743623812,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,9.048171748419961,0,0,1,1,0,5.082721158966462,8.461045063546216,52,45,-9,-9,8,1,1,0,0,0,8,5,1,99,923921.814598418,281807.203766896,375126.1763415687,0,3295.53283311444 -5193,6455,11678,11679,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.577362629457168,6.516145015803513,44,5,-62.48417623068296,0,-9,-9,2019,27,10,0,0,4,10,0,0,0,1,0,123.4332992455997,0,0,1,1,0,5.912917533839019,6.17196568348439,30.85,17.26,42.71,32.91,1.666666666666667,1,1,0,0,8,9,2,1,326.5,112471.3380348245,201813.6376687833,0,0,2161.325333021685 -5193,6455,11679,11678,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.364688721863371,4.198447294501547,44,-5,148.095493653376,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,4.191427047191068,3.993732879919739,42.71,32.91,30.85,17.26,8.333333333333334,1,1,0,0,5,9,2,1,326.5,112471.3380348245,201813.6376687833,0,0,2161.325333021685 -5194,6456,11680,11681,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.679623143922186,6.8228315557948,0,42,0,22.48214450834968,0,2,3,2019,8,0,20,20,1,0,0,5.676760169331785,5.676760169331785,0,0,0,0,2,1,1,0,6.635544833257654,0,54.79,55.86,50.08,55.33,8.333333333333334,1,1,0,0,12,11,4,1,1246,909081.4482346443,622837.3791534584,233005.182567947,0,3701.211714392929 -5194,6456,11681,11680,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.430257962943854,8.412848585048232,0,42,0,-57.91414348252358,0,2,2,2019,11,0,40,40,1,0,0,11.71261222381299,11.71261222381299,0,0,0,0,0,1,1,0,7.747239387025956,0,50.08,55.33,54.79,55.86,6.666666666666667,1,1,0,0,12,11,4,1,1246,909081.4482346443,622837.3791534584,233005.182567947,0,3701.211714392929 -5195,6457,11682,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.269772089469373,7.399143387102264,0,0,0,-976.1834121683555,0,3,3,2019,9,0,30,22,1,0,0,5.137930024065998,5.137930024065998,0,0,0,0,0,1,1,0,0,0,51.1,48.47,-9,-9,6.666666666666667,2,3,0,0,6,1,3,0,761,43936.41736548727,0,194236.5439362912,60016.87139540234,450.6463692641161 -5196,6458,11683,-9,11685,11684,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.427324308039,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1244.666666666667,51362.60248854252,-28243.42059554271,0,0,1683.423761783091 -5196,6458,11684,11685,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,7.897286186063326,8.208542759300403,0,5,0,136.999318111716,0,-9,-9,2019,10,0,50,37,1,1,0,7.888942290274171,7.888942290274171,0,0,0,0,0,1,1,0,0,0,48,59,52.72,55.58,7,1,1,0,0,4,4,3,0,1244.666666666667,51362.60248854252,-28243.42059554271,0,0,1683.423761783091 -5196,6458,11685,11684,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,0,0,0,5,0,35.83758286045166,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,48,59,8.333333333333334,1,1,1,0,4,4,3,0,1244.666666666667,51362.60248854252,-28243.42059554271,0,0,1683.423761783091 -5197,6459,11686,11687,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.566866066044156,9.059208633713292,7.667740351329226,5,4,-73.04145315229141,0,2,2,2019,8,1,30,38,1,1,0,29.13032815702109,29.13032815702109,0,0,0,0,0,1,1,0,8.28760780597228,0,47.21,55.3,54.1,59.11,8.333333333333334,1,1,0,0,8,5,5,1,330.3333333333333,520236.0665103137,144535.5941821786,327613.6945328454,164886.9751596156,5815.549479695444 -5197,6459,11687,11686,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.880128491335043,9.013386118218508,0,5,-4,42.16407848328255,0,-9,-9,2019,7,0,38,40,1,0,0,23.31855361895013,23.31855361895013,0,0,0,0,0,1,1,0,2.653033876002776,0,54.1,59.11,47.21,55.3,8.333333333333334,1,1,0,0,6,5,5,1,330.3333333333333,520236.0665103137,144535.5941821786,327613.6945328454,164886.9751596156,5815.549479695444 -5197,6459,11688,-9,11686,11687,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.194723289641,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,330.3333333333333,520236.0665103137,144535.5941821786,327613.6945328454,164886.9751596156,5815.549479695444 -5198,6460,11689,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,3.221530815520146,3.782899638867485,0,0,-998.5151239790273,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.86619075754984,3.410394051454554,46.56,42.23,-9,-9,5,1,1,0,0,0,7,2,1,354,318286.6119235051,114458.3215818812,165153.368597284,0,1358.276926871295 -5199,6461,11690,11691,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.787131139291775,6.7188595869742,50,0,3.536098523391682,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.677403563875244,6.778931552607717,52.4,34.35,51,46,8.333333333333334,1,1,0,0,1,2,2,1,507.5,52839.63467762985,20247.45781614331,86653.6276710474,0,1769.828693092378 -5199,6461,11691,11690,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,0,36.78686376292752,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.475649597708873,0,51,46,52.4,34.35,7,1,1,0,0,0,2,2,1,507.5,52839.63467762985,20247.45781614331,86653.6276710474,0,1769.828693092378 -5200,6462,11692,11693,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,8,-3,120.5252338874595,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.82,53.15,26.81,52.57,1.666666666666667,1,1,0,0,3,9,2,0,721.3333333333334,338579.1760402925,167037.9840549995,190850.1009614152,87220.18472091369,1912.027957563986 -5200,6462,11693,11692,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,7.37407628015111,7.226247727032284,0,8,3,-80.8080382416159,0,-9,-9,2019,17,5,24,24,1,5,0,6.591759711515542,6.591759711515542,0,0,0,0,0,1,1,0,0,0,26.81,52.57,48.82,53.15,8.333333333333334,1,1,0,0,5,9,2,0,721.3333333333334,338579.1760402925,167037.9840549995,190850.1009614152,87220.18472091369,1912.027957563986 -5200,6462,11694,-9,11692,11693,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.7890401567777,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,721.3333333333334,338579.1760402925,167037.9840549995,190850.1009614152,87220.18472091369,1912.027957563986 -5201,6463,11695,11696,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.667649447882106,6.281469401392908,8,10,-35.26795165457598,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.050876404747732,0,0,1,1,0,5.899879382677878,6.380289275345423,52.5,31.31,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,799.5,562989.5386376732,439790.0808016424,122169.4114985257,0,2112.3346060218 -5201,6463,11696,11695,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.61908899606117,6.891509666918679,8,-10,-48.24349232185334,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.700887817086874,6.987894109933058,57.33,53.46,52.5,31.31,8.333333333333334,1,1,0,0,3,4,2,1,799.5,562989.5386376732,439790.0808016424,122169.4114985257,0,2112.3346060218 -5202,6464,11697,11701,-9,-9,1,1,28,1,3,0,2,2,-9,0,4,8.637087036643607,8.411995766070076,0,6,2,-35.78929279342824,0,-9,-9,2019,8,0,47,48,1,0,0,12.50708349309504,12.50708349309504,0,0,0,0,0,1,1,0,4.018482229369723,0,52.82,53.97,45.68,39.57,8.333333333333334,1,1,0,0,7,11,4,0,1364.8,133694.7930924984,-12121.67200699843,136812.288277544,108512.8494792703,3173.509133735725 -5202,6464,11698,-9,11701,11697,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.969326942419,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,1364.8,133694.7930924984,-12121.67200699843,136812.288277544,108512.8494792703,3173.509133735725 -5202,6464,11699,-9,11701,11697,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.753264592,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,1364.8,133694.7930924984,-12121.67200699843,136812.288277544,108512.8494792703,3173.509133735725 -5202,6464,11700,-9,11701,11697,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.766154997082,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,1364.8,133694.7930924984,-12121.67200699843,136812.288277544,108512.8494792703,3173.509133735725 -5202,6464,11701,11697,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,7.568434760723134,7.415433282851437,0,6,-2,-116.1125065414428,0,-9,-9,2019,19,7,29,28,1,7,0,9.298573750739818,9.298573750739818,0,0,0,0,0,1,1,0,0,0,45.68,39.57,52.82,53.97,3.333333333333333,1,1,0,0,2,11,4,0,1364.8,133694.7930924984,-12121.67200699843,136812.288277544,108512.8494792703,3173.509133735725 -5203,6465,11702,11703,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.166784444036317,8.11786623085278,7,1,12.44818929517614,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.578229195576728,8.092487890618921,44.15,62.15,47.62,56.48,8.333333333333334,1,1,0,0,5,4,4,1,495.5,1578839.338354588,1108563.324205155,466123.3025881647,0,3011.394101557475 -5203,6465,11703,11702,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.741060068313056,7.651881435456136,7,-1,82.1103467246147,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,5.540196066274659,8.179717242388024,47.62,56.48,44.15,62.15,8.333333333333334,1,1,0,0,4,4,4,1,495.5,1578839.338354588,1108563.324205155,466123.3025881647,0,3011.394101557475 -5204,6466,11704,11707,-9,-9,1,1,33,2,2,0,2,2,-9,0,4,6.492190153767155,6.390743505958437,0,4,6,91.68839234871747,0,-9,-9,2019,10,0,40,45,1,0,0,2.805691027845806,2.805691027845806,0,0,0,0,0,1,1,0,6.966748917015178,0,58.15,52.91,49.04,55.86,8.333333333333334,1,1,0,0,11,5,2,1,356.25,-3505.782857062501,0,0,0,1919.553497604204 -5204,6466,11705,-9,11707,11704,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.188742124145,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,356.25,-3505.782857062501,0,0,0,1919.553497604204 -5204,6466,11706,-9,11707,11704,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.369036589455,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,356.25,-3505.782857062501,0,0,0,1919.553497604204 -5204,6466,11707,11704,-9,-9,1,0,27,2,2,0,2,2,-9,0,3,7.114307660334824,7.008493244854366,0,4,-6,79.25845474445265,0,-9,-9,2019,11,0,21,25,1,0,0,7.676829989127024,7.676829989127024,0,0,0,0,0,1,1,0,0,0,49.04,55.86,58.15,52.91,5,1,1,0,0,10,5,2,1,356.25,-3505.782857062501,0,0,0,1919.553497604204 -5205,6467,11708,-9,11709,11710,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1027.423719760281,-9,3,3,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,291,-163587.9340985221,0,0,0,0 -5205,6468,11709,11710,-9,-9,1,0,34,0,1,0,3,3,-9,0,3,0,0,0,3,-8,58.5230410544154,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.02,35.71,52,55,6.666666666666667,1,1,0,0,0,8,2,0,239,940563.6426716741,159329.7767915374,949705.3946675644,213619.5863042901,2299.141723926808 -5205,6468,11710,11709,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,7.109902688511988,7.48029719860116,0,3,8,87.28555691957533,0,-9,-9,2019,9,0,20,28,1,1,0,8.912170267169504,8.912170267169504,0,0,0,0,0,1,1,0,2.845834397755936,0,52,55,40.02,35.71,7,4,5,0,0,1,8,2,0,239,940563.6426716741,159329.7767915374,949705.3946675644,213619.5863042901,2299.141723926808 -5205,6468,11711,-9,11709,11710,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.5786933244992,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,239,940563.6426716741,159329.7767915374,949705.3946675644,213619.5863042901,2299.141723926808 -5206,6469,11712,11713,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.810595671893413,8.674486174226839,0,23,-5,55.73606490968999,0,2,2,2019,9,0,46,43,1,1,0,19.07080590754439,19.07080590754439,0,0,0,0,2,0,0,0,0,0,51,55,36.12,46.36,8,1,1,0,0,9,12,5,1,391,341189.8946778507,-6820.402294717638,188197.6286535138,16196.02140467462,3665.534007975751 -5206,6469,11713,11712,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.305221246574723,7.156247689054626,0,23,5,-56.05465785031563,0,2,2,2019,21,9,20,20,1,9,0,8.426558168887011,8.426558168887011,0,0,0,0,0,0,0,0,0,0,36.12,46.36,51,55,6.666666666666667,1,1,0,0,13,12,5,1,391,341189.8946778507,-6820.402294717638,188197.6286535138,16196.02140467462,3665.534007975751 -5206,6470,11714,-9,11713,11712,1,0,24,0,0,0,2,2,-9,0,4,8.309936580317329,8.391173880969594,0,0,0,-1121.565700530238,0,2,2,2019,12,0,40,40,1,2,1,9.768829788415998,9.768829788415998,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,7,12,4,1,673,-113328.1159854394,0,0,0,1866.820728525327 -5207,6471,11715,11718,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,7.726756864520875,7.976548321936207,0,28,7,16.41061299633771,0,2,2,2019,6,0,43,40,1,0,0,7.3871594218288,7.3871594218288,0,0,0,0,0,1,1,0,0,0,57.92,51.82,48.29,49.79,5,1,1,0,0,6,10,2,0,300,629209.4076868672,0,632579.4749860767,0,3132.242277504983 -5207,6471,11716,-9,11718,11715,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-953.5659951250748,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,10,2,0,300,629209.4076868672,0,632579.4749860767,0,3132.242277504983 -5207,6471,11717,-9,11718,11715,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1037.625678332041,1,3,3,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,10,2,0,300,629209.4076868672,0,632579.4749860767,0,3132.242277504983 -5207,6471,11718,11715,-9,-9,1,0,50,0,1,0,3,3,-9,1,2,0,0,0,28,-7,7.630554864220031,0,3,2,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,48.29,49.79,57.92,51.82,6.666666666666667,1,1,0,0,1,10,2,0,300,629209.4076868672,0,632579.4749860767,0,3132.242277504983 -5208,6472,11719,11720,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.126155759546464,8.190664182122235,0,3,4,-33.92977408123855,0,-9,3,2019,6,0,38,47,1,0,0,10.03895139660831,10.03895139660831,0,0,0,.5511843563614853,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,0,1504.5,327774.5992940097,152127.3548470678,189067.4004635954,68009.57848603648,2318.149836102391 -5208,6472,11720,11719,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.625441682975604,7.95160887578506,0,3,-4,11.68180617651137,0,-9,-9,2019,11,0,40,40,1,0,0,7.619579800866651,7.619579800866651,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,4,1,0,0,9,4,4,0,1504.5,327774.5992940097,152127.3548470678,189067.4004635954,68009.57848603648,2318.149836102391 -5209,6473,11721,-9,11723,11724,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.7283461257606,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,369,30177.72860576516,48553.36142684249,220523.4377718054,112754.3798145156,5337.264113789204 -5209,6473,11722,-9,11723,11724,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.903027132298,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,369,30177.72860576516,48553.36142684249,220523.4377718054,112754.3798145156,5337.264113789204 -5209,6473,11723,11724,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,8.144718215556559,7.591811783266501,0,14,-17,143.6282478242673,0,2,2,2019,15,4,40,16,1,4,0,9.839653801359809,9.839653801359809,0,0,0,0,0,1,1,0,4.285318629493878,0,45.92,51.86,55.09,55.87,6.666666666666667,1,1,0,0,5,4,5,1,369,30177.72860576516,48553.36142684249,220523.4377718054,112754.3798145156,5337.264113789204 -5209,6473,11724,11723,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,9.216131824324448,9.491426752275199,0,14,17,-67.21254741316724,0,3,2,2019,10,2,50,50,1,2,0,29.22349246821048,29.22349246821048,0,0,0,0,0,1,1,0,4.708787088694356,0,55.09,55.87,45.92,51.86,8.333333333333334,1,1,0,0,10,4,5,1,369,30177.72860576516,48553.36142684249,220523.4377718054,112754.3798145156,5337.264113789204 -5210,6474,11725,11726,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.60161419561762,8.425735029766789,0,10,0,-75.66737949880263,0,2,2,2019,6,0,45,45,1,0,0,14.899380216217,14.899380216217,0,0,0,0,0,0,0,0,0,0,58.3,52.91,59.19,51.29,8.333333333333334,1,1,0,0,11,11,5,1,264.5,1366299.979091173,1210213.113712784,133745.9417295007,0,15689.17815474584 -5210,6474,11726,11725,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,9.726129880477339,9.602369658672165,0,10,0,57.14842421113889,0,-9,-9,2019,8,1,35,45,1,1,0,43.08859984801884,43.08859984801884,0,0,0,0,0,0,0,0,9.491532406902039,0,59.19,51.29,58.3,52.91,8.333333333333334,1,1,0,0,10,11,5,1,264.5,1366299.979091173,1210213.113712784,133745.9417295007,0,15689.17815474584 -5211,6475,11727,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.103064257073105,6.941788138460843,0,0,-1011.643082262516,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.19958765354518,53.74,45.32,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,134,307820.5156197863,415027.1102990159,0,0,1534.395681033149 -5212,6476,11728,-9,11729,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.85458061193,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,1,434.5,-61948.14350685499,0,134362.109551309,29978.10671484916,1955.525162721805 -5212,6476,11729,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1027.690705538869,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,3,4,1,0,0,8,1,1,434.5,-61948.14350685499,0,134362.109551309,29978.10671484916,1955.525162721805 -5213,6477,11730,11731,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,37,0,-103.5183289649764,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.388885168453745,0,52.99,51.28,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,1035,5210724.100303583,3587079.207820471,819758.5359092129,3153.604064722032,2996.419496438843 -5213,6477,11731,11730,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.82549931101479,9.149513329520074,37,0,32.91177392604086,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.817079319819292,8.969542342574785,54.2,57.49,52.99,51.28,10,1,1,0,0,8,9,5,1,1035,5210724.100303583,3587079.207820471,819758.5359092129,3153.604064722032,2996.419496438843 -5214,6478,11732,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.099745592189276,7.978278663825202,6.407065147725472,0,0,-963.4048777253252,0,2,2,2019,21,8,39,40,1,8,0,9.871562781383821,9.871562781383821,0,0,0,0,0,1,1,0,6.822538334123018,0,37.75,63.75,-9,-9,3.333333333333333,1,1,0,1,10,5,4,1,1229,32009.65140187689,99450.61041853073,124597.451265389,102675.61027906,1699.16168236227 -5214,6479,11733,-9,11732,-9,1,0,19,0,1,0,2,2,1,0,3,0,0,0,0,0,-1135.440959189904,-9,2,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.42,53.56,-9,-9,3.333333333333333,1,1,0,0,3,5,1,1,87,-121617.9977927714,0,0,0,0 -5215,6480,11734,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.8119924044745,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,26.73,21.86,-9,-9,0,2,3,0,1,0,8,1,0,332,-141990.2112990484,0,0,0,1278.902836630553 -5216,6481,11735,11736,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.007663249414755,8.806152838901919,0,34,-5,12.23888745026028,0,2,2,2019,9,0,38,38,1,0,0,17.68514024534651,17.68514024534651,0,0,0,0,0,0,0,0,1.283450751422959,0,58.3,52.91,59.45,33.75,8.333333333333334,1,1,0,0,12,13,5,1,681.5,1399544.553242146,78926.61070044449,122518.0999244406,27175.36614409391,3743.648070004791 -5216,6481,11736,11735,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.066935470826353,8.14765215899649,0,34,5,-75.97898566131992,0,2,3,2019,12,0,35,36,1,0,0,8.83229266462083,8.83229266462083,0,0,0,0,0,0,0,0,1.097633836732331,0,59.45,33.75,58.3,52.91,8.333333333333334,1,1,0,0,12,13,5,1,681.5,1399544.553242146,78926.61070044449,122518.0999244406,27175.36614409391,3743.648070004791 -5216,6482,11737,-9,11735,11736,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1063.342104571379,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,42.15,56.54,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,432,5025.391706139378,0,0,0,-184.1382365750462 -5217,6483,11738,11739,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.835496277198279,7.368825585652034,26,-3,12.20838478086583,0,-9,3,2019,35,12,0,0,4,12,0,0,0,1,9.44204409899309,0,85.16414058522055,0,1,1,0,4.361284888010241,7.578711599978984,19.01,22.64,36.44,26.71,0,1,1,0,0,5,7,3,1,578.5,1329827.440781444,581242.7389980265,466551.9372739851,0,3458.872399887157 -5217,6483,11739,11738,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.012759093676734,5.92840813323371,26,3,16.18390259918469,0,3,2,2019,23,10,0,0,4,10,0,0,0,1,2.433992202702576,0,25.48249188691411,7,1,1,0,7.167007891392146,5.774703886179426,36.44,26.71,19.01,22.64,6.666666666666667,1,1,0,0,0,7,3,1,578.5,1329827.440781444,581242.7389980265,466551.9372739851,0,3458.872399887157 -5218,6484,11740,11741,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.666769789896856,8.711890200083548,0,6,-10,129.6131315927825,0,-9,-9,2019,7,0,45,43,1,0,0,18.93754143277089,18.93754143277089,0,0,0,0,0,0,0,0,0,0,55.79,52.62,53.54,49.68,8.333333333333334,1,1,0,0,6,9,5,1,155,1844395.128414345,1474865.837169916,329037.6511914143,0,9684.34445443701 -5218,6484,11741,11740,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,9.518083226194248,9.473814289098895,0,6,10,117.4090795444237,0,-9,-9,2019,10,0,30,35,1,0,0,53.5096119986175,53.5096119986175,0,0,0,2.27372374084189,0,0,0,0,6.377150093531955,0,53.54,49.68,55.79,52.62,6.666666666666667,1,1,0,0,11,9,5,1,155,1844395.128414345,1474865.837169916,329037.6511914143,0,9684.34445443701 -5219,6485,11742,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.173538236683453,7.148234193653392,0,0,0,-1002.730500474862,0,3,-9,2019,26,10,12,10,1,10,0,9.67861034068204,9.67861034068204,0,0,0,0,7,1,0,1,0,0,20.43,56.86,-9,-9,0,3,4,0,0,5,8,3,0,4583,364227.57975102,367067.9111361769,0,0,1448.59872707424 -5219,6486,11743,-9,11742,-9,1,0,26,0,0,0,2,2,-9,0,3,7.867068084326619,7.507522581186254,0,0,0,-978.1427899597545,-9,2,2,2019,10,0,30,0,1,0,1,8.192020712863949,8.192020712863949,0,0,0,0,0,1,0,1,0,0,47.32,52.7,-9,-9,3.333333333333333,4,2,0,0,3,8,3,0,161,126909.0444624295,0,0,0,921.5848267281333 -5220,6487,11744,11745,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.432043374285593,8.144656197540181,10,-1,51.19082495785091,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.129560891606122,8.546534494178299,58.23,43.46,66.21000000000001,38.22,8.333333333333334,1,1,0,0,0,1,5,1,644,1705057.12979795,1814992.221286568,0,0,5859.025744493136 -5220,6487,11745,11744,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.983966535679097,8.141837749591886,10,1,53.05932694751864,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.504473512186996,66.21000000000001,38.22,58.23,43.46,10,1,1,0,0,0,1,5,1,644,1705057.12979795,1814992.221286568,0,0,5859.025744493136 -5221,6488,11746,11747,11749,-9,1,0,42,0,1,0,1,1,-9,0,4,7.966232924700607,8.040413866957124,0,18,1,-26.62631532198247,0,2,3,2019,16,2,29,29,1,2,0,11.14140346621267,11.14140346621267,0,0,0,0,0,1,1,0,0,0,39.99,62.58,57.06,57.76,5,2,3,0,0,7,8,5,1,790.6666666666666,-99421.34283028705,38762.44733087043,348945.1974771901,306155.9999026758,4108.499920137646 -5221,6488,11747,11746,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.912426611470694,9.222734378030637,0,18,-1,144.9734890331709,0,1,1,2019,6,0,62,60,1,0,0,16.81171104565617,16.81171104565617,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.99,62.58,8.333333333333334,2,3,0,0,8,8,5,1,790.6666666666666,-99421.34283028705,38762.44733087043,348945.1974771901,306155.9999026758,4108.499920137646 -5221,6488,11748,-9,11746,11747,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.488655088835,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,790.6666666666666,-99421.34283028705,38762.44733087043,348945.1974771901,306155.9999026758,4108.499920137646 -5221,6489,11749,-9,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,0,0,0,0,0,-974.7433625926042,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,1,0,0,8,1,1,289,154560.6003294715,0,0,0,0 -5222,6490,11750,-9,11752,11751,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.6827823686518,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,477,1570599.737247315,751564.8549439383,581206.1822514446,0,7106.283170373492 -5222,6490,11751,11752,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,7.194305667716645,7.686534038202949,0,15,2,-110.553839038112,0,2,2,2019,6,0,15,15,1,0,0,12.28922718247103,12.28922718247103,0,0,0,0,0,1,1,0,9.254287019513207,0,54.1,59.11,50,54,8.333333333333334,1,1,0,0,10,9,5,1,477,1570599.737247315,751564.8549439383,581206.1822514446,0,7106.283170373492 -5222,6490,11752,11751,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.998747481991654,9.002262125279419,0,7,-2,14.82483560952129,0,-9,-9,2019,10,0,35,40,1,1,0,27.57876243086315,27.57876243086315,0,0,0,0,0,1,1,0,0,0,50,54,54.1,59.11,8,1,1,0,0,1,9,5,1,477,1570599.737247315,751564.8549439383,581206.1822514446,0,7106.283170373492 -5222,6490,11753,-9,11752,11751,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.2604567236164,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,477,1570599.737247315,751564.8549439383,581206.1822514446,0,7106.283170373492 -5223,6491,11754,11755,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.12238721106324,7.571758584203179,25,-2,84.99812339981666,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.080692743802479,7.767378983259476,54.2,57.49,57.16,56.15,10,1,1,0,0,0,9,4,1,835.5,4479022.846118517,832847.0742679434,730153.5334961171,0,4767.602243542409 -5223,6491,11755,11754,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.448799189189478,8.278669657963583,24,2,-98.85625787020486,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.367010528911104,8.520339999024458,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,835.5,4479022.846118517,832847.0742679434,730153.5334961171,0,4767.602243542409 -5224,6492,11756,11757,-9,-9,1,0,33,0,4,0,2,2,-9,0,2,8.474526032872065,8.695615979962056,0,16,-4,141.9353309094592,0,2,-9,2019,13,2,25,24,1,2,0,18.22616612013881,18.22616612013881,0,0,0,0,0,1,1,0,0,0,54.02,44.64,21.9,61.62,3.333333333333333,1,1,0,1,5,10,4,1,598.25,174096.8318202022,-37526.23502023746,332272.2983986023,238973.8216577839,4362.492256796962 -5224,6492,11757,11756,-9,-9,1,1,37,0,4,0,2,2,-9,0,3,8.693806179966302,8.831835455903006,0,16,4,72.50144703357374,0,1,2,2019,32,12,44,42,1,12,0,16.61797039818567,16.61797039818567,0,0,0,0,0,1,1,0,0,0,21.9,61.62,54.02,44.64,1.666666666666667,1,1,0,1,11,10,4,1,598.25,174096.8318202022,-37526.23502023746,332272.2983986023,238973.8216577839,4362.492256796962 -5224,6492,11758,-9,11756,11757,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1103.787796942507,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,598.25,174096.8318202022,-37526.23502023746,332272.2983986023,238973.8216577839,4362.492256796962 -5224,6492,11759,-9,11756,11757,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.784273035291,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,598.25,174096.8318202022,-37526.23502023746,332272.2983986023,238973.8216577839,4362.492256796962 -5225,6493,11760,11762,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.60187596166711,9.538385166717157,0,6,4,-52.07531313147967,0,-9,-9,2019,11,0,70,60,1,0,0,28.24384056212948,28.24384056212948,0,0,0,0,0,0,0,0,2.67475183157448,0,34.36,48.31,26.49,68.48,5,2,3,0,0,13,6,5,1,891.75,698514.4095012926,428318.8567751042,182462.3578878561,29544.15598492466,9930.747814628132 -5225,6493,11761,-9,11762,11760,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.999871744707,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,891.75,698514.4095012926,428318.8567751042,182462.3578878561,29544.15598492466,9930.747814628132 -5225,6493,11762,11760,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.913807264862697,8.817275330969059,0,11,-4,-82.56947544567024,0,1,3,2019,12,0,35,25,1,0,0,26.89949649411034,26.89949649411034,0,0,0,0,0,0,0,0,0,0,26.49,68.48,34.36,48.31,6.666666666666667,2,3,0,0,11,6,5,1,891.75,698514.4095012926,428318.8567751042,182462.3578878561,29544.15598492466,9930.747814628132 -5225,6493,11763,-9,11762,11760,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.004724645285,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,891.75,698514.4095012926,428318.8567751042,182462.3578878561,29544.15598492466,9930.747814628132 -5226,6494,11764,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.701718771945811,6.131407583942194,0,0,-941.3809306283882,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.321739864053259,6.459468975327381,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,10,1,2,1,316,255647.2078985957,400003.8784142895,93854.82292896611,0,989.8714354851146 -5227,6495,11765,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.492724596611293,8.374952932194853,0,0,0,-959.4324059037008,0,-9,2,2019,10,0,39,40,1,0,0,13.83182055542468,13.83182055542468,0,0,0,0,0,0,0,0,1.236435847737428,0,45.18,54.77,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,309,22209.69690609416,0,0,0,1728.37156590307 -5228,6496,11766,11769,-9,-9,1,0,36,0,2,0,1,1,-9,0,2,8.510165766998169,8.405609382096204,0,10,-2,-20.28477031562053,0,1,1,2019,18,6,33,21,1,6,0,17.76664153397279,17.76664153397279,0,0,0,0,2,1,1,0,0,0,28.22,59.23,43.71,56.91,6.666666666666667,1,1,0,0,8,6,5,1,1082.25,174680.253116833,69863.14861744596,182779.8380447402,112118.2276799995,3623.297277553908 -5228,6496,11767,-9,11766,11769,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.0175782907263,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1082.25,174680.253116833,69863.14861744596,182779.8380447402,112118.2276799995,3623.297277553908 -5228,6496,11768,-9,11766,11769,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7484888615854,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,1082.25,174680.253116833,69863.14861744596,182779.8380447402,112118.2276799995,3623.297277553908 -5228,6496,11769,11766,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.443993188278709,8.398960702751239,0,10,2,-20.05210872230108,0,2,2,2019,10,0,44,44,1,0,0,11.42650779409552,11.42650779409552,0,0,0,0,0,1,1,0,0,0,43.71,56.91,28.22,59.23,6.666666666666667,1,1,0,0,9,6,5,1,1082.25,174680.253116833,69863.14861744596,182779.8380447402,112118.2276799995,3623.297277553908 -5229,6497,11770,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,5.751514020524507,5.939203832896819,0,0,-1111.016966325935,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,.7590789986215134,0,0,1,1,0,0,5.963036901335054,49,34,-9,-9,10,3,4,0,0,0,8,2,1,382,237887.142207171,87481.66844597881,203954.934987961,0,1705.486940837544 -5230,6498,11771,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.682041558114241,8.702882213139427,0,0,0,-918.5388481433754,0,3,3,2019,8,0,40,37,1,0,0,20.29830011152341,20.29830011152341,0,0,0,0,0,0,0,0,3.683028681242032,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,7,5,1,155,45669.65087927148,-17704.97292453014,197352.431190562,194562.3558444332,2402.400710626842 -5231,6499,11772,11773,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,3.508501431638522,3.589011342716947,44,1,-122.8953340689149,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,11.57541188560726,0,0,1,1,0,0,3.386283273544805,43.2,53.21,52.33,39.14,8.333333333333334,1,1,0,0,2,1,2,1,1211.5,346917.4172108379,72255.9194665698,167810.2520989115,0,1778.792977282562 -5231,6499,11773,11772,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.624941902942184,6.889923624978157,44,-1,-53.65662342042325,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.334793260555154,6.726483406797809,52.33,39.14,43.2,53.21,8.333333333333334,1,1,0,0,0,1,2,1,1211.5,346917.4172108379,72255.9194665698,167810.2520989115,0,1778.792977282562 -5232,6500,11774,-9,11777,11776,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-991.4744613052648,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,8,2,0,1462.75,-34871.19476181507,30544.90145413642,0,0,1882.370656599687 -5232,6500,11775,-9,11777,11776,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.2698301967923,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,8,2,0,1462.75,-34871.19476181507,30544.90145413642,0,0,1882.370656599687 -5232,6500,11776,11777,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,7.041278556574007,7.124719478549004,0,18,4,-5.596797351453691,0,3,3,2019,6,2,24,54,1,2,0,4.239014229504999,4.239014229504999,0,0,0,0,0,1,1,0,0,0,45.26,44.36,49,56,8.333333333333334,2,3,0,0,8,8,2,0,1462.75,-34871.19476181507,30544.90145413642,0,0,1882.370656599687 -5232,6500,11777,11776,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,18,-4,-4.292981423490874,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,45.26,44.36,7,2,3,0,0,0,8,2,0,1462.75,-34871.19476181507,30544.90145413642,0,0,1882.370656599687 -5233,6501,11778,-9,11780,11779,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.2282602938981,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1188.5,448546.7646053638,5426.806646304627,513078.554779772,155834.9810589942,5486.850871553567 -5233,6501,11779,11780,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,8.778021111377388,8.423166226372267,0,7,6,86.2585325000034,0,2,2,2019,9,0,60,55,1,1,0,15.84633771687865,15.84633771687865,0,0,0,0,0,1,1,0,0,0,52,55,29.23,54.54,8,1,1,0,0,1,7,5,1,1188.5,448546.7646053638,5426.806646304627,513078.554779772,155834.9810589942,5486.850871553567 -5233,6501,11780,11779,-9,-9,1,0,38,1,2,0,2,2,-9,0,2,8.159825020928603,8.297460101450994,0,7,-6,-128.9053404047416,0,3,3,2019,13,2,24,31,1,2,0,16.51768349551684,16.51768349551684,0,0,0,0,0,1,1,0,0,0,29.23,54.54,52,55,3.333333333333333,1,1,0,0,10,7,5,1,1188.5,448546.7646053638,5426.806646304627,513078.554779772,155834.9810589942,5486.850871553567 -5233,6501,11781,-9,11780,11779,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.343491135533,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1188.5,448546.7646053638,5426.806646304627,513078.554779772,155834.9810589942,5486.850871553567 -5234,6502,11782,11783,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,62,-3,-132.5302874995389,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.267224492665833,0,48.28,60.18,50,35,8.333333333333334,1,1,0,0,0,9,4,1,1131,1228757.283252284,314192.6132290624,382090.4541771049,0,3869.727551881218 -5234,6502,11783,11782,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.348383397335445,8.790961481571902,62,3,-73.0021056666167,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.071372838099279,5.829481079985803,50,35,48.28,60.18,5,1,1,0,0,0,9,4,1,1131,1228757.283252284,314192.6132290624,382090.4541771049,0,3869.727551881218 -5235,6503,11784,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.767642283156976,7.406268414679591,0,0,0,-1009.993280829902,0,2,3,2019,6,0,40,12,1,0,0,5.501405514697933,5.501405514697933,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,326,458735.8630743211,440626.2904481272,0,0,1169.832269304912 -5235,6504,11785,-9,11784,-9,1,1,22,0,0,0,2,2,-9,0,4,7.695639289640797,7.851312556596732,0,0,0,-1058.897314776351,0,2,-9,2019,10,0,38,40,1,1,1,6.243056375990544,6.243056375990544,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,0,107,170309.546971922,0,0,0,1137.858004294344 -5235,6505,11786,-9,11784,-9,1,0,21,0,0,0,2,2,-9,0,4,7.238918005801848,7.364992031873448,0,0,0,-947.1889205507958,0,3,-9,2019,6,0,16,16,1,0,1,9.752669999356296,9.752669999356296,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,1099,214311.5879489544,0,0,0,1018.404063235003 -5235,6506,11787,-9,11784,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1105.934915771313,1,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,0,157,120475.0321165704,0,0,0,-6.556529496896587 -5235,6507,11788,-9,11784,-9,1,0,23,0,0,0,2,2,-9,0,4,7.247645401914303,7.309758661512569,0,0,0,-1046.685244393338,0,2,2,2019,11,0,37,50,1,2,1,4.257441321294776,4.257441321294776,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,3,0,460,77564.65444767408,0,0,0,1012.343451649833 -5236,6508,11789,11790,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.327475728804734,8.303421014660518,0,7,-3,79.19681118795442,0,2,2,2019,12,1,43,43,1,1,0,12.53910144686815,12.53910144686815,0,0,0,0,2,0,0,0,2.503411557546389,0,38,62.48,49.35,59.64,3.333333333333333,1,1,0,0,12,11,5,1,607,100577.1340352599,104134.5280986831,134244.0758792473,62103.14868974521,3210.828979559323 -5236,6508,11790,11789,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.86205763400389,8.254786460339995,0,7,3,22.71672144915856,0,-9,-9,2019,11,0,40,43,1,0,0,8.804842601358397,8.804842601358397,0,0,0,0,0,0,0,0,0,0,49.35,59.64,38,62.48,5,1,1,0,0,6,11,5,1,607,100577.1340352599,104134.5280986831,134244.0758792473,62103.14868974521,3210.828979559323 -5237,6509,11791,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,7.841563224875506,7.876322930276764,0,0,0,-1027.840871401526,0,3,-9,2019,14,2,38,30,1,2,0,8.498464799220466,8.498464799220466,0,0,0,0,2,0,0,0,0,0,55.07,55.89,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,1292,682255.1200336916,136675.2290796273,273085.7533091169,0,419.9296851902578 -5238,6510,11792,11793,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.827979316642169,8.593423044000007,0,11,-16,99.50308019990183,-9,2,-9,2019,10,0,48,0,1,0,0,16.1885342277141,16.1885342277141,0,0,0,0,0,0,0,0,0,0,39.39,58.79,52,54.51,6.666666666666667,1,1,0,0,10,1,5,1,417.5,152810.8150555409,79849.09070069459,188533.3813888506,36620.41884866243,4120.332808018454 -5238,6510,11793,11792,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.058967895040839,8.394134498759607,6.666728322443306,11,16,-90.3044878755741,0,3,3,2019,8,0,38,41,1,0,0,12.83960763750317,12.83960763750317,0,0,0,0,2,0,0,0,2.298312295516848,7.065803802922082,52,54.51,39.39,58.79,8.333333333333334,1,1,0,0,12,1,5,1,417.5,152810.8150555409,79849.09070069459,188533.3813888506,36620.41884866243,4120.332808018454 -5239,6511,11794,11795,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.953631199329438,6.951004638755703,10,0,-104.9972151368952,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.447211049417127,7.142247452128982,59.14,52.5,57.16,56.15,8.333333333333334,1,1,0,0,11,5,2,1,292,1017014.549929168,405570.4708549557,481929.2444023474,0,2713.874254830534 -5239,6511,11795,11794,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.274031469489874,6.122120396019498,10,9,-43.35575779414418,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.242181978797335,6.087358686627534,57.16,56.15,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,292,1017014.549929168,405570.4708549557,481929.2444023474,0,2713.874254830534 -5240,6512,11796,11797,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.451348409692477,8.370151114761418,0,6,-8,-38.30623535615103,0,-9,-9,2019,9,0,45,70,1,0,0,13.73504153001208,13.73504153001208,0,0,0,0,0,0,0,0,7.353073886780729,0,54.96,53.17,57.16,56.15,6.666666666666667,1,1,0,0,8,7,5,1,1124.5,959027.8881787717,291515.7169167218,532289.2188285338,0,4464.136175957634 -5240,6512,11797,11796,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.419033917732902,8.549959783258974,0,16,8,-45.56082515484859,0,3,3,2019,10,0,35,35,1,0,0,13.92170256643866,13.92170256643866,0,0,0,0,0,0,0,0,3.914008955054157,0,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,9,7,5,1,1124.5,959027.8881787717,291515.7169167218,532289.2188285338,0,4464.136175957634 -5241,6513,11798,11799,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.590991661048914,7.44882897083477,0,8,5,-18.61488468092627,0,-9,-9,2019,11,0,40,40,1,0,0,6.007148575509107,6.007148575509107,0,0,0,0,0,1,1,0,0,0,56.1,49.93,58.32,50.22,6.666666666666667,1,1,0,0,7,9,4,0,515,586868.898110997,155387.9203665058,423305.9686461017,40256.59409951892,3685.918287420099 -5241,6513,11799,11798,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.942850009506073,7.838700379864464,0,8,-5,-78.41843696983979,0,2,3,2019,7,0,24,12,1,0,0,13.34702489893871,13.34702489893871,0,0,0,0,0,1,1,0,0,0,58.32,50.22,56.1,49.93,8.333333333333334,1,1,0,0,9,9,4,0,515,586868.898110997,155387.9203665058,423305.9686461017,40256.59409951892,3685.918287420099 -5242,6514,11800,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1114.21922314217,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.326738627444102,0,43.6,53.51,-9,-9,10,1,1,0,0,0,10,1,1,486,32244.48791660284,0,0,0,818.7815837501602 -5243,6515,11801,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,4.181129782757322,4.09813997054796,0,0,-877.4515965938972,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,4.939743736163386,0,0,1,1,0,0,4.206018284694807,55.77,27.12,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,305,-33018.91787121641,0,0,0,993.8165384576305 -5244,6516,11802,11803,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.089520027676602,6.27608600327523,10,-2,-87.51325864728605,0,3,1,2019,13,2,0,0,4,2,0,0,0,1,0,8.588621575101397,0,0,1,1,0,6.900087998707888,5.908070768488724,56.79,17.33,52.05,38.02,3.333333333333333,1,1,0,0,0,6,2,1,303,288883.7893395584,45135.07146728931,209613.5473693378,0,2738.071308219406 -5244,6516,11803,11802,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.113272464374921,6.064494302269185,10,2,75.31565722466352,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,5.498226658342356,5.752983978167067,52.05,38.02,56.79,17.33,5,1,1,0,0,0,6,2,1,303,288883.7893395584,45135.07146728931,209613.5473693378,0,2738.071308219406 -5245,6517,11804,11805,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.481010117780093,7.467767448617213,54,3,61.81527492228631,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.234271472542762,50.52,47.59,42.12,47.05,8.333333333333334,1,1,0,0,2,4,2,1,875.5,759033.2248297078,30601.89831789744,216759.0407754247,0,1806.621819463197 -5245,6517,11805,11804,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,3.609857150152908,3.80299475316507,54,-3,-58.1420392954816,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.566286945239625,3.866267586205473,42.12,47.05,50.52,47.59,5,1,1,0,0,0,4,2,1,875.5,759033.2248297078,30601.89831789744,216759.0407754247,0,1806.621819463197 -5245,6518,11806,-9,11805,11804,1,1,49,0,0,0,2,2,-9,0,3,8.254061378533665,8.332006880743558,0,0,0,-1064.493928821052,0,2,3,2019,11,0,40,40,1,0,0,9.441987109234057,9.441987109234057,0,0,0,0,0,1,1,0,0,0,53.98,45.34,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,237,325753.4499798426,153092.9379976563,25991.23305967103,16268.27343341449,943.3912630784355 -5246,6519,11807,-9,11809,11808,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1102.471037487784,-9,1,1,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,54.78,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,840.6666666666666,793917.0785082964,350092.5365268374,221616.9383390322,29984.69854684923,3903.648856241933 -5246,6519,11808,11809,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.29998934396059,9.055242414392371,0,9,2,99.13530831922573,0,1,1,2019,10,0,24,32,1,1,0,51.45543942761206,51.45543942761206,0,0,0,0,0,0,0,0,2.542600115913911,0,50,49,59.33,51.29,7,1,1,0,0,1,12,5,1,840.6666666666666,793917.0785082964,350092.5365268374,221616.9383390322,29984.69854684923,3903.648856241933 -5246,6519,11809,11808,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,9,-2,.8342828714223209,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.319171279549573,0,59.33,51.29,50,49,8.333333333333334,1,1,0,0,0,12,5,1,840.6666666666666,793917.0785082964,350092.5365268374,221616.9383390322,29984.69854684923,3903.648856241933 -5247,6520,11810,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.4105503991483,6.419484711753158,0,0,-1106.052138953405,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.039915749064484,6.397028357874627,52.92,55.55,-9,-9,10,1,1,0,0,10,7,2,1,717,218240.26530409,0,413863.8385650733,0,1019.855852138494 -5248,6521,11811,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.349031533287322,8.069892342951405,0,0,-1035.942536747864,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.694421894347769,8.420370381049485,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1774,679492.0341103888,346531.0938775691,153412.4979328843,0,2302.989359584523 -5249,6522,11812,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.777562157841348,7.607250976285353,0,0,-1026.854542511443,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.551336064699786,7.593375297673527,55.46,31.87,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,745,300479.5259317771,141140.6666055145,54913.95456364263,0,1427.942873024623 -5250,6523,11813,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.841809192283338,7.998196908498455,0,1,-3,7.625687516749923,-9,3,3,2019,24,12,37,0,1,12,0,8.390112390286353,8.390112390286353,0,0,0,0,0,1,1,0,0,0,29.65,59.83,19.36,61.35,6.666666666666667,1,1,0,0,8,2,3,0,247,-128902.1672194827,0,0,0,1489.505032853563 -5250,6524,11814,-9,-9,-9,1,0,29,0,0,0,1,1,-9,1,3,0,0,0,1,3,-74.15893108408659,-9,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,19.36,61.35,29.65,59.83,3.333333333333333,1,1,0,1,0,2,3,0,239,47772.14532929242,0,0,0,1365.654177151762 -5251,6525,11815,11816,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,46,-1,-86.74222013538075,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.662309439802463,0,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,5,5,2,1,1268,325509.1601033024,41261.89997688338,190394.8046356686,0,1647.499948151105 -5251,6525,11816,11815,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.198574725365532,5.955966945587067,46,1,9.505323138366334,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.959176355005683,5.922923618542416,60.12,54.8,60.12,54.8,10,1,1,0,0,5,5,2,1,1268,325509.1601033024,41261.89997688338,190394.8046356686,0,1647.499948151105 -5252,6526,11817,-9,11818,11819,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.668085701138,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,5,1,688.4,698567.922695867,405262.8858674773,345762.8480532474,84684.92908605831,6357.942131852131 -5252,6526,11818,11819,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,9.63903812328943,9.192493692643097,0,6,2,2.937603099975882,0,1,1,2019,22,9,13,13,1,9,0,95.69848962602759,95.69848962602759,0,0,0,0,0,1,1,0,0,0,39.32,26.93,63.39,39.56,6.666666666666667,4,2,0,0,7,7,5,1,688.4,698567.922695867,405262.8858674773,345762.8480532474,84684.92908605831,6357.942131852131 -5252,6526,11819,11818,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.399611317774037,7.31408830834107,0,6,-2,5.491707989474325,0,2,2,2019,9,0,30,40,1,0,0,6.460195295237968,6.460195295237968,0,0,0,0,0,1,1,0,4.407410586319871,0,63.39,39.56,39.32,26.93,1.666666666666667,1,1,0,0,7,7,5,1,688.4,698567.922695867,405262.8858674773,345762.8480532474,84684.92908605831,6357.942131852131 -5252,6526,11820,-9,11818,11819,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1151.727260041133,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,5,1,688.4,698567.922695867,405262.8858674773,345762.8480532474,84684.92908605831,6357.942131852131 -5252,6526,11821,-9,11818,11819,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.03843140104,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,5,1,688.4,698567.922695867,405262.8858674773,345762.8480532474,84684.92908605831,6357.942131852131 -5253,6527,11822,-9,11824,11823,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2526727871357,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,892,512736.5792344696,440698.9294975938,219211.7323028794,139382.597764419,3327.361067274067 -5253,6527,11823,11824,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.818591116718606,8.728618576567753,0,19,0,105.1177314589151,0,-9,-9,2019,12,0,54,45,1,0,0,17.05832756998541,17.05832756998541,0,0,0,0,0,0,0,0,.2501629727815759,0,38.63,63.11,52,54.51,5,1,1,0,0,10,7,4,1,892,512736.5792344696,440698.9294975938,219211.7323028794,139382.597764419,3327.361067274067 -5253,6527,11824,11823,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.755571761163923,7.803062515381804,0,19,0,-138.8321513407575,0,-9,-9,2019,9,0,24,24,1,0,0,12.60001083705508,12.60001083705508,0,0,0,0,0,0,0,0,.0372360507511941,0,52,54.51,38.63,63.11,6.666666666666667,1,1,0,0,8,7,4,1,892,512736.5792344696,440698.9294975938,219211.7323028794,139382.597764419,3327.361067274067 -5253,6527,11825,-9,11824,11823,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.35213725167,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,892,512736.5792344696,440698.9294975938,219211.7323028794,139382.597764419,3327.361067274067 -5254,6528,11826,11827,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.328999989893775,8.198577843748625,6.50172552679345,7,2,-21.06423081591257,0,3,3,2019,9,0,41,41,1,0,0,8.046827464448688,8.046827464448688,0,0,0,3.73532108309635,0,0,0,0,2.917055487278061,7.152203496679227,58.15,52.91,59.53,56.44,8.333333333333334,1,1,0,0,8,13,4,1,1428,353391.0084762552,274703.1753006765,179283.7974207317,175444.6966250119,2168.750833525594 -5254,6528,11827,11826,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.695522946394729,7.727571919953197,0,7,-2,23.25858039862309,0,3,3,2019,7,0,26,28,1,0,0,8.720743069784554,8.720743069784554,0,0,0,0,0,0,0,0,3.054835915929019,0,59.53,56.44,58.15,52.91,0,1,1,0,0,8,13,4,1,1428,353391.0084762552,274703.1753006765,179283.7974207317,175444.6966250119,2168.750833525594 -5255,6529,11828,-9,11829,11830,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-964.306897201414,-9,2,3,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.913838928257777,0,60.25,47.79,-9,-9,10,1,1,0,0,0,6,5,1,1051,241955.0863543826,90581.52111401006,284044.1069193511,116560.4747342898,3708.620689065783 -5255,6529,11829,11830,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.850434555515968,7.73530290776174,0,8,-7,32.57878276058856,0,2,3,2019,7,0,40,35,1,0,0,9.121127321269293,9.121127321269293,0,0,0,0,0,1,1,0,2.702832460667132,0,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,9,6,5,1,1051,241955.0863543826,90581.52111401006,284044.1069193511,116560.4747342898,3708.620689065783 -5255,6529,11830,11829,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.969846699610763,8.827450336381466,0,8,7,8.944576306631378,0,2,3,2019,1,0,49,50,1,0,0,19.85228702512992,19.85228702512992,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,1051,241955.0863543826,90581.52111401006,284044.1069193511,116560.4747342898,3708.620689065783 -5255,6530,11831,-9,11829,11830,1,1,22,0,1,0,2,2,-9,0,4,7.930029601236658,7.733234900253224,0,0,0,-1016.232185576881,0,2,3,2019,11,1,43,43,1,1,1,8.394316461274688,8.394316461274688,0,0,0,0,0,1,1,0,3.182916386384578,0,33.12,57.95,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,720,63228.79602992351,0,0,0,1093.758604930563 -5255,6531,11832,-9,11829,11830,1,0,20,0,1,0,2,2,-9,0,5,7.706504060440865,7.558423326790898,0,0,0,-1018.777403465084,0,2,3,2019,4,0,35,8,1,0,1,5.430796706602194,5.430796706602194,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,6,3,1,3625,157641.9257138727,-1525.801147659633,0,0,430.7049731772928 -5256,6532,11833,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,4.287733397380549,4.457907296281571,0,0,-1030.596270413534,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.327926799909266,4.311075521563198,32.68,17.82,-9,-9,6.666666666666667,1,1,0,0,1,12,2,1,917,50828.52371757623,0,0,0,3740.054126400896 -5257,6533,11834,-9,11836,11837,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.6350506761224,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,617.5,211515.2357607569,-57919.91316483455,222562.1498737182,31387.47728015063,2644.681947970874 -5257,6533,11835,-9,11836,11837,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.9611340711416,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,617.5,211515.2357607569,-57919.91316483455,222562.1498737182,31387.47728015063,2644.681947970874 -5257,6533,11836,11837,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,1,-1,-64.84793029521379,-9,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,27.16,44.31,30.7,54.89,6.666666666666667,1,1,0,1,3,2,2,0,617.5,211515.2357607569,-57919.91316483455,222562.1498737182,31387.47728015063,2644.681947970874 -5257,6533,11837,11836,-9,-9,1,1,33,0,3,0,2,2,-9,0,3,6.687373135082992,6.6181262074847,0,1,1,96.1893642649198,-9,2,2,2019,11,0,38,0,1,0,0,3.45881444691002,3.45881444691002,0,0,0,0,0,1,1,0,0,0,30.7,54.89,27.16,44.31,6.666666666666667,1,1,0,1,7,2,2,0,617.5,211515.2357607569,-57919.91316483455,222562.1498737182,31387.47728015063,2644.681947970874 -5258,6534,11838,11841,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.397628979149554,7.5631122512545,0,16,4,-19.48165626084996,0,3,2,2019,9,2,38,38,1,2,0,5.964267001551785,5.964267001551785,0,0,0,0,0,1,1,0,6.369878219701608,0,41.51,52.76,47.52,58.09,8.333333333333334,2,3,0,0,7,8,4,1,451.25,554170.0470162977,196373.864962567,565201.9765716664,200108.6696105634,4041.990932036976 -5258,6534,11839,-9,11841,11838,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.818426393146,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,451.25,554170.0470162977,196373.864962567,565201.9765716664,200108.6696105634,4041.990932036976 -5258,6534,11840,-9,11841,11838,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.3029295846109,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,4,1,451.25,554170.0470162977,196373.864962567,565201.9765716664,200108.6696105634,4041.990932036976 -5258,6534,11841,11838,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.906534117661055,8.828202394337914,0,16,-4,-63.71814441092779,0,2,1,2019,7,2,40,30,1,2,0,18.46073339016175,18.46073339016175,0,0,0,0,0,1,1,0,0,0,47.52,58.09,41.51,52.76,10,2,3,0,0,8,8,4,1,451.25,554170.0470162977,196373.864962567,565201.9765716664,200108.6696105634,4041.990932036976 -5259,6535,11842,11843,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,37,-1,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.24,29.51,51.42,26.52,1.666666666666667,1,1,0,0,0,2,1,1,1489.5,-6676.157808750562,-14236.98565508242,151851.7652490315,48760.47656321019,1575.39173071613 -5259,6535,11843,11842,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,37,1,0,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,51.42,26.52,27.24,29.51,6.666666666666667,1,1,0,0,0,2,1,1,1489.5,-6676.157808750562,-14236.98565508242,151851.7652490315,48760.47656321019,1575.39173071613 -5260,6536,11844,-9,11846,11847,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.754463932539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,504.6,43491.52176103111,86117.89646807864,171442.0035122226,100129.48897795,4078.184059051123 -5260,6536,11845,-9,11846,11847,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.243918338114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,504.6,43491.52176103111,86117.89646807864,171442.0035122226,100129.48897795,4078.184059051123 -5260,6536,11846,11847,-9,-9,1,0,33,1,3,0,2,2,-9,1,3,8.000841446827293,8.15812273096056,0,6,-1,33.14227330509584,0,3,3,2019,25,11,26,29,1,11,0,11.99555615547792,11.99555615547792,0,0,0,0,7,1,1,0,0,0,16.85,54.53,43.14,61.33,6.666666666666667,1,1,0,0,7,13,4,1,504.6,43491.52176103111,86117.89646807864,171442.0035122226,100129.48897795,4078.184059051123 -5260,6536,11847,11846,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.746619583804149,8.284290981502474,0,6,1,54.58821023192424,0,-9,-9,2019,11,0,57,50,1,0,0,11.68047709115305,11.68047709115305,0,0,0,0,7,1,1,0,0,0,43.14,61.33,16.85,54.53,6.666666666666667,4,1,0,0,7,13,4,1,504.6,43491.52176103111,86117.89646807864,171442.0035122226,100129.48897795,4078.184059051123 -5260,6536,11848,-9,11846,11847,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.959095400018,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,504.6,43491.52176103111,86117.89646807864,171442.0035122226,100129.48897795,4078.184059051123 -5261,6537,11849,11850,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,6.012237789631426,6.056382079966522,0,3,-3,-73.57813043384013,0,2,2,2019,3,0,10,15,1,0,0,3.983058895938079,3.983058895938079,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.42,45.64,10,1,1,0,0,3,1,2,0,279,40361.00093713373,-35200.53896449378,0,0,1350.447213426395 -5261,6537,11850,11849,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,0,0,0,3,3,-48.16994071892254,0,-9,-9,2019,11,0,0,57,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,45.64,60.02,56.42,8.333333333333334,1,1,1,0,1,1,2,0,279,40361.00093713373,-35200.53896449378,0,0,1350.447213426395 -5261,6537,11851,-9,11849,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.281654652447,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,279,40361.00093713373,-35200.53896449378,0,0,1350.447213426395 -5262,6538,11852,11853,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,7.509318044629149,7.492117037012881,0,8,15,-62.9140464755512,0,3,3,2019,8,0,30,24,1,0,0,7.044229583617599,7.044229583617599,0,0,0,0,0,1,1,0,0,0,53.86,57.86,45.56,60.26,8.333333333333334,3,4,0,0,10,8,4,0,418.5,-10942.00039982911,9506.272742204143,357848.5572191669,254640.4990069737,2666.122775478839 -5262,6538,11853,11852,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.617182768153491,8.48681633863867,0,8,-15,22.51331554246732,0,-9,-9,2019,9,0,38,38,1,0,0,17.86633702087131,17.86633702087131,0,0,0,0,0,1,1,0,.9152074806514782,0,45.56,60.26,53.86,57.86,8.333333333333334,1,1,0,0,5,8,4,0,418.5,-10942.00039982911,9506.272742204143,357848.5572191669,254640.4990069737,2666.122775478839 -5263,6539,11854,-9,-9,-9,1,0,33,0,0,0,3,3,-9,0,2,7.416542723295568,7.523356142581719,0,0,0,-942.9829172129068,0,-9,-9,2019,20,7,25,0,1,7,0,9.512614380952815,9.512614380952815,0,0,0,0,0,1,1,0,0,0,29.89,41.72,-9,-9,1.666666666666667,2,3,0,0,3,8,3,0,2026,122670.2855794443,37037.69842770581,0,0,1043.886214780959 -5263,6540,11855,-9,11856,-9,1,1,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-929.2680248034333,-9,2,-9,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,32.94,48.99,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,3151,0,0,0,0,0 -5263,6541,11856,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1048.230683572614,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.97,38.37,-9,-9,1.666666666666667,2,3,1,0,0,8,1,0,362,142458.2709721915,101185.3340067164,0,0,2198.03036720034 -5264,6542,11857,11858,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.850666780065071,8.013567337487073,0,3,0,53.1551829482204,0,-9,-9,2019,6,0,44,43,1,0,0,7.649240376247887,7.649240376247887,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.35,42.16,8.333333333333334,1,1,0,0,4,6,4,0,674,-5760.38025263646,28109.99180728363,0,0,2388.435081285912 -5264,6542,11858,11857,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.561951901999101,7.612083630264104,0,3,0,33.89409905056741,0,2,2,2019,13,2,43,42,1,2,0,5.602274899966085,5.602274899966085,0,0,0,0,0,0,0,0,2.177184974096688,0,46.35,42.16,62.49,55.09,6.666666666666667,1,1,0,0,8,6,4,0,674,-5760.38025263646,28109.99180728363,0,0,2388.435081285912 -5265,6543,11859,11860,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.538930325799901,7.627321692561895,0,8,-1,22.22708741031309,0,2,2,2019,8,1,27,27,1,1,0,5.461635982166195,5.461635982166195,0,0,0,0,0,1,1,0,0,0,44.02,60.7,52.37,56.93,8.333333333333334,1,1,0,0,6,12,4,1,857.75,230972.9471299864,236803.3049568725,98506.20709416714,49704.80339705908,3161.640318369556 -5265,6543,11860,11859,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.540771303583645,8.927378215094569,0,8,1,-76.08679371341917,0,2,1,2019,6,0,50,48,1,0,0,12.42579426974767,12.42579426974767,0,0,0,0,0,1,1,0,0,0,52.37,56.93,44.02,60.7,8.333333333333334,1,1,0,0,9,12,4,1,857.75,230972.9471299864,236803.3049568725,98506.20709416714,49704.80339705908,3161.640318369556 -5265,6543,11861,-9,11859,11860,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.2241422009222,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,857.75,230972.9471299864,236803.3049568725,98506.20709416714,49704.80339705908,3161.640318369556 -5265,6543,11862,-9,11859,11860,1,1,14,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1017.843075101576,-9,2,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,12,4,1,857.75,230972.9471299864,236803.3049568725,98506.20709416714,49704.80339705908,3161.640318369556 -5266,6544,11863,11864,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,44,2,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.85,37.23,46.12,20.9,6.666666666666667,1,1,0,0,11,7,1,0,360.5,250366.9970443771,0,214757.048091994,0,1042.955420059801 -5266,6544,11864,11863,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,44,-2,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.12,20.9,56.85,37.23,3.333333333333333,1,1,0,0,3,7,1,0,360.5,250366.9970443771,0,214757.048091994,0,1042.955420059801 -5266,6545,11865,-9,11864,11863,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1007.662860699407,0,-9,2,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,0,668,20384.72750407301,0,0,0,925.058574516711 -5267,6546,11866,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.54901469445362,9.274378962701798,0,0,0,-1012.42759580723,0,3,1,2019,7,0,35,39,1,0,0,40.62941521876415,40.62941521876415,0,0,0,0,0,1,1,0,.4534805280446329,0,42.31,56.08,-9,-9,8.333333333333334,1,1,0,0,10,11,5,1,1307,1169648.160371772,779401.2402297198,269781.511398114,10890.68547219055,4946.20256312343 -5268,6547,11867,11868,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.024222148837751,8.444184567118684,6,5,-13.39967975134527,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.114168573978762,8.315447875556924,57.06,57.76,57.16,56.15,10,1,1,0,0,6,2,4,1,1460.5,1508814.252248524,30554.26989122867,294493.4134453965,83267.81836435464,3886.709515086931 -5268,6547,11868,11867,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.972992238686506,7.855161780485491,0,6,-5,-31.87830312119615,0,2,1,2019,7,0,32,30,1,0,0,10.76234073134568,10.76234073134568,0,0,0,0,0,1,1,0,4.420945454461724,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,1,1460.5,1508814.252248524,30554.26989122867,294493.4134453965,83267.81836435464,3886.709515086931 -5269,6548,11869,11870,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,0,0,42,-2,-101.1724685392323,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.775983836828908,0,55.68,54.24,60.02,56.42,8.333333333333334,1,1,0,0,0,9,4,1,527.5,1606971.977938433,1096814.831470069,391724.9721428474,0,3624.714030439543 -5269,6548,11870,11869,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,8.399642825914222,8.764214077338629,42,2,-98.21077495701753,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,8.842809197449968,8.640872456971477,60.02,56.42,55.68,54.24,10,1,1,0,0,10,9,4,1,527.5,1606971.977938433,1096814.831470069,391724.9721428474,0,3624.714030439543 -5270,6549,11871,11872,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-3,-44.64039228502778,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.414991778117035,0,48.28,53.42,53.41,24.04,6.666666666666667,1,1,0,0,0,9,2,1,739,490200.5803824736,188532.5599368213,413705.1674047863,0,1776.659945589618 -5270,6549,11872,11871,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.055753930237596,7.348190873500436,60,3,-149.7685350016018,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,3.822465789756385,0,0,1,1,0,7.857982461329692,7.232283604466252,53.41,24.04,48.28,53.42,8.333333333333334,1,1,0,0,0,9,2,1,739,490200.5803824736,188532.5599368213,413705.1674047863,0,1776.659945589618 -5271,6550,11873,-9,11876,11874,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.013381346692,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,493.75,340323.194559467,107390.5840766547,249916.5495762268,45220.13088574499,1119.054138166691 -5271,6550,11874,11876,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,8.065608930538954,7.784154336789265,0,15,-2,-17.9392921973735,0,2,-9,2019,9,0,56,56,1,1,0,5.889772488165712,5.889772488165712,0,0,0,0,0,1,1,0,0,0,53,54,49.11,52.88,8,1,1,0,0,1,4,2,1,493.75,340323.194559467,107390.5840766547,249916.5495762268,45220.13088574499,1119.054138166691 -5271,6550,11875,-9,11876,11874,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.0826381242238,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,493.75,340323.194559467,107390.5840766547,249916.5495762268,45220.13088574499,1119.054138166691 -5271,6550,11876,11874,-9,-9,1,0,54,0,2,0,3,3,-9,0,4,0,0,0,15,2,-24.87721523374704,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,52.88,53,54,8.333333333333334,1,1,0,0,5,4,2,1,493.75,340323.194559467,107390.5840766547,249916.5495762268,45220.13088574499,1119.054138166691 -5272,6551,11877,-9,11878,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.7787058717167,-9,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.76,55.32,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,764.5,21250.20226563278,39246.41814222798,0,0,1141.115521222411 -5272,6551,11878,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.90990908006011,8.060902378979744,0,0,0,-921.6964192626911,0,-9,-9,2019,15,3,37,38,1,3,0,7.163860985108771,7.163860985108771,0,0,0,0,0,0,0,0,0,0,29.86,60.47,-9,-9,3.333333333333333,1,1,0,0,11,4,3,0,764.5,21250.20226563278,39246.41814222798,0,0,1141.115521222411 -5273,6552,11879,-9,11880,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.7899837077142,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,4,1,425.5,70862.8784562971,0,133573.855763949,73729.57744846333,1580.861480466926 -5273,6552,11880,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,7.824397130634861,7.96390449087442,6.568038910280216,0,0,-1089.932021884136,0,-9,-9,2019,8,0,6,18,1,0,0,47.64831016582973,47.64831016582973,0,0,0,0,0,1,1,0,6.88327753559944,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,5,4,1,425.5,70862.8784562971,0,133573.855763949,73729.57744846333,1580.861480466926 -5273,6553,11881,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,1,8.415326742434459,8.149500909584981,0,0,0,-928.9604613126539,0,-9,-9,2019,18,4,37,48,1,4,0,12.34455341966227,12.34455341966227,0,0,0,0,0,1,1,0,0,0,42.21,31.27,-9,-9,6.666666666666667,2,3,0,0,4,5,4,1,1571,-315117.3373134627,-43207.64091737904,0,0,1439.111721271046 -5274,6554,11882,11883,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,6.259205720261677,6.497587805007196,0,10,2,-95.55255931037037,0,3,3,2019,6,0,46,42,1,0,0,1.566011639404789,1.566011639404789,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,557,246712.6477464631,144707.0831027927,118261.987909406,0,1284.625267718372 -5274,6554,11883,11882,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.177443924651662,8.029765709456321,0,10,-2,-87.75450850108062,0,-9,-9,2019,6,0,29,29,1,0,0,15.54089431436887,15.54089431436887,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,9,5,4,1,557,246712.6477464631,144707.0831027927,118261.987909406,0,1284.625267718372 -5275,6555,11884,11885,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.731981305973858,7.661373468230456,0,7,1,93.04535245206894,0,-9,-9,2019,7,0,36,40,1,0,0,7.097042142878601,7.097042142878601,0,0,0,0,7,1,1,0,0,0,52,54.51,57.33,53.46,5,1,1,0,0,9,4,4,1,1150.5,203156.9790636296,242512.0719838306,49100.98218274716,41535.90983036354,3478.375086222874 -5275,6555,11885,11884,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.628728103618199,8.493261333785252,0,7,-1,-85.2833893416183,0,1,2,2019,8,0,38,40,1,0,0,11.62688200260185,11.62688200260185,0,0,0,0,0,1,1,0,4.264150331602798,0,57.33,53.46,52,54.51,10,1,1,0,0,7,4,4,1,1150.5,203156.9790636296,242512.0719838306,49100.98218274716,41535.90983036354,3478.375086222874 -5275,6555,11886,-9,11884,11885,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.384455964137,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1150.5,203156.9790636296,242512.0719838306,49100.98218274716,41535.90983036354,3478.375086222874 -5275,6555,11887,-9,11884,11885,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.465409876789,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1150.5,203156.9790636296,242512.0719838306,49100.98218274716,41535.90983036354,3478.375086222874 -5276,6556,11888,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.994357889536889,6.882809908569919,0,0,-928.3113201048964,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.420997559900192,7.118010070418796,59.67,35.89,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1016,252575.5665514259,42832.73933012496,62755.82724487313,0,1469.160316732393 -5277,6557,11889,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.487244750504994,8.823572298756671,7.536423564292015,0,0,-955.0212163827334,0,3,3,2019,11,0,36,32,1,0,0,19.9690384186442,19.9690384186442,0,0,0,0,0,1,1,0,8.200343847527884,0,60.29,52.11,-9,-9,8.333333333333334,2,3,0,0,9,2,5,1,425,1610494.510813668,823746.6158196162,611175.3606463672,0,2897.493395324414 -5277,6557,11890,-9,11889,-9,1,0,16,0,0,1,3,0,-9,0,3,0,0,0,0,0,-948.2719622966011,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.79,59.6,-9,-9,0,2,3,0,0,0,2,5,1,425,1610494.510813668,823746.6158196162,611175.3606463672,0,2897.493395324414 -5278,6558,11891,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.686494065771313,8.144869241612863,6.168418553775052,0,0,-990.3482234766374,0,2,2,2019,11,0,28,38,1,0,0,9.405341031037887,9.405341031037887,0,0,0,0,0,1,1,0,0,6.234578088717662,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,467,366828.3972065209,149001.912319826,248274.0188987242,0,2469.342095739472 -5279,6559,11892,11893,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.532540189989856,8.395147015847796,0,9,-2,-36.11683879857426,0,3,3,2019,22,10,35,33,1,10,0,15.68212965607689,15.68212965607689,0,0,0,0,7,0,0,0,4.120929556751807,0,29.38,55.98,49.03,46.66,5,1,1,0,0,10,6,4,1,911.5,265144.1223918945,18619.18018168857,248646.0777157931,0,2711.384962368244 -5279,6559,11893,11892,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.361581670295831,7.36000032206397,0,9,2,-16.54077036439615,0,2,2,2019,7,0,23,24,1,0,0,7.331850391583025,7.331850391583025,0,0,0,0,0,0,0,0,4.257641273390787,0,49.03,46.66,29.38,55.98,6.666666666666667,1,1,0,0,8,6,4,1,911.5,265144.1223918945,18619.18018168857,248646.0777157931,0,2711.384962368244 -5279,6560,11894,-9,11892,11893,1,1,19,0,0,0,2,2,-9,0,5,8.489947835463305,8.48399415826408,0,0,0,-1103.09744287342,0,2,2,2019,6,0,30,28,1,0,1,24.98109100252694,24.98109100252694,0,0,0,0,0,0,0,0,4.071630391667789,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,3,6,5,1,134,307932.6492571688,46869.39077028602,231360.4306949761,88622.06708651036,2546.357399206825 -5280,6561,11895,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.27345776431734,7.397936236444195,0,0,0,-1085.173899452262,0,3,3,2019,12,0,21,21,1,0,0,10.02148998503419,10.02148998503419,0,0,0,0,7,0,0,0,0,0,40.98,45.22,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,287,73116.88305110854,-14879.33427834647,0,0,881.9349558660965 -5281,6562,11896,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.388797811887393,9.966588252597758,0,0,0,-1011.701097303653,0,2,2,2019,9,0,50,60,1,0,0,42.05353379531223,42.05353379531223,0,0,0,0,0,0,0,0,3.640433377529799,0,50.54,62.09,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,1661,2007553.1216973,873473.6087418242,486715.2269982403,0,5619.862290725257 -5282,6563,11897,11898,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.579837234581992,8.942324304705476,0,8,6,59.51805446356931,0,2,2,2019,6,0,41,40,1,0,0,21.05541787442926,21.05541787442926,0,0,0,0,0,1,1,0,5.36413476029338,0,58.32,50.22,41.05,54.17,8.333333333333334,3,4,0,0,9,5,5,1,632.4,1342859.046001376,1039646.309052916,237360.9024652954,0,4316.804682807315 -5282,6563,11898,11897,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.007250709175221,8.749619434445373,0,8,-6,80.32669439347664,0,2,2,2019,14,2,49,40,1,2,0,12.2877240270705,12.2877240270705,0,0,0,0,0,1,1,0,.2560530920296794,0,41.05,54.17,58.32,50.22,5,1,1,0,0,10,5,5,1,632.4,1342859.046001376,1039646.309052916,237360.9024652954,0,4316.804682807315 -5282,6563,11899,-9,11898,11897,1,0,17,0,2,1,2,0,0,0,1,0,0,0,0,0,-986.1009358445929,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,.191034623904356,0,44.75,37.99,-9,-9,6.666666666666667,4,2,0,0,1,5,5,1,632.4,1342859.046001376,1039646.309052916,237360.9024652954,0,4316.804682807315 -5282,6563,11900,-9,11898,11897,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.229525612506,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,5,1,632.4,1342859.046001376,1039646.309052916,237360.9024652954,0,4316.804682807315 -5282,6563,11901,-9,11898,11897,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.240624819196,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,5,5,1,632.4,1342859.046001376,1039646.309052916,237360.9024652954,0,4316.804682807315 -5283,6564,11902,11903,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.460249568584613,8.073804068342067,8,2,-4.174647304081102,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,7.56218635067936,8.408825710729095,60.29,52.11,23.42,49.08,8.333333333333334,1,1,0,0,5,7,3,1,847.5,1447430.906601387,934673.7734597474,556192.1477834021,0,5240.941052485197 -5283,6564,11903,11902,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,8,-2,7.501948283330165,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.545137360057883,0,23.42,49.08,60.29,52.11,8.333333333333334,1,1,0,0,0,7,3,1,847.5,1447430.906601387,934673.7734597474,556192.1477834021,0,5240.941052485197 -5283,6565,11904,-9,11903,11902,1,1,41,0,0,0,1,1,-9,0,4,9.666703047607347,10.05444980999174,0,0,0,-996.2363712864716,0,2,2,2019,12,0,45,50,1,0,0,46.47459603499478,46.47459603499478,0,0,0,0,0,1,1,0,3.061031779856185,0,52.05,55.95,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,547,1303040.72734736,554565.0070385087,595933.3849557525,0,4950.970104605623 -5284,6566,11905,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1064.496394191081,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.41,38.6,-9,-9,6.666666666666667,1,1,0,1,0,10,1,0,418,472712.2269307319,0,210178.2128552398,0,1116.535914999968 -5285,6567,11906,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.669860162654435,5.266917986726686,0,0,-971.9391213115778,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.528348544613365,5.715174534990433,52.44,29.96,-9,-9,10,1,1,0,0,0,12,2,0,662,-118184.330001974,28785.06252500489,0,0,1246.840073440361 -5286,6568,11907,11910,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.930875273872281,8.208137279701239,0,8,3,16.72357615143163,0,2,2,2019,3,0,38,38,1,0,0,10.78630960663889,10.78630960663889,0,0,0,0,0,1,1,0,0,0,56.57,57.78,46.32,47.9,10,1,1,0,0,9,4,4,0,1232.25,18902.58040719154,49355.71234476768,154057.2391985598,84546.55315948138,2744.587466184229 -5286,6568,11908,-9,11907,11910,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.098534646029,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,1232.25,18902.58040719154,49355.71234476768,154057.2391985598,84546.55315948138,2744.587466184229 -5286,6568,11909,-9,11907,11910,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.143183800967,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,0,1232.25,18902.58040719154,49355.71234476768,154057.2391985598,84546.55315948138,2744.587466184229 -5286,6568,11910,11907,-9,-9,1,1,31,1,2,0,2,2,-9,0,2,8.090694505905569,7.91814292463202,4.254284870987393,8,-3,-1.083505909864941,0,2,2,2019,12,1,50,50,1,1,0,7.65545240777439,7.65545240777439,0,0,0,0,0,1,1,0,4.699069505842332,0,46.32,47.9,56.57,57.78,8.333333333333334,1,1,0,0,7,4,4,0,1232.25,18902.58040719154,49355.71234476768,154057.2391985598,84546.55315948138,2744.587466184229 -5287,6569,11911,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,2,8.803299291910863,8.370643116435781,0,0,0,-970.824849097278,0,1,-9,2019,19,7,35,35,1,7,0,20.13368363552623,20.13368363552623,0,0,0,0,14.5,1,1,0,0,0,24.66,39.05,-9,-9,0,1,1,0,0,9,9,5,0,891,90035.40343831906,-129746.8066082664,0,0,2320.641208752198 -5288,6570,11912,11913,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.711253788676736,8.450600132258845,0,1,-1,27.83868108595558,0,-9,-9,2019,7,0,52,45,1,0,0,11.01051217127594,11.01051217127594,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,10,1,1,0,0,8,12,5,1,318.5,1911959.77531726,1490240.238808858,170386.5607703584,7903.620413015853,3367.900582757721 -5288,6570,11913,11912,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.029114318347574,8.197979576575721,0,1,1,-90.01801619390884,0,-9,-9,2019,6,0,40,40,1,0,0,10.1130937230757,10.1130937230757,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,10,1,1,0,0,3,12,5,1,318.5,1911959.77531726,1490240.238808858,170386.5607703584,7903.620413015853,3367.900582757721 -5289,6571,11914,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.305424962611582,8.400924093267468,0,0,0,-900.8934929451591,-9,-9,-9,2019,23,11,41,0,1,11,0,8.274353789430542,8.274353789430542,0,0,0,0,0,1,1,0,0,0,1.94,70.82000000000001,-9,-9,5,1,1,0,0,3,12,4,0,578,-59073.51435294438,0,0,0,1632.400307370484 -5290,6572,11915,11916,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,3,-4,0,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,37.18,40.21,34.71,18.35,8.333333333333334,1,1,0,0,0,10,1,1,388,-42901.36947640526,0,0,0,1153.67789684267 -5290,6572,11916,11915,-9,-9,1,0,86,0,0,0,2,2,-9,0,1,0,0,0,3,4,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,7.329352997312791,120.1353500416433,61.54808976252996,0,1,1,0,0,0,34.71,18.35,37.18,40.21,8.333333333333334,1,1,0,0,0,10,1,1,388,-42901.36947640526,0,0,0,1153.67789684267 -5291,6573,11917,11918,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.63389661083208,9.429890077609338,0,9,-11,-118.7008579315053,0,2,2,2019,5,0,46,46,1,0,0,34.77771970514461,34.77771970514461,0,0,0,0,0,0,0,0,1.502339606870328,0,54.2,57.49,50.27,46.95,8.333333333333334,1,1,0,0,11,9,5,1,240.5,4207.877361877356,20387.7718876422,381874.431769023,280620.0102478752,5591.844920810323 -5291,6573,11918,11917,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.016382807776139,7.98625678239979,0,9,11,-93.60140616175987,0,3,3,2019,10,1,31,31,1,1,0,10.33791390400799,10.33791390400799,0,0,0,0,0,0,0,0,0,0,50.27,46.95,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,240.5,4207.877361877356,20387.7718876422,381874.431769023,280620.0102478752,5591.844920810323 -5292,6574,11919,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,6.746186240566152,6.701689115309807,0,0,0,-856.0982761788188,0,3,3,2019,18,6,16,33,1,6,0,6.191148813317114,6.191148813317114,0,0,0,0,0,1,1,0,0,0,33.5,60.13,-9,-9,5,1,1,0,0,10,9,2,1,214,375711.7949611616,163573.2940760843,101461.8001052807,0,1164.688226342319 -5292,6575,11920,-9,11919,-9,1,0,25,0,0,0,3,3,-9,0,2,5.77097371749897,5.92738432202896,0,0,0,-946.7967353832271,0,2,-9,2019,32,12,8,8,1,12,0,4.546193425855775,4.546193425855775,0,0,0,0,0,1,1,0,3.659058923642462,0,12.99,64.48999999999999,-9,-9,0,1,1,0,0,2,9,2,1,264,22396.16446978299,18326.34896506972,0,0,363.7529344482947 -5293,6576,11921,-9,11923,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.8769015265161,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,915.3333333333334,33196.81476511816,-24421.5341807256,0,0,2280.629173439221 -5293,6576,11922,-9,11923,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.721428630976,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,3,0,915.3333333333334,33196.81476511816,-24421.5341807256,0,0,2280.629173439221 -5293,6576,11923,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.646331834021346,7.896339081092389,4.86166970773189,0,0,-1015.660911658679,0,-9,-9,2019,19,7,32,16,1,7,0,10.06560605743892,10.06560605743892,0,0,0,0,0,1,1,0,4.748872925198969,0,40.08,51.71,-9,-9,5,1,1,0,0,13,1,3,0,915.3333333333334,33196.81476511816,-24421.5341807256,0,0,2280.629173439221 -5294,6577,11924,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.112632241273353,7.800771824458294,0,0,0,-1084.791963924327,0,1,2,2019,8,0,20,40,1,0,1,13.67337858865992,13.67337858865992,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,1384,-6136.061558013578,-68162.87809044242,0,0,1476.016904223673 -5295,6578,11925,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.282147609991765,7.710837380686039,6.200143356123167,0,0,-791.1936910789515,0,3,2,2019,10,0,26,26,1,0,0,8.295601501946283,8.295601501946283,0,0,0,0,0,1,1,0,5.027604171142953,6.139091997194489,62.39,56.71,-9,-9,10,1,1,0,0,7,2,3,1,4466,-103133.6657451985,93614.78598757752,0,0,855.407812278022 -5296,6579,11926,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.959645344429142,7.786210907618061,0,0,-925.4500742844587,0,2,1,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.52090230131465,40.36,53.52,-9,-9,3.333333333333333,3,4,0,1,3,7,3,1,983,593130.098331198,373821.608920212,263429.9100483453,0,2127.583688144524 -5297,6580,11927,11928,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.166822137160883,9.158619205789398,0,7,2,106.7341587928827,0,3,3,2019,9,0,45,50,1,0,0,22.56537164866475,22.56537164866475,0,0,0,0,2,0,0,0,2.9176585946906,0,54.37,54.8,35.78,41.87,6.666666666666667,1,1,0,0,8,12,5,1,937.5,510510.9965574592,185544.6776929444,93512.6332333835,31362.27153876231,4661.337113052588 -5297,6580,11928,11927,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.766856464911426,9.102045007809604,0,7,-2,13.07444672978381,0,3,3,2019,12,0,43,43,1,0,0,18.22015525538289,18.22015525538289,0,0,0,0,7,0,0,0,0,0,35.78,41.87,54.37,54.8,3.333333333333333,1,1,0,0,8,12,5,1,937.5,510510.9965574592,185544.6776929444,93512.6332333835,31362.27153876231,4661.337113052588 -5297,6581,11929,-9,11927,11928,1,1,22,0,0,0,1,1,-9,0,5,8.162916160984201,8.336011003000669,0,0,0,-996.5305623455705,0,1,2,2019,7,1,38,32,1,1,1,9.117435554443393,9.117435554443393,0,0,0,0,0,0,0,0,3.971713730418496,0,60.42,54.81,-9,-9,10,1,1,0,0,5,12,4,1,662,238536.274902126,0,0,0,1610.310990176608 -5298,6582,11930,11931,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,8.105703100406082,7.997487405171491,9,-1,140.1612905698448,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,8.154514741336079,45.96,38.67,45.03,26.85,6.666666666666667,1,1,0,0,0,11,3,1,340.5,763080.6779539802,0,261481.3362893247,0,2733.337056758726 -5298,6582,11931,11930,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.972957621050464,6.393505570896943,9,1,-173.7571922810222,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.575483166929845,45.03,26.85,45.96,38.67,8.333333333333334,1,1,0,0,4,11,3,1,340.5,763080.6779539802,0,261481.3362893247,0,2733.337056758726 -5299,6583,11932,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1011.301893483607,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,60.04,36.97,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,247,397119.650142849,0,267134.1039148687,0,109.2418374580134 -5299,6584,11933,-9,11932,-9,1,0,44,0,0,0,2,2,-9,0,3,7.853715061757477,8.004426912375051,0,0,0,-969.7447247286159,0,3,3,2019,12,1,38,38,1,1,0,7.233916431491703,7.233916431491703,0,0,0,0,2,1,1,0,0,0,57.92,32.74,-9,-9,5,1,1,0,0,9,10,4,0,114,223740.2288258048,-54017.22345356302,104434.2730749204,10496.849083127,1165.369049958537 -5300,6585,11934,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.454511571449528,8.306371665538265,0,0,0,-955.9453801177173,0,-9,2,2019,9,1,40,49,1,1,0,11.86749686125092,11.86749686125092,0,0,0,0,0,0,0,0,3.285773233814352,0,51.17,33.33,-9,-9,8.333333333333334,4,5,0,0,10,8,4,0,876,962837.8684822947,801739.678580531,97995.99326636251,20021.84922269488,1784.616215209382 -5301,6586,11935,-9,11936,11937,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.972180606707,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,600,195833.5675342645,146663.6300135429,0,0,2053.852304680837 -5301,6586,11936,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.572156511044886,8.443803991651098,5.68368789034523,0,0,-995.5204375232379,0,2,3,2019,11,0,37,37,1,0,0,14.26053154090963,14.26053154090963,0,0,0,0,0,1,1,0,5.771988752755936,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,600,195833.5675342645,146663.6300135429,0,0,2053.852304680837 -5301,6587,11937,-9,11936,-9,1,1,20,0,1,0,2,2,-9,0,5,7.824738672107499,7.920304153809214,0,0,0,-987.0376801243829,0,1,-9,2019,3,1,40,25,1,1,1,8.360625191139073,8.360625191139073,0,0,0,0,0,1,1,0,0,0,68.32000000000001,40.25,-9,-9,0,1,1,0,0,2,8,3,1,278,-53173.61450717659,0,0,0,1647.466890574765 -5302,6588,11938,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,8.580850117858427,8.551134185827131,0,0,-943.074559539077,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.484562222877463,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,109,1284481.803351109,788273.43795938,374975.2140536942,0,2483.392804105581 -5303,6589,11939,11940,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.732332668877569,7.69268937667534,0,20,4,78.59307435846286,0,-9,-9,2019,6,0,25,25,1,0,0,8.832128083842596,8.832128083842596,0,0,0,0,0,0,0,0,1.459325338867993,0,57.16,56.15,43.69,59.95,8.333333333333334,1,1,0,0,8,5,5,1,689.5,586414.4835866687,489799.4448529798,170954.897779323,71257.59673621078,7136.414674261799 -5303,6589,11940,11939,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.709168283979405,9.741073953281507,0,20,-4,91.27702935418573,0,3,3,2019,11,0,48,48,1,0,0,30.63850299985058,30.63850299985058,0,0,0,0,2,0,0,0,5.085883616056921,0,43.69,59.95,57.16,56.15,10,1,1,0,0,7,5,5,1,689.5,586414.4835866687,489799.4448529798,170954.897779323,71257.59673621078,7136.414674261799 -5303,6590,11941,-9,11939,11940,1,1,27,0,0,0,1,1,-9,0,4,8.207689853279398,8.26106008919114,0,0,0,-964.0450225256288,0,2,2,2019,10,0,37,37,1,1,1,15.34490015493491,15.34490015493491,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,6151,119113.6886735593,-59342.50280483053,0,0,1630.490653638358 -5304,6591,11942,11943,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.861182006565305,7.97675054534084,58,0,41.77920533664071,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.171809356632148,7.567846522164365,62.49,55.09,62.26,35.24,10,1,1,0,0,0,10,3,1,2950.5,875672.2018217847,300052.4576170713,444987.8548335251,0,3018.743997642713 -5304,6591,11943,11942,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.524609656697349,6.288061898811839,58,0,-63.97539685750738,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.441201385520373,0,2,1,1,0,0,6.736952757371575,62.26,35.24,62.49,55.09,10,1,1,0,0,0,10,3,1,2950.5,875672.2018217847,300052.4576170713,444987.8548335251,0,3018.743997642713 -5305,6592,11944,-9,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1132.209637080841,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,33.73,21.25,-9,-9,5,1,1,0,0,0,5,1,0,943,112930.7466435405,0,0,0,2225.337290712394 -5306,6593,11945,11947,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,8.072914787664425,8.017665519843165,0,8,2,-6.068350780053952,0,-9,-9,2019,12,0,32,35,1,0,0,12.50813310068314,12.50813310068314,0,0,0,0,0,1,1,0,0,0,41.48,52.55,52.01,48.98,5,1,1,0,0,9,12,5,1,187.3333333333333,199568.1055993193,66741.0142391664,338801.7859478505,169151.9909522928,4066.365427923607 -5306,6593,11946,-9,11945,11947,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.3011495421536,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,187.3333333333333,199568.1055993193,66741.0142391664,338801.7859478505,169151.9909522928,4066.365427923607 -5306,6593,11947,11945,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.826476061261729,8.725586630525601,0,8,-2,147.6044560406829,0,2,2,2019,6,0,43,62,1,0,0,17.04906367435939,17.04906367435939,0,0,0,0,0,1,1,0,0,0,52.01,48.98,41.48,52.55,6.666666666666667,1,1,0,0,9,12,5,1,187.3333333333333,199568.1055993193,66741.0142391664,338801.7859478505,169151.9909522928,4066.365427923607 -5307,6594,11948,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-977.4281904429909,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,7,6,1,1,177,42712.93981605948,0,0,0,588.4929764844525 -5307,6595,11949,-9,11948,-9,1,1,31,0,0,0,1,1,-9,0,4,8.264594041794117,7.750321796278379,0,0,0,-998.257167049661,0,2,-9,2019,10,1,38,33,1,1,0,12.39959902407531,12.39959902407531,0,0,0,0,0,1,1,0,3.109299325973155,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,1169,-66647.23777493165,-65865.78230105944,0,0,1608.869626706752 -5308,6596,11950,11951,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,52,4,43.26863717219928,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,752,506561.4527005789,205489.1967258539,113933.6173835187,0,1659.56686606418 -5308,6596,11951,11950,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.651748921723867,5.114496402554936,52,-4,-41.22262455769292,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.096716054165414,57.33,53.46,57.33,53.46,6.666666666666667,1,1,0,0,4,12,2,1,752,506561.4527005789,205489.1967258539,113933.6173835187,0,1659.56686606418 -5309,6597,11952,11953,-9,-9,1,0,48,0,0,0,3,3,-9,0,1,0,0,0,3,2,0,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.85,28.53,41.7,59.17,0,1,1,1,1,0,6,1,0,795,-94464.67036690065,-13729.64767586518,0,0,512.057850913937 -5309,6597,11953,11952,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,3,-2,0,0,2,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.7,59.17,23.85,28.53,1.666666666666667,1,1,1,1,0,6,1,0,795,-94464.67036690065,-13729.64767586518,0,0,512.057850913937 -5310,6598,11954,11957,-9,-9,1,1,51,0,2,0,2,2,0,0,4,0,0,0,15,7,80.55264110432223,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.1,59.99,42.7,22.54,6.666666666666667,1,1,0,0,0,10,2,0,582.25,0,0,0,0,2362.194582984984 -5310,6598,11955,-9,11957,11954,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.9872819291556,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,582.25,0,0,0,0,2362.194582984984 -5310,6598,11956,-9,11957,11954,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.9075202912924,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,582.25,0,0,0,0,2362.194582984984 -5310,6598,11957,11954,-9,-9,1,0,44,0,2,0,1,1,-9,1,1,6.641416293633497,6.612224678386357,0,15,-7,37.33886826737974,0,2,2,2019,16,5,19,0,1,5,0,3.757285489680662,3.757285489680662,0,0,0,0,42,1,1,0,0,0,42.7,22.54,46.1,59.99,5,1,1,0,0,0,10,2,0,582.25,0,0,0,0,2362.194582984984 -5311,6599,11958,-9,11959,-9,1,1,30,1,1,0,2,2,-9,0,3,6.694466959735174,6.5025475850646,0,0,0,-1053.922866927518,0,1,1,2019,5,0,16,12,1,0,1,6.89466744514815,6.89466744514815,0,0,0,0,0,1,0,1,0,0,55.96,49.93,-9,-9,5,3,4,0,0,6,4,2,1,591,-72450.80425852408,39672.13287502403,0,0,505.2777451340131 -5311,6600,11959,-9,-9,-9,1,0,53,1,1,0,2,2,-9,0,2,0,0,0,0,0,-931.3923983066912,0,-9,-9,2019,23,10,0,50,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,41.12,27.25,-9,-9,3.333333333333333,3,4,1,1,8,4,1,1,1236,-348880.1112772126,60216.73870914464,0,0,0 -5311,6601,11960,-9,11961,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.475436992378,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,1,1,320.5,0,0,0,0,438.401417810876 -5311,6601,11961,-9,11959,-9,1,0,28,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1088.894951964817,0,3,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,27.19,55.34,-9,-9,0,3,4,0,0,1,4,1,1,320.5,0,0,0,0,438.401417810876 -5312,6602,11962,-9,11963,11964,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.609919803758,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,772.6666666666666,111759.6061817146,52831.74841044777,321264.9801064508,226325.9356539472,2922.549373107993 -5312,6602,11963,11964,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,7.812892885907977,7.863084978674473,0,6,0,91.78677868125368,0,2,2,2019,7,0,24,24,1,0,0,11.36994444545087,11.36994444545087,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.96,53.17,8.333333333333334,1,1,0,0,7,9,4,1,772.6666666666666,111759.6061817146,52831.74841044777,321264.9801064508,226325.9356539472,2922.549373107993 -5312,6602,11964,11963,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.56200963061683,8.70965290346351,0,6,0,65.58979931355555,0,2,1,2019,9,0,41,38,1,0,0,18.39295367427851,18.39295367427851,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.69,57.47,10,1,1,0,0,6,9,4,1,772.6666666666666,111759.6061817146,52831.74841044777,321264.9801064508,226325.9356539472,2922.549373107993 -5313,6603,11965,11966,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.625898622870224,7.78144755723519,7,4,-47.5169230752896,0,3,2,2019,0,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.975133017076215,6.810717995299324,57.9,51.84,48.11,56.11,10,1,1,0,0,0,9,4,1,465.5,1414339.868014253,598880.9992061331,522845.0547901201,0,3613.419048741649 -5313,6603,11966,11965,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.607010587771605,7.242819777462036,7,-4,-99.26023598380134,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.6961595350134302,7.198544404732344,48.11,56.11,57.9,51.84,8.333333333333334,1,1,0,0,0,9,4,1,465.5,1414339.868014253,598880.9992061331,522845.0547901201,0,3613.419048741649 -5314,6604,11967,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.394858078400799,7.516177485322062,0,0,0,-1061.079630283841,0,2,2,2019,7,0,31,31,1,0,0,7.790367477368004,7.790367477368004,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,7,10,3,1,135,69364.41495557754,0,0,0,733.5907398321386 -5315,6605,11968,11969,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.32118092035372,7.985891132330791,0,7,1,114.8345503764512,0,-9,-9,2019,7,1,37,40,1,1,0,11.46992984114135,11.46992984114135,0,0,0,0,0,0,0,0,4.350778363045532,0,64.47,51.45,48.77,60.16,8.333333333333334,1,1,0,0,5,9,5,1,432.6666666666667,89375.25677782997,26670.56700256656,0,0,4225.20956085823 -5315,6605,11969,11968,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,9.246122287729433,8.77839371394408,0,7,-1,41.82751582655606,0,2,2,2019,6,0,50,67,1,0,0,26.13664744803811,26.13664744803811,0,0,0,0,0,0,0,0,5.025278524469092,0,48.77,60.16,64.47,51.45,8.333333333333334,1,1,0,0,8,9,5,1,432.6666666666667,89375.25677782997,26670.56700256656,0,0,4225.20956085823 -5315,6605,11970,-9,11968,11969,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.5697698003372,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,432.6666666666667,89375.25677782997,26670.56700256656,0,0,4225.20956085823 -5316,6606,11971,11972,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,6.979883166580907,7.037200902986077,0,7,-12,41.48733367385288,0,2,2,2019,11,2,18,0,1,2,0,6.607904547605986,6.607904547605986,0,0,0,0,0,1,1,0,0,0,41.9,59.14,58.15,52.91,6.666666666666667,1,1,0,0,9,5,4,1,751.3333333333334,570266.559349348,212929.0417079786,220543.8092086773,72203.19374748562,2478.241811263349 -5316,6606,11972,11971,-9,-9,1,1,50,1,1,0,2,2,-9,0,4,8.514236664906653,8.513014331061317,0,7,12,41.79162726299547,0,1,2,2019,9,0,45,45,1,0,0,13.19758663765471,13.19758663765471,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.9,59.14,8.333333333333334,1,1,0,0,9,5,4,1,751.3333333333334,570266.559349348,212929.0417079786,220543.8092086773,72203.19374748562,2478.241811263349 -5316,6606,11973,-9,11971,11972,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.2968016986022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,751.3333333333334,570266.559349348,212929.0417079786,220543.8092086773,72203.19374748562,2478.241811263349 -5317,6607,11974,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-786.4131835645654,-9,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.22,41.57,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,624,-85450.69271619139,0,0,0,999.7876044078449 -5318,6608,11975,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.902457323727166,8.033932048939484,0,0,0,-946.6949363824874,0,3,-9,2019,9,0,20,33,1,0,0,19.29526794249543,19.29526794249543,0,0,0,0,0,1,1,0,0,0,60.69,50.51,-9,-9,5,1,1,0,0,10,2,4,1,129,236188.4826940881,-39369.9032574224,89423.54215965011,0,963.202909330452 -5319,6609,11976,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,0,0,0,0,-984.5276131175918,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,67.59,12.61,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,780,-20689.96136792555,0,0,0,994.9790494554613 -5320,6610,11977,11978,-9,-9,1,0,54,0,0,0,3,3,-9,1,3,7.381645106679096,7.40145396302277,0,7,0,-91.24495485292674,0,3,3,2019,6,0,20,20,1,0,0,7.898875626706198,7.898875626706198,0,0,0,0,0,1,1,0,0,0,63.27,39.7,57.33,53.46,6.666666666666667,1,1,0,0,8,12,4,1,547,828137.7053755897,615504.2180225868,198848.8777213857,0,2699.645983977482 -5320,6610,11978,11977,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.312341457452925,8.436848382560525,0,7,9,20.98772260695145,0,2,3,2019,9,0,40,40,1,0,0,12.54200468636341,12.54200468636341,0,0,0,0,2,1,1,0,0,0,57.33,53.46,63.27,39.7,1.666666666666667,1,1,0,0,8,12,4,1,547,828137.7053755897,615504.2180225868,198848.8777213857,0,2699.645983977482 -5321,6611,11979,11980,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.692820926940193,8.762297068709309,0,6,-10,-111.7547638846424,0,2,2,2019,8,0,37,37,1,0,0,18.57616162897405,18.57616162897405,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,7,11,5,1,1048,519151.4751534289,343473.4116003365,341626.64291336,104570.1708088052,3246.617463658389 -5321,6611,11980,11979,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.599795112804628,7.77753555553135,6,10,-34.61491202345871,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.301265210594259,8.198951175637468,54.2,57.49,51.24,58.84,10,1,1,0,0,1,11,5,1,1048,519151.4751534289,343473.4116003365,341626.64291336,104570.1708088052,3246.617463658389 -5322,6612,11981,-9,11983,11982,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.912463924956,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1400.666666666667,1379563.84205394,343464.0228613137,727405.3452543985,81740.37671899491,4597.554527457307 -5322,6612,11982,11983,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,9.370178719033284,9.182165756736843,0,22,-2,-118.836358639662,0,2,3,2019,9,0,30,30,1,1,0,36.17460964173882,36.17460964173882,0,0,0,0,0,1,1,0,0,0,51,56,57.17,30.22,8,2,3,0,0,1,8,5,0,1400.666666666667,1379563.84205394,343464.0228613137,727405.3452543985,81740.37671899491,4597.554527457307 -5322,6612,11983,11982,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,6.76799998578533,6.821456010966528,0,22,2,37.42042798266531,0,3,3,2019,6,0,20,16,1,0,0,4.954867277962455,4.954867277962455,0,0,0,0,0,1,1,0,0,0,57.17,30.22,51,56,10,2,3,0,0,2,8,5,0,1400.666666666667,1379563.84205394,343464.0228613137,727405.3452543985,81740.37671899491,4597.554527457307 -5323,6613,11984,11985,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,9.779766501173576,9.901533165136142,0,5,-3,-47.59101951738171,0,3,3,2019,6,0,42,42,1,0,0,45.48319825044265,45.48319825044265,0,0,0,0,0,0,0,0,6.437532134038713,0,57.16,56.15,57.06,57.76,10,1,1,0,0,6,7,5,1,761.5,853868.8275816393,341663.9528766589,399249.083952671,77253.14377255275,10682.08170936326 -5323,6613,11985,11984,-9,-9,1,0,45,0,3,0,1,1,-9,0,5,7.949149124928563,8.040409576842025,0,5,3,13.76802470772571,0,2,1,2019,9,0,23,19,1,0,0,15.26261071714342,15.26261071714342,0,0,0,0,0,0,0,0,4.143556356721458,0,57.06,57.76,57.16,56.15,10,1,1,0,0,6,7,5,1,761.5,853868.8275816393,341663.9528766589,399249.083952671,77253.14377255275,10682.08170936326 -5324,6614,11986,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.38512612580957,5.371165472351288,0,0,-857.5995342463713,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.27757906826035,54,51,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,173,147668.3449963289,0,325611.472808397,0,241.9544531692257 -5325,6615,11987,11990,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.633153101928512,9.050070990795787,0,10,3,11.75659714722553,0,-9,-9,2019,17,6,44,44,1,6,0,15.57857162644127,15.57857162644127,0,0,0,0,0,1,1,0,0,0,35.83,58.16,29.72,47.06,8.333333333333334,1,1,0,0,10,12,5,1,1677.5,289670.1555711688,125991.5164179475,164888.1267052826,1142.602213860391,4577.684931848154 -5325,6615,11988,-9,11990,11987,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.772057732882,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1677.5,289670.1555711688,125991.5164179475,164888.1267052826,1142.602213860391,4577.684931848154 -5325,6615,11989,-9,11990,11987,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.921968617132,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1677.5,289670.1555711688,125991.5164179475,164888.1267052826,1142.602213860391,4577.684931848154 -5325,6615,11990,11987,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,8.690695846395508,8.486809261622623,0,10,-3,-13.54339905318295,0,2,2,2019,19,6,45,40,1,6,0,17.44106449089761,17.44106449089761,0,0,0,0,2,1,1,0,0,0,29.72,47.06,35.83,58.16,5,1,1,0,0,10,12,5,1,1677.5,289670.1555711688,125991.5164179475,164888.1267052826,1142.602213860391,4577.684931848154 -5326,6616,11991,-9,11993,11994,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-832.0710391261741,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,1,1226,104640.5661658634,66032.65366810854,97361.856774703,70315.05667174701,2512.488082669893 -5326,6616,11992,-9,11993,11994,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.197106248601,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1226,104640.5661658634,66032.65366810854,97361.856774703,70315.05667174701,2512.488082669893 -5326,6616,11993,11994,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,7.875346276787411,7.563630555309059,0,9,0,60.43878873792967,0,2,2,2019,12,0,30,61,1,0,0,9.60735693951788,9.60735693951788,0,0,0,0,2,1,1,0,0,0,46.61,56.93,54.37,54.8,6.666666666666667,1,1,0,0,10,4,3,1,1226,104640.5661658634,66032.65366810854,97361.856774703,70315.05667174701,2512.488082669893 -5326,6616,11994,11993,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,7.448857637392911,7.269158549346291,0,9,0,-95.80487884590381,0,1,2,2019,6,0,40,40,1,0,0,5.300151093461134,5.300151093461134,0,0,0,0,0,1,1,0,5.690053532502422,0,54.37,54.8,46.61,56.93,8.333333333333334,1,1,0,0,10,4,3,1,1226,104640.5661658634,66032.65366810854,97361.856774703,70315.05667174701,2512.488082669893 -5326,6616,11995,-9,11993,11994,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.621334544985,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,3,1,1226,104640.5661658634,66032.65366810854,97361.856774703,70315.05667174701,2512.488082669893 -5327,6617,11996,11997,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.036130463007639,8.105117156850735,49,-1,-90.08600302053323,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.658098403378602,8.335022206063494,63.48,49.15,38.91,60.5,8.333333333333334,1,1,0,0,6,4,4,1,980,1020643.22782464,597295.587422156,231857.9562513208,0,3682.901505638649 -5327,6617,11997,11996,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.174766900495311,7.378600159900615,49,1,-12.93367809052775,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.551017531988623,7.455085571145625,38.91,60.5,63.48,49.15,8.333333333333334,1,1,0,0,0,4,4,1,980,1020643.22782464,597295.587422156,231857.9562513208,0,3682.901505638649 -5328,6618,11998,11999,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.001875032929514,7.084292838195412,54,2,112.6821980208787,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.666664200874479,7.180344416748497,52.39,28.63,46,37,6.666666666666667,1,1,0,0,10,2,2,1,1534,463047.423287195,292202.2402449843,204095.1379336693,0,1070.702783359901 -5328,6618,11999,11998,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,54,-2,60.15431481988847,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,46,37,52.39,28.63,8.333333333333334,1,1,0,0,0,2,2,1,1534,463047.423287195,292202.2402449843,204095.1379336693,0,1070.702783359901 -5329,6619,12000,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1093.436442267117,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,287,-20297.62666076628,0,0,0,1208.689780084759 -5329,6620,12001,-9,-9,12000,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1006.828373744193,-9,3,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,26.97,61.89,-9,-9,5,1,1,0,0,1,13,1,0,650,-166463.3801987258,0,0,0,0 -5330,6621,12002,12003,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.871941132973231,6.831432205938051,6,18,10.68080104907729,0,3,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.004555147493088,38.06,31.47,52,54.51,6.666666666666667,1,1,0,0,0,8,4,1,419.5,1633697.371225583,771979.8629525793,733815.7409313279,0,3553.334863334738 -5330,6621,12003,12002,-9,-9,1,0,53,0,0,0,2,2,-9,1,3,8.600525330822382,8.70882331306375,0,6,-18,-56.06287717977646,0,2,3,2019,9,0,40,41,1,0,0,17.18813866524651,17.18813866524651,0,0,0,0,14.5,1,1,0,0,0,52,54.51,38.06,31.47,6.666666666666667,1,1,0,0,7,8,4,1,419.5,1633697.371225583,771979.8629525793,733815.7409313279,0,3553.334863334738 -5330,6622,12004,12005,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,7.892119808934484,8.075239303308827,0,1,-1,-107.8684956204393,-9,-9,-9,2019,18,7,45,0,1,7,0,7.631200411277836,7.631200411277836,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.81,59.91,5,1,1,0,0,1,8,4,1,462,-54876.07612566969,0,0,0,2531.203361839175 -5330,6622,12005,12004,12003,12002,1,0,23,0,0,0,1,1,1,0,4,7.806774078485677,7.906875440921731,0,1,1,-13.11291314646792,-9,2,3,2019,8,2,36,0,1,2,0,8.514826844499087,8.514826844499087,0,0,0,0,0,1,1,0,0,0,48.81,59.91,40.77,61.04,8.333333333333334,1,1,0,0,6,8,4,1,462,-54876.07612566969,0,0,0,2531.203361839175 -5331,6623,12006,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1044.498779140825,0,-9,2,2019,18,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.128526416632125,0,32.87,34.57,-9,-9,0,1,1,0,0,0,10,1,1,113,374065.941138246,0,220499.242538136,0,1888.593759102425 -5332,6624,12007,12008,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,9.736730820534818,9.555741688900717,0,9,0,-41.96829446489037,0,-9,-9,2019,8,0,45,50,1,0,0,40.32421871405372,40.32421871405372,0,0,0,0,0,0,0,0,9.778891982239328,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,11,5,1,279,697790.8622401147,419426.970456262,277741.6529544037,102718.2324415852,17953.66550513904 -5332,6624,12008,12007,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.200813470088171,8.418513003471581,0,9,0,54.5296177615142,0,2,2,2019,6,0,45,45,1,0,0,12.33459203138709,12.33459203138709,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,279,697790.8622401147,419426.970456262,277741.6529544037,102718.2324415852,17953.66550513904 -5333,6625,12009,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-865.0836213237686,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.43,36.36,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,481,122904.5371219655,0,0,0,1517.06568782328 -5334,6626,12010,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,2,0,8.094448832753876,8.308258742116964,0,0,-1033.672770747205,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,3.236486407478883,0,17.12739218700646,0,1,1,0,3.94232780084734,7.87802072415996,48.34,20.2,-9,-9,3.333333333333333,1,1,0,0,0,7,4,0,242,1981285.394292912,313992.9539305418,1558838.593974794,0,3108.222924243974 -5335,6627,12011,12012,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.865790231806042,8.823931595411326,0,37,0,-129.199720686076,0,3,3,2019,11,0,42,43,1,0,0,23.47349121667365,23.47349121667365,0,0,0,0,0,0,0,0,2.39081994576327,0,36.6,56.17,42.7,51.08,8.333333333333334,1,1,0,0,8,9,5,1,711.5,715336.6373373396,123772.207307096,541891.7816181078,10890.06499120799,3096.384562334916 -5335,6627,12012,12011,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.01841646680032,7.110742176277376,39,0,11.73898745646156,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.438280662942165,7.477211107279468,42.7,51.08,36.6,56.17,6.666666666666667,1,1,0,0,7,9,5,1,711.5,715336.6373373396,123772.207307096,541891.7816181078,10890.06499120799,3096.384562334916 -5336,6628,12013,12014,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.796836098013294,6.677874112632408,0,38,0,32.41756742326823,0,3,3,2019,8,0,20,18,1,0,0,5.21435152931278,5.21435152931278,0,0,0,0,0,0,0,0,0,0,54.9,54.53,54.04,47.89,10,1,1,0,0,7,7,4,1,409,778442.6926657277,535951.5287046158,231413.4472662568,0,2383.202787417418 -5336,6628,12014,12013,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.655736462259263,8.861136362970518,0,38,0,66.24462128960975,0,3,3,2019,12,2,50,55,1,2,0,10.89841441839393,10.89841441839393,0,0,0,0,0,0,0,0,0,0,54.04,47.89,54.9,54.53,8.333333333333334,1,1,0,0,9,7,4,1,409,778442.6926657277,535951.5287046158,231413.4472662568,0,2383.202787417418 -5336,6629,12015,-9,12013,12014,1,0,32,0,0,0,2,2,-9,0,2,8.232628526261927,8.263057484381365,0,0,0,-1024.17859063873,0,2,2,2019,22,6,45,45,1,6,1,9.106904463638806,9.106904463638806,0,0,0,0,0,0,0,0,0,0,36.19,55.28,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,341,-62461.27197549058,0,0,0,857.195789490856 -5337,6630,12016,12017,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,8,6,15.25430389772401,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.528643752475259,0,47.22,53.97,62.72,37.28,8.333333333333334,1,1,0,0,1,12,5,1,194.5,510221.6004950475,0,640165.4782111289,0,2874.176849637445 -5337,6630,12017,12016,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.728705898697005,9.01429951817236,0,8,-6,76.45740993011069,0,3,3,2019,12,0,46,47,1,0,0,17.03871041747831,17.03871041747831,0,0,0,0,0,1,1,0,3.187441672167302,0,62.72,37.28,47.22,53.97,8.333333333333334,1,1,0,0,9,12,5,1,194.5,510221.6004950475,0,640165.4782111289,0,2874.176849637445 -5338,6631,12018,12019,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.108741950342955,9.342296869802391,0,15,6,27.47714553294756,0,3,2,2019,32,11,56,65,1,11,0,19.33506210659538,19.33506210659538,0,0,0,0,0,0,0,0,6.896934381236353,0,26.75,58.2,60.02,56.42,1.666666666666667,1,1,0,0,10,6,5,1,231,147907.6081459796,142217.4644311973,294319.3025793859,250822.748093126,6177.209842424101 -5338,6631,12019,12018,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.72733033337261,8.386540230233924,0,15,-6,136.5195172689519,0,1,2,2019,7,0,42,45,1,0,0,18.11854551261789,18.11854551261789,0,0,0,0,0,0,0,0,6.814526692411298,0,60.02,56.42,26.75,58.2,8.333333333333334,1,1,0,0,8,6,5,1,231,147907.6081459796,142217.4644311973,294319.3025793859,250822.748093126,6177.209842424101 -5339,6632,12020,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.263880702465582,7.602177144564543,5.510924150419982,0,0,-908.8280702771301,0,-9,-9,2019,10,0,24,24,1,0,0,6.499397091417077,6.499397091417077,0,0,0,2.701424422306241,2,1,1,0,5.917824483237562,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,1037.333333333333,0,0,0,0,1199.735206464419 -5339,6632,12021,-9,12020,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.540262078491,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1037.333333333333,0,0,0,0,1199.735206464419 -5339,6632,12022,-9,12020,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.514527352319,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,1037.333333333333,0,0,0,0,1199.735206464419 -5340,6633,12023,12024,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.04957969122532,9.152931715614908,0,9,-1,-85.83114410435465,0,2,2,2019,8,0,40,40,1,0,0,27.98751094429215,27.98751094429215,0,0,0,0,7,0,0,0,1.611174033270395,0,58.05,54.52,59.3,39.29,8.333333333333334,1,1,0,0,10,11,5,0,859.5,1364212.869628775,1114996.869927115,531851.328645836,152917.5670805532,6429.740963343771 -5340,6633,12024,12023,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.248206810239877,9.1343011410162,0,9,1,-20.27400863838722,0,2,2,2019,9,2,38,47,1,2,0,30.35037401594353,30.35037401594353,0,0,0,0,0,0,0,0,0,0,59.3,39.29,58.05,54.52,8.333333333333334,1,1,0,0,9,11,5,0,859.5,1364212.869628775,1114996.869927115,531851.328645836,152917.5670805532,6429.740963343771 -5341,6634,12025,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,5,0,6.151983789483459,6.317622326523545,0,0,-1073.825989772527,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,12.33876409773525,0,0,1,1,0,0,6.271715571582578,65.12,32.33,-9,-9,10,3,4,0,0,0,8,2,0,396,513272.1422397353,-10355.83167018696,349438.0899550784,0,1656.297557526248 -5342,6635,12026,12027,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.558915316480904,8.562632370754132,0,12,4,9.35992835849609,0,2,1,2019,9,0,30,46,1,0,0,25.51386768644043,25.51386768644043,0,0,0,0,0,1,1,0,0,0,48,51,49.5,48.94,8.333333333333334,1,1,0,0,12,6,5,1,2526.333333333333,1073028.269635254,480641.0241121527,531121.4145019851,4467.051990653582,4308.627212236376 -5342,6635,12027,12026,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.933853990519594,8.575829811287688,0,14,-4,-103.2642806027495,0,2,3,2019,12,0,45,50,1,0,0,16.42951476128804,16.42951476128804,0,0,0,0,0,1,1,0,0,0,49.5,48.94,48,51,10,2,3,0,0,12,6,5,1,2526.333333333333,1073028.269635254,480641.0241121527,531121.4145019851,4467.051990653582,4308.627212236376 -5342,6635,12028,-9,12027,12026,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.27146098059,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,1,2526.333333333333,1073028.269635254,480641.0241121527,531121.4145019851,4467.051990653582,4308.627212236376 -5343,6636,12029,-9,12030,12031,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.6214218634453,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1063.333333333333,-86430.13825475886,9886.52880274493,95683.3352244366,27077.24727728599,3571.794403915949 -5343,6636,12030,12031,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.669182391338602,7.638868471043724,0,4,-3,-6.781476847225458,0,-9,-9,2019,16,5,34,39,1,5,0,5.038616839188198,5.038616839188198,0,0,0,0,0,1,1,0,7.221997505311049,0,45.48,52.14,46.91,43.09,8.333333333333334,1,1,0,0,3,2,4,1,1063.333333333333,-86430.13825475886,9886.52880274493,95683.3352244366,27077.24727728599,3571.794403915949 -5343,6636,12031,12030,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.459336032810493,8.305831729552752,0,4,3,-83.02915003328263,0,2,2,2019,12,0,42,42,1,0,0,13.71985915471752,13.71985915471752,0,0,0,0,0,1,1,0,0,0,46.91,43.09,45.48,52.14,6.666666666666667,1,1,0,0,5,2,4,1,1063.333333333333,-86430.13825475886,9886.52880274493,95683.3352244366,27077.24727728599,3571.794403915949 -5344,6637,12032,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.146452858712809,6.810103866802375,0,0,-984.5535666888568,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.818694657529568,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1891,424372.9555616459,81016.57432751314,170159.6837678902,0,1355.343821055179 -5345,6638,12033,12034,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.220674392431707,8.234949381400863,0,8,-2,-79.49766817169716,0,2,2,2019,12,0,39,39,1,0,0,10.61650500177684,10.61650500177684,0,0,0,0,0,1,1,0,0,0,61.27,46.03,12.37,58.32,8.333333333333334,1,1,0,0,9,11,3,1,407.5,22780.64477981939,2542.498495603898,0,0,2258.917723924501 -5345,6638,12034,12033,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,7.131879392372117,6.84199693818513,0,8,2,-38.97851838576847,0,3,2,2019,27,12,16,16,1,12,0,7.988633980426612,7.988633980426612,0,0,0,0,0,1,1,0,0,0,12.37,58.32,61.27,46.03,0,1,1,0,0,9,11,3,1,407.5,22780.64477981939,2542.498495603898,0,0,2258.917723924501 -5346,6639,12035,-9,12036,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.551391466219,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,690,120454.6861123989,84189.41143529798,0,0,1712.628262222064 -5346,6639,12036,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.091823808079281,8.50153870132266,6.605956514196953,0,0,-923.0329400357876,0,2,2,2019,17,5,33,35,1,5,0,13.36911510919454,13.36911510919454,0,0,0,.9523967839192622,0,1,1,0,6.899940349789147,0,34.46,58.24,-9,-9,5,1,1,0,0,10,6,4,1,690,120454.6861123989,84189.41143529798,0,0,1712.628262222064 -5347,6640,12037,12038,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,8.000269479162007,8.083373324849754,62,2,-48.44788053068686,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.858515876646148,8.22216992603984,59.21,43.05,55.71,40.47,8.333333333333334,1,1,0,0,0,12,4,1,540,1278148.228284282,810889.4271124561,239828.0360349185,0,3438.839792965931 -5347,6640,12038,12037,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.911299986109158,7.560676346195114,62,-2,15.67250657683344,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.294154425991188,55.71,40.47,59.21,43.05,8.333333333333334,1,1,0,0,0,12,4,1,540,1278148.228284282,810889.4271124561,239828.0360349185,0,3438.839792965931 -5348,6641,12039,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.068341816999483,5.868575392947312,0,0,-1087.592633022425,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.015599669264577,6.014244486406802,55.73,53.98,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,578,713256.8793254781,107828.7036744514,360299.533240951,0,426.9596650217312 -5348,6642,12040,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,1,7.90075638485987,8.196446781773417,0,0,0,-954.1269458766982,-9,-9,-9,2019,28,11,35,0,1,11,0,12.51361605629991,12.51361605629991,0,0,0,0,0,1,1,0,.4343329458528238,0,29.43,41.01,-9,-9,0,1,1,0,0,5,8,4,1,2500,-67862.74831194045,-145141.3231581317,0,0,1609.283830513844 -5349,6643,12041,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1054.9776011475,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.79,25.03,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,271,124053.6203081003,10430.96994155771,0,0,1726.510849526431 -5349,6644,12042,-9,-9,12041,1,0,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-990.002216701606,-9,-9,3,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,7,1,1,0,0,0,34.63,58.23,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,2275,45473.89670809593,0,0,0,361.5934566776663 -5350,6645,12043,12044,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,9.072236730773655,9.177592012852081,0,14,1,-2.072114309669339,0,2,2,2019,11,2,42,40,1,2,0,23.58574115381997,23.58574115381997,0,0,0,0,0,1,1,0,0,0,42.78,50.88,40.98,52.59,8.333333333333334,1,1,0,0,11,9,5,1,638.5,554421.6153442467,258599.905592047,486105.6930125908,179575.0513927999,4068.255437992192 -5350,6645,12044,12043,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.359642477214615,7.311760137530272,0,14,-1,20.31476984920643,0,2,2,2019,16,5,30,20,1,5,0,6.512300501625414,6.512300501625414,0,0,0,0,0,1,1,0,0,0,40.98,52.59,42.78,50.88,5,1,1,0,0,9,9,5,1,638.5,554421.6153442467,258599.905592047,486105.6930125908,179575.0513927999,4068.255437992192 -5350,6645,12045,-9,12043,12044,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.2699400963918,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,638.5,554421.6153442467,258599.905592047,486105.6930125908,179575.0513927999,4068.255437992192 -5350,6645,12046,-9,12043,12044,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.799670258833,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,638.5,554421.6153442467,258599.905592047,486105.6930125908,179575.0513927999,4068.255437992192 -5351,6646,12047,-9,-9,-9,1,0,32,0,2,0,1,1,-9,1,2,7.83146349672103,7.812244318190245,0,0,0,-1058.786888106126,0,3,2,2019,12,1,34,30,1,1,0,7.111821279692243,7.111821279692243,0,0,0,0,0,1,0,1,0,0,43.75,39.82,-9,-9,8.333333333333334,1,1,0,0,12,9,3,0,2483.5,146989.0703214015,-36153.9908379904,0,0,1598.779962076983 -5351,6646,12048,-9,12047,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.68093521181,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,2483.5,146989.0703214015,-36153.9908379904,0,0,1598.779962076983 -5352,6647,12049,12050,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,0,0,0,30,-4,-100.4512185854248,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.94,46.47,50.23,47.06,6.666666666666667,1,1,0,1,0,8,2,1,309.5,295265.5786498289,0,453629.2399412675,128925.5581336516,767.1876998586279 -5352,6647,12050,12049,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.323660615115378,7.324337915631846,0,30,4,-2.342009305437947,0,3,3,2019,11,0,40,60,1,0,0,4.033616142234961,4.033616142234961,0,0,0,0,0,1,1,0,0,0,50.23,47.06,45.94,46.47,8.333333333333334,4,5,0,1,9,8,2,1,309.5,295265.5786498289,0,453629.2399412675,128925.5581336516,767.1876998586279 -5352,6648,12051,-9,12049,12050,1,0,26,0,1,0,1,1,-9,0,4,8.384637045663577,8.526054271493537,0,0,0,-1026.90945568103,-9,3,3,2019,35,12,36,0,1,12,1,12.74357621447262,12.74357621447262,0,0,0,0,0,1,1,0,0,0,0,73.59,-9,-9,0,4,5,0,0,6,8,4,1,129,103846.1954391502,-41732.08771330599,0,0,2028.844241586866 -5352,6649,12052,-9,12049,12050,1,0,22,0,1,1,2,0,0,0,3,0,5.053455563266326,4.821559769130443,0,0,-1129.078197968506,-9,3,3,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,5.593215835815516,0,49.92,42.12,-9,-9,8.333333333333334,4,5,0,1,1,8,2,1,222,91427.91356378797,0,0,0,674.4720403738188 -5353,6650,12053,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.121352105016777,9.103166134357851,0,0,0,-1037.821645444634,-9,-9,-9,2019,6,0,43,0,1,0,0,22.6844991467206,22.6844991467206,0,0,0,0,0,1,1,0,7.573278270524235,0,59.43,58.05,-9,-9,10,1,1,0,0,12,9,5,1,166,-222174.1556492331,81311.31083902618,0,0,3628.566164225554 -5354,6651,12054,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.890271355792891,8.929687959120923,8.398241004888121,0,0,-945.4846810856542,-9,-9,-9,2019,7,2,16,0,1,2,0,25.50390506457441,25.50390506457441,0,0,0,0,0,1,1,0,8.143407953424926,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,1,6,8,5,0,815,137323.9905889004,26369.60596476588,0,0,4313.282525793682 -5354,6651,12055,-9,12054,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1115.258262824266,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,5,0,815,137323.9905889004,26369.60596476588,0,0,4313.282525793682 -5355,6652,12056,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.618857916092361,7.617627326133678,0,0,-950.9126519907875,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,4.298292375740874,7.553200338878227,62.25,48.33,-9,-9,8.333333333333334,1,1,0,0,6,12,3,0,1311,532015.274562832,328982.7423543963,163192.8063011485,0,293.1762147708953 -5356,6653,12057,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,8.410029129633955,8.761599953842628,0,0,0,-1006.143368495032,0,-9,-9,2019,17,6,30,20,1,6,0,17.58661113639886,17.58661113639886,0,0,0,0,0,1,1,0,1.114688585008295,0,47,49,-9,-9,6.666666666666667,3,4,0,0,12,8,4,1,819.5,383553.3684197669,0,476390.9283095602,0,1604.907107467232 -5356,6653,12058,-9,12057,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1052.610554536464,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,3,4,-9,0,0,8,4,1,819.5,383553.3684197669,0,476390.9283095602,0,1604.907107467232 -5357,6654,12059,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.959191613211771,5.119431044604569,0,0,-1015.323472894821,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.915143771760741,44.04,40.37,-9,-9,10,1,1,0,0,0,6,2,1,833,261753.0410528129,60122.68454845784,200932.4178818819,0,811.8310630533987 -5358,6655,12060,12061,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.840815336688111,7.644988814971101,0,30,-4,38.87094188066037,0,2,2,2019,6,0,28,30,1,0,0,10.60455767826022,10.60455767826022,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,8,10,3,0,1460.5,177919.2765926096,73236.36191115006,179190.3320575532,0,1723.352269242124 -5358,6655,12061,12060,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.370922504354974,7.257959429836119,0,6,4,-102.0074648745158,0,2,2,2019,6,0,40,12,1,0,0,3.863346325586605,3.863346325586605,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.06,57.76,6.666666666666667,1,1,0,0,8,10,3,0,1460.5,177919.2765926096,73236.36191115006,179190.3320575532,0,1723.352269242124 -5359,6656,12062,12064,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.254236556531724,8.276659661784155,0,24,2,-40.36803335368226,0,2,1,2019,9,0,36,36,1,0,0,12.10790698745669,12.10790698745669,0,0,0,0,0,1,1,0,0,0,46.98,53.82,51.33,30.29,8.333333333333334,1,1,0,1,10,8,3,1,338.75,160279.5780446112,115777.5310615927,249259.2592367048,136956.0740946561,2381.34428028491 -5359,6656,12063,-9,12064,12062,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.6300182999353,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,3,1,338.75,160279.5780446112,115777.5310615927,249259.2592367048,136956.0740946561,2381.34428028491 -5359,6656,12064,12062,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.294703049414667,7.39616334415373,0,23,-2,88.81808501861018,0,2,2,2019,12,4,17,17,1,4,0,8.257542093015616,8.257542093015616,0,0,0,0,0,1,1,0,.2729094929503648,0,51.33,30.29,46.98,53.82,8.333333333333334,1,1,0,0,4,8,3,1,338.75,160279.5780446112,115777.5310615927,249259.2592367048,136956.0740946561,2381.34428028491 -5359,6656,12065,-9,12064,12062,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.993250783015,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,338.75,160279.5780446112,115777.5310615927,249259.2592367048,136956.0740946561,2381.34428028491 -5360,6657,12066,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-948.8560666411025,-9,-9,-9,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1.278495111711627,0,49.36,58.53,-9,-9,8.333333333333334,1,1,0,0,2,5,1,0,305,0,0,0,0,-282.9606272893457 -5361,6658,12067,-9,12070,12068,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1028.484500261855,1,2,2,2019,11,0,0,5,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,4,8,1,1,767,1297.27901766156,0,0,0,0 -5361,6659,12068,12070,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.43507992126386,8.666263494995865,0,22,0,-185.7964358760623,0,2,3,2019,9,0,39,35,1,1,0,16.44267533806137,16.44267533806137,0,0,0,0,0,1,1,0,2.229678721774933,0,53,55,51,54,8,2,3,0,0,10,8,3,1,693.3333333333334,404969.530660291,171727.4748884695,174067.0080899542,0,3204.830842822099 -5361,6659,12069,-9,12070,12068,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.335878745731,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,693.3333333333334,404969.530660291,171727.4748884695,174067.0080899542,0,3204.830842822099 -5361,6659,12070,12068,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,0,6.408621125564114,6.32732332478715,22,0,138.9857332188131,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.566179228719006,0,51,54,53,55,8,2,3,0,1,0,8,3,1,693.3333333333334,404969.530660291,171727.4748884695,174067.0080899542,0,3204.830842822099 -5361,6660,12071,-9,12070,12068,1,1,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-943.3649602223013,-9,2,2,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,2,3,0,0,5,8,1,1,317,-8758.097645826148,0,0,0,0 -5362,6661,12072,12074,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.691835096706064,7.480320206226025,0,19,-10,106.6050892353896,0,2,2,2019,12,2,27,34,1,2,0,11.05126193943155,11.05126193943155,0,0,0,0,0,1,1,0,2.994055500157051,0,43.33,45.83,54.37,54.8,8.333333333333334,1,1,0,0,8,9,4,1,2183.333333333333,217740.8233087029,111339.4020454617,305936.6612797267,175406.3884486026,3018.936415732091 -5362,6661,12073,-9,12072,12074,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.5643278483868,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,9,4,1,2183.333333333333,217740.8233087029,111339.4020454617,305936.6612797267,175406.3884486026,3018.936415732091 -5362,6661,12074,12072,-9,12075,1,1,47,0,1,0,2,2,-9,0,3,8.830643062748115,8.456816702182742,0,5,10,-90.96699149481648,0,3,3,2019,7,0,40,40,1,0,0,14.85687702616099,14.85687702616099,0,0,0,0,14.5,1,1,0,3.543329147093064,0,54.37,54.8,43.33,45.83,8.333333333333334,1,1,0,0,8,9,4,1,2183.333333333333,217740.8233087029,111339.4020454617,305936.6612797267,175406.3884486026,3018.936415732091 -5362,6662,12075,-9,-9,-9,1,1,82,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1070.697232258277,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.89058156155895,0,55,45,-9,-9,7,1,1,0,0,0,9,1,1,543,38815.22408185712,0,0,0,298.6395238222888 -5362,6663,12076,-9,12072,12074,1,0,18,0,1,0,2,2,1,0,4,7.34791694753876,7.370958305676719,0,0,0,-876.0312505926712,-9,2,2,2019,6,0,50,0,1,0,1,2.477845648975942,2.477845648975942,0,0,0,0,0,1,1,0,1.433694211397724,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,943,-73649.17722979769,0,0,0,221.6359396945774 -5363,6664,12077,12078,-9,-9,1,1,47,0,3,0,1,1,-9,0,3,8.782275434353341,8.639027915221893,0,28,0,-83.86316029807544,0,3,3,2019,16,5,45,45,1,5,0,21.68410869279577,21.68410869279577,0,0,0,0,0,1,1,0,0,0,47.78,48.15,47.28,50.99,8.333333333333334,1,1,0,0,11,12,4,1,877.6,111890.6489864685,77418.20612183782,258823.7499218388,203434.6437730191,4410.215815125406 -5363,6664,12078,12077,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,8.304914566758468,8.440969639358054,0,28,0,-22.66666665579735,0,3,3,2019,9,0,40,39,1,0,0,13.07466898845088,13.07466898845088,0,0,0,0,0,1,1,0,0,0,47.28,50.99,47.78,48.15,8.333333333333334,1,1,0,0,10,12,4,1,877.6,111890.6489864685,77418.20612183782,258823.7499218388,203434.6437730191,4410.215815125406 -5363,6664,12079,-9,12078,12077,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.929248435074,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,877.6,111890.6489864685,77418.20612183782,258823.7499218388,203434.6437730191,4410.215815125406 -5363,6664,12080,-9,12078,12077,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.9976335874818,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,877.6,111890.6489864685,77418.20612183782,258823.7499218388,203434.6437730191,4410.215815125406 -5363,6664,12081,-9,12078,12077,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1029.73971405025,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,877.6,111890.6489864685,77418.20612183782,258823.7499218388,203434.6437730191,4410.215815125406 -5364,6665,12082,12083,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.545899068647259,7.681382135315689,53,1,128.8562970996688,0,1,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.995363799289545,7.171428041041414,61.42,43.2,35.69,38.14,10,1,1,0,0,2,10,3,1,537.5,737639.945069609,0,435786.4059925578,0,2113.64590263473 -5364,6665,12083,12082,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,53,-1,-64.67275749065755,0,3,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.69,38.14,61.42,43.2,10,1,1,0,0,4,10,3,1,537.5,737639.945069609,0,435786.4059925578,0,2113.64590263473 -5365,6666,12084,12085,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.504744502012623,5.75156536282532,8,6,-149.823662391624,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.319522189089101,5.999028909781988,56.92,49.39,48.65,51.93,8.333333333333334,1,1,0,0,6,9,4,1,642,1690442.534761447,1056043.422504669,352321.5307934317,0,2512.333030702793 -5365,6666,12085,12084,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.269095304402331,8.449251499234624,0,8,-6,-68.0633854642314,0,3,3,2019,9,0,50,51,1,0,0,10.44643841921064,10.44643841921064,0,0,0,0,0,1,1,0,2.847115898464317,0,48.65,51.93,56.92,49.39,8.333333333333334,1,1,0,0,9,9,4,1,642,1690442.534761447,1056043.422504669,352321.5307934317,0,2512.333030702793 -5366,6667,12086,-9,12087,12088,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.204290367883,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,1267,618021.7227451367,-3906.271296569095,206581.5127491234,99573.86013901276,2687.851574868523 -5366,6667,12087,12088,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,8.554565438939342,8.139519897302515,0,5,-3,-.722171501464832,0,3,3,2019,8,0,32,43,1,0,0,14.89729554469187,14.89729554469187,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.33,53.44,8.333333333333334,1,1,0,0,6,5,4,1,1267,618021.7227451367,-3906.271296569095,206581.5127491234,99573.86013901276,2687.851574868523 -5366,6667,12088,12087,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,7.844572239320216,8.32181174899126,0,5,3,39.33355282564882,0,-9,-9,2019,11,1,45,52,1,1,0,8.072977041717246,8.072977041717246,0,0,0,0,0,1,1,0,0,0,54.33,53.44,54.79,55.86,8.333333333333334,1,1,0,0,3,5,4,1,1267,618021.7227451367,-3906.271296569095,206581.5127491234,99573.86013901276,2687.851574868523 -5367,6668,12089,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-980.8363141399286,0,-9,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.97,24.53,-9,-9,0,1,1,0,0,0,12,1,0,800,41783.96190411458,-15316.94668290687,0,0,266.769101584501 -5368,6669,12090,-9,12094,12092,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.0281146106387,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,1239.6,176998.5663809903,17049.49230320765,268838.1282645128,161061.9161599014,2247.317175212122 -5368,6669,12091,-9,12094,12092,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.160184028776,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,1239.6,176998.5663809903,17049.49230320765,268838.1282645128,161061.9161599014,2247.317175212122 -5368,6669,12092,12094,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.406339565476447,8.172190123186208,0,25,0,99.62394739086392,0,2,2,2019,12,0,38,38,1,0,0,12.04483123382538,12.04483123382538,0,0,0,0,0,1,1,0,0,0,48.87,58.55,53.76,51.1,6.666666666666667,1,1,0,0,12,1,3,1,1239.6,176998.5663809903,17049.49230320765,268838.1282645128,161061.9161599014,2247.317175212122 -5368,6669,12093,-9,12094,12092,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.566822087844,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1239.6,176998.5663809903,17049.49230320765,268838.1282645128,161061.9161599014,2247.317175212122 -5368,6669,12094,12092,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,0,0,0,25,0,41.69448757395219,0,2,3,2019,13,2,0,11,3,2,0,0,0,0,0,0,0,0,1,1,0,3.777137239345056,0,53.76,51.1,48.87,58.55,8.333333333333334,1,1,0,0,11,1,3,1,1239.6,176998.5663809903,17049.49230320765,268838.1282645128,161061.9161599014,2247.317175212122 -5369,6670,12095,12096,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.398705017773221,8.211209132184589,0,7,8,3.864695412164896,0,3,3,2019,11,1,40,45,1,1,0,10.98376800364651,10.98376800364651,0,0,0,0,7,0,0,0,2.862356185344874,0,48.18,61.8,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,741,534657.8869537319,281336.3344756073,190587.249137491,176013.1568248529,2739.936243323424 -5369,6670,12096,12095,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.159591010877314,8.14292301355008,0,7,-8,-52.13968731201804,0,-9,-9,2019,9,0,37,36,1,0,0,10.41398676506722,10.41398676506722,0,0,0,0,2,0,0,0,0,0,54.1,59.11,48.18,61.8,8.333333333333334,1,1,0,0,11,12,5,1,741,534657.8869537319,281336.3344756073,190587.249137491,176013.1568248529,2739.936243323424 -5370,6671,12097,12098,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,8.152147174041852,8.618221594202199,7.059760861812021,6,-3,79.73213711953831,0,3,3,2019,8,0,6,25,1,0,0,62.70423515021002,62.70423515021002,0,0,0,0,0,1,1,0,6.449507361804719,6.976851789336791,47.31,48.36,43.98,48.44,8.333333333333334,1,1,0,0,7,13,5,1,460,1668357.778088543,1489222.700596798,233193.7370403722,0,5280.292696709508 -5370,6671,12098,12097,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.896238031386512,8.436395254592016,7.273373188571664,6,3,-1.608280300841496,-9,3,2,2019,11,0,22,0,1,0,0,17.23840261005961,17.23840261005961,0,0,0,0,2,1,1,0,0,7.228063075474894,43.98,48.44,47.31,48.36,6.666666666666667,1,1,0,0,7,13,5,1,460,1668357.778088543,1489222.700596798,233193.7370403722,0,5280.292696709508 -5370,6672,12099,-9,12098,12097,1,0,27,0,0,0,1,1,-9,0,4,9.63619376180886,9.55884210057298,0,0,0,-992.3077006142734,-9,2,2,2019,9,0,45,0,1,0,1,36.56111926644967,36.56111926644967,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,327,-83449.14599369551,-25807.14426389919,0,0,6407.726180022745 -5371,6673,12100,12101,-9,-9,1,1,44,0,0,0,3,3,-9,1,5,0,0,0,6,-7,0,0,2,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,46.28,40.78,30.67,27.98,10,1,1,0,0,1,6,1,0,600.5,-126534.5950763732,53567.41175943441,0,0,2546.432326826235 -5371,6673,12101,12100,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,6,7,0,0,-9,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,30.67,27.98,46.28,40.78,6.666666666666667,1,1,0,0,0,6,1,0,600.5,-126534.5950763732,53567.41175943441,0,0,2546.432326826235 -5372,6674,12102,12103,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.888744915754679,7.740275556295614,45,3,-13.14549106472862,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.120756023389846,7.511008089887412,52.33,54.66,48.61,56.07,8.333333333333334,1,1,0,0,5,2,3,1,134,1248453.699810662,756077.3301756135,369009.9367484255,0,2326.574330204266 -5372,6674,12103,12102,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.054704567712603,6.368170683896117,45,-3,-21.59538079315576,0,2,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.340572447166035,6.183724591044292,48.61,56.07,52.33,54.66,10,1,1,0,0,3,2,3,1,134,1248453.699810662,756077.3301756135,369009.9367484255,0,2326.574330204266 -5373,6675,12104,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,5,6.905627207289083,6.97208184067654,0,0,0,-1014.339576996949,0,2,2,2019,6,0,18,25,1,0,0,6.643390168913863,6.643390168913863,0,0,0,0,0,1,1,0,0,0,52.32,57.18,-9,-9,10,1,1,0,1,2,13,2,0,1899,67431.63629697774,0,0,0,1290.386568079391 -5373,6675,12105,-9,12104,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.240094700115,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,1899,67431.63629697774,0,0,0,1290.386568079391 -5374,6676,12106,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.675829987450181,8.459085192276126,0,0,0,-914.3977637219192,0,3,3,2019,14,2,44,83,1,2,0,16.97692727636988,16.97692727636988,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,612,-3736.76178638704,-38624.09725670086,250596.3598053356,141528.0912613192,1420.96083992321 -5375,6677,12107,-9,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.425962092604058,8.082705551792946,0,0,0,-994.6370614693109,-9,2,2,2019,14,3,50,0,1,3,0,10.49468313849907,10.49468313849907,0,0,0,0,0,0,0,0,1.154330014072683,0,36.5,53.49,-9,-9,5,1,1,0,0,10,11,4,1,227.5,282485.0852901484,240170.9564833951,203896.6973886112,112272.6046547043,2096.525624074463 -5375,6677,12108,-9,-9,12107,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.083226898753,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,227.5,282485.0852901484,240170.9564833951,203896.6973886112,112272.6046547043,2096.525624074463 -5376,6678,12109,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.35476794920536,6.936702111102631,0,0,0,-935.6845270728126,0,3,2,2019,8,0,20,0,1,0,0,7.463859466043902,7.463859466043902,0,0,0,0,0,1,1,0,4.162773710145362,0,50.26,49.78,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,526,354964.1523490737,280544.4320537043,144735.2832046487,96317.60483675422,888.0369673228586 -5377,6679,12110,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.440334808700309,8.337928524033691,0,0,0,-937.304856305428,-9,2,2,2019,7,0,41,0,1,0,0,16.04611957156638,16.04611957156638,0,0,0,0,0,0,0,0,6.279525350650643,0,57.33,53.46,-9,-9,10,1,1,0,0,9,7,5,1,574,45876.39852091164,77951.19768375903,215111.330823398,58233.44193226023,1563.565561551051 -5378,6680,12111,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.381170832294391,7.325148300822386,0,0,0,-817.2356358283726,0,3,2,2019,6,0,21,21,1,0,0,9.723288362531047,9.723288362531047,0,0,0,0,0,0,0,0,1.287450600926858,0,56.12,49.91,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1268,153725.7822692636,0,0,0,194.5796843266495 -5378,6681,12112,-9,12111,-9,1,0,22,0,0,0,2,2,-9,0,4,8.328748980798553,7.921555049157236,0,0,0,-1013.1571282624,-9,2,2,2019,11,0,37,0,1,0,1,9.929211753895171,9.929211753895171,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1885,-49585.83038410712,-94591.32481635247,0,0,1499.673756627333 -5379,6682,12113,12114,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.720809154377086,7.789082175186817,42,4,-64.56537022888925,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.822439158816602,8.149760711570124,58.15,52.91,51.14,60.45,8.333333333333334,1,1,0,0,4,6,3,1,487.5,972186.0005337982,870156.6834651959,125598.8654984274,4562.343500596913,3230.081555539515 -5379,6682,12114,12113,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,6.73978813273121,6.823684407574365,6,-4,60.17158173987768,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.269946677767606,6.792484505252992,51.14,60.45,58.15,52.91,8.333333333333334,1,1,0,0,6,6,3,1,487.5,972186.0005337982,870156.6834651959,125598.8654984274,4562.343500596913,3230.081555539515 -5380,6683,12115,12116,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,5.8436427999806,5.790805715518386,0,10,8,99.01611642436228,0,2,2,2019,18,6,2,0,1,6,0,23.52052841838399,23.52052841838399,0,0,0,0,14.5,0,0,0,0,0,28.54,50.51,48.51,54.51,6.666666666666667,1,1,0,1,6,6,5,1,223.5,1379679.248289781,1011890.945190289,187120.9792414879,5155.527181611345,3196.10195318353 -5380,6683,12116,12115,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.737368084548915,8.620249374570129,0,10,-8,39.19125002384169,0,-9,-9,2019,7,1,54,59,1,1,0,16.64166477095256,16.64166477095256,0,0,0,0,0,0,0,0,6.318760146813464,0,48.51,54.51,28.54,50.51,6.666666666666667,1,1,0,0,9,6,5,1,223.5,1379679.248289781,1011890.945190289,187120.9792414879,5155.527181611345,3196.10195318353 -5380,6684,12117,-9,12115,12116,1,1,35,0,0,0,1,1,-9,0,3,7.652836765159719,8.224905336461266,0,0,0,-995.6093622372751,-9,2,2,2019,12,0,37,0,1,0,1,12.3920982920186,12.3920982920186,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,5,1,1,0,1,7,6,4,1,988,59366.44774282945,0,0,0,1462.165581904946 -5380,6685,12118,-9,12115,12116,1,1,24,0,0,0,1,1,1,0,4,7.992231882504926,8.183946144960828,0,0,0,-951.5775963863676,-9,2,2,2019,14,3,39,0,1,3,1,10.43428181408261,10.43428181408261,0,0,0,0,0,0,0,0,0,0,38.09,63.39,-9,-9,6.666666666666667,1,1,0,0,2,6,4,1,377,-105354.822599192,149892.9792783565,0,0,2025.455703201477 -5381,6686,12119,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,7.262136918414248,6.776596419369144,0,0,0,-944.6425663331304,0,2,-9,2019,12,1,16,16,1,1,0,10.85800355440596,10.85800355440596,0,0,0,0,0,1,0,1,0,0,48.79,25.03,-9,-9,8.333333333333334,2,3,0,0,11,9,2,1,268.5,-34107.41857343492,-1668.719972462158,0,0,1705.403018351694 -5381,6686,12120,-9,12119,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1137.389385256083,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,2,1,268.5,-34107.41857343492,-1668.719972462158,0,0,1705.403018351694 -5382,6687,12121,-9,12124,12122,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.046036028368,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,250,24017.25542825483,0,0,0,2193.298708902414 -5382,6687,12122,12124,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.254270908834245,8.378401499453215,0,18,11,-3.559435497500114,0,3,3,2019,8,0,23,12,1,0,0,18.49296889463098,18.49296889463098,0,0,0,0,0,1,1,0,3.190602313596476,0,57.16,56.15,40.96,55.62,6.666666666666667,3,4,0,0,11,8,3,0,250,24017.25542825483,0,0,0,2193.298708902414 -5382,6687,12123,-9,12124,12122,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.1791717133893,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,250,24017.25542825483,0,0,0,2193.298708902414 -5382,6687,12124,12122,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.21474745163219,7.24120588448756,0,18,-11,-4.360095741346598,0,3,1,2019,12,1,24,0,1,1,0,5.655141612299635,5.655141612299635,0,0,0,0,0,1,1,0,0,0,40.96,55.62,57.16,56.15,6.666666666666667,3,4,0,0,10,8,3,0,250,24017.25542825483,0,0,0,2193.298708902414 -5383,6688,12125,12126,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.718579675086427,6.41204868068924,42,2,72.1109447479552,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.004326138831753,6.445427422300735,57.09,38.46,29.53,19.07,8.333333333333334,1,1,0,0,0,2,2,1,1332.5,403138.6275170309,187661.1789997897,169441.3674181433,0,2563.919398514571 -5383,6688,12126,12125,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,4.129903577965373,4.222703968677327,42,-2,-160.3887386356713,0,3,2,2019,18,7,0,0,4,7,0,0,0,1,0,12.54587458511197,0,0,1,1,0,2.996294958071641,4.162765050664015,29.53,19.07,57.09,38.46,5,1,1,0,0,3,2,2,1,1332.5,403138.6275170309,187661.1789997897,169441.3674181433,0,2563.919398514571 -5384,6689,12127,12128,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,49,1,70.1842293734592,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.49,55.09,64.23,4.850000000000001,10,1,1,0,0,0,1,2,1,323.5,598345.2476015332,294379.5220522825,212605.8223169674,0,1833.339625137566 -5384,6689,12128,12127,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.095951573756528,7.443149037005184,49,-1,-68.08500685551753,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.930753041299394,132.548140306646,29.22840007819159,0,1,1,0,0,7.341959702309508,64.23,4.850000000000001,62.49,55.09,6.666666666666667,1,1,0,0,0,1,2,1,323.5,598345.2476015332,294379.5220522825,212605.8223169674,0,1833.339625137566 -5384,6690,12129,12130,12127,12128,1,0,47,0,0,0,2,2,-9,0,3,7.82920606261712,7.957151211235177,0,5,0,-74.48429092473748,0,3,2,2019,13,1,30,40,1,1,0,10.04418097605076,10.04418097605076,0,0,0,0,71.5,1,1,0,0,0,48.06,45.53,48.87,58.55,6.666666666666667,1,1,0,0,12,1,4,1,447.5,83214.34169165943,27547.77383629527,0,0,2241.378672203493 -5384,6690,12130,12129,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.040761419733744,7.995657500655738,0,5,0,-183.4159755084977,0,-9,-9,2019,10,0,50,40,1,0,0,6.100905049240386,6.100905049240386,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.06,45.53,5,1,1,0,0,12,1,4,1,447.5,83214.34169165943,27547.77383629527,0,0,2241.378672203493 -5385,6691,12131,12133,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,9.672467738084769,9.565166208525861,0,10,2,5.886083162004411,0,2,3,2019,9,0,60,50,1,0,0,37.53221916481646,37.53221916481646,0,0,0,0,2,1,1,0,4.794484523711404,0,57.46,47.78,57.16,56.15,1.666666666666667,1,1,0,0,13,13,5,1,600.3333333333334,1245363.423802292,1065363.456449888,129085.3314326622,0,10123.57908782378 -5385,6691,12132,-9,12133,12131,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-864.8844671908971,-9,1,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,600.3333333333334,1245363.423802292,1065363.456449888,129085.3314326622,0,10123.57908782378 -5385,6691,12133,12131,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,0,0,10,-2,12.9474860419055,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,8.615848057624252,0,57.16,56.15,57.46,47.78,8.333333333333334,1,1,0,0,0,13,5,1,600.3333333333334,1245363.423802292,1065363.456449888,129085.3314326622,0,10123.57908782378 -5385,6692,12134,-9,12133,12131,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1030.121357532483,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.413977316164765,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,756,-142166.8848710806,0,0,0,-141.0039651340003 -5385,6693,12135,-9,12133,12131,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-946.6269052426212,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,4.98159440265379,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,500,120216.061753535,0,0,0,-137.3290017104725 -5386,6694,12136,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.989490255268281,7.923671958324611,0,0,0,-1085.438130621518,0,-9,2,2019,9,0,42,50,1,0,0,7.101543893352199,7.101543893352199,0,0,0,0,0,1,1,0,3.362187166512858,0,60.45,43.72,-9,-9,6.666666666666667,1,1,0,0,10,12,3,1,807,105639.6056517253,0,123523.64533607,0,740.2760249564014 -5387,6695,12137,-9,12139,-9,1,1,51,0,0,0,2,2,-9,0,4,8.208001531652812,8.485562754133932,0,0,0,-1082.864241441247,0,2,2,2019,9,0,40,46,1,1,0,11.09883384824546,11.09883384824546,0,0,0,0,0,1,1,0,5.945385492543536,0,53,55,-9,-9,8,2,3,0,0,1,8,4,1,339,-82354.23742063508,135932.1337136905,0,0,1814.946008143897 -5387,6696,12138,-9,-9,12137,1,0,23,0,0,0,1,1,1,0,4,7.616455618251184,7.303708028171375,0,0,0,-1025.789246077829,-9,2,2,2019,7,1,36,0,1,1,1,5.629846904443333,5.629846904443333,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,4,8,3,1,2995,32316.86605448721,0,0,0,398.5465017722599 -5387,6697,12139,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1046.06847703828,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.039468666163859,0,52,45,-9,-9,8,4,6,0,0,0,8,1,1,555,98154.40334289671,0,0,0,633.2230891488617 -5388,6698,12140,12141,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.445152095112702,8.507542195109252,0,3,-1,-84.06142103109745,0,-9,-9,2019,12,1,43,39,1,1,0,11.72355964004121,11.72355964004121,0,0,0,0,0,0,0,0,2.513604701965608,0,40.71,62.41,57.33,53.46,8.333333333333334,1,1,0,0,5,2,5,1,616.5,84268.7973828023,24163.12286366621,108394.179560159,35839.37806916217,3386.909733885434 -5388,6698,12141,12140,-9,-9,1,0,27,0,0,0,1,1,1,0,3,8.429496072157276,8.537228012135845,0,3,1,136.0416704666204,-9,-9,-9,2019,8,1,30,0,1,1,0,18.98197058505987,18.98197058505987,0,0,0,0,0,0,0,0,2.480999116429509,0,57.33,53.46,40.71,62.41,8.333333333333334,1,1,0,0,2,2,5,1,616.5,84268.7973828023,24163.12286366621,108394.179560159,35839.37806916217,3386.909733885434 -5389,6699,12142,-9,12143,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.0121178117809,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,1,0,322.5,109435.3604721561,0,0,0,1988.077369010518 -5389,6699,12143,-9,-9,-9,1,0,25,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1021.337457295546,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,61.45,27.08,-9,-9,8.333333333333334,1,1,1,0,2,13,1,0,322.5,109435.3604721561,0,0,0,1988.077369010518 -5390,6700,12144,12145,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,4.915590596443605,4.565874836456755,45,0,-28.30604266255671,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,13.42126636523314,0,0,1,1,0,4.586997296426135,4.925940956882003,57.49,45.09,43.94,38.01,8.333333333333334,1,1,0,0,4,4,2,1,1877,920201.7728554702,120671.088517158,527133.4271856814,0,1458.901747281895 -5390,6700,12145,12144,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.466401943097728,5.32153534427198,45,0,106.0793284430022,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,13.1617065769874,0,0,1,1,0,5.42638671666989,5.145440616187733,43.94,38.01,57.49,45.09,8.333333333333334,1,1,0,0,0,4,2,1,1877,920201.7728554702,120671.088517158,527133.4271856814,0,1458.901747281895 -5391,6701,12146,12147,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,0,0,0,38,-6,-254.3213556811372,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,49.51,46.42,7,2,3,0,0,0,8,2,1,654.3333333333334,139560.054302616,0,480157.3780379092,223539.1424003258,1282.640903823621 -5391,6701,12147,12146,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,7.596426737539105,7.199358795305407,0,38,6,21.94960641555244,0,3,3,2019,7,0,24,24,1,0,0,8.189816503012072,8.189816503012072,0,0,0,0,0,1,1,0,0,0,49.51,46.42,47,49,8.333333333333334,2,3,0,0,12,8,2,1,654.3333333333334,139560.054302616,0,480157.3780379092,223539.1424003258,1282.640903823621 -5391,6701,12148,-9,12146,12147,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.0725349569299,-9,3,3,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.39,62.54,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,654.3333333333334,139560.054302616,0,480157.3780379092,223539.1424003258,1282.640903823621 -5391,6702,12149,-9,12146,12147,1,0,27,0,1,0,2,2,-9,0,4,8.265789547313068,8.062663081166669,0,0,0,-978.4332081543565,0,3,3,2019,11,0,35,37,1,2,1,11.86683705440723,11.86683705440723,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,1,9,8,4,1,153,-59858.92874924369,-62053.48011092668,0,0,842.6455442765675 -5392,6703,12150,12151,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.003435726152244,7.645750827249184,0,37,5,-9.302401643412743,0,3,3,2019,12,1,28,28,1,1,0,12.83634310340469,12.83634310340469,0,0,0,0,2,1,1,0,1.138365551416409,0,37.91,59.34,50.24,58.02,1.666666666666667,1,1,0,0,13,8,3,1,1021,765760.8881187849,315719.3622688288,335467.476412966,0,1974.563896094676 -5392,6703,12151,12150,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.200001556134774,5.936561706249583,0,35,-5,-85.16219836070114,0,2,2,2019,8,0,30,35,1,0,0,1.367289642512082,1.367289642512082,0,0,0,0,2,1,1,0,.5933208008658442,0,50.24,58.02,37.91,59.34,10,1,1,0,0,13,8,3,1,1021,765760.8881187849,315719.3622688288,335467.476412966,0,1974.563896094676 -5393,6704,12152,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,6.79977106743361,6.8951117557184,0,0,0,-970.5150417502957,0,2,-9,2019,12,0,14,14,1,2,0,7.742937172354428,7.742937172354428,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,4,2,0,1,1,8,2,0,1397,14845.52489190486,-100803.2870151435,0,0,912.1390067787559 -5393,6705,12153,-9,12152,-9,1,1,28,0,0,0,2,2,-9,0,4,7.881218825092313,7.947687262117425,0,0,0,-860.2669786677397,0,2,-9,2019,10,0,35,0,1,1,1,8.195099100607422,8.195099100607422,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,3,4,0,0,1,8,4,0,666,18506.40948150167,-23922.97705979185,0,0,610.166601778376 -5394,6706,12154,12155,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,4.665260722793334,5.048328234716594,9,5,82.80871206546873,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.891505971229925,55,50.21,57.63,40.89,10,1,1,0,0,6,7,2,0,455,465616.9398999154,98112.14132528254,335602.811807683,0,1735.150259368207 -5394,6706,12155,12154,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.528988365976572,5.995161585192626,9,-5,92.35204007266428,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.746382103781292,57.63,40.89,55,50.21,8.333333333333334,1,1,0,0,8,7,2,0,455,465616.9398999154,98112.14132528254,335602.811807683,0,1735.150259368207 -5395,6707,12156,12157,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.437287102664535,7.237939868568358,0,36,0,41.4256320087434,0,2,3,2019,12,4,30,30,1,4,0,6.761781580437666,6.761781580437666,0,0,0,0,0,0,0,0,.6367212510856227,0,42.45,54.73,63.71,31.34,5,1,1,0,0,10,6,5,1,375.5,1341126.068120406,1059120.735007415,243424.5177122181,0,2546.804562997853 -5395,6707,12157,12156,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.622647645545227,8.764771417003747,0,36,0,-61.02583722845117,0,3,3,2019,10,1,35,35,1,1,0,19.61971213082294,19.61971213082294,0,0,0,0,0,0,0,0,4.022368472252091,0,63.71,31.34,42.45,54.73,8.333333333333334,1,1,0,0,10,6,5,1,375.5,1341126.068120406,1059120.735007415,243424.5177122181,0,2546.804562997853 -5396,6708,12158,12159,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,7.057445793092563,7.516473821677947,8,1,-17.87718658915444,0,3,-9,2019,11,3,0,0,4,3,0,0,0,1,0,27.46903248627028,0,0,1,1,0,2.887822140105129,7.022808944746448,40.23,21.35,47.82,34.22,6.666666666666667,1,1,0,0,0,11,3,1,1819.5,1048655.323113554,637060.6914049757,193994.126426083,0,3654.696174519089 -5396,6708,12159,12158,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.807697296182353,7.912637343513883,8,-1,71.9205572271955,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,2.891284527724992,7.760868454539888,47.82,34.22,40.23,21.35,10,1,1,0,0,0,11,3,1,1819.5,1048655.323113554,637060.6914049757,193994.126426083,0,3654.696174519089 -5397,6709,12160,12161,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.946392720608424,9.193017792409082,0,9,-13,48.91009059558062,0,-9,-9,2019,10,0,40,40,1,1,0,21.35231521929586,21.35231521929586,0,0,0,0,0,1,1,0,0,0,50,57,50,55,7,3,4,0,0,1,6,4,0,1044,203502.4934869952,128032.357988062,109079.7592183808,77732.39552351255,2921.14169070391 -5397,6709,12161,12160,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,9,13,-56.689061695226,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,50,57,7,1,1,1,0,0,6,4,0,1044,203502.4934869952,128032.357988062,109079.7592183808,77732.39552351255,2921.14169070391 -5398,6710,12162,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.466939023167758,6.314456844246614,0,0,-1002.641680883017,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.259989086388067,6.245324864748547,45.57,53.5,-9,-9,10,1,1,0,1,7,5,2,1,984,694924.1055243566,72445.037716056,342449.5616931074,0,-71.7842114650839 -5399,6711,12163,12164,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,0,0,0,2,-14,0,-9,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,30.07,52.57,27.65,24.28,0,4,2,1,1,0,10,1,0,451,259757.7816653529,4413.096132004322,0,0,40.60976596087822 -5399,6711,12164,12163,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,2,14,0,0,-9,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.65,24.28,30.07,52.57,1.666666666666667,1,1,0,1,4,10,1,0,451,259757.7816653529,4413.096132004322,0,0,40.60976596087822 -5399,6712,12165,-9,12164,-9,1,1,23,0,0,0,2,2,-9,0,3,6.965506176197609,6.970911966205671,0,0,0,-1111.738596722404,0,2,2,2019,6,0,1,0,1,0,1,142.3655178614794,142.3655178614794,0,0,0,0,7,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,0,1,4,10,2,0,281,49658.55426483502,107487.2458564122,0,0,949.520044146806 -5400,6713,12166,-9,-9,-9,1,1,68,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1027.843180470975,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.327414727553453,0,54.2,57.49,-9,-9,10,1,1,0,0,8,12,1,1,254,23894.18616633423,0,0,0,1132.289568664468 -5401,6714,12167,12169,-9,-9,1,0,47,0,2,0,2,2,-9,1,4,0,0,0,4,0,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.2,57.49,41.29,24.56,8.333333333333334,1,1,0,0,0,1,1,1,965,-46755.35333222916,0,74913.46502699213,12521.89084503781,1898.602211998205 -5401,6714,12168,-9,12167,12169,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-948.0014846901021,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,1,1,965,-46755.35333222916,0,74913.46502699213,12521.89084503781,1898.602211998205 -5401,6714,12169,12167,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,0,0,4,0,0,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.29,24.56,54.2,57.49,8.333333333333334,1,1,0,0,10,1,1,1,965,-46755.35333222916,0,74913.46502699213,12521.89084503781,1898.602211998205 -5402,6715,12170,12172,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.816610875547505,7.675075778299653,0,5,3,26.78032526315203,0,2,2,2019,10,1,30,0,1,1,0,9.078043933985652,9.078043933985652,0,0,0,0,0,1,1,0,0,0,39.45,57.43,57.33,53.46,8.333333333333334,1,1,0,0,2,12,3,1,706.3333333333334,61661.2237310395,19615.65448770195,95802.69041134435,107352.4090893739,2337.7668581157 -5402,6715,12171,-9,12170,12172,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.387307072308,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,1,706.3333333333334,61661.2237310395,19615.65448770195,95802.69041134435,107352.4090893739,2337.7668581157 -5402,6715,12172,12170,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,6.707061784926728,6.720063411157936,0,5,-3,70.59610720642148,-9,-9,-9,2019,6,0,35,0,1,0,0,3.533603012701476,3.533603012701476,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.45,57.43,8.333333333333334,1,1,0,0,9,12,3,1,706.3333333333334,61661.2237310395,19615.65448770195,95802.69041134435,107352.4090893739,2337.7668581157 -5403,6716,12173,12175,-9,-9,1,0,39,2,2,0,1,1,-9,0,4,8.223411294524256,8.41928968862068,0,6,-3,-171.0066122697958,0,2,2,2019,12,2,38,38,1,2,0,14.57966862225212,14.57966862225212,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.21,47.46,6.666666666666667,1,1,0,1,11,5,5,1,722.75,1349871.503192103,975539.0329481063,226919.5918392229,3060.489251651559,3891.102428846419 -5403,6716,12174,-9,12173,12175,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.420241433757,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,722.75,1349871.503192103,975539.0329481063,226919.5918392229,3060.489251651559,3891.102428846419 -5403,6716,12175,12173,-9,-9,1,1,42,2,2,0,2,2,-9,0,2,8.555209718068003,8.744972132841825,0,6,3,43.68527926468267,0,-9,-9,2019,10,2,48,48,1,2,0,12.7503028049836,12.7503028049836,0,0,0,0,0,1,1,0,0,0,38.21,47.46,45.91,59.89,0,1,1,0,0,11,5,5,1,722.75,1349871.503192103,975539.0329481063,226919.5918392229,3060.489251651559,3891.102428846419 -5403,6716,12176,-9,12173,12175,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-961.4941486077597,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,722.75,1349871.503192103,975539.0329481063,226919.5918392229,3060.489251651559,3891.102428846419 -5404,6717,12177,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,4.411113286274651,4.786968726947744,0,0,-878.9182590463697,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.525655610509986,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,552,46790.07619819821,-42676.19785519334,0,0,884.1208395264052 -5405,6718,12178,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.002888546770562,7.84544159103212,0,0,0,-996.4735636653933,0,3,3,2019,9,0,40,10,1,0,0,7.781470684548895,7.781470684548895,0,0,0,0,0,0,0,0,0,0,47.9,48.57,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,269,6732.359698115753,-56520.19271440258,0,0,1010.200128319778 -5406,6719,12179,12180,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.165023306056735,8.294373171751413,0,8,-12,24.38269264485726,0,2,2,2019,10,0,40,37,1,0,0,10.01390510276917,10.01390510276917,0,0,0,0,0,0,0,0,3.386855049336659,0,51.25,48.45,44.7,53.68,8.333333333333334,1,1,0,0,7,2,5,1,1232,1022720.019246195,301652.3117733902,369768.3868416995,253440.9117738168,4048.922675189366 -5406,6719,12180,12179,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.855587566764665,8.597642374991159,0,8,12,103.3239589618632,0,-9,-9,2019,10,0,40,40,1,0,0,20.30722594763587,20.30722594763587,0,0,0,0,0,0,0,0,0,0,44.7,53.68,51.25,48.45,6.666666666666667,1,1,0,0,7,2,5,1,1232,1022720.019246195,301652.3117733902,369768.3868416995,253440.9117738168,4048.922675189366 -5407,6720,12181,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.260628550922027,8.295962714344254,0,0,0,-1054.596404678986,0,2,2,2019,9,0,35,35,1,0,0,15.14010285215177,15.14010285215177,0,0,0,.8826921915615866,0,1,1,0,1.593316978028273,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,1708,636881.1877023295,254182.5973375967,476866.4008613373,42156.31408482461,2098.426019392632 -5408,6721,12182,12183,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,59,-5,-68.63758728502364,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.63,54.22,47.66,34.23,8.333333333333334,1,1,0,0,9,4,2,1,2164,3807.897717402033,39295.04228362663,68089.35174899682,0,1257.98868646603 -5408,6721,12183,12182,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,2.787550605473461,2.904149157341304,10,5,17.43976258392158,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,10.48065905062891,0,0,1,1,0,3.287717738787701,2.796814566229545,47.66,34.23,49.63,54.22,8.333333333333334,1,1,0,0,0,4,2,1,2164,3807.897717402033,39295.04228362663,68089.35174899682,0,1257.98868646603 -5409,6722,12184,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.660112054750829,8.813154143693586,0,0,0,-1052.116908091618,0,-9,2,2019,6,0,50,47,1,0,0,13.91434832599522,13.91434832599522,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,444,302742.856947779,68125.58327711666,110303.2176658044,51563.20107288085,2218.544516374074 -5410,6723,12185,12187,-9,-9,1,1,62,0,2,0,2,2,-9,0,3,8.801288257215235,9.296067421098906,7.412042864935344,9,21,-35.77644797525958,0,-9,-9,2019,9,1,41,37,1,1,0,20.35012574625103,20.35012574625103,0,0,0,0,0,1,1,0,0,7.858607104846373,60.87,44.96,51.77,58.57,8.333333333333334,1,1,0,0,10,11,5,1,1380.333333333333,714642.1911745298,459405.5026006273,278249.6748944733,41830.85413176967,5017.247495074557 -5410,6723,12186,-9,12187,12185,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.0970078827912,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1380.333333333333,714642.1911745298,459405.5026006273,278249.6748944733,41830.85413176967,5017.247495074557 -5410,6723,12187,12185,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.711832140222182,8.68023125794136,0,18,-21,113.5887514811653,0,2,2,2019,12,2,56,38,1,2,0,10.39724995886236,10.39724995886236,0,0,0,0,0,1,1,0,0,0,51.77,58.57,60.87,44.96,8.333333333333334,1,1,0,0,10,11,5,1,1380.333333333333,714642.1911745298,459405.5026006273,278249.6748944733,41830.85413176967,5017.247495074557 -5411,6724,12188,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.077206542412823,9.139412668390726,0,0,0,-998.9998564405291,0,3,2,2019,11,1,55,55,1,1,0,18.48407983421901,18.48407983421901,0,0,0,0,2,0,0,0,3.255813862590241,0,46.14,54.22,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,245,229552.6957480162,202845.120623953,0,0,3011.405258839022 -5412,6725,12189,12193,-9,-9,1,1,34,0,3,0,2,2,-9,0,5,8.74031802137703,8.851858630543457,0,11,0,-36.19736824765979,0,3,-9,2019,5,0,40,60,1,0,0,19.40217238812937,19.40217238812937,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.12,54.8,0,1,1,0,0,13,2,4,1,657.2,322450.2072509666,202436.5768495848,218157.0715964992,160308.6176683281,3517.859543064669 -5412,6725,12190,-9,12193,12189,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.1685401136914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,657.2,322450.2072509666,202436.5768495848,218157.0715964992,160308.6176683281,3517.859543064669 -5412,6725,12191,-9,12193,12189,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.472310020285,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,657.2,322450.2072509666,202436.5768495848,218157.0715964992,160308.6176683281,3517.859543064669 -5412,6725,12192,-9,12193,12189,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.7570322693567,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.124021734120264,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,657.2,322450.2072509666,202436.5768495848,218157.0715964992,160308.6176683281,3517.859543064669 -5412,6725,12193,12189,-9,-9,1,0,34,0,3,0,2,2,-9,1,4,6.368690459016659,6.507485375317893,0,11,0,18.90232959859308,0,3,2,2019,6,0,10,10,1,0,0,6.571099399231282,6.571099399231282,0,0,0,0,42,1,1,0,.6180719058280393,0,60.12,54.8,62.39,56.71,0,1,1,0,0,12,2,4,1,657.2,322450.2072509666,202436.5768495848,218157.0715964992,160308.6176683281,3517.859543064669 -5413,6726,12194,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.797743295164654,7.444346413514094,0,0,-1008.178175015978,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.178287537491238,7.580448283260307,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,337,748912.0330117887,173735.7649491548,331605.9727448754,0,1512.693447572168 -5414,6727,12195,12197,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.816352307100637,8.702383755231976,0,10,4,116.0368635763104,0,2,2,2019,8,0,44,44,1,0,0,18.36978492319112,18.36978492319112,0,0,0,0,0,1,1,0,0,0,57.33,53.46,55.75,39.09,8.333333333333334,1,1,0,0,11,12,4,1,674,461775.9420539322,205038.6360008284,180774.0980698351,37618.62878456761,3600.558319039692 -5414,6727,12196,-9,12197,12195,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.898625572987,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,674,461775.9420539322,205038.6360008284,180774.0980698351,37618.62878456761,3600.558319039692 -5414,6727,12197,12195,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.030013737827178,7.328728146828782,0,19,-4,20.1518259381976,0,2,-9,2019,8,0,40,30,1,0,0,4.046526886193767,4.046526886193767,0,0,0,0,0,1,1,0,0,0,55.75,39.09,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,1,674,461775.9420539322,205038.6360008284,180774.0980698351,37618.62878456761,3600.558319039692 -5415,6728,12198,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.143863714787891,9.313315637683038,0,3,6,31.44453235365695,0,3,3,2019,6,0,38,41,1,0,0,36.90467875077115,36.90467875077115,0,0,0,0,0,1,1,0,7.139415868975767,0,54.96,53.17,52.22,53.26,8.333333333333334,1,1,0,0,6,9,5,0,489,1110948.938398388,489953.0861312876,221328.119148349,93325.03309792491,4077.218759326149 -5415,6729,12199,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,3,-6,-46.36264565372079,-9,-9,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,52.22,53.26,54.96,53.17,8.333333333333334,1,1,1,0,0,9,5,0,3038,179064.0639525414,0,0,0,179.7812735319957 -5416,6730,12200,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.53933302073612,5.656474498144014,0,0,-965.6902820444526,0,3,3,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.66630235442345,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1176,139838.4246033375,57889.17728273824,0,0,715.7580824866575 -5417,6731,12201,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.451399578505022,6.554266279939688,0,0,-1028.197134414903,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.386962660444142,55.36,51.57,-9,-9,10,1,1,0,0,0,12,2,0,118,347247.9896602649,224492.4472926448,47948.01036604086,0,1163.236717843244 -5417,6732,12202,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,0,0,-951.1236512333138,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,312,85833.80122396786,0,174965.8365794804,0,377.5083301978415 -5418,6733,12203,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,9.233601623327971,9.047499061067345,0,0,0,-1003.399875597913,0,2,2,2019,15,4,50,40,1,4,0,20.47083000410424,20.47083000410424,0,0,0,0,0,0,0,0,1.564642044525078,0,36.48,53.7,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,744,-39470.79696487301,57126.40674265383,0,0,3508.397997489451 -5419,6734,12204,12205,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,4.669359355119395,4.856179118559281,56,-2,13.83237786624116,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,32.29271215282586,0,0,1,1,0,4.516191822936612,4.482717414902384,26.9,21.84,47.95,21.46,8.333333333333334,1,1,0,0,5,12,2,1,584,574263.4984692044,122319.8904616957,142321.8141406936,0,2268.462186103118 -5419,6734,12205,12204,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.12602798463834,7.412486568868033,56,2,26.62319998156779,0,-9,2,2019,14,2,0,0,4,2,0,0,0,1,2.413054914881958,49.8736661281138,31.95271087576096,5.48,1,1,0,2.62226248677184,7.396391644637106,47.95,21.46,26.9,21.84,8.333333333333334,1,1,0,0,0,12,2,1,584,574263.4984692044,122319.8904616957,142321.8141406936,0,2268.462186103118 -5420,6735,12206,12207,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.926178827712151,8.858162507431985,0,5,1,-79.08887077254036,0,-9,-9,2019,16,5,85,45,1,5,0,10.00776595625453,10.00776595625453,0,0,0,0,0,0,0,0,.6082399040659839,0,37.68,53.96,53.96,50.73,8.333333333333334,2,3,0,0,8,9,5,1,581,532522.4010956469,280881.3872406614,297814.1607734637,0,4746.95316828799 -5420,6735,12207,12206,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.582661435607495,8.425007135075871,0,5,-1,-188.27422329618,0,-9,-9,2019,14,4,53,50,1,4,0,10.69663302125917,10.69663302125917,0,0,0,0,0,0,0,0,0,0,53.96,50.73,37.68,53.96,10,1,1,0,0,6,9,5,1,581,532522.4010956469,280881.3872406614,297814.1607734637,0,4746.95316828799 -5421,6736,12208,12209,-9,-9,1,0,26,1,3,0,2,2,-9,0,3,7.332019729228796,7.573845849714057,0,3,-1,-39.55084333678433,0,-9,-9,2019,20,7,24,22,1,7,0,7.024537702742763,7.024537702742763,0,0,0,0,0,1,1,0,0,0,41.24,55.72,52.72,55.58,1.666666666666667,1,1,0,0,2,5,5,0,861.6,298730.7521132288,-2911.292662556184,0,0,4848.442750548922 -5421,6736,12209,12208,-9,-9,1,1,27,1,3,0,2,2,-9,0,5,9.091846804164504,9.154959071713336,0,3,1,-46.51599672346119,0,-9,-9,2019,9,1,72,78,1,1,0,15.6403754787353,15.6403754787353,0,0,0,0,0,1,1,0,2.722931874123418,0,52.72,55.58,41.24,55.72,10,1,1,0,0,9,5,5,0,861.6,298730.7521132288,-2911.292662556184,0,0,4848.442750548922 -5421,6736,12210,-9,12208,12209,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1155.121575284349,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,0,861.6,298730.7521132288,-2911.292662556184,0,0,4848.442750548922 -5421,6736,12211,-9,12208,12209,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.6952886500344,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,0,861.6,298730.7521132288,-2911.292662556184,0,0,4848.442750548922 -5421,6736,12212,-9,12208,12209,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.7421864758632,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,0,861.6,298730.7521132288,-2911.292662556184,0,0,4848.442750548922 -5422,6737,12213,-9,12216,12214,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.495894926923,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,855.5,860.4961610431936,0,0,0,2482.849161573273 -5422,6737,12214,12216,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.226484300975727,7.304568357673123,0,6,8,-92.62367334545708,0,-9,-9,2019,7,1,30,0,1,1,0,4.732109365135309,4.732109365135309,0,0,0,0,0,1,1,0,7.30592652943799,0,60.8,32.65,46.44,59.62,8.333333333333334,1,1,0,0,1,12,3,1,855.5,860.4961610431936,0,0,0,2482.849161573273 -5422,6737,12215,-9,12216,12214,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.022039380984,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,855.5,860.4961610431936,0,0,0,2482.849161573273 -5422,6737,12216,12214,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.751721961922318,8.015852481915793,0,19,-8,-112.2183681928934,0,2,2,2019,14,4,27,25,1,4,0,9.882559748565679,9.882559748565679,0,0,0,0,0,1,1,0,0,0,46.44,59.62,60.8,32.65,6.666666666666667,1,1,0,0,8,12,3,1,855.5,860.4961610431936,0,0,0,2482.849161573273 -5423,6738,12217,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,5,9.002900704579877,9.179165748654821,0,0,0,-934.606422535083,-9,-9,-9,2019,13,3,70,0,1,3,0,18.8967359569507,18.8967359569507,0,0,0,0,0,0,0,0,4.010738093430313,0,46.34,61.24,-9,-9,6.666666666666667,1,1,0,0,2,8,5,0,113,-44557.4926716483,-23575.01650489337,301719.2579295107,360681.3523663467,2973.07747622304 -5424,6739,12218,12219,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.567635605367212,9.073030623625005,5.491785678671253,6,13,-18.53001625653506,0,3,3,2019,10,0,60,55,1,0,0,11.25364533578476,11.25364533578476,0,0,0,0,0,1,1,0,6.203648800430213,6.143117196310352,54.2,57.49,46.39,60.99,8.333333333333334,4,2,0,0,7,2,5,1,660.5,271640.4565265517,54246.77633904962,0,0,7115.841975849095 -5424,6739,12219,12218,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.479367652132135,8.605666327934875,0,6,-13,114.218645216011,0,3,3,2019,8,0,54,40,1,0,0,8.569767953138079,8.569767953138079,0,0,0,0,72,1,1,0,7.338515221998648,0,46.39,60.99,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,660.5,271640.4565265517,54246.77633904962,0,0,7115.841975849095 -5425,6740,12220,12221,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.095268665346617,6.018419823648638,6,-2,-88.07825108330155,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.074413534754405,60.12,54.8,48.28,60.18,8.333333333333334,1,1,0,0,2,11,2,0,811.5,261095.8232772051,120496.2934618637,0,0,1155.069992501 -5425,6740,12221,12220,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.52202556915593,5.577890035920039,6,2,160.9383846363226,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.210362554869945,5.74386076392668,48.28,60.18,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,0,811.5,261095.8232772051,120496.2934618637,0,0,1155.069992501 -5426,6741,12222,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1053.198546964659,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,29.01,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,249,187833.7518225775,0,107947.7069198438,0,945.1799509606305 -5427,6742,12223,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,1,0,6.571262483918898,6.662286632416884,0,0,-1052.689941555618,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,6.549255113227403,0,27.17,44.65,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,598,72911.87355790961,0,0,0,709.1237618987086 -5428,6743,12224,12225,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.477013899569233,7.781583478443646,6,2,58.25222751088074,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.537000629775869,7.656969075688984,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,161,999115.565878201,303197.83865083,489137.8803737253,0,2932.622653458249 -5428,6743,12225,12224,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.574076188993361,7.346190691728396,6,-2,-54.15412504820247,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.657499859178013,7.35924033051832,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,3,1,161,999115.565878201,303197.83865083,489137.8803737253,0,2932.622653458249 -5429,6744,12226,-9,12227,-9,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-998.2335089790811,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,6,3,0,867,21716.95140180721,31268.00791187497,0,0,1953.392135468619 -5429,6744,12227,-9,-9,-9,1,0,60,1,0,0,2,2,-9,1,2,0,7.323429948769597,7.143311955949065,0,0,-937.5225238488031,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,6.32073562588926,7.144260130312539,26.38,39.59,-9,-9,1.666666666666667,1,1,0,0,0,6,3,0,867,21716.95140180721,31268.00791187497,0,0,1953.392135468619 -5430,6745,12228,-9,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.190314852711005,7.268561004637029,0,0,-1018.16789890989,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,1.94307555443211,0,3.006197331799166,0,1,1,0,8.26269102384309,7.509238666779162,52.79,51.64,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,176,632951.3570063289,162710.9858587566,311418.2367535363,0,2871.981236887651 -5431,6746,12229,-9,12230,12232,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1053.949632082133,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,533,1412814.781331441,481370.0200684214,623766.0725435342,12003.06464275724,5268.321336529668 -5431,6746,12230,12232,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.84462233850663,7.611306588768986,0,3,-11,-40.24133541436171,0,2,3,2019,8,0,32,30,1,0,0,6.712728457419031,6.712728457419031,0,0,0,0,0,0,0,0,1.950374296277839,0,52.21,59.91,16.3,65.40000000000001,8.333333333333334,1,1,0,0,7,9,5,1,533,1412814.781331441,481370.0200684214,623766.0725435342,12003.06464275724,5268.321336529668 -5431,6746,12231,-9,12230,12232,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.3342822551854,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,533,1412814.781331441,481370.0200684214,623766.0725435342,12003.06464275724,5268.321336529668 -5431,6746,12232,12230,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.856443757430874,9.633166573396815,0,3,11,23.35396241067938,0,3,1,2019,30,12,35,45,1,12,0,63.16696999534282,63.16696999534282,0,0,0,0,0,0,0,0,0,0,16.3,65.40000000000001,52.21,59.91,1.666666666666667,1,1,0,0,9,9,5,1,533,1412814.781331441,481370.0200684214,623766.0725435342,12003.06464275724,5268.321336529668 -5432,6747,12233,-9,12234,-9,1,0,36,0,3,0,2,2,-9,0,3,7.443112754716785,7.384311819457105,0,0,0,-1082.964707785687,0,2,2,2019,12,0,25,25,1,0,0,6.478120515823061,6.478120515823061,0,0,0,0,71.5,1,1,0,0,0,46.18,44.66,-9,-9,5,1,1,0,0,2,4,2,0,789,-86485.15823872184,52432.00663493598,0,0,325.4992277890254 -5432,6748,12234,-9,-9,-9,1,0,59,0,3,0,2,2,-9,0,1,0,4.518517943042951,4.239718153522208,0,0,-972.4884239533466,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,4.365077804649127,29.37,25.74,-9,-9,1.666666666666667,1,1,0,0,4,4,2,0,677,-155901.7258625537,65618.25396924719,0,0,716.1554948331398 -5433,6749,12235,12237,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.51906775629506,9.909592951983573,0,22,0,86.26174125018859,0,2,2,2019,13,2,66,65,1,2,0,34.02846056541126,34.02846056541126,0,0,0,0,0,0,0,0,3.857121153370197,0,33.77,61.65,38.02,53.93,3.333333333333333,1,1,0,0,10,6,5,1,776.3333333333334,1410580.486401824,536109.631933853,934549.526982146,414885.4974384997,6614.637215344042 -5433,6749,12236,-9,12237,12235,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.584521233977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,776.3333333333334,1410580.486401824,536109.631933853,934549.526982146,414885.4974384997,6614.637215344042 -5433,6749,12237,12235,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,7.566996558983394,7.760958774331773,0,20,0,106.5499019429041,0,1,2,2019,16,5,26,26,1,5,0,9.515633919770634,9.515633919770634,0,0,0,.8160524857486831,0,0,0,0,3.319763264989532,0,38.02,53.93,33.77,61.65,3.333333333333333,1,1,0,0,5,6,5,1,776.3333333333334,1410580.486401824,536109.631933853,934549.526982146,414885.4974384997,6614.637215344042 -5434,6750,12238,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.030148514467468,7.817699629575766,0,0,0,-946.8961701288798,0,2,2,2019,16,4,40,36,1,4,0,7.899515985782894,7.899515985782894,0,0,0,0,0,1,1,0,0,0,36.75,52.2,-9,-9,3.333333333333333,2,3,0,0,3,8,3,0,1467.333333333333,-102486.6420139745,0,0,0,1847.64523148168 -5434,6750,12239,-9,12238,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.5795401507378,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,1467.333333333333,-102486.6420139745,0,0,0,1847.64523148168 -5434,6750,12240,-9,12238,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.3436931349952,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,3,0,1467.333333333333,-102486.6420139745,0,0,0,1847.64523148168 -5435,6751,12241,-9,12242,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.0785480185236,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,805.6666666666666,343833.2461518686,108551.2402247159,116564.0090128763,24454.42105859174,2123.671136380286 -5435,6751,12242,12243,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.554564193546843,8.432479096939934,0,1,-8,-34.9505357463226,0,2,1,2019,12,1,38,43,1,1,0,15.85528824582141,15.85528824582141,0,0,0,0,0,1,1,0,0,0,44.89,53.77,50.82,57.78,6.666666666666667,1,1,0,0,11,2,3,1,805.6666666666666,343833.2461518686,108551.2402247159,116564.0090128763,24454.42105859174,2123.671136380286 -5435,6751,12243,12242,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,2.815867704104064,2.880482898339753,0,1,8,-41.96859272512442,-9,-9,-9,2019,11,0,65,0,1,2,0,.0292255659381524,.0292255659381524,0,0,0,0,0,1,1,0,2.255591570617359,0,50.82,57.78,44.89,53.77,3.333333333333333,1,1,0,0,12,2,3,1,805.6666666666666,343833.2461518686,108551.2402247159,116564.0090128763,24454.42105859174,2123.671136380286 -5436,6752,12244,12245,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.240423321013871,7.567847656729348,10,-4,-24.88532420399604,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.098739686286979,7.242104833864087,42.85,60.33,42,52.08,6.666666666666667,1,1,0,0,7,11,3,1,569.5,1711028.355419459,1366887.764253209,238184.9106965018,0,2198.003098593341 -5436,6752,12245,12244,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.753133785726951,7.719339127251931,10,4,-8.326401862537903,0,3,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,7.340825837650925,8.044748630098997,42,52.08,42.85,60.33,8.333333333333334,1,1,0,0,11,11,3,1,569.5,1711028.355419459,1366887.764253209,238184.9106965018,0,2198.003098593341 -5437,6753,12246,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.108108112397112,7.230021972834005,0,0,0,-992.2608552207655,0,2,2,2019,8,0,13,12,1,0,0,11.51737502025092,11.51737502025092,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,695,89685.06831966325,0,0,0,-16.8547121356363 -5438,6754,12247,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,4.307859590589644,4.340409161609039,0,0,-891.9598133298655,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.977899769316724,4.208330416384491,57.16,56.15,-9,-9,10,1,1,0,0,0,12,2,1,784,-223157.673855142,13702.8074212965,0,0,625.2168858893989 -5439,6755,12248,-9,12249,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.938748207999,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,6,3,0,575,97584.08902956705,-13867.27970107948,151279.029143067,73741.86005557622,2887.967859344975 -5439,6755,12249,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,2,7.898637485505679,8.052849032870903,0,0,0,-989.943780405169,0,2,2,2019,19,8,38,0,1,8,0,9.781322320176674,9.781322320176674,0,0,0,0,88,1,1,0,0,0,37.09,51.14,-9,-9,6.666666666666667,3,4,0,0,0,6,3,0,575,97584.08902956705,-13867.27970107948,151279.029143067,73741.86005557622,2887.967859344975 -5440,6756,12250,12251,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,48,-2,-31.60285930217485,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.867134932070933,0,54.79,55.86,32.67,46.25,0,1,1,0,0,3,10,4,1,450,386879.659723965,54156.34182844007,329922.0945538455,0,5014.942674881371 -5440,6756,12251,12250,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,8.636488191539845,8.854978693910795,0,48,2,-5.887795203785135,0,3,3,2019,18,7,49,50,1,7,0,17.27115638262378,17.27115638262378,0,0,0,0,0,1,1,0,7.012350857132242,0,32.67,46.25,54.79,55.86,8.333333333333334,1,1,0,0,9,10,4,1,450,386879.659723965,54156.34182844007,329922.0945538455,0,5014.942674881371 -5441,6757,12252,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.150530695098671,6.06857347199304,0,0,-931.7170572217133,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.069293597937721,46.92,46.27,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,252,502826.6586513431,187848.0802392641,211926.1482296827,0,1247.669187371722 -5442,6758,12253,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.088528503360672,8.974045560956279,0,0,0,-976.0711297603435,0,2,2,2019,12,0,44,60,1,0,0,20.84181602630929,20.84181602630929,0,0,0,0,2,1,1,0,0,0,40.82,33.71,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,511,516566.9242754696,448685.5719581778,148902.0265581687,95014.67581283234,2477.528447624351 -5442,6758,12254,-9,12253,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-910.7546266914783,-9,1,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,4,2,0,0,0,6,5,1,511,516566.9242754696,448685.5719581778,148902.0265581687,95014.67581283234,2477.528447624351 -5442,6759,12255,-9,12253,-9,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-1032.322693874959,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,4.235661357941653,0,31.93,58.41,-9,-9,3.333333333333333,4,2,0,0,0,6,1,1,815,105088.8700701175,0,0,0,749.5536546353187 -5443,6760,12256,12258,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.486181066763558,8.229881884867853,0,11,-1,26.99330158849905,0,1,1,2019,12,0,28,33,1,0,0,19.89117379539755,19.89117379539755,0,0,0,0,2,1,1,0,0,0,36.08,60.5,33.21,55.18,6.666666666666667,1,1,0,0,9,6,4,1,833.3333333333334,56279.17113800225,37939.08274735837,142096.4443312056,149184.2437846983,3331.539938940088 -5443,6760,12257,-9,12256,12258,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.21961714957,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,833.3333333333334,56279.17113800225,37939.08274735837,142096.4443312056,149184.2437846983,3331.539938940088 -5443,6760,12258,12256,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.504412332598244,8.641405393093878,0,11,1,-64.61679002283105,0,2,2,2019,18,6,46,44,1,6,0,11.11575469605342,11.11575469605342,0,0,0,0,0,1,1,0,0,0,33.21,55.18,36.08,60.5,5,1,1,0,0,10,6,4,1,833.3333333333334,56279.17113800225,37939.08274735837,142096.4443312056,149184.2437846983,3331.539938940088 -5444,6761,12259,12260,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,6.912841068936818,6.947210891595789,8,-4,67.97745891873072,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,2,1,1,0,3.875271930253132,7.168393439328276,36.77,49.16,44.33,27.14,5,1,1,0,0,0,10,2,1,269,554766.9823234526,215451.7306385194,189890.8066545538,0,1733.923117609606 -5444,6761,12260,12259,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,4.704392193662396,4.595755222170859,8,4,-6.04790820927589,0,-9,-9,2019,13,0,0,0,4,3,0,0,0,1,1.795702622608164,0,21.2984532895511,0,1,1,0,4.59008347074998,4.888261595849809,44.33,27.14,36.77,49.16,6,1,1,0,0,0,10,2,1,269,554766.9823234526,215451.7306385194,189890.8066545538,0,1733.923117609606 -5445,6762,12261,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1084.155984809722,0,2,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,26.62,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,965,-63199.56541071973,0,0,0,826.5892948501485 -5446,6763,12262,-9,-9,-9,1,0,96,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1033.092670882967,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,7.100873743469628,3.924144216941482,68.55990780759231,0,1,1,0,0,0,44.48,19.11,-9,-9,5,1,1,0,0,0,12,1,1,660,-113596.5308452031,0,0,0,957.8175614364702 -5447,6764,12263,12264,-9,-9,1,1,45,0,1,0,2,2,-9,0,1,8.4424950457945,8.570711612861624,0,8,0,104.0256009813289,0,2,2,2019,13,2,38,36,1,2,0,12.19156501685171,12.19156501685171,0,0,0,0,0,1,1,0,0,0,44.35,29.98,16.12,33.44,6.666666666666667,1,1,0,0,11,13,3,1,418.5,14009.04975150787,0,0,0,1982.064553792838 -5447,6764,12264,12263,-9,-9,1,0,45,0,1,0,3,3,-9,0,2,6.999857539455975,7.119437384182432,0,8,0,15.25019332504944,0,2,2,2019,35,12,16,16,1,12,0,6.509369309755656,6.509369309755656,0,0,0,0,0,1,1,0,0,0,16.12,33.44,44.35,29.98,0,1,1,0,0,11,13,3,1,418.5,14009.04975150787,0,0,0,1982.064553792838 -5447,6765,12265,-9,12264,12263,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.847092027188,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1183,-43852.79092783844,0,0,0,0 -5448,6766,12266,12267,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,9.050162188001629,8.834076703172718,0,6,-4,-25.40013451412094,0,3,3,2019,6,0,44,45,1,0,0,20.17092643516013,20.17092643516013,0,0,0,0,0,0,0,0,0,0,60.02,56.42,56.35,35.1,8.333333333333334,1,1,0,0,7,9,5,1,1842,1595194.016666959,1232949.788317908,486283.6390327965,71178.8244951339,2661.825785205745 -5448,6766,12267,12266,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,6,4,-82.2917578170923,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,35.1,60.02,56.42,8.333333333333334,1,1,0,0,0,9,5,1,1842,1595194.016666959,1232949.788317908,486283.6390327965,71178.8244951339,2661.825785205745 -5448,6767,12268,-9,12267,12266,1,1,26,0,0,0,2,2,-9,0,3,8.277512043494873,8.323057312253878,0,0,0,-952.1547041990827,0,3,3,2019,10,0,41,45,1,0,1,9.842825239262151,9.842825239262151,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,455,164156.7077517713,-97741.16230087868,0,0,1434.832686770698 -5449,6768,12269,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.186490706936436,7.471297327944372,0,0,-1005.599047823217,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.247801539063158,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,415,759817.6986835272,254776.5921236713,398242.9138440104,0,526.2075969234377 -5450,6769,12270,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-992.9218015513425,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,75.66619924666298,86.66115567838351,694.4081927207811,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,11,2,0,1316,14485.1742321679,0,0,0,105.6886424765301 -5451,6770,12271,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.693352028816621,8.52238878048731,0,0,0,-1033.317330894443,0,2,1,2019,12,3,40,43,1,3,0,17.22819826249562,17.22819826249562,0,0,0,0,0,1,1,0,.3147791190682369,0,23.79,60.82,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,477,338713.7450112628,19783.23472264133,0,0,2655.672629644272 -5452,6771,12272,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.745954010949136,7.676974840445576,0,0,0,-1006.488892091602,0,3,3,2019,15,4,30,20,1,4,0,8.01123544590023,8.01123544590023,0,0,0,0,42,1,1,0,0,0,38.68,55.46,-9,-9,6.666666666666667,1,1,0,1,13,6,4,1,1314,244660.0845270764,0,514015.2881182221,168352.4534415943,1363.550079288482 -5452,6772,12273,-9,12272,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.024053569128,-9,2,-9,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,3.664824325982472,0,28.35,65.41,-9,-9,6.666666666666667,1,1,0,1,1,6,1,1,1032,-10396.20192274751,0,0,0,385.5160246892257 -5453,6773,12274,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.366633406974092,7.359850576221343,0,0,0,-1122.555147949137,0,2,2,2019,8,0,35,30,1,0,0,4.262552512041698,4.262552512041698,0,0,0,0,0,1,1,0,0,0,53.13,40.75,-9,-9,5,1,1,0,1,11,2,3,0,506,126293.4077967718,27071.26688042759,0,0,1168.183432556178 -5454,6774,12275,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.43401816255767,6.417617441423949,0,0,-1124.841169986887,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.409565124246084,61.61,13.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,477,426902.6302279425,57120.42564650814,180717.8337841461,0,863.837014856947 -5455,6775,12276,12277,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.759023523980171,7.746950899376165,10,-2,-86.50881432393069,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,7.000857338243108,0,0,1,1,0,0,7.574493781852325,59.31,49.81,62.95,38.7,10,1,1,0,0,0,12,3,1,1040.5,935662.6199555867,607243.9231600373,253255.3865916116,15555.39953551394,3523.746041490276 -5455,6775,12277,12276,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.853909738139026,7.590328705844777,51,2,21.66460869172631,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.057428389553471,7.33544776500069,62.95,38.7,59.31,49.81,10,1,1,0,0,11,12,3,1,1040.5,935662.6199555867,607243.9231600373,253255.3865916116,15555.39953551394,3523.746041490276 -5456,6776,12278,12280,-9,-9,1,0,38,1,4,0,3,3,-9,1,1,0,0,0,21,1,0,0,2,2,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.27,41.21,60.3,25.32,6.666666666666667,1,1,0,1,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5456,6776,12279,-9,12278,12280,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-796.8210606734054,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5456,6776,12280,12278,-9,-9,1,1,37,1,4,0,3,3,-9,0,2,0,0,0,21,-1,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,25.32,23.27,41.21,10,1,1,1,1,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5456,6776,12281,-9,12278,12280,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.553617134853,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5456,6776,12282,-9,12278,12280,1,0,11,1,4,1,3,0,-9,0,3,0,0,0,0,0,-806.4414951162357,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5456,6776,12283,-9,12278,12280,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.060890862049,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,386.1666666666667,16947.57831853504,0,0,0,1842.611491047194 -5457,6777,12284,12285,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.862493477182827,7.910442068004255,0,6,1,132.2357558461023,0,-9,-9,2019,8,0,40,40,1,0,0,7.04780877640663,7.04780877640663,0,0,0,0,0,0,0,0,5.323806007804281,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,348.5,555193.6407420754,15610.61085053815,476085.7799096269,0,1126.257089953612 -5457,6777,12285,12284,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,4.956966959665484,4.985183126347457,6,-1,-51.89925838867407,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.536695190295086,5.080173552600615,57.16,56.15,57.33,53.46,10,1,1,0,0,2,7,3,1,348.5,555193.6407420754,15610.61085053815,476085.7799096269,0,1126.257089953612 -5458,6778,12286,12288,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,7.4034388150532,7.301189834673013,0,32,-6,-74.90753758863511,0,-9,-9,2019,10,0,23,20,1,0,0,8.21363211186539,8.21363211186539,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,7,8,4,1,821.75,3150429.923130619,244820.8627201129,2491264.304715456,0,4917.82142408472 -5458,6778,12287,-9,12286,12288,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1268.701655535121,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.54,52.34,-9,-9,3.333333333333333,1,1,0,0,0,8,4,1,821.75,3150429.923130619,244820.8627201129,2491264.304715456,0,4917.82142408472 -5458,6778,12288,12286,-9,-9,1,1,58,0,2,0,1,1,-9,0,5,0,8.795492832825419,9.003832731956205,32,6,37.0204143894567,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.425271956036418,9.135957223262025,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,7,8,4,1,821.75,3150429.923130619,244820.8627201129,2491264.304715456,0,4917.82142408472 -5458,6778,12289,-9,12286,12288,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.5929135268384,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,821.75,3150429.923130619,244820.8627201129,2491264.304715456,0,4917.82142408472 -5458,6779,12290,-9,12286,12288,1,0,23,0,2,0,1,1,-9,0,4,8.109426487071863,8.258192613862946,0,0,0,-1005.819255454012,0,2,2,2019,4,0,39,35,1,0,1,9.406868120098396,9.406868120098396,0,0,0,0,0,1,1,0,4.08738359498695,0,50.7,52.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,1274,0,0,0,0,1644.179794488043 -5459,6780,12291,12294,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.179691772848791,8.301195135375597,0,10,9,-37.95972758597257,-9,-9,-9,2019,8,1,42,0,1,1,0,10.72153184734292,10.72153184734292,0,0,0,0,0,1,1,0,0,0,54.96,50.46,20.8,37.96,6.666666666666667,3,4,0,0,13,8,4,1,668,627249.0612963596,390552.37426957,293904.7867859384,75561.72759329705,3543.642359951484 -5459,6780,12292,-9,12294,12291,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.537298731653,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.343305126766428,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,1,668,627249.0612963596,390552.37426957,293904.7867859384,75561.72759329705,3543.642359951484 -5459,6780,12293,-9,12294,12291,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1008.099046249898,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,4,1,668,627249.0612963596,390552.37426957,293904.7867859384,75561.72759329705,3543.642359951484 -5459,6780,12294,12291,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.269844393020541,8.214208306037076,0,21,0,-59.88604469845711,0,1,2,2019,25,12,33,26,1,12,0,14.02035189580473,14.02035189580473,0,0,0,0,0,1,1,0,1.132461231863485,0,20.8,37.96,54.96,50.46,6.666666666666667,3,4,0,0,12,8,4,1,668,627249.0612963596,390552.37426957,293904.7867859384,75561.72759329705,3543.642359951484 -5460,6781,12295,12296,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7257490918208,8.961533110506039,0,3,-4,129.2722606431427,0,2,2,2019,14,2,49,55,1,2,0,16.02953987248286,16.02953987248286,0,0,0,0,0,0,0,0,0,0,42.31,56.08,54.2,57.49,8.333333333333334,1,1,0,0,9,12,5,0,396,219440.5295137173,66335.70890837663,263873.5540889902,185140.2466839908,4707.340035548808 -5460,6781,12296,12295,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.457277166108998,8.416122698200565,0,3,4,112.0391392856975,0,-9,-9,2019,9,1,40,38,1,1,0,12.84570355940688,12.84570355940688,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.31,56.08,5,1,1,0,0,9,12,5,0,396,219440.5295137173,66335.70890837663,263873.5540889902,185140.2466839908,4707.340035548808 -5461,6782,12297,-9,-9,-9,1,0,45,0,0,0,1,1,0,1,1,0,0,0,0,0,-897.6022363744187,-9,3,2,2019,34,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,1,9,12,1,0,865,117670.6885693968,0,0,0,652.2345928708205 -5462,6783,12298,-9,12299,12300,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.7176625841372,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1164.666666666667,143740.6517758021,-31840.2429905986,149226.1033334501,95458.70590667611,4180.913085588748 -5462,6783,12299,12300,-9,-9,1,0,32,0,3,0,2,2,-9,1,2,6.399942128432355,6.336503004583518,0,6,-3,-8.85349674717132,0,1,2,2019,14,3,19,12,1,3,0,4.321812015358855,4.321812015358855,0,0,0,0,107,1,1,0,0,0,43.45,38.38,58.75,32.14,8.333333333333334,1,1,0,0,5,4,3,1,1164.666666666667,143740.6517758021,-31840.2429905986,149226.1033334501,95458.70590667611,4180.913085588748 -5462,6783,12300,12299,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.544598945846689,8.657558677332295,0,6,3,-8.982775432664639,0,3,3,2019,11,0,35,0,1,0,0,19.55916159368752,19.55916159368752,0,0,0,0,0,1,1,0,0,0,58.75,32.14,43.45,38.38,6.666666666666667,1,1,0,0,6,4,3,1,1164.666666666667,143740.6517758021,-31840.2429905986,149226.1033334501,95458.70590667611,4180.913085588748 -5463,6784,12301,12302,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.036820737700038,7.809620822177975,0,2,-1,4.132962699983763,0,2,1,2019,14,4,26,26,1,4,0,17.37444484342357,17.37444484342357,0,0,0,0,0,1,1,0,0,0,46.61,56.93,57.16,56.15,8.333333333333334,1,1,0,0,10,4,5,1,820,732084.3225238827,526413.760917865,237350.376620483,33470.47923685086,4343.782259721149 -5463,6784,12302,12301,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.796876207120347,8.762761037202427,0,2,1,-52.35391996755639,0,2,2,2019,6,0,44,44,1,0,0,17.77287130604284,17.77287130604284,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.61,56.93,8.333333333333334,1,1,0,0,10,4,5,1,820,732084.3225238827,526413.760917865,237350.376620483,33470.47923685086,4343.782259721149 -5463,6784,12303,-9,12301,12302,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.235040180811,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,820,732084.3225238827,526413.760917865,237350.376620483,33470.47923685086,4343.782259721149 -5463,6784,12304,-9,12301,12302,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.475826472445,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,820,732084.3225238827,526413.760917865,237350.376620483,33470.47923685086,4343.782259721149 -5464,6785,12305,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,7.256319092277567,7.207713374320988,0,0,0,-1060.920448498116,0,-9,3,2019,25,10,24,26,1,10,0,8.271821490271885,8.271821490271885,0,0,0,0,0,1,1,0,0,0,44.18,14.05,-9,-9,0,1,1,0,0,9,10,3,0,2252.5,42605.80008535092,0,0,0,1438.510538102675 -5464,6785,12306,-9,12305,-9,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-951.9569321234942,1,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.2800463203641542,0,48.77,60.16,-9,-9,5,1,1,0,0,1,10,3,0,2252.5,42605.80008535092,0,0,0,1438.510538102675 -5465,6786,12307,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.944567511528946,7.956793753847362,0,0,0,-867.7265061045015,0,-9,-9,2019,7,0,38,36,1,0,0,9.734411289161171,9.734411289161171,0,0,0,0,0,0,0,0,.3348051165629694,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,515,220907.1026732135,132616.300285115,0,0,1527.345532146398 -5466,6787,12308,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.412940630994774,8.438165609096014,0,0,0,-934.4409410110303,0,2,2,2019,8,0,35,40,1,0,0,17.01790668130193,17.01790668130193,0,0,0,0,0,0,0,0,.8407479031283454,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,490,206696.2549106101,924.2323787285159,118723.6073250957,123808.4757963803,1524.9006255755 -5467,6788,12309,12310,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.26713264584739,7.865127557784847,0,6,-5,36.92793310747667,0,-9,-9,2019,5,0,35,37,1,0,0,10.38194570357099,10.38194570357099,0,0,0,0,0,0,0,0,.6560505391350274,0,54.2,57.49,52.51,54.26,8.333333333333334,1,1,0,0,5,9,4,0,397.5,610090.4437996962,94411.88923918598,481786.6790568043,196479.2547864385,2330.155043584994 -5467,6788,12310,12309,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,7.5661612737524,7.66193982647532,0,6,5,37.42324469334791,0,-9,-9,2019,12,0,30,30,1,0,0,6.8029134330368,6.8029134330368,0,0,0,0,0,0,0,0,0,0,52.51,54.26,54.2,57.49,8.333333333333334,1,1,0,0,5,9,4,0,397.5,610090.4437996962,94411.88923918598,481786.6790568043,196479.2547864385,2330.155043584994 -5468,6789,12311,-9,12312,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.143896735606,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,537.6666666666666,329340.3329990103,267105.4330345127,166953.0244282448,65131.29555209084,3040.479780714697 -5468,6789,12312,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.049543321295848,8.977637978578505,7.067815166391053,0,0,-986.0154896225723,0,2,-9,2019,15,3,40,48,1,3,0,19.2345417009108,19.2345417009108,0,0,0,0,0,1,1,0,7.612287704587017,0,38.69,53.88,-9,-9,3.333333333333333,1,1,0,0,11,12,4,1,537.6666666666666,329340.3329990103,267105.4330345127,166953.0244282448,65131.29555209084,3040.479780714697 -5468,6789,12313,-9,12312,-9,1,0,17,0,1,1,2,0,-9,0,3,0,4.350260767895951,4.444994683490502,0,0,-1045.479360468572,-9,2,-9,2019,29,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,4.616473842773251,0,28.07,42.32,-9,-9,0,1,1,0,1,1,12,4,1,537.6666666666666,329340.3329990103,267105.4330345127,166953.0244282448,65131.29555209084,3040.479780714697 -5469,6790,12314,-9,12315,-9,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1088.451389273628,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,1047.6,-39563.30186043993,-24402.99032505791,0,0,3131.197425936447 -5469,6790,12315,-9,-9,-9,1,0,39,0,4,0,2,2,-9,0,2,7.740457933828183,7.780661953368172,6.766721801559851,0,0,-987.4590032989626,0,2,2,2019,21,8,4,4,1,8,0,90.26903199147358,90.26903199147358,0,0,0,0,0,1,1,0,7.142294584663651,0,51.23,40.44,-9,-9,3.333333333333333,1,1,0,1,8,9,3,0,1047.6,-39563.30186043993,-24402.99032505791,0,0,3131.197425936447 -5469,6790,12316,-9,12315,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-982.4720147327006,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1047.6,-39563.30186043993,-24402.99032505791,0,0,3131.197425936447 -5469,6790,12317,-9,12315,-9,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-959.4122955412428,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1047.6,-39563.30186043993,-24402.99032505791,0,0,3131.197425936447 -5469,6790,12318,-9,12315,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-967.2962575969434,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1047.6,-39563.30186043993,-24402.99032505791,0,0,3131.197425936447 -5470,6791,12319,12320,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.430132330886075,6.549997670233875,10,4,-19.21840282010153,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.555898405502846,50,47,55.56,51.53,7,2,3,0,0,0,4,2,1,1448.5,280771.0821492039,215327.3633735759,197546.1015732593,0,1043.272230209334 -5470,6791,12320,12319,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,1.932985689723588,1.700616687576956,52,-4,-69.01366225935134,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,1.851124557356188,1.925739668349897,55.56,51.53,50,47,10,2,3,0,0,8,4,2,1,1448.5,280771.0821492039,215327.3633735759,197546.1015732593,0,1043.272230209334 -5471,6792,12321,12324,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,8,-7,-40.0322801440755,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,2.529056458811811,0,39.1,57.79,53.81,53.56,6.666666666666667,1,1,0,0,5,9,3,1,998,313316.6712123373,98417.40840883917,308380.2198560253,93171.18504508102,2203.302082465193 -5471,6792,12322,-9,12321,12324,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.717653524421,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,3,1,998,313316.6712123373,98417.40840883917,308380.2198560253,93171.18504508102,2203.302082465193 -5471,6792,12323,-9,12321,12324,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.0692856678096,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,1,998,313316.6712123373,98417.40840883917,308380.2198560253,93171.18504508102,2203.302082465193 -5471,6792,12324,12321,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.526803581720785,8.635404026943228,0,8,7,-21.85971635014111,0,1,1,2019,7,1,43,40,1,1,0,12.3900265773069,12.3900265773069,0,0,0,0,7,1,1,0,0,0,53.81,53.56,39.1,57.79,6.666666666666667,3,4,0,0,9,9,3,1,998,313316.6712123373,98417.40840883917,308380.2198560253,93171.18504508102,2203.302082465193 -5472,6793,12325,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,7.927152464411529,7.840083147357738,0,0,-995.5804545803028,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.062248453097276,57.06,57.76,-9,-9,10,1,1,0,0,2,13,4,1,743,935465.7749324433,790480.2168027757,0,0,1462.859541454213 -5472,6794,12326,-9,12325,-9,1,1,26,0,0,0,2,2,-9,0,4,8.459224590807587,8.75473263253496,0,0,0,-922.7072605437236,0,2,-9,2019,10,0,40,40,1,1,0,16.18406990786928,16.18406990786928,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,371,-168993.4019254022,44151.9235718384,0,0,2018.944429532402 -5473,6795,12327,12328,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.762172241283482,6.18451217434164,7,10,71.25816194268248,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.747215888336243,5.841383682956895,62.03,41.71,49.43,46.56,10,1,1,0,0,0,7,2,1,1076.5,469239.2525501534,12731.95797376628,454884.3708455404,0,1342.850303627164 -5473,6795,12328,12327,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,7,-10,45.58729615854399,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,.6464585441289905,0,49.43,46.56,62.03,41.71,3.333333333333333,1,1,0,0,1,7,2,1,1076.5,469239.2525501534,12731.95797376628,454884.3708455404,0,1342.850303627164 -5474,6796,12329,12330,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.10852715546322,7.185560669393472,0,30,-5,40.33495088709721,0,-9,-9,2019,9,0,22,23,1,0,0,8.399136871685585,8.399136871685585,0,0,0,0,0,0,0,0,0,0,61.71,43.2,52,54.51,5,1,1,0,0,9,7,4,1,738,862894.8577141522,-18711.12357681407,813601.9583896468,0,2542.269350338034 -5474,6796,12330,12329,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.415728458100158,8.437757762313423,0,30,5,-17.626427631667,0,3,3,2019,11,0,60,55,1,0,0,10.05261710849884,10.05261710849884,0,0,0,0,0,0,0,0,3.359076014688761,0,52,54.51,61.71,43.2,8.333333333333334,1,1,0,0,11,7,4,1,738,862894.8577141522,-18711.12357681407,813601.9583896468,0,2542.269350338034 -5474,6797,12331,-9,12329,12330,1,1,24,0,0,0,1,1,-9,0,5,7.875575223931693,8.267756043662269,0,0,0,-1031.716007582994,0,3,3,2019,10,0,40,45,1,0,1,11.14625489960976,11.14625489960976,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,598,-64457.21703784722,-103502.7173972177,0,0,1373.261934345218 -5475,6798,12332,-9,12334,12333,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.863457039149,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,345.3333333333333,48786.87715294203,49131.4884527934,0,0,3124.536764074552 -5475,6798,12333,12334,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,7.767803147857292,7.716214555989339,0,7,0,54.01089558281532,0,1,2,2019,10,3,40,40,1,3,0,7.059976949328363,7.059976949328363,0,0,0,0,0,1,1,0,2.754574114223038,0,43.54,59.6,52.31,58.29,6.666666666666667,1,1,0,0,4,7,3,0,345.3333333333333,48786.87715294203,49131.4884527934,0,0,3124.536764074552 -5475,6798,12334,12333,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,7.24128634904717,6.975846518813188,0,7,9,42.14104028116976,0,2,2,2019,7,0,28,30,1,0,0,4.502346161230186,4.502346161230186,0,0,0,0,0,1,1,0,0,0,52.31,58.29,43.54,59.6,10,1,1,0,0,9,7,3,0,345.3333333333333,48786.87715294203,49131.4884527934,0,0,3124.536764074552 -5476,6799,12335,12336,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.447777720017368,5.533682075838974,7,1,-114.8429424830226,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.825657115289384,5.788897077454191,48.28,60.18,63.24,47.92,10,1,1,0,0,8,7,2,1,297,651614.8732614475,59134.13610199927,451785.0263896166,0,1333.11801901228 -5476,6799,12336,12335,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,7,-1,-24.74614081190158,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.66384707602923,0,63.24,47.92,48.28,60.18,10,1,1,0,0,0,7,2,1,297,651614.8732614475,59134.13610199927,451785.0263896166,0,1333.11801901228 -5477,6800,12337,12338,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.706732213700201,8.697705441517215,0,6,0,-140.5793189317965,0,3,3,2019,12,2,43,41,1,2,0,16.96979426351387,16.96979426351387,0,0,0,0,0,0,0,0,0,0,40.87,44.58,33.06,30.11,5,1,1,0,1,9,12,5,1,624.5,1263047.198532332,988500.6707082941,362802.9863871623,218613.0176798984,3858.06232569733 -5477,6800,12338,12337,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.235829541040554,8.41450599408936,0,6,0,36.20200193694234,0,-9,-9,2019,13,2,40,38,1,2,0,14.95491528934729,14.95491528934729,0,0,0,0,0,0,0,0,0,0,33.06,30.11,40.87,44.58,3.333333333333333,1,1,0,1,9,12,5,1,624.5,1263047.198532332,988500.6707082941,362802.9863871623,218613.0176798984,3858.06232569733 -5477,6801,12339,-9,12337,12338,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1159.244702800107,-9,1,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,31.81,52.64,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,1556,-44099.6814425004,0,0,0,4260.639975492342 -5477,6802,12340,-9,12337,12338,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1058.542661274321,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,1,12,1,1,386,-89464.42724359287,0,0,0,364.1609372886948 -5478,6803,12341,-9,12342,12343,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-914.7481264113291,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,7,2,0,523,3251692.12291085,2098763.508259641,406799.4964673344,0,2810.965980504664 -5478,6803,12342,12343,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,6.297464657521954,5.828670938406076,40,-2,-75.74412711850715,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,5.638399940728268,38.65,17.4,48.85,38.46,3.333333333333333,1,1,0,0,1,7,2,0,523,3251692.12291085,2098763.508259641,406799.4964673344,0,2810.965980504664 -5478,6803,12343,12342,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,40,2,27.04143243270297,0,2,2,2019,15,3,0,40,3,3,0,0,0,0,0,0,0,74.5,1,1,0,6.694795447448953,0,48.85,38.46,38.65,17.4,5,1,1,0,0,9,7,2,0,523,3251692.12291085,2098763.508259641,406799.4964673344,0,2810.965980504664 -5479,6804,12344,12345,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,7.765000249984109,7.495443884717573,39,5,-79.16354426671099,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.615842923745305,7.535497301819131,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,8,12,4,1,263.5,844969.1382002661,814507.5772548341,0,0,2548.225836202111 -5479,6804,12345,12344,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,7.383967622958771,8.072580101823728,6.810905813334688,39,-5,14.99687660691556,0,2,2,2019,10,0,18,18,1,0,0,9.152549337625429,9.152549337625429,0,0,0,0,0,0,0,0,5.526696888379821,7.560803201309472,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,11,12,4,1,263.5,844969.1382002661,814507.5772548341,0,0,2548.225836202111 -5480,6805,12346,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,0,0,-978.1908138398345,0,-9,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.04,28.92,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,592,152433.2940913125,0,0,0,1919.348690620503 -5481,6806,12347,-9,12348,12349,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.405067846526,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,1175.666666666667,370896.6584730851,85821.56383847851,381600.9488809193,190876.117191513,2999.009745362948 -5481,6806,12348,12349,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.628292269958341,7.862041653840099,0,6,-5,5.733000486340918,-9,-9,-9,2019,8,0,36,0,1,0,0,8.886962841936773,8.886962841936773,0,0,0,0,0,1,1,0,0,0,50.34,44.76,35.55,60.77,10,1,1,0,0,8,5,4,1,1175.666666666667,370896.6584730851,85821.56383847851,381600.9488809193,190876.117191513,2999.009745362948 -5481,6806,12349,12348,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.432383815342476,8.867930528745328,0,6,5,65.7694290115831,0,3,3,2019,15,4,37,37,1,4,0,17.80455511111486,17.80455511111486,0,0,0,0,0,1,1,0,1.288327478740481,0,35.55,60.77,50.34,44.76,8.333333333333334,1,1,0,0,9,5,4,1,1175.666666666667,370896.6584730851,85821.56383847851,381600.9488809193,190876.117191513,2999.009745362948 -5482,6807,12350,12352,-9,-9,1,0,30,2,2,0,1,1,-9,0,3,8.29700804398867,8.548512188350866,0,3,-13,-28.89920774431078,0,-9,-9,2019,8,0,37,37,1,0,0,13.92024324584792,13.92024324584792,0,0,0,0,0,0,0,0,0,0,49.63,54.22,51.41,56.15,6.666666666666667,1,1,0,0,7,1,4,1,657.5,232210.8570504443,78244.2653559555,203296.187437731,101767.3568474304,4045.39755440598 -5482,6807,12351,-9,12350,12352,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.276411336435,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,4,1,657.5,232210.8570504443,78244.2653559555,203296.187437731,101767.3568474304,4045.39755440598 -5482,6807,12352,12350,-9,-9,1,1,43,2,2,0,2,2,-9,0,3,8.522843249898491,8.318832566739967,0,3,13,-69.77784376777551,0,-9,-9,2019,8,0,40,40,1,0,0,16.66626083393879,16.66626083393879,0,0,0,0,0,0,0,0,0,0,51.41,56.15,49.63,54.22,8.333333333333334,1,1,0,0,6,1,4,1,657.5,232210.8570504443,78244.2653559555,203296.187437731,101767.3568474304,4045.39755440598 -5482,6807,12353,-9,12350,12352,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.844255483404,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,4,1,657.5,232210.8570504443,78244.2653559555,203296.187437731,101767.3568474304,4045.39755440598 -5483,6808,12354,12355,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.341606268930532,8.295943489241266,0,9,-2,-9.563926936558694,-9,2,2,2019,11,0,30,0,1,0,0,14.60265200677035,14.60265200677035,0,0,0,0,0,1,1,0,1.474653924828068,0,42.78,57.17,58.32,50.22,6.666666666666667,1,1,0,0,10,1,4,1,403.6666666666667,143592.5954061828,72513.08329098471,110405.3566603668,96672.99789725564,3063.840552440286 -5483,6808,12355,12354,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.326006918575203,7.998411400206701,0,9,2,-114.2455571379162,0,2,-9,2019,10,0,37,37,1,0,0,8.033884285569089,8.033884285569089,0,0,0,0,0,1,1,0,0,0,58.32,50.22,42.78,57.17,8.333333333333334,1,1,0,0,10,1,4,1,403.6666666666667,143592.5954061828,72513.08329098471,110405.3566603668,96672.99789725564,3063.840552440286 -5483,6808,12356,-9,12354,12355,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1017.238599391119,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,1,4,1,403.6666666666667,143592.5954061828,72513.08329098471,110405.3566603668,96672.99789725564,3063.840552440286 -5484,6809,12357,12358,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,7.046068867459037,7.05402590435527,64,4,-14.06807704686349,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.075567179203075,7.010091654919365,57.11,36.04,52,45,8.333333333333334,1,1,0,0,0,2,2,1,728,617110.9810836912,183489.3380174506,251528.4791754035,0,1629.080982956191 -5484,6809,12358,12357,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,64,-4,11.69965710565221,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,3.799892414319186,0,0,1,1,0,1.064397255319942,0,52,45,57.11,36.04,8.333333333333334,1,1,0,0,0,2,2,1,728,617110.9810836912,183489.3380174506,251528.4791754035,0,1629.080982956191 -5485,6810,12359,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.509405658493514,7.58683602233018,0,0,-893.1940991068301,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.14181470151416,7.380559431689675,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1468,347675.1514247461,347115.7326965421,139742.1425488866,0,1314.450654951731 -5486,6811,12360,12361,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,.061024300210339,0,36.07,25.51,45.17,12.09,6.666666666666667,1,1,0,0,0,13,1,0,1019.5,140421.6870726454,0,0,0,2965.336536310561 -5486,6811,12361,12360,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,0,45.17,12.09,36.07,25.51,5,1,1,0,0,0,13,1,0,1019.5,140421.6870726454,0,0,0,2965.336536310561 -5487,6812,12362,12363,-9,-9,1,1,44,0,1,0,2,2,-9,0,1,7.511868628739518,7.675199425209061,0,4,8,112.3392225329306,0,-9,-9,2019,9,0,60,50,1,0,0,3.732870525503876,3.732870525503876,0,0,0,0,0,1,1,0,3.005931868043844,0,45.75,48.3,56.47,59.4,3.333333333333333,1,1,0,0,8,9,3,1,436.3333333333333,160958.5372414999,97757.83354520066,341938.9825454205,171085.1356668933,1292.015359341927 -5487,6812,12363,12362,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,7.02598249473311,7.173437768280063,0,4,-8,-161.7342233630149,0,-9,-9,2019,5,0,30,35,1,0,0,4.739370036709251,4.739370036709251,0,0,0,0,0,1,1,0,0,0,56.47,59.4,45.75,48.3,10,2,3,0,0,6,9,3,1,436.3333333333333,160958.5372414999,97757.83354520066,341938.9825454205,171085.1356668933,1292.015359341927 -5487,6812,12364,-9,12363,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.037952871842,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,9,3,1,436.3333333333333,160958.5372414999,97757.83354520066,341938.9825454205,171085.1356668933,1292.015359341927 -5488,6813,12365,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.346318951233308,5.169126824728817,0,0,-911.0752438960528,0,3,2,2019,8,0,0,23,4,0,0,0,0,1,0,0,0,0,1,1,0,6.357777147213171,5.499580433726256,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,456,350020.6663240129,200579.039434728,122598.1675506904,0,515.5482256974083 -5489,6814,12366,12367,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.386436913109353,8.492439767956087,5.256428567951442,16,4,7.042130741148368,0,3,3,2019,14,2,40,40,1,2,0,12.37860229190441,12.37860229190441,0,0,0,0,2,1,1,0,5.322646572831783,5.071565638686732,37.02,37.37,47.01,34.07,5,1,1,0,0,9,7,5,1,513.5,2656592.878023751,1354615.086068686,569172.9111460504,0,5510.811225373975 -5489,6814,12367,12366,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.936793478334494,9.164454953694912,0,16,-4,-36.07163040299032,0,2,2,2019,15,3,40,40,1,3,0,22.46095517519302,22.46095517519302,0,0,0,0,2,1,1,0,0,0,47.01,34.07,37.02,37.37,5,1,1,0,0,9,7,5,1,513.5,2656592.878023751,1354615.086068686,569172.9111460504,0,5510.811225373975 -5490,6815,12368,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,0,0,0,0,-977.8913611554377,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,55,9.25,-9,-9,5,1,1,0,0,0,12,1,1,226,-40229.54170394316,0,0,0,813.5228137946467 -5490,6816,12369,-9,-9,12368,1,1,26,0,0,0,1,1,1,0,4,7.032448550808025,6.829473146519216,0,0,0,-922.5177484792864,-9,-9,2,2019,9,1,20,0,1,1,0,6.140313771346699,6.140313771346699,0,0,0,0,2,1,1,0,0,0,44.31,56.75,-9,-9,6.666666666666667,1,1,0,0,4,12,2,1,505,59257.94233477843,-89932.51876513533,0,0,1298.778414536668 -5491,6817,12370,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.689094344330754,5.37321196833244,0,0,-864.9348614629712,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,4.703961919299429,5.764988390524643,46.41,37.03,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1322,335516.645319983,139478.3582203797,0,0,466.0925652004789 -5492,6818,12371,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.631091316756891,6.896096639657775,0,0,-953.0062310810436,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.658599509113849,57.16,56.15,-9,-9,10,1,1,0,0,9,4,2,0,89,345114.1531934143,495865.1332965773,0,0,98.39225153357086 -5493,6819,12372,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,5.336636869517545,4.963673879683023,0,0,-881.3283807360897,-9,-9,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,5.225252697233858,0,47.55,53.79,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,510,57482.84526153789,0,0,0,469.7116693603607 -5494,6820,12373,12374,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,6.077478383836604,6.131659889545982,0,7,-10,-104.2165447008249,0,3,3,2019,12,0,16,13,1,0,0,3.308963958805499,3.308963958805499,0,0,0,0,110,1,1,0,0,0,54.61,51.04,16.04,23.99,8.333333333333334,1,1,0,0,6,12,2,0,1481,-102282.9741821342,0,0,0,1950.638207365571 -5494,6820,12374,12373,-9,-9,1,1,67,0,0,0,3,3,-9,1,1,0,0,0,7,10,-36.26247671816007,0,3,3,2019,26,12,0,0,3,12,0,0,0,1,0,143.743019784988,0,0,1,1,0,0,0,16.04,23.99,54.61,51.04,0,1,1,0,0,0,12,2,0,1481,-102282.9741821342,0,0,0,1950.638207365571 -5495,6821,12375,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.794348628485718,7.899790503417779,5.853093145637232,0,0,-1030.786392269538,0,2,2,2019,10,0,30,30,1,0,0,9.452880313061021,9.452880313061021,0,0,0,0,0,1,0,1,5.858356672579578,0,54.78,47.51,-9,-9,10,1,1,0,0,9,1,4,1,222,-57296.03219184248,0,0,0,1743.808279299276 -5496,6822,12376,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,3.570323376565375,3.644502161603209,0,0,-922.193632050995,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.131680253895795,3.762577668281899,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,8,13,2,0,340,179557.9661623712,182563.033857939,0,0,385.6624330599602 -5497,6823,12377,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.623298032576971,8.928482484458,0,0,0,-960.9952110954779,0,3,-9,2019,10,0,44,77,1,0,0,11.55297923983215,11.55297923983215,0,0,0,0,0,0,0,0,7.1925082361286,0,26.38,62.87,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,71,305599.6967224665,139888.581204925,53509.40676403622,0,2296.537508799966 -5497,6824,12378,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,9.680564614529922,9.739134458043042,0,0,0,-1032.052684171257,0,-9,-9,2019,8,0,60,90,1,0,0,29.29271973422595,29.29271973422595,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,69,203657.8684109169,150515.3894496479,212212.6071980284,79223.43327277072,4161.638755967633 -5498,6825,12379,-9,-9,-9,1,1,35,0,0,0,3,3,-9,0,4,7.302352147504086,7.51766508557844,0,0,0,-982.4104895763984,0,2,2,2019,10,0,16,18,1,0,0,12.55629141498292,12.55629141498292,0,0,0,0,0,1,1,0,0,0,51.11,42.78,-9,-9,8.333333333333334,2,3,0,0,4,8,3,0,771,0,0,0,0,537.9798569978473 -5499,6826,12380,12381,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.306223211590341,9.385460475006967,0,7,-2,20.34515178102863,0,2,3,2019,9,0,70,50,1,0,0,17.41631387854031,17.41631387854031,0,0,0,0,0,1,1,0,6.429589713875894,0,54,54,36.53,47.94,8,1,1,0,0,1,12,5,1,1288.5,1062744.433624423,350673.0521698926,546619.7691318323,0,3791.880768495307 -5499,6826,12381,12380,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,7,2,5.822769499064279,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,2.276230064284094,0,36.53,47.94,54,54,8.333333333333334,1,1,0,0,0,12,5,1,1288.5,1062744.433624423,350673.0521698926,546619.7691318323,0,3791.880768495307 -5499,6827,12382,-9,12381,12380,1,1,26,0,0,0,3,3,-9,1,4,0,0,0,0,0,-837.2594424067053,-9,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,12,1,1,178,0,0,0,0,1277.692081186078 -5500,6828,12383,12384,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.895748881671327,8.494595228183794,0,5,-3,89.24825165071258,-9,-9,-9,2019,7,0,33,0,1,0,0,20.07575201035993,20.07575201035993,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.11,54.04,10,1,1,0,0,1,12,4,1,1649.5,-8978.993600781694,-28478.48001103599,165592.3937819519,121573.3859854229,3568.166295360994 -5500,6828,12384,12383,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,6.473023103288697,6.259969535953723,0,5,3,51.45983046643989,0,1,3,2019,9,0,7,37,1,0,0,11.83377599292413,11.83377599292413,0,0,0,0,0,0,0,0,7.946205704670054,0,50.11,54.04,54.1,59.11,10,1,1,0,0,12,12,4,1,1649.5,-8978.993600781694,-28478.48001103599,165592.3937819519,121573.3859854229,3568.166295360994 -5501,6829,12385,12386,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.741724538688068,8.596570726022437,0,3,-1,-2.645064044556796,0,-9,-9,2019,12,1,52,55,1,1,0,10.53405745548854,10.53405745548854,0,0,0,0,0,0,0,0,3.331363640674486,0,45.18,57.44,41.17,59.31,8.333333333333334,1,1,0,0,4,9,5,0,578.5,-22474.93517257098,17310.61097123458,0,0,4319.091998757236 -5501,6829,12386,12385,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.797369151592784,8.858964542031316,0,3,1,168.1459550495896,-9,-9,-9,2019,11,1,50,0,1,1,0,14.07137098491475,14.07137098491475,0,0,0,0,0,0,0,0,2.633522763051202,0,41.17,59.31,45.18,57.44,6.666666666666667,2,3,0,0,6,9,5,0,578.5,-22474.93517257098,17310.61097123458,0,0,4319.091998757236 -5502,6830,12387,12389,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,6.577229059107203,6.709096083262226,0,9,-11,-99.91165612537031,-9,3,2,2019,4,0,14,0,1,0,0,5.656662127526044,5.656662127526044,0,0,0,0,0,0,0,0,0,0,62.66,52.4,62.39,56.71,8.333333333333334,2,3,0,0,5,8,3,0,824.75,162900.4020578046,0,0,0,2251.649035126261 -5502,6830,12388,-9,12387,12389,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1033.785110933514,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,824.75,162900.4020578046,0,0,0,2251.649035126261 -5502,6830,12389,12387,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.4403144871533,8.472958079187912,0,9,11,67.62728348493029,-9,-9,2,2019,5,0,72,0,1,0,0,7.198665594826092,7.198665594826092,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.66,52.4,10,2,3,0,0,12,8,3,0,824.75,162900.4020578046,0,0,0,2251.649035126261 -5502,6830,12390,-9,12387,12389,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.618800028875,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,3,0,824.75,162900.4020578046,0,0,0,2251.649035126261 -5503,6831,12391,12393,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,1,-3,-38.3748798727901,-9,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,8,1,1,1,0,11,2,3,1,841.75,470848.8304197053,105687.3339014984,368074.7534467929,92966.48495342852,2697.168104124368 -5503,6831,12392,-9,12391,12393,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1003.231881727838,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,841.75,470848.8304197053,105687.3339014984,368074.7534467929,92966.48495342852,2697.168104124368 -5503,6831,12393,12391,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.55649880574642,8.662910108680972,0,1,3,78.31426011597284,-9,2,2,2019,9,0,37,0,1,1,0,18.57512914662853,18.57512914662853,0,0,0,0,0,1,1,0,0,0,52,55,50,55,8,1,1,0,0,1,2,3,1,841.75,470848.8304197053,105687.3339014984,368074.7534467929,92966.48495342852,2697.168104124368 -5503,6831,12394,-9,12391,12393,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-817.3244658440842,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.82,57.72,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,841.75,470848.8304197053,105687.3339014984,368074.7534467929,92966.48495342852,2697.168104124368 -5504,6832,12395,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.515019902573733,6.343687096622938,0,0,-1111.373884410507,0,3,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,6.370565023140652,37.41,41.3,-9,-9,3.333333333333333,1,1,0,1,0,11,2,1,1510,-88590.66846889106,130853.1199562018,0,0,1533.265666066233 -5505,6833,12396,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.410749861469176,9.729075670760437,0,0,0,-978.1107689125225,0,2,2,2019,13,1,43,45,1,1,0,33.0269219867613,33.0269219867613,0,0,0,0,0,1,1,0,6.65036170325962,0,38.24,63.73,-9,-9,5,1,1,0,0,9,2,5,1,635,385170.4580875664,392345.2475045048,76120.23330060884,43809.04311206736,2909.280826298821 -5506,6834,12397,12398,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,3,-4,0,-9,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.14,60.45,44.02,60.7,10,1,1,0,0,0,4,1,1,1072.5,740377.4437403256,413550.4870614144,159573.6718814173,0,450.0894075248293 -5506,6834,12398,12397,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,0,0,3,4,0,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.02,60.7,51.14,60.45,3.333333333333333,1,1,0,0,0,4,1,1,1072.5,740377.4437403256,413550.4870614144,159573.6718814173,0,450.0894075248293 -5507,6835,12399,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,2,8.384884193536447,9.120595505230504,0,0,0,-828.3609677306322,0,2,2,2019,20,8,70,0,1,8,0,8.366556141062222,8.366556141062222,0,0,0,0,0,0,0,0,0,0,31.98,54.55,-9,-9,1.666666666666667,1,1,0,0,7,10,5,0,414,59508.63401710532,-41633.35562769904,200381.778300671,164677.4459940129,1579.126241992431 -5508,6836,12400,12401,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.627838294444571,8.680742979167041,0,1,-6,40.81523552329008,0,1,1,2019,12,1,52,60,1,1,0,11.33516593518687,11.33516593518687,0,0,0,0,0,0,0,0,0,0,48.45,49.46,58.15,52.91,8.333333333333334,1,1,0,0,7,10,5,1,897.5,395032.4109010744,130029.0722452759,295415.0864072237,146760.4641154367,4383.402549264225 -5508,6836,12401,12400,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.928899580262893,9.020011164149745,0,1,6,-24.77609348288549,-9,-9,-9,2019,5,0,37,0,1,0,0,17.72172181397893,17.72172181397893,0,0,0,0,0,0,0,0,2.34375267810488,0,58.15,52.91,48.45,49.46,8.333333333333334,1,1,0,0,0,10,5,1,897.5,395032.4109010744,130029.0722452759,295415.0864072237,146760.4641154367,4383.402549264225 -5509,6837,12402,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-978.2231474749799,-9,-9,-9,2019,24,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,31.52,54.34,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,337,0,0,0,0,-29.30634772498971 -5509,6838,12403,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1123.396509856714,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,7,1,1,0,0,0,32.26,48.92,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1406,136073.001653469,0,0,0,853.9992280248811 -5509,6839,12404,-9,12403,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,0,0,-893.6206480437983,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,45.05,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,2846,58847.21476841256,0,0,0,754.9542821682672 -5510,6840,12405,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.04928392320607,7.135305520745673,0,0,0,-902.4184967808368,0,2,2,2019,11,3,20,40,1,3,0,4.108764692130864,4.108764692130864,0,0,0,0,0,1,1,0,0,0,33.96,58.94,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,463,146632.0101600449,0,0,0,879.4952947398406 -5511,6841,12406,12407,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.121368444481098,8.359685225052795,0,10,2,84.90875522659459,0,2,2,2019,11,0,37,34,1,0,0,12.93199419171508,12.93199419171508,0,0,0,0,0,0,0,0,0,0,47.93,49.39,57.54,42.36,6.666666666666667,1,1,0,0,10,9,5,1,645,1099552.2251326,181884.1864615667,465029.054190807,0,3673.350208077354 -5511,6841,12407,12406,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.760405698576916,8.582031435337612,0,10,-2,60.9747858276906,0,2,1,2019,5,0,38,60,1,0,0,16.28125191478049,16.28125191478049,0,0,0,0,0,0,0,0,0,0,57.54,42.36,47.93,49.39,8.333333333333334,1,1,0,0,11,9,5,1,645,1099552.2251326,181884.1864615667,465029.054190807,0,3673.350208077354 -5512,6842,12408,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.91603639630512,8.566906485283049,0,0,0,-949.8243027761214,0,1,1,2019,11,2,47,50,1,2,0,12.9554975757581,12.9554975757581,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,677,178554.6568603874,1068.924729939175,0,0,2546.680172819219 -5512,6843,12409,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,5.799877706660633,5.957231846855402,0,0,0,-962.4280791433451,0,-9,-9,2019,12,0,60,45,1,0,0,.7524954608639129,.7524954608639129,0,0,0,0,2,0,0,0,0,0,40.88,59.72,-9,-9,1.666666666666667,1,1,0,1,6,8,2,0,562,-20038.60321245549,-49717.59787220876,0,0,311.0072603164316 -5513,6844,12410,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.852024756114552,6.058467857198289,0,0,-1058.050408169096,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,.4977766639340544,0,0,1,1,0,0,6.191365601513189,36.45,38.99,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,655,-115204.4925324092,44917.28169974391,0,0,615.3574403068681 -5514,6845,12411,12412,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.307968068415468,8.37159511572254,0,8,6,-124.6899997820013,0,2,2,2019,8,0,40,40,1,0,0,13.09292134133841,13.09292134133841,0,0,0,0,0,1,1,0,4.24425029666774,0,57.16,56.15,51.14,60.45,10,1,1,0,0,9,11,4,1,952,558220.2353477805,536321.3260573366,170321.4621558397,56477.94598124528,3399.146016767654 -5514,6845,12412,12411,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.258261198229949,8.504606447336474,0,8,-6,77.71394192690217,0,2,2,2019,14,2,35,35,1,2,0,14.48856981136218,14.48856981136218,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,952,558220.2353477805,536321.3260573366,170321.4621558397,56477.94598124528,3399.146016767654 -5514,6845,12413,-9,12412,12411,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1163.671887443555,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,11,4,1,952,558220.2353477805,536321.3260573366,170321.4621558397,56477.94598124528,3399.146016767654 -5515,6846,12414,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.221602133462133,6.168217073394367,0,0,-911.5697527833437,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.21486316965346,63.27,39.7,-9,-9,6.666666666666667,2,3,1,0,0,9,2,1,66,118454.5584713944,151006.547078716,192576.2915717063,0,826.6855264547663 -5516,6847,12415,12416,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.689776035181643,7.460653849794463,43,4,-62.26094598845199,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,1.996632798955718,0,1,1,0,7.49126765179154,7.414619455844901,57.16,56.15,49.8,56.68,10,1,1,0,0,4,6,3,1,1220,892446.7406069746,508696.890934458,255474.0488927003,0,2476.187645955845 -5516,6847,12416,12415,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.615420514109709,6.439988057953231,7,-4,12.16932779001435,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.911978652906641,6.528347704430007,49.8,56.68,57.16,56.15,8.333333333333334,1,1,0,0,7,6,3,1,1220,892446.7406069746,508696.890934458,255474.0488927003,0,2476.187645955845 -5517,6848,12417,12418,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.613447013184373,7.045743936476795,56,2,-24.65639961337135,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.69426421170399,62.57,40.11,57.16,56.15,8.333333333333334,1,1,0,0,0,6,2,1,825,198235.1500652984,96794.93249587029,110950.4410739666,0,1361.577651224924 -5517,6848,12418,12417,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,56,-2,83.2633248664291,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.508610914393744,0,57.16,56.15,62.57,40.11,10,1,1,0,0,0,6,2,1,825,198235.1500652984,96794.93249587029,110950.4410739666,0,1361.577651224924 -5518,6849,12419,-9,12422,12420,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.834692560077,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,1123.6,-44112.62201606618,0,0,0,771.116380331489 -5518,6849,12420,12422,-9,-9,1,1,37,2,3,0,3,3,-9,0,5,5.48532921040966,5.334894910947922,0,2,6,27.71235223875714,-9,-9,-9,2019,7,0,40,0,1,0,0,.6207963832722082,.6207963832722082,0,0,0,0,0,1,0,1,0,0,57.06,57.76,56.95,46.69,10,1,1,0,0,13,2,2,1,1123.6,-44112.62201606618,0,0,0,771.116380331489 -5518,6849,12421,-9,12422,12420,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1103.469122321655,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,1,1123.6,-44112.62201606618,0,0,0,771.116380331489 -5518,6849,12422,12420,-9,-9,1,0,31,2,3,0,2,2,-9,0,3,0,0,0,2,-6,52.08625786945857,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1.869432781992187,0,56.95,46.69,57.06,57.76,5,1,1,0,0,3,2,2,1,1123.6,-44112.62201606618,0,0,0,771.116380331489 -5518,6849,12423,-9,12422,12420,1,1,13,2,3,1,3,0,-9,0,5,0,0,0,0,0,-959.5349577566642,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,1,1123.6,-44112.62201606618,0,0,0,771.116380331489 -5519,6850,12424,-9,12425,12427,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.4625429944141,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,762.5,431211.5692150515,103643.2332439727,396490.149867512,107818.1429562743,9131.780817696155 -5519,6850,12425,12427,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,1,2,-83.09207027534541,-9,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.868338529259813,0,44.81,55.02,48,51,8.333333333333334,1,1,0,0,0,4,5,1,762.5,431211.5692150515,103643.2332439727,396490.149867512,107818.1429562743,9131.780817696155 -5519,6850,12426,-9,12425,12427,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.1346317941956,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,762.5,431211.5692150515,103643.2332439727,396490.149867512,107818.1429562743,9131.780817696155 -5519,6850,12427,12425,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,9.748556842950501,9.422555976698298,0,1,-2,110.5882488436541,-9,1,1,2019,11,0,50,0,1,2,0,33.02279292195318,33.02279292195318,0,0,0,0,0,0,0,0,5.062444511986115,0,48,51,44.81,55.02,7,1,1,0,0,1,4,5,1,762.5,431211.5692150515,103643.2332439727,396490.149867512,107818.1429562743,9131.780817696155 -5520,6851,12428,-9,12429,12430,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.953389452453,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,1,364.6666666666667,15048.03478842823,43187.42974744279,132596.4714589599,104003.7912077298,3392.480688323647 -5520,6851,12429,12430,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.062347498193715,7.837169800769205,0,5,0,21.1921747301799,0,2,2,2019,6,0,21,35,1,0,0,17.00389818314741,17.00389818314741,0,0,0,0,0,1,1,0,0,0,44.08,59.33,48.77,60.16,8.333333333333334,1,1,0,0,8,9,5,1,364.6666666666667,15048.03478842823,43187.42974744279,132596.4714589599,104003.7912077298,3392.480688323647 -5520,6851,12430,12429,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,8.880100755761896,8.686183093427465,0,5,0,-48.89315830477894,0,2,2,2019,8,0,45,50,1,0,0,17.75891719782934,17.75891719782934,0,0,0,0,0,1,1,0,3.511648706334436,0,48.77,60.16,44.08,59.33,8.333333333333334,1,1,0,0,7,9,5,1,364.6666666666667,15048.03478842823,43187.42974744279,132596.4714589599,104003.7912077298,3392.480688323647 -5521,6852,12431,12432,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.104801067127022,8.327888939048606,39,0,7.351763031149891,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.498079516217696,8.234423477075733,48.94,54.95,58.33,47.36,8.333333333333334,1,1,0,0,10,9,4,1,617.5,1715960.265561031,1122523.467545311,419414.6497619693,0,3952.220896459298 -5521,6852,12432,12431,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.249469390266427,6.917729134884409,39,0,20.04555715166631,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.33417706962249,7.193715866754729,58.33,47.36,48.94,54.95,10,1,1,0,0,5,9,4,1,617.5,1715960.265561031,1122523.467545311,419414.6497619693,0,3952.220896459298 -5522,6853,12433,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,5.652340006119577,5.907802730984244,0,0,-898.3159867193497,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.801006926819842,5.965712096415507,56.21,13.99,-9,-9,10,1,1,0,0,0,2,2,1,1005,265803.3460748096,-43657.94076582262,286310.5041199785,0,910.3097157779298 -5523,6854,12434,12435,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,52,0,-92.10212244503604,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,7.805821325798759,0,0,1,1,0,0,0,41.43,24.56,56.5,48.33,3.333333333333333,1,1,0,0,0,2,2,1,1060.5,699508.784101759,332399.2330829757,196047.2248206234,0,323.4801231790956 -5523,6854,12435,12434,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,4.93138716096252,4.818227732370222,53,0,-39.5219721293431,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.025053837493232,5.044384896689896,56.5,48.33,41.43,24.56,8.333333333333334,1,1,0,0,0,2,2,1,1060.5,699508.784101759,332399.2330829757,196047.2248206234,0,323.4801231790956 -5524,6855,12436,-9,-9,12438,1,1,26,0,0,0,2,2,-9,0,3,7.960381990142146,7.976245227747536,0,0,0,-1027.047879256096,-9,2,2,2019,12,0,40,0,1,0,1,7.533325566028836,7.533325566028836,0,0,0,0,0,1,1,0,0,0,37.17,47.9,-9,-9,3.333333333333333,1,1,0,0,5,8,4,1,279,18524.4334107108,10053.91686688768,0,0,992.3579837671466 -5524,6856,12437,12438,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,1,1,58.80641700156676,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,39.37,53,54,3.333333333333333,4,6,1,1,0,8,3,1,462,123163.014123945,44036.44454054645,329416.9613594612,136242.0220535213,2453.127822110405 -5524,6856,12438,12437,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.298953899063157,8.329553078204283,0,1,-1,-55.10990948434718,-9,-9,-9,2019,9,0,40,0,1,0,0,11.95425488715127,11.95425488715127,0,0,0,0,0,1,1,0,4.376962073087036,0,53,54,61.68,39.37,8.333333333333334,4,6,0,0,1,8,3,1,462,123163.014123945,44036.44454054645,329416.9613594612,136242.0220535213,2453.127822110405 -5525,6857,12439,12440,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.343128032362344,8.51730471188039,0,29,0,21.78959674547399,0,-9,-9,2019,9,0,38,38,1,1,0,11.12174461666703,11.12174461666703,0,0,0,0,0,1,1,0,0,0,52,55,52.99,51.28,8,2,3,0,0,1,9,3,1,304.5,178241.1186039123,61419.19861276972,0,0,2481.602380914732 -5525,6857,12440,12439,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.371416050868875,7.481817640899718,0,29,0,-62.66852890536564,0,3,3,2019,2,0,20,25,1,0,0,8.811558744777905,8.811558744777905,0,0,0,0,0,1,1,0,0,0,52.99,51.28,52,55,8.333333333333334,2,3,0,0,11,9,3,1,304.5,178241.1186039123,61419.19861276972,0,0,2481.602380914732 -5525,6858,12441,-9,12440,12439,1,0,25,0,2,0,1,1,-9,0,4,7.559356589139743,7.521449096791641,0,0,0,-857.0916176009813,0,2,2,2019,12,0,38,41,1,0,1,6.049972575493289,6.049972575493289,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,4,9,3,1,137,-26695.89861820274,51182.30222103197,0,0,926.7856240083172 -5526,6859,12442,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.281940258783497,5.15956033014104,0,0,-952.839072714708,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.474428410494823,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1074,155091.994737805,0,178411.6528498296,0,222.5282270940625 -5527,6860,12443,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.016224817460137,7.184355976382005,0,0,-875.7637268444925,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.597490094996891,7.12761018627817,60.02,56.42,-9,-9,10,1,1,0,0,0,6,3,1,5733,954476.445633725,285766.1474756756,405485.7512878695,0,2249.141641525574 -5528,6861,12444,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.692899840639732,8.097302650550413,6.006775487149481,0,0,-1050.025939581926,0,2,2,2019,22,9,24,23,1,9,0,10.80209937179298,10.80209937179298,0,0,0,0,0,1,1,0,1.256868153501247,6.044696120779248,42.96,48.95,-9,-9,3.333333333333333,1,1,0,0,13,2,3,1,478,623412.8949760622,109091.426029884,289389.9724589561,0,1535.486272467026 -5529,6862,12445,12450,-9,-9,1,1,28,2,4,0,2,2,-9,0,3,0,0,0,1,8,-45.02215910190675,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.86,47.44,40.03,62.02,6.666666666666667,1,1,1,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5529,6862,12446,-9,12450,12445,1,1,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.161732287049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5529,6862,12447,-9,12450,12445,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-909.0884285069847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5529,6862,12448,-9,12450,12445,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.864733715786,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5529,6862,12449,-9,12450,12445,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-980.2911218481171,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5529,6862,12450,12445,-9,-9,1,0,20,2,4,0,2,2,-9,0,5,0,2.857847266544661,2.776713609828325,1,-8,-69.08986598895355,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.647380744609412,0,40.03,62.02,49.86,47.44,6.666666666666667,1,1,1,0,0,10,2,0,653.6666666666666,3933.748011705369,0,0,0,2390.041916790534 -5530,6863,12451,12452,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,9,2,-10.44161854992659,0,3,3,2019,10,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,55.87,53.99,8.333333333333334,1,1,1,0,9,13,3,1,875.5,1423910.989603524,1032931.305639755,125188.0185854949,0,1313.761556320469 -5530,6863,12452,12451,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.923590877931606,7.759189798919397,0,9,-2,1.241211190876631,0,2,2,2019,9,0,38,38,1,0,0,6.970940743596186,6.970940743596186,0,0,0,0,0,0,0,0,0,0,55.87,53.99,58.72,51.29,8.333333333333334,1,1,0,0,10,13,3,1,875.5,1423910.989603524,1032931.305639755,125188.0185854949,0,1313.761556320469 -5531,6864,12453,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.771523543784167,7.6569117901114,0,0,-1107.737674644819,0,2,2,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,3.843554919849933,7.768984906131549,57.06,57.76,-9,-9,10,1,1,0,0,7,13,3,1,1602,317070.1173804592,279199.8165715219,173133.8944119968,0,1043.288115871957 -5532,6865,12454,-9,12456,12455,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-948.5515485483432,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1407,122906.9656330982,77483.35509787475,133545.0017851245,115856.4215474406,7273.279405532648 -5532,6865,12455,12456,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,9.565317554739838,9.445653383033376,0,8,0,20.65345545277748,0,1,2,2019,8,0,55,55,1,0,0,25.64584511783606,25.64584511783606,0,0,0,0,0,0,0,0,0,0,58.65,52.89,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,1407,122906.9656330982,77483.35509787475,133545.0017851245,115856.4215474406,7273.279405532648 -5532,6865,12456,12455,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.193362687898146,7.904298811878268,0,8,0,37.54930004295191,0,2,3,2019,6,0,37,40,1,0,0,11.6165763598836,11.6165763598836,0,0,0,0,0,0,0,0,0,0,54.79,55.86,58.65,52.89,8.333333333333334,1,1,0,0,11,12,5,1,1407,122906.9656330982,77483.35509787475,133545.0017851245,115856.4215474406,7273.279405532648 -5533,6866,12457,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.235125309692185,6.202441061503102,0,0,-894.4950278962386,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.102783030364288,6.074519901443026,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,675,414941.091428907,104786.4009902666,260017.6662795552,0,935.4232598352737 -5534,6867,12458,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.209560999949014,7.584353041949799,0,0,0,-935.8758984743237,0,3,2,2019,8,1,31,27,1,1,0,7.380532123476232,7.380532123476232,0,0,0,0,0,1,1,0,0,0,58.17,31.47,-9,-9,8.333333333333334,2,3,0,1,10,4,3,1,784,33662.45777866238,25037.40896282633,0,0,951.277724195681 -5535,6868,12459,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.33923673186349,6.625087522302727,0,0,-1051.342606551818,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.035565843567234,6.36608776500063,41.49,52.34,-9,-9,5,1,1,0,0,7,9,2,1,691,359994.993453683,60326.28742473293,350329.3246055233,0,981.3708714109472 -5536,6869,12460,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.071670520236021,8.467817146562828,5.921385471000452,0,0,-986.8430314365096,0,3,3,2019,13,1,37,38,1,1,0,13.66372722843791,13.66372722843791,0,0,0,0,0,0,0,0,0,6.243012259508933,49.86,55.31,-9,-9,5,1,1,0,0,9,1,4,1,495,654037.8655906583,340460.0819591949,227486.95623517,0,1372.738093117905 -5537,6870,12461,-9,12462,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.328109649522,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,466.75,247583.1349499777,82324.87673744117,217717.7915403827,134248.000504282,4629.360501719018 -5537,6870,12462,12463,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,8.320459290202683,8.404012916217312,6.166112576546658,2,-10,62.48963841581953,0,1,1,2019,15,5,40,40,1,5,0,11.33749530788867,11.33749530788867,0,0,0,0,0,0,0,0,6.191147886297551,0,46.4,42.22,41.41,59.45,8.333333333333334,1,1,0,0,9,4,5,1,466.75,247583.1349499777,82324.87673744117,217717.7915403827,134248.000504282,4629.360501719018 -5537,6870,12463,12462,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.598679565475635,8.804057123816859,0,2,10,1.426018836419662,0,-9,-9,2019,9,0,37,37,1,0,0,20.78761866283529,20.78761866283529,0,0,0,0,0,0,0,0,0,0,41.41,59.45,46.4,42.22,8.333333333333334,1,1,0,0,9,4,5,1,466.75,247583.1349499777,82324.87673744117,217717.7915403827,134248.000504282,4629.360501719018 -5537,6870,12464,-9,12462,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.801962245086,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,466.75,247583.1349499777,82324.87673744117,217717.7915403827,134248.000504282,4629.360501719018 -5538,6871,12465,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,4,0,0,0,0,0,-881.5364014050785,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.8,30.87,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,3518,-158055.9166046428,0,0,0,1877.536286501146 -5539,6872,12466,-9,12468,12470,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.471668229595,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,704.2,1374156.605579101,980086.5259285165,316032.2859540826,72478.07249065525,4097.292320520402 -5539,6872,12467,-9,12468,12470,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.9890562109134,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,704.2,1374156.605579101,980086.5259285165,316032.2859540826,72478.07249065525,4097.292320520402 -5539,6872,12468,12470,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.462773968839057,8.486541956078312,0,17,-7,-18.64585014402915,0,2,1,2019,9,0,38,40,1,0,0,18.22811043405012,18.22811043405012,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,12,13,4,1,704.2,1374156.605579101,980086.5259285165,316032.2859540826,72478.07249065525,4097.292320520402 -5539,6872,12469,-9,12468,12470,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.1019918452473,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,704.2,1374156.605579101,980086.5259285165,316032.2859540826,72478.07249065525,4097.292320520402 -5539,6872,12470,12468,-9,-9,1,1,47,0,3,0,3,3,-9,0,5,8.330845465427554,8.341739248991239,0,10,7,44.78308313183156,0,-9,-9,2019,7,0,40,46,1,0,0,11.24811051154064,11.24811051154064,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,12,13,4,1,704.2,1374156.605579101,980086.5259285165,316032.2859540826,72478.07249065525,4097.292320520402 -5540,6873,12471,12472,-9,-9,1,0,48,0,1,0,3,3,-9,1,1,0,0,0,32,0,0,0,3,3,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46,17.21,43.61,56.01,8.333333333333334,2,3,0,1,0,4,1,1,436.6666666666667,267987.5758228086,117394.0001716617,108937.3197976978,31242.9133225042,2516.559628346007 -5540,6873,12472,12471,-9,-9,1,1,48,0,1,0,3,3,-9,1,3,0,0,0,32,0,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,46,17.21,5,2,3,1,0,0,4,1,1,436.6666666666667,267987.5758228086,117394.0001716617,108937.3197976978,31242.9133225042,2516.559628346007 -5540,6873,12473,-9,12471,12472,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1101.755084038924,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,4,1,1,436.6666666666667,267987.5758228086,117394.0001716617,108937.3197976978,31242.9133225042,2516.559628346007 -5540,6874,12474,-9,12471,12472,1,1,25,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1027.136652427859,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,5,2,3,1,0,0,4,1,1,394,-42649.78298477518,0,0,0,228.7638785980192 -5540,6875,12475,-9,12471,12472,1,1,23,0,1,0,2,2,-9,0,3,7.616118720453247,7.867506566264401,0,0,0,-967.3462062129744,0,3,2,2019,8,0,30,0,1,0,1,7.815736745701324,7.815736745701324,0,0,0,0,0,1,1,0,0,0,56.79,46.16,-9,-9,0,2,3,0,0,5,4,3,1,1096,6156.051684194232,54581.65709858834,0,0,1032.568773713011 -5540,6876,12476,-9,12471,12472,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-996.4186107200746,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.5,51.97,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,276,-131228.5920448539,0,0,0,0 -5541,6877,12477,12478,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.824498771671822,8.776954958009783,0,29,-3,14.85681446353579,0,2,1,2019,8,0,28,28,1,0,0,28.91956800449032,28.91956800449032,0,0,0,0,0,0,0,0,4.144221192076874,0,58.9,45.74,44.85,53.68,8.333333333333334,1,1,0,0,10,8,5,1,418.3333333333333,2626569.809915569,1544526.992358572,1206720.690285599,206788.1516493129,8170.785630131463 -5541,6877,12478,12477,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.859219135020908,9.6275601931526,0,29,3,-19.43505634662626,0,2,2,2019,11,1,50,50,1,1,0,30.92511713385812,30.92511713385812,0,0,0,0,0,0,0,0,.3744073584178002,0,44.85,53.68,58.9,45.74,6.666666666666667,1,1,0,0,9,8,5,1,418.3333333333333,2626569.809915569,1544526.992358572,1206720.690285599,206788.1516493129,8170.785630131463 -5541,6877,12479,-9,12477,12478,1,1,11,0,1,1,3,0,-9,0,1,0,0,0,0,0,-974.9500705834974,-9,1,1,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,8,5,1,418.3333333333333,2626569.809915569,1544526.992358572,1206720.690285599,206788.1516493129,8170.785630131463 -5541,6878,12480,-9,12477,12478,1,1,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-987.4204609947868,-9,1,1,2019,15,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,.0579645472420929,0,30.04,50.19,-9,-9,3.333333333333333,1,1,1,1,3,8,1,1,2068,-276299.1345623078,0,0,0,87.84311476298591 -5541,6879,12481,-9,12477,12478,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1059.332190972277,-9,1,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.567494965351291,0,43.69,59.95,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,681,-6047.635507370024,0,0,0,-398.8481486417232 -5542,6880,12482,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1019.592745511098,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,46.41,20.01,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,700,157613.8939025286,0,0,0,1023.282971154533 -5543,6881,12483,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-922.7887142505866,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,-9,-9,10,1,1,0,0,0,2,1,0,832,233531.9396092512,0,0,0,358.8874601196891 -5544,6882,12484,12485,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.885056193336664,7.982891646255744,0,36,-7,129.8057233928349,0,3,3,2019,10,0,42,35,1,1,0,6.00401487749942,6.00401487749942,0,0,0,0,0,0,0,0,0,0,50,54,62.39,56.71,8,3,4,0,0,11,7,4,0,398.5,527098.2755786168,353731.3980603645,328394.2314739829,145572.836633905,3095.952624549443 -5544,6882,12485,12484,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.451412548176279,8.329863926029475,0,9,7,-11.46058259676125,0,3,3,2019,6,0,60,60,1,0,0,8.382576570716934,8.382576570716934,0,0,0,0,0,0,0,0,.5289233583352821,0,62.39,56.71,50,54,10,3,4,0,0,8,7,4,0,398.5,527098.2755786168,353731.3980603645,328394.2314739829,145572.836633905,3095.952624549443 -5544,6883,12486,-9,12484,12485,1,0,35,0,0,0,2,2,-9,0,4,7.990021812535078,7.991807161393718,0,0,0,-1073.841457252913,-9,3,2,2019,11,0,58,0,1,2,1,5.656815954494722,5.656815954494722,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,3,4,0,0,11,7,4,0,3088,178434.3727817798,15787.45767484181,0,0,985.058985967328 -5545,6884,12487,12488,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.039182653394926,7.98988246224265,0,6,-6,20.65169340502013,0,-9,2,2019,6,0,42,42,1,0,0,8.950882605007825,8.950882605007825,0,0,0,0,0,0,0,0,.4734354456465569,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,6,2,5,1,516.5,586717.1057492569,354776.9607885059,284626.8601391666,0,3314.302588217512 -5545,6884,12488,12487,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.797959129125957,8.581656299400283,0,6,6,-65.71369386259617,0,3,3,2019,6,0,50,50,1,0,0,15.9910845674067,15.9910845674067,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,7,2,5,1,516.5,586717.1057492569,354776.9607885059,284626.8601391666,0,3314.302588217512 -5546,6885,12489,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1028.937104143833,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.54,48.69,-9,-9,8.333333333333334,1,1,0,0,5,2,1,0,302,-127456.0785926944,0,0,0,387.0555688048235 -5547,6886,12490,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.53845717063719,5.383597431976685,0,0,-974.6745666173883,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,4.97206281535842,40.87,44.58,-9,-9,5,1,1,0,0,0,5,2,0,693,302787.4282394963,1282.714455432202,121221.4835613607,0,-281.8940651912042 -5547,6887,12491,-9,12490,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,0,0,-910.1568190499697,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,51.37,-9,-9,3.333333333333333,1,1,1,0,0,5,1,0,1056,-249267.5926905333,0,0,0,447.0000771752173 -5548,6888,12492,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.24869186288513,7.912135290031472,0,0,0,-1110.968026321469,0,-9,-9,2019,12,1,51,46,1,1,0,7.880506895498065,7.880506895498065,0,0,0,0,0,0,0,0,0,0,40.77,53.17,-9,-9,6.666666666666667,1,1,0,0,2,4,4,0,5786,205781.8922870858,19952.64005529338,0,0,1975.653736505513 -5549,6889,12493,12494,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.237265823462822,8.38965608330782,0,3,-8,-95.82008780373143,0,-9,-9,2019,10,1,25,27,1,1,0,18.27580939963268,18.27580939963268,0,0,0,0,2,0,0,0,0,0,46.54,49.01,58.32,50.22,8.333333333333334,1,1,0,0,9,7,5,1,811.3333333333334,463637.7866623974,332849.5852894036,57682.32892504284,48361.09986089945,3131.772096726821 -5549,6889,12494,12493,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0879296773267,8.063751438171817,0,3,8,-106.3540023039701,0,2,3,2019,6,0,36,38,1,0,0,11.7895535795647,11.7895535795647,0,0,0,0,2,0,0,0,2.537905976978737,0,58.32,50.22,46.54,49.01,8.333333333333334,1,1,0,0,9,7,5,1,811.3333333333334,463637.7866623974,332849.5852894036,57682.32892504284,48361.09986089945,3131.772096726821 -5549,6889,12495,-9,12493,12494,1,0,17,0,0,0,3,3,1,0,4,0,6.872135752180045,7.176128578210121,0,0,-898.0348013319565,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.732317983025172,0,45.02,50.59,-9,-9,10,1,1,0,0,2,7,5,1,811.3333333333334,463637.7866623974,332849.5852894036,57682.32892504284,48361.09986089945,3131.772096726821 -5549,6890,12496,-9,12493,12494,1,1,19,0,0,0,2,2,1,0,4,8.147011616700315,8.030300768114241,0,0,0,-992.9801659301802,-9,2,2,2019,13,2,44,0,1,2,1,8.185048583099613,8.185048583099613,0,0,0,0,0,0,0,0,4.262076104939739,0,29.36,65.25,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,408,179863.6735951865,0,0,0,1126.106245911878 -5550,6891,12497,12498,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.051773392292199,8.059650551619917,8,8,-85.8978163647002,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.170128228388522,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,221.5,581530.495093159,292769.5496738707,160706.6073771848,-3172.031430987534,3566.792155561233 -5550,6891,12498,12497,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.515249968501807,8.161885298720874,0,8,-8,-143.7573013203323,0,2,2,2019,7,0,35,40,1,0,0,11.62081970662981,11.62081970662981,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,9,11,4,1,221.5,581530.495093159,292769.5496738707,160706.6073771848,-3172.031430987534,3566.792155561233 -5551,6892,12499,12500,-9,-9,1,0,31,0,0,0,1,1,0,0,5,0,0,0,7,1,-75.70462124740678,-9,2,3,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,.9549368668735897,0,54.1,59.11,48.87,58.55,10,1,1,0,0,5,12,3,0,327.5,95806.11997501964,44538.99174525007,105243.8752089642,0,2279.477299386778 -5551,6892,12500,12499,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.038728899778389,7.994257544477542,0,7,-1,-1.201706303932769,0,1,2,2019,11,0,41,39,1,0,0,7.063407435808849,7.063407435808849,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.1,59.11,5,1,1,0,0,7,12,3,0,327.5,95806.11997501964,44538.99174525007,105243.8752089642,0,2279.477299386778 -5552,6893,12501,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.174815574412893,8.258694133948993,0,0,0,-967.729733306912,0,2,2,2019,7,0,30,35,1,0,0,12.33592562794757,12.33592562794757,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,12,2,4,1,469,267374.616006485,5050.225210234494,80593.88987837582,25949.17934277189,1468.22005910047 -5553,6894,12502,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1025.360867801047,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,5,1,0,341,46057.39070504997,0,0,0,2036.952352417807 -5553,6895,12503,-9,12502,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-972.6849864858119,-9,3,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,1.958976547555457,0,46.85,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,224,-122301.4510450599,0,0,0,6.736296414862077 -5554,6896,12504,12505,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,6.802404366594126,7.564061626656522,6.470056545814027,31,2,-22.27630422869223,0,-9,-9,2019,12,0,16,16,1,0,0,6.590715769673531,6.590715769673531,0,0,0,0,0,1,1,0,3.432344809136699,6.614213975125634,56.94,28.09,60.12,54.8,10,1,1,0,0,11,1,5,1,546,858760.4976949273,495936.8426355352,476218.303005658,73101.32833367419,3457.050367271545 -5554,6896,12505,12504,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.944268593185097,8.528074079851571,0,31,-2,97.75728010291229,0,3,2,2019,8,0,36,36,1,0,0,17.39308120496405,17.39308120496405,0,0,0,0,14.5,1,1,0,2.692637001996683,0,60.12,54.8,56.94,28.09,8.333333333333334,1,1,0,0,11,1,5,1,546,858760.4976949273,495936.8426355352,476218.303005658,73101.32833367419,3457.050367271545 -5555,6897,12506,-9,12508,12507,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.7309147778747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,364.3333333333333,122073.5336363747,-46320.57351366517,68900.98805479083,48596.72815022266,2743.460993112726 -5555,6897,12507,12508,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.316382916939416,7.979401825902161,0,3,0,245.4264883040565,0,-9,-9,2019,8,0,40,39,1,0,0,9.893986282416394,9.893986282416394,0,0,0,0,0,1,1,0,0,0,56.3,55.33,66.52,43.87,8.333333333333334,1,1,0,1,2,11,3,1,364.3333333333333,122073.5336363747,-46320.57351366517,68900.98805479083,48596.72815022266,2743.460993112726 -5555,6897,12508,12507,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,6.992590740018241,7.072793263285682,0,3,0,-51.10728457940991,0,-9,-9,2019,4,0,14,39,1,0,0,10.39819935593721,10.39819935593721,0,0,0,0,0,1,1,0,0,0,66.52,43.87,56.3,55.33,10,1,1,0,1,8,11,3,1,364.3333333333333,122073.5336363747,-46320.57351366517,68900.98805479083,48596.72815022266,2743.460993112726 -5556,6898,12509,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.673014363141743,8.440825580829602,0,0,0,-1083.897437813558,0,1,1,2019,14,3,48,35,1,3,0,13.81149079655106,13.81149079655106,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,135,41345.11492571857,-25494.98905203763,164844.5826174631,133325.0033483855,2647.180280043285 -5557,6899,12510,12511,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.32708892680847,8.527830763529257,0,10,17,-30.63971956321143,0,2,1,2019,15,5,50,35,1,5,0,9.116059761157192,9.116059761157192,0,0,0,0,0,0,0,0,0,0,46.7,46.06,55.36,54.24,3.333333333333333,1,1,0,0,10,4,5,1,408,1267265.427968318,914718.9617179695,136481.0282730885,0,3402.082771819859 -5557,6899,12511,12510,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.238384480394481,7.991560512871824,0,11,-17,34.90183326291191,0,1,1,2019,7,0,46,20,1,0,0,8.26202172948746,8.26202172948746,0,0,0,0,0,0,0,0,2.016657448079322,0,55.36,54.24,46.7,46.06,8.333333333333334,1,1,0,0,8,4,5,1,408,1267265.427968318,914718.9617179695,136481.0282730885,0,3402.082771819859 -5558,6900,12512,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.383173939670465,8.095376353694739,0,10,-4,-200.8212144923196,0,1,1,2019,11,0,43,45,1,0,0,11.21071235457633,11.21071235457633,0,0,0,0,0,0,0,0,2.178673327443498,0,45.56,60.26,57.06,57.76,6.666666666666667,2,3,0,0,9,10,5,1,836,-58015.6281130353,-12730.98695462069,0,0,1143.728292815962 -5558,6901,12513,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,8.259248086847494,7.986567357371329,0,10,4,35.67543383349835,0,-9,-9,2019,6,0,37,39,1,0,0,11.25655568504578,11.25655568504578,0,0,0,0,0,0,0,0,6.689689120740764,0,57.06,57.76,45.56,60.26,8.333333333333334,1,1,0,0,11,10,5,1,2363,253354.1692798899,-13436.76801984251,147979.4633622106,92260.05703799066,1338.992929746775 -5559,6902,12514,12517,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.216496933660011,8.262617295155049,0,8,-6,-49.0421710384099,0,-9,2,2019,13,2,40,25,1,2,0,11.9744548314615,11.9744548314615,0,0,0,0,0,1,1,0,0,0,46.08,57.2,54.1,59.11,6.666666666666667,1,1,0,0,9,12,4,1,531,609529.7833909305,250040.0689516057,319289.3642546223,90185.8910398439,3763.313078997909 -5559,6902,12515,-9,12514,12517,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.245491873594,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,531,609529.7833909305,250040.0689516057,319289.3642546223,90185.8910398439,3763.313078997909 -5559,6902,12516,-9,12514,12517,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.8050460805798,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,531,609529.7833909305,250040.0689516057,319289.3642546223,90185.8910398439,3763.313078997909 -5559,6902,12517,12514,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.676545217437807,8.835589154708243,0,8,6,130.9549122053197,0,3,2,2019,6,0,52,50,1,0,0,13.16282443518337,13.16282443518337,0,0,0,0,0,1,1,0,1.742894229257025,0,54.1,59.11,46.08,57.2,6.666666666666667,1,1,0,0,9,12,4,1,531,609529.7833909305,250040.0689516057,319289.3642546223,90185.8910398439,3763.313078997909 -5559,6903,12518,-9,12514,12517,1,0,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1132.267010419451,1,2,2,2019,7,0,0,17,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,844,193910.8271399771,0,0,0,0 -5560,6904,12519,12522,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,8,-5,-7.280547883323599,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.31,56.45,57.16,56.15,8.333333333333334,1,1,0,0,4,5,2,0,1025.25,3883.369806285834,48464.56735772583,0,0,2578.814208240157 -5560,6904,12520,-9,12519,12522,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.9394923931948,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,2,0,1025.25,3883.369806285834,48464.56735772583,0,0,2578.814208240157 -5560,6904,12521,-9,12519,12522,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.5821104119667,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1025.25,3883.369806285834,48464.56735772583,0,0,2578.814208240157 -5560,6904,12522,12519,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.523256617348596,7.603488237303282,0,8,5,115.7542703175774,0,-9,2,2019,7,0,25,26,1,0,0,9.953557934604969,9.953557934604969,0,0,0,0,0,1,0,1,0,0,57.16,56.15,46.31,56.45,8.333333333333334,1,1,0,0,5,5,2,0,1025.25,3883.369806285834,48464.56735772583,0,0,2578.814208240157 -5561,6905,12523,12524,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.302820489672982,8.11340432090778,0,8,3,-18.29282861371923,0,3,-9,2019,10,0,84,72,1,1,0,6.061198591645731,6.061198591645731,0,0,0,0,0,0,0,0,0,0,52,48,62.42,32.41,7,1,1,0,0,1,13,4,1,671,163256.9463911546,146728.791486746,147133.6036486232,0,1600.960371859182 -5561,6905,12524,12523,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,8,-3,-44.51234337608766,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.42,32.41,52,48,8.333333333333334,1,1,0,0,0,13,4,1,671,163256.9463911546,146728.791486746,147133.6036486232,0,1600.960371859182 -5562,6906,12525,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-945.9225527207365,0,2,1,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.25,20.16,-9,-9,1.666666666666667,4,2,0,1,0,8,2,0,1248,-59274.5629839197,0,0,0,1271.676109443234 -5563,6907,12526,12527,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.440285278796282,6.429068241160641,43,-11,95.80269993691219,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.174109372176927,6.026656251554896,55.19,54.26,53,47,1.666666666666667,1,1,0,0,6,13,3,1,281,831895.8661153375,311756.4667212185,172474.5420418707,0,1097.828266612118 -5563,6907,12527,12526,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.388974923499472,7.323228820784834,43,11,-39.64711131593287,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.756717484005402,7.466893033761919,53,47,55.19,54.26,8,1,1,0,0,0,13,3,1,281,831895.8661153375,311756.4667212185,172474.5420418707,0,1097.828266612118 -5564,6908,12528,12529,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.576363738220413,7.866280164704164,34,6,-24.02856399956096,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,33.67047545336138,0,0,1,1,0,0,7.667765309498793,37.6,14.31,27.09,51.08,0,1,1,0,0,0,6,3,0,745,457818.6942791436,278133.1924816318,177329.786051941,0,2829.999482868061 -5564,6908,12529,12528,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,33,-6,3.788221817246794,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,0,0,27.09,51.08,37.6,14.31,1.666666666666667,1,1,0,0,2,6,3,0,745,457818.6942791436,278133.1924816318,177329.786051941,0,2829.999482868061 -5565,6909,12530,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,6.705579843116635,8.615672523163481,8.391927089381445,14,-19,-46.02481494387873,0,2,1,2019,11,1,12,15,1,1,0,9.321891564863312,9.321891564863312,0,0,0,0,14.5,1,1,0,7.861597123854255,8.320460269720005,44.25,56.64,51,46,6.666666666666667,1,1,0,0,10,10,4,1,683,596247.9782649217,645694.989298996,167037.6946733237,0,2285.622783740399 -5566,6910,12531,12534,-9,-9,1,1,36,2,3,0,3,3,-9,0,4,8.155403555278237,8.364862143895049,0,15,3,-51.42872640216925,0,3,1,2019,8,0,40,40,1,0,0,10.79886506342734,10.79886506342734,0,0,0,0,0,1,1,0,2.973231825575859,0,57.16,56.15,51.19,49.37,8.333333333333334,1,1,0,0,6,9,3,1,1184.4,25588.76493723196,40153.36733646852,0,0,2461.458723691494 -5566,6910,12532,-9,12534,12531,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.238088352231,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1184.4,25588.76493723196,40153.36733646852,0,0,2461.458723691494 -5566,6910,12533,-9,12534,12531,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-930.7522657050192,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,1,1184.4,25588.76493723196,40153.36733646852,0,0,2461.458723691494 -5566,6910,12534,12531,-9,-9,1,0,33,2,3,0,2,2,-9,0,3,0,0,0,14,-3,10.52699642155829,0,1,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.783709130565243,0,51.19,49.37,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,1184.4,25588.76493723196,40153.36733646852,0,0,2461.458723691494 -5566,6910,12535,-9,12534,12531,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-985.532629858827,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,1,1184.4,25588.76493723196,40153.36733646852,0,0,2461.458723691494 -5567,6911,12536,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.5597103863927,9.691521975000974,0,0,0,-1033.746632838574,0,1,1,2019,6,0,40,40,1,0,0,49.93269737628774,49.93269737628774,0,0,0,0,0,0,0,0,3.31704589652622,0,60.93,36.01,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,385,1032120.421689986,731175.8278278317,323874.9583325182,257089.5308833239,3433.981324326143 -5568,6912,12537,12539,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.600664069825019,8.821477175733859,0,3,1,-102.5314189386307,0,2,2,2019,10,2,34,32,1,2,0,26.72113582615182,26.72113582615182,0,0,0,0,0,0,0,0,0,0,52.12,54.24,44.66,52.09,8.333333333333334,1,1,0,0,11,13,5,1,558.75,815044.2962463629,252459.1464439377,310035.2438809457,22568.93606440049,5537.763518157041 -5568,6912,12538,-9,12537,12539,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.8051720186762,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,558.75,815044.2962463629,252459.1464439377,310035.2438809457,22568.93606440049,5537.763518157041 -5568,6912,12539,12537,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.288903486915876,9.187867226489344,0,3,-1,10.61017126173617,0,1,1,2019,12,0,80,50,1,0,0,13.1133506463978,13.1133506463978,0,0,0,0,0,0,0,0,6.086965837959428,0,44.66,52.09,52.12,54.24,8.333333333333334,1,1,0,0,11,13,5,1,558.75,815044.2962463629,252459.1464439377,310035.2438809457,22568.93606440049,5537.763518157041 -5568,6912,12540,-9,12537,12539,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.753500347298,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,558.75,815044.2962463629,252459.1464439377,310035.2438809457,22568.93606440049,5537.763518157041 -5569,6913,12541,12542,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.92717851252499,8.09749018695752,0,23,-8,-73.65088866324542,0,2,2,2019,12,0,37,36,1,0,0,12.41493232228542,12.41493232228542,0,0,0,0,0,1,1,0,0,0,48.76,53.24,42.84,55.93,6.666666666666667,2,3,0,0,13,8,4,1,538.6,313041.8432016721,180729.3079259332,514546.5635249321,323488.5710087314,3088.553998856386 -5569,6913,12542,12541,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.344012038214908,8.295659204739559,0,23,8,-135.6666757382679,0,3,3,2019,12,0,42,60,1,0,0,12.42023792128863,12.42023792128863,0,0,0,0,0,1,1,0,0,0,42.84,55.93,48.76,53.24,8.333333333333334,2,3,0,0,13,8,4,1,538.6,313041.8432016721,180729.3079259332,514546.5635249321,323488.5710087314,3088.553998856386 -5569,6913,12543,-9,12541,12542,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1003.458214181997,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,2,3,0,0,13,8,4,1,538.6,313041.8432016721,180729.3079259332,514546.5635249321,323488.5710087314,3088.553998856386 -5569,6913,12544,-9,12541,12542,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.823531637465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,538.6,313041.8432016721,180729.3079259332,514546.5635249321,323488.5710087314,3088.553998856386 -5569,6913,12545,-9,12541,12542,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.688616768177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,538.6,313041.8432016721,180729.3079259332,514546.5635249321,323488.5710087314,3088.553998856386 -5569,6914,12546,-9,12541,12542,1,1,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-989.251348293737,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.7853265517865687,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,1014,0,0,0,0,35.23991461790219 -5570,6915,12547,-9,12550,12548,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-960.674799034972,-9,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.250131936490604,0,46.5,58.26,-9,-9,8.333333333333334,1,1,1,0,0,12,4,1,2176.25,555872.9239579337,42105.28587695496,293586.4972773612,70494.11775818528,3210.357879860785 -5570,6915,12548,12550,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.463797604824515,8.619761601803095,0,7,3,46.02208985505641,0,2,2,2019,13,1,55,70,1,1,0,9.893052479490688,9.893052479490688,0,0,0,0,0,1,1,0,3.202485851795331,0,53.53,46.97,14.36,48.02,6.666666666666667,1,1,0,0,8,12,4,1,2176.25,555872.9239579337,42105.28587695496,293586.4972773612,70494.11775818528,3210.357879860785 -5570,6915,12549,-9,12550,12548,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.283017591099,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,4,1,2176.25,555872.9239579337,42105.28587695496,293586.4972773612,70494.11775818528,3210.357879860785 -5570,6915,12550,12548,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,7.920755585549796,8.070090826827927,0,7,-3,18.46802917164832,0,1,1,2019,24,12,33,30,1,12,0,12.59925349692788,12.59925349692788,0,0,0,0,0,1,1,0,0,0,14.36,48.02,53.53,46.97,3.333333333333333,1,1,0,0,8,12,4,1,2176.25,555872.9239579337,42105.28587695496,293586.4972773612,70494.11775818528,3210.357879860785 -5571,6916,12551,-9,12553,12552,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.7338276918186,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,1353.666666666667,423462.943779862,391635.8679120503,164453.4334612569,51812.42513645384,3495.19830156392 -5571,6916,12552,12553,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.672097204096804,8.864515277117373,0,7,7,115.9918775474282,0,-9,-9,2019,8,0,37,48,1,0,0,19.58625481624221,19.58625481624221,0,0,0,0,0,1,1,0,4.827964404096932,0,52.82,53.97,46.27,57.3,8.333333333333334,1,1,0,0,9,4,5,1,1353.666666666667,423462.943779862,391635.8679120503,164453.4334612569,51812.42513645384,3495.19830156392 -5571,6916,12553,12552,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,7.292515489553479,7.582377330047732,0,17,-7,-161.6870820650636,0,3,3,2019,12,1,19,19,1,1,0,11.55315151789652,11.55315151789652,0,0,0,0,0,1,1,0,4.117793723595081,0,46.27,57.3,52.82,53.97,8.333333333333334,1,1,0,0,9,4,5,1,1353.666666666667,423462.943779862,391635.8679120503,164453.4334612569,51812.42513645384,3495.19830156392 -5572,6917,12554,12555,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,6.395062945766926,6.25013466073225,0,8,-4,-124.2793896430693,0,2,2,2019,11,0,25,35,1,0,0,1.98882770969284,1.98882770969284,0,0,0,0,71.5,0,0,0,7.698115664882337,0,57.33,53.46,57.33,53.46,8.333333333333334,4,2,0,0,12,4,4,1,340.5,436530.8790902203,90450.38945133143,198154.0615948306,0,3871.919118625081 -5572,6917,12555,12554,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.265155318107752,8.104710950515321,0,8,4,19.04590328719615,0,-9,-9,2019,6,0,37,35,1,0,0,12.61131545854283,12.61131545854283,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,12,4,4,1,340.5,436530.8790902203,90450.38945133143,198154.0615948306,0,3871.919118625081 -5573,6918,12556,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-958.4769400627852,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.79,20.69,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,382,-157302.9464473609,0,0,0,1719.629177107291 -5574,6919,12557,12558,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.085163641196631,9.253102526688629,0,8,1,13.03106694164359,0,1,1,2019,14,4,36,36,1,4,0,34.71610499082716,34.71610499082716,0,0,0,0,0,1,1,0,5.525180815090854,0,48.71,51.81,54.69,57.47,8.333333333333334,1,1,0,0,10,11,5,1,361.3333333333333,1098590.746961012,293764.4023900912,415637.8722502844,131464.9235601434,4937.918149091463 -5574,6919,12558,12557,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.253016824091196,8.323909882372192,0,8,-1,-31.73502677968792,0,2,1,2019,9,0,23,22,1,0,0,17.00483933513261,17.00483933513261,0,0,0,0,0,1,1,0,4.83443276652669,0,54.69,57.47,48.71,51.81,8.333333333333334,1,1,0,0,9,11,5,1,361.3333333333333,1098590.746961012,293764.4023900912,415637.8722502844,131464.9235601434,4937.918149091463 -5574,6919,12559,-9,12558,12557,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.5282352581229,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,361.3333333333333,1098590.746961012,293764.4023900912,415637.8722502844,131464.9235601434,4937.918149091463 -5575,6920,12560,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.076806371714163,6.084447077874081,0,0,-940.5340017289052,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.453659849778529,6.050815558763554,53,47,-9,-9,7,1,1,0,0,1,11,2,1,898,209450.1627033572,104448.7542307735,85661.43468251501,0,1371.614545178361 -5576,6921,12561,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.829498126827326,6.649615273229718,0,0,-1130.100895003258,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.20687652432042,0,0,1,1,0,0,6.953030666030683,67.26000000000001,25.66,-9,-9,8.333333333333334,1,1,0,0,5,9,2,0,2003,657748.4687981058,151105.4329880856,480130.0636650777,0,1529.200163981646 -5577,6922,12562,12563,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,3.561040864648045,3.788811742636948,0,35,-4,-36.22935021890244,0,2,3,2019,16,5,24,4,1,5,0,.2083038487791364,.2083038487791364,0,0,0,0,2,0,0,0,0,0,39.72,60.11,37.4,66.64,6.666666666666667,1,1,0,0,9,12,3,1,859,1364103.288624984,907596.4107878124,473437.5280903964,0,1446.012053374659 -5577,6922,12563,12562,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.240271927647953,8.04593698075168,0,35,4,-3.834101850536711,0,3,3,2019,21,8,65,60,1,8,0,6.140189593861127,6.140189593861127,0,0,0,0,0,0,0,0,0,0,37.4,66.64,39.72,60.11,3.333333333333333,1,1,0,1,9,12,3,1,859,1364103.288624984,907596.4107878124,473437.5280903964,0,1446.012053374659 -5578,6923,12564,12565,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,4.998805284240365,4.933612705233601,0,39,-3,-66.70278503975777,0,2,2,2019,17,5,44,0,1,5,0,.3472991475160211,.3472991475160211,0,0,0,0,0,0,0,0,0,0,48.45,57.49,54.2,57.49,3.333333333333333,1,1,0,1,8,9,5,1,896,530102.071476598,246711.8374433013,282102.0435524712,-8306.266008942883,3672.076435969539 -5578,6923,12565,12564,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.471174024289917,9.080075643450638,0,39,3,68.48671584135676,0,1,2,2019,7,0,47,45,1,0,0,30.11761380632743,30.11761380632743,0,0,0,0,2,0,0,0,1.853412288841089,0,54.2,57.49,48.45,57.49,6.666666666666667,1,1,0,0,9,9,5,1,896,530102.071476598,246711.8374433013,282102.0435524712,-8306.266008942883,3672.076435969539 -5578,6924,12566,-9,12564,12565,1,1,23,0,0,0,2,2,-9,0,4,7.941491489884998,7.928289673407698,0,0,0,-900.8340461743371,-9,1,1,2019,13,3,45,0,1,3,1,6.672733841168657,6.672733841168657,0,0,0,0,0,0,0,0,.4381780671056962,0,42.86,55.92,-9,-9,5,1,1,0,0,3,9,3,1,98,7031.466972673323,0,0,0,1247.999805300884 -5579,6925,12567,-9,12569,12568,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.593149221709,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,254,-59549.66118190715,-34490.53804671675,0,0,2922.780140214812 -5579,6925,12568,12569,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.529018509256296,8.299777528246668,0,14,7,58.3845949174167,0,3,2,2019,11,0,35,38,1,0,0,12.2270107291597,12.2270107291597,0,0,0,0,0,1,1,0,0,0,46.06,60.24,47.67,58.09,6.666666666666667,1,1,0,0,7,13,3,1,254,-59549.66118190715,-34490.53804671675,0,0,2922.780140214812 -5579,6925,12569,12568,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,7.361985742517849,7.068092813565841,0,14,-7,89.26782578024485,0,2,2,2019,12,1,18,30,1,1,0,9.164293262591698,9.164293262591698,0,0,0,0,0,1,1,0,0,0,47.67,58.09,46.06,60.24,8.333333333333334,1,1,0,1,9,13,3,1,254,-59549.66118190715,-34490.53804671675,0,0,2922.780140214812 -5579,6925,12570,-9,12569,12568,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.0069340014503,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,254,-59549.66118190715,-34490.53804671675,0,0,2922.780140214812 -5580,6926,12571,-9,12573,12572,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-889.1757478836798,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,5,1,737.6666666666666,748417.9120803621,480406.5308343037,350579.5293827702,205035.0345572156,4214.15687857417 -5580,6926,12572,12573,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,8.592861224900419,8.734596978039828,0,5,4,-17.82394462514836,0,3,2,2019,12,0,37,35,1,0,0,18.65928834303049,18.65928834303049,0,0,0,0,0,1,1,0,0,0,55.05,49,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,737.6666666666666,748417.9120803621,480406.5308343037,350579.5293827702,205035.0345572156,4214.15687857417 -5580,6926,12573,12572,-9,-9,1,0,36,1,1,0,2,2,-9,0,5,8.481789779570542,8.344236034123753,0,5,-4,-76.49359623554174,0,-9,-9,2019,3,0,50,52,1,0,0,13.69646210309132,13.69646210309132,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.05,49,10,1,1,0,0,9,2,5,1,737.6666666666666,748417.9120803621,480406.5308343037,350579.5293827702,205035.0345572156,4214.15687857417 -5581,6927,12574,12575,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.295094424987623,7.546977298914999,58,4,-26.39603186542097,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.401045592410786,7.53631809666679,62,52.77,58.9,45.74,8.333333333333334,1,1,0,0,0,2,2,1,1255.5,369752.1799413298,200536.1959414504,132596.0872698526,0,2591.512395894838 -5581,6927,12575,12574,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-4,70.60208805574847,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.994151052487746,0,58.9,45.74,62,52.77,8.333333333333334,1,1,0,0,0,2,2,1,1255.5,369752.1799413298,200536.1959414504,132596.0872698526,0,2591.512395894838 -5582,6928,12576,12577,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.289571370694588,7.308513477046318,41,6,43.05756086205373,0,2,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.214237639962098,7.091084543228037,66.77,26.23,40.58,60.95,8.333333333333334,1,1,0,0,0,2,5,1,532,745824.6240209312,493513.5869398224,122691.1307249171,0,4957.448222221305 -5582,6928,12577,12576,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.611394765260737,8.751156996853442,6.681666634439642,41,-6,-46.06586300164173,0,3,3,2019,18,7,53,37,1,7,0,11.8429320416506,11.8429320416506,0,0,0,0,0,1,1,0,2.187871997097786,6.776282372630666,40.58,60.95,66.77,26.23,8.333333333333334,1,1,0,0,9,2,5,1,532,745824.6240209312,493513.5869398224,122691.1307249171,0,4957.448222221305 -5582,6929,12578,-9,12577,12576,1,1,37,0,0,0,1,1,-9,0,3,8.558308603646111,8.02427702215231,0,0,0,-948.5108889109663,0,2,2,2019,6,0,36,36,1,0,0,14.47609385535216,14.47609385535216,0,0,0,0,0,1,1,0,0,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,1021,269089.6330130988,98122.00718521497,88293.73587333507,75068.06109488608,1610.455607210226 -5583,6930,12579,12580,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.839086054634194,9.196068853809154,0,6,3,62.68073999764912,0,2,2,2019,13,1,52,45,1,1,0,20.95652249003009,20.95652249003009,0,0,0,0,0,0,0,0,0,0,50.4,40.84,51.77,58.57,5,1,1,0,0,7,10,5,1,694.5,1890370.956180459,1404933.030210182,664613.4221066858,283557.2314512806,3778.696724765022 -5583,6930,12580,12579,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.256958057348744,7.204173201325225,0,6,-3,-180.7465400106279,0,1,1,2019,7,0,17,16,1,0,0,9.527629832241169,9.527629832241169,0,0,0,0,0,0,0,0,0,0,51.77,58.57,50.4,40.84,8.333333333333334,1,1,0,0,7,10,5,1,694.5,1890370.956180459,1404933.030210182,664613.4221066858,283557.2314512806,3778.696724765022 -5584,6931,12581,12582,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.433925461677637,9.357769081621678,0,10,1,-48.4216672638946,0,3,2,2019,8,0,42,9,1,0,0,26.29762463940259,26.29762463940259,0,0,0,0,0,0,0,0,2.355322279290232,0,51.77,58.57,55.96,49.93,8.333333333333334,1,1,0,0,11,9,5,1,161,2386858.017353755,1332502.259543496,898543.1720786886,0,3873.593411070264 -5584,6931,12582,12581,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.295010859482628,7.601074050823833,10,-1,9.658325476809241,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.150930865331921,55.96,49.93,51.77,58.57,10,1,1,0,0,3,9,5,1,161,2386858.017353755,1332502.259543496,898543.1720786886,0,3873.593411070264 -5585,6932,12583,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.312323794662305,8.837108208131404,7.566818962835977,0,0,-1010.013528155701,0,3,2,2019,9,0,30,40,1,0,0,17.39090965248599,17.39090965248599,0,0,0,0,14.5,1,1,0,7.743584581845843,7.698633334468937,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,741,332692.8272570015,45347.92846901896,290073.6469692211,29604.84943877158,4289.52191171718 -5585,6933,12584,-9,-9,12583,1,0,20,0,0,0,2,2,-9,0,3,7.722185292576691,7.760860359432287,0,0,0,-965.2343731057274,0,-9,1,2019,9,2,37,0,1,2,0,7.443449829693092,7.443449829693092,0,0,0,0,0,1,1,0,0,0,35.32,58.41,-9,-9,1.666666666666667,1,1,0,0,1,6,3,1,810,28974.36332464593,53499.34193292192,0,0,918.6930718039958 -5586,6934,12585,12587,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.779812189430569,8.447756448679122,0,1,2,-45.71596907023927,0,1,2,2019,7,0,37,41,1,0,0,20.33983422033612,20.33983422033612,0,0,0,0,0,0,0,0,3.516757252731922,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,1318.666666666667,269211.4393245666,12782.7747910527,284238.4039576502,18716.3362633054,5430.874603799122 -5586,6934,12586,-9,-9,12587,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.481301040659,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1318.666666666667,269211.4393245666,12782.7747910527,284238.4039576502,18716.3362633054,5430.874603799122 -5586,6934,12587,12585,-9,-9,1,1,37,0,1,0,1,1,-9,0,5,9.245239887635984,9.092090043025783,0,1,-2,42.73451148626953,-9,-9,-9,2019,5,0,50,0,1,0,0,30.93246658204006,30.93246658204006,0,0,0,0,0,0,0,0,1.731528316755197,0,57.06,57.76,51.24,58.84,10,1,1,0,0,1,6,5,1,1318.666666666667,269211.4393245666,12782.7747910527,284238.4039576502,18716.3362633054,5430.874603799122 -5587,6935,12588,12589,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,8.808228033868394,8.30857099409338,19,4,9.780461634400648,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.590341005672848,8.489078456169656,57.06,57.76,55.19,54.26,10,1,1,0,0,11,1,4,1,425.5,659364.2408157797,158433.6495723983,264229.2017521898,0,3898.105144564295 -5587,6935,12589,12588,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.787472427015909,6.951149854403261,5.228824555960562,19,-4,24.99235137943046,0,3,2,2019,9,0,39,35,1,0,0,2.298353253696122,2.298353253696122,0,0,0,0,0,0,0,0,0,5.111956702860637,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,10,1,4,1,425.5,659364.2408157797,158433.6495723983,264229.2017521898,0,3898.105144564295 -5588,6936,12590,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,9.548358633346577,9.596491836133055,0,0,0,-983.5626886489108,0,3,2,2019,11,0,40,37,1,0,0,30.95501351577339,30.95501351577339,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,440,1826872.782782122,1135898.978134055,733664.6351392908,0,6067.821254331869 -5588,6937,12591,-9,12590,-9,1,0,23,0,0,0,1,1,-9,0,4,9.484825029979421,9.605368984944938,0,0,0,-1114.998590645382,0,1,-9,2019,6,0,39,0,1,0,1,51.74701262749056,51.74701262749056,0,0,0,0,0,0,0,0,1.584372363858193,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,88,-100478.0083229907,6748.840192311856,0,0,5332.903979957046 -5589,6938,12592,12593,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.574056317057153,8.714238189872894,0,8,8,-34.46834526640765,0,2,2,2019,11,1,40,47,1,1,0,14.78475947557175,14.78475947557175,0,0,0,0,0,0,0,0,0,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,10,4,5,1,400,611773.9664915327,500686.9755805507,88210.89986622517,0,2637.900944936179 -5589,6938,12593,12592,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.680139542057907,7.201100647001382,0,8,-8,68.72908117407023,0,2,2,2019,5,0,24,25,1,0,0,8.664978691325052,8.664978691325052,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.65,60.47,10,1,1,0,0,10,4,5,1,400,611773.9664915327,500686.9755805507,88210.89986622517,0,2637.900944936179 -5590,6939,12594,-9,12597,12596,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.29930329335,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,761.75,2800822.788449212,0,1537268.652007045,318300.0233176115,5670.019384001414 -5590,6939,12595,-9,12597,12596,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.535361013841,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,761.75,2800822.788449212,0,1537268.652007045,318300.0233176115,5670.019384001414 -5590,6939,12596,12597,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.498755356954273,9.305416856380898,0,12,10,-67.76626054484296,0,3,3,2019,9,0,47,52,1,0,0,30.23720710388096,30.23720710388096,0,0,0,0,0,0,0,0,1.92406833799521,0,48.28,60.18,35.57,63.56,8.333333333333334,1,1,0,0,10,9,5,1,761.75,2800822.788449212,0,1537268.652007045,318300.0233176115,5670.019384001414 -5590,6939,12597,12596,-9,-9,1,0,40,0,2,0,1,1,1,0,4,7.865055915992093,7.787688920703205,0,12,-10,6.301967289661413,-9,3,3,2019,16,4,54,0,1,4,0,6.021031863356451,6.021031863356451,0,0,0,0,0,0,0,0,1.105029951242193,0,35.57,63.56,48.28,60.18,8.333333333333334,2,3,0,0,2,9,5,1,761.75,2800822.788449212,0,1537268.652007045,318300.0233176115,5670.019384001414 -5591,6940,12598,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,4.862963534890343,4.952246559772671,0,0,0,-1082.537584384214,0,2,3,2019,9,0,80,60,1,0,0,.1945654252456227,.1945654252456227,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,12,1,2,1,1097,-97921.44276209507,0,0,0,760.6157403728928 -5591,6941,12599,-9,-9,12600,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.0656535978129,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,1,366.5,-114854.270866986,0,0,0,308.7680259468134 -5591,6941,12600,-9,12598,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-967.6217948037499,0,3,-9,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,33.48,45.55,-9,-9,8.333333333333334,1,1,1,0,0,1,2,1,366.5,-114854.270866986,0,0,0,308.7680259468134 -5592,6942,12601,12602,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.002319544791328,5.814526902900091,0,8,-2,22.03028395532235,0,2,2,2019,8,0,3,3,1,0,0,13.74263912864764,13.74263912864764,0,0,0,0,2,0,0,0,2.878825452905693,0,58.3,52.91,31.12,63.98,10,1,1,0,0,8,13,5,1,705.5,1513148.258909762,1079419.527132285,534282.7557680397,76744.31451277775,3610.548815801931 -5592,6942,12602,12601,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.124298789020488,8.968837619906276,8.748030471320545,8,2,-61.07017036380833,0,2,2,2019,21,9,37,37,1,9,0,14.87092124587211,14.87092124587211,0,0,0,0,0,0,0,0,7.220480357409408,8.728769178799075,31.12,63.98,58.3,52.91,8.333333333333334,1,1,0,0,9,13,5,1,705.5,1513148.258909762,1079419.527132285,534282.7557680397,76744.31451277775,3610.548815801931 -5593,6943,12603,12605,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.014703883903392,7.027287223879138,0,11,-4,-33.31037078945759,0,2,3,2019,7,0,18,19,1,0,0,7.745346452124975,7.745346452124975,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,7,3,0,787.6666666666666,73861.27082607178,-11294.31319448531,0,0,2317.030212598977 -5593,6943,12604,-9,12603,12605,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1195.784592936876,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,787.6666666666666,73861.27082607178,-11294.31319448531,0,0,2317.030212598977 -5593,6943,12605,12603,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.337841698480775,8.143174545447238,0,11,4,-64.48515518197709,0,-9,2,2019,9,0,37,37,1,0,0,11.31070037694077,11.31070037694077,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,7,7,3,0,787.6666666666666,73861.27082607178,-11294.31319448531,0,0,2317.030212598977 -5594,6944,12606,-9,12607,12609,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.263714955157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,789.5,819313.0549391038,604555.6203027519,216863.1024406764,62187.0538561916,3435.34583855596 -5594,6944,12607,12609,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.855599839524555,6.977339791718847,0,17,-4,151.0137731684985,0,2,2,2019,23,11,40,20,1,11,0,2.988777900545401,2.988777900545401,0,0,0,0,0,1,1,0,0,0,32.33,59.49,51.44,53.27,8.333333333333334,1,1,0,0,5,10,4,1,789.5,819313.0549391038,604555.6203027519,216863.1024406764,62187.0538561916,3435.34583855596 -5594,6944,12608,-9,12607,12609,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1045.974088961809,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,4,1,789.5,819313.0549391038,604555.6203027519,216863.1024406764,62187.0538561916,3435.34583855596 -5594,6944,12609,12607,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.73204290877419,8.618073258268572,0,17,4,76.68667215919866,0,2,3,2019,10,0,37,48,1,0,0,16.4173418372492,16.4173418372492,0,0,0,0,0,1,1,0,0,0,51.44,53.27,32.33,59.49,6.666666666666667,1,1,0,0,7,10,4,1,789.5,819313.0549391038,604555.6203027519,216863.1024406764,62187.0538561916,3435.34583855596 -5595,6945,12610,12611,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,8,-6,-46.12526281146688,0,1,1,2019,11,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,3.275497591943107,0,49.04,55.86,48.78,37.32,6.666666666666667,1,1,1,0,11,1,2,1,1257,-4579.058919673203,54770.77845329397,0,0,704.6640502988359 -5595,6945,12611,12610,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,5.512419984847713,5.65424568311322,8,6,-68.45505181313132,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.293876687143492,5.640356510155196,48.78,37.32,49.04,55.86,8.333333333333334,1,1,0,1,0,1,2,1,1257,-4579.058919673203,54770.77845329397,0,0,704.6640502988359 -5596,6946,12612,12613,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.448066164988613,7.823853525936827,0,17,8,-37.72659416958267,0,3,3,2019,11,2,16,16,1,2,0,16.04047246748882,16.04047246748882,0,0,0,0,0,1,1,0,5.901843284674893,0,53.14,45.74,31.34,40.84,5,1,1,0,1,6,5,4,1,566.5,317099.7984681196,150968.7852809074,216082.5701701185,70176.4554207706,2809.770408925478 -5596,6946,12613,12612,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.304903247258943,8.240724304987143,0,17,-8,-87.76318888589888,0,1,3,2019,13,2,37,37,1,2,0,14.59119384850296,14.59119384850296,0,0,0,0,7,1,1,0,0,0,31.34,40.84,53.14,45.74,3.333333333333333,1,1,0,0,6,5,4,1,566.5,317099.7984681196,150968.7852809074,216082.5701701185,70176.4554207706,2809.770408925478 -5596,6947,12614,-9,12613,12612,1,1,20,0,0,0,3,3,-9,0,3,6.803732300154078,6.958495509367222,0,0,0,-1027.864172332505,0,2,3,2019,9,0,20,0,1,0,1,4.850723873487765,4.850723873487765,0,0,0,0,0,1,1,0,0,0,46.06,46.23,-9,-9,5,1,1,0,0,1,5,2,1,1032,-16222.88010768752,0,0,0,930.8467869134311 -5596,6948,12615,-9,12613,12612,1,0,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-981.2521219912697,-9,2,3,2019,25,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,22.12,59.31,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,556,0,0,0,0,0 -5596,6949,12616,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.302076322931668,7.54451289977554,0,0,0,-891.8199378048004,-9,-9,-9,2019,12,3,40,0,1,3,0,5.345172534082099,5.345172534082099,0,0,0,0,0,1,1,0,0,0,44.7,56.48,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,1174,172476.1186951597,0,0,0,634.6040046620469 -5596,6950,12617,-9,12613,12612,1,1,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1072.809932125379,0,2,3,2019,26,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,25.07,47.97,-9,-9,0,1,1,1,1,1,5,1,1,1119,-149009.2112056162,0,0,0,157.1159186844846 -5597,6951,12618,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.48273649502813,8.645012506445006,0,0,0,-1119.524341834133,0,3,3,2019,10,0,45,38,1,1,0,12.53471622867261,12.53471622867261,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,8,3,4,0,0,9,8,5,0,1005,1227657.95812163,701218.2000190737,212055.892480217,0,2045.148787530372 -5598,6952,12619,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.477409940052297,8.167803756953168,7.715105739765277,0,0,-1053.138279114006,0,2,3,2019,7,0,22,25,1,0,0,9.238174392911409,9.238174392911409,0,0,0,0,7,1,1,0,.7994270283251346,7.327658392995092,57.16,56.15,-9,-9,10,1,1,0,0,11,7,4,1,645,2087496.257950643,1938442.549643492,388672.4391318521,10082.87522976322,1790.583322540761 -5599,6953,12620,-9,12622,12623,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1090.177610760004,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,2,4,1,876.75,219952.4453146988,138117.3772221332,195059.744419237,33034.64233126718,3444.159191203263 -5599,6953,12621,-9,12622,12623,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-995.9287493531619,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,4,1,1,-9,0,0,2,4,1,876.75,219952.4453146988,138117.3772221332,195059.744419237,33034.64233126718,3444.159191203263 -5599,6953,12622,12623,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.953760191296589,8.212808904221557,0,10,-2,28.6505123626783,0,3,3,2019,13,1,50,45,1,1,0,7.340108803701685,7.340108803701685,0,0,0,0,0,1,1,0,3.246036272813799,0,45.73,57.57,58.15,52.91,5,1,1,0,0,7,2,4,1,876.75,219952.4453146988,138117.3772221332,195059.744419237,33034.64233126718,3444.159191203263 -5599,6953,12623,12622,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.368141406440026,8.334342962296848,0,10,2,-224.7608441560525,0,2,2,2019,12,0,38,38,1,0,0,13.69294739926648,13.69294739926648,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.73,57.57,6.666666666666667,1,1,0,0,10,2,4,1,876.75,219952.4453146988,138117.3772221332,195059.744419237,33034.64233126718,3444.159191203263 -5600,6954,12624,12625,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.407692505200451,8.336637773385569,0,25,-6,113.8347084072082,0,-9,-9,2019,5,0,66,55,1,0,0,7.74807164502551,7.74807164502551,0,0,0,0,0,1,1,0,2.280231585584008,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,7,5,1,766.5,688145.1516633219,69142.48641056364,417088.4382032912,0,5139.413413000912 -5600,6954,12625,12624,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,8.589475132819793,8.890548337274119,5.468685367593926,25,6,44.23894384147843,0,2,2,2019,6,0,55,55,1,0,0,12.73745018588239,12.73745018588239,0,0,0,0,0,1,1,0,3.632665411183823,5.549035995609505,54.2,57.49,57.16,56.15,5,1,1,0,0,10,7,5,1,766.5,688145.1516633219,69142.48641056364,417088.4382032912,0,5139.413413000912 -5600,6955,12626,-9,12624,12625,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-988.2758358611167,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,44.95,52.41,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,485,202545.2409056141,0,0,0,0 -5600,6956,12627,-9,12624,12625,1,0,19,0,0,1,2,0,0,0,5,0,6.011620479844431,6.156201668713725,0,0,-1027.79751626802,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.000214838719644,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,2,1,351,-346380.5634400325,0,0,0,-73.72927819953469 -5601,6957,12628,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1118.765908390103,-9,3,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.5,56.06,-9,-9,5,1,1,0,1,0,13,2,0,387,0,0,0,0,976.4372283028152 -5602,6958,12629,-9,12631,12630,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1180.565505157571,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,1473.333333333333,355981.4763950419,335826.4557719454,0,0,7805.312647861272 -5602,6958,12630,12631,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,9.239271143267612,9.373764701618875,0,6,2,-39.72546254154794,0,-9,-9,2019,13,1,35,40,1,1,0,33.29026728340079,33.29026728340079,0,0,0,0,0,1,1,0,8.078831656060952,0,37.19,58.61,45.06,52.3,6.666666666666667,1,1,0,0,8,9,5,1,1473.333333333333,355981.4763950419,335826.4557719454,0,0,7805.312647861272 -5602,6958,12631,12630,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,8.952989989798036,8.82654952858106,0,6,-2,35.63692834036365,0,3,3,2019,16,4,40,40,1,4,0,18.35042475648764,18.35042475648764,0,0,0,0,0,1,1,0,0,0,45.06,52.3,37.19,58.61,6.666666666666667,2,3,0,0,4,9,5,1,1473.333333333333,355981.4763950419,335826.4557719454,0,0,7805.312647861272 -5603,6959,12632,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.535805006736405,7.284744696964466,0,0,0,-811.0947373112157,0,3,3,2019,9,0,18,16,1,0,0,9.284888526312908,9.284888526312908,0,0,0,0,0,1,1,0,0,0,63.02,19.71,-9,-9,5,2,3,0,0,10,6,2,1,250,191072.9819784996,90894.55165080629,0,0,1481.222445450371 -5603,6959,12633,-9,12632,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.0008347866684,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,6,2,1,250,191072.9819784996,90894.55165080629,0,0,1481.222445450371 -5603,6959,12634,-9,12632,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1008.473032607328,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,6,2,1,250,191072.9819784996,90894.55165080629,0,0,1481.222445450371 -5603,6960,12635,-9,12632,-9,1,1,18,0,2,0,2,2,1,0,4,6.895948242144691,7.307146368921859,0,0,0,-925.1800230892983,-9,2,-9,2019,1,0,12,0,1,0,1,9.658871232158655,9.658871232158655,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,10,4,2,0,0,3,6,2,1,327,47783.19412938851,55886.35947368464,0,0,314.5773983384421 -5604,6961,12636,12637,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,3,3,0,-9,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,17.87,35.62,0,1,1,0,0,0,4,2,0,882.5,-48583.25279428214,58116.42125116413,0,0,1916.141212808374 -5604,6961,12637,12636,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,28,-3,0,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,17.87,35.62,16.04,23.99,8.333333333333334,1,1,1,0,9,4,2,0,882.5,-48583.25279428214,58116.42125116413,0,0,1916.141212808374 -5604,6962,12638,-9,12637,12636,1,1,27,0,0,0,2,2,-9,1,3,0,0,0,0,0,-968.6483153490162,-9,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,54.62,53.53,-9,-9,5,1,1,1,0,0,4,2,0,268,80352.73536922838,0,0,0,1092.545579526437 -5605,6963,12639,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.132292128474591,5.94964124717925,0,0,-1039.771644215351,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.366709447176296,0,21.5352513855673,0,1,1,0,0,5.715933763713034,53.18,28.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,111,415379.2259691975,97528.49824059673,88621.87708278949,0,1656.338206998069 -5606,6964,12640,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.160368571539461,8.064478862251168,3.986841989412466,0,0,-950.3229071119924,0,2,2,2019,6,0,60,60,1,0,0,6.955077474050268,6.955077474050268,0,0,0,0,0,0,0,0,6.113891993919757,4.55117254347125,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,218,954146.6154791162,824331.7689990851,301988.3783290028,0,1483.587646652392 -5607,6965,12641,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.762862365221947,8.71627033474039,0,0,0,-1004.361607730075,0,2,3,2019,13,2,53,45,1,2,0,16.79554496499081,16.79554496499081,0,0,0,0,0,0,0,0,.7866123968049815,0,42.11,51.13,-9,-9,6.666666666666667,1,1,0,0,9,5,5,1,128,73204.23098701803,-83660.6185526124,0,0,2237.280205211588 -5607,6966,12642,-9,-9,12641,1,1,20,0,0,0,2,2,-9,0,4,8.029220195684651,7.911826557386856,0,0,0,-1021.396750274445,0,-9,2,2019,5,0,44,42,1,0,1,6.470983527504775,6.470983527504775,0,0,0,0,0,0,0,0,1.206379237207979,0,69.71000000000001,32.57,-9,-9,10,1,1,0,0,4,5,3,1,161,57101.57725056435,0,0,0,986.7596296752989 -5608,6967,12643,-9,12646,12644,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-899.3013568425471,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,5,1,568.75,518890.8663972527,314484.0866776968,248795.6364317086,0,16846.11425321093 -5608,6967,12644,12646,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.451884037959063,9.354815537019961,0,8,0,97.53237421106198,0,2,1,2019,11,1,60,62,1,1,0,21.48198198543464,21.48198198543464,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52.21,59.91,8.333333333333334,1,1,0,0,8,13,5,1,568.75,518890.8663972527,314484.0866776968,248795.6364317086,0,16846.11425321093 -5608,6967,12645,-9,12646,12644,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.024546156646,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,568.75,518890.8663972527,314484.0866776968,248795.6364317086,0,16846.11425321093 -5608,6967,12646,12644,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,8,0,-25.72620241949705,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9.567559519573686,0,52.21,59.91,57.73,54.53,8.333333333333334,1,1,0,0,0,13,5,1,568.75,518890.8663972527,314484.0866776968,248795.6364317086,0,16846.11425321093 -5608,6968,12647,-9,12646,12644,1,0,20,0,1,1,2,0,0,0,4,0,4.580951570780607,4.339675992255899,0,0,-1102.613392371883,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.931296958000191,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,286,-193790.6809988391,0,0,0,-77.85235707684848 -5609,6969,12648,-9,12649,12650,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.834213296448,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,0,419.3333333333333,307835.2639145292,101652.0526299761,195641.2319436128,136065.4601485749,6326.041648596386 -5609,6969,12649,12650,-9,-9,1,0,41,1,1,0,2,2,-9,0,3,9.023065405127777,9.328780868513814,0,3,3,27.20417914917793,0,1,1,2019,14,2,50,55,1,2,0,21.18897984187785,21.18897984187785,0,0,0,0,7,1,1,0,6.924525022543028,0,38.77,49.79,46.19,42.17,6.666666666666667,1,1,0,0,9,2,5,0,419.3333333333333,307835.2639145292,101652.0526299761,195641.2319436128,136065.4601485749,6326.041648596386 -5609,6969,12650,12649,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.520221496861742,8.594395581752343,0,3,-3,-17.75397827452793,0,-9,-9,2019,19,7,40,40,1,7,0,16.47930732493676,16.47930732493676,0,0,0,0,0,1,1,0,0,0,46.19,42.17,38.77,49.79,5,1,1,0,0,9,2,5,0,419.3333333333333,307835.2639145292,101652.0526299761,195641.2319436128,136065.4601485749,6326.041648596386 -5610,6970,12651,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.324121846597395,7.44745808558931,5.629451181245337,0,0,-1023.277695398696,0,2,2,2019,16,4,32,23,1,4,0,6.097550421369234,6.097550421369234,0,0,0,2.028983130650511,0,1,1,0,6.125434127292074,0,40.29,53.32,-9,-9,6.666666666666667,1,1,0,0,12,5,3,1,683,-117026.94298605,45425.57802895201,0,0,1390.724789719396 -5610,6970,12652,-9,12651,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.143336847141,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,683,-117026.94298605,45425.57802895201,0,0,1390.724789719396 -5611,6971,12653,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.938658068464514,7.92756090919256,0,0,-999.5578354612775,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.031986275072127,56.25,32.29,-9,-9,1.666666666666667,1,1,0,0,2,13,4,0,472,314820.5951902704,105480.3671369414,27259.32771290145,0,2019.635752968074 -5612,6972,12654,-9,12656,12655,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.2809991554435,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,3,1,705.6666666666666,502476.9590550356,150611.8313327295,315459.3925182,38725.6315716968,2273.063438674187 -5612,6972,12655,12656,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.160852379341287,8.251109127800726,0,26,1,21.41488847016885,0,-9,-9,2019,9,0,40,40,1,1,0,9.396445389431932,9.396445389431932,0,0,0,0,0,1,1,0,0,0,53,55,55.24,55.87,8,2,3,0,0,1,9,3,1,705.6666666666666,502476.9590550356,150611.8313327295,315459.3925182,38725.6315716968,2273.063438674187 -5612,6972,12656,12655,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,6.760616245427384,6.88677596863858,0,26,-1,34.26438136062269,0,3,3,2019,10,0,25,31,1,0,0,4.124047060642233,4.124047060642233,0,0,0,0,0,1,1,0,0,0,55.24,55.87,53,55,8.333333333333334,2,3,0,0,8,9,3,1,705.6666666666666,502476.9590550356,150611.8313327295,315459.3925182,38725.6315716968,2273.063438674187 -5612,6973,12657,-9,12656,12655,1,0,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-975.2493243148152,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,8.333333333333334,2,3,0,0,2,9,1,1,417,25868.06037927475,0,0,0,0 -5613,6974,12658,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,0,7.154831538339423,7.265400764990767,0,0,-1026.814430733188,1,1,1,2019,12,1,0,43,2,1,0,0,0,0,0,0,0,0,0,0,0,7.483706223754798,0,52.36,45.23,-9,-9,6.666666666666667,1,1,0,0,8,9,2,0,331,74758.11763607085,0,0,0,539.1839346853625 -5614,6975,12659,12660,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.631289544871589,6.593332727672506,0,10,-1,-68.85883111923577,0,-9,2,2019,10,0,9,9,1,0,0,10.47684391171402,10.47684391171402,0,0,0,0,0,0,0,0,0,0,49.53,50.82,54.1,59.11,6.666666666666667,1,1,0,0,10,12,4,1,2338.5,264205.203916801,-18718.07062427486,314990.9149518479,0,2747.28983579279 -5614,6975,12660,12659,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.717058217470759,8.349553356088144,0,10,1,-2.655145928701594,0,2,2,2019,9,0,38,37,1,0,0,17.47098507261765,17.47098507261765,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.53,50.82,8.333333333333334,1,1,0,0,10,12,4,1,2338.5,264205.203916801,-18718.07062427486,314990.9149518479,0,2747.28983579279 -5615,6976,12661,12662,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.609416828181782,6.847217070018843,10,3,-25.19384988240675,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.03562474959103,7.379966130104427,52.43,55.57,46.5,58.26,8.333333333333334,1,1,0,0,0,13,2,1,508,377387.9816886317,350047.342650404,229533.1861509812,0,1881.757633076175 -5615,6976,12662,12661,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,10,-3,59.86520387412541,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,52.43,55.57,6.666666666666667,1,1,0,0,9,13,2,1,508,377387.9816886317,350047.342650404,229533.1861509812,0,1881.757633076175 -5616,6977,12663,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1032.154795094545,-9,1,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,20.11,66.45,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,900,209554.8344489633,0,0,0,636.1499395715376 -5617,6978,12664,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.036825392827533,6.886642718969335,0,0,-995.3496882529323,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.851096518192518,6.467515001917074,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,260,684384.963234196,325125.3824555776,458427.0876721612,0,2945.543551159848 -5618,6979,12665,12666,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.350390447579034,9.417516108788236,0,7,-3,-100.1989091720237,0,2,3,2019,9,1,47,47,1,1,0,25.10901072616042,25.10901072616042,0,0,0,0,0,0,0,0,3.969897338917335,0,59.29,49.68,60.02,56.42,8.333333333333334,1,1,0,0,8,10,5,1,439.6666666666667,460467.9749094097,125631.0977570614,341179.9904278898,166880.4481624693,4856.230469295471 -5618,6979,12666,12665,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,8.163870000490537,8.320897257121445,5.509278573687545,7,3,3.337499183794527,0,-9,-9,2019,6,0,20,20,1,0,0,19.06785002680913,19.06785002680913,0,0,0,0,0,0,0,0,6.210316313940558,0,60.02,56.42,59.29,49.68,10,1,1,0,0,10,10,5,1,439.6666666666667,460467.9749094097,125631.0977570614,341179.9904278898,166880.4481624693,4856.230469295471 -5618,6979,12667,-9,12666,12665,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.202268262713,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,439.6666666666667,460467.9749094097,125631.0977570614,341179.9904278898,166880.4481624693,4856.230469295471 -5619,6980,12668,-9,12669,12670,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.040901339845,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,593.25,-67817.94388319532,59203.11148935798,0,0,2942.319163111085 -5619,6980,12669,12670,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.567342941248148,7.764132561848351,0,13,-1,-32.64458305835643,0,2,2,2019,12,1,20,20,1,1,0,14.40031032330082,14.40031032330082,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,39.38,52.68,6.666666666666667,1,1,0,0,9,7,4,1,593.25,-67817.94388319532,59203.11148935798,0,0,2942.319163111085 -5619,6980,12670,12669,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.486107952392324,8.323535332686035,0,13,1,-59.1191471856142,0,1,2,2019,11,0,43,43,1,0,0,10.57867301617804,10.57867301617804,0,0,0,0,0,1,1,0,0,0,39.38,52.68,35.61,65.82000000000001,6.666666666666667,1,1,0,0,12,7,4,1,593.25,-67817.94388319532,59203.11148935798,0,0,2942.319163111085 -5619,6980,12671,-9,12669,12670,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.83732613815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,593.25,-67817.94388319532,59203.11148935798,0,0,2942.319163111085 -5620,6981,12672,12673,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,7.46960897116274,7.669883789534985,7,-8,-63.86112713727671,0,3,2,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.829601547137607,40.39,18.65,62.49,55.09,3.333333333333333,1,1,0,0,7,2,4,1,660,1173849.852665154,649422.5501936066,265613.189204547,0,3039.966688835804 -5620,6981,12673,12672,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.690647923869944,7.844352245247457,7,8,30.456001656003,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.834602875958719,7.443872513256431,62.49,55.09,40.39,18.65,10,1,1,0,0,2,2,4,1,660,1173849.852665154,649422.5501936066,265613.189204547,0,3039.966688835804 -5621,6982,12674,12675,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.14968453984527,8.39420991323203,0,1,6,-132.6375546475338,0,2,2,2019,13,3,40,50,1,3,0,13.23216494428498,13.23216494428498,0,0,0,0,0,0,0,0,0,0,38.94,60.48,41.06,62.04,5,1,1,0,0,9,2,4,1,348.5,89808.34870152452,-12880.71027205973,68606.18606414276,65274.77618754838,1767.846139025023 -5621,6982,12675,12674,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,5.952203556849046,5.933780889396771,0,1,-6,-14.78531607485357,-9,-9,-9,2019,11,1,40,0,1,1,0,1.079550984442509,1.079550984442509,0,0,0,0,0,0,0,0,0,0,41.06,62.04,38.94,60.48,8.333333333333334,1,1,0,0,7,2,4,1,348.5,89808.34870152452,-12880.71027205973,68606.18606414276,65274.77618754838,1767.846139025023 -5622,6983,12676,12677,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.832768243688443,7.845880327710506,0,1,3,-134.9152155161128,-9,-9,-9,2019,12,0,40,0,1,0,0,5.470476152523935,5.470476152523935,0,0,0,0,2,1,1,0,0,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,1,4,4,0,536,-20314.5675012009,49598.54585164936,0,0,2158.914579224765 -5622,6983,12677,12676,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.503003615100507,7.774480692366951,0,1,-3,29.49509899390979,0,2,2,2019,5,0,40,0,1,0,0,6.617470460749005,6.617470460749005,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,7,4,4,0,536,-20314.5675012009,49598.54585164936,0,0,2158.914579224765 -5623,6984,12678,12679,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,9,1,86.23998762990017,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,3.116391071562557,0,49.27,56.95,46.85,27.33,8.333333333333334,1,1,0,0,0,7,2,1,383.5,109157.8411133411,-73151.99584837092,0,0,915.3644627647898 -5623,6984,12679,12678,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,4.564509227533124,4.730057237781517,9,-1,3.52442010475825,0,-9,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.325633186423055,4.667322142258889,46.85,27.33,49.27,56.95,3.333333333333333,1,1,0,0,0,7,2,1,383.5,109157.8411133411,-73151.99584837092,0,0,915.3644627647898 -5624,6985,12680,12681,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,15,-10,57.57717544663067,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.35,51,59.87,37.67,8.333333333333334,1,1,0,0,1,10,2,1,1037.5,258110.1924559983,-64534.86755698714,273938.078921841,0,1246.084500619653 -5624,6985,12681,12680,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,4.893696729350315,4.605068659450794,21,10,-22.58978621851751,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.789476924965347,4.661016346178708,59.87,37.67,56.35,51,8.333333333333334,1,1,0,0,2,10,2,1,1037.5,258110.1924559983,-64534.86755698714,273938.078921841,0,1246.084500619653 -5625,6986,12682,12686,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.70455456725261,7.856036149290488,0,7,2,-157.0172567217987,0,3,3,2019,8,0,40,40,1,0,0,6.044067077982128,6.044067077982128,0,0,0,0,2,1,1,0,0,0,60.12,54.8,40.18,55.92,8.333333333333334,1,1,0,0,8,11,3,1,793.8,168695.598640087,163664.7422047327,161333.5173307719,122714.8955080865,2958.680285680743 -5625,6986,12683,-9,12686,12682,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1106.449971759252,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,3,1,793.8,168695.598640087,163664.7422047327,161333.5173307719,122714.8955080865,2958.680285680743 -5625,6986,12684,-9,12686,12682,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.441007772625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,793.8,168695.598640087,163664.7422047327,161333.5173307719,122714.8955080865,2958.680285680743 -5625,6986,12685,-9,12686,12682,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.722887554293,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,793.8,168695.598640087,163664.7422047327,161333.5173307719,122714.8955080865,2958.680285680743 -5625,6986,12686,12682,-9,-9,1,0,33,0,3,0,2,2,-9,1,3,7.573178165670267,7.381239389319525,0,7,-2,-137.7259575171482,0,2,-9,2019,17,5,35,37,1,5,0,7.961333313672069,7.961333313672069,0,0,0,0,5.48,1,1,0,0,0,40.18,55.92,60.12,54.8,6.666666666666667,1,1,0,0,6,11,3,1,793.8,168695.598640087,163664.7422047327,161333.5173307719,122714.8955080865,2958.680285680743 -5626,6987,12687,12688,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.493421268103631,8.108412553635242,9,2,44.92155925139006,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.413482030674349,8.307477675961939,60.3,46.58,61.04,39.41,8.333333333333334,1,1,0,0,7,9,4,1,172.5,1069215.002251374,731890.82372798,354579.8837862301,0,2073.14960691832 -5626,6987,12688,12687,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.809282204954366,5.776861537906684,9,-2,8.974625772326617,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.026230544994474,61.04,39.41,60.3,46.58,8.333333333333334,1,1,0,0,6,9,4,1,172.5,1069215.002251374,731890.82372798,354579.8837862301,0,2073.14960691832 -5627,6988,12689,12690,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.24608748548372,8.491587198549574,0,41,-8,74.20324889211339,0,2,2,2019,9,0,45,46,1,1,0,12.00025788107251,12.00025788107251,0,0,0,0,0,0,0,0,0,0,52,53,57.16,56.15,8,2,3,0,0,9,9,4,1,396,1020959.127698759,496207.0957309314,373421.0949020139,0,2964.02136184105 -5627,6988,12690,12689,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.177064877869279,7.260048198524982,7,8,-54.55157920880272,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.052133277190094,7.399531460118618,57.16,56.15,52,53,8.333333333333334,2,3,0,0,0,9,4,1,396,1020959.127698759,496207.0957309314,373421.0949020139,0,2964.02136184105 -5628,6989,12691,12692,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.565867539323005,8.794322149954725,0,7,17,-45.1171533989369,0,-9,-9,2019,4,0,42,42,1,0,0,15.84730497275392,15.84730497275392,0,0,0,0,0,0,0,0,3.798762373180156,0,45.35,54.75,40.19,50.39,8.333333333333334,1,1,0,0,9,5,5,1,1374,823508.654247053,572398.8085685801,264629.7354209954,20220.27716906575,3045.186261882618 -5628,6989,12692,12691,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.035833259173923,7.850912222733169,0,7,-17,-54.17591796211087,0,2,2,2019,13,1,42,42,1,1,0,7.7366507048401,7.7366507048401,0,0,0,0,0,0,0,0,.638915011309505,0,40.19,50.39,45.35,54.75,8.333333333333334,1,1,0,0,9,5,5,1,1374,823508.654247053,572398.8085685801,264629.7354209954,20220.27716906575,3045.186261882618 -5629,6990,12693,12694,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,32,-13,66.87426429867764,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,3,2,2,1,481,782928.9943192492,132276.734054657,230764.2506389396,0,1843.211755131321 -5629,6990,12694,12693,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.911965640872058,6.661964500997558,32,13,-69.34374671559991,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.256628371873142,7.099003513069462,57.33,53.46,57.16,56.15,0,1,1,0,0,0,2,2,1,481,782928.9943192492,132276.734054657,230764.2506389396,0,1843.211755131321 -5630,6991,12695,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.955535883822004,8.046320537488334,0,0,0,-989.2754136195362,0,1,2,2019,11,2,36,38,1,2,0,9.849878275619016,9.849878275619016,0,0,0,0,0,1,1,0,3.471577249035454,0,52.02,57.3,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,180,192360.7345980983,375.4601369446502,0,0,1696.270994188869 -5631,6992,12696,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.797440550410728,6.570391875447112,0,0,-1045.866985506412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.933771354506766,6.307423982851534,60.72,47.63,-9,-9,10,1,1,0,0,0,12,2,1,504,116310.3181174273,301765.8429009168,141591.8244330724,0,1252.383995142096 -5632,6993,12697,-9,12698,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.398068491389,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,1,0,755.5,2280.244170838698,0,0,0,800.9292989064292 -5632,6993,12698,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,0,0,-939.7597386235541,1,3,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,46.02,-9,-9,5,1,1,0,1,0,5,1,0,755.5,2280.244170838698,0,0,0,800.9292989064292 -5633,6994,12699,12700,-9,-9,1,1,79,0,0,0,3,3,-9,0,5,0,6.224891710345571,6.042199524561034,7,3,74.06861308175291,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.889830479565388,6.347207622311384,57.06,57.76,54.06,33,6.666666666666667,1,1,0,0,0,12,2,1,352.5,543939.4343822319,206668.1088298275,368045.5624802487,0,1490.067414864008 -5633,6994,12700,12699,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.453448209406421,6.26132686079402,7,-3,-2.786649492044887,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7081819369268793,6.352524800546086,54.06,33,57.06,57.76,8.333333333333334,1,1,0,0,0,12,2,1,352.5,543939.4343822319,206668.1088298275,368045.5624802487,0,1490.067414864008 -5634,6995,12701,12704,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.311358025330719,8.583945520320302,0,14,-4,106.2328003605819,0,1,1,2019,8,0,18,18,1,0,0,29.25467523845175,29.25467523845175,0,0,0,0,0,1,1,0,1.768429730748893,0,39.33,58.88,46.65,47.55,5,1,1,0,0,8,13,4,1,381,699656.4856259464,628473.9606388223,285876.8347759793,180665.7790311718,3515.406676497907 -5634,6995,12702,-9,12701,12704,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.133469838987,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,381,699656.4856259464,628473.9606388223,285876.8347759793,180665.7790311718,3515.406676497907 -5634,6995,12703,-9,12701,12704,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.7945918341695,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,381,699656.4856259464,628473.9606388223,285876.8347759793,180665.7790311718,3515.406676497907 -5634,6995,12704,12701,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.787417660615406,8.965551773247389,0,13,4,-23.55959149066655,0,3,3,2019,11,3,50,50,1,3,0,11.98347622697284,11.98347622697284,0,0,0,0,0,1,1,0,1.256750100775343,0,46.65,47.55,39.33,58.88,6.666666666666667,1,1,0,0,8,13,4,1,381,699656.4856259464,628473.9606388223,285876.8347759793,180665.7790311718,3515.406676497907 -5635,6996,12705,12706,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.468472417034904,5.563975184753709,10,-6,39.7826076907888,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.783370088680785,5.656443191743188,54.2,57.49,57.34,45.43,8.333333333333334,1,1,0,0,0,4,3,1,221.5,1089250.408990777,458857.7508755483,164656.6172430146,51918.96785319621,2529.069601541385 -5635,6996,12706,12705,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.786986294464305,7.868170471734436,10,6,-48.43360443706104,0,3,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.244811265175381,7.741955795552296,57.34,45.43,54.2,57.49,8.333333333333334,1,1,0,0,0,4,3,1,221.5,1089250.408990777,458857.7508755483,164656.6172430146,51918.96785319621,2529.069601541385 -5636,6997,12707,12708,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.666404152030375,7.365340705114485,6,1,73.76454111691442,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.445163177988063,54,46,65.86,22.15,8,4,1,0,0,0,13,3,1,482.5,567390.7513198663,389525.4521431663,219588.0616345384,0,1932.805737571073 -5636,6997,12708,12707,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.589403960887825,6.937298699435815,6,-1,-57.29084343007307,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.579035433471442,0,0,1,1,0,3.309897012364328,6.576437108017817,65.86,22.15,54,46,10,1,1,0,0,0,13,3,1,482.5,567390.7513198663,389525.4521431663,219588.0616345384,0,1932.805737571073 -5637,6998,12709,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.262826595106705,7.380329741472504,0,0,0,-897.5070832556271,0,-9,-9,2019,12,0,38,0,1,0,0,5.197087754901174,5.197087754901174,0,0,0,0,0,0,0,0,0,0,53.51,60.74,-9,-9,0,1,1,0,1,5,11,3,0,1183,182573.1633380457,38494.95806529002,0,0,456.3763005361109 -5638,6999,12710,-9,12711,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.8966390295866,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,915,12052.19644899208,82260.62261134142,0,0,2712.030956952397 -5638,6999,12711,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.699302863373141,7.903517437481206,6.451267110959883,0,0,-936.5845919881921,0,1,2,2019,11,0,22,21,1,0,0,11.97978952220857,11.97978952220857,0,0,0,0,0,1,1,0,8.049207131998619,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,915,12052.19644899208,82260.62261134142,0,0,2712.030956952397 -5638,6999,12712,-9,12711,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-990.2444117057861,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,3,1,915,12052.19644899208,82260.62261134142,0,0,2712.030956952397 -5639,7000,12713,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.25945648149127,8.164215317939849,0,0,0,-924.8512860542746,0,3,3,2019,12,0,1,40,1,0,0,481.7133306566054,481.7133306566054,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,901,60793.17186204213,104815.0558780407,120334.0546246627,0,1535.370143811331 -5639,7001,12714,-9,12713,-9,1,1,28,0,0,0,2,2,-9,0,3,8.62679788526456,8.59924042753301,0,0,0,-1066.890960320633,0,2,-9,2019,10,0,39,32,1,0,1,19.99305216789951,19.99305216789951,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,11,5,1,169,193903.9287581195,-101451.2269078524,0,0,2696.117802690486 -5640,7002,12715,12717,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,8.40046412946516,8.45646675587305,0,9,2,-39.19735478549124,0,2,2,2019,10,0,40,40,1,0,0,13.49865550287195,13.49865550287195,0,0,0,0,0,1,1,0,4.132404388890755,0,43.92,62.31,35.73,63.1,8.333333333333334,1,1,0,0,10,6,4,0,498,228900.0375709159,93164.80996375186,120411.1416600064,20755.26689370175,3428.790379326449 -5640,7002,12716,-9,12717,12715,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-877.4847974035522,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,498,228900.0375709159,93164.80996375186,120411.1416600064,20755.26689370175,3428.790379326449 -5640,7002,12717,12715,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.132107953315641,8.136770905124065,0,9,-2,4.307565205617125,0,2,2,2019,13,1,41,38,1,1,0,10.66450922753511,10.66450922753511,0,0,0,0,0,1,1,0,7.45314469774981,0,35.73,63.1,43.92,62.31,8.333333333333334,1,1,0,0,10,6,4,0,498,228900.0375709159,93164.80996375186,120411.1416600064,20755.26689370175,3428.790379326449 -5641,7003,12718,12719,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,8.755506564133917,8.723486521697405,0,7,3,7.101235847183024,0,-9,-9,2019,12,0,43,43,1,0,0,19.90130560010199,19.90130560010199,0,0,0,0,2,1,1,0,0,0,38.47,57.72,53.14,51.28,5,2,3,0,0,7,5,5,1,937,1720807.247735986,1176813.284058848,305431.4996506784,63357.31758989169,5770.618161471073 -5641,7003,12719,12718,-9,-9,1,0,52,0,2,0,1,1,-9,0,3,8.819573845712553,8.677194098452704,0,7,-3,15.11954417562399,0,-9,-9,2019,12,0,30,30,1,0,0,20.64760439542371,20.64760439542371,0,0,0,.8278512976281664,0,1,1,0,0,0,53.14,51.28,38.47,57.72,3.333333333333333,1,1,0,0,9,5,5,1,937,1720807.247735986,1176813.284058848,305431.4996506784,63357.31758989169,5770.618161471073 -5641,7003,12720,-9,12719,12718,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1009.116231142906,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,937,1720807.247735986,1176813.284058848,305431.4996506784,63357.31758989169,5770.618161471073 -5641,7003,12721,-9,12719,12718,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.842662983998,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,5,1,937,1720807.247735986,1176813.284058848,305431.4996506784,63357.31758989169,5770.618161471073 -5642,7004,12722,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1180.638183732447,0,3,3,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,1.653098949418155,0,51.07,39.92,-9,-9,8.333333333333334,1,1,1,0,9,12,1,1,2056,205057.209460143,147175.0151492751,0,0,359.2676451298784 -5643,7005,12723,12724,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,8,6,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,32.79,33.86,7,2,3,0,0,0,6,1,1,769,277241.7380066517,260535.7490828702,67696.0754534436,0,1707.93548119338 -5643,7005,12724,12723,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,31,-6,0,0,3,2,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,71.5,1,1,0,0,0,32.79,33.86,50,49,5,2,3,0,0,0,6,1,1,769,277241.7380066517,260535.7490828702,67696.0754534436,0,1707.93548119338 -5643,7006,12725,-9,12724,12723,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,0,0,-872.7825521473915,0,3,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,5.48,1,1,0,0,0,55.73,53.98,-9,-9,5,2,3,1,1,2,6,1,1,2135,164025.5966157189,0,0,0,399.6273302190687 -5643,7007,12726,-9,12724,12723,1,1,24,0,0,0,2,2,-9,0,3,0,4.852231239692701,5.45670278837796,0,0,-1049.365885498139,0,3,2,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,4.871697112507614,0,47.8,52.46,-9,-9,5,2,3,1,1,0,6,2,1,375,-49008.50447794508,0,0,0,604.9054840234048 -5644,7008,12727,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.610842470479325,7.104134390115245,0,0,-989.8244584889185,0,1,1,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.130996591617579,7.327746848158945,64.57000000000001,12.51,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1013,63746.27538692721,109561.329940832,0,0,1725.425186058662 -5645,7009,12728,12729,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.031559810247613,7.337558783929087,0,3,-2,-36.2636396455361,0,-9,-9,2019,6,0,24,23,1,0,0,6.638407521350288,6.638407521350288,0,0,0,0,0,0,0,0,1.55192556912834,0,59.71,40.18,55.93,52.62,8.333333333333334,1,1,0,0,3,6,5,1,610,56092.12737970336,54164.59315138223,100997.8373521875,64256.1734474176,4860.104020976702 -5645,7009,12729,12728,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,9.84741043844179,9.735881036743105,0,3,2,87.882972299977,0,2,2,2019,7,0,55,55,1,0,0,34.87475991935047,34.87475991935047,0,0,0,0,0,0,0,0,1.680231489706828,0,55.93,52.62,59.71,40.18,5,1,1,0,0,8,6,5,1,610,56092.12737970336,54164.59315138223,100997.8373521875,64256.1734474176,4860.104020976702 -5646,7010,12730,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-982.1680827452988,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,28.94,26.24,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,480,210152.7620492311,0,192103.8166262606,0,1153.752107658611 -5647,7011,12731,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1089.013244608149,0,3,3,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,30.42,-9,-9,5,1,1,0,0,0,13,1,0,3493,0,0,0,0,1564.383287891712 -5648,7012,12732,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.56560535169206,6.778494499008846,0,0,-995.0767365761025,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.121428939196221,0,0,1,1,0,3.786729244311325,6.065512725444141,55.9,19.3,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,903,70826.28903484429,170523.1258406424,54053.94428662016,0,1664.83878850036 -5649,7013,12733,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,1,0,6.464206075051159,6.483683906565273,0,0,-905.9252494530399,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,1.680774603757657,0,25.49106288317044,0,1,1,0,.7666063737491069,6.787090218306984,52.22,18.93,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,194,378131.0379149461,172179.2079604134,137281.6043785426,0,819.5603900380607 -5650,7014,12734,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.429841077263485,8.001774074913794,7.120459000724373,0,0,-1088.463343813961,0,3,3,2019,10,0,32,24,1,0,0,4.357725517669816,4.357725517669816,0,0,0,0,0,0,0,0,1.775510207733378,7.20205730607716,46.05,33,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,321,40387.03574181336,196420.1192236327,0,0,1464.292051159588 -5651,7015,12735,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,8.492496494759628,8.207355949926454,0,0,0,-966.8436052808972,0,2,3,2019,22,8,37,32,1,8,0,16.11429975843965,16.11429975843965,0,0,0,0,0,1,1,0,2.542128935156893,0,19.05,42.72,-9,-9,1.666666666666667,1,1,0,0,9,6,4,1,344,758666.7352632849,526917.1885245356,198527.5857133006,107944.550015046,1813.831808875453 -5652,7016,12736,-9,12738,12737,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-955.327073687092,-9,1,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.05,59.03,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,971.6666666666666,760999.3007587711,689320.6686642313,258613.9785484186,219937.7777885241,5249.699514728994 -5652,7016,12737,12738,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.802684634080657,8.944708150342271,0,6,-2,96.90385774013049,0,-9,-9,2019,9,0,40,45,1,1,0,21.13752642795554,21.13752642795554,0,0,0,0,0,1,1,0,.6716309043177847,0,53,55,49.12,57.28,8,1,1,0,0,1,9,5,1,971.6666666666666,760999.3007587711,689320.6686642313,258613.9785484186,219937.7777885241,5249.699514728994 -5652,7016,12738,12737,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.099454330654957,8.601944603967555,7.292043313206772,20,2,-10.57228458228463,0,3,2,2019,10,0,30,35,1,0,0,15.67078215149371,15.67078215149371,0,0,0,0,0,1,1,0,3.705062607664689,7.841481436707854,49.12,57.28,53,55,3.333333333333333,1,1,0,0,8,9,5,1,971.6666666666666,760999.3007587711,689320.6686642313,258613.9785484186,219937.7777885241,5249.699514728994 -5653,7017,12739,12740,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.392500948334282,8.700692333204774,7.425783553921826,27,7,66.40162111653981,0,3,3,2019,11,0,40,35,1,0,0,13.03181247399763,13.03181247399763,0,0,0,0,0,0,0,0,0,7.428167956801171,43.45,38.38,50.3,56.65,3.333333333333333,1,1,0,0,9,9,5,1,344.5,306498.8665605165,90386.00238370351,235239.2888934083,40629.32606846681,3674.286695680214 -5653,7017,12740,12739,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.511471952387025,7.62887383460896,0,27,-7,-73.54961418761938,0,2,3,2019,11,0,40,35,1,0,0,6.655900974518498,6.655900974518498,0,0,0,0,0,0,0,0,.1609572222005333,0,50.3,56.65,43.45,38.38,3.333333333333333,1,1,0,0,9,9,5,1,344.5,306498.8665605165,90386.00238370351,235239.2888934083,40629.32606846681,3674.286695680214 -5654,7018,12741,-9,12745,12746,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.000016893385,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5654,7018,12742,-9,12745,12746,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1091.874033697687,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5654,7018,12743,-9,12745,12746,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-897.8770241638942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5654,7018,12744,-9,12745,12746,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-891.6319807848857,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5654,7018,12745,12746,-9,-9,1,0,42,0,4,0,1,1,-9,0,4,8.50898226272148,8.869575480892994,0,23,-11,6.604570793244331,0,2,2,2019,9,0,25,20,1,0,0,23.54347321039585,23.54347321039585,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,3,4,0,0,7,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5654,7018,12746,12745,-9,-9,1,1,53,0,4,0,1,1,-9,0,4,9.590621142483078,9.446031805638203,0,21,11,8.262680026248795,0,3,3,2019,8,0,60,60,1,0,0,25.33508758368282,25.33508758368282,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,3,4,0,0,7,9,5,1,738.5,2858705.474595285,1254359.904293246,739049.1093720576,71505.88775854172,6144.90593518134 -5655,7019,12747,12749,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.126598476744313,8.428126907548146,0,8,0,-31.24210158580327,0,2,2,2019,9,0,38,38,1,0,0,14.6037028108923,14.6037028108923,0,0,0,0,0,1,1,0,0,0,51.77,58.57,46.34,61.24,8.333333333333334,1,1,0,0,11,9,5,1,510.5,394613.3171553415,171283.8823936321,462791.0246050892,254620.0063670813,4658.797947980202 -5655,7019,12748,-9,12749,12747,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.6639418233542,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,510.5,394613.3171553415,171283.8823936321,462791.0246050892,254620.0063670813,4658.797947980202 -5655,7019,12749,12747,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.98014421691583,8.87875690386376,0,8,0,75.63081609034278,0,-9,-9,2019,11,0,29,30,1,0,0,24.93371967783064,24.93371967783064,0,0,0,0,0,1,1,0,1.665633981097692,0,46.34,61.24,51.77,58.57,6.666666666666667,1,1,0,0,11,9,5,1,510.5,394613.3171553415,171283.8823936321,462791.0246050892,254620.0063670813,4658.797947980202 -5655,7019,12750,-9,12749,12747,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.030012095233,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,510.5,394613.3171553415,171283.8823936321,462791.0246050892,254620.0063670813,4658.797947980202 -5656,7020,12751,12752,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,31,7,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,27.89,18.61,5,1,1,0,0,0,12,1,0,536,205664.7788810896,124553.898217482,0,0,1533.114216660117 -5656,7020,12752,12751,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,31,-7,0,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,27.89,18.61,33.32,18.46,1.666666666666667,1,1,0,0,0,12,1,0,536,205664.7788810896,124553.898217482,0,0,1533.114216660117 -5657,7021,12753,-9,12754,12755,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.32294229072,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,1,676.6666666666666,-69585.13441900664,-44430.34263419745,0,0,2972.407279645804 -5657,7021,12754,12755,-9,-9,1,0,39,1,1,0,2,2,-9,0,3,7.687272167965514,7.974167820903546,0,9,-2,161.883873067676,-9,2,2,2019,10,0,25,0,1,0,0,10.08884889593597,10.08884889593597,0,0,0,0,0,1,1,0,0,0,59.26,34.91,41.07,60.93,8.333333333333334,1,1,0,0,8,2,3,1,676.6666666666666,-69585.13441900664,-44430.34263419745,0,0,2972.407279645804 -5657,7021,12755,12754,-9,-9,1,1,41,1,1,0,2,2,-9,0,5,7.432930024576566,7.196422721128848,0,9,2,22.24058800053833,-9,2,2,2019,10,1,22,0,1,1,0,8.304961223943756,8.304961223943756,0,0,0,0,0,1,1,0,0,0,41.07,60.93,59.26,34.91,1.666666666666667,1,1,0,0,11,2,3,1,676.6666666666666,-69585.13441900664,-44430.34263419745,0,0,2972.407279645804 -5658,7022,12756,12757,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.165597139348658,4.933987546919564,49,2,-15.39287286662921,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.488803871635126,5.561612006719014,57.07,49.39,62.15,36.19,10,1,1,0,0,0,11,2,1,610,412133.4072765686,159979.581600313,113998.4631082232,0,1099.255023247353 -5658,7022,12757,12756,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,49,-2,-24.49201206305301,0,3,-9,2019,10,0,0,12,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.15,36.19,57.07,49.39,6.666666666666667,1,1,0,0,8,11,2,1,610,412133.4072765686,159979.581600313,113998.4631082232,0,1099.255023247353 -5659,7023,12758,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.380485156555228,9.637368759445936,0,0,0,-940.6675393894246,0,2,1,2019,8,0,37,38,1,0,0,41.99086618775718,41.99086618775718,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,374,565.2464406831714,-24095.25727946185,0,0,3975.511558127326 -5660,7024,12759,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.66313781209602,9.847984732712455,8.861197974642316,0,0,-1082.878732820589,0,2,1,2019,8,0,35,40,1,0,0,52.02878425248358,52.02878425248358,0,0,0,0,0,1,1,0,9.164692534091776,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,534,-125056.1512484397,65438.96848063317,0,0,9576.521215752762 -5661,7025,12760,-9,12762,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-895.7051835933102,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,1,0,625,105566.8313849113,0,0,0,1880.074584240553 -5661,7025,12761,-9,12762,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.407684474382,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,625,105566.8313849113,0,0,0,1880.074584240553 -5661,7025,12762,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1070.921528213305,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,10,1,1,1,0,0,1,1,0,625,105566.8313849113,0,0,0,1880.074584240553 -5661,7025,12763,-9,12762,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.27346642848,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,1,0,625,105566.8313849113,0,0,0,1880.074584240553 -5662,7026,12764,-9,12765,12766,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.7167856396298,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,723.5,641006.4293153032,401309.2743954718,200148.9901212983,145610.5815040471,4580.538543102299 -5662,7026,12765,12766,-9,-9,1,0,38,1,2,0,1,1,-9,0,2,8.210016171695749,7.711277085907964,0,10,-4,77.83904348704425,0,1,1,2019,15,5,32,42,1,5,0,11.37541082247849,11.37541082247849,0,0,0,0,0,1,1,0,0,0,44.07,35.53,35.5,49.79,8.333333333333334,2,3,0,0,11,2,5,1,723.5,641006.4293153032,401309.2743954718,200148.9901212983,145610.5815040471,4580.538543102299 -5662,7026,12766,12765,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.763608624292853,8.647669375487144,0,10,4,169.3481225590336,0,2,2,2019,14,3,37,45,1,3,0,22.95605754986264,22.95605754986264,0,0,0,0,0,1,1,0,0,0,35.5,49.79,44.07,35.53,8.333333333333334,2,3,0,0,13,2,5,1,723.5,641006.4293153032,401309.2743954718,200148.9901212983,145610.5815040471,4580.538543102299 -5662,7026,12767,-9,12765,12766,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.332784085513,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,5,1,723.5,641006.4293153032,401309.2743954718,200148.9901212983,145610.5815040471,4580.538543102299 -5663,7027,12768,12770,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,0,8.084648769757592,8.205238498377792,10,-2,15.43933837046101,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.832137268260718,8.18696251298687,35.55,60.77,45.81,58.99,6.666666666666667,1,1,0,0,9,13,3,1,553.3333333333334,189244.1229695894,32859.40796131705,111720.9561619622,65019.45351031656,2148.571379084724 -5663,7027,12769,-9,12770,12768,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-983.429272991834,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,3,1,553.3333333333334,189244.1229695894,32859.40796131705,111720.9561619622,65019.45351031656,2148.571379084724 -5663,7027,12770,12768,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,0,6.996053793511884,6.847623093950507,10,2,85.9384900866924,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.821960560525582,7.173492044701895,45.81,58.99,35.55,60.77,8.333333333333334,1,1,0,0,11,13,3,1,553.3333333333334,189244.1229695894,32859.40796131705,111720.9561619622,65019.45351031656,2148.571379084724 -5663,7028,12771,-9,12770,12768,1,1,22,0,1,1,1,0,0,0,5,0,0,0,0,0,-992.0368219443604,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,1867,-200125.7885692136,0,0,0,0 -5663,7029,12772,-9,12770,12768,1,0,20,0,1,0,2,2,1,0,4,6.920993747413126,7.104567187080781,0,0,0,-1012.053549306173,-9,1,2,2019,15,4,20,0,1,4,0,5.380651555936227,5.380651555936227,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,13,2,1,1329,91074.27441030018,45384.5487372331,0,0,666.6012152698563 -5664,7030,12773,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.953657594503075,7.948991197974064,0,0,0,-1059.20371910614,0,2,2,2019,8,0,37,38,1,0,0,10.96280577724341,10.96280577724341,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,12,1,4,1,903,277820.0727629767,-24378.76667372564,27843.40297821763,73282.4866762882,1433.670113980049 -5665,7031,12774,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.635417708148236,8.591793338485543,0,0,0,-1067.099649274339,0,2,2,2019,12,1,41,44,1,1,0,16.60726029255349,16.60726029255349,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,1,1,0,1,9,10,5,1,1155,968887.6107146647,697207.9126734908,0,0,2138.839507280023 -5666,7032,12775,-9,12778,-9,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1050.281041412513,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.19,54.02,-9,-9,10,1,1,0,0,0,11,1,0,1753.75,-23658.55141188237,0,0,0,995.340748096278 -5666,7032,12776,-9,12778,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.238162319643,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,1753.75,-23658.55141188237,0,0,0,995.340748096278 -5666,7032,12777,-9,12778,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.2814743899246,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,1753.75,-23658.55141188237,0,0,0,995.340748096278 -5666,7032,12778,-9,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,0,0,-944.5740166920953,0,2,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,23.88,55.15,-9,-9,5,1,1,0,0,0,11,1,0,1753.75,-23658.55141188237,0,0,0,995.340748096278 -5667,7033,12779,12780,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.202243360975319,7.178653412323959,44,1,-.7282018190723281,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.066766150825746,6.955735460646647,28.16,65.32000000000001,49.04,55.86,6.666666666666667,1,1,0,0,0,2,5,1,213,893548.2941663595,812009.1787615137,197614.7221024774,85966.48295276426,6801.98380340777 -5667,7033,12780,12779,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,9.107377694412905,9.217714010124785,44,-1,34.55736447763059,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,.1400249474646778,0,1,1,0,8.754664671457707,8.655862810004114,49.04,55.86,28.16,65.32000000000001,6.666666666666667,1,1,0,0,0,2,5,1,213,893548.2941663595,812009.1787615137,197614.7221024774,85966.48295276426,6801.98380340777 -5668,7034,12781,12782,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.698805998899603,6.232223675428552,56,-1,-23.85480732446865,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.670895933841913,6.57297950184322,56.18,53.85,42.51,25.12,8.333333333333334,1,1,0,0,0,8,2,1,500.5,492476.351957501,85121.68619059076,411813.0437875288,0,1850.302826178665 -5668,7034,12782,12781,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.594662485768562,6.261252758022616,10,1,25.87770229129733,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.218430435850762,5.843712212053107,42.51,25.12,56.18,53.85,3.333333333333333,1,1,0,0,5,8,2,1,500.5,492476.351957501,85121.68619059076,411813.0437875288,0,1850.302826178665 -5669,7035,12783,12784,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.550037810514896,8.530435878261395,0,3,-1,-26.56527128135109,0,-9,-9,2019,7,0,42,40,1,0,0,12.02920719433823,12.02920719433823,0,0,0,0,0,0,0,0,0,0,59.43,58.05,33.66,61.57,8.333333333333334,1,1,0,0,6,7,5,1,814.5,115309.4968381784,742.9868072098052,0,0,4813.514764876001 -5669,7035,12784,12783,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.893194171462568,9.076989790906381,0,3,1,-162.5881989004577,0,-9,-9,2019,15,3,41,38,1,3,0,20.14140691483514,20.14140691483514,0,0,0,0,0,0,0,0,0,0,33.66,61.57,59.43,58.05,3.333333333333333,1,1,0,0,7,7,5,1,814.5,115309.4968381784,742.9868072098052,0,0,4813.514764876001 -5670,7036,12785,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,5.838662615236189,5.361135844843224,0,0,-847.9111190349788,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.365352382332047,0,0,1,1,0,.2976846486822395,5.466193811198764,54.77,31.94,-9,-9,5,1,1,0,0,0,7,2,1,1608,139697.6572195008,47940.02854624287,0,0,1563.177861091212 -5671,7037,12786,12787,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.722789590575681,7.50802272054927,46,-5,2.927660296083877,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.307032820158594,7.706618548373841,53.59,49.64,57.33,53.46,8.333333333333334,1,1,0,0,4,7,4,1,1017.5,3554716.624166768,711513.8013374289,1831094.726562616,0,4175.064037979444 -5671,7037,12787,12786,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.126009488849247,8.141981766010797,46,5,2.828276107753858,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.068539637167227,7.937401508257535,57.33,53.46,53.59,49.64,8.333333333333334,1,1,0,0,2,7,4,1,1017.5,3554716.624166768,711513.8013374289,1831094.726562616,0,4175.064037979444 -5672,7038,12788,12789,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,7.045073178442109,7.068368996111288,0,2,-5,-70.65066444509743,0,2,2,2019,9,1,8,2,1,1,0,18.17620804771344,18.17620804771344,0,0,0,0,0,1,1,0,0,0,54.1,59.11,42.8,57.28,8.333333333333334,1,1,0,0,13,5,2,1,793,215131.9536197379,223750.1250400711,63498.88794637295,0,560.7243117730038 -5672,7038,12789,12788,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,0,0,0,2,5,-53.36448545850338,0,1,1,2019,22,10,0,40,3,10,0,0,0,0,0,0,0,0,1,1,0,1.576738540263804,0,42.8,57.28,54.1,59.11,8.333333333333334,1,1,0,1,13,5,2,1,793,215131.9536197379,223750.1250400711,63498.88794637295,0,560.7243117730038 -5672,7038,12790,-9,12788,12789,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.749667624809,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,1,793,215131.9536197379,223750.1250400711,63498.88794637295,0,560.7243117730038 -5672,7038,12791,-9,12788,12789,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.7976876909257,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,793,215131.9536197379,223750.1250400711,63498.88794637295,0,560.7243117730038 -5673,7039,12792,12793,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,0,0,3,3,0,-9,-9,-9,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,51.67,60.18,6.666666666666667,1,1,0,0,5,1,1,0,257.5,-45970.50830088037,-18129.65922563827,0,0,-375.2859279017318 -5673,7039,12793,12792,-9,-9,1,0,25,0,0,1,1,0,0,0,5,0,0,0,3,-3,0,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.501106351898926,0,51.67,60.18,46.5,58.26,8.333333333333334,1,1,0,0,0,1,1,0,257.5,-45970.50830088037,-18129.65922563827,0,0,-375.2859279017318 -5674,7040,12794,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.29383022317958,7.535483572341924,0,0,-1077.22960386372,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.548606339706972,7.330275024025527,68.90000000000001,30.28,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,342,790246.7111360583,174816.3411840066,623177.4373777332,62578.1025574485,898.9970138974753 -5675,7041,12795,-9,-9,-9,1,0,22,0,0,1,1,0,0,0,5,0,6.2118019787683,5.884846539141009,0,0,-967.0286758336965,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,5.860479492080358,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,773,-105854.4227894547,0,0,0,554.6813708297732 -5676,7042,12796,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.8877342611547,9.188145360169248,0,0,0,-935.2620152104323,-9,2,2,2019,11,0,50,0,1,0,0,23.83627119076543,23.83627119076543,0,0,0,0,0,0,0,0,4.625116792238321,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,682,-7368.792331299916,-2704.184763472117,0,0,2732.999341398828 -5677,7043,12797,12798,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,0,0,0,2,-1,50.56199005073385,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.32,59.33,18.12,55.12,8.333333333333334,1,1,0,0,10,9,5,1,349.5,450739.7095669901,32929.68072884294,646518.772899397,197619.3218598937,3166.470600477654 -5677,7043,12798,12797,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.786908312136287,8.854039678665186,0,2,1,22.73509476523807,0,2,2,2019,22,9,70,60,1,9,0,13.43707621277137,13.43707621277137,0,0,0,0,0,0,0,0,4.703274841562377,0,18.12,55.12,38.32,59.33,3.333333333333333,1,1,0,0,9,9,5,1,349.5,450739.7095669901,32929.68072884294,646518.772899397,197619.3218598937,3166.470600477654 -5678,7044,12799,-9,12800,12802,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-989.4643394947296,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,9,4,1,872.8,1350704.779544449,926938.5643680316,462173.2104673564,52085.58923797108,3706.751169538783 -5678,7044,12800,12802,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,7.98580793589231,7.947220138177154,0,8,-2,-118.9416673505687,0,2,3,2019,10,0,30,27,1,0,0,15.39912413612007,15.39912413612007,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.82,56.51,1.666666666666667,1,1,0,0,9,9,4,1,872.8,1350704.779544449,926938.5643680316,462173.2104673564,52085.58923797108,3706.751169538783 -5678,7044,12801,-9,12800,12802,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.6450032223349,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,872.8,1350704.779544449,926938.5643680316,462173.2104673564,52085.58923797108,3706.751169538783 -5678,7044,12802,12800,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,8.917316650719247,8.661647800630702,0,8,2,-9.935055843392144,0,3,3,2019,7,0,55,45,1,0,0,11.4927832057518,11.4927832057518,0,0,0,0,0,1,1,0,0,0,56.82,56.51,54.79,55.86,8.333333333333334,1,1,0,0,9,9,4,1,872.8,1350704.779544449,926938.5643680316,462173.2104673564,52085.58923797108,3706.751169538783 -5678,7044,12803,-9,12800,12802,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1082.321518357454,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,872.8,1350704.779544449,926938.5643680316,462173.2104673564,52085.58923797108,3706.751169538783 -5679,7045,12804,12805,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.628099306968167,4.519216655259773,56,-3,109.9005393470579,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.177416730503275,4.673386470097121,60.12,54.8,59.54,44.15,10,1,1,0,0,0,2,2,1,1167,24294.17192598971,0,0,0,1569.009136399058 -5679,7045,12805,12804,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,3,-87.57681801306045,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,44.15,60.12,54.8,8.333333333333334,1,1,0,0,0,2,2,1,1167,24294.17192598971,0,0,0,1569.009136399058 -5680,7046,12806,12807,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.90115712312934,6.025277572498621,48,6,-35.83114176330615,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.57222188679699,5.917629316319855,48.21,40,50,47,8.333333333333334,2,3,0,0,6,5,3,1,992.5,267359.1638613325,0,201731.6312247635,0,2011.323502762571 -5680,7046,12807,12806,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.677187636540753,7.554938038346293,0,48,-6,43.99267443614102,0,3,3,2019,11,0,30,35,1,2,0,7.860691720659528,7.860691720659528,0,0,0,0,0,1,1,0,0,0,50,47,48.21,40,7,2,3,0,0,1,5,3,1,992.5,267359.1638613325,0,201731.6312247635,0,2011.323502762571 -5681,7047,12808,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.015538195339225,5.536978052003421,0,0,-981.9184780074041,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.122160629389166,5.635971340937609,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,426,1954787.070267755,126223.8646255997,407128.7473978212,0,583.8869228332036 -5682,7048,12809,12810,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.709051384635591,8.429153879040102,0,9,3,-24.77960987722046,0,-9,-9,2019,11,0,35,36,1,0,0,13.3545207304706,13.3545207304706,0,0,0,0,0,1,1,0,0,0,45.73,57.57,47.44,56.39,8.333333333333334,1,1,0,0,11,2,5,1,886.5,168251.9864190313,81417.98325170547,70082.79388984558,42613.84537866715,4029.793477380045 -5682,7048,12810,12809,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.54649262616376,8.519439009256946,0,9,-3,138.6071198450551,0,-9,-9,2019,6,0,50,45,1,0,0,10.72599707948359,10.72599707948359,0,0,0,0,0,1,1,0,0,0,47.44,56.39,45.73,57.57,8.333333333333334,1,1,0,0,10,2,5,1,886.5,168251.9864190313,81417.98325170547,70082.79388984558,42613.84537866715,4029.793477380045 -5682,7048,12811,-9,12809,12810,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.396962734191,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,886.5,168251.9864190313,81417.98325170547,70082.79388984558,42613.84537866715,4029.793477380045 -5682,7048,12812,-9,12809,12810,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.0164827331131,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,5,1,886.5,168251.9864190313,81417.98325170547,70082.79388984558,42613.84537866715,4029.793477380045 -5683,7049,12813,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1056.129038951925,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.256558333090015,0,25.54,36.07,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,247,83868.8478901031,0,0,0,1609.986754737004 -5684,7050,12814,-9,12816,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.655079358455,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,949.6,-114572.5281512392,0,0,0,1748.528454342249 -5684,7050,12815,-9,12816,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.626707174314,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,949.6,-114572.5281512392,0,0,0,1748.528454342249 -5684,7050,12816,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1008.089581491968,0,3,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,1.16971927934758,0,1,1,0,0,0,26.31,52.74,-9,-9,5,1,1,0,0,0,7,1,0,949.6,-114572.5281512392,0,0,0,1748.528454342249 -5684,7050,12817,-9,12816,-9,1,1,17,0,3,0,2,2,-9,0,3,0,0,0,0,0,-988.0047967568568,1,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,949.6,-114572.5281512392,0,0,0,1748.528454342249 -5684,7050,12818,-9,12816,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1042.35951703311,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,949.6,-114572.5281512392,0,0,0,1748.528454342249 -5685,7051,12819,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.909963838472055,4.597448418955913,0,0,-989.25367945047,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.056086319918695,4.591352469140299,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1300,53596.97481937701,4310.50491493908,265251.5602630418,0,907.7479987210754 -5686,7052,12820,12821,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,8,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,26.95410884824955,20.08848750247623,252.0916011445624,0,1,1,0,0,0,54,46,52,46,8,1,1,0,0,0,13,1,1,577,34288.80299718832,0,0,0,1308.082281150547 -5686,7052,12821,12820,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,8,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,13,1,1,577,34288.80299718832,0,0,0,1308.082281150547 -5686,7053,12822,-9,12821,12820,1,0,47,0,0,0,2,2,-9,0,3,8.011940027815481,8.261535905364234,0,0,0,-1018.031354681353,0,3,3,2019,19,7,36,35,1,7,0,12.58348694046956,12.58348694046956,0,0,0,0,0,1,1,0,0,0,42.5,49.54,-9,-9,5,1,1,0,0,9,13,4,1,197,91527.79528952825,29075.95572709317,176970.4663282568,66409.02154106525,1531.205031882326 -5686,7054,12823,-9,12822,-9,1,0,23,0,0,0,1,1,-9,0,5,8.386556151650415,8.276920192179412,0,0,0,-1030.393103807093,0,2,-9,2019,8,0,37,36,1,0,1,10.13091383895444,10.13091383895444,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,419,-195684.535943309,68827.02344337452,0,0,138.7807108690522 -5686,7055,12824,-9,12822,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-975.9206642527306,-9,2,-9,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,45.75,62.87,-9,-9,10,1,1,0,0,0,13,1,1,1004,5433.163415786698,0,0,0,0 -5687,7056,12825,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.165319762321485,7.103583768927596,0,0,-1047.655476274958,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.964710583295402,44.7,25.76,-9,-9,5,1,1,0,0,0,4,2,1,667,448237.2658527375,244832.4272463681,86573.75084945947,0,1709.157178366141 -5688,7057,12826,-9,12827,12828,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.5591180993879,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,1213,272547.1103082253,248785.4817857372,125704.8915748433,148114.9780779771,2767.763366908327 -5688,7057,12827,12828,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,6.904029527431801,6.664752870041984,0,5,-2,-34.60353273280591,0,2,-9,2019,7,0,14,14,1,0,0,9.566094342433482,9.566094342433482,0,0,0,0,2,1,1,0,0,0,59.62,41.3,51.98,54.53,8.333333333333334,1,1,0,0,10,11,4,1,1213,272547.1103082253,248785.4817857372,125704.8915748433,148114.9780779771,2767.763366908327 -5688,7057,12828,12827,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.54115272197474,8.384782000926904,0,5,2,26.25571081074592,0,-9,-9,2019,10,0,60,50,1,0,0,9.068100259810926,9.068100259810926,0,0,0,0,0,1,1,0,0,0,51.98,54.53,59.62,41.3,10,1,1,0,0,4,11,4,1,1213,272547.1103082253,248785.4817857372,125704.8915748433,148114.9780779771,2767.763366908327 -5689,7058,12829,-9,-9,12831,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.4640186779162,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,8,3,1,836,476031.1681385668,20167.76564839379,415250.4581445372,0,2168.541315560026 -5689,7058,12830,12831,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,7.305239623758936,7.08800577954485,0,14,1,-44.20799137437846,0,2,3,2019,11,0,40,40,1,0,0,3.896660481549016,3.896660481549016,0,0,0,0,0,1,1,0,0,0,36.38,45.54,49,50,6.666666666666667,2,3,0,0,3,8,3,1,836,476031.1681385668,20167.76564839379,415250.4581445372,0,2168.541315560026 -5689,7058,12831,12830,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.692163917275465,7.574594533850607,0,10,-1,79.80834787765521,0,-9,-9,2019,11,0,60,65,1,1,0,4.098810294167794,4.098810294167794,0,0,0,0,0,1,1,0,6.000252099491958,0,49,50,36.38,45.54,7,2,3,0,0,1,8,3,1,836,476031.1681385668,20167.76564839379,415250.4581445372,0,2168.541315560026 -5689,7058,12832,-9,12830,12831,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1155.77733608643,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,3,1,836,476031.1681385668,20167.76564839379,415250.4581445372,0,2168.541315560026 -5690,7059,12833,-9,-9,-9,1,1,63,0,1,0,1,1,-9,0,5,8.145327522478155,8.049962671953507,0,0,0,-1116.093650952137,0,2,3,2019,6,0,16,30,1,0,0,22.59950680618814,22.59950680618814,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,156,1120216.904723877,992278.9460018687,327109.6977203111,0,1393.790698393045 -5691,7060,12834,12835,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.52186893464023,6.068836253473783,48,-2,12.83628788773928,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.527299165451089,6.193091351660822,54.2,57.49,54.18,50.75,8.333333333333334,1,1,0,0,4,6,3,1,535.5,1059046.477286573,513459.2212468979,263488.7648508248,0,2446.623493809836 -5691,7060,12835,12834,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.817647476660752,7.89510899779871,48,2,-33.30469726249686,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.996210741022968,54.18,50.75,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,535.5,1059046.477286573,513459.2212468979,263488.7648508248,0,2446.623493809836 -5692,7061,12836,12837,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.579062734788894,7.440515865509816,0,7,-4,-126.4918973694134,0,-9,-9,2019,10,0,28,22,1,0,0,7.378110709169172,7.378110709169172,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,7,9,2,1,657.75,50829.1673291254,46529.65937248866,0,0,1098.012866176209 -5692,7061,12837,12836,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,5.753703921958139,6.017718820044425,0,7,4,-35.31971192621932,0,-9,-9,2019,9,0,50,50,1,0,0,.7993678222927469,.7993678222927469,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,9,2,1,657.75,50829.1673291254,46529.65937248866,0,0,1098.012866176209 -5692,7061,12838,-9,12836,12837,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.914495513178,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,657.75,50829.1673291254,46529.65937248866,0,0,1098.012866176209 -5692,7061,12839,-9,12836,12837,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.0660505335035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,657.75,50829.1673291254,46529.65937248866,0,0,1098.012866176209 -5693,7062,12840,12841,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.894436606147064,8.793418281806922,0,2,1,115.079174138219,0,-9,-9,2019,6,0,38,43,1,0,0,20.67607019041279,20.67607019041279,0,0,0,0,0,0,0,0,0,0,50.76,52.44,46.08,57.2,8.333333333333334,1,1,0,0,6,7,5,1,894.5,188142.1514118888,-344.9305957578963,0,0,5307.562480769791 -5693,7062,12841,12840,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.402647207388513,8.402758740277996,0,2,-1,-3.317449626900475,0,-9,-9,2019,6,0,40,42,1,0,0,12.90892893706696,12.90892893706696,0,0,0,0,0,0,0,0,8.358077031905895,0,46.08,57.2,50.76,52.44,10,1,1,0,0,5,7,5,1,894.5,188142.1514118888,-344.9305957578963,0,0,5307.562480769791 -5694,7063,12842,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.748655346634365,7.448088233534483,0,0,-929.9583418815179,0,2,2,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.49275225936772,46.31,34.1,-9,-9,5,1,1,0,0,0,8,3,1,291,1225210.915981848,3150.218390507885,407865.4780271924,0,1849.730934024848 -5695,7064,12843,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.398531800431066,8.604382877226248,0,0,0,-974.8467051913902,-9,1,1,2019,21,9,47,0,1,9,0,13.07745198170035,13.07745198170035,0,0,0,0,2,0,0,0,0,0,37.92,53.03,-9,-9,1.666666666666667,1,1,0,0,12,5,5,1,202,497268.8368057795,273095.9246914148,0,0,2424.176581645117 -5696,7065,12844,12845,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.789918329819582,6.996504921005841,6,-4,107.6533223064335,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.457888375346069,6.639455211930816,54.61,51.04,41.17,51.44,8.333333333333334,1,1,0,0,6,1,2,1,853.5,715984.891906747,217887.4813712069,161576.0256313577,0,1952.568030471619 -5696,7065,12845,12844,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,4,53.31736052155905,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.17,51.44,54.61,51.04,8.333333333333334,1,1,0,0,0,1,2,1,853.5,715984.891906747,217887.4813712069,161576.0256313577,0,1952.568030471619 -5697,7066,12846,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.563150850553688,8.424766658208457,0,0,0,-962.817575649176,0,3,1,2019,8,3,36,36,1,3,0,14.7070196963551,14.7070196963551,0,0,0,0,0,1,1,0,0,0,45.73,47.04,-9,-9,8.333333333333334,3,4,0,1,8,8,4,1,721,-6547.448461583954,18652.60771946986,0,0,1654.448983885042 -5697,7067,12847,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,0,0,0,0,0,-884.3435449845352,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,3,4,0,1,0,8,1,1,1167,344047.0164264424,0,0,0,-308.1414823707091 -5698,7068,12848,12849,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,0,0,23,3,-3.493142985340647,0,3,3,2019,22,9,0,48,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,46.46,45.52,53.46,3.333333333333333,1,1,1,1,10,5,2,1,602.3333333333334,469890.0053203367,136618.0624047487,333297.0209600193,0,745.8028689382835 -5698,7068,12849,12848,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.035575970782783,6.925094109935077,0,23,-3,-6.598709605976437,0,1,1,2019,13,2,20,19,1,2,0,7.944575842766423,7.944575842766423,0,0,0,0,0,1,1,0,4.476400883329052,0,45.52,53.46,52.48,46.46,6.666666666666667,1,1,0,1,8,5,2,1,602.3333333333334,469890.0053203367,136618.0624047487,333297.0209600193,0,745.8028689382835 -5698,7068,12850,-9,12849,12848,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-932.2356518712941,-9,1,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.2,65.78,-9,-9,5,1,1,0,0,0,5,2,1,602.3333333333334,469890.0053203367,136618.0624047487,333297.0209600193,0,745.8028689382835 -5699,7069,12851,-9,12852,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.061028575663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1198,99632.24607736684,10446.78965851824,120340.812535387,52882.24682619142,2222.564287709196 -5699,7069,12852,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,8.415123721346573,8.552944320149381,0,0,0,-904.0177994843225,0,-9,-9,2019,9,0,46,46,1,0,0,11.5915818435811,11.5915818435811,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1198,99632.24607736684,10446.78965851824,120340.812535387,52882.24682619142,2222.564287709196 -5700,7070,12853,12854,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.373599488938201,7.64785203903025,0,6,-3,9.278053594949736,0,2,2,2019,12,2,26,23,1,2,0,10.55213745726642,10.55213745726642,0,0,0,0,7,1,1,0,0,0,49.12,57.28,53,54,8.333333333333334,1,1,0,0,9,9,5,1,1049.5,793814.9419485189,-31022.29833478679,1175309.13342599,281051.6834926378,4678.019216154341 -5700,7070,12854,12853,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.116043772415322,9.357802673438465,0,6,3,58.06145360585349,0,3,2,2019,9,0,45,50,1,1,0,26.62292829766825,26.62292829766825,0,0,0,0,0,1,1,0,0,0,53,54,49.12,57.28,8,1,1,0,0,1,9,5,1,1049.5,793814.9419485189,-31022.29833478679,1175309.13342599,281051.6834926378,4678.019216154341 -5700,7071,12855,-9,12853,12854,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1101.091564133564,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,289,32944.81892629086,0,0,0,0 -5701,7072,12856,12858,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,7.998312076189186,8.218216710991205,0,24,-3,-60.85809307830846,0,-9,-9,2019,12,0,40,40,1,0,0,8.096518750024892,8.096518750024892,0,0,0,0,0,1,1,0,0,0,56.09,28.15,57.24,36.49,8.333333333333334,1,1,0,1,8,4,3,0,839.6666666666666,113378.0262303809,-20977.24184268274,0,0,2389.116302083265 -5701,7072,12857,-9,12858,12856,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1073.120120881689,-9,3,3,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,839.6666666666666,113378.0262303809,-20977.24184268274,0,0,2389.116302083265 -5701,7072,12858,12856,-9,-9,1,0,55,0,1,0,3,3,-9,0,2,7.481569812655114,7.497790412597348,0,24,3,-15.90681134072875,0,-9,-9,2019,7,0,27,23,1,0,0,8.717256009242407,8.717256009242407,0,0,0,0,0,1,1,0,0,0,57.24,36.49,56.09,28.15,5,1,1,0,1,8,4,3,0,839.6666666666666,113378.0262303809,-20977.24184268274,0,0,2389.116302083265 -5701,7073,12859,-9,12858,12856,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-930.2806197864345,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,4,1,0,364,-2453.227503802615,0,0,0,297.6091388442545 -5702,7074,12860,-9,12862,12861,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.252008856256,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1674.333333333333,141981.9797252848,12040.66141758921,0,0,2515.703231642867 -5702,7074,12861,12862,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,7.498936537567323,7.883498477618372,0,1,3,-60.26661241092351,0,2,-9,2019,7,1,44,44,1,1,0,6.950114296989673,6.950114296989673,0,0,0,0,0,1,1,0,0,0,57.29,35.37,47,58,8.333333333333334,1,1,0,0,6,6,4,0,1674.333333333333,141981.9797252848,12040.66141758921,0,0,2515.703231642867 -5702,7074,12862,12861,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.815546268700363,7.987803967441186,0,1,-3,-26.67323423084124,-9,-9,-9,2019,11,0,21,0,1,2,0,16.77609265694506,16.77609265694506,0,0,0,0,0,1,1,0,1.634385855105932,0,47,58,57.29,35.37,7,1,1,0,0,1,6,4,0,1674.333333333333,141981.9797252848,12040.66141758921,0,0,2515.703231642867 -5703,7075,12863,12864,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.4189698388983,6.243264431607951,41,-2,-2.035468523724489,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.052452052975521,48.45,57.49,45.18,49.24,8.333333333333334,1,1,0,0,4,4,3,1,442,1092062.144712847,517602.210438049,226075.8951180477,0,2457.39248536859 -5703,7075,12864,12863,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.07881135934597,7.512129948383054,41,2,-185.6527873102202,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,7.647463254976588,8.012463412804596,45.18,49.24,48.45,57.49,5,1,1,0,0,6,4,3,1,442,1092062.144712847,517602.210438049,226075.8951180477,0,2457.39248536859 -5704,7076,12865,12867,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.183338273125178,9.247219183538775,0,17,4,42.63062237625486,0,3,2,2019,5,0,35,38,1,0,0,40.29522635351515,40.29522635351515,0,0,0,0,0,1,1,0,4.232389826370874,0,40.06,58.7,24.6,64.69,8.333333333333334,2,3,0,0,8,8,5,1,1013,1002474.343003644,848392.1021078428,314322.4636557559,278003.8804960697,5541.043459062021 -5704,7076,12866,-9,12867,12865,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.286640806375,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,1013,1002474.343003644,848392.1021078428,314322.4636557559,278003.8804960697,5541.043459062021 -5704,7076,12867,12865,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.110919629385867,8.629990914712714,0,17,-4,97.89122598338558,0,2,1,2019,16,5,21,40,1,5,0,44.00024125319664,44.00024125319664,0,0,0,0,0,1,1,0,0,0,24.6,64.69,40.06,58.7,8.333333333333334,2,3,0,0,9,8,5,1,1013,1002474.343003644,848392.1021078428,314322.4636557559,278003.8804960697,5541.043459062021 -5705,7077,12868,12869,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.876744427386349,8.148436708408223,10,1,122.989297270496,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.843183745709631,54.37,54.8,55.51,30.31,6.666666666666667,1,1,0,0,7,9,3,1,378,1506579.456997745,869999.9701681973,722902.0547767585,0,2130.999510866105 -5705,7077,12869,12868,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.441218510443365,5.821360540236567,48,-1,-14.63922886741253,0,2,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.882956829780409,6.186598111013322,55.51,30.31,54.37,54.8,5,1,1,0,0,0,9,3,1,378,1506579.456997745,869999.9701681973,722902.0547767585,0,2130.999510866105 -5706,7078,12870,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.083664946138694,7.207181606393396,0,0,-1000.681609029245,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.740465993312053,6.947826799648398,41.82,57.72,-9,-9,1.666666666666667,1,1,0,0,0,2,3,1,892,314440.0676680366,133899.881938145,280861.1440403016,0,1020.928579438677 -5707,7079,12871,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.059096655325,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.29302722008123,0,0,1,1,0,.4005210291059754,0,60.68,14.12,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1776,60536.26384874067,0,0,0,894.3711757498359 -5708,7080,12872,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,5.254651432522338,5.141502481623471,0,0,-991.5937188736849,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,0,114.9334489430212,0,0,1,1,0,0,4.930684969439254,18.01,25.88,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,606,-158737.0894827384,51444.65531814233,0,0,720.4059006865409 -5708,7081,12873,12874,12872,-9,1,1,59,0,0,0,3,3,-9,0,2,0,6.647360646961595,6.799608810370682,8,4,-11.24457086733191,0,3,3,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,71.5,1,1,0,0,6.706002101930099,37.78,53.15,52.72,43.13,1.666666666666667,1,1,1,1,7,10,3,1,1054.5,19670.4518173918,64278.17283984715,0,0,1563.175269805484 -5708,7081,12874,12873,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.806805827764711,7.640043923188847,0,8,-4,105.5847817476014,0,-9,-9,2019,9,0,40,45,1,0,0,5.867217318824816,5.867217318824816,0,0,0,0,2,1,1,0,0,0,52.72,43.13,37.78,53.15,8.333333333333334,1,1,0,0,7,10,3,1,1054.5,19670.4518173918,64278.17283984715,0,0,1563.175269805484 -5709,7082,12875,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,7.906458758845588,8.096168849272992,0,0,0,-939.667210886275,0,2,2,2019,9,0,42,54,1,0,0,7.73533575559818,7.73533575559818,0,0,0,0,0,0,0,0,0,0,52.38,47.57,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,411,-124383.0418522351,65057.27551375832,0,0,1249.000263536747 -5710,7083,12876,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.282822942359142,6.35783680469581,0,30,-5,-38.44928025314744,0,-9,-9,2019,35,12,15,15,1,12,0,3.604606822593543,3.604606822593543,0,0,0,0,0,1,1,0,0,0,17.88,57.04,57.16,56.15,1.666666666666667,1,1,0,0,7,10,2,0,612,-122557.2912943068,0,0,0,-49.66162860120124 -5710,7084,12877,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,4.305583507576777,4.592681320687123,0,30,5,61.52953534147872,0,2,2,2019,13,4,35,35,1,4,0,.3236434310256358,.3236434310256358,0,0,0,0,0,1,1,0,0,0,57.16,56.15,17.88,57.04,8.333333333333334,1,1,0,0,5,10,2,0,813,848106.9196218875,0,277353.6169978749,0,838.8645879797004 -5711,7085,12878,12879,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.366426443558433,8.231173349088795,0,10,-6,-109.6368172982928,0,2,3,2019,11,0,35,35,1,0,0,11.73094743166457,11.73094743166457,0,0,0,0,0,1,1,0,.5714223790260735,0,54.81,45.47,62.66,52.4,8.333333333333334,1,1,0,0,11,12,4,0,240.5,1563895.954681228,920956.6034569493,201242.7063241287,0,3063.767315465852 -5711,7085,12879,12878,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.331138294641993,7.231512260547035,10,6,-57.50298386005636,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.421527250550732,7.586169062796492,62.66,52.4,54.81,45.47,8.333333333333334,1,1,0,0,0,12,4,0,240.5,1563895.954681228,920956.6034569493,201242.7063241287,0,3063.767315465852 -5712,7086,12880,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1028.433492035773,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,23.79,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,273,-8606.887739762744,0,86352.51665763921,0,1130.722434401184 -5713,7087,12881,-9,12882,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.4256672364347,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,866,-75524.85445702719,0,0,0,2483.78844350196 -5713,7087,12882,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,7.454107589867187,7.633855556280197,0,0,0,-914.9471155138709,0,2,1,2019,6,0,7,20,1,0,0,33.44288524256107,33.44288524256107,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,1,8,2,0,866,-75524.85445702719,0,0,0,2483.78844350196 -5713,7087,12883,-9,12882,-9,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.723537104612,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,866,-75524.85445702719,0,0,0,2483.78844350196 -5713,7087,12884,-9,12882,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.393019327865,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,866,-75524.85445702719,0,0,0,2483.78844350196 -5714,7088,12885,12886,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,51,1,108.9157641747396,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.78,40.38,58.86,45.92,10,1,1,0,0,0,4,2,1,758.5,524719.665538443,127904.9114760904,172348.2490043719,0,2171.850780440645 -5714,7088,12886,12885,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.34946268282376,4.727289454947312,51,-1,-39.41107253835786,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.021361506015609,5.226793008026632,58.86,45.92,59.78,40.38,10,1,1,0,0,0,4,2,1,758.5,524719.665538443,127904.9114760904,172348.2490043719,0,2171.850780440645 -5715,7089,12887,12888,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.272748327805953,8.3259809586042,0,2,9,22.3501330912863,0,2,2,2019,11,0,37,13,1,0,0,12.43337084653597,12.43337084653597,0,0,0,0,0,0,0,0,0,0,41.47,58.08,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,1409.5,119696.4564319446,0,190545.8333820508,148818.1867316997,2837.375755842149 -5715,7089,12888,12887,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.391170399420687,8.110569555760827,0,2,0,8.753033080274955,-9,-9,-9,2019,7,0,38,0,1,0,0,10.78120863132144,10.78120863132144,0,0,0,0,0,0,0,0,0,0,54.96,53.17,41.47,58.08,6.666666666666667,4,2,0,0,9,2,5,1,1409.5,119696.4564319446,0,190545.8333820508,148818.1867316997,2837.375755842149 -5716,7090,12889,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.3969478971771,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,2.751008172741937,0,0,0,0,3.497746444420631,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,1,1,1471,-166131.5341723886,0,0,0,180.8121239165745 -5717,7091,12890,12891,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.42208572863939,7.800091951162525,0,40,-6,-4.772649721362867,0,3,-9,2019,8,0,40,48,1,0,0,6.092848793851216,6.092848793851216,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.02,58.57,8.333333333333334,1,1,0,0,8,4,3,1,152,170756.0222566201,35101.38659080175,125605.7846197026,0,1211.01557531121 -5717,7091,12891,12890,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.186009321048306,6.908869113872545,5.439152050925286,40,6,16.28708324446085,0,3,3,2019,10,0,40,36,1,0,0,3.371298800531204,3.371298800531204,0,0,0,0,0,0,0,0,5.276335962876633,5.257324659381233,46.02,58.57,57.16,56.15,6.666666666666667,1,1,0,0,8,4,3,1,152,170756.0222566201,35101.38659080175,125605.7846197026,0,1211.01557531121 -5717,7092,12892,-9,12890,12891,1,1,28,0,0,0,2,2,-9,0,4,8.236417870995952,7.910115419223771,0,0,0,-1037.739184755373,0,3,2,2019,8,1,35,43,1,1,1,11.97731379526839,11.97731379526839,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,5,1,1,0,0,5,4,4,1,235,5737.097233961773,40917.54799853807,0,0,1341.928317364455 -5718,7093,12893,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.261667569594136,6.614925182711975,0,0,-889.8761300919587,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,45.67882331053943,0,0,1,1,0,0,6.453884680686422,42.37,21.16,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,342,233442.1353767114,-7747.522755080088,44264.39782581861,0,1426.621386010937 -5719,7094,12894,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.467575667854369,8.23050280548105,0,0,0,-934.294140046797,0,2,3,2019,10,0,37,37,1,0,0,14.87391200942986,14.87391200942986,0,0,0,0,0,0,0,0,6.794818692230891,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,11,6,4,0,6666,392470.726716281,0,314690.0689308484,0,1748.028103318038 -5720,7095,12895,12896,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,69,0,-25.0317951756777,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,27.93,62.02,28.48,6.666666666666667,1,1,0,0,0,7,2,1,752,5171.852827512314,27163.42919680965,0,0,894.4002866032084 -5720,7095,12896,12895,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,5.665375345483886,5.706419564849803,69,0,-62.47724389844669,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,1.507392008835211,7.865447803923796,0,0,1,1,0,0,5.536933071192069,62.02,28.48,57.09,27.93,8.333333333333334,1,1,0,0,0,7,2,1,752,5171.852827512314,27163.42919680965,0,0,894.4002866032084 -5721,7096,12897,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,9.059490026666484,8.846312114424967,0,0,0,-1064.896265944092,0,3,3,2019,10,0,45,40,1,0,0,16.98768344807054,16.98768344807054,0,0,0,0,0,1,1,0,3.43229576596691,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,188,484033.1554159645,0,563460.176776133,120907.0340081885,3072.875437558489 -5722,7097,12898,12899,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.59059765269272,8.505164976877113,47,2,-89.95236825673024,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.329350648820901,8.894084571105127,53.13,40.75,55.09,55.87,6.666666666666667,1,1,0,0,0,6,4,0,866,2289965.295652892,1036634.703930358,568889.2434967461,0,4482.752004399314 -5722,7097,12899,12898,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.453495909583348,7.428073153919138,47,-2,-31.00847299489298,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.046833658129173,7.222075388910882,55.09,55.87,53.13,40.75,8.333333333333334,1,1,0,0,4,6,4,0,866,2289965.295652892,1036634.703930358,568889.2434967461,0,4482.752004399314 -5723,7098,12900,12901,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.068576718526451,8.148202205118002,0,6,-10,65.48558226652372,0,-9,-9,2019,6,0,40,40,1,0,0,8.924868025175115,8.924868025175115,0,0,0,0,0,0,0,0,1.989157641662589,0,49.04,55.86,55.85,46.53,1.666666666666667,1,1,0,0,7,12,4,0,244.5,66601.16390151242,169587.6856063699,154969.3724660696,90399.75835466702,2559.443869580177 -5723,7098,12901,12900,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.812773772699286,7.866402878768887,0,6,10,-117.8842270820624,0,-9,-9,2019,9,0,40,42,1,0,0,8.471898299730066,8.471898299730066,0,0,0,0,2,0,0,0,0,0,55.85,46.53,49.04,55.86,5,1,1,0,0,7,12,4,0,244.5,66601.16390151242,169587.6856063699,154969.3724660696,90399.75835466702,2559.443869580177 -5724,7099,12902,12903,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.843475844184319,9.072028747668352,0,14,-2,16.05763881342477,0,1,2,2019,9,0,41,46,1,0,0,16.65797900138498,16.65797900138498,0,0,0,0,0,0,0,0,1.798419025294419,0,41.73,48.45,53.39,44.47,8.333333333333334,1,1,0,0,8,1,5,1,603,974251.7411717349,677002.5440987023,226194.0576420692,147955.698900839,7455.535494195291 -5724,7099,12903,12902,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.558736219617218,8.431582392643262,0,15,2,-110.4842651163355,0,3,3,2019,10,0,37,38,1,0,0,12.94673733239924,12.94673733239924,0,0,0,0,0,0,0,0,8.545354133979256,0,53.39,44.47,41.73,48.45,8.333333333333334,1,1,0,0,8,1,5,1,603,974251.7411717349,677002.5440987023,226194.0576420692,147955.698900839,7455.535494195291 -5724,7100,12904,-9,12902,12903,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1048.268684890392,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,1,1,1,1262,-113.9791021874673,0,0,0,0 -5725,7101,12905,12907,-9,-9,1,1,41,1,1,0,2,2,-9,0,3,7.038612190629914,6.995636659015334,0,7,6,38.09877277271341,0,3,2,2019,16,3,15,21,1,3,0,7.577856752779608,7.577856752779608,0,0,0,0,0,1,1,0,0,0,49.84,34.22,57.06,57.76,6.666666666666667,1,1,0,0,10,9,2,0,509.3333333333333,77434.87985279883,74428.09496305724,0,0,1465.018952822664 -5725,7101,12906,-9,12907,12905,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.990731523748,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,509.3333333333333,77434.87985279883,74428.09496305724,0,0,1465.018952822664 -5725,7101,12907,12905,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,0,0,0,7,-6,24.17440315360491,0,2,3,2019,9,0,0,3,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.84,34.22,8.333333333333334,1,1,0,0,9,9,2,0,509.3333333333333,77434.87985279883,74428.09496305724,0,0,1465.018952822664 -5726,7102,12908,-9,12910,12909,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.439206663801,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,659.3333333333334,1626018.310367127,982354.4764981321,294899.4432813347,0,3462.645385159987 -5726,7102,12909,12910,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.634218112415532,8.560063722734592,0,6,2,-158.179823360028,0,2,3,2019,12,2,40,40,1,2,0,14.36657027180221,14.36657027180221,0,0,0,0,0,1,1,0,3.810308138215599,0,45.56,49.1,52,54.51,6.666666666666667,1,1,0,0,7,12,5,1,659.3333333333334,1626018.310367127,982354.4764981321,294899.4432813347,0,3462.645385159987 -5726,7102,12910,12909,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.950884237187329,8.124105453143855,0,6,-2,-123.0513572397782,0,2,2,2019,14,4,28,28,1,4,0,14.56013501469402,14.56013501469402,0,0,0,0,0,1,1,0,0,0,52,54.51,45.56,49.1,8.333333333333334,1,1,0,0,7,12,5,1,659.3333333333334,1626018.310367127,982354.4764981321,294899.4432813347,0,3462.645385159987 -5727,7103,12911,-9,12912,12914,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.30925277577,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,415.75,461605.7831812055,-66668.46258249794,393375.165916946,90751.85687479633,4850.380087422693 -5727,7103,12912,12914,-9,-9,1,0,56,0,2,0,3,3,-9,0,4,6.015690269514439,6.079336093874175,4.43065227747029,21,1,45.47170783376119,0,3,3,2019,7,0,4,5,1,0,0,10.39922192160646,10.39922192160646,0,0,0,0,0,1,1,0,4.319683573123181,4.268687955207752,57.16,56.15,54.77,55.87,10,3,4,0,0,6,9,4,1,415.75,461605.7831812055,-66668.46258249794,393375.165916946,90751.85687479633,4850.380087422693 -5727,7103,12913,-9,12912,12914,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.1335341531637,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,415.75,461605.7831812055,-66668.46258249794,393375.165916946,90751.85687479633,4850.380087422693 -5727,7103,12914,12912,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.047054704311691,9.110550996628174,0,22,-1,24.17188492920365,0,2,3,2019,9,0,40,40,1,0,0,25.30722402646797,25.30722402646797,0,0,0,0,0,1,1,0,7.086659740313432,0,54.77,55.87,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,415.75,461605.7831812055,-66668.46258249794,393375.165916946,90751.85687479633,4850.380087422693 -5728,7104,12915,12916,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.379056489039611,8.416247547043643,0,9,0,-62.39002463550617,0,3,3,2019,7,0,35,30,1,0,0,17.10764559551064,17.10764559551064,0,0,0,0,0,0,0,0,0,0,54.69,57.47,56.33,51.02,8.333333333333334,1,1,0,0,10,10,5,1,583.5,1367354.93068995,927805.3227441936,236447.7260242898,0,3358.845778915289 -5728,7104,12916,12915,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.329238388424148,8.380544508004469,0,9,0,15.51757437282865,0,2,2,2019,8,0,38,40,1,0,0,12.14932137490037,12.14932137490037,0,0,0,0,0,0,0,0,0,0,56.33,51.02,54.69,57.47,8.333333333333334,1,1,0,0,10,10,5,1,583.5,1367354.93068995,927805.3227441936,236447.7260242898,0,3358.845778915289 -5728,7105,12917,-9,12915,12916,1,0,21,0,0,0,2,2,-9,0,4,7.824300707894286,7.593165941618746,0,0,0,-970.6033236160027,0,3,2,2019,12,0,37,35,1,0,1,7.203514095595559,7.203514095595559,0,0,0,0,0,0,0,0,1.079510795705582,0,48.81,59.91,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,277,235342.6734045249,-133657.3600583901,0,0,1416.773238849589 -5728,7106,12918,-9,12915,12916,1,0,19,0,0,0,2,2,1,0,5,7.64807001828967,7.958856617436997,0,0,0,-991.1945325406962,-9,3,2,2019,1,0,36,0,1,0,1,7.556564245544286,7.556564245544286,0,0,0,0,0,0,0,0,0,0,57,59.12,-9,-9,10,1,1,0,0,1,10,3,1,523,-112164.6636242124,-120492.5770369201,0,0,1239.475158109268 -5729,7107,12919,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.194399664004441,8.060457392211346,0,0,0,-1156.317678355731,0,2,1,2019,6,0,45,60,1,0,0,7.881185422848542,7.881185422848542,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,8,11,4,1,504,102563.8105803255,20742.89107418126,0,0,1758.553611982745 -5730,7108,12920,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.041585822702256,8.185225972882547,0,0,0,-1066.667184118255,0,2,2,2019,24,9,38,38,1,9,0,6.374454547171365,6.374454547171365,0,0,0,0,0,0,0,0,0,0,38.91,57.83,-9,-9,6.666666666666667,1,1,0,0,6,5,4,0,286,4805.684403335972,0,0,0,1694.163637876338 -5730,7109,12921,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.062425367934491,6.825506457656734,0,0,0,-1003.421087909851,0,-9,-9,2019,15,4,26,34,1,4,0,5.938781571181453,5.938781571181453,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,0,1,1,0,0,1,5,2,0,145,-277547.1625158135,67446.33270135241,0,0,828.2541687364308 -5731,7110,12922,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.113836264393054,7.834193878852767,0,0,0,-941.3747399069795,0,-9,-9,2019,13,4,38,37,1,4,0,11.90902600316456,11.90902600316456,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,698,34702.7685118271,2035.956259611921,0,0,1769.562777933806 -5732,7111,12923,12924,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.575087826111531,8.585187698836346,0,31,1,49.30576676806792,0,2,2,2019,9,0,37,37,1,0,0,16.27729733382521,16.27729733382521,0,0,0,0,0,0,0,0,3.930885125452231,0,58.15,52.91,58.32,50.22,8.333333333333334,1,1,0,0,10,11,5,1,812,919830.8045594918,665551.114928148,368928.6716425418,210959.2413013124,5498.234488800796 -5732,7111,12924,12923,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.097411692120822,9.391034625724753,0,31,-1,67.34972147030859,0,2,2,2019,10,0,37,37,1,0,0,26.72996520813163,26.72996520813163,0,0,0,0,0,0,0,0,4.359813090925069,0,58.32,50.22,58.15,52.91,8.333333333333334,1,1,0,0,10,11,5,1,812,919830.8045594918,665551.114928148,368928.6716425418,210959.2413013124,5498.234488800796 -5733,7112,12925,12926,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.961534412167035,8.893776442652811,0,8,-6,-28.10345994354258,0,-9,-9,2019,7,0,50,60,1,0,0,12.3507789048185,12.3507789048185,0,0,0,0,0,0,0,0,0,0,51.73,58.82,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,1,954,3438562.523881226,614749.8640889702,1828048.691060974,446438.0752284884,8204.689872997767 -5733,7112,12926,12925,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.361348637772439,9.763251059032989,0,8,6,-45.10317842684466,0,3,2,2019,10,3,45,43,1,3,0,31.46913661704216,31.46913661704216,0,0,0,0,0,0,0,0,8.39270708511766,0,58.32,50.22,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,954,3438562.523881226,614749.8640889702,1828048.691060974,446438.0752284884,8204.689872997767 -5734,7113,12927,12928,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.985620923601925,9.24155805690569,0,33,-1,-92.3061482517364,0,3,3,2019,13,2,55,40,1,2,0,17.24831606221995,17.24831606221995,0,0,0,0,0,0,0,0,0,0,46.65,55.59,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,636.5,1642300.427403667,1178084.704669334,428593.3522812723,107425.3536946641,5749.216398405628 -5734,7113,12928,12927,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.657231513811078,8.554263601882349,4.957150592833558,32,1,-70.15431876429606,0,2,3,2019,6,0,42,46,1,0,0,21.46200739852761,21.46200739852761,0,0,0,0,0,0,0,0,5.432055779234691,5.033785571968362,57.06,57.76,46.65,55.59,8.333333333333334,1,1,0,0,9,9,5,1,636.5,1642300.427403667,1178084.704669334,428593.3522812723,107425.3536946641,5749.216398405628 -5735,7114,12929,-9,12930,-9,1,0,30,0,0,0,2,2,-9,0,4,8.50523548705152,8.671047066061249,0,0,0,-1041.714185278006,0,3,-9,2019,11,0,40,44,1,2,1,15.69240468913867,15.69240468913867,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,7,13,5,1,1204,103898.4806391531,55124.87300207643,74758.91963174776,40248.34036055577,1606.348298426649 -5735,7115,12930,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.844887815401354,7.725303810610212,0,0,0,-900.8250386430342,0,2,2,2019,11,0,35,35,1,2,0,7.757252508511685,7.757252508511685,0,0,0,0,0,0,0,0,0,0,48,48,-9,-9,7,1,1,0,1,10,13,3,1,301,-62699.32266100414,-63198.83944731138,13362.26055527305,102836.8185917173,936.7035231097107 -5735,7116,12931,-9,12930,-9,1,0,28,0,0,0,1,1,-9,0,4,8.37313276119364,8.43119971522399,0,0,0,-1146.80613121521,0,3,-9,2019,11,0,40,36,1,2,1,13.01554587761058,13.01554587761058,0,0,0,0,0,0,0,0,0,0,46,57,-9,-9,7,1,1,0,0,8,13,5,1,1071,30262.15878750065,35164.82647297615,0,0,1600.730459453982 -5736,7117,12932,12933,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.55476493254689,7.909407483339129,0,8,0,120.7422216460066,0,1,2,2019,6,0,30,0,1,0,0,7.895119884830166,7.895119884830166,0,0,0,0,0,0,0,0,1.053676987818282,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,0,328,147954.4635575825,-48161.82322247962,123765.2936997441,104252.1979596556,2307.768758239405 -5736,7117,12933,12932,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.389774569341181,8.102219764696969,0,8,0,-23.2164416125915,0,-9,-9,2019,8,0,24,23,1,0,0,13.90359482773707,13.90359482773707,0,0,0,0,0,0,0,0,2.994741145246333,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,0,328,147954.4635575825,-48161.82322247962,123765.2936997441,104252.1979596556,2307.768758239405 -5737,7118,12934,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.297251203180361,8.350166381328822,0,0,0,-937.0169430903326,0,2,2,2019,14,2,76,40,1,2,0,7.839836134102972,7.839836134102972,0,0,0,0,0,0,0,0,.9626430618458914,0,36.91,55.1,-9,-9,5,1,1,0,0,10,2,5,1,288,264173.4091387732,433097.8144760125,0,0,1317.068961871126 -5738,7119,12935,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.882414034593409,5.038144221158102,0,0,-813.1669934874087,0,2,2,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,4.967122381804113,5.006009698399862,24.44,36.68,-9,-9,1.666666666666667,1,1,0,1,2,10,2,1,1326,54894.71422455287,0,0,0,947.9090648752552 -5739,7120,12936,-9,12937,12938,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-995.3976201529748,-9,1,1,2019,21,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,43.06,57.2,-9,-9,6.666666666666667,4,2,0,0,0,8,5,1,819.3333333333334,1836114.326024636,728547.348997848,880278.2237979643,0,6502.77849952311 -5739,7120,12937,12938,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.989590590513751,9.199694613164999,0,32,-1,26.86006281672442,0,3,2,2019,10,1,50,22,1,1,0,25.0360973524556,25.0360973524556,0,0,0,0,0,0,0,0,0,0,43.69,39.94,47.49,55.02,8.333333333333334,2,3,0,0,12,8,5,1,819.3333333333334,1836114.326024636,728547.348997848,880278.2237979643,0,6502.77849952311 -5739,7120,12938,12937,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.956334481876137,9.025234468620415,0,32,1,-65.05697700208924,0,1,1,2019,10,1,43,40,1,1,0,27.10189183764522,27.10189183764522,0,0,0,0,0,0,0,0,0,0,47.49,55.02,43.69,39.94,8.333333333333334,1,1,0,0,12,8,5,1,819.3333333333334,1836114.326024636,728547.348997848,880278.2237979643,0,6502.77849952311 -5740,7121,12939,12940,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.810971959210859,9.230904032149342,0,1,2,83.60465561577605,-9,-9,-9,2019,10,0,42,0,1,0,0,19.82091855033665,19.82091855033665,0,0,0,0,0,0,0,0,3.642709647872688,0,48.77,60.16,48.18,61.8,8.333333333333334,1,1,0,0,6,6,5,0,1348,-61152.78660623333,-47941.14733823864,107547.2023108914,96124.5043548121,4077.215041143583 -5740,7121,12940,12939,-9,-9,1,0,27,0,0,0,1,1,1,0,5,8.323348416685551,8.09986536645234,0,1,-2,-42.08660119497515,-9,2,1,2019,12,0,58,0,1,0,0,7.99265305014476,7.99265305014476,0,0,0,0,0,0,0,0,0,0,48.18,61.8,48.77,60.16,8.333333333333334,1,1,0,0,5,6,5,0,1348,-61152.78660623333,-47941.14733823864,107547.2023108914,96124.5043548121,4077.215041143583 -5741,7122,12941,12942,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.415170985856008,6.334341757056591,7,7,-99.22654904401311,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.016333007465768,6.491296414173699,52,48,57.16,56.15,7,1,1,0,0,0,6,3,0,489.5,568893.6551258147,345176.5903702013,199284.4144226078,0,2325.17590218404 -5741,7122,12942,12941,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.160570945349626,7.908852346522328,0,30,-7,23.22271001115806,0,-9,-9,2019,5,0,32,34,1,0,0,11.46746191470324,11.46746191470324,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,9,6,3,0,489.5,568893.6551258147,345176.5903702013,199284.4144226078,0,2325.17590218404 -5742,7123,12943,12944,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,8.65622453837387,8.387834037276141,0,9,-4,122.7735296661044,0,-9,-9,2019,11,0,16,17,1,1,0,36.54132037921413,36.54132037921413,0,0,0,0,0,1,1,0,0,0,49,56,57.57,49.69,7,1,1,0,0,1,2,5,1,180,47452.3584668156,-50984.56832304587,179672.3019030508,135500.5238842847,4624.923866685264 -5742,7123,12944,12943,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.727279108933288,8.916934445704047,0,20,4,-116.1881930257184,0,3,2,2019,6,0,38,44,1,0,0,27.10888880158733,27.10888880158733,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49,56,6.666666666666667,1,1,0,0,11,2,5,1,180,47452.3584668156,-50984.56832304587,179672.3019030508,135500.5238842847,4624.923866685264 -5743,7124,12945,12946,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.904964748119442,7.895598763335822,0,3,-1,47.54356823238312,0,2,-9,2019,7,0,37,37,1,0,0,9.432807037061156,9.432807037061156,0,0,0,0,0,0,0,0,1.955979561337466,0,57.98,47.73,54.2,57.49,8.333333333333334,1,1,0,0,6,4,5,1,1276,129000.991573637,54298.649654874,117940.0532613593,113824.3154652342,2820.865995065576 -5743,7124,12946,12945,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.428567804891449,8.650247129242176,0,3,1,-49.64022453671822,0,-9,-9,2019,6,1,42,42,1,1,0,18.54952746199529,18.54952746199529,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.98,47.73,10,2,3,0,0,6,4,5,1,1276,129000.991573637,54298.649654874,117940.0532613593,113824.3154652342,2820.865995065576 -5744,7125,12947,12948,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.764141289131367,8.035404347242119,49,9,-22.84129310349503,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,8.404879375405786,7.681640476334087,66.59999999999999,34.24,51,46,10,1,1,0,0,10,7,3,1,399.5,1116210.804069471,726869.0419106353,443859.8260236245,0,3408.423938398339 -5744,7125,12948,12947,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,7.247539734566405,6.896302220399927,0,7,0,43.5488352838009,0,-9,-9,2019,11,0,36,54,1,1,0,4.39663379596375,4.39663379596375,0,0,0,0,0,1,1,0,1.248769904866499,0,51,46,66.59999999999999,34.24,7,1,1,0,0,1,7,3,1,399.5,1116210.804069471,726869.0419106353,443859.8260236245,0,3408.423938398339 -5745,7126,12949,12950,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.363396196363182,7.185286606275855,47,5,-54.69170698869701,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.809595657919591,7.277790644078665,47.15,56.66,53.72,41.27,8.333333333333334,1,1,0,0,0,5,3,1,777.5,980358.3366151871,231783.8626307331,518862.6681708049,0,2282.043946325067 -5745,7126,12950,12949,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.093746196009919,6.279410686304707,47,-5,80.56518195293178,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.378607628241824,6.415923554207992,53.72,41.27,47.15,56.66,8.333333333333334,1,1,0,0,5,5,3,1,777.5,980358.3366151871,231783.8626307331,518862.6681708049,0,2282.043946325067 -5746,7127,12951,12952,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.239411581355805,8.457866936082869,0,2,-2,118.6553881416817,0,-9,-9,2019,20,8,77,38,1,8,0,5.803852018157194,5.803852018157194,0,0,0,0,0,0,0,0,0,0,37.36,60.94,52.4,52.91,5,1,1,0,0,1,5,5,1,127.5,23658.64229891184,1282.793197687934,389841.5733014188,214375.8618782675,3106.348094464925 -5746,7127,12952,12951,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.692405992567814,8.474064866202866,0,2,2,-8.822970301640288,0,2,2,2019,15,3,58,55,1,3,0,11.11470743236697,11.11470743236697,0,0,0,0,0,0,0,0,0,0,52.4,52.91,37.36,60.94,6.666666666666667,1,1,0,0,11,5,5,1,127.5,23658.64229891184,1282.793197687934,389841.5733014188,214375.8618782675,3106.348094464925 -5747,7128,12953,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.91844907093379,7.672695198067238,0,0,-950.888208249185,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.459569545045023,8.194078132607242,43.7,37.11,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,292,805850.0785184266,502349.4385036148,87882.47046859423,0,3588.841204298504 -5748,7129,12954,12955,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.564272338393929,8.608278609126142,0,6,1,-46.15820512689104,0,2,2,2019,6,0,45,38,1,0,0,14.66835803710049,14.66835803710049,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.8,56.68,8.333333333333334,1,1,0,0,5,7,5,1,576.5,104421.0511315224,103936.1075539444,205920.0844973197,174592.5095377094,3960.293758640205 -5748,7129,12955,12954,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.442245706483217,8.569136274961917,0,6,-1,-114.6045533042525,0,-9,-9,2019,6,0,38,51,1,0,0,14.02385032585837,14.02385032585837,0,0,0,0,0,0,0,0,2.918002161263568,0,49.8,56.68,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,576.5,104421.0511315224,103936.1075539444,205920.0844973197,174592.5095377094,3960.293758640205 -5749,7130,12956,12957,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,34,2,-31.95243073390534,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.331706607026087,0,57.06,57.76,57.16,56.15,10,1,1,0,0,0,7,3,1,1020.5,518809.499653424,326241.0054712421,223983.4684258339,0,2489.832069473357 -5749,7130,12957,12956,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.846125592706693,7.467229240955473,30,-2,-103.4841055403459,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.00479433803685,7.689043310097707,57.16,56.15,57.06,57.76,10,1,1,0,0,0,7,3,1,1020.5,518809.499653424,326241.0054712421,223983.4684258339,0,2489.832069473357 -5750,7131,12958,12959,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,8.983856819628539,9.241939688562814,0,9,-3,-105.6870890121328,0,-9,-9,2019,8,0,45,40,1,0,0,23.8301672902461,23.8301672902461,0,0,0,0,0,1,1,0,0,0,60.74,43.75,50,57,8.333333333333334,1,1,0,0,5,4,5,1,1003.5,240922.9799219946,-28037.60096676197,382050.6619362868,152200.7930057396,4644.188628209921 -5750,7131,12959,12958,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.978832704246738,7.880523664724127,0,9,3,13.44293100870549,0,-9,-9,2019,10,0,35,35,1,1,0,8.86786408669245,8.86786408669245,0,0,0,0,0,1,1,0,0,0,50,57,60.74,43.75,7,1,1,0,0,11,4,5,1,1003.5,240922.9799219946,-28037.60096676197,382050.6619362868,152200.7930057396,4644.188628209921 -5750,7131,12960,-9,12958,12959,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.0289762562776,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,1003.5,240922.9799219946,-28037.60096676197,382050.6619362868,152200.7930057396,4644.188628209921 -5750,7131,12961,-9,12958,12959,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.008197994981,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,1003.5,240922.9799219946,-28037.60096676197,382050.6619362868,152200.7930057396,4644.188628209921 -5751,7132,12962,12963,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.216993557098003,6.126988088816939,62,-1,-13.95794309353214,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,30.67564982740694,0,0,1,1,0,3.890363747967315,6.313549915738907,60.29,52.11,62.44,23.84,10,1,1,0,0,0,6,2,1,1686,399178.6359614383,214049.1142063108,171172.4723021645,0,1216.240273301369 -5751,7132,12963,12962,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,1,-16.97978689604681,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.947104629562858,0,62.44,23.84,60.29,52.11,10,1,1,0,0,0,6,2,1,1686,399178.6359614383,214049.1142063108,171172.4723021645,0,1216.240273301369 -5752,7133,12964,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.638318992204347,7.811317089014036,0,0,-994.7905710003171,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.752411255205637,7.727552594456554,60.87,42.1,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,236,617997.7388463686,59038.56766322038,310579.3170710364,0,2183.562010707265 -5753,7134,12965,-9,12966,-9,1,1,55,0,0,0,2,2,-9,0,5,7.814415822648656,7.961040013947073,0,0,0,-1031.36613885842,0,3,2,2019,7,0,37,37,1,0,0,7.957471473691809,7.957471473691809,0,0,0,0,0,1,1,0,1.618593104142681,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,168,504744.1657757235,25912.2279598975,0,0,1468.866383614376 -5753,7135,12966,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.35304993095,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,4.837578751873205,0,0,1,1,0,1.324368675373728,0,55.31,42.07,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,558,-159763.6759444572,0,0,0,1249.980332385456 -5754,7136,12967,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.507185647594874,8.20913149117354,0,0,0,-994.6176995148987,0,2,2,2019,7,0,46,46,1,0,0,10.40312275405409,10.40312275405409,0,0,0,0,0,0,0,0,0,0,61.1,41.19,-9,-9,10,1,1,0,0,8,12,4,0,1569,280299.7281908687,-28853.9782960019,208789.7554878389,0,1576.572701482444 -5754,7137,12968,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.202228706099765,8.118064712891659,0,0,0,-939.2509086009857,0,2,2,2019,11,0,55,70,1,0,0,5.969860160104846,5.969860160104846,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,9,12,4,0,118,161155.0684036753,195365.7135823746,83236.46644036764,-1478.650065280935,1207.642623381399 -5755,7138,12969,12970,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.092727686630774,6.144331726895827,2,-1,-11.71778848643889,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.097723428975344,54.85,55.89,46.41,41.82,10,1,1,0,0,0,6,2,1,473.5,536497.6093537188,442389.6334007545,232537.2957568112,0,2080.809056089935 -5755,7138,12970,12969,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.008604215794315,6.855266682325618,2,1,-44.21321234783485,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.993911109948193,6.959610084866937,46.41,41.82,54.85,55.89,1.666666666666667,1,1,0,0,2,6,2,1,473.5,536497.6093537188,442389.6334007545,232537.2957568112,0,2080.809056089935 -5756,7139,12971,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.383565552392998,8.29560745683945,0,0,0,-876.1368129883832,0,-9,-9,2019,6,1,39,38,1,1,0,10.33976233177522,10.33976233177522,0,0,0,0,0,0,0,0,2.673356627561938,0,47.38,57.75,-9,-9,8.333333333333334,4,2,0,0,4,6,4,0,369,64411.37579711121,-106308.5697784314,0,0,1932.739574705595 -5757,7140,12972,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.500129330721467,7.30482998945448,0,0,0,-876.2079593161542,0,2,-9,2019,31,12,80,40,1,12,0,2.66357105542763,2.66357105542763,0,0,0,0,0,1,1,0,0,0,19.7,57.37,-9,-9,3.333333333333333,1,1,0,0,11,12,3,0,196,141976.5535935937,49582.13625484308,0,0,746.192354979256 -5758,7141,12973,12974,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,10,0,-76.23703324271143,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,4.021180817551148,0,57.16,56.15,44.57,52.34,8.333333333333334,1,1,0,0,7,9,3,1,616,1177902.617102582,861972.4656770965,284872.8917833922,0,1359.013745421509 -5758,7141,12974,12973,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.032945971649427,8.198775494801829,10,0,-42.07439249796223,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.825100765912996,8.34395976272884,44.57,52.34,57.16,56.15,1.666666666666667,1,1,0,0,11,9,3,1,616,1177902.617102582,861972.4656770965,284872.8917833922,0,1359.013745421509 -5759,7142,12975,12976,-9,-9,1,0,30,2,2,0,1,1,-9,1,4,0,0,0,3,-13,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,56,34.58,17.02,7,1,1,0,0,0,2,1,0,961.25,182074.353760303,-14649.45191090848,80617.2664252867,39715.12896075194,2105.750155310162 -5759,7142,12976,12975,-9,-9,1,1,43,2,2,0,2,2,-9,1,1,0,0,0,3,13,0,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.58,17.02,48,56,8.333333333333334,1,1,0,0,0,2,1,0,961.25,182074.353760303,-14649.45191090848,80617.2664252867,39715.12896075194,2105.750155310162 -5759,7142,12977,-9,12975,12976,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-898.0646184169067,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,961.25,182074.353760303,-14649.45191090848,80617.2664252867,39715.12896075194,2105.750155310162 -5759,7142,12978,-9,12975,12976,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-922.592676204534,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,961.25,182074.353760303,-14649.45191090848,80617.2664252867,39715.12896075194,2105.750155310162 -5760,7143,12979,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.375360892681554,7.413976249949792,0,0,-983.886165335234,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.575159754622883,59.74,48.04,-9,-9,10,1,1,0,0,0,13,3,1,136,363145.0090188553,223704.8158266758,168618.2925327971,0,1857.878626572601 -5761,7144,12980,-9,12983,12982,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.47884772885,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,658.25,68173.19528069718,18844.93204782116,0,0,1814.766260601748 -5761,7144,12981,-9,12983,12982,1,1,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1007.011536103294,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,5,1,1,1,0,0,1,3,1,658.25,68173.19528069718,18844.93204782116,0,0,1814.766260601748 -5761,7144,12982,12983,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,7.555044637439923,7.458432794596203,0,2,1,25.72284787241444,0,2,2,2019,11,0,27,0,1,0,0,9.055579078285733,9.055579078285733,0,0,0,0,14.5,1,1,0,0,0,49.28,52.09,35.04,38.31,5,1,1,0,0,1,1,3,1,658.25,68173.19528069718,18844.93204782116,0,0,1814.766260601748 -5761,7144,12983,12982,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.544017420359793,7.585067514259155,0,2,-1,-9.695191244063416,0,2,2,2019,15,2,40,40,1,2,0,5.440681738439098,5.440681738439098,0,0,0,0,2,1,1,0,0,0,35.04,38.31,49.28,52.09,5,1,1,0,1,7,1,3,1,658.25,68173.19528069718,18844.93204782116,0,0,1814.766260601748 -5761,7145,12984,-9,12983,12982,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1068.296262477662,-9,2,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,469,33837.23571176705,0,0,0,0 -5762,7146,12985,12986,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,4.916189006670332,4.91532447361478,28,3,81.55914720222741,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.908033110497699,56.15,41.66,52.6,52.88,8.333333333333334,1,1,0,0,0,11,2,0,1583,326828.8846965441,107149.3619671478,100868.0762180275,0,1725.114790090935 -5762,7146,12986,12985,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,31,-3,120.7726083685616,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,56.15,41.66,10,1,1,0,0,0,11,2,0,1583,326828.8846965441,107149.3619671478,100868.0762180275,0,1725.114790090935 -5763,7147,12987,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.163078647608,0,3,2,2019,10,4,0,37,3,4,0,0,0,0,0,0,0,0,0,0,0,4.081821911754997,0,48.7,56.22,-9,-9,6.666666666666667,1,1,1,0,9,12,1,1,272,133708.5075790148,0,0,0,-855.5923374260244 -5764,7148,12988,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,8.193717463334318,8.564235485725847,6.9628142562281,0,0,-886.6669056029315,0,3,3,2019,13,4,37,37,1,4,0,10.89154552610733,10.89154552610733,0,0,0,0,0,1,1,0,0,7.019090854977899,47.47,27.18,-9,-9,3.333333333333333,1,1,0,0,8,9,4,1,1637,21257.56970071924,-116355.6234907379,0,0,2691.035869140451 -5765,7149,12989,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.866862350142566,8.216081144445166,0,0,-1048.782084185272,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.64896030682969,8.362235783234608,54,41.17,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,1243,607395.3605988368,355062.9380837632,229121.4213030953,0,2538.027515089195 -5766,7150,12990,12991,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.499040298972078,8.597725453305651,0,10,-2,-107.0382617207021,0,2,3,2019,6,0,40,42,1,0,0,12.77291914310237,12.77291914310237,0,0,0,0,2,1,1,0,0,0,51.49,57.57,38.82,39.27,8.333333333333334,1,1,0,0,11,9,4,0,1034.5,-45231.10871466786,17801.81631955968,0,0,1699.943654063224 -5766,7150,12991,12990,-9,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,10,2,-70.37130757456578,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,39.27,51.49,57.57,3.333333333333333,1,1,0,0,8,9,4,0,1034.5,-45231.10871466786,17801.81631955968,0,0,1699.943654063224 -5767,7151,12992,12993,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.799819748706783,3.886518829068819,54,2,-10.24710688425073,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.748495063934292,3.453515304784127,48,37,64.09,36.45,10,1,1,0,0,0,2,3,1,504,482027.3723894849,276709.7881497183,14630.73869136854,31329.81074780343,1972.719719946429 -5767,7151,12993,12992,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.557670919125505,7.608995185941992,0,54,-2,29.08660009471747,0,3,3,2019,7,0,30,30,1,0,0,6.78962483931798,6.78962483931798,0,0,0,0,0,1,1,0,5.723074733919487,0,64.09,36.45,48,37,8.333333333333334,1,1,0,0,11,2,3,1,504,482027.3723894849,276709.7881497183,14630.73869136854,31329.81074780343,1972.719719946429 -5768,7152,12994,12995,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.116852652541588,8.324326107304378,0,9,-3,-20.55044018724191,-9,-9,-9,2019,7,0,20,0,1,0,0,20.46649249542561,20.46649249542561,0,0,0,0,0,0,0,0,9.369466831918615,0,61.01,53.18,49.44,56.93,10,1,1,0,0,10,8,3,1,1571.5,447959.7924878998,118514.3679298225,419702.9893183597,0,14496.75465856018 -5768,7152,12995,12994,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,29,3,20.81887944955055,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10.08154120079966,0,49.44,56.93,61.01,53.18,10,1,1,0,0,0,8,3,1,1571.5,447959.7924878998,118514.3679298225,419702.9893183597,0,14496.75465856018 -5768,7153,12996,-9,12995,12994,1,1,23,0,0,0,1,1,-9,0,3,8.153091247101106,8.274568320698222,0,0,0,-1003.237296201312,0,2,2,2019,10,0,40,0,1,0,1,9.045477250836294,9.045477250836294,0,0,0,0,0,0,0,0,1.418707829510749,0,56.49,42.93,-9,-9,6.666666666666667,1,1,0,0,2,8,4,1,369,163123.5020287652,-33204.62178834531,0,0,1994.542476485123 -5768,7154,12997,-9,12995,12994,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-949.9958839682158,-9,2,2,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,3.333333333333333,1,1,1,0,0,8,1,1,1076,-9413.911814163523,0,0,0,0 -5769,7155,12998,13000,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.481788417777905,7.415531676402239,4.869645506452847,2,-2,-11.49807146394337,0,2,2,2019,8,0,32,25,1,0,0,6.888482888833444,6.888482888833444,0,0,0,0,0,1,1,0,4.160591925505377,0,43.79,58.33,54,52.35,5,1,1,0,0,3,5,3,0,367.6666666666667,-27871.44451563315,0,0,0,2413.08191346339 -5769,7155,12999,-9,12998,13000,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.847105367724,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.3311759024712799,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,367.6666666666667,-27871.44451563315,0,0,0,2413.08191346339 -5769,7155,13000,12998,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,7.451914087655711,7.589712008729939,0,2,2,59.80981637466565,0,-9,-9,2019,12,4,57,57,1,4,0,4.050581511850614,4.050581511850614,0,0,0,0,0,1,1,0,0,0,54,52.35,43.79,58.33,3.333333333333333,1,1,0,0,5,5,3,0,367.6666666666667,-27871.44451563315,0,0,0,2413.08191346339 -5770,7156,13001,13002,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,6,-3,18.01555338123728,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,64.08,41.98,7,4,1,0,0,0,13,2,1,992,185291.9336636103,160323.9323662021,155392.6206397068,33380.52108058178,3227.645513985086 -5770,7156,13002,13001,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.311440568992933,5.713971878973375,6,3,120.6666450384065,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.437270042627649,5.750378566344968,64.08,41.98,52,48,10,1,1,0,0,0,13,2,1,992,185291.9336636103,160323.9323662021,155392.6206397068,33380.52108058178,3227.645513985086 -5771,7157,13003,13005,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,8.086700212432401,8.049088337702468,0,10,-1,136.9909532889586,0,-9,-9,2019,11,2,40,38,1,2,0,8.494914876332244,8.494914876332244,0,0,0,0,0,1,1,0,0,0,48.77,50.89,22.12,42.4,6.666666666666667,3,4,0,0,10,4,4,0,1089.666666666667,823831.9209293461,690308.4495283068,125304.30539611,104637.153066587,2642.645935033112 -5771,7157,13004,-9,13003,13005,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-873.7271444945668,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.922471173986247,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,4,0,1089.666666666667,823831.9209293461,690308.4495283068,125304.30539611,104637.153066587,2642.645935033112 -5771,7157,13005,13003,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.46529163803106,8.375222632621989,0,10,1,120.4777010634101,-9,2,2,2019,21,9,49,0,1,9,0,8.855669888699637,8.855669888699637,0,0,0,0,0,1,1,0,0,0,22.12,42.4,48.77,50.89,8.333333333333334,3,4,0,0,8,4,4,0,1089.666666666667,823831.9209293461,690308.4495283068,125304.30539611,104637.153066587,2642.645935033112 -5771,7158,13006,-9,13003,13005,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1004.653082999388,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.98,50.59,-9,-9,6.666666666666667,3,4,0,0,1,4,1,0,517,0,0,0,0,0 -5772,7159,13007,13008,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,4.864316121776872,4.865876805419948,38,1,30.07570966717684,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.863027148949772,4.809682910001666,60.12,54.8,62.42,42.94,10,1,1,0,0,0,4,3,1,511.5,1024639.845434983,612237.2250321361,261136.2205591119,0,3244.000573699826 -5772,7159,13008,13007,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.281705561056157,8.073354916158078,37,-1,-65.12610088689259,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.474057653094774,8.262006660817974,62.42,42.94,60.12,54.8,10,1,1,0,0,0,4,3,1,511.5,1024639.845434983,612237.2250321361,261136.2205591119,0,3244.000573699826 -5773,7160,13009,13010,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.459945988861556,8.793415104201761,0,9,-4,45.80316851509753,0,1,2,2019,24,9,38,37,1,9,0,16.26284573485756,16.26284573485756,0,0,0,0,0,0,0,0,0,0,25.23,61.36,54.1,59.11,8.333333333333334,1,1,0,0,9,1,5,1,621.5,570685.4508975396,393614.2702328935,136594.6873903369,90427.2154650696,4148.429264272486 -5773,7160,13010,13009,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,9.034827711148006,8.748802158513254,0,9,4,-23.1783097970458,0,2,2,2019,8,0,54,63,1,0,0,16.32353106899525,16.32353106899525,0,0,0,0,0,0,0,0,0,0,54.1,59.11,25.23,61.36,10,1,1,0,0,9,1,5,1,621.5,570685.4508975396,393614.2702328935,136594.6873903369,90427.2154650696,4148.429264272486 -5774,7161,13011,13012,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.012538705368877,7.958028716045457,43,2,-14.64726518173765,0,2,2,2019,8,0,0,42,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.75570683486532,55,53,57.88,43.83,8,1,1,0,0,9,10,3,1,424.5,1033251.422861311,418083.89991798,392635.7296688021,0,1923.155256139411 -5774,7161,13012,13011,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,5.867669855097559,5.414850799562696,42,-2,59.9001252196515,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.225962913628627,5.627208174966808,57.88,43.83,55,53,1.666666666666667,1,1,0,0,2,10,3,1,424.5,1033251.422861311,418083.89991798,392635.7296688021,0,1923.155256139411 -5775,7162,13013,13014,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,47,0,0,0,3,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,.7291943412520949,0,33.07,44.65,50,47,3.333333333333333,1,1,0,0,3,11,1,1,484.5,92199.60704925575,0,169105.307967193,49815.22537215675,1443.117810194522 -5775,7162,13014,13013,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,47,0,0,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.441187011370134,0,50,47,33.07,44.65,7,1,1,0,0,0,11,1,1,484.5,92199.60704925575,0,169105.307967193,49815.22537215675,1443.117810194522 -5776,7163,13015,-9,13016,13017,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.345809989488,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,686.6666666666666,370066.1140871691,191858.0984474343,163569.1338336671,17458.50788783776,2153.687234935967 -5776,7163,13016,13017,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,7.884169434497797,7.536456668878333,0,24,-8,16.83559675477827,0,3,-9,2019,8,0,25,29,1,0,0,10.30194011355066,10.30194011355066,0,0,0,0,0,1,1,0,0,0,51.73,58.82,17.34,67.89,8.333333333333334,1,1,0,0,8,1,3,1,686.6666666666666,370066.1140871691,191858.0984474343,163569.1338336671,17458.50788783776,2153.687234935967 -5776,7163,13017,13016,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.054969216244285,7.944802109248433,0,6,8,-111.5257552302706,0,-9,-9,2019,23,9,36,41,1,9,0,8.638049503935179,8.638049503935179,0,0,0,0,2,1,1,0,0,0,17.34,67.89,51.73,58.82,3.333333333333333,1,1,0,0,5,1,3,1,686.6666666666666,370066.1140871691,191858.0984474343,163569.1338336671,17458.50788783776,2153.687234935967 -5777,7164,13018,13019,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,5.808114071340491,6.092076476142843,8,-1,3.990070556081401,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.650522270678671,6.127345852627567,48.18,61.8,54.79,55.86,8.333333333333334,1,1,0,0,7,13,2,1,570.5,268758.3384428571,251639.1336878796,0,0,1469.814914848643 -5777,7164,13019,13018,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.592056230613266,6.962799925595305,8,1,29.02092439237424,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.002001822295297,6.806889824291517,54.79,55.86,48.18,61.8,8.333333333333334,1,1,0,0,6,13,2,1,570.5,268758.3384428571,251639.1336878796,0,0,1469.814914848643 -5778,7165,13020,13021,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.082265299022596,7.924432125211297,0,3,2,-16.88870852765244,0,-9,-9,2019,6,0,43,42,1,0,0,7.364892442742299,7.364892442742299,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.96,55.09,10,1,1,0,0,8,9,3,1,310.5,-31684.53069988861,-24628.03999617674,0,0,1638.134869577012 -5778,7165,13021,13020,-9,-9,1,0,23,0,0,0,1,1,1,0,5,6.613907102001364,6.755910173985643,0,3,-2,-4.257312001241598,-9,-9,-9,2019,6,0,15,0,1,0,0,6.179625210814401,6.179625210814401,0,0,0,0,0,0,0,0,0,0,62.96,55.09,62.39,56.71,10,3,4,0,0,6,9,3,1,310.5,-31684.53069988861,-24628.03999617674,0,0,1638.134869577012 -5779,7166,13022,-9,13024,13023,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.575599679404,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,951,508865.9236827564,38582.03527669442,408743.0810635376,133739.4835840565,5310.293851657677 -5779,7166,13023,13024,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.760564801257329,8.678358704941372,0,6,8,105.2448014956777,0,2,2,2019,9,0,43,42,1,0,0,20.51193510265055,20.51193510265055,0,0,0,0,0,1,1,0,1.522255254579136,0,53.44,55.06,51.49,57.57,8.333333333333334,1,1,0,0,11,9,5,1,951,508865.9236827564,38582.03527669442,408743.0810635376,133739.4835840565,5310.293851657677 -5779,7166,13024,13023,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.788637554349805,9.39097743547233,0,6,-8,43.94108226877476,0,-9,-9,2019,11,0,45,47,1,0,0,19.16264698032298,19.16264698032298,0,0,0,0,0,1,1,0,7.613004985321315,0,51.49,57.57,53.44,55.06,8.333333333333334,1,1,0,0,4,9,5,1,951,508865.9236827564,38582.03527669442,408743.0810635376,133739.4835840565,5310.293851657677 -5780,7167,13025,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.376023367033834,8.24355033826299,0,0,0,-1035.383335902726,0,3,3,2019,11,0,48,52,1,0,0,8.242970429270995,8.242970429270995,0,0,0,0,0,1,1,0,0,0,43.12,50.52,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,2012,184671.0314461495,-91242.74579278483,0,0,1116.743944022123 -5781,7168,13026,13027,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.855132287757207,6.240546198738447,4,-3,-59.02374960230365,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.0641222019740549,6.010430348620342,44.91,48.09,57.16,56.15,10,1,1,0,1,0,9,2,0,547,227346.6078370389,60912.49223709686,156328.552998062,0,1193.217652694994 -5781,7168,13027,13026,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,4,3,-15.92997173427245,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,3.513572665268307,0,0,1,1,0,.8801342902558289,0,57.16,56.15,44.91,48.09,10,1,1,0,1,0,9,2,0,547,227346.6078370389,60912.49223709686,156328.552998062,0,1193.217652694994 -5782,7169,13028,13029,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.362031499669125,7.620997486700094,6.03086792728282,34,-21,87.16880335847932,0,-9,-9,2019,27,12,20,20,1,12,0,10.24819913102533,10.24819913102533,0,0,0,0,14.5,1,1,0,1.958367876703175,6.382431723831917,34.4,27.74,37.02,47.89,3.333333333333333,1,1,0,0,8,9,3,1,839.5,1652133.101363353,86564.70671887725,634957.5240523524,0,2339.289692306819 -5782,7169,13029,13028,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.696356587235563,7.61093322271195,34,21,-3.799490872128656,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,7.209855091576226,7.511714672571591,37.02,47.89,34.4,27.74,6.666666666666667,1,1,0,0,0,9,3,1,839.5,1652133.101363353,86564.70671887725,634957.5240523524,0,2339.289692306819 -5783,7170,13030,13031,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.590556161518776,8.630573414663145,0,1,7,-40.45624088170874,0,2,2,2019,9,0,41,50,1,0,0,13.32758603142001,13.32758603142001,0,0,0,0,0,0,0,0,2.407869381287417,0,47.95,51.28,47.93,56.36,8.333333333333334,1,1,0,0,8,12,5,1,1295,2686885.570519031,1935255.01205009,295884.4138266083,0,4924.698228827085 -5783,7170,13031,13030,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,9.192273756370666,8.886424198623539,0,1,-7,-24.03140416656507,-9,-9,-9,2019,5,1,47,0,1,1,0,23.49166007121213,23.49166007121213,0,0,0,0,0,0,0,0,3.912475331700011,0,47.93,56.36,47.95,51.28,8.333333333333334,1,1,0,0,1,12,5,1,1295,2686885.570519031,1935255.01205009,295884.4138266083,0,4924.698228827085 -5784,7171,13032,13033,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.032837104468054,5.963726269925763,10,-1,47.80194906571329,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,8.512611015370634,0,0,1,1,0,2.892560118477063,5.966307637081294,51.92,22.55,47.98,34.68,8.333333333333334,1,1,0,0,0,12,2,0,551.5,184746.9651605707,142039.6062010554,0,0,3297.891698268583 -5784,7171,13033,13032,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,10,1,66.2050094250154,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.98,34.68,51.92,22.55,8.333333333333334,1,1,0,0,0,12,2,0,551.5,184746.9651605707,142039.6062010554,0,0,3297.891698268583 -5784,7172,13034,-9,13033,13032,1,1,51,0,0,0,2,2,-9,0,4,8.098134601597655,7.716003984677457,0,0,0,-1066.174491519916,0,3,2,2019,9,0,40,38,1,1,0,9.019029621969457,9.019029621969457,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,1,12,4,0,339,171213.5936909657,-71093.65512651778,161594.4380548422,0,1784.210373099358 -5785,7173,13035,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.007650854173535,6.906285720913711,0,0,-951.9310375571931,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.7974769392182944,6.780259261504542,41.65,60.41,-9,-9,10,1,1,0,0,7,7,2,1,201,346111.7563057803,217780.9718269272,122454.7754331623,0,1663.355861068566 -5786,7174,13036,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1201.00216008284,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,41.2,41.4,-9,-9,8.333333333333334,1,1,1,0,1,5,1,0,516,-71612.23519745027,0,0,0,698.1974874304315 -5787,7175,13037,-9,13040,13039,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.0881826093382,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,894.2,240256.732970465,0,265545.5742773058,37936.38801030778,2614.480118379087 -5787,7175,13038,-9,13040,13039,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.6008681452454,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,4,1,894.2,240256.732970465,0,265545.5742773058,37936.38801030778,2614.480118379087 -5787,7175,13039,13040,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,7.577074825713997,7.846826858446038,0,10,2,33.4154987172157,0,2,2,2019,13,4,60,50,1,4,0,4.72935317673998,4.72935317673998,0,0,0,0,0,1,1,0,0,0,51.11,50.75,34.79,58.34,5,1,1,0,0,12,6,4,1,894.2,240256.732970465,0,265545.5742773058,37936.38801030778,2614.480118379087 -5787,7175,13040,13039,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,0,7.839376806643197,7.592750481082668,10,-2,-33.32203908520164,0,2,2,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.347893039708372,0,34.79,58.34,51.11,50.75,5,1,1,0,0,4,6,4,1,894.2,240256.732970465,0,265545.5742773058,37936.38801030778,2614.480118379087 -5787,7175,13041,-9,13040,13039,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-873.0571520506566,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,1,894.2,240256.732970465,0,265545.5742773058,37936.38801030778,2614.480118379087 -5788,7176,13042,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,0,5.299368971309113,5.24152862512504,0,0,-896.8157213067697,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,5.972806919934425,0,51.98,46.5,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,917,-168396.6909116933,0,0,0,2027.368121114952 -5789,7177,13043,13046,-9,-9,1,1,43,0,2,0,2,2,-9,1,1,6.66441651149982,6.581004479034944,0,13,13,-62.8785139074154,0,-9,-9,2019,18,6,15,10,1,6,0,5.819447210806484,5.819447210806484,0,0,0,0,0,1,1,0,2.181753516778051,0,38.73,19.11,35.65,58.56,5,1,1,0,0,8,2,2,0,396.5,-13270.72773198041,0,0,0,3025.915020374846 -5789,7177,13044,-9,13046,13043,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.014305381566,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,396.5,-13270.72773198041,0,0,0,3025.915020374846 -5789,7177,13045,-9,13046,13043,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1075.622902886914,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.1,57.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,396.5,-13270.72773198041,0,0,0,3025.915020374846 -5789,7177,13046,13043,-9,-9,1,0,30,0,2,0,2,2,-9,1,4,6.702951992115419,6.827403154769234,0,13,-13,18.93896713227556,0,-9,-9,2019,12,0,20,10,1,0,0,3.739231782253723,3.739231782253723,0,0,0,0,2,1,1,0,2.397256976507787,0,35.65,58.56,38.73,19.11,5,1,1,0,0,6,2,2,0,396.5,-13270.72773198041,0,0,0,3025.915020374846 -5790,7178,13047,-9,13050,13048,1,0,14,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1114.131253111559,-9,3,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,4,2,-9,0,0,2,2,0,1123,-29858.33005833217,21078.89419287561,0,0,1975.532255426428 -5790,7178,13048,13050,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,5.955861961378921,5.9177189538593,0,2,10,-92.34439038746446,0,2,2,2019,7,2,40,40,1,2,0,1.20596996778574,1.20596996778574,0,0,0,0,0,1,1,0,0,0,35.25,47.87,47,58,5,2,3,0,0,11,2,2,0,1123,-29858.33005833217,21078.89419287561,0,0,1975.532255426428 -5790,7178,13049,-9,13050,13048,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1082.093487827535,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,1123,-29858.33005833217,21078.89419287561,0,0,1975.532255426428 -5790,7178,13050,13048,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,2,-10,75.63174591066557,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,35.25,47.87,7,2,3,0,0,0,2,2,0,1123,-29858.33005833217,21078.89419287561,0,0,1975.532255426428 -5790,7179,13051,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,1,0,0,0,0,0,-872.2439819054193,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.73,40.06,-9,-9,3.333333333333333,2,3,1,1,0,2,1,0,210,42891.29489232253,0,0,0,354.7527186622586 -5791,7180,13052,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.4603389577508,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2158914281172896,0,49.54,53.32,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,548,85719.83864157263,0,0,0,104.5913705791182 -5792,7181,13053,13054,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.446049896857366,7.560804695619433,0,10,-5,-79.12338337011715,0,2,2,2019,10,1,33,33,1,1,0,5.580652082626451,5.580652082626451,0,0,0,0,14.5,0,0,0,0,0,51,54,57.33,53.46,8.333333333333334,1,1,0,0,11,11,5,1,1172.5,775251.0300971697,623686.0216761362,327069.9092692662,183585.1348055844,3277.578807531698 -5792,7181,13054,13053,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.84492903823949,8.422065284581384,7.409359234399318,10,5,-43.06539735983873,0,2,2,2019,7,0,32,37,1,0,0,10.6765790671754,10.6765790671754,0,0,0,0,7,0,0,0,5.222604213665808,7.681150880272391,57.33,53.46,51,54,8.333333333333334,1,1,0,0,11,11,5,1,1172.5,775251.0300971697,623686.0216761362,327069.9092692662,183585.1348055844,3277.578807531698 -5793,7182,13055,-9,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,0,0,-975.6219231538929,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,533.5,44345.65916797588,0,0,0,2460.452522705873 -5793,7182,13056,-9,13055,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.1493512651264,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,533.5,44345.65916797588,0,0,0,2460.452522705873 -5794,7183,13057,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.30635600106367,5.573616734777246,0,0,-902.9895295760372,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.341263161843564,52.82,21.81,-9,-9,0,1,1,0,0,0,12,2,1,366,255462.3703314745,14585.92237884121,170627.7283934482,0,1439.409329476644 -5795,7184,13058,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,6.074401253828688,6.322263595397445,0,0,-923.4869959440545,1,2,1,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,6.073427619277156,0,25.64,46.88,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,302,19997.58063203564,0,0,0,559.4302964489309 -5795,7184,13059,-9,13058,-9,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-964.1359335720039,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,302,19997.58063203564,0,0,0,559.4302964489309 -5796,7185,13060,-9,13063,13062,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.760362844887,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,754,1117914.108686878,538192.7522143985,607778.3241603367,184089.9115896836,7145.336008845273 -5796,7185,13061,-9,13063,13062,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.2766669467995,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,754,1117914.108686878,538192.7522143985,607778.3241603367,184089.9115896836,7145.336008845273 -5796,7185,13062,13063,-9,-9,1,1,41,0,3,0,1,1,-9,0,3,9.183183961420411,9.242216627175948,0,17,2,-73.03094857699391,0,2,1,2019,10,0,45,50,1,0,0,30.83184107633042,30.83184107633042,0,0,0,0,0,1,1,0,5.060644879773854,0,50.23,52.59,49,56,8.333333333333334,1,1,0,0,10,2,5,1,754,1117914.108686878,538192.7522143985,607778.3241603367,184089.9115896836,7145.336008845273 -5796,7185,13063,13062,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.197580077557394,7.976473201639426,0,7,-2,-110.957833006675,0,2,2,2019,10,0,13,24,1,1,0,26.30804140720261,26.30804140720261,0,0,0,0,0,1,1,0,0,0,49,56,50.23,52.59,8,1,1,0,0,1,2,5,1,754,1117914.108686878,538192.7522143985,607778.3241603367,184089.9115896836,7145.336008845273 -5796,7185,13064,-9,13063,13062,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.0299635220337,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,754,1117914.108686878,538192.7522143985,607778.3241603367,184089.9115896836,7145.336008845273 -5797,7186,13065,-9,13066,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.17786766602,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,1190,10023.20437202582,-58730.93015029719,0,0,891.4226546806792 -5797,7186,13066,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.222218145151751,7.106118071736412,0,0,0,-1076.871101344482,0,-9,-9,2019,11,0,18,17,1,0,0,9.125074712353637,9.125074712353637,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,1,2,0,1190,10023.20437202582,-58730.93015029719,0,0,891.4226546806792 -5798,7187,13067,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,7.274710524367752,6.89576681630651,0,0,0,-1038.968544826596,-9,3,3,2019,12,0,28,0,1,0,0,6.088639880299684,6.088639880299684,0,0,0,0,0,1,1,0,0,0,37.77,60.12,-9,-9,6.666666666666667,1,1,0,0,9,13,3,0,118,168149.3348572417,267179.2739945289,172488.4813426558,0,2306.045136320191 -5798,7188,13068,-9,13067,-9,1,0,31,0,0,0,1,1,-9,0,4,7.816716683179965,7.924956738016865,0,0,0,-944.4978363393601,-9,3,3,2019,12,0,37,0,1,0,0,6.51444707710667,6.51444707710667,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,60,-60496.19869425413,0,0,0,1069.946012199051 -5798,7189,13069,-9,13067,-9,1,0,31,0,0,0,1,1,-9,0,4,7.677732596987195,7.732195637652915,0,0,0,-1017.694341249051,-9,3,3,2019,12,2,37,0,1,2,0,7.851124854331433,7.851124854331433,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,292,-5610.834205923693,-44941.02521519406,61605.60173655826,54627.57885927979,1107.639265427904 -5799,7190,13070,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-978.5821522658512,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,15.69,-9,-9,5,1,1,0,0,0,11,1,0,296,56017.51704954556,0,0,0,1967.638042830461 -5800,7191,13071,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-992.0741495137864,-9,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,5.57,53.39,-9,-9,0,1,1,0,0,0,2,1,0,826,26348.60608626645,0,0,0,1882.391445641901 -5801,7192,13072,13073,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,7.526053674435704,7.898245578960085,10,2,-14.32238739111483,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,6.921275532686083,7.637224636292218,49.51,46.42,57.51,47.91,5,1,1,0,0,10,10,4,1,732.5,84648.57635529194,199553.8606823082,0,0,3391.665002615093 -5801,7192,13073,13072,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0128405103245,8.077779974980775,7.370842166287535,10,-2,-4.33712965221926,0,2,2,2019,8,0,25,30,1,0,0,7.23153684079318,7.23153684079318,0,0,0,0,0,1,1,0,5.146220554326296,7.032744544401825,57.51,47.91,49.51,46.42,8.333333333333334,1,1,0,0,11,10,4,1,732.5,84648.57635529194,199553.8606823082,0,0,3391.665002615093 -5802,7193,13074,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.646498274443676,8.169974231146893,0,0,0,-1192.8733208181,0,3,2,2019,9,0,36,65,1,0,0,14.18986003205248,14.18986003205248,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,8.333333333333334,3,4,0,0,9,9,5,0,471,286641.7945533401,343473.6495694057,150092.136308416,62415.987043344,2397.673152021872 -5803,7194,13075,-9,13077,13076,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.6439333315777,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,664.3333333333334,38511.73449622557,-57020.36959934871,0,0,3950.414777868204 -5803,7194,13076,13077,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,6.926988203852695,6.991930284518772,0,27,1,80.55533429109886,0,3,3,2019,10,0,24,24,1,0,0,4.846466931038638,4.846466931038638,0,0,0,0,2,1,1,0,0,0,46.32,53.44,44.38,41.64,5,1,1,0,0,9,9,2,0,664.3333333333334,38511.73449622557,-57020.36959934871,0,0,3950.414777868204 -5803,7194,13077,13076,-9,-9,1,0,47,0,2,0,3,3,-9,1,3,0,0,0,27,-1,69.54667855901613,0,3,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,44.38,41.64,46.32,53.44,1.666666666666667,1,1,1,1,0,9,2,0,664.3333333333334,38511.73449622557,-57020.36959934871,0,0,3950.414777868204 -5803,7195,13078,-9,13077,13076,1,1,21,0,2,0,3,3,-9,1,3,0,0,0,0,0,-990.6647612050625,0,3,3,2019,14,2,0,16,3,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,29.11,44.63,-9,-9,3.333333333333333,1,1,1,0,0,9,1,0,1573,109733.5924051414,0,0,0,-650.5211614840007 -5804,7196,13079,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-983.4241646096874,1,-9,-9,2019,8,1,0,20,2,1,0,0,0,0,0,0,0,0,0,0,0,3.752109576658269,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,606,0,0,0,0,-575.4195664738274 -5805,7197,13080,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.478861487317744,8.501450716786591,0,0,0,-1074.680848081371,0,2,2,2019,7,0,37,38,1,0,0,18.46914461173978,18.46914461173978,0,0,0,0,0,0,0,0,5.095504718737729,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,154,744511.6317075412,473598.3975258872,247671.5813148781,0,1556.057927175832 -5806,7198,13081,13082,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,8.857539446487255,9.091505740335052,0,10,-7,19.51432056369891,0,-9,-9,2019,18,5,40,55,1,5,0,27.25238522298032,27.25238522298032,0,0,0,0,14.5,1,1,0,6.203389727469647,0,41.62,42.02,51,56,3.333333333333333,1,1,0,0,13,13,5,1,586.6666666666666,1506405.089145415,45158.7544425817,488731.2979014048,309126.9572420316,4941.641274098692 -5806,7198,13082,13081,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.529288708540964,8.634251255571531,0,10,7,9.929295674685077,0,1,2,2019,9,0,40,45,1,1,0,15.57246966744691,15.57246966744691,0,0,0,0,0,1,1,0,0,0,51,56,41.62,42.02,8,1,1,0,0,1,13,5,1,586.6666666666666,1506405.089145415,45158.7544425817,488731.2979014048,309126.9572420316,4941.641274098692 -5806,7198,13083,-9,13081,13082,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.7595040731991,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,586.6666666666666,1506405.089145415,45158.7544425817,488731.2979014048,309126.9572420316,4941.641274098692 -5807,7199,13084,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,5.066737917610339,5.098458367208484,0,0,-976.4111389234919,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.626811633247581,5.19765683706745,40.72,34.06,-9,-9,3.333333333333333,1,1,0,0,4,12,2,0,2128,285138.0259880209,-47901.36811097207,0,0,417.1378086794002 -5808,7200,13085,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.5822797006384,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.640248973007221,0,0,0,1,1,0,0,0,41.01,21.98,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,168,-146208.6131984238,0,0,0,1449.511541031726 -5809,7201,13086,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.010816718502,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.42,59.31,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,205,0,0,0,0,1010.763948548538 -5809,7202,13087,-9,13086,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-906.3092261118921,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,0,4,1,1,392,35704.46104606012,0,0,0,941.1283827335856 -5810,7203,13088,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,1,0,4.487903948050628,4.754602191661058,0,0,-915.9195316922126,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,8.282758818877861,6.290399110532907,65.93517162294786,0,1,1,0,5.225557194134476,5.019645270144315,54.47,19.2,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,102,18173.0052843051,15209.22747813552,0,0,1294.150627497047 -5811,7204,13089,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.079562432472375,8.448635618446515,7.99851314027435,0,0,-998.17239863193,0,-9,-9,2019,10,0,40,40,1,0,0,10.08175260651687,10.08175260651687,0,0,0,0,0,0,0,0,6.971191907675895,7.648804963460596,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,117,1861464.094336572,1019388.548732361,309903.2253607075,0,2745.580699797748 -5812,7205,13090,13092,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,8.534822917765073,8.877928374808807,0,7,1,-21.32524246358537,0,2,3,2019,11,0,40,40,1,0,0,14.29977909290598,14.29977909290598,0,0,0,0,0,1,1,0,7.807104493228698,0,37.11,58.59,51.24,58.84,8.333333333333334,1,1,0,0,10,6,4,1,410,115369.6612005067,99001.95160186981,152222.4043865365,45623.64549405873,2926.522907608256 -5812,7205,13091,-9,13092,13090,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.414205365233,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,410,115369.6612005067,99001.95160186981,152222.4043865365,45623.64549405873,2926.522907608256 -5812,7205,13092,13090,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.130459034588703,7.41363841934114,0,7,-1,-120.9464897577157,0,2,2,2019,6,0,20,23,1,0,0,7.124645216716795,7.124645216716795,0,0,0,0,2,1,1,0,0,0,51.24,58.84,37.11,58.59,8.333333333333334,1,1,0,0,6,6,4,1,410,115369.6612005067,99001.95160186981,152222.4043865365,45623.64549405873,2926.522907608256 -5812,7205,13093,-9,13092,13090,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.240905722421,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,410,115369.6612005067,99001.95160186981,152222.4043865365,45623.64549405873,2926.522907608256 -5813,7206,13094,-9,13096,-9,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.6648036485607,-9,2,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.53,59.52,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,798.75,-114010.3380754992,0,0,0,1639.316786767648 -5813,7206,13095,-9,13096,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1056.040065415888,-9,2,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,1,0,798.75,-114010.3380754992,0,0,0,1639.316786767648 -5813,7206,13096,-9,-9,-9,1,0,48,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1140.29252666426,1,2,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,42.67,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,798.75,-114010.3380754992,0,0,0,1639.316786767648 -5813,7206,13097,-9,13096,-9,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-841.7690401164866,-9,2,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,51.96,-9,-9,5,1,1,0,1,0,2,1,0,798.75,-114010.3380754992,0,0,0,1639.316786767648 -5813,7207,13098,-9,13096,-9,1,0,21,0,3,0,1,1,-9,0,5,7.190396933745942,7.031142800596755,0,0,0,-926.7555615203121,0,2,-9,2019,16,5,10,26,1,5,1,13.16107981657293,13.16107981657293,0,0,0,0,0,1,1,0,0,0,27.96,61.74,-9,-9,0,1,1,0,1,5,2,2,0,1544,-81102.5252183157,16018.69254112922,0,0,651.1693826749791 -5814,7208,13099,13100,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.326323797038585,8.666219174137915,0,8,1,-52.66373838855763,0,-9,3,2019,13,1,60,60,1,1,0,7.616889782349493,7.616889782349493,0,0,0,0,0,0,0,0,0,0,30.18,65.98,54.96,53.17,6.666666666666667,1,1,0,0,9,10,5,1,754,310797.8048983524,167069.3195633669,0,0,3374.900778866036 -5814,7208,13100,13099,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.599332502280143,8.523599916596421,0,15,-1,-56.37254352935719,0,2,3,2019,2,0,37,45,1,0,0,14.24018106431959,14.24018106431959,0,0,0,0,0,0,0,0,2.880955680607193,0,54.96,53.17,30.18,65.98,8.333333333333334,1,1,0,0,10,10,5,1,754,310797.8048983524,167069.3195633669,0,0,3374.900778866036 -5815,7209,13101,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.565595403872948,8.429038565064005,0,0,0,-1012.709131004629,0,2,2,2019,12,0,50,50,1,0,0,12.98523092559694,12.98523092559694,0,0,0,0,0,1,1,0,0,0,47.39,56.64,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,180,179538.8891426655,0,0,0,2141.60136962977 -5816,7210,13102,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,0,0,0,0,0,-885.3143441338912,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.78,59.99,-9,-9,5,3,4,0,0,0,4,1,0,938.6666666666666,-4352.806798842978,0,0,0,1872.040464810084 -5816,7210,13103,-9,13102,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.5216967199939,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,1,0,938.6666666666666,-4352.806798842978,0,0,0,1872.040464810084 -5816,7210,13104,-9,13102,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-926.4452730346303,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,0,0,4,1,0,938.6666666666666,-4352.806798842978,0,0,0,1872.040464810084 -5817,7211,13105,13107,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,21,-1,-97.3836892765882,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.388831672639585,0,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,0,8,5,1,631,320570.4128456952,155546.0767498577,476626.1279539486,326225.0341328619,16359.52761755892 -5817,7211,13106,-9,13105,13107,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-977.6034878019235,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,8,5,1,631,320570.4128456952,155546.0767498577,476626.1279539486,326225.0341328619,16359.52761755892 -5817,7211,13107,13105,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.810065098833894,9.744723804993763,0,21,1,-157.3591159651568,0,2,2,2019,8,0,55,60,1,0,0,35.4171823271372,35.4171823271372,0,0,0,0,2,1,1,0,8.650536563913928,0,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,8,8,5,1,631,320570.4128456952,155546.0767498577,476626.1279539486,326225.0341328619,16359.52761755892 -5818,7212,13108,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.2705892113378,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,28.46,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,3814,300475.598697628,0,190371.4584670385,153433.9107470423,1379.415608831165 -5819,7213,13109,13110,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.410988422129957,7.268457054864268,0,8,-2,-111.3000638271845,0,2,2,2019,7,0,25,30,1,0,0,9.151293185397142,9.151293185397142,0,0,0,0,0,1,1,0,3.577261525821295,0,55.36,51.57,46.23,49.17,8.333333333333334,1,1,0,0,9,7,2,1,1117.8,87864.42877035936,48016.32972417666,0,0,1778.052672416069 -5819,7213,13110,13109,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,6.939453675578282,7.30109486535667,0,8,2,69.92033070632844,0,1,1,2019,12,2,30,30,1,2,0,4.114793091786367,4.114793091786367,0,0,0,0,0,1,1,0,3.015333332823117,0,46.23,49.17,55.36,51.57,8.333333333333334,4,2,0,0,9,7,2,1,1117.8,87864.42877035936,48016.32972417666,0,0,1778.052672416069 -5819,7213,13111,-9,13110,13109,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1006.03256797736,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,4,2,-9,0,0,7,2,1,1117.8,87864.42877035936,48016.32972417666,0,0,1778.052672416069 -5819,7213,13112,-9,13110,13109,1,0,17,0,2,0,2,2,1,0,5,0,0,0,0,0,-1049.428806307656,-9,1,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,59.89,-9,-9,8.333333333333334,4,2,0,0,0,7,2,1,1117.8,87864.42877035936,48016.32972417666,0,0,1778.052672416069 -5819,7213,13113,-9,13110,13109,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.590558758972,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,2,1,1117.8,87864.42877035936,48016.32972417666,0,0,1778.052672416069 -5820,7214,13114,13115,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,2.640201677789624,2.927651836670353,55,3,21.36755688002605,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,8.390668077425673,0,0,1,1,0,0,3.123144969990359,30.48,34.04,43.65,53.05,0,2,3,0,0,0,2,2,1,521,-18726.21987519883,0,147269.9356845541,0,1853.245830702766 -5820,7214,13115,13114,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,55,-3,42.56735264018468,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,6.162943817870072,0,7,1,1,0,0,0,43.65,53.05,30.48,34.04,6.666666666666667,2,3,0,0,0,2,2,1,521,-18726.21987519883,0,147269.9356845541,0,1853.245830702766 -5821,7215,13116,13118,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.509904924718031,8.432091933668982,0,6,0,-28.95758759875231,-9,3,-9,2019,9,0,48,0,1,1,0,12.19584662413732,12.19584662413732,0,0,0,0,0,1,1,0,0,0,52,55,47.25,52.33,8,1,1,0,0,7,13,4,1,652.3333333333334,796640.7440652499,378764.8558913695,244123.7908232051,52579.43403813741,4283.175013244366 -5821,7215,13117,-9,13118,13116,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.372278934601,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,652.3333333333334,796640.7440652499,378764.8558913695,244123.7908232051,52579.43403813741,4283.175013244366 -5821,7215,13118,13116,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.375388324219985,8.496696423436827,0,6,0,16.88132797568475,0,3,2,2019,12,0,30,40,1,0,0,18.21899854352454,18.21899854352454,0,0,0,0,0,1,1,0,0,0,47.25,52.33,52,55,5,1,1,0,0,7,13,4,1,652.3333333333334,796640.7440652499,378764.8558913695,244123.7908232051,52579.43403813741,4283.175013244366 -5822,7216,13119,-9,13120,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.1648186087307,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,0,848,1571008.981775426,1128908.721350339,296760.3814882817,42406.9228565694,4084.883725462728 -5822,7216,13120,13121,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.866906846280214,7.953301735977897,0,8,7,35.17522835304803,0,3,3,2019,20,8,30,30,1,8,0,8.422083092645849,8.422083092645849,0,0,0,0,0,1,1,0,3.654890902202986,0,43.15,49.04,25.44,67.91,6.666666666666667,1,1,0,0,8,6,5,0,848,1571008.981775426,1128908.721350339,296760.3814882817,42406.9228565694,4084.883725462728 -5822,7216,13121,13120,-9,-9,1,1,43,0,1,0,2,2,-9,0,5,9.079787414728109,9.133744194786942,0,8,-7,-107.2829031142576,0,-9,-9,2019,26,11,64,59,1,11,0,14.11514924161973,14.11514924161973,0,0,0,0,0,1,1,0,4.355343278786027,0,25.44,67.91,43.15,49.04,8.333333333333334,1,1,0,0,10,6,5,0,848,1571008.981775426,1128908.721350339,296760.3814882817,42406.9228565694,4084.883725462728 -5823,7217,13122,13123,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,5.630865127462263,5.728306873224307,6,7,114.6003099303801,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.2081745430999032,5.740963400491712,49.98,21.65,55.09,55.87,8.333333333333334,1,1,0,0,0,6,2,1,618,361192.3991380698,22580.04318122902,123518.7889740269,0,1654.544313771319 -5823,7217,13123,13122,-9,-9,1,0,84,0,0,0,2,2,-9,0,5,0,6.459088287868708,6.450599661968505,6,-7,-7.880904102669271,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,0,6.502897350405741,55.09,55.87,49.98,21.65,8.333333333333334,1,1,0,0,0,6,2,1,618,361192.3991380698,22580.04318122902,123518.7889740269,0,1654.544313771319 -5824,7218,13124,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.279341625740217,8.468513936301809,0,0,0,-966.9676413154958,0,2,2,2019,11,0,30,30,1,0,0,15.13495725652627,15.13495725652627,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1502,373715.4477863307,54895.43386802053,294793.7393589132,65640.85170452051,2132.802618938469 -5824,7218,13125,-9,13124,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.57508841754,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1502,373715.4477863307,54895.43386802053,294793.7393589132,65640.85170452051,2132.802618938469 -5825,7219,13126,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.629874203095699,6.769522647429296,0,0,-1049.50239416097,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,16.74544351425206,0,0,1,1,0,1.625751450164401,6.421052333512236,55,45,-9,-9,8,1,1,0,0,0,2,2,1,196,501902.4545168301,112906.6351351262,302474.7863273086,0,1120.671441386054 -5826,7220,13127,13128,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.467681589762796,6.462054576798461,56,-7,-8.805639438794298,0,3,3,2019,8,0,0,8,4,0,0,0,0,1,0,0,0,0,1,1,0,7.763968988517318,6.467706553932838,59.71,50.89,58.47,28.96,8.333333333333334,1,1,0,0,11,4,3,1,319.5,939441.0018485547,148433.1241025073,264795.8233912599,0,3760.73172862967 -5826,7220,13128,13127,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.970742507642194,7.968975436974013,56,7,56.80954939047203,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.023741711923474,8.244128577256744,58.47,28.96,59.71,50.89,6.666666666666667,1,1,0,0,11,4,3,1,319.5,939441.0018485547,148433.1241025073,264795.8233912599,0,3760.73172862967 -5827,7221,13129,13130,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,5.483876141835822,5.016659049550039,70,0,72.49406542030269,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,2.986323996249201,10.38317156571443,22.42362093539543,0,1,1,0,.4424210988293899,5.03362835755159,36.01,18.9,46.69,41.19,10,1,1,0,0,0,7,2,1,125.5,301165.6375191722,95557.95576525289,233545.5384914365,0,1083.622347229099 -5827,7221,13130,13129,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,70,0,117.4282171369077,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.69,41.19,36.01,18.9,10,1,1,0,0,0,7,2,1,125.5,301165.6375191722,95557.95576525289,233545.5384914365,0,1083.622347229099 -5828,7222,13131,13132,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.646922111657847,9.897174590468163,0,7,5,74.88554986070648,0,2,2,2019,2,0,30,55,1,0,0,62.00018432948674,62.00018432948674,0,0,0,0,0,0,0,0,5.927125555141882,0,54.2,57.49,44.24,59.44,8.333333333333334,1,1,0,0,8,5,5,1,811.5,512203.0547546691,366398.4185778677,225796.0939140107,0,17033.59458022488 -5828,7222,13132,13131,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.414895275658944,8.356803528003001,0,7,-5,1.266290318651129,0,2,2,2019,11,2,45,40,1,2,0,12.99003816294094,12.99003816294094,0,0,0,0,0,0,0,0,5.422800303453788,0,44.24,59.44,54.2,57.49,8.333333333333334,1,1,0,0,8,5,5,1,811.5,512203.0547546691,366398.4185778677,225796.0939140107,0,17033.59458022488 -5829,7223,13133,-9,13136,13134,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.6598926126115,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,706.75,-27146.04460865875,0,0,0,1307.853384987268 -5829,7223,13134,13136,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,6.688313515983592,6.85902015238563,0,5,0,157.4952790198985,0,-9,-9,2019,10,0,24,40,1,1,0,4.309075408694683,4.309075408694683,0,0,0,0,0,1,1,0,0,0,50,57,56.94,43.99,7,2,3,0,0,1,2,2,1,706.75,-27146.04460865875,0,0,0,1307.853384987268 -5829,7223,13135,-9,13136,13134,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.992203358683,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,706.75,-27146.04460865875,0,0,0,1307.853384987268 -5829,7223,13136,13134,-9,-9,1,0,33,0,2,0,3,3,-9,0,3,0,0,0,15,0,-149.3978750618834,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,43.99,50,57,3.333333333333333,2,3,0,0,0,2,2,1,706.75,-27146.04460865875,0,0,0,1307.853384987268 -5829,7224,13137,-9,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-935.8721967478898,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,6,1,0,0,2,1,1,930,116487.5738650843,0,0,0,0 -5830,7225,13138,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.428342503546936,8.562885054895286,0,0,0,-980.0741423090266,0,3,2,2019,12,1,42,42,1,1,0,17.31075849125143,17.31075849125143,0,0,0,0,0,1,1,0,4.356946689213759,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,313,119390.146184949,305217.1797862677,0,0,1716.158804508397 -5831,7226,13139,13141,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,7.95249418073384,7.726918211644202,0,9,-2,-69.32586164517167,0,-9,-9,2019,10,0,38,38,1,0,0,6.714039932768279,6.714039932768279,0,0,0,0,2,1,1,0,0,0,47,51,54.1,59.11,6.666666666666667,4,2,0,0,9,6,3,1,1384,137699.9806111407,63517.10238454532,37847.83491827585,45542.31177080518,1555.355495102511 -5831,7226,13140,-9,13141,13139,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.0010258209106,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1384,137699.9806111407,63517.10238454532,37847.83491827585,45542.31177080518,1555.355495102511 -5831,7226,13141,13139,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.406836698605412,7.245037202714768,0,9,2,-18.87745692944608,0,2,2,2019,7,0,10,15,1,0,0,17.90734893858266,17.90734893858266,0,0,0,.9511995184963684,0,1,1,0,0,0,54.1,59.11,47,51,5,1,1,0,0,10,6,3,1,1384,137699.9806111407,63517.10238454532,37847.83491827585,45542.31177080518,1555.355495102511 -5832,7227,13142,13143,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.110370878885831,6.319732859618351,6,0,-14.84309085201626,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.616397552957868,6.417267977641703,57.92,51.82,51.14,60.45,10,1,1,0,0,5,4,2,1,634.5,915482.5071955016,264613.4220451295,296821.1053071368,0,1766.208364498553 -5832,7227,13143,13142,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.692313166487147,6.657047145931758,6,0,76.6223510384461,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.123228304854456,6.643026523387183,51.14,60.45,57.92,51.82,8.333333333333334,1,1,0,0,5,4,2,1,634.5,915482.5071955016,264613.4220451295,296821.1053071368,0,1766.208364498553 -5833,7228,13144,-9,13146,13145,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1117.197646231633,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,673.2,100402.5265276742,-1558.546685196491,190938.7591781073,154399.1761805074,2085.897963316519 -5833,7228,13145,13146,-9,-9,1,1,55,0,3,0,2,2,-9,0,5,7.727028100417183,7.721084542814427,0,6,-1,-6.180366629096111,0,-9,-9,2019,11,0,47,47,1,0,0,6.02090632886208,6.02090632886208,0,0,0,0,0,1,1,0,0,0,45.42,54.75,35.37,48.33,8.333333333333334,1,1,0,0,7,11,2,0,673.2,100402.5265276742,-1558.546685196491,190938.7591781073,154399.1761805074,2085.897963316519 -5833,7228,13146,13145,-9,-9,1,0,56,0,3,0,2,2,-9,0,4,0,0,0,6,1,-114.3828241831266,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.37,48.33,45.42,54.75,8.333333333333334,1,1,0,0,5,11,2,0,673.2,100402.5265276742,-1558.546685196491,190938.7591781073,154399.1761805074,2085.897963316519 -5833,7228,13147,-9,13146,13145,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.667341342683,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,673.2,100402.5265276742,-1558.546685196491,190938.7591781073,154399.1761805074,2085.897963316519 -5833,7228,13148,-9,13146,13145,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.0569017585065,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,2,0,673.2,100402.5265276742,-1558.546685196491,190938.7591781073,154399.1761805074,2085.897963316519 -5834,7229,13149,13150,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,0,0,52,-5,40.61039908058734,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.572686529709275,0,36.91,66.66,59.14,46.97,6.666666666666667,1,1,0,0,0,9,2,1,434,781049.2445165985,365921.7384135165,304229.659414384,0,1588.821596105279 -5834,7229,13150,13149,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.669797078890678,6.774385807211109,52,5,-61.23661215304844,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.109929246905623,6.874113996545053,59.14,46.97,36.91,66.66,8.333333333333334,1,1,0,0,0,9,2,1,434,781049.2445165985,365921.7384135165,304229.659414384,0,1588.821596105279 -5835,7230,13151,13152,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.135797764046934,8.211539521350426,0,9,3,-58.29197727382211,0,3,2,2019,19,7,48,48,1,7,0,9.917084601289886,9.917084601289886,0,0,0,0,0,0,0,0,0,0,41.46,55.58,51.41,56.15,5,1,1,0,0,12,6,4,1,763,254067.4242146429,47914.52800333058,106446.9243695442,18370.72658371133,2806.317166328719 -5835,7230,13152,13151,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.695204406823205,7.927049425471032,0,9,-3,89.32004229486145,0,2,2,2019,9,0,30,30,1,0,0,9.715465365031598,9.715465365031598,0,0,0,0,0,0,0,0,3.978923332346781,0,51.41,56.15,41.46,55.58,8.333333333333334,1,1,0,0,10,6,4,1,763,254067.4242146429,47914.52800333058,106446.9243695442,18370.72658371133,2806.317166328719 -5835,7231,13153,-9,13152,13151,1,0,22,0,0,0,2,2,-9,0,3,7.476191875144448,7.775051030238124,0,0,0,-995.3789743212021,0,2,2,2019,12,1,26,26,1,1,1,7.304777996968988,7.304777996968988,0,0,0,0,0,0,0,0,2.014553006205565,0,53.48,46.84,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,188,-154809.6206030424,7515.838196721958,0,0,1094.967050905523 -5836,7232,13154,13155,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.531032580566382,8.489980319372794,0,35,0,14.4428940326766,0,2,2,2019,9,0,40,40,1,0,0,14.05496338028007,14.05496338028007,0,0,0,0,0,1,1,0,3.26534990819619,0,59.29,49.68,54.2,57.49,8.333333333333334,1,1,0,0,12,12,5,1,445.5,1697809.661177706,1275693.982594371,391455.8061543846,13003.87822324096,4081.395460740571 -5836,7232,13155,13154,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.020320060230874,8.012040407939015,0,36,0,-74.8826748698051,0,3,3,2019,10,0,8,10,1,0,0,50.72905131000003,50.72905131000003,0,0,0,0,0,1,1,0,5.521455675238617,0,54.2,57.49,59.29,49.68,8.333333333333334,1,1,0,0,9,12,5,1,445.5,1697809.661177706,1275693.982594371,391455.8061543846,13003.87822324096,4081.395460740571 -5836,7233,13156,-9,13155,13154,1,1,25,0,0,0,1,1,-9,0,3,6.853096257055029,6.611451130061564,0,0,0,-1151.937145766091,0,1,1,2019,14,3,5,20,1,3,1,24.00991651313601,24.00991651313601,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,3.333333333333333,1,1,0,0,4,12,2,1,746,-1697.680766771253,0,0,0,-7.114570423963528 -5836,7234,13157,-9,13155,13154,1,1,23,0,0,0,1,1,-9,0,5,7.350237948653634,7.083091364296287,0,0,0,-1113.363782121483,0,1,1,2019,2,0,15,31,1,0,1,10.50970296295763,10.50970296295763,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,355,10987.01608602813,7991.094850918802,0,0,193.0430399324916 -5836,7235,13158,-9,13155,13154,1,1,20,0,0,0,3,3,1,0,3,6.292492798507229,6.260203428094929,0,0,0,-971.7753366762491,-9,1,1,2019,13,3,16,0,1,3,1,5.352953427559854,5.352953427559854,0,0,0,0,0,1,1,0,0,0,44.7,49.72,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,1960,-116064.8419655091,-123576.8268675089,0,0,45.32472122864687 -5837,7236,13159,-9,13162,-9,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-1199.968137492096,-9,2,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.11,58.6,-9,-9,3.333333333333333,1,1,1,0,0,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5837,7236,13160,-9,13162,13164,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.680117977175,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5837,7236,13161,-9,13162,-9,1,1,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-981.7119655089739,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5837,7236,13162,13164,-9,-9,1,0,37,0,3,0,2,2,-9,0,1,0,0,0,7,2,9.629038746188566,0,-9,-9,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.17,26.06,62.72,37.28,5,1,1,0,1,0,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5837,7236,13163,-9,13162,13164,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.9751403178647,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5837,7236,13164,13162,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.345123599211396,8.465211928951289,0,7,-2,-101.8778447701997,0,2,3,2019,12,0,48,43,1,0,0,10.50428724363145,10.50428724363145,0,0,0,0,0,1,1,0,0,0,62.72,37.28,44.17,26.06,5,1,1,0,0,11,4,3,0,727.1666666666666,171464.9856347351,19737.77241940429,98642.9226805441,48182.12306638379,2577.581905259722 -5838,7237,13165,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.776826692327926,5.97056174384569,0,0,-991.7845653437157,0,3,3,2019,24,7,0,0,4,7,0,0,0,1,2.167452209891693,0,21.99983234177384,0,1,1,0,0,5.718730366095564,19.87,34.43,-9,-9,0,1,1,0,0,0,6,2,1,333,-164811.675854613,228860.6930987144,0,0,816.0371629427126 -5839,7238,13166,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-963.4966910741065,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.080091182438955,0,56.34,46.17,-9,-9,10,1,1,0,0,0,1,2,0,639,96160.58754345625,-39720.04266378831,0,0,1292.212871794012 -5840,7239,13167,-9,13169,13170,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.1900623416652,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,5,1,736.25,625333.5281756981,367271.5041350786,342006.1390882742,0,10390.32176436306 -5840,7239,13168,-9,13169,13170,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.7969647069,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,5,1,736.25,625333.5281756981,367271.5041350786,342006.1390882742,0,10390.32176436306 -5840,7239,13169,13170,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.594195218542183,9.294149814462921,0,10,-2,39.0443518238394,0,1,1,2019,8,0,38,38,1,0,0,36.77722812576592,36.77722812576592,0,0,0,0,0,0,0,0,7.49541834083442,0,54.2,57.49,51.83,57.2,8.333333333333334,4,2,0,0,8,2,5,1,736.25,625333.5281756981,367271.5041350786,342006.1390882742,0,10390.32176436306 -5840,7239,13170,13169,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.761657954884805,9.427322723656044,0,10,2,53.64301016372136,0,1,1,2019,6,0,42,50,1,0,0,41.10245973363028,41.10245973363028,0,0,0,0,0,0,0,0,3.214827247485229,0,51.83,57.2,54.2,57.49,10,1,1,0,0,8,2,5,1,736.25,625333.5281756981,367271.5041350786,342006.1390882742,0,10390.32176436306 -5841,7240,13171,13172,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.784791105463625,7.563792602876672,5,4,-24.76353456521887,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.82045429918308,7.74646468612992,58.9,45.74,56.11,38.87,8.333333333333334,1,1,0,0,9,8,3,1,1426,4625720.189376215,1703317.382102582,1991672.881040214,0,3458.019194783123 -5841,7240,13172,13171,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.68702526659622,6.79295313739661,5,-4,37.95600209483374,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.958909860523055,6.752600362292655,56.11,38.87,58.9,45.74,8.333333333333334,1,1,0,0,7,8,3,1,1426,4625720.189376215,1703317.382102582,1991672.881040214,0,3458.019194783123 -5841,7241,13173,13174,13172,13171,1,0,30,0,0,0,1,1,-9,0,4,8.101390127951078,8.272854818891444,0,7,0,65.46111424577158,-9,1,1,2019,11,1,38,0,1,1,0,9.077413500586822,9.077413500586822,0,0,0,0,0,1,1,0,0,0,46.39,60.99,58.32,50.22,8.333333333333334,1,1,0,0,7,8,5,1,720.5,-169194.6466182663,20591.65895122398,0,0,3547.586773226854 -5841,7241,13174,13173,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.264791871056996,8.453323891163157,0,7,0,-92.76074789723536,-9,2,3,2019,10,1,32,0,1,1,0,12.79029089671042,12.79029089671042,0,0,0,0,0,1,1,0,0,0,58.32,50.22,46.39,60.99,8.333333333333334,1,1,0,0,8,8,5,1,720.5,-169194.6466182663,20591.65895122398,0,0,3547.586773226854 -5842,7242,13175,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.103165548599833,8.20513718618488,0,0,0,-977.5334977914829,0,-9,-9,2019,13,2,54,63,1,2,0,6.396649011999465,6.396649011999465,0,0,0,0,0,1,1,0,0,0,45.2,51.14,-9,-9,5,1,1,0,0,12,11,4,0,161,119352.9605913855,-17263.28160382134,0,0,1677.06935267708 -5843,7243,13176,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,6.980326758969693,7.53307800917376,0,0,0,-849.1452852228696,-9,-9,-9,2019,3,0,19,0,1,0,0,7.369491468790439,7.369491468790439,0,0,0,0,2,1,0,1,0,0,58.72,51.29,-9,-9,8.333333333333334,4,2,0,0,0,7,2,0,608,0,0,0,0,1578.952782646093 -5843,7243,13177,-9,13176,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.8203660308479,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,2,0,608,0,0,0,0,1578.952782646093 -5844,7244,13178,13179,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.977879681942757,7.979878467694519,0,17,5,31.85976643492598,0,2,3,2019,6,0,21,26,1,0,0,19.08050330777149,19.08050330777149,0,0,0,0,0,0,0,0,6.683634728680222,0,59.29,49.68,52.99,51.28,6.666666666666667,1,1,0,0,10,12,5,0,358.5,2370735.149648247,2173795.618178674,226993.2916238171,0,4390.946041680022 -5844,7244,13179,13178,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.924485267652202,8.937321614038092,0,18,-5,48.76345169993671,0,3,3,2019,8,0,82,42,1,0,0,13.02380531492588,13.02380531492588,0,0,0,0,0,0,0,0,0,0,52.99,51.28,59.29,49.68,8.333333333333334,1,1,0,0,8,12,5,0,358.5,2370735.149648247,2173795.618178674,226993.2916238171,0,4390.946041680022 -5845,7245,13180,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.214898582323047,7.38754863790605,0,0,-1028.253073406017,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.894704786761041,6.851633303026626,57.51,42.37,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,717,504285.080404382,264158.5546375087,341350.2371828886,0,2134.431816448137 -5846,7246,13181,-9,13183,13182,1,1,42,0,0,0,1,1,-9,0,5,8.638639097461457,8.416191086878969,0,0,0,-978.9474623738104,0,3,3,2019,6,0,39,39,1,0,0,14.02642617248156,14.02642617248156,0,0,0,0,2,1,1,0,3.371981769710567,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,5,4,1,151,593978.6437224335,261862.2796818722,172985.7903476583,49921.46658878907,2039.254807006778 -5846,7247,13182,13183,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,3.701692342446258,3.475741560331185,41,-2,18.48979555571681,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.466644909692853,3.615414767184039,43.92,24.34,53.63,20.04,6.666666666666667,2,3,0,0,0,5,2,1,1629.5,596532.834518821,0,605516.3183825307,0,1354.678299436989 -5846,7247,13183,13182,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,41,2,30.14890617418596,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,15.64135528056587,0,0,1,1,0,0,0,53.63,20.04,43.92,24.34,8.333333333333334,2,3,0,0,0,5,2,1,1629.5,596532.834518821,0,605516.3183825307,0,1354.678299436989 -5847,7248,13184,13185,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.620773078462367,7.58838356662195,56,3,20.69793475394263,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.120876858897875,7.272649488933871,57.76,54.51,51,46,0,1,1,0,0,8,1,3,1,995.5,873198.9202531634,622852.8118804106,199272.8849584921,0,3439.549429919537 -5847,7248,13185,13184,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.866462536285245,7.746321953732642,56,-3,-12.14487929664409,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.302232729737582,7.758297844969484,51,46,57.76,54.51,8,1,1,0,0,0,1,3,1,995.5,873198.9202531634,622852.8118804106,199272.8849584921,0,3439.549429919537 -5848,7249,13186,-9,13188,13187,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.3666781505274,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,768.6666666666666,1347.333052513849,38816.10613494387,0,0,1606.09026909577 -5848,7249,13187,13188,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,8.028181844764658,7.853379515459591,0,6,-2,-8.943487786274913,0,-9,-9,2019,7,0,43,39,1,0,0,8.107452497598929,8.107452497598929,0,0,0,0,0,1,1,0,0,0,53.59,49.64,44.34,44.44,8.333333333333334,1,1,0,0,5,2,3,0,768.6666666666666,1347.333052513849,38816.10613494387,0,0,1606.09026909577 -5848,7249,13188,13187,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,4.935630552638954,5.050869282271759,0,6,2,161.863127045371,0,2,3,2019,12,0,15,15,1,0,0,.962999008303421,.962999008303421,0,0,0,0,0,1,1,0,0,0,44.34,44.44,53.59,49.64,5,1,1,0,0,3,2,3,0,768.6666666666666,1347.333052513849,38816.10613494387,0,0,1606.09026909577 -5849,7250,13189,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,6.997945944419482,6.706363502340273,0,0,-1041.40640799656,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,1.746997397157785,0,19.20824850568323,0,1,1,0,4.741117367048123,6.755693165795043,53,45,-9,-9,8,1,1,0,0,0,6,2,1,514,182660.4037726776,13038.58310456255,187678.8925198205,0,1519.82071232257 -5850,7251,13190,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,5,0,0,0,0,0,-944.322726044063,0,3,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,41.34,37.85,-9,-9,6.666666666666667,4,2,1,0,0,8,1,0,918,0,0,0,0,1826.791634632233 -5851,7252,13191,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,8.483015166209308,8.537802786425781,0,0,0,-1054.617558274629,-9,1,2,2019,6,0,45,0,1,0,0,13.31348113846771,13.31348113846771,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,3,1,5,1,1010,402174.625870188,265441.6436525962,0,0,1712.013914692521 -5852,7253,13192,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.25504551738231,9.198541129865353,0,0,0,-985.5861953335661,0,2,2,2019,17,7,45,35,1,7,0,19.91061465022201,19.91061465022201,0,0,0,0,14.5,0,0,0,0,0,42.5,63.22,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,416,1370705.346147392,447037.5592830984,233064.9004057187,0,3643.423358649191 -5853,7254,13193,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.53577598371371,6.666869472111005,0,0,-975.8400277057932,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.712894287230399,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,947,596442.8040074246,288871.9836299505,145380.5921147659,0,782.0923538477459 -5854,7255,13194,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.996012271441195,8.628272191731536,5.9978406998219,0,0,-1012.591404596695,0,3,2,2019,12,0,47,53,1,0,0,17.41152399596502,17.41152399596502,0,0,0,0,0,0,0,0,4.367169789403529,6.341207140597637,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,1387,832961.6704392448,762447.8810868968,114317.7968625912,0,2683.115830558771 -5854,7256,13195,-9,-9,13194,1,0,21,0,0,0,2,2,1,0,4,7.446306392069403,7.252092472536755,0,0,0,-1059.642977829031,-9,1,1,2019,11,0,48,0,1,2,1,4.944046246126717,4.944046246126717,0,0,0,0,0,0,0,0,2.558046651029731,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,203,93161.07740185194,-58911.9945076492,0,0,665.5850539508582 -5855,7257,13196,13197,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.180189324760825,8.029693395892068,56,4,80.52761320012087,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.745792050003386,8.322467341997722,39.15,41.42,46.99,58.02,8.333333333333334,1,1,0,0,0,5,4,1,571,1112204.385468497,497330.9633568308,521010.861436815,0,2723.489142495443 -5855,7257,13197,13196,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.828747079836446,5.719425189555825,56,-4,-104.0934475471075,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.088946271494085,5.89408411351492,46.99,58.02,39.15,41.42,8.333333333333334,4,5,0,0,0,5,4,1,571,1112204.385468497,497330.9633568308,521010.861436815,0,2723.489142495443 -5856,7258,13198,13199,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,8.432396881557093,8.468366203222351,9,4,-62.35245431575751,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.046772117970384,8.562118512803766,57.16,56.15,57.33,53.46,0,1,1,0,0,7,10,4,1,1295,438884.7545020413,123093.2979670479,383739.0647469244,0,2986.387303831646 -5856,7258,13199,13198,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,9,-4,164.157289265409,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.102849133289896,0,57.33,53.46,57.16,56.15,10,1,1,0,0,7,10,4,1,1295,438884.7545020413,123093.2979670479,383739.0647469244,0,2986.387303831646 -5857,7259,13200,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.732363232221228,9.596978044440982,0,0,0,-1075.481544502187,0,-9,-9,2019,6,1,120,50,1,1,0,17.65333107427001,17.65333107427001,0,0,0,0,0,0,0,0,2.853496820170111,0,50.65,60.47,-9,-9,5,1,1,0,0,12,7,5,0,160,754904.1776837193,193079.3828754646,303965.9591889062,0,5393.971184760787 -5858,7260,13201,13204,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,9.389704587818901,9.320481838106121,0,9,-2,50.66023612712723,0,-9,-9,2019,7,0,50,37,1,0,0,25.24486001298017,25.24486001298017,0,0,0,0,0,0,0,0,0,0,54.61,51.04,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,409.75,1039581.110639014,870075.6916786688,273034.3152336655,113643.7991922555,6187.430457703871 -5858,7260,13202,-9,13201,13204,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.6922988103345,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,4,1,409.75,1039581.110639014,870075.6916786688,273034.3152336655,113643.7991922555,6187.430457703871 -5858,7260,13203,-9,13201,13204,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.6902162638323,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,409.75,1039581.110639014,870075.6916786688,273034.3152336655,113643.7991922555,6187.430457703871 -5858,7260,13204,13201,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,0,0,0,17,2,-14.48105463126925,0,2,2,2019,6,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,8.621713743300761,0,57.06,57.76,54.61,51.04,10,1,1,0,0,11,9,4,1,409.75,1039581.110639014,870075.6916786688,273034.3152336655,113643.7991922555,6187.430457703871 -5859,7261,13205,13206,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,9,6,88.1099332837767,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.562996518332683,0,52,48,32,42.49,7,1,1,0,0,0,6,3,1,1704.5,508108.1980867022,270096.6067493848,205826.4461924033,0,1632.044471455148 -5859,7261,13206,13205,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,7.838881949805702,7.641456839748054,0,28,-6,9.452693247027881,0,3,3,2019,24,11,35,35,1,11,0,8.748356800067315,8.748356800067315,0,0,0,0,2,1,1,0,0,0,32,42.49,52,48,5,1,1,0,0,11,6,3,1,1704.5,508108.1980867022,270096.6067493848,205826.4461924033,0,1632.044471455148 -5859,7262,13207,-9,13206,13205,1,0,31,0,0,0,1,1,-9,0,4,7.500840726469111,7.849414042793765,0,0,0,-923.3612236097111,0,3,3,2019,11,0,20,20,1,2,1,12.49421467860881,12.49421467860881,0,0,0,0,0,1,1,0,3.10214627992248,0,47,57,-9,-9,7,1,1,0,0,1,6,3,1,330,-31624.78311792243,14068.8184539455,0,0,1684.495016743245 -5860,7263,13208,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.146450710604412,8.352295350262606,3.205144273542746,0,0,-1037.49647477719,0,3,3,2019,7,0,45,45,1,0,0,8.410611500288418,8.410611500288418,0,0,0,0,0,1,1,0,0,3.98074329328626,51,48,-9,-9,5,1,1,0,0,9,5,4,1,1859,620093.1638923017,315762.4048633853,142494.7068314084,0,1893.08501493365 -5861,7264,13209,13210,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.217793613887778,6.557969290697072,51,-6,3.666969422658434,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,44.88445195500226,0,5.48,1,1,0,5.850352425302746,5.371630858790678,58.25,27.54,52.83,41.24,8.333333333333334,1,1,0,0,0,2,2,1,434.5,193048.6163668687,32460.14073528676,145722.0473781359,0,3260.133772394883 -5861,7264,13210,13209,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.217109966718716,6.037182262103347,51,6,-101.4574831406453,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,.2499930893523374,0,0,1,1,0,2.835484151489671,6.126791396922136,52.83,41.24,58.25,27.54,8.333333333333334,1,1,0,0,0,2,2,1,434.5,193048.6163668687,32460.14073528676,145722.0473781359,0,3260.133772394883 -5861,7265,13211,13213,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.725104398532624,7.934863390081511,0,4,-1,-11.68366706746356,-9,-9,-9,2019,14,4,44,0,1,4,0,6.384294979115488,6.384294979115488,0,0,0,0,27,1,1,0,0,0,33.83,63.9,43.57,62.68,5,1,1,0,0,2,2,3,1,496,-19100.22919158668,0,0,0,1601.090026488703 -5861,7265,13212,-9,-9,13213,1,1,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1083.237172685262,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,496,-19100.22919158668,0,0,0,1601.090026488703 -5861,7265,13213,13211,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.438080410151,7.465335983505639,0,4,1,69.88824936190613,0,-9,-9,2019,12,0,16,12,1,0,0,11.66027307295035,11.66027307295035,0,0,0,0,0,1,1,0,0,0,43.57,62.68,33.83,63.9,6.666666666666667,1,1,0,0,1,2,3,1,496,-19100.22919158668,0,0,0,1601.090026488703 -5862,7266,13214,13216,-9,-9,1,1,44,0,4,0,1,1,-9,0,4,9.110094470243476,8.671797096872767,0,7,7,110.854147715661,0,-9,-9,2019,9,0,30,30,1,1,0,29.89927470540117,29.89927470540117,0,0,0,0,0,1,1,0,0,0,52,55,39.07,39.06,8,2,3,0,0,1,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5862,7266,13215,-9,13216,13214,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-935.0319029172405,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5862,7266,13216,13214,-9,-9,1,0,37,0,4,0,2,2,-9,0,3,0,0,0,18,-7,28.54510116928461,0,2,2,2019,11,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39.07,39.06,52,55,5,2,3,0,0,0,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5862,7266,13217,-9,13216,13214,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-980.8107521674775,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5862,7266,13218,-9,13216,13214,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-980.1783017878951,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5862,7266,13219,-9,13216,13214,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1062.529556379067,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,562.3333333333334,164979.4342040865,57677.01892566247,144649.9217256022,114963.8228719066,4624.127632604423 -5863,7267,13220,13221,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,3.96535848075832,3.751298814670921,5,0,-8.696524947715222,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,3.846521516408514,3.704976110258385,61.89,36.17,57.25,14.37,10,1,1,0,0,0,9,2,1,347,234860.1016678658,-28584.94321334477,244744.0402591283,0,1871.865227379747 -5863,7267,13221,13220,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.871291967546784,6.663214637527148,60,0,-36.35085943360816,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,76.58647300729048,0,0,1,1,0,0,6.458530901103775,57.25,14.37,61.89,36.17,8.333333333333334,1,1,0,0,0,9,2,1,347,234860.1016678658,-28584.94321334477,244744.0402591283,0,1871.865227379747 -5864,7268,13222,-9,13225,13223,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.283195302299,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,348,-46674.693992553,5138.528636510251,60999.17046777661,41050.50765661278,2590.691820013737 -5864,7268,13223,13225,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.362747891433479,8.225377762413158,0,6,-3,-39.18234706246128,0,2,2,2019,22,10,35,44,1,10,0,12.25082675829612,12.25082675829612,0,0,0,0,5.48,1,1,0,0,0,36.78,46.67,40.96,20.51,1.666666666666667,1,1,0,1,7,13,3,1,348,-46674.693992553,5138.528636510251,60999.17046777661,41050.50765661278,2590.691820013737 -5864,7268,13224,-9,13225,13223,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-859.6293095011602,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,348,-46674.693992553,5138.528636510251,60999.17046777661,41050.50765661278,2590.691820013737 -5864,7268,13225,13223,-9,-9,1,0,42,1,2,0,3,3,-9,1,1,0,0,0,6,3,20.64411525692226,0,2,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,40.96,20.51,36.78,46.67,3.333333333333333,1,1,0,1,5,13,3,1,348,-46674.693992553,5138.528636510251,60999.17046777661,41050.50765661278,2590.691820013737 -5865,7269,13226,13228,-9,-9,1,0,29,2,6,0,2,2,-9,0,4,0,0,0,7,-6,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.03,40.23,44.93,54.76,10,1,1,0,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13227,-9,13226,13228,1,0,4,2,6,1,3,0,-9,0,4,0,0,0,0,0,-965.2459790566064,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13228,13226,-9,-9,1,1,35,2,6,0,2,2,-9,0,4,0,0,0,7,6,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.93,54.76,68.03,40.23,5,1,1,1,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13229,-9,13226,13228,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1135.331480260257,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13230,-9,13226,13228,1,0,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1026.188436896172,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13231,-9,13226,13228,1,0,10,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1016.526875003799,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13232,-9,13226,13228,1,0,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1078.023103198789,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5865,7269,13233,-9,13226,13228,1,0,11,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1062.178237331063,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,460.75,-42069.26132042157,0,0,0,1983.138877498444 -5866,7270,13234,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.980824937844934,7.798227744852859,0,0,0,-1127.407664393,0,3,3,2019,13,1,38,38,1,1,0,7.898567618974027,7.898567618974027,0,0,0,0,0,1,1,0,3.712811196943604,0,44.96,52.64,-9,-9,1.666666666666667,1,1,0,0,11,4,3,1,473,161278.3359892921,14186.04339143992,0,0,1021.067986410284 -5867,7271,13235,13236,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,6.610264389589186,6.944251661782856,5.198392908081433,36,2,-11.22458174431579,0,3,3,2019,11,0,21,16,1,0,0,4.238936565868493,4.238936565868493,0,0,0,0,0,1,1,0,0,5.537213355627247,46.67,55.57,42.69,35.95,5,2,3,0,0,8,4,3,1,817.5,133157.4718297712,103405.6707238529,0,0,992.8158711201817 -5867,7271,13236,13235,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.255643178316687,7.327927784009702,4.028154368943239,43,-2,60.99466772465131,0,3,3,2019,12,0,23,23,1,0,0,5.15393078709802,5.15393078709802,0,0,0,.4063496099398662,0,1,1,0,0,4.308246256443555,42.69,35.95,46.67,55.57,3.333333333333333,2,3,0,0,11,4,3,1,817.5,133157.4718297712,103405.6707238529,0,0,992.8158711201817 -5868,7272,13237,-9,13238,13239,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-954.8898453403719,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,684.75,121886.8990168402,-5416.377675461891,0,0,6292.90123042437 -5868,7272,13238,13239,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,0,0,17,4,-17.92504591234631,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.173239185579346,0,54.79,55.86,57.16,34.57,8.333333333333334,1,1,0,0,7,8,5,1,684.75,121886.8990168402,-5416.377675461891,0,0,6292.90123042437 -5868,7272,13239,13238,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.767194341585501,9.651337882839854,0,8,-4,61.28815593301211,0,-9,-9,2019,12,3,40,40,1,3,0,48.72986834733804,48.72986834733804,0,0,0,0,0,0,0,0,0,0,57.16,34.57,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,684.75,121886.8990168402,-5416.377675461891,0,0,6292.90123042437 -5868,7272,13240,-9,13238,13239,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.513941847926,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,684.75,121886.8990168402,-5416.377675461891,0,0,6292.90123042437 -5869,7273,13241,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.678457511165544,7.678855556573626,0,0,0,-955.0316165487744,0,3,3,2019,16,6,30,30,1,6,0,6.82391016224537,6.82391016224537,0,0,0,0,7,0,0,0,0,0,37.36,57.32,-9,-9,6.666666666666667,1,1,0,0,8,2,3,1,804,95471.50176633669,-31250.57479976187,55733.18296706994,33966.57015476208,519.9318411337206 -5870,7274,13242,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1066.785659739796,0,-9,-9,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,14.22,48.74,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,1399,-40931.49236759663,0,0,0,859.779993297696 -5871,7275,13243,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.315957630023206,8.415540111963811,0,0,0,-838.9457945203918,0,3,3,2019,8,0,36,36,1,0,0,12.90072906346818,12.90072906346818,0,0,0,0,0,0,0,0,4.516642972121157,0,56.52,48.31,-9,-9,6.666666666666667,1,1,0,0,9,10,4,1,431,427233.2481924955,289616.7338821791,172348.0293053575,4924.434795214882,1495.466593075855 -5872,7276,13244,13245,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,7.338546664722562,7.887732265861796,6.513302919076017,13,12,106.2097725094124,0,3,3,2019,10,0,36,49,1,1,0,4.574670704219275,4.574670704219275,0,0,0,0,0,1,1,0,4.44226266237712,6.177526527245187,53,47,47.49,35.16,7,3,4,0,0,1,8,4,0,1044.5,1036471.156362736,559710.9050106347,436643.6995798526,0,3228.479300880324 -5872,7276,13245,13244,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.769382757833917,7.701754109555043,0,9,-12,-5.368442955104086,0,-9,-9,2019,3,0,39,45,1,0,0,6.30471413842395,6.30471413842395,0,0,0,0,0,1,1,0,0,0,47.49,35.16,53,47,8.333333333333334,3,4,0,0,7,8,4,0,1044.5,1036471.156362736,559710.9050106347,436643.6995798526,0,3228.479300880324 -5873,7277,13246,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.408077918997664,7.631841380719834,0,0,0,-1031.190749371073,0,2,3,2019,24,11,47,45,1,11,0,4.380418014582327,4.380418014582327,0,0,0,0,27,0,0,0,0,0,36.9,41.55,-9,-9,1.666666666666667,2,3,0,1,9,8,3,0,419,-170822.623384407,-62726.08982968424,0,0,795.6282984508279 -5873,7278,13247,-9,13246,-9,1,1,29,0,0,0,1,1,-9,0,4,8.79157381223186,8.724618882539245,0,0,0,-964.1195860016899,0,2,-9,2019,6,1,37,38,1,1,1,18.80269487810272,18.80269487810272,0,0,0,0,0,0,0,0,3.505489391010525,0,48.28,60.18,-9,-9,8.333333333333334,2,3,0,0,5,8,5,0,504,104179.3131049262,71793.72109086537,0,0,1826.267771956087 -5874,7279,13248,-9,13249,13250,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-961.98488640608,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,5,1,912.6666666666666,1748931.978895379,1437323.744137107,344317.0003489633,91005.8709793031,4769.119447822514 -5874,7279,13249,13250,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.742401269305789,8.652263312148996,0,18,0,14.47610610404459,0,3,2,2019,11,0,33,31,1,0,0,24.15073303769939,24.15073303769939,0,0,0,0,0,1,1,0,2.628626451127977,0,43.43,54.3,52.54,48.71,6.666666666666667,2,3,0,0,12,4,5,1,912.6666666666666,1748931.978895379,1437323.744137107,344317.0003489633,91005.8709793031,4769.119447822514 -5874,7279,13250,13249,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,8.702278710179158,9.113938514638679,0,18,9,-69.04118174391421,0,3,3,2019,6,0,43,50,1,0,0,18.13535034944918,18.13535034944918,0,0,0,0,2,1,1,0,0,0,52.54,48.71,43.43,54.3,8.333333333333334,2,3,0,0,11,4,5,1,912.6666666666666,1748931.978895379,1437323.744137107,344317.0003489633,91005.8709793031,4769.119447822514 -5875,7280,13251,13252,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,1,-10,56.56007544504937,1,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3139526228974818,0,53.54,38.94,54,46,10,1,1,0,0,4,8,2,1,568,704061.7652277625,225819.4327756265,261451.4754165683,0,2363.863644557126 -5875,7280,13252,13251,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.319630366685296,6.983567171834199,1,10,-56.50755921615045,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.346629359734284,6.910174673108028,54,46,53.54,38.94,7,1,1,0,0,5,8,2,1,568,704061.7652277625,225819.4327756265,261451.4754165683,0,2363.863644557126 -5876,7281,13253,13254,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,4.439827985700011,4.858038941621083,52,1,-41.31004047596386,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.298410853116682,4.578479767602003,58.32,50.22,54.43,21.57,8.333333333333334,1,1,0,0,0,1,2,1,907.5,319082.8716713678,274497.7671116166,111253.6604852635,0,2054.438453179831 -5876,7281,13254,13253,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,4.939394355015586,4.889104556831275,8,-1,-25.89147104981062,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.345203116587943,0,0,1,1,0,2.952539989097811,4.667549085104837,54.43,21.57,58.32,50.22,10,1,1,0,0,0,1,2,1,907.5,319082.8716713678,274497.7671116166,111253.6604852635,0,2054.438453179831 -5877,7282,13255,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.365017213070242,8.243630560609212,0,0,0,-1004.279045232391,0,2,2,2019,17,6,40,14,1,6,0,10.32425801792627,10.32425801792627,0,0,0,0,0,1,1,0,7.656270867523006,0,36.19,47.37,-9,-9,5,2,3,0,0,8,8,4,1,1877,43451.6922229798,0,0,0,2420.009556156936 -5878,7283,13256,13257,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.765376647568308,9.573530476770834,0,3,-2,-169.9423239183701,0,-9,-9,2019,11,0,40,40,1,2,0,48.73088146494582,48.73088146494582,0,0,0,0,0,0,0,0,6.624769241650895,0,49,56,57.16,56.15,7,2,3,0,0,1,8,5,1,356,1170885.615227294,168275.8227882282,1001382.533623432,488411.8606330613,10563.34151078541 -5878,7283,13257,13256,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.433173844391385,9.714549779557762,0,3,2,-8.113004238940345,0,3,3,2019,6,0,50,45,1,0,0,30.00975413283966,30.00975413283966,0,0,0,0,0,0,0,0,8.386025643894724,0,57.16,56.15,49,56,8.333333333333334,2,3,0,0,9,8,5,1,356,1170885.615227294,168275.8227882282,1001382.533623432,488411.8606330613,10563.34151078541 -5879,7284,13258,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1208.213334458142,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.82,57.78,-9,-9,5,1,1,0,0,0,9,1,0,462,283398.3349360169,0,200296.6397161915,21061.08648786243,523.5944568483101 -5880,7285,13259,13260,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.198735887262075,8.103003833937485,0,25,-6,51.17567983755717,0,2,2,2019,11,0,48,55,1,0,0,9.701053077956212,9.701053077956212,0,0,0,0,2,0,0,0,0,0,55.19,54.26,45.18,54.77,8.333333333333334,1,1,0,0,10,7,4,1,953,51681.73902350235,0,0,0,1630.597484999002 -5880,7285,13260,13259,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.255698316482386,6.050659016824824,0,25,6,-179.4497383731116,0,2,2,2019,12,1,6,6,1,1,0,10.22675299038215,10.22675299038215,0,0,0,0,14.5,0,0,0,0,0,45.18,54.77,55.19,54.26,8.333333333333334,1,1,0,0,10,7,4,1,953,51681.73902350235,0,0,0,1630.597484999002 -5880,7286,13261,-9,13260,13259,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1050.775692554816,-9,2,2,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,3.083986717074259,0,39.08,57.81,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,1539,-45097.86201869632,0,0,0,-643.5625523342674 -5881,7287,13262,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.473391483293971,6.525134173746308,0,0,-995.517423024218,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.625986960558496,6.499918491372617,66.52,32.82,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,1361,215919.905585021,17699.51559965438,191701.9920023913,32877.06866746395,1239.857791872854 -5881,7288,13263,-9,-9,13262,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1078.063304962507,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.66,24.85,-9,-9,5,1,1,0,0,0,9,1,1,443,-177318.0490459142,0,0,0,300.0930808533475 -5882,7289,13264,13265,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,6.686011655474857,6.930476104573617,0,5,-2,40.16782887704652,0,-9,-9,2019,10,0,20,30,1,0,0,5.457755465363943,5.457755465363943,0,0,0,0,0,0,0,0,0,0,48.84,35.62,48.77,60.16,1.666666666666667,1,1,0,0,6,4,4,1,2086,272939.2954875986,90301.13162073339,240848.8068738863,0,4112.692816569812 -5882,7289,13265,13264,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.487810939065653,8.527764583126975,0,5,2,-57.52837072464636,0,-9,-9,2019,13,2,40,40,1,2,0,18.83339622970699,18.83339622970699,0,0,0,0,7,0,0,0,7.937284709087862,0,48.77,60.16,48.84,35.62,5,1,1,0,0,8,4,4,1,2086,272939.2954875986,90301.13162073339,240848.8068738863,0,4112.692816569812 -5883,7290,13266,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.02223730122094,8.033479287027573,0,0,0,-1057.204230722155,0,3,3,2019,6,0,39,39,1,0,0,9.565787218210922,9.565787218210922,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,2707,77326.96992881801,92335.59786633268,149232.228600219,30560.44032810282,1006.457982550635 -5884,7291,13267,13269,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,8.472185375977046,9.149666189809619,8.075056456708305,26,10,-76.39651174672402,0,3,3,2019,22,10,30,40,1,10,0,16.16401069872983,16.16401069872983,0,0,0,0,0,1,1,0,3.358200224187956,8.315109330272032,35.99,45.59,59.14,46.97,3.333333333333333,1,1,0,0,11,9,4,1,460.75,1862984.501335677,1855099.473267392,0,0,5561.944062729124 -5884,7291,13268,-9,13269,13267,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1021.52409754051,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,460.75,1862984.501335677,1855099.473267392,0,0,5561.944062729124 -5884,7291,13269,13267,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.168339007172161,7.890396948626574,0,26,-10,-115.7007828588515,0,-9,2,2019,15,3,30,38,1,3,0,11.70422516055103,11.70422516055103,0,0,0,0,0,1,1,0,0,0,59.14,46.97,35.99,45.59,8.333333333333334,1,1,0,0,10,9,4,1,460.75,1862984.501335677,1855099.473267392,0,0,5561.944062729124 -5884,7291,13270,-9,13269,13267,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1035.193710419388,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,4,1,460.75,1862984.501335677,1855099.473267392,0,0,5561.944062729124 -5885,7292,13271,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.492913399675041,7.447571311555823,0,0,0,-960.2321351489979,0,2,2,2019,5,0,39,45,1,0,0,5.582987981350703,5.582987981350703,0,0,0,0,0,1,1,0,0,0,56.72,49.75,-9,-9,10,1,1,0,0,11,2,3,0,29,234325.9462041946,-3594.088739696432,65465.88573977679,0,1253.015916766858 -5886,7293,13272,13273,-9,-9,1,0,51,0,0,0,2,2,-9,1,4,5.779738910524948,5.894981292717847,0,31,-4,18.98020981747385,0,3,3,2019,6,0,10,10,1,0,0,4.706337829958979,4.706337829958979,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,2,2,2,1,1736,-34625.32345257143,0,0,0,1604.843342488158 -5886,7293,13273,13272,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,31,4,-86.10842417575172,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.548081631521737,0,57.16,56.15,62.49,55.09,1.666666666666667,1,1,0,0,9,2,2,1,1736,-34625.32345257143,0,0,0,1604.843342488158 -5886,7294,13274,-9,13272,13273,1,1,26,0,0,0,2,2,-9,0,5,8.279061833950168,8.267023823989053,0,0,0,-1019.097155972002,0,2,2,2019,10,0,39,45,1,0,1,11.25893533109474,11.25893533109474,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,993.6666666666666,36220.5197720122,0,0,0,1993.456806236512 -5886,7294,13275,-9,-9,13274,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-978.5549862049112,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,4,1,993.6666666666666,36220.5197720122,0,0,0,1993.456806236512 -5886,7294,13276,-9,-9,13274,1,1,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1021.206991632543,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,6,-9,0,0,2,4,1,993.6666666666666,36220.5197720122,0,0,0,1993.456806236512 -5886,7295,13277,-9,-9,-9,1,0,22,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1038.774575134231,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1177,100017.0921549129,0,0,0,1025.519057331917 -5887,7296,13278,13279,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.22909130197379,7.030589485198562,20,0,-80.09648373458967,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.522372359388992,6.964813655103548,45,37,43.83,48.44,10,1,1,0,0,6,5,3,1,1994.5,624471.5104445254,308661.6705808268,253888.503505483,0,3931.153806086372 -5887,7296,13279,13278,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.651888756791842,7.757166277959426,3.680410068518912,18,0,53.64035897015011,0,-9,-9,2019,20,9,30,-9,1,9,0,9.919150328230714,9.919150328230714,0,0,0,0,0,1,1,0,8.043386167956426,3.943990532472566,43.83,48.44,45,37,6.666666666666667,1,1,0,0,12,5,3,1,1994.5,624471.5104445254,308661.6705808268,253888.503505483,0,3931.153806086372 -5888,7297,13280,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,8.715800518937884,8.887744686232772,0,0,-994.3299456433762,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.461350273167551,8.428302323025475,49.95,57.02,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,4653,2682561.242818984,704290.8062473392,2000835.854671841,0,3766.65071581376 -5889,7298,13281,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,7.625100681793696,7.671504949793366,0,0,-983.4785026835397,0,3,3,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1.674404033774075,7.859510021369204,41.82,33.78,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,1716,194648.4136440833,24700.08573103725,144965.4981969598,0,789.1809985471618 -5890,7299,13282,-9,13284,13283,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.219130560439,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,720.3333333333334,1191835.040097628,1112705.568675088,240351.5599415785,73733.01624403746,3843.271371584485 -5890,7299,13283,13284,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.881245228691551,8.812222425845574,0,22,-3,-99.91094806323051,0,3,3,2019,1,0,38,45,1,0,0,19.66213649795136,19.66213649795136,0,0,0,0,0,1,1,0,.6099755690106687,0,50.97,44.22,45.87,42.84,8.333333333333334,1,1,0,0,9,6,5,1,720.3333333333334,1191835.040097628,1112705.568675088,240351.5599415785,73733.01624403746,3843.271371584485 -5890,7299,13284,13283,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,7.957570929816908,8.021734854870676,0,22,3,81.95880257097919,0,3,3,2019,15,4,30,45,1,4,0,14.08044658818625,14.08044658818625,0,0,0,0,7,1,1,0,1.740499114103879,0,45.87,42.84,50.97,44.22,1.666666666666667,1,1,0,0,8,6,5,1,720.3333333333334,1191835.040097628,1112705.568675088,240351.5599415785,73733.01624403746,3843.271371584485 -5890,7300,13285,-9,13284,13283,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1016.723892751766,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,483,-113267.9334499932,0,0,0,0 -5891,7301,13286,-9,13287,-9,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.159936111649,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,562.2,71825.87606288368,-10223.69268641163,0,0,4027.733012049688 -5891,7301,13287,13289,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,7.011242645336521,7.529759632082676,6.642435440963357,6,12,-46.64584888675284,0,-9,-9,2019,8,0,16,16,1,0,0,7.217811556051461,7.217811556051461,0,0,0,0,0,1,1,0,7.156177550931861,0,48.67,59.26,51.83,57.2,10,1,1,0,0,5,2,3,0,562.2,71825.87606288368,-10223.69268641163,0,0,4027.733012049688 -5891,7301,13288,-9,13287,13289,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.3734821572808,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,562.2,71825.87606288368,-10223.69268641163,0,0,4027.733012049688 -5891,7301,13289,13287,-9,-9,1,1,25,1,3,0,2,2,-9,0,4,8.044878019828284,8.342050704623526,0,6,-12,7.184903833316774,0,2,3,2019,8,1,44,43,1,1,0,8.114477580745358,8.114477580745358,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.67,59.26,6.666666666666667,1,1,0,0,8,2,3,0,562.2,71825.87606288368,-10223.69268641163,0,0,4027.733012049688 -5891,7301,13290,-9,13287,13289,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.2709187264059,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,562.2,71825.87606288368,-10223.69268641163,0,0,4027.733012049688 -5892,7302,13291,13292,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,32,-1,0,0,-9,-9,2019,6,0,0,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.2,47.14,57.16,56.15,10,2,3,0,0,12,8,1,1,1182,317134.440564964,0,354370.9887296354,0,56.55552445781618 -5892,7302,13292,13291,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,32,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.386052834475672,0,57.16,56.15,65.2,47.14,8.333333333333334,2,3,0,0,10,8,1,1,1182,317134.440564964,0,354370.9887296354,0,56.55552445781618 -5892,7303,13293,-9,13291,13292,1,0,31,0,0,0,1,1,-9,0,4,0,6.747085455130724,6.258983069746002,0,0,-1079.290321949703,0,2,2,2019,14,3,0,9,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6.949499868089137,38.53,62.21,-9,-9,6.666666666666667,2,3,1,0,6,8,2,1,341,-56916.5265741093,41072.76544720848,0,0,-314.0607562341375 -5893,7304,13294,13295,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.364035522886066,6.980294392052805,5.244166316343877,51,-4,23.14013999874385,0,3,3,2019,10,0,20,20,1,0,0,8.95016277821002,8.95016277821002,0,0,0,0,0,1,1,0,0,5.095460187651801,58.72,51.29,53.97,45.88,8.333333333333334,1,1,0,0,12,10,3,1,677,1141794.142959811,547417.9513405267,256140.7883170869,0,2747.86375965332 -5893,7304,13295,13294,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,7.59201625018952,7.417057823223517,0,51,4,36.398086474222,0,3,3,2019,7,0,45,45,1,0,0,4.340558930641001,4.340558930641001,0,0,0,0,0,1,1,0,0,0,53.97,45.88,58.72,51.29,3.333333333333333,1,1,0,0,13,10,3,1,677,1141794.142959811,547417.9513405267,256140.7883170869,0,2747.86375965332 -5894,7305,13296,-9,13297,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.410378074928992,7.648808237892108,0,0,-994.2847011540697,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.760425648775835,57.06,57.76,-9,-9,10,1,1,0,0,0,5,3,1,1011,197558.9877507909,-70026.98714152465,0,0,847.6479096983944 -5894,7306,13297,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,8.042404372081283,7.898743279072559,0,0,-1066.390577329577,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,3.191393231299631,0,0,1,1,0,7.986573124403766,7.746421776780593,65,29.3,-9,-9,10,1,1,0,0,0,5,4,1,534,523020.9729600322,312504.5498658475,233277.431185896,0,2721.351189739456 -5895,7307,13298,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.333135212132591,8.847274808020169,6.660647549765109,0,0,-920.9554529605726,0,2,2,2019,12,0,40,35,1,0,0,13.34313464986976,13.34313464986976,0,0,0,0,2,0,0,0,6.923294388231112,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,214,259425.0213013129,117969.825310118,180465.7722472507,101732.011465955,2425.26691999366 -5895,7308,13299,-9,13298,-9,1,0,23,0,0,0,2,2,-9,0,5,7.738072310381982,7.971796711348768,0,0,0,-1095.599536179512,-9,2,-9,2019,12,0,42,0,1,0,1,6.216369349613009,6.216369349613009,0,0,0,0,0,0,0,0,2.66609654432131,0,40.95,63.66,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1177,-29196.3324209585,0,0,0,1400.913651560205 -5896,7309,13300,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,4.085446028724919,3.877072356922633,0,0,-966.4625922408623,0,3,3,2019,16,0,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.699985202558663,57.75,12.77,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,154,172439.1063616279,41028.36131697024,0,0,907.8774585795901 -5897,7310,13301,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.959769471377887,6.993507266515594,0,0,-959.7410951400175,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.874257985524448,51.25,46.55,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,847,214707.7110013237,184078.4488764442,30441.80299865541,0,1623.797363541753 -5898,7311,13302,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1152.435702738751,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,4.152165174220464,0,0,1,1,0,0,0,41.05,20.3,-9,-9,5,1,1,0,0,0,12,1,0,2484,-131331.5965587572,0,0,0,1702.570574027901 -5899,7312,13303,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.33862776270945,6.412062169159798,0,0,-1056.971667522284,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,6.386847806643459,41.12,37.78,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,423,105542.2914595158,80064.4210372286,0,0,1228.153745993528 -5900,7313,13304,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1060.72020965067,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.97,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,1245,608930.415308736,0,503586.7074441415,0,679.7578872027811 -5901,7314,13305,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.8044743048208,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,4.706506928673367,0,0,0,1,1,0,0,0,54.09,22.81,-9,-9,5,1,1,0,0,0,1,1,0,783,63858.57008777008,0,0,0,1537.765544080218 -5902,7315,13306,13307,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.813049771487508,8.706268883155966,0,42,-4,-12.05976461003814,0,2,3,2019,6,0,41,44,1,0,0,14.9461093225113,14.9461093225113,0,0,0,0,0,0,0,0,6.53628622717534,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,1,247.5,6025696.361707304,919124.4203948561,3555643.267730015,0,3493.455685362029 -5902,7315,13307,13306,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.941038681181863,8.238316474798763,0,42,4,33.64093522583439,0,3,3,2019,11,0,31,6,1,0,0,11.25537052365539,11.25537052365539,0,0,0,0,0,0,0,0,.2827727750698787,0,58.32,50.22,57.16,56.15,6.666666666666667,1,1,0,0,11,7,5,1,247.5,6025696.361707304,919124.4203948561,3555643.267730015,0,3493.455685362029 -5902,7316,13308,-9,13307,13306,1,1,33,0,0,0,2,2,-9,0,3,4.119312151198922,4.307398369328683,0,0,0,-1041.896158566359,0,2,2,2019,25,11,3,35,1,11,1,2.006476678932184,2.006476678932184,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,3.333333333333333,1,1,0,1,6,7,2,1,467,-15979.21442636315,0,0,0,920.0216182187692 -5903,7317,13309,13310,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.645558403859988,7.799709689297677,0,5,0,-35.88519613579173,0,-9,-9,2019,12,0,37,32,1,2,0,7.397041242948512,7.397041242948512,0,0,0,0,0,0,0,0,0,0,33.87,50.72,32.13,54.55,1.666666666666667,1,1,0,0,3,12,3,1,846,-25217.94198480516,34842.4011434055,25888.09277718122,45707.29284240407,1461.102239878262 -5903,7317,13310,13309,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,6.921313485763149,6.677881327537905,0,5,0,120.3441608454922,0,2,3,2019,14,2,16,18,1,2,0,8.382024915987904,8.382024915987904,0,0,0,0,14.5,0,0,0,4.921662620365397,0,32.13,54.55,33.87,50.72,5,1,1,0,0,2,12,3,1,846,-25217.94198480516,34842.4011434055,25888.09277718122,45707.29284240407,1461.102239878262 -5904,7318,13311,13314,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,7.952015270253432,8.322388513911648,0,22,0,144.015169968629,0,3,-9,2019,10,0,70,-9,1,0,0,4.909350404556021,4.909350404556021,0,0,0,0,0,1,1,0,1.129799549880932,0,41.82,52.18,56.05,52.98,5,1,1,0,0,11,6,4,1,979,400983.0118293945,154495.6096813043,241018.2476232265,106833.1651131845,3691.477677724723 -5904,7318,13312,-9,13314,13311,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.183880509576,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,979,400983.0118293945,154495.6096813043,241018.2476232265,106833.1651131845,3691.477677724723 -5904,7318,13313,-9,13314,13311,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.332074748837,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,979,400983.0118293945,154495.6096813043,241018.2476232265,106833.1651131845,3691.477677724723 -5904,7318,13314,13311,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.562210195002857,8.355495334236346,0,22,0,51.5189194099722,0,3,2,2019,9,0,20,47,1,0,0,25.17903840770748,25.17903840770748,0,0,0,0,0,1,1,0,0,0,56.05,52.98,41.82,52.18,8.333333333333334,1,1,0,0,11,6,4,1,979,400983.0118293945,154495.6096813043,241018.2476232265,106833.1651131845,3691.477677724723 -5905,7319,13315,13316,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.552582794583815,8.504712751459149,0,8,2,-20.26840355329661,0,2,2,2019,5,1,45,39,1,1,0,13.07794208832611,13.07794208832611,0,0,0,0,0,0,0,0,0,0,54.1,59.11,55.36,54.24,10,1,1,0,0,9,5,5,1,910.3333333333334,193903.0188747571,18398.94768182631,575007.2447942848,403228.4214537792,6215.952250336083 -5905,7319,13316,13315,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.797433338254237,9.558947812336411,0,8,-2,-93.50689655830351,0,2,2,2019,7,0,45,50,1,0,0,40.31891408420866,40.31891408420866,0,0,0,0,0,0,0,0,1.603177662133636,0,55.36,54.24,54.1,59.11,8.333333333333334,1,1,0,0,9,5,5,1,910.3333333333334,193903.0188747571,18398.94768182631,575007.2447942848,403228.4214537792,6215.952250336083 -5905,7319,13317,-9,13315,13316,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.405013759729,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,5,1,910.3333333333334,193903.0188747571,18398.94768182631,575007.2447942848,403228.4214537792,6215.952250336083 -5906,7320,13318,13319,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.002246307156661,7.735217184792181,0,1,-5,130.1478225228113,-9,2,2,2019,15,3,41,0,1,3,0,8.208732269080459,8.208732269080459,0,0,0,0,0,0,0,0,5.043946038862591,0,35.77,47.41,49,58,6.666666666666667,1,1,0,0,4,11,4,1,1640,95176.06857042573,-7341.996106143964,162808.3410581593,84487.59609799276,2683.830844136032 -5906,7320,13319,13318,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.116486940642451,8.342467480489891,0,1,5,-49.1644857721416,-9,-9,-9,2019,10,0,37,0,1,1,0,9.577648309841551,9.577648309841551,0,0,0,0,0,0,0,0,0,0,49,58,35.77,47.41,7,1,1,0,0,1,11,4,1,1640,95176.06857042573,-7341.996106143964,162808.3410581593,84487.59609799276,2683.830844136032 -5907,7321,13320,-9,13322,13321,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1072.914958392244,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,3,0,355.6666666666667,217376.2120347397,101315.2958962695,72615.87475192481,52160.4419619539,1542.38859341702 -5907,7321,13321,13322,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.995120427298614,8.270837691463104,0,11,4,-4.810319915601529,0,2,2,2019,22,9,40,40,1,9,0,8.630308333630978,8.630308333630978,0,0,0,0,0,1,1,0,0,0,39.02,52.6,32.74,24.49,5,1,1,0,1,12,6,3,0,355.6666666666667,217376.2120347397,101315.2958962695,72615.87475192481,52160.4419619539,1542.38859341702 -5907,7321,13322,13321,-9,-9,1,0,43,0,1,0,2,2,-9,1,1,0,0,0,11,-4,-56.60358803302166,0,-9,3,2019,16,7,0,16,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,24.49,39.02,52.6,1.666666666666667,1,1,0,1,4,6,3,0,355.6666666666667,217376.2120347397,101315.2958962695,72615.87475192481,52160.4419619539,1542.38859341702 -5908,7322,13323,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,9.149839296019875,9.081651081656979,0,0,0,-985.1492902451591,0,-9,-9,2019,12,0,42,42,1,0,0,20.7884339819728,20.7884339819728,0,0,0,0,0,1,1,0,0,0,35.09,43.47,-9,-9,6.666666666666667,1,1,0,0,3,12,5,1,919,797488.9207549575,752303.6626166734,172049.7615149668,0,3418.393793918424 -5909,7323,13324,13325,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,9.43568857076834,9.975628263986428,7.98194358538098,44,-2,29.05543383570856,0,-9,-9,2019,9,1,15,15,1,1,0,81.6468447062354,81.6468447062354,1,3.299413170817461,8.29271987622192,23.80256484928202,2,1,1,0,9.869068249370549,8.299675026067735,49.56,23.35,47.2,34.16,8.333333333333334,1,1,0,0,11,9,5,1,387.5,1731584.489008731,1289401.852579996,603117.4869588462,191966.6220833955,18881.49292840383 -5909,7323,13325,13324,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,8.308200568984963,8.435328944264839,44,2,-150.3711253069715,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,8.893998634651624,47.2,34.16,49.56,23.35,6.666666666666667,2,3,0,0,0,9,5,1,387.5,1731584.489008731,1289401.852579996,603117.4869588462,191966.6220833955,18881.49292840383 -5910,7324,13326,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,2,8.665114229342153,8.80116329347025,6.092689781950171,0,0,-1021.993942213055,0,3,3,2019,16,5,46,48,1,5,0,15.30995647545948,15.30995647545948,0,0,0,0,0,1,1,0,6.925766937511696,0,49.22,42.72,-9,-9,1.666666666666667,1,1,0,0,8,8,5,1,2784,-46649.74202991524,27515.51008454659,0,0,2350.710274941651 -5911,7325,13327,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.079862150842012,5.223425647413027,0,0,-1039.04394091374,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,1.722108228647966,0,0,0,1,1,0,0,5.381423724861443,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,434,139817.3634425892,44046.64333899916,0,0,1013.35672246819 -5912,7326,13328,13329,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,10,-8,-39.48730955173015,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.826846695318855,0,59.07,43.05,48.95,43.28,8.333333333333334,1,1,0,0,2,13,2,0,578,476129.9557133385,0,585539.4850059749,0,964.4430174153667 -5912,7326,13329,13328,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.999905340791589,5.033781347380532,10,8,169.2432233887261,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.902176538940375,48.95,43.28,59.07,43.05,8.333333333333334,1,1,0,1,0,13,2,0,578,476129.9557133385,0,585539.4850059749,0,964.4430174153667 -5913,7327,13330,-9,13331,13333,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.2932373959158,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,970.75,296481.7325015974,15165.06870327194,350383.5399471846,96672.84256865147,2002.093718040348 -5913,7327,13331,13333,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,0,5.116046965123751,5.515717071559878,13,-8,41.66795372241123,0,2,2,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.531642762637293,0,0,71.97,49.77,50.15,3.333333333333333,1,1,0,0,1,10,3,0,970.75,296481.7325015974,15165.06870327194,350383.5399471846,96672.84256865147,2002.093718040348 -5913,7327,13332,-9,13331,13333,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.850938258644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,970.75,296481.7325015974,15165.06870327194,350383.5399471846,96672.84256865147,2002.093718040348 -5913,7327,13333,13331,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,7.914838836682193,8.390022433188776,6.26785726169774,11,8,12.51325725309457,0,-9,2,2019,10,0,45,40,1,0,0,8.909488831934695,8.909488831934695,0,0,0,0,0,1,1,0,0,6.231726792780608,49.77,50.15,0,71.97,8.333333333333334,1,1,0,1,10,10,3,0,970.75,296481.7325015974,15165.06870327194,350383.5399471846,96672.84256865147,2002.093718040348 -5914,7328,13334,13335,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,8,12,-102.1415977606688,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,20.65,50,57,3.333333333333333,1,1,0,1,5,10,4,0,1121,365841.3649228287,52855.33319514409,321918.7800874956,112296.4821602405,5073.915801571212 -5914,7328,13335,13334,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.801929924976776,8.852611986611093,0,8,-12,-46.75148687959346,0,-9,-9,2019,10,0,40,50,1,1,0,22.35738467904264,22.35738467904264,0,0,0,0,0,1,1,0,0,0,50,57,40.87,20.65,7,1,1,0,0,1,10,4,0,1121,365841.3649228287,52855.33319514409,321918.7800874956,112296.4821602405,5073.915801571212 -5914,7328,13336,-9,13334,13335,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-955.8459677940992,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,0,1121,365841.3649228287,52855.33319514409,321918.7800874956,112296.4821602405,5073.915801571212 -5915,7329,13337,13338,13340,13339,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,7,2,-79.09082966417644,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,52.82,53.97,8,2,3,0,0,0,6,3,1,782,59797.51328195503,0,0,0,1759.971285238019 -5915,7329,13338,13337,-9,-9,1,0,47,0,0,0,2,2,-9,1,4,8.012244123858178,7.893465200205039,0,29,-2,-33.63408206613461,0,3,-9,2019,7,0,40,34,1,0,0,7.283420295613208,7.283420295613208,0,0,0,0,27,1,1,0,0,0,52.82,53.97,53,55,8.333333333333334,2,3,0,0,9,6,3,1,782,59797.51328195503,0,0,0,1759.971285238019 -5915,7330,13339,13340,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,-144.3962748425694,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,47,8,2,3,0,0,0,6,2,1,757,209527.000304175,16177.06022726332,90325.59977164597,0,1194.924884148983 -5915,7330,13340,13339,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.868162612401491,5.12050840525714,7,-8,38.507980151138,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.747092262070149,51,47,54,46,7,2,3,0,0,0,6,2,1,757,209527.000304175,16177.06022726332,90325.59977164597,0,1194.924884148983 -5915,7331,13341,-9,13338,13337,1,1,26,0,0,0,1,1,-9,0,4,7.658050038920494,7.75040971691917,0,0,0,-1014.903551362509,0,2,3,2019,10,0,37,0,1,1,1,8.221841464652504,8.221841464652504,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,319,25176.42468592587,0,0,0,904.935627695125 -5915,7332,13342,-9,13338,13337,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-937.4132231914086,1,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,6,1,1,309,-147156.1804078179,0,0,0,0 -5916,7333,13343,-9,13345,13344,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.9238195117662,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,599.25,1072885.775011134,978910.4679975491,356668.9033305335,248584.2285627038,5628.277961302978 -5916,7333,13344,13345,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.345507005594062,9.572499440993736,0,8,0,-54.02074643093142,0,1,1,2019,9,0,40,40,1,1,0,38.6308578814351,38.6308578814351,0,0,0,0,0,1,1,0,1.594334945905527,0,52,55,41.23,59.35,8,1,1,0,0,1,8,5,1,599.25,1072885.775011134,978910.4679975491,356668.9033305335,248584.2285627038,5628.277961302978 -5916,7333,13345,13344,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.764349770210417,7.453909282558972,0,8,0,-116.8971803316303,0,2,2,2019,23,11,22,20,1,11,0,9.95424223987126,9.95424223987126,0,0,0,0,0,1,1,0,0,0,41.23,59.35,52,55,8.333333333333334,1,1,0,0,9,8,5,1,599.25,1072885.775011134,978910.4679975491,356668.9033305335,248584.2285627038,5628.277961302978 -5916,7333,13346,-9,13345,13344,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.7004374809303,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,599.25,1072885.775011134,978910.4679975491,356668.9033305335,248584.2285627038,5628.277961302978 -5917,7334,13347,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,7.546622791947737,7.811291139895811,5.186959297850522,0,0,-1023.665939986697,0,1,1,2019,10,0,40,45,1,0,0,6.379542232698089,6.379542232698089,0,0,0,0,0,0,0,0,4.932390773269502,0,45.18,54.77,-9,-9,1.666666666666667,1,1,0,0,8,8,3,0,995,181379.3067306386,-77232.30991766008,0,0,526.1660697067362 -5918,7335,13348,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,0,0,-870.4104716445095,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,15.58015048265325,0,0,1,1,0,0,0,38,20.27,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1523,178165.4579783515,-57768.50792632479,142103.1183781194,0,1475.23060924684 -5919,7336,13349,13350,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,8.493257234705121,8.429366837545899,7.010285873492105,47,7,15.42258852356914,0,3,3,2019,6,0,20,15,1,0,0,28.78165792698323,28.78165792698323,0,0,0,0,0,0,0,0,4.33403558388131,7.270443401548887,59.19,51.29,49,48,10,1,1,0,0,11,12,5,1,953.5,-31749.72806124526,76247.0952960873,154498.9644249977,74787.09751619434,3727.66995325618 -5919,7336,13350,13349,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.751914482957753,7.569055030430581,0,5,-7,-73.01657016244155,0,3,3,2019,11,0,40,40,1,2,0,9.421655047962092,9.421655047962092,0,0,0,0,0,0,0,0,0,0,49,48,59.19,51.29,7,1,1,0,0,1,12,5,1,953.5,-31749.72806124526,76247.0952960873,154498.9644249977,74787.09751619434,3727.66995325618 -5920,7337,13351,13352,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,9,6,57.51137321889831,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.865238041746291,0,57.33,32.2,56.59,39.96,6.666666666666667,1,1,0,0,0,2,3,1,807.5,494975.1335128549,364224.7331598373,129959.9229240709,0,1908.886804240705 -5920,7337,13352,13351,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.171541965569266,7.834562689024701,7.049394041159628,9,-6,-13.85303593810725,0,3,3,2019,10,1,14,14,1,1,0,13.14125321726302,13.14125321726302,0,0,0,0,0,1,1,0,0,7.016582167006854,56.59,39.96,57.33,32.2,8.333333333333334,1,1,0,0,10,2,3,1,807.5,494975.1335128549,364224.7331598373,129959.9229240709,0,1908.886804240705 -5921,7338,13353,-9,13354,13355,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-916.9579915679986,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,11,4,1,716,985446.4018452377,421224.7581860803,320201.7430604407,0,2689.056589891113 -5921,7338,13354,13355,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.188769294146168,8.361227588004155,0,10,-7,42.0788896826359,0,2,2,2019,8,0,35,17,1,0,0,13.61636692834477,13.61636692834477,0,0,0,0,2,1,1,0,3.159828840014909,0,54.96,53.17,53.8,35.16,8.333333333333334,1,1,0,0,10,11,4,1,716,985446.4018452377,421224.7581860803,320201.7430604407,0,2689.056589891113 -5921,7338,13355,13354,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,7.785739871524171,8.0268791449818,0,10,7,-74.73001001777031,0,2,2,2019,9,1,37,37,1,1,0,8.393540016627121,8.393540016627121,0,0,0,0,2,1,1,0,4.484069233330923,0,53.8,35.16,54.96,53.17,6.666666666666667,1,1,0,0,9,11,4,1,716,985446.4018452377,421224.7581860803,320201.7430604407,0,2689.056589891113 -5922,7339,13356,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.92937534479513,6.711727046969242,0,0,-984.2355125935414,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.531309073634063,6.670077233766281,58.87,37.89,-9,-9,1.666666666666667,1,1,0,0,11,5,2,1,322,597499.2592220351,185331.0340340661,202387.6592607475,0,-107.9600409065642 -5923,7340,13357,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-995.6410280295784,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,1.137690787375293,0,1,1,0,0,0,28.28,25.04,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,386,-65813.03342232996,0,0,0,1271.330754132909 -5924,7341,13358,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.672382568996056,8.706365099242115,0,0,0,-1120.322644410898,0,3,2,2019,14,4,40,46,1,4,0,15.84639647784848,15.84639647784848,0,0,0,0,0,0,0,0,0,0,22.79,64.11,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,198,492433.9992787974,300342.035373126,0,0,2090.572341039219 -5925,7342,13359,13360,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.630857978304984,9.423998658217364,0,30,7,-16.62361528215166,0,2,2,2019,9,0,40,38,1,0,0,38.34683341887241,38.34683341887241,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.32,50.22,6.666666666666667,1,1,0,0,11,8,5,1,519.5,889067.3634870441,57263.11894631421,861655.6122759315,65223.88592429764,2401.5527890842 -5925,7342,13360,13359,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.206420669099657,8.372359994553818,0,30,-7,59.41377306518594,0,3,2,2019,6,0,30,38,1,0,0,13.6723675598506,13.6723675598506,0,0,0,0,0,0,0,0,0,0,58.32,50.22,58.15,52.91,8.333333333333334,1,1,0,0,11,8,5,1,519.5,889067.3634870441,57263.11894631421,861655.6122759315,65223.88592429764,2401.5527890842 -5925,7343,13361,-9,13360,13359,1,1,26,0,0,0,2,2,-9,0,4,8.283465452660961,8.434895697377032,0,0,0,-1163.882375055461,0,2,2,2019,5,0,45,48,1,0,1,14.06423518425556,14.06423518425556,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,973,-128708.6290755333,0,0,0,1845.141939612492 -5925,7344,13362,-9,13360,13359,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1009.783670059778,0,2,2,2019,16,4,0,8,3,4,1,0,0,0,0,0,0,0,0,0,0,.2896764450354783,0,21.21,56.49,-9,-9,5,1,1,0,1,2,8,1,1,2139,-93917.71268055543,0,0,0,921.7665257934043 -5926,7345,13363,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.717940023969501,7.932866703794637,0,0,0,-939.786519547483,0,3,2,2019,12,0,1,-9,1,0,0,273.868135967418,273.868135967418,0,0,0,0,0,0,0,0,0,0,39.15,41.42,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,835,-52089.4290826504,71018.45286600974,0,0,868.1873413767009 -5927,7346,13364,13366,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.628329553876311,8.924572869472321,0,20,-2,19.32015008585574,0,1,2,2019,7,0,40,37,1,0,0,18.94724068090243,18.94724068090243,0,0,0,0,0,1,1,0,7.242978708120363,0,48.66,54.86,53,55,8.333333333333334,2,3,0,0,9,7,5,1,416,535037.4694697877,505778.6109251075,375693.9104770269,262765.2489761169,5206.886995094018 -5927,7346,13365,-9,13364,13366,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1117.345782674892,-9,1,1,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.75,58.86,-9,-9,5,2,3,0,0,0,7,5,1,416,535037.4694697877,505778.6109251075,375693.9104770269,262765.2489761169,5206.886995094018 -5927,7346,13366,13364,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.143776178295836,8.59720931014256,0,20,2,42.42340796156684,0,1,2,2019,9,0,40,37,1,1,0,17.84149757675824,17.84149757675824,0,0,0,0,0,1,1,0,0,0,53,55,48.66,54.86,8,2,3,0,0,1,7,5,1,416,535037.4694697877,505778.6109251075,375693.9104770269,262765.2489761169,5206.886995094018 -5927,7347,13367,-9,13364,13366,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.305438926714,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,591,0,0,0,0,0 -5928,7348,13368,13369,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.2085304587509,7.906029333317482,5.232251937036006,38,0,54.2467897672773,0,3,3,2019,11,0,56,55,1,0,0,8.685637795578069,8.685637795578069,0,0,0,0,0,0,0,0,5.471163970881571,5.715136617325939,56.78,49.38,45.65,49.39,8.333333333333334,1,1,0,0,8,4,4,1,578.5,862761.7717263041,408155.8116617034,367786.5295728442,0,1771.832659937822 -5928,7348,13369,13368,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.74604905040208,6.520473321623176,0,38,0,-81.30468653601858,0,3,3,2019,13,1,10,12,1,1,0,8.626024892904647,8.626024892904647,0,0,0,0,0,0,0,0,0,0,45.65,49.39,56.78,49.38,8.333333333333334,1,1,0,0,8,4,4,1,578.5,862761.7717263041,408155.8116617034,367786.5295728442,0,1771.832659937822 -5928,7349,13370,-9,13369,13368,1,0,30,0,0,0,1,1,-9,0,4,8.229695213340644,8.165707722460462,0,0,0,-1080.515730804977,0,2,3,2019,11,0,38,40,1,2,1,13.98132509624406,13.98132509624406,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,4,4,1,1075,-80892.20598064957,215999.9111666566,0,0,1886.018816802459 -5929,7350,13371,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,5.077670887646915,4.487611299620458,0,0,-1032.839605986861,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.844293341712639,40.11,18.27,-9,-9,0,1,1,0,1,9,8,2,1,447,451741.9329417512,338365.8532877397,151101.6665894952,0,639.5035292734432 -5929,7351,13372,-9,13371,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1008.154608238316,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,28.07,57.33,-9,-9,0,1,1,1,1,0,8,1,1,586,133264.1246670348,0,0,0,493.3298060122598 -5930,7352,13373,-9,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,7.735287193724516,7.835595391134716,0,4,3,79.69466590188505,0,3,3,2019,8,0,45,37,1,0,0,5.724017489260383,5.724017489260383,0,0,0,0,0,1,1,0,0,0,49.84,59.62,33.12,48.14,8.333333333333334,1,1,0,0,12,5,4,1,470,-155695.9244898719,0,0,0,1981.53870411087 -5930,7353,13374,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.784088344364129,7.524802816568598,0,4,-3,-36.30204009393522,0,-9,-9,2019,23,10,25,51,1,10,0,10.88439376616201,10.88439376616201,0,0,0,0,0,1,1,0,0,0,33.12,48.14,49.84,59.62,5,1,1,0,0,5,5,4,1,262,-25779.32267368333,-20983.24725778974,0,0,1516.119773705841 -5930,7353,13375,-9,13374,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.625311538969,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,262,-25779.32267368333,-20983.24725778974,0,0,1516.119773705841 -5931,7354,13376,13377,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.209111783891925,7.164998253914389,0,27,4,48.41366218689821,0,-9,-9,2019,12,0,72,72,1,0,0,1.781933670187944,1.781933670187944,0,0,0,0,0,0,0,0,0,0,61.68,50.1,39.39,37.66,3.333333333333333,3,4,0,0,10,6,4,1,361,1766558.068638588,1359275.847599078,250237.9149434658,0,2491.197966137463 -5931,7354,13377,13376,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.957231243820409,7.880976837776341,0,27,-4,-74.92094214314272,0,3,2,2019,16,4,20,20,1,4,0,14.33221158201479,14.33221158201479,0,0,0,0,0,0,0,0,0,0,39.39,37.66,61.68,50.1,5,3,4,0,0,10,6,4,1,361,1766558.068638588,1359275.847599078,250237.9149434658,0,2491.197966137463 -5932,7355,13378,13379,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.365125779208148,8.284673605811461,0,19,-5,-44.80933755741427,0,3,3,2019,9,0,42,82,1,0,0,11.51163201027353,11.51163201027353,0,0,0,0,0,0,0,0,0,0,52.88,43.27,51.66,54.88,8.333333333333334,1,1,0,0,9,12,4,0,425.5,676216.4343053822,0,642580.9017490206,0,2680.322176659458 -5932,7355,13379,13378,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.401507136604451,7.552892996907759,0,18,5,-46.78285967126494,0,2,3,2019,15,3,17,21,1,3,0,10.53047087784669,10.53047087784669,0,0,0,0,0,0,0,0,6.367902649592231,0,51.66,54.88,52.88,43.27,8.333333333333334,1,1,0,0,11,12,4,0,425.5,676216.4343053822,0,642580.9017490206,0,2680.322176659458 -5933,7356,13380,13381,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,6.968646978361453,6.563639799289176,0,3,1,90.41374910283949,0,2,2,2019,8,0,18,0,1,0,0,7.39636296135238,7.39636296135238,0,0,0,0,0,1,1,0,0,0,58.16,42.18,22.94,54.44,8.333333333333334,1,1,0,0,6,10,3,0,484.6666666666667,-87172.67253582845,0,0,0,1877.667342034251 -5933,7356,13381,13380,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,7.944093721941783,8.109497882592603,0,3,-1,-16.12373944364795,0,-9,-9,2019,26,11,38,37,1,11,0,9.9819233795704,9.9819233795704,0,0,0,0,0,1,1,0,0,0,22.94,54.44,58.16,42.18,3.333333333333333,1,1,0,1,1,10,3,0,484.6666666666667,-87172.67253582845,0,0,0,1877.667342034251 -5933,7356,13382,-9,13380,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.647420374948,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,484.6666666666667,-87172.67253582845,0,0,0,1877.667342034251 -5934,7357,13383,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.293410463356834,8.518899071209288,0,0,0,-948.2361132205168,0,-9,-9,2019,10,0,55,60,1,0,0,9.957778480204595,9.957778480204595,0,0,0,0,0,0,0,0,.5047885637079093,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1214,46144.11470476744,98404.60693406392,60190.78345611511,1040.925513578062,1984.098066923456 -5935,7358,13384,13385,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.164287233589154,6.328953704347354,51,4,3.751325014614763,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.328091877016756,6.308882004519187,46.73,42.22,57.16,56.15,5,1,1,0,0,0,2,2,0,720.5,305044.5822517223,199762.1050851874,106857.9456904348,0,1409.774746652598 -5935,7358,13385,13384,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.045375352236759,5.498051878649887,51,-4,-41.01031150523496,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.745065859029278,0,57.16,56.15,46.73,42.22,8.333333333333334,1,1,0,0,0,2,2,0,720.5,305044.5822517223,199762.1050851874,106857.9456904348,0,1409.774746652598 -5936,7359,13386,13387,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.14281008882983,9.20145433734689,0,7,0,40.18919714387015,0,-9,-9,2019,8,0,40,38,1,0,0,30.5511820671932,30.5511820671932,0,0,0,0,0,0,0,0,3.131052931152196,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,9,5,1,358.5,1480796.893021154,841021.1201549242,435610.4896194319,88181.97354109574,5787.879746260825 -5936,7359,13387,13386,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.437436409668184,8.380363827925477,0,17,0,58.70269268948822,0,1,2,2019,6,0,16,20,1,0,0,30.87931598621543,30.87931598621543,0,0,0,0,2,0,0,0,3.304888261290766,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,9,5,1,358.5,1480796.893021154,841021.1201549242,435610.4896194319,88181.97354109574,5787.879746260825 -5937,7360,13388,13389,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,8.917401031791362,8.968703897376978,0,7,3,29.96798464636459,0,2,1,2019,16,5,50,55,1,5,0,18.66876883656247,18.66876883656247,0,0,0,0,0,0,0,0,2.048051177754467,0,49.25,61.25,51.95,57.56,8.333333333333334,1,1,0,0,8,12,5,1,1970.5,840637.9185901161,147498.5124476224,400868.3238772629,165472.7011285141,4946.257805818554 -5937,7360,13389,13388,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.825678399222113,8.945715162652062,0,7,-3,43.05278648182585,0,2,2,2019,11,3,50,55,1,3,0,23.92888991104555,23.92888991104555,0,0,0,0,0,0,0,0,2.220230408508449,0,51.95,57.56,49.25,61.25,8.333333333333334,1,1,0,0,8,12,5,1,1970.5,840637.9185901161,147498.5124476224,400868.3238772629,165472.7011285141,4946.257805818554 -5938,7361,13390,-9,13391,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.33012345802,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,815,21320.69936104569,57967.11881791219,128772.177369847,157257.6171017933,2462.198207904213 -5938,7361,13391,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.607334116776851,8.482050718976771,5.464166782679068,0,0,-1040.566865931527,0,2,1,2019,11,2,40,40,1,2,0,18.18858545315794,18.18858545315794,0,0,0,0,0,1,1,0,6.081199235951151,0,39.27,60.24,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,815,21320.69936104569,57967.11881791219,128772.177369847,157257.6171017933,2462.198207904213 -5939,7362,13392,13394,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.813085548468716,8.025067878736358,4.437214445751207,4,-8,-2.484880720929796,0,-9,-9,2019,26,10,6,10,1,10,0,49.07239070118833,49.07239070118833,0,0,0,0,0,1,1,0,5.224415931605805,0,19.26,56.49,59.9,39.94,3.333333333333333,1,1,0,0,5,2,4,1,672,145250.1598245004,-76166.57730431436,190913.832953116,37113.61073519234,2773.981327455891 -5939,7362,13393,-9,13392,13394,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.9764954477652,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,672,145250.1598245004,-76166.57730431436,190913.832953116,37113.61073519234,2773.981327455891 -5939,7362,13394,13392,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.065778615477923,7.983140856006276,0,4,8,-74.50045006221961,0,2,-9,2019,23,7,45,40,1,7,0,8.341147922788711,8.341147922788711,0,0,0,0,0,1,1,0,0,0,59.9,39.94,19.26,56.49,3.333333333333333,1,1,0,1,12,2,4,1,672,145250.1598245004,-76166.57730431436,190913.832953116,37113.61073519234,2773.981327455891 -5940,7363,13395,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.931052696594667,8.293979294393141,0,0,0,-902.1900095122231,0,-9,-9,2019,13,1,37,37,1,1,0,9.220416441662969,9.220416441662969,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,964,233252.3401655456,-13786.84872752362,103701.3076893542,0,1991.587729068595 -5940,7364,13396,-9,13395,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-991.0686524343556,0,2,-9,2019,21,8,0,20,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,7.100000000000001,72.46000000000001,-9,-9,1.666666666666667,1,1,1,0,2,10,1,0,223,6774.595483747375,0,0,0,0 -5940,7365,13397,-9,13395,-9,1,0,21,0,0,0,2,2,-9,0,3,7.744596567536236,7.861781078049336,0,0,0,-1001.057542725065,0,3,-9,2019,12,0,40,42,1,0,1,7.74749745935828,7.74749745935828,0,0,0,0,0,0,0,0,0,0,46.73,46.3,-9,-9,5,1,1,0,0,5,10,3,0,254,167717.4117053392,-50979.30515844545,0,0,823.3008738548654 -5941,7366,13398,-9,13399,13400,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.590758522631,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,4,1,728.3333333333334,517508.741432013,369433.5410359455,180630.3086288392,67304.27336582269,4030.839672803849 -5941,7366,13399,13400,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.055889739709816,8.226887796106739,0,9,0,101.0727707590689,0,3,2,2019,6,1,35,35,1,1,0,10.99641784586247,10.99641784586247,0,0,0,0,0,1,1,0,0,0,38.15,50.19,57.33,53.46,6.666666666666667,1,1,0,0,10,4,4,1,728.3333333333334,517508.741432013,369433.5410359455,180630.3086288392,67304.27336582269,4030.839672803849 -5941,7366,13400,13399,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.400957786993876,8.516576141103842,0,9,0,31.14569248698989,0,2,2,2019,6,0,35,35,1,0,0,17.00956984840241,17.00956984840241,0,0,0,0,0,1,1,0,1.542953084496102,0,57.33,53.46,38.15,50.19,8.333333333333334,1,1,0,0,10,4,4,1,728.3333333333334,517508.741432013,369433.5410359455,180630.3086288392,67304.27336582269,4030.839672803849 -5941,7367,13401,-9,13399,13400,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1076.28882537422,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,664,0,0,0,0,275.6354422831482 -5942,7368,13402,13403,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,51,0,24.87127221859943,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.185868234037105,0,55.59,43.19,62.42,32.41,8.333333333333334,1,1,0,0,0,6,3,1,348,1472049.262410968,828403.9297185782,442387.4194581905,0,2747.489978444406 -5942,7368,13403,13402,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,8.014039162290732,7.612510372804954,52,0,155.3711173067801,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.95812518349756,7.86914637764698,62.42,32.41,55.59,43.19,8.333333333333334,1,1,0,0,0,6,3,1,348,1472049.262410968,828403.9297185782,442387.4194581905,0,2747.489978444406 -5943,7369,13404,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1071.01576471545,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.88886840481961,0,57,51,-9,-9,10,1,1,0,0,1,5,1,1,378,-83331.21385218168,0,109134.1480846546,57631.52634767113,1018.978473061826 -5944,7370,13405,13409,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,7.78255486210498,7.764558446822757,0,7,-1,168.050444514381,0,2,3,2019,16,4,16,16,1,4,0,16.79622027642984,16.79622027642984,0,0,0,0,0,1,1,0,0,0,28.73,53,44.93,54.77,5,1,1,0,0,8,9,4,1,1160.4,-39969.70146175494,14762.85616951038,0,0,3326.577861425227 -5944,7370,13406,-9,13405,13409,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.2534342132485,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1160.4,-39969.70146175494,14762.85616951038,0,0,3326.577861425227 -5944,7370,13407,-9,13405,13409,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.30503218987,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1160.4,-39969.70146175494,14762.85616951038,0,0,3326.577861425227 -5944,7370,13408,-9,13405,13409,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.9918962590053,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1160.4,-39969.70146175494,14762.85616951038,0,0,3326.577861425227 -5944,7370,13409,13405,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.49784717129706,8.576346545448091,0,7,1,51.20531885119816,0,-9,-9,2019,14,3,37,42,1,3,0,13.55649718089177,13.55649718089177,0,0,0,0,0,1,1,0,0,0,44.93,54.77,28.73,53,8.333333333333334,1,1,0,0,8,9,4,1,1160.4,-39969.70146175494,14762.85616951038,0,0,3326.577861425227 -5945,7371,13410,13411,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.071675405496991,6.997321578653157,0,9,-2,38.25714035025101,0,3,3,2019,11,0,21,21,1,0,0,7.551345216069325,7.551345216069325,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.53,58.91,8.333333333333334,1,1,0,0,12,11,2,1,504.5,970828.8270335249,443450.3383666046,353230.2856268043,0,604.9910170589154 -5945,7371,13411,13410,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,43,2,66.53098163098481,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,48.81,59.91,8.333333333333334,1,1,0,0,11,11,2,1,504.5,970828.8270335249,443450.3383666046,353230.2856268043,0,604.9910170589154 -5946,7372,13412,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,9.077614338014264,9.026614049756091,0,0,0,-932.2815680076558,0,3,3,2019,14,3,47,44,1,3,0,22.31627624819112,22.31627624819112,0,0,0,0,0,0,0,0,0,0,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,10,2,5,0,543,27648.14305615621,-12443.54871781827,0,0,2357.411908445028 -5947,7373,13413,13414,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.701410872249143,6.803655670544636,10,-1,93.25229985605439,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.415874773052971,6.437769987013495,54.96,53.17,65.40000000000001,22.5,10,1,1,0,0,0,6,2,1,1125.5,963543.0807752516,222129.1479988943,232164.8566560607,0,2175.845721990747 -5947,7373,13414,13413,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.53701715866082,6.599889390699678,58,1,-60.83188102606333,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.630916149536077,6.359751871798769,65.40000000000001,22.5,54.96,53.17,8.333333333333334,1,1,0,0,0,6,2,1,1125.5,963543.0807752516,222129.1479988943,232164.8566560607,0,2175.845721990747 -5948,7374,13415,13417,-9,-9,1,1,30,1,4,0,2,2,-9,0,3,0,0,0,3,8,27.01862409966375,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.740340230124991,0,46,53,51.49,57.57,7,1,1,1,0,0,10,2,0,1304.8,70462.5967531069,0,0,0,2375.58145621776 -5948,7374,13416,-9,13417,13415,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-890.0625612651654,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1304.8,70462.5967531069,0,0,0,2375.58145621776 -5948,7374,13417,13415,-9,-9,1,0,22,1,4,0,2,2,-9,0,4,7.956051342656799,7.905228323380775,0,3,-8,-168.2246704216834,0,-9,-9,2019,11,3,43,0,1,3,0,7.757174453391164,7.757174453391164,0,0,0,0,0,1,1,0,0,0,51.49,57.57,46,53,8.333333333333334,1,1,0,0,2,10,2,0,1304.8,70462.5967531069,0,0,0,2375.58145621776 -5948,7374,13418,-9,13417,13415,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.6800358539504,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1304.8,70462.5967531069,0,0,0,2375.58145621776 -5948,7374,13419,-9,13417,13415,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.68255377889,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,1304.8,70462.5967531069,0,0,0,2375.58145621776 -5949,7375,13420,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,2,0,8.415204656489287,8.349162971653755,0,0,-1062.174828630626,0,1,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.985492179289477,8.047178923420859,62.02,28.48,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,312,509773.5967667974,281037.9146006869,36321.49541737187,0,3122.257973260263 -5950,7376,13421,-9,13424,13423,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.4247207593647,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,918.2,996012.0877760046,753441.918882552,390677.0996839145,207411.6569207254,6356.698395070511 -5950,7376,13422,-9,13424,13423,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.967677946236,-9,1,1,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.95,-9,-9,10,1,1,0,0,0,6,5,1,918.2,996012.0877760046,753441.918882552,390677.0996839145,207411.6569207254,6356.698395070511 -5950,7376,13423,13424,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,9.030204737310926,9.352406442449672,0,7,2,24.9236530281629,0,-9,-9,2019,11,1,55,65,1,1,0,18.31315091366734,18.31315091366734,0,0,0,0,0,1,1,0,2.248467915016413,0,35.86,64.55,43.2,59.97,6.666666666666667,1,1,0,0,8,6,5,1,918.2,996012.0877760046,753441.918882552,390677.0996839145,207411.6569207254,6356.698395070511 -5950,7376,13424,13423,-9,-9,1,0,46,0,3,0,1,1,-9,1,4,8.595587927963155,8.434342491375441,0,7,-2,-98.13426573059685,0,-9,-9,2019,13,2,20,20,1,2,0,27.27538278934403,27.27538278934403,0,0,0,0,0,1,1,0,6.820779182528235,0,43.2,59.97,35.86,64.55,8.333333333333334,1,1,0,0,8,6,5,1,918.2,996012.0877760046,753441.918882552,390677.0996839145,207411.6569207254,6356.698395070511 -5950,7376,13425,-9,13424,13423,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.6095667903526,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,918.2,996012.0877760046,753441.918882552,390677.0996839145,207411.6569207254,6356.698395070511 -5951,7377,13426,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.150050390573028,7.413703446308771,0,0,-979.171497544204,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.062798016356157,7.00448853657584,53.53,36.45,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,201,865319.9542217714,305405.9851606287,572932.145513515,0,1530.20354589568 -5952,7378,13427,13428,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.048312526296918,9.090398124072848,0,21,-2,83.40567009939136,-9,2,2,2019,11,0,50,0,1,0,0,22.16682606688618,22.16682606688618,0,0,0,0,0,0,0,0,4.393157700832907,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,382.5,1803385.203042384,120353.5751302798,912698.0773957905,0,6303.802902492087 -5952,7378,13428,13427,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,8.518266326937933,8.123580682672189,1,2,-49.01628662575796,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.696106922122375,8.107308642033772,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,9,9,5,1,382.5,1803385.203042384,120353.5751302798,912698.0773957905,0,6303.802902492087 -5953,7379,13429,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1085.124118751419,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,312,30156.36439879731,0,0,0,1165.571079884819 -5954,7380,13430,13431,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,8.177741096635048,8.383303973302713,0,10,9,-4.823829600991201,0,-9,-9,2019,27,11,35,35,1,11,0,12.23388260418705,12.23388260418705,0,0,0,0,0,1,1,0,1.273865020379621,0,27.56,56.58,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,580.5,297694.9346817341,22948.54004189406,400140.2346826484,148696.6597344102,3473.244419191569 -5954,7380,13431,13430,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.680377711023104,8.77652025224312,0,10,0,68.16894847976737,0,3,2,2019,0,0,40,41,1,0,0,17.7246634283988,17.7246634283988,0,0,0,0,0,1,1,0,3.539013522226988,0,57.16,56.15,27.56,56.58,8.333333333333334,1,1,0,0,12,12,5,1,580.5,297694.9346817341,22948.54004189406,400140.2346826484,148696.6597344102,3473.244419191569 -5955,7381,13432,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,4.492510986390243,4.474556974634837,0,0,-1103.957949993738,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.399514920483431,0,33.1055246411678,0,1,1,0,0,4.533690031733375,57.73,30.59,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,183,264430.9646971441,0,121046.1809712233,0,1018.634651629946 -5956,7382,13433,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.587301475915332,6.581683908586229,0,0,-961.3100184304548,0,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,8.702135085482814,0,0,1,1,0,4.256796046678327,6.500142805202238,43.22,41.55,-9,-9,5,1,1,0,0,0,6,2,1,487,287039.7993318824,218295.8197904108,98430.81998520544,0,805.1975415589269 -5957,7383,13434,-9,-9,13435,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-869.7529438409913,-9,-9,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,1,186.6666666666667,167411.0710931672,0,183851.4503422659,6383.798170281101,2204.931943866395 -5957,7383,13435,-9,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,7.648763014811983,7.405632760608874,0,0,0,-963.4869786300496,0,3,3,2019,9,0,38,37,1,0,0,7.27898826612939,7.27898826612939,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,1,10,10,2,1,186.6666666666667,167411.0710931672,0,183851.4503422659,6383.798170281101,2204.931943866395 -5957,7383,13436,-9,-9,13435,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1049.309244181231,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,186.6666666666667,167411.0710931672,0,183851.4503422659,6383.798170281101,2204.931943866395 -5958,7384,13437,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.975604291566542,6.010441331696072,0,0,-994.6839328760522,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.738041060118644,6.222958892701702,59.07,43.05,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,508,483690.2987701652,78475.16276362531,355138.8179637981,0,1566.631817889318 -5959,7385,13438,13439,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.799529790223028,7.422819982072361,57,0,5.591604565471417,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.016925395516203,7.475722546042985,59.53,56.44,58.07,46.29,10,1,1,0,0,0,10,3,1,951,1752006.811690886,491803.990183942,639919.837553933,0,2532.238599825771 -5959,7385,13439,13438,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.726710914460056,7.154442483268689,57,0,165.9468841629016,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.121841073414773,0,0,1,1,0,2.849091845493689,7.164762793138236,58.07,46.29,59.53,56.44,10,1,1,0,0,0,10,3,1,951,1752006.811690886,491803.990183942,639919.837553933,0,2532.238599825771 -5960,7386,13440,13441,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,54,1,-4.267829322704813,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.609247033670573,0,52,46,62.18,36.18,8,1,1,0,0,0,4,3,1,266,829656.9556206844,630863.3074343505,182040.3762408379,0,2607.829315057746 -5960,7386,13441,13440,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.798579131494199,7.550855971666518,54,-1,-139.222989525559,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.514351846287875,62.18,36.18,52,46,6.666666666666667,1,1,0,0,0,4,3,1,266,829656.9556206844,630863.3074343505,182040.3762408379,0,2607.829315057746 -5961,7387,13442,13443,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.7003185844625,6.625713320509152,6,-3,53.64784315788805,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.401831002290384,6.429652377052375,55,45,53,44,8,1,1,0,0,0,8,2,1,431.5,164351.492639449,-3719.507594626044,0,0,1378.791078392851 -5961,7387,13443,13442,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,6,3,123.3495774683379,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,1.286725716466805,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,431.5,164351.492639449,-3719.507594626044,0,0,1378.791078392851 -5962,7388,13444,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-903.2323637200334,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,1,11,2,1,278,400662.1741932424,66888.21743292702,244625.3858128651,0,888.3568690649579 -5962,7389,13445,-9,13444,-9,1,1,23,0,0,0,2,2,-9,0,3,6.8407767392039,6.747426230592895,0,0,0,-1013.913791002261,0,3,-9,2019,13,1,20,0,1,1,1,6.15039992676993,6.15039992676993,0,0,0,0,0,1,1,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,442,7909.371327782123,48801.47211373875,0,0,885.1288576569134 -5963,7390,13446,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.969442004956791,8.891574471575463,0,0,0,-832.6428899534657,0,-9,-9,2019,8,0,44,45,1,0,0,19.89959351002499,19.89959351002499,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,301,156645.5724144382,-83491.96747541532,348805.2374653819,276302.6709354502,1808.444787415466 -5964,7391,13447,13448,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.019928338949271,8.141666496031963,0,3,-7,.2030564499881046,0,-9,-9,2019,14,2,35,45,1,2,0,10.82460863172847,10.82460863172847,0,0,0,0,0,1,1,0,0,0,21.53,48.4,36.26,40.48,5,1,1,0,0,4,9,4,0,704.5,332331.5608382259,195870.993561885,132398.8875958317,38321.99368023917,2168.48438695487 -5964,7391,13448,13447,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,7.273180571164454,7.109442824545498,0,3,7,69.60685303271156,0,2,3,2019,15,4,50,40,1,4,0,2.92362684205342,2.92362684205342,0,0,0,0,0,1,1,0,0,0,36.26,40.48,21.53,48.4,8.333333333333334,1,1,0,0,5,9,4,0,704.5,332331.5608382259,195870.993561885,132398.8875958317,38321.99368023917,2168.48438695487 -5965,7392,13449,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,6.655196151335356,6.416910324200058,0,0,0,-945.8661019644157,0,2,2,2019,9,0,15,0,1,0,0,5.319033821869469,5.319033821869469,0,0,0,0,0,1,1,0,3.406214905199554,0,44.24,59.44,-9,-9,5,1,1,0,0,12,11,2,0,239,146954.5178941415,44783.47497493726,32392.12868987445,0,862.3022268978607 -5966,7393,13450,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.137985890082431,8.125770931800863,0,0,0,-1030.385878279545,0,-9,-9,2019,9,0,50,48,1,0,0,9.762404010110391,9.762404010110391,0,0,0,0,0,0,0,0,1.113698005107079,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,189,54457.94743608763,10318.96087221878,0,0,1794.921963924718 -5967,7394,13451,13453,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,3.50874972350048,3.296836532542774,0,7,-6,14.35510973341341,0,2,2,2019,24,9,50,50,1,9,0,.0641094607775661,.0641094607775661,0,0,0,0,0,1,1,0,0,0,22.94,54.52,36.37,61.5,3.333333333333333,1,1,0,1,2,1,3,1,588.3333333333334,22809.02682309579,18008.52716209364,108336.7060124091,53866.51937459366,1013.585968201188 -5967,7394,13452,-9,13451,13453,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.8109535729737,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,588.3333333333334,22809.02682309579,18008.52716209364,108336.7060124091,53866.51937459366,1013.585968201188 -5967,7394,13453,13451,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,7.645128749120761,8.062973849604651,0,7,6,68.3984909155908,0,2,2,2019,9,1,38,16,1,1,0,6.633461674162668,6.633461674162668,0,0,0,0,0,1,1,0,0,0,36.37,61.5,22.94,54.52,6.666666666666667,1,1,0,0,9,1,3,1,588.3333333333334,22809.02682309579,18008.52716209364,108336.7060124091,53866.51937459366,1013.585968201188 -5968,7395,13454,13455,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,0,0,0,5,-1,-22.23709279966701,-9,2,1,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,44.6,52.77,52,54.51,3.333333333333333,1,1,0,1,1,6,2,0,888,101119.5006154094,90939.53333391069,121639.4737966692,40705.63094238244,1317.782286497638 -5968,7395,13455,13454,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,7.229069321847596,7.241493570836389,0,5,1,-42.32418578664476,-9,-9,-9,2019,9,0,20,0,1,0,0,8.949548322372078,8.949548322372078,0,0,0,0,14.5,1,1,0,0,0,52,54.51,44.6,52.77,8.333333333333334,1,1,0,1,10,6,2,0,888,101119.5006154094,90939.53333391069,121639.4737966692,40705.63094238244,1317.782286497638 -5968,7395,13456,-9,13454,13455,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.560012193517,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,888,101119.5006154094,90939.53333391069,121639.4737966692,40705.63094238244,1317.782286497638 -5969,7396,13457,13458,-9,-9,1,1,53,0,3,0,1,1,-9,0,4,8.872773747179751,8.505900520424804,0,6,6,-82.82537786688111,-9,-9,-9,2019,9,0,50,0,1,1,0,13.16431251122651,13.16431251122651,0,0,0,0,0,0,0,0,2.364354418227198,0,54,54,52.4,55.58,8,1,1,0,0,1,8,4,1,416.4,1355518.82508593,817947.2174999921,289240.7564336926,0,3467.514559990365 -5969,7396,13458,13457,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.307554210197281,8.067084830355396,0,23,-6,-78.23984479294077,0,2,1,2019,10,1,20,20,1,1,0,16.05094822107611,16.05094822107611,0,0,0,0,0,0,0,0,1.224653774940817,0,52.4,55.58,54,54,8.333333333333334,1,1,0,0,9,8,4,1,416.4,1355518.82508593,817947.2174999921,289240.7564336926,0,3467.514559990365 -5969,7396,13459,-9,13458,13457,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1002.236876784901,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,416.4,1355518.82508593,817947.2174999921,289240.7564336926,0,3467.514559990365 -5969,7396,13460,-9,13458,13457,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.161159241002,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,416.4,1355518.82508593,817947.2174999921,289240.7564336926,0,3467.514559990365 -5969,7396,13461,-9,13458,13457,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1031.284756896676,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,416.4,1355518.82508593,817947.2174999921,289240.7564336926,0,3467.514559990365 -5970,7397,13462,13463,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.683446628330862,6.859027747271051,0,9,0,96.81446473127065,0,3,3,2019,15,2,5,15,1,2,0,18.65865358068586,18.65865358068586,0,0,0,0,0,0,0,0,7.628244898093496,0,39.47,54.48,57.73,54.53,8.333333333333334,1,1,0,0,12,9,5,1,549,2537432.053928457,2160497.696673208,516991.2250329291,273903.4139105328,7449.167828236253 -5970,7397,13463,13462,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.731864184446012,9.67748359297503,0,9,0,110.6417852767214,0,2,2,2019,5,0,40,50,1,0,0,50.90138302106087,50.90138302106087,0,0,0,0,2,0,0,0,5.354564953003333,0,57.73,54.53,39.47,54.48,8.333333333333334,1,1,0,0,11,9,5,1,549,2537432.053928457,2160497.696673208,516991.2250329291,273903.4139105328,7449.167828236253 -5970,7398,13464,-9,13462,13463,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-848.7282620481792,-9,2,1,2019,27,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,.7384182296989965,0,19.33,64.04000000000001,-9,-9,1.666666666666667,1,1,0,0,1,9,2,1,315,0,0,0,0,70.23907999340636 -5970,7399,13465,-9,13462,13463,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-820.3761955357351,0,2,1,2019,14,4,0,30,3,4,1,0,0,0,0,0,0,0,0,0,0,5.434773840399639,0,48.28,60.18,-9,-9,6.666666666666667,1,1,1,0,4,9,1,1,602,54515.08506481718,0,0,0,-155.3602004268468 -5971,7400,13466,13467,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,10,8,13.9302432138427,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.53,38.76,55,52,6.666666666666667,1,1,0,0,0,2,2,1,412,168486.1441479856,-35402.0378317255,108636.1533911645,0,1306.418508112185 -5971,7400,13467,13466,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.249313239946732,5.192908062697556,10,-8,52.02730346053845,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.821877728337823,5.213867268532929,55,52,65.53,38.76,1.666666666666667,1,1,0,0,4,2,2,1,412,168486.1441479856,-35402.0378317255,108636.1533911645,0,1306.418508112185 -5972,7401,13468,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.067146364876,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.37,34.36,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,463,-70931.77010751578,0,0,0,692.1627488348361 -5973,7402,13469,-9,13471,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.647677089401,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,1199,17804.91015569434,40451.14433507565,0,0,2830.567543089952 -5973,7402,13470,-9,13471,-9,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1056.623914614568,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,3,1,1199,17804.91015569434,40451.14433507565,0,0,2830.567543089952 -5973,7402,13471,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.247583582327787,7.917934241374512,7.424654239680565,0,0,-901.0909632803896,0,-9,-9,2019,10,0,21,20,1,0,0,9.272493562615518,9.272493562615518,0,0,0,0,105,1,1,0,7.583278824562359,0,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,1199,17804.91015569434,40451.14433507565,0,0,2830.567543089952 -5974,7403,13472,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.798825873593484,6.501116962366697,0,0,-1001.008794294281,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.546954973795105,6.663840808011838,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,510,711554.1830909943,140819.8776940151,594625.5135346061,0,2180.502044818969 -5975,7404,13473,13474,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,6,2,-6.225215502556028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,59.39,36.45,8.333333333333334,1,1,0,0,0,13,2,1,548.5,411440.738717736,148080.6469096923,115573.4740795587,0,2008.057984112449 -5975,7404,13474,13473,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.774778244060622,7.438880587865173,6,-2,155.9564391555757,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.155841469408831,59.39,36.45,60.53,48.35,8.333333333333334,1,1,0,0,0,13,2,1,548.5,411440.738717736,148080.6469096923,115573.4740795587,0,2008.057984112449 -5976,7405,13475,13476,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,4.242965899645621,4.311125467242215,55,-3,-56.06520511207368,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.802708522633032,4.622373079927453,61.44,27.28,32.96,27.97,10,1,1,0,0,0,6,2,1,280.5,768504.4721599981,486525.115815653,108450.3453110997,0,1938.654980938454 -5976,7405,13476,13475,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.341585128314706,6.869360846858554,55,3,41.90338899372732,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.160146111346084,7.101359057803787,32.96,27.97,61.44,27.28,8.333333333333334,1,1,0,0,0,6,2,1,280.5,768504.4721599981,486525.115815653,108450.3453110997,0,1938.654980938454 -5977,7406,13477,13478,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.740880779486744,8.898062239459458,0,31,-3,-32.23136263326501,0,3,3,2019,13,0,44,48,1,3,0,17.66909236698309,17.66909236698309,0,0,0,0,0,1,1,0,0,0,49.01,45.35,47.42,42.87,8.333333333333334,1,1,0,0,10,7,5,1,391.5,2338668.60138347,1139119.204923559,834531.5288596859,0,5189.071361090226 -5977,7406,13478,13477,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.806625910063927,9.055973716982148,0,32,3,3.705357694196829,0,-9,-9,2019,8,1,76,37,1,1,0,11.00225680059602,11.00225680059602,0,0,0,0,0,1,1,0,4.064415028615749,0,47.42,42.87,49.01,45.35,8.333333333333334,1,1,0,0,10,7,5,1,391.5,2338668.60138347,1139119.204923559,834531.5288596859,0,5189.071361090226 -5978,7407,13479,13480,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.056004541733673,9.393792975575396,0,6,-2,-96.1571099167632,0,-9,-9,2019,9,0,45,50,1,1,0,20.96745409145072,20.96745409145072,0,0,0,0,0,0,0,0,6.581763166707248,0,53,54,59.71,45.35,8,1,1,0,0,1,2,5,1,713.5,140686.3178599849,238242.8965833023,190238.0548615466,120531.7801269425,4567.470002241243 -5978,7407,13480,13479,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.945541262903524,7.865294717894883,0,10,2,7.166078819092771,0,2,2,2019,6,0,35,30,1,0,0,7.912873463088755,7.912873463088755,0,0,0,0,0,0,0,0,0,0,59.71,45.35,53,54,8.333333333333334,1,1,0,0,8,2,5,1,713.5,140686.3178599849,238242.8965833023,190238.0548615466,120531.7801269425,4567.470002241243 -5979,7408,13481,13482,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,42,-1,186.115099788923,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.091196560142967,0,46.44,59.62,57.06,57.76,8.333333333333334,1,1,0,0,1,2,2,1,817.5,616061.2117440873,307075.6511055864,249408.9147333308,0,1617.101145785577 -5979,7408,13482,13481,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,7.263955792478859,7.163845757982877,42,1,82.82791319585994,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.02162094415505,7.143930152085834,57.06,57.76,46.44,59.62,8.333333333333334,1,1,0,0,5,2,2,1,817.5,616061.2117440873,307075.6511055864,249408.9147333308,0,1617.101145785577 -5980,7409,13483,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,7.056074405995894,7.134032411309185,0,0,0,-899.7357803107957,-9,-9,-9,2019,11,1,18,0,1,1,0,7.609094486460561,7.609094486460561,0,0,0,0,0,1,1,0,0,0,40.56,46.74,-9,-9,3.333333333333333,1,1,0,1,5,5,2,0,208,70348.73471167088,89759.55141029134,0,0,1156.211599683943 -5981,7410,13484,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.692487277746479,6.627264082677193,0,0,0,-1015.698404171446,0,-9,-9,2019,8,0,30,30,1,0,0,2.472881782734996,2.472881782734996,0,0,0,0,0,1,1,0,0,0,57.37,31.85,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,1153,190730.804934677,77918.63932888348,114454.6393579066,0,398.1078748539589 -5981,7411,13485,-9,13484,-9,1,1,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1018.9632858426,0,2,-9,2019,25,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,3.091507463178848,0,24.62,47.51,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,878,224510.6804303389,0,0,0,195.1024711864693 -5982,7412,13486,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.251194905437742,8.216171904549647,0,0,0,-1076.298524288718,0,2,2,2019,18,7,15,0,1,7,0,30.76919017195608,30.76919017195608,0,0,0,0,0,0,0,0,0,0,47.86,51.1,-9,-9,3.333333333333333,1,1,0,0,9,12,4,0,382,36065.0319834463,170880.7735807687,0,0,1041.51966878859 -5982,7413,13487,-9,13486,-9,1,1,21,0,0,0,2,2,-9,0,4,7.721728799545133,7.772028546255077,0,0,0,-938.0221776129073,-9,2,-9,2019,11,0,40,0,1,2,1,6.847554944318443,6.847554944318443,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,0,391,168644.5034667709,0,0,0,960.984247324487 -5983,7414,13488,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.705799226005643,6.382241112088578,0,0,-1151.536485043781,0,2,2,2019,12,0,0,22,4,0,0,0,0,0,0,0,0,0,1,1,0,1.242109072206098,6.168077643062354,45.79,62.62,-9,-9,10,1,1,0,0,7,7,2,1,217,356808.0386741854,327990.1811247339,306314.9001617624,0,770.9912408110724 -5984,7415,13489,13490,-9,13492,1,1,47,0,1,0,2,2,-9,0,4,7.959846186413601,7.666163113260951,0,22,7,6.481917102217024,0,3,3,2019,12,0,40,35,1,0,0,8.490517712818331,8.490517712818331,0,0,0,0,27,1,1,0,0,0,49.88,39.25,49,55,3.333333333333333,2,3,0,0,5,6,3,1,734.6666666666666,495533.8165782071,290463.7623236653,160915.6253293133,31733.62011243479,2872.624372050521 -5984,7415,13490,13489,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.880075181781748,7.420099069336456,0,7,-7,-34.05768779671687,0,-9,-9,2019,10,0,40,40,1,1,0,5.851069412910934,5.851069412910934,0,0,0,0,0,1,1,0,6.796595220648635,0,49,55,49.88,39.25,8,2,3,0,0,1,6,3,1,734.6666666666666,495533.8165782071,290463.7623236653,160915.6253293133,31733.62011243479,2872.624372050521 -5984,7415,13491,-9,13490,13489,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1028.886684697089,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,6,3,1,734.6666666666666,495533.8165782071,290463.7623236653,160915.6253293133,31733.62011243479,2872.624372050521 -5984,7416,13492,-9,-9,-9,1,1,75,0,1,0,2,2,-9,0,3,0,7.625387723369467,7.58949291286025,0,0,-911.5049514624474,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.218444392192707,7.766660223024273,53,46,-9,-9,8,2,3,0,0,0,6,2,1,562,687845.4068570285,399039.3559491187,59395.44108134683,0,1424.23088440144 -5984,7417,13493,-9,13490,13489,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-1042.819436282062,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,6,1,1,1560,-24533.20253712184,0,0,0,0 -5985,7418,13494,13495,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.610188073595413,7.510035171355669,0,7,5,-17.5123945132671,0,2,2,2019,9,0,40,50,1,0,0,4.798393357819291,4.798393357819291,0,0,0,0,0,0,0,0,8.242589158999143,0,56.5,48.33,49.04,55.86,8.333333333333334,1,1,0,0,10,10,5,1,620,990612.183240043,893547.6505848097,230349.6976255875,150123.8468788368,9310.988510683401 -5985,7418,13495,13494,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.910380871350819,9.419610480463602,0,28,-5,26.69177103097703,0,2,2,2019,12,0,51,52,1,0,0,43.76514229752764,43.76514229752764,0,0,0,0,0,0,0,0,1.514962046256227,0,49.04,55.86,56.5,48.33,6.666666666666667,1,1,0,0,10,10,5,1,620,990612.183240043,893547.6505848097,230349.6976255875,150123.8468788368,9310.988510683401 -5985,7419,13496,-9,13495,13494,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.350491251114,1,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28.04,61.63,-9,-9,3.333333333333333,1,1,0,0,1,10,1,1,1160,-75087.79810139237,0,0,0,0 -5986,7420,13497,13498,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.715732833184152,8.444631743852254,0,4,0,-65.24349453111004,0,2,2,2019,25,12,35,35,1,12,0,15.0732150950828,15.0732150950828,0,0,0,0,0,0,0,0,0,0,33.52,62.92,48.42,50.81,3.333333333333333,1,1,0,0,5,12,5,0,310,-197350.2513642716,-100085.220402344,0,0,2761.982017046887 -5986,7420,13498,13497,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.718794930074997,7.999912790757883,0,4,0,-48.25438539204018,0,-9,-9,2019,10,0,37,0,1,0,0,7.904056759613088,7.904056759613088,0,0,0,0,0,0,0,0,0,0,48.42,50.81,33.52,62.92,6.666666666666667,1,1,0,0,2,12,5,0,310,-197350.2513642716,-100085.220402344,0,0,2761.982017046887 -5987,7421,13499,13500,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,48,-2,-61.33248284873513,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,40.32524175804447,0,0,1,1,0,.3954546000954321,0,49.13,36.96,50.11,54.04,6.666666666666667,1,1,0,0,0,4,2,1,363.5,503235.8889472236,122859.861182765,194435.6526467736,0,1403.127621060478 -5987,7421,13500,13499,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.002463494148147,6.427511437731077,9,2,-79.06466633067826,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,14.5,1,1,0,1.569676239760284,5.756618717207962,50.11,54.04,49.13,36.96,8.333333333333334,1,1,0,0,0,4,2,1,363.5,503235.8889472236,122859.861182765,194435.6526467736,0,1403.127621060478 -5988,7422,13501,13504,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.052895996309447,8.311955817470341,0,6,-5,-33.40408555709028,-9,-9,-9,2019,10,0,38,0,1,1,0,11.32700131468292,11.32700131468292,0,0,0,0,0,1,1,0,7.378151335395337,0,50,55,57.33,53.46,8,2,3,0,0,1,8,5,1,446.25,2016401.955826491,1281135.300848796,880369.969178119,229506.8097462151,5196.30539324969 -5988,7422,13502,-9,13501,13504,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.776213108035,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.8913805028983237,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,446.25,2016401.955826491,1281135.300848796,880369.969178119,229506.8097462151,5196.30539324969 -5988,7422,13503,-9,13501,13504,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.393886174149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,5,1,446.25,2016401.955826491,1281135.300848796,880369.969178119,229506.8097462151,5196.30539324969 -5988,7422,13504,13501,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,9.188077977259729,8.848352569235775,0,20,5,-66.16757171759114,0,2,2,2019,9,0,35,35,1,0,0,30.52915185551402,30.52915185551402,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50,55,6.666666666666667,2,3,0,0,8,8,5,1,446.25,2016401.955826491,1281135.300848796,880369.969178119,229506.8097462151,5196.30539324969 -5989,7423,13505,13506,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,8.15130365082844,8.111062996820497,31,15,140.5842982714516,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,15.66812906389877,0,0,1,1,0,7.487226819654302,7.911661352693866,34.84,23.77,48,49,3.333333333333333,1,1,0,0,0,7,4,1,926.5,1390844.310463866,945405.0992249867,542847.2172195857,0,3336.977251655818 -5989,7423,13506,13505,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.654969922965742,7.920602985511052,0,29,-15,-6.430021660316702,0,3,3,2019,11,0,38,38,1,0,0,7.816278259975461,7.816278259975461,0,0,0,0,7,1,1,0,0,0,48,49,34.84,23.77,8.333333333333334,2,3,0,0,4,7,4,1,926.5,1390844.310463866,945405.0992249867,542847.2172195857,0,3336.977251655818 -5989,7424,13507,-9,13506,13505,1,1,25,0,0,0,1,1,-9,0,1,7.706684045629297,7.796184988828519,0,0,0,-983.5143955862113,0,3,3,2019,14,3,38,13,1,3,1,5.207544218604356,5.207544218604356,0,0,0,0,2,1,1,0,3.09743583506678,0,31.9,46.56,-9,-9,5,4,2,0,0,3,7,3,1,350,15178.85458701417,0,0,0,984.8816251225641 -5989,7425,13508,-9,13506,13505,1,1,21,0,0,0,2,2,-9,0,4,7.998927661604244,7.976866046589956,0,0,0,-1042.955328269685,0,2,3,2019,11,0,40,-9,1,2,1,7.546394575233212,7.546394575233212,0,0,0,0,0,1,1,0,2.610502013254441,0,47,60,-9,-9,0,4,2,0,0,5,7,4,1,106,11137.87544768251,0,0,0,1014.570568649723 -5990,7426,13509,13510,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.159835467449764,7.967323398231436,0,33,-2,-56.28632420734068,0,2,3,2019,7,0,30,32,1,0,0,13.15722300710292,13.15722300710292,0,0,0,0,2,0,0,0,0,0,51.67,60.18,54,54,8.333333333333334,1,1,0,0,8,13,4,1,952.5,1144691.413866156,759688.2751023965,198975.002107713,0,4807.09174122416 -5990,7426,13510,13509,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.006266490437365,7.716920311194056,0,7,2,32.84286637505473,-9,-9,-9,2019,9,0,45,0,1,1,0,6.02668246851073,6.02668246851073,0,0,0,0,0,0,0,0,8.604267646662938,0,54,54,51.67,60.18,8,1,1,0,0,1,13,4,1,952.5,1144691.413866156,759688.2751023965,198975.002107713,0,4807.09174122416 -5991,7427,13511,13512,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.643937718628736,8.416662343679208,0,28,2,128.6005138390867,0,3,3,2019,7,0,49,47,1,0,0,11.9991640385981,11.9991640385981,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.31,49.81,8.333333333333334,1,1,0,0,7,12,4,0,1841.5,1236136.51612406,910225.3010597157,221553.7488357259,0,2263.758205959206 -5991,7427,13512,13511,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.105184416798267,7.000289791920888,0,20,-2,-25.52890661172253,0,2,2,2019,6,0,20,16,1,0,0,8.769894531925754,8.769894531925754,0,0,0,0,14.5,0,0,0,0,0,59.31,49.81,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,0,1841.5,1236136.51612406,910225.3010597157,221553.7488357259,0,2263.758205959206 -5992,7428,13513,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.075042553767432,8.21743116989488,0,0,-948.6435176904437,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,8.335171294880842,6.290696077627932,41.35,47.13,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,401,351690.7142649676,0,349811.9493584462,0,2151.516281745634 -5992,7429,13514,-9,13513,-9,1,0,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-983.7059680389347,1,2,2,2019,10,1,0,40,2,1,0,0,0,0,0,0,0,0,0,0,0,5.253370737999624,0,45.23,46.75,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,232,95962.5755136746,0,0,0,592.9697050797896 -5993,7430,13515,13516,-9,-9,1,1,34,0,1,0,1,1,-9,0,5,8.710384183207177,8.876609886347664,0,3,7,-141.2543833800326,0,-9,-9,2019,13,3,47,47,1,3,0,13.46502409894175,13.46502409894175,0,0,0,0,0,1,1,0,0,0,49.87,54.32,54.2,57.49,6.666666666666667,1,1,0,1,7,4,5,1,549.6666666666666,-34713.37678680744,154093.7039796599,0,0,4298.213532984364 -5993,7430,13516,13515,-9,-9,1,0,27,0,1,0,2,2,1,0,4,7.57866696963037,7.554852293056677,0,3,-7,84.0017943104544,-9,2,-9,2019,10,0,26,0,1,0,0,7.441490268877604,7.441490268877604,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.87,54.32,8.333333333333334,1,1,0,0,7,4,5,1,549.6666666666666,-34713.37678680744,154093.7039796599,0,0,4298.213532984364 -5993,7430,13517,-9,13516,13515,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.1614817993654,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,549.6666666666666,-34713.37678680744,154093.7039796599,0,0,4298.213532984364 -5994,7431,13518,13519,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.189129782220959,8.27268472895928,0,3,4,44.59282737563868,0,-9,-9,2019,5,0,38,38,1,0,0,8.160796988548043,8.160796988548043,0,0,0,0,0,0,0,0,3.287478832720622,0,50.99,49.74,54.79,55.86,6.666666666666667,1,1,0,0,1,4,4,1,506.5,-51207.98211748426,-38705.67805602073,0,0,2703.019423473719 -5994,7431,13519,13518,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.120966255031671,8.084867320723779,0,3,-4,25.60039161663102,0,2,2,2019,6,0,55,37,1,0,0,6.711544672157497,6.711544672157497,0,0,0,0,0,0,0,0,0,0,54.79,55.86,50.99,49.74,10,1,1,0,0,4,4,4,1,506.5,-51207.98211748426,-38705.67805602073,0,0,2703.019423473719 -5995,7432,13520,-9,13521,13522,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.232138329372,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,514.3333333333334,168948.9516560117,15865.30213784879,248698.7948887508,143653.3995601175,2586.602562954857 -5995,7432,13521,13522,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.153842612551029,8.07033882438086,0,5,-2,-6.917932231449023,0,2,2,2019,9,0,37,39,1,0,0,10.85082295007822,10.85082295007822,0,0,0,0,0,1,1,0,0,0,45.92,51.81,35,51.85,6.666666666666667,1,1,0,0,12,13,4,1,514.3333333333334,168948.9516560117,15865.30213784879,248698.7948887508,143653.3995601175,2586.602562954857 -5995,7432,13522,13521,-9,-9,1,1,32,0,1,0,2,2,-9,0,2,8.345408053173314,8.537338357502707,0,5,2,80.86318426473514,0,-9,-9,2019,14,3,37,37,1,3,0,10.64667239778395,10.64667239778395,0,0,0,0,0,1,1,0,2.145474445993151,0,35,51.85,45.92,51.81,5,1,1,0,0,8,13,4,1,514.3333333333334,168948.9516560117,15865.30213784879,248698.7948887508,143653.3995601175,2586.602562954857 -5996,7433,13523,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.407345850612074,8.074513213029714,0,0,-1026.110881998153,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.978287665668148,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,492,1223429.971993003,631766.8661935698,454391.8794469378,0,2571.505541415221 -5997,7434,13524,13525,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,44,2,21.81471348936197,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,33.08,52.38,47.57,6.666666666666667,1,1,0,0,0,9,2,1,989.5,598117.0381276291,-18986.80749436884,465206.3987191548,0,1805.243377254876 -5997,7434,13525,13524,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.719768983811109,6.900116618506867,44,-2,-65.33057101960111,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.148273770470135,6.614858792843918,52.38,47.57,43.34,33.08,1.666666666666667,1,1,0,0,0,9,2,1,989.5,598117.0381276291,-18986.80749436884,465206.3987191548,0,1805.243377254876 -5998,7435,13526,-9,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,0,6.707734065457911,6.869907031694809,0,0,-923.6780587444825,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,7.181768256306129,0,60.87,44.96,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,864,173140.3731898955,161908.1299670757,171009.5810117667,15322.0271833129,1348.217613247047 -5999,7436,13527,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.992718829543079,7.840390471237115,0,0,0,-915.4486176729589,0,2,3,2019,15,3,30,35,1,3,0,8.68544453275811,8.68544453275811,0,0,0,0,0,1,1,0,3.470483737841894,0,45.78,51.81,-9,-9,3.333333333333333,1,1,0,0,10,12,4,1,526,157812.8929253475,-67635.49779104971,110461.4578941327,34377.08232268641,1019.456249702609 -6000,7437,13528,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,9.217003367970694,9.547421952800965,7.12602184580589,0,0,-953.7147605770876,0,1,2,2019,9,1,57,50,1,1,0,23.39477345093279,23.39477345093279,0,0,0,0,0,1,1,0,.330748524134744,7.554611212591094,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,504,866051.0787328279,567076.9957611756,192805.4795499874,0,5497.652291508841 -6001,7438,13529,13530,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.658659067042146,8.511663060849394,0,35,2,-62.85857055462456,0,3,3,2019,5,0,37,37,1,0,0,17.13474863875424,17.13474863875424,0,0,0,0,0,0,0,0,0,0,59.95,36.42,43.69,59.95,8.333333333333334,1,1,0,0,9,2,5,1,1028,762525.7485605484,386551.0611261274,254794.7131613467,4499.745226646859,3218.883417601096 -6001,7438,13530,13529,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.075483629530028,7.980843595497179,0,34,-2,7.966090307188152,0,1,3,2019,13,1,38,40,1,1,0,9.015695176320023,9.015695176320023,0,0,0,0,0,0,0,0,0,0,43.69,59.95,59.95,36.42,8.333333333333334,1,1,0,0,8,2,5,1,1028,762525.7485605484,386551.0611261274,254794.7131613467,4499.745226646859,3218.883417601096 -6002,7439,13531,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.428203388622039,8.454196033848479,0,0,0,-962.2298319108902,0,2,2,2019,11,0,52,45,1,0,0,10.33025643742891,10.33025643742891,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,175,115493.4702911472,-39586.17924625571,0,0,1476.194906941795 -6003,7440,13532,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.492644217952253,7.873507605750017,0,0,0,-1152.485593558184,0,-9,-9,2019,4,0,32,35,1,0,0,6.268922038391954,6.268922038391954,0,0,0,0,0,0,0,0,1.909171344604794,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,10,3,0,1048,-6437.591833885333,0,0,0,712.3134971928698 -6004,7441,13533,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-957.3283680598715,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,0,8,10,1,1,213,44562.58448450435,0,98538.87319460417,-17786.35241241237,455.7161556052432 -6005,7442,13534,13535,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.879917072962957,8.691290451935435,0,4,4,21.92856851903166,0,-9,-9,2019,8,0,38,38,1,0,0,17.15156085573896,17.15156085573896,0,0,0,0,0,0,0,0,0,0,54.1,59.11,58.32,50.22,8.333333333333334,1,1,0,0,9,4,5,1,587.5,172589.1668223629,-20843.47035729629,103681.6898352407,36355.67959151905,3816.822055216939 -6005,7442,13535,13534,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.806601878129383,7.560114588408283,0,4,-4,100.9222106307715,0,3,3,2019,6,0,40,40,1,0,0,7.466304652387833,7.466304652387833,0,0,0,0,0,0,0,0,1.349301144602759,0,58.32,50.22,54.1,59.11,5,1,1,0,0,11,4,5,1,587.5,172589.1668223629,-20843.47035729629,103681.6898352407,36355.67959151905,3816.822055216939 -6006,7443,13536,13539,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.837858854272419,9.630865346113506,0,11,-1,-232.1534291360383,0,1,1,2019,6,0,12,13,1,0,0,153.3002487263854,153.3002487263854,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.1,55.36,8.333333333333334,4,5,0,0,7,2,5,1,1168.75,532120.2667739248,414362.8647829604,430204.0072150736,251068.1641546104,46914.41744227526 -6006,7443,13537,-9,13536,13539,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.677371974866,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,2,5,1,1168.75,532120.2667739248,414362.8647829604,430204.0072150736,251068.1641546104,46914.41744227526 -6006,7443,13538,-9,13536,13539,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1197.539917923795,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,2,5,1,1168.75,532120.2667739248,414362.8647829604,430204.0072150736,251068.1641546104,46914.41744227526 -6006,7443,13539,13536,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,9.403253974456666,9.88533286209659,0,11,1,-130.151044356443,0,1,2,2019,14,2,48,48,1,2,0,37.58177401140773,37.58177401140773,0,0,0,0,0,1,1,0,0,0,38.1,55.36,57.16,56.15,8.333333333333334,4,5,0,0,6,2,5,1,1168.75,532120.2667739248,414362.8647829604,430204.0072150736,251068.1641546104,46914.41744227526 -6007,7444,13540,-9,13543,13542,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.8047192612513,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,9,5,1,1064.25,-47353.99077296445,-1017.119393211376,0,0,3523.495368096532 -6007,7444,13541,-9,13543,13542,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.1676963130647,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,5,1,1064.25,-47353.99077296445,-1017.119393211376,0,0,3523.495368096532 -6007,7444,13542,13543,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,9.345706512279691,9.362296485427185,0,14,2,-25.70751183522452,0,2,2,2019,6,0,42,44,1,0,0,30.78609234944104,30.78609234944104,0,0,0,0,0,0,0,0,3.323754313819213,0,54.1,59.11,49.35,59.64,8.333333333333334,1,1,0,0,6,9,5,1,1064.25,-47353.99077296445,-1017.119393211376,0,0,3523.495368096532 -6007,7444,13543,13542,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,14,-2,41.41503571996071,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.1,59.11,8.333333333333334,2,3,0,0,0,9,5,1,1064.25,-47353.99077296445,-1017.119393211376,0,0,3523.495368096532 -6008,7445,13544,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.551209706162829,7.544209563405555,0,0,0,-1038.062259043712,0,2,-9,2019,5,0,36,38,1,0,0,5.036811882735797,5.036811882735797,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,2,3,0,475,-101645.7188188078,-105164.8791089069,0,0,1516.009631016093 -6009,7446,13545,13546,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.024174397629785,9.066044457752795,0,9,0,132.611645539149,0,2,3,2019,6,0,38,38,1,0,0,24.33048875355908,24.33048875355908,0,0,0,0,0,1,1,0,0,0,35.76,57.79,52,54.51,8.333333333333334,2,3,0,0,9,4,5,1,793,1692406.777011572,1217984.27098497,387096.9516844584,33192.21034080617,5287.431506903496 -6009,7446,13546,13545,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.492735077122282,8.433507166117568,0,9,0,3.627406914109045,0,2,1,2019,9,1,40,43,1,1,0,14.41672372533652,14.41672372533652,0,0,0,0,0,1,1,0,0,0,52,54.51,35.76,57.79,8.333333333333334,1,1,0,0,5,4,5,1,793,1692406.777011572,1217984.27098497,387096.9516844584,33192.21034080617,5287.431506903496 -6009,7446,13547,-9,13546,13545,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.597887423886,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,793,1692406.777011572,1217984.27098497,387096.9516844584,33192.21034080617,5287.431506903496 -6010,7447,13548,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,0,0,-989.821675487756,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,51.89,38.85,-9,-9,0,1,1,1,0,0,13,1,0,723,107423.0325869325,0,0,0,296.1284192922954 -6011,7448,13549,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.21534715274101,7.925211446077254,0,0,-992.9651901497629,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.073719702007135,8.222901513323853,66.76000000000001,29.06,-9,-9,3.333333333333333,1,1,0,0,6,9,4,1,258,807318.0140863732,151588.4166155919,356422.0687401061,0,2939.536808827405 -6012,7449,13550,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.349336813324586,8.25612455847512,0,0,-1051.132363296,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.140285504942052,8.029479624306598,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,320,1118637.820018163,868888.5975107484,296221.5992512373,0,2548.743277453622 -6013,7450,13551,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.444088523548839,8.230804489362892,0,0,0,-997.5301797760087,0,2,2,2019,9,0,46,48,1,0,0,11.67532637891975,11.67532637891975,0,0,0,0,0,0,0,0,0,0,53.05,26.08,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,319,460787.5784233207,145195.1264324015,380397.7041054067,0,2188.461476122986 -6013,7451,13552,-9,13551,-9,1,0,21,0,0,0,2,2,-9,0,1,7.844480684476358,8.039383889369581,0,0,0,-941.8140597350182,0,2,-9,2019,32,11,39,40,1,11,1,7.416016557062107,7.416016557062107,0,0,0,0,0,0,0,0,0,0,14.3,47.96,-9,-9,3.333333333333333,1,1,0,0,4,2,4,1,555,81380.62395335766,0,0,0,1106.034745002336 -6014,7452,13553,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-972.2633574995145,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,56.51,-9,-9,0,1,1,0,0,0,5,1,1,1367,280126.0930926477,0,61804.98521486227,0,581.608712116692 -6015,7453,13554,13555,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.328955501533379,8.158860082235964,0,45,-2,63.69259675301669,0,-9,-9,2019,9,0,30,30,1,0,0,13.07256274772154,13.07256274772154,0,0,0,0,0,0,0,0,2.872662004054952,0,51.24,58.84,55.37,40.83,10,1,1,0,0,10,7,5,1,494.5,656979.878183349,35061.15739509977,480806.8818960226,0,3650.311759902022 -6015,7453,13555,13554,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.371855412076167,8.402984271836111,5.120390945472745,45,2,64.02650573112388,0,-9,-9,2019,9,0,40,35,1,0,0,11.78242682660059,11.78242682660059,0,0,0,0,0,0,0,0,1.670313135575782,5.563274348074779,55.37,40.83,51.24,58.84,8.333333333333334,1,1,0,0,10,7,5,1,494.5,656979.878183349,35061.15739509977,480806.8818960226,0,3650.311759902022 -6015,7454,13556,-9,13554,13555,1,1,41,0,0,0,2,2,-9,0,4,8.869314346152839,8.945599368319163,0,0,0,-971.0869381245816,0,2,2,2019,16,5,48,38,1,5,0,15.23320421586842,15.23320421586842,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,507,755597.6351208433,608862.3247201863,230501.475705069,130245.4799084668,3020.943302545156 -6016,7455,13557,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,0,0,0,0,0,-951.0030516896337,0,3,3,2019,4,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51,58,-9,-9,10,1,1,1,0,2,2,2,0,445,0,0,0,0,749.4673117465165 -6017,7456,13558,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.261747623028434,8.332609931351621,0,0,0,-911.3511816158021,0,2,2,2019,19,7,37,37,1,7,0,11.87899157182891,11.87899157182891,0,0,0,0,7,1,1,0,0,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,1,7,2,3,1,411,379529.9606103754,-51324.63189775102,166737.877976638,0,2291.553473414121 -6017,7457,13559,-9,13558,-9,1,1,18,0,1,0,2,2,-9,0,3,6.777068242060565,7.054647406079569,0,0,0,-1116.458686018772,0,2,-9,2019,13,3,24,0,1,3,1,5.099919947521427,5.099919947521427,0,0,0,0,0,1,1,0,0,0,36.27,50.66,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,679,-133522.7121438772,0,0,0,537.2745852040988 -6018,7458,13560,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-910.5406848656859,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,31.18,57.88,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,162,-66753.11385288851,-36621.24288733982,0,0,233.5195096588877 -6019,7459,13561,13562,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.279796267669079,8.034173675552838,0,2,4,-62.1122838784927,0,-9,-9,2019,8,0,38,37,1,0,0,9.525610087764557,9.525610087764557,0,0,0,0,0,0,0,0,2.369774624777086,0,53.14,51.28,50.93,52.07,8.333333333333334,1,1,0,0,0,4,4,0,741.5,24581.47953386305,67762.50897703686,0,0,2842.560807417884 -6019,7459,13562,13561,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.161843855149263,8.018537491520732,0,2,-4,57.94850357479942,0,2,2,2019,8,0,37,57,1,0,0,9.070186087610631,9.070186087610631,0,0,0,0,0,0,0,0,0,0,50.93,52.07,53.14,51.28,8.333333333333334,1,1,0,0,3,4,4,0,741.5,24581.47953386305,67762.50897703686,0,0,2842.560807417884 -6020,7460,13563,13564,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,7.700418231662118,8.068315905360125,6.813896582985153,39,-1,27.55352594709437,0,3,3,2019,10,0,24,23,1,0,0,7.35570435809585,7.35570435809585,0,0,0,0,14.5,0,0,0,6.903008599682027,5.521789245036134,54.1,59.11,57.33,53.46,10,1,1,0,0,12,4,4,1,1088.5,889286.8947927286,676760.4097312838,151917.3970338717,0,2399.945478958271 -6020,7460,13564,13563,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.967923080590481,7.953585140736614,0,37,1,-24.82714778380869,0,3,3,2019,7,0,40,41,1,0,0,7.424179889200104,7.424179889200104,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.1,59.11,8.333333333333334,1,1,0,0,12,4,4,1,1088.5,889286.8947927286,676760.4097312838,151917.3970338717,0,2399.945478958271 -6021,7461,13565,-9,13567,13569,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1049.440915127278,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,3,1,953.2,76697.87402772938,0,120182.6979346866,0,3100.918962908659 -6021,7461,13566,-9,13567,13569,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.2980907549741,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,3,1,953.2,76697.87402772938,0,120182.6979346866,0,3100.918962908659 -6021,7461,13567,13569,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,21,-3,-25.08231092635589,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.6,49.52,57.16,56.15,8.333333333333334,2,3,0,1,0,6,3,1,953.2,76697.87402772938,0,120182.6979346866,0,3100.918962908659 -6021,7461,13568,-9,13567,13569,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1010.366741944752,1,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,58.58,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,953.2,76697.87402772938,0,120182.6979346866,0,3100.918962908659 -6021,7461,13569,13567,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.22732313472736,8.612276282654678,0,21,3,.1476675189024785,0,3,3,2019,6,0,35,38,1,0,0,13.68595010654484,13.68595010654484,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.6,49.52,6.666666666666667,2,3,0,0,13,6,3,1,953.2,76697.87402772938,0,120182.6979346866,0,3100.918962908659 -6021,7462,13570,-9,13567,13569,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1087.078795231472,-9,2,2,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,10,2,3,0,0,1,6,1,1,1765,22277.54828342784,0,0,0,489.4140487450507 -6022,7463,13571,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,7.168378780298467,6.951885971560392,0,0,-1095.583024998445,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,.7353632722406309,0,0,1,1,0,.8309007764371905,7.240325058397439,40.31,32.2,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,165,246019.9102180967,235364.7743454576,105620.6663203749,0,1546.460964803741 -6023,7464,13572,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,7.334489253713233,7.460617692113851,0,0,-1035.917168461687,0,3,3,2019,16,7,0,0,4,7,0,0,0,1,3.525418105311235,8.559117031434045,17.39825971314056,0,1,1,0,2.748615509513104,7.301597832126292,52.16,26.14,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,218,466322.4977573402,171362.7473848721,357585.0472029649,0,1933.039735206948 -6024,7465,13573,13574,-9,-9,1,0,25,1,1,0,2,2,-9,0,2,7.731934977292441,7.870556936834429,0,2,-5,148.8830679003693,0,2,2,2019,18,6,38,37,1,6,0,7.136694502229624,7.136694502229624,0,0,0,0,0,1,1,0,0,0,32.79,50.23,50,57,8.333333333333334,1,1,0,0,7,6,4,0,433.3333333333333,103279.8442494761,-7055.632078606708,0,0,2669.203159267297 -6024,7465,13574,13573,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.206792568149499,7.984176601481396,0,2,5,166.6367649806336,0,-9,-9,2019,10,0,40,38,1,1,0,9.243465414559399,9.243465414559399,0,0,0,0,0,1,1,0,0,0,50,57,32.79,50.23,7,1,1,0,0,1,6,4,0,433.3333333333333,103279.8442494761,-7055.632078606708,0,0,2669.203159267297 -6024,7465,13575,-9,13573,13574,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.299696311909,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,433.3333333333333,103279.8442494761,-7055.632078606708,0,0,2669.203159267297 -6025,7466,13576,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1015.649068440943,0,2,2,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,3.427261510674786,0,33.53,60.12,-9,-9,1.666666666666667,1,1,1,0,7,12,1,1,430,199207.8647903904,0,0,0,448.1642382881256 -6026,7467,13577,-9,13579,13580,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.9708233513948,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,794.5,509174.8212963342,180817.2785518905,617051.2384177861,299197.0263425234,3708.568854160787 -6026,7467,13578,-9,13579,13580,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.1278428980465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,794.5,509174.8212963342,180817.2785518905,617051.2384177861,299197.0263425234,3708.568854160787 -6026,7467,13579,13580,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,8.288776969114188,7.918125929014175,0,16,-2,4.826294323471072,0,2,1,2019,14,2,47,35,1,2,0,9.145919735450207,9.145919735450207,0,0,0,0,0,1,1,0,0,0,38.17,36.97,58.44,53.26,6.666666666666667,1,1,0,0,9,6,4,1,794.5,509174.8212963342,180817.2785518905,617051.2384177861,299197.0263425234,3708.568854160787 -6026,7467,13580,13579,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.705059523350572,8.279061316709896,0,16,2,-30.78717548748379,0,-9,-9,2019,9,0,65,40,1,0,0,10.27540348886692,10.27540348886692,0,0,0,0,0,1,1,0,0,0,58.44,53.26,38.17,36.97,6.666666666666667,1,1,0,0,9,6,4,1,794.5,509174.8212963342,180817.2785518905,617051.2384177861,299197.0263425234,3708.568854160787 -6027,7468,13581,13582,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,0,0,35,16,-60.53989443999292,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.890374448438752,0,51.77,58.57,58.73,37.79,3.333333333333333,1,1,0,0,8,9,2,1,571.5,1589496.114899693,-116033.8772719183,604257.2390060095,0,250.6278576810829 -6027,7468,13582,13581,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,6.272234208505366,5.819124361635504,0,35,-16,78.6625078217416,0,2,1,2019,12,0,30,40,1,0,0,1.68441068637808,1.68441068637808,0,0,0,0,0,1,1,0,0,0,58.73,37.79,51.77,58.57,8.333333333333334,1,1,0,0,3,9,2,1,571.5,1589496.114899693,-116033.8772719183,604257.2390060095,0,250.6278576810829 -6028,7469,13583,13584,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,0,0,37,1,58.63001353361138,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,8.800000000000001,49.2,10,1,1,0,0,11,4,3,1,459,1788658.626984489,1299133.445210915,162380.4428026409,0,1794.072592382039 -6028,7469,13584,13583,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.891234456049061,7.939119770873949,11,-1,44.926828053466,0,-9,-9,2019,34,12,0,38,4,12,0,0,0,0,0,0,0,2,1,1,0,0,8.22196275495784,8.800000000000001,49.2,62.39,56.71,3.333333333333333,1,1,0,0,11,4,3,1,459,1788658.626984489,1299133.445210915,162380.4428026409,0,1794.072592382039 -6029,7470,13585,13587,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.517216833908594,7.494284148244402,0,6,18,-97.53614843198891,0,3,3,2019,10,0,30,30,1,0,0,9.051018565235951,9.051018565235951,0,0,0,0,0,1,1,0,0,0,48.29,47.89,57.16,56.15,5,1,1,0,0,9,1,4,1,701.6666666666666,388773.0410939546,390635.9706479057,139650.791410817,70924.58677785717,2341.514389596754 -6029,7470,13586,-9,13587,13585,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.00267113171,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,701.6666666666666,388773.0410939546,390635.9706479057,139650.791410817,70924.58677785717,2341.514389596754 -6029,7470,13587,13585,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.273010621316111,8.49165751971584,0,17,-18,-65.29235682182642,0,2,2,2019,7,0,37,41,1,0,0,15.62595031461722,15.62595031461722,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.29,47.89,8.333333333333334,1,1,0,0,5,1,4,1,701.6666666666666,388773.0410939546,390635.9706479057,139650.791410817,70924.58677785717,2341.514389596754 -6030,7471,13588,-9,13590,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.4424696412879,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1433,317948.3596831838,131173.4915078921,339790.3234384645,138819.1532964889,2835.78364015695 -6030,7471,13589,-9,13590,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.792300880247,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,1433,317948.3596831838,131173.4915078921,339790.3234384645,138819.1532964889,2835.78364015695 -6030,7471,13590,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,7.941003015637515,7.660164704644566,0,0,0,-952.5249844382005,0,2,2,2019,17,5,43,40,1,5,0,7.401737866221277,7.401737866221277,0,0,0,0,0,1,1,0,.4624554729450091,0,46.15,29.03,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,1433,317948.3596831838,131173.4915078921,339790.3234384645,138819.1532964889,2835.78364015695 -6031,7472,13591,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1042.366503286433,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,2.464638177674481,.5636016627096774,25.155943659401,0,1,1,0,0,0,50.02,9.94,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,773,108994.8880618468,0,0,0,2114.475891742664 -6032,7473,13592,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.929771706830762,8.120143247725395,0,0,-1082.522258720194,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.586122167523267,7.659026839143287,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,2756,1224085.580628976,640506.7097625674,301059.1062999871,0,1446.589376692432 -6033,7474,13593,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.0736842657149,0,3,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,31.32,27.29,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,181,-10243.29973029384,0,0,0,628.8303108818112 -6034,7475,13594,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.714615178504753,6.439424065287959,0,0,-939.8480908755544,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.622163337154877,50.33,29.45,-9,-9,10,1,1,0,0,0,9,2,1,241,443789.5395818967,16683.70565765888,215112.1005895971,0,1708.267057956446 -6035,7476,13595,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.849635480705,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.509689032077282,0,54.36,46.43,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,700.5,61343.08094758014,0,0,0,1805.025513013197 -6035,7476,13596,-9,13595,-9,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-984.9899304177065,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,700.5,61343.08094758014,0,0,0,1805.025513013197 -6035,7477,13597,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.2326151907786,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.20123650162905,0,55,45,-9,-9,8,4,6,0,0,0,4,1,0,848,223499.4227852177,0,119823.1916408283,0,585.0619927752497 -6036,7478,13598,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.375760684978092,7.772560424363993,0,0,-1102.234910453186,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.002269235357519,8.535503298299949,46.33,62.35,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,373,-9823.969661222465,49811.32053906794,0,0,2330.212169347441 -6037,7479,13599,13600,-9,-9,1,1,39,0,0,0,1,1,-9,1,3,8.521524220702574,8.537277655990302,0,16,-3,26.8949590525794,0,3,3,2019,7,0,38,38,1,0,0,21.97486508347208,21.97486508347208,0,0,0,0,2,1,1,0,1.443076963706075,0,47.74,55.03,44.4,17.69,8.333333333333334,2,3,0,0,11,2,4,1,375.5,220612.9436022301,54088.74258311428,168383.3017315241,129579.3343920754,3042.245721441249 -6037,7479,13600,13599,-9,-9,1,0,42,0,0,0,1,1,-9,1,1,0,0,0,16,3,-26.83205561575587,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,17.69,47.74,55.03,8.333333333333334,1,1,0,0,0,2,4,1,375.5,220612.9436022301,54088.74258311428,168383.3017315241,129579.3343920754,3042.245721441249 -6038,7480,13601,-9,-9,-9,1,0,44,1,1,0,1,1,-9,0,2,8.320050687091246,8.159099552089051,0,0,0,-940.2193739231722,0,2,2,2019,15,3,45,38,1,3,0,10.16236876986602,10.16236876986602,0,0,0,0,27,1,0,1,0,0,31.08,51.12,-9,-9,1.666666666666667,1,1,0,0,10,11,4,0,284,-57444.55192252922,60830.61522494014,35137.165613855,28203.71982255043,1017.854015494318 -6038,7481,13602,-9,-9,13603,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.129629068843,-9,-9,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,1,0,238.5,17061.47195081058,0,0,0,1194.097041223255 -6038,7481,13603,-9,13601,-9,1,1,25,1,1,0,3,3,-9,0,2,0,0,0,0,0,-1000.08718779524,0,1,-9,2019,15,3,0,38,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,37.37,52.14,-9,-9,8.333333333333334,1,1,0,0,1,11,1,0,238.5,17061.47195081058,0,0,0,1194.097041223255 -6038,7482,13604,-9,13601,-9,1,1,21,1,1,0,2,2,-9,0,4,7.698411434220649,7.798314409472607,0,0,0,-980.1152448999781,0,1,-9,2019,20,8,84,0,1,8,1,3.099345641991811,3.099345641991811,0,0,0,0,0,1,0,1,0,0,37.36,57.32,-9,-9,3.333333333333333,1,1,0,0,3,11,3,0,438,96034.07757213958,74432.10635186359,0,0,1494.062825934462 -6039,7483,13605,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.66912923572974,8.626078601701799,0,0,0,-1027.418734479019,0,2,2,2019,21,6,24,40,1,6,0,24.95893245755023,24.95893245755023,0,0,0,0,0,0,0,0,0,0,22.22,68.82000000000001,-9,-9,1.666666666666667,1,1,0,0,7,8,5,1,404,135324.1797116039,101556.2733730367,0,0,1913.11083918492 -6040,7484,13606,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.528111265893284,7.688095778008708,0,0,-833.7175452320619,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.944888514529776,7.69257626454468,62.84,46.85,-9,-9,10,1,1,0,0,0,5,3,1,391,363538.9728082055,389157.1586017389,71112.17184134005,62152.74202449661,2265.859667308588 -6041,7485,13607,13608,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,5.138618145879305,5.506062868710265,47,1,51.13141393056826,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.779174366363414,5.073055276131051,55.12,42.1,52,54.51,8.333333333333334,1,1,0,0,0,4,2,1,1631.5,737923.5175360048,450729.7380112787,296174.1725391865,0,7303.850672225139 -6041,7485,13608,13607,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.048746188625425,7.079735600393561,47,-1,97.0375339246244,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.962885408885638,7.141742767253422,52,54.51,55.12,42.1,6.666666666666667,1,1,0,0,0,4,2,1,1631.5,737923.5175360048,450729.7380112787,296174.1725391865,0,7303.850672225139 -6042,7486,13609,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.804613920571725,8.702036775148304,0,0,0,-1050.152435701721,0,2,2,2019,10,0,80,42,1,0,0,10.09833015784553,10.09833015784553,0,0,0,0,0,0,0,0,3.867387366830853,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,916,364744.7934293419,289847.6317323392,0,0,2680.445638989926 -6043,7487,13610,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.122176891052078,8.22630404147125,0,0,-1014.579124252837,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.933162346872524,7.872618379215063,36.93,56.27,-9,-9,6.666666666666667,1,1,0,0,5,5,4,1,256,1172297.021683616,524084.4255959807,105758.2880596111,0,2547.190763516556 -6044,7488,13611,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.367480924298483,4.395725365822885,0,0,-1117.225481292899,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,16.11399928366403,0,0,1,1,0,0,4.348388195884143,52,45,-9,-9,7,1,1,0,0,0,1,2,0,998,21210.24298369997,34088.06852818918,0,0,1834.562184323445 -6045,7489,13612,13613,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.981238174814552,7.778887779573301,0,6,-2,112.6333632238012,-9,-9,-9,2019,11,0,40,0,1,2,0,7.263072945330771,7.263072945330771,0,0,0,0,0,0,0,0,2.316002875483737,0,48,57,51.73,58.82,7,1,1,0,0,1,12,5,1,261,236270.3593873144,89233.02046760835,193881.5335053327,156315.9864707439,3282.545522019753 -6045,7489,13613,13612,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.620786171478354,8.784981105511283,0,6,2,-105.0328453801121,0,2,2,2019,8,0,48,47,1,0,0,14.91016339646595,14.91016339646595,0,0,0,0,0,0,0,0,2.195695541740491,0,51.73,58.82,48,57,8.333333333333334,1,1,0,0,7,12,5,1,261,236270.3593873144,89233.02046760835,193881.5335053327,156315.9864707439,3282.545522019753 -6046,7490,13614,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.843258639014364,8.248309857291988,0,0,0,-1001.294855962378,0,2,3,2019,20,9,42,37,1,9,0,12.70712666405351,12.70712666405351,0,0,0,0,0,0,0,0,0,0,49.17,47.85,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,588,465152.4833685831,284354.7187958077,104285.4274574876,0,1612.464552774906 -6047,7491,13615,13616,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.741017137497339,8.579757595552941,0,3,1,9.064487088612863,0,2,2,2019,16,4,38,43,1,4,0,20.96392504012278,20.96392504012278,0,0,0,0,0,0,0,0,6.931731317633211,0,22.48,66.73999999999999,35.11,34.11,6.666666666666667,1,1,0,0,4,1,5,1,1171.5,80871.70627660169,57994.01123806158,210127.9700104028,141784.5913155322,3684.43184079562 -6047,7491,13616,13615,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.374006094421448,8.411425777034585,0,3,-1,20.09785792800126,0,-9,-9,2019,15,4,21,20,1,4,0,21.46931665648939,21.46931665648939,0,0,0,0,0,0,0,0,7.529610174006192,0,35.11,34.11,22.48,66.73999999999999,5,1,1,0,0,6,1,5,1,1171.5,80871.70627660169,57994.01123806158,210127.9700104028,141784.5913155322,3684.43184079562 -6048,7492,13617,13618,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.861051571684989,5.951053834021823,35,-6,84.82254934143238,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.994953831208092,55.94,23.15,62.66,52.4,3.333333333333333,1,1,0,0,0,7,2,0,533,434040.2772354061,43707.25934578494,383878.8793786394,0,1043.083745104667 -6048,7492,13618,13617,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,37,6,-30.80282067421876,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,55.94,23.15,0,1,1,0,0,2,7,2,0,533,434040.2772354061,43707.25934578494,383878.8793786394,0,1043.083745104667 -6049,7493,13619,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.816941614660442,7.298408589203202,0,0,-1077.704749413155,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.074992937556675,44.75,47.24,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,849,80975.70228094893,103479.6949909079,114718.6310551194,0,1321.965801899645 -6049,7494,13620,-9,13619,-9,1,0,55,0,0,0,3,3,-9,0,4,7.814739779974182,7.529522867557783,0,0,0,-1016.824360391743,0,2,-9,2019,8,0,37,40,1,0,0,6.506517312787468,6.506517312787468,0,0,0,0,0,1,1,0,0,0,62.4,42.8,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,297,338820.543920905,134792.6481829269,206956.5922894976,0,1215.039728450281 -6050,7495,13621,13622,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.261655848593361,7.506834252294745,52,2,-118.511748735443,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.115091926496786,7.507143189114774,57.33,53.46,47.55,44.33,1.666666666666667,1,1,0,0,2,6,2,1,176,405595.0662674271,118343.1092368507,134833.0698719772,0,1653.722810135196 -6050,7495,13622,13621,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,52,-2,75.06852745874569,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3671124932425005,0,47.55,44.33,57.33,53.46,8.333333333333334,1,1,0,0,7,6,2,1,176,405595.0662674271,118343.1092368507,134833.0698719772,0,1653.722810135196 -6051,7496,13623,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,7.76557033732229,7.467021118051996,4.651886959847721,0,0,-1023.644604639425,0,3,2,2019,8,0,30,0,1,0,0,8.502314345146271,8.502314345146271,0,0,0,0,14.5,0,0,0,4.873075157411456,0,32.1,50.37,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,1058,47859.45696334783,-20588.88619752383,0,0,881.3342616377413 -6052,7497,13624,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.481760089285,0,1,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,5.18624569302594,0,43.65,45.85,-9,-9,3.333333333333333,1,1,1,0,8,12,1,1,1292,50618.01302919049,0,0,0,63.87905181792553 -6053,7498,13625,-9,13627,13628,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-941.3870023346468,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,3,1,1365,3275245.315657272,438205.739710208,1526103.189217825,0,2918.149918285243 -6053,7498,13626,-9,13627,13628,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.1764608980999,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1365,3275245.315657272,438205.739710208,1526103.189217825,0,2918.149918285243 -6053,7498,13627,13628,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,7.736743951894404,7.325763886789917,0,21,-2,132.7756556540875,-9,2,1,2019,13,3,25,0,1,3,0,9.448548343628813,9.448548343628813,0,0,0,0,0,1,1,0,1.63120593955328,0,51.84,51.67,23.05,62.45,6.666666666666667,1,1,0,0,5,9,3,1,1365,3275245.315657272,438205.739710208,1526103.189217825,0,2918.149918285243 -6053,7498,13628,13627,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,8.028858731726926,8.060138805810299,0,1,2,-76.06002644490798,-9,-9,-9,2019,28,12,30,0,1,12,0,8.968183704291969,8.968183704291969,0,0,0,0,0,1,1,0,1.415483969380177,0,23.05,62.45,51.84,51.67,3.333333333333333,1,1,0,0,6,9,3,1,1365,3275245.315657272,438205.739710208,1526103.189217825,0,2918.149918285243 -6054,7499,13629,-9,13632,13631,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.740833314139,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,483,365376.284326198,-14770.11164043386,429464.6142077538,0,3671.391554356701 -6054,7499,13630,-9,13632,13631,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.8794280181089,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,483,365376.284326198,-14770.11164043386,429464.6142077538,0,3671.391554356701 -6054,7499,13631,13632,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,7.004543623293372,6.697574455203873,0,13,2,-74.31388651238366,0,1,2,2019,15,4,15,22,1,4,0,6.833193380656893,6.833193380656893,0,0,0,0,0,1,1,0,.1836252578541583,0,46.9,56.66,45.91,59.89,5,1,1,0,0,11,7,3,1,483,365376.284326198,-14770.11164043386,429464.6142077538,0,3671.391554356701 -6054,7499,13632,13631,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.285013727080816,8.452563346429466,0,15,-2,49.48841423215691,0,1,1,2019,11,1,22,20,1,1,0,19.83570609375856,19.83570609375856,0,0,0,0,0,1,1,0,8.090249754119213,0,45.91,59.89,46.9,56.66,1.666666666666667,1,1,0,0,13,7,3,1,483,365376.284326198,-14770.11164043386,429464.6142077538,0,3671.391554356701 -6055,7500,13633,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.525065425719958,7.581732632274189,0,0,0,-946.9841687029417,0,2,3,2019,16,4,25,26,1,4,0,8.552472145104092,8.552472145104092,0,0,0,0,0,0,0,0,0,0,34.57,55.98,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,242,-208229.5889533778,101034.6292604567,0,0,1221.761517580905 -6056,7501,13634,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.75139233010753,8.467302979136253,0,0,0,-1087.988797542779,0,3,3,2019,8,0,35,37,1,0,0,17.3228243206567,17.3228243206567,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,439,125551.8141550318,331643.0491492342,91005.56307699351,13111.52679129524,1657.990377224039 -6056,7502,13635,-9,13634,-9,1,0,19,0,0,0,2,2,-9,0,3,7.616264678720322,7.175216776787233,0,0,0,-1070.805411467182,0,1,-9,2019,7,1,38,0,1,1,1,6.951125003534354,6.951125003534354,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,3.333333333333333,1,1,0,0,1,2,3,1,623,61739.50199966476,0,0,0,649.1211053876152 -6057,7503,13636,13638,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.863162284526782,8.686530446428769,0,4,1,-52.05126020656751,0,2,1,2019,6,0,45,57,1,0,0,18.83790591402644,18.83790591402644,0,0,0,0,0,1,1,0,0,0,54.77,55.87,37.52,61.39,8.333333333333334,1,1,0,0,7,12,5,1,842,313235.7404254928,135174.7503821357,176281.4473987201,126227.1182004049,4737.454110813644 -6057,7503,13637,-9,13638,13636,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-963.2321198255717,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,842,313235.7404254928,135174.7503821357,176281.4473987201,126227.1182004049,4737.454110813644 -6057,7503,13638,13636,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.567314275828759,8.561937024251961,0,4,-1,-183.6179184194491,0,-9,-9,2019,19,7,26,28,1,7,0,21.12672611783485,21.12672611783485,0,0,0,0,0,1,1,0,0,0,37.52,61.39,54.77,55.87,8.333333333333334,1,1,0,0,9,12,5,1,842,313235.7404254928,135174.7503821357,176281.4473987201,126227.1182004049,4737.454110813644 -6058,7504,13639,13640,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.011363232323925,8.744951657472813,44,3,96.4079223255201,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.298660117368713,9.197738226391241,52.48,51.63,53.22,55.2,8.333333333333334,1,1,0,0,9,5,5,1,323,2403875.382204757,657819.4286255884,749533.96172206,0,5013.414981719617 -6058,7504,13640,13639,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.059645493384196,5.11216987163858,44,-3,44.72875946618615,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.494557454188107,5.495616080590444,53.22,55.2,52.48,51.63,10,1,1,0,0,0,5,5,1,323,2403875.382204757,657819.4286255884,749533.96172206,0,5013.414981719617 -6059,7505,13641,-9,13644,13643,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.9300382107131,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,4,0,1415.25,191771.3491060031,0,302983.6001997062,75169.92616285471,3417.758702956274 -6059,7505,13642,-9,13644,13643,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.532267656136,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.4698510173576889,0,1,1,0,0,0,48,59,-9,-9,7,4,5,-9,0,0,8,4,0,1415.25,191771.3491060031,0,302983.6001997062,75169.92616285471,3417.758702956274 -6059,7505,13643,13644,-9,-9,1,1,57,0,3,0,1,1,-9,0,3,8.674136220466638,8.457703462624355,0,6,15,-61.62733308689556,0,3,3,2019,12,1,60,66,1,1,0,9.698784116285051,9.698784116285051,0,0,0,0,14.5,1,1,0,0,0,46.33,55.93,50,55,6.666666666666667,4,5,0,1,9,8,4,0,1415.25,191771.3491060031,0,302983.6001997062,75169.92616285471,3417.758702956274 -6059,7505,13644,13643,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.759072885677595,7.978105492815039,0,19,-15,20.55252514522226,0,3,3,2019,10,0,32,15,1,1,0,8.21503264401948,8.21503264401948,0,0,0,0,74.5,1,1,0,0,0,50,55,46.33,55.93,8,4,5,0,1,5,8,4,0,1415.25,191771.3491060031,0,302983.6001997062,75169.92616285471,3417.758702956274 -6060,7506,13645,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.945666114796756,6.875926658662507,0,0,-943.1424129471345,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.218761872331346,34.06,38.71,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,371,715258.5661227681,295570.3281188907,311714.0880164948,0,886.2767628670513 -6061,7507,13646,-9,13648,13647,1,0,24,0,1,1,1,0,0,0,4,0,0,0,0,0,-1003.323828793187,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,6,12,1,1,271,-19546.2702870264,0,0,0,0 -6061,7508,13647,13648,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.458309674603495,8.253776393849522,0,10,5,-27.38835697151248,0,2,2,2019,10,1,39,39,1,1,0,13.91027041680976,13.91027041680976,0,0,0,0,7,1,1,0,0,0,42.83,57.26,34.23,27.99,8.333333333333334,1,1,0,0,11,12,3,1,955,106220.2853163777,117397.5164128184,135861.3611876965,53786.78881512181,1872.134756991582 -6061,7508,13648,13647,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,10,-5,-83.77064737559543,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,34.23,27.99,42.83,57.26,8.333333333333334,1,1,0,1,0,12,3,1,955,106220.2853163777,117397.5164128184,135861.3611876965,53786.78881512181,1872.134756991582 -6061,7508,13649,-9,13648,13647,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.721858959298,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,955,106220.2853163777,117397.5164128184,135861.3611876965,53786.78881512181,1872.134756991582 -6062,7509,13650,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1149.34087249559,0,3,-9,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.93,48.48,-9,-9,8.333333333333334,1,1,0,0,4,8,1,0,227,98942.75367580133,-26783.76748411854,0,0,1086.224596569102 -6063,7510,13651,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.593896861726318,4.665921492462775,0,0,-1021.549720977784,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,4.810281250067257,37.02,47.89,-9,-9,6.666666666666667,1,1,0,0,5,12,2,1,440,-36597.0264749011,24490.53689815848,80138.19475749892,0,1086.81093452842 -6064,7511,13652,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.229895651049905,8.403411841646404,0,0,0,-902.6549481027201,0,2,2,2019,9,1,37,37,1,1,0,9.975242924138554,9.975242924138554,0,0,0,0,0,0,0,0,2.288980133507099,0,44.21,60.79,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,2137,610479.7347382968,-44554.61490134179,450504.7473857025,83283.09940939111,1660.679827557552 -6065,7512,13653,13654,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-1,17.98069465482554,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,1.368842539248668,0,59.22,40.22,55.79,52.62,6.666666666666667,1,1,0,0,0,9,2,1,1026,727982.9345367921,32772.09231298244,666144.2591411454,0,1469.978993801475 -6065,7512,13654,13653,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.735943819806268,6.28760380108045,55,1,-63.6028020804526,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.743323490769103,6.54075586136052,55.79,52.62,59.22,40.22,8.333333333333334,1,1,0,0,0,9,2,1,1026,727982.9345367921,32772.09231298244,666144.2591411454,0,1469.978993801475 -6066,7513,13655,-9,13656,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.7358785747908,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,729,68678.73454599947,-21133.98209835967,177196.8620603508,0,1697.003529488103 -6066,7513,13656,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.906327920278159,7.92781321845015,0,0,0,-1076.843477892706,0,2,-9,2019,6,0,52,37,1,0,0,6.032301030768818,6.032301030768818,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,729,68678.73454599947,-21133.98209835967,177196.8620603508,0,1697.003529488103 -6067,7514,13657,13658,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-2,-8.813937511701754,0,-9,-9,2019,27,12,0,0,4,12,0,0,0,1,0,39.23358535536362,0,0,1,1,0,0,0,29.32,20.77,54.77,55.87,3.333333333333333,1,1,0,0,3,10,2,1,379,210929.0947644158,0,257920.5615476488,0,978.8052335585246 -6067,7514,13658,13657,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.280582825212609,4.404495311130638,9,2,-9.476649768888279,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.18480600152498,4.842840324249855,54.77,55.87,29.32,20.77,8.333333333333334,1,1,0,0,6,10,2,1,379,210929.0947644158,0,257920.5615476488,0,978.8052335585246 -6068,7515,13659,13660,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,7.252720701740355,7.61223398113688,1,2,-36.6965469197356,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,.8131701647684,0,120,1,1,0,7.232088754217746,7.241939448265623,41.83,28.5,34.44,48.18,8.333333333333334,1,1,0,0,0,11,3,1,1194.5,1768340.592977691,181724.6347180595,514923.2196049865,0,3348.809984663653 -6068,7515,13660,13659,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.486632755430179,8.037964944705147,1,-2,.3902501537750733,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,.4711514315020757,120,1,1,0,7.777764517210512,6.110330043611244,34.44,48.18,41.83,28.5,6.666666666666667,1,1,0,0,0,11,3,1,1194.5,1768340.592977691,181724.6347180595,514923.2196049865,0,3348.809984663653 -6069,7516,13661,13665,-9,-9,1,1,52,1,4,0,3,3,-9,0,4,6.714330348264948,6.213894702191966,0,19,17,-83.44936853682772,-9,3,3,2019,9,0,48,0,1,1,0,1.363691152647416,1.363691152647416,0,0,0,0,0,1,1,0,0,0,53,54,44.98,57.48,8,3,4,0,0,1,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6069,7516,13662,-9,13665,13661,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-899.8691035946458,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6069,7516,13663,-9,13665,13661,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-997.3552805404983,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6069,7516,13664,-9,13665,13661,1,0,15,1,4,1,3,0,-9,0,3,0,0,0,0,0,-939.3365657375055,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6069,7516,13665,13661,-9,-9,1,0,35,1,4,0,2,2,-9,0,4,7.382441504135138,7.446709783459335,0,19,-17,46.43438881743044,0,2,2,2019,9,1,25,28,1,1,0,6.198240398784452,6.198240398784452,0,0,0,0,0,1,1,0,0,0,44.98,57.48,53,54,6.666666666666667,3,4,0,1,9,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6069,7516,13666,-9,13665,13661,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-910.9045093847834,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,676.3333333333334,103114.3845759123,0,237299.3132112327,164805.2986017168,1933.050655635099 -6070,7517,13667,13668,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.558330842124127,9.489434556822253,0,4,-1,-47.04179576101652,0,1,1,2019,10,1,40,35,1,1,0,34.99997271493699,34.99997271493699,0,0,0,0,0,0,0,0,0,0,48.93,55.73,54.2,57.49,8.333333333333334,1,1,0,0,12,8,5,1,668,1647947.930458495,727554.6762586916,867745.3522255335,0,7143.306823785651 -6070,7517,13668,13667,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.561919825675767,8.976708835946676,0,4,1,102.5060649918461,0,-9,-9,2019,12,0,1,35,1,0,0,834.0080299717749,834.0080299717749,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.93,55.73,8.333333333333334,1,1,0,0,3,8,5,1,668,1647947.930458495,727554.6762586916,867745.3522255335,0,7143.306823785651 -6071,7518,13669,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-953.5050595194692,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.194590671267443,0,56.18,48.32,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,500,179207.1449336586,0,0,0,950.2768134931226 -6072,7519,13670,13671,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.021927327987373,6.599977625052043,0,6,1,-35.29988194410601,0,-9,-9,2019,20,7,20,40,1,7,0,8.802058089428426,8.802058089428426,0,0,0,0,0,0,0,0,0,0,41.13,40.48,57.16,56.15,6.666666666666667,1,1,0,0,5,9,4,1,600,-81432.38419754503,106120.9548006223,0,0,2205.936591774548 -6072,7519,13671,13670,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.314652938794543,8.297139625046928,0,6,-1,4.485503662924144,0,-9,-9,2019,4,0,40,41,1,0,0,11.25021426857948,11.25021426857948,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.13,40.48,10,1,1,0,0,9,9,4,1,600,-81432.38419754503,106120.9548006223,0,0,2205.936591774548 -6073,7520,13672,13673,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,6.263201703312913,6.281114511297122,0,7,1,-33.01777235901631,0,2,2,2019,8,0,9,0,1,0,0,7.564334228056286,7.564334228056286,0,0,0,0,0,1,1,0,0,0,56.18,53.85,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,1,1087.75,551675.1839529609,360549.1960134596,136716.013976929,25268.37667696957,2674.957296925452 -6073,7520,13673,13672,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.818272876969859,9.181674410035553,0,7,-1,-115.6020631281956,-9,2,3,2019,12,0,40,0,1,0,0,17.07027415508671,17.07027415508671,0,0,0,0,0,1,1,0,5.628771604575636,0,57.16,56.15,56.18,53.85,8.333333333333334,1,1,0,0,8,11,4,1,1087.75,551675.1839529609,360549.1960134596,136716.013976929,25268.37667696957,2674.957296925452 -6073,7520,13674,-9,13672,13673,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1006.778685300407,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1087.75,551675.1839529609,360549.1960134596,136716.013976929,25268.37667696957,2674.957296925452 -6073,7520,13675,-9,13672,13673,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.163066065675,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1087.75,551675.1839529609,360549.1960134596,136716.013976929,25268.37667696957,2674.957296925452 -6074,7521,13676,13677,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,7.917590320312056,7.864260885053042,3.676968802995979,7,3,-76.79577127899483,0,2,-9,2019,15,3,45,39,1,3,0,6.512403615752758,6.512403615752758,0,0,0,0,0,0,0,0,4.151807940454686,0,38.51,48.9,51.77,58.57,6.666666666666667,1,1,0,0,8,13,4,1,413.5,113334.7479501603,-6919.123016769023,0,0,3346.157049402395 -6074,7521,13677,13676,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.997780590352658,8.37730083242556,0,7,-3,25.14981449692038,0,2,3,2019,9,0,38,35,1,0,0,9.308998884197283,9.308998884197283,0,0,0,0,0,0,0,0,6.804417138323988,0,51.77,58.57,38.51,48.9,8.333333333333334,1,1,0,0,8,13,4,1,413.5,113334.7479501603,-6919.123016769023,0,0,3346.157049402395 -6075,7522,13678,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.841621663694381,6.866723841867719,0,0,-1029.931431805823,0,-9,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.454376158154245,5.582954701531776,50,46,-9,-9,5,1,1,0,0,7,8,2,1,501,66503.11152167428,-11421.96118115011,0,0,1356.686933848285 -6076,7523,13679,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,8.529539281555307,7.578246983062098,0,0,-976.3430430948889,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.727830041639443,7.914565502512739,55.69,48.7,-9,-9,10,1,1,0,0,0,13,3,1,705,276145.7965427562,127799.7282636142,67960.52991980431,0,2370.704615894755 -6077,7524,13680,-9,13681,13682,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.6501049902154,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,0,2242,743350.1246627202,533878.5634285955,270417.9416654842,78601.77702081401,3684.207131007768 -6077,7524,13681,13682,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.006459936615119,7.861815874926982,0,8,-8,-81.41461384484001,0,2,2,2019,17,7,47,54,1,7,0,9.059061091583292,9.059061091583292,0,0,0,0,0,1,1,0,0,0,44.19,58.01,58.32,50.22,8.333333333333334,1,1,0,0,9,11,5,0,2242,743350.1246627202,533878.5634285955,270417.9416654842,78601.77702081401,3684.207131007768 -6077,7524,13682,13681,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.82137936774763,8.93901832101532,0,8,8,53.25796597690782,-9,-9,-9,2019,10,0,70,0,1,0,0,9.013306825612849,9.013306825612849,0,0,0,0,0,1,1,0,0,0,58.32,50.22,44.19,58.01,8.333333333333334,1,1,0,0,9,11,5,0,2242,743350.1246627202,533878.5634285955,270417.9416654842,78601.77702081401,3684.207131007768 -6078,7525,13683,13684,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.929079408082401,9.452298921823077,9.006412049127146,34,-2,-33.76598950424189,0,2,3,2019,6,0,40,40,1,0,0,24.03391181574636,24.03391181574636,0,0,0,0,0,0,0,0,6.779476078170728,8.994301354749929,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,10,9,5,1,749.5,768906.6015834333,531742.4653634898,182154.9425615617,127508.4189724801,6786.072866537555 -6078,7525,13684,13683,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.785353730849656,7.044634958909204,6.23205220702234,34,2,90.5661563741225,0,3,3,2019,11,0,4,7,1,0,0,23.78043948843078,23.78043948843078,0,0,0,0,0,0,0,0,3.655043171586554,6.328847025415722,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,749.5,768906.6015834333,531742.4653634898,182154.9425615617,127508.4189724801,6786.072866537555 -6078,7526,13685,-9,13684,13683,1,0,25,0,0,0,1,1,-9,0,4,8.582078967180497,8.647079020566323,0,0,0,-1002.354462779964,0,2,1,2019,22,10,50,58,1,10,1,12.3320144370739,12.3320144370739,0,0,0,0,0,0,0,0,2.490294554580684,0,28.41,64.05,-9,-9,3.333333333333333,1,1,0,0,5,9,5,1,564,183128.3333722508,-27233.97931644309,0,0,2571.34886723381 -6079,7527,13686,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.183076865635499,8.406913201660053,0,0,0,-953.147025702503,0,2,2,2019,7,0,80,80,1,0,0,5.213897177340891,5.213897177340891,0,0,0,0,0,0,0,0,0,0,60.59,54.8,-9,-9,8.333333333333334,1,1,0,0,12,10,4,0,1343,137739.5597861162,32459.47674170834,209500.8783053723,0,1569.346649003581 -6080,7528,13687,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.356731239392894,7.369083803274828,0,0,-1127.5574915806,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.265949111157417,7.580776203332086,60.12,54.8,-9,-9,10,1,1,0,0,3,2,3,1,387,57342.20389426798,160993.4246113716,0,0,1952.478392173833 -6081,7529,13688,13689,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.615652448948437,7.586500906032852,8,0,57.76195653572548,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.143374597201477,7.711653539625557,50.51,53.71,53.81,53.56,10,1,1,0,0,0,11,4,1,918,1719238.228223606,1159528.052264801,183072.427702623,0,4244.340308628374 -6081,7529,13689,13688,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.690046363218139,7.726977904473,8,0,-95.71266810987535,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.120796606339476,8.006484518150433,53.81,53.56,50.51,53.71,8.333333333333334,1,1,0,0,3,11,4,1,918,1719238.228223606,1159528.052264801,183072.427702623,0,4244.340308628374 -6082,7530,13690,-9,13692,13691,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1151.338062578336,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,577.3333333333334,552773.7702494101,411990.3675726934,329118.61332954,147719.0157981268,4238.276411480574 -6082,7530,13691,13692,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,9.100190059847062,9.098366546255948,0,5,2,21.12479014135289,0,3,2,2019,6,0,47,55,1,0,0,20.5861821411494,20.5861821411494,0,0,0,0,0,0,0,0,0,0,54.69,57.47,46.55,57.7,8.333333333333334,1,1,0,0,9,6,5,1,577.3333333333334,552773.7702494101,411990.3675726934,329118.61332954,147719.0157981268,4238.276411480574 -6082,7530,13692,13691,-9,-9,1,0,31,1,1,0,2,2,-9,0,5,7.046941266355477,7.060326177871006,0,5,-2,-87.8108502257782,0,-9,-9,2019,6,0,1,0,1,0,0,123.4211621772466,123.4211621772466,0,0,0,0,0,0,0,0,0,0,46.55,57.7,54.69,57.47,10,1,1,0,0,2,6,5,1,577.3333333333334,552773.7702494101,411990.3675726934,329118.61332954,147719.0157981268,4238.276411480574 -6083,7531,13693,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.761615173734737,7.915463411059911,5.246880471550097,0,0,-1059.188707841133,0,3,-9,2019,17,5,35,40,1,5,0,8.842500959154501,8.842500959154501,0,0,0,0,7,1,1,0,5.131924771056134,0,36.51,56.02,-9,-9,3.333333333333333,4,2,0,1,9,4,4,0,121,233104.4644988226,10144.97275633427,111058.1995034201,58443.7367544241,1552.783626686897 -6084,7532,13694,13695,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.446481228853657,7.040800417487029,8,2,-108.1115288535,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.352222527375294,61.19,36.58,62.08,46.01,6.666666666666667,1,1,0,0,4,10,3,1,509,618704.733140288,287520.1072951552,265977.9615874302,0,3032.764673820275 -6084,7532,13695,13694,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.961706481943032,6.955927314152947,8,-2,-21.5464191012951,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.228312911369837,5.816491623749151,62.08,46.01,61.19,36.58,10,1,1,0,0,0,10,3,1,509,618704.733140288,287520.1072951552,265977.9615874302,0,3032.764673820275 -6085,7533,13696,-9,13697,13698,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.7660292499022,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,647,1662832.451785652,865222.2391712066,890588.9887014151,183398.3291901821,6063.465264691123 -6085,7533,13697,13698,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,8.981186776646043,9.024979887737091,0,2,-6,0,0,2,2,2019,7,0,35,40,1,0,0,26.47408829385673,26.47408829385673,0,0,0,0,0,1,1,0,6.774522052364346,0,54.69,57.47,57.06,57.76,10,4,2,0,0,9,8,5,1,647,1662832.451785652,865222.2391712066,890588.9887014151,183398.3291901821,6063.465264691123 -6085,7533,13698,13697,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,8.803647163727151,8.590789401831231,0,2,6,0,0,-9,-9,2019,5,0,35,35,1,0,0,22.87571872767764,22.87571872767764,0,0,0,0,0,1,1,0,5.232107990394899,0,57.06,57.76,54.69,57.47,10,4,2,0,0,9,8,5,1,647,1662832.451785652,865222.2391712066,890588.9887014151,183398.3291901821,6063.465264691123 -6086,7534,13699,13702,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.217918787716975,9.357381063954223,0,14,0,-4.733312289922495,0,2,2,2019,10,0,60,66,1,0,0,28.05741432069502,28.05741432069502,0,0,0,0,0,0,0,0,3.406824210860648,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,10,8,5,1,1290.5,413892.6631788844,-10913.88439439269,830695.5389113354,591749.3876847985,5201.137677789513 -6086,7534,13700,-9,13702,13699,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.468266974618,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1290.5,413892.6631788844,-10913.88439439269,830695.5389113354,591749.3876847985,5201.137677789513 -6086,7534,13701,-9,13702,13699,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.261080368844,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1290.5,413892.6631788844,-10913.88439439269,830695.5389113354,591749.3876847985,5201.137677789513 -6086,7534,13702,13699,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.503911378320465,8.595054730159925,0,14,0,80.27093100054239,0,1,1,2019,8,0,50,45,1,0,0,10.76112892895139,10.76112892895139,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,1290.5,413892.6631788844,-10913.88439439269,830695.5389113354,591749.3876847985,5201.137677789513 -6087,7535,13703,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1052.165449951229,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.03,59.58,-9,-9,10,1,1,0,1,0,1,1,0,596,251522.516192979,0,278145.6152208698,0,1459.387800072624 -6088,7536,13704,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.602923454721099,5.269850355862926,0,0,-1073.799570930904,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.006991012307423,0,38.77,40.42,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1515,-99327.58482577933,0,0,0,701.9892294006589 -6088,7537,13705,-9,13704,-9,1,1,45,0,0,0,2,2,-9,0,4,7.725426016561103,7.93873782068535,6.8705951919958,0,0,-976.0876835798078,0,3,-9,2019,9,0,37,35,1,1,0,7.533256336948489,7.533256336948489,0,0,0,0,0,1,1,0,0,6.418967923282711,52,55,-9,-9,8,1,1,0,0,1,5,4,1,882,-44452.16056159444,0,55999.469446376,3678.321665304262,1679.620370084069 -6089,7538,13706,13707,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.032880711766897,8.415288242518223,0,8,3,-161.6633297032704,0,-9,-9,2019,9,0,38,38,1,1,0,9.613007974341386,9.613007974341386,0,0,0,0,0,0,0,0,0,0,53,54,28.4,48.15,8,1,1,0,0,1,12,5,1,1527.5,913204.9920688646,611862.0539779491,222395.0647800557,8872.054418225958,2998.709241760768 -6089,7538,13707,13706,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.249234192995415,8.42830933358335,0,31,-3,79.11223256605244,0,3,3,2019,19,7,44,38,1,7,0,13.37591833314768,13.37591833314768,0,0,0,0,14.5,0,0,0,5.177497318648079,0,28.4,48.15,53,54,6.666666666666667,1,1,0,0,7,12,5,1,1527.5,913204.9920688646,611862.0539779491,222395.0647800557,8872.054418225958,2998.709241760768 -6089,7539,13708,-9,13707,13706,1,0,27,0,0,0,2,2,-9,0,3,8.223330099386816,8.052822288950702,0,0,0,-988.1546048033084,0,3,2,2019,9,1,42,30,1,1,1,9.671639044724893,9.671639044724893,0,0,0,0,2,0,0,0,0,0,43.06,47.68,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,295,-32699.44257197049,-8626.780291167686,0,0,1883.613113455909 -6089,7540,13709,-9,13707,13706,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1071.833509281081,1,3,2,2019,9,1,0,35,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,5,12,1,1,526,0,0,0,0,0 -6090,7541,13710,13711,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.538475743392134,8.758023454305478,0,33,1,-14.15033997644064,-9,3,3,2019,10,0,40,0,1,1,0,16.55534605905332,16.55534605905332,0,0,0,0,0,0,0,0,2.280451571339048,0,50,49,48,49,7,1,1,0,0,10,1,5,0,675,835180.2734353773,782347.9289496923,143754.9744591104,29017.7664145226,3274.365974080418 -6090,7541,13711,13710,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.213787999671972,7.443506855250164,0,33,-1,209.4520127390491,0,3,3,2019,12,0,16,16,1,2,0,10.39957179599608,10.39957179599608,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,0,10,1,5,0,675,835180.2734353773,782347.9289496923,143754.9744591104,29017.7664145226,3274.365974080418 -6091,7542,13712,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.626423482206984,5.523605041087458,0,0,-946.4025890676304,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.659155509865807,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,1,2,1,902,-16399.13281602378,0,0,0,1140.857693302338 -6092,7543,13713,13714,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.130242541683277,8.08991221266001,0,8,0,39.19494853653562,0,2,3,2019,6,0,35,35,1,0,0,8.83692583299254,8.83692583299254,0,0,0,0,0,0,0,0,0,0,57.17,50.61,56.94,49.53,8.333333333333334,1,1,0,0,9,12,5,1,982.5,1532950.012767176,1032520.466494515,494527.3185640349,79361.12930109422,3520.565299110229 -6092,7543,13714,13713,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.843503620615348,8.846779615578994,0,8,0,-54.25355114620584,0,-9,-9,2019,6,0,40,37,1,0,0,16.04542185839334,16.04542185839334,0,0,0,0,0,0,0,0,0,0,56.94,49.53,57.17,50.61,8.333333333333334,1,1,0,0,10,12,5,1,982.5,1532950.012767176,1032520.466494515,494527.3185640349,79361.12930109422,3520.565299110229 -6093,7544,13715,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-979.9699324961267,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,49.84,42.6,-9,-9,5,1,1,0,0,0,7,2,0,1275,411166.1686430945,0,261169.0584331429,0,1043.655981169604 -6094,7545,13716,-9,13718,13717,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.417229972963,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,5,1,963.3333333333334,3080045.464880062,2783759.268673335,267174.8559094064,0,7672.002684183474 -6094,7545,13717,13718,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,9.182731623481439,9.330840025060942,0,6,3,8.009084149977173,-9,1,1,2019,1,0,45,0,1,0,0,27.20519340893891,27.20519340893891,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48,56,8.333333333333334,2,3,0,0,10,4,5,1,963.3333333333334,3080045.464880062,2783759.268673335,267174.8559094064,0,7672.002684183474 -6094,7545,13718,13717,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.802591627912594,8.939507222661229,0,6,-3,-36.79165605675924,-9,2,1,2019,11,0,37,0,1,2,0,19.33829010518774,19.33829010518774,0,0,0,0,0,1,1,0,4.420042900463661,0,48,56,57.06,57.76,7,2,3,0,0,13,4,5,1,963.3333333333334,3080045.464880062,2783759.268673335,267174.8559094064,0,7672.002684183474 -6095,7546,13719,-9,13722,13720,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1036.944443457229,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,380,1091900.637709085,527659.6332695415,302244.0730742761,22615.51868430653,5790.678265593549 -6095,7546,13720,13722,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.764028797818611,9.328474716846204,0,21,0,-.7218152898320724,0,2,3,2019,10,0,45,45,1,0,0,43.19723129137125,43.19723129137125,0,0,0,0,0,0,0,0,0,0,53.14,51.28,58.15,52.91,3.333333333333333,1,1,0,0,10,9,5,1,380,1091900.637709085,527659.6332695415,302244.0730742761,22615.51868430653,5790.678265593549 -6095,7546,13721,-9,13722,13720,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1105.169073048594,-9,2,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37.65,65.37,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,380,1091900.637709085,527659.6332695415,302244.0730742761,22615.51868430653,5790.678265593549 -6095,7546,13722,13720,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,21,0,39.43682659573368,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,53.14,51.28,1.666666666666667,1,1,0,0,0,9,5,1,380,1091900.637709085,527659.6332695415,302244.0730742761,22615.51868430653,5790.678265593549 -6096,7547,13723,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.098296534440863,8.030484353698961,0,0,0,-1093.827279184781,0,-9,-9,2019,10,0,42,40,1,0,0,10.22002762136854,10.22002762136854,0,0,0,0,0,0,0,0,0,0,40.05,57.26,-9,-9,6.666666666666667,1,1,0,0,13,11,4,0,105,-24913.32912850697,294895.0303278536,0,0,804.346721193577 -6097,7548,13724,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.431470943662598,7.969543775645066,0,0,0,-995.7707609708851,0,2,2,2019,9,1,50,60,1,1,0,7.81954246662469,7.81954246662469,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,1364,-12844.45537111302,0,0,0,1767.710549879394 -6097,7549,13725,-9,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,6.834093966483153,6.874427486194411,0,0,-966.7199496738491,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.575935123766283,0,59.41,45.49,-9,-9,8.333333333333334,2,3,0,0,2,8,2,0,245,-170650.4116229801,0,0,0,865.3815174340341 -6097,7550,13726,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,4,7.9680670583167,8.214094007157811,0,0,0,-929.3330983776601,-9,-9,-9,2019,13,3,40,0,1,3,0,6.367370294656642,6.367370294656642,0,0,0,0,0,0,0,0,0,0,44.31,40.35,-9,-9,8.333333333333334,2,3,0,0,1,8,3,0,712,-1418.625211320072,-45335.28301823121,0,0,1224.961512252212 -6098,7551,13727,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1034.178241307366,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,0,9.660688321102089,0,0,1,1,0,4.87109826976472,0,41.35,51.09,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,460,-12433.52147396385,0,129131.9968481972,0,576.1352107036026 -6099,7552,13728,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.855033555638512,7.786251054637206,0,0,0,-1083.90761063352,0,3,3,2019,14,2,35,43,1,2,0,7.769780878375847,7.769780878375847,0,0,0,0,0,0,0,0,0,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,1,3,13,3,0,306,-4190.788229646379,105682.0522393328,0,0,1320.870886673723 -6099,7553,13729,-9,13728,-9,1,0,24,0,0,0,2,2,-9,0,3,7.671795181031731,7.771590353501671,0,0,0,-837.8177469449793,0,3,3,2019,14,3,37,40,1,3,1,6.880965344442398,6.880965344442398,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,7,13,3,0,496,289856.7312766374,0,0,0,430.9328700789557 -6100,7554,13730,-9,13732,13731,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.4551299430859,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,861,1735553.68257966,1351664.734334641,455992.693566984,343696.9954713268,4701.363417993358 -6100,7554,13731,13732,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.517047945911239,9.198861742921538,0,7,2,6.735530421694438,0,2,2,2019,10,0,60,60,1,0,0,21.42445392632458,21.42445392632458,0,0,0,0,0,0,0,0,0,0,48.89,43.78,51.83,57.2,6.666666666666667,1,1,0,0,8,2,5,1,861,1735553.68257966,1351664.734334641,455992.693566984,343696.9954713268,4701.363417993358 -6100,7554,13732,13731,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.497363210084371,7.688289128171854,0,7,-2,-63.66943359797992,0,2,2,2019,8,0,24,23,1,0,0,10.6441425084968,10.6441425084968,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.89,43.78,8.333333333333334,1,1,0,0,8,2,5,1,861,1735553.68257966,1351664.734334641,455992.693566984,343696.9954713268,4701.363417993358 -6101,7555,13733,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.461588829399735,8.201410890569667,7.030594857354309,0,0,-928.3614767728894,0,2,2,2019,10,0,29,30,1,0,0,14.00315649508705,14.00315649508705,0,0,0,0,0,1,1,0,6.403846866230579,6.792511381632353,47.83,55.12,-9,-9,6.666666666666667,1,1,0,0,6,1,5,1,1821,67713.82065680349,17790.40336556425,0,0,2472.561651896112 -6102,7556,13734,13735,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,8.151784384678624,7.805634914602684,0,10,-13,30.48435740732236,0,3,3,2019,7,0,39,39,1,0,0,8.766497613596764,8.766497613596764,0,0,0,0,0,1,1,0,0,0,60.57,46.44,59.27,44.84,6.666666666666667,1,1,0,0,11,12,3,1,689.5,-10878.81535691492,26693.58404641742,77618.14601549713,0,1741.6851052909 -6102,7556,13735,13734,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,10,13,52.34586262427887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.27,44.84,60.57,46.44,8.333333333333334,1,1,0,0,0,12,3,1,689.5,-10878.81535691492,26693.58404641742,77618.14601549713,0,1741.6851052909 -6103,7557,13736,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.290983212429133,7.102664317607788,0,0,0,-1141.585056493867,0,3,3,2019,9,0,21,17,1,0,0,8.273049560536217,8.273049560536217,0,0,0,0,0,1,1,0,0,0,47.53,45.46,-9,-9,8.333333333333334,3,4,0,1,3,8,2,0,1366.5,42911.54762174649,48583.94324227045,0,0,1792.015515984114 -6103,7557,13737,-9,13736,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.0618021531872,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,1366.5,42911.54762174649,48583.94324227045,0,0,1792.015515984114 -6104,7558,13738,13740,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.879319843532278,8.063626197552932,0,6,-10,94.50832300329641,0,2,2,2019,8,0,21,21,1,0,0,13.05373322566884,13.05373322566884,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.54,57.19,8.333333333333334,1,1,0,0,7,2,5,1,429.3333333333333,822696.0620418241,466268.3381792484,543911.1301560149,218317.2515513495,4972.649836627149 -6104,7558,13739,-9,13738,13740,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.311870482734,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,429.3333333333333,822696.0620418241,466268.3381792484,543911.1301560149,218317.2515513495,4972.649836627149 -6104,7558,13740,13738,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.847904446331649,9.132878140269931,0,6,10,41.54055875778889,0,-9,-9,2019,14,4,42,46,1,4,0,20.94173527068038,20.94173527068038,0,0,0,.9629402031939893,0,1,1,0,5.166982101146439,0,45.54,57.19,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,429.3333333333333,822696.0620418241,466268.3381792484,543911.1301560149,218317.2515513495,4972.649836627149 -6105,7559,13741,13742,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.374693436539623,6.76801852320484,8,-1,31.63566061874712,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.023189373191004,6.469187453387835,58.32,50.22,50.45,44.34,8.333333333333334,1,1,0,0,0,4,2,1,1161.5,315105.7287140962,176758.1176321874,188455.9994575233,0,1518.645567920896 -6105,7559,13742,13741,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,1,-134.7355826779411,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.96225869165354,0,50.45,44.34,58.32,50.22,10,1,1,0,0,0,4,2,1,1161.5,315105.7287140962,176758.1176321874,188455.9994575233,0,1518.645567920896 -6106,7560,13743,-9,13744,13745,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.174428138018,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,426.75,502805.8766462517,187563.135088802,240732.9633706259,60334.49135741356,3593.829184864849 -6106,7560,13744,13745,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,7.720470430851124,7.615866867227821,0,8,-19,-83.4679213553522,0,2,2,2019,12,2,32,27,1,2,0,9.438291306944922,9.438291306944922,0,0,0,0,0,1,1,0,1.60440383216961,0,45.5,43.69,34.92,42.49,6.666666666666667,1,1,0,0,8,5,4,1,426.75,502805.8766462517,187563.135088802,240732.9633706259,60334.49135741356,3593.829184864849 -6106,7560,13745,13744,-9,-9,1,1,56,1,2,0,2,2,-9,0,2,8.384733649450327,8.583255281790658,7.019746474249698,8,19,81.92074054526124,0,2,3,2019,16,4,50,48,1,4,0,11.42395306530643,11.42395306530643,0,0,0,0,0,1,1,0,1.700326910014089,6.748701565242968,34.92,42.49,45.5,43.69,3.333333333333333,1,1,0,0,8,5,4,1,426.75,502805.8766462517,187563.135088802,240732.9633706259,60334.49135741356,3593.829184864849 -6106,7560,13746,-9,13744,13745,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.4001051402959,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,426.75,502805.8766462517,187563.135088802,240732.9633706259,60334.49135741356,3593.829184864849 -6107,7561,13747,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.965749667997582,6.961810317973494,0,0,-1013.046253424884,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,5.456209007120225,7.119662680729314,28.62,44.99,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,218,704640.8487993052,235375.992078179,563506.7085924193,0,1653.407725727644 -6108,7562,13748,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1096.352721712243,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.51000000000001,18.43,-9,-9,10,3,4,0,0,0,8,1,0,960,0,0,0,0,1307.446490556056 -6109,7563,13749,-9,13751,13750,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.7452116974683,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,706.6666666666666,214147.7329446501,155764.9318016911,276511.0381193047,154472.5582300155,2435.730880774459 -6109,7563,13750,13751,-9,-9,1,1,34,0,1,0,1,1,-9,0,2,7.642072836366477,7.54414971854379,0,5,3,-69.65179245397073,0,2,2,2019,21,6,46,48,1,6,0,6.58887719008164,6.58887719008164,0,0,0,0,0,1,1,0,0,0,26.63,40.94,39.52,58.98,3.333333333333333,1,1,0,1,7,4,4,1,706.6666666666666,214147.7329446501,155764.9318016911,276511.0381193047,154472.5582300155,2435.730880774459 -6109,7563,13751,13750,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.30311734492186,8.015505408082094,0,5,-3,-66.50980161404094,0,-9,-9,2019,12,0,46,48,1,0,0,9.697229612221813,9.697229612221813,0,0,0,0,0,1,1,0,0,0,39.52,58.98,26.63,40.94,6.666666666666667,1,1,0,0,6,4,4,1,706.6666666666666,214147.7329446501,155764.9318016911,276511.0381193047,154472.5582300155,2435.730880774459 -6110,7564,13752,13753,-9,-9,1,1,56,0,0,0,3,3,-9,1,2,8.317752056922902,8.606425564562032,0,30,4,29.23688453864686,0,3,2,2019,9,0,37,37,1,0,0,12.30759735619303,12.30759735619303,0,0,0,0,7,1,1,0,0,0,32.61,37.88,38.18,31.44,10,1,1,0,0,9,5,5,1,1285.5,781272.681579446,485678.4114006489,317210.2256202863,32184.50701774636,3507.404866668993 -6110,7564,13753,13752,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,8.275510558715432,8.356843121407788,0,30,-4,-129.6397925432951,0,3,3,2019,12,0,35,35,1,0,0,17.32578310374926,17.32578310374926,0,0,0,2.398367198258226,2,1,1,0,0,0,38.18,31.44,32.61,37.88,10,1,1,0,0,3,5,5,1,1285.5,781272.681579446,485678.4114006489,317210.2256202863,32184.50701774636,3507.404866668993 -6111,7565,13754,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.855340729787994,7.626474530001126,0,0,0,-923.4933767786737,-9,1,2,2019,12,3,41,0,1,3,0,5.745165706285934,5.745165706285934,0,0,0,0,0,0,0,0,.9599241073304361,0,42.86,53.58,-9,-9,1.666666666666667,2,3,0,0,8,5,3,1,428,121072.9277534092,-20234.80164223854,0,0,1321.958256967152 -6112,7566,13755,13756,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,9.312783615708735,9.374739445798305,0,10,2,105.0464497804876,0,2,2,2019,12,0,75,45,1,0,0,15.15298817267074,15.15298817267074,0,0,0,0,0,1,1,0,3.360462362347811,0,44.59,50.28,57.33,53.46,3.333333333333333,1,1,0,0,11,4,5,1,852.3333333333334,510469.0094232948,340486.5538872052,285096.3594005766,163772.5933725445,3890.404465483178 -6112,7566,13756,13755,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,0,0,0,10,-2,35.82074801351457,0,2,1,2019,10,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.59,50.28,3.333333333333333,2,3,1,0,10,4,5,1,852.3333333333334,510469.0094232948,340486.5538872052,285096.3594005766,163772.5933725445,3890.404465483178 -6112,7566,13757,-9,13756,13755,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.361284765779,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,5,1,852.3333333333334,510469.0094232948,340486.5538872052,285096.3594005766,163772.5933725445,3890.404465483178 -6113,7567,13758,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-931.09451820434,-9,-9,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.9704354097227598,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,970,67378.39024895336,0,0,0,298.3588426581907 -6114,7568,13759,13760,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.133892075618801,8.043574127895713,0,3,14,-9.241211964232763,0,2,2,2019,15,3,37,45,1,3,0,9.566850524330881,9.566850524330881,0,0,0,0,0,0,0,0,0,0,48.87,50.67,61.12,51.57,8.333333333333334,1,1,0,0,8,10,5,0,2689,1028903.541132239,950899.6768050138,0,0,3262.840483211731 -6114,7568,13760,13759,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.630504073356672,8.511074126829678,0,3,-14,30.58283528960857,0,-9,-9,2019,5,0,52,40,1,0,0,11.39054966151151,11.39054966151151,0,0,0,0,0,0,0,0,0,0,61.12,51.57,48.87,50.67,8.333333333333334,1,1,0,0,4,10,5,0,2689,1028903.541132239,950899.6768050138,0,0,3262.840483211731 -6115,7569,13761,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1040.649559001792,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.04,18.21,-9,-9,3.333333333333333,1,1,0,1,1,2,1,1,384,55836.41445440478,0,0,0,153.5584678435048 -6116,7570,13762,13765,-9,-9,1,1,43,1,5,0,3,3,-9,1,2,0,0,0,9,4,0,0,3,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.25,30.2,28.68,26.11,0,1,1,0,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6116,7570,13763,-9,13765,13762,1,1,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1067.469476053773,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6116,7570,13764,-9,13765,13762,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-978.3262346554305,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6116,7570,13765,13762,-9,-9,1,0,39,1,5,0,2,2,-9,1,2,0,0,0,9,-4,0,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,28.68,26.11,17.25,30.2,3.333333333333333,1,1,1,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6116,7570,13766,-9,13765,13762,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.16727919362,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6116,7570,13767,-9,13765,13762,1,1,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1065.32859692573,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,727.1666666666666,2251380.394637927,185336.8505930496,717187.7032209472,0,3950.726765632213 -6117,7571,13768,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.687642244217454,7.487610506303327,0,0,-1053.527508528601,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.658864037890163,7.274757118438552,63.65,35.93,-9,-9,10,1,1,0,0,7,2,3,1,1794,658076.2587327821,532758.8999752387,124521.912909256,0,1246.419452576583 -6118,7572,13769,13770,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.684542432409557,7.714855876955929,47,8,-7.15545917598218,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,41.36456504416213,0,0,1,1,0,0,7.597334924513186,56.19,5.98,26.52,39.59,0,1,1,0,1,0,10,3,1,612,710878.7488571634,233371.4993180201,377659.44517189,0,1829.828824874995 -6118,7572,13770,13769,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,4.512404526931535,4.313887461290256,47,-8,-69.45907090595666,0,3,3,2019,24,7,0,0,4,7,0,0,0,0,0,0,0,42,1,1,0,0,4.643581251133549,26.52,39.59,56.19,5.98,3.333333333333333,1,1,0,1,3,10,3,1,612,710878.7488571634,233371.4993180201,377659.44517189,0,1829.828824874995 -6119,7573,13771,13772,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.156220157730676,8.003878205663989,0,26,-5,19.85926369398443,0,3,3,2019,6,0,40,35,1,0,0,9.837916435591366,9.837916435591366,0,0,0,0,0,0,0,0,4.297047533321971,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,6,5,1,2269.5,636678.2994539448,278823.9233790719,385415.985305849,0,2852.601643785595 -6119,7573,13772,13771,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.451233626304267,8.73946235383214,0,26,5,-107.1731948134696,0,2,2,2019,6,0,39,39,1,0,0,14.14537216794336,14.14537216794336,0,0,0,0,0,0,0,0,3.680572900229694,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,9,6,5,1,2269.5,636678.2994539448,278823.9233790719,385415.985305849,0,2852.601643785595 -6119,7574,13773,-9,13771,13772,1,0,23,0,0,0,1,1,-9,0,4,7.860164973364806,7.662777841070743,0,0,0,-1111.758028918651,0,2,2,2019,7,0,35,0,1,0,1,10.1117904123603,10.1117904123603,0,0,0,0,0,0,0,0,1.870895927688442,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,337,0,0,0,0,870.8635995645978 -6119,7575,13774,-9,13771,13772,1,1,18,0,0,0,2,2,1,0,4,7.190892071797497,7.489883378281362,0,0,0,-1110.914708223547,-9,2,3,2019,6,0,42,0,1,0,1,3.729567928118291,3.729567928118291,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,342,113075.8752532357,0,0,0,550.9050228050742 -6120,7576,13775,-9,13777,13778,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-874.633055683704,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,868,22487.93898637449,-5442.539436416059,0,0,1427.16129862787 -6120,7576,13776,-9,13777,13778,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.477647108601,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,2,1,0,868,22487.93898637449,-5442.539436416059,0,0,1427.16129862787 -6120,7576,13777,13778,-9,-9,1,0,27,1,2,0,2,2,-9,1,4,0,0,0,5,-4,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,47,58,49,58,7,2,3,0,0,0,2,1,0,868,22487.93898637449,-5442.539436416059,0,0,1427.16129862787 -6120,7576,13778,13777,-9,-9,1,1,31,1,2,0,2,2,-9,1,4,0,0,0,5,4,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,47,58,7,2,3,0,0,0,2,1,0,868,22487.93898637449,-5442.539436416059,0,0,1427.16129862787 -6121,7577,13779,13781,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,9.449514794797969,9.600072276552575,0,8,1,-91.41297237322793,0,1,2,2019,5,0,40,40,1,0,0,45.51068609087791,45.51068609087791,0,0,0,0,0,0,0,0,8.213667608447338,0,55.68,54.24,58.15,52.91,8.333333333333334,1,1,0,0,9,9,5,1,1279.25,620149.7622174992,177049.1035564552,692154.343480407,316790.8198793707,25214.25475166813 -6121,7577,13780,-9,13781,13779,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-882.3862022111794,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1279.25,620149.7622174992,177049.1035564552,692154.343480407,316790.8198793707,25214.25475166813 -6121,7577,13781,13779,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,9.665988995520243,9.468765888734346,0,8,-1,50.69814515414821,0,2,3,2019,7,0,30,30,1,0,0,66.31616807941208,66.31616807941208,0,0,0,0,0,0,0,0,8.465367469687111,0,58.15,52.91,55.68,54.24,8.333333333333334,1,1,0,0,8,9,5,1,1279.25,620149.7622174992,177049.1035564552,692154.343480407,316790.8198793707,25214.25475166813 -6121,7577,13782,-9,13781,13779,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.0311496058199,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,1279.25,620149.7622174992,177049.1035564552,692154.343480407,316790.8198793707,25214.25475166813 -6122,7578,13783,13784,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,6.017752799048955,5.861162600150702,0,6,-2,-28.95419823429126,0,3,3,2019,7,0,10,10,1,0,0,5.36946890722475,5.36946890722475,0,0,0,0,0,1,0,1,0,0,54.96,53.17,27.89,18.61,8.333333333333334,1,1,0,0,7,6,2,1,1327.5,345132.409002246,47043.32291072314,200578.2577786152,0,729.2805455117775 -6122,7578,13784,13783,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,6,2,4.10758997003827,0,3,3,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,0,1,0,0,27.89,18.61,54.96,53.17,1.666666666666667,1,1,0,0,0,6,2,1,1327.5,345132.409002246,47043.32291072314,200578.2577786152,0,729.2805455117775 -6123,7579,13785,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.684974010527169,7.138280707347008,0,0,0,-1004.622728494215,0,3,3,2019,10,0,15,20,1,0,0,7.340798881075448,7.340798881075448,0,0,0,0,0,0,0,0,0,0,41.52,39.01,-9,-9,6.666666666666667,2,3,0,0,13,8,2,1,442,53718.02545443623,0,0,0,-157.033998005764 -6124,7580,13786,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.557690589709308,7.450565425697545,0,0,-928.1775497248688,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.476243279478239,7.3223368656273,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,553,30391.05930692836,170288.2235592935,37627.20799309711,0,1628.225566652624 -6125,7581,13787,13788,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.031266339413531,7.96980423797216,0,18,2,-103.2364276463079,0,-9,2,2019,12,0,40,40,1,0,0,7.427477476507582,7.427477476507582,0,0,0,0,0,1,1,0,0,0,43.49,46.31,37.29,40.88,5,2,3,0,1,12,2,2,1,622.6,30027.34152706582,17954.73944014382,0,0,2808.537494282807 -6125,7581,13788,13787,-9,-9,1,0,41,0,3,0,2,2,-9,1,3,0,0,0,18,-2,19.72641391295414,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,37.29,40.88,43.49,46.31,5,2,3,0,0,2,2,2,1,622.6,30027.34152706582,17954.73944014382,0,0,2808.537494282807 -6125,7581,13789,-9,13788,13787,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.3730398323128,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,622.6,30027.34152706582,17954.73944014382,0,0,2808.537494282807 -6125,7581,13790,-9,13788,13787,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-917.6195626784306,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,2,2,1,622.6,30027.34152706582,17954.73944014382,0,0,2808.537494282807 -6125,7581,13791,-9,13788,13787,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.191736070017,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,622.6,30027.34152706582,17954.73944014382,0,0,2808.537494282807 -6126,7582,13792,13793,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.939695473288961,7.543655090042784,0,6,8,64.37307969550039,0,2,2,2019,23,11,29,27,1,11,0,10.23236992925217,10.23236992925217,0,0,0,0,7,0,0,0,0,0,35.06,42.58,57.16,56.15,5,1,1,0,0,7,12,4,0,511.5,-2197.040292512102,105372.3349459483,0,0,2786.484225751278 -6126,7582,13793,13792,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.346163739621588,8.260438117761936,0,6,-8,-51.9728587698714,0,-9,-9,2019,8,0,49,52,1,0,0,8.772490553170996,8.772490553170996,0,0,0,0,7,0,0,0,0,0,57.16,56.15,35.06,42.58,6.666666666666667,1,1,0,0,7,12,4,0,511.5,-2197.040292512102,105372.3349459483,0,0,2786.484225751278 -6127,7583,13794,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,0,0,0,0,0,-979.8596917024615,1,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,120,1,1,0,2.724280847626765,0,41.26,61.02,-9,-9,6.666666666666667,1,1,0,0,1,6,1,1,236,-7552.533378649696,0,0,0,-289.0957749365173 -6128,7584,13795,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.599804312188903,8.749925888712427,0,0,0,-987.3749765902948,0,3,2,2019,22,10,32,37,1,10,0,20.74406581088734,20.74406581088734,0,0,0,0,0,0,0,0,0,0,36.65,48.36,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,4834,528472.4858957139,445960.6510394358,188577.8795746216,43575.5785935142,1051.251860427115 -6128,7585,13796,-9,13795,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1045.373250525421,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,2900,-159465.4262405994,0,0,0,0 -6129,7586,13797,13798,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.800748008668644,6.20145069173673,48,-7,-71.60566212883789,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.842593802372102,60.12,54.8,54.96,53.17,8.333333333333334,3,4,0,0,11,8,2,0,183.5,446779.3698554575,199136.1767805559,157117.5831864616,0,1490.608300785876 -6129,7586,13798,13797,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.397241342053802,6.339398934771339,10,7,43.62325899829758,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.127076828314517,54.96,53.17,60.12,54.8,8.333333333333334,3,4,0,0,0,8,2,0,183.5,446779.3698554575,199136.1767805559,157117.5831864616,0,1490.608300785876 -6130,7587,13799,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,6.676854576024404,6.832072763401718,0,0,0,-859.5701421078315,-9,2,3,2019,6,0,40,0,1,0,0,3.181036680060248,3.181036680060248,0,0,0,0,0,0,0,0,2.198843731073538,0,58.15,52.91,-9,-9,10,1,1,0,0,3,13,2,0,405,5959.896102777047,34928.68016825245,0,0,475.232161330062 -6131,7588,13800,13801,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.614894369621314,7.327564878620121,26,-1,-26.76727821014342,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.620950633972692,7.136215940855803,57.16,56.15,65.39,38.76,8.333333333333334,1,1,0,0,4,2,5,1,1152.5,1046986.725727252,377296.410208816,560632.8161303049,0,5100.621505227162 -6131,7588,13801,13800,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,9.05315725062921,8.66200418191201,26,1,-5.235773068054194,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.089768633418045,8.79651641411089,65.39,38.76,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,1152.5,1046986.725727252,377296.410208816,560632.8161303049,0,5100.621505227162 -6132,7589,13802,-9,13804,13803,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.1285672479903,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,5,1,340.3333333333333,1811692.925695844,961274.7924668733,570072.3910707394,11157.13315324031,5574.918270610033 -6132,7589,13803,13804,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,9.050940020626063,8.909281263556306,6.129624254396007,9,8,-23.9322792463806,0,2,2,2019,12,1,45,43,1,1,0,20.94996186616769,20.94996186616769,0,0,0,0,0,0,0,0,7.291609117633923,6.612096241600789,57.16,56.15,43.67,61.06,1.666666666666667,1,1,0,0,10,4,5,1,340.3333333333333,1811692.925695844,961274.7924668733,570072.3910707394,11157.13315324031,5574.918270610033 -6132,7589,13804,13803,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.548210243770999,8.68744020143733,0,9,-8,-58.71683110136892,0,2,2,2019,10,0,35,0,1,0,0,14.622051718332,14.622051718332,0,0,0,0,0,0,0,0,0,0,43.67,61.06,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,340.3333333333333,1811692.925695844,961274.7924668733,570072.3910707394,11157.13315324031,5574.918270610033 -6133,7590,13805,13806,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.731573951115728,8.913395006675982,0,18,-2,50.4829351921022,0,2,-9,2019,12,0,38,40,1,0,0,18.05838101993222,18.05838101993222,0,0,0,0,0,0,0,0,2.758932129365146,0,48.19,38.83,41.11,60.68,8.333333333333334,1,1,0,0,13,2,5,1,1793,879076.6380686376,113031.8195478323,856752.092709166,191395.8915418813,5772.980656528687 -6133,7590,13806,13805,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.849389828664529,8.780046782463108,7.333127461474934,18,2,82.78502476097316,0,3,2,2019,17,5,39,38,1,5,0,17.61283371132633,17.61283371132633,0,0,0,0,0,0,0,0,4.760233149455235,7.66474162499515,41.11,60.68,48.19,38.83,10,1,1,0,0,13,2,5,1,1793,879076.6380686376,113031.8195478323,856752.092709166,191395.8915418813,5772.980656528687 -6134,7591,13807,13808,-9,-9,1,1,35,1,1,0,3,3,-9,0,4,8.1572516418102,7.966743083890895,0,8,4,174.5744510542728,0,2,3,2019,9,0,40,40,1,0,0,9.188054336778016,9.188054336778016,0,0,0,0,0,1,1,0,0,0,48.87,58.55,43.12,50.52,8.333333333333334,1,1,0,0,8,9,4,1,1191,330627.2291124229,127302.3846158438,422806.783614233,212120.076953353,2018.283091615995 -6134,7591,13808,13807,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,7.661051942223795,7.732400120232241,0,8,-4,6.682334495187264,0,2,2,2019,14,3,23,27,1,3,0,12.71893451635153,12.71893451635153,0,0,0,0,0,1,1,0,0,0,43.12,50.52,48.87,58.55,8.333333333333334,1,1,0,0,10,9,4,1,1191,330627.2291124229,127302.3846158438,422806.783614233,212120.076953353,2018.283091615995 -6134,7591,13809,-9,13808,13807,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-953.1639538828294,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1191,330627.2291124229,127302.3846158438,422806.783614233,212120.076953353,2018.283091615995 -6135,7592,13810,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,5.908385276124424,5.869319603827503,0,0,0,-1044.02041649881,0,3,3,2019,12,0,4,8,1,0,0,9.380326737155325,9.380326737155325,0,0,0,0,0,1,1,0,9.1578743304983,0,45.63,58.55,-9,-9,10,1,1,0,0,11,12,2,1,390,531577.9421737402,354326.6275229896,0,0,5413.37456289793 -6136,7593,13811,13812,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.830154967965919,5.998507608857548,47,-2,-67.42599641563262,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.648540422400953,6.04290960063997,59.53,56.44,52,48,10,1,1,0,0,6,4,3,1,595.5,665541.5065966565,366566.1121470833,221330.7144202648,0,2871.529926078516 -6136,7593,13812,13811,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.929800047538296,8.009074654655731,0,7,2,34.94879643758492,0,-9,-9,2019,10,0,20,25,1,1,0,12.5347605336457,12.5347605336457,0,0,0,0,0,1,1,0,4.584132151011897,0,52,48,59.53,56.44,7,1,1,0,0,1,4,3,1,595.5,665541.5065966565,366566.1121470833,221330.7144202648,0,2871.529926078516 -6136,7594,13813,-9,13811,13812,1,1,31,0,0,0,1,1,-9,0,4,8.335220760609275,8.635379691948605,0,0,0,-1091.896441825259,0,3,2,2019,12,1,35,37,1,1,0,15.6801332037087,15.6801332037087,0,0,0,0,0,1,1,0,3.947623892854751,0,45.94,42.15,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,759,215381.8765429136,118499.2019700835,156045.2402595537,60036.31721538267,1472.480652465144 -6137,7595,13814,-9,13815,13816,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-988.0290498853243,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,0,9,4,1,1155.333333333333,325209.0627456883,-34352.00187608245,463917.0482156873,185396.8002108857,5133.297712647845 -6137,7595,13815,13816,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,8.133163569367014,8.253811292727013,0,22,-1,-206.8745886984582,0,2,1,2019,16,4,24,35,1,4,0,14.33774727845793,14.33774727845793,0,0,0,0,0,1,1,0,0,0,36.8,50.14,53.93,53.92,6.666666666666667,4,2,0,0,9,9,4,1,1155.333333333333,325209.0627456883,-34352.00187608245,463917.0482156873,185396.8002108857,5133.297712647845 -6137,7595,13816,13815,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.381526070829288,8.38433988738929,0,22,1,-12.65672492007394,0,2,1,2019,8,1,30,37,1,1,0,23.88544869763767,23.88544869763767,0,0,0,0,0,1,1,0,8.944037650258931,0,53.93,53.92,36.8,50.14,8.333333333333334,1,1,0,0,9,9,4,1,1155.333333333333,325209.0627456883,-34352.00187608245,463917.0482156873,185396.8002108857,5133.297712647845 -6138,7596,13817,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.650209729635226,7.976329552953986,5.208732440910053,0,0,-934.7292310308382,0,-9,-9,2019,18,6,45,38,1,6,0,6.469477765732226,6.469477765732226,0,0,0,0,0,1,0,1,5.180828731833153,0,51.42,47.78,-9,-9,6.666666666666667,1,1,0,0,4,2,3,0,1010,74509.08298681835,-18978.69547129351,0,0,1961.282940201785 -6139,7597,13818,-9,13819,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.5737669339265,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,437.3333333333333,187629.752159966,0,0,0,1510.522626943722 -6139,7597,13819,-9,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,6.721074038364064,6.678032222599884,0,0,0,-1098.338871353101,0,3,3,2019,11,1,16,0,1,1,0,6.884337734765435,6.884337734765435,0,0,0,0,0,1,1,0,0,0,41.23,51.32,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,437.3333333333333,187629.752159966,0,0,0,1510.522626943722 -6139,7597,13820,-9,13819,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.856169962531,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,437.3333333333333,187629.752159966,0,0,0,1510.522626943722 -6140,7598,13821,13822,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.116467799370486,7.156163983502196,9,4,-19.67984968601536,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.387455081078861,6.239226678677654,54.61,51.04,46.02,58.57,8.333333333333334,1,1,0,0,7,5,5,1,68,7005502.832759887,2536335.132324172,1108394.90822113,0,9509.962293716184 -6140,7598,13822,13821,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.926963892274365,9.481015040505588,9.062812497478557,9,-4,-130.7615320234238,0,2,1,2019,17,6,40,48,1,6,0,18.32665431837937,18.32665431837937,0,0,0,0,0,1,1,0,0,9.285504690722382,46.02,58.57,54.61,51.04,6.666666666666667,1,1,0,0,10,5,5,1,68,7005502.832759887,2536335.132324172,1108394.90822113,0,9509.962293716184 -6141,7599,13823,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,8.236169088066415,8.326668296385023,0,0,-1105.356353284286,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.285260156629173,8.090392278791269,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,614,514868.7858635854,140287.3385355237,291742.9534116788,0,3053.17884004811 -6142,7600,13824,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.619770681166234,7.352330667677239,0,0,0,-1056.516247556852,0,3,1,2019,12,2,33,30,1,2,0,8.233503020092456,8.233503020092456,0,0,0,0,0,1,1,0,0,0,50.26,53.71,-9,-9,5,1,1,0,1,6,4,3,0,1181.666666666667,21386.33833297248,14841.90343260564,0,0,2437.144924590178 -6142,7600,13825,-9,13824,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.2809941615237,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,1181.666666666667,21386.33833297248,14841.90343260564,0,0,2437.144924590178 -6142,7600,13826,-9,13824,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.5489684846839,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1181.666666666667,21386.33833297248,14841.90343260564,0,0,2437.144924590178 -6143,7601,13827,13828,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.121597604971839,8.097160870544712,0,35,-2,57.65715098381548,0,2,2,2019,8,0,30,33,1,0,0,16.29529257114142,16.29529257114142,0,0,0,0,0,0,0,0,3.519196519523367,0,50.43,53.69,56.92,49.39,3.333333333333333,1,1,0,0,8,6,4,1,1574.5,955835.449260836,79798.42402674284,217130.0663146167,0,2156.989427356929 -6143,7601,13828,13827,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,7.808389781798027,7.92860507289373,35,2,-72.00348530547728,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.102620743670615,8.223963322619873,56.92,49.39,50.43,53.69,8.333333333333334,1,1,0,0,8,6,4,1,1574.5,955835.449260836,79798.42402674284,217130.0663146167,0,2156.989427356929 -6143,7602,13829,-9,13827,13828,1,1,23,0,0,0,1,1,-9,0,5,6.993907980879962,7.448812587109188,0,0,0,-953.674065965275,0,1,1,2019,3,0,20,0,1,0,1,6.506154851941727,6.506154851941727,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,681,159031.4396234471,0,0,0,443.8915757917167 -6143,7603,13830,-9,13827,13828,1,1,23,0,0,0,1,1,-9,0,5,6.911886045544286,7.016947286550259,0,0,0,-1024.014936616164,0,1,1,2019,7,0,17,4,1,0,1,6.811540295638101,6.811540295638101,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,5,1,1,0,0,2,6,2,1,982,18476.12912634947,0,0,0,434.8367101756077 -6144,7604,13831,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.953975832968212,7.862247704704133,0,0,0,-872.8920372193279,0,2,2,2019,24,12,38,38,1,12,0,9.418372547686605,9.418372547686605,0,0,0,0,2,1,1,0,0,0,35.71,49.77,-9,-9,5,3,4,0,0,12,8,4,1,459,10385.15350190003,167450.5002911243,0,0,1272.123408794829 -6145,7605,13832,-9,-9,-9,1,0,61,0,2,0,3,3,-9,1,4,7.525611887495874,7.694492789161541,0,0,0,-971.7518673376433,0,3,3,2019,6,0,60,60,1,0,0,4.567592534396177,4.567592534396177,0,0,0,0,66,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,1158,81397.70555539633,123736.3059163105,0,0,4009.365314278699 -6145,7606,13833,-9,13832,-9,1,1,37,0,2,0,2,2,-9,0,4,8.452832875989882,8.341154088313196,0,0,0,-1044.128477393027,0,3,-9,2019,10,0,16,0,1,1,1,40.61528160257848,40.61528160257848,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,2,4,1,674,112576.398027538,-20826.72740976696,0,0,2845.317882063422 -6146,7607,13834,13835,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.683381070693203,8.491302341953682,0,7,2,-17.7717639022962,0,-9,-9,2019,8,0,56,60,1,0,0,11.58063153969232,11.58063153969232,0,0,0,0,0,0,0,0,0,0,61.17,42.11,49.77,49.55,6.666666666666667,1,1,0,0,9,12,5,1,1162.5,285716.6792963782,158630.1624832436,167208.5607776681,21833.86129684771,3421.806306375791 -6146,7607,13835,13834,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.10802938240335,7.87377689013968,0,7,-2,5.836972698370221,0,2,2,2019,9,0,20,20,1,0,0,19.35188649279184,19.35188649279184,0,0,0,0,0,0,0,0,6.406959379101333,0,49.77,49.55,61.17,42.11,8.333333333333334,1,1,0,0,9,12,5,1,1162.5,285716.6792963782,158630.1624832436,167208.5607776681,21833.86129684771,3421.806306375791 -6147,7608,13836,13837,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.300491488907101,7.6853461480542,0,17,-2,-91.29242682878672,0,3,3,2019,9,0,22,22,1,0,0,6.934955485630634,6.934955485630634,0,0,0,0,0,1,1,0,0,0,55.96,49.93,51,56,6.666666666666667,1,1,0,0,9,5,4,1,637,594843.5444018422,429273.8261678984,168014.1521454803,34406.88726428368,2968.240700235622 -6147,7608,13837,13836,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.551085655997136,8.655417742497784,0,20,2,41.90898683396103,0,3,3,2019,9,0,45,55,1,1,0,17.47764541245298,17.47764541245298,0,0,0,0,0,1,1,0,0,0,51,56,55.96,49.93,8,1,1,0,0,1,5,4,1,637,594843.5444018422,429273.8261678984,168014.1521454803,34406.88726428368,2968.240700235622 -6147,7608,13838,-9,13836,13837,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.3017606512296,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,637,594843.5444018422,429273.8261678984,168014.1521454803,34406.88726428368,2968.240700235622 -6147,7608,13839,-9,13836,13837,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.678383839665,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,637,594843.5444018422,429273.8261678984,168014.1521454803,34406.88726428368,2968.240700235622 -6148,7609,13840,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.980127650853667,8.618470279049712,0,0,0,-976.2708282214289,0,3,3,2019,10,1,36,36,1,1,0,10.5931965891927,10.5931965891927,0,0,0,0,14.5,0,0,0,0,0,50.1,49.64,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,1149,88638.38063530801,38111.79933057101,103713.6367237571,56662.55183505474,1396.863852794301 -6148,7610,13841,-9,13840,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-900.1113366941962,0,1,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,4.585722756159091,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,260,192185.1732640128,0,0,0,-161.7659767808268 -6149,7611,13842,13844,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,7.957576485958752,7.983451634417272,0,5,-1,-126.299361022426,-9,2,1,2019,16,4,24,0,1,4,0,14.48658093626967,14.48658093626967,0,0,0,0,42,1,1,0,0,0,31.93,58.41,57.33,53.46,8.333333333333334,1,1,0,1,1,6,3,0,355.6666666666667,187771.105849751,29339.96462190129,84311.71020184991,89794.7840061467,3155.204014717598 -6149,7611,13843,-9,13842,13844,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.652789814715,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,355.6666666666667,187771.105849751,29339.96462190129,84311.71020184991,89794.7840061467,3155.204014717598 -6149,7611,13844,13842,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,6.689288141052573,6.884236763892352,0,5,1,-40.29022104603845,-9,-9,-9,2019,4,0,20,0,1,0,0,5.208573279696131,5.208573279696131,0,0,0,0,7,1,1,0,0,0,57.33,53.46,31.93,58.41,8.333333333333334,1,1,0,1,8,6,3,0,355.6666666666667,187771.105849751,29339.96462190129,84311.71020184991,89794.7840061467,3155.204014717598 -6150,7612,13845,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.840281785224437,6.028567908570017,0,0,-872.3233336000494,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.929808400586873,5.879663163775805,52,48,-9,-9,7,1,1,0,0,4,4,2,1,1510,447152.6836642915,449098.8266788851,0,0,878.1595754491749 -6151,7613,13846,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.193158509368795,6.64894451760903,0,0,-958.9783911336876,-9,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.055695583603845,6.316570214805219,52.57,28.96,-9,-9,5,4,5,0,1,0,9,2,1,277,459013.7521377854,181539.1535953695,212309.5435026957,0,1446.696967884361 -6152,7614,13847,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1066.039405904592,0,2,2,2019,29,9,0,60,3,9,0,0,0,0,0,0,0,42,1,0,1,1.434011252488173,0,17.68,47.67,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,397,0,0,0,0,-94.66513059188084 -6153,7615,13848,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1051.373947870027,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.34,40.06,-9,-9,6.666666666666667,1,1,0,0,8,6,1,1,1117,39629.3088010447,0,147334.5205493322,0,434.4523173667426 -6154,7616,13849,13850,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.118909496872853,7.951011203038106,26,2,-87.16435923436259,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.204553150319425,54.03,33.91,39.79,26.78,5,1,1,0,0,0,6,4,1,3983.5,1824240.75398982,1359609.028682635,280467.9768674946,0,2829.134677837327 -6154,7616,13850,13849,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.648590034614735,7.185897758500549,26,-2,-1.93951026882678,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.548136437589785,39.79,26.78,54.03,33.91,6.666666666666667,1,1,0,0,0,6,4,1,3983.5,1824240.75398982,1359609.028682635,280467.9768674946,0,2829.134677837327 -6155,7617,13851,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1107.935508681008,0,2,3,2019,22,9,0,0,4,9,0,0,0,1,2.506065359582833,4.848261762111887,28.41240122416541,0,1,1,0,2.949075386207055,0,44.51,21.72,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,457,140186.147141794,0,173651.7487447022,0,1483.296428553801 -6156,7618,13852,13853,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,7.434721409168467,7.213787874945136,32,-8,-48.88894641115843,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.854143855190487,7.097054834861808,41.77,22.8,58.47,50.22,8.333333333333334,1,1,0,0,11,13,4,1,694.5,1588062.880775709,1305590.393394931,251520.2622613228,0,3632.511277072768 -6156,7618,13853,13852,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,8.152528790969027,8.156559742725628,32,8,24.95569362908701,0,3,2,2019,8,0,0,42,4,0,0,0,0,0,0,0,0,0,1,1,0,7.396784211256596,8.018132509771664,58.47,50.22,41.77,22.8,8.333333333333334,1,1,0,0,11,13,4,1,694.5,1588062.880775709,1305590.393394931,251520.2622613228,0,3632.511277072768 -6156,7619,13854,-9,13852,13853,1,1,27,0,0,0,1,1,-9,0,4,8.866179890098795,9.112404160503884,0,0,0,-1074.640404845859,0,2,3,2019,7,0,40,50,1,0,0,16.65319458799053,16.65319458799053,0,0,0,0,0,1,1,0,4.255505403806263,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,276,-113003.9323376873,108055.5699981864,0,0,2794.665650999704 -6156,7620,13855,-9,13852,13853,1,0,23,0,0,0,1,1,1,0,4,8.295532577829754,8.522334145421445,0,0,0,-1004.112542258146,-9,2,3,2019,18,6,46,0,1,6,0,10.74278112472966,10.74278112472966,0,0,0,0,0,1,1,0,3.2573877324122,0,54.2,57.49,-9,-9,5,1,1,0,0,6,13,4,1,1331,-122650.3922159657,-28242.35106639036,0,0,2011.861443989536 -6157,7621,13856,13857,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.285556697192247,8.539379844570362,0,7,3,.5726877709469409,0,-9,-9,2019,13,3,38,39,1,3,0,12.25126694917348,12.25126694917348,0,0,0,0,0,0,0,0,0,0,38.63,63.11,49.71,49.91,6.666666666666667,1,1,0,0,8,12,5,1,535.5,350979.7303192457,361146.5517345087,0,0,3438.314644350996 -6157,7621,13857,13856,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.449737108785897,8.630430436009572,0,7,-3,-70.1055109495488,0,-9,-9,2019,11,0,40,40,1,0,0,19.40426921748378,19.40426921748378,0,0,0,0,0,0,0,0,0,0,49.71,49.91,38.63,63.11,8.333333333333334,1,1,0,0,10,12,5,1,535.5,350979.7303192457,361146.5517345087,0,0,3438.314644350996 -6158,7622,13858,13859,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.363821680918774,9.455029294391897,0,9,2,-20.28575351418625,0,1,2,2019,10,0,48,48,1,0,0,28.90952325301985,28.90952325301985,0,0,0,0,0,0,0,0,0,0,43.51,55.11,54.1,59.11,6.666666666666667,1,1,0,0,9,9,5,1,476,1353150.749098493,428776.6507161996,605020.653969998,12116.34729358863,6459.888021368251 -6158,7622,13859,13858,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,9.026753235120458,8.939279282472246,0,9,-2,7.365132623025606,0,2,1,2019,13,1,45,46,1,1,0,20.89910807826104,20.89910807826104,0,0,0,.1919328547653851,0,0,0,0,5.891550210108733,0,54.1,59.11,43.51,55.11,8.333333333333334,1,1,0,0,9,9,5,1,476,1353150.749098493,428776.6507161996,605020.653969998,12116.34729358863,6459.888021368251 -6158,7623,13860,-9,13859,13858,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1154.535511862254,1,1,1,2019,11,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,415,166964.9196709585,0,0,0,0 -6159,7624,13861,13862,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.607618315864238,8.815168613641182,0,26,6,-48.12089996949288,0,2,2,2019,6,0,43,45,1,0,0,15.00983060475353,15.00983060475353,0,0,0,0,0,1,1,0,1.890526405368162,0,55.36,51.57,53,55,10,1,1,0,0,9,10,4,1,1174.5,186882.847381243,-4469.137699445571,0,0,3211.254437669989 -6159,7624,13862,13861,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,0,0,0,6,-6,-110.6042619447509,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,55.36,51.57,8,1,1,0,0,0,10,4,1,1174.5,186882.847381243,-4469.137699445571,0,0,3211.254437669989 -6160,7625,13863,13864,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,9.027812388799742,9.317691819893398,6,9,-61.93704605232053,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1.512337112706353,8.983328573387432,52.8,21.67,58.05,54.52,8.333333333333334,1,1,0,0,5,5,4,1,1521,1287802.49858111,477858.8619758442,274861.133051897,0,3078.880374846502 -6160,7625,13864,13863,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,4.673758595891729,4.885058596459077,0,6,0,-.4002581594652006,0,2,2,2019,7,0,40,43,1,0,0,.2394988777174422,.2394988777174422,0,0,0,0,0,0,0,0,1.654576439437466,0,58.05,54.52,52.8,21.67,8.333333333333334,1,1,0,0,7,5,4,1,1521,1287802.49858111,477858.8619758442,274861.133051897,0,3078.880374846502 -6160,7626,13865,-9,13864,13863,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-913.2669467618764,-9,1,1,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.6238035327090111,0,60.02,56.42,-9,-9,10,1,1,1,0,1,5,1,1,380,82749.57407710496,0,0,0,106.5746279123318 -6161,7627,13866,13869,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.630899700292293,8.744084799098257,0,6,0,142.5062099143084,0,-9,-9,2019,10,0,38,46,1,0,0,24.34334608838343,24.34334608838343,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,7,12,4,1,514.25,-85245.00500648445,0,204524.9337922849,142154.770313186,3668.492351721944 -6161,7627,13867,-9,13869,13866,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.941953083022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,514.25,-85245.00500648445,0,204524.9337922849,142154.770313186,3668.492351721944 -6161,7627,13868,-9,13869,13866,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.5717769748907,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,514.25,-85245.00500648445,0,204524.9337922849,142154.770313186,3668.492351721944 -6161,7627,13869,13866,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.71382419676178,7.563200773305864,0,6,0,-107.5546283272445,0,3,3,2019,6,0,22,23,1,0,0,10.73905209475996,10.73905209475996,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,7,12,4,1,514.25,-85245.00500648445,0,204524.9337922849,142154.770313186,3668.492351721944 -6162,7628,13870,-9,13871,13873,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.222704905142,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,0,541.75,699124.7979651942,242516.3310939981,314488.1948559642,15432.50664321368,4248.39216823642 -6162,7628,13871,13873,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.317084588248493,8.409090832184786,0,11,-2,142.6376850282489,0,1,1,2019,28,11,25,28,1,11,0,18.31322643457807,18.31322643457807,0,0,0,0,0,0,0,0,1.736713061676945,0,14.79,62.78,47.66,52.33,8.333333333333334,1,1,0,0,10,12,5,0,541.75,699124.7979651942,242516.3310939981,314488.1948559642,15432.50664321368,4248.39216823642 -6162,7628,13872,-9,13871,13873,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.5923482279361,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,0,541.75,699124.7979651942,242516.3310939981,314488.1948559642,15432.50664321368,4248.39216823642 -6162,7628,13873,13871,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.300117102153036,9.062580453012799,0,11,2,3.399242556751862,0,2,1,2019,14,3,42,46,1,3,0,28.75454115295449,28.75454115295449,0,0,0,0,0,0,0,0,1.584666579731815,0,47.66,52.33,14.79,62.78,6.666666666666667,1,1,0,0,8,12,5,0,541.75,699124.7979651942,242516.3310939981,314488.1948559642,15432.50664321368,4248.39216823642 -6163,7629,13874,-9,-9,-9,1,0,23,0,0,1,2,0,-9,1,3,0,0,0,0,0,-921.5965143173619,-9,3,-9,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,46.73,-9,-9,10,1,1,0,0,0,11,1,0,1085,79698.95092108994,0,0,0,1116.222747502254 -6164,7630,13875,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.55167550473781,7.618923445557961,0,0,-996.7906307659642,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.081472766652667,7.473985124889875,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,409,341375.6319854857,158680.0099443739,191836.8657942536,0,2153.379768669993 -6165,7631,13876,13877,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.716787420270508,7.645843649804413,0,12,-8,-9.067637167175107,0,1,1,2019,9,0,50,50,1,0,0,5.304346519904967,5.304346519904967,0,0,0,0,0,1,1,0,9.760064223669719,0,48.87,58.55,36.37,60.23,6.666666666666667,1,1,0,0,10,9,3,1,521.25,347392.4571803586,440968.3524043207,0,0,8401.228037385215 -6165,7631,13877,13876,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.826301176622797,7.411990898828041,6.107181502190681,12,8,-108.7703248924602,0,1,1,2019,12,2,20,20,1,2,0,12.23897948403713,12.23897948403713,0,0,0,0,0,1,1,0,5.386767750904793,0,36.37,60.23,48.87,58.55,8.333333333333334,1,1,0,0,8,9,3,1,521.25,347392.4571803586,440968.3524043207,0,0,8401.228037385215 -6165,7631,13878,-9,13877,13876,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.715837213976,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,521.25,347392.4571803586,440968.3524043207,0,0,8401.228037385215 -6165,7631,13879,-9,13877,13876,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.5338585323501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,521.25,347392.4571803586,440968.3524043207,0,0,8401.228037385215 -6166,7632,13880,13881,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,5.251751828917804,5.359291538281949,43,0,89.6921955554153,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.662539078889512,5.554619980532082,61.28,48.88,58.32,50.22,8.333333333333334,2,3,0,0,9,9,3,1,259.5,1391942.729207679,630525.1099174867,430398.232947514,0,2611.128311310439 -6166,7632,13881,13880,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.309771034369518,7.848573990164518,9,0,88.39234574664584,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.360902639504069,7.848138838044683,58.32,50.22,61.28,48.88,8.333333333333334,1,1,0,0,6,9,3,1,259.5,1391942.729207679,630525.1099174867,430398.232947514,0,2611.128311310439 -6167,7633,13882,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.3439643656181,0,-9,-9,2019,8,2,0,66,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,61.19,36.58,-9,-9,10,1,1,1,0,2,13,1,0,1278,6337.705846955178,0,0,0,222.3226458452998 -6168,7634,13883,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,8.565239586049648,8.516069688628869,6.827947949495181,0,0,-1089.584887466659,0,3,3,2019,8,0,39,40,1,0,0,15.91671405461165,15.91671405461165,0,0,0,0,0,1,1,0,7.072919225904147,6.993639679290413,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,599,286839.8725855469,63322.89835137301,0,0,4061.05234128933 -6169,7635,13884,-9,13886,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.7950767359629,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,361.25,96444.97760927357,17087.04255156163,0,0,2333.094076189878 -6169,7635,13885,-9,13886,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.050170947618,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,2,1,361.25,96444.97760927357,17087.04255156163,0,0,2333.094076189878 -6169,7635,13886,-9,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.37566667064081,7.482881756683023,5.989855839643811,0,0,-1026.987899597375,0,3,3,2019,13,2,21,21,1,2,0,8.09981624916537,8.09981624916537,0,0,0,0,0,1,1,0,6.603232607180054,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,361.25,96444.97760927357,17087.04255156163,0,0,2333.094076189878 -6169,7635,13887,-9,13886,-9,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-878.1034625633678,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,1,361.25,96444.97760927357,17087.04255156163,0,0,2333.094076189878 -6170,7636,13888,13889,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.749978712515244,7.743274133338621,0,9,-3,-53.51702961882225,0,2,2,2019,6,0,40,40,1,0,0,5.010105969234384,5.010105969234384,0,0,0,0,7,0,0,0,.4524665682635797,0,55.79,52.62,57.33,53.46,6.666666666666667,1,1,0,0,12,9,4,1,1866,1027210.811392999,319228.3028015382,562936.6862058036,0,2731.061803467994 -6170,7636,13889,13888,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.177533829760483,8.434511033897113,7.631217614847468,9,3,-2.77327861763013,0,-9,-9,2019,10,1,38,40,1,1,0,10.11168744782046,10.11168744782046,0,0,0,0,14.5,0,0,0,.1090346109276007,6.979702245026573,57.33,53.46,55.79,52.62,10,1,1,0,0,13,9,4,1,1866,1027210.811392999,319228.3028015382,562936.6862058036,0,2731.061803467994 -6171,7637,13890,13891,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,49,0,76.52504241002083,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,121.623773683005,0,0,1,1,0,0,0,27.39,21.15,52.38,55.6,3.333333333333333,1,1,0,0,0,2,2,0,339.5,209505.2990704665,220353.568819408,0,0,1710.028282368187 -6171,7637,13891,13890,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.980126086475706,6.687207772220731,49,0,67.76227264327373,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,1.520321852666372,120,1,1,0,4.99599583248057,6.337989357767777,52.38,55.6,27.39,21.15,5,1,1,0,0,6,2,2,0,339.5,209505.2990704665,220353.568819408,0,0,1710.028282368187 -6172,7638,13892,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.312271475675175,9.732846585494805,0,0,0,-983.5498681055738,0,2,2,2019,10,0,84,84,1,0,0,21.25873320219863,21.25873320219863,0,0,0,0,0,1,1,0,0,0,58.54,33.47,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,127,214386.0601429171,175287.7145436203,158920.1729722955,73874.9001529097,3881.002246680693 -6173,7639,13893,13894,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,6,7,0,0,-9,-9,2019,9,0,0,40,4,1,0,0,0,0,0,0,0,0,1,1,0,4.107246789093455,0,54,46,55.19,54.26,7,1,1,0,0,0,10,1,1,453.5,267803.6130897772,45947.60075732909,209877.4751132411,0,1050.488046243843 -6173,7639,13894,13893,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,48,-7,0,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54,46,8.333333333333334,1,1,0,0,0,10,1,1,453.5,267803.6130897772,45947.60075732909,209877.4751132411,0,1050.488046243843 -6174,7640,13895,13896,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.455635889108299,6.953276052287682,0,1,-3,163.8261135486144,-9,-9,-9,2019,5,0,18,0,1,0,0,9.641930580847724,9.641930580847724,0,0,0,0,0,1,0,1,0,0,54.79,55.86,45.23,32.27,10,1,1,0,0,0,2,2,0,456,130570.636021122,60101.55091269258,0,0,1754.543692432452 -6174,7640,13896,13895,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,0,0,0,1,3,67.84471574921355,0,2,2,2019,9,0,0,60,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.23,32.27,54.79,55.86,6.666666666666667,1,1,1,1,5,2,2,0,456,130570.636021122,60101.55091269258,0,0,1754.543692432452 -6175,7641,13897,13898,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,7.271425605470576,8.139254913812366,7.79576670152837,22,3,-86.51129820544776,0,2,2,2019,7,0,6,6,1,0,0,23.84402361659848,23.84402361659848,0,0,0,0,0,1,1,0,2.303718935646381,7.687533029235595,58.23,43.46,49.2,44.97,6.666666666666667,1,1,0,0,12,5,5,1,532.5,3048663.938966804,1940200.143642576,362377.3970583928,0,6838.2589737426 -6175,7641,13898,13897,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.726059177334409,8.816783043777303,8.481269927319625,10,-3,73.76566765600455,0,2,2,2019,9,0,10,16,1,0,0,25.02791385958846,25.02791385958846,0,0,0,0,0,1,1,0,8.468197619295685,8.534017246842414,49.2,44.97,58.23,43.46,6.666666666666667,1,1,0,0,8,5,5,1,532.5,3048663.938966804,1940200.143642576,362377.3970583928,0,6838.2589737426 -6176,7642,13899,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.500609487199497,8.75618062317492,6.429639441690006,0,0,-965.5804001522238,0,3,3,2019,19,8,50,49,1,8,0,11.69453379694512,11.69453379694512,0,0,0,0,7,1,1,0,4.385679751253142,6.603942297216163,38.9,48.23,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,149,181447.0528876611,82060.23985982081,77111.87066995092,-9923.128084485612,2719.76089908866 -6177,7643,13900,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.721944868327759,8.975646883368226,0,0,0,-1244.809098384549,0,2,2,2019,9,0,40,41,1,0,0,17.96181073458583,17.96181073458583,0,0,0,0,0,0,0,0,3.5480757282167,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,632,-3386.064626389583,9647.66298907977,3691.803650386621,0,2857.592409073265 -6178,7644,13901,-9,13903,13902,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.216858934867,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,414.6666666666667,290157.5424893291,135633.9091159058,449477.7338356361,222670.0663274378,21987.23379900616 -6178,7644,13902,13903,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.762725847233945,9.909639619952392,0,7,3,.0956286290081381,0,-9,-9,2019,5,0,84,35,1,0,0,25.23550841157913,25.23550841157913,0,0,0,0,0,1,1,0,7.975010499817129,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,414.6666666666667,290157.5424893291,135633.9091159058,449477.7338356361,222670.0663274378,21987.23379900616 -6178,7644,13903,13902,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.195348825510122,7.180913910393503,0,7,-3,-30.13523155727306,0,2,2,2019,7,0,12,12,1,0,0,13.41279531978143,13.41279531978143,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,1.666666666666667,1,1,0,0,8,10,5,1,414.6666666666667,290157.5424893291,135633.9091159058,449477.7338356361,222670.0663274378,21987.23379900616 -6178,7645,13904,-9,13903,13902,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-997.1857235922103,-9,2,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.8945802812853125,0,57.18,45.76,-9,-9,10,1,1,0,0,1,10,1,1,762,-44530.2331498955,0,0,0,-302.024822325888 -6179,7646,13905,13906,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.094788208096737,8.060127182374947,0,33,-3,-4.340017909681698,0,3,2,2019,9,1,32,30,1,1,0,12.28411784142217,12.28411784142217,0,0,0,0,0,0,0,0,8.444033618118768,0,54.13,48.04,50.85,54.91,8.333333333333334,3,4,0,0,5,8,4,1,306,842722.5630656402,-7236.18342605159,655153.6768250997,0,4865.366861925033 -6179,7646,13906,13905,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,7.926635234450706,7.969819423312569,0,33,3,-33.01813315608192,0,3,2,2019,11,0,25,40,1,0,0,13.01407504205023,13.01407504205023,0,0,0,0,0,0,0,0,7.075004344097052,0,50.85,54.91,54.13,48.04,8.333333333333334,1,1,0,0,9,8,4,1,306,842722.5630656402,-7236.18342605159,655153.6768250997,0,4865.366861925033 -6180,7647,13907,13908,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.120684941343701,6.173388131616287,53,-1,-109.2437129678093,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.258301061619746,14.45356688355018,21.04432586351874,2,1,1,0,5.783518837311149,6.159921911784087,51.64,37.25,62.25,48.33,8.333333333333334,1,1,0,0,1,6,4,1,670,1053500.647116065,655041.8715631121,149274.3458262117,0,4200.737790712137 -6180,7647,13908,13907,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.25930592803048,8.460042605868097,53,1,91.36697943330233,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.539035956125092,8.586128181605316,62.25,48.33,51.64,37.25,8.333333333333334,1,1,0,0,0,6,4,1,670,1053500.647116065,655041.8715631121,149274.3458262117,0,4200.737790712137 -6181,7648,13909,-9,13911,13910,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-985.3420339504096,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,2,5,1,410.3333333333333,896321.4740313012,321744.2296540799,216927.02963456,9628.51782991481,5022.100665353143 -6181,7648,13910,13911,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.93053976742608,9.086489031883646,0,25,6,38.7959378047822,0,-9,-9,2019,9,0,45,40,1,1,0,23.35812889690405,23.35812889690405,0,0,0,0,0,1,1,0,4.288086983878332,0,53,55,57.16,56.15,8,1,1,0,0,1,2,5,1,410.3333333333333,896321.4740313012,321744.2296540799,216927.02963456,9628.51782991481,5022.100665353143 -6181,7648,13911,13910,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.639806870636379,8.925484536283054,0,25,-6,41.84316055087372,0,2,2,2019,4,0,45,30,1,0,0,14.83017066975485,14.83017066975485,0,0,0,0,0,1,1,0,4.372251733614647,0,57.16,56.15,53,55,10,1,1,0,0,10,2,5,1,410.3333333333333,896321.4740313012,321744.2296540799,216927.02963456,9628.51782991481,5022.100665353143 -6182,7649,13912,13913,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,5.988799233540808,6.351743577737532,56,7,-17.1710726002874,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.197459035724624,57.16,56.15,59.43,49.68,10,1,1,0,0,0,1,2,0,993.5,528431.9967816341,-16349.42895037651,323894.8120806812,0,1540.161839542472 -6182,7649,13913,13912,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.195345249149507,6.392193656680286,7,-7,-14.35910640470376,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,2.773581283391215,0,1,1,0,0,6.287847349913525,59.43,49.68,57.16,56.15,10,1,1,0,0,0,1,2,0,993.5,528431.9967816341,-16349.42895037651,323894.8120806812,0,1540.161839542472 -6183,7650,13914,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.565208146341,0,2,-9,2019,4,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.7,47.65,-9,-9,8.333333333333334,4,2,0,0,10,7,1,0,236,6367.230659002846,0,0,0,1040.213080636869 -6184,7651,13915,13916,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.32729062943892,7.710786122550994,0,14,6,-15.99406591047394,0,2,2,2019,8,1,60,50,1,1,0,3.333566614518011,3.333566614518011,0,0,0,0,0,0,0,0,1.348236053272232,0,49.24,50.26,45.54,57.19,8.333333333333334,1,1,0,0,9,8,4,0,2596,590642.6683430246,200650.1394875794,498282.405803091,198743.1024994566,2237.059980032256 -6184,7651,13916,13915,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,7.953380969851865,8.150219414471918,0,14,-6,-51.32639375063822,0,2,2,2019,8,2,50,50,1,2,0,7.024458944064074,7.024458944064074,0,0,0,0,0,0,0,0,0,0,45.54,57.19,49.24,50.26,8.333333333333334,1,1,0,0,9,8,4,0,2596,590642.6683430246,200650.1394875794,498282.405803091,198743.1024994566,2237.059980032256 -6185,7652,13917,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.4414678983783,-9,-9,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,36,27,-9,-9,4,1,1,0,0,0,9,2,0,886,51769.07958461496,0,0,0,0 -6185,7653,13918,-9,13917,-9,1,1,27,0,0,0,2,2,-9,0,3,7.86877216053575,7.834058703329306,0,0,0,-927.3866877668886,-9,2,2,2019,6,0,40,0,1,0,1,5.99284741208993,5.99284741208993,0,0,0,0,0,0,0,0,1.580977563937557,0,57.33,53.46,-9,-9,10,1,1,0,0,10,9,3,0,503,-57537.14829641057,104920.5550327399,0,0,669.9375852658318 -6185,7654,13919,-9,13917,-9,1,0,20,0,0,0,3,3,-9,0,2,7.892006170667208,7.872897726613811,0,0,0,-804.3787750634997,-9,2,-9,2019,16,0,40,0,1,4,1,6.486122653781275,6.486122653781275,0,0,0,0,0,0,0,0,1.000718193595082,0,38,44,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,563,-55292.06547325459,0,0,0,827.1780420521955 -6186,7655,13920,13921,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,7,1,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,30.76,49.67,10.31,3.333333333333333,1,1,0,0,7,4,1,0,1004.5,149790.2135176269,84937.19385995992,121406.6198294862,47675.13783070016,2354.218053120321 -6186,7655,13921,13920,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,42,-1,0,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,10.31,42.52,30.76,3.333333333333333,1,1,0,0,3,4,1,0,1004.5,149790.2135176269,84937.19385995992,121406.6198294862,47675.13783070016,2354.218053120321 -6187,7656,13922,13923,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.854530442489517,7.619064172831122,11,-2,44.6387411772957,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.107721662866279,7.591203225602448,56.94,49.53,58.75,48.57,8.333333333333334,1,1,0,0,0,9,3,1,282,1263829.682984275,653146.0781123075,306646.0197384689,0,4281.569552632075 -6187,7656,13923,13922,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,4.55990657454241,4.391849596366893,53,2,7.994421719992635,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.956066442074132,4.711892022338016,58.75,48.57,56.94,49.53,8.333333333333334,1,1,0,0,0,9,3,1,282,1263829.682984275,653146.0781123075,306646.0197384689,0,4281.569552632075 -6188,7657,13924,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.972099619859974,8.248649579980988,0,0,0,-1005.583539020963,0,2,2,2019,11,0,37,37,1,1,0,9.867893400958001,9.867893400958001,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,8.333333333333334,1,1,0,1,10,1,4,1,1383,176236.8225528896,11121.0377439705,174899.5074901078,82528.03726826841,1462.151467304691 -6189,7658,13925,13926,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,0,0,0,25,1,-111.0152806615636,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,38.06,58.72,48.62,1.666666666666667,1,1,1,1,0,2,2,0,457,249323.2430704027,60515.57105492153,208159.7442030218,0,964.200332888686 -6189,7658,13926,13925,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.312979878342476,7.59855681692429,0,25,-1,20.76685462249679,0,3,2,2019,9,0,30,29,1,0,0,5.673216303601214,5.673216303601214,0,0,0,0,0,1,1,0,0,0,58.72,48.62,38.4,38.06,6.666666666666667,1,1,0,0,4,2,2,0,457,249323.2430704027,60515.57105492153,208159.7442030218,0,964.200332888686 -6189,7659,13927,-9,13926,13925,1,0,28,0,0,0,2,2,-9,0,3,7.6489142889824,7.736324645590908,0,0,0,-1016.122194459069,0,2,3,2019,7,0,31,26,1,0,1,8.598177645250271,8.598177645250271,0,0,0,0,0,1,1,0,0,0,64,38.07,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,400,83372.6812730909,33181.08095249459,0,0,1194.189177941899 -6189,7660,13928,-9,13926,13925,1,1,21,0,0,0,2,2,-9,0,2,7.630860769988606,7.319136844496341,0,0,0,-946.9664647205204,0,2,3,2019,11,0,20,0,1,0,1,10.90417456598725,10.90417456598725,0,0,0,0,0,1,1,0,0,0,52.76,49.16,-9,-9,5,1,1,0,0,2,2,3,0,443,47662.91655783402,0,0,0,887.7657241619602 -6190,7661,13929,13930,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.543599236692104,6.862555805040804,53,-6,-21.87939242521254,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,28.38070742788894,0,0,1,1,0,4.638617986940163,6.666664311765317,30.27,25.47,39.45,36.29,1.666666666666667,1,1,0,0,3,2,3,1,669.5,1442354.741971354,582033.9058333375,283838.8112747779,0,2900.246351237864 -6190,7661,13930,13929,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.746614414518743,7.109716364550182,53,6,-18.78723609889674,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,3.402084437779931,7.498954133290936,39.45,36.29,30.27,25.47,3.333333333333333,1,1,0,0,0,2,3,1,669.5,1442354.741971354,582033.9058333375,283838.8112747779,0,2900.246351237864 -6191,7662,13931,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.314912947583988,9.18550401884962,0,0,0,-1101.931517507998,0,2,2,2019,9,0,43,43,1,0,0,26.83532061454774,26.83532061454774,0,0,0,0,0,0,0,0,6.964581861210078,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,994,1021965.196170687,858331.6046280263,129427.2804457873,-288.8650249715938,3517.16841132069 -6192,7663,13932,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.892986582927723,8.001480811298375,0,0,-1079.20063577298,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,8.702393321436752,0,0,1,1,0,7.867846976715733,8.161348176518873,55.6,39.56,-9,-9,10,1,1,0,0,1,2,4,1,180,798653.0391440262,545963.1728963295,250162.9448404739,0,3728.405039796055 -6192,7664,13933,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.737120049068813,7.601844142768425,0,0,0,-985.2118756158027,0,-9,-9,2019,12,2,30,34,1,2,0,9.579267832853976,9.579267832853976,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,1308,-28987.25285290917,82216.63310573986,0,0,856.752021412469 -6193,7665,13934,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.465134251076707,8.59458869406687,0,1,6,-72.73289855167016,0,3,3,2019,2,0,38,38,1,0,0,13.01017626339804,13.01017626339804,0,0,0,0,0,0,0,0,0,0,62.39,56.71,46.16,58.62,10,1,1,0,0,7,2,5,1,884,13444.26097047472,0,146230.9252433646,94502.41066313314,2296.634962419417 -6193,7666,13935,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.824315131843183,7.479259188373228,0,1,-6,126.0877011010608,-9,-9,-9,2019,14,3,38,0,1,3,0,7.880063513603825,7.880063513603825,0,0,0,0,0,0,0,0,2.199886646834776,0,46.16,58.62,62.39,56.71,6.666666666666667,1,1,0,0,9,2,5,1,301,103592.1338781991,12981.42793214605,0,0,727.4977283096116 -6194,7667,13936,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.115520224290135,6.011856210030634,0,0,-907.1589981671705,0,2,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.925298821094041,5.911109079323379,50,47,-9,-9,7,1,1,0,0,0,4,2,0,232,49755.43777759645,108165.4013424943,0,0,1067.879803204524 -6195,7668,13937,13938,-9,-9,1,0,40,0,2,0,2,2,-9,1,4,0,0,0,1,2,0,0,2,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50.38,58.02,7,1,1,0,1,0,13,1,1,314,-175375.0042805108,0,0,0,854.2118576679707 -6195,7668,13938,13937,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,0,0,0,1,-2,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,4.002465012384937,0,1,1,0,0,0,50.38,58.02,48,56,10,1,1,0,1,2,13,1,1,314,-175375.0042805108,0,0,0,854.2118576679707 -6196,7669,13939,13940,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.528986380935498,7.714419665764448,0,7,0,-25.00861578867955,0,-9,-9,2019,6,0,30,31,1,0,0,8.379628757522717,8.379628757522717,0,0,0,0,0,1,1,0,0,0,60.62,41.03,46.8,38.26,5,1,1,0,0,2,9,2,0,396.5,372298.1948077679,40395.99013524502,429206.1261797135,95900.12098834256,1570.075136492382 -6196,7669,13940,13939,-9,-9,1,0,48,0,1,0,3,3,-9,0,2,0,0,0,7,0,33.39420485100547,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,38.26,60.62,41.03,6.666666666666667,1,1,0,0,0,9,2,0,396.5,372298.1948077679,40395.99013524502,429206.1261797135,95900.12098834256,1570.075136492382 -6197,7670,13941,13942,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,5.257458462783454,5.235904530383315,22,-13,137.4908469272624,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.239551992096431,5.614416359027793,51.39,59.18,54.53,40.91,8.333333333333334,1,1,0,0,2,2,2,1,924.5,699535.0575905426,486873.6093620331,215523.4697415195,0,2828.314645713889 -6197,7670,13942,13941,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.01846068502494,7.15900038322895,20,13,-51.35822916583723,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.985937805242799,7.24705110182717,54.53,40.91,51.39,59.18,8.333333333333334,1,1,0,0,0,2,2,1,924.5,699535.0575905426,486873.6093620331,215523.4697415195,0,2828.314645713889 -6198,7671,13943,13944,-9,-9,1,1,58,0,0,0,1,1,-9,1,2,9.23178019005303,9.122335086165366,0,31,8,77.70830240056583,0,2,2,2019,28,10,50,55,1,10,0,20.89007446125974,20.89007446125974,0,0,0,0,42,1,1,0,0,0,26.58,48.96,37.1,60.34,1.666666666666667,1,1,0,0,12,6,5,1,323.5,1279324.569844244,864325.1921205539,218789.0409764929,0,5196.736085538178 -6198,7671,13944,13943,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,8.237268670408151,8.489157181110581,0,9,-8,-64.12606141606524,0,-9,-9,2019,34,12,20,0,1,12,0,25.60813218931358,25.60813218931358,0,0,0,0,42,1,1,0,0,0,37.1,60.34,26.58,48.96,0,1,1,0,1,12,6,5,1,323.5,1279324.569844244,864325.1921205539,218789.0409764929,0,5196.736085538178 -6199,7672,13945,-9,13947,13949,1,0,11,2,4,1,3,0,-9,0,5,0,0,0,0,0,-967.4194491659738,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6199,7672,13946,-9,13947,13949,1,0,10,2,4,1,3,0,-9,0,3,0,0,0,0,0,-954.9109800170352,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6199,7672,13947,13949,-9,-9,1,0,38,2,4,0,2,2,-9,0,4,7.156889972581516,7.159418399290366,0,16,-16,-87.32301361972044,0,2,2,2019,11,0,15,15,1,0,0,11.69574785133987,11.69574785133987,0,0,0,0,0,1,1,0,0,0,45.91,59.89,47.47,55.04,8.333333333333334,1,1,0,0,6,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6199,7672,13948,-9,13947,13949,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1072.545597123415,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6199,7672,13949,13947,-9,-9,1,1,54,2,4,0,2,2,-9,0,4,9.095339558390551,9.309777124484572,0,9,16,-18.88644184848054,0,3,3,2019,11,0,45,90,1,0,0,23.95415401578369,23.95415401578369,0,0,0,0,0,1,1,0,0,0,47.47,55.04,45.91,59.89,8.333333333333334,1,1,0,1,9,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6199,7672,13950,-9,13947,13949,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-951.8542613373658,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,962.6666666666666,1378261.673040103,915673.132640598,501643.3102877084,41203.11057126064,4214.93767467318 -6200,7673,13951,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.710000755175566,7.5242291812791,0,0,0,-938.1293224508472,0,2,2,2019,9,0,50,50,1,0,0,3.928696731619122,3.928696731619122,0,0,0,0,0,0,0,0,2.289932442867878,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,7,4,3,1,3123,-105812.3671146341,-71607.52245394334,0,0,1047.356296087046 -6201,7674,13952,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.818789048032933,8.952519308118143,0,0,0,-1092.922499169611,0,2,2,2019,10,0,37,0,1,1,0,24.23848888496732,24.23848888496732,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,10,8,5,0,2179,222789.8060162619,43030.42367006092,179819.1637046979,180523.0494646436,3121.351672275969 -6202,7675,13953,13954,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.706761600862061,8.658172491327207,0,35,-1,-9.764790786948064,0,3,-9,2019,24,10,37,39,1,10,0,20.98477537386413,20.98477537386413,0,0,0,0,7,0,0,0,.3862151766501909,0,45.97,51.9,53,54,6.666666666666667,4,5,0,0,10,7,5,1,935.5,1904789.507688665,1618856.452324104,291066.9907319273,82692.219827507,4799.809260871647 -6202,7675,13954,13953,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.098313789719292,8.778618026324995,0,7,1,-32.27641677883497,0,-9,-9,2019,9,0,50,50,1,1,0,16.02128789441648,16.02128789441648,0,0,0,0,0,0,0,0,3.727073455029847,0,53,54,45.97,51.9,8,1,1,0,0,1,7,5,1,935.5,1904789.507688665,1618856.452324104,291066.9907319273,82692.219827507,4799.809260871647 -6203,7676,13955,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1002.276872964255,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,960,9063.036535244375,0,0,0,448.782032695485 -6204,7677,13956,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.41720010115978,8.350672138377316,0,0,0,-1009.1840390389,0,3,3,2019,12,0,39,37,1,0,0,13.29376149554005,13.29376149554005,0,0,0,0,0,0,0,0,0,0,45.55,60.15,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,356,248996.493175516,211150.0912244256,0,0,1881.101402170611 -6205,7678,13957,-9,13958,-9,1,0,16,0,2,0,3,3,-9,0,5,0,0,0,0,0,-1023.130688148888,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,0,0,0,10,2,0,456,-64027.85635316466,50934.09489782394,0,0,1363.259987359625 -6205,7678,13958,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.388450670547828,6.456116995967348,0,0,0,-1045.270455321126,0,2,-9,2019,6,0,16,16,1,0,0,4.627198612819359,4.627198612819359,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,456,-64027.85635316466,50934.09489782394,0,0,1363.259987359625 -6205,7678,13959,-9,13958,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1062.21384512338,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.71,51.45,-9,-9,10,1,1,0,0,0,10,2,0,456,-64027.85635316466,50934.09489782394,0,0,1363.259987359625 -6206,7679,13960,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.271164569542353,7.716394482883198,0,0,-917.2215011041257,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.864574877237003,54,46,-9,-9,8,1,1,0,0,0,13,4,1,113,479389.2153126331,205871.1072329576,222936.74683998,0,1621.892194555267 -6207,7680,13961,13962,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.13418017665717,4.989798909772409,44,5,94.1632751438833,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.467048072753695,5.065983827244289,60.12,54.8,66.14,26.06,10,1,1,0,0,10,1,2,1,1189.5,294811.3343060144,115968.5933841544,126352.0731297088,0,1651.299849967138 -6207,7680,13962,13961,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.509495229978228,6.21677162793562,44,-5,105.2439027226701,0,-9,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,.2306136654636042,0,1,1,0,2.022358114285489,6.401097134005057,66.14,26.06,60.12,54.8,8.333333333333334,1,1,0,0,9,1,2,1,1189.5,294811.3343060144,115968.5933841544,126352.0731297088,0,1651.299849967138 -6207,7681,13963,-9,13962,13961,1,1,35,0,0,0,2,2,-9,0,4,7.2548447829711,7.316086930778921,0,0,0,-1019.870789560909,0,2,2,2019,10,0,17,9,1,1,0,8.522683126950522,8.522683126950522,0,0,0,0,0,1,1,0,1.497009273680083,0,49,58,-9,-9,7,1,1,0,0,1,1,3,1,110,66742.82189550553,90303.5393980986,0,0,856.6085905030438 -6208,7682,13964,-9,13965,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.0919666382766,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,411,92729.50295087257,0,0,0,1752.968186981694 -6208,7682,13965,-9,-9,-9,1,0,39,0,1,0,3,3,-9,1,1,0,0,0,0,0,-996.9601426881682,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.3,36.08,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,411,92729.50295087257,0,0,0,1752.968186981694 -6209,7683,13966,13967,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,10,0,5.287942332559267,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.24,46.58,56.51,29.57,6.666666666666667,3,4,0,0,0,8,2,1,175.5,866763.1295218146,-14752.41845172997,823227.3846742548,0,2602.428484992629 -6209,7683,13967,13966,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.754818146296064,7.341631932252058,10,9,-.0432495182495485,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,13.84723937822487,0,0,1,1,0,7.231329910500595,7.205988889605868,56.51,29.57,43.24,46.58,5,1,1,0,0,0,8,2,1,175.5,866763.1295218146,-14752.41845172997,823227.3846742548,0,2602.428484992629 -6209,7684,13968,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.911328323791431,7.711302033116922,0,0,0,-1007.675207707469,0,-9,-9,2019,7,0,40,40,1,0,0,6.669936458281832,6.669936458281832,0,0,0,0,0,1,1,0,2.380338064666802,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,11,8,4,1,780,115303.157411842,5145.175135452713,21527.89686042174,27426.30082531822,437.5469409985566 -6210,7685,13969,13970,-9,-9,1,0,41,0,1,0,2,2,-9,0,1,0,0,0,2,-8,-83.44978101273637,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.22,22.05,41.47,47.55,6.666666666666667,2,3,0,0,0,5,3,1,481.5,290733.1404498318,26355.97696852098,142764.220924255,0,1664.746808174 -6210,7685,13970,13969,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,7.60127576080964,7.883841849264042,6.899464210433967,15,8,-55.54824512920275,-9,3,2,2019,11,0,45,0,1,0,0,5.356525422841562,5.356525422841562,0,0,0,0,0,1,1,0,6.517118956294271,0,41.47,47.55,35.22,22.05,6.666666666666667,2,3,0,0,11,5,3,1,481.5,290733.1404498318,26355.97696852098,142764.220924255,0,1664.746808174 -6210,7686,13971,-9,13969,13970,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1044.226651764021,-9,2,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,37.44,59.97,-9,-9,3.333333333333333,2,3,0,0,0,5,1,1,391,-172640.8703939921,0,0,0,0 -6211,7687,13972,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.708603468078392,6.373301493389366,0,0,-945.8962533136437,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.904465181151779,47.86,24.17,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,920,670119.254155461,182551.2453957195,499890.3979074119,0,692.6086437426952 -6211,7688,13973,-9,13972,-9,1,0,20,0,0,1,2,0,0,0,3,0,4.617756660953317,4.607732260961994,0,0,-968.3612614932166,-9,2,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,4.740034557409685,60.99,34.25,-9,-9,8.333333333333334,4,2,0,0,3,8,2,1,1031,-49618.01621563215,0,0,0,97.24182691076692 -6212,7689,13974,13975,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,5.448415205266273,5.451522225157162,0,30,-10,-12.51962056766052,0,-9,-9,2019,12,0,6,6,1,0,0,4.103423960968465,4.103423960968465,0,0,0,0,42,1,1,0,.4795589699274201,0,50.05,55.41,45.32,54.77,8.333333333333334,1,1,0,0,9,9,3,1,505.5,4776895.722296324,2409652.856643104,1506680.433813413,0,2212.821912721352 -6212,7689,13975,13974,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.712152193720702,7.831171102514366,30,10,-33.99148616200252,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,8.167147673487436,45.32,54.77,50.05,55.41,8.333333333333334,1,1,0,0,8,9,3,1,505.5,4776895.722296324,2409652.856643104,1506680.433813413,0,2212.821912721352 -6212,7690,13976,-9,13975,13974,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-962.5241631999165,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,1,1,426,0,0,0,0,0 -6212,7691,13977,-9,13975,13974,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1041.155789111373,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,4.661389559140767,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,440,0,0,0,0,45.84804569872455 -6213,7692,13978,13979,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.373652981229069,8.552348294085327,58,1,-36.09947853627335,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.075497879843502,7.937955498608412,57.4,50.48,53.63,38.81,8.333333333333334,1,1,0,0,0,9,3,1,749.5,1124062.096415907,513861.5862290352,395074.2850509231,0,2681.252952081572 -6213,7692,13979,13978,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,58,-1,18.20258054289236,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.722921764200157,0,53.63,38.81,57.4,50.48,6.666666666666667,1,1,0,0,0,9,3,1,749.5,1124062.096415907,513861.5862290352,395074.2850509231,0,2681.252952081572 -6214,7693,13980,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.553599011278894,7.478008631927973,0,0,0,-1023.812157220599,0,1,3,2019,6,1,30,30,1,1,0,6.995027065684159,6.995027065684159,0,0,0,0,0,1,1,0,0,0,57.18,47.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,175,253341.3884900347,-6250.254307294788,143392.2577781886,51259.76044348817,2072.201996381957 -6215,7694,13981,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,8.452491212538055,7.973646157365887,0,0,-1008.445546160376,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,6.069060047424432,8.297557956330442,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,209,353328.3450565214,263778.7558292068,0,0,3109.295981952811 -6215,7695,13982,-9,13981,-9,1,1,23,0,0,0,2,2,-9,0,4,7.751429905391504,7.913816454743233,0,0,0,-971.4775669603803,-9,2,-9,2019,7,0,50,0,1,0,0,4.373250036483974,4.373250036483974,0,0,0,0,0,0,0,0,0,0,51.81,57.22,-9,-9,5,1,1,0,0,2,9,3,1,1783,-88550.66140799334,-35773.22735508327,0,0,484.3476188204033 -6216,7696,13983,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.808412768385224,6.422820556962424,0,0,-1030.190501635154,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.410028546281849,6.599456780826898,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,576,406372.5453211853,148950.535928734,340730.1473351294,0,1124.852308485674 -6217,7697,13984,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.615901527637922,7.403801696091357,0,0,0,-978.8373641068775,0,-9,2,2019,14,4,35,30,1,4,0,5.491629543601707,5.491629543601707,0,0,0,0,0,0,0,0,2.233759435806186,0,40.86,46.26,-9,-9,10,1,1,0,0,9,12,3,0,844,564913.9869089514,262152.7324981162,319186.2373638664,0,1234.62927960858 -6218,7698,13985,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,8.624429528354653,8.460162831456522,0,0,0,-1034.081541877659,0,2,2,2019,7,0,48,48,1,0,0,9.52319988936269,9.52319988936269,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,4,5,0,215,198801.3954729858,85891.2434677557,315859.9414769997,150514.8135220711,1320.405903486818 -6219,7699,13986,13987,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.692678502520282,8.782024106204588,6.898969637808301,4,4,157.8118234945152,0,3,3,2019,7,0,40,37,1,0,0,19.44745688818334,19.44745688818334,0,0,0,0,0,0,0,0,1.343053937979639,6.951970469258805,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,453,1595749.459889121,723268.8562181339,899090.5292587026,0,4946.867388324138 -6219,7699,13987,13986,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.548114681994917,8.762027558335822,0,4,-4,137.6136397122672,0,-9,-9,2019,8,0,31,29,1,0,0,21.56827658192936,21.56827658192936,0,0,0,0,0,0,0,0,2.793597357342771,0,55.79,52.62,57.16,56.15,10,1,1,0,0,10,9,5,1,453,1595749.459889121,723268.8562181339,899090.5292587026,0,4946.867388324138 -6220,7700,13988,13990,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.210730716198139,7.361019032683628,0,5,-1,4.238431620653427,0,-9,-9,2019,10,0,40,0,1,1,0,3.826842981635457,3.826842981635457,0,0,0,0,0,1,1,0,0,0,50,54,32.08,37.15,8,1,1,0,0,1,8,4,0,282,328772.9680316863,0,390087.7971127694,111728.3725616607,2871.878042544257 -6220,7700,13989,-9,13988,13990,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.245649267923,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,0,282,328772.9680316863,0,390087.7971127694,111728.3725616607,2871.878042544257 -6220,7700,13990,13988,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.035831248011178,8.166683059762381,0,18,1,67.37957790305521,0,-9,-9,2019,22,8,40,0,1,8,0,9.238872621966992,9.238872621966992,0,0,0,0,0,1,1,0,0,0,32.08,37.15,50,54,1.666666666666667,1,1,0,0,5,8,4,0,282,328772.9680316863,0,390087.7971127694,111728.3725616607,2871.878042544257 -6221,7701,13991,13992,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.586349029772962,4.580934256916456,54,-7,.1413807554259776,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.030108100181749,4.561028190282173,52,46,55,45,8,1,1,0,0,0,4,2,0,893.5,628762.0636529662,199639.3976138876,282155.749788728,0,1877.015108946855 -6221,7701,13992,13991,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.472710487142695,6.696128937059383,54,7,-168.7129095751,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.725885911752226,6.881697414123405,55,45,52,46,8,1,1,0,0,0,4,2,0,893.5,628762.0636529662,199639.3976138876,282155.749788728,0,1877.015108946855 -6222,7702,13993,13994,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.293963925052479,8.282986892350566,0,6,2,42.00200666604233,-9,-9,-9,2019,10,0,85,0,1,0,0,4.353798659946639,4.353798659946639,0,0,0,0,0,1,1,0,0,0,53.5,51.02,53.48,46.24,8.333333333333334,1,1,0,0,6,5,4,0,1564,107812.4696308594,-6894.512418672195,98787.18888086097,41021.20391032444,2598.752909554646 -6222,7702,13994,13993,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.713961359047377,7.692195978921163,0,6,-2,133.1076132573977,0,-9,-9,2019,7,2,40,37,1,2,0,7.127941384998494,7.127941384998494,0,0,0,0,0,1,1,0,0,0,53.48,46.24,53.5,51.02,6.666666666666667,1,1,0,0,8,5,4,0,1564,107812.4696308594,-6894.512418672195,98787.18888086097,41021.20391032444,2598.752909554646 -6222,7702,13995,-9,13994,13993,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.132571989635,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,1564,107812.4696308594,-6894.512418672195,98787.18888086097,41021.20391032444,2598.752909554646 -6223,7703,13996,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-902.129647878207,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,8.333333333333334,2,3,0,0,0,9,1,0,177,19316.01954017811,0,0,0,951.3996640018197 -6224,7704,13997,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,0,0,-915.9308248560643,0,1,2,2019,6,2,0,10,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.13,50.73,-9,-9,8.333333333333334,3,4,0,1,7,8,1,1,375,234981.0790411429,0,0,0,768.5704505126024 -6224,7705,13998,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.831484674814057,8.499159328240747,0,0,0,-1068.289246763016,0,-9,-9,2019,7,0,40,35,1,0,0,16.64757633295138,16.64757633295138,0,0,0,0,0,1,1,0,7.256161477486243,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,8,5,1,1293,1116076.926763794,544903.887763082,262380.3589113137,0,2535.195104378148 -6224,7706,13999,-9,-9,13998,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1021.309361061039,0,-9,1,2019,7,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.61,54.24,-9,-9,5,4,2,1,0,0,8,1,1,477,0,0,0,0,2275.139970809313 -6225,7707,14000,14001,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.515074163138836,6.604558278789508,49,3,116.4565323026153,-9,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.091621646293181,6.641612331373283,55.62,43.18,58.32,50.22,8.333333333333334,1,1,0,0,6,12,2,1,720,495524.4482592865,205516.9215042341,166048.2043475749,0,3367.232051492674 -6225,7707,14001,14000,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.319408148871453,6.579043799394237,49,-3,53.28729150043218,-9,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.749143186828868,6.583620947281044,58.32,50.22,55.62,43.18,8.333333333333334,1,1,0,0,0,12,2,1,720,495524.4482592865,205516.9215042341,166048.2043475749,0,3367.232051492674 -6226,7708,14002,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.084102831401287,9.106382923900959,5.978688149244491,0,0,-927.5560993445965,0,1,2,2019,11,0,50,50,1,0,0,15.44187819096357,15.44187819096357,0,0,0,0,0,0,0,0,1.689587578330153,7.088442822411917,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,8,13,5,1,232,522394.6852592899,439087.1206539701,154263.9869172513,95996.7075014752,3213.213927246668 -6227,7709,14003,14004,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,7.823224457197547,7.562178454365561,0,18,-5,-62.46799630849033,0,-9,-9,2019,13,2,25,25,1,2,0,10.08962419258478,10.08962419258478,0,0,0,0,0,1,1,0,0,0,41.61,37.95,58.32,50.22,5,1,1,0,0,7,10,4,1,669.3333333333334,77435.76478932619,19926.53814515238,0,0,2478.237543581627 -6227,7709,14004,14003,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.342835958519126,8.051898890994833,0,20,5,-107.0216255544521,0,-9,-9,2019,6,0,44,43,1,0,0,9.265560504147725,9.265560504147725,0,0,0,0,0,1,1,0,0,0,58.32,50.22,41.61,37.95,8.333333333333334,1,1,0,0,7,10,4,1,669.3333333333334,77435.76478932619,19926.53814515238,0,0,2478.237543581627 -6227,7709,14005,-9,14003,14004,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.187240331155,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,669.3333333333334,77435.76478932619,19926.53814515238,0,0,2478.237543581627 -6228,7710,14006,14009,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.302977151554952,8.58892868946319,0,10,-13,-82.13933917158222,0,2,2,2019,12,0,45,45,1,0,0,11.50606990784273,11.50606990784273,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,11,4,3,0,194,232464.1732614034,151700.4123523616,154792.902882809,31861.79065641102,2885.791780855715 -6228,7710,14007,-9,14006,14009,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.090599047404,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,194,232464.1732614034,151700.4123523616,154792.902882809,31861.79065641102,2885.791780855715 -6228,7710,14008,-9,14006,14009,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.910796675543,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,3,0,194,232464.1732614034,151700.4123523616,154792.902882809,31861.79065641102,2885.791780855715 -6228,7710,14009,14006,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,6.989512144142966,6.841288437677876,0,10,13,22.32150175425498,0,-9,-9,2019,7,0,70,70,1,0,0,1.175409221637681,1.175409221637681,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,13,4,3,0,194,232464.1732614034,151700.4123523616,154792.902882809,31861.79065641102,2885.791780855715 -6229,7711,14010,-9,14011,14012,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.2511975689713,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,550.75,319650.6940114163,195340.6741073758,335970.3437700326,261729.9706107522,3532.733164448501 -6229,7711,14011,14012,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.198426229731014,8.290407469079009,0,8,-2,-81.18107683421169,0,2,2,2019,8,0,21,30,1,0,0,26.45297210342445,26.45297210342445,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,57,8.333333333333334,1,1,0,0,9,9,5,1,550.75,319650.6940114163,195340.6741073758,335970.3437700326,261729.9706107522,3532.733164448501 -6229,7711,14012,14011,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.763658681225618,8.915050746932511,0,8,2,-61.95817852661862,0,2,2,2019,10,0,55,64,1,1,0,12.23298962061397,12.23298962061397,0,0,0,0,0,1,1,0,2.292906527238626,0,51,57,54.2,57.49,7,1,1,0,0,1,9,5,1,550.75,319650.6940114163,195340.6741073758,335970.3437700326,261729.9706107522,3532.733164448501 -6229,7711,14013,-9,14011,14012,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.585730805594,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,550.75,319650.6940114163,195340.6741073758,335970.3437700326,261729.9706107522,3532.733164448501 -6230,7712,14014,14015,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.369980719617097,4.275559484748655,47,2,-33.08703610700878,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.13681590631826,46.95,40.97,52,48,8.333333333333334,1,1,0,0,0,9,2,1,1289,52126.29017681252,91001.57650291472,0,0,867.6979973923574 -6230,7712,14015,14014,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,8,-2,119.0008060224925,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,46.95,40.97,7,1,1,0,0,0,9,2,1,1289,52126.29017681252,91001.57650291472,0,0,867.6979973923574 -6230,7713,14016,-9,14014,14015,1,0,35,0,0,0,1,1,-9,0,4,8.363419671292604,8.526554937375129,0,0,0,-915.4015717396765,0,2,2,2019,11,0,50,38,1,2,0,7.959784627000789,7.959784627000789,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,9,4,1,427,-67298.02531352233,35419.59538772448,0,0,1638.897848064123 -6231,7714,14017,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.070492271820477,8.672208030758735,8.002115414435337,0,0,-975.7001328306935,0,2,2,2019,11,0,21,22,1,0,0,23.46323878504591,23.46323878504591,0,0,0,0,0,0,0,0,5.294398494645845,8.351344676904048,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,4084,718923.5169836278,654660.3846812476,113837.5248707674,0,2592.400984774915 -6232,7715,14018,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.720549713147175,8.559401728951034,0,0,0,-1079.729251351521,0,3,3,2019,10,1,47,47,1,1,0,14.35820850646066,14.35820850646066,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,10,4,5,1,599,261785.4383985703,111314.6061307184,0,0,1889.060486504336 -6233,7716,14019,14020,-9,-9,1,0,33,0,0,0,1,1,1,0,5,6.278389201443166,6.272826728057727,0,3,1,-124.5653996827112,-9,-9,-9,2019,9,0,28,0,1,0,0,2.471749757085147,2.471749757085147,0,0,0,0,0,0,0,0,0,0,51.39,59.18,31.15,62.63,8.333333333333334,2,3,0,0,2,9,4,0,1345,540351.1621977598,50675.57895822517,316910.3975636465,0,3233.231107851021 -6233,7716,14020,14019,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.959703350197808,8.931860119394061,0,3,-1,-50.36100354959008,0,2,2,2019,14,2,38,38,1,2,0,15.30589177909164,15.30589177909164,0,0,0,0,0,0,0,0,0,0,31.15,62.63,51.39,59.18,6.666666666666667,1,1,0,0,6,9,4,0,1345,540351.1621977598,50675.57895822517,316910.3975636465,0,3233.231107851021 -6234,7717,14021,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,1,8.736997095861362,8.617453469217248,0,0,0,-940.0967397010751,0,2,1,2019,33,12,36,36,1,12,0,17.27458629611599,17.27458629611599,0,0,0,0,0,0,0,0,0,0,32.5,32.86,-9,-9,6.666666666666667,1,1,0,1,11,8,5,0,441,800496.507787725,387258.2106853197,424498.1623619069,93752.55039101136,1749.728797053748 -6235,7718,14022,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.411219219589108,6.518394900204006,0,0,-857.1854954541091,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.529566423474395,5.955291625437789,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,301,621170.2533198117,88983.86572110518,516508.6597838719,0,458.0250308447592 -6236,7719,14023,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,4.865246275787843,4.58829468366172,0,0,-950.3065131679065,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,43.86022090230603,3.652491121512331,433.3254463021939,0,1,1,0,4.744722562075188,4.618512708281195,54.79,18.85,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,1019,481267.7226821549,31563.62708524628,493294.8820527178,0,1046.454838049217 -6237,7720,14024,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.893874890769458,7.955753640636006,0,0,-981.6254071586252,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,3.659580499866764,7.740550730324069,49.75,47.31,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,3455,1031272.821850426,545109.2994374878,444573.9266531519,0,1284.813755941671 -6238,7721,14025,14026,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.945401098660067,8.815597486889915,0,9,1,-47.32825298076604,0,2,3,2019,22,10,40,44,1,10,0,20.33490717652935,20.33490717652935,0,0,0,0,0,1,1,0,4.589280968402832,0,37.91,48.63,58.15,52.91,5,1,1,0,0,10,12,5,1,773.6666666666666,141867.022076362,49149.78067329505,208846.3472333001,47310.78948022215,3376.3683631779 -6238,7721,14026,14025,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.085272589255027,7.695619691664706,0,9,-1,-69.44790045546617,0,2,2,2019,6,0,28,28,1,0,0,9.946881410889267,9.946881410889267,0,0,0,0,2,1,1,0,0,0,58.15,52.91,37.91,48.63,8.333333333333334,1,1,0,0,10,12,5,1,773.6666666666666,141867.022076362,49149.78067329505,208846.3472333001,47310.78948022215,3376.3683631779 -6238,7721,14027,-9,14026,14025,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1084.540235633118,-9,1,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,773.6666666666666,141867.022076362,49149.78067329505,208846.3472333001,47310.78948022215,3376.3683631779 -6239,7722,14028,14029,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,6.717390871240133,6.752564250084117,0,2,2,65.50085422433833,0,3,3,2019,9,0,40,40,1,0,0,2.458403503374657,2.458403503374657,0,0,0,0,0,0,0,0,0,0,50.11,54.04,46,50,5,1,1,0,0,12,2,3,1,847,257964.8059016803,298442.8461386735,101512.6060621693,46816.68860132944,1614.18558585782 -6239,7722,14029,14028,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,8.172651707602606,7.967061594221438,0,2,-2,6.113326361980426,0,2,2,2019,12,0,30,30,1,0,0,11.42704350944307,11.42704350944307,0,0,0,0,0,0,0,0,0,0,46,50,50.11,54.04,8.333333333333334,1,1,0,0,8,2,3,1,847,257964.8059016803,298442.8461386735,101512.6060621693,46816.68860132944,1614.18558585782 -6239,7723,14030,-9,14029,14028,1,0,23,0,0,0,2,2,-9,0,5,7.865773487058361,8.128773067122477,0,0,0,-908.8435018743326,0,3,2,2019,8,0,45,42,1,0,1,9.562083587216431,9.562083587216431,0,0,0,0,0,0,0,0,0,0,48.92,57.99,-9,-9,5,1,1,0,0,7,2,4,1,326,-86035.21328371447,0,0,0,1500.017447339754 -6240,7724,14031,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.006349032154603,6.44104561184712,0,0,-979.775265306322,0,3,3,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.031832376112185,6.348631530289691,29.64,61.72,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,617,1383783.38846785,103593.0507110508,666899.0931646047,0,990.7619987752968 -6241,7725,14032,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.281118732856495,6.953562630068856,0,0,0,-1045.901353368645,-9,-9,-9,2019,14,2,18,0,1,2,0,6.064588502651326,6.064588502651326,0,0,0,0,7,1,1,0,0,0,35.55,50.24,-9,-9,5,1,1,0,0,1,1,2,0,486,0,0,0,0,1337.446314776815 -6242,7726,14033,14034,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,9,-5,63.9859530699003,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.4,34.37,37.19,34.68,8.333333333333334,2,3,0,0,1,6,3,1,150.5,966920.3880998356,8398.136616948432,373695.9269088475,147329.1633652787,1351.077446695496 -6242,7726,14034,14033,-9,14037,1,1,37,1,2,0,1,1,-9,0,1,8.335481051650257,8.768671693283741,0,9,5,-145.2147056362257,0,3,3,2019,19,7,37,41,1,7,0,15.83192357469845,15.83192357469845,0,0,0,0,0,1,1,0,1.710191009917891,0,37.19,34.68,57.4,34.37,3.333333333333333,2,3,0,0,11,6,3,1,150.5,966920.3880998356,8398.136616948432,373695.9269088475,147329.1633652787,1351.077446695496 -6242,7726,14035,-9,14033,14034,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.018452493606,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,150.5,966920.3880998356,8398.136616948432,373695.9269088475,147329.1633652787,1351.077446695496 -6242,7726,14036,-9,14033,14034,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.184410950757,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,150.5,966920.3880998356,8398.136616948432,373695.9269088475,147329.1633652787,1351.077446695496 -6242,7727,14037,-9,-9,-9,1,1,79,1,2,0,3,3,-9,0,2,0,0,0,0,0,-940.5024885517271,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,42.42,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,413,-266874.8575420034,0,0,0,882.4355738635252 -6243,7728,14038,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.943430542171002,8.416100626584583,6.973603852355762,0,0,-1070.477585546486,0,3,3,2019,18,6,38,38,1,6,0,12.54435114580656,12.54435114580656,0,0,0,0,0,0,0,0,0,7.419382855638118,50.51,28.51,-9,-9,3.333333333333333,1,1,0,0,12,1,5,1,283,795270.3683561037,286465.2380692883,337496.147889159,0,2717.991947974709 -6244,7729,14039,-9,14040,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.657312623797,-9,1,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.3489761563216592,0,55.3,55.6,-9,-9,5,4,2,0,0,0,9,3,1,765.5,-70674.28467430445,0,0,0,1647.028561610262 -6244,7729,14040,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.828359112706069,7.655939071100771,0,0,0,-904.9275632899217,0,2,1,2019,12,2,30,34,1,2,0,8.157505089023015,8.157505089023015,0,0,0,0,0,1,1,0,2.36964049785265,0,46.61,56.93,-9,-9,3.333333333333333,1,1,0,1,11,9,3,1,765.5,-70674.28467430445,0,0,0,1647.028561610262 -6245,7730,14041,-9,14042,14044,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.939280894803,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,868.6,122889.7656673174,-3266.946573413076,149608.2062016497,89973.0394478555,6089.358760037977 -6245,7730,14042,14044,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.785953786513282,7.95191773556959,0,15,-2,-26.49884304597663,0,2,2,2019,12,1,40,0,1,1,0,6.457796867973277,6.457796867973277,0,0,0,0,0,1,1,0,3.455094713631582,0,48.87,58.55,43.5,52.88,8.333333333333334,1,1,0,0,8,7,3,1,868.6,122889.7656673174,-3266.946573413076,149608.2062016497,89973.0394478555,6089.358760037977 -6245,7730,14043,-9,14042,14044,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.7850042651085,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,868.6,122889.7656673174,-3266.946573413076,149608.2062016497,89973.0394478555,6089.358760037977 -6245,7730,14044,14042,-9,-9,1,1,44,0,3,0,2,2,-9,0,3,7.856975431530995,7.853314062855108,0,15,2,-31.2503175138723,0,2,2,2019,8,0,80,98,1,0,0,3.8886457218362,3.8886457218362,0,0,0,0,0,1,1,0,8.954771681364569,0,43.5,52.88,48.87,58.55,8.333333333333334,1,1,0,0,7,7,3,1,868.6,122889.7656673174,-3266.946573413076,149608.2062016497,89973.0394478555,6089.358760037977 -6245,7730,14045,-9,14042,14044,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.6560565396022,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,868.6,122889.7656673174,-3266.946573413076,149608.2062016497,89973.0394478555,6089.358760037977 -6246,7731,14046,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.571843371168983,8.619223487652469,0,0,0,-861.6847898982918,0,2,2,2019,20,6,40,12,1,6,0,14.60702286839779,14.60702286839779,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,8.333333333333334,1,1,0,0,3,9,5,0,485,-55966.60118612202,72962.19314958944,0,0,1414.694669266814 -6247,7732,14047,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.991388459983401,6.539391896596321,0,0,-856.2705754692339,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.241013013687018,7.027265352198222,44.99,43.48,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,325,9506.56139203276,95020.37428341727,0,0,999.5975927719933 -6248,7733,14048,14049,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,6.494966338499455,6.404491498006078,0,8,0,54.49336208729763,0,2,2,2019,5,0,15,15,1,0,0,6.2528605537951,6.2528605537951,0,0,0,0,2,0,0,0,7.820600039836528,0,57.06,57.76,57.06,57.76,10,1,1,0,0,9,9,5,1,590.5,1288095.369987436,459893.4756334991,697098.0452822202,0,5056.291769522936 -6248,7733,14049,14048,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.432011362632922,9.161439036722339,0,8,0,-12.72318310917525,0,3,2,2019,6,0,46,46,1,0,0,30.47697926811768,30.47697926811768,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,590.5,1288095.369987436,459893.4756334991,697098.0452822202,0,5056.291769522936 -6248,7734,14050,-9,14048,14049,1,1,23,0,0,0,2,2,1,0,4,7.899365875646922,8.20405266634301,0,0,0,-1093.634539776456,-9,1,1,2019,10,0,24,0,1,1,1,12.02263379998843,12.02263379998843,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,4,1,1620,117009.370652114,-39358.32223634588,0,0,1435.694402618694 -6248,7735,14051,-9,14048,14049,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-937.4268121842031,-9,1,1,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,2,1,3178,2166.995208689807,0,0,0,0 -6249,7736,14052,14053,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,3.68290779343209,3.783413947562223,7,3,-51.64199474480276,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,11.21574229189376,0,0,1,1,0,0,4.006517032071993,39.5,33.47,45.49,39.92,5,1,1,0,0,0,2,2,1,580.5,82763.06439323908,29086.44260645071,105357.7669394102,0,733.5187764279053 -6249,7736,14053,14052,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,7,-3,67.59725817876766,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.49,39.92,39.5,33.47,6.666666666666667,1,1,0,0,7,2,2,1,580.5,82763.06439323908,29086.44260645071,105357.7669394102,0,733.5187764279053 -6250,7737,14054,14055,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,60,0,-85.56469852229563,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.006322394377781,0,0,1,1,0,0,0,46.37,19.29,49.54,34.21,8.333333333333334,1,1,0,0,0,5,2,1,1615,210768.4256004922,0,98990.16321533683,0,2626.702462838868 -6250,7737,14055,14054,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,2.406946405438788,2.563697799682534,60,0,-34.64491413645784,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,2.945631098687028,49.54,34.21,46.37,19.29,5,1,1,0,0,0,5,2,1,1615,210768.4256004922,0,98990.16321533683,0,2626.702462838868 -6251,7738,14056,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.315097280614889,5.946101655313603,0,0,-1034.749383492056,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.966229362029394,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,2036,182880.2958479543,160556.6770260566,195136.2892363089,0,196.6816037940971 -6252,7739,14057,14059,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.852546670607785,8.593422183951624,0,6,1,-40.36309399356017,0,2,2,2019,9,1,35,35,1,1,0,21.98717548020269,21.98717548020269,0,0,0,0,0,1,1,0,7.143266942557507,0,54.79,55.86,28.5,64.96000000000001,8.333333333333334,1,1,0,0,8,4,5,1,702,-54321.37986225297,45201.0907633857,0,0,3223.122322285623 -6252,7739,14058,-9,14059,14057,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.740191764488,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,702,-54321.37986225297,45201.0907633857,0,0,3223.122322285623 -6252,7739,14059,14057,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.163669806751377,7.248046929049997,0,6,-1,-4.875088517542117,0,-9,-9,2019,18,6,14,20,1,6,0,13.54691344463078,13.54691344463078,0,0,0,0,0,1,1,0,0,0,28.5,64.96000000000001,54.79,55.86,5,1,1,0,0,5,4,5,1,702,-54321.37986225297,45201.0907633857,0,0,3223.122322285623 -6253,7740,14060,14061,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,14,4,-51.87181782051326,1,2,1,2019,8,0,0,72,2,0,0,0,0,0,0,0,0,0,1,1,0,7.355866071125829,0,55.36,51.57,51.24,58.84,6.666666666666667,1,1,0,1,13,9,2,1,570.25,1606889.91810618,451544.5018805391,1200564.802513223,187102.0033093876,1898.041581672505 -6253,7740,14061,14060,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.652210165208457,7.164857579418051,0,14,-4,-74.00054127166372,0,-9,-9,2019,10,1,12,12,1,1,0,7.582536038087312,7.582536038087312,0,0,0,0,0,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,13,9,2,1,570.25,1606889.91810618,451544.5018805391,1200564.802513223,187102.0033093876,1898.041581672505 -6253,7740,14062,-9,14061,14060,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.8735420192455,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,570.25,1606889.91810618,451544.5018805391,1200564.802513223,187102.0033093876,1898.041581672505 -6253,7740,14063,-9,14061,14060,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.7025179149829,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,570.25,1606889.91810618,451544.5018805391,1200564.802513223,187102.0033093876,1898.041581672505 -6254,7741,14064,-9,-9,-9,1,0,55,1,1,0,1,1,-9,0,4,8.670462223188927,8.704780275186462,6.736398937349457,0,0,-970.8903365819493,0,2,2,2019,13,1,40,45,1,1,0,15.60570119002595,15.60570119002595,0,0,0,0,0,1,1,0,6.862542765798703,0,54.77,50.34,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,345,194654.2331587057,35867.66921654795,198054.5316437916,42517.9843139723,2038.277562786936 -6254,7742,14065,-9,14066,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.886834263471,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,2914.5,-18074.7720439393,-30677.33536718943,0,0,508.9376237582312 -6254,7742,14066,-9,14064,-9,1,0,23,1,1,0,1,1,-9,0,4,6.86898688321124,6.236451979021069,0,0,0,-1099.892497230913,0,1,1,2019,7,0,21,5,1,0,1,4.010503187177075,4.010503187177075,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,2914.5,-18074.7720439393,-30677.33536718943,0,0,508.9376237582312 -6254,7743,14067,-9,14064,-9,1,0,20,1,1,1,2,0,0,0,4,0,0,0,0,0,-1159.49631087428,-9,1,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.438876904339907,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,1,3,13,1,1,517,143269.1558321925,0,0,0,132.3725257689146 -6255,7744,14068,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.892934230750109,5.873534487513921,0,0,-1021.391773063914,0,3,3,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,7,1,1,0,4.936295309864692,5.998382275277904,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,4819,202013.6573052702,16722.25995967904,0,0,771.7276088957562 -6256,7745,14069,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,4.336142495012586,4.529036292257,0,0,-1057.582913793281,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,0,4.354560997986344,42.92,29.16,-9,-9,3.333333333333333,1,1,0,1,0,12,2,1,142,199981.1624377618,-46910.17350961058,148851.4864617164,0,577.7846469945637 -6257,7746,14070,14071,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.946152593450782,8.411067048884597,7.323153510572506,37,-16,48.81710101974169,0,2,2,2019,8,0,19,18,1,0,0,16.3274982539471,16.3274982539471,0,0,0,0,0,1,1,0,0,7.609493702249063,57.06,57.76,60.53,42.47,8.333333333333334,1,1,0,0,11,4,4,1,605,319833.9935708087,9254.579637274004,307158.9478430818,0,2455.701092837787 -6257,7746,14071,14070,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.84475682579544,6.409056380367214,35,16,4.632604604901861,0,1,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.403254732676789,6.85218017679039,60.53,42.47,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,605,319833.9935708087,9254.579637274004,307158.9478430818,0,2455.701092837787 -6258,7747,14072,14074,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,7.432049380615394,7.132906834490826,3,-3,-99.19518584159518,0,-9,-9,2019,16,4,0,25,3,4,0,0,0,0,0,0,0,0,1,0,1,7.930091455086062,0,53.14,45.74,58.58,46.04,5,1,1,1,0,2,5,4,0,1512,1135660.287030738,753966.730955335,186905.4249645421,0,3601.302854838812 -6258,7747,14073,-9,14072,14074,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.441252251579,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,0,1512,1135660.287030738,753966.730955335,186905.4249645421,0,3601.302854838812 -6258,7747,14074,14072,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.368002735394123,8.632736863520526,0,3,3,92.60180044313583,0,2,3,2019,8,0,46,0,1,0,0,10.54780561408228,10.54780561408228,0,0,0,0,0,1,0,1,0,0,58.58,46.04,53.14,45.74,8.333333333333334,1,1,0,0,9,5,4,0,1512,1135660.287030738,753966.730955335,186905.4249645421,0,3601.302854838812 -6259,7748,14075,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.776163893956164,8.065695504803687,3.677582200353941,0,0,-978.3686352874636,0,2,2,2019,12,2,36,31,1,2,0,6.979884295778705,6.979884295778705,0,0,0,0,2,1,1,0,4.296502597045365,4.248814070202974,47.76,48.16,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,568,-100599.39251489,-28443.03186529223,137023.850948132,82668.01853078802,1044.819307235854 -6260,7749,14076,14077,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,6.244290723377916,6.193546024069752,0,10,-4,92.05558429372368,0,3,2,2019,12,2,8,12,1,2,0,7.88655915552572,7.88655915552572,0,0,0,0,0,1,1,0,0,0,35.26,47.34,36.93,56.27,3.333333333333333,2,3,0,0,8,8,3,0,749,-15738.74140787729,59366.85652243121,0,0,1570.677741629232 -6260,7749,14077,14076,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.168157283083257,8.41059807926813,0,10,4,123.3944389665087,0,3,1,2019,14,2,39,38,1,2,0,11.47359794752359,11.47359794752359,0,0,0,0,0,1,1,0,0,0,36.93,56.27,35.26,47.34,5,2,3,0,0,8,8,3,0,749,-15738.74140787729,59366.85652243121,0,0,1570.677741629232 -6260,7749,14078,-9,14076,14077,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.3867646838725,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,749,-15738.74140787729,59366.85652243121,0,0,1570.677741629232 -6261,7750,14079,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.316821257694764,6.226630824442457,0,0,-993.301665412759,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.654845239109423,5.799942147455821,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,436,-38256.22250856296,120073.7222242195,0,0,213.3644937169857 -6262,7751,14080,-9,14082,14081,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.854934271466,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,829.3333333333334,-49790.19326970923,10654.09195012075,105276.2944943096,90054.86783099717,2467.416456567605 -6262,7751,14081,14082,-9,-9,1,1,39,1,3,0,2,2,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.76,25.08,44.43,56.74,0,1,1,0,0,0,13,1,0,829.3333333333334,-49790.19326970923,10654.09195012075,105276.2944943096,90054.86783099717,2467.416456567605 -6262,7751,14082,14081,-9,-9,1,0,38,1,3,0,2,2,-9,0,3,0,0,0,1,-1,0,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,44.43,56.74,19.76,25.08,3.333333333333333,1,1,1,1,0,13,1,0,829.3333333333334,-49790.19326970923,10654.09195012075,105276.2944943096,90054.86783099717,2467.416456567605 -6263,7752,14083,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,3,6.063866618307945,6.007844180687933,4.379303521236819,0,0,-1068.679011708122,0,3,3,2019,8,0,3,8,1,0,0,12.26279695461847,12.26279695461847,0,0,0,0,0,1,1,0,0,4.645731619449462,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,728,502791.1590836067,0,65062.12807191483,0,634.4822897087207 -6263,7753,14084,-9,14083,-9,1,1,36,0,0,0,3,3,-9,0,2,7.985919292796933,8.039877053892404,0,0,0,-1038.107933929847,0,3,3,2019,21,8,43,42,1,8,0,6.941006130738178,6.941006130738178,0,0,0,.0550619298673567,0,1,1,0,0,0,44.03,38.13,-9,-9,5,1,1,0,1,9,2,4,1,74,25628.83525311649,-49264.47646908227,0,0,1368.620260661338 -6263,7754,14085,-9,14083,-9,1,1,38,0,0,0,2,2,-9,0,5,7.706741712578546,7.612397765106491,0,0,0,-885.727870741112,0,3,-9,2019,5,0,41,50,1,0,0,6.222653238395845,6.222653238395845,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,2,3,1,3915,86407.33103040858,0,0,0,767.2971335180439 -6264,7755,14086,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,9.324077001822397,9.185038235580578,0,0,0,-1045.997415363034,0,2,1,2019,7,0,55,0,1,0,0,25.34271084845458,25.34271084845458,0,0,0,0,0,0,0,0,3.964840285935259,0,48,54.77,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,758,-19565.93063991131,39253.32236980538,0,0,4154.579116786987 -6265,7756,14087,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.363249034389225,8.243418537406145,0,0,0,-883.2520045754461,-9,2,2,2019,11,1,20,0,1,1,0,20.50906158923851,20.50906158923851,0,0,0,0,0,0,0,0,2.584840817529134,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,252,59199.63085306722,-739.9736474867241,0,0,1421.169669107314 -6266,7757,14088,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.107850079748077,8.149009756453198,0,0,0,-1133.83627646116,0,2,-9,2019,12,0,40,40,1,0,0,8.409787079761086,8.409787079761086,0,0,0,0,0,0,0,0,0,0,53.79,37.67,-9,-9,5,1,1,0,0,8,12,4,0,972,509226.6088647675,225899.3755581109,195614.6892293812,62097.15401215768,794.8842278938807 -6267,7758,14089,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.236675520064113,8.191770134585086,0,0,-1160.316046841201,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.26883541364441,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,730,519484.6065163251,701495.7850671494,0,0,2666.884031070597 -6268,7759,14090,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-861.2128285789483,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.15,33.58,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,453,-38859.2577777109,-73240.20015218054,0,0,1536.763447718552 -6268,7760,14091,-9,14090,-9,1,0,22,0,0,0,1,1,-9,0,4,7.914016997053576,8.216088374307049,0,0,0,-1080.205231196367,0,2,-9,2019,16,4,46,54,1,4,1,8.487456194878405,8.487456194878405,0,0,0,0,0,1,1,0,0,0,28.41,64.05,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,136,72555.38945598844,1269.457077536934,0,0,1138.505701953562 -6269,7761,14092,-9,14094,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1046.232873259681,-9,2,-9,2019,28,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,39.09,41.54,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,1078.666666666667,145185.5531104886,0,0,0,1487.435147210187 -6269,7761,14093,-9,14094,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.3106792615018,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1078.666666666667,145185.5531104886,0,0,0,1487.435147210187 -6269,7761,14094,-9,-9,-9,1,0,51,0,2,0,2,2,-9,1,1,0,5.665856583222279,5.7142944499381,0,0,-1107.352933820125,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,5.743019238602162,0,54.81,10.49,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,1078.666666666667,145185.5531104886,0,0,0,1487.435147210187 -6269,7762,14095,-9,14094,-9,1,1,19,0,2,0,2,2,1,1,3,0,0,0,0,0,-981.2438411113942,-9,2,-9,2019,9,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,.9841731741908821,0,46.85,51.26,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1140,0,0,0,0,-250.2370178499294 -6270,7763,14096,14097,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.725165400785222,6.074673623151211,42,2,-73.01464338570372,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,75.2846345661227,0,0,1,1,0,5.372602976878946,6.486705830520683,30.26,18.9,45.4,40.72,6.666666666666667,1,1,0,0,0,2,2,1,372.5,459886.7598318321,252579.0197807375,333136.8079112435,50660.4698531665,2364.212585939919 -6270,7763,14097,14096,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.153625149012472,6.404381207501675,3,-2,-76.49957669496229,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,5.480887445825502,6.298259613068414,45.4,40.72,30.26,18.9,8.333333333333334,1,1,0,0,8,2,2,1,372.5,459886.7598318321,252579.0197807375,333136.8079112435,50660.4698531665,2364.212585939919 -6271,7764,14098,-9,14101,14100,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.9962287022686,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,296.75,159409.8364381765,17040.59267633501,191304.8990798671,0,3502.093889523091 -6271,7764,14099,-9,14101,14100,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.028802102541,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,296.75,159409.8364381765,17040.59267633501,191304.8990798671,0,3502.093889523091 -6271,7764,14100,14101,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,7.979072155503332,7.979159905882171,0,2,2,77.91631531132647,-9,-9,-9,2019,10,0,38,0,1,0,0,9.015327544888768,9.015327544888768,0,0,0,0,0,1,1,0,1.584444192199286,0,46.63,59.72,41.33,56.87,8.333333333333334,1,1,0,0,10,10,4,0,296.75,159409.8364381765,17040.59267633501,191304.8990798671,0,3502.093889523091 -6271,7764,14101,14100,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,8.503485116160601,8.702825051450745,0,2,-2,-29.16687495266196,0,-9,-9,2019,22,9,42,52,1,9,0,13.99503982085668,13.99503982085668,0,0,0,0,0,1,1,0,7.07407596977105,0,41.33,56.87,46.63,59.72,8.333333333333334,1,1,0,0,9,10,4,0,296.75,159409.8364381765,17040.59267633501,191304.8990798671,0,3502.093889523091 -6272,7765,14102,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.166180697760183,8.298790936254203,0,0,0,-928.4565713960221,0,2,2,2019,23,10,46,39,1,10,0,12.34007609800362,12.34007609800362,0,0,0,0,0,0,0,0,0,0,31.54,60.02,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,516,-23587.70629435314,0,0,0,1567.944518402943 -6273,7766,14103,14104,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.775404610187797,8.932818604378836,0,3,-1,-43.00030604572832,0,2,3,2019,11,0,43,50,1,0,0,19.45919040546621,19.45919040546621,0,0,0,0,0,0,0,0,0,0,51.25,48.45,57.06,57.76,5,4,2,0,0,6,6,5,1,484,908068.4915600686,587578.2058061899,314372.0407003153,76334.1502527681,5047.195959385966 -6273,7766,14104,14103,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,8.417614338437318,8.494802013646225,3,1,37.75846935911265,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.706519195933669,8.488536575787867,57.06,57.76,51.25,48.45,8.333333333333334,1,1,0,0,2,6,5,1,484,908068.4915600686,587578.2058061899,314372.0407003153,76334.1502527681,5047.195959385966 -6274,7767,14105,14106,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,42,0,-107.5517512753195,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,27.65,42.24,37.72,43.87,6.666666666666667,1,1,0,0,7,13,3,1,776,354868.235653638,137488.6517441003,0,0,2072.349715284724 -6274,7767,14106,14105,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.066050082718004,8.23707874014401,5.060027366869122,42,0,-134.1933378819729,0,3,3,2019,14,4,42,39,1,4,0,8.157886608705972,8.157886608705972,0,0,0,0,0,1,1,0,4.929645579593606,5.248554876944663,37.72,43.87,27.65,42.24,6.666666666666667,1,1,0,0,9,13,3,1,776,354868.235653638,137488.6517441003,0,0,2072.349715284724 -6275,7768,14107,14108,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,0,0,33,1,0,0,3,3,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,10.82,49.64,48,49,0,2,3,0,1,0,8,2,1,563.5,-54170.62441058749,0,0,0,1538.11616500807 -6275,7768,14108,14107,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,33,-1,0,0,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,48,49,10.82,49.64,7,2,3,0,0,0,8,2,1,563.5,-54170.62441058749,0,0,0,1538.11616500807 -6275,7769,14109,-9,14108,14107,1,1,28,0,0,0,2,2,-9,0,5,8.75013261669309,8.435621055062462,0,0,0,-1056.855804716015,0,2,2,2019,10,0,44,45,1,0,1,9.884423464381227,9.884423464381227,0,0,0,0,2,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,2,3,0,0,10,8,4,1,162,-113670.5044327908,-63775.87802390126,0,0,1265.707601283369 -6275,7770,14110,-9,14108,14107,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1046.629319369515,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,2,3,1,0,2,8,1,1,2339,268185.3690649524,0,0,0,0 -6276,7771,14111,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.457331755787409,6.437143405469774,0,0,-915.3413761807902,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,2.870556995827636,.5597630497258368,27.11432751043437,0,1,1,0,4.763192600055701,6.499864192500525,54.78,13.18,-9,-9,10,1,1,0,0,0,6,2,1,640,929903.2203592969,0,267638.6996158995,0,1048.998078855838 -6277,7772,14112,14113,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.686058364610576,8.942217645819367,57,0,68.22474963206261,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.101613979302254,8.718016086681128,60.86,50.49,52.31,58.29,10,1,1,0,0,0,9,5,1,523.5,2270547.895044772,559269.5697791006,789866.3528096729,0,9958.631173214537 -6277,7772,14113,14112,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.995908079536575,9.015858659681657,57,0,62.79715281070943,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.340604141374801,7.275003218272034,52.31,58.29,60.86,50.49,8.333333333333334,1,1,0,0,0,9,5,1,523.5,2270547.895044772,559269.5697791006,789866.3528096729,0,9958.631173214537 -6278,7773,14114,14115,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.432832485680212,8.531091544976174,0,38,2,-2.721159460708728,0,2,1,2019,6,0,45,44,1,0,0,10.69364913798343,10.69364913798343,0,0,0,3.92075214512116,2,0,0,0,4.34002595102555,0,58.15,52.91,61.28,48.88,8.333333333333334,1,1,0,0,12,5,5,1,4374,463355.3945130238,398996.001021883,179795.2444507524,0,2901.130023024322 -6278,7773,14115,14114,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.70303090893566,8.290618676019228,39,-2,-64.25874302881721,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.442457874648753,8.049124761688541,61.28,48.88,58.15,52.91,8.333333333333334,1,1,0,0,11,5,5,1,4374,463355.3945130238,398996.001021883,179795.2444507524,0,2901.130023024322 -6279,7774,14116,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.403561559021896,7.389208798775337,0,0,0,-971.2580612829915,0,1,1,2019,8,0,35,35,1,0,0,6.703530814329015,6.703530814329015,0,0,0,0,0,0,0,0,6.778998731914704,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,663,-26583.82002923763,-32888.64214978529,0,0,1267.439192358241 -6280,7775,14117,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.950515339630083,8.177418235985561,0,0,-1069.806710037839,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.531774326014316,8.458730578386051,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,586,936591.0785915172,355319.3477473459,243527.7938784269,0,2466.5018797569 -6280,7776,14118,-9,-9,14117,1,1,37,0,0,0,1,1,-9,0,5,7.850655175794179,7.576909798319333,0,0,0,-1072.126572998021,0,-9,1,2019,8,0,18,20,1,0,0,15.95807452778798,15.95807452778798,0,0,0,0,0,1,1,0,3.717445743901572,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,3,12,3,1,240,-152350.0920487954,-2836.523591277791,0,0,1552.255639007764 -6281,7777,14119,-9,14122,14121,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.368276432274,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,828.4,3755.744269381857,0,0,0,1688.631537834962 -6281,7777,14120,-9,14122,14121,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-870.4397725007469,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,1,0,828.4,3755.744269381857,0,0,0,1688.631537834962 -6281,7777,14121,14122,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,9,0,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,54.79,55.86,8.333333333333334,1,1,1,1,0,2,1,0,828.4,3755.744269381857,0,0,0,1688.631537834962 -6281,7777,14122,14121,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52,54.51,8.333333333333334,1,1,1,1,0,2,1,0,828.4,3755.744269381857,0,0,0,1688.631537834962 -6281,7777,14123,-9,14122,14121,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.601402464582,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,828.4,3755.744269381857,0,0,0,1688.631537834962 -6282,7778,14124,-9,14127,14125,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.3896052273726,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1022.75,158585.0996055268,23417.79690645227,146966.1558260888,0,2215.90169875887 -6282,7778,14125,14127,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.302596257130288,8.40573229298025,0,1,5,13.94649367760463,-9,2,2,2019,9,0,40,0,1,1,0,12.0122658379763,12.0122658379763,0,0,0,0,0,1,1,0,.5386444679294347,0,52,55,47.2,54.83,8,1,1,0,0,1,11,4,1,1022.75,158585.0996055268,23417.79690645227,146966.1558260888,0,2215.90169875887 -6282,7778,14126,-9,14127,14125,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1166.023686768816,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,11,4,1,1022.75,158585.0996055268,23417.79690645227,146966.1558260888,0,2215.90169875887 -6282,7778,14127,14125,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,6.696018064646234,6.835159381930692,0,1,-5,.5620023893795363,-9,3,3,2019,7,0,12,0,1,0,0,8.288983777513671,8.288983777513671,0,0,0,0,0,1,1,0,0,0,47.2,54.83,52,55,8.333333333333334,1,1,0,0,11,11,4,1,1022.75,158585.0996055268,23417.79690645227,146966.1558260888,0,2215.90169875887 -6283,7779,14128,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-876.1222707920241,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.345417436175633,0,69.5,17.91,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,140,-100559.4959978856,0,0,0,652.3956739764087 -6284,7780,14129,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,6.636812589486492,6.222884490161757,3.308149424068482,0,0,-1160.84807791253,0,2,2,2019,5,0,11,16,1,0,0,9.745727673095171,9.745727673095171,0,0,0,0,0,1,1,0,3.74107624852527,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,419.25,35166.4408562793,59737.72611593276,0,0,1646.089129857346 -6284,7780,14130,-9,14129,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.1054735398783,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,419.25,35166.4408562793,59737.72611593276,0,0,1646.089129857346 -6284,7780,14131,-9,14129,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.674714656229,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,419.25,35166.4408562793,59737.72611593276,0,0,1646.089129857346 -6284,7780,14132,-9,14129,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.5072156676083,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,419.25,35166.4408562793,59737.72611593276,0,0,1646.089129857346 -6285,7781,14133,14134,-9,-9,1,0,51,1,2,0,3,3,-9,1,3,0,0,0,33,-7,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,0,1,0,0,47,49,50,49,7,2,3,0,0,0,6,1,1,363,120324.0602827135,70040.63937645889,133173.4373265695,27311.20217085092,1379.083605643482 -6285,7781,14134,14133,-9,-9,1,1,58,1,2,0,3,3,-9,1,3,0,0,0,10,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,49,47,49,7,2,3,0,0,0,6,1,1,363,120324.0602827135,70040.63937645889,133173.4373265695,27311.20217085092,1379.083605643482 -6285,7782,14135,-9,14133,14134,1,0,30,1,2,0,1,1,-9,0,3,7.464852612309542,7.843517964230113,0,0,0,-878.9702810382754,0,3,2,2019,11,2,25,0,1,2,1,11.74441595715732,11.74441595715732,0,0,0,0,0,1,0,1,0,0,37.94,57.43,-9,-9,6,2,3,0,0,2,6,3,1,243,93292.80133485375,-553.6981795800639,0,0,673.7569531988307 -6285,7783,14136,-9,14133,14134,1,1,26,1,2,0,2,2,-9,0,4,0,0,0,0,0,-982.4187569945478,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,58,-9,-9,7,2,3,1,0,0,6,2,1,390,0,0,0,0,0 -6285,7784,14137,-9,14133,14134,1,0,28,1,2,0,2,2,-9,0,4,7.562399611289599,7.388314198689693,0,0,0,-1044.296877368491,0,3,2,2019,11,0,20,0,1,2,1,8.120502617781982,8.120502617781982,0,0,0,0,0,1,0,1,0,0,46,57,-9,-9,7,2,3,0,1,1,6,3,1,1873.333333333333,76321.70813857984,-23106.14604147004,0,0,1642.672915557698 -6285,7784,14138,-9,14137,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-802.4331197397213,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,1873.333333333333,76321.70813857984,-23106.14604147004,0,0,1642.672915557698 -6285,7784,14139,-9,14137,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.856942518028,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1873.333333333333,76321.70813857984,-23106.14604147004,0,0,1642.672915557698 -6286,7785,14140,14141,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.330243329431742,7.948112998864831,0,10,-8,-4.596148008850651,0,3,3,2019,6,0,32,32,1,0,0,14.48376724956648,14.48376724956648,0,0,0,0,0,1,1,0,.8173319574290284,0,57.16,56.15,50.65,60.47,10,1,1,0,0,11,8,4,1,365,1467605.501507178,806215.2299419304,463845.8189123687,0,3081.241605022056 -6286,7785,14141,14140,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.880842925618314,7.358420119844729,0,10,8,.7548930752534002,0,3,3,2019,6,0,40,40,1,0,0,6.001211622417729,6.001211622417729,0,0,0,0,2,1,1,0,.6039970363215946,0,50.65,60.47,57.16,56.15,10,1,1,0,0,11,8,4,1,365,1467605.501507178,806215.2299419304,463845.8189123687,0,3081.241605022056 -6287,7786,14142,-9,14143,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.0391362480262,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,653.5,-60837.6543047848,-4083.298034024455,0,0,1283.795125640231 -6287,7786,14143,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.423313668660588,6.479235874084056,0,0,0,-1110.98536667516,0,2,2,2019,7,0,27,27,1,0,0,2.020944123516426,2.020944123516426,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,653.5,-60837.6543047848,-4083.298034024455,0,0,1283.795125640231 -6288,7787,14144,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1145.214660169144,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,33.01020462858141,.5204377870928967,303.2639295161146,0,1,1,0,0,0,53,44,-9,-9,8,3,4,0,0,0,8,1,0,123,44718.36314404552,0,0,0,1207.221475152302 -6289,7788,14145,14146,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,-8,-130.7903051730786,0,3,2,2019,20,8,0,0,4,8,0,0,0,1,0,9.01136154104428,0,0,1,1,0,0,0,41.44,19.03,60.29,52.11,8.333333333333334,1,1,0,0,0,12,2,0,301,270127.1770475997,203822.1312880694,52116.12144084898,0,2085.336046834038 -6289,7788,14146,14145,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.254174558317859,5.248228027387879,10,8,-16.89506486686452,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.539954990890149,4.795294803672146,60.29,52.11,41.44,19.03,8.333333333333334,1,1,0,0,4,12,2,0,301,270127.1770475997,203822.1312880694,52116.12144084898,0,2085.336046834038 -6290,7789,14147,-9,14149,14150,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1177.91661227289,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,327.75,948907.351777124,273142.8941468273,245034.4867331826,226688.4587598664,4414.00310999968 -6290,7789,14148,-9,14149,14150,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.521515925985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,327.75,948907.351777124,273142.8941468273,245034.4867331826,226688.4587598664,4414.00310999968 -6290,7789,14149,14150,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,8.74374096588754,8.564794612664,0,14,-1,-96.70687534587189,0,2,2,2019,10,3,37,37,1,3,0,15.1092051824179,15.1092051824179,0,0,0,0,0,1,1,0,2.356553637835928,0,54.06,28.36,48.87,58.55,10,1,1,0,0,9,2,5,1,327.75,948907.351777124,273142.8941468273,245034.4867331826,226688.4587598664,4414.00310999968 -6290,7789,14150,14149,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.410291247796145,8.286794086425109,0,7,1,-2.75226177894448,0,2,2,2019,8,0,45,45,1,0,0,12.38594999934255,12.38594999934255,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.06,28.36,8.333333333333334,1,1,0,0,9,2,5,1,327.75,948907.351777124,273142.8941468273,245034.4867331826,226688.4587598664,4414.00310999968 -6291,7790,14151,14152,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.68832615554855,8.492367530046346,7.353359231101368,22,-4,37.86524714827236,0,2,2,2019,5,0,18,50,1,0,0,13.71419619697529,13.71419619697529,0,0,0,0,0,0,0,0,2.517434850777837,7.737817089654792,58.3,52.91,59.01,44.42,10,1,1,0,0,10,9,4,1,327.6666666666667,722476.246331804,447524.3973909612,354733.7744903301,0,2635.857003533034 -6291,7790,14152,14151,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.023657274131347,7.39469007767203,0,21,4,40.56931710165144,0,3,3,2019,7,0,25,25,1,0,0,4.599452937470524,4.599452937470524,0,0,0,0,0,0,0,0,.0775680933267773,0,59.01,44.42,58.3,52.91,8.333333333333334,1,1,0,0,10,9,4,1,327.6666666666667,722476.246331804,447524.3973909612,354733.7744903301,0,2635.857003533034 -6291,7790,14153,-9,14151,14152,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-987.0709788578354,-9,1,2,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.3101884669000133,0,54.37,54.8,-9,-9,10,1,1,0,0,1,9,4,1,327.6666666666667,722476.246331804,447524.3973909612,354733.7744903301,0,2635.857003533034 -6292,7791,14154,14155,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.955619743573576,9.001935408614971,0,26,4,-103.3697411957243,0,3,3,2019,13,1,48,48,1,1,0,19.40310119160599,19.40310119160599,0,0,0,0,2,0,0,0,1.429341778236347,0,55.51,46.03,41.17,59.31,5,1,1,0,0,10,6,5,1,807.5,431284.9279490432,252383.1136833549,87927.73943684941,63179.86705265364,3272.997908692802 -6292,7791,14155,14154,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.45930793991822,7.432133235398143,0,26,-4,-43.6083931472315,0,3,-9,2019,21,9,25,25,1,9,0,8.79794837568623,8.79794837568623,0,0,0,0,2,0,0,0,0,0,41.17,59.31,55.51,46.03,10,1,1,0,0,10,6,5,1,807.5,431284.9279490432,252383.1136833549,87927.73943684941,63179.86705265364,3272.997908692802 -6292,7792,14156,-9,14155,14154,1,0,22,0,0,0,2,2,-9,0,5,8.370450345157508,8.402424739644927,0,0,0,-880.9746033582126,0,3,2,2019,9,0,40,40,1,0,1,9.185711495608803,9.185711495608803,0,0,0,0,0,0,0,0,0,0,49.76,56.93,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,162,38804.23660482658,112964.6712652789,0,0,1159.767519376102 -6292,7793,14157,-9,14155,14154,1,0,20,0,0,0,2,2,-9,0,4,7.603300490424179,7.470105260366665,0,0,0,-890.4404108423903,0,3,2,2019,11,0,25,7,1,0,1,9.125643037272781,9.125643037272781,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,280,2240.863290047877,4106.946453524237,0,0,1150.786198177897 -6293,7794,14158,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,3.523317957188034,3.699989335732716,0,0,0,-1135.561345910313,0,3,2,2019,12,1,50,50,1,1,0,.1005594563296554,.1005594563296554,0,0,0,0,0,1,1,0,7.142558650428024,0,64.12,27.56,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,400,905335.8454499464,62778.90440195799,768406.6726680787,55159.58953628249,2090.010789918901 -6294,7795,14159,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,5.624118533385762,5.533954357453233,0,0,0,-985.5794673916396,0,2,3,2019,11,0,5,0,1,0,0,6.201324763317223,6.201324763317223,0,0,0,0,0,1,1,0,2.456519233485138,0,54.2,57.49,-9,-9,5,1,1,0,0,11,11,2,1,452,639295.981452433,65726.95123201536,312691.6285434694,0,68.67831333897927 -6295,7796,14160,14161,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,45,-3,-.639766626034044,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.682063632727418,0,58.32,50.22,56.19,46.16,8.333333333333334,1,1,0,0,8,8,3,1,585.5,1835544.286956988,1250998.116357748,403572.9479452251,0,3385.865953235796 -6295,7796,14161,14160,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.379285066029178,8.346694005385087,45,3,-67.1595779075998,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.034166674841856,8.071423492109922,56.19,46.16,58.32,50.22,1.666666666666667,1,1,0,0,0,8,3,1,585.5,1835544.286956988,1250998.116357748,403572.9479452251,0,3385.865953235796 -6296,7797,14162,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,9.236968882822111,9.177650474674035,0,0,-1073.234912014139,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.460763403240822,8.99844004535017,55,45,-9,-9,8,1,1,0,0,0,11,5,1,452,1442623.33129884,415308.6041367999,136385.7223870672,0,5081.47676669615 -6297,7798,14163,14164,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,6,3,89.58873474945949,0,2,1,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,7,1,1,0,0,0,35.29,20.35,49.12,57.28,5,1,1,0,1,4,12,2,0,1498,599623.6739400716,428575.906859917,345529.8601914601,0,1732.254531938189 -6297,7798,14164,14163,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,4.68525885497468,5.030452644464638,6,-3,134.5072787704172,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.503361246643567,4.613471809588446,49.12,57.28,35.29,20.35,6.666666666666667,1,1,0,1,4,12,2,0,1498,599623.6739400716,428575.906859917,345529.8601914601,0,1732.254531938189 -6298,7799,14165,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.347579797389395,8.485518174084612,0,0,0,-1068.29721700957,0,1,2,2019,9,0,40,38,1,0,0,9.207724323331933,9.207724323331933,0,0,0,0,0,0,0,0,7.731527602475696,0,47.09,56.75,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,77,116813.4737734039,0,0,0,2128.042124600582 -6299,7800,14166,14167,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.497687510652682,8.562917264750864,0,34,-3,9.409395048807037,0,2,3,2019,10,0,37,38,1,0,0,16.96416918210424,16.96416918210424,0,0,0,0,7,0,0,0,4.267097784698884,0,51.83,57.2,62.67,44.01,5,1,1,0,0,10,6,5,1,860.5,580155.9125410581,284245.8408907235,120229.7171816339,0,4072.585597263312 -6299,7800,14167,14166,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.739948257533523,8.954067578183079,0,34,3,29.80928402849273,0,3,3,2019,7,0,48,36,1,0,0,14.79234719989828,14.79234719989828,0,0,0,0,0,0,0,0,2.781442359415758,0,62.67,44.01,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,860.5,580155.9125410581,284245.8408907235,120229.7171816339,0,4072.585597263312 -6300,7801,14168,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,9.062011420488826,9.097350036180543,0,0,-895.4008398700314,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.214848346737744,8.813159813965154,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,968,2799087.382958741,0,1504546.130410545,0,6467.726022361401 -6301,7802,14169,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,2.14874694232819,2.118769626963125,0,0,-1078.397411100728,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.751396176220336,1.999385580349226,52.64,46.44,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,251,49334.59971435943,36293.83630433577,137622.4792912005,-11315.02118882811,273.140898480545 -6302,7803,14170,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1001.263504481149,1,2,3,2019,10,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,38.12,-9,-9,6.666666666666667,1,1,0,0,7,7,1,0,527,57836.76326949651,0,0,0,-389.4379417355168 -6303,7804,14171,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,9,-21,-8.639853176982202,0,3,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.87,35.27,44.78,45.77,0,1,1,0,0,0,5,2,1,419,-31612.28476590403,-40200.15938337711,0,0,607.0211620698057 -6303,7805,14172,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.760687030585401,6.917429405528366,9,21,43.36450339589113,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.758448773852786,6.742713205118675,44.78,45.77,26.87,35.27,8.333333333333334,1,1,0,0,0,5,2,1,526,222211.7472642663,86751.63787657888,182489.3616354247,0,282.2858983547908 -6304,7806,14173,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,6.732988332440163,6.758088349015821,0,0,0,-1076.07150379737,0,3,2,2019,6,0,20,20,1,0,0,5.931291850741884,5.931291850741884,1,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,8,13,2,1,355,363536.2676713583,-28234.22259782259,203993.500329998,0,965.5253738222993 -6305,7807,14174,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-925.4727725470211,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,13.44607612091921,0,128.7720995116888,0,1,1,0,0,0,48.68,25.96,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,505,-97641.63268352822,0,0,0,988.0157827750351 -6306,7808,14175,-9,-9,-9,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-812.4815167439965,-9,-9,-9,2019,24,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,12.47,67.26000000000001,-9,-9,3.333333333333333,1,1,0,0,3,12,1,0,876,0,0,0,0,479.3372618642196 -6307,7809,14176,14177,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.896036533154241,9.011369912453079,0,9,1,-74.67579259593204,0,2,2,2019,16,4,40,43,1,4,0,22.95669785119676,22.95669785119676,0,0,0,0,0,0,0,0,4.568012289074495,0,44.93,54.77,52,54.51,3.333333333333333,1,1,0,0,10,7,5,1,1042.5,534483.9105862889,174234.4595157509,405790.412874848,0,3019.202789985415 -6307,7809,14177,14176,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.13484474944782,7.35397130543138,0,9,-1,23.32070234573357,0,2,2,2019,0,0,20,20,1,0,0,8.846316809303493,8.846316809303493,0,0,0,0,0,0,0,0,2.258430423225624,0,52,54.51,44.93,54.77,8.333333333333334,1,1,0,0,9,7,5,1,1042.5,534483.9105862889,174234.4595157509,405790.412874848,0,3019.202789985415 -6307,7810,14178,-9,14177,14176,1,0,21,0,0,0,1,1,1,0,4,7.528673114894439,7.821451031032783,0,0,0,-916.2540133347558,-9,2,2,2019,19,7,34,0,1,7,1,10.00354592925023,10.00354592925023,0,0,0,0,0,0,0,0,0,0,33.2,63.27,-9,-9,6.666666666666667,1,1,0,0,5,7,3,1,146,-142889.929216696,127652.5170211066,0,0,1236.221624071623 -6308,7811,14179,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,8.547329725090989,8.683153916180375,0,0,0,-989.5117353006992,0,-9,-9,2019,23,10,50,50,1,10,0,12.44574040716934,12.44574040716934,0,0,0,0,0,0,0,0,0,0,12.89,63.58,-9,-9,3.333333333333333,1,1,0,0,7,8,5,0,894,-84329.91318858236,-156241.1992935077,0,0,2617.508324398805 -6309,7812,14180,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.805894139224,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,2,1,1,372,45415.44945903224,0,0,0,652.3824570696348 -6310,7813,14181,14182,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.140208999053636,6.925699827206604,0,6,-2,-13.04053177636192,0,3,3,2019,7,0,22,22,1,0,0,6.185495752939337,6.185495752939337,0,0,0,0,0,0,0,0,0,0,41.48,51.95,44.18,27.76,1.666666666666667,1,1,0,0,6,13,3,0,719.5,611200.2295222405,257745.2504148515,250593.5308816167,0,1783.410980131003 -6310,7813,14182,14181,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,7.784992824995119,7.898231245133035,0,6,2,-5.404215159793432,0,3,3,2019,12,1,40,48,1,1,0,7.375619728080782,7.375619728080782,0,0,0,0,0,0,0,0,1.834888437461622,0,44.18,27.76,41.48,51.95,8.333333333333334,1,1,0,0,6,13,3,0,719.5,611200.2295222405,257745.2504148515,250593.5308816167,0,1783.410980131003 -6310,7814,14183,-9,14181,14182,1,0,30,0,0,0,1,1,-9,0,3,8.394127488446811,8.253506762287159,0,0,0,-1021.1084803883,0,2,2,2019,9,0,36,36,1,0,1,11.91089828417684,11.91089828417684,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,13,4,0,400,371897.2247751463,34608.28122758708,204863.7278788417,134796.3209585754,1763.308382484385 -6310,7815,14184,-9,14181,14182,1,1,25,0,0,0,2,2,-9,0,3,7.988498720826557,7.208063822279398,0,0,0,-986.5906076904781,0,2,2,2019,21,9,45,0,1,9,1,7.997072026558616,7.997072026558616,0,0,0,0,0,0,0,0,0,0,44.1,39.27,-9,-9,5,1,1,0,0,0,13,3,0,2820,-11595.67351888647,0,0,0,678.2379149135727 -6311,7816,14185,14186,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.215240210543097,8.226690067985766,50,3,131.8385333457661,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.604715392740655,7.973057841629251,58.72,51.29,56.5,40.09,8.333333333333334,1,1,0,0,0,12,4,1,487,2017680.832843239,1137245.200930127,287325.8083391078,0,5095.360113393661 -6311,7816,14186,14185,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.902968278358094,8.053619551521471,50,-3,18.42869877941569,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.826335698163252,7.560422970698676,56.5,40.09,58.72,51.29,10,1,1,0,0,0,12,4,1,487,2017680.832843239,1137245.200930127,287325.8083391078,0,5095.360113393661 -6312,7817,14187,-9,14188,14190,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.9464295129686,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,4,1,516,185500.4960791858,26155.01592132681,272256.6366337044,154036.1885818046,2578.300704823881 -6312,7817,14188,14190,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.067353784861647,8.267813665678005,0,9,-3,95.59591909819368,0,2,2,2019,16,5,35,33,1,5,0,8.168270109138788,8.168270109138788,0,0,0,0,0,1,1,0,0,0,38.52,53.3,35.94,49.77,6.666666666666667,1,1,0,1,10,9,4,1,516,185500.4960791858,26155.01592132681,272256.6366337044,154036.1885818046,2578.300704823881 -6312,7817,14189,-9,14188,14190,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.0455989969353,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,516,185500.4960791858,26155.01592132681,272256.6366337044,154036.1885818046,2578.300704823881 -6312,7817,14190,14188,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.25950138612059,8.047388902853823,0,9,3,156.0150139281562,0,-9,-9,2019,14,3,36,38,1,3,0,11.78767115235124,11.78767115235124,0,0,0,0,0,1,1,0,0,0,35.94,49.77,38.52,53.3,5,1,1,0,0,9,9,4,1,516,185500.4960791858,26155.01592132681,272256.6366337044,154036.1885818046,2578.300704823881 -6313,7818,14191,14192,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,29,-10,-47.88160752357433,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,56.79,22.19,5,1,1,0,0,0,4,2,1,209.5,322072.76720654,163132.2492477735,216404.7374547627,0,1852.353658213171 -6313,7818,14192,14191,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.013461591318463,6.86532901793301,29,10,-16.08924857651445,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,86.35795196081681,0,0,1,1,0,6.454919873221684,6.992700959109992,56.79,22.19,55.96,49.93,5,1,1,0,0,5,4,2,1,209.5,322072.76720654,163132.2492477735,216404.7374547627,0,1852.353658213171 -6313,7819,14193,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1049.654647591071,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,1207,26672.98624851778,0,0,0,310.1924480010118 -6313,7820,14194,-9,14191,14192,1,1,25,0,0,0,2,2,-9,0,4,7.970458881317811,8.068276002676166,0,0,0,-975.2223981734809,0,2,3,2019,11,0,43,41,1,0,0,9.193380932659446,9.193380932659446,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,2484,-28892.0631746072,0,0,0,1311.881698969222 -6314,7821,14195,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.497850756762,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,43.12,58.55,-9,-9,10,1,1,0,0,0,8,1,1,1287,486272.7279196533,0,312771.7382123784,0,846.84053050459 -6315,7822,14196,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.021069069851146,8.230787041194425,0,0,0,-895.3788247540678,0,1,-9,2019,12,0,40,43,1,0,0,9.486511080817113,9.486511080817113,0,0,0,0,0,1,1,0,2.837656759782046,0,40.89,51.69,-9,-9,5,1,1,0,1,10,8,4,0,363,179670.0457872217,0,0,0,1197.30841166261 -6316,7823,14197,14198,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.340733406396319,7.645504425270172,0,11,-1,49.43476573441814,0,3,3,2019,12,0,24,12,1,0,0,10.5873446961127,10.5873446961127,0,0,0,0,7,0,0,0,0,0,46.62,44.58,57.33,53.46,6.666666666666667,1,1,0,0,12,12,4,1,730,1199095.005631257,1117184.294516272,68744.27554894595,0,2330.902784317305 -6316,7823,14198,14197,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.803748625811005,8.821232805299299,0,11,1,130.7339759834082,0,3,3,2019,8,0,38,38,1,0,0,14.98784894140887,14.98784894140887,0,0,0,0,0,0,0,0,.659861213150104,0,57.33,53.46,46.62,44.58,8.333333333333334,1,1,0,0,12,12,4,1,730,1199095.005631257,1117184.294516272,68744.27554894595,0,2330.902784317305 -6317,7824,14199,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,4.219376562851434,4.04389248773277,0,0,-939.7430669227537,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.808101181083181,0,50.33799589867343,0,1,1,0,0,4.100352387401513,54.56,22.12,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,207,0,0,0,0,1347.512882147855 -6317,7825,14200,-9,14199,-9,1,0,59,0,0,0,2,2,-9,1,3,6.973547321261457,6.772546254234109,0,0,0,-933.5628563757106,0,2,2,2019,7,0,12,16,1,0,0,11.7091098608497,11.7091098608497,0,0,0,0,7,1,1,0,0,0,60.89,42.24,-9,-9,10,1,1,0,0,8,12,2,1,293,139010.4829462835,0,130779.8397462969,0,717.3239129657803 -6318,7826,14201,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,0,0,-915.3171252323119,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.55,44.43,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,573,87809.62437427507,0,0,0,756.0282757887639 -6318,7827,14202,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,7.692334486698607,7.992427206293682,0,0,0,-1068.691122639371,0,-9,-9,2019,3,1,40,40,1,1,0,8.052513923967787,8.052513923967787,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,12,4,0,201,73406.26084090921,119111.4062872705,0,0,865.1652816785083 -6318,7828,14203,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.210916196421418,7.466271125069699,0,0,0,-982.0378655275714,0,-9,-9,2019,12,0,25,30,1,2,0,8.473739591590626,8.473739591590626,0,0,0,0,2,1,1,0,0,0,45,59,-9,-9,5,1,1,0,0,5,12,3,0,1174,53634.17855602983,0,0,0,663.860040296109 -6319,7829,14204,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1001.773162671145,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.35,16.75,-9,-9,5,1,1,0,0,0,2,1,0,400,-70455.81631145928,-95145.58678083503,0,0,1338.02735033874 -6320,7830,14205,-9,14207,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-976.5673878700896,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.75,60.7,-9,-9,5,1,1,0,0,0,12,3,0,559.3333333333334,209.4831572922946,60362.2031227955,0,0,2276.930674536398 -6320,7830,14206,-9,14207,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1105.117938732052,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,53.85,-9,-9,5,1,1,0,0,0,12,3,0,559.3333333333334,209.4831572922946,60362.2031227955,0,0,2276.930674536398 -6320,7830,14207,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.666331931822181,7.686857026492986,5.78771926646815,0,0,-996.1120418160699,0,3,3,2019,10,0,34,47,1,0,0,6.617007916030086,6.617007916030086,0,0,0,0,0,1,1,0,5.508238442879978,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,1,8,12,3,0,559.3333333333334,209.4831572922946,60362.2031227955,0,0,2276.930674536398 -6320,7831,14208,-9,14207,-9,1,1,24,0,0,0,1,1,1,0,4,6.710952071530961,6.488666588711357,0,0,0,-884.5137183104972,-9,2,2,2019,26,10,32,0,1,10,1,2.848150260367163,2.848150260367163,0,0,0,0,0,1,1,0,0,0,25.09,61.36,-9,-9,3.333333333333333,1,1,0,0,3,12,2,0,251,-72572.64932992074,0,0,0,-195.7183600482348 -6320,7832,14209,-9,14207,-9,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1043.205400216337,-9,2,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.49,40.63,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,178,-32376.42825716171,0,0,0,0 -6321,7833,14210,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.946081992835495,9.189156187163398,0,0,0,-1032.940403158078,0,-9,-9,2019,8,0,50,35,1,0,0,17.06487652350095,17.06487652350095,0,0,0,0,0,0,0,0,7.412004549652766,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,524,382370.3715826452,61619.83649084499,263590.6296104867,90441.49327027844,3307.128948795846 -6322,7834,14211,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.733934749695031,6.718525902098812,0,0,-1054.445692660824,0,2,2,2019,28,12,0,0,4,12,0,0,0,1,0,6.625007308177823,0,0,1,1,0,1.226078868064567,6.519742206740639,37.41,20.63,-9,-9,5,1,1,0,0,4,9,2,1,2610,193237.7466675779,87424.11153418812,72981.74731007204,0,855.4791704754265 -6323,7835,14212,-9,14215,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.966116610534,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,597.25,0,0,0,0,1614.129934992078 -6323,7835,14213,-9,14215,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.846142658378,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,597.25,0,0,0,0,1614.129934992078 -6323,7835,14214,-9,14215,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.9882550177248,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.5283464320079556,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,597.25,0,0,0,0,1614.129934992078 -6323,7835,14215,-9,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,0,0,0,0,0,-832.344813586831,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,597.25,0,0,0,0,1614.129934992078 -6324,7836,14216,-9,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.315863398322259,8.612434135991416,7.397947821829517,0,0,-951.0846551064435,0,2,2,2019,35,12,35,45,1,12,0,13.28120522844329,13.28120522844329,0,0,0,0,0,1,1,0,8.247182102015945,0,13.62,62.89,-9,-9,1.666666666666667,1,1,0,1,9,9,4,1,2634.5,471416.823121049,80143.45660152857,466552.9184151185,84117.0259891686,2942.806684661683 -6324,7836,14217,-9,14216,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.874617528989,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,2634.5,471416.823121049,80143.45660152857,466552.9184151185,84117.0259891686,2942.806684661683 -6325,7837,14218,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-986.2776845731171,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,3.077298790615599,2.304865590023681,0,0,1,1,0,0,0,39.97,55.56,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,1003,-100592.1964681008,0,0,0,619.1555947294403 -6326,7838,14219,14220,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,6.885821918962839,6.947952671994359,6,-1,76.93789159630802,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,4.048664041727334,6.434990133266076,37.77,45.33,31.91,39.87,3.333333333333333,1,1,0,0,5,11,3,1,1992,-37881.77069283828,144266.8276373804,0,0,2210.058049070403 -6326,7838,14220,14219,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,7.989314875041324,8.074775361268298,6,1,149.137009604976,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,5.363971950760046,8.216625009194209,31.91,39.87,37.77,45.33,5,1,1,0,0,1,11,3,1,1992,-37881.77069283828,144266.8276373804,0,0,2210.058049070403 -6326,7839,14221,-9,14219,14220,1,0,29,0,0,0,1,1,-9,0,4,8.135470962768379,8.040897132881007,0,0,0,-1036.763997806053,0,1,2,2019,9,0,37,37,1,0,0,9.412605708015143,9.412605708015143,0,0,0,0,0,0,0,0,0,0,42.81,53.21,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,233,52961.43702387463,33752.7302112979,0,0,1021.796793690062 -6326,7840,14222,-9,14219,14220,1,0,34,0,0,0,1,1,-9,0,4,8.713568469169477,8.632553502773444,0,0,0,-1090.966400877398,-9,1,2,2019,13,2,37,0,1,2,0,16.20478488305793,16.20478488305793,0,0,0,0,0,0,0,0,0,0,55.41,31.43,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,1362,102516.6400857309,-37734.22788700629,94534.52407004734,57784.24166722358,2085.015069198677 -6327,7841,14223,-9,-9,-9,1,1,22,0,1,0,2,2,0,0,5,0,0,0,0,0,-883.973357508095,-9,2,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,8.333333333333334,2,3,0,0,2,1,1,0,367,-203091.810055237,0,0,0,-372.3560134873829 -6328,7842,14224,14227,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.84691849819159,8.835885653343885,0,9,-2,71.5271834227331,0,3,3,2019,9,0,38,43,1,0,0,23.0074485662949,23.0074485662949,0,0,0,0,0,1,1,0,0,0,56.77,52.22,57.16,56.15,10,1,1,0,0,10,9,5,1,563.25,2227054.415760799,1548193.069022176,557520.6481795573,143232.4427852069,5665.383789587344 -6328,7842,14225,-9,14227,14224,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1054.604206408484,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,563.25,2227054.415760799,1548193.069022176,557520.6481795573,143232.4427852069,5665.383789587344 -6328,7842,14226,-9,14227,14224,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1042.069833501337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,563.25,2227054.415760799,1548193.069022176,557520.6481795573,143232.4427852069,5665.383789587344 -6328,7842,14227,14224,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.974092574932675,8.782058079366701,6.148671548186764,9,2,11.84414876127219,0,3,3,2019,10,0,38,43,1,0,0,22.84327220072991,22.84327220072991,0,0,0,0,0,1,1,0,6.155996173666089,0,57.16,56.15,56.77,52.22,10,1,1,0,0,10,9,5,1,563.25,2227054.415760799,1548193.069022176,557520.6481795573,143232.4427852069,5665.383789587344 -6329,7843,14228,14229,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.887181600517113,6.304294181925938,7,-12,56.6221325368232,0,2,1,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.882552969107103,0,39.52,32.34,51.82,42.07,3.333333333333333,1,1,0,0,0,1,3,1,779.5,808735.3556075825,537100.6577141015,231354.3661306487,0,3952.811570188409 -6329,7843,14229,14228,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,7.984681662783207,8.024159340151497,7,12,-74.27975474963364,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,2.721323873128954,0,31.74378940855096,0,1,1,0,6.08295255655114,7.841804140756936,51.82,42.07,39.52,32.34,8.333333333333334,1,1,0,0,0,1,3,1,779.5,808735.3556075825,537100.6577141015,231354.3661306487,0,3952.811570188409 -6330,7844,14230,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,2.890332062946909,2.91694296690152,0,0,-1075.121242841454,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,3.411000459042842,44.34,44.89,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,353,99869.70396342225,0,0,0,2086.494293773098 -6331,7845,14231,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.130827898562698,7.964984214543644,0,0,0,-962.6368544846075,0,2,1,2019,8,1,35,34,1,1,0,11.45000530651245,11.45000530651245,0,0,0,0,0,0,0,0,4.095808037215422,0,42.93,54.5,-9,-9,5,1,1,0,0,8,9,4,1,247,332759.1527922363,135132.6656122248,157757.9430113069,107043.547646302,1326.28930766845 -6332,7846,14232,14233,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.209889959825194,9.477201926362934,0,10,0,7.421308176873776,0,-9,-9,2019,6,0,40,40,1,0,0,36.93775904684161,36.93775904684161,0,0,0,0,0,0,0,0,7.98649251166383,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,12,9,5,1,244,1227397.902236003,225019.2060145731,504106.7551960761,0,9450.830584174193 -6332,7846,14233,14232,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.284876824431848,9.431977680742076,6.386135735305,20,0,3.199307497708747,0,1,2,2019,5,1,16,20,1,1,0,72.54303972491466,72.54303972491466,0,0,0,0,5.48,0,0,0,7.793452170656749,6.439839163100161,62.39,56.71,57.16,56.15,10,1,1,0,0,12,9,5,1,244,1227397.902236003,225019.2060145731,504106.7551960761,0,9450.830584174193 -6333,7847,14234,14235,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,34,1,-33.82689501684963,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.496083994952454,0,61.12,51.57,36.27,59.32,8.333333333333334,1,1,0,0,8,4,4,1,384,394282.5483051294,197446.4813765718,191391.6699528512,77076.20071920977,2118.637501475138 -6333,7847,14235,14234,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.809087237324611,8.20762083423462,8.367813493637565,8,-1,113.2642660030575,0,-9,-9,2019,19,5,24,32,1,5,0,10.30528274667163,10.30528274667163,0,0,0,0,2,0,0,0,0,8.446870935434939,36.27,59.32,61.12,51.57,1.666666666666667,1,1,0,0,9,4,4,1,384,394282.5483051294,197446.4813765718,191391.6699528512,77076.20071920977,2118.637501475138 -6334,7848,14236,-9,-9,-9,1,1,23,0,0,1,2,0,-9,1,3,0,0,0,0,0,-1034.571893616578,-9,-9,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,20.64,59.89,-9,-9,3.333333333333333,1,1,0,0,1,12,1,0,187,8821.756911868119,0,0,0,893.4698204563628 -6335,7849,14237,14238,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.91789737936328,8.821491335995329,0,8,2,102.8433801749968,0,-9,-9,2019,11,1,60,56,1,1,0,13.99324274333824,13.99324274333824,0,0,0,0,0,0,0,0,7.635740949823981,0,52.23,55.6,43.92,31.59,8.333333333333334,1,1,0,0,10,12,5,1,435.5,111483.5529582058,117997.1848828268,106058.9253281003,127705.2440997367,4740.129628720962 -6335,7849,14238,14237,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.973065770302768,8.265344300044731,0,8,-2,-118.7188734093201,0,2,2,2019,14,2,20,20,1,2,0,19.91796140449212,19.91796140449212,0,0,0,0,0,0,0,0,0,0,43.92,31.59,52.23,55.6,6.666666666666667,1,1,0,0,10,12,5,1,435.5,111483.5529582058,117997.1848828268,106058.9253281003,127705.2440997367,4740.129628720962 -6336,7850,14239,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.095666617487364,8.21493784889082,0,0,0,-1003.105079271431,0,2,2,2019,27,10,78,0,1,10,0,5.489768512048914,5.489768512048914,0,0,0,0,0,0,0,0,0,0,31.88,40.57,-9,-9,3.333333333333333,1,1,0,0,7,6,4,0,286,334448.1103039349,121508.1963858209,152479.5306419836,7890.589403160118,1815.698731589631 -6336,7851,14240,-9,14239,-9,1,0,21,0,0,1,2,0,0,0,3,0,5.010876221443095,5.340068518014529,0,0,-966.3814433469154,-9,1,2,2019,26,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,5.590983599229923,0,19.88,65.48999999999999,-9,-9,1.666666666666667,1,1,0,1,1,6,2,0,630,198980.3080328134,0,0,0,565.506253561182 -6336,7852,14241,-9,14239,-9,1,0,19,0,0,0,1,1,1,0,3,5.336218760523368,5.882389171026016,5.215730533133703,0,0,-899.5274535169289,-9,2,-9,2019,12,1,25,0,1,1,1,.8544688804950048,.8544688804950048,0,0,0,0,0,0,0,0,4.789444736913302,0,31.09,56.12,-9,-9,8.333333333333334,1,1,0,0,1,6,2,0,1223,131497.7817206819,0,0,0,897.1235731690261 -6337,7853,14242,14244,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.831129989449331,7.782224944123707,0,8,1,56.78765136923159,0,2,1,2019,10,0,35,28,1,0,0,9.21968760665686,9.21968760665686,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.05,54.52,8.333333333333334,1,1,0,0,8,10,5,1,685.5,386873.2199364817,111042.7038894987,387671.5960756573,224849.3396385959,4196.881771178298 -6337,7853,14243,-9,14242,14244,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.013493240801,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,685.5,386873.2199364817,111042.7038894987,387671.5960756573,224849.3396385959,4196.881771178298 -6337,7853,14244,14242,-9,-9,1,1,36,0,2,0,1,1,-9,0,5,9.123937101530144,9.205585082084308,0,8,-1,-18.64022159663925,0,2,3,2019,7,0,40,40,1,0,0,28.77764601892301,28.77764601892301,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,685.5,386873.2199364817,111042.7038894987,387671.5960756573,224849.3396385959,4196.881771178298 -6337,7853,14245,-9,14242,14244,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.8330700028425,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,685.5,386873.2199364817,111042.7038894987,387671.5960756573,224849.3396385959,4196.881771178298 -6338,7854,14246,14247,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.939004312792882,7.797823067776602,0,23,-2,64.58505803937551,0,3,2,2019,8,0,30,30,1,0,0,7.464814929626657,7.464814929626657,0,0,0,0,0,1,1,0,0,0,46.5,58.26,55.21,51.9,5,2,3,0,0,10,5,3,1,847,654986.4555592508,166975.3920631808,233375.736567463,0,2243.668626842494 -6338,7854,14247,14246,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,6.772505339529244,7.06963234832078,0,23,2,-158.4540124681805,0,-9,-9,2019,10,0,30,50,1,0,0,4.40720762767771,4.40720762767771,0,0,0,0,0,1,1,0,0,0,55.21,51.9,46.5,58.26,5,2,3,0,0,11,5,3,1,847,654986.4555592508,166975.3920631808,233375.736567463,0,2243.668626842494 -6338,7855,14248,-9,14246,14247,1,1,25,0,1,0,1,1,-9,0,3,8.025342799504731,8.187110876015382,0,0,0,-1078.479349086989,0,2,2,2019,8,0,37,37,1,0,1,10.41997859284847,10.41997859284847,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,2,3,0,0,7,5,4,1,173,-58361.7023354733,138943.6032075933,0,0,1542.520901268449 -6338,7856,14249,-9,14246,14247,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1007.280184804954,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,529,88328.01154926493,0,0,0,0 -6339,7857,14250,14251,-9,-9,1,0,38,0,0,0,3,3,-9,1,4,0,0,0,7,-2,129.3995644206429,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,3,0,885.5,574915.4737202544,-45091.79636979754,440009.2851879112,0,1839.742096322118 -6339,7857,14251,14250,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.937341329342998,7.965958371125513,0,7,2,164.1494515185174,0,-9,-9,2019,9,0,40,30,1,1,0,7.306807207447879,7.306807207447879,0,0,0,0,0,1,1,0,2.472709521556978,0,51,56,49,56,8,1,1,0,0,1,5,3,0,885.5,574915.4737202544,-45091.79636979754,440009.2851879112,0,1839.742096322118 -6340,7858,14252,14253,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.694762547738945,4.829062387548547,9,4,-108.8592054101573,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,43.90940373920296,0,0,1,1,0,4.070224563307663,4.793740564384039,52.26,31.65,60.98,30.25,0,1,1,0,0,0,12,3,1,607,-24375.50492702334,29946.0763648479,0,0,1184.544531758133 -6340,7858,14253,14252,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.389767743019606,7.799226528060939,0,9,-4,33.36462202922359,0,3,2,2019,8,0,25,25,1,0,0,9.074025006284074,9.074025006284074,0,0,0,0,0,1,1,0,.7985866879231496,0,60.98,30.25,52.26,31.65,8.333333333333334,1,1,0,0,10,12,3,1,607,-24375.50492702334,29946.0763648479,0,0,1184.544531758133 -6341,7859,14254,14255,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.369912146568285,7.274701340884117,57,1,48.34632402515,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.614219988930708,7.375309167381862,57.66,39.54,58.47,44.69,8.333333333333334,1,1,0,0,0,9,3,1,308,1693760.877008071,708520.0526728495,579375.9402631785,0,3311.498040015642 -6341,7859,14255,14254,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.367274403587001,7.585169395380213,57,-1,17.20148003331841,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.8980759676870227,7.324778069785768,58.47,44.69,57.66,39.54,8.333333333333334,1,1,0,0,0,9,3,1,308,1693760.877008071,708520.0526728495,579375.9402631785,0,3311.498040015642 -6342,7860,14256,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.258970138955606,8.448204076467634,0,0,0,-942.7053554175042,0,2,2,2019,8,0,70,50,1,0,0,8.308012220297206,8.308012220297206,0,0,0,0,0,0,0,0,0,0,47.78,52.35,-9,-9,8.333333333333334,1,1,0,0,11,4,4,0,2182,561247.6645980388,-57823.34316320065,261081.9526038221,0,1384.625070905203 -6343,7861,14257,14258,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.80999660697074,7.372631495641199,44,-2,-2.591700331414613,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.301839598140202,6.690303055980428,54.2,57.49,52,48,6.666666666666667,1,1,0,0,1,1,2,1,304.5,523916.4524981354,344348.5653115585,125027.8566040397,0,3279.748744263155 -6343,7861,14258,14257,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.547965499048455,5.48476304184088,7,2,-99.72841867946116,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.150073208133115,5.698532115347085,52,48,54.2,57.49,7,1,1,0,0,0,1,2,1,304.5,523916.4524981354,344348.5653115585,125027.8566040397,0,3279.748744263155 -6344,7862,14259,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.943842973726994,8.660567293183892,0,0,0,-965.941289348669,0,-9,-9,2019,6,2,60,46,1,2,0,12.79895617080466,12.79895617080466,0,0,0,0,0,1,1,0,6.022674888484603,0,48.62,34.42,-9,-9,10,1,1,0,0,8,2,5,1,615,215227.1114315937,-16146.42895209994,136563.0485091922,38711.00850647598,2792.308259641523 -6345,7863,14260,14261,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.737441152887518,8.535077160653673,0,6,2,-95.37364888535521,0,2,1,2019,10,0,43,43,1,1,0,19.70325640670651,19.70325640670651,0,0,0,0,0,1,1,0,0,0,51,56,54.52,45.07,7,1,1,0,0,1,4,4,0,430.3333333333333,54171.59429614364,-20493.08888484128,157406.2824495301,104143.1018308878,3380.984305109645 -6345,7863,14261,14260,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,6.951373638711364,6.989418128680827,0,6,-2,-161.7052736635599,0,2,2,2019,8,0,16,16,1,0,0,6.515299735830283,6.515299735830283,0,0,0,0,7,1,1,0,0,0,54.52,45.07,51,56,8.333333333333334,1,1,0,0,6,4,4,0,430.3333333333333,54171.59429614364,-20493.08888484128,157406.2824495301,104143.1018308878,3380.984305109645 -6345,7863,14262,-9,14261,14260,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.331774602799,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,430.3333333333333,54171.59429614364,-20493.08888484128,157406.2824495301,104143.1018308878,3380.984305109645 -6346,7864,14263,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.117021527830238,8.771279570854203,6.295129084750529,0,0,-917.1043579319387,0,2,2,2019,10,0,42,37,1,0,0,6.891628548341693,6.891628548341693,0,0,0,0,0,0,0,0,0,6.515146256411362,63.17,32.94,-9,-9,5,1,1,0,0,10,7,4,1,594,811714.9563667704,587232.7239627203,210973.9534523621,29663.76818757953,2080.222155757631 -6347,7865,14264,-9,14266,14265,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.8782334958001,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,465548.2319682189,993.7298806686013,459374.3999662892,0,4513.230241187468 -6347,7865,14265,14266,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.974293937908678,8.939276073912016,0,20,0,74.80446666198714,0,2,2,2019,15,4,47,44,1,4,0,18.60867496416585,18.60867496416585,0,0,0,0,2,1,1,0,1.716738292625941,0,37.1,54.19,58.3,52.91,8.333333333333334,1,1,0,0,12,9,5,1,724,465548.2319682189,993.7298806686013,459374.3999662892,0,4513.230241187468 -6347,7865,14266,14265,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.72129883032577,8.965138291035812,0,20,0,14.17688050320611,0,2,3,2019,9,2,32,32,1,2,0,17.92054598929611,17.92054598929611,0,0,0,0,0,1,1,0,2.118990712775445,0,58.3,52.91,37.1,54.19,10,1,1,0,0,12,9,5,1,724,465548.2319682189,993.7298806686013,459374.3999662892,0,4513.230241187468 -6347,7865,14267,-9,14266,14265,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.6702451187314,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,465548.2319682189,993.7298806686013,459374.3999662892,0,4513.230241187468 -6348,7866,14268,14271,-9,-9,1,0,44,1,2,0,1,1,-9,0,4,9.309741905751761,8.957878755564829,0,14,-1,-49.00626018097913,-9,1,1,2019,8,0,40,0,1,0,0,32.34543216566423,32.34543216566423,0,0,0,0,0,0,0,0,0,0,48.14,49.45,54.2,57.49,6.666666666666667,4,2,0,0,11,9,5,1,404.5,549554.8960700136,213851.4494450206,735719.8300550233,460610.2573943243,7138.983441617501 -6348,7866,14269,-9,14268,14271,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.163223716618,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,404.5,549554.8960700136,213851.4494450206,735719.8300550233,460610.2573943243,7138.983441617501 -6348,7866,14270,-9,14268,14271,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.7576714869176,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,9,5,1,404.5,549554.8960700136,213851.4494450206,735719.8300550233,460610.2573943243,7138.983441617501 -6348,7866,14271,14268,-9,-9,1,1,45,1,2,0,1,1,-9,0,4,9.375687057743347,9.64686408269662,0,14,1,-34.8373342788974,0,2,2,2019,17,5,50,42,1,5,0,28.08709330029976,28.08709330029976,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.14,49.45,6.666666666666667,1,1,0,0,11,9,5,1,404.5,549554.8960700136,213851.4494450206,735719.8300550233,460610.2573943243,7138.983441617501 -6349,7867,14272,14273,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.412431782969954,8.793143326565028,0,4,10,89.39383841987284,0,3,-9,2019,8,0,38,43,1,0,0,13.85525848216212,13.85525848216212,0,0,0,0,0,1,1,0,6.919944651264547,0,52,54.51,57.19,37.4,10,1,1,0,0,9,2,5,1,925,451292.435786658,223983.4922640545,254226.9634753421,0,3889.079513181518 -6349,7867,14273,14272,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.142834936214021,7.853872639192441,0,4,-10,-34.06745808030367,0,-9,-9,2019,6,0,30,36,1,0,0,11.98026247173934,11.98026247173934,0,0,0,0,0,1,1,0,0,0,57.19,37.4,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,925,451292.435786658,223983.4922640545,254226.9634753421,0,3889.079513181518 -6349,7868,14274,-9,14273,14272,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.0350797573162,-9,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,5,2,1,1,191,0,0,0,0,0 -6350,7869,14275,-9,14276,14277,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.585361692762,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,790.5,54614.17626484351,36270.58647828164,232864.2639009085,154460.3520241577,4351.574392229037 -6350,7869,14276,14277,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.958988999705785,8.743591018469491,0,16,-2,-26.51027459407701,0,2,1,2019,15,4,52,48,1,4,0,18.59170315015205,18.59170315015205,0,0,0,0,0,1,1,0,0,0,31.06,65.34,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,790.5,54614.17626484351,36270.58647828164,232864.2639009085,154460.3520241577,4351.574392229037 -6350,7869,14277,14276,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.50320036570357,8.653589274109127,0,16,2,167.0774780949789,0,2,2,2019,7,0,37,42,1,0,0,14.82247843868766,14.82247843868766,0,0,0,0,0,1,1,0,.0560479536426954,0,46.16,58.62,31.06,65.34,8.333333333333334,1,1,0,0,13,6,5,1,790.5,54614.17626484351,36270.58647828164,232864.2639009085,154460.3520241577,4351.574392229037 -6350,7869,14278,-9,14276,14277,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.876908371562,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,790.5,54614.17626484351,36270.58647828164,232864.2639009085,154460.3520241577,4351.574392229037 -6351,7870,14279,14280,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.747007898437335,8.717331820436909,5.438533801765527,40,2,19.25150984077314,0,2,1,2019,10,0,4,7,1,0,0,169.0883625710366,169.0883625710366,0,0,0,0,7,0,0,0,6.880397393915952,0,54.07,49.4,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,581.5,1974021.944497809,292059.9437337068,1966470.084414539,313930.9082513023,8796.720686372406 -6351,7870,14280,14279,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.756408354440842,9.1828197575585,8.598792584447866,8,-2,129.9797521465813,0,-9,-9,2019,10,1,26,45,1,1,0,31.6587061758691,31.6587061758691,0,0,0,0,2,0,0,0,7.127653634501456,8.718120168878308,51.24,58.84,54.07,49.4,8.333333333333334,1,1,0,0,10,8,5,1,581.5,1974021.944497809,292059.9437337068,1966470.084414539,313930.9082513023,8796.720686372406 -6351,7871,14281,-9,14279,14280,1,1,27,0,0,0,1,1,-9,0,5,8.134352528306472,8.371131482604513,0,0,0,-1107.260890176229,0,1,1,2019,11,0,35,35,1,0,1,15.43749440923646,15.43749440923646,0,0,0,0,0,0,0,0,3.745434375332591,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,478,-115468.0108917412,59854.29181048876,0,0,2064.808239599193 -6352,7872,14282,14284,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,7.992751135955744,8.413677619260199,5.997317299420442,2,5,35.14122192650242,0,3,2,2019,9,0,50,50,1,0,0,8.589093898662183,8.589093898662183,0,0,0,0,0,1,1,0,8.957714391784084,0,50.05,55.41,43.38,62.58,5,1,1,0,0,8,10,4,1,335.3333333333333,269871.3784674795,184081.7877899328,205401.0707592061,0,5556.085411683132 -6352,7872,14283,-9,14284,14282,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.9659060142151,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,335.3333333333333,269871.3784674795,184081.7877899328,205401.0707592061,0,5556.085411683132 -6352,7872,14284,14282,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.928966344030174,8.076993049490033,5.810533744048501,2,-5,-20.77005522352548,0,-9,-9,2019,7,0,30,0,1,0,0,10.99617640980069,10.99617640980069,0,0,0,0,0,1,1,0,5.472922823069037,0,43.38,62.58,50.05,55.41,8.333333333333334,1,1,0,0,3,10,4,1,335.3333333333333,269871.3784674795,184081.7877899328,205401.0707592061,0,5556.085411683132 -6353,7873,14285,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.044297824625584,9.19597287755119,0,0,0,-992.5131127680887,0,2,2,2019,8,0,53,48,1,0,0,24.77407531576065,24.77407531576065,0,0,0,0,0,1,1,0,5.934532597130405,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,441,182884.1022511721,77949.47222083804,0,0,4143.379489304863 -6354,7874,14286,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.261300488303531,8.783069026569443,6.625453063942584,0,0,-1019.492502455749,0,3,3,2019,12,3,42,45,1,3,0,9.74125822144447,9.74125822144447,0,0,0,2.702690475664486,0,1,1,0,0,6.955646087806345,46.5,58.26,-9,-9,8.333333333333334,4,2,0,0,8,6,5,1,1833,389547.6002329437,458566.1428691702,86015.67594422842,50240.77759848141,2261.082548080627 -6354,7875,14287,-9,14286,-9,1,1,29,0,0,0,1,1,-9,0,4,8.791843648145448,8.606422064810786,0,0,0,-954.7363501495556,0,1,-9,2019,7,0,44,48,1,0,1,15.0856933898367,15.0856933898367,0,0,0,0,0,1,1,0,2.912288912765592,0,55.79,52.62,-9,-9,8.333333333333334,4,2,0,0,7,6,5,1,2476,-46244.5233977898,-3811.820433915239,0,0,1808.205489465242 -6354,7876,14288,-9,14286,-9,1,0,25,0,0,0,1,1,-9,0,2,7.993722138457692,8.246235991175588,0,0,0,-955.6146299641059,0,1,-9,2019,16,5,63,70,1,5,1,5.077149379241153,5.077149379241153,0,0,0,0,0,1,1,0,0,0,36.22,53.8,-9,-9,3.333333333333333,4,2,0,0,7,6,4,1,478,6921.824914900384,0,0,0,1173.557428049788 -6355,7877,14289,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,9.247742801305213,9.128974712674639,0,0,0,-1064.831708168296,0,1,3,2019,8,0,82,84,1,0,0,17.49647713021786,17.49647713021786,0,0,0,0,0,0,0,0,0,0,43.08,45.41,-9,-9,3.333333333333333,1,1,0,0,11,12,5,1,205,7367706.304971236,6991212.778815176,223416.273426467,0,3309.558167585177 -6356,7878,14290,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.604886454507867,7.923029445740951,0,0,0,-1027.947676331807,0,2,1,2019,15,3,35,5,1,3,0,8.280285838989354,8.280285838989354,0,0,0,0,0,0,0,0,6.201632539536601,0,50.04,49.76,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,501,992231.4502887179,79905.33520355741,396781.815795596,0,1306.527622011471 -6357,7879,14291,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.984112701296418,9.066524073236057,0,0,0,-1040.674703015578,0,3,3,2019,17,5,55,60,1,5,0,20.81949892377913,20.81949892377913,0,0,0,0,14.5,0,0,0,0,0,12.55,68.68000000000001,-9,-9,0,1,1,0,0,8,8,5,1,544,193424.8567141442,0,0,0,4388.308373723487 -6358,7880,14292,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.285767387916394,8.593650446211978,0,0,0,-945.8162225412127,0,3,-9,2019,20,8,37,37,1,8,0,15.65793077523031,15.65793077523031,0,0,0,0,0,0,0,0,3.137044749648815,0,36.54,36.28,-9,-9,5,1,1,0,0,9,4,5,1,1513,367623.3324141045,194003.97270918,147761.2190650363,39589.96319121832,2345.377072262645 -6359,7881,14293,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,3.209397016509378,3.205974752865161,0,0,-851.2956997327997,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,2.911627083743026,27.95,23.95,-9,-9,3.333333333333333,1,1,0,1,9,6,2,0,327,48387.54439711889,0,0,0,600.6951289921656 -6360,7882,14294,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,8.789781843921739,9.34802015217122,0,0,0,-1049.34980896303,0,2,3,2019,13,3,42,40,1,3,0,23.34446394217835,23.34446394217835,0,0,0,0,0,0,0,0,1.086699948322899,0,47.97,26.07,-9,-9,3.333333333333333,1,1,0,1,5,5,5,1,281,216483.3523707741,132215.7691540907,-53741.73475421125,4195.954638437632,3501.356589742191 -6361,7883,14295,-9,14296,14297,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.648510575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,0,376.75,331732.3006753115,36572.13428334284,493914.8786141856,152261.5524825077,5414.861155172413 -6361,7883,14296,14297,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,0,0,0,18,-4,-101.0553584429346,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.79,47.69,10,1,1,0,0,7,9,5,0,376.75,331732.3006753115,36572.13428334284,493914.8786141856,152261.5524825077,5414.861155172413 -6361,7883,14297,14296,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,9.906559945992552,9.504887125869967,0,18,4,-30.64130273208362,0,2,2,2019,11,0,50,51,1,0,0,45.35368756313889,45.35368756313889,0,0,0,0,0,1,1,0,3.110920707537427,0,48.79,47.69,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,0,376.75,331732.3006753115,36572.13428334284,493914.8786141856,152261.5524825077,5414.861155172413 -6361,7883,14298,-9,14296,14297,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.495639791173,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,376.75,331732.3006753115,36572.13428334284,493914.8786141856,152261.5524825077,5414.861155172413 -6362,7884,14299,14300,-9,-9,1,1,41,0,1,0,1,1,-9,0,2,8.649909366800483,8.806577232212144,0,7,0,103.7217329679419,0,3,2,2019,8,1,43,41,1,1,0,18.47191036104799,18.47191036104799,0,0,0,0,0,1,1,0,7.056514246670429,0,52.41,45.2,59.47,41.45,8.333333333333334,1,1,0,0,7,4,4,1,1667.666666666667,460795.3023199082,193121.3310195715,267685.9847412627,19077.96000317006,3835.058189943063 -6362,7884,14300,14299,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,7.881821936673019,8.010558270838674,0,7,0,24.59318509431714,0,1,1,2019,6,0,26,22,1,0,0,9.647142776291309,9.647142776291309,0,0,0,0,0,1,1,0,0,0,59.47,41.45,52.41,45.2,8.333333333333334,1,1,0,0,9,4,4,1,1667.666666666667,460795.3023199082,193121.3310195715,267685.9847412627,19077.96000317006,3835.058189943063 -6362,7884,14301,-9,14300,14299,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.961272062206,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1667.666666666667,460795.3023199082,193121.3310195715,267685.9847412627,19077.96000317006,3835.058189943063 -6363,7885,14302,14303,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.672896622358475,7.810605120888455,0,3,-4,77.64920515302755,0,-9,-9,2019,20,7,25,30,1,7,0,8.71103629212074,8.71103629212074,0,0,0,0,0,0,0,0,0,0,21.47,59.29,27.57,58.92,3.333333333333333,1,1,0,0,9,9,4,1,196,314105.3575918238,98558.09780230124,359340.5791550348,203985.4653357498,3039.419058232586 -6363,7885,14303,14302,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.123343103690413,8.245937298954237,0,3,4,77.49816849973763,0,2,2,2019,20,8,38,38,1,8,0,10.59835731824648,10.59835731824648,0,0,0,0,0,0,0,0,3.453994903331019,0,27.57,58.92,21.47,59.29,8.333333333333334,1,1,0,0,7,9,4,1,196,314105.3575918238,98558.09780230124,359340.5791550348,203985.4653357498,3039.419058232586 -6364,7886,14304,-9,14306,14305,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1045.840614939,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.3954814443623809,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1085,189416.2166145227,29047.35045898284,190045.5214068404,134042.3229196301,3984.982903724845 -6364,7886,14305,14306,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.0649000403783,9.219372413952112,0,22,-2,-13.06065863554545,0,2,1,2019,6,0,35,35,1,0,0,34.95910887214686,34.95910887214686,0,0,0,0,0,1,1,0,5.836081347065976,0,57.16,56.15,59.54,46.05,8.333333333333334,1,1,0,0,9,12,4,1,1085,189416.2166145227,29047.35045898284,190045.5214068404,134042.3229196301,3984.982903724845 -6364,7886,14306,14305,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,0,0,0,25,2,76.83095019206642,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,7.785762502842542,0,59.54,46.05,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,1085,189416.2166145227,29047.35045898284,190045.5214068404,134042.3229196301,3984.982903724845 -6364,7886,14307,-9,14306,14305,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-884.4499326362469,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,4,1,1085,189416.2166145227,29047.35045898284,190045.5214068404,134042.3229196301,3984.982903724845 -6365,7887,14308,14309,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.410760393217666,9.332827921371278,0,9,-4,-33.53997771479561,0,2,2,2019,10,0,60,60,1,0,0,21.7805830425835,21.7805830425835,0,0,0,0,7,0,0,0,0,0,58.47,50.22,52.34,56.95,8.333333333333334,1,1,0,0,7,6,5,1,431.5,188343.9861094158,131574.7253315877,124244.0299340977,67572.95578309112,4612.637401041235 -6365,7887,14309,14308,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.516098553900995,7.250308990836094,0,9,4,28.89078809958911,0,2,2,2019,9,0,26,23,1,0,0,8.25523885876089,8.25523885876089,0,0,0,0,7,0,0,0,2.717360709143078,0,52.34,56.95,58.47,50.22,8.333333333333334,1,1,0,0,8,6,5,1,431.5,188343.9861094158,131574.7253315877,124244.0299340977,67572.95578309112,4612.637401041235 -6366,7888,14310,14312,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.81288410707786,9.031600951918483,0,15,-5,-48.24681509593833,0,3,2,2019,12,1,24,25,1,1,0,30.46423023365035,30.46423023365035,0,0,0,0,0,1,1,0,3.988828445854218,0,45.32,61.53,48.77,60.16,8.333333333333334,1,1,0,0,9,10,5,1,891.75,908848.8724187256,719914.732424068,256147.0977394393,107754.3270366867,5234.449378676444 -6366,7888,14311,-9,14310,14312,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.7607771595596,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,891.75,908848.8724187256,719914.732424068,256147.0977394393,107754.3270366867,5234.449378676444 -6366,7888,14312,14310,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.804423728836154,9.071803776399138,4.948667546280608,8,5,19.17788425252196,0,-9,-9,2019,11,1,40,43,1,1,0,19.9162418354543,19.9162418354543,0,0,0,0,0,1,1,0,5.513884537013726,0,48.77,60.16,45.32,61.53,6.666666666666667,1,1,0,0,9,10,5,1,891.75,908848.8724187256,719914.732424068,256147.0977394393,107754.3270366867,5234.449378676444 -6366,7888,14313,-9,14310,14312,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.110133987019,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,891.75,908848.8724187256,719914.732424068,256147.0977394393,107754.3270366867,5234.449378676444 -6367,7889,14314,14315,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.143416713189064,8.160567495921155,9,7,-69.11826657599408,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.971151767405481,64.47,51.45,42.17,14.78,8.333333333333334,1,1,0,0,3,10,3,1,227,1278770.821736291,643604.6964696962,377163.9107634075,0,3414.029641588027 -6367,7889,14315,14314,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.476209635484453,6.519214977290509,9,-7,33.65774858682986,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.444819187257053,42.17,14.78,64.47,51.45,5,1,1,0,0,8,10,3,1,227,1278770.821736291,643604.6964696962,377163.9107634075,0,3414.029641588027 -6368,7890,14316,14318,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.740495258734327,8.870143434390435,0,8,0,-60.73110824160601,0,-9,-9,2019,18,6,70,50,1,6,0,13.11423078956843,13.11423078956843,0,0,0,0,0,0,0,0,0,0,35.56,56.36,55.73,53.98,3.333333333333333,1,1,0,0,6,4,5,1,958,288378.1450895863,78919.92347902829,246341.0634571758,123405.9829440479,5121.875829720067 -6368,7890,14317,-9,14318,14316,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.080687523436,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,958,288378.1450895863,78919.92347902829,246341.0634571758,123405.9829440479,5121.875829720067 -6368,7890,14318,14316,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,9.155031050128805,9.131448514680997,0,9,0,48.54274575730897,0,2,1,2019,13,3,46,45,1,3,0,21.68279663275619,21.68279663275619,0,0,0,0,0,0,0,0,2.822377363968477,0,55.73,53.98,35.56,56.36,8.333333333333334,2,3,0,0,10,4,5,1,958,288378.1450895863,78919.92347902829,246341.0634571758,123405.9829440479,5121.875829720067 -6369,7891,14319,14320,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.131437506051336,8.05015760639467,0,19,1,-3.923254000681259,0,3,3,2019,9,1,40,38,1,1,0,7.743563917385754,7.743563917385754,0,0,0,0,0,0,0,0,3.892698359000508,0,52.82,53.97,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,1,726.5,459246.99016877,239048.3636413684,262540.3564669093,124712.6583769526,4275.952350267367 -6369,7891,14320,14319,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.446112514342168,9.008313644319779,0,19,-1,-14.60632312617343,0,2,2,2019,7,0,39,40,1,0,0,36.38612991212305,36.38612991212305,0,0,0,0,0,0,0,0,3.259537862252754,0,57.06,57.76,52.82,53.97,10,1,1,0,0,9,5,5,1,726.5,459246.99016877,239048.3636413684,262540.3564669093,124712.6583769526,4275.952350267367 -6370,7892,14321,14323,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,0,9.053608951964158,9.120901036438891,32,1,-35.49225921316414,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,10.5768774660157,9.479242883926361,56.35,51,61.89,37.67,10,1,1,0,0,9,9,5,1,1837.333333333333,913970.5353524842,93824.56375886952,964834.056620079,179287.7799474806,15684.13125403521 -6370,7892,14322,-9,14323,14321,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-851.0804818658655,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1837.333333333333,913970.5353524842,93824.56375886952,964834.056620079,179287.7799474806,15684.13125403521 -6370,7892,14323,14321,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.231954633623344,7.902208687835549,0,32,-1,129.9337236015157,0,2,2,2019,10,1,5,0,1,1,0,85.72125037689463,85.72125037689463,0,0,0,0,71.5,1,1,0,2.377238481468794,0,61.89,37.67,56.35,51,8.333333333333334,1,1,0,0,9,9,5,1,1837.333333333333,913970.5353524842,93824.56375886952,964834.056620079,179287.7799474806,15684.13125403521 -6370,7893,14324,-9,14323,14321,1,1,23,0,1,0,1,1,-9,0,5,0,6.15778452576237,6.146446306527915,0,0,-921.6137913943621,1,2,1,2019,5,0,0,40,2,0,1,0,0,0,0,0,0,0,1,1,0,6.138499009126773,0,48.18,61.8,-9,-9,0,1,1,0,0,3,9,2,1,512,102615.1685685406,0,0,0,564.8052783811547 -6370,7894,14325,-9,14323,14321,1,1,21,0,1,0,2,2,0,0,2,0,5.823073728382479,5.92898787334388,0,0,-952.2463085008894,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,5.610517136366222,0,45.4,34.5,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,236,50083.58385972715,0,0,0,213.9879907644224 -6370,7895,14326,-9,14323,14321,1,1,18,0,1,1,2,0,0,0,4,0,5.947738087708364,5.864075019656099,0,0,-1078.445588989961,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.742476754839567,0,61.52,36.53,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,859,271918.2968984607,0,0,0,510.5372957398296 -6371,7896,14327,14328,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.903981365058289,6.867228195187392,0,10,14,-62.62641944417963,0,3,2,2019,7,0,50,56,1,0,0,2.97889999822801,2.97889999822801,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.31,62.86,8.333333333333334,1,1,0,0,10,10,5,1,367.5,2534262.050591488,1689806.831554288,731051.5857617249,0,3642.536578154495 -6371,7896,14328,14327,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.725840613859283,8.797572491717988,0,10,-14,82.76104228575194,0,2,2,2019,21,9,55,32,1,9,0,14.26043592615557,14.26043592615557,0,0,0,0,0,1,1,0,6.736295525309123,0,36.31,62.86,57.16,56.15,3.333333333333333,1,1,0,0,12,10,5,1,367.5,2534262.050591488,1689806.831554288,731051.5857617249,0,3642.536578154495 -6372,7897,14329,14330,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.551880183951377,7.026279563512966,8,-1,-63.95551773242296,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,6.744019987070529,26.3,40.84,30.59,36.36,3.333333333333333,1,1,0,1,5,11,3,1,568,1509652.815998571,883872.0605383634,510395.3761685129,0,3214.195982670523 -6372,7897,14330,14329,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.898999526871899,8.15383723011335,8,1,-65.410510011347,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,6.889776090066754,7.742167080562695,30.59,36.36,26.3,40.84,5,1,1,0,0,1,11,3,1,568,1509652.815998571,883872.0605383634,510395.3761685129,0,3214.195982670523 -6372,7898,14331,-9,14329,14330,1,0,31,0,0,0,1,1,-9,0,3,7.995370028415238,7.734734865701904,0,0,0,-1005.079154825646,0,1,2,2019,9,1,37,38,1,1,0,8.102071215852549,8.102071215852549,0,0,0,0,0,1,1,0,0,0,35.33,53.99,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,164,-74570.3099228697,-82312.16555915406,126939.9174904821,116657.5160316125,798.8378926023217 -6373,7899,14332,-9,14333,14334,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1055.342183416313,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,5,1,1337,932816.7797344347,718667.832793974,331921.4993386893,112517.7007705077,5469.39935914407 -6373,7899,14333,14334,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.646805701234227,8.412783547531244,0,9,-1,-41.09031773594953,0,-9,-9,2019,10,1,30,38,1,1,0,17.16433750014922,17.16433750014922,0,0,0,0,0,1,1,0,7.319210684079512,0,53.87,40.03,60.13,49.27,8.333333333333334,2,3,0,0,11,5,5,1,1337,932816.7797344347,718667.832793974,331921.4993386893,112517.7007705077,5469.39935914407 -6373,7899,14334,14333,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.586222268768415,8.496388627161517,0,17,1,-86.78377485091364,0,2,2,2019,7,0,37,38,1,0,0,15.1844328519307,15.1844328519307,0,0,0,0,0,1,1,0,6.696426924562251,0,60.13,49.27,53.87,40.03,8.333333333333334,2,3,0,0,11,5,5,1,1337,932816.7797344347,718667.832793974,331921.4993386893,112517.7007705077,5469.39935914407 -6374,7900,14335,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.839521570478871,7.053590606646163,0,0,0,-927.2853804513946,0,3,3,2019,13,1,20,28,1,1,0,4.293673200661972,4.293673200661972,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,6.666666666666667,2,3,0,0,10,8,2,1,819,770731.8013269551,0,739562.4542861272,0,-162.5181762732668 -6375,7901,14336,14337,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.500968755494853,6.594472096764171,8,4,1.847614511767424,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.59213362477239,52,47,51.02,52.22,7,1,1,0,0,0,10,2,1,466.5,183017.044771434,79533.32944180511,95759.03668258907,0,1916.326619399844 -6375,7901,14337,14336,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,45,-4,-27.29799650813042,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.100168934703969,0,51.02,52.22,52,47,8.333333333333334,1,1,0,0,10,10,2,1,466.5,183017.044771434,79533.32944180511,95759.03668258907,0,1916.326619399844 -6375,7902,14338,-9,14337,14336,1,0,30,0,0,0,2,2,-9,0,4,8.018348852890474,8.162336767007188,0,0,0,-983.9653008704629,0,3,2,2019,11,0,40,40,1,2,0,7.431719095775617,7.431719095775617,0,0,0,0,0,1,1,0,6.359138081543177,0,48,57,-9,-9,7,1,1,0,0,1,10,4,1,217,10808.76666487772,8030.150018475175,0,0,1286.674619471012 -6376,7903,14339,14340,-9,-9,1,0,29,0,0,0,1,1,-9,0,1,8.106913388644299,8.282988870990483,0,1,-4,-86.38371169482943,-9,-9,-9,2019,23,9,38,0,1,9,0,13.20298281144186,13.20298281144186,0,0,0,0,0,0,0,0,0,0,30.18,34.84,49.46,56.91,5,1,1,0,0,5,6,5,1,1159.5,29254.63191391749,0,91441.2231777316,45554.11310785897,3301.536484197452 -6376,7903,14340,14339,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.120348450097536,8.1139290000239,0,1,4,58.31048456363216,-9,-9,-9,2019,7,0,38,0,1,0,0,9.360718691946674,9.360718691946674,0,0,0,0,0,0,0,0,0,0,49.46,56.91,30.18,34.84,8.333333333333334,1,1,0,0,0,6,5,1,1159.5,29254.63191391749,0,91441.2231777316,45554.11310785897,3301.536484197452 -6377,7904,14341,-9,14343,14344,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.488020446483,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,350,225792.9964087604,110957.0627748907,150764.2291508993,54152.29348922185,3932.560826096209 -6377,7904,14342,-9,14343,14344,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.4964595078342,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,350,225792.9964087604,110957.0627748907,150764.2291508993,54152.29348922185,3932.560826096209 -6377,7904,14343,14344,-9,-9,1,0,31,1,2,0,1,1,-9,0,5,8.619140952763715,8.492506161648798,0,6,0,57.99136624633503,0,-9,-9,2019,5,0,38,38,1,0,0,17.99515937536187,17.99515937536187,0,0,0,0,0,1,1,0,1.496192368210056,0,58.2,54.53,50,57,8.333333333333334,1,1,0,0,6,13,4,1,350,225792.9964087604,110957.0627748907,150764.2291508993,54152.29348922185,3932.560826096209 -6377,7904,14344,14343,-9,-9,1,1,31,1,2,0,1,1,-9,0,4,8.001371746969316,7.923677475195741,0,6,0,23.33672955269736,0,-9,-9,2019,10,0,39,0,1,1,0,9.245757197362636,9.245757197362636,0,0,0,0,0,1,1,0,0,0,50,57,58.2,54.53,7,4,1,0,0,1,13,4,1,350,225792.9964087604,110957.0627748907,150764.2291508993,54152.29348922185,3932.560826096209 -6378,7905,14345,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.736487998061604,6.737940301704441,0,0,-1001.511542486285,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.583234123423869,6.352053358812565,58.45,19.24,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,1263,386252.1413064461,363675.4951348029,0,0,1314.239102638722 -6379,7906,14346,14347,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.54931657320166,7.283968499740344,0,9,-3,-6.402703879064864,0,-9,3,2019,9,0,30,30,1,0,0,6.234887762391883,6.234887762391883,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.79,55.86,10,1,1,0,0,6,12,4,0,1149,204161.1819622692,146959.8399311216,69784.05040325379,14913.74129064977,2223.09737608542 -6379,7906,14347,14346,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.178388708505034,8.368253617026566,0,9,3,-156.6113014605504,-9,-9,-9,2019,6,0,42,0,1,0,0,10.39185856837105,10.39185856837105,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.82,53.97,0,1,1,0,0,11,12,4,0,1149,204161.1819622692,146959.8399311216,69784.05040325379,14913.74129064977,2223.09737608542 -6380,7907,14348,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,5.073354839451938,5.21656354981449,0,0,-903.7637129513651,0,-9,-9,2019,13,4,0,0,4,4,0,0,0,1,0,1.602087912178829,0,0,1,1,0,0,5.02535717386915,27.53,24.06,-9,-9,8.333333333333334,1,1,0,1,0,8,2,0,441,762703.6915402436,0,831123.4909685415,0,675.4789955567464 -6380,7908,14349,-9,14348,-9,1,1,40,0,0,0,3,3,-9,1,1,0,0,0,0,0,-846.8561993571423,0,3,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.93,44.66,-9,-9,0,4,2,0,1,0,8,1,0,109,11960.60771642804,0,0,0,176.1196276475473 -6381,7909,14350,14353,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,9,2,41.20221868529862,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,0,346.2,121546.4998742548,-32830.66761732293,0,0,2472.307687941261 -6381,7909,14351,-9,14350,14353,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.6916330927316,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,346.2,121546.4998742548,-32830.66761732293,0,0,2472.307687941261 -6381,7909,14352,-9,14350,14353,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.9046976630651,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,3,0,346.2,121546.4998742548,-32830.66761732293,0,0,2472.307687941261 -6381,7909,14353,14350,-9,-9,1,1,37,0,3,0,3,3,-9,0,4,8.145389266756759,8.05885555407944,0,9,-2,98.97373630450485,0,-9,-9,2019,8,0,42,36,1,0,0,9.029017994814172,9.029017994814172,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.37,56.93,8.333333333333334,1,1,0,0,10,12,3,0,346.2,121546.4998742548,-32830.66761732293,0,0,2472.307687941261 -6381,7909,14354,-9,14350,14353,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.522418058271,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,346.2,121546.4998742548,-32830.66761732293,0,0,2472.307687941261 -6381,7910,14355,-9,14350,14353,1,1,18,0,3,0,2,2,-9,0,4,7.867919989373585,7.782608602236817,0,0,0,-979.3938358927546,0,2,3,2019,7,0,36,3,1,0,1,6.864829625754505,6.864829625754505,0,0,0,0,0,1,1,0,0,0,49.99,56.77,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,1121,1546.660925351362,44261.01137697954,0,0,859.3752677924108 -6382,7911,14356,14357,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,5,10,0,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,37.62,20.21,41.24,30.33,1.666666666666667,1,1,1,0,4,13,1,0,1534,30308.20262401915,0,0,0,2457.100930999549 -6382,7911,14357,14356,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,5,-10,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,41.24,30.33,37.62,20.21,5,1,1,1,0,0,13,1,0,1534,30308.20262401915,0,0,0,2457.100930999549 -6382,7911,14358,-9,14357,14356,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.841369025998,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,0,0,26.1,59.61,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1534,30308.20262401915,0,0,0,2457.100930999549 -6383,7912,14359,14360,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.304433922224531,8.206870154675517,37,9,3.761662474193861,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.703856365075182,8.293918666556001,63.98,35.22,61.35,25.52,10,1,1,0,0,0,8,3,1,1467,1007036.399065715,357651.522614343,349936.6851303248,0,3985.791364139798 -6383,7912,14360,14359,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,4.900486057450074,4.842830142442812,37,0,-106.1956813151198,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,22.77585953545801,0,0,1,1,0,7.392869330142179,4.799121019230427,61.35,25.52,63.98,35.22,6.666666666666667,1,1,0,0,7,8,3,1,1467,1007036.399065715,357651.522614343,349936.6851303248,0,3985.791364139798 -6384,7913,14361,14362,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.255666494247196,7.826892448583468,6.933235331499082,37,3,-93.37118134919,0,2,2,2019,23,10,30,20,1,10,0,7.936255737491242,7.936255737491242,0,0,0,0,5.48,0,0,0,0,7.215828078907883,39.19,43.1,48.21,50.73,3.333333333333333,1,1,0,0,11,1,3,0,485,329061.3115533072,58488.38611565168,187175.2989763501,0,1180.386033420797 -6384,7913,14362,14361,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,37,-3,-10.75923209845413,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,6.571254868967344,0,48.21,50.73,39.19,43.1,3.333333333333333,1,1,0,0,8,1,3,0,485,329061.3115533072,58488.38611565168,187175.2989763501,0,1180.386033420797 -6385,7914,14363,14364,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.355581917474483,7.730138987857316,0,40,-4,37.70189288099532,0,2,-9,2019,7,0,29,29,1,0,0,6.414426942248967,6.414426942248967,0,0,0,0,0,0,0,0,.0988434147726626,0,57.33,53.46,54,53,8.333333333333334,1,1,0,0,7,10,4,1,761.5,-11145.83528608843,-31437.95154437646,0,0,2361.536340458464 -6385,7914,14364,14363,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.158510032751355,8.391617659720406,0,7,4,-11.46809169268787,0,-9,-9,2019,8,0,37,37,1,0,0,14.72318729302889,14.72318729302889,0,0,0,0,0,0,0,0,0,0,54,53,57.33,53.46,8,1,1,0,0,1,10,4,1,761.5,-11145.83528608843,-31437.95154437646,0,0,2361.536340458464 -6385,7915,14365,-9,14363,14364,1,1,22,0,0,0,2,2,-9,0,4,7.99065353399734,7.95567286166042,0,0,0,-1034.147310484725,0,2,2,2019,10,0,40,15,1,1,1,7.186379668021877,7.186379668021877,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,3,1,259,-25274.62203158082,0,0,0,713.0784224033353 -6386,7916,14366,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-912.1081429222211,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,10,1,0,995,49076.73991267859,21755.52882790632,0,0,2047.652616458249 -6387,7917,14367,14368,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,0,0,0,4,-1,-6.255581349491665,-9,-9,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,50.81,34.62,10,1,1,1,0,8,11,2,0,1023,-44057.1417054208,-50856.50334932735,0,0,764.38494406315 -6387,7917,14368,14367,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,4.906868555713681,5.284294633514911,0,18,1,-15.29008494782877,0,3,3,2019,11,0,41,40,1,0,0,.3340613766997898,.3340613766997898,0,0,0,0,0,1,0,1,0,0,50.81,34.62,62.49,55.09,5,1,1,0,0,7,11,2,0,1023,-44057.1417054208,-50856.50334932735,0,0,764.38494406315 -6388,7918,14369,-9,14372,14371,1,1,27,0,0,0,1,1,-9,0,4,8.328406774482128,8.335296792506883,0,0,0,-888.8721843780543,0,2,2,2019,6,0,40,40,1,0,1,10.92292242606539,10.92292242606539,0,0,0,0,0,0,0,0,0,0,57.41,54.88,-9,-9,8.333333333333334,2,3,0,0,11,9,4,1,209,-109883.528809521,75356.16395397413,0,0,1524.704243477773 -6388,7919,14370,-9,14372,14371,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1103.565137261513,0,3,2,2019,13,3,0,40,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,1,1,5,9,1,1,139,63604.35957211637,0,0,0,0 -6388,7920,14371,14372,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.404541251307986,8.250323588729454,0,4,1,94.52544370995982,0,-9,-9,2019,5,0,38,40,1,0,0,12.15707205416352,12.15707205416352,0,0,0,0,0,0,0,0,0,0,53.45,49.53,55.13,55.62,8.333333333333334,2,3,0,0,4,9,4,1,618,284973.5578575124,23508.44524049119,334270.5216903339,134641.4193846908,2382.800115649289 -6388,7920,14372,14371,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.691458677969272,7.667038156784105,0,4,-1,-2.598392032519389,0,3,2,2019,8,0,30,25,1,0,0,7.017064922176914,7.017064922176914,0,0,0,0,0,0,0,0,0,0,55.13,55.62,53.45,49.53,8.333333333333334,2,3,0,0,11,9,4,1,618,284973.5578575124,23508.44524049119,334270.5216903339,134641.4193846908,2382.800115649289 -6389,7921,14373,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.590038295102222,7.963429566326139,0,0,0,-1054.145924403603,0,3,2,2019,13,3,43,46,1,3,0,6.033869793195111,6.033869793195111,0,0,0,0,0,0,0,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,7,7,3,0,641,50715.3232966569,0,0,0,780.8122212745984 -6390,7922,14374,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.966397259434135,8.210899766024014,0,0,0,-1053.688163634646,0,3,3,2019,14,2,30,30,1,2,0,15.13239942186742,15.13239942186742,0,0,0,0,0,0,0,0,0,0,30.83,62.98,-9,-9,3.333333333333333,1,1,0,0,7,5,4,1,1402,489874.6468987142,190953.2860791008,225989.4367211344,96832.79806158206,1295.472417430993 -6391,7923,14375,14376,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.894099103566848,8.085610489229287,40,1,10.41363950442014,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.58667897649968,46.32,53.44,52.16,43.45,8.333333333333334,1,1,0,0,9,2,4,1,524,562746.6441316531,570073.6013351965,171894.5146548502,0,1431.955766708848 -6391,7923,14376,14375,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.745549511185996,7.688997463079195,0,40,-1,-52.67090766445908,0,3,3,2019,12,0,30,30,1,0,0,7.683241061663004,7.683241061663004,0,0,0,0,0,0,0,0,0,0,52.16,43.45,46.32,53.44,8.333333333333334,1,1,0,0,10,2,4,1,524,562746.6441316531,570073.6013351965,171894.5146548502,0,1431.955766708848 -6391,7924,14377,-9,14376,14375,1,1,25,0,0,0,1,1,-9,0,4,7.67596670619748,8.125780617337803,0,0,0,-1151.055039368776,0,3,2,2019,5,0,37,35,1,0,1,7.645828005000605,7.645828005000605,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,1682,-135414.5744317507,22159.07359752305,0,0,1099.707683871608 -6392,7925,14378,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-945.5324408399566,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,4.390680178995838,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,13,1,1,1830,355712.1594260249,0,169149.0285313776,0,424.1886055321847 -6393,7926,14379,14380,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.090078156093921,6.030560034615617,6,1,33.83246216381907,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.108437175847207,63.81,32.9,58.27,29.84,6.666666666666667,1,1,0,0,0,13,2,1,1161.5,331241.6074481968,213480.8679844641,103224.2971041727,0,1794.081697544888 -6393,7926,14380,14379,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,6.93156427455629,7.007367069173235,6,-1,-50.50544974199516,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.32373680713104,58.27,29.84,63.81,32.9,6.666666666666667,1,1,0,0,0,13,2,1,1161.5,331241.6074481968,213480.8679844641,103224.2971041727,0,1794.081697544888 -6394,7927,14381,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.143159728057462,8.162056636820836,5.872255318072813,0,0,-1060.796037758779,-9,1,2,2019,13,2,40,0,1,2,0,10.10071519827522,10.10071519827522,0,0,0,0,0,1,1,0,6.235103801614743,0,43.43,54.3,-9,-9,8.333333333333334,1,1,0,1,6,9,4,0,133,390088.3204998155,126985.3029570314,258571.9728844382,272936.05683186,2273.028497283648 -6394,7927,14382,-9,14381,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.77272551955,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,133,390088.3204998155,126985.3029570314,258571.9728844382,272936.05683186,2273.028497283648 -6395,7928,14383,14384,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.570171097248597,8.336463253605464,0,7,0,70.96180773906478,0,-9,-9,2019,6,0,37,39,1,0,0,14.11264879079459,14.11264879079459,0,0,0,0,0,0,0,0,0,0,52,54.51,36.85,53.29,6.666666666666667,1,1,0,0,6,5,4,1,4764.5,205626.265607207,16258.22857786537,261728.55480067,164478.3634198855,2532.810062444493 -6395,7928,14384,14383,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.751798077225664,7.597068851500967,0,7,0,10.11383470735715,0,2,2,2019,16,5,41,40,1,5,0,6.595380271446882,6.595380271446882,0,0,0,0,0,0,0,0,0,0,36.85,53.29,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,4764.5,205626.265607207,16258.22857786537,261728.55480067,164478.3634198855,2532.810062444493 -6396,7929,14385,14386,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.332856135415405,8.364363588201174,50,-1,-3.43874255075194,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.840793244834396,57.16,56.15,62.39,56.71,0,1,1,0,0,0,11,5,1,550,3051295.106399098,2440020.827995886,535197.1445671964,0,4886.925885114633 -6396,7929,14386,14385,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.56848234621885,8.115490647217271,50,1,6.751011283728883,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.150674659557968,62.39,56.71,57.16,56.15,10,1,1,0,0,0,11,5,1,550,3051295.106399098,2440020.827995886,535197.1445671964,0,4886.925885114633 -6397,7930,14387,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,1,0,7.269453347533573,7.498442266693417,0,0,-1114.495712235049,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,.9225029519206462,0,0,0,1,1,0,1.106177156593213,7.499392452100264,34.69,21.98,-9,-9,3.333333333333333,1,1,0,0,0,10,3,0,425,338648.2185933238,77391.84301235196,268771.5433558961,0,1305.300025853116 -6398,7931,14388,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.737105734660753,8.171164339372828,0,0,-1123.374790279591,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,11.94044800051656,127.382595635856,135.5552047924839,0,1,1,0,5.791578448603156,8.041831719811467,55,45,-9,-9,8,1,1,0,0,0,7,4,1,3282,541802.9119588358,113552.3118762247,448225.3364018293,0,1917.5760105981 -6398,7932,14389,-9,-9,14388,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,0,0,-957.9626518147319,-9,-9,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,7,1,1,1563,-97343.03858241583,0,0,0,0 -6399,7933,14390,14391,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8384095726924,7.950959147549086,47,-1,83.3390094689636,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.911608472938978,7.529940980358385,55.3,55.6,38.92,32.15,8.333333333333334,1,1,0,0,2,9,3,1,428,254464.8066593631,59987.6060129043,142732.6414165299,0,2450.16163383241 -6399,7933,14391,14390,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,47,1,32.05204698537157,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.688070344479071,0,38.92,32.15,55.3,55.6,8.333333333333334,1,1,0,0,0,9,3,1,428,254464.8066593631,59987.6060129043,142732.6414165299,0,2450.16163383241 -6400,7934,14392,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,6.597165988307109,6.396752997065981,0,0,-1015.730790890426,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,2.124143949015667,0,26.67280994408329,0,1,1,0,1.853546623455832,6.99344370188302,39.61,18.47,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,606,610287.67977742,81571.69500385283,490140.7991897577,0,1837.595885182102 -6401,7935,14393,14394,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.44006736711653,9.476287436122492,0,31,0,-56.36448952280734,0,2,2,2019,8,0,40,40,1,0,0,34.4402106781573,34.4402106781573,0,0,0,0,0,0,0,0,0,0,46.98,59.35,45.32,53.5,8.333333333333334,1,1,0,0,9,12,5,1,864,827441.730321228,524085.142982962,126813.2429425042,0,4670.117557957483 -6401,7935,14394,14393,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.939467410253695,6.932922376302166,0,31,0,-25.69369920965691,0,2,2,2019,11,1,24,24,1,1,0,5.185407452616078,5.185407452616078,0,0,0,0,0,0,0,0,0,0,45.32,53.5,46.98,59.35,8.333333333333334,1,1,0,0,9,12,5,1,864,827441.730321228,524085.142982962,126813.2429425042,0,4670.117557957483 -6402,7936,14395,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-987.8964609687143,0,3,3,2019,18,6,0,33,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.25,38.75,-9,-9,1.666666666666667,3,4,0,1,9,10,1,0,221,112489.9984077087,0,0,0,301.3836457563863 -6403,7937,14396,14397,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,9.106979060283855,8.759279486944672,48,3,-5.264592916869779,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,9.056144673140365,8.780861660301193,57.06,57.76,61.99,34.03,10,1,1,0,0,6,9,5,1,605,2177495.851759749,1233433.418581822,425029.5966242973,0,6169.396291881176 -6403,7937,14397,14396,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.207421742183148,6.377557894139456,48,-3,-56.86861288380769,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.935264248576638,6.246503266452307,61.99,34.03,57.06,57.76,10,1,1,0,0,0,9,5,1,605,2177495.851759749,1233433.418581822,425029.5966242973,0,6169.396291881176 -6404,7938,14398,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-950.6094319833728,0,2,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,7,1,0,1,0,0,30.23,28.4,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,691,18317.34141001527,0,0,0,1500.133890432063 -6404,7939,14399,-9,14398,-9,1,1,27,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1196.936231528427,0,2,2,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,2,1,0,1,0,0,48.18,61.8,-9,-9,1.666666666666667,3,4,1,1,4,8,1,0,366,0,0,0,0,78.91942227727768 -6405,7940,14400,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.904699110954,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.079785805645267,0,0,1,1,0,2.277571496592681,0,60.3,25.32,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,225,348161.3424745986,0,239421.6794810323,0,1382.168190956969 -6406,7941,14401,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.18709996436214,8.168045876060294,0,0,-997.2210976851587,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.193696940688312,8.292407614312879,64.06,37.15,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,188,1627113.204932694,1300775.952277078,0,0,3056.520880914009 -6407,7942,14402,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1033.155909138199,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.975779483487912,0,33.4,51.97,-9,-9,5,1,1,0,0,0,10,1,1,619,189733.4720428274,45214.17321219995,0,0,1048.713138070099 -6408,7943,14403,14404,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,-1,-106.1946090196483,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.018257752029712,0,51.91,42.22,54.2,57.49,10,1,1,0,0,0,2,2,1,490.5,330072.1647073232,235204.4979604119,102931.797915176,0,1349.765130812546 -6408,7943,14404,14403,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.42010691819544,6.357385893943936,7,1,-51.49614506260522,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.225038024516516,3.683198103263965,20.91249560429392,0,1,1,0,2.844219139106928,6.507175767742755,54.2,57.49,51.91,42.22,10,1,1,0,0,8,2,2,1,490.5,330072.1647073232,235204.4979604119,102931.797915176,0,1349.765130812546 -6409,7944,14405,14406,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,10,-1,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,16.7,46.67,55.57,5,1,1,0,0,0,5,1,1,352,115263.1583619307,-66314.70707495543,0,0,1201.683668616688 -6409,7944,14406,14405,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,10,1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.605129347763449,0,46.67,55.57,43.95,16.7,8.333333333333334,1,1,0,0,0,5,1,1,352,115263.1583619307,-66314.70707495543,0,0,1201.683668616688 -6410,7945,14407,14409,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.98914025001663,7.59870962456753,5.643677361630911,7,1,124.8969182792584,0,-9,-9,2019,10,0,38,42,1,0,0,8.176286446922179,8.176286446922179,0,0,0,0,0,1,1,0,0,5.824690408896435,60.36,46.43,38.45,39.53,8.333333333333334,1,1,0,0,7,12,3,0,237.6666666666667,84018.21478109872,12427.61530445215,132823.9300091751,28909.01547254185,1887.159070365747 -6410,7945,14408,-9,14409,14407,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.7764119342254,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,237.6666666666667,84018.21478109872,12427.61530445215,132823.9300091751,28909.01547254185,1887.159070365747 -6410,7945,14409,14407,-9,-9,1,0,58,0,1,0,3,3,-9,0,2,0,0,0,7,-1,11.34922614923576,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.45,39.53,60.36,46.43,5,1,1,0,0,0,12,3,0,237.6666666666667,84018.21478109872,12427.61530445215,132823.9300091751,28909.01547254185,1887.159070365747 -6411,7946,14410,14412,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,7.747339024140843,7.934241545495407,0,3,3,95.48673326017774,0,2,2,2019,9,1,40,72,1,1,0,7.678843290030755,7.678843290030755,0,0,0,0,2,1,1,0,0,0,50.4,55.04,60.31,43.75,8.333333333333334,1,1,0,0,11,9,3,1,316.3333333333333,-95876.50573806994,-782.8062930184739,0,0,1715.329445124663 -6411,7946,14411,-9,14412,14410,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.2551380872176,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,316.3333333333333,-95876.50573806994,-782.8062930184739,0,0,1715.329445124663 -6411,7946,14412,14410,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,7.344576269888904,7.550579608060895,0,3,-3,-77.38163010903631,0,-9,-9,2019,10,2,24,24,1,2,0,5.882018390640959,5.882018390640959,0,0,0,0,0,1,1,0,0,0,60.31,43.75,50.4,55.04,10,1,1,0,0,2,9,3,1,316.3333333333333,-95876.50573806994,-782.8062930184739,0,0,1715.329445124663 -6412,7947,14413,14414,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.351959262610896,7.525660359326854,0,29,1,90.89339718059964,0,2,2,2019,6,0,30,25,1,0,0,5.526508467711878,5.526508467711878,0,0,0,0,0,1,1,0,7.805891142297791,0,57.16,56.15,55.53,51.55,6.666666666666667,1,1,0,0,9,7,5,1,579,2519126.067348711,2086252.241165432,357269.0734114054,0,5134.771592026143 -6412,7947,14414,14413,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,9.216077394589435,9.234033832439978,0,29,-1,-4.779437650966528,0,1,1,2019,6,0,43,40,1,0,0,34.78632886898876,34.78632886898876,0,0,0,0,0,1,1,0,7.523736065229794,0,55.53,51.55,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,579,2519126.067348711,2086252.241165432,357269.0734114054,0,5134.771592026143 -6412,7948,14415,-9,14414,14413,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.9301916882556,-9,1,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,1741,-197305.2857227547,0,0,0,-872.5958949904369 -6413,7949,14416,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,7.80423771004369,8.138693659459335,0,0,0,-909.6277989854498,0,-9,-9,2019,2,0,40,40,1,0,0,8.477647797374702,8.477647797374702,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,7,1,4,1,672,229870.1153533423,-67913.75290176715,0,0,1388.96756276443 -6413,7950,14417,14418,-9,-9,1,1,28,0,0,0,3,3,-9,0,5,7.157492415442242,7.408720651953966,0,2,2,-95.4454867050479,-9,-9,-9,2019,4,0,35,0,1,0,0,5.346387817197478,5.346387817197478,0,0,0,0,0,0,0,0,0,0,51,60,54.45,56.22,10,2,3,0,0,5,1,4,1,1372.5,-35357.55787178934,75264.89157089703,0,0,1512.444520290375 -6413,7950,14418,14417,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.872357331156097,7.499639802336319,0,2,-2,117.1630556293995,0,3,2,2019,6,0,38,-9,1,0,0,7.058323264538071,7.058323264538071,0,0,0,0,0,0,0,0,0,0,54.45,56.22,51,60,8.333333333333334,2,3,0,0,8,1,4,1,1372.5,-35357.55787178934,75264.89157089703,0,0,1512.444520290375 -6414,7951,14419,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,5,7.990604791248432,8.021958949150756,0,0,0,-1080.912526213517,0,1,2,2019,12,2,40,30,1,2,0,8.471888150015417,8.471888150015417,0,0,0,0,0,1,1,0,0,0,51.98,57.55,-9,-9,10,1,1,0,0,4,10,3,0,928.5,-178015.0691000071,-50596.83805099444,0,0,1872.868102542554 -6414,7951,14420,-9,14419,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.98823793223,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,928.5,-178015.0691000071,-50596.83805099444,0,0,1872.868102542554 -6415,7952,14421,14422,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.412232395659123,7.651307041537507,5.043195315130762,41,-4,-47.00298472882643,0,-9,2,2019,9,0,23,20,1,0,0,8.977197786066103,8.977197786066103,0,0,0,0,0,1,1,0,8.013545564662456,4.887036653793964,58.04,34.29,57.33,53.46,8.333333333333334,1,1,0,0,9,1,4,1,313,220969.6885870607,0,271005.7103634408,53652.32331757493,4472.549359422233 -6415,7952,14422,14421,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.260746896866964,8.571221038137281,5.223883474958551,41,4,98.38294691971298,0,3,2,2019,6,0,40,40,1,0,0,11.56222978204424,11.56222978204424,0,0,0,0,0,1,1,0,3.957922897282084,5.347463663410274,57.33,53.46,58.04,34.29,8.333333333333334,1,1,0,0,9,1,4,1,313,220969.6885870607,0,271005.7103634408,53652.32331757493,4472.549359422233 -6415,7953,14423,-9,14421,14422,1,1,32,0,0,0,2,2,-9,1,5,0,0,0,0,0,-954.3517274926943,0,2,2,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,2.372074923665864,0,17.46,58.44,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,388,0,0,0,0,554.784879583271 -6416,7954,14424,14425,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,-2,51.55894002247675,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,0,0,46.87,43.31,49,36,10,3,4,0,0,0,2,2,1,1296,574338.3797910729,214248.038042073,203952.6432210218,0,1952.965384332706 -6416,7954,14425,14424,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.024217264789879,6.93964549023555,8,2,15.69069953192881,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.156749447924236,49,36,46.87,43.31,10,3,4,0,0,0,2,2,1,1296,574338.3797910729,214248.038042073,203952.6432210218,0,1952.965384332706 -6417,7955,14426,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8991835539121,7.70126702276255,0,0,0,-1018.022411535235,-9,-9,2,2019,7,0,40,0,1,0,0,6.19030523427154,6.19030523427154,0,0,0,0,0,0,0,0,5.763864553057567,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,2249,136039.156675139,97378.55742359614,0,0,1227.476002484855 -6418,7956,14427,14428,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.119502888437465,8.862642030828834,8.114053177058819,4,4,-93.43671861712838,0,-9,-9,2019,8,0,50,40,1,0,0,6.309804743519376,6.309804743519376,0,0,0,0,0,0,0,0,8.385002136282978,8.376712640581458,54,53,57.73,54.53,8,1,1,0,0,1,9,5,1,1004,2358307.637065265,1169156.948351112,793255.5552571691,0,5171.129806227214 -6418,7956,14428,14427,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,6.988827939280477,7.070984026063809,0,4,-4,-19.48717296233178,0,-9,-9,2019,11,0,15,20,1,0,0,10.09121068162243,10.09121068162243,0,0,0,0,0,0,0,0,5.110029003844677,0,57.73,54.53,54,53,8.333333333333334,1,1,0,0,8,9,5,1,1004,2358307.637065265,1169156.948351112,793255.5552571691,0,5171.129806227214 -6419,7957,14429,14430,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.615681435319788,8.394111041041047,0,3,0,3.048010806086931,0,-9,-9,2019,8,1,31,35,1,1,0,16.58187071725022,16.58187071725022,0,0,0,0,0,0,0,0,0,0,29.8,58.22,45.2,57.55,8.333333333333334,1,1,0,0,9,2,5,1,324,-102885.9523307023,-36590.16947692634,0,0,3112.23780709624 -6419,7957,14430,14429,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.009886161820763,8.147134890614929,0,3,0,-114.9852200796934,0,2,-9,2019,7,0,45,45,1,0,0,7.897307463982824,7.897307463982824,0,0,0,0,0,0,0,0,0,0,45.2,57.55,29.8,58.22,8.333333333333334,1,1,0,0,10,2,5,1,324,-102885.9523307023,-36590.16947692634,0,0,3112.23780709624 -6420,7958,14431,14432,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.306481598848251,8.303407065167164,0,34,6,-3.253565562379584,0,3,3,2019,10,0,40,40,1,1,0,9.345767424388049,9.345767424388049,0,0,0,0,0,0,0,0,0,0,51,49,48,49,7,1,1,0,0,10,8,4,0,471.5,589477.1318523763,380554.7142694585,157714.7391727481,0,1888.644821641863 -6420,7958,14432,14431,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.1311493674148,5.759690072134217,0,32,-6,-14.19329040021884,0,-9,2,2019,12,0,6,6,1,2,0,6.761406281886407,6.761406281886407,0,0,0,3.757431126421979,0,0,0,0,0,0,48,49,51,49,7,1,1,0,0,10,8,4,0,471.5,589477.1318523763,380554.7142694585,157714.7391727481,0,1888.644821641863 -6420,7959,14433,-9,14432,14431,1,1,27,0,0,0,2,2,-9,0,4,8.326584578175495,8.024114390541186,0,0,0,-946.7195060269338,-9,2,2,2019,10,0,70,0,1,1,1,5.536579192224732,5.536579192224732,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,4,0,257,-63994.56218983023,0,0,0,1084.66518150398 -6420,7960,14434,-9,14432,14431,1,1,25,0,0,0,1,1,-9,0,4,8.173495686404063,8.383085789638931,0,0,0,-1093.035694977464,-9,3,3,2019,10,0,38,0,1,1,1,8.20004761073505,8.20004761073505,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,4,0,1735,-74159.20667029018,135229.7261799938,0,0,1237.910740668253 -6421,7961,14435,-9,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.363912803364845,7.334959142772228,5.108474099048019,0,0,-1078.040685498246,0,-9,-9,2019,6,0,40,35,1,0,0,4.308387626895706,4.308387626895706,0,0,0,0,0,1,1,0,4.900655825648097,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,741.3333333333334,13323.15209982918,86081.97863268683,0,0,1676.269983503054 -6421,7961,14436,-9,-9,14435,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1038.521778240494,-9,-9,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.6333897562598655,0,54.1,59.11,-9,-9,10,1,1,0,0,2,10,2,1,741.3333333333334,13323.15209982918,86081.97863268683,0,0,1676.269983503054 -6421,7961,14437,-9,-9,14435,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.6751060044832,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,2,1,741.3333333333334,13323.15209982918,86081.97863268683,0,0,1676.269983503054 -6421,7962,14438,-9,-9,14435,1,0,20,0,1,0,2,2,-9,0,4,7.534880274370567,7.722871849898264,0,0,0,-961.6195224109315,0,2,2,2019,11,2,35,35,1,2,1,6.741508136984231,6.741508136984231,0,0,0,0,0,1,1,0,.3322962812421443,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,551,106873.49683335,0,0,0,477.4391821380958 -6422,7963,14439,14440,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.206876102586175,8.439740310557371,0,17,-2,50.16488190078394,-9,3,3,2019,8,0,23,0,1,0,0,14.0725378863024,14.0725378863024,0,0,0,0,0,1,1,0,6.802701356224267,0,59.29,49.68,44.99,41.57,10,2,3,0,0,13,4,4,1,647.5,1599428.432913986,1492767.663681367,318599.6018237288,120142.7385889203,4055.152490761999 -6422,7963,14440,14439,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.660500454245053,9.111739298033106,0,17,2,63.26736367241227,0,3,2,2019,19,8,44,0,1,8,0,19.41578019885662,19.41578019885662,0,0,0,0,0,1,1,0,0,0,44.99,41.57,59.29,49.68,3.333333333333333,2,3,0,0,11,4,4,1,647.5,1599428.432913986,1492767.663681367,318599.6018237288,120142.7385889203,4055.152490761999 -6423,7964,14441,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.251442850016236,8.593703393875614,0,0,-936.7746585322363,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,2,0,0,0,4.690042202168833,8.345621952078799,44.59,45.08,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,553,721379.529873501,213882.7654142453,659550.1243473563,219055.0104241626,2054.141085192767 -6424,7965,14442,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.8119088493447,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,54.37,33.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,615,356011.2118802959,0,250703.8703941998,132544.8471115503,717.8942093905695 -6425,7966,14443,14444,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,6.115201220402022,6.751300018682248,10,-4,61.37483182567073,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.514477080402939,6.742474344141454,47.86,13.8,52.98,33.44,6.666666666666667,1,1,0,0,0,4,2,1,1254,484560.4337132974,69964.80177100819,407641.1490473329,0,1482.238804548399 -6425,7966,14444,14443,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,10,4,-54.32625223203333,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.98,33.44,47.86,13.8,8.333333333333334,1,1,0,0,0,4,2,1,1254,484560.4337132974,69964.80177100819,407641.1490473329,0,1482.238804548399 -6426,7967,14445,14446,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.673425111373024,7.855922065012057,0,45,-5,12.83128968631151,0,2,2,2019,10,0,1,10,1,0,0,273.7304966379426,273.7304966379426,0,0,0,0,0,1,1,0,4.789159980827133,0,50.65,53.71,13.66,41.52,8.333333333333334,1,1,0,0,10,2,4,1,206.5,1434744.577311498,1237198.581540541,306018.8227113812,106533.5347090814,2869.71315849447 -6426,7967,14446,14445,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.73630115001044,7.561624969552857,45,5,-105.2024210563039,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.741765241073973,7.939235777026185,13.66,41.52,50.65,53.71,1.666666666666667,1,1,0,0,10,2,4,1,206.5,1434744.577311498,1237198.581540541,306018.8227113812,106533.5347090814,2869.71315849447 -6427,7968,14447,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.86294756154269,8.091543114580919,6.555785146560897,0,0,-1003.5501486281,0,3,3,2019,9,0,21,39,1,0,0,11.90498956816871,11.90498956816871,0,0,0,0,0,0,0,0,0,7.17051924743549,57.76,54.51,-9,-9,10,1,1,0,0,9,8,4,1,503,-3373.052122352677,-3217.262968500169,0,0,1480.384325117369 -6428,7969,14448,-9,14450,14451,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.4661900587935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,810.8,97647.99563803701,103484.8508763649,213367.5315499858,118170.3702613525,2744.411234203441 -6428,7969,14449,-9,14450,14451,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.056378074692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,810.8,97647.99563803701,103484.8508763649,213367.5315499858,118170.3702613525,2744.411234203441 -6428,7969,14450,14451,-9,-9,1,0,37,0,3,0,2,2,-9,1,1,0,0,0,20,-8,43.93636129968007,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,53.72,39.27,43.84,47.84,8.333333333333334,1,1,0,0,11,10,4,1,810.8,97647.99563803701,103484.8508763649,213367.5315499858,118170.3702613525,2744.411234203441 -6428,7969,14451,14450,-9,-9,1,1,45,0,3,0,2,2,-9,0,2,8.582140055565544,8.993548256937292,0,20,8,27.85173113821838,0,2,2,2019,11,0,41,41,1,0,0,17.45875095882027,17.45875095882027,0,0,0,0,27,1,1,0,0,0,43.84,47.84,53.72,39.27,6.666666666666667,1,1,0,0,12,10,4,1,810.8,97647.99563803701,103484.8508763649,213367.5315499858,118170.3702613525,2744.411234203441 -6428,7969,14452,-9,14450,14451,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.914167053931,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,810.8,97647.99563803701,103484.8508763649,213367.5315499858,118170.3702613525,2744.411234203441 -6429,7970,14453,14454,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.906014567274785,4.919125597148373,56,3,27.57345018367631,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,4.827297255233812,41.54,31.17,52.8,20.3,8.333333333333334,2,3,0,1,0,5,2,1,412.5,224255.6950890176,104666.1458635845,106352.6032642182,0,1373.971908487159 -6429,7970,14454,14453,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.988472288247161,5.043406369865805,56,-3,167.4619705634033,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.791544085488029,52.8,20.3,41.54,31.17,8.333333333333334,2,3,0,1,0,5,2,1,412.5,224255.6950890176,104666.1458635845,106352.6032642182,0,1373.971908487159 -6430,7971,14455,14456,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.199210963278401,7.017176270365101,9,1,-74.12383705149567,0,2,3,2019,7,0,0,48,3,0,0,0,0,0,0,0,0,0,1,1,0,0,7.216016617827783,55.34,54.26,54.2,57.49,8.333333333333334,1,1,0,0,10,11,5,0,351,934785.3070769882,431543.5704380257,224486.4385087697,0,7207.437479500357 -6430,7971,14456,14455,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.61846148399334,9.910478231877409,0,9,-1,116.7834282927863,0,1,2,2019,11,0,35,20,1,0,0,45.7349868996834,45.7349868996834,0,0,0,0,0,1,1,0,3.330720734810736,0,54.2,57.49,55.34,54.26,8.333333333333334,1,1,0,0,10,11,5,0,351,934785.3070769882,431543.5704380257,224486.4385087697,0,7207.437479500357 -6431,7972,14457,14458,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.519940852589723,8.195366141906607,0,9,13,-72.33193225154582,0,2,1,2019,9,0,41,38,1,0,0,13.21416629925502,13.21416629925502,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48,56,8.333333333333334,1,1,0,0,5,4,5,1,584.5,284602.9970828968,44395.70375227939,366067.9107292729,247440.8487600051,3842.574523114643 -6431,7972,14458,14457,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.454741836298496,8.341131265731434,0,9,-13,73.98156864308083,0,2,2,2019,11,0,37,38,1,2,0,16.68587552044034,16.68587552044034,0,0,0,0,0,0,0,0,4.878571090721873,0,48,56,54.79,55.86,7,1,1,0,0,1,4,5,1,584.5,284602.9970828968,44395.70375227939,366067.9107292729,247440.8487600051,3842.574523114643 -6432,7973,14459,14460,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.455983736103576,8.147718562130834,0,8,8,-117.9784139667315,0,3,2,2019,12,0,41,49,1,0,0,10.97976574933954,10.97976574933954,0,0,0,0,27,0,0,0,0,0,42.46,54.85,54.79,55.86,6.666666666666667,1,1,0,0,8,13,5,1,667,708452.6030957625,754679.6575991658,0,0,2631.72599827275 -6432,7973,14460,14459,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.043160816207898,7.828408626399179,0,8,-8,39.54678964804235,0,2,2,2019,7,0,38,37,1,0,0,11.79177326006187,11.79177326006187,0,0,0,0,14.5,0,0,0,0,0,54.79,55.86,42.46,54.85,8.333333333333334,1,1,0,0,8,13,5,1,667,708452.6030957625,754679.6575991658,0,0,2631.72599827275 -6432,7974,14461,-9,14460,14459,1,0,30,0,0,0,1,1,-9,0,4,8.303294501440337,7.993482978666349,0,0,0,-1009.640432076513,0,1,2,2019,12,0,38,38,1,0,1,11.26027505325605,11.26027505325605,0,0,0,0,0,0,0,0,0,0,53.07,49.99,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,341,85560.91015801112,-47901.25983315724,97459.9981493955,89295.05797126949,1397.688018942918 -6432,7975,14462,-9,14460,14459,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1071.538164140303,1,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,67.43000000000001,41.87,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,506,-64366.91624980359,0,0,0,0 -6433,7976,14463,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.350439286663166,9.19608727880656,0,0,0,-934.5449256547272,0,2,1,2019,13,1,52,58,1,1,0,27.21516324462589,27.21516324462589,0,0,0,0,2,0,0,0,6.803112292932714,0,37.08,57.26,-9,-9,3.333333333333333,1,1,0,0,11,8,5,0,947,89940.68234956285,0,232968.2560680576,121348.093415266,3288.081310990582 -6434,7977,14464,14465,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.60598421745625,7.765020587555348,30,3,20.08331868305967,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.555980833273159,7.722254914149159,57.31,50.61,57.73,54.53,8.333333333333334,1,1,0,0,2,10,4,1,952,1786555.549564481,1003330.105982189,445806.4094766122,0,3623.828369743573 -6434,7977,14465,14464,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.112957813103941,8.144976618799207,30,-3,106.3100973823819,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.933689965963354,8.262080556094544,57.73,54.53,57.31,50.61,10,1,1,0,0,7,10,4,1,952,1786555.549564481,1003330.105982189,445806.4094766122,0,3623.828369743573 -6435,7978,14466,14467,-9,-9,1,1,69,0,1,0,3,3,-9,0,3,0,0,0,1,0,0,-9,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,27,1,1,0,0,0,45.26,48.32,29.81,32.36,6.666666666666667,1,1,0,0,0,13,1,1,734.5,73410.19428953479,13003.60413725669,0,0,2425.088617483302 -6435,7978,14467,14466,-9,-9,1,0,69,0,1,0,2,2,-9,0,2,0,0,0,1,0,0,-9,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,34.38134239973314,0,14.5,1,1,0,0,0,29.81,32.36,45.26,48.32,6.666666666666667,1,1,0,0,0,13,1,1,734.5,73410.19428953479,13003.60413725669,0,0,2425.088617483302 -6435,7979,14468,-9,14467,14466,1,1,39,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1008.447829242484,-9,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,13,1,1,4409,0,0,0,0,1593.302316116029 -6435,7980,14469,-9,14470,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.1082683127396,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,403,61548.09818464085,22146.30406441691,118847.4725754762,55320.05871814742,1224.996892936837 -6435,7980,14470,-9,14467,14466,1,0,37,0,1,0,1,1,-9,0,1,7.896032050830886,7.97815098513292,0,0,0,-1041.159664327299,-9,2,2,2019,33,11,18,0,1,11,0,17.41777984155784,17.41777984155784,0,0,0,0,0,1,1,0,0,0,30.32,17.53,-9,-9,0,1,1,0,0,8,13,3,1,403,61548.09818464085,22146.30406441691,118847.4725754762,55320.05871814742,1224.996892936837 -6436,7981,14471,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.642756924931529,8.499690752572521,0,0,0,-1087.10829607486,0,2,3,2019,10,0,50,45,1,0,0,13.63906763913537,13.63906763913537,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,277,-20193.05572785815,0,0,0,2238.185993358185 -6437,7982,14472,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.357156149877508,7.765423528440071,0,0,-972.8675995771133,0,1,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.821917747982364,5.573211218792355,41.35,47.13,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,285,544821.9989468867,71200.06391827636,214925.472275657,0,2979.32206999299 -6438,7983,14473,-9,14476,14475,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-979.1186286394629,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,10,5,1,779,448360.0220995278,126985.1110322901,482029.0548506753,256776.5891295435,4933.52997009595 -6438,7983,14474,-9,14476,14475,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.954688018278,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,779,448360.0220995278,126985.1110322901,482029.0548506753,256776.5891295435,4933.52997009595 -6438,7983,14475,14476,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,9.266543229592809,9.468382547082026,0,7,0,-30.90917826228259,0,2,2,2019,14,2,50,55,1,2,0,27.37689148829671,27.37689148829671,0,0,0,0,0,0,0,0,0,0,38.62,55.04,51.83,57.2,3.333333333333333,1,1,0,0,8,10,5,1,779,448360.0220995278,126985.1110322901,482029.0548506753,256776.5891295435,4933.52997009595 -6438,7983,14476,14475,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.799855777415606,7.680922601625784,0,7,0,-21.16674044683715,0,3,2,2019,10,0,32,34,1,0,0,13.221643333243,13.221643333243,0,0,0,0,0,0,0,0,.1690229237481482,0,51.83,57.2,38.62,55.04,8.333333333333334,1,1,0,0,7,10,5,1,779,448360.0220995278,126985.1110322901,482029.0548506753,256776.5891295435,4933.52997009595 -6439,7984,14477,14478,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,7.998657631232598,7.937520840412279,0,11,0,-103.93610033963,0,2,2,2019,20,8,40,38,1,8,0,10.66228688703035,10.66228688703035,0,0,0,0,0,0,0,0,.4005234572764406,0,34.13,61.39,60.69,53.18,8.333333333333334,1,1,0,0,11,10,5,1,879,113614.6845154662,81573.5928859218,213092.6117006218,160569.0113838142,3204.431243545319 -6439,7984,14478,14477,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.884482249029768,8.920899879485251,0,11,0,3.431284034054381,0,2,2,2019,7,0,36,37,1,0,0,20.83458313702874,20.83458313702874,0,0,0,0,0,0,0,0,0,0,60.69,53.18,34.13,61.39,8.333333333333334,1,1,0,0,12,10,5,1,879,113614.6845154662,81573.5928859218,213092.6117006218,160569.0113838142,3204.431243545319 -6440,7985,14479,14480,-9,-9,1,1,62,1,2,0,2,2,-9,0,2,7.742286164725857,8.212588826636633,0,9,22,94.19924266112515,0,2,2,2019,12,1,37,37,1,1,0,8.616140100729025,8.616140100729025,0,0,0,0,0,1,1,0,0,0,44.84,49.01,46.22,47,5,3,4,0,1,8,6,3,0,294.5,147896.8868254432,81369.91508716543,0,0,2296.467420079025 -6440,7985,14480,14479,-9,-9,1,0,40,1,2,0,3,3,-9,0,2,8.090378001437813,8.023097384806993,0,9,-22,85.45877653177963,0,3,3,2019,18,4,40,18,1,4,0,8.659264458516002,8.659264458516002,0,0,0,0,0,1,1,0,0,0,46.22,47,44.84,49.01,5,3,4,0,1,2,6,3,0,294.5,147896.8868254432,81369.91508716543,0,0,2296.467420079025 -6440,7985,14481,-9,14480,14479,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1182.577044424727,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,3,0,294.5,147896.8868254432,81369.91508716543,0,0,2296.467420079025 -6440,7985,14482,-9,14480,14479,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.830904688028,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,3,0,294.5,147896.8868254432,81369.91508716543,0,0,2296.467420079025 -6441,7986,14483,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.318905819647505,6.401796471492315,0,0,-1042.330562104877,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,5.401039394664414,12.06616381465781,63.57481650961372,0,1,1,0,4.680156045244051,6.422956009593104,53.05,30.95,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,440,-14067.3401479304,-68474.55547773503,153322.8014202706,0,1398.525875080818 -6442,7987,14484,-9,14485,14486,1,1,35,0,0,0,2,2,-9,0,2,6.572629885706363,6.640916919815538,0,0,0,-1057.395402060779,0,1,1,2019,12,0,60,48,1,0,0,1.301097682214679,1.301097682214679,0,0,0,0,0,1,1,0,0,0,45.7,48.39,-9,-9,8.333333333333334,1,1,0,1,12,7,2,1,484,-49759.51732302945,32582.01707446781,0,0,707.6010098721192 -6442,7988,14485,14486,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.63405946344818,8.200016425768444,39,-3,-42.6852272710919,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.460992657029291,8.059406457669919,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,712.5,2887642.097055168,2249792.484279934,479985.2238024112,0,7070.913367265428 -6442,7988,14486,14485,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,9.324212299982557,9.063468670351341,43,3,-44.62626010457131,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.018445119043314,9.433239910911967,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,712.5,2887642.097055168,2249792.484279934,479985.2238024112,0,7070.913367265428 -6443,7989,14487,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.871941118004376,8.708715608218435,0,0,0,-998.5317806455433,0,2,2,2019,9,3,66,66,1,3,0,14.42470120348143,14.42470120348143,0,0,0,0,0,0,0,0,0,0,42.92,50.6,-9,-9,6.666666666666667,2,3,0,0,9,7,5,1,745,1132750.442529715,919254.0217909258,320354.2367168956,0,2989.41227508205 -6444,7990,14488,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,6.438289062437309,7.1688423491399,0,0,-985.2759813858521,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.884567533771145,6.617664460911587,57.7,55.88,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,771,70124.60158546813,119886.4218712498,0,0,1739.420167804957 -6445,7991,14489,14490,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,5.275700016951679,5.249970709778599,0,11,-4,-23.68418721466199,0,-9,-9,2019,8,0,35,15,1,0,0,.6775390472570252,.6775390472570252,0,0,0,0,2,0,0,0,3.301697717782291,0,54.1,59.11,59.43,58.05,6.666666666666667,1,1,0,0,7,8,2,1,201.5,755620.991881195,344509.7720781376,253800.3982175405,0,2070.532339853767 -6445,7991,14490,14489,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.348807106198533,7.567204242334094,0,6,4,-75.89244476720786,0,-9,-9,2019,4,0,60,40,1,0,0,2.424255903138378,2.424255903138378,0,0,0,0,2,0,0,0,7.824471836839927,0,59.43,58.05,54.1,59.11,8.333333333333334,1,1,0,0,5,8,2,1,201.5,755620.991881195,344509.7720781376,253800.3982175405,0,2070.532339853767 -6446,7992,14491,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.623601170148611,8.802366433966672,0,0,0,-881.6463263098942,0,3,3,2019,7,0,53,88,1,0,0,14.57122141426272,14.57122141426272,0,0,0,0,0,1,1,0,8.328550244116562,0,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1007,797432.3976849798,352537.7786094268,202286.8374564878,0,5004.446024634643 -6447,7993,14492,14493,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.323561003651394,7.392580358568512,0,6,-6,180.2331107432324,0,-9,-9,2019,6,0,30,30,1,0,0,6.266770244150344,6.266770244150344,0,0,0,0,0,1,1,0,.2766703398890304,0,61.12,51.57,69.09,17.02,8.333333333333334,1,1,0,0,13,5,3,1,2379,1515575.283683538,1083507.270411568,234562.4428220572,0,2416.096948917728 -6447,7993,14493,14492,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.069249328471809,7.101929423170807,6,6,58.31596569113574,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,.4928528902217679,0,0,1,1,0,6.892789754574506,7.025009436210414,69.09,17.02,61.12,51.57,6.666666666666667,1,1,0,0,0,5,3,1,2379,1515575.283683538,1083507.270411568,234562.4428220572,0,2416.096948917728 -6448,7994,14494,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.800800051641504,9.223429156391427,0,0,0,-1010.36768551126,0,2,2,2019,7,0,54,59,1,0,0,11.76675862817054,11.76675862817054,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,156,612488.2714354737,511938.4471217544,264613.2860486127,143553.8164374231,2527.538611695602 -6449,7995,14495,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.845509881017384,7.884464629408368,0,0,0,-971.8655487382018,0,2,3,2019,22,8,33,32,1,8,0,9.248609223014176,9.248609223014176,0,0,0,0,0,0,0,0,0,0,30.55,57.72,-9,-9,3.333333333333333,3,4,0,1,10,8,4,1,1753,249394.4094351114,45314.27053229716,0,0,591.0450044717782 -6449,7996,14496,-9,14495,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1089.344270664583,0,2,-9,2019,26,11,0,22,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,32.23,64.71000000000001,-9,-9,3.333333333333333,3,4,1,1,3,8,1,1,977,-73362.38902145544,0,0,0,0 -6450,7997,14497,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.309299464786,0,3,3,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.285118759619003,0,62.63,31.68,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,230,57703.90222820704,0,0,0,1011.438878216245 -6451,7998,14498,14499,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,32,6,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.59,20.26,46.08,57.2,5,2,3,0,0,3,4,1,1,312,134833.4347523156,0,131078.0172760217,24142.2608475407,911.6331315179569 -6451,7998,14499,14498,-9,-9,1,0,49,0,0,0,3,3,-9,1,3,0,0,0,32,-6,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46.08,57.2,33.59,20.26,5,2,3,0,0,0,4,1,1,312,134833.4347523156,0,131078.0172760217,24142.2608475407,911.6331315179569 -6451,7999,14500,-9,14499,14498,1,1,20,0,0,0,2,2,-9,0,4,6.482102772820702,6.284674194599948,0,0,0,-947.7384005684781,-9,3,3,2019,10,0,37,0,1,1,1,1.821540470872659,1.821540470872659,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,4,2,1,112,31540.81167510601,0,0,0,664.0646331058153 -6451,8000,14501,-9,14499,14498,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-902.046762094481,-9,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,4,1,1,452,132848.877403078,130463.5514682626,0,0,608.1273056238163 -6452,8001,14502,14503,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.68057273371585,7.825833776060597,0,2,-4,69.84420346061877,-9,-9,-9,2019,10,0,35,0,1,1,0,6.775503124117009,6.775503124117009,0,0,0,0,74.5,1,1,0,5.606266927861765,0,52,53,54,53,8,2,3,0,0,9,8,5,1,411.5,854929.9196905362,21047.75688830628,258171.2049340478,0,3330.030529807665 -6452,8001,14503,14502,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.672860861757096,8.722159872997103,0,2,4,37.53478126557339,0,3,2,2019,9,0,47,48,1,0,0,15.91809560879405,15.91809560879405,0,0,0,0,2,1,1,0,.0545672905421567,0,54,53,52,53,8,2,3,0,0,9,8,5,1,411.5,854929.9196905362,21047.75688830628,258171.2049340478,0,3330.030529807665 -6452,8002,14504,14505,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.218587257905639,7.009200737018318,0,2,-4,-88.42210814721082,-9,-9,-9,2019,6,0,25,0,1,0,0,8.241378333510147,8.241378333510147,0,0,0,0,74.5,1,1,0,0,0,52.91,55.33,60.02,56.42,8.333333333333334,2,3,0,0,2,8,5,1,944,159862.4165929294,55555.90628155191,335817.1996330903,267885.1753088175,3318.451989233545 -6452,8002,14505,14504,14502,14503,1,1,30,0,0,0,1,1,-9,0,5,9.075385892060273,8.999274255401351,0,2,4,137.3671957054145,-9,3,2,2019,11,0,48,0,1,0,0,18.21408792996824,18.21408792996824,0,0,0,0,7,1,1,0,0,0,60.02,56.42,52.91,55.33,5,2,3,0,0,5,8,5,1,944,159862.4165929294,55555.90628155191,335817.1996330903,267885.1753088175,3318.451989233545 -6453,8003,14506,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.488467851727628,7.540105187870049,0,0,0,-868.0077513988383,0,3,3,2019,10,0,24,23,1,0,0,10.44351474961118,10.44351474961118,0,0,0,0,0,1,1,0,0,0,51.25,48.45,-9,-9,1.666666666666667,3,4,0,1,9,9,3,0,66,-7972.54923540155,50172.07184779135,0,0,1787.882512591766 -6454,8004,14507,14508,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,8.658442939531101,8.41497847611528,29,11,-85.40234821226566,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.154806224928642,8.245225875635031,53.82,45.88,20.8,53.42,8.333333333333334,1,1,0,0,0,2,4,1,1030.5,1199830.406482876,891146.6462265834,197959.5170977537,0,2934.663214401268 -6454,8004,14508,14507,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.707794346315868,7.494878222212991,0,33,-11,240.3589254182116,0,3,3,2019,25,11,38,39,1,11,0,5.905527336941986,5.905527336941986,0,0,0,0,2,1,1,0,0,0,20.8,53.42,53.82,45.88,8.333333333333334,1,1,0,0,9,2,4,1,1030.5,1199830.406482876,891146.6462265834,197959.5170977537,0,2934.663214401268 -6455,8005,14509,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.183971133181743,7.895927088529853,0,0,0,-983.0013364644998,0,-9,-9,2019,13,2,30,16,1,2,0,9.664498105974612,9.664498105974612,0,0,0,0,0,0,0,0,3.454084013000936,0,42.63,54.83,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,318,117972.7365301517,-43728.75804609149,229872.8346280338,0,1435.358491774258 -6455,8006,14510,-9,14509,-9,1,0,19,0,0,0,2,2,-9,0,5,7.526448145620606,7.823943200493813,0,0,0,-1082.18715006356,0,2,-9,2019,18,6,34,38,1,6,1,7.309615234457779,7.309615234457779,0,0,0,0,0,0,0,0,0,0,31.3,62.97,-9,-9,5,1,1,0,0,4,9,3,1,972,-215064.3288986047,0,0,0,971.0646467347191 -6456,8007,14511,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,5.35955960328917,5.285874827505176,0,0,-1111.918422959553,0,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,5.22112771222873,5.283512820601901,20.38,26.17,-9,-9,0,1,1,0,1,7,12,2,0,1096,43401.47970272428,0,0,0,57.45865530457866 -6457,8008,14512,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.301063701442173,8.115882153427997,0,0,0,-1090.586905968841,0,2,3,2019,8,0,24,26,1,0,0,17.82684957696901,17.82684957696901,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,480,560948.8157129493,318550.283423538,197033.1176741016,115254.2837043702,1930.128173538002 -6457,8009,14513,-9,14512,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-975.8209388907877,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,280,117487.119203885,0,0,0,-166.4079246051422 -6458,8010,14514,14516,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,7.961765413013938,8.047054672919737,0,8,-1,5.721333636900604,0,2,3,2019,14,3,24,22,1,3,0,17.32616678384307,17.32616678384307,0,0,0,0,0,1,1,0,0,0,46.32,53.44,40.24,54.56,8.333333333333334,1,1,0,0,7,8,4,1,409.3333333333333,663839.0651150271,57029.72351282018,623559.5591633698,106099.6470804906,3851.225198619969 -6458,8010,14515,-9,14514,14516,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.158460765087,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,1,409.3333333333333,663839.0651150271,57029.72351282018,623559.5591633698,106099.6470804906,3851.225198619969 -6458,8010,14516,14514,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.803464207121733,8.735849235925098,0,8,1,.4620203940891933,0,2,2,2019,13,2,40,37,1,2,0,16.84648132806537,16.84648132806537,0,0,0,0,0,1,1,0,0,0,40.24,54.56,46.32,53.44,6.666666666666667,2,3,0,0,9,8,4,1,409.3333333333333,663839.0651150271,57029.72351282018,623559.5591633698,106099.6470804906,3851.225198619969 -6459,8011,14517,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.198232800584142,8.498995297473982,6.472653270994558,0,0,-1051.52817157984,0,3,3,2019,11,1,37,38,1,1,0,9.170615424660083,9.170615424660083,0,0,0,0,0,1,1,0,6.947058428562968,0,33.9,60.31,-9,-9,3.333333333333333,1,1,0,1,9,12,4,1,1369,457448.0101097144,0,222424.8854474708,0,1975.465078512893 -6459,8011,14518,-9,14517,-9,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-903.1650549564854,-9,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.03,38.37,-9,-9,8.333333333333334,1,1,0,0,1,12,4,1,1369,457448.0101097144,0,222424.8854474708,0,1975.465078512893 -6460,8012,14519,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,0,0,0,0,0,-946.3008884075642,1,2,1,2019,13,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,3,9,1,0,474,-125043.767245992,0,0,0,1739.445092169729 -6461,8013,14520,-9,-9,-9,1,0,39,1,1,0,2,2,-9,0,5,8.268738365538162,8.248865806960891,0,0,0,-949.3059958987172,0,2,3,2019,9,0,38,38,1,0,0,12.73222402851562,12.73222402851562,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,333,127354.7371572235,9676.94306690566,58523.35418100475,56055.92389652417,2168.85193846481 -6461,8013,14521,-9,14520,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-872.7666405432308,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,333,127354.7371572235,9676.94306690566,58523.35418100475,56055.92389652417,2168.85193846481 -6462,8014,14522,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-911.7179224218123,1,-9,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.433481009313864,0,58.07,24.71,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,166,95554.95682267848,-65853.59492325912,259906.092133481,0,46.34450428464543 -6463,8015,14523,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.961291380761555,7.959157725965833,0,0,0,-1074.232344024564,-9,-9,-9,2019,17,5,53,0,1,5,0,6.273865621006568,6.273865621006568,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,3.333333333333333,1,1,0,0,4,11,4,0,1082,-43741.88955357325,0,0,0,1033.694778778299 -6464,8016,14524,-9,14526,14525,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.9069765400712,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1304.75,68895.36019791347,66511.82536342122,79587.6245382544,66177.58637627296,2770.371616393542 -6464,8016,14525,14526,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.121828202336182,8.205607852445663,0,17,4,-75.51565373824201,0,2,2,2019,18,6,35,49,1,6,0,13.93881131143313,13.93881131143313,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.4,55.04,6.666666666666667,1,1,0,0,9,4,4,1,1304.75,68895.36019791347,66511.82536342122,79587.6245382544,66177.58637627296,2770.371616393542 -6464,8016,14526,14525,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.004016774136559,8.075406041368696,0,17,-4,30.31273010223127,0,2,2,2019,10,0,34,32,1,0,0,8.315298457050087,8.315298457050087,0,0,0,0,0,1,1,0,1.448095700033331,0,50.4,55.04,51.24,58.84,6.666666666666667,1,1,0,0,10,4,4,1,1304.75,68895.36019791347,66511.82536342122,79587.6245382544,66177.58637627296,2770.371616393542 -6464,8016,14527,-9,14526,14525,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.0419074720566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1304.75,68895.36019791347,66511.82536342122,79587.6245382544,66177.58637627296,2770.371616393542 -6465,8017,14528,14529,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.390583358679109,8.106992028762322,9,1,-85.76453689796584,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.904525683989869,57.16,56.15,48.28,22.7,8.333333333333334,1,1,0,0,1,12,4,1,602.5,1617318.90268822,1280558.341833029,229460.8028585107,0,2299.501510875633 -6465,8017,14529,14528,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.926039068252491,7.35700112200946,9,-1,57.7103657660506,0,2,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,7,0,0,0,5.425836600156305,6.730183944546866,48.28,22.7,57.16,56.15,6.666666666666667,1,1,0,0,8,12,4,1,602.5,1617318.90268822,1280558.341833029,229460.8028585107,0,2299.501510875633 -6466,8018,14530,14531,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,36,-2,-99.50815641894572,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,35.17,47.45,36.11,5,2,3,0,0,1,6,3,1,212,625951.5782153257,373826.7248787815,153682.4071772266,0,1083.761552734426 -6466,8018,14531,14530,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.175255418318649,7.735668300710373,0,36,2,-16.15347777981444,0,3,3,2019,10,0,30,0,1,0,0,10.34735609080794,10.34735609080794,0,0,0,0,0,1,1,0,0,0,47.45,36.11,49.29,35.17,5,2,3,0,0,6,6,3,1,212,625951.5782153257,373826.7248787815,153682.4071772266,0,1083.761552734426 -6466,8019,14532,14533,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,1,-1,-97.48256740645573,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.51,50.31,49,58,6.666666666666667,2,3,0,0,0,6,3,1,1032.5,240690.7041007481,40311.08080769282,222177.8295287814,134185.382304814,1301.333590507048 -6466,8019,14533,14532,14530,14531,1,1,25,0,0,0,2,2,-9,0,4,7.832962290179736,7.966380327976602,0,1,1,-108.3176596453176,0,3,3,2019,10,0,40,38,1,1,0,8.57077219754494,8.57077219754494,0,0,0,0,0,1,1,0,0,0,49,58,58.51,50.31,7,2,3,0,0,6,6,3,1,1032.5,240690.7041007481,40311.08080769282,222177.8295287814,134185.382304814,1301.333590507048 -6467,8020,14534,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.363117266881987,6.35369626029147,0,0,-1045.914137495717,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.628787934763447,6.463335238606223,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,679,203109.8867303728,55623.09676029423,0,0,764.1760120001564 -6468,8021,14535,14536,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.687529385252565,8.657408292927144,7.387059437290009,29,-7,-69.74876944401558,0,3,3,2019,10,0,44,44,1,0,0,11.73363308990815,11.73363308990815,0,0,0,0,0,1,1,0,3.64048210828402,7.736317147790701,54.2,57.49,60.69,53.18,8.333333333333334,1,1,0,0,12,6,5,1,357,1023536.905915047,689884.3373551136,155137.2568715819,77649.9644754859,5111.319443201375 -6468,8021,14536,14535,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.259206143440155,7.797633661670176,11,7,25.1831850176293,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.648907583800156,7.866317772644315,60.69,53.18,54.2,57.49,10,1,1,0,0,9,6,5,1,357,1023536.905915047,689884.3373551136,155137.2568715819,77649.9644754859,5111.319443201375 -6469,8022,14537,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.260419512037,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.330100972821706,0,0,1,1,0,3.597273527887705,0,61.09,22.45,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,118,87198.53500952185,0,0,0,1029.922811992928 -6470,8023,14538,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.395023330389271,7.265555605613148,0,0,0,-894.0399401608007,0,2,3,2019,6,0,21,21,1,0,0,8.776445704700141,8.776445704700141,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,473,-15048.24634545893,-13557.69393673935,0,0,1018.609904873732 -6471,8024,14539,14540,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,8.645940718704082,8.907892502133173,0,7,10,-70.85685741879252,0,-9,-9,2019,5,0,60,60,1,0,0,9.404039819349993,9.404039819349993,0,0,0,0,2,0,0,0,0,0,37.38,50.66,54.2,57.49,10,1,1,0,0,7,2,4,1,820.5,377622.5524432871,139741.9100424781,107710.2089264328,36770.6060076843,2937.577104971835 -6471,8024,14540,14539,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.351413183644779,7.259249164904174,0,7,-10,84.48797143801981,0,-9,-9,2019,5,0,34,39,1,0,0,6.218332859128033,6.218332859128033,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37.38,50.66,8.333333333333334,1,1,0,0,9,2,4,1,820.5,377622.5524432871,139741.9100424781,107710.2089264328,36770.6060076843,2937.577104971835 -6472,8025,14541,14544,-9,-9,1,1,28,0,2,0,2,2,-9,0,4,8.692115866024048,8.922169601446598,0,6,1,-77.05721540715592,0,3,3,2019,7,0,49,45,1,0,0,17.855284018366,17.855284018366,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.5,58.26,1.666666666666667,1,1,0,0,7,11,4,1,608.75,378789.4083464731,12138.04124068175,0,0,3063.842529758153 -6472,8025,14542,-9,14544,14541,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.628142484876,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,608.75,378789.4083464731,12138.04124068175,0,0,3063.842529758153 -6472,8025,14543,-9,14544,14541,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.1562852455978,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,608.75,378789.4083464731,12138.04124068175,0,0,3063.842529758153 -6472,8025,14544,14541,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,8.138689876896422,7.761548630829823,0,6,-1,-94.26050162200549,0,3,2,2019,8,0,37,37,1,0,0,7.332429455770392,7.332429455770392,0,0,0,0,0,1,1,0,0,0,46.5,58.26,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,608.75,378789.4083464731,12138.04124068175,0,0,3063.842529758153 -6473,8026,14545,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,7.126440697076655,7.174203491031922,0,0,-1022.322939645768,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.981817863987695,54.69,57.47,-9,-9,10,1,1,0,0,0,12,2,0,150,86434.14292873525,9764.185933192712,112304.177612065,0,586.0681926307466 -6474,8027,14546,14547,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,8.368965109392271,8.490932460620783,0,15,5,109.1379868648754,0,3,1,2019,12,0,37,37,1,0,0,18.21230218877937,18.21230218877937,0,0,0,0,0,1,1,0,0,0,42.7,49.18,35.48,28.6,6.666666666666667,2,3,0,1,12,7,3,0,822.25,130542.1917542182,113191.4054982395,215347.7866311477,152986.497733933,2401.656287432439 -6474,8027,14547,14546,-9,-9,1,0,35,0,3,0,1,1,-9,0,1,0,0,0,15,-5,-91.55583896447769,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.532439568309155,0,35.48,28.6,42.7,49.18,6.666666666666667,2,3,1,1,7,7,3,0,822.25,130542.1917542182,113191.4054982395,215347.7866311477,152986.497733933,2401.656287432439 -6474,8027,14548,-9,14547,14546,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.333405727071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,7,3,0,822.25,130542.1917542182,113191.4054982395,215347.7866311477,152986.497733933,2401.656287432439 -6474,8027,14549,-9,14547,14546,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.8640386216845,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,7,3,0,822.25,130542.1917542182,113191.4054982395,215347.7866311477,152986.497733933,2401.656287432439 -6475,8028,14550,14551,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.037148264516059,8.795918220304724,0,35,0,51.91159883259189,0,2,2,2019,14,3,40,40,1,3,0,21.37850373632278,21.37850373632278,0,0,0,0,2,1,1,0,4.969689922972279,0,42.11,56.11,45.81,61.51,6.666666666666667,1,1,0,0,10,12,5,1,201.5,3955946.549156638,3365913.751271929,343592.8749071697,32941.49408649008,6613.195029967976 -6475,8028,14551,14550,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.527876539934892,9.383558233561311,0,36,0,49.1578493899863,0,2,2,2019,10,1,42,43,1,1,0,32.47862217712574,32.47862217712574,0,0,0,0,7,1,1,0,6.205037033816969,0,45.81,61.51,42.11,56.11,8.333333333333334,1,1,0,0,10,12,5,1,201.5,3955946.549156638,3365913.751271929,343592.8749071697,32941.49408649008,6613.195029967976 -6475,8029,14552,-9,14551,14550,1,0,27,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1054.920932451258,0,1,1,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,35.39,59.2,-9,-9,10,1,1,1,0,6,12,1,1,702,18265.62234873441,0,0,0,1334.728269308744 -6475,8030,14553,-9,14551,14550,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.523796145324,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.214461123959352,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,3010,0,0,0,0,-325.6744372848581 -6476,8031,14554,-9,14555,14556,1,0,52,0,0,0,2,2,-9,0,4,7.632194727133252,8.311999468578241,0,0,0,-1030.787483998954,0,3,3,2019,11,0,40,40,1,0,0,7.171321646750572,7.171321646750572,0,0,0,0,86,1,1,0,5.097810777652656,0,42.95,61.24,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,190,24342.95768276768,23875.24564699392,0,0,1445.858287401816 -6476,8032,14555,14556,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,3,-2,49.74634934218052,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,3.518064188894239,9.083865485002727,16.5026966663301,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,6,2,1,722,263468.7346984929,124170.0768843762,187029.9385208525,0,2044.404573454779 -6476,8032,14556,14555,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.563339626802642,6.423009875165622,3,2,18.33756329389043,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,6.804742146137155,55,45,53,45,8,1,1,0,0,0,6,2,1,722,263468.7346984929,124170.0768843762,187029.9385208525,0,2044.404573454779 -6477,8033,14557,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.420082945209229,7.957344262862808,0,0,-941.8368292609814,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.568009594473045,61.27,40.86,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1693,557430.5998257274,175881.5244170073,321753.7135227369,0,1292.334648316361 -6478,8034,14558,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.925842745316438,7.563876172883599,0,0,-1048.401338163254,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.328610311422318,0,28.07323473796,0,1,1,0,5.180368049277623,7.430538989860776,45.63,46.6,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,390,541308.7747722124,82179.19736575727,376988.7741266815,0,2043.792660263418 -6479,8035,14559,14560,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.305427677236546,8.522618846058451,6.093687032621492,6,-4,6.375701403208741,0,3,2,2019,10,0,34,27,1,0,0,15.0005086038116,15.0005086038116,1,0,0,0,0,1,1,0,3.640736768680611,6.492228889385314,59.84,30.34,36.95,33.09,8.333333333333334,1,1,0,0,7,7,4,1,419,3487315.966750791,0,3500960.002064622,90247.36959446922,3011.836542104923 -6479,8035,14560,14559,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.078548536145572,7.02860559069035,6,4,167.1543346278331,0,2,1,2019,22,10,0,5,4,10,0,0,0,0,0,0,0,0,1,1,0,3.338635495668292,6.875932463212938,36.95,33.09,59.84,30.34,5,1,1,0,0,6,7,4,1,419,3487315.966750791,0,3500960.002064622,90247.36959446922,3011.836542104923 -6480,8036,14561,14562,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-112.8170255195541,-9,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,.4927473593511603,0,58.91,45.88,52.85,30.02,8.333333333333334,1,1,0,0,2,6,4,1,566,1206331.373663452,467516.3725982339,558634.6098474134,170507.7312380793,1923.025413036666 -6480,8036,14562,14561,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.643121213208101,8.474315265553429,0,5,1,-65.23045642349521,-9,-9,-9,2019,7,0,50,0,1,0,0,9.995529899455203,9.995529899455203,0,0,0,0,0,0,0,0,0,0,52.85,30.02,58.91,45.88,6.666666666666667,1,1,0,0,11,6,4,1,566,1206331.373663452,467516.3725982339,558634.6098474134,170507.7312380793,1923.025413036666 -6481,8037,14563,14564,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.498929347853725,8.780753357975952,0,33,1,.2545628855236682,0,3,3,2019,10,0,40,60,1,0,0,14.24853257184865,14.24853257184865,0,0,0,0,0,0,0,0,3.878604854722111,0,56.34,38.73,61.43,43.34,5,1,1,0,0,12,7,5,1,367.5,362236.0641728872,152288.3326874863,275017.3280223189,98170.65290974382,3580.813618366889 -6481,8037,14564,14563,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.021904619652506,7.947496467520766,0,34,-1,-29.05370699555887,0,2,2,2019,7,0,60,66,1,0,0,5.39749138016114,5.39749138016114,0,0,0,0,0,0,0,0,1.354305047432458,0,61.43,43.34,56.34,38.73,6.666666666666667,1,1,0,0,12,7,5,1,367.5,362236.0641728872,152288.3326874863,275017.3280223189,98170.65290974382,3580.813618366889 -6481,8038,14565,-9,14563,14564,1,0,25,0,0,0,1,1,-9,0,4,7.353387608201499,7.279447214666377,0,0,0,-1065.67152470145,-9,1,1,2019,12,4,40,0,1,4,1,3.712687892332218,3.712687892332218,0,0,0,0,0,0,0,0,1.016610292119613,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,689,32288.22606747524,-20703.40143254148,0,0,741.0226206742323 -6482,8039,14566,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.596804017932378,8.526379487506562,0,0,0,-1078.973690449644,0,-9,-9,2019,12,0,39,41,1,0,0,13.14957557788096,13.14957557788096,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,6,9,5,1,212,59994.9633362435,-40534.11561319456,0,0,1451.324225890676 -6483,8040,14567,14568,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.285563977740726,6.061707567441649,8,-6,8.978726921289645,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.530278128152812,6.379737720705649,62.43,29.37,52,54.51,8.333333333333334,1,1,0,0,0,13,2,1,802,161871.0356148077,141243.9219445973,0,0,1531.844090421907 -6483,8040,14568,14567,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,4.18155986216155,4.175724299773894,8,6,-68.59324685131672,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,7.799454146081292,0,0,1,1,0,4.768830016939313,4.175687349947728,52,54.51,62.43,29.37,10,1,1,0,0,0,13,2,1,802,161871.0356148077,141243.9219445973,0,0,1531.844090421907 -6484,8041,14569,14570,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.504127458949116,8.860706314183444,0,14,4,-11.96487970386235,0,3,3,2019,9,0,40,40,1,1,0,16.33273149597,16.33273149597,0,0,0,0,2,1,1,0,0,0,53,54,60.3,46.58,7,1,1,0,0,1,9,5,1,1961,1256836.913204998,879328.7125851945,494605.2062627508,83859.6949873408,3775.111068748261 -6484,8041,14570,14569,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.368924284317242,8.673167194265329,6.863981256280866,14,-4,115.4406727832511,0,3,3,2019,4,0,28,31,1,0,0,15.60471271731948,15.60471271731948,0,0,0,0,0,1,1,0,6.76127977893321,0,60.3,46.58,53,54,8.333333333333334,1,1,0,0,8,9,5,1,1961,1256836.913204998,879328.7125851945,494605.2062627508,83859.6949873408,3775.111068748261 -6485,8042,14571,14572,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.061683587891982,7.560288828683429,49,-4,1.756843011161131,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,119.1184074015984,0,0,1,1,0,6.812658744479929,7.366001931567181,47.36,16.34,48.53,58.91,8.333333333333334,1,1,0,0,0,10,2,0,539.5,347157.9296555487,123530.008991278,174804.5883933119,0,2831.375224818427 -6485,8042,14572,14571,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,4,-28.86166279944604,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,48.53,58.91,47.36,16.34,8.333333333333334,1,1,0,0,3,10,2,0,539.5,347157.9296555487,123530.008991278,174804.5883933119,0,2831.375224818427 -6486,8043,14573,-9,14574,14576,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-939.483048196312,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.636231098717511,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,4,1,541,842252.9603072066,796198.453438371,268812.0554081915,188852.2329998888,3257.685188285812 -6486,8043,14574,14576,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.268203831622674,8.473793034993776,0,14,-8,-121.2853487545086,0,2,3,2019,10,0,37,37,1,0,0,10.77418403954394,10.77418403954394,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,9,1,4,1,541,842252.9603072066,796198.453438371,268812.0554081915,188852.2329998888,3257.685188285812 -6486,8043,14575,-9,14574,14576,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.181087591256,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,541,842252.9603072066,796198.453438371,268812.0554081915,188852.2329998888,3257.685188285812 -6486,8043,14576,14574,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.367327696185031,8.343885958834843,0,15,8,31.8561698977046,0,3,3,2019,7,0,37,37,1,0,0,14.6238020341305,14.6238020341305,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,10,1,4,1,541,842252.9603072066,796198.453438371,268812.0554081915,188852.2329998888,3257.685188285812 -6487,8044,14577,-9,14578,14580,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.401290297659,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,271.5,530156.026975141,409313.6713329416,381197.2702374689,276344.7624388655,5100.239230101017 -6487,8044,14578,14580,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.332907788228205,8.361155695141306,0,2,-1,19.39133503412237,0,1,3,2019,14,2,45,43,1,2,0,13.63083132770199,13.63083132770199,0,0,0,0,2,1,1,0,0,0,52.22,53.26,41.55,59.5,6.666666666666667,1,1,0,0,11,13,5,1,271.5,530156.026975141,409313.6713329416,381197.2702374689,276344.7624388655,5100.239230101017 -6487,8044,14579,-9,14578,14580,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1008.245389389027,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,5,1,271.5,530156.026975141,409313.6713329416,381197.2702374689,276344.7624388655,5100.239230101017 -6487,8044,14580,14578,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.647774559022626,8.714847167682231,0,2,1,47.01799751215052,0,-9,-9,2019,17,5,46,52,1,5,0,15.66089992988721,15.66089992988721,0,0,0,0,0,1,1,0,6.749581892187422,0,41.55,59.5,52.22,53.26,3.333333333333333,1,1,0,0,11,13,5,1,271.5,530156.026975141,409313.6713329416,381197.2702374689,276344.7624388655,5100.239230101017 -6488,8045,14581,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.666780291076767,8.571339136289193,0,0,0,-1016.643057457268,0,2,3,2019,16,4,36,35,1,4,0,18.68393397345595,18.68393397345595,0,0,0,0,0,0,0,0,2.608658080242207,0,21.11,55.34,-9,-9,1.666666666666667,1,1,0,0,8,7,5,1,425,267326.8710087325,163612.1489152614,231520.5204343484,42783.53941491868,1835.625609972985 -6489,8046,14582,14583,-9,-9,1,0,35,0,0,0,2,2,-9,0,5,8.470827761319354,8.729544506701208,0,5,-5,-35.49380117436168,0,2,2,2019,9,1,40,40,1,1,0,16.32943058006739,16.32943058006739,0,0,0,0,0,0,0,0,1.148763657040445,0,57.06,57.76,43.2,59.97,8.333333333333334,1,1,0,0,8,5,5,1,323.5,1472398.498352007,1335764.943877176,176450.5007147211,94245.82568140393,3224.047417069239 -6489,8046,14583,14582,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.816546995237124,7.773757213599322,0,5,5,-88.39062905342948,0,3,3,2019,12,1,40,40,1,1,0,7.278411170576747,7.278411170576747,0,0,0,0,2,0,0,0,0,0,43.2,59.97,57.06,57.76,8.333333333333334,1,1,0,0,3,5,5,1,323.5,1472398.498352007,1335764.943877176,176450.5007147211,94245.82568140393,3224.047417069239 -6490,8047,14584,14585,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,3.786087289789224,4.052262825842152,38,3,-106.8844711541431,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.625622915024458,4.127408756718842,46.46,25.4,42.27,55.97,5,3,4,0,1,0,5,3,0,470,54633.51748871162,13288.06445239092,51715.9744231119,0,1719.735842830578 -6490,8047,14585,14584,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.852519562443459,7.754852239172074,0,38,-3,10.37120878430792,0,3,3,2019,11,0,26,26,1,0,0,9.70354062237816,9.70354062237816,0,0,0,0,14.5,1,1,0,0,0,42.27,55.97,46.46,25.4,8.333333333333334,4,2,0,1,9,5,3,0,470,54633.51748871162,13288.06445239092,51715.9744231119,0,1719.735842830578 -6491,8048,14586,14589,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.533559587465495,8.540384100942511,0,18,-1,-79.28059275983566,0,-9,-9,2019,7,0,41,37,1,0,0,19.60153665230604,19.60153665230604,0,0,0,0,0,1,1,0,0,0,49.16,55.59,58.05,54.52,8.333333333333334,3,4,0,1,8,8,4,1,880.8,1859587.506987681,878590.2363520205,855421.1592047528,0,4934.536557963332 -6491,8048,14587,-9,14586,14589,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1159.433276818202,-9,1,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,880.8,1859587.506987681,878590.2363520205,855421.1592047528,0,4934.536557963332 -6491,8048,14588,-9,14586,14589,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.0132917300836,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,880.8,1859587.506987681,878590.2363520205,855421.1592047528,0,4934.536557963332 -6491,8048,14589,14586,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,8.760105443552879,8.811503704959712,0,18,1,46.04084067207683,0,-9,-9,2019,5,0,49,56,1,0,0,17.3755587392492,17.3755587392492,0,0,0,0,0,1,1,0,0,0,58.05,54.52,49.16,55.59,8.333333333333334,3,4,0,1,6,8,4,1,880.8,1859587.506987681,878590.2363520205,855421.1592047528,0,4934.536557963332 -6491,8048,14590,-9,14586,14589,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1056.02980580743,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.43,50.71,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,880.8,1859587.506987681,878590.2363520205,855421.1592047528,0,4934.536557963332 -6492,8049,14591,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,6.60087358366489,6.65011395460871,0,0,0,-974.3503499758511,-9,-9,-9,2019,9,0,65,0,1,0,0,1.879749140214236,1.879749140214236,0,0,0,0,0,0,0,0,1.078488420677564,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,350,38328.63985994469,-3399.968009221993,0,0,246.9888923551729 -6493,8050,14592,14593,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,5.965278671024315,6.310686056445673,4.626992967252581,16,0,94.2609985779124,0,3,-9,2019,10,1,2,2,1,1,0,22.07210452406443,22.07210452406443,0,0,0,0,0,1,1,0,0,4.78313386405606,54.2,57.49,45.88,35.4,10,1,1,0,0,7,5,3,1,335,1119238.613977802,255364.6374396541,419823.6326426225,0,2115.601254799622 -6493,8050,14593,14592,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.395878201919016,7.497755293306049,16,9,7.326712369044427,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,7.620646231117531,6.983522220552889,45.88,35.4,54.2,57.49,6.666666666666667,1,1,0,0,0,5,3,1,335,1119238.613977802,255364.6374396541,419823.6326426225,0,2115.601254799622 -6494,8051,14594,-9,14596,14595,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.1924648335919,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,728.5,146122.6450128894,-12462.72998274358,122906.1171180753,99740.11816849359,2513.16103717481 -6494,8051,14595,14596,-9,-9,1,1,32,1,2,0,2,2,-9,0,5,8.416027672028436,8.442922345477937,0,8,1,94.65542489588933,0,2,2,2019,8,0,50,50,1,0,0,10.73508157875235,10.73508157875235,0,0,0,0,0,1,1,0,0,0,59.43,58.05,48.87,58.55,10,1,1,0,0,10,5,4,1,728.5,146122.6450128894,-12462.72998274358,122906.1171180753,99740.11816849359,2513.16103717481 -6494,8051,14596,14595,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.82159653257327,7.040576893901935,0,8,-1,130.1405847638967,0,-9,-9,2019,11,1,15,15,1,1,0,8.517582797519305,8.517582797519305,0,0,0,0,0,1,1,0,0,0,48.87,58.55,59.43,58.05,8.333333333333334,1,1,0,0,10,5,4,1,728.5,146122.6450128894,-12462.72998274358,122906.1171180753,99740.11816849359,2513.16103717481 -6494,8051,14597,-9,14596,14595,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.814220511555,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,728.5,146122.6450128894,-12462.72998274358,122906.1171180753,99740.11816849359,2513.16103717481 -6495,8052,14598,14599,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.067611660584648,7.933669361115539,9,8,33.9063145015953,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.665098487326577,8.037069292056335,55.35,41.97,30.29,21.51,8.333333333333334,1,1,0,0,2,2,4,1,151,1306682.30980572,786981.3923023929,445327.1263113063,0,3388.712145542992 -6495,8052,14599,14598,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.157080766869657,7.066662595892781,9,-8,-64.92064357794351,0,3,2,2019,31,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,4.544170239351349,7.070795429599137,30.29,21.51,55.35,41.97,6.666666666666667,1,1,0,0,7,2,4,1,151,1306682.30980572,786981.3923023929,445327.1263113063,0,3388.712145542992 -6496,8053,14600,-9,14602,14601,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.016471754598,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,1,0,582.6666666666666,636716.1645104206,348093.8608786318,265681.5787567782,0,2103.724127606648 -6496,8053,14601,14602,-9,-9,1,1,66,0,1,0,2,2,-9,0,1,0,0,0,32,10,0,-9,3,2,2019,19,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,36.42,26.92,50.78,49.37,3.333333333333333,1,1,0,0,0,9,1,0,582.6666666666666,636716.1645104206,348093.8608786318,265681.5787567782,0,2103.724127606648 -6496,8053,14602,14601,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,0,0,32,-10,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50.78,49.37,36.42,26.92,5,1,1,0,1,0,9,1,0,582.6666666666666,636716.1645104206,348093.8608786318,265681.5787567782,0,2103.724127606648 -6496,8054,14603,-9,14602,14601,1,0,21,0,1,0,1,1,-9,1,2,0,0,0,0,0,-1058.252171371486,-9,2,3,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,120,1,1,0,0,0,22.08,42.95,-9,-9,1.666666666666667,1,1,1,0,1,9,1,0,478,4824.134994853228,0,0,0,505.3519987398889 -6497,8055,14604,14605,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.847467708700365,6.708588205644523,48,2,-41.48071819170038,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,37.42247489838444,0,0,1,1,0,7.095492679914257,6.458067582577384,37.1,16.85,40.98,52.59,5,1,1,0,0,9,10,2,1,456,406748.368872517,114914.6896509316,224253.4508214551,0,1186.929424786011 -6497,8055,14605,14604,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,48,-2,-102.7801760982116,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.98,52.59,37.1,16.85,1.666666666666667,1,1,0,0,0,10,2,1,456,406748.368872517,114914.6896509316,224253.4508214551,0,1186.929424786011 -6498,8056,14606,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.46069346755533,7.420503779664651,0,0,0,-897.8877303241461,0,3,-9,2019,15,4,28,28,1,4,0,5.653020434941164,5.653020434941164,0,0,0,0,0,0,0,0,5.416115058752592,0,50.77,40.78,-9,-9,5,1,1,0,0,11,4,3,1,233,395278.4199978785,-10409.73097674004,403737.6537590052,59116.21766549221,973.1756185603112 -6499,8057,14607,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.029939929985304,7.350775310394392,0,0,-933.1193054134135,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.142403058222742,46.64,27.75,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,221,586715.9672507968,504351.0985837622,156843.1180517809,0,1455.002974693581 -6500,8058,14608,14609,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,6.509074634012536,6.308829702067397,9,-3,-55.86316822093682,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,5.93535210511345,45.07,40.64,57.03,48.06,6.666666666666667,1,1,0,0,0,11,4,1,823.5,1632323.884125649,895268.3402262015,281870.01329751,0,1948.919572495979 -6500,8058,14609,14608,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.228110743157975,8.351611544997063,0,9,3,73.77434490039067,0,3,3,2019,8,0,38,38,1,0,0,15.77573277218855,15.77573277218855,0,0,0,0,7,1,1,0,0,0,57.03,48.06,45.07,40.64,8.333333333333334,1,1,0,0,9,11,4,1,823.5,1632323.884125649,895268.3402262015,281870.01329751,0,1948.919572495979 -6500,8059,14610,-9,14608,14609,1,0,26,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1017.173554520016,0,3,1,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,43.97,16.69,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,263,-7418.832465113214,0,0,0,1200.024130272535 -6501,8060,14611,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-986.9918083935019,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.9,21.84,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,203,217591.4275025931,66363.97044150275,57230.16870857124,38929.25787464348,1194.839984113879 -6501,8061,14612,-9,14611,-9,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-954.8483313482033,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,0,327,0,0,0,0,782.0846148745791 -6501,8062,14613,-9,14611,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1063.429803162671,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,0,440,-193844.2746694672,0,0,0,816.7029919980359 -6502,8063,14614,14615,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.77302118748649,6.390637698688256,10,-2,-115.7022136273875,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.448222854317797,6.834162543738711,56,52,47.39,36.31,6.666666666666667,1,1,0,0,0,12,2,1,2666.5,39275.82454937519,0,0,0,1384.940091478771 -6502,8063,14615,14614,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.001312740608742,4.935473497970679,10,2,71.05514561441791,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.377577520836095,5.017027541014241,47.39,36.31,56,52,6.666666666666667,1,1,0,0,0,12,2,1,2666.5,39275.82454937519,0,0,0,1384.940091478771 -6503,8064,14616,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,8.111159911096975,7.786945654687109,5.948665059211836,0,0,-1037.549532918317,0,2,2,2019,11,1,38,38,1,1,0,7.430472504335298,7.430472504335298,0,0,0,0,0,0,0,0,5.359122069323544,5.128179547196721,42.69,35.95,-9,-9,3.333333333333333,1,1,0,0,10,9,4,0,958,98702.51929096777,67458.08606379725,109824.7442437365,33167.61707618526,1189.481033490689 -6504,8065,14617,14618,-9,-9,1,0,36,0,1,0,1,1,-9,0,2,7.766990706042558,7.460127886966604,0,9,1,15.78507834738346,0,2,2,2019,11,0,16,22,1,0,0,14.10244145992181,14.10244145992181,0,0,0,0,0,1,1,0,0,0,60.69,29.25,58.72,51.29,10,1,1,0,0,9,9,4,1,1018,196237.2961313691,91891.68085112089,350910.761621576,230379.4740331424,3032.70594077795 -6504,8065,14618,14617,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.261723288921459,8.119292693368735,0,9,-1,-45.14376836214973,0,1,2,2019,7,1,38,39,1,1,0,13.10800332492268,13.10800332492268,0,0,0,0,0,1,1,0,0,0,58.72,51.29,60.69,29.25,8.333333333333334,1,1,0,0,8,9,4,1,1018,196237.2961313691,91891.68085112089,350910.761621576,230379.4740331424,3032.70594077795 -6504,8065,14619,-9,14617,14618,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.143898921747,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1018,196237.2961313691,91891.68085112089,350910.761621576,230379.4740331424,3032.70594077795 -6505,8066,14620,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.726167712784193,8.772552129047572,5.987963241669028,0,0,-940.6215013499512,0,2,1,2019,15,5,38,35,1,5,0,19.96030757747029,19.96030757747029,0,0,0,0,0,0,0,0,5.906547010031364,0,45.98,54.24,-9,-9,5,1,1,0,0,9,6,5,1,988,996606.4889218066,762577.9352359981,181329.4667825147,0,2482.167164080368 -6505,8066,14621,-9,14620,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-853.8778357721446,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,5,1,988,996606.4889218066,762577.9352359981,181329.4667825147,0,2482.167164080368 -6506,8067,14622,14623,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,56,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.53,56.44,56.1,49.93,8.333333333333334,1,1,0,0,3,2,1,1,629,-29461.6701758663,74340.0029660459,0,0,1608.221010046304 -6506,8067,14623,14622,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,56,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,59.53,56.44,8.333333333333334,1,1,0,0,0,2,1,1,629,-29461.6701758663,74340.0029660459,0,0,1608.221010046304 -6507,8068,14624,14625,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,6.605000334900113,6.753053042289594,0,43,2,50.67683899117542,0,3,3,2019,6,0,37,35,1,0,0,3.28091158690654,3.28091158690654,0,0,0,0,0,0,0,0,0,0,55,53,58.34,36.97,8.333333333333334,1,1,0,0,9,10,3,0,487.5,362109.8473089824,139109.87057432,250229.5625439232,0,847.8372594962373 -6507,8068,14625,14624,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.074907948262282,7.525192561174285,0,43,-2,10.9273840370868,0,3,2,2019,7,0,20,32,1,0,0,8.273559892193621,8.273559892193621,0,0,0,0,0,0,0,0,0,0,58.34,36.97,55,53,10,1,1,0,1,9,10,3,0,487.5,362109.8473089824,139109.87057432,250229.5625439232,0,847.8372594962373 -6508,8069,14626,14627,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,6.719888835908063,8.20253819126294,8.060957938932523,8,1,-63.13020445651289,0,3,2,2019,8,0,60,54,1,0,0,1.434097574498831,1.434097574498831,0,0,0,0,0,0,0,0,8.012651441065822,7.811194895685007,58.57,35.72,44.91,49.93,6.666666666666667,1,1,0,0,8,5,5,1,415,204049.745799413,104100.1841142412,0,0,4456.767139023522 -6508,8069,14627,14626,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.033553516429899,7.722148134371505,0,8,-1,8.499003294196392,0,-9,-9,2019,12,0,70,54,1,0,0,5.111776840143005,5.111776840143005,0,0,0,0,0,0,0,0,0,0,44.91,49.93,58.57,35.72,6.666666666666667,1,1,0,0,6,5,5,1,415,204049.745799413,104100.1841142412,0,0,4456.767139023522 -6508,8070,14628,-9,14627,14626,1,0,33,0,0,0,2,2,-9,0,2,6.629424938474353,6.672652628987207,0,0,0,-1004.208718996198,0,3,2,2019,17,4,40,32,1,4,1,2.032257036127649,2.032257036127649,0,0,0,0,0,0,0,0,0,0,36.95,47.1,-9,-9,5,1,1,0,0,7,5,2,1,275,66382.04782666638,91002.01801024815,0,0,523.2670831820276 -6509,8071,14629,14630,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,5.209778771030665,4.986458247643801,9,7,41.36849855687135,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,1,1,0,4.432687254455142,5.333299175095356,36.61,17.55,44.26,59.43,1.666666666666667,1,1,0,0,0,11,2,0,227.5,262718.2502231551,113332.5115314224,111331.9901692353,0,2590.537810439805 -6509,8071,14630,14629,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,9,-7,53.62602459204478,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.26,59.43,36.61,17.55,3.333333333333333,1,1,0,0,0,11,2,0,227.5,262718.2502231551,113332.5115314224,111331.9901692353,0,2590.537810439805 -6510,8072,14631,14633,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.413136324424862,8.572806911221647,0,8,-6,-76.28642668056749,-9,3,3,2019,7,0,38,0,1,0,0,17.9289624857499,17.9289624857499,0,0,0,0,0,1,1,0,0,0,45.91,59.89,12.22,44.89,6.666666666666667,1,1,0,0,10,12,4,1,624.6666666666666,561883.8510527069,379404.130121797,211813.083644106,49665.95693156682,3648.226020861029 -6510,8072,14632,-9,14631,14633,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.795445320559,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,4,1,624.6666666666666,561883.8510527069,379404.130121797,211813.083644106,49665.95693156682,3648.226020861029 -6510,8072,14633,14631,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.256993421754789,7.944280072287849,0,8,6,-62.47559706495191,0,3,2,2019,34,11,36,36,1,11,0,9.921212372452596,9.921212372452596,0,0,0,0,0,1,1,0,0,0,12.22,44.89,45.91,59.89,0,1,1,0,1,10,12,4,1,624.6666666666666,561883.8510527069,379404.130121797,211813.083644106,49665.95693156682,3648.226020861029 -6511,8073,14634,14636,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.634458933043945,8.634329765305264,0,22,1,86.57928447639722,0,2,2,2019,11,0,38,50,1,0,0,16.72169164964884,16.72169164964884,0,0,0,0,0,1,1,0,0,0,52.4,52.91,51.13,50.73,8.333333333333334,1,1,0,0,11,7,4,1,760.4,126390.4375298652,31583.18481411741,0,0,4526.332284456231 -6511,8073,14635,-9,14636,14634,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.9118151393232,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,760.4,126390.4375298652,31583.18481411741,0,0,4526.332284456231 -6511,8073,14636,14634,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,22,-1,-205.6806383683121,0,-9,2,2019,9,0,0,12,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.13,50.73,52.4,52.91,8.333333333333334,1,1,0,0,3,7,4,1,760.4,126390.4375298652,31583.18481411741,0,0,4526.332284456231 -6511,8073,14637,-9,14636,14634,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.417593206594,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,7,4,1,760.4,126390.4375298652,31583.18481411741,0,0,4526.332284456231 -6511,8073,14638,-9,14636,14634,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-998.8710014140628,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,7,4,1,760.4,126390.4375298652,31583.18481411741,0,0,4526.332284456231 -6512,8074,14639,-9,14640,14641,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.053152411623,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,4,1,299.3333333333333,514936.4850044656,364952.5441005872,211956.1367266829,75426.70235646576,3678.65059948395 -6512,8074,14640,14641,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.169639120252995,8.152454365447499,6.725191222055482,5,-10,-103.9498710447065,0,2,2,2019,7,0,40,40,1,0,0,11.29805825827966,11.29805825827966,0,0,0,0,0,1,1,0,6.816265176576867,0,45.91,59.89,60.12,54.8,8.333333333333334,1,1,0,0,9,9,4,1,299.3333333333333,514936.4850044656,364952.5441005872,211956.1367266829,75426.70235646576,3678.65059948395 -6512,8074,14641,14640,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.276383536427547,8.248177995982184,0,5,10,18.16655830632779,0,-9,-9,2019,7,0,40,40,1,0,0,11.12376042905986,11.12376042905986,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.91,59.89,8.333333333333334,1,1,0,0,9,9,4,1,299.3333333333333,514936.4850044656,364952.5441005872,211956.1367266829,75426.70235646576,3678.65059948395 -6513,8075,14642,14643,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.337888424527185,7.311267799630319,0,28,-7,53.13856161937007,0,-9,3,2019,9,0,25,30,1,0,0,7.274766559032882,7.274766559032882,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.86,47.5,10,1,1,0,0,9,5,5,1,498.5,845800.4852221839,433276.6902515154,418488.0194670834,-1343.177153474827,7846.235667332056 -6513,8075,14643,14642,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.857634371861103,9.42944987035029,0,27,7,64.55911585452294,0,2,2,2019,8,1,50,60,1,1,0,36.15992156639211,36.15992156639211,0,0,0,0,2,0,0,0,6.123796075130181,0,54.86,47.5,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,498.5,845800.4852221839,433276.6902515154,418488.0194670834,-1343.177153474827,7846.235667332056 -6514,8076,14644,14646,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.15142538264862,8.48432572685566,0,7,7,-55.59430886545607,0,2,2,2019,7,0,37,37,1,0,0,12.39978650619713,12.39978650619713,0,0,0,0,0,1,1,0,0,0,54.97,47.63,40.07,57.25,6.666666666666667,1,1,0,0,8,13,5,1,395,311550.878090215,69004.61971713472,360888.6532286652,204972.2400094505,3808.331580613461 -6514,8076,14645,-9,14646,14644,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.7685377103099,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,395,311550.878090215,69004.61971713472,360888.6532286652,204972.2400094505,3808.331580613461 -6514,8076,14646,14644,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.844753349158378,9.233930225568404,0,7,-7,126.5948866856645,0,2,1,2019,12,1,40,40,1,1,0,18.71931180172542,18.71931180172542,0,0,0,0,0,1,1,0,0,0,40.07,57.25,54.97,47.63,6.666666666666667,1,1,0,0,8,13,5,1,395,311550.878090215,69004.61971713472,360888.6532286652,204972.2400094505,3808.331580613461 -6515,8077,14647,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-823.7222088624377,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.2112603970155361,0,45.75,29.22,-9,-9,5,1,1,0,0,0,1,1,1,1344,80884.13942810298,0,0,0,769.782055763856 -6516,8078,14648,14649,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.454863123039813,8.542440141474509,0,4,1,-4.496029268692926,0,-9,-9,2019,8,0,35,35,1,0,0,18.00711107692902,18.00711107692902,0,0,0,0,0,0,0,0,2.415779859373989,0,51.83,57.2,53.39,49.67,8.333333333333334,1,1,0,0,4,6,5,1,1072.5,-43375.75204909823,7154.338773300538,119978.8472017807,101103.915787019,3230.647712986891 -6516,8078,14649,14648,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,7.847474179924412,7.786874781500916,0,4,-1,91.9812074780527,0,-9,-9,2019,14,3,32,31,1,3,0,10.06604729862974,10.06604729862974,0,0,0,0,0,0,0,0,3.004701860163164,0,53.39,49.67,51.83,57.2,3.333333333333333,1,1,0,0,8,6,5,1,1072.5,-43375.75204909823,7154.338773300538,119978.8472017807,101103.915787019,3230.647712986891 -6517,8079,14650,14651,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.82163342534241,7.635533736463811,45,4,-14.38307174389221,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.085424607371065,8.066357677693926,60.12,54.8,49.86,39.28,0,2,3,0,0,6,8,3,1,2784,1367514.935488217,224787.8354989236,576135.9777372917,0,3843.508984077886 -6517,8079,14651,14650,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.309739354961047,6.099077325407701,45,-4,55.54424788554596,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.772860902280174,5.801518235907609,49.86,39.28,60.12,54.8,6.666666666666667,2,3,0,0,0,8,3,1,2784,1367514.935488217,224787.8354989236,576135.9777372917,0,3843.508984077886 -6518,8080,14652,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,7.43834036305284,7.691026886671068,5.947551658848622,0,0,-999.1087932749128,0,3,3,2019,12,0,20,20,1,0,0,10.90002841867821,10.90002841867821,0,0,0,0,0,1,1,0,0,6.032994615793126,42.75,61.95,-9,-9,5,1,1,0,0,8,9,3,1,607,857854.2962725083,399736.1118294888,341494.3902784105,0,1180.988151441012 -6519,8081,14653,14654,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,5.434973184385282,5.620390992456969,0,29,0,87.95857161715847,0,2,2,2019,11,0,30,36,1,0,0,.9004299288550761,.9004299288550761,0,0,0,0,0,1,1,0,2.556213010784866,0,57.06,57.76,51.68,33.6,8.333333333333334,1,1,0,0,8,10,5,0,887.5,997005.6302205904,215230.397262875,900385.247045501,301981.0310036718,10420.55824364368 -6519,8081,14654,14653,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,9.753692890329759,9.736517564143025,0,29,0,76.834768923811,0,2,3,2019,9,1,20,0,1,1,0,105.4055360336236,105.4055360336236,0,0,0,0,0,1,1,0,3.559859836959764,0,51.68,33.6,57.06,57.76,8.333333333333334,1,1,0,1,8,10,5,0,887.5,997005.6302205904,215230.397262875,900385.247045501,301981.0310036718,10420.55824364368 -6519,8082,14655,-9,14653,14654,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-933.5987276862761,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1006,46080.07912603678,0,0,0,0 -6520,8083,14656,14657,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.670907662213441,6.077961083839487,43,-1,-118.7035167721696,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.47148630848742,5.667818018400107,57.33,53.46,56.57,57.78,8.333333333333334,1,1,0,0,5,7,4,1,472,1832773.736031458,1059508.563146188,441037.2063551456,0,2413.908946569441 -6520,8083,14657,14656,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.353020101880935,8.540413364806962,43,1,-89.63447716564259,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.80506541227156,8.743474566935427,56.57,57.78,57.33,53.46,8.333333333333334,1,1,0,0,5,7,4,1,472,1832773.736031458,1059508.563146188,441037.2063551456,0,2413.908946569441 -6521,8084,14658,-9,-9,-9,1,0,39,1,3,0,2,2,-9,0,4,8.048854317532365,8.366450567193736,0,0,0,-958.2240477904494,0,-9,-9,2019,10,0,27,23,1,1,0,12.16405353995742,12.16405353995742,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,8,3,4,0,1,8,8,3,0,925,85635.90390878926,40192.62797556933,0,0,2491.203383256834 -6521,8084,14659,-9,14658,-9,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.6735006556884,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,925,85635.90390878926,40192.62797556933,0,0,2491.203383256834 -6521,8084,14660,-9,14658,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.009815770792,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,0,925,85635.90390878926,40192.62797556933,0,0,2491.203383256834 -6521,8084,14661,-9,14658,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.420406951349,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,925,85635.90390878926,40192.62797556933,0,0,2491.203383256834 -6522,8085,14662,14663,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.936143550277494,6.319382611269671,42,4,13.45936944435813,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.84091861077748,58.15,52.91,50,47,10,1,1,0,0,3,9,2,1,805.5,944583.8606679046,533895.2607161165,300211.4642535869,0,1434.210768309003 -6522,8085,14663,14662,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-4,23.60362756806774,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.15,52.91,7,1,1,0,0,0,9,2,1,805.5,944583.8606679046,533895.2607161165,300211.4642535869,0,1434.210768309003 -6523,8086,14664,14665,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.849944080240062,7.192665958024204,0,7,2,-16.1358167481218,0,2,2,2019,22,11,20,0,1,11,0,4.893072377535134,4.893072377535134,0,0,0,0,14.5,0,0,0,8.268473648306156,0,45.81,58.99,59.29,49.68,5,1,1,0,0,5,6,5,1,913,915993.6419772684,592714.9101355115,223250.1000292813,6040.827382360966,4692.159209735337 -6523,8086,14665,14664,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.547891739287923,8.538442085201424,0,7,-2,-10.56924616466077,0,2,2,2019,7,0,40,0,1,0,0,20.09113670295849,20.09113670295849,0,0,0,0,0,0,0,0,7.596726029336768,0,59.29,49.68,45.81,58.99,8.333333333333334,1,1,0,0,5,6,5,1,913,915993.6419772684,592714.9101355115,223250.1000292813,6040.827382360966,4692.159209735337 -6524,8087,14666,-9,14668,14667,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.3739000504792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,1314,320093.5525931795,55196.76780847387,104433.552713167,4915.832293765522,1510.944489153575 -6524,8087,14667,14668,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.171671749273262,8.126008662277808,0,18,-3,64.61254901851345,0,-9,-9,2019,8,0,45,45,1,0,0,9.777368381842674,9.777368381842674,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.98,48.98,8.333333333333334,1,1,0,0,7,2,3,1,1314,320093.5525931795,55196.76780847387,104433.552713167,4915.832293765522,1510.944489153575 -6524,8087,14668,14667,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,18,3,-103.4723597658355,0,2,2,2019,16,4,0,15,3,4,0,0,0,0,0,0,0,0,1,1,0,2.329535824767839,0,40.98,48.98,54.79,55.86,6.666666666666667,1,1,0,0,10,2,3,1,1314,320093.5525931795,55196.76780847387,104433.552713167,4915.832293765522,1510.944489153575 -6524,8088,14669,-9,14668,14667,1,0,19,0,1,0,2,2,-9,0,3,8.103757764187192,8.097352360146431,0,0,0,-901.4974408106225,0,2,2,2019,8,0,37,38,1,0,1,8.107581572370622,8.107581572370622,0,0,0,0,0,1,1,0,0,0,57.6,43.74,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,947,3884.891541396119,48859.20004290214,0,0,815.2975226324193 -6524,8089,14670,-9,14668,14667,1,1,22,0,1,0,2,2,-9,0,2,7.116265318710313,7.192604260137513,0,0,0,-1013.435566985621,0,2,2,2019,7,2,37,39,1,2,1,3.650968596268476,3.650968596268476,0,0,0,0,0,1,1,0,0,0,55.6,47.8,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,411,-163756.4745108683,0,0,0,220.1928083347459 -6525,8090,14671,14672,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.855982373803311,8.656995366231881,0,10,-4,23.40512416894281,0,2,2,2019,10,0,41,41,1,0,0,17.36171668531115,17.36171668531115,0,0,0,0,0,1,1,0,2.100280719648491,0,54.2,57.49,46.67,55.57,8.333333333333334,1,1,0,0,10,11,4,1,817.25,359195.9572112794,180932.3163310274,198204.1264246751,35017.37977775611,3623.220841737417 -6525,8090,14672,14671,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,7.475307759891058,7.045090467837116,0,10,4,141.1633849556095,0,2,2,2019,7,0,28,24,1,0,0,7.81797415015655,7.81797415015655,0,0,0,0,7,1,1,0,0,0,46.67,55.57,54.2,57.49,6.666666666666667,1,1,0,0,2,11,4,1,817.25,359195.9572112794,180932.3163310274,198204.1264246751,35017.37977775611,3623.220841737417 -6525,8090,14673,-9,14672,14671,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.5315322083088,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,817.25,359195.9572112794,180932.3163310274,198204.1264246751,35017.37977775611,3623.220841737417 -6525,8090,14674,-9,14672,14671,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.0900866413956,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,817.25,359195.9572112794,180932.3163310274,198204.1264246751,35017.37977775611,3623.220841737417 -6526,8091,14675,14676,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,6.66745172573806,6.685344216969218,7,0,-86.36637344369484,0,3,3,2019,19,8,0,38,3,8,0,0,0,0,0,0,0,0,1,1,0,0,6.574546873024664,10.11,40.45,33.97,64.37,1.666666666666667,1,1,0,0,7,13,3,1,1062,260393.4728296279,176988.4682729699,89584.12134886091,27400.77026471876,1333.618724498225 -6526,8091,14676,14675,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.041249419270794,7.273091209937459,5.42565658849237,7,0,-138.4992261201041,0,3,3,2019,22,7,24,20,1,7,0,5.269243046076273,5.269243046076273,0,0,0,0,102,1,1,0,4.783846013489481,4.704361982188895,33.97,64.37,10.11,40.45,5,1,1,0,0,8,13,3,1,1062,260393.4728296279,176988.4682729699,89584.12134886091,27400.77026471876,1333.618724498225 -6527,8092,14677,14678,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.34079649254455,8.742923285124007,0,9,-1,-53.85610790804338,0,2,-9,2019,23,11,25,25,1,11,0,17.95370413836824,17.95370413836824,0,0,0,0,0,1,1,0,2.564253401462808,0,27.39,54.1,51.24,58.84,6.666666666666667,1,1,0,0,11,7,5,1,446.25,709719.8788436877,567378.8577526673,671173.9383541683,404535.5050332304,3123.18417974364 -6527,8092,14678,14677,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.576418581032696,8.863641115427491,0,9,1,41.07188576573274,0,2,-9,2019,11,1,37,40,1,1,0,17.8554576222711,17.8554576222711,0,0,0,0,0,1,1,0,0,0,51.24,58.84,27.39,54.1,8.333333333333334,1,1,0,0,10,7,5,1,446.25,709719.8788436877,567378.8577526673,671173.9383541683,404535.5050332304,3123.18417974364 -6527,8092,14679,-9,14677,14678,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.399381977012,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,446.25,709719.8788436877,567378.8577526673,671173.9383541683,404535.5050332304,3123.18417974364 -6527,8092,14680,-9,14677,14678,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.056906777729,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,446.25,709719.8788436877,567378.8577526673,671173.9383541683,404535.5050332304,3123.18417974364 -6528,8093,14681,14682,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.380474660584603,7.493487476901825,36,1,-139.9322965584827,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.738269740262493,7.366811225551304,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,993,2050836.673087534,666002.1908153738,640985.2945433303,0,2631.608978915987 -6528,8093,14682,14681,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.162897563763721,8.089788375983389,0,36,-1,22.13892070693824,0,-9,-9,2019,5,0,30,38,1,0,0,11.48332166339209,11.48332166339209,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,13,9,4,1,993,2050836.673087534,666002.1908153738,640985.2945433303,0,2631.608978915987 -6529,8094,14683,14684,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.396357427885606,8.338973345490242,60,1,-8.888380834793484,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.346395810764225,8.422241087769292,57.33,53.46,47.9,48.57,8.333333333333334,1,1,0,0,0,11,4,1,626.5,879440.9211828655,436675.1005536939,0,0,3841.536348640424 -6529,8094,14684,14683,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.374976493869375,4.590731844817272,60,-1,-44.59573627214681,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.377653535516107,4.416944078696101,47.9,48.57,57.33,53.46,10,1,1,0,0,0,11,4,1,626.5,879440.9211828655,436675.1005536939,0,0,3841.536348640424 -6530,8095,14685,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.501076038439,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,8,1,1,282,-8771.227187211996,0,0,0,1428.897023370257 -6530,8096,14686,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.67757506300291,6.846033497562211,0,0,-980.9996642043666,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.829900883302607,56.09,41.56,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,406,145786.4008610517,155119.9794863857,0,0,1144.399854206365 -6531,8097,14687,14688,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.845779688995085,7.982346614906178,0,18,-14,-55.5538376358402,0,2,2,2019,9,0,16,20,1,0,0,16.30258651444311,16.30258651444311,0,0,0,0,0,1,1,0,0,0,46.33,55.93,53.95,40.36,8.333333333333334,1,1,0,0,5,8,4,1,763.3333333333334,2502728.684555087,319051.0801809559,911977.4986388203,0,3762.061228903398 -6531,8097,14688,14687,-9,-9,1,1,60,0,1,0,2,2,-9,0,2,7.706274836040039,8.647943135670873,7.94908393982474,18,14,2.205802254571766,0,2,2,2019,12,0,34,40,1,0,0,8.004000478187798,8.004000478187798,0,0,0,0,0,1,1,0,3.095043966426251,7.754502773311635,53.95,40.36,46.33,55.93,6.666666666666667,1,1,0,0,6,8,4,1,763.3333333333334,2502728.684555087,319051.0801809559,911977.4986388203,0,3762.061228903398 -6531,8097,14689,-9,14687,14688,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.5973356019563,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,763.3333333333334,2502728.684555087,319051.0801809559,911977.4986388203,0,3762.061228903398 -6532,8098,14690,14691,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,40,0,-20.08664655825348,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,50,49,6.666666666666667,1,1,0,0,7,4,5,1,334.5,280043.4590804,76032.11544428807,102514.1593592808,0,3521.156467565125 -6532,8098,14691,14690,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.852683078068125,9.151034072088329,6.450373284206066,11,0,-59.74857092319648,0,-9,-9,2019,10,0,40,40,1,1,0,24.03596176618094,24.03596176618094,0,0,0,0,0,0,0,0,0,6.807266539900939,50,49,54.96,53.17,7,1,1,0,0,1,4,5,1,334.5,280043.4590804,76032.11544428807,102514.1593592808,0,3521.156467565125 -6533,8099,14692,-9,14693,14696,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.561584202391,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1080.8,873500.6179630018,721506.6363898636,378392.9164471726,217622.8749308536,3581.586923938425 -6533,8099,14693,14696,-9,-9,1,0,34,1,3,0,1,1,-9,0,5,8.397343293581621,8.535984825866274,0,15,0,-70.00921789900666,0,2,2,2019,7,0,40,40,1,0,0,14.58079033032755,14.58079033032755,0,0,0,0,0,1,1,0,3.197385385473239,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,11,9,4,1,1080.8,873500.6179630018,721506.6363898636,378392.9164471726,217622.8749308536,3581.586923938425 -6533,8099,14694,-9,14693,14696,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.743035239465,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1080.8,873500.6179630018,721506.6363898636,378392.9164471726,217622.8749308536,3581.586923938425 -6533,8099,14695,-9,14693,14696,1,1,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1009.981405402911,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,1080.8,873500.6179630018,721506.6363898636,378392.9164471726,217622.8749308536,3581.586923938425 -6533,8099,14696,14693,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,8.315904088547178,8.377555784285532,0,15,9,-52.50773041780151,0,2,2,2019,7,0,50,44,1,0,0,7.588883992212083,7.588883992212083,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,11,9,4,1,1080.8,873500.6179630018,721506.6363898636,378392.9164471726,217622.8749308536,3581.586923938425 -6534,8100,14697,14698,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.071268964686162,8.228290081336178,0,16,16,-76.89869367413907,0,2,3,2019,15,3,40,40,1,3,0,11.45477746787425,11.45477746787425,0,0,0,0,0,0,0,0,0,0,33.82,47.08,54.79,55.86,6.666666666666667,1,1,0,0,11,10,5,0,1021.5,20476.60862976817,62545.85926202653,0,0,3248.91158839658 -6534,8100,14698,14697,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.045460463429695,8.571017895150622,0,16,-16,80.44134456496123,0,3,2,2019,7,0,40,50,1,0,0,10.06451378281491,10.06451378281491,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.82,47.08,8.333333333333334,1,1,0,0,11,10,5,0,1021.5,20476.60862976817,62545.85926202653,0,0,3248.91158839658 -6535,8101,14699,-9,14700,14701,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1143.41144177049,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,370,89156.32726849169,83522.8044210095,177232.9933087878,147026.6786813319,2789.731022859016 -6535,8101,14700,14701,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.897166786794809,7.750606719433482,0,6,-1,16.24960570874131,0,-9,-9,2019,7,1,40,34,1,1,0,6.770407061003598,6.770407061003598,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,6.666666666666667,1,1,0,0,7,12,4,1,370,89156.32726849169,83522.8044210095,177232.9933087878,147026.6786813319,2789.731022859016 -6535,8101,14701,14700,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,7.965220262118026,7.992469012666932,0,6,1,-17.12725753862825,0,2,1,2019,6,0,48,24,1,0,0,7.83781163960207,7.83781163960207,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,7,12,4,1,370,89156.32726849169,83522.8044210095,177232.9933087878,147026.6786813319,2789.731022859016 -6536,8102,14702,-9,14703,14705,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.358921107358,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,965,765609.909568677,342476.4316130045,271111.4458333831,118208.7524320988,2924.941183493902 -6536,8102,14703,14705,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,0,0,0,7,-3,-136.5097211831451,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,51,56,6.666666666666667,1,1,0,0,0,12,4,1,965,765609.909568677,342476.4316130045,271111.4458333831,118208.7524320988,2924.941183493902 -6536,8102,14704,-9,14703,14705,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.980374440879,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,965,765609.909568677,342476.4316130045,271111.4458333831,118208.7524320988,2924.941183493902 -6536,8102,14705,14703,-9,-9,1,1,41,1,3,0,3,3,-9,0,4,9.002322032721706,8.789182937262051,0,7,3,-34.42315395517966,0,-9,-9,2019,9,0,40,-9,1,1,0,19.88923185135564,19.88923185135564,0,0,0,0,0,0,0,0,0,0,51,56,33.25,57.5,8,1,1,0,0,1,12,4,1,965,765609.909568677,342476.4316130045,271111.4458333831,118208.7524320988,2924.941183493902 -6536,8102,14706,-9,14703,14705,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.8944714724134,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,965,765609.909568677,342476.4316130045,271111.4458333831,118208.7524320988,2924.941183493902 -6537,8103,14707,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.432909852444216,6.438650071346457,0,0,-1001.262844037716,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.573025184662755,61.43,48.88,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,152,289076.0769367782,218188.3710534103,136589.5160439162,0,926.4483930107896 -6537,8104,14708,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1109.963507831126,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.179557781715182,0,35.22,45.99,-9,-9,5,1,1,0,0,3,2,1,1,789,96728.81465527434,0,0,0,1935.962538473702 -6538,8105,14709,-9,14710,-9,1,1,16,0,1,1,3,0,-9,0,1,0,3.908116644792593,3.657055314241228,0,0,-1021.705079839523,-9,2,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,3.755208051240685,0,35.74,46.08,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,1313.5,-76819.95689659227,0,0,0,945.4871939118135 -6538,8105,14710,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,4,6.802231231915947,7.040641289565943,0,0,0,-1069.803837018571,0,3,-9,2019,21,6,8,15,1,6,0,14.45642459698258,14.45642459698258,0,0,0,0,42,1,1,0,0,0,30.79,50.12,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,1313.5,-76819.95689659227,0,0,0,945.4871939118135 -6539,8106,14711,14712,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.626547745119904,8.735658329651928,0,9,0,-13.10247342611847,0,2,2,2019,12,0,37,37,1,0,0,15.01769281530361,15.01769281530361,0,0,0,0,0,0,0,0,0,0,49.36,58.53,32.08,58.42,8.333333333333334,1,1,0,0,9,12,4,1,404.5,408186.1545327101,272155.4940058423,178372.7298923213,0,2315.174593784468 -6539,8106,14712,14711,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,6.855279290175821,6.816676418734262,0,9,0,80.26289493232821,0,-9,2,2019,18,8,9,15,1,8,0,7.80693193122648,7.80693193122648,0,0,0,0,0,0,0,0,0,0,32.08,58.42,49.36,58.53,8.333333333333334,1,1,0,0,9,12,4,1,404.5,408186.1545327101,272155.4940058423,178372.7298923213,0,2315.174593784468 -6540,8107,14713,-9,14715,14714,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.832988563068,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,600.25,369848.3114116173,255170.735335591,283253.8196890794,97976.4469202926,3543.4821990391 -6540,8107,14714,14715,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.29676870233116,8.176392179544834,0,1,4,-71.95415217590157,-9,-9,-9,2019,13,3,50,0,1,3,0,8.852494575957842,8.852494575957842,0,0,0,0,0,1,1,0,3.963321269932391,0,28.82,54.36,22.66,56.02,8.333333333333334,2,3,0,1,10,8,4,1,600.25,369848.3114116173,255170.735335591,283253.8196890794,97976.4469202926,3543.4821990391 -6540,8107,14715,14714,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,8.631694896651648,8.597439563573859,0,1,-4,59.49664092715462,-9,2,2,2019,14,4,38,0,1,4,0,14.82360263276155,14.82360263276155,0,0,0,0,0,1,1,0,.2699676050361917,0,22.66,56.02,28.82,54.36,1.666666666666667,2,3,0,0,10,8,4,1,600.25,369848.3114116173,255170.735335591,283253.8196890794,97976.4469202926,3543.4821990391 -6540,8107,14716,-9,14715,14714,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.008691425358,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,600.25,369848.3114116173,255170.735335591,283253.8196890794,97976.4469202926,3543.4821990391 -6541,8108,14717,14718,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,4.833435455284604,4.800787684262538,0,25,4,-56.97226131214298,0,-9,-9,2019,11,0,18,-9,1,0,0,.6651620817218392,.6651620817218392,0,0,0,0,0,0,0,0,0,0,54.1,59.11,39.15,41.42,3.333333333333333,3,4,0,1,8,6,2,1,207.5,462866.0609842479,313603.9635288293,195771.1582728592,0,500.535809662411 -6541,8108,14718,14717,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.006641896450589,6.893142993743216,0,25,-4,154.655484345442,0,3,2,2019,12,0,20,20,1,0,0,6.522793751665153,6.522793751665153,0,0,0,0,0,0,0,0,0,0,39.15,41.42,54.1,59.11,3.333333333333333,3,4,0,1,8,6,2,1,207.5,462866.0609842479,313603.9635288293,195771.1582728592,0,500.535809662411 -6542,8109,14719,14720,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,8.166706019765906,8.267255308602051,0,1,0,-33.31590646719957,-9,-9,-9,2019,7,0,38,0,1,0,0,12.10662294589773,12.10662294589773,0,0,0,0,2,0,0,0,4.242517389257322,0,57.06,57.76,38.06,61.12,8.333333333333334,1,1,0,0,1,9,5,1,290,243893.9444991744,23069.70630431499,231218.5637904308,124349.7094650245,2848.73612333095 -6542,8109,14720,14719,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.216250629981674,8.10927127326128,0,1,0,28.56255753759076,0,-9,-9,2019,15,4,63,60,1,4,0,7.877263694157651,7.877263694157651,0,0,0,0,0,0,0,0,2.474144326291655,0,38.06,61.12,57.06,57.76,8.333333333333334,1,1,0,0,3,9,5,1,290,243893.9444991744,23069.70630431499,231218.5637904308,124349.7094650245,2848.73612333095 -6543,8110,14721,14722,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,9.14216518462039,9.239912004164497,0,26,-2,-64.26465404046799,0,2,2,2019,12,0,38,38,1,0,0,24.63818329815089,24.63818329815089,0,0,0,0,0,1,1,0,0,0,51.73,58.82,64.15000000000001,32.53,8.333333333333334,1,1,0,0,10,10,5,1,364.5,421974.3414859327,153044.5309293432,611754.0915764601,295431.0016500633,4630.557236359914 -6543,8110,14722,14721,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.17919331510285,8.087599538418015,0,26,2,34.12673911239052,0,2,2,2019,7,0,40,38,1,0,0,10.41654252552209,10.41654252552209,0,0,0,0,0,1,1,0,0,0,64.15000000000001,32.53,51.73,58.82,10,1,1,0,0,10,10,5,1,364.5,421974.3414859327,153044.5309293432,611754.0915764601,295431.0016500633,4630.557236359914 -6544,8111,14723,14724,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.394028549481658,7.158116451064742,49,2,-72.42465892767972,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.648617356723331,54.2,57.49,53.01,43.56,8.333333333333334,1,1,0,0,4,4,3,0,530,969704.4746871584,355941.7472132418,215036.7192572549,0,1786.994914923034 -6544,8111,14724,14723,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,5,-2,-9.632247835703605,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,53.01,43.56,54.2,57.49,8.333333333333334,1,1,0,0,0,4,3,0,530,969704.4746871584,355941.7472132418,215036.7192572549,0,1786.994914923034 -6545,8112,14725,14726,-9,-9,1,0,44,1,2,0,3,3,-9,1,4,0,0,0,22,-5,23.19492051748167,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,55,57.16,56.15,8,2,3,0,0,0,8,2,1,110,86049.46359266424,0,0,0,1873.536088822724 -6545,8112,14726,14725,-9,-9,1,1,49,1,2,0,3,3,-9,0,4,7.177098584955957,7.277533250107581,0,22,5,-48.73347372376251,-9,3,3,2019,6,0,35,0,1,0,0,4.112740985591405,4.112740985591405,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,55,8.333333333333334,2,3,0,0,10,8,2,1,110,86049.46359266424,0,0,0,1873.536088822724 -6545,8113,14727,14728,14725,14726,1,1,24,1,2,0,1,1,-9,0,5,5.67189519065495,5.778936880087119,0,1,1,154.2130745863855,-9,3,3,2019,12,3,45,0,1,3,0,.6869098313333408,.6869098313333408,0,0,0,0,0,1,1,0,0,0,40.38,61.66,57.33,53.46,5,2,3,0,0,6,8,2,1,3385,547672.3716011312,90177.76027470497,486524.7911800605,9692.420154234343,1296.179454712006 -6545,8113,14728,14727,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,6.932065899962125,7.013140141667994,0,1,-1,-51.78171493323293,-9,-9,-9,2019,8,0,16,0,1,0,0,7.673131477376992,7.673131477376992,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.38,61.66,8.333333333333334,2,3,0,0,1,8,2,1,3385,547672.3716011312,90177.76027470497,486524.7911800605,9692.420154234343,1296.179454712006 -6545,8113,14729,-9,14728,14727,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.046322279869,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,1,3385,547672.3716011312,90177.76027470497,486524.7911800605,9692.420154234343,1296.179454712006 -6545,8114,14730,-9,14725,14726,1,0,21,1,2,1,2,0,-9,0,4,0,6.70964268220989,6.65285562353357,0,0,-920.3479672419843,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,6.854514558337086,0,41.23,54.12,-9,-9,0,2,3,0,0,2,8,2,1,840,-78285.96791561382,0,0,0,309.2640126490659 -6545,8115,14731,-9,14725,14726,1,1,22,1,2,0,1,1,-9,0,5,0,0,0,0,0,-962.9644762879442,-9,3,3,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,1,0,0,8,2,1,637,0,0,0,0,0 -6545,8116,14732,14733,-9,-9,1,0,25,1,2,0,1,1,-9,0,4,6.784471379288025,6.569448593093933,0,1,0,108.3260316502643,-9,-9,-9,2019,11,0,12,0,1,0,0,7.522037875989668,7.522037875989668,0,0,0,0,0,1,1,0,0,0,38.34,62.12,44.01,54.41,6.666666666666667,2,3,0,0,3,8,3,1,1559.5,-59020.95640070499,0,0,0,1680.716105138952 -6545,8116,14733,14732,14725,14726,1,1,25,1,2,0,1,1,-9,0,3,7.913907026217228,8.053267999585655,0,1,0,-36.93454788032178,-9,3,3,2019,11,0,33,0,1,0,0,7.618904958980474,7.618904958980474,0,0,0,0,0,1,1,0,0,0,44.01,54.41,38.34,62.12,8.333333333333334,2,3,0,0,5,8,3,1,1559.5,-59020.95640070499,0,0,0,1680.716105138952 -6546,8117,14734,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.419723889277039,8.211925558466532,0,0,0,-1085.43495314317,0,1,1,2019,18,6,48,63,1,6,0,8.742289237798786,8.742289237798786,0,0,0,0,0,0,0,0,6.191835123641007,0,20.9,63.58,-9,-9,5,1,1,0,0,12,7,4,0,272,272364.0456770295,2389.752612338383,0,0,2633.219869030063 -6547,8118,14735,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.589194625123988,7.405304278744096,0,0,-1027.108512043101,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.536365071670823,7.516194719631121,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,1086,1156845.067247077,533583.4790341364,542967.7878520648,0,2019.680557829778 -6548,8119,14736,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,2,0,0,0,0,0,-979.2614124636411,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.14,40.15,-9,-9,1.666666666666667,4,2,1,1,0,5,1,0,3154,-26615.83952831452,0,0,0,932.7412327407602 -6549,8120,14737,14739,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.983032220086214,8.03722930590593,0,6,7,15.25264468738453,0,3,3,2019,5,0,35,35,1,0,0,10.89106943278711,10.89106943278711,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,7,12,5,1,532.6666666666666,700686.1160217812,366507.994805835,283382.2540389179,112451.4143484215,4077.331789709145 -6549,8120,14738,-9,14737,14739,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.0635871921409,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,532.6666666666666,700686.1160217812,366507.994805835,283382.2540389179,112451.4143484215,4077.331789709145 -6549,8120,14739,14737,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.037628675379894,9.041532588769117,0,6,-7,-104.0366207806974,0,2,3,2019,7,0,48,50,1,0,0,22.02540866272477,22.02540866272477,0,0,0,0,0,1,1,0,6.284259660379568,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,7,12,5,1,532.6666666666666,700686.1160217812,366507.994805835,283382.2540389179,112451.4143484215,4077.331789709145 -6550,8121,14740,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.486292575618872,8.053096230706956,0,1,6,-89.0223959785796,0,3,3,2019,6,0,40,40,1,0,0,11.62467665804258,11.62467665804258,0,0,0,.6183366416885949,0,0,0,0,3.832594107078513,0,57.06,57.76,50,57,8.333333333333334,1,1,0,0,9,11,5,1,523,39984.82765099678,76455.75474842284,0,0,1077.608189431128 -6550,8122,14741,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.610978756499774,8.763969260095287,0,1,-6,-38.00807250151384,-9,-9,-9,2019,10,0,40,0,1,1,0,17.02992917662703,17.02992917662703,0,0,0,0,0,0,0,0,4.876983167658537,0,50,57,57.06,57.76,7,1,1,0,0,1,11,5,1,63,-231238.6445236102,-29351.84436916003,0,0,2215.372407856907 -6551,8123,14742,14743,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,7.45450795998066,7.397318810974168,0,8,-11,93.12667811474317,0,2,3,2019,6,0,90,80,1,0,0,2.264745871205096,2.264745871205096,0,0,0,0,0,1,1,0,6.973200323160961,0,58.32,50.22,50.51,53.71,8.333333333333334,1,1,0,0,9,11,3,1,827,88075.14971864941,76907.77908687839,80131.88386368075,53775.28518028785,2867.593029486395 -6551,8123,14743,14742,-9,-9,1,0,63,0,1,0,2,2,-9,0,3,7.675425496295512,7.606373500142869,0,8,11,-53.76505254843772,0,3,3,2019,13,1,17,16,1,1,0,13.62996601966766,13.62996601966766,0,0,0,0,2,1,1,0,6.529481064084177,0,50.51,53.71,58.32,50.22,6.666666666666667,1,1,0,0,9,11,3,1,827,88075.14971864941,76907.77908687839,80131.88386368075,53775.28518028785,2867.593029486395 -6551,8123,14744,-9,14743,14742,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1028.205445182823,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,3,1,827,88075.14971864941,76907.77908687839,80131.88386368075,53775.28518028785,2867.593029486395 -6552,8124,14745,-9,-9,-9,1,1,65,2,2,0,2,2,-9,0,3,0,0,0,0,0,-1019.584981226474,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,.2846585708864748,0,0,1,1,0,.8876554584077716,0,53,47,-9,-9,7,3,4,0,0,0,8,1,0,431,-202118.78869094,5046.665912274247,0,0,1616.668084745845 -6552,8125,14746,-9,-9,14745,1,1,25,2,2,0,2,2,-9,0,4,8.036517026952822,8.37742227801558,0,0,0,-974.2619971297895,0,3,2,2019,10,0,48,42,1,1,0,7.49362918817882,7.49362918817882,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,0,1279,39389.79128240055,0,314400.482189453,132795.7476286125,1400.264103397053 -6552,8126,14747,14750,-9,-9,1,1,29,2,2,0,2,2,-9,0,4,7.804223163669146,8.00543232152172,0,1,1,-3.034975297429966,-9,-9,-9,2019,10,0,24,0,1,1,0,14.61543181033945,14.61543181033945,0,0,0,0,0,1,1,0,0,0,50,57,37.19,60.95,7,3,4,0,0,1,8,3,0,895.25,-9855.671126923151,-19698.98087377126,0,0,1664.543257263991 -6552,8126,14748,-9,14750,14747,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-930.2252423913125,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,895.25,-9855.671126923151,-19698.98087377126,0,0,1664.543257263991 -6552,8126,14749,-9,14750,14747,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.677057857264,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,3,0,895.25,-9855.671126923151,-19698.98087377126,0,0,1664.543257263991 -6552,8126,14750,14747,-9,14745,1,0,28,2,2,0,2,2,-9,0,4,0,0,0,1,-1,-70.10495172837989,0,-9,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,27,1,1,0,0,0,37.19,60.95,50,57,6.666666666666667,3,4,0,0,4,8,3,0,895.25,-9855.671126923151,-19698.98087377126,0,0,1664.543257263991 -6553,8127,14751,-9,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.926591820695565,7.651188392226686,0,0,-1006.704415495263,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,2.389437647302652,0,23.2777641351547,0,1,1,0,4.404951887282199,7.908483670614435,47.1,48.66,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,5810,784414.4745530549,214131.4055119227,687433.0298376756,0,1903.447242130624 -6554,8128,14752,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.048872216138056,8.49812957686469,0,0,0,-967.8703521679685,0,2,-9,2019,26,11,58,40,1,11,0,9.357054382313265,9.357054382313265,0,0,0,0,0,1,1,0,0,0,27.06,55.51,-9,-9,5,1,1,0,0,11,12,4,1,343,718161.6999378646,80092.23034082155,896360.0699027592,105448.6458839573,1400.33136662506 -6555,8129,14753,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.391698140432688,8.303809205713247,5.462988244161609,0,0,-1135.105330634505,0,1,2,2019,9,0,37,37,1,0,0,14.61198172499463,14.61198172499463,0,0,0,0,7,1,1,0,6.021885155143898,0,44.36,54.04,-9,-9,5,1,1,0,0,12,1,4,1,636,-6075.335339296827,-8438.776202461584,65568.46491028879,16150.09782792833,1792.024034666811 -6556,8130,14754,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.503765524049642,6.339321068481983,0,0,-1071.248413520316,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.915833539574613,43.05,51.77,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,517,350181.7574975938,260104.9572218411,320091.7239330651,0,1020.953102346903 -6557,8131,14755,14756,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.243044171974041,8.134086838981093,0,26,0,50.5934626368854,0,-9,-9,2019,11,0,46,50,1,0,0,10.02828723592776,10.02828723592776,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51,49,6.666666666666667,3,4,0,0,7,8,5,1,822,629188.3395968655,90128.61872564598,417887.4949596851,40508.1358723029,3340.476679659338 -6557,8131,14756,14755,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.697265380599971,8.832490283926385,0,29,0,-58.56495550714178,0,-9,-9,2019,13,3,40,37,1,3,0,14.32443576737152,14.32443576737152,0,0,0,0,0,0,0,0,0,0,51,49,52.23,55.6,5,3,4,0,0,9,8,5,1,822,629188.3395968655,90128.61872564598,417887.4949596851,40508.1358723029,3340.476679659338 -6557,8132,14757,-9,14755,14756,1,1,26,0,0,0,1,1,-9,0,4,8.458360219727876,8.260543030729902,0,0,0,-978.6744366398734,0,1,1,2019,11,0,40,45,1,0,1,15.00573123419021,15.00573123419021,0,0,0,0,0,0,0,0,4.352631034474847,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,4,1,1431,0,0,0,0,2643.71194058178 -6557,8133,14758,-9,14755,14756,1,0,24,0,0,0,1,1,-9,0,4,8.231074461756197,8.22511650188113,0,0,0,-1034.302863057923,0,1,1,2019,14,3,35,37,1,3,1,13.88226023190571,13.88226023190571,0,0,0,0,0,0,0,0,0,0,34.48,61.03,-9,-9,5,3,4,0,0,4,8,4,1,456,-48732.50294687522,0,0,0,1868.409194800535 -6558,8134,14759,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.547106912827125,8.876260636726254,0,0,0,-1073.530803909746,0,3,3,2019,7,0,35,37,1,0,0,20.44742016062329,20.44742016062329,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,785,767464.8123488132,252833.9000369437,551104.8131892848,55363.39165820897,1158.706340720836 -6559,8135,14760,-9,14762,14763,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.297902438439,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1339.25,1640865.994650592,424430.6690332132,447764.1644049726,0,5315.757732531896 -6559,8135,14761,-9,14762,14763,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.8920156061299,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1339.25,1640865.994650592,424430.6690332132,447764.1644049726,0,5315.757732531896 -6559,8135,14762,14763,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.018656248093695,8.243712038254916,0,7,2,32.28262593354238,0,-9,-9,2019,10,0,24,31,1,0,0,22.58464625451981,22.58464625451981,0,0,0,0,0,0,0,0,6.975405537859859,0,54.2,57.49,57.16,56.15,10,1,1,0,0,11,7,5,1,1339.25,1640865.994650592,424430.6690332132,447764.1644049726,0,5315.757732531896 -6559,8135,14763,14762,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.887964177929605,9.139977940972939,0,7,-2,33.31782395894102,0,3,2,2019,7,0,48,48,1,0,0,17.49431039728346,17.49431039728346,0,0,0,0,0,0,0,0,5.630000292316051,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,1339.25,1640865.994650592,424430.6690332132,447764.1644049726,0,5315.757732531896 -6560,8136,14764,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.7653166536314,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,30.69,23.85,-9,-9,1.666666666666667,1,1,0,0,2,12,1,0,1154,93560.86173756841,-17340.44147138391,0,0,1182.013099272306 -6561,8137,14765,14766,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.195257901073102,8.469203692673318,0,5,-3,-101.692478050895,0,-9,-9,2019,5,0,40,41,1,0,0,9.195411973964887,9.195411973964887,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,4,4,1,3061.333333333333,587217.8437535735,33008.12464625936,469496.2010121644,0,2463.066655039483 -6561,8137,14766,14765,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,7.623824828783816,7.299330999599607,0,5,3,168.5324127698068,0,-9,-9,2019,6,0,38,43,1,0,0,6.669054543045869,6.669054543045869,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,8.333333333333334,1,1,0,0,9,4,4,1,3061.333333333333,587217.8437535735,33008.12464625936,469496.2010121644,0,2463.066655039483 -6561,8137,14767,-9,14766,14765,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.970876661017,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,3061.333333333333,587217.8437535735,33008.12464625936,469496.2010121644,0,2463.066655039483 -6562,8138,14768,14769,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.560312326651025,7.9023284791373,9,1,11.63913983687859,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,4.534300660849556,7.855970647905835,56.35,48.33,51.01,44.05,10,1,1,0,0,0,11,4,1,1047.5,1840564.777177959,993097.7408128397,483567.2968807346,0,3775.541920729509 -6562,8138,14769,14768,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.783805258135835,7.784658796368133,9,-1,-80.96440330759569,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,8.844773861271374,0,0,1,1,0,5.705233550556168,7.938391112214146,51.01,44.05,56.35,48.33,10,1,1,0,0,0,11,4,1,1047.5,1840564.777177959,993097.7408128397,483567.2968807346,0,3775.541920729509 -6563,8139,14770,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1059.53782741624,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,16.18549039090239,0,156.1155808585554,0,0,0,0,3.027127818646747,0,54,44,-9,-9,8,1,1,0,0,0,13,2,0,487,78370.67520034732,0,0,0,143.1924879499904 -6564,8140,14771,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.301329181618828,5.349212663986346,0,0,-1034.452072206053,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,3.21356265170005,0,0,0,1,1,0,5.441524710573936,5.186836683596041,55.76,18.3,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,392,270470.8619595468,0,354999.6995097261,0,864.8667237195045 -6565,8141,14772,-9,14773,14774,1,1,23,0,0,0,2,2,-9,0,4,7.889002682900903,8.129103041357128,0,0,0,-987.0861271169557,-9,3,-9,2019,10,0,37,0,1,1,1,7.457347974079124,7.457347974079124,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,3,0,205,73027.16839025177,0,0,0,1123.876741301132 -6565,8142,14773,14774,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,8.056211282259365,7.926489145656257,0,1,-1,75.3055175579063,-9,-9,-9,2019,7,0,45,0,1,0,0,6.499169103661503,6.499169103661503,0,0,0,0,0,1,1,0,0,0,43.43,55.57,52,55,6.666666666666667,1,1,0,0,10,5,3,0,828,-11428.64112124075,-38586.44848503539,86246.73405122812,60483.29135615549,1940.380314258652 -6565,8142,14774,14773,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.110689918839848,7.638905755578174,0,1,1,35.27558611566679,-9,-9,-9,2019,9,0,37,0,1,1,0,3.201052085645822,3.201052085645822,0,0,0,0,0,1,1,0,0,0,52,55,43.43,55.57,8,4,1,0,0,1,5,3,0,828,-11428.64112124075,-38586.44848503539,86246.73405122812,60483.29135615549,1940.380314258652 -6566,8143,14775,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-932.1875416212151,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,21.57,28.1,-9,-9,0,1,1,0,0,0,13,1,0,710,-59413.00461299969,0,0,0,1198.80200485959 -6567,8144,14776,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.005128451897013,8.182268724688161,0,0,0,-1032.703831289628,0,-9,-9,2019,9,0,37,37,1,0,0,9.608927496142766,9.608927496142766,0,0,0,0,2,0,0,0,3.873137638778226,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,1513,0,0,0,0,1194.995876585041 -6568,8145,14777,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.764608524796339,6.650603904886689,0,0,-1061.162133823638,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,.9755023922752326,4.898357516749985,25.97444579094913,0,1,1,0,0,6.589021675759058,57.42,35.61,-9,-9,10,1,1,0,0,0,7,2,1,683,47769.62590663473,159275.8220606461,0,0,1825.961579548132 -6569,8146,14778,-9,-9,14779,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1098.347174648549,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,750,789203.0007699069,169361.131629578,340479.3789176183,0,744.1995654500366 -6569,8146,14779,-9,-9,-9,1,1,66,0,1,0,2,2,-9,0,4,0,6.050116656455135,6.632043011419033,0,0,-838.3441190625213,0,3,1,2019,6,0,0,36,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.176435642126286,62.49,55.09,-9,-9,6.666666666666667,3,4,0,0,11,8,2,0,750,789203.0007699069,169361.131629578,340479.3789176183,0,744.1995654500366 -6570,8147,14780,14781,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.49592417283189,7.644601851716422,58,5,49.0355113668132,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,.4412474022252493,0,0,1,1,0,3.665742045152486,7.5293462121726,57.52,34.34,51.64,57.24,10,1,1,0,0,0,9,3,1,350,799020.6161510029,399879.8083034767,441040.6409875513,0,1595.653637712037 -6570,8147,14781,14780,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,58,-5,-35.24891205616045,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,1.041781989309795,0,1,1,0,0,0,51.64,57.24,57.52,34.34,10,1,1,0,0,0,9,3,1,350,799020.6161510029,399879.8083034767,441040.6409875513,0,1595.653637712037 -6571,8148,14782,14783,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.8108672977318,8.400030864291649,0,1,0,17.90493272319891,0,2,2,2019,16,4,41,43,1,4,0,15.42949302814283,15.42949302814283,0,0,0,0,0,0,0,0,3.319653733282251,0,35.22,56.72,50,57,8.333333333333334,1,1,0,0,7,11,5,1,1446,1937019.362941357,1559003.181210026,361773.0529215417,214937.1177937446,4353.275385548624 -6571,8148,14783,14782,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,8.723780725041401,8.876869007639728,0,1,0,103.1734340611219,-9,-9,-9,2019,10,0,48,0,1,1,0,15.0981508841442,15.0981508841442,0,0,0,0,0,0,0,0,0,0,50,57,35.22,56.72,7,1,1,0,0,1,11,5,1,1446,1937019.362941357,1559003.181210026,361773.0529215417,214937.1177937446,4353.275385548624 -6572,8149,14784,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.507348931468,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,2.304850762035394,8.068561858741742,15.73965258977957,0,1,1,0,.5075560590099777,0,54,44,-9,-9,8,1,1,0,0,0,4,2,0,548,127511.1779879453,0,0,0,1324.69417821701 -6573,8150,14785,-9,14787,14786,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.9315654378238,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,4,5,1,615.5,661019.0618697859,491624.9301504919,311925.9475934556,80900.32190675207,5656.639330920163 -6573,8150,14786,14787,-9,-9,1,1,54,0,2,0,1,1,-9,0,5,8.467399550039028,8.914474916975751,0,10,14,-38.54916346521517,0,-9,-9,2019,12,2,37,37,1,2,0,21.34791613169626,21.34791613169626,0,0,0,0,0,1,1,0,7.694026044529981,0,57.06,57.76,44.43,56.74,8.333333333333334,1,1,0,0,11,4,5,1,615.5,661019.0618697859,491624.9301504919,311925.9475934556,80900.32190675207,5656.639330920163 -6573,8150,14787,14786,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.981348911733697,8.790324405466004,0,10,-14,7.454928763376389,0,1,2,2019,10,1,30,28,1,1,0,31.02925743833027,31.02925743833027,0,0,0,0,0,1,1,0,0,0,44.43,56.74,57.06,57.76,8.333333333333334,1,1,0,0,11,4,5,1,615.5,661019.0618697859,491624.9301504919,311925.9475934556,80900.32190675207,5656.639330920163 -6573,8150,14788,-9,14787,14786,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.933062996634,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,4,5,1,615.5,661019.0618697859,491624.9301504919,311925.9475934556,80900.32190675207,5656.639330920163 -6574,8151,14789,14790,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,9.416001990003815,9.38317860626751,0,3,5,-72.94392515749566,0,2,2,2019,15,4,50,45,1,4,0,25.30153747809747,25.30153747809747,0,0,0,0,0,0,0,0,2.902202689760157,0,41.23,59.35,49.12,57.28,8.333333333333334,1,1,0,0,10,7,5,1,533.5,525843.1784069864,281300.7060858036,655290.6607754631,390005.3930109758,5127.536434219808 -6574,8151,14790,14789,-9,-9,1,0,38,0,0,0,3,3,-9,0,4,0,0,0,3,-5,84.02366512647833,0,-9,-9,2019,10,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,0,7.600076981537528,0,49.12,57.28,41.23,59.35,8.333333333333334,1,1,1,0,2,7,5,1,533.5,525843.1784069864,281300.7060858036,655290.6607754631,390005.3930109758,5127.536434219808 -6575,8152,14791,14792,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.82762358775245,8.279038259224647,0,2,3,-96.21791952042656,-9,-9,-9,2019,11,0,35,0,1,2,0,18.87633347422601,18.87633347422601,0,0,0,0,0,0,0,0,4.94331975459988,0,48,57,46.31,56.45,7,1,1,0,0,7,12,5,0,306.5,76723.86585267464,52915.41514279867,105106.9620124359,95461.50803971928,2921.120399818625 -6575,8152,14792,14791,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.820548678132067,7.789439781644527,0,2,-3,.3959167779716533,-9,3,3,2019,6,0,50,0,1,0,0,5.434041246769105,5.434041246769105,0,0,0,0,0,0,0,0,0,0,46.31,56.45,48,57,8.333333333333334,1,1,0,0,9,12,5,0,306.5,76723.86585267464,52915.41514279867,105106.9620124359,95461.50803971928,2921.120399818625 -6576,8153,14793,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.343971502619099,7.003102028360445,0,0,0,-1029.424082156114,0,3,3,2019,12,1,39,38,1,1,0,5.425295490770314,5.425295490770314,0,0,0,0,0,0,0,0,0,0,49.89,39.19,-9,-9,5,1,1,0,0,9,13,3,1,6265,663491.9439140842,19127.35744120917,944163.7068495308,219252.5412865302,238.4159715208216 -6576,8154,14794,-9,-9,14793,1,0,22,0,0,0,1,1,1,0,4,6.657541024047672,6.749485506545658,0,0,0,-1063.099641299564,-9,2,3,2019,10,2,15,0,1,2,1,6.008703813976235,6.008703813976235,0,0,0,0,27,0,0,0,0,0,39.93,57.25,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,1334,-131171.7102031352,0,0,0,495.2652268500052 -6577,8155,14795,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.06476210933428,8.032807887483944,0,0,0,-923.8827815584609,0,3,3,2019,21,9,37,37,1,9,0,8.471346930315244,8.471346930315244,0,0,0,0,0,1,1,0,2.103082562397359,0,27.22,67.32000000000001,-9,-9,1.666666666666667,1,1,0,1,8,12,4,1,330,17999.93351607455,0,113472.1757599506,0,1527.503626104202 -6578,8156,14796,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-917.7661454617166,0,2,2,2019,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.04,56.1,-9,-9,5,4,2,0,0,11,8,1,1,510,43610.12282518882,0,0,0,-219.6635768239447 -6579,8157,14797,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.945262565540853,8.050933314570134,0,0,0,-1055.533285099317,0,3,3,2019,10,0,33,36,1,1,0,9.138999789301979,9.138999789301979,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,1,9,4,4,1,237,68367.92886488969,-27996.00198698404,96087.2229743194,0,1600.290030618935 -6580,8158,14798,14799,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.79128084092304,9.691327961442243,0,29,0,19.12465053624008,0,2,2,2019,9,0,44,48,1,0,0,38.00514483415333,38.00514483415333,0,0,0,0,0,0,0,0,6.569615693167575,0,58.15,52.91,54.69,57.47,8.333333333333334,1,1,0,0,4,9,5,1,1088,2323550.943218711,1625983.494599354,339281.7864981203,0,3809.051884085407 -6580,8158,14799,14798,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.623063114153048,7.519702590951815,6.165390736731497,30,0,-34.25247570054098,0,2,1,2019,7,0,25,22,1,0,0,9.581705147408877,9.581705147408877,0,0,0,0,0,0,0,0,4.057559343516353,6.335931586617178,54.69,57.47,58.15,52.91,8.333333333333334,1,1,0,0,6,9,5,1,1088,2323550.943218711,1625983.494599354,339281.7864981203,0,3809.051884085407 -6580,8159,14800,-9,14799,14798,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1054.018323097312,0,1,2,2019,17,5,0,39,3,5,1,0,0,0,0,0,0,0,0,0,0,2.989791346874315,0,42.6,61.6,-9,-9,1.666666666666667,1,1,1,1,1,9,1,1,2652,-201064.8292699564,0,0,0,-255.0233454212347 -6581,8160,14801,14802,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.185189211865016,8.278545122533265,0,3,2,-63.0984857357148,0,2,2,2019,13,4,37,37,1,4,0,12.4086581735019,12.4086581735019,0,0,0,0,0,0,0,0,4.133290038905396,0,49.52,56.95,41.17,60.71,8.333333333333334,1,1,0,0,9,4,5,1,596.5,1022764.67666297,432481.3077942521,514489.1290666708,132808.5805435869,3775.730505118239 -6581,8160,14802,14801,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.406067073153357,8.305055758227315,0,3,-2,95.50414968147552,0,2,2,2019,15,4,43,45,1,4,0,12.38443071145332,12.38443071145332,0,0,0,0,0,0,0,0,7.205396428211366,0,41.17,60.71,49.52,56.95,8.333333333333334,1,1,0,0,9,4,5,1,596.5,1022764.67666297,432481.3077942521,514489.1290666708,132808.5805435869,3775.730505118239 -6582,8161,14803,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.554943764613565,8.653910601330587,0,0,0,-1092.808890266952,0,1,2,2019,11,1,35,35,1,1,0,23.0470973819331,23.0470973819331,0,0,0,0,0,0,0,0,4.068444931597657,0,43.09,58.28,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,535,1322082.64151118,346675.9676959153,775988.1580011033,0,2605.623979726672 -6582,8162,14804,-9,14803,-9,1,0,30,0,0,0,1,1,-9,0,3,7.985305411875667,8.005262181018558,0,0,0,-962.5050605498584,0,1,-9,2019,11,0,30,30,1,0,1,10.37049796296899,10.37049796296899,0,0,0,0,0,0,0,0,0,0,37.7,54.28,-9,-9,3.333333333333333,1,1,0,0,6,8,4,1,342,126766.4123220171,182713.2305238454,0,0,1658.479394301255 -6583,8163,14805,-9,14807,14806,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-881.7361265790405,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1057.333333333333,156932.5308940446,216395.0331527862,102741.7565631519,77698.20234081394,3118.87123647981 -6583,8163,14806,14807,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,8.847310341600094,9.156657766432607,0,1,3,184.6486406666067,-9,1,1,2019,24,10,45,0,1,10,0,19.70242376724292,19.70242376724292,0,0,0,0,0,1,1,0,0,0,23.97,58.41,44.19,58.01,6.666666666666667,1,1,0,0,9,5,4,1,1057.333333333333,156932.5308940446,216395.0331527862,102741.7565631519,77698.20234081394,3118.87123647981 -6583,8163,14807,14806,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.386503787157419,7.530587833856699,0,1,-3,-25.659665649404,-9,2,3,2019,12,1,24,0,1,1,0,7.593348462162565,7.593348462162565,0,0,0,0,0,1,1,0,0,0,44.19,58.01,23.97,58.41,6.666666666666667,1,1,0,0,9,5,4,1,1057.333333333333,156932.5308940446,216395.0331527862,102741.7565631519,77698.20234081394,3118.87123647981 -6584,8164,14808,14809,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,0,0,0,3,-4,112.4832656960608,0,2,2,2019,19,7,0,40,3,7,0,0,0,0,0,0,0,0,0,0,0,.5394656877199344,0,24.62,64.67,44.26,59.43,3.333333333333333,1,1,1,0,11,11,3,1,538.5,164870.3175861937,48415.73689424162,137325.3804559897,95031.76172227366,1178.56580101289 -6584,8164,14809,14808,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.278960307306017,7.829581710457587,0,3,4,-41.77199673494839,0,-9,-9,2019,13,1,39,40,1,1,0,8.450413671940856,8.450413671940856,0,0,0,0,0,0,0,0,0,0,44.26,59.43,24.62,64.67,6.666666666666667,1,1,0,0,6,11,3,1,538.5,164870.3175861937,48415.73689424162,137325.3804559897,95031.76172227366,1178.56580101289 -6585,8165,14810,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.273444395927745,7.521269955237698,0,0,0,-967.0805350614907,0,3,3,2019,26,12,32,40,1,12,0,6.117063700863183,6.117063700863183,0,0,0,0,0,0,0,0,0,0,25.95,41.21,-9,-9,3.333333333333333,1,1,0,0,10,2,3,1,294,-58059.66573102765,9670.160089535653,0,0,462.3223845737155 -6586,8166,14811,14812,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.369548479666518,6.431217603952841,25,7,-178.2180887018141,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.096693334982057,6.22055489964492,60.7,29.04,55.36,54.24,8.333333333333334,1,1,0,0,7,5,4,1,835.5,1699041.039776094,1289470.456408906,231168.8744599074,0,2360.098688439728 -6586,8166,14812,14811,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.39325930096685,8.317560996164076,0,24,-7,-34.16492432758753,0,3,2,2019,7,0,47,49,1,0,0,12.10525951659331,12.10525951659331,0,0,0,0,0,0,0,0,0,0,55.36,54.24,60.7,29.04,6.666666666666667,1,1,0,0,11,5,4,1,835.5,1699041.039776094,1289470.456408906,231168.8744599074,0,2360.098688439728 -6586,8167,14813,-9,14812,14811,1,1,22,0,0,0,2,2,-9,0,4,7.924425552091974,7.666975644490008,0,0,0,-858.3820856480776,0,2,2,2019,18,6,41,0,1,6,1,6.486767360041658,6.486767360041658,0,0,0,0,0,0,0,0,.9105434241530987,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,6,5,3,1,381,-233740.4211241117,0,0,0,1277.962062579432 -6587,8168,14814,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.232270879919952,8.003718877260125,0,0,0,-1054.34841871664,0,-9,-9,2019,10,0,38,35,1,0,0,9.237566447094583,9.237566447094583,0,0,0,0,0,0,0,0,.5341433833644783,0,43,53,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,366,239939.1635383606,-51170.34624354562,205700.6055372307,0,1523.23417459106 -6587,8169,14815,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.02999289475048,8.265898139369209,0,0,0,-995.8446221423719,0,-9,-9,2019,9,0,48,47,1,0,0,8.606619927649003,8.606619927649003,0,0,0,0,0,0,0,0,0,0,51.92,47.86,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,391,87054.67347392323,114615.8057831732,0,0,1930.729736949906 -6588,8170,14816,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.46309161656392,8.292766801138329,0,1,0,116.316511498274,-9,3,3,2019,12,1,38,0,1,1,0,11.41875837326386,11.41875837326386,0,0,0,0,0,0,0,0,0,0,47.57,51.43,46,57,8.333333333333334,1,1,0,0,6,13,4,0,312,-37235.28097214602,-3765.394678508601,0,0,1107.844929958446 -6589,8171,14817,14818,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,29,12,88.51630572371077,0,2,-9,2019,14,2,0,0,4,2,0,0,0,1,0,39.80501413696823,0,0,1,1,0,0,0,38.34,20.38,58.15,52.91,0,1,1,0,1,0,6,3,0,154.5,207502.8189955429,229769.8055350312,0,0,2113.395173769168 -6589,8171,14818,14817,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.647081297151501,7.685687581677755,0,29,-12,-34.4812001113272,0,3,-9,2019,9,0,53,0,1,0,0,6.311263915787634,6.311263915787634,0,0,0,0,0,1,1,0,0,0,58.15,52.91,38.34,20.38,8.333333333333334,1,1,0,0,8,6,3,0,154.5,207502.8189955429,229769.8055350312,0,0,2113.395173769168 -6589,8172,14819,-9,14818,14817,1,0,19,0,0,0,2,2,1,0,3,6.636947826606809,6.789110280826061,0,0,0,-966.7577841697345,-9,3,3,2019,15,3,21,0,1,3,1,4.557919234848671,4.557919234848671,0,0,0,0,2,1,1,0,0,0,33.08,49.65,-9,-9,3.333333333333333,1,1,0,0,1,6,2,0,501,24606.56133651863,0,0,0,447.0944670143171 -6589,8173,14820,-9,14818,14817,1,1,18,0,0,0,2,2,-9,0,3,7.53498820340284,7.305542947041669,0,0,0,-1019.698732433927,0,3,3,2019,11,1,45,0,1,1,1,3.9904070714676,3.9904070714676,0,0,0,0,0,1,1,0,4.803576674666268,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,691,6883.139684927985,0,0,0,1025.877127044917 -6590,8174,14821,14824,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.763218152160213,6.638664777633036,0,5,4,-59.76245765097119,0,2,2,2019,9,0,12,12,1,0,0,6.959919135542816,6.959919135542816,0,0,0,0,0,1,0,1,0,0,49.04,55.86,55.96,49.93,8.333333333333334,1,1,0,0,9,2,3,1,189.5,66351.89975394227,60706.14240139038,83112.01342115458,42241.60798358619,2327.57577851504 -6590,8174,14822,-9,14821,14824,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.53692125405,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,189.5,66351.89975394227,60706.14240139038,83112.01342115458,42241.60798358619,2327.57577851504 -6590,8174,14823,-9,14821,14824,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.194171792837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,189.5,66351.89975394227,60706.14240139038,83112.01342115458,42241.60798358619,2327.57577851504 -6590,8174,14824,14821,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,8.02744658806516,7.960814141750372,0,5,-4,81.35539778160459,0,-9,-9,2019,9,2,38,36,1,2,0,9.244693167227155,9.244693167227155,0,0,0,0,0,1,0,1,0,0,55.96,49.93,49.04,55.86,8.333333333333334,1,1,0,0,9,2,3,1,189.5,66351.89975394227,60706.14240139038,83112.01342115458,42241.60798358619,2327.57577851504 -6591,8175,14825,14826,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,6.954207782249767,7.153557728316409,47,0,-95.27531821359085,0,1,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.278648135093559,51.14,60.45,57.63,56.14,8.333333333333334,1,1,0,0,0,10,5,1,265.5,2435926.055318872,1587636.802668673,695230.472457523,0,6269.534503811856 -6591,8175,14826,14825,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,8.376267331797495,8.9827313721787,8.708120005907814,47,0,-11.35741340148422,0,2,2,2019,6,0,7,10,1,0,0,72.38741249275088,72.38741249275088,0,0,0,0,0,1,1,0,7.925661524774023,8.672094723590591,57.63,56.14,51.14,60.45,8.333333333333334,1,1,0,0,9,10,5,1,265.5,2435926.055318872,1587636.802668673,695230.472457523,0,6269.534503811856 -6592,8176,14827,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-941.0729939201867,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,57.04,13.39,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,661,-23935.03485180404,0,0,0,1598.408467661219 -6592,8177,14828,-9,14827,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-866.8116474249923,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.43,40.78,-9,-9,5,1,1,0,1,1,10,2,0,502,-13249.87596398607,0,0,0,422.8819538432538 -6593,8178,14829,14830,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,10,-5,0,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.92,54.3,6.666666666666667,1,1,0,0,11,5,1,1,406.5,402982.0162062859,0,487400.0883136715,0,1549.985968047012 -6593,8178,14830,14829,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,57.33,53.46,8.333333333333334,1,1,0,0,6,5,1,1,406.5,402982.0162062859,0,487400.0883136715,0,1549.985968047012 -6594,8179,14831,14832,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.089285757078652,7.778908667666698,0,18,-2,-58.53151783214587,0,2,2,2019,10,0,22,20,1,1,0,16.60499920311904,16.60499920311904,0,0,0,0,0,1,1,0,0,0,49,55,57.06,57.76,8,1,1,0,0,1,13,4,1,929.5,109002.828457749,45477.59980293377,123274.114232132,55070.3337705636,3245.252362733272 -6594,8179,14832,14831,-9,-9,1,1,43,0,2,0,2,2,-9,1,5,8.239100067245705,8.22165760705068,0,18,2,86.83900907624623,0,2,1,2019,7,0,38,37,1,0,0,11.1915671467539,11.1915671467539,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,49,55,8.333333333333334,1,1,0,0,8,13,4,1,929.5,109002.828457749,45477.59980293377,123274.114232132,55070.3337705636,3245.252362733272 -6594,8179,14833,-9,14831,14832,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.6317152560962,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,929.5,109002.828457749,45477.59980293377,123274.114232132,55070.3337705636,3245.252362733272 -6594,8179,14834,-9,14831,14832,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.993778458907,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,929.5,109002.828457749,45477.59980293377,123274.114232132,55070.3337705636,3245.252362733272 -6595,8180,14835,14836,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.689761047209172,8.777400486202026,0,33,-1,4.226303775029023,0,2,2,2019,12,0,40,0,1,2,0,19.73827246071841,19.73827246071841,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,0,1,4,4,1,578,450513.4731861799,322048.2407798434,202307.1480955809,60835.40357115619,3978.240669989098 -6595,8180,14836,14835,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,0,0,33,1,53.79908801002641,0,1,1,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.653212107741672,0,50,49,48,49,7,1,1,0,0,0,4,4,1,578,450513.4731861799,322048.2407798434,202307.1480955809,60835.40357115619,3978.240669989098 -6595,8181,14837,-9,14835,14836,1,1,21,0,0,1,3,0,0,0,4,0,0,0,0,0,-1052.64846451523,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,1677,0,0,0,0,-145.5086730098725 -6595,8182,14838,-9,14835,14836,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1056.030441593954,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.5646923089034848,0,33.31,61.94,-9,-9,6.666666666666667,1,1,0,0,3,4,1,1,188,-131423.0421279094,0,0,0,144.0204346657918 -6596,8183,14839,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.046919023048,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.941794074101082,0,54.2,57.49,-9,-9,10,1,1,0,0,3,7,1,0,292,270834.1666453628,0,0,0,-363.0874831428551 -6597,8184,14840,14841,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.648554972322607,8.490633435365401,48,0,-109.9128675470044,0,3,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.607801180482312,8.253730410433752,40.17,39.67,41.74,37.84,3.333333333333333,1,1,0,0,0,10,4,1,381.5,2021426.270271757,1174942.240962941,654408.468550458,0,4519.118334820508 -6597,8184,14841,14840,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.719742715278599,7.965511883146491,48,0,-45.66108548320473,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,4.326793680253463,7.733882562403004,41.74,37.84,40.17,39.67,3.333333333333333,1,1,0,0,0,10,4,1,381.5,2021426.270271757,1174942.240962941,654408.468550458,0,4519.118334820508 -6598,8185,14842,-9,-9,-9,1,0,20,0,0,0,3,3,-9,0,3,8.871732741306417,8.746502136114787,0,2,-11,-128.9370709039886,0,-9,-9,2019,11,0,19,19,1,0,0,50.04469900913354,50.04469900913354,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48,57,8.333333333333334,1,1,0,0,1,10,5,0,355,131119.7633173098,0,0,0,3432.526298389048 -6599,8186,14843,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1056.832480903056,0,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.93,31.42,-9,-9,1.666666666666667,1,1,0,1,0,1,1,0,1480,4761.7763094456,0,0,0,887.9901458607142 -6600,8187,14844,14845,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.601941234812751,8.387519845793388,0,10,6,119.6021234825966,0,2,2,2019,6,0,55,50,1,0,0,9.32087364941898,9.32087364941898,0,0,0,0,2,1,1,0,0,0,54.2,57.49,55.79,52.62,8.333333333333334,1,1,0,0,12,6,4,1,611,59357.26927759803,-74246.30301511905,94154.89819019679,106746.3283811989,3377.550410055098 -6600,8187,14845,14844,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.820781254344158,7.887813734828048,0,10,-6,128.0819861302315,0,2,2,2019,12,0,48,42,1,0,0,5.836526095128112,5.836526095128112,0,0,0,0,2,1,1,0,0,0,55.79,52.62,54.2,57.49,10,1,1,0,0,12,6,4,1,611,59357.26927759803,-74246.30301511905,94154.89819019679,106746.3283811989,3377.550410055098 -6600,8187,14846,-9,14845,14844,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.912587058618,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,4,1,611,59357.26927759803,-74246.30301511905,94154.89819019679,106746.3283811989,3377.550410055098 -6601,8188,14847,14848,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.235259844837735,9.111307617452855,0,18,2,235.2676296291403,0,2,3,2019,7,0,44,40,1,0,0,24.14423864372236,24.14423864372236,0,0,0,0,0,1,1,0,4.007499607575577,0,57.33,53.46,53,55,6.666666666666667,3,4,0,0,9,9,5,1,654.5,1536696.335110628,984681.1795962953,494663.8687692865,150087.6460126867,4554.387242914428 -6601,8188,14848,14847,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.463436554240431,8.235279692213426,0,18,-2,45.22152612870746,0,-9,-9,2019,9,0,40,15,1,1,0,10.51266913744135,10.51266913744135,0,0,0,0,0,1,1,0,4.273909872655227,0,53,55,57.33,53.46,8,3,4,0,0,1,9,5,1,654.5,1536696.335110628,984681.1795962953,494663.8687692865,150087.6460126867,4554.387242914428 -6602,8189,14849,-9,-9,14850,1,0,21,0,0,0,2,2,1,0,3,6.337035430065254,6.032644386480153,0,0,0,-1050.890788290229,-9,-9,2,2019,7,1,15,0,1,1,1,3.294247218624275,3.294247218624275,0,0,0,0,2,1,1,0,0,0,25.65,57.4,-9,-9,6.666666666666667,1,1,0,0,1,5,2,0,201,169484.5965107603,0,0,0,-81.44371805777587 -6602,8190,14850,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-861.0199040355166,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.57,9.51,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,303,-11878.03388988666,28855.39735306254,166185.0471834861,106857.6015543546,764.8736842122755 -6603,8191,14851,14852,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-75.73576200546603,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,63.66,38.43,8.333333333333334,1,1,0,0,0,8,3,1,117,801618.4652397922,403765.1158634213,200027.4120673261,0,3007.568687633091 -6603,8191,14852,14851,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.064349961557705,8.533493106862405,51,3,18.19783713206719,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.404790668560533,8.209169510871035,63.66,38.43,57.33,53.46,8.333333333333334,1,1,0,0,3,8,3,1,117,801618.4652397922,403765.1158634213,200027.4120673261,0,3007.568687633091 -6604,8192,14853,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.916101346499023,8.319737547043204,0,0,-1008.791133719361,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.663397906197592,6.705007957796671,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,471,1408016.585555679,836045.3437272081,201996.7186567028,0,2338.118257256261 -6605,8193,14854,-9,14857,14856,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.075185789331,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1008,1017747.278802141,575541.9729051703,427306.0322738606,111182.0017666553,4114.676408465041 -6605,8193,14855,-9,14857,14856,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.701118266074,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1008,1017747.278802141,575541.9729051703,427306.0322738606,111182.0017666553,4114.676408465041 -6605,8193,14856,14857,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.094997879173993,9.103780993700155,0,6,7,-40.91509289287041,0,2,1,2019,15,3,39,39,1,3,0,22.75303816949649,22.75303816949649,0,0,0,0,0,1,1,0,1.531397890649933,0,51.14,60.45,52.02,57.3,6.666666666666667,1,1,0,0,6,7,5,1,1008,1017747.278802141,575541.9729051703,427306.0322738606,111182.0017666553,4114.676408465041 -6605,8193,14857,14856,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.346645837916574,8.209905080690792,0,6,-7,-22.51506608917695,0,2,2,2019,6,0,31,31,1,0,0,11.55452825082868,11.55452825082868,0,0,0,0,0,1,1,0,0,0,52.02,57.3,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,1008,1017747.278802141,575541.9729051703,427306.0322738606,111182.0017666553,4114.676408465041 -6606,8194,14858,14859,-9,-9,1,1,60,0,0,0,2,2,-9,1,3,0,0,0,10,3,21.270768434972,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,9.551056990654912,0,50,49,40.32,56.92,7,1,1,0,0,0,7,4,1,223,819512.095431515,399968.4404156969,317002.5300944287,0,9277.638174773667 -6606,8194,14859,14858,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.562758333510837,8.601997049474464,0,39,-3,127.5756627654351,0,2,2,2019,17,5,43,42,1,5,0,15.91129210346895,15.91129210346895,0,0,0,0,0,0,0,0,5.993820040604112,0,40.32,56.92,50,49,6.666666666666667,1,1,0,0,11,7,4,1,223,819512.095431515,399968.4404156969,317002.5300944287,0,9277.638174773667 -6606,8195,14860,-9,14859,14858,1,1,25,0,0,0,1,1,1,0,3,7.215863889202648,7.169160625690057,0,0,0,-984.1002418093184,-9,2,2,2019,14,2,40,0,1,2,1,3.694920565506599,3.694920565506599,0,0,0,0,2,0,0,0,0,0,38.68,55.46,-9,-9,5,1,1,0,0,11,7,3,1,2183,-168260.0214794063,0,0,0,571.9063551165555 -6607,8196,14861,14862,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.401984070466858,8.44097447515383,0,2,-7,-14.06012261939817,0,2,2,2019,17,6,25,-9,1,6,0,18.0468660692116,18.0468660692116,0,0,0,0,0,0,0,0,.6752858335908751,0,52,54.51,46.44,59.62,3.333333333333333,1,1,0,1,8,4,5,1,697.5,528938.9105488672,37675.39457626479,233065.1016777302,134483.8453362125,4557.376973960066 -6607,8196,14862,14861,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.547010591963197,8.708390912434561,0,2,7,27.8242844516663,0,3,2,2019,11,0,32,32,1,0,0,16.52696228646021,16.52696228646021,0,0,0,0,0,0,0,0,6.465691591009803,0,46.44,59.62,52,54.51,6.666666666666667,1,1,0,0,8,4,5,1,697.5,528938.9105488672,37675.39457626479,233065.1016777302,134483.8453362125,4557.376973960066 -6608,8197,14863,14864,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.454619626193642,8.337312179292626,0,31,-3,-63.47080211008333,0,3,3,2019,16,4,39,35,1,4,0,13.46288688086337,13.46288688086337,0,0,0,0,0,0,0,0,6.658969966739336,0,47.45,50.2,46.08,57.2,3.333333333333333,2,3,0,0,11,8,5,1,655,666185.6671600867,255891.1748015436,374867.1157645177,0,3584.323221731209 -6608,8197,14864,14863,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.348689661264936,8.320411886357903,0,31,3,115.7820426387294,0,3,3,2019,12,0,39,37,1,0,0,11.95341484949131,11.95341484949131,0,0,0,0,0,0,0,0,0,0,46.08,57.2,47.45,50.2,6.666666666666667,2,3,0,0,11,8,5,1,655,666185.6671600867,255891.1748015436,374867.1157645177,0,3584.323221731209 -6609,8198,14865,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.572617685789649,6.876863604866538,0,0,-970.5255431819216,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.797159350501428,6.615804918950388,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,1507,430025.3054184053,155802.1193470129,124577.9147735354,0,1280.942039417906 -6610,8199,14866,14867,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,0,-88.52071939022596,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,10,1,1,0,0,0,12,5,1,723,1057393.302281985,406210.291108288,428678.0617707325,0,8960.089907959398 -6610,8199,14867,14866,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,9.663069142677765,9.818030925554442,47,0,8.187251811036926,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.115639301335394,9.67848679003103,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,0,12,5,1,723,1057393.302281985,406210.291108288,428678.0617707325,0,8960.089907959398 -6611,8200,14868,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.270464268912932,8.2415732911644,0,0,0,-1062.368602937426,0,1,2,2019,13,4,37,40,1,4,0,11.6760523662208,11.6760523662208,0,0,0,0,0,0,0,0,0,0,41.13,58.45,-9,-9,6.666666666666667,1,1,0,0,7,9,4,0,506,10945.76990737653,118918.3458596163,0,0,1497.92983763761 -6612,8201,14869,14870,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.59787636476538,8.372245574545975,0,31,-4,31.64520140664371,0,2,2,2019,14,2,40,37,1,2,0,18.72037153880219,18.72037153880219,0,0,0,0,0,0,0,0,1.147469646661667,0,39.48,58.88,54.35,57.84,8.333333333333334,1,1,0,0,10,4,5,1,971,2667670.287028123,2394941.888239705,433227.474250483,8269.436900413284,3886.287564557527 -6612,8201,14870,14869,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.720950996969462,8.485822211035288,0,31,4,79.83995664263684,0,2,1,2019,8,0,60,60,1,0,0,10.30430157333831,10.30430157333831,0,0,0,0,0,0,0,0,3.824361633969056,0,54.35,57.84,39.48,58.88,8.333333333333334,1,1,0,0,10,4,5,1,971,2667670.287028123,2394941.888239705,433227.474250483,8269.436900413284,3886.287564557527 -6613,8202,14871,14872,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.842720482727582,8.016850397774935,6.852144957509778,24,9,91.05108375678076,0,2,2,2019,10,1,27,32,1,1,0,12.7747514726785,12.7747514726785,0,0,0,0,14.5,0,0,0,5.481849757195467,7.179028054000326,53.86,39.89,62.66,52.4,8.333333333333334,1,1,0,0,9,11,5,1,898,859340.1576208097,900964.9030267649,0,0,4148.993337381269 -6613,8202,14872,14871,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.876675552469619,8.860141789573067,0,23,0,17.06563090157969,0,2,2,2019,7,0,70,70,1,0,0,13.03878569494887,13.03878569494887,0,0,0,0,7,0,0,0,0,0,62.66,52.4,53.86,39.89,8.333333333333334,1,1,0,0,9,11,5,1,898,859340.1576208097,900964.9030267649,0,0,4148.993337381269 -6614,8203,14873,14874,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.512717260224246,8.097226891433939,0,9,-2,165.8834720985751,-9,2,2,2019,10,0,37,0,1,0,0,16.28519713872935,16.28519713872935,0,0,0,0,5.48,0,0,0,0,0,48.6,29.2,55.2,49.4,6.666666666666667,1,1,0,0,9,13,5,1,553.5,204685.553910566,28220.45524999333,0,0,3748.902782717757 -6614,8203,14874,14873,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.443480805277769,8.551841696899018,6.077867009585278,9,2,-27.78346496122595,-9,3,3,2019,8,0,84,0,1,0,0,5.148889622597109,5.148889622597109,0,0,0,0,0,0,0,0,0,6.553326465963809,55.2,49.4,48.6,29.2,6.666666666666667,1,1,0,0,9,13,5,1,553.5,204685.553910566,28220.45524999333,0,0,3748.902782717757 -6614,8204,14875,-9,14873,14874,1,1,24,0,0,0,1,1,-9,0,3,7.955909105699882,7.926136252326624,0,0,0,-971.2392989670767,-9,2,2,2019,7,0,43,0,1,0,1,7.304926461998273,7.304926461998273,0,0,0,0,2,0,0,0,0,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1473,-26737.18897595405,0,144813.1747678889,58144.91972683939,1189.145104303306 -6614,8205,14876,-9,14873,14874,1,0,20,0,0,0,2,2,-9,0,5,7.385539362322787,6.894402706703513,0,0,0,-1025.52516164709,-9,2,2,2019,12,0,38,0,1,0,1,4.599317699906668,4.599317699906668,0,0,0,0,0,0,0,0,.125090600118426,0,46.43,57.07,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,519,138292.638143467,0,0,0,607.0962044125948 -6615,8206,14877,14878,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.20855634913465,8.259985020862031,0,4,-5,-35.32497579675283,0,1,1,2019,11,1,55,76,1,1,0,5.638225192009352,5.638225192009352,0,0,0,0,0,0,0,0,.5692621269771878,0,57.06,57.76,49.45,35.49,6.666666666666667,1,1,0,0,4,10,5,1,743,398833.1697531931,393536.4942505789,329575.432464698,262543.2086453879,5127.17072589601 -6615,8206,14878,14877,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,9.363013285498038,9.530863217226594,0,4,5,93.92871061212065,0,-9,-9,2019,14,2,30,19,1,2,0,51.32555372430383,51.32555372430383,0,0,0,0,0,0,0,0,.6892538811423637,0,49.45,35.49,57.06,57.76,8.333333333333334,1,1,0,0,3,10,5,1,743,398833.1697531931,393536.4942505789,329575.432464698,262543.2086453879,5127.17072589601 -6616,8207,14879,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-931.0149016068718,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,10,1,1,1,1,0,11,1,0,85,181757.0400674716,0,0,0,729.4093247648102 -6616,8208,14880,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1005.658020832219,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,28.89,42.61,-9,-9,5,1,1,1,1,2,11,1,0,492,-130161.0710941422,0,0,0,389.377041023653 -6617,8209,14881,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,7.238000188596437,7.11725696161177,0,0,0,-920.9876783840334,0,3,3,2019,8,0,22,22,1,0,0,6.646337624732379,6.646337624732379,0,0,0,0,71.5,1,1,0,0,0,55.6,27.13,-9,-9,8.333333333333334,1,1,0,0,10,2,3,0,2382,-156528.3722950304,0,0,0,933.3353282705798 -6618,8210,14882,-9,14884,14883,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.2398865776861,-9,1,2,2019,12,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,4.477919513917245,0,27.71,62.75,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,387.3333333333333,1057132.323761815,780544.2206859927,261436.2343599757,0,5252.492425048559 -6618,8210,14883,14884,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.503302321654271,8.77340605072072,8.666630054550646,28,-1,-20.10739810558275,0,2,2,2019,19,8,40,40,1,8,0,15.66612099935587,15.66612099935587,0,0,0,0,0,1,1,0,4.478488243395597,8.489596329013988,35.9,60.41,44.61,59.06,8.333333333333334,1,1,0,0,9,6,5,1,387.3333333333333,1057132.323761815,780544.2206859927,261436.2343599757,0,5252.492425048559 -6618,8210,14884,14883,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.704490302379947,8.250750982763444,0,28,1,78.05765743021595,0,2,2,2019,11,0,24,24,1,0,0,19.8053101718467,19.8053101718467,0,0,0,.716057142759368,0,1,1,0,5.579382207478983,0,44.61,59.06,35.9,60.41,8.333333333333334,1,1,0,0,8,6,5,1,387.3333333333333,1057132.323761815,780544.2206859927,261436.2343599757,0,5252.492425048559 -6618,8211,14885,-9,14884,14883,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-975.4934785750171,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.898757817997672,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,446,-15894.6792404277,0,0,0,538.2917401181857 -6619,8212,14886,-9,14887,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.3979737321183,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,1,441,-127919.5703535998,0,-23688.42900509207,14344.17551501463,1310.915281086596 -6619,8212,14887,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,1,7.06737689429008,7.404287908816174,6.066065041689461,0,0,-958.4598146594452,0,-9,-9,2019,21,7,18,18,1,7,0,7.022350828933239,7.022350828933239,0,0,0,0,0,1,1,0,6.408848107709937,0,39,16.05,-9,-9,3.333333333333333,1,1,0,0,7,6,2,1,441,-127919.5703535998,0,-23688.42900509207,14344.17551501463,1310.915281086596 -6619,8212,14888,-9,14887,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1023.763944828308,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.79,51.62,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,441,-127919.5703535998,0,-23688.42900509207,14344.17551501463,1310.915281086596 -6620,8213,14889,14890,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,7.808703076149636,7.950365276574499,0,8,0,86.69713912283648,0,2,3,2019,8,0,45,44,1,0,0,5.784667004034953,5.784667004034953,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48.28,60.18,8.333333333333334,1,1,0,0,10,4,4,1,498.6666666666667,-48346.01801188366,5667.254898316526,72213.46291427697,28618.17595019807,2629.890536194364 -6620,8213,14890,14889,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,7.810655040922729,7.965772571212,0,8,0,-67.83133839900307,0,2,3,2019,10,0,40,40,1,0,0,8.086468622594225,8.086468622594225,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.96,53.17,6.666666666666667,1,1,0,0,7,4,4,1,498.6666666666667,-48346.01801188366,5667.254898316526,72213.46291427697,28618.17595019807,2629.890536194364 -6620,8213,14891,-9,14890,14889,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.9083994735679,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,498.6666666666667,-48346.01801188366,5667.254898316526,72213.46291427697,28618.17595019807,2629.890536194364 -6621,8214,14892,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.664123560076185,7.680493225148215,0,0,0,-1060.231197339108,0,2,2,2019,8,0,32,35,1,0,0,5.129693132447053,5.129693132447053,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,2190,-16986.72854385154,3522.452205321153,0,0,724.2231897251249 -6621,8215,14893,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,5,8.078268719245568,8.353684608421068,0,0,0,-1024.130668086329,-9,-9,-9,2019,7,0,43,0,1,0,0,8.648516709620063,8.648516709620063,0,0,0,0,0,0,0,0,1.280673988394252,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,1,6,4,0,486,38100.13921407677,0,0,0,850.8085049505628 -6622,8216,14894,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.764022278332976,7.897406611588849,0,0,0,-983.9602170744158,0,3,3,2019,12,1,25,25,1,1,0,10.36140764228283,10.36140764228283,0,0,0,0,0,0,0,0,0,0,50.42,43.32,-9,-9,6.666666666666667,3,4,0,1,13,9,3,0,169,139610.986555313,-1050.400939908664,0,0,753.1724656163258 -6623,8217,14895,14896,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.577488925628028,4.777514902041627,42,-7,60.35884095467563,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.513218160562003,4.679482439871985,58.11,40.74,60.27,49.27,8.333333333333334,1,1,0,0,0,7,3,1,439.5,949737.9029844939,394500.0123344528,556435.6094202201,0,3279.192792048251 -6623,8217,14896,14895,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.064842992338951,7.701225728079669,42,7,22.23565457666268,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.870009590327744,60.27,49.27,58.11,40.74,8.333333333333334,1,1,0,0,0,7,3,1,439.5,949737.9029844939,394500.0123344528,556435.6094202201,0,3279.192792048251 -6624,8218,14897,14899,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.812396263954698,8.777325018810897,0,11,0,44.89576982355229,0,1,1,2019,8,0,37,37,1,0,0,17.54351587023246,17.54351587023246,0,0,0,0,0,1,1,0,0,0,57.9,51.84,46.29,54.22,8.333333333333334,1,1,0,0,11,2,4,1,1650,65409.21524152955,0,196272.3157000116,160182.119973853,3346.36727201601 -6624,8218,14898,-9,14899,14897,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.021382554452,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,1650,65409.21524152955,0,196272.3157000116,160182.119973853,3346.36727201601 -6624,8218,14899,14897,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.882096983831108,7.924771689641915,0,11,0,152.5059131849473,0,-9,-9,2019,13,2,29,27,1,2,0,13.53906483919843,13.53906483919843,0,0,0,0,0,1,1,0,0,0,46.29,54.22,57.9,51.84,8.333333333333334,1,1,0,0,9,2,4,1,1650,65409.21524152955,0,196272.3157000116,160182.119973853,3346.36727201601 -6624,8218,14900,-9,14899,14897,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-884.9727150640683,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,1650,65409.21524152955,0,196272.3157000116,160182.119973853,3346.36727201601 -6625,8219,14901,14902,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,57,-6,35.25637816372633,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.647977981352216,0,49.96,41.68,56.26,38.87,8.333333333333334,1,1,0,0,0,9,2,1,613,356774.5688721574,72412.01009915851,483192.7821267218,0,2616.10468020924 -6625,8219,14902,14901,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.616547221439191,5.061874332037793,57,6,32.29682822587792,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.600148286233916,5.013694682628105,56.26,38.87,49.96,41.68,10,1,1,0,0,0,9,2,1,613,356774.5688721574,72412.01009915851,483192.7821267218,0,2616.10468020924 -6626,8220,14903,14904,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.51779640920581,5.34602025589384,61,-2,61.14498564324221,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.29816453097704,52,45,54,45,8,1,1,0,0,0,7,3,1,975,920447.805036572,394061.1087093571,482453.6631525417,0,1585.259817601661 -6626,8220,14904,14903,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.571841678850442,7.503647718720464,61,2,20.78493295832351,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.508419680092343,7.645397902531367,54,45,52,45,8,1,1,0,1,0,7,3,1,975,920447.805036572,394061.1087093571,482453.6631525417,0,1585.259817601661 -6627,8221,14905,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,6.774849997829437,6.846307149820166,0,0,0,-1000.304053995886,0,-9,2,2019,3,1,20,0,1,1,1,6.912704045748114,6.912704045748114,0,0,0,0,0,0,0,0,0,0,37.75,63.75,-9,-9,10,1,1,0,0,2,1,2,1,478,-57084.3879838965,0,0,0,404.9561007352262 -6628,8222,14906,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,0,0,0,0,-967.7450038179795,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,2.495570171684343,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,3859,115532.7876757265,0,0,0,1066.91483911389 -6629,8223,14907,14909,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,18,-4,0,0,3,3,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,27,1,1,0,0,0,33.39,39.43,53,55,0,1,1,0,1,0,6,1,0,1314.333333333333,-50187.49581132239,58836.65234354246,0,0,1547.419237861924 -6629,8223,14908,-9,14907,14909,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1142.626458076174,-9,3,3,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,21.45,55.22,-9,-9,5,1,1,0,0,0,6,1,0,1314.333333333333,-50187.49581132239,58836.65234354246,0,0,1547.419237861924 -6629,8223,14909,14907,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,0,0,0,18,4,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,33.39,39.43,8,1,1,0,0,0,6,1,0,1314.333333333333,-50187.49581132239,58836.65234354246,0,0,1547.419237861924 -6629,8224,14910,-9,14907,14909,1,1,22,0,0,0,3,3,-9,1,4,0,0,0,0,0,-914.5679754463004,0,3,3,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,37.93,59.32,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,462,62323.9337872132,0,0,0,902.6366911448666 -6630,8225,14911,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.046914867299252,7.73838686663952,0,5,2,-5.566274454907321,0,1,1,2019,12,1,36,40,1,1,0,10.01555069969003,10.01555069969003,0,0,0,0,0,0,0,0,4.101055737100904,0,47.97,56.11,48,57,8.333333333333334,1,1,0,0,11,7,3,0,4297,347106.711295734,135574.3778862122,0,0,969.6741000251654 -6631,8226,14912,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,0,7.597733373924938,7.950663630819841,0,0,-1031.695993879072,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.3490707480117011,8.05293203960902,49.25,61.25,-9,-9,10,1,1,0,0,9,7,4,1,787,261639.5157321065,0,310503.5210854777,129083.9448382348,1671.792731683923 -6632,8227,14913,14914,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.650521955693343,7.324656096996445,0,33,-8,59.4669477599804,0,2,2,2019,10,0,30,33,1,0,0,6.884960466407554,6.884960466407554,0,0,0,0,7,0,0,0,0,0,54.96,53.17,34.89,53.24,6.666666666666667,1,1,0,0,11,2,4,0,650,143380.5124717964,75490.10507135963,92532.47918944695,0,1590.891498306203 -6632,8227,14914,14913,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.188686586472976,8.280991077976367,0,33,8,127.9075183120265,0,-9,-9,2019,20,8,40,40,1,8,0,11.71637082094232,11.71637082094232,0,0,0,0,0,0,0,0,0,0,34.89,53.24,54.96,53.17,5,1,1,0,0,11,2,4,0,650,143380.5124717964,75490.10507135963,92532.47918944695,0,1590.891498306203 -6632,8228,14915,14916,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,6.465127021405538,6.383744838765133,0,4,9,50.59709825252363,0,-9,-9,2019,10,0,40,35,1,1,0,1.72008709803936,1.72008709803936,0,0,0,0,0,0,0,0,0,0,50,57,50.55,41.63,7,1,1,0,0,1,2,3,0,520.5,-39082.75798521056,-20379.76120419498,0,0,1065.178433422189 -6632,8228,14916,14915,14913,14914,1,0,28,0,0,0,2,2,-9,0,3,7.381510498111981,7.261730300049615,0,4,0,31.0432607676618,-9,2,2,2019,15,3,35,0,1,3,0,5.091335947225398,5.091335947225398,0,0,0,0,0,0,0,0,0,0,50.55,41.63,50,57,5,1,1,0,0,8,2,3,0,520.5,-39082.75798521056,-20379.76120419498,0,0,1065.178433422189 -6633,8229,14917,14921,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.117653060656647,7.976671836426529,0,18,-3,105.4393637245269,0,3,1,2019,10,0,47,44,1,0,0,7.033877806534489,7.033877806534489,0,0,0,0,0,1,1,0,0,0,37.99,47.35,48.13,49.81,8.333333333333334,2,3,0,0,13,4,2,1,1057.2,-3946.932324871689,14676.43313707919,0,0,2654.804235886575 -6633,8229,14918,-9,14921,14917,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1040.334124023624,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,2,1,1057.2,-3946.932324871689,14676.43313707919,0,0,2654.804235886575 -6633,8229,14919,-9,14921,14917,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-802.8788882471117,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,2,1,1057.2,-3946.932324871689,14676.43313707919,0,0,2654.804235886575 -6633,8229,14920,-9,14921,14917,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.504805193794,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1057.2,-3946.932324871689,14676.43313707919,0,0,2654.804235886575 -6633,8229,14921,14917,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,0,0,0,18,3,38.12089299814603,0,3,2,2019,12,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,48.13,49.81,37.99,47.35,10,2,3,0,1,3,4,2,1,1057.2,-3946.932324871689,14676.43313707919,0,0,2654.804235886575 -6634,8230,14922,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,4.889087694381059,4.291878942738249,0,0,-846.3862988811912,0,3,3,2019,30,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.056611891910967,4.378991324006821,32.51,30.07,-9,-9,0,2,3,0,1,0,5,2,1,4477,167432.4880126796,39512.34540502212,0,0,736.0489313685125 -6635,8231,14923,14925,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,9.59241963638409,9.658021260194428,0,1,3,-18.37430541790701,0,2,2,2019,9,0,48,50,1,0,0,27.6568147625996,27.6568147625996,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.65,57.36,8.333333333333334,1,1,0,0,7,12,5,1,1173,73735.74099473353,24852.02903589898,129799.8037457358,108755.0940444002,4187.094783789332 -6635,8231,14924,-9,14925,14923,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.902167393683,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1173,73735.74099473353,24852.02903589898,129799.8037457358,108755.0940444002,4187.094783789332 -6635,8231,14925,14923,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,0,0,0,1,-3,34.13389543718189,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,57.33,53.46,8.333333333333334,1,1,0,0,0,12,5,1,1173,73735.74099473353,24852.02903589898,129799.8037457358,108755.0940444002,4187.094783789332 -6636,8232,14926,-9,14927,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.1937014805683,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,1548.75,6016.111701216509,0,0,0,1365.00928629691 -6636,8232,14927,-9,-9,-9,1,0,35,0,3,0,3,3,-9,0,2,0,0,0,0,0,-915.5177143417376,-9,2,2,2019,24,9,0,0,3,9,0,0,0,0,0,0,.7542665466481662,2,1,1,0,0,0,24.52,39.05,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1548.75,6016.111701216509,0,0,0,1365.00928629691 -6636,8232,14928,-9,14927,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.385257552967,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1548.75,6016.111701216509,0,0,0,1365.00928629691 -6636,8232,14929,-9,14927,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.7898501190725,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1548.75,6016.111701216509,0,0,0,1365.00928629691 -6637,8233,14930,14931,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,6.765057715540265,6.975601951750525,0,46,-6,142.1128616915518,0,-9,-9,2019,17,5,11,11,1,5,0,6.753472334911879,6.753472334911879,0,0,0,0,7,1,1,0,0,0,45.16,20.12,45.3,48.53,3.333333333333333,1,1,0,0,9,4,2,1,516.5,101121.195534341,124520.2185173289,0,0,1446.062077043341 -6637,8233,14931,14930,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.408145133502464,6.361109182614524,6,6,19.07436027156015,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.523634586244333,45.3,48.53,45.16,20.12,8.333333333333334,1,1,0,0,0,4,2,1,516.5,101121.195534341,124520.2185173289,0,0,1446.062077043341 -6638,8234,14932,14933,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,7,-6,68.79659288252128,0,-9,-9,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,44.93,17.54,50.26,24.58,1.666666666666667,1,1,0,0,0,2,2,1,428.5,206669.2090645248,168217.5390575318,168445.8289777397,0,1251.981267473161 -6638,8234,14933,14932,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.390896248900701,5.111083398944412,7,6,153.8769096953816,0,-9,-9,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,5.415853363557197,5.082445253438104,50.26,24.58,44.93,17.54,3.333333333333333,1,1,0,0,0,2,2,1,428.5,206669.2090645248,168217.5390575318,168445.8289777397,0,1251.981267473161 -6639,8235,14934,14935,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.458466638468671,7.439130174740272,6,0,-11.85468332732611,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.609427681203025,52,47,54.2,57.49,7,1,1,0,0,0,11,3,1,687,923651.9215321871,569740.1043647209,221266.1445255315,0,2121.033253997939 -6639,8235,14935,14934,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.349657598320926,7.00197195311493,6,0,8.938993346597037,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.947070063230693,54.2,57.49,52,47,8.333333333333334,1,1,0,0,1,11,3,1,687,923651.9215321871,569740.1043647209,221266.1445255315,0,2121.033253997939 -6640,8236,14936,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,0,0,0,0,0,-958.2161898631659,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.7623471342918173,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,1,1,1108,-64503.76477868958,0,0,0,57.27439918637424 -6641,8237,14937,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,4.534605586471699,4.118419073083745,0,0,-899.2078316788826,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.090896557854107,59.48,44.27,-9,-9,10,1,1,0,0,0,4,2,0,710,69412.43319113593,0,0,0,539.1308841161912 -6642,8238,14938,14939,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.604628243475505,7.790299900025039,41,-1,-39.57139702916828,0,2,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,14.5,0,0,0,0,7.563934303724036,51.73,58.82,55.19,54.26,10,1,1,0,0,0,7,4,1,282.5,3099719.450777467,1409390.721337349,824402.5406619089,0,3526.367325424652 -6642,8238,14939,14938,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.235751594712276,8.017418012327436,41,1,134.2633527796131,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.020164486245084,8.826865694285365,55.19,54.26,51.73,58.82,8.333333333333334,1,1,0,0,12,7,4,1,282.5,3099719.450777467,1409390.721337349,824402.5406619089,0,3526.367325424652 -6642,8239,14940,-9,14938,14939,1,1,23,0,0,0,1,1,-9,0,3,0,8.395076839662705,8.28643072496862,0,0,-947.4907417761817,1,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,2.673233656119743,2,0,0,0,8.515059726794959,0,60.3,46.58,-9,-9,5,1,1,0,0,1,7,4,1,220,135312.9809092276,-5121.690154203432,0,0,2099.617038803097 -6643,8240,14941,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,2,6.542793264990475,6.739675765084829,4.554445390841252,0,0,-1048.877420398066,0,3,2,2019,9,0,18,16,1,0,0,5.437129651375262,5.437129651375262,0,0,0,0,0,1,1,0,5.224013113737484,0,44.44,50.61,-9,-9,5,1,1,0,0,4,12,2,0,179,-99765.55967438962,-22126.56527917244,0,0,1591.036782463876 -6644,8241,14942,14943,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.622005725816003,8.811844001852705,8,2,-67.31833995526537,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.313555935981474,8.288002448040571,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,7,8,5,1,494,3171770.333835131,1922082.988450441,882487.0944423927,0,5288.245434549153 -6644,8241,14943,14942,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.92122891420656,8.057920752547776,43,-2,-35.00412035773734,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.098600993512195,7.943925916505489,57.73,54.53,57.16,56.15,10,1,1,0,0,4,8,5,1,494,3171770.333835131,1922082.988450441,882487.0944423927,0,5288.245434549153 -6645,8242,14944,-9,14946,14945,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.00815764019,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,522.75,614697.7463986219,141884.7267486812,499436.5251005926,0,3592.580643474603 -6645,8242,14945,14946,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.629227459504921,8.448833357355355,0,9,1,27.20095510501546,0,2,3,2019,11,0,1,40,1,0,0,679.2263191028342,679.2263191028342,0,0,0,0,0,0,0,0,2.82129792511221,0,47.15,56.66,45.69,53.27,8.333333333333334,1,1,0,0,10,7,4,1,522.75,614697.7463986219,141884.7267486812,499436.5251005926,0,3592.580643474603 -6645,8242,14946,14945,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.66582158458007,7.486974817809853,0,9,-1,103.0315245610091,0,-9,-9,2019,13,2,20,20,1,2,0,8.969772289091443,8.969772289091443,0,0,0,0,0,0,0,0,7.270367717206718,0,45.69,53.27,47.15,56.66,8.333333333333334,1,1,0,0,9,7,4,1,522.75,614697.7463986219,141884.7267486812,499436.5251005926,0,3592.580643474603 -6645,8242,14947,-9,14946,14945,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.09448306012,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,522.75,614697.7463986219,141884.7267486812,499436.5251005926,0,3592.580643474603 -6646,8243,14948,14949,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.197277253455319,7.609325256726189,6,12,54.32471016768694,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.038404808832809,62.49,55.09,57.16,56.15,10,1,1,0,0,0,11,2,1,1205,1108809.751290674,0,429073.4118273451,0,1995.400519533641 -6646,8243,14949,14948,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.115509295807501,5.95829058696853,6,-12,-92.5402945791931,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.704132196885853,57.16,56.15,62.49,55.09,10,1,1,0,0,0,11,2,1,1205,1108809.751290674,0,429073.4118273451,0,1995.400519533641 -6647,8244,14950,14951,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.060914409159224,9.171335400108246,0,34,-1,-15.35749754779203,0,2,2,2019,20,8,40,40,1,8,0,25.88466163377966,25.88466163377966,0,0,0,0,0,0,0,0,0,0,35.57,66.07000000000001,50.07,43.69,6.666666666666667,1,1,0,0,12,7,5,1,373.5,1251489.678126076,667974.2298914201,455185.3733089936,0,5602.436177293016 -6647,8244,14951,14950,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.182728397588722,8.439561799337918,5.977939835351731,10,1,45.90134761183651,0,2,-9,2019,15,4,45,45,1,4,0,10.23733120526608,10.23733120526608,0,0,0,0,0,0,0,0,7.242374241123206,6.619580215383174,50.07,43.69,35.57,66.07000000000001,8.333333333333334,1,1,0,0,8,7,5,1,373.5,1251489.678126076,667974.2298914201,455185.3733089936,0,5602.436177293016 -6647,8245,14952,-9,14951,14950,1,0,26,0,0,0,1,1,-9,0,3,8.134214861106756,7.874517799247173,0,0,0,-1054.906444531471,-9,2,2,2019,6,2,47,0,1,2,1,7.567335550384468,7.567335550384468,0,0,0,0,0,0,0,0,3.494285933758887,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,588,-59442.24325660769,16215.0293578475,0,0,994.8498005344552 -6648,8246,14953,14954,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.333279475633509,8.297392715059599,0,7,3,82.02361589410114,0,3,3,2019,16,5,40,40,1,5,0,11.86169395023253,11.86169395023253,0,0,0,0,0,0,0,0,0,0,41.91,33.87,54.52,52.63,3.333333333333333,1,1,0,0,8,4,4,1,369.5,273867.2591019244,66446.18257193995,205186.0029316495,0,1468.519830414628 -6648,8246,14954,14953,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-46.32124184829128,0,3,3,2019,4,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.52,52.63,41.91,33.87,10,1,1,1,0,8,4,4,1,369.5,273867.2591019244,66446.18257193995,205186.0029316495,0,1468.519830414628 -6648,8247,14955,-9,14954,14953,1,1,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1039.494625171346,-9,2,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,3,4,1,1,950,-55974.01275444911,0,0,0,0 -6649,8248,14956,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1014.775658201188,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.47,40.47,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,822,73125.28912872066,0,80852.25614691034,0,1024.126020751142 -6650,8249,14957,14958,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.071620362277543,7.151353100435633,0,31,-2,57.13140362626029,0,3,2,2019,11,0,20,30,1,0,0,7.433869631248385,7.433869631248385,0,0,0,0,0,0,0,0,0,0,57.34,47.92,62.42,45.64,8.333333333333334,1,1,0,0,8,4,4,1,1096,86120.32977739364,16015.75608553994,81474.29061949594,64771.22797339383,2152.780451469594 -6650,8249,14958,14957,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.434767935804098,8.366051121766338,0,31,2,-44.16147050272108,0,2,2,2019,6,0,38,41,1,0,0,17.67937838082891,17.67937838082891,0,0,0,0,0,0,0,0,2.836728822142064,0,62.42,45.64,57.34,47.92,8.333333333333334,4,2,0,0,8,4,4,1,1096,86120.32977739364,16015.75608553994,81474.29061949594,64771.22797339383,2152.780451469594 -6650,8250,14959,-9,14957,14958,1,0,25,0,0,0,2,2,-9,0,3,7.942924481997852,7.806236660437431,0,0,0,-1055.819901704052,0,2,2,2019,9,0,40,37,1,0,1,8.625149386169314,8.625149386169314,0,0,0,0,0,0,0,0,2.34258557093842,0,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,1439,99053.84149582009,0,0,0,1383.121756815728 -6650,8251,14960,-9,14957,14958,1,1,23,0,0,0,2,2,-9,0,4,8.255482214028939,7.979228008279691,0,0,0,-1015.501162892424,0,2,2,2019,10,0,37,37,1,1,1,11.27873024762111,11.27873024762111,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,768,18159.58656399608,0,0,0,1873.616055409474 -6651,8252,14961,14963,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,10,2,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,35.64,33.84,7,2,3,1,0,0,4,2,1,821,5382.240217929647,-43797.15053465493,0,0,1788.876328614844 -6651,8252,14962,-9,14963,14961,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1076.0615998208,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,3.153576123267873,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,821,5382.240217929647,-43797.15053465493,0,0,1788.876328614844 -6651,8252,14963,14961,-9,-9,1,0,48,0,1,0,3,3,-9,1,2,0,0,0,32,-2,0,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,33.84,49,50,6.666666666666667,2,3,0,0,0,4,2,1,821,5382.240217929647,-43797.15053465493,0,0,1788.876328614844 -6651,8253,14964,-9,14963,14961,1,1,20,0,1,0,2,2,-9,0,4,6.917061436529896,6.816017613633764,0,0,0,-942.464446365006,0,3,2,2019,11,0,40,-9,1,2,1,3.317265397359634,3.317265397359634,0,0,0,0,0,1,1,0,.0158208220095929,0,47,59,-9,-9,7,2,3,0,0,1,4,2,1,647,-59192.19272831514,0,0,0,604.0334415949948 -6652,8254,14965,14966,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.951112785697388,8.072653941479324,0,37,6,34.22485681721514,0,3,2,2019,6,0,37,0,1,0,0,8.582791325713094,8.582791325713094,0,0,0,0,7,0,0,0,0,0,53,54,51.02,52.22,8.333333333333334,2,3,0,0,11,2,4,1,259,396807.5298229649,77761.1851019905,230250.3041893719,0,1605.231362518354 -6652,8254,14966,14965,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.101616811046015,7.152793996865078,0,37,-6,-117.5730985660601,0,3,2,2019,12,0,17,19,1,0,0,9.104169856618341,9.104169856618341,0,0,0,0,0,0,0,0,0,0,51.02,52.22,53,54,8.333333333333334,2,3,0,0,11,2,4,1,259,396807.5298229649,77761.1851019905,230250.3041893719,0,1605.231362518354 -6652,8255,14967,-9,14966,14965,1,1,30,0,0,0,2,2,-9,0,4,8.207153392734368,8.59750107105925,0,0,0,-968.465510837286,0,2,2,2019,10,0,30,20,1,1,1,12.47003372728293,12.47003372728293,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,8,2,4,1,3034,21984.72078617953,-65107.53601726964,0,0,1842.23690321559 -6652,8256,14968,-9,14966,14965,1,1,20,0,0,0,2,2,1,0,2,0,0,0,0,0,-1067.765616231454,-9,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,2.521607460109868,0,39.6,51.43,-9,-9,6.666666666666667,2,3,1,0,2,2,1,1,620,0,0,0,0,-107.4879897409544 -6653,8257,14969,14970,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.956982407766741,8.336860248757928,23,-5,63.45619314482816,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.575056065590717,7.956473393476371,65.07000000000001,41.45,56.94,49.53,10,1,1,0,0,0,9,3,1,811.5,645456.7741017008,55845.19672561805,0,0,3113.576016976758 -6653,8257,14970,14969,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,3.399390378722732,4.088920428636602,23,5,-21.7089186198592,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.730892960201232,3.741083081280518,56.94,49.53,65.07000000000001,41.45,10,1,1,0,0,0,9,3,1,811.5,645456.7741017008,55845.19672561805,0,0,3113.576016976758 -6654,8258,14971,14972,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,43,-5,55.34702526764904,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.474999176303074,0,58.47,44.69,52.6,52.88,8.333333333333334,1,1,0,0,4,12,2,1,1129,941804.1692803272,536657.3177860423,226522.5609093889,0,1137.517165190624 -6654,8258,14972,14971,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.269145232374519,7.249311125831798,43,5,44.02259092998001,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.749514914080907,7.430699629649532,52.6,52.88,58.47,44.69,8.333333333333334,1,1,0,0,0,12,2,1,1129,941804.1692803272,536657.3177860423,226522.5609093889,0,1137.517165190624 -6655,8259,14973,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,0,0,0,0,0,-919.5269578997443,0,2,3,2019,30,10,0,37,3,10,0,0,0,0,0,0,0,7,1,1,0,.117326153081569,0,33.94,35.02,-9,-9,0,1,1,1,1,9,7,1,0,268,46277.57094591463,-44938.81090187384,407018.1750551389,231955.4134782514,41.80798212893274 -6656,8260,14974,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.573262441340484,8.82686381333561,0,0,0,-940.0040040397472,0,3,3,2019,14,2,45,45,1,2,0,14.37810129078685,14.37810129078685,0,0,0,0,0,1,1,0,4.129497593791994,0,45.49,50.81,-9,-9,3.333333333333333,1,1,0,0,12,7,5,1,70,584098.7370195318,157012.6903657857,441395.8529088765,50329.65482467664,2344.309031808335 -6657,8261,14975,14976,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.813084125450803,8.182713488753473,0,1,0,45.88459918517306,-9,2,2,2019,23,10,40,0,1,10,0,9.229761947420705,9.229761947420705,0,0,0,0,0,0,0,0,0,0,17.63,68.89,41.07,60.93,5,1,1,0,0,8,2,5,0,332.5,-35353.12465070035,-45480.00836568909,170704.7945437884,99261.74509706728,3210.883973111655 -6657,8261,14976,14975,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.715604328368473,8.802120898296385,0,1,0,2.071064160598448,-9,-9,-9,2019,6,0,40,0,1,0,0,17.75830291100022,17.75830291100022,0,0,0,0,0,0,0,0,0,0,41.07,60.93,17.63,68.89,8.333333333333334,1,1,0,0,0,2,5,0,332.5,-35353.12465070035,-45480.00836568909,170704.7945437884,99261.74509706728,3210.883973111655 -6658,8262,14977,14978,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,7.006957952417667,6.993140905954875,65,2,46.4528475254615,-9,3,3,2019,19,6,0,0,4,6,0,0,0,1,2.50413039854884,42.2193312375281,14.5596463516511,0,1,1,0,0,7.098252709483741,52.24,14.18,56.26,30.84,5,1,1,0,0,0,2,3,1,962.5,714372.8179718759,0,325042.8099630733,0,3028.481519306329 -6658,8262,14978,14977,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.043422579074725,7.031765988976627,65,-2,-51.74028012480009,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,1.436569382044349,0,120,1,1,0,0,7.009908867058707,56.26,30.84,52.24,14.18,3.333333333333333,1,1,0,0,0,2,3,1,962.5,714372.8179718759,0,325042.8099630733,0,3028.481519306329 -6658,8263,14979,-9,14978,14977,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1012.30821794134,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,9,2,1,1,2933,-70412.70780649294,0,0,0,0 -6659,8264,14980,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-869.8525005774421,0,3,2,2019,25,12,0,2,3,12,0,0,0,0,0,0,0,0,0,0,0,4.040160147471653,0,37.78,39.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,732,-182062.0244801961,0,0,0,-228.6145539273875 -6659,8265,14981,-9,14980,-9,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-968.294117750419,0,3,3,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,27.09,48.71,-9,-9,1.666666666666667,1,1,1,0,6,6,1,1,185,-87613.85112678763,0,0,0,0 -6660,8266,14982,-9,14985,14984,1,1,28,0,0,0,1,1,-9,0,5,7.823794095150785,8.096422883235167,0,0,0,-1054.281935841577,0,2,2,2019,6,0,45,45,1,0,1,6.987685369034483,6.987685369034483,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,2,3,0,0,5,6,4,1,1311,22576.27892089494,0,0,0,962.2175342424149 -6660,8267,14983,-9,14985,14984,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-936.820021496651,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,163,20076.73579221631,0,0,0,1060.021723979422 -6660,8268,14984,14985,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,40,4,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.213045181876256,0,47.32,52.7,53.63,33.27,8.333333333333334,2,3,0,0,4,6,1,1,1692.5,130532.1735406237,0,0,0,-342.6483573670417 -6660,8268,14985,14984,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,0,0,0,40,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.63,33.27,47.32,52.7,8.333333333333334,2,3,0,0,0,6,1,1,1692.5,130532.1735406237,0,0,0,-342.6483573670417 -6661,8269,14986,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,1,9.487975100439247,9.233724749519146,0,0,0,-1020.404635061685,0,2,2,2019,13,2,30,25,1,2,0,54.38233112492308,54.38233112492308,0,0,0,0,0,1,1,0,0,0,50.27,40.98,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,320,1042116.084354739,795820.6130643681,235586.1093068609,20114.90625647564,4404.751105267566 -6662,8270,14987,14988,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,57,-7,11.71623883148851,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.8,31.22,55,45,6.666666666666667,1,1,0,0,0,10,2,1,763.5,869945.3930189157,133601.6561137923,472219.7321228889,0,2210.771654642811 -6662,8270,14988,14987,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.926752933194749,7.086315174323919,57,7,83.95588791347262,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.298562282446767,55,45,59.8,31.22,10,1,1,0,0,0,10,2,1,763.5,869945.3930189157,133601.6561137923,472219.7321228889,0,2210.771654642811 -6663,8271,14989,14991,-9,-9,1,0,37,1,4,0,1,1,-9,0,4,6.204618589075067,6.257275492508377,0,10,1,-127.1829300070802,0,2,2,2019,21,8,10,12,1,8,0,5.024580935126008,5.024580935126008,0,0,0,0,0,1,1,0,0,0,28.44,62.71,58.05,54.52,8.333333333333334,1,1,0,0,10,2,3,1,380,381921.5833142231,41779.08656803037,210931.851219657,26480.78103021186,2882.188615056915 -6663,8271,14990,-9,14989,14991,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-977.5310642524713,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,380,381921.5833142231,41779.08656803037,210931.851219657,26480.78103021186,2882.188615056915 -6663,8271,14991,14989,-9,-9,1,1,36,1,4,0,1,1,-9,0,5,8.843214279171638,8.665993530054946,0,10,-1,7.633130307052975,0,2,2,2019,6,0,37,40,1,0,0,19.23558758841109,19.23558758841109,0,0,0,0,0,1,1,0,0,0,58.05,54.52,28.44,62.71,8.333333333333334,1,1,0,0,10,2,3,1,380,381921.5833142231,41779.08656803037,210931.851219657,26480.78103021186,2882.188615056915 -6663,8271,14992,-9,14989,14991,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1124.223006984592,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.559230273423301,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,380,381921.5833142231,41779.08656803037,210931.851219657,26480.78103021186,2882.188615056915 -6664,8272,14993,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.752286687487604,8.556828900963824,0,0,0,-1053.919874018334,0,2,3,2019,13,1,41,40,1,1,0,18.29242595140841,18.29242595140841,0,0,0,0,0,0,0,0,1.907216322629546,0,46.39,60.99,-9,-9,5,1,1,0,0,9,9,5,0,1554,264610.1431853283,348995.6876743412,0,0,2779.426337547707 -6665,8273,14994,-9,-9,-9,1,0,31,0,2,0,3,3,-9,1,4,0,0,0,0,0,-994.3767018780641,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,1.193781617075947,0,48,56,-9,-9,7,2,3,0,0,0,8,1,0,412.5,-19512.45056679124,0,0,0,3300.242615389611 -6665,8273,14995,-9,14994,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.060988622987,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.7570992875877067,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,412.5,-19512.45056679124,0,0,0,3300.242615389611 -6666,8274,14996,-9,-9,-9,1,0,40,0,0,0,3,3,-9,1,1,0,4.906142617580429,5.347024106628788,0,0,-964.3027603561611,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,5.084256551494611,0,32.45,26.2,-9,-9,1.666666666666667,4,2,0,0,2,2,2,0,1298,-108068.7275398735,-25191.7052711496,0,0,1358.421905692318 -6666,8275,14997,-9,14996,-9,1,1,19,0,0,0,3,3,1,1,1,0,0,0,0,0,-995.7143788246566,-9,3,-9,2019,31,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,32,32,-9,-9,0,4,2,0,1,0,2,1,0,385,-92171.35298166417,0,0,0,-85.44145740284466 -6667,8276,14998,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.096066024440039,6.955151058047826,0,0,-992.2942881069335,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.991530634216856,7.214098676700067,55.02,54.61,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,412,188914.7573898484,31266.61703582992,199560.1481162647,81247.88606901898,187.4754906779516 -6668,8277,14999,15001,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.50712771790025,7.654219977965553,0,1,3,-28.08236275595107,0,3,2,2019,13,3,30,45,1,3,0,8.75568623959229,8.75568623959229,0,0,0,0,0,1,1,0,2.86978639893697,0,49.12,57.28,49,58,5,2,3,0,0,6,2,4,1,936,3700.753449319134,28769.00321118753,172888.749888844,132758.0022011605,2968.989817445753 -6668,8277,15000,-9,14999,15001,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.330396466865,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,4,1,936,3700.753449319134,28769.00321118753,172888.749888844,132758.0022011605,2968.989817445753 -6668,8277,15001,14999,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.699628349348846,8.718998663725149,0,1,-3,-48.59993168299021,-9,-9,-9,2019,10,0,38,0,1,1,0,16.26785867426104,16.26785867426104,0,0,0,0,0,1,1,0,0,0,49,58,49.12,57.28,7,1,1,0,0,1,2,4,1,936,3700.753449319134,28769.00321118753,172888.749888844,132758.0022011605,2968.989817445753 -6669,8278,15002,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,8.120592299593525,8.22667695832728,0,0,-1050.462591028986,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.014730978287302,7.474911455342514,58.62,39.16,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,551,1484087.457409289,158849.8227325855,1014289.296825993,0,3991.670747145532 -6670,8279,15003,-9,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,6.699447731380618,6.752608282060027,5.915359512864243,0,0,-1000.012557730005,0,2,2,2019,6,0,16,16,1,0,0,6.364705153257915,6.364705153257915,0,0,0,0,2,1,1,0,6.318927453696492,0,57.65,56.13,-9,-9,10,1,1,0,1,8,5,2,0,439,136255.2201269524,36916.46121099524,94206.89419662194,0,2082.749738995408 -6670,8279,15004,-9,15003,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.9766533786883,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,439,136255.2201269524,36916.46121099524,94206.89419662194,0,2082.749738995408 -6670,8279,15005,-9,15003,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.7545425176453,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,439,136255.2201269524,36916.46121099524,94206.89419662194,0,2082.749738995408 -6671,8280,15006,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.313891004236084,5.341719109602603,0,0,-1003.738174491047,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,5.124958694523993,43.76,40.54,-9,-9,5,1,1,0,0,0,7,2,0,33,-52173.53153483447,0,70834.57391308915,0,1104.594514298877 -6672,8281,15007,-9,15009,15008,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.313864067346,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1469.666666666667,6055.114661680418,55477.98907562035,94804.46811470832,108507.6781653877,2804.129268531526 -6672,8281,15008,15009,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.774634473555798,8.799878459498519,0,5,-1,-114.0165521841628,-9,-9,-9,2019,10,0,35,0,1,1,0,22.51448271738862,22.51448271738862,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,7,4,1,0,0,1,12,4,1,1469.666666666667,6055.114661680418,55477.98907562035,94804.46811470832,108507.6781653877,2804.129268531526 -6672,8281,15009,15008,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,5,1,2.180789650457967,0,2,2,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,7,12,4,1,1469.666666666667,6055.114661680418,55477.98907562035,94804.46811470832,108507.6781653877,2804.129268531526 -6673,8282,15010,-9,15012,15011,1,1,15,0,0,1,3,0,-9,0,3,0,6.172810275241774,5.971703438509282,0,0,-1148.082972279188,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,42,1,1,0,6.032612668780723,0,43.95,42.1,-9,-9,10,1,1,-9,1,0,10,1,0,831,210489.0248901515,-58419.76537241106,219545.7833086238,0,2344.157880505125 -6673,8282,15011,15012,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,1,11,0,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,7.850847678731266,8.594203694585298,0,0,1,1,0,0,0,44.63,35.7,50.16,39.61,5,1,1,0,0,0,10,1,0,831,210489.0248901515,-58419.76537241106,219545.7833086238,0,2344.157880505125 -6673,8282,15012,15011,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,1,-11,0,-9,-9,-9,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,50.16,39.61,44.63,35.7,0,1,1,0,0,0,10,1,0,831,210489.0248901515,-58419.76537241106,219545.7833086238,0,2344.157880505125 -6674,8283,15013,-9,15015,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.881181575104,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1500,611682.0175414383,309870.8302547474,438398.2489934275,269894.6948502166,3031.228521784167 -6674,8283,15014,-9,15015,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1049.263722743266,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,4,1,1500,611682.0175414383,309870.8302547474,438398.2489934275,269894.6948502166,3031.228521784167 -6674,8283,15015,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.771521739225156,9.022188145608862,0,0,0,-954.1757287790278,0,2,2,2019,6,0,52,52,1,0,0,17.79668986018167,17.79668986018167,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,1500,611682.0175414383,309870.8302547474,438398.2489934275,269894.6948502166,3031.228521784167 -6675,8284,15016,15018,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,8.389696506479872,8.373908769396765,0,10,-8,-17.44990458906598,0,2,2,2019,18,6,40,0,1,6,0,10.61029430726984,10.61029430726984,0,0,0,0,0,1,1,0,0,0,32.88,53.63,45.37,28.07,6.666666666666667,1,1,0,0,11,10,4,0,1712.333333333333,310967.0354880108,-15544.39616914807,296002.3839713837,86718.81704930593,3244.684131147675 -6675,8284,15017,-9,15018,15016,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1134.17873791239,-9,1,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.03,43.77,-9,-9,0,1,1,0,0,1,10,4,0,1712.333333333333,310967.0354880108,-15544.39616914807,296002.3839713837,86718.81704930593,3244.684131147675 -6675,8284,15018,15016,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.511126696588356,7.253801906356445,0,10,8,-5.632683294589328,0,2,2,2019,21,8,34,30,1,8,0,6.718066666884337,6.718066666884337,0,0,0,0,0,1,1,0,0,0,45.37,28.07,32.88,53.63,3.333333333333333,1,1,0,0,9,10,4,0,1712.333333333333,310967.0354880108,-15544.39616914807,296002.3839713837,86718.81704930593,3244.684131147675 -6675,8285,15019,-9,15018,15016,1,1,21,0,0,0,2,2,-9,0,4,7.177950464411598,6.961944424552402,0,0,0,-1035.606087325893,0,1,2,2019,11,0,35,30,1,2,1,3.879394279423302,3.879394279423302,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,1,10,2,0,122,101038.3082987221,73073.92721111758,0,0,659.8088738635471 -6676,8286,15020,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-920.2806601637791,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,21,44.51,-9,-9,5,1,1,0,0,1,2,1,0,453,29009.99266751374,0,0,0,1599.46845526898 -6676,8287,15021,-9,15020,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.574683010482,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,1.03650676136072,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,662,-138613.05675293,0,0,0,-82.89607775446413 -6677,8288,15022,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.116162996574502,7.743350534065978,0,0,0,-996.3814876940422,-9,1,2,2019,13,5,20,0,1,5,0,17.11154655835982,17.11154655835982,0,0,0,0,0,0,0,0,.8544091637177661,0,43.61,56.01,-9,-9,6.666666666666667,3,4,0,1,3,2,4,0,841,-30796.62395631085,85671.22301737273,0,0,1161.082281475811 -6678,8289,15023,15024,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.467800370590323,8.715768156949023,0,4,1,25.28880676383094,0,-9,-9,2019,22,10,40,60,1,10,0,12.64355028014931,12.64355028014931,0,0,0,0,0,0,0,0,0,0,33.18,60.48,49.06,58.64,3.333333333333333,1,1,0,0,6,9,5,1,583,176262.0598055822,68582.42949946392,254317.0770586058,210205.717007934,3109.628390143096 -6678,8289,15024,15023,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.935113610307227,7.802842252500211,0,4,-1,-38.86260665018423,0,2,1,2019,11,1,34,33,1,1,0,7.120288696361713,7.120288696361713,0,0,0,0,0,0,0,0,0,0,49.06,58.64,33.18,60.48,8.333333333333334,1,1,0,0,6,9,5,1,583,176262.0598055822,68582.42949946392,254317.0770586058,210205.717007934,3109.628390143096 -6679,8290,15025,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.699166495818757,8.678511140370986,0,0,0,-1005.828119197117,0,2,2,2019,9,1,35,35,1,1,0,18.08479205703923,18.08479205703923,0,0,0,0,0,0,0,0,0,0,51.61,61.54,-9,-9,10,1,1,0,0,10,12,5,1,452,280891.153352801,100686.0778890793,156066.3277467992,67891.28926006833,2070.068237540862 -6680,8291,15026,15027,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.158736888964223,6.159418469174075,6,4,5.669770352137816,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,7.206057181085182,5.744846012866337,40.83,59.68,51.24,58.84,8.333333333333334,1,1,0,0,0,10,3,1,929,537075.2648310512,540606.0823931702,0,0,3353.414896622509 -6680,8291,15027,15026,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.467297002680355,7.654891729923995,42,-4,-116.7171737028999,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.424776808177939,8.017656357340829,51.24,58.84,40.83,59.68,10,1,1,0,0,0,10,3,1,929,537075.2648310512,540606.0823931702,0,0,3353.414896622509 -6681,8292,15028,15029,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.0414148747596,8.245919014906713,8.542250267405056,38,3,11.79270958837631,0,2,2,2019,8,2,8,8,1,2,0,14.3069350080433,14.3069350080433,0,0,0,0,0,0,0,0,5.439933357914042,8.47749575272948,47,41.31,35.47,38.09,8.333333333333334,1,1,0,0,8,9,4,1,74.5,2314168.700529287,1434361.254782156,824210.4894193585,0,2957.071772051541 -6681,8292,15029,15028,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,5.701904733502208,5.929887395642709,39,-3,-103.9721166168911,0,2,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,4.978710138914973,5.434336162648753,35.47,38.09,47,41.31,1.666666666666667,1,1,0,0,6,9,4,1,74.5,2314168.700529287,1434361.254782156,824210.4894193585,0,2957.071772051541 -6682,8293,15030,15031,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.592809534616624,8.317565728445011,7.458690908875861,2,8,-53.21595562039728,0,3,3,2019,7,0,25,22,1,0,0,19.20278338597042,19.20278338597042,0,0,0,0,0,1,1,0,6.008152077405388,7.69006056940594,57.16,56.15,58.15,52.91,0,1,1,0,0,7,5,5,1,933.6666666666666,397338.2599724424,280744.3861861639,217860.1637261867,133823.4090463384,5528.217867765775 -6682,8293,15031,15030,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.350935481729982,8.679124767438859,3.862658110911194,2,-8,117.1196225749314,0,-9,-9,2019,6,0,37,37,1,0,0,9.969848805982775,9.969848805982775,0,0,0,0,0,1,1,0,7.239719574504639,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,5,5,5,1,933.6666666666666,397338.2599724424,280744.3861861639,217860.1637261867,133823.4090463384,5528.217867765775 -6682,8293,15032,-9,15030,15031,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.579057789401,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,933.6666666666666,397338.2599724424,280744.3861861639,217860.1637261867,133823.4090463384,5528.217867765775 -6682,8294,15033,-9,15030,15031,1,0,19,0,1,0,2,2,-9,0,4,7.836011856022927,7.829102569593474,0,0,0,-947.6502182996331,0,2,2,2019,10,0,47,22,1,0,1,6.049208106062606,6.049208106062606,0,0,0,0,0,1,1,0,0,0,49.09,57.3,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,352,-59029.03355744567,28320.77822428451,83524.68425635595,81130.10976651846,1242.295175790931 -6682,8295,15034,-9,15030,15031,1,0,20,0,1,0,2,2,-9,0,5,7.590457129266665,7.568838808744077,0,0,0,-958.7505749546001,0,2,2,2019,10,0,48,17,1,0,1,5.659017401384764,5.659017401384764,0,0,0,0,0,1,1,0,0,0,44.8,53.77,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,598,-95450.74408948745,0,0,0,1202.849345020284 -6683,8296,15035,15036,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.625122545692156,6.863504911961123,62,-1,13.18445199291995,0,3,3,2019,20,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.667378878743836,38.74,26.21,55.44,39.26,10,1,1,0,0,0,12,2,0,552.5,253803.3528660855,125216.6624238486,112608.8005230645,0,1480.374397479742 -6683,8296,15036,15035,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,3.079383210851174,3.185071983027797,62,1,80.60636551468157,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.772028361358161,2.848015073333908,55.44,39.26,38.74,26.21,8.333333333333334,1,1,0,0,0,12,2,0,552.5,253803.3528660855,125216.6624238486,112608.8005230645,0,1480.374397479742 -6684,8297,15037,15038,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.056032308715066,7.43538587078748,46,2,57.72548934134764,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.216947325229659,54.55,49.25,42.61,49.31,6.666666666666667,1,1,0,0,2,2,2,1,727.5,586378.9870202866,294181.591266049,221384.0683552339,0,1966.525941992495 -6684,8297,15038,15037,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,46,-2,-58.98906568615431,0,2,2,2019,11,0,0,6,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,49.31,54.55,49.25,8.333333333333334,1,1,0,0,12,2,2,1,727.5,586378.9870202866,294181.591266049,221384.0683552339,0,1966.525941992495 -6685,8298,15039,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-946.2200179438148,0,3,2,2019,7,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,1,4,12,1,0,446,0,0,0,0,286.7956218720973 -6686,8299,15040,15041,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.837548124165568,8.853600941212116,0,4,6,-63.43461402128955,0,-9,-9,2019,11,1,60,40,1,1,0,13.80683819472864,13.80683819472864,0,0,0,0,0,1,1,0,3.014324019396142,0,49.37,41.95,46.03,46.22,8.333333333333334,1,1,0,0,3,10,5,0,635.5,256561.2808939365,218121.6454895911,362832.9763189901,259265.6203119781,5010.609923869832 -6686,8299,15041,15040,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.790655568131749,8.635322994753819,0,4,-6,-97.72093435255356,0,1,1,2019,14,2,47,87,1,2,0,14.96272552495989,14.96272552495989,0,0,0,0,0,1,1,0,.5439883025757716,0,46.03,46.22,49.37,41.95,8.333333333333334,1,1,0,0,10,10,5,0,635.5,256561.2808939365,218121.6454895911,362832.9763189901,259265.6203119781,5010.609923869832 -6687,8300,15042,-9,15045,15046,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.647933713533,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,1,884.2,65717.448253108,42544.21339173084,132592.2048509565,89973.67818220587,1536.90313812369 -6687,8300,15043,-9,15045,15046,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.5061185336,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,884.2,65717.448253108,42544.21339173084,132592.2048509565,89973.67818220587,1536.90313812369 -6687,8300,15044,-9,15045,15046,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.595245657574,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,884.2,65717.448253108,42544.21339173084,132592.2048509565,89973.67818220587,1536.90313812369 -6687,8300,15045,15046,-9,-9,1,0,40,0,3,0,3,3,-9,0,3,0,0,0,13,2,19.04582823427417,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.94,43.46,49.63,54.22,5,1,1,0,0,2,2,2,1,884.2,65717.448253108,42544.21339173084,132592.2048509565,89973.67818220587,1536.90313812369 -6687,8300,15046,15045,-9,-9,1,1,38,0,3,0,1,1,-9,0,3,7.921144689424698,8.14373944788594,0,15,-2,62.77087434259279,0,2,3,2019,8,0,40,40,1,0,0,9.149983128099402,9.149983128099402,0,0,0,0,0,1,1,0,0,0,49.63,54.22,57.94,43.46,6.666666666666667,1,1,0,0,8,2,2,1,884.2,65717.448253108,42544.21339173084,132592.2048509565,89973.67818220587,1536.90313812369 -6688,8301,15047,15048,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,54,0,53.0768376964066,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,59.04,17.61,8.333333333333334,1,1,0,0,0,10,2,1,563.5,530814.444809176,137494.337523008,267793.4734997357,0,1903.554141294453 -6688,8301,15048,15047,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.014784858076952,7.003461743710949,54,0,57.69552988848083,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.662685980154518,59.04,17.61,54.96,53.17,8.333333333333334,1,1,0,0,0,10,2,1,563.5,530814.444809176,137494.337523008,267793.4734997357,0,1903.554141294453 -6689,8302,15049,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.945991600389877,7.056084297861774,0,0,-954.6915990954569,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.13810296027571,42.16,36.22,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,1878,409018.0690594252,335139.073414273,116552.7493454512,38839.68074543145,963.4415583470937 -6689,8303,15050,-9,15049,-9,1,1,21,0,0,0,2,2,-9,0,4,7.651322313113476,7.537307725411205,0,0,0,-1086.493498756336,0,2,-9,2019,10,0,40,0,1,1,0,6.012021500322746,6.012021500322746,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,3,1,599,9383.777122767411,0,0,0,600.875155181021 -6690,8304,15051,15052,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.698326448803007,8.527125319833372,0,12,2,43.31496413888173,0,2,2,2019,8,0,37,37,1,0,0,14.70874653433559,14.70874653433559,0,0,0,0,0,1,1,0,.2515557106836784,0,51.83,57.2,44.42,48.36,8.333333333333334,1,1,0,0,9,6,5,1,2823.333333333333,-140156.8478444248,-27677.13275560061,168902.5750402278,88433.48197175567,4823.623836097418 -6690,8304,15052,15051,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.747365252792608,9.030683103357012,0,12,-2,111.2309075391488,0,2,1,2019,17,5,42,42,1,5,0,15.28351589082868,15.28351589082868,0,0,0,0,0,1,1,0,0,0,44.42,48.36,51.83,57.2,8.333333333333334,1,1,0,0,7,6,5,1,2823.333333333333,-140156.8478444248,-27677.13275560061,168902.5750402278,88433.48197175567,4823.623836097418 -6690,8304,15053,-9,15052,15051,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.5019960244351,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,2823.333333333333,-140156.8478444248,-27677.13275560061,168902.5750402278,88433.48197175567,4823.623836097418 -6691,8305,15054,-9,15058,15057,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-995.9336144582661,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6691,8305,15055,-9,15058,15057,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.357194706144,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6691,8305,15056,-9,15058,15057,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1104.772886605477,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6691,8305,15057,15058,-9,-9,1,1,39,1,4,0,1,1,-9,0,4,8.470056820917343,8.677778169947951,0,10,-2,61.1740214760072,0,1,-9,2019,12,0,37,39,1,0,0,13.78035543630671,13.78035543630671,0,0,0,0,0,1,1,0,0,0,49.35,59.64,25.71,34.45,8.333333333333334,1,1,0,0,11,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6691,8305,15058,15057,-9,-9,1,0,41,1,4,0,1,1,-9,0,2,8.44731680554008,8.900391494689215,0,10,2,-32.43096231603215,0,2,1,2019,33,12,45,46,1,12,0,12.58286396006647,12.58286396006647,0,0,0,0,0,1,1,0,0,0,25.71,34.45,49.35,59.64,3.333333333333333,1,1,0,1,11,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6691,8305,15059,-9,15058,15057,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.043034111452,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,974.3333333333334,348990.0246438961,182190.9220710537,337760.4275336496,204433.9149634676,3875.087875042813 -6692,8306,15060,15061,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,5.438639440146094,5.706965726961895,58,3,17.70361650853213,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.619050660657596,5.473193399561275,50.82,57.78,50.82,57.78,10,1,1,0,0,0,7,2,1,739,1861825.440424545,-7917.434214007375,232726.2551037123,0,690.9578015707511 -6692,8306,15061,15060,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,58,-3,.5284030915260862,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.82,57.78,50.82,57.78,10,1,1,0,0,0,7,2,1,739,1861825.440424545,-7917.434214007375,232726.2551037123,0,690.9578015707511 -6693,8307,15062,15063,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.882971143653062,5.800478724727979,38,0,-51.70183369769547,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,5.392856210909604,5.406474429869097,60.68251356933477,7,1,1,0,0,6.116491923345744,51.5,26.51,43.21,22.28,6.666666666666667,1,1,0,0,0,10,2,1,1154.5,569290.0403644864,139392.7607289058,238277.3621801822,0,1700.999222634905 -6693,8307,15063,15062,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,38,0,-127.8821204459449,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,10.88158220142039,0,2,1,1,0,0,0,43.21,22.28,51.5,26.51,8.333333333333334,1,1,0,0,0,10,2,1,1154.5,569290.0403644864,139392.7607289058,238277.3621801822,0,1700.999222634905 -6694,8308,15064,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.134338524142622,8.135547655201279,0,0,0,-1017.723405074371,0,1,1,2019,10,2,70,50,1,2,0,4.633751233776072,4.633751233776072,0,0,0,0,0,0,0,0,7.341394737418942,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,12,8,4,0,479,394664.2992185553,37599.48659184511,489820.8554290314,0,2259.927347771178 -6695,8309,15065,-9,15067,15066,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.3191264240504,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,1133.25,-58196.12222207578,-28789.66754729573,0,0,1592.219107697857 -6695,8309,15066,15067,15072,15073,1,1,35,0,2,0,2,2,-9,0,4,7.979161226357532,8.087885482462456,0,6,6,23.45773330412746,0,3,3,2019,10,0,37,38,1,1,0,11.34083154916511,11.34083154916511,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,2,3,0,0,1,8,3,1,1133.25,-58196.12222207578,-28789.66754729573,0,0,1592.219107697857 -6695,8309,15067,15066,-9,-9,1,0,29,0,2,0,3,3,-9,0,4,0,0,0,6,-6,-10.57762369580271,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,1133.25,-58196.12222207578,-28789.66754729573,0,0,1592.219107697857 -6695,8309,15068,-9,15067,15066,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.885881190805,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,1133.25,-58196.12222207578,-28789.66754729573,0,0,1592.219107697857 -6695,8310,15069,-9,15072,15073,1,1,28,0,2,0,2,2,-9,0,4,7.662372721631475,7.708488198506276,0,0,0,-1050.323308720313,0,3,3,2019,10,0,37,37,1,1,1,6.454528371430307,6.454528371430307,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,1,1645,88554.69398175678,0,0,0,1256.505531375362 -6695,8311,15070,-9,15072,15073,1,0,19,0,2,1,2,0,0,0,2,0,0,0,0,0,-998.4411521790704,-9,3,3,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,34.22,53.7,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,769,-201467.3981257296,0,0,0,793.782606314748 -6695,8312,15071,-9,15072,15073,1,0,21,0,2,0,2,2,1,0,4,7.213724253125779,7.797945848862088,0,0,0,-1048.917749826779,-9,3,3,2019,12,0,37,0,1,2,1,5.585678950873287,5.585678950873287,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,3,1,352,0,0,0,0,719.4181598695533 -6695,8313,15072,15073,-9,-9,1,0,57,0,2,0,3,3,-9,1,3,0,0,0,42,-5,-64.0817105326916,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,2,1,116,1913960.918289578,730846.8646472937,380840.8107657502,0,2875.167883858343 -6695,8313,15073,15072,-9,-9,1,1,62,0,2,0,3,3,-9,1,3,0,7.039431783742542,7.348086124135576,8,5,-85.51246464407404,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.458219548298009,51,48,49,48,7,2,3,0,0,0,8,2,1,116,1913960.918289578,730846.8646472937,380840.8107657502,0,2875.167883858343 -6696,8314,15074,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.600401078337109,8.284501466447839,0,0,0,-992.9846826054015,0,3,2,2019,6,0,65,46,1,0,0,6.882236715212017,6.882236715212017,0,0,0,0,0,1,1,0,1.344738235368068,0,49.37,50.15,-9,-9,8.333333333333334,3,4,0,0,8,9,4,0,540,301685.3844748973,52699.29423474448,444323.8189628121,119229.8073036152,1949.693165042674 -6697,8315,15075,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.548522202840619,8.723648620633286,0,0,0,-921.2463992830868,0,1,1,2019,2,0,37,40,1,0,0,19.21234188642192,19.21234188642192,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,912,220291.6626719671,0,0,0,2650.533679748811 -6698,8316,15076,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.6045322504336,8.038707965300839,6.375725766881713,0,0,-946.4167914472248,0,3,3,2019,31,12,33,32,1,12,0,8.706673152115503,8.706673152115503,0,0,0,0,2,0,0,0,2.057192948173944,6.406824389193176,21.36,61.89,-9,-9,5,1,1,0,0,13,7,3,1,1331,731750.8587737613,66090.00479759624,514119.8270176895,34400.52394351894,757.3340594768198 -6699,8317,15077,15078,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.413655898127216,6.135599445275165,9,9,51.38329169245252,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.26338367311851,6.210011467244516,55.79,52.62,43.57,52.96,10,1,1,0,0,7,10,4,1,365,2098793.078848386,1331202.271102808,266876.2822870007,0,2324.693321267494 -6699,8317,15078,15077,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.274177041455097,8.48130572629211,0,9,0,-62.7659520663455,0,2,2,2019,10,0,39,39,1,0,0,10.19524018320431,10.19524018320431,0,0,0,0,0,1,1,0,0,0,43.57,52.96,55.79,52.62,6.666666666666667,1,1,0,0,11,10,4,1,365,2098793.078848386,1331202.271102808,266876.2822870007,0,2324.693321267494 -6700,8318,15079,15080,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.678092988892069,7.664963292760754,6.057964055725834,7,6,-71.56944545738919,0,3,2,2019,11,0,30,21,1,0,0,7.30104086688113,7.30104086688113,0,0,0,0,2,0,0,0,6.724311614055186,0,47.61,53.7,58.09,37.93,8.333333333333334,1,1,0,0,9,10,3,1,1060,55173.51360393759,0,134490.9405112702,31807.77492822182,1754.924716770592 -6700,8318,15080,15079,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,6.415370016138884,6.261712521730284,0,7,-6,115.4984944371298,0,1,2,2019,12,4,50,50,1,4,0,1.074347308939617,1.074347308939617,0,0,0,0,0,0,0,0,0,0,58.09,37.93,47.61,53.7,8.333333333333334,1,1,0,0,9,10,3,1,1060,55173.51360393759,0,134490.9405112702,31807.77492822182,1754.924716770592 -6701,8319,15081,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.3812579556104,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.55,48.72,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,299,41163.45632916754,0,0,0,1838.904860856427 -6702,8320,15082,15083,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.625287450840614,8.035637108836717,0,33,-5,88.36582807432646,0,2,2,2019,6,0,24,24,1,0,0,8.646687225023912,8.646687225023912,0,0,0,0,7,0,0,0,7.255105519242733,0,57.06,57.76,52,54.51,10,1,1,0,0,12,6,3,1,647,559546.6562861116,408758.4872686673,151189.830618315,0,1455.744489532757 -6702,8320,15083,15082,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,0,0,33,5,-12.80013974266967,0,2,2,2019,5,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,5.612057651028104,0,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,10,6,3,1,647,559546.6562861116,408758.4872686673,151189.830618315,0,1455.744489532757 -6702,8321,15084,-9,15082,15083,1,1,24,0,0,0,2,2,-9,0,4,7.727255484143348,7.317296985527917,0,0,0,-1091.425269726511,0,1,1,2019,9,1,35,0,1,1,1,6.714257939664863,6.714257939664863,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,6,3,1,4357,15252.85406511537,0,0,0,104.2968069487463 -6702,8322,15085,-9,15082,15083,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-928.0715692565193,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,6,1,1,1600,159290.4228414314,0,0,0,-120.0429856449452 -6702,8323,15086,-9,15082,15083,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-983.5481005658879,-9,1,1,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,1,0,3,6,1,1,149,0,0,0,0,0 -6703,8324,15087,15088,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.78252333785584,7.157166436743447,10,2,-54.9759800242183,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.121245177026525,6.715204565977987,57.16,56.15,52.65,50.06,8.333333333333334,1,1,0,0,3,5,2,1,1391.5,569402.8183166111,373557.1018090268,251516.6522465374,0,2164.191732606098 -6703,8324,15088,15087,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,4.93591917522088,5.280696961087505,10,-2,-123.585988077303,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.590770962569251,5.031037599691102,52.65,50.06,57.16,56.15,8.333333333333334,1,1,0,0,5,5,2,1,1391.5,569402.8183166111,373557.1018090268,251516.6522465374,0,2164.191732606098 -6704,8325,15089,15090,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.435199133245982,8.269049500719234,0,11,2,30.90933502346042,0,2,2,2019,8,0,44,40,1,0,0,9.727195537025246,9.727195537025246,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,6,5,1,905.3333333333334,42739.46213552627,45812.37180488476,0,0,3730.421786879425 -6704,8325,15090,15089,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.140014395340465,8.295102920082828,0,18,-2,-10.83159769157434,0,2,3,2019,2,0,39,40,1,0,0,13.38800900369122,13.38800900369122,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,905.3333333333334,42739.46213552627,45812.37180488476,0,0,3730.421786879425 -6704,8325,15091,-9,15090,15089,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.4641207887091,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,905.3333333333334,42739.46213552627,45812.37180488476,0,0,3730.421786879425 -6705,8326,15092,-9,15093,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.1003465803882,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,511.3333333333333,38550.78432974638,0,0,0,1616.372024359474 -6705,8326,15093,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,0,0,0,0,0,-1118.398557310824,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.28,52,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,511.3333333333333,38550.78432974638,0,0,0,1616.372024359474 -6705,8326,15094,-9,15093,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.841229463467,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,511.3333333333333,38550.78432974638,0,0,0,1616.372024359474 -6706,8327,15095,15097,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.569757490249938,8.356330918050293,0,22,2,10.78369679780946,0,2,2,2019,7,0,39,39,1,0,0,14.82972281417162,14.82972281417162,0,0,0,0,0,1,1,0,0,0,59.43,58.05,49.17,58.56,8.333333333333334,1,1,0,0,11,9,4,1,732.5,340119.6026707281,99149.53288474432,374841.2860530269,140561.963515697,2742.807455915753 -6706,8327,15096,-9,15097,15095,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.199684497794,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,732.5,340119.6026707281,99149.53288474432,374841.2860530269,140561.963515697,2742.807455915753 -6706,8327,15097,15095,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.743417179565005,7.783941215564142,0,22,-2,42.3620010411035,0,2,3,2019,12,3,42,37,1,3,0,6.66928117558263,6.66928117558263,0,0,0,0,0,1,1,0,0,0,49.17,58.56,59.43,58.05,8.333333333333334,1,1,0,0,12,9,4,1,732.5,340119.6026707281,99149.53288474432,374841.2860530269,140561.963515697,2742.807455915753 -6706,8327,15098,-9,15097,15095,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.6645603632322,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,732.5,340119.6026707281,99149.53288474432,374841.2860530269,140561.963515697,2742.807455915753 -6707,8328,15099,15100,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,3.15994561628962,2.941593255631654,41,9,109.4284888065548,0,3,3,2019,31,10,0,0,4,10,0,0,0,1,0,124.7997317245746,0,0,1,1,0,4.460594699561556,3.306949739050307,27.89,18.61,61.12,51.57,5,1,1,0,0,0,12,3,1,472.5,1539100.516826064,620706.7016384504,294691.2575751342,0,2688.964395588949 -6707,8328,15100,15099,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.83958966050728,8.353319328802655,41,0,-113.5495071750742,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.385294959067036,8.17174891997864,61.12,51.57,27.89,18.61,8.333333333333334,1,1,0,0,5,12,3,1,472.5,1539100.516826064,620706.7016384504,294691.2575751342,0,2688.964395588949 -6708,8329,15101,-9,15103,15104,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.8383154935328,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,5,1,1607.25,196256.1995624138,126542.0730414265,200530.0942854479,137467.7108452646,6192.550300180586 -6708,8329,15102,-9,15103,15104,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-998.7972200163106,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,11,5,1,1607.25,196256.1995624138,126542.0730414265,200530.0942854479,137467.7108452646,6192.550300180586 -6708,8329,15103,15104,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.396794223013599,7.75711659956187,0,17,0,-29.14604273779736,0,2,3,2019,11,0,20,20,1,0,0,11.33210858824472,11.33210858824472,0,0,0,0,0,1,1,0,0,0,45.27,52.06,54.37,54.8,3.333333333333333,2,3,0,0,6,11,5,1,1607.25,196256.1995624138,126542.0730414265,200530.0942854479,137467.7108452646,6192.550300180586 -6708,8329,15104,15103,-9,-9,1,1,36,0,2,0,2,2,-9,1,3,9.439113987179653,9.469308890282438,0,8,0,-59.5615139704452,0,2,2,2019,11,0,35,35,1,0,0,34.66876723081226,34.66876723081226,0,0,0,0,0,1,1,0,0,0,54.37,54.8,45.27,52.06,6.666666666666667,2,3,0,0,10,11,5,1,1607.25,196256.1995624138,126542.0730414265,200530.0942854479,137467.7108452646,6192.550300180586 -6709,8330,15105,15106,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.115367276815823,8.071535627134049,3.565065494739389,2,-4,-16.68968776266816,0,-9,-9,2019,32,12,38,48,1,12,0,8.432932102711888,8.432932102711888,0,0,0,0,0,0,0,0,3.242134421973061,0,19.27,57.93,41.09,56.74,6.666666666666667,1,1,0,0,4,10,5,0,322.5,-9559.873944845262,-44653.54463477689,0,0,3293.740371041112 -6709,8330,15106,15105,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.353687928033468,8.446776218360853,0,2,4,161.0156446755485,0,-9,-9,2019,12,0,44,37,1,0,0,13.48188675197535,13.48188675197535,0,0,0,0,0,0,0,0,6.111114045907629,0,41.09,56.74,19.27,57.93,8.333333333333334,1,1,0,0,1,10,5,0,322.5,-9559.873944845262,-44653.54463477689,0,0,3293.740371041112 -6710,8331,15107,-9,15110,15108,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.2834620154511,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,824.5,475317.6447370289,40252.87038041749,694702.1929502529,242918.7616504172,4852.049734353978 -6710,8331,15108,15110,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.826856546659268,9.316828096426558,0,4,4,-22.50553710487427,0,3,2,2019,6,0,55,50,1,0,0,13.07201846218211,13.07201846218211,0,0,0,0,0,1,1,0,6.449784402303744,0,48.42,60.53,48.87,58.55,8.333333333333334,1,1,0,0,11,10,5,1,824.5,475317.6447370289,40252.87038041749,694702.1929502529,242918.7616504172,4852.049734353978 -6710,8331,15109,-9,15110,15108,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.137242747967,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,824.5,475317.6447370289,40252.87038041749,694702.1929502529,242918.7616504172,4852.049734353978 -6710,8331,15110,15108,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.957427844296224,8.106371286297646,0,4,-4,124.7180070542926,0,-9,-9,2019,7,0,8,0,1,0,0,48.26450558775902,48.26450558775902,0,0,0,0,0,1,1,0,7.005736859485141,0,48.87,58.55,48.42,60.53,8.333333333333334,1,1,0,0,4,10,5,1,824.5,475317.6447370289,40252.87038041749,694702.1929502529,242918.7616504172,4852.049734353978 -6711,8332,15111,-9,15114,15113,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1125.446579483407,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,1,1,664,49645.01786560003,0,139917.493668291,60640.6422105785,2536.189606325926 -6711,8332,15112,-9,15114,15113,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-818.3823872561928,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,1,1,664,49645.01786560003,0,139917.493668291,60640.6422105785,2536.189606325926 -6711,8332,15113,15114,-9,-9,1,1,69,0,4,0,3,3,-9,0,3,0,0,0,12,26,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.95,46.69,34.08,55.73,8.333333333333334,2,3,0,0,0,5,1,1,664,49645.01786560003,0,139917.493668291,60640.6422105785,2536.189606325926 -6711,8332,15114,15113,-9,-9,1,0,43,0,4,0,3,3,-9,0,3,0,0,0,12,-26,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.08,55.73,56.95,46.69,8.333333333333334,2,3,0,1,0,5,1,1,664,49645.01786560003,0,139917.493668291,60640.6422105785,2536.189606325926 -6711,8333,15115,15116,15114,15113,1,1,34,0,4,0,2,2,-9,0,4,7.300200534499657,7.531373780135447,0,12,5,-4.683879201965143,0,3,2,2019,1,0,24,24,1,0,0,7.463207074999203,7.463207074999203,0,0,0,0,0,1,1,0,0,0,47.1,48.39,38.9,48.23,10,2,3,0,0,4,5,2,1,452,109563.700110218,687.1162868448691,0,0,1707.489023439573 -6711,8333,15116,15115,-9,-9,1,0,29,0,4,0,2,2,-9,0,3,0,0,0,12,-5,5.219881974917058,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,48.23,47.1,48.39,5,2,3,0,0,0,5,2,1,452,109563.700110218,687.1162868448691,0,0,1707.489023439573 -6711,8333,15117,-9,15116,15115,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.6090623928744,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,452,109563.700110218,687.1162868448691,0,0,1707.489023439573 -6711,8333,15118,-9,15116,15115,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.0697618450351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,452,109563.700110218,687.1162868448691,0,0,1707.489023439573 -6712,8334,15119,15120,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.764692827029747,4.632816851000555,23,15,140.2073745626235,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.797878077112532,4.614366389139053,61.43,43.34,66.37,38.36,8.333333333333334,1,1,0,0,0,7,3,1,477,1654823.313727799,825859.9822344207,872297.1454127224,0,2093.964923205683 -6712,8334,15120,15119,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.320030406862152,8.125470877453887,3.988869189892261,23,-15,-101.7106777539531,0,2,2,2019,7,0,50,50,1,0,0,8.927345076723423,8.927345076723423,0,0,0,0,0,1,1,0,5.329959298425552,4.34644052987977,66.37,38.36,61.43,43.34,8.333333333333334,1,1,0,0,12,7,3,1,477,1654823.313727799,825859.9822344207,872297.1454127224,0,2093.964923205683 -6713,8335,15121,15122,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,6,4,125.8299756574487,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,.225736656019297,7,1,1,0,.2968588916316888,0,58.25,22.01,57.16,56.15,5,1,1,1,0,7,7,4,1,338.5,1347366.289465812,764300.1159140458,484101.9787669069,0,2677.410749738086 -6713,8335,15122,15121,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.75252450040167,8.432615372562218,0,28,-4,-27.12602384849122,0,2,3,2019,7,0,42,55,1,0,0,20.4269514353821,20.4269514353821,0,0,0,0,7,1,1,0,.0637479496614105,0,57.16,56.15,58.25,22.01,8.333333333333334,1,1,0,0,9,7,4,1,338.5,1347366.289465812,764300.1159140458,484101.9787669069,0,2677.410749738086 -6713,8336,15123,-9,15122,15121,1,1,24,0,0,0,2,2,-9,0,4,7.782180255970744,7.569358259366513,0,0,0,-1009.134361115597,0,2,2,2019,6,0,43,37,1,0,1,5.089853993595455,5.089853993595455,0,0,0,0,0,1,1,0,3.383309526487303,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,392,40287.16582962005,0,0,0,1196.025871155548 -6714,8337,15124,15127,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.153896072151863,6.959646519845641,0,8,0,-17.82629897164453,0,-9,-9,2019,12,0,4,0,1,2,0,31.19125177190013,31.19125177190013,0,0,0,0,0,1,1,0,2.490805767274796,0,41.47,58.08,49.58,55.59,8.333333333333334,1,1,0,0,5,7,5,1,1286.25,116322.3666337901,-7283.506638418179,286904.3645866353,171396.5011201286,3287.927412781305 -6714,8337,15125,-9,15124,15127,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.35116238701,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,1286.25,116322.3666337901,-7283.506638418179,286904.3645866353,171396.5011201286,3287.927412781305 -6714,8337,15126,-9,15124,15127,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.296482749822,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,1286.25,116322.3666337901,-7283.506638418179,286904.3645866353,171396.5011201286,3287.927412781305 -6714,8337,15127,15124,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.228293167584157,9.315164617649483,0,8,0,-42.50458399907913,0,2,2,2019,11,0,38,38,1,0,0,29.62742700385638,29.62742700385638,0,0,0,0,0,1,1,0,0,0,49.58,55.59,41.47,58.08,8.333333333333334,4,5,0,0,9,7,5,1,1286.25,116322.3666337901,-7283.506638418179,286904.3645866353,171396.5011201286,3287.927412781305 -6715,8338,15128,15129,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,7,-3,4.293711210866331,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.976376225902174,0,42.16,37.92,51.66,38.82,8.333333333333334,1,1,0,0,0,5,3,1,338.5,1425154.733746955,911054.1535616794,296564.2820375613,0,2335.088759441205 -6715,8338,15129,15128,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.200905590016372,8.070134432937088,7,3,69.69351237499691,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.920706808653176,8.257020629503653,51.66,38.82,42.16,37.92,8.333333333333334,1,1,0,0,1,5,3,1,338.5,1425154.733746955,911054.1535616794,296564.2820375613,0,2335.088759441205 -6716,8339,15130,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.115637345851114,7.225716011221071,0,0,-1129.513246994676,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.162619906664824,48.41,39.63,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1101,552516.1322081751,240519.8775654408,244300.9335467406,0,1516.996955075811 -6717,8340,15131,15134,-9,-9,1,1,46,0,2,0,3,3,-9,1,2,0,0,0,8,-3,-44.67053234895916,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.6,29.45,35.2,46,6.666666666666667,1,1,0,0,0,13,3,1,1190.25,9741.556225408696,61597.82221053301,0,0,2321.063404376395 -6717,8340,15132,-9,15134,15131,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.607243427749,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,1190.25,9741.556225408696,61597.82221053301,0,0,2321.063404376395 -6717,8340,15133,-9,15134,15131,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.3080422648364,-9,2,3,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,64.55,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1190.25,9741.556225408696,61597.82221053301,0,0,2321.063404376395 -6717,8340,15134,15131,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.318147808003626,8.443451904843901,0,8,3,31.14345038529686,0,2,3,2019,15,4,60,54,1,4,0,7.097865302109226,7.097865302109226,0,0,0,0,14.5,1,1,0,0,0,35.2,46,51.6,29.45,5,1,1,0,0,8,13,3,1,1190.25,9741.556225408696,61597.82221053301,0,0,2321.063404376395 -6718,8341,15135,15136,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.651349738097695,5.661136574606526,6,-2,130.4862390210513,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.053880131856696,5.515469427251425,54.2,57.49,42.77,46.48,8.333333333333334,1,1,0,0,5,1,3,1,608,1052594.306197656,798548.4186473119,122967.3934341553,21687.54723594937,3511.559181438526 -6718,8341,15136,15135,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.919806077393852,7.985180022187604,6,2,-91.55784265288955,0,1,1,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.984770736821238,7.952840111929834,42.77,46.48,54.2,57.49,3.333333333333333,1,1,0,0,5,1,3,1,608,1052594.306197656,798548.4186473119,122967.3934341553,21687.54723594937,3511.559181438526 -6719,8342,15137,15138,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,0,0,41,-3,43.30591950087793,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.624598085523223,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,1260.5,2903472.2435827,1675667.999371425,728822.8212720845,0,7737.590838359796 -6719,8342,15138,15137,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.337863138775107,9.603430310381093,8.340551802983434,41,3,110.0830856457499,0,2,2,2019,8,0,30,20,1,0,0,47.69128924383708,47.69128924383708,0,0,0,0,0,0,0,0,7.820450354155581,8.472521111320644,57.16,56.15,57.06,57.76,0,1,1,0,0,9,9,5,1,1260.5,2903472.2435827,1675667.999371425,728822.8212720845,0,7737.590838359796 -6720,8343,15139,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.688098750920521,9.890183767269676,0,0,0,-1030.730625032726,-9,-9,-9,2019,11,0,58,0,1,0,0,27.9594800988831,27.9594800988831,0,0,0,0,0,0,0,0,6.233545471203111,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,485,203565.5993415797,-1903.287381640737,330081.8194966904,66237.42041525601,5638.073132468679 -6721,8344,15140,15141,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.409528229403339,8.423949094693848,0,3,2,58.12844496252784,0,2,2,2019,23,11,37,41,1,11,0,14.910004175599,14.910004175599,0,0,0,0,0,0,0,0,3.973393933807786,0,44.83,55.13,33.26,61.9,6.666666666666667,1,1,0,0,9,11,5,1,310,-45412.20599205523,-63162.69987367383,0,0,2993.022160518545 -6721,8344,15141,15140,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.848946550065358,8.085164807796527,0,3,-2,-79.84440364512064,0,2,2,2019,19,7,39,37,1,7,0,9.238885516990395,9.238885516990395,0,0,0,0,2,0,0,0,1.837109033686537,0,33.26,61.9,44.83,55.13,6.666666666666667,1,1,0,0,9,11,5,1,310,-45412.20599205523,-63162.69987367383,0,0,2993.022160518545 -6722,8345,15142,15143,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.303026382798633,9.499131065348321,0,4,2,43.90861172971071,0,3,2,2019,5,0,47,0,1,0,0,30.58175151722005,30.58175151722005,0,0,0,0,0,0,0,0,2.592441254292867,0,37.42,60.49,50,48,10,1,1,0,0,7,11,5,1,315,2493821.127626825,2234014.049920798,301811.7367545166,0,4343.2466925771 -6722,8345,15143,15142,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.590081492894171,7.603144683658948,0,4,-2,-96.71492863912401,0,3,3,2019,11,0,20,20,1,2,0,8.304356483989928,8.304356483989928,0,0,0,0,0,0,0,0,0,0,50,48,37.42,60.49,7,1,1,0,0,1,11,5,1,315,2493821.127626825,2234014.049920798,301811.7367545166,0,4343.2466925771 -6723,8346,15144,15145,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.49901624975271,8.530176987355336,0,6,4,45.8354172650545,0,1,2,2019,8,0,45,45,1,0,0,15.82419198803709,15.82419198803709,0,0,0,0,0,1,1,0,1.354603300768057,0,44.7,53.68,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,830.3333333333334,-25378.25956341082,90346.98828411562,256320.8978469773,177164.4674508453,4195.996782453382 -6723,8346,15145,15144,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.747191111727387,8.603741042111695,0,6,-4,82.45612202519496,0,-9,-9,2019,6,0,48,48,1,0,0,14.26988352999231,14.26988352999231,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.7,53.68,8.333333333333334,1,1,0,0,6,5,5,1,830.3333333333334,-25378.25956341082,90346.98828411562,256320.8978469773,177164.4674508453,4195.996782453382 -6723,8346,15146,-9,15145,15144,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.256355161946,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,830.3333333333334,-25378.25956341082,90346.98828411562,256320.8978469773,177164.4674508453,4195.996782453382 -6724,8347,15147,-9,-9,-9,1,0,39,0,2,0,1,1,1,0,2,7.046047948098641,6.994682347238212,0,0,0,-890.4441583514412,-9,3,2,2019,25,11,20,0,1,11,0,6.244860491694721,6.244860491694721,0,0,0,0,2,1,1,0,0,0,28.88,54.9,-9,-9,3.333333333333333,1,1,0,1,6,6,2,0,1314.333333333333,72777.06465925009,33716.43180643311,0,0,451.6347653111386 -6724,8347,15148,-9,15147,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-851.0679141163757,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,1314.333333333333,72777.06465925009,33716.43180643311,0,0,451.6347653111386 -6724,8347,15149,-9,15147,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-925.9496884069422,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,1314.333333333333,72777.06465925009,33716.43180643311,0,0,451.6347653111386 -6725,8348,15150,-9,15152,15151,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1101.015387740433,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,961.2,1322460.509513565,1048267.494416,344116.4201789686,63133.27595200548,5743.698400193896 -6725,8348,15151,15152,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,9.120835741652636,9.225619972599381,0,18,1,82.81098146383303,0,2,3,2019,11,0,35,35,1,0,0,28.04581641930162,28.04581641930162,0,0,0,0,0,0,0,0,0,0,48.93,50.55,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,961.2,1322460.509513565,1048267.494416,344116.4201789686,63133.27595200548,5743.698400193896 -6725,8348,15152,15151,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.835698886472731,8.916894119533039,0,19,-1,11.39930310672091,0,2,2,2019,6,0,46,43,1,0,0,15.92123714563755,15.92123714563755,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.93,50.55,10,1,1,0,0,11,12,5,1,961.2,1322460.509513565,1048267.494416,344116.4201789686,63133.27595200548,5743.698400193896 -6725,8348,15153,-9,15152,15151,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.9407933259955,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,961.2,1322460.509513565,1048267.494416,344116.4201789686,63133.27595200548,5743.698400193896 -6725,8348,15154,-9,15152,15151,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.566467472517,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,961.2,1322460.509513565,1048267.494416,344116.4201789686,63133.27595200548,5743.698400193896 -6726,8349,15155,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.914845877405067,5.877440972116776,0,0,-998.5888601191577,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,4.992348324944898,0,41.82033717311551,0,1,1,0,1.853432138131764,6.026052958840854,53,44,-9,-9,8,1,1,0,0,0,8,2,1,515,559247.8105657236,14348.53377832768,417357.5829781507,0,880.5055051556864 -6727,8350,15156,-9,15160,15158,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.694209849639,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,769.2,424305.4742696107,150300.272661213,316951.0705065833,83292.72711435021,3184.007884848597 -6727,8350,15157,-9,15160,15158,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-929.1322625008077,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,4,1,769.2,424305.4742696107,150300.272661213,316951.0705065833,83292.72711435021,3184.007884848597 -6727,8350,15158,15160,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,9.028983888966014,8.75372923231838,0,9,3,-51.68468183434927,0,2,3,2019,30,10,30,40,1,10,0,31.88808416788716,31.88808416788716,0,0,0,0,0,1,1,0,0,0,4.08,68.75,28.69,50.85,0,1,1,0,0,10,6,4,1,769.2,424305.4742696107,150300.272661213,316951.0705065833,83292.72711435021,3184.007884848597 -6727,8350,15159,-9,15160,15158,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.466950418105,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,769.2,424305.4742696107,150300.272661213,316951.0705065833,83292.72711435021,3184.007884848597 -6727,8350,15160,15158,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,0,0,0,9,-3,-136.3179081160863,0,1,1,2019,28,12,0,24,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,28.69,50.85,4.08,68.75,3.333333333333333,1,1,0,0,10,6,4,1,769.2,424305.4742696107,150300.272661213,316951.0705065833,83292.72711435021,3184.007884848597 -6728,8351,15161,15162,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.426312535189902,5.766577703264756,53,-1,-42.10805031861533,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.884782693159028,57.16,56.15,63.38,53.47,10,1,1,0,0,0,7,3,1,1284,999331.6000514666,-41570.75394707171,883137.7749739871,0,2452.212560458606 -6728,8351,15162,15161,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.673405685796774,7.869376926811402,53,1,-47.19845495194659,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.59098274324724,7.827199640608651,63.38,53.47,57.16,56.15,10,1,1,0,0,4,7,3,1,1284,999331.6000514666,-41570.75394707171,883137.7749739871,0,2452.212560458606 -6729,8352,15163,15164,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.119116280657595,5.610205849438059,6,-4,-58.02052011204925,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,74.5,1,1,0,0,5.875363304567296,53,45,55,45,8,1,1,0,0,0,2,2,1,1129,398272.0144747716,156414.8978247666,160164.0516747462,0,1835.413871645091 -6729,8352,15164,15163,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.698652774891691,6.839986545467176,61,4,70.66080323350307,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.857387145718419,6.585053899274582,55,45,53,45,8,1,1,0,0,0,2,2,1,1129,398272.0144747716,156414.8978247666,160164.0516747462,0,1835.413871645091 -6730,8353,15165,-9,15168,15166,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.763734226337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,1136.8,-79827.83927287815,0,0,0,2397.869866759841 -6730,8353,15166,15168,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,7.580754594646363,7.622820625974589,0,8,2,-73.24268325836694,0,2,2,2019,11,0,32,32,1,0,0,7.37267526175366,7.37267526175366,0,0,0,0,2,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,10,11,2,1,1136.8,-79827.83927287815,0,0,0,2397.869866759841 -6730,8353,15167,-9,15168,15166,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.624227495976,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,1136.8,-79827.83927287815,0,0,0,2397.869866759841 -6730,8353,15168,15166,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,6.61997562971795,6.471124000916221,0,8,-2,-14.25671585457904,0,2,2,2019,7,0,20,24,1,0,0,5.938141021740011,5.938141021740011,0,0,0,0,0,1,1,0,0,0,55.36,51.57,51.24,58.84,8.333333333333334,1,1,0,0,10,11,2,1,1136.8,-79827.83927287815,0,0,0,2397.869866759841 -6730,8353,15169,-9,15168,15166,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1108.119440394086,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,2,1,1136.8,-79827.83927287815,0,0,0,2397.869866759841 -6731,8354,15170,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.627155218569046,8.749734237039723,0,0,0,-980.9336103089046,0,2,2,2019,13,1,42,43,1,1,0,17.96547148878597,17.96547148878597,0,0,0,0,0,0,0,0,0,0,33.22,49.65,-9,-9,6.666666666666667,1,1,0,0,12,11,5,0,2304,65338.94328465645,0,82023.06492500013,35801.37637264696,1954.524667449635 -6732,8355,15171,15172,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,6.81297366363106,6.788696764345174,10,0,-121.8074970989834,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,7.331460782226026,6.698907190896574,58.3,53.26,61.12,51.57,8.333333333333334,1,1,0,0,9,9,2,1,999.5,613814.6313164101,107112.647316213,388773.0641581052,0,1845.941107840264 -6732,8355,15172,15171,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,0,-54.13441810336279,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.078001031483856,0,61.12,51.57,58.3,53.26,10,1,1,0,0,0,9,2,1,999.5,613814.6313164101,107112.647316213,388773.0641581052,0,1845.941107840264 -6732,8356,15173,-9,15172,15171,1,0,41,0,0,0,2,2,-9,0,4,5.780284348478817,5.989083409735472,0,0,0,-1075.200880420177,0,3,3,2019,12,0,40,40,1,0,0,.7639525508228859,.7639525508228859,0,0,0,0,0,1,0,1,.1700042631686249,0,54.2,57.49,-9,-9,5,1,1,0,1,11,9,2,1,398,-96701.45361422974,0,0,0,777.0705239612885 -6732,8357,15174,-9,15173,-9,1,0,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-1089.920219175654,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1106,-74238.24595827538,0,0,0,713.7140316328628 -6733,8358,15175,15176,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.776587791808131,6.647161567731314,10,6,-39.81851360835775,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,.0812945529454865,0,1,1,0,0,6.804547010332702,39.48,44.09,45.72,53.17,8.333333333333334,1,1,0,0,3,4,2,1,538,731250.0332111258,112156.3748202699,413465.829422032,0,1891.381323520222 -6733,8358,15176,15175,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.227875704553528,6.059083773712148,10,-6,6.743388822984438,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.294358781182684,6.596956560321617,45.72,53.17,39.48,44.09,8.333333333333334,1,1,0,0,4,4,2,1,538,731250.0332111258,112156.3748202699,413465.829422032,0,1891.381323520222 -6734,8359,15177,-9,15180,15181,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.0676310485962,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,1340.8,290471.9549114507,352576.0771629657,0,0,3403.106283926553 -6734,8359,15178,-9,15180,15181,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.0386595149454,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1340.8,290471.9549114507,352576.0771629657,0,0,3403.106283926553 -6734,8359,15179,-9,15180,15181,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-882.0391876532422,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1340.8,290471.9549114507,352576.0771629657,0,0,3403.106283926553 -6734,8359,15180,15181,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,7.429381922668544,7.306054660849073,0,20,2,44.70107125843075,0,2,2,2019,11,0,14,0,1,0,0,9.85142928485835,9.85142928485835,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,2,8,4,1,1340.8,290471.9549114507,352576.0771629657,0,0,3403.106283926553 -6734,8359,15181,15180,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.009080683396997,8.71037253840141,0,20,-2,85.10130512963416,0,2,1,2019,11,0,42,40,1,0,0,20.70863669254763,20.70863669254763,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,8.333333333333334,1,1,0,0,8,8,4,1,1340.8,290471.9549114507,352576.0771629657,0,0,3403.106283926553 -6735,8360,15182,-9,-9,15184,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-982.4581534282959,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.19,53.97,-9,-9,10,1,1,0,0,0,11,2,0,1922.666666666667,2052.280165540509,0,0,0,1208.384124772373 -6735,8360,15183,-9,-9,15184,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.181942375821,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,2,0,1922.666666666667,2052.280165540509,0,0,0,1208.384124772373 -6735,8360,15184,-9,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,7.73631781777021,7.766517462350926,0,0,0,-1144.490855869827,0,2,2,2019,12,0,36,0,1,0,0,5.801897783031317,5.801897783031317,0,0,0,0,0,1,1,0,0,0,52.54,52.91,-9,-9,1.666666666666667,1,1,0,0,1,11,2,0,1922.666666666667,2052.280165540509,0,0,0,1208.384124772373 -6735,8361,15185,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,2,0,0,0,0,0,-911.537558816151,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,51.52,-9,-9,3.333333333333333,1,1,1,1,0,11,1,0,1007,-120776.7988142886,0,0,0,651.7224489889733 -6736,8362,15186,15187,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,9,0,-20.93256986982405,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.469489783335665,0,58.32,50.22,51.17,49.39,8.333333333333334,1,1,0,0,8,9,3,1,292.5,2736561.03242032,1037046.595973811,382993.5540742108,0,2171.361733464751 -6736,8362,15187,15186,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.17610062146983,7.881558944079369,39,0,-40.42193953171048,0,2,2,2019,8,0,0,17,4,0,0,0,0,0,0,0,0,0,1,1,0,6.142930421896136,8.27852099884703,51.17,49.39,58.32,50.22,8.333333333333334,1,1,0,0,10,9,3,1,292.5,2736561.03242032,1037046.595973811,382993.5540742108,0,2171.361733464751 -6737,8363,15188,15189,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.295587214555367,8.48125776065414,0,4,0,-9.111028269385047,0,3,2,2019,20,8,39,38,1,8,0,13.96424005132149,13.96424005132149,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,10,1,1,0,0,10,2,5,1,2023,-42818.98136329113,10688.37886182222,0,0,3116.988833564608 -6737,8363,15189,15188,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.240005116615247,8.499803018375097,0,4,0,35.13241155933344,0,-9,-9,2019,16,4,47,50,1,4,0,11.01558860109493,11.01558860109493,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,8.333333333333334,1,1,0,0,10,2,5,1,2023,-42818.98136329113,10688.37886182222,0,0,3116.988833564608 -6738,8364,15190,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,6.750533136706378,7.324373549277077,6.60401652578008,0,0,-975.5658294546099,0,3,3,2019,14,4,12,14,1,4,0,7.986361822963755,7.986361822963755,0,0,0,0,2,1,1,0,0,6.949285644630072,45.34,53.64,-9,-9,6.666666666666667,1,1,0,0,12,7,3,1,382,644666.2989420004,231532.7622071658,320081.8207106228,0,1423.942083492252 -6739,8365,15191,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.6594248184614,8.510794052184519,0,0,0,-939.3850080482706,0,2,2,2019,12,0,45,45,1,0,0,12.10492254119873,12.10492254119873,0,0,0,0,0,0,0,0,.4133612429519367,0,39.5,56.19,-9,-9,5,1,1,0,0,11,6,5,1,100,130041.5041117801,41015.12564331567,312972.6748130263,186729.7955006237,2414.737192811151 -6740,8366,15192,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,4,0,8.060320941376899,7.618439224613475,0,0,-1026.504211009578,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.904909588506568,62.11,45.63,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,408,429803.204350556,216866.8341539812,0,0,1700.931246991784 -6741,8367,15193,-9,-9,-9,1,1,97,0,0,0,2,2,-9,0,2,0,7.632751019403414,7.422219085328724,0,0,-973.9859505499369,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.053381653427066,7.537268580360942,58.79,25.91,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,433,507805.0830405476,223797.3506699628,319293.038093175,0,1563.906468684224 -6742,8368,15194,15196,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.333565210678374,6.260577736612322,0,20,-3,-81.8496173864668,0,-9,-9,2019,14,2,8,8,1,2,0,7.738363478033037,7.738363478033037,0,0,0,0,14.5,1,1,0,2.530730372541329,0,53.23,42.9,46,39,5,1,1,0,0,5,9,4,1,541,1256212.487886904,1001833.890028503,495787.635074769,139823.0267358472,2525.079656765331 -6742,8368,15195,-9,15194,15196,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.447586805548,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,541,1256212.487886904,1001833.890028503,495787.635074769,139823.0267358472,2525.079656765331 -6742,8368,15196,15194,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.861274013223991,8.960757358052744,0,20,3,2.054886045025798,0,2,-9,2019,22,10,42,37,1,10,0,14.38627273450668,14.38627273450668,0,0,0,0,2,1,1,0,1.630567932165979,0,46,39,53.23,42.9,1.666666666666667,1,1,0,0,10,9,4,1,541,1256212.487886904,1001833.890028503,495787.635074769,139823.0267358472,2525.079656765331 -6743,8369,15197,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.727348797166915,7.660363744392385,0,0,-1068.024738695528,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.313984431903147,7.726132260468881,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,215,681537.7635881738,434260.4478458301,295936.3049379812,0,1570.025525450883 -6744,8370,15198,15199,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.51999970581787,8.730551369357293,0,39,0,-122.7168146664742,0,-9,3,2019,6,0,50,50,1,0,0,11.61715341622245,11.61715341622245,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.83,47.81,10,1,1,0,0,10,9,4,1,445,763401.307172377,483940.6668212575,289468.4552196456,0,1585.517469555336 -6744,8370,15199,15198,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,-64.63144931433786,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.83,47.81,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,445,763401.307172377,483940.6668212575,289468.4552196456,0,1585.517469555336 -6745,8371,15200,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.804407151047597,5.728655147147258,0,0,-979.9987170721745,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.580085790025322,5.627583774988794,53.98,50.87,-9,-9,10,1,1,0,0,8,9,2,1,1012,-35643.26275911886,126098.7996415458,0,0,926.1406518029696 -6746,8372,15201,15203,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.498195962299105,8.575612578310121,0,6,1,157.5473298957281,0,-9,-9,2019,10,0,48,40,1,1,0,12.62221923415222,12.62221923415222,0,0,0,0,0,1,1,0,0,0,50,57,48.77,60.16,7,1,1,0,0,1,4,4,1,864.25,132125.8774061435,90949.6163052052,260417.3345172022,182611.8009542742,4370.031665699431 -6746,8372,15202,-9,15203,15201,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.0303288607679,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,864.25,132125.8774061435,90949.6163052052,260417.3345172022,182611.8009542742,4370.031665699431 -6746,8372,15203,15201,-9,-9,1,0,33,1,2,0,2,2,-9,0,5,8.499251415881059,8.526556056264891,0,6,-1,56.4344840729601,0,2,1,2019,9,1,44,42,1,1,0,14.72744461768579,14.72744461768579,0,0,0,0,0,1,1,0,7.038471419290974,0,48.77,60.16,50,57,6.666666666666667,1,1,0,0,6,4,4,1,864.25,132125.8774061435,90949.6163052052,260417.3345172022,182611.8009542742,4370.031665699431 -6746,8372,15204,-9,15203,15201,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.430496399665,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,864.25,132125.8774061435,90949.6163052052,260417.3345172022,182611.8009542742,4370.031665699431 -6747,8373,15205,15206,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.62150138718979,7.899393328711682,0,8,-3,-3.943620257868162,0,1,1,2019,11,1,43,50,1,1,0,10.60966565086904,10.60966565086904,0,0,0,0,0,0,0,0,0,0,49.41,47.57,50.34,56.4,5,1,1,0,0,11,11,5,1,364.5,664698.7223887416,343851.4303422394,319891.0737311951,47709.76296220264,9183.868401180298 -6747,8373,15206,15205,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.387422237687446,9.634736096173246,0,8,3,-94.80959228707974,-9,2,2,2019,13,4,53,0,1,4,0,28.36249532114419,28.36249532114419,0,0,0,0,0,0,0,0,2.019065470978611,0,50.34,56.4,49.41,47.57,5,1,1,0,0,10,11,5,1,364.5,664698.7223887416,343851.4303422394,319891.0737311951,47709.76296220264,9183.868401180298 -6748,8374,15207,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-933.4729477749854,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,8.288775149442891,0,0,1,1,0,0,0,46.07,14.24,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1325,-154038.9247073469,0,0,0,1523.789314698058 -6748,8375,15208,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1135.831757426542,0,2,-9,2019,13,1,0,0,4,1,0,0,0,1,0,13.11151845746162,0,0,1,1,0,0,0,37.42,35.77,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,698,158107.4103186656,0,0,0,419.2702341736088 -6749,8376,15209,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,0,0,0,0,-887.1318322737989,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,4,5,1,1,2,10,1,1,366,-99759.6255847569,64442.17505609278,0,0,284.1576582942807 -6750,8377,15210,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.4357784275537,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,2.448930322410214,0,0,1,1,0,0,0,52,47,-9,-9,7,1,1,0,0,0,9,1,1,47,156890.9602510796,0,0,0,1673.397115467517 -6750,8378,15211,-9,-9,15210,1,1,28,0,0,0,2,2,-9,0,4,8.14259679104676,8.133620851036818,0,0,0,-1066.574095026208,0,-9,2,2019,9,0,37,44,1,0,0,9.318376023107071,9.318376023107071,0,0,0,0,2,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,422,109011.8373140329,61519.70360601203,0,0,1600.910233411893 -6751,8379,15212,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.234753655120091,9.205395983010922,3.843311474162711,0,0,-901.8484033337419,0,2,2,2019,11,2,44,40,1,2,0,26.26084468790876,26.26084468790876,0,0,0,0,0,0,0,0,4.514139439951634,0,42.67,53.48,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,2722,588356.5867384746,165471.2394563276,258661.9082698133,0,3167.268910904337 -6752,8380,15213,15214,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.566367024156984,8.526205107478349,0,1,6,-115.2953968182542,-9,-9,-9,2019,10,0,37,0,1,1,0,19.42027051726766,19.42027051726766,0,0,0,0,0,0,0,0,6.542527945714045,0,50,57,57.16,56.15,7,4,1,0,0,1,10,5,1,454,206302.7707394365,117978.8451603134,263974.2100185369,129351.084110256,4846.886898414061 -6752,8380,15214,15213,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.583680287171662,8.782060992847599,0,1,-6,-173.8821167455036,0,2,2,2019,10,0,42,38,1,0,0,13.66414595347061,13.66414595347061,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,57,1.666666666666667,1,1,0,0,8,10,5,1,454,206302.7707394365,117978.8451603134,263974.2100185369,129351.084110256,4846.886898414061 -6753,8381,15215,15216,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,47,-3,-92.35455135991731,0,2,1,2019,7,0,0,36,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,60.12,54.8,8.333333333333334,1,1,0,1,9,10,2,1,455.5,887677.2684722123,542376.1265932864,341737.961206895,0,1194.489469267099 -6753,8381,15216,15215,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.323781204426092,6.6804704165763,47,3,13.74698603624701,0,1,1,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.590322072406401,6.655311976166466,60.12,54.8,56.33,51.02,8.333333333333334,1,1,0,0,10,10,2,1,455.5,887677.2684722123,542376.1265932864,341737.961206895,0,1194.489469267099 -6754,8382,15217,15218,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.103887843743598,8.216159776921932,0,8,-3,69.893252166094,0,2,3,2019,11,0,40,40,1,0,0,12.05748805804926,12.05748805804926,0,0,0,0,7,0,0,0,0,0,42.02,48.45,54.38,28.01,6.666666666666667,1,1,0,0,9,12,5,1,510,553220.2857597414,306267.542940243,183773.1350559136,0,3629.765567229324 -6754,8382,15218,15217,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.39118768419981,8.466117619003741,0,8,3,-130.2698475629059,0,3,2,2019,14,3,40,40,1,3,0,12.05994940590289,12.05994940590289,0,0,0,0,2,0,0,0,0,0,54.38,28.01,42.02,48.45,3.333333333333333,1,1,0,0,9,12,5,1,510,553220.2857597414,306267.542940243,183773.1350559136,0,3629.765567229324 -6754,8383,15219,-9,15217,15218,1,0,22,0,0,0,1,1,-9,0,4,7.879570240321208,7.666928641166917,0,0,0,-828.979627968768,0,2,2,2019,10,0,44,42,1,0,1,6.480290425783974,6.480290425783974,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,29,0,0,0,0,1494.979389741078 -6755,8384,15220,-9,15225,15223,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-860.8060362112292,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8384,15221,-9,15225,15223,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.9507317213299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8384,15222,-9,15225,15223,1,0,17,0,4,1,3,0,0,0,5,0,0,0,0,0,-987.1402466417575,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,34.71,-9,-9,6.666666666666667,2,3,0,0,0,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8384,15223,15225,-9,-9,1,1,45,0,4,0,2,2,-9,0,4,8.973793296152747,9.226432320177098,0,17,8,-131.867719056374,0,-9,-9,2019,11,0,65,50,1,0,0,13.03978336448717,13.03978336448717,0,0,0,0,0,1,1,0,0,0,43.96,62.06,50.34,56.4,5,2,3,0,1,13,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8384,15224,-9,15225,15223,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.379287545493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.154739852967099,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8384,15225,15223,-9,-9,1,0,37,0,4,0,2,2,-9,0,4,0,0,0,17,-8,-60.16818429404647,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.34,56.4,43.96,62.06,6.666666666666667,2,3,0,0,0,8,3,0,484.5,367376.7296329378,64580.69464951608,440858.9870006672,138335.4447770925,5542.533554002885 -6755,8385,15226,-9,15225,15223,1,0,19,0,4,1,2,0,0,0,4,0,2.006626589628764,1.882661832601374,0,0,-1025.647772153093,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.376134864823165,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,1216,49895.51234881374,0,0,0,359.835453196491 -6756,8386,15227,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.676923818245199,8.072964987543942,5.804197823160975,0,0,-951.2461928312382,0,-9,-9,2019,12,0,37,37,1,0,0,7.654452855510385,7.654452855510385,0,0,0,0,7,1,1,0,6.328164172553136,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,556,299068.0945268176,23265.37693200257,195840.5420060409,0,1776.733343912088 -6756,8387,15228,-9,15227,-9,1,1,18,0,0,1,2,0,0,1,5,0,0,0,0,0,-1087.988990554791,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,.2554963427612436,0,39.03,60.86,-9,-9,10,1,1,0,0,0,10,1,1,476,-211939.8252327522,0,0,0,156.5932397012702 -6757,8388,15229,15230,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.483721769271735,8.618242278564434,0,12,2,-69.34509377157147,0,-9,-9,2019,15,3,47,40,1,3,0,14.82353434285252,14.82353434285252,0,0,0,0,0,0,0,0,0,0,23.07,51.91,27.49,57.5,3.333333333333333,1,1,0,0,8,8,5,1,311.5,496231.0950076894,29343.53961469523,0,0,5550.675304855735 -6757,8388,15230,15229,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,9.52656196814595,9.163805180775483,0,7,-2,-88.51427162423649,0,2,1,2019,23,8,40,40,1,8,0,26.37090406685056,26.37090406685056,0,0,0,0,0,0,0,0,0,0,27.49,57.5,23.07,51.91,6.666666666666667,4,5,0,0,5,8,5,1,311.5,496231.0950076894,29343.53961469523,0,0,5550.675304855735 -6758,8389,15231,15232,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.046646372845004,9.037328285009286,0,20,4,16.52007330721477,0,-9,-9,2019,12,0,40,40,1,0,0,18.88375949118829,18.88375949118829,0,0,0,0,0,1,1,0,0,0,37.7,54.28,49.87,50.46,5,1,1,0,0,11,8,5,1,417.25,253808.9660586152,39167.96013080114,472404.8681840241,345089.5503177275,4110.225541457139 -6758,8389,15232,15231,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,7.701000660776788,7.559683808080552,0,20,-4,-124.8825691611655,0,2,2,2019,10,0,24,24,1,0,0,7.3175840321098,7.3175840321098,0,0,0,0,0,1,1,0,0,0,49.87,50.46,37.7,54.28,8.333333333333334,1,1,0,0,11,8,5,1,417.25,253808.9660586152,39167.96013080114,472404.8681840241,345089.5503177275,4110.225541457139 -6758,8389,15233,-9,15232,15231,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.227570699107,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,417.25,253808.9660586152,39167.96013080114,472404.8681840241,345089.5503177275,4110.225541457139 -6758,8389,15234,-9,15232,15231,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.5176104082125,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,417.25,253808.9660586152,39167.96013080114,472404.8681840241,345089.5503177275,4110.225541457139 -6759,8390,15235,15237,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.855094459514978,8.733825148234942,0,7,3,27.0961400224242,0,2,2,2019,6,0,58,58,1,0,0,11.33428338779321,11.33428338779321,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.63,54.22,1.666666666666667,1,1,0,0,9,7,5,0,1859.333333333333,170365.1744037589,78219.59941168055,251247.8560956724,115389.7682379049,3353.461196994454 -6759,8390,15236,-9,15237,15235,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.54829997585,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,0,1859.333333333333,170365.1744037589,78219.59941168055,251247.8560956724,115389.7682379049,3353.461196994454 -6759,8390,15237,15235,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,8.000444102640468,7.753902958075643,0,7,-3,49.67118161382881,0,-9,-9,2019,10,3,40,40,1,3,0,9.839112215229227,9.839112215229227,0,0,0,0,0,1,1,0,0,0,49.63,54.22,57.16,56.15,6.666666666666667,1,1,0,0,6,7,5,0,1859.333333333333,170365.1744037589,78219.59941168055,251247.8560956724,115389.7682379049,3353.461196994454 -6760,8391,15238,15239,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.546991747256897,7.584417158704793,0,15,-1,86.55208711224347,0,3,3,2019,10,0,50,45,1,0,0,4.884702626316826,4.884702626316826,0,0,0,0,0,0,0,0,.7595428621323235,0,58.32,50.22,48.55,51.02,8.333333333333334,1,1,0,0,12,7,5,1,304,1805652.540114001,1643346.933502623,303040.1443293458,48980.31320807269,3921.032004448994 -6760,8391,15239,15238,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.825820314614997,8.923018388901596,0,15,1,-29.35819541887465,0,2,3,2019,12,0,44,42,1,0,0,24.84460168145946,24.84460168145946,0,0,0,0,0,0,0,0,1.176244840962676,0,48.55,51.02,58.32,50.22,6.666666666666667,1,1,0,0,9,7,5,1,304,1805652.540114001,1643346.933502623,303040.1443293458,48980.31320807269,3921.032004448994 -6761,8392,15240,15241,-9,-9,1,1,35,0,1,0,3,3,-9,0,3,8.480069616619277,8.753144049822895,0,6,4,-61.21288143789745,0,3,3,2019,8,1,56,60,1,1,0,9.802262202005464,9.802262202005464,0,0,0,0,0,1,1,0,0,0,44.11,55.31,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,1650.333333333333,33845.9734311674,-40818.1750550391,0,0,2751.868149095631 -6761,8392,15241,15240,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.236190070816734,6.979989480054703,0,6,-4,24.14940562245021,0,2,-9,2019,7,0,25,20,1,0,0,6.952388812924134,6.952388812924134,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.11,55.31,10,1,1,0,0,7,9,4,1,1650.333333333333,33845.9734311674,-40818.1750550391,0,0,2751.868149095631 -6761,8392,15242,-9,15241,15240,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.760874805816,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1650.333333333333,33845.9734311674,-40818.1750550391,0,0,2751.868149095631 -6762,8393,15243,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.1244886429647,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,19.76,-9,-9,5,1,1,0,1,0,12,1,0,265,-156042.0415999127,0,0,0,-33.55720564274162 -6763,8394,15244,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,6.106627944982498,6.310711878765545,0,0,-947.2264702119295,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.616860254577857,55,45,-9,-9,8,3,4,0,1,0,6,2,0,420,315487.8862376363,0,218606.5246551592,0,925.9596122094571 -6764,8395,15245,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.456315008539686,8.451471053051613,0,0,0,-912.118573413508,0,2,2,2019,13,2,37,40,1,2,0,15.47159239962201,15.47159239962201,0,0,0,0,0,0,0,0,0,0,47.07,35.41,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,238,864891.5051805262,22596.30277697037,857108.7058123942,57123.89180687662,1669.542844949611 -6764,8396,15246,-9,15245,-9,1,1,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1013.054818668222,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,26.01,61.11,-9,-9,6.666666666666667,1,1,0,0,1,11,1,1,1235,-39130.61346029087,0,0,0,-597.0172450654854 -6765,8397,15247,15248,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,65,-8,74.05135801814224,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,4.378618071131394,0,53,44,57,44,8,1,1,0,0,0,9,2,1,1259,256734.7493900108,35381.04786706599,236694.7277496766,0,1670.481417410596 -6765,8397,15248,15247,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,2.230750920805262,2.646148839278775,65,8,-23.52589371658436,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,22.92064811050672,0,0,1,1,0,4.464356661352247,2.321193055576224,57,44,53,44,8,1,1,0,0,0,9,2,1,1259,256734.7493900108,35381.04786706599,236694.7277496766,0,1670.481417410596 -6766,8398,15249,15250,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.610467124264698,5.769781352537586,11,-3,39.53982011579066,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.77639075434364,46.26,52.9,33.06,52.68,8.333333333333334,1,1,0,0,0,9,2,1,346,233905.8100083011,-30552.54023067504,254274.0978157527,0,1353.392923552203 -6766,8398,15250,15249,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,11,3,11.67619864019687,0,3,2,2019,24,11,0,0,4,11,0,0,0,1,1.421962067093913,.4062243040660669,22.39198624257284,0,1,1,0,0,0,33.06,52.68,46.26,52.9,8.333333333333334,1,1,0,0,0,9,2,1,346,233905.8100083011,-30552.54023067504,254274.0978157527,0,1353.392923552203 -6767,8399,15251,15252,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.035723894786477,8.856281363833192,0,7,-1,17.93461894039431,0,2,2,2019,8,0,53,42,1,0,0,16.55256772903873,16.55256772903873,0,0,0,0,0,0,0,0,0,0,61.12,51.57,27.71,67.3,8.333333333333334,1,1,0,0,10,12,5,1,329,784107.1690892756,351685.8464695251,398996.5494408029,0,4732.992877917379 -6767,8399,15252,15251,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.799254152049475,8.950980153391537,0,7,1,-189.8775132564111,0,2,2,2019,14,3,40,40,1,3,0,19.10323981052244,19.10323981052244,0,0,0,0,14.5,0,0,0,0,0,27.71,67.3,61.12,51.57,3.333333333333333,1,1,0,0,10,12,5,1,329,784107.1690892756,351685.8464695251,398996.5494408029,0,4732.992877917379 -6768,8400,15253,15256,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.466194101802513,7.635943794208393,0,14,-5,75.53997566236143,0,-9,3,2019,10,0,17,17,1,0,0,13.75426019022262,13.75426019022262,0,0,0,0,0,1,1,0,5.976755248024056,0,50.34,56.4,65.64,18.73,8.333333333333334,1,1,0,0,9,6,3,1,440.4,1576883.216729817,1174285.996107092,267085.3578907182,0,2525.275510186239 -6768,8400,15254,-9,15253,15256,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.552812363484,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,440.4,1576883.216729817,1174285.996107092,267085.3578907182,0,2525.275510186239 -6768,8400,15255,-9,15253,15256,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-969.0151470177487,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,440.4,1576883.216729817,1174285.996107092,267085.3578907182,0,2525.275510186239 -6768,8400,15256,15253,-9,-9,1,1,52,0,3,0,2,2,-9,0,2,7.730582918310325,7.779242938896354,0,14,5,-9.536356420015956,0,-9,-9,2019,8,0,45,42,1,0,0,4.607965707737056,4.607965707737056,0,0,0,0,0,1,1,0,6.088042773437071,0,65.64,18.73,50.34,56.4,8.333333333333334,1,1,0,0,9,6,3,1,440.4,1576883.216729817,1174285.996107092,267085.3578907182,0,2525.275510186239 -6768,8400,15257,-9,15253,15256,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.291539357663,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,440.4,1576883.216729817,1174285.996107092,267085.3578907182,0,2525.275510186239 -6769,8401,15258,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.452963982271472,8.297443401165934,0,0,0,-1026.006290865847,0,1,2,2019,14,3,40,43,1,3,0,12.44636495739656,12.44636495739656,0,0,0,0,0,0,0,0,1.214885797589399,0,36.97,53.86,-9,-9,5,1,1,0,0,7,8,4,0,1223,242681.7885912915,90361.74872574008,0,0,1474.93583943484 -6770,8402,15259,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1158.074841324295,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,2,12,1,0,547,-32807.1884658565,0,0,0,1352.84148860718 -6771,8403,15260,15262,-9,-9,1,1,38,0,2,0,1,1,-9,0,2,9.044275957676241,8.738690255085142,0,16,-1,-40.33776121715082,0,2,2,2019,12,1,55,40,1,1,0,14.36061666232673,14.36061666232673,0,0,0,0,0,1,1,0,0,0,46.32,53.44,51.24,58.84,3.333333333333333,1,1,0,0,11,4,4,1,809.5,1195979.371318664,841637.2827408117,459063.8151436574,52951.96079099361,2981.522252295059 -6771,8403,15261,-9,15262,15260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.83719079384,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,809.5,1195979.371318664,841637.2827408117,459063.8151436574,52951.96079099361,2981.522252295059 -6771,8403,15262,15260,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,17,1,-37.85182258353984,1,1,2,2019,5,0,0,48,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.32,53.44,8.333333333333334,1,1,0,0,6,4,4,1,809.5,1195979.371318664,841637.2827408117,459063.8151436574,52951.96079099361,2981.522252295059 -6771,8403,15263,-9,15262,15260,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1150.975964888402,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,809.5,1195979.371318664,841637.2827408117,459063.8151436574,52951.96079099361,2981.522252295059 -6772,8404,15264,-9,-9,-9,1,0,57,0,1,0,2,2,-9,0,1,7.18667647132547,7.302604613171731,0,0,0,-995.2933585500548,0,-9,-9,2019,21,7,16,16,1,7,0,9.853572286654908,9.853572286654908,0,0,0,0,0,1,1,0,0,0,25.51,26.35,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,760,25770.76709696131,157653.3519283129,86082.89267525269,48284.76651858389,948.2737494027123 -6773,8405,15265,15267,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.399750338926667,8.229772351303156,0,3,-14,54.01694282282912,0,-9,-9,2019,9,0,40,50,1,0,0,12.70062336430425,12.70062336430425,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.49,57.57,8.333333333333334,2,3,0,0,4,9,5,1,827,996651.9135661293,595035.4423584511,366970.0774452733,74556.31769988178,8507.986915864201 -6773,8405,15266,-9,15267,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.1940075905607,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,827,996651.9135661293,595035.4423584511,366970.0774452733,74556.31769988178,8507.986915864201 -6773,8405,15267,15265,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.580450050637214,10.0361947041518,8.306079451953117,3,14,-.8326871267802911,0,2,1,2019,6,0,51,52,1,0,0,28.14100589785349,28.14100589785349,0,0,0,0,0,0,0,0,9.035249029474702,0,51.49,57.57,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,827,996651.9135661293,595035.4423584511,366970.0774452733,74556.31769988178,8507.986915864201 -6774,8406,15268,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.546410602921192,8.670026417098262,0,0,0,-1031.33370314037,0,3,3,2019,6,0,35,35,1,0,0,19.91005281249308,19.91005281249308,0,0,0,0,0,0,0,0,2.967250006536741,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,193,736406.4536441587,741615.3239276221,132291.8978097494,46755.41854688349,2473.81930898868 -6775,8407,15269,15270,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,8.298141361027605,8.230796379107227,62,2,-64.34244574423224,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.308979214709998,60.12,54.8,53.4,37.36,8.333333333333334,1,1,0,0,0,9,3,1,822,852316.9333075326,309416.1119623301,359267.7423057426,0,3032.325387174183 -6775,8407,15270,15269,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-2,-124.5586185466904,0,3,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,53.4,37.36,60.12,54.8,8.333333333333334,1,1,0,0,0,9,3,1,822,852316.9333075326,309416.1119623301,359267.7423057426,0,3032.325387174183 -6776,8408,15271,15272,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,7,-8,61.69866099123303,0,1,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.402461331457366,0,47.17,47.5,54.31,28.8,8.333333333333334,1,1,0,0,0,12,2,1,233.5,304555.8998428624,0,186956.5590465584,0,1206.822009849139 -6776,8408,15272,15271,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,6.185715391729886,5.763874529489384,7,8,-100.2839689488812,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,27.94418721180673,0,0,1,1,0,1.228986615973235,6.238966478966113,54.31,28.8,47.17,47.5,10,1,1,0,0,0,12,2,1,233.5,304555.8998428624,0,186956.5590465584,0,1206.822009849139 -6777,8409,15273,15275,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.12136109223337,9.285636828593296,0,16,-7,9.041145788349251,0,2,2,2019,12,2,47,52,1,2,0,21.4059176335876,21.4059176335876,0,0,0,0,0,1,1,0,1.538260188453521,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,10,5,1,802.3333333333334,502133.5763704889,217999.3088945183,505319.3397980385,244182.9839824498,4614.151659113845 -6777,8409,15274,-9,15273,15275,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.42457065604,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,802.3333333333334,502133.5763704889,217999.3088945183,505319.3397980385,244182.9839824498,4614.151659113845 -6777,8409,15275,15273,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.749447978716578,8.964505076921867,0,15,7,25.55738664352153,0,2,1,2019,8,0,43,43,1,0,0,14.33656072904464,14.33656072904464,0,0,0,0,0,1,1,0,.9466893657811934,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,7,10,5,1,802.3333333333334,502133.5763704889,217999.3088945183,505319.3397980385,244182.9839824498,4614.151659113845 -6778,8410,15276,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-932.9938843836749,-9,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,50.07,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,569,-83365.92188769771,0,0,0,557.3973388549813 -6779,8411,15277,15278,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,46,10,-103.2339089109996,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.13,45.34,38.01,50.19,8.333333333333334,1,1,0,0,0,5,2,1,477,349748.4942174843,292608.218733137,147016.7808547544,32215.40007214206,1722.385769778627 -6779,8411,15278,15277,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.650445074370563,6.442268432464425,45,-10,-76.77699948831375,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.661627791171805,38.01,50.19,54.13,45.34,0,1,1,0,0,0,5,2,1,477,349748.4942174843,292608.218733137,147016.7808547544,32215.40007214206,1722.385769778627 -6780,8412,15279,15280,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,49,-5,23.97887124665996,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.308883042817954,0,57.16,56.15,59.29,49.68,10,1,1,0,0,4,7,2,1,429,847026.1317147233,372878.4123821798,448582.1979331296,0,2485.498250421248 -6780,8412,15280,15279,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.568896874494198,7.710330089153767,49,5,-68.60541952830613,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.901458850930281,7.30879770822851,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,429,847026.1317147233,372878.4123821798,448582.1979331296,0,2485.498250421248 -6781,8413,15281,-9,15283,15282,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.7083577820014,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,646,201947.2047916478,43026.60558372545,217634.7094709292,192109.4397990523,3268.802858826207 -6781,8413,15282,15283,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.584499950834013,8.119426551242306,0,13,6,39.45920386529899,0,2,2,2019,23,11,45,47,1,11,0,10.58799249232372,10.58799249232372,0,0,0,0,0,1,1,0,4.68900690675951,0,35.39,55.43,49.91,56.93,3.333333333333333,1,1,0,0,9,10,5,1,646,201947.2047916478,43026.60558372545,217634.7094709292,192109.4397990523,3268.802858826207 -6781,8413,15283,15282,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.4069723538266,8.110078036632849,0,13,-6,-6.209111864733785,0,2,2,2019,7,1,41,34,1,1,0,11.13885023175266,11.13885023175266,0,0,0,0,0,1,1,0,2.6338755621161,0,49.91,56.93,35.39,55.43,8.333333333333334,1,1,0,0,9,10,5,1,646,201947.2047916478,43026.60558372545,217634.7094709292,192109.4397990523,3268.802858826207 -6782,8414,15284,15285,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.579198263697634,8.683913677437722,0,3,-1,128.5945577230661,0,2,2,2019,6,0,35,35,1,0,0,18.01970686226766,18.01970686226766,0,0,0,0,0,0,0,0,7.336870232126142,0,57.06,57.76,46.33,55.93,10,1,1,0,0,10,7,5,1,1068,348203.3151892873,6806.788137968517,242954.2590345971,71998.01913780117,5219.535180959189 -6782,8414,15285,15284,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.354829711235679,8.598081531820815,0,3,1,117.0871187537054,0,-9,-9,2019,12,1,40,40,1,1,0,11.51126002457552,11.51126002457552,0,0,0,0,0,0,0,0,7.217011285882124,0,46.33,55.93,57.06,57.76,5,1,1,0,0,10,7,5,1,1068,348203.3151892873,6806.788137968517,242954.2590345971,71998.01913780117,5219.535180959189 -6783,8415,15286,-9,15287,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.0856329755592,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,367.25,250075.4168550585,158435.1706783775,216029.4049313173,113562.3086754619,1991.357372170878 -6783,8415,15287,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,7.608234306048398,7.825784613192703,0,0,0,-1014.589901512989,0,2,-9,2019,14,2,37,32,1,2,0,6.331668114877538,6.331668114877538,0,0,0,.5687765553892206,0,1,1,0,0,0,46.56,50.26,-9,-9,5,1,1,0,0,2,9,2,1,367.25,250075.4168550585,158435.1706783775,216029.4049313173,113562.3086754619,1991.357372170878 -6783,8415,15288,-9,15287,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.7905744707286,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,367.25,250075.4168550585,158435.1706783775,216029.4049313173,113562.3086754619,1991.357372170878 -6783,8415,15289,-9,15287,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.513660397717,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,367.25,250075.4168550585,158435.1706783775,216029.4049313173,113562.3086754619,1991.357372170878 -6784,8416,15290,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.74146087585922,9.261075317000794,0,0,0,-1066.118395193388,0,2,1,2019,18,7,42,42,1,7,0,39.49629511545034,39.49629511545034,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,318,1098202.707457071,914558.4714245556,231418.1379731485,0,4807.433630167277 -6785,8417,15291,15292,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,5.779066182720952,6.105167617133466,8,-3,-84.75249901127121,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,2.071159325982273,0,0,1,1,0,6.149754156858693,5.799517307223863,58.57,35.72,45.01,57.46,1.666666666666667,1,1,0,0,0,12,2,1,927,816614.9968602817,287221.8437350144,335669.0675869734,0,1725.840260770189 -6785,8417,15292,15291,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.682157990404155,6.73323109365415,8,3,15.37718703875659,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.019380887091544,7.207887253452202,45.01,57.46,58.57,35.72,8.333333333333334,1,1,0,0,0,12,2,1,927,816614.9968602817,287221.8437350144,335669.0675869734,0,1725.840260770189 -6786,8418,15293,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.016891663883262,8.583420321424631,6.720308447408855,0,0,-906.3325412011615,0,-9,-9,2019,19,6,37,30,1,6,0,13.07689006482554,13.07689006482554,0,0,0,0,0,1,1,0,7.307674728024367,0,37.15,32.97,-9,-9,3.333333333333333,2,3,0,1,7,7,4,1,404.5,82542.29616705168,15918.69251573187,0,0,2558.457183437239 -6786,8418,15294,-9,15293,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.4643957884617,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,4,1,404.5,82542.29616705168,15918.69251573187,0,0,2558.457183437239 -6787,8419,15295,15296,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,67,-3,-83.18595305062419,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,.260706589764105,0,0,1,1,0,.7572862620845802,0,48.61,30.55,45.27,25.14,10,1,1,0,0,0,2,2,1,355.5,294782.1909102557,61946.78906599026,125250.4246288697,0,2578.661183474293 -6787,8419,15296,15295,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,7.009168883534847,6.886101000516173,67,3,12.09227652409585,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.269952293211291,6.951021994582778,45.27,25.14,48.61,30.55,8.333333333333334,1,1,0,0,0,2,2,1,355.5,294782.1909102557,61946.78906599026,125250.4246288697,0,2578.661183474293 -6788,8420,15297,15298,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.683091851988512,5.893142555603002,53,-2,-41.13472742809968,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,78.585222513644,0,0,1,1,0,0,5.722703372556047,63.77,25.77,57.33,40.23,8.333333333333334,1,1,0,0,0,2,2,1,805.5,249300.5721223395,163917.4465608633,140822.6358506569,0,1755.92596734263 -6788,8420,15298,15297,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.85319497403479,6.087781672330585,53,2,89.92948865616724,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.918004975686648,6.191189030714171,57.33,40.23,63.77,25.77,8.333333333333334,1,1,0,0,0,2,2,1,805.5,249300.5721223395,163917.4465608633,140822.6358506569,0,1755.92596734263 -6789,8421,15299,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.240448990419517,7.101687704858494,0,0,-844.2963812955257,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.850106530735075,7.128609885881412,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,243,611774.6949864909,167846.7719701451,401291.8847040209,0,987.7150458122428 -6790,8422,15300,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1000.876989706807,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,27.39,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,193,-80623.27872171144,0,0,0,2027.458256160639 -6791,8423,15301,15302,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.825063184037088,9.083566644747936,0,8,-7,5.352090592155065,0,-9,-9,2019,9,0,55,50,1,0,0,13.33122383039691,13.33122383039691,0,0,0,0,0,1,1,0,3.397143761764056,0,52.65,51.64,33.07,55.18,8.333333333333334,1,1,0,0,9,13,5,1,236.5,278347.6861638475,143668.0254199276,141348.6659640593,9.814196025705314,3003.991163853446 -6791,8423,15302,15301,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.999163939078438,7.034246532065848,0,25,7,62.88085900117387,0,2,2,2019,17,5,24,16,1,5,0,5.604809258685541,5.604809258685541,0,0,0,0,0,1,1,0,0,0,33.07,55.18,52.65,51.64,5,1,1,0,0,9,13,5,1,236.5,278347.6861638475,143668.0254199276,141348.6659640593,9.814196025705314,3003.991163853446 -6792,8424,15303,15304,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.99637834519933,5.703190194005963,52,-4,-51.10868658082219,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.254208333457513,5.505737532383851,62.68,33.3,45.98,40.24,8.333333333333334,1,1,0,0,4,9,3,1,350,857163.09953653,575640.043334309,479696.7334925695,126449.403717803,2494.768144332201 -6792,8424,15304,15303,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.873118714658514,7.682542591437275,10,4,7.44807585186236,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.863186056367504,7.113130787092725,45.98,40.24,62.68,33.3,6.666666666666667,1,1,0,0,0,9,3,1,350,857163.09953653,575640.043334309,479696.7334925695,126449.403717803,2494.768144332201 -6793,8425,15305,-9,15306,15307,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.96263070038,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,240,276788.1735042418,128665.2077704122,275004.507141961,101948.9977059192,3276.595895921843 -6793,8425,15306,15307,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.142364828943055,8.204729339608059,0,10,3,12.16478859002389,0,2,3,2019,5,0,39,39,1,0,0,10.01066025189342,10.01066025189342,0,0,0,0,0,1,1,0,0,0,54.94,53.18,62.49,55.09,5,1,1,0,0,10,13,4,1,240,276788.1735042418,128665.2077704122,275004.507141961,101948.9977059192,3276.595895921843 -6793,8425,15307,15306,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.009404601469333,7.988996853916848,0,10,-3,-37.02964975261209,0,2,3,2019,6,0,45,44,1,0,0,7.753913789625464,7.753913789625464,0,0,0,0,0,1,1,0,0,0,62.49,55.09,54.94,53.18,6.666666666666667,1,1,0,0,10,13,4,1,240,276788.1735042418,128665.2077704122,275004.507141961,101948.9977059192,3276.595895921843 -6793,8426,15308,-9,15306,15307,1,0,19,0,1,0,2,2,1,0,3,7.136004454791695,7.177867515295245,0,0,0,-865.4920840703697,-9,2,2,2019,7,1,50,0,1,1,1,2.536118791756982,2.536118791756982,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,3,13,2,1,124,-57036.1184965083,-30255.16142998455,0,0,388.2951854991713 -6794,8427,15309,15310,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.716262011168828,5.91461278923035,8,0,4.119273057213531,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.064402396650125,56.5,29.57,58.32,50.22,6.666666666666667,1,1,0,0,0,4,2,1,1019,362524.1731037921,285516.6860466893,0,0,2137.755664297029 -6794,8427,15310,15309,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.106740299216481,7.214719469553073,8,0,67.53021154451611,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.23681423168706,58.32,50.22,56.5,29.57,6.666666666666667,1,1,0,0,0,4,2,1,1019,362524.1731037921,285516.6860466893,0,0,2137.755664297029 -6795,8428,15311,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.896746548228225,7.203816221419916,0,0,-1025.265483213336,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.130512516172869,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,836,592522.7120520009,260366.8080088782,199480.7833071978,0,1027.686366962088 -6796,8429,15312,-9,15313,15314,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-902.7097034775817,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,4,1,625.8,74330.38473590222,175446.1429062001,0,0,6788.640038697429 -6796,8429,15313,15314,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,6.135589848741709,6.279842185955901,0,9,-8,18.35248227116823,-9,2,2,2019,11,0,13,0,1,0,0,4.415983956622192,4.415983956622192,0,0,0,0,2,0,0,0,0,0,40.95,63.66,52,55,8.333333333333334,1,1,0,0,2,7,4,1,625.8,74330.38473590222,175446.1429062001,0,0,6788.640038697429 -6796,8429,15314,15313,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.112868656021673,9.027152289200503,0,9,8,132.4765922450889,-9,2,2,2019,9,0,40,0,1,1,0,29.06205417559805,29.06205417559805,0,0,0,0,0,0,0,0,8.982339936469238,0,52,55,40.95,63.66,7,1,1,0,0,1,7,4,1,625.8,74330.38473590222,175446.1429062001,0,0,6788.640038697429 -6796,8429,15315,-9,15313,15314,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.0302301350679,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,625.8,74330.38473590222,175446.1429062001,0,0,6788.640038697429 -6796,8429,15316,-9,15313,15314,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.6890777336795,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,625.8,74330.38473590222,175446.1429062001,0,0,6788.640038697429 -6797,8430,15317,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.088839233829118,7.90517636214964,0,0,-965.8322359075675,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.174716435558219,59.53,56.44,-9,-9,10,1,1,0,0,2,13,4,1,151,933906.5565059221,827574.5801705607,211254.7443140674,0,1543.4762941097 -6797,8431,15318,-9,15317,-9,1,1,25,0,0,0,2,2,-9,0,4,7.976312351593871,8.192299210353276,0,0,0,-909.8632608403909,-9,2,-9,2019,10,0,40,0,1,1,0,10.65609599420593,10.65609599420593,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,1503,-107780.4896086895,0,0,0,1338.09824768074 -6798,8432,15319,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-902.7688345590636,0,3,3,2019,34,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,27.89,18.61,-9,-9,0,1,1,0,0,0,2,1,0,712,-9468.493782631922,0,0,0,614.3218685313351 -6798,8433,15320,-9,15319,-9,1,0,30,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.4198582460783,0,2,2,2019,31,12,0,0,3,12,1,0,0,0,0,0,0,120,1,1,0,0,0,14.8,34.03,-9,-9,0,1,1,0,0,0,2,1,0,1219,-5138.410841626903,0,0,0,622.4868428018684 -6799,8434,15321,15324,-9,-9,1,1,54,1,2,0,3,3,-9,0,2,8.451167007251243,8.403480745438062,0,19,9,105.4519258041708,0,3,3,2019,18,6,56,66,1,6,0,10.81472519789564,10.81472519789564,0,0,0,0,0,1,1,0,0,0,24.03,57.05,33.51,56.37,3.333333333333333,1,1,0,0,9,9,4,1,721.5,74394.9706063857,24901.21485753488,0,0,3440.97816833976 -6799,8434,15322,-9,15324,15321,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.714547395617,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,721.5,74394.9706063857,24901.21485753488,0,0,3440.97816833976 -6799,8434,15323,-9,15324,15321,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.8212987758681,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,1,721.5,74394.9706063857,24901.21485753488,0,0,3440.97816833976 -6799,8434,15324,15321,-9,-9,1,0,45,1,2,0,2,2,-9,1,3,7.882848244443056,7.64809260214494,0,19,0,-7.849087385568878,0,1,1,2019,14,5,20,25,1,5,0,12.11752163722125,12.11752163722125,0,0,0,0,0,1,1,0,0,0,33.51,56.37,24.03,57.05,8.333333333333334,4,2,0,0,6,9,4,1,721.5,74394.9706063857,24901.21485753488,0,0,3440.97816833976 -6800,8435,15325,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.130357924180712,8.483822702488428,0,0,0,-995.2128246346382,0,2,2,2019,7,0,38,39,1,0,0,10.92446702576222,10.92446702576222,0,0,0,0,0,1,1,0,3.141889477839797,0,61.27,46.03,-9,-9,10,1,1,0,0,9,8,4,1,1023,-4354.100567976056,177741.515028054,0,0,1982.39344805484 -6801,8436,15326,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,5.220888313070033,5.179763740459095,0,0,-1006.483221572325,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,4.998996931315758,21.4,22.92,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,245,123238.6809806901,273702.7114760875,0,0,702.5785900390521 -6802,8437,15327,15329,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.803739070131694,8.636798088989314,0,7,-1,110.0385699737983,0,-9,-9,2019,8,0,25,37,1,0,0,24.55437740832833,24.55437740832833,0,0,0,0,0,1,1,0,0,0,46.31,56.45,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,521.5,455611.5858723611,229635.0462471498,228236.9370870108,105443.6740431937,2612.29478823681 -6802,8437,15328,-9,15327,15329,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.865400329455,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,521.5,455611.5858723611,229635.0462471498,228236.9370870108,105443.6740431937,2612.29478823681 -6802,8437,15329,15327,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,5.049539832885841,4.991020488508079,0,7,1,-10.75300268674314,-9,2,2,2019,9,0,40,0,1,0,0,.4582139253310417,.4582139253310417,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.31,56.45,8.333333333333334,1,1,0,0,8,13,4,1,521.5,455611.5858723611,229635.0462471498,228236.9370870108,105443.6740431937,2612.29478823681 -6802,8437,15330,-9,15327,15329,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.15197231927,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,521.5,455611.5858723611,229635.0462471498,228236.9370870108,105443.6740431937,2612.29478823681 -6803,8438,15331,15332,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,28,-1,-126.3013311627516,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.612575157035094,0,44.53,56.37,54.44,51.82,8.333333333333334,1,1,0,0,7,7,3,1,313.5,1084122.530371958,872171.9120669009,195795.236280798,128865.3725437416,1547.289390629326 -6803,8438,15332,15331,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.004881318232442,8.324017595805854,0,28,1,49.55394849633174,0,-9,-9,2019,7,0,35,8,1,0,0,10.86015084430171,10.86015084430171,0,0,0,0,0,0,0,0,0,0,54.44,51.82,44.53,56.37,8.333333333333334,1,1,0,0,13,7,3,1,313.5,1084122.530371958,872171.9120669009,195795.236280798,128865.3725437416,1547.289390629326 -6804,8439,15333,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.627770949884543,8.368590855649206,0,0,0,-1140.156487948559,0,2,2,2019,7,0,48,53,1,0,0,13.61661555658207,13.61661555658207,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,448,856821.3765233846,259991.2068690509,219782.2824076224,0,2801.59582899389 -6805,8440,15334,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1072.078560881789,0,2,3,2019,10,1,0,0,4,1,0,0,0,1,1.945117650446979,0,19.11878901364191,0,1,1,0,3.188218846668502,0,52.08,26.8,-9,-9,5,1,1,0,0,0,10,1,0,339,-52314.83824330066,0,0,0,1454.984173953128 -6806,8441,15335,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.278874423472275,6.236794952841302,0,0,-979.8634466168872,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,2.488105974846563,8.735812867831291,34.31326709428856,0,1,1,0,3.50911401547199,6.505202052313328,36.57,29.27,-9,-9,10,1,1,0,0,0,10,2,0,4007,177884.6086764985,21150.63324184483,157764.6834419105,0,2589.625006542856 -6807,8442,15336,15337,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.562016684699747,7.532853527102962,58,-2,-97.6939259172908,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,6.475028689799394,7.36039250603127,48,34,24.93,19.95,8.333333333333334,1,1,0,0,0,6,3,1,701.5,479102.5960683311,103718.5454633755,210007.9684372844,0,3172.608950185665 -6807,8442,15337,15336,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.523665622790265,6.364465416415294,58,2,3.946738342762472,0,2,2,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.480026333039622,6.503663520651688,24.93,19.95,48,34,1.666666666666667,1,1,0,0,0,6,3,1,701.5,479102.5960683311,103718.5454633755,210007.9684372844,0,3172.608950185665 -6808,8443,15338,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.610409998441225,8.556169499837386,0,0,0,-944.2275238981841,0,-9,-9,2019,21,10,41,42,1,10,0,25.83459367998981,25.83459367998981,0,0,0,0,0,0,0,0,0,0,29.87,49.76,-9,-9,5,1,1,0,0,5,7,5,0,1318,89092.79543965084,135802.8590601964,0,0,2814.293978960939 -6809,8444,15339,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.965170721334003,6.629437784727831,0,0,-1021.956584996191,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,34.74221630424486,0,0,1,1,0,4.942521783839878,7.104598743538364,48.76,43.78,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,634,1132857.491731382,194218.0520745888,395404.6870699765,0,1752.850560844636 -6810,8445,15340,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.1230110779045,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.115056197642006,0,63.94,36.73,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1056,-128639.9800599916,0,124058.4617423944,0,765.0303199072072 -6811,8446,15341,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.432513887948291,8.09300960644471,0,0,0,-985.844424948583,0,3,3,2019,12,1,31,31,1,1,0,12.31377582865979,12.31377582865979,0,0,0,0,0,0,0,0,1.818077123077315,0,47.09,56.75,-9,-9,3.333333333333333,1,1,0,0,9,7,4,1,518,158250.9311828679,-23382.33103943048,243278.6018688254,5629.860101243727,2067.839269583488 -6812,8447,15342,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.36677007712886,8.096100280407873,7.410057338686115,0,0,-960.3804130015989,0,3,3,2019,5,0,22,42,1,0,0,8.592446426299876,8.592446426299876,0,0,0,0,2,1,1,0,6.349708695303031,7.206176799790556,47.73,41.92,-9,-9,6.666666666666667,4,2,0,0,10,7,4,0,237,213418.0815204315,55866.56451471902,300970.1339621108,5065.878255329542,1804.506369971302 -6813,8448,15343,15345,-9,-9,1,0,37,0,4,0,2,2,-9,0,5,6.660581524925279,6.631455867174879,0,3,-8,16.72400312738404,0,-9,-9,2019,11,0,14,16,1,0,0,7.172336478431342,7.172336478431342,0,0,0,0,42,1,1,0,0,0,52.13,57.22,52,55,8.333333333333334,1,1,0,0,8,2,2,0,635.4,-3888.799490607694,0,0,0,1839.241418057699 -6813,8448,15344,-9,15343,15345,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-968.2528461110952,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,635.4,-3888.799490607694,0,0,0,1839.241418057699 -6813,8448,15345,15343,-9,-9,1,1,45,0,4,0,3,3,-9,1,4,0,0,0,3,8,-135.8235441623905,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,52.13,57.22,8,1,1,0,0,0,2,2,0,635.4,-3888.799490607694,0,0,0,1839.241418057699 -6813,8448,15346,-9,15343,15345,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.9420486000332,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,635.4,-3888.799490607694,0,0,0,1839.241418057699 -6813,8448,15347,-9,15343,15345,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.1972466037219,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,635.4,-3888.799490607694,0,0,0,1839.241418057699 -6814,8449,15348,15349,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.528896543629152,8.396300243105609,0,7,-2,60.07644780620566,0,2,2,2019,10,0,37,37,1,0,0,14.27988837661887,14.27988837661887,0,0,0,0,7,1,1,0,8.012577139223612,0,54.37,54.8,61.12,51.57,8.333333333333334,1,1,0,0,8,10,5,1,4537,619985.7200878126,0,287056.7355701077,0,4362.356009163517 -6814,8449,15349,15348,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.537377542783124,8.291664778400367,4.908961270817997,7,2,43.77082651109656,0,3,3,2019,7,0,38,38,1,0,0,13.23555976530825,13.23555976530825,0,0,0,0,2,1,1,0,3.909570393773378,0,61.12,51.57,54.37,54.8,8.333333333333334,1,1,0,0,8,10,5,1,4537,619985.7200878126,0,287056.7355701077,0,4362.356009163517 -6814,8450,15350,-9,-9,-9,1,0,23,0,0,1,3,0,0,0,4,0,0,0,0,0,-1004.531685284275,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,-9,-9,10,1,1,0,0,0,10,1,1,317,-52927.78761908955,0,0,0,390.2213660049235 -6815,8451,15351,15352,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.962480739560204,6.576646292419352,0,28,1,64.88778037834022,-9,2,2,2019,10,0,10,0,1,1,0,10.74511616356005,10.74511616356005,0,0,0,0,0,1,1,0,0,0,51,49,43.55,42.24,7,2,3,0,0,1,8,3,0,447.5,444307.0520253593,67407.78482397189,415592.2612576748,0,1640.618443344956 -6815,8451,15352,15351,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.286866271807285,7.266541965687304,0,28,-1,-39.28751040339516,0,2,2,2019,11,1,20,16,1,1,0,7.479679560360344,7.479679560360344,0,0,0,0,71.5,1,1,0,0,0,43.55,42.24,51,49,6.666666666666667,2,3,0,1,7,8,3,0,447.5,444307.0520253593,67407.78482397189,415592.2612576748,0,1640.618443344956 -6815,8452,15353,-9,15352,15351,1,1,24,0,0,0,1,1,0,1,3,0,0,0,0,0,-956.5350271445111,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.68,49.74,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,512,-193375.2849314245,0,0,0,115.6003809341956 -6816,8453,15354,15355,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,9.22491149048553,9.395252464799677,56,2,226.4455541765064,0,2,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,9.209112469823545,8.936683155823596,46.16,58.62,62.58,34.57,10,1,1,0,0,1,5,5,1,1102,1884892.014436866,1154411.389422978,689203.8281115761,0,10589.10822137096 -6816,8453,15355,15354,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.49908312611597,6.565591080166941,56,-2,94.78064165294208,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.400232606610173,6.365953842880149,62.58,34.57,46.16,58.62,8.333333333333334,1,1,0,0,0,5,5,1,1102,1884892.014436866,1154411.389422978,689203.8281115761,0,10589.10822137096 -6817,8454,15356,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,9.262023578120127,8.827352189690503,0,0,0,-902.6419010681644,0,3,3,2019,6,0,39,36,1,0,0,31.93910055161883,31.93910055161883,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,51,490988.804222944,381474.7428975367,243065.919710431,116520.1310779937,4028.027406603286 -6817,8455,15357,-9,15356,-9,1,1,34,0,0,0,2,2,-9,0,4,7.652117772283479,7.349191969352819,0,0,0,-1023.59095367494,0,2,-9,2019,10,0,36,36,1,1,1,6.418576441889826,6.418576441889826,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,1,10,3,0,1337,0,0,0,0,379.2543556071084 -6818,8456,15358,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.777221037648888,8.047905287930892,0,0,0,-1027.816387487191,0,3,3,2019,11,0,35,35,1,0,0,6.351219852038047,6.351219852038047,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,7,6,3,0,705,81199.75572401888,84948.7878474255,0,0,1069.893792960455 -6818,8457,15359,-9,15358,-9,1,0,19,0,0,0,2,2,-9,0,3,7.308385751402007,7.487449884304846,0,0,0,-937.4234541101538,-9,2,-9,2019,18,6,35,0,1,6,1,5.577155520165253,5.577155520165253,0,0,0,0,0,0,0,0,0,0,43.26,54.35,-9,-9,5,1,1,0,0,1,6,3,0,562,0,0,0,0,-38.17706600201677 -6819,8458,15360,15361,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.971225991759107,9.167189492716069,0,24,-2,28.82875379356136,0,1,2,2019,8,0,45,45,1,0,0,30.17759329261808,30.17759329261808,0,0,0,0,0,0,0,0,2.561256918295468,0,43.54,59.6,53.24,50.01,8.333333333333334,1,1,0,0,11,7,5,1,843.3333333333334,12772850.59358402,432274.5700028585,4002607.840429085,0,6045.187696582888 -6819,8458,15361,15360,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.888790144211907,8.727436518726693,0,24,2,-20.82921035145858,0,2,3,2019,8,1,50,47,1,1,0,17.41167599918936,17.41167599918936,0,0,0,0,0,0,0,0,1.356227742133306,0,53.24,50.01,43.54,59.6,0,1,1,0,0,5,7,5,1,843.3333333333334,12772850.59358402,432274.5700028585,4002607.840429085,0,6045.187696582888 -6819,8458,15362,-9,15361,15360,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1039.070128986617,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,0,7,5,1,843.3333333333334,12772850.59358402,432274.5700028585,4002607.840429085,0,6045.187696582888 -6820,8459,15363,15364,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,0,0,43,5,14.10603610245299,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.992777932023681,0,62.83,33.62,49.58,50.05,8.333333333333334,1,1,0,0,11,2,5,1,509.5,2646700.945401425,1359931.411046596,535381.5628265552,0,7014.154911836025 -6820,8459,15364,15363,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,8.742344162052056,9.653779089462729,8.241563976599924,43,-5,59.44961878745673,0,3,2,2019,12,0,84,72,1,0,0,8.148370197946916,8.148370197946916,0,0,0,0,0,1,1,0,3.842305606703064,8.488478628382333,49.58,50.05,62.83,33.62,6.666666666666667,1,1,0,0,11,2,5,1,509.5,2646700.945401425,1359931.411046596,535381.5628265552,0,7014.154911836025 -6821,8460,15365,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1177.988960070762,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.364773156447636,0,52.19,41.38,-9,-9,0,1,1,0,0,7,12,1,1,1192,9065.368723348345,0,0,0,805.7657038474506 -6822,8461,15366,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,7.169629476227779,7.450612171561852,0,0,-1004.226495036386,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.45954175408775,7.466379728876507,58.79,38.08,-9,-9,8.333333333333334,4,2,0,0,0,9,3,1,1297,479107.6247762126,287693.5202054956,224964.3915930772,0,2092.120810813387 -6823,8462,15367,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.872254159224896,8.718161233250919,0,0,0,-989.8146935201426,0,-9,-9,2019,10,0,40,-9,1,1,0,13.52047834960406,13.52047834960406,0,0,0,0,0,0,0,0,2.643705032510594,0,51,56,-9,-9,7,1,1,0,0,1,13,5,0,849,117762.6382558654,16473.13234102747,119600.5096084424,95072.3840397438,1945.235344699757 -6823,8463,15368,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.168121413985691,8.059904535113025,0,0,0,-1074.485159635544,0,-9,-9,2019,10,1,38,37,1,1,0,8.295912051010534,8.295912051010534,0,0,0,0,0,0,0,0,0,0,48,54.77,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,498,51737.26434737664,0,18810.18696001091,0,1310.218016587509 -6824,8464,15369,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,0,0,0,0,-935.8376088012972,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,6,4,1,1,1802,505875.4146948922,484779.5249967836,115960.8005763891,0,580.8306447705038 -6824,8465,15370,-9,15369,-9,1,0,25,0,0,0,2,2,-9,0,4,7.274175280181868,7.339620904192563,0,0,0,-1035.846129526477,0,1,2,2019,8,2,22,40,1,2,0,8.482677601479299,8.482677601479299,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,1413,75460.04107100678,0,0,0,924.0288925277196 -6825,8466,15371,15372,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.937459876280339,9.080867273638216,0,25,2,128.2171306364976,0,2,2,2019,9,0,35,40,1,0,0,21.01078210207858,21.01078210207858,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,739,1223397.751854745,931657.0665196383,140130.4240918054,0,10499.7535559681 -6825,8466,15372,15371,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.078730595343742,9.774296727914669,9.395158495586076,25,-2,15.2748263675307,0,2,2,2019,8,0,97,50,1,0,0,10.91432702307472,10.91432702307472,0,0,0,0,2,0,0,0,4.425328730887526,9.449381781542723,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,739,1223397.751854745,931657.0665196383,140130.4240918054,0,10499.7535559681 -6826,8467,15373,15374,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-3,0,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,14.5,1,1,0,2.13397892983616,0,55.59,43.19,48.22,35.14,5,1,1,0,0,0,10,1,1,475.5,-108021.3397287024,45774.57553954416,0,0,1058.204050305611 -6826,8467,15374,15373,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,56,3,0,0,3,2,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,48.22,35.14,55.59,43.19,3.333333333333333,1,1,0,0,0,10,1,1,475.5,-108021.3397287024,45774.57553954416,0,0,1058.204050305611 -6827,8468,15375,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.894712784887134,8.275662799077514,0,0,-1027.510666322182,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.129479609586518,65.8,39.97,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,325,845807.7043508727,442913.7094736944,71168.73444514313,0,2614.587966701217 -6828,8469,15376,15377,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.54489798883664,9.563076133583206,0,11,3,9.893923573657604,0,2,2,2019,12,0,55,60,1,0,0,43.34770612026207,43.34770612026207,0,0,0,0,0,0,0,0,0,0,52,54.51,57.16,56.15,1.666666666666667,1,1,0,0,7,2,5,1,601,761893.2494874148,-33505.92567089967,432085.2917964526,0,7105.694058823347 -6828,8469,15377,15376,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.784560300465847,8.656046856907988,0,11,-3,41.43139587012179,0,2,2,2019,7,0,23,26,1,0,0,25.57807582985999,25.57807582985999,0,0,0,0,0,0,0,0,.7706009949784218,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,2,5,1,601,761893.2494874148,-33505.92567089967,432085.2917964526,0,7105.694058823347 -6829,8470,15378,15379,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.517097838737437,8.602316709516924,0,19,-5,-19.69155934424084,0,3,2,2019,18,6,73,77,1,6,0,7.98234860283115,7.98234860283115,0,0,0,0,0,1,1,0,1.871347462507805,0,35.2,48.71,57.16,56.15,6.666666666666667,1,1,0,0,10,12,4,1,722,486484.2527590963,171829.7682765382,197927.0526921077,0,3618.934085213187 -6829,8470,15379,15378,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.127306884139879,8.10771924482767,0,19,5,23.74751142059838,0,2,1,2019,6,0,43,27,1,0,0,8.470714061089405,8.470714061089405,0,0,0,0,0,1,1,0,1.431519340509832,0,57.16,56.15,35.2,48.71,8.333333333333334,1,1,0,0,10,12,4,1,722,486484.2527590963,171829.7682765382,197927.0526921077,0,3618.934085213187 -6829,8470,15380,-9,15379,15378,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.081658076224,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,722,486484.2527590963,171829.7682765382,197927.0526921077,0,3618.934085213187 -6829,8470,15381,-9,15379,15378,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.6628013360812,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,722,486484.2527590963,171829.7682765382,197927.0526921077,0,3618.934085213187 -6830,8471,15382,15383,15385,-9,1,1,36,0,0,0,1,1,-9,0,4,8.666647621335871,8.747907389177902,0,4,7,90.69344880354762,0,3,-9,2019,10,0,39,39,1,1,0,18.46079864380247,18.46079864380247,0,0,0,0,0,1,1,0,4.861311133839395,0,50,57,47,57,7,2,3,0,0,1,4,4,1,1353.5,-20979.73315488602,88481.03365600394,0,0,2811.616394877477 -6830,8471,15383,15382,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,4,-7,-207.5708105826552,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,4,4,1,1353.5,-20979.73315488602,88481.03365600394,0,0,2811.616394877477 -6830,8472,15384,-9,15385,-9,1,0,40,0,0,0,2,2,-9,0,4,8.650367948254978,8.592675977719475,0,0,0,-1043.638803116311,0,3,-9,2019,8,0,38,31,1,0,0,11.44585400928656,11.44585400928656,0,0,0,0,0,1,1,0,0,0,61.12,51.57,-9,-9,10,2,3,0,0,12,4,5,1,265,58077.44927088529,28834.21996554508,159107.4255473498,47478.17176163415,1997.964743612414 -6830,8473,15385,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1099.747485719659,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,110.456333117531,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,825,100147.3613352502,0,0,0,561.0969974408782 -6831,8474,15386,15387,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,6.669000768878459,6.714285458676552,0,48,-3,131.6891598103206,0,3,3,2019,11,0,23,14,1,0,0,4.329411767308028,4.329411767308028,0,0,0,0,0,1,1,0,0,0,38.75,48.22,47.79,53.79,8.333333333333334,1,1,0,0,10,5,2,1,774,694340.8760933452,155314.0079915819,335382.0720825284,0,1650.251032964509 -6831,8474,15387,15386,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.360803510919375,5.997661925591267,48,3,7.781462695585234,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.717391735171724,6.488774117105083,47.79,53.79,38.75,48.22,5,1,1,0,0,4,5,2,1,774,694340.8760933452,155314.0079915819,335382.0720825284,0,1650.251032964509 -6832,8475,15388,15389,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.434492320863656,7.827848676848259,49,4,44.55435558062528,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,0,7.662471808670384,53.85,39.92,45.41,10.82,3.333333333333333,1,1,0,0,0,2,3,1,530,547450.3911148873,224276.2495209291,117907.6530416556,0,2684.648017151502 -6832,8475,15389,15388,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,0,0,49,-4,46.3873116659355,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,.7297237055044123,14.74491137350378,0,0,1,1,0,0,0,45.41,10.82,53.85,39.92,5,1,1,0,0,0,2,3,1,530,547450.3911148873,224276.2495209291,117907.6530416556,0,2684.648017151502 -6833,8476,15390,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.939705814246984,8.08322400338546,0,0,0,-980.5085643293758,0,2,2,2019,12,2,42,33,1,2,0,7.62124568075861,7.62124568075861,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,3.333333333333333,4,2,0,1,3,8,3,0,550.6666666666666,-79398.12264214098,0,0,0,1804.331129143677 -6833,8476,15391,-9,15390,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1009.568752322838,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,3,0,550.6666666666666,-79398.12264214098,0,0,0,1804.331129143677 -6833,8476,15392,-9,15390,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.3380284859055,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,3,4,-9,0,0,8,3,0,550.6666666666666,-79398.12264214098,0,0,0,1804.331129143677 -6833,8477,15393,-9,15390,-9,1,0,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-992.8338241997511,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,-9,-9,8.333333333333334,3,4,0,0,1,8,1,0,716,-230727.3966217107,0,0,0,1657.863571627029 -6834,8478,15394,15395,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.318860584143108,7.023959045983199,52,1,94.92838251557144,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.253832851972301,7.115184936734448,56.19,40.96,52.14,43.99,8.333333333333334,1,1,0,0,0,7,2,1,206.5,722234.7020761673,349504.5871568695,269714.1666562494,0,1804.111989765431 -6834,8478,15395,15394,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,52,-1,-158.9725643316351,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,4.653389628419742,0,52.14,43.99,56.19,40.96,8.333333333333334,1,1,0,0,0,7,2,1,206.5,722234.7020761673,349504.5871568695,269714.1666562494,0,1804.111989765431 -6835,8479,15396,-9,15399,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-987.0551349038863,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,1,0,988.5,93722.55267812713,0,0,0,1810.338674523874 -6835,8479,15397,-9,15399,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.5463666826308,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,1,0,988.5,93722.55267812713,0,0,0,1810.338674523874 -6835,8479,15398,-9,15399,-9,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-986.9400966926339,-9,3,-9,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,5,1,1,0,1,0,13,1,0,988.5,93722.55267812713,0,0,0,1810.338674523874 -6835,8479,15399,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1057.804830043109,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.76,22.64,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,988.5,93722.55267812713,0,0,0,1810.338674523874 -6836,8480,15400,-9,-9,15401,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.0061030325751,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,863.5,0,0,0,0,1606.662984034646 -6836,8480,15401,-9,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,7.676832147222082,7.306131841241839,0,0,0,-1004.950607328478,0,1,2,2019,7,0,30,32,1,0,0,6.046344825884379,6.046344825884379,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,9,2,0,863.5,0,0,0,0,1606.662984034646 -6837,8481,15402,15403,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,9.231599177940687,9.359736176832827,0,9,1,71.03814901687592,0,2,1,2019,17,6,72,60,1,6,0,17.04173222018693,17.04173222018693,0,0,0,0,0,1,1,0,4.195911783870321,0,28.81,57.6,54.79,55.86,6.666666666666667,1,1,0,0,10,5,5,1,634.3333333333334,97349.44456700473,116242.0764414806,138834.5166861436,99511.78602517261,4856.962626371769 -6837,8481,15403,15402,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,8.048505444035051,8.016440189427067,6.475048921111586,9,-1,53.66171446029976,0,2,2,2019,7,0,24,45,1,0,0,11.65516484243448,11.65516484243448,0,0,0,0,0,1,1,0,7.131065353177399,0,54.79,55.86,28.81,57.6,8.333333333333334,1,1,0,0,11,5,5,1,634.3333333333334,97349.44456700473,116242.0764414806,138834.5166861436,99511.78602517261,4856.962626371769 -6837,8481,15404,-9,15403,15402,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.524740378669,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,634.3333333333334,97349.44456700473,116242.0764414806,138834.5166861436,99511.78602517261,4856.962626371769 -6838,8482,15405,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.568727650246064,6.962618441697787,0,0,-1071.282042484934,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.633542716978861,0,29.90610139095367,0,1,1,0,4.085154673721401,7.305855325829408,44.07,28.74,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,1660,453921.980388401,41862.84819159207,219590.2151778688,0,2426.458376076186 -6839,8483,15406,15407,-9,-9,1,0,52,0,0,0,2,2,-9,1,5,0,0,0,35,-7,-9.982017273022629,0,3,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,53,56,54.1,59.11,10,2,3,0,0,9,6,5,1,1091.5,462883.8825906792,208579.4023410671,134572.0690487936,117799.8089004597,5243.200667806554 -6839,8483,15407,15406,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.045325560744793,8.807072559182677,8.389331978200556,36,7,-126.7698073141539,0,3,3,2019,6,0,40,50,1,0,0,12.58484927629174,12.58484927629174,0,0,0,0,2,1,1,0,8.015267187375715,8.288503073529874,54.1,59.11,53,56,8.333333333333334,2,3,0,0,7,6,5,1,1091.5,462883.8825906792,208579.4023410671,134572.0690487936,117799.8089004597,5243.200667806554 -6839,8484,15408,-9,15406,15407,1,0,29,0,0,0,1,1,-9,0,4,8.33487606750233,8.055880252180353,0,0,0,-980.8807541615197,0,2,2,2019,6,0,38,40,1,0,1,11.2361536316781,11.2361536316781,0,0,0,0,7,1,1,0,0,0,48.53,53.38,-9,-9,0,2,3,0,0,6,6,4,1,331,124488.9349645322,-44722.95675801681,0,0,1482.231133934058 -6839,8485,15409,-9,15406,15407,1,0,24,0,0,0,1,1,1,0,3,7.940041432560218,7.930349978560933,0,0,0,-994.6876520734237,-9,2,1,2019,11,3,38,0,1,3,1,11.45602401838666,11.45602401838666,0,0,0,0,2,1,1,0,1.03145027444443,0,47.32,52.7,-9,-9,10,2,3,0,0,6,6,4,1,147,284081.385160198,-424.3265791515332,0,0,1740.525987426559 -6840,8486,15410,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.639406068975899,7.61007786587914,0,0,0,-1012.399083110647,0,3,2,2019,4,0,21,21,1,0,0,12.51831673620713,12.51831673620713,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,10,11,3,1,2936,-74576.25944720334,-35378.601006137,0,0,2685.581520895232 -6841,8487,15411,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1024.464675012057,0,3,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,56.66,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,263,159704.6762876222,0,0,0,1247.316794805858 -6842,8488,15412,15413,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.437162264728267,7.89731714537738,6,-1,15.79812441742673,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.46155984516019,38.89,51.46,59.46,36.25,8.333333333333334,1,1,0,0,0,9,4,1,701.5,1547332.866808017,1054248.46690226,342942.6591703111,55063.3114266585,4084.79709062352 -6842,8488,15413,15412,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.291736975913002,7.454921611721936,6,1,32.88962587077135,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.949933138424344,7.165041092212672,59.46,36.25,38.89,51.46,8.333333333333334,1,1,0,0,5,9,4,1,701.5,1547332.866808017,1054248.46690226,342942.6591703111,55063.3114266585,4084.79709062352 -6843,8489,15414,15415,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,0,0,0,30,5,0,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,35.04,33.14,8,1,1,1,0,0,10,1,0,662.6666666666666,389479.65623668,278969.9068729932,300521.7733408473,88677.81485279869,2176.879107773894 -6843,8489,15415,15414,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,30,-5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.04,33.14,54,54,3.333333333333333,1,1,1,0,0,10,1,0,662.6666666666666,389479.65623668,278969.9068729932,300521.7733408473,88677.81485279869,2176.879107773894 -6843,8489,15416,-9,15415,15414,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.8459426724548,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,662.6666666666666,389479.65623668,278969.9068729932,300521.7733408473,88677.81485279869,2176.879107773894 -6844,8490,15417,15419,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.125598179349225,9.433386791950561,0,1,1,91.16441171742916,-9,-9,-9,2019,8,0,40,0,1,0,0,28.04048995534183,28.04048995534183,0,0,0,0,0,1,1,0,0,0,46.33,55.93,55.36,51.57,6.666666666666667,1,1,0,0,10,4,5,1,2008.333333333333,1018289.072193506,910565.34107501,176012.4860444413,29869.56818019623,3654.506101040547 -6844,8490,15418,-9,15419,15417,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-966.4950748921581,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,.3957788364535357,0,1,1,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,2008.333333333333,1018289.072193506,910565.34107501,176012.4860444413,29869.56818019623,3654.506101040547 -6844,8490,15419,15417,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.161182039965217,6.93400064368424,0,18,-1,39.41650103489545,-9,2,2,2019,9,1,2,0,1,1,0,82.07877637982492,82.07877637982492,0,0,0,0,0,1,1,0,0,0,55.36,51.57,46.33,55.93,8.333333333333334,1,1,0,0,10,4,5,1,2008.333333333333,1018289.072193506,910565.34107501,176012.4860444413,29869.56818019623,3654.506101040547 -6845,8491,15420,15421,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.105970747488353,8.83938750472263,0,7,-1,-56.70770394919199,0,-9,-9,2019,27,10,45,45,1,10,0,18.47307342588891,18.47307342588891,0,0,0,0,0,0,0,0,2.553153907161293,0,21.78,62.95,57.16,56.15,3.333333333333333,1,1,0,0,1,10,5,1,569,305062.4072962404,169730.8128058541,439723.6520273491,258075.9527932591,6677.293182452894 -6845,8491,15421,15420,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.364744377579594,9.436740425451145,0,7,1,36.61165169012033,0,2,2,2019,7,0,34,50,1,0,0,48.17264256034545,48.17264256034545,0,0,0,0,0,0,0,0,0,0,57.16,56.15,21.78,62.95,8.333333333333334,1,1,0,0,5,10,5,1,569,305062.4072962404,169730.8128058541,439723.6520273491,258075.9527932591,6677.293182452894 -6846,8492,15422,15423,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.826294548280229,8.767723360003627,0,9,1,69.99178444258628,0,2,1,2019,11,0,40,40,1,0,0,21.84439232934382,21.84439232934382,0,0,0,0,0,1,1,0,1.745253118103474,0,51.66,54.88,38.76,52.62,8.333333333333334,2,3,0,0,11,7,4,0,394.25,392399.4871758812,119766.4822899945,421024.7877602435,135067.8193376502,2648.098123958654 -6846,8492,15423,15422,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,8,-1,28.87424265718967,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,52.62,51.66,54.88,6.666666666666667,2,3,0,0,0,7,4,0,394.25,392399.4871758812,119766.4822899945,421024.7877602435,135067.8193376502,2648.098123958654 -6846,8492,15424,-9,15423,15422,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.7633264048519,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,0,394.25,392399.4871758812,119766.4822899945,421024.7877602435,135067.8193376502,2648.098123958654 -6846,8492,15425,-9,15423,15422,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.1548694524961,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,0,394.25,392399.4871758812,119766.4822899945,421024.7877602435,135067.8193376502,2648.098123958654 -6847,8493,15426,15427,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.369235236341501,7.357416884698151,0,26,-6,49.31838701832086,0,2,2,2019,10,2,20,32,1,2,0,9.325422848018611,9.325422848018611,0,0,0,0,0,0,0,0,0,0,42.28,45.23,38.4,36.42,10,2,3,0,0,10,8,4,0,338,353570.900706028,18668.12185603543,459064.382630475,43701.28155657054,2512.631440134131 -6847,8493,15427,15426,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.107824656011854,8.276724424339299,0,26,6,53.02259092778981,0,2,2,2019,16,6,35,35,1,6,0,10.68079521345312,10.68079521345312,0,0,0,0,2,0,0,0,0,0,38.4,36.42,42.28,45.23,8.333333333333334,2,3,0,0,11,8,4,0,338,353570.900706028,18668.12185603543,459064.382630475,43701.28155657054,2512.631440134131 -6848,8494,15428,15429,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.415868715003016,8.312304668184808,0,6,6,115.1682920957955,0,2,2,2019,6,0,40,40,1,0,0,13.79232633526549,13.79232633526549,0,0,0,0,0,0,0,0,7.174626818914259,0,60.12,54.8,59.31,33.75,8.333333333333334,1,1,0,0,7,12,5,1,696.5,569657.7700789841,46342.10088135567,503596.6141814889,0,4289.124737255358 -6848,8494,15429,15428,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.064532946331404,7.655630681218022,0,6,-6,33.72743389855805,0,3,3,2019,8,1,30,30,1,1,0,10.79326790983174,10.79326790983174,0,0,0,0,0,0,0,0,0,0,59.31,33.75,60.12,54.8,6.666666666666667,1,1,0,0,6,12,5,1,696.5,569657.7700789841,46342.10088135567,503596.6141814889,0,4289.124737255358 -6849,8495,15430,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1069.182867340951,0,3,3,2019,13,3,0,4,3,3,0,0,0,0,0,0,0,2,1,0,1,0,0,34.29,29.69,-9,-9,6.666666666666667,3,4,1,0,11,8,1,0,994,39516.55479939449,0,0,0,901.6532052037621 -6850,8496,15431,15434,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,7.706641774469215,7.377282335333877,0,6,0,-32.96499866655408,0,-9,-9,2019,7,0,23,38,1,0,0,11.21295775413384,11.21295775413384,0,0,0,0,0,1,1,0,3.792287683051595,0,56.43,47.05,51.24,58.84,8.333333333333334,1,1,0,0,8,10,4,1,883.75,508005.8669986099,507826.0805140398,0,0,3622.339851700249 -6850,8496,15432,-9,15431,15434,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-872.8210828661215,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,883.75,508005.8669986099,507826.0805140398,0,0,3622.339851700249 -6850,8496,15433,-9,15431,15434,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.647236730273,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,883.75,508005.8669986099,507826.0805140398,0,0,3622.339851700249 -6850,8496,15434,15431,-9,-9,1,1,32,2,2,0,1,1,-9,0,4,8.801797101646564,8.542635297323654,0,6,0,107.6366581409738,0,1,1,2019,6,2,45,45,1,2,0,15.99513146127042,15.99513146127042,0,0,0,0,0,1,1,0,4.07381603658773,0,51.24,58.84,56.43,47.05,10,1,1,0,0,9,10,4,1,883.75,508005.8669986099,507826.0805140398,0,0,3622.339851700249 -6851,8497,15435,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-976.213484750655,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,9,1,0,938,172848.5001516478,0,210964.7651300012,0,1169.279374353119 -6852,8498,15436,15437,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.318907010486709,6.219727632433927,10,1,89.40434783935422,0,3,3,2019,9,0,0,13,4,0,0,0,0,0,0,0,0,2,1,1,0,1.914415160066501,6.210637353751661,59.13,41.58,32.57,19.15,8.333333333333334,1,1,0,0,11,6,2,0,577.5,466515.1284078084,41423.01400554285,451994.5818460033,0,1435.036619109117 -6852,8498,15437,15436,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.309799670315536,5.456654194281962,10,-1,-70.22197773286922,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,.2028781910730384,0,0,1,1,0,0,5.396264634298357,32.57,19.15,59.13,41.58,5,1,1,0,0,0,6,2,0,577.5,466515.1284078084,41423.01400554285,451994.5818460033,0,1435.036619109117 -6853,8499,15438,15441,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,7.573668059336581,7.961438385327154,0,14,0,77.0592195471386,0,2,2,2019,8,1,50,45,1,1,0,4.580726674522907,4.580726674522907,0,0,0,0,0,1,1,0,8.985513966952805,0,55.27,44.81,51.77,58.57,8.333333333333334,1,1,0,0,9,9,3,1,288.25,-57220.07460173177,0,0,0,13175.96678137859 -6853,8499,15439,-9,15441,15438,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.981572021368,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,288.25,-57220.07460173177,0,0,0,13175.96678137859 -6853,8499,15440,-9,15441,15438,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.254933423872,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,288.25,-57220.07460173177,0,0,0,13175.96678137859 -6853,8499,15441,15438,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.751282683303867,7.032358810466002,0,14,0,130.7610674946224,0,2,3,2019,8,0,11,10,1,0,0,15.05630789919789,15.05630789919789,0,0,0,0,0,1,1,0,9.700250607157434,0,51.77,58.57,55.27,44.81,8.333333333333334,1,1,0,0,6,9,3,1,288.25,-57220.07460173177,0,0,0,13175.96678137859 -6854,8500,15442,15443,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.08547319208725,7.691824727865606,10,0,-56.46064540750524,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.984543277229326,8.077260259475677,58.72,51.29,60.12,54.8,8.333333333333334,1,1,0,0,2,2,4,1,644,1838856.306056409,1345489.318359072,254799.8786524797,0,2881.088988193047 -6854,8500,15443,15442,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.11968594847133,6.907813061359711,10,0,91.24639745526744,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.733421931913348,60.12,54.8,58.72,51.29,0,1,1,0,0,5,2,4,1,644,1838856.306056409,1345489.318359072,254799.8786524797,0,2881.088988193047 -6855,8501,15444,15446,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,7.35022671435041,7.456028970211984,0,3,7,25.24040832638977,0,2,2,2019,7,0,27,38,1,0,0,7.568290761214371,7.568290761214371,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,610,802319.3717982005,565094.1330600578,311971.9000259148,54425.78581673346,2401.86465961156 -6855,8501,15445,-9,15446,15444,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.9323659750986,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,4,1,610,802319.3717982005,565094.1330600578,311971.9000259148,54425.78581673346,2401.86465961156 -6855,8501,15446,15444,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.326366607342852,8.750932963145864,0,3,-7,-120.6135999669369,0,-9,-9,2019,8,0,30,38,1,0,0,13.65759216824713,13.65759216824713,0,0,0,0,0,1,1,0,.4720278176465564,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,610,802319.3717982005,565094.1330600578,311971.9000259148,54425.78581673346,2401.86465961156 -6856,8502,15447,-9,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,0,0,0,0,0,-1089.380616215848,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.6,41.68,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,511,39620.95994728908,-19022.54007134338,0,0,1604.532816393129 -6857,8503,15448,15449,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.562249652149083,8.306510087147796,0,3,4,65.22536575447189,0,3,3,2019,14,2,47,47,1,2,0,11.27281190583784,11.27281190583784,0,0,0,0,0,0,0,0,0,0,47.78,41.49,45.01,49.59,3.333333333333333,2,3,0,1,8,10,5,1,208,2522282.146049987,1063768.675398591,772975.0604606962,0,3831.03397214112 -6857,8503,15449,15448,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.211431060485268,7.901562963752333,0,3,-4,-9.07558647774712,0,3,2,2019,12,0,55,52,1,0,0,9.138465750962776,9.138465750962776,0,0,0,0,0,0,0,0,0,0,45.01,49.59,47.78,41.49,6.666666666666667,2,3,0,1,8,10,5,1,208,2522282.146049987,1063768.675398591,772975.0604606962,0,3831.03397214112 -6858,8504,15450,-9,15452,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.736797446677,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,1,0,1644.666666666667,169604.5489310529,0,0,0,689.0356813956811 -6858,8504,15451,-9,15452,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.743918700863,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,1,0,1644.666666666667,169604.5489310529,0,0,0,689.0356813956811 -6858,8504,15452,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1063.451512062926,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.33,56.73,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1644.666666666667,169604.5489310529,0,0,0,689.0356813956811 -6859,8505,15453,-9,15454,15455,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.979118769294,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,1,693.5,183019.7119411296,76956.14106083402,319778.4641259297,149913.7301022772,3447.506645553039 -6859,8505,15454,15455,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.496568661775813,8.342365418872195,0,19,0,-100.9214234373214,0,1,2,2019,10,1,25,26,1,1,0,27.39663848539179,27.39663848539179,0,0,0,0,0,1,1,0,1.131174808615484,0,49.43,56.8,56.72,58.13,8.333333333333334,3,4,0,0,10,8,4,1,693.5,183019.7119411296,76956.14106083402,319778.4641259297,149913.7301022772,3447.506645553039 -6859,8505,15455,15454,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,7.880564060333012,7.949189576626003,0,8,9,91.41230113949736,0,-9,-9,2019,11,4,38,38,1,4,0,8.440816905465804,8.440816905465804,0,0,0,0,0,1,1,0,0,0,56.72,58.13,49.43,56.8,10,3,4,0,0,10,8,4,1,693.5,183019.7119411296,76956.14106083402,319778.4641259297,149913.7301022772,3447.506645553039 -6859,8505,15456,-9,15454,15455,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.077675041487,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,693.5,183019.7119411296,76956.14106083402,319778.4641259297,149913.7301022772,3447.506645553039 -6860,8506,15457,15458,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,8.15391953969465,8.253972120437094,5.432568803759866,6,-4,45.05280527003318,0,3,3,2019,9,1,38,37,1,1,0,11.09976115971,11.09976115971,0,0,0,0,0,1,1,0,4.725488905670348,0,47.19,24.56,57.16,56.15,8.333333333333334,1,1,0,0,7,4,5,1,399,326868.6866428006,127297.25663739,167898.8293579331,53939.65389027202,4437.252008227719 -6860,8506,15458,15457,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.868375208562679,8.89148607537142,0,6,4,97.95379347631679,0,2,2,2019,6,0,48,50,1,0,0,18.55125262863045,18.55125262863045,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.19,24.56,10,1,1,0,0,7,4,5,1,399,326868.6866428006,127297.25663739,167898.8293579331,53939.65389027202,4437.252008227719 -6861,8507,15459,15460,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.172692446671492,8.180008755389565,10,2,44.49290666110111,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.817217510931024,8.265837464335132,57.48,37.4,39.1,57.79,10,1,1,0,0,4,9,4,1,453,90593.3992683214,-56223.12775122478,0,0,2069.540009086073 -6861,8507,15460,15459,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.129215591253396,7.292265456159154,37,-2,78.3996028387858,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,.7529772488377449,6.865815271385083,39.1,57.79,57.48,37.4,8.333333333333334,1,1,0,0,11,9,4,1,453,90593.3992683214,-56223.12775122478,0,0,2069.540009086073 -6862,8508,15461,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,8.188510123993652,8.303247639930506,0,0,-903.3602427151382,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.469509255139731,7.331562812310769,61.28,35.65,-9,-9,10,1,1,0,0,7,2,4,1,1057,999953.3335221806,421797.6991318535,357958.8862335925,0,2210.01554536894 -6863,8509,15462,15463,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.489583137073713,6.377764132165552,9,-7,-31.12711615694261,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.368834904142137,6.763552177142855,41.17,59.31,57.06,57.76,10,1,1,0,0,0,1,2,0,957.5,360356.8565808731,95388.83951455429,214838.1697292099,0,1465.362446887543 -6863,8509,15463,15462,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,6.209380574501066,6.134526917031828,58,7,-9.193236182890267,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.320267651855096,57.06,57.76,41.17,59.31,8.333333333333334,1,1,0,0,0,1,2,0,957.5,360356.8565808731,95388.83951455429,214838.1697292099,0,1465.362446887543 -6864,8510,15464,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1069.898838809843,0,3,-9,2019,12,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,625,0,0,0,0,-483.5759529559627 -6864,8511,15465,-9,15464,-9,1,0,28,0,0,0,2,2,-9,0,5,8.134742851033046,8.314787216816164,0,0,0,-967.4723371293854,-9,2,-9,2019,7,0,35,0,1,0,1,11.13582788493427,11.13582788493427,0,0,0,0,0,0,0,0,0,0,55.05,51.82,-9,-9,3.333333333333333,1,1,0,0,7,12,4,1,148,-75435.63151571849,0,0,0,935.9833247826786 -6865,8512,15466,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.010702613754985,7.80723638163187,0,0,0,-1073.289642599312,0,2,2,2019,6,0,48,38,1,0,0,6.397088623810658,6.397088623810658,0,0,0,0,0,1,1,0,3.569122845712759,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,277,952094.7713183364,57861.85934580666,481817.7709393029,0,1684.524289724703 -6866,8513,15467,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,0,0,-891.5597967466083,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.902485271616595,0,54.1,59.11,-9,-9,0,1,1,0,0,0,9,1,1,1818,93748.90382357853,0,132918.2207819218,0,335.6313308117853 -6867,8514,15468,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,0,0,0,0,0,-966.8735216593703,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,2054,-132397.9136926981,0,0,0,-283.8941602388296 -6868,8515,15469,15470,-9,-9,1,1,49,0,1,0,2,2,-9,1,2,7.987655916223048,7.81573782488102,0,24,2,-20.98545313048364,0,2,3,2019,10,0,37,37,1,0,0,9.001607619055536,9.001607619055536,0,0,0,0,0,1,1,0,0,0,54.43,25.19,44.19,49.98,8.333333333333334,2,3,0,0,8,2,4,1,2131.333333333333,-5448.663453198514,0,0,0,3865.185926241349 -6868,8515,15470,15469,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.297726320649748,8.304338990380202,0,24,-2,68.8902898275435,0,3,3,2019,11,0,41,37,1,0,0,10.64206977134288,10.64206977134288,0,0,0,0,7,1,1,0,0,0,44.19,49.98,54.43,25.19,6.666666666666667,2,3,0,0,8,2,4,1,2131.333333333333,-5448.663453198514,0,0,0,3865.185926241349 -6868,8515,15471,-9,15470,15469,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.7612096424415,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,2,4,1,2131.333333333333,-5448.663453198514,0,0,0,3865.185926241349 -6868,8516,15472,-9,15470,15469,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1053.851065467023,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,2,3,0,0,2,2,1,1,1861,-6406.629050240842,0,0,0,1233.675776489892 -6869,8517,15473,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,6.921142762875025,6.842337539240099,0,0,0,-981.1950539952438,0,1,1,2019,11,0,14,0,1,2,0,8.361989330418385,8.361989330418385,0,0,0,0,0,1,1,0,3.183019264278002,0,47,57,-9,-9,7,2,3,0,0,10,9,2,0,618.5,-195958.2483298242,0,0,0,1751.977060441011 -6869,8517,15474,-9,15473,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.761639284863,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,618.5,-195958.2483298242,0,0,0,1751.977060441011 -6870,8518,15475,-9,15477,15476,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1169.184604141646,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,572.6666666666666,876048.405011327,565783.5291745254,181382.6225284763,0,2998.652858114001 -6870,8518,15476,15477,-9,-9,1,1,60,0,1,0,2,2,-9,1,1,0,3.223023586051861,3.00448671949021,14,14,36.71307113003664,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,3.30566655741,32.97,18.82,43.43,51.6,1.666666666666667,1,1,0,0,0,2,3,1,572.6666666666666,876048.405011327,565783.5291745254,181382.6225284763,0,2998.652858114001 -6870,8518,15477,15476,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.453322598424505,8.346758682946669,0,15,-14,48.9057526035936,0,2,2,2019,18,6,42,37,1,6,0,10.61096627298584,10.61096627298584,0,0,0,0,7,1,1,0,0,0,43.43,51.6,32.97,18.82,6.666666666666667,1,1,0,0,9,2,3,1,572.6666666666666,876048.405011327,565783.5291745254,181382.6225284763,0,2998.652858114001 -6871,8519,15478,15479,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,27,-3,8.535500187996359,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,2.176129111717069,71.5,1,1,0,0,0,45.51,53.59,51.85,33.38,8.333333333333334,1,1,0,0,0,2,2,1,343.5,685733.351085776,67475.19255416968,189016.8147731524,0,1392.158531493896 -6871,8519,15479,15478,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.151671066657585,7.184419098773141,27,3,-123.1156858729489,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.036089528140379,51.85,33.38,45.51,53.59,6.666666666666667,1,1,0,0,0,2,2,1,343.5,685733.351085776,67475.19255416968,189016.8147731524,0,1392.158531493896 -6872,8520,15480,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.913084818557216,7.415337975511219,0,0,-1077.209211441429,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.454123105172588,7.237508810716045,52,47,-9,-9,7,1,1,0,0,3,9,3,1,1066,938547.4316702931,97097.94932989587,665437.9465733613,0,654.6937606641695 -6873,8521,15481,15482,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.472432481338222,8.633250746585441,0,10,1,3.392500979773063,0,-9,-9,2019,9,0,37,36,1,0,0,12.56600120423762,12.56600120423762,0,0,0,0,2,0,0,0,5.515269385081251,0,40.32,56.92,51.41,56.15,6.666666666666667,3,4,0,0,11,8,5,1,844,645180.7093267915,150128.8975023289,402690.7634693449,0,3513.457932777834 -6873,8521,15482,15481,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.377249481673413,7.930901887899033,0,10,-1,-52.90673219941178,0,-9,-9,2019,6,0,45,35,1,0,0,8.515671690399985,8.515671690399985,0,0,0,0,0,0,0,0,0,0,51.41,56.15,40.32,56.92,8.333333333333334,3,4,0,0,8,8,5,1,844,645180.7093267915,150128.8975023289,402690.7634693449,0,3513.457932777834 -6874,8522,15483,-9,15485,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1011.541654281137,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,2,2,0,1163,-138783.679742818,0,0,0,1660.828479131185 -6874,8522,15484,-9,15485,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.6924575838791,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1163,-138783.679742818,0,0,0,1660.828479131185 -6874,8522,15485,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,6.602115551203427,6.918844753663572,0,0,0,-898.6438227963076,0,2,2,2019,22,9,19,20,1,9,0,5.022646279040651,5.022646279040651,0,0,0,0,0,1,1,0,0,0,32.9,57.87,-9,-9,5,1,1,0,0,4,2,2,0,1163,-138783.679742818,0,0,0,1660.828479131185 -6875,8523,15486,15487,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,9.502263107283884,9.459674014945985,8,4,-75.02756003773987,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.573775416144272,9.38873012285069,39.15,46.03,34.28,53.36,1.666666666666667,1,1,0,0,0,13,5,1,757,2254614.410840525,114974.4922423743,264746.7277129245,0,7423.77683222514 -6875,8523,15487,15486,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-67.53002075333821,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,53.36,39.15,46.03,10,1,1,0,0,0,13,5,1,757,2254614.410840525,114974.4922423743,264746.7277129245,0,7423.77683222514 -6876,8524,15488,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.394474596327114,4.828792536790497,0,0,-1016.651434514577,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.649009465334745,46.48,55.6,-9,-9,10,1,1,0,0,8,9,2,1,492,523237.3285453634,215248.8518238705,372304.1184288858,0,1067.924027766431 -6877,8525,15489,-9,15490,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.6763202648126,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,5863.5,-24711.55781287281,-17196.25522129609,0,0,1756.145643642566 -6877,8525,15490,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,7.896313097394239,8.078466809738746,0,0,0,-977.9182990006891,0,-9,-9,2019,14,2,38,43,1,2,0,6.3619505068866,6.3619505068866,0,0,0,0,0,1,1,0,0,0,44.98,55.14,-9,-9,1.666666666666667,1,1,0,0,3,11,3,0,5863.5,-24711.55781287281,-17196.25522129609,0,0,1756.145643642566 -6878,8526,15491,-9,-9,-9,1,0,34,0,0,0,3,3,-9,0,1,7.961537188499022,7.633794767286005,0,0,0,-964.8838328240726,0,-9,-9,2019,16,3,35,25,1,3,0,9.543799794514898,9.543799794514898,0,0,0,0,0,1,1,0,0,0,38.18,31.44,-9,-9,5,2,3,0,1,4,8,4,0,610,-18759.98925008708,0,0,0,883.4908032750999 -6878,8527,15492,-9,15493,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1076.685217992929,-9,2,-9,2019,24,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,25.85,27.22,-9,-9,0,2,3,0,0,0,8,1,0,237,135011.6147661058,0,0,0,0 -6878,8528,15493,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,0,0,0,0,0,-962.913640158216,0,-9,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,19.67,52.97,-9,-9,1.666666666666667,2,3,1,1,0,8,1,0,255,0,0,0,0,1564.764824437733 -6879,8529,15494,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.397074334442906,7.85577260093986,0,0,-954.034770756611,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,2.040140789614571,0,0,0,1,1,0,5.037793454079287,7.66100718790194,55.54,46.02,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,1072,834372.1068620501,506861.6074801148,207066.5489607706,0,1956.561153763976 -6880,8530,15495,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.472147817604817,8.293057257175633,0,0,0,-966.5533551294968,0,2,2,2019,14,3,37,37,1,3,0,13.24478100052053,13.24478100052053,0,0,0,0,0,0,0,0,0,0,44.28,55.3,-9,-9,5,1,1,0,0,9,6,4,1,262,395961.1416038952,133433.557579336,261126.792798493,0,789.5782195605738 -6880,8531,15496,-9,-9,15495,1,1,28,0,0,0,2,2,-9,0,3,7.984210487137151,7.964519373145741,4.180966632245974,0,0,-1058.907913071436,0,2,2,2019,1,0,31,31,1,0,1,11.80161369593795,11.80161369593795,0,0,0,0,0,0,0,0,4.870897939857704,4.352700619594662,52.19,54.61,-9,-9,10,1,1,0,0,9,6,4,1,714,-87289.79945298657,-4843.48614563302,0,0,480.0603329376215 -6880,8532,15497,-9,-9,15495,1,0,24,0,0,0,2,2,-9,0,3,7.236257847411313,7.087031558822652,0,0,0,-932.6028589527155,0,2,2,2019,31,10,20,30,1,10,1,9.165650202585885,9.165650202585885,0,0,0,0,0,0,0,0,0,0,24.43,60.12,-9,-9,5,1,1,0,0,4,6,3,1,371,43092.76418464143,0,0,0,1134.152330977581 -6881,8533,15498,15499,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.629573158217079,7.254000400929216,47,5,-252.5266076711903,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.240621274157073,7.353983991317473,39.45,46.82,50,47,8.333333333333334,1,1,0,0,0,5,2,1,1132.5,421222.5361659569,160553.6797086219,111182.6973531969,0,1427.376951399009 -6881,8533,15499,15498,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-5,28.56133993870619,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.213003833200794,0,50,47,39.45,46.82,7,1,1,0,0,0,5,2,1,1132.5,421222.5361659569,160553.6797086219,111182.6973531969,0,1427.376951399009 -6882,8534,15500,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.906972967399948,8.329995618048342,0,5,1,29.93220655671522,0,1,1,2019,14,2,60,60,1,2,0,15.95058394889028,15.95058394889028,0,0,0,0,0,0,0,0,0,0,47.32,52.7,37.56,38.47,6.666666666666667,1,1,0,0,10,11,5,0,742,98378.78121251226,0,0,0,2454.08044961247 -6882,8535,15501,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.233979430437284,8.100504256510462,0,5,-1,-58.30740520343824,0,-9,-9,2019,22,7,38,38,1,7,0,11.75723316957502,11.75723316957502,0,0,0,0,0,0,0,0,0,0,37.56,38.47,47.32,52.7,3.333333333333333,1,1,0,0,6,11,5,0,1224,218478.7069881761,74239.29788690676,0,0,1324.560234793729 -6883,8536,15502,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.918270535190399,8.215653020190773,0,0,0,-1062.662215551665,0,2,2,2019,9,0,38,38,1,0,0,9.139558919321905,9.139558919321905,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,190,46486.97028507205,116026.5549437205,0,0,1368.245245302464 -6884,8537,15503,15504,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.720254786717565,7.651696655846387,0,9,-7,39.01424051398192,0,2,1,2019,12,2,32,32,1,2,0,9.603814791036147,9.603814791036147,0,0,0,0,0,1,1,0,0,0,49.61,51.38,57.94,43.46,8.333333333333334,1,1,0,0,9,4,3,1,1019.25,211572.1000881766,83558.99757548585,217300.9745583855,77684.17226141204,1927.061902728185 -6884,8537,15504,15503,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,7.115953625760196,7.313483010491253,0,9,7,-86.86077876147324,0,2,2,2019,8,0,37,40,1,0,0,4.416668307909743,4.416668307909743,0,0,0,0,0,1,1,0,0,0,57.94,43.46,49.61,51.38,8.333333333333334,1,1,0,0,11,4,3,1,1019.25,211572.1000881766,83558.99757548585,217300.9745583855,77684.17226141204,1927.061902728185 -6884,8537,15505,-9,15503,15504,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.7426210926792,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1019.25,211572.1000881766,83558.99757548585,217300.9745583855,77684.17226141204,1927.061902728185 -6884,8537,15506,-9,15503,15504,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.6045798971685,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1019.25,211572.1000881766,83558.99757548585,217300.9745583855,77684.17226141204,1927.061902728185 -6885,8538,15507,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1069.900599614893,0,2,-9,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,27.86,22.58,-9,-9,5,3,4,0,1,0,8,1,0,235,-53874.57174960736,0,0,0,1139.842227753402 -6885,8539,15508,-9,15507,-9,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-910.6177165780417,0,2,2,2019,14,4,0,39,3,4,1,0,0,0,0,0,0,27,1,0,1,0,0,48.39,58.86,-9,-9,1.666666666666667,3,4,1,1,4,8,1,0,329,193631.404769148,159376.638297371,0,0,841.7177188534882 -6886,8540,15509,15510,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,6,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,50.03,13.55,7,1,1,0,0,0,7,1,0,584.5,384803.5431275014,0,379765.0736420946,0,1622.228394068661 -6886,8540,15510,15509,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,48,-4,0,0,2,-9,2019,19,8,0,0,4,8,0,0,0,1,0,69.87602670383065,0,120,1,1,0,0,0,50.03,13.55,54,46,3.333333333333333,1,1,0,0,0,7,1,0,584.5,384803.5431275014,0,379765.0736420946,0,1622.228394068661 -6887,8541,15511,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-904.1338731256365,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,6,1,0,290,274414.0990103842,0,102441.6666946317,0,1041.050848008152 -6888,8542,15512,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.66450286290143,5.434265368096572,0,0,-978.9378410620651,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7557799821417,5.483894358966715,41.34,56.62,-9,-9,10,1,1,0,0,0,2,2,1,270,34737.86829451358,60868.35091809369,0,0,822.7450891039603 -6889,8543,15513,-9,15515,15516,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.374047367649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,5,4,0,658.25,365513.2660597753,170683.8875139102,224960.5816088977,75071.12257412083,3893.936346596061 -6889,8543,15514,-9,15515,15516,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.3006043194276,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,5,4,0,658.25,365513.2660597753,170683.8875139102,224960.5816088977,75071.12257412083,3893.936346596061 -6889,8543,15515,15516,-9,-9,1,0,30,1,2,0,1,1,-9,0,4,8.506526797259099,8.448679425778268,0,7,-3,-9.071095941680774,0,2,1,2019,11,0,47,47,1,2,0,9.785958796764666,9.785958796764666,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,1,1,0,0,4,5,4,0,658.25,365513.2660597753,170683.8875139102,224960.5816088977,75071.12257412083,3893.936346596061 -6889,8543,15516,15515,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.283624056734091,8.574310241079596,0,7,3,77.21046477508651,0,1,2,2019,10,0,45,60,1,1,0,9.157009656728599,9.157009656728599,0,0,0,0,0,1,1,0,0,0,50,57,48,56,7,1,1,0,0,8,5,4,0,658.25,365513.2660597753,170683.8875139102,224960.5816088977,75071.12257412083,3893.936346596061 -6890,8544,15517,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.550480278081972,6.878134152615095,0,0,-995.289331490875,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.288530923199007,6.847937831809723,36.35,51.43,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,406,234677.5711442035,201107.516520979,169692.4276717504,0,1255.630678725835 -6891,8545,15518,15519,-9,-9,1,1,94,0,0,0,1,1,-9,0,4,0,7.767882093050784,7.819489982800946,41,21,-12.84023449823239,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.972553711645391,0,0,1,1,0,.9190812674365876,7.959095077207126,63.39,42.39,57.16,56.15,10,1,1,0,0,0,7,4,1,1107,0,0,0,0,2999.353559092368 -6891,8545,15519,15518,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.400509595694629,7.460046185641141,41,-21,84.88237199074992,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.580955290581408,7.729012085849889,57.16,56.15,63.39,42.39,8.333333333333334,1,1,0,0,0,7,4,1,1107,0,0,0,0,2999.353559092368 -6892,8546,15520,15521,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.912356718820589,4.860002277401984,6,-1,-19.6073919366281,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.468279158470827,55,51,57.16,56.15,8.333333333333334,1,1,0,0,0,8,2,1,1401,71961.04234276369,59517.66180493392,82128.19441847432,0,1366.749107258003 -6892,8546,15521,15520,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.676826479065286,6.578815205920915,6,1,-32.03724990763649,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.836573125718568,6.519520963469599,57.16,56.15,55,51,1.666666666666667,1,1,0,0,0,8,2,1,1401,71961.04234276369,59517.66180493392,82128.19441847432,0,1366.749107258003 -6893,8547,15522,15523,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,9,-5,13.32227260752719,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,33.17,40.68,7,1,1,0,0,0,4,2,0,720,116358.8155765813,152497.670666175,0,0,1692.272184505031 -6893,8547,15523,15522,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.554364076013624,5.653486393792016,9,5,-74.19877165212458,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,0,0,0,42,1,1,0,0,6.303661796352924,33.17,40.68,49,47,3.333333333333333,1,1,0,0,0,4,2,0,720,116358.8155765813,152497.670666175,0,0,1692.272184505031 -6894,8548,15524,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.112262019245652,7.314950435149293,0,0,-915.421149340414,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.439365121457113,7.344323156995461,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,502,772316.2768735099,253072.7233816143,230072.7569389284,0,1954.983792570067 -6895,8549,15525,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.894329731786529,5.492851982944601,0,0,-1061.538054446729,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.650251467729077,5.935794649238821,60.12,54.8,-9,-9,10,1,1,0,0,0,12,2,1,1022,645370.67582871,0,273706.9564970369,0,1659.348097204778 -6896,8550,15526,15527,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.836835188400821,8.697820298214214,0,28,0,-27.04709834924939,0,1,1,2019,13,2,35,35,1,2,0,21.34689010810858,21.34689010810858,0,0,0,0,0,0,0,0,0,0,46,61.6,38.49,62.46,5,1,1,0,0,12,6,5,1,343.5,391183.2979737415,332738.8813592346,203153.7182216335,94121.95859070515,4886.4877439762 -6896,8550,15527,15526,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.303645900028284,8.68203518572458,0,28,0,28.81920657482444,0,1,1,2019,15,3,53,-9,1,3,0,7.201049325847658,7.201049325847658,0,0,0,0,0,0,0,0,0,0,38.49,62.46,46,61.6,6.666666666666667,1,1,0,1,12,6,5,1,343.5,391183.2979737415,332738.8813592346,203153.7182216335,94121.95859070515,4886.4877439762 -6896,8551,15528,-9,15527,15526,1,0,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-1005.427240721318,-9,1,1,2019,25,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,0,0,20.46,61.36,-9,-9,3.333333333333333,1,1,0,1,4,6,1,1,218,-13456.88849327928,0,0,0,0 -6896,8552,15529,-9,15527,15526,1,0,21,0,0,1,2,0,0,0,4,0,6.52002181370326,6.681220708869546,0,0,-930.0146155563764,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.384610725148258,0,39.98,59.96,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,852,77896.30583581077,0,0,0,506.0957895951808 -6897,8553,15530,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.95943601146579,8.170418361402657,7.299050375165094,0,0,-990.531647621921,0,2,2,2019,18,6,22,23,1,6,0,17.08734565798903,17.08734565798903,0,0,0,0,0,1,1,0,7.066913167250165,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,615.3333333333334,-1235.902743298396,0,298805.2522744518,241365.8581734654,2552.210714843911 -6897,8553,15531,-9,15530,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.807034932011,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,615.3333333333334,-1235.902743298396,0,298805.2522744518,241365.8581734654,2552.210714843911 -6897,8553,15532,-9,15530,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-932.9236667158885,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,615.3333333333334,-1235.902743298396,0,298805.2522744518,241365.8581734654,2552.210714843911 -6898,8554,15533,15534,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.393887377074957,8.331630217371066,0,10,-13,29.36225097548702,0,3,3,2019,13,1,39,40,1,1,0,12.75788258899885,12.75788258899885,0,0,0,0,0,0,0,0,0,0,36.37,61.5,55.34,54.26,6.666666666666667,1,1,0,0,11,12,4,1,1183,-41084.42050387829,-65888.71241926015,0,0,2622.397591463881 -6898,8554,15534,15533,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.822959034932612,7.123822475912576,10,13,-142.3080709818702,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.2857851890577819,7.091212630246112,55.34,54.26,36.37,61.5,8.333333333333334,1,1,0,0,10,12,4,1,1183,-41084.42050387829,-65888.71241926015,0,0,2622.397591463881 -6899,8555,15535,15536,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.32632244305,8.486983729612348,0,2,1,-48.78137698406377,0,1,1,2019,7,0,48,48,1,0,0,14.47444341283991,14.47444341283991,0,0,0,0,0,0,0,0,2.690989524302812,0,57.06,57.76,52.99,48.57,10,1,1,0,0,2,4,5,0,463.5,-19337.94148758194,-400.3314162499701,0,0,3743.311702512588 -6899,8555,15536,15535,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.094645590874777,8.191222070967832,0,2,-1,-13.70950226052442,0,-9,-9,2019,11,1,50,54,1,1,0,9.629942051835213,9.629942051835213,0,0,0,0,0,0,0,0,1.151499621300057,0,52.99,48.57,57.06,57.76,6.666666666666667,1,1,0,0,2,4,5,0,463.5,-19337.94148758194,-400.3314162499701,0,0,3743.311702512588 -6900,8556,15537,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,6.40448016934562,7.075977697028014,0,0,-890.2154153800604,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.911720986978323,56.38,48.28,-9,-9,10,1,1,0,0,0,7,2,0,1893,626144.5097675475,17207.52388669942,327567.3429502699,0,849.5899566073438 -6901,8557,15538,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.199750933717887,6.378404143753996,0,0,-1013.666037169861,0,2,2,2019,36,12,0,0,4,12,0,0,0,1,8.018651062852506,21.54527379589767,66.64390269473515,0,1,1,0,0,6.256756983334361,25.52,25.15,-9,-9,0,1,1,0,0,8,10,2,0,129,265577.3288273109,-11678.42493494516,152928.5170194176,0,2086.010337710832 -6902,8558,15539,15540,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.432498831582267,7.23994584457699,0,2,-2,-32.18685423635696,0,2,2,2019,9,0,47,55,1,0,0,3.164784742666667,3.164784742666667,0,0,0,0,0,0,0,0,9.39750335952335,0,57.16,56.15,49,50,8.333333333333334,1,1,0,0,12,11,5,1,432,453617.7584334672,89528.27978094661,320690.7637023136,62451.29783729059,12442.61989862851 -6902,8558,15540,15539,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,9.626087506765671,9.505200631611952,6.241263766181574,2,2,102.0084799660669,0,-9,-9,2019,11,0,50,45,1,1,0,30.24032266284629,30.24032266284629,0,0,0,0,0,0,0,0,3.71906410499466,6.735544888907062,49,50,57.16,56.15,7,1,1,0,0,1,11,5,1,432,453617.7584334672,89528.27978094661,320690.7637023136,62451.29783729059,12442.61989862851 -6903,8559,15541,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,7.892365291205909,8.106118511694985,0,0,-1048.342647140681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.595270923273987,7.729155505750193,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,569,1138633.590544327,449446.1542296139,474244.9238757779,0,1592.634991613053 -6904,8560,15542,15543,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,53,-3,14.06180405516949,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8114693379668036,0,57.06,57.76,62.39,56.71,10,1,1,0,0,0,5,3,1,1699,802360.1903858689,668370.7504153678,124668.6891008242,0,2528.485567428027 -6904,8560,15543,15542,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.010017401564971,7.999054291334597,53,3,89.78979049679759,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4169016103284252,8.049353757270197,62.39,56.71,57.06,57.76,10,1,1,0,0,0,5,3,1,1699,802360.1903858689,668370.7504153678,124668.6891008242,0,2528.485567428027 -6905,8561,15544,15546,-9,-9,1,0,52,0,3,0,2,2,-9,0,4,7.458419594735768,7.424955425109569,0,34,-3,-.0470963924486928,0,2,3,2019,11,0,25,20,1,0,0,8.076802478652882,8.076802478652882,0,0,0,0,0,1,1,0,0,0,41.3,60.77,52.79,30.38,6.666666666666667,1,1,0,1,9,13,3,1,866.3333333333334,820835.2225919698,614149.5488241598,223828.8955799898,21432.38915007767,3173.2529101011 -6905,8561,15545,-9,15544,15546,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1006.529771625932,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,866.3333333333334,820835.2225919698,614149.5488241598,223828.8955799898,21432.38915007767,3173.2529101011 -6905,8561,15546,15544,-9,-9,1,1,55,0,3,0,2,2,-9,0,2,8.430947995599876,8.711144950245696,0,33,3,56.79485692264748,0,3,3,2019,10,1,38,37,1,1,0,13.61340071887643,13.61340071887643,0,0,0,0,0,1,1,0,0,0,52.79,30.38,41.3,60.77,5,1,1,0,0,9,13,3,1,866.3333333333334,820835.2225919698,614149.5488241598,223828.8955799898,21432.38915007767,3173.2529101011 -6905,8562,15547,-9,15544,15546,1,1,25,0,3,0,2,2,-9,0,4,0,0,0,0,0,-897.7346839647237,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,13,1,1,756,-108008.9107159451,0,0,0,976.9892568971218 -6905,8563,15548,-9,15544,15546,1,0,18,0,3,0,2,2,1,0,4,6.509565957571476,6.577899737067004,0,0,0,-1095.764067512411,-9,2,2,2019,12,0,27,0,1,2,1,2.775956877675424,2.775956877675424,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,2,13,2,1,741,-147491.9090887092,0,0,0,725.8342904445585 -6906,8564,15549,-9,-9,-9,1,0,43,0,2,0,2,2,-9,1,5,6.784742851160615,6.738079063246214,0,0,0,-1068.376768632004,0,3,3,2019,6,0,16,0,1,0,0,6.601582563854301,6.601582563854301,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,0,0,6,11,2,0,692,-45298.05932118955,0,0,0,2727.646180561461 -6907,8565,15550,15551,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.438673492829841,8.763126769408643,6.916059114493438,42,-5,-17.0596959981493,0,3,3,2019,13,2,38,38,1,2,0,14.19623678248518,14.19623678248518,0,0,0,0,0,1,1,0,0,7.234240436850731,39.16,62.84,60.29,52.11,6.666666666666667,1,1,0,0,10,1,5,1,903,961044.1742957281,669091.4087992603,326795.0183134882,6543.326767670847,5030.893835251132 -6907,8565,15551,15550,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.699785797707746,7.911632354254396,42,5,33.68043331945547,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.99076257619915,60.29,52.11,39.16,62.84,10,1,1,0,0,6,1,5,1,903,961044.1742957281,669091.4087992603,326795.0183134882,6543.326767670847,5030.893835251132 -6908,8566,15552,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.037164985148064,6.521062897439707,0,0,-914.9131635818156,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.515438874873086,6.388414065250539,51.83,57.2,-9,-9,5,1,1,0,0,2,1,2,1,1180,37697.79559068853,0,0,0,752.644935950806 -6909,8567,15553,15554,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,43,5,0,0,-9,-9,2019,24,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,44.59,11.08,62.49,55.09,10,2,3,0,0,0,8,1,1,395.5,231027.3010511528,0,147437.6496099659,0,740.0873975322131 -6909,8567,15554,15553,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,0,0,0,43,-5,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,44.59,11.08,10,2,3,0,0,0,8,1,1,395.5,231027.3010511528,0,147437.6496099659,0,740.0873975322131 -6909,8568,15555,-9,15554,15553,1,1,22,0,0,0,2,2,-9,0,3,8.155058384131697,8.177634738630537,0,0,0,-1051.359290734994,0,3,3,2019,16,4,39,39,1,4,1,13.16486140474441,13.16486140474441,0,0,0,0,2,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,2,3,0,0,5,8,4,1,324,-17238.99221766013,23563.51345623224,0,0,1741.730177489849 -6910,8569,15556,-9,15558,15557,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-936.6568197611696,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,678,1228052.638323635,490896.0744103558,388552.8245656152,94028.03459418709,1797.589669828913 -6910,8569,15557,15558,-9,-9,1,1,66,0,3,0,1,1,-9,0,4,7.270620275998072,7.552644033093768,0,7,24,-25.10403967427871,0,-9,-9,2019,7,0,50,50,1,0,0,3.669457360832887,3.669457360832887,0,0,0,0,0,1,1,0,1.846382082876205,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,6,2,1,678,1228052.638323635,490896.0744103558,388552.8245656152,94028.03459418709,1797.589669828913 -6910,8569,15558,15557,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,7,-24,39.60209050413492,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,1.998267071831864,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,0,6,2,1,678,1228052.638323635,490896.0744103558,388552.8245656152,94028.03459418709,1797.589669828913 -6911,8570,15559,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,9.001104237432118,9.237975960659265,0,0,0,-975.7414441065025,0,2,2,2019,12,0,26,27,1,0,0,50.20204830753914,50.20204830753914,0,0,0,0,0,0,0,0,3.754419593737413,0,57.06,57.76,-9,-9,10,1,1,0,0,11,9,5,1,138,413218.2009500485,74053.79735166463,282279.1132403786,38483.23315244242,2080.859801687492 -6912,8571,15560,15561,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.004772449688723,9.274477249882178,0,22,4,-42.52772211715667,0,1,1,2019,6,0,40,45,1,0,0,27.31503350792434,27.31503350792434,0,0,0,0,0,0,0,0,0,0,62.49,55.09,40.64,52.96,8.333333333333334,1,1,0,0,13,9,5,1,186.6666666666667,2063281.26876466,1484261.456562558,445011.6652946027,115339.1263867446,3005.42728022653 -6912,8571,15561,15560,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,0,0,0,22,-4,-68.93757694461439,0,2,3,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,62.49,55.09,10,1,1,0,0,10,9,5,1,186.6666666666667,2063281.26876466,1484261.456562558,445011.6652946027,115339.1263867446,3005.42728022653 -6912,8571,15562,-9,15561,15560,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-956.8758213011971,0,2,1,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,4.458929065330252,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,186.6666666666667,2063281.26876466,1484261.456562558,445011.6652946027,115339.1263867446,3005.42728022653 -6912,8572,15563,-9,15561,15560,1,1,21,0,0,0,2,2,-9,0,3,7.744423043711883,7.606782109304119,0,0,0,-1051.036539995962,0,2,1,2019,17,5,40,40,1,5,1,7.071600396828922,7.071600396828922,0,0,0,0,0,0,0,0,2.937713514755372,0,34.23,49.22,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,431,116739.8146064612,0,0,0,857.8351684024481 -6913,8573,15564,15565,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.134025611574505,6.311228248667537,50,-2,-74.32839762408496,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.244883983690928,6.056702855497157,53.06,45.59,61.84,39.56,8.333333333333334,1,1,0,0,0,7,4,1,220,2082176.807906528,920429.0319351449,810745.965108274,0,4214.190037331188 -6913,8573,15565,15564,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.564370274764668,8.520510232117957,50,2,19.20217031658085,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.286377020695324,8.767837301100721,61.84,39.56,53.06,45.59,10,1,1,0,0,0,7,4,1,220,2082176.807906528,920429.0319351449,810745.965108274,0,4214.190037331188 -6914,8574,15566,-9,15567,15568,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.111066247401,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1563.333333333333,266486.1774920286,120819.5611256306,280957.750923817,189889.1213246619,1033.541934070685 -6914,8574,15567,15568,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.343672305873532,7.433513694041457,0,7,-4,-30.85817469948847,0,2,-9,2019,12,0,28,25,1,0,0,4.892749389665217,4.892749389665217,0,0,0,0,0,1,1,0,.7085607355948651,0,46.08,57.2,46.8,57.03,6.666666666666667,1,1,0,0,8,9,4,1,1563.333333333333,266486.1774920286,120819.5611256306,280957.750923817,189889.1213246619,1033.541934070685 -6914,8574,15568,15567,-9,-9,1,1,36,0,1,0,3,3,-9,0,3,8.412640640187734,8.794762653589931,0,7,4,10.95609172345608,0,3,3,2019,4,0,46,56,1,0,0,12.63852744046116,12.63852744046116,0,0,0,0,0,1,1,0,2.050999449018174,0,46.8,57.03,46.08,57.2,6.666666666666667,1,1,0,0,8,9,4,1,1563.333333333333,266486.1774920286,120819.5611256306,280957.750923817,189889.1213246619,1033.541934070685 -6915,8575,15569,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,8.248689942370621,7.781656427015524,0,0,0,-988.2455201111925,0,2,2,2019,10,1,45,45,1,1,0,9.075531416459242,9.075531416459242,0,0,0,0,0,1,1,0,0,0,34.81,46.68,-9,-9,5,1,1,0,0,5,2,4,1,1831,109394.3773528632,74009.15903297941,0,0,1109.440220304091 -6916,8576,15570,15571,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.123223339218296,5.90060538543856,48,-2,-120.0170744981799,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.582941818258637,6.298106869603407,62.39,56.71,52,48,10,1,1,0,0,6,4,2,1,782,144785.8776236352,93771.54655747763,0,0,3623.701853496683 -6916,8576,15571,15570,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.921894889747629,6.08059706524092,8,2,-114.3730523253062,0,-9,-9,2019,10,0,0,20,4,1,0,0,0,0,0,0,0,0,1,1,0,7.802776574933988,5.916764305308093,52,48,62.39,56.71,7,1,1,0,0,0,4,2,1,782,144785.8776236352,93771.54655747763,0,0,3623.701853496683 -6916,8577,15572,-9,15570,15571,1,1,32,0,0,0,1,1,-9,0,4,8.068702765532437,8.331663745838572,0,0,0,-1085.040384288655,0,3,2,2019,10,0,35,35,1,1,0,12.65304259899477,12.65304259899477,0,0,0,0,0,1,1,0,4.682375789923237,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,445,-170575.316659859,0,0,0,1863.106627597132 -6917,8578,15573,15574,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.694279161602482,8.072675425568876,29,-5,-56.07491800708851,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.101106150505092,7.854741734288147,51.42,32.06,56.11,38.87,6.666666666666667,1,1,0,0,10,5,5,1,204,585702.3539896377,370800.6016656845,406948.9171583134,149141.8389298312,4038.45287675734 -6917,8578,15574,15573,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.033379946663432,8.711624824597099,0,9,5,66.08599888012573,0,3,3,2019,13,3,40,58,1,3,0,23.64374727062915,23.64374727062915,0,0,0,0,0,0,0,0,0,0,56.11,38.87,51.42,32.06,6.666666666666667,1,1,0,0,8,5,5,1,204,585702.3539896377,370800.6016656845,406948.9171583134,149141.8389298312,4038.45287675734 -6918,8579,15575,15576,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.150774554214069,7.379706761474759,0,9,1,62.63400194784332,0,-9,-9,2019,6,0,16,20,1,0,0,7.630298289108967,7.630298289108967,0,0,0,0,0,0,0,0,.8978422501171541,0,58.73,40.59,54.2,57.49,10,1,1,0,0,11,10,3,1,1570.5,22252.89529396812,-1654.731150542293,0,0,1540.92898494437 -6918,8579,15576,15575,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.521076823643674,7.667112848879312,5.664660462388106,9,-1,23.67439536227562,0,2,2,2019,8,0,27,27,1,0,0,10.51215518641281,10.51215518641281,0,0,0,0,0,0,0,0,5.585976173946961,5.336051772767216,54.2,57.49,58.73,40.59,8.333333333333334,1,1,0,0,11,10,3,1,1570.5,22252.89529396812,-1654.731150542293,0,0,1540.92898494437 -6919,8580,15577,15578,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.837630043196475,10.12227505548843,0,10,3,-84.77350766173666,0,2,2,2019,10,0,60,48,1,0,0,31.89795862877109,31.89795862877109,0,0,0,0,0,0,0,0,4.004614423142695,0,54.96,53.17,57.33,53.46,8.333333333333334,1,1,0,0,7,2,5,1,281.5,830850.4945978095,1200.790607110108,446488.1715630254,0,6925.859991065108 -6919,8580,15578,15577,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.452766413798226,8.494423162226077,0,10,-3,63.63895773353463,0,2,2,2019,7,0,26,38,1,0,0,19.45881062536198,19.45881062536198,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.96,53.17,10,1,1,0,0,9,2,5,1,281.5,830850.4945978095,1200.790607110108,446488.1715630254,0,6925.859991065108 -6920,8581,15579,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.608386483525845,7.49131113921273,0,0,0,-912.1898924373262,0,3,3,2019,6,0,25,30,1,0,0,8.821852890615881,8.821852890615881,0,0,0,0,2,0,0,0,3.276911565757196,0,57.33,53.46,-9,-9,10,1,1,0,0,11,7,3,1,522,123832.85429944,41564.04515717337,0,0,724.8374557909164 -6921,8582,15580,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.394576413053587,6.361790354289687,0,0,-1022.423533370197,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.375840588858826,0,0,1,1,0,5.841270580802269,6.324118171110531,69.46000000000001,34.17,-9,-9,10,1,1,0,0,0,9,2,1,368,137268.2514570759,117077.7932019993,0,0,1404.641814849016 -6922,8583,15581,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.241147099410247,8.32157744244207,0,0,0,-1034.749144960837,0,3,3,2019,5,0,38,38,1,0,0,13.76373153585774,13.76373153585774,0,0,0,0,0,0,0,0,1.343868703121708,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,2259,143080.6954394065,-61571.77041471742,100316.5990726725,26947.98184053586,1364.586381127623 -6923,8584,15582,15583,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,18,2,59.67838937451818,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,.7533847624038497,0,56.35,51.16,54.2,57.49,10,1,1,0,0,10,4,2,1,1467,328209.4869278792,0,311165.3428702826,0,642.793913717388 -6923,8584,15583,15582,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,3.537110533219337,4.085875578389786,19,-2,33.72468078847035,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.089197159459947,3.805159227911337,54.2,57.49,56.35,51.16,8.333333333333334,1,1,0,0,10,4,2,1,1467,328209.4869278792,0,311165.3428702826,0,642.793913717388 -6924,8585,15584,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.086703040911436,7.845413855255444,0,0,-990.6402017832786,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,39.48310452221672,0,0,1,1,0,.58731089655635,7.933720492290412,68.65000000000001,26.35,-9,-9,10,1,1,0,0,1,2,4,1,1426,515118.8313230952,453012.476220698,288192.4703367916,0,2758.311449861155 -6925,8586,15585,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.902997017258055,8.049840442945948,0,0,0,-1072.509810093764,0,2,2,2019,6,0,38,38,1,0,0,8.130203773741888,8.130203773741888,0,0,0,0,0,0,0,0,1.809532135755826,0,52.66,56.94,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,1736,76518.38613998478,0,0,0,1743.108123959535 -6926,8587,15586,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.9618049720486,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,27.93,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1801,-15686.68084091822,0,0,0,2075.154642590179 -6927,8588,15587,15588,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,6.747412077748438,7.225898745780205,7.058161663203803,30,-3,-16.49220009241087,0,2,2,2019,8,0,12,12,1,0,0,8.138203608415424,8.138203608415424,0,0,0,0,0,0,0,0,0,7.095777055651204,57.33,53.46,34.4,55.99,8.333333333333334,1,1,0,0,11,2,4,1,305.5,241528.5073888394,201948.018692986,149700.9181620348,0,1957.55516583362 -6927,8588,15588,15587,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.286982673345142,7.634557588040392,3.809615751533986,30,3,107.2763207112791,0,3,3,2019,16,5,26,20,1,5,0,9.336407809977404,9.336407809977404,0,0,0,0,0,0,0,0,3.28779057327122,3.243920260449856,34.4,55.99,57.33,53.46,8.333333333333334,1,1,0,0,8,2,4,1,305.5,241528.5073888394,201948.018692986,149700.9181620348,0,1957.55516583362 -6928,8589,15589,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.544742866958346,7.675837721706848,0,0,-883.1024077315188,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.558438301435352,7.685794634846579,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,439,566394.1786884438,345260.8999728482,201416.2565630534,0,1736.350601494649 -6929,8590,15590,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.426669485657547,8.051271924874646,0,0,0,-959.4451551092608,0,2,2,2019,11,0,45,45,1,0,0,10.20304198016606,10.20304198016606,0,0,0,0,0,0,0,0,3.826649175487653,0,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,11,7,4,0,2495,276032.7937862118,-185935.8394296981,423686.0392313283,0,2468.064808045936 -6930,8591,15591,-9,15592,15593,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1075.840849646424,-9,2,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,24.44,64.23,-9,-9,5,1,1,0,0,0,12,1,1,78,0,0,0,0,0 -6930,8592,15592,15593,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.808995684034682,4.597298538357672,9,8,37.88689872525858,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.795997656823174,4.931113001070617,53.98,32.91,32.2,40.87,8.333333333333334,1,1,0,0,7,12,3,1,460.5,1772081.179307983,1282950.92966923,491639.3192399172,0,1927.286701752214 -6930,8592,15593,15592,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.784458423005835,7.894985790825421,6.755203028658308,9,-8,41.39957231891469,0,2,1,2019,24,12,40,16,1,12,0,7.506464916294661,7.506464916294661,0,0,0,0,0,1,1,0,6.016555267286306,6.838602424345938,32.2,40.87,53.98,32.91,3.333333333333333,1,1,0,1,9,12,3,1,460.5,1772081.179307983,1282950.92966923,491639.3192399172,0,1927.286701752214 -6931,8593,15594,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,3.548468308856909,4.024087136212562,0,0,-1078.381045302589,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,7.810500148293748,0,0,1,1,0,2.64688777036932,3.780213166179478,43.29,17.29,-9,-9,5,1,1,0,0,0,2,2,1,372,-58519.81380467187,0,0,0,820.1214629206562 -6932,8594,15595,-9,15596,15597,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.6528026684525,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6932,8594,15596,15597,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,0,0,0,1,-16,-105.0630994755897,0,-9,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,59.43,58.05,6.666666666666667,1,1,1,1,0,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6932,8594,15597,15596,-9,-9,1,1,45,0,4,0,2,2,-9,0,5,8.066752807949147,8.1180494721347,0,1,16,75.33273522031826,0,2,2,2019,4,0,45,52,1,0,0,6.70233453167163,6.70233453167163,0,0,0,0,0,1,1,0,0,0,59.43,58.05,46.44,59.62,8.333333333333334,1,1,0,0,5,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6932,8594,15598,-9,15596,15597,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.498498081863,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6932,8594,15599,-9,15596,15597,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-951.2349618792199,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6932,8594,15600,-9,15596,15597,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.4780605442761,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,1680.833333333333,593693.075588789,60776.61988820403,436323.8660214017,0,3065.874506598504 -6933,8595,15601,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.093323037702563,8.259242536903409,0,0,0,-1060.710639148312,0,3,3,2019,8,1,36,36,1,1,0,11.81570936207504,11.81570936207504,0,0,0,0,14.5,0,0,0,5.077439799785126,0,59.91,42.65,-9,-9,5,1,1,0,0,10,11,4,1,254,-185263.4732046835,-41850.47983659821,0,0,1842.072255855362 -6934,8596,15602,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.883884000667649,7.027863947168185,0,0,-1032.119783849058,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.720333995014592,22.93,58.48,-9,-9,5,1,1,0,0,0,6,2,1,339,355354.6493483395,204539.153993192,0,0,-222.7686597076268 -6935,8597,15603,15604,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.031457611293567,6.955112212764105,43,2,-8.613025794929349,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.271203582374018,7.248526229517275,57.1,57.51,50,47,8.333333333333334,4,5,0,0,3,4,2,1,685.5,313992.8832076082,251544.2906369233,144449.8958549975,0,1753.093987546308 -6935,8597,15604,15603,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-93.13670122577881,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.299388724407955,0,50,47,57.1,57.51,7,1,1,0,0,0,4,2,1,685.5,313992.8832076082,251544.2906369233,144449.8958549975,0,1753.093987546308 -6936,8598,15605,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.118352279128,7.594936557921622,6.301544258576127,0,0,-1122.565077326513,0,2,3,2019,9,0,18,18,1,0,0,10.1915410251867,10.1915410251867,0,0,0,0,0,1,1,0,3.679750562423957,6.636954575454035,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,8,2,3,1,267,371491.5109087552,358225.7544109831,80775.31437282667,0,1817.733349131616 -6937,8599,15606,15610,-9,-9,1,1,32,1,3,0,2,2,-9,0,4,8.047545301034416,8.535870708028135,0,6,7,-98.1532970314141,0,-9,-9,2019,10,0,50,57,1,1,0,8.76876132941293,8.76876132941293,0,0,0,0,0,1,1,0,0,0,50,57,49.06,58.64,7,1,1,0,0,1,2,3,1,628.4,-16843.60816608721,-10138.73489875805,0,0,3214.14168906441 -6937,8599,15607,-9,15610,15606,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-923.7132492355184,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,628.4,-16843.60816608721,-10138.73489875805,0,0,3214.14168906441 -6937,8599,15608,-9,15610,15606,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-924.4880468594281,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.276963203884046,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,628.4,-16843.60816608721,-10138.73489875805,0,0,3214.14168906441 -6937,8599,15609,-9,15610,15606,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.2404289814999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,628.4,-16843.60816608721,-10138.73489875805,0,0,3214.14168906441 -6937,8599,15610,15606,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,7.369507887475197,7.158263548039834,0,6,-7,65.72756062473066,0,-9,-9,2019,9,1,18,18,1,1,0,8.280817668156034,8.280817668156034,0,0,0,0,0,1,1,0,7.377398160059676,0,49.06,58.64,50,57,8.333333333333334,1,1,0,0,8,2,3,1,628.4,-16843.60816608721,-10138.73489875805,0,0,3214.14168906441 -6938,8600,15611,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,2,8.411253611475496,8.645425607327555,6.849306211271704,0,0,-1022.361832485306,0,2,3,2019,13,1,37,38,1,1,0,16.10921706434974,16.10921706434974,0,0,0,0,0,1,1,0,6.889579176390185,0,34.54,45.47,-9,-9,5,1,1,0,1,10,13,4,1,795,1310980.737954636,341858.2193019692,204553.3464717795,63440.25118257514,2658.765470310871 -6939,8601,15612,15613,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.311668860735077,8.153890278674206,0,14,-4,137.6887766709523,0,2,3,2019,9,2,48,55,1,2,0,8.591615720645013,8.591615720645013,0,0,0,0,0,1,1,0,3.003671969306875,0,54.96,53.17,51.24,58.84,6.666666666666667,1,1,0,1,8,7,4,1,481.6666666666667,23747.34374869657,84676.34183803234,0,0,2390.653711716273 -6939,8601,15613,15612,-9,-9,1,0,40,1,1,0,2,2,-9,0,4,7.360816586318222,7.039388638004751,0,14,4,-165.4126914609744,0,3,2,2019,14,3,24,24,1,3,0,7.817408737772757,7.817408737772757,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,1,6,7,4,1,481.6666666666667,23747.34374869657,84676.34183803234,0,0,2390.653711716273 -6939,8601,15614,-9,15613,15612,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.5524129509847,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,481.6666666666667,23747.34374869657,84676.34183803234,0,0,2390.653711716273 -6940,8602,15615,15616,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,4,-2,-74.28163923091674,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.66,7.17,51.41,56.15,5,1,1,0,1,8,12,5,1,1531.5,1478775.143433619,17204.56488538687,126531.6423546978,12496.54415530566,2598.066454383249 -6940,8602,15616,15615,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,8.773236179620396,8.923740192319521,5.863327019764277,4,2,-86.07656915788795,0,2,2,2019,8,0,60,50,1,0,0,14.26923696644233,14.26923696644233,0,0,0,0,0,1,1,0,0,6.550200206322777,51.41,56.15,58.66,7.17,6.666666666666667,1,1,0,0,8,12,5,1,1531.5,1478775.143433619,17204.56488538687,126531.6423546978,12496.54415530566,2598.066454383249 -6941,8603,15617,15618,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.300419196163968,8.222329828944808,0,5,-2,11.95491300179726,0,-9,-9,2019,25,9,36,46,1,9,0,16.26956421039329,16.26956421039329,0,0,0,0,0,0,0,0,3.361595295568891,0,35.44,44.94,56.57,57.78,5,1,1,0,0,8,2,4,1,4815,122750.9589717906,31390.19046736417,211845.9673071745,137080.1976972472,2446.413566127456 -6941,8603,15618,15617,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.406931191833908,8.014271452298582,0,5,2,-11.09334232704872,0,-9,-9,2019,11,4,25,25,1,4,0,9.824539456183217,9.824539456183217,0,0,0,0,0,0,0,0,2.024046433966664,0,56.57,57.78,35.44,44.94,10,1,1,0,0,8,2,4,1,4815,122750.9589717906,31390.19046736417,211845.9673071745,137080.1976972472,2446.413566127456 -6942,8604,15619,15620,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.254526002786878,7.368987248441476,9,11,53.98332175137252,-9,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.26782836864602,7.551110069729315,38.07,53.03,40.3,42.59,5,1,1,0,0,0,2,4,1,532,1407037.365176423,389484.5596113466,666843.2523336018,0,4635.100147105166 -6942,8604,15620,15619,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.045458995383731,7.75172143515646,27,-11,-75.46424498246844,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,7.8789029421554,7.714529010180664,40.3,42.59,38.07,53.03,8.333333333333334,1,1,0,0,0,2,4,1,532,1407037.365176423,389484.5596113466,666843.2523336018,0,4635.100147105166 -6943,8605,15621,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.69272526866462,8.547716277298397,7.123426116291613,0,0,-1025.504088798982,0,3,3,2019,13,1,38,43,1,1,0,10.43920218418991,10.43920218418991,0,0,0,0,0,0,0,0,0,7.345554234181998,39.6,59.9,-9,-9,5,1,1,0,0,9,13,4,1,801,2620.374270616754,82651.77448511195,58270.42082393629,32651.79418031709,1469.205288918033 -6943,8606,15622,-9,15621,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1019.769729536622,1,2,-9,2019,11,0,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.15,50.21,-9,-9,6.666666666666667,1,1,0,0,8,13,1,1,579,-20009.69542135541,0,0,0,0 -6944,8607,15623,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.226632266145039,6.183921894547367,0,0,-952.0526912837778,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.660587111891542,6.675769309753941,50.49,34.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,418,385128.3572018386,71769.97153071723,185445.259078144,0,3088.104963536472 -6945,8608,15624,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.170387241132794,6.877961686651783,0,0,-1009.528985450874,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.865198229192313,6.962592606220861,59.82,49.4,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,414,690473.7915337895,381509.3434945975,219066.8754287306,0,2003.954493652062 -6946,8609,15625,15627,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.353900863740101,9.39292344447537,0,9,2,-59.66277912342866,0,2,2,2019,13,1,45,55,1,1,0,25.0530950556399,25.0530950556399,0,0,0,0,0,1,1,0,3.759044537944032,0,48.74,50.46,40.57,46.62,6.666666666666667,1,1,0,0,10,4,5,1,809.3333333333334,235774.7716504467,84172.18358629569,323806.1134322726,239537.1287806991,4886.361383164242 -6946,8609,15626,-9,15627,15625,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-903.7521523441932,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,4,5,1,809.3333333333334,235774.7716504467,84172.18358629569,323806.1134322726,239537.1287806991,4886.361383164242 -6946,8609,15627,15625,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,7.556366258514109,7.437085705919635,0,9,-2,-32.73661236999201,0,2,1,2019,11,0,30,30,1,0,0,8.064561049608677,8.064561049608677,0,0,0,0,0,1,1,0,0,0,40.57,46.62,48.74,50.46,3.333333333333333,2,3,0,0,10,4,5,1,809.3333333333334,235774.7716504467,84172.18358629569,323806.1134322726,239537.1287806991,4886.361383164242 -6947,8610,15628,15630,-9,-9,1,0,44,0,1,0,1,1,-9,0,2,8.781446052331532,8.658043449550862,0,1,0,-46.23998703306169,-9,2,1,2019,14,3,51,0,1,3,0,18.24814104285392,18.24814104285392,0,0,0,0,0,1,1,0,0,0,39.22,32.94,38.91,60.5,8.333333333333334,1,1,0,0,8,13,5,1,422.5,293234.2620224961,487477.1038039312,0,0,5597.3637737456 -6947,8610,15629,-9,15628,15630,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1068.847873664484,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.4513375537576196,0,47.12,56.68,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,422.5,293234.2620224961,487477.1038039312,0,0,5597.3637737456 -6947,8610,15630,15628,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.952834798912312,8.903680131325254,0,1,0,75.90361654203276,-9,3,2,2019,11,0,83,0,1,0,0,12.18160607950292,12.18160607950292,0,0,0,0,0,1,1,0,2.982191975580057,0,38.91,60.5,39.22,32.94,6.666666666666667,1,1,0,0,8,13,5,1,422.5,293234.2620224961,487477.1038039312,0,0,5597.3637737456 -6947,8610,15631,-9,15628,15630,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1151.340789660735,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,5,1,422.5,293234.2620224961,487477.1038039312,0,0,5597.3637737456 -6948,8611,15632,15633,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.149539213750724,6.929383189252421,39,-2,104.382742857631,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.3041403888221484,7.289782093475455,51.41,56.15,51,48,6.666666666666667,1,1,0,0,6,8,5,1,527.5,1568743.416822641,816473.2624869049,795469.815616433,52139.40953600632,4906.523769461179 -6948,8611,15633,15632,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,8.430870751578734,8.664438922646807,0,39,2,139.369647328955,0,2,2,2019,10,0,50,44,1,1,0,12.28950066801289,12.28950066801289,0,0,0,0,0,1,1,0,3.872512477973919,0,51,48,51.41,56.15,7,1,1,0,0,13,8,5,1,527.5,1568743.416822641,816473.2624869049,795469.815616433,52139.40953600632,4906.523769461179 -6949,8612,15634,-9,15635,-9,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-820.7870609936174,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,367,-20417.75138643092,0,0,0,1710.360858573886 -6949,8612,15635,-9,-9,-9,1,0,41,1,2,0,3,3,-9,0,4,0,0,0,0,0,-1038.453914604763,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,1,7,1,0,367,-20417.75138643092,0,0,0,1710.360858573886 -6949,8612,15636,-9,15635,-9,1,1,17,1,2,0,2,2,1,0,3,0,0,0,0,0,-1006.897647659378,-9,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,43.72,51.38,-9,-9,5,1,1,0,0,0,7,1,0,367,-20417.75138643092,0,0,0,1710.360858573886 -6949,8612,15637,-9,15635,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.9379302451,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,367,-20417.75138643092,0,0,0,1710.360858573886 -6950,8613,15638,15639,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.720367086645695,8.316443744489568,0,9,5,22.84830112021923,0,-9,-9,2019,11,0,40,42,1,0,0,19.94960883458371,19.94960883458371,0,0,0,0,0,0,0,0,8.18610811487178,0,51.83,57.2,58.89,48.6,8.333333333333334,1,1,0,0,12,7,4,1,355.5,481381.0338690493,397540.351202828,289187.4291359072,97904.18472474162,6818.984811745743 -6950,8613,15639,15638,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,0,0,0,12,-5,-114.2218893648116,0,2,1,2019,10,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,7.6253362673344,0,58.89,48.6,51.83,57.2,10,2,3,0,0,5,7,4,1,355.5,481381.0338690493,397540.351202828,289187.4291359072,97904.18472474162,6818.984811745743 -6951,8614,15640,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.013104663332327,7.016992997366149,0,0,-882.9220899236924,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.2692292604092383,6.735958155128986,55.53,32.79,-9,-9,10,1,1,0,0,6,6,2,0,355,342421.7309804443,101473.259836418,284087.7528161755,0,1438.615314975329 -6952,8615,15641,15642,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.055714306031144,6.873098121804809,0,6,4,-62.54128105202978,0,2,2,2019,6,0,35,40,1,0,0,4.592448405797466,4.592448405797466,0,0,0,0,0,0,0,0,4.661810793914761,0,60.12,54.8,54.29,51.82,8.333333333333334,1,1,0,0,7,2,5,1,1471,1301389.749331411,1101368.850053156,161045.1474383264,0,3072.582778079017 -6952,8615,15642,15641,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.418353005701116,8.462058521437211,0,6,-4,-96.28987385145864,0,2,2,2019,10,0,39,38,1,0,0,18.14177399611659,18.14177399611659,0,0,0,0,0,0,0,0,4.418126126643194,0,54.29,51.82,60.12,54.8,8.333333333333334,1,1,0,0,7,2,5,1,1471,1301389.749331411,1101368.850053156,161045.1474383264,0,3072.582778079017 -6953,8616,15643,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,5.603073513945905,5.316845545930926,0,0,-955.3174697503995,0,3,3,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,7.088956498143621,5.299763225007467,41.6,60.78,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,514,44358.31035996904,43556.8172477444,0,0,1048.656987129345 -6954,8617,15644,15645,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.062457216029694,8.923662174395492,0,8,0,5.119165205078128,0,2,1,2019,12,2,38,42,1,2,0,26.96859243541826,26.96859243541826,0,0,0,0,0,0,0,0,7.429213571542445,0,45.85,61.26,39.85,55.83,3.333333333333333,1,1,0,0,11,9,5,0,604.5,1502317.817807855,972382.4256887336,285689.0793290461,0,4382.967496588044 -6954,8617,15645,15644,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,7.371134188301517,7.444942630306103,0,8,0,-114.4817395896602,0,-9,3,2019,14,3,23,27,1,3,0,7.23255912840678,7.23255912840678,0,0,0,0,0,0,0,0,3.391799336009943,0,39.85,55.83,45.85,61.26,3.333333333333333,1,1,0,0,11,9,5,0,604.5,1502317.817807855,972382.4256887336,285689.0793290461,0,4382.967496588044 -6955,8618,15646,15647,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.874394548291479,8.597892307134547,0,7,-3,-72.86443042128761,0,2,2,2019,13,1,39,40,1,1,0,20.84707504904126,20.84707504904126,0,0,0,0,0,1,1,0,0,0,50.82,49.75,55.79,52.62,6.666666666666667,1,1,0,0,8,11,5,1,502.3333333333333,608207.4610715635,496262.5961591412,265417.8350533565,116788.0580565468,3878.463966497884 -6955,8618,15647,15646,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.190115007955871,8.188189190614073,0,7,3,-13.64754144546674,0,-9,-9,2019,6,0,44,38,1,0,0,8.435503035276779,8.435503035276779,0,0,0,0,0,1,1,0,0,0,55.79,52.62,50.82,49.75,8.333333333333334,1,1,0,0,8,11,5,1,502.3333333333333,608207.4610715635,496262.5961591412,265417.8350533565,116788.0580565468,3878.463966497884 -6955,8618,15648,-9,15646,15647,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.407440024903,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,502.3333333333333,608207.4610715635,496262.5961591412,265417.8350533565,116788.0580565468,3878.463966497884 -6956,8619,15649,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1023.45163134378,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,.5453663408503822,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1468,67549.97597924776,0,0,0,847.9053994662745 -6957,8620,15650,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.479641928944471,8.523254470946098,0,0,0,-965.6652774261044,0,-9,-9,2019,9,0,49,45,1,0,0,8.579227265513708,8.579227265513708,0,0,0,0,0,0,0,0,3.077459949108155,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,1180,312298.2711102021,210390.7402923478,158693.5048884103,56789.45890569804,1735.072746372616 -6958,8621,15651,15652,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.072434429566037,8.634671097643794,0,2,1,57.79734784379599,0,2,2,2019,12,1,37,36,1,1,0,17.91467596692931,17.91467596692931,0,0,0,0,0,1,1,0,0,0,45.32,54.77,64.40000000000001,42,8.333333333333334,3,4,0,0,12,8,5,1,1083.5,818586.8369542527,-47848.1924242743,653455.7369229388,75103.33424488816,3401.674150976204 -6958,8621,15652,15651,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.494852290194603,7.544254308454846,0,2,-1,-36.02788422429627,0,-9,-9,2019,7,0,45,35,1,0,0,3.885880809749316,3.885880809749316,0,0,0,0,0,1,1,0,6.699149268387482,0,64.40000000000001,42,45.32,54.77,8.333333333333334,1,1,0,0,6,8,5,1,1083.5,818586.8369542527,-47848.1924242743,653455.7369229388,75103.33424488816,3401.674150976204 -6958,8622,15653,-9,15651,-9,1,0,19,0,0,0,2,2,-9,0,5,6.480287512941198,6.565201821183985,0,0,0,-1036.489889486717,0,1,-9,2019,14,3,33,0,1,3,1,2.187311026059459,2.187311026059459,0,0,0,0,0,1,1,0,1.960893426714881,0,46.4,59.87,-9,-9,8.333333333333334,3,4,0,0,1,8,2,1,445,29560.2626455942,0,0,0,-437.960852078486 -6959,8623,15654,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.0450559055788,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.53,11.21,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,898,43264.13475718011,0,43135.86991705623,0,1149.034069984986 -6960,8624,15655,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.499476695630142,8.339022865849721,0,0,0,-1006.87904146617,0,3,-9,2019,2,0,38,46,1,0,0,11.11286563652969,11.11286563652969,0,0,0,0,0,1,1,0,6.782040855284433,0,62.66,52.4,-9,-9,10,3,4,0,0,7,8,4,1,202,3044039.385063279,0,1775792.483278051,0,1555.347008306888 -6961,8625,15656,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.255625063855859,7.986810943051191,0,0,0,-1077.251127921659,-9,2,2,2019,11,1,35,0,1,1,0,12.15128936040331,12.15128936040331,0,0,0,0,0,0,0,0,2.974364467603407,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,141,1119892.941018812,970946.26650375,258077.661616678,0,1503.773969497998 -6962,8626,15657,15658,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.733641795222716,7.806654456072346,0,1,3,-22.76886756821801,-9,2,2,2019,12,0,20,0,1,0,0,9.942566983997947,9.942566983997947,0,0,0,0,7,0,0,0,7.766631717384669,0,46.09,49.17,50.82,57.78,6.666666666666667,1,1,0,0,7,7,5,1,296.5,740138.2523909952,79165.40704389627,731163.0008290657,98936.88309860912,5213.510657122763 -6962,8626,15658,15657,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.037546518429744,8.660725964292032,0,1,-3,-27.27813127341674,-9,-9,-9,2019,13,1,40,0,1,1,0,28.92310209725717,28.92310209725717,0,0,0,0,2,0,0,0,0,0,50.82,57.78,46.09,49.17,10,1,1,0,0,9,7,5,1,296.5,740138.2523909952,79165.40704389627,731163.0008290657,98936.88309860912,5213.510657122763 -6963,8627,15659,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,6.177071725854434,6.572395439849921,0,0,0,-1135.011911952974,0,3,-9,2019,9,1,19,14,1,1,1,3.26690065162692,3.26690065162692,0,0,0,0,0,1,1,0,.6221810110252284,0,66.13,31.59,-9,-9,5,2,3,0,0,3,4,2,0,3228,-207891.2486849974,0,0,0,662.4059902190429 -6964,8628,15660,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.873518543073945,7.900178620744,0,0,0,-1004.316866906909,0,1,2,2019,11,0,37,42,1,0,0,10.03830230418253,10.03830230418253,0,0,0,0,0,0,0,0,0,0,39.5,56.19,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,2159,-12359.38797589408,0,0,0,1559.104406267639 -6965,8629,15661,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,3,7.943579368102523,7.967934885640524,0,0,0,-993.1195961264034,0,-9,-9,2019,6,0,38,41,1,0,0,8.152700713378765,8.152700713378765,0,0,0,0,0,0,0,0,1.125490099572173,0,47.91,51.06,-9,-9,6.666666666666667,1,1,0,0,2,4,4,1,939,0,0,0,0,323.346119673839 -6966,8630,15662,15663,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.561723301361175,8.814245645975934,7.40600255874218,34,0,-18.47134319905206,0,-9,2,2019,8,0,37,37,1,0,0,16.07890286014347,16.07890286014347,0,0,0,0,0,0,0,0,4.563929924638896,7.074395149317922,61.19,36.58,57.16,56.15,8.333333333333334,1,1,0,0,9,5,4,1,687,1877254.938880559,1475491.681523066,440543.2428990317,0,3000.273940164139 -6966,8630,15663,15662,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,4.615553609214574,4.38419569046164,44,0,-66.58076294409017,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.442314897420693,5.031390781847284,57.16,56.15,61.19,36.58,10,1,1,0,0,0,5,4,1,687,1877254.938880559,1475491.681523066,440543.2428990317,0,3000.273940164139 -6967,8631,15664,-9,15667,15666,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.005473766061,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,536.5,162299.819158636,7979.968028419291,358927.1138997227,208153.8869200606,3447.634942191734 -6967,8631,15665,-9,15667,15666,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.1412916291902,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,536.5,162299.819158636,7979.968028419291,358927.1138997227,208153.8869200606,3447.634942191734 -6967,8631,15666,15667,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.804693914468798,8.302263844688639,7.818066149636921,6,-1,-225.078084157664,-9,-9,-9,2019,10,0,58,0,1,1,0,5.736550459852579,5.736550459852579,0,0,0,0,0,1,1,0,0,8.221333811815281,37.27,62.66,48.36,38.94,5,1,1,0,0,5,9,4,1,536.5,162299.819158636,7979.968028419291,358927.1138997227,208153.8869200606,3447.634942191734 -6967,8631,15667,15666,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.551399121098934,7.970158254146408,3.858455043126646,6,1,-110.9287442814421,0,3,2,2019,12,0,15,12,1,0,0,17.92765479249111,17.92765479249111,0,0,0,0,71.5,1,1,0,4.341542126870678,0,48.36,38.94,37.27,62.66,6.666666666666667,1,1,0,0,5,9,4,1,536.5,162299.819158636,7979.968028419291,358927.1138997227,208153.8869200606,3447.634942191734 -6968,8632,15668,-9,15671,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-935.7403524651178,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,846.25,-43385.05013044015,0,0,0,2676.49758634142 -6968,8632,15669,-9,15671,-9,1,1,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-845.5504132875271,-9,3,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,0,846.25,-43385.05013044015,0,0,0,2676.49758634142 -6968,8632,15670,-9,15671,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.415357476886,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,846.25,-43385.05013044015,0,0,0,2676.49758634142 -6968,8632,15671,-9,-9,-9,1,0,29,1,3,0,3,3,-9,1,3,0,5.956613728799107,6.234161902761682,0,0,-923.0199342392217,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,5.755000071765007,0,35.8,59.5,-9,-9,5,1,1,0,0,0,10,2,0,846.25,-43385.05013044015,0,0,0,2676.49758634142 -6969,8633,15672,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-926.9683784738219,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.30932586778721,1.785501528221474,17.74933873742353,0,1,1,0,2.060996473283869,0,52,45,-9,-9,8,1,1,0,0,0,8,1,1,176,68443.3471989333,0,0,0,1001.383214122824 -6970,8634,15673,15674,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.855148614002673,7.865741122500181,0,1,0,-105.2455460145706,-9,3,3,2019,9,0,25,0,1,1,0,14.03468862886094,14.03468862886094,0,0,0,0,0,0,0,0,0,0,54,54,45.91,59.89,8,1,1,0,0,1,6,5,0,176,76314.14615374387,-23179.68077836265,40862.12234661844,82042.7532953539,3089.616423336523 -6970,8634,15674,15673,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.498064951204436,8.827097838703924,0,1,0,130.6424526282711,-9,3,3,2019,11,0,33,0,1,0,0,17.41250355036446,17.41250355036446,0,0,0,0,0,0,0,0,7.426125519648509,0,45.91,59.89,54,54,8.333333333333334,1,1,0,0,6,6,5,0,176,76314.14615374387,-23179.68077836265,40862.12234661844,82042.7532953539,3089.616423336523 -6971,8635,15675,15676,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,0,0,44,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.81,45.04,54.71,38.37,5,1,1,0,0,0,12,1,1,1376.5,243523.6693556422,0,206983.7230222707,0,1288.125594313766 -6971,8635,15676,15675,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,0,0,44,-7,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.71,38.37,46.81,45.04,8.333333333333334,1,1,0,0,0,12,1,1,1376.5,243523.6693556422,0,206983.7230222707,0,1288.125594313766 -6972,8636,15677,-9,15678,15679,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.199536626316,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,2660,144245.5762949361,37783.10430674427,141338.4467403942,0,2954.518404407211 -6972,8636,15678,15679,-9,-9,1,0,49,0,1,0,2,2,-9,1,3,7.274722346065036,7.358453555217633,0,9,-1,-10.55032947089012,0,3,2,2019,8,0,25,22,1,0,0,7.125016078502927,7.125016078502927,0,0,0,0,0,1,1,0,0,0,48.45,57.49,52.24,48.84,8.333333333333334,1,1,0,0,12,13,4,1,2660,144245.5762949361,37783.10430674427,141338.4467403942,0,2954.518404407211 -6972,8636,15679,15678,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.549479016539582,8.269206276206328,0,9,1,148.0713085723074,0,3,2,2019,8,0,40,37,1,0,0,14.63347125642914,14.63347125642914,0,0,0,0,0,1,1,0,0,0,52.24,48.84,48.45,57.49,1.666666666666667,1,1,0,0,12,13,4,1,2660,144245.5762949361,37783.10430674427,141338.4467403942,0,2954.518404407211 -6972,8637,15680,-9,15678,15679,1,1,20,0,1,0,2,2,-9,0,5,8.168300037782966,8.250587987591789,0,0,0,-1027.535465471253,0,2,2,2019,9,0,37,0,1,1,1,13.2923650534213,13.2923650534213,0,0,0,0,0,1,1,0,2.814632005889639,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,988,89238.57050287235,-126658.7664287382,0,0,1820.932080457533 -6972,8638,15681,-9,15678,15679,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1048.448496519371,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.841849915488574,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,64,95890.61284899295,0,0,0,-349.2091684140175 -6973,8639,15682,15683,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.162066287319302,8.110532930635651,8,1,-71.02664476625299,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.030371299158804,8.118434868236498,60.05,42.65,47.08,43.23,6.666666666666667,1,1,0,0,0,5,4,1,281.5,1187828.18557637,1066571.980752105,278343.1394627715,0,3020.23092869077 -6973,8639,15683,15682,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.809871487291651,7.002688863411565,8,-1,-43.20701904630937,0,2,3,2019,13,2,0,0,4,2,0,0,0,1,0,5.477131694899001,0,0,1,1,0,0,6.917365415077485,47.08,43.23,60.05,42.65,8.333333333333334,1,1,0,0,0,5,4,1,281.5,1187828.18557637,1066571.980752105,278343.1394627715,0,3020.23092869077 -6974,8640,15684,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.9970580291911,8.89757135752671,0,0,-934.0358478830307,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.314227690340017,8.815832410540128,60.12,54.8,-9,-9,0,1,1,0,0,7,9,5,1,143,1898469.813170056,1459537.616812499,404739.0445110934,0,5283.165037568864 -6975,8641,15685,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.206618893001584,8.3225479701519,0,0,0,-952.6958221375073,0,3,2,2019,6,0,50,45,1,0,0,8.450944966866338,8.450944966866338,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,552,263653.6108955878,207604.1848606116,0,0,1494.4618242525 -6976,8642,15686,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,7.052367594340477,6.527772566256473,0,0,-876.6789875534064,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.614099123805855,59.86,48.06,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,202,98785.65833718833,159072.0406459867,152056.326699267,0,817.0107914244885 -6977,8643,15687,15688,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.072177108146716,9.470912487546162,8.551969578078793,7,4,132.794731837512,0,-9,-9,2019,9,0,36,40,1,0,0,28.25144407267617,28.25144407267617,0,0,0,0,0,0,0,0,2.511481690430292,9.224688908845645,54,54,69.06,24.59,8,1,1,0,0,1,9,5,1,587.5,411857.6383259224,86235.82198522869,425449.8524726913,64177.54192451594,7571.587165179639 -6977,8643,15688,15687,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0989509865739,7.801591039585362,0,35,-4,20.55550801375214,0,3,3,2019,7,2,30,30,1,2,0,11.3263069889726,11.3263069889726,0,0,0,0,2,0,0,0,4.748585715613864,0,69.06,24.59,54,54,8.333333333333334,1,1,0,0,8,9,5,1,587.5,411857.6383259224,86235.82198522869,425449.8524726913,64177.54192451594,7571.587165179639 -6977,8644,15689,-9,15688,15687,1,1,26,0,0,0,2,2,-9,0,4,7.447166253132976,7.450021611475069,0,0,0,-1095.490358070656,0,2,2,2019,10,0,35,38,1,1,1,5.421434527556754,5.421434527556754,0,0,0,0,0,0,0,0,.6499713263261964,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,89,-129771.712597519,0,0,0,854.9821389778468 -6977,8645,15690,-9,15688,15687,1,1,23,0,0,0,2,2,-9,0,4,7.930277701253718,8.064073194968991,0,0,0,-984.2459037802747,0,2,2,2019,10,0,55,55,1,1,1,6.603876207018404,6.603876207018404,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,4,1,1254,87675.16153161622,0,0,0,1472.201338194602 -6978,8646,15691,15692,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,7.963628511176465,7.631494794452411,6,6,10.14852976824529,-9,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.019595461404439,51.24,58.84,60.03,50.88,8.333333333333334,1,1,0,0,9,2,5,1,1090.5,73978.87895638369,59353.10091040428,196609.6772748524,96681.40001393495,4199.755930506501 -6978,8646,15692,15691,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.840816778933529,9.205773608951692,0,28,-6,-5.023212225302498,0,1,1,2019,9,1,50,60,1,1,0,16.84035698801316,16.84035698801316,0,0,0,0,0,0,0,0,0,0,60.03,50.88,51.24,58.84,8.333333333333334,1,1,0,0,9,2,5,1,1090.5,73978.87895638369,59353.10091040428,196609.6772748524,96681.40001393495,4199.755930506501 -6979,8647,15693,15694,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.843182960068134,8.722643957955876,0,44,1,-107.1230351675905,0,3,3,2019,10,0,40,41,1,0,0,20.02670640614678,20.02670640614678,0,0,0,0,0,0,0,0,0,0,59.63,41.44,55.79,52.62,6.666666666666667,1,1,0,0,10,13,5,1,1066.5,660761.1599817183,590892.5160090665,194286.7152934836,22451.65812176995,2739.637487597751 -6979,8647,15694,15693,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.294983573399229,6.193894213833923,44,-1,78.91901727163675,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,6.023905983799651,55.79,52.62,59.63,41.44,8.333333333333334,1,1,0,0,6,13,5,1,1066.5,660761.1599817183,590892.5160090665,194286.7152934836,22451.65812176995,2739.637487597751 -6980,8648,15695,15696,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,46,-8,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,34.28,50.66,54.82,46.44,5,1,1,0,0,0,13,1,0,938,201153.4743929696,0,317140.4040829762,0,1952.755431501255 -6980,8648,15696,15695,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,46,8,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.82,46.44,34.28,50.66,6.666666666666667,1,1,0,0,0,13,1,0,938,201153.4743929696,0,317140.4040829762,0,1952.755431501255 -6981,8649,15697,-9,15700,15699,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.53787505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,256.5,844664.0643797518,357915.3633672962,268845.1388216955,156438.9914365023,3847.426586675232 -6981,8649,15698,-9,15700,15699,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.5148097017427,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,256.5,844664.0643797518,357915.3633672962,268845.1388216955,156438.9914365023,3847.426586675232 -6981,8649,15699,15700,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.495419976790334,8.225304832199763,0,8,3,24.49069064329625,0,-9,-9,2019,8,0,44,44,1,0,0,14.74824125379308,14.74824125379308,0,0,0,0,7,1,1,0,0,0,51.83,57.2,35.91,63.19,8.333333333333334,1,1,0,0,11,12,5,1,256.5,844664.0643797518,357915.3633672962,268845.1388216955,156438.9914365023,3847.426586675232 -6981,8649,15700,15699,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.698689181863804,8.846448524004087,0,8,-3,-18.41975139909857,0,2,2,2019,13,3,40,35,1,3,0,18.50315469076311,18.50315469076311,0,0,0,0,0,1,1,0,0,0,35.91,63.19,51.83,57.2,6.666666666666667,1,1,0,0,11,12,5,1,256.5,844664.0643797518,357915.3633672962,268845.1388216955,156438.9914365023,3847.426586675232 -6982,8650,15701,15702,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.590967933993468,8.646027773979675,45,1,-34.43763929346876,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.7242660591783,8.445365533165658,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,846,1853714.024208575,1125062.649297888,514360.5925786347,0,3481.459455504477 -6982,8650,15702,15701,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,-1,-34.1079288281223,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,10,1,1,0,0,0,7,4,1,846,1853714.024208575,1125062.649297888,514360.5925786347,0,3481.459455504477 -6983,8651,15703,15704,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,8.189193810318002,8.217433511546265,48,5,8.493881101876715,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.6727128877022915,8.191109645370139,54.2,39.09,38.9,48.23,3.333333333333333,1,1,0,0,10,7,3,1,393.5,612687.2942552537,345367.45893275,291108.4960137746,0,2844.736502008006 -6983,8651,15704,15703,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.803711622912603,4.837955515062441,48,-5,-34.08411517831256,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,71.5,1,1,0,1.056044915575004,5.010892008645855,38.9,48.23,54.2,39.09,5,1,1,0,0,1,7,3,1,393.5,612687.2942552537,345367.45893275,291108.4960137746,0,2844.736502008006 -6983,8652,15705,-9,15704,15703,1,1,38,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1058.032304166131,0,2,1,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,42,42,-9,-9,3.333333333333333,1,1,1,1,9,7,1,1,454,275534.2523868377,-46335.56458979856,0,0,0 -6984,8653,15706,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.503822038674873,5.802480061706736,0,0,-901.8362648670737,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.678457563104432,5.572667885227455,55.86,43.17,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1276,399768.9159933268,112942.6343520326,187440.1735698601,0,525.6667200976196 -6985,8654,15707,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.831903385548708,8.692745033224476,0,0,0,-1071.284535894224,0,3,3,2019,22,10,38,38,1,10,0,19.64074434969225,19.64074434969225,0,0,0,0,0,0,0,0,0,0,34.81,46.68,-9,-9,3.333333333333333,1,1,0,1,13,12,5,1,398,618443.4736499279,619426.6915621787,131512.40406215,0,2085.712312039786 -6986,8655,15708,15709,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.139618857103127,9.199392239329235,0,4,1,-4.76470133089502,0,-9,-9,2019,11,0,42,30,1,2,0,25.76670512006378,25.76670512006378,0,0,0,0,0,0,0,0,0,0,49,56,50,57,7,1,1,0,0,4,8,5,1,243,368269.3917927826,83284.84053731993,563480.6871169852,385152.8010947426,7184.504245103808 -6986,8655,15709,15708,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.10662740925987,9.297421635526669,0,4,-1,79.39544387333818,0,1,1,2019,10,0,48,51,1,1,0,27.36351300680215,27.36351300680215,0,0,0,0,0,0,0,0,0,0,50,57,49,56,7,1,1,0,0,10,8,5,1,243,368269.3917927826,83284.84053731993,563480.6871169852,385152.8010947426,7184.504245103808 -6987,8656,15710,15711,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,8.332626256015333,8.616758046924867,7.176524264883364,8,12,-95.71498588297993,0,-9,-9,2019,7,0,51,45,1,0,0,10.77846329420684,10.77846329420684,0,0,0,0,0,0,0,0,0,7.221188397833232,57.57,57.51,62.39,56.71,8.333333333333334,1,1,0,0,12,10,5,1,399,2578311.457485668,1902614.273723435,555328.7307222661,0,4284.395189076178 -6987,8656,15711,15710,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.106417338042759,9.266132861456663,0,8,-12,-50.12894466247275,0,-9,-9,2019,4,0,45,60,1,0,0,18.13519066934771,18.13519066934771,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.57,57.51,10,1,1,0,0,12,10,5,1,399,2578311.457485668,1902614.273723435,555328.7307222661,0,4284.395189076178 -6988,8657,15712,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.038238782888431,7.970113403800877,0,0,0,-1089.945594760915,0,2,-9,2019,19,7,43,47,1,7,0,10.37953630282101,10.37953630282101,0,0,0,0,0,0,0,0,0,0,25.56,37.28,-9,-9,3.333333333333333,1,1,0,1,11,9,4,1,874,62686.73043586395,0,0,0,1221.931498667207 -6989,8658,15713,15714,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,55,-1,-74.86751179303343,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.211977193695252,0,53.97,35.14,54.87,46.41,5,1,1,0,0,0,7,2,1,978,657633.1494826237,209434.1022940208,499300.7612678549,0,1170.495775192135 -6989,8658,15714,15713,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.092090536310919,7.027650701041436,55,1,41.89395336807709,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.881434275808148,54.87,46.41,53.97,35.14,6.666666666666667,1,1,0,0,0,7,2,1,978,657633.1494826237,209434.1022940208,499300.7612678549,0,1170.495775192135 -6990,8659,15715,15716,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.639647990566742,7.518526079861449,0,3,-1,-53.34549297951465,0,-9,-9,2019,6,0,30,30,1,0,0,7.806661030030513,7.806661030030513,0,0,0,0,0,1,1,0,0,0,51.83,57.2,43.71,56.91,8.333333333333334,1,1,0,0,10,1,5,0,930,26573.49473180183,0,0,0,3044.465884979383 -6990,8659,15716,15715,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.62136696134548,8.781131410869639,0,3,1,61.65510466415255,0,-9,-9,2019,9,0,52,40,1,0,0,10.42697097257478,10.42697097257478,0,0,0,0,0,1,1,0,0,0,43.71,56.91,51.83,57.2,5,1,1,0,0,10,1,5,0,930,26573.49473180183,0,0,0,3044.465884979383 -6991,8660,15717,15718,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,7.106158051836155,6.947396426229886,0,6,0,42.56879784709798,0,2,2,2019,10,0,30,35,1,0,0,3.603490568669112,3.603490568669112,0,0,0,0,0,0,0,0,.2880628849515133,0,48.71,61.53,56.25,52.62,10,1,1,0,0,5,5,4,1,695,10824.44917209015,38599.65650205601,121861.2398595736,112816.9263139723,2265.939437380178 -6991,8660,15718,15717,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.460974380174445,8.242782848938802,0,8,0,-83.78145695799829,0,2,1,2019,5,0,36,36,1,0,0,12.87166102218482,12.87166102218482,0,0,0,0,0,0,0,0,2.062762488566356,0,56.25,52.62,48.71,61.53,8.333333333333334,1,1,0,0,9,5,4,1,695,10824.44917209015,38599.65650205601,121861.2398595736,112816.9263139723,2265.939437380178 -6992,8661,15719,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,9.159442031620815,9.071981850147166,0,0,-1029.145814288212,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.71054148380672,8.860158021571097,60.12,54.8,-9,-9,10,1,1,0,0,0,9,5,1,245,3076397.53114809,1489303.01188041,663256.2368126254,0,5576.891398077621 -6993,8662,15720,15721,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.72320100795958,6.263962083860424,5,0,-32.23052919813476,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9428354130181682,6.423246388349801,54.69,57.47,51,47,8.333333333333334,1,1,0,0,7,4,2,1,937.5,351173.8260530991,188912.6447362538,103470.6624827497,0,673.5775448058025 -6993,8662,15721,15720,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,49,0,1.183814464352981,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.1159464524407603,0,51,47,54.69,57.47,7,1,1,0,0,3,4,2,1,937.5,351173.8260530991,188912.6447362538,103470.6624827497,0,673.5775448058025 -6994,8663,15722,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.392918762096524,7.262706338497308,0,0,0,-1002.799918130165,0,3,3,2019,7,0,22,22,1,0,0,7.265112015356083,7.265112015356083,0,0,0,0,0,1,0,1,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,1,3,2,3,0,105,631020.4997587035,342356.6661508175,0,0,727.6182567873112 -6994,8664,15723,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,0,0,-999.3172656931714,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,31.93,58.41,-9,-9,6.666666666666667,1,1,1,1,1,2,2,0,896,-90011.42889602043,0,0,0,65.48101675806475 -6995,8665,15724,15725,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-5,-29.22394373141097,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.823266877575628,0,59.15,38.94,46.63,59.72,10,1,1,0,0,0,7,3,1,6408.5,885725.0076653375,304509.7382781861,535069.9103083833,0,3212.948496082391 -6995,8665,15725,15724,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.936327124588443,8.322411970244101,7,5,-136.5250314616401,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.809847081299298,7.927032637930552,46.63,59.72,59.15,38.94,8.333333333333334,1,1,0,0,0,7,3,1,6408.5,885725.0076653375,304509.7382781861,535069.9103083833,0,3212.948496082391 -6996,8666,15726,-9,15728,15727,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.754029532412,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,665.6666666666666,110874.3795096949,0,144187.5910376534,0,1600.492405633343 -6996,8666,15727,15728,-9,-9,1,1,25,1,1,0,2,2,-9,0,3,8.100075914213209,8.189449205207444,0,1,-4,33.54528720137502,-9,-9,-9,2019,7,0,40,0,1,0,0,8.549661404161053,8.549661404161053,0,0,0,0,0,1,1,0,0,0,40.74,51.69,23.86,57.85,3.333333333333333,2,3,0,0,1,6,3,1,665.6666666666666,110874.3795096949,0,144187.5910376534,0,1600.492405633343 -6996,8666,15728,15727,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,0,0,0,1,4,-55.24361003052577,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,57.85,40.74,51.69,8.333333333333334,2,3,0,0,3,6,3,1,665.6666666666666,110874.3795096949,0,144187.5910376534,0,1600.492405633343 -6997,8667,15729,15730,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,7.765716845075247,9.118437331894565,8.530087406084698,44,3,103.9234849549964,0,2,2,2019,11,1,46,45,1,1,0,6.804867748468574,6.804867748468574,0,0,0,0,0,0,0,0,8.83550606332083,4.888632985114362,59.32,25.72,53.75,54.92,6.666666666666667,1,1,0,0,12,9,5,1,487,1589195.254311442,127284.6281664853,975799.6709647367,0,5559.762156568877 -6997,8667,15730,15729,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.285568633345438,8.349735748002992,4.867531328105687,44,-3,-118.2431388350645,0,2,2,2019,4,0,14,20,1,0,0,27.58552226640965,27.58552226640965,0,0,0,0,0,0,0,0,0,5.087619824624935,53.75,54.92,59.32,25.72,8.333333333333334,1,1,0,0,12,9,5,1,487,1589195.254311442,127284.6281664853,975799.6709647367,0,5559.762156568877 -6998,8668,15731,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.292563414113927,6.480071608965873,0,0,-951.6744320616448,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,.6120018313384756,6.941277282629476,23.1731206723675,0,1,1,0,0,6.256601675986784,27.24,23.07,-9,-9,10,1,1,0,0,0,8,2,1,334,289659.5367057631,14500.37233312038,0,0,1598.742047469868 -6999,8669,15732,15733,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,5.154150505073098,5.130629466053625,0,8,-2,32.79625365288349,0,3,3,2019,9,0,55,60,1,0,0,.4442089545104957,.4442089545104957,0,0,0,0,0,1,1,0,0,0,51.41,56.15,62.49,55.09,5,3,4,0,0,9,12,3,1,478.5,483278.2461371562,275415.9195196472,151675.110792381,0,2291.23953840258 -6999,8669,15733,15732,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.727510533511968,8.7263730148203,0,8,2,137.1362018334576,0,2,2,2019,9,0,36,35,1,0,0,16.67760131241146,16.67760131241146,0,0,0,0,0,1,1,0,.9892803526631981,0,62.49,55.09,51.41,56.15,6.666666666666667,3,4,0,1,9,12,3,1,478.5,483278.2461371562,275415.9195196472,151675.110792381,0,2291.23953840258 -6999,8669,15734,-9,15733,15732,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-946.2480786037273,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,5,3,4,0,0,0,12,3,1,478.5,483278.2461371562,275415.9195196472,151675.110792381,0,2291.23953840258 -6999,8669,15735,-9,15733,15732,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1015.898992835634,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,12,3,1,478.5,483278.2461371562,275415.9195196472,151675.110792381,0,2291.23953840258 -7000,8670,15736,-9,15737,15738,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-943.6751623627874,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,2,7,3,1,637.3333333333334,63807.52052741923,58188.7005033597,0,0,1264.175753992726 -7000,8670,15737,15738,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.882642109398994,7.827024536149172,0,7,-2,122.4853357810632,0,3,3,2019,12,0,24,24,1,0,0,14.19382877889502,14.19382877889502,0,0,0,0,0,1,1,0,0,0,44.19,58.01,59.71,50.89,8.333333333333334,1,1,0,0,8,7,3,1,637.3333333333334,63807.52052741923,58188.7005033597,0,0,1264.175753992726 -7000,8670,15738,15737,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,5.941763148022137,5.975962352832599,0,7,2,155.7336618902269,0,2,-9,2019,10,0,5,0,1,0,0,9.245070490594268,9.245070490594268,0,0,0,0,0,1,1,0,0,0,59.71,50.89,44.19,58.01,8.333333333333334,1,1,0,0,0,7,3,1,637.3333333333334,63807.52052741923,58188.7005033597,0,0,1264.175753992726 -7000,8671,15739,-9,15737,15738,1,1,18,0,0,0,2,2,-9,0,3,6.256195179632196,6.677145094821043,0,0,0,-1018.178883227477,0,2,2,2019,8,0,15,0,1,0,1,4.106574762571504,4.106574762571504,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,1079,-2936.791295180636,0,0,0,-481.0367874477293 -7001,8672,15740,15741,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.294412022753219,9.491458374918162,5.101414000522209,8,-6,64.95810110624222,-9,2,2,2019,8,2,80,0,1,2,0,18.04632434746344,18.04632434746344,0,0,0,0,0,0,0,0,5.088112453619448,5.079399653537772,38.04,56.72,39.68,58.52,3.333333333333333,1,1,0,0,12,8,5,0,402,61393.96223007304,0,0,0,3782.389665845996 -7001,8672,15741,15740,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,1.256443340776887,.7871936281283505,0,8,6,41.72999257243353,0,2,2,2019,8,1,20,25,1,1,0,.0163471861090012,.0163471861090012,0,0,0,0,0,0,0,0,.6768024923471366,0,39.68,58.52,38.04,56.72,6.666666666666667,1,1,0,0,12,8,5,0,402,61393.96223007304,0,0,0,3782.389665845996 -7002,8673,15742,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.091827130651545,8.146115866615547,0,0,0,-1046.652443931141,0,3,3,2019,11,0,35,35,1,0,0,13.59201343653569,13.59201343653569,0,0,0,0,0,1,1,0,0,0,36.92,51.87,-9,-9,5,3,4,0,0,2,8,4,0,1620,112920.0227291627,106560.9146079603,0,0,1641.403861663727 -7002,8673,15743,-9,15742,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.310875157934,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,1620,112920.0227291627,106560.9146079603,0,0,1641.403861663727 -7003,8674,15744,15746,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,7.305366117229027,7.253427570645162,0,5,-2,-129.0674551786332,0,2,3,2019,21,8,30,40,1,8,0,6.3059317019151,6.3059317019151,0,0,0,0,0,1,1,0,0,0,25.37,63.98,54.85,54.62,8.333333333333334,1,1,0,1,8,10,4,0,651.6666666666666,300620.1014843196,349922.5170440347,128859.1438942024,112141.7884330099,2165.69830971499 -7003,8674,15745,-9,15744,15746,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.577350355332,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,0,651.6666666666666,300620.1014843196,349922.5170440347,128859.1438942024,112141.7884330099,2165.69830971499 -7003,8674,15746,15744,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.35108283366476,8.395141840013158,0,5,2,97.19121499904057,0,-9,-9,2019,9,1,73,48,1,1,0,6.939011273115213,6.939011273115213,0,0,0,0,0,1,1,0,0,0,54.85,54.62,25.37,63.98,8.333333333333334,1,1,0,0,4,10,4,0,651.6666666666666,300620.1014843196,349922.5170440347,128859.1438942024,112141.7884330099,2165.69830971499 -7004,8675,15747,15748,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.817904380273241,9.292956469437472,7.778831481670232,31,1,106.9742436883275,0,2,3,2019,6,0,51,43,1,0,0,17.85235019125495,17.85235019125495,0,0,0,0,2,1,1,0,4.79575517521813,8.004119940177013,57.16,56.15,54.74,51.69,8.333333333333334,1,1,0,0,10,2,5,1,529.5,777050.1938881604,406483.9164739343,111856.2656280355,0,4796.804792379457 -7004,8675,15748,15747,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.013796504827975,6.649763681724598,31,-1,-79.20937883996407,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,6.4811072181795,7.13133432135102,54.74,51.69,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,529.5,777050.1938881604,406483.9164739343,111856.2656280355,0,4796.804792379457 -7004,8676,15749,-9,15748,15747,1,1,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-939.6720894528055,0,1,1,2019,12,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,39.78,54.79,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1478,0,0,0,0,497.5953136815111 -7004,8677,15750,-9,15748,15747,1,0,20,0,0,0,2,2,1,0,3,7.179363196241207,7.051543325989171,0,0,0,-1059.838087941399,-9,1,1,2019,8,0,20,0,1,0,1,7.788265754676989,7.788265754676989,0,0,0,0,0,1,1,0,0,0,45.8,47.83,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,1633,92517.04366550958,-9897.33272567669,0,0,625.1518026880403 -7005,8678,15751,15752,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.993341685899772,7.815285855116733,0,6,2,111.0332411300838,0,2,3,2019,5,0,40,40,1,0,0,6.68006566982401,6.68006566982401,0,0,0,0,0,0,0,0,0,0,56.33,51.02,45.81,61.51,8.333333333333334,1,1,0,0,7,12,3,0,896.5,593702.3849599566,504856.9896335272,0,0,1683.547952065236 -7005,8678,15752,15751,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,7.126049545488137,7.244871450475712,0,6,-2,82.18776357692742,0,3,3,2019,10,0,20,20,1,0,0,6.069654287624169,6.069654287624169,0,0,0,0,0,0,0,0,0,0,45.81,61.51,56.33,51.02,1.666666666666667,1,1,0,1,7,12,3,0,896.5,593702.3849599566,504856.9896335272,0,0,1683.547952065236 -7006,8679,15753,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.758184771912855,6.214378086244457,0,0,-1107.69677443401,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.106813642820595,6.150302565736688,49.53,51.26,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,142,364803.5656964882,88382.68744108637,146976.7868245935,0,725.0525913625477 -7007,8680,15754,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.314187518585,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.86,44.23,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1266,-238070.8471062346,0,0,0,1967.07343013811 -7008,8681,15755,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.935096622835402,8.079109405820805,0,0,-955.4443274860789,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.234062497254531,7.605694864180456,58.15,52.91,-9,-9,10,1,1,0,0,4,10,3,1,2622,818533.7447785577,490190.2470459407,360430.8388966417,0,2062.238572247948 -7009,8682,15756,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.278485634709932,7.211832567006522,0,0,0,-991.8694286323304,0,2,2,2019,14,2,30,20,1,2,0,5.217137894178022,5.217137894178022,0,0,0,0,0,0,0,0,0,0,46.79,41.89,-9,-9,8.333333333333334,1,1,0,0,6,1,3,1,248,-144341.4404880787,-22701.94065559574,0,0,501.2562941397611 -7010,8683,15757,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.475143230878688,8.888945582586484,0,0,0,-960.8654908146935,-9,-9,-9,2019,7,0,45,0,1,0,0,16.77933774189258,16.77933774189258,0,0,0,0,0,0,0,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,1027,1101611.47526814,1075668.245977568,156902.7091659005,58028.86460288781,3077.80141501009 -7011,8684,15758,15759,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.581284907136439,8.996906276689758,6.540838966027581,34,3,7.454704585957386,0,-9,-9,2019,8,0,45,44,1,0,0,13.43905256621223,13.43905256621223,0,0,0,0,2,0,0,0,0,6.951125482264379,48.87,58.55,44.47,57.73,3.333333333333333,1,1,0,0,10,5,5,1,656,719854.7148602285,753472.9490319415,125859.3701462461,97182.56460875366,2976.341721573287 -7011,8684,15759,15758,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.631481411925309,6.951945196002674,0,34,-3,-63.09199904084207,0,2,2,2019,15,4,19,20,1,4,0,10.73791065715779,10.73791065715779,0,0,0,0,14.5,0,0,0,6.362511846858583,0,44.47,57.73,48.87,58.55,3.333333333333333,1,1,0,0,10,5,5,1,656,719854.7148602285,753472.9490319415,125859.3701462461,97182.56460875366,2976.341721573287 -7011,8685,15760,-9,15759,15758,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.240521018342,-9,2,2,2019,25,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1.005415395911393,0,24.85,67.03,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,1034,-112089.9899696965,0,0,0,-210.0486052082749 -7012,8686,15761,-9,15762,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.0263893516213,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,442.6666666666667,60468.27903928206,0,0,0,730.2239962889156 -7012,8686,15762,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.001279833391989,6.69755784270976,0,0,0,-1017.870037193865,0,2,3,2019,12,0,35,37,1,0,0,3.855005475326337,3.855005475326337,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,442.6666666666667,60468.27903928206,0,0,0,730.2239962889156 -7012,8686,15763,-9,15762,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.5775247607259,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,442.6666666666667,60468.27903928206,0,0,0,730.2239962889156 -7013,8687,15764,15765,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.272948904524167,9.158606556286044,0,35,0,-28.52830490446151,-9,3,3,2019,12,0,45,0,1,0,0,21.69205956483841,21.69205956483841,0,0,0,0,0,0,0,0,0,0,50.01,52.64,40.23,61.31,6.666666666666667,1,1,0,0,10,9,5,1,1779.5,1255792.115814428,658327.6746162801,561722.1900736695,75784.10859474077,5052.966499864733 -7013,8687,15765,15764,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.617611729087169,8.658850290163569,4.971758606511434,34,0,24.39648321632731,0,2,3,2019,20,8,38,40,1,8,0,15.05613157948978,15.05613157948978,0,0,0,0,0,0,0,0,5.510567339794481,5.465364939206186,40.23,61.31,50.01,52.64,5,1,1,0,0,11,9,5,1,1779.5,1255792.115814428,658327.6746162801,561722.1900736695,75784.10859474077,5052.966499864733 -7014,8688,15766,15767,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,6,-3,-109.9153129632144,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.6,52.88,10,1,1,0,0,0,11,3,1,538.5,697651.0699862893,390452.4931685588,230650.0572807828,0,1865.531950544967 -7014,8688,15767,15766,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.493395563127946,7.849233475734434,6,3,95.07539627385378,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.930548955020657,7.908827601533701,52.6,52.88,57.33,53.46,10,1,1,0,0,0,11,3,1,538.5,697651.0699862893,390452.4931685588,230650.0572807828,0,1865.531950544967 -7015,8689,15768,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,4.20999524361677,4.347204680045852,0,0,0,-1238.371810123541,0,-9,-9,2019,2,0,48,0,1,0,0,.1611777481442371,.1611777481442371,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,2241,87564.2544507034,0,0,0,412.2615805218358 -7016,8690,15769,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.795462226546383,7.54559873765687,0,0,-1077.091027779,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.67168243626999,7.649373865136448,48.43,47.89,-9,-9,8.333333333333334,1,1,0,1,3,7,3,0,1769,857142.1281786396,223525.8925172607,271210.8581664937,0,1909.077327462424 -7017,8691,15770,15771,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.461170098694998,8.332295528656442,0,10,-2,30.26698260420229,0,3,2,2019,9,0,38,40,1,0,0,13.63156199363457,13.63156199363457,0,0,0,0,0,1,1,0,0,0,48.81,59.91,54.79,55.86,6.666666666666667,1,1,0,0,10,12,5,1,335,127613.7638557142,35182.21886186537,251785.4318922129,169117.9954807646,4256.076683050183 -7017,8691,15771,15770,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,8.951549538020327,9.312079978478662,0,10,2,-238.6638566025399,0,2,2,2019,11,1,28,28,1,1,0,30.42367083671769,30.42367083671769,0,0,0,0,0,1,1,0,5.197427299965894,0,54.79,55.86,48.81,59.91,6.666666666666667,1,1,0,0,12,12,5,1,335,127613.7638557142,35182.21886186537,251785.4318922129,169117.9954807646,4256.076683050183 -7017,8691,15772,-9,15771,15770,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-920.4820281359965,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,335,127613.7638557142,35182.21886186537,251785.4318922129,169117.9954807646,4256.076683050183 -7018,8692,15773,15776,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.38272415434255,7.859316512080757,0,20,-3,157.7802192113332,0,2,2,2019,7,0,24,21,1,0,0,8.264372818986619,8.264372818986619,0,0,0,0,0,1,1,0,6.75024468108712,0,57.16,56.15,58.5,44.67,10,1,1,0,0,8,4,4,1,363,98453.2599137158,80954.8975980695,234269.9784813422,114010.9510174583,3103.41617280157 -7018,8692,15774,-9,15773,15776,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.4536691094285,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,4,1,363,98453.2599137158,80954.8975980695,234269.9784813422,114010.9510174583,3103.41617280157 -7018,8692,15775,-9,15773,15776,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.5100744960312,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,4,1,363,98453.2599137158,80954.8975980695,234269.9784813422,114010.9510174583,3103.41617280157 -7018,8692,15776,15773,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.618637763050696,8.700346094860834,0,18,3,34.95803847515914,0,2,2,2019,10,0,45,44,1,0,0,15.89506479454221,15.89506479454221,0,0,0,0,0,1,1,0,2.200498169319469,0,58.5,44.67,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,363,98453.2599137158,80954.8975980695,234269.9784813422,114010.9510174583,3103.41617280157 -7019,8693,15777,15778,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,4,-3,14.76749695637475,0,-9,-9,2019,13,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,60.68,38.18,65.09,8.333333333333334,1,1,0,0,4,2,4,1,385,65127.3325119959,133553.249904819,133734.2289760783,107661.4953728903,1640.999450219985 -7019,8693,15778,15777,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.733383897426149,8.448376502068669,0,4,3,129.0255178488583,0,2,2,2019,10,1,40,39,1,1,0,15.42774498151748,15.42774498151748,0,0,0,0,0,0,0,0,0,0,38.18,65.09,41.11,60.68,6.666666666666667,1,1,0,0,8,2,4,1,385,65127.3325119959,133553.249904819,133734.2289760783,107661.4953728903,1640.999450219985 -7020,8694,15779,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.739071156723561,8.775866206273587,4.147202837106597,0,0,-920.7234837654219,0,3,3,2019,11,0,49,43,1,0,0,13.10321700754776,13.10321700754776,0,0,0,0,7,1,1,0,4.348237714736983,4.750270975457275,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,1096,1309656.870545138,1273450.40228217,113592.4955080517,83245.29546386862,2349.686007860947 -7021,8695,15780,15781,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.07284446901572,7.311230137416022,56,-1,-127.9603584055106,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.154572154463808,55.12,42.1,45.91,59.89,8.333333333333334,1,1,0,0,0,9,4,1,617,993602.4682881911,357975.8151463138,436353.8182304288,0,3388.722084711063 -7021,8695,15781,15780,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.212226798643595,7.983268892281024,56,1,-244.5577439978989,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.858432317134267,8.166931001777581,45.91,59.89,55.12,42.1,8.333333333333334,1,1,0,0,0,9,4,1,617,993602.4682881911,357975.8151463138,436353.8182304288,0,3388.722084711063 -7022,8696,15782,-9,15784,15783,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.8845179827064,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,1167.666666666667,36520.67156256003,42307.00823563682,124770.4588841065,86396.75406333873,2911.408820702999 -7022,8696,15783,15784,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,7.902435835884107,7.924033819483808,0,5,2,-41.69262357271022,0,-9,-9,2019,9,0,35,47,1,0,0,10.13228442250416,10.13228442250416,0,0,0,0,0,1,1,0,0,0,45.04,49.47,36.76,58.96,8.333333333333334,1,1,0,0,3,11,4,1,1167.666666666667,36520.67156256003,42307.00823563682,124770.4588841065,86396.75406333873,2911.408820702999 -7022,8696,15784,15783,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.639369206527583,8.615635484926726,0,5,-2,95.30045339704282,0,3,3,2019,17,5,49,14,1,5,0,10.3878074945597,10.3878074945597,0,0,0,0,0,1,1,0,0,0,36.76,58.96,45.04,49.47,6.666666666666667,1,1,0,0,10,11,4,1,1167.666666666667,36520.67156256003,42307.00823563682,124770.4588841065,86396.75406333873,2911.408820702999 -7023,8697,15785,-9,15787,15789,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-956.9127640664871,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,1,2,0,1011.8,-35227.6860808804,75101.01069236797,104989.1512257746,89913.15162939169,1857.040350769902 -7023,8697,15786,-9,15787,15789,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.202006249259,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,2,0,1011.8,-35227.6860808804,75101.01069236797,104989.1512257746,89913.15162939169,1857.040350769902 -7023,8697,15787,15789,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.768307880895331,7.572011501169722,0,8,-1,-59.66286128628233,0,2,2,2019,6,0,25,40,1,0,0,13.541154324627,13.541154324627,0,0,0,0,0,1,1,0,0,0,59.71,48.06,44.01,42.29,8.333333333333334,1,1,0,0,2,1,2,0,1011.8,-35227.6860808804,75101.01069236797,104989.1512257746,89913.15162939169,1857.040350769902 -7023,8697,15788,-9,15787,15789,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1028.495393802522,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,2,0,1011.8,-35227.6860808804,75101.01069236797,104989.1512257746,89913.15162939169,1857.040350769902 -7023,8697,15789,15787,-9,-9,1,1,35,0,3,0,2,2,-9,0,2,0,0,0,8,1,-39.39523034692755,0,2,2,2019,12,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.01,42.29,59.71,48.06,6.666666666666667,1,1,1,0,4,1,2,0,1011.8,-35227.6860808804,75101.01069236797,104989.1512257746,89913.15162939169,1857.040350769902 -7024,8698,15790,15791,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.369670140996497,6.549337730479715,0,6,2,-1.141591087799273,0,3,3,2019,8,0,12,14,1,0,0,5.382116841801827,5.382116841801827,0,0,0,0,7,0,0,0,2.852848649457839,0,37.42,60.49,57.06,57.76,8.333333333333334,1,1,0,0,7,13,3,1,1397,1132811.477575429,316555.6921835199,531955.2422339555,0,1966.224389757339 -7024,8698,15791,15790,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,7.99074602809979,8.093511857445819,0,6,-2,104.234560048881,0,2,2,2019,5,0,38,37,1,0,0,7.575408181711011,7.575408181711011,0,0,0,0,0,0,0,0,0,0,57.06,57.76,37.42,60.49,8.333333333333334,1,1,0,0,7,13,3,1,1397,1132811.477575429,316555.6921835199,531955.2422339555,0,1966.224389757339 -7025,8699,15792,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.681068223904651,7.992829637842488,0,0,-1027.928866241609,0,1,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.100740837576009,7.845987605642406,55.91,41.93,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,39,819009.0504574309,498015.2607524244,157305.4899890533,0,1576.156204980629 -7026,8700,15793,15794,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,10,7,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.41,42.18,35.17,54.01,5,1,1,0,0,0,1,1,0,1527,276242.0033065726,-9769.194508960914,133951.3595605827,0,1601.411598648003 -7026,8700,15794,15793,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,31,-7,0,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,35.17,54.01,52.41,42.18,5,1,1,1,0,0,1,1,0,1527,276242.0033065726,-9769.194508960914,133951.3595605827,0,1601.411598648003 -7027,8701,15795,15796,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.24331372539846,8.487816317890703,0,15,-2,-5.788632943532156,0,3,2,2019,11,1,23,23,1,1,0,14.85146085491616,14.85146085491616,0,0,0,0,0,1,1,0,0,0,59.29,49.68,46.08,57.2,8.333333333333334,1,1,0,0,12,11,4,1,883,-35435.54396267103,-15645.84768895715,234909.7302463654,130440.9660480941,2719.418822812837 -7027,8701,15796,15795,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.791830664256465,8.018764447681495,0,15,2,28.61925749765851,0,2,2,2019,9,0,25,22,1,0,0,13.85359925848819,13.85359925848819,0,0,0,0,0,1,1,0,0,0,46.08,57.2,59.29,49.68,8.333333333333334,1,1,0,0,13,11,4,1,883,-35435.54396267103,-15645.84768895715,234909.7302463654,130440.9660480941,2719.418822812837 -7027,8701,15797,-9,15796,15795,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.7391373166524,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,883,-35435.54396267103,-15645.84768895715,234909.7302463654,130440.9660480941,2719.418822812837 -7027,8701,15798,-9,15796,15795,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1198.668754873603,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,4,1,883,-35435.54396267103,-15645.84768895715,234909.7302463654,130440.9660480941,2719.418822812837 -7028,8702,15799,-9,15800,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.091723917966,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.8470855938947484,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,1579,-1613.619438170106,-41239.64072205487,0,0,1414.039757467774 -7028,8702,15800,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.674043828233194,7.80032826843541,4.325784706530325,0,0,-1039.825358140072,0,2,3,2019,18,7,24,22,1,7,0,11.14793291995167,11.14793291995167,0,0,0,0,0,1,1,0,4.633466581559857,0,33.49,64.26000000000001,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,1579,-1613.619438170106,-41239.64072205487,0,0,1414.039757467774 -7029,8703,15801,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.667970346041579,7.037843892595297,0,0,-1001.960993252361,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.988721803012251,7.24815427834341,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,190,659294.6350734226,338099.5417505361,89451.91932199367,0,2372.782416886908 -7030,8704,15802,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.020250309814706,6.263092178215442,0,0,-940.9766318347441,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,17.97189267377474,0,0,1,1,0,0,6.067682755716004,48.6,19.87,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,749,134664.187062303,-52258.33649737391,104772.0931600934,0,1899.99087148045 -7031,8705,15803,-9,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.014468156209599,8.130745395314269,0,0,0,-1118.169867796052,0,2,2,2019,10,0,40,20,1,1,0,6.821343802700452,6.821343802700452,0,0,0,0,2,0,0,0,0,0,51,57,-9,-9,7,2,3,0,0,6,8,4,0,401,137233.7014378053,-32864.2982311178,0,0,1095.26931301496 -7032,8706,15804,15805,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.673578951484679,8.385179624233153,33,1,117.100127294786,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.000799940248342,8.273953731156917,60.13,49.27,46.15,30.29,8.333333333333334,1,1,0,0,0,5,4,1,644.5,1802438.162453669,1044511.954431281,295429.884578837,0,5030.280211720918 -7032,8706,15805,15804,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.870115291858116,6.765019765215298,33,-1,-72.80453442208844,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,3.778165223425709,0,0,1,1,0,2.739676128907979,6.556702684421034,46.15,30.29,60.13,49.27,6.666666666666667,1,1,0,0,0,5,4,1,644.5,1802438.162453669,1044511.954431281,295429.884578837,0,5030.280211720918 -7033,8707,15806,15808,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.854299945563794,7.871474262301304,0,26,-7,-29.9991941742812,0,2,2,2019,9,0,35,35,1,0,0,7.997320440401136,7.997320440401136,0,0,0,0,0,1,1,0,2.636786896436454,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,788,625685.3845746322,388361.8564271665,271612.5694882032,246877.1706759942,4428.847592140069 -7033,8707,15807,-9,15806,15808,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1077.050399426524,-9,2,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.5985691972117813,0,51.24,58.84,-9,-9,1.666666666666667,1,1,0,0,0,5,4,1,788,625685.3845746322,388361.8564271665,271612.5694882032,246877.1706759942,4428.847592140069 -7033,8707,15808,15806,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.006337540843223,9.271104776526064,0,8,7,-39.92792544062179,0,-9,-9,2019,9,0,44,43,1,0,0,19.90527769305211,19.90527769305211,0,0,0,0,0,1,1,0,1.216816581895421,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,5,4,1,788,625685.3845746322,388361.8564271665,271612.5694882032,246877.1706759942,4428.847592140069 -7033,8707,15809,-9,15806,15808,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.511511642833,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,788,625685.3845746322,388361.8564271665,271612.5694882032,246877.1706759942,4428.847592140069 -7034,8708,15810,15811,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,1,5,7.180515897455992,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.262641580660616,0,0,1,1,0,0,0,47.13,39.5,48.53,58.91,8.333333333333334,1,1,0,0,0,11,2,1,1759,392947.6315313902,371607.339344957,154644.0114073207,0,1619.057763588474 -7034,8708,15811,15810,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.121649351414355,7.117807928261238,1,-5,33.4343653434505,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.311779833566506,48.53,58.91,47.13,39.5,8.333333333333334,1,1,0,0,2,11,2,1,1759,392947.6315313902,371607.339344957,154644.0114073207,0,1619.057763588474 -7035,8709,15812,15813,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.411538615681645,6.372139670561839,45,-5,67.423568277822,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.828247490831548,57.61,43.58,54.96,53.17,8.333333333333334,1,1,0,0,4,12,3,1,347,1314948.398877935,415795.8304324048,377097.3044420482,0,2525.934069896153 -7035,8709,15813,15812,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.368959820013966,7.216068888995977,45,5,-55.81044378825483,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.605445058071498,7.366419880152216,54.96,53.17,57.61,43.58,8.333333333333334,1,1,0,0,0,12,3,1,347,1314948.398877935,415795.8304324048,377097.3044420482,0,2525.934069896153 -7036,8710,15814,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,1,8.233693447990445,8.045610413357322,0,0,0,-995.565623758038,0,-9,-9,2019,33,11,60,60,1,11,0,7.333225631040737,7.333225631040737,0,0,0,0,0,1,1,0,2.049420219018421,0,31.42,36.35,-9,-9,0,1,1,0,1,4,11,4,1,438,-89467.81715003669,18229.79952731984,0,0,2259.192217619091 -7036,8711,15815,15816,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,0,-94.20125962119972,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,10.90596999913719,0,0,1,1,0,0,0,45.07,22.83,47.66,48.38,6.666666666666667,1,1,0,0,0,11,3,1,520,855752.1441154996,579734.8966043114,200606.6880546775,0,2464.804689374931 -7036,8711,15816,15815,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.680479249934637,7.989429935241148,10,0,55.96178899285481,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.711411783299131,7.802846535146677,47.66,48.38,45.07,22.83,8.333333333333334,1,1,0,0,5,11,3,1,520,855752.1441154996,579734.8966043114,200606.6880546775,0,2464.804689374931 -7037,8712,15817,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.59016410271388,8.411040089391756,0,0,0,-970.740630792209,0,2,2,2019,12,4,40,37,1,4,0,16.43863005218687,16.43863005218687,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,6,7,5,1,348,-128841.1676971575,0,0,0,1993.24052329328 -7038,8713,15818,15819,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,7.134197132676824,6.963156413950453,55,-5,-65.89228915101762,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.12487560527814,50.11,27.06,55.36,30.31,5,2,3,0,0,0,8,2,1,1318,1901844.582359099,230386.3106200157,1611482.327043443,0,1572.775935099169 -7038,8713,15819,15818,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,0,0,55,5,-24.38626651485292,0,3,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,55.36,30.31,50.11,27.06,6.666666666666667,2,3,0,0,0,8,2,1,1318,1901844.582359099,230386.3106200157,1611482.327043443,0,1572.775935099169 -7039,8714,15820,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.745383920859108,7.889163623556846,0,0,0,-1068.823889437449,0,-9,-9,2019,12,0,38,37,1,2,0,7.061312788613049,7.061312788613049,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,4,13,3,0,873,136754.7483423467,83851.20878205169,0,0,1466.393486789626 -7040,8715,15821,15822,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.365321505097998,7.479038629088391,0,27,-12,111.9794221223078,0,1,2,2019,11,0,20,19,1,0,0,8.435550306436921,8.435550306436921,0,0,0,0,0,0,0,0,2.663911494671956,0,50.27,44.25,46.56,42.23,5,1,1,0,0,10,5,4,1,453,1725014.43985492,934110.8628162281,566654.63541902,0,2273.773442658609 -7040,8715,15822,15821,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,7.982301949126168,8.029445305706036,6.540098149565628,27,12,-16.66651408860089,0,3,2,2019,13,1,24,38,1,1,0,11.15056327722361,11.15056327722361,0,0,0,0,0,0,0,0,.8153446534658324,6.55847445252282,46.56,42.23,50.27,44.25,5,1,1,0,0,12,5,4,1,453,1725014.43985492,934110.8628162281,566654.63541902,0,2273.773442658609 -7041,8716,15823,15824,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.874688392272549,6.829688623768137,6,2,65.6932333166028,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.099698844961202,43.2,45.18,57.16,56.15,3.333333333333333,1,1,0,0,1,5,3,1,662.5,813301.4632319333,356624.5842775617,281326.3579485376,0,2259.572678476287 -7041,8716,15824,15823,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.036733929129012,6.965679668799752,6,-2,-13.90420430963789,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8545698916470595,7.03731899346704,57.16,56.15,43.2,45.18,8.333333333333334,1,1,0,1,1,5,3,1,662.5,813301.4632319333,356624.5842775617,281326.3579485376,0,2259.572678476287 -7042,8717,15825,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1089.890591146196,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,8.157927563351166,128.0462681021622,0,0,1,1,0,0,0,45.16,32.6,-9,-9,5,1,1,0,0,0,9,1,1,596,121177.6939623206,0,0,0,0 -7042,8718,15826,15827,15825,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.282254239847832,5.283151425297183,6,-5,5.264778701384204,0,3,-9,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,5.093151236721404,5.081729806400515,50.6,51,60.12,54.8,6.666666666666667,1,1,0,0,0,9,2,1,579,353541.2899955799,88830.54931622939,249840.3970637616,0,1087.671209802169 -7042,8718,15827,15826,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,5.381627008393474,4.746136375413777,6,5,60.26603055343727,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.27659807885229,5.243817173434341,60.12,54.8,50.6,51,10,1,1,0,0,0,9,2,1,579,353541.2899955799,88830.54931622939,249840.3970637616,0,1087.671209802169 -7043,8719,15828,15829,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.554118797362236,8.785968790061661,7.119323167196886,9,2,-11.78782615918535,0,1,2,2019,10,1,52,49,1,1,0,9.588499522182952,9.588499522182952,0,0,0,0,0,0,0,0,3.992715192556785,7.386218909025557,53.44,55.06,61.43,43.34,8.333333333333334,1,1,0,0,10,4,5,1,421.5,1576013.49162623,312957.4859825089,187694.198961137,0,3295.546188384046 -7043,8719,15829,15828,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.230972322577363,7.398506093365413,5.569004243419132,9,-2,82.066479115456,0,2,3,2019,7,0,23,25,1,0,0,8.208592442639313,8.208592442639313,0,0,0,0,0,0,0,0,0,5.521287226680668,61.43,43.34,53.44,55.06,8.333333333333334,1,1,0,0,10,4,5,1,421.5,1576013.49162623,312957.4859825089,187694.198961137,0,3295.546188384046 -7044,8720,15830,15831,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.693553770277495,5.652936103023844,53,6,66.94921050776814,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.696103768851462,5.825124810487329,55.12,31.57,60.44,46.58,10,1,1,0,0,0,9,2,1,553,125379.7710027165,43685.41612711894,0,0,2361.753183880763 -7044,8720,15831,15830,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,53,-6,32.93303629951178,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.023543536747377,0,60.44,46.58,55.12,31.57,8.333333333333334,1,1,0,0,0,9,2,1,553,125379.7710027165,43685.41612711894,0,0,2361.753183880763 -7045,8721,15832,15833,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,7.409890390301243,7.237736897839343,0,1,2,223.319331663959,-9,-9,-9,2019,12,0,31,0,1,0,0,4.980859874905409,4.980859874905409,0,0,0,0,0,0,0,0,1.587920352866225,0,37.6,54.5,41.23,59.35,6.666666666666667,1,1,0,0,0,9,4,1,723,31098.03968861557,-29944.69654210009,0,0,2012.181153528586 -7045,8721,15833,15832,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.30894993097775,8.452297968449477,0,1,-2,46.40225000665873,0,2,2,2019,12,0,45,44,1,0,0,12.34020193159548,12.34020193159548,0,0,0,0,0,0,0,0,2.871331206633352,0,41.23,59.35,37.6,54.5,6.666666666666667,1,1,0,0,5,9,4,1,723,31098.03968861557,-29944.69654210009,0,0,2012.181153528586 -7046,8722,15834,15835,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.462838426972573,5.515544925051572,40,1,26.98097278587244,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.02410638707504,0,0,1,1,0,0,5.491481484903264,50.5,38.58,57.16,56.15,6.666666666666667,1,1,0,1,0,4,2,0,421.5,243595.2358733601,82845.65744778048,95079.46002193532,0,1628.603225121834 -7046,8722,15835,15834,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.473640883620096,6.455346023456566,40,-1,-117.5634841529769,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.227675097878677,57.16,56.15,50.5,38.58,8.333333333333334,1,1,0,0,0,4,2,0,421.5,243595.2358733601,82845.65744778048,95079.46002193532,0,1628.603225121834 -7047,8723,15836,-9,15837,15839,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.201466155718,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1129.2,401599.2803776522,412969.2143266296,219835.1544185867,172693.2228891031,4522.946195394529 -7047,8723,15837,15839,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,8.858643113401177,9.060974010729643,0,6,-5,-83.63418761140964,0,3,2,2019,7,0,40,50,1,0,0,21.8446794659836,21.8446794659836,0,0,0,0,0,1,1,0,0,0,41.07,60.93,62.39,56.71,8.333333333333334,1,1,0,0,6,13,5,1,1129.2,401599.2803776522,412969.2143266296,219835.1544185867,172693.2228891031,4522.946195394529 -7047,8723,15838,-9,15837,15839,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.809561312929,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1129.2,401599.2803776522,412969.2143266296,219835.1544185867,172693.2228891031,4522.946195394529 -7047,8723,15839,15837,-9,-9,1,1,42,1,3,0,2,2,-9,0,5,7.885218211279387,7.982218502726559,0,6,5,-7.539265737799053,0,3,2,2019,6,0,33,33,1,0,0,9.500444822106235,9.500444822106235,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.07,60.93,8.333333333333334,1,1,0,0,6,13,5,1,1129.2,401599.2803776522,412969.2143266296,219835.1544185867,172693.2228891031,4522.946195394529 -7047,8723,15840,-9,15837,15839,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.301518553943,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1129.2,401599.2803776522,412969.2143266296,219835.1544185867,172693.2228891031,4522.946195394529 -7048,8724,15841,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.230217466810949,7.11998564887594,0,0,-1013.446750414448,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.33185726403267,57.24,25.1,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,4199,339287.5314624138,238924.6206027037,-757.5096695078682,0,1733.168826886328 -7049,8725,15842,-9,15843,15844,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.6996068247684,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,521.3333333333334,29771.44738671528,0,0,0,1346.282646077803 -7049,8725,15843,15844,-9,-9,1,0,43,0,1,0,3,3,-9,0,1,0,0,0,4,13,0,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.72,43.25,36.5,51.19,6.666666666666667,1,1,1,0,0,5,1,0,521.3333333333334,29771.44738671528,0,0,0,1346.282646077803 -7049,8725,15844,15843,-9,-9,1,1,30,0,1,0,3,3,-9,1,2,0,0,0,8,-13,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,36.5,51.19,27.72,43.25,6.666666666666667,1,1,1,0,0,5,1,0,521.3333333333334,29771.44738671528,0,0,0,1346.282646077803 -7050,8726,15845,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.251557929623974,9.209141615313342,0,0,0,-819.7559915700302,0,2,2,2019,10,0,50,50,1,0,0,24.81047424909651,24.81047424909651,0,0,0,0,0,0,0,0,6.061688617759088,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,1017,1927411.03816586,1192436.8750808,370476.7921637995,35762.55451560058,3385.186329113602 -7051,8727,15846,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.205209606052891,8.270179489667205,0,0,0,-940.3113534051263,0,2,2,2019,12,1,46,38,1,1,0,8.253882430270338,8.253882430270338,0,0,0,0,0,0,0,0,1.902939435229366,0,41.99,53.75,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,327,-25760.12590294617,0,0,0,1373.899990793828 -7052,8728,15847,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.220864009694594,6.060689407318183,0,0,-1078.259329039862,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.552274889377817,0,21.88309990126692,0,1,1,0,0,5.795762329488618,56.1,25.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,695,130135.5013421237,0,140873.0600298049,0,661.8569896145948 -7053,8729,15848,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.799188185888084,8.720112037476353,0,0,0,-965.5049861787454,0,2,3,2019,5,0,42,42,1,0,0,19.30836182486195,19.30836182486195,0,0,0,0,0,0,0,0,0,0,47.4,54.12,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,375,176141.8139967377,3708.725931066976,0,0,2166.72714836822 -7054,8730,15849,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,7.941464764101783,7.838542155216522,0,0,-948.9141356332507,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,11.03739377057224,0,2,1,1,0,0,7.664180303749264,41,25,-9,-9,1.666666666666667,1,1,0,0,6,2,3,1,1101,175335.5746250493,154069.0526772752,247243.9421694237,0,1737.370181109146 -7054,8731,15850,-9,-9,15849,1,1,43,0,0,0,2,2,-9,0,4,6.791553574635838,6.682319954533711,0,0,0,-1013.116160552653,0,-9,2,2019,6,0,15,20,1,0,0,4.988986027551094,4.988986027551094,0,0,0,0,0,1,1,0,0,0,51.21,58.85,-9,-9,10,1,1,0,0,6,2,2,1,585,-12095.40763272896,98042.42009926216,0,0,442.4926091719191 -7054,8732,15851,-9,-9,15849,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,0,0,-952.7794473159237,0,-9,3,2019,4,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.35,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,400,-14999.578860662,0,0,0,353.9589892108102 -7055,8733,15852,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,7.755752406988552,7.753448499848336,0,0,0,-1026.060147521434,0,2,2,2019,11,0,35,40,1,0,0,6.632987193455625,6.632987193455625,0,0,0,0,0,0,0,0,2.53519542581354,0,55.19,51.55,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,225,0,0,0,0,1350.757780420212 -7056,8734,15853,15854,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.315140558142089,7.378937868389789,57,3,6.080453015569868,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.23994644283378,75.95,11.13,52.3,43.45,8.333333333333334,1,1,0,0,0,2,2,1,323,728431.1750033083,96870.32376589919,164503.9749257912,0,1927.036378904423 -7056,8734,15854,15853,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.820146611434719,5.459364404833406,57,-3,80.27313033677933,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.280109596221872,52.3,43.45,75.95,11.13,8.333333333333334,1,1,0,0,0,2,2,1,323,728431.1750033083,96870.32376589919,164503.9749257912,0,1927.036378904423 -7057,8735,15855,15856,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,69,0,-109.040677969533,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,0,15.85021586273863,0,0,1,1,0,0,0,44.61,15.99,57.93,33.06,1.666666666666667,1,1,0,0,0,1,2,1,934,194134.1599878879,-59615.33883847918,239058.2972607209,0,2275.035042848433 -7057,8735,15856,15855,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,5.925189917003356,5.516207903562625,69,0,15.73582834341541,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,.3586597650527242,5.67859442004483,57.93,33.06,44.61,15.99,8.333333333333334,1,1,0,0,0,1,2,1,934,194134.1599878879,-59615.33883847918,239058.2972607209,0,2275.035042848433 -7058,8736,15857,15858,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.434422642972123,8.373225972844471,0,3,1,121.2033854857394,0,-9,-9,2019,13,1,35,38,1,1,0,15.34455905222805,15.34455905222805,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.3,60.77,6.666666666666667,1,1,0,0,2,8,5,1,109.5,2209938.489204639,1144930.793423178,813800.417024721,86003.72859318575,6599.766295960964 -7058,8736,15858,15857,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.30234810406297,9.452514136397076,0,3,-1,89.19257636941556,0,1,1,2019,14,2,35,40,1,2,0,36.72972645481951,36.72972645481951,0,0,0,0,0,0,0,0,1.85770456213852,0,41.3,60.77,54.2,57.49,8.333333333333334,1,1,0,0,11,8,5,1,109.5,2209938.489204639,1144930.793423178,813800.417024721,86003.72859318575,6599.766295960964 -7059,8737,15859,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.042666352088643,5.694411207534798,0,0,-1073.22826306397,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.642663007444457,49.78,23.35,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,1091,397151.5102839082,66876.45569178885,0,0,1087.012013383398 -7060,8738,15860,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.53684013728592,6.318945879131582,0,0,-916.2603339042549,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,1.463827682628192,6.394051811926476,35.49,40.88,-9,-9,3.333333333333333,1,1,0,0,5,7,2,1,125,601651.6449098906,150506.7035486659,228771.9931212301,0,1001.838857588755 -7061,8739,15861,15862,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.952160791191011,8.239265564589523,0,8,2,-43.10561359140781,0,2,3,2019,9,0,32,24,1,0,0,10.51701866396006,10.51701866396006,0,0,0,0,0,1,1,0,0,0,55.19,54.26,55.36,51.57,8.333333333333334,1,1,0,0,10,10,4,1,268.3333333333333,239112.9473892135,22478.74774447373,265198.2241390728,127172.9516783481,3515.600475974275 -7061,8739,15862,15861,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.798265780348782,8.646412255897733,0,21,-2,-28.70156188934799,0,2,2,2019,12,0,37,37,1,0,0,14.0099758797766,14.0099758797766,0,0,0,0,0,1,1,0,2.667664344121302,0,55.36,51.57,55.19,54.26,8.333333333333334,1,1,0,0,10,10,4,1,268.3333333333333,239112.9473892135,22478.74774447373,265198.2241390728,127172.9516783481,3515.600475974275 -7061,8739,15863,-9,15861,15862,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-891.5875800666031,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,268.3333333333333,239112.9473892135,22478.74774447373,265198.2241390728,127172.9516783481,3515.600475974275 -7062,8740,15864,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.967191033685435,6.961643764317482,0,0,-880.3597869621067,0,2,2,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.929630715070386,46.55,24.6,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2201,388629.7937972135,59124.53531389064,108600.4926937447,0,954.8516955406686 -7063,8741,15865,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.829261704562491,9.51349668016249,0,0,0,-1123.195281658304,0,2,2,2019,11,0,53,53,1,0,0,31.51079513480871,31.51079513480871,0,0,0,0,0,1,1,0,3.191456467214411,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,85,240369.092835533,54240.46330691501,0,0,10650.25913187845 -7064,8742,15866,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.029838534450223,7.963019096095124,0,0,-1093.593618928109,0,-9,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.547324729213063,7.681564675844628,47.61,55.04,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,344,764049.5164554633,382665.878826534,190611.3443539165,0,1816.648510976105 -7065,8743,15867,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-856.8030707455605,0,3,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.04,23.38,-9,-9,0,1,1,0,0,0,11,1,0,1075,-85906.30645265583,0,0,0,903.2455503060918 -7066,8744,15868,15869,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.76314373820499,8.295303082494192,0,3,2,37.6204864683851,0,-9,-9,2019,15,3,50,44,1,3,0,12.72967447280059,12.72967447280059,0,0,0,0,0,0,0,0,2.632472444563306,0,48.81,59.91,58.72,51.29,6.666666666666667,1,1,0,0,3,8,5,0,407,701027.4989185407,-44785.0064552305,207190.9160010825,0,3670.919913453539 -7066,8744,15869,15868,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.558264053090269,8.500800220297954,0,3,-2,60.53948591521564,0,1,1,2019,7,0,50,50,1,0,0,12.28511591663231,12.28511591663231,0,0,0,0,0,0,0,0,4.538258289287741,0,58.72,51.29,48.81,59.91,8.333333333333334,1,1,0,0,5,8,5,0,407,701027.4989185407,-44785.0064552305,207190.9160010825,0,3670.919913453539 -7067,8745,15870,15873,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.683337545716451,8.667510597484208,0,8,4,66.12141511839363,0,2,1,2019,9,0,38,38,1,0,0,21.22215047516208,21.22215047516208,0,0,0,0,0,1,1,0,0,0,56.33,51.02,51.94,55.88,8.333333333333334,1,1,0,0,9,11,4,1,778.5,408748.3090511787,434733.3628105814,210232.0084155334,184715.6011317288,3742.245420598729 -7067,8745,15871,-9,15873,15870,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.7998479745411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,778.5,408748.3090511787,434733.3628105814,210232.0084155334,184715.6011317288,3742.245420598729 -7067,8745,15872,-9,15873,15870,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.030663144762,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,778.5,408748.3090511787,434733.3628105814,210232.0084155334,184715.6011317288,3742.245420598729 -7067,8745,15873,15870,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.860247751113868,8.18264351207249,0,8,-4,-69.82514547142721,0,2,2,2019,8,0,30,30,1,0,0,9.814391819735297,9.814391819735297,0,0,0,0,0,1,1,0,0,0,51.94,55.88,56.33,51.02,8.333333333333334,1,1,0,0,9,11,4,1,778.5,408748.3090511787,434733.3628105814,210232.0084155334,184715.6011317288,3742.245420598729 -7068,8746,15874,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1070.937006340934,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.658046436728738,0,47.48,48.28,-9,-9,6.666666666666667,4,2,0,1,0,8,1,0,508,-115049.0582026605,0,0,0,1435.36340753957 -7069,8747,15875,15876,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,0,0,0,10,-11,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,49.67,47.5,42.86,10,1,1,0,0,0,4,2,0,2175,53988.86178553552,0,0,0,1322.158633041217 -7069,8747,15876,15875,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,29,11,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,6.828819379805329,18.72050017630997,63.24544723705691,0,1,1,0,0,0,47.5,42.86,53.39,49.67,8.333333333333334,1,1,0,0,0,4,2,0,2175,53988.86178553552,0,0,0,1322.158633041217 -7069,8748,15877,-9,15876,15875,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1129.039233876525,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,903,-180601.7491714699,0,0,0,281.9013667343512 -7070,8749,15878,-9,15879,15880,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.379868930681,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,1,1002.75,133947.9016258137,108621.4390455131,95409.4382805099,12929.16221221075,1959.336506209439 -7070,8749,15879,15880,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,18,-2,90.90122647069913,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.3,43.51,52.05,50.31,6.666666666666667,1,1,0,0,2,5,2,1,1002.75,133947.9016258137,108621.4390455131,95409.4382805099,12929.16221221075,1959.336506209439 -7070,8749,15880,15879,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,7.047649500787626,7.139389685945047,0,18,2,176.6729092839847,0,3,3,2019,6,1,25,35,1,1,0,6.293459501301987,6.293459501301987,0,0,0,0,0,1,1,0,0,0,52.05,50.31,43.3,43.51,10,1,1,0,0,9,5,2,1,1002.75,133947.9016258137,108621.4390455131,95409.4382805099,12929.16221221075,1959.336506209439 -7070,8749,15881,-9,15879,15880,1,1,17,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1012.152142349776,1,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.47,37.6,-9,-9,5,2,3,0,0,0,5,2,1,1002.75,133947.9016258137,108621.4390455131,95409.4382805099,12929.16221221075,1959.336506209439 -7071,8750,15882,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.029948413977866,8.891969444952393,0,2,-17,-136.3977952760193,0,1,2,2019,10,0,35,35,1,0,0,26.57070954929624,26.57070954929624,0,0,0,0,0,0,0,0,0,0,48.42,60.53,53,55,1.666666666666667,4,2,0,0,6,8,5,1,488,370429.9717335801,90380.01225511923,292428.8582414498,89901.81016560635,2852.174316497415 -7072,8751,15883,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1036.197094735737,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,2,0,1,0,8,1,1,56,-202054.4762341634,0,0,0,-92.98085852919337 -7072,8752,15884,-9,15883,-9,1,1,39,0,0,0,2,2,-9,0,4,8.7608463585489,8.552150347810317,0,0,0,-1163.479161495689,0,2,-9,2019,10,0,37,37,1,1,0,20.49636444859732,20.49636444859732,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,2,0,0,1,8,5,1,144,95200.17638573897,-91083.39358791547,0,0,2297.059626797287 -7073,8753,15885,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.846275225832215,8.0603091005569,0,0,-1154.592514856482,0,-9,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.673033203030361,8.036055006699494,45.82,31.91,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,388,488203.1330180722,131074.5257877583,140865.6578946137,0,2273.308153932608 -7074,8754,15886,15887,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.958069479765073,8.00308209969811,0,20,-3,-44.57357775685048,0,3,2,2019,11,0,38,37,1,0,0,12.19601434618808,12.19601434618808,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52,55,6.666666666666667,1,1,0,0,6,12,5,1,1368.333333333333,440650.7017412221,375502.7702890161,199089.0754852148,157105.5679143356,4285.949054498822 -7074,8754,15887,15886,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.791745596016504,8.843335895865014,0,4,3,56.5218191540751,0,-9,-9,2019,9,0,34,37,1,1,0,26.60589119499119,26.60589119499119,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,12,5,1,1368.333333333333,440650.7017412221,375502.7702890161,199089.0754852148,157105.5679143356,4285.949054498822 -7074,8754,15888,-9,15886,15887,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.917633264756,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1368.333333333333,440650.7017412221,375502.7702890161,199089.0754852148,157105.5679143356,4285.949054498822 -7074,8755,15889,-9,15886,15887,1,1,18,0,1,0,2,2,-9,0,5,7.814386813815988,7.58830760571986,0,0,0,-875.7929294062753,0,2,2,2019,6,0,38,0,1,0,1,7.372118079730912,7.372118079730912,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,2,12,3,1,1063,-205046.3271467469,0,0,0,982.6313059148912 -7075,8756,15890,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,6.509838631245828,6.302955174018976,0,0,0,-989.3689725725096,0,2,2,2019,8,0,2,2,1,0,0,49.51057204923176,49.51057204923176,0,0,0,0,0,1,1,0,7.51862314431817,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,709.5,4057.372318032882,94945.46099200696,0,0,617.2922183546739 -7075,8756,15891,-9,15890,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.6647232916264,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,709.5,4057.372318032882,94945.46099200696,0,0,617.2922183546739 -7076,8757,15892,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.799547819402152,8.771506953528574,0,0,-1066.462013569812,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.620313711569836,9.166897082882427,55.6,37.07,-9,-9,8.333333333333334,1,1,0,0,5,5,5,0,344,1498563.037584723,1141080.141772079,216515.0636849263,0,5058.886248659551 -7077,8758,15893,15894,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.280272029595967,8.304318596948637,0,1,6,-14.09998501268401,-9,2,3,2019,10,0,40,0,1,1,0,13.61002072961159,13.61002072961159,0,0,0,0,0,1,1,0,0,0,50,57,46.18,43.86,7,1,1,0,0,1,13,4,1,848.3333333333334,48471.73418041875,98953.58061159104,126483.7659562627,91281.2880721282,3039.290150167767 -7077,8758,15894,15893,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.652177216506772,7.883682223696098,0,1,-6,-106.7462264127203,-9,2,3,2019,7,0,37,0,1,0,0,9.908099184764849,9.908099184764849,0,0,0,0,0,1,1,0,0,0,46.18,43.86,50,57,10,1,1,0,0,8,13,4,1,848.3333333333334,48471.73418041875,98953.58061159104,126483.7659562627,91281.2880721282,3039.290150167767 -7077,8758,15895,-9,-9,15893,1,1,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1081.67575892863,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,848.3333333333334,48471.73418041875,98953.58061159104,126483.7659562627,91281.2880721282,3039.290150167767 -7078,8759,15896,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.173950131011049,9.168582857893904,0,0,0,-1078.812903066182,-9,-9,-9,2019,6,0,85,0,1,0,0,13.05707571567438,13.05707571567438,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,2,5,0,679,-148914.3616320314,-51949.58251721592,53789.78529509788,105118.9766622542,3868.122161094136 -7079,8760,15897,15898,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.000904471107223,5.416974077421637,52,-3,-3.226874802842793,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.068070846890192,5.056783006906893,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,0,9,3,1,1793.5,772460.201777138,418420.2603033092,394159.4703745736,0,2865.955729675603 -7079,8760,15898,15897,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.878624279243472,8.186651255742387,52,3,118.0919594124018,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.401431435327627,8.121457621519399,60.12,54.8,60.12,54.8,10,1,1,0,0,7,9,3,1,1793.5,772460.201777138,418420.2603033092,394159.4703745736,0,2865.955729675603 -7080,8761,15899,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,5.641024946735,5.407903119978895,0,0,0,-952.5669406331231,0,2,1,2019,5,0,30,35,1,0,0,1.032890544042811,1.032890544042811,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,11,2,2,0,1062,106449.5589501914,15702.77359273203,0,0,146.6669239709042 -7081,8762,15900,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,7.017228464565324,6.565567960850312,5.297082521037018,0,0,-887.6624947888876,0,2,2,2019,10,0,20,20,1,0,0,5.193761513131173,5.193761513131173,0,0,0,0,27,1,1,0,3.239327442738281,5.331960426613437,44.55,36.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,84,-76889.51592314307,104889.3244006875,0,0,1063.686360783967 -7082,8763,15901,15902,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.647140936508656,8.46943974194896,0,22,-5,76.23459634099835,0,2,2,2019,6,0,40,40,1,0,0,11.93403093926402,11.93403093926402,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.62,53.53,8.333333333333334,1,1,0,0,11,10,5,0,227,293171.6178217091,-33877.0959469298,332987.6211285821,42473.85661110064,3001.007278427446 -7082,8763,15902,15901,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.952582044655944,8.147394075397374,0,22,5,35.59559378661398,0,2,2,2019,6,0,46,44,1,0,0,6.110533184938572,6.110533184938572,0,0,0,0,0,0,0,0,1.70357391899768,0,54.62,53.53,58.32,50.22,8.333333333333334,1,1,0,0,11,10,5,0,227,293171.6178217091,-33877.0959469298,332987.6211285821,42473.85661110064,3001.007278427446 -7082,8764,15903,-9,15902,15901,1,0,22,0,0,0,2,2,-9,0,3,7.246843241227162,7.310324897161499,0,0,0,-1051.707623185644,0,2,3,2019,11,0,39,36,1,0,1,4.337076203932858,4.337076203932858,0,0,0,0,0,0,0,0,.1760911710046043,0,50.65,53.71,-9,-9,6.666666666666667,1,1,0,0,5,10,3,0,977,207391.4859388621,0,0,0,889.3296572055232 -7083,8765,15904,15905,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.912632735309497,8.07715195095915,0,30,1,-116.595156083895,0,2,2,2019,10,1,22,20,1,1,0,12.197402436794,12.197402436794,0,0,0,0,0,0,0,0,8.358164020888816,0,51.83,57.2,59.53,56.44,8.333333333333334,1,1,0,0,9,9,4,1,243.5,275151.0578405328,-85786.73560769582,321617.6384091263,0,10814.94109198933 -7083,8765,15905,15904,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.68371184290649,7.722325818191636,0,30,-1,-49.48082813961772,0,2,-9,2019,6,0,40,40,1,0,0,8.508541088210206,8.508541088210206,0,0,0,0,0,0,0,0,10.37792370146238,0,59.53,56.44,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,243.5,275151.0578405328,-85786.73560769582,321617.6384091263,0,10814.94109198933 -7083,8766,15906,-9,15904,15905,1,1,25,0,0,0,2,2,-9,0,3,7.822666729559472,8.195222855155199,0,0,0,-929.4329257680488,0,2,2,2019,12,2,43,40,1,2,1,8.980505404138647,8.980505404138647,0,0,0,0,0,0,0,0,0,0,50.18,52.62,-9,-9,3.333333333333333,1,1,0,0,3,9,4,1,275,151829.7111962693,-40374.56838492296,0,0,1263.959357242213 -7084,8767,15907,15908,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.612016074529118,8.831443940761318,.494206278515635,18,-8,66.4509959295809,0,3,3,2019,11,0,40,38,1,0,0,13.99334155937127,13.99334155937127,0,0,0,0,0,1,1,0,1.643316837327144,1.145818823561811,50.96,45.55,55.71,40.47,8.333333333333334,1,1,0,0,10,10,5,1,396.5,4902772.857252037,181584.8082461862,867394.3470628734,0,5788.62945099687 -7084,8767,15908,15907,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,8.606693412889888,8.843725800555127,2.343501905594773,19,8,66.90170590941341,0,3,2,2019,11,2,10,16,1,2,0,63.11637429944595,63.11637429944595,0,0,0,0,0,1,1,0,6.787309511395419,2.114425652466501,55.71,40.47,50.96,45.55,6.666666666666667,1,1,0,0,10,10,5,1,396.5,4902772.857252037,181584.8082461862,867394.3470628734,0,5788.62945099687 -7084,8768,15909,-9,15908,15907,1,1,33,0,0,0,1,1,-9,0,4,7.519421665252227,7.522459392102004,0,0,0,-1145.698145008775,0,2,2,2019,10,0,28,24,1,0,1,7.123447176221785,7.123447176221785,0,0,0,0,0,1,1,0,1.030258212596211,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,2037,-63944.59179846937,0,0,0,1411.1739023039 -7085,8769,15910,15911,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,41,-6,213.3191685548275,0,2,1,2019,9,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,6.016319298708648,0,61.27,46.03,54.96,53.17,8.333333333333334,1,1,0,0,4,12,2,1,655,803047.7011919542,569075.2972507377,231578.6815014438,0,1333.384427837726 -7085,8769,15911,15910,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.477374363334232,7.865021587824905,41,6,-59.46440857550507,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.21312240060723,7.115839270812778,54.96,53.17,61.27,46.03,8.333333333333334,1,1,0,0,0,12,2,1,655,803047.7011919542,569075.2972507377,231578.6815014438,0,1333.384427837726 -7086,8770,15912,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.487865572887856,7.224071648214099,0,0,0,-1014.755368215821,0,-9,-9,2019,10,0,27,27,1,0,0,7.360874709507342,7.360874709507342,0,0,0,0,0,0,0,0,0,0,33.79,58.02,-9,-9,8.333333333333334,1,1,0,0,8,10,3,0,1323,528947.3528678856,78814.52220341693,244017.7662816903,0,1078.094702295933 -7087,8771,15913,-9,15914,15915,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1046.95684857396,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,6,4,1,780.3333333333334,409889.8430264741,0,410025.1841883048,0,2469.02851708853 -7087,8771,15914,15915,-9,-9,1,0,35,0,1,0,2,2,-9,1,1,6.069924061875715,6.235123125696295,0,5,-22,-25.6837268035452,0,-9,-9,2019,22,7,12,7,1,7,0,4.650890365502824,4.650890365502824,0,0,0,0,2,1,1,0,0,0,44.69,21.73,52.43,55.57,3.333333333333333,1,1,0,1,4,6,4,1,780.3333333333334,409889.8430264741,0,410025.1841883048,0,2469.02851708853 -7087,8771,15915,15914,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,8.806535628535514,8.22488963034451,0,5,22,-90.02914938876056,0,3,3,2019,7,0,41,46,1,0,0,15.88869914710823,15.88869914710823,0,0,0,0,0,1,1,0,0,0,52.43,55.57,44.69,21.73,8.333333333333334,1,1,0,0,9,6,4,1,780.3333333333334,409889.8430264741,0,410025.1841883048,0,2469.02851708853 -7088,8772,15916,15917,-9,-9,1,0,40,0,0,0,3,3,-9,1,1,0,0,0,23,-5,0,0,3,3,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57,14.87,45.99,39.9,0,2,3,1,0,0,8,1,0,443.5,98765.41560562284,0,0,0,1137.477614837171 -7088,8772,15917,15916,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,7,5,0,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,39.9,57,14.87,3.333333333333333,2,3,1,0,0,8,1,0,443.5,98765.41560562284,0,0,0,1137.477614837171 -7089,8773,15918,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1039.656119959441,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.66,15.3,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,627.5,75092.17188414745,0,0,0,1652.053636255851 -7089,8773,15919,-9,15918,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1019.022026608879,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,627.5,75092.17188414745,0,0,0,1652.053636255851 -7090,8774,15920,-9,15923,15922,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.3019656594953,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,0,403,95130.31498355704,62059.04969409625,0,0,2995.117965019519 -7090,8774,15921,-9,15923,15922,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.258715126232,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,403,95130.31498355704,62059.04969409625,0,0,2995.117965019519 -7090,8774,15922,15923,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.700590028965124,8.512436819734864,0,2,5,-74.16393388906283,-9,-9,-9,2019,10,0,40,0,1,0,0,11.3365318583932,11.3365318583932,0,0,0,0,0,1,1,0,0,0,54.02,55.17,45.98,56.3,5,1,1,0,0,5,4,4,0,403,95130.31498355704,62059.04969409625,0,0,2995.117965019519 -7090,8774,15923,15922,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,7.319117742234741,7.026837111548293,0,2,-5,3.904800646069489,0,2,2,2019,11,0,16,30,1,0,0,12.65029249878258,12.65029249878258,0,0,0,0,0,1,1,0,0,0,45.98,56.3,54.02,55.17,8.333333333333334,1,1,0,0,4,4,4,0,403,95130.31498355704,62059.04969409625,0,0,2995.117965019519 -7091,8775,15924,15925,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.020061290925713,6.098886086769132,47,-4,-96.70436002276801,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.459224610925966,6.246823471342796,62.39,56.71,63.81,40.77,10,1,1,0,0,4,11,5,1,620.5,563514.9141050538,332597.4596642722,170885.7642033884,0,5645.056766059129 -7091,8775,15925,15924,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.861823965193805,8.997758617087616,47,4,-148.40226144315,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.99049450064792,8.82528503320343,63.81,40.77,62.39,56.71,10,1,1,0,0,5,11,5,1,620.5,563514.9141050538,332597.4596642722,170885.7642033884,0,5645.056766059129 -7092,8776,15926,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.292191151987336,5.412526182182499,0,0,-984.3161773517892,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,11.10377920888767,0,0,1,0,1,1.927478717411596,5.31624672304771,44.77,40.12,-9,-9,7,1,1,0,0,0,5,2,0,243,-127833.2367576417,0,0,0,1750.285711316153 -7092,8777,15927,-9,15926,-9,1,1,44,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.847014861075,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.12,58.26,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,324,-204048.985783631,0,0,0,337.7451332511864 -7093,8778,15928,-9,15929,-9,1,1,15,1,5,1,3,0,-9,0,3,0,0,0,0,0,-1041.782168104862,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,1,0,922.4,12081.17176959383,0,0,0,2458.674451488718 -7093,8778,15929,-9,-9,-9,1,0,38,1,5,0,1,1,-9,0,3,0,0,0,0,0,-942.3121405204062,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,5.175569273926547,0,34.26,54.41,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,922.4,12081.17176959383,0,0,0,2458.674451488718 -7093,8778,15930,-9,15929,-9,1,1,10,1,5,1,3,0,-9,0,3,0,0,0,0,0,-1090.331269548281,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,1,0,922.4,12081.17176959383,0,0,0,2458.674451488718 -7093,8778,15931,-9,15929,-9,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.057891240011,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,922.4,12081.17176959383,0,0,0,2458.674451488718 -7093,8778,15932,-9,15929,-9,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-977.5704346942496,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,922.4,12081.17176959383,0,0,0,2458.674451488718 -7093,8779,15933,-9,15929,-9,1,0,18,1,5,0,2,2,1,0,2,7.310286643616792,7.002084636610772,0,0,0,-1005.841688116647,-9,1,-9,2019,17,6,19,0,1,6,1,7.313915621222529,7.313915621222529,0,0,0,0,2,1,0,1,0,0,33.17,40.68,-9,-9,3.333333333333333,1,1,0,0,2,8,3,0,446,13488.93227206394,-23632.93842116328,0,0,1015.385315895965 -7093,8779,15934,-9,15933,-9,1,1,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-974.2675073215339,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,8,3,0,446,13488.93227206394,-23632.93842116328,0,0,1015.385315895965 -7094,8780,15935,15936,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.032817826300557,7.93408146244554,0,2,0,-186.0368689396011,0,-9,-9,2019,23,10,39,35,1,10,0,8.360578748872477,8.360578748872477,0,0,0,0,0,0,0,0,0,0,31.84,53.56,44.5,29.82,6.666666666666667,1,1,0,0,12,7,4,0,501.5,522247.4995136174,86843.03377989812,333121.6209737775,24492.34036521543,2906.073499328139 -7094,8780,15936,15935,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,8.594444051571889,8.446815346341413,0,2,0,53.77264905449093,0,-9,-9,2019,13,3,50,45,1,3,0,10.22482458662921,10.22482458662921,0,0,0,0,0,0,0,0,0,0,44.5,29.82,31.84,53.56,6.666666666666667,1,1,0,1,2,7,4,0,501.5,522247.4995136174,86843.03377989812,333121.6209737775,24492.34036521543,2906.073499328139 -7095,8781,15937,15938,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.100966432716191,7.863068043309943,0,3,7,-65.03564897508524,-9,3,2,2019,5,0,38,0,1,0,0,8.786334306286225,8.786334306286225,0,0,0,0,0,0,0,0,1.869887644259822,0,59.74,45.34,47.32,52.7,8.333333333333334,1,1,0,0,8,11,4,0,1118,122442.7628073096,-6333.343055520007,135352.2770766917,80955.44437799687,2211.499321190406 -7095,8781,15938,15937,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.56994104932654,7.969827800868131,0,3,-7,46.17294666089435,-9,-9,-9,2019,10,0,24,0,1,0,0,9.050587287306518,9.050587287306518,0,0,0,0,0,0,0,0,3.962252855844069,0,47.32,52.7,59.74,45.34,8.333333333333334,1,1,0,0,11,11,4,0,1118,122442.7628073096,-6333.343055520007,135352.2770766917,80955.44437799687,2211.499321190406 -7096,8782,15939,15940,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.413957803105834,6.936592017387947,46,-3,47.20075352409716,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.18312761254706,6.739400552096137,57.8,50.59,61.7,39.56,10,1,1,0,0,0,8,3,1,524,1039878.261206383,540342.8024107732,510149.6104679074,0,1575.600279818031 -7096,8782,15940,15939,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,6.930386848465669,6.773863375019544,5.841097416774018,46,3,-108.592594806579,0,3,3,2019,6,0,8,10,1,0,0,16.36438356467287,16.36438356467287,1,0,4.111173125703481,0,0,1,1,0,5.251637299490295,5.868752531627508,61.7,39.56,57.8,50.59,6.666666666666667,1,1,0,1,8,8,3,1,524,1039878.261206383,540342.8024107732,510149.6104679074,0,1575.600279818031 -7097,8783,15941,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-753.0799765973131,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.439442274282179,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,471,389420.7203970245,0,231621.5033315662,0,937.6993463907753 -7098,8784,15942,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,5.385509666339801,5.308098662491155,0,0,-964.5232107782152,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,1,0,5.533011634661998,46.97,33.08,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,868,127348.6014476406,82617.40716525911,0,0,1822.831609084637 -7099,8785,15943,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.913283993183816,6.138955510140317,0,0,-967.3176071293169,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.657208166871339,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,725,175587.3437724196,-4832.395394995459,126087.4805944517,0,604.2978188010413 -7100,8786,15944,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.151703860085822,8.30497332456539,0,0,0,-1002.937854132296,0,3,3,2019,8,0,40,41,1,0,0,9.109924161607566,9.109924161607566,0,0,0,0,0,0,0,0,0,0,57.92,51.82,-9,-9,5,1,1,0,1,12,1,4,1,1825,185618.2081741789,-43750.5422094934,0,0,1703.666586626901 -7101,8787,15945,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.632618880647,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.91,39.23,-9,-9,6.666666666666667,1,1,1,1,0,5,1,0,3504,62743.49844735585,0,0,0,1175.42024027865 -7102,8788,15946,15949,-9,-9,1,0,28,1,2,0,2,2,-9,1,1,0,0,0,8,-12,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,6.97,50.17,61.37,31.03,0,1,1,0,0,3,11,1,0,465.75,-2515.163021600282,0,0,0,1830.440955520602 -7102,8788,15947,-9,15946,15949,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.774707324043,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,465.75,-2515.163021600282,0,0,0,1830.440955520602 -7102,8788,15948,-9,15946,15949,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-862.9902564600879,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,465.75,-2515.163021600282,0,0,0,1830.440955520602 -7102,8788,15949,15946,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,8,12,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,31.03,6.97,50.17,8.333333333333334,1,1,1,0,5,11,1,0,465.75,-2515.163021600282,0,0,0,1830.440955520602 -7103,8789,15950,-9,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,8.654555198948112,8.780266700910337,0,0,0,-987.6436878931369,0,1,2,2019,17,7,37,42,1,7,0,24.79152278905122,24.79152278905122,0,0,0,0,0,1,1,0,3.858586281646148,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,6,2,4,0,462.3333333333333,207416.5075423682,101922.3696092407,0,0,2770.025796513715 -7103,8789,15951,-9,15950,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.044458744491,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,462.3333333333333,207416.5075423682,101922.3696092407,0,0,2770.025796513715 -7103,8789,15952,-9,15950,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.9399634750645,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,462.3333333333333,207416.5075423682,101922.3696092407,0,0,2770.025796513715 -7104,8790,15953,-9,15954,-9,1,1,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1042.018971157662,1,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.22,48.82,-9,-9,8.333333333333334,4,2,0,0,0,8,1,1,898,0,0,0,0,0 -7104,8791,15954,15955,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.146411787440885,7.971362276364168,0,6,-3,14.38698478904565,0,2,2,2019,14,2,30,20,1,2,0,12.70743051712999,12.70743051712999,0,0,0,0,0,1,1,0,0,0,45.17,41.54,55,53,6.666666666666667,3,4,0,0,7,8,5,1,372,787694.8263106605,285449.7284525805,447155.985520559,0,3457.371287164061 -7104,8791,15955,15954,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.375567958216712,8.466790678276732,0,6,3,93.58186764025135,0,-9,-9,2019,8,0,36,40,1,0,0,11.84624987654164,11.84624987654164,0,0,0,0,0,1,1,0,2.75752440783906,0,55,53,45.17,41.54,8,3,4,0,0,1,8,5,1,372,787694.8263106605,285449.7284525805,447155.985520559,0,3457.371287164061 -7105,8792,15956,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.156714864351025,8.168559537776598,0,0,0,-1132.370650613501,0,3,3,2019,13,1,47,47,1,1,0,10.43229351563713,10.43229351563713,0,0,0,0,0,0,0,0,0,0,48.05,35.6,-9,-9,5,1,1,0,0,8,10,4,1,1960,558833.8659880847,314932.6148038498,153610.8283712887,109160.2346776963,2129.399565010493 -7105,8793,15957,-9,15956,-9,1,1,24,0,0,0,1,1,1,0,5,7.878498983467664,8.040363944285092,0,0,0,-973.4891083650101,-9,2,2,2019,8,1,42,0,1,1,1,7.108272852704779,7.108272852704779,0,0,0,0,0,0,0,0,0,0,52.13,57.22,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,556,162154.6381587913,0,0,0,573.9809549227274 -7105,8794,15958,-9,15956,-9,1,0,20,0,0,0,2,2,-9,0,4,7.753341861326588,7.902929688827972,0,0,0,-993.6444845571293,0,2,2,2019,12,0,47,47,1,2,1,5.711326292920783,5.711326292920783,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,2,10,3,1,1795,72730.50878729747,0,0,0,1257.131719098743 -7106,8795,15959,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.464874821032044,8.094132472164917,0,0,0,-943.7615163512153,0,2,2,2019,9,0,37,40,1,0,0,10.42550639035945,10.42550639035945,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,154,405488.8414329557,422987.7952354114,198984.4854947737,6479.771667406976,1857.916532198645 -7107,8796,15960,-9,15961,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.777018867484,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,1,0,884.5,-83960.18202966126,0,0,0,1374.710208040505 -7107,8796,15961,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,2,0,0,0,0,0,-962.4380412449595,0,-9,2,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,35.4,-9,-9,0,1,1,1,0,0,7,1,0,884.5,-83960.18202966126,0,0,0,1374.710208040505 -7108,8797,15962,15963,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,9.357685263712858,9.469808832071324,0,23,-1,43.00889630454105,0,2,-9,2019,5,0,8,10,1,0,0,145.8129390589559,145.8129390589559,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.53,58.91,6.666666666666667,1,1,0,0,9,4,5,1,479.5,2062462.67653921,1954792.447957424,119575.6877500211,32274.82459677608,7710.153256581261 -7108,8797,15963,15962,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.236026008632141,8.663745295232413,0,6,1,-140.2237708699798,0,-9,-9,2019,9,0,16,24,1,0,0,33.08884912163509,33.08884912163509,0,0,0,0,0,0,0,0,2.620591807773126,0,48.53,58.91,51.14,60.45,6.666666666666667,1,1,0,0,9,4,5,1,479.5,2062462.67653921,1954792.447957424,119575.6877500211,32274.82459677608,7710.153256581261 -7109,8798,15964,15965,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,-38.44710490559856,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.413786839403766,0,57.16,56.15,66.2,41.05,8.333333333333334,1,1,0,0,0,4,3,1,831,1173010.947741391,782803.9629348456,230380.8505216242,0,1764.422494032935 -7109,8798,15965,15964,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.116470788157001,8.201299900698942,9,3,20.17000206402414,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.8584455465075151,8.157064425224585,66.2,41.05,57.16,56.15,10,1,1,0,0,8,4,3,1,831,1173010.947741391,782803.9629348456,230380.8505216242,0,1764.422494032935 -7109,8798,15966,-9,15964,15965,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-797.2725927727528,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,831,1173010.947741391,782803.9629348456,230380.8505216242,0,1764.422494032935 -7110,8799,15967,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.854567566225975,5.695705063103278,0,0,-1155.703856405474,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.659182430830819,5.467733305372513,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,1523,217302.1823469252,131331.9036366242,0,0,945.7764630337969 -7111,8800,15968,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.369371273325736,9.400912461624792,0,0,0,-983.9901591963404,0,2,2,2019,13,2,40,35,1,2,0,36.78811925918278,36.78811925918278,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,107,1195102.06294562,390845.2132165268,167971.652108187,0,4558.184828443706 -7112,8801,15969,-9,15970,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-922.0461975255271,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,9,4,1,460.5,-131595.0393082712,0,0,0,1411.494566934457 -7112,8801,15970,-9,15972,15971,1,0,26,0,0,0,1,1,-9,0,4,8.360550471269601,8.1270803548476,0,0,0,-976.8992059332973,0,2,1,2019,11,1,49,43,1,1,1,8.309067968283834,8.309067968283834,0,0,0,0,0,0,0,0,2.463981241837438,0,44.66,57.83,-9,-9,8.333333333333334,3,4,0,0,3,9,4,1,460.5,-131595.0393082712,0,0,0,1411.494566934457 -7112,8802,15971,15972,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.967803126167968,7.734229596796522,0,4,14,-50.64620847835528,-9,-9,-9,2019,7,0,40,0,1,0,0,9.213287353508692,9.213287353508692,0,0,0,0,0,0,0,0,0,0,55.35,39.26,63.09,47.92,5,1,1,0,0,3,9,4,1,526.5,1438178.215065477,348074.5284880403,931015.1031751339,0,3035.35520515677 -7112,8802,15972,15971,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.507239794045818,8.58536491095408,0,4,-14,68.83706738079665,-9,-9,-9,2019,5,0,48,0,1,0,0,9.072381150340126,9.072381150340126,0,0,0,0,2,0,0,0,0,0,63.09,47.92,55.35,39.26,10,3,4,0,0,4,9,4,1,526.5,1438178.215065477,348074.5284880403,931015.1031751339,0,3035.35520515677 -7113,8803,15973,15974,-9,-9,1,0,44,0,0,0,1,1,-9,1,1,0,0,0,2,-6,-70.56583321918811,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.76,35.81,52.99,51.28,0,1,1,0,0,8,1,3,0,465,710995.2330356156,689415.6204246054,108199.0429949218,25993.32266612807,2138.244365919436 -7113,8803,15974,15973,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.163344504301104,8.433870478954974,0,2,6,48.40526751085427,0,-9,2,2019,8,0,38,40,1,0,0,10.84362698807607,10.84362698807607,0,0,0,0,2,1,0,1,0,0,52.99,51.28,19.76,35.81,6.666666666666667,1,1,0,0,11,1,3,0,465,710995.2330356156,689415.6204246054,108199.0429949218,25993.32266612807,2138.244365919436 -7113,8804,15975,-9,15973,15974,1,0,20,0,0,0,2,2,-9,0,2,7.045800858833367,7.293028773622602,0,0,0,-1001.242440526196,0,1,3,2019,28,11,40,50,1,11,1,4.332827627105211,4.332827627105211,0,0,0,0,0,1,0,1,0,0,29.07,40.99,-9,-9,5,1,1,0,0,2,1,3,0,455,-106126.4634530763,0,0,0,400.2031726257769 -7114,8805,15976,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.470025861477772,9.328736087658788,0,0,0,-1013.922158547333,0,3,1,2019,5,0,38,50,1,0,0,29.17991192088548,29.17991192088548,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,1610,191199.862757696,-6452.667578651417,214234.8754487762,166590.6162038246,3282.697834943007 -7115,8806,15977,15978,15982,15983,1,1,36,0,3,0,1,1,-9,0,4,7.941184719478798,7.659396718493785,0,4,3,-123.3567509956546,0,3,2,2019,10,0,37,40,1,1,0,10.35738600729309,10.35738600729309,0,0,0,0,0,1,1,0,0,0,51,56,45.23,32.27,7,2,3,0,0,1,8,2,1,926.4,12446.1796031964,-14952.70370264409,0,0,2293.943531462865 -7115,8806,15978,15977,-9,-9,1,0,33,0,3,0,2,2,-9,0,2,0,0,0,11,-3,-75.47365130524646,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,45.23,32.27,51,56,6.666666666666667,2,3,0,0,0,8,2,1,926.4,12446.1796031964,-14952.70370264409,0,0,2293.943531462865 -7115,8806,15979,-9,15978,15977,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.4134379001785,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,926.4,12446.1796031964,-14952.70370264409,0,0,2293.943531462865 -7115,8806,15980,-9,15978,15977,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-907.4638232261527,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,926.4,12446.1796031964,-14952.70370264409,0,0,2293.943531462865 -7115,8806,15981,-9,15978,15977,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.5932328337365,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,926.4,12446.1796031964,-14952.70370264409,0,0,2293.943531462865 -7115,8807,15982,15983,-9,-9,1,0,70,0,3,0,3,3,-9,0,3,0,0,0,4,-2,-145.1159011423095,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,2,3,0,0,0,8,2,1,1021,240350.9955139385,-36480.48957821845,183466.249091355,0,2221.468728839379 -7115,8807,15983,15982,-9,-9,1,1,72,0,3,0,2,2,-9,0,3,0,3.448039991091631,3.321688706042578,4,2,67.27401754036599,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,3.270065126805564,54,46,51,46,7,2,3,0,0,0,8,2,1,1021,240350.9955139385,-36480.48957821845,183466.249091355,0,2221.468728839379 -7116,8808,15984,15985,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.894323800604446,7.732465211137277,42,1,-27.85086694811885,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6446268018889816,7.781047023957584,58.15,52.91,55.9,31.06,10,1,1,0,0,6,2,3,1,267,1281329.057521468,660127.4820698889,335557.5021704922,0,3257.328874801597 -7116,8808,15985,15984,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,42,-1,-152.4219773321828,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.250027532960604,0,55.9,31.06,58.15,52.91,10,1,1,0,0,7,2,3,1,267,1281329.057521468,660127.4820698889,335557.5021704922,0,3257.328874801597 -7117,8809,15986,-9,15987,-9,1,0,30,0,0,0,2,2,-9,0,3,7.36579745435589,7.137201283387673,0,0,0,-1006.084444106861,0,2,2,2019,5,0,37,30,1,0,0,5.741998432741637,5.741998432741637,0,0,0,0,42,1,1,0,0,0,54.78,37.14,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,1264,-45914.86852320041,0,0,0,834.0953645620829 -7117,8810,15987,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,7.722029731282065,7.202475489095146,0,0,-1073.252631349785,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.457806475378441,49.67,11.64,-9,-9,1.666666666666667,1,1,0,0,0,4,3,1,585,98593.06279665916,212739.7586023683,0,0,2236.506029767789 -7118,8811,15988,15989,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.355996527550291,7.127338343937696,5,4,39.35716830285688,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.709194010034526,6.884414790574326,50.53,44.55,13,63.01,5,1,1,0,0,10,2,3,0,514,395170.0662739575,340093.1304436992,100672.6062859557,0,1965.781812158979 -7118,8811,15989,15988,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.461335135825652,6.891634501651746,5,-4,62.88746388853245,0,2,2,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.297607423230521,6.766449020487552,13,63.01,50.53,44.55,1.666666666666667,1,1,0,0,1,2,3,0,514,395170.0662739575,340093.1304436992,100672.6062859557,0,1965.781812158979 -7119,8812,15990,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.907410347040886,8.349749461462746,0,0,0,-1063.105745405519,0,-9,-9,2019,24,12,40,37,1,12,0,8.137152669852671,8.137152669852671,0,0,0,0,0,0,0,0,.5008036105639289,0,53.23,41.63,-9,-9,3.333333333333333,1,1,0,0,7,12,4,1,385,10046.50389681604,0,0,0,1559.876532726104 -7120,8813,15991,15992,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,4.194570311744324,4.616794729231289,7,5,-4.158139292559787,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.306509037916443,50.29,23.1,25.34,33.37,0,1,1,0,0,0,13,2,1,2013.5,176863.927700978,0,0,0,3246.217416775914 -7120,8813,15992,15991,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,36,-5,43.5359004799982,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,33.37,50.29,23.1,5,1,1,0,0,0,13,2,1,2013.5,176863.927700978,0,0,0,3246.217416775914 -7121,8814,15993,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-946.5879589383883,0,2,3,2019,15,4,0,0,4,4,0,0,0,1,0,6.738024921689517,0,0,1,1,0,0,0,42.86,31.98,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,100,-230668.6546560514,0,0,0,984.9179960268331 -7122,8815,15994,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1012.076571275981,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,17.06,56.31,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,268,197915.5263717533,0,0,0,1576.04238444059 -7122,8816,15995,-9,-9,15994,1,0,22,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1039.533123158278,0,-9,2,2019,19,6,0,0,3,6,1,0,0,0,0,0,0,74.5,1,0,1,0,0,27.58,63.32,-9,-9,3.333333333333333,1,1,0,1,2,11,1,0,918,-75732.60565379269,0,0,0,351.5031834794992 -7123,8817,15996,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.91893841266577,7.800271112456147,0,0,0,-888.0804176621734,0,3,3,2019,13,3,40,35,1,3,0,7.826534592976301,7.826534592976301,0,0,0,0,0,0,0,0,0,0,51.99,43.64,-9,-9,6.666666666666667,3,4,0,0,8,9,4,1,363,-35971.83329604559,0,0,0,699.8379499789656 -7124,8818,15997,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.917155321449862,7.884462660047192,0,0,-1084.346648015674,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,.6622931216116117,8.008436056943468,54.21,29.14,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,270,518229.289410346,11202.09752781078,321745.5016214682,0,2063.30737996385 -7125,8819,15998,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-890.9573236838844,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.43,16.78,-9,-9,5,1,1,1,0,1,4,1,0,603,215082.7034902336,0,95818.8334628353,0,1202.289865143653 -7126,8820,15999,16000,-9,-9,1,1,42,1,2,0,1,1,-9,0,2,8.118523946184427,8.451647874759017,0,8,2,4.761033765155108,0,-9,-9,2019,25,8,32,37,1,8,0,13.15798482931799,13.15798482931799,0,0,0,0,0,1,1,0,0,0,23.68,57.42,55.53,51.55,1.666666666666667,1,1,0,1,12,9,4,1,773.75,1555958.227832213,1345439.846213491,326256.0967242749,131960.7816867002,3123.577198618656 -7126,8820,16000,15999,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.427013142179515,8.649881053244865,0,8,-2,-62.6893532054202,0,2,2,2019,6,0,39,30,1,0,0,16.25323270665551,16.25323270665551,0,0,0,0,0,1,1,0,0,0,55.53,51.55,23.68,57.42,8.333333333333334,1,1,0,0,10,9,4,1,773.75,1555958.227832213,1345439.846213491,326256.0967242749,131960.7816867002,3123.577198618656 -7126,8820,16001,-9,16000,15999,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.206523235252,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,773.75,1555958.227832213,1345439.846213491,326256.0967242749,131960.7816867002,3123.577198618656 -7126,8820,16002,-9,16000,15999,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.818915105635,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,773.75,1555958.227832213,1345439.846213491,326256.0967242749,131960.7816867002,3123.577198618656 -7127,8821,16003,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.212073221534023,8.323139588380332,0,0,0,-982.1907633040855,0,1,1,2019,14,2,35,35,1,2,0,14.93427862212283,14.93427862212283,0,0,0,0,0,1,1,0,2.044945338416796,0,43.12,58.26,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,1181,-26870.36088451316,-7920.941404921633,0,0,1811.371050659242 -7128,8822,16004,16005,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.94862177550444,4.896616249874621,7,4,87.40457994977011,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.016334488940302,4.780946736817026,54.72,46.41,50.25,51.37,8.333333333333334,1,1,0,0,0,4,2,1,1032,249648.3232841849,103917.9248496651,179125.3772323323,0,1830.94703033526 -7128,8822,16005,16004,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.187154102866049,5.381170868737294,7,-4,-9.192858471756114,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.21866375159253,50.25,51.37,54.72,46.41,6.666666666666667,1,1,0,0,5,4,2,1,1032,249648.3232841849,103917.9248496651,179125.3772323323,0,1830.94703033526 -7129,8823,16006,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.768768051002562,7.255424051199921,6.435832704337713,0,0,-1080.632960480708,0,2,3,2019,12,0,12,12,1,0,0,6.415802149752225,6.415802149752225,0,0,0,0,7,1,1,0,6.3198531834744,6.533398244706514,40.09,52.06,-9,-9,6.666666666666667,1,1,0,0,5,9,3,0,1201,34176.04422357143,0,0,0,205.3030816094661 -7130,8824,16007,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,3,0,5.478531921137618,5.380044112089243,0,0,-1079.473556609766,-9,-9,-9,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,5.290525763148421,0,13.99,63.75,-9,-9,5,1,1,0,1,0,13,2,0,721.5,2826.608667112596,0,0,0,1985.204706063644 -7130,8824,16008,-9,16007,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.010399317112,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,721.5,2826.608667112596,0,0,0,1985.204706063644 -7131,8825,16009,16010,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.237473089159355,8.130535893518518,52,1,-8.853776054504342,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.558018475065781,8.405333502557726,58.15,52.91,56.99,27.03,8.333333333333334,1,1,0,0,0,6,4,1,547,768642.9668273733,409998.0059114798,119421.7428960572,0,4448.720419963938 -7131,8825,16010,16009,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.652695608594001,5.689132119627791,52,-1,43.97640287813236,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.193171921951769,6.167119111990447,56.99,27.03,58.15,52.91,8.333333333333334,1,1,0,0,1,6,4,1,547,768642.9668273733,409998.0059114798,119421.7428960572,0,4448.720419963938 -7132,8826,16011,16012,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.407797912357132,8.411460680080744,0,41,3,-22.17235467714186,0,3,3,2019,10,0,60,70,1,1,0,9.640742724562417,9.640742724562417,0,0,0,0,0,0,0,0,0,0,52,48,32.42,32.71,7,1,1,0,0,1,1,4,1,276.5,1323525.711014628,692799.7697242813,372877.9719909615,4981.976362470436,1628.1210947833 -7132,8826,16012,16011,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,4.805282750262688,5.102061059962059,40,-3,125.1671967734615,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.452753851002115,5.091648373260639,32.42,32.71,52,48,5,1,1,0,1,6,1,4,1,276.5,1323525.711014628,692799.7697242813,372877.9719909615,4981.976362470436,1628.1210947833 -7133,8827,16013,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.781336239883429,6.221329466056822,0,0,-991.6899319814281,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.470587454233177,6.367989114962627,57.16,56.15,-9,-9,0,1,1,0,0,0,10,2,1,4809,535968.6676083872,-3812.571838737575,246587.2871020345,0,59.80790453695255 -7134,8828,16014,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.630274394387005,7.862036362982799,0,0,0,-1006.723695237487,0,2,-9,2019,12,0,45,45,1,0,0,6.460513647473607,6.460513647473607,0,0,0,0,0,1,1,0,0,0,45.74,49.54,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,690,14429.39365289422,0,0,0,1025.255056554802 -7134,8829,16015,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-855.2121134585968,0,2,2,2019,18,5,0,20,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,37.58,-9,-9,3.333333333333333,1,1,0,1,1,10,1,0,182,-136437.6999640629,0,0,0,-133.3275627090099 -7135,8830,16016,16017,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,7,0,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.945519318305027,0,53,47,52.4,52.91,7,1,1,0,0,0,2,1,1,193.5,472513.5546803928,1292.908553693052,125200.7078502068,0,1252.675387827074 -7135,8830,16017,16016,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,0,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.4,52.91,53,47,8.333333333333334,1,1,0,0,0,2,1,1,193.5,472513.5546803928,1292.908553693052,125200.7078502068,0,1252.675387827074 -7136,8831,16018,16019,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,0,0,0,7,-3,0,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,59.55,37.81,42.91,36.56,3.333333333333333,1,1,1,1,0,9,1,0,673,-30539.51116692658,0,0,0,1211.665802602862 -7136,8831,16019,16018,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,7,3,0,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.91,36.56,59.55,37.81,3.333333333333333,1,1,1,1,0,9,1,0,673,-30539.51116692658,0,0,0,1211.665802602862 -7137,8832,16020,16021,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,2,-8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,4.156183286779909,0,26.95889928938152,0,1,1,0,0,0,52,48,47,36,7,1,1,0,0,0,11,1,0,589.5,-34993.72086735594,0,0,0,1116.803006052972 -7137,8832,16021,16020,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,2,8,0,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,4.349254120325103,0,21.29282339467649,0,1,1,0,0,0,47,36,52,48,6.666666666666667,1,1,0,0,0,11,1,0,589.5,-34993.72086735594,0,0,0,1116.803006052972 -7138,8833,16022,16024,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.905129791869221,8.8790349377874,0,33,-1,-101.2879210213552,0,2,2,2019,11,0,38,37,1,0,0,16.75846176576633,16.75846176576633,0,0,0,0,0,1,1,0,2.8322809754781,0,50.52,47.59,57.16,56.15,6.666666666666667,1,1,0,0,9,13,5,1,786.3333333333334,456931.4122682691,148534.3185551736,118831.9285547513,7461.488902238023,5234.796405426724 -7138,8833,16023,-9,16022,16024,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1072.960692450673,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,1,13,5,1,786.3333333333334,456931.4122682691,148534.3185551736,118831.9285547513,7461.488902238023,5234.796405426724 -7138,8833,16024,16022,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.922151064141771,8.967603782930214,0,33,1,-167.9264001399698,0,3,1,2019,8,0,70,70,1,0,0,8.837236695726851,8.837236695726851,0,0,0,0,0,1,1,0,5.049564012588646,0,57.16,56.15,50.52,47.59,8.333333333333334,1,1,0,0,9,13,5,1,786.3333333333334,456931.4122682691,148534.3185551736,118831.9285547513,7461.488902238023,5234.796405426724 -7138,8834,16025,-9,16022,16024,1,1,22,0,0,0,2,2,1,0,4,5.778123182464838,5.897073619567561,0,0,0,-1089.493001395098,-9,2,2,2019,4,0,5,0,1,0,1,7.519616635365285,7.519616635365285,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,129,28996.75857135193,0,0,0,155.7812488594256 -7138,8835,16026,-9,16022,16024,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.2540353233262,1,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,519,14581.35718608729,0,0,0,0 -7139,8836,16027,16028,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,0,0,0,10,-13,70.30075804658128,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,34.66,51.81,7,1,1,0,0,1,2,3,0,1653,327695.6382020437,-43050.91562796757,111979.190920927,0,822.5150009284076 -7139,8836,16028,16027,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.768659892516008,7.45451648993045,0,10,13,31.24806938395429,0,2,3,2019,15,3,35,33,1,3,0,9.013179241334941,9.013179241334941,0,0,0,0,0,1,1,0,0,0,34.66,51.81,46,51,3.333333333333333,1,1,0,0,11,2,3,0,1653,327695.6382020437,-43050.91562796757,111979.190920927,0,822.5150009284076 -7139,8837,16029,-9,16027,16028,1,0,22,0,0,0,2,2,-9,1,4,0,0,0,0,0,-955.5120567939342,0,3,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,-9,-9,6.666666666666667,1,1,0,1,0,2,1,0,1511,62211.38088667335,0,0,0,319.0307657967122 -7140,8838,16030,16031,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,10,19,29.61010894841522,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,31.23063339335707,0,0,1,1,0,0,0,52.56,13.83,38.76,58.16,8.333333333333334,1,1,0,0,0,2,2,1,385.5,217878.224657095,30352.63396983823,0,0,1452.793454002104 -7140,8838,16031,16030,-9,-9,1,1,58,0,0,0,1,1,-9,1,3,6.812958861173263,6.824868739494915,0,10,-19,-86.70299052651106,0,3,3,2019,14,3,4,4,1,3,0,23.08687147367564,23.08687147367564,0,0,0,0,27,1,1,0,.4359585524320749,0,38.76,58.16,52.56,13.83,5,1,1,0,1,4,2,2,1,385.5,217878.224657095,30352.63396983823,0,0,1452.793454002104 -7141,8839,16032,16033,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.628659088881727,7.749831471954288,0,2,-3,97.77081812899294,0,-9,-9,2019,9,0,24,41,1,0,0,9.415370273430495,9.415370273430495,0,0,0,0,0,0,0,0,0,0,56.47,59.4,57.06,57.76,10,1,1,0,1,3,4,5,0,993.5,23460.58025631046,58237.58454620228,226923.5427893237,156330.3278772874,4004.63818588197 -7141,8839,16033,16032,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.718021083106125,8.424939143550523,0,2,3,-22.95682981391803,0,-9,-9,2019,6,0,41,40,1,0,0,15.084379739312,15.084379739312,0,0,0,0,0,0,0,0,3.592480704650371,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,2,4,5,0,993.5,23460.58025631046,58237.58454620228,226923.5427893237,156330.3278772874,4004.63818588197 -7142,8840,16034,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.395312075738722,5.662779812021522,0,0,-1028.89414475153,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.730612322808046,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,224,444883.8645824225,200256.1316262159,154293.7280542734,0,726.1227939019063 -7143,8841,16035,16036,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,50,1,6.078565270364802,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.427861728377936,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,0,9,4,1,539,1880499.548939034,736763.8540393263,621727.6375250574,0,9286.027489289565 -7143,8841,16036,16035,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.304896092558065,8.381772334863017,50,-1,-60.07083696141798,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.693755870205505,8.422640307543345,60.02,56.42,54.1,59.11,10,1,1,0,0,0,9,4,1,539,1880499.548939034,736763.8540393263,621727.6375250574,0,9286.027489289565 -7144,8842,16037,16038,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,9,-4,-70.38992206240587,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.01,24.73,42.9,50.31,1.666666666666667,1,1,0,0,0,2,3,0,738,200525.0974246384,211412.9686479699,86403.70201369033,53718.19548491052,1692.97384330611 -7144,8842,16038,16037,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.737696077650962,7.633956503615765,0,9,4,1.992492288217526,0,3,-9,2019,15,3,35,35,1,3,0,5.831678587909002,5.831678587909002,0,0,0,0,27,1,1,0,0,0,42.9,50.31,23.01,24.73,6.666666666666667,1,1,0,0,10,2,3,0,738,200525.0974246384,211412.9686479699,86403.70201369033,53718.19548491052,1692.97384330611 -7144,8843,16039,16040,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.582915792359228,7.669070461074536,0,4,0,-39.04025057161736,0,-9,-9,2019,7,0,40,40,1,0,0,6.404679895142887,6.404679895142887,0,0,0,0,0,1,1,0,0,0,57.16,56.15,34.46,29.08,8.333333333333334,1,1,0,0,4,2,3,0,674,-211629.7867357426,-6730.48128679513,122508.9320943849,180286.3748843953,1758.635656462249 -7144,8843,16040,16039,16037,16038,1,0,25,0,0,0,2,2,-9,0,2,7.299277541058954,7.184822857124755,0,4,0,-98.40782411528988,0,3,3,2019,20,8,19,49,1,8,0,7.543339898814418,7.543339898814418,0,0,0,0,2,1,1,0,0,0,34.46,29.08,57.16,56.15,3.333333333333333,1,1,0,0,2,2,3,0,674,-211629.7867357426,-6730.48128679513,122508.9320943849,180286.3748843953,1758.635656462249 -7145,8844,16041,16042,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.292723598932481,9.20764687034284,8.642038198997136,31,-1,-171.7251238220717,0,2,3,2019,11,0,37,48,1,2,0,12.82747869242174,12.82747869242174,0,0,0,0,0,0,0,0,0,8.594637359799203,49,48,51,48,7,1,1,0,0,9,4,5,1,453,941597.4844238342,476693.4097002515,461395.2308618276,0,4420.550228199434 -7145,8844,16042,16041,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.6427910572815,7.357813091314451,2,1,18.9641198712223,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.324544720793494,7.508132808669743,51,48,49,48,7,1,1,0,0,0,4,5,1,453,941597.4844238342,476693.4097002515,461395.2308618276,0,4420.550228199434 -7146,8845,16043,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.264586178260252,7.123513624468888,0,0,-922.8953796084129,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.899522864416319,7.212117240228165,52.87,38.28,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,940,505834.1234940175,334116.216986692,186333.0912963717,0,1552.737046315144 -7146,8846,16044,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.090427881727445,6.949673339150492,0,0,-961.3844346462356,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.694628860909094,7.001895839677326,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,250,787884.3980939989,219303.6407557821,369760.0167589553,0,906.9988873561447 -7147,8847,16045,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,0,0,0,0,-952.3873393296446,0,3,3,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,12,1,1,1092,707236.3068103025,252698.7623039419,371783.0225963867,0,-437.5609919072201 -7148,8848,16046,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.042476632029338,9.136228689482337,7.346258197260995,0,0,-829.8122926215236,-9,2,2,2019,6,0,40,0,1,0,0,27.5298671073609,27.5298671073609,0,0,0,0,0,0,0,0,0,7.403206305107445,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,7,5,0,335,3513048.886141536,1140871.266737472,1749291.861757864,0,3791.229131200736 -7149,8849,16047,-9,16048,16050,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-789.2889298039281,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1047.25,4011.511223596259,28908.88307990932,87133.07736374179,49293.06719431136,2923.620794960147 -7149,8849,16048,16050,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.710892763679836,8.097567092066228,0,9,13,29.46895014209405,0,2,2,2019,10,0,18,19,1,0,0,14.47905071588849,14.47905071588849,0,0,0,0,0,1,1,0,0,0,45.91,59.89,37.11,55.92,8.333333333333334,1,1,0,0,12,5,4,1,1047.25,4011.511223596259,28908.88307990932,87133.07736374179,49293.06719431136,2923.620794960147 -7149,8849,16049,-9,16048,16050,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.1646409235403,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1047.25,4011.511223596259,28908.88307990932,87133.07736374179,49293.06719431136,2923.620794960147 -7149,8849,16050,16048,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.384522718465247,8.279267747841152,0,9,-13,-34.66473929462989,0,2,2,2019,19,6,37,37,1,6,0,10.66225083281856,10.66225083281856,0,0,0,0,0,1,1,0,0,0,37.11,55.92,45.91,59.89,3.333333333333333,1,1,0,0,12,5,4,1,1047.25,4011.511223596259,28908.88307990932,87133.07736374179,49293.06719431136,2923.620794960147 -7150,8850,16051,16052,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.800396478537449,7.425954219732554,0,10,-4,39.10292964604785,0,2,-9,2019,4,0,32,32,1,0,0,6.547276192041796,6.547276192041796,0,0,0,0,0,0,0,0,2.739935984383614,0,57.8,36.71,49,50,10,1,1,0,0,12,4,5,1,648,57700.45354901761,4112.515413287046,0,0,2847.093366928198 -7150,8850,16052,16051,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.417068803870023,8.43955702160047,0,13,4,-169.0660851624115,0,3,3,2019,28,12,50,0,1,12,0,11.07822733172297,11.07822733172297,0,0,0,0,0,0,0,0,0,0,49,50,57.8,36.71,3.333333333333333,1,1,0,0,11,4,5,1,648,57700.45354901761,4112.515413287046,0,0,2847.093366928198 -7151,8851,16053,16054,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,9.118693188682828,8.717677956749371,0,10,6,144.1613532256123,0,2,2,2019,6,0,40,44,1,0,0,20.31802781148679,20.31802781148679,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,8.333333333333334,1,1,0,0,11,10,5,1,1256.5,275551.2115393145,-29182.50640186641,300448.2020462142,36290.27251574739,5530.688541221591 -7151,8851,16054,16053,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.844615902352174,8.710207519764637,0,10,-6,70.84892240608026,0,2,2,2019,15,4,52,48,1,4,0,15.60215989678601,15.60215989678601,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,5,1,1,0,0,11,10,5,1,1256.5,275551.2115393145,-29182.50640186641,300448.2020462142,36290.27251574739,5530.688541221591 -7151,8852,16055,-9,16053,16054,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1049.177248407633,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.460500252498232,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,419,0,0,0,0,-319.7848706895704 -7152,8853,16056,16057,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.938502969894328,8.746406898105702,0,32,1,-84.6284209813669,0,3,3,2019,9,0,40,42,1,0,0,19.99207413688637,19.99207413688637,0,0,0,0,0,0,0,0,6.377487239461504,0,52.34,56.95,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,413,334111.198555141,145901.1867399888,82507.98891049669,74109.08886096806,2924.827430347085 -7152,8853,16057,16056,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.401073551849247,6.588886888435534,0,32,-1,-36.41791301199392,0,2,2,2019,7,0,10,7,1,0,0,8.124914412170224,8.124914412170224,0,0,0,1.864717298506514,7,0,0,0,2.378052597211152,0,57.16,56.15,52.34,56.95,8.333333333333334,1,1,0,0,12,6,5,1,413,334111.198555141,145901.1867399888,82507.98891049669,74109.08886096806,2924.827430347085 -7153,8854,16058,16061,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,24,-3,-75.28084322784672,-9,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50,55,52,55,8,2,3,0,0,0,8,2,0,1272,176107.5552793375,74564.80247791219,178942.295675635,61276.80041566475,2508.602074980849 -7153,8854,16059,-9,16058,16061,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-860.1335336341133,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,1272,176107.5552793375,74564.80247791219,178942.295675635,61276.80041566475,2508.602074980849 -7153,8854,16060,-9,16058,16061,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.92317811531,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1272,176107.5552793375,74564.80247791219,178942.295675635,61276.80041566475,2508.602074980849 -7153,8854,16061,16058,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,7.036406810791918,6.979475742296069,0,24,3,-34.65271243689244,-9,3,-9,2019,9,0,17,0,1,1,0,8.298096884574548,8.298096884574548,0,0,0,0,0,1,1,0,0,0,52,55,50,55,8,2,3,0,0,5,8,2,0,1272,176107.5552793375,74564.80247791219,178942.295675635,61276.80041566475,2508.602074980849 -7153,8855,16062,-9,16058,16061,1,0,20,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1014.84671586787,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,2,8,1,0,1497,214432.3449137906,0,0,0,411.1129884486435 -7154,8856,16063,16064,-9,-9,1,0,30,0,0,0,1,1,1,0,5,7.885337851228924,7.697757737177111,0,5,-2,96.86152998745722,-9,-9,-9,2019,15,6,36,0,1,6,0,7.420961310807425,7.420961310807425,0,0,0,0,0,0,0,0,0,0,41.07,60.93,59.68,56.78,10,2,3,0,0,6,9,4,1,3433,95902.36732555207,-69938.51712087226,0,0,2542.320678121011 -7154,8856,16064,16063,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.09215730231759,7.925771945636377,0,5,2,-66.14646344843011,0,1,1,2019,3,0,45,40,1,0,0,8.402440143603673,8.402440143603673,0,0,0,0,0,0,0,0,.0158629542844155,0,59.68,56.78,41.07,60.93,6.666666666666667,1,1,0,0,11,9,4,1,3433,95902.36732555207,-69938.51712087226,0,0,2542.320678121011 -7155,8857,16065,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.1291856462868,0,-9,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,31.69,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,563,0,0,0,0,1497.34026931115 -7156,8858,16066,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.624046588156543,7.651692000026651,0,0,0,-1114.911384797498,0,3,3,2019,12,0,30,30,1,0,0,7.944251752910575,7.944251752910575,0,0,0,0,0,0,0,0,0,0,44.08,41.97,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,364,607768.4042027076,408753.5211332598,129090.4005040679,0,1018.137605128783 -7157,8859,16067,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.647592617988466,5.771016655848635,0,0,-1016.435351960814,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.348729785539918,5.591948546445227,46.84,47.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,920,418159.9921279253,54554.8603151966,307377.1749668538,0,502.536192294746 -7157,8860,16068,-9,16067,-9,1,0,58,0,0,0,1,1,-9,0,4,7.351931585439965,7.404984085092141,0,0,0,-1147.436431181474,0,3,2,2019,10,1,35,0,1,1,0,5.916824836054098,5.916824836054098,0,0,0,0,0,1,1,0,4.069587572365341,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,806,-37348.10548488386,-25668.15384031107,0,0,321.9641863371477 -7158,8861,16069,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.484350545582201,6.551929252096884,0,0,-995.8270212126977,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.748172685576755,6.346079912368555,60.53,42.47,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,981,411688.2332164681,72631.92973000914,51164.98552425551,0,1043.703035239385 -7159,8862,16070,-9,16071,16072,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1024.441706331093,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.77,54.89,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,616,280861.2653550371,124147.2172347454,88631.66655792377,59629.48255807947,3204.766727133324 -7159,8862,16071,16072,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.474625665036069,7.851266714951514,0,4,0,-180.3934410908927,0,3,3,2019,12,0,28,28,1,0,0,5.827036550938054,5.827036550938054,0,0,0,0,2,1,1,0,0,0,57.16,56.15,53.64,51.08,8.333333333333334,1,1,0,0,9,10,4,1,616,280861.2653550371,124147.2172347454,88631.66655792377,59629.48255807947,3204.766727133324 -7159,8862,16072,16071,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.759974852692871,8.730242388025175,0,4,0,-61.73624954126426,0,3,2,2019,10,0,45,45,1,0,0,10.00393022129528,10.00393022129528,0,0,0,0,0,1,1,0,0,0,53.64,51.08,57.16,56.15,6.666666666666667,1,1,0,0,9,10,4,1,616,280861.2653550371,124147.2172347454,88631.66655792377,59629.48255807947,3204.766727133324 -7160,8863,16073,16074,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.641321715390784,7.904424391723333,0,7,-4,-8.341092192801133,0,2,3,2019,20,9,23,26,1,9,0,10.83743342405432,10.83743342405432,0,0,0,0,7,0,0,0,2.515058188714984,0,50.34,32.47,43.4,31.71,6.666666666666667,1,1,0,0,8,10,4,1,380,1497377.482874784,1256933.088760352,272920.8403860094,38474.720485939,2679.9801187079 -7160,8863,16074,16073,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.237857166701069,8.323855052981688,0,7,4,-58.20657643972729,0,2,2,2019,13,3,37,37,1,3,0,12.40844578660574,12.40844578660574,0,0,0,0,7,0,0,0,2.975952437719153,0,43.4,31.71,50.34,32.47,5,1,1,0,0,8,10,4,1,380,1497377.482874784,1256933.088760352,272920.8403860094,38474.720485939,2679.9801187079 -7161,8864,16075,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.927186704703746,7.123313053065255,0,0,-1017.189951536647,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.333282237523991,6.696918349969657,61.12,8.370000000000001,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,217,340383.1021088641,172363.7462808707,226309.171245691,0,1278.377197871338 -7161,8865,16076,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.6113259932096,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,29.27680256753121,0,0,1,1,0,0,0,30.43,21.22,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,643,131208.2516545697,0,0,0,1020.610348331788 -7161,8866,16077,-9,-9,16076,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1006.117027175506,0,-9,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,52.24,50.75,-9,-9,10,1,1,0,1,0,12,1,0,323,218124.1325741772,-104229.2488500698,0,0,651.8807851862365 -7162,8867,16078,-9,16079,16081,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-977.1036388012773,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,2,0,589.25,1089116.853844515,163798.4242185633,501780.1692468649,31486.4093721574,2876.818012437127 -7162,8867,16079,16081,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,0,0,0,9,-19,30.04235392849172,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,35.2,48.71,29.34,39.16,8.333333333333334,1,1,0,0,0,13,2,0,589.25,1089116.853844515,163798.4242185633,501780.1692468649,31486.4093721574,2876.818012437127 -7162,8867,16080,-9,16079,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1052.912168488552,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,2.415654658327824,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,2,0,589.25,1089116.853844515,163798.4242185633,501780.1692468649,31486.4093721574,2876.818012437127 -7162,8867,16081,16079,-9,-9,1,1,61,0,2,0,2,2,-9,0,2,0,6.822415349310301,7.63628362246876,9,19,30.89602707527851,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,27,1,1,0,0,7.570770250958401,29.34,39.16,35.2,48.71,6.666666666666667,1,1,0,0,0,13,2,0,589.25,1089116.853844515,163798.4242185633,501780.1692468649,31486.4093721574,2876.818012437127 -7162,8868,16082,-9,16079,-9,1,1,23,0,2,0,2,2,-9,0,4,7.02301906399074,6.930203598394225,0,0,0,-960.3686918553199,0,2,-9,2019,11,0,40,37,1,1,1,2.901715256092526,2.901715256092526,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,2,0,1975,-1544.985206165454,18930.35272256437,0,0,2107.321714383419 -7162,8869,16083,-9,16079,-9,1,1,21,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1089.12064841501,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,33.45,51.41,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,138,-58509.58478382938,0,0,0,597.5854979207718 -7162,8870,16084,-9,16079,16081,1,1,19,0,2,0,2,2,-9,0,3,8.073568154081713,8.114428579008305,0,0,0,-1129.46972472972,0,2,2,2019,11,0,40,37,1,0,1,7.610613461162609,7.610613461162609,0,0,0,0,0,1,1,0,0,0,49.37,46.02,-9,-9,5,1,1,0,0,3,13,4,0,45,122700.3530474054,152602.2919211108,0,0,927.9337986272726 -7163,8871,16085,16087,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.059430316511381,8.43962328039334,0,9,0,50.65500033709026,0,2,2,2019,20,9,34,32,1,9,0,9.846401477285232,9.846401477285232,0,0,0,0,0,1,1,0,0,0,27.91,58.72,51.24,58.84,3.333333333333333,1,1,0,0,9,6,5,1,859.6666666666666,356192.0413168998,319463.4018135451,143901.4804377704,38608.56101487827,3767.775266165211 -7163,8871,16086,-9,16085,16087,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.528492276014,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,859.6666666666666,356192.0413168998,319463.4018135451,143901.4804377704,38608.56101487827,3767.775266165211 -7163,8871,16087,16085,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.874229833128604,8.902111631236021,0,9,0,45.34845050922202,0,1,1,2019,6,0,42,42,1,0,0,21.86356817749899,21.86356817749899,0,0,0,0,0,1,1,0,0,0,51.24,58.84,27.91,58.72,8.333333333333334,1,1,0,0,11,6,5,1,859.6666666666666,356192.0413168998,319463.4018135451,143901.4804377704,38608.56101487827,3767.775266165211 -7164,8872,16088,16089,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.156838455060662,7.88547772518642,0,15,4,33.01358924907222,0,-9,-9,2019,9,0,37,37,1,1,0,10.44427033001319,10.44427033001319,0,0,0,0,0,1,1,0,0,0,53,55,59.36,27.79,8,1,1,0,0,1,7,3,0,552.5,134384.3036139547,59279.78864565124,240041.6101369508,102685.7454008931,2245.220055816008 -7164,8872,16089,16088,-9,-9,1,0,41,0,0,0,1,1,-9,1,3,0,0,0,15,-4,-124.006487560081,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.36,27.79,53,55,8.333333333333334,1,1,0,0,0,7,3,0,552.5,134384.3036139547,59279.78864565124,240041.6101369508,102685.7454008931,2245.220055816008 -7165,8873,16090,-9,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,7.859228145505848,7.604370410017061,0,0,0,-1104.401497871184,0,2,2,2019,6,0,30,37,1,0,0,8.055978331862118,8.055978331862118,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,4,3,0,1030,63489.20277253099,-12009.84837822286,99157.49520412441,41354.43028955875,1431.704353403542 -7165,8873,16091,-9,16090,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.733081504025,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1030,63489.20277253099,-12009.84837822286,99157.49520412441,41354.43028955875,1431.704353403542 -7165,8873,16092,-9,16090,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.592544219873,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,1030,63489.20277253099,-12009.84837822286,99157.49520412441,41354.43028955875,1431.704353403542 -7166,8874,16093,16094,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.654284298528491,8.833206340676218,0,4,0,54.12081562095428,0,2,2,2019,10,0,37,38,1,1,0,21.84637405929168,21.84637405929168,0,0,0,0,0,1,1,0,0,0,51,56,39.99,55.83,7,1,1,0,0,1,6,4,1,149.3333333333333,253175.7800347025,156979.7387689097,196784.7386435586,72419.12275207561,3160.470664322549 -7166,8874,16094,16093,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,4,0,36.19946227197206,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.809213960487036,0,39.99,55.83,51,56,8.333333333333334,1,1,0,0,4,6,4,1,149.3333333333333,253175.7800347025,156979.7387689097,196784.7386435586,72419.12275207561,3160.470664322549 -7166,8874,16095,-9,16094,16093,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.806375091388,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,149.3333333333333,253175.7800347025,156979.7387689097,196784.7386435586,72419.12275207561,3160.470664322549 -7167,8875,16096,16097,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.015906264351404,8.128508561157,5.80866713257898,36,-2,14.69188641665273,0,2,3,2019,6,0,30,37,1,0,0,17.14135119341731,17.14135119341731,0,0,0,0,2,0,0,0,6.0656023615417,6.377847619373282,58.3,52.91,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,1408.5,34932119.21418251,1537744.001648426,1868095.491184925,0,5637.907806663396 -7167,8875,16097,16096,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.137385251411946,9.286466165372566,0,36,2,145.3087719815071,0,2,3,2019,7,0,47,37,1,0,0,23.87362483808246,23.87362483808246,0,0,0,0,7,0,0,0,6.24736466065479,0,54.96,53.17,58.3,52.91,5,1,1,0,0,12,10,5,1,1408.5,34932119.21418251,1537744.001648426,1868095.491184925,0,5637.907806663396 -7168,8876,16098,16099,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.295320847374683,8.448698277663102,0,1,0,-58.64677022558559,-9,2,-9,2019,11,0,50,0,1,0,0,9.175745511883587,9.175745511883587,0,0,0,0,0,0,0,0,0,0,54.97,47.63,52.48,54.33,8.333333333333334,1,1,0,0,8,7,5,1,813.5,15453.41569322267,71429.70878199083,0,0,4308.75000822264 -7168,8876,16099,16098,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,9.062981674523618,8.430606299289366,0,1,0,111.444780516871,-9,-9,-9,2019,8,0,42,0,1,0,0,20.11792329204608,20.11792329204608,0,0,0,0,0,0,0,0,4.141189339517414,0,52.48,54.33,54.97,47.63,8.333333333333334,1,1,0,0,8,7,5,1,813.5,15453.41569322267,71429.70878199083,0,0,4308.75000822264 -7169,8877,16100,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.891762932938114,8.117146999383412,0,0,-938.1691980688247,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.922423437194304,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,85,1266564.178979852,250121.446724002,99972.04354145915,0,1474.367529109199 -7170,8878,16101,-9,16102,16104,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.244917702492,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,2,0,822,123313.7085695467,56138.87929548812,0,0,1712.436670505348 -7170,8878,16102,16104,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,7.101608833815816,7.069400398396239,0,9,-1,-93.20926266110679,0,3,-9,2019,19,7,25,29,1,7,0,5.652925025730245,5.652925025730245,0,0,0,0,0,1,1,0,0,0,47.06,34.16,46.05,47.79,3.333333333333333,1,1,0,0,5,4,2,0,822,123313.7085695467,56138.87929548812,0,0,1712.436670505348 -7170,8878,16103,-9,16102,16104,1,1,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-998.0526175678277,-9,-9,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,4,2,0,822,123313.7085695467,56138.87929548812,0,0,1712.436670505348 -7170,8878,16104,16102,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,9,1,-5.462095960590023,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.05,47.79,47.06,34.16,5,1,1,1,0,9,4,2,0,822,123313.7085695467,56138.87929548812,0,0,1712.436670505348 -7171,8879,16105,-9,-9,-9,1,0,25,0,0,0,3,3,-9,0,3,6.845678317315866,6.806105205990574,0,0,0,-1090.880559304968,-9,-9,-9,2019,15,4,16,0,1,4,0,10.47508635149244,10.47508635149244,0,0,0,0,0,1,1,0,0,0,12.9,60.35,-9,-9,3.333333333333333,1,1,0,0,9,13,2,0,1153,-23689.61344912445,0,0,0,1371.49916638192 -7172,8880,16106,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,4,7.866008037265308,7.828281369903225,0,0,0,-927.8352705613773,-9,1,-9,2019,9,3,40,0,1,3,1,7.661943876645246,7.661943876645246,0,0,0,0,0,0,0,0,0,0,63.11,35.52,-9,-9,10,1,1,0,0,2,2,4,1,411,49376.32413094155,-2234.111624800066,0,0,990.246998295605 -7173,8881,16107,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.019927992201,9.042926420338151,0,0,0,-1133.220053320443,0,3,-9,2019,11,0,41,45,1,0,0,20.36924090133313,20.36924090133313,0,0,0,0,0,1,1,0,0,0,33.9,60.31,-9,-9,6.666666666666667,1,1,0,0,8,12,5,0,403,569352.6139229351,407451.5761114501,324875.4172998244,165312.3623330599,2739.264732291387 -7174,8882,16108,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1004.159461917421,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,2,1,1,0,0,0,36,27,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,2906,116969.2292537256,0,0,0,1370.947352469771 -7175,8883,16109,-9,16112,16111,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.736837560261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,838.75,21418.29868936871,42630.61653755794,196070.5036427868,93010.89568699649,2006.97856124603 -7175,8883,16110,-9,16112,16111,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.3301796631973,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,838.75,21418.29868936871,42630.61653755794,196070.5036427868,93010.89568699649,2006.97856124603 -7175,8883,16111,16112,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.58511560726347,8.567330013601779,0,8,2,22.87360482948275,0,-9,2,2019,5,0,37,37,1,0,0,16.33468270655072,16.33468270655072,0,0,0,0,0,1,1,0,0,0,52.24,50.75,19.42,37.26,6.666666666666667,1,1,0,0,11,1,4,1,838.75,21418.29868936871,42630.61653755794,196070.5036427868,93010.89568699649,2006.97856124603 -7175,8883,16112,16111,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,0,0,0,8,-2,-7.475080476801883,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,37.26,52.24,50.75,1.666666666666667,1,1,0,0,10,1,4,1,838.75,21418.29868936871,42630.61653755794,196070.5036427868,93010.89568699649,2006.97856124603 -7176,8884,16113,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.649833455442746,7.930745982682036,0,0,0,-974.3238071833648,0,2,2,2019,24,12,40,35,1,12,0,8.704882527319647,8.704882527319647,0,0,0,0,0,1,1,0,0,0,26.12,51.92,-9,-9,5,1,1,0,1,11,1,3,0,481,-12532.38163323203,100200.2873437435,0,0,814.9224303456715 -7177,8885,16114,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.735389047169407,8.104976352290871,6.845642844804509,0,0,-922.5307092199631,0,3,3,2019,6,0,21,21,1,0,0,10.36313197484321,10.36313197484321,0,0,0,0,0,1,1,0,3.840911575620958,7.556118244411847,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,740,464384.7965424659,379400.9812710407,156358.3233234124,0,2708.931111412436 -7178,8886,16115,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.089579943403974,6.639016511345147,0,0,-1016.049317359119,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.970530797884861,6.593132714955046,43.93,28.74,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,475,331899.7648484589,121202.4883513594,247980.1674854141,0,281.1822486863884 -7179,8887,16116,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.590581427050586,7.776695110890974,0,0,-885.9740304828175,0,1,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.051092090838114,7.498752675671414,44.41,46.23,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1288,135702.7265593146,260708.9436013227,0,0,1342.295225767982 -7180,8888,16117,-9,16119,16118,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.042449513283,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1097.333333333333,35140.56564828721,12537.62424811838,138769.6533735339,71137.33865709805,1886.461605959197 -7180,8888,16118,16119,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.1512129970935,8.084462385688873,0,10,3,52.36626805279501,0,-9,-9,2019,10,0,44,44,1,0,0,9.09667952749157,9.09667952749157,0,0,0,0,0,1,1,0,0,0,57.33,53.46,31.09,45.59,6.666666666666667,1,1,0,0,12,12,3,1,1097.333333333333,35140.56564828721,12537.62424811838,138769.6533735339,71137.33865709805,1886.461605959197 -7180,8888,16119,16118,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,6.644440251247736,6.741170878130402,0,10,-3,-154.9031282154217,0,-9,-9,2019,10,0,12,0,1,0,0,7.539540244908082,7.539540244908082,0,0,0,1.040278066902578,42,1,1,0,0,0,31.09,45.59,57.33,53.46,5,1,1,0,0,4,12,3,1,1097.333333333333,35140.56564828721,12537.62424811838,138769.6533735339,71137.33865709805,1886.461605959197 -7180,8889,16120,-9,16119,16118,1,0,20,0,1,0,2,2,-9,0,3,7.152024067818415,7.265108875134905,0,0,0,-1001.487578469402,0,2,2,2019,12,1,24,40,1,1,1,6.414039940144847,6.414039940144847,0,0,0,0,0,1,1,0,0,0,29.46,59.39,-9,-9,5,1,1,0,0,4,12,3,1,3934,-143219.5283467913,62810.72976549863,0,0,446.5456608542798 -7181,8890,16121,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,8.019012357949368,7.833576455181779,0,0,-1093.875559571661,0,3,1,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.406931185411368,7.939102259300558,46.28,23.07,-9,-9,3.333333333333333,1,1,0,0,0,9,4,1,767,873375.3622602813,211935.7484846022,632697.2097248008,0,1915.299402276298 -7182,8891,16122,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.309839344293085,6.150723459167283,0,0,-939.4102986495659,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.959911311799695,49.76,49.88,-9,-9,10,1,1,0,0,0,12,2,1,103,-87103.38118582946,0,0,0,683.1290802507576 -7183,8892,16123,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-994.5946885931647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,779,-248357.1984426202,0,0,0,958.792800192012 -7184,8893,16124,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1007.01169802172,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.04,52.16,-9,-9,1.666666666666667,4,5,0,0,0,10,1,0,142,295020.1078041227,214644.8802508472,268181.8016456182,0,826.9161926557912 -7185,8894,16125,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,7.916006882340745,7.809873904614967,0,0,0,-930.3355693680631,0,3,1,2019,12,0,42,38,1,0,0,7.999385137918662,7.999385137918662,0,0,0,0,0,0,0,0,7.451122043981358,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,7,12,4,1,471,106494.3214439975,63093.70716172063,235524.3575958984,23182.4856602608,1437.045748770582 -7186,8895,16126,-9,16129,16130,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.091368663874,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,520.6,41108.28807464515,5038.261129169345,0,0,6234.354379088203 -7186,8895,16127,-9,16129,16130,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-797.4845409549247,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,520.6,41108.28807464515,5038.261129169345,0,0,6234.354379088203 -7186,8895,16128,-9,16129,16130,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-935.6864121827153,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,520.6,41108.28807464515,5038.261129169345,0,0,6234.354379088203 -7186,8895,16129,16130,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.060624553609959,7.817251525504044,0,18,-7,-98.50882253966779,0,2,2,2019,10,0,29,29,1,0,0,10.69022249811191,10.69022249811191,0,0,0,0,0,1,1,0,0,0,49.04,55.86,58.3,52.91,8.333333333333334,1,1,0,0,12,7,5,1,520.6,41108.28807464515,5038.261129169345,0,0,6234.354379088203 -7186,8895,16130,16129,-9,-9,1,1,45,1,3,0,2,2,-9,0,4,9.137370164077065,8.870074875062409,0,17,7,55.47039950644433,0,2,2,2019,7,0,22,22,1,0,0,49.03485904375928,49.03485904375928,0,0,0,0,0,1,1,0,0,0,58.3,52.91,49.04,55.86,1.666666666666667,1,1,0,0,12,7,5,1,520.6,41108.28807464515,5038.261129169345,0,0,6234.354379088203 -7187,8896,16131,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.511374715835739,8.829000733924923,7.305818406909108,0,0,-1019.523197076677,0,3,3,2019,7,0,37,37,1,0,0,14.654301177348,14.654301177348,0,0,0,0,0,1,1,0,6.331282371746184,7.639494636286426,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,236,78367.38013613605,214050.8218265089,148686.2745965086,0,2359.358106366283 -7188,8897,16132,16133,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,5.850480331799818,6.236639857653111,8,7,42.73586042802835,0,2,1,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,6.166283403130154,6.187781155605972,24.93,19.95,46.04,48.02,0,1,1,0,0,0,11,2,0,332.5,234567.2198413797,185968.9072644758,102631.7246457157,16010.24338499916,2673.437228118804 -7188,8897,16133,16132,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,0,0,0,8,-7,99.57009028180241,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46.04,48.02,24.93,19.95,5,1,1,0,0,0,11,2,0,332.5,234567.2198413797,185968.9072644758,102631.7246457157,16010.24338499916,2673.437228118804 -7189,8898,16134,16135,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.053874871390676,7.944036745761867,0,24,1,79.90484713664458,-9,2,2,2019,8,0,39,0,1,0,0,11.26701726813564,11.26701726813564,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,1004.5,1289954.200733213,738949.5318514621,392485.5723307804,0,2623.039815460229 -7189,8898,16135,16134,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.009726295104342,8.034919293276252,0,24,-1,-90.10864996093743,0,3,3,2019,8,0,45,45,1,0,0,10.79323935621727,10.79323935621727,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,10,9,4,1,1004.5,1289954.200733213,738949.5318514621,392485.5723307804,0,2623.039815460229 -7190,8899,16136,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.872613523746333,7.76092305020871,0,0,0,-1095.145784131732,0,-9,3,2019,7,0,35,35,1,0,0,9.023608309765601,9.023608309765601,0,0,0,0,0,1,1,0,0,0,52.25,53.24,-9,-9,8.333333333333334,3,4,0,0,9,8,3,0,709,188590.2749506535,0,0,0,983.8390328308212 -7191,8900,16137,16138,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.196352599932373,9.188558378963148,0,8,3,90.80303287588396,0,-9,-9,2019,10,0,38,42,1,0,0,23.28527825000908,23.28527825000908,0,0,0,0,0,0,0,0,7.612458798393343,0,51.24,58.84,38.13,50.05,7,1,1,0,0,11,4,5,1,740.5,245291.3340452227,32561.52591466945,228977.0393161418,0,2923.310646590996 -7191,8900,16138,16137,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.459000031869574,7.128112643758767,0,32,-3,95.47392626649911,0,-9,2,2019,22,10,20,20,1,10,0,8.494805192659566,8.494805192659566,0,0,0,0,0,0,0,0,7.153412023587129,0,38.13,50.05,51.24,58.84,8.333333333333334,1,1,0,0,11,4,5,1,740.5,245291.3340452227,32561.52591466945,228977.0393161418,0,2923.310646590996 -7191,8901,16139,-9,16138,16137,1,1,19,0,0,0,2,2,1,0,4,7.215012720768972,7.273190401782148,0,0,0,-1020.84838438684,-9,3,2,2019,13,2,40,0,1,2,1,3.62575554983062,3.62575554983062,0,0,0,0,0,0,0,0,0,0,48.77,42.51,-9,-9,5,1,1,0,0,1,4,3,1,230,-140032.8041122431,-43791.45492342058,0,0,366.1088047604972 -7192,8902,16140,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.628370639479508,7.627141328906832,0,0,0,-897.8250730346886,0,-9,-9,2019,11,2,20,23,1,2,0,11.089115666669,11.089115666669,0,0,0,0,0,1,1,0,0,0,50.09,47.3,-9,-9,5,1,1,0,0,3,4,3,0,573.5,-27283.83569809141,19763.30328948741,0,0,1784.760478321226 -7192,8902,16141,-9,16140,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-835.8181784330347,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,573.5,-27283.83569809141,19763.30328948741,0,0,1784.760478321226 -7193,8903,16142,16145,-9,-9,1,0,40,1,2,0,1,1,-9,0,5,6.909461565355438,6.697512251570258,0,7,-4,-22.70925926496648,0,-9,-9,2019,4,0,12,12,1,0,0,7.64840646489467,7.64840646489467,0,0,0,0,0,1,1,0,2.806692991607931,0,59.43,58.05,62.39,56.71,10,2,3,0,0,3,10,4,1,617,535467.6108671399,181993.9826868285,335885.4652352373,162568.4825788462,5299.16600554378 -7193,8903,16143,-9,16142,16145,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.189704109567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,10,4,1,617,535467.6108671399,181993.9826868285,335885.4652352373,162568.4825788462,5299.16600554378 -7193,8903,16144,-9,16142,16145,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.026769785982,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,4,1,617,535467.6108671399,181993.9826868285,335885.4652352373,162568.4825788462,5299.16600554378 -7193,8903,16145,16142,-9,-9,1,1,44,1,2,0,1,1,-9,0,5,8.731491239537798,8.503627300313754,0,7,4,-37.56533778174683,0,1,1,2019,6,0,35,40,1,0,0,20.16738336953578,20.16738336953578,0,0,0,0,0,1,1,0,8.106712286546847,0,62.39,56.71,59.43,58.05,10,1,1,0,0,7,10,4,1,617,535467.6108671399,181993.9826868285,335885.4652352373,162568.4825788462,5299.16600554378 -7194,8904,16146,16147,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,0,0,49,-3,-39.76712064467129,0,2,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.505388398747441,0,47.51,39.93,55.24,55.87,8.333333333333334,1,1,0,0,0,9,5,1,597.5,13299122.60696752,2101433.100218611,964680.769598664,0,9758.917202510045 -7194,8904,16147,16146,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,9.429997138237825,10.04291128212983,49,3,-53.09676302249434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.462857889450121,9.740013929417588,55.24,55.87,47.51,39.93,8.333333333333334,1,1,0,0,0,9,5,1,597.5,13299122.60696752,2101433.100218611,964680.769598664,0,9758.917202510045 -7195,8905,16148,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.536410703325874,7.395389445980689,0,0,0,-963.0318958786395,0,-9,-9,2019,13,1,51,24,1,1,0,4.087307899848399,4.087307899848399,0,0,0,0,27,1,1,0,0,0,43.49,49.89,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,180,87350.16113143349,0,0,0,1743.677695665071 -7196,8906,16149,-9,16150,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-842.6471675468041,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,662,5848.465601874566,0,0,0,1194.805252130637 -7196,8906,16150,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,2,7.657676478783459,7.517549335191441,0,0,0,-907.7161424478054,0,2,3,2019,13,1,45,22,1,1,0,4.319719195649887,4.319719195649887,0,0,0,0,0,1,1,0,0,0,40.44,33.06,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,662,5848.465601874566,0,0,0,1194.805252130637 -7197,8907,16151,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1128.815051172274,0,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.9,39.47,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,2248,112630.0423844312,0,0,0,1180.529326391805 -7198,8908,16152,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.184809285018,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,10,4,2,1,0,0,6,1,0,194,15451.98663210757,0,0,0,762.4205195443265 -7199,8909,16153,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,5.750783432454888,5.708246582813184,0,0,-970.1805845274143,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.962608329972571,5.569672857170695,56.22,45.75,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,197,-2464.88652894384,95531.66941955852,166626.9150995522,0,1476.566305434332 -7200,8910,16154,16155,-9,-9,1,1,34,1,3,0,3,3,-9,0,4,7.949260055997806,7.931827945420622,0,10,0,5.12338106230114,0,3,2,2019,6,0,37,45,1,0,0,9.650566865495048,9.650566865495048,0,0,0,0,0,1,1,0,0,0,60.12,54.8,62.49,55.09,8.333333333333334,1,1,0,0,11,13,3,0,547.6,689998.3208373755,0,0,0,3430.387357483814 -7200,8910,16155,16154,-9,-9,1,0,34,1,3,0,1,1,-9,1,4,6.982280876435617,6.736894253666078,0,10,0,27.70412123585735,0,2,3,2019,6,0,13,3,1,0,0,9.137889127782309,9.137889127782309,0,0,0,0,27,1,1,0,0,0,62.49,55.09,60.12,54.8,10,1,1,0,0,10,13,3,0,547.6,689998.3208373755,0,0,0,3430.387357483814 -7200,8910,16156,-9,16155,16154,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.5160574182092,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,547.6,689998.3208373755,0,0,0,3430.387357483814 -7200,8910,16157,-9,16155,16154,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.000254019172,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,547.6,689998.3208373755,0,0,0,3430.387357483814 -7200,8910,16158,-9,16155,16154,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.326663918069,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,547.6,689998.3208373755,0,0,0,3430.387357483814 -7201,8911,16159,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.288403151856998,7.539191827526099,0,0,0,-918.4617748629537,0,2,-9,2019,17,6,30,50,1,6,1,6.279551624702416,6.279551624702416,0,0,0,0,0,0,0,0,0,0,44.13,58.1,-9,-9,6.666666666666667,1,1,0,1,5,12,3,0,233,-32066.91595547381,0,0,0,450.1694425172712 -7202,8912,16160,16161,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-48.59055975377223,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.080868683421808,0,56.52,48.31,58.5,44.67,8.333333333333334,1,1,0,0,0,1,3,1,418,915838.2033046143,622047.1318711804,178286.0954145631,0,2469.689020678646 -7202,8912,16161,16160,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.750654165143477,7.574145893876091,54,3,-170.1572038617005,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.732716530903744,7.765978632179256,58.5,44.67,56.52,48.31,8.333333333333334,1,1,0,0,0,1,3,1,418,915838.2033046143,622047.1318711804,178286.0954145631,0,2469.689020678646 -7203,8913,16162,16163,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.045309402748647,5.866153208850467,4,2,-61.47038748325814,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.473774560002679,5.946023232184165,62.08,19.21,52,54.51,8.333333333333334,1,1,0,0,6,7,2,1,360.5,639155.9589924947,108163.3278526711,365912.5068989242,0,3497.282987145682 -7203,8913,16163,16162,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.824088660285844,6.98938038208667,4,-2,-100.7865114416907,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.866581305139931,0,52,54.51,62.08,19.21,10,1,1,0,0,0,7,2,1,360.5,639155.9589924947,108163.3278526711,365912.5068989242,0,3497.282987145682 -7204,8914,16164,16165,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,2,1,0,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,18.35,42.07,34.85,0,1,1,1,1,1,4,1,0,1140,128980.9469989437,17389.38534923013,0,0,1875.338520919587 -7204,8914,16165,16164,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,2,-1,0,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.07,34.85,31.64,18.35,1.666666666666667,1,1,0,0,0,4,1,0,1140,128980.9469989437,17389.38534923013,0,0,1875.338520919587 -7205,8915,16166,16167,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,11,-8,-133.0431346586445,0,3,2,2019,7,0,0,36,3,0,0,0,0,0,0,0,0,0,1,1,0,4.445945189327245,0,61.41,51.58,53.78,48.41,8.333333333333334,2,3,1,0,8,4,3,1,333.5,1702018.15812295,1017549.771459534,368861.8958732019,0,2460.167256616873 -7205,8915,16167,16166,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.64994270714633,7.717215923884187,11,8,7.777518020913228,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.220928255307811,7.976979462180418,53.78,48.41,61.41,51.58,8.333333333333334,1,1,0,0,5,4,3,1,333.5,1702018.15812295,1017549.771459534,368861.8958732019,0,2460.167256616873 -7206,8916,16168,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.305348600797,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,51,54,-9,-9,8,1,1,1,1,0,5,1,0,938,138278.6616420975,0,0,0,1308.752297809596 -7207,8917,16169,-9,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,6.694693902155731,6.772723008267495,0,0,-972.9682005632111,0,2,1,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,7.323625649497365,0,16.46,53.74,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,372,54035.21717022478,-59648.41299620044,0,0,1253.648877820638 -7207,8917,16170,-9,16169,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.378506750427,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,372,54035.21717022478,-59648.41299620044,0,0,1253.648877820638 -7208,8918,16171,16173,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,6.546131953670233,5.942722688363755,0,7,-4,16.85224031968166,0,3,2,2019,12,0,10,10,1,0,0,6.027593746017897,6.027593746017897,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.73,36.69,8.333333333333334,1,1,0,0,2,11,3,0,252.6666666666667,325448.607467969,124902.3333714447,258645.7919054288,0,2088.137665222142 -7208,8918,16172,-9,16171,16173,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-958.958677288859,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,252.6666666666667,325448.607467969,124902.3333714447,258645.7919054288,0,2088.137665222142 -7208,8918,16173,16171,-9,-9,1,1,56,0,2,0,2,2,-9,0,2,8.357803159822073,8.265234071078213,0,7,4,-81.56525637035314,0,-9,-9,2019,12,0,39,51,1,0,0,11.08193933532343,11.08193933532343,0,0,0,0,0,1,1,0,0,0,46.73,36.69,48.87,58.55,5,1,1,0,0,5,11,3,0,252.6666666666667,325448.607467969,124902.3333714447,258645.7919054288,0,2088.137665222142 -7209,8919,16174,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.348953807258235,7.01124257198638,0,0,0,-1067.384527370249,0,3,3,2019,12,1,25,22,1,1,0,5.089960066932276,5.089960066932276,0,0,0,0,0,1,1,0,0,0,38.61,43.02,-9,-9,6.666666666666667,2,3,0,0,4,1,2,0,145,115354.7319633732,0,218917.6621953059,40907.0918663323,730.739442903607 -7210,8920,16175,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.135543850457875,8.152068613401189,0,0,0,-966.3059193066043,0,-9,-9,2019,6,0,38,18,1,0,0,10.54955049100746,10.54955049100746,0,0,0,0,0,0,0,0,.8115345931495641,0,51.14,60.45,-9,-9,8.333333333333334,2,3,0,0,2,10,4,0,186,-24149.52528620903,169343.0737145217,0,0,1209.697827557288 -7211,8921,16176,16177,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,7.893604979183213,7.88295848933216,9,9,-61.17229757582702,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,71.81147243314618,0,0,1,1,0,3.846344214849954,8.143581849140693,50.82,27.06,18.35,34.63,8.333333333333334,1,1,0,0,0,12,4,1,1198.5,2131068.66644549,723101.9472549849,208061.2222046831,0,4142.540860834371 -7211,8921,16177,16176,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.925892308395895,8.093885502913066,9,0,-78.6871733461695,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,6.798920997212369,7.844573269220064,18.35,34.63,50.82,27.06,0,1,1,0,0,0,12,4,1,1198.5,2131068.66644549,723101.9472549849,208061.2222046831,0,4142.540860834371 -7212,8922,16178,16179,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.556763637964922,8.389462603126114,0,4,4,41.07811104163121,0,-9,-9,2019,13,3,50,50,1,3,0,11.15713129117548,11.15713129117548,0,0,0,0,0,1,1,0,0,0,39.37,49.04,41.77,49.72,8.333333333333334,1,1,0,0,11,6,5,1,1161.25,172401.6738551253,116868.8301216139,0,0,4347.15705868951 -7212,8922,16179,16178,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,8.806462443272251,8.920887737458076,0,4,-4,-.5939057643970542,0,3,3,2019,15,3,48,42,1,3,0,13.75242122177621,13.75242122177621,0,0,0,0,0,1,1,0,1.148192973263193,0,41.77,49.72,39.37,49.04,8.333333333333334,1,1,0,0,10,6,5,1,1161.25,172401.6738551253,116868.8301216139,0,0,4347.15705868951 -7212,8922,16180,-9,16179,16178,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.2085541869444,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,1161.25,172401.6738551253,116868.8301216139,0,0,4347.15705868951 -7212,8922,16181,-9,16179,16178,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.5586810599538,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1161.25,172401.6738551253,116868.8301216139,0,0,4347.15705868951 -7213,8923,16182,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.69171805654247,7.768769199997423,0,0,-1058.344575746461,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.328756518775744,7.873665977499337,47.49,24.43,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,87,812237.2985670868,646389.0580602052,204141.2224490457,0,1544.001680942807 -7214,8924,16183,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.361740607600604,8.186978383314342,0,0,0,-932.55010842712,-9,2,3,2019,7,0,55,0,1,0,0,7.261960040797741,7.261960040797741,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,547,102374.1643652178,0,0,0,2231.853955020089 -7215,8925,16184,-9,-9,-9,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1027.472294006168,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,1.605632976028357,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,855,-66173.2233355174,0,0,0,261.0111908097402 -7216,8926,16185,16186,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.717871774230023,7.031822892525565,52,1,-25.65986004320812,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.877144528953048,6.588538538871005,54.36,43.6,57.16,56.15,10,1,1,0,0,6,6,2,1,553.5,668434.1071706417,188155.311241375,198027.5016622423,0,1866.731740985187 -7216,8926,16186,16185,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.514465941147428,5.462212568608895,52,-1,12.28128108612451,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.630062250942972,5.544004165498177,57.16,56.15,54.36,43.6,10,1,1,0,0,6,6,2,1,553.5,668434.1071706417,188155.311241375,198027.5016622423,0,1866.731740985187 -7217,8927,16187,16189,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.751384941896438,8.91745905036599,0,19,6,2.565566297603662,0,2,1,2019,7,0,48,44,1,0,0,14.91644215829007,14.91644215829007,0,0,0,0,0,0,0,0,4.574121298337924,0,51.14,60.45,58.15,52.91,8.333333333333334,1,1,0,0,13,11,5,1,483.25,935124.5189960654,724566.429680511,115754.5132400077,106166.5446126838,3705.737406349241 -7217,8927,16188,-9,16189,16187,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.9060764967137,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,1,483.25,935124.5189960654,724566.429680511,115754.5132400077,106166.5446126838,3705.737406349241 -7217,8927,16189,16187,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.696995842645601,9.00937092414039,0,19,-6,94.9310898241007,0,2,2,2019,8,0,38,40,1,0,0,14.98480577414594,14.98480577414594,0,0,0,0,0,0,0,0,.4892492301965081,0,58.15,52.91,51.14,60.45,8.333333333333334,1,1,0,0,11,11,5,1,483.25,935124.5189960654,724566.429680511,115754.5132400077,106166.5446126838,3705.737406349241 -7217,8927,16190,-9,16189,16187,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-954.2728370056567,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,5,1,483.25,935124.5189960654,724566.429680511,115754.5132400077,106166.5446126838,3705.737406349241 -7218,8928,16191,-9,16192,16193,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.672854748071,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,1150,70772.14134481632,58996.19350187434,0,0,1496.229788214129 -7218,8928,16192,16193,-9,-9,1,0,19,1,1,0,2,2,-9,0,4,0,0,0,1,-13,0,0,-9,-9,2019,11,0,0,29,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.51,59.08,6.666666666666667,1,1,0,0,3,5,1,0,1150,70772.14134481632,58996.19350187434,0,0,1496.229788214129 -7218,8928,16193,16192,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,0,0,0,1,13,0,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.51,59.08,54.2,57.49,6.666666666666667,1,1,1,0,0,5,1,0,1150,70772.14134481632,58996.19350187434,0,0,1496.229788214129 -7219,8929,16194,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,7.275556602699913,6.949519663827971,0,0,-1002.023876331559,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.317266725173252,6.822749434069035,54.41,26.76,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,541,431372.4954033222,277618.9558617731,332428.2828008868,0,1320.448266450296 -7220,8930,16195,16197,-9,-9,1,0,48,0,2,0,2,2,-9,1,2,0,0,0,1,-3,0,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.09,38.03,32.84,31.71,5,2,3,0,1,0,6,1,0,812.6666666666666,34276.96503588289,2964.355609773067,0,0,2914.964473164057 -7220,8930,16196,-9,16195,16197,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1067.808519167592,-9,2,3,2019,24,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.15,38.76,-9,-9,1.666666666666667,2,3,0,0,0,6,1,0,812.6666666666666,34276.96503588289,2964.355609773067,0,0,2914.964473164057 -7220,8930,16197,16195,-9,-9,1,1,51,0,2,0,3,3,-9,0,1,0,0,0,1,3,0,-9,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.84,31.71,18.09,38.03,3.333333333333333,2,3,1,1,0,6,1,0,812.6666666666666,34276.96503588289,2964.355609773067,0,0,2914.964473164057 -7221,8931,16198,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1059.104249142767,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,59.04,54.12,-9,-9,0,1,1,0,0,0,8,1,1,711,33348.34343117908,0,0,0,571.8638038029117 -7222,8932,16199,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,7.377356414813731,6.835582837738094,0,0,-917.2543445606638,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.437386381271263,53.5,53.7,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,481,541610.8886640135,169586.8021616465,361776.2920652299,0,1799.61392594289 -7223,8933,16200,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.005258552748059,6.772359892376415,0,0,-1098.789066316177,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.825034985509755,59.95,41.62,-9,-9,10,1,1,0,0,0,13,2,1,1430,50202.10688862992,4670.858017655482,0,0,1076.90628680559 -7224,8934,16201,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1072.442892843831,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.92,50.93,-9,-9,3.333333333333333,2,3,1,1,4,4,1,1,769,-51105.69335047621,0,0,0,501.4214380189336 -7225,8935,16202,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.7277083099975,0,3,-9,2019,15,3,0,0,4,3,0,0,0,1,0,29.62745476461524,0,0,1,1,0,0,0,44.83,18.74,-9,-9,5,1,1,0,0,0,13,1,0,473,-59758.99215578187,0,0,0,888.0304639976987 -7226,8936,16203,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,7.121693009843344,7.19013818744983,0,0,0,-1048.311546773433,0,2,2,2019,12,2,20,20,1,2,0,7.360843396978715,7.360843396978715,0,0,0,0,71.5,1,1,0,0,0,46.56,26.33,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,268,13236.74198279121,25644.33522202694,0,0,575.6115590916575 -7227,8937,16204,16205,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,6.961247422681931,6.637442311394089,0,2,3,134.9721898505818,0,2,2,2019,11,2,20,30,1,2,0,5.736699374645652,5.736699374645652,0,0,0,0,2,1,1,0,0,0,55.86,32.76,39.58,57.61,8.333333333333334,1,1,0,0,3,7,3,0,1029,324152.0315778181,96140.53252925538,259911.7487094983,0,1748.441430398055 -7227,8937,16205,16204,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.784807104306411,7.641071638674052,0,2,-3,-29.75963666015616,0,-9,-9,2019,16,4,29,30,1,4,0,7.767400472324048,7.767400472324048,0,0,0,0,0,1,1,0,0,0,39.58,57.61,55.86,32.76,5,3,4,0,1,3,7,3,0,1029,324152.0315778181,96140.53252925538,259911.7487094983,0,1748.441430398055 -7227,8937,16206,-9,16204,16205,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1044.956333405333,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,3,0,1029,324152.0315778181,96140.53252925538,259911.7487094983,0,1748.441430398055 -7228,8938,16207,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,7.412936289476971,7.573894190517397,0,0,0,-949.6611428661054,0,2,2,2019,17,5,30,27,1,5,0,8.249040794714144,8.249040794714144,0,0,0,0,0,1,1,0,0,0,40.08,46.51,-9,-9,3.333333333333333,1,1,0,1,12,5,3,0,384,110479.5819652932,119941.5539991353,0,0,1114.017719532011 -7228,8938,16208,-9,16207,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.0639476372313,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,384,110479.5819652932,119941.5539991353,0,0,1114.017719532011 -7229,8939,16209,16210,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,5.976814197314297,5.54044448640947,41,1,-2.645342879283143,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.737034850110091,5.563655381933685,53.47,51.1,55.76,44.76,10,1,1,0,0,5,6,2,1,298,429901.727996344,181778.9096232693,34888.79512074967,0,1597.76755333163 -7229,8939,16210,16209,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.410692671904469,6.642575577590891,41,-1,72.5876303964215,-9,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.363301707919809,6.606517548474157,55.76,44.76,53.47,51.1,6.666666666666667,1,1,0,0,5,6,2,1,298,429901.727996344,181778.9096232693,34888.79512074967,0,1597.76755333163 -7230,8940,16211,16213,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.655595795454564,8.439723951363629,0,10,1,-68.69778165904287,0,2,2,2019,10,0,50,40,1,1,0,11.31718178571075,11.31718178571075,0,0,0,0,0,1,1,0,0,0,51,56,49.95,56.68,7,1,1,0,0,1,2,4,0,248.75,171291.249024453,-29846.17774849584,146470.2877454252,42794.70110918541,3312.977973685405 -7230,8940,16212,-9,16213,16211,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-921.5139773209054,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,0,248.75,171291.249024453,-29846.17774849584,146470.2877454252,42794.70110918541,3312.977973685405 -7230,8940,16213,16211,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.339037180170826,7.149735831913461,0,10,-1,-157.680588685725,0,3,2,2019,7,0,12,9,1,0,0,16.33614815775085,16.33614815775085,0,0,0,0,0,1,1,0,0,0,49.95,56.68,51,56,8.333333333333334,1,1,0,1,7,2,4,0,248.75,171291.249024453,-29846.17774849584,146470.2877454252,42794.70110918541,3312.977973685405 -7230,8940,16214,-9,16213,16211,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.039026329591,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,0,248.75,171291.249024453,-29846.17774849584,146470.2877454252,42794.70110918541,3312.977973685405 -7231,8941,16215,16216,-9,-9,1,0,22,0,0,0,1,1,1,0,5,7.999202063751619,8.028768987671931,0,2,0,-67.74794297025846,-9,-9,-9,2019,4,0,40,0,1,0,0,12.20273087829008,12.20273087829008,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.38,58.29,10,1,1,0,0,3,5,3,0,1717,-91191.65049545058,62783.75029052691,0,0,2093.523466656865 -7231,8941,16216,16215,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,2,0,110.2871439432498,1,-9,-9,2019,8,0,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.38,58.29,57.06,57.76,8.333333333333334,1,1,0,0,2,5,3,0,1717,-91191.65049545058,62783.75029052691,0,0,2093.523466656865 -7232,8942,16217,16218,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,8.863091148787239,8.928993709750168,0,17,-10,-91.98274848289755,0,2,2,2019,22,10,43,37,1,10,0,18.82669099758099,18.82669099758099,0,0,0,0,0,0,0,0,0,0,32.77,31.02,56.33,51.02,3.333333333333333,1,1,0,0,10,7,5,1,832.5,2680959.102847261,2049012.852985627,554905.1674827063,48215.57066551229,5022.458439693039 -7232,8942,16218,16217,-9,-9,1,1,64,0,1,0,2,2,-9,0,4,8.492208292773691,8.733942107860287,0,17,10,164.5183934799976,0,2,3,2019,8,0,40,45,1,0,0,19.97132672590518,19.97132672590518,0,0,0,0,0,0,0,0,2.544194709794214,0,56.33,51.02,32.77,31.02,8.333333333333334,1,1,0,0,10,7,5,1,832.5,2680959.102847261,2049012.852985627,554905.1674827063,48215.57066551229,5022.458439693039 -7233,8943,16219,16220,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,7.136653120497699,7.161083263026176,0,21,-1,-40.57158673631368,0,3,3,2019,17,4,40,40,1,4,0,3.149185309149737,3.149185309149737,0,0,0,0,0,1,1,0,0,0,31.92,32.75,42.6,61.6,6.666666666666667,1,1,0,0,11,11,3,1,1463.333333333333,47516.4587077763,-57945.1142771199,76312.582004604,13728.42819621603,2171.61474653145 -7233,8943,16220,16219,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,8.334559054986022,8.405319088758306,0,23,1,-21.00320916012519,0,3,3,2019,14,3,40,38,1,3,0,13.27410288330298,13.27410288330298,0,0,0,0,0,1,1,0,0,0,42.6,61.6,31.92,32.75,5,1,1,0,0,11,11,3,1,1463.333333333333,47516.4587077763,-57945.1142771199,76312.582004604,13728.42819621603,2171.61474653145 -7233,8943,16221,-9,16220,16219,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.5761997934494,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.271473955158141,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1463.333333333333,47516.4587077763,-57945.1142771199,76312.582004604,13728.42819621603,2171.61474653145 -7233,8944,16222,-9,16220,16219,1,1,20,0,2,0,3,3,-9,0,4,0,0,0,0,0,-961.8842857999819,0,3,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,1,0,11,1,1,391,0,0,0,0,0 -7234,8945,16223,-9,16225,16226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.1156752460009,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1492.75,496913.0189525507,47361.68763473609,333433.9042443804,0,3188.446326748753 -7234,8945,16224,-9,16225,16226,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.8838154173383,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,0,1492.75,496913.0189525507,47361.68763473609,333433.9042443804,0,3188.446326748753 -7234,8945,16225,16226,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,7.619787914628819,7.428653357799308,0,11,-11,64.25537255422279,0,2,3,2019,6,0,25,0,1,0,0,10.44963275810829,10.44963275810829,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.51,51.57,8.333333333333334,1,1,0,0,10,7,4,0,1492.75,496913.0189525507,47361.68763473609,333433.9042443804,0,3188.446326748753 -7234,8945,16226,16225,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,9.030684611389372,8.610903517694707,0,11,11,49.73349891907483,-9,-9,-9,2019,9,1,40,0,1,1,0,16.74856672557813,16.74856672557813,0,0,0,0,0,1,1,0,1.89949565495646,0,55.51,51.57,57.06,57.76,8.333333333333334,1,1,0,0,12,7,4,0,1492.75,496913.0189525507,47361.68763473609,333433.9042443804,0,3188.446326748753 -7235,8946,16227,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.249259362696778,7.411303390720667,0,0,0,-906.6900127779553,0,-9,3,2019,12,0,24,24,1,0,0,6.586335194982096,6.586335194982096,0,0,0,0,0,1,1,0,0,0,50.08,46.19,-9,-9,5,1,1,0,0,10,10,3,0,1481,-3518.135826105105,0,0,0,1469.548689354091 -7235,8947,16228,-9,16227,-9,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-932.1585708300879,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.3094173384368663,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,2,10,1,0,715,-69783.64077448849,104054.0275516068,0,0,342.0875460344103 -7236,8948,16229,16230,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.071443017226101,6.154653755725732,44,-1,130.9588885612312,0,-9,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.493222431261347,6.545324329934243,55.87,53.99,58.72,48.59,6.666666666666667,1,1,0,0,5,6,3,1,936,450824.5833899917,662987.4693012193,13763.46156720812,40805.4162415701,1937.293777990124 -7236,8948,16230,16229,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.221209713792422,7.244221714943778,44,1,208.7809028871837,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.88495143913333,7.323294909079228,58.72,48.59,55.87,53.99,6.666666666666667,1,1,0,0,5,6,3,1,936,450824.5833899917,662987.4693012193,13763.46156720812,40805.4162415701,1937.293777990124 -7237,8949,16231,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.998398862488672,8.877307155629733,0,0,0,-963.6964865798943,-9,1,2,2019,15,3,50,0,1,3,0,18.05404111760962,18.05404111760962,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,10,8,5,0,658,187698.6210185293,32146.60839708176,216576.2003244445,92795.92297479926,3245.338161891044 -7238,8950,16232,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,4,0,0,0,0,0,-968.7895499218893,-9,2,-9,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.26,50.12,-9,-9,5,3,4,1,1,2,1,1,0,196,20317.36567019288,0,0,0,1180.364389632872 -7238,8950,16233,-9,16232,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.072303286255,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,1,0,196,20317.36567019288,0,0,0,1180.364389632872 -7239,8951,16234,-9,16236,16237,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.8136737771875,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.7274019737604078,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,782.5,19086.58484163442,0,0,0,4128.118813228908 -7239,8951,16235,-9,16236,16237,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.479036845928,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,782.5,19086.58484163442,0,0,0,4128.118813228908 -7239,8951,16236,16237,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.990325306613367,8.007033191567754,0,12,-2,-96.10531240022036,0,2,2,2019,12,0,19,19,1,0,0,15.26674542639161,15.26674542639161,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,1.666666666666667,1,1,0,0,8,9,5,1,782.5,19086.58484163442,0,0,0,4128.118813228908 -7239,8951,16237,16236,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.081667127074734,8.619147428494989,0,12,2,-92.34508271347133,-9,-9,-9,2019,9,0,38,0,1,1,0,27.11374939205045,27.11374939205045,0,0,0,0,0,1,1,0,0,0,52,55,54.37,54.8,8,1,1,0,0,1,9,5,1,782.5,19086.58484163442,0,0,0,4128.118813228908 -7240,8952,16238,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.683251987564949,8.613151945837224,0,0,0,-961.3124635714717,-9,-9,-9,2019,6,0,49,0,1,0,0,15.07356047973943,15.07356047973943,0,0,0,0,0,0,0,0,7.659756795721944,0,58.08,43.46,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,533,-103296.7430114604,-106401.4782184925,0,0,3284.132061701102 -7241,8953,16239,16240,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.418001058955829,7.991131581356491,0,7,-12,-41.16861152452684,0,3,3,2019,22,9,55,45,1,9,0,9.006674976276344,9.006674976276344,0,0,0,0,0,1,1,0,0,0,54.37,54.8,29.95,28.16,8.333333333333334,1,1,0,0,8,6,4,1,1000,427152.7334789241,215567.1539066334,187046.0017878477,0,1911.335725713872 -7241,8953,16240,16239,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,7,12,36.32199488793835,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.95,28.16,54.37,54.8,5,1,1,0,0,0,6,4,1,1000,427152.7334789241,215567.1539066334,187046.0017878477,0,1911.335725713872 -7242,8954,16241,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.223146469705682,6.878841647749717,0,0,-926.6616367354139,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,2.92314125946985,7.117342888208213,35.4,49.25,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,132,484966.333125502,339986.2113625709,76641.72373488607,0,1683.918016890249 -7243,8955,16242,16243,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.818268138942946,8.769949430864401,0,16,8,52.42249297473513,0,1,1,2019,7,0,49,45,1,0,0,15.03909454909506,15.03909454909506,0,0,0,0,0,0,0,0,5.046216154908143,0,57.16,56.15,53.81,48.39,8.333333333333334,1,1,0,0,8,10,5,1,1087,109620.3839638765,97825.53612462262,188998.3030044083,148814.945023677,5064.842791135803 -7243,8955,16243,16242,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.868120805608076,8.570547797696454,0,20,-8,-48.63523205442625,0,1,2,2019,10,1,49,47,1,1,0,13.59160543125068,13.59160543125068,0,0,0,0,0,0,0,0,0,0,53.81,48.39,57.16,56.15,8.333333333333334,1,1,0,0,6,10,5,1,1087,109620.3839638765,97825.53612462262,188998.3030044083,148814.945023677,5064.842791135803 -7244,8956,16244,16245,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,9.083676513155508,8.967753279089838,0,9,0,62.25293642409876,0,2,2,2019,24,12,36,37,1,12,0,34.45886774604774,34.45886774604774,0,0,0,0,0,1,1,0,0,0,25.47,45.65,54.1,59.11,3.333333333333333,1,1,0,0,10,12,4,1,421.25,272536.1728358215,101272.3692812149,287693.6532706736,389292.2069011756,5628.78534213255 -7244,8956,16245,16244,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,9,0,-18.41779156233837,0,3,2,2019,2,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,8.541589358825924,0,54.1,59.11,25.47,45.65,8.333333333333334,1,1,0,0,6,12,4,1,421.25,272536.1728358215,101272.3692812149,287693.6532706736,389292.2069011756,5628.78534213255 -7244,8956,16246,-9,16245,16244,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1136.862625205376,-9,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.43,53.42,-9,-9,10,1,1,0,0,0,12,4,1,421.25,272536.1728358215,101272.3692812149,287693.6532706736,389292.2069011756,5628.78534213255 -7244,8956,16247,-9,16245,16244,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1043.00636683958,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,421.25,272536.1728358215,101272.3692812149,287693.6532706736,389292.2069011756,5628.78534213255 -7245,8957,16248,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.936141539771805,8.276543318297881,0,0,0,-1046.790028250271,0,1,1,2019,12,0,30,30,1,0,0,11.37797950949349,11.37797950949349,0,0,0,0,0,0,0,0,0,0,44.44,55.41,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,243,506598.7549275731,371425.181640311,180256.0620313591,0,1249.827939900066 -7246,8958,16249,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.329545814677177,7.635993136504933,0,0,-923.0750493703414,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.435458786392697,56.13,44.38,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,588,421800.8339328598,17775.88780971184,292263.8957012197,0,993.7904135053877 -7247,8959,16250,16251,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,20,-6,-63.30510266745075,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,7,2,3,0,0,6,8,2,0,853.6666666666666,-3269.563768127957,0,0,0,2093.90152630231 -7247,8959,16251,16250,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,6.850493501890044,7.126765926527138,0,20,6,-16.58507750004498,0,3,3,2019,9,0,25,35,1,1,0,4.783916891544187,4.783916891544187,0,0,0,0,0,1,1,0,0,0,52,55,49,55,7,2,3,0,0,8,8,2,0,853.6666666666666,-3269.563768127957,0,0,0,2093.90152630231 -7247,8959,16252,-9,16250,16251,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-924.276678899205,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,853.6666666666666,-3269.563768127957,0,0,0,2093.90152630231 -7248,8960,16253,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.404839460453461,8.487147262450193,0,0,0,-1032.092846577239,0,-9,-9,2019,15,5,45,50,1,5,0,11.47585408990398,11.47585408990398,0,0,0,0,0,0,0,0,0,0,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,4439,-57054.90885555966,0,0,0,1753.210198255694 -7249,8961,16254,16255,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,9,0,-59.62977391309465,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.48,40.37,63.65,35.93,0,1,1,0,0,0,4,2,1,663,183006.6619977087,118320.0789012933,146189.5537799197,0,2173.994337614238 -7249,8961,16255,16254,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,4.07345586672709,3.920973350984162,9,0,-15.50932032671715,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.00413216375753,4.396667197323705,63.65,35.93,44.48,40.37,10,1,1,0,0,0,4,2,1,663,183006.6619977087,118320.0789012933,146189.5537799197,0,2173.994337614238 -7250,8962,16256,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.250128030434595,6.569538605028814,0,0,-1055.845595162895,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.16457055375795,6.629752357739084,47.54,39.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,464,-24101.60666846283,105759.6390695466,0,0,1612.825702084094 -7251,8963,16257,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,5.992250294824024,6.231508263666337,0,0,-969.2397078505015,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.867012437359136,6.253868501478872,53.14,51.28,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,1461,450157.322436075,6616.489461847821,491941.8607834431,24880.98992941539,-79.45824423548723 -7252,8964,16258,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.297031138651226,8.699353791539922,0,0,0,-840.6363117845096,0,2,2,2019,7,0,42,42,1,0,0,18.92650283713131,18.92650283713131,0,0,0,0,0,1,1,0,3.701796975148906,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,934,1686233.997330306,1079712.272255033,747397.6007819732,121079.0036655683,2290.519469767864 -7253,8965,16259,16260,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,6.542441810674005,6.69287688722401,8,-8,34.89119298911196,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,7.386921701327605,6.804760118634951,45.15,57.46,41.49,63.38,1.666666666666667,1,1,0,0,9,5,2,1,1011.5,1619712.704512651,1141576.516958435,219700.5195615074,0,1337.630175397207 -7253,8965,16260,16259,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,4.958435683033974,5.915776591226123,5.464937547562898,8,8,-42.60601208297645,0,3,3,2019,11,3,40,40,1,3,0,.4696264707256494,.4696264707256494,0,0,0,0,2,0,0,0,2.677075391150856,5.101507148858444,41.49,63.38,45.15,57.46,1.666666666666667,1,1,0,0,9,5,2,1,1011.5,1619712.704512651,1141576.516958435,219700.5195615074,0,1337.630175397207 -7254,8966,16261,16262,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,2.458630464358422,2.339010653205233,10,1,-87.37362631342231,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,2.599752996976547,55,45,53,44,8,1,1,0,0,0,11,2,0,660.5,253062.8039790792,47741.37241708975,183262.2700576384,5530.60568548216,2813.159330429441 -7254,8966,16262,16261,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,.590649728649095,.9940631344933875,10,-1,-89.48433797718199,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,.5064132322309138,53,44,55,45,8,1,1,0,0,0,11,2,0,660.5,253062.8039790792,47741.37241708975,183262.2700576384,5530.60568548216,2813.159330429441 -7255,8967,16263,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,8.181770536964338,8.659780785980859,5.257165666258051,0,0,-1071.541453883948,0,3,3,2019,12,2,45,42,1,2,0,11.60326384182826,11.60326384182826,0,0,0,0,2,0,0,0,6.215641839754507,5.281725049631167,49.27,56.95,-9,-9,1.666666666666667,1,1,0,0,8,2,4,1,511,559060.5523809997,155747.0330387967,204137.0101996649,0,2161.904747894135 -7255,8968,16264,-9,16263,-9,1,1,31,0,0,0,1,1,-9,0,3,8.01912868612189,7.726631056920722,0,0,0,-1000.6125161406,0,2,2,2019,14,3,22,21,1,3,0,12.89213538020879,12.89213538020879,0,0,0,0,0,0,0,0,0,0,39.1,57.79,-9,-9,3.333333333333333,1,1,0,0,6,2,4,1,917,2577.206090589221,18439.65500750245,0,0,1105.566947733928 -7256,8969,16265,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,8.480215222617334,8.705214475209324,0,0,0,-976.2040165885322,0,3,1,2019,10,0,43,41,1,0,0,16.84562367540958,16.84562367540958,0,0,0,0,0,1,1,0,1.709916956647474,0,44.09,35.84,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,110,98395.68645979121,193705.305758346,152137.5593174626,84423.55222986786,2754.84182244041 -7257,8970,16266,16267,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.618982947305755,7.765462289069993,0,32,0,-119.872042319373,0,3,-9,2019,11,0,45,45,1,0,0,7.962929537598663,7.962929537598663,0,0,0,0,0,0,0,0,0,0,49.24,46.59,51,53,6.666666666666667,1,1,0,0,6,8,4,0,501.5,195830.3341767692,32211.23914135939,296289.7967310344,125594.2580666226,2032.612793913529 -7257,8970,16267,16266,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.623637136785232,7.637435584165976,0,7,0,-33.97218389275987,0,-9,-9,2019,10,0,45,40,1,1,0,5.085133377755501,5.085133377755501,0,0,0,0,0,0,0,0,0,0,51,53,49.24,46.59,8,1,1,0,0,1,8,4,0,501.5,195830.3341767692,32211.23914135939,296289.7967310344,125594.2580666226,2032.612793913529 -7258,8971,16268,-9,16272,16273,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.0806445118908,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7258,8971,16269,-9,16272,16273,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1115.593719298816,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7258,8971,16270,-9,16272,16273,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1022.653683697177,-9,1,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7258,8971,16271,-9,16272,16273,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-905.3771225530578,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7258,8971,16272,16273,-9,-9,1,0,42,0,4,0,1,1,-9,0,5,8.482025390239871,8.224959271572935,0,16,-5,-11.5205708767263,0,3,1,2019,7,0,30,35,1,0,0,19.3631224203316,19.3631224203316,0,0,0,0,0,1,1,0,0,0,57.06,57.76,34.11,58.61,8.333333333333334,1,1,0,0,11,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7258,8971,16273,16272,-9,-9,1,1,47,0,4,0,3,3,-9,0,3,8.515291929334271,8.487276775147194,0,16,5,72.08657226568725,0,2,3,2019,10,1,35,40,1,1,0,16.22345007358989,16.22345007358989,0,0,0,0,0,1,1,0,.432704256901528,0,34.11,58.61,57.06,57.76,6.666666666666667,1,1,0,0,13,5,4,1,879,407874.8404848196,270007.9530202952,167075.7539268628,144086.22880996,4103.597181339363 -7259,8972,16274,16275,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.901953034746675,7.553835912836691,0,9,-2,178.0681866389715,0,3,3,2019,10,0,48,47,1,0,0,4.686085058834282,4.686085058834282,0,0,0,0,0,0,0,0,1.963465937172419,0,57.16,56.15,50,49,8.333333333333334,1,1,0,0,6,11,5,1,1346,58036.08794807966,74394.01460575048,0,0,5353.68476439128 -7259,8972,16275,16274,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.57250703276482,9.595327106411586,0,9,2,53.37412497038051,0,3,-9,2019,10,0,40,40,1,1,0,40.70982964182707,40.70982964182707,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,1,11,5,1,1346,58036.08794807966,74394.01460575048,0,0,5353.68476439128 -7260,8973,16276,16277,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.374317610668868,8.407176158880054,28,-2,14.25063658402405,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,6.665907719180148,8.050079591418488,50.05,36.01,58.15,52.91,10,1,1,0,0,0,7,4,1,439,2112958.42774324,728511.7256054641,841034.4870824653,0,3336.439036860279 -7260,8973,16277,16276,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,5,2,-84.5373503376742,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50.05,36.01,10,1,1,0,0,0,7,4,1,439,2112958.42774324,728511.7256054641,841034.4870824653,0,3336.439036860279 -7261,8974,16278,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.064219661653683,7.318778563501605,0,0,-1037.176467873169,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.236288113622875,62.11,45.63,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,256,581676.3477668139,410703.2048246486,66926.37271722872,0,1151.033954915318 -7262,8975,16279,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.2915067517257,8.488945185711776,0,0,0,-996.4503141933743,0,2,2,2019,12,0,40,24,1,0,0,11.24849406131391,11.24849406131391,0,0,0,0,0,0,0,0,0,0,44.45,59.52,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,320,43499.31647068345,-63582.62187599533,0,0,1489.488493813549 -7262,8976,16280,-9,-9,-9,1,0,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1114.126016282823,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.82,56.51,-9,-9,6.666666666666667,3,4,0,1,0,8,1,0,223,-232223.4572779574,0,0,0,0 -7263,8977,16281,16282,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.200208821272936,8.057648941701272,0,9,-1,71.21132912805304,0,-9,-9,2019,11,0,29,28,1,0,0,14.33430735153406,14.33430735153406,0,0,0,0,0,0,0,0,6.776586495473006,0,48.87,58.55,58.32,50.22,8.333333333333334,1,1,0,0,10,11,3,1,1667.5,1040754.963482509,824840.0688473966,178096.5393128568,0,1682.744966232436 -7263,8977,16282,16281,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,9,1,9.61116855259478,0,2,3,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,7.098738658252007,0,58.32,50.22,48.87,58.55,8.333333333333334,1,1,0,0,10,11,3,1,1667.5,1040754.963482509,824840.0688473966,178096.5393128568,0,1682.744966232436 -7263,8978,16283,-9,16281,16282,1,0,28,0,0,0,2,2,-9,0,5,8.018570686633284,8.127789356992938,0,0,0,-1114.957199508173,0,3,2,2019,7,0,24,-9,1,0,1,13.96321570416487,13.96321570416487,0,0,0,0,0,0,0,0,.107666424342035,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,3618,-97928.35090661563,29228.72719403338,0,0,1664.667164650962 -7263,8979,16284,-9,16281,16282,1,0,25,0,0,0,1,1,-9,0,4,7.768360826502117,7.652308589447594,0,0,0,-1056.433993210856,0,3,2,2019,8,0,30,54,1,0,1,8.122746233212109,8.122746233212109,0,0,0,0,0,0,0,0,0,0,42.14,56.1,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,1423,-57401.62744660521,8371.355942059283,0,0,710.9654058259888 -7264,8980,16285,16286,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.593427497187636,7.481813572466191,8,13,-81.35116790725988,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.777119896995152,7.630288894677884,54.45,36.83,62.9,32.02,8.333333333333334,1,1,0,0,9,12,3,1,533,1421615.097558763,1143254.889571297,236640.8438208757,0,1747.760178252106 -7264,8980,16286,16285,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,7.633703362876265,7.548668378712498,23,-13,112.8685526447439,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.152769766665176,7.594413430029764,62.9,32.02,54.45,36.83,8.333333333333334,1,1,0,0,8,12,3,1,533,1421615.097558763,1143254.889571297,236640.8438208757,0,1747.760178252106 -7265,8981,16287,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.749242761218945,8.106043971451411,0,0,0,-1006.546612820099,0,2,3,2019,2,0,40,40,1,0,0,7.112414655724359,7.112414655724359,0,0,0,0,0,0,0,0,0,0,61.52,42.41,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,626,661480.5924279117,0,127141.9263216452,0,894.1129937317877 -7266,8982,16288,16289,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.252793464886878,8.193683079391148,0,23,0,24.98014925386771,0,2,2,2019,9,0,48,40,1,0,0,7.118359309086292,7.118359309086292,0,0,0,0,0,0,0,0,0,0,55.93,52.62,62.84,41.32,8.333333333333334,1,1,0,0,10,7,4,1,1058.5,249304.1467228897,377643.8477197601,0,0,1947.369945761789 -7266,8982,16289,16288,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.456985463221633,7.58590395207254,0,23,0,-92.93157515980207,0,2,2,2019,8,0,32,52,1,0,0,7.640521666290708,7.640521666290708,0,0,0,0,2,0,0,0,0,0,62.84,41.32,55.93,52.62,8.333333333333334,1,1,0,0,10,7,4,1,1058.5,249304.1467228897,377643.8477197601,0,0,1947.369945761789 -7266,8983,16290,-9,16289,16288,1,1,27,0,0,0,1,1,-9,0,2,8.128124742128525,8.137042554541186,0,0,0,-936.7789616887824,0,3,1,2019,8,1,38,45,1,1,1,9.850134633855367,9.850134633855367,0,0,0,0,0,0,0,0,.9402395948663547,0,57.08,39,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,654,-190035.5048832891,0,0,0,1145.829496160634 -7266,8984,16291,-9,16289,16288,1,0,19,0,0,0,2,2,-9,0,2,7.822716244100222,7.730039949896327,0,0,0,-1001.74985462679,0,2,2,2019,10,0,40,0,1,0,1,6.34981421545346,6.34981421545346,0,0,0,0,0,0,0,0,1.747078715752779,0,38,43,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,231,-25494.69403576824,122886.9619025667,0,0,841.9492731310417 -7267,8985,16292,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.087179339071321,6.209196438250907,0,0,-989.4295467752293,0,3,3,2019,30,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,4.638390528752139,6.24990449047377,30,25.7,-9,-9,5,1,1,0,0,0,12,2,0,849,131166.620239405,71732.6372259614,0,0,2145.347333550018 -7268,8986,16293,-9,16295,16294,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.525951870276,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,316.6666666666667,97933.87634429774,90516.80885472317,165877.7594631435,54859.413249372,8299.57039366014 -7268,8986,16294,16295,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,7.606882570430209,7.7534333487279,0,27,-1,-23.79446470145112,0,2,2,2019,11,0,70,50,1,0,0,3.449028461378907,3.449028461378907,0,0,0,0,0,1,1,0,0,0,48.88,50.52,56.94,49.53,5,2,3,0,0,11,8,3,1,316.6666666666667,97933.87634429774,90516.80885472317,165877.7594631435,54859.413249372,8299.57039366014 -7268,8986,16295,16294,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.927281135411965,8.628978805486998,0,27,1,-96.21686757068011,0,3,3,2019,7,0,42,50,1,0,0,9.211019058956781,9.211019058956781,0,0,0,0,0,1,1,0,9.179460736368567,0,56.94,49.53,48.88,50.52,6.666666666666667,2,3,0,0,11,8,3,1,316.6666666666667,97933.87634429774,90516.80885472317,165877.7594631435,54859.413249372,8299.57039366014 -7268,8987,16296,-9,16295,16294,1,1,24,0,2,0,1,1,-9,0,4,8.600988121995192,8.734178165745522,0,0,0,-919.6101030750169,0,2,1,2019,6,0,38,38,1,0,1,22.77065608379176,22.77065608379176,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,2,8,5,1,1358,-319.8421049860772,99515.4108186606,0,0,2089.305605745411 -7268,8988,16297,-9,16295,16294,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-995.1930210758376,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1203,-109185.1281033316,0,0,0,0 -7269,8989,16298,16299,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.052818910436633,5.645174724776849,46,-2,-43.06831883255711,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.808580659690544,6.174698093514881,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,1528.5,1921395.55320468,886794.5918627786,836392.629523688,0,3807.050433091884 -7269,8989,16299,16298,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.401461308276279,8.750435196247469,46,2,11.4504388180854,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.148410620402822,8.337893796727169,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,1528.5,1921395.55320468,886794.5918627786,836392.629523688,0,3807.050433091884 -7269,8990,16300,-9,16298,16299,1,1,40,0,0,0,2,2,-9,0,4,8.318276122602246,8.097856656681632,0,0,0,-923.2835678989153,0,2,2,2019,12,0,88,38,1,0,0,6.125785655830613,6.125785655830613,0,0,0,0,0,1,1,0,4.151778425578476,0,30.83,62.98,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,431,24657.94220948301,63851.87524081858,0,0,2147.409433589979 -7270,8991,16301,16303,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.164904574361676,9.23961055407478,0,10,-1,2.061272729306427,0,-9,-9,2019,7,0,47,48,1,0,0,20.28081166908065,20.28081166908065,0,0,0,0,0,1,1,0,0,0,51.67,60.18,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,578,-15190.1870748329,34066.81102375193,86490.38505531261,25067.76433186802,4328.593844729053 -7270,8991,16302,-9,16303,16301,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-862.6997127659981,-9,2,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,578,-15190.1870748329,34066.81102375193,86490.38505531261,25067.76433186802,4328.593844729053 -7270,8991,16303,16301,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.325562574938239,8.51112592212271,0,10,1,10.21161531002886,0,3,1,2019,6,0,35,40,1,0,0,14.25002397888631,14.25002397888631,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.67,60.18,10,1,1,0,0,9,12,5,1,578,-15190.1870748329,34066.81102375193,86490.38505531261,25067.76433186802,4328.593844729053 -7271,8992,16304,-9,16305,16309,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.181505937269,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7271,8992,16305,16309,-9,-9,1,0,44,0,4,0,2,2,-9,0,2,0,0,0,17,4,-15.40847012646683,0,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.98,51.33,57.16,56.15,3.333333333333333,1,1,0,0,0,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7271,8992,16306,-9,16305,16309,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-965.3066904743606,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7271,8992,16307,-9,16305,16309,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-981.4603953520465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7271,8992,16308,-9,16305,16309,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.818983574128,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7271,8992,16309,16305,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,8.688396086189462,8.887936136375725,0,17,-4,70.2553280047938,0,-9,-9,2019,5,0,63,49,1,0,0,9.053886539610575,9.053886539610575,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.98,51.33,10,1,1,0,0,10,9,3,1,1049.833333333333,330487.9492593081,19688.60567456954,385994.0090675847,37444.34724131937,2736.326131080831 -7272,8993,16310,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.658083004208903,8.57017098538614,0,0,0,-1040.417454070493,0,2,2,2019,6,0,10,39,1,0,0,77.29501090232382,77.29501090232382,0,0,0,0,0,1,1,0,6.964638282761159,0,48.01,51.6,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,655,355396.7124551506,331978.8503199806,173270.4507717198,42496.03271901052,2320.36127501467 -7273,8994,16311,16312,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.24449478870682,8.005729257272243,43,2,-12.64785852949353,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,8.35091313673068,62.18,36.18,49,48,8.333333333333334,1,1,0,0,7,12,4,1,595.5,1484612.668815327,743072.2710256756,460009.9946448878,0,3162.588663760162 -7273,8994,16312,16311,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.574603451751674,7.579354114071574,9,-2,-127.4550785462955,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.288253956777282,7.278395584699532,49,48,62.18,36.18,7,1,1,0,0,0,12,4,1,595.5,1484612.668815327,743072.2710256756,460009.9946448878,0,3162.588663760162 -7274,8995,16313,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.558441402305134,7.518019525216617,0,0,-1055.579127480559,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.077634593512521,7.674833810616396,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1192,454013.5888249072,121060.8165081701,76960.29436379984,0,1360.280681211768 -7275,8996,16314,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.497571019647005,7.811090995914926,0,0,-979.6673510626309,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.540796653785672,6.982031753931389,55,52,-9,-9,10,1,1,0,0,5,2,3,0,2437,939137.4253228272,468906.8394132954,23530.88145086708,0,1873.232330378681 -7276,8997,16315,16317,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.203433676199577,9.335025218669834,0,9,-8,16.21726710025547,0,-9,-9,2019,6,0,38,40,1,0,0,33.16463483142432,33.16463483142432,0,0,0,0,0,1,1,0,0,0,57.73,54.53,49.41,58.28,6.666666666666667,1,1,0,0,10,9,5,0,545.25,1239096.151125069,821497.59029086,671155.8571340274,479363.2102987703,7532.9416228778 -7276,8997,16316,-9,16315,16317,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.1115247647767,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,9,5,0,545.25,1239096.151125069,821497.59029086,671155.8571340274,479363.2102987703,7532.9416228778 -7276,8997,16317,16315,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.326146851651631,8.473454647555211,0,9,8,-96.61477247211424,-9,1,1,2019,7,0,60,0,1,0,0,7.70145028849061,7.70145028849061,0,0,0,0,0,1,1,0,8.13473049924683,0,49.41,58.28,57.73,54.53,5,4,2,0,0,11,9,5,0,545.25,1239096.151125069,821497.59029086,671155.8571340274,479363.2102987703,7532.9416228778 -7276,8997,16318,-9,16315,16317,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.994149020798,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,9,5,0,545.25,1239096.151125069,821497.59029086,671155.8571340274,479363.2102987703,7532.9416228778 -7277,8998,16319,16320,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.492884000749331,6.57557845325398,46,-4,46.24343280940514,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,.9091392338338127,6.143177327606674,54.79,55.86,58.49,11.14,6.666666666666667,1,1,0,0,3,9,2,0,1336,793721.8352948446,172914.0685242586,314648.3020554713,0,2149.020605753381 -7277,8998,16320,16319,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,46,4,10.10597378028197,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.49,11.14,54.79,55.86,6.666666666666667,1,1,0,0,0,9,2,0,1336,793721.8352948446,172914.0685242586,314648.3020554713,0,2149.020605753381 -7278,8999,16321,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.583267407084099,9.296121315973714,0,0,0,-909.6594073975868,0,2,2,2019,9,0,58,50,1,0,0,23.25353795785407,23.25353795785407,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,7,7,5,0,339,30133.17683715745,-147316.961672357,0,0,4396.353254918043 -7279,9000,16322,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.885861152407186,6.702603446564095,0,0,-1043.313262008484,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.57548590832461,53,47,-9,-9,7,1,1,0,0,3,7,2,1,527,49353.85884842201,156159.2478533884,0,0,1223.755575841171 -7280,9001,16323,-9,16324,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.942193067081,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,2556.5,-105904.569037102,23172.86786844278,0,0,1542.367345715958 -7280,9001,16324,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.013132289674477,8.439999312022387,0,0,0,-935.1557723542676,0,-9,2,2019,7,0,23,30,1,0,0,16.33767381762985,16.33767381762985,0,0,0,0,0,1,1,0,0,0,49.27,55.11,-9,-9,8.333333333333334,1,1,0,1,8,2,4,1,2556.5,-105904.569037102,23172.86786844278,0,0,1542.367345715958 -7280,9002,16325,-9,16324,-9,1,1,22,0,1,0,2,2,-9,0,4,8.842609110126737,8.796330457581275,0,0,0,-1000.15220228936,0,1,-9,2019,11,0,66,0,1,0,1,11.35475996444357,11.35475996444357,0,0,0,0,0,1,1,0,0,0,49.08,49.28,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,1041,56324.60493969037,42309.97061034573,0,0,2835.046612466038 -7281,9003,16326,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,5.384912596717288,5.576322461560955,0,0,-996.4854959267577,0,3,2,2019,26,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,5.724136411875739,25.4,35.71,-9,-9,5,1,1,0,1,7,6,2,0,1266,500021.4065040062,0,184599.3461139025,0,-53.82388022432269 -7282,9004,16327,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.044437844110806,7.74115105690916,0,0,0,-946.0369251836366,0,-9,-9,2019,10,0,38,36,1,1,0,6.568987093236549,6.568987093236549,0,0,0,0,0,0,0,0,1.189854082641374,0,48,59,-9,-9,7,1,1,0,0,5,7,3,0,246,137140.6786789015,131815.8840692594,0,0,1177.784441905043 -7283,9005,16328,16329,-9,-9,1,1,34,1,2,0,3,3,-9,0,3,8.132057175632905,8.513839858537157,0,6,-2,-116.2196741954397,0,2,3,2019,8,0,45,44,1,0,0,9.300838511214286,9.300838511214286,0,0,0,0,0,1,1,0,0,0,63.26,42.53,54.1,59.11,8.333333333333334,1,1,0,0,7,12,4,1,1258.5,56058.9454416938,109043.1992248768,94537.64248821112,52756.10777313683,2821.10773234267 -7283,9005,16329,16328,-9,-9,1,0,36,1,2,0,2,2,-9,0,5,8.048465776552597,7.725609174468656,0,6,2,105.3909058471374,0,-9,-9,2019,10,1,40,45,1,1,0,8.493470656008485,8.493470656008485,0,0,0,0,0,1,1,0,0,0,54.1,59.11,63.26,42.53,6.666666666666667,1,1,0,0,7,12,4,1,1258.5,56058.9454416938,109043.1992248768,94537.64248821112,52756.10777313683,2821.10773234267 -7283,9005,16330,-9,16329,16328,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.708518669818,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1258.5,56058.9454416938,109043.1992248768,94537.64248821112,52756.10777313683,2821.10773234267 -7283,9005,16331,-9,16329,16328,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.61417919707,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1258.5,56058.9454416938,109043.1992248768,94537.64248821112,52756.10777313683,2821.10773234267 -7284,9006,16332,16333,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.191846922842588,7.506206437556454,10,-4,59.27770772656247,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.196630718168759,7.751591144132432,42.19,58.81,57.81,39.55,6.666666666666667,1,1,0,1,0,9,4,1,587.5,1216271.774390595,566701.115475731,376993.5821537602,0,4125.982165389932 -7284,9006,16333,16332,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.531194361408525,7.87973726618868,10,4,67.701895020262,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,26.60325874838575,0,0,1,1,0,7.189200941142813,7.316946023634623,57.81,39.55,42.19,58.81,8.333333333333334,1,1,0,1,0,9,4,1,587.5,1216271.774390595,566701.115475731,376993.5821537602,0,4125.982165389932 -7285,9007,16334,16335,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.671356060269386,3.869577520601146,50,0,55.88239275070326,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.00298307524452,46.06,22.27,53,47,8.333333333333334,1,1,0,0,0,12,2,0,232,-42256.8176087305,0,0,0,2257.271564773582 -7285,9007,16335,16334,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,7,0,8.229556058651873,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,46.06,22.27,7,1,1,0,0,0,12,2,0,232,-42256.8176087305,0,0,0,2257.271564773582 -7286,9008,16336,16337,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,36,0,0,0,3,2,2019,14,2,0,45,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,51.38,60.12,54.8,6.666666666666667,1,1,1,1,8,10,1,1,1002,322839.1846820947,18264.84226886003,176977.6317807553,0,948.0867568924316 -7286,9008,16337,16336,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,6,9,0,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,54.8,40.37,51.38,10,1,1,0,0,0,10,1,1,1002,322839.1846820947,18264.84226886003,176977.6317807553,0,948.0867568924316 -7287,9009,16338,16340,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.037882936254361,8.48405908985109,0,18,1,24.18103169627339,0,2,1,2019,9,0,40,40,1,1,0,27.38550622468258,27.38550622468258,0,0,0,0,0,1,1,0,0,0,52,55,54.13,48.04,7,1,1,0,0,8,9,4,1,603.3333333333334,1416762.035012909,1216931.731112873,291702.5086009943,142316.6001932323,3842.057882818424 -7287,9009,16339,-9,16340,16338,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.0431537291635,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,603.3333333333334,1416762.035012909,1216931.731112873,291702.5086009943,142316.6001932323,3842.057882818424 -7287,9009,16340,16338,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,0,6.974698219480617,7.581221192823466,18,-1,156.4186029575858,0,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.055236584426473,0,54.13,48.04,52,55,6.666666666666667,1,1,0,0,0,9,4,1,603.3333333333334,1416762.035012909,1216931.731112873,291702.5086009943,142316.6001932323,3842.057882818424 -7288,9010,16341,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.588850276354094,8.644016859169032,0,0,0,-907.1508584908712,0,1,1,2019,18,6,37,38,1,6,0,14.9807963974347,14.9807963974347,0,0,0,0,0,0,0,0,2.140724914379277,0,22.78,65.51000000000001,-9,-9,3.333333333333333,1,1,0,0,2,9,5,0,97,284344.8553279701,118725.8449395355,195487.069511148,122550.5378406318,1725.98593796105 -7289,9011,16342,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.846809021217857,8.26064521993858,0,0,0,-1026.962608040406,0,2,3,2019,7,0,38,35,1,0,0,8.794497216714571,8.794497216714571,0,0,0,0,14.5,0,0,0,5.557850726870239,0,59.64,46.95,-9,-9,8.333333333333334,1,1,0,0,5,4,4,0,1920,264712.7091134121,80756.09654825575,0,0,1334.725453915268 -7289,9012,16343,-9,16342,-9,1,0,19,0,0,0,2,2,1,0,5,7.277219248842188,7.047211239827621,0,0,0,-982.8567595603275,-9,2,-9,2019,7,0,20,0,1,0,1,6.758705078492551,6.758705078492551,0,0,0,0,7,0,0,0,2.224886677639547,0,60.04,48.05,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,400,5313.940365259608,0,0,0,414.9669384303298 -7290,9013,16344,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,7.18157840363137,7.504943149085244,0,0,0,-888.2147408605051,0,3,2,2019,3,0,37,37,1,0,0,5.139464880404082,5.139464880404082,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,8,8,2,0,349.5,-129061.2796155509,0,0,0,658.7836317422164 -7290,9013,16345,-9,16344,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-926.5460826849011,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,2,0,349.5,-129061.2796155509,0,0,0,658.7836317422164 -7291,9014,16346,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.808279460385465,7.801363968114219,0,0,-1018.68291456254,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,25.32334971254746,0,27,1,1,0,.4922798051708576,7.909261011330463,66.76000000000001,29.06,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,211,587912.3160126969,-18475.11066437772,591839.3854539,0,2059.165735328067 -7291,9015,16347,-9,16346,-9,1,1,35,0,0,0,2,2,-9,0,3,8.482824950431915,8.815102674762349,0,0,0,-1002.589279694971,0,3,3,2019,6,0,40,44,1,0,0,19.16252471335157,19.16252471335157,0,0,0,0,27,1,1,0,0,0,62.28,45.64,-9,-9,8.333333333333334,3,4,0,0,6,8,5,1,177,153109.0111609036,233362.425612145,0,0,2561.586838545553 -7291,9016,16348,-9,16346,-9,1,1,41,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1047.449109454045,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,3,4,0,1,0,8,1,1,176,-112930.0043059234,0,0,0,927.4212170018839 -7292,9017,16349,16350,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.979287362163442,6.807058465192706,45,4,1.545102461379399,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.888266890921674,58.16,48.06,50,47,8.333333333333334,1,1,0,0,0,7,2,0,185.5,800322.8547331744,-37751.52357477724,612376.761587945,0,1773.211694779398 -7292,9017,16350,16349,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-80.05535773652369,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.16,48.06,7,1,1,0,0,0,7,2,0,185.5,800322.8547331744,-37751.52357477724,612376.761587945,0,1773.211694779398 -7292,9018,16351,-9,16350,16349,1,0,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1031.446718662997,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,7,1,0,696,-46010.52018722516,0,0,0,795.4437239619199 -7293,9019,16352,16354,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.979399371204748,9.001621536958682,0,15,1,21.24967072134991,0,1,1,2019,8,0,50,50,1,0,0,17.04356864149106,17.04356864149106,0,0,0,0,2,1,1,0,0,0,43.05,50.71,46.08,57.2,5,1,1,0,0,8,6,5,1,956.75,291582.3590077354,251447.5578677318,206882.6232931025,126517.9231341935,4572.000286135665 -7293,9019,16353,-9,16352,16354,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.6054591466195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,956.75,291582.3590077354,251447.5578677318,206882.6232931025,126517.9231341935,4572.000286135665 -7293,9019,16354,16352,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.217487853019243,8.192280377831423,0,15,-1,-55.67351144406263,0,2,3,2019,17,5,37,39,1,5,0,12.52343329196876,12.52343329196876,0,0,0,0,0,1,1,0,0,0,46.08,57.2,43.05,50.71,6.666666666666667,1,1,0,0,8,6,5,1,956.75,291582.3590077354,251447.5578677318,206882.6232931025,126517.9231341935,4572.000286135665 -7293,9019,16355,-9,16352,16354,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.5736889108083,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,956.75,291582.3590077354,251447.5578677318,206882.6232931025,126517.9231341935,4572.000286135665 -7294,9020,16356,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-906.6777704817283,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,47.23,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,186,-87906.47584809815,5337.643706291694,0,0,2307.068902549222 -7294,9021,16357,-9,16356,-9,1,0,19,0,0,0,2,2,1,0,4,6.381589581787998,6.682059089457868,0,0,0,-962.6009203564323,-9,2,-9,2019,6,2,20,0,1,2,1,3.365386639164426,3.365386639164426,0,0,0,0,2,1,1,0,0,0,46,59,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,604,-26486.60993631856,0,0,0,744.7550984916822 -7295,9022,16358,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.938017476617126,6.493851443622315,0,0,-1003.291028495546,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.567952026780226,48,37,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1968,-68208.06533416588,0,102012.161899662,0,1022.906824164064 -7296,9023,16359,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.012450080092581,6.967731081354412,0,0,-1001.95583765952,0,3,3,2019,13,0,0,0,4,3,0,0,0,1,3.700290994203323,6.131542545597305,26.99158055500811,0,1,1,0,0,7.035807335720675,43.32,22.36,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,355,222455.9190176541,285618.4671165434,0,0,1013.634692764699 -7296,9024,16360,-9,16359,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-957.0770772351622,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,6.535570092051273,0,51.17,49.39,-9,-9,3.333333333333333,1,1,0,0,4,6,2,1,2337,30567.33267022392,0,0,0,363.9394132270587 -7297,9025,16361,16362,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.815734152723668,8.276678445085617,7.310041908160925,9,4,1.743067057022466,0,2,2,2019,12,2,38,37,1,2,0,7.419452936463216,7.419452936463216,0,0,0,0,0,0,0,0,0,7.246117966471405,61.11,48.86,51.83,57.2,8.333333333333334,1,1,0,0,7,12,4,1,386.5,1464903.473810689,555901.5499275203,264112.0355799019,196689.2572415741,2932.138455285564 -7297,9025,16362,16361,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.359782359655565,7.382773918817467,0,9,-4,33.77396162720193,0,3,2,2019,12,2,19,14,1,2,0,10.12380098342576,10.12380098342576,0,0,0,0,0,0,0,0,0,0,51.83,57.2,61.11,48.86,8.333333333333334,1,1,0,0,10,12,4,1,386.5,1464903.473810689,555901.5499275203,264112.0355799019,196689.2572415741,2932.138455285564 -7298,9026,16363,-9,16365,16364,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.9115852337276,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,371.75,38515.86785154193,104290.5950291621,0,0,2149.099671099084 -7298,9026,16364,16365,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,7.665796205333841,7.600765149194148,0,6,5,-11.47807592481328,0,2,2,2019,10,0,48,40,1,1,0,6.547972182887253,6.547972182887253,0,0,0,0,0,1,1,0,0,0,51,56,49,56,7,1,1,0,1,5,9,2,0,371.75,38515.86785154193,104290.5950291621,0,0,2149.099671099084 -7298,9026,16365,16364,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,0,0,0,6,-5,36.83412782742121,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,1,0,9,2,0,371.75,38515.86785154193,104290.5950291621,0,0,2149.099671099084 -7298,9026,16366,-9,16365,16364,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.134369785059,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,371.75,38515.86785154193,104290.5950291621,0,0,2149.099671099084 -7299,9027,16367,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,7.819120479509837,7.901501365599866,0,0,-1055.018726242967,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.587537030654068,7.936387040758779,55.92,50.07,-9,-9,8.333333333333334,1,1,0,0,8,8,3,0,711,607848.7026200033,426508.0792655855,193909.089113131,0,-236.413570905328 -7300,9028,16368,16369,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,7,-3,0,0,3,2,2019,17,5,0,33,3,5,0,0,0,0,0,0,0,42,0,0,0,5.126725760538164,0,43.71,56.91,48.87,58.55,8.333333333333334,1,1,0,0,8,12,1,1,749.5,1311800.114890791,797954.859946806,306331.9348963549,0,-458.5837476642187 -7300,9028,16369,16368,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,7,3,0,0,2,2,2019,11,0,0,38,4,0,0,0,0,0,0,0,0,27,0,0,0,5.05636137648467,0,48.87,58.55,43.71,56.91,8.333333333333334,1,1,0,0,8,12,1,1,749.5,1311800.114890791,797954.859946806,306331.9348963549,0,-458.5837476642187 -7301,9029,16370,-9,16373,16372,1,1,25,0,0,0,2,2,-9,0,5,7.738212133979053,7.524800450633817,0,0,0,-1037.719371661167,0,3,2,2019,12,0,37,0,1,0,1,6.810671102225999,6.810671102225999,0,0,0,0,0,1,1,0,0,0,57.36,49.4,-9,-9,5,2,3,0,0,11,8,3,1,170,0,0,0,0,1433.522716926171 -7301,9030,16371,-9,16373,16372,1,0,23,0,0,0,2,2,-9,0,4,7.170514660400914,7.172377880990827,0,0,0,-1064.241755096755,0,2,2,2019,7,0,16,0,1,0,1,12.15071373944781,12.15071373944781,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,2,3,0,0,10,8,3,1,348,48143.57822155079,0,0,0,600.8288205538278 -7301,9031,16372,16373,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,2,13,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.38,63.52,45.23,27.67,5,2,3,0,0,1,8,1,1,1131,700375.7282695326,488605.5172073593,209567.4014012387,0,452.5247505705281 -7301,9031,16373,16372,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,2,-13,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.23,27.67,26.38,63.52,6.666666666666667,2,3,0,0,0,8,1,1,1131,700375.7282695326,488605.5172073593,209567.4014012387,0,452.5247505705281 -7302,9032,16374,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.749723415733915,7.683636103209105,0,0,0,-997.3457265086093,0,-9,-9,2019,6,0,38,43,1,0,0,7.126297716995668,7.126297716995668,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,121,27090.12134407407,-74391.18379921863,0,0,1638.580208978731 -7303,9033,16375,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.431836064952515,8.323600401252589,0,0,0,-980.1086828672178,0,2,2,2019,8,0,37,40,1,0,0,15.76426911167296,15.76426911167296,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,562,21876.48564767468,221531.5142422408,244199.8667392713,154042.5891374323,2323.299764378086 -7303,9034,16376,-9,16375,-9,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1010.080862302152,-9,2,-9,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,1,0,0,11,1,1,885,-20211.28569714363,0,0,0,0 -7304,9035,16377,16378,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.503662853342181,8.575673554650924,0,9,1,89.87207924038573,0,-9,-9,2019,9,0,42,40,1,1,0,13.62122786539818,13.62122786539818,0,0,0,0,0,1,1,0,2.383744037454032,0,52,55,53.14,45.74,8,1,1,0,0,1,4,5,1,1024.5,1089803.552236704,619941.6852575042,270300.8074094661,66837.64959775182,3312.976765230185 -7304,9035,16378,16377,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.100153808119822,7.916388930544361,0,29,-1,38.55983195717006,0,2,3,2019,14,2,40,40,1,2,0,7.781283051780977,7.781283051780977,0,0,0,0,0,1,1,0,0,0,53.14,45.74,52,55,3.333333333333333,1,1,0,0,11,4,5,1,1024.5,1089803.552236704,619941.6852575042,270300.8074094661,66837.64959775182,3312.976765230185 -7305,9036,16379,16380,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,9,0,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,.9237219655805622,0,60.44,36.05,41.09,20.73,8.333333333333334,1,1,0,0,0,4,1,1,947,-68776.04448768198,18447.59890725958,0,0,292.2596773281702 -7305,9036,16380,16379,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,0,0,9,9,0,0,3,2,2019,20,8,0,0,4,8,0,0,0,1,26.8071237912139,27.77410897724586,254.1432886593662,0,1,1,0,0,0,41.09,20.73,60.44,36.05,1.666666666666667,1,1,0,0,0,4,1,1,947,-68776.04448768198,18447.59890725958,0,0,292.2596773281702 -7306,9037,16381,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.325835155103592,8.498726779121586,0,0,0,-894.4752368218395,-9,-9,2,2019,10,0,40,0,1,0,0,13.85686684038419,13.85686684038419,0,0,0,0,0,1,1,0,0,0,51.42,48.12,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,1318,638038.4820195378,631554.0867590418,172327.6217215745,73487.76427535385,1424.546344788502 -7307,9038,16382,16383,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.746384694588535,8.932843672503186,0,2,3,113.4253356247837,-9,-9,-9,2019,11,0,45,0,1,0,0,15.3748303717331,15.3748303717331,0,0,0,0,0,0,0,0,3.526965177952609,0,52,54.51,41.17,59.31,5,1,1,0,0,10,1,5,1,658.5,182991.8608303677,108777.6492496243,136601.6278277693,75674.20534956759,3428.276410534286 -7307,9038,16383,16382,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.159725921575843,8.015739648509667,0,2,-3,158.5071558968104,0,-9,-9,2019,16,5,39,46,1,5,0,11.21414319363159,11.21414319363159,0,0,0,0,71.5,0,0,0,0,0,41.17,59.31,52,54.51,8.333333333333334,1,1,0,0,8,1,5,1,658.5,182991.8608303677,108777.6492496243,136601.6278277693,75674.20534956759,3428.276410534286 -7308,9039,16384,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.490147003777584,7.549427737197481,0,0,0,-1128.915554498195,0,3,3,2019,12,1,15,20,1,1,0,12.9752430410347,12.9752430410347,0,0,0,0,0,0,0,0,7.614183294085259,0,55.51,46.03,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,588,98165.88898620555,-18579.27430810811,123067.7420469642,-11666.2733053192,1184.04939243911 -7309,9040,16385,-9,16388,16386,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.233849810872,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.7821532001347951,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1181,1223453.534656956,24448.45487302576,736660.6353955664,0,5478.607387046995 -7309,9040,16386,16388,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,9.578626983089636,9.508025886571563,0,3,10,-24.60745808095156,-9,-9,-9,2019,16,4,60,0,1,4,0,22.84238901625562,22.84238901625562,0,0,0,0,0,0,0,0,0,0,42.46,54.85,54.1,59.11,8.333333333333334,1,1,0,0,9,13,5,1,1181,1223453.534656956,24448.45487302576,736660.6353955664,0,5478.607387046995 -7309,9040,16387,-9,16388,16386,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.0736183385994,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1181,1223453.534656956,24448.45487302576,736660.6353955664,0,5478.607387046995 -7309,9040,16388,16386,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.841968957488694,7.50923151155439,0,3,-10,-87.02331380414525,-9,3,2,2019,8,0,18,0,1,0,0,15.39318262831824,15.39318262831824,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.46,54.85,8.333333333333334,1,1,0,0,5,13,5,1,1181,1223453.534656956,24448.45487302576,736660.6353955664,0,5478.607387046995 -7310,9041,16389,16390,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.002929058433885,9.157031086573465,0,30,-2,108.1421347797629,0,-9,-9,2019,8,0,38,38,1,0,0,38.25789231769981,38.25789231769981,0,0,0,0,7,0,0,0,3.187758765115609,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,10,2,5,1,1033,2199959.571328758,1449643.054221707,770380.0791862381,112164.8560808171,6010.979599150174 -7310,9041,16390,16389,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.136023940693493,8.845074533542984,0,30,2,-3.045058294300349,0,-9,-9,2019,8,0,2,0,1,0,0,514.9270355917811,514.9270355917811,0,0,0,0,0,0,0,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,1033,2199959.571328758,1449643.054221707,770380.0791862381,112164.8560808171,6010.979599150174 -7311,9042,16391,16393,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.375783040610626,8.539895047980803,0,16,2,-23.89415655576808,0,2,2,2019,23,11,47,50,1,11,0,12.34379788553648,12.34379788553648,0,0,0,0,0,1,1,0,0,0,29.15,62.08,30.26,50.99,6.666666666666667,1,1,0,0,11,6,4,0,804,329530.9016576929,73308.62086373357,188618.0218738399,0,2758.695744975017 -7311,9042,16392,-9,16393,16391,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-978.0836182434729,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,0,804,329530.9016576929,73308.62086373357,188618.0218738399,0,2758.695744975017 -7311,9042,16393,16391,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.412396685696807,7.499790548305767,0,16,-2,25.15756302774432,0,2,2,2019,28,12,25,0,1,12,0,6.583392642077613,6.583392642077613,0,0,0,0,0,1,1,0,0,0,30.26,50.99,29.15,62.08,3.333333333333333,1,1,0,0,0,6,4,0,804,329530.9016576929,73308.62086373357,188618.0218738399,0,2758.695744975017 -7311,9042,16394,-9,16393,16391,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.3790306271428,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,804,329530.9016576929,73308.62086373357,188618.0218738399,0,2758.695744975017 -7312,9043,16395,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.055539504050348,7.178738882559555,0,0,-1025.172499736329,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.13897767851431,0,51.82,39.4,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,1877,868399.7215018531,271871.4697020352,271323.0729816867,0,1895.918691994026 -7313,9044,16396,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.724058375420144,9.149795796112979,0,0,0,-948.7184308342064,0,2,2,2019,6,0,60,55,1,0,0,26.89218691097012,26.89218691097012,0,0,0,0,0,0,0,0,2.651996657574789,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,485,1091961.720885326,528299.9846677688,247930.0980768351,0,4210.676323471471 -7314,9045,16397,16398,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.28398903736654,8.624481768897269,0,2,-5,53.33238558354933,0,2,-9,2019,11,0,41,39,1,0,0,11.74742008274961,11.74742008274961,0,0,0,0,0,0,0,0,0,0,46.86,55.66,50,49,8.333333333333334,1,1,0,0,9,1,4,1,219.5,128056.4224433041,40536.6178547603,64261.72645235041,57467.57683676269,3528.10538044927 -7314,9045,16398,16397,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.502615472002207,7.659148429138259,0,2,5,19.26952673563148,-9,-9,-9,2019,10,0,40,0,1,1,0,5.322033928833084,5.322033928833084,0,0,0,0,0,0,0,0,6.856547415885694,0,50,49,46.86,55.66,7,1,1,0,0,1,1,4,1,219.5,128056.4224433041,40536.6178547603,64261.72645235041,57467.57683676269,3528.10538044927 -7315,9046,16399,16400,-9,-9,1,1,47,0,0,0,3,3,-9,1,5,9.032915435538568,9.294621859118079,0,10,0,41.07723074498013,0,-9,-9,2019,6,0,66,68,1,0,0,16.11930754629098,16.11930754629098,0,0,0,0,7,1,1,0,0,0,57.06,57.76,26.4,24.38,8.333333333333334,1,1,0,0,13,12,5,1,850,98765.28302827221,-1760.722663659926,0,0,4440.764732476673 -7315,9046,16400,16399,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,10,0,132.9166390866805,0,3,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.4,24.38,57.06,57.76,3.333333333333333,1,1,0,0,3,12,5,1,850,98765.28302827221,-1760.722663659926,0,0,4440.764732476673 -7316,9047,16401,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.0153658708057,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,34.19,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,302,0,0,0,0,576.0420139365151 -7317,9048,16402,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0363735326899,8.218654462216652,7.787159953401726,0,0,-974.3511285770566,0,3,3,2019,9,0,60,80,1,0,0,2.350942281486944,2.350942281486944,0,0,0,0,0,0,0,0,7.396872374079337,7.283066721432359,53,52,-9,-9,8.333333333333334,2,3,0,0,9,10,4,1,621,278770.0392984092,50040.62889068849,165313.3129221222,8523.883729607973,1590.580032487223 -7318,9049,16403,-9,16405,16404,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-892.0438147191066,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,825.3333333333334,542664.9515149046,113002.9727402811,397976.4798647807,204484.501400506,4575.96671682475 -7318,9049,16404,16405,-9,-9,1,1,47,0,1,0,1,1,-9,0,1,8.961559714867278,8.935737611548827,0,15,-10,16.04812749129447,0,1,1,2019,20,9,50,50,1,9,0,22.17124017812918,22.17124017812918,0,0,0,0,0,1,1,0,3.38789672755972,0,43.37,31.76,49.04,55.86,6.666666666666667,1,1,0,0,9,4,5,1,825.3333333333334,542664.9515149046,113002.9727402811,397976.4798647807,204484.501400506,4575.96671682475 -7318,9049,16405,16404,-9,-9,1,0,57,0,1,0,1,1,-9,0,3,8.34981330262894,8.431138663500848,0,16,10,-72.10746909131197,0,2,2,2019,9,1,40,50,1,1,0,14.68339141694769,14.68339141694769,0,0,0,0,0,1,1,0,3.433272175888802,0,49.04,55.86,43.37,31.76,8.333333333333334,1,1,0,0,9,4,5,1,825.3333333333334,542664.9515149046,113002.9727402811,397976.4798647807,204484.501400506,4575.96671682475 -7319,9050,16406,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.022549968082554,7.041080332542421,0,0,-979.1037035751057,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.133037265095692,6.805014049611252,54.37,54.8,-9,-9,10,1,1,0,0,0,11,2,1,291,337591.3199566611,323030.3504283571,120052.3313793774,0,864.9837204225209 -7320,9051,16407,16408,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,4.034179771856781,4.15258918602455,41,-2,-71.63972464237986,0,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,4.062374574453272,4.157481417736554,36.94,22.04,47.01,36.9,1.666666666666667,4,2,0,1,7,9,3,1,464.5,1926868.610270832,923859.0463539145,512868.4222106464,0,2222.463632797233 -7320,9051,16408,16407,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.344204736004318,7.805592130797505,41,2,100.8846837843692,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.123496800833901,7.945529400094881,47.01,36.9,36.94,22.04,6.666666666666667,1,1,0,0,8,9,3,1,464.5,1926868.610270832,923859.0463539145,512868.4222106464,0,2222.463632797233 -7321,9052,16409,16410,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,8,-8,101.1180432283738,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.665485961522774,0,65.15000000000001,29.3,58.23,24.82,10,1,1,0,0,0,12,2,1,387,412563.3403602566,52856.26179884845,134271.7808099122,0,1170.127057243147 -7321,9052,16410,16409,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,6.067709361463766,6.116764156364352,8,8,-159.9587144346517,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,27.8871184967556,0,2,1,1,0,4.965869833357176,6.515491800834901,58.23,24.82,65.15000000000001,29.3,1.666666666666667,1,1,0,0,0,12,2,1,387,412563.3403602566,52856.26179884845,134271.7808099122,0,1170.127057243147 -7322,9053,16411,16412,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,6.493528881946332,6.438966085399825,0,34,0,-68.40259795339932,0,3,3,2019,11,0,45,48,1,0,0,1.602608947981482,1.602608947981482,0,0,0,0,0,0,0,0,4.061719945435214,0,54.33,50.48,36.93,56.27,5,1,1,0,0,9,7,4,1,893,401673.546726649,227189.2071379601,338120.1032538203,0,2937.864722852094 -7322,9053,16412,16411,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.549907683643152,8.482239667152173,0,34,0,139.8614882222351,0,3,2,2019,18,8,37,37,1,8,0,15.43453864052009,15.43453864052009,0,0,0,0,0,0,0,0,7.780870503508489,0,36.93,56.27,54.33,50.48,6.666666666666667,1,1,0,0,9,7,4,1,893,401673.546726649,227189.2071379601,338120.1032538203,0,2937.864722852094 -7323,9054,16413,16414,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.326854505411353,8.002467559760714,0,11,-2,45.7744712190547,0,1,1,2019,8,0,30,33,1,0,0,15.1407805222708,15.1407805222708,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,56,6.666666666666667,3,4,0,0,9,8,4,0,934.25,104072.0430570864,143341.9894271823,0,0,3270.348890949817 -7323,9054,16414,16413,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,7.885924535228895,8.003550086908239,0,11,2,-61.7335237774693,0,2,2,2019,9,0,35,40,1,1,0,9.775435367309381,9.775435367309381,0,0,0,0,0,1,1,0,0,0,52,56,57.16,56.15,7,3,4,0,0,9,8,4,0,934.25,104072.0430570864,143341.9894271823,0,0,3270.348890949817 -7323,9054,16415,-9,16413,16414,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.807927258215,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,934.25,104072.0430570864,143341.9894271823,0,0,3270.348890949817 -7323,9054,16416,-9,16413,16414,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.9852026574929,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,934.25,104072.0430570864,143341.9894271823,0,0,3270.348890949817 -7324,9055,16417,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.086976480285,0,3,3,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97,48.55,-9,-9,3.333333333333333,1,1,0,1,0,7,2,1,282,391614.8239248458,0,358333.2885617014,31125.34638297496,-266.8472720121408 -7325,9056,16418,16419,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-4,-65.00166780192687,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.38,43.85,47.78,36.16,8.333333333333334,1,1,0,0,0,5,2,0,589,45494.79662702531,47647.00627012195,0,0,1345.629386537224 -7325,9056,16419,16418,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.158183491735326,3.120100157752025,7,4,-53.27662086687632,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,2.912112315369938,47.78,36.16,55.38,43.85,10,1,1,0,0,0,5,2,0,589,45494.79662702531,47647.00627012195,0,0,1345.629386537224 -7326,9057,16420,-9,16421,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1033.16064112114,0,3,-9,2019,10,0,0,20,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,4,4,1,0,593,0,0,0,0,-151.133249079746 -7326,9058,16421,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.398023608213867,7.341315184150546,0,0,0,-858.4425785452133,0,-9,-9,2019,15,3,30,32,1,3,0,5.696323504829275,5.696323504829275,0,0,0,0,0,1,1,0,0,0,34.48,57.36,-9,-9,3.333333333333333,1,1,0,1,3,4,3,0,1265,225161.0003058396,50830.67546152261,0,0,813.9427781223303 -7326,9059,16422,-9,16421,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1042.573075328613,0,3,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,1,0,4,1,0,221,172395.2421236729,0,0,0,72.23391052027529 -7327,9060,16423,16424,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.974851357704541,7.259796585061641,0,6,-2,42.82660650010227,0,3,-9,2019,9,0,8,6,1,0,0,14.56599346207757,14.56599346207757,0,0,0,0,0,1,1,0,0,0,54.44,51.82,43.54,59.6,5,1,1,0,0,5,11,3,1,1090,137359.8915973199,-19780.70932063192,138926.2824400566,52691.9826364011,2816.698916673917 -7327,9060,16424,16423,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.969225679726684,7.897903908826788,0,6,2,-63.48680060905291,0,3,2,2019,11,0,42,46,1,0,0,7.825928526145091,7.825928526145091,0,0,0,0,0,1,1,0,0,0,43.54,59.6,54.44,51.82,6.666666666666667,1,1,0,0,7,11,3,1,1090,137359.8915973199,-19780.70932063192,138926.2824400566,52691.9826364011,2816.698916673917 -7327,9060,16425,-9,16423,16424,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.096214522295,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,1090,137359.8915973199,-19780.70932063192,138926.2824400566,52691.9826364011,2816.698916673917 -7327,9060,16426,-9,16423,16424,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-955.2095082872968,1,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1090,137359.8915973199,-19780.70932063192,138926.2824400566,52691.9826364011,2816.698916673917 -7327,9060,16427,-9,16423,16424,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.3611866470158,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,1090,137359.8915973199,-19780.70932063192,138926.2824400566,52691.9826364011,2816.698916673917 -7328,9061,16428,-9,16432,-9,1,0,30,0,3,0,3,3,-9,1,4,0,5.32852824523298,5.158147190332521,0,0,-994.3880754745167,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,5.885903187405153,0,48,57,-9,-9,6.666666666666667,1,1,0,0,1,2,2,0,921.25,-22499.00196123328,0,0,0,1770.240495552517 -7328,9061,16429,-9,16428,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.639561423753,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,921.25,-22499.00196123328,0,0,0,1770.240495552517 -7328,9061,16430,-9,16428,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-858.1383619853999,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,921.25,-22499.00196123328,0,0,0,1770.240495552517 -7328,9061,16431,-9,16428,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.9051895907412,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,921.25,-22499.00196123328,0,0,0,1770.240495552517 -7328,9062,16432,-9,-9,-9,1,0,65,0,3,0,3,3,-9,0,3,0,5.977012991699739,6.269743705240774,0,0,-907.1267221573146,-9,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.91714754994085,0,44.23,41.64,-9,-9,5,1,1,0,0,4,2,2,0,1872,85361.26541597756,139135.2565300076,41487.1653882542,0,134.9912548335987 -7329,9063,16433,16434,-9,-9,1,1,26,0,0,0,2,2,-9,0,1,0,0,0,3,1,-31.67366105808175,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.32,19.69,40.46,63.68,3.333333333333333,1,1,1,1,6,1,4,0,901,58585.59552624444,108367.3151356435,166090.7531856812,98492.80818693448,2608.831374882835 -7329,9063,16434,16433,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.624341072478417,9.053446600021985,0,3,-1,-60.94663831859764,0,2,-9,2019,14,2,40,35,1,2,0,14.73657922202086,14.73657922202086,0,0,0,0,86,1,1,0,0,0,40.46,63.68,43.32,19.69,6.666666666666667,1,1,0,0,7,1,4,0,901,58585.59552624444,108367.3151356435,166090.7531856812,98492.80818693448,2608.831374882835 -7330,9064,16435,-9,-9,-9,1,0,35,1,4,0,2,2,-9,0,3,0,0,0,0,0,-1015.971540780855,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,46.03,50.54,-9,-9,8.333333333333334,1,1,0,1,1,6,1,0,591.75,59595.32671957427,0,0,0,1809.449657801814 -7330,9064,16436,-9,16435,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-932.6786151266564,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,6,1,0,591.75,59595.32671957427,0,0,0,1809.449657801814 -7330,9064,16437,-9,16435,-9,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-829.97806930928,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,591.75,59595.32671957427,0,0,0,1809.449657801814 -7330,9064,16438,-9,16435,-9,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.0506910874468,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,591.75,59595.32671957427,0,0,0,1809.449657801814 -7331,9065,16439,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1005.670184999278,0,3,3,2019,22,8,0,15,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.94,27.47,-9,-9,8.333333333333334,1,1,0,0,10,13,1,0,636,-27550.41006034764,0,0,0,1238.891601554753 -7332,9066,16440,16441,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.601893071176617,8.23651130069052,0,2,0,2.623049692330984,0,2,3,2019,6,2,40,38,1,2,0,12.56905687871189,12.56905687871189,0,0,0,0,0,0,0,0,3.462070079349199,0,48.45,57.49,57.06,57.76,8.333333333333334,1,1,0,0,3,5,5,0,362,174107.355454896,2011.644315362515,303848.8870428465,216615.7331257696,3606.561998744837 -7332,9066,16441,16440,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.452295319937575,8.735374656867885,0,2,0,-82.515261887771,0,-9,-9,2019,5,0,38,38,1,0,0,12.51427899581867,12.51427899581867,0,0,0,0,0,0,0,0,5.097430303272827,0,57.06,57.76,48.45,57.49,8.333333333333334,1,1,0,0,2,5,5,0,362,174107.355454896,2011.644315362515,303848.8870428465,216615.7331257696,3606.561998744837 -7333,9067,16442,16443,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.426773911058088,7.494260753939984,20,3,31.8331600235423,0,3,3,2019,6,0,0,28,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.43084381924907,62.49,55.09,47.42,42,10,1,1,0,0,8,5,4,1,284.5,1635117.751508093,1089630.068098292,409388.0583096623,0,3282.364368611556 -7333,9067,16443,16442,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.70893080796749,7.796441854188516,22,-3,25.13873241096015,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.935478674083871,7.713081430985227,47.42,42,62.49,55.09,8.333333333333334,1,1,0,0,4,5,4,1,284.5,1635117.751508093,1089630.068098292,409388.0583096623,0,3282.364368611556 -7334,9068,16444,16445,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.843818406213518,7.862006928560269,0,2,5,31.17634231312763,0,3,3,2019,9,0,38,38,1,0,0,9.539136838257159,9.539136838257159,0,0,0,0,0,0,0,0,0,0,52.01,43.45,49.06,58.64,5,1,1,0,0,13,2,4,0,317,158272.732129645,48582.42530552131,260294.2745907035,54564.79171631413,2243.539622081864 -7334,9068,16445,16444,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.12330757935602,7.946448964707646,0,2,-5,29.50682169153055,0,-9,-9,2019,7,0,40,40,1,0,0,10.3520718828378,10.3520718828378,0,0,0,0,0,0,0,0,0,0,49.06,58.64,52.01,43.45,5,1,1,0,0,6,2,4,0,317,158272.732129645,48582.42530552131,260294.2745907035,54564.79171631413,2243.539622081864 -7335,9069,16446,16448,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.957349745411863,8.106351451013559,0,19,1,60.75136182188258,0,2,2,2019,8,1,46,42,1,1,0,7.068980934535274,7.068980934535274,0,0,0,0,0,1,1,0,0,0,50.03,52.62,49.72,50.05,3.333333333333333,1,1,0,0,10,7,4,0,2730.333333333333,345125.4522042468,-44908.80944104252,547848.262506829,305182.0580295305,2443.044671257762 -7335,9069,16447,-9,16448,16446,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-836.0893666961085,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,0,7,4,0,2730.333333333333,345125.4522042468,-44908.80944104252,547848.262506829,305182.0580295305,2443.044671257762 -7335,9069,16448,16446,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.077194725742213,6.949567445384126,0,21,-1,-84.70184720141098,0,2,2,2019,12,0,40,40,1,0,0,2.541465765702384,2.541465765702384,0,0,0,0,0,1,1,0,0,0,49.72,50.05,50.03,52.62,3.333333333333333,1,1,0,0,9,7,4,0,2730.333333333333,345125.4522042468,-44908.80944104252,547848.262506829,305182.0580295305,2443.044671257762 -7336,9070,16449,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,5,0,7.862536887631332,8.072495082504288,0,0,-942.1559108205129,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.648918970272452,8.067574495699727,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,2890,1668095.123500554,67690.5215313143,335833.4807979211,0,2649.660745317759 -7337,9071,16450,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.485614986737948,8.799665555478382,6.762642856349135,0,0,-992.7666014756288,0,3,3,2019,24,9,76,49,1,9,0,7.705290400431523,7.705290400431523,0,0,0,0,0,1,1,0,6.961469727244827,0,32.84,60.85,-9,-9,5,1,1,0,1,9,12,5,0,550.5,103261.3679310466,243756.7037771924,0,0,1990.845417813665 -7337,9071,16451,-9,16450,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.743833547921,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,0,550.5,103261.3679310466,243756.7037771924,0,0,1990.845417813665 -7338,9072,16452,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,2,6.750993082838041,6.952515984716695,0,0,0,-1075.910597493018,0,2,1,2019,27,11,20,16,1,11,0,5.412944183508823,5.412944183508823,0,0,0,0,0,1,1,0,0,0,34.42,42.75,-9,-9,1.666666666666667,4,2,0,1,8,6,2,0,1161,-24316.01170020313,0,0,0,1264.552918258506 -7339,9073,16453,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,5,7.686358017627247,7.818964897579805,0,0,0,-947.4806418494239,-9,-9,-9,2019,6,0,70,0,1,0,0,3.804229891498043,3.804229891498043,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,303,-177957.7576058637,36635.3382540615,0,0,729.5685073363335 -7340,9074,16454,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.237335932203941,6.336716565888204,0,0,-960.7417183839013,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,13.89000985877016,0,0,1,1,0,0,6.599134571114363,53,45,-9,-9,8,1,1,0,0,0,11,2,1,387,328999.3758567292,229563.8783162479,86985.07424254337,0,1828.847353566368 -7341,9075,16455,-9,16458,16457,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.026788617429,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,697.8,705062.4013781957,505879.0077328657,349007.2019441993,157184.4272994258,3971.35458713873 -7341,9075,16456,-9,16458,16457,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-925.1451896253062,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,697.8,705062.4013781957,505879.0077328657,349007.2019441993,157184.4272994258,3971.35458713873 -7341,9075,16457,16458,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,8.198021601097544,8.039206252013683,0,18,0,-68.51943220779606,0,2,1,2019,10,3,30,28,1,3,0,16.96324282680744,16.96324282680744,0,0,0,0,27,1,1,0,6.489001978696792,0,54.2,57.49,41.01,62.29,8.333333333333334,1,1,0,0,11,10,4,1,697.8,705062.4013781957,505879.0077328657,349007.2019441993,157184.4272994258,3971.35458713873 -7341,9075,16458,16457,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,8.489517876745998,8.599320895484686,0,18,0,-16.4702867638417,0,1,1,2019,19,8,48,32,1,8,0,10.04504243994693,10.04504243994693,0,0,0,0,5.48,1,1,0,5.441779383835828,0,41.01,62.29,54.2,57.49,6.666666666666667,1,1,0,0,11,10,4,1,697.8,705062.4013781957,505879.0077328657,349007.2019441993,157184.4272994258,3971.35458713873 -7341,9075,16459,-9,16458,16457,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1070.866585121782,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,697.8,705062.4013781957,505879.0077328657,349007.2019441993,157184.4272994258,3971.35458713873 -7342,9076,16460,16461,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.142068153339856,7.379617913167407,37,8,-89.41596409600362,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.811411775279681,7.206165318147448,54.79,55.86,55.51,51.57,10,1,1,0,0,9,7,3,1,491.5,1532480.55635982,1035813.55851701,414611.5841068055,0,1920.899960297923 -7342,9076,16461,16460,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.249290393320271,6.701459786679313,37,-8,-89.05657779302737,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.425695759350893,7.150962745725666,55.51,51.57,54.79,55.86,5,1,1,0,0,5,7,3,1,491.5,1532480.55635982,1035813.55851701,414611.5841068055,0,1920.899960297923 -7343,9077,16462,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1200.693132383939,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.130366833429971,0,70.08,24.31,-9,-9,10,1,1,0,0,0,9,2,0,1409,153045.7916803792,0,0,0,522.2922061270132 -7344,9078,16463,-9,16464,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.4653427082694,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,1,1106,-4768.454556755019,45729.71994088459,0,0,1887.505384114939 -7344,9078,16464,-9,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,8.394251119164963,8.206093646381786,0,0,0,-1035.126576706524,-9,2,2,2019,10,0,22,0,1,0,0,18.66778611473694,18.66778611473694,0,0,0,0,7,0,0,0,6.693658195320766,0,44.47,55.39,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,1106,-4768.454556755019,45729.71994088459,0,0,1887.505384114939 -7345,9079,16465,-9,16466,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1113.462105954177,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,349.5,232095.1452675025,130054.9016373426,672939.840518296,340558.611188504,3511.281403997868 -7345,9079,16466,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,8.874976087079755,8.952123984623748,6.354702318787004,0,0,-965.3376419976532,0,2,2,2019,11,2,43,40,1,2,0,21.82830880260906,21.82830880260906,0,0,0,0,0,1,1,0,7.014792695350405,0,51.73,58.82,-9,-9,6.666666666666667,3,4,0,0,6,8,5,1,349.5,232095.1452675025,130054.9016373426,672939.840518296,340558.611188504,3511.281403997868 -7346,9080,16467,-9,16470,16468,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.546025850149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,437.25,240055.4120276746,164003.4162538973,0,0,3674.201810707053 -7346,9080,16468,16470,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.822178340033306,9.087428602556145,0,13,-1,-64.26398669747768,0,2,2,2019,11,0,49,49,1,0,0,13.62739457109753,13.62739457109753,0,0,0,0,0,1,1,0,2.815318924827224,0,46.5,58.26,53.05,52.71,8.333333333333334,1,1,0,0,8,10,4,1,437.25,240055.4120276746,164003.4162538973,0,0,3674.201810707053 -7346,9080,16469,-9,16470,16468,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.752130294597,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,437.25,240055.4120276746,164003.4162538973,0,0,3674.201810707053 -7346,9080,16470,16468,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.882156400516833,7.644795818198292,0,13,1,48.71264396394037,0,2,2,2019,10,1,28,26,1,1,0,12.25301678697602,12.25301678697602,0,0,0,0,0,1,1,0,0,0,53.05,52.71,46.5,58.26,8.333333333333334,1,1,0,0,8,10,4,1,437.25,240055.4120276746,164003.4162538973,0,0,3674.201810707053 -7347,9081,16471,16472,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.598967901793007,8.456455091066362,0,35,2,-131.8063441263785,0,3,1,2019,7,0,50,50,1,0,0,11.70328916713372,11.70328916713372,0,0,0,0,7,0,0,0,7.567100124723069,0,53.61,59.13,54.2,57.49,10,1,1,0,0,10,9,5,1,442,507395.9281840556,94807.14632755915,619315.4187403083,78942.49058718204,5673.176852305754 -7347,9081,16472,16471,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.597011504227234,8.625034759820045,0,34,-2,-9.114638505032346,0,1,1,2019,12,0,24,30,1,0,0,26.05339157581992,26.05339157581992,0,0,0,0,7,0,0,0,7.260806587799387,0,54.2,57.49,53.61,59.13,8.333333333333334,1,1,0,0,10,9,5,1,442,507395.9281840556,94807.14632755915,619315.4187403083,78942.49058718204,5673.176852305754 -7348,9082,16473,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1028.913085239875,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,6.666666666666667,3,4,0,0,0,7,1,0,643,112049.9481261566,0,0,0,1872.451021526221 -7349,9083,16474,16475,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.553992936041588,8.384941949251665,0,19,0,35.05523308931171,0,1,3,2019,7,0,65,57,1,0,0,9.538579017589893,9.538579017589893,0,0,0,0,0,1,1,0,2.814180886367667,0,57.06,57.76,54.27,43.84,10,1,1,0,0,10,7,4,1,346.3333333333333,302205.6278811965,55022.59939725314,282352.5014277826,0,3191.899927598478 -7349,9083,16475,16474,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,6.825448569693092,6.885803596240093,0,19,0,-116.1945952951776,0,-9,-9,2019,7,0,16,16,1,0,0,7.377080308353226,7.377080308353226,0,0,0,0,0,1,1,0,0,0,54.27,43.84,57.06,57.76,8.333333333333334,1,1,0,0,8,7,4,1,346.3333333333333,302205.6278811965,55022.59939725314,282352.5014277826,0,3191.899927598478 -7349,9083,16476,-9,16475,16474,1,0,15,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1059.103833354448,-9,1,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,32,-9,-9,4,1,1,-9,0,0,7,4,1,346.3333333333333,302205.6278811965,55022.59939725314,282352.5014277826,0,3191.899927598478 -7349,9084,16477,-9,16475,16474,1,0,25,0,1,0,1,1,-9,0,4,8.196857403063875,7.931545982881699,0,0,0,-970.3102528856338,0,2,2,2019,11,0,36,48,1,2,1,12.34046033556921,12.34046033556921,0,0,0,0,0,1,1,0,3.185909392048988,0,47,58,-9,-9,7,1,1,0,0,1,7,4,1,166,0,0,0,0,1651.681307728933 -7350,9085,16478,16479,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.645833300945877,8.395568453997727,7.681469911922582,25,-6,-47.09156895986448,-9,2,2,2019,14,3,20,0,1,3,0,12.34312647941789,12.34312647941789,0,0,0,0,0,1,1,0,4.170746154265284,8.105185579356371,55.9,52.64,51.24,58.84,8.333333333333334,1,1,0,0,11,7,4,1,562.5,2167671.01019579,1069765.786284817,505480.2360471619,0,3370.447197232621 -7350,9085,16479,16478,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,4.904165634749245,4.873685088744748,26,6,-48.46625380674161,-9,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.718442696191407,5.086476782402605,51.24,58.84,55.9,52.64,8.333333333333334,1,1,0,0,10,7,4,1,562.5,2167671.01019579,1069765.786284817,505480.2360471619,0,3370.447197232621 -7351,9086,16480,16481,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.653776929848643,8.37524612515095,0,7,-3,-124.3756379155321,0,2,3,2019,11,0,38,41,1,0,0,14.31028690158809,14.31028690158809,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.33,55.93,6.666666666666667,1,1,0,0,8,12,5,1,1254.5,900156.1210018414,450454.9172597775,158928.0712154695,0,4126.810031316851 -7351,9086,16481,16480,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,9.002308379865532,8.753216692253575,0,7,3,-59.28410177262798,0,3,3,2019,11,0,42,45,1,0,0,18.92190775474682,18.92190775474682,0,0,0,0,0,0,0,0,0,0,46.33,55.93,46.08,57.2,6.666666666666667,1,1,0,0,8,12,5,1,1254.5,900156.1210018414,450454.9172597775,158928.0712154695,0,4126.810031316851 -7352,9087,16482,16483,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.802103771228203,7.773948265892323,0,40,-6,-40.14236316106225,0,2,2,2019,12,0,24,24,1,0,0,10.92221956887283,10.92221956887283,0,0,0,0,2,1,1,0,4.615723665964619,0,57.16,56.15,57.74,33.09,8.333333333333334,1,1,0,0,10,6,3,1,1479,752652.5769059424,147698.2938151426,450301.7860855183,0,2445.788371555007 -7352,9087,16483,16482,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.396214141139962,7.362179994013546,5.000940137228601,40,6,-34.83542463379984,0,2,3,2019,10,0,24,24,1,0,0,5.662430072734055,5.662430072734055,0,0,0,0,0,1,1,0,5.498486312485414,5.365209146630525,57.74,33.09,57.16,56.15,8.333333333333334,1,1,0,0,10,6,3,1,1479,752652.5769059424,147698.2938151426,450301.7860855183,0,2445.788371555007 -7353,9088,16484,16487,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,8.343143327333211,8.36697067175054,0,18,15,-108.30864670245,0,3,3,2019,9,0,72,48,1,0,0,5.516856121781316,5.516856121781316,0,0,0,0,2,1,1,0,0,0,50.85,52.08,53.89,38.58,8.333333333333334,1,1,0,0,12,2,4,1,1055.75,546604.5395461783,113030.7071141922,208166.9397054607,0,2803.851441572023 -7353,9088,16485,-9,16487,16484,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.6703648764501,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,1055.75,546604.5395461783,113030.7071141922,208166.9397054607,0,2803.851441572023 -7353,9088,16486,-9,16487,16484,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.913962218653,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,1055.75,546604.5395461783,113030.7071141922,208166.9397054607,0,2803.851441572023 -7353,9088,16487,16484,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.222749082478561,7.973194625543635,0,18,-15,-61.48492606158737,0,2,2,2019,12,1,33,33,1,1,0,8.260185652653755,8.260185652653755,0,0,0,0,7,1,1,0,0,0,53.89,38.58,50.85,52.08,8.333333333333334,1,1,0,0,12,2,4,1,1055.75,546604.5395461783,113030.7071141922,208166.9397054607,0,2803.851441572023 -7354,9089,16488,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.61465683987322,5.643860201853547,0,0,-987.687291230321,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.849276666859248,53.94,45.89,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,306,-14708.1967240566,47074.82440266351,0,0,1524.000211997568 -7355,9090,16489,16490,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.437395880640471,8.11955563291462,41,7,68.34458379047936,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.957534655896504,50.63,41.5,36.03,40.6,3.333333333333333,2,3,0,0,0,8,3,1,631.5,920904.3393019569,729611.8748710274,237435.3453414375,0,2146.286316129883 -7355,9090,16490,16489,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,41,-7,-35.26441074707297,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,50.63,41.5,6.666666666666667,2,3,0,0,0,8,3,1,631.5,920904.3393019569,729611.8748710274,237435.3453414375,0,2146.286316129883 -7355,9091,16491,-9,16490,16489,1,0,36,0,0,0,1,1,-9,0,4,8.795276249536892,8.365196593224825,0,0,0,-1007.965056328063,0,2,2,2019,11,0,28,38,1,2,1,23.6884522500896,23.6884522500896,0,0,0,0,0,1,1,0,4.182121421302345,0,48,56,-9,-9,7,2,3,0,0,1,8,5,1,376,-44156.54378257977,-53718.67501780183,0,0,2133.337214377445 -7356,9092,16492,16493,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.866445809642971,7.151716794191132,11,-3,-39.30266498564101,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,31.09354949316952,0,0,1,1,0,4.69079754460479,6.886788361757453,58.9,13.94,57.33,32.2,8.333333333333334,1,1,0,0,0,4,2,1,634,611775.8964541068,423733.1001580351,262856.1634235299,0,2827.591399489165 -7356,9092,16493,16492,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.504080734995228,6.522084147054664,11,3,-209.7506397791906,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.877575030655235,6.599247399375122,57.33,32.2,58.9,13.94,8.333333333333334,1,1,0,0,0,4,2,1,634,611775.8964541068,423733.1001580351,262856.1634235299,0,2827.591399489165 -7357,9093,16494,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.586263235068149,8.663661560935415,0,0,0,-971.926160230283,0,1,1,2019,6,0,37,50,1,0,0,20.00799173232494,20.00799173232494,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,8,4,5,1,82,-153909.1736410422,101005.0972812828,117885.1942763359,69799.55674604843,1635.41000317603 -7358,9094,16495,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.721368204900367,8.866188992955054,0,0,0,-1064.06454848968,0,3,3,2019,10,0,39,38,1,0,0,15.34200353767785,15.34200353767785,0,0,0,0,0,0,0,0,3.836249079144506,0,54.25,43.85,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,1199,513318.2421754581,44938.53194716794,260965.4115128938,105372.7719276344,2418.767552462815 -7359,9095,16496,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,9.234597638569571,8.959570108726302,0,0,0,-986.5700843194934,-9,-9,-9,2019,5,0,38,0,1,0,0,24.11004648582128,24.11004648582128,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,11,5,0,971,91164.89983800959,-26757.1730487293,238645.901766132,186703.1173051651,2904.821895746498 -7360,9096,16497,-9,16498,16499,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.609804069786,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,4,0,395.75,14449.91824831595,57668.48694058401,0,0,3851.651961365673 -7360,9096,16498,16499,-9,-9,1,0,37,1,2,0,2,2,-9,0,2,8.048534727094628,8.082384202357053,0,11,1,-114.604095516903,0,2,2,2019,10,2,19,19,1,2,0,22.6872616153038,22.6872616153038,0,0,0,0,0,1,1,0,0,0,52,43.99,60.02,56.42,8.333333333333334,1,1,0,0,11,7,4,0,395.75,14449.91824831595,57668.48694058401,0,0,3851.651961365673 -7360,9096,16499,16498,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,8.688506603897784,8.724910418776634,0,11,-1,-19.76011201887641,0,2,2,2019,7,0,44,44,1,0,0,14.71616326199272,14.71616326199272,0,0,0,0,0,1,1,0,0,0,60.02,56.42,52,43.99,10,1,1,0,0,11,7,4,0,395.75,14449.91824831595,57668.48694058401,0,0,3851.651961365673 -7360,9096,16500,-9,16498,16499,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.7987351323166,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,395.75,14449.91824831595,57668.48694058401,0,0,3851.651961365673 -7361,9097,16501,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.969784110006911,7.215990586953641,0,0,-1048.082694659411,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.709998422698638,7.515779059418556,56.59,42.63,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,275,36722.98450542499,106447.1186390722,0,0,2332.50712926749 -7362,9098,16502,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1070.104456551793,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,688,-43471.30623953365,0,0,0,771.7655214872195 -7363,9099,16503,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-959.7675744778745,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,5.944744051860205,0,0,1,1,0,0,0,51.16,36.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1024,44151.71748768156,0,0,0,1025.97251978503 -7364,9100,16504,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.724297710107425,8.542465815874579,0,0,0,-1038.177748643317,0,2,1,2019,14,2,40,39,1,2,0,19.17818659990012,19.17818659990012,0,0,0,0,0,0,0,0,1.317616891562148,0,42.46,54.85,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,70,102583.301123297,138485.661423368,0,0,2520.39293741231 -7365,9101,16505,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,4.879720518794722,4.516198917092461,0,0,-1041.291319131345,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.013032325950993,0,67.31,43.36,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1005,-51491.39378949106,-47414.59103865644,71543.294720807,0,429.2029961958939 -7366,9102,16506,-9,16508,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1048.786710496109,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,1232,539086.6787888169,65894.52770849744,98311.1656254496,2364.689779762723,4214.77974292635 -7366,9102,16507,16508,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.067559407490581,9.237323714681658,0,5,11,31.07324418829987,0,-9,-9,2019,7,0,42,42,1,0,0,23.16104264749475,23.16104264749475,0,0,0,0,0,1,1,0,1.09630229283407,0,57.16,56.15,46.5,58.26,8.333333333333334,1,1,0,0,7,12,5,1,1232,539086.6787888169,65894.52770849744,98311.1656254496,2364.689779762723,4214.77974292635 -7366,9102,16508,16507,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,8.013688840977849,7.89489976981501,0,5,-11,56.64339986495673,0,-9,-9,2019,16,4,37,37,1,4,0,9.146421765863387,9.146421765863387,0,0,0,0,7,1,1,0,0,0,46.5,58.26,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1232,539086.6787888169,65894.52770849744,98311.1656254496,2364.689779762723,4214.77974292635 -7367,9103,16509,16510,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,0,0,0,8,-4,-194.0052463673271,0,-9,-9,2019,10,1,0,26,3,1,0,0,0,0,0,0,0,0,1,1,0,2.185794135562021,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,715.3333333333334,610251.4835762409,252302.4214087134,539125.0597375969,260046.1083527437,1668.177458385453 -7367,9103,16510,16509,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.652642962512594,8.806304924433702,0,8,4,103.0158417574012,0,2,2,2019,6,0,38,38,1,0,0,18.93792760750108,18.93792760750108,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,715.3333333333334,610251.4835762409,252302.4214087134,539125.0597375969,260046.1083527437,1668.177458385453 -7367,9103,16511,-9,16509,16510,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.559989107917,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,715.3333333333334,610251.4835762409,252302.4214087134,539125.0597375969,260046.1083527437,1668.177458385453 -7368,9104,16512,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.357263092575918,8.184722619080674,0,0,0,-900.6737490362664,0,-9,-9,2019,10,1,43,42,1,1,0,11.97386608695483,11.97386608695483,0,0,0,0,0,1,1,0,3.080255635959533,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,300,46621.57712100851,0,0,0,1409.270065687681 -7369,9105,16513,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.37125703061175,7.412783402622062,0,0,-984.1044755331029,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,1.456401503699,7.661440666087729,58.48,36.66,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,380,594923.6966099649,194606.8187066378,426296.1197499439,0,1832.979341154243 -7370,9106,16514,16515,16516,-9,1,1,50,0,0,0,1,1,-9,0,3,7.871341108163539,7.888561520923078,0,9,4,26.98619182141445,0,2,-9,2019,11,0,42,42,1,0,0,7.031867986063628,7.031867986063628,0,0,0,0,0,1,1,0,0,0,43.5,52.88,46.23,55.03,6.666666666666667,2,3,0,0,11,8,4,1,787,159818.6141917028,30105.4462776972,368758.5563871924,62496.34303694687,2214.326329702105 -7370,9106,16515,16514,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.871329809340154,7.941577897237361,0,27,-4,98.06748063996659,0,3,3,2019,10,0,42,42,1,0,0,8.455502525725857,8.455502525725857,0,0,0,0,0,1,1,0,3.708849463357897,0,46.23,55.03,43.5,52.88,8.333333333333334,2,3,0,0,11,8,4,1,787,159818.6141917028,30105.4462776972,368758.5563871924,62496.34303694687,2214.326329702105 -7370,9107,16516,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-966.8216125447028,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,8.574449797843611,0,0,1,1,0,0,0,56.6,33.83,-9,-9,5,2,3,0,0,0,8,2,1,2702,24443.70305580995,0,0,0,144.5172740135534 -7371,9108,16517,16518,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.124225460418435,8.117866646391089,0,29,-7,-63.47076325210125,0,2,2,2019,9,0,30,60,1,0,0,12.1063172086443,12.1063172086443,0,0,0,0,7,0,0,0,0,0,54.08,34.35,41.07,60.93,1.666666666666667,2,3,0,0,12,9,4,1,728,1679048.272464653,1131234.145759501,485609.7773803589,0,3100.370750962968 -7371,9108,16518,16517,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,8.317619616686301,7.854618202764908,29,7,11.32017407537749,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.825523658725871,41.07,60.93,54.08,34.35,8.333333333333334,2,3,0,0,10,9,4,1,728,1679048.272464653,1131234.145759501,485609.7773803589,0,3100.370750962968 -7372,9109,16519,16520,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.923699175299207,7.942024956087343,0,5,0,-53.11798574350724,0,-9,2,2019,8,0,45,45,1,0,0,6.798722156438282,6.798722156438282,0,0,0,0,0,0,0,0,0,0,53.36,53.7,54,54,8.333333333333334,1,1,0,0,9,5,4,1,998.5,348081.4249064811,336807.374439319,98866.36681910715,0,2822.410966122517 -7372,9109,16520,16519,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.13707962314836,8.403130614062871,0,3,0,66.19451814207143,0,-9,-9,2019,8,0,35,36,1,0,0,14.89379614710018,14.89379614710018,0,0,0,0,0,0,0,0,1.342603403853064,0,54,54,53.36,53.7,8,1,1,0,0,1,5,4,1,998.5,348081.4249064811,336807.374439319,98866.36681910715,0,2822.410966122517 -7373,9110,16521,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.346207719126987,8.426769515172351,0,0,0,-1082.688287423384,0,2,2,2019,12,0,40,37,1,0,0,13.5477026878343,13.5477026878343,0,0,0,0,0,0,0,0,0,0,34.65,58.34,-9,-9,6.666666666666667,1,1,0,0,7,10,5,0,100,328797.3290936424,444820.629344546,207594.9133481913,139373.117894191,1932.444301398748 -7373,9111,16522,-9,16521,-9,1,1,30,0,0,0,1,1,-9,0,5,8.306175324554966,8.261415021478326,0,0,0,-927.9331696491063,-9,2,-9,2019,8,1,48,0,1,1,1,9.971568458297467,9.971568458297467,0,0,0,3.03807966456386,0,0,0,0,2.597785665888503,0,51.73,58.82,-9,-9,10,1,1,0,0,1,10,4,0,770,69174.79633297364,96018.87616836741,0,0,1170.678984427445 -7374,9112,16523,16524,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.002099985943033,8.811581338604213,0,29,-7,26.67486088000413,0,2,2,2019,13,1,40,40,1,1,0,21.53588727280614,21.53588727280614,0,0,0,0,0,0,0,0,0,0,49.46,56.91,56.07,55.46,8.333333333333334,1,1,0,0,8,11,5,1,661.5,1145426.327107877,783068.736988037,375725.7973804508,137191.7691064467,4312.973007177621 -7374,9112,16524,16523,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.554001896284745,8.173953950098936,0,28,7,7.189549315559145,0,3,2,2019,11,0,47,37,1,0,0,9.562344035482248,9.562344035482248,0,0,0,0,2,0,0,0,0,0,56.07,55.46,49.46,56.91,10,1,1,0,0,8,11,5,1,661.5,1145426.327107877,783068.736988037,375725.7973804508,137191.7691064467,4312.973007177621 -7374,9113,16525,-9,16523,16524,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-954.6738784496675,-9,1,1,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.792646775041541,0,55.39,36.65,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,787,0,0,0,0,79.80740077825857 -7375,9114,16526,16527,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,6.807402206111663,6.557675668636735,39,-4,67.08224022268318,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,24.00123885692645,0,0,1,1,0,1.486506718604844,6.81339183775557,53.24,36.78,54.66,45.07,5,1,1,0,0,0,4,3,1,1793.5,702970.1695685911,331837.498854744,143018.1242144739,0,2251.72900172489 -7375,9114,16527,16526,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.197416045198879,7.060748454149937,39,4,5.785203169865013,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,1.735622038945617,7.163175815905713,54.66,45.07,53.24,36.78,3.333333333333333,1,1,0,0,0,4,3,1,1793.5,702970.1695685911,331837.498854744,143018.1242144739,0,2251.72900172489 -7376,9115,16528,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.670659725654279,6.421812041404646,0,0,-1125.649702380759,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.088008675342085,6.809629366183759,69.64,23.12,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,405,810812.4454856135,93761.27560917646,554614.5956516798,0,681.6890485687404 -7377,9116,16529,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.69778394224381,7.527746848077044,0,0,0,-1044.394953837971,0,3,-9,2019,12,0,27,27,1,0,0,9.148690817663699,9.148690817663699,0,0,0,0,0,1,1,0,0,0,46.91,51.8,-9,-9,6.666666666666667,1,1,0,0,10,10,3,0,430,-13098.40190850084,0,0,0,2394.41092528312 -7378,9117,16530,16531,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.966523486758336,8.204140582108653,0,28,-4,10.49291824656518,0,2,2,2019,13,4,33,30,1,4,0,13.43265326995978,13.43265326995978,0,0,0,0,0,1,1,0,0,0,35.97,61.83,48.63,51.79,5,1,1,0,0,11,11,4,1,1275.5,651407.9856269665,265253.184811202,275720.2820769248,107313.6362736914,3398.877061514625 -7378,9117,16531,16530,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.648256476234396,8.676015396170943,0,8,4,-63.96322325225434,0,-9,-9,2019,10,0,50,50,1,0,0,12.16865838055032,12.16865838055032,0,0,0,0,0,1,1,0,0,0,48.63,51.79,35.97,61.83,5,1,1,0,0,11,11,4,1,1275.5,651407.9856269665,265253.184811202,275720.2820769248,107313.6362736914,3398.877061514625 -7379,9118,16532,16533,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,4.397053154640851,5.653520807479138,5.313846087181338,13,-11,-55.05471566449854,0,-9,-9,2019,9,0,8,10,1,0,0,.9548817531171064,.9548817531171064,0,0,0,0,0,1,1,0,4.734893756452942,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,12,4,1,668.6666666666666,644564.7515914523,294211.255945894,209611.40739834,0,2354.419067385992 -7379,9118,16533,16532,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.441315058716382,8.574582351476669,0,2,11,113.3266092953424,0,-9,-9,2019,10,0,45,45,1,0,0,16.8541374697821,16.8541374697821,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,1,668.6666666666666,644564.7515914523,294211.255945894,209611.40739834,0,2354.419067385992 -7379,9118,16534,-9,16532,16533,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.0329150418961,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,668.6666666666666,644564.7515914523,294211.255945894,209611.40739834,0,2354.419067385992 -7380,9119,16535,16536,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,52,-6,233.1963581359543,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.94,47.09,54.33,41.02,10,1,1,0,0,3,6,2,0,249,455202.919908361,69511.53054246976,503951.2430629661,0,1728.523543200461 -7380,9119,16536,16535,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.572253661556987,6.291014209891141,52,6,18.95114471397089,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.348937738075917,54.33,41.02,55.94,47.09,8.333333333333334,1,1,0,0,0,6,2,0,249,455202.919908361,69511.53054246976,503951.2430629661,0,1728.523543200461 -7381,9120,16537,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.2173655326956,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,1.661063292019495,0,23.76628466901458,0,1,1,0,0,0,43.39,27.11,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1116,44471.5959669982,0,146798.1426140574,0,2041.68944821995 -7382,9121,16538,16539,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.311137416579243,8.112072546361791,32,-1,54.73768742876633,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.518082711810019,57.16,56.15,44.24,30.9,8.333333333333334,1,1,0,0,0,9,3,1,744,987988.667517802,499756.1319137353,349694.1234477181,0,2811.801009170589 -7382,9121,16539,16538,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,32,1,59.12025092059239,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,5.934794048049286,0,0,1,1,0,0,0,44.24,30.9,57.16,56.15,6.666666666666667,1,1,0,0,0,9,3,1,744,987988.667517802,499756.1319137353,349694.1234477181,0,2811.801009170589 -7383,9122,16540,16542,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,8.849472287787901,8.723338871188989,0,6,-3,-28.31112610949362,0,-9,-9,2019,13,1,30,30,1,1,0,24.03672135049381,24.03672135049381,0,0,0,0,2,1,1,0,0,0,55.93,49.95,36.79,56.27,6.666666666666667,1,1,0,0,8,5,5,1,677.5,1104378.166554181,-33623.68581182555,752744.9754755062,0,4723.726248060231 -7383,9122,16541,-9,16540,16542,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.9110787877986,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,5,1,677.5,1104378.166554181,-33623.68581182555,752744.9754755062,0,4723.726248060231 -7383,9122,16542,16540,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.931982354066175,8.900670828787682,0,6,3,50.4464803105075,0,-9,-9,2019,14,3,43,40,1,3,0,18.79074487908315,18.79074487908315,0,0,0,0,2,1,1,0,1.497120400327853,0,36.79,56.27,55.93,49.95,5,2,3,0,0,6,5,5,1,677.5,1104378.166554181,-33623.68581182555,752744.9754755062,0,4723.726248060231 -7383,9122,16543,-9,16540,16542,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1070.003285314771,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,5,5,1,677.5,1104378.166554181,-33623.68581182555,752744.9754755062,0,4723.726248060231 -7384,9123,16544,16545,-9,-9,1,1,24,0,0,0,2,2,-9,1,5,0,0,0,1,0,0,-9,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,51.09,53.66,0,1,1,1,0,0,5,1,0,985,53794.4605405285,0,0,0,2017.787107653161 -7384,9123,16545,16544,-9,-9,1,0,24,0,0,0,2,2,-9,1,5,0,0,0,1,0,0,0,3,-9,2019,9,2,0,16,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.09,53.66,41.07,60.93,1.666666666666667,1,1,1,0,2,5,1,0,985,53794.4605405285,0,0,0,2017.787107653161 -7385,9124,16546,16547,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.233067883291959,9.212229370127289,0,8,-1,20.84899955855629,0,3,3,2019,17,5,46,40,1,5,0,25.44805451533221,25.44805451533221,0,0,0,0,7,0,0,0,4.979237378356982,0,50,50,51.24,58.84,6.666666666666667,1,1,0,0,9,13,5,1,1097.5,2267446.981248361,1383064.700041573,325201.8269007055,41174.07232974446,6366.388456479795 -7385,9124,16547,16546,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.13412965793899,9.278349225188652,0,8,1,143.1976194802623,0,-9,-9,2019,12,2,48,48,1,2,0,28.50184939728504,28.50184939728504,0,0,0,0,7,0,0,0,4.710755232577741,0,51.24,58.84,50,50,8.333333333333334,1,1,0,0,10,13,5,1,1097.5,2267446.981248361,1383064.700041573,325201.8269007055,41174.07232974446,6366.388456479795 -7385,9125,16548,-9,16547,16546,1,0,19,0,0,0,2,2,1,0,4,5.233794776724714,4.973539275155065,0,0,0,-1087.639431503221,-9,1,1,2019,20,9,5,0,1,9,1,2.752859636365262,2.752859636365262,0,0,0,0,0,0,0,0,0,0,39.52,58.98,-9,-9,10,1,1,0,0,2,13,2,1,3496,96356.29377645336,0,0,0,-562.6052976159483 -7386,9126,16549,16551,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.954459698837911,7.863198298674868,0,23,0,0,0,2,2,2019,7,0,40,38,1,0,0,7.228233677500732,7.228233677500732,0,0,0,0,71.5,1,1,0,0,0,54.73,43.55,55.92,34.81,6.666666666666667,1,1,0,0,8,5,3,0,1111.666666666667,103622.0202284219,46253.3271127362,151094.4685117458,75384.19112260688,3346.880959651638 -7386,9126,16550,-9,16551,16549,1,1,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1096.93884531205,-9,3,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,1,1,-9,0,0,5,3,0,1111.666666666667,103622.0202284219,46253.3271127362,151094.4685117458,75384.19112260688,3346.880959651638 -7386,9126,16551,16549,-9,-9,1,0,44,0,2,0,3,3,-9,1,3,8.031397127108049,8.019129607375268,0,6,0,0,0,-9,-9,2019,9,0,37,38,1,0,0,8.802815509200913,8.802815509200913,0,0,0,0,71.5,1,1,0,0,0,55.92,34.81,54.73,43.55,5,1,1,0,0,9,5,3,0,1111.666666666667,103622.0202284219,46253.3271127362,151094.4685117458,75384.19112260688,3346.880959651638 -7386,9127,16552,-9,16551,16549,1,0,20,0,2,0,2,2,-9,0,5,7.431418931149466,7.462210673494877,0,0,0,-895.7063346330291,0,3,2,2019,9,0,42,35,1,0,1,5.393816921342502,5.393816921342502,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,1039,278555.1021179487,0,0,0,992.7099943515357 -7387,9128,16553,-9,-9,-9,1,0,59,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1046.118805663933,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,10.82,-9,-9,5,1,1,0,0,0,1,1,0,1197,39842.79917918275,0,0,0,1239.500143289636 -7388,9129,16554,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,6.702624570229819,7.221988283990235,6.291470785066512,0,0,-1074.027401152814,-9,3,3,2019,21,9,16,0,1,9,0,4.258650493017464,4.258650493017464,0,0,0,0,0,1,1,0,5.335543496966838,6.562424989667833,45.73,57.57,-9,-9,3.333333333333333,1,1,0,0,12,9,3,1,773,423415.2164160787,50401.71176039676,349498.5072347179,0,1328.812351704424 -7389,9130,16555,16556,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.200214718567455,8.079195360551381,0,3,-1,-10.28091313389398,0,2,2,2019,12,0,40,40,1,0,0,12.09120011351546,12.09120011351546,0,0,0,0,0,0,0,0,2.321606811239459,0,57.16,56.15,51.96,40.95,8.333333333333334,1,1,0,0,8,4,4,1,420.5,228188.3262306853,132210.2550480305,142859.570182702,35787.59115447549,2608.27021732228 -7389,9130,16556,16555,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.272943305355765,8.131216530653512,0,3,1,-17.55855928498941,0,-9,-9,2019,11,0,40,39,1,0,0,11.50739838389554,11.50739838389554,0,0,0,0,0,0,0,0,0,0,51.96,40.95,57.16,56.15,6.666666666666667,1,1,0,0,8,4,4,1,420.5,228188.3262306853,132210.2550480305,142859.570182702,35787.59115447549,2608.27021732228 -7389,9131,16557,-9,16556,16555,1,0,19,0,0,0,2,2,-9,0,4,8.096112062421996,7.989496408515334,0,0,0,-1045.470668689711,0,2,2,2019,6,0,37,0,1,0,1,10.42425782554013,10.42425782554013,0,0,0,0,0,0,0,0,2.38818520203515,0,43.79,42.19,-9,-9,8.333333333333334,1,1,0,0,3,4,4,1,383,27611.37132441081,-55252.99315001446,0,0,1276.369813286828 -7390,9132,16558,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.72549968455159,8.630388911404937,0,0,0,-985.5862585551315,0,2,2,2019,9,0,60,55,1,0,0,13.75445123570612,13.75445123570612,0,0,0,0,0,0,0,0,6.849890921763286,0,50.03,39.39,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,509,920685.4911636896,353719.2786665356,284639.8745526815,53804.93811552878,1951.421923018018 -7390,9133,16559,-9,16558,-9,1,0,26,0,0,0,2,2,-9,0,3,8.238256813821206,8.270420260766841,0,0,0,-1188.310943533857,0,1,-9,2019,12,2,37,45,1,2,1,10.73206712038331,10.73206712038331,0,0,0,0,0,0,0,0,.3262932240535265,0,38.86,59.06,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,234,149279.7622395596,0,0,0,1828.530159447057 -7390,9134,16560,-9,-9,-9,1,0,25,0,0,0,3,3,-9,0,4,7.870439211602292,7.710110307579153,0,0,0,-1007.9247047401,0,-9,-9,2019,11,0,45,45,1,2,0,6.287952124293155,6.287952124293155,0,0,0,0,0,0,0,0,.2609531225540259,0,42.08,53.5,-9,-9,5,1,1,0,0,1,9,3,1,257,-117317.8613062838,0,0,0,1035.832706130266 -7391,9135,16561,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,4.292835330463924,4.306999798387533,0,0,0,-1006.449341204993,0,3,3,2019,11,0,60,50,1,1,0,.1465122622909286,.1465122622909286,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,7,1,1,0,0,11,13,2,1,1280,-97333.36481484942,0,0,0,351.7162191662122 -7392,9136,16562,16563,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.233516996097904,8.677319937203302,0,10,-13,97.62743603552425,0,2,2,2019,11,0,22,37,1,2,0,24.84458199489611,24.84458199489611,0,0,0,0,0,1,1,0,1.832347425017822,0,48,57,46.5,58.26,7,1,1,0,0,1,4,5,1,866.6666666666666,373045.967736454,266671.1476080383,142217.2266314754,82476.7646160685,3380.239142221617 -7392,9136,16563,16562,-9,-9,1,1,43,1,1,0,1,1,-9,0,4,8.316406507565262,8.479806991829488,0,10,13,160.3039341487791,0,2,1,2019,11,3,40,41,1,3,0,13.0279155531673,13.0279155531673,0,0,0,0,0,1,1,0,0,0,46.5,58.26,48,57,10,1,1,0,0,6,4,5,1,866.6666666666666,373045.967736454,266671.1476080383,142217.2266314754,82476.7646160685,3380.239142221617 -7392,9136,16564,-9,16562,16563,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.1001221609017,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,866.6666666666666,373045.967736454,266671.1476080383,142217.2266314754,82476.7646160685,3380.239142221617 -7393,9137,16565,16566,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.766662088788015,7.630732346776137,0,8,6,-99.71281859406594,0,2,2,2019,6,0,38,37,1,0,0,6.305515235001464,6.305515235001464,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,57,8.333333333333334,1,1,0,0,9,7,5,1,333,187491.417175364,84357.23971172402,0,0,4034.676989650378 -7393,9137,16566,16565,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.890197624632972,8.909278512131543,0,8,-6,23.97460871886577,0,-9,-9,2019,10,0,40,40,1,1,0,25.82715211564453,25.82715211564453,0,0,0,0,0,0,0,0,3.756349638129144,0,51,57,57.16,56.15,7,1,1,0,0,1,7,5,1,333,187491.417175364,84357.23971172402,0,0,4034.676989650378 -7394,9138,16567,16568,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.336720729648664,6.439872737401617,58,1,94.5063151601577,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.208628242887892,6.34409412244233,57.06,57.76,56.1,49.93,8.333333333333334,1,1,0,0,0,7,2,0,543.5,1082734.971693624,181170.5890053416,1047755.780820715,21700.28158423663,1732.424155784614 -7394,9138,16568,16567,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,57,-1,52.06654715958933,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,57.06,57.76,1.666666666666667,1,1,0,0,0,7,2,0,543.5,1082734.971693624,181170.5890053416,1047755.780820715,21700.28158423663,1732.424155784614 -7395,9139,16569,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.520711969571313,5.919987732453743,0,0,-933.6628407854487,0,3,2,2019,25,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.816757377352239,17.81,49.93,-9,-9,6.666666666666667,1,1,0,1,0,10,2,0,3830,112163.4126915242,201862.2452283339,0,0,1284.808295305674 -7396,9140,16570,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.412929600221602,8.39170530160135,0,0,0,-891.556700385701,0,3,1,2019,9,0,50,42,1,0,0,10.7235590024294,10.7235590024294,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,3,4,0,0,5,5,4,1,793,148559.2556075397,39870.34500260533,153554.5782425682,115664.0908860882,1216.16690107601 -7397,9141,16571,16572,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.42362410169121,8.334681637667416,0,4,0,-132.2852091327832,0,-9,-9,2019,10,0,40,44,1,0,0,9.170844328494001,9.170844328494001,0,0,0,0,0,0,0,0,0,0,51.67,60.18,48,57,8.333333333333334,1,1,0,0,5,2,4,0,722.5,86585.24242850198,45946.10396129706,0,0,2380.266661117704 -7397,9141,16572,16571,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.536594117846214,7.734090200661348,0,4,0,28.33268940710795,-9,-9,-9,2019,11,0,40,0,1,2,0,6.406760137154299,6.406760137154299,0,0,0,0,0,0,0,0,0,0,48,57,51.67,60.18,7,1,1,0,0,1,2,4,0,722.5,86585.24242850198,45946.10396129706,0,0,2380.266661117704 -7398,9142,16573,16574,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.480177540148484,7.406605572902577,8,1,-61.9983738715368,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,6.628319075815379,7.287707931372129,46.1,59.99,53.98,50.87,10,1,1,0,0,0,8,4,1,968,1938356.692345061,1049458.016264938,509007.0475278518,0,4100.344879244325 -7398,9142,16574,16573,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.174903015299909,8.165224809559755,8,-1,-7.250110249930321,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.900218468819569,7.861812317666217,53.98,50.87,46.1,59.99,8.333333333333334,1,1,0,0,0,8,4,1,968,1938356.692345061,1049458.016264938,509007.0475278518,0,4100.344879244325 -7399,9143,16575,16576,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,41,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.74233527867317,0,54.61,49.13,57.7,55.88,10,2,3,0,0,5,11,1,1,2887,247571.0896004244,0,287292.1100445559,0,851.6197841541333 -7399,9143,16576,16575,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,42,-2,0,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.7,55.88,54.61,49.13,10,2,3,0,0,5,11,1,1,2887,247571.0896004244,0,287292.1100445559,0,851.6197841541333 -7399,9144,16577,-9,16576,16575,1,0,32,0,0,0,1,1,-9,0,5,9.698876752764763,9.843305228739487,0,0,0,-1057.649242233994,0,2,2,2019,3,1,10,9,1,1,0,259.5485403087702,259.5485403087702,0,0,0,0,0,0,0,0,7.21825379708925,0,52.38,55.95,-9,-9,8.333333333333334,2,3,0,1,8,11,5,1,384,273111.0509201183,99398.58500939596,165332.7651235171,107707.5250416667,9678.587187376228 -7400,9145,16578,16579,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,9.793060544647929,9.869125389017523,0,6,-11,13.88541461465171,0,2,2,2019,10,0,48,47,1,0,0,34.28629135558251,34.28629135558251,0,0,0,0,0,0,0,0,4.138391089229543,0,48.18,61.8,54.94,53.18,8.333333333333334,1,1,0,0,9,7,5,1,1040.5,354882.7961941232,79433.83322615564,381645.8780529137,0,6676.970817314414 -7400,9145,16579,16578,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.884522146881463,7.350411320356103,6,11,-163.7428764620366,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.478819693053315,6.923235917490942,54.94,53.18,48.18,61.8,8.333333333333334,1,1,0,0,8,7,5,1,1040.5,354882.7961941232,79433.83322615564,381645.8780529137,0,6676.970817314414 -7401,9146,16580,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.391167026378455,7.441063540013454,0,0,-1064.321596365132,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.652042219332091,7.353650356263019,53.61,30.79,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,2602,455394.8733670754,466494.0164727534,0,0,656.0418992809521 -7402,9147,16581,16582,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.237441665874533,6.251063354872483,8,7,-13.01255034763454,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.73723320362039,6.563621028328791,50.03,52.62,58.61,40.49,10,1,1,0,0,0,6,2,1,571,674881.2435536557,337745.5332163691,240842.7930506673,0,1995.98746665761 -7402,9147,16582,16581,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.894593787303967,6.716333747231134,39,-7,-11.37001557311298,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.112897358309238,58.61,40.49,50.03,52.62,8.333333333333334,1,1,0,0,9,6,2,1,571,674881.2435536557,337745.5332163691,240842.7930506673,0,1995.98746665761 -7403,9148,16583,16584,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,5.504363932158976,5.282539017345931,22,13,3.545799171330017,0,1,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.049853518449875,5.613427631530684,39.56,54.83,30.17,55.16,6.666666666666667,1,1,0,0,10,7,5,1,716.5,595288.7665197975,-27409.25237556633,793646.5856195535,109872.7683030249,4587.11335160318 -7403,9148,16584,16583,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.266724125390081,9.166401841301317,0,11,-13,36.53913860002153,0,1,2,2019,26,10,42,41,1,10,0,34.81824372395924,34.81824372395924,0,0,0,0,0,1,1,0,.3175657869036014,0,30.17,55.16,39.56,54.83,3.333333333333333,1,1,0,0,13,7,5,1,716.5,595288.7665197975,-27409.25237556633,793646.5856195535,109872.7683030249,4587.11335160318 -7404,9149,16585,-9,16586,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.883563421479,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,0,534.5,311476.9523331587,339820.2147334428,0,0,2499.879358590203 -7404,9149,16586,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,8.649612218270592,8.822688086721822,0,0,0,-1068.383389396138,0,2,2,2019,9,0,41,32,1,0,0,14.68803960465829,14.68803960465829,0,0,0,0,0,1,1,0,0,0,43.59,38.38,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,534.5,311476.9523331587,339820.2147334428,0,0,2499.879358590203 -7405,9150,16587,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,8.062951537227748,7.965653846569059,0,0,-1117.150852452679,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.557540792597985,8.245662339234114,54.1,59.11,-9,-9,10,1,1,0,0,0,7,4,1,1620,861552.2702119007,298427.871658496,620600.9391569933,0,2264.975428539549 -7406,9151,16588,16589,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.347796793277539,6.1809366957657,43,-5,122.2844268442572,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.74896275365665,6.417981802094896,37.62,44.93,54.45,56.22,6.666666666666667,2,3,0,0,0,8,2,1,535,1703435.734128777,595836.2652428423,878311.6904417248,0,2610.417915279269 -7406,9151,16589,16588,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.575045934828366,6.92872175180522,43,5,15.81907320872536,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.282884372882327,6.681935491852149,54.45,56.22,37.62,44.93,10,2,3,0,0,6,8,2,1,535,1703435.734128777,595836.2652428423,878311.6904417248,0,2610.417915279269 -7407,9152,16590,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.032339256009,0,3,3,2019,22,7,0,0,4,7,0,0,0,1,0,126.1214273195636,0,0,1,1,0,0,0,24.23,36.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,320,-77736.15073252252,0,0,0,1539.840193221251 -7408,9153,16591,16592,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.671664739164024,8.640109181533045,6.131065335382461,33,-1,-98.00218519906734,0,2,3,2019,10,2,48,48,1,2,0,13.77082075124678,13.77082075124678,0,0,0,0,0,0,0,0,0,6.519864137868836,52.25,42.72,51,49,8.333333333333334,1,1,0,0,8,5,4,1,509,192198.5575174339,94907.15322867993,183015.5468424112,5714.607062165501,2663.387688590064 -7408,9153,16592,16591,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,6.116580550720992,5.862223240721473,0,33,1,-27.85120117999569,0,2,2,2019,11,1,36,40,1,1,0,1.479970136956536,1.479970136956536,0,0,0,0,0,0,0,0,0,0,51,49,52.25,42.72,1.666666666666667,1,1,0,0,9,5,4,1,509,192198.5575174339,94907.15322867993,183015.5468424112,5714.607062165501,2663.387688590064 -7408,9154,16593,-9,16591,16592,1,0,23,0,0,0,2,2,-9,0,3,7.912837810799686,7.821161336807541,0,0,0,-968.1875295126241,0,2,2,2019,16,4,38,38,1,4,1,9.275424856503856,9.275424856503856,0,0,0,0,0,0,0,0,0,0,41.19,57.08,-9,-9,3.333333333333333,1,1,0,0,5,5,4,1,318,-91132.41472553612,0,0,0,1041.999777317075 -7408,9155,16594,-9,16591,16592,1,1,20,0,0,0,2,2,-9,0,5,8.016653704766728,7.982912654644695,0,0,0,-1073.899178630618,0,2,2,2019,7,1,42,36,1,1,1,7.214516203875527,7.214516203875527,0,0,0,0,0,0,0,0,0,0,52.66,56.94,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,342,8950.905826302205,0,0,0,870.9840720224367 -7409,9156,16595,16598,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,0,0,0,10,-7,138.5222577535138,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,62.55,39.54,57.17,6.666666666666667,2,3,0,0,0,8,3,1,1142.6,9492.740748210612,0,0,0,2963.448778067738 -7409,9156,16596,-9,16595,16598,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.583041827007,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,8,3,1,1142.6,9492.740748210612,0,0,0,2963.448778067738 -7409,9156,16597,-9,16595,16598,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.144298822643,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,1142.6,9492.740748210612,0,0,0,2963.448778067738 -7409,9156,16598,16595,-9,-9,1,1,44,1,4,0,1,1,-9,0,4,8.670452778227617,8.258183960437826,0,10,7,-79.72017398272054,0,2,2,2019,8,0,40,40,1,0,0,15.69320062900602,15.69320062900602,0,0,0,0,0,1,1,0,0,0,39.54,57.17,36.79,62.55,6.666666666666667,2,3,0,0,12,8,3,1,1142.6,9492.740748210612,0,0,0,2963.448778067738 -7409,9156,16599,-9,16595,16598,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.129522407042,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,1142.6,9492.740748210612,0,0,0,2963.448778067738 -7410,9157,16600,16601,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.809569104925957,9.609552715908276,0,28,3,18.42716502073078,0,2,1,2019,9,0,50,50,1,1,0,37.52707565622661,37.52707565622661,0,0,0,0,0,0,0,0,4.169599577206258,0,53,55,41.47,44.38,8,2,3,0,0,1,9,5,1,929.5,206874.1769186544,-12745.54481894917,436907.3236471828,242081.3459450738,6795.217716150984 -7410,9157,16601,16600,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,0,0,0,7,-3,74.47511941972792,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,.4505712497654013,0,0,0,0,6.681458754503142,0,41.47,44.38,53,55,10,2,3,0,0,0,9,5,1,929.5,206874.1769186544,-12745.54481894917,436907.3236471828,242081.3459450738,6795.217716150984 -7411,9158,16602,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,9.388895671276842,9.495867881506713,0,0,0,-1055.04589121657,0,2,2,2019,16,4,27,26,1,4,0,46.83885862206845,46.83885862206845,0,0,0,0,0,1,1,0,3.596318799735242,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,80,207281.5777700356,39306.92931880856,167009.9187326983,40902.44303000719,3062.545733481075 -7412,9159,16603,16607,-9,-9,1,1,46,0,3,0,2,2,-9,0,4,7.347302496890785,7.627960914437585,0,7,-2,56.22485958849281,0,2,2,2019,1,0,30,30,1,0,0,5.566334971776974,5.566334971776974,0,0,0,0,0,1,1,0,.9363593786484925,0,57.74,49,34.8,50.31,1.666666666666667,1,1,0,0,8,7,5,1,1829.4,145463.3893632067,67405.68659570382,378207.824467721,279238.1260750501,5208.562195057615 -7412,9159,16604,-9,16607,16603,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-990.8388385170209,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,5,1,1829.4,145463.3893632067,67405.68659570382,378207.824467721,279238.1260750501,5208.562195057615 -7412,9159,16605,-9,16607,16603,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.5505727227248,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,5,1,1829.4,145463.3893632067,67405.68659570382,378207.824467721,279238.1260750501,5208.562195057615 -7412,9159,16606,-9,16607,16603,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1025.311395507633,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,4,2,0,0,0,7,5,1,1829.4,145463.3893632067,67405.68659570382,378207.824467721,279238.1260750501,5208.562195057615 -7412,9159,16607,16603,-9,-9,1,0,48,0,3,0,1,1,-9,0,3,9.383631012228387,9.489266657509351,0,7,2,-5.098581308771839,0,1,1,2019,12,1,30,30,1,1,0,43.56833530539877,43.56833530539877,0,0,0,0,0,1,1,0,0,0,34.8,50.31,57.74,49,6.666666666666667,4,2,0,0,8,7,5,1,1829.4,145463.3893632067,67405.68659570382,378207.824467721,279238.1260750501,5208.562195057615 -7413,9160,16608,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,7.646994226185164,7.437448616602873,0,0,0,-918.0304265007464,0,1,1,2019,9,1,20,20,1,1,0,11.46723168481653,11.46723168481653,0,0,0,0,0,0,0,0,5.464596192084698,0,55.51,43.54,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,485,355738.3329556484,0,228689.5367386722,0,1041.749566232741 -7414,9161,16609,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.014885417548482,8.097639931248326,0,0,0,-905.3557219745716,0,2,3,2019,10,0,44,24,1,0,0,7.225876085881942,7.225876085881942,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,700,21672.60478375527,-36975.23882854327,165010.3262408957,127791.4820510133,1152.681685592207 -7415,9162,16610,16611,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.823668061766051,8.041305039452924,0,2,-3,-112.6051605307317,0,3,3,2019,8,0,41,43,1,0,0,6.746725728496435,6.746725728496435,0,0,0,0,0,0,0,0,0,0,57.33,53.46,48.45,57.49,6.666666666666667,1,1,0,0,9,1,4,1,337.5,75038.26827977767,-15143.35825603925,111588.2442698647,27758.0427421267,2296.150922050862 -7415,9162,16611,16610,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.848326986717941,8.059555184086253,0,2,3,-67.80495235330005,0,3,3,2019,11,0,39,38,1,0,0,7.687136202816755,7.687136202816755,0,0,0,0,0,0,0,0,0,0,48.45,57.49,57.33,53.46,6.666666666666667,1,1,0,0,9,1,4,1,337.5,75038.26827977767,-15143.35825603925,111588.2442698647,27758.0427421267,2296.150922050862 -7416,9163,16612,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.239477363608065,8.237775404185552,0,0,0,-1088.298219356997,0,2,2,2019,15,3,40,37,1,3,0,11.72657527694538,11.72657527694538,0,0,0,0,0,0,0,0,1.987147842286614,0,51.39,51.8,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1143,63799.52920096093,-36963.6196475325,0,0,1195.092145792637 -7417,9164,16613,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,7.311925046241896,7.640550804976152,0,0,-866.7012532419783,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.732081934489265,7.590494402537956,48.67,26.82,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1017,337546.1396951093,153479.1450560612,104604.912273588,0,2137.794197656608 -7418,9165,16614,16615,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.436262792833864,8.168518968552837,0,25,2,25.42656260776374,0,3,2,2019,6,0,40,47,1,0,0,15.87830409879036,15.87830409879036,0,0,0,0,2,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,771.5,1731003.776100679,921444.3246358603,449260.5546118348,0,5513.883179555953 -7418,9165,16615,16614,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.332753407832044,9.560704922459101,0,24,-2,-59.23844075687445,0,2,2,2019,11,0,50,50,1,0,0,32.51261031996872,32.51261031996872,0,0,0,0,0,0,0,0,6.635839311750174,0,54.2,57.49,54.2,57.49,3.333333333333333,1,1,0,0,10,2,5,1,771.5,1731003.776100679,921444.3246358603,449260.5546118348,0,5513.883179555953 -7419,9166,16616,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.596815703980235,6.810333722598905,0,0,-916.9634250820109,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,6.775690653690464,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,657,482814.7551380452,117230.1572346318,220091.4872072575,0,1139.332651987474 -7420,9167,16617,16620,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.310557068332299,8.861846095176627,0,15,1,125.5547685337985,0,2,2,2019,9,0,40,36,1,0,0,21.24125471589613,21.24125471589613,0,0,0,0,0,1,1,0,3.853649499993157,0,58.32,50.22,49.23,55.95,6.666666666666667,1,1,0,0,12,10,4,1,383.25,358959.564724271,55676.47404373743,297165.8938816749,52621.45583276106,2633.733473657616 -7420,9167,16618,-9,16620,16617,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.2435389557188,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,383.25,358959.564724271,55676.47404373743,297165.8938816749,52621.45583276106,2633.733473657616 -7420,9167,16619,-9,16620,16617,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.22215314283,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,383.25,358959.564724271,55676.47404373743,297165.8938816749,52621.45583276106,2633.733473657616 -7420,9167,16620,16617,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,14,-1,-50.81010199351847,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.062409562195329,0,49.23,55.95,58.32,50.22,8.333333333333334,1,1,0,0,5,10,4,1,383.25,358959.564724271,55676.47404373743,297165.8938816749,52621.45583276106,2633.733473657616 -7421,9168,16621,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.698741527313799,7.880780905717115,0,0,0,-1004.077572417069,0,3,3,2019,7,0,35,50,1,0,0,9.358232564901568,9.358232564901568,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,3,13,4,0,578,371764.4855777722,50322.02671752703,199814.3453085794,0,1591.391548148114 -7422,9169,16622,16623,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.171534707171144,6.555402345072003,6,1,26.78233624554652,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.601272601692445,6.764542974310868,42.52,45.55,36.27,44.19,8.333333333333334,1,1,0,0,3,13,2,1,888.5,329324.1075431341,101870.4317847403,184972.8109875732,0,1759.381045809671 -7422,9169,16623,16622,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,4.176462759585052,4.276673336353999,6,-1,-42.5477734838023,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,13.08727878509788,0,0,1,1,0,0,4.391785898573547,36.27,44.19,42.52,45.55,6.666666666666667,1,1,0,0,5,13,2,1,888.5,329324.1075431341,101870.4317847403,184972.8109875732,0,1759.381045809671 -7423,9170,16624,16625,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,8.639060073974425,8.588324912031428,0,12,0,12.5852791137187,0,2,2,2019,11,0,6,6,1,0,0,107.6535585547144,107.6535585547144,0,0,0,0,7,1,1,0,3.007783443114875,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,488.75,368129.0453319057,287559.9205355293,356956.384775518,199710.1700036326,2318.477182015401 -7423,9170,16625,16624,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.478974973814767,8.362858445547973,0,12,0,14.86254188179285,0,1,1,2019,7,0,37,37,1,0,0,14.03421294163087,14.03421294163087,0,0,0,0,7,1,1,0,2.234486341974857,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,12,9,5,1,488.75,368129.0453319057,287559.9205355293,356956.384775518,199710.1700036326,2318.477182015401 -7423,9170,16626,-9,16624,16625,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.0052000551465,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,488.75,368129.0453319057,287559.9205355293,356956.384775518,199710.1700036326,2318.477182015401 -7423,9170,16627,-9,16624,16625,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.6252101968863,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,488.75,368129.0453319057,287559.9205355293,356956.384775518,199710.1700036326,2318.477182015401 -7424,9171,16628,16629,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,7.10206811045293,6.986542951997146,53,7,-27.03560387386691,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.245477227152983,6.918638148780997,63.39,42.39,57.16,56.15,10,1,1,0,0,0,10,3,1,224.5,739932.0898823452,207182.5994593807,383918.0535516841,0,2676.096074772257 -7424,9171,16629,16628,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.7794356889409,6.840386301319115,10,-7,-11.98873691753189,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.660202125233345,6.139584423471759,57.16,56.15,63.39,42.39,8.333333333333334,1,1,0,0,0,10,3,1,224.5,739932.0898823452,207182.5994593807,383918.0535516841,0,2676.096074772257 -7425,9172,16630,16633,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,8.147840782767087,8.150080344456923,0,17,12,-25.6611038036054,0,1,1,2019,10,0,37,37,1,0,0,8.788369563000332,8.788369563000332,0,0,0,0,0,1,1,0,0,0,55.36,51.57,52.06,23.99,8.333333333333334,1,1,0,0,7,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7425,9172,16631,-9,16633,16630,1,0,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-1072.375206211819,-9,2,1,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.99,54.49,-9,-9,3.333333333333333,1,1,0,1,0,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7425,9172,16632,-9,16633,16630,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-938.6061165043491,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7425,9172,16633,16630,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,7.739568318003402,7.676452262448583,0,18,-12,-20.44105179705444,0,2,2,2019,18,6,43,25,1,6,0,5.40825638884763,5.40825638884763,0,0,0,0,0,1,1,0,0,0,52.06,23.99,55.36,51.57,6.666666666666667,1,1,0,0,2,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7425,9172,16634,-9,16633,16630,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.506646067739,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7425,9172,16635,-9,16633,16630,1,0,17,0,3,1,2,0,0,0,1,0,0,0,0,0,-913.6829404891223,-9,2,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.4,33.59,-9,-9,5,1,1,0,0,1,1,3,0,544.5,117748.9258115198,10283.32547832194,325693.7644911009,250057.981425207,2841.278921402667 -7426,9173,16636,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,8.377752862370787,8.370202607279971,0,0,0,-904.0853827774985,0,-9,-9,2019,5,0,35,37,1,0,0,13.18538612041571,13.18538612041571,0,0,0,0,0,0,0,0,0,0,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,236,252871.7337683325,229343.0557720361,0,0,1735.351378175415 -7426,9174,16637,-9,16636,-9,1,1,23,0,0,0,2,2,-9,0,4,8.208704079430856,8.19392603932492,0,0,0,-1057.264029538298,0,3,2,2019,6,0,36,45,1,0,1,9.507511347486828,9.507511347486828,0,0,0,0,0,0,0,0,0,0,49.08,44.75,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,1437,20548.92639336497,-54980.86526033607,0,0,1538.594946023242 -7426,9175,16638,16639,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.241017351438876,8.053150310584103,0,2,5,125.9401168476559,0,-9,-9,2019,8,0,42,42,1,0,0,8.350000736435241,8.350000736435241,0,0,0,.9801689180314188,0,0,0,0,0,0,57.06,57.76,55.96,49.93,6.666666666666667,1,1,0,0,9,9,4,0,662,-97974.78182089643,-10211.57725955369,0,0,2244.947667943611 -7426,9175,16639,16638,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.238409212688419,6.975392509950892,0,2,-5,-46.51599603143013,0,-9,-9,2019,8,0,21,24,1,0,0,6.291946591909833,6.291946591909833,0,0,0,0,0,0,0,0,0,0,55.96,49.93,57.06,57.76,8.333333333333334,1,1,0,0,3,9,4,0,662,-97974.78182089643,-10211.57725955369,0,0,2244.947667943611 -7427,9176,16640,16641,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.652034410770833,8.571094105968768,0,20,-4,24.04671674429792,-9,3,3,2019,10,0,30,0,1,0,0,15.75607978902129,15.75607978902129,0,0,0,0,0,1,0,1,0,0,43.92,34.27,61.12,51.57,5,1,1,0,0,11,11,5,1,579,860058.0845624624,443183.9029709618,409908.3686319435,30481.5939354657,4072.204884419185 -7427,9176,16641,16640,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.866164129539651,9.197675659246711,0,1,4,159.7218965327294,-9,-9,-9,2019,5,1,38,0,1,1,0,23.77510485583353,23.77510485583353,0,0,0,0,0,1,0,1,0,0,61.12,51.57,43.92,34.27,10,1,1,0,0,11,11,5,1,579,860058.0845624624,443183.9029709618,409908.3686319435,30481.5939354657,4072.204884419185 -7427,9177,16642,-9,16640,16641,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-935.4768964509284,-9,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,120,1,0,1,0,0,48.27,47.75,-9,-9,8.333333333333334,1,1,0,1,0,11,1,1,134,82477.54743665252,0,0,0,871.4629061956496 -7427,9178,16643,-9,16640,16641,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-994.1213758542004,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,371,-14225.32434793713,0,0,0,0 -7427,9179,16644,-9,16640,16641,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1097.733459817266,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,1121,43926.40777521949,0,0,0,0 -7428,9180,16645,16646,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,1,-2,-123.4815439736813,-9,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,7.60934937043167,0,58.22,40.76,54.96,53.17,8.333333333333334,1,1,0,0,0,4,2,1,397.5,162410.2493895203,5462.745890311548,98072.09895076533,0,1543.839939634646 -7428,9180,16646,16645,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.593232820788384,5.666926321565182,52,2,-37.05528807061268,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.914437120980281,5.707161629069996,54.96,53.17,58.22,40.76,8.333333333333334,1,1,0,0,0,4,2,1,397.5,162410.2493895203,5462.745890311548,98072.09895076533,0,1543.839939634646 -7429,9181,16647,16649,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,6.864913457577163,6.68300194630296,0,6,-2,1.045672902329321,0,2,2,2019,12,0,14,17,1,0,0,6.669653977573391,6.669653977573391,0,0,0,0,0,0,0,0,0,0,42.76,57.53,54.79,55.86,8.333333333333334,1,1,0,0,1,5,5,1,726.3333333333334,252346.4392390348,114682.7347314757,417626.3383062159,297991.0970831013,8220.959133757358 -7429,9181,16648,-9,16647,16649,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.648061260817,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,726.3333333333334,252346.4392390348,114682.7347314757,417626.3383062159,297991.0970831013,8220.959133757358 -7429,9181,16649,16647,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.500722518982608,9.735047004786809,0,6,2,5.938748694966121,0,2,2,2019,11,0,57,62,1,0,0,33.5311368875804,33.5311368875804,0,0,0,0,0,0,0,0,3.059925185112296,0,54.79,55.86,42.76,57.53,3.333333333333333,1,1,0,0,7,5,5,1,726.3333333333334,252346.4392390348,114682.7347314757,417626.3383062159,297991.0970831013,8220.959133757358 -7430,9182,16650,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.801076863105262,6.057612068764353,0,0,-952.702039479043,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.567543056226416,57.6,33.09,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,1132,276195.8844244981,-12427.59688751068,317987.6057389677,0,639.4668809037205 -7431,9183,16651,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,0,0,-945.1377195264878,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,319,917978.3771264425,59990.04149790404,572647.2116403141,0,1027.920096749626 -7432,9184,16652,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,7.067321469979176,6.814923769239783,0,0,-1078.064281069055,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.972437732422958,59.43,58.05,-9,-9,10,1,1,0,0,0,2,2,1,2172,423528.8381270817,132718.083184348,205399.3507757493,0,893.1187136178399 -7433,9185,16653,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.829164840459923,8.698014535379741,0,0,0,-994.4199376440608,0,2,2,2019,8,0,41,43,1,0,0,19.55945635002434,19.55945635002434,0,0,0,0,0,0,0,0,3.693788933340712,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,386,1629837.078890546,1257280.871313581,84589.91591145399,0,2396.154688302148 -7434,9186,16654,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.917694760484191,5.909266329068855,0,0,-1040.988969064896,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.056917638984628,5.777465490166407,35.03,51.4,-9,-9,10,1,1,0,0,0,1,2,1,469,185944.4703521875,81021.55469843495,175058.1652945243,0,971.0568951837744 -7434,9187,16655,-9,-9,-9,1,1,23,0,0,0,2,2,1,1,4,0,4.995908620423734,4.720788048371279,0,0,-958.282088621125,-9,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.857276114502609,0,53.09,37.59,-9,-9,8.333333333333334,1,1,1,0,0,1,2,1,2217,64038.94883895321,0,0,0,910.1193284043241 -7435,9188,16656,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.616933289950564,6.882530287984991,0,0,-829.7881616435104,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.340227833297616,59.75,42.78,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,39,220002.7921415934,89155.69319338645,72621.20091260759,0,1016.650488479731 -7436,9189,16657,16659,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.962171302214396,7.1839153531414,0,6,-5,109.2732409541447,0,3,3,2019,6,0,20,20,1,0,0,7.640268566804107,7.640268566804107,0,0,0,0,0,1,1,0,1.977008457999553,0,57.06,57.76,53,54,8.333333333333334,1,1,0,0,4,2,4,1,588,724003.4556316825,559755.2680789927,274758.9829309403,28215.50634707505,4439.821978136555 -7436,9189,16658,-9,16657,16659,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.6115759527473,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,588,724003.4556316825,559755.2680789927,274758.9829309403,28215.50634707505,4439.821978136555 -7436,9189,16659,16657,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,7.953418414155219,8.550399808679501,8.649990575529589,6,5,-1.284552780248041,0,3,2,2019,9,0,40,40,1,1,0,8.749547668417227,8.749547668417227,0,0,0,0,0,1,1,0,3.56630274885577,8.550797352708193,53,54,57.06,57.76,8,1,1,0,0,1,2,4,1,588,724003.4556316825,559755.2680789927,274758.9829309403,28215.50634707505,4439.821978136555 -7437,9190,16660,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.004740660522282,4.832448597929441,0,0,-964.4549910908299,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.460862709005305,4.831024493127968,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,222,72692.22898506296,111527.5591835531,0,0,868.1486583272588 -7438,9191,16661,16662,-9,-9,1,0,46,0,0,0,2,2,-9,1,3,0,0,0,8,0,0,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,36.7,47.59,55.42,21.4,3.333333333333333,1,1,0,0,0,10,1,0,4118,915561.5301000347,231342.0992007015,358054.7948614699,0,1802.981617444708 -7438,9191,16662,16661,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,8,9,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.42,21.4,36.7,47.59,6.666666666666667,1,1,0,0,2,10,1,0,4118,915561.5301000347,231342.0992007015,358054.7948614699,0,1802.981617444708 -7439,9192,16663,16664,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.344549766716874,7.296630643435295,10,5,-.8399610557810728,-9,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,.805996663886737,7.001380816083441,51.28,24.1,60.54,42.81,5,1,1,0,0,6,9,2,0,464,771389.859709959,267804.3359078786,182026.2627200399,0,2088.422110493096 -7439,9192,16664,16663,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,10,-5,-115.3482518275869,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.500216942237768,0,60.54,42.81,51.28,24.1,8.333333333333334,1,1,0,0,0,9,2,0,464,771389.859709959,267804.3359078786,182026.2627200399,0,2088.422110493096 -7440,9193,16665,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,5,0,6.57357903295174,6.64190579621595,0,0,-988.3046128385216,1,2,2,2019,9,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,7.091828821715948,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,2305,16635.61712973002,0,0,0,201.3979800897164 -7441,9194,16666,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.587430715147466,7.250149544337646,0,0,0,-872.2770568949554,0,2,2,2019,22,8,33,30,1,8,0,4.922453964755823,4.922453964755823,0,0,0,0,0,1,1,0,3.421166948157655,0,26.89,54.74,-9,-9,1.666666666666667,4,2,0,1,5,12,3,0,461,0,0,0,0,887.0082517465517 -7442,9195,16667,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.108776838997889,7.345382012331178,0,0,-1007.25696463176,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.855433203353906,61.45,29.78,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,233,383675.6992627851,223588.5097566452,311708.4703283802,108345.5940521957,695.1887889087376 -7443,9196,16668,16669,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.729176511573778,8.9343100082514,0,6,-8,-84.02999056112239,0,2,3,2019,9,0,60,52,1,1,0,11.40346080841583,11.40346080841583,0,0,0,0,0,1,1,0,6.596689835864725,0,52,55,48,48,8,1,1,0,0,7,13,4,1,385,352442.1301917735,247762.2271620436,165640.3026336064,169060.3697097847,4225.717920771342 -7443,9196,16669,16668,-9,-9,1,0,55,0,1,0,3,3,-9,0,3,7.574858289503121,8.034091955995827,0,6,8,-132.0496780580601,0,3,2,2019,11,0,40,40,1,2,0,6.736566204247615,6.736566204247615,0,0,0,0,0,1,1,0,0,0,48,48,52,55,7,1,1,0,0,7,13,4,1,385,352442.1301917735,247762.2271620436,165640.3026336064,169060.3697097847,4225.717920771342 -7443,9197,16670,-9,16669,16668,1,0,19,0,1,0,2,2,1,0,3,7.503838609567105,7.269877773101261,0,0,0,-1009.970128224511,-9,3,2,2019,7,0,22,0,1,0,1,9.594676023203485,9.594676023203485,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1679,252388.9832333072,-32355.47117807975,0,0,940.3503742396389 -7444,9198,16671,16672,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.640512605585322,7.772526340790675,46,1,-162.5351931137302,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.621212690832538,7.988746605565362,62.4,48.33,58.05,54.52,8.333333333333334,1,1,0,0,3,2,3,1,672,1239234.885435987,718008.1107350036,251663.612392854,0,3201.098867177644 -7444,9198,16672,16671,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.896545707877364,6.950689822051299,46,-1,-24.87425658313493,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.878482683741146,58.05,54.52,62.4,48.33,10,1,1,0,0,4,2,3,1,672,1239234.885435987,718008.1107350036,251663.612392854,0,3201.098867177644 -7445,9199,16673,-9,16676,16677,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.4827977165913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,3,1,685.4,42764.89589782136,57637.54286996535,0,0,3011.793209759946 -7445,9199,16674,-9,16676,16677,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-957.6783464342611,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,685.4,42764.89589782136,57637.54286996535,0,0,3011.793209759946 -7445,9199,16675,-9,16676,16677,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-990.2533851109847,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,685.4,42764.89589782136,57637.54286996535,0,0,3011.793209759946 -7445,9199,16676,16677,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.712709917567977,7.567493966591563,0,20,-4,100.2817851302296,0,2,3,2019,18,5,33,31,1,5,0,7.835028897239805,7.835028897239805,0,0,0,0,0,1,1,0,0,0,48.28,53.42,56.86,50.75,6.666666666666667,1,1,0,1,9,6,3,1,685.4,42764.89589782136,57637.54286996535,0,0,3011.793209759946 -7445,9199,16677,16676,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.214247680099223,8.425180083752057,0,20,4,-23.58739384323842,0,2,2,2019,7,0,43,45,1,0,0,10.86198939950448,10.86198939950448,0,0,0,0,0,1,1,0,0,0,56.86,50.75,48.28,53.42,8.333333333333334,1,1,0,0,12,6,3,1,685.4,42764.89589782136,57637.54286996535,0,0,3011.793209759946 -7446,9200,16678,16679,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,6,8,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,16.78,35.79,55.96,31.17,3.333333333333333,1,1,0,0,5,5,1,0,1153,-82981.42930866181,0,0,0,1386.962589324246 -7446,9200,16679,16678,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-8,0,0,-9,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,31.17,16.78,35.79,6.666666666666667,1,1,0,0,1,5,1,0,1153,-82981.42930866181,0,0,0,1386.962589324246 -7447,9201,16680,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.510425786008717,7.843100352073943,0,0,-1126.399475793678,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.07528346180614,7.532135383086997,45.34,40.41,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,572,782651.9638840319,382176.9909666535,245603.153011059,0,2077.810494336674 -7448,9202,16681,16682,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,9.657187990850025,9.604293148059146,0,7,6,49.60599805543361,0,-9,-9,2019,10,1,40,40,1,1,0,44.26979135822602,44.26979135822602,0,0,0,0,0,0,0,0,6.748930163448255,0,54.1,59.11,43.48,60.97,8.333333333333334,1,1,0,0,7,9,5,1,404,1262307.808468619,0,942957.0574238347,0,11507.691620188 -7448,9202,16682,16681,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.997162557868814,8.955423658598644,0,7,-6,-153.8744596166509,0,2,3,2019,11,0,48,50,1,0,0,20.26363709053715,20.26363709053715,0,0,0,0,0,0,0,0,1.972564042354867,0,43.48,60.97,54.1,59.11,8.333333333333334,1,1,0,0,8,9,5,1,404,1262307.808468619,0,942957.0574238347,0,11507.691620188 -7449,9203,16683,16684,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.60652904044843,7.503395160864716,0,33,-1,85.91215788508964,0,2,2,2019,10,1,19,18,1,1,0,11.7341976225834,11.7341976225834,0,0,0,0,0,0,0,0,0,0,68.2,37.54,62.42,45.64,8.333333333333334,1,1,0,0,12,4,5,1,212.5,1545213.148403678,953482.0466864891,400986.6285094598,0,3436.124034848332 -7449,9203,16684,16683,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.628709065163735,8.991689029420428,0,33,1,-41.51532052050153,0,3,3,2019,6,0,45,40,1,0,0,17.75233304661861,17.75233304661861,0,0,0,0,0,0,0,0,2.756224517864224,0,62.42,45.64,68.2,37.54,8.333333333333334,1,1,0,0,12,4,5,1,212.5,1545213.148403678,953482.0466864891,400986.6285094598,0,3436.124034848332 -7449,9204,16685,-9,16683,16684,1,0,25,0,0,0,2,2,-9,0,4,8.060282566592663,7.945594601461819,0,0,0,-1086.94412466696,0,2,2,2019,14,2,37,38,1,2,1,12.69949709484382,12.69949709484382,0,0,0,0,0,0,0,0,3.219768050681183,0,38.94,60.48,-9,-9,5,1,1,0,0,9,4,4,1,357,-71318.31904588344,22772.21703208574,0,0,1416.655595969815 -7450,9205,16686,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,8.020371872142938,8.167999564771121,0,0,0,-947.3732399651662,0,2,-9,2019,6,0,37,37,1,0,0,9.165814956874174,9.165814956874174,0,0,0,0,0,1,1,0,2.94329776140508,0,53.4,32.68,-9,-9,8.333333333333334,1,1,0,0,11,6,4,0,373,51029.40783198368,34689.06748256138,0,0,1533.770059100514 -7451,9206,16687,16689,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,7.90382033451689,7.80848559734692,0,25,9,12.13875924063253,0,-9,-9,2019,6,0,40,40,1,0,0,7.153219958312627,7.153219958312627,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.44,41.45,8.333333333333334,2,3,0,0,12,6,3,1,673.3333333333334,223847.4711050039,0,292535.5735385522,43678.7217704482,1956.197922226355 -7451,9206,16688,-9,16689,16687,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.3376478766418,-9,1,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.26,62.83,-9,-9,3.333333333333333,2,3,0,0,0,6,3,1,673.3333333333334,223847.4711050039,0,292535.5735385522,43678.7217704482,1956.197922226355 -7451,9206,16689,16687,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.220221200572061,6.192132816894775,0,25,0,-19.1458832592295,0,2,2,2019,7,0,8,20,1,0,0,9.529163800754562,9.529163800754562,0,0,0,0,0,1,1,0,0,0,57.44,41.45,60.29,52.11,8.333333333333334,2,3,0,0,5,6,3,1,673.3333333333334,223847.4711050039,0,292535.5735385522,43678.7217704482,1956.197922226355 -7451,9207,16690,-9,16689,16687,1,0,23,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1045.479012253165,-9,1,3,2019,25,10,0,0,2,10,1,0,0,0,0,0,1.252948512092582,0,1,1,0,0,0,46.39,44.88,-9,-9,3.333333333333333,2,3,0,0,4,6,1,1,296,0,0,0,0,16.64631428017942 -7452,9208,16691,16692,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,27,-7,-114.5733958287882,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.28,42.41,36.37,23,10,1,1,0,0,0,13,2,1,303.5,285205.273472879,221360.239153414,85367.09063185177,0,1224.175188885364 -7452,9208,16692,16691,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.304138139454293,6.667234893496987,27,7,110.2551354044233,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,6.501179852733528,36.37,23,52.28,42.41,10,1,1,0,0,9,13,2,1,303.5,285205.273472879,221360.239153414,85367.09063185177,0,1224.175188885364 -7452,9209,16693,-9,16691,16692,1,0,23,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1092.604062819353,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,1,0,0,13,1,1,724,-12450.48122206473,0,0,0,745.5125060975253 -7453,9210,16694,16695,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,8.456369163803791,8.555865492608024,10,-4,-18.8151394286848,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.867641508607246,8.169034616406114,51.76,47.75,59.29,49.68,8.333333333333334,1,1,0,0,12,12,5,1,905.5,503632.6682893159,170853.4786091932,0,0,6299.714394225532 -7453,9210,16695,16694,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.92020855211079,8.784468031783771,10,4,-110.3032580546736,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.546700692321078,8.988671864501017,59.29,49.68,51.76,47.75,8.333333333333334,1,1,0,0,10,12,5,1,905.5,503632.6682893159,170853.4786091932,0,0,6299.714394225532 -7454,9211,16696,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,7.62467573372337,7.877284566979479,0,0,0,-1029.202327572047,0,2,1,2019,8,0,30,25,1,0,0,8.569950148533069,8.569950148533069,0,0,0,0,0,1,1,0,0,0,31.53,57.52,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,1008,27472.22023814311,138609.0700811506,107094.0783685755,0,1132.890831946614 -7455,9212,16697,16698,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,9.489710995112137,9.405454389932089,6,2,37.31725419505958,0,-9,-9,2019,22,8,0,0,4,8,0,0,0,1,4.594471793719952,11.47012375806386,0,0,1,1,0,8.052599190012387,9.420787741320815,41.94,16.49,22,41.18,1.666666666666667,1,1,0,0,0,10,5,1,1559,3204762.605928922,1570969.47026232,0,0,9620.356119730972 -7455,9212,16698,16697,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,6,-2,78.05638407306752,0,3,2,2019,28,12,0,0,4,12,0,0,0,1,5.964927575891433,12.51492067340379,0,120,1,1,0,8.227182724922724,0,22,41.18,41.94,16.49,1.666666666666667,1,1,0,0,0,10,5,1,1559,3204762.605928922,1570969.47026232,0,0,9620.356119730972 -7456,9213,16699,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.821709426013001,8.026944968776439,0,0,0,-963.6665552743498,0,3,3,2019,8,0,39,0,1,0,0,6.545249018832399,6.545249018832399,0,0,0,0,0,1,1,0,0,0,50.29,52.35,-9,-9,6.666666666666667,1,1,0,0,10,11,4,0,1130,32575.16153949319,105161.0450849516,0,0,2315.088347185789 -7457,9214,16700,16702,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,8.333105544146678,8.738551062792931,6.963569498560707,6,-1,38.60913207378555,0,-9,-9,2019,7,0,40,45,1,0,0,14.55753904303425,14.55753904303425,0,0,0,0,0,1,1,0,0,7.357186226220096,57.16,56.15,60.57,46.44,8.333333333333334,1,1,0,0,12,4,4,1,540.6666666666666,1769690.014630094,1548462.210564931,287293.7371160386,84072.77423484622,3839.278411624121 -7457,9214,16701,-9,16702,16700,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.911582106879,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,540.6666666666666,1769690.014630094,1548462.210564931,287293.7371160386,84072.77423484622,3839.278411624121 -7457,9214,16702,16700,-9,-9,1,0,55,0,1,0,1,1,-9,0,4,7.967793040151507,8.35037513138281,6.24421682948731,6,1,35.68581091154113,0,3,2,2019,9,1,28,28,1,1,0,13.18147852800955,13.18147852800955,0,0,0,0,0,1,1,0,6.160852855207163,0,60.57,46.44,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,540.6666666666666,1769690.014630094,1548462.210564931,287293.7371160386,84072.77423484622,3839.278411624121 -7457,9215,16703,-9,16702,16700,1,0,23,0,1,0,2,2,1,0,3,7.866379188793969,7.846099797718646,0,0,0,-922.0866521294205,-9,1,1,2019,18,6,37,0,1,6,1,8.75708301021379,8.75708301021379,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,5,1,1,0,1,4,4,3,1,397,201491.8823842077,37702.69217167294,0,0,912.2581429873379 -7458,9216,16704,16706,-9,-9,1,1,38,0,1,0,2,2,-9,0,3,5.952520120010506,5.893582457746881,0,10,4,62.95809605323176,0,2,3,2019,8,0,40,40,1,0,0,1.066327357891842,1.066327357891842,0,0,0,0,0,1,1,0,0,0,55.96,49.93,28.57,61.36,5,1,1,0,1,11,10,4,1,606.6666666666666,23407.3353097611,44684.14579317153,193727.9837537303,157653.5011527161,2162.503718409666 -7458,9216,16705,-9,16706,16704,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.307243008172,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,606.6666666666666,23407.3353097611,44684.14579317153,193727.9837537303,157653.5011527161,2162.503718409666 -7458,9216,16706,16704,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.803076466063512,8.743508611197738,0,10,-4,75.60948663278397,0,-9,-9,2019,21,9,43,40,1,9,0,15.81627970672291,15.81627970672291,0,0,0,0,0,1,1,0,0,0,28.57,61.36,55.96,49.93,5,1,1,0,0,10,10,4,1,606.6666666666666,23407.3353097611,44684.14579317153,193727.9837537303,157653.5011527161,2162.503718409666 -7459,9217,16707,-9,-9,-9,1,0,36,1,3,0,2,2,-9,0,2,6.546784712132361,6.790543065738501,0,0,0,-1081.041295555598,0,-9,-9,2019,12,0,40,40,1,0,0,1.802222766931703,1.802222766931703,0,0,0,0,0,1,1,0,0,0,40,41,-9,-9,5,1,1,0,0,5,4,2,0,2148,3490.888557053406,14334.14129013682,69294.94242955017,42313.05589037929,707.1481160311428 -7459,9217,16708,-9,16707,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.192715520497,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,2,0,2148,3490.888557053406,14334.14129013682,69294.94242955017,42313.05589037929,707.1481160311428 -7460,9218,16709,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.355424776323048,8.214617737306432,0,0,0,-1046.413825157927,0,2,2,2019,15,3,42,40,1,3,0,9.349846978371509,9.349846978371509,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,452,269220.7353041597,184687.8784487461,87517.95289485445,0,1559.530697179413 -7461,9219,16710,-9,16712,16711,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.6685459276143,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,289.3333333333333,304470.7621760751,57999.78630753446,111580.3942855679,49741.09758161591,1506.047345794092 -7461,9219,16711,16712,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.432474723668923,8.279003702880457,0,22,0,19.35039315858633,0,3,3,2019,6,0,44,40,1,0,0,11.33040484068956,11.33040484068956,0,0,0,0,0,1,1,0,0,0,48.42,50.81,50.78,37.87,6.666666666666667,2,3,0,0,7,2,3,0,289.3333333333333,304470.7621760751,57999.78630753446,111580.3942855679,49741.09758161591,1506.047345794092 -7461,9219,16712,16711,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,22,0,-1.14621532000418,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.78,37.87,48.42,50.81,6.666666666666667,2,3,0,0,0,2,3,0,289.3333333333333,304470.7621760751,57999.78630753446,111580.3942855679,49741.09758161591,1506.047345794092 -7462,9220,16713,16714,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.662210602351641,8.536092953745495,0,9,1,-90.70829598986282,0,2,1,2019,17,6,50,46,1,6,0,16.5752083860898,16.5752083860898,0,0,0,0,0,0,0,0,0,0,35.15,61.1,50,55,3.333333333333333,1,1,0,0,9,8,5,1,764.5,688389.739235864,699040.1700911582,301030.1055464332,300396.6528420359,5668.458472958035 -7462,9220,16714,16713,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.094018098797791,9.270799350898253,0,9,-1,-39.35553282317947,0,2,2,2019,10,0,35,38,1,1,0,31.45991968111182,31.45991968111182,0,0,0,0,0,0,0,0,3.6870848289154,0,50,55,35.15,61.1,8,1,1,0,0,11,8,5,1,764.5,688389.739235864,699040.1700911582,301030.1055464332,300396.6528420359,5668.458472958035 -7463,9221,16715,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.741798885132741,7.506322975548198,0,0,-945.0426379838649,-9,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.406184743923576,48.19,30.93,-9,-9,10,1,1,0,0,0,7,3,1,1984,482969.915011333,166286.5952161298,326194.7618261073,0,1499.828145905419 -7464,9222,16716,16717,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.08979507980247,7.522944924447682,0,1,11,-54.17630870232423,0,3,3,2019,12,0,20,24,1,0,0,8.791610550198772,8.791610550198772,0,0,0,0,0,1,0,1,0,0,48.28,53.42,52.8,40.58,8.333333333333334,1,1,0,0,8,13,3,0,432.5,4842.10901306348,0,0,0,1907.700478830585 -7464,9222,16717,16716,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.823109499530283,7.612329833349928,0,1,-11,-46.87639138322243,-9,-9,-9,2019,7,0,37,0,1,0,0,6.678795131916813,6.678795131916813,0,0,0,0,0,1,0,1,0,0,52.8,40.58,48.28,53.42,10,1,1,0,0,0,13,3,0,432.5,4842.10901306348,0,0,0,1907.700478830585 -7465,9223,16718,16719,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.377964321846232,5.79358917366138,50,0,-23.47496491275756,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.806023008510463,5.507984505658563,59.14,52.5,52.24,48.84,10,1,1,0,0,0,1,2,1,482.5,397924.7888649965,51893.52436229055,311488.5826334086,17645.45894301854,2106.679994241482 -7465,9223,16719,16718,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.882565098382581,6.021166672649295,50,0,163.2331191645406,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.943075536185279,6.361207733895561,52.24,48.84,59.14,52.5,8.333333333333334,1,1,0,0,0,1,2,1,482.5,397924.7888649965,51893.52436229055,311488.5826334086,17645.45894301854,2106.679994241482 -7466,9224,16720,16722,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,8.042829816507183,8.02914992051292,0,21,-7,-25.69474017499668,0,3,3,2019,24,8,55,55,1,8,0,6.771592934067685,6.771592934067685,0,0,0,0,71,1,1,0,0,0,11.01,53.59,48.28,60.18,1.666666666666667,1,1,0,0,12,2,4,1,1337.666666666667,507711.090090732,198460.9961723773,131196.2126505095,0,3235.717517167795 -7466,9224,16721,-9,16720,16722,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-902.393355322931,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,1337.666666666667,507711.090090732,198460.9961723773,131196.2126505095,0,3235.717517167795 -7466,9224,16722,16720,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.259702655808557,8.486644076843932,0,21,7,-85.09114346433194,0,3,3,2019,11,0,61,40,1,0,0,7.589953486969356,7.589953486969356,0,0,0,0,7,1,1,0,0,0,48.28,60.18,11.01,53.59,8.333333333333334,1,1,0,0,13,2,4,1,1337.666666666667,507711.090090732,198460.9961723773,131196.2126505095,0,3235.717517167795 -7467,9225,16723,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1044.156850352077,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,5.324546835834967,6.417567205602818,63.79467100618213,0,1,1,0,0,0,48.05,21.47,-9,-9,6.666666666666667,1,1,0,0,1,11,1,0,87,0,0,0,0,1558.826394577538 -7468,9226,16724,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,8.471956950369302,8.294259100571219,0,0,-947.9002056526436,0,1,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.393326238033673,8.532716227782103,62.99,20.06,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,780,1222210.037756779,221453.9843375969,387396.7352539173,0,2418.616148781137 -7469,9227,16725,-9,16726,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.5890020189096,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1398.5,154599.0434688502,85707.80752451323,105112.8690373147,26343.7792424337,1683.143898884081 -7469,9227,16726,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.174114490863118,7.616732484797997,6.437969965842415,0,0,-893.571802497549,0,2,2,2019,16,4,20,20,1,4,0,7.112774796205713,7.112774796205713,0,0,0,0,0,1,1,0,6.772592436917297,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,1398.5,154599.0434688502,85707.80752451323,105112.8690373147,26343.7792424337,1683.143898884081 -7470,9228,16727,16728,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,9.203541576198539,9.227889747098496,5.938578459691587,49,1,57.69746190350349,0,3,2,2019,9,1,25,20,1,1,0,42.86227025785919,42.86227025785919,0,0,0,0,27,1,1,0,5.870857413069197,5.986978112587277,49.27,56.95,52,48,8.333333333333334,1,1,0,0,8,2,5,1,516,435574.8216817536,277631.0897300775,274032.4331366902,85941.37220455988,5354.712378105828 -7470,9228,16728,16727,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.1131109776148,7.161501981186765,49,-1,-64.77408849539248,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.742625807882483,6.777126188967131,52,48,49.27,56.95,7,1,1,0,0,0,2,5,1,516,435574.8216817536,277631.0897300775,274032.4331366902,85941.37220455988,5354.712378105828 -7471,9229,16729,16730,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-23.17169574939493,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.810360160858629,0,57.57,42.25,61.43,43.34,10,1,1,0,0,3,2,3,1,734,244708.2792839515,130227.4206123609,0,0,2658.7862192518 -7471,9229,16730,16729,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.182797006404749,7.764284022921999,7.100904285710494,8,2,-164.5611395498271,0,3,3,2019,9,0,18,18,1,0,0,7.715213304021362,7.715213304021362,1,0,0,0,0,1,1,0,5.537778132452035,7.230633865798469,61.43,43.34,57.57,42.25,8.333333333333334,1,1,0,0,9,2,3,1,734,244708.2792839515,130227.4206123609,0,0,2658.7862192518 -7472,9230,16731,-9,-9,-9,1,1,66,0,0,0,2,2,-9,1,3,0,7.204674916015715,7.495455761363519,0,0,-1110.84656522644,0,2,1,2019,27,12,0,38,3,12,0,0,0,0,0,0,0,2,0,0,0,0,7.614852915575488,28.86,57.42,-9,-9,5,1,1,0,0,10,7,3,1,180,480908.3280067455,355989.1390119759,161218.3590217017,0,722.5555589615818 -7473,9231,16732,16733,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,6.92081244309364,6.871987473278062,0,9,-5,103.6413053056875,0,2,3,2019,7,0,16,16,1,0,0,6.568324941500117,6.568324941500117,0,0,0,0,0,1,1,0,0,0,56.57,57.78,52,56,8.333333333333334,1,1,0,0,3,9,4,1,178,1386015.440318269,1079230.505227515,440519.311399497,49262.73834752577,2676.245458206473 -7473,9231,16733,16732,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.787975177232873,8.625584848160463,0,9,5,93.73172288098569,-9,3,3,2019,9,0,35,0,1,1,0,18.56839583548247,18.56839583548247,0,0,0,0,0,1,1,0,0,0,52,56,56.57,57.78,8,1,1,0,0,1,9,4,1,178,1386015.440318269,1079230.505227515,440519.311399497,49262.73834752577,2676.245458206473 -7473,9232,16734,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-860.9758917392168,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.142861894022526,0,50,47,-9,-9,7,4,6,0,0,0,9,1,1,675,99566.58264614646,0,0,0,1241.170635442358 -7474,9233,16735,16739,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,6,-6,-15.26596754750998,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.5,53.5,39.32,44.15,6.666666666666667,2,3,1,1,5,8,2,0,391.8,-21887.56862610973,31047.51950193522,0,0,2217.020830773342 -7474,9233,16736,-9,16735,16739,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.942733240238,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,391.8,-21887.56862610973,31047.51950193522,0,0,2217.020830773342 -7474,9233,16737,-9,16735,16739,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1144.127917315495,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,391.8,-21887.56862610973,31047.51950193522,0,0,2217.020830773342 -7474,9233,16738,-9,16735,16739,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1038.585872733596,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,2,0,391.8,-21887.56862610973,31047.51950193522,0,0,2217.020830773342 -7474,9233,16739,16735,-9,-9,1,1,39,0,3,0,1,1,-9,1,3,0,5.62352072861052,5.975839904435982,2,6,68.09477167219951,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,6.604107191598025,0,39.32,44.15,42.5,53.5,0,2,3,0,1,7,8,2,0,391.8,-21887.56862610973,31047.51950193522,0,0,2217.020830773342 -7475,9234,16740,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,9.176058461625933,9.362930290104137,0,0,0,-1168.559557143551,-9,2,-9,2019,16,4,60,0,1,4,0,19.77659793076657,19.77659793076657,0,0,0,0,0,1,1,0,0,0,54.52,38.74,-9,-9,8.333333333333334,1,1,0,0,5,2,5,0,271,398162.2099453089,240361.5898089809,160398.6469977424,0,2922.536560949432 -7476,9235,16741,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.104686019961727,8.324671170042324,0,0,-910.6528899044056,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.84121417170271,8.062231236272186,54.2,57.49,-9,-9,10,1,1,0,0,0,12,4,1,437,1068443.304932212,601705.706560865,73381.59630994286,0,1703.960948045192 -7477,9236,16742,16743,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.261822397392324,8.313842701301196,0,7,19,8.240798949635707,-9,2,1,2019,11,0,75,0,1,0,0,6.011005953524502,6.011005953524502,0,0,0,0,0,1,1,0,0,0,45.91,59.89,47.14,51.33,6.666666666666667,1,1,0,0,9,11,5,1,632.5,2417627.89979811,1983600.401199897,388513.3813023207,243282.0345109657,5386.431630456987 -7477,9236,16743,16742,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.444981890610171,9.348500296521758,0,7,-19,92.23709707265701,0,2,1,2019,11,2,30,25,1,2,0,52.21492370635664,52.21492370635664,0,0,0,0,0,1,1,0,0,0,47.14,51.33,45.91,59.89,10,1,1,0,1,8,11,5,1,632.5,2417627.89979811,1983600.401199897,388513.3813023207,243282.0345109657,5386.431630456987 -7478,9237,16744,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-905.5196795755813,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,6,1,0,1353,282539.2674374555,0,193012.6289600678,0,3626.981709080616 -7479,9238,16745,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1061.271612817677,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.55,28.25,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,979,57340.62214378107,0,0,0,1396.884883435742 -7480,9239,16746,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,5,9.043790176299849,9.296083111284014,0,0,0,-854.7453267278281,0,2,2,2019,7,0,47,52,1,0,0,26.79563769245808,26.79563769245808,0,0,0,0,0,1,1,0,2.304719195252521,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,558,220148.6400767839,217132.0773729033,138876.262409868,108850.313800583,2903.051264897125 -7481,9240,16747,16748,-9,-9,1,1,51,0,3,0,2,2,-9,0,4,8.692516720081791,8.632080151577783,0,22,6,64.60600519212053,0,3,3,2019,11,0,70,60,1,0,0,10.49950479372654,10.49950479372654,0,0,0,0,0,1,0,1,0,0,55.76,52.64,54.2,57.49,6.666666666666667,1,1,0,0,10,13,3,1,1211.4,313672.2464348128,280198.6958803842,104903.2604816984,130209.5699514998,3319.325724462578 -7481,9240,16748,16747,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,0,0,0,22,-6,-14.13230201299359,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,.4795930798127419,0,54.2,57.49,55.76,52.64,8.333333333333334,1,1,0,0,7,13,3,1,1211.4,313672.2464348128,280198.6958803842,104903.2604816984,130209.5699514998,3319.325724462578 -7481,9240,16749,-9,16748,16747,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.2266233039074,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,1211.4,313672.2464348128,280198.6958803842,104903.2604816984,130209.5699514998,3319.325724462578 -7481,9240,16750,-9,16748,16747,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-848.4220472450793,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,1211.4,313672.2464348128,280198.6958803842,104903.2604816984,130209.5699514998,3319.325724462578 -7481,9240,16751,-9,16748,16747,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.302019796353,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1211.4,313672.2464348128,280198.6958803842,104903.2604816984,130209.5699514998,3319.325724462578 -7482,9241,16752,16753,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.452949072797486,8.616951132672867,0,13,0,32.4298569676092,0,2,2,2019,5,0,43,48,1,0,0,13.64141925482131,13.64141925482131,0,0,0,0,0,1,1,0,1.000686256483816,0,57.16,56.15,51,58,8.333333333333334,1,1,0,0,10,9,5,1,779,706237.251931992,394274.866133496,286037.3615487033,154405.49313874,5057.085840765513 -7482,9241,16753,16752,-9,-9,1,0,37,1,1,0,1,1,-9,0,5,8.820829780103312,9.283315856688274,0,13,0,18.404798990863,0,2,2,2019,7,1,48,42,1,1,0,16.81734997109511,16.81734997109511,0,0,0,0,0,1,1,0,0,0,51,58,57.16,56.15,10,1,1,0,0,10,9,5,1,779,706237.251931992,394274.866133496,286037.3615487033,154405.49313874,5057.085840765513 -7482,9241,16754,-9,16753,16752,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.1407645824115,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,779,706237.251931992,394274.866133496,286037.3615487033,154405.49313874,5057.085840765513 -7483,9242,16755,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.836302616954653,4.954470410671258,0,0,-912.6155588998274,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.437711564685809,5.049202950024697,43.76,32.51,-9,-9,5,1,1,0,0,0,7,2,1,334,30690.46314487969,0,0,0,892.0181268404108 -7484,9243,16756,16757,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,1.178527801892556,1.157206981190841,0,5,-1,-6.543844686363956,0,-9,-9,2019,6,0,28,25,1,0,0,.0151569889296585,.0151569889296585,0,0,0,0,0,0,0,0,0,0,60.52,53.2,41.34,56.62,8.333333333333334,1,1,0,0,11,10,3,1,881.5,17114.10396137297,-1887.647701510075,0,0,1584.132541684572 -7484,9243,16757,16756,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.049450707654279,7.971447770157887,0,5,1,31.89395248559818,0,-9,-9,2019,12,2,40,40,1,2,0,9.348718751545697,9.348718751545697,0,0,0,0,0,0,0,0,0,0,41.34,56.62,60.52,53.2,8.333333333333334,1,1,0,0,12,10,3,1,881.5,17114.10396137297,-1887.647701510075,0,0,1584.132541684572 -7485,9244,16758,16759,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,7,18,0,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.796497522385633,0,53,47,51,53,7,2,3,0,0,0,9,1,1,455,241685.5523880823,0,255326.0449179295,0,54.60659316129016 -7485,9244,16759,16758,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,7,-18,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,53,53,47,8,2,3,0,0,0,9,1,1,455,241685.5523880823,0,255326.0449179295,0,54.60659316129016 -7485,9245,16760,-9,16759,16758,1,0,25,0,0,0,1,1,-9,0,4,7.848365274955526,8.02606848656316,0,0,0,-1062.423528848592,0,3,3,2019,12,2,35,35,1,2,1,10.68249391524843,10.68249391524843,0,0,0,0,0,0,0,0,0,0,36.2,64.19,-9,-9,5,2,3,0,0,5,9,4,1,323,-52486.81642683749,65499.64990142622,0,0,1453.448450283347 -7485,9246,16761,-9,16759,16758,1,0,22,0,0,0,1,1,1,0,4,7.884932535947426,7.880955870576363,0,0,0,-990.303902720804,-9,3,3,2019,6,0,38,0,1,0,1,8.512744583279435,8.512744583279435,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,659,102694.3808276193,98567.68835111758,0,0,1079.21588124563 -7485,9247,16762,-9,16759,16758,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.79974162583,-9,3,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,5,2,3,0,0,0,9,1,1,702,173862.3754972184,0,0,0,96.91226944992135 -7486,9248,16763,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-995.2223023104209,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,94.17300911400547,0,0,1,1,0,0,0,39.88,26.56,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,102,52784.80680981206,0,87273.74926127397,0,-267.0840625127334 -7487,9249,16764,-9,16766,16767,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1148.15648892096,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1682.2,611042.0787599677,481586.5162204159,223050.1858591134,104182.2577021605,4186.322629196565 -7487,9249,16765,-9,16766,16767,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.526554236556,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1682.2,611042.0787599677,481586.5162204159,223050.1858591134,104182.2577021605,4186.322629196565 -7487,9249,16766,16767,-9,-9,1,0,50,0,3,0,1,1,-9,0,5,7.90609281904254,7.780963991809386,0,18,-1,-24.39835769224487,0,3,3,2019,7,1,25,25,1,1,0,11.26172497647291,11.26172497647291,0,0,0,0,0,1,1,0,0,0,50.15,55.66,54.57,60.2,8.333333333333334,1,1,0,0,8,1,4,1,1682.2,611042.0787599677,481586.5162204159,223050.1858591134,104182.2577021605,4186.322629196565 -7487,9249,16767,16766,-9,-9,1,1,51,0,3,0,1,1,-9,0,5,8.525979070169644,8.734016933165828,0,18,1,-59.96960733022652,0,2,2,2019,12,0,42,45,1,0,0,18.13366209166384,18.13366209166384,0,0,0,0,0,1,1,0,0,0,54.57,60.2,50.15,55.66,8.333333333333334,1,1,0,0,8,1,4,1,1682.2,611042.0787599677,481586.5162204159,223050.1858591134,104182.2577021605,4186.322629196565 -7487,9249,16768,-9,16766,16767,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-863.7584235631258,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.9820200273633404,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1682.2,611042.0787599677,481586.5162204159,223050.1858591134,104182.2577021605,4186.322629196565 -7488,9250,16769,16771,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.32334116664231,8.565802161842791,0,17,0,-191.7931690560773,0,2,2,2019,5,0,44,41,1,0,0,16.7144082652033,16.7144082652033,0,0,0,0,0,0,0,0,0,0,49.25,61.25,51.41,56.15,6.666666666666667,1,1,0,0,9,9,5,1,591.5,2851705.052346046,2309909.673711058,554354.0586133201,17620.19920047451,3616.660527540704 -7488,9250,16770,-9,16771,16769,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.246337408499,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,591.5,2851705.052346046,2309909.673711058,554354.0586133201,17620.19920047451,3616.660527540704 -7488,9250,16771,16769,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.578167805238071,8.778670400876342,0,17,0,-112.3802788614549,0,2,3,2019,12,3,26,26,1,3,0,18.33285664448744,18.33285664448744,0,0,0,0,0,0,0,0,0,0,51.41,56.15,49.25,61.25,8.333333333333334,1,1,0,0,9,9,5,1,591.5,2851705.052346046,2309909.673711058,554354.0586133201,17620.19920047451,3616.660527540704 -7488,9250,16772,-9,16771,16769,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.9374305642469,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,591.5,2851705.052346046,2309909.673711058,554354.0586133201,17620.19920047451,3616.660527540704 -7489,9251,16773,16776,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.206147044333145,8.126958964737963,0,14,6,2.312743288746403,0,2,2,2019,10,0,30,27,1,0,0,13.71595937302077,13.71595937302077,0,0,0,0,0,1,1,0,7.764643979381267,0,53.32,40.19,32.64,63.56,6.666666666666667,1,1,0,0,7,4,5,1,960,549490.538802108,405975.5821752151,313868.4249613483,157270.9093230265,5653.658834499281 -7489,9251,16774,-9,16776,16773,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.0400858879719,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,960,549490.538802108,405975.5821752151,313868.4249613483,157270.9093230265,5653.658834499281 -7489,9251,16775,-9,16776,16773,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.232885877933,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,960,549490.538802108,405975.5821752151,313868.4249613483,157270.9093230265,5653.658834499281 -7489,9251,16776,16773,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.115442444009618,8.933095930012675,0,14,-6,76.52486514075194,0,2,3,2019,20,8,50,58,1,8,0,21.34310714125671,21.34310714125671,0,0,0,0,0,1,1,0,0,0,32.64,63.56,53.32,40.19,8.333333333333334,1,1,0,0,8,4,5,1,960,549490.538802108,405975.5821752151,313868.4249613483,157270.9093230265,5653.658834499281 -7490,9252,16777,16778,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.904909928874212,7.908904171806154,5.375838693145019,42,0,-34.33808829684686,0,-9,-9,2019,5,0,50,30,1,0,0,6.014236872295001,6.014236872295001,0,0,0,0,0,1,1,0,0,5.344381362833226,59.43,49.68,56.35,51,8.333333333333334,1,1,0,0,10,12,3,1,254,-5065.686612352663,4760.215593124509,0,0,3143.071659555869 -7490,9252,16778,16777,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,6.234842524865554,6.086904333838719,0,42,0,5.999259815333265,0,2,1,2019,6,0,10,6,1,0,0,5.793716103781795,5.793716103781795,0,0,0,0,0,1,1,0,0,0,56.35,51,59.43,49.68,8.333333333333334,1,1,0,0,10,12,3,1,254,-5065.686612352663,4760.215593124509,0,0,3143.071659555869 -7491,9253,16779,-9,16780,16782,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.435666996136,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,483.5,141343.6417776906,-407.1877543674073,221728.625846152,123172.6355033462,4903.611062626644 -7491,9253,16780,16782,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,0,0,0,9,-3,70.35801405385808,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.4588093073581623,0,35.02,57.09,41.34,56.62,8.333333333333334,1,1,0,0,4,9,4,1,483.5,141343.6417776906,-407.1877543674073,221728.625846152,123172.6355033462,4903.611062626644 -7491,9253,16781,-9,16780,16782,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.8578639324354,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,483.5,141343.6417776906,-407.1877543674073,221728.625846152,123172.6355033462,4903.611062626644 -7491,9253,16782,16780,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.972120808293463,8.953490987065891,0,9,3,24.49836021683476,0,-9,-9,2019,7,0,40,-9,1,0,0,20.78750736530609,20.78750736530609,0,0,0,0,0,1,1,0,8.448336524627718,0,41.34,56.62,35.02,57.09,8.333333333333334,1,1,0,0,10,9,4,1,483.5,141343.6417776906,-407.1877543674073,221728.625846152,123172.6355033462,4903.611062626644 -7492,9254,16783,-9,16784,16787,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.742106595279,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,10,5,1,1110.8,368732.6923217361,122686.604606831,492145.8977185237,250467.9342624629,6993.558222755792 -7492,9254,16784,16787,-9,-9,1,0,40,1,3,0,1,1,-9,0,4,8.698344602268083,8.604408343830675,0,11,-1,33.52072884495907,0,2,2,2019,18,4,26,25,1,4,0,27.14510463933172,27.14510463933172,0,0,0,0,0,0,0,0,3.90963336511774,0,43.54,59.6,46.95,59.37,8.333333333333334,2,3,0,0,8,10,5,1,1110.8,368732.6923217361,122686.604606831,492145.8977185237,250467.9342624629,6993.558222755792 -7492,9254,16785,-9,16784,16787,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.1187648975265,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,10,5,1,1110.8,368732.6923217361,122686.604606831,492145.8977185237,250467.9342624629,6993.558222755792 -7492,9254,16786,-9,16784,16787,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.485395598446,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,10,5,1,1110.8,368732.6923217361,122686.604606831,492145.8977185237,250467.9342624629,6993.558222755792 -7492,9254,16787,16784,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,9.661826427353908,9.613293995832011,0,11,1,78.7610060549606,0,1,1,2019,14,2,50,49,1,2,0,32.33021457278277,32.33021457278277,0,0,0,0,0,0,0,0,1.47698564139815,0,46.95,59.37,43.54,59.6,6.666666666666667,2,3,0,0,8,10,5,1,1110.8,368732.6923217361,122686.604606831,492145.8977185237,250467.9342624629,6993.558222755792 -7493,9255,16788,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.816199376224269,7.383953581256857,0,0,-977.2462196894886,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.771677857809257,7.462369162952355,60.12,54.8,-9,-9,10,1,1,0,0,9,2,3,1,1035,687055.0269084078,472195.2559250453,186104.3676390527,0,1598.020401543036 -7494,9256,16789,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.25456489066581,7.98512928991981,0,0,0,-964.9447602528868,0,1,1,2019,12,0,35,38,1,2,0,11.5721466736989,11.5721466736989,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,0,6,4,4,0,1201,1125268.30204674,604182.9117241334,267495.2369462858,0,1395.645816567751 -7494,9257,16790,-9,16789,-9,1,1,23,0,0,0,2,2,-9,0,4,7.776562491180361,8.157378972935872,0,0,0,-951.241384319375,0,1,2,2019,10,0,37,40,1,1,1,6.841385643532732,6.841385643532732,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,4,4,3,0,298,-87264.64366426524,0,0,0,717.8099922411604 -7494,9258,16791,-9,16789,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-1131.690798789535,-9,1,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,34.2,49.45,-9,-9,1.666666666666667,4,2,0,0,0,4,1,0,5014,187885.6102470387,0,0,0,0 -7495,9259,16792,16793,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-8,27.62663544472084,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,5.48,1,1,0,0,0,51.19,38.44,56.27,10.51,10,1,1,0,0,0,5,2,1,359,302429.0988906724,216852.8688377489,111851.9818311507,0,2186.846391304901 -7495,9259,16793,16792,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.153763440402117,7.583651772051169,59,8,-6.887577627515326,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,7.722859576960486,56.27,10.51,51.19,38.44,8.333333333333334,1,1,0,0,0,5,2,1,359,302429.0988906724,216852.8688377489,111851.9818311507,0,2186.846391304901 -7496,9260,16794,16795,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,5.033933043362248,5.158540840298228,26,5,-69.616328043016,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.948543323710968,4.999960356486435,58.5,44.67,57.06,57.76,8.333333333333334,1,1,0,0,6,4,5,1,1856,351190.9097220049,93610.84866967457,110995.7707629533,0,4928.5907585975 -7496,9260,16795,16794,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.952075478336663,9.232895012815922,0,9,-5,70.28584916830937,0,3,3,2019,8,0,43,40,1,0,0,22.84588482599951,22.84588482599951,0,0,0,0,0,0,0,0,7.081983595908758,0,57.06,57.76,58.5,44.67,10,1,1,0,0,11,4,5,1,1856,351190.9097220049,93610.84866967457,110995.7707629533,0,4928.5907585975 -7497,9261,16796,16797,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.060618481162694,6.138533723999873,26,-2,109.6635536723001,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.141166461451035,5.925782270108278,45.62,41.74,43.12,58.55,8.333333333333334,1,1,0,0,0,11,3,1,281.5,256654.6334471679,53192.22395478976,164081.441908269,0,2488.273812406201 -7497,9261,16797,16796,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.290764661372804,7.384449912830479,26,2,-28.86360720451568,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.559954804275419,43.12,58.55,45.62,41.74,8.333333333333334,1,1,0,0,0,11,3,1,281.5,256654.6334471679,53192.22395478976,164081.441908269,0,2488.273812406201 -7498,9262,16798,-9,16799,16800,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.8629625751943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,701,133449.4127612172,-34442.31310615852,17454.49495508762,22376.91925471257,1223.635889030889 -7498,9262,16799,16800,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,11,1,-30.42997368700891,0,2,-9,2019,33,11,0,37,3,11,0,0,0,0,0,0,0,0,1,1,0,6.55885243002106,0,28.79,31.77,45.01,49.59,1.666666666666667,1,1,0,0,9,2,2,1,701,133449.4127612172,-34442.31310615852,17454.49495508762,22376.91925471257,1223.635889030889 -7498,9262,16800,16799,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.534233724756364,7.33356916406746,0,18,-1,-105.3911928890389,0,2,-9,2019,10,0,29,10,1,0,0,5.841997116866391,5.841997116866391,0,0,0,0,0,1,1,0,0,0,45.01,49.59,28.79,31.77,3.333333333333333,1,1,0,0,9,2,2,1,701,133449.4127612172,-34442.31310615852,17454.49495508762,22376.91925471257,1223.635889030889 -7498,9263,16801,-9,16799,16800,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-878.0970054920047,1,2,2,2019,7,2,0,16,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,10,1,1,0,0,2,2,1,1,2452,149210.6180330391,0,0,0,0 -7499,9264,16802,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.468877921154048,4.649023865140529,0,0,-881.9940438774628,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,1.342892853702638,74.5,1,1,0,2.085373004768547,4.475796988788508,54.2,57.49,-9,-9,10,1,1,0,0,0,12,2,0,2075,280253.0798654348,43309.43073238825,247839.1315977565,0,1081.206494984527 -7500,9265,16803,16804,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.221795673047978,6.929257252314523,0,45,0,-19.36375373280109,0,2,2,2019,8,0,30,20,1,0,0,4.663602098086121,4.663602098086121,0,0,0,0,0,1,1,0,1.910091378422394,0,49.52,56.95,51,49,8.333333333333334,1,1,0,0,13,6,2,1,886,158701.1940246445,89129.26280015062,181669.3565207536,0,1427.033144852137 -7500,9265,16804,16803,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,45,0,32.06217187757679,0,3,3,2019,10,0,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,4.171779088288681,0,51,49,49.52,56.95,7,1,1,0,0,0,6,2,1,886,158701.1940246445,89129.26280015062,181669.3565207536,0,1427.033144852137 -7501,9266,16805,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.401865630570658,7.435203383574354,0,0,-1159.402094368608,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.652384995196039,7.322653778690174,59.9,48.18,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,2391,716754.588480189,336499.5283307974,155145.1927340564,0,2047.534009567498 -7502,9267,16806,16807,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.916168362172034,6.773952179167731,41,8,13.82769697127383,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.677618238564786,6.554078187292073,54.79,55.86,57.93,46.29,8.333333333333334,1,1,0,0,0,1,2,1,612.5,329207.0678614035,268752.9344232434,134556.2537283408,0,1598.153818202273 -7502,9267,16807,16806,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.743281444751166,5.862170976265864,41,-8,40.85070563209743,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.888092347344602,5.897500051842954,57.93,46.29,54.79,55.86,8.333333333333334,1,1,0,0,0,1,2,1,612.5,329207.0678614035,268752.9344232434,134556.2537283408,0,1598.153818202273 -7503,9268,16808,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,7.972650238531226,8.234689259190306,0,1,-4,28.72138802629151,-9,2,-9,2019,29,11,42,0,1,11,0,8.247922315779666,8.247922315779666,0,0,0,0,0,1,1,0,2.615454851376067,0,21.56,57.91,50,57,3.333333333333333,1,1,0,0,8,13,3,0,716,-2933.927424624399,33956.12683107091,0,0,1858.734385994587 -7504,9269,16809,-9,16813,16811,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.7578510974589,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,761,320219.2125972965,146647.5368616908,128460.4005946988,15934.90693719004,2404.925592058211 -7504,9269,16810,-9,16813,16811,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.9469026683,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,761,320219.2125972965,146647.5368616908,128460.4005946988,15934.90693719004,2404.925592058211 -7504,9269,16811,16813,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.420843969602656,8.205601890091383,0,23,0,103.1174676580163,0,2,2,2019,12,0,38,38,1,0,0,11.9748760818016,11.9748760818016,0,0,0,0,0,1,1,0,.6579210210907362,0,49.86,55.31,55.58,52.99,6.666666666666667,1,1,0,0,10,1,3,1,761,320219.2125972965,146647.5368616908,128460.4005946988,15934.90693719004,2404.925592058211 -7504,9269,16812,-9,16813,16811,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.423086940413,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,761,320219.2125972965,146647.5368616908,128460.4005946988,15934.90693719004,2404.925592058211 -7504,9269,16813,16811,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,5.596295741486588,5.729931480066412,0,23,0,26.24658484729997,0,2,3,2019,7,1,9,8,1,1,0,3.574641227004087,3.574641227004087,0,0,0,0,0,1,1,0,.9779702103417829,0,55.58,52.99,49.86,55.31,8.333333333333334,1,1,0,0,9,1,3,1,761,320219.2125972965,146647.5368616908,128460.4005946988,15934.90693719004,2404.925592058211 -7505,9270,16814,16815,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.97068064785282,6.878766470299012,6,-2,-41.36338237303493,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,16.27050174024188,0,0,1,1,0,.8767687059075517,7.136939843510167,57.24,41.16,55.69,45.86,8.333333333333334,1,1,0,0,0,5,4,1,341,1293117.00002723,1040588.466986982,265503.4242382569,0,3197.571543224944 -7505,9270,16815,16814,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.116107547439018,7.99755602369161,6,2,129.6046632141525,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.915277285993609,8.428898904576563,55.69,45.86,57.24,41.16,8.333333333333334,1,1,0,0,0,5,4,1,341,1293117.00002723,1040588.466986982,265503.4242382569,0,3197.571543224944 -7506,9271,16816,16817,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.797818340083647,7.692620893361669,7,-1,-78.91390368576798,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.620774775453362,54.37,54.8,43.59,38.38,8.333333333333334,1,1,0,0,0,6,3,0,1167.5,987978.9325049229,537068.0851631821,403849.8996444778,0,2350.682418799551 -7506,9271,16817,16816,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,48,1,-46.09655606146234,0,3,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,0,0,43.59,38.38,54.37,54.8,5,1,1,0,0,0,6,3,0,1167.5,987978.9325049229,537068.0851631821,403849.8996444778,0,2350.682418799551 -7507,9272,16818,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-916.5258921518704,0,3,3,2019,22,9,0,20,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,30.23,25.54,-9,-9,1.666666666666667,1,1,1,0,12,6,1,0,491,-143645.6072322916,0,0,0,746.6162361513367 -7508,9273,16819,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.59019717293975,7.775676097805105,0,0,0,-969.274092254529,0,3,3,2019,10,2,45,42,1,2,0,6.711698221104707,6.711698221104707,0,0,0,0,14.5,1,1,0,0,0,43.46,51.61,-9,-9,6.666666666666667,1,1,0,0,9,12,3,0,1095,326777.7602605054,105330.8125120328,158287.6948761899,89108.64198466498,1429.023943288706 -7509,9274,16820,16822,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,9.014824147244845,9.327649151702037,0,22,-2,-118.6883365188363,0,3,2,2019,11,0,40,40,1,0,0,25.77603435504921,25.77603435504921,0,0,0,0,0,0,0,0,7.742342132509328,0,54.2,57.49,42.18,53.85,8.333333333333334,1,1,0,0,8,7,5,1,492.5,3624568.310565592,2247836.432021544,1408738.334419344,190713.7008652368,5408.218893662004 -7509,9274,16821,-9,16820,16822,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-948.134562037117,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,492.5,3624568.310565592,2247836.432021544,1408738.334419344,190713.7008652368,5408.218893662004 -7509,9274,16822,16820,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.248718888649055,9.032387765509915,0,20,2,7.236129546199747,0,3,2,2019,19,7,40,40,1,7,0,26.00062594445028,26.00062594445028,0,0,0,0,0,0,0,0,0,0,42.18,53.85,54.2,57.49,1.666666666666667,1,1,0,0,8,7,5,1,492.5,3624568.310565592,2247836.432021544,1408738.334419344,190713.7008652368,5408.218893662004 -7509,9274,16823,-9,16820,16822,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1011.181483694732,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,492.5,3624568.310565592,2247836.432021544,1408738.334419344,190713.7008652368,5408.218893662004 -7510,9275,16824,16825,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.001740884086017,7.82617409627613,0,11,2,76.14313618534983,0,-9,-9,2019,8,0,38,38,1,0,0,7.710171583841856,7.710171583841856,0,0,0,0,0,0,0,0,2.563958250392109,0,54.96,53.17,52.99,51.28,8.333333333333334,1,1,0,0,12,4,5,1,891.5,592549.5707669361,35618.24581538737,426170.5970077657,214299.9446148922,3341.734010726574 -7510,9275,16825,16824,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.451326576874772,8.581775565904488,0,11,-2,85.61726302368993,0,-9,2,2019,11,0,48,40,1,0,0,9.117003048584053,9.117003048584053,0,0,0,0,0,0,0,0,0,0,52.99,51.28,54.96,53.17,8.333333333333334,1,1,0,0,10,4,5,1,891.5,592549.5707669361,35618.24581538737,426170.5970077657,214299.9446148922,3341.734010726574 -7511,9276,16826,16827,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,6.360402308649094,6.85662780367198,9,-1,-25.8688891892069,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,6.69443468296378,27.98,47.27,57.16,56.15,8.333333333333334,1,1,1,0,1,5,4,1,785.5,1156201.096543014,676761.959656704,281658.8018094348,20077.56517016964,1619.593388657749 -7511,9276,16827,16826,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.604231960639077,8.312128000531827,7.166125474024462,9,1,-3.074071660767542,0,3,3,2019,6,0,37,37,1,0,0,5.930642019193598,5.930642019193598,0,0,0,0,71.5,1,1,0,2.272277345014203,7.262992802627961,57.16,56.15,27.98,47.27,8.333333333333334,1,1,0,0,12,5,4,1,785.5,1156201.096543014,676761.959656704,281658.8018094348,20077.56517016964,1619.593388657749 -7512,9277,16828,16831,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,8.472189811609393,8.262181367252202,0,9,2,-104.9886964034995,0,2,2,2019,23,11,43,41,1,11,0,11.71597493887881,11.71597493887881,0,0,0,0,0,1,1,0,0,0,27.73,64.27,49.91,56.93,3.333333333333333,1,1,0,0,9,13,5,1,786.4,401740.799363795,151645.1143782619,213350.2961339913,90468.01099416582,3910.389914334569 -7512,9277,16829,-9,16831,16828,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.273630807151,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,786.4,401740.799363795,151645.1143782619,213350.2961339913,90468.01099416582,3910.389914334569 -7512,9277,16830,-9,16831,16828,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.042148094406,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,786.4,401740.799363795,151645.1143782619,213350.2961339913,90468.01099416582,3910.389914334569 -7512,9277,16831,16828,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.752887906915422,8.81177312784887,0,9,-2,108.6850278677439,0,-9,-9,2019,6,0,38,32,1,0,0,23.03519895404248,23.03519895404248,0,0,0,0,0,1,1,0,0,0,49.91,56.93,27.73,64.27,8.333333333333334,1,1,0,0,9,13,5,1,786.4,401740.799363795,151645.1143782619,213350.2961339913,90468.01099416582,3910.389914334569 -7512,9277,16832,-9,16831,16828,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.778040453215,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,786.4,401740.799363795,151645.1143782619,213350.2961339913,90468.01099416582,3910.389914334569 -7513,9278,16833,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.838358636508652,5.640005225746218,0,0,-926.5923028722432,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.82755702912595,5.805737118358974,45.99,57.05,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1062,435743.3351337174,0,524937.4843121424,0,1990.815366629565 -7514,9279,16834,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1049.437084009221,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,3,1,1,0,154,73568.8711927347,0,0,0,924.7739365586774 -7515,9280,16835,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.630653473387524,7.332147677382137,0,0,-1169.995925577216,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.770612777950049,7.402901166710374,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,210,605855.892108827,141412.9783468815,234556.3477910384,0,1189.964050244514 -7516,9281,16836,-9,16837,16839,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.476442208746,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1284.25,132117.4895213876,0,333042.7350016069,132921.0310368242,4271.61277325561 -7516,9281,16837,16839,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,8.252849666690885,8.706010205450537,0,7,-1,146.564189567792,0,-9,-9,2019,9,0,32,35,1,0,0,23.50962579300703,23.50962579300703,0,0,0,0,0,1,1,0,0,0,49.41,58.28,51.73,56.3,8.333333333333334,1,1,0,0,8,12,5,1,1284.25,132117.4895213876,0,333042.7350016069,132921.0310368242,4271.61277325561 -7516,9281,16838,-9,16837,16839,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.1321890459159,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1284.25,132117.4895213876,0,333042.7350016069,132921.0310368242,4271.61277325561 -7516,9281,16839,16837,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.724951163561375,8.435085938444043,0,7,1,-104.1937438749128,0,2,2,2019,7,0,50,47,1,0,0,11.90141537880676,11.90141537880676,0,0,0,0,0,1,1,0,0,0,51.73,56.3,49.41,58.28,8.333333333333334,1,1,0,0,8,12,5,1,1284.25,132117.4895213876,0,333042.7350016069,132921.0310368242,4271.61277325561 -7517,9282,16840,16841,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.344961500278201,7.444319460679839,7,0,-81.5728553141663,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,75.90192500304687,0,0,1,1,0,5.490290660370438,7.476852191949767,41.69,33.87,58.61,40.49,8.333333333333334,1,1,0,0,0,4,2,1,302.5,321338.1246200899,271591.2327991026,231922.5953340076,0,2702.581605235915 -7517,9282,16841,16840,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,0,-29.89871351993051,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,2.658948278987226,0,58.61,40.49,41.69,33.87,8.333333333333334,1,1,0,0,0,4,2,1,302.5,321338.1246200899,271591.2327991026,231922.5953340076,0,2702.581605235915 -7518,9283,16842,16845,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.851560463373236,9.007926520625494,0,13,0,75.39146199832172,0,2,2,2019,20,8,57,45,1,8,0,16.43509957034801,16.43509957034801,0,0,0,0,0,1,1,0,4.576027960774444,0,51.83,57.2,42,59.06,6.666666666666667,1,1,0,0,9,10,5,1,699,303918.0453097292,150175.6722957376,319649.1520378953,135923.262554648,3848.621751491862 -7518,9283,16843,-9,16845,16842,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.2002821227383,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,699,303918.0453097292,150175.6722957376,319649.1520378953,135923.262554648,3848.621751491862 -7518,9283,16844,-9,16845,16842,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.462921232993,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.9386747904605119,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,699,303918.0453097292,150175.6722957376,319649.1520378953,135923.262554648,3848.621751491862 -7518,9283,16845,16842,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,7.740725304200365,7.8903994837055,0,13,0,-29.40930264666498,0,1,1,2019,9,3,24,25,1,3,0,10.85602280012007,10.85602280012007,0,0,0,0,0,1,1,0,4.50634145694535,0,42,59.06,51.83,57.2,8.333333333333334,1,1,0,0,8,10,5,1,699,303918.0453097292,150175.6722957376,319649.1520378953,135923.262554648,3848.621751491862 -7519,9284,16846,-9,16847,16848,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.896798597262,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,3,1,1221.25,157511.2034801241,0,222548.9726539908,162070.5203654225,2166.093179536587 -7519,9284,16847,16848,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.381182745535523,7.257295334876778,0,14,-1,2.660610514636735,0,3,2,2019,13,2,33,30,1,2,0,7.687643681760917,7.687643681760917,0,0,0,0,7,1,1,0,0,0,50.11,40.31,33.85,41.13,8.333333333333334,2,3,0,0,7,7,3,1,1221.25,157511.2034801241,0,222548.9726539908,162070.5203654225,2166.093179536587 -7519,9284,16848,16847,16850,-9,1,1,38,0,2,0,2,2,-9,0,3,7.99449072823181,8.063241969044837,0,14,1,112.2718238529942,0,3,3,2019,23,9,48,48,1,9,0,7.188495323183197,7.188495323183197,0,0,0,0,7,1,1,0,0,0,33.85,41.13,50.11,40.31,5,2,3,0,0,9,7,3,1,1221.25,157511.2034801241,0,222548.9726539908,162070.5203654225,2166.093179536587 -7519,9284,16849,-9,16847,16848,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.5525261625376,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,3,1,1221.25,157511.2034801241,0,222548.9726539908,162070.5203654225,2166.093179536587 -7519,9285,16850,-9,-9,-9,1,0,85,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1057.398046604785,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,0,7,1,1,131,-102149.2964689168,0,0,0,885.5333094848264 -7520,9286,16851,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.519736729249,-9,-9,-9,2019,8,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,57.04,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,899,0,0,0,0,1539.485673232879 -7521,9287,16852,16853,-9,-9,1,0,22,0,0,1,1,0,0,0,3,0,8.405104111050809,7.941776235681018,4,0,-60.31075863623908,-9,-9,-9,2019,29,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,8.103673494831744,0,20.23,65.13,19.9,54.54,5,1,1,0,0,0,11,3,0,1122,9820.189630844925,39878.25253481982,0,0,2253.735873943341 -7521,9287,16853,16852,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,0,0,0,4,9,-41.46415211311004,0,-9,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,19.9,54.54,20.23,65.13,1.666666666666667,1,1,1,0,2,11,3,0,1122,9820.189630844925,39878.25253481982,0,0,2253.735873943341 -7522,9288,16854,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.603939000215797,6.572978533448702,0,0,-913.100035757234,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,1.8494766772537,6.519513642283164,48.59,47.76,-9,-9,3.333333333333333,1,1,0,0,10,9,2,1,488,930478.1209639745,90795.74857604734,734754.1816433897,61770.83185203343,1514.42009730112 -7523,9289,16855,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.346790959423299,5.116716639953848,0,0,-962.9187948471946,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.830288793801732,0,58.57,35.72,-9,-9,10,1,1,0,0,0,7,2,1,1220,352978.7865154001,10119.06337129174,360515.1125285749,0,896.8624353924733 -7524,9290,16856,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.282265861857484,8.181595280964629,6.485751597384535,0,0,-1027.847163113852,0,3,3,2019,28,12,30,38,1,12,0,13.68284811533704,13.68284811533704,0,0,0,0,0,1,1,0,6.910368547499649,0,15.66,68.27,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,218,-106782.8886611634,69219.54739161136,130487.31392929,78717.65814613254,2218.818054842802 -7524,9291,16857,-9,16856,-9,1,0,19,0,1,0,2,2,-9,0,3,7.887907458079654,7.958363683786417,0,0,0,-979.1381242862454,0,2,-9,2019,11,0,38,37,1,0,1,7.200798708366356,7.200798708366356,0,0,0,0,0,1,1,0,1.858170414534819,0,41.71,49.71,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,79,121196.9705834268,0,0,0,973.8410197843662 -7525,9292,16858,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,7.84531683960359,7.804506508718757,0,0,0,-968.5916737450727,-9,2,2,2019,12,1,42,0,1,1,0,5.847356765749123,5.847356765749123,0,0,0,0,0,0,0,0,0,0,38.85,37.93,-9,-9,6.666666666666667,1,1,0,0,8,6,3,0,625,109513.5262815017,-34774.91226044986,0,0,837.3372711124011 -7526,9293,16859,16860,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.273193077418647,9.401561922509128,0,32,1,-20.79404199372681,0,3,3,2019,9,0,57,52,1,0,0,21.49253559368574,21.49253559368574,0,0,0,0,2,0,0,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,485,748901.200819958,594855.4632680976,205996.2923002674,0,3898.342254953321 -7526,9293,16860,16859,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.250912477778075,7.196116445876071,0,32,-1,-179.8981721161674,0,2,2,2019,2,0,25,14,1,0,0,8.37388559025319,8.37388559025319,0,0,0,0,2,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,7,12,5,1,485,748901.200819958,594855.4632680976,205996.2923002674,0,3898.342254953321 -7526,9294,16861,-9,16860,16859,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1045.245699358879,1,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,644,110087.3738806526,0,0,0,0 -7526,9295,16862,-9,16860,16859,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-990.0797860518912,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,3.794203376888483,0,0,0,0,.0538390055838613,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,184,235615.8937424666,0,0,0,-376.6110098579553 -7527,9296,16863,16864,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,0,0,52,-2,85.48646125992805,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.02152729903453,0,54.68,34.52,52.69,45.88,6.666666666666667,1,1,0,0,0,9,5,1,799,2177574.915827986,1136121.612153651,644917.6379584105,0,4893.587585085172 -7527,9296,16864,16863,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.973754976053861,8.893402600949596,52,2,-89.52654379292028,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.044605424554245,52.69,45.88,54.68,34.52,8.333333333333334,1,1,0,0,0,9,5,1,799,2177574.915827986,1136121.612153651,644917.6379584105,0,4893.587585085172 -7528,9297,16865,16867,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.527850662797482,8.712734417784723,0,8,-5,60.42434199183129,0,-9,-9,2019,6,0,33,36,1,0,0,24.18611671028892,24.18611671028892,0,0,0,.4653530401267272,0,1,1,0,5.833373327451432,0,57.16,56.15,41.47,56.81,8.333333333333334,1,1,0,0,9,5,4,1,531.6666666666666,203945.9381858764,72176.34709133468,231570.6613963163,0,2652.285473766337 -7528,9297,16866,-9,16867,16865,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-882.9778677033207,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,4,1,531.6666666666666,203945.9381858764,72176.34709133468,231570.6613963163,0,2652.285473766337 -7528,9297,16867,16865,-9,-9,1,0,55,0,1,0,1,1,-9,0,4,6.581289525310087,6.876566631833584,0,15,5,-16.87674582989362,0,2,2,2019,16,5,11,8,1,5,0,7.085182224890242,7.085182224890242,0,0,0,0,0,1,1,0,.351581393810195,0,41.47,56.81,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,531.6666666666666,203945.9381858764,72176.34709133468,231570.6613963163,0,2652.285473766337 -7529,9298,16868,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.836085445557708,5.921349097266208,0,0,-1111.793285948997,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,11.2778968977581,0,0,1,1,0,0,5.543501025511192,61.32,37.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,492,18444.40388413476,52502.43305552699,0,0,1188.791831274278 -7530,9299,16869,16870,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,9.290609954855071,8.981081941238019,0,6,-2,-96.40123866370473,0,1,1,2019,6,0,35,37,1,0,0,32.93390080672471,32.93390080672471,0,0,0,0,0,1,1,0,4.081869521633831,0,51.83,57.2,48.87,58.55,6.666666666666667,1,1,0,0,12,9,5,1,710,203338.9985873726,-21204.17348542763,384713.192722489,335501.6444202692,4862.958072221353 -7530,9299,16870,16869,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.251694298051785,8.148790958294789,0,6,2,50.74739367369703,0,-9,-9,2019,8,0,24,29,1,0,0,15.82117544360852,15.82117544360852,0,0,0,0,0,1,1,0,4.598489769821671,0,48.87,58.55,51.83,57.2,6.666666666666667,2,3,0,0,12,9,5,1,710,203338.9985873726,-21204.17348542763,384713.192722489,335501.6444202692,4862.958072221353 -7530,9299,16871,-9,16870,16869,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.7172280059873,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,5,1,710,203338.9985873726,-21204.17348542763,384713.192722489,335501.6444202692,4862.958072221353 -7531,9300,16872,16873,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.256029838575637,8.222194083036641,0,10,0,-101.0879210632585,0,2,1,2019,12,1,40,45,1,1,0,11.55069856763774,11.55069856763774,0,0,0,0,0,1,1,0,0,0,38.54,54.12,44.39,39.12,5,1,1,0,0,11,1,3,0,1222,260212.8480759833,92063.38963992272,298885.812657816,64397.34028009824,2803.166444692837 -7531,9300,16873,16872,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,10,0,-19.94192876403663,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.344232884742929,0,44.39,39.12,38.54,54.12,5,1,1,1,0,0,1,3,0,1222,260212.8480759833,92063.38963992272,298885.812657816,64397.34028009824,2803.166444692837 -7531,9300,16874,-9,16873,16872,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-976.7389162898214,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,1222,260212.8480759833,92063.38963992272,298885.812657816,64397.34028009824,2803.166444692837 -7531,9301,16875,-9,16873,16872,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1005.534495301516,0,3,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,249,0,0,0,0,-171.0726389200165 -7532,9302,16876,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.822368652944697,7.623501261609093,0,0,-878.7965112831323,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.495908337197374,8.537364001994288,27.97948150691049,0,1,1,0,5.664783629471044,7.51539629947512,69.48,20.95,-9,-9,10,1,1,0,0,0,4,3,1,855,795961.6749024752,641341.7562770495,149289.5293934131,0,2311.431601576517 -7532,9303,16877,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-972.5945619654689,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.49,41.8,-9,-9,6.666666666666667,1,1,1,0,0,4,1,1,552,132587.7194134323,0,0,0,1100.465633216149 -7533,9304,16878,16881,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.453664141148326,7.494692087644514,0,21,-4,141.0916256922586,0,2,3,2019,6,0,20,20,1,0,0,9.600200860665492,9.600200860665492,0,0,0,0,0,0,0,0,3.338869060589341,0,54.2,57.49,53.8,45.89,8.333333333333334,1,1,0,0,9,5,4,1,833.6,625098.4673147358,358855.3729791651,263197.8124938477,60080.77864950786,4324.83326347591 -7533,9304,16879,-9,16878,16881,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.654112806218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,833.6,625098.4673147358,358855.3729791651,263197.8124938477,60080.77864950786,4324.83326347591 -7533,9304,16880,-9,16878,16881,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.331158224381,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,833.6,625098.4673147358,358855.3729791651,263197.8124938477,60080.77864950786,4324.83326347591 -7533,9304,16881,16878,-9,-9,1,1,45,0,3,0,2,2,-9,0,2,9.256806948726775,9.208524770038984,0,21,4,-82.36558374005631,0,2,3,2019,8,0,42,42,1,0,0,31.02343472663679,31.02343472663679,0,0,0,0,0,0,0,0,5.071862395982511,0,53.8,45.89,54.2,57.49,8.333333333333334,1,1,0,0,10,5,4,1,833.6,625098.4673147358,358855.3729791651,263197.8124938477,60080.77864950786,4324.83326347591 -7533,9304,16882,-9,16878,16881,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.8805840267592,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,833.6,625098.4673147358,358855.3729791651,263197.8124938477,60080.77864950786,4324.83326347591 -7534,9305,16883,16884,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.871549945757457,7.968704791685118,0,6,0,116.9993750724112,-9,2,2,2019,11,0,40,0,1,2,0,6.492334916247138,6.492334916247138,0,0,0,0,0,1,1,0,0,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,1045.5,295299.6346924881,5330.647799656213,217521.4323858725,112185.4323732272,1444.989709597649 -7534,9305,16884,16883,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,6,0,-89.59239687742401,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,5,1,1,1,0,8,13,3,1,1045.5,295299.6346924881,5330.647799656213,217521.4323858725,112185.4323732272,1444.989709597649 -7535,9306,16885,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,7.66526069649923,8.399160563100606,7.253482197755354,0,0,-1011.949518790929,0,3,3,2019,11,1,24,32,1,1,0,10.7053880769817,10.7053880769817,0,0,0,0,0,1,1,0,6.553623623588673,6.936580032475432,47.52,58.09,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,497,3010.040202990407,258589.8967218813,0,0,2717.88711409854 -7536,9307,16886,16887,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.588999334004018,8.965669780603358,3.025936790530863,32,-4,41.67220384472547,0,2,3,2019,8,0,50,40,1,0,0,14.01521880230458,14.01521880230458,0,0,0,0,0,0,0,0,0,2.8897203413539,57.16,56.15,49.97,56.66,10,1,1,0,0,9,2,5,0,931.5,787816.7785885639,440841.3672229918,161478.8357688702,0,3836.4643795172 -7536,9307,16887,16886,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.104767652298298,8.381396485441003,0,32,4,-36.13733674823607,0,3,3,2019,8,0,37,37,1,0,0,10.57172759140705,10.57172759140705,0,0,0,0,0,0,0,0,7.427336465558933,0,49.97,56.66,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,0,931.5,787816.7785885639,440841.3672229918,161478.8357688702,0,3836.4643795172 -7537,9308,16888,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.903571872428616,9.057638563366469,0,0,0,-1040.181653717576,0,2,2,2019,7,0,39,40,1,0,0,22.90711812277025,22.90711812277025,0,0,0,0,0,0,0,0,6.775882560724693,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,776,209458.0196036695,425337.6095562749,198284.496940164,56843.16637184417,3378.879013191833 -7538,9309,16889,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,7.367357581520756,7.28386746248087,0,0,0,-999.9536683622564,0,3,3,2019,13,3,28,16,1,3,0,6.079007117588545,6.079007117588545,0,0,0,0,0,1,1,0,0,0,24.55,61.63,-9,-9,6.666666666666667,1,1,0,0,11,13,3,0,312,213215.4096524847,0,150920.4636605814,112427.6765228814,1563.304603775031 -7538,9310,16890,-9,16889,-9,1,1,19,0,0,0,2,2,1,0,3,7.024843312224105,7.198404391837098,0,0,0,-951.2447083449387,-9,3,-9,2019,17,5,25,0,1,5,1,6.898168485335898,6.898168485335898,0,0,0,0,0,1,1,0,0,0,34.12,47.88,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,372,-142336.3244608781,59263.88899666656,0,0,528.158758439048 -7539,9311,16891,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.462111963920465,7.271708901742572,0,0,-1006.819259537661,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.365362307147696,7.514675709629404,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,495,366573.7140335547,127007.3034200104,36951.08521994702,0,1915.643265813436 -7540,9312,16892,16893,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,9.08138063080478,8.862470755636538,0,8,-4,34.4659681808618,0,-9,-9,2019,10,0,50,50,1,1,0,17.32512687815912,17.32512687815912,0,0,0,0,0,1,1,0,0,0,50,57,47.01,58,7,1,1,0,0,1,9,4,1,584.25,267165.1190931501,171826.9792796314,287513.9717369815,171149.116145081,4463.319857938297 -7540,9312,16893,16892,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.255738864716856,6.909901909294564,0,11,4,-75.10724479727715,0,2,2,2019,9,0,16,8,1,0,0,7.663083379896668,7.663083379896668,0,0,0,0,0,1,1,0,6.93352939554107,0,47.01,58,50,57,8.333333333333334,1,1,0,0,8,9,4,1,584.25,267165.1190931501,171826.9792796314,287513.9717369815,171149.116145081,4463.319857938297 -7540,9312,16894,-9,16893,16892,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.963659295191,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,584.25,267165.1190931501,171826.9792796314,287513.9717369815,171149.116145081,4463.319857938297 -7540,9312,16895,-9,16893,16892,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.572182885604,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,584.25,267165.1190931501,171826.9792796314,287513.9717369815,171149.116145081,4463.319857938297 -7541,9313,16896,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.959584844642269,9.077253452257839,0,0,0,-1015.07964444292,0,2,2,2019,10,0,19,19,1,0,0,54.19880748668447,54.19880748668447,0,0,0,0,0,0,0,0,3.04497563022893,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,681,509541.2835056972,248049.8727429535,229167.8437206746,114959.8619494766,3210.125137095025 -7542,9314,16897,16900,-9,-9,1,0,29,0,2,0,3,3,-9,1,4,0,0,0,8,-5,0,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,52.99,53.95,7,1,1,0,0,0,9,1,0,357.75,27667.25480850566,-8464.541724234354,0,0,1583.427427584991 -7542,9314,16898,-9,16897,16900,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.128087204995,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,357.75,27667.25480850566,-8464.541724234354,0,0,1583.427427584991 -7542,9314,16899,-9,16897,16900,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.885228667093,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,357.75,27667.25480850566,-8464.541724234354,0,0,1583.427427584991 -7542,9314,16900,16897,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,0,0,0,8,5,0,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.99,53.95,47,57,5,1,1,1,1,2,9,1,0,357.75,27667.25480850566,-8464.541724234354,0,0,1583.427427584991 -7543,9315,16901,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.695636111219216,7.170610339573892,0,0,-967.7176313225929,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,.7220714717518166,6.772886338681967,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,657,882963.2813488496,226224.9932575516,601016.6457400592,0,831.9798178318808 -7544,9316,16902,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1120.896772075482,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,5.642142415907211,0,1,1,0,0,0,59.06,48.59,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,510,-7643.179079130592,0,0,0,1436.176824678999 -7545,9317,16903,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,3.964202773529546,4.050585472403702,0,0,-1045.332424063374,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,22.42988906061522,0,0,1,1,0,2.348612884229317,4.128970737798888,53,44,-9,-9,8,1,1,0,0,0,11,2,1,1164,-25528.8409005291,-83990.32175517811,0,0,757.9129993905804 -7546,9318,16904,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.620840058728574,7.420473730904873,0,0,-1037.888710863021,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.894464194772361,7.699646022130207,60.12,54.8,-9,-9,10,1,1,0,0,4,4,3,1,798,733111.930850588,388376.454236265,161065.5419956007,0,2030.958074224616 -7547,9319,16905,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,7.045373645384447,7.049156796774469,0,0,-1033.486106685275,0,2,2,2019,30,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,6.917763078799433,28.3,33.51,-9,-9,1.666666666666667,1,1,0,1,2,10,2,0,163,439763.2593821446,337273.2373596809,61002.87522243863,0,283.6320301372172 -7548,9320,16906,16908,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.405573702186443,7.185944071525634,0,8,4,2.157697641324683,0,-9,-9,2019,15,2,24,24,1,2,0,7.738244534138064,7.738244534138064,0,0,0,0,0,0,0,0,0,0,31.25,53.29,50.58,45.88,5,1,1,0,0,11,5,4,1,824.75,160644.2878125026,-19951.50901910637,157440.2628855537,83111.00787595309,2716.597072468029 -7548,9320,16907,-9,16906,16908,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7828039976607,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,824.75,160644.2878125026,-19951.50901910637,157440.2628855537,83111.00787595309,2716.597072468029 -7548,9320,16908,16906,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.569082844715494,8.258327559863073,0,8,-4,1.551783040337233,0,-9,-9,2019,6,0,38,38,1,0,0,14.18993227777793,14.18993227777793,0,0,0,0,0,0,0,0,0,0,50.58,45.88,31.25,53.29,3.333333333333333,1,1,0,0,9,5,4,1,824.75,160644.2878125026,-19951.50901910637,157440.2628855537,83111.00787595309,2716.597072468029 -7548,9320,16909,-9,16906,16908,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-873.3041910147589,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,824.75,160644.2878125026,-19951.50901910637,157440.2628855537,83111.00787595309,2716.597072468029 -7549,9321,16910,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.376759634083995,6.048760875973923,0,0,-901.3181555936235,0,3,-9,2019,14,3,0,0,4,3,0,0,0,1,0,15.12846428879055,0,0,1,1,0,0,6.418722210320856,47.72,25.58,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,283,79683.61304910629,110656.0364891493,0,0,1667.643001341801 -7550,9322,16911,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.9143220325867,0,3,2,2019,17,6,0,0,4,6,0,0,0,1,0,14.42059938100305,0,0,1,1,0,5.813026227148923,0,43.4,33.21,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,76,490049.7902387783,0,558801.4830159245,0,188.5607817718179 -7551,9323,16912,16915,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,7.091280993545364,7.263112406233209,0,14,-5,-84.86844774222678,0,3,3,2019,10,0,16,16,1,0,0,8.994502836848982,8.994502836848982,0,0,0,0,0,1,1,0,0,0,48.18,61.8,42.17,56.08,8.333333333333334,1,1,0,0,10,6,3,1,901,458318.4804870345,350595.0584679553,0,0,2013.944465190473 -7551,9323,16913,-9,16912,16915,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.777626690614,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,901,458318.4804870345,350595.0584679553,0,0,2013.944465190473 -7551,9323,16914,-9,16912,16915,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.110341642452,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,901,458318.4804870345,350595.0584679553,0,0,2013.944465190473 -7551,9323,16915,16912,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.040789312897365,7.658044528386487,0,9,5,-27.5448092653451,0,-9,-9,2019,11,0,42,48,1,0,0,7.524139445728126,7.524139445728126,0,0,0,0,0,1,1,0,0,0,42.17,56.08,48.18,61.8,6.666666666666667,1,1,0,0,11,6,3,1,901,458318.4804870345,350595.0584679553,0,0,2013.944465190473 -7552,9324,16916,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,7.5469355295197,7.661892587805264,0,0,-958.6212106586925,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,6.155601251879947,7.333269318952857,57.39,32.64,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,966,497474.2370747601,-29152.61821633511,364588.6958286059,0,1587.290937723901 -7553,9325,16917,16918,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.136834831428891,8.459981557839761,0,3,-1,66.74035989024971,0,2,2,2019,22,11,38,46,1,11,0,11.25312984289662,11.25312984289662,0,0,0,0,0,0,0,0,0,0,11.88,60.86,57.16,56.15,5,1,1,0,0,7,12,5,1,1799,130986.6688584613,24678.73270814915,208032.0334140091,100148.2696394852,2967.181311479965 -7553,9325,16918,16917,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.199406718095329,7.999428105426911,0,3,1,21.27767846221182,0,-9,-9,2019,6,0,42,40,1,0,0,10.29837636442137,10.29837636442137,0,0,0,0,0,0,0,0,0,0,57.16,56.15,11.88,60.86,10,1,1,0,0,3,12,5,1,1799,130986.6688584613,24678.73270814915,208032.0334140091,100148.2696394852,2967.181311479965 -7554,9326,16919,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.033693224860001,7.018012798869105,0,0,-1018.431679670548,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.052913173392103,43.59,38.38,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,784,398428.0170659334,262915.3879775279,84196.6181805629,0,377.7869218368385 -7555,9327,16920,16921,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.854550392830626,6.770140331378371,0,37,3,-.3752471397523474,0,3,3,2019,9,0,44,44,1,0,0,2.114316495534444,2.114316495534444,0,0,0,0,0,0,0,0,0,0,49.59,58.37,38.34,62.12,3.333333333333333,1,1,0,1,11,12,2,1,568,190154.5874068693,144259.1423614216,199293.2933277665,0,-1394.058469291974 -7555,9327,16921,16920,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,37,-3,-71.79575523937621,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,38.34,62.12,49.59,58.37,3.333333333333333,1,1,1,1,11,12,2,1,568,190154.5874068693,144259.1423614216,199293.2933277665,0,-1394.058469291974 -7556,9328,16922,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.102187597086,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,3,4,0,0,0,7,1,0,274,-754.1571753946569,0,0,0,0 -7557,9329,16923,16924,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.572235775081131,8.582778478312692,0,24,0,-10.56523097469227,0,2,2,2019,9,0,37,42,1,1,0,14.51792996689378,14.51792996689378,0,0,0,0,0,1,1,0,3.203563910073888,0,52,55,54.2,57.49,7,1,1,0,0,1,13,4,1,256.5,98617.89694542649,89458.51975283783,0,0,2766.958077092667 -7557,9329,16924,16923,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.396580930793654,7.635403421642542,0,24,0,15.92384167933104,0,2,2,2019,6,0,25,25,1,0,0,7.536363707739437,7.536363707739437,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52,55,10,1,1,0,0,8,13,4,1,256.5,98617.89694542649,89458.51975283783,0,0,2766.958077092667 -7558,9330,16925,-9,-9,-9,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1046.687236787654,-9,2,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,845,16261.58431499787,0,0,0,0 -7559,9331,16926,16927,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,7,-1,0,0,3,-9,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,62.89,52.58,36.63,3.333333333333333,1,1,0,0,0,7,1,0,255.5,539931.5205509047,31657.24785144826,471349.8124806284,0,1512.336834790153 -7559,9331,16927,16926,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,7,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.58,36.63,45.26,62.89,6.666666666666667,1,1,0,0,0,7,1,0,255.5,539931.5205509047,31657.24785144826,471349.8124806284,0,1512.336834790153 -7560,9332,16928,16929,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.362190961027805,8.37463207101403,0,1,-3,103.8654551793271,-9,-9,-9,2019,9,0,39,0,1,1,0,13.1092115376837,13.1092115376837,0,0,0,0,0,0,0,0,0,0,52,55,20.94,54.76,8,1,1,0,0,1,7,5,0,247.5,579654.4065260648,115749.6810582107,652463.1963382033,73877.13373221169,2762.809983928923 -7560,9332,16929,16928,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,8.385459737738168,8.305394071006774,0,1,3,-86.22445701658862,-9,3,3,2019,18,7,54,0,1,7,0,9.060072537950452,9.060072537950452,0,0,0,0,0,0,0,0,0,0,20.94,54.76,52,55,10,1,1,0,0,8,7,5,0,247.5,579654.4065260648,115749.6810582107,652463.1963382033,73877.13373221169,2762.809983928923 -7561,9333,16930,16931,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.40560637950464,8.18965271965503,0,5,0,2.424122991489423,0,2,1,2019,4,0,39,38,1,0,0,14.97554503607996,14.97554503607996,0,0,0,0,0,0,0,0,0,0,60.12,54.8,40.97,60.02,8.333333333333334,1,1,0,0,7,13,5,1,551,225619.1801942126,63731.73847868352,384397.756321935,218544.1094551039,3504.113471558836 -7561,9333,16931,16930,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.352486005368387,8.55622486505799,0,5,0,63.7705462699301,0,-9,-9,2019,14,2,39,44,1,2,0,13.36265800595662,13.36265800595662,0,0,0,0,0,0,0,0,0,0,40.97,60.02,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,551,225619.1801942126,63731.73847868352,384397.756321935,218544.1094551039,3504.113471558836 -7562,9334,16932,16933,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.728760082693366,7.955733169618084,0,32,-7,35.84542315004119,0,3,3,2019,9,0,38,40,1,0,0,7.789607723929659,7.789607723929659,0,0,0,0,0,0,0,0,0,0,52.24,50.75,41.17,59.31,5,2,3,0,0,11,6,4,1,159,373818.0093162295,219893.7345734546,126120.7394894784,0,2666.703727407475 -7562,9334,16933,16932,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.748030935311789,7.639028523183474,0,32,7,19.46904319280276,0,3,3,2019,8,0,35,35,1,0,0,7.983293154809874,7.983293154809874,0,0,0,0,0,0,0,0,0,0,41.17,59.31,52.24,50.75,1.666666666666667,2,3,0,0,11,6,4,1,159,373818.0093162295,219893.7345734546,126120.7394894784,0,2666.703727407475 -7562,9335,16934,-9,16932,16933,1,0,29,0,0,0,1,1,-9,0,4,8.338267202559994,8.43370514719113,0,0,0,-971.987777046878,0,2,2,2019,12,0,37,37,1,0,1,13.31785992471772,13.31785992471772,0,0,0,0,0,0,0,0,0,0,50.05,55.41,-9,-9,8.333333333333334,2,3,0,0,5,6,4,1,82,13585.18558524548,100081.0484549265,0,0,2076.917325423939 -7563,9336,16935,16936,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.399618372681145,8.385055270639569,32,3,-78.22734769914977,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.204183973031794,8.274144114394485,55.09,55.87,50.27,38.12,1.666666666666667,1,1,0,0,8,9,4,1,414,3478430.811125617,1976210.275682149,416693.7813385518,0,3490.870810276516 -7563,9336,16936,16935,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.255950173254685,7.780139817208346,7.284568232758461,34,-3,94.41634676610117,0,2,2,2019,14,4,6,15,1,4,0,27.68180161514252,27.68180161514252,0,0,0,0,0,1,1,0,3.841183862961854,7.340721666732477,50.27,38.12,55.09,55.87,8.333333333333334,1,1,0,0,11,9,4,1,414,3478430.811125617,1976210.275682149,416693.7813385518,0,3490.870810276516 -7564,9337,16937,16940,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,0,0,0,18,-1,-42.97007261076999,0,1,1,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,51,56,6.666666666666667,4,2,0,0,7,7,2,1,634.5,701721.278752666,82956.41021794324,566493.8598551534,-1833.74236530308,427.3014868666184 -7564,9337,16938,-9,16937,16940,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.473132686061,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,2,1,634.5,701721.278752666,82956.41021794324,566493.8598551534,-1833.74236530308,427.3014868666184 -7564,9337,16939,-9,16937,16940,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.3927186411444,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,2,1,634.5,701721.278752666,82956.41021794324,566493.8598551534,-1833.74236530308,427.3014868666184 -7564,9337,16940,16937,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,6.382754442974116,6.429617885153801,0,7,1,-102.6491957594362,0,-9,-9,2019,10,0,16,31,1,1,0,4.984797848615111,4.984797848615111,0,0,0,1.262260877110961,0,1,1,0,0,0,51,56,41.06,62.04,7,1,1,0,0,1,7,2,1,634.5,701721.278752666,82956.41021794324,566493.8598551534,-1833.74236530308,427.3014868666184 -7565,9338,16941,16942,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.443441413700631,9.891777656450614,0,25,-3,-38.64126737114761,0,2,1,2019,9,0,40,75,1,1,0,43.89916121689441,43.89916121689441,0,0,0,0,0,0,0,0,4.721252600664188,0,53,55,57.06,57.76,8,1,1,0,0,1,7,5,1,510.3333333333333,2719373.776479477,798699.4925995056,668771.4935913598,0,5121.168177835058 -7565,9338,16942,16941,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,0,0,0,25,3,69.83222020541061,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.140036215012486,0,57.06,57.76,53,55,10,1,1,0,0,6,7,5,1,510.3333333333333,2719373.776479477,798699.4925995056,668771.4935913598,0,5121.168177835058 -7565,9338,16943,-9,16942,16941,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.5838340497841,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,510.3333333333333,2719373.776479477,798699.4925995056,668771.4935913598,0,5121.168177835058 -7566,9339,16944,16945,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,9,-3,84.85085766661111,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.65,43.8,59.54,30.92,8.333333333333334,2,3,0,0,11,8,4,1,549.5,619846.3794758834,405427.2701995332,192069.6677878469,0,1924.13384891363 -7566,9339,16945,16944,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.813586221123977,8.825337667371349,0,9,3,94.13298981398256,0,3,3,2019,7,0,40,37,1,0,0,17.59344588374914,17.59344588374914,0,0,0,0,0,0,0,0,6.082717229896198,0,59.54,30.92,46.65,43.8,6.666666666666667,2,3,0,0,9,8,4,1,549.5,619846.3794758834,405427.2701995332,192069.6677878469,0,1924.13384891363 -7567,9340,16946,16947,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.598756421773361,8.480660158902657,0,7,0,-229.4730833976527,0,3,3,2019,15,2,30,30,1,2,0,23.19992594857656,23.19992594857656,0,0,0,0,14.5,1,1,0,1.012781316526944,0,46.63,59.72,48.11,39.3,8.333333333333334,1,1,0,0,8,12,4,1,619.6666666666666,570575.6666532216,561925.1710105834,91331.69110491626,78825.26726481756,2902.28910464689 -7567,9340,16947,16946,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.01128194992763,7.964875550408286,0,7,0,6.820095980482477,0,3,3,2019,16,4,30,30,1,4,0,15.1560209939541,15.1560209939541,0,0,0,0,0,1,1,0,0,0,48.11,39.3,46.63,59.72,6.666666666666667,1,1,0,0,8,12,4,1,619.6666666666666,570575.6666532216,561925.1710105834,91331.69110491626,78825.26726481756,2902.28910464689 -7567,9340,16948,-9,16946,16947,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-742.6121524639462,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,619.6666666666666,570575.6666532216,561925.1710105834,91331.69110491626,78825.26726481756,2902.28910464689 -7568,9341,16949,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.228351883806318,5.324523059500256,0,0,-1052.041677861681,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.308372888719965,4.967119884529944,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,4,2,1,907,27336.35998898503,168792.8140646436,105615.6797918607,64345.70647846574,-280.7543189496604 -7569,9342,16950,16951,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.692008224049819,7.882753252673971,49,-1,-10.05461944478696,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.597706359613217,8.031778693361455,52.99,38.05,57.16,56.15,6.666666666666667,1,1,0,0,0,8,4,1,573.5,2954766.40214839,1461495.974545484,1212238.147919826,0,3299.705155128325 -7569,9342,16951,16950,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.626108962350989,7.321820856514904,51,1,53.16653656234399,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.388272368069753,7.655987985246074,57.16,56.15,52.99,38.05,8.333333333333334,1,1,0,0,0,8,4,1,573.5,2954766.40214839,1461495.974545484,1212238.147919826,0,3299.705155128325 -7570,9343,16952,16953,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.285726262896009,6.998768556221896,58,3,-37.65619660306127,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.319066730425037,54.37,33.54,22.95,23.6,8.333333333333334,2,3,0,0,0,7,2,1,667,4073.110956089542,-42317.84669167257,0,0,1295.693679784097 -7570,9343,16953,16952,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,58,-3,57.4908634999198,0,3,3,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,23.6,54.37,33.54,8.333333333333334,2,3,0,0,0,7,2,1,667,4073.110956089542,-42317.84669167257,0,0,1295.693679784097 -7571,9344,16954,-9,16955,-9,1,0,38,0,2,0,2,2,-9,0,4,8.463834784562003,8.587757651647216,0,0,0,-1054.962412600807,0,3,-9,2019,11,0,37,37,1,2,0,14.63985717862394,14.63985717862394,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,7,1,1,0,0,1,8,3,1,271,41789.54300657864,62687.39639603486,0,0,2141.342446605644 -7571,9345,16955,-9,-9,-9,1,0,75,0,2,0,3,3,-9,0,3,0,0,0,0,0,-828.2738241536638,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,-9,-9,10,1,1,0,0,0,8,1,1,1017,0,0,0,0,751.3960846806791 -7571,9346,16956,-9,16955,-9,1,0,38,0,2,0,1,1,-9,0,5,8.226475577676618,7.86245239121073,0,0,0,-835.7563842479821,0,2,2,2019,8,0,37,37,1,0,0,9.963598501093006,9.963598501093006,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,9,8,3,1,1294,204159.0761149489,-37612.09104033886,50600.66876056582,25836.68092217269,1426.245578965448 -7571,9347,16957,-9,16956,-9,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1002.6240081914,-9,1,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,387,0,0,0,0,0 -7572,9348,16958,-9,16959,16960,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.7755201402603,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,525.75,468086.9422267412,60416.46912652011,408683.6424864376,0,3302.781556683325 -7572,9348,16959,16960,-9,-9,1,0,30,1,2,0,1,1,-9,0,4,7.739969456587565,7.863753325515958,0,6,-3,88.4186155494251,0,-9,-9,2019,12,2,22,21,1,2,0,10.6817577411273,10.6817577411273,0,0,0,0,0,1,1,0,0,0,39.5,58.86,49.63,54.22,8.333333333333334,1,1,0,0,9,7,4,1,525.75,468086.9422267412,60416.46912652011,408683.6424864376,0,3302.781556683325 -7572,9348,16960,16959,-9,-9,1,1,33,1,2,0,1,1,-9,0,3,8.373239963029206,8.403638443881702,0,6,3,221.0492310215795,0,-9,-9,2019,19,5,38,37,1,5,0,13.83751933092583,13.83751933092583,0,0,0,0,0,1,1,0,.5083888836312584,0,49.63,54.22,39.5,58.86,6.666666666666667,3,4,0,0,9,7,4,1,525.75,468086.9422267412,60416.46912652011,408683.6424864376,0,3302.781556683325 -7572,9348,16961,-9,16959,16960,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.40077216812,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,525.75,468086.9422267412,60416.46912652011,408683.6424864376,0,3302.781556683325 -7573,9349,16962,16963,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,0,0,0,26,-16,-139.4053522324257,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.862026935009702,0,58.05,54.52,57.73,54.53,10,1,1,0,0,7,6,3,1,666,1733763.342667929,916426.4327616314,309754.8214220564,0,3116.83654064361 -7573,9349,16963,16962,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.299734828038678,8.121261817699173,26,16,7.95318281812856,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.656714145492479,8.498003721651404,57.73,54.53,58.05,54.52,8.333333333333334,1,1,0,0,6,6,3,1,666,1733763.342667929,916426.4327616314,309754.8214220564,0,3116.83654064361 -7574,9350,16964,-9,16965,16966,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.098807717939,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,328.3333333333333,1487989.840346375,386538.7239261582,1308283.037757777,396152.8242925853,6825.782282090034 -7574,9350,16965,16966,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,16,-4,-36.73080647770266,0,1,1,2019,12,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,44.95,51.14,38.54,6.666666666666667,2,3,0,0,2,8,5,1,328.3333333333333,1487989.840346375,386538.7239261582,1308283.037757777,396152.8242925853,6825.782282090034 -7574,9350,16966,16965,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.689024431007809,10.00845904989527,0,10,4,-.5958555772417444,0,2,1,2019,12,0,40,40,1,0,0,46.49016286334201,46.49016286334201,0,0,0,0,0,0,0,0,0,0,51.14,38.54,40.53,44.95,6.666666666666667,2,3,0,0,12,8,5,1,328.3333333333333,1487989.840346375,386538.7239261582,1308283.037757777,396152.8242925853,6825.782282090034 -7575,9351,16967,16968,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.547980357880791,7.491709795256864,0,5,-8,-39.49808752508407,0,2,2,2019,23,11,25,28,1,11,0,8.59701332264979,8.59701332264979,0,0,0,0,2,0,0,0,3.430345924219074,0,34.27,50.58,40.48,45.26,6.666666666666667,1,1,0,0,10,6,3,1,420.5,-78206.86800603622,20356.3020733473,0,0,1117.459181815913 -7575,9351,16968,16967,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,7.002032967573312,7.048609143022717,5,8,81.89289718487271,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.688535365906419,7.140896858382012,40.48,45.26,34.27,50.58,5,2,3,0,0,11,6,3,1,420.5,-78206.86800603622,20356.3020733473,0,0,1117.459181815913 -7576,9352,16969,-9,16971,16970,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.7468795454633,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,5,1,386,755661.7541413429,115767.4025490769,673563.5785971517,235405.2094719539,5032.605408796987 -7576,9352,16970,16971,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.815620674198307,8.761453661497264,0,22,2,23.00180507457199,-9,2,1,2019,11,0,35,0,1,0,0,26.98513923451783,26.98513923451783,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,5,1,1,0,0,13,11,5,1,386,755661.7541413429,115767.4025490769,673563.5785971517,235405.2094719539,5032.605408796987 -7576,9352,16971,16970,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.912572841983731,8.19987502504372,0,24,-2,-140.6625025690322,0,2,2,2019,8,0,21,21,1,0,0,15.63895316617199,15.63895316617199,0,0,0,0,0,1,1,0,2.445367436762276,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,13,11,5,1,386,755661.7541413429,115767.4025490769,673563.5785971517,235405.2094719539,5032.605408796987 -7576,9353,16972,-9,16971,16970,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1040.806412011341,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,-9,-9,5,1,1,0,0,2,11,1,1,1369,-115991.9488418355,0,0,0,0 -7577,9354,16973,16974,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.346268569811789,8.30704962761375,0,9,-6,57.5402799615737,0,3,3,2019,21,9,37,38,1,9,0,11.23683524007506,11.23683524007506,0,0,0,0,0,1,1,0,0,0,43.09,61.58,51.24,58.84,8.333333333333334,1,1,0,0,8,5,5,1,831.5,207913.6203673231,158753.8303505431,141902.1728500882,102240.1629867834,3908.876404578211 -7577,9354,16974,16973,16975,-9,1,0,39,0,0,0,2,2,-9,0,4,8.851724361206868,8.842356490231046,0,9,6,161.6480444873575,0,3,2,2019,9,0,39,38,1,0,0,18.45224878271798,18.45224878271798,0,0,0,0,0,1,1,0,3.824750100225893,0,51.24,58.84,43.09,61.58,8.333333333333334,1,1,0,0,12,5,5,1,831.5,207913.6203673231,158753.8303505431,141902.1728500882,102240.1629867834,3908.876404578211 -7577,9355,16975,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.968889381632109,7.673133759320311,0,0,-1005.917122407036,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,7.89455207144324,0,0,1,1,0,0,8.195643039893524,51.42,37.38,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,918,672644.0263443236,196395.0574056047,225813.5238132476,0,2596.799397275611 -7578,9356,16976,-9,-9,-9,1,0,39,0,3,0,3,3,-9,0,2,7.255261482550863,7.532246912556582,4.977869858446081,0,0,-1011.424791207868,0,2,3,2019,13,1,35,0,1,1,0,4.473932114189394,4.473932114189394,0,0,0,1.794405782208537,0,1,1,0,4.947814956515813,0,33.72,38.62,-9,-9,5,1,1,0,0,1,5,2,0,1270.5,-218656.1654096607,0,0,0,2816.811514566662 -7578,9356,16977,-9,16976,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-959.553424331201,-9,3,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.59,59.06,-9,-9,1.666666666666667,1,1,0,1,0,5,2,0,1270.5,-218656.1654096607,0,0,0,2816.811514566662 -7579,9357,16978,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.546784849495573,7.395130872813843,0,0,-1031.100083327009,0,3,3,2019,29,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,1.470013590573195,7.399088546305141,35.37,42.04,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,527,692917.4715321909,118859.8692667878,333215.0584949641,0,1048.493592327206 -7580,9358,16979,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.044792264983027,7.903575106652243,0,0,0,-985.0780680913766,0,-9,-9,2019,23,8,31,32,1,8,0,12.84916587590869,12.84916587590869,0,0,0,0,0,0,0,0,0,0,18.38,52.92,-9,-9,0,4,2,0,1,10,2,4,0,424,387.9140090412111,49288.91441042785,108115.4272274441,27037.84530248507,1495.052233696294 -7581,9359,16980,16981,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,0,7.394643978185433,7.028223642026536,8,-2,-84.06264188805525,1,1,1,2019,22,10,0,40,2,10,0,0,0,0,0,0,0,0,1,1,0,7.432549111500459,0,28.45,53.56,54.2,57.49,3.333333333333333,2,3,0,0,8,9,4,0,830.5,130000.816635694,-79367.09247854297,0,0,2232.281700519231 -7581,9359,16981,16980,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.335567769050504,8.273536037463172,0,8,2,7.819123077672341,0,-9,-9,2019,12,0,35,40,1,0,0,14.77442138912758,14.77442138912758,0,0,0,0,0,1,1,0,3.697457155399723,0,54.2,57.49,28.45,53.56,6.666666666666667,1,1,0,0,9,9,4,0,830.5,130000.816635694,-79367.09247854297,0,0,2232.281700519231 -7582,9360,16982,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.682372445594155,6.628569673958643,0,0,-919.2511677119171,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.527497305686475,56.1,39.4,-9,-9,5,1,1,0,0,0,7,2,1,677,911691.7843139303,27438.76867446564,495477.0071636457,0,1159.489258702797 -7583,9361,16983,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.016616144371605,8.016740871447189,0,0,0,-1026.54518868277,0,2,2,2019,11,0,40,53,1,0,0,8.944424776141098,8.944424776141098,0,0,0,0,0,0,0,0,0,0,42.33,52.23,-9,-9,5,1,1,0,0,6,1,4,1,348,240175.0684794545,160168.3095474461,0,0,1410.021661168087 -7584,9362,16984,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.238223094323,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,2.815194574626425,0,0,1,1,0,0,0,34.53,29.4,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,2358,-107883.1478283756,0,0,0,1090.970714504832 -7585,9363,16985,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.675216999054236,3.398256321419353,0,0,-861.8489524539414,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.568817418584368,3.418609071702789,49.52,30.16,-9,-9,5,1,1,0,0,0,10,2,1,702,-35621.21439229802,-91042.97817084966,0,0,1013.684544263051 -7586,9364,16986,16987,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.051772182324921,8.525835057944088,7.629969437349505,28,-1,78.07275900938083,0,3,3,2019,6,0,38,40,1,0,0,9.664446559154504,9.664446559154504,0,0,0,0,0,1,1,0,7.442188583336071,7.712044356298178,61.28,48.88,50.11,51,8.333333333333334,1,1,0,0,12,10,4,1,1298.5,388570.6472639166,29775.45598938101,304578.5631947868,0,3413.745782224387 -7586,9364,16987,16986,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,6.628884658465974,6.386772605710155,0,28,1,35.57919087778382,0,2,3,2019,10,0,12,12,1,0,0,9.163560102378254,9.163560102378254,0,0,0,0,0,1,1,0,5.190846984458493,0,50.11,51,61.28,48.88,8.333333333333334,1,1,0,0,10,10,4,1,1298.5,388570.6472639166,29775.45598938101,304578.5631947868,0,3413.745782224387 -7587,9365,16988,16989,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,5.12359493348102,4.487841526226569,61,5,-51.00263898627595,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.521103417584618,4.696128436189961,56.78,49.38,58.08,27.53,6.666666666666667,1,1,0,0,0,10,2,0,174.5,310418.3123693759,0,324628.3359552081,0,2080.942608158628 -7587,9365,16989,16988,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,7,-5,155.6524929037321,0,-9,-9,2019,13,0,0,0,4,3,0,0,0,1,0,14.47354710116466,0,2,1,1,0,0,0,58.08,27.53,56.78,49.38,6.666666666666667,1,1,0,0,0,10,2,0,174.5,310418.3123693759,0,324628.3359552081,0,2080.942608158628 -7588,9366,16990,16991,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.992205930503611,8.020256524766186,37,1,1.79411661239901,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.96292174436789,8.399155739024328,60.44,46.58,51.77,58.57,8.333333333333334,1,1,0,0,6,7,4,1,434.5,3248311.045179348,1306304.786320574,701090.5219723469,0,4578.383439892667 -7588,9366,16991,16990,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.778270633182107,7.44852542111509,37,-1,80.01311628791208,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.153209081513985,7.798955923792196,51.77,58.57,60.44,46.58,8,1,1,0,0,9,7,4,1,434.5,3248311.045179348,1306304.786320574,701090.5219723469,0,4578.383439892667 -7589,9367,16992,16993,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.947802919194741,8.807774575971459,0,31,-3,-9.324754952127641,0,2,3,2019,17,5,38,38,1,5,0,23.27150815103921,23.27150815103921,0,0,0,0,0,0,0,0,5.438228605492013,0,42.15,56.54,21.6,50.09,8.333333333333334,1,1,0,0,12,13,5,1,839,2052160.03659318,941322.3468472739,414616.3421815828,0,4200.39247619193 -7589,9367,16993,16992,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.671008825714765,8.641419922712679,0,32,3,39.38911699921422,0,2,-9,2019,35,12,38,38,1,12,0,15.79164995946499,15.79164995946499,0,0,0,0,0,0,0,0,5.350378326214257,0,21.6,50.09,42.15,56.54,3.333333333333333,1,1,0,0,12,13,5,1,839,2052160.03659318,941322.3468472739,414616.3421815828,0,4200.39247619193 -7589,9368,16994,-9,16992,16993,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1014.055247995699,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,24.07,61.81,-9,-9,5,1,1,0,0,2,13,1,1,616,-53358.07139992314,0,0,0,-798.8576589890235 -7589,9369,16995,-9,16992,16993,1,1,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.690828926308,0,1,1,2019,7,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,0,1,13,1,1,180,0,0,0,0,-137.6485513513596 -7590,9370,16996,16997,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.437834353926203,7.54019514179056,0,2,2,72.83713538057066,-9,-9,-9,2019,19,7,23,0,1,7,0,10.07008239768171,10.07008239768171,0,0,0,0,0,0,0,0,4.080078217899451,0,14.49,67.91,31.04,58.94,6.666666666666667,1,1,0,0,1,9,4,0,442,-1574.415336547867,-27336.51404453975,0,0,2891.123886735044 -7590,9370,16997,16996,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.254387133920529,8.289549773300106,0,2,-2,-51.3566606750773,0,-9,-9,2019,14,4,50,47,1,4,0,7.309506868094516,7.309506868094516,0,0,0,3.777580745728235,0,0,0,0,.3030370869614692,0,31.04,58.94,14.49,67.91,5,1,1,0,0,5,9,4,0,442,-1574.415336547867,-27336.51404453975,0,0,2891.123886735044 -7590,9371,16998,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.014530134792343,8.158596086017385,0,0,0,-1070.990991030909,-9,-9,-9,2019,21,8,43,0,1,8,0,7.579448949854712,7.579448949854712,0,0,0,0,0,0,0,0,2.668103961599097,0,26.89,60.47,-9,-9,3.333333333333333,1,1,0,0,2,9,4,0,651,87363.63529242497,0,0,0,793.1002658349768 -7591,9372,16999,-9,17001,-9,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-845.2167516818656,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,9,2,1,267.75,493552.8343037175,154791.1909509183,271015.6836032733,123452.4911538563,3032.600786724858 -7591,9372,17000,-9,17001,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.458936164786,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,267.75,493552.8343037175,154791.1909509183,271015.6836032733,123452.4911538563,3032.600786724858 -7591,9372,17001,-9,-9,-9,1,0,41,0,3,0,1,1,-9,1,4,0,5.917310317486085,6.566660723533914,0,0,-1003.829457540544,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,6.924582107396738,0,56.33,51.02,-9,-9,0,1,1,0,0,0,9,2,1,267.75,493552.8343037175,154791.1909509183,271015.6836032733,123452.4911538563,3032.600786724858 -7591,9372,17002,-9,17001,-9,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-981.8539824581321,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,2,1,267.75,493552.8343037175,154791.1909509183,271015.6836032733,123452.4911538563,3032.600786724858 -7592,9373,17003,17004,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.37382828906162,6.443099545727844,7,0,-65.44601234293623,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.740361095893514,6.413982640082597,58.3,47.38,59.31,49.81,8.333333333333334,1,1,0,0,5,4,2,1,1413.5,234398.7945170562,254961.1507666056,137369.2458622002,0,1884.864351633426 -7592,9373,17004,17003,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.663432044016684,6.526048361033014,7,0,22.75901885434276,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.024680979302965,6.131016049257088,59.31,49.81,58.3,47.38,10,1,1,0,0,5,4,2,1,1413.5,234398.7945170562,254961.1507666056,137369.2458622002,0,1884.864351633426 -7593,9374,17005,17006,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,6.828581763817506,7.003595718373259,9,-2,-3.753537288564339,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.164218869069701,7.122391395116974,57.49,47.77,47.14,41.53,8.333333333333334,1,1,0,0,10,4,3,1,878.5,1119420.180330158,664248.3161160978,434463.2723352823,0,2601.547190585763 -7593,9374,17006,17005,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.534751980589111,7.629171209696774,9,2,44.41526655471308,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.89060813866755,7.489630898272427,47.14,41.53,57.49,47.77,8.333333333333334,1,1,0,0,3,4,3,1,878.5,1119420.180330158,664248.3161160978,434463.2723352823,0,2601.547190585763 -7594,9375,17007,-9,17008,17009,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.1452877362505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,232.5,172946.0411022006,79479.3400415924,283020.664660307,147773.8781791275,2517.000794525421 -7594,9375,17008,17009,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,8.298652718638854,8.221512470064425,0,1,-5,-13.03356864385953,-9,2,3,2019,6,0,38,0,1,0,0,15.06047653341279,15.06047653341279,0,0,0,0,2,1,1,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,1,11,3,0,232.5,172946.0411022006,79479.3400415924,283020.664660307,147773.8781791275,2517.000794525421 -7594,9375,17009,17008,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,0,0,0,1,5,-89.19225293802978,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,1,0,4,11,3,0,232.5,172946.0411022006,79479.3400415924,283020.664660307,147773.8781791275,2517.000794525421 -7594,9375,17010,-9,17008,17009,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.609091896418,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,232.5,172946.0411022006,79479.3400415924,283020.664660307,147773.8781791275,2517.000794525421 -7595,9376,17011,17012,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.670602766322097,7.792689362569575,46,-1,73.36139011060504,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.147325524756001,7.598948077302225,43.21,47.68,60.84,34.45,10,1,1,0,0,4,5,4,1,173.5,1562317.579034162,937713.0963135343,384847.5161964821,30247.52373851761,4760.796358473603 -7595,9376,17012,17011,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.756071630908789,8.02040661831731,46,1,122.6731114718176,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.740271325861833,7.907903575608445,60.84,34.45,43.21,47.68,8.333333333333334,1,1,0,0,7,5,4,1,173.5,1562317.579034162,937713.0963135343,384847.5161964821,30247.52373851761,4760.796358473603 -7596,9377,17013,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.485525629716481,5.901117753197605,0,0,-1091.919804249197,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,3.935019066786733,7.60939537735212,20.73352641412582,0,1,1,0,3.716443639408402,6.213929084862699,52,45,-9,-9,8,1,1,0,0,0,6,2,1,1666,272128.7377256966,147849.574501219,120309.7058940924,0,1562.73315128167 -7597,9378,17014,17015,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,7.291318657838944,7.349972337092602,0,9,1,6.011076149681142,0,3,3,2019,21,9,25,20,1,9,0,7.911828676187442,7.911828676187442,0,0,0,0,0,1,1,0,0,0,32.03,55.7,35.89,56.79,5,1,1,0,0,10,11,4,1,851.3333333333334,195720.8976566303,47389.28473114915,70450.18074254993,0,2053.997388854982 -7597,9378,17015,17014,-9,-9,1,1,53,0,1,0,3,3,-9,0,3,8.462790890720287,8.422385546460287,0,9,-1,23.99096059413828,0,2,2,2019,11,2,50,60,1,2,0,9.35050798256764,9.35050798256764,0,0,0,0,0,1,1,0,0,0,35.89,56.79,32.03,55.7,6.666666666666667,1,1,0,0,10,11,4,1,851.3333333333334,195720.8976566303,47389.28473114915,70450.18074254993,0,2053.997388854982 -7597,9378,17016,-9,17014,17015,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1063.181252111089,-9,3,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,851.3333333333334,195720.8976566303,47389.28473114915,70450.18074254993,0,2053.997388854982 -7598,9379,17017,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.385237598487139,5.230019712291555,0,0,-921.1329124234551,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.162493528406614,41.92,34.32,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,390,167567.5961142585,-28185.01917245307,69536.0602211826,0,611.5248070350107 -7599,9380,17018,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.760566964235828,6.068421339656805,0,0,-1047.614022831776,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.904892052902086,5.949293417262624,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,462,299256.5705572534,22331.75260171595,0,0,533.4071203576066 -7600,9381,17019,17022,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,5.861670416729488,5.931479063581413,0,11,1,-40.57392547317641,0,2,2,2019,7,0,5,4,1,0,0,7.088138751366475,7.088138751366475,0,0,0,0,0,1,1,0,0,0,54.1,59.11,43.95,53.15,8.333333333333334,1,1,0,0,8,10,4,1,349,-23809.41831585761,38429.04310688188,0,0,2158.98631180256 -7600,9381,17020,-9,17019,17022,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.7388767107694,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,349,-23809.41831585761,38429.04310688188,0,0,2158.98631180256 -7600,9381,17021,-9,17019,17022,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.8378644775717,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,349,-23809.41831585761,38429.04310688188,0,0,2158.98631180256 -7600,9381,17022,17019,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.703594899894727,8.743888904546916,0,11,-1,-69.37727934141104,0,2,2,2019,11,1,44,42,1,1,0,15.76357376087083,15.76357376087083,0,0,0,0,0,1,1,0,3.331218701836953,0,43.95,53.15,54.1,59.11,6.666666666666667,1,1,0,0,9,10,4,1,349,-23809.41831585761,38429.04310688188,0,0,2158.98631180256 -7601,9382,17023,17024,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,8.447767387318615,8.536527302409274,0,7,6,87.53638362259248,0,3,3,2019,8,2,37,40,1,2,0,18.47393788875287,18.47393788875287,0,0,0,0,0,0,0,0,0,0,55.1,42.64,52.3,46.15,8.333333333333334,1,1,0,0,8,13,5,1,1213.5,361415.0729684667,275624.1434191324,159388.3933916964,48447.04143069664,3844.998341249932 -7601,9382,17024,17023,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.630802623583143,8.020249011813618,0,7,-6,-30.2905998706869,0,3,3,2019,7,0,30,30,1,0,0,9.434749830756335,9.434749830756335,0,0,0,0,0,0,0,0,3.240441786070025,0,52.3,46.15,55.1,42.64,1.666666666666667,1,1,0,0,8,13,5,1,1213.5,361415.0729684667,275624.1434191324,159388.3933916964,48447.04143069664,3844.998341249932 -7601,9383,17025,-9,17024,17023,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-860.9207930718835,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,809,-7036.912581901236,0,0,0,588.3630642038852 -7602,9384,17026,17027,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.632824472406593,7.049768982247038,50,0,86.50981011789841,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,3.75867551062603,6.632752639476491,51.4,41.01,35.6,27.12,8.333333333333334,1,1,0,0,0,11,2,1,588.5,454576.3083820585,300624.1159147584,209126.551782251,0,3117.98404435278 -7602,9384,17027,17026,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.464353277663798,6.560550188383225,50,0,60.51502887156334,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.035524066711059,35.6,27.12,51.4,41.01,6.666666666666667,1,1,0,0,0,11,2,1,588.5,454576.3083820585,300624.1159147584,209126.551782251,0,3117.98404435278 -7603,9385,17028,17029,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.323091586630507,7.50021760987797,0,6,5,159.2987092510206,0,3,2,2019,8,0,40,40,1,0,0,3.802006324029211,3.802006324029211,0,0,0,0,7,0,0,0,0,0,58.87,37.89,48.69,45.7,6.666666666666667,1,1,0,0,8,2,5,1,3552.5,364574.521879295,185990.5914902971,164601.1056382158,74852.97500255967,3800.157402111263 -7603,9385,17029,17028,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.732870370112508,8.67416203658437,0,6,-5,234.2483979740584,0,-9,-9,2019,16,4,40,45,1,4,0,17.72952679941431,17.72952679941431,0,0,0,0,7,0,0,0,7.119869360730476,0,48.69,45.7,58.87,37.89,8.333333333333334,1,1,0,0,6,2,5,1,3552.5,364574.521879295,185990.5914902971,164601.1056382158,74852.97500255967,3800.157402111263 -7603,9386,17030,-9,17029,17028,1,1,26,0,0,0,2,2,-9,0,4,7.706128599289702,8.005322512735288,0,0,0,-1053.457668268494,0,1,2,2019,13,1,42,24,1,1,1,6.549414139506481,6.549414139506481,0,0,0,0,0,0,0,0,3.853944174228915,0,46.69,58.35,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,1086,-38940.79921756926,0,0,0,917.4768531496867 -7604,9387,17031,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.208592947606519,8.311458907692295,0,0,-1019.184188900561,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.755195875311058,8.139507710177263,56.86,50.75,-9,-9,10,1,1,0,0,3,8,4,1,266,1428916.162691767,617782.2080777182,389577.6392089743,0,2938.667256221341 -7605,9388,17032,17033,-9,-9,1,1,39,0,2,0,3,3,-9,0,3,7.419172365325999,7.289697973226093,0,3,-2,-82.59160008005536,0,2,2,2019,14,2,30,28,1,2,0,5.651668807617749,5.651668807617749,0,0,0,0,14.5,1,1,0,0,0,32.23,47.35,30.46,56.16,5,1,1,0,0,7,5,3,1,880,-1274.732929368309,-28642.95284300166,0,0,2229.789903839827 -7605,9388,17033,17032,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.897013579517316,8.012561301531631,0,3,2,-25.236970448161,0,2,2,2019,24,11,48,13,1,11,0,6.01804535544309,6.01804535544309,0,0,0,0,71.5,1,1,0,0,0,30.46,56.16,32.23,47.35,5,1,1,0,0,7,5,3,1,880,-1274.732929368309,-28642.95284300166,0,0,2229.789903839827 -7605,9388,17034,-9,17033,17032,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.336737848878,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,880,-1274.732929368309,-28642.95284300166,0,0,2229.789903839827 -7605,9388,17035,-9,17033,17032,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.649907758716,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,880,-1274.732929368309,-28642.95284300166,0,0,2229.789903839827 -7606,9389,17036,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.376578199005555,8.150350994816272,0,0,0,-1013.599945312308,0,2,2,2019,12,0,39,40,1,0,0,11.94283952924632,11.94283952924632,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,10,5,4,1,348,175082.4001881977,2432.990880860103,162355.7815125255,59803.74934894617,1564.819703747206 -7607,9390,17037,17038,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.479542852933921,8.391479676266211,0,5,1,-141.8030423857294,0,-9,-9,2019,12,2,35,42,1,2,0,15.7271429647799,15.7271429647799,0,0,0,0,0,1,1,0,0,0,50.03,52.62,54.1,59.11,6.666666666666667,1,1,0,0,3,8,5,1,203,330346.7557271226,105574.5058373691,431729.3537285807,334849.3240879944,4997.741069471823 -7607,9390,17038,17037,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.85906309562808,8.901527774156829,0,5,-1,-33.33269323045953,0,2,1,2019,5,0,30,45,1,0,0,26.99297045597963,26.99297045597963,0,0,0,0,0,1,1,0,0,0,54.1,59.11,50.03,52.62,8.333333333333334,1,1,0,0,9,8,5,1,203,330346.7557271226,105574.5058373691,431729.3537285807,334849.3240879944,4997.741069471823 -7607,9390,17039,-9,17038,17037,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.848861259016,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,203,330346.7557271226,105574.5058373691,431729.3537285807,334849.3240879944,4997.741069471823 -7608,9391,17040,17041,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.857451877755959,7.885275262255851,0,6,-5,47.50919656753344,0,-9,3,2019,6,0,39,39,1,0,0,7.515720946131085,7.515720946131085,0,0,0,0,0,0,0,0,0,0,52.54,52.91,43.41,49.46,8.333333333333334,1,1,0,0,7,5,4,0,1267.5,552850.3233084393,277588.4295630642,148786.3304599826,50013.37854013203,2901.708955995151 -7608,9391,17041,17040,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.847803619478728,8.08027251276765,6.502702385366047,6,5,98.1838963726986,0,3,3,2019,7,0,37,0,1,0,0,10.0211279699602,10.0211279699602,0,0,0,0,0,0,0,0,6.398890751548508,7.108977033063206,43.41,49.46,52.54,52.91,10,1,1,0,0,6,5,4,0,1267.5,552850.3233084393,277588.4295630642,148786.3304599826,50013.37854013203,2901.708955995151 -7609,9392,17042,-9,-9,-9,1,0,36,0,0,0,2,2,0,0,2,0,0,0,0,0,-953.012778017948,-9,1,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,34.93,-9,-9,5,1,1,0,0,3,8,2,0,1385,57252.4477718559,0,0,0,2039.825541608841 -7609,9393,17043,-9,17042,-9,1,0,18,0,0,0,3,3,1,0,4,0,0,0,0,0,-950.1075209239165,-9,2,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,16.89,65.32000000000001,-9,-9,5,1,1,1,0,0,8,1,0,696,212667.6025332685,0,0,0,0 -7610,9394,17044,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.249665390433385,7.400359951403761,0,0,-907.5203181182209,0,3,1,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.330936594526685,41.24,45.79,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,257,465851.2714374369,147905.4104514102,166500.4415269118,0,1431.890552745216 -7611,9395,17045,17046,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.894624459060426,7.582032787525907,0,8,-2,8.486877722534508,0,3,3,2019,12,0,24,24,1,0,0,12.80489059488067,12.80489059488067,0,0,0,0,0,0,0,0,0,0,45.81,44.2,55.19,54.26,8.333333333333334,1,1,0,0,9,7,4,1,264.3333333333333,199428.4812311523,38813.93364923224,300120.7391505562,162171.9024857079,1657.301337719116 -7611,9395,17046,17045,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.575200551552137,7.274751893054677,0,8,2,-60.07262847790567,0,2,-9,2019,10,0,20,5,1,0,0,9.288023472202337,9.288023472202337,0,0,0,0,0,0,0,0,0,0,55.19,54.26,45.81,44.2,8.333333333333334,1,1,0,0,1,7,4,1,264.3333333333333,199428.4812311523,38813.93364923224,300120.7391505562,162171.9024857079,1657.301337719116 -7611,9395,17047,-9,17045,17046,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1035.496329958077,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,7,4,1,264.3333333333333,199428.4812311523,38813.93364923224,300120.7391505562,162171.9024857079,1657.301337719116 -7611,9396,17048,-9,17045,17046,1,1,19,0,0,0,2,2,-9,0,4,7.5778213512516,7.619478643516223,0,0,0,-985.2557393551746,0,2,2,2019,7,0,48,15,1,0,1,5.212571722350193,5.212571722350193,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,3,7,3,1,2431,-160944.1184622005,0,0,0,1305.478939641893 -7612,9397,17049,17050,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,9,-7,11.86610991980222,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,41.69,30.87,44.66,41.79,5,1,1,0,0,0,9,2,0,419.5,-22572.39218771173,0,0,0,932.7714070906827 -7612,9397,17050,17049,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,3.409649874292891,2.918596297165211,9,7,-125.0408199252914,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.302638613648887,3.540444399101506,44.66,41.79,41.69,30.87,5,1,1,0,1,8,9,2,0,419.5,-22572.39218771173,0,0,0,932.7714070906827 -7613,9398,17051,17052,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.830858251579794,7.218186002355189,47,-3,-31.27231243629549,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,48.10665155003775,0,0,1,1,0,0,7.103057758899295,28.45,27.69,55.6,47.8,6.666666666666667,1,1,0,0,0,10,2,0,778.5,479103.1459216094,266294.7893272557,241311.6644155489,0,2224.498528723018 -7613,9398,17052,17051,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.194847333198284,6.297056362675429,47,3,-32.70715566483504,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,3.435282348938476,6.13427443261439,55.6,47.8,28.45,27.69,8.333333333333334,1,1,0,0,3,10,2,0,778.5,479103.1459216094,266294.7893272557,241311.6644155489,0,2224.498528723018 -7613,9399,17053,-9,-9,-9,1,1,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-957.4984348992211,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,26.26,59.84,-9,-9,5,1,1,0,0,0,10,1,0,794,-73545.67190945728,0,0,0,652.1206064898975 -7614,9400,17054,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.496439539809995,8.489734774568673,0,0,-968.3682709161469,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.505094914838859,8.503189550637154,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,1464,158774.6841951358,25640.55037783338,0,0,3886.127475021677 -7615,9401,17055,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.890722889710589,7.740513508133474,0,0,0,-1165.00188198496,0,3,3,2019,15,4,42,40,1,4,0,7.862459886925575,7.862459886925575,0,0,0,0,7,0,0,0,1.355820341811185,0,50.88,44.18,-9,-9,5,1,1,0,0,9,6,3,0,3278,153284.4065711539,50726.08697614592,144315.3481817566,0,921.3193031724282 -7616,9402,17056,-9,17057,-9,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.485021834354,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,682.8,29186.95974697334,0,0,0,2153.810901976886 -7616,9402,17057,-9,-9,-9,1,0,27,1,4,0,2,2,-9,0,4,0,0,0,0,0,-940.2209109190812,0,2,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,8.333333333333334,4,5,0,0,0,7,1,0,682.8,29186.95974697334,0,0,0,2153.810901976886 -7616,9402,17058,-9,17057,-9,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.096142353444,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,682.8,29186.95974697334,0,0,0,2153.810901976886 -7616,9402,17059,-9,17057,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-973.790367123036,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,7,1,0,682.8,29186.95974697334,0,0,0,2153.810901976886 -7616,9402,17060,-9,17057,-9,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.4869616742294,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,682.8,29186.95974697334,0,0,0,2153.810901976886 -7617,9403,17061,-9,17062,17063,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1060.723474094947,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,3,1,480.3333333333333,909291.446627699,295618.8055747416,345086.7398873643,0,2751.722495220182 -7617,9403,17062,17063,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,2.699824182424313,2.854432921532766,0,19,-14,44.74874885915235,0,2,2,2019,11,1,28,16,1,1,0,.0716570141108075,.0716570141108075,0,0,0,0,0,1,1,0,2.010407428440284,0,45.28,52.56,40.07,41.34,10,1,1,0,0,6,8,3,1,480.3333333333333,909291.446627699,295618.8055747416,345086.7398873643,0,2751.722495220182 -7617,9403,17063,17062,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,7.588986272642939,8.576166921846223,7.967196062242213,19,14,84.07704924755382,0,2,2,2019,12,0,28,34,1,0,0,9.047571504887131,9.047571504887131,0,0,0,0,0,1,1,0,5.333567627180073,7.67509756093581,40.07,41.34,45.28,52.56,5,1,1,0,0,7,8,3,1,480.3333333333333,909291.446627699,295618.8055747416,345086.7398873643,0,2751.722495220182 -7618,9404,17064,17068,-9,-9,1,1,51,0,3,0,2,2,-9,0,4,7.390140346231283,7.53120967584698,0,23,8,2.372957165125955,0,-9,-9,2019,9,0,30,24,1,1,0,6.208565957091488,6.208565957091488,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,2,3,0,1,10,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7618,9404,17065,-9,17068,17064,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.8473685961865,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7618,9404,17066,-9,17068,17064,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.816314156938,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7618,9404,17067,-9,17068,17064,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1103.249585719126,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7618,9404,17068,17064,-9,-9,1,0,43,0,3,0,3,3,-9,0,4,0,0,0,23,-8,-62.52885821399788,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,2,3,0,0,0,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7618,9404,17069,-9,17068,17064,1,1,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1033.141171756658,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,2,0,1071.666666666667,155976.4088020191,65434.72172778848,162587.6989133477,49324.153638383,2845.62127103232 -7619,9405,17070,17071,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.397576731049422,6.358677030513347,62,-3,-144.1753086234781,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,42,1,1,0,0,6.449088390907856,41.14,34.27,52.07,13.25,6.666666666666667,1,1,0,0,0,7,2,1,1552.5,309465.2440915909,55598.83952909855,257900.9142261561,0,2342.663523725617 -7619,9405,17071,17070,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,62,3,46.03642314733007,0,2,2,2019,15,3,0,0,4,3,0,0,0,1,0,29.09941592018046,0,0,1,1,0,3.747313499528349,0,52.07,13.25,41.14,34.27,3.333333333333333,1,1,0,0,0,7,2,1,1552.5,309465.2440915909,55598.83952909855,257900.9142261561,0,2342.663523725617 -7620,9406,17072,17073,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.839850184143911,9.013832966089263,0,19,0,-124.6756716034004,0,3,2,2019,15,3,31,33,1,3,0,24.57779571773224,24.57779571773224,0,0,0,0,0,1,1,0,0,0,41.12,52.77,60.27,49.27,6.666666666666667,2,3,0,0,12,4,4,1,521,838005.4138957482,408475.4364960815,285184.1496483134,0,3021.648656866793 -7620,9406,17073,17072,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,7.328163506455724,7.344211057101333,0,19,9,-64.32529223485352,0,3,3,2019,2,0,40,43,1,0,0,4.178895723832986,4.178895723832986,0,0,0,0,2,1,1,0,2.571376516074156,0,60.27,49.27,41.12,52.77,10,2,3,0,0,12,4,4,1,521,838005.4138957482,408475.4364960815,285184.1496483134,0,3021.648656866793 -7620,9406,17074,-9,17072,17073,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1038.208188586406,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,4,1,521,838005.4138957482,408475.4364960815,285184.1496483134,0,3021.648656866793 -7621,9407,17075,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,9.071864134114445,9.055061860230909,0,0,0,-1029.459736997162,0,-9,-9,2019,8,0,48,44,1,0,0,18.65207265128207,18.65207265128207,0,0,0,0,0,1,1,0,2.27921481226394,0,60.02,56.42,-9,-9,10,1,1,0,0,8,12,5,1,783,9495.400094432,-74225.56476086483,385352.5724860082,273973.9795467608,3259.848734132387 -7622,9408,17076,17077,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.9212860892053,7.766648149933559,0,5,0,78.54811055468281,0,2,-9,2019,16,4,38,37,1,4,0,9.512380900501764,9.512380900501764,0,0,0,0,0,0,0,0,7.790223362031824,0,43.67,61.06,57.16,56.15,8.333333333333334,1,1,0,0,5,10,5,1,975,1045488.864191706,652607.1749741349,241004.9248058025,46827.47045945202,5123.746209208506 -7622,9408,17077,17076,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.040822163240103,9.214571463897219,0,5,0,107.6644020654281,0,-9,-9,2019,6,0,38,42,1,0,0,27.67537349117667,27.67537349117667,0,0,0,0,0,0,0,0,2.970390832669595,0,57.16,56.15,43.67,61.06,8.333333333333334,1,1,0,0,8,10,5,1,975,1045488.864191706,652607.1749741349,241004.9248058025,46827.47045945202,5123.746209208506 -7623,9409,17078,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-991.4843689481571,1,-9,-9,2019,6,0,0,37,2,0,0,0,0,0,0,0,0,0,1,1,0,6.09109369838774,0,57.06,57.76,-9,-9,0,1,1,0,0,9,12,1,1,3214,187454.6304308533,0,0,0,490.1112710120665 -7624,9410,17079,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.967992097097286,8.126632175099971,0,0,0,-1019.868722374581,-9,2,2,2019,19,7,42,0,1,7,1,7.105481957180255,7.105481957180255,0,0,0,0,0,0,0,0,0,0,30.11,56.52,-9,-9,3.333333333333333,2,3,0,1,5,6,4,1,686,-19868.80696474924,-35565.17450910302,251760.5646944105,44824.83943472504,1837.257019391947 -7625,9411,17080,17082,-9,-9,1,1,36,1,1,0,1,1,-9,0,2,9.257732785975078,8.850768236946962,0,4,-1,-81.96249675330884,0,2,2,2019,20,7,38,40,1,7,0,39.03450550396403,39.03450550396403,0,0,0,0,0,0,0,0,3.32397042267274,0,31.77,31.97,53.48,53.71,8.333333333333334,1,1,0,0,11,12,5,0,503,289884.1628663971,58397.33572610002,276854.5610527089,172975.1912643719,3440.390214269577 -7625,9411,17081,-9,17082,17080,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.2132210169826,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,0,503,289884.1628663971,58397.33572610002,276854.5610527089,172975.1912643719,3440.390214269577 -7625,9411,17082,17080,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,4,1,-71.69490832021657,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,53.48,53.71,31.77,31.97,8.333333333333334,1,1,0,0,8,12,5,0,503,289884.1628663971,58397.33572610002,276854.5610527089,172975.1912643719,3440.390214269577 -7626,9412,17083,-9,-9,-9,1,0,38,1,3,0,1,1,-9,1,4,0,5.271478231772341,5.123282540970876,0,0,-894.1379856095467,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,5.768210333767523,0,35.95,61.84,-9,-9,5,1,1,0,0,0,6,2,0,304.3333333333333,-25116.15454063296,-39520.29950421109,0,0,1848.365153398206 -7626,9412,17084,-9,17083,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-843.7111442654866,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,304.3333333333333,-25116.15454063296,-39520.29950421109,0,0,1848.365153398206 -7626,9412,17085,-9,17083,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.1171552053781,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,2,0,304.3333333333333,-25116.15454063296,-39520.29950421109,0,0,1848.365153398206 -7626,9413,17086,-9,17083,-9,1,1,18,1,3,1,2,0,0,0,3,0,0,0,0,0,-1009.874511237171,-9,1,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,35.44,55.47,-9,-9,6.666666666666667,1,1,0,0,1,6,1,0,948,0,0,0,0,0 -7627,9414,17087,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.957077641096205,5.75378960989523,0,0,-1008.195774227758,0,3,-9,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.854085230821588,24.05,52.43,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,529,240742.1653770937,47013.25832365788,39908.87985103862,30057.58279175525,1118.841304395001 -7627,9415,17088,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.738410005932047,8.110220679234965,0,0,0,-929.7092770512742,0,-9,-9,2019,10,0,40,58,1,1,0,9.084248608940309,9.084248608940309,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,4,0,335,-204057.4613757761,137241.7793569678,0,0,1599.63199440466 -7628,9416,17089,17092,-9,-9,1,0,34,0,5,0,3,3,-9,1,2,0,0,0,4,8,0,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,17.41,46.45,40.37,41.57,3.333333333333333,1,1,0,0,0,2,1,0,694.2,-49831.3687200762,0,0,0,3494.16485449386 -7628,9416,17090,-9,17089,17092,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-911.8730850698016,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,694.2,-49831.3687200762,0,0,0,3494.16485449386 -7628,9416,17091,-9,17089,17092,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-884.0877758575003,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,57.26,-9,-9,10,1,1,0,0,0,2,1,0,694.2,-49831.3687200762,0,0,0,3494.16485449386 -7628,9416,17092,17089,-9,-9,1,1,26,0,5,0,2,2,-9,1,1,0,0,0,4,-8,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,41.57,17.41,46.45,8.333333333333334,4,1,0,0,0,2,1,0,694.2,-49831.3687200762,0,0,0,3494.16485449386 -7628,9416,17093,-9,17089,17092,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-937.6511507526673,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,694.2,-49831.3687200762,0,0,0,3494.16485449386 -7629,9417,17094,17095,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.108920848878633,8.65775004944749,0,39,-1,-2.682025209020029,0,-9,2,2019,6,0,40,44,1,0,0,22.14262563769671,22.14262563769671,0,0,0,0,0,0,0,0,2.303734645338939,0,62.49,55.09,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,164,514908.2790729696,460293.168635992,0,0,2754.300526940699 -7629,9417,17095,17094,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,39,1,-91.14334812083371,0,2,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.472370478518157,0,45.91,59.89,62.49,55.09,6.666666666666667,1,1,0,0,9,9,5,1,164,514908.2790729696,460293.168635992,0,0,2754.300526940699 -7630,9418,17096,17097,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.671273792217709,8.317967073447671,0,35,-1,.2695969205482958,0,3,3,2019,8,0,38,38,1,0,0,17.5796291935902,17.5796291935902,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,6,5,1,569,665281.3722177395,430907.2047080179,159121.3377395947,0,6009.928448228499 -7630,9418,17097,17096,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.043150675759829,9.370554676725886,8.008605195623883,35,1,135.9279893529447,0,3,2,2019,6,0,50,55,1,0,0,18.33888723650123,18.33888723650123,0,0,0,0,2,0,0,0,0,8.182449005342395,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,569,665281.3722177395,430907.2047080179,159121.3377395947,0,6009.928448228499 -7631,9419,17098,17099,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.720862850933802,8.460399072876299,0,1,7,62.87215434180354,-9,-9,-9,2019,11,0,40,0,1,0,0,13.4988635724076,13.4988635724076,0,0,0,0,0,0,0,0,5.512983348430701,0,38.41,59.77,50.06,49.75,5,1,1,0,0,4,11,5,1,612,656962.2243350833,30385.97429456574,253976.7118110599,0,2441.195330192514 -7631,9419,17099,17098,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.623870622271172,7.442853089937937,0,29,-7,-97.3891401801247,-9,-9,-9,2019,9,0,30,0,1,0,0,8.931772851166736,8.931772851166736,0,0,0,0,7,0,0,0,3.9926564852044,0,50.06,49.75,38.41,59.77,8.333333333333334,1,1,0,0,10,11,5,1,612,656962.2243350833,30385.97429456574,253976.7118110599,0,2441.195330192514 -7631,9420,17100,-9,17099,17098,1,0,24,0,0,0,2,2,-9,0,5,7.995010726618897,7.997346753027207,0,0,0,-884.9072338974613,-9,2,2,2019,10,2,38,0,1,2,1,8.02172299588003,8.02172299588003,0,0,0,0,0,0,0,0,1.578221985706521,0,46.34,61.24,-9,-9,6.666666666666667,1,1,0,0,4,11,4,1,82,-59205.95278551601,120109.2033766212,0,0,1241.454790094647 -7632,9421,17101,-9,17104,17103,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.101597969287,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,982,788485.424927186,325861.017979496,514493.9886567381,112196.5253384721,4592.591780453353 -7632,9421,17102,-9,17104,17103,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.1013381790599,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,982,788485.424927186,325861.017979496,514493.9886567381,112196.5253384721,4592.591780453353 -7632,9421,17103,17104,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.21722807250088,9.27941292653767,0,8,1,-79.97240047147596,0,-9,-9,2019,7,0,50,50,1,0,0,24.04789692923734,24.04789692923734,0,0,0,0,0,0,0,0,.8957787435705313,0,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,2,5,5,1,982,788485.424927186,325861.017979496,514493.9886567381,112196.5253384721,4592.591780453353 -7632,9421,17104,17103,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.644504471983277,7.661290964506466,0,18,-1,-36.48492652886266,0,1,1,2019,0,0,50,8,1,0,0,5.816955833205248,5.816955833205248,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.2,57.49,10,1,1,0,0,3,5,5,1,982,788485.424927186,325861.017979496,514493.9886567381,112196.5253384721,4592.591780453353 -7633,9422,17105,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1022.536089796016,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.163955646343928,0,55.92,36.72,-9,-9,5,1,1,0,0,4,7,1,1,560,-82737.84212178001,0,0,0,1131.812612436382 -7634,9423,17106,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.197974831348326,6.93913906587721,0,0,-1032.95429129131,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.468426683690898,7.174805644372292,32.5,46.27,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,233,388933.5169189801,443058.7237960276,161408.8307367168,27850.62599101761,750.8110966173126 -7635,9424,17107,17108,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,6.722085866860892,6.670835759236497,48,-1,3.094015291739375,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.000096285633878,6.590593980303646,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,1,1054,2343258.312771938,283015.3266935502,1235602.085805232,0,3097.711864734963 -7635,9424,17108,17107,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,8.002676807486896,8.04910215911573,48,1,155.6759074481693,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.442825061773116,57.06,57.76,57.16,56.15,10,1,1,0,0,0,6,3,1,1054,2343258.312771938,283015.3266935502,1235602.085805232,0,3097.711864734963 -7636,9425,17109,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.473701898925176,7.398066118719822,0,0,0,-938.6067108687872,-9,2,2,2019,24,12,35,0,1,12,0,6.915174541039273,6.915174541039273,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,5,1,1,0,0,6,7,3,0,902,74117.87660656456,10617.15327340784,0,0,1510.41631230701 -7636,9425,17110,-9,17109,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.972183351047,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,902,74117.87660656456,10617.15327340784,0,0,1510.41631230701 -7637,9426,17111,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-978.7270913040836,0,3,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,16.58,-9,-9,0,1,1,1,0,0,12,1,0,204,67861.63517044965,-22014.24636434913,0,0,-336.3471801518417 -7638,9427,17112,17113,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.261624278824664,9.297156647829739,0,6,-3,-62.06808511187626,-9,-9,-9,2019,9,0,40,0,1,1,0,31.10788452170074,31.10788452170074,0,0,0,0,0,0,0,0,0,0,54,54,52.82,40.77,8,1,1,0,0,1,8,5,1,525,1852676.945107598,1577351.564907738,391708.6829396877,2175.502009920621,3897.828495078606 -7638,9427,17113,17112,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,0,0,0,26,3,-36.01275224778391,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,40.77,54,54,5,1,1,0,0,0,8,5,1,525,1852676.945107598,1577351.564907738,391708.6829396877,2175.502009920621,3897.828495078606 -7638,9428,17114,-9,17113,17112,1,1,23,0,1,0,1,1,-9,0,5,8.261030755876746,7.96767355692791,0,0,0,-898.7898457147331,-9,2,1,2019,8,0,38,0,1,0,1,9.969096625734519,9.969096625734519,0,0,0,0,0,0,0,0,1.980751910605374,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,482,29953.34488454722,0,0,0,1875.913124374122 -7639,9429,17115,17116,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.640878914112275,7.508526471609692,52,1,80.8855663824493,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.330319648191688,7.71157152592388,58.15,52.91,63.8,49.17,8.333333333333334,1,1,0,0,0,7,3,1,268,692340.436117409,66447.54295440475,342594.0146844869,0,2029.268743587888 -7639,9429,17116,17115,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,7,-1,77.97941960355662,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,.8195402642808021,0,0,1,1,0,6.930541304272127,0,63.8,49.17,58.15,52.91,10,1,1,0,0,0,7,3,1,268,692340.436117409,66447.54295440475,342594.0146844869,0,2029.268743587888 -7640,9430,17117,17118,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.78686645572753,8.698134033041674,0,2,0,-29.2833309226306,0,-9,-9,2019,14,4,41,38,1,4,0,20.29236406622124,20.29236406622124,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.91,46.31,8.333333333333334,1,1,0,0,5,9,5,0,677.5,174235.4239274965,-36708.15199675333,255264.8432422508,170673.911674202,4037.910426364506 -7640,9430,17118,17117,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.382604723850786,8.46684123356459,0,2,0,58.2806801102093,0,-9,-9,2019,12,1,40,39,1,1,0,12.23410441491363,12.23410441491363,0,0,0,0,0,0,0,0,0,0,57.91,46.31,38.34,62.12,6.666666666666667,1,1,0,0,6,9,5,0,677.5,174235.4239274965,-36708.15199675333,255264.8432422508,170673.911674202,4037.910426364506 -7641,9431,17119,17120,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.335673758679478,7.501705249798787,0,14,2,18.64750792047021,0,2,2,2019,12,1,26,25,1,1,0,6.635276719778349,6.635276719778349,0,0,0,0,0,0,0,0,0,0,52.46,28.83,60.02,56.42,8.333333333333334,1,1,0,0,10,9,4,1,414.5,119692.9498215281,90764.22343165468,185807.5087475204,192544.426159495,3028.908243605015 -7641,9431,17120,17119,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.398542093711539,8.318401353624269,0,14,-2,-27.1066289640789,0,3,3,2019,6,0,55,60,1,0,0,9.257987092442807,9.257987092442807,0,0,0,0,0,0,0,0,0,0,60.02,56.42,52.46,28.83,10,1,1,0,0,11,9,4,1,414.5,119692.9498215281,90764.22343165468,185807.5087475204,192544.426159495,3028.908243605015 -7642,9432,17121,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.09339559580374,7.421501132927098,6.008486377147628,0,0,-988.0144714039578,0,3,2,2019,5,0,17,17,1,0,0,8.234134744266303,8.234134744266303,0,0,0,0,0,1,0,1,6.058952430240953,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,1474,86987.74345567607,14952.52298943923,155642.8801169895,48001.67766896923,2068.592701064616 -7642,9432,17122,-9,17121,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.5445009544608,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1474,86987.74345567607,14952.52298943923,155642.8801169895,48001.67766896923,2068.592701064616 -7642,9432,17123,-9,17121,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.4037025409132,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,.8653626768227038,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,2,0,1474,86987.74345567607,14952.52298943923,155642.8801169895,48001.67766896923,2068.592701064616 -7643,9433,17124,17125,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,9.128066918803983,8.623910060485537,7,6,32.6820866898432,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.419904140956484,8.778868973606816,62.42,45.64,65.8,39.97,8.333333333333334,1,1,0,0,3,13,5,1,1035.5,1486403.849884381,1078750.840227558,369742.5803033457,0,5517.970100178392 -7643,9433,17125,17124,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,7,-6,-13.46055281550094,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.65003122549154,0,65.8,39.97,62.42,45.64,8.333333333333334,1,1,0,0,0,13,5,1,1035.5,1486403.849884381,1078750.840227558,369742.5803033457,0,5517.970100178392 -7644,9434,17126,17127,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.217155991608921,6.429722098417177,50,-2,57.82288093517363,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.30882546596258,6.43811301251661,65.38,31.06,57.06,57.76,8.333333333333334,1,1,0,0,0,9,4,1,688,1324451.17706252,1015755.460506047,329310.3419645512,0,4330.191446792604 -7644,9434,17127,17126,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.379789363086045,8.119259288970685,50,2,14.85130508444271,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.589960006234323,6.702881120066852,57.06,57.76,65.38,31.06,10,1,1,0,0,6,9,4,1,688,1324451.17706252,1015755.460506047,329310.3419645512,0,4330.191446792604 -7645,9435,17128,17129,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,59,-2,55.59033491250933,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55.36,27.6,8,1,1,0,0,0,11,2,1,553.5,610136.5397111791,81051.48636506224,196081.8313384921,0,1225.164542625596 -7645,9435,17129,17128,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.801482906715114,6.781149441265686,59,2,-86.72070721280038,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.503738051170115,6.862333564509176,55.36,27.6,52,45,8.333333333333334,1,1,0,0,4,11,2,1,553.5,610136.5397111791,81051.48636506224,196081.8313384921,0,1225.164542625596 -7646,9436,17130,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1166.18641506263,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.015614115117994,0,22.61863478742553,0,1,1,0,0,0,33.81,15.92,-9,-9,5,1,1,0,0,0,13,1,1,639,-181977.0879269373,0,0,0,934.9459168329417 -7647,9437,17131,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.333007130563064,5.160424071832071,0,0,-1045.835223474767,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.70440949885229,5.880958625386271,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,8,2,1,394,-88292.34869480992,113535.8112277922,0,0,616.2154282467413 -7648,9438,17132,17133,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.581117852646489,8.40741705777965,0,39,2,-44.34454228548444,0,2,2,2019,6,0,20,20,1,0,0,21.77694946071727,21.77694946071727,0,0,0,0,2,0,0,0,2.39199862552772,0,62.49,55.09,51.77,58.57,0,1,1,0,0,10,9,5,1,177,1676279.5092129,1017654.251992393,531472.8805718548,0,2972.926102312736 -7648,9438,17133,17132,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.979644703328932,8.600684189888243,7.270570489933354,40,-2,11.03789250351897,0,3,2,2019,10,0,10,12,1,0,0,29.13748516657698,29.13748516657698,0,0,0,0,7,0,0,0,0,7.71483876158005,51.77,58.57,62.49,55.09,8.333333333333334,1,1,0,0,10,9,5,1,177,1676279.5092129,1017654.251992393,531472.8805718548,0,2972.926102312736 -7649,9439,17134,17135,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.577983611520294,9.009085487475298,0,17,2,-25.64665143562183,0,3,3,2019,12,0,46,52,1,0,0,15.23384510637392,15.23384510637392,0,0,0,0,0,0,0,0,1.611285322535653,0,43.24,59.41,21.94,50.19,8.333333333333334,3,4,0,0,12,7,4,1,331.5,1479386.47787067,591362.6769456889,776992.6521669589,0,2666.07787692265 -7649,9439,17135,17134,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,0,0,0,17,-2,-143.7554012640121,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,21.94,50.19,43.24,59.41,1.666666666666667,1,1,1,1,9,7,4,1,331.5,1479386.47787067,591362.6769456889,776992.6521669589,0,2666.07787692265 -7650,9440,17136,17137,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.488584455220932,8.766059403721513,0,17,1,43.17688111749844,0,2,2,2019,9,0,38,39,1,0,0,13.38031952183138,13.38031952183138,0,0,0,0,2,0,0,0,0,0,50.18,52.62,34.77,50.33,5,1,1,0,0,11,5,4,1,506.25,246118.3544326366,68090.2826792789,158575.0899893509,37060.32065766573,3002.057275793674 -7650,9440,17137,17136,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,8.321310566987044,8.537379354265733,0,17,-1,-83.34444095341601,0,3,2,2019,16,4,76,44,1,4,0,6.822352999729857,6.822352999729857,0,0,0,0,0,0,0,0,0,0,34.77,50.33,50.18,52.62,3.333333333333333,1,1,0,0,11,5,4,1,506.25,246118.3544326366,68090.2826792789,158575.0899893509,37060.32065766573,3002.057275793674 -7650,9440,17138,-9,17137,17136,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.168020655664,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,506.25,246118.3544326366,68090.2826792789,158575.0899893509,37060.32065766573,3002.057275793674 -7650,9440,17139,-9,17137,17136,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.985957461896,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,506.25,246118.3544326366,68090.2826792789,158575.0899893509,37060.32065766573,3002.057275793674 -7651,9441,17140,17141,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,5.13421900333058,5.183363821162179,9,-4,-112.2536791673713,0,-9,-9,2019,24,8,0,0,4,8,0,0,0,1,0,19.79560435013315,0,0,1,1,0,2.098567665256976,4.955452652686407,49.26,15.54,59.32,36.25,0,1,1,0,0,7,2,2,0,555.5,366462.4079982636,94650.0466629888,138264.6020239799,0,2135.111598278308 -7651,9441,17141,17140,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.352141387328089,6.450922723260425,19,4,-130.0839308162855,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.16386398945131,6.52541231212796,59.32,36.25,49.26,15.54,8.333333333333334,1,1,0,0,6,2,2,0,555.5,366462.4079982636,94650.0466629888,138264.6020239799,0,2135.111598278308 -7652,9442,17142,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.949341448108448,7.941878531893933,0,0,0,-988.7550285222933,0,-9,-9,2019,24,11,38,35,1,11,0,11.59876189838099,11.59876189838099,0,0,0,0,0,0,0,0,0,0,33.66,37.64,-9,-9,1.666666666666667,1,1,0,0,6,8,4,0,488,-6637.712127489216,0,0,0,1475.45634875259 -7652,9443,17143,-9,17142,-9,1,1,24,0,0,0,2,2,-9,0,4,7.674117151305689,7.662236155757122,0,0,0,-1042.389713951049,0,2,-9,2019,7,0,39,37,1,0,1,7.602308105000203,7.602308105000203,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,2,8,3,0,356,-18390.62853872188,0,0,0,1288.598987417834 -7653,9444,17144,17145,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,1,-8.499928282635782,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44.98,49.6,51.52,22.35,6.666666666666667,1,1,0,0,0,10,3,1,677.5,991361.758541242,421449.1803981669,518216.0008156232,0,2453.62512545318 -7653,9444,17145,17144,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.644454426436914,7.796496058399266,55,-1,-39.50427042499576,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,4.787098649838157,0,0,1,1,0,0,7.702142607970637,51.52,22.35,44.98,49.6,3.333333333333333,1,1,0,0,0,10,3,1,677.5,991361.758541242,421449.1803981669,518216.0008156232,0,2453.62512545318 -7653,9445,17146,-9,17144,17145,1,1,49,0,0,0,3,3,-9,0,1,7.620954534949927,7.56018192063389,0,0,0,-1044.362251343984,0,3,3,2019,30,11,38,38,1,11,0,8.29229326579879,8.29229326579879,0,0,0,0,0,1,1,0,0,0,17.83,36.96,-9,-9,1.666666666666667,1,1,0,1,12,10,3,1,1372,-70734.38151865745,84109.82607843152,0,0,1593.145620209141 -7654,9446,17147,17148,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.997825963572474,5.054142515081306,7,-4,-9.188690399000883,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.207510519052352,48.28,53.42,41.86,41.35,6.666666666666667,1,1,0,0,0,9,3,1,606.5,1031435.072398331,711918.0303166867,368425.6564834511,0,3268.292831622221 -7654,9446,17148,17147,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.108211128233402,7.84434344443775,47,4,-39.52889849243212,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,7.657309988438346,7.927249664573067,41.86,41.35,48.28,53.42,3.333333333333333,1,1,0,0,2,9,3,1,606.5,1031435.072398331,711918.0303166867,368425.6564834511,0,3268.292831622221 -7655,9447,17149,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.603101129661541,8.421337423800718,0,0,0,-1181.040118577467,0,-9,-9,2019,13,1,41,42,1,1,0,14.70942245351823,14.70942245351823,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,8.333333333333334,1,1,0,0,12,4,5,1,299,84485.04246732686,3191.369271189367,117631.8991589663,133417.2849259491,1854.538687646856 -7656,9448,17150,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.312016188221152,7.064339620287708,0,0,0,-1007.371275988241,0,-9,-9,2019,13,2,40,38,1,2,0,3.468113181753511,3.468113181753511,0,0,0,1.212755602432564,0,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,348,191738.1559550759,56529.93250573377,172572.3631531346,66149.04625902964,975.1148717695288 -7657,9449,17151,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.047290318463031,6.886587042267918,0,0,-1049.611853122502,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,7.537893357161543,1.244666934676998,57.91259738579768,0,1,1,0,.2202194240744232,6.739350355520402,67.5,21.89,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2078,268008.1416385276,60254.77547469886,197439.4667728784,0,856.6856653136335 -7658,9450,17152,-9,17154,-9,1,1,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1033.960665152545,-9,2,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,36.91,53.54,-9,-9,10,1,1,0,0,0,1,2,0,927,37647.77361089923,0,0,0,1728.656714991153 -7658,9450,17153,-9,17154,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1121.778206745072,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,0,927,37647.77361089923,0,0,0,1728.656714991153 -7658,9450,17154,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.25799433443086,7.337213739498958,4.607031064729745,0,0,-1120.548471532875,-9,3,3,2019,11,1,25,0,1,1,0,6.351683367649109,6.351683367649109,0,0,0,0,0,1,1,0,4.739456899520508,0,48.87,58.55,-9,-9,5,1,1,0,0,3,1,2,0,927,37647.77361089923,0,0,0,1728.656714991153 -7659,9451,17155,17156,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,21,-3,42.02449050725822,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,7,3,0,576.5,1404586.277022547,121750.1723103427,1019744.45243546,254654.1617301901,2009.857093175257 -7659,9451,17156,17155,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.467771007265533,8.001887870734263,0,8,3,-6.116306227325701,-9,-9,-9,2019,9,0,40,0,1,1,0,13.81644841263886,13.81644841263886,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,4,7,3,0,576.5,1404586.277022547,121750.1723103427,1019744.45243546,254654.1617301901,2009.857093175257 -7660,9452,17157,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,5.247428103138333,5.021824821640196,0,0,0,-961.6774980939699,0,2,-9,2019,16,6,25,30,1,6,0,.7177970440461127,.7177970440461127,0,0,0,0,2,1,1,0,0,0,38.26,60.7,-9,-9,3.333333333333333,1,1,0,1,9,11,2,0,201,349355.0593287455,143242.0409883145,0,0,560.7936552445024 -7661,9453,17158,17159,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.111832926498028,9.100811475700169,0,7,-10,-97.23237003345128,-9,-9,-9,2019,9,0,40,0,1,1,0,24.85051879836796,24.85051879836796,0,0,0,0,0,0,0,0,0,0,52,55,57.06,57.76,8,1,1,0,0,1,2,5,1,728,1519789.026836395,1039068.868869991,118727.9550770141,0,5072.594398542851 -7661,9453,17159,17158,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.610759700289119,6.735891965919415,0,26,10,24.49157279450442,0,3,3,2019,7,0,16,0,1,0,0,6.263193220802521,6.263193220802521,0,0,0,0,0,0,0,0,7.741884810244049,0,57.06,57.76,52,55,8.333333333333334,1,1,0,0,7,2,5,1,728,1519789.026836395,1039068.868869991,118727.9550770141,0,5072.594398542851 -7661,9454,17160,-9,17159,17158,1,0,21,0,0,0,2,2,-9,0,4,8.076045742636978,7.666115842486617,0,0,0,-998.2082469125477,-9,2,1,2019,11,0,40,0,1,2,1,11.1520987019136,11.1520987019136,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,4,1,491,42474.14682749828,-207006.9257366264,0,0,1274.135950049079 -7662,9455,17161,17162,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.069092101905741,5.886685841821699,56,4,-1.174380040894409,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.608624942223683,65.91,39.85,58.32,50.22,10,1,1,0,0,0,7,2,1,463,711047.2466239857,50100.59946049769,644689.5396011984,0,752.8905293669993 -7662,9455,17162,17161,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,56,-4,58.83382285845013,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.91,39.85,8.333333333333334,1,1,0,0,0,7,2,1,463,711047.2466239857,50100.59946049769,644689.5396011984,0,752.8905293669993 -7663,9456,17163,-9,17166,17168,1,1,20,0,3,0,2,2,-9,0,5,8.035481630546039,7.935798529304883,0,0,0,-1179.329036737431,0,3,2,2019,6,0,66,42,1,0,1,4.631008606199087,4.631008606199087,0,0,0,0,0,1,1,0,0,0,63.67,41.03,-9,-9,10,1,1,0,0,4,5,3,0,772,33968.54427751742,0,0,0,993.7768270889898 -7663,9457,17164,-9,17166,17168,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1189.615904257616,-9,3,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.53,48.82,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,550.2,798415.4661562681,506880.6264379701,179596.3966115234,0,2760.850294915154 -7663,9457,17165,-9,17166,17168,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.2873831892995,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,2,0,550.2,798415.4661562681,506880.6264379701,179596.3966115234,0,2760.850294915154 -7663,9457,17166,17168,-9,-9,1,0,37,0,3,0,3,3,-9,0,5,0,0,0,5,-6,-73.27307063387926,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.24,50.99,54.94,53.18,10,1,1,0,0,0,5,2,0,550.2,798415.4661562681,506880.6264379701,179596.3966115234,0,2760.850294915154 -7663,9457,17167,-9,17166,17168,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1028.27877712763,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,5,2,0,550.2,798415.4661562681,506880.6264379701,179596.3966115234,0,2760.850294915154 -7663,9457,17168,17166,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.084780005804676,8.052956786539029,0,5,6,33.40463950305449,0,3,3,2019,8,0,48,48,1,0,0,8.56988857127169,8.56988857127169,0,0,0,0,7,1,1,0,0,0,54.94,53.18,55.24,50.99,8.333333333333334,1,1,0,0,6,5,2,0,550.2,798415.4661562681,506880.6264379701,179596.3966115234,0,2760.850294915154 -7664,9458,17169,17170,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.851384920985828,6.855750084435708,17,18,37.84405118963998,-9,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.170438811450802,7.085344772656224,52.88,43.27,47,50,8.333333333333334,4,5,0,1,8,8,2,1,694,669123.9393973228,344308.5766939237,316609.496697771,3346.798163755289,1007.337935893083 -7664,9458,17170,17169,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,0,0,0,1,-18,96.32058788338533,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,52.88,43.27,7,4,5,0,0,0,8,2,1,694,669123.9393973228,344308.5766939237,316609.496697771,3346.798163755289,1007.337935893083 -7664,9459,17171,-9,17170,17169,1,1,23,0,0,0,2,2,-9,0,4,8.378946010856767,7.599321487456123,0,0,0,-1067.112941551682,-9,1,3,2019,10,0,37,0,1,1,1,9.99407989999343,9.99407989999343,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,5,0,0,1,8,4,1,209,82749.88403300451,0,0,0,1630.6977940263 -7664,9460,17172,-9,17170,17169,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-829.7164516145795,-9,1,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,5,0,0,0,8,1,1,483,-298588.58452934,0,0,0,0 -7665,9461,17173,-9,-9,17174,1,1,42,0,0,0,2,2,-9,0,4,8.212096951656457,8.209482459055566,0,0,0,-933.0122680814177,0,2,2,2019,12,2,42,42,1,2,0,10.86082541498774,10.86082541498774,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,179,-63528.4661570052,139357.145289885,0,0,1677.356730063259 -7665,9462,17174,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.67475443970056,6.482943203688184,0,0,-1071.652628576626,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.960255844946214,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,184,460865.4084890945,401405.2840024749,0,0,1201.706654423667 -7666,9463,17175,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,6.017080276838543,6.135017755164937,0,0,0,-1129.835700974655,0,-9,-9,2019,14,2,25,32,1,2,0,1.955656889767635,1.955656889767635,0,0,0,0,0,1,1,0,0,0,40.52,34.42,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,229,238245.8162979283,62393.53546447599,-38392.78844324283,0,620.1432577495112 -7667,9464,17176,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.920427475184718,7.058064826490003,0,0,-1042.429485148929,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,.0602431416099982,0,1,1,0,6.49701607601556,6.847541501418816,60.12,54.8,-9,-9,10,1,1,0,0,0,10,2,1,113,448366.7306210705,22129.55293716701,159626.7060579296,0,621.8610055278352 -7668,9465,17177,17178,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,51,-1,-30.65858985033405,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,0,0,50,46,53,47,7,1,1,0,0,4,6,2,1,604.5,335525.0191292223,272824.1800537411,0,0,1046.250148275656 -7668,9465,17178,17177,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,4.801170418408471,4.693707009137932,5,1,-29.64400945290127,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.126553058125621,4.958657443044441,53,47,50,46,7,1,1,0,0,5,6,2,1,604.5,335525.0191292223,272824.1800537411,0,0,1046.250148275656 -7669,9466,17179,-9,17181,17180,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.268829767617,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,829,134205.8177715678,164435.2268787973,162882.8432936392,153143.3742460765,2347.718861187694 -7669,9466,17180,17181,-9,-9,1,1,31,0,2,0,3,3,-9,0,4,8.21887510949356,8.077781706540229,0,8,3,39.96334893295453,0,2,2,2019,6,0,35,40,1,0,0,15.97196762237898,15.97196762237898,0,0,0,1.004221175670295,0,1,1,0,0,0,52.82,53.97,52.82,53.97,8.333333333333334,1,1,0,0,11,10,3,1,829,134205.8177715678,164435.2268787973,162882.8432936392,153143.3742460765,2347.718861187694 -7669,9466,17181,17180,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.458093668702369,7.370205978127615,0,8,-3,31.20553560804494,0,2,2,2019,10,0,25,22,1,0,0,8.944327662593743,8.944327662593743,0,0,0,0,0,1,1,0,2.157550795590997,0,52.82,53.97,52.82,53.97,8.333333333333334,1,1,0,0,10,10,3,1,829,134205.8177715678,164435.2268787973,162882.8432936392,153143.3742460765,2347.718861187694 -7669,9466,17182,-9,17181,17180,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.117221009458,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,829,134205.8177715678,164435.2268787973,162882.8432936392,153143.3742460765,2347.718861187694 -7670,9467,17183,17184,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,9.04668334247612,8.968881505761692,6.82944411705885,8,2,80.58074347635798,0,-9,-9,2019,20,9,43,44,1,9,0,22.58152598942343,22.58152598942343,0,0,0,0,0,1,1,0,3.921667802040816,7.171646307950256,50.15,48.44,33.13,35.05,3.333333333333333,1,1,0,0,7,10,5,1,1135,1403929.984514311,788558.8722810878,408567.3096528979,29366.87601110304,5888.036203783222 -7670,9467,17184,17183,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.988948743880981,8.867867192625141,0,41,-2,-31.21895792313431,0,2,2,2019,20,8,50,60,1,8,0,20.73178785268959,20.73178785268959,0,0,0,0,2,1,1,0,0,0,33.13,35.05,50.15,48.44,1.666666666666667,1,1,0,0,8,10,5,1,1135,1403929.984514311,788558.8722810878,408567.3096528979,29366.87601110304,5888.036203783222 -7671,9468,17185,17186,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.014088982290717,6.037201347628808,9,1,90.2697782478016,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.381033494895195,6.050672770041593,45.94,23.09,60.13,49.27,6.666666666666667,1,1,0,0,5,8,2,1,255,1476840.305238774,0,968754.2085768243,0,1286.337013469146 -7671,9468,17186,17185,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,55,-1,38.01826997703981,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.13,49.27,45.94,23.09,10,1,1,0,0,0,8,2,1,255,1476840.305238774,0,968754.2085768243,0,1286.337013469146 -7672,9469,17187,17188,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.346436534709141,5.233179105247947,22,-5,-49.71028949862632,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.676011482636905,5.380271609396649,57.16,56.15,53.11,56.81,8.333333333333334,1,1,0,0,2,9,2,1,657,564272.3815615401,226156.9497123036,362521.3694909563,0,1885.395122209796 -7672,9469,17188,17187,-9,-9,1,0,79,0,0,0,3,3,-9,0,5,0,5.750830531331438,5.737259917733855,25,5,11.86463200025277,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.411693575878854,53.11,56.81,57.16,56.15,8.333333333333334,1,1,0,0,2,9,2,1,657,564272.3815615401,226156.9497123036,362521.3694909563,0,1885.395122209796 -7673,9470,17189,17190,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.371060361344393,8.843382197993275,7.446015759887636,8,-2,10.92274773804363,0,2,3,2019,7,0,40,40,1,0,0,15.01097162525627,15.01097162525627,0,0,0,0,0,0,0,0,0,7.799372473953651,56.55,45.59,48.76,53.24,8.333333333333334,1,1,0,0,8,12,5,1,468,224398.170508063,112672.450927858,155644.4597822306,24083.29824937287,4198.279724658943 -7673,9470,17190,17189,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.320282297747077,7.978349835648391,0,8,2,-146.9991239131145,0,3,3,2019,12,0,39,39,1,0,0,13.24253754547443,13.24253754547443,0,0,0,0,2,0,0,0,0,0,48.76,53.24,56.55,45.59,8.333333333333334,1,1,0,0,9,12,5,1,468,224398.170508063,112672.450927858,155644.4597822306,24083.29824937287,4198.279724658943 -7673,9471,17191,-9,17189,17190,1,1,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-853.7272680998559,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52.16,51.57,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,924,45217.45107291223,0,0,0,0 -7674,9472,17192,17193,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,7.988421405068696,8.099764581580423,0,7,6,45.37193188778149,0,2,2,2019,7,0,20,20,1,0,0,19.65821560100984,19.65821560100984,0,0,0,0,0,1,1,0,0,0,41.47,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,7,5,1,306.3333333333333,109412.5351743624,61213.44448524483,256978.4160608651,108646.6189040144,3212.270842063219 -7674,9472,17193,17192,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,9.091375676430292,8.979883244072177,0,7,-6,76.95252883770011,0,-9,-9,2019,8,0,45,45,1,0,0,19.62205838922494,19.62205838922494,0,0,0,0,0,1,1,0,0,0,51.24,58.84,41.47,57.49,6.666666666666667,1,1,0,0,9,7,5,1,306.3333333333333,109412.5351743624,61213.44448524483,256978.4160608651,108646.6189040144,3212.270842063219 -7674,9472,17194,-9,17192,17193,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.8263984374217,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,306.3333333333333,109412.5351743624,61213.44448524483,256978.4160608651,108646.6189040144,3212.270842063219 -7675,9473,17195,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.085192587044302,7.040926730778086,0,0,-1080.801248964964,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,3.516778247743265,11.38915506781138,25.29775652375314,0,1,1,0,2.91489157428295,6.851688882481902,25.74,25.1,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,973,465883.3832054777,149308.3112446179,266357.6031394271,0,1040.323265380221 -7676,9474,17196,17197,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.693837509551077,8.596692824374211,0,9,3,-20.12259788587196,0,3,3,2019,10,0,40,45,1,0,0,15.14019941262211,15.14019941262211,0,0,0,0,0,0,0,0,2.871364496348982,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,11,13,5,1,2718,1187630.910369909,1086303.616300508,104065.7428404649,41241.8743915619,3067.008533889807 -7676,9474,17197,17196,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.155557154456831,7.918360939565376,0,9,-3,-6.77026336429432,0,3,3,2019,8,0,37,37,1,0,0,9.724218688121473,9.724218688121473,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,2718,1187630.910369909,1086303.616300508,104065.7428404649,41241.8743915619,3067.008533889807 -7677,9475,17198,17201,-9,-9,1,1,36,0,2,0,2,2,-9,1,4,0,0,0,1,-2,0,-9,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.74,57.45,52.39,19.38,8.333333333333334,1,1,0,0,0,2,1,0,1131.5,0,0,0,0,3046.367984310379 -7677,9475,17199,-9,17201,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.651451541296,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,1,0,1131.5,0,0,0,0,3046.367984310379 -7677,9475,17200,-9,17201,-9,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.907417148079,-9,3,-9,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,58.42,49.07,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1131.5,0,0,0,0,3046.367984310379 -7677,9475,17201,17198,-9,-9,1,0,38,0,2,0,3,3,-9,1,1,0,0,0,1,2,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,52.39,19.38,27.74,57.45,5,1,1,0,0,0,2,1,0,1131.5,0,0,0,0,3046.367984310379 -7677,9476,17202,-9,17201,-9,1,1,18,0,2,0,2,2,1,0,5,6.885588978029102,7.083016022730172,0,0,0,-928.2728327457791,-9,3,-9,2019,3,0,28,0,1,0,1,6.365982968953417,6.365982968953417,0,0,0,0,0,1,1,0,3.694404500927658,0,67.90000000000001,41.86,-9,-9,10,1,1,0,0,1,2,2,0,820,222147.5567713006,0,0,0,597.4400821554974 -7678,9477,17203,-9,17205,17204,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.2701993938796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,1034.6,-32650.11521407832,-2182.439902222948,0,0,2790.446218268033 -7678,9477,17204,17205,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,8.197235781260476,8.325774808506432,0,4,3,-53.41080224145873,0,-9,-9,2019,7,0,60,50,1,0,0,7.829939206738184,7.829939206738184,0,0,0,0,0,1,1,0,0,0,45.91,59.89,53.24,50.01,8.333333333333334,1,1,0,0,6,5,3,0,1034.6,-32650.11521407832,-2182.439902222948,0,0,2790.446218268033 -7678,9477,17205,17204,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,4,-3,21.80866802520664,1,-9,-9,2019,8,0,0,80,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.24,50.01,45.91,59.89,8.333333333333334,1,1,0,0,2,5,3,0,1034.6,-32650.11521407832,-2182.439902222948,0,0,2790.446218268033 -7678,9477,17206,-9,17205,17204,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.0661638685299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.1084234677980671,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1034.6,-32650.11521407832,-2182.439902222948,0,0,2790.446218268033 -7678,9477,17207,-9,17205,17204,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.6203592154299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,1034.6,-32650.11521407832,-2182.439902222948,0,0,2790.446218268033 -7679,9478,17208,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,8.169601285698429,8.119595178219186,0,0,-1027.546455676545,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.739427469882892,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,547,1080548.790893114,475254.1490809546,399233.7775477626,0,2569.815488796819 -7680,9479,17209,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.879839831298479,8.997654479397365,8.472498895059791,0,0,-1185.18449259126,0,-9,-9,2019,19,6,30,30,1,6,0,9.414400251968514,9.414400251968514,0,0,0,0,0,0,0,0,1.467875907202935,8.33343715438917,44.54,46.88,-9,-9,8.333333333333334,3,4,0,0,9,8,5,0,451,-223070.7236475835,156017.7932923866,0,0,3407.548963629084 -7680,9480,17210,-9,17209,-9,1,1,23,0,0,0,2,2,-9,0,5,7.928396164096204,8.258634754495153,0,0,0,-944.2843202186979,0,2,-9,2019,8,0,45,54,1,0,1,8.11568205118431,8.11568205118431,0,0,0,0,0,0,0,0,4.235945355653027,0,62.92,45.5,-9,-9,0,3,4,0,0,4,8,4,0,190,-115190.0166232637,0,0,0,1453.710718531579 -7681,9481,17211,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.893299491708441,8.129791374948979,5.436748563693563,0,0,-1000.017070022853,0,3,-9,2019,23,11,42,50,1,11,0,6.62226482854812,6.62226482854812,0,0,0,0,0,1,1,0,0,5.504960125803871,36.16,34.96,-9,-9,5,1,1,0,1,6,5,4,0,1248,-119088.309040438,85448.05442480918,0,0,727.1601006525595 -7682,9482,17212,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.754190789411275,8.146681512221408,0,0,0,-993.5009280421767,0,-9,-9,2019,7,0,37,37,1,0,0,8.447235105716498,8.447235105716498,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,134,-20812.82110317408,8211.501559219316,121541.5924237042,30480.2718052908,1564.461143901364 -7682,9483,17213,-9,17212,-9,1,0,23,0,0,0,2,2,-9,0,3,7.658517911982407,7.903209797368075,0,0,0,-1006.61995337289,0,3,-9,2019,9,0,55,44,1,0,1,5.182639691134188,5.182639691134188,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,7,10,3,1,360,72916.20915494692,9461.912887041022,0,0,1123.625482649507 -7683,9484,17214,17215,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.404780599427495,8.539470116421738,40,0,204.6515387004082,-9,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.534711468405757,8.187620250773657,56.5,48.33,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,2048,2600796.383650596,1014845.024582699,1606685.319407587,789792.1342398326,5246.861379555803 -7683,9484,17215,17214,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,7.56351565871719,8.633215997814956,7.947541628011354,42,0,-64.58539753207907,-9,2,2,2019,6,0,4,0,1,0,0,49.19047105980333,49.19047105980333,0,0,0,0,7,1,1,0,0,7.936050221525258,59.43,58.05,56.5,48.33,10,1,1,0,0,10,9,5,1,2048,2600796.383650596,1014845.024582699,1606685.319407587,789792.1342398326,5246.861379555803 -7684,9485,17216,17217,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,8.450547258087637,8.475709468528613,0,2,-6,-1.807488245759838,0,-9,-9,2019,15,3,60,45,1,3,0,10.21457605556664,10.21457605556664,0,0,0,0,0,1,1,0,0,0,29.13,46.2,51.49,57.57,3.333333333333333,1,1,0,1,3,2,3,0,740,94746.95003585462,109438.2705373828,152561.5687850578,115875.2437172048,2560.309906476423 -7684,9485,17217,17216,-9,-9,1,0,39,1,3,0,3,3,-9,0,4,0,0,0,2,6,-156.4842609964741,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,29.13,46.2,8.333333333333334,1,1,1,0,0,2,3,0,740,94746.95003585462,109438.2705373828,152561.5687850578,115875.2437172048,2560.309906476423 -7684,9485,17218,-9,17217,17216,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.7443870696293,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,740,94746.95003585462,109438.2705373828,152561.5687850578,115875.2437172048,2560.309906476423 -7684,9485,17219,-9,17217,17216,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.9629248245438,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,740,94746.95003585462,109438.2705373828,152561.5687850578,115875.2437172048,2560.309906476423 -7684,9485,17220,-9,17217,17216,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-950.5297706857451,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,740,94746.95003585462,109438.2705373828,152561.5687850578,115875.2437172048,2560.309906476423 -7685,9486,17221,17223,-9,-9,1,0,32,1,1,0,2,2,-9,0,5,7.723327312677019,7.485281025024785,0,6,-6,-49.59423438743532,0,2,2,2019,5,0,23,40,1,0,0,10.53835666827098,10.53835666827098,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.5,58.26,6.666666666666667,1,1,0,0,7,12,4,1,1159,23855.30801314014,15117.51154777779,175746.619805081,111478.7506322358,3069.27910489133 -7685,9486,17222,-9,17221,17223,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-936.8524114763463,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1159,23855.30801314014,15117.51154777779,175746.619805081,111478.7506322358,3069.27910489133 -7685,9486,17223,17221,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.270810616402049,8.484733438727819,0,6,6,74.54475639852669,0,-9,-9,2019,7,0,45,50,1,0,0,13.16276539000082,13.16276539000082,0,0,0,0,0,1,1,0,0,0,46.5,58.26,54.1,59.11,8.333333333333334,1,1,0,0,7,12,4,1,1159,23855.30801314014,15117.51154777779,175746.619805081,111478.7506322358,3069.27910489133 -7686,9487,17224,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.734831243398489,7.391472082403259,0,0,0,-1003.590572306058,0,3,2,2019,7,0,40,43,1,0,0,6.569094580929763,6.569094580929763,0,0,0,0,0,1,1,0,0,0,54.78,53.3,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,2294,6117.545442150091,140725.9519778031,0,0,1709.487053181875 -7687,9488,17225,-9,17227,17228,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.4575593792016,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,515,617119.4357025257,483335.4477015269,151163.2021293521,104476.7601285203,4161.143645197397 -7687,9488,17226,-9,17227,17228,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.7321357996085,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.938650883810451,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,515,617119.4357025257,483335.4477015269,151163.2021293521,104476.7601285203,4161.143645197397 -7687,9488,17227,17228,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.840743565297981,8.910007074156505,0,18,-5,50.66578872506349,0,2,3,2019,16,4,39,47,1,4,0,19.54625698512726,19.54625698512726,0,0,0,0,0,1,1,0,.4799170815622094,0,44.01,41.98,54.79,55.86,8.333333333333334,1,1,0,0,10,1,5,1,515,617119.4357025257,483335.4477015269,151163.2021293521,104476.7601285203,4161.143645197397 -7687,9488,17228,17227,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.321337194471905,8.559768194376574,0,16,5,-84.42101278277025,0,2,2,2019,6,0,46,48,1,0,0,12.29384237682986,12.29384237682986,0,0,0,0,0,1,1,0,0,0,54.79,55.86,44.01,41.98,8.333333333333334,1,1,0,0,10,1,5,1,515,617119.4357025257,483335.4477015269,151163.2021293521,104476.7601285203,4161.143645197397 -7688,9489,17229,17230,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,18,3,-142.668300362291,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,61.33,43.74,51.61,3.333333333333333,3,4,1,1,6,8,4,0,706.6666666666666,399504.1062563313,48807.24011136447,474831.8108383541,153468.8779073911,2383.324183577646 -7688,9489,17230,17229,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.86691671329851,8.450193712388463,0,18,-3,75.348241591538,0,-9,-9,2019,9,0,55,55,1,0,0,11.72555784436363,11.72555784436363,0,0,0,0,0,1,1,0,0,0,43.74,51.61,43.14,61.33,5,1,1,0,1,13,8,4,0,706.6666666666666,399504.1062563313,48807.24011136447,474831.8108383541,153468.8779073911,2383.324183577646 -7688,9489,17231,-9,17229,17230,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.0658755613,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,706.6666666666666,399504.1062563313,48807.24011136447,474831.8108383541,153468.8779073911,2383.324183577646 -7689,9490,17232,17233,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,3.973155247114931,3.762274011567482,47,-1,-25.2827725788952,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.075961739802271,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,9,7,2,1,274.5,114976.4918625089,106873.4490165143,0,0,1519.677477043786 -7689,9490,17233,17232,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.766168393782875,6.075117114924247,47,1,23.86805098379673,0,3,3,2019,0,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,5.940109081006855,5.85458817508246,60.12,54.8,54.1,59.11,10,1,1,0,0,9,7,2,1,274.5,114976.4918625089,106873.4490165143,0,0,1519.677477043786 -7690,9491,17234,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-977.940998282775,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,677,8985.132058174107,0,0,0,845.4468614226485 -7691,9492,17235,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,6.555486206387608,7.033301247000216,5.83612012905066,0,0,-931.2393128056085,0,2,2,2019,13,2,22,30,1,2,0,3.726300627405484,3.726300627405484,0,0,0,0,7,1,1,0,0,6.007537737071678,43.87,46.5,-9,-9,5,1,1,0,1,9,5,2,1,1408,222723.1365677718,4760.010385271422,322013.8805884529,192163.4555363269,797.8054199169195 -7692,9493,17236,17237,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.437530749535187,6.165972644065924,0,40,1,-20.76579471101173,0,3,3,2019,13,1,24,18,1,1,0,2.498133426232004,2.498133426232004,0,0,0,0,0,0,0,0,1.202407330677051,0,47.7,47.03,38.59,60.85,6.666666666666667,2,3,0,1,10,9,2,1,1047,422226.7890827691,84011.40526779003,438741.8421924288,62071.35997983961,6538.912869319174 -7692,9493,17237,17236,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.835954002228322,6.623937106760656,0,40,-1,-48.51685758694091,0,3,3,2019,8,0,50,50,1,0,0,2.204850946184909,2.204850946184909,0,0,0,0,0,0,0,0,9.790981760008185,0,38.59,60.85,47.7,47.03,8.333333333333334,1,1,0,0,11,9,2,1,1047,422226.7890827691,84011.40526779003,438741.8421924288,62071.35997983961,6538.912869319174 -7692,9494,17238,-9,17236,17237,1,1,21,0,0,0,2,2,-9,0,4,8.523887956240646,8.613950023651878,0,0,0,-926.2202153849495,0,2,3,2019,5,0,42,38,1,0,1,15.03941564671454,15.03941564671454,0,0,0,0,0,0,0,0,3.84267969268809,0,48.11,56.11,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,783,94982.05402491638,144561.8095630101,0,0,2269.870286762082 -7692,9495,17239,-9,17236,17237,1,0,28,0,0,0,1,1,-9,0,5,8.572940537082099,8.289687091674564,0,0,0,-914.8280867983315,0,2,3,2019,6,0,47,47,1,0,1,13.52672118336274,13.52672118336274,0,0,0,0,0,0,0,0,0,0,61.6,44.82,-9,-9,8.333333333333334,4,2,0,0,6,9,5,1,132,-67425.84147824656,75144.05635823938,0,0,1866.467719098616 -7693,9496,17240,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,7.268115134209874,6.919521589943154,0,0,-989.6498882953738,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.306364578329369,7.462406933759367,50.66,12.6,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,407,388869.501309266,148300.7581893072,0,0,1122.370216589615 -7694,9497,17241,-9,17242,17243,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.675309435894,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,8,4,1,1722,694867.5524742135,365213.4427894854,293165.6025101611,66053.17425099156,3253.091009928856 -7694,9497,17242,17243,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,6.732426983660117,6.858206567163807,0,20,-3,101.3686844138349,0,2,3,2019,6,0,40,40,1,0,0,3.240782798755588,3.240782798755588,0,0,0,0,0,1,1,0,0,0,54.63,58.83,56.68,51,8.333333333333334,2,3,0,0,10,8,4,1,1722,694867.5524742135,365213.4427894854,293165.6025101611,66053.17425099156,3253.091009928856 -7694,9497,17243,17242,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.028938100715427,8.84952633763451,0,19,3,-26.62485678651117,0,-9,-9,2019,5,0,84,56,1,0,0,13.32634719158062,13.32634719158062,0,0,0,0,0,1,1,0,1.415335509957945,0,56.68,51,54.63,58.83,8.333333333333334,1,1,0,0,10,8,4,1,1722,694867.5524742135,365213.4427894854,293165.6025101611,66053.17425099156,3253.091009928856 -7694,9497,17244,-9,17242,17243,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-853.6137764477905,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,4,1,1722,694867.5524742135,365213.4427894854,293165.6025101611,66053.17425099156,3253.091009928856 -7695,9498,17245,17246,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.454067804475717,7.283295273028334,24,-2,-77.04646420954037,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.481869194833795,33.55,29.48,62.66,41.87,6.666666666666667,1,1,0,0,10,1,3,1,3075.5,1537189.257550496,517022.191557898,262300.7810322567,0,3157.800261027684 -7695,9498,17246,17245,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.341943585791928,7.105050649057361,10,2,-47.60873422577325,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.329564718314939,7.393689898124345,62.66,41.87,33.55,29.48,10,1,1,0,0,0,1,3,1,3075.5,1537189.257550496,517022.191557898,262300.7810322567,0,3157.800261027684 -7696,9499,17247,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.487624788246004,8.462186042584133,0,0,0,-990.0184042535328,0,1,2,2019,21,8,65,35,1,8,0,8.817262954566493,8.817262954566493,0,0,0,0,0,1,0,1,0,0,23.85,59.45,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,578,657852.7564587588,531728.9545699693,180568.5122777611,149577.7331301105,2260.59280488054 -7696,9500,17248,-9,17247,-9,1,0,20,0,0,0,2,2,-9,0,3,6.114006705857565,6.201326175396344,0,0,0,-1086.441069673837,-9,1,-9,2019,10,0,12,0,1,0,1,5.441603354692359,5.441603354692359,0,0,0,0,0,1,0,1,0,0,40.65,57.36,-9,-9,1.666666666666667,1,1,0,0,3,12,2,1,374,128384.3679722639,0,0,0,950.2080649887308 -7696,9501,17249,-9,17247,-9,1,0,22,0,0,1,1,0,-9,0,3,0,0,0,0,0,-1019.410687515772,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,0,1,0,0,38.72,57.73,-9,-9,5,1,1,0,1,6,12,1,1,1168,-87816.24066140733,0,0,0,287.3117607598133 -7697,9502,17250,17252,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.601998599571145,8.21638955358245,0,10,-4,-55.29213647880223,0,-9,-9,2019,12,2,39,39,1,2,0,13.80302635806925,13.80302635806925,0,0,0,0,0,1,1,0,2.619060603525492,0,54.1,59.11,17.88,67.62,8.333333333333334,1,1,0,0,10,2,5,1,644.6666666666666,75830.5664248898,48129.59170619943,53457.71358261312,61329.02379611342,4297.497424935959 -7697,9502,17251,-9,17252,17250,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.3369473960279,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,644.6666666666666,75830.5664248898,48129.59170619943,53457.71358261312,61329.02379611342,4297.497424935959 -7697,9502,17252,17250,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.615062464493159,8.67132010006638,0,10,4,66.5247957413749,0,2,2,2019,22,10,39,39,1,10,0,20.45736905568911,20.45736905568911,0,0,0,0,0,1,1,0,3.396077675614419,0,17.88,67.62,54.1,59.11,6.666666666666667,1,1,0,0,10,2,5,1,644.6666666666666,75830.5664248898,48129.59170619943,53457.71358261312,61329.02379611342,4297.497424935959 -7698,9503,17253,17254,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,4.563294607636571,4.773118204233255,0,35,-1,63.61896484333246,0,3,3,2019,6,0,15,25,1,0,0,.6998299109296129,.6998299109296129,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.57,57.78,8.333333333333334,1,1,0,0,8,2,5,1,1049.5,1459895.125354166,1423631.690292484,137124.7027560371,85228.47020884251,4180.097402066414 -7698,9503,17254,17253,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.334797909511527,9.409677926857965,6.974607961054729,35,1,-9.432355101839132,0,2,3,2019,8,0,52,75,1,0,0,23.84043583398302,23.84043583398302,0,0,0,0,0,0,0,0,0,6.947305842365091,56.57,57.78,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,1049.5,1459895.125354166,1423631.690292484,137124.7027560371,85228.47020884251,4180.097402066414 -7698,9504,17255,-9,17253,17254,1,0,23,0,0,0,2,2,-9,0,5,7.9868282418945,7.987126845858368,0,0,0,-1020.397498242178,0,2,1,2019,18,6,40,41,1,6,1,8.15017084306608,8.15017084306608,0,0,0,0,0,0,0,0,0,0,35.05,62.72,-9,-9,3.333333333333333,1,1,0,0,3,2,4,1,1137,62405.24674282152,0,0,0,1402.650374102717 -7699,9505,17256,-9,17258,17257,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.7980766980603,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,472.6666666666667,159950.8781050293,6399.201181458719,137353.6742646668,93497.70389941585,3430.099368586887 -7699,9505,17257,17258,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.165915357003616,7.91137025134448,0,7,2,-18.84202807343542,0,2,2,2019,10,3,50,45,1,3,0,6.755780866466476,6.755780866466476,0,0,0,0,0,1,1,0,0,0,57.84,36.7,41.17,59.31,6.666666666666667,1,1,0,0,8,6,4,1,472.6666666666667,159950.8781050293,6399.201181458719,137353.6742646668,93497.70389941585,3430.099368586887 -7699,9505,17258,17257,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,8.348566227707268,8.459393332582426,0,7,-2,63.25623130739313,0,-9,-9,2019,18,6,50,50,1,6,0,14.45358851831675,14.45358851831675,0,0,0,0,0,1,1,0,1.411311089539048,0,41.17,59.31,57.84,36.7,8.333333333333334,1,1,0,0,7,6,4,1,472.6666666666667,159950.8781050293,6399.201181458719,137353.6742646668,93497.70389941585,3430.099368586887 -7700,9506,17259,-9,17260,17261,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.4785557514655,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,687.25,241049.416047287,121642.2402542595,300860.2102842304,51161.65389067486,2878.468467853366 -7700,9506,17260,17261,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.091809080664099,8.159797339661205,0,15,-6,74.40950414070856,0,2,1,2019,15,3,33,27,1,3,0,12.81759468440233,12.81759468440233,0,0,0,0,0,1,1,0,0,0,28.88,53,42.97,40.8,8.333333333333334,1,1,0,0,7,9,4,0,687.25,241049.416047287,121642.2402542595,300860.2102842304,51161.65389067486,2878.468467853366 -7700,9506,17261,17260,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.071248961601981,7.962698873546401,0,15,6,-65.35387093988687,0,2,2,2019,12,0,42,43,1,0,0,8.412826819382678,8.412826819382678,0,0,0,0,0,1,1,0,0,0,42.97,40.8,28.88,53,6.666666666666667,1,1,0,0,9,9,4,0,687.25,241049.416047287,121642.2402542595,300860.2102842304,51161.65389067486,2878.468467853366 -7700,9506,17262,-9,17260,17261,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.9621963929026,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,687.25,241049.416047287,121642.2402542595,300860.2102842304,51161.65389067486,2878.468467853366 -7701,9507,17263,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,6.870802239817263,7.048477032107169,0,0,0,-986.5680163244882,0,2,1,2019,10,0,35,25,1,0,0,3.844014972092984,3.844014972092984,0,0,0,0,5.48,0,0,0,0,0,49.23,55.95,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,504,-6212.670686918201,0,0,0,1029.901519629084 -7701,9508,17264,-9,17263,-9,1,1,25,0,1,0,3,3,-9,0,4,7.90326754500702,8.422227225462709,0,0,0,-999.1531998330294,0,2,-9,2019,11,0,40,42,1,0,1,10.3926836276118,10.3926836276118,0,0,0,0,2,0,0,0,2.226699581908778,0,52.62,54.33,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,129,-200183.6150425441,48580.66007560322,0,0,1167.573997720573 -7701,9509,17265,-9,17266,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.561184676554,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,1298,37719.94237910084,0,0,0,228.8117497303332 -7701,9509,17266,-9,17263,-9,1,0,22,0,1,0,2,2,-9,0,4,7.073359821261987,6.978730355552133,0,0,0,-971.3948566463039,0,2,-9,2019,11,0,30,19,1,0,1,4.911429374898063,4.911429374898063,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,5,2,2,1,1298,37719.94237910084,0,0,0,228.8117497303332 -7701,9510,17267,-9,17263,-9,1,1,19,0,1,0,3,3,-9,0,5,7.427029762522902,7.801609311953611,0,0,0,-966.7307378381552,-9,2,-9,2019,6,1,70,0,1,1,1,3.070641830803062,3.070641830803062,0,0,0,1.503087452482603,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,1,2,3,1,606,32151.50955572118,-32258.92761649593,0,0,832.2008164846189 -7702,9511,17268,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-916.694491611982,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,30.36,34.93,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,684,190816.5638077304,0,0,0,552.3603848254421 -7702,9512,17269,-9,17268,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-979.9044920743089,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,700,-145699.1638574061,0,0,0,0 -7703,9513,17270,17271,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.640061161960395,8.611210845673126,0,10,0,67.147687805926,0,-9,-9,2019,7,0,40,46,1,0,0,20.26951146272274,20.26951146272274,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,6.666666666666667,1,1,0,0,12,13,4,1,411,653394.8994728243,259153.3382765696,254345.5400818252,0,2741.526053164877 -7703,9513,17271,17270,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.430198715644448,6.371591161706372,32,0,13.81994446939804,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.960547771724658,54.77,55.87,57.16,56.15,8.333333333333334,1,1,1,0,11,13,4,1,411,653394.8994728243,259153.3382765696,254345.5400818252,0,2741.526053164877 -7703,9514,17272,-9,17271,17270,1,0,25,0,0,0,2,2,-9,0,4,8.330483342803728,8.41827891346113,0,0,0,-1050.552995106774,0,2,2,2019,12,0,50,36,1,0,1,9.552086479281952,9.552086479281952,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,353,80226.651428845,37074.06828957907,0,0,1552.3277579427 -7704,9515,17273,17274,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,5.197544911375329,5.180986579103513,63,-3,19.62866354728898,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.022546844666638,5.283527246731263,54.79,55.86,55.96,49.93,8.333333333333334,1,1,0,0,0,7,3,1,227,1060097.184997289,308109.2162839887,440715.5400044284,0,2021.452524485459 -7704,9515,17274,17273,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.700576366247159,7.45045345902741,63,3,-21.98092561629783,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.718059089801658,7.963566404349997,55.96,49.93,54.79,55.86,8.333333333333334,1,1,0,0,0,7,3,1,227,1060097.184997289,308109.2162839887,440715.5400044284,0,2021.452524485459 -7705,9516,17275,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.801525946850338,8.236249085287534,0,0,-787.8467633569527,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.293166298226808,7.90953660341925,62.72,46.72,-9,-9,10,1,1,0,0,0,12,3,0,164,661946.0836392955,358670.3425041767,98461.27764088936,0,2978.763412647047 -7705,9517,17276,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.598338391782105,8.756683411918093,0,0,0,-966.6870866425298,0,-9,-9,2019,9,0,40,36,1,1,0,16.23826496806202,16.23826496806202,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,12,5,0,379,787867.5560442554,730051.4525061145,197321.7279646937,0,2157.369840977879 -7706,9518,17277,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.975515940035067,7.599217429071547,0,0,0,-901.9138502864885,0,3,2,2019,13,3,30,30,1,3,0,9.969213720794976,9.969213720794976,0,0,0,0,14.5,1,1,0,0,0,47.23,39.35,-9,-9,3.333333333333333,1,1,0,1,13,7,3,1,1041,-123941.9759055772,195983.4204886248,0,0,971.4775745107576 -7706,9519,17278,-9,17277,-9,1,1,24,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1152.238443476828,0,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,15.22,59.58,-9,-9,1.666666666666667,1,1,1,1,2,7,2,1,1779,102582.2566713677,0,0,0,254.2737030048803 -7707,9520,17279,-9,17280,17281,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.201793617158,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,1397,476020.2766038457,42008.70623483106,365097.4238296205,64607.18757328406,2629.883091316091 -7707,9520,17280,17281,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,0,0,0,12,-12,-3.176558174432469,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,54.37,54.8,7,2,3,0,0,2,8,3,0,1397,476020.2766038457,42008.70623483106,365097.4238296205,64607.18757328406,2629.883091316091 -7707,9520,17281,17280,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,7.763899127188425,7.756228168890034,0,12,12,-62.15558800098938,0,2,2,2019,8,0,30,30,1,0,0,11.01444726245922,11.01444726245922,0,0,0,0,14.5,1,1,0,0,0,54.37,54.8,48,57,6.666666666666667,2,3,0,0,8,8,3,0,1397,476020.2766038457,42008.70623483106,365097.4238296205,64607.18757328406,2629.883091316091 -7708,9521,17282,17284,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,5.150144465518013,5.220976139851107,0,16,3,136.2894896522775,0,2,1,2019,11,0,30,30,1,0,0,.6729130819156162,.6729130819156162,0,0,0,0,0,0,0,0,0,0,54.23,46.77,57.16,56.15,8.333333333333334,1,1,0,1,8,8,5,1,301.6666666666667,140983.5225385367,-6334.774348585142,0,0,4234.746454836471 -7708,9521,17283,-9,17284,17282,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.946449388798,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,301.6666666666667,140983.5225385367,-6334.774348585142,0,0,4234.746454836471 -7708,9521,17284,17282,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.28878176908759,9.677612381462056,0,16,-3,56.49311333562569,0,1,1,2019,12,0,83,0,1,0,0,16.64710438318892,16.64710438318892,0,0,0,0,0,0,0,0,3.541986180535216,0,57.16,56.15,54.23,46.77,8.333333333333334,1,1,0,0,8,8,5,1,301.6666666666667,140983.5225385367,-6334.774348585142,0,0,4234.746454836471 -7709,9522,17285,17286,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.870702923940524,7.666316304268594,28,-3,22.23587751442277,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.863784528829858,44.36,54.04,58.15,52.91,6.666666666666667,1,1,0,0,5,9,3,1,788,1811692.446896409,735925.6919414256,444795.9261896512,0,2684.308990000001 -7709,9522,17286,17285,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.767314025080148,6.947721610791355,9,3,-14.57391444952284,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.971160903676693,58.15,52.91,44.36,54.04,10,1,1,0,0,7,9,3,1,788,1811692.446896409,735925.6919414256,444795.9261896512,0,2684.308990000001 -7710,9523,17287,17288,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.689457821758054,8.709072142991147,0,6,2,-50.4201286398466,0,2,2,2019,5,0,65,65,1,0,0,12.45037125294534,12.45037125294534,0,0,0,0,0,1,1,0,.5631776449155246,0,57.41,54.88,41.45,55.24,5,1,1,0,0,5,1,4,0,842.5,475090.2197743995,89988.13405206305,307497.3969119369,7902.49542741912,4003.215485387013 -7710,9523,17288,17287,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.180407172539235,7.257207279227184,6.103249174787841,14,-2,-89.47364822351382,0,2,2,2019,17,6,23,28,1,6,0,7.243670183546911,7.243670183546911,0,0,0,0,27,1,1,0,6.207298584397837,0,41.45,55.24,57.41,54.88,3.333333333333333,1,1,0,0,7,1,4,0,842.5,475090.2197743995,89988.13405206305,307497.3969119369,7902.49542741912,4003.215485387013 -7710,9523,17289,-9,17288,17287,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.1026758032915,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,1,4,0,842.5,475090.2197743995,89988.13405206305,307497.3969119369,7902.49542741912,4003.215485387013 -7710,9523,17290,-9,17288,17287,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1067.51695674828,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,0,842.5,475090.2197743995,89988.13405206305,307497.3969119369,7902.49542741912,4003.215485387013 -7710,9524,17291,-9,17288,17287,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-869.9100535223271,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,4.044901084114149,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,1,1,1,0,482,57922.17964908238,0,0,0,337.5915421729881 -7711,9525,17292,-9,17293,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-864.5526157560571,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,1,0,599.25,-34259.36431265785,52885.71599077086,0,0,823.9638974250385 -7711,9525,17293,-9,-9,-9,1,0,59,0,3,0,2,2,-9,0,5,0,0,0,0,0,-1028.9063947502,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,5,11,1,0,599.25,-34259.36431265785,52885.71599077086,0,0,823.9638974250385 -7711,9525,17294,-9,17293,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.381008856973,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,599.25,-34259.36431265785,52885.71599077086,0,0,823.9638974250385 -7711,9525,17295,-9,17293,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.3803506113553,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,6,-9,0,0,11,1,0,599.25,-34259.36431265785,52885.71599077086,0,0,823.9638974250385 -7712,9526,17296,-9,-9,-9,1,0,51,0,0,0,1,1,-9,1,2,0,0,0,0,0,-915.6708452462417,0,2,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39.61,17.2,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,140,3647.960501916268,0,0,0,1210.842839784266 -7713,9527,17297,17298,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,6.332920911502747,6.287143635500367,0,10,-10,67.4281746713649,0,-9,-9,2019,9,0,14,10,1,0,0,4.003632049161343,4.003632049161343,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.81,44.2,8.333333333333334,2,3,0,0,11,8,2,1,1276.5,2570904.647835481,763774.385627816,1797725.387662195,0,1238.528703714485 -7713,9527,17298,17297,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,0,0,37,10,64.99355632968714,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.811259176030148,0,45.81,44.2,54.2,57.49,6.666666666666667,1,1,0,0,12,8,2,1,1276.5,2570904.647835481,763774.385627816,1797725.387662195,0,1238.528703714485 -7713,9528,17299,-9,17297,17298,1,0,30,0,0,0,2,2,-9,0,2,7.733007702980654,7.558467630011131,0,0,0,-1052.197727828243,0,1,1,2019,12,0,2,2,1,0,1,97.33492435327767,97.33492435327767,0,0,0,0,0,1,1,0,.7785925810864109,0,47.55,33.8,-9,-9,5,4,2,0,0,7,8,3,1,563,244708.1512960534,-2208.777696693349,0,0,1582.678061624494 -7714,9529,17300,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.352806756100585,7.375130076831112,4.481491130300602,0,0,-1051.349014949117,0,2,2,2019,12,0,30,30,1,0,0,6.406952144682134,6.406952144682134,0,0,0,0,0,1,1,0,0,4.225406286225374,38.01,34.13,-9,-9,5,1,1,0,0,11,2,3,0,192,84553.24277891079,37574.88464254906,0,0,863.6575243691859 -7715,9530,17301,17302,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,5,-7,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,71.5,1,1,0,0,0,39.59,32.09,37.73,26.01,5,1,1,0,0,0,13,1,0,337.5,204403.5829687769,0,0,0,2724.522116598027 -7715,9530,17302,17301,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,5,7,0,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,37.73,26.01,39.59,32.09,5,1,1,0,0,0,13,1,0,337.5,204403.5829687769,0,0,0,2724.522116598027 -7715,9531,17303,-9,17301,17302,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1146.451076724836,0,2,3,2019,21,7,0,40,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,-9,-9,5,1,1,1,0,3,13,1,0,561,-158125.5381268465,0,0,0,0 -7716,9532,17304,-9,17305,17307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.459217827563,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,470,524871.1507866302,186369.389898178,494431.533760364,200546.0510769871,3674.166607768353 -7716,9532,17305,17307,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.260790718505858,8.54445742135435,0,12,-1,31.27286021445906,0,2,2,2019,6,1,38,38,1,1,0,15.8262108300197,15.8262108300197,0,0,0,0,0,1,1,0,0,0,50.51,56.39,48.66,49.1,8.333333333333334,1,1,0,0,5,9,5,0,470,524871.1507866302,186369.389898178,494431.533760364,200546.0510769871,3674.166607768353 -7716,9532,17306,-9,17305,17307,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.1726589397098,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,0,470,524871.1507866302,186369.389898178,494431.533760364,200546.0510769871,3674.166607768353 -7716,9532,17307,17305,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.366149784637152,8.957687874832711,0,8,1,-14.70434406359941,0,2,2,2019,9,0,40,37,1,0,0,15.50071820414095,15.50071820414095,0,0,0,0,0,1,1,0,0,0,48.66,49.1,50.51,56.39,6.666666666666667,1,1,0,0,11,9,5,0,470,524871.1507866302,186369.389898178,494431.533760364,200546.0510769871,3674.166607768353 -7717,9533,17308,17309,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,9,-2,-88.91643286652425,0,-9,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.0389896421134,0,42.95,21.27,49.27,56.95,8.333333333333334,1,1,0,0,8,11,4,0,1166.5,1072785.1015021,914372.005371182,137031.2035316866,0,2183.202273302062 -7717,9533,17309,17308,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.765450883077214,8.914867948964242,0,9,2,34.69850079699545,0,3,3,2019,8,0,48,45,1,0,0,12.52779838921847,12.52779838921847,0,0,0,0,0,0,0,0,0,0,49.27,56.95,42.95,21.27,10,1,1,0,0,11,11,4,0,1166.5,1072785.1015021,914372.005371182,137031.2035316866,0,2183.202273302062 -7718,9534,17310,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-980.1629582396173,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.13,53.21,-9,-9,3.333333333333333,1,1,0,1,6,1,1,1,267,109551.3438647404,0,0,0,86.41766733578577 -7719,9535,17311,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.502878986831362,7.370562565839299,0,0,-951.3920151652645,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.017494246736931,7.323766123759409,62.42,26.88,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,345,198776.6314334869,24868.56818785463,68507.24405467996,0,1894.624088144773 -7720,9536,17312,-9,17315,17314,1,1,26,0,0,0,1,1,-9,0,4,8.142135453865587,7.814699866636049,0,0,0,-1028.898430078465,0,2,2,2019,5,0,40,43,1,0,1,8.099370114391252,8.099370114391252,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,10,9,4,1,378,129355.131536559,0,0,0,1521.966620598611 -7720,9537,17313,-9,17315,17314,1,1,22,0,0,0,2,2,-9,0,4,8.834409756246956,8.723153659767458,0,0,0,-790.1396532753183,0,3,2,2019,13,2,40,30,1,2,1,19.49696574363811,19.49696574363811,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,9,5,1,2687,61904.25053006238,0,0,0,2315.708849637347 -7720,9538,17314,17315,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.547261061397551,8.677687039853101,0,3,0,6.396966947276165,0,-9,-9,2019,8,0,40,37,1,0,0,12.72100584461645,12.72100584461645,0,0,0,0,0,0,0,0,0,0,51.72,51.9,48.02,34.89,8.333333333333334,2,3,0,0,3,9,5,1,677.5,482537.6881872499,-7206.253678772353,270761.7425790851,105238.1569983017,2794.861213552498 -7720,9538,17315,17314,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,7.526462295437914,7.880053655430346,4.108764550358456,3,0,-88.05801791215163,0,3,2,2019,12,1,25,26,1,1,0,9.356110247729127,9.356110247729127,0,0,0,0,0,0,0,0,0,4.099989276448921,48.02,34.89,51.72,51.9,8.333333333333334,2,3,0,0,10,9,5,1,677.5,482537.6881872499,-7206.253678772353,270761.7425790851,105238.1569983017,2794.861213552498 -7721,9539,17316,17317,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,7.426156549504262,7.552203472316005,71,3,56.19324121676677,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.489066617700034,34.92,20.92,57.68,42.36,5,1,1,0,0,0,2,2,1,317,372549.3717630458,231584.8824320764,158590.48563418,0,2228.467567212288 -7721,9539,17317,17316,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,71,-3,-128.9821952407433,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,9.788754511279837,0,0,1,1,0,2.737643544577455,0,57.68,42.36,34.92,20.92,8.333333333333334,1,1,0,0,0,2,2,1,317,372549.3717630458,231584.8824320764,158590.48563418,0,2228.467567212288 -7722,9540,17318,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1047.910786035561,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,5,1,1,0,0,0,7,1,0,477,0,0,0,0,933.3112476663337 -7723,9541,17319,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.098032407578941,8.23389506023436,0,0,-806.6885541199927,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.113180173300905,7.903975186046,54.66,47.77,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,392,-59479.70999694588,0,0,0,2371.970941905226 -7724,9542,17320,17321,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.769349213357303,7.911080114074954,6.313668990303547,9,3,44.90296153862487,-9,3,3,2019,11,0,60,0,1,0,0,4.250282194431287,4.250282194431287,0,0,0,0,0,0,0,0,0,6.222056408652981,50.44,43.31,52.33,50.78,5,1,1,0,0,10,11,4,1,557.5,374355.1905372296,226096.7724745052,199064.3269273776,14223.95789313715,1797.149225745374 -7724,9542,17321,17320,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.64690968628959,7.792454428166094,0,9,-3,-32.30253487341165,-9,2,2,2019,6,0,22,0,1,0,0,11.38152783646077,11.38152783646077,0,0,0,0,0,0,0,0,0,0,52.33,50.78,50.44,43.31,8.333333333333334,1,1,0,0,10,11,4,1,557.5,374355.1905372296,226096.7724745052,199064.3269273776,14223.95789313715,1797.149225745374 -7725,9543,17322,17323,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.642192894657631,8.491101536077887,0,22,0,23.81482079756103,-9,3,3,2019,12,0,60,0,1,0,0,9.653734808970706,9.653734808970706,0,0,0,0,0,1,1,0,0,0,44.13,38.11,40.77,55.51,3.333333333333333,1,1,0,0,10,13,5,1,313,894221.0272465579,867360.8206563508,169510.7086856722,0,3565.435861170913 -7725,9543,17323,17322,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.648665751977379,7.944233173301582,0,22,0,85.79392374791207,0,2,2,2019,10,1,37,34,1,1,0,7.750763499532543,7.750763499532543,0,0,0,0,2,1,1,0,0,0,40.77,55.51,44.13,38.11,8.333333333333334,1,1,0,0,9,13,5,1,313,894221.0272465579,867360.8206563508,169510.7086856722,0,3565.435861170913 -7725,9544,17324,-9,17323,17322,1,1,18,0,0,0,2,2,1,0,4,7.162332620346227,7.359876115601302,0,0,0,-999.5593790326162,-9,2,2,2019,14,3,42,0,1,3,1,5.017030796947233,5.017030796947233,0,0,0,0,0,1,1,0,6.058746028189586,0,43.71,59.71,-9,-9,6.666666666666667,1,1,0,0,1,13,3,1,861,199833.4606535018,0,0,0,368.685020318326 -7725,9545,17325,-9,17323,17322,1,1,18,0,0,0,2,2,-9,0,4,6.987453193816379,7.349190055850412,0,0,0,-987.3575240091842,0,2,2,2019,8,0,41,0,1,0,1,3.429220901309763,3.429220901309763,0,0,0,0,0,1,1,0,1.791994680828934,0,43.84,57.1,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1229,20658.52127970322,0,0,0,829.6796284451168 -7726,9546,17326,17327,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.992655428040273,8.87112785821137,0,27,1,-65.02542018043036,0,2,1,2019,10,1,50,56,1,1,0,14.6455436857628,14.6455436857628,0,0,0,0,0,0,0,0,0,0,42.3,57.54,40.25,46.19,6.666666666666667,2,3,0,0,8,9,5,0,1753.5,2554006.971724218,1530394.681506934,574876.5890972235,0,5406.387883629588 -7726,9546,17327,17326,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.682334827425498,8.967553700047317,0,27,-1,115.7561223496732,0,3,2,2019,12,2,20,30,1,2,0,40.75436050761945,40.75436050761945,0,0,0,0,0,0,0,0,0,0,40.25,46.19,42.3,57.54,3.333333333333333,2,3,0,0,5,9,5,0,1753.5,2554006.971724218,1530394.681506934,574876.5890972235,0,5406.387883629588 -7726,9547,17328,-9,17327,17326,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-958.8411431354639,0,1,1,2019,27,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,33.41,61.57,-9,-9,6.666666666666667,4,5,1,1,0,9,1,0,1427,-12317.25615841864,0,0,0,0 -7727,9548,17329,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.840269507738213,5.948597520561654,0,0,-920.2423777716116,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.887432039596241,50.03,39.39,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1009,335899.9649569514,113791.89399925,141788.5633253226,0,1722.939370893838 -7728,9549,17330,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,7.52838491239841,7.968740218541252,0,0,0,-1004.829932393281,0,-9,-9,2019,12,2,30,30,1,2,0,10.12824998880766,10.12824998880766,0,0,0,0,0,1,1,0,.7602452414918142,0,39.9,33.33,-9,-9,5,1,1,0,0,10,12,3,0,669,734329.4943133567,561099.2519053572,260381.5295872653,42463.44069711798,931.5981016674638 -7729,9550,17331,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.798950836266399,7.892239705567082,0,0,-977.8975721922396,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.601898380524522,7.942639956220716,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,625,916763.1597437285,509976.1607380946,309504.3303898679,0,2204.428943731234 -7730,9551,17332,17333,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.868378473590312,8.663494898518209,0,8,0,-118.7932766970075,0,-9,-9,2019,10,0,55,60,1,1,0,11.49147663279335,11.49147663279335,0,0,0,0,0,1,1,0,0,0,52,48,32.66,35.2,7,1,1,0,0,1,5,5,1,931,1012912.571460445,597677.2136544444,140767.8042682798,0,4597.562927099389 -7730,9551,17333,17332,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,8.044563028965616,8.053095346500001,46,0,-134.5708938596707,0,-9,-9,2019,32,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.601102143628591,8.126938049637619,32.66,35.2,52,48,3.333333333333333,1,1,0,0,0,5,5,1,931,1012912.571460445,597677.2136544444,140767.8042682798,0,4597.562927099389 -7731,9552,17334,17335,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,9,-2,24.69397118855255,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.03,29.36,47.44,21.72,8.333333333333334,1,1,0,0,0,4,2,1,846.5,406895.1924804131,241473.1519456229,194535.7212497007,0,1788.346586942874 -7731,9552,17335,17334,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.547851695739516,7.359947647574835,9,2,-1.977364042505086,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.806608425900664,47.44,21.72,48.03,29.36,3.333333333333333,1,1,0,0,0,4,2,1,846.5,406895.1924804131,241473.1519456229,194535.7212497007,0,1788.346586942874 -7732,9553,17336,17337,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.675187359272259,8.569593188872322,0,7,-1,-73.32423136604669,0,-9,-9,2019,10,3,60,55,1,3,0,11.04117059364296,11.04117059364296,0,0,0,0,0,0,0,0,3.744042060457542,0,45.39,47.2,41.76,59.08,6.666666666666667,2,3,0,0,1,8,5,1,1132,1009176.881747587,363142.8226209196,534115.8607340003,17037.43955142167,5049.856567163838 -7732,9553,17337,17336,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.28582081087769,8.174214883979939,0,11,1,-37.6538521541661,0,2,3,2019,12,2,50,0,1,2,0,10.66332909089063,10.66332909089063,0,0,0,0,0,0,0,0,8.040491465229639,0,41.76,59.08,45.39,47.2,5,2,3,0,0,0,8,5,1,1132,1009176.881747587,363142.8226209196,534115.8607340003,17037.43955142167,5049.856567163838 -7732,9553,17338,-9,17337,17336,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.637143091872,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,1132,1009176.881747587,363142.8226209196,534115.8607340003,17037.43955142167,5049.856567163838 -7733,9554,17339,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.560861402303289,8.76024776319149,0,0,0,-946.8676219806479,0,2,2,2019,10,0,50,60,1,0,0,15.19112302774681,15.19112302774681,0,0,0,0,0,0,0,0,7.213181335393226,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,6,6,5,1,437,113062.5912730877,7420.021951048276,0,0,2335.437778702229 -7734,9555,17340,17341,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.583356098988714,8.612988202062477,0,9,0,-6.256574504309509,-9,2,2,2019,6,0,40,0,1,0,0,19.37738355827605,19.37738355827605,0,0,0,0,0,0,0,0,2.487211040913194,0,54.1,59.11,34.57,50.44,8.333333333333334,1,1,0,0,10,2,5,1,931,1261873.732689437,1184275.703752141,235674.0644403709,160481.8220087911,4098.422118053591 -7734,9555,17341,17340,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.380689744612775,8.501035495380416,0,9,0,100.9855786721947,0,-9,-9,2019,18,6,38,38,1,6,0,16.10650165126012,16.10650165126012,0,0,0,0,0,0,0,0,0,0,34.57,50.44,54.1,59.11,6.666666666666667,1,1,0,0,10,2,5,1,931,1261873.732689437,1184275.703752141,235674.0644403709,160481.8220087911,4098.422118053591 -7735,9556,17342,17343,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.78143010445397,7.755538386498657,0,4,4,64.4002161468382,0,3,3,2019,22,10,40,38,1,10,0,9.850018426499387,9.850018426499387,0,0,0,0,0,0,0,0,0,0,35.2,61.14,57.06,57.76,8.333333333333334,1,1,0,0,5,9,5,0,492,197510.5269700602,17342.8352480205,220460.1360760942,113931.5271869436,2788.474127172322 -7735,9556,17343,17342,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.475631740826952,8.359835329498312,0,4,-4,-.894932208501461,0,-9,-9,2019,6,0,60,55,1,0,0,9.222287758349365,9.222287758349365,0,0,0,0,0,0,0,0,2.240702045462271,0,57.06,57.76,35.2,61.14,10,1,1,0,0,9,9,5,0,492,197510.5269700602,17342.8352480205,220460.1360760942,113931.5271869436,2788.474127172322 -7735,9557,17344,-9,17342,-9,1,1,23,0,0,0,2,2,-9,0,4,8.353704076478085,8.578302761714996,0,0,0,-897.5050845839016,0,2,3,2019,5,0,45,39,1,0,1,10.5369674266206,10.5369674266206,0,0,0,0,0,0,0,0,0,0,56.77,52.22,-9,-9,6.666666666666667,1,1,0,0,6,9,4,0,437,0,0,0,0,1482.851059636879 -7736,9558,17345,17346,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,49,1,-74.73846713194884,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,15.71041133745899,0,0,1,1,0,5.927965184815785,0,54.88,35.34,61.11,48.86,6.666666666666667,1,1,0,0,0,4,2,1,305.5,379253.9917799798,-20814.55185295011,219306.7224703582,0,1749.323407911736 -7736,9558,17346,17345,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,4.805699742324403,4.659014407234675,49,-1,197.8386597336312,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.485358709035137,4.321450160360415,61.11,48.86,54.88,35.34,8.333333333333334,1,1,0,0,0,4,2,1,305.5,379253.9917799798,-20814.55185295011,219306.7224703582,0,1749.323407911736 -7737,9559,17347,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.277694702899696,8.375570171154779,6.427741060294422,0,0,-945.9314726472145,0,-9,-9,2019,7,1,34,32,1,1,0,9.830439992137524,9.830439992137524,0,0,0,0,0,1,1,0,4.198516024448071,6.685092857743705,59.7,32.49,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,1157,39317.7129352976,-74240.0196461244,0,0,1905.085444457829 -7738,9560,17348,17350,-9,-9,1,0,39,0,2,0,2,2,-9,1,1,0,0,0,12,0,0,0,3,3,2019,23,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,62.66,52.4,3.333333333333333,2,3,0,1,0,2,1,1,743,-30955.4559114375,0,0,0,1580.523023879628 -7738,9560,17349,-9,17348,17350,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.9461010596735,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,1,1,743,-30955.4559114375,0,0,0,1580.523023879628 -7738,9560,17350,17348,-9,-9,1,1,39,0,2,0,2,2,-9,1,3,0,0,0,12,0,0,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.66,52.4,16.04,23.99,8.333333333333334,2,3,0,1,1,2,1,1,743,-30955.4559114375,0,0,0,1580.523023879628 -7738,9560,17351,-9,17348,17350,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.389603681357,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,1,1,743,-30955.4559114375,0,0,0,1580.523023879628 -7739,9561,17352,17353,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,45,-2,70.88716173925276,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.185151894923131,0,59.31,49.81,52.91,55.33,8.333333333333334,1,1,0,0,11,5,2,1,824,784886.5801168247,632263.6563365883,118242.4244187534,0,2131.309608364198 -7739,9561,17353,17352,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,6.619636412316482,6.415051629324669,10,2,-112.2192661460815,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.669517521660603,6.781101794361016,52.91,55.33,59.31,49.81,8.333333333333334,1,1,0,0,11,5,2,1,824,784886.5801168247,632263.6563365883,118242.4244187534,0,2131.309608364198 -7740,9562,17354,17355,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.488076313223099,8.676980307019249,0,32,4,-217.8921117376174,0,2,2,2019,7,0,50,50,1,0,0,15.65294829508522,15.65294829508522,0,0,0,0,0,0,0,0,4.800040964155946,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,8,4,5,1,1064.5,3399640.333740572,231797.6444664882,694538.6967757314,0,3872.903081490633 -7740,9562,17355,17354,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.046115473654707,7.995287104598654,0,32,-4,-8.222971437298957,0,3,2,2019,7,0,50,45,1,0,0,6.975150005138843,6.975150005138843,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,10,1,1,0,0,5,4,5,1,1064.5,3399640.333740572,231797.6444664882,694538.6967757314,0,3872.903081490633 -7741,9563,17356,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.390759530499802,8.283446847483242,0,0,0,-974.731370467989,0,3,3,2019,13,2,44,38,1,2,0,11.64764249531844,11.64764249531844,0,0,0,0,0,0,0,0,0,0,45.17,41.54,-9,-9,1.666666666666667,1,1,0,0,6,8,4,0,1797,-7257.517360940253,-86776.78752948,0,0,1161.524597486658 -7742,9564,17357,-9,17358,-9,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-963.5791241712387,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,8,4,0,1642.333333333333,83794.26501822892,27287.29620830602,301916.4575237447,216411.7352484853,3430.041493644742 -7742,9564,17358,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.752945550235319,8.747322709552664,0,0,0,-1059.722216999016,-9,2,2,2019,5,0,30,0,1,0,0,19.20362635776576,19.20362635776576,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,3,4,0,0,8,8,4,0,1642.333333333333,83794.26501822892,27287.29620830602,301916.4575237447,216411.7352484853,3430.041493644742 -7742,9564,17359,-9,17358,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.2415577269458,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,1642.333333333333,83794.26501822892,27287.29620830602,301916.4575237447,216411.7352484853,3430.041493644742 -7742,9565,17360,-9,17358,-9,1,0,21,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1050.274997396863,-9,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,0,8,1,0,872,-123771.0132950752,0,0,0,-240.1724088569817 -7743,9566,17361,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.067081351003675,6.04350910780385,0,0,-994.0452085657312,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.941556421436074,6.015871832019534,57.33,53.46,-9,-9,10,1,1,0,0,0,9,2,1,1803,192656.7618743239,27345.60073769748,222843.2082335151,0,1427.153416780618 -7744,9567,17362,-9,17364,17363,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.0007299407747,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.012568897340399,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,4,1,815.6666666666666,927344.6660497822,389815.705967998,600699.0131242472,0,3904.513217570643 -7744,9567,17363,17364,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,8.692668882126467,8.561493241727314,0,27,4,-37.63180872573673,0,1,1,2019,6,0,43,40,1,0,0,21.32392175989311,21.32392175989311,0,0,0,0,0,1,1,0,2.833185081110828,0,62.39,56.71,62.39,56.71,10,2,3,0,0,7,10,4,1,815.6666666666666,927344.6660497822,389815.705967998,600699.0131242472,0,3904.513217570643 -7744,9567,17364,17363,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,7.383082760383979,7.07882671379397,0,27,-4,49.15346852993453,0,1,1,2019,6,0,24,22,1,0,0,6.105414807894296,6.105414807894296,0,0,0,0,0,1,1,0,7.293649672361405,0,62.39,56.71,62.39,56.71,10,2,3,0,0,8,10,4,1,815.6666666666666,927344.6660497822,389815.705967998,600699.0131242472,0,3904.513217570643 -7744,9568,17365,-9,17364,17363,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-946.6977937538933,-9,1,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,5,2,3,0,0,0,10,1,1,902,-73864.42593446431,0,0,0,0 -7745,9569,17366,17367,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.03587706155486,8.893874950526813,8.075120523918782,8,3,-94.9308025494762,0,-9,-9,2019,6,0,18,24,1,0,0,22.02504772098991,22.02504772098991,0,0,0,0,71.5,1,1,0,7.307961583936052,7.79782510875823,61.43,43.34,43.03,14.16,8.333333333333334,1,1,0,0,10,4,4,1,284.5,886790.1166911335,531353.1902007066,305486.9241652709,0,5173.164069691709 -7745,9569,17367,17366,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,4.743579483321373,5.082409513817679,47,-3,19.96371820204478,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.461169074086364,4.744554815359021,43.03,14.16,61.43,43.34,1.666666666666667,1,1,0,0,0,4,4,1,284.5,886790.1166911335,531353.1902007066,305486.9241652709,0,5173.164069691709 -7746,9570,17368,17369,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.196507784257854,8.336671205642778,0,9,8,-92.15425739876969,0,-9,-9,2019,12,0,35,35,1,0,0,13.24011511689267,13.24011511689267,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.22,44.32,8.333333333333334,1,1,0,0,11,12,5,1,335.5,581840.4340569391,526297.9424998785,0,0,3387.96621427538 -7746,9570,17369,17368,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.3698426504975,8.355059260716837,0,9,-8,79.07308027660952,0,3,2,2019,21,9,41,37,1,9,0,20.07711624940759,20.07711624940759,0,0,0,0,0,1,1,0,0,0,33.22,44.32,54.37,54.8,3.333333333333333,1,1,0,0,11,12,5,1,335.5,581840.4340569391,526297.9424998785,0,0,3387.96621427538 -7747,9571,17370,17371,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,1,-3,0,-9,-9,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,17.5,62.7,27.92,35.87,3.333333333333333,1,1,0,1,0,6,1,0,473.5,0,0,0,0,1165.022157435153 -7747,9571,17371,17370,-9,-9,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,1,3,0,0,2,1,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,27.92,35.87,17.5,62.7,0,1,1,0,1,5,6,1,0,473.5,0,0,0,0,1165.022157435153 -7748,9572,17372,-9,17375,17373,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-850.6306170860967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,11,4,1,773.25,110209.7703470069,48920.62400977254,88716.35005010538,55881.41989421427,3116.188376911423 -7748,9572,17373,17375,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.380863622844135,8.390879753067951,0,1,0,-108.6934097499323,-9,-9,-9,2019,8,0,60,0,1,0,0,9.023236290382421,9.023236290382421,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.29,46.1,6.666666666666667,1,1,0,0,5,11,4,1,773.25,110209.7703470069,48920.62400977254,88716.35005010538,55881.41989421427,3116.188376911423 -7748,9572,17374,-9,17375,17373,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-886.604159458826,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,773.25,110209.7703470069,48920.62400977254,88716.35005010538,55881.41989421427,3116.188376911423 -7748,9572,17375,17373,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.763475820763952,7.92192618163708,0,1,0,42.90460352664498,-9,2,2,2019,12,0,40,0,1,0,0,5.889901243457275,5.889901243457275,0,0,0,0,0,1,1,0,0,0,46.29,46.1,51.83,57.2,6.666666666666667,1,1,0,0,8,11,4,1,773.25,110209.7703470069,48920.62400977254,88716.35005010538,55881.41989421427,3116.188376911423 -7749,9573,17376,17377,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,8.085181946362663,8.253605480017768,0,10,-6,-76.24151772749839,0,2,2,2019,22,9,35,35,1,9,0,14.18348638859582,14.18348638859582,0,0,0,0,0,1,1,0,0,0,34.74,65.34999999999999,47.24,53.95,3.333333333333333,1,1,0,0,11,11,4,1,1487,1827728.050579815,1237158.581218076,395980.8258574298,0,3877.881868604576 -7749,9573,17377,17376,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.557523485237583,8.623510558859222,0,10,6,-88.73096299752781,0,2,2,2019,8,0,40,40,1,0,0,15.07355555102912,15.07355555102912,0,0,0,0,0,1,1,0,3.254858820920727,0,47.24,53.95,34.74,65.34999999999999,6.666666666666667,1,1,0,0,11,11,4,1,1487,1827728.050579815,1237158.581218076,395980.8258574298,0,3877.881868604576 -7750,9574,17378,-9,17379,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.7381228257225,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,4,1,1,593.5,-137153.3695736752,0,0,0,1220.506315520035 -7750,9574,17379,-9,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1066.145709770256,0,3,3,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,34.39,23.34,-9,-9,5,2,3,0,1,0,4,1,1,593.5,-137153.3695736752,0,0,0,1220.506315520035 -7750,9575,17380,-9,17379,-9,1,0,21,0,1,0,2,2,1,0,4,6.804904615035633,6.573692292208569,0,0,0,-851.18190184881,-9,2,-9,2019,23,10,14,0,1,10,1,8.570272665588268,8.570272665588268,0,0,0,.6772444736856098,0,1,1,0,0,0,32.76,57.87,-9,-9,6.666666666666667,2,3,0,0,3,4,2,1,559,43109.95996330933,0,0,0,249.7838204122189 -7750,9575,17381,-9,17380,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1186.819513901432,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,4,2,1,559,43109.95996330933,0,0,0,249.7838204122189 -7750,9576,17382,-9,17379,-9,1,0,19,0,1,1,2,0,0,1,4,0,0,0,0,0,-990.5761448198713,-9,2,-9,2019,11,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,568,-125879.3128891856,0,0,0,904.4034537641854 -7750,9577,17383,-9,17379,-9,1,0,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-967.1712188164627,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,4,1,1,1977,-25517.9768991865,0,0,0,0 -7751,9578,17384,17385,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,10,4,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,35.74,17.38,28.38,50.87,1.666666666666667,1,1,0,0,0,11,1,0,812.5,-77406.99443721623,0,0,0,941.7265031013117 -7751,9578,17385,17384,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,0,0,0,10,-4,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,0,1,1.30794561059483,0,28.38,50.87,35.74,17.38,1.666666666666667,4,2,0,0,0,11,1,0,812.5,-77406.99443721623,0,0,0,941.7265031013117 -7752,9579,17386,17387,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,31,-3,0,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,21.53190997180486,0,74.5,1,1,0,1.330849395589128,0,50.34,19.4,52,46,3.333333333333333,1,1,0,0,0,12,1,0,433,458863.8989264964,-51519.52976045907,265157.5713291301,0,2134.912642407849 -7752,9579,17387,17386,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,31,3,0,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,50.34,19.4,8,1,1,0,0,0,12,1,0,433,458863.8989264964,-51519.52976045907,265157.5713291301,0,2134.912642407849 -7753,9580,17388,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.533045511389659,7.642396629602074,0,0,0,-922.3153288755891,0,2,-9,2019,11,0,30,0,1,0,0,7.295234901793822,7.295234901793822,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,2094,-3655.545362309294,3845.833403299701,0,0,2532.721432123428 -7753,9580,17389,-9,17388,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.146570015815,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,2094,-3655.545362309294,3845.833403299701,0,0,2532.721432123428 -7754,9581,17390,17391,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.397320961367745,7.603857789042584,47,5,-134.0791510923327,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.482034590973374,43.5,27.4,56.75,25.8,6.666666666666667,1,1,0,0,0,11,3,1,239,619143.7093012499,337095.9645037885,184719.9082864625,0,1751.347812140683 -7754,9581,17391,17390,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-5,-68.29898252219016,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.75,25.8,43.5,27.4,8.333333333333334,1,1,0,0,0,11,3,1,239,619143.7093012499,337095.9645037885,184719.9082864625,0,1751.347812140683 -7755,9582,17392,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.0665019585236,7.123404393292155,0,0,-1012.402268977686,-9,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,6.932325753744545,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,602,639915.5337746823,414738.5402978103,207350.1933547382,0,652.3408277514397 -7756,9583,17393,17394,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.75540042846022,6.693673011822048,58,3,-62.02756089480187,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.328675327729091,6.446922182495495,58.3,52.91,59.3,28.24,8.333333333333334,1,1,0,0,0,7,2,1,584.5,359151.0030880938,0,326296.3561523369,0,8222.514280906627 -7756,9583,17394,17393,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,58,-3,-89.55763435103431,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.806674823257076,0,59.3,28.24,58.3,52.91,10,1,1,0,0,9,7,2,1,584.5,359151.0030880938,0,326296.3561523369,0,8222.514280906627 -7757,9584,17395,-9,17396,17397,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.265300654458,-9,3,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,2.418234398795529,0,30.12,60.92,-9,-9,5,1,1,0,0,0,9,5,1,697.6666666666666,547961.8368759229,384918.9087975952,0,0,1118.58185524172 -7757,9584,17396,17397,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,0,0,0,10,-12,-107.7928703929068,0,3,3,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.988862815907635,0,41.24,55.72,59.43,58.05,8.333333333333334,1,1,0,0,13,9,5,1,697.6666666666666,547961.8368759229,384918.9087975952,0,0,1118.58185524172 -7757,9584,17397,17396,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.827164760689328,9.113122593201924,0,10,12,51.30612054318044,0,3,3,2019,8,0,50,60,1,0,0,14.23340595182449,14.23340595182449,0,0,0,0,0,1,1,0,2.827834484652465,0,59.43,58.05,41.24,55.72,8.333333333333334,1,1,0,0,13,9,5,1,697.6666666666666,547961.8368759229,384918.9087975952,0,0,1118.58185524172 -7758,9585,17398,17399,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.77343340291111,7.642486896215746,6,0,-43.55058388885452,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.745184711827945,50.92,45.46,56.78,23.86,8.333333333333334,1,1,0,0,0,9,3,0,1326,1224214.573034421,-14060.3400007247,315333.5919905388,0,2094.203626611414 -7758,9585,17399,17398,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,6,0,-60.73315412294928,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,27.4941187875675,0,0,1,1,0,0,0,56.78,23.86,50.92,45.46,8.333333333333334,1,1,0,0,0,9,3,0,1326,1224214.573034421,-14060.3400007247,315333.5919905388,0,2094.203626611414 -7759,9586,17400,-9,-9,17401,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.9208818915332,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,3,1,1473.5,169314.1270349742,-17701.17672197636,195012.2464313076,34983.07412345409,1759.698860183595 -7759,9586,17401,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.343804422702881,8.107046490818227,0,0,0,-961.1805246156323,0,3,3,2019,6,0,40,0,1,0,0,9.434820764690897,9.434820764690897,0,0,0,0,0,1,1,0,0,0,53.88,49.97,-9,-9,8.333333333333334,3,4,0,0,2,6,3,1,1473.5,169314.1270349742,-17701.17672197636,195012.2464313076,34983.07412345409,1759.698860183595 -7760,9587,17402,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.628258137569787,6.31280611216498,0,0,-1041.824975009734,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.317341029078253,6.434912395819119,38.8,60.42,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,501,409080.2798662817,173254.9992013794,293467.2555110744,0,432.5031124876813 -7761,9588,17403,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.627485139230318,7.425220565812062,8,5,31.34556527316566,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.648063229883387,51.21,48.48,49,47,8.333333333333334,1,1,0,0,4,8,3,1,743,2258353.106276813,186777.0930936676,1988385.261648761,0,1491.250973887927 -7762,9589,17404,17405,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.255018453831132,8.238771274065661,0,8,-4,41.12953538421933,0,-9,-9,2019,10,0,40,40,1,1,0,13.38286798769294,13.38286798769294,0,0,0,0,0,1,1,0,6.402602877329096,0,50,55,49.12,57.28,8,1,1,0,0,1,9,3,1,555.6666666666666,588062.2466866712,311284.2840378654,201065.640792304,17586.31156040155,2441.135618327266 -7762,9589,17405,17404,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,6.670875087523754,6.578850042795932,0,19,4,-23.01292297318695,0,3,2,2019,11,2,44,37,1,2,0,1.89472156141986,1.89472156141986,0,0,0,0,7,1,1,0,3.114641167055882,0,49.12,57.28,50,55,8.333333333333334,1,1,0,0,7,9,3,1,555.6666666666666,588062.2466866712,311284.2840378654,201065.640792304,17586.31156040155,2441.135618327266 -7762,9589,17406,-9,17404,17405,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1041.982778344645,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,555.6666666666666,588062.2466866712,311284.2840378654,201065.640792304,17586.31156040155,2441.135618327266 -7763,9590,17407,17408,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.264549406018298,7.401374728898056,6.853209436113618,46,2,-52.72471953205852,0,-9,-9,2019,6,0,12,30,1,0,0,4.873859749735696,4.873859749735696,0,0,0,0,0,1,1,0,6.606676835657489,6.921944031421075,57.16,56.15,60.05,42.65,10,1,1,0,0,10,7,3,1,291.5,363736.9739213408,93166.23093701119,285593.5334825137,0,3322.98090152805 -7763,9590,17408,17407,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.342722371803085,7.380093497315323,46,-2,-48.93748631826846,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.582984229884658,7.171010355444144,60.05,42.65,57.16,56.15,8.333333333333334,1,1,0,0,6,7,3,1,291.5,363736.9739213408,93166.23093701119,285593.5334825137,0,3322.98090152805 -7764,9591,17409,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1261.111455844806,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,5.979434540046276,0,37.76,55.72,-9,-9,5,1,1,0,0,0,5,1,1,1121,9664.178674560459,0,0,0,1059.145597801334 -7765,9592,17410,17411,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,7,-4,15.25230306346903,0,2,1,2019,6,0,0,49,4,0,0,0,0,0,0,0,0,0,1,1,0,.8865697253722802,0,57.9,51.84,53.68,45.47,8.333333333333334,1,1,0,0,9,7,2,1,288,1312898.621328932,502420.811982958,459313.3556999244,0,1255.047096884997 -7765,9592,17411,17410,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.148634161485329,6.626365280928527,7,4,-16.15212325724601,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.997370334002375,6.013233310843177,53.68,45.47,57.9,51.84,8.333333333333334,1,1,0,0,4,7,2,1,288,1312898.621328932,502420.811982958,459313.3556999244,0,1255.047096884997 -7766,9593,17412,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.077744986787382,8.371394153261605,0,0,0,-956.6939139156992,0,-9,-9,2019,20,6,43,40,1,6,0,7.71253967434401,7.71253967434401,0,0,0,0,0,0,0,0,0,0,21.48,53.16,-9,-9,1.666666666666667,1,1,0,0,12,9,4,1,522,82832.72915471475,0,0,0,1675.85222743188 -7767,9594,17413,17414,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.959189240783398,8.148588986063897,5.700859598335779,6,7,2.423198516367584,0,2,2,2019,29,10,38,40,1,10,0,8.48234919730025,8.48234919730025,0,0,0,0,27,0,0,0,5.835829382437723,0,28.11,54.77,54.1,59.11,1.666666666666667,1,1,0,0,7,12,3,1,222.3333333333333,295758.1175904606,136015.0633819087,267413.1211034444,12436.85029906985,1499.843843194534 -7767,9594,17414,17413,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,6.733897213574029,6.521928044619803,0,6,-7,-66.57095235696056,0,2,2,2019,9,0,37,40,1,0,0,2.095093974078047,2.095093974078047,0,0,0,0,0,0,0,0,0,0,54.1,59.11,28.11,54.77,5,1,1,0,0,7,12,3,1,222.3333333333333,295758.1175904606,136015.0633819087,267413.1211034444,12436.85029906985,1499.843843194534 -7767,9594,17415,-9,17413,17414,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1031.092893671075,-9,2,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,3,1,222.3333333333333,295758.1175904606,136015.0633819087,267413.1211034444,12436.85029906985,1499.843843194534 -7768,9595,17416,17417,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.656695660531477,7.569639213929379,0,7,0,44.32983028928302,0,3,-9,2019,19,7,30,29,1,7,0,9.252084612850016,9.252084612850016,0,0,0,0,0,1,1,0,0,0,45.74,30.78,52,54.51,3.333333333333333,1,1,0,0,8,12,4,1,719,556843.1184364164,467684.9199341109,193933.1192057314,0,2400.814079487582 -7768,9595,17417,17416,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.097747904542899,7.930325669077028,0,7,0,125.0858584314535,0,-9,-9,2019,12,0,45,0,1,0,0,8.733337676566546,8.733337676566546,0,0,0,0,0,1,1,0,0,0,52,54.51,45.74,30.78,6.666666666666667,1,1,0,0,9,12,4,1,719,556843.1184364164,467684.9199341109,193933.1192057314,0,2400.814079487582 -7769,9596,17418,17419,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.267709049017514,6.832352677911741,26,-6,-27.37231428181594,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.808991830229579,7.192630982411098,57.16,56.15,57.16,56.15,10,1,1,0,0,0,12,3,1,665,963842.4476418516,974899.8305865228,42761.13684090504,0,3047.726043642484 -7769,9596,17419,17418,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.561440218881283,7.634767969812302,26,6,-144.0627967615619,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.211739796283894,7.293286440040913,57.16,56.15,57.16,56.15,10,1,1,0,0,0,12,3,1,665,963842.4476418516,974899.8305865228,42761.13684090504,0,3047.726043642484 -7770,9597,17420,17421,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.498848563015541,6.178946400295786,48,-1,124.8104406282027,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.610508004713555,6.769866031234857,60.12,54.8,57.16,56.15,0,1,1,0,0,1,12,3,1,1845.5,441148.0379000821,173023.4350560227,244012.5779870655,0,2102.057232575165 -7770,9597,17421,17420,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.210054650889257,7.328910335333634,48,1,-34.15138641591914,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.114412912828548,7.721915747929176,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,12,3,1,1845.5,441148.0379000821,173023.4350560227,244012.5779870655,0,2102.057232575165 -7771,9598,17422,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.72219475166977,7.840228532429688,0,3,-6,-5.153592841401928,0,2,2,2019,6,0,30,8,1,0,0,11.43001607309809,11.43001607309809,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.7,46.47,10,1,1,0,0,6,2,4,0,494,941967.7686443514,-96146.47306267182,643167.8414289095,0,583.4126407978581 -7771,9599,17423,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.70411684463071,7.826790694926701,3,6,97.99090554725828,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.925425984082008,42.7,46.47,60.12,54.8,10,1,1,0,0,0,2,4,0,1049,937862.9898038958,493934.9384181519,201497.6725948967,0,1846.467213265826 -7772,9600,17424,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.965969142369878,7.290898502853855,0,0,-1019.841496650752,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.863637744428855,47.56,41.5,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,126,118357.3838037971,56126.31046889142,0,0,1652.481180951926 -7773,9601,17425,-9,-9,-9,1,0,20,0,0,1,1,0,-9,0,3,0,0,0,0,0,-1008.862915995209,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,33.31,61.94,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,130,0,0,0,0,0 -7774,9602,17426,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.038776802931633,7.359418047915525,0,0,-990.8882159444139,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.051237863726039,6.994770612829604,68.88,38.65,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,1297,534883.9751629825,297015.7768112763,184592.4092686388,0,1424.451855013848 -7775,9603,17427,17428,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,8.052854908431247,8.13610448264952,0,2,-7,4.827275516613897,0,-9,-9,2019,26,9,45,43,1,9,0,9.522444694310437,9.522444694310437,0,0,0,0,2,1,1,0,0,0,21.24,48.67,35.5,38.04,1.666666666666667,1,1,0,0,3,9,3,0,2093.333333333333,356556.8471990596,36647.2751894482,265593.5975626241,129452.0526511381,2056.54512787474 -7775,9603,17428,17427,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,6.933567915238294,7.132243439898382,0,2,7,10.79379792050616,0,2,3,2019,14,3,40,40,1,3,0,2.895746384792199,2.895746384792199,0,0,0,0,0,1,1,0,0,0,35.5,38.04,21.24,48.67,6.666666666666667,1,1,0,0,5,9,3,0,2093.333333333333,356556.8471990596,36647.2751894482,265593.5975626241,129452.0526511381,2056.54512787474 -7775,9603,17429,-9,-9,17428,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1055.618618134181,-9,-9,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.78,60.04,-9,-9,3.333333333333333,1,1,0,0,0,9,3,0,2093.333333333333,356556.8471990596,36647.2751894482,265593.5975626241,129452.0526511381,2056.54512787474 -7776,9604,17430,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.467271982171943,5.930550645842153,0,0,-1081.220701097045,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.680272632842727,6.181173773020659,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,422,392613.1034420028,447013.4424360461,0,0,1657.839505979865 -7777,9605,17431,17432,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,6.75155569368552,6.970956595594083,0,29,5,-47.00804691822614,0,3,3,2019,6,0,70,50,1,0,0,1.316789844857497,1.316789844857497,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.04,55.86,1.666666666666667,1,1,0,0,12,13,3,1,1089.5,763672.3869054066,756601.3852905086,0,0,2424.379617758242 -7777,9605,17432,17431,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,7.097114545873028,7.095445845991039,28,-5,-7.969691535607182,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.908960116184272,49.04,55.86,57.16,56.15,6.666666666666667,1,1,0,0,1,13,3,1,1089.5,763672.3869054066,756601.3852905086,0,0,2424.379617758242 -7777,9606,17433,-9,17432,17431,1,1,23,0,0,0,1,1,1,0,5,7.169978606672647,7.315617087074651,0,0,0,-981.153368082407,-9,3,3,2019,7,0,38,0,1,0,1,4.139883603464693,4.139883603464693,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,7,13,3,1,3450,-63329.39252207469,-130493.164251675,0,0,769.2892451629529 -7778,9607,17434,17435,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.827892355789181,6.885981776921898,52,0,48.00718549438823,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.987081407651289,52.37,56.93,54.96,53.17,0,1,1,0,0,6,7,2,1,771.5,782228.2507704941,310643.7895677784,463960.9309187456,0,1677.978941293275 -7778,9607,17435,17434,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,52,0,80.61310043246601,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.856300334936175,0,54.96,53.17,52.37,56.93,8.333333333333334,1,1,0,0,7,7,2,1,771.5,782228.2507704941,310643.7895677784,463960.9309187456,0,1677.978941293275 -7779,9608,17436,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1130.189846336596,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.83,19.9,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,514,10741.99861375002,0,0,0,633.7743133900781 -7780,9609,17437,17438,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,25,-3,27.1534806874252,-9,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,42,0,0,0,0,0,19.76,38.48,54.54,38.41,1.666666666666667,1,1,0,0,0,11,4,1,436.5,913028.8960381146,757986.0936440895,170538.9623327753,0,1125.215845832648 -7780,9609,17438,17437,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.128010576137848,8.230354145847659,0,25,3,139.1512338550816,-9,-9,-9,2019,12,0,44,0,1,0,0,10.33770040915039,10.33770040915039,0,0,0,0,2,0,0,0,1.148781438102033,0,54.54,38.41,19.76,38.48,6.666666666666667,1,1,0,0,10,11,4,1,436.5,913028.8960381146,757986.0936440895,170538.9623327753,0,1125.215845832648 -7780,9610,17439,-9,17437,17438,1,0,23,0,0,0,1,1,-9,0,3,7.700670608185511,7.393773788539595,0,0,0,-1035.89054860242,-9,2,2,2019,12,3,38,0,1,3,1,7.218293645932736,7.218293645932736,0,0,0,0,0,0,0,0,.8774238345430359,0,49.44,54.26,-9,-9,6.666666666666667,1,1,0,0,2,11,3,1,2540,-65761.45046303826,-139402.8843030009,0,0,905.7825955269125 -7781,9611,17440,-9,-9,-9,1,1,48,0,0,0,1,1,-9,1,1,8.9865342607809,9.193615563218087,0,0,0,-951.6843823416757,0,3,3,2019,26,9,37,37,1,9,0,20.95380126903412,20.95380126903412,0,0,0,0,0,1,1,0,4.535272466492534,0,24.33,21.59,-9,-9,1.666666666666667,1,1,0,0,11,9,5,0,1462,599262.868519171,417473.2009196259,352691.6446119064,218321.5363944918,2852.697744144511 -7782,9612,17441,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,7.575284202526603,7.758654474643874,0,0,0,-1168.943187547258,0,3,2,2019,15,5,30,40,1,5,0,8.431143914356701,8.431143914356701,0,0,0,0,5.48,0,0,0,0,0,49.84,55.33,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,1471,703061.9537459308,210441.9277230497,236512.4548458031,0,1317.851267535065 -7783,9613,17442,17443,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.522316405263254,9.878165914749873,0,3,2,117.7667977977676,-9,-9,-9,2019,11,0,50,0,1,2,0,34.84678342432551,34.84678342432551,0,0,0,0,0,0,0,0,4.042668153929619,0,48,57,50,57,7,1,1,0,0,6,8,5,1,497.5,1036524.210244728,243850.3963879338,985307.682498815,471792.7841925736,9164.090930704373 -7783,9613,17443,17442,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.973188432555077,8.886204723260221,0,3,-2,-66.41212821482064,-9,-9,-9,2019,10,0,40,0,1,1,0,21.31709920288806,21.31709920288806,0,0,0,0,0,0,0,0,0,0,50,57,48,57,7,4,1,0,0,1,8,5,1,497.5,1036524.210244728,243850.3963879338,985307.682498815,471792.7841925736,9164.090930704373 -7784,9614,17444,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.815352454568343,6.967064950430015,0,0,-1033.415546956021,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.779690799510699,0,15.35838525245214,0,1,1,0,7.541101117420589,6.782344147147105,41.89,39.62,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,499,248333.3233147921,173737.2346660047,269421.6767401397,0,1348.835614589637 -7785,9615,17445,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.723194138376527,6.8017153771211,0,0,-1108.591056785085,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.058542672546772,6.845104570879527,53.92,41.71,-9,-9,5,1,1,0,0,0,11,2,1,289,650415.1610637773,238676.902843128,164523.5832853907,0,2006.856285156413 -7786,9616,17446,17448,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.550811481197545,8.873047027741519,0,16,-2,76.29302550299838,0,2,2,2019,8,0,41,45,1,0,0,13.07643849797141,13.07643849797141,0,0,0,0,0,1,1,0,0,0,50.54,62.09,32.08,21.69,6.666666666666667,1,1,0,0,8,9,4,1,321.25,363027.4855876723,0,0,0,3849.206373310943 -7786,9616,17447,-9,17448,17446,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.165647330991,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,321.25,363027.4855876723,0,0,0,3849.206373310943 -7786,9616,17448,17446,-9,-9,1,0,35,0,2,0,2,2,-9,0,2,8.04709092723111,8.146356423735794,0,14,2,55.3054569342303,0,2,2,2019,28,11,53,55,1,11,0,6.776803830027952,6.776803830027952,0,0,0,0,0,1,1,0,0,0,32.08,21.69,50.54,62.09,5,1,1,0,0,8,9,4,1,321.25,363027.4855876723,0,0,0,3849.206373310943 -7786,9616,17449,-9,17448,17446,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.11139898181,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,321.25,363027.4855876723,0,0,0,3849.206373310943 -7787,9617,17450,17451,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.288143829898338,9.150808755520734,6.717905215132851,30,1,-25.6042199456106,0,2,2,2019,9,0,40,50,1,1,0,32.03415442835588,32.03415442835588,0,0,0,0,0,1,1,0,6.476195160413742,7.202497428773622,54,54,54.2,57.49,8,1,1,0,0,1,2,5,1,686,2069515.2350072,1511002.477436595,401016.7472869587,40651.565602034,8240.93380217133 -7787,9617,17451,17450,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.473299890316573,9.459838151963854,0,30,-1,-107.8184612217955,0,1,3,2019,7,0,30,38,1,0,0,35.85770673757942,35.85770673757942,0,0,0,0,0,1,1,0,3.951198875528008,0,54.2,57.49,54,54,8.333333333333334,1,1,0,0,9,2,5,1,686,2069515.2350072,1511002.477436595,401016.7472869587,40651.565602034,8240.93380217133 -7787,9618,17452,-9,17451,17450,1,0,22,0,0,0,2,2,1,0,5,0,0,0,0,0,-1067.960991339126,-9,1,1,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,33.04,66.23999999999999,-9,-9,8.333333333333334,1,1,1,0,5,2,1,1,129,124704.0243582634,0,0,0,177.0957834772105 -7788,9619,17453,17454,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.018596925693603,6.976333315052416,9,1,43.32539102792786,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.875523456976973,61.14,35.64,56.19,46.16,8.333333333333334,1,1,0,0,0,1,2,1,218.5,565762.3737047545,302450.59505652,119210.7370565131,0,1805.593542571932 -7788,9619,17454,17453,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,9,-1,-83.58320807534604,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,61.14,35.64,10,1,1,0,0,0,1,2,1,218.5,565762.3737047545,302450.59505652,119210.7370565131,0,1805.593542571932 -7788,9620,17455,-9,17454,17453,1,1,24,0,0,0,2,2,-9,0,4,7.604116394393115,7.352607341808748,0,0,0,-1090.983129080709,0,3,2,2019,4,0,37,37,1,0,0,6.668972748952397,6.668972748952397,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,1778,32921.43888391755,0,0,0,1221.335739608038 -7789,9621,17456,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1154.640901851197,0,3,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.24,50.03,-9,-9,5,1,1,1,0,1,5,1,0,365.5,-22507.36509256628,0,0,0,1222.758150482746 -7789,9621,17457,-9,17456,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.9775330388125,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,365.5,-22507.36509256628,0,0,0,1222.758150482746 -7790,9622,17458,17461,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.286675312080996,8.436844511120849,0,5,-2,55.8472692496626,0,1,1,2019,16,4,26,26,1,4,0,20.38007600204929,20.38007600204929,0,0,0,0,0,1,1,0,1.956528305257488,0,43.54,59.6,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,438,186911.7277417073,35545.96031196123,469331.5707682081,204234.8900900792,4140.974399188555 -7790,9622,17459,-9,17458,17461,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-887.4260867557914,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,7,5,1,438,186911.7277417073,35545.96031196123,469331.5707682081,204234.8900900792,4140.974399188555 -7790,9622,17460,-9,17458,17461,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.8272483060463,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,7,5,1,438,186911.7277417073,35545.96031196123,469331.5707682081,204234.8900900792,4140.974399188555 -7790,9622,17461,17458,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.742040269802299,8.735088135050532,0,5,2,53.18880905035611,0,2,3,2019,8,0,45,53,1,0,0,17.46634334183327,17.46634334183327,0,0,0,0,0,1,1,0,3.753117182534802,0,54.79,55.86,43.54,59.6,8.333333333333334,1,1,0,0,8,7,5,1,438,186911.7277417073,35545.96031196123,469331.5707682081,204234.8900900792,4140.974399188555 -7791,9623,17462,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.547921304180232,8.626105390051517,5.790705163940735,0,0,-1031.152019175965,0,-9,-9,2019,12,2,37,48,1,2,0,14.26152982796182,14.26152982796182,0,0,0,0,0,0,0,0,0,5.670009817950206,52.65,51.64,-9,-9,6.666666666666667,1,1,0,0,11,2,5,0,1097,118411.9000608629,73388.46869600582,20810.93997650418,78371.86701488645,1958.321700547356 -7792,9624,17463,-9,17464,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-933.8463830047151,-9,3,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.86,59.06,-9,-9,6.666666666666667,1,1,0,0,0,6,4,0,1971,24641.16897319066,73237.61924027913,0,0,1607.882440917314 -7792,9624,17464,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.544245308026629,7.85728139889256,5.194943755908995,0,0,-945.5160418969937,0,-9,-9,2019,23,8,46,40,1,8,0,4.929335077410927,4.929335077410927,0,0,0,0,0,1,1,0,6.188748511245389,0,22.15,49.49,-9,-9,3.333333333333333,1,1,0,1,7,6,4,0,1971,24641.16897319066,73237.61924027913,0,0,1607.882440917314 -7793,9625,17465,-9,17467,17468,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.300534621326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,464.75,-13318.33326671603,-63375.03466576802,0,0,1814.303888421828 -7793,9625,17466,-9,17467,17468,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.634978906494,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,464.75,-13318.33326671603,-63375.03466576802,0,0,1814.303888421828 -7793,9625,17467,17468,-9,-9,1,0,28,0,2,0,2,2,-9,0,2,0,0,0,8,0,-19.33072335996595,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,42.66,28.78,59.67,5,1,1,1,0,0,7,3,0,464.75,-13318.33326671603,-63375.03466576802,0,0,1814.303888421828 -7793,9625,17468,17467,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.070140623698048,8.144601120369515,0,8,0,22.82015672326885,0,2,2,2019,21,9,38,40,1,9,0,8.456928061449803,8.456928061449803,0,0,0,0,0,1,1,0,0,0,28.78,59.67,43.67,42.66,3.333333333333333,1,1,0,1,3,7,3,0,464.75,-13318.33326671603,-63375.03466576802,0,0,1814.303888421828 -7794,9626,17469,17470,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.835384605176766,7.366134841673252,0,29,-3,154.9553447014054,0,3,3,2019,20,8,35,40,1,8,0,8.077149781399431,8.077149781399431,0,0,0,0,0,0,0,0,0,0,36.05,44.11,38.04,31.33,3.333333333333333,1,1,0,1,8,11,3,1,439,302881.8938035714,308621.6496415381,35760.46026816267,1769.996225950407,1217.778914087463 -7794,9626,17470,17469,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,29,3,14.16305808782282,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,31.33,36.05,44.11,3.333333333333333,1,1,1,1,7,11,3,1,439,302881.8938035714,308621.6496415381,35760.46026816267,1769.996225950407,1217.778914087463 -7795,9627,17471,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,5,7.3471775161314,7.18664178275746,0,0,0,-867.410281946714,0,1,2,2019,12,3,30,0,1,3,0,4.919134819768471,4.919134819768471,0,0,0,0,27,1,1,0,0,0,37.89,64.09999999999999,-9,-9,5,1,1,0,0,4,9,3,0,1847,-95145.64092541645,-11864.07336627067,0,0,1192.225026783421 -7795,9628,17472,-9,17471,-9,1,1,25,0,0,0,2,2,-9,1,2,7.47221314704994,7.529810258275413,0,0,0,-953.3809725386313,0,2,-9,2019,8,0,25,25,1,0,1,8.891292955007808,8.891292955007808,0,0,0,0,0,1,1,0,0,0,52.71,51.84,-9,-9,5,1,1,0,0,1,9,3,0,1111,-17174.88355546557,-14186.82022201624,0,0,1442.693370052596 -7796,9629,17473,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,6.693521236611792,6.983529247525373,0,0,0,-943.2673750686845,0,2,2,2019,12,1,40,50,1,1,0,2.915749129302596,2.915749129302596,0,0,0,0,0,0,0,0,.7540654014438695,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,229,33411.5786458533,0,0,0,188.9893059861322 -7797,9630,17474,17475,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.683402473130442,8.582931938810644,0,7,-14,10.89688497732397,0,-9,-9,2019,6,0,60,60,1,0,0,10.92803236296556,10.92803236296556,0,0,0,0,0,1,1,0,6.986270785703931,0,54.69,57.47,48.28,60.18,8.333333333333334,1,1,0,0,8,9,5,1,594.5,476598.7632490246,34580.32524269839,340190.0590345297,89759.27860013995,9499.75621572071 -7797,9630,17475,17474,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.29808260050973,7.915589362349807,0,7,14,-17.18066041966614,0,2,1,2019,11,0,60,55,1,0,0,9.037592380002245,9.037592380002245,0,0,0,0,0,1,1,0,10.15166643515609,0,48.28,60.18,54.69,57.47,8.333333333333334,1,1,0,0,13,9,5,1,594.5,476598.7632490246,34580.32524269839,340190.0590345297,89759.27860013995,9499.75621572071 -7798,9631,17476,17477,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.057265894688376,8.12608541474208,5.273397251243938,9,-1,-81.69736350813194,0,2,2,2019,9,0,40,40,1,0,0,9.495897611737483,9.495897611737483,0,0,0,0,0,0,0,0,0,6.005991456913197,58.47,23.43,54.37,54.8,6.666666666666667,1,1,0,0,8,5,5,0,1299.5,1087440.050305846,1042330.248647459,106899.2587120672,41021.05569224308,3618.109860337273 -7798,9631,17477,17476,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.310105096645481,8.450686393656348,0,9,1,131.5455717007531,0,1,2,2019,10,0,52,45,1,0,0,9.652277594727648,9.652277594727648,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.47,23.43,5,1,1,0,0,10,5,5,0,1299.5,1087440.050305846,1042330.248647459,106899.2587120672,41021.05569224308,3618.109860337273 -7799,9632,17478,17479,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-150.3071711830479,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.750314369257282,4.472360706837398,0,0,1,1,0,0,0,52,45,54,45,8,1,1,0,0,0,12,2,1,1580,208889.251643116,167516.5588140993,171836.7748640951,0,2226.05252322031 -7799,9632,17479,17478,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.917377282917648,7.050835928055213,6,1,70.26538129864105,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,6.323721185289218,0,0,1,1,0,0,7.326266593867284,54,45,52,45,8,1,1,0,0,0,12,2,1,1580,208889.251643116,167516.5588140993,171836.7748640951,0,2226.05252322031 -7800,9633,17480,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,6.11387432951833,6.092270395024994,0,0,0,-979.1611836375641,0,3,3,2019,8,1,20,8,1,1,0,2.955380271180943,2.955380271180943,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,5,13,2,0,813,421968.9944319749,420289.6243651394,46475.28362709693,0,532.687955364088 -7801,9634,17481,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.345698682907301,8.192139446853256,0,0,0,-916.7147848299486,0,3,2,2019,6,0,37,32,1,0,0,13.55397995011443,13.55397995011443,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,13,1,4,1,733,374958.5589110442,372761.8457609147,139217.9467304571,77852.30621901379,815.5772129712992 -7802,9635,17482,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.594729354120099,6.87877272959161,0,0,-829.9348588309817,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.863324965224851,7.165713716176645,49.43,29.25,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,972,377398.0721160325,114356.368307117,229110.567710616,0,1211.885971807005 -7803,9636,17483,17484,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.101100269933722,6.485192886515541,43,1,-37.52948460188281,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.701503593940175,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,172,951707.4935734665,607704.6043782688,208262.4401048618,0,2329.98108023007 -7803,9636,17484,17483,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.991741351284175,7.99182661826881,43,-1,-21.02769155831513,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.479983628782436,7.35266581446039,57.33,53.46,57.33,53.46,10,1,1,0,0,0,5,3,1,172,951707.4935734665,607704.6043782688,208262.4401048618,0,2329.98108023007 -7804,9637,17485,17486,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,5,-3,1.19301169228072,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.69,52.37,49.09,42.51,8.333333333333334,1,1,0,0,7,6,2,1,1074,234826.9562665356,105984.839104611,147841.2479742775,0,772.9047705442656 -7804,9637,17486,17485,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.07755036787858,5.977007372159456,5,3,38.64231900116957,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,7.481458985610336,0,0,1,1,0,3.565884153168806,6.107349856620312,49.09,42.51,50.69,52.37,6.666666666666667,1,1,0,0,7,6,2,1,1074,234826.9562665356,105984.839104611,147841.2479742775,0,772.9047705442656 -7805,9638,17487,17488,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,33,2,-181.8980881581483,0,2,2,2019,11,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0714256333157,0,41.84,60.5,50.08,55.33,6.666666666666667,1,1,0,0,11,7,3,1,340,700906.5732210691,302516.3165178029,262777.1801424618,0,2926.830488378137 -7805,9638,17488,17487,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.861888744990789,7.81055068709153,33,-2,5.030606634159977,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.475549017602502,7.49897103008014,50.08,55.33,41.84,60.5,8.333333333333334,1,1,0,0,10,7,3,1,340,700906.5732210691,302516.3165178029,262777.1801424618,0,2926.830488378137 -7806,9639,17489,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.969632797276545,8.151019205452979,0,0,0,-932.2436677934247,0,2,2,2019,12,0,60,50,1,0,0,5.913913085037805,5.913913085037805,0,0,0,0,0,1,1,0,0,0,45.23,32.27,-9,-9,5,1,1,0,0,4,11,4,0,490,-89563.13655563074,44504.71755171132,0,0,1486.113858451251 -7807,9640,17490,-9,17491,17492,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.4919815117153,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,1319.666666666667,2090123.499868563,1829065.360812217,302876.6385355105,46221.14463564738,4998.124645300607 -7807,9640,17491,17492,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.120126882550357,8.256306958820989,0,9,-8,-82.08599502481715,0,2,2,2019,14,2,25,25,1,2,0,16.46900067247664,16.46900067247664,0,0,0,0,0,1,1,0,0,0,48.37,49.31,60.44,36.05,8.333333333333334,1,1,0,0,11,1,5,1,1319.666666666667,2090123.499868563,1829065.360812217,302876.6385355105,46221.14463564738,4998.124645300607 -7807,9640,17492,17491,-9,-9,1,1,50,0,1,0,2,2,-9,1,2,8.98448628443775,8.905245603299512,0,9,8,-70.20379837841421,0,2,2,2019,5,0,37,35,1,0,0,25.08804680715477,25.08804680715477,0,0,0,0,0,1,1,0,7.474515423091879,0,60.44,36.05,48.37,49.31,8.333333333333334,1,1,0,0,11,1,5,1,1319.666666666667,2090123.499868563,1829065.360812217,302876.6385355105,46221.14463564738,4998.124645300607 -7808,9641,17493,17494,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.284118193839781,7.944338329027077,0,29,-4,96.77845354747913,0,3,1,2019,10,0,15,15,1,0,0,26.86923017819032,26.86923017819032,0,0,0,0,0,0,0,0,6.178985658041572,0,65.23,38.89,51,49,8.333333333333334,2,3,0,0,11,7,5,1,465,1506085.143918362,807692.5062636696,423817.9737465499,27064.78959606223,4669.994663846757 -7808,9641,17494,17493,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.384202518690794,9.169687800813824,0,29,4,31.99755685721572,0,3,1,2019,10,0,30,30,1,1,0,40.58076874199029,40.58076874199029,0,0,0,0,0,0,0,0,5.277567195077905,0,51,49,65.23,38.89,7,2,3,0,0,1,7,5,1,465,1506085.143918362,807692.5062636696,423817.9737465499,27064.78959606223,4669.994663846757 -7808,9642,17495,-9,17493,17494,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-993.5437403615149,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,34.22,59.96,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,429,113327.1054469968,0,0,0,0 -7809,9643,17496,-9,17497,17498,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.466921992931,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1046,4416914.493301886,2418820.567671651,974138.4727813617,0,6366.927508044166 -7809,9643,17497,17498,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.235696396461718,9.152971357787147,8.078484841820023,25,-12,73.31863884219021,0,2,1,2019,11,0,20,19,1,0,0,14.93603432604707,14.93603432604707,0,0,0,0,0,1,1,0,6.762391735750197,8.530937817508672,51.83,57.2,58.05,54.52,6.666666666666667,1,1,0,0,11,9,5,1,1046,4416914.493301886,2418820.567671651,974138.4727813617,0,6366.927508044166 -7809,9643,17498,17497,-9,-9,1,1,61,0,1,0,1,1,-9,0,5,8.949467261090552,9.02681378733894,0,9,12,77.49256020158577,0,-9,-9,2019,7,0,10,40,1,0,0,74.43972713630437,74.43972713630437,0,0,0,0,0,1,1,0,3.459539651716053,0,58.05,54.52,51.83,57.2,0,1,1,0,0,8,9,5,1,1046,4416914.493301886,2418820.567671651,974138.4727813617,0,6366.927508044166 -7810,9644,17499,17500,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,9.111213953155245,9.146134104809246,5.206700279816483,42,-4,-128.4519306592804,0,2,2,2019,10,0,2,-9,1,0,0,531.8278995505299,531.8278995505299,0,0,0,0,0,1,1,0,8.668700519110434,5.16258975352701,36.48,61.57,58.56,46.45,6.666666666666667,1,1,0,0,10,11,5,1,255,2219250.901482649,465485.0224038117,999050.8599267005,0,12472.61405106674 -7810,9644,17500,17499,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.678179109816367,6.434832096528165,42,4,88.68255397778815,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.005375314912232,6.761444819997486,58.56,46.45,36.48,61.57,8.333333333333334,1,1,0,0,10,11,5,1,255,2219250.901482649,465485.0224038117,999050.8599267005,0,12472.61405106674 -7811,9645,17501,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.02879441709165,8.177883594522886,0,0,0,-1046.257773842882,0,3,3,2019,9,0,37,38,1,0,0,8.167700925727978,8.167700925727978,0,0,0,0,0,0,0,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,9,4,4,1,428,1093817.270842562,-10509.79559010807,625233.2530178189,0,1853.132745847778 -7812,9646,17502,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,5.294543450333689,5.303380391725852,0,0,0,-1118.525523127642,0,2,2,2019,4,0,17,16,1,0,0,1.164481257988168,1.164481257988168,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,5,12,2,1,441,-39879.76691423268,4885.529117241682,0,0,-139.3407838369628 -7813,9647,17503,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.714980385252671,7.841893503104092,0,0,-1019.994332670108,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,10.39042174978954,0,0,1,1,0,1.45913436492536,7.877992044962349,46.54,40.46,-9,-9,5,1,1,0,0,0,8,3,1,1226,765975.3868195245,122466.9594596607,368933.5275633159,0,1450.992721006188 -7814,9648,17504,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,9.233976380661552,9.358377353377255,6.797334889067622,0,0,-1000.88869740983,0,2,1,2019,6,0,38,41,1,0,0,39.58873784685462,39.58873784685462,0,0,0,0,0,0,0,0,7.06178908480153,0,57.06,57.76,-9,-9,10,1,1,0,0,7,8,5,1,440,983170.8648911054,799167.4411097361,301036.8337522015,0,3928.070688632124 -7815,9649,17505,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,7.459462889440074,7.553691466759755,0,0,-1095.273653726257,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,7.044930809221743,37.35,15.58,-9,-9,0,1,1,0,0,0,9,3,1,704,377464.1142915119,19195.97743177524,176884.0382779066,0,1841.689145215101 -7815,9650,17506,-9,17505,-9,1,1,22,0,0,0,2,2,-9,0,5,8.366135246542898,8.214402073420716,0,0,0,-970.2933548127329,-9,2,2,2019,11,0,43,0,1,0,1,10.54452651307982,10.54452651307982,0,0,0,0,42,1,1,0,.4129223054835897,0,43.57,62.68,-9,-9,10,1,1,0,0,6,9,4,1,355,195600.3170459769,23423.75035558577,0,0,1327.498032044701 -7816,9651,17507,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.762492072256083,5.806284986466908,0,0,-953.956177873402,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.458160203695766,6.113832675141468,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,254,516379.8889459121,54593.61563139659,180206.0546627589,0,743.4726246564434 -7817,9652,17508,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.460004726989666,8.693500654597299,6.530666595046694,0,0,-869.3839144220794,0,3,2,2019,11,1,41,47,1,1,0,13.34207977084795,13.34207977084795,0,0,0,0,0,0,0,0,6.901291708945249,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,1085,302559.8546010476,63370.37227755973,105950.2811926951,29726.81208104375,2225.420004380242 -7818,9653,17509,17510,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.543609858690704,8.875284343996743,0,6,0,-35.20989793777704,0,2,2,2019,6,0,45,42,1,0,0,17.37687415519422,17.37687415519422,0,0,0,0,0,0,0,0,0,0,61.12,51.57,54.1,59.11,8.333333333333334,1,1,0,0,7,11,5,1,703.5,53746.26808284818,20062.95194754041,119484.8969357203,97132.81061816582,10404.60289654018 -7818,9653,17510,17509,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,9.611815194590692,9.962768894704485,0,6,0,-60.09850289417335,0,-9,-9,2019,6,0,53,60,1,0,0,35.87929934067791,35.87929934067791,0,0,0,0,0,0,0,0,8.782955842962593,0,54.1,59.11,61.12,51.57,8.333333333333334,1,1,0,0,6,11,5,1,703.5,53746.26808284818,20062.95194754041,119484.8969357203,97132.81061816582,10404.60289654018 -7819,9654,17511,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,9.029633020748689,9.18688228982197,0,0,0,-990.6168563386434,0,2,1,2019,17,5,50,50,1,5,0,19.74505433547996,19.74505433547996,0,0,0,0,0,1,1,0,0,0,35.05,32.77,-9,-9,1.666666666666667,1,1,0,0,10,9,5,1,308,1246662.955337535,698307.9566579352,278980.9286966046,7588.492596140121,4436.654126094664 -7819,9655,17512,-9,-9,17511,1,0,25,0,0,0,2,2,-9,0,2,7.829492893458,8.080861047336866,0,0,0,-887.4766507537636,0,-9,2,2019,7,0,35,41,1,0,1,9.768269453091053,9.768269453091053,0,0,0,0,0,1,1,0,0,0,60.54,42.81,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,156,-1804.22712187003,0,0,0,1270.795535246204 -7819,9656,17513,-9,-9,17511,1,0,24,0,0,0,1,1,-9,0,2,7.291529473441472,7.491827461248463,0,0,0,-997.8017803402514,0,-9,2,2019,10,0,37,-9,1,0,1,6.475864012335792,6.475864012335792,0,0,0,0,0,1,1,0,0,0,58.56,43.75,-9,-9,6.666666666666667,1,1,0,1,8,9,3,1,2932,-78125.15495705594,87928.2801845525,0,0,806.8639547130053 -7820,9657,17514,17515,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.396772583829831,6.362260330087791,0,7,-6,-100.2185824089165,0,2,2,2019,8,1,60,50,1,1,0,1.313871385886705,1.313871385886705,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1392.5,327521.0553536827,5492.808875552741,202448.2342260687,0,2672.31603647629 -7820,9657,17515,17514,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.432219394578746,8.60560685284913,0,7,6,197.6330144890977,0,2,2,2019,8,0,65,60,1,0,0,8.778707105794297,8.778707105794297,0,0,0,0,0,1,1,0,6.949639238912832,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,12,4,1,1392.5,327521.0553536827,5492.808875552741,202448.2342260687,0,2672.31603647629 -7821,9658,17516,-9,-9,-9,1,0,25,0,0,0,2,2,0,0,5,0,0,0,0,0,-972.5915243095731,-9,1,2,2019,21,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,10,1,1,0,1,6,1,1,0,268,0,0,0,0,0 -7822,9659,17517,17518,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.364991817102661,6.089010010049846,7,4,23.41761738286435,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,13.22556022042122,0,0,1,1,0,5.35251042448823,6.298960472597403,55.79,47.77,54.96,53.17,10,1,1,0,0,0,7,2,1,111,20276.46980890767,-27443.91261159365,0,0,1204.214401742435 -7822,9659,17518,17517,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,4.827266846923312,4.993662477886986,7,-4,-46.94773848958894,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.497003460580151,4.667897264568105,54.96,53.17,55.79,47.77,8.333333333333334,1,1,0,0,0,7,2,1,111,20276.46980890767,-27443.91261159365,0,0,1204.214401742435 -7823,9660,17519,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-920.3687028980439,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.872936819741469,0,47.02,44.25,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,716,0,0,0,0,697.502932996631 -7824,9661,17520,-9,17522,17521,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.7150988998065,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,535.3333333333334,878969.2653197931,762556.3488753916,184814.8083042879,0,3104.515101181327 -7824,9661,17521,17522,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.253902548396164,8.566980865773489,0,20,-1,-58.9585854360875,0,3,2,2019,12,0,40,44,1,0,0,15.15924039166522,15.15924039166522,0,0,0,0,0,1,1,0,0,0,55.79,52.62,53.39,44.47,8.333333333333334,1,1,0,0,9,13,4,1,535.3333333333334,878969.2653197931,762556.3488753916,184814.8083042879,0,3104.515101181327 -7824,9661,17522,17521,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.230241185415771,8.107714644006411,0,20,1,-47.91294688645292,0,2,2,2019,12,0,30,32,1,0,0,14.65381799973807,14.65381799973807,0,0,0,0,0,1,1,0,0,0,53.39,44.47,55.79,52.62,8.333333333333334,1,1,0,0,9,13,4,1,535.3333333333334,878969.2653197931,762556.3488753916,184814.8083042879,0,3104.515101181327 -7825,9662,17523,-9,17525,17524,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-952.7456745261751,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,499.75,470353.4625497725,131700.5506858437,245937.7803313436,0,3724.565345886454 -7825,9662,17524,17525,-9,-9,1,1,35,2,2,0,1,1,-9,0,5,8.075908113660823,8.383786593849202,0,8,-1,2.930820696998199,0,2,2,2019,8,0,37,37,1,0,0,12.0932180083695,12.0932180083695,0,0,0,0,0,1,1,0,3.99795271636243,0,48.77,60.16,51.14,60.45,8.333333333333334,1,1,0,0,8,13,4,1,499.75,470353.4625497725,131700.5506858437,245937.7803313436,0,3724.565345886454 -7825,9662,17525,17524,-9,-9,1,0,36,2,2,0,1,1,-9,0,5,8.867633053263008,8.857715798351741,0,8,1,89.62333711162188,0,1,1,2019,7,0,37,37,1,0,0,12.59012921190004,12.59012921190004,0,0,0,0,0,1,1,0,.8909273472252855,0,51.14,60.45,48.77,60.16,8.333333333333334,1,1,0,0,9,13,4,1,499.75,470353.4625497725,131700.5506858437,245937.7803313436,0,3724.565345886454 -7825,9662,17526,-9,17525,17524,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-951.3166764953232,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,499.75,470353.4625497725,131700.5506858437,245937.7803313436,0,3724.565345886454 -7826,9663,17527,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.828274788961767,7.657138021110348,0,0,-975.9353074014526,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.941065282940464,7.6686414140312,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,896,938993.9664138812,494272.7038607664,188809.6920647689,0,1287.40762783339 -7827,9664,17528,17529,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.365844123971622,6.148304460444058,44,6,-26.14796582594088,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.208881886404336,57.33,53.46,56.74,26.39,8.333333333333334,1,1,0,0,0,11,2,1,1830,142501.9937643013,167483.4611483302,90027.03371884572,0,639.8221381064722 -7827,9664,17529,17528,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,44,-6,-13.54540703933289,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,26.39,57.33,53.46,8.333333333333334,1,1,0,0,5,11,2,1,1830,142501.9937643013,167483.4611483302,90027.03371884572,0,639.8221381064722 -7828,9665,17530,17531,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.174643052039043,7.505978284390898,48,1,-98.99667785295446,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.872019101258175,7.526663267678073,56.92,46.68,59.14,52.5,8.333333333333334,1,1,0,0,0,4,4,1,2491,2181135.425190946,1620505.348198601,228500.6229854448,0,3400.836599655392 -7828,9665,17531,17530,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.254590033254706,8.28113275916269,48,-1,68.34440468620488,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.183429647369278,8.358296943535064,59.14,52.5,56.92,46.68,8.333333333333334,1,1,0,0,6,4,4,1,2491,2181135.425190946,1620505.348198601,228500.6229854448,0,3400.836599655392 -7829,9666,17532,17533,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.956548658667728,7.97316548779412,0,10,0,-75.80250717311465,0,-9,-9,2019,6,0,30,30,1,0,0,9.868932884859602,9.868932884859602,0,0,0,0,7,0,0,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,11,4,5,1,332,1115600.589514365,869135.891520205,272192.3101316568,41428.95756245397,4086.361380620964 -7829,9666,17533,17532,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.025648608179898,9.25780293565283,0,38,0,-26.13693908193906,0,3,3,2019,7,0,48,45,1,0,0,20.46324713967303,20.46324713967303,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,332,1115600.589514365,869135.891520205,272192.3101316568,41428.95756245397,4086.361380620964 -7830,9667,17534,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.388610455613633,6.431661412790229,0,0,-989.9648635395845,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.569916386454619,6.384023483982839,42.07,44.47,-9,-9,10,1,1,0,0,10,7,2,1,181,721172.9649868483,0,510157.5747631919,0,1105.15150451335 -7831,9668,17535,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.768215160774428,7.711904896084786,0,0,-1093.447940214514,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.377757591308316,7.74450092454253,63.41,39.7,-9,-9,5,1,1,0,0,0,12,3,1,723,419236.8469340843,146498.0272039665,0,0,1794.034322687156 -7832,9669,17536,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.582131787598367,7.603768924216544,4.820289383893591,0,0,-856.8728040697238,0,3,3,2019,12,0,32,32,1,0,0,5.861767601344314,5.861767601344314,0,0,0,0,0,1,1,0,0,5.070872083322977,33.64,53.56,-9,-9,5,1,1,0,0,12,6,3,1,97,204164.776936073,0,68475.94427322775,66559.36790428883,556.9167159410221 -7833,9670,17537,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.129199150781227,8.305401416240786,0,0,0,-1007.635232577865,0,2,2,2019,15,4,40,39,1,4,0,11.52295782121349,11.52295782121349,0,0,0,0,0,0,0,0,0,0,48.48,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1324,309286.837440763,-113164.4044359512,51362.30860637908,39391.00332681628,1564.294181903392 -7834,9671,17538,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,9.018349241350158,9.17579062831412,0,0,0,-1053.784741859504,0,2,2,2019,11,0,60,60,1,0,0,16.06857317890107,16.06857317890107,0,0,0,0,0,0,0,0,7.114636515774501,0,49.31,54.36,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,94,-182134.6838690086,33340.80336147781,123149.4848543989,211923.0055231465,3178.812384891625 -7835,9672,17539,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.456725930848882,7.454817158705834,0,0,-988.176680169665,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.196363665043254,65.57000000000001,27.68,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,2035,597930.7065055625,292315.6947231455,246531.5838634389,0,1906.479511848068 -7836,9673,17540,17541,-9,-9,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,2,-1,-95.28806973354074,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,27,1,0,1,.6585298900149794,0,42.26,18.48,30.32,59.62,6.666666666666667,1,1,1,0,0,9,4,0,285,-98848.47552422342,44979.31997187751,0,0,1713.4510176114 -7836,9673,17541,17540,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.999255977978531,8.248704547176731,0,2,1,-35.6191975990751,0,-9,-9,2019,12,0,40,0,1,0,0,10.94023902686409,10.94023902686409,0,0,0,0,14.5,1,0,1,0,0,30.32,59.62,42.26,18.48,8.333333333333334,1,1,0,0,4,9,4,0,285,-98848.47552422342,44979.31997187751,0,0,1713.4510176114 -7836,9674,17542,-9,17541,17540,1,1,22,0,0,0,2,2,-9,0,3,7.236706649438335,7.407396790859121,0,0,0,-1072.955896769024,0,2,3,2019,16,3,44,56,1,3,1,3.865610502582816,3.865610502582816,0,0,0,0,0,1,0,1,0,0,40.4,58.62,-9,-9,5,1,1,0,0,4,9,3,0,216,-96235.85709952969,37830.01423187926,0,0,1057.499330737798 -7837,9675,17543,17544,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.446163589483857,6.073296124476588,8,-3,-17.31510060899102,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,17.89064110487581,0,0,1,1,0,0,6.412281065578028,52,46,54,46,8,1,1,0,0,0,11,2,1,574.5,104008.4798265413,147318.5034249049,105393.4883528221,0,1709.833659046309 -7837,9675,17544,17543,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,58,3,-63.96743170693978,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,52,46,8,1,1,0,0,0,11,2,1,574.5,104008.4798265413,147318.5034249049,105393.4883528221,0,1709.833659046309 -7838,9676,17545,17546,-9,-9,1,0,39,0,0,0,2,2,-9,1,2,7.179460015103692,7.122871469522623,0,4,-11,-87.56288197747678,0,-9,-9,2019,10,0,15,12,1,0,0,10.48388758376194,10.48388758376194,0,0,0,0,0,1,1,0,0,0,58.49,15.72,25.55,64.07000000000001,8.333333333333334,1,1,0,0,5,2,4,1,253,290333.066301877,193979.9315091523,27565.77463006558,43538.19203339346,2787.802792360829 -7838,9676,17546,17545,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.344098714231679,8.539154863431234,0,4,11,103.3797520126487,0,3,3,2019,16,6,39,42,1,6,0,13.78984164935026,13.78984164935026,0,0,0,0,2,1,1,0,2.716314545462147,0,25.55,64.07000000000001,58.49,15.72,6.666666666666667,1,1,0,0,9,2,4,1,253,290333.066301877,193979.9315091523,27565.77463006558,43538.19203339346,2787.802792360829 -7839,9677,17547,-9,17549,17548,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.516589723004,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1707.75,-93544.91890494485,-10470.6873210464,0,0,1919.328121327011 -7839,9677,17548,17549,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,7.776067867278345,8.215905204699933,0,6,5,56.34051696992374,0,2,2,2019,9,0,40,40,1,0,0,10.20812741230666,10.20812741230666,0,0,0,0,0,1,1,0,0,0,47.85,52.43,38.57,58.06,6.666666666666667,1,1,0,0,5,9,3,1,1707.75,-93544.91890494485,-10470.6873210464,0,0,1919.328121327011 -7839,9677,17549,17548,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,6,-5,-74.7949015173196,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.28695411608019,0,38.57,58.06,47.85,52.43,6.666666666666667,1,1,0,0,0,9,3,1,1707.75,-93544.91890494485,-10470.6873210464,0,0,1919.328121327011 -7839,9677,17550,-9,17549,17548,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.1642842174888,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1707.75,-93544.91890494485,-10470.6873210464,0,0,1919.328121327011 -7840,9678,17551,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1030.216034906976,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,13,8,1,0,578,424559.4820453544,167969.1126134534,512284.7231974269,0,244.4668921148644 -7841,9679,17552,17553,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.81845685618619,6.806818920926388,10,2,-18.94647681585095,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.34234306920794,6.953874200379662,40.46,30.27,59.53,56.44,5,1,1,0,0,0,9,4,1,882.5,2645003.652354991,970344.7369959648,736183.2428340751,0,4332.074109668279 -7841,9679,17553,17552,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.452969154174607,8.598830387678753,48,-2,46.12563613464441,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.903121367755155,8.5274014517829,59.53,56.44,40.46,30.27,8.333333333333334,1,1,0,0,10,9,4,1,882.5,2645003.652354991,970344.7369959648,736183.2428340751,0,4332.074109668279 -7842,9680,17554,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.173151507295518,8.011956645662719,0,3,15,-108.3853855349441,0,2,3,2019,8,0,60,58,1,0,0,8.173195708301668,8.173195708301668,0,0,0,0,0,0,0,0,0,0,51.49,57.57,50,56,8.333333333333334,1,1,0,0,7,7,5,0,1111,174506.232723774,9966.00351723643,131271.532812307,59156.33781494065,1112.297356942995 -7842,9681,17555,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.06778344870173,8.898156197692694,0,3,-15,38.26729412071445,-9,-9,-9,2019,10,0,48,0,1,1,0,19.04143761855225,19.04143761855225,0,0,0,0,0,0,0,0,0,0,50,56,51.49,57.57,7,4,1,0,0,1,7,5,0,205,-4869.266745799192,6370.730289050931,0,0,2775.769637113614 -7843,9682,17556,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.72406198242606,5.810809655796282,0,0,-1015.080723857492,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.449051121121479,5.959897575225032,68.11,22.42,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1204,320357.9354701641,31826.17994871148,184062.0427366787,0,869.8144976996355 -7844,9683,17557,17558,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,0,0,46,5,0,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.660010389817637,0,62.39,56.71,63.41,29.17,10,2,3,0,0,0,8,1,1,706.5,202701.7592850609,83413.85547730647,0,0,1991.74874752594 -7844,9683,17558,17557,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,46,-5,0,0,3,3,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,.6634707510861919,0,63.41,29.17,62.39,56.71,6.666666666666667,2,3,0,0,0,8,1,1,706.5,202701.7592850609,83413.85547730647,0,0,1991.74874752594 -7845,9684,17559,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.643836894165077,5.671818161600594,0,0,-981.3437195493667,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,1.475872868197118,0,0,1,1,0,0,5.578661522759118,35.93,36.98,-9,-9,5,1,1,0,0,0,11,2,1,185,262331.5283558344,194727.0310336767,94970.48635500568,0,1062.320615236108 -7846,9685,17560,-9,17562,17563,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.0641731792343,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,700.2,141462.2624835948,157786.1231309363,98806.36313716568,0,2049.771167214311 -7846,9685,17561,-9,17562,17563,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.6105029030858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,700.2,141462.2624835948,157786.1231309363,98806.36313716568,0,2049.771167214311 -7846,9685,17562,17563,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,6.872747482314918,6.813634562667404,0,25,-4,-140.7746696144105,0,3,3,2019,7,0,16,16,1,0,0,6.602866305346998,6.602866305346998,0,0,0,0,2,1,1,0,0,0,62.39,56.71,37,47.76,10,2,3,0,0,10,5,2,1,700.2,141462.2624835948,157786.1231309363,98806.36313716568,0,2049.771167214311 -7846,9685,17563,17562,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.233517661447481,6.981444170728901,0,25,4,-149.6299982271707,0,3,3,2019,9,1,36,30,1,1,0,3.880144600672839,3.880144600672839,0,0,0,0,0,1,1,0,4.953658848653314,0,37,47.76,62.39,56.71,8.333333333333334,2,3,0,0,10,5,2,1,700.2,141462.2624835948,157786.1231309363,98806.36313716568,0,2049.771167214311 -7846,9685,17564,-9,17562,17563,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.371734785055,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,700.2,141462.2624835948,157786.1231309363,98806.36313716568,0,2049.771167214311 -7847,9686,17565,17566,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.796820359798597,8.860308081406252,0,22,-1,123.4338695780077,0,3,2,2019,6,0,43,42,1,0,0,20.33953228051658,20.33953228051658,0,0,0,0,0,0,0,0,4.003245748555753,0,54.96,53.17,48.87,58.55,6.666666666666667,1,1,0,0,13,4,5,1,539,808627.6268745981,106997.0146527174,935219.7612168255,202364.3899547271,4360.055817891372 -7847,9686,17566,17565,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.180963481064939,8.467825440361279,0,22,1,-14.7143931685345,0,3,2,2019,10,0,40,48,1,0,0,10.52994694916863,10.52994694916863,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.96,53.17,6.666666666666667,1,1,0,0,13,4,5,1,539,808627.6268745981,106997.0146527174,935219.7612168255,202364.3899547271,4360.055817891372 -7847,9687,17567,-9,17566,17565,1,1,18,0,0,0,2,2,1,0,4,7.232339455501304,7.244656242125059,0,0,0,-1091.723427165788,-9,2,2,2019,8,1,40,0,1,1,1,4.185860006136143,4.185860006136143,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,584,-122647.8633917116,0,0,0,965.5742784231967 -7848,9688,17568,-9,17571,17570,1,1,21,0,2,0,2,2,-9,0,4,8.104351176282199,7.694709003416669,0,0,0,-1000.091972024631,0,2,2,2019,9,1,45,0,1,1,1,6.865605001646481,6.865605001646481,0,0,0,0,0,1,1,0,0,0,49.34,35.36,-9,-9,6.666666666666667,1,1,0,0,4,10,4,1,86,-65313.60428168897,179004.1252466478,0,0,1084.271860125735 -7848,9689,17569,-9,17571,17570,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.5011654195346,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,992.2,254737.8951452447,159525.6003768539,191673.3309430083,97861.45226649355,4294.795029007281 -7848,9689,17570,17571,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.946855638362434,8.791873257976567,0,8,2,-68.45977442477724,0,2,2,2019,4,0,50,50,1,0,0,17.26984995391987,17.26984995391987,0,0,0,0,0,1,1,0,4.242138965207784,0,51.78,50.54,41.17,59.31,8.333333333333334,1,1,0,0,9,10,4,1,992.2,254737.8951452447,159525.6003768539,191673.3309430083,97861.45226649355,4294.795029007281 -7848,9689,17571,17570,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.926161928167716,7.259621070817467,0,8,-2,80.44108160226766,0,3,2,2019,3,0,22,12,1,0,0,8.106697489857176,8.106697489857176,0,0,0,0,0,1,1,0,.1070766757110097,0,41.17,59.31,51.78,50.54,10,1,1,0,0,9,10,4,1,992.2,254737.8951452447,159525.6003768539,191673.3309430083,97861.45226649355,4294.795029007281 -7848,9689,17572,-9,17571,17570,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1017.585554951824,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.463875536319697,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,992.2,254737.8951452447,159525.6003768539,191673.3309430083,97861.45226649355,4294.795029007281 -7848,9689,17573,-9,17571,17570,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.435198365636,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,992.2,254737.8951452447,159525.6003768539,191673.3309430083,97861.45226649355,4294.795029007281 -7849,9690,17574,17576,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.406564746362855,8.68074466266288,0,2,1,49.81285255091713,0,1,2,2019,18,7,45,50,1,7,0,15.96130597396102,15.96130597396102,0,0,0,0,0,1,1,0,1.586473503800331,0,30.45,64.19,57.16,56.15,3.333333333333333,1,1,0,0,7,10,4,0,272.3333333333333,258545.7449096301,171321.2022109811,233994.168034528,125135.8269613895,2568.775085879031 -7849,9690,17575,-9,17576,17574,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.855344683808,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,272.3333333333333,258545.7449096301,171321.2022109811,233994.168034528,125135.8269613895,2568.775085879031 -7849,9690,17576,17574,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.818487158406868,7.785142114617392,0,2,-1,-55.26232070809119,0,-9,-9,2019,7,0,22,38,1,0,0,14.60114850383044,14.60114850383044,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.45,64.19,8.333333333333334,1,1,0,0,3,10,4,0,272.3333333333333,258545.7449096301,171321.2022109811,233994.168034528,125135.8269613895,2568.775085879031 -7850,9691,17577,17578,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.244880688488798,6.386288118763987,27,4,1.136036982454199,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,4.106131386228931,6.712261242921771,0,0,1,1,0,6.076144863661751,6.53876120891548,53.82,45.47,46.6,41.33,8.333333333333334,1,1,0,0,0,6,3,1,476,839100.4742915914,558815.5511591261,212384.9616708883,0,2399.355767007731 -7850,9691,17578,17577,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.936845403908352,7.745919085874045,27,-4,9.634777252446963,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,16.60289791332714,0,0,1,1,0,0,7.549681912411796,46.6,41.33,53.82,45.47,8.333333333333334,1,1,0,0,7,6,3,1,476,839100.4742915914,558815.5511591261,212384.9616708883,0,2399.355767007731 -7851,9692,17579,17580,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.82811058278376,6.926450324345473,51,-1,64.37908718951041,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.007686046826826,57.9,51.84,51.41,56.15,10,1,1,0,0,5,1,5,1,522,2015707.574523031,1156585.087210549,548278.5964833661,0,5126.880519832348 -7851,9692,17580,17579,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.847409389508213,8.705085007182698,51,1,66.97956231813795,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.278021959981325,9.034816025271404,51.41,56.15,57.9,51.84,8.333333333333334,1,1,0,0,6,1,5,1,522,2015707.574523031,1156585.087210549,548278.5964833661,0,5126.880519832348 -7852,9693,17581,-9,17585,17582,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.3487825899374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,790.8,48700.34783730881,70062.64926973431,86060.46050210654,65065.32039431453,1901.268106468917 -7852,9693,17582,17585,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.221226942093192,7.896679636407847,0,5,13,-45.16931333526033,0,3,3,2019,9,1,39,40,1,1,0,11.54799407678426,11.54799407678426,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.41,56.15,8.333333333333334,1,1,0,0,8,5,3,1,790.8,48700.34783730881,70062.64926973431,86060.46050210654,65065.32039431453,1901.268106468917 -7852,9693,17583,-9,17585,17582,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.1354474897868,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,790.8,48700.34783730881,70062.64926973431,86060.46050210654,65065.32039431453,1901.268106468917 -7852,9693,17584,-9,17585,17582,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.4665114196007,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,3,1,790.8,48700.34783730881,70062.64926973431,86060.46050210654,65065.32039431453,1901.268106468917 -7852,9693,17585,17582,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,5,-13,-114.7354925941543,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,57.33,53.46,8.333333333333334,1,1,0,0,4,5,3,1,790.8,48700.34783730881,70062.64926973431,86060.46050210654,65065.32039431453,1901.268106468917 -7853,9694,17586,17587,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.267486370156299,4.914615168161546,9,-6,41.17714784933447,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,2,1,0,1,5.540365837202411,5.337286602181345,55.88,48.45,51.25,23.83,10,1,1,0,0,5,11,2,1,1267,-4311.608179019386,0,0,0,1126.017799839553 -7853,9694,17587,17586,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,9,6,-3.716038199101021,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,6.488169379091915,9.822398519250612,64.86394165757739,0,1,0,1,2.8658055867156,0,51.25,23.83,55.88,48.45,8.333333333333334,1,1,0,0,5,11,2,1,1267,-4311.608179019386,0,0,0,1126.017799839553 -7854,9695,17588,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.188135881130508,8.497191469364122,0,0,0,-1018.289120544758,0,2,1,2019,9,0,40,40,1,0,0,14.18385443735015,14.18385443735015,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,12,4,1,3518,-83985.29433166207,0,0,0,1890.895383295418 -7855,9696,17589,17590,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.798593702285791,8.701896674580683,0,7,9,-14.48646241739824,0,2,2,2019,9,0,39,43,1,0,0,21.72318950580318,21.72318950580318,0,0,0,0,0,0,0,0,4.305987398402346,0,38.69,57.02,30.34,32.09,3.333333333333333,1,1,0,0,9,6,4,1,390,144657.2259932068,231908.7659317089,202005.389754976,140777.8905579067,2104.967626067013 -7855,9696,17590,17589,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,0,0,0,7,0,113.7491077603663,0,2,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,2,0,0,0,0,0,30.34,32.09,38.69,57.02,1.666666666666667,1,1,1,1,5,6,4,1,390,144657.2259932068,231908.7659317089,202005.389754976,140777.8905579067,2104.967626067013 -7856,9697,17591,-9,17592,17593,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.457049949623,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,804.25,457144.4923356724,138987.4931632256,195429.1078128974,14440.91209140348,2392.171287240779 -7856,9697,17592,17593,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.544391493130825,7.467735039785148,0,18,-1,-113.0460253880799,0,-9,-9,2019,33,12,22,24,1,12,0,9.968305415552461,9.968305415552461,0,0,0,0,14.5,1,1,0,2.075821237252888,0,28.15,27.84,58.3,52.91,6.666666666666667,2,3,0,0,10,6,3,1,804.25,457144.4923356724,138987.4931632256,195429.1078128974,14440.91209140348,2392.171287240779 -7856,9697,17593,17592,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.540653405555585,7.450881391724501,0,18,1,-21.22415630384686,0,3,3,2019,0,0,37,48,1,0,0,6.312589890521829,6.312589890521829,0,0,0,0,0,1,1,0,2.196516915847135,0,58.3,52.91,28.15,27.84,8.333333333333334,2,3,0,0,10,6,3,1,804.25,457144.4923356724,138987.4931632256,195429.1078128974,14440.91209140348,2392.171287240779 -7856,9697,17594,-9,17592,17593,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.028508301016,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,804.25,457144.4923356724,138987.4931632256,195429.1078128974,14440.91209140348,2392.171287240779 -7857,9698,17595,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.465984283689577,7.603834297291375,5.256365273467257,0,0,-899.2250903549406,-9,2,3,2019,15,3,12,0,1,3,0,15.2209087101087,15.2209087101087,0,0,0,0,2,1,1,0,5.648706835883988,5.645424138246392,42.19,56.13,-9,-9,5,1,1,0,0,4,9,3,0,746,815285.0633671838,290957.700450781,320526.1609406726,0,506.8801600614627 -7858,9699,17596,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.096885284822598,8.050986937826023,0,0,0,-1143.777929872321,0,3,3,2019,6,0,40,39,1,0,0,8.745533083366396,8.745533083366396,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,1,4,0,107,0,0,0,0,1144.796928074102 -7858,9700,17597,-9,-9,17596,1,0,23,0,0,0,2,2,-9,0,5,7.515728809996006,7.444975643834431,0,0,0,-1086.567832872833,0,-9,2,2019,18,4,44,44,1,4,1,4.849636193497896,4.849636193497896,0,0,0,0,0,0,0,0,0,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,446,-142850.1461552632,0,0,0,837.3851685531795 -7859,9701,17598,17599,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.321466105107254,7.20996704881151,0,8,-1,-11.88990188328021,0,2,1,2019,13,2,20,20,1,2,0,6.536867119129105,6.536867119129105,0,0,0,0,71.5,0,0,0,0,0,47.62,56.48,47.13,48.65,8.333333333333334,1,1,0,0,9,12,4,1,467.5,1647687.529130492,999910.8915369501,335160.3429831892,38481.49940937934,2956.468937431007 -7859,9701,17599,17598,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.944916371088448,8.270156827735468,8,1,-70.0350914728638,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.929245266649766,8.453280333572664,47.13,48.65,47.62,56.48,8.333333333333334,1,1,0,0,7,12,4,1,467.5,1647687.529130492,999910.8915369501,335160.3429831892,38481.49940937934,2956.468937431007 -7860,9702,17600,17602,-9,-9,1,1,47,0,3,0,3,3,-9,1,2,0,0,0,16,14,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,38.58,52.23,55.6,5,2,3,0,1,0,7,1,0,992.4,-75019.3682463155,0,0,0,2533.202712694555 -7860,9702,17601,-9,17602,17600,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.29722928762,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,992.4,-75019.3682463155,0,0,0,2533.202712694555 -7860,9702,17602,17600,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,17,-14,0,0,3,2,2019,7,1,0,14,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,37.43,38.58,10,2,3,0,0,2,7,1,0,992.4,-75019.3682463155,0,0,0,2533.202712694555 -7860,9702,17603,-9,17602,17600,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.710073007204,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,992.4,-75019.3682463155,0,0,0,2533.202712694555 -7860,9702,17604,-9,17602,17600,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.9869117969308,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,992.4,-75019.3682463155,0,0,0,2533.202712694555 -7861,9703,17605,17606,-9,-9,1,1,74,1,1,0,3,3,-9,0,4,0,8.058778098689469,7.790590643059346,27,17,211.007101560997,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.467940543333843,7.983078028865861,62.5,44.36,51.83,57.2,10,1,1,0,0,0,8,3,1,885,1261233.63824808,333591.0515894825,386520.3363952969,0,2599.871830724824 -7861,9703,17606,17605,-9,-9,1,0,57,1,1,0,2,2,-9,0,4,0,7.131906135762814,7.269063962794565,27,-17,-24.1392844482538,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.867831566463768,6.895767484737319,51.83,57.2,62.5,44.36,8.333333333333334,1,1,0,0,4,8,3,1,885,1261233.63824808,333591.0515894825,386520.3363952969,0,2599.871830724824 -7861,9704,17607,-9,17606,17605,1,0,21,1,1,0,2,2,-9,0,3,7.75478420620421,7.877037220179814,0,0,0,-1149.77352557495,0,2,3,2019,10,0,40,41,1,0,0,9.011794415333252,9.011794415333252,0,0,0,0,0,1,1,0,0,0,51.17,43.85,-9,-9,0,1,1,0,0,5,8,3,1,659.5,162231.0413355273,65114.99786554596,0,0,2105.80006309159 -7861,9704,17608,-9,17607,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-953.1329463970255,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,659.5,162231.0413355273,65114.99786554596,0,0,2105.80006309159 -7862,9705,17609,17610,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.637820543068389,7.310003815067994,56,7,183.0922149889161,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.331964437910619,48.1,45.02,46.06,22.27,5,1,1,0,0,0,12,3,1,415,764776.866668486,186508.6444888649,367151.5058364831,0,2576.368637334356 -7862,9705,17610,17609,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.755373911379763,6.146640074235656,56,-7,-46.61293517719774,0,3,2,2019,22,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,6.411520336294958,6.529244683941872,46.06,22.27,48.1,45.02,6.666666666666667,1,1,0,0,0,12,3,1,415,764776.866668486,186508.6444888649,367151.5058364831,0,2576.368637334356 -7863,9706,17611,17612,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.479292552498793,8.207724043409115,0,34,-11,75.93986297670648,0,3,3,2019,6,0,16,14,1,0,0,35.49004809188899,35.49004809188899,0,0,0,0,0,1,1,0,0,0,56.42,37.79,57.73,54.53,8.333333333333334,1,1,0,0,10,2,5,1,354.5,1662561.18506562,1358589.388334326,217540.2651672576,0,5756.48590035425 -7863,9706,17612,17611,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,8.656960522838089,8.70789172836523,7.067412381737099,34,11,19.2478260672455,0,3,2,2019,8,0,50,40,1,0,0,13.91829471324903,13.91829471324903,0,0,0,0,0,1,1,0,7.823205913193837,6.923506151402769,57.73,54.53,56.42,37.79,8.333333333333334,1,1,0,0,10,2,5,1,354.5,1662561.18506562,1358589.388334326,217540.2651672576,0,5756.48590035425 -7863,9707,17613,-9,17611,17612,1,0,23,0,0,0,2,2,-9,0,4,8.106276654805235,7.657657961077535,0,0,0,-1083.58736073708,0,2,2,2019,8,0,37,37,1,0,1,10.40402593446598,10.40402593446598,0,0,0,0,0,1,1,0,0,0,59.96,46.79,-9,-9,10,1,1,0,0,7,2,4,1,298,-72965.53267361812,57713.88452367336,0,0,1079.918533093033 -7864,9708,17614,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.254177288115255,8.023589694410921,5.994174954650887,0,0,-982.1099441234968,-9,1,2,2019,10,0,30,0,1,0,0,10.4760207760734,10.4760207760734,0,0,0,0,0,0,0,0,5.366270565083933,0,38.09,63.39,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,1239,14915.99489251888,-168487.7274752973,0,0,1623.573445357288 -7865,9709,17615,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.0733753346865,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.448232437166267,0,47.15,56.66,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,341,-123710.0095945073,0,0,0,738.8321269701286 -7866,9710,17616,17617,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.48786641001093,5.278985804525676,10,0,-140.195553542177,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.098789071381383,5.350361019881135,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,7,13,2,1,570,693163.7499030363,435669.3615089174,116257.8780605848,0,1076.094330190441 -7866,9710,17617,17616,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,10,0,54.60140509840088,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.990394725846297,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,13,2,1,570,693163.7499030363,435669.3615089174,116257.8780605848,0,1076.094330190441 -7867,9711,17618,17620,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.418788117627111,8.404282685363048,5.955594384641519,9,-3,142.3955228491031,0,3,2,2019,11,0,42,42,1,0,0,10.60293940519449,10.60293940519449,0,0,0,0,0,0,0,0,.5932528671650247,5.705313367896247,32.72,43.47,54.79,55.86,1.666666666666667,1,1,0,0,10,4,5,1,632.25,271013.6529355885,210089.7828383509,300904.2839357619,259084.3041004897,5482.088212388207 -7867,9711,17619,-9,17618,17620,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.9143937970489,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,632.25,271013.6529355885,210089.7828383509,300904.2839357619,259084.3041004897,5482.088212388207 -7867,9711,17620,17618,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,9.080332461574649,9.070373269749094,0,9,3,46.08052989164056,0,-9,-9,2019,7,0,40,38,1,0,0,25.9615706423135,25.9615706423135,0,0,0,0,0,0,0,0,0,0,54.79,55.86,32.72,43.47,8.333333333333334,1,1,0,0,7,4,5,1,632.25,271013.6529355885,210089.7828383509,300904.2839357619,259084.3041004897,5482.088212388207 -7867,9711,17621,-9,17618,17620,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.8822039877799,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,632.25,271013.6529355885,210089.7828383509,300904.2839357619,259084.3041004897,5482.088212388207 -7868,9712,17622,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-938.5875425608223,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,68.17,29.74,-9,-9,10,1,1,0,0,0,10,1,0,646,487664.1640713739,0,187796.5112366822,0,806.7039404535006 -7869,9713,17623,17624,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.572762127162353,8.494973187794209,46,1,80.12854388851291,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.195086871531124,57.16,56.15,52.6,52.88,8.333333333333334,1,1,0,0,0,5,4,1,1775.5,1257670.148728368,603315.5895075941,281172.4629958654,0,3220.606589683863 -7869,9713,17624,17623,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,47,-1,-139.1800959445139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.60889059714974,0,52.6,52.88,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,1775.5,1257670.148728368,603315.5895075941,281172.4629958654,0,3220.606589683863 -7869,9714,17625,-9,17624,17623,1,1,41,0,0,0,2,2,-9,0,4,7.132688426865028,7.04298202281762,0,0,0,-850.967923432406,0,2,2,2019,10,1,4,5,1,1,0,33.92655605671644,33.92655605671644,0,0,0,0,0,1,1,0,1.21247553899185,0,53.39,52.35,-9,-9,6.666666666666667,1,1,0,0,6,5,2,1,381,77912.51505959017,-20295.85303903919,0,0,636.9987237846326 -7870,9715,17626,17627,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.923075095686922,9.152226081462585,0,8,-5,42.78128673024028,0,-9,2,2019,6,0,32,30,1,0,0,30.68800478240816,30.68800478240816,0,0,0,0,0,0,0,0,0,0,55.79,52.62,51.71,38.38,8.333333333333334,1,1,0,0,9,6,5,1,617,716810.2196765631,109908.7190803167,429361.0233667514,48623.69153054313,4943.774851047755 -7870,9715,17627,17626,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.358844051003874,8.666487596296177,7.308826518273143,8,5,-14.19687377406578,0,3,2,2019,6,0,30,37,1,0,0,14.0265126480705,14.0265126480705,0,0,0,0,0,0,0,0,3.774994318263801,7.73728771807659,51.71,38.38,55.79,52.62,8.333333333333334,1,1,0,0,9,6,5,1,617,716810.2196765631,109908.7190803167,429361.0233667514,48623.69153054313,4943.774851047755 -7871,9716,17628,17629,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.83960687042519,8.541464207752208,0,9,4,26.19395228854654,0,2,2,2019,11,0,44,44,1,0,0,16.78072746596208,16.78072746596208,0,0,0,0,0,1,1,0,0,0,42.56,54.48,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,666,1423051.387817242,1268030.187256883,172015.7341847327,0,3644.211818531474 -7871,9716,17629,17628,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.090954489690796,7.941845655970464,0,9,-4,70.05813795907294,0,3,3,2019,8,0,21,21,1,0,0,15.01811180313999,15.01811180313999,0,0,0,0,0,1,1,0,3.917515960663755,0,51.83,57.2,42.56,54.48,8.333333333333334,1,1,0,0,10,6,5,1,666,1423051.387817242,1268030.187256883,172015.7341847327,0,3644.211818531474 -7872,9717,17630,17631,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,11,2,0,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.133644860444505,0,59.46,46.99,54.28,54.65,8.333333333333334,1,1,0,0,2,7,1,1,791.5,563314.2335752624,0,248147.482814245,0,551.6649777672592 -7872,9717,17631,17630,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,11,-2,0,0,2,2,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,7,0,0,0,4.284905761652022,0,54.28,54.65,59.46,46.99,10,1,1,0,0,9,7,1,1,791.5,563314.2335752624,0,248147.482814245,0,551.6649777672592 -7873,9718,17632,17633,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.644817162430352,5.430770192086384,6,-4,34.70838969770158,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,5.337366804437973,5.451839863260893,52.54,52.91,49.11,14.6,10,1,1,0,0,0,11,2,1,549,243118.1829256486,45526.17317123686,0,0,2538.931449101469 -7873,9718,17633,17632,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,6,4,12.20533975573856,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,68.04598347092764,0,0,1,1,0,0,0,49.11,14.6,52.54,52.91,6.666666666666667,1,1,0,0,0,11,2,1,549,243118.1829256486,45526.17317123686,0,0,2538.931449101469 -7874,9719,17634,17636,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.854328432758516,8.827053231255649,0,8,-7,-24.73798510490674,0,2,1,2019,12,1,37,40,1,1,0,18.30739073314664,18.30739073314664,0,0,0,0,0,1,1,0,0,0,29.47,51.36,49.24,50.29,5,1,1,0,0,10,13,5,1,1044.666666666667,697802.4058462591,532813.8339121941,286567.2700652071,190243.58179045,5464.904217261468 -7874,9719,17635,-9,17634,17636,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.7438291528468,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1044.666666666667,697802.4058462591,532813.8339121941,286567.2700652071,190243.58179045,5464.904217261468 -7874,9719,17636,17634,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.796556064088804,8.898097877319136,0,8,7,14.83004358518123,0,2,2,2019,6,0,38,37,1,0,0,19.08849171115554,19.08849171115554,0,0,0,0,0,1,1,0,0,0,49.24,50.29,29.47,51.36,8.333333333333334,1,1,0,0,10,13,5,1,1044.666666666667,697802.4058462591,532813.8339121941,286567.2700652071,190243.58179045,5464.904217261468 -7875,9720,17637,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.980871987686978,7.20520791907915,0,0,-1027.970053914935,0,-9,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.748731118501304,7.108785814263953,15.03,51.58,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,256,471958.3371970967,396405.1763192874,228209.8017987907,0,1262.873710178879 -7876,9721,17638,-9,17640,17639,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.07284649727,-9,2,2,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,56.77,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,1860,0,0,0,0,1614.718712097879 -7876,9721,17639,17640,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,1,0,0,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,42.18,41.73,21.13,24.2,5,1,1,1,1,0,1,1,1,1860,0,0,0,0,1614.718712097879 -7876,9721,17640,17639,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,1,0,0,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.13,24.2,42.18,41.73,0,1,1,0,1,3,1,1,1,1860,0,0,0,0,1614.718712097879 -7876,9722,17641,-9,17640,17639,1,1,20,0,1,0,2,2,-9,0,4,7.429021053335426,7.39000414910163,0,0,0,-1008.522152028332,-9,2,2,2019,9,0,37,0,1,0,1,4.371253561072196,4.371253561072196,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1173,0,0,0,0,957.3540822884833 -7877,9723,17642,17643,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,26,0,79.23343034221256,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,3.504785700242365,0,65.77,35,57.16,56.15,10,1,1,0,0,9,7,4,1,420.5,1584743.486730617,1027785.408184223,521898.4292610676,0,5285.593089434131 -7877,9723,17643,17642,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.223537006088446,8.276262418734772,0,26,9,-78.02013547585324,0,-9,-9,2019,8,1,45,77,1,1,0,14.67499973168135,14.67499973168135,0,0,0,0,0,1,0,1,9.214058665672624,0,57.16,56.15,65.77,35,10,1,1,0,0,13,7,4,1,420.5,1584743.486730617,1027785.408184223,521898.4292610676,0,5285.593089434131 -7877,9724,17644,-9,17642,17643,1,1,24,0,0,0,1,1,-9,0,4,7.843072932424318,7.598188015624627,0,0,0,-1089.942098509022,0,2,3,2019,7,0,37,58,1,0,1,9.206216496669743,9.206216496669743,0,0,0,0,0,1,0,1,0,0,56.42,52.58,-9,-9,8.333333333333334,1,1,0,0,1,7,4,1,957,-143491.8495663807,85676.34876186591,0,0,1157.528142677693 -7877,9725,17645,-9,17642,17643,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1027.776530924348,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,0,7,1,1,850,-134108.4517010097,0,0,0,597.818142252677 -7878,9726,17646,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.305791797190016,7.359819404839014,0,0,-1084.253651086758,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.465588145667902,58.7,46.46,-9,-9,10,1,1,0,0,0,2,3,1,206,498757.7205400535,-70133.18549004884,123209.8761141921,0,2106.33134685808 -7879,9727,17647,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,8.521856460185006,8.24868401470772,0,0,0,-1080.581529768486,0,2,-9,2019,20,8,40,43,1,8,0,13.86987623112597,13.86987623112597,0,0,0,0,0,0,0,0,0,0,36.54,47.01,-9,-9,3.333333333333333,1,1,0,0,12,8,4,1,563,665546.6141189316,5728.141248608497,400567.0556534223,0,1990.708335900154 -7880,9728,17648,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,5.958596884891627,6.290921691632353,0,0,-1050.294892820443,0,3,1,2019,10,0,0,0,4,0,0,0,0,1,1.804884295451771,0,23.47369424847187,0,1,1,0,2.133008937973013,6.400733082655234,47.45,32.89,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,132,406062.1658087542,81370.87701112834,199248.7669250492,0,1651.889950181915 -7881,9729,17649,17650,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.231883196572081,8.340435672589772,36,6,26.28295024704212,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.93743724252437,8.456908848672162,49.04,55.86,54.2,57.49,8.333333333333334,1,1,0,0,4,8,5,1,551.5,2752252.024176152,1988773.130450976,660868.4426726212,0,5413.609138566868 -7881,9729,17650,17649,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.181548468899557,8.020738648273589,43,-6,68.20711859366757,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.002967135088338,8.272641217290722,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,11,8,5,1,551.5,2752252.024176152,1988773.130450976,660868.4426726212,0,5413.609138566868 -7882,9730,17651,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.909709774840618,8.739999258958212,0,0,-1026.33872138575,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,1.005104218878738,0,25.91942570531817,0,1,1,0,3.794182926319138,9.143868406766265,58.09,14.09,-9,-9,8.333333333333334,1,1,0,0,0,7,5,0,285,2432176.85115887,1067597.370810788,573613.5261722958,0,4473.485284469799 -7883,9731,17652,17653,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.680919839946275,7.561769621440633,0,42,-2,65.14658878868926,0,3,-9,2019,10,0,38,40,1,0,0,5.082834608161641,5.082834608161641,0,0,0,0,7,1,1,0,0,0,37.34,55.42,60.06,37.11,8.333333333333334,1,1,0,0,10,11,3,0,1181,293905.2808307703,103856.1881089244,85969.1764201133,0,1841.571171127598 -7883,9731,17653,17652,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.438771461521057,6.350735547751443,42,2,47.84486098343029,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.073408925846084,60.06,37.11,37.34,55.42,8.333333333333334,1,1,0,0,0,11,3,0,1181,293905.2808307703,103856.1881089244,85969.1764201133,0,1841.571171127598 -7883,9731,17654,-9,17652,17653,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-868.4967948618496,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,1181,293905.2808307703,103856.1881089244,85969.1764201133,0,1841.571171127598 -7884,9732,17655,17656,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.141993190382495,7.146353354015,55,2,-68.20596274978629,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.703174031049665,7.426512905994896,53.53,51,22.52,41.45,10,1,1,0,0,0,5,4,1,523,1109178.467777417,258082.4263574863,405109.2808251351,0,3607.952151548935 -7884,9732,17656,17655,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,8.392858389618578,8.273147272039468,8,-2,-24.78084834014074,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,8.051420431189745,0,62.68720219204348,0,1,1,0,7.782446944210647,7.970221932656933,22.52,41.45,53.53,51,8.333333333333334,1,1,0,0,0,5,4,1,523,1109178.467777417,258082.4263574863,405109.2808251351,0,3607.952151548935 -7885,9733,17657,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1116.868264999486,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,31.62,52.54,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,625,-116091.1663094555,0,0,0,647.6939765805516 -7886,9734,17658,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.261585861859663,6.103828213556096,0,0,-1064.961550839652,0,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.225119494753949,20.32,39.7,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,392,165000.8422127112,42294.86159465737,0,0,1116.955010893032 -7887,9735,17659,17660,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,6.999192183989161,6.97493407990609,11,-5,103.0741489161116,0,-9,-9,2019,34,12,0,40,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.739447189059964,14.07,27.63,57.06,57.76,0,1,1,0,1,12,5,2,1,451.5,657291.8435923905,408538.3170749142,140551.2825507947,0,1678.960050628485 -7887,9735,17660,17659,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.16748607211894,6.692724724176811,11,5,17.08228372213528,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.600554545893027,6.178375815932262,57.06,57.76,14.07,27.63,8.333333333333334,1,1,0,1,8,5,2,1,451.5,657291.8435923905,408538.3170749142,140551.2825507947,0,1678.960050628485 -7888,9736,17661,17662,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,41,-1,82.94871414278545,0,2,3,2019,11,0,0,0,4,2,0,0,0,1,0,18.0950775557861,0,0,1,1,0,.3959709178627996,0,50,47,51.34,25.44,7,1,1,0,0,0,10,3,1,932,317631.8513355411,179153.3149471995,179158.08351732,32292.5639478378,3262.066989931229 -7888,9736,17662,17661,-9,-9,1,1,65,0,0,0,1,1,-9,0,1,0,8.126023278828987,8.397514023241422,41,1,23.55991708990839,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,4.07146794042333,8.448152052023701,51.34,25.44,50,47,5,1,1,0,0,0,10,3,1,932,317631.8513355411,179153.3149471995,179158.08351732,32292.5639478378,3262.066989931229 -7889,9737,17663,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,6.791489484178976,6.932206095139914,0,0,-952.7199300178846,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.148854656072727,6.801989946738543,55.65,45.75,-9,-9,10,1,1,0,0,0,10,2,1,424,489906.0713457034,18160.60363429326,523188.8355673276,0,1680.433640506987 -7890,9738,17664,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.543984205467169,8.663190761305122,0,0,0,-1017.096176624435,0,3,3,2019,13,2,41,40,1,2,0,10.5171047676675,10.5171047676675,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,3.333333333333333,3,4,0,0,9,8,4,0,767,258864.1358588446,140030.2927925264,169908.5034436462,89757.06645319199,1318.500553411431 -7890,9739,17665,-9,17664,-9,1,1,29,0,0,0,2,2,-9,0,4,7.612917037633792,7.707981387603732,0,0,0,-964.6676734732428,0,1,-9,2019,10,0,45,40,1,1,1,5.138322897027952,5.138322897027952,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,0,3200,126597.1983967955,0,0,0,981.3746598249019 -7891,9740,17666,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1064.427104249587,0,2,2,2019,11,0,0,0,4,1,0,0,0,1,0,2.010798267696731,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,10,1,0,919,159995.7182510105,0,0,0,841.9345198874196 -7892,9741,17667,17668,-9,-9,1,1,90,0,0,0,2,2,-9,0,1,0,6.172529450901023,6.196560749193043,35,11,-67.10154545904466,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,6.4675196342968,0,0,1,1,0,0,6.320454921826371,45.65,19.75,41.52,41.71,5,1,1,0,0,0,5,2,1,559,189797.4106884114,10972.69955593007,0,0,722.6445661350863 -7892,9741,17668,17667,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,35,-11,145.5042764070475,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.52,41.71,45.65,19.75,6.666666666666667,1,1,0,0,0,5,2,1,559,189797.4106884114,10972.69955593007,0,0,722.6445661350863 -7893,9742,17669,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,8.98832122099345,9.054010755663883,0,0,0,-1132.794387180774,0,2,2,2019,11,1,55,50,1,1,0,19.82397291491351,19.82397291491351,0,0,0,0,0,0,0,0,4.610562921942253,0,52.24,50.75,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,149,25854.37440908672,135868.0946597874,0,0,3090.529127961243 -7894,9743,17670,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.668432056871772,9.739945917038797,7.414024175897693,0,0,-901.4750652265635,0,2,1,2019,8,0,45,43,1,0,0,42.93098704403332,42.93098704403332,0,0,0,0,0,0,0,0,7.339771499015862,6.09638004670048,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,465,613685.2563632795,116792.5198951284,0,0,6555.30929790866 -7894,9744,17671,-9,17670,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1076.468789841074,-9,1,-9,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,5,1,1,0,0,0,9,1,0,1651,6865.057567407734,0,0,0,0 -7895,9745,17672,17673,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.208352408494259,8.350403435243164,0,29,-5,-43.19859095342603,0,2,3,2019,14,2,43,42,1,2,0,9.835668181809256,9.835668181809256,0,0,0,0,14.5,0,0,0,3.995872300970503,0,46.1,59.99,41.87,35.22,8.333333333333334,2,3,0,0,11,4,3,1,594.5,225191.3765615048,69883.16134058475,0,0,1848.199048893674 -7895,9745,17673,17672,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,0,0,0,9,5,-219.6165070464486,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,2.802387204448543,0,41.87,35.22,46.1,59.99,3.333333333333333,2,3,1,0,0,4,3,1,594.5,225191.3765615048,69883.16134058475,0,0,1848.199048893674 -7895,9746,17674,-9,17672,17673,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.2922858066077,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.051098305458267,0,48.6,49.46,-9,-9,6.666666666666667,2,3,0,0,2,4,1,1,422,0,0,0,0,1230.700194742438 -7896,9747,17675,17676,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,9,0,0,0,-9,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,.5558615751676482,0,55.71,11.3,43.18,25.09,8.333333333333334,1,1,0,0,3,8,1,1,319,429417.9939914776,0,219823.0739587652,0,946.6640419835466 -7896,9747,17676,17675,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,9,9,0,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,31.18696071407281,0,7,1,1,0,1.797579363474417,0,43.18,25.09,55.71,11.3,5,1,1,0,0,0,8,1,1,319,429417.9939914776,0,219823.0739587652,0,946.6640419835466 -7897,9748,17677,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1049.140385001442,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.3,24.81,-9,-9,5,1,1,0,0,0,4,1,0,567,86671.41375398506,0,0,0,1629.008412763181 -7897,9749,17678,-9,17677,-9,1,1,28,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1100.173490676535,0,2,3,2019,14,1,0,0,3,1,1,0,0,0,0,0,0,120,1,1,0,0,0,18,59.11,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,115,115114.2948229086,0,0,0,801.4373159080212 -7898,9750,17679,17680,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.438174176452256,6.628839514425885,10,7,-41.19286867825446,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.22646806898964,54.37,54.8,64.55,36.47,8.333333333333334,1,1,0,0,6,7,2,0,1653,460828.3245949876,-1793.271515749057,342485.9720209686,0,1089.040708865625 -7898,9750,17680,17679,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,5.520969183537392,5.648945532638754,0,10,-7,-74.24530294055246,0,2,2,2019,10,0,40,40,1,0,0,1.011604142519024,1.011604142519024,0,0,0,0,0,1,1,0,0,0,64.55,36.47,54.37,54.8,6.666666666666667,1,1,0,0,11,7,2,0,1653,460828.3245949876,-1793.271515749057,342485.9720209686,0,1089.040708865625 -7899,9751,17681,17682,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.260326360387966,8.292663651716799,0,29,-1,69.83577201068927,0,-9,-9,2019,13,1,40,38,1,1,0,15.43836339877508,15.43836339877508,0,0,0,0,0,0,0,0,0,0,32.52,53.72,57.45,49.27,3.333333333333333,1,1,0,1,12,5,5,1,267.5,456425.4460333345,266039.3234278879,212261.5278777957,42349.27531029581,3801.19610000088 -7899,9751,17682,17681,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.465188502930918,8.736932195877758,0,10,1,102.3686014083811,0,-9,-9,2019,9,0,40,0,1,0,0,13.26104147658808,13.26104147658808,0,0,0,0,0,0,0,0,0,0,57.45,49.27,32.52,53.72,8.333333333333334,1,1,0,0,11,5,5,1,267.5,456425.4460333345,266039.3234278879,212261.5278777957,42349.27531029581,3801.19610000088 -7900,9752,17683,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.294916354113301,8.283639633804155,0,0,0,-959.4051732320158,0,2,2,2019,14,2,55,52,1,2,0,6.968106467491278,6.968106467491278,0,0,0,0,0,0,0,0,0,0,38.65,44.29,-9,-9,5,1,1,0,0,6,9,4,0,140,22734.75791553366,0,0,0,1562.11693112587 -7901,9753,17684,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.94476426083794,5.945271272527664,0,0,-1081.430938760764,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.970736437897108,65.64,18.73,-9,-9,10,1,1,0,0,0,12,2,0,418,135133.2451241587,60259.68345120172,185642.3780631723,0,1455.494926020378 -7902,9754,17685,17686,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,53,-2,63.24931086139972,0,2,1,2019,8,1,0,0,4,1,0,0,0,1,0,5.200886302519012,0,2,1,1,0,5.370661984620665,0,57.18,38.32,43.89,14.04,8.333333333333334,1,1,0,0,0,12,3,1,465.5,1021506.542472548,574518.1171546597,379931.4713050789,0,3246.476878474024 -7902,9754,17686,17685,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.219104016618543,8.164505324489316,51,2,-15.13864942535029,0,2,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.591975110127917,8.314149301808122,43.89,14.04,57.18,38.32,8.333333333333334,1,1,0,0,0,12,3,1,465.5,1021506.542472548,574518.1171546597,379931.4713050789,0,3246.476878474024 -7903,9755,17687,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.886355334176944,9.669752439811496,0,0,0,-1103.379502700178,0,-9,-9,2019,13,4,37,40,1,4,0,56.39291524375536,56.39291524375536,0,0,0,0,0,1,1,0,9.666060632350966,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,847,1044933.719837634,386055.0344891935,257961.6099321406,0,23561.58665754088 -7903,9756,17688,-9,-9,17687,1,0,22,0,0,0,1,1,1,0,4,7.490953882407972,8.479778278701348,6.940272299885695,0,0,-1029.939688773658,-9,-9,2,2019,9,2,40,0,1,2,1,7.848284537423073,7.848284537423073,0,0,0,0,0,1,1,0,7.519939852289963,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,414,57933.80481790581,-22264.2188499858,0,0,1550.471691109059 -7903,9757,17689,-9,-9,17687,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1060.065604984422,-9,-9,2,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,1.320753602982275,0,36.08,60.5,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,603,-13729.19848667188,0,0,0,574.8066478551486 -7904,9758,17690,17691,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,7.444823562902867,7.46113942173889,0,11,14,44.65887314277398,0,3,2,2019,10,0,50,40,1,0,0,4.185617486065416,4.185617486065416,0,0,0,0,0,1,1,0,0,0,56.74,55.09,48.92,54.97,10,3,4,0,0,10,8,2,0,632.3333333333334,645920.0685886481,0,475192.6089794375,0,638.8097880325837 -7904,9758,17691,17690,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,0,0,0,11,-14,78.83337022046591,0,2,2,2019,13,1,0,12,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,54.97,56.74,55.09,8.333333333333334,3,4,1,0,6,8,2,0,632.3333333333334,645920.0685886481,0,475192.6089794375,0,638.8097880325837 -7904,9758,17692,-9,17691,17690,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.8477371632313,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.5458305047561804,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,632.3333333333334,645920.0685886481,0,475192.6089794375,0,638.8097880325837 -7905,9759,17693,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1060.317781533405,0,3,2,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,20.36,39.79,-9,-9,3.333333333333333,1,1,0,1,3,12,2,0,102,61277.75011709119,0,103117.3334988406,0,802.6413977235646 -7906,9760,17694,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.894365620693443,7.343691753316905,0,0,0,-1017.223419589484,0,2,-9,2019,11,0,40,40,1,2,1,7.025894907666978,7.025894907666978,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,1,128,233821.7614416838,0,0,0,1334.781218879451 -7907,9761,17695,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.936770840010864,7.121755211050036,0,0,-902.3346010667835,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.177960973708498,60.98,40.77,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,478,534784.6685444133,273553.3051695147,237106.1008888315,0,1348.459122746236 -7908,9762,17696,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.508726402495745,8.572469202368197,6.669204626268177,0,0,-833.9188641351946,0,3,3,2019,6,0,51,51,1,0,0,11.07314099805394,11.07314099805394,0,0,0,0,14.5,0,0,0,7.027872211427703,6.823865025975413,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,8,7,5,1,192,6583.203321422756,21271.00926440521,0,0,2492.158872565489 -7909,9763,17697,-9,17698,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.2616798852098,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,710.5,183342.4823544539,-28194.25570864843,0,0,1790.436189687016 -7909,9763,17698,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,1,0,6.948687490072906,6.930583949067226,0,0,-970.4241895079025,0,2,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.32266126004863,0,33.81,15.92,-9,-9,5,1,1,0,0,0,7,2,1,710.5,183342.4823544539,-28194.25570864843,0,0,1790.436189687016 -7910,9764,17699,-9,17700,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.9714823444923,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,0,377.5,219233.7122579843,-12010.89537170559,119225.699425486,86846.52039717909,948.1705496208394 -7910,9764,17700,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,8.141068175200243,8.04582083794295,0,3,-1,-75.90057230395507,0,2,2,2019,15,3,37,32,1,3,0,9.131490300594677,9.131490300594677,0,0,0,0,0,1,1,0,0,0,47.55,49.86,48.77,60.16,8.333333333333334,1,1,0,0,5,5,4,0,377.5,219233.7122579843,-12010.89537170559,119225.699425486,86846.52039717909,948.1705496208394 -7910,9765,17701,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,8.221139736087341,8.226681782993786,0,3,1,107.7947736946712,0,-9,-9,2019,17,5,43,55,1,5,0,9.481813530888452,9.481813530888452,0,0,0,0,0,1,1,0,0,0,48.77,60.16,47.55,49.86,6.666666666666667,1,1,0,0,4,5,4,0,1224,94773.78055964503,50560.91723960074,82965.42784987127,50226.57558633279,1678.796323524578 -7911,9766,17702,17703,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.651393895267832,8.360025911157129,0,7,-5,132.274910517974,0,2,2,2019,18,6,50,52,1,6,0,10.79529501963787,10.79529501963787,0,0,0,0,0,1,1,0,0,0,42.22,58.79,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,804.5,444469.2864575248,178512.2084918076,222723.8620110807,84283.52823067551,3713.687491982323 -7911,9766,17703,17702,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.577076804443207,8.596617740881838,0,7,5,19.43184153387997,0,-9,-9,2019,7,0,36,37,1,0,0,16.11617976710139,16.11617976710139,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.22,58.79,10,1,1,0,1,9,2,5,1,804.5,444469.2864575248,178512.2084918076,222723.8620110807,84283.52823067551,3713.687491982323 -7911,9766,17704,-9,17702,17703,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.0873548102149,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,804.5,444469.2864575248,178512.2084918076,222723.8620110807,84283.52823067551,3713.687491982323 -7911,9766,17705,-9,17702,17703,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.98874533532,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,804.5,444469.2864575248,178512.2084918076,222723.8620110807,84283.52823067551,3713.687491982323 -7912,9767,17706,17707,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,0,0,6,3,0,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.92,51.87,66.94,23.54,6.666666666666667,2,3,0,0,4,8,1,0,874,761003.2449833287,142886.4680125954,358528.3591093656,0,1666.93811278505 -7912,9767,17707,17706,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,6,-3,0,0,-9,-9,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,66.94,23.54,36.92,51.87,8.333333333333334,2,3,0,0,0,8,1,0,874,761003.2449833287,142886.4680125954,358528.3591093656,0,1666.93811278505 -7913,9768,17708,-9,17710,17709,1,0,27,0,0,0,2,2,-9,0,4,8.296290673288764,8.092438585527741,0,0,0,-1052.097693109557,0,2,3,2019,9,0,39,39,1,0,1,10.10731736899417,10.10731736899417,0,0,0,0,0,1,1,0,.9311964818721203,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,1025,-4501.700047701973,-73245.43532793812,0,0,1566.132468154086 -7913,9769,17709,17710,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.962588300832533,7.887477359013024,10,10,126.8661096915347,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.707805020689698,7.914363944942694,48.11,49.83,49.61,54.24,3.333333333333333,1,1,0,0,7,11,4,1,656,61945.55324209988,-16697.34443065579,0,0,3021.469704241651 -7913,9769,17710,17709,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.860162327830063,7.619734064851307,0,10,-10,-32.59146028598755,0,-9,-9,2019,11,1,30,30,1,1,0,10.88924504879364,10.88924504879364,0,0,0,0,0,1,1,0,0,0,49.61,54.24,48.11,49.83,8.333333333333334,1,1,0,0,11,11,4,1,656,61945.55324209988,-16697.34443065579,0,0,3021.469704241651 -7914,9770,17711,-9,17713,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1069.767047264598,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,3,0,802.25,13378.1596946077,0,118734.3360297925,7074.941153871313,2345.663096740682 -7914,9770,17712,-9,17713,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-986.0824371620913,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,0,802.25,13378.1596946077,0,118734.3360297925,7074.941153871313,2345.663096740682 -7914,9770,17713,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,7.431904901032713,7.607138638350629,5.581465381764233,0,0,-1089.607064395854,0,2,3,2019,11,0,28,35,1,0,0,5.395903851197749,5.395903851197749,0,0,0,0,2,1,1,0,5.312920111260226,0,34.92,44.55,-9,-9,6.666666666666667,1,1,0,0,2,5,3,0,802.25,13378.1596946077,0,118734.3360297925,7074.941153871313,2345.663096740682 -7914,9770,17714,-9,17713,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1057.056440451069,-9,3,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,53.57,-9,-9,1.666666666666667,1,1,0,0,0,5,3,0,802.25,13378.1596946077,0,118734.3360297925,7074.941153871313,2345.663096740682 -7915,9771,17715,-9,17717,17716,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-897.0755942376101,-9,2,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,5,1,577,743684.9370978343,226755.2281530669,402784.3874744907,72630.04088145512,9331.905291483648 -7915,9771,17716,17717,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.672918175872368,9.51778259473577,0,29,1,1.046658808428638,0,1,1,2019,10,0,104,56,1,0,0,17.33678502307996,17.33678502307996,0,0,0,0,0,1,1,0,3.611236660649679,0,57.16,56.15,51.54,51.15,8.333333333333334,1,1,0,0,12,2,5,1,577,743684.9370978343,226755.2281530669,402784.3874744907,72630.04088145512,9331.905291483648 -7915,9771,17717,17716,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.114923016699398,8.018272601416667,0,29,-1,-89.39965711234592,-9,2,1,2019,6,0,27,0,1,0,0,14.74826659135018,14.74826659135018,0,0,0,0,0,1,1,0,0,0,51.54,51.15,57.16,56.15,10,1,1,0,0,11,2,5,1,577,743684.9370978343,226755.2281530669,402784.3874744907,72630.04088145512,9331.905291483648 -7916,9772,17718,17719,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.572664464764175,8.325553832823941,0,7,0,-160.1148045861404,0,2,2,2019,8,0,38,38,1,0,0,15.80766933596939,15.80766933596939,0,0,0,0,0,0,0,0,0,0,56.38,50.99,53,54,8.333333333333334,1,1,0,0,10,5,5,1,748.5,763487.415743931,315265.31561651,262846.4135290867,21124.49090076889,3390.080093766216 -7916,9772,17719,17718,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.836386582910722,7.917778100515312,0,7,0,4.303541632858971,0,-9,-9,2019,9,0,16,30,1,1,0,22.38418297527034,22.38418297527034,0,0,0,0,0,0,0,0,0,0,53,54,56.38,50.99,8,1,1,0,0,1,5,5,1,748.5,763487.415743931,315265.31561651,262846.4135290867,21124.49090076889,3390.080093766216 -7916,9773,17720,-9,17718,17719,1,0,27,0,0,0,2,2,-9,0,4,7.28567578921377,7.170187058464573,0,0,0,-928.3288614965893,0,1,3,2019,6,0,20,20,1,0,1,7.413596648847781,7.413596648847781,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,8,5,3,1,1730,0,0,0,0,977.8110030128978 -7917,9774,17721,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.162874177805306,7.462432161108583,6.875035387254427,0,0,-982.1072849770037,0,2,2,2019,12,2,1,1,1,2,0,163.1567887658898,163.1567887658898,0,0,0,0,2,1,1,0,0,6.582329709905434,43.21,47.68,-9,-9,6.666666666666667,1,1,0,0,12,8,3,1,2959,849600.3350623319,533885.6029122784,438378.9504505683,12206.67201227193,1353.351230658737 -7918,9775,17722,17723,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,8.231943076468369,8.231632859225728,0,33,-8,100.5273184988089,0,3,3,2019,23,11,40,35,1,11,0,9.933265118460627,9.933265118460627,0,0,0,0,2,0,0,0,0,0,30.87,38.97,44.58,43.97,5,1,1,0,0,12,12,4,1,1353,886566.1623560661,661751.670006888,386603.9766737847,166978.2894989502,2462.788524017799 -7918,9775,17723,17722,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.068123062525245,7.991430800644914,5.631431738779367,33,8,70.28138699340803,0,-9,-9,2019,12,0,40,40,1,0,0,7.708841875368122,7.708841875368122,0,0,0,0,0,0,0,0,4.491973948151488,6.323127695611628,44.58,43.97,30.87,38.97,5,1,1,0,0,12,12,4,1,1353,886566.1623560661,661751.670006888,386603.9766737847,166978.2894989502,2462.788524017799 -7919,9776,17724,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.3149793098664,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.19,40.04,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,252,53315.72059592114,0,0,0,1042.278740465845 -7920,9777,17725,17726,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,17,10,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,50,46,51,48,7,1,1,0,0,0,2,1,0,323.5,261418.9046235936,0,149073.0369477866,0,1321.760953675246 -7920,9777,17726,17725,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,17,-10,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,50,46,7,1,1,0,0,0,2,1,0,323.5,261418.9046235936,0,149073.0369477866,0,1321.760953675246 -7921,9778,17727,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,6.690200020944136,6.766216029661144,0,0,0,-1045.458533702594,0,2,2,2019,18,6,11,12,1,6,0,9.592218650150597,9.592218650150597,0,0,0,0,2,1,1,0,1.62067112649407,0,44.14,27.4,-9,-9,6.666666666666667,1,1,0,0,8,1,2,1,170,20141.72060567845,0,0,0,1000.138291557865 -7922,9779,17728,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.475794536858166,7.281838428142629,0,0,-939.2514458397434,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.686731673020061,7.359857965795963,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,458,1502107.576893059,395832.2136786079,766115.547113399,0,1928.648733761034 -7923,9780,17729,17730,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.506709464541405,8.380334647109441,6.430914428497187,7,-2,43.78411775623501,0,3,3,2019,10,0,45,50,1,1,0,8.216967565095356,8.216967565095356,0,0,0,0,0,1,1,0,0,6.817718897456521,51,48,58.03,28.56,7,1,1,0,0,1,8,4,1,281.5,1335620.243266412,933531.9447023515,341317.1196382437,0,2581.948280800648 -7923,9780,17730,17729,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.81187415630331,5.353682480727814,7,2,60.64597759857932,0,3,3,2019,8,0,0,27,4,0,0,0,0,1,0,15.50128930206715,0,0,1,1,0,0,5.894076218501954,58.03,28.56,51,48,6.666666666666667,1,1,0,0,8,8,4,1,281.5,1335620.243266412,933531.9447023515,341317.1196382437,0,2581.948280800648 -7923,9781,17731,-9,17730,17729,1,0,32,0,0,0,1,1,-9,0,5,8.163472043857592,8.19978244980649,0,0,0,-872.9557883399843,0,2,2,2019,12,1,35,40,1,1,1,11.7283490203368,11.7283490203368,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,0,8,8,4,1,369,150540.6943853949,-31975.16964354394,0,0,1701.804914649568 -7924,9782,17732,17733,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,7.889809528489973,7.776188229301185,0,11,-7,19.45855908423589,0,3,3,2019,10,0,40,40,1,0,0,9.503474820480248,9.503474820480248,0,0,0,0,0,0,0,0,0,0,48.57,53.15,49.97,53.99,8.333333333333334,1,1,0,1,9,1,3,0,888.5,214571.6607881095,68014.91106624217,0,0,1316.124549939477 -7924,9782,17733,17732,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,0,0,0,11,7,-37.32914905620087,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.97,53.99,48.57,53.15,5,1,1,0,1,0,1,3,0,888.5,214571.6607881095,68014.91106624217,0,0,1316.124549939477 -7924,9783,17734,-9,17733,17732,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.351248932214,0,3,3,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,39.98,44.78,-9,-9,3.333333333333333,1,1,1,1,0,1,1,0,923,136503.7736674288,0,0,0,0 -7924,9784,17735,-9,17733,17732,1,1,31,0,0,0,2,2,-9,0,3,7.829718150767,8.023662625600755,0,0,0,-868.7707937277173,0,3,3,2019,11,0,35,0,1,0,1,7.794130129892884,7.794130129892884,0,0,0,0,0,0,0,0,0,0,51.98,54.53,-9,-9,8.333333333333334,1,1,0,0,7,1,4,0,1558,281832.8712003683,0,0,0,1246.02966827535 -7925,9785,17736,17738,-9,-9,1,0,46,0,2,0,1,1,-9,1,2,0,0,0,24,-3,102.9002654027516,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,39.69,45.76,44.2,44.44,3.333333333333333,3,4,0,1,0,8,2,0,421.25,-117400.8325004283,0,0,0,2125.029821353779 -7925,9785,17737,-9,17736,17738,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.8230726334431,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,2,0,421.25,-117400.8325004283,0,0,0,2125.029821353779 -7925,9785,17738,17736,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,6.853419413168588,6.909083670782041,0,24,3,-44.23378779494961,0,-9,3,2019,3,0,60,70,1,0,0,1.681102518713335,1.681102518713335,0,0,0,0,2,1,1,0,1.900012870954882,0,44.2,44.44,39.69,45.76,8.333333333333334,3,4,0,0,9,8,2,0,421.25,-117400.8325004283,0,0,0,2125.029821353779 -7925,9785,17739,-9,17736,17738,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.3295383535608,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,421.25,-117400.8325004283,0,0,0,2125.029821353779 -7925,9786,17740,-9,17736,17738,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-958.0505520860511,1,1,2,2019,3,1,0,20,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,1,3,8,1,0,2263,-245485.3769583653,0,0,0,0 -7926,9787,17741,17742,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.902334093444324,8.113834735295772,28,1,-79.8458322387786,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.730618685025019,8.003929254989728,55.94,47.09,43.59,46.41,8.333333333333334,1,1,0,0,5,8,4,1,1520.5,2574433.466018847,1249870.945534471,573958.4685466248,0,3219.720356348255 -7926,9787,17742,17741,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.455847408714551,7.056101508197736,28,-1,14.87996777709316,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.364454618362449,7.133482144795229,43.59,46.41,55.94,47.09,8.333333333333334,1,1,0,0,10,8,4,1,1520.5,2574433.466018847,1249870.945534471,573958.4685466248,0,3219.720356348255 -7927,9788,17743,17744,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.839645940770112,8.272163569542446,0,23,-1,45.05181456219616,-9,-9,-9,2019,19,7,37,0,1,7,0,10.95490541522663,10.95490541522663,0,0,0,0,0,0,0,0,0,0,22.92,33.1,53.38,47.51,5,1,1,0,0,12,9,5,1,288,4930198.183180109,3024932.326258229,987761.7383212259,0,3302.309412104921 -7927,9788,17744,17743,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.809686498957761,8.433637231400398,0,24,1,-27.17072425769065,0,-9,-9,2019,6,0,56,8,1,0,0,12.95857603188259,12.95857603188259,0,0,0,0,0,0,0,0,0,0,53.38,47.51,22.92,33.1,8.333333333333334,1,1,0,0,12,9,5,1,288,4930198.183180109,3024932.326258229,987761.7383212259,0,3302.309412104921 -7928,9789,17745,-9,-9,-9,1,1,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-981.4100178815775,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,33.62,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,86,191479.4170912752,27434.12278498347,0,0,755.8808104017273 -7929,9790,17746,17747,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,60,-2,57.73291671227106,0,3,3,2019,24,11,0,0,4,11,0,0,0,1,0,19.42047471003137,0,0,1,1,0,.762260735613606,0,47.14,13.98,54.38,44.07,5,1,1,0,0,0,12,2,1,1110.5,220155.371033557,209584.8238485842,172878.756196502,0,2198.269203646344 -7929,9790,17747,17746,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.14659386980524,6.961900023019488,60,2,140.4627306747634,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,3.236900372195969,6.907056408573688,54.38,44.07,47.14,13.98,1.666666666666667,1,1,0,0,1,12,2,1,1110.5,220155.371033557,209584.8238485842,172878.756196502,0,2198.269203646344 -7930,9791,17748,17749,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,6.745217578573595,7.528115796892775,5.86988009448114,48,-4,-88.32759151958437,0,3,3,2019,15,5,3,3,1,5,0,39.61923713436332,39.61923713436332,0,0,0,0,0,1,1,0,5.922194111764142,6.170020612696624,49.37,41.95,54.7,46.42,8.333333333333334,1,1,0,0,11,9,5,1,1109.5,818479.3809940623,0,412679.9952854739,0,4800.768185956544 -7930,9791,17749,17748,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.678035778941663,8.644736918768668,5.79801832146108,48,4,121.1885440072555,0,3,3,2019,10,0,10,15,1,0,0,74.36003167424536,74.36003167424536,0,0,0,0,0,1,1,0,5.760020708030656,5.859668930014988,54.7,46.42,49.37,41.95,8.333333333333334,1,1,0,0,11,9,5,1,1109.5,818479.3809940623,0,412679.9952854739,0,4800.768185956544 -7931,9792,17750,17751,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.59790745596395,8.616810026851335,4.886016603965966,28,5,44.62676198896469,0,-9,-9,2019,7,0,30,35,1,0,0,19.40715226895508,19.40715226895508,0,0,0,0,0,0,0,0,0,5.652626735116336,51.83,57.2,49.29,49.06,6.666666666666667,1,1,0,0,10,2,5,1,1283.5,714585.3325287611,592871.5192509524,116296.5401430481,0,3084.227181369994 -7931,9792,17751,17750,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.568297943854229,7.345416742907594,0,28,-5,-25.86427851754127,0,3,2,2019,12,0,32,30,1,0,0,6.12241530182878,6.12241530182878,0,0,0,0,0,0,0,0,0,0,49.29,49.06,51.83,57.2,1.666666666666667,1,1,0,0,9,2,5,1,1283.5,714585.3325287611,592871.5192509524,116296.5401430481,0,3084.227181369994 -7931,9793,17752,-9,17751,17750,1,0,28,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1082.63144648158,-9,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1.985062414052722,0,54.1,59.11,-9,-9,6.666666666666667,1,1,1,0,2,2,2,1,904,0,0,0,0,42.96994026125017 -7931,9794,17753,-9,17751,17750,1,0,27,0,0,0,1,1,-9,0,4,7.852927885517263,8.201688113667412,0,0,0,-834.8499629010213,0,2,2,2019,16,5,38,37,1,5,1,8.660634449814042,8.660634449814042,0,0,0,0,0,0,0,0,.7232604652465188,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,125,42478.47958998188,61041.26011200043,49174.22783698389,71959.68617845779,1382.870375386068 -7932,9795,17754,17755,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,63,-3,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.361183570367205,0,52,45,50,35,8,1,1,0,0,0,10,1,1,352.5,501837.2182278383,110321.2627570329,283744.2527798994,0,994.5583470455882 -7932,9795,17755,17754,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,63,3,0,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,1.189190876302721,0,0,1,1,0,0,0,50,35,52,45,8.333333333333334,1,1,0,0,0,10,1,1,352.5,501837.2182278383,110321.2627570329,283744.2527798994,0,994.5583470455882 -7933,9796,17756,17757,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,8.482234272909931,8.556465170767977,0,15,-3,-9.943742126139542,0,-9,-9,2019,20,9,55,50,1,9,0,9.816012950684545,9.816012950684545,0,0,0,0,0,1,1,0,0,0,23.8,50.4,42.85,60.33,3.333333333333333,1,1,0,1,10,8,3,0,706.5,-3298.148288525575,-52605.89266177538,0,0,2085.313159442664 -7933,9796,17757,17756,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,15,3,-49.98486820386454,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,23.8,50.4,3.333333333333333,3,4,0,1,6,8,3,0,706.5,-3298.148288525575,-52605.89266177538,0,0,2085.313159442664 -7933,9796,17758,-9,17757,17756,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.272487106939,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,706.5,-3298.148288525575,-52605.89266177538,0,0,2085.313159442664 -7933,9796,17759,-9,17757,17756,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.7312710376915,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,706.5,-3298.148288525575,-52605.89266177538,0,0,2085.313159442664 -7934,9797,17760,17761,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.07481829860463,9.131570084383256,0,13,-3,59.02036570132191,-9,-9,-9,2019,11,1,35,0,1,1,0,31.62451051416317,31.62451051416317,0,0,0,0,0,0,0,0,4.579910087417014,0,45.91,59.89,39.34,54.03,8.333333333333334,1,1,0,0,9,2,5,1,1019,470003.0766521135,395007.2591837782,389526.3880051582,265456.8352307183,6608.738571157735 -7934,9797,17761,17760,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.924254151774678,8.691337712112594,0,13,3,1.669361935220685,-9,-9,-9,2019,18,6,50,0,1,6,0,16.16852466407533,16.16852466407533,0,0,0,0,0,0,0,0,5.581269862932486,0,39.34,54.03,45.91,59.89,6.666666666666667,1,1,0,0,8,2,5,1,1019,470003.0766521135,395007.2591837782,389526.3880051582,265456.8352307183,6608.738571157735 -7935,9798,17762,17763,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,8.021255787246194,8.006659960503796,0,22,4,-43.98263771384843,0,2,3,2019,9,0,24,12,1,0,0,14.28264968291752,14.28264968291752,0,0,0,0,14.5,1,1,0,0,0,56.77,52.22,60.7,47.65,8.333333333333334,1,1,0,0,12,13,5,1,739,130137.9082662968,96075.93121471259,217958.5604701397,84956.03695561696,4534.702367471937 -7935,9798,17763,17762,-9,-9,1,1,56,0,0,0,1,1,-9,1,4,8.465578729402424,8.75609168985841,0,25,-4,-53.37001838335692,0,2,2,2019,8,0,41,41,1,0,0,13.95162226643993,13.95162226643993,0,0,0,0,7,1,1,0,0,0,60.7,47.65,56.77,52.22,8.333333333333334,1,1,0,0,12,13,5,1,739,130137.9082662968,96075.93121471259,217958.5604701397,84956.03695561696,4534.702367471937 -7935,9799,17764,-9,17762,17763,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-895.537958862659,1,2,1,2019,7,2,0,15,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,523,0,0,0,0,991.6115195882257 -7936,9800,17765,-9,17766,17767,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-934.4147820780754,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,1,561.3333333333334,196549.5063508496,138558.9145729742,193911.4843432043,105934.4739709346,4992.890285799255 -7936,9800,17766,17767,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,7.367975514739236,7.601955166622901,0,3,8,17.84547130173753,0,2,3,2019,7,0,22,0,1,0,0,8.533762805707136,8.533762805707136,0,0,0,0,0,1,1,0,8.187905722618538,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,561.3333333333334,196549.5063508496,138558.9145729742,193911.4843432043,105934.4739709346,4992.890285799255 -7936,9800,17767,17766,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.705449030145685,8.781321413908127,0,3,-8,-184.5871058883749,0,-9,-9,2019,6,0,40,40,1,0,0,21.71587054097476,21.71587054097476,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,6,4,1,561.3333333333334,196549.5063508496,138558.9145729742,193911.4843432043,105934.4739709346,4992.890285799255 -7937,9801,17768,17771,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.023696357181885,9.326441580003968,0,7,1,108.3657904430209,0,-9,-9,2019,9,0,45,40,1,1,0,23.02721371306527,23.02721371306527,0,0,0,0,0,0,0,0,.6837478028708673,0,51,56,54.2,57.49,8,1,1,0,0,1,13,5,1,418.25,1422183.088439914,1299587.248737789,382234.497774735,304159.2849639809,5554.415368891431 -7937,9801,17769,-9,17771,17768,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.8766707201423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,418.25,1422183.088439914,1299587.248737789,382234.497774735,304159.2849639809,5554.415368891431 -7937,9801,17770,-9,17771,17768,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.4450326981628,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,418.25,1422183.088439914,1299587.248737789,382234.497774735,304159.2849639809,5554.415368891431 -7937,9801,17771,17768,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.544036475533522,8.610735609451618,0,10,-1,-50.6587936305506,0,2,3,2019,7,0,30,42,1,0,0,19.44745894877426,19.44745894877426,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51,56,6.666666666666667,1,1,0,0,6,13,5,1,418.25,1422183.088439914,1299587.248737789,382234.497774735,304159.2849639809,5554.415368891431 -7938,9802,17772,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,2.668889126540031,2.731820697864206,0,0,-968.4739665465784,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,2.778749444291852,49.43,38.53,-9,-9,0,1,1,0,0,0,4,2,0,325,125667.1455301433,-37442.03775451039,83873.20012749062,0,572.0111618293593 -7939,9803,17773,17774,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.278848341951385,7.233424117265943,41,-1,35.1012455556731,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.889783278141128,7.408082372474855,51.24,58.84,57.9,51.84,8.333333333333334,1,1,0,0,0,7,3,1,430.5,1913632.566042932,1039584.030394399,498109.9614641591,0,3790.415601442006 -7939,9803,17774,17773,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.847257606970613,7.835558269304459,41,1,166.1170027336786,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.899849506963468,7.595383159152756,57.9,51.84,51.24,58.84,8.333333333333334,1,1,0,0,0,7,3,1,430.5,1913632.566042932,1039584.030394399,498109.9614641591,0,3790.415601442006 -7940,9804,17775,17776,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.652954854953963,8.565401833466318,4.355982437481225,13,0,83.4086041346353,0,2,2,2019,6,0,40,40,1,0,0,17.29315894930946,17.29315894930946,0,0,0,0,0,1,1,0,4.479805223369395,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,8,2,5,1,1227,280334.7752802806,62007.46993204895,440432.347225243,283606.5535334962,13270.42610511439 -7940,9804,17776,17775,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,9.633153180270606,9.895641801408701,0,17,0,-13.28554881229839,0,2,2,2019,7,0,20,20,1,0,0,85.28823893993564,85.28823893993564,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,1227,280334.7752802806,62007.46993204895,440432.347225243,283606.5535334962,13270.42610511439 -7940,9804,17777,-9,17776,17775,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.264873599902,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,5,1,1227,280334.7752802806,62007.46993204895,440432.347225243,283606.5535334962,13270.42610511439 -7940,9804,17778,-9,17776,17775,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.270428765527,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1227,280334.7752802806,62007.46993204895,440432.347225243,283606.5535334962,13270.42610511439 -7941,9805,17779,-9,-9,17780,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.0187392428352,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,232,78361.06170546802,0,185274.238029325,25788.09738013863,1658.524819701844 -7941,9805,17780,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0575501996393,8.495053953430684,3.67612203948981,0,0,-1071.51269158201,0,2,2,2019,7,0,37,45,1,0,0,9.175298924916838,9.175298924916838,0,0,0,0,0,1,1,0,4.284408995364807,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,232,78361.06170546802,0,185274.238029325,25788.09738013863,1658.524819701844 -7942,9806,17781,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.320605742988909,7.535199412915878,0,0,-1017.975722169435,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.437333539829415,65.53,38.76,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1284,908893.6207459986,252115.3651656715,518239.8207041915,0,2169.474856920516 -7943,9807,17782,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.448590806788806,8.579691913916076,0,0,0,-877.7851450056974,-9,-9,-9,2019,9,2,37,0,1,2,0,10.96515285380523,10.96515285380523,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,1,8,4,0,383,-100889.001793964,-67289.50965888675,0,0,1471.745775560101 -7943,9808,17783,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-883.0175194473591,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,666,-251637.7000240372,0,0,0,0 -7943,9809,17784,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1010.560707110321,-9,-9,-9,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,39.81,59.97,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,200,26117.58043896852,0,0,0,206.5347829544401 -7944,9810,17785,17787,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.987639345110175,8.673917879451734,0,3,-1,39.72537619336535,0,-9,-9,2019,6,0,35,38,1,0,0,18.2167796517463,18.2167796517463,0,0,0,0,0,0,0,0,2.623638390246781,0,54.69,57.47,48.87,58.55,10,1,1,0,0,6,8,5,1,525.3333333333334,178839.0116461102,88198.37423500128,701466.0255927189,460389.5400541087,5960.631159978696 -7944,9810,17786,-9,17785,17787,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.336334136374,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,525.3333333333334,178839.0116461102,88198.37423500128,701466.0255927189,460389.5400541087,5960.631159978696 -7944,9810,17787,17785,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.364620227758298,9.349306942697021,0,3,1,-103.1171912263091,0,1,1,2019,8,0,45,50,1,0,0,26.30608669071002,26.30608669071002,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.69,57.47,8.333333333333334,4,2,0,0,9,8,5,1,525.3333333333334,178839.0116461102,88198.37423500128,701466.0255927189,460389.5400541087,5960.631159978696 -7945,9811,17788,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,6.936631179014998,7.14500490769577,6.543056074381195,0,0,-1092.610594612589,0,2,2,2019,10,1,17,17,1,1,0,5.824924097255993,5.824924097255993,0,0,0,0,0,1,1,0,6.782275907941176,0,60.05,26.59,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,604,12329.04283902741,83798.99908125162,0,0,1146.624912111309 -7945,9811,17789,-9,17788,-9,1,1,16,0,1,1,2,0,-9,0,4,0,5.401849295236148,5.671726886849367,0,0,-1023.67899013357,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.090499054362039,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,604,12329.04283902741,83798.99908125162,0,0,1146.624912111309 -7946,9812,17790,17791,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,7,-1,72.76636923619165,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,31.62,44.89,34.74,49.66,6.666666666666667,1,1,0,0,0,11,2,1,1039.5,336029.7046932415,90215.75315602346,155892.7405439995,0,1335.723302248363 -7946,9812,17791,17790,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,6.771566798457751,6.736932417985726,7,1,129.4341031110418,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,4.32826642002245,0,0,1,1,0,4.809569220766457,6.356406502823718,34.74,49.66,31.62,44.89,5,1,1,0,0,0,11,2,1,1039.5,336029.7046932415,90215.75315602346,155892.7405439995,0,1335.723302248363 -7947,9813,17792,-9,17794,17793,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-930.8347492861989,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,614,416004.4831846243,127568.2243678309,418511.5819207872,187663.0195282639,1943.006882574785 -7947,9813,17793,17794,-9,-9,1,1,32,1,2,0,2,2,-9,0,2,8.763037436128336,8.984533288240057,0,7,2,-72.57192485848532,0,2,2,2019,26,12,43,43,1,12,0,13.91276812488302,13.91276812488302,0,0,0,0,0,1,1,0,0,0,11.01,63.06,33.41,62.84,6.666666666666667,1,1,0,0,7,9,3,0,614,416004.4831846243,127568.2243678309,418511.5819207872,187663.0195282639,1943.006882574785 -7947,9813,17794,17793,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,0,0,0,7,-2,20.2029504555301,0,2,2,2019,22,10,0,16,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.41,62.84,11.01,63.06,6.666666666666667,1,1,0,1,2,9,3,0,614,416004.4831846243,127568.2243678309,418511.5819207872,187663.0195282639,1943.006882574785 -7947,9813,17795,-9,17794,17793,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.791467823166,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,614,416004.4831846243,127568.2243678309,418511.5819207872,187663.0195282639,1943.006882574785 -7948,9814,17796,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-950.3316737344808,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,69,0,0,0,0,505.3771731366184 -7949,9815,17797,17798,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,3,-1,39.45390142791485,0,-9,-9,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,25.61,62.71,10,1,1,0,0,3,5,2,0,463.5,117955.1175469996,0,0,0,145.5845701591012 -7949,9815,17798,17797,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.422695566050231,7.618477486736229,0,3,1,56.86582091350721,0,-9,-9,2019,14,3,33,44,1,3,0,5.835974383078561,5.835974383078561,0,0,0,0,0,0,0,0,0,0,25.61,62.71,54.2,57.49,8.333333333333334,1,1,0,0,3,5,2,0,463.5,117955.1175469996,0,0,0,145.5845701591012 -7950,9816,17799,17801,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,9.449653114778142,9.186017981061076,0,7,0,-19.98850966764036,0,2,1,2019,7,1,44,43,1,1,0,26.72006855137737,26.72006855137737,0,0,0,0,0,1,1,0,.6939797793203045,0,54.2,57.49,57.33,53.46,10,1,1,0,0,9,10,5,1,504,709595.8133722609,300179.5305494525,330623.186838877,66586.20253309463,3880.264856993723 -7950,9816,17800,-9,17799,17801,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.2802984128325,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,504,709595.8133722609,300179.5305494525,330623.186838877,66586.20253309463,3880.264856993723 -7950,9816,17801,17799,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,5.929477883189254,5.87533254776631,0,20,9,-153.7703875747301,0,3,3,2019,10,0,20,15,1,0,0,2.817324600323166,2.817324600323166,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,504,709595.8133722609,300179.5305494525,330623.186838877,66586.20253309463,3880.264856993723 -7951,9817,17802,-9,17804,17803,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-982.6304163046724,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,5,1,801.3333333333334,2387842.441997841,2103671.43231599,361282.5633348546,34017.90556429181,3949.121240846955 -7951,9817,17803,17804,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.567463883303938,9.212423312770119,0,8,-1,66.39224093939205,0,3,2,2019,35,12,50,50,1,12,0,11.48615845048304,11.48615845048304,0,0,0,0,0,1,1,0,0,0,4.65,70.75,59.14,52.5,0,1,1,0,0,9,12,5,1,801.3333333333334,2387842.441997841,2103671.43231599,361282.5633348546,34017.90556429181,3949.121240846955 -7951,9817,17804,17803,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.761892762158753,8.366912307493235,0,8,1,184.1900928909148,0,3,2,2019,8,0,35,35,1,0,0,17.47224778190738,17.47224778190738,0,0,0,0,2,1,1,0,0,0,59.14,52.5,4.65,70.75,8.333333333333334,1,1,0,0,9,12,5,1,801.3333333333334,2387842.441997841,2103671.43231599,361282.5633348546,34017.90556429181,3949.121240846955 -7952,9818,17805,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.181102737096129,6.25068737833878,0,0,-975.6940501565241,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,6.134536078288267,32.68,35.19,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,313,-194298.6513737423,41812.43737247917,0,0,2230.277301237846 -7952,9819,17806,-9,17805,-9,1,1,53,0,0,0,2,2,-9,0,4,6.360315864023398,6.395136065306276,0,0,0,-956.9842773345024,0,3,-9,2019,9,0,40,40,1,1,0,1.845346176229116,1.845346176229116,0,0,0,0,0,1,1,0,.7126488653819633,0,54,54,-9,-9,8,1,1,0,0,1,1,2,0,83,553270.157633354,177890.9314360312,87996.8186452704,0,724.0401859368208 -7953,9820,17807,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.293054894582296,8.562087922433324,0,0,0,-963.8230483865392,0,2,2,2019,12,1,39,41,1,1,0,8.447066633781175,8.447066633781175,0,0,0,0,0,0,0,0,1.87710083957919,0,31.12,63.98,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,179,169532.4552232068,79869.7098404987,0,0,2077.090025799919 -7954,9821,17808,-9,17809,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-959.9684211116654,0,2,2,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.04382349157276,0,43,39,-9,-9,10,1,1,1,1,5,10,1,1,155,8733.390460542356,0,0,0,254.7219978483676 -7954,9822,17809,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.821511440004586,5.638140845534119,0,0,-1026.942165857694,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.901134821697048,5.788532619282368,56.37,29.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,3008,295698.5782890816,6605.833301881641,209186.1639615532,0,643.5848410942706 -7955,9823,17810,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.865051295434338,8.584655264336423,0,0,0,-1011.838402830284,0,2,2,2019,18,6,50,50,1,6,0,14.93303774304873,14.93303774304873,0,0,0,0,0,0,0,0,0,0,44.19,49.98,-9,-9,5,1,1,0,0,12,7,5,1,1061,215404.2649801621,-45805.51080194869,0,0,2132.431421835624 -7955,9824,17811,-9,17810,-9,1,0,21,0,0,0,1,1,1,0,4,8.054012067391303,7.68257690441211,0,0,0,-1135.917379714622,-9,2,-9,2019,16,4,38,0,1,4,1,9.767117731256512,9.767117731256512,0,0,0,0,0,0,0,0,0,0,34.13,61.39,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,192,35248.88910521114,-43609.73789040859,0,0,1114.31343603642 -7955,9825,17812,-9,17810,-9,1,0,34,0,0,0,1,1,-9,0,4,8.63676610823944,8.682364047377355,0,0,0,-1085.423564417441,0,2,-9,2019,6,0,45,40,1,0,1,15.79365208301804,15.79365208301804,0,0,0,0,0,0,0,0,2.385975344916081,0,57.46,47.78,-9,-9,8.333333333333334,4,2,0,0,6,7,5,1,147,-24424.03211307072,88957.01147430159,0,0,2672.734909421845 -7956,9826,17813,-9,17816,17814,1,1,21,0,1,0,2,2,-9,0,3,8.336327481831068,8.296661161923414,0,0,0,-977.7472334683134,0,3,1,2019,6,0,4,2,1,0,1,126.3985467109448,126.3985467109448,0,0,0,0,2,1,0,1,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,1,8,4,0,800,67769.41787647332,0,350045.9827362819,116142.3333041619,2094.670195041107 -7956,9827,17814,17816,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,0,0,0,9,6,-34.25951327227152,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,0,1,0,0,54,53,44,39,8.333333333333334,3,4,1,0,8,8,2,0,1105,105724.2984430485,0,0,0,2216.871397181306 -7956,9827,17815,-9,17816,17814,1,1,16,0,1,0,3,3,-9,1,4,0,0,0,0,0,-942.2060683493554,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,3,4,0,0,0,8,2,0,1105,105724.2984430485,0,0,0,2216.871397181306 -7956,9827,17816,17814,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,5.213845283199293,5.02951334696354,38,-6,-19.37509443149328,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,0,1,0,5.067794802503117,44,39,54,53,5,3,4,0,0,7,8,2,0,1105,105724.2984430485,0,0,0,2216.871397181306 -7957,9828,17817,17818,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,5.453983692510787,5.436365689991491,0,6,-5,-48.30663358913679,0,3,3,2019,9,1,30,50,1,1,0,1.370927454111912,1.370927454111912,0,0,0,0,71.5,1,1,0,0,0,51.42,43.8,38.59,63.37,0,1,1,0,0,6,10,2,1,468.3333333333333,28685.78706639001,0,0,0,2211.604475397119 -7957,9828,17818,17817,-9,-9,1,0,45,0,2,0,2,2,-9,1,5,0,0,0,6,5,-16.42236248737873,0,2,2,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,38.59,63.37,51.42,43.8,8.333333333333334,1,1,0,0,0,10,2,1,468.3333333333333,28685.78706639001,0,0,0,2211.604475397119 -7957,9828,17819,-9,17818,17817,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.877936557434,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,468.3333333333333,28685.78706639001,0,0,0,2211.604475397119 -7957,9829,17820,-9,17818,-9,1,1,23,0,2,0,2,2,-9,0,4,7.47645851178271,7.402043954283843,0,0,0,-967.4368472192258,0,2,-9,2019,9,0,24,39,1,0,1,7.927631514629084,7.927631514629084,0,0,0,0,0,1,1,0,0,0,55.2,43.52,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,664,167657.3985779599,0,0,0,1139.789627768883 -7958,9830,17821,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1104.579532680766,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.595906847671226,0,51,46,-9,-9,7,2,3,0,0,0,8,1,0,650,-95338.74250539784,0,0,0,-150.0122971404365 -7958,9831,17822,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.249021514466921,8.329451262792729,0,0,0,-1017.636831726282,-9,-9,-9,2019,7,0,40,0,1,0,0,9.436897023797323,9.436897023797323,0,0,0,0,7,1,1,0,0,0,58.15,52.91,-9,-9,10,2,3,0,0,4,8,4,0,976,-234206.6660355619,33838.54599172436,0,0,1557.21872722403 -7959,9832,17823,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.967305481530109,8.079245940085931,5.672002800948375,0,0,-1050.166502933325,0,3,3,2019,8,0,24,-9,1,0,0,10.21676462375682,10.21676462375682,0,0,0,0,0,1,1,0,3.2835090334761,6.20832231247381,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,3291,616648.8874840685,211593.1242416389,573595.2208087292,0,1051.450975334319 -7960,9833,17824,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.602091948688559,5.739593875245457,0,0,-1086.846967122616,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,5.772449672275987,56.65,17.33,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,941,226170.8395673811,127847.2927521746,0,0,784.5246896032887 -7961,9834,17825,17827,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.600065582260901,7.058759644506191,0,20,-14,-12.3818094088063,0,2,2,2019,6,0,35,28,1,0,0,2.456347162383319,2.456347162383319,0,0,0,0,0,1,1,0,2.993761243498195,0,55.78,49.92,50.6,51,8.333333333333334,1,1,0,0,7,8,4,1,639.3333333333334,724468.7885050901,509264.9507125544,210879.7142067267,0,3999.133960077308 -7961,9834,17826,-9,17825,17827,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-948.088574828965,-9,2,2,2019,10,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.01,47.66,-9,-9,10,1,1,0,0,0,8,4,1,639.3333333333334,724468.7885050901,509264.9507125544,210879.7142067267,0,3999.133960077308 -7961,9834,17827,17825,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,7.803314438935953,8.471066221631261,8.217214194575813,20,14,-31.19886381059879,0,2,2,2019,12,0,28,28,1,0,0,9.243437605720418,9.243437605720418,0,0,0,.0953403871168401,0,1,1,0,0,8.778834909990563,50.6,51,55.78,49.92,5,1,1,0,0,8,8,4,1,639.3333333333334,724468.7885050901,509264.9507125544,210879.7142067267,0,3999.133960077308 -7962,9835,17828,17829,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,45,2,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,33.33,49,48,6.666666666666667,1,1,0,0,0,12,1,0,634.5,-100047.1225276074,0,0,0,2143.183993269932 -7962,9835,17829,17828,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,40.15,33.33,7,1,1,0,0,0,12,1,0,634.5,-100047.1225276074,0,0,0,2143.183993269932 -7963,9836,17830,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.990843941361437,6.470014650456925,0,0,-932.7396283883018,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.907584763213643,53,46,-9,-9,7,1,1,0,0,0,8,2,0,756,648449.8172285846,183988.8193269818,306767.2119413885,0,1492.805819010571 -7964,9837,17831,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.887834893422672,7.956090365787619,0,0,-1060.680047638988,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.515171893970912,7.84169696733008,57.74,49,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,195,1482931.00087488,376970.0908511959,854010.742856661,81077.10444198432,1444.646858403861 -7965,9838,17832,17833,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.014375435875937,8.177487498582853,0,1,-2,-40.62769873019862,-9,-9,-9,2019,12,0,35,0,1,2,0,9.868163066897806,9.868163066897806,0,0,0,0,0,0,0,0,0,0,45,59,57.16,56.15,7,1,1,0,0,1,4,5,1,1042.5,100739.6952563721,-48132.61725349585,143957.0668652526,88467.10369495722,3123.634522097374 -7965,9838,17833,17832,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.311844849045738,8.216523845806089,0,1,2,25.13893399235252,0,-9,-9,2019,7,0,36,38,1,0,0,16.53133445818677,16.53133445818677,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45,59,8.333333333333334,1,1,0,0,5,4,5,1,1042.5,100739.6952563721,-48132.61725349585,143957.0668652526,88467.10369495722,3123.634522097374 -7966,9839,17834,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.749377217243273,8.63868460381172,0,5,18,56.45470123431913,0,3,3,2019,9,0,50,50,1,0,0,12.4336669571157,12.4336669571157,0,0,0,5.136129605911645,0,0,0,0,0,0,57.16,56.15,54,52.35,8.333333333333334,1,1,0,0,8,4,5,1,336,403675.7811074451,439869.854217091,56199.79997015507,84173.87106341877,2033.60076635832 -7966,9840,17835,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.985139721963074,8.5770339377989,0,5,-18,27.60654508960297,0,2,2,2019,9,0,64,50,1,0,0,9.841267980041392,9.841267980041392,0,0,0,0,0,0,0,0,0,0,54,52.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,5,1,758,78471.49497377587,-35064.62714101853,76070.51062917574,79020.4713949896,2333.068067065868 -7967,9841,17836,17837,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.894222097227448,8.86849935229618,0,32,2,-14.17518914886714,0,2,2,2019,9,0,30,30,1,0,0,31.33549417281584,31.33549417281584,0,0,0,0,0,0,0,0,3.413065006921189,0,54.2,57.49,49.23,55.95,8.333333333333334,1,1,0,0,13,10,5,1,396.5,1436583.00245821,1005221.562699478,298229.1383877663,0,2162.392990527215 -7967,9841,17837,17836,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,32,-2,10.96791235193123,1,2,1,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1.383292318985789,0,49.23,55.95,54.2,57.49,5,1,1,0,0,12,10,5,1,396.5,1436583.00245821,1005221.562699478,298229.1383877663,0,2162.392990527215 -7967,9842,17838,-9,17837,17836,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1053.011489989387,-9,1,1,2019,1,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,1,10,1,1,807,22023.08560514516,0,0,0,0 -7968,9843,17839,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.729081433529556,5.571250432670956,0,0,-1038.345810518098,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.228064094832837,5.354544456200111,47.27,53.93,-9,-9,10,1,1,0,0,9,9,2,1,902,178146.922308884,-27547.18095013377,169308.7091562785,0,970.3251570773142 -7969,9844,17840,17841,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.199651541500748,7.044179887575078,39,3,63.64706840163849,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.404362160208114,7.571016441357305,58.72,51.29,54.38,46.77,8.333333333333334,1,1,0,0,5,7,4,1,540.5,165078.8262482095,163782.5986357655,154983.4743322855,52364.25893342198,3054.02995616584 -7969,9844,17841,17840,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.013229819188606,8.369650901325153,38,-3,32.01896453653996,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.096967529457826,54.38,46.77,58.72,51.29,10,1,1,0,0,6,7,4,1,540.5,165078.8262482095,163782.5986357655,154983.4743322855,52364.25893342198,3054.02995616584 -7970,9845,17842,17843,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.306127902791689,7.750047203778127,0,7,-2,-73.55625778792763,0,2,2,2019,6,0,15,30,1,0,0,24.3224648736339,24.3224648736339,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,11,4,1,391,585089.6480619763,410380.8344475788,146658.5772641017,21631.30783959511,3079.723312714258 -7970,9845,17843,17842,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.812037262750102,8.411297472059042,7,2,7.978491941497003,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.172522797984687,57.16,56.15,57.06,57.76,10,1,1,0,0,0,11,4,1,391,585089.6480619763,410380.8344475788,146658.5772641017,21631.30783959511,3079.723312714258 -7971,9846,17844,-9,17847,17845,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.022107469435,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,647,208391.2431219938,7141.076990335167,254111.7254238515,97498.84543288354,6162.281993775647 -7971,9846,17845,17847,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,7.273383427885876,7.308920332411461,0,13,1,97.92287566911861,0,2,2,2019,8,0,40,45,1,0,0,4.514721669399267,4.514721669399267,0,0,0,0,0,1,1,0,9.423674709453049,0,57.73,54.53,59.76,49.67,8.333333333333334,1,1,0,0,9,13,3,1,647,208391.2431219938,7141.076990335167,254111.7254238515,97498.84543288354,6162.281993775647 -7971,9846,17846,-9,17847,17845,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.764505489356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,647,208391.2431219938,7141.076990335167,254111.7254238515,97498.84543288354,6162.281993775647 -7971,9846,17847,17845,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,7.835631882984486,8.164776505102811,0,13,-1,-11.63959689765035,0,1,2,2019,7,0,15,15,1,0,0,21.85374529505928,21.85374529505928,0,0,0,0,0,1,1,0,6.315870237048302,0,59.76,49.67,57.73,54.53,10,1,1,0,0,9,13,3,1,647,208391.2431219938,7141.076990335167,254111.7254238515,97498.84543288354,6162.281993775647 -7972,9847,17848,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-963.4649924486916,0,-9,-9,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,3.660159673387485,0,48.21,50.73,-9,-9,5,1,1,0,0,11,12,1,1,1320,-167387.2720026059,0,0,0,291.7419191035042 -7973,9848,17849,17850,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,5.456650985388203,5.238217899918791,8,3,18.60663156155204,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,12.74721824192262,0,0,1,1,0,0,4.764309528990548,16.04,23.99,44.94,48.07,8.333333333333334,1,1,0,0,0,2,2,1,880,-102019.4946631709,31060.42335552321,0,0,1920.654362442237 -7973,9848,17850,17849,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,8,-3,-6.98694076906197,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.94,48.07,16.04,23.99,10,1,1,0,0,0,2,2,1,880,-102019.4946631709,31060.42335552321,0,0,1920.654362442237 -7974,9849,17851,17852,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.205524431648378,8.15763608035992,0,9,1,-72.99109536290247,0,3,3,2019,12,0,44,37,1,0,0,11.33496701106816,11.33496701106816,0,0,0,0,0,0,0,0,0,0,51.73,58.82,44.12,42.96,8.333333333333334,1,1,0,0,9,13,4,1,254,742673.7696160008,734399.0923414868,0,0,2295.621509677818 -7974,9849,17852,17851,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.809878489962422,7.774813422099904,0,9,-1,106.8842432555279,0,2,2,2019,16,4,37,36,1,4,0,8.974787473705558,8.974787473705558,0,0,0,0,0,0,0,0,0,0,44.12,42.96,51.73,58.82,8.333333333333334,1,1,0,0,10,13,4,1,254,742673.7696160008,734399.0923414868,0,0,2295.621509677818 -7974,9850,17853,-9,17852,17851,1,0,22,0,0,0,2,2,-9,0,3,7.817170098730483,7.691420215253213,0,0,0,-910.3364861133382,0,1,2,2019,13,3,37,50,1,3,1,7.371039997301598,7.371039997301598,0,0,0,0,0,0,0,0,0,0,41.01,44.67,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,201,97307.58818512521,-41938.19917080462,0,0,810.7699222201295 -7975,9851,17854,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.498053055243483,6.525592940576097,0,11,-13,138.4394202930694,0,-9,3,2019,15,5,40,46,1,5,0,1.379524758076651,1.379524758076651,0,0,0,0,0,0,0,0,0,0,36.79,56.27,50.27,48.86,5,1,1,0,0,5,1,2,0,843,-64241.87368385705,136182.3159820275,0,0,275.273300166631 -7975,9852,17855,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,11,13,-55.42797076955114,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,36.79,56.27,5,1,1,1,0,5,1,2,0,1402,-17615.25607910852,0,0,0,0 -7976,9853,17856,17857,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.573323536427033,6.957898688487742,6.236171591187378,9,-7,-1.325987836482876,0,2,2,2019,9,0,26,18,1,0,0,3.28153032073044,3.28153032073044,0,0,0,0,0,0,0,0,3.645098741308031,6.439889024706599,46.67,52.84,59.29,49.68,8.333333333333334,1,1,0,0,6,4,3,1,192.5,373580.2369800547,243843.361813547,141123.9814081936,0,949.0485131224571 -7976,9853,17857,17856,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,6.773057692811084,6.759173161852348,9,7,-58.64575079922972,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.592085345495045,7.059276842000647,59.29,49.68,46.67,52.84,8.333333333333334,1,1,0,0,3,4,3,1,192.5,373580.2369800547,243843.361813547,141123.9814081936,0,949.0485131224571 -7977,9854,17858,17859,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.129586939983064,7.196326396045261,0,36,7,61.28419226035205,0,3,3,2019,7,1,16,47,1,1,0,7.534983213188961,7.534983213188961,0,0,0,0,0,0,0,0,0,0,63.4,34.71,60.29,52.11,6.666666666666667,1,1,0,0,10,1,3,1,259.5,14354.95031006641,-64152.73286959488,114966.2523448619,41080.38449234807,2165.384378069355 -7977,9854,17859,17858,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.566131293068535,7.815485752876917,0,37,-7,-70.83558746040885,0,2,3,2019,6,0,38,0,1,0,0,6.772743295148311,6.772743295148311,0,0,0,0,0,0,0,0,0,0,60.29,52.11,63.4,34.71,5,1,1,0,0,9,1,3,1,259.5,14354.95031006641,-64152.73286959488,114966.2523448619,41080.38449234807,2165.384378069355 -7978,9855,17860,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.134123770843917,8.108626535787527,0,0,0,-991.7315155433885,0,2,2,2019,10,0,40,42,1,0,0,10.55196753650444,10.55196753650444,0,0,0,0,0,0,0,0,7.231437160803521,0,52.51,54.26,-9,-9,3.333333333333333,4,2,0,0,9,5,4,1,1638,-74378.90964577391,0,0,0,1733.616189237796 -7979,9856,17861,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.950319236018043,7.694226333475326,0,0,-1011.481900867078,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.465000607886536,7.566934318341017,48.24,35.69,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,367,473915.8054946113,91133.85760978705,254657.4637343312,0,2250.592702336936 -7980,9857,17862,-9,-9,-9,1,0,33,1,1,0,2,2,-9,0,2,7.576064178336577,7.466295823588427,0,0,0,-977.1596340901534,0,-9,-9,2019,28,11,35,35,1,11,0,5.704524045724782,5.704524045724782,0,0,0,0,5.48,0,0,0,0,0,27.98,31.8,-9,-9,1.666666666666667,1,1,0,1,10,11,3,1,354.5,71929.99941236491,9476.797390253625,179610.5939354599,83106.24541215364,469.7206278182629 -7980,9857,17863,-9,17862,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.026437289434,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,354.5,71929.99941236491,9476.797390253625,179610.5939354599,83106.24541215364,469.7206278182629 -7981,9858,17864,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-947.0114319605055,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.065282837049839,0,50,46,-9,-9,7,1,1,0,0,1,6,1,1,504,294653.2841974867,0,213331.6496817696,0,955.7522308161759 -7982,9859,17865,17866,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.891851424580835,6.951175323639828,0,6,13,-56.82365898403725,0,3,2,2019,29,12,17,20,1,12,0,6.179883090961864,6.179883090961864,0,0,0,0,27,0,0,0,0,0,42.55,40.15,51,56,3.333333333333333,1,1,0,0,6,13,4,0,386.5,43422.39892741396,62407.98648589755,49552.83045748377,32401.59828333363,2381.561510634656 -7982,9859,17866,17865,-9,-9,1,1,41,0,0,0,3,3,-9,0,4,8.550964404725182,8.757366238564639,0,6,-13,142.7148773640317,-9,-9,-9,2019,9,0,65,0,1,1,0,10.11297562592686,10.11297562592686,0,0,0,0,0,0,0,0,4.255701250219613,0,51,56,42.55,40.15,8,4,1,0,0,1,13,4,0,386.5,43422.39892741396,62407.98648589755,49552.83045748377,32401.59828333363,2381.561510634656 -7983,9860,17867,-9,17871,17870,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.827432015989,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,1146.8,567410.8251595444,359145.6552221106,415155.2381898212,197678.7574424418,3562.113192982118 -7983,9860,17868,-9,17871,17870,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1065.355651749209,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,4,1,1146.8,567410.8251595444,359145.6552221106,415155.2381898212,197678.7574424418,3562.113192982118 -7983,9860,17869,-9,17871,17870,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-817.3880834019817,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1146.8,567410.8251595444,359145.6552221106,415155.2381898212,197678.7574424418,3562.113192982118 -7983,9860,17870,17871,-9,-9,1,1,56,0,3,0,2,2,-9,0,4,9.091682598224773,8.958297227607682,0,15,10,-144.7978295981648,0,2,2,2019,12,1,50,50,1,1,0,19.5081762733932,19.5081762733932,0,0,0,0,0,1,1,0,0,0,49.74,44.36,46.96,47.08,6.666666666666667,1,1,0,0,12,7,4,1,1146.8,567410.8251595444,359145.6552221106,415155.2381898212,197678.7574424418,3562.113192982118 -7983,9860,17871,17870,-9,-9,1,0,46,0,3,0,1,1,-9,0,3,6.208124786799085,6.128522549529722,0,15,-10,-42.71961289488922,0,3,3,2019,13,1,8,6,1,1,0,7.285860025772882,7.285860025772882,0,0,0,0,0,1,1,0,1.710348322847362,0,46.96,47.08,49.74,44.36,8.333333333333334,1,1,0,0,12,7,4,1,1146.8,567410.8251595444,359145.6552221106,415155.2381898212,197678.7574424418,3562.113192982118 -7984,9861,17872,17873,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,7.442106801170391,7.434213977815481,70,3,7.956854928279139,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,4.259354750921438,7.427725458743641,55,44,53,44,8,1,1,0,0,0,2,2,1,1327,440891.892935981,100841.7713075022,293021.5175664384,0,2353.296999708068 -7984,9861,17873,17872,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,70,-3,21.16443551385803,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,3.680367495828048,0,7,1,1,0,3.764173860729873,0,53,44,55,44,8,1,1,0,0,0,2,2,1,1327,440891.892935981,100841.7713075022,293021.5175664384,0,2353.296999708068 -7985,9862,17874,-9,17877,17875,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.270507982916,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,1062,-41171.52418741148,0,0,0,1077.59992904493 -7985,9862,17875,17877,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,7.168134096732095,7.004689183984437,0,11,-7,164.0556462728287,0,3,3,2019,10,1,30,24,1,1,0,4.57880097177696,4.57880097177696,0,0,0,0,0,1,1,0,0,0,55.3,52.93,52.21,59.91,5,2,3,0,0,10,6,2,1,1062,-41171.52418741148,0,0,0,1077.59992904493 -7985,9862,17876,-9,17877,17875,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.9628622948289,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,1062,-41171.52418741148,0,0,0,1077.59992904493 -7985,9862,17877,17875,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,11,7,79.01738457902619,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,.8410083588327488,0,1,1,0,0,0,52.21,59.91,55.3,52.93,10,2,3,0,0,0,6,2,1,1062,-41171.52418741148,0,0,0,1077.59992904493 -7985,9862,17878,-9,17877,17875,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.5977982832078,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,1062,-41171.52418741148,0,0,0,1077.59992904493 -7986,9863,17879,17880,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.26143355450998,6.182372978424922,52,5,134.8769270923196,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.901360269672065,68.65000000000001,26.35,60.29,52.11,8.333333333333334,1,1,0,0,0,2,2,1,285.5,258494.7689444547,186411.605112189,190882.5855901003,0,1046.252052886066 -7986,9863,17880,17879,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,52,-5,-28.20721072217497,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5840445375276364,0,60.29,52.11,68.65000000000001,26.35,8.333333333333334,1,1,0,0,3,2,2,1,285.5,258494.7689444547,186411.605112189,190882.5855901003,0,1046.252052886066 -7987,9864,17881,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.473276903802468,5.559779867712665,0,0,-939.0230441245169,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.443144826480743,5.472176444218511,48.05,53.56,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1480,268692.2838940053,92972.10794097291,152362.9282306357,0,1254.682785769621 -7988,9865,17882,17883,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,57,5,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.260694968260804,0,51.36,24.02,52,45,10,1,1,0,0,0,12,1,0,1374.5,126667.553711288,0,76803.84212023517,0,2440.645568955851 -7988,9865,17883,17882,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,57,-5,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,2.979862077433809,0,52,45,51.36,24.02,8,1,1,0,0,0,12,1,0,1374.5,126667.553711288,0,76803.84212023517,0,2440.645568955851 -7989,9866,17884,17886,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,0,0,0,5,-11,127.0074531156812,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,42.17,38.71,41.64,54.12,3.333333333333333,4,5,0,0,0,10,2,0,629.2,484023.0635614633,-21795.69775483942,210688.4419889286,51598.55217828914,2315.357588398016 -7989,9866,17885,-9,17884,17886,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.840315012307,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,2,0,629.2,484023.0635614633,-21795.69775483942,210688.4419889286,51598.55217828914,2315.357588398016 -7989,9866,17886,17884,-9,-9,1,1,49,0,3,0,3,3,-9,0,3,6.857945455335242,7.10342969972441,0,7,11,170.0786670199582,0,2,1,2019,11,1,32,32,1,1,0,4.326767921943598,4.326767921943598,0,0,0,0,0,1,0,1,0,0,41.64,54.12,42.17,38.71,3.333333333333333,3,4,0,1,13,10,2,0,629.2,484023.0635614633,-21795.69775483942,210688.4419889286,51598.55217828914,2315.357588398016 -7989,9866,17887,-9,17884,17886,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.935437472241,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,2,0,629.2,484023.0635614633,-21795.69775483942,210688.4419889286,51598.55217828914,2315.357588398016 -7989,9866,17888,-9,17884,17886,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-823.5423616586907,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,2,0,629.2,484023.0635614633,-21795.69775483942,210688.4419889286,51598.55217828914,2315.357588398016 -7990,9867,17889,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,4,0,0,0,0,0,-930.0646244307454,0,1,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,6.666666666666667,1,1,0,0,1,5,1,0,509,154584.6695309895,0,0,0,1068.021852874267 -7991,9868,17890,17891,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,6.182959318557883,6.142902891242068,40,4,2.618535428558318,0,2,2,2019,6,0,0,50,4,0,0,0,0,0,0,0,0,2,0,0,0,0,6.314920695939189,58.9,45.74,48.45,49.46,8.333333333333334,1,1,0,0,10,2,3,1,1698.5,2135392.529764765,1420424.950387275,317153.5012671441,0,907.2945422971295 -7991,9868,17891,17890,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.759005705960693,7.768135774358576,40,-4,11.73677431702499,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,4.642645044821778,7.392205004392905,48.45,49.46,58.9,45.74,6.666666666666667,1,1,0,0,9,2,3,1,1698.5,2135392.529764765,1420424.950387275,317153.5012671441,0,907.2945422971295 -7992,9869,17892,-9,17894,17893,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-956.0344112145672,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,609.25,-4355.797664158901,38652.30121361976,0,0,3077.831683688958 -7992,9869,17893,17894,-9,-9,1,1,31,1,3,0,2,2,-9,0,4,8.57706518438734,8.420615560151283,0,10,0,159.4831916616529,0,-9,-9,2019,7,0,45,45,1,0,0,16.11645650765093,16.11645650765093,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34.46,58.24,8.333333333333334,1,1,0,0,13,13,3,1,609.25,-4355.797664158901,38652.30121361976,0,0,3077.831683688958 -7992,9869,17894,17893,-9,-9,1,0,31,1,3,0,2,2,-9,0,3,6.674835670420644,7.08649672707736,0,10,0,-71.40248228528256,0,2,2,2019,17,7,5,5,1,7,0,21.66258085159519,21.66258085159519,0,0,0,0,0,1,1,0,0,0,34.46,58.24,51.83,57.2,8.333333333333334,1,1,0,0,11,13,3,1,609.25,-4355.797664158901,38652.30121361976,0,0,3077.831683688958 -7992,9869,17895,-9,17894,17893,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-887.1659328680811,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,609.25,-4355.797664158901,38652.30121361976,0,0,3077.831683688958 -7993,9870,17896,-9,17898,17899,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.405035620359,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,384.75,-25826.36051934654,115307.5949954942,164306.0415271238,86050.73286012207,2135.929956781442 -7993,9870,17897,-9,17898,17899,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.486573305181,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,384.75,-25826.36051934654,115307.5949954942,164306.0415271238,86050.73286012207,2135.929956781442 -7993,9870,17898,17899,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.486797092642917,7.551879893708632,0,20,-2,-32.55970754490359,0,2,3,2019,10,0,30,23,1,1,0,8.466795208209779,8.466795208209779,0,0,0,0,0,1,1,0,0,0,51,54,26.74,54.74,8,2,3,0,0,3,8,3,0,384.75,-25826.36051934654,115307.5949954942,164306.0415271238,86050.73286012207,2135.929956781442 -7993,9870,17899,17898,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,7.805943705192328,7.782083133854733,0,20,2,196.7766783406683,0,-9,-9,2019,20,9,45,37,1,9,0,6.552583003189837,6.552583003189837,0,0,0,0,0,1,1,0,0,0,26.74,54.74,51,54,3.333333333333333,2,3,0,1,8,8,3,0,384.75,-25826.36051934654,115307.5949954942,164306.0415271238,86050.73286012207,2135.929956781442 -7994,9871,17900,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,4.943939793076702,4.955908308427492,0,0,-1010.162077593594,0,3,2,2019,22,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,4.813059405387702,32.16,30.37,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,534,132269.9417413812,-152849.2315505159,0,0,1242.821935085962 -7995,9872,17901,17902,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,37,-2,47.54100079956207,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.06,41.42,50.82,49.75,5,1,1,1,0,0,9,3,0,721,1037362.016568397,668773.7341598063,278015.0550587103,0,1968.301458389114 -7995,9872,17902,17901,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.755117335220621,7.96628712239447,6.324893090565822,37,2,-40.67594686463141,0,-9,3,2019,10,0,43,43,1,0,0,7.168958175756421,7.168958175756421,0,0,0,0,0,1,1,0,0,6.575595118059728,50.82,49.75,34.06,41.42,8.333333333333334,1,1,0,0,7,9,3,0,721,1037362.016568397,668773.7341598063,278015.0550587103,0,1968.301458389114 -7995,9873,17903,-9,17901,17902,1,0,28,0,0,0,2,2,-9,0,2,7.498117398509226,7.497436353745655,0,0,0,-1147.954394697665,0,2,3,2019,8,0,25,25,1,0,1,7.935493915332663,7.935493915332663,0,0,0,0,0,1,1,0,0,0,47.31,50.2,-9,-9,5,1,1,0,0,6,9,3,0,677,-81400.99069442698,0,0,0,347.418624987159 -7995,9874,17904,-9,17901,17902,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1101.687860054067,1,2,3,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.21,35.5,-9,-9,5,1,1,0,1,3,9,1,0,393,54614.52205831469,0,0,0,0 -7996,9875,17905,17907,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.398277726486647,8.195731751622963,0,6,1,-3.209698528138714,0,3,3,2019,8,0,44,44,1,0,0,8.047404340804183,8.047404340804183,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.17,27.83,5,1,1,0,0,8,6,3,1,543,335288.4551443039,339730.5700754809,195164.7326092011,11511.65434248115,2162.106835813326 -7996,9875,17906,-9,17907,17905,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.693791757806,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,6,3,1,543,335288.4551443039,339730.5700754809,195164.7326092011,11511.65434248115,2162.106835813326 -7996,9875,17907,17905,-9,-9,1,0,51,0,1,0,3,3,-9,0,2,7.460203082460033,7.128122539946206,0,6,-1,-48.11530035795668,0,3,3,2019,12,0,26,26,1,0,0,8.793516669482127,8.793516669482127,0,0,0,0,0,1,1,0,0,0,52.17,27.83,51.83,57.2,5,1,1,0,0,8,6,3,1,543,335288.4551443039,339730.5700754809,195164.7326092011,11511.65434248115,2162.106835813326 -7997,9876,17908,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.397330399510775,8.85318940720396,6.486612443264193,0,0,-1080.134494266971,0,3,3,2019,11,0,37,37,1,0,0,13.70784826564829,13.70784826564829,0,0,0,0,7,1,1,0,6.215258352158598,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,501,186668.1342043754,143559.2425952398,86409.27555953205,75617.24696850547,1972.849366723492 -7997,9876,17909,-9,17908,-9,1,0,16,0,0,0,3,3,-9,0,3,0,0,0,0,0,-993.910994857381,-9,2,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,501,186668.1342043754,143559.2425952398,86409.27555953205,75617.24696850547,1972.849366723492 -7998,9877,17910,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.481290589639757,8.118678305359071,0,0,-881.3508452556471,-9,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.479841014672341,8.010282521543473,53.61,52.37,-9,-9,6.666666666666667,1,1,0,0,11,12,4,1,514,641984.4440882349,444058.5485914194,257666.2544372897,63081.40315442008,2334.942232709018 -7999,9878,17911,17913,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.000954934592652,7.683060738625448,0,10,1,42.95868428195529,0,2,-9,2019,12,0,37,41,1,0,0,7.340038890213017,7.340038890213017,0,0,0,3.267116807202587,0,1,1,0,0,0,54.37,54.8,50.15,48.44,8.333333333333334,1,1,0,0,9,2,3,1,894.3333333333334,350598.4614712737,-6695.432987570854,239787.1129318029,0,1284.939713578399 -7999,9878,17912,-9,17911,17913,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.2021562296293,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,894.3333333333334,350598.4614712737,-6695.432987570854,239787.1129318029,0,1284.939713578399 -7999,9878,17913,17911,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,6.366648315671296,6.377044263993158,0,17,-1,103.8893564861755,0,2,-9,2019,12,0,10,8,1,0,0,7.480416113635818,7.480416113635818,0,0,0,0,0,1,1,0,0,0,50.15,48.44,54.37,54.8,3.333333333333333,1,1,0,0,9,2,3,1,894.3333333333334,350598.4614712737,-6695.432987570854,239787.1129318029,0,1284.939713578399 -7999,9879,17914,-9,17911,17913,1,0,18,0,1,0,2,2,1,0,3,6.62248128173993,6.610041237557015,0,0,0,-930.2794611781417,-9,2,2,2019,10,2,16,0,1,2,1,5.703887500832869,5.703887500832869,0,0,0,0,0,1,1,0,0,0,49.97,53.99,-9,-9,10,1,1,0,0,1,2,2,1,756,85986.03631751402,0,0,0,454.1870217414328 -8000,9880,17915,17916,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.610883645273033,8.265318396423257,0,5,6,29.1452748648347,0,-9,-9,2019,1,0,41,65,1,0,0,13.24042448508811,13.24042448508811,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.43,53.5,10,1,1,0,0,4,7,4,0,1543,62717.49877387023,87937.83907517287,0,0,3159.987411483337 -8000,9880,17916,17915,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.671963366528375,7.616520938836056,0,5,-6,-9.332496238786142,0,-9,-9,2019,5,0,40,38,1,0,0,7.339882581639997,7.339882581639997,0,0,0,0,0,0,0,0,0,0,45.43,53.5,54.69,57.47,8.333333333333334,1,1,0,0,8,7,4,0,1543,62717.49877387023,87937.83907517287,0,0,3159.987411483337 -8001,9881,17917,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.935968552017331,8.244003133412873,0,0,0,-1018.947371263127,0,2,3,2019,28,11,40,40,1,11,0,7.882660216635906,7.882660216635906,0,0,0,0,0,0,0,0,0,0,25.59,66.34,-9,-9,1.666666666666667,1,1,0,1,9,2,4,0,1585,159951.5042307255,6268.909780398242,127761.7984273489,0,1153.430310331893 -8002,9882,17918,-9,17919,17920,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-894.4297016930627,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.02,49.07,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,1009.333333333333,-64501.16065201,10567.61978472903,0,0,5848.244160768064 -8002,9882,17919,17920,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.171347516771357,7.286800164747735,0,4,-5,-59.78618869042289,0,-9,-9,2019,12,4,24,0,1,4,0,7.982475526019031,7.982475526019031,0,0,0,0,0,1,1,0,0,0,50.52,25.59,63.39,39.56,8.333333333333334,1,1,0,0,2,5,5,1,1009.333333333333,-64501.16065201,10567.61978472903,0,0,5848.244160768064 -8002,9882,17920,17919,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.477712006854757,9.13216205414655,4.975811249674048,4,5,100.4151583270481,0,2,2,2019,10,1,48,40,1,1,0,38.47443570437337,38.47443570437337,0,0,0,0,7,1,1,0,6.914418891327466,5.52515224868916,63.39,39.56,50.52,25.59,8.333333333333334,1,1,0,0,10,5,5,1,1009.333333333333,-64501.16065201,10567.61978472903,0,0,5848.244160768064 -8003,9883,17921,-9,17925,17926,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.005004328767,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8003,9883,17922,-9,17925,17926,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1061.275066372461,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8003,9883,17923,-9,17925,17926,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1054.918394082596,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8003,9883,17924,-9,17925,17926,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1059.468858155361,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8003,9883,17925,17926,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,7.020021549671777,6.709271370939871,0,13,-1,138.0431129189993,0,-9,-9,2019,10,0,15,15,1,0,0,6.170555539324507,6.170555539324507,0,0,0,0,0,1,1,0,0,0,48.76,53.24,49.25,61.25,0,1,1,0,0,4,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8003,9883,17926,17925,-9,-9,1,1,37,1,4,0,1,1,-9,0,5,9.016102603153325,8.921772600006811,0,13,1,-51.94099947201539,0,2,1,2019,13,2,55,55,1,2,0,15.59959140630052,15.59959140630052,0,0,0,0,0,1,1,0,.2079043836839374,0,49.25,61.25,48.76,53.24,6.666666666666667,2,3,0,0,8,7,4,0,763,307808.824217224,0,0,0,3708.913190810088 -8004,9884,17927,17928,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.743120175304329,8.417494763018068,0,3,-28,15.63063448064738,0,-9,-9,2019,10,0,40,15,1,1,0,19.03915216667658,19.03915216667658,0,0,0,0,0,1,1,0,0,0,49,58,46.08,18.64,7,1,1,0,0,1,5,4,1,520.5,112014.5157466381,-4097.82450177757,0,0,3759.694860714772 -8004,9884,17928,17927,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,6.940189959626528,6.895980660572279,0,3,28,-7.87577860703371,0,2,2,2019,14,2,16,18,1,2,0,8.097662733355557,8.097662733355557,0,0,0,0,14.5,1,1,0,0,0,46.08,18.64,49,58,8.333333333333334,1,1,0,0,8,5,4,1,520.5,112014.5157466381,-4097.82450177757,0,0,3759.694860714772 -8005,9885,17929,17930,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.549809329147362,8.118938559259249,0,6,1,-53.34027203999324,0,-9,-9,2019,6,0,40,0,1,0,0,11.00153816700228,11.00153816700228,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,489,74359.10761637427,8848.321087363751,0,0,3276.351500699615 -8005,9885,17930,17929,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.002079827943207,7.78190037781045,0,6,-1,-78.91637842653935,0,-9,-9,2019,7,0,39,40,1,0,0,6.999969320751325,6.999969320751325,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,489,74359.10761637427,8848.321087363751,0,0,3276.351500699615 -8006,9886,17931,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,7.841023159811113,7.625024733869705,0,0,0,-1027.527445838391,0,3,3,2019,9,1,30,38,1,1,0,8.217222997595357,8.217222997595357,0,0,0,0,0,0,0,0,0,0,47.16,50.53,-9,-9,1.666666666666667,3,4,0,0,5,8,3,1,195,1582342.131489574,0,1082176.793938261,0,1071.789234889013 -8007,9887,17932,17933,-9,-9,1,0,42,1,1,0,2,2,-9,0,4,0,0,0,21,-5,-100.0114408000262,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,2,3,0,0,0,8,2,0,880.6666666666666,21488.90543858525,67204.17420374608,0,0,1898.067075040645 -8007,9887,17933,17932,-9,-9,1,1,47,1,1,0,2,2,-9,0,4,7.23499755356973,7.43378625242414,0,21,5,-39.71270718222403,0,3,3,2019,9,0,28,30,1,1,0,6.485941503383609,6.485941503383609,0,0,0,0,0,1,1,0,0,0,52,55,49,55,8,2,3,0,0,7,8,2,0,880.6666666666666,21488.90543858525,67204.17420374608,0,0,1898.067075040645 -8007,9887,17934,-9,17932,17933,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.355483839177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,880.6666666666666,21488.90543858525,67204.17420374608,0,0,1898.067075040645 -8007,9888,17935,-9,17932,17933,1,1,18,1,1,0,2,2,1,0,4,8.422909133117852,8.454839844503597,0,0,0,-948.5424463742067,-9,2,2,2019,11,0,35,0,1,2,1,18.48214645135652,18.48214645135652,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,5,0,403,73173.63663369215,0,0,0,2032.720571905878 -8008,9889,17936,-9,-9,-9,1,1,25,0,0,0,1,1,0,0,3,0,0,0,0,0,-891.4397245319321,-9,-9,-9,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,.6655133775462018,0,25.97,61.01,-9,-9,3.333333333333333,1,1,0,1,10,9,1,0,268,286803.9234362216,0,0,0,1251.497027211977 -8009,9890,17937,17938,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,6.593384892066005,6.644320390174115,0,24,11,-9.331757816580229,0,3,3,2019,6,0,10,2,1,0,0,11.24517392764399,11.24517392764399,0,0,0,0,0,1,1,0,0,0,67.42,39.73,62.66,52.4,10,2,3,0,0,5,8,4,1,435.3333333333333,202144.3192521404,286043.1632784698,0,0,2530.919799830618 -8009,9890,17938,17937,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,8.569741536167296,8.479643752560442,0,8,-11,10.68985942648094,0,-9,-9,2019,6,0,51,45,1,0,0,10.37730533762431,10.37730533762431,0,0,0,0,0,1,1,0,0,0,62.66,52.4,67.42,39.73,10,2,3,0,0,11,8,4,1,435.3333333333333,202144.3192521404,286043.1632784698,0,0,2530.919799830618 -8009,9890,17939,-9,17937,17938,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-1016.978954512895,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,10,2,3,1,1,0,8,4,1,435.3333333333333,202144.3192521404,286043.1632784698,0,0,2530.919799830618 -8009,9891,17940,-9,17937,17938,1,0,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1051.899339049698,0,3,3,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,1,0,0,8,1,1,1622,0,0,0,0,266.3219572019705 -8009,9892,17941,-9,17937,17938,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1161.651277718818,-9,3,3,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,5,2,3,0,0,0,8,1,1,194,-44998.73094127543,0,0,0,0 -8010,9893,17942,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.210234767276595,7.234884121792543,0,0,-1046.244688808271,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.777325999463579,7.241333320037818,57.06,57.76,-9,-9,10,1,1,0,0,10,5,3,1,1244,644652.7447368229,283686.7159435647,100335.0240524363,0,976.5886519733813 -8011,9894,17943,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,9.394053228635745,9.764843882746463,0,0,0,-1007.052017098464,0,2,2,2019,12,2,45,41,1,2,0,28.77150375353567,28.77150375353567,0,0,0,0,0,0,0,0,4.601318533236925,0,50.57,40.49,-9,-9,5,2,3,0,0,8,7,5,1,423,1114334.199901942,451429.5894953978,0,0,4658.464719374406 -8012,9895,17944,17946,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,7.970504557305186,7.67001122675885,0,8,-1,85.07626389431341,0,3,2,2019,8,0,15,21,1,0,0,21.46973941211022,21.46973941211022,0,0,0,0,0,0,0,0,10.00490642567928,0,56.94,49.53,42.04,56.46,8.333333333333334,2,3,0,0,8,8,3,1,534,903908.5098813408,619768.8786090856,322036.584082436,135667.1791958416,6844.171726602144 -8012,9895,17945,-9,17946,17944,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.2014461718717,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,534,903908.5098813408,619768.8786090856,322036.584082436,135667.1791958416,6844.171726602144 -8012,9895,17946,17944,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.306428641186836,7.641700409615811,0,8,1,-8.730103429911178,0,3,3,2019,17,5,20,30,1,5,0,9.397020393742013,9.397020393742013,0,0,0,0,0,0,0,0,3.699500812013805,0,42.04,56.46,56.94,49.53,6.666666666666667,2,3,0,0,6,8,3,1,534,903908.5098813408,619768.8786090856,322036.584082436,135667.1791958416,6844.171726602144 -8013,9896,17947,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.448883144133291,7.207313570752649,0,0,-937.4750518205625,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,26.51849260575833,0,250.8474773105685,0,1,1,0,0,7.243486477396764,52,44,-9,-9,8,4,2,0,0,0,4,3,0,1762,244584.3401599879,63072.14561334539,225377.2250923898,0,2010.30939873948 -8014,9897,17948,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,0,0,0,0,0,-967.3853617025048,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.94,58.01,-9,-9,6.666666666666667,1,1,1,1,3,1,1,0,728,233619.653608869,-22998.63015608361,0,0,-244.4227059023886 -8015,9898,17949,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,1,6.864644695309856,7.160170663611551,5.4076615726473,0,0,-1007.015488745649,0,3,3,2019,12,3,16,16,1,3,0,7.907623430907138,7.907623430907138,0,0,0,0,0,1,1,0,5.742851896191235,0,43.37,33.34,-9,-9,3.333333333333333,2,3,0,1,12,6,2,1,93,535035.4031192516,285513.8964765889,453163.1481689988,83471.76071241284,1590.673643782781 -8015,9899,17950,-9,17949,-9,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1051.543317862614,-9,1,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.57,57.84,-9,-9,6.666666666666667,2,3,0,0,2,6,1,1,580,-118327.7630336558,0,0,0,0 -8016,9900,17951,17952,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.931999754188238,8.946683093299377,0,10,-6,2.854895451810139,0,-9,-9,2019,14,2,48,46,1,2,0,20.1880662030349,20.1880662030349,0,0,0,0,0,0,0,0,1.298351904987315,0,53.23,47.51,56.32,33.21,6.666666666666667,1,1,0,0,11,11,5,1,472.5,561341.7871770721,33109.28058157976,372838.5336139369,180590.7275854454,2586.408204148479 -8016,9900,17952,17951,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,3.500738968900953,4.007630628817441,0,10,6,28.44015241113779,0,3,-9,2019,15,4,32,32,1,4,0,.1463347483113156,.1463347483113156,0,0,0,0,0,0,0,0,0,0,56.32,33.21,53.23,47.51,8.333333333333334,1,1,0,0,11,11,5,1,472.5,561341.7871770721,33109.28058157976,372838.5336139369,180590.7275854454,2586.408204148479 -8017,9901,17953,17954,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.838503931848454,8.259521544671696,53,0,-71.46233284740447,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.585148960162973,8.557134442849019,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,561,2745412.93993324,426945.2490166622,864664.6702622226,0,4632.792551297851 -8017,9901,17954,17953,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.932325790481726,6.601730268277535,53,0,76.2316219262292,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.514423880133796,6.46918602996935,57.16,56.15,62.1,51.16,8.333333333333334,1,1,0,0,0,9,4,1,561,2745412.93993324,426945.2490166622,864664.6702622226,0,4632.792551297851 -8018,9902,17955,17956,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.476459548114244,7.384728653220171,7,3,118.0323888790742,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.63176576185816,7.48135201989874,53,47,58.15,52.91,8,1,1,0,0,0,4,3,1,462,1014735.80123779,449853.4723699854,103617.0849510828,0,2729.387070326237 -8018,9902,17956,17955,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.112865594050332,7.048958019535087,48,-3,-65.11233407442808,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.412090720603021,7.080599321276517,58.15,52.91,53,47,8.333333333333334,1,1,0,0,4,4,3,1,462,1014735.80123779,449853.4723699854,103617.0849510828,0,2729.387070326237 -8019,9903,17957,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.394206143126146,6.234253634550895,0,0,-1066.208128528797,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.97501254933829,47.75,33.03,-9,-9,10,1,1,0,0,0,12,2,1,738,500850.9505680623,325992.0329672344,76792.80900087913,0,69.11321202644552 -8020,9904,17958,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.757991500520639,7.801743972084739,0,0,0,-1062.150638572575,0,-9,-9,2019,20,8,4,41,1,8,0,71.22562150074913,71.22562150074913,0,0,0,0,2,1,1,0,0,0,46.8,55.75,-9,-9,6.666666666666667,1,1,0,0,5,5,3,1,628,200982.5094334174,43393.70541781095,0,0,1364.175469745152 -8020,9905,17959,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.729393795169035,7.944247256873232,0,0,-988.7882650617169,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.317509211328344,7.929980043155407,59.36,40.22,-9,-9,10,1,1,0,0,0,5,4,1,587,331859.9846662994,199113.9151018864,0,0,1789.160203470849 -8021,9906,17960,17961,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.864125851526678,8.430415191654976,0,17,-2,12.99118566941205,0,2,2,2019,9,0,37,32,1,0,0,15.12560782650159,15.12560782650159,0,0,0,0,0,1,1,0,6.683926461674663,0,54.1,59.11,58.15,52.91,8.333333333333334,1,1,0,0,7,4,4,1,520,181457.6722291425,108789.0057412811,241023.0768982496,112382.5393186263,3085.072818935309 -8021,9906,17961,17960,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.580349715014979,7.715516685234181,0,19,2,-5.501431994517906,0,2,2,2019,6,0,40,40,1,0,0,4.759296779660718,4.759296779660718,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.1,59.11,8.333333333333334,1,1,0,0,11,4,4,1,520,181457.6722291425,108789.0057412811,241023.0768982496,112382.5393186263,3085.072818935309 -8021,9906,17962,-9,17960,17961,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1174.944487976835,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,520,181457.6722291425,108789.0057412811,241023.0768982496,112382.5393186263,3085.072818935309 -8022,9907,17963,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.14659030168,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.63,38.2,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,177,6968.903996729574,0,0,0,759.1995061938101 -8023,9908,17964,-9,17966,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.253580238973,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,1,0,721.3333333333334,49526.02137169932,0,0,0,612.7791514368046 -8023,9908,17965,-9,17966,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.7103757941447,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,721.3333333333334,49526.02137169932,0,0,0,612.7791514368046 -8023,9908,17966,-9,-9,-9,1,0,45,1,2,0,3,3,-9,0,3,0,0,0,0,0,-1049.239747137038,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85,50.34,-9,-9,3.333333333333333,1,1,0,1,3,4,1,0,721.3333333333334,49526.02137169932,0,0,0,612.7791514368046 -8023,9909,17967,-9,17966,-9,1,1,20,1,2,0,2,2,-9,0,2,7.579689856757211,7.252975528001136,0,0,0,-965.576235983738,0,3,-9,2019,19,6,35,35,1,6,1,7.312413097116238,7.312413097116238,0,0,0,0,0,1,1,0,0,0,33.3,47.01,-9,-9,5,4,2,0,1,3,4,3,0,193,-195653.3016244743,-64137.06937776265,0,0,649.635505654058 -8024,9910,17968,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.228288891957236,8.125735718848093,0,0,0,-943.4269341071067,0,-9,-9,2019,22,8,39,37,1,8,0,8.359839819880943,8.359839819880943,0,0,0,0,0,0,0,0,0,0,34.8,52.21,-9,-9,1.666666666666667,1,1,0,1,13,10,4,1,303,100618.6662250011,51464.12683061182,0,0,1470.569176182862 -8024,9911,17969,-9,17968,-9,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-857.4439091816007,0,3,-9,2019,20,8,0,55,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,0,1,1,1,0,8,10,1,1,361,-80098.99049403091,0,0,0,0 -8025,9912,17970,17971,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,8.450671023837852,8.540579944795054,0,28,0,-47.09157375348619,0,2,2,2019,11,4,37,35,1,4,0,15.04664910756802,15.04664910756802,0,0,0,0,0,1,0,1,0,0,46.28,62.6,48.81,59.91,8.333333333333334,1,1,0,0,10,9,4,1,584.3333333333334,303242.0741103341,60372.10191224778,298026.8576362994,9280.622969781591,3547.315466307011 -8025,9912,17971,17970,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.375612781027157,7.764961493584321,0,29,0,-31.07511711332372,0,2,2,2019,8,1,33,29,1,1,0,6.591826021338514,6.591826021338514,0,0,0,0,0,1,0,1,0,0,48.81,59.91,46.28,62.6,3.333333333333333,1,1,0,1,10,9,4,1,584.3333333333334,303242.0741103341,60372.10191224778,298026.8576362994,9280.622969781591,3547.315466307011 -8025,9912,17972,-9,17971,17970,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1063.934121051143,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,584.3333333333334,303242.0741103341,60372.10191224778,298026.8576362994,9280.622969781591,3547.315466307011 -8025,9913,17973,-9,17971,17970,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1015.099887371426,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,.0460801526679992,0,48.07,56.35,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,263,47479.49779871999,0,0,0,85.72751808327838 -8026,9914,17974,17975,-9,-9,1,0,26,0,0,0,2,2,-9,0,1,8.15910333147985,8.15866236970083,0,5,-2,-48.99542871999462,0,-9,-9,2019,16,4,39,45,1,4,0,9.180770434882159,9.180770434882159,0,0,0,0,0,0,0,0,0,0,32.44,42.13,38.86,57.79,3.333333333333333,1,1,0,0,9,2,4,1,1529,81326.23091068392,104439.1507048386,174524.338010049,101228.097104708,2605.163881699861 -8026,9914,17975,17974,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.106539763985028,8.056573501931835,0,5,2,4.468483447329004,0,-9,-9,2019,11,0,40,40,1,0,0,7.268283515317647,7.268283515317647,0,0,0,0,0,0,0,0,0,0,38.86,57.79,32.44,42.13,3.333333333333333,1,1,0,0,7,2,4,1,1529,81326.23091068392,104439.1507048386,174524.338010049,101228.097104708,2605.163881699861 -8027,9915,17976,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,5,7.104886701413737,7.122869166418248,0,0,0,-914.2506038201653,-9,-9,-9,2019,6,0,24,0,1,0,0,5.555902161626596,5.555902161626596,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,6.666666666666667,3,4,0,0,2,5,2,0,350,-5161.592323089542,0,0,0,854.7017785936056 -8028,9916,17977,17979,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.181212591100348,8.213632362549504,0,18,-13,-31.56876212579858,0,-9,-9,2019,6,0,35,30,1,0,0,12.78268470530125,12.78268470530125,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,8,4,0,707.5,467140.2962642746,117787.2643236703,268632.0935012783,0,3519.452957807344 -8028,9916,17978,-9,17977,17979,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.702028814149,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,0,707.5,467140.2962642746,117787.2643236703,268632.0935012783,0,3519.452957807344 -8028,9916,17979,17977,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,8.334279791024947,8.473176317831831,0,18,13,97.07188890029093,0,2,-9,2019,6,0,40,40,1,0,0,9.652076149309059,9.652076149309059,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,8,4,0,707.5,467140.2962642746,117787.2643236703,268632.0935012783,0,3519.452957807344 -8028,9916,17980,-9,17977,17979,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.18263687693,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,0,707.5,467140.2962642746,117787.2643236703,268632.0935012783,0,3519.452957807344 -8029,9917,17981,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,1,7.529290121171931,7.270147541578946,0,0,0,-969.885262944553,0,3,3,2019,17,6,20,22,1,6,0,8.834957800186174,8.834957800186174,0,0,0,0,0,1,1,0,0,0,51.13,11.66,-9,-9,1.666666666666667,1,1,0,1,9,11,3,1,733,500086.5601357631,268157.1090575079,0,0,1231.327388040396 -8029,9918,17982,17983,17981,-9,1,1,29,1,1,0,2,2,-9,1,2,7.538693590100996,7.428431815953735,0,5,6,-53.20612838090677,0,2,2,2019,19,7,39,39,1,7,0,6.808349999295397,6.808349999295397,0,0,0,0,0,1,1,0,0,0,20.14,45.25,32.45,51.38,1.666666666666667,1,1,0,0,6,11,2,1,486,27535.64714539455,6016.480973219629,40601.35802075965,36009.02168158289,1916.76099786332 -8029,9918,17983,17982,-9,-9,1,0,23,1,1,0,2,2,-9,1,3,0,0,0,5,-6,-28.66156000025565,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.45,51.38,20.14,45.25,6.666666666666667,1,1,1,1,0,11,2,1,486,27535.64714539455,6016.480973219629,40601.35802075965,36009.02168158289,1916.76099786332 -8029,9918,17984,-9,17983,17982,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.7761963062219,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,2,1,486,27535.64714539455,6016.480973219629,40601.35802075965,36009.02168158289,1916.76099786332 -8029,9919,17985,-9,17981,-9,1,0,26,1,1,0,2,2,-9,1,1,0,0,0,0,0,-1078.282572139451,0,2,-9,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,25.82,33.12,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,618,56915.21076541772,0,0,0,1631.041316403434 -8030,9920,17986,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.88768296237326,8.21505874416092,0,0,0,-996.8825217889317,0,2,3,2019,8,0,40,50,1,0,0,9.817258026904145,9.817258026904145,0,0,0,0,0,1,1,0,0,0,48.3,58.71,-9,-9,0,1,1,0,0,8,7,4,1,407,40788.55108450812,32363.46472975783,0,0,996.1713206597705 -8031,9921,17987,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.150677762569544,7.347208984827936,0,0,-993.5965309625548,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.475675077838969,7.321578006785654,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,3339,2678299.114257845,1240481.876953944,826374.5341220037,0,1792.609480484692 -8032,9922,17988,-9,-9,-9,1,0,33,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.1823392912131,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.98,27.24,-9,-9,0,1,1,0,1,0,6,1,0,333,6343.240845660226,0,0,0,994.3607318757821 -8033,9923,17989,17990,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,4.512065630827848,4.446436262547176,41,5,46.08927301126598,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.496425488555276,4.392951196455599,63.64,41.47,62.27,32.41,8.333333333333334,1,1,0,0,8,6,2,1,883,187741.7692048118,-51935.07356560405,94124.68929751309,0,1373.963134043838 -8033,9923,17990,17989,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,6.029334057397675,5.830237733260222,0,42,-5,65.57736794135828,0,1,-9,2019,9,0,24,20,1,0,0,2.412616052494055,2.412616052494055,1,0,0,0,0,1,1,0,0,0,62.27,32.41,63.64,41.47,8.333333333333334,1,1,0,0,13,6,2,1,883,187741.7692048118,-51935.07356560405,94124.68929751309,0,1373.963134043838 -8034,9924,17991,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1109.317574716048,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,5,1,0,701,316726.1008147368,0,101894.6121346263,0,950.5001473863414 -8035,9925,17992,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-952.8786594195469,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.4909542397787889,0,53,44,-9,-9,8,1,1,0,0,0,11,1,1,888,28003.42980332241,0,0,0,350.5609240012994 -8036,9926,17993,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.6383884536119,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50.46,38.22,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,2143,110014.002643245,0,0,0,464.0943131139662 -8036,9927,17994,-9,17993,-9,1,1,44,0,0,0,1,1,-9,0,4,8.453803195873652,8.41659888804192,0,0,0,-1056.985931776505,-9,3,-9,2019,9,0,40,0,1,1,0,10.35503574811834,10.35503574811834,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,2,4,1,1743,105316.6396454299,141169.7723395207,71603.79068987434,49492.19304215848,1795.165974306669 -8036,9928,17995,-9,17993,-9,1,1,54,0,0,0,2,2,-9,0,3,8.10975240588192,7.881015615628542,0,0,0,-1076.045053587119,-9,3,-9,2019,10,0,40,0,1,1,0,8.352413749355289,8.352413749355289,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,2,4,1,464,10811.13200419911,0,61139.64675533355,0,1120.820973694736 -8037,9929,17996,17997,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.436403268685281,6.296688331654459,12,12,-106.2703737281413,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.971986923124457,44.75,36.71,49.86,55.31,3.333333333333333,1,1,0,1,0,7,2,0,720,273008.831728759,77510.60914116961,285545.2391734553,0,1194.027886402305 -8037,9929,17997,17996,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,12,-12,-13.40069414263472,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.86,55.31,44.75,36.71,6.666666666666667,2,3,0,1,0,7,2,0,720,273008.831728759,77510.60914116961,285545.2391734553,0,1194.027886402305 -8038,9930,17998,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.184300153271485,8.809075805211119,7.869606802768585,0,0,-1059.899531389257,0,3,3,2019,6,0,16,16,1,0,0,41.84995516547706,41.84995516547706,0,0,0,0,0,0,0,0,3.794007959183215,8.044289141384741,57.06,57.76,-9,-9,10,1,1,0,0,7,2,5,0,92,475684.393059455,305300.0733970148,104245.5545356853,88976.68869674961,2692.356371542518 -8038,9931,17999,-9,17998,-9,1,1,22,0,0,0,1,1,-9,0,4,8.393995088240597,7.979734317750244,0,0,0,-1087.337194760601,0,1,1,2019,10,0,44,44,1,1,1,9.784624282152144,9.784624282152144,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,4,0,1009,-157663.134096836,0,0,0,1392.1372083237 -8039,9932,18000,18002,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.201095069281074,8.232185901154677,0,2,1,-48.89723515914775,0,3,2,2019,6,0,43,43,1,0,0,9.868321668896129,9.868321668896129,0,0,0,0,0,1,1,0,2.453499777451386,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,11,4,5,1,603,764445.1299956539,791947.2358857369,174506.6381035546,107777.1508464871,3465.788066722647 -8039,9932,18001,-9,18000,18002,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1032.164848422792,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,5,1,603,764445.1299956539,791947.2358857369,174506.6381035546,107777.1508464871,3465.788066722647 -8039,9932,18002,18000,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.410730142540626,8.662294922035974,0,2,-1,-81.03431299682025,0,-9,-9,2019,8,0,24,-9,1,0,0,22.6180184376332,22.6180184376332,0,0,0,0,0,1,1,0,2.648024830165079,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,2,4,5,1,603,764445.1299956539,791947.2358857369,174506.6381035546,107777.1508464871,3465.788066722647 -8040,9933,18003,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.416712477985632,8.281889890647545,0,0,0,-955.0005505749914,0,2,2,2019,25,12,12,10,1,12,0,42.07479977363686,42.07479977363686,0,0,0,0,0,1,1,0,0,0,29.18,52.86,-9,-9,6.666666666666667,1,1,0,1,8,10,4,1,740,-58100.0413059812,62153.99233732001,196877.9873266209,145071.2907323387,1965.410693663228 -8041,9934,18004,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.099687983608493,5.95640371789886,0,0,-920.1427148892831,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.204714177827326,42.17,56.08,-9,-9,8.333333333333334,1,1,0,0,1,8,2,0,807,341931.9273378013,0,304081.2879764424,0,-1033.510305035652 -8041,9935,18005,-9,18004,-9,1,1,28,0,0,0,1,1,-9,0,4,7.588251270306996,7.599213966091192,0,0,0,-1175.841870975647,0,2,-9,2019,10,1,20,35,1,1,0,9.773782231258021,9.773782231258021,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,4,8,3,0,1788,-259907.9741485604,23614.6732558302,0,0,1126.651922706169 -8042,9936,18006,18007,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.051300418284876,8.154212456965961,0,3,4,57.40041510244663,0,2,3,2019,7,0,38,37,1,0,0,10.62468645139648,10.62468645139648,0,0,0,0,2,0,0,0,0,0,58.15,52.91,63.1,45.09,8.333333333333334,1,1,0,0,9,11,5,1,1438.5,622756.400264428,369333.7647720842,300557.7400199707,0,4613.698655774895 -8042,9936,18007,18006,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.647054426153829,8.880592855122865,0,3,-4,-1.620813624280556,-9,-9,-9,2019,7,0,50,0,1,0,0,16.05008833133224,16.05008833133224,0,0,0,0,2,0,0,0,2.627986736891002,0,63.1,45.09,58.15,52.91,1.666666666666667,1,1,0,0,11,11,5,1,1438.5,622756.400264428,369333.7647720842,300557.7400199707,0,4613.698655774895 -8042,9937,18008,-9,18006,18007,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-858.8768805943746,-9,1,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1.438287042260179,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,1,0,11,1,1,434,208009.9781485588,0,0,0,-104.3380599663854 -8043,9938,18009,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-971.671861731255,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,4,1,1,191,74532.40520327847,0,0,0,570.8867166262092 -8044,9939,18010,18011,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.791925849337241,8.804180556562615,0,18,-1,-128.5510844448569,-9,-9,-9,2019,12,0,38,0,1,0,0,27.37280445215663,27.37280445215663,0,0,0,0,0,0,0,0,0,0,45.91,59.89,49.11,52.88,5,1,1,0,0,11,6,5,1,461,603369.5754704785,314648.3139955715,296737.6771421716,74718.40955864167,5260.028900299576 -8044,9939,18011,18010,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.811866589849847,8.939105179845079,0,18,1,11.2562713752667,0,2,1,2019,12,0,37,37,1,0,0,27.31249743050175,27.31249743050175,0,0,0,0,0,0,0,0,6.715639711146451,0,49.11,52.88,45.91,59.89,6.666666666666667,1,1,0,0,9,6,5,1,461,603369.5754704785,314648.3139955715,296737.6771421716,74718.40955864167,5260.028900299576 -8045,9940,18012,18014,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,5.875757430152193,6.294314544838677,0,14,3,-131.994031155948,-9,3,3,2019,9,0,40,0,1,1,0,1.02550864318926,1.02550864318926,0,0,0,0,0,1,1,0,0,0,51,55,49,55,8,1,1,0,0,11,5,2,1,1542.2,55517.66503373326,0,0,0,1131.57887877158 -8045,9940,18013,-9,18014,18012,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.984168558917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,1542.2,55517.66503373326,0,0,0,1131.57887877158 -8045,9940,18014,18012,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,14,-3,-44.84280336376935,-9,2,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,55,7,1,1,0,0,2,5,2,1,1542.2,55517.66503373326,0,0,0,1131.57887877158 -8045,9940,18015,-9,18014,18012,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-863.4539949746968,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,1542.2,55517.66503373326,0,0,0,1131.57887877158 -8045,9940,18016,-9,18014,18012,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1066.041246314379,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,1542.2,55517.66503373326,0,0,0,1131.57887877158 -8045,9941,18017,-9,18014,18012,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.912423571409,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,5,2,3,0,0,2,5,1,1,139,-103058.704243595,0,0,0,-343.4843787896355 -8046,9942,18018,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.663773524389939,8.399017816845621,0,0,0,-1015.067815299847,-9,2,-9,2019,10,0,7,0,1,0,1,94.84595177381586,94.84595177381586,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,2,3,0,0,6,7,5,1,1168,354410.2518055366,108256.5660812318,101947.2365606097,60622.31800056488,2076.413995368552 -8047,9943,18019,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.327774680127246,5.876493099838096,0,0,-875.9701599563806,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,4.781681736766187,1.120010886962766,0,0,1,1,0,3.423774914750192,6.435244497519911,59.57,29.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,325,145015.9961114505,-18250.48933963545,194935.6736475473,0,909.7240352501113 -8048,9944,18020,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.509580708522771,8.411192039475839,0,0,0,-1038.429526659947,0,3,3,2019,17,3,39,39,1,3,0,13.56351221967434,13.56351221967434,0,0,0,0,0,1,1,0,0,0,39.23,27.28,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,683,374805.4832910989,278175.6639928637,176905.0072709917,24268.49170926799,2080.246072554953 -8049,9945,18021,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,2,8.154598542693423,7.956742435540021,0,0,0,-1031.25412759125,-9,3,3,2019,11,0,57,0,1,0,0,6.75362790608046,6.75362790608046,0,0,0,0,0,0,0,0,0,0,44.65,44.96,-9,-9,6.666666666666667,2,3,0,0,10,11,4,0,940,292811.937448467,65944.83122984991,0,0,1404.732463838659 -8050,9946,18022,18023,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.292520636693608,8.29793099785352,26,6,-48.16006794095595,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.431250406661497,7.773757381130617,57.16,56.15,60.12,54.8,10,4,2,0,0,8,4,5,1,2044,3816795.460256646,3111463.413564227,427989.8908534954,0,5834.520549609024 -8050,9946,18023,18022,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.855098625602551,8.429058638289094,27,-6,-91.31728592677854,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.177408712938934,8.420802011103738,60.12,54.8,57.16,56.15,0,1,1,0,0,8,4,5,1,2044,3816795.460256646,3111463.413564227,427989.8908534954,0,5834.520549609024 -8050,9947,18024,-9,18022,18023,1,1,23,0,0,0,1,1,0,0,4,0,0,0,0,0,-933.5475415160448,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.991763271521276,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,715,-73714.56555968279,0,0,0,267.9616259123936 -8051,9948,18025,-9,18027,18028,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.66422009935,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,2,0,566.2,-116245.9830972086,0,0,0,1724.786515861794 -8051,9948,18026,-9,18027,18028,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-950.9258517742622,-9,2,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,31.87,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,566.2,-116245.9830972086,0,0,0,1724.786515861794 -8051,9948,18027,18028,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,0,0,0,10,0,28.67592241860322,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,57.06,57.76,47.83,54.78,8.333333333333334,1,1,0,0,0,13,2,0,566.2,-116245.9830972086,0,0,0,1724.786515861794 -8051,9948,18028,18027,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,6.657323726982376,6.650393091504021,0,10,0,139.7372325571513,0,2,2,2019,10,1,30,30,1,1,0,2.668795751665022,2.668795751665022,0,0,0,0,0,1,1,0,0,0,47.83,54.78,57.06,57.76,5,1,1,0,0,4,13,2,0,566.2,-116245.9830972086,0,0,0,1724.786515861794 -8051,9948,18029,-9,18027,18028,1,0,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-1011.55585684835,-9,2,2,2019,25,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,10.02,60.76,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,566.2,-116245.9830972086,0,0,0,1724.786515861794 -8051,9949,18030,-9,18027,18028,1,1,23,0,2,0,2,2,-9,0,4,7.504509424830673,7.469928363630788,0,0,0,-1024.548188400113,-9,2,2,2019,6,0,39,0,1,0,1,5.901280056693939,5.901280056693939,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,2012,1281.82109494542,-24367.97788855896,0,0,1097.327693122706 -8052,9950,18031,18032,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.844294167822211,8.329340792846516,0,32,2,26.31309608350544,0,2,2,2019,10,0,45,45,1,0,0,16.2056588251517,16.2056588251517,0,0,0,0,0,0,0,0,5.384888696968767,0,54.2,57.49,52.31,58.29,10,1,1,0,0,12,5,5,1,795.5,400167.5813116031,278187.7172539658,161470.9441325803,30215.32887430099,3121.432987513497 -8052,9950,18032,18031,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.988887747570911,8.194347429600871,0,34,-2,-24.31552318916174,0,2,1,2019,9,0,38,41,1,0,0,10.48519150086016,10.48519150086016,0,0,0,0,0,0,0,0,2.996557038420574,0,52.31,58.29,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,1,795.5,400167.5813116031,278187.7172539658,161470.9441325803,30215.32887430099,3121.432987513497 -8052,9951,18033,-9,18032,18031,1,0,27,0,0,0,1,1,-9,0,3,7.789948983030599,7.491084457758915,0,0,0,-914.6999333629988,0,2,2,2019,13,2,42,40,1,2,1,8.377614242950894,8.377614242950894,0,0,0,0,0,0,0,0,3.803928693566039,0,33.12,61.85,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,344,148467.1021567011,0,0,0,718.422661969386 -8053,9952,18034,18035,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.986263822019255,9.503556130579526,0,8,-2,-21.44315726309139,0,-9,-9,2019,10,0,40,60,1,1,0,18.70890249065013,18.70890249065013,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,9,5,1,295.5,763878.5152939137,381380.8384472987,286496.4902781436,16878.97616317615,6992.450397256966 -8053,9952,18035,18034,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.428247147800686,9.43944900661103,0,16,2,7.097040148004909,0,3,3,2019,9,0,65,60,1,0,0,27.09686922864034,27.09686922864034,0,0,0,0,0,0,0,0,3.715972979887812,0,54.1,59.11,50,55,10,1,1,0,0,8,9,5,1,295.5,763878.5152939137,381380.8384472987,286496.4902781436,16878.97616317615,6992.450397256966 -8054,9953,18036,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,9.021651024001756,8.939717273325337,0,0,0,-1047.649365054561,0,2,2,2019,28,11,38,35,1,11,0,25.762658904745,25.762658904745,0,0,0,0,0,0,0,0,0,0,31.75,57.05,-9,-9,3.333333333333333,1,1,0,0,8,9,5,1,665,346010.7004920598,337014.1576478716,0,0,3893.691803491028 -8055,9954,18037,18039,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.763773265699903,8.759827440266561,0,7,1,106.6645739869718,0,2,2,2019,9,0,41,37,1,0,0,19.32947256516002,19.32947256516002,0,0,0,0,0,1,1,0,3.191371283220512,0,57.16,56.15,35.67,56.43,8.333333333333334,1,1,0,0,8,9,5,1,756.25,523795.0964210482,101867.5480064659,482735.8184276023,160186.8796320489,5086.623381289526 -8055,9954,18038,-9,18039,18037,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.627554069682,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,756.25,523795.0964210482,101867.5480064659,482735.8184276023,160186.8796320489,5086.623381289526 -8055,9954,18039,18037,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.869861285597249,8.971267460130589,0,7,-1,16.91901563529306,0,3,3,2019,12,0,29,31,1,0,0,28.33839827891606,28.33839827891606,0,0,0,0,0,1,1,0,3.460908919914461,0,35.67,56.43,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,756.25,523795.0964210482,101867.5480064659,482735.8184276023,160186.8796320489,5086.623381289526 -8055,9954,18040,-9,18039,18037,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.1635909224473,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,756.25,523795.0964210482,101867.5480064659,482735.8184276023,160186.8796320489,5086.623381289526 -8056,9955,18041,18042,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.818406214763313,7.742163511753202,0,1,-1,72.89395385116414,-9,-9,-9,2019,18,7,26,0,1,7,0,8.009962297633951,8.009962297633951,0,0,0,0,0,1,1,0,0,0,30.6,62.02,52,55,6.666666666666667,1,1,0,0,10,13,3,1,815.3333333333334,75745.47622924682,39276.73513563928,0,0,4697.561132201614 -8056,9955,18042,18041,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,8.366390314905878,8.136742400598607,0,13,1,-53.94785444662264,-9,2,3,2019,9,0,37,0,1,1,0,13.5403645203025,13.5403645203025,0,0,0,0,0,1,1,0,8.146237527683601,0,52,55,30.6,62.02,8,1,1,0,0,1,13,3,1,815.3333333333334,75745.47622924682,39276.73513563928,0,0,4697.561132201614 -8056,9955,18043,-9,18041,18042,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-945.9980348435707,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.9028870499463866,0,45,59,-9,-9,7,1,1,0,0,0,13,3,1,815.3333333333334,75745.47622924682,39276.73513563928,0,0,4697.561132201614 -8057,9956,18044,18045,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,7.711714893226817,7.929012914420262,0,12,-4,-96.5736334071551,0,3,3,2019,14,3,30,30,1,3,0,11.2089470314776,11.2089470314776,0,0,0,0,0,1,1,0,0,0,32.45,31.37,52,55,8.333333333333334,3,4,0,0,9,8,4,0,673.25,1369664.927083709,195338.4972893152,322101.4071601824,177195.3834278855,3328.219546614391 -8057,9956,18045,18044,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.701251456505307,8.8039242263205,0,12,4,7.501728849483257,0,2,2,2019,9,0,36,36,1,1,0,15.46860176010171,15.46860176010171,0,0,0,0,0,1,1,0,.2165344858506768,0,52,55,32.45,31.37,7,3,4,0,0,1,8,4,0,673.25,1369664.927083709,195338.4972893152,322101.4071601824,177195.3834278855,3328.219546614391 -8057,9956,18046,-9,18044,18045,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.528569497917,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,673.25,1369664.927083709,195338.4972893152,322101.4071601824,177195.3834278855,3328.219546614391 -8057,9956,18047,-9,18044,18045,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.23295731631,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,3,4,-9,0,0,8,4,0,673.25,1369664.927083709,195338.4972893152,322101.4071601824,177195.3834278855,3328.219546614391 -8058,9957,18048,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.816418648717367,8.054840944305594,0,0,0,-966.2477247225884,0,3,3,2019,17,5,32,24,1,5,0,7.340923157809631,7.340923157809631,0,0,0,0,0,0,0,0,0,0,41.21,39.55,-9,-9,3.333333333333333,2,3,0,0,2,6,3,1,324,-32488.96313077319,52750.27812301382,0,0,955.5103329929563 -8058,9958,18049,-9,18048,-9,1,0,22,0,0,0,1,1,-9,0,4,7.593044728625336,7.379380278184042,0,0,0,-1008.350324110152,0,3,-9,2019,7,0,38,20,1,0,1,5.420084252611979,5.420084252611979,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6.666666666666667,2,3,0,0,5,6,3,1,423,-12120.27405423763,0,0,0,831.2000020747419 -8058,9959,18050,-9,18048,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-851.6121485097517,1,3,-9,2019,20,8,0,12,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,-9,-9,3.333333333333333,2,3,0,0,3,6,1,1,87,0,0,0,0,51.63205457109209 -8058,9960,18051,-9,18048,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1075.672586908362,1,3,-9,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,2,6,1,1,1423,-107829.727356306,0,0,0,-830.000850378698 -8059,9961,18052,-9,18054,18053,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1019.694196037108,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,621.3333333333334,814736.5713128819,516695.5991159141,169392.4026974173,0,2650.021488420841 -8059,9961,18053,18054,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.608430222237573,8.588729500366526,0,23,7,74.36058919080411,0,3,3,2019,7,0,48,50,1,0,0,17.37624373855719,17.37624373855719,0,0,0,0,0,1,1,0,0,0,58.75,51.28,48.77,57.64,8.333333333333334,1,1,0,0,9,2,4,1,621.3333333333334,814736.5713128819,516695.5991159141,169392.4026974173,0,2650.021488420841 -8059,9961,18054,18053,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.796843604034143,6.911648696653454,0,24,-7,3.40307230845572,0,3,3,2019,9,1,16,16,1,1,0,6.958944445756622,6.958944445756622,0,0,0,.1925436127751574,0,1,1,0,0,0,48.77,57.64,58.75,51.28,8.333333333333334,1,1,0,0,9,2,4,1,621.3333333333334,814736.5713128819,516695.5991159141,169392.4026974173,0,2650.021488420841 -8059,9962,18055,-9,18054,18053,1,1,25,0,0,0,2,2,-9,0,4,8.225396395322459,7.999063711190052,0,0,0,-1050.899112954817,0,2,2,2019,11,2,41,48,1,2,1,11.60892175896738,11.60892175896738,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,499,77576.3869906505,0,0,0,1937.068221995948 -8059,9963,18056,-9,18054,18053,1,0,19,0,0,0,2,2,-9,0,4,7.668338658140505,7.600818801778143,0,0,0,-975.5878508975563,0,2,3,2019,6,0,37,0,1,0,1,5.273611434183007,5.273611434183007,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,3,2,3,1,1000,-51748.37999965006,0,0,0,977.6201118110671 -8060,9964,18057,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.962139792013971,5.805989713585199,0,0,-1015.273926597083,0,3,-9,2019,14,4,0,0,4,4,0,0,0,1,0,10.28831735560627,0,0,1,1,0,0,6.022606720093926,41.04,28.63,-9,-9,3.333333333333333,1,1,0,0,2,10,2,1,479,232485.4465851703,-27995.07907323261,149100.1289885688,0,1298.128556783128 -8061,9965,18058,18059,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.256681523195597,5.557677755149171,52,3,-106.1615671211367,0,-9,3,2019,12,3,0,0,4,3,0,0,0,1,0,4.146214881942072,0,0,1,1,0,0,5.431119737091892,54.78,23.91,51.64,57.24,8.333333333333334,1,1,0,0,0,11,2,1,1377.5,243871.1968842994,81625.65581485318,48098.64479970939,0,1370.391004612078 -8061,9965,18059,18058,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,52,-3,54.08791691716159,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.64,57.24,54.78,23.91,8.333333333333334,1,1,0,1,0,11,2,1,1377.5,243871.1968842994,81625.65581485318,48098.64479970939,0,1370.391004612078 -8062,9966,18060,18061,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.287803710018739,8.26479667932453,0,35,2,66.68376878523668,0,-9,-9,2019,22,10,40,39,1,10,0,11.59343241371303,11.59343241371303,0,0,0,0,14.5,0,0,0,.9365647452477611,0,36.95,48.22,52.8,43.61,3.333333333333333,1,1,0,0,8,5,4,1,691,258178.88386158,110427.2974556399,46028.74538464805,8018.001744705652,2621.774865406127 -8062,9966,18061,18060,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.802581764144415,7.820371985350262,0,35,-2,59.64954100272738,0,2,3,2019,7,1,23,22,1,1,0,12.42630189001421,12.42630189001421,0,0,0,0,14.5,0,0,0,0,0,52.8,43.61,36.95,48.22,6.666666666666667,1,1,0,0,8,5,4,1,691,258178.88386158,110427.2974556399,46028.74538464805,8018.001744705652,2621.774865406127 -8062,9967,18062,-9,18060,18061,1,1,23,0,0,0,2,2,-9,0,3,8.081999491775253,8.147449686634051,0,0,0,-1074.626138734256,0,2,1,2019,11,0,42,44,1,0,1,8.111157387341057,8.111157387341057,0,0,0,0,5.48,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,6,5,4,1,146,0,0,0,0,1245.988075431952 -8063,9968,18063,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-947.632811343236,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,0,0,48.71,25.17,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,167,-117340.7853742714,0,106554.8335208718,0,1701.179928874853 -8064,9969,18064,18065,-9,-9,1,1,38,1,2,0,1,1,-9,1,3,0,0,0,9,0,0,0,1,1,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.52,33.68,36.69,50.5,5,2,3,0,1,5,10,1,0,767.75,16948.15206908106,24874.69147069949,0,0,4316.409226240095 -8064,9969,18065,18064,-9,-9,1,0,38,1,2,0,2,2,-9,1,3,0,0,0,9,0,0,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,36.69,50.5,41.52,33.68,1.666666666666667,2,3,0,1,6,10,1,0,767.75,16948.15206908106,24874.69147069949,0,0,4316.409226240095 -8064,9969,18066,-9,18065,18064,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-835.0711693077958,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,10,1,0,767.75,16948.15206908106,24874.69147069949,0,0,4316.409226240095 -8064,9969,18067,-9,18065,18064,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.887341756328,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,10,1,0,767.75,16948.15206908106,24874.69147069949,0,0,4316.409226240095 -8065,9970,18068,18069,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.64147152541248,6.395653354895432,52,0,-8.522613330055819,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.712227196681979,53.98,50.87,63.59,34.15,10,1,1,0,0,0,1,5,1,114.5,2090751.464051598,1678474.291521085,162135.1138921673,0,5436.518412165565 -8065,9970,18069,18068,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,9.32086516786263,9.183763639867802,52,0,-30.83799706654665,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.938211525572891,5.513463162875933,63.59,34.15,53.98,50.87,8.333333333333334,1,1,0,0,2,1,5,1,114.5,2090751.464051598,1678474.291521085,162135.1138921673,0,5436.518412165565 -8066,9971,18070,18071,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.839601242265903,7.878003169161834,43,2,-5.305036466928459,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.626942329046688,7.650931174760982,53.8,45.89,53.96,50.73,8.333333333333334,1,1,0,0,0,4,3,1,420.5,1433198.980915776,971047.243955934,270482.4330899871,0,2889.362988253151 -8066,9971,18071,18070,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.448860446762041,7.182790458497879,42,-2,81.27488852265992,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.895938935886579,6.982474143492434,53.96,50.73,53.8,45.89,8.333333333333334,1,1,0,0,0,4,3,1,420.5,1433198.980915776,971047.243955934,270482.4330899871,0,2889.362988253151 -8067,9972,18072,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,8.290304128466184,8.383237117717725,0,0,0,-1102.614724310121,0,2,2,2019,12,1,35,35,1,1,0,13.29795086327976,13.29795086327976,0,0,0,0,0,0,0,0,0,0,31.32,62.74,-9,-9,5,1,1,0,0,11,8,4,0,395,311655.1281065712,224668.1579500907,265414.7315005813,0,2141.34559903504 -8068,9973,18073,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,6.718412289409526,6.539387712245134,0,0,-1044.489194648565,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,12.22664470680182,0,0,1,1,0,2.057238574922633,6.739102905394247,54,43,-9,-9,8,1,1,0,0,0,11,2,1,310,170473.3850104552,52705.95634780776,132892.4054311008,0,746.622314550532 -8069,9974,18074,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1098.194853755529,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,11.14809456456988,0,0,1,1,0,0,0,62.65,37.27,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,169,127342.2950169398,0,210537.9540813795,0,635.6410961050859 -8070,9975,18075,18076,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.958951615107989,8.250033502392263,35,7,-8.902524870605726,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.960632575719004,8.160691762088581,52,54.51,51.01,41.69,8.333333333333334,1,1,0,0,0,7,4,1,567.5,1617697.046967538,710366.9316471217,531810.1725926287,0,3841.583110195367 -8070,9975,18076,18075,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,8.045816391563777,7.92994951760679,34,-7,-131.8879480888181,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.814670156562193,7.991437398823731,51.01,41.69,52,54.51,8.333333333333334,1,1,0,0,7,7,4,1,567.5,1617697.046967538,710366.9316471217,531810.1725926287,0,3841.583110195367 -8071,9976,18077,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-994.3176826119818,0,2,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.41,26.12,-9,-9,5,3,4,0,1,0,8,1,0,1968,-11829.63295340273,0,0,0,-157.981786611525 -8071,9977,18078,-9,18077,-9,1,1,23,0,0,0,2,2,-9,0,4,6.939436709981802,7.178248567809441,0,0,0,-985.7763910092605,0,2,2,2019,2,0,17,0,1,0,1,8.244763113804435,8.244763113804435,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,770,-48748.41107921782,0,0,0,286.2682480152222 -8072,9978,18079,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.039536699515633,8.121571761713149,0,0,0,-1022.13747206764,0,-9,3,2019,10,0,39,44,1,1,0,11.88803803026769,11.88803803026769,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,1,5,4,0,378,-220633.8567246633,-27048.79110733243,0,0,1804.01049647478 -8072,9979,18080,-9,-9,18079,1,1,24,0,0,0,3,3,-9,0,3,0,0,0,0,0,-889.5370104770153,0,-9,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.22,55.74,-9,-9,5,1,1,1,1,4,5,1,0,567,33728.13451153383,0,0,0,234.5771362441412 -8073,9980,18081,-9,-9,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1034.697977049612,-9,-9,-9,2019,28,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.90000000000001,-9,-9,5,1,1,0,0,4,12,1,0,219,144485.5891309776,0,0,0,1208.459511880629 -8074,9981,18082,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1044.378245591956,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,139,-119241.7021525074,0,0,0,460.7546215256183 -8075,9982,18083,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.349950321375492,7.476282614868609,0,0,-922.7883982415817,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.344772971097154,25.26,31.88,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,370,302346.6385305024,113871.3402736732,0,0,1377.09630277209 -8076,9983,18084,18087,-9,-9,1,1,30,2,2,0,2,2,-9,1,2,8.393196230519129,8.616377539273236,0,3,1,3.643618151546977,0,-9,-9,2019,11,1,38,40,1,1,0,13.77667382277896,13.77667382277896,0,0,0,0,2,1,1,0,0,0,52.64,41.11,51.42,48.12,8.333333333333334,1,1,0,0,10,4,4,1,1223.25,-12638.30751413716,1257.38740289733,0,0,3884.487394330555 -8076,9983,18085,-9,18087,18084,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.036905878915,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1223.25,-12638.30751413716,1257.38740289733,0,0,3884.487394330555 -8076,9983,18086,-9,18087,18084,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1161.367147466519,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1223.25,-12638.30751413716,1257.38740289733,0,0,3884.487394330555 -8076,9983,18087,18084,-9,-9,1,0,29,2,2,0,1,1,-9,0,3,8.177722979371794,8.349189320941775,0,3,-1,-21.78440817523766,0,-9,-9,2019,8,1,38,51,1,1,0,13.68036428334423,13.68036428334423,0,0,0,0,7,1,1,0,2.85682910745896,0,51.42,48.12,52.64,41.11,8.333333333333334,1,1,0,0,7,4,4,1,1223.25,-12638.30751413716,1257.38740289733,0,0,3884.487394330555 -8077,9984,18088,18089,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.685842671312066,8.69369146384212,0,4,0,7.407659168087322,0,2,2,2019,5,0,35,35,1,0,0,19.6572512476722,19.6572512476722,0,0,0,0,0,0,0,0,7.596719725725202,0,57.06,57.76,58.5,44.67,8.333333333333334,1,1,0,0,11,7,5,1,1063,-60418.22499066929,-68537.00172580231,0,0,5173.615692050498 -8077,9984,18089,18088,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.257436563229712,8.383705804079865,0,4,0,83.62510209591888,0,-9,-9,2019,6,0,38,40,1,0,0,12.48385074367031,12.48385074367031,0,0,0,0,0,0,0,0,6.979978554919445,0,58.5,44.67,57.06,57.76,8.333333333333334,1,1,0,0,12,7,5,1,1063,-60418.22499066929,-68537.00172580231,0,0,5173.615692050498 -8078,9985,18090,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.160703378308636,8.470159257260811,0,0,0,-1001.646183945729,0,2,2,2019,9,0,37,38,1,0,0,13.29990504909812,13.29990504909812,0,0,0,0,0,1,1,0,0,0,51.01,55.04,-9,-9,8.333333333333334,4,2,0,0,9,5,3,1,1098.333333333333,286751.6616772677,80913.8581872427,199828.1080721887,0,2393.976636262129 -8078,9985,18091,-9,18090,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.947368342105,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,5,3,1,1098.333333333333,286751.6616772677,80913.8581872427,199828.1080721887,0,2393.976636262129 -8078,9985,18092,-9,18090,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.861922156911,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,3,1,1098.333333333333,286751.6616772677,80913.8581872427,199828.1080721887,0,2393.976636262129 -8079,9986,18093,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.848798674284328,6.41283162781947,0,0,-983.1412178305559,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.499906247423061,6.790072065188409,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,7,2,1,296,316953.111494686,98684.7218017477,0,0,1217.525581045246 -8080,9987,18094,-9,18095,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.4110289430248,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,812.5,6038.828679933045,0,0,0,750.949262680835 -8080,9987,18095,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1059.308441856335,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.0653896966779788,0,49.69,52.99,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,812.5,6038.828679933045,0,0,0,750.949262680835 -8081,9988,18096,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.567851642288575,5.334515209064953,0,0,-911.557088111821,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.433522421023133,52.3,43.16,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,972,9600.342813556455,-148056.836521213,0,0,111.1762334156851 -8081,9989,18097,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-949.9103089666002,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,1,1,0,0,0,13,1,1,2186,162257.3842518763,0,0,0,1134.010957664658 -8082,9990,18098,-9,18102,18101,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.161061842589,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,697.6,243448.6891660521,241587.7789107905,208937.9772138847,105338.3481856805,10199.80574720367 -8082,9990,18099,-9,18102,18101,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.487373544859,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,697.6,243448.6891660521,241587.7789107905,208937.9772138847,105338.3481856805,10199.80574720367 -8082,9990,18100,-9,18102,18101,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1157.907491848974,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,4,1,697.6,243448.6891660521,241587.7789107905,208937.9772138847,105338.3481856805,10199.80574720367 -8082,9990,18101,18102,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,9.124704757991799,9.015178737176267,0,13,-3,129.8333651287176,0,3,2,2019,9,0,37,39,1,0,0,20.52032592693764,20.52032592693764,0,0,0,0,0,1,1,0,9.212424917897657,0,57.06,57.76,38.23,57.1,8.333333333333334,2,3,0,0,9,9,4,1,697.6,243448.6891660521,241587.7789107905,208937.9772138847,105338.3481856805,10199.80574720367 -8082,9990,18102,18101,-9,-9,1,0,48,0,3,0,2,2,-9,0,3,0,0,0,13,3,-43.94039074595958,0,1,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.23,57.1,57.06,57.76,8.333333333333334,2,3,0,0,3,9,4,1,697.6,243448.6891660521,241587.7789107905,208937.9772138847,105338.3481856805,10199.80574720367 -8083,9991,18103,18106,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,7.602876104937525,7.748854882104853,0,6,-3,-44.0720625157237,0,-9,-9,2019,15,5,22,22,1,5,0,9.736776700951584,9.736776700951584,0,0,0,0,0,1,1,0,0,0,26.19,63.43,52.13,57.22,8.333333333333334,1,1,0,0,8,5,4,1,511.25,137914.6121346978,136335.1235837652,162331.0596790461,99961.16741562517,3749.255505739039 -8083,9991,18104,-9,18103,18106,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-994.9922604975735,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,511.25,137914.6121346978,136335.1235837652,162331.0596790461,99961.16741562517,3749.255505739039 -8083,9991,18105,-9,18103,18106,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-986.2055380205638,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,511.25,137914.6121346978,136335.1235837652,162331.0596790461,99961.16741562517,3749.255505739039 -8083,9991,18106,18103,-9,-9,1,1,35,2,2,0,1,1,-9,0,5,8.868485343814505,8.681748901643651,0,6,3,-27.41258638469501,0,2,1,2019,9,0,44,38,1,0,0,15.30163678146069,15.30163678146069,0,0,0,0,0,1,1,0,0,0,52.13,57.22,26.19,63.43,8.333333333333334,1,1,0,0,9,5,4,1,511.25,137914.6121346978,136335.1235837652,162331.0596790461,99961.16741562517,3749.255505739039 -8084,9992,18107,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.347279885728997,7.310141040855433,0,0,-981.9958385180919,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.912671404052902,7.818254830020806,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,2983,789897.2120167416,126706.1424317724,573265.9757386085,0,3843.026704452592 -8085,9993,18108,18109,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.434629881009524,8.817861949303177,0,15,-5,25.85766001329474,0,3,3,2019,14,2,38,38,1,2,0,12.82486013310413,12.82486013310413,0,0,0,0,0,1,1,0,0,0,32.2,55.69,18.54,60.62,3.333333333333333,2,3,0,0,11,6,3,1,768,514757.5211044737,59537.34455103247,516977.7192224623,-2170.23366286242,1971.288778475128 -8085,9993,18109,18108,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,6.200470307463983,6.236911395318057,0,15,5,-36.05486924749469,0,3,3,2019,22,10,60,40,1,10,0,1.111456369945514,1.111456369945514,0,0,0,0,7,1,1,0,0,0,18.54,60.62,32.2,55.69,5,2,3,0,0,9,6,3,1,768,514757.5211044737,59537.34455103247,516977.7192224623,-2170.23366286242,1971.288778475128 -8085,9993,18110,-9,18108,18109,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.4210057897421,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,768,514757.5211044737,59537.34455103247,516977.7192224623,-2170.23366286242,1971.288778475128 -8086,9994,18111,18113,-9,-9,1,0,33,0,3,0,3,3,-9,0,3,0,0,0,10,-4,-6.994245546166574,0,2,2,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,49.7,50.56,51.54,10,2,3,1,0,0,2,2,1,348.2,28448.40325919386,-7661.615085627496,0,0,946.4781201611561 -8086,9994,18112,-9,18111,18113,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1052.805229443138,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,348.2,28448.40325919386,-7661.615085627496,0,0,946.4781201611561 -8086,9994,18113,18111,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,7.81701036640818,7.710135226631743,0,3,4,-2.635897981358109,0,-9,-9,2019,17,7,24,30,1,7,0,12.80958598779388,12.80958598779388,0,0,0,0,14.5,1,1,0,0,0,50.56,51.54,35.56,49.7,8.333333333333334,2,3,0,1,10,2,2,1,348.2,28448.40325919386,-7661.615085627496,0,0,946.4781201611561 -8086,9994,18114,-9,18111,18113,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1106.215663931434,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,348.2,28448.40325919386,-7661.615085627496,0,0,946.4781201611561 -8086,9994,18115,-9,18111,18113,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.328959018708,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,348.2,28448.40325919386,-7661.615085627496,0,0,946.4781201611561 -8087,9995,18116,18117,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,52,-2,-140.3328375203164,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.22,44.74,43.54,49,10,1,1,0,0,0,10,5,1,1498,2125119.000864021,862056.4484275385,682044.4029763858,0,6605.018117257083 -8087,9995,18117,18116,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,9.122827605777877,9.097591405715702,52,2,138.3630116901516,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.443261388944016,9.56436275192117,43.54,49,49.22,44.74,8.333333333333334,1,1,0,0,0,10,5,1,1498,2125119.000864021,862056.4484275385,682044.4029763858,0,6605.018117257083 -8088,9996,18118,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-979.4606502514275,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,13.53257605968589,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,2,1,0,570,-188459.3083249142,0,0,0,918.3523084541579 -8089,9997,18119,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1028.67684646451,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.198997861589874,0,50,47,-9,-9,7,1,1,1,0,7,8,1,1,317,111381.7489398771,0,0,0,858.3348445514489 -8090,9998,18120,18121,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.551513228437084,8.80101360321223,41,1,176.6199600263633,0,2,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,4.415300045128704,8.863332664811212,57.16,56.15,36.64,40.14,8.333333333333334,1,1,0,0,6,2,5,1,1640.5,2478956.518963082,2032850.415304423,203412.5924461453,0,4355.084287125534 -8090,9998,18121,18120,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.64558799994556,7.757851566439119,45,-1,41.55301468831096,0,2,2,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,4.821914392105023,7.204112936710079,36.64,40.14,57.16,56.15,3.333333333333333,1,1,0,0,5,2,5,1,1640.5,2478956.518963082,2032850.415304423,203412.5924461453,0,4355.084287125534 -8091,9999,18122,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1041.74523615564,1,2,-9,2019,23,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,44.85,-9,-9,0,3,4,0,1,1,8,1,0,56.5,-16377.66178687845,0,0,0,166.7650326469137 -8091,9999,18123,-9,18122,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.811446138243,-9,2,-9,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.32,43.25,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,56.5,-16377.66178687845,0,0,0,166.7650326469137 -8091,10000,18124,-9,18122,-9,1,1,21,0,0,0,2,2,1,0,5,7.207574485105204,7.361731202179413,0,0,0,-1027.680362908379,-9,2,-9,2019,4,1,50,0,1,1,1,3.131100044196151,3.131100044196151,0,0,0,0,0,1,1,0,0,0,56.16,52.62,-9,-9,10,3,4,0,0,1,8,3,0,918,-34756.69315575007,-77112.09672816684,0,0,523.1454744365068 -8092,10001,18125,18126,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,40,2,110.605559718345,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.64,52.85,52,48,8.333333333333334,4,5,0,0,0,10,3,1,364,96982.56530339624,32722.86401171021,0,0,2316.708661737247 -8092,10001,18126,18125,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.661703084191881,7.981341327319417,0,4,-2,-54.21580958936613,0,-9,-9,2019,10,0,50,50,1,1,0,5.926781007338977,5.926781007338977,0,0,0,0,0,1,1,0,0,0,52,48,47.64,52.85,7,1,1,0,0,1,10,3,1,364,96982.56530339624,32722.86401171021,0,0,2316.708661737247 -8093,10002,18127,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-988.2339669493141,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,0,0,37.51,49.12,-9,-9,3.333333333333333,1,1,0,0,11,9,2,1,208,297774.1410683549,0,291610.3223219161,0,-36.24329140303551 -8094,10003,18128,18129,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.837930951367738,8.686453397245472,0,1,-7,-11.7207662075761,0,2,2,2019,23,8,60,60,1,8,0,13.61290533395984,13.61290533395984,0,0,0,0,0,0,0,0,0,0,35.6,55.01,58.05,54.52,6.666666666666667,1,1,0,0,7,6,5,1,1342.5,549519.499416591,553192.0693505649,0,0,4371.792507918355 -8094,10003,18129,18128,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.760800888379819,8.89015964091756,0,1,7,33.93897176213623,-9,-9,-9,2019,5,0,53,0,1,0,0,12.72033791883793,12.72033791883793,0,0,0,0,0,0,0,0,0,0,58.05,54.52,35.6,55.01,8.333333333333334,1,1,0,0,3,6,5,1,1342.5,549519.499416591,553192.0693505649,0,0,4371.792507918355 -8095,10004,18130,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,6.768312623977787,6.515078289132737,0,0,-1010.94411193816,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.876034325329222,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,161,1007258.903574964,153611.7585007245,908350.2947971555,0,1032.458233455058 -8096,10005,18131,-9,18132,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1118.651205517169,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,0,240,571184.9109016121,411299.596400235,123156.8876451647,0,2686.876686521942 -8096,10005,18132,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.855885547048588,8.690426294745773,6.405207376836964,0,0,-1050.831184625401,0,2,2,2019,27,11,36,32,1,11,0,20.9053818824113,20.9053818824113,0,0,0,0,0,1,1,0,6.338369767765395,0,27.1,56.72,-9,-9,6.666666666666667,1,1,0,0,8,12,5,0,240,571184.9109016121,411299.596400235,123156.8876451647,0,2686.876686521942 -8097,10006,18133,18134,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.235695640285879,7.919096308269628,38,0,-56.38953800224288,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.737240760427747,8.633022901025718,52.75,41.81,57.71,46.52,6.666666666666667,1,1,0,0,6,9,4,1,619,2070658.686060517,819415.3530338835,770766.1368739274,0,3309.457138486846 -8097,10006,18134,18133,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.377625541674032,6.726428504626828,38,0,-7.166641358579719,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.004683417798764,6.580624743520617,57.71,46.52,52.75,41.81,10,1,1,0,0,0,9,4,1,619,2070658.686060517,819415.3530338835,770766.1368739274,0,3309.457138486846 -8098,10007,18135,18137,-9,-9,1,1,41,0,2,0,3,3,-9,1,4,6.999891370429266,6.694366626870683,0,7,-8,29.71665432351058,0,-9,-9,2019,11,0,49,39,1,0,0,2.298299304522052,2.298299304522052,0,0,0,0,0,1,1,0,0,0,51,56,33.01,31.15,6.666666666666667,1,1,0,0,9,4,2,0,383.75,256575.7109806238,4121.620942187528,96135.62478431326,25995.46600064242,1957.279280769662 -8098,10007,18136,-9,18137,18135,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.6005471604116,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,0,383.75,256575.7109806238,4121.620942187528,96135.62478431326,25995.46600064242,1957.279280769662 -8098,10007,18137,18135,-9,-9,1,0,49,0,2,0,3,3,-9,1,1,0,0,0,7,8,16.15712773515,0,3,3,2019,19,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.01,31.15,51,56,6.666666666666667,1,1,0,1,5,4,2,0,383.75,256575.7109806238,4121.620942187528,96135.62478431326,25995.46600064242,1957.279280769662 -8098,10007,18138,-9,18137,18135,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-942.9975588386005,-9,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,60.22,-9,-9,10,1,1,0,1,0,4,2,0,383.75,256575.7109806238,4121.620942187528,96135.62478431326,25995.46600064242,1957.279280769662 -8099,10008,18139,18140,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,6.802183720422978,6.767635276655694,0,4,0,-68.31769146629402,0,2,1,2019,11,0,13,16,1,0,0,6.780319873431662,6.780319873431662,0,0,0,0,0,1,1,0,0,0,36.8,39.41,57.73,54.53,8.333333333333334,1,1,0,0,5,10,3,0,347,573527.6722274034,246947.8899888247,159155.9668595263,0,1771.938469827268 -8099,10008,18140,18139,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.64209082372553,7.988486981265869,0,4,9,77.2028818100837,0,-9,-9,2019,7,0,38,41,1,0,0,8.034387354350553,8.034387354350553,0,0,0,0,27,1,1,0,0,0,57.73,54.53,36.8,39.41,8.333333333333334,1,1,0,0,5,10,3,0,347,573527.6722274034,246947.8899888247,159155.9668595263,0,1771.938469827268 -8100,10009,18141,18144,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,7.784675875123179,7.795493194457673,0,6,-13,1.364714408622837,0,-9,-9,2019,5,0,37,30,1,0,0,9.608180224526578,9.608180224526578,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.56,57.02,8.333333333333334,2,3,0,0,8,6,3,1,702,74843.27771171276,42045.21034647695,164276.1889115616,54757.11351988403,1864.975148191329 -8100,10009,18142,-9,18141,18144,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.1240751376279,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,702,74843.27771171276,42045.21034647695,164276.1889115616,54757.11351988403,1864.975148191329 -8100,10009,18143,-9,18141,18144,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.331617101787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,702,74843.27771171276,42045.21034647695,164276.1889115616,54757.11351988403,1864.975148191329 -8100,10009,18144,18141,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,6.890322127339041,6.600375591851989,0,6,13,38.49767797081814,0,-9,-9,2019,6,0,24,0,1,0,0,4.230356019301335,4.230356019301335,0,0,0,0,0,1,1,0,0,0,46.56,57.02,57.33,53.46,6.666666666666667,2,3,0,0,2,6,3,1,702,74843.27771171276,42045.21034647695,164276.1889115616,54757.11351988403,1864.975148191329 -8101,10010,18145,18146,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,6.866006189737028,6.668654081741084,0,4,-3,-66.35711988170675,0,-9,-9,2019,6,0,16,16,1,0,0,8.206018217004541,8.206018217004541,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,10,1,1,0,0,3,7,3,0,512.5,239760.292586313,141959.2658550157,339423.1294069523,117545.6738496664,2505.008542801287 -8101,10010,18146,18145,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.313841240981619,8.176535989831315,0,8,3,-54.78177161162288,0,-9,-9,2019,12,0,39,39,1,0,0,16.28035776323033,16.28035776323033,0,0,0,0,2,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,0,512.5,239760.292586313,141959.2658550157,339423.1294069523,117545.6738496664,2505.008542801287 -8102,10011,18147,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.382556346868996,5.172145644990825,0,0,-1061.817087163507,0,2,3,2019,21,8,0,0,4,8,0,0,0,1,3.491197983680129,9.111972909254959,23.02011181185544,0,1,1,0,0,5.19440626411205,45.41,10.82,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,182,-32482.36485346348,76487.35132006764,0,0,1337.232702642811 -8103,10012,18148,18149,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,10,-3,54.26821534284669,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49.04,55.86,26.79,20.5,8.333333333333334,1,1,0,0,6,5,2,1,1485.5,278959.5250929195,294548.292818857,0,0,1518.386294566754 -8103,10012,18149,18148,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,7.030509979333845,6.998570929057433,10,3,.4991007224301063,0,2,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.592869701532548,6.907399550197681,26.79,20.5,49.04,55.86,1.666666666666667,1,1,0,0,1,5,2,1,1485.5,278959.5250929195,294548.292818857,0,0,1518.386294566754 -8104,10013,18150,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.164250528059415,4.899401885502547,0,0,-936.1079205010739,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.969350609131013,46.04,41.36,-9,-9,8.333333333333334,1,1,0,0,6,9,2,0,1687,177916.8315158108,70868.58830302896,61655.82420082236,0,1330.969503484419 -8105,10014,18151,-9,18152,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.125477086396,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,679,606605.9632436797,424014.6496278129,526193.7834645333,242389.2790305777,5456.087341778278 -8105,10014,18152,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,9.379130130660608,9.328775734106602,7.936299438789545,0,0,-853.9785941009939,-9,2,2,2019,12,2,20,0,1,2,0,69.63176330638824,69.63176330638824,0,0,0,0,0,0,0,0,6.925858898676517,7.074563253935422,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,679,606605.9632436797,424014.6496278129,526193.7834645333,242389.2790305777,5456.087341778278 -8106,10015,18153,-9,18154,18158,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1014.31890375261,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8106,10015,18154,18158,-9,-9,1,0,40,0,4,0,1,1,-9,0,3,7.668534959962024,7.805540358758872,0,22,0,126.6760550535474,0,1,1,2019,12,1,27,0,1,1,0,9.727522336757104,9.727522336757104,0,0,0,0,0,0,0,0,2.132921958207454,0,44.19,58.01,41.65,60.41,8.333333333333334,1,1,0,0,1,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8106,10015,18155,-9,18154,18158,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1065.584596067531,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8106,10015,18156,-9,18154,18158,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-969.6408841789952,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8106,10015,18157,-9,18154,18158,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-909.3014427555854,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8106,10015,18158,18154,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,9.472416821492169,9.104150042766934,0,22,0,61.16321005055121,0,1,1,2019,11,1,45,45,1,1,0,28.58541681804194,28.58541681804194,0,0,0,0,0,0,0,0,5.529360130164815,0,41.65,60.41,44.19,58.01,8.333333333333334,1,1,0,0,10,2,5,1,900.6666666666666,1118114.466680907,946197.397138757,163788.0934338414,43276.87265556844,3583.879460864529 -8107,10016,18159,18160,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.979006658657991,6.836242015804342,17,12,-8.324026342102531,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.310539464472674,6.667246016959656,62.49,55.09,62.69,33.62,10,1,1,0,0,0,2,2,1,1035,633872.4213741058,322348.0728786924,192741.9466607315,0,2133.482428292979 -8107,10016,18160,18159,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.581900242266783,6.351397337452929,18,-12,-135.951287824558,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.572716336854798,62.69,33.62,62.49,55.09,8.333333333333334,1,1,0,0,0,2,2,1,1035,633872.4213741058,322348.0728786924,192741.9466607315,0,2133.482428292979 -8108,10017,18161,18162,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,42,-7,97.03163784675098,0,2,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,49.92,23.35,46.33,55.93,3.333333333333333,1,1,0,0,0,9,3,1,385,1226716.594925561,656285.2772674977,504580.8046398166,0,2763.966261451089 -8108,10017,18162,18161,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.194893794014122,8.261028856823975,10,7,58.73481271512316,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,3.497099168855513,7.779114153227517,46.33,55.93,49.92,23.35,3.333333333333333,1,1,0,0,0,9,3,1,385,1226716.594925561,656285.2772674977,504580.8046398166,0,2763.966261451089 -8109,10018,18163,-9,18164,-9,1,1,58,0,0,0,2,2,-9,0,3,8.379188171417731,8.539179210865397,6.637105685399543,0,0,-1055.242031095591,0,3,3,2019,7,0,54,49,1,0,0,8.601917909135885,8.601917909135885,0,0,0,0,0,1,1,0,0,7.077276169948485,62.99,44.02,-9,-9,8.333333333333334,1,1,0,0,12,9,5,0,377,512651.2339591545,180079.4492665913,423047.2784357299,72470.10844346818,2411.97213702916 -8109,10019,18164,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.274045109349253,5.530812789341887,0,0,-1067.750633010582,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3923591895290655,5.636874704685854,60.47,46.56,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,1043,532776.6860614056,0,294837.0710974953,0,886.0360059860576 -8110,10020,18165,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.621837447564801,7.543457743160214,0,0,0,-1023.542335465361,-9,3,3,2019,9,0,30,0,1,0,0,6.464434638043513,6.464434638043513,0,0,0,0,0,1,1,0,0,0,60.06,39.82,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,643,150723.3046760305,0,254465.2041624569,15176.11350664161,1239.199963818245 -8111,10021,18166,18167,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.473390842330051,8.083611621038667,0,3,-3,-67.83228739288424,0,2,2,2019,7,0,37,37,1,0,0,16.09716089479154,16.09716089479154,0,0,0,0,0,0,0,0,1.451139942891936,0,54.79,55.86,54.38,41.24,8.333333333333334,1,1,0,0,10,13,4,1,576,121387.7948337627,36305.23781626859,0,0,1873.38570887598 -8111,10021,18167,18166,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.172557042880909,7.241778453503527,0,3,3,-15.61804462726128,0,2,3,2019,12,0,18,20,1,0,0,11.82610814617944,11.82610814617944,0,0,0,0,2,0,0,0,2.211273733633346,0,54.38,41.24,54.79,55.86,8.333333333333334,1,1,0,0,7,13,4,1,576,121387.7948337627,36305.23781626859,0,0,1873.38570887598 -8112,10022,18168,18169,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,8,-5,69.60800412033142,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.096700003404879,0,58.3,52.91,54.72,46.41,8.333333333333334,1,1,0,0,6,12,3,1,1004,906902.8054155734,650256.8568458636,164406.2861614103,0,2118.365070803509 -8112,10022,18169,18168,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.876767551050585,7.239710152563956,8,5,14.59735116265172,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.130990248314717,7.75177204745748,54.72,46.41,58.3,52.91,8.333333333333334,1,1,0,0,5,12,3,1,1004,906902.8054155734,650256.8568458636,164406.2861614103,0,2118.365070803509 -8113,10023,18170,18172,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.423493887284714,8.380352090658574,0,7,3,-12.27504240646129,0,2,2,2019,9,0,37,37,1,1,0,15.19338861564471,15.19338861564471,0,0,0,0,0,1,1,0,0,0,54,55,45.01,57.46,6.666666666666667,1,1,0,0,7,2,5,1,318,669902.1283583596,353605.153003543,456327.5351883951,121583.692669238,3986.576803108886 -8113,10023,18171,-9,18170,18172,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-981.2442935263525,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,318,669902.1283583596,353605.153003543,456327.5351883951,121583.692669238,3986.576803108886 -8113,10023,18172,18170,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.782072650979327,8.892968064775904,0,7,-3,49.18043365869239,0,2,2,2019,13,1,40,40,1,1,0,23.12593769012626,23.12593769012626,0,0,0,0,0,1,1,0,0,0,45.01,57.46,54,55,6.666666666666667,1,1,0,0,7,2,5,1,318,669902.1283583596,353605.153003543,456327.5351883951,121583.692669238,3986.576803108886 -8114,10024,18173,18174,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.670645696585844,7.595170374528148,46,-7,-26.01935086613627,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,6.387262195919122,7.350078026361095,47.15,51.13,52.99,51.28,8.333333333333334,1,1,0,0,0,9,3,1,1272,1362160.319027094,973464.4930344471,396129.3421501621,0,3146.151312529937 -8114,10024,18174,18173,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,6.369505538681224,6.816509344802105,46,7,-48.53710692839357,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,6.762841537560149,6.966824767878372,52.99,51.28,47.15,51.13,10,1,1,0,0,0,9,3,1,1272,1362160.319027094,973464.4930344471,396129.3421501621,0,3146.151312529937 -8115,10025,18175,18176,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,8,-8,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.1,35.96,62.49,55.09,8.333333333333334,1,1,0,0,0,9,1,1,836,51185.43174482875,0,0,0,1525.495811450416 -8115,10025,18176,18175,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,8,8,0,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.1,35.96,6.666666666666667,1,1,0,0,3,9,1,1,836,51185.43174482875,0,0,0,1525.495811450416 -8116,10026,18177,-9,18179,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.943486841751,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,381.6666666666667,279021.1226777147,105981.7081569792,249053.2956535065,115944.3108926657,1964.999189924694 -8116,10026,18178,-9,18179,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.876554475742,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,3,1,381.6666666666667,279021.1226777147,105981.7081569792,249053.2956535065,115944.3108926657,1964.999189924694 -8116,10026,18179,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.306453550654483,7.651137885525486,0,0,0,-1082.73595483544,0,3,3,2019,6,0,37,37,1,0,0,9.958168947883282,9.958168947883282,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,13,3,1,381.6666666666667,279021.1226777147,105981.7081569792,249053.2956535065,115944.3108926657,1964.999189924694 -8117,10027,18180,18182,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,6.84349337903298,7.001974027024828,0,13,0,-65.75307989574242,0,3,3,2019,14,2,35,30,1,2,0,2.915686007473755,2.915686007473755,0,0,0,0,0,1,1,0,0,0,43.86,52.62,45.91,59.89,3.333333333333333,4,2,0,1,12,11,3,1,595.8,496207.7749638975,122977.2289860846,293573.6263389426,50802.88613388243,2001.450825655683 -8117,10027,18181,-9,18182,18180,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.3894437757297,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,11,3,1,595.8,496207.7749638975,122977.2289860846,293573.6263389426,50802.88613388243,2001.450825655683 -8117,10027,18182,18180,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,7.965517491647288,7.855532168074225,0,13,0,37.3658075429576,0,2,2,2019,10,0,8,30,1,0,0,47.45933646302893,47.45933646302893,0,0,0,0,0,1,1,0,4.323686654341142,0,45.91,59.89,43.86,52.62,6.666666666666667,1,1,0,0,12,11,3,1,595.8,496207.7749638975,122977.2289860846,293573.6263389426,50802.88613388243,2001.450825655683 -8117,10027,18183,-9,18182,18180,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1150.052248625812,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,5,-9,0,0,11,3,1,595.8,496207.7749638975,122977.2289860846,293573.6263389426,50802.88613388243,2001.450825655683 -8117,10027,18184,-9,18182,18180,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-921.660317547951,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,595.8,496207.7749638975,122977.2289860846,293573.6263389426,50802.88613388243,2001.450825655683 -8118,10028,18185,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.684670043064079,8.012134992127665,0,0,-1081.549422148166,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.109407253375577,7.766215332474612,53.29,45.74,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,438,703111.4928096957,347059.0662950902,449922.9854591339,0,1755.769331810598 -8119,10029,18186,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,7.859135932034333,8.054712380430196,0,0,-1012.684895000882,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.746973430380033,48.64,34.74,-9,-9,10,1,1,0,0,0,5,3,1,893,404461.9722997926,240416.5406767287,140396.4293304939,0,2098.2081489719 -8119,10030,18187,18188,-9,18186,1,0,57,0,0,0,1,1,-9,0,3,8.526591655762614,8.796666059506853,6.446345805325144,1,3,-154.5290661567845,0,-9,3,2019,7,0,43,43,1,0,0,13.56371826776274,13.56371826776274,0,0,0,0,0,1,1,0,6.985600013199534,0,60.87,44.96,53,54,8.333333333333334,1,1,0,0,8,5,5,1,3157,2209357.861346276,1537545.587484939,314219.3026100796,0,3891.27214940071 -8119,10030,18188,18187,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.162072899063478,7.961922640611366,5.104918528174141,1,-3,-113.7364820235955,-9,-9,-9,2019,9,0,10,0,1,1,0,35.59188628173698,35.59188628173698,0,0,0,0,0,1,1,0,0,5.222950091360448,53,54,60.87,44.96,8,4,1,0,0,1,5,5,1,3157,2209357.861346276,1537545.587484939,314219.3026100796,0,3891.27214940071 -8120,10031,18189,-9,18191,18190,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.708446355727,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,485.25,636106.5272318677,52493.45746616903,414360.0960709518,287382.1355151853,4807.890099169525 -8120,10031,18190,18191,-9,-9,1,1,34,2,2,0,1,1,-9,0,4,8.69218263189857,9.106325254384203,0,8,1,60.49327080713542,0,2,2,2019,11,0,51,60,1,0,0,14.98837621288004,14.98837621288004,0,0,0,0,0,1,1,0,2.767161060554405,0,42.95,61.24,47,57,10,1,1,0,0,11,9,4,1,485.25,636106.5272318677,52493.45746616903,414360.0960709518,287382.1355151853,4807.890099169525 -8120,10031,18191,18190,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.694059259142089,7.511424581261269,0,8,-1,56.23400729275941,0,-9,-9,2019,12,0,30,-9,1,0,0,9.129728366284164,9.129728366284164,0,0,0,0,2,1,1,0,0,0,47,57,42.95,61.24,8.333333333333334,1,1,0,0,9,9,4,1,485.25,636106.5272318677,52493.45746616903,414360.0960709518,287382.1355151853,4807.890099169525 -8120,10031,18192,-9,18191,18190,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-959.6046891116098,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,485.25,636106.5272318677,52493.45746616903,414360.0960709518,287382.1355151853,4807.890099169525 -8121,10032,18193,18194,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,8.597151372287081,8.80151264115718,61,6,60.96251815754088,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.730067763753757,8.81221353580335,54.56,43.56,59.53,56.44,8.333333333333334,1,1,0,0,0,4,4,1,555.5,1398765.56533764,304187.2132215315,355237.9650500813,0,4115.75263006056 -8121,10032,18194,18193,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.917680080680775,7.078394116319076,61,-6,-79.42915738389236,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.165011334738598,6.758854422735657,59.53,56.44,54.56,43.56,8.333333333333334,1,1,0,0,0,4,4,1,555.5,1398765.56533764,304187.2132215315,355237.9650500813,0,4115.75263006056 -8122,10033,18195,18196,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.153612738333971,8.233107588346247,0,9,2,101.4738352172902,0,3,3,2019,10,0,39,38,1,1,0,11.48132171128285,11.48132171128285,0,0,0,0,0,1,1,0,0,0,51,49,25.83,22.39,7,1,1,0,0,1,5,4,1,383,1611752.662000253,1443519.567686981,298173.5887503187,0,2441.692363055604 -8122,10033,18196,18195,-9,-9,1,0,58,0,0,0,1,1,-9,0,1,0,7.277541177559154,7.618457088144594,9,-2,-14.6837980616521,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.94838676294023,25.83,22.39,51,49,3.333333333333333,1,1,0,0,0,5,4,1,383,1611752.662000253,1443519.567686981,298173.5887503187,0,2441.692363055604 -8123,10034,18197,18198,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,42,2,5.046033328923363,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,49.79527985189608,0,0,1,1,0,0,0,61.19,18.15,58.7,46.46,10,1,1,0,0,0,1,2,0,576.5,808605.7383183967,120398.5240369025,404744.0153620287,0,2055.133064714146 -8123,10034,18198,18197,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.989143063964034,5.980790981680729,42,-2,88.34198889129567,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.137126106195846,58.7,46.46,61.19,18.15,10,1,1,0,0,0,1,2,0,576.5,808605.7383183967,120398.5240369025,404744.0153620287,0,2055.133064714146 -8124,10035,18199,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-935.4643978183724,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.2,37.12,-9,-9,10,1,1,0,0,0,12,1,0,1812,-768.8041726222,0,93440.3953135684,0,959.3932485607983 -8124,10036,18200,-9,18199,-9,1,1,47,0,0,0,2,2,-9,0,4,8.399163042079239,8.264548044856463,0,0,0,-960.8996560479609,0,3,-9,2019,9,0,37,38,1,0,0,12.15542731434656,12.15542731434656,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,736,-56445.51498157099,141009.9595752545,0,0,1383.98644364889 -8125,10037,18201,18202,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.530589171880854,6.321501940523368,44,-11,84.50610707983053,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.55238420717174,6.350047364364743,45.58,42.43,53,47,1.666666666666667,1,1,0,0,6,13,2,1,705.5,457999.6622006464,237817.7582067219,155489.8493595864,0,775.3477657012579 -8125,10037,18202,18201,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,44,11,-73.92978554306207,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,45.58,42.43,7,1,1,0,0,0,13,2,1,705.5,457999.6622006464,237817.7582067219,155489.8493595864,0,775.3477657012579 -8126,10038,18203,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.050846912941867,6.86612709373604,0,0,-1043.170673134662,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,.4622113975184905,0,0,1,1,0,6.958976307472325,4.966532632818578,54.71,27.51,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,884,851759.6346618971,122199.2314336477,689652.2801267984,0,840.8951920009736 -8126,10039,18204,-9,-9,18203,1,0,40,0,0,0,1,1,-9,0,4,8.053459717114647,7.953592544819869,0,0,0,-950.4616812197726,-9,-9,1,2019,10,0,40,0,1,1,0,8.843987766082165,8.843987766082165,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,7,2,3,0,0,1,8,4,1,726,705111.7962735669,351812.4116322586,184826.9169547787,0,1144.958182215829 -8127,10040,18205,18207,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,0,0,0,1,-1,84.75757088126032,-9,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,52,54.51,6.666666666666667,1,1,0,0,6,13,4,1,701,1017625.150534629,636332.5443409926,233677.6304233505,29250.2837747459,2694.970566020029 -8127,10040,18206,-9,18205,18207,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.5112974387489,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,701,1017625.150534629,636332.5443409926,233677.6304233505,29250.2837747459,2694.970566020029 -8127,10040,18207,18205,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.625385417162093,8.782561411203531,0,1,1,-24.76723688376037,-9,2,1,2019,12,1,40,0,1,1,0,18.79278444210116,18.79278444210116,0,0,0,0,0,1,1,0,.3651187367351715,0,52,54.51,40.75,58.26,8.333333333333334,1,1,0,0,7,13,4,1,701,1017625.150534629,636332.5443409926,233677.6304233505,29250.2837747459,2694.970566020029 -8128,10041,18208,-9,18210,18209,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.919167300485,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,408.3333333333333,102609.0768659365,-36584.72969538108,218576.8588014963,61642.8460212679,3555.64303526298 -8128,10041,18209,18210,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.809179516078123,8.767201194753783,0,4,0,100.2250287827476,0,-9,-9,2019,21,9,60,60,1,9,0,13.99945622172452,13.99945622172452,0,0,0,0,0,1,1,0,0,0,27.55,49.48,28.22,53.37,1.666666666666667,1,1,0,0,12,11,5,1,408.3333333333333,102609.0768659365,-36584.72969538108,218576.8588014963,61642.8460212679,3555.64303526298 -8128,10041,18210,18209,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,7.66542633744641,7.621479526958846,0,4,0,-38.70588543092172,0,-9,-9,2019,24,11,30,32,1,11,0,9.316263126089206,9.316263126089206,0,0,0,0,0,1,1,0,0,0,28.22,53.37,27.55,49.48,1.666666666666667,1,1,0,0,12,11,5,1,408.3333333333333,102609.0768659365,-36584.72969538108,218576.8588014963,61642.8460212679,3555.64303526298 -8128,10042,18211,-9,18210,-9,1,0,19,0,1,0,2,2,-9,0,4,7.168553435852987,6.702655677189806,0,0,0,-1020.497458239896,0,2,-9,2019,14,2,25,24,1,2,1,6.102246666218456,6.102246666218456,0,0,0,0,0,1,1,0,0,0,39.98,56.01,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,303,115519.6644450871,0,0,0,786.8234484193629 -8129,10043,18212,18213,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.459779059774978,7.607498109441589,51,2,18.11070331663801,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.660933095138063,7.779871647217023,47.27,53.93,60.14,38.88,8.333333333333334,2,3,0,0,0,8,2,1,290,994889.7450200994,269221.4927079284,514417.9816656198,0,2104.220124411006 -8129,10043,18213,18212,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,51,-2,-68.27745485093747,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.892436283867232,0,60.14,38.88,47.27,53.93,10,2,3,0,0,0,8,2,1,290,994889.7450200994,269221.4927079284,514417.9816656198,0,2104.220124411006 -8130,10044,18214,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.635483979702326,7.796930344227329,0,0,-1149.307963339654,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.452148045363021,50.8,56.4,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,812,745162.3373792369,352040.5864111509,92935.9783922839,0,1997.736610951567 -8131,10045,18215,-9,18217,18218,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.8109920899918,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,0,971.4,1617902.129165544,1227861.264702971,554504.0289423646,204996.0289671333,4447.377984040404 -8131,10045,18216,-9,18217,18218,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.308898606139,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,0,971.4,1617902.129165544,1227861.264702971,554504.0289423646,204996.0289671333,4447.377984040404 -8131,10045,18217,18218,-9,-9,1,0,33,0,3,0,2,2,-9,1,3,7.575525256052055,7.174612482433099,0,9,-13,-112.7672286142363,0,1,1,2019,28,12,32,32,1,12,0,6.848967977622111,6.848967977622111,0,0,0,0,0,1,1,0,0,0,14.55,66.55,35.23,20.85,6.666666666666667,1,1,0,0,10,1,4,0,971.4,1617902.129165544,1227861.264702971,554504.0289423646,204996.0289671333,4447.377984040404 -8131,10045,18218,18217,-9,-9,1,1,46,0,3,0,1,1,-9,0,1,8.83443804153349,8.732301572602593,0,9,13,77.13990341291017,0,2,2,2019,24,11,35,0,1,11,0,29.99947469404491,29.99947469404491,0,0,0,0,27,1,1,0,0,0,35.23,20.85,14.55,66.55,1.666666666666667,1,1,0,0,3,1,4,0,971.4,1617902.129165544,1227861.264702971,554504.0289423646,204996.0289671333,4447.377984040404 -8131,10045,18219,-9,18217,18218,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.669105921599,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,0,971.4,1617902.129165544,1227861.264702971,554504.0289423646,204996.0289671333,4447.377984040404 -8131,10046,18220,-9,18217,18218,1,1,18,0,3,0,2,2,1,0,1,0,0,0,0,0,-1007.896585546891,-9,2,1,2019,20,0,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,13.6,47.21,-9,-9,5,1,1,1,0,0,1,1,0,574,-32983.1651719406,0,0,0,0 -8132,10047,18221,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.661761744121667,5.431336979462921,0,0,-1005.884821442905,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.80391611980594,5.566355819062255,58.96,36.48,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,299,216684.3136995038,94515.25534569522,64740.36593911996,0,1415.468658573266 -8133,10048,18222,18223,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.025740402385178,7.873678406770082,0,28,-3,-16.48227892824109,0,1,2,2019,12,1,21,42,1,1,0,21.53399165634001,21.53399165634001,0,0,0,0,7,0,0,0,0,0,54.21,14.79,50.41,46.95,8.333333333333334,1,1,0,0,13,9,3,1,1338.5,631425.4384082775,167529.5553661921,417641.2362288443,24477.39001423027,1178.870530330457 -8133,10048,18223,18222,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,28,3,41.41151554033168,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.41,46.95,54.21,14.79,8.333333333333334,1,1,0,0,7,9,3,1,1338.5,631425.4384082775,167529.5553661921,417641.2362288443,24477.39001423027,1178.870530330457 -8134,10049,18224,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.709660719345308,7.799364116996706,0,0,0,-984.2305948289572,0,-9,-9,2019,6,0,50,50,1,0,0,7.904550244668775,7.904550244668775,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,7,9,4,0,4578,90463.42657349291,-17398.78237007417,0,0,1066.933133297797 -8135,10050,18225,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.190722091818731,7.353135541567144,0,0,-1031.446060935853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.774450397227151,7.633358530059785,57.16,56.15,-9,-9,10,1,1,0,0,7,2,3,1,550,462639.8933925149,64520.29096085672,215147.2703559047,0,1937.595102769438 -8136,10051,18226,-9,-9,-9,1,1,20,0,2,0,2,2,1,1,2,0,0,0,0,0,-966.6335913349294,-9,2,-9,2019,26,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,21.67,46.94,-9,-9,1.666666666666667,1,1,1,1,1,5,1,0,887,142290.3949007906,0,0,0,81.70581595360963 -8137,10052,18227,18228,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.07022563624886,7.764430080000698,0,19,11,-64.65467205876166,0,3,2,2019,12,1,40,35,1,1,0,7.992659073951857,7.992659073951857,0,0,0,0,2,1,1,0,0,0,47.27,48.4,52.6,54.35,6.666666666666667,2,3,0,0,11,4,3,1,1350,-119075.3668854239,0,0,0,1737.286526128829 -8137,10052,18228,18227,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,19,-11,-128.4791867032968,0,3,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,54.35,47.27,48.4,8.333333333333334,2,3,0,0,0,4,3,1,1350,-119075.3668854239,0,0,0,1737.286526128829 -8137,10052,18229,-9,18228,18227,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.1929148517324,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,1350,-119075.3668854239,0,0,0,1737.286526128829 -8137,10052,18230,-9,18228,18227,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-957.1125960941087,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,3,1,1350,-119075.3668854239,0,0,0,1737.286526128829 -8138,10053,18231,-9,18233,18232,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.083697954094,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1152.666666666667,126578.3358847558,43727.9981304449,88955.50270487809,58471.15424998537,2113.590987756138 -8138,10053,18232,18233,-9,-9,1,1,49,1,2,0,3,3,-9,0,4,8.306485229784972,8.156121767206653,0,17,6,-168.4561052528828,0,2,2,2019,9,0,44,40,1,0,0,9.319734611425702,9.319734611425702,0,0,0,0,0,1,0,1,0,0,48.87,58.55,51.79,38.47,3.333333333333333,1,1,0,0,9,5,3,1,1152.666666666667,126578.3358847558,43727.9981304449,88955.50270487809,58471.15424998537,2113.590987756138 -8138,10053,18233,18232,-9,-9,1,0,43,1,2,0,2,2,-9,0,4,7.15996134117888,7.381624552604706,0,17,-6,-107.7232611107948,0,-9,-9,2019,10,1,22,22,1,1,0,7.714243657382911,7.714243657382911,0,0,0,0,0,1,0,1,0,0,51.79,38.47,48.87,58.55,5,1,1,0,0,11,5,3,1,1152.666666666667,126578.3358847558,43727.9981304449,88955.50270487809,58471.15424998537,2113.590987756138 -8139,10054,18234,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.607365724651036,5.488430663425779,0,0,-949.5808922927708,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.564845000942798,34.17,58.8,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,239,232438.2155498996,0,0,0,737.0983309868215 -8140,10055,18235,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.418675227472965,6.083686882297346,0,0,-838.1264219419692,0,3,3,2019,25,9,0,0,4,9,0,0,0,1,7.599853678152336,0,68.4602865654269,0,1,1,0,2.006707931783895,6.330668079959572,46.69,19.29,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,686,174840.6704383056,69975.08685569806,0,0,1329.318191015703 -8141,10056,18236,-9,18237,18238,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.8465165328757,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,449.5,90747.11845096285,10190.2250138702,187201.5896746095,129301.7871391787,3313.695947590646 -8141,10056,18237,18238,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.273747479259745,7.33977000948606,0,12,2,-4.546870402703951,0,2,2,2019,10,0,20,18,1,0,0,6.660599246339173,6.660599246339173,0,0,0,0,0,1,1,0,0,0,51.24,58.84,64.55,36.47,8.333333333333334,1,1,0,0,1,6,4,1,449.5,90747.11845096285,10190.2250138702,187201.5896746095,129301.7871391787,3313.695947590646 -8141,10056,18238,18237,-9,-9,1,1,30,0,2,0,1,1,-9,0,3,8.847334024875439,8.823193426109333,0,13,-2,-54.85502641040905,0,2,2,2019,8,0,48,54,1,0,0,15.21518049999629,15.21518049999629,0,0,0,0,0,1,1,0,1.565920602630087,0,64.55,36.47,51.24,58.84,6.666666666666667,1,1,0,0,8,6,4,1,449.5,90747.11845096285,10190.2250138702,187201.5896746095,129301.7871391787,3313.695947590646 -8141,10056,18239,-9,18237,18238,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.287333239175,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,449.5,90747.11845096285,10190.2250138702,187201.5896746095,129301.7871391787,3313.695947590646 -8142,10057,18240,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.58935152964918,9.570771412318702,0,0,0,-947.3973785414148,0,3,3,2019,8,0,40,40,1,0,0,45.03691634027659,45.03691634027659,0,0,0,0,0,0,0,0,8.490176490724446,0,44.78,56.37,-9,-9,5,1,1,0,0,10,12,5,1,249,264590.1742168166,-6837.874882458695,170597.8701940209,133511.0985731884,7711.23665754657 -8143,10058,18241,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,0,0,-976.8811434817259,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,-9,-9,5,1,1,0,0,0,13,1,0,181,231740.9867487404,0,0,0,760.4816754839278 -8143,10059,18242,-9,18241,-9,1,1,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1007.016518386316,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,39.08,57.81,-9,-9,5,1,1,1,0,0,13,1,0,738,-80390.71399542454,0,0,0,239.7672405639365 -8144,10060,18243,18244,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.846172898906833,9.128310951868505,0,24,-4,38.14115783276958,0,2,2,2019,8,0,41,44,1,0,0,21.18356659233219,21.18356659233219,0,0,0,0,2,1,1,0,0,0,55.44,52.99,57.34,47.92,8.333333333333334,1,1,0,0,11,13,5,1,227.5,1470838.988981101,1102937.12326633,505698.4161207885,87013.86374445839,3249.305138878688 -8144,10060,18244,18243,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.500159129220634,7.117456265911361,0,21,4,-115.1105353341898,0,2,3,2019,9,0,12,14,1,0,0,20.64942102904223,20.64942102904223,0,0,0,.5422914427756158,0,1,1,0,0,0,57.34,47.92,55.44,52.99,8.333333333333334,1,1,0,0,11,13,5,1,227.5,1470838.988981101,1102937.12326633,505698.4161207885,87013.86374445839,3249.305138878688 -8144,10061,18245,-9,18244,18243,1,1,18,0,0,0,2,2,1,0,4,7.224654559370744,7.324628752832923,0,0,0,-1105.047621668078,-9,2,1,2019,9,0,15,0,1,0,1,9.530286518093245,9.530286518093245,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,235,-25811.5737292868,0,0,0,1010.830502146363 -8145,10062,18246,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.494875817691203,5.162241719110028,0,0,-941.8058783801067,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,14.20889644994471,0,143.5371153203021,0,1,1,0,3.040211399031786,5.323004591910149,65.23,38.89,-9,-9,10,1,1,0,0,0,2,2,1,1069,173002.3453284569,-48736.77474986827,173807.2136388538,0,520.3988081076293 -8145,10063,18247,-9,-9,18246,1,1,57,0,0,0,2,2,-9,0,4,8.014219429628456,8.140133973657822,6.068913565472422,0,0,-1083.877660006886,0,-9,3,2019,6,0,39,39,1,0,0,6.786760696739671,6.786760696739671,0,0,0,0,2,1,1,0,4.370188185828174,6.034551047170918,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,272,19597.11855907318,-5808.708550256531,0,0,1311.766106978342 -8146,10064,18248,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.011756486755637,7.996806216624636,6.032342249244747,0,0,-1053.888228982266,0,3,3,2019,8,0,35,50,1,0,0,7.454313746759914,7.454313746759914,0,0,0,0,0,1,1,0,6.258454948959116,6.16541742672882,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,153,21853.66884032465,25715.71240394539,177262.5307453982,0,2179.452989519249 -8147,10065,18249,-9,18251,18250,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.3933798670096,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,1639.666666666667,531071.7933620432,412647.9313895835,247182.4713855748,100194.3706319326,2920.640041152542 -8147,10065,18250,18251,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.842512768072179,8.767350707132209,0,8,5,84.52024590190479,0,2,2,2019,6,0,46,44,1,0,0,11.81708337543136,11.81708337543136,0,0,0,0,0,1,1,0,.3725121777764436,0,57.16,56.15,35.22,57.51,8.333333333333334,1,1,0,0,10,6,4,1,1639.666666666667,531071.7933620432,412647.9313895835,247182.4713855748,100194.3706319326,2920.640041152542 -8147,10065,18251,18250,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.027767489071386,6.925619642535599,0,8,-5,119.3398512167097,0,3,3,2019,13,1,10,10,1,1,0,11.79806385265853,11.79806385265853,0,0,0,0,0,1,1,0,0,0,35.22,57.51,57.16,56.15,8.333333333333334,1,1,0,0,10,6,4,1,1639.666666666667,531071.7933620432,412647.9313895835,247182.4713855748,100194.3706319326,2920.640041152542 -8148,10066,18252,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-920.4010344200194,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,1,0,7,1,1,0,158,-133980.1216651721,0,0,0,0 -8149,10067,18253,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.005671394646681,7.689159430464373,0,0,-993.0631879405921,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.991072791204852,7.957520404396438,62.39,56.71,-9,-9,10,1,1,0,0,4,12,4,0,1056,659471.8981409379,466787.6083286504,25781.37726668388,0,2305.848925952071 -8150,10068,18254,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,7.960405999082324,7.913717590100488,0,0,0,-962.9811876144663,0,2,-9,2019,25,12,37,37,1,12,0,9.374477454507694,9.374477454507694,0,0,0,0,0,1,1,0,0,0,28.22,38.56,-9,-9,3.333333333333333,1,1,0,0,10,6,4,0,708,-2064.394136881547,119245.8938908435,0,0,1852.56555225214 -8151,10069,18255,18256,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,44,-8,0,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,52,47,7,1,1,0,0,0,2,1,0,478,26611.93535783515,0,129797.2466632873,29241.50826208214,1018.054261748819 -8151,10069,18256,18255,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,44,8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,49,47,7,1,1,0,0,2,2,1,0,478,26611.93535783515,0,129797.2466632873,29241.50826208214,1018.054261748819 -8152,10070,18257,18258,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,8.131374617411231,8.354125759634341,0,6,0,16.78660607545707,0,2,2,2019,6,0,40,40,1,0,0,14.79412782343355,14.79412782343355,0,0,0,0,0,1,1,0,0,0,45.81,61.51,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,697.6666666666666,139774.3350358146,43535.49009850227,157584.0355223885,84551.54697920558,3227.51410880709 -8152,10070,18258,18257,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.036390831288873,7.973357587057058,0,2,0,170.8371480917696,0,-9,3,2019,12,0,39,40,1,0,0,9.396696885586131,9.396696885586131,0,0,0,0,2,1,1,0,0,0,49.04,55.86,45.81,61.51,5,1,1,0,0,11,4,4,1,697.6666666666666,139774.3350358146,43535.49009850227,157584.0355223885,84551.54697920558,3227.51410880709 -8152,10070,18259,-9,18257,18258,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.0906405854416,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,697.6666666666666,139774.3350358146,43535.49009850227,157584.0355223885,84551.54697920558,3227.51410880709 -8153,10071,18260,-9,-9,18263,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1066.117922975238,0,2,2,2019,11,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,2.062320961636571,0,54.2,57.49,-9,-9,5,3,4,1,0,11,8,1,1,394,-84570.17594186751,0,0,0,742.1075956319715 -8153,10072,18261,-9,-9,18260,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1114.586373180625,0,2,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,-9,-9,5,3,4,0,0,0,8,1,1,432,0,0,0,0,877.8737926347121 -8153,10073,18262,-9,-9,18260,1,1,31,0,0,0,2,2,-9,0,4,7.746128489275937,7.855963094951648,0,0,0,-1091.88555456365,0,2,2,2019,10,0,35,35,1,0,1,6.907066505840673,6.907066505840673,0,0,0,0,0,1,1,0,0,0,43.92,59.79,-9,-9,5,3,4,0,0,0,8,3,1,69,0,0,0,0,1265.807166328227 -8153,10074,18263,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-909.183322072895,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,3.109011351145366,0,1,1,0,0,0,47.53,45.46,-9,-9,5,3,4,0,0,0,8,1,1,1254,-109716.7315065483,0,0,0,296.0617776002621 -8154,10075,18264,18265,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.778800628051402,7.714364906320993,49,-2,-25.88660800480498,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.083791637663636,7.750251645957522,60.86,50.49,64.55,36.47,8.333333333333334,1,1,0,0,0,4,4,1,1260,2352639.358560576,688787.7506114753,415841.0038219367,0,3626.909657847204 -8154,10075,18265,18264,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.379238596059249,8.226307982429224,49,2,131.4323753936067,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.296589454540238,8.298264001239556,64.55,36.47,60.86,50.49,8.333333333333334,1,1,0,0,0,4,4,1,1260,2352639.358560576,688787.7506114753,415841.0038219367,0,3626.909657847204 -8155,10076,18266,18268,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.971508479820276,7.86951858214993,0,11,2,-150.7143577198717,0,-9,-9,2019,21,9,35,35,1,9,0,7.113927558903749,7.113927558903749,0,0,0,0,2,1,1,0,0,0,40.97,32.79,43.03,53.23,6.666666666666667,1,1,0,0,12,10,4,1,579,941352.1062181215,817687.8034171378,132608.0469551787,87352.69625159533,2557.024642230446 -8155,10076,18267,-9,18268,18266,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.2197197576,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,1.158825731795854,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,579,941352.1062181215,817687.8034171378,132608.0469551787,87352.69625159533,2557.024642230446 -8155,10076,18268,18266,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.09916826811825,7.925861252540422,0,18,-2,81.63136698935591,0,2,3,2019,20,8,80,53,1,8,0,4.020463576271135,4.020463576271135,0,0,0,0,0,1,1,0,0,0,43.03,53.23,40.97,32.79,6.666666666666667,1,1,0,0,12,10,4,1,579,941352.1062181215,817687.8034171378,132608.0469551787,87352.69625159533,2557.024642230446 -8155,10077,18269,-9,18268,18266,1,1,20,0,1,0,1,1,-9,0,3,7.585570833632361,7.684303356621583,0,0,0,-1003.101879570378,0,2,2,2019,7,1,43,43,1,1,1,5.545564100102399,5.545564100102399,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,56,-10330.53611418925,0,0,0,589.8749362957097 -8156,10078,18270,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.488788385808643,8.032384237189705,0,0,0,-1015.933315818563,0,-9,2,2019,19,7,37,37,1,7,0,13.85394918329113,13.85394918329113,0,0,0,0,0,0,0,0,0,0,25.1,50.97,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,308,194361.6965435654,220232.0283361927,0,0,1239.641901453884 -8157,10079,18271,18272,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.481314044095679,8.661709406698634,0,19,-7,-61.68660538003881,0,2,3,2019,9,0,38,38,1,0,0,21.76281138499224,21.76281138499224,0,0,0,0,0,0,0,0,2.561078250714711,0,47.49,55.02,39.14,37.02,8.333333333333334,1,1,0,0,11,1,5,1,213,119695.6107549189,107298.7398753687,0,0,6259.829957416023 -8157,10079,18272,18271,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.234938485799933,8.902928477557603,0,20,7,-84.02011528084147,0,2,2,2019,19,9,48,46,1,9,0,22.4313143358624,22.4313143358624,0,0,0,0,0,0,0,0,7.836404700481857,0,39.14,37.02,47.49,55.02,3.333333333333333,1,1,0,0,11,1,5,1,213,119695.6107549189,107298.7398753687,0,0,6259.829957416023 -8158,10080,18273,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.755727620793902,5.917427537498098,0,0,-1023.401295841034,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.01990806651022,6.024988558316807,53.55,41.96,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,581,5599.773025245988,202023.1176703462,51708.61283107953,0,1682.477722051741 -8159,10081,18274,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.241063567094351,6.130834686237473,0,0,-1055.579663579296,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.686189400074515,57.66,45.08,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1335,440786.2668926041,59842.86966686289,260636.0916310763,0,1103.207147007069 -8160,10082,18275,18276,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.088076492805505,5.928503718415773,46,3,-90.71293856727924,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.275704538510134,5.725491227260338,63.64,43.84,43.42,62.33,0,1,1,0,0,8,5,2,1,937.5,910929.5005362909,257960.4216934791,418216.0055440451,0,4573.950497519403 -8160,10082,18276,18275,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.198781557216402,6.491365416671275,46,-3,-18.91628235738347,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.199240576580564,7.042263301013102,43.42,62.33,63.64,43.84,6.666666666666667,1,1,0,0,0,5,2,1,937.5,910929.5005362909,257960.4216934791,418216.0055440451,0,4573.950497519403 -8161,10083,18277,18278,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.254890929530406,9.371393771158573,0,2,5,83.03976034266198,0,2,2,2019,22,11,45,50,1,11,0,30.82412245540127,30.82412245540127,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,25.08,62.98,6.666666666666667,1,1,0,0,9,7,5,1,841.5,3514500.054527871,3023065.213836055,1033838.392768262,363763.7571023214,6777.737837841896 -8161,10083,18278,18277,-9,-9,1,0,37,0,0,0,3,3,-9,0,3,8.723181295329244,8.590950281294017,0,2,-5,-87.41601921476877,-9,-9,-9,2019,24,10,40,0,1,10,0,16.37775998091551,16.37775998091551,0,0,0,0,0,0,0,0,7.908350637813014,0,25.08,62.98,22.48,66.73999999999999,3.333333333333333,1,1,0,0,2,7,5,1,841.5,3514500.054527871,3023065.213836055,1033838.392768262,363763.7571023214,6777.737837841896 -8162,10084,18279,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1030.290079146399,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,37.01784613904087,0,0,1,1,0,0,0,32.96,27.18,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,610,8997.199236018407,0,0,0,2479.348579935245 -8163,10085,18280,-9,18282,18281,1,1,20,0,0,0,2,2,-9,0,4,7.244385877797368,6.946555409974507,0,0,0,-1041.822443175903,0,2,2,2019,8,0,16,16,1,0,1,10.68179871480622,10.68179871480622,0,0,0,0,0,0,0,0,0,0,55.36,54.24,-9,-9,10,1,1,0,0,2,1,2,1,496,142370.1920150118,0,0,0,723.9514274974218 -8163,10086,18281,18282,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.506135901155236,8.366774703007787,0,6,2,-15.52539123578723,0,-9,-9,2019,18,7,40,40,1,7,0,12.02475679795193,12.02475679795193,0,0,0,0,0,0,0,0,3.968979100917112,0,41.53,63.13,46.08,57.2,8.333333333333334,1,1,0,0,9,1,4,1,187,457835.3721951667,191457.8113667063,214094.7631704497,56392.0073989057,2645.792664700605 -8163,10086,18282,18281,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.847388236250105,7.832213640542007,0,6,-2,-39.95022414281165,0,-9,2,2019,13,4,17,18,1,4,0,13.41412724793746,13.41412724793746,0,0,0,0,7,0,0,0,0,0,46.08,57.2,41.53,63.13,1.666666666666667,1,1,0,0,7,1,4,1,187,457835.3721951667,191457.8113667063,214094.7631704497,56392.0073989057,2645.792664700605 -8164,10087,18283,18284,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.125754415053366,7.270408344017195,0,5,1,63.60034299979325,0,-9,-9,2019,6,0,24,18,1,0,0,5.528896383420208,5.528896383420208,0,0,0,0,0,1,1,0,0,0,48.45,57.21,43.23,41.93,10,1,1,0,0,2,9,3,0,1487,250089.4365207818,33607.72841023885,315914.2509817579,100305.368343924,2056.777292838453 -8164,10087,18284,18283,-9,-9,1,1,24,1,2,0,2,2,-9,0,3,8.444379345853751,8.271829391634778,0,5,-1,81.5206175529548,0,2,2,2019,12,3,45,50,1,3,0,6.917350720147871,6.917350720147871,0,0,0,0,0,1,1,0,0,0,43.23,41.93,48.45,57.21,6.666666666666667,1,1,0,0,6,9,3,0,1487,250089.4365207818,33607.72841023885,315914.2509817579,100305.368343924,2056.777292838453 -8164,10087,18285,-9,18283,18284,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.8479058717686,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,1487,250089.4365207818,33607.72841023885,315914.2509817579,100305.368343924,2056.777292838453 -8164,10087,18286,-9,18283,18284,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.449194793929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1487,250089.4365207818,33607.72841023885,315914.2509817579,100305.368343924,2056.777292838453 -8165,10088,18287,18288,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.225067700845345,8.352877536473011,0,2,1,-10.23974149824815,0,2,2,2019,11,0,30,25,1,0,0,18.0103020210956,18.0103020210956,0,0,0,0,0,0,0,0,0,0,33.43,59.21,49,56,6.666666666666667,1,1,0,0,8,2,4,0,842,-35262.35457589361,-41248.7158310456,50265.86508937793,58272.2852959888,2984.484479413543 -8165,10088,18288,18287,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.022053421750496,7.833647742256156,0,2,-1,33.58542364880758,0,-9,-9,2019,11,0,35,36,1,2,0,12.27674665611959,12.27674665611959,0,0,0,0,0,0,0,0,0,0,49,56,33.43,59.21,7,1,1,0,0,1,2,4,0,842,-35262.35457589361,-41248.7158310456,50265.86508937793,58272.2852959888,2984.484479413543 -8166,10089,18289,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.818799482659047,8.719837722743792,0,0,0,-977.2145468185058,0,-9,-9,2019,11,0,37,37,1,0,0,26.07556172320924,26.07556172320924,0,0,0,0,0,1,1,0,0,0,44.77,44.73,-9,-9,3.333333333333333,1,1,0,0,11,6,5,0,721,466012.8897080144,221612.5828069559,80619.87734673891,0,2544.029455915484 -8167,10090,18290,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.20154069009898,8.13377508320586,0,0,0,-1107.747678988361,0,-9,-9,2019,34,12,41,25,1,12,1,12.42110701743647,12.42110701743647,0,0,0,0,0,1,1,0,0,0,5.48,58.5,-9,-9,0,1,1,0,0,6,9,4,0,516,40419.43911752943,-81504.71652479694,0,0,1194.507753505829 -8168,10091,18291,18292,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.282395212782002,6.246730792219644,60,1,-98.87435009755313,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.553245100288371,5.944628335184048,55,45,53,45,8,1,1,0,0,0,4,2,1,1540,505442.7218451818,53199.47437341378,302612.6060824415,0,465.0291040811268 -8168,10091,18292,18291,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-1,23.42139213873867,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,4,2,1,1540,505442.7218451818,53199.47437341378,302612.6060824415,0,465.0291040811268 -8169,10092,18293,18294,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,10,2,132.0287636307309,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,49,47,6.666666666666667,1,1,0,0,0,13,2,1,361.5,245947.112641561,173753.5375885854,129247.2816239635,8087.99639631264,1678.056476798597 -8169,10092,18294,18293,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.651279447859926,6.734777598286072,10,-2,8.074684176916371,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.674659497058326,49,47,49.46,56.91,6.666666666666667,1,1,0,0,0,13,2,1,361.5,245947.112641561,173753.5375885854,129247.2816239635,8087.99639631264,1678.056476798597 -8170,10093,18295,18296,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,10,4,41.23906335679562,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.4,41.83,60.02,56.42,8.333333333333334,1,1,0,0,0,9,4,1,1404.5,1379070.847791862,957181.1244074063,509410.0992843013,0,2059.131112656323 -8170,10093,18296,18295,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,8.370904977478606,8.519644179314634,0,10,-4,-19.43341228409204,0,3,3,2019,6,0,50,63,1,0,0,10.42200421603846,10.42200421603846,0,0,0,0,0,0,0,0,0,0,60.02,56.42,47.4,41.83,8.333333333333334,1,1,0,0,11,9,4,1,1404.5,1379070.847791862,957181.1244074063,509410.0992843013,0,2059.131112656323 -8171,10094,18297,18298,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.178806795559906,8.160433953043723,47,2,39.0536049786722,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.93004776736421,54.25,43.85,48.83,43.99,0,4,2,0,0,0,10,4,1,177.5,633493.8810816039,360685.0302400829,221681.1167260026,0,3336.643003922577 -8171,10094,18298,18297,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,6.869414982685201,6.802121716709594,0,2,-2,-4.339221315565204,0,2,2,2019,11,0,8,8,1,0,0,13.02322168853714,13.02322168853714,1,0,5.516871064225173,0,0,1,1,0,4.662843014934589,0,48.83,43.99,54.25,43.85,1.666666666666667,1,1,0,0,11,10,4,1,177.5,633493.8810816039,360685.0302400829,221681.1167260026,0,3336.643003922577 -8172,10095,18299,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.979783445378471,7.235416631196363,10,5,166.3651404777306,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.457579522767185,7.51707513032688,62.49,55.09,61.66,49.96,10,1,1,0,0,2,4,3,1,927,769964.8122472867,519278.0428355186,155437.7754986316,0,1079.091551515308 -8172,10096,18300,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,7.552016535268019,7.565905949473966,10,-5,76.25160707517546,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.354634131922952,7.691392098016752,61.66,49.96,62.49,55.09,10,1,1,0,0,6,4,3,1,138,-145890.7740114802,-95201.84836380076,0,0,1465.544141800353 -8173,10097,18301,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1045.789155712011,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,25.95,58.73,-9,-9,5,1,1,0,1,5,13,1,1,431,89568.72020549305,-80858.5678915883,0,0,153.8764237858423 -8173,10098,18302,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1171.8160585854,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.608715378662357,7.252575685747111,64.08578394182847,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,1023,0,0,0,0,1302.221062026518 -8174,10099,18303,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.38164756897252,8.390911299681015,0,0,0,-1056.812872844853,0,2,3,2019,8,0,47,43,1,0,0,9.751606209630562,9.751606209630562,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,1563,347001.8679873013,108547.0295851541,0,0,1414.132655794374 -8175,10100,18304,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.090809875036722,7.889966531900565,6.478721663672314,0,0,-984.3782860834101,0,3,2,2019,16,5,40,40,1,5,0,8.99964520631999,8.99964520631999,0,0,0,0,0,0,0,0,6.424475802683027,6.572050868832464,37.25,51.69,-9,-9,6.666666666666667,4,2,0,0,9,6,4,1,1698,-66922.64568196626,90844.01740417672,0,0,2157.087215377701 -8176,10101,18305,18307,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,1,8,0,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,53,46,50,47,8,1,1,0,0,0,13,1,0,594.3333333333334,146004.7563289015,0,112461.3797326287,0,4047.467595643592 -8176,10101,18306,-9,18307,18305,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1027.737203941498,-9,-9,-9,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,27,1,0,1,0,0,51.35,57.51,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,594.3333333333334,146004.7563289015,0,112461.3797326287,0,4047.467595643592 -8176,10101,18307,18305,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,1,-8,0,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,0,1,0,0,50,47,53,46,7,1,1,0,0,0,13,1,0,594.3333333333334,146004.7563289015,0,112461.3797326287,0,4047.467595643592 -8177,10102,18308,18309,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.360544245158489,7.63519004666977,0,13,-12,82.6862004447631,0,3,3,2019,10,0,32,32,1,1,0,6.068417590144032,6.068417590144032,0,0,0,0,0,1,1,0,0,0,50,55,50,49,8,2,3,0,1,12,8,2,0,221.5,584567.3809414746,149868.9646582945,503361.5491760942,112411.1652657899,3129.325768453012 -8177,10102,18309,18308,-9,-9,1,1,60,0,2,0,2,2,-9,1,3,0,0,0,13,12,-150.3378820946367,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,50,55,7,2,3,0,1,2,8,2,0,221.5,584567.3809414746,149868.9646582945,503361.5491760942,112411.1652657899,3129.325768453012 -8178,10103,18310,18311,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,12,-7,-120.4134458418315,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,47.58,57.57,43.81,8.333333333333334,2,3,0,0,0,2,3,1,433.25,144321.0993453745,133119.7484585383,176273.7326737182,139922.720025654,2139.29437494279 -8178,10103,18311,18310,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.337452324115288,8.465123247029155,0,12,7,37.60739713875804,0,3,2,2019,9,0,38,37,1,0,0,12.47506578171633,12.47506578171633,0,0,0,0,0,1,1,0,0,0,57.57,43.81,46.39,47.58,8.333333333333334,2,3,0,0,9,2,3,1,433.25,144321.0993453745,133119.7484585383,176273.7326737182,139922.720025654,2139.29437494279 -8178,10103,18312,-9,18310,18311,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.8519656134548,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,433.25,144321.0993453745,133119.7484585383,176273.7326737182,139922.720025654,2139.29437494279 -8178,10103,18313,-9,18310,18311,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.201506686014,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,433.25,144321.0993453745,133119.7484585383,176273.7326737182,139922.720025654,2139.29437494279 -8179,10104,18314,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.773453881296213,8.905657005339229,8.15010667564365,0,0,-957.9481754631487,0,3,2,2019,13,0,38,38,1,3,0,19.71737735884748,19.71737735884748,0,0,0,0,0,1,1,0,0,8.161965921276936,39.8,51.06,-9,-9,5,1,1,0,0,11,12,5,0,2310,103220.3713601638,94652.21911890137,0,0,3107.660686462675 -8180,10105,18315,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,8.036202882827514,7.900178792106209,0,0,-769.0877528845247,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.546253675787534,8.042663157763743,38.34,62.12,-9,-9,6.666666666666667,1,1,0,1,0,8,4,1,542,1040645.582233883,651976.940522664,278725.6634425796,0,1307.027824931321 -8181,10106,18316,18317,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.551272752873867,8.582989399409943,0,25,1,17.01529211478438,0,2,2,2019,10,1,51,40,1,1,0,8.686575468739337,8.686575468739337,0,0,0,0,0,1,1,0,7.169706537463824,0,45.01,57.46,52,54.51,8.333333333333334,1,1,0,0,5,2,5,1,608.3333333333334,1473227.784542902,955554.8393932265,417756.7963478838,49673.29971967392,3951.396777801567 -8181,10106,18317,18316,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.809101789960671,8.875972707747225,0,25,-1,-28.85175599026068,0,2,-9,2019,9,0,57,60,1,0,0,18.42691528552604,18.42691528552604,0,0,0,0,0,1,1,0,4.157308504800234,0,52,54.51,45.01,57.46,5,4,2,0,0,9,2,5,1,608.3333333333334,1473227.784542902,955554.8393932265,417756.7963478838,49673.29971967392,3951.396777801567 -8181,10106,18318,-9,18317,18316,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.998326781319,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,2,5,1,608.3333333333334,1473227.784542902,955554.8393932265,417756.7963478838,49673.29971967392,3951.396777801567 -8182,10107,18319,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.645106071429162,7.634601294865367,0,0,0,-1067.718354424193,0,2,2,2019,10,0,38,0,1,0,0,6.454891581848547,6.454891581848547,0,0,0,0,0,1,0,1,0,0,53.14,45.74,-9,-9,5,1,1,0,0,8,1,3,0,389,-78669.31848204034,-58737.48424449236,0,0,1693.968019763835 -8183,10108,18320,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.036326549770987,7.44740148352883,0,0,0,-1054.861210718964,0,-9,-9,2019,9,0,44,44,1,1,0,8.474566926162799,8.474566926162799,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,8,1,1,0,0,8,9,3,0,390,16810.83010381206,0,0,0,1658.495285393828 -8183,10109,18321,-9,-9,18320,1,0,20,0,0,0,2,2,-9,0,4,7.271952965855045,7.533159682840857,0,0,0,-888.2874109274157,0,2,2,2019,14,3,40,0,1,3,1,5.122700738568489,5.122700738568489,0,0,0,0,0,0,0,0,0,0,45.85,61.26,-9,-9,6.666666666666667,1,1,0,0,2,9,3,0,453,41711.17545964509,0,0,0,789.2396749553136 -8184,10110,18322,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.281853764521497,6.545622434974307,0,0,-974.4385759019372,0,3,3,2019,14,0,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,1.019991468099414,6.387416781332963,45.99,20.02,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,296,536294.2391045372,74885.51718815998,303895.1773719382,0,1472.629373328973 -8185,10111,18323,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.251538669394819,7.549139695817964,6.968563993467831,0,0,-1126.911388510199,0,3,3,2019,9,0,70,20,1,0,0,2.321477013738329,2.321477013738329,0,0,0,0,0,1,1,0,.9574394974960676,6.932187756576076,53.98,32.91,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,968,134957.4794825352,88101.64527074221,0,0,1840.014274068761 -8186,10112,18324,18325,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.539948166762944,8.650659578884861,0,27,1,65.15426418465523,0,3,3,2019,5,0,30,40,1,0,0,20.14848989272555,20.14848989272555,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.47,48.08,8.333333333333334,2,3,0,0,13,2,4,1,678.5,-7173.089851615252,55783.29931530143,98885.12491025799,0,2772.824762384636 -8186,10112,18325,18324,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,11,-1,64.82601914757187,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,48.08,62.49,55.09,6.666666666666667,2,3,0,0,0,2,4,1,678.5,-7173.089851615252,55783.29931530143,98885.12491025799,0,2772.824762384636 -8186,10113,18326,-9,18325,18324,1,1,23,0,0,0,1,1,-9,0,4,7.903670140304611,8.109211720776113,0,0,0,-903.5764247746301,0,2,2,2019,18,6,35,7,1,6,1,9.842817767829892,9.842817767829892,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,8.333333333333334,2,3,0,0,3,2,4,1,51,47622.0497779997,-23882.21009689122,0,0,1402.336731441419 -8186,10114,18327,-9,18325,18324,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1001.950306126504,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.96,51,-9,-9,10,2,3,0,0,2,2,1,1,944,138879.2473715142,0,0,0,0 -8186,10115,18328,-9,18325,18324,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-981.9068192649729,-9,2,2,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,47.54,46.25,-9,-9,5,2,3,0,0,0,2,1,1,1137,-7247.696202915802,0,0,0,0 -8187,10116,18329,-9,18331,18333,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-921.281096250338,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,651.6,-55491.06526584142,0,0,0,1228.275817570201 -8187,10116,18330,-9,18331,18333,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1062.453576004766,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,651.6,-55491.06526584142,0,0,0,1228.275817570201 -8187,10116,18331,18333,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,3,14,0,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,37.93,28.59,57.06,57.76,8.333333333333334,1,1,0,0,0,2,1,0,651.6,-55491.06526584142,0,0,0,1228.275817570201 -8187,10116,18332,-9,18331,18333,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-951.0638909485995,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,1,0,651.6,-55491.06526584142,0,0,0,1228.275817570201 -8187,10116,18333,18331,-9,-9,1,1,27,0,3,0,2,2,-9,0,5,0,0,0,3,-14,0,0,-9,-9,2019,7,0,0,44,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,37.93,28.59,8.333333333333334,1,1,1,0,1,2,1,0,651.6,-55491.06526584142,0,0,0,1228.275817570201 -8188,10117,18334,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.742684597752099,5.73017916699515,0,0,-921.927849422494,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.597652009638205,5.693317410796285,54.96,53.17,-9,-9,10,1,1,0,0,0,4,2,0,756,95396.12243927407,68852.27490941084,0,0,347.2195217885775 -8189,10118,18335,18336,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.6451949212061,7.511893408600399,0,31,-1,7.146789131424661,0,3,3,2019,12,0,27,25,1,0,0,9.803449415950491,9.803449415950491,0,0,0,0,2,0,0,0,3.29121635841986,0,45.75,53.15,49.58,55.59,6.666666666666667,1,1,0,0,13,9,5,1,446.5,1403991.873256933,917213.7786658753,537451.2393100794,0,5727.042770095341 -8189,10118,18336,18335,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.367544539428097,9.462770998499231,0,28,1,123.3392201673049,0,2,2,2019,8,0,45,46,1,0,0,32.08315317188674,32.08315317188674,0,0,0,0,0,0,0,0,6.671067222860339,0,49.58,55.59,45.75,53.15,5,1,1,0,0,13,9,5,1,446.5,1403991.873256933,917213.7786658753,537451.2393100794,0,5727.042770095341 -8189,10119,18337,-9,18335,18336,1,1,25,0,0,0,1,1,-9,0,3,8.157032097274509,7.987000708941878,0,0,0,-1082.002507125704,0,1,1,2019,9,0,38,40,1,0,1,12.58492261669709,12.58492261669709,0,0,0,0,0,0,0,0,5.137526292716474,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,1001,42055.9538268283,-91930.53544863094,0,0,2576.491653173265 -8189,10120,18338,-9,18335,18336,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1118.34595531691,-9,1,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,617,85989.4583095069,0,0,0,0 -8190,10121,18339,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.628083342469091,8.181702327166528,0,0,0,-861.511835574154,0,3,2,2019,12,1,37,38,1,1,0,8.799350210414431,8.799350210414431,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,1.666666666666667,1,1,0,0,13,6,4,1,657,-127068.9060889149,0,0,0,1044.392099519941 -8191,10122,18340,18341,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.052889135989414,7.093462089148593,37,-10,-69.64147412461077,0,2,3,2019,7,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,2.950061007148956,7.408784005673726,52.82,53.97,42.91,44.18,8.333333333333334,1,1,0,0,8,9,3,1,310.5,1919869.518017407,1027442.700409856,492018.4930154612,0,2318.827205357326 -8191,10122,18341,18340,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.119380832144944,7.34168658929204,7,10,126.1348420581778,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.058171460316523,6.992370769721159,42.91,44.18,52.82,53.97,6.666666666666667,1,1,0,0,0,9,3,1,310.5,1919869.518017407,1027442.700409856,492018.4930154612,0,2318.827205357326 -8192,10123,18342,18343,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.322599258983141,8.332613429616627,37,2,-27.4508569306609,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.961402558940041,8.341051919038586,52.27,58.55,40.48,60.05,10,1,1,0,0,6,8,3,1,358.5,2443727.991772524,1014367.465942441,597575.1559622809,0,2429.290635421089 -8192,10123,18343,18342,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,37,-2,22.22654143788478,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.87574202445444,0,40.48,60.05,52.27,58.55,8.333333333333334,1,1,0,0,9,8,3,1,358.5,2443727.991772524,1014367.465942441,597575.1559622809,0,2429.290635421089 -8193,10124,18344,-9,-9,-9,1,0,25,0,0,0,1,1,0,0,4,0,0,0,0,0,-970.5255855978129,-9,2,1,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,36.45,62.92,-9,-9,5,1,1,0,0,1,9,1,0,503,0,0,0,0,1251.547279542229 -8194,10125,18345,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.940467889199952,6.000972403101046,0,0,-945.3694037263019,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.998037904892584,6.17677496146997,51.19,52.17,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,183,451412.2597867439,121378.5476498154,336178.1150529616,0,7866.461446784655 -8195,10126,18346,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.558695977657568,8.131718999576933,6.160924740400162,0,0,-962.5002202990241,0,2,2,2019,12,1,42,42,1,1,0,6.601925877752929,6.601925877752929,0,0,0,0,7,1,1,0,6.379328479356614,0,42.9,55.84,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,109,-185057.6810205618,0,0,0,1167.333319328985 -8195,10127,18347,-9,18346,-9,1,1,21,0,0,1,2,0,0,0,4,0,5.173298835903521,5.458693286608223,0,0,-1091.050573789336,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,6.276635269449071,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,1048,25693.99539789545,0,0,0,-287.9472362779528 -8196,10128,18348,18349,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,8.175313281109355,7.927475359414691,8,2,63.58288357183299,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1.229358919249044,8.220259677189953,52.38,50.07,51.77,58.57,8.333333333333334,1,1,0,0,12,4,3,1,137.5,405906.4286919859,246892.1568799767,146743.108500377,0,1871.537506231079 -8196,10128,18349,18348,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,0,6.067342600277931,6.10653531576834,8,-2,95.61130309858841,0,3,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,6.095252584665997,0,51.77,58.57,52.38,50.07,8.333333333333334,1,1,0,0,11,4,3,1,137.5,405906.4286919859,246892.1568799767,146743.108500377,0,1871.537506231079 -8197,10129,18350,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.430367179603053,8.66977147631394,0,0,0,-1040.072597148288,0,2,2,2019,8,0,60,60,1,0,0,8.415288249123758,8.415288249123758,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,1910,267483.2534932273,3941.845063891376,186159.0340097111,17011.56916587918,2133.336309384788 -8198,10130,18351,18352,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.942071941490438,8.550108080766607,0,10,1,-21.98767804156678,0,-9,-9,2019,11,1,72,60,1,1,0,10.06355921007006,10.06355921007006,0,0,0,0,0,0,0,0,0,0,50.89,44.42,31.71,44.79,10,1,1,0,0,11,12,4,0,1004,591682.3228053921,382757.2826472857,167379.3805448592,0,2467.712439969232 -8198,10130,18352,18351,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,42,-1,50.98524837743845,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,2.297018649540308,0,31.71,44.79,50.89,44.42,5,1,1,1,1,9,12,4,0,1004,591682.3228053921,382757.2826472857,167379.3805448592,0,2467.712439969232 -8199,10131,18353,18354,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,9.199471528663883,9.287495910298821,0,16,0,65.05610999545019,0,2,2,2019,11,3,32,30,1,3,0,33.68412505147001,33.68412505147001,0,0,0,0,0,1,1,0,3.626155012639481,0,42.29,58.81,36.84,58.98,8.333333333333334,1,1,0,0,8,1,5,1,400.75,405271.3550510669,257651.5340134933,45422.3795913402,43321.16613814524,4402.337807115404 -8199,10131,18354,18353,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.505646130407497,7.745236147247561,0,16,0,97.48066908057677,0,1,1,2019,20,9,22,22,1,9,0,11.12105554999082,11.12105554999082,0,0,0,0,0,1,1,0,3.461604860951162,0,36.84,58.98,42.29,58.81,6.666666666666667,1,1,0,0,8,1,5,1,400.75,405271.3550510669,257651.5340134933,45422.3795913402,43321.16613814524,4402.337807115404 -8199,10131,18355,-9,18353,18354,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.739155305368,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,400.75,405271.3550510669,257651.5340134933,45422.3795913402,43321.16613814524,4402.337807115404 -8199,10131,18356,-9,18353,18354,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.6668184820479,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,400.75,405271.3550510669,257651.5340134933,45422.3795913402,43321.16613814524,4402.337807115404 -8200,10132,18357,18358,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.984748429974553,7.882434238282524,0,7,1,26.30729517729384,0,-9,-9,2019,9,0,70,60,1,1,0,4.790306171306836,4.790306171306836,0,0,0,0,0,1,1,0,3.917603092703057,0,53,54,57.33,53.46,8,1,1,0,0,1,5,4,1,841,412176.7985992577,332036.8750210929,114166.7747635238,0,2422.972971312115 -8200,10132,18358,18357,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.419887006808452,7.510882516930658,0,28,-1,-33.66741795106623,0,3,3,2019,8,0,15,20,1,0,0,13.35702943240243,13.35702943240243,0,0,0,0,7,1,1,0,0,0,57.33,53.46,53,54,8.333333333333334,1,1,0,0,7,5,4,1,841,412176.7985992577,332036.8750210929,114166.7747635238,0,2422.972971312115 -8200,10133,18359,-9,18358,18357,1,1,23,0,0,0,2,2,-9,0,4,6.206417023284747,5.932041464574008,0,0,0,-1048.324918560026,0,2,2,2019,10,0,40,40,1,1,1,1.7780737109373,1.7780737109373,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,2,1,555,29860.89105341511,28457.35409678801,0,0,201.3049444077513 -8201,10134,18360,18362,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,4.39839772819528,4.265588393255922,0,14,6,-100.9697899817281,0,3,2,2019,9,1,25,30,1,1,0,.3940172255352369,.3940172255352369,0,0,0,0,0,1,1,0,0,0,45.87,38.23,57.33,53.46,6.666666666666667,2,3,0,0,9,6,2,1,290.5,-11003.03199137963,0,138785.0128518564,59924.86592507808,1335.516032429378 -8201,10134,18361,-9,18362,18360,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.314777285235,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,290.5,-11003.03199137963,0,138785.0128518564,59924.86592507808,1335.516032429378 -8201,10134,18362,18360,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.972490505656969,7.724017916985789,0,14,-6,15.00525745710454,0,2,2,2019,6,0,34,32,1,0,0,9.01764986783545,9.01764986783545,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.87,38.23,8.333333333333334,2,3,0,0,10,6,2,1,290.5,-11003.03199137963,0,138785.0128518564,59924.86592507808,1335.516032429378 -8201,10134,18363,-9,18362,18360,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.461628419386,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,290.5,-11003.03199137963,0,138785.0128518564,59924.86592507808,1335.516032429378 -8202,10135,18364,-9,18367,18366,1,1,13,0,7,1,3,0,-9,0,5,0,0,0,0,0,-1096.514967041739,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18365,-9,18367,18366,1,1,8,0,7,1,3,0,-9,0,4,0,0,0,0,0,-963.9634852995531,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18366,18367,-9,-9,1,1,56,0,7,0,2,2,-9,0,4,2.880274013326678,2.628554777374339,0,6,10,79.76891139359699,0,-9,-9,2019,9,0,5,32,1,1,0,.4220110670534377,.4220110670534377,0,0,0,0,0,1,1,0,0,0,54,53,42.46,54.85,8,2,3,0,0,1,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18367,18366,-9,-9,1,0,46,0,7,0,3,3,-9,0,3,0,0,0,29,-10,-129.788328116549,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.46,54.85,54,53,6.666666666666667,2,3,0,1,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18368,-9,18367,18366,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1079.94165434237,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18369,-9,18367,18366,1,1,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1026.521734483194,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18370,-9,18367,18366,1,0,15,0,7,1,3,0,-9,0,3,0,0,0,0,0,-1037.570051359335,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10135,18371,-9,18367,18366,1,0,14,0,7,1,3,0,-9,0,4,0,0,0,0,0,-919.5298826820936,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,2,0,805.125,2081.017554206524,0,0,0,3254.005873852818 -8202,10136,18372,-9,18367,18366,1,1,25,0,7,0,2,2,-9,0,4,6.864464462468179,6.763216950187904,0,0,0,-942.2323612413892,0,2,2,2019,10,0,37,36,1,1,1,1.867238422685507,1.867238422685507,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,2,0,1723,0,0,0,0,525.390015125504 -8202,10137,18373,-9,18367,18366,1,0,24,0,7,0,2,2,-9,0,4,7.479048799659844,7.634784486649557,0,0,0,-1001.256409122476,0,2,2,2019,11,0,15,36,1,2,1,17.09576025064476,17.09576025064476,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,847,-23753.17509778502,0,0,0,1149.464177430775 -8202,10138,18374,-9,18367,18366,1,0,20,0,7,1,3,0,0,0,4,0,0,0,0,0,-1035.82044583805,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,0,354,-9714.970762038278,0,0,0,0 -8202,10139,18375,-9,18367,18366,1,0,19,0,7,1,2,0,0,0,4,0,0,0,0,0,-1067.582376436745,-9,3,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,0,496,79275.05833752971,0,0,0,0 -8203,10140,18376,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1026.949692084057,-9,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,0,0,4,1,1,1187,0,0,0,0,707.6818939423824 -8204,10141,18377,18378,-9,-9,1,0,41,0,0,0,2,2,-9,1,4,0,0,0,3,-10,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,2.323452813084723,0,49,55,53,55,7,1,1,0,0,2,13,1,0,781.5,2854386.766208783,957622.7930757614,625967.4459320311,0,1172.233930345597 -8204,10141,18378,18377,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,0,0,3,10,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,49,55,8,1,1,0,1,0,13,1,0,781.5,2854386.766208783,957622.7930757614,625967.4459320311,0,1172.233930345597 -8205,10142,18379,18380,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,9.018538853094494,9.147159004575698,4.921577009996583,20,-10,18.54428368431776,0,2,2,2019,10,0,41,41,1,0,0,19.84858302873767,19.84858302873767,0,0,0,0,0,1,1,0,0,5.287338416739051,48.65,18.5,57.16,56.15,3.333333333333333,1,1,0,1,13,7,5,1,688,1006473.116345044,241933.558974056,642652.6398751845,0,3166.008158832475 -8205,10142,18380,18379,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,20,10,41.64781965068278,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.866167726206102,0,57.16,56.15,48.65,18.5,8.333333333333334,1,1,0,0,10,7,5,1,688,1006473.116345044,241933.558974056,642652.6398751845,0,3166.008158832475 -8206,10143,18381,18382,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.296537224950779,8.720418236690797,34,1,-64.28772838007858,0,3,2,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.714041478008271,54.79,55.86,49.25,61.25,1.666666666666667,1,1,0,0,7,1,5,1,2580.5,7595108.906705791,1240813.95393968,738986.981563125,0,18878.80706631464 -8206,10143,18382,18381,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,10.43531470415257,10.28329954015044,34,-1,-16.51057537131246,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.978326002221825,10.22706497528482,49.25,61.25,54.79,55.86,8.333333333333334,1,1,0,0,4,1,5,1,2580.5,7595108.906705791,1240813.95393968,738986.981563125,0,18878.80706631464 -8207,10144,18383,18384,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,25,-1,14.12955039356732,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,47,49,44.84,24.08,8.333333333333334,1,1,0,0,1,5,2,1,1762.5,-71839.85458409003,0,141404.6311931834,0,1199.295837068572 -8207,10144,18384,18383,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,4.633727483260479,4.614463426298387,25,1,-83.09483758338368,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,4.661651178915768,44.84,24.08,47,49,5,1,1,0,0,0,5,2,1,1762.5,-71839.85458409003,0,141404.6311931834,0,1199.295837068572 -8207,10145,18385,-9,18383,18384,1,1,21,0,0,0,2,2,-9,0,4,8.211661398301874,8.395754947478203,0,0,0,-937.1000527728247,0,3,3,2019,6,0,42,45,1,0,1,9.092609968342446,9.092609968342446,0,0,0,0,27,1,1,0,0,0,57.64,57.24,-9,-9,10,1,1,0,0,5,5,4,1,802,-191720.6545741438,-38893.38127575376,0,0,1311.773473636104 -8208,10146,18386,18387,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,6.45726282502888,6.391014463402026,0,7,-3,86.95453768472508,0,-9,-9,2019,14,2,15,11,1,2,0,4.100645689724929,4.100645689724929,0,0,0,0,14.5,1,1,0,1.117942928841514,0,27.5,55.45,37.68,20.88,6.666666666666667,1,1,0,0,8,11,5,1,289,2552844.547552248,2309398.579482324,261770.8886583468,0,7923.913530254983 -8208,10146,18387,18386,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,9.132566539545492,9.144343901227272,6.554600948311649,7,3,10.0689997030023,0,-9,-9,2019,20,9,55,55,1,9,0,24.88360266756198,24.88360266756198,0,0,0,0,0,1,1,0,7.752312556486837,6.628024102456279,37.68,20.88,27.5,55.45,1.666666666666667,1,1,0,0,9,11,5,1,289,2552844.547552248,2309398.579482324,261770.8886583468,0,7923.913530254983 -8209,10147,18388,-9,18390,18391,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.365829414433,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1261.25,193175.7470184155,146315.5901544822,222421.4626480393,168298.352725611,2922.579057682201 -8209,10147,18389,-9,18390,18391,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.752425680033,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1261.25,193175.7470184155,146315.5901544822,222421.4626480393,168298.352725611,2922.579057682201 -8209,10147,18390,18391,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,0,0,0,15,-8,-105.7619552580608,0,2,2,2019,7,0,0,9,3,0,0,0,0,0,0,0,0,0,1,1,0,.4909689208739868,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,10,2,4,1,1261.25,193175.7470184155,146315.5901544822,222421.4626480393,168298.352725611,2922.579057682201 -8209,10147,18391,18390,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.88632148366638,8.714266470142356,0,13,8,-67.64298078320979,0,1,2,2019,8,0,62,70,1,0,0,11.33742061113395,11.33742061113395,0,0,0,0,0,1,1,0,2.933865307757907,0,58.15,52.91,54.2,57.49,10,1,1,0,0,8,2,4,1,1261.25,193175.7470184155,146315.5901544822,222421.4626480393,168298.352725611,2922.579057682201 -8210,10148,18392,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.900268563469246,6.952325569975471,0,0,-989.8519415623382,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.044839950817858,6.991239382046169,51,46,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,90,42524.68987298982,125367.5473267327,41587.21500978078,0,1339.601383286081 -8210,10149,18393,-9,18392,-9,1,1,50,0,0,0,2,2,-9,0,3,7.552060969889705,7.446411755748275,5.287515903332604,0,0,-1014.833590785171,0,3,2,2019,13,2,32,32,1,2,0,5.756268602767988,5.756268602767988,0,0,0,0,0,1,1,0,0,4.625525147551979,30.32,45.42,-9,-9,5,1,1,0,0,12,10,3,1,1999,338980.0178084166,-99721.57929231317,195026.0489072879,0,1224.839301038448 -8211,10150,18394,18395,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,7.775052437558362,8.681189589592035,7.511068776355085,46,-1,7.26030959496062,0,3,3,2019,7,0,30,30,1,0,0,8.983189141418952,8.983189141418952,0,0,0,0,0,1,1,0,.3393083235764332,7.802662255795952,60.02,56.42,29.94,47.13,8.333333333333334,1,1,0,0,10,5,5,1,395,810814.5461642363,541091.6053480617,417329.3807208854,171953.1934179195,3638.821313230879 -8211,10150,18395,18394,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.64916955189517,8.016330214942414,5.541443199620407,46,1,192.7232443834569,0,3,-9,2019,21,9,42,37,1,9,0,5.921579773183804,5.921579773183804,1,0,0,0,0,1,1,0,.832106139314666,5.568745213145525,29.94,47.13,60.02,56.42,0,1,1,0,0,10,5,5,1,395,810814.5461642363,541091.6053480617,417329.3807208854,171953.1934179195,3638.821313230879 -8212,10151,18396,18398,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.442795275405325,7.442715496189905,0,1,-8,-9.085800428964415,-9,-9,-9,2019,7,0,44,0,1,0,0,5.249067603665451,5.249067603665451,0,0,0,0,0,0,0,0,0,0,59.53,56.44,61.27,35.32,8.333333333333334,3,4,0,0,0,7,4,1,675.6666666666666,5716.792668778838,57493.36016006376,0,0,1922.109185481105 -8212,10151,18397,-9,-9,18396,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-962.9612070509049,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,4,1,675.6666666666666,5716.792668778838,57493.36016006376,0,0,1922.109185481105 -8212,10151,18398,18396,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,7.990951248553946,7.758326285385141,0,1,8,-110.2056936107742,0,3,3,2019,6,0,44,44,1,0,0,8.009420299630349,8.009420299630349,0,0,0,0,2,0,0,0,0,0,61.27,35.32,59.53,56.44,5,3,4,0,1,9,7,4,1,675.6666666666666,5716.792668778838,57493.36016006376,0,0,1922.109185481105 -8213,10152,18399,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.150481904939282,9.032147563586934,0,0,0,-1023.266378535793,0,2,3,2019,10,1,37,35,1,1,0,23.14348045813461,23.14348045813461,0,0,0,0,0,0,0,0,.7286389911726495,0,48.48,54.62,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,765,352037.7897749237,109142.3428301404,128112.7876048735,0,3108.603658518498 -8213,10152,18400,-9,-9,18399,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-984.2206561054508,-9,-9,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.163668423522883,0,51.77,58.57,-9,-9,10,1,1,0,0,1,6,5,1,765,352037.7897749237,109142.3428301404,128112.7876048735,0,3108.603658518498 -8214,10153,18401,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.203114320344685,8.155124776860385,0,0,0,-1009.950534439667,0,3,2,2019,6,0,39,42,1,0,0,9.813338396316157,9.813338396316157,0,0,0,0,0,1,1,0,1.409945559095646,0,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,634,21322.03892060967,-60407.20243840694,0,0,1379.849093743627 -8214,10153,18402,-9,18401,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.937616815785,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,634,21322.03892060967,-60407.20243840694,0,0,1379.849093743627 -8215,10154,18403,-9,18404,18405,1,1,26,0,0,0,2,2,-9,0,4,8.276809003870056,7.930685266610936,0,0,0,-986.1851537888705,0,3,3,2019,10,0,40,40,1,1,1,9.526107168281927,9.526107168281927,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,1,2,4,1,4268,62912.9006998087,-38355.15276457687,0,0,1718.711649288897 -8215,10155,18404,18405,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,44,-1,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,2,1,1,400.5,38477.07560467727,0,0,0,1044.528854523434 -8215,10155,18405,18404,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,44,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,0,0,51,48,49,48,7,2,3,0,0,0,2,1,1,400.5,38477.07560467727,0,0,0,1044.528854523434 -8216,10156,18406,18407,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.093569374252363,8.106168076735917,0,8,0,-94.95558750931652,0,3,3,2019,13,1,51,38,1,1,0,9.382964936132575,9.382964936132575,0,0,0,0,0,0,0,0,0,0,48.08,43.86,50.84,47.24,6.666666666666667,1,1,0,0,8,12,4,0,956.5,639767.9226524513,361014.700962182,102842.7283476449,0,2434.692001541343 -8216,10156,18407,18406,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.137434463451333,7.848657054311651,0,8,0,56.38057632846039,0,-9,-9,2019,10,0,40,35,1,0,0,7.973597756700001,7.973597756700001,0,0,0,0,0,0,0,0,0,0,50.84,47.24,48.08,43.86,8.333333333333334,1,1,0,0,9,12,4,0,956.5,639767.9226524513,361014.700962182,102842.7283476449,0,2434.692001541343 -8216,10157,18408,-9,18407,18406,1,1,25,0,0,0,2,2,-9,0,3,7.509544453521459,7.329789653799379,0,0,0,-970.9032321312186,0,2,3,2019,9,0,30,35,1,0,1,6.548495267560973,6.548495267560973,0,0,0,0,2,0,0,0,0,0,44.38,58.1,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,361,70409.09668985645,0,0,0,840.0943285451673 -8217,10158,18409,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1047.087125280156,1,3,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,2,3,0,0,0,6,1,0,1899,41024.39487463235,-25749.63501721173,0,0,781.339877254597 -8218,10159,18410,18414,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,0,0,0,19,-1,-59.56833021624976,0,-9,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.6,51.61,38.04,52.8,3.333333333333333,1,1,0,0,1,7,4,1,586.4,459803.2915090613,117542.8153662962,360275.2490172695,140131.3741013199,5579.934458093694 -8218,10159,18411,-9,18410,18414,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.385934328372,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,7,4,1,586.4,459803.2915090613,117542.8153662962,360275.2490172695,140131.3741013199,5579.934458093694 -8218,10159,18412,-9,18410,18414,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.670700371889,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,586.4,459803.2915090613,117542.8153662962,360275.2490172695,140131.3741013199,5579.934458093694 -8218,10159,18413,-9,18410,18414,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.658895099215,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,586.4,459803.2915090613,117542.8153662962,360275.2490172695,140131.3741013199,5579.934458093694 -8218,10159,18414,18410,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.833270471523356,8.888091942159623,0,19,1,63.67000810886276,0,2,2,2019,15,4,48,60,1,4,0,19.34228599219636,19.34228599219636,0,0,0,0,0,1,1,0,0,0,38.04,52.8,43.6,51.61,3.333333333333333,1,1,0,0,8,7,4,1,586.4,459803.2915090613,117542.8153662962,360275.2490172695,140131.3741013199,5579.934458093694 -8219,10160,18415,18417,-9,-9,1,1,37,1,2,0,2,2,-9,0,1,0,0,0,9,3,36.3738892810351,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,30.44,54.63,58.83,3.333333333333333,1,1,1,0,6,13,2,1,543,-54220.7008213343,17747.44855728667,0,0,1751.742302230258 -8219,10160,18416,-9,18417,18415,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.124129906024,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,543,-54220.7008213343,17747.44855728667,0,0,1751.742302230258 -8219,10160,18417,18415,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.85638638967373,7.660306283435481,0,9,-3,42.96634153276854,0,3,3,2019,11,0,30,30,1,0,0,11.01019866118091,11.01019866118091,0,0,0,0,0,1,1,0,0,0,54.63,58.83,37.89,30.44,8.333333333333334,1,1,0,0,10,13,2,1,543,-54220.7008213343,17747.44855728667,0,0,1751.742302230258 -8219,10160,18418,-9,18417,18415,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.9578662148076,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,543,-54220.7008213343,17747.44855728667,0,0,1751.742302230258 -8220,10161,18419,-9,18421,18420,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.204862145258,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,4,0,545,126107.1662451696,59248.83696980486,231256.9578993069,154338.6495236985,2297.209469722966 -8220,10161,18420,18421,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,0,0,0,6,-5,113.6117131020953,0,3,3,2019,18,6,0,43,3,6,0,0,0,0,0,0,0,2,1,1,0,9.057689447529459,0,31.16,51.92,50.01,55.66,6.666666666666667,3,4,1,0,5,8,4,0,545,126107.1662451696,59248.83696980486,231256.9578993069,154338.6495236985,2297.209469722966 -8220,10161,18421,18420,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,8.408599591791232,8.28605717245666,0,6,5,22.6929893101135,0,-9,-9,2019,11,0,51,39,1,0,0,9.94583020587408,9.94583020587408,0,0,0,0,0,1,1,0,3.410620490851456,0,50.01,55.66,31.16,51.92,8.333333333333334,1,1,0,0,8,8,4,0,545,126107.1662451696,59248.83696980486,231256.9578993069,154338.6495236985,2297.209469722966 -8221,10162,18422,-9,18424,18423,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1023.513360588383,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,49.19,-9,-9,8.333333333333334,1,1,0,0,1,2,3,0,1766.25,835279.4521839733,489032.7365265193,388094.2960886083,0,2594.217332686039 -8221,10162,18423,18424,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.403889033767536,8.270018092640891,0,11,10,39.8552621541296,0,2,-9,2019,7,0,45,37,1,0,0,12.45557474542884,12.45557474542884,0,0,0,0,0,1,1,0,0,0,59.53,56.44,42.55,34.95,10,1,1,0,0,13,2,3,0,1766.25,835279.4521839733,489032.7365265193,388094.2960886083,0,2594.217332686039 -8221,10162,18424,18423,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,11,-10,60.97192455244884,0,3,3,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,42.55,34.95,59.53,56.44,8.333333333333334,1,1,1,0,9,2,3,0,1766.25,835279.4521839733,489032.7365265193,388094.2960886083,0,2594.217332686039 -8221,10162,18425,-9,18424,18423,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.922811493809,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1766.25,835279.4521839733,489032.7365265193,388094.2960886083,0,2594.217332686039 -8222,10163,18426,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.189955513371588,8.624833123741665,0,0,0,-1002.354960443628,0,2,2,2019,10,0,10,65,1,0,0,50.71831276237805,50.71831276237805,0,0,0,0,7,0,0,0,6.112467497446772,0,40.02,55.81,-9,-9,6.666666666666667,4,2,0,0,10,6,4,1,508,125163.8040406914,402917.2732883977,0,0,1878.51204015025 -8223,10164,18427,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1086.966109451514,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,.8185416041372537,2,1,1,0,0,0,43.34,30.37,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,126,84967.38129213249,0,0,0,1284.823921542346 -8224,10165,18428,18429,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,7.15479759571738,7.318293022712233,0,19,5,145.3910256925693,0,3,3,2019,11,0,24,24,1,0,0,6.696538011238576,6.696538011238576,0,0,0,0,0,1,1,0,0,0,43.31,58.64,50,55,8.333333333333334,2,3,0,0,5,8,2,0,887.25,4058.134363785204,0,0,0,1548.932684730686 -8224,10165,18429,18428,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,0,0,0,19,-5,34.18903580182369,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,.7440360768440115,0,1,1,0,0,0,50,55,43.31,58.64,7,2,3,0,1,0,8,2,0,887.25,4058.134363785204,0,0,0,1548.932684730686 -8224,10165,18430,-9,18429,18428,1,1,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.998345864135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,2,3,-9,0,0,8,2,0,887.25,4058.134363785204,0,0,0,1548.932684730686 -8224,10165,18431,-9,18429,18428,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.935359517833,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,887.25,4058.134363785204,0,0,0,1548.932684730686 -8225,10166,18432,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.685927681496789,8.921129234623089,6.793584151736511,0,0,-941.1783605913093,0,2,3,2019,29,12,49,59,1,12,0,14.11969047098515,14.11969047098515,0,0,0,0,0,0,0,0,7.255454169925438,0,19.49,61.56,-9,-9,1.666666666666667,1,1,0,0,11,8,5,1,894,205803.4975544184,43629.17231744048,282774.4034168881,47869.86636068487,2890.222296098659 -8225,10167,18433,-9,18432,-9,1,0,20,0,0,0,2,2,-9,0,4,8.04235840932887,7.798605799707642,0,0,0,-1020.689849072213,0,2,-9,2019,6,0,36,30,1,0,1,7.993153142074777,7.993153142074777,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,3,8,4,1,458,35167.0537478777,-50864.22177506561,0,0,581.462423028568 -8225,10168,18434,-9,18432,-9,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-939.7478957024471,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,8,1,1,205,191209.5230464417,0,0,0,0 -8226,10169,18435,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.287886310670633,8.440094578024436,0,0,0,-1002.414773268565,0,1,2,2019,8,1,41,0,1,1,1,14.80081577907177,14.80081577907177,0,0,0,0,2,0,0,0,0,0,35.99,52.12,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,2049,-3743.677918743328,62195.36893766033,0,0,1565.732586938827 -8227,10170,18436,18437,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.681182314968679,6.600832108703458,10,2,-83.11414431972405,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.480964505330238,7.218359691366637,54.55,49.25,48.92,37.32,6.666666666666667,1,1,0,0,11,11,5,1,802,2816451.399683491,2274483.509124281,300112.6968619446,14901.46663251735,7320.806197244907 -8227,10170,18437,18436,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,8.969319570710052,9.545041627992845,8.753378175806626,10,-2,-126.8483344755385,0,2,2,2019,12,0,23,23,1,0,0,36.25481222066709,36.25481222066709,0,0,0,0,0,1,1,0,5.168116637407004,8.575588386539007,48.92,37.32,54.55,49.25,6.666666666666667,1,1,0,0,10,11,5,1,802,2816451.399683491,2274483.509124281,300112.6968619446,14901.46663251735,7320.806197244907 -8228,10171,18438,18439,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,6.51674093215187,6.493514064065286,9,-3,-126.007026101899,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,6.71774631422259,46.03,15.87,57.24,41.16,5,1,1,0,0,2,1,3,0,2227.5,464768.1967207661,199429.9605613903,103399.6942124475,0,1978.145419449283 -8228,10171,18439,18438,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.581314855104277,7.64987897477015,9,3,30.43906713658216,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.141372256965832,7.715324294805717,57.24,41.16,46.03,15.87,8.333333333333334,1,1,0,0,10,1,3,0,2227.5,464768.1967207661,199429.9605613903,103399.6942124475,0,1978.145419449283 -8229,10172,18440,18441,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.01302087686665,6.858800986675157,3.525370709900479,18,-4,65.80846368554549,0,3,2,2019,11,1,35,35,1,1,0,3.207844645291074,3.207844645291074,0,0,0,0,2,0,0,0,0,3.611045856614412,50.34,56.4,57.06,57.76,8.333333333333334,1,1,0,0,9,1,2,1,598,376024.2402996593,-5738.467049333129,166244.4908882589,117870.2747726547,1380.279865827479 -8229,10172,18441,18440,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,7.081171827678262,6.630573929036209,18,4,-66.99456507323647,0,-9,-9,2019,8,1,0,38,4,1,0,0,0,0,0,0,0,7,0,0,0,3.836443243178643,6.702463044036646,57.06,57.76,50.34,56.4,8.333333333333334,1,1,0,0,11,1,2,1,598,376024.2402996593,-5738.467049333129,166244.4908882589,117870.2747726547,1380.279865827479 -8230,10173,18442,18443,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,39,-4,36.89970975516498,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49,48,51,48,7,2,3,0,1,0,4,3,1,406.5,348799.1704648843,222476.8497971305,118238.0732332389,0,878.7511342123631 -8230,10173,18443,18442,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.686562539858856,7.76308987873028,0,40,4,25.54375625512578,0,3,3,2019,10,0,38,38,1,1,0,5.552183197144669,5.552183197144669,0,0,0,0,0,0,0,0,6.114866216042325,0,51,48,49,48,7,2,3,0,1,8,4,3,1,406.5,348799.1704648843,222476.8497971305,118238.0732332389,0,878.7511342123631 -8231,10174,18444,18445,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.874265577502234,8.844449322480921,0,13,2,-73.45292894602545,0,2,2,2019,5,0,48,50,1,0,0,20.12306696518787,20.12306696518787,0,0,0,0,0,1,1,0,2.543599782424171,0,47.44,56.39,49.02,50.52,6.666666666666667,1,1,0,0,10,13,4,1,421.5,708206.050623127,434582.9127013911,173605.8414041889,0,3492.125456476519 -8231,10174,18445,18444,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.710920305318275,6.571171341088311,0,12,-2,55.59545714949658,0,2,3,2019,8,1,14,0,1,1,0,7.286489444239922,7.286489444239922,0,0,0,0,0,1,1,0,3.720004185212613,0,49.02,50.52,47.44,56.39,8.333333333333334,4,2,0,0,5,13,4,1,421.5,708206.050623127,434582.9127013911,173605.8414041889,0,3492.125456476519 -8231,10174,18446,-9,18445,18444,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.669585479186,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,13,4,1,421.5,708206.050623127,434582.9127013911,173605.8414041889,0,3492.125456476519 -8231,10174,18447,-9,18445,18444,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.228145624202,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,13,4,1,421.5,708206.050623127,434582.9127013911,173605.8414041889,0,3492.125456476519 -8232,10175,18448,18449,-9,-9,1,1,47,0,1,0,1,1,-9,0,2,8.793913591559303,8.817413772796744,0,8,11,-150.6706138844519,0,1,2,2019,16,6,41,42,1,6,0,18.59122943403735,18.59122943403735,0,0,0,0,0,1,1,0,1.965481327111228,0,47.31,50.2,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,866.3333333333334,822067.5246133205,90927.33514474168,766686.0750202987,445013.8641979246,5376.252831690311 -8232,10175,18449,18448,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.823946565750465,8.824709048647488,0,8,-11,-69.00894421686074,0,2,2,2019,11,1,58,64,1,1,0,16.36131582021705,16.36131582021705,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.31,50.2,8.333333333333334,1,1,0,0,8,9,5,1,866.3333333333334,822067.5246133205,90927.33514474168,766686.0750202987,445013.8641979246,5376.252831690311 -8232,10175,18450,-9,18449,18448,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.5250959805239,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,866.3333333333334,822067.5246133205,90927.33514474168,766686.0750202987,445013.8641979246,5376.252831690311 -8233,10176,18451,18452,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.520584749003673,7.689698207624067,6.178682025889414,4,0,41.62875033512186,0,-9,-9,2019,10,0,21,32,1,0,0,9.022431647132429,9.022431647132429,0,0,0,0,14.5,1,1,0,2.228992026975078,6.184860437034114,47.25,45.56,50.54,38.69,8.333333333333334,1,1,0,0,9,1,3,1,1734,500574.9731669771,200462.6943529556,128317.9783000988,0,2878.28974294689 -8233,10176,18452,18451,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.421618208989503,5.230070092172029,41,9,58.81544921537525,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.046894474457698,0,2,1,1,0,5.488371867865107,5.144032155070935,50.54,38.69,47.25,45.56,8.333333333333334,1,1,0,0,8,1,3,1,1734,500574.9731669771,200462.6943529556,128317.9783000988,0,2878.28974294689 -8234,10177,18453,18454,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.24730093528707,8.034920712364967,9,5,124.7497634469417,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.888691161921717,7.908888780820151,50.2,55.41,51.74,34.08,8.333333333333334,1,1,0,0,0,7,4,1,2082,1506934.151533828,459423.9006342583,479599.702963187,0,4368.051695151382 -8234,10177,18454,18453,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.919697952101489,7.725191815032408,9,-5,60.9324034271873,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,19.26346346833201,0,0,1,1,0,4.107917349982287,8.017710342927161,51.74,34.08,50.2,55.41,10,1,1,0,0,0,7,4,1,2082,1506934.151533828,459423.9006342583,479599.702963187,0,4368.051695151382 -8235,10178,18455,-9,-9,18456,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1037.370971129158,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8235,10178,18456,18458,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.413777190698982,8.583073768872289,5.143559776945812,7,6,-33.62933001083249,0,2,2,2019,6,0,40,40,1,0,0,15.95804993272129,15.95804993272129,0,0,0,0,0,1,1,0,5.889139100829438,0,55.96,49.93,44.74,50.28,8.333333333333334,1,1,0,0,9,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8235,10178,18457,-9,18458,18456,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1001.740611787728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8235,10178,18458,18456,-9,-9,1,0,35,0,4,0,2,2,-9,0,2,0,5.918447263571866,6.142976205371527,7,-6,92.60528730601729,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.695491020829413,0,44.74,50.28,55.96,49.93,8.333333333333334,1,1,0,0,0,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8235,10178,18459,-9,-9,18456,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.766682826691,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8235,10178,18460,-9,18458,18456,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.3073664212554,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,585,144305.993637989,86610.67113895368,0,0,3007.878268022087 -8236,10179,18461,18462,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,6.892829314412934,6.941023203225225,0,3,-5,48.94662750402656,0,2,-9,2019,13,1,15,8,1,1,0,9.388007598094712,9.388007598094712,0,0,0,0,2,0,0,0,0,0,28.22,36.07,31.08,51.12,6.666666666666667,1,1,0,0,3,4,4,0,1135,104463.0183284175,64303.34655177053,163967.1859218415,76030.53390012699,2433.135590229191 -8236,10179,18462,18461,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.244582110931978,8.416768271418848,0,3,5,-.0870566230457641,0,-9,-9,2019,13,1,20,28,1,1,0,25.54485315565532,25.54485315565532,0,0,0,0,0,0,0,0,0,0,31.08,51.12,28.22,36.07,3.333333333333333,4,2,0,0,7,4,4,0,1135,104463.0183284175,64303.34655177053,163967.1859218415,76030.53390012699,2433.135590229191 -8237,10180,18463,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1093.282430254473,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,10,1,1,0,0,0,13,1,0,628,166640.4030370916,0,0,0,0 -8237,10181,18464,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.620295025117,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,1,0,1128,94941.88139150369,0,0,0,-257.8513624675887 -8238,10182,18465,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,5.98499397507292,6.154451996655443,0,0,-807.5714475580155,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.919254091543037,39.14,14.86,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1168,381149.6877703373,40990.08569885438,134813.480728461,0,806.5533884317521 -8239,10183,18466,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,4,7.6376920936979,7.459109773805441,0,0,0,-985.255349911307,-9,-9,-9,2019,4,0,36,0,1,0,0,5.911828639192394,5.911828639192394,0,0,0,0,0,0,0,0,3.388510159342108,0,50.51,56.39,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,674,89691.5144605258,0,0,0,1186.330574608855 -8240,10184,18467,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.717477490215908,8.544158431383115,0,0,0,-1101.068183762519,0,2,3,2019,8,0,84,57,1,0,0,6.247370143801684,6.247370143801684,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,504,1217605.617043865,421339.6858539504,609922.2982780214,0,1213.513484396274 -8241,10185,18468,18470,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,0,0,0,1,3,-247.3211083317217,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,45.83,39.99,62.58,5,1,1,1,0,6,4,3,0,229,131842.8036862632,34594.43944967486,0,0,2157.175677352358 -8241,10185,18469,-9,18468,18470,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.205256285884,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,3,0,229,131842.8036862632,34594.43944967486,0,0,2157.175677352358 -8241,10185,18470,18468,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.276995453229615,8.475585775174217,0,1,-3,-21.7873319488477,-9,-9,-9,2019,15,4,53,0,1,4,0,10.55617580545834,10.55617580545834,0,0,0,0,0,1,1,0,0,0,39.99,62.58,39.23,45.83,5,1,1,0,0,10,4,3,0,229,131842.8036862632,34594.43944967486,0,0,2157.175677352358 -8242,10186,18471,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.470013339829951,8.472788621780087,0,0,0,-1143.624419902917,0,3,3,2019,14,3,32,33,1,3,0,19.83577420140249,19.83577420140249,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,6,6,4,0,1218,-92971.56644928266,-50011.73914275103,0,0,2277.922157965161 -8243,10187,18472,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.540449596514421,8.925930953878668,5.481479197778007,0,0,-1018.748000100367,0,3,3,2019,6,0,50,60,1,0,0,13.81069988081353,13.81069988081353,0,0,0,0,0,0,0,0,1.454488710305847,5.69783146572964,51.26,37.92,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,169,71837.15122695373,133254.7346472056,0,0,2021.172842798564 -8244,10188,18473,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.174079573889814,8.621448484712944,8.234642776078861,0,0,-929.0845851291153,0,2,2,2019,9,0,20,19,1,0,0,6.078626102956376,6.078626102956376,0,0,0,0,0,1,1,0,4.562178923500778,8.510397598446113,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,304,-85609.45595519991,134036.2839314729,0,0,3872.804451221948 -8245,10189,18474,18475,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.917522629293464,6.189540663049837,37,9,66.7316340283771,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.225408786697707,49.73,53.97,60.12,54.8,8.333333333333334,1,1,0,0,0,10,2,1,1076,625559.1597551127,159267.8435812943,264986.2969422347,0,1736.033940303391 -8245,10189,18475,18474,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.725896786819931,6.15381656968893,37,0,10.41878546207761,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.837181361904397,60.12,54.8,49.73,53.97,10,1,1,0,0,4,10,2,1,1076,625559.1597551127,159267.8435812943,264986.2969422347,0,1736.033940303391 -8246,10190,18476,-9,18478,18477,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.760281016246,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,1,785.5,814332.8739492912,755609.2736129289,286042.1863915724,204021.417719033,3595.532105210347 -8246,10190,18477,18478,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.524097119172913,8.436021621294353,0,4,5,30.47208592506384,0,-9,-9,2019,6,0,48,72,1,0,0,10.61857571997404,10.61857571997404,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.02,52.82,8.333333333333334,1,1,0,0,5,1,4,1,785.5,814332.8739492912,755609.2736129289,286042.1863915724,204021.417719033,3595.532105210347 -8246,10190,18478,18477,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.861419965601314,7.91924526388191,5.696209196240368,4,-5,-89.09862955498835,0,2,3,2019,8,0,35,35,1,0,0,9.913846053543214,9.913846053543214,0,0,0,0,0,1,1,0,6.292738447076045,0,44.02,52.82,57.16,56.15,6.666666666666667,1,1,0,0,10,1,4,1,785.5,814332.8739492912,755609.2736129289,286042.1863915724,204021.417719033,3595.532105210347 -8246,10190,18479,-9,18478,18477,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1099.64550535769,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,1,785.5,814332.8739492912,755609.2736129289,286042.1863915724,204021.417719033,3595.532105210347 -8247,10191,18480,18481,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,9.207869295863894,9.431158896586689,7.472875524393897,19,12,27.57465141494728,0,3,3,2019,9,0,50,50,1,0,0,27.08199367856082,27.08199367856082,0,0,0,0,0,0,0,0,4.368124453583699,7.933112388782623,56.2,29.9,45.64,49.75,6.666666666666667,1,1,0,0,13,6,5,1,660.5,272144.6770225792,87754.47750112755,111342.2519337545,0,5142.402013312321 -8247,10191,18481,18480,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,5.438508626332962,5.524360986302643,0,20,-12,100.9140224663219,0,3,3,2019,11,0,18,25,1,0,0,1.677850018372996,1.677850018372996,0,0,0,0,0,0,0,0,0,0,45.64,49.75,56.2,29.9,10,1,1,0,0,11,6,5,1,660.5,272144.6770225792,87754.47750112755,111342.2519337545,0,5142.402013312321 -8248,10192,18482,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-985.5918051982532,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,27.20729403770973,0,0,1,1,0,0,0,38.8,23.14,-9,-9,5,1,1,0,1,0,7,1,0,343,159156.6014639716,-16837.30750941171,124245.5692740505,0,1257.419936783465 -8248,10193,18483,-9,18482,-9,1,1,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-905.3107202719426,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.82,39.78,-9,-9,5,1,1,1,1,0,7,1,0,449,182588.1444620484,27385.71142438814,385105.2177995755,21923.50234169176,764.7087006210262 -8248,10194,18484,-9,18482,-9,1,0,46,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1032.615118225351,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.5,51.45,-9,-9,5,1,1,1,1,1,7,1,0,674,281857.8700503297,231235.6376740533,0,0,472.4073780025723 -8248,10195,18485,-9,18484,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-942.4242884875533,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,7,1,0,941,3297.727007168397,0,0,0,399.323942844612 -8249,10196,18486,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,9.550330306375992,9.35767835267286,0,0,-970.6850519335688,0,2,1,2019,16,6,0,0,4,6,0,0,0,1,.5139292035301244,0,25.04821956540272,0,1,1,0,1.221458810396568,9.057238412949006,59.27,21.5,-9,-9,5,1,1,0,0,2,7,5,1,366,372059.0614549567,268918.8800064399,0,0,6963.171201695923 -8250,10197,18487,18488,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.272448457019747,7.916750093120517,43,-1,25.89695108449815,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1615282763671,7.882814446289677,60.03,50.88,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,582,1234355.77360033,555987.743343071,213046.6340889892,0,3444.805101196734 -8250,10197,18488,18487,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.183119859619228,7.334889753914403,43,1,-106.2239690179396,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.722575699395075,7.314437594720857,57.16,56.15,60.03,50.88,8.333333333333334,1,1,0,0,0,12,4,1,582,1234355.77360033,555987.743343071,213046.6340889892,0,3444.805101196734 -8251,10198,18489,-9,18493,18490,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.0902014708771,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,662.4,741107.9465084294,436762.847052809,482985.6273278214,121509.177496822,5173.926505175352 -8251,10198,18490,18493,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.477934649408191,8.305005516681621,0,8,-2,-126.0894860274368,0,-9,-9,2019,9,0,42,50,1,1,0,11.39973794670134,11.39973794670134,0,0,0,0,0,1,1,0,0,0,52,56,63.09,45.22,8,1,1,0,0,1,7,5,1,662.4,741107.9465084294,436762.847052809,482985.6273278214,121509.177496822,5173.926505175352 -8251,10198,18491,-9,18493,18490,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.397311767721,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,662.4,741107.9465084294,436762.847052809,482985.6273278214,121509.177496822,5173.926505175352 -8251,10198,18492,-9,18493,18490,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.930299037233,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,662.4,741107.9465084294,436762.847052809,482985.6273278214,121509.177496822,5173.926505175352 -8251,10198,18493,18490,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,9.118209320334797,8.8590375268565,0,14,2,-43.99833475198099,0,2,3,2019,8,0,48,49,1,0,0,19.26823119579268,19.26823119579268,0,0,0,0,0,1,1,0,3.859728640729171,0,63.09,45.22,52,56,8.333333333333334,1,1,0,0,8,7,5,1,662.4,741107.9465084294,436762.847052809,482985.6273278214,121509.177496822,5173.926505175352 -8252,10199,18494,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-990.5178146309438,0,3,2,2019,30,12,0,0,4,12,0,0,0,1,6.50697328127503,0,49.49999761700826,0,1,1,0,0,0,26.84,27.16,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,333,-208083.4642655012,0,0,0,2816.293189191619 -8253,10200,18495,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.396561239866238,7.130641582499715,0,0,-1005.979681178826,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.220117271289174,59.8,41.42,-9,-9,10,1,1,0,0,0,13,3,1,918,845.1196617971873,11797.26762922216,163438.4956951155,0,1228.451235677402 -8254,10201,18496,-9,18499,18497,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.163528941926,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,641.5,227342.5545426836,99377.74210465644,282694.9615986752,154518.7445903013,5170.839493875369 -8254,10201,18497,18499,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,8.855227718960355,8.899204952431655,0,10,2,-197.5297184968124,0,2,1,2019,6,0,48,41,1,0,0,16.33444696157851,16.33444696157851,0,0,0,0,0,1,1,0,0,0,47.55,57.73,57.17,50.61,8.333333333333334,1,1,0,0,8,13,5,1,641.5,227342.5545426836,99377.74210465644,282694.9615986752,154518.7445903013,5170.839493875369 -8254,10201,18498,-9,18499,18497,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-989.7685785462144,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,641.5,227342.5545426836,99377.74210465644,282694.9615986752,154518.7445903013,5170.839493875369 -8254,10201,18499,18497,-9,-9,1,0,34,2,2,0,1,1,-9,0,4,8.710086376156397,8.605021761620293,0,10,-2,-67.12084785054314,0,3,3,2019,8,0,37,37,1,0,0,19.05030008473358,19.05030008473358,0,0,0,0,0,1,1,0,0,0,57.17,50.61,47.55,57.73,8.333333333333334,1,1,0,0,9,13,5,1,641.5,227342.5545426836,99377.74210465644,282694.9615986752,154518.7445903013,5170.839493875369 -8255,10202,18500,18501,-9,18502,1,0,68,0,1,0,1,1,-9,0,4,5.256474985851233,5.682582686227638,0,8,-6,110.3505407984778,0,2,2,2019,7,0,30,30,1,0,0,1.136163680208736,1.136163680208736,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,11,9,3,1,274.5,684256.6618715436,228035.9261819499,211559.5661250728,0,3319.066078494494 -8255,10202,18501,18500,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,0,7.641831838582085,7.977266725908143,8,6,-111.5020368079748,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.708764262544697,7.747912166144689,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,274.5,684256.6618715436,228035.9261819499,211559.5661250728,0,3319.066078494494 -8255,10203,18502,-9,-9,-9,1,1,92,0,1,0,3,3,-9,0,3,0,0,0,0,0,-921.7786188281824,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,.7109304990612382,15.76306973905021,29.68603072659238,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,9,1,1,346,300379.9191819058,0,274669.5591279182,0,1013.626252514607 -8256,10204,18503,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.056605853279478,7.582613770768887,7.226569920540977,0,0,-954.9819604756043,0,3,3,2019,11,0,17,24,1,0,0,7.022212656642609,7.022212656642609,0,0,0,0,0,0,0,0,7.114379390139352,6.913276603700532,36.03,59.01,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,319,2703534.32491466,171792.5398525523,1573207.117991019,0,1506.843133190793 -8257,10205,18504,18505,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.618008092702294,6.150153863046132,47,8,-128.9888214131223,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.322358361458301,6.656573175861197,48.53,58.91,27.2,57.84,8.333333333333334,1,1,0,0,3,8,4,1,1235,3357644.536777321,643526.7546702613,2497293.847653646,76218.93945487474,2839.09604425868 -8257,10205,18505,18504,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.407455971104959,8.288907875991557,0,47,-8,36.12527714791517,0,2,2,2019,13,2,36,37,1,2,0,18.63523522208504,18.63523522208504,0,0,0,0,0,1,1,0,0,0,27.2,57.84,48.53,58.91,5,1,1,0,0,12,8,4,1,1235,3357644.536777321,643526.7546702613,2497293.847653646,76218.93945487474,2839.09604425868 -8257,10206,18506,-9,18505,18504,1,0,39,0,0,0,2,2,-9,0,3,8.54904343431412,8.672046536801096,0,0,0,-945.1214327733175,0,2,2,2019,16,4,43,44,1,4,1,15.53533960119851,15.53533960119851,0,0,0,0,0,1,1,0,1.157841933530981,0,29.79,51.02,-9,-9,5,4,5,0,0,12,8,5,1,212,-99944.53079308162,-23694.71038035833,0,0,2435.743846781589 -8258,10207,18507,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-969.070723473958,0,3,2,2019,30,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,22.02,27.97,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,2479,-84217.85615772316,0,0,0,2742.276263716831 -8259,10208,18508,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.971039802995959,7.715603603485727,0,0,-1057.764502653115,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.573206192963787,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1886,534714.7827252414,271680.0757566422,421343.8746507369,0,2188.36752349849 -8259,10209,18509,-9,18508,-9,1,1,37,0,0,0,2,2,-9,0,3,8.32839392287242,8.257082505680819,0,0,0,-1069.42401327054,0,2,3,2019,23,9,40,40,1,9,0,15.25817709084932,15.25817709084932,0,0,0,0,0,1,1,0,0,0,39.03,45.61,-9,-9,3.333333333333333,4,2,0,0,5,8,4,1,610,19599.96608811244,0,0,0,1989.532980167097 -8260,10210,18510,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,6.109574155975137,6.507947342725361,0,0,-977.9025066829676,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.751111734851704,6.380034817830857,50.79,48.24,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1068,1227021.05888825,115776.5797796417,968207.9922068581,0,1021.922021287963 -8261,10211,18511,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1006.802537815589,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.66,52.94,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,739.3333333333334,-101749.7059341859,0,0,0,3018.910313947907 -8261,10211,18512,-9,18511,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-975.742042673347,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,7,1,0,739.3333333333334,-101749.7059341859,0,0,0,3018.910313947907 -8261,10211,18513,-9,18511,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.020040571061,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,739.3333333333334,-101749.7059341859,0,0,0,3018.910313947907 -8262,10212,18514,18515,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.87416513831486,8.878028806654063,0,3,5,10.06393627350961,0,2,2,2019,13,3,40,45,1,3,0,23.77482855803056,23.77482855803056,0,0,0,0,0,0,0,0,4.229234573110883,0,45.16,38.85,54.79,55.86,6.666666666666667,1,1,0,0,9,9,5,1,1318,117332.3630275511,81201.53144458015,226280.736020769,173438.6586285029,3903.636644070882 -8262,10212,18515,18514,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.343606032254339,8.131840376523114,0,3,-5,-47.51114338750224,0,-9,-9,2019,7,0,43,45,1,0,0,10.19875033863614,10.19875033863614,0,0,0,0,0,0,0,0,0,0,54.79,55.86,45.16,38.85,10,1,1,0,0,5,9,5,1,1318,117332.3630275511,81201.53144458015,226280.736020769,173438.6586285029,3903.636644070882 -8263,10213,18516,18517,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.289758132370933,8.846320302010843,7.521291254357863,10,2,46.96046029392955,0,3,2,2019,9,0,35,35,1,0,0,12.99331003758543,12.99331003758543,0,0,0,0,0,1,1,0,7.94467362734068,8.056314582372924,59.05,40.24,59.43,58.05,1.666666666666667,1,1,0,0,12,13,5,1,239,1546188.25966194,1141277.943491201,284081.1244308684,0,3801.271913599515 -8263,10213,18517,18516,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.135133988406066,7.183934091215852,0,10,-2,125.1708836538797,0,3,3,2019,8,0,30,30,1,0,0,6.094974521065802,6.094974521065802,0,0,0,0,0,1,1,0,.8297275360496387,0,59.43,58.05,59.05,40.24,8.333333333333334,1,1,0,0,12,13,5,1,239,1546188.25966194,1141277.943491201,284081.1244308684,0,3801.271913599515 -8264,10214,18518,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,5,9.582445419300869,9.769560304431147,0,0,0,-1010.520572504431,0,3,3,2019,5,0,16,16,1,0,0,123.9879864077053,123.9879864077053,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,0,2,3,0,0,7,11,5,0,716,465753.0281142493,236470.1530058798,192153.6449207307,62237.66614091027,6323.447497622398 -8264,10214,18519,-9,18518,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.9685652670323,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,5,0,716,465753.0281142493,236470.1530058798,192153.6449207307,62237.66614091027,6323.447497622398 -8264,10214,18520,-9,18518,-9,1,0,17,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1041.50849625283,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,8.333333333333334,4,2,0,1,0,11,5,0,716,465753.0281142493,236470.1530058798,192153.6449207307,62237.66614091027,6323.447497622398 -8265,10215,18521,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,5.889292839394148,6.121016977957508,0,0,-963.292716157564,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.878497494255298,38.39,40.89,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,1365,498051.8265692781,131409.4149228681,136603.4486151092,0,1005.599927083467 -8266,10216,18522,-9,18524,18523,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.3393204473756,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,1281,-27283.38771297382,35180.17118144431,0,0,2328.635942063734 -8266,10216,18523,18524,-9,-9,1,1,31,1,1,0,2,2,-9,0,5,8.839362831762118,8.298860272948446,0,8,1,25.91912319430519,0,-9,-9,2019,7,0,49,46,1,0,0,12.59701261843717,12.59701261843717,0,0,0,0,0,1,1,0,0,0,34.33,62.55,30.83,62.98,8.333333333333334,1,1,0,0,12,13,4,1,1281,-27283.38771297382,35180.17118144431,0,0,2328.635942063734 -8266,10216,18524,18523,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.740918690465335,7.735582081255623,0,8,-1,-113.1051740970853,0,2,2,2019,14,2,27,27,1,2,0,8.687179470774286,8.687179470774286,0,0,0,0,0,1,1,0,0,0,30.83,62.98,34.33,62.55,6.666666666666667,1,1,0,0,10,13,4,1,1281,-27283.38771297382,35180.17118144431,0,0,2328.635942063734 -8267,10217,18525,18526,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.974121928718775,8.545322031367537,0,7,2,-25.92305661506352,0,2,2,2019,8,1,50,48,1,1,0,17.54107289399058,17.54107289399058,0,0,0,0,0,0,0,0,0,0,51.73,58.82,48,57,8.333333333333334,1,1,0,0,8,12,5,1,1562,341338.6226244423,172752.2847532546,124167.6336502464,52727.20075743049,3979.386675752651 -8267,10217,18526,18525,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.442915967986128,8.223993983008894,0,7,-2,-103.6484110718392,0,-9,-9,2019,11,0,35,40,1,2,0,14.05268478552217,14.05268478552217,0,0,0,0,0,0,0,0,0,0,48,57,51.73,58.82,7,1,1,0,0,1,12,5,1,1562,341338.6226244423,172752.2847532546,124167.6336502464,52727.20075743049,3979.386675752651 -8268,10218,18527,18528,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.139622979671232,8.188175710635489,56,1,-46.5551678706167,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.668304671290364,8.360947452568844,60.12,54.8,58.9,45.74,8.333333333333334,1,1,0,0,0,9,3,1,744.5,1317951.117732065,241744.0076085008,495880.2425870802,0,3109.083580764513 -8268,10218,18528,18527,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,56,-1,-76.93118454522156,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.9,45.74,60.12,54.8,6.666666666666667,1,1,0,0,0,9,3,1,744.5,1317951.117732065,241744.0076085008,495880.2425870802,0,3109.083580764513 -8269,10219,18529,-9,18531,18530,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-895.6004592442392,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,1,214,99734.37000404313,31029.10583801838,0,0,1591.386597016217 -8269,10219,18530,-9,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.315893464257723,8.438683420241892,0,0,0,-966.7274802847288,0,2,1,2019,25,12,50,48,1,12,0,10.02943036523213,10.02943036523213,0,0,0,0,0,0,0,0,3.348523414177583,0,46.4,57.35,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,214,99734.37000404313,31029.10583801838,0,0,1591.386597016217 -8269,10220,18531,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.998311029539366,9.141317904823939,0,0,0,-977.0332222140348,0,2,2,2019,10,0,45,47,1,0,0,24.34405818242951,24.34405818242951,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,11,8,5,1,819,273331.3014027513,89014.53933417372,0,0,2900.587455844775 -8270,10221,18532,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,5.595677383656093,6.372789196391635,6.065728202658057,0,0,-1033.184669186629,0,3,3,2019,11,0,20,22,1,0,0,1.754730875816663,1.754730875816663,0,0,0,0,0,1,1,0,.8987763561693821,5.685758711273015,41.37,58.42,-9,-9,6.666666666666667,1,1,0,0,7,9,2,1,348,285339.4156310427,56264.4294980573,211361.7015968932,0,1350.345395907549 -8271,10222,18533,18534,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-16.81498582932025,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,2,3,0,0,0,8,2,1,801,696445.2377056852,305185.2638899453,285110.4949223052,0,1283.32450623537 -8271,10222,18534,18533,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.306057310396167,6.057280494619636,58,4,20.81917671853397,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.250668777018234,54,46,51,46,8,2,3,0,0,3,8,2,1,801,696445.2377056852,305185.2638899453,285110.4949223052,0,1283.32450623537 -8272,10223,18535,18536,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.204063103530018,7.265492322468064,0,22,-2,14.39727813947731,0,2,2,2019,22,11,17,17,1,11,0,9.833453085568317,9.833453085568317,0,0,0,0,0,1,1,0,0,0,27.97,60.5,47.62,56.48,6.666666666666667,1,1,0,0,3,8,3,1,471.75,126976.7301873951,76247.3720585875,152452.526037064,61177.34460695702,2531.223586566878 -8272,10223,18536,18535,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.224350369310473,8.160013549202475,0,23,2,58.13856826792792,0,2,1,2019,11,2,36,36,1,2,0,13.7457458111498,13.7457458111498,0,0,0,0,0,1,1,0,0,0,47.62,56.48,27.97,60.5,8.333333333333334,1,1,0,0,9,8,3,1,471.75,126976.7301873951,76247.3720585875,152452.526037064,61177.34460695702,2531.223586566878 -8272,10223,18537,-9,18535,18536,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.4251181333552,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,3,1,471.75,126976.7301873951,76247.3720585875,152452.526037064,61177.34460695702,2531.223586566878 -8272,10223,18538,-9,18535,18536,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.624239108311,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,471.75,126976.7301873951,76247.3720585875,152452.526037064,61177.34460695702,2531.223586566878 -8273,10224,18539,18540,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,44,3,0,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,31.48,24.6,41.28,38.13,0,2,3,0,1,0,4,1,1,189.5,-200334.7044578829,0,0,0,1471.120451699986 -8273,10224,18540,18539,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,44,-3,0,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,0,0,41.28,38.13,31.48,24.6,3.333333333333333,2,3,0,1,0,4,1,1,189.5,-200334.7044578829,0,0,0,1471.120451699986 -8273,10225,18541,-9,18540,18539,1,0,28,0,0,0,1,1,-9,0,3,7.268122164663014,7.189907900627044,0,0,0,-986.8636603538949,0,3,3,2019,26,12,25,15,1,12,0,7.74600537067708,7.74600537067708,0,0,0,0,101,1,1,0,0,0,38.75,53.76,-9,-9,0,2,3,0,0,9,4,3,1,212,-108459.4849166204,-22470.69550915974,0,0,1183.065944600401 -8273,10226,18542,-9,18540,18539,1,0,26,0,0,0,1,1,-9,0,3,8.311816630179269,8.291292395178283,0,0,0,-1013.07779028161,0,3,3,2019,9,0,41,38,1,0,0,9.939674882048475,9.939674882048475,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,2,3,0,0,9,4,4,1,622,-95549.54546209861,0,0,0,1702.620708296136 -8273,10227,18543,-9,18540,18539,1,0,25,0,0,1,2,0,0,0,2,0,0,0,0,0,-1034.33988343114,-9,3,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.73,50.33,-9,-9,5,2,3,0,0,9,4,1,1,800,75105.85577750868,0,0,0,0 -8274,10228,18544,18545,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.701291541177868,8.552553557160623,3.683547232352443,6,3,69.27970172808334,0,-9,-9,2019,9,0,50,45,1,0,0,8.571754311327682,8.571754311327682,0,0,0,0,0,0,0,0,0,4.05375524421799,56.37,40.62,43.42,62.33,8.333333333333334,1,1,0,0,10,5,4,1,1049,402617.15155521,127374.1591396582,134035.7676615609,75388.79529008696,2658.079328521972 -8274,10228,18545,18544,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.588816474182484,6.597450414474213,0,6,-3,2.387320154819995,0,3,3,2019,11,0,35,30,1,0,0,5.02394711108803,5.02394711108803,0,0,0,0,0,0,0,0,2.848989808719779,0,43.42,62.33,56.37,40.62,8.333333333333334,1,1,0,0,10,5,4,1,1049,402617.15155521,127374.1591396582,134035.7676615609,75388.79529008696,2658.079328521972 -8275,10229,18546,18548,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,8.333523221408656,8.562096073987036,0,6,2,101.9223107015708,0,-9,-9,2019,9,0,70,60,1,1,0,6.767393421207885,6.767393421207885,0,0,0,0,0,1,1,0,0,0,53,54,51,54,8,1,1,0,0,1,9,3,1,760.8,249268.3871597918,-19316.73309376555,255930.0362847845,105796.3001177733,3031.756989038793 -8275,10229,18547,-9,18548,18546,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-878.4311370348231,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,760.8,249268.3871597918,-19316.73309376555,255930.0362847845,105796.3001177733,3031.756989038793 -8275,10229,18548,18546,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.306449247875117,7.256659473678615,0,26,-2,-79.12477618263262,0,2,1,2019,10,0,18,0,1,1,0,11.01307046728695,11.01307046728695,0,0,0,0,0,1,1,0,0,0,51,54,53,54,8,1,1,0,0,3,9,3,1,760.8,249268.3871597918,-19316.73309376555,255930.0362847845,105796.3001177733,3031.756989038793 -8275,10229,18549,-9,18548,18546,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.409446273064,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,3,1,760.8,249268.3871597918,-19316.73309376555,255930.0362847845,105796.3001177733,3031.756989038793 -8275,10229,18550,-9,18548,18546,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.0153764579873,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,760.8,249268.3871597918,-19316.73309376555,255930.0362847845,105796.3001177733,3031.756989038793 -8276,10230,18551,18552,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.987126452856494,6.259699683879133,60,2,-83.94802866255797,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.771061681494071,46.81,49,58.32,50.22,8.333333333333334,1,1,0,0,0,2,2,0,1284.5,508718.531718348,55334.25517899401,316150.5351677952,0,1462.017661063675 -8276,10230,18552,18551,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,60,-2,-94.86213731465118,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,1.539903695775068,0,0,1,1,0,0,0,58.32,50.22,46.81,49,6.666666666666667,1,1,0,0,0,2,2,0,1284.5,508718.531718348,55334.25517899401,316150.5351677952,0,1462.017661063675 -8277,10231,18553,18555,-9,-9,1,1,24,0,1,0,2,2,-9,0,4,8.097245376269239,8.039880956782186,0,4,1,121.7009750298319,0,-9,-9,2019,9,1,45,46,1,1,0,8.177575697558465,8.177575697558465,0,0,0,0,0,1,1,0,0,0,46.39,60.99,35.64,52.4,5,1,1,0,1,5,9,3,0,365,210195.9710629921,-6011.560470653593,325817.9764915559,110916.637134411,1646.019232077673 -8277,10231,18554,-9,18555,18553,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.8154832189406,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,365,210195.9710629921,-6011.560470653593,325817.9764915559,110916.637134411,1646.019232077673 -8277,10231,18555,18553,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,0,0,0,4,-1,32.09685488406874,0,-9,-9,2019,23,10,0,42,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,52.4,46.39,60.99,3.333333333333333,1,1,0,1,7,9,3,0,365,210195.9710629921,-6011.560470653593,325817.9764915559,110916.637134411,1646.019232077673 -8278,10232,18556,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.641637641653497,7.505501719840527,0,0,-945.2804182384143,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.356537445458991,7.748171548651967,59.6,52.5,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,406,652568.2204892833,231555.5691420874,259844.1184085724,0,1498.776622843095 -8279,10233,18557,18558,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,9.65453978119435,9.516460566375615,0,25,-2,-51.02631245111701,-9,3,3,2019,6,0,30,0,1,0,0,69.78954817339024,69.78954817339024,0,0,0,0,0,0,0,0,0,0,54.61,51.04,57.16,56.15,6.666666666666667,1,1,0,0,10,6,5,1,174,150370.6380105727,136796.5097043017,172572.0408750837,283649.9139112864,9296.51042147435 -8279,10233,18558,18557,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.345987393850999,8.22794625742015,0,2,2,61.5640354424974,0,-9,-9,2019,7,0,45,45,1,0,0,11.6267561664594,11.6267561664594,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.61,51.04,8.333333333333334,1,1,0,0,10,6,5,1,174,150370.6380105727,136796.5097043017,172572.0408750837,283649.9139112864,9296.51042147435 -8280,10234,18559,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.005368712838,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,0,34.9,51.54,-9,-9,5,1,1,0,0,0,8,1,0,564,-62970.94564228688,0,0,0,551.6150244406434 -8281,10235,18560,18561,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,7.625339274354769,7.662137406056138,5.689422877840484,41,2,70.59030188528956,0,3,3,2019,9,0,10,12,1,0,0,29.94268085478,29.94268085478,0,0,0,0,14.5,1,1,0,5.365157831241499,5.125313603861175,64.40000000000001,42,57.27,41.15,8.333333333333334,1,1,0,0,11,10,3,1,447,553939.0284606473,351924.9592031024,231336.3714912498,58225.9451291664,3285.345705887359 -8281,10235,18561,18560,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.244829115032832,6.982616011090305,41,-2,62.18958330511249,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,7.136901517145448,7.076222925751079,57.27,41.15,64.40000000000001,42,8.333333333333334,1,1,0,0,11,10,3,1,447,553939.0284606473,351924.9592031024,231336.3714912498,58225.9451291664,3285.345705887359 -8282,10236,18562,18564,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,6.489263471596258,6.172383168461121,0,5,0,-77.68262877986545,0,2,1,2019,9,1,5,20,1,1,0,14.59675446164775,14.59675446164775,0,0,0,0,0,1,1,0,0,0,42.33,52.23,39.03,51.14,8.333333333333334,3,4,0,0,1,12,3,1,613.8,573187.0238469212,244321.6411001071,221049.1907284024,0,3471.882238538596 -8282,10236,18563,-9,18562,18564,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-882.42339226788,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,3,1,613.8,573187.0238469212,244321.6411001071,221049.1907284024,0,3471.882238538596 -8282,10236,18564,18562,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,8.695863580656425,8.708270929748075,5.17120746609028,5,0,117.5160214004977,0,2,1,2019,17,6,38,37,1,6,0,23.07841187126997,23.07841187126997,0,0,0,0,0,1,1,0,7.213996174423817,0,39.03,51.14,42.33,52.23,3.333333333333333,3,4,0,1,11,12,3,1,613.8,573187.0238469212,244321.6411001071,221049.1907284024,0,3471.882238538596 -8282,10236,18565,-9,18562,18564,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.766679895466,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,12,3,1,613.8,573187.0238469212,244321.6411001071,221049.1907284024,0,3471.882238538596 -8282,10236,18566,-9,18562,18564,1,0,14,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1021.490864131054,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,3,3,4,-9,0,0,12,3,1,613.8,573187.0238469212,244321.6411001071,221049.1907284024,0,3471.882238538596 -8283,10237,18567,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.728407991904518,6.72715981371159,0,0,-1013.872165598499,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.31555259367604,6.761281600766068,55.26,37.9,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,2587,90625.41205063554,159130.0838422111,0,0,1435.381910499216 -8284,10238,18568,18569,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,5.791146451756913,5.812218691681635,0,18,1,42.9138350943106,0,2,3,2019,11,0,22,31,1,0,0,1.926788063896023,1.926788063896023,0,0,0,0,0,1,1,0,0,0,50.06,55.28,47.64,52.35,8.333333333333334,1,1,0,0,12,10,4,0,748.3333333333334,297539.8708020789,85305.51891864186,248032.8897301909,51843.05915251599,2338.197214409215 -8284,10238,18569,18568,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.372720974171898,8.393141956090119,0,11,-1,41.28020390590193,0,-9,-9,2019,11,0,38,38,1,0,0,17.49775755559411,17.49775755559411,0,0,0,0,0,1,1,0,0,0,47.64,52.35,50.06,55.28,5,1,1,0,0,8,10,4,0,748.3333333333334,297539.8708020789,85305.51891864186,248032.8897301909,51843.05915251599,2338.197214409215 -8284,10238,18570,-9,18568,18569,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.8989708529562,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,748.3333333333334,297539.8708020789,85305.51891864186,248032.8897301909,51843.05915251599,2338.197214409215 -8285,10239,18571,18572,-9,-9,1,1,57,0,0,0,1,1,-9,1,3,9.441662901491082,9.487194429005731,0,10,-4,52.27409740404854,0,1,2,2019,14,4,48,60,1,4,0,32.04345856947381,32.04345856947381,0,0,0,0,14.5,1,1,0,0,0,59.54,35,38.65,17.4,10,1,1,0,0,11,10,5,1,1443.5,343559.541447743,176415.0902713,358284.2593089396,234705.6405867723,6318.904440101778 -8285,10239,18572,18571,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,7.361796091923133,7.123314679420522,10,4,4.134083141768532,0,2,1,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,3.202507041645184,7.246431069091597,38.65,17.4,59.54,35,6.666666666666667,1,1,0,0,4,10,5,1,1443.5,343559.541447743,176415.0902713,358284.2593089396,234705.6405867723,6318.904440101778 -8286,10240,18573,-9,18575,18574,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-817.053694250965,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,1004,260779.2758084636,147834.8387012847,380752.7451438468,307283.2529197659,4343.449653170357 -8286,10240,18574,18575,-9,-9,1,1,39,1,1,0,1,1,-9,0,3,9.0966903810637,8.986290972214158,0,2,7,-65.10093927060107,-9,-9,-9,2019,8,0,41,0,1,0,0,20.69077457045772,20.69077457045772,0,0,0,0,0,1,1,0,0,0,43.65,58.28,46.5,58.26,8.333333333333334,1,1,0,0,2,9,5,1,1004,260779.2758084636,147834.8387012847,380752.7451438468,307283.2529197659,4343.449653170357 -8286,10240,18575,18574,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.521880652183286,8.341560246285013,0,2,-7,-160.0932762528952,0,1,2,2019,12,3,26,43,1,3,0,21.20057200402325,21.20057200402325,0,0,0,0,0,1,1,0,0,0,46.5,58.26,43.65,58.28,3.333333333333333,1,1,0,0,11,9,5,1,1004,260779.2758084636,147834.8387012847,380752.7451438468,307283.2529197659,4343.449653170357 -8287,10241,18576,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,5.155416576213979,5.031598607688424,0,0,-1041.069503893795,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.970317377776512,44.35,38.91,-9,-9,6.666666666666667,1,1,0,0,4,12,2,0,382,172815.7228452704,60359.21377713697,83014.98811490825,0,537.0095704674416 -8288,10242,18577,18578,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.4352805973897,7.764734443067071,0,28,-1,28.49098561768294,0,3,3,2019,13,1,28,24,1,1,0,9.147800501612203,9.147800501612203,0,0,0,0,0,0,0,0,2.593538651846376,0,42.01,57.81,52.31,52.76,8.333333333333334,1,1,0,0,10,9,5,1,291.5,591941.8241634286,218275.7460705003,334089.0806219366,14570.51131346767,5105.567665684959 -8288,10242,18578,18577,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.468644721034847,9.436563569421432,0,25,1,-47.12530216777427,0,2,2,2019,7,0,48,48,1,0,0,41.16930390400872,41.16930390400872,0,0,0,0,0,0,0,0,5.76349205873954,0,52.31,52.76,42.01,57.81,6.666666666666667,1,1,0,0,10,9,5,1,291.5,591941.8241634286,218275.7460705003,334089.0806219366,14570.51131346767,5105.567665684959 -8288,10243,18579,-9,18577,18578,1,1,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-991.4614289352477,-9,1,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,2.471589241561441,0,48.87,58.55,-9,-9,8.333333333333334,1,1,1,0,0,9,2,1,310,-256941.6817694894,0,0,0,-104.4559493460276 -8288,10244,18580,-9,18577,18578,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-873.8821215510868,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.19341680429633,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,380,-83410.97267177042,0,0,0,376.0048319563016 -8289,10245,18581,-9,18583,18582,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.3980305963222,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,1406,461524.4880701941,243203.0564128994,181746.1531644785,0,2732.234706457561 -8289,10245,18582,18583,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.215075954836141,8.524164619338377,0,7,-1,-68.70183297620726,0,2,2,2019,12,0,36,41,1,0,0,13.52918272666878,13.52918272666878,0,0,0,0,0,1,1,0,.2561375255606022,0,39.65,56.19,54.2,57.49,5,1,1,0,0,7,7,4,1,1406,461524.4880701941,243203.0564128994,181746.1531644785,0,2732.234706457561 -8289,10245,18583,18582,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.182657003334351,7.525507481201169,0,7,1,5.32176648769008,0,2,2,2019,12,0,20,20,1,0,0,7.472412264157924,7.472412264157924,0,0,0,0,0,1,1,0,2.194867982951444,0,54.2,57.49,39.65,56.19,8.333333333333334,1,1,0,0,7,7,4,1,1406,461524.4880701941,243203.0564128994,181746.1531644785,0,2732.234706457561 -8290,10246,18584,-9,18585,18586,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.2230771126727,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,569.5,913461.8880976343,690388.2013139639,260732.6206532625,16154.87054388579,2588.099633093458 -8290,10246,18585,18586,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,8.21768055761258,8.053139850304063,0,19,-14,29.36886563072763,0,2,3,2019,14,4,53,32,1,4,0,8.798617443496587,8.798617443496587,0,0,0,0,0,1,1,0,0,0,37.23,51.73,44.83,41.9,8.333333333333334,1,1,0,0,9,5,4,0,569.5,913461.8880976343,690388.2013139639,260732.6206532625,16154.87054388579,2588.099633093458 -8290,10246,18586,18585,-9,-9,1,1,59,0,2,0,2,2,-9,0,2,8.056945393978353,8.139106262851341,0,19,14,-166.4539358329706,0,3,3,2019,24,12,48,48,1,12,0,6.46747035109941,6.46747035109941,0,0,0,0,0,1,1,0,0,0,44.83,41.9,37.23,51.73,3.333333333333333,1,1,0,0,9,5,4,0,569.5,913461.8880976343,690388.2013139639,260732.6206532625,16154.87054388579,2588.099633093458 -8290,10246,18587,-9,18585,18586,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.223446709255,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,569.5,913461.8880976343,690388.2013139639,260732.6206532625,16154.87054388579,2588.099633093458 -8291,10247,18588,18589,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.854423008833567,6.354912587559957,48,0,-12.83384455016215,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.574559680019048,6.638848951743287,57.09,46.7,44.27,55.17,10,1,1,0,0,10,10,2,1,1260.5,258771.5534869144,144836.0266074394,240055.2836625698,0,1819.835706818086 -8291,10247,18589,18588,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,1.435309137947156,1.191556720082402,48,0,-22.40903845966496,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.97007225771248,1.404897090176568,44.27,55.17,57.09,46.7,10,1,1,0,0,7,10,2,1,1260.5,258771.5534869144,144836.0266074394,240055.2836625698,0,1819.835706818086 -8292,10248,18590,18591,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.380451099935547,7.109977810434787,9,-3,102.5316891291384,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,.7257996359962191,0,0,1,1,0,1.818603658914374,7.462925368024903,60.14,38.88,53.98,50.87,8.333333333333334,1,1,0,0,2,11,2,1,853.5,837656.4187049806,337657.2706758204,190560.664078515,0,1870.546405261497 -8292,10248,18591,18590,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.189479403410197,5.122794148926769,9,3,-62.60963269304025,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,2.766560740309036,0,0,1,1,0,2.507600462247503,5.083770483180104,53.98,50.87,60.14,38.88,8.333333333333334,1,1,0,0,0,11,2,1,853.5,837656.4187049806,337657.2706758204,190560.664078515,0,1870.546405261497 -8293,10249,18592,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1121.155702555944,-9,-9,-9,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,24.77,65.61,-9,-9,6.666666666666667,1,1,0,0,4,9,1,1,379,45840.65859834501,0,0,0,0 -8294,10250,18593,18594,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,6.274160936250277,6.320346035359456,0,34,2,85.50434598868347,0,3,3,2019,7,0,15,15,1,0,0,4.006112876679582,4.006112876679582,0,0,0,0,0,1,1,0,6.071017327696415,0,58.15,52.91,55.76,52.64,8.333333333333334,1,1,0,0,13,9,2,1,610,1106342.042108085,655304.0803966469,456078.2275398867,0,1966.879421039724 -8294,10250,18594,18593,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,35,-2,-39.78373769242216,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.706332038221212,0,55.76,52.64,58.15,52.91,6.666666666666667,1,1,0,0,9,9,2,1,610,1106342.042108085,655304.0803966469,456078.2275398867,0,1966.879421039724 -8295,10251,18595,18596,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.744360512496552,8.928014210544319,0,21,-5,62.83593525598941,0,3,3,2019,8,1,44,44,1,1,0,18.26622720102435,18.26622720102435,0,0,0,0,0,0,0,0,2.640570018473069,0,48.81,47.48,50.11,55.32,8.333333333333334,1,1,0,0,12,9,5,1,747.5,640745.0273590765,475295.504856242,227780.6855550751,127479.3705191481,5247.036764040085 -8295,10251,18596,18595,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.945619786036085,8.794080087382783,0,21,5,-102.7491882429884,0,2,2,2019,6,0,40,50,1,0,0,26.78567115345459,26.78567115345459,0,0,0,0,0,0,0,0,0,0,50.11,55.32,48.81,47.48,8.333333333333334,1,1,0,0,12,9,5,1,747.5,640745.0273590765,475295.504856242,227780.6855550751,127479.3705191481,5247.036764040085 -8295,10252,18597,-9,18595,18596,1,1,23,0,0,0,1,1,-9,0,5,8.263771456867396,8.130800423369687,0,0,0,-1116.943774803758,0,2,1,2019,0,0,43,0,1,0,1,9.766088346697217,9.766088346697217,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1579,38979.97410493487,-72171.85620593808,0,0,1921.519444696522 -8295,10253,18598,-9,18595,18596,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-972.9932765534688,1,2,1,2019,7,0,0,29,2,0,1,0,0,0,0,0,0,0,0,0,0,.5385596572419933,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,617,120283.2072384128,0,0,0,42.94055932266934 -8296,10254,18599,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.23694019256496,8.284426015098544,0,0,0,-1092.922473505204,0,-9,-9,2019,14,4,45,24,1,4,0,9.279092668624413,9.279092668624413,0,0,0,0,0,0,0,0,0,0,48.62,49.45,-9,-9,6.666666666666667,3,4,0,0,3,8,4,1,731,554664.8967751783,361721.5804659273,0,0,1968.339606035421 -8297,10255,18600,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.923960622379167,8.233447826296597,0,0,0,-961.7799375645918,0,2,2,2019,13,3,40,60,1,3,0,11.09975335592761,11.09975335592761,0,0,0,0,0,0,0,0,1.576477711048019,0,37.6,46.12,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,2426,350932.8456416194,320785.265058991,137904.830875444,-1881.643964906047,1647.837010034029 -8298,10256,18601,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.39671284437213,7.752722648410245,0,0,0,-1081.005752826348,0,-9,-9,2019,15,3,50,50,1,3,0,4.49521125235886,4.49521125235886,0,0,0,0,74.5,0,0,0,0,0,53,40.54,-9,-9,3.333333333333333,1,1,0,0,9,5,3,1,309,188978.9540281511,-53302.1419025502,0,0,1277.253357777066 -8299,10257,18602,18603,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.685541432980582,9.470305366285272,0,14,3,-103.7585958908,0,2,2,2019,10,0,45,55,1,0,0,37.52188846072871,37.52188846072871,0,0,0,0,0,0,0,0,0,0,53.08,52.64,57.16,56.15,1.666666666666667,1,1,0,0,11,2,5,1,1552.5,93260.66604953745,6930.62915190459,0,0,6691.169807247556 -8299,10257,18603,18602,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.960969898010739,8.42061495067742,0,14,-3,30.14976317545344,0,2,2,2019,8,0,23,24,1,0,0,20.21101938918958,20.21101938918958,0,0,0,0,2,0,0,0,0,0,57.16,56.15,53.08,52.64,10,1,1,0,0,13,2,5,1,1552.5,93260.66604953745,6930.62915190459,0,0,6691.169807247556 -8300,10258,18604,18605,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.823149210124997,8.507908716037234,0,8,-3,74.68159375631286,0,1,1,2019,6,0,10,10,1,0,0,59.80403648892739,59.80403648892739,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,10,7,5,1,549.3333333333334,1313809.573877917,844572.6071220575,590160.2184243659,82397.55723971994,7093.472070622669 -8300,10258,18605,18604,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.412203067714632,9.498094005578864,0,8,3,18.73324506833465,0,-9,-9,2019,10,0,43,50,1,0,0,35.55980118813858,35.55980118813858,0,0,0,0,0,1,1,0,5.905629374029709,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,549.3333333333334,1313809.573877917,844572.6071220575,590160.2184243659,82397.55723971994,7093.472070622669 -8300,10258,18606,-9,18604,18605,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.793959032233,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,549.3333333333334,1313809.573877917,844572.6071220575,590160.2184243659,82397.55723971994,7093.472070622669 -8301,10259,18607,18609,-9,-9,1,1,26,1,1,0,1,1,-9,0,4,8.308878218812179,8.44833879617566,0,1,-1,68.5177279090108,-9,-9,-9,2019,4,0,38,0,1,0,0,15.35987646717795,15.35987646717795,0,0,0,0,0,1,1,0,0,0,52.06,50.42,58.3,52.91,8.333333333333334,1,1,0,0,2,5,4,0,326,-87216.49366607722,37226.01484794068,171510.102451617,133915.2499580255,3765.611367793691 -8301,10259,18608,-9,18609,18607,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-953.4634497886532,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,326,-87216.49366607722,37226.01484794068,171510.102451617,133915.2499580255,3765.611367793691 -8301,10259,18609,18607,-9,-9,1,0,27,1,1,0,3,3,-9,0,4,7.845567062625673,8.214471851136889,0,1,1,-25.06537515942448,-9,-9,-9,2019,13,1,49,0,1,1,0,6.622362193510794,6.622362193510794,0,0,0,0,0,1,1,0,0,0,58.3,52.91,52.06,50.42,8.333333333333334,1,1,0,0,2,5,4,0,326,-87216.49366607722,37226.01484794068,171510.102451617,133915.2499580255,3765.611367793691 -8302,10260,18610,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,6.1782169080583,6.527012029458318,0,0,0,-1008.390551362155,0,3,3,2019,19,7,8,28,1,7,0,8.148364610629818,8.148364610629818,0,0,0,0,0,1,1,0,6.695718751259934,0,40.61,64.02,-9,-9,6.666666666666667,1,1,0,1,8,9,2,0,603,337058.8098599282,304.5261568361457,301243.5138393422,53045.36706286098,1489.969376538701 -8303,10261,18611,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.382277851819203,7.36914938352057,0,0,-1131.572862138239,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.525613496917824,7.618228141823295,53.59,27.31,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,445,657783.9303101666,332054.8125035975,158372.6810222005,0,824.5686664929269 -8304,10262,18612,18613,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,7.256011863117914,7.646596029213763,0,43,9,-80.61146001804084,0,3,3,2019,10,0,30,32,1,1,0,7.517199520302957,7.517199520302957,0,0,0,0,0,1,1,0,0,0,50.25,48.67,61.61,13.86,6.666666666666667,1,1,0,0,9,12,4,1,538,2520567.285431265,1784259.095073594,629590.1773867749,68040.57910780786,4085.029867911602 -8304,10262,18613,18612,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,8.190597526641644,8.617745602699022,7.4681722033381,43,0,77.76202704674641,0,1,3,2019,10,0,45,40,1,0,0,8.697690152840389,8.697690152840389,0,0,0,0,0,1,1,0,6.376238497472028,7.758448738849554,61.61,13.86,50.25,48.67,6.666666666666667,1,1,0,0,7,12,4,1,538,2520567.285431265,1784259.095073594,629590.1773867749,68040.57910780786,4085.029867911602 -8305,10263,18614,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.934650805536858,7.13053652471957,0,0,-1017.925387318123,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.047427511220563,7.029504820845801,50.34,45.67,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,183,430252.5887553375,115589.4695910597,256707.3637186748,0,1213.647137219484 -8306,10264,18615,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1058.487993840516,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,50.28,-9,-9,6.666666666666667,1,1,0,0,2,13,1,0,285,98996.52412266484,0,0,0,1212.716475494142 -8307,10265,18616,18617,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.666137593632944,7.988507666567556,0,10,-3,-55.75592290419723,0,2,2,2019,18,6,37,35,1,6,0,8.109252295669071,8.109252295669071,0,0,0,0,0,1,1,0,0,0,37.78,47.83,48.95,37.31,3.333333333333333,1,1,0,0,11,9,3,1,516.25,406878.8416633084,31356.04334041462,387101.8342558956,151437.8988074815,2151.471552258399 -8307,10265,18617,18616,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.830523579309518,7.802099343585859,0,10,3,96.5796322748029,0,-9,-9,2019,11,1,39,36,1,1,0,7.956819790699426,7.956819790699426,0,0,0,0,0,1,1,0,0,0,48.95,37.31,37.78,47.83,5,1,1,0,0,10,9,3,1,516.25,406878.8416633084,31356.04334041462,387101.8342558956,151437.8988074815,2151.471552258399 -8307,10265,18618,-9,18616,18617,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.489307625649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,516.25,406878.8416633084,31356.04334041462,387101.8342558956,151437.8988074815,2151.471552258399 -8307,10265,18619,-9,18616,18617,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.1213777517879,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,516.25,406878.8416633084,31356.04334041462,387101.8342558956,151437.8988074815,2151.471552258399 -8308,10266,18620,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.632954081707981,8.310830745749277,0,0,0,-1025.671765485402,0,2,2,2019,10,1,40,40,1,1,0,14.06446539286199,14.06446539286199,0,0,0,0,2,1,1,0,0,0,49.86,47.44,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,1214,270227.5947439926,0,99543.0231702,0,2028.962165242055 -8309,10267,18621,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.618614687510712,8.439866251748885,0,0,0,-997.4711264043877,0,2,2,2019,6,0,40,30,1,0,0,11.95302303799708,11.95302303799708,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,731,-37139.477718689,-28069.08344918591,189538.7013410789,92293.12707275266,1330.273146290092 -8310,10268,18622,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.752153138688963,7.8092332000887,0,0,0,-982.4702830679519,0,2,3,2019,9,0,23,23,1,0,0,9.500431581517585,9.500431581517585,0,0,0,0,2,0,0,0,6.293170247075352,0,57.9,51.84,-9,-9,1.666666666666667,1,1,0,0,11,13,3,1,743,178261.2937559412,39354.17158670526,174411.7947688196,-4195.371793305872,1690.468740987664 -8311,10269,18623,-9,-9,-9,1,0,49,1,2,0,2,2,-9,1,2,0,0,0,0,0,-870.1025165420483,0,2,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.79,40.25,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,572.5,1075.672511362493,0,0,0,1447.300941872218 -8311,10269,18624,-9,18623,-9,1,0,14,1,2,1,3,0,-9,0,3,0,0,0,0,0,-948.8966294930191,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,1,0,572.5,1075.672511362493,0,0,0,1447.300941872218 -8311,10270,18625,-9,18623,-9,1,0,22,1,2,0,2,2,-9,0,3,8.014303940222819,7.937472081467281,0,0,0,-866.4091307932049,0,2,-9,2019,6,0,35,0,1,0,1,11.30627536581879,11.30627536581879,0,0,0,0,0,1,1,0,0,0,47.13,42.92,-9,-9,8.333333333333334,3,4,0,0,3,8,4,0,413.5,84717.69915599802,106456.9094539591,0,0,1426.500350449262 -8311,10270,18626,-9,18625,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.6333826789379,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,8,4,0,413.5,84717.69915599802,106456.9094539591,0,0,1426.500350449262 -8312,10271,18627,18628,-9,-9,1,1,39,1,1,0,2,2,-9,0,2,9.051552555507026,9.19758395669221,0,5,2,120.8192822807299,0,2,2,2019,8,1,80,48,1,1,0,12.46427985457772,12.46427985457772,0,0,0,0,0,1,1,0,1.056682490007794,0,52.24,50.75,49.35,59.64,8.333333333333334,1,1,0,0,9,4,5,0,1058.666666666667,294476.5759456176,341663.2673043353,260793.7087725269,311761.5099701809,5697.008104275585 -8312,10271,18628,18627,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.563949159158001,8.698567937541075,0,5,-2,-183.6082478915343,0,-9,-9,2019,11,0,40,52,1,0,0,16.05370399038938,16.05370399038938,0,0,0,0,0,1,1,0,0,0,49.35,59.64,52.24,50.75,8.333333333333334,1,1,0,0,5,4,5,0,1058.666666666667,294476.5759456176,341663.2673043353,260793.7087725269,311761.5099701809,5697.008104275585 -8312,10271,18629,-9,18628,18627,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.145188342836,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1058.666666666667,294476.5759456176,341663.2673043353,260793.7087725269,311761.5099701809,5697.008104275585 -8313,10272,18630,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.430856037848704,8.543914735485679,0,6,-7,-1.355252248600392,0,2,2,2019,11,0,40,40,1,0,0,11.04155884687727,11.04155884687727,0,0,0,0,0,1,1,0,2.915616619547979,0,51.14,60.45,61.43,48.88,8.333333333333334,1,1,0,0,11,10,4,1,515,466501.7760978432,229940.2986428055,156685.2209962853,30163.4507695295,2221.058631964277 -8313,10273,18631,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.839810526414809,7.587848703514688,6,7,-24.34841465593342,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.934888430895459,7.867062998484152,61.43,48.88,51.14,60.45,8.333333333333334,1,1,0,0,5,10,4,1,1018,1182818.452153739,396659.3691122126,640942.1402996385,0,2850.282108480257 -8314,10274,18632,18633,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.557229996829552,6.968478621965522,0,25,-3,6.606771546025511,0,3,2,2019,8,0,20,20,1,0,0,5.421195721447305,5.421195721447305,0,0,0,1.211955860851317,0,1,1,0,2.32831280139116,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,7,9,5,1,788.25,1231160.108943839,659277.0344269419,361809.3923196361,261894.4155183118,3612.336193152315 -8314,10274,18633,18632,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.245611142206974,9.284994298044152,0,25,3,74.85188882814036,0,2,2,2019,7,0,40,40,1,0,0,26.57948837428068,26.57948837428068,0,0,0,0,0,1,1,0,2.465975395846014,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,9,9,5,1,788.25,1231160.108943839,659277.0344269419,361809.3923196361,261894.4155183118,3612.336193152315 -8314,10274,18634,-9,18632,18633,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.487429789004,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,788.25,1231160.108943839,659277.0344269419,361809.3923196361,261894.4155183118,3612.336193152315 -8314,10274,18635,-9,18632,18633,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.341436306703,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,788.25,1231160.108943839,659277.0344269419,361809.3923196361,261894.4155183118,3612.336193152315 -8315,10275,18636,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1065.014891895579,0,3,3,2019,26,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,34.64,45.11,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,628,-72469.92857417927,0,0,0,627.0280810095096 -8316,10276,18637,18638,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,1.759884952981651,2.221042701041236,0,46,-4,60.8544528840489,0,-9,3,2019,6,0,30,35,1,0,0,.0264394490427519,.0264394490427519,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.14,44.63,8.333333333333334,1,1,0,0,11,9,3,1,839,777416.3951379495,388467.7978099524,417773.3324248118,0,3108.828950287262 -8316,10276,18638,18637,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.191888608568668,7.851752931269592,47,4,-78.30897794701896,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.408788505380733,7.420016429308853,59.14,44.63,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,839,777416.3951379495,388467.7978099524,417773.3324248118,0,3108.828950287262 -8317,10277,18639,-9,18641,18640,1,0,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-991.7076636596622,0,1,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,.3088937951981156,0,37.58,55.3,-9,-9,6.666666666666667,1,1,0,0,2,12,5,1,487.6666666666667,1472453.307624406,1098316.731892367,372354.1225088697,13061.76624940159,3196.858051393292 -8317,10277,18640,18641,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,7,3,-96.99856980720426,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2.958933539167978,0,32.65,56.8,37.3,41.2,5,1,1,0,0,0,12,5,1,487.6666666666667,1472453.307624406,1098316.731892367,372354.1225088697,13061.76624940159,3196.858051393292 -8317,10277,18641,18640,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,9.257533091462008,9.003083089368285,0,7,-3,136.5066132459932,0,2,-9,2019,13,1,38,38,1,1,0,27.76773706030501,27.76773706030501,0,0,0,0,0,0,0,0,4.706034919542383,0,37.3,41.2,32.65,56.8,8.333333333333334,1,1,0,0,8,12,5,1,487.6666666666667,1472453.307624406,1098316.731892367,372354.1225088697,13061.76624940159,3196.858051393292 -8318,10278,18642,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.835814515533987,4.779595713305174,0,0,-965.0824345530057,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.92778347310997,41.71,59.04,-9,-9,0,1,1,0,0,0,2,2,1,302,158611.0823366731,-21623.86275810129,86006.48029322864,0,772.0184947101421 -8319,10279,18643,-9,18644,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.9055861371338,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,891.5,202888.147756568,-30229.6017887792,392205.0227150919,140848.4374500288,2087.337462848929 -8319,10279,18644,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.581600313143865,8.539413871473009,6.386290317027621,0,0,-937.9634328335237,0,2,3,2019,11,0,38,37,1,0,0,15.06912536068102,15.06912536068102,0,0,0,0,0,1,1,0,6.399249960624275,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,8,8,4,1,891.5,202888.147756568,-30229.6017887792,392205.0227150919,140848.4374500288,2087.337462848929 -8320,10280,18645,18646,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.700416697039556,8.887657173278392,0,9,0,-5.312683622447063,0,2,2,2019,11,3,36,41,1,3,0,18.81691607659589,18.81691607659589,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.7,59.17,8.333333333333334,1,1,0,0,10,10,5,1,695,78056.15583689879,-40060.521402343,191509.0662624062,120840.8507158629,3504.526925158246 -8320,10280,18646,18645,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.107675581358761,8.061639703172219,0,9,0,-41.32575156338615,0,2,2,2019,23,8,39,38,1,8,0,8.166598796075151,8.166598796075151,0,0,0,0,0,0,0,0,0,0,41.7,59.17,57.16,56.15,6.666666666666667,1,1,0,0,9,10,5,1,695,78056.15583689879,-40060.521402343,191509.0662624062,120840.8507158629,3504.526925158246 -8321,10281,18647,18648,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,8,-18,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50.45,57.75,35.71,15.11,8.333333333333334,1,1,0,1,0,13,1,0,286.5,127228.2909041617,0,0,0,1388.203275161366 -8321,10281,18648,18647,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,8,18,0,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,35.2090746063575,0,0,1,1,0,0,0,35.71,15.11,50.45,57.75,3.333333333333333,1,1,0,1,0,13,1,0,286.5,127228.2909041617,0,0,0,1388.203275161366 -8322,10282,18649,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.419985744038973,8.230679193322901,0,0,0,-958.5874965970155,0,1,2,2019,9,0,35,37,1,0,0,12.74674280223247,12.74674280223247,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,5,4,0,736,-144799.2997175833,-16838.68159793201,0,0,2200.119583822341 -8323,10283,18650,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1056.850995978337,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,39.98,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,473,-150489.3068474786,0,0,0,812.8431672272899 -8324,10284,18651,18652,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.404889743869715,7.330966630352677,37,2,41.0366806893814,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.523573811526663,7.261915469449113,54.79,55.86,58.47,50.22,8.333333333333334,1,1,0,0,5,7,4,1,339.5,584652.4541520432,12150.16112788281,282343.1934004207,116156.3716144051,2553.857597992325 -8324,10284,18652,18651,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.35514890302702,8.487708970718682,36,-2,40.13753696540081,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.442590892689827,8.338772888040179,58.47,50.22,54.79,55.86,8.333333333333334,1,1,0,0,6,7,4,1,339.5,584652.4541520432,12150.16112788281,282343.1934004207,116156.3716144051,2553.857597992325 -8325,10285,18653,18655,-9,-9,1,1,26,1,2,0,2,2,-9,0,4,8.06876337599023,8.013807951753829,0,4,-2,-10.56374011804815,0,-9,-9,2019,7,0,44,52,1,0,0,7.999088198172426,7.999088198172426,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.88,59.72,6.666666666666667,1,1,0,0,7,13,3,1,954,30799.67320652978,-16254.42573972471,120740.8121286815,97575.30484968271,3508.861707999817 -8325,10285,18654,-9,18655,18653,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1168.146090154241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,954,30799.67320652978,-16254.42573972471,120740.8121286815,97575.30484968271,3508.861707999817 -8325,10285,18655,18653,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.619138425935205,7.689599824244644,0,4,2,92.54044309235611,0,-9,-9,2019,11,0,28,27,1,0,0,7.710909801941994,7.710909801941994,0,0,0,0,0,1,1,0,0,0,40.88,59.72,57.16,56.15,8.333333333333334,4,1,0,0,3,13,3,1,954,30799.67320652978,-16254.42573972471,120740.8121286815,97575.30484968271,3508.861707999817 -8325,10285,18656,-9,18655,18653,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.7975782088449,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,954,30799.67320652978,-16254.42573972471,120740.8121286815,97575.30484968271,3508.861707999817 -8326,10286,18657,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.100930103790834,8.066839910754801,0,0,0,-896.6070885034954,0,3,2,2019,19,7,39,39,1,7,0,8.576816548600437,8.576816548600437,0,0,0,0,7,0,0,0,0,0,40.53,55.55,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,265,-69283.61424265108,-60560.72038472386,0,0,821.9324004363956 -8327,10287,18658,-9,18659,-9,1,1,16,0,2,0,3,3,-9,0,5,0,0,0,0,0,-1050.557587723899,-9,2,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,0,0,0,6,2,1,3540,173779.0182550997,0,179223.6236918677,39836.01820440267,1656.150259704385 -8327,10287,18659,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,6.6329779714723,6.777741637758784,5.782091778382349,0,0,-1076.887813503894,0,3,3,2019,9,0,16,16,1,0,0,5.124468552475943,5.124468552475943,0,0,0,0,0,1,1,0,5.611075416805875,0,53.99,48.04,-9,-9,8.333333333333334,1,1,0,0,10,6,2,1,3540,173779.0182550997,0,179223.6236918677,39836.01820440267,1656.150259704385 -8327,10287,18660,-9,18659,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.700370278377,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,2,1,3540,173779.0182550997,0,179223.6236918677,39836.01820440267,1656.150259704385 -8327,10288,18661,-9,18659,-9,1,0,19,0,2,1,2,0,0,0,3,0,0,0,0,0,-1045.494607090165,-9,2,-9,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,33.47,51.99,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,119,58988.90203133901,0,0,0,-656.4761717239073 -8328,10289,18662,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.48914621689198,8.289947036893963,0,0,0,-911.7416681970064,0,3,-9,2019,10,0,37,37,1,0,0,11.68373047589212,11.68373047589212,0,0,0,0,27,0,0,0,2.861609220282359,0,50.24,58.02,-9,-9,10,1,1,0,0,10,4,4,1,2452,762457.2511066699,493676.933870764,170669.8362154201,36054.53794634327,2574.696342914225 -8329,10290,18663,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1025.249868894386,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,58.45,-9,-9,5,1,1,1,0,0,2,1,0,464.5,0,0,0,0,1020.034768276754 -8329,10290,18664,-9,-9,18663,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.9732121079644,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,464.5,0,0,0,0,1020.034768276754 -8330,10291,18665,18666,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,1,-22.80774880945465,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,26.84977190655231,0,0,1,1,0,0,0,38.94,27.06,39.39,37.66,6.666666666666667,1,1,0,0,0,13,2,1,611,239839.5284301968,29154.77429737079,217835.6629906525,0,1369.871688363718 -8330,10291,18666,18665,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.96138550916405,6.157048875974868,10,-1,-4.695526289833082,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,71.5,1,1,0,2.017945099897011,6.230645063107657,39.39,37.66,38.94,27.06,6.666666666666667,1,1,0,0,0,13,2,1,611,239839.5284301968,29154.77429737079,217835.6629906525,0,1369.871688363718 -8331,10292,18667,18668,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.367250843198832,8.425863282963556,0,6,0,93.95038170338516,0,-9,-9,2019,10,1,41,42,1,1,0,13.43783073413509,13.43783073413509,0,0,0,0,0,0,0,0,0,0,54.79,55.86,38.22,48.5,8.333333333333334,1,1,0,0,6,13,5,1,694,10461.83750193483,104821.0438882704,0,0,3210.432396383789 -8331,10292,18668,18667,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.055362425271708,8.284808406624393,0,6,0,-22.17799446901616,0,-9,-9,2019,15,3,53,38,1,3,0,8.401539854538342,8.401539854538342,0,0,0,0,0,0,0,0,0,0,38.22,48.5,54.79,55.86,3.333333333333333,1,1,0,0,3,13,5,1,694,10461.83750193483,104821.0438882704,0,0,3210.432396383789 -8332,10293,18669,-9,18671,18672,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.949765666283,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,440.25,1276263.651646315,964485.3639953721,554751.3699881271,220206.1191253423,4836.297212961688 -8332,10293,18670,-9,18671,18672,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.331842298967,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,440.25,1276263.651646315,964485.3639953721,554751.3699881271,220206.1191253423,4836.297212961688 -8332,10293,18671,18672,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.752744601960522,8.637380662469424,4.374800817299018,17,1,-86.76129124735527,0,2,1,2019,10,0,38,39,1,0,0,24.86112281020461,24.86112281020461,0,0,0,0,0,1,1,0,5.367542970074275,0,54.2,57.49,48.77,60.16,8.333333333333334,1,1,0,0,10,5,5,1,440.25,1276263.651646315,964485.3639953721,554751.3699881271,220206.1191253423,4836.297212961688 -8332,10293,18672,18671,-9,-9,1,1,36,0,2,0,1,1,-9,0,5,8.599701387077145,9.056014043973123,0,17,-1,7.555750686616792,0,1,2,2019,11,0,50,45,1,0,0,16.38449509544531,16.38449509544531,0,0,0,0,0,1,1,0,3.287376694226499,0,48.77,60.16,54.2,57.49,6.666666666666667,1,1,0,0,11,5,5,1,440.25,1276263.651646315,964485.3639953721,554751.3699881271,220206.1191253423,4836.297212961688 -8333,10294,18673,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,10.02714833412007,10.0179008456867,8.616775975838939,0,0,-963.992069978114,0,3,2,2019,10,0,7,50,1,0,0,274.6386971374608,274.6386971374608,0,0,0,0,0,1,1,0,8.781159686147394,8.918979425161009,61.43,43.34,-9,-9,5,1,1,0,0,10,10,5,1,333,3068254.617406523,1933943.464205789,658946.6455320085,331126.9238896942,9362.09215534945 -8334,10295,18674,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,5,7.795350458852041,8.10007091149987,0,0,0,-941.0522313427116,0,-9,-9,2019,3,1,42,42,1,1,0,6.44567368183671,6.44567368183671,0,0,0,0,0,1,0,1,0,0,52,57,-9,-9,10,1,1,0,0,6,2,3,0,244,168426.892120048,0,89162.47653407033,68637.03317257462,1466.247470315787 -8334,10295,18675,-9,18674,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1006.984163591768,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,0,244,168426.892120048,0,89162.47653407033,68637.03317257462,1466.247470315787 -8334,10296,18676,-9,18674,-9,1,1,26,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1032.731823945322,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,58,-9,-9,7,1,1,1,0,0,2,1,0,506,0,0,0,0,0 -8335,10297,18677,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.939997805569305,7.67393532189973,0,0,0,-1045.050692504168,-9,3,3,2019,9,0,24,0,1,0,0,11.61610875660252,11.61610875660252,0,0,0,0,7,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,11,6,3,1,408,401017.37681943,79234.92931701677,147151.3850402688,0,1621.027186600808 -8335,10298,18678,-9,18677,-9,1,0,25,0,0,0,2,2,-9,0,5,8.377626340063697,8.563380600282541,0,0,0,-801.5744267409359,-9,2,2,2019,7,0,57,0,1,0,1,7.019384832261252,7.019384832261252,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,1588,109945.281432195,-17106.49383723044,0,0,1569.889796950515 -8336,10299,18679,18680,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.159217852181227,8.732559329727289,0,30,8,-4.643246407892338,0,3,3,2019,7,0,37,37,1,0,0,23.3819113563715,23.3819113563715,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49,55,8.333333333333334,2,3,0,0,11,9,5,1,510,714075.9283566854,143865.4801937187,424679.5789789681,66539.19026287305,4068.653834902934 -8336,10299,18680,18679,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.22617774512868,8.137945578838583,0,30,-8,-37.06539514222358,0,3,-9,2019,10,0,40,40,1,1,0,9.905357768716442,9.905357768716442,0,0,0,0,0,0,0,0,0,0,49,55,57.16,56.15,8,2,3,0,0,1,9,5,1,510,714075.9283566854,143865.4801937187,424679.5789789681,66539.19026287305,4068.653834902934 -8336,10300,18681,-9,18680,18679,1,1,25,0,0,0,1,1,-9,0,5,8.007208080641135,8.236657341518926,0,0,0,-1047.100662323938,0,2,2,2019,7,0,37,37,1,0,1,12.39230358913876,12.39230358913876,0,0,0,0,0,0,0,0,3.844273703056928,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1048,126707.3168848745,73507.81057787189,0,0,1658.52120349133 -8336,10301,18682,-9,18680,18679,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-991.5139109854333,-9,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,9,1,1,392,77446.93080716932,0,0,0,0 -8337,10302,18683,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.430720420219272,7.179439988456587,0,0,-946.6101970018753,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.209778076048228,60.12,54.8,-9,-9,10,1,1,0,0,0,7,3,1,73,909506.014399659,244441.0935453626,319722.374384534,0,1175.264310890706 -8338,10303,18684,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,0,0,0,0,0,-961.3840297842631,0,2,2,2019,20,8,0,54,3,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48.15,52.09,-9,-9,5,1,1,1,0,7,8,1,0,1474,-70399.98942013503,0,0,0,743.43845150731 -8339,10304,18685,18686,-9,-9,1,0,24,1,2,0,2,2,-9,0,5,7.10116135408031,7.040047652043675,0,2,-1,57.22159785220452,0,-9,-9,2019,10,0,22,0,1,0,0,7.013900862657382,7.013900862657382,0,0,0,0,0,1,1,0,0,0,54.67,57.49,35.62,57.74,8.333333333333334,1,1,0,0,1,2,2,0,339.5,51655.49057873947,-779.1766687014078,0,0,1860.009377188336 -8339,10304,18686,18685,-9,-9,1,1,25,1,2,0,3,3,-9,0,3,0,0,0,2,1,70.05861697694682,0,2,2,2019,11,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.62,57.74,54.67,57.49,5,1,1,1,1,2,2,2,0,339.5,51655.49057873947,-779.1766687014078,0,0,1860.009377188336 -8339,10304,18687,-9,18685,18686,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.529167520944,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,339.5,51655.49057873947,-779.1766687014078,0,0,1860.009377188336 -8339,10304,18688,-9,18685,18686,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.345493306686,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,339.5,51655.49057873947,-779.1766687014078,0,0,1860.009377188336 -8340,10305,18689,18690,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,8.348136212700494,8.049183418173088,9,2,57.63895859497138,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.399744700999149,8.026349322607222,40.27,31.82,49.43,44.66,3.333333333333333,1,1,0,0,0,6,3,1,449,994279.4763141922,583999.8972716192,181758.953339138,0,3188.927458541502 -8340,10305,18690,18689,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-83.11503385650728,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,0,14.77158141986262,0,0,1,1,0,.074177545746494,0,49.43,44.66,40.27,31.82,8.333333333333334,1,1,0,0,0,6,3,1,449,994279.4763141922,583999.8972716192,181758.953339138,0,3188.927458541502 -8341,10306,18691,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.64108258276934,7.736451715528617,4.983483769221216,0,0,-1000.974307187439,0,2,2,2019,17,5,26,26,1,5,0,9.185196712961982,9.185196712961982,0,0,0,0,0,1,1,0,0,5.573036494080235,35.4,37.61,-9,-9,5,1,1,0,0,13,2,3,0,831,195728.702556318,99628.18102356824,0,0,916.5472757094628 -8342,10307,18692,18693,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.933062367874229,6.875063534328005,9,1,6.601976260509853,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.125570375198957,7.009682083629558,56.33,51.02,54.13,48.04,6.666666666666667,1,1,0,0,3,10,3,1,678.5,1324948.415584702,392110.8087545723,655730.6836239689,0,2780.881421281989 -8342,10307,18693,18692,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.75126302039748,6.651730911850347,9,-1,65.83403359057807,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.055782441608396,6.504643000622416,54.13,48.04,56.33,51.02,8.333333333333334,1,1,0,0,3,10,3,1,678.5,1324948.415584702,392110.8087545723,655730.6836239689,0,2780.881421281989 -8343,10308,18694,18696,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.843226897671618,7.785982787753598,0,10,3,-96.32127109592584,0,2,3,2019,14,2,37,35,1,2,0,7.218081793001337,7.218081793001337,0,0,0,0,0,1,1,0,0,0,33.18,60.48,58.32,50.22,5,1,1,0,0,12,2,4,1,2211.333333333333,236284.2237615845,151107.704474908,133506.5210557089,66481.89100388938,4222.203230946267 -8343,10308,18695,-9,18694,18696,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.9488063873058,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,2211.333333333333,236284.2237615845,151107.704474908,133506.5210557089,66481.89100388938,4222.203230946267 -8343,10308,18696,18694,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.88723687274001,8.869364650094914,0,10,-3,-76.27226198914154,0,3,2,2019,10,0,43,44,1,0,0,15.81344063110636,15.81344063110636,0,0,0,0,0,1,1,0,0,0,58.32,50.22,33.18,60.48,8.333333333333334,1,1,0,0,12,2,4,1,2211.333333333333,236284.2237615845,151107.704474908,133506.5210557089,66481.89100388938,4222.203230946267 -8344,10309,18697,18698,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.734874736249131,5.931363496825412,30,-2,10.68455138939089,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.020889986221293,53,46,51,46,7,1,1,0,0,1,10,2,1,969.5,367128.4349612236,194474.211298003,243681.2819882827,0,1522.435301987995 -8344,10309,18698,18697,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.007974071621008,6.759209948830781,0,30,2,-77.43991779312694,0,-9,3,2019,11,0,26,20,1,1,0,4.451644717220611,4.451644717220611,0,0,0,0,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,8,10,2,1,969.5,367128.4349612236,194474.211298003,243681.2819882827,0,1522.435301987995 -8345,10310,18699,18700,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.163821212000847,6.584088239700558,45,4,79.14082474234759,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.758830525358915,6.314859007798858,42.79,50.41,45.67,49.18,8.333333333333334,1,1,0,0,13,11,2,1,312.5,1178949.53695372,35178.08226068284,285532.2623627146,0,5834.48877526278 -8345,10310,18700,18699,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.166121474431785,4.882903359573018,45,-4,2.723522669150196,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.780759306628829,4.634032020368714,45.67,49.18,42.79,50.41,8.333333333333334,1,1,0,0,13,11,2,1,312.5,1178949.53695372,35178.08226068284,285532.2623627146,0,5834.48877526278 -8346,10311,18701,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.882467945852846,5.850402553284085,0,0,-971.7055383524229,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,3.817332355109539,0,0,0,1,1,0,5.364272410703973,5.853142489891005,41.1,53.94,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,211,182647.8553657338,0,64705.69766671305,0,596.74034146592 -8347,10312,18702,-9,18703,18705,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.8957447315122,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1211.25,426088.1483129027,80532.98997671984,731144.6134129302,386597.7657321942,4826.919431839948 -8347,10312,18703,18705,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.34576509584787,8.319487522186881,0,7,-3,-52.8956462094885,0,2,3,2019,14,2,40,40,1,2,0,13.46587319143328,13.46587319143328,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,0,1211.25,426088.1483129027,80532.98997671984,731144.6134129302,386597.7657321942,4826.919431839948 -8347,10312,18704,-9,18703,18705,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.9395382939367,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1211.25,426088.1483129027,80532.98997671984,731144.6134129302,386597.7657321942,4826.919431839948 -8347,10312,18705,18703,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.149440549819372,9.14999294955803,0,7,3,-3.589197225011108,0,3,-9,2019,10,0,40,48,1,0,0,21.38203054007727,21.38203054007727,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49.46,56.91,8.333333333333334,1,1,0,0,8,9,5,0,1211.25,426088.1483129027,80532.98997671984,731144.6134129302,386597.7657321942,4826.919431839948 -8348,10313,18706,18707,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,0,0,0,13,-4,39.01872019132922,0,1,1,2019,13,3,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,4.745989185507106,0,44.41,51.22,26.15,67.86,6.666666666666667,1,1,1,0,8,10,3,1,315,-97851.0403598858,0,0,0,1294.838901079347 -8348,10313,18707,18706,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.102313774544733,8.105397777845344,0,13,4,39.85860981231871,0,2,2,2019,19,6,70,70,1,6,0,5.794996657571899,5.794996657571899,0,0,0,0,0,0,0,0,4.647671103953026,0,26.15,67.86,44.41,51.22,8.333333333333334,1,1,0,0,7,10,3,1,315,-97851.0403598858,0,0,0,1294.838901079347 -8349,10314,18708,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1027.800898975864,0,3,2,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.56,17.19,-9,-9,0,1,1,0,0,0,9,1,0,485,-82811.91507531988,0,0,0,2007.746957268118 -8350,10315,18709,18710,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,63,1,-57.55116337837616,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,.4776162360780241,0,1,1,0,0,0,53,45,57.48,47.92,8,1,1,0,0,0,5,2,0,614,521925.9989187482,118494.6279062299,192868.615501551,0,1972.123830213904 -8350,10315,18710,18709,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.567643977631429,6.518828578275044,63,-1,72.69019206536204,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.855019025669255,57.48,47.92,53,45,6.666666666666667,1,1,0,0,5,5,2,0,614,521925.9989187482,118494.6279062299,192868.615501551,0,1972.123830213904 -8351,10316,18711,18712,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.471643764918978,8.289189436974233,0,5,1,-99.29090899220742,0,-9,-9,2019,9,0,50,35,1,1,0,10.62417377321728,10.62417377321728,0,0,0,0,0,0,0,0,1.666567494281319,0,53,54,51.14,60.45,7,1,1,0,0,1,2,5,1,279,1110604.53351428,944121.3505108244,160007.0584511529,4741.688076199815,3752.063589139922 -8351,10316,18712,18711,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.531388633344367,8.662398809402724,0,30,-1,151.0686483081309,0,2,2,2019,8,0,37,39,1,0,0,18.23810432957371,18.23810432957371,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53,54,8.333333333333334,1,1,0,0,8,2,5,1,279,1110604.53351428,944121.3505108244,160007.0584511529,4741.688076199815,3752.063589139922 -8352,10317,18713,-9,18716,18714,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1147.548489917206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,816.5,886565.794034806,237381.5047487326,845337.8556779431,269512.6247346039,9770.622056118553 -8352,10317,18714,18716,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.576265105754265,9.686262295164108,0,16,2,90.24231275809744,0,1,1,2019,10,0,55,46,1,0,0,36.01094665454164,36.01094665454164,0,0,0,1.430099461945581,0,0,0,0,2.795562183425259,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,8,5,1,816.5,886565.794034806,237381.5047487326,845337.8556779431,269512.6247346039,9770.622056118553 -8352,10317,18715,-9,18716,18714,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-908.8540827798651,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,8,5,1,816.5,886565.794034806,237381.5047487326,845337.8556779431,269512.6247346039,9770.622056118553 -8352,10317,18716,18714,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.413360514302111,9.548687915407047,0,16,-2,24.91697169694472,0,2,1,2019,8,0,38,40,1,0,0,32.40545285542841,32.40545285542841,0,0,0,0,0,0,0,0,7.699248558959113,0,48.87,58.55,54.2,57.49,8.333333333333334,2,3,0,0,8,8,5,1,816.5,886565.794034806,237381.5047487326,845337.8556779431,269512.6247346039,9770.622056118553 -8353,10318,18717,-9,18719,18718,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.097253664397,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,698.5,298120.6544759154,185336.6838962513,342329.8920356521,187027.0948017027,2401.663957244139 -8353,10318,18718,18719,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.989028388947638,7.690001175468169,0,9,2,105.8198685967983,0,-9,-9,2019,6,0,100,50,1,0,0,3.621399541373809,3.621399541373809,0,0,0,0,0,0,0,0,0,0,41.06,55.28,49.04,55.86,5,1,1,0,0,10,10,4,1,698.5,298120.6544759154,185336.6838962513,342329.8920356521,187027.0948017027,2401.663957244139 -8353,10318,18719,18718,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.227636485653909,8.071824039991624,0,9,-2,-49.09531529042266,0,1,2,2019,11,1,54,45,1,1,0,6.15865722011451,6.15865722011451,0,0,0,0,0,0,0,0,1.026402324803986,0,49.04,55.86,41.06,55.28,8.333333333333334,1,1,0,0,10,10,4,1,698.5,298120.6544759154,185336.6838962513,342329.8920356521,187027.0948017027,2401.663957244139 -8353,10318,18720,-9,18719,18718,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.1271759990586,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,698.5,298120.6544759154,185336.6838962513,342329.8920356521,187027.0948017027,2401.663957244139 -8354,10319,18721,18722,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.787937358094955,7.977617839693638,4,2,-27.84839786847516,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.774318933488633,7.669703512570502,54.96,53.17,59.29,49.68,8.333333333333334,1,1,0,0,4,4,3,1,2069,1072583.309521889,790398.5568054469,249584.5194015218,0,1843.606481084244 -8354,10319,18722,18721,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.836676004674276,6.886407952396177,4,-2,-109.2288679294522,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.839044640581257,59.29,49.68,54.96,53.17,8.333333333333334,1,1,0,0,5,4,3,1,2069,1072583.309521889,790398.5568054469,249584.5194015218,0,1843.606481084244 -8355,10320,18723,18724,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,9.227849789108104,9.170615870400196,0,3,2,93.16477898852794,0,-9,-9,2019,15,3,48,50,1,3,0,22.45060385545555,22.45060385545555,0,0,0,0,0,0,0,0,0,0,31.02,54.54,45.91,59.89,5,1,1,0,0,11,6,5,1,490.5,599594.8886138982,283707.9087666213,295219.0444658458,88403.93814063433,7553.314309181937 -8355,10320,18724,18723,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.422174753368731,9.375227365589947,0,3,-2,-61.51889782941957,0,-9,-9,2019,9,0,36,32,1,0,0,31.03853290705872,31.03853290705872,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.02,54.54,8.333333333333334,1,1,0,0,9,6,5,1,490.5,599594.8886138982,283707.9087666213,295219.0444658458,88403.93814063433,7553.314309181937 -8356,10321,18725,18726,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.006964877960012,7.85056592290301,0,5,-7,-90.21978538851707,0,-9,-9,2019,11,0,37,-9,1,1,0,10.31746259420628,10.31746259420628,0,0,0,0,0,0,0,0,0,0,49,56,25.1,68.28,7,4,1,0,0,1,9,5,1,360.5,590938.3911694242,161777.5731196827,90147.8851716627,0,3727.491287320712 -8356,10321,18726,18725,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.48036882684176,8.753131413645759,0,5,7,-47.92829952325572,0,-9,2,2019,22,10,57,53,1,10,0,11.11558524603636,11.11558524603636,0,0,0,0,0,0,0,0,4.807115225123046,0,25.1,68.28,49,56,5,1,1,0,0,8,9,5,1,360.5,590938.3911694242,161777.5731196827,90147.8851716627,0,3727.491287320712 -8357,10322,18727,18728,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,10.24386311865064,10.12619942841856,0,3,-14,153.4953403905594,-9,-9,-9,2019,13,5,60,0,1,5,0,51.30517527025894,51.30517527025894,0,0,0,0,0,1,1,0,7.378341260808945,0,59.46,19.85,57.63,56.14,10,1,1,0,0,12,6,5,1,322.5,5679079.091373277,2670659.114216537,1004421.521533314,0,13846.99763213284 -8357,10322,18728,18727,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.979006850447101,9.027900377355031,3,14,-1.992768778223552,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.525311122326487,8.937198389951341,57.63,56.14,59.46,19.85,8.333333333333334,1,1,0,0,0,6,5,1,322.5,5679079.091373277,2670659.114216537,1004421.521533314,0,13846.99763213284 -8358,10323,18729,18730,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,7.735802759020559,7.963976644459303,65,1,-6.339696210975442,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.363239764606855,7.657912668810559,55.21,43.87,58.47,50.22,8.333333333333334,1,1,0,0,0,7,3,1,956.5,966675.9249705938,117321.2736564657,279879.0222168879,0,2354.96673263035 -8358,10323,18730,18729,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,65,-1,-36.344804322717,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,55.21,43.87,8.333333333333334,1,1,0,0,0,7,3,1,956.5,966675.9249705938,117321.2736564657,279879.0222168879,0,2354.96673263035 -8359,10324,18731,18732,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.625297942131759,8.347617348129198,0,9,-3,-5.995116106546642,0,3,2,2019,7,0,77,37,1,0,0,6.207634368628843,6.207634368628843,0,0,0,0,2,0,0,0,2.007504019199245,0,57.33,53.46,48.29,47.89,8.333333333333334,1,1,0,0,9,10,5,1,808,79252.93994048069,-19695.69915105378,338456.4134731699,227733.6535357932,3641.792624863733 -8359,10324,18732,18731,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.765308072546057,8.850065110080756,6.00184042471907,9,3,28.92476230197995,0,3,2,2019,8,0,35,36,1,0,0,22.7274149662443,22.7274149662443,0,0,0,0,2,0,0,0,6.188769454067818,0,48.29,47.89,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,808,79252.93994048069,-19695.69915105378,338456.4134731699,227733.6535357932,3641.792624863733 -8360,10325,18733,18734,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.336441130847969,7.317152817685233,46,0,-7.390637306214733,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.483713688399741,7.284772384543121,46.55,44.15,51.42,49.68,6.666666666666667,1,1,0,0,0,10,2,1,295,538068.9819480472,396696.4642276453,0,0,2273.104211961993 -8360,10325,18734,18733,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,5.180204989010093,5.425790489790645,46,9,11.00693716814037,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,3.242544966488274,0,0,1,1,0,0,4.939436677177933,51.42,49.68,46.55,44.15,10,1,1,0,0,0,10,2,1,295,538068.9819480472,396696.4642276453,0,0,2273.104211961993 -8361,10326,18735,18736,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,56,3,0,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.419082834458393,0,0,1,1,0,0,0,69.41,11.5,53.62,28.07,8.333333333333334,1,1,0,0,0,4,1,1,990.5,302243.9138472587,86370.13516577447,110998.9990706398,0,1239.228324621596 -8361,10326,18736,18735,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,56,-3,0,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,4.89048413822251,0,120,1,1,0,0,0,53.62,28.07,69.41,11.5,10,1,1,0,0,0,4,1,1,990.5,302243.9138472587,86370.13516577447,110998.9990706398,0,1239.228324621596 -8361,10327,18737,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.948225906909553,7.627429072650449,0,0,0,-1035.188863551346,0,-9,-9,2019,10,1,60,60,1,1,0,4.65274360459158,4.65274360459158,0,0,0,0,0,1,1,0,0,0,26.21,59.8,-9,-9,5,1,1,0,0,6,4,3,1,394,-148830.0470358983,-77665.17039833477,0,0,1293.175421240072 -8361,10328,18738,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,3,6.679297587705711,7.045449407425553,0,0,0,-1045.254138248667,-9,-9,-9,2019,6,0,23,0,1,0,0,5.707324101182186,5.707324101182186,0,0,0,0,0,1,1,0,0,0,51.25,38.31,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,541,-95411.97228601581,0,0,0,274.4717641296215 -8362,10329,18739,18740,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.273604958239034,7.696744301531132,5.560262070325994,3,0,147.879587644829,0,-9,-9,2019,11,0,20,16,1,0,0,10.3024704686879,10.3024704686879,0,0,0,0,0,1,1,0,5.424001741099905,0,57.91,43.45,56.19,46.16,8.333333333333334,1,1,0,0,8,1,3,0,1173.75,1915455.993707376,270548.8865607807,158333.6468646284,73855.34221478655,3209.958113184021 -8362,10329,18740,18739,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.512780892301103,8.674739178497834,0,3,0,17.94210192983089,0,-9,-9,2019,6,0,48,38,1,0,0,13.30104035096461,13.30104035096461,0,0,0,0,0,1,1,0,0,0,56.19,46.16,57.91,43.45,6.666666666666667,1,1,0,0,2,1,3,0,1173.75,1915455.993707376,270548.8865607807,158333.6468646284,73855.34221478655,3209.958113184021 -8362,10329,18741,-9,18739,18740,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1097.805913889589,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.7,42.72,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,1173.75,1915455.993707376,270548.8865607807,158333.6468646284,73855.34221478655,3209.958113184021 -8362,10329,18742,-9,18739,18740,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.3839647119129,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,0,1173.75,1915455.993707376,270548.8865607807,158333.6468646284,73855.34221478655,3209.958113184021 -8363,10330,18743,-9,-9,-9,1,1,22,0,0,0,2,2,0,1,1,0,0,0,0,0,-971.8867168146807,-9,-9,-9,2019,32,10,0,0,2,10,0,0,0,0,0,0,0,2,1,1,0,0,0,27.64,25.41,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,929,-5463.964024893657,0,0,0,915.4303605608413 -8364,10331,18744,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.922478312869453,8.013156495010598,0,0,0,-1057.185284722274,0,-9,-9,2019,11,0,43,42,1,0,0,8.035732191341001,8.035732191341001,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,7,2,4,1,254,109030.3190403448,0,0,0,1586.433486762857 -8364,10332,18745,-9,-9,18744,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-966.0732443610426,0,-9,3,2019,26,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,7.94,69.55,-9,-9,5,1,1,1,0,0,2,1,1,888,211312.0718150382,0,0,0,0 -8365,10333,18746,18747,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.67665085553478,7.382556628222232,7,1,-75.23754852726324,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.823282093915946,7.966478535145319,57.16,56.15,57.16,56.15,10,1,1,0,0,0,2,3,1,1520,867940.8666626296,687928.1365379456,104968.3984970966,23082.06296527185,4005.004144202077 -8365,10333,18747,18746,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.245851707608064,7.272905447852861,7,-1,-43.96878127274149,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.668148710160029,7.032498258134272,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,1520,867940.8666626296,687928.1365379456,104968.3984970966,23082.06296527185,4005.004144202077 -8366,10334,18748,18749,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.610900813477209,7.376333820462611,0,6,0,18.40454157992291,0,3,2,2019,8,0,8,8,1,0,0,28.48696215152468,28.48696215152468,0,0,0,0,0,0,0,0,4.602162785514815,0,55.19,54.26,51.49,57.57,8.333333333333334,1,1,0,0,7,1,5,1,1708.5,780318.3734040097,696913.4375981349,239577.8344948419,152167.168194611,3997.465165018355 -8366,10334,18749,18748,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.162306321926554,8.959906827559704,0,6,0,-116.0278080062827,0,2,2,2019,12,1,32,32,1,1,0,32.27657530283182,32.27657530283182,0,0,0,0,0,0,0,0,0,0,51.49,57.57,55.19,54.26,8.333333333333334,1,1,0,0,7,1,5,1,1708.5,780318.3734040097,696913.4375981349,239577.8344948419,152167.168194611,3997.465165018355 -8367,10335,18750,18751,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.765478342799651,4.527830789629895,47,-1,-23.48134982135064,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.819847829919289,4.781390549330139,54.79,55.86,57.16,56.15,10,1,1,0,0,0,10,5,1,249,1831696.928236576,812657.4431746885,661764.4823900271,0,12202.15354942366 -8367,10335,18751,18750,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,9.886081983248618,9.749927231378541,47,1,83.64798273895487,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.651792586707167,9.483416061559625,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,0,10,5,1,249,1831696.928236576,812657.4431746885,661764.4823900271,0,12202.15354942366 -8368,10336,18752,18754,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.370847381048069,8.760059978207343,0,1,0,105.0148188348028,-9,-9,-9,2019,6,0,38,0,1,0,0,12.91833536118614,12.91833536118614,0,0,0,0,0,1,1,0,0,0,59.07,43.05,40.4,44.92,8.333333333333334,1,1,0,0,8,10,4,1,563,138698.3708604749,-11411.56165939694,142340.3061951233,144358.8321321522,2977.204891678759 -8368,10336,18753,-9,18754,18752,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9332554687184,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,10,4,1,563,138698.3708604749,-11411.56165939694,142340.3061951233,144358.8321321522,2977.204891678759 -8368,10336,18754,18752,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.441775424936004,7.945748051983509,5.851544967991171,1,0,42.29375532673178,-9,-9,-9,2019,10,1,26,0,1,1,0,8.686506444643836,8.686506444643836,0,0,0,0,2,1,1,0,6.018746270215266,0,40.4,44.92,59.07,43.05,8.333333333333334,1,1,0,0,8,10,4,1,563,138698.3708604749,-11411.56165939694,142340.3061951233,144358.8321321522,2977.204891678759 -8368,10336,18755,-9,18754,18752,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1000.6010614569,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,563,138698.3708604749,-11411.56165939694,142340.3061951233,144358.8321321522,2977.204891678759 -8369,10337,18756,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.298305730079233,7.075406633337274,0,0,0,-987.5620685020432,0,2,2,2019,10,0,22,20,1,1,0,8.17569832965625,8.17569832965625,0,0,0,0,0,0,0,0,0,0,53.78,53.58,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,513,771678.1824562807,586077.8472147906,127936.4347635274,0,1046.282608466825 -8370,10338,18757,18758,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.505706555395548,8.454378737625008,0,11,-3,-26.7193997869083,0,2,2,2019,10,0,40,35,1,0,0,15.5590070099411,15.5590070099411,0,0,0,.072411654936646,14.5,0,0,0,0,0,48.28,60.18,39.19,64.93000000000001,6.666666666666667,4,2,0,0,9,8,5,1,591.5,1214757.455791024,783724.4197785072,523277.6523091575,0,3353.808709136587 -8370,10338,18758,18757,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.027035966926311,8.213553717015822,0,10,3,-11.91831918288701,0,2,-9,2019,16,4,35,35,1,4,0,10.65061356382645,10.65061356382645,0,0,0,0,2,0,0,0,0,0,39.19,64.93000000000001,48.28,60.18,3.333333333333333,3,4,0,0,9,8,5,1,591.5,1214757.455791024,783724.4197785072,523277.6523091575,0,3353.808709136587 -8371,10339,18759,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.795361923825018,9.060283361332518,0,0,0,-1034.458695798368,0,2,2,2019,9,2,41,52,1,2,0,22.3723785888744,22.3723785888744,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,10,6,5,0,1080,148108.0072954357,250171.6111408398,29846.85641597185,72996.57016977121,2939.684065408914 -8372,10340,18760,18762,-9,-9,1,0,53,0,2,0,2,2,-9,1,5,7.929162164203063,7.827691049464497,0,31,-7,34.47163183450888,0,1,2,2019,7,0,20,40,1,0,0,14.64208989614259,14.64208989614259,0,0,0,0,14.5,1,1,0,8.440272418861472,0,55.38,51.67,55,53,8.333333333333334,1,1,0,0,7,10,5,1,421.75,2136904.115797303,1706501.88194391,412694.779845614,48163.95396971366,8641.978385639892 -8372,10340,18761,-9,18760,18762,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1055.19917158775,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,64.55,-9,-9,1.666666666666667,1,1,0,0,1,10,5,1,421.75,2136904.115797303,1706501.88194391,412694.779845614,48163.95396971366,8641.978385639892 -8372,10340,18762,18760,-9,-9,1,1,60,0,2,0,1,1,-9,0,4,9.663066460941437,9.285082045476763,0,6,7,-32.89735870812129,0,2,1,2019,8,0,97,40,1,0,0,17.48240237248264,17.48240237248264,0,0,0,0,0,1,1,0,5.705507232221546,0,55,53,55.38,51.67,8,1,1,0,0,1,10,5,1,421.75,2136904.115797303,1706501.88194391,412694.779845614,48163.95396971366,8641.978385639892 -8372,10340,18763,-9,18760,18762,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-954.6993312642624,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,10,5,1,421.75,2136904.115797303,1706501.88194391,412694.779845614,48163.95396971366,8641.978385639892 -8373,10341,18764,-9,18765,18768,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.482036755012,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,544.8,155437.0198803236,40507.44707868644,407280.8671339116,292117.9217984655,7001.689517651535 -8373,10341,18765,18768,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,8.127539133540001,8.060096034352041,0,24,0,-84.15560992339266,0,2,2,2019,9,0,44,40,1,0,0,8.687644947139209,8.687644947139209,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50.78,45.45,8.333333333333334,1,1,0,0,9,7,5,1,544.8,155437.0198803236,40507.44707868644,407280.8671339116,292117.9217984655,7001.689517651535 -8373,10341,18766,-9,18765,18768,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1118.778252986837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,544.8,155437.0198803236,40507.44707868644,407280.8671339116,292117.9217984655,7001.689517651535 -8373,10341,18767,-9,18765,18768,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.4267223178073,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,544.8,155437.0198803236,40507.44707868644,407280.8671339116,292117.9217984655,7001.689517651535 -8373,10341,18768,18765,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,9.855112893563788,9.503322675761728,0,24,0,-.6390141922427688,0,3,2,2019,12,1,55,53,1,1,0,37.72031927044124,37.72031927044124,0,0,0,0,0,0,0,0,0,0,50.78,45.45,51.83,57.2,6.666666666666667,1,1,0,0,9,7,5,1,544.8,155437.0198803236,40507.44707868644,407280.8671339116,292117.9217984655,7001.689517651535 -8374,10342,18769,18770,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.486692142216066,8.360710745348163,0,9,-4,-149.9029535296077,0,-9,3,2019,16,4,39,37,1,4,0,12.67086658246395,12.67086658246395,0,0,0,0,7,1,1,0,0,0,37.59,48.98,51.58,49.2,5,1,1,0,0,10,12,5,1,821.5,-24237.92197955672,126694.8768628725,142230.209132825,95764.86449711282,3608.172734026205 -8374,10342,18770,18769,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.384858415904231,8.294290554628693,0,9,4,-20.51439474941152,0,3,2,2019,23,10,38,38,1,10,0,13.70898713952645,13.70898713952645,0,0,0,0,14.5,1,1,0,3.332207271307411,0,51.58,49.2,37.59,48.98,3.333333333333333,1,1,0,0,10,12,5,1,821.5,-24237.92197955672,126694.8768628725,142230.209132825,95764.86449711282,3608.172734026205 -8375,10343,18771,18772,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.519540185700231,8.235237136474877,0,33,2,85.92639810277988,0,3,3,2019,8,0,41,39,1,0,0,11.44277767661458,11.44277767661458,0,0,0,0,0,0,0,0,4.933609042257415,0,42.85,60.33,54.92,29.11,6.666666666666667,1,1,0,0,10,6,5,1,779,736900.3504176196,497577.7404145788,276345.1791906321,109757.7180980184,4579.843838971417 -8375,10343,18772,18771,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.716261097476082,9.267266170465941,0,8,-2,-59.52552303861606,0,3,2,2019,13,4,38,40,1,4,0,28.53623934654028,28.53623934654028,0,0,0,0,0,0,0,0,4.157103521996569,0,54.92,29.11,42.85,60.33,6.666666666666667,1,1,0,0,10,6,5,1,779,736900.3504176196,497577.7404145788,276345.1791906321,109757.7180980184,4579.843838971417 -8375,10344,18773,-9,18771,18772,1,0,25,0,0,0,2,2,-9,0,5,8.265596911348849,8.521876180657054,0,0,0,-967.4218107550604,0,2,2,2019,7,0,38,38,1,0,1,13.18053450214471,13.18053450214471,0,0,0,0,0,0,0,0,2.297595051977418,0,57.06,57.76,-9,-9,10,1,1,0,0,10,6,4,1,1155,274687.7185505407,61162.22892213608,0,0,1591.454907407453 -8375,10345,18774,-9,18771,18772,1,0,23,0,0,0,1,1,-9,0,5,7.982648983593364,8.181819715373546,0,0,0,-855.8964490447725,0,2,2,2019,9,0,15,0,1,0,1,25.67778913926428,25.67778913926428,0,0,0,0,0,0,0,0,2.643921396858069,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,877,163462.8967915594,72673.62953700076,0,0,1305.981857793226 -8376,10346,18775,18776,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.650719931536548,7.66630347743611,2.70885075681774,7,-4,-96.512334698342,0,3,2,2019,14,3,30,28,1,3,0,8.549713718576198,8.549713718576198,0,0,0,0,0,1,1,0,2.528776995640622,2.846344202953221,38.43,56.73,60.12,54.8,10,1,1,0,0,8,7,5,1,685,1380142.359422958,225712.5784748492,701114.4683493947,94306.27801328232,5153.435353486273 -8376,10346,18776,18775,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.498426469307331,9.605946910930214,0,7,4,-3.089055136400581,0,3,3,2019,4,0,45,39,1,0,0,34.50155785267616,34.50155785267616,0,0,0,0,0,1,1,0,0,0,60.12,54.8,38.43,56.73,10,1,1,0,0,10,7,5,1,685,1380142.359422958,225712.5784748492,701114.4683493947,94306.27801328232,5153.435353486273 -8376,10346,18777,-9,18775,18776,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.694767099068,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,685,1380142.359422958,225712.5784748492,701114.4683493947,94306.27801328232,5153.435353486273 -8377,10347,18778,-9,18779,18780,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.4830719741838,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,432.25,680842.7428732044,185699.4870482323,604654.8629321116,263238.0009414908,4714.575371659341 -8377,10347,18779,18780,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.832801197572378,8.619315159996594,0,10,-4,27.83071500615097,0,2,3,2019,10,0,46,45,1,0,0,16.93115778709209,16.93115778709209,0,0,0,0,0,1,1,0,0,0,54.28,38.3,41.53,63.13,8.333333333333334,1,1,0,0,12,7,5,1,432.25,680842.7428732044,185699.4870482323,604654.8629321116,263238.0009414908,4714.575371659341 -8377,10347,18780,18779,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.31678228740307,8.376069969027506,0,16,4,48.75483802930697,-9,3,3,2019,11,0,48,0,1,0,0,9.37253465534852,9.37253465534852,0,0,0,0,0,1,1,0,7.450951990126596,0,41.53,63.13,54.28,38.3,8.333333333333334,1,1,0,0,12,7,5,1,432.25,680842.7428732044,185699.4870482323,604654.8629321116,263238.0009414908,4714.575371659341 -8377,10347,18781,-9,18779,18780,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1137.490609509528,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,.7192488627895095,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,5,1,432.25,680842.7428732044,185699.4870482323,604654.8629321116,263238.0009414908,4714.575371659341 -8378,10348,18782,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.349217484724459,8.296829160252306,0,0,0,-990.8061949233481,0,3,1,2019,19,8,47,37,1,8,1,9.2754692183039,9.2754692183039,0,0,0,0,0,0,0,0,1.328512119640923,0,37.93,66.36,-9,-9,5,2,3,0,0,2,5,5,1,1392,235723.3499375526,-30946.16309440201,154909.9499086759,131262.9811886239,1846.841361966135 -8379,10349,18783,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.718601780761315,8.029006187416298,5.159635849924783,0,0,-1121.151756147172,0,3,3,2019,11,0,30,29,1,0,0,6.631702830547589,6.631702830547589,0,0,0,0,0,1,1,0,5.210936209152484,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,735,75825.26570681411,51823.63432431647,121418.5003411324,67702.19196234574,1361.408628454963 -8379,10349,18784,-9,18783,-9,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1059.737970213584,-9,2,-9,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,69.3,-9,-9,5,1,1,1,0,0,5,3,1,735,75825.26570681411,51823.63432431647,121418.5003411324,67702.19196234574,1361.408628454963 -8379,10350,18785,-9,18783,-9,1,0,19,0,1,0,2,2,-9,0,3,7.739056308649192,7.826262074711567,0,0,0,-945.2255767676176,-9,2,-9,2019,6,1,50,0,1,1,1,6.593424139300419,6.593424139300419,0,0,0,0,0,1,1,0,2.130626099475188,0,56.94,49.53,-9,-9,10,1,1,0,0,1,5,3,1,1112,-59623.9704501339,-11660.5252167471,0,0,1585.597541743834 -8380,10351,18786,18787,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.38189832952828,8.728232426934948,0,1,0,-43.16438785021108,-9,2,2,2019,12,0,38,0,1,0,0,13.97599080041807,13.97599080041807,0,0,0,0,0,0,0,0,0,0,51.95,53.02,46,57,6.666666666666667,1,1,0,0,10,5,5,0,376,236882.8684942405,99514.33382335745,361553.8187331287,230106.2818656953,3244.484966867186 -8380,10351,18787,18786,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.427727521300293,8.694863653886166,0,1,0,-61.65077125394014,-9,-9,-9,2019,11,0,38,0,1,2,0,13.0187221719737,13.0187221719737,0,0,0,0,0,0,0,0,0,0,46,57,51.95,53.02,7,1,1,0,0,13,5,5,0,376,236882.8684942405,99514.33382335745,361553.8187331287,230106.2818656953,3244.484966867186 -8381,10352,18788,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.229918845211873,8.164567910885633,0,0,0,-922.9725801467825,0,-9,2,2019,13,1,50,55,1,1,0,8.092824740896551,8.092824740896551,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,5,1,1,0,0,3,10,4,0,369,117166.7101549012,-77232.81930077709,0,0,913.934127232211 -8382,10353,18789,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.384228548394871,6.415002855849128,0,0,-867.850366785812,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,12.44032385155568,0,0,1,1,0,6.639003632079781,6.175493802817305,38.38,19.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,730,356436.8875488495,133280.5349334667,58867.95711170883,0,2086.007375595592 -8383,10354,18790,18791,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.674080613020857,6.709049204413331,40,3,49.73916344881257,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.004981513641836,48,37,32.15,45.39,1.666666666666667,1,1,0,0,9,10,3,1,283.5,304761.95653063,97498.50340836751,117582.5879831004,0,2022.34277180106 -8383,10354,18791,18790,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.745405778986875,6.587749432576645,0,40,-3,-68.61975630132848,-9,3,3,2019,13,1,15,0,1,1,0,6.973416613031553,6.973416613031553,0,0,0,0,7,1,1,0,0,0,32.15,45.39,48,37,0,1,1,0,0,12,10,3,1,283.5,304761.95653063,97498.50340836751,117582.5879831004,0,2022.34277180106 -8384,10355,18792,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.404505491629386,8.591471053127439,0,0,0,-915.3856049430631,0,3,2,2019,22,9,37,37,1,9,0,19.59251308542416,19.59251308542416,0,0,0,0,0,0,0,0,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,348,255692.7967711728,172939.2997976951,0,0,2299.613277724226 -8385,10356,18793,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.034285591799867,5.624088176202595,0,0,-966.4354657834758,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.134880484801204,49.63,54.22,-9,-9,10,1,1,0,0,0,6,2,1,2481,593800.2608716764,197196.6621904951,266056.0134643147,0,988.8912953779368 -8386,10357,18794,18795,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.833243705611961,9.011376725921185,0,27,-3,109.7474827262943,0,2,1,2019,6,0,39,41,1,0,0,18.5544465430639,18.5544465430639,0,0,0,0,0,0,0,0,7.57328149432395,0,57.16,56.15,59.32,46.98,8.333333333333334,1,1,0,0,8,2,5,1,451,1041479.544681968,898540.0699736099,172218.7096389688,93371.42925465922,4325.386891182759 -8386,10357,18795,18794,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,6.716876675375022,6.744917773708297,0,27,3,5.765778789943617,0,3,2,2019,9,0,15,15,1,0,0,7.00816522938935,7.00816522938935,0,0,0,0,0,0,0,0,0,0,59.32,46.98,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,451,1041479.544681968,898540.0699736099,172218.7096389688,93371.42925465922,4325.386891182759 -8387,10358,18796,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.695791448362876,7.669291678249313,0,0,-986.4433844194438,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,2.707069586271689,0,0,1,1,0,1.639463233419993,7.245511764280248,47.95,21.46,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,691,341356.8215791697,304267.1178160295,215437.8664047674,0,1697.97662620224 -8388,10359,18797,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,1,0,0,0,0,0,-944.8123061131386,0,2,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,24.14,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,1468.5,0,0,0,0,1917.289599284244 -8388,10359,18798,-9,18797,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.0289461957716,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,1468.5,0,0,0,0,1917.289599284244 -8389,10360,18799,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.086958090774425,7.805144274414712,0,0,0,-1008.747296031146,0,-9,-9,2019,11,0,35,30,1,0,0,9.521439899514089,9.521439899514089,0,0,0,0,0,1,1,0,2.602124016161719,0,58.32,50.22,-9,-9,8.333333333333334,4,2,0,0,10,2,4,1,2985,1064.969306235069,-40956.48129879781,0,0,1205.471404039766 -8390,10361,18800,18801,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,0,0,10,5,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.864019858638006,0,57.06,57.76,45.9,15.65,8.333333333333334,1,1,0,0,8,12,2,1,659,1131848.829566131,301966.57763503,226860.759431235,0,2808.528370779492 -8390,10361,18801,18800,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,10,-5,0,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,45.9,15.65,57.06,57.76,3.333333333333333,1,1,0,0,7,12,2,1,659,1131848.829566131,301966.57763503,226860.759431235,0,2808.528370779492 -8391,10362,18802,18803,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.157576572829379,7.830148528516145,0,27,2,-80.6449789529986,0,3,3,2019,11,1,40,39,1,1,0,6.881985163360357,6.881985163360357,0,0,0,0,0,1,1,0,2.982118047240458,0,57.33,42.93,48.82,34.39,1.666666666666667,1,1,0,0,9,4,4,1,1183.666666666667,624212.8238346613,508574.301776876,168862.022912952,72281.10420730563,2600.514001021475 -8391,10362,18803,18802,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.088607247297649,8.109338730462913,0,27,-2,-49.35234702521967,0,2,3,2019,16,5,43,41,1,5,0,7.800781594854001,7.800781594854001,0,0,0,0,0,1,1,0,0,0,48.82,34.39,57.33,42.93,6.666666666666667,1,1,0,0,6,4,4,1,1183.666666666667,624212.8238346613,508574.301776876,168862.022912952,72281.10420730563,2600.514001021475 -8391,10362,18804,-9,18803,18802,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.700056370178,-9,2,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1183.666666666667,624212.8238346613,508574.301776876,168862.022912952,72281.10420730563,2600.514001021475 -8392,10363,18805,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-921.3253062072921,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,1241,48706.41536853062,0,0,0,603.6650805456483 -8393,10364,18806,18807,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.54536812764534,7.977685738429837,11,-2,41.77723280889177,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.932508965150625,60.12,54.8,57.16,56.15,10,1,1,0,0,0,4,3,1,455,1412482.382533455,310946.9032633503,423262.5735661818,0,2319.293572406247 -8393,10364,18807,18806,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,44,2,93.18558754008723,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.852831981377752,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,2,4,3,1,455,1412482.382533455,310946.9032633503,423262.5735661818,0,2319.293572406247 -8394,10365,18808,18809,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.44397659267747,6.17869124828257,58,-3,-110.0552744271893,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.612595904391559,57.09,46.7,52.82,53.97,10,1,1,0,0,5,10,2,1,1120.5,615898.2693526219,65441.58140563579,353109.4358948473,0,1938.331418236578 -8394,10365,18809,18808,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.519875055172123,6.762716083263579,58,3,16.94837465894183,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.957466798223233,6.371371071945931,52.82,53.97,57.09,46.7,8.333333333333334,1,1,0,0,5,10,2,1,1120.5,615898.2693526219,65441.58140563579,353109.4358948473,0,1938.331418236578 -8395,10366,18810,18811,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.141754869457283,7.685541060174018,0,25,-3,101.574499600681,0,1,1,2019,9,0,40,40,1,0,0,4.240940756277275,4.240940756277275,0,0,0,0,0,0,0,0,0,0,54.94,53.18,57.9,51.84,8.333333333333334,2,3,0,0,12,9,5,1,1089.5,637353.7839680722,153681.2507930552,416182.3271386032,29039.24792376514,4465.718578007265 -8395,10366,18811,18810,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.161632120129488,9.053718338945558,0,11,3,47.52090336332364,0,-9,-9,2019,9,0,50,40,1,0,0,21.52054052502048,21.52054052502048,0,0,0,0,0,0,0,0,6.753860754662119,0,57.9,51.84,54.94,53.18,8.333333333333334,2,3,0,0,8,9,5,1,1089.5,637353.7839680722,153681.2507930552,416182.3271386032,29039.24792376514,4465.718578007265 -8395,10367,18812,-9,18810,18811,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-841.8393218492193,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,891,-87007.75572482025,0,0,0,0 -8396,10368,18813,18814,-9,-9,1,1,29,0,2,0,2,2,-9,0,5,8.821979175677255,8.71723961278618,0,6,2,106.743772960331,0,-9,-9,2019,9,0,56,50,1,0,0,12.2084553984703,12.2084553984703,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.59,50.85,10,1,1,0,0,7,11,4,1,791.25,-40080.8762512191,34126.77481275791,138596.492710649,96016.77041915832,2880.635036909625 -8396,10368,18814,18813,-9,-9,1,0,27,0,2,0,3,3,-9,0,4,0,0,0,6,-2,33.46953984001539,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.59,50.85,57.06,57.76,10,1,1,0,0,0,11,4,1,791.25,-40080.8762512191,34126.77481275791,138596.492710649,96016.77041915832,2880.635036909625 -8396,10368,18815,-9,18814,18813,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.7083574520508,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,791.25,-40080.8762512191,34126.77481275791,138596.492710649,96016.77041915832,2880.635036909625 -8396,10368,18816,-9,18814,18813,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.366223143334,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,791.25,-40080.8762512191,34126.77481275791,138596.492710649,96016.77041915832,2880.635036909625 -8397,10369,18817,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.465804402948701,8.429923411374299,4.635352256852136,0,0,-999.3534380129017,0,2,1,2019,29,12,63,40,1,12,0,8.858672568526917,8.858672568526917,0,0,0,0,0,0,0,0,5.111611135228718,0,13.97,73.48,-9,-9,1.666666666666667,1,1,0,0,4,8,5,0,1444,15763.12434872364,-245.6348822316286,0,0,2236.259019981861 -8397,10370,18818,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.4724541861136,8.549747265454361,0,0,0,-972.6805504743757,-9,-9,-9,2019,17,6,45,0,1,6,0,14.05988683824341,14.05988683824341,0,0,0,0,0,0,0,0,1.115197073562006,0,46.34,61.24,-9,-9,5,1,1,0,0,1,8,4,0,203,109723.4416764261,-71465.90499687787,0,0,1543.98639340852 -8398,10371,18819,18820,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,6.364043152549695,6.312749177721384,0,10,-6,11.81387510198567,0,2,2,2019,6,0,12,5,1,0,0,6.535323845580356,6.535323845580356,0,0,0,0,0,1,1,0,0,0,62.49,55.09,64.40000000000001,42,10,1,1,0,0,13,9,3,1,201,1789264.469752907,387109.3182270321,1007355.911548765,96825.67747495024,3768.381429159805 -8398,10371,18820,18819,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.944361233056111,7.810381538687627,10,6,-36.2669549697655,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.213131300171888,7.919114520153882,64.40000000000001,42,62.49,55.09,8.333333333333334,1,1,0,0,0,9,3,1,201,1789264.469752907,387109.3182270321,1007355.911548765,96825.67747495024,3768.381429159805 -8399,10372,18821,18822,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,9,4,-26.44162826333244,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,1.770565015911689,0,36.02,51.34,53.59,44.11,6.666666666666667,1,1,0,0,0,13,3,1,1466,505029.9322977694,297736.8824131323,291557.3935692116,0,2866.416049228575 -8399,10372,18822,18821,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.396265198383071,8.104505025302007,0,9,-4,-25.07218741796715,0,2,2,2019,11,0,45,50,1,0,0,8.84399437822019,8.84399437822019,0,0,0,0,0,1,1,0,0,0,53.59,44.11,36.02,51.34,8.333333333333334,1,1,0,0,10,13,3,1,1466,505029.9322977694,297736.8824131323,291557.3935692116,0,2866.416049228575 -8400,10373,18823,-9,-9,-9,1,0,46,0,2,0,1,1,-9,1,4,8.229621967441293,8.467399427580871,5.371049182907186,0,0,-1050.367807290609,0,2,3,2019,19,7,22,22,1,7,0,17.12289517234406,17.12289517234406,0,0,0,0,104,1,1,0,5.583722596947344,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,824,-167649.7088929883,-64491.33436044843,78126.78664868305,62836.79002648348,2348.478233345524 -8400,10373,18824,-9,18823,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.8681849228379,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,824,-167649.7088929883,-64491.33436044843,78126.78664868305,62836.79002648348,2348.478233345524 -8401,10374,18825,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.806523437935152,8.580266941358234,0,0,0,-1002.15013532351,0,3,3,2019,7,0,65,60,1,0,0,12.65699863177306,12.65699863177306,0,0,0,0,0,0,0,0,2.405681940642327,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,4135,150648.8412773438,76280.39859527405,213424.2866944445,36773.26821994314,2181.842433058546 -8401,10375,18826,-9,18825,-9,1,0,23,0,0,0,2,2,-9,0,3,7.181311865460874,7.324960287940198,0,0,0,-938.6524012292475,-9,1,1,2019,16,5,33,0,1,5,1,4.468144912545447,4.468144912545447,0,0,0,0,0,0,0,0,0,0,29.82,63.56,-9,-9,5,1,1,0,0,2,9,3,1,1191,-134016.7422131427,0,0,0,851.9746193948849 -8401,10376,18827,-9,18825,-9,1,0,22,0,0,0,1,1,-9,0,3,8.047410108641273,7.753023112836623,0,0,0,-1014.794960910279,0,1,-9,2019,8,0,40,0,1,0,1,7.986296427702378,7.986296427702378,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,644,-186985.7898556767,-118913.0678448765,0,0,667.2312773260077 -8402,10377,18828,18829,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.358844152292868,9.371539968911167,0,30,1,-80.7213215434605,0,-9,2,2019,11,4,51,55,1,4,0,25.07444046715101,25.07444046715101,0,0,0,0,0,0,0,0,3.971665454040179,0,40.21,58.24,41.93,57.79,6.666666666666667,1,1,0,0,12,10,5,1,1193.5,872424.4641390361,534578.9744957755,296843.1107857006,0,4348.475896290198 -8402,10377,18829,18828,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.809036206673972,7.610904067612247,0,30,-1,33.54342868372492,0,2,2,2019,11,0,30,30,1,0,0,10.9627450459026,10.9627450459026,0,0,0,0,0,0,0,0,0,0,41.93,57.79,40.21,58.24,8.333333333333334,1,1,0,0,13,10,5,1,1193.5,872424.4641390361,534578.9744957755,296843.1107857006,0,4348.475896290198 -8403,10378,18830,18831,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,4.9371116829976,4.950374527854577,4,1,-103.5832917325122,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.604835645194685,5.113552703515729,57.16,56.15,52.4,39.68,8.333333333333334,1,1,0,0,0,1,2,1,465.5,1702135.566257982,144729.4745006627,989740.8815620386,0,1731.058832413833 -8403,10378,18831,18830,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,4.893542235528398,5.196213052020778,4,-1,-86.44977422221228,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,3.806281940164685,0,0,1,1,0,5.503628125289681,5.166708488861974,52.4,39.68,57.16,56.15,6.666666666666667,1,1,0,0,0,1,2,1,465.5,1702135.566257982,144729.4745006627,989740.8815620386,0,1731.058832413833 -8404,10379,18832,18833,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.695016913663096,8.867175047290697,0,8,-3,-54.99917625559266,0,2,2,2019,16,6,37,36,1,6,0,22.57794533922263,22.57794533922263,0,0,0,0,0,0,0,0,3.667364994829285,0,50.77,46.67,46.93,51.35,6.666666666666667,1,1,0,0,9,9,5,1,704.5,2865286.837619404,1874042.987118668,712337.8284872584,0,4471.668011823784 -8404,10379,18833,18832,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.434698159717724,8.330551850127273,0,8,3,-27.5411367002964,0,2,2,2019,12,0,48,46,1,0,0,9.511302670293784,9.511302670293784,0,0,0,0,0,0,0,0,6.978075298258394,0,46.93,51.35,50.77,46.67,6.666666666666667,1,1,0,0,9,9,5,1,704.5,2865286.837619404,1874042.987118668,712337.8284872584,0,4471.668011823784 -8405,10380,18834,-9,18836,18835,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.609144628642,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,736.75,151539.1289179237,80823.62655663371,441749.5485242114,326352.8927679872,4588.144145255412 -8405,10380,18835,18836,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.345841581126534,9.333126573752914,0,10,5,-89.61000422261749,0,3,2,2019,12,1,50,53,1,1,0,27.5417053303294,27.5417053303294,0,0,0,0,0,0,0,0,4.94862985864672,0,50.6,51,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,736.75,151539.1289179237,80823.62655663371,441749.5485242114,326352.8927679872,4588.144145255412 -8405,10380,18836,18835,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.279156026070939,7.572715386787893,0,10,-5,-80.68962887344063,0,2,1,2019,10,0,20,10,1,0,0,9.533468662387877,9.533468662387877,0,0,0,0,2,0,0,0,3.371376957789623,0,57.06,57.76,50.6,51,10,1,1,0,0,12,8,5,1,736.75,151539.1289179237,80823.62655663371,441749.5485242114,326352.8927679872,4588.144145255412 -8405,10380,18837,-9,18836,18835,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.422800945564,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,736.75,151539.1289179237,80823.62655663371,441749.5485242114,326352.8927679872,4588.144145255412 -8406,10381,18838,-9,18842,18839,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.006021232057,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,2,2,1,1144.6,18339.90275509302,0,0,0,2579.642805042916 -8406,10381,18839,18842,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,5.764620611958356,5.498582890719247,0,18,3,-122.0598814533557,0,3,3,2019,4,0,7,40,1,0,0,6.249859790235426,6.249859790235426,0,0,0,0,0,1,1,0,0,0,54.2,57.49,61.47,40.5,10,2,3,0,0,11,2,2,1,1144.6,18339.90275509302,0,0,0,2579.642805042916 -8406,10381,18840,-9,18842,18839,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.800842621229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,1144.6,18339.90275509302,0,0,0,2579.642805042916 -8406,10381,18841,-9,18842,18839,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1034.005787146287,-9,2,2,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.22,40.59,-9,-9,5,2,3,0,0,0,2,2,1,1144.6,18339.90275509302,0,0,0,2579.642805042916 -8406,10381,18842,18839,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,18,-3,-51.11404959027723,0,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,61.47,40.5,54.2,57.49,10,2,3,0,0,0,2,2,1,1144.6,18339.90275509302,0,0,0,2579.642805042916 -8406,10382,18843,-9,18842,18839,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-884.7353013808669,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,61.11,48.86,-9,-9,10,2,3,0,0,1,2,1,1,582,0,0,0,0,0 -8406,10383,18844,-9,18842,18839,1,0,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-926.6648336138437,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,2,3,0,0,0,2,2,1,1273,0,0,0,0,450.5105278810339 -8407,10384,18845,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,9.130046345656986,8.602008509075212,0,0,0,-1046.51118514689,0,-9,-9,2019,10,0,47,45,1,0,0,17.26608915372682,17.26608915372682,0,0,0,0,0,0,0,0,0,0,47.07,56.64,-9,-9,6.666666666666667,1,1,0,0,4,6,5,0,137,-427.7065578802349,-132720.1482583401,0,0,2605.346372283198 -8408,10385,18846,18847,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,26,2,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,59.22,37.52,5,1,1,0,0,0,1,1,1,754.5,477914.613161447,5485.107845811031,333194.6638533211,0,1191.967173984001 -8408,10385,18847,18846,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,0,0,0,26,-2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,59.22,37.52,27.89,18.61,10,1,1,1,0,0,1,1,1,754.5,477914.613161447,5485.107845811031,333194.6638533211,0,1191.967173984001 -8408,10386,18848,-9,18846,18847,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-982.9405827149972,0,2,3,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,316,-12282.33702936563,0,0,0,0 -8409,10387,18849,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.232441755392228,8.435144102426419,0,0,0,-852.3265742386401,0,2,2,2019,10,0,39,39,1,0,0,12.63223488168841,12.63223488168841,0,0,0,0,14.5,0,0,0,.4165345821481065,0,57.33,53.46,-9,-9,5,1,1,0,0,11,5,4,1,543,367779.6759089417,161222.6374140793,88305.31574152605,0,1736.380362113418 -8410,10388,18850,18851,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.737393719456026,8.708510933802785,0,21,1,-130.8285787155169,0,3,2,2019,19,7,77,69,1,7,0,7.48537787375797,7.48537787375797,0,0,0,0,0,1,1,0,0,0,41.99,53.75,57.06,57.76,10,1,1,0,0,9,7,5,1,1138.5,185291.7462206455,7638.989238911643,83021.00564536316,51203.41216272311,3312.744483545755 -8410,10388,18851,18850,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.576351274738967,7.621752483741912,0,21,-1,65.67872922608561,0,2,2,2019,7,0,26,25,1,0,0,7.458632725400618,7.458632725400618,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.99,53.75,6.666666666666667,1,1,0,0,9,7,5,1,1138.5,185291.7462206455,7638.989238911643,83021.00564536316,51203.41216272311,3312.744483545755 -8411,10389,18852,18853,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.761293469841835,8.930064573957628,0,14,-4,-60.20592569730645,0,2,1,2019,24,12,50,50,1,12,0,13.66873009221235,13.66873009221235,0,0,0,0,0,0,0,0,6.880336262847284,0,32.65,56.8,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,392.5,1153147.773551081,910867.3335046992,341400.1195042602,36566.12468251794,4554.634070384247 -8411,10389,18853,18852,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.540226069968091,8.581092956261902,5.714109145922712,14,4,-97.48796706389753,0,3,3,2019,12,3,41,52,1,3,0,14.66410870098728,14.66410870098728,0,0,0,0,0,0,0,0,0,6.244789095664816,57.16,56.15,32.65,56.8,8.333333333333334,1,1,0,0,10,2,5,1,392.5,1153147.773551081,910867.3335046992,341400.1195042602,36566.12468251794,4554.634070384247 -8412,10390,18854,18855,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.493037716812927,7.738093309418074,6.710175383457881,4,2,17.67623771357101,0,-9,-9,2019,8,0,37,44,1,0,0,4.928082665447474,4.928082665447474,0,0,0,0,0,1,1,0,6.0870501004621,0,57.16,56.15,55.34,54.26,1.666666666666667,1,1,0,0,2,10,3,0,420.5,538669.7517289008,208446.0034920393,126485.0458605483,0,1945.117157501458 -8412,10390,18855,18854,-9,-9,1,0,25,0,0,1,1,0,0,0,4,0,7.214255509292578,7.46137298162737,4,-2,-29.97686559288013,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.921429669115501,0,55.34,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,0,420.5,538669.7517289008,208446.0034920393,126485.0458605483,0,1945.117157501458 -8413,10391,18856,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.050584968967002,6.724600489369641,0,0,-1000.169596788198,0,3,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.52303223328636,6.930188530560636,33.95,26.99,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,2219,769584.7539120801,314044.1776257347,270513.020006195,0,858.6186124464264 -8414,10392,18857,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.1340215526563,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.426231932198186,0,40.65,45.24,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,201,230376.3709263761,0,153575.1355086965,0,732.1601421953673 -8415,10393,18858,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.719039533160363,9.064034983038294,0,0,0,-999.715854030499,0,-9,-9,2019,12,0,42,43,1,0,0,17.84080648301782,17.84080648301782,0,0,0,0,0,0,0,0,3.996508991137329,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,342,236965.9434336635,43994.49682097886,0,0,1746.23981152185 -8416,10394,18859,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.367132381292198,7.870191832303234,0,15,-13,-89.11837204719767,0,-9,3,2019,10,0,45,0,1,0,0,10.19914381557833,10.19914381557833,0,0,0,0,0,0,0,0,0,0,52,54.51,44.94,21.37,5,1,1,0,0,9,1,4,0,271,72447.11008168815,73074.49518488042,73178.0306931574,63708.47410736948,2024.779166118662 -8416,10395,18860,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,15,13,25.13230762319395,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,21.37,52,54.51,1.666666666666667,1,1,1,0,7,1,4,0,310,132022.728819259,0,0,0,0 -8417,10396,18861,-9,18864,18862,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.729415446473,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,3,1,772,236804.3332418331,4930.367580745293,0,0,2206.492232312411 -8417,10396,18862,18864,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.371702767140398,8.155030908462829,0,10,6,-72.99566080567256,0,-9,-9,2019,12,0,40,40,1,0,0,10.59333078121827,10.59333078121827,0,0,0,0,0,1,1,0,0,0,43.94,58,32.5,17.73,6.666666666666667,1,1,0,0,12,4,3,1,772,236804.3332418331,4930.367580745293,0,0,2206.492232312411 -8417,10396,18863,-9,18864,18862,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1182.007573415617,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,772,236804.3332418331,4930.367580745293,0,0,2206.492232312411 -8417,10396,18864,18862,-9,-9,1,0,39,0,2,0,2,2,-9,1,1,0,0,0,10,-6,-68.06599213540659,0,2,-9,2019,25,10,0,27,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,43.94,58,1.666666666666667,1,1,0,1,8,4,3,1,772,236804.3332418331,4930.367580745293,0,0,2206.492232312411 -8418,10397,18865,18866,-9,-9,1,0,27,0,3,0,2,2,-9,0,3,7.720395170464451,7.89092135852059,0,7,-2,8.846476858148009,0,-9,-9,2019,15,3,39,29,1,3,0,6.767969006550338,6.767969006550338,0,0,0,0,0,1,1,0,0,0,41,56.99,43.71,56.91,6.666666666666667,1,1,0,0,3,11,4,0,968.6,130156.138778891,19007.20070975707,126622.5580495802,112378.7516150074,3222.884185758477 -8418,10397,18866,18865,-9,-9,1,1,29,0,3,0,2,2,-9,0,3,8.548774746004504,8.585739209606611,0,7,2,-123.4915273458304,0,-9,-9,2019,14,4,45,47,1,4,0,16.15872267874091,16.15872267874091,0,0,0,0,0,1,1,0,1.066872072077314,0,43.71,56.91,41,56.99,3.333333333333333,1,1,0,0,8,11,4,0,968.6,130156.138778891,19007.20070975707,126622.5580495802,112378.7516150074,3222.884185758477 -8418,10397,18867,-9,18865,18866,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.7043949009002,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,968.6,130156.138778891,19007.20070975707,126622.5580495802,112378.7516150074,3222.884185758477 -8418,10397,18868,-9,18865,18866,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1083.905962848992,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,0,968.6,130156.138778891,19007.20070975707,126622.5580495802,112378.7516150074,3222.884185758477 -8418,10397,18869,-9,18865,18866,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.7795570348778,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,968.6,130156.138778891,19007.20070975707,126622.5580495802,112378.7516150074,3222.884185758477 -8419,10398,18870,18871,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.897373235690132,8.348687851510096,7.447948693355422,37,0,23.44943425475435,0,-9,2,2019,6,0,21,37,1,0,0,16.05272171416781,16.05272171416781,0,0,0,0,0,1,1,0,6.430602689440148,7.463075904443435,57.33,42.93,60.29,52.11,10,1,1,0,0,12,5,4,1,527,986131.5982740849,765157.1455103559,0,0,2853.742913208091 -8419,10398,18871,18870,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.528452846548013,4.509524633757882,47,0,-9.841327916993553,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.433360005694601,4.902292549340168,60.29,52.11,57.33,42.93,8.333333333333334,1,1,0,0,0,5,4,1,527,986131.5982740849,765157.1455103559,0,0,2853.742913208091 -8420,10399,18872,18873,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,8.718979433197697,9.109170671940971,0,37,-4,108.2811981384549,0,3,1,2019,8,1,42,47,1,1,0,16.32813123942082,16.32813123942082,0,0,0,0,2,1,1,0,0,0,51.73,58.82,55,53,8.333333333333334,1,1,0,0,9,5,4,1,236.5,510151.1408142581,475133.1435669477,109040.7120814061,0,2425.41350135618 -8420,10399,18873,18872,-9,-9,1,1,59,0,0,0,3,3,-9,1,4,5.026180541091296,5.134351287274576,0,37,4,-3.652805253961885,0,3,3,2019,8,0,40,40,1,0,0,.4833191666055104,.4833191666055104,0,0,0,0,0,1,1,0,0,0,55,53,51.73,58.82,8,1,1,0,0,9,5,4,1,236.5,510151.1408142581,475133.1435669477,109040.7120814061,0,2425.41350135618 -8421,10400,18874,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,8.643483440134593,8.738530497120536,0,0,-1043.811048830619,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.538588979035891,8.653024072156917,57.51,47.91,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,156,1405915.56225545,416853.1162522589,415132.5772477732,0,3849.421531897297 -8422,10401,18875,18876,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,5.210219279335817,5.493602510217801,69,3,-20.39238761481157,0,3,2,2019,8,2,0,0,4,2,0,0,0,1,1.70513295508606,0,22.23321216435126,0,1,1,0,6.438363736985907,5.081831064253466,63.99,30.37,60.54,47.79,8.333333333333334,1,1,0,0,0,10,2,0,662,311703.2634119231,50360.81016770495,178990.6821733911,0,1754.418443090515 -8422,10401,18876,18875,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,69,-3,84.40480179697784,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,.2221960804434406,0,1,1,0,3.678112570957809,0,60.54,47.79,63.99,30.37,10,1,1,0,0,0,10,2,0,662,311703.2634119231,50360.81016770495,178990.6821733911,0,1754.418443090515 -8423,10402,18877,18878,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.332835359248302,8.865056329816399,35,0,-55.51121148194908,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.507167368363115,8.053100882690739,56.1,49.93,57.33,53.46,8.333333333333334,1,1,0,0,6,12,4,1,967.5,2160673.731425923,724070.2670545876,195085.9611356331,0,3220.033876804544 -8423,10402,18878,18877,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.615886326967714,4.41632957048991,35,0,-140.7409051395526,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.291629604114819,4.354147722789251,57.33,53.46,56.1,49.93,10,1,1,0,0,0,12,4,1,967.5,2160673.731425923,724070.2670545876,195085.9611356331,0,3220.033876804544 -8424,10403,18879,18880,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,10,6,65.79348702161226,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,1,1,0,0,3,13,2,1,515.5,281329.6516173794,-32437.72729573793,169006.2308608524,0,1246.328919454468 -8424,10403,18880,18879,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.169199013823014,6.83247658571004,0,10,-6,29.37387078754072,0,3,3,2019,11,0,13,20,1,2,0,11.35885842890353,11.35885842890353,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,1,1,0,0,11,13,2,1,515.5,281329.6516173794,-32437.72729573793,169006.2308608524,0,1246.328919454468 -8424,10404,18881,-9,18880,18879,1,1,32,0,0,0,2,2,-9,0,5,7.942957549344014,7.787849825051762,0,0,0,-980.2593020679717,0,2,2,2019,7,0,37,40,1,0,1,8.571576633515438,8.571576633515438,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,741,37222.68068959458,0,0,0,1053.230927120092 -8424,10405,18882,-9,18880,18879,1,1,23,0,0,0,1,1,-9,0,5,8.043961821937703,7.651085344690516,0,0,0,-953.9192798687164,0,3,3,2019,8,0,40,0,1,0,1,7.411946921394851,7.411946921394851,0,0,0,0,0,1,1,0,0,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,573,-56678.4773861095,0,0,0,741.1221995828575 -8425,10406,18883,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.439764213063745,6.51735163330289,0,0,-967.697928423726,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.18132534898971,0,51.07006076210737,0,1,1,0,0,6.311847008395996,55.47,29.04,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1080,352647.725761378,42913.26086800286,240733.8754510084,0,2021.887517374123 -8426,10407,18884,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1050.61372580389,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45,39,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,701,82666.19661085011,0,267059.5429366233,0,1191.58256189945 -8427,10408,18885,18887,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,11,0,-24.05622792577404,0,3,3,2019,10,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.978318077912341,0,53.68,49.68,57.17,50.61,5,2,3,1,0,12,8,3,1,643.25,116965.174184144,68570.55652637522,195571.6429319662,55109.26499458782,1896.941738445099 -8427,10408,18886,-9,18885,18887,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.924398788568,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,643.25,116965.174184144,68570.55652637522,195571.6429319662,55109.26499458782,1896.941738445099 -8427,10408,18887,18885,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.400609905652697,8.349207421480621,0,11,0,-15.68832806557103,0,1,1,2019,7,0,40,43,1,0,0,19.23122269195266,19.23122269195266,0,0,0,0,0,0,0,0,0,0,57.17,50.61,53.68,49.68,8.333333333333334,2,3,0,0,7,8,3,1,643.25,116965.174184144,68570.55652637522,195571.6429319662,55109.26499458782,1896.941738445099 -8427,10408,18888,-9,18885,18887,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.7237120002864,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,643.25,116965.174184144,68570.55652637522,195571.6429319662,55109.26499458782,1896.941738445099 -8428,10409,18889,18890,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.671196486809285,7.493311659293934,0,6,-5,-40.18011134955433,0,-9,-9,2019,26,10,22,22,1,10,0,12.96494327856455,12.96494327856455,0,0,0,0,0,0,0,0,0,0,35.88,47.19,61.84,23.18,6.666666666666667,1,1,0,0,11,12,3,0,976.5,258665.9188988306,0,0,0,1414.293759206296 -8428,10409,18890,18889,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,6.326263142029378,6.69850260236504,0,6,5,42.03223532594194,0,2,2,2019,11,2,15,15,1,2,0,5.018738125780587,5.018738125780587,0,0,0,0,0,0,0,0,0,0,61.84,23.18,35.88,47.19,6.666666666666667,1,1,0,0,11,12,3,0,976.5,258665.9188988306,0,0,0,1414.293759206296 -8429,10410,18891,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.751740351302544,8.608603595486485,0,0,0,-1022.56492389571,-9,2,2,2019,4,0,45,0,1,0,0,15.47638604922373,15.47638604922373,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,122,-91459.85527748596,133615.5059184913,0,0,3073.156795821187 -8430,10411,18892,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.259014512493522,8.996114790101982,0,0,0,-919.8350494506534,0,3,2,2019,6,0,39,41,1,0,0,29.79157371682175,29.79157371682175,0,0,0,0,0,0,0,0,3.11062542086172,0,46.17,54.21,-9,-9,6.666666666666667,1,1,0,0,9,13,5,0,2997,113691.7611349532,-11140.29409534776,0,0,3350.751545150563 -8431,10412,18893,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,9.018043839609707,8.741472744736233,0,0,-1019.702443555449,0,-9,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,0,0,0,8.399608578123054,9.007526096458271,37.67,27.38,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,477,1334873.975587865,461067.6380804158,520191.0299812247,0,3920.332158979428 -8432,10413,18894,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,8.332634004093078,8.608085012481951,0,0,-1054.084153138943,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.288665276008855,8.455293145217171,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,307,722213.0179543709,327886.7385431739,281857.1178479446,0,2856.653602464915 -8433,10414,18895,18896,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.104288476488412,9.321750592485543,0,10,1,-103.9372898532126,0,2,2,2019,8,0,38,38,1,0,0,27.72194742175047,27.72194742175047,0,0,0,0,0,0,0,0,4.25137398739463,0,51.24,58.84,49.63,54.22,8.333333333333334,1,1,0,0,11,2,5,1,1541.5,113712.8245338113,328.1560098373338,238560.6541782321,180307.8615201566,5225.046029559322 -8433,10414,18896,18895,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.738797543223917,8.673707061431873,0,10,-1,-23.95694930305425,0,-9,-9,2019,8,0,35,37,1,0,0,13.30912186408012,13.30912186408012,0,0,0,0,0,0,0,0,2.276937224029931,0,49.63,54.22,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,1541.5,113712.8245338113,328.1560098373338,238560.6541782321,180307.8615201566,5225.046029559322 -8434,10415,18897,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.558124344569274,6.667753667341198,0,0,-982.4094061646475,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.480171709956237,6.658593814951492,57.46,49.11,-9,-9,10,1,1,0,0,8,5,2,1,636,379062.9385133745,97152.83460576861,142191.6391219608,0,1270.184150348836 -8435,10416,18898,18899,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.652964472810789,9.844663730305225,0,20,3,-28.6920412776973,0,2,2,2019,7,0,48,46,1,0,0,34.08394882388277,34.08394882388277,0,0,0,0,0,0,0,0,4.271523697957597,0,58.15,52.91,46.33,55.93,10,2,3,0,0,9,8,5,1,1313,1124919.966662038,500506.3985362319,255690.145082183,115159.840035931,3238.526125323994 -8435,10416,18899,18898,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,0,0,0,7,-3,-60.14110757147662,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,4.276450263133555,0,46.33,55.93,58.15,52.91,8.333333333333334,2,3,0,0,0,8,5,1,1313,1124919.966662038,500506.3985362319,255690.145082183,115159.840035931,3238.526125323994 -8435,10416,18900,-9,18899,18898,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.362154646833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,1313,1124919.966662038,500506.3985362319,255690.145082183,115159.840035931,3238.526125323994 -8436,10417,18901,18902,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,7.569683389393379,7.406902068289018,0,3,-4,145.8424489944435,0,-9,-9,2019,11,1,39,35,1,1,0,8.07670781548004,8.07670781548004,0,0,0,0,0,1,1,0,0,0,41.24,50.99,33.91,59.03,3.333333333333333,1,1,0,0,5,2,2,1,535.6,902892.6135407968,41223.88714343656,625568.4250833446,0,3160.027878845528 -8436,10417,18902,18901,-9,-9,1,0,42,0,2,0,2,2,-9,1,4,6.701785112231559,6.717888496206526,3.760750011924303,3,4,9.443535031145903,0,2,1,2019,14,2,12,0,1,2,0,5.844408478461373,5.844408478461373,0,0,0,0,27,1,1,0,3.437271711140495,0,33.91,59.03,41.24,50.99,5,1,1,0,0,4,2,2,1,535.6,902892.6135407968,41223.88714343656,625568.4250833446,0,3160.027878845528 -8436,10417,18903,-9,18902,18901,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-919.989052228458,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,2,1,535.6,902892.6135407968,41223.88714343656,625568.4250833446,0,3160.027878845528 -8436,10417,18904,-9,18902,18901,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1053.884513594385,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,1,535.6,902892.6135407968,41223.88714343656,625568.4250833446,0,3160.027878845528 -8436,10417,18905,-9,18902,18901,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-974.1604389960257,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,2,1,535.6,902892.6135407968,41223.88714343656,625568.4250833446,0,3160.027878845528 -8436,10418,18906,-9,18902,18901,1,1,19,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1037.69879165003,0,2,1,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,33.91,45.75,-9,-9,3.333333333333333,1,1,1,0,0,2,1,1,806,77957.62804005272,0,0,0,1702.072474872032 -8437,10419,18907,18908,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.840901463843087,7.452625426626168,40,1,-113.6330980067749,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.092275737242199,7.412562229318773,57.51,47.91,40.47,55.65,10,1,1,0,0,0,4,4,1,342.5,1377279.051117341,761068.7315445687,353568.2032934889,0,3774.008666921248 -8437,10419,18908,18907,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.568513694971203,7.278217154503789,40,-1,-135.0612533891343,0,2,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,2,1,1,0,6.796769380945087,7.821923888114914,40.47,55.65,57.51,47.91,6.666666666666667,1,1,0,0,0,4,4,1,342.5,1377279.051117341,761068.7315445687,353568.2032934889,0,3774.008666921248 -8438,10420,18909,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.414651436915882,7.488035434444924,0,0,-1015.705542166254,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.314630497294452,54,46,-9,-9,7,1,1,0,0,0,2,3,1,814,359296.1465743773,266333.1500747553,145031.2016073003,0,1652.408071024004 -8439,10421,18910,18911,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.899559788424675,7.781539803354277,0,13,1,-181.1707805751904,0,3,3,2019,10,0,3,3,1,0,0,106.7168316204194,106.7168316204194,0,0,0,0,2,1,1,0,0,0,54.57,28.57,57.16,56.15,5,1,1,0,0,7,10,5,1,1197,609992.2931521137,147909.9924032393,460886.5242542879,193035.2288017926,4991.483143017602 -8439,10421,18911,18910,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.878277026127295,9.115095498258109,7.596781059666652,12,-1,118.0261340333863,0,2,2,2019,6,0,42,38,1,0,0,16.94094960293646,16.94094960293646,0,0,0,0,0,1,1,0,2.790109779855189,7.58396448581703,57.16,56.15,54.57,28.57,8.333333333333334,1,1,0,0,11,10,5,1,1197,609992.2931521137,147909.9924032393,460886.5242542879,193035.2288017926,4991.483143017602 -8440,10422,18912,18913,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.53580773562698,8.445745880531506,0,24,4,-92.73821028443156,0,-9,-9,2019,3,0,38,41,1,0,0,12.90075110101324,12.90075110101324,0,0,0,0,0,1,1,0,0,0,54.02,47.91,57.16,56.15,8.333333333333334,1,1,0,0,5,7,3,1,609.75,413002.0613395087,71095.17110517022,248295.2075784688,0,2094.584639095701 -8440,10422,18913,18912,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.471086480934285,6.494625418323873,0,24,-4,-71.83765663397259,0,2,2,2019,6,0,8,8,1,0,0,8.306271930796646,8.306271930796646,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.02,47.91,8.333333333333334,1,1,0,0,9,7,3,1,609.75,413002.0613395087,71095.17110517022,248295.2075784688,0,2094.584639095701 -8440,10422,18914,-9,18913,18912,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.4207145779733,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,609.75,413002.0613395087,71095.17110517022,248295.2075784688,0,2094.584639095701 -8440,10422,18915,-9,18913,18912,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-972.5730900919452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,1,609.75,413002.0613395087,71095.17110517022,248295.2075784688,0,2094.584639095701 -8441,10423,18916,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.08528527116764,7.957812465712543,0,0,-900.6440525693906,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.578519500796553,7.644520261046724,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,641,880962.5091089769,486828.78081379,266693.8016769892,0,1645.941649988231 -8442,10424,18917,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.77801122831119,7.709301529774303,0,0,0,-1062.630552472144,0,3,3,2019,3,0,40,0,1,0,0,8.580716143280661,8.580716143280661,0,0,0,0,0,1,1,0,0,0,41.58,52.86,-9,-9,1.666666666666667,2,3,0,0,5,6,3,0,658,37537.94842296302,44528.41958199329,0,0,1943.116356760272 -8442,10424,18918,-9,18917,-9,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-977.5981706413019,-9,2,-9,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,.9806561575128732,0,43.79,58.33,-9,-9,5,2,3,1,0,0,6,3,0,658,37537.94842296302,44528.41958199329,0,0,1943.116356760272 -8443,10425,18919,18920,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.79182639051789,9.055493434985715,33,0,-111.7246116967574,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.59721219840398,8.923184052767892,53.56,49.66,45.78,51.81,8.333333333333334,1,1,0,0,0,10,5,1,371.5,1812967.690361454,1172050.621517309,420188.2140317181,0,7581.115854029667 -8443,10425,18920,18919,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.69645647885572,6.214095025051737,33,0,74.5467813744575,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.864938423277589,6.946094328800408,45.78,51.81,53.56,49.66,8.333333333333334,1,1,0,0,0,10,5,1,371.5,1812967.690361454,1172050.621517309,420188.2140317181,0,7581.115854029667 -8444,10426,18921,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.283108062738169,7.195377051440174,0,0,-1047.73446996903,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.543705810627693,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,71,172551.9758139818,146317.0049330873,50313.58567313176,0,1386.346743479943 -8445,10427,18922,18923,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.250324961046497,9.164188171157122,0,27,-11,114.2436959546542,0,2,1,2019,7,0,60,60,1,0,0,17.55804205626806,17.55804205626806,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,13,7,5,1,998.5,-86293.83520567426,0,0,0,6156.71653125762 -8445,10427,18923,18922,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.076718326842643,7.963867391366715,0,26,11,-23.34566684430393,0,2,3,2019,7,0,7,10,1,0,0,42.45834169187965,42.45834169187965,0,0,0,0,2,0,0,0,6.934103447068729,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,9,7,5,1,998.5,-86293.83520567426,0,0,0,6156.71653125762 -8446,10428,18924,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.547975994319943,8.585430058420091,0,0,0,-905.7001922999234,0,2,1,2019,10,0,40,40,1,0,0,15.97087454255071,15.97087454255071,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,4,5,0,1326,-39838.58280094108,0,0,0,1904.63873068664 -8447,10429,18925,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-894.6988931844835,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,47.95,36.93,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,238,121033.266815931,0,77166.31181916574,0,1276.573414018959 -8448,10430,18926,18927,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.9444757099291,8.084100676361846,0,31,3,-80.33594126383107,0,3,3,2019,27,10,40,40,1,10,0,11.86784214135064,11.86784214135064,0,0,0,0,0,0,0,0,0,0,20.23,39.58,46.08,57.2,5,1,1,0,0,9,6,4,0,642.5,137876.4847911973,52892.15694150217,68105.0336471418,62753.07288620656,1833.88041766652 -8448,10430,18927,18926,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.244036888359671,7.392587257817021,0,31,-3,-107.2587442223439,0,3,-9,2019,12,0,21,30,1,0,0,7.543054752732846,7.543054752732846,0,0,0,0,0,0,0,0,1.35658696937802,0,46.08,57.2,20.23,39.58,6.666666666666667,1,1,0,0,9,6,4,0,642.5,137876.4847911973,52892.15694150217,68105.0336471418,62753.07288620656,1833.88041766652 -8448,10431,18928,-9,18927,18926,1,1,26,0,0,0,2,2,-9,0,3,7.716119827329652,7.791441712509147,0,0,0,-1065.355373854184,0,3,2,2019,12,0,38,35,1,2,1,7.689031441950968,7.689031441950968,0,0,0,0,0,0,0,0,0,0,48.88,45.14,-9,-9,3.333333333333333,1,1,0,0,9,6,3,0,930,86329.06297061512,0,0,0,1229.576491748497 -8449,10432,18929,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.745287929558149,8.692170749447888,0,0,0,-1003.753107138223,-9,2,2,2019,6,0,38,0,1,0,0,18.72133823119959,18.72133823119959,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,456,103138.0098267077,-48360.25037872396,0,0,1744.785258676042 -8450,10433,18930,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.105983931171,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,3.433729298413263,4.709026168924979,0,0,1,1,0,0,0,61.78,13.84,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,458,26277.69899959134,0,0,0,181.1056265228166 -8451,10434,18931,18932,-9,-9,1,1,56,0,1,0,3,3,-9,0,2,8.240256525722897,8.011599515237648,0,20,12,106.3024220419131,0,3,3,2019,19,7,37,44,1,7,0,11.74375052217459,11.74375052217459,0,0,0,0,2,1,1,0,0,0,41.63,17.85,51.36,49.48,5,1,1,0,0,10,5,4,1,488.3333333333333,236224.2656777923,53.44209566257026,214595.5932475444,47208.67989573353,2358.356411117789 -8451,10434,18932,18931,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.26925685400132,8.218297958017393,0,20,-12,-92.87191481388962,0,2,2,2019,17,6,39,37,1,6,0,11.63397831124142,11.63397831124142,0,0,0,0,2,1,1,0,0,0,51.36,49.48,41.63,17.85,6.666666666666667,1,1,0,0,12,5,4,1,488.3333333333333,236224.2656777923,53.44209566257026,214595.5932475444,47208.67989573353,2358.356411117789 -8451,10434,18933,-9,18932,18931,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.191266141344,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,5,4,1,488.3333333333333,236224.2656777923,53.44209566257026,214595.5932475444,47208.67989573353,2358.356411117789 -8452,10435,18934,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.316238394244028,8.027190042209249,0,0,0,-1001.236634800864,0,2,1,2019,13,1,38,37,1,1,0,9.763547027009722,9.763547027009722,0,0,0,0,0,0,0,0,.7500544807795912,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,446,359957.3167779657,7013.935259965736,323576.3344961549,0,1639.039229114975 -8453,10436,18935,18936,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.339553046865106,5.340819451379134,10,-4,70.08997792262556,0,2,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,5.439442715174466,53.14,45.74,40.29,38.19,8.333333333333334,1,1,0,0,0,9,3,1,621.5,1173714.37289319,637589.3337703873,282892.5318573206,0,2648.632108742814 -8453,10436,18936,18935,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.243492875649309,8.14433091961766,50,4,-5.96513576705161,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.310849035744255,40.29,38.19,53.14,45.74,6.666666666666667,1,1,0,0,2,9,3,1,621.5,1173714.37289319,637589.3337703873,282892.5318573206,0,2648.632108742814 -8454,10437,18937,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.681237142018237,6.970444144536494,0,0,-966.1466166569514,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.233768560238589,7.297254476470723,43.89,41.87,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,612,187585.8702867671,138919.3221762156,0,0,1694.690327415209 -8455,10438,18938,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.136200910636353,9.236010906509041,0,0,0,-1072.238456389117,0,-9,-9,2019,8,0,45,40,1,0,0,23.22720572067773,23.22720572067773,0,0,0,0,5.48,0,0,0,7.323231391316692,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,11,5,1,617,205962.6347914579,94228.26819708987,444730.4444176683,271632.0235456662,3019.435192762551 -8456,10439,18939,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1035.54047179362,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,36.6,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,647,0,0,0,0,-28.52497338846626 -8457,10440,18940,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.81699563785144,8.911281126106623,0,0,0,-849.6041631712035,0,1,1,2019,7,0,38,37,1,0,0,18.8079943845594,18.8079943845594,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1157,249327.0717405312,80805.52792682657,155857.4296104076,110575.5182974584,2339.668358026316 -8458,10441,18941,18945,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.710240213949623,8.647986060186049,0,24,-1,88.91653530064866,0,3,2,2019,6,0,37,37,1,0,0,16.05342770421706,16.05342770421706,0,0,0,0,0,1,1,0,8.138719254527967,0,57.16,56.15,61.26,43.33,8.333333333333334,1,1,0,0,8,8,4,1,866,183908.0357081098,127579.9536914641,110671.2716226192,88867.7061991146,4739.056687088052 -8458,10441,18942,-9,18945,18941,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1070.128154717333,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,48.96,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,866,183908.0357081098,127579.9536914641,110671.2716226192,88867.7061991146,4739.056687088052 -8458,10441,18943,-9,18945,18941,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.9773690827476,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,866,183908.0357081098,127579.9536914641,110671.2716226192,88867.7061991146,4739.056687088052 -8458,10441,18944,-9,18945,18941,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-952.7373172154721,-9,2,2,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.74,65.41,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,866,183908.0357081098,127579.9536914641,110671.2716226192,88867.7061991146,4739.056687088052 -8458,10441,18945,18941,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,8.112402096207752,7.554007260514635,0,25,1,39.80529016749716,0,2,2,2019,11,0,20,40,1,0,0,19.56832140211739,19.56832140211739,0,0,0,0,0,1,1,0,0,0,61.26,43.33,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,866,183908.0357081098,127579.9536914641,110671.2716226192,88867.7061991146,4739.056687088052 -8459,10442,18946,18947,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.665056844232842,8.369095972332747,0,28,0,-136.640720403053,0,3,2,2019,10,0,45,62,1,0,0,13.5003970879167,13.5003970879167,0,0,0,0,0,0,0,0,0,0,51.49,57.57,57.16,56.15,6.666666666666667,1,1,0,0,12,5,5,1,785,772435.4061396094,500724.6477171875,232361.1284212,134651.1680888294,3668.119535074512 -8459,10442,18947,18946,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.163723274079301,8.51696698209717,0,10,0,54.36514623374873,-9,-9,-9,2019,7,0,54,0,1,0,0,7.839215311213602,7.839215311213602,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.49,57.57,8.333333333333334,1,1,0,0,12,5,5,1,785,772435.4061396094,500724.6477171875,232361.1284212,134651.1680888294,3668.119535074512 -8459,10443,18948,-9,18946,18947,1,0,26,0,0,0,1,1,-9,0,4,7.947869267901878,7.954532811850759,0,0,0,-1017.928589960384,0,1,2,2019,9,0,38,38,1,0,1,9.986523956664531,9.986523956664531,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,2691,-109690.4470574415,10510.34469044652,0,0,719.6672309666467 -8459,10444,18949,-9,18946,18947,1,0,24,0,0,0,1,1,-9,0,4,7.814825103757587,7.737437889993788,0,0,0,-947.6875055362181,0,1,2,2019,13,1,37,38,1,1,1,8.042130198766753,8.042130198766753,0,0,0,0,0,0,0,0,.1565026019647753,0,40.23,61.31,-9,-9,5,1,1,0,0,6,5,3,1,1088,40869.26371039599,75933.46441931563,0,0,1013.910696678475 -8460,10445,18950,18951,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.168829737469403,8.062185883323199,0,4,-1,-34.25409186609493,0,2,2,2019,16,5,38,38,1,5,0,8.643170607711793,8.643170607711793,0,0,0,0,0,0,0,0,0,0,29.61,53.86,54.37,54.8,8.333333333333334,1,1,0,0,8,12,5,1,1239.5,20059.1789852181,25140.49448523277,151215.1314992667,152710.3192386076,3187.858764749532 -8460,10445,18951,18950,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.388263149722738,8.061733779718724,0,4,1,22.28835147351525,0,-9,-9,2019,11,0,42,42,1,0,0,11.74055804311324,11.74055804311324,0,0,0,0,0,0,0,0,0,0,54.37,54.8,29.61,53.86,8.333333333333334,1,1,0,0,4,12,5,1,1239.5,20059.1789852181,25140.49448523277,151215.1314992667,152710.3192386076,3187.858764749532 -8461,10446,18952,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,9.690357589271908,9.494138933238707,0,0,0,-1121.701074217272,0,2,2,2019,8,0,55,50,1,0,0,31.35968764767654,31.35968764767654,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,554,-13778.7296031217,168420.9155596943,0,0,4290.972922878846 -8462,10447,18953,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.521778933820208,8.355619886073924,0,0,0,-1022.703591652549,0,2,2,2019,17,6,41,41,1,6,0,13.48122486827194,13.48122486827194,0,0,0,0,0,0,0,0,1.500273437823565,0,29.53,39.4,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,96,96299.98412062875,0,246405.815342789,107971.8783861814,2241.120881860692 -8462,10448,18954,-9,18953,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.9324499756264,0,2,-9,2019,25,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,12.12,48.66,-9,-9,3.333333333333333,1,1,0,0,7,2,1,1,819,152460.3649939606,0,0,0,-207.9483965380911 -8463,10449,18955,-9,18959,18956,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.981491045502,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,1092.8,314466.4798334014,189026.8771037538,326817.2514282574,181880.3797382661,4618.777523776167 -8463,10449,18956,18959,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,9.021049800488569,8.852679918391006,0,28,0,-44.03286813471619,0,1,3,2019,16,5,41,37,1,5,0,26.77521229480866,26.77521229480866,0,0,0,0,2,1,1,0,3.913941644187199,0,46.61,56.93,48,54.77,6.666666666666667,1,1,0,0,12,6,5,1,1092.8,314466.4798334014,189026.8771037538,326817.2514282574,181880.3797382661,4618.777523776167 -8463,10449,18957,-9,18959,18956,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.777894717519,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1092.8,314466.4798334014,189026.8771037538,326817.2514282574,181880.3797382661,4618.777523776167 -8463,10449,18958,-9,18959,18956,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-892.0204999651285,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,5,1,1092.8,314466.4798334014,189026.8771037538,326817.2514282574,181880.3797382661,4618.777523776167 -8463,10449,18959,18956,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.445664574916696,8.341004930681432,0,25,0,122.3782858521383,0,2,2,2019,10,1,32,32,1,1,0,17.47414756119129,17.47414756119129,0,0,0,0,0,1,1,0,2.699702945170252,0,48,54.77,46.61,56.93,8.333333333333334,1,1,0,0,12,6,5,1,1092.8,314466.4798334014,189026.8771037538,326817.2514282574,181880.3797382661,4618.777523776167 -8464,10450,18960,18961,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,13,-2,53.89109098002005,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.58,20.63,59.53,56.44,0,1,1,0,0,4,9,3,0,1807.5,379351.2940343594,131840.5103456438,0,0,1737.921874982665 -8464,10450,18961,18960,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.975493766937717,8.107328704714902,0,13,2,19.66828712315221,0,2,2,2019,8,0,40,38,1,0,0,8.819014758663378,8.819014758663378,0,0,0,0,74.5,1,1,0,0,0,59.53,56.44,34.58,20.63,5,1,1,0,0,6,9,3,0,1807.5,379351.2940343594,131840.5103456438,0,0,1737.921874982665 -8464,10451,18962,-9,18960,18961,1,0,19,0,0,0,2,2,1,0,3,7.455112014722562,7.381670930824555,0,0,0,-972.4522930198303,-9,2,2,2019,2,0,37,0,1,0,1,5.412608529436127,5.412608529436127,0,0,0,0,14.5,1,1,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,1,9,3,0,700,66553.83052628013,0,0,0,1599.917800881633 -8465,10452,18963,18964,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.622775191488758,8.033677170992325,0,6,-10,-73.53578603240788,0,2,2,2019,16,3,47,48,1,3,0,9.414323251371188,9.414323251371188,0,0,0,0,0,0,0,0,0,0,46.53,61.33,57.16,56.15,5,1,1,0,0,5,9,5,1,547.5,574831.3041211625,161376.54432346,304016.801171761,7734.194338092761,6477.080415795368 -8465,10452,18964,18963,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.21626043486437,9.501347897742955,0,6,10,56.28333309711883,0,2,2,2019,6,0,40,40,1,0,0,35.68931875121805,35.68931875121805,0,0,0,0,0,0,0,0,3.918422426505535,0,57.16,56.15,46.53,61.33,8.333333333333334,1,1,0,0,8,9,5,1,547.5,574831.3041211625,161376.54432346,304016.801171761,7734.194338092761,6477.080415795368 -8466,10453,18965,-9,-9,-9,1,1,21,0,1,0,2,2,-9,0,2,7.324109545107322,7.38740957540525,0,0,0,-1104.589459691973,0,2,2,2019,20,6,48,48,1,6,1,4.455385645811111,4.455385645811111,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,0,0,4,4,3,1,6059,23923.75800498089,0,0,0,995.9086761583928 -8467,10454,18966,18967,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,9.047936570271935,8.951073524617195,0,5,-2,95.98759204114762,0,2,2,2019,9,0,45,47,1,0,0,16.08812877127944,16.08812877127944,0,0,0,0,0,0,0,0,2.676795083796918,0,54.2,57.49,55.19,51.55,8.333333333333334,1,1,0,0,7,9,5,1,751.5,476651.8599057083,309093.2145644746,283649.1692724871,138401.8862806975,5330.986425500271 -8467,10454,18967,18966,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.886100819536459,9.187693758944143,0,5,2,49.58206835513795,0,-9,-9,2019,7,1,40,40,1,1,0,21.30817056131959,21.30817056131959,0,0,0,0,0,0,0,0,2.552791722952551,0,55.19,51.55,54.2,57.49,8.333333333333334,1,1,0,0,2,9,5,1,751.5,476651.8599057083,309093.2145644746,283649.1692724871,138401.8862806975,5330.986425500271 -8468,10455,18968,18969,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.73377924642805,8.962414192541358,0,7,-1,-14.83741418560728,0,2,2,2019,12,0,40,40,1,0,0,20.67112516489788,20.67112516489788,0,0,0,0,0,0,0,0,0,0,54.2,57.49,43.37,57.28,8.333333333333334,1,1,0,0,8,9,5,1,695.5,797692.1391095639,435705.0670122367,428856.6546717558,102933.937905036,3757.525407190004 -8468,10455,18969,18968,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.15840548157766,7.959773831784803,0,7,1,-87.87993675988575,0,3,3,2019,12,0,38,38,1,0,0,10.53658603456904,10.53658603456904,0,0,0,0,2,0,0,0,0,0,43.37,57.28,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,1,695.5,797692.1391095639,435705.0670122367,428856.6546717558,102933.937905036,3757.525407190004 -8469,10456,18970,18971,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.308215467740117,8.553841805532807,0,7,-6,-14.97285118491607,0,3,2,2019,18,6,49,47,1,6,0,12.90333842125375,12.90333842125375,0,0,0,0,0,0,0,0,4.441806201704543,0,43.12,58.55,54.37,54.8,5,1,1,0,0,8,2,5,1,456,774043.7755289476,82067.33186295693,710420.1906968963,59358.82381951717,5106.476980205605 -8469,10456,18971,18970,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.920671885386703,9.381427355258651,0,7,6,-63.00331719840982,0,2,2,2019,13,1,37,41,1,1,0,21.78231122261831,21.78231122261831,0,0,0,0,0,0,0,0,7.322848835802627,0,54.37,54.8,43.12,58.55,8.333333333333334,1,1,0,0,8,2,5,1,456,774043.7755289476,82067.33186295693,710420.1906968963,59358.82381951717,5106.476980205605 -8470,10457,18972,18973,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.43028597791187,8.537199778364823,0,3,-4,-10.33840863629092,-9,-9,-9,2019,19,7,47,0,1,7,0,9.924506512837828,9.924506512837828,0,0,0,0,0,1,1,0,0,0,36.88,53.56,57.16,56.15,3.333333333333333,1,1,0,0,13,12,4,1,545,45223.15717468422,12702.08357453014,0,0,2881.820930193751 -8470,10457,18973,18972,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.161533356822175,7.547584523325401,0,3,4,37.01762895721548,-9,-9,-9,2019,11,0,22,0,1,0,0,8.765562325455591,8.765562325455591,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.88,53.56,6.666666666666667,1,1,0,0,10,12,4,1,545,45223.15717468422,12702.08357453014,0,0,2881.820930193751 -8470,10457,18974,-9,18973,18972,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-865.6436633240437,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,1,545,45223.15717468422,12702.08357453014,0,0,2881.820930193751 -8470,10457,18975,-9,18973,18972,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.7066076412685,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,545,45223.15717468422,12702.08357453014,0,0,2881.820930193751 -8471,10458,18976,18977,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.271655509318133,7.758327675565939,6.243051166861306,29,-1,72.87974917533728,0,2,2,2019,14,3,17,32,1,3,0,10.86827903207266,10.86827903207266,0,0,0,0,0,1,1,0,5.994275219118882,0,42.94,42.84,58.08,43.46,3.333333333333333,1,1,0,1,8,12,4,1,1035,562430.8561461179,332076.8914175748,206130.6907669212,36552.83399756231,2186.915609042843 -8471,10458,18977,18976,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.665331562175632,7.520007527718031,0,27,1,21.60166286675902,0,2,2,2019,10,0,35,40,1,0,0,7.355333774780886,7.355333774780886,0,0,0,0,2,1,1,0,0,0,58.08,43.46,42.94,42.84,8.333333333333334,1,1,0,1,11,12,4,1,1035,562430.8561461179,332076.8914175748,206130.6907669212,36552.83399756231,2186.915609042843 -8471,10459,18978,-9,18976,18977,1,1,25,0,0,0,2,2,-9,0,5,7.781891282962303,7.824471329952964,0,0,0,-1064.865694094371,0,2,2,2019,12,3,45,45,1,3,1,6.728296948318357,6.728296948318357,0,0,0,0,0,1,1,0,1.249855632535733,0,47.45,47.37,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,649,30973.75716685325,0,0,0,941.1250697366381 -8472,10460,18979,-9,18981,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.0745257884835,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,466.3333333333333,-104203.0237220064,0,0,0,1411.07386880903 -8472,10460,18980,-9,18981,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.992341385128,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,466.3333333333333,-104203.0237220064,0,0,0,1411.07386880903 -8472,10460,18981,-9,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,5.801054810881732,5.933601999496156,0,0,0,-928.4477254773162,0,2,2,2019,12,0,16,16,1,0,0,2.976117183293948,2.976117183293948,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,5,7,2,0,466.3333333333333,-104203.0237220064,0,0,0,1411.07386880903 -8473,10461,18982,18983,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,9.200313505157579,9.229110567655933,50,-1,-12.55175285738783,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.625380622213351,8.966598143387733,57.92,51.82,61.12,51.57,10,1,1,0,0,0,9,5,1,1933.5,2618694.286221746,1241971.721556951,816733.5757584621,0,15201.19128055405 -8473,10461,18983,18982,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.087561745731466,6.880804932552225,50,1,-43.59867953733141,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.092611303186212,7.245462487215643,61.12,51.57,57.92,51.82,10,1,1,0,0,4,9,5,1,1933.5,2618694.286221746,1241971.721556951,816733.5757584621,0,15201.19128055405 -8474,10462,18984,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1000.617794064995,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,81.3212967685989,0,0,1,1,0,0,0,33.56,17.19,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,471,71533.84058051706,0,27414.8477717463,0,2183.288546832129 -8474,10463,18985,-9,18984,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-988.1422314444453,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,44.34,11.36,-9,-9,5,1,1,0,0,5,4,1,0,466,-104511.4169506702,0,0,0,694.8131476537237 -8475,10464,18986,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,1,0,6.157024450728015,6.2835043772536,0,0,-1000.096834321781,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,5.889689534284162,31.75,19.7,-9,-9,6.666666666666667,3,4,0,1,0,6,2,0,189,0,0,0,0,2296.075287653722 -8476,10465,18987,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.01690430426855,6.605840957095959,0,0,-907.7716759796895,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.841413915053634,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,541,329156.4918606782,105606.9390257018,172183.9820827675,0,1309.318694579133 -8477,10466,18988,-9,18989,18990,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.6610678686382,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,6,5,1,249.75,864685.9135079759,380785.5153640041,405544.6729603384,0,5558.086937419511 -8477,10466,18989,18990,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,8.853880038440302,8.601830183727062,0,38,1,58.2690539663303,0,2,1,2019,10,0,10,20,1,0,0,78.51853258937156,78.51853258937156,0,0,0,0,2,1,1,0,5.003688514712057,0,41.98,38.62,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,249.75,864685.9135079759,380785.5153640041,405544.6729603384,0,5558.086937419511 -8477,10466,18990,18989,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,8.951331856410663,9.16742135001323,0,18,-1,-48.43537096637109,0,2,2,2019,12,0,30,36,1,0,0,39.67805230293354,39.67805230293354,0,0,0,0,2,1,1,0,5.83654950026868,0,54.79,55.86,41.98,38.62,8.333333333333334,1,1,0,0,13,6,5,1,249.75,864685.9135079759,380785.5153640041,405544.6729603384,0,5558.086937419511 -8477,10466,18991,-9,18989,18990,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-986.6338199253715,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,249.75,864685.9135079759,380785.5153640041,405544.6729603384,0,5558.086937419511 -8478,10467,18992,18993,-9,-9,1,1,49,0,3,0,1,1,-9,0,5,9.236333916632685,9.041221546361609,0,17,-3,-124.8693582742501,0,3,2,2019,8,0,40,38,1,0,0,23.29618583121562,23.29618583121562,0,0,0,0,0,1,1,0,8.743797086898114,0,57.06,57.76,50.5,38.58,8.333333333333334,2,3,0,0,13,9,4,1,2074.5,118376.7556201262,107701.36535787,386694.5590730623,260822.5360162607,4900.786498201929 -8478,10467,18993,18992,-9,-9,1,0,52,0,3,0,2,2,-9,0,3,0,0,0,17,3,-173.9051999668727,0,1,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.699850181770098,0,50.5,38.58,57.06,57.76,8.333333333333334,2,3,0,0,3,9,4,1,2074.5,118376.7556201262,107701.36535787,386694.5590730623,260822.5360162607,4900.786498201929 -8479,10468,18994,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,4.52760377250419,5.13669516083919,0,0,-826.5535281845891,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,2.677899263779203,6.088514340833095,50.59684961541596,0,1,1,0,3.933759010739414,4.261702303206337,60.53,8.16,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,211,79765.2723526137,0,209250.8790852209,0,2014.314405339322 -8480,10469,18995,-9,18997,18998,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.9550741078981,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,2,0,612.25,2852.082767312319,47479.98686399163,0,0,2530.294003706105 -8480,10469,18996,-9,18997,18998,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-801.0673412655625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,2,0,612.25,2852.082767312319,47479.98686399163,0,0,2530.294003706105 -8480,10469,18997,18998,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,0,0,0,4,-1,65.13693395336948,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,41.51,53.88,51.24,58.84,6.666666666666667,4,2,0,0,0,9,2,0,612.25,2852.082767312319,47479.98686399163,0,0,2530.294003706105 -8480,10469,18998,18997,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.855574204999486,8.259738134088787,0,4,1,35.8198334455687,0,-9,-9,2019,9,0,39,38,1,0,0,7.641825759282988,7.641825759282988,0,0,0,0,0,1,1,0,0,0,51.24,58.84,41.51,53.88,6.666666666666667,1,1,0,0,4,9,2,0,612.25,2852.082767312319,47479.98686399163,0,0,2530.294003706105 -8481,10470,18999,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,5.359978643721008,5.19918094523609,0,0,-912.9096020261866,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,4.976058869254887,0,0,1,1,0,3.811001737994612,5.315989265956635,45.45,43,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,339,106731.0429443054,27653.25884402437,234409.4692184532,0,1466.712849758852 -8482,10471,19000,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.791681296550141,5.994103316676013,0,0,-1137.599252218069,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.123446077447074,5.799524513305987,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,670,110194.5808030205,126897.5178563962,233190.8973580135,0,2070.757100246727 -8483,10472,19001,19002,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.565501656279387,7.46944752703,0,20,9,23.8761047797087,0,3,3,2019,12,2,48,36,1,2,0,5.087306309037529,5.087306309037529,0,0,0,0,0,0,0,0,0,0,39.37,54.73,53,54,5,1,1,0,0,6,2,3,0,1079,385134.1952342576,216206.881486519,87273.93193945667,6164.229329528326,877.6857128013672 -8483,10472,19002,19001,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,5.248090942416313,5.175232606773344,21,0,2.613086732395285,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,5.472998584562948,53,54,39.37,54.73,8,1,1,0,0,0,2,3,0,1079,385134.1952342576,216206.881486519,87273.93193945667,6164.229329528326,877.6857128013672 -8484,10473,19003,19004,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,8.26548268059892,8.201403637792286,6,0,-15.95475794294494,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.075515324256675,8.429126769672662,57.06,57.76,40.73,36.55,8.333333333333334,1,1,0,0,9,11,4,1,610.5,1695945.867233403,1118651.685543214,397225.675284101,0,3049.398097905731 -8484,10473,19004,19003,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.388124925883931,6.164130552303395,6,0,-150.631883498932,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,6.644708571782171,6.35982909470365,40.73,36.55,57.06,57.76,6.666666666666667,1,1,0,0,13,11,4,1,610.5,1695945.867233403,1118651.685543214,397225.675284101,0,3049.398097905731 -8485,10474,19005,19006,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.997758615363873,8.706524051107856,0,7,6,-2.194294108218026,0,3,3,2019,6,0,50,50,1,0,0,23.1845042901265,23.1845042901265,0,0,0,0,0,0,0,0,0,0,60.29,52.11,51.83,57.2,8.333333333333334,1,1,0,0,7,2,5,1,863,1634274.720132248,1437950.149536572,247320.21989527,0,3960.556223807625 -8485,10474,19006,19005,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.838657853404873,8.240897838230788,0,7,-6,13.38855857296617,0,-9,2,2019,9,0,40,42,1,0,0,9.651454331935401,9.651454331935401,0,0,0,0,0,0,0,0,0,0,51.83,57.2,60.29,52.11,6.666666666666667,1,1,0,0,7,2,5,1,863,1634274.720132248,1437950.149536572,247320.21989527,0,3960.556223807625 -8486,10475,19007,-9,19008,19009,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1007.79080590027,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,12,5,1,340,452296.3870798742,-3074.973832529631,431617.3288170311,116673.9045546972,4874.95253723586 -8486,10475,19008,19009,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.408402444260433,8.246960393388905,7.986272680976072,19,1,7.599992868877679,0,1,1,2019,10,0,9,6,1,0,0,21.38624103295914,21.38624103295914,0,0,0,0,7,1,1,0,7.133094953435995,0,41.51,59.08,46.69,58.35,6.666666666666667,1,1,0,0,8,12,5,1,340,452296.3870798742,-3074.973832529631,431617.3288170311,116673.9045546972,4874.95253723586 -8486,10475,19009,19008,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9168904157423,8.992292458602449,0,19,-1,50.78591612207772,0,3,3,2019,12,0,38,41,1,0,0,19.87625005622826,19.87625005622826,0,0,0,0,2,1,1,0,0,0,46.69,58.35,41.51,59.08,6.666666666666667,1,1,0,0,9,12,5,1,340,452296.3870798742,-3074.973832529631,431617.3288170311,116673.9045546972,4874.95253723586 -8486,10475,19010,-9,19008,19009,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-976.3246406755485,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,1.082856546212514,0,57.16,56.15,-9,-9,10,1,1,0,0,2,12,5,1,340,452296.3870798742,-3074.973832529631,431617.3288170311,116673.9045546972,4874.95253723586 -8487,10476,19011,19012,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.653729040486185,8.740691660349425,0,1,-4,-69.31998586384766,-9,-9,-9,2019,8,0,51,0,1,0,0,14.79010328412426,14.79010328412426,0,0,0,0,0,0,0,0,3.053363817877993,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,7,9,5,1,227,303446.9199271974,-33004.44471512215,378570.806878725,326838.1895265768,3795.573504203592 -8487,10476,19012,19011,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.357828250875274,8.591094723974708,0,1,4,-6.583944815784165,-9,2,2,2019,9,0,42,0,1,0,0,15.65139178793755,15.65139178793755,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.83,57.2,8.333333333333334,1,1,0,0,9,9,5,1,227,303446.9199271974,-33004.44471512215,378570.806878725,326838.1895265768,3795.573504203592 -8488,10477,19013,19014,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,8,-11,34.88210677282142,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,36.78,54.83,19.82,33.16,8.333333333333334,1,1,0,0,0,12,2,1,309,247420.5405821105,84638.89836644098,189384.5494327187,0,1934.04617605258 -8488,10477,19014,19013,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,6.036280217988186,5.723354678024951,8,11,-13.20286747100128,0,3,3,2019,25,9,0,0,4,9,0,0,0,1,0,128.3155047297747,0,0,1,1,0,0,5.866192764364818,19.82,33.16,36.78,54.83,5,1,1,0,0,0,12,2,1,309,247420.5405821105,84638.89836644098,189384.5494327187,0,1934.04617605258 -8489,10478,19015,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.567055877613823,8.633551500449954,0,0,0,-1075.617272540757,-9,2,2,2019,11,0,36,0,1,0,0,21.81510857813364,21.81510857813364,0,0,0,0,0,0,0,0,2.765964160460393,0,54.74,57.22,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,552,157488.3326165944,13722.81507494378,0,0,1946.238173666509 -8490,10479,19016,-9,19017,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.457804779878,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,1,317.5,-371.5217546888744,0,0,0,998.4088241372813 -8490,10479,19017,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,0,0,0,0,-970.0388949635089,0,2,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.59,43.97,-9,-9,0,1,1,0,1,0,13,1,1,317.5,-371.5217546888744,0,0,0,998.4088241372813 -8490,10480,19018,-9,19017,-9,1,0,23,0,1,0,2,2,-9,0,4,7.217294048944428,7.670987291124442,0,0,0,-1046.445981308824,0,2,-9,2019,12,0,30,30,1,2,1,6.950503587755364,6.950503587755364,0,0,0,0,2,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,4,13,3,1,589,54032.425881362,143132.9599697459,0,0,1145.381802233071 -8490,10481,19019,-9,19017,-9,1,0,22,0,1,1,1,0,0,0,4,0,0,0,0,0,-990.183576266723,-9,2,-9,2019,29,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,0,0,9.120000000000001,73.11,-9,-9,1.666666666666667,1,1,0,1,5,13,1,1,1404,-7751.980901736231,0,0,0,0 -8490,10482,19020,-9,19017,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-939.0682062388023,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,0,0,45,59,-9,-9,6.666666666666667,1,1,0,1,0,13,1,1,294,56290.24412044392,0,0,0,0 -8491,10483,19021,19023,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,9.557159671636654,9.598318273896981,0,2,-5,102.3580169862574,0,2,-9,2019,7,0,52,52,1,0,0,28.11641215792408,28.11641215792408,0,0,0,0,0,1,1,0,8.148392053297794,0,62.28,45.64,50.12,46.95,8.333333333333334,1,1,0,0,7,10,5,1,988,1161934.685406433,732358.8320070384,235594.5833050177,59873.34960164118,5546.737443178696 -8491,10483,19022,-9,19021,19023,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1012.146765322924,-9,2,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,2,1,1,0,0,0,49.75,53.18,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,988,1161934.685406433,732358.8320070384,235594.5833050177,59873.34960164118,5546.737443178696 -8491,10483,19023,19021,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,6.376236639528085,6.448396117701064,0,2,5,-77.28528802761653,0,2,3,2019,9,0,15,20,1,0,0,5.15179117255235,5.15179117255235,0,0,0,0,0,1,1,0,8.057673928928793,0,50.12,46.95,62.28,45.64,8.333333333333334,1,1,0,0,7,10,5,1,988,1161934.685406433,732358.8320070384,235594.5833050177,59873.34960164118,5546.737443178696 -8492,10484,19024,19025,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.584021445885105,8.324060370345846,0,10,-15,119.527833280019,0,2,2,2019,23,10,50,35,1,10,0,5.512226842948658,5.512226842948658,0,0,0,0,0,0,0,0,0,0,31.66,38.44,61.68,49.95,5,1,1,0,1,11,6,4,1,619,395345.1486330055,175615.4100362241,104433.073638824,0,2318.997173781261 -8492,10484,19025,19024,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.723486242290739,7.960674713448545,0,10,15,62.38553574304638,0,2,1,2019,10,0,50,40,1,0,0,7.424433282344773,7.424433282344773,0,0,0,0,0,0,0,0,0,0,61.68,49.95,31.66,38.44,6.666666666666667,1,1,0,0,11,6,4,1,619,395345.1486330055,175615.4100362241,104433.073638824,0,2318.997173781261 -8493,10485,19026,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.524875000938197,8.454640819659613,0,0,0,-901.2602705734174,0,3,3,2019,11,0,48,45,1,0,0,9.575985467201868,9.575985467201868,0,0,0,0,0,0,0,0,3.336316950945961,0,47.8,43.06,-9,-9,5,1,1,0,0,7,7,4,0,917,560479.6023386578,329980.3318112665,194563.4814284235,107191.3719687727,1620.739700025931 -8494,10486,19027,-9,19030,19029,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.0087128568669,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,744,274628.0546782621,218198.353964887,124901.1767730727,74647.25725383322,2245.840798372621 -8494,10486,19028,-9,19030,19029,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.608792866681,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,744,274628.0546782621,218198.353964887,124901.1767730727,74647.25725383322,2245.840798372621 -8494,10486,19029,19030,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.389584558298955,8.234513633330007,0,8,2,-4.03979659564531,0,2,2,2019,17,6,50,45,1,6,0,8.304693639908679,8.304693639908679,0,0,0,0,0,1,1,0,0,0,36.14,57.86,54.79,55.86,5,1,1,0,0,9,2,3,1,744,274628.0546782621,218198.353964887,124901.1767730727,74647.25725383322,2245.840798372621 -8494,10486,19030,19029,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,2.074231688057287,1.874398620668196,0,8,-2,115.5204976350324,0,2,2,2019,7,0,45,35,1,0,0,.0201757101436365,.0201757101436365,0,0,0,0,0,1,1,0,0,0,54.79,55.86,36.14,57.86,8.333333333333334,1,1,0,0,9,2,3,1,744,274628.0546782621,218198.353964887,124901.1767730727,74647.25725383322,2245.840798372621 -8495,10487,19031,19032,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,7.203776959056714,7.29249996293069,0,15,-6,-56.50587812236643,0,1,1,2019,8,0,40,28,1,0,0,3.777672051096335,3.777672051096335,0,0,0,0,0,0,0,0,5.97018202597889,0,51.83,57.2,59.43,48.33,8.333333333333334,1,1,0,0,6,7,4,1,435.5,74539.18143115757,-64009.21455872248,0,0,2897.064336140531 -8495,10487,19032,19031,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.341981567805979,8.481959762736423,0,15,6,133.6709671299246,0,-9,-9,2019,9,0,40,40,1,0,0,9.384530190566275,9.384530190566275,0,0,0,0,0,0,0,0,0,0,59.43,48.33,51.83,57.2,8.333333333333334,1,1,0,0,8,7,4,1,435.5,74539.18143115757,-64009.21455872248,0,0,2897.064336140531 -8496,10488,19033,19034,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.616482064250606,8.78204475908726,0,11,1,114.1810591956691,-9,-9,-9,2019,11,0,57,0,1,0,0,12.38990997734732,12.38990997734732,0,0,0,0,0,0,0,0,3.50113537800183,0,56.82,45.81,49.04,55.86,8.333333333333334,1,1,0,0,12,4,5,1,308.5,1908674.268240888,1547489.735136759,166197.740869769,0,3591.079780561033 -8496,10488,19034,19033,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.79331724866953,7.758428644192904,0,36,-1,-1.625091958629528,0,3,3,2019,12,0,32,32,1,0,0,11.35040885789415,11.35040885789415,0,0,0,0,0,0,0,0,3.217234835782561,0,49.04,55.86,56.82,45.81,6.666666666666667,1,1,0,0,12,4,5,1,308.5,1908674.268240888,1547489.735136759,166197.740869769,0,3591.079780561033 -8497,10489,19035,19036,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,22,-1,-48.52951419480281,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,44.93,17.54,38.77,48.67,0,1,1,0,0,3,10,3,1,875,-56657.93327921924,0,0,0,1788.913681528747 -8497,10489,19036,19035,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.71410324817504,7.830269730812373,0,22,1,-11.25657847238225,0,-9,-9,2019,11,0,34,34,1,0,0,7.172304322755791,7.172304322755791,0,0,0,0,2,1,1,0,0,0,38.77,48.67,44.93,17.54,3.333333333333333,1,1,0,0,6,10,3,1,875,-56657.93327921924,0,0,0,1788.913681528747 -8497,10490,19037,-9,19035,19036,1,0,22,0,0,0,2,2,-9,0,3,7.39165741212677,6.914383847793983,0,0,0,-1024.994745084273,0,2,2,2019,15,3,16,18,1,3,1,10.42206113088499,10.42206113088499,0,0,0,0,2,1,1,0,0,0,44.75,47.24,-9,-9,5,1,1,0,0,6,10,3,1,223,-46481.99770328775,0,0,0,555.6596875494942 -8497,10491,19038,-9,19035,19036,1,1,27,0,0,0,2,2,-9,0,4,8.112401282271286,8.291327385622068,0,0,0,-923.9528762869272,0,3,2,2019,18,7,41,49,1,7,1,9.593000739037761,9.593000739037761,0,0,0,0,0,1,1,0,0,0,31.38,61.38,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,521,100587.0146808873,27001.08796790745,0,0,1569.955887259427 -8498,10492,19039,-9,-9,-9,1,0,40,0,5,0,1,1,-9,0,5,0,0,0,0,0,-1011.909197551317,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.17,43.07,-9,-9,10,3,4,0,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19040,-9,19039,-9,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1017.430186717356,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19041,-9,19039,-9,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1209.999127188885,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,3,4,-9,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19042,-9,19039,-9,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-944.9374329825025,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19043,-9,19039,-9,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-833.1477847973881,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19044,-9,19039,-9,1,1,17,0,5,1,2,0,0,0,5,0,0,0,0,0,-1070.339106760318,-9,1,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.6,38.62,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8498,10492,19045,-9,19039,-9,1,1,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-985.7172285564968,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,3,4,-9,0,0,8,1,0,777.8571428571429,-66580.97012608373,0,0,0,2235.562374767601 -8499,10493,19046,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.047081935362566,7.598858342683747,0,0,-1096.064779125446,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.945891933567893,7.408507566358606,29.87,43.07,-9,-9,10,1,1,0,0,0,12,3,1,437,980431.6387470813,608258.5225469638,246724.7330478273,0,1356.366452598235 -8500,10494,19047,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.252008775996611,8.493715403989967,0,0,0,-927.0550572517726,0,1,1,2019,8,0,42,42,1,0,0,9.615960291502063,9.615960291502063,0,0,0,0,0,0,0,0,2.983726555057118,0,58.73,40.56,-9,-9,8.333333333333334,3,4,0,0,6,8,4,1,401,162047.2847920606,-74975.20583589909,0,0,1924.563770807658 -8501,10495,19048,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.997112947103656,6.756832133500034,0,0,-1038.42227889071,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.90103259486061,6.922789434717758,50.63,50.99,-9,-9,10,1,1,0,0,0,11,2,1,198,378425.4281791277,165150.8495106992,89133.61241984484,0,2167.117621327118 -8502,10496,19049,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.431821305203869,6.417772239170745,0,0,0,-1056.144698387841,0,2,2,2019,12,0,30,64,1,0,0,2.497449920579042,2.497449920579042,0,0,0,0,0,0,0,0,.2160429006637406,0,38.42,47.13,-9,-9,3.333333333333333,1,1,0,0,12,7,2,0,301,178359.8273195011,98335.64481253148,0,0,540.2767452368421 -8503,10497,19050,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.3955967361912,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.05,48.98,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,157,127571.5197048087,0,0,0,1085.137161602878 -8504,10498,19051,19052,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.527330302926345,8.709385491614874,0,1,4,-44.82281799214274,0,2,2,2019,6,0,47,45,1,0,0,14.07458279358022,14.07458279358022,0,0,0,0,0,0,0,0,0,0,54.79,55.86,44.65,42.25,8.333333333333334,1,1,0,0,8,5,5,1,743.5,67598.4855493794,84519.22383760096,130451.0489448769,151540.6237008616,3417.289799187744 -8504,10498,19052,19051,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.164718350771532,8.279347693548445,4.60893600054618,1,-4,-94.40288849220184,-9,-9,-9,2019,21,9,41,0,1,9,0,9.132380157848422,9.132380157848422,0,0,0,0,0,0,0,0,4.688616599578216,0,44.65,42.25,54.79,55.86,6.666666666666667,1,1,0,0,0,5,5,1,743.5,67598.4855493794,84519.22383760096,130451.0489448769,151540.6237008616,3417.289799187744 -8505,10499,19053,-9,19056,19055,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.5865300909828,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,5,1,817,1754332.862793236,1520607.254836551,568547.5346982861,343818.7256858888,4980.671152135812 -8505,10499,19054,-9,19056,19055,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.1290389074348,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,817,1754332.862793236,1520607.254836551,568547.5346982861,343818.7256858888,4980.671152135812 -8505,10499,19055,19056,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.868715768695679,8.47601453043087,0,11,-1,6.096357295467105,0,2,1,2019,16,5,44,42,1,5,0,15.7577456886768,15.7577456886768,0,0,0,0,0,1,1,0,3.608997894707302,0,33.24,59.12,49.41,58.28,5,1,1,0,0,13,1,5,1,817,1754332.862793236,1520607.254836551,568547.5346982861,343818.7256858888,4980.671152135812 -8505,10499,19056,19055,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.887052216755137,8.467508240063127,0,11,1,-107.1493503725557,0,2,1,2019,10,0,35,30,1,0,0,23.68804849962701,23.68804849962701,0,0,0,0,0,1,1,0,6.390846667070353,0,49.41,58.28,33.24,59.12,8.333333333333334,1,1,0,0,13,1,5,1,817,1754332.862793236,1520607.254836551,568547.5346982861,343818.7256858888,4980.671152135812 -8506,10500,19057,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,3,7.173620135745177,6.825359960145168,0,0,0,-1123.240475022283,0,2,2,2019,12,0,38,38,1,0,0,3.843582757842618,3.843582757842618,0,0,0,0,0,1,1,0,0,0,39.67,56.17,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,164,-16281.83107694792,0,0,0,765.7145514621423 -8507,10501,19058,-9,19060,19059,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.398241606285,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,615.75,195173.4908509962,136067.3859156791,163648.8542172251,76173.31018008888,4106.318742257457 -8507,10501,19059,19060,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.9513252569991,8.742018769703684,0,8,4,92.98500495182861,0,2,3,2019,10,0,36,35,1,0,0,19.88808640571104,19.88808640571104,0,0,0,0,0,1,1,0,0,0,49.58,52.73,33.42,56.72,6.666666666666667,1,1,0,0,9,2,4,0,615.75,195173.4908509962,136067.3859156791,163648.8542172251,76173.31018008888,4106.318742257457 -8507,10501,19060,19059,-9,-9,1,0,42,0,2,0,2,2,-9,0,2,8.129605968181641,7.983875438857306,0,8,-4,74.49481438976719,0,3,3,2019,19,7,38,37,1,7,0,9.025868722280956,9.025868722280956,0,0,0,0,0,1,1,0,0,0,33.42,56.72,49.58,52.73,3.333333333333333,1,1,0,0,9,2,4,0,615.75,195173.4908509962,136067.3859156791,163648.8542172251,76173.31018008888,4106.318742257457 -8507,10501,19061,-9,19060,19059,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.71369120729,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,615.75,195173.4908509962,136067.3859156791,163648.8542172251,76173.31018008888,4106.318742257457 -8507,10502,19062,-9,19060,19059,1,0,18,0,2,1,2,0,0,0,2,0,0,0,0,0,-955.6647340551033,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,42.45,52.35,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,478,0,0,0,0,0 -8508,10503,19063,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1117.472548107601,-9,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,-9,-9,1.666666666666667,2,3,0,1,3,8,1,0,1092,29419.78646266746,167807.1547073257,0,0,1024.704376390443 -8509,10504,19064,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-887.3175893266759,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.45,25.59,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,1826,-40806.22073890895,0,0,0,927.220865757218 -8510,10505,19065,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.122527531229778,8.228170101479208,0,0,0,-1058.862336346411,0,1,1,2019,0,0,38,40,1,0,0,9.913096807024345,9.913096807024345,0,0,0,0,0,0,0,0,0,0,61.68,26.01,-9,-9,3.333333333333333,3,4,0,0,5,4,4,0,587,201193.4034289533,251594.0745767593,148356.6486642495,94421.54422535891,1152.882868331365 -8510,10506,19066,-9,19065,-9,1,1,22,0,0,0,2,2,-9,0,4,7.554080391889057,7.2133812132507,0,0,0,-1037.809272026416,-9,1,2,2019,10,0,40,0,1,1,1,5.160041987427523,5.160041987427523,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,4,3,0,785,118222.9349226921,-54367.78916302776,0,0,879.5222856836269 -8510,10507,19067,-9,19065,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1117.611558248506,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,880,0,0,0,0,0 -8511,10508,19068,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.076861126583109,7.935657188763395,0,0,0,-1045.709805176613,0,2,3,2019,16,4,35,47,1,4,0,8.824568841579341,8.824568841579341,0,0,0,0,0,0,0,0,0,0,39.38,33.45,-9,-9,6.666666666666667,3,4,0,0,10,8,3,0,135,889455.7700580565,363714.4753748383,222730.4832599323,0,1255.708360678256 -8512,10509,19069,19070,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,7.476611189933041,7.25235871764111,0,19,0,124.0477076647321,0,2,2,2019,25,11,11,12,1,11,0,16.4910108985534,16.4910108985534,0,0,0,0,0,1,1,0,.1687559517558574,0,27.12,48.48,22.26,71.08,1.666666666666667,1,1,0,0,9,6,4,1,1095,-1977.630664603859,47946.27288756213,94774.27481869076,117527.5526772989,3591.30404886586 -8512,10509,19070,19069,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.989078582011294,8.967695997193781,0,7,0,12.16762789045465,0,-9,-9,2019,25,9,40,40,1,9,0,20.46422703426226,20.46422703426226,0,0,0,0,0,1,1,0,0,0,22.26,71.08,27.12,48.48,1.666666666666667,1,1,0,0,9,6,4,1,1095,-1977.630664603859,47946.27288756213,94774.27481869076,117527.5526772989,3591.30404886586 -8512,10509,19071,-9,19069,19070,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.1504767064179,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,1095,-1977.630664603859,47946.27288756213,94774.27481869076,117527.5526772989,3591.30404886586 -8512,10509,19072,-9,19069,19070,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.699754087478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,1095,-1977.630664603859,47946.27288756213,94774.27481869076,117527.5526772989,3591.30404886586 -8512,10509,19073,-9,19069,19070,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.416121333425,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,1095,-1977.630664603859,47946.27288756213,94774.27481869076,117527.5526772989,3591.30404886586 -8513,10510,19074,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.796279830671679,7.960816711660024,0,0,0,-953.6073206905226,0,2,2,2019,14,3,42,42,1,3,0,6.522797955327936,6.522797955327936,0,0,0,0,0,0,0,0,1.357814182728165,0,59.45,41.59,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,1309,59051.56689508464,101499.816877461,0,0,1368.348298551241 -8514,10511,19075,19076,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,7.474040387226919,7.495974972001783,39,6,197.4702047881866,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.884688347500806,7.341761586600524,56.67,53.83,56.16,45.84,8.333333333333334,1,1,0,0,10,12,4,1,1098,1279211.560939319,609970.9133379891,372660.1153595881,0,4161.378474801946 -8514,10511,19076,19075,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.081074415812335,8.35381179112974,39,-6,-54.50013043277532,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.634269287996824,8.395976880421562,56.16,45.84,56.67,53.83,8.333333333333334,1,1,0,0,9,12,4,1,1098,1279211.560939319,609970.9133379891,372660.1153595881,0,4161.378474801946 -8514,10512,19077,-9,19076,19075,1,1,35,0,0,0,2,2,-9,0,5,8.122590258111288,8.137387109179357,0,0,0,-929.1714419021712,0,2,3,2019,14,2,38,38,1,2,0,10.27556504882943,10.27556504882943,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,6,12,4,1,621,-136542.7922310969,0,0,0,1191.154935976087 -8515,10513,19078,19079,-9,-9,1,0,52,0,1,0,2,2,-9,0,2,7.224206014122041,6.991731017317901,0,31,0,64.92306565813466,0,2,2,2019,8,0,22,22,1,0,0,4.979673515653732,4.979673515653732,0,0,0,0,2,1,1,0,0,0,55.23,32.92,55.96,49.93,8.333333333333334,1,1,0,0,10,13,3,1,867.5,1431162.559633163,941345.5463744586,314946.5594603497,0,2758.944307416324 -8515,10513,19079,19078,-9,-9,1,1,61,0,1,0,1,1,-9,0,3,0,8.08441609232324,7.830964144603158,31,9,-28.4047333915378,0,2,2,2019,5,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,6.518341836168046,8.052155710625527,55.96,49.93,55.23,32.92,10,1,1,0,0,9,13,3,1,867.5,1431162.559633163,941345.5463744586,314946.5594603497,0,2758.944307416324 -8515,10514,19080,-9,19078,19079,1,0,26,0,1,0,2,2,1,0,2,0,6.217208721764839,6.394158699221518,0,0,-849.3589245997699,-9,2,1,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,6.375114084351246,0,40.88,41.16,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,884,109242.285615319,0,0,0,675.5905356560527 -8515,10514,19081,-9,19080,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.764544520192,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,884,109242.285615319,0,0,0,675.5905356560527 -8516,10515,19082,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,1,0,0,0,0,0,-1096.362107993223,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,41.37,21.72,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,480,-90036.87089856353,13267.11762981901,0,0,1058.397903689611 -8516,10516,19083,-9,19086,19084,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.8027097780999,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,822.25,270090.2190297942,0,224007.4386163706,0,1053.609677869547 -8516,10516,19084,19086,19082,-9,1,1,32,1,2,0,3,3,-9,1,2,0,0,0,3,2,0,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,0,1,0,0,32.18,48.12,49,59,5,1,1,0,0,0,13,2,0,822.25,270090.2190297942,0,224007.4386163706,0,1053.609677869547 -8516,10516,19085,-9,19086,19084,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.956755739974,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,2,0,822.25,270090.2190297942,0,224007.4386163706,0,1053.609677869547 -8516,10516,19086,19084,-9,-9,1,0,30,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,7,1,0,1,0,0,49,59,32.18,48.12,8.333333333333334,1,1,0,0,0,13,2,0,822.25,270090.2190297942,0,224007.4386163706,0,1053.609677869547 -8517,10517,19087,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.828505702287183,8.548816773549767,7.796304161851404,0,0,-892.829859308036,0,2,1,2019,7,0,30,30,1,0,0,10.03518613015483,10.03518613015483,0,0,0,0,0,0,0,0,0,7.916984619581369,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,327,367611.6621916493,273651.1917095169,99360.41957592982,48905.26323231591,2249.14445382221 -8518,10518,19088,19089,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.296843285586034,8.383377343824442,0,27,5,119.143061766109,0,-9,-9,2019,10,1,39,39,1,1,0,9.748759329356027,9.748759329356027,0,0,0,0,0,1,1,0,4.793011931614172,0,48.14,50.72,54.79,55.86,8.333333333333334,1,1,0,0,10,7,4,1,613.5,528380.8064208602,0,250632.9857393936,0,2469.81271894043 -8518,10518,19089,19088,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.682359504796276,7.781876013168707,0,27,-5,18.06487507089494,0,3,2,2019,9,0,27,26,1,0,0,8.478686042399854,8.478686042399854,0,0,0,0,0,1,1,0,0,0,54.79,55.86,48.14,50.72,8.333333333333334,1,1,0,0,10,7,4,1,613.5,528380.8064208602,0,250632.9857393936,0,2469.81271894043 -8519,10519,19090,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.823798377781205,8.795905456567354,0,0,0,-969.7603808025043,0,-9,-9,2019,10,0,43,44,1,0,0,14.7834143154819,14.7834143154819,0,0,0,0,0,0,0,0,3.193209918180762,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,1529,89360.01610194155,137593.7336544806,0,0,2024.18280988409 -8520,10520,19091,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.545017799219657,7.380158683988582,0,0,-1048.108650821398,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.424519556104789,32.23,47.35,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,269,836549.9630193121,352282.9526441502,291431.397980776,0,1576.60290308239 -8521,10521,19092,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.76878520216947,7.8692951428694,0,0,0,-1018.101748793099,0,3,3,2019,7,0,39,23,1,0,0,7.635093455400617,7.635093455400617,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,504,298677.4580971526,363436.5974460227,81850.02884366087,0,791.7514399168119 -8522,10522,19093,19094,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,9.161552360215959,9.251762852516128,10,5,-120.1252851023576,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.84211765379429,9.491273156723379,49.36,51.55,53.36,50.99,8.333333333333334,1,1,0,0,0,9,5,1,455.5,2602193.337298466,1279263.622918857,855267.2063935603,0,6653.160812123848 -8522,10522,19094,19093,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,46,-5,-57.94058009499128,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.966493270685886,0,53.36,50.99,49.36,51.55,0,1,1,0,0,0,9,5,1,455.5,2602193.337298466,1279263.622918857,855267.2063935603,0,6653.160812123848 -8523,10523,19095,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.100626027079989,6.110137481702954,0,0,-1056.490071420809,0,2,2,2019,23,11,0,0,4,11,0,0,0,1,3.425684185674493,13.36795339659046,21.14410772430648,0,1,1,0,0,6.20975277251855,33.33,22.86,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,1900,-39930.84888534537,59064.67838789068,0,0,846.9782133630157 -8524,10524,19096,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.3187816293113,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,15.78294191062764,0,0,1,1,0,0,0,39.86,33.55,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1712,-31792.06166920481,0,0,0,830.6393187435143 -8525,10525,19097,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,7.359342299055203,7.575635763365156,0,0,0,-943.8418102984045,0,1,1,2019,8,0,37,35,1,0,0,4.597264340311245,4.597264340311245,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,5,1,1,0,1,10,10,3,0,151,-136315.6172198816,0,0,0,884.25204717075 -8525,10526,19098,-9,19097,-9,1,1,23,0,0,0,1,1,-9,0,4,8.152606896449486,8.498645357361596,0,0,0,-966.0113348593328,0,1,1,2019,8,1,39,0,1,1,1,11.79412892355344,11.79412892355344,0,0,0,0,0,1,0,1,0,0,56.86,50.75,-9,-9,10,1,1,0,0,1,10,4,0,3684,52431.24130881244,-13852.69088838469,0,0,1588.952715371305 -8526,10527,19099,19100,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,0,0,36,16,83.15047556907325,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.32757386639253,0,51.83,57.2,45.64,45.13,8.333333333333334,1,1,0,0,9,9,2,1,726,1541485.956875443,-855.3645366146557,692181.2674784953,0,336.364165954363 -8526,10527,19100,19099,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.732860223949823,7.414852583618336,0,36,-16,119.6575669644301,0,2,1,2019,13,1,38,30,1,1,0,6.096090869128366,6.096090869128366,0,0,0,0,0,1,1,0,0,0,45.64,45.13,51.83,57.2,3.333333333333333,1,1,0,0,3,9,2,1,726,1541485.956875443,-855.3645366146557,692181.2674784953,0,336.364165954363 -8527,10528,19101,-9,19104,19102,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.473264813909,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,527,581870.0963421768,283797.4012137011,352709.110858248,157106.9243153436,5688.984666579378 -8527,10528,19102,19104,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.044473040674832,9.114557758489138,0,8,3,-79.49155304990224,0,2,2,2019,8,0,39,39,1,0,0,27.23025875256284,27.23025875256284,0,0,0,0,0,0,0,0,3.464211359260625,0,54.2,57.49,49.25,61.25,6.666666666666667,1,1,0,0,9,2,5,1,527,581870.0963421768,283797.4012137011,352709.110858248,157106.9243153436,5688.984666579378 -8527,10528,19103,-9,19104,19102,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-915.6679559239483,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,527,581870.0963421768,283797.4012137011,352709.110858248,157106.9243153436,5688.984666579378 -8527,10528,19104,19102,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,9.045976191854111,9.177431425370038,0,8,-3,34.73757009445096,0,2,2,2019,9,0,52,59,1,0,0,17.35325842147364,17.35325842147364,0,0,0,0,0,0,0,0,6.478643562020669,0,49.25,61.25,54.2,57.49,8.333333333333334,1,1,0,0,9,2,5,1,527,581870.0963421768,283797.4012137011,352709.110858248,157106.9243153436,5688.984666579378 -8528,10529,19105,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.377833389443873,8.353652288043998,0,0,0,-980.9846826658886,0,1,1,2019,16,5,35,32,1,5,0,20.32538537341652,20.32538537341652,0,0,0,0,0,0,0,0,0,0,45.37,39.86,-9,-9,8.333333333333334,3,4,0,0,6,4,4,0,187,50965.37655855078,0,0,0,2475.760617278219 -8529,10530,19106,19107,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.757830798454608,7.946264764100928,0,6,1,-39.85971714142347,0,-9,-9,2019,11,0,40,40,1,0,0,6.498649189264471,6.498649189264471,0,0,0,0,0,1,1,0,0,0,48.37,38.61,43.91,31.46,8.333333333333334,1,1,0,0,1,11,2,0,607.5,633286.1491836593,199246.3104069048,250703.8971047787,0,2025.153691901318 -8529,10530,19107,19106,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,0,0,0,27,-1,116.1918660502227,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.91,31.46,48.37,38.61,5,1,1,0,0,0,11,2,0,607.5,633286.1491836593,199246.3104069048,250703.8971047787,0,2025.153691901318 -8530,10531,19108,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,4.766296791275319,4.716416083224799,0,0,-912.3804806348141,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,11.58247461598373,0,0,1,1,0,0,4.691206387197346,59.74,42.51,-9,-9,10,1,1,0,0,0,2,2,0,2806,367200.9021595175,0,371025.6767639274,0,682.9444622306057 -8531,10532,19109,19110,-9,19111,1,0,56,0,0,0,2,2,-9,0,4,7.164816210201748,7.597988586668923,0,6,-3,9.664306537756898,0,3,3,2019,10,0,28,33,1,0,0,8.044410522611923,8.044410522611923,0,0,0,0,0,1,1,0,5.487221392700506,0,42.95,61.24,63.24,42.39,6.666666666666667,1,1,0,0,9,11,2,1,389,723615.5837451128,256926.9781297473,290585.3593315561,0,342.2853962763357 -8531,10532,19110,19109,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,40,3,-118.2619146890725,0,2,2,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,63.24,42.39,42.95,61.24,3.333333333333333,1,1,0,0,9,11,2,1,389,723615.5837451128,256926.9781297473,290585.3593315561,0,342.2853962763357 -8531,10533,19111,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.156642304653862,6.005181755907401,0,0,-969.2704016119584,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.414974116705523,5.930427873684885,56,44,-9,-9,8,1,1,0,0,0,11,2,1,5448,183135.8429467386,40380.6755909526,127353.6773204582,0,512.2358891436601 -8532,10534,19112,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.711983134183323,6.774036746413937,0,0,-1016.56310659283,0,3,3,2019,9,2,0,15,4,2,0,0,0,0,0,0,0,0,1,1,0,4.172550349797768,6.595290198327798,63.24,45.09,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,437,184035.290072719,88564.40264717014,0,0,1527.334422211473 -8533,10535,19113,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,5.680412528529205,5.403906522316133,0,0,-1066.99508573279,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.835028301999752,5.817636346049547,59.43,58.05,-9,-9,10,3,4,0,0,5,8,2,1,1112,494715.936181639,-4571.945301821819,432766.4532619792,0,65.10428641795039 -8534,10536,19114,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1034.101847989204,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,249,-23672.66740424919,0,0,0,793.2328575501514 -8535,10537,19115,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-967.7321087893069,0,3,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,9.450000000000001,47.74,-9,-9,1.666666666666667,2,3,0,1,0,4,1,1,140,-178132.7403108492,0,0,0,1173.76924649812 -8536,10538,19116,19117,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.374300160372359,6.938002880709477,57,5,-59.15490879101539,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.854207645415461,58.92,48.59,55.79,52.62,8.333333333333334,1,1,0,0,0,12,2,1,893,527549.4157255266,276858.7697192674,160144.7094999941,0,2371.724791463389 -8536,10538,19117,19116,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.973239391258062,5.860390642493959,57,-5,-11.77274797551543,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.210794125754385,55.79,52.62,58.92,48.59,8.333333333333334,1,1,0,0,9,12,2,1,893,527549.4157255266,276858.7697192674,160144.7094999941,0,2371.724791463389 -8537,10539,19118,-9,19120,19119,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1019.431866329783,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,444.6666666666667,282573.3932305071,71250.13292197796,121129.0228229801,987.7967505599736,3117.404350910265 -8537,10539,19119,19120,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.505016382885376,8.421103478659147,0,8,11,28.57456447782057,0,3,3,2019,10,0,44,42,1,0,0,14.0889931755066,14.0889931755066,0,0,0,0,0,1,1,0,1.669032600757615,0,57.34,47.92,49.27,56.95,8.333333333333334,1,1,0,0,9,11,5,1,444.6666666666667,282573.3932305071,71250.13292197796,121129.0228229801,987.7967505599736,3117.404350910265 -8537,10539,19120,19119,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.042682469874986,8.018579213912631,0,8,-11,-95.73240167141381,0,2,2,2019,12,0,43,41,1,0,0,9.144805088182105,9.144805088182105,0,0,0,0,0,1,1,0,0,0,49.27,56.95,57.34,47.92,10,1,1,0,0,9,11,5,1,444.6666666666667,282573.3932305071,71250.13292197796,121129.0228229801,987.7967505599736,3117.404350910265 -8538,10540,19121,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.984562290206497,9.230450287227468,0,0,0,-980.7069877820925,0,-9,-9,2019,8,0,37,37,1,0,0,27.45540431570785,27.45540431570785,0,0,0,0,0,1,1,0,5.050562013958217,0,47.2,58.1,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,1456,146775.4865390134,0,0,0,2652.603051105528 -8539,10541,19122,19123,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.258911695963432,8.179085946047206,0,11,-5,70.4883353755735,0,3,2,2019,1,0,14,45,1,0,0,27.21812526618276,27.21812526618276,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,3,4,0,0,9,9,4,0,464.5,475107.5389013742,142839.0824755947,607602.5815328651,296942.536674475,1930.340869524169 -8539,10541,19123,19122,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.037695163110126,8.248535554241796,0,11,5,111.6768210012143,0,3,1,2019,5,1,48,50,1,1,0,10.26871912607465,10.26871912607465,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,3,4,0,0,9,9,4,0,464.5,475107.5389013742,142839.0824755947,607602.5815328651,296942.536674475,1930.340869524169 -8540,10542,19124,19125,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,10,8,34.99226959159467,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,28.43,25.04,40.31,50.81,1.666666666666667,1,1,0,1,10,12,3,1,625.5,-28976.93121789226,0,119189.647029596,69790.78626344196,2039.54908024908 -8540,10542,19125,19124,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.686642184855838,8.041132484058208,0,10,-8,44.19616634464654,0,-9,-9,2019,13,1,40,40,1,1,0,7.194488937753677,7.194488937753677,0,0,0,0,14.5,1,0,1,0,0,40.31,50.81,28.43,25.04,3.333333333333333,1,1,0,0,10,12,3,1,625.5,-28976.93121789226,0,119189.647029596,69790.78626344196,2039.54908024908 -8541,10543,19126,19128,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.395610725830402,8.779623211426227,0,8,-1,-264.62579509311,0,2,2,2019,9,0,25,24,1,0,0,18.26902923771541,18.26902923771541,0,0,0,0,0,1,1,0,.6201759884879219,0,51.41,56.15,56.33,51.02,8.333333333333334,1,1,0,0,9,1,5,1,485.3333333333333,192316.070591237,11332.54393682234,94738.63806424917,83333.76878652889,3676.364781868022 -8541,10543,19127,-9,19126,19128,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-795.7649175177827,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,485.3333333333333,192316.070591237,11332.54393682234,94738.63806424917,83333.76878652889,3676.364781868022 -8541,10543,19128,19126,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.66985574516954,8.275170190033672,0,8,1,-84.55712166375163,0,1,1,2019,6,0,40,47,1,0,0,16.75930669308128,16.75930669308128,0,0,0,0,0,1,1,0,6.649458228503488,0,56.33,51.02,51.41,56.15,8.333333333333334,1,1,0,0,10,1,5,1,485.3333333333333,192316.070591237,11332.54393682234,94738.63806424917,83333.76878652889,3676.364781868022 -8542,10544,19129,19130,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.352547755882618,7.442676733449114,44,-2,35.93797904898373,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.269466667025545,7.142368091923246,54.7,51.94,57.48,37.4,8.333333333333334,1,1,0,0,10,6,4,1,752.5,1718379.884858502,1428830.177496051,293518.3095052049,168176.0338918142,4907.001968951437 -8542,10544,19130,19129,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.809541038167973,8.593915396946114,9,2,-106.7380840934223,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.787821086544456,8.651634016908416,57.48,37.4,54.7,51.94,8.333333333333334,1,1,0,0,10,6,4,1,752.5,1718379.884858502,1428830.177496051,293518.3095052049,168176.0338918142,4907.001968951437 -8543,10545,19131,19132,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.350226864494077,8.364258000907,0,22,1,-44.22954794000013,0,2,2,2019,8,0,39,39,1,0,0,10.9930372900974,10.9930372900974,0,0,0,0,0,1,1,0,2.536201610759703,0,46.42,59.64,59.46,46.99,8.333333333333334,1,1,0,0,11,6,4,1,726,1293349.184646876,372572.197882678,736272.0222687682,0,3512.402295190093 -8543,10545,19132,19131,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.429139135126762,8.749860049091938,0,24,-1,98.54922906878697,0,2,2,2019,8,0,55,53,1,0,0,11.14595077795464,11.14595077795464,0,0,0,0,0,1,1,0,2.27154182822951,0,59.46,46.99,46.42,59.64,8.333333333333334,1,1,0,0,11,6,4,1,726,1293349.184646876,372572.197882678,736272.0222687682,0,3512.402295190093 -8544,10546,19133,19134,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-1,45.77123713620161,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4993446205804868,0,59.31,49.81,66.77,39.43,6.666666666666667,1,1,0,0,0,7,3,1,843.5,601703.7754326644,161359.1663698375,262402.8654091318,0,1745.42554105756 -8544,10546,19134,19133,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.777746838851718,7.784795024674206,62,1,-43.39852367162345,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.371376522117973,66.77,39.43,59.31,49.81,10,1,1,0,0,0,7,3,1,843.5,601703.7754326644,161359.1663698375,262402.8654091318,0,1745.42554105756 -8545,10547,19135,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.4021249872089,6.145837028677628,0,0,-949.8698109587453,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.768565064776886,6.278341025232821,50.41,48.86,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,393,485888.505502552,226455.9421318727,158716.1904959535,0,291.022844919327 -8545,10548,19136,-9,19135,-9,1,1,54,0,0,0,2,2,-9,0,2,7.995756080485186,8.202398442477699,0,0,0,-924.0668271591146,-9,3,-9,2019,9,0,37,0,1,0,0,10.48217042812735,10.48217042812735,0,0,0,0,0,1,1,0,0,0,52.49,33.01,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,348,36163.54510311839,202556.1008787135,0,0,2085.163705056223 -8546,10549,19137,19138,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.432344051859859,8.683658985048064,0,2,-1,25.79382695315188,0,3,2,2019,10,1,38,37,1,1,0,15.783415074605,15.783415074605,0,0,0,0,0,0,0,0,0,0,51.08,49.24,43.29,54.3,8.333333333333334,1,1,0,0,9,13,5,0,729,982089.6705651395,979088.5366643285,125820.2474192031,22102.28706533532,3218.896731487866 -8546,10549,19138,19137,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.278494758287088,8.223299498052084,0,2,1,47.75019627671017,0,-9,-9,2019,16,4,41,38,1,4,0,9.286437898957848,9.286437898957848,0,0,0,0,0,0,0,0,0,0,43.29,54.3,51.08,49.24,6.666666666666667,1,1,0,0,9,13,5,0,729,982089.6705651395,979088.5366643285,125820.2474192031,22102.28706533532,3218.896731487866 -8547,10550,19139,19140,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.213648890621498,8.120129690899889,0,31,3,4.666571119577219,0,2,2,2019,11,2,38,38,1,2,0,7.764204367713779,7.764204367713779,0,0,0,0,0,1,1,0,0,0,50.51,26.92,46.54,36.59,6.666666666666667,2,3,0,0,10,6,3,0,600,-43551.03104764209,4615.607698895874,0,0,1473.11438741752 -8547,10550,19140,19139,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,31,-3,-117.5221944110107,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,36.59,50.51,26.92,8.333333333333334,2,3,0,0,0,6,3,0,600,-43551.03104764209,4615.607698895874,0,0,1473.11438741752 -8547,10551,19141,-9,19140,19139,1,0,27,0,0,0,1,1,-9,0,5,8.305955160811692,8.240891307725269,0,0,0,-854.2480627162082,0,2,2,2019,8,0,39,40,1,0,0,13.37252137941773,13.37252137941773,0,0,0,0,0,1,1,0,2.807954027766868,0,51.39,59.18,-9,-9,8.333333333333334,2,3,0,0,6,6,4,0,386,35822.32438276897,16797.00578507084,0,0,2259.109348055188 -8548,10552,19142,19143,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.809251738305711,7.811079359851852,50,4,40.68105867406175,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,1.688570795771476,0,1,1,0,.953830950265013,7.807683290103102,56.58,49.75,48.08,33.53,10,1,1,0,0,0,9,3,1,320,851845.8193963186,388272.4263237873,435625.9114085111,0,2267.35684508911 -8548,10552,19143,19142,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.910189527294357,7.065490861406332,52,-4,-9.877601226187412,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.897488954150685,48.08,33.53,56.58,49.75,7,1,1,0,0,0,9,3,1,320,851845.8193963186,388272.4263237873,435625.9114085111,0,2267.35684508911 -8549,10553,19144,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,6.746142708265129,7.526677424488805,7.497953475605067,0,0,-1053.698675582325,0,3,3,2019,11,1,9,0,1,1,0,8.239118284731074,8.239118284731074,0,0,0,0,0,1,1,0,4.325705141058632,6.892183724947156,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,3,6,3,1,103,315899.444892972,268534.6764051858,174224.0543353009,70874.80153043885,1536.233464481553 -8550,10554,19145,19146,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.644361814696612,5.266401318763206,57,-4,-85.31735878181122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.050537265278694,5.550572946741461,60.05,45.35,37.74,24.55,8.333333333333334,1,1,0,0,0,10,2,1,946,659057.6615133916,182668.5471127923,259340.6101186001,0,1736.923848569593 -8550,10554,19146,19145,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.226017713918739,7.08342867996685,57,4,141.8611107033977,0,1,3,2019,10,1,0,0,4,1,0,0,0,1,0,9.420976882084629,0,0,1,1,0,1.39630825604495,7.292877567751184,37.74,24.55,60.05,45.35,3.333333333333333,1,1,0,0,0,10,2,1,946,659057.6615133916,182668.5471127923,259340.6101186001,0,1736.923848569593 -8551,10555,19147,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.836709056947167,7.900959606676478,0,0,-1146.979303721213,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.837414951427982,4.054466614834368,50.9,15.72,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,312,545779.8251571778,51379.80092002773,398432.5423180307,0,2197.614551979864 -8552,10556,19148,19149,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.076176916897893,8.370885832098978,0,23,6,-56.15743068327837,0,2,2,2019,8,0,43,36,1,0,0,10.79099477732848,10.79099477732848,0,0,0,0,0,0,0,0,0,0,61.58,43.34,57.33,53.46,8.333333333333334,1,1,0,0,9,12,5,0,325.5,101579.8482183438,-70987.50341142096,109971.1760001655,59465.78545228906,4269.388813332424 -8552,10556,19149,19148,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.743638415526869,8.740209852315362,0,23,-6,-115.4963757885298,0,2,-9,2019,8,0,46,50,1,0,0,13.12267222108857,13.12267222108857,0,0,0,0,0,0,0,0,0,0,57.33,53.46,61.58,43.34,8.333333333333334,1,1,0,0,7,12,5,0,325.5,101579.8482183438,-70987.50341142096,109971.1760001655,59465.78545228906,4269.388813332424 -8552,10557,19150,-9,19148,19149,1,0,20,0,0,0,2,2,1,0,4,7.731028749433968,7.82758653076004,0,0,0,-834.3813422245424,-9,2,2,2019,12,0,49,0,1,0,1,5.11655187452938,5.11655187452938,0,0,0,0,0,0,0,0,0,0,48.18,59.28,-9,-9,6.666666666666667,1,1,0,0,3,12,3,0,525,-95041.43546993124,0,0,0,1011.573166049027 -8553,10558,19151,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.58091696449039,8.41250450139635,0,7,-17,-13.60668775502237,0,2,3,2019,18,6,10,47,1,6,0,55.52936749606501,55.52936749606501,0,0,0,0,0,0,0,0,3.163291383907734,0,30.7,62.92,54.2,57.49,3.333333333333333,2,3,0,0,12,10,5,1,109,-79232.25182276081,73061.12419218826,0,0,1943.506745241698 -8553,10559,19152,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.861233948400491,9.579193632651435,0,7,17,-76.95768695763445,0,-9,-9,2019,9,0,40,60,1,0,0,35.56943034289787,35.56943034289787,0,0,0,0,0,0,0,0,5.815723179161661,0,54.2,57.49,30.7,62.92,8.333333333333334,1,1,0,0,10,10,5,1,1496,846767.8423919453,305486.2087792002,397798.9769740071,0,6577.774973120959 -8554,10560,19153,19154,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.515693846835211,9.033898406487848,7.350030806497696,37,3,51.81185236152855,0,3,3,2019,9,1,38,38,1,1,0,16.11542372648314,16.11542372648314,0,0,0,0,42,1,1,0,4.973176369951743,7.909604392097391,51.46,33.65,54,54,5,1,1,0,0,8,7,5,1,1414.5,749407.6093230427,550967.3306342117,0,0,3738.192843934988 -8554,10560,19154,19153,-9,-9,1,1,58,0,0,0,3,3,-9,1,4,0,0,0,7,-3,-106.7268973937735,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,51.46,33.65,8,1,1,0,0,0,7,5,1,1414.5,749407.6093230427,550967.3306342117,0,0,3738.192843934988 -8555,10561,19155,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.132520417304069,4.306227087924697,0,0,-945.0618953587876,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.169033579546818,58.16,48.06,-9,-9,10,1,1,0,0,2,9,2,0,350,27363.99204172557,16510.32002963021,0,0,1303.646155031604 -8555,10562,19156,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-984.3112646454729,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,52.4,-9,-9,8.333333333333334,1,1,1,0,3,9,1,0,3335,-7005.529128015955,0,0,0,277.946231718044 -8556,10563,19157,19160,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,9.176283289300171,9.351656239975677,0,4,6,53.35109680223744,0,2,1,2019,6,0,40,40,1,0,0,30.95662599439174,30.95662599439174,0,0,0,0,7,0,0,0,0,0,54.37,54.8,57.06,57.76,8.333333333333334,2,3,0,0,12,12,5,1,1015.25,511365.5101129177,342121.7444517823,279266.2976168889,97951.71629232624,3343.019997546465 -8556,10563,19158,-9,19160,19157,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.908256056977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,12,5,1,1015.25,511365.5101129177,342121.7444517823,279266.2976168889,97951.71629232624,3343.019997546465 -8556,10563,19159,-9,19160,19157,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.1177098431967,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,12,5,1,1015.25,511365.5101129177,342121.7444517823,279266.2976168889,97951.71629232624,3343.019997546465 -8556,10563,19160,19157,-9,-9,1,0,31,1,2,0,1,1,-9,0,5,0,0,0,4,-6,-179.6323022486007,0,-9,-9,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,54.37,54.8,8.333333333333334,2,3,0,0,7,12,5,1,1015.25,511365.5101129177,342121.7444517823,279266.2976168889,97951.71629232624,3343.019997546465 -8557,10564,19161,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1033.955935589753,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,425,43437.62661487186,0,0,0,802.3677548718285 -8558,10565,19162,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,8.468074160869881,8.619692089104364,0,7,13,-58.787467660003,0,3,2,2019,9,1,39,40,1,1,0,14.26118842721778,14.26118842721778,0,0,0,0,0,0,0,0,0,0,49.3,59.89,47.27,53.93,8.333333333333334,1,1,0,0,12,5,5,1,641,101392.4339228838,0,0,0,1719.951107912602 -8558,10566,19163,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.156479863525854,8.313046205980323,6.274076748564954,7,-13,-29.99308570315693,0,-9,-9,2019,8,1,38,38,1,1,0,8.508057344446673,8.508057344446673,0,0,0,0,0,0,0,0,6.005525724325318,0,47.27,53.93,49.3,59.89,6.666666666666667,1,1,0,0,7,5,5,1,224,129219.6766656546,178886.0751150923,83766.9658221007,60348.76195023498,2015.940674360643 -8559,10567,19164,19166,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.384536891321051,8.284966315948655,0,24,-2,43.159595822984,0,2,2,2019,9,1,20,24,1,1,0,27.82568939654187,27.82568939654187,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.37,54.8,8.333333333333334,1,1,0,0,3,9,5,1,824.3333333333334,1410459.14527934,143681.2547677771,968270.9921805257,375000.5930779609,11446.94024089818 -8559,10567,19165,-9,19164,19166,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-970.8337640701093,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,824.3333333333334,1410459.14527934,143681.2547677771,968270.9921805257,375000.5930779609,11446.94024089818 -8559,10567,19166,19164,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.710833074417545,9.859409538597564,0,24,2,25.63057650853227,0,2,1,2019,11,0,54,60,1,0,0,27.13779793378008,27.13779793378008,0,0,0,0,0,0,0,0,7.256280515764083,0,54.37,54.8,59.43,58.05,8.333333333333334,1,1,0,0,11,9,5,1,824.3333333333334,1410459.14527934,143681.2547677771,968270.9921805257,375000.5930779609,11446.94024089818 -8559,10568,19167,-9,19164,19166,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1094.576170777965,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,137,-26768.75995531682,0,0,0,0 -8559,10569,19168,-9,19164,19166,1,0,19,0,1,1,2,0,0,0,3,0,3.795553663035209,3.737877862311349,0,0,-950.1799868182534,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.020789350973115,0,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,524,-40205.65934038188,0,0,0,463.9404177486036 -8560,10570,19169,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1147.784447729803,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.62,41.35,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1163,61161.59721978509,0,180156.1497918814,0,208.7733911565599 -8561,10571,19170,-9,-9,19171,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.7832549426346,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,619.3333333333334,191761.1480456619,9094.270094830461,147187.2321854489,0,1826.862140364662 -8561,10571,19171,-9,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,8.599778723065381,8.313865272274846,0,0,0,-970.641282257197,0,2,2,2019,7,3,80,28,1,3,0,5.275125167878846,5.275125167878846,0,0,0,0,0,1,1,0,.7359913375252769,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,11,12,3,1,619.3333333333334,191761.1480456619,9094.270094830461,147187.2321854489,0,1826.862140364662 -8561,10571,19172,-9,-9,19171,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.4063520477126,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,619.3333333333334,191761.1480456619,9094.270094830461,147187.2321854489,0,1826.862140364662 -8562,10572,19173,19174,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,7.767856341798624,7.917425292708843,5.723927031169928,38,8,-5.213040803958119,0,3,2,2019,9,0,25,30,1,0,0,9.403707528989628,9.403707528989628,0,0,0,0,0,1,1,0,5.077102518501755,5.77663795708728,58.91,45.88,58.9,40.37,8.333333333333334,1,1,0,0,11,6,5,1,779,1924383.964006413,1430065.981070728,469403.5706649949,0,4020.363757896689 -8562,10572,19174,19173,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.762864589470082,9.019914105286883,0,38,-8,92.51845004239382,0,2,2,2019,11,1,42,43,1,1,0,18.51996415316654,18.51996415316654,0,0,0,0,0,1,1,0,0,0,58.9,40.37,58.91,45.88,6.666666666666667,1,1,0,1,10,6,5,1,779,1924383.964006413,1430065.981070728,469403.5706649949,0,4020.363757896689 -8563,10573,19175,19177,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.936614292147693,8.162250877765892,7,6,18.52034131885321,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.714393969729368,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,0,13,5,1,1429.333333333333,3008777.203230313,1445390.997097973,548764.8311442073,0,5227.692775946343 -8563,10573,19176,-9,19177,19175,1,0,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1083.986558600598,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,13,5,1,1429.333333333333,3008777.203230313,1445390.997097973,548764.8311442073,0,5227.692775946343 -8563,10573,19177,19175,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.888107043111926,8.177571900930944,7,-6,-21.98747058964447,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.016142737144195,7.618168288786251,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,4,13,5,1,1429.333333333333,3008777.203230313,1445390.997097973,548764.8311442073,0,5227.692775946343 -8564,10574,19178,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.20457656676916,7.314880828143374,0,0,-1012.794583850186,0,-9,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.289469622718762,7.103872264982861,42.47,53.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,211,211770.8421391186,185290.1308020113,72843.76168713548,0,1091.544807632029 -8565,10575,19179,19180,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.192560959187613,7.850485221348381,0,9,-8,-85.32879745144004,0,2,2,2019,7,0,37,38,1,0,0,9.967902941317789,9.967902941317789,0,0,0,0,0,0,0,0,0,0,56.77,52.22,40.42,54.21,8.333333333333334,1,1,0,0,9,13,5,1,331,559778.9813963587,218397.3723930103,163623.7067972687,0,3143.126132710745 -8565,10575,19180,19179,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.325804371491673,8.443791634227212,0,9,8,63.21060783194373,0,3,2,2019,11,0,42,41,1,0,0,11.39655669816531,11.39655669816531,0,0,0,0,0,0,0,0,0,0,40.42,54.21,56.77,52.22,6.666666666666667,1,1,0,0,9,13,5,1,331,559778.9813963587,218397.3723930103,163623.7067972687,0,3143.126132710745 -8565,10576,19181,-9,19179,19180,1,0,31,0,0,0,1,1,-9,0,3,8.041750829849018,7.983767878716848,0,0,0,-1031.713754886054,0,1,2,2019,12,0,39,38,1,0,1,8.908284747554575,8.908284747554575,0,0,0,0,0,0,0,0,1.936138501895509,0,43.89,52.61,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,122,8055.677638845889,68603.78090733978,95668.47654754632,109204.7256386474,1310.364515633185 -8565,10577,19182,-9,19179,19180,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1027.367786664637,-9,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.9066293634066994,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,1343,50482.17721919222,0,0,0,-46.10200529884573 -8566,10578,19183,19184,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.856786447844465,9.00641637368963,0,17,6,-.9757222035590321,0,2,1,2019,11,0,38,40,1,0,0,21.16684517940998,21.16684517940998,0,0,0,0,0,0,0,0,4.406132428379252,0,49.59,58.37,40.8,55.74,8.333333333333334,2,3,0,0,8,8,5,1,509.5,374024.9061672335,262599.5227938031,326548.5676592545,17430.03173351385,2580.719460060192 -8566,10578,19184,19183,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,0,0,0,17,-6,-92.48742939760334,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,3.453066856832955,0,40.8,55.74,49.59,58.37,6.666666666666667,2,3,0,0,2,8,5,1,509.5,374024.9061672335,262599.5227938031,326548.5676592545,17430.03173351385,2580.719460060192 -8567,10579,19185,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.893509415086556,7.919250430769821,0,0,0,-960.788097518276,0,-9,2,2019,10,0,38,37,1,0,0,8.097069961495,8.097069961495,0,0,0,0,0,1,1,0,0,0,54.28,42.51,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,994,15702.08035063851,67794.99362434298,0,0,1468.563570818732 -8568,10580,19186,19187,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,7.2944555283242,7.213531516941854,0,11,13,54.8460622819065,0,3,3,2019,18,6,25,20,1,6,0,6.910878282610193,6.910878282610193,0,0,0,0,0,1,1,0,0,0,25.32,23.88,48,51,0,1,1,0,1,11,6,3,0,1532.5,48018.05788412257,132306.1686446864,138016.1184722052,72779.11996390819,1793.982178472673 -8568,10580,19187,19186,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.46761426539654,7.365133718123383,0,10,-13,82.60012027977702,0,3,3,2019,12,2,35,35,1,2,0,7.712916584653385,7.712916584653385,0,0,0,0,0,1,1,0,0,0,48,51,25.32,23.88,1.666666666666667,3,4,0,0,12,6,3,0,1532.5,48018.05788412257,132306.1686446864,138016.1184722052,72779.11996390819,1793.982178472673 -8569,10581,19188,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.381796433775747,8.429247962496049,5.2370059613889,0,0,-980.8823496086006,0,3,-9,2019,18,6,45,37,1,6,0,9.547218832310801,9.547218832310801,0,0,0,0,2,0,0,0,5.876056315999386,0,42.59,46.47,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,251,686397.9278403659,97018.59106479632,438955.3383531923,13145.16765291024,2148.896099054578 -8569,10582,19189,-9,19188,-9,1,1,18,0,0,0,2,2,-9,0,3,7.588284750597692,7.503235343323265,0,0,0,-938.6546041517886,0,2,-9,2019,25,10,43,0,1,10,1,6.354817688251263,6.354817688251263,0,0,0,0,0,0,0,0,0,0,26.69,54.19,-9,-9,3.333333333333333,1,1,0,0,2,1,3,1,2268,18241.96165559033,0,0,0,785.6040498342387 -8570,10583,19190,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.364765141570508,7.360537936967626,0,0,-974.8356126883594,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.381188566898415,7.326095439499287,59.88,45.34,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,92,368111.1100050964,187559.8912080556,158703.7907459376,0,1193.040786153348 -8571,10584,19191,19192,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,0,-74.73080932070012,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,132.2332047463036,0,0,1,1,0,0,0,52,45,36.2,27.18,8,1,1,0,0,0,8,3,1,2031.5,1719790.460459047,663792.2061134515,480460.8061805172,0,2864.271382170075 -8571,10584,19192,19191,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,8.280578762859671,7.942746971647879,61,0,-193.1362858520829,0,2,3,2019,24,11,0,0,4,11,0,0,0,1,0,1.690781240085412,0,71.5,1,1,0,6.784346557511384,8.11634613449308,36.2,27.18,52,45,3.333333333333333,1,1,0,0,0,8,3,1,2031.5,1719790.460459047,663792.2061134515,480460.8061805172,0,2864.271382170075 -8572,10585,19193,-9,19195,19194,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.4838796887228,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1029.666666666667,155550.117144416,-49027.42137437878,217180.6860610296,140500.5872049906,2878.94866840657 -8572,10585,19194,19195,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.206229707744342,8.381374144625568,0,4,8,-74.22047354552473,0,-9,-9,2019,9,0,43,58,1,0,0,9.089483807769216,9.089483807769216,0,0,0,0,0,1,1,0,0,0,52,54.51,54.45,56.22,8.333333333333334,1,1,0,0,5,5,4,1,1029.666666666667,155550.117144416,-49027.42137437878,217180.6860610296,140500.5872049906,2878.94866840657 -8572,10585,19195,19194,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.715923897334611,7.16194155391134,0,4,-8,-32.80168527682312,0,2,2,2019,6,1,16,16,1,1,0,10.07796550635416,10.07796550635416,0,0,0,0,2,1,1,0,0,0,54.45,56.22,52,54.51,0,1,1,0,0,8,5,4,1,1029.666666666667,155550.117144416,-49027.42137437878,217180.6860610296,140500.5872049906,2878.94866840657 -8573,10586,19196,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,6.103369289329814,5.636675218406006,0,0,-983.1882840652398,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,5.794054066110857,0,51.98,27.74,-9,-9,3.333333333333333,1,1,0,1,0,6,2,0,1587,-51960.20444809267,0,0,0,724.8757848256971 -8573,10587,19197,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.1349614183505,0,-9,-9,2019,25,9,0,35,3,9,0,0,0,0,0,0,0,27,1,0,1,0,0,30.96,59.86,-9,-9,0,1,1,1,1,2,6,1,0,984,-101376.1436935167,0,0,0,174.859227341513 -8574,10588,19198,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,5,0,8.15631880940257,7.908686886631826,0,0,-1024.855787925112,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.855189416008639,7.90737985307122,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,719,503379.0948063579,335076.4395613325,194540.6822975103,41821.28924477762,2030.293925023273 -8575,10589,19199,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.348166466422931,6.336604496589128,0,0,-1039.504613507806,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.54749876623276,45.41,22.46,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,480,934.7238409879792,-79313.94873221661,0,0,1414.262455291496 -8576,10590,19200,-9,19201,19202,1,1,29,0,0,0,2,2,-9,0,2,8.380259836602397,8.662679822394463,0,0,0,-972.1071059782213,0,2,2,2019,20,6,47,45,1,6,1,8.723131675219564,8.723131675219564,0,0,0,0,0,0,0,0,0,0,7.03,64.91,-9,-9,1.666666666666667,1,1,0,1,9,2,4,0,200,-196744.7459795778,0,0,0,1078.282012673186 -8576,10591,19201,19202,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.987424619097569,7.989507149782233,0,1,10,-182.1973050131424,-9,-9,-9,2019,9,1,37,0,1,1,0,7.981605757881534,7.981605757881534,0,0,0,0,0,0,0,0,0,0,54.03,47.14,46.34,42.37,5,1,1,0,0,9,2,4,0,375,503701.6655141218,-7368.813499593509,301646.0183580604,0,2279.955163337287 -8576,10591,19202,19201,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.185995362313125,7.964393513824771,0,1,-10,-128.7886391625528,-9,-9,-9,2019,15,3,40,0,1,3,0,8.096360477177569,8.096360477177569,0,0,0,0,0,0,0,0,0,0,46.34,42.37,54.03,47.14,8.333333333333334,1,1,0,0,4,2,4,0,375,503701.6655141218,-7368.813499593509,301646.0183580604,0,2279.955163337287 -8577,10592,19203,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,3.377344022065947,3.01777085837846,0,0,-1047.468860909343,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.957293752338779,0,0,1,1,0,3.31904086291932,3.076346623670823,60.15,20.12,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,601,-12335.16577619742,0,0,0,1542.94899500278 -8578,10593,19204,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-891.2765218103063,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,2.257196151714078,0,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,1,0,0,10,1,0,416,61779.2225308684,32743.49869608365,0,0,494.7958163742489 -8579,10594,19205,19206,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.554898582201409,8.270881585421076,0,22,0,-35.00766394929549,0,2,2,2019,6,0,37,37,1,0,0,19.58015252817497,19.58015252817497,0,0,0,0,0,1,1,0,2.080704935765127,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,12,4,5,1,1255.75,835143.5147307359,395363.7752207408,285463.159615365,0,3966.281933079925 -8579,10594,19206,19205,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.660505041593277,8.472164196840762,0,22,0,19.97132827217474,0,2,3,2019,9,0,38,38,1,0,0,19.92251675842881,19.92251675842881,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,6.666666666666667,1,1,0,0,12,4,5,1,1255.75,835143.5147307359,395363.7752207408,285463.159615365,0,3966.281933079925 -8579,10594,19207,-9,19206,19205,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1074.267362396651,-9,1,1,2019,20,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,4,5,1,1255.75,835143.5147307359,395363.7752207408,285463.159615365,0,3966.281933079925 -8579,10594,19208,-9,19206,19205,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1174.230658293919,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1255.75,835143.5147307359,395363.7752207408,285463.159615365,0,3966.281933079925 -8580,10595,19209,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1155.508606506288,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.79,42.87,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,488,182422.7178083065,0,0,0,999.5823190249811 -8581,10596,19210,19213,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.345579484866947,9.848042369745528,0,10,8,-127.723196507572,0,3,2,2019,12,0,43,45,1,0,0,47.58018841161032,47.58018841161032,0,0,0,0,0,1,1,0,3.439536878734766,0,40.29,53.32,40.2,61.22,5,1,1,0,0,11,7,5,1,1498.75,5283871.680911161,2796844.870805077,1223229.202674063,175846.4107360184,5268.11658451973 -8581,10596,19211,-9,19213,19210,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.6902768179,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1498.75,5283871.680911161,2796844.870805077,1223229.202674063,175846.4107360184,5268.11658451973 -8581,10596,19212,-9,19213,19210,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.4670765982504,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,5,1,1498.75,5283871.680911161,2796844.870805077,1223229.202674063,175846.4107360184,5268.11658451973 -8581,10596,19213,19210,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.159563042776272,8.433364676801403,0,10,-8,-58.05638076329669,0,-9,-9,2019,12,0,33,35,1,0,0,10.73916384740792,10.73916384740792,0,0,0,0,0,1,1,0,2.96836400067918,0,40.2,61.22,40.29,53.32,6.666666666666667,1,1,0,0,12,7,5,1,1498.75,5283871.680911161,2796844.870805077,1223229.202674063,175846.4107360184,5268.11658451973 -8582,10597,19214,19215,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,9.239724815529918,9.31987427875873,7.889791993135114,5,22,164.9454688872597,0,-9,-9,2019,10,0,20,20,1,1,0,44.25110043736523,44.25110043736523,0,0,0,0,0,1,1,0,7.441025176061712,7.951185460655395,53,46,57.06,57.76,7,1,1,0,0,1,9,5,1,566.5,1428067.814425656,0,442261.5841753907,0,7227.663255343453 -8582,10597,19215,19214,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.935527656464213,8.316670586933796,0,26,-22,-85.51426360167294,0,3,3,2019,8,0,20,0,1,0,0,17.93013026284131,17.93013026284131,0,0,0,0,0,1,1,0,3.506122015359852,0,57.06,57.76,53,46,10,1,1,0,0,1,9,5,1,566.5,1428067.814425656,0,442261.5841753907,0,7227.663255343453 -8583,10598,19216,19218,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.663546877867319,8.513765743969641,0,7,4,32.92272077140088,0,2,3,2019,6,0,40,40,1,0,0,15.21952813034253,15.21952813034253,0,0,0,0,0,1,1,0,6.021552620556386,0,61.12,51.57,55.53,51.55,8.333333333333334,1,1,0,0,7,5,4,1,1102.666666666667,758493.9790807925,721105.4442510797,223002.8779774314,75300.22968067438,2817.909381276516 -8583,10598,19217,-9,19218,19216,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.1210641661658,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1102.666666666667,758493.9790807925,721105.4442510797,223002.8779774314,75300.22968067438,2817.909381276516 -8583,10598,19218,19216,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.293515950865793,7.236159231536067,0,7,-4,-14.41225378056187,0,2,2,2019,8,0,32,27,1,0,0,5.201342081147111,5.201342081147111,0,0,0,0,7,1,1,0,0,0,55.53,51.55,61.12,51.57,6.666666666666667,1,1,0,0,4,5,4,1,1102.666666666667,758493.9790807925,721105.4442510797,223002.8779774314,75300.22968067438,2817.909381276516 -8584,10599,19219,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.94434352879751,7.904450913991556,0,0,0,-978.2129535794346,0,2,3,2019,19,7,20,22,1,7,0,16.84759532674849,16.84759532674849,0,0,0,0,27,0,0,0,0,0,46.17,51.53,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,295,-61966.75477791227,-10155.04505748882,0,0,1482.681428420532 -8585,10600,19220,19221,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.500027919673027,7.838171941698594,0,27,-4,90.09209675125824,0,3,-9,2019,7,0,28,18,1,0,0,7.16770486220593,7.16770486220593,0,0,0,0,0,0,0,0,0,0,55.3,55.6,37.03,52.5,10,1,1,0,0,12,1,5,1,573.5,343381.8517821739,301807.9335223899,151834.3432422801,113873.210452617,2307.739830001746 -8585,10600,19221,19220,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.809802051486356,8.423414179584883,0,9,4,-61.29700039084069,0,-9,-9,2019,11,0,37,37,1,0,0,16.45720117826598,16.45720117826598,0,0,0,0,0,0,0,0,2.575470700448706,0,37.03,52.5,55.3,55.6,3.333333333333333,1,1,0,0,8,1,5,1,573.5,343381.8517821739,301807.9335223899,151834.3432422801,113873.210452617,2307.739830001746 -8586,10601,19222,-9,19223,-9,1,0,17,0,0,1,2,0,0,1,4,0,0,0,0,0,-1062.679078375223,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,327.5,57287.29736796216,38252.93187787614,0,0,1537.61358806329 -8586,10601,19223,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.029695944713153,7.350778945618892,6.367705664384919,0,0,-981.0252633792707,0,-9,-9,2019,15,5,17,17,1,5,0,8.026405760175628,8.026405760175628,0,0,0,0,0,1,1,0,7.000255076867592,0,43.85,25.13,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,327.5,57287.29736796216,38252.93187787614,0,0,1537.61358806329 -8586,10602,19224,-9,19223,-9,1,1,19,0,0,0,2,2,-9,0,4,6.350742379294902,6.470465402372869,0,0,0,-948.6637619553684,0,2,-9,2019,11,0,37,0,1,2,1,1.984218033899792,1.984218033899792,0,0,0,0,0,1,1,0,3.806570838269718,0,47,59,-9,-9,7,1,1,0,0,4,6,2,1,921,47301.94818094603,0,0,0,196.114373873918 -8587,10603,19225,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.691450545504843,8.796340481961179,0,0,0,-915.3226689713466,0,3,3,2019,6,0,40,39,1,0,0,14.90548217670537,14.90548217670537,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,2032,1297241.033440612,1004313.011689187,102297.1911213989,0,1690.378946323103 -8588,10604,19226,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.068062580818324,8.14781671531831,0,0,0,-1016.365876004396,0,-9,-9,2019,12,0,43,43,1,0,0,9.874530002800034,9.874530002800034,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,276,0,0,0,0,1673.35968222298 -8589,10605,19227,-9,19230,19228,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.7673556324659,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1241.5,515890.3288028534,-42353.13273614077,452882.135420281,0,5021.683333317554 -8589,10605,19228,19230,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,9.097155099418883,8.810679939727686,0,8,-1,-101.9801705896528,-9,1,2,2019,6,0,43,0,1,0,0,27.18319750843794,27.18319750843794,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,1241.5,515890.3288028534,-42353.13273614077,452882.135420281,0,5021.683333317554 -8589,10605,19229,-9,19230,19228,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.645003079194,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1241.5,515890.3288028534,-42353.13273614077,452882.135420281,0,5021.683333317554 -8589,10605,19230,19228,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.358624551209045,8.569708935421088,0,2,1,-91.35958284354969,-9,-9,-9,2019,6,0,38,0,1,0,0,14.21446529699941,14.21446529699941,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,6.666666666666667,1,1,0,0,4,9,5,1,1241.5,515890.3288028534,-42353.13273614077,452882.135420281,0,5021.683333317554 -8590,10606,19231,-9,19232,19233,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.0685271004254,-9,1,1,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,61.71,43.2,-9,-9,8.333333333333334,2,3,0,0,0,6,5,1,877.6666666666666,619686.8604644332,446273.1036813667,221959.2193574604,51050.49866072348,7014.839683018069 -8590,10606,19232,19233,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,9.078378426596254,9.19143017503144,0,24,-5,4.909040757519773,-9,1,2,2019,9,0,49,0,1,0,0,23.18966351704523,23.18966351704523,0,0,0,0,0,1,1,0,7.060275263650053,0,54.97,45.58,42.98,50.52,8.333333333333334,2,3,0,0,13,6,5,1,877.6666666666666,619686.8604644332,446273.1036813667,221959.2193574604,51050.49866072348,7014.839683018069 -8590,10606,19233,19232,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.784732664313109,8.485658296310278,0,24,5,-49.79567302081163,-9,2,2,2019,11,0,44,0,1,0,0,16.58795066875787,16.58795066875787,0,0,0,0,0,1,1,0,7.60373110662799,0,42.98,50.52,54.97,45.58,8.333333333333334,2,3,0,0,12,6,5,1,877.6666666666666,619686.8604644332,446273.1036813667,221959.2193574604,51050.49866072348,7014.839683018069 -8590,10607,19234,-9,19232,19233,1,0,22,0,1,0,2,2,1,0,3,0,0,0,0,0,-1094.655298957417,-9,1,1,2019,34,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,1.367420957748295,0,10.33,69.33,-9,-9,3.333333333333333,2,3,1,0,0,6,1,1,164,0,0,0,0,374.0756778195158 -8591,10608,19235,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,6.865680771013538,6.675690252057884,0,0,-912.167368015179,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,7.727223088092257,0,0,1,1,0,0,6.914169385637202,47.95,21.46,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,115,343734.0170737618,106656.3016185231,74516.48367366072,0,1057.990134057502 -8591,10609,19236,-9,19235,-9,1,0,52,0,0,0,3,3,-9,0,3,7.478743145560954,7.220636221987323,0,0,0,-989.7144098077526,0,3,-9,2019,12,1,21,21,1,1,0,9.313726011893593,9.313726011893593,0,0,0,0,2,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,184,38039.72810805523,0,0,0,1020.064125476428 -8592,10610,19237,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,6.421614142916376,6.496626722490101,0,0,-1101.743645336908,0,2,1,2019,1,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6.663977199952416,55.9,44.76,-9,-9,10,1,1,0,0,12,4,2,1,144,-109298.9166399992,-68107.32556172932,0,0,964.0721042770449 -8593,10611,19238,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,6.982094003306505,6.870647408736123,0,0,-936.4512357017135,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,12.05146774910066,0,0,1,1,0,4.940295886457283,7.056763149026703,46.55,43.16,-9,-9,8.333333333333334,1,1,0,0,6,2,2,0,539,574212.3913419298,76869.96306387898,209397.4589018397,0,2075.445949847014 -8594,10612,19239,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.532758533072249,8.61972014344682,6.623090763486568,0,0,-1003.394836950277,0,3,3,2019,8,0,38,40,1,0,0,14.57769129080143,14.57769129080143,0,0,0,0,0,0,0,0,3.97140674679172,7.116409203280529,53.03,40.44,-9,-9,5,1,1,0,0,9,10,5,1,632,131757.9427906543,89312.76173433123,260128.7619777097,171885.3006379834,1601.862686298877 -8595,10613,19240,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,6.003515482073007,6.222397297019742,0,0,-1114.668613547515,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,7.864553282289918,0,0,1,1,0,0,5.953797950062707,31.9,19.36,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,817,316831.1914783755,216972.5973942543,28812.40148931806,0,1724.013530074971 -8596,10614,19241,19242,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.943148455635905,8.034701857993468,43,4,-14.39202209090241,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.288241331236675,8.22774991178327,56.47,59.4,44.19,58.01,10,1,1,0,0,5,4,3,1,464.5,1093689.575087872,687138.2008702825,209541.730342008,0,2708.622245503369 -8596,10614,19242,19241,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.262587036363662,5.579475807134967,43,-4,36.64018015396725,0,3,3,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.198893998439867,5.55640917649266,44.19,58.01,56.47,59.4,8.333333333333334,1,1,0,0,9,4,3,1,464.5,1093689.575087872,687138.2008702825,209541.730342008,0,2708.622245503369 -8597,10615,19243,19244,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.356659678428629,7.105410786178808,64,1,5.153038131472522,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.697890120529844,7.057420456274354,56.95,35.96,54,44,8.333333333333334,1,1,0,0,0,4,2,0,289.5,363113.991931445,155754.8054376764,144734.6650718956,0,1616.542656229577 -8597,10615,19244,19243,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,6,-1,36.62985902745692,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,10.25432139178127,0,0,1,1,0,0,0,54,44,56.95,35.96,8,1,1,0,0,0,4,2,0,289.5,363113.991931445,155754.8054376764,144734.6650718956,0,1616.542656229577 -8598,10616,19245,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.252307026776269,7.338876391314328,0,0,-951.1162381498026,0,2,1,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.567119808204653,7.065598514268351,35.68,45.73,-9,-9,3.333333333333333,1,1,0,0,5,12,2,1,561,767551.3745753926,236403.8970048034,571889.5086918598,0,2260.326137410986 -8599,10617,19246,19247,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.540602589605921,8.546844989682203,0,8,-1,-20.73492658899749,0,1,1,2019,12,0,41,35,1,0,0,13.14304221072729,13.14304221072729,0,0,0,0,0,0,0,0,1.325415561487458,0,46.63,59.72,37.86,55.72,8.333333333333334,1,1,0,0,8,9,5,1,290.5,538322.5830530787,255440.4474672476,595184.174840787,333577.568793948,3143.98547154877 -8599,10617,19247,19246,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.461141727426261,8.809695884369246,0,8,1,96.6119149779807,0,1,1,2019,13,3,40,0,1,3,0,18.00992329464379,18.00992329464379,0,0,0,0,0,0,0,0,1.945847897892411,0,37.86,55.72,46.63,59.72,8.333333333333334,1,1,0,0,7,9,5,1,290.5,538322.5830530787,255440.4474672476,595184.174840787,333577.568793948,3143.98547154877 -8600,10618,19248,-9,19249,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-870.7772598237269,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,619.5,389569.9431686542,0,427534.8431673617,87011.75230804348,2949.804022992037 -8600,10618,19249,19250,-9,-9,1,0,29,1,2,0,2,2,-9,0,2,6.738825215054698,6.989880637540063,0,5,1,-32.97732865728778,0,2,2,2019,9,1,12,18,1,1,0,8.491047338575502,8.491047338575502,0,0,0,0,0,1,1,0,1.073138459763297,0,50.67,39.56,49,58,8.333333333333334,1,1,0,0,8,10,4,0,619.5,389569.9431686542,0,427534.8431673617,87011.75230804348,2949.804022992037 -8600,10618,19250,19249,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.43886991603712,8.830417329539518,0,5,-1,-21.7015147072886,0,-9,-9,2019,10,0,60,45,1,1,0,11.90490678778179,11.90490678778179,0,0,0,0,0,1,1,0,0,0,49,58,50.67,39.56,7,1,1,0,0,3,10,4,0,619.5,389569.9431686542,0,427534.8431673617,87011.75230804348,2949.804022992037 -8600,10618,19251,-9,19249,19250,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.760015182628,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,619.5,389569.9431686542,0,427534.8431673617,87011.75230804348,2949.804022992037 -8601,10619,19252,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.486512535144174,8.715588372982893,0,0,0,-883.0200627964003,0,3,3,2019,11,0,50,50,1,0,0,12.59704562423818,12.59704562423818,0,0,0,0,0,0,0,0,0,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,558,487126.5762763807,115596.9200496852,128609.5759290813,0,2490.641767365092 -8602,10620,19253,19254,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,0,0,10,11,0,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,28.06,50.24,24.25,6.666666666666667,1,1,0,0,1,12,2,0,746.5,115742.4661350798,65054.95490778167,0,0,1485.912341219314 -8602,10620,19254,19253,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,10,-11,0,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.24,24.25,50.4,28.06,6.666666666666667,1,1,0,0,0,12,2,0,746.5,115742.4661350798,65054.95490778167,0,0,1485.912341219314 -8603,10621,19255,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.687769361862959,9.032232730911753,0,0,0,-1055.476541385861,0,2,2,2019,10,1,44,42,1,1,0,20.36474783836394,20.36474783836394,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,1433,233867.0772234527,-33060.87814229807,0,0,2484.960180930518 -8604,10622,19256,19257,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.281635264245677,7.338050322038823,22,17,106.5692095853231,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.248675224598078,59.21,43.05,53.82,45.88,8.333333333333334,1,1,0,0,9,5,3,1,971.5,475763.7329271959,135543.3061895083,300442.1722416367,0,1738.535324466118 -8604,10622,19257,19256,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.147702669198847,6.993815803725482,8,-17,36.56836815272393,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.095193300923261,53.82,45.88,59.21,43.05,8.333333333333334,1,1,0,0,0,5,3,1,971.5,475763.7329271959,135543.3061895083,300442.1722416367,0,1738.535324466118 -8605,10623,19258,-9,19259,19260,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.8511134401922,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,825,651216.6757099566,210371.3967075519,698997.8993094679,445868.4148782829,6313.385364349146 -8605,10623,19259,19260,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.918578557642437,9.2098585960417,0,7,-5,-6.704150744784832,-9,-9,-9,2019,7,0,40,0,1,0,0,25.32901176511391,25.32901176511391,0,0,0,0,0,1,1,0,4.412606079499822,0,59.7,53.75,47.44,56.39,8.333333333333334,1,1,0,0,6,9,5,1,825,651216.6757099566,210371.3967075519,698997.8993094679,445868.4148782829,6313.385364349146 -8605,10623,19260,19259,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.256696075096274,9.030908770300316,0,7,5,20.02622093487168,0,2,1,2019,15,4,55,48,1,4,0,21.18390738854506,21.18390738854506,0,0,0,0,0,1,1,0,.4700758004558123,0,47.44,56.39,59.7,53.75,8.333333333333334,1,1,0,0,8,9,5,1,825,651216.6757099566,210371.3967075519,698997.8993094679,445868.4148782829,6313.385364349146 -8605,10623,19261,-9,19259,19260,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.2503127126578,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,825,651216.6757099566,210371.3967075519,698997.8993094679,445868.4148782829,6313.385364349146 -8606,10624,19262,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,4.953363717013048,5.419747991381409,0,0,-985.3896184066624,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,5.255962153050515,24.09,37.96,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,1411,141555.5412594411,-67057.77729396493,109701.9842392996,0,1192.136854675738 -8607,10625,19263,-9,19264,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-899.9936486378193,-9,2,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,2,0,699,-73169.05555900437,0,0,0,1791.22771395837 -8607,10625,19264,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,5.849328762826032,5.493472590867513,0,0,0,-1123.633055259134,0,1,1,2019,10,1,20,20,1,1,0,1.691010073638231,1.691010073638231,0,0,0,0,0,1,1,0,0,0,51.13,50.73,-9,-9,3.333333333333333,1,1,0,0,11,2,2,0,699,-73169.05555900437,0,0,0,1791.22771395837 -8608,10626,19265,19266,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,5.574309227999654,5.87819054233482,7,-1,-48.36068173838613,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.867194976137205,5.251016006687284,65.23999999999999,41.59,64.78,17.57,8.333333333333334,1,1,0,0,0,7,2,1,588,129056.1879035788,33934.61071951069,122666.4097181544,0,1540.968852897536 -8608,10626,19266,19265,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,7,1,99.740856258896,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.307544080924662,0,64.78,17.57,65.23999999999999,41.59,8.333333333333334,1,1,0,0,0,7,2,1,588,129056.1879035788,33934.61071951069,122666.4097181544,0,1540.968852897536 -8609,10627,19267,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.036143446975265,9.509432771944953,9.03398636699203,0,0,-946.7184041103482,0,2,2,2019,12,0,40,40,1,2,0,8.004399333130303,8.004399333130303,0,0,0,0,0,0,0,0,0,9.167964232490924,47,49,-9,-9,7,3,4,0,0,9,8,5,0,291,1378246.129795339,783336.0133692671,316710.3825580342,0,5135.140873328308 -8609,10628,19268,-9,19267,-9,1,0,25,0,0,0,2,2,-9,0,4,8.169358968094686,7.873247460210251,0,0,0,-1016.946447891971,0,2,2,2019,11,0,25,25,1,2,1,14.51627669108651,14.51627669108651,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,236,-28539.59298191431,46181.52746860793,0,0,1103.114108427337 -8609,10629,19269,-9,19267,-9,1,1,21,0,0,0,2,2,-9,0,4,8.170252927499414,8.086538638195682,0,0,0,-1103.400091590964,0,2,-9,2019,11,0,39,39,1,2,1,8.46298598512951,8.46298598512951,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,3,4,0,0,4,8,4,0,875,-200535.8051459684,-71036.81182086183,0,0,1667.292676007245 -8610,10630,19270,19271,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.919446792068195,8.747688810353782,0,7,0,21.16159853342664,0,2,2,2019,10,1,45,40,1,1,0,11.76268747852837,11.76268747852837,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51.39,59.18,8.333333333333334,4,2,0,0,8,5,4,1,780.5,467862.0131140913,311997.0319746567,239402.8657680307,117691.5487147378,3381.367893235289 -8610,10630,19271,19270,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.06575517305795,7.858110838408278,0,7,0,-88.6376022610971,0,2,2,2019,6,0,34,50,1,0,0,10.71563695910891,10.71563695910891,0,0,0,0,0,1,1,0,1.04082056377959,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,8,5,4,1,780.5,467862.0131140913,311997.0319746567,239402.8657680307,117691.5487147378,3381.367893235289 -8610,10630,19272,-9,19271,19270,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1189.737982215987,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,5,4,1,780.5,467862.0131140913,311997.0319746567,239402.8657680307,117691.5487147378,3381.367893235289 -8610,10630,19273,-9,19271,19270,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.377945014348,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,780.5,467862.0131140913,311997.0319746567,239402.8657680307,117691.5487147378,3381.367893235289 -8611,10631,19274,19275,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.666329639562344,8.784109347986044,49,-1,39.99319446660473,0,3,1,2019,11,1,0,0,4,1,0,0,0,0,0,5.774652717888337,0,2,1,1,0,7.559743125497937,8.115265813826063,46,49.02,50.23,39.27,6.666666666666667,1,1,0,0,0,4,4,1,1003,1107438.803026857,671124.9059271091,290002.8953078717,0,4759.803492994901 -8611,10631,19275,19274,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.126542135914773,7.062050645189883,49,1,-84.71197886926227,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.298697699125323,5.304988824276708,50.23,39.27,46,49.02,6.666666666666667,1,1,0,0,0,4,4,1,1003,1107438.803026857,671124.9059271091,290002.8953078717,0,4759.803492994901 -8612,10632,19276,19279,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,6.761863924011661,6.587816905936624,0,3,-18,85.61532339555455,0,3,2,2019,9,0,14,14,1,0,0,6.741729772808009,6.741729772808009,0,0,0,0,0,1,0,1,0,0,52.65,51.64,39.15,41.42,6.666666666666667,2,3,0,0,6,8,2,0,756.5,2067.939592867837,0,0,0,1925.224778535599 -8612,10632,19277,-9,19276,19279,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-968.411784255657,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,756.5,2067.939592867837,0,0,0,1925.224778535599 -8612,10632,19278,-9,19276,19279,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.674765076871,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,756.5,2067.939592867837,0,0,0,1925.224778535599 -8612,10632,19279,19276,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,0,0,0,3,18,20.18347000331826,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,52.65,51.64,6.666666666666667,1,1,1,0,0,8,2,0,756.5,2067.939592867837,0,0,0,1925.224778535599 -8613,10633,19280,19281,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.89464737166367,7.504568023107209,5.354015490210373,6,-6,30.17366178480428,0,2,2,2019,9,0,28,35,1,0,0,10.69850064741702,10.69850064741702,0,0,0,0,0,0,0,0,0,5.618885013458482,58.32,50.22,41.33,44.29,8.333333333333334,1,1,0,0,7,10,3,1,198.5,26920.46994410077,0,160129.1438551585,45648.55439863468,1977.563408160365 -8613,10633,19281,19280,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.228776979665392,7.308682643659256,0,6,6,-10.31246898301457,0,3,-9,2019,13,1,15,14,1,1,0,10.55057913567473,10.55057913567473,0,0,0,0,0,0,0,0,0,0,41.33,44.29,58.32,50.22,6.666666666666667,1,1,0,0,7,10,3,1,198.5,26920.46994410077,0,160129.1438551585,45648.55439863468,1977.563408160365 -8614,10634,19282,19283,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,6.297883388067175,6.188638932055936,32,-2,17.46091837578003,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.018852306232628,6.179692002443223,57.06,57.76,44.24,46.11,10,1,1,0,0,0,2,4,1,542,1030632.563348533,586233.566437642,366950.2995680609,0,3463.978371631928 -8614,10634,19283,19282,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.010521284773624,8.686935943535948,32,2,70.04985770313526,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.057490082412562,44.24,46.11,57.06,57.76,8.333333333333334,1,1,0,0,0,2,4,1,542,1030632.563348533,586233.566437642,366950.2995680609,0,3463.978371631928 -8615,10635,19284,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.380583210088986,8.04485760420393,0,0,0,-937.5214454984905,0,2,-9,2019,16,4,10,10,1,4,0,44.8119349357704,44.8119349357704,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,5,1,1,0,0,12,9,4,1,467,1507026.18651701,758321.8901787238,670265.2314097688,27340.58598852247,1850.737146590209 -8615,10636,19285,-9,19284,-9,1,0,20,0,0,0,2,2,-9,0,4,8.039844138135797,7.868533423807059,0,0,0,-1052.656631996826,0,2,-9,2019,12,0,30,30,1,0,1,11.40740646819074,11.40740646819074,0,0,0,0,0,0,0,0,.8449832627580135,0,39.48,58.88,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,1185,-6404.552170367648,-10903.65839549021,0,0,726.8069850749091 -8616,10637,19286,19289,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,9.306316202729661,9.320437642663252,0,2,6,-53.99103394373908,0,2,2,2019,9,0,39,-9,1,0,0,32.00077838665897,32.00077838665897,0,0,0,0,0,1,1,0,7.548037146336831,0,52.43,55.57,54.74,57.22,8.333333333333334,4,2,0,0,12,8,5,1,1499.25,694684.0641674753,303075.2417515845,380294.8441295699,104249.4399403146,7288.353252686195 -8616,10637,19287,-9,19289,19286,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.0147544417598,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,5,1,1499.25,694684.0641674753,303075.2417515845,380294.8441295699,104249.4399403146,7288.353252686195 -8616,10637,19288,-9,19289,19286,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.134323018734,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,1499.25,694684.0641674753,303075.2417515845,380294.8441295699,104249.4399403146,7288.353252686195 -8616,10637,19289,19286,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,2,-6,-56.51955298740003,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,52.43,55.57,8.333333333333334,4,2,0,0,0,8,5,1,1499.25,694684.0641674753,303075.2417515845,380294.8441295699,104249.4399403146,7288.353252686195 -8617,10638,19290,19291,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,60,-5,-115.3662335539931,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.93,39.53,54.79,55.86,10,1,1,0,0,0,13,3,0,536.5,267632.6422970525,361308.6105356173,0,0,2168.82278336734 -8617,10638,19291,19290,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.811063334264024,7.84920496193933,60,5,-51.86645189394082,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.958356945894066,54.79,55.86,42.93,39.53,8.333333333333334,1,1,0,0,0,13,3,0,536.5,267632.6422970525,361308.6105356173,0,0,2168.82278336734 -8618,10639,19292,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1019.014658676799,0,3,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,37.28,-9,-9,6.666666666666667,1,1,0,1,0,12,2,0,314,236752.8894026867,153073.7427373628,30604.72839348963,70719.82141412306,763.5838449321518 -8619,10640,19293,19294,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,9.000490925999939,8.913645004379553,5.265383089048727,45,-6,-22.91197893809085,0,2,2,2019,8,0,45,40,1,0,0,19.54859856559713,19.54859856559713,0,0,0,0,0,0,0,0,8.805384127693236,5.463940311866548,54.69,57.47,61.96,34.7,8.333333333333334,1,1,0,0,12,9,5,1,1532,1942363.063278575,1626267.695852698,291086.2381877879,0,6421.786212707982 -8619,10640,19294,19293,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,6.811870955141206,6.911469534474735,0,45,6,58.04841791197352,0,1,1,2019,8,1,1,1,1,1,0,100.1864334331516,100.1864334331516,0,0,0,0,0,0,0,0,0,0,61.96,34.7,54.69,57.47,8.333333333333334,1,1,0,0,9,9,5,1,1532,1942363.063278575,1626267.695852698,291086.2381877879,0,6421.786212707982 -8620,10641,19295,-9,19299,19297,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.4682585572518,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.69,53.18,-9,-9,10,1,1,0,0,1,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10641,19296,-9,19299,19297,1,0,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-915.4185706685655,-9,1,2,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.3117725548553167,0,44.11,55.31,-9,-9,6.666666666666667,1,1,0,0,3,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10641,19297,19299,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.955911209713047,8.791807348819489,0,6,-1,95.0812563562058,0,3,1,2019,14,3,42,47,1,3,0,22.5433381283596,22.5433381283596,0,0,0,0,0,0,0,0,0,0,36.13,56.64,57.56,49.35,3.333333333333333,1,1,0,1,7,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10641,19298,-9,19299,19297,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.7038038582435,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10641,19299,19297,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.325816260396918,8.35690347125381,0,6,1,-73.47693044575389,0,2,2,2019,4,0,57,55,1,0,0,8.966207778171642,8.966207778171642,0,0,0,0,0,0,0,0,0,0,57.56,49.35,36.13,56.64,1.666666666666667,1,1,0,0,7,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10641,19300,-9,19299,19297,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.7903549896852,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,651.5,1188862.753411698,1035408.67889691,200699.7569429494,95893.19366700291,4058.32728008605 -8620,10642,19301,-9,19299,19297,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1020.965299778708,1,1,2,2019,13,4,0,8,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,-9,-9,5,1,1,0,0,6,6,1,1,330,-33093.19407336888,0,0,0,-165.3101371679986 -8621,10643,19302,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.25124328992028,8.059076352809042,7.512303740350287,0,0,-980.8082009686618,0,2,2,2019,12,0,26,25,1,0,0,8.340870005931343,8.340870005931343,0,0,0,0,0,1,1,0,5.071143915060042,7.708281806276529,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,162,769680.5683283253,438484.0456087246,246776.4801270948,45665.51869110785,2220.265032679759 -8622,10644,19303,19304,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,33,0,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.28,18.27,46,38,5,1,1,0,0,0,6,1,0,1763.5,-6049.884195263443,0,0,0,474.9500294738127 -8622,10644,19304,19303,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,34,0,0,0,3,2,2019,16,4,0,40,4,4,0,0,0,0,0,0,0,42,1,1,0,5.786728188560924,0,46,38,37.28,18.27,1.666666666666667,1,1,0,0,9,6,1,0,1763.5,-6049.884195263443,0,0,0,474.9500294738127 -8623,10645,19305,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.2284915124611,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.81,33.18,-9,-9,10,1,1,0,0,0,12,1,0,828,-1084.544129284714,0,0,0,695.0717978971248 -8624,10646,19306,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.274157550338105,8.618726266059346,0,0,0,-995.195510382314,-9,2,-9,2019,11,0,60,0,1,0,0,8.269006216003239,8.269006216003239,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,10,4,1,1061,659450.4881828573,373737.3593843473,163059.8114340273,0,2838.589446069576 -8625,10647,19307,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,7.866655693461676,7.849302842530047,0,0,0,-1039.75627854906,0,3,3,2019,22,8,32,0,1,8,0,11.32300840955108,11.32300840955108,0,0,0,0,0,1,1,0,0,0,37,15.95,-9,-9,0,3,4,0,1,1,8,4,0,3189,-160229.8470566331,0,0,0,3002.486870492012 -8626,10648,19308,19309,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,5.846152391476202,6.105619430786969,55,1,-90.59182042223904,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.974328177363962,6.618862431972126,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,356.5,1722.23714284756,36316.67762197091,0,0,1476.45841394572 -8626,10648,19309,19308,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,54,-1,-65.65061407403049,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,0,7,2,0,356.5,1722.23714284756,36316.67762197091,0,0,1476.45841394572 -8627,10649,19310,19311,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.952247789177602,7.180259135241759,8,-2,-21.20580544202308,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,2.633098037573369,7.119626642758634,61.2,20.32,48.13,10.74,8.333333333333334,1,1,0,0,0,2,3,1,518.5,1006339.558296453,593287.5195408892,341358.4620278227,0,2574.898737853245 -8627,10649,19311,19310,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.424709378892045,7.473508176030185,8,2,-97.54980909256069,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,0,78.79082809578692,0,0,1,1,0,3.916381476044691,7.163165663605167,48.13,10.74,61.2,20.32,1.666666666666667,1,1,0,0,0,2,3,1,518.5,1006339.558296453,593287.5195408892,341358.4620278227,0,2574.898737853245 -8628,10650,19312,-9,-9,-9,1,0,39,0,2,0,3,3,-9,1,4,0,0,0,0,0,-931.9753064481936,0,3,3,2019,10,0,0,28,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.75,46.04,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,363,0,0,0,0,1570.818645485996 -8628,10650,19313,-9,19312,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.20108256678,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,363,0,0,0,0,1570.818645485996 -8629,10651,19314,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.588495803766897,8.757500812164221,0,0,0,-940.5317502064416,0,1,1,2019,8,0,38,35,1,0,0,17.71885870672132,17.71885870672132,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,681,77328.32196742209,-18067.54455453506,0,0,2296.639404368284 -8630,10652,19315,-9,19316,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1017.53491444259,-9,2,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,53.24,50.01,-9,-9,8.333333333333334,1,1,0,1,1,4,3,0,1389,16178.51123220113,36349.13615767542,0,0,1708.832885761846 -8630,10652,19316,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.874166167279403,8.026169619479857,0,0,0,-1043.261421558407,0,-9,-9,2019,15,3,43,39,1,3,0,8.365253392425867,8.365253392425867,0,0,0,2.260470075266483,0,1,1,0,.1961252327577435,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,1389,16178.51123220113,36349.13615767542,0,0,1708.832885761846 -8630,10652,19317,-9,19316,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.6701545385898,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,1389,16178.51123220113,36349.13615767542,0,0,1708.832885761846 -8631,10653,19318,-9,19319,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.9030127474773,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,3,0,460,-7550.46974389243,0,0,0,1357.150595750801 -8631,10653,19319,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,1,7.989059981814204,8.135646343724382,0,0,0,-1054.745541261911,0,2,3,2019,18,7,40,30,1,7,0,9.661903116038173,9.661903116038173,0,0,0,0,0,1,1,0,0,0,35.22,32.79,-9,-9,3.333333333333333,1,1,0,0,5,8,3,0,460,-7550.46974389243,0,0,0,1357.150595750801 -8632,10654,19320,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,7.922519397177426,7.691909545031446,0,0,0,-923.8560226915695,0,1,2,2019,6,0,29,23,1,0,0,11.10687748690123,11.10687748690123,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,12,3,0,669,136176.9978238575,-23255.54684573368,63902.48635451158,74545.63189504606,1365.444453295084 -8633,10655,19321,19322,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,58,2,11.37262714281628,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.7534009498920584,0,62.75,34.56,55.53,51.55,10,1,1,0,0,0,4,2,1,381,380059.2819100408,244326.8146728708,127903.7240767879,0,1165.910767371898 -8633,10655,19322,19321,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.21825735481832,7.436525569288066,58,-2,-.1190447540882493,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.983125894057397,7.486439719266492,55.53,51.55,62.75,34.56,8.333333333333334,1,1,0,0,0,4,2,1,381,380059.2819100408,244326.8146728708,127903.7240767879,0,1165.910767371898 -8634,10656,19323,19324,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.909222998849533,7.825598108423888,0,3,1,-76.33538699330047,0,-9,-9,2019,10,0,42,40,1,0,0,7.215494940966023,7.215494940966023,0,0,0,0,0,0,0,0,.2449733297132794,0,51.83,57.2,54.1,59.11,10,1,1,0,0,4,6,5,1,569.5,8193.974710002745,24531.24609142137,0,0,3212.798216682788 -8634,10656,19324,19323,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.536142125073113,8.466366925891275,0,3,-1,52.86112083505253,0,2,1,2019,8,0,50,50,1,0,0,11.67146686223696,11.67146686223696,0,0,0,0,0,0,0,0,.4977100843650147,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,569.5,8193.974710002745,24531.24609142137,0,0,3212.798216682788 -8635,10657,19325,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.96112936114316,5.635271538450412,0,0,-1066.0394577083,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.673587505642356,50.91,49.59,-9,-9,10,1,1,0,0,0,2,2,1,190,337399.0979581043,86845.64151514473,15833.95012199812,0,677.013399616563 -8636,10658,19326,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,8.215698558507118,8.160850648947164,0,0,-964.7040931356536,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.878126594142358,8.207949309798968,57.1,43.84,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,213,1218532.700837812,378931.8918795701,219744.9435851294,0,2952.417567530686 -8637,10659,19327,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.733746980345963,8.807727333451282,0,0,0,-1021.073813904784,0,2,2,2019,10,0,42,38,1,0,0,19.05466239338903,19.05466239338903,0,0,0,0,0,0,0,0,3.555311978829047,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,438,472868.6450941462,344234.1720105113,97160.41063565755,82811.74596086053,2502.611812646284 -8638,10660,19328,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.395236465316764,7.274626637187779,0,0,-971.1072630670171,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.895145223850338,7.334092137355511,54.9,54.53,-9,-9,10,1,1,0,0,0,6,3,1,499,302499.0472826053,54219.33241411726,0,0,1747.709902430685 -8639,10661,19329,-9,19332,19330,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.8367050688843,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.175338851119511,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,928.75,987313.4342885888,279316.3963788826,698723.8133524719,109578.6397556986,2815.870527064356 -8639,10661,19330,19332,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.338135048930996,8.465297049920705,0,10,10,-73.08024769866911,0,-9,-9,2019,10,2,40,40,1,2,0,14.23188001260575,14.23188001260575,0,0,0,0,0,1,1,0,0,0,42.45,37.01,50.27,48.86,3.333333333333333,2,3,0,0,10,8,4,1,928.75,987313.4342885888,279316.3963788826,698723.8133524719,109578.6397556986,2815.870527064356 -8639,10661,19331,-9,19332,19330,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.8161594688278,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,1,928.75,987313.4342885888,279316.3963788826,698723.8133524719,109578.6397556986,2815.870527064356 -8639,10661,19332,19330,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,7.740051146951931,7.538479343723419,0,10,-10,-111.9468784005718,0,-9,-9,2019,10,0,28,25,1,0,0,10.39582288133525,10.39582288133525,0,0,0,0,0,1,1,0,0,0,50.27,48.86,42.45,37.01,8.333333333333334,2,3,0,0,3,8,4,1,928.75,987313.4342885888,279316.3963788826,698723.8133524719,109578.6397556986,2815.870527064356 -8639,10662,19333,-9,19332,19330,1,0,24,0,2,0,1,1,-9,0,3,7.327755457732765,7.625702495888466,0,0,0,-1015.878629652078,0,1,3,2019,10,1,35,34,1,1,1,7.139611488713338,7.139611488713338,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,6.666666666666667,2,3,0,0,2,8,3,1,950,-1134.971955565481,22886.13946905078,0,0,588.2219301324512 -8639,10663,19334,-9,19332,19330,1,1,23,0,2,0,2,2,-9,0,3,6.831449172930006,6.963077829467204,0,0,0,-1138.202839320011,0,1,3,2019,11,1,28,8,1,1,1,4.756328615642154,4.756328615642154,0,0,0,0,0,1,1,0,0,0,43.12,58.55,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,614,-45264.79911100351,0,0,0,92.89873764159398 -8640,10664,19335,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.101059278617717,7.945677422746249,0,0,0,-993.742858515422,-9,-9,-9,2019,6,0,43,0,1,0,0,8.56243722377905,8.56243722377905,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,1,2,4,0,375,39003.6490612555,0,0,0,1259.262857585562 -8640,10665,19336,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.416470144375,0,-9,-9,2019,28,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,37.3,33.29,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1098,-150681.8411773777,0,0,0,750.9467585171849 -8641,10666,19337,19339,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,6.784007685372167,6.695307260567724,0,39,2,56.79941249391089,-9,3,3,2019,13,3,45,0,1,3,0,2.11225927351684,2.11225927351684,0,0,0,0,0,1,1,0,0,0,46.21,37.4,39.58,57.61,5,1,1,0,0,10,2,2,1,1990.666666666667,-187598.3158531195,-42420.1490648834,0,0,500.5196596811105 -8641,10666,19338,-9,19339,19337,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1073.86739528499,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,1,0,2,2,1,1990.666666666667,-187598.3158531195,-42420.1490648834,0,0,500.5196596811105 -8641,10666,19339,19337,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,6.895384914838737,7.130547096445904,0,40,-2,44.7888480587857,0,3,3,2019,9,0,7,16,1,0,0,18.07829257284299,18.07829257284299,0,0,0,0,0,1,1,0,0,0,39.58,57.61,46.21,37.4,8.333333333333334,1,1,0,1,10,2,2,1,1990.666666666667,-187598.3158531195,-42420.1490648834,0,0,500.5196596811105 -8642,10667,19340,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,6.686850138550445,6.975236616124823,0,0,0,-1041.504747375945,0,1,1,2019,4,0,38,37,1,0,0,3.965021023409978,3.965021023409978,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,311,-39944.36068433574,-28646.05196094216,0,0,1313.512639109486 -8643,10668,19341,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-965.6496247548145,-9,3,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.73,25.68,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,900,0,0,0,0,1388.067971822385 -8644,10669,19342,19343,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,7,-3,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.33,53.46,40.63,23.69,6.666666666666667,1,1,0,0,0,13,1,0,418,0,0,0,0,1320.215256091214 -8644,10669,19343,19342,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,7,3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.238818578316053,0,40.63,23.69,57.33,53.46,0,1,1,0,1,0,13,1,0,418,0,0,0,0,1320.215256091214 -8644,10670,19344,-9,19342,19343,1,1,25,0,0,0,2,2,-9,0,4,8.417336624864085,8.433200848454554,0,0,0,-974.2256139705466,0,3,3,2019,1,0,40,40,1,0,1,15.53396732484259,15.53396732484259,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,13,5,0,918,244887.0545996776,-6491.941182654577,0,0,1506.138943597211 -8645,10671,19345,19348,-9,-9,1,1,36,0,2,0,1,1,-9,1,2,0,0,0,7,2,54.39258336136053,0,-9,-9,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.41,51.05,26.09,44.12,3.333333333333333,1,1,1,0,0,7,3,0,894.75,493063.3787837214,214221.9723015894,336692.2738732815,151920.4562737803,2110.626561410971 -8645,10671,19346,-9,19348,19345,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1152.948743718321,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,0,894.75,493063.3787837214,214221.9723015894,336692.2738732815,151920.4562737803,2110.626561410971 -8645,10671,19347,-9,19348,19345,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1077.06294207339,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,7,3,0,894.75,493063.3787837214,214221.9723015894,336692.2738732815,151920.4562737803,2110.626561410971 -8645,10671,19348,19345,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.341804002463377,8.037416451442397,0,7,-2,6.436433948678419,0,2,1,2019,15,3,39,15,1,3,0,10.08198058411118,10.08198058411118,0,0,0,0,2,1,1,0,0,0,26.09,44.12,24.41,51.05,5,1,1,0,0,7,7,3,0,894.75,493063.3787837214,214221.9723015894,336692.2738732815,151920.4562737803,2110.626561410971 -8646,10672,19349,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,7.630199891379866,7.504585578238751,0,0,0,-984.1097837745211,-9,1,-9,2019,11,0,37,0,1,0,0,5.275038789871937,5.275038789871937,0,0,0,0,0,0,0,0,.5774546727429469,0,47.07,53.97,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,323,-190044.4237976301,0,0,0,778.6253006298928 -8647,10673,19350,-9,19352,19353,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.1774972296062,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,622.5,394392.0242809732,139168.0194998311,379065.741015436,215980.4046632549,7958.431899759526 -8647,10673,19351,-9,19352,19353,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.191955102585,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,622.5,394392.0242809732,139168.0194998311,379065.741015436,215980.4046632549,7958.431899759526 -8647,10673,19352,19353,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,9.68250880692313,9.576110331577953,0,29,-5,20.33454795685681,0,2,2,2019,16,6,46,50,1,6,0,37.14742589831796,37.14742589831796,0,0,0,0,0,0,0,0,6.169094386503214,0,38.98,61.76,60.31,43.75,6.666666666666667,1,1,0,0,8,10,5,1,622.5,394392.0242809732,139168.0194998311,379065.741015436,215980.4046632549,7958.431899759526 -8647,10673,19353,19352,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.087634640683891,8.983226919277179,0,29,5,6.06771944624589,0,2,2,2019,7,0,39,39,1,0,0,22.38492328580998,22.38492328580998,0,0,0,0,0,0,0,0,6.661110233992973,0,60.31,43.75,38.98,61.76,8.333333333333334,1,1,0,0,10,10,5,1,622.5,394392.0242809732,139168.0194998311,379065.741015436,215980.4046632549,7958.431899759526 -8648,10674,19354,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.092427206223082,7.137004414497373,0,0,-1041.929394087564,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.523290764203558,7.370073871248545,51.34,46.65,-9,-9,10,1,1,0,0,5,2,3,0,1462,365280.2716558164,288061.7753735455,157153.4706523429,0,1908.398497712976 -8649,10675,19355,19358,-9,-9,1,1,25,1,2,0,2,2,-9,0,2,0,0,0,3,-5,-102.7050762949703,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.48,48.98,36.59,43.84,1.666666666666667,1,1,0,1,1,6,2,0,677.75,19361.50565353744,0,0,0,1376.261076983007 -8649,10675,19356,-9,19358,19355,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.6558018037006,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,2,0,677.75,19361.50565353744,0,0,0,1376.261076983007 -8649,10675,19357,-9,19358,19355,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-833.7402613890422,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,677.75,19361.50565353744,0,0,0,1376.261076983007 -8649,10675,19358,19355,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.280606917886843,7.213071148134365,0,3,5,-85.91602725303621,0,-9,-9,2019,20,8,25,25,1,8,0,9.755182990026531,9.755182990026531,0,0,0,0,0,1,1,0,0,0,36.59,43.84,29.48,48.98,1.666666666666667,1,1,0,1,7,6,2,0,677.75,19361.50565353744,0,0,0,1376.261076983007 -8650,10676,19359,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.257138579035296,7.147632834164707,0,0,-994.7606415506599,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.46257224963069,7.086083203693986,57.62,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,691,742849.1647086777,111778.9541711446,412375.4492730185,0,780.2386751643965 -8651,10677,19360,-9,19363,19362,1,1,38,0,1,0,2,2,-9,0,4,8.672351551441329,8.259322403813075,0,0,0,-954.4623306944754,0,3,3,2019,4,0,40,48,1,0,1,17.21355971740846,17.21355971740846,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,1742,63759.2120277966,-13937.80402263488,133415.0380858275,52520.23931304406,2609.415073055329 -8651,10677,19361,-9,-9,19360,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.821326735347,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1742,63759.2120277966,-13937.80402263488,133415.0380858275,52520.23931304406,2609.415073055329 -8651,10678,19362,19363,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,38.6,47.07,26.08,10,1,1,1,0,9,11,1,1,1045.5,-90422.98101736333,0,0,0,0 -8651,10678,19363,19362,-9,-9,1,0,59,0,1,0,3,3,-9,1,1,0,0,0,6,0,0,0,-9,-9,2019,8,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,26.08,54.68,38.6,8.333333333333334,1,1,0,0,12,11,1,1,1045.5,-90422.98101736333,0,0,0,0 -8652,10679,19364,-9,19365,19366,1,1,20,0,0,0,2,2,-9,0,4,7.796753494107755,7.951740375104915,0,0,0,-933.8535942974277,0,2,2,2019,8,0,37,40,1,0,1,9.087349712521338,9.087349712521338,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,594,145663.0788233409,117532.2078045634,0,0,906.5059382493992 -8652,10680,19365,19366,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.673475757390962,7.368905611067118,0,8,-7,-37.93864488771791,0,2,2,2019,7,0,28,28,1,0,0,9.945704658619881,9.945704658619881,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47.07,53.97,6.666666666666667,1,1,0,0,9,11,4,1,453.5,-70632.99151260382,18192.10968207292,0,0,2351.268899980275 -8652,10680,19366,19365,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.333846660965573,8.216553535809318,0,8,7,74.4306290967113,0,-9,-9,2019,10,0,55,52,1,0,0,7.00965191156559,7.00965191156559,0,0,0,0,0,0,0,0,0,0,47.07,53.97,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,453.5,-70632.99151260382,18192.10968207292,0,0,2351.268899980275 -8653,10681,19367,19368,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.053745977925014,7.080116309959863,0,29,2,45.25988238071562,0,-9,-9,2019,12,0,23,35,1,0,0,6.225670138255883,6.225670138255883,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,0,515.5,263565.4982035825,261599.486138898,0,0,2819.28395645415 -8653,10681,19368,19367,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.758550982537708,8.938033421156964,0,29,-2,30.27398994446465,0,3,2,2019,10,0,46,73,1,0,0,19.05043387795829,19.05043387795829,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,9,5,0,515.5,263565.4982035825,261599.486138898,0,0,2819.28395645415 -8653,10682,19369,-9,19367,19368,1,1,22,0,0,0,2,2,-9,0,3,8.435036011387556,8.65504542934166,0,0,0,-1057.204994482001,0,2,2,2019,12,1,40,39,1,1,1,9.422276753990477,9.422276753990477,0,0,0,0,0,0,0,0,0,0,47.81,52.33,-9,-9,5,1,1,0,0,7,9,4,0,293,59532.33391164054,0,0,0,1446.105945535992 -8654,10683,19370,19374,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.168308205298328,7.134199665239412,0,6,-2,-22.55997377019196,0,3,3,2019,11,1,27,20,1,1,0,4.44182791472008,4.44182791472008,0,0,0,0,0,1,1,0,0,0,41.44,44.42,57.66,50.59,5,1,1,0,0,9,6,4,1,997.2,989846.7788224372,947271.0860434724,186434.7626434103,99276.62173534217,3467.802039566945 -8654,10683,19371,-9,19370,19374,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1007.987959982069,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,997.2,989846.7788224372,947271.0860434724,186434.7626434103,99276.62173534217,3467.802039566945 -8654,10683,19372,-9,19370,19374,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.973008875128,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,6,4,1,997.2,989846.7788224372,947271.0860434724,186434.7626434103,99276.62173534217,3467.802039566945 -8654,10683,19373,-9,19370,19374,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1131.917655453845,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,1,997.2,989846.7788224372,947271.0860434724,186434.7626434103,99276.62173534217,3467.802039566945 -8654,10683,19374,19370,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.993751253147144,9.168724905935894,0,6,2,-57.93171277681598,0,2,2,2019,8,0,35,39,1,0,0,29.30562800434945,29.30562800434945,0,0,0,0,0,1,1,0,0,0,57.66,50.59,41.44,44.42,8.333333333333334,1,1,0,0,9,6,4,1,997.2,989846.7788224372,947271.0860434724,186434.7626434103,99276.62173534217,3467.802039566945 -8655,10684,19375,19376,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.960436690134212,6.871697240296128,0,7,0,24.79254069308582,0,-9,-9,2019,11,0,60,60,1,0,0,2.074117236070041,2.074117236070041,0,0,0,0,0,1,1,0,1.06715607759944,0,54.37,54.8,53.3,55.06,8.333333333333334,1,1,0,0,8,4,2,1,1586.666666666667,26020.93057126818,-12753.02865149291,0,0,1853.529772784342 -8655,10684,19376,19375,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.422425689122845,6.675124333231706,0,19,0,-95.85009431601596,0,2,-9,2019,11,0,16,16,1,0,0,6.438135355256554,6.438135355256554,0,0,0,0,0,1,1,0,1.969349439368906,0,53.3,55.06,54.37,54.8,6.666666666666667,1,1,0,0,8,4,2,1,1586.666666666667,26020.93057126818,-12753.02865149291,0,0,1853.529772784342 -8655,10684,19377,-9,19376,19375,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.6572510755402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1586.666666666667,26020.93057126818,-12753.02865149291,0,0,1853.529772784342 -8656,10685,19378,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.854798598139157,7.906702850592225,0,0,0,-1044.97187755883,0,2,3,2019,11,0,40,48,1,0,0,9.566855085451065,9.566855085451065,0,0,0,0,0,0,0,0,1.608668627665981,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,889,889.8416094687836,131831.2435675559,0,0,1295.609634091717 -8657,10686,19379,19380,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.159847025189309,7.197857581005204,0,10,-10,23.21158567669178,0,-9,-9,2019,13,2,21,23,1,2,0,6.168345387253588,6.168345387253588,0,0,0,0,0,1,1,0,.7135506759714774,0,43.87,57.02,50.14,53.97,8.333333333333334,1,1,0,0,10,9,4,1,2618.25,357246.4311453223,272583.8053418209,258673.863575223,203473.8180728013,3404.508153299879 -8657,10686,19380,19379,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.787886354349029,8.952453346317888,0,10,10,46.00615634394919,0,2,2,2019,6,0,54,56,1,0,0,15.72308313416282,15.72308313416282,0,0,0,0,0,1,1,0,3.706177530754019,0,50.14,53.97,43.87,57.02,5,1,1,0,0,10,9,4,1,2618.25,357246.4311453223,272583.8053418209,258673.863575223,203473.8180728013,3404.508153299879 -8657,10686,19381,-9,19379,19380,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.209095285106,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,2618.25,357246.4311453223,272583.8053418209,258673.863575223,203473.8180728013,3404.508153299879 -8657,10686,19382,-9,19379,19380,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.0532384293909,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,2618.25,357246.4311453223,272583.8053418209,258673.863575223,203473.8180728013,3404.508153299879 -8658,10687,19383,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.799238667268897,6.581942154979099,0,0,-920.9913085314129,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.034530072573721,43.19,43.28,-9,-9,5,1,1,0,0,0,10,2,1,642,58975.36107328225,144632.3052605999,0,0,996.1358633143273 -8659,10688,19384,-9,-9,-9,1,0,40,0,0,0,3,3,-9,0,5,6.925316583931694,6.90690064821582,0,0,0,-1053.595779460831,-9,1,1,2019,9,0,58,0,1,0,0,2.033824147364905,2.033824147364905,0,0,0,0,0,1,1,0,7.795116291061229,0,49.76,56.93,-9,-9,6.666666666666667,1,1,0,0,11,10,2,1,1404,56330.547837843,0,0,0,1508.044074432178 -8660,10689,19385,19386,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.55277968052361,7.612516385131905,0,8,15,-52.28092850634955,0,-9,-9,2019,9,0,40,50,1,1,0,4.807098890568797,4.807098890568797,0,0,0,0,0,0,0,0,0,0,54,54,49,55,8,1,1,0,0,11,8,2,1,293,1162369.712387548,215619.15828592,1031383.535652925,0,191.3157807367574 -8660,10689,19386,19385,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,16,-15,-138.7952798375266,0,1,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54,54,7,4,2,0,0,9,8,2,1,293,1162369.712387548,215619.15828592,1031383.535652925,0,191.3157807367574 -8660,10690,19387,-9,19386,19385,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-946.7268700964742,0,1,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,5,1,0,3,8,1,1,188,117034.9121632176,0,0,0,0 -8660,10691,19388,-9,19386,19385,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-929.7994540808114,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,1,488,0,0,0,0,-1073.861620857946 -8661,10692,19389,-9,-9,19390,1,1,36,0,0,0,1,1,-9,0,5,9.259530269123385,9.561238158014195,0,0,0,-1016.141290656553,0,2,2,2019,11,0,48,48,1,0,0,23.17358856957354,23.17358856957354,0,0,0,0,0,0,0,0,5.663605076405617,0,32.4,61.08,-9,-9,8.333333333333334,2,3,0,0,9,4,5,1,1777,348770.8605100055,-102672.1035043463,0,0,3250.756958050069 -8661,10693,19390,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1018.327975512848,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.87,56.13,-9,-9,10,2,3,0,0,8,4,1,1,1753,39690.32024270586,-33081.48323151957,0,0,0 -8662,10694,19391,-9,19392,-9,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1077.179233218728,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.08,45.02,-9,-9,6.666666666666667,1,1,1,0,0,2,2,0,559.5,79229.25428779155,0,122885.5603596696,15636.85580243037,763.1154002001326 -8662,10694,19392,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,3,0,4.780588926548467,4.785398392000216,0,0,-934.239691006471,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,4.828572468794843,0,33.25,44.1,-9,-9,3.333333333333333,1,1,0,1,6,2,2,0,559.5,79229.25428779155,0,122885.5603596696,15636.85580243037,763.1154002001326 -8662,10695,19393,-9,19392,-9,1,1,18,0,1,0,2,2,1,1,4,0,0,0,0,0,-913.3379709123525,-9,2,-9,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,33.65,55.9,-9,-9,5,1,1,1,1,0,2,2,0,2129,0,0,0,0,664.625637938898 -8663,10696,19394,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,2,0,0,0,0,0,-904.2971928712982,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.6,19.2,-9,-9,1.666666666666667,1,1,0,1,3,6,1,0,781,-41361.00590028999,0,0,0,-48.68434566008978 -8664,10697,19395,19396,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.19911402470248,8.112349642509113,0,17,4,120.1047346289792,0,2,2,2019,6,0,45,44,1,0,0,8.628403717036356,8.628403717036356,0,0,0,0,0,1,1,0,0,0,64.23,44.69,56.52,48.31,8.333333333333334,1,1,0,0,9,6,3,1,1343,-9108.969201739978,15892.83088143513,0,0,3035.159560095051 -8664,10697,19396,19395,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,7.875705920827173,7.871508750367162,0,17,-4,-16.32069239042951,0,2,3,2019,11,0,36,32,1,0,0,9.359388252838997,9.359388252838997,0,0,0,0,0,1,1,0,0,0,56.52,48.31,64.23,44.69,8.333333333333334,1,1,0,0,6,6,3,1,1343,-9108.969201739978,15892.83088143513,0,0,3035.159560095051 -8664,10697,19397,-9,19396,19395,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.185051707718,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,1343,-9108.969201739978,15892.83088143513,0,0,3035.159560095051 -8665,10698,19398,-9,19399,19401,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.9811483235115,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,1,2,1,669.4,91567.07661930002,-2400.708881903636,0,0,1907.276915821363 -8665,10698,19399,19401,-9,-9,1,0,29,1,3,0,3,3,-9,0,4,0,0,0,4,-1,-38.78909662366309,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,2,3,0,0,0,1,2,1,669.4,91567.07661930002,-2400.708881903636,0,0,1907.276915821363 -8665,10698,19400,-9,19399,19401,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-894.2062235484639,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,1,2,1,669.4,91567.07661930002,-2400.708881903636,0,0,1907.276915821363 -8665,10698,19401,19399,-9,-9,1,1,30,1,3,0,2,2,-9,0,4,7.268864184837192,7.774798793006666,0,11,1,-89.90618083302435,0,-9,-9,2019,11,0,35,45,1,0,0,5.957747305853497,5.957747305853497,0,0,0,0,0,1,1,0,0,0,50,57,48,56,5,2,3,0,0,6,1,2,1,669.4,91567.07661930002,-2400.708881903636,0,0,1907.276915821363 -8665,10698,19402,-9,19399,19401,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.535499049963,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,2,1,669.4,91567.07661930002,-2400.708881903636,0,0,1907.276915821363 -8666,10699,19403,19404,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,5.532811760889559,5.15486482400055,0,35,-1,122.4032880099319,0,3,3,2019,10,0,20,25,1,0,0,1.777987270068516,1.777987270068516,0,0,0,0,0,0,0,0,0,0,60.02,38.46,54.96,53.17,8.333333333333334,1,1,0,0,12,1,3,1,340,25029.03167115199,0,0,0,1240.167691739784 -8666,10699,19404,19403,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.823769372986818,7.755676706006055,0,35,1,48.31463865919715,0,3,3,2019,11,0,40,40,1,0,0,6.702968494597489,6.702968494597489,0,0,0,0,0,0,0,0,0,0,54.96,53.17,60.02,38.46,6.666666666666667,1,1,0,0,12,1,3,1,340,25029.03167115199,0,0,0,1240.167691739784 -8667,10700,19405,19406,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.240480176413554,7.949221088433922,0,7,2,-34.09559905168704,0,3,3,2019,7,0,37,40,1,0,0,14.305959791907,14.305959791907,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,9,10,5,1,430.5,913226.4175522748,599304.8476605692,0,0,3084.611427911866 -8667,10700,19406,19405,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.747391120287388,8.327651033661601,6.892874333682622,42,-2,59.76338915783755,0,2,2,2019,6,0,36,37,1,0,0,8.745910240750142,8.745910240750142,0,0,0,0,0,0,0,0,0,6.833040337654068,54.96,53.17,51.24,58.84,10,1,1,0,0,8,10,5,1,430.5,913226.4175522748,599304.8476605692,0,0,3084.611427911866 -8668,10701,19407,19408,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.908196616823862,8.060706778705253,0,2,-16,-31.32692593468936,0,2,2,2019,9,0,45,48,1,1,0,7.683910736940757,7.683910736940757,0,0,0,0,0,1,1,0,0,0,52,55,33.9,60.31,8,1,1,0,0,1,4,3,1,973,-56920.87494898874,26056.54612078314,0,0,1647.356569402066 -8668,10701,19408,19407,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,2,16,-63.03495781329777,0,3,3,2019,9,0,0,4,4,0,0,0,0,0,0,0,0,0,1,1,0,1.427108054745112,0,33.9,60.31,52,55,8.333333333333334,1,1,0,0,3,4,3,1,973,-56920.87494898874,26056.54612078314,0,0,1647.356569402066 -8669,10702,19409,19410,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.408431025255991,8.376574356377542,0,40,-3,-189.0728551502268,0,2,2,2019,5,0,44,44,1,0,0,11.95363744935591,11.95363744935591,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,703,1546728.508997526,749544.8139922463,584587.4642526035,0,5280.58626966293 -8669,10702,19410,19409,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.259645517320925,9.289311100895864,0,40,3,-177.3857716388952,0,1,2,2019,6,0,50,47,1,0,0,27.73955632433426,27.73955632433426,0,0,0,0,2,0,0,0,0,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,10,9,5,1,703,1546728.508997526,749544.8139922463,584587.4642526035,0,5280.58626966293 -8670,10703,19411,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.88063034946426,5.712435566271458,0,0,-913.6409205860513,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,2.885555632009339,0,1,1,0,0,5.861365009594914,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,1199,100032.6001044134,142065.279419139,29342.26347845074,0,1247.31597088607 -8670,10704,19412,-9,19411,-9,1,1,34,0,0,0,2,2,0,0,3,0,0,0,0,0,-874.0791634552658,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.759152188418085,0,46.86,49.93,-9,-9,8.333333333333334,1,1,0,0,6,12,1,1,863,0,0,0,0,667.1617187171519 -8671,10705,19413,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1101.544893316249,0,3,3,2019,36,12,0,0,4,12,0,0,0,1,0,7.064711839088194,0,0,1,1,0,0,0,17.48,26.15,-9,-9,0,2,3,0,1,0,6,1,1,90,148765.9660012103,0,0,0,354.5457654697793 -8671,10706,19414,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.73630886365192,7.72803489887367,0,0,0,-991.7812251424374,0,-9,-9,2019,22,10,36,0,1,10,0,9.554386481314696,9.554386481314696,0,0,0,0,0,1,1,0,0,0,32.1,52.67,-9,-9,1.666666666666667,2,3,0,0,5,6,3,1,101,-64906.25997125085,-25801.70176460819,0,0,1603.090485188265 -8672,10707,19415,19416,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.87185735541466,9.392038384399441,0,9,9,-59.57009022303897,-9,-9,-9,2019,8,0,55,0,1,0,0,29.4540598142602,29.4540598142602,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,10,2,5,1,450.5,2405065.245376841,1446486.400697874,526363.6575452979,0,7305.973599819406 -8672,10707,19416,19415,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.210323511367623,8.398675697949685,0,15,0,-82.5631989998723,0,3,2,2019,4,0,29,40,1,0,0,11.69814551077658,11.69814551077658,0,0,0,0,71.5,1,1,0,7.647809602881213,0,57.06,57.76,51.83,57.2,10,1,1,0,0,11,2,5,1,450.5,2405065.245376841,1446486.400697874,526363.6575452979,0,7305.973599819406 -8672,10708,19417,-9,19416,19415,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-944.3093959426194,0,1,1,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,656,32441.07861560276,0,0,0,821.1352108190223 -8673,10709,19418,19419,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,29,-11,-16.39561864024178,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.01,52.88,57.16,56.15,0,1,1,0,0,6,1,3,1,1982.5,990012.5315280032,508974.4309223472,372775.2297233336,0,2843.237796244689 -8673,10709,19419,19418,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.124472478431516,8.267586952954,29,11,17.82300918322307,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,8.290411539141909,8.328403170837817,57.16,56.15,46.01,52.88,8.333333333333334,1,1,0,0,0,1,3,1,1982.5,990012.5315280032,508974.4309223472,372775.2297233336,0,2843.237796244689 -8674,10710,19420,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.398009227214509,6.295911644368991,0,0,-855.4728029956894,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.220733918695644,5.550539003881337,47.96,30.92,-9,-9,10,1,1,0,0,0,12,2,1,414,327172.6903181588,-65835.59945021686,187632.4123625321,0,1315.323265818039 -8675,10711,19421,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,6.897768986301799,6.942236018866804,0,0,0,-926.6475012257359,0,2,2,2019,7,0,16,21,1,0,0,6.638090211993873,6.638090211993873,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,13,2,1,2385.5,-24823.7985823687,0,0,0,1978.573496098008 -8675,10711,19422,-9,19421,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.1553217472309,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,2385.5,-24823.7985823687,0,0,0,1978.573496098008 -8676,10712,19423,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.892836178004593,7.775961212188786,0,0,-1011.909065049764,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.733509173917234,8.213664238853704,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,128,1240471.52858145,420512.8762442445,207155.0940796967,0,1747.560972438748 -8677,10713,19424,19428,-9,-9,1,1,46,0,4,0,2,2,-9,0,4,7.358725841855791,7.769753098867703,0,19,10,17.54881524833944,0,2,2,2019,9,0,39,30,1,1,0,6.229821739204041,6.229821739204041,0,0,0,0,0,1,1,0,0,0,53,55,64.23999999999999,31.12,8,2,3,0,0,1,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8677,10713,19425,-9,19428,19424,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-964.1930475767284,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8677,10713,19426,-9,19428,19424,1,0,12,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1159.638129476584,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8677,10713,19427,-9,19428,19424,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-928.5678427929,-9,2,2,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,66.02,43.89,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8677,10713,19428,19424,-9,-9,1,0,36,0,4,0,2,2,-9,0,4,0,0,0,6,-10,-117.148502466918,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.23999999999999,31.12,53,55,8.333333333333334,2,3,0,0,0,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8677,10713,19429,-9,19428,19424,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1012.512774737185,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,2,0,872.5,-114768.2272766716,17773.54134528653,0,0,1854.060166174365 -8678,10714,19430,19431,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.81233459679858,8.88915475991057,0,1,3,-12.03089123373819,-9,-9,-9,2019,7,1,43,0,1,1,0,19.4039433602157,19.4039433602157,0,0,0,1.909057564477187,0,0,0,0,0,0,51.83,57.2,51.14,60.45,6.666666666666667,1,1,0,0,9,5,5,1,611.5,1693120.618158004,1515187.039586877,153900.34093823,59513.70418753634,4058.492626666454 -8678,10714,19431,19430,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.747412891913626,8.608425828949647,0,1,-3,-11.33235806415463,0,2,2,2019,12,0,48,60,1,0,0,16.61784025326708,16.61784025326708,0,0,0,0,0,0,0,0,0,0,51.14,60.45,51.83,57.2,8.333333333333334,1,1,0,0,7,5,5,1,611.5,1693120.618158004,1515187.039586877,153900.34093823,59513.70418753634,4058.492626666454 -8679,10715,19432,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,8.194294527473232,7.925424341531354,0,0,0,-993.9243771901108,0,-9,-9,2019,7,0,60,70,1,0,0,7.415349294799876,7.415349294799876,0,0,0,0,0,1,1,0,2.335562947518955,0,60.02,56.42,-9,-9,10,1,1,0,0,13,2,4,0,204,666477.5786729527,371419.816903678,182090.6849949347,0,2059.33434333539 -8680,10716,19433,19434,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.178035173508023,7.905752051115306,0,6,-19,-42.63206441979449,0,3,3,2019,6,0,40,40,1,0,0,8.938855417129002,8.938855417129002,0,0,0,0,0,1,1,0,0,0,54,54,46.84,37.12,8.333333333333334,1,1,0,0,8,11,3,1,309,182163.43863886,205292.0055336528,0,0,2399.94210963314 -8680,10716,19434,19433,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.526880765511784,4.442406718799418,6,19,155.8296321158022,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,3.077923419795781,4.790381683904632,46.84,37.12,54,54,10,1,1,0,0,0,11,3,1,309,182163.43863886,205292.0055336528,0,0,2399.94210963314 -8681,10717,19435,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-976.0339465614167,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.19,23.35,-9,-9,5,1,1,0,0,0,7,1,0,502,-212200.0387817481,0,0,0,1501.102397957858 -8682,10718,19436,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.290657656407315,6.522576542676154,0,0,-1077.56734603833,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.36587397860113,54,43,-9,-9,7,1,1,0,0,0,5,2,1,253,211480.558947644,-3858.104545047769,206694.8736822928,0,848.071792985175 -8683,10719,19437,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,3,0,0,0,0,0,-965.882123365699,0,3,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.38,52.53,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,82,49238.7655348695,0,0,0,1551.56404965757 -8684,10720,19438,19439,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.821453599891999,6.109888644306922,30,9,-33.36433075521717,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.958021862377118,52.83,26.08,50,49,10,3,4,0,1,9,8,3,0,515,689003.1609040261,352239.6614077066,360071.7237939988,0,1635.129966289041 -8684,10720,19439,19438,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.018968158528439,7.858236668160547,0,11,0,31.09511570316107,0,-9,-9,2019,10,0,40,-9,1,1,0,10.32423315080663,10.32423315080663,0,0,0,0,0,1,1,0,0,0,50,49,52.83,26.08,7,3,4,0,0,1,8,3,0,515,689003.1609040261,352239.6614077066,360071.7237939988,0,1635.129966289041 -8685,10721,19440,19443,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,0,0,0,16,9,-75.97805254900254,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,47.29,55.39,10,1,1,1,0,10,12,2,0,819,-52625.19808993618,0,74402.67059895032,33229.97117906161,2510.30853517302 -8685,10721,19441,-9,19443,19440,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.1683470331308,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,2,0,819,-52625.19808993618,0,74402.67059895032,33229.97117906161,2510.30853517302 -8685,10721,19442,-9,19443,19440,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-979.0825450873259,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,0,819,-52625.19808993618,0,74402.67059895032,33229.97117906161,2510.30853517302 -8685,10721,19443,19440,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,4.874170700891226,5.172931126843137,0,16,0,-82.97359851495928,0,1,2,2019,13,1,2,2,1,1,0,7.437114878468688,7.437114878468688,0,0,0,0,71.5,1,1,0,0,0,47.29,55.39,59.53,56.44,6.666666666666667,1,1,0,1,11,12,2,0,819,-52625.19808993618,0,74402.67059895032,33229.97117906161,2510.30853517302 -8685,10721,19444,-9,19443,19440,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.101832602528,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,819,-52625.19808993618,0,74402.67059895032,33229.97117906161,2510.30853517302 -8686,10722,19445,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,0,0,0,0,0,-963.6841087767381,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,-9,-9,5,1,1,1,0,0,13,1,0,211,-135998.4356156118,0,0,0,1170.662769118513 -8686,10723,19446,-9,-9,19445,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1112.267619543817,-9,3,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1090,0,0,0,0,0 -8687,10724,19447,19448,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.717668991759084,7.017271171883729,46,3,64.034052630237,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.922048525965778,7.090491428472156,44.49,61.79,55.59,43.19,6.666666666666667,1,1,0,0,2,4,2,1,578.5,662384.0138710391,440759.1757956794,156385.1196239671,0,2196.745458970312 -8687,10724,19448,19447,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.357594885637756,6.740017903022697,46,-3,69.40733325548624,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.377419756940283,6.269992051437941,55.59,43.19,44.49,61.79,1.666666666666667,1,1,0,0,0,4,2,1,578.5,662384.0138710391,440759.1757956794,156385.1196239671,0,2196.745458970312 -8688,10725,19449,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.465266694804989,7.498468700191426,0,0,-1023.311503325596,0,2,1,2019,29,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,4.135277668718588,7.407209891741516,25.89,27.44,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,139,467169.7689971035,216404.3297490836,134239.4828885075,0,1538.368471664996 -8689,10726,19450,-9,19451,19453,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.239795222037,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,235.5,85085.76091367699,36316.094707633,144648.616250798,94039.35977820339,2555.450860674607 -8689,10726,19451,19453,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.62788584961223,7.978543357279608,0,14,-3,-57.50502155712346,0,2,2,2019,6,0,21,21,1,0,0,15.73721951909233,15.73721951909233,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,9,5,4,1,235.5,85085.76091367699,36316.094707633,144648.616250798,94039.35977820339,2555.450860674607 -8689,10726,19452,-9,19451,19453,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.623082267885,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,235.5,85085.76091367699,36316.094707633,144648.616250798,94039.35977820339,2555.450860674607 -8689,10726,19453,19451,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.389856229511357,8.139971187952899,0,14,3,-16.71284377796377,0,2,2,2019,7,0,44,45,1,0,0,8.372465103854577,8.372465103854577,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,235.5,85085.76091367699,36316.094707633,144648.616250798,94039.35977820339,2555.450860674607 -8690,10727,19454,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.455748549725008,6.848495990920254,0,0,-922.135034723442,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,3.029618530537217,0,0,1,1,0,0,6.718640647494413,56.01,17.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,616,381242.0137128854,60029.55723905126,93505.03502132,0,1470.885779353189 -8691,10728,19455,19456,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.852966002920033,5.385175283219679,8,-2,-11.39553595801863,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.510569104213327,6.106130823198076,53.39,52.35,53.77,47.24,8.333333333333334,1,1,0,0,5,1,3,1,1691.5,802543.0788393695,461316.0713348488,207941.2909643431,0,4298.174160989213 -8691,10728,19456,19455,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.000698125824506,8.003859129889177,8,2,-65.3496372955844,0,1,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8053426826862,7.570783003702171,53.77,47.24,53.39,52.35,6.666666666666667,1,1,0,0,5,1,3,1,1691.5,802543.0788393695,461316.0713348488,207941.2909643431,0,4298.174160989213 -8692,10729,19457,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.391107317264492,7.577847168181701,0,0,-1046.737120732884,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.942487158003279,7.341238974538823,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,747,688512.5979245842,565868.2198727395,273768.5190186853,54191.1470486972,2196.413098253724 -8692,10730,19458,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,5.918599307560758,5.883093166527351,0,0,0,-1029.869235931727,0,3,3,2019,6,0,40,40,1,0,0,1.049518767198979,1.049518767198979,0,0,0,0,0,0,0,0,7.159897388492932,0,62.39,56.71,-9,-9,10,1,1,0,0,12,13,2,1,1471,125237.2605270062,46064.62809787185,0,0,1165.405396362461 -8693,10731,19459,-9,19461,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-967.4185563670218,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,63.09,45.22,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,343,0,0,0,0,0 -8693,10732,19460,19461,-9,-9,1,1,67,0,1,0,3,3,-9,0,4,0,6.770707965823663,7.142367944592356,4,12,69.09482574922707,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.135421274848285,62.49,55.09,36.62,60.23,10,1,1,0,0,0,4,3,1,681,1126023.343638529,810934.9657558991,230385.4058649638,0,3114.969077882119 -8693,10732,19461,19460,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.113849566002823,8.577449854545041,7.183075141011366,4,-12,3.932365645657695,0,3,3,2019,11,2,23,38,1,2,0,16.85729179791872,16.85729179791872,0,0,0,0,0,1,1,0,0,7.470750661523809,36.62,60.23,62.49,55.09,8.333333333333334,1,1,0,0,9,4,3,1,681,1126023.343638529,810934.9657558991,230385.4058649638,0,3114.969077882119 -8693,10732,19462,-9,19461,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1038.420788788448,-9,1,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,681,1126023.343638529,810934.9657558991,230385.4058649638,0,3114.969077882119 -8694,10733,19463,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.107415540440986,8.413195935286655,0,0,0,-1015.955863257103,-9,2,2,2019,13,3,50,0,1,3,0,7.400091958426843,7.400091958426843,0,0,0,0,0,0,0,0,4.003723483045859,0,47.33,58,-9,-9,6.666666666666667,1,1,0,0,5,7,4,0,160,77145.69719148208,0,0,0,1847.597280772749 -8695,10734,19464,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.947163066941237,7.958511547329679,0,0,-1002.386723622412,0,2,3,2019,14,3,0,0,4,3,0,0,0,1,2.704481299408921,0,24.84783529165051,2,1,1,0,5.070138571805531,8.208766620601081,44.59,35.14,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,416,1271248.245866961,518861.249477073,436657.4290309642,0,1901.529027559369 -8696,10735,19465,19466,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,7,-8,-16.38124121697494,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.620530393820856,0,58.3,52.91,54,46,8.333333333333334,1,1,0,0,0,11,2,1,1968,2530.10175184891,16160.81106055269,0,0,1232.811447862023 -8696,10735,19466,19465,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.539972233035992,6.575038215292988,7,8,4.08179455147523,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,129.7439268381685,0,0,1,1,0,3.661492909162744,6.273753683687338,54,46,58.3,52.91,8,1,1,0,0,0,11,2,1,1968,2530.10175184891,16160.81106055269,0,0,1232.811447862023 -8697,10736,19467,19468,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,7.863866531382182,7.99342454380194,0,9,0,105.5218524609492,0,2,1,2019,10,1,35,30,1,1,0,8.390212499182612,8.390212499182612,0,0,0,0,0,0,0,0,3.276747618820048,0,49.35,59.64,57.16,56.15,6.666666666666667,2,3,0,0,7,8,5,1,685.5,261597.3996821317,55511.62418226972,354096.2393613141,247009.0521969895,3341.423610213573 -8697,10736,19468,19467,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.604474382562854,8.761316897093954,0,8,0,-73.02947822581017,0,3,2,2019,11,0,45,43,1,0,0,14.98701813229648,14.98701813229648,0,0,0,0,0,0,0,0,2.265674463315341,0,57.16,56.15,49.35,59.64,5,2,3,0,0,8,8,5,1,685.5,261597.3996821317,55511.62418226972,354096.2393613141,247009.0521969895,3341.423610213573 -8698,10737,19469,19470,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.916564646141447,8.981744518639074,0,3,-7,-65.09626538806276,-9,-9,-9,2019,16,6,41,0,1,6,0,26.48796336195861,26.48796336195861,0,0,0,0,0,0,0,0,4.507280201705896,0,28.96,61.34,45.32,54.77,8.333333333333334,1,1,0,0,3,12,5,1,199.5,1021141.569779235,590182.0741465602,445353.2479124775,172754.336339575,5304.426978534281 -8698,10737,19470,19469,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.448235736418642,8.501987427980227,0,3,7,84.37188181125735,0,2,2,2019,10,0,43,50,1,0,0,15.70487748507689,15.70487748507689,0,0,0,0,0,0,0,0,1.773486065627606,0,45.32,54.77,28.96,61.34,8.333333333333334,1,1,0,0,10,12,5,1,199.5,1021141.569779235,590182.0741465602,445353.2479124775,172754.336339575,5304.426978534281 -8699,10738,19471,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,5.761826452147051,5.714075180672378,0,0,-1044.457611987726,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.83917218496618,6.002538450371132,53.86,49.64,-9,-9,10,1,1,0,0,0,9,2,1,3194,693225.1471230236,75861.85600760829,329255.6288826152,0,801.8570018680067 -8700,10739,19472,19473,-9,-9,1,0,26,0,0,0,2,2,1,1,1,0,0,0,4,-3,46.58855268674505,-9,1,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,2.119872671111949,0,41.59,29.96,51.91,47.75,6.666666666666667,1,1,0,0,6,12,3,0,342.5,-54134.50378489352,-75498.76778718701,0,0,1834.739578909351 -8700,10739,19473,19472,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.450324260426004,8.369944187871678,0,4,3,-48.98892127038462,0,-9,-9,2019,7,0,40,40,1,0,0,11.52594532243713,11.52594532243713,0,0,0,0,0,1,1,0,0,0,51.91,47.75,41.59,29.96,6.666666666666667,1,1,0,0,3,12,3,0,342.5,-54134.50378489352,-75498.76778718701,0,0,1834.739578909351 -8701,10740,19474,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,7.786113425968524,7.451440690905936,0,0,0,-1135.666499285254,-9,3,2,2019,11,0,34,0,1,0,0,9.485874144878718,9.485874144878718,0,0,0,0,27,1,1,0,0,0,52.53,33.11,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,604,72869.05583117215,223186.7513670621,0,0,1263.089606086976 -8702,10741,19475,-9,19478,19477,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.8863257200343,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1067.5,1190270.018102233,959618.1605920405,147251.0165357374,113359.7259222619,3984.754177684576 -8702,10741,19476,-9,19478,19477,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.316309640943,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1067.5,1190270.018102233,959618.1605920405,147251.0165357374,113359.7259222619,3984.754177684576 -8702,10741,19477,19478,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.404798156495577,8.707692106957941,0,14,3,-15.20344682326366,0,2,3,2019,18,6,41,42,1,6,0,13.44738330711168,13.44738330711168,0,0,0,0,0,1,1,0,4.843682995634913,0,42.95,61.24,44.95,52.41,3.333333333333333,1,1,0,0,11,6,5,1,1067.5,1190270.018102233,959618.1605920405,147251.0165357374,113359.7259222619,3984.754177684576 -8702,10741,19478,19477,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.545131654749786,8.305905468725882,0,14,-3,-63.50596731934916,0,2,3,2019,16,5,36,37,1,5,0,13.66318121436661,13.66318121436661,0,0,0,0,0,1,1,0,3.320014575656169,0,44.95,52.41,42.95,61.24,3.333333333333333,1,1,0,0,11,6,5,1,1067.5,1190270.018102233,959618.1605920405,147251.0165357374,113359.7259222619,3984.754177684576 -8703,10742,19479,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,4,0,6.229148982413085,6.209287237882112,0,0,-993.8124542774342,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,4.439727076013055,0,23.74532053178765,0,1,1,0,2.090827787768581,6.073525631238646,39.42,49.51,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,2135,350509.7789467656,19750.18540180453,146158.2541940959,0,1575.316483839606 -8704,10743,19480,19481,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,8.221273272446661,8.326484200946261,8,-6,-146.25051368891,0,1,1,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,4.213001908267984,7.946064521368885,29.6,44.79,53,47,6.666666666666667,1,1,0,0,2,13,4,1,607.5,2043299.107295287,1040214.294935027,277881.2233401562,0,4989.190719914261 -8704,10743,19481,19480,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.890728647769779,8.006498187597275,8,6,37.53933100184606,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,.3825169677170255,0,0,1,1,0,0,8.036055160433181,53,47,29.6,44.79,7,1,1,0,0,0,13,4,1,607.5,2043299.107295287,1040214.294935027,277881.2233401562,0,4989.190719914261 -8705,10744,19482,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.878557731625807,6.945038991071463,0,0,0,-972.0464159180956,0,-9,-9,2019,10,1,16,16,1,1,0,7.385563745740741,7.385563745740741,0,0,0,0,14.5,1,1,0,0,0,37.74,52.94,-9,-9,3.333333333333333,2,3,0,1,9,5,2,0,396,0,0,0,0,413.7141199560494 -8706,10745,19483,19486,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.361133956249656,8.373179623103024,0,11,0,41.1990667101996,0,2,2,2019,8,1,20,18,1,1,0,21.74412732197991,21.74412732197991,0,0,0,0,0,0,0,0,7.315313283670935,0,57.06,57.76,54.2,57.49,10,1,1,0,0,11,10,5,1,631.25,864445.7816627927,423448.0280818501,551606.1221087137,328564.7924195863,5999.543274601232 -8706,10745,19484,-9,19483,19486,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.744136360605,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,631.25,864445.7816627927,423448.0280818501,551606.1221087137,328564.7924195863,5999.543274601232 -8706,10745,19485,-9,19483,19486,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.780605290547,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,631.25,864445.7816627927,423448.0280818501,551606.1221087137,328564.7924195863,5999.543274601232 -8706,10745,19486,19483,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,9.73556039682253,9.508038672682705,0,11,9,-161.4081511570885,0,2,2,2019,10,0,78,0,1,0,0,21.10145226029647,21.10145226029647,0,0,0,0,0,0,0,0,4.236568250623431,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,631.25,864445.7816627927,423448.0280818501,551606.1221087137,328564.7924195863,5999.543274601232 -8707,10746,19487,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.486754294140427,5.997237514734323,0,0,-1062.067163612293,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.553131173300241,5.671334457299736,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,383,42278.55169249809,-54673.9062459518,35400.48201285957,0,1292.153085898641 -8708,10747,19488,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,0,7.982677204048221,7.960504863627921,0,0,-994.4439926411569,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6955057049211,7.858621346662569,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,307,154888.235369788,295680.1435247089,0,0,1221.311483541023 -8708,10748,19489,-9,-9,19488,1,1,18,0,0,0,2,2,0,0,5,0,0,0,0,0,-888.7738844284713,-9,-9,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.4237372240536981,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,1213,-149905.475148194,0,0,0,772.5705104525923 -8709,10749,19490,19491,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.684727884485482,7.58127102925726,0,7,-2,-62.63517118275533,0,3,3,2019,10,0,20,14,1,0,0,13.77010127613463,13.77010127613463,0,0,0,0,0,0,0,0,2.116123530099993,0,47.72,49.51,57.33,53.46,6.666666666666667,1,1,0,0,7,5,5,1,497,1421465.407349023,1099246.648091752,432761.4069111023,0,4477.04936830292 -8709,10749,19491,19490,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.856154579679147,8.7462456328697,0,7,2,84.71163035300549,0,3,2,2019,8,0,40,40,1,0,0,18.42324411694663,18.42324411694663,0,0,0,0,0,0,0,0,8.126015829973388,0,57.33,53.46,47.72,49.51,8.333333333333334,1,1,0,0,7,5,5,1,497,1421465.407349023,1099246.648091752,432761.4069111023,0,4477.04936830292 -8709,10750,19492,-9,19490,19491,1,1,24,0,0,0,2,2,-9,0,4,8.095587107853927,7.900343212149771,0,0,0,-858.9748337382458,0,2,2,2019,8,0,40,40,1,0,1,8.189809601904056,8.189809601904056,0,0,0,0,0,0,0,0,1.619819401679308,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,5,4,1,578,176078.2433729762,152547.7511735534,0,0,1279.344411843887 -8709,10751,19493,-9,19490,19491,1,0,24,0,0,0,1,1,-9,0,4,8.112603644195003,8.084824126707042,0,0,0,-1052.771535039873,0,2,2,2019,14,3,46,50,1,3,1,8.148218332026559,8.148218332026559,0,0,0,0,0,0,0,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,658,-216436.8055188741,63671.3232059433,0,0,1639.806398253319 -8710,10752,19494,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.206188352185777,3.988285378271494,0,0,-933.3538233178309,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.560403984467734,4.146435272240886,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,2661,235696.1672526283,-86742.14821340222,140352.4717274015,0,1066.010990831084 -8711,10753,19495,-9,19496,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.2579866541975,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,469,406619.0920450863,0,540274.5911783099,105971.8507212544,1614.065447025388 -8711,10753,19496,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.614486023667983,7.650253465435184,0,0,0,-974.5167051717323,0,3,2,2019,3,0,35,34,1,0,0,6.418189557790625,6.418189557790625,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,469,406619.0920450863,0,540274.5911783099,105971.8507212544,1614.065447025388 -8711,10754,19497,-9,19496,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-986.6993418516295,1,1,-9,2019,12,0,0,12,2,0,1,0,0,0,0,0,.8854190575535803,0,1,1,0,.8813275133539018,0,37.61,56.99,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,1002,0,0,0,0,73.3400560083706 -8711,10755,19498,-9,19496,-9,1,1,19,0,1,0,2,2,-9,0,3,7.551373650197784,7.590163607768554,0,0,0,-845.4199565439583,0,1,-9,2019,5,0,40,40,1,0,1,3.39647008828459,3.39647008828459,0,0,0,0,0,1,1,0,.1670861199447053,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1787,-158761.1384089186,0,0,0,732.8640873830708 -8712,10756,19499,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.89609976144448,8.296934794559785,7.339984619624871,0,0,-1084.204948039207,0,3,2,2019,6,0,33,36,1,0,0,10.55837380177583,10.55837380177583,0,0,0,0,0,0,0,0,.9302892812873035,7.241396358701903,59.4,40.85,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,237,296917.4308728748,0,85813.15024696426,0,1692.335726424964 -8713,10757,19500,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-832.2781988186321,0,3,3,2019,15,4,0,15,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,35.22,-9,-9,8.333333333333334,1,1,0,0,5,11,1,0,485,-257310.3050158372,0,0,0,3.004536555066124 -8713,10758,19501,-9,19500,-9,1,1,34,0,0,0,2,2,-9,0,4,0,0,0,0,0,-905.5384585844309,0,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,11,1,0,395,0,0,0,0,1338.611932178519 -8714,10759,19502,19505,-9,-9,1,0,39,0,2,0,3,3,-9,0,5,0,0,0,4,3,-51.40322853790025,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,62.39,56.71,8.333333333333334,2,3,0,0,0,2,3,1,426.75,240200.154167521,0,97008.54295226354,82549.01381546646,2272.598673394872 -8714,10759,19503,-9,19502,19505,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1181.273794108135,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,426.75,240200.154167521,0,97008.54295226354,82549.01381546646,2272.598673394872 -8714,10759,19504,-9,19502,19505,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.2892821015835,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,426.75,240200.154167521,0,97008.54295226354,82549.01381546646,2272.598673394872 -8714,10759,19505,19502,19507,19506,1,1,36,0,2,0,1,1,-9,0,5,8.56481385167918,8.502292559980726,0,4,-3,28.87713971766342,-9,2,2,2019,0,0,40,0,1,0,0,12.44759408429997,12.44759408429997,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.38,53.47,6.666666666666667,2,3,0,0,10,2,3,1,426.75,240200.154167521,0,97008.54295226354,82549.01381546646,2272.598673394872 -8714,10760,19506,19507,-9,-9,1,1,74,0,2,0,2,2,-9,0,3,0,0,0,37,15,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.05,47.49,52.72,55.58,8.333333333333334,2,3,0,0,0,2,1,1,680,246135.6459377363,42646.60075040496,0,0,1233.617463256128 -8714,10760,19507,19506,-9,-9,1,0,59,0,2,0,2,2,-9,0,5,0,0,0,40,-15,0,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,49.05,47.49,8.333333333333334,2,3,0,0,0,2,1,1,680,246135.6459377363,42646.60075040496,0,0,1233.617463256128 -8715,10761,19508,19509,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.006856144895726,7.182799573760774,46,10,.7642808161682169,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.293879424741784,6.961260902569181,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,113,475149.5497631656,160366.9465300623,103719.2159505897,0,1436.261031239243 -8715,10761,19509,19508,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.511928447480728,4.359393285474011,6,-10,40.4980947517769,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.468878413101956,4.434072411799781,57.16,56.15,58.89,48.6,10,1,1,0,0,0,11,2,1,113,475149.5497631656,160366.9465300623,103719.2159505897,0,1436.261031239243 -8716,10762,19510,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.967471986476951,9.219422741999876,0,0,0,-946.8340774605425,0,2,2,2019,13,3,50,50,1,3,0,25.49575048034282,25.49575048034282,0,0,0,0,0,1,1,0,0,0,43.19,58.53,-9,-9,1.666666666666667,3,4,0,0,9,8,5,1,317,-76088.75816635348,0,0,0,4113.332575070453 -8716,10763,19511,-9,-9,19510,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1060.035259152884,0,2,2,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.06,41.77,-9,-9,6.666666666666667,3,4,1,0,0,8,1,1,390,81578.22308080929,0,0,0,44.64555842573066 -8716,10764,19512,-9,-9,19510,1,1,29,0,0,0,2,2,-9,0,4,7.955614080093097,7.938077592491916,0,0,0,-902.3830927263783,0,2,2,2019,10,0,36,0,1,1,1,10.6167316118946,10.6167316118946,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,1918,11713.30797431261,-4493.887694482626,0,0,1756.895153369437 -8717,10765,19513,19514,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,9,-8,38.39814790220956,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,52.71,42.05,58.8,8.333333333333334,1,1,0,0,4,2,2,1,970,243014.4161972268,0,225348.3986171831,0,1473.976989013593 -8717,10765,19514,19513,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,3.936076225014056,4.350887148319651,9,8,-59.23482581041806,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,3.585790149860622,42.05,58.8,51.81,52.71,6.666666666666667,1,1,0,1,1,2,2,1,970,243014.4161972268,0,225348.3986171831,0,1473.976989013593 -8718,10766,19515,19516,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.975970551214925,8.046628810456491,0,13,0,83.05614477910572,0,3,3,2019,7,0,35,35,1,0,0,9.321825514868765,9.321825514868765,0,0,0,0,7,1,1,0,0,0,49.52,54.09,47,28.42,6.666666666666667,1,1,0,0,11,12,3,0,267,475732.2052161047,222587.0661833252,140876.5366752846,0,1748.476628845879 -8718,10766,19516,19515,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,13,0,19.60804793900613,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,28.42,49.52,54.09,8.333333333333334,1,1,0,0,1,12,3,0,267,475732.2052161047,222587.0661833252,140876.5366752846,0,1748.476628845879 -8719,10767,19517,19518,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.960373826933516,8.937412234043519,0,4,4,-125.6616057126978,0,-9,-9,2019,7,0,45,45,1,0,0,23.875924077639,23.875924077639,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,366,708594.1434985932,728830.3672549002,271773.3947542283,121019.8002568651,5011.64253788915 -8719,10767,19518,19517,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.900286845080155,8.435603692860825,0,4,-4,-5.055904051404061,0,2,2,2019,12,0,55,50,1,0,0,13.86871286585007,13.86871286585007,0,0,0,0,0,0,0,0,2.786948580915238,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,366,708594.1434985932,728830.3672549002,271773.3947542283,121019.8002568651,5011.64253788915 -8720,10768,19519,19521,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.272128932304502,8.347768366123317,0,7,13,113.573637553399,0,-9,-9,2019,8,0,40,46,1,0,0,15.30459589711178,15.30459589711178,0,0,0,0,0,0,0,0,0,0,57.06,57.76,36.45,62.92,8.333333333333334,1,1,0,0,10,4,4,0,613.5,45383.41695299867,67161.36947012552,181029.1970636483,129238.8618001319,3442.134834441908 -8720,10768,19520,-9,19521,19519,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.120920894476,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,613.5,45383.41695299867,67161.36947012552,181029.1970636483,129238.8618001319,3442.134834441908 -8720,10768,19521,19519,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.299782222107593,8.419035061525866,0,7,-13,-65.42115784887287,0,2,2,2019,15,3,42,50,1,3,0,10.02533295658924,10.02533295658924,0,0,0,0,0,0,0,0,0,0,36.45,62.92,57.06,57.76,1.666666666666667,1,1,0,0,8,4,4,0,613.5,45383.41695299867,67161.36947012552,181029.1970636483,129238.8618001319,3442.134834441908 -8720,10768,19522,-9,19521,19519,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.421317083824,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,613.5,45383.41695299867,67161.36947012552,181029.1970636483,129238.8618001319,3442.134834441908 -8721,10769,19523,19524,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.271747574498267,8.077903354080293,4.566442091056271,2,-5,85.45144266829944,-9,-9,-9,2019,9,0,70,0,1,1,0,7.002183609935558,7.002183609935558,0,0,0,0,0,1,1,0,0,4.996886581042722,53,55,32.42,64.81,8,4,1,0,0,1,4,4,1,218.5,267859.4398367761,250021.4657875244,120421.0669254813,104479.3398025253,5134.990178784323 -8721,10769,19524,19523,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.5193956545034,8.544686224536942,0,2,5,-19.58074401026718,0,3,3,2019,27,10,60,60,1,10,0,10.97334053012318,10.97334053012318,0,0,0,0,0,1,1,0,0,0,32.42,64.81,53,55,8.333333333333334,1,1,0,0,7,4,4,1,218.5,267859.4398367761,250021.4657875244,120421.0669254813,104479.3398025253,5134.990178784323 -8722,10770,19525,19526,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-1,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,5,1,1,2569,157496.3474550008,0,145443.9069566211,0,450.76588638162 -8722,10770,19526,19525,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,49,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,53,47,51,46,7,1,1,0,0,0,5,1,1,2569,157496.3474550008,0,145443.9069566211,0,450.76588638162 -8723,10771,19527,19528,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.474099740140614,8.739126159193424,0,9,-12,-57.93559761770677,0,2,3,2019,12,0,60,60,1,0,0,9.408475408075889,9.408475408075889,0,0,0,0,0,0,0,0,.776145382121644,0,45.91,59.89,57.33,53.46,8.333333333333334,1,1,0,0,7,7,5,1,647.5,300474.2369471941,8862.056299702948,180730.36265992,102424.1824954499,3442.913474834816 -8723,10771,19528,19527,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.373828561775863,8.429325340366278,0,8,12,67.66619947911721,0,2,2,2019,11,0,50,60,1,0,0,10.6446088178464,10.6446088178464,0,0,0,0,0,0,0,0,.208542847796563,0,57.33,53.46,45.91,59.89,8.333333333333334,1,1,0,0,8,7,5,1,647.5,300474.2369471941,8862.056299702948,180730.36265992,102424.1824954499,3442.913474834816 -8724,10772,19529,19530,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.86953944755176,7.761932184136398,0,6,0,141.6931810127303,0,3,3,2019,11,0,38,40,1,0,0,7.312889554180858,7.312889554180858,0,0,0,0,0,0,0,0,0,0,43.71,56.91,54.96,53.17,1.666666666666667,1,1,0,1,5,2,4,0,284,25267.1581890245,191218.7276151309,0,0,2267.036503672733 -8724,10772,19530,19529,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.001023682256326,7.934135753868111,0,6,0,26.0715413216858,0,-9,-9,2019,11,0,38,38,1,0,0,7.483196173702149,7.483196173702149,0,0,0,0,0,0,0,0,0,0,54.96,53.17,43.71,56.91,8.333333333333334,1,1,0,0,3,2,4,0,284,25267.1581890245,191218.7276151309,0,0,2267.036503672733 -8725,10773,19531,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.114638941854825,7.900853895560101,0,0,-1053.478592173273,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.200378601866214,7.921483985846455,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,10,4,1,320,1088962.654610876,477794.0437337885,151448.2001731516,0,1506.458222512687 -8726,10774,19532,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.612400498910455,8.752688519950393,0,0,0,-881.2674238040489,-9,-9,-9,2019,12,1,38,0,1,1,0,15.15591796078051,15.15591796078051,0,0,0,0,0,0,0,0,0,0,37.68,46.27,-9,-9,5,1,1,0,0,6,8,5,0,595,31731.67892549097,44548.09520948037,0,0,1833.96005943305 -8727,10775,19533,19534,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.567090798075254,5.397589095817491,62,-8,51.26086480063138,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.408222252390395,53,44,72.59,14.07,8,1,1,0,0,0,2,2,1,427,123977.1742455763,-62532.75820260841,126227.9514816155,0,1059.347533018838 -8727,10775,19534,19533,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,62,8,128.4047180055697,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,13.47820654786968,0,0,1,1,0,0,0,72.59,14.07,53,44,10,1,1,0,0,0,2,2,1,427,123977.1742455763,-62532.75820260841,126227.9514816155,0,1059.347533018838 -8728,10776,19535,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.306111909376676,7.361353991648642,0,0,0,-951.539722166838,0,2,2,2019,11,0,17,15,1,0,0,12.02839221987408,12.02839221987408,0,0,0,0,0,0,0,0,0,0,49.18,54.46,-9,-9,6.666666666666667,1,1,0,0,4,13,3,1,947,926.0772485176985,79431.495918325,0,0,391.7168050465475 -8729,10777,19536,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.804051978284352,8.533078380978889,0,4,-6,-23.52415676862398,0,3,2,2019,24,12,38,38,1,12,0,15.97931337475993,15.97931337475993,0,0,0,0,0,0,0,0,4.264614654120136,0,32.38,61.1,46.54,48.69,10,1,1,0,0,11,5,5,1,453,2199208.798268696,1471370.919198463,286697.0860877943,0,2134.518462884156 -8729,10778,19537,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.979981629316981,9.327379543706865,0,4,6,31.48822442248819,0,3,2,2019,9,0,55,43,1,0,0,19.14914796881194,19.14914796881194,0,0,0,0,0,0,0,0,3.121600058755482,0,46.54,48.69,32.38,61.1,6.666666666666667,1,1,0,0,11,5,5,1,468,161614.883888326,67809.4774455447,159487.0556245539,0,3477.250792107093 -8730,10779,19538,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.590905133213484,8.469457681245109,0,0,0,-1047.089576817959,0,-9,-9,2019,9,0,44,43,1,0,0,13.47851668828324,13.47851668828324,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,491,59347.92698130636,128529.2985915507,0,0,2166.990212802088 -8731,10780,19539,-9,19541,19540,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1059.959203439404,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,877.5,406659.2112282047,211561.7905963178,180535.7687444158,91571.83139865962,4701.204046391561 -8731,10780,19540,19541,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.191454415261081,9.15764089519007,0,20,10,-50.88110695359575,0,2,2,2019,17,4,70,53,1,4,0,16.82062540176767,16.82062540176767,0,0,0,0,0,1,1,0,0,0,40.99,36.66,35.67,64.46000000000001,8.333333333333334,1,1,0,1,5,2,5,1,877.5,406659.2112282047,211561.7905963178,180535.7687444158,91571.83139865962,4701.204046391561 -8731,10780,19541,19540,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.284070081149781,6.867780703001809,4.819095287223919,20,-10,-45.33012555398081,0,2,2,2019,15,4,23,23,1,4,0,6.350652236553208,6.350652236553208,0,0,0,0,0,1,1,0,4.931978730868749,0,35.67,64.46000000000001,40.99,36.66,6.666666666666667,1,1,0,0,7,2,5,1,877.5,406659.2112282047,211561.7905963178,180535.7687444158,91571.83139865962,4701.204046391561 -8731,10780,19542,-9,19541,19540,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.748032189206,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,877.5,406659.2112282047,211561.7905963178,180535.7687444158,91571.83139865962,4701.204046391561 -8732,10781,19543,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.802058465788019,7.801618565580039,0,0,0,-888.2077048253437,0,-9,-9,2019,20,9,33,35,1,9,0,9.80457903241388,9.80457903241388,0,0,0,0,0,1,0,1,1.943069626258664,0,57.29,22.49,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,1016,-49536.90447449429,67427.30570923799,84817.92571675508,55925.64132419403,1364.232910576084 -8732,10782,19544,-9,19543,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1002.493993846136,0,3,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,632,-39257.34532681228,0,0,0,111.2092631006404 -8733,10783,19545,-9,-9,-9,1,0,36,1,4,0,3,3,-9,1,4,0,0,0,0,0,-1038.717400072658,0,2,3,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.33,46.98,-9,-9,8.333333333333334,1,1,1,0,1,13,1,0,662.5,-13705.80680164179,0,0,0,2894.005177197184 -8733,10783,19546,-9,19545,-9,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-979.2335238679495,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,662.5,-13705.80680164179,0,0,0,2894.005177197184 -8733,10783,19547,-9,19545,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-834.9302295453527,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,662.5,-13705.80680164179,0,0,0,2894.005177197184 -8733,10783,19548,-9,19545,-9,1,0,16,1,4,0,3,3,-9,0,4,0,0,0,0,0,-957.7548665700357,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,46.54,-9,-9,5,1,1,1,1,0,13,1,0,662.5,-13705.80680164179,0,0,0,2894.005177197184 -8734,10784,19549,19551,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,7.690341225144799,7.912883572817639,0,11,2,58.76381216726932,-9,-9,3,2019,6,1,40,0,1,1,0,5.660369157899156,5.660369157899156,0,0,0,0,0,1,1,0,2.686066802155982,0,30.22,61.23,47.01,58,10,2,3,0,0,9,4,3,1,586.5,-45605.72541708575,0,0,0,2089.047194461108 -8734,10784,19550,-9,19551,19549,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.715480414001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,586.5,-45605.72541708575,0,0,0,2089.047194461108 -8734,10784,19551,19549,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.14871305169173,7.125747767392975,0,11,-2,59.36749493781797,-9,-9,-9,2019,10,0,16,0,1,0,0,10.11541754853852,10.11541754853852,0,0,0,0,0,1,1,0,0,0,47.01,58,30.22,61.23,8.333333333333334,2,3,0,0,9,4,3,1,586.5,-45605.72541708575,0,0,0,2089.047194461108 -8734,10784,19552,-9,19551,19549,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.1070578119035,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,1,586.5,-45605.72541708575,0,0,0,2089.047194461108 -8735,10785,19553,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.27732407852848,8.065418143924949,0,0,-940.6283357513158,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.012158577156119,8.397946298875599,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,125,1444557.503385185,1142459.304538117,0,0,2613.56136011391 -8736,10786,19554,19555,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.570089302629979,7.762032631783835,0,2,-11,-48.85364133164373,0,-9,-9,2019,8,0,37,37,1,0,0,6.681465164313919,6.681465164313919,0,0,0,0,0,1,0,1,0,0,61.94,37.61,56.19,46.16,8.333333333333334,1,1,0,0,1,13,3,0,569,280688.8350219715,356482.5892091192,163640.1806114778,51045.65714355479,1466.663332850709 -8736,10786,19555,19554,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,6.991241929648536,7.11409450120401,0,2,11,39.28328832094785,0,3,3,2019,8,0,20,20,1,0,0,6.32373544618912,6.32373544618912,0,0,0,0,0,1,0,1,0,0,56.19,46.16,61.94,37.61,8.333333333333334,1,1,0,0,9,13,3,0,569,280688.8350219715,356482.5892091192,163640.1806114778,51045.65714355479,1466.663332850709 -8737,10787,19556,19557,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,5.319590717281264,5.627930167396009,45,0,-121.2812920223918,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.338722526551255,5.445335400174265,48.87,58.55,35.79,52.24,8.333333333333334,1,1,0,0,0,2,2,1,1547.5,17255.39501789495,0,174040.3007489954,0,1945.258263207465 -8737,10787,19557,19556,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.77343192171604,6.905207876527071,45,0,70.17342375842591,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.728563305330834,6.697634741368172,35.79,52.24,48.87,58.55,8.333333333333334,1,1,0,0,1,2,2,1,1547.5,17255.39501789495,0,174040.3007489954,0,1945.258263207465 -8738,10788,19558,19559,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.399007921839321,8.328890106854251,0,7,-4,-95.59225163353624,0,3,-9,2019,6,0,44,44,1,0,0,11.46461253879752,11.46461253879752,0,0,0,0,0,0,0,0,0,0,64.38,41.86,53.05,28.78,1.666666666666667,1,1,0,0,8,10,4,1,754,-43010.87502093123,34838.39815099108,0,0,2338.499705857122 -8738,10788,19559,19558,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.353604419777906,7.170301762423922,0,7,4,-29.98647502158602,0,-9,-9,2019,14,2,22,22,1,2,0,7.858368779119003,7.858368779119003,0,0,0,0,0,0,0,0,0,0,53.05,28.78,64.38,41.86,8.333333333333334,1,1,0,0,8,10,4,1,754,-43010.87502093123,34838.39815099108,0,0,2338.499705857122 -8739,10789,19560,19561,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,50.72,20.02,52,47,6.666666666666667,1,1,0,0,0,13,1,0,740,419083.6800613907,86052.607626624,371060.0671287521,0,1994.648825717569 -8739,10789,19561,19560,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,52,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,21.5055532999582,0,0,1,1,0,0,0,52,47,50.72,20.02,7,1,1,0,0,0,13,1,0,740,419083.6800613907,86052.607626624,371060.0671287521,0,1994.648825717569 -8740,10790,19562,-9,19564,19563,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-854.5453007679498,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,5,1,608,1377034.73520409,803725.6469448638,336803.0425047459,35509.20855230434,4493.896638463622 -8740,10790,19563,19564,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.935416907536323,9.001292789475899,0,6,4,-60.73197636453428,0,-9,-9,2019,9,0,40,40,1,1,0,20.9905797812873,20.9905797812873,0,0,0,0,0,0,0,0,6.479877155179461,0,54,54,57.16,56.15,8,1,1,0,0,1,7,5,1,608,1377034.73520409,803725.6469448638,336803.0425047459,35509.20855230434,4493.896638463622 -8740,10790,19564,19563,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,8.240101484706264,8.106707493570624,0,31,-4,112.0969985104841,0,3,2,2019,7,0,120,120,1,0,0,4.031764824899984,4.031764824899984,0,0,0,0,0,0,0,0,3.702895799947227,0,57.16,56.15,54,54,6.666666666666667,1,1,0,0,9,7,5,1,608,1377034.73520409,803725.6469448638,336803.0425047459,35509.20855230434,4493.896638463622 -8740,10791,19565,-9,19564,19563,1,0,25,0,1,0,2,2,-9,0,5,7.603355875463474,7.935504749288279,0,0,0,-1063.898535029286,0,3,2,2019,9,0,32,40,1,0,1,7.636260917757111,7.636260917757111,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,209,19980.95582430245,0,0,0,930.2606879454968 -8741,10792,19566,19567,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.876073219417778,8.945669155371759,0,8,0,9.090722998065136,0,1,2,2019,5,0,12,10,1,0,0,62.89218409073513,62.89218409073513,0,0,0,0,0,0,0,0,7.662759232858447,0,55.96,49.93,52.31,58.29,10,1,1,0,0,9,8,5,1,644.5,1133004.544392413,326818.809021215,700748.6127470973,44479.56610732449,5561.376628581919 -8741,10792,19567,19566,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.31224168348542,8.269029650951182,0,8,0,52.87138246214987,0,1,1,2019,7,0,15,15,1,0,0,27.26157132872741,27.26157132872741,0,0,0,0,0,0,0,0,3.081130148785864,0,52.31,58.29,55.96,49.93,0,1,1,0,0,9,8,5,1,644.5,1133004.544392413,326818.809021215,700748.6127470973,44479.56610732449,5561.376628581919 -8741,10793,19568,-9,19567,19566,1,0,20,0,0,1,1,0,0,0,3,0,6.316375846587809,6.297999643602085,0,0,-921.2998379991294,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.230404655302342,0,36.01,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,94,-24639.04606717116,0,0,0,313.3818110992095 -8742,10794,19569,19570,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.657893556822976,7.70322623225019,63,1,24.91757153936664,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.559595298089062,7.995880142392316,53.46,51.43,57.16,56.15,10,1,1,0,0,0,7,3,1,1509,735931.4477088168,338938.0343717842,524943.4798302443,0,1670.361133146723 -8742,10794,19570,19569,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,63,-1,104.2662077439569,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.122431637826744,0,57.16,56.15,53.46,51.43,10,1,1,0,0,0,7,3,1,1509,735931.4477088168,338938.0343717842,524943.4798302443,0,1670.361133146723 -8743,10795,19571,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,9.257496879826819,9.160628318327134,0,0,0,-942.2857631491092,0,2,2,2019,8,0,46,48,1,0,0,36.00972030177667,36.00972030177667,0,0,0,0,0,0,0,0,7.639107165710497,0,50.01,55.31,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,376,-21255.19764496598,0,0,0,5029.963103945201 -8744,10796,19572,19573,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.906439398814127,8.519473675109827,0,6,11,16.48113352729392,0,2,2,2019,7,0,40,40,1,0,0,16.61659628538451,16.61659628538451,0,0,0,0,0,0,0,0,0,0,62.39,56.71,39.11,56.52,10,1,1,0,0,7,4,5,0,1406.5,1533502.870380723,866007.0320856553,401481.1473474496,0,3307.944539486029 -8744,10796,19573,19572,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.547485876624147,7.661918281166711,0,6,-11,8.195992815034383,0,-9,-9,2019,15,4,42,37,1,4,0,5.655925107381486,5.655925107381486,0,0,0,0,7,0,0,0,0,0,39.11,56.52,62.39,56.71,5,1,1,0,0,6,4,5,0,1406.5,1533502.870380723,866007.0320856553,401481.1473474496,0,3307.944539486029 -8745,10797,19574,-9,19575,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.5167611699752,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,785,-74100.15837779004,0,0,0,643.8768890045963 -8745,10797,19575,-9,-9,-9,1,0,19,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1053.541664643091,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.43,56.37,-9,-9,5,1,1,0,0,1,11,1,0,785,-74100.15837779004,0,0,0,643.8768890045963 -8746,10798,19576,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.596139541858036,7.4582944631899,0,0,0,-937.0882211482381,-9,2,2,2019,4,0,30,0,1,0,0,6.370839908467175,6.370839908467175,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,101,44308.52170799232,-31378.80791054225,0,0,1364.15440027792 -8747,10799,19577,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.092270327906517,7.48793293754335,0,0,0,-1033.727411683849,0,2,1,2019,6,0,4,8,1,0,0,35.96907861265972,35.96907861265972,0,0,0,0,0,0,0,0,7.669754744879922,0,57.06,57.76,-9,-9,10,1,1,0,0,7,12,2,1,372,-38438.02567532792,0,32121.75953882722,45082.50465408929,1996.187541456496 -8748,10800,19578,19579,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.280277452520078,8.613642970401026,5.529414080276148,1,-1,153.9059435602603,-9,-9,-9,2019,11,0,43,0,1,0,0,12.91254730581479,12.91254730581479,0,0,0,0,0,0,0,0,5.922031508466879,5.585660021495618,59.88,45.37,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,388.5,868088.0338241889,641578.0800913104,138310.6894856005,0,3345.858863718264 -8748,10800,19579,19578,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.628737341222165,7.551581848450472,5.006381396948832,34,1,-16.61260327695901,-9,3,3,2019,10,0,20,0,1,0,0,10.7463168233374,10.7463168233374,0,0,0,0,2,0,0,0,5.268404493872361,5.557735795447787,54.2,57.49,59.88,45.37,6.666666666666667,1,1,0,0,13,2,4,1,388.5,868088.0338241889,641578.0800913104,138310.6894856005,0,3345.858863718264 -8749,10801,19580,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.957397644252098,7.596454768008361,6.968483798998814,0,0,-1068.079775743503,0,2,2,2019,7,0,60,55,1,0,0,1.762311883554907,1.762311883554907,1,4.06638176196425,0,31.37661984235393,0,1,1,0,2.591226996690164,7.089093355567623,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,380,382788.4658699142,133790.5641383633,221901.7591268862,0,2437.594518674365 -8750,10802,19581,19582,-9,-9,1,1,53,0,2,0,3,3,-9,0,3,8.271199947518927,8.277857943687337,0,31,2,54.28742069005009,0,3,3,2019,6,0,39,35,1,0,0,14.98113569275976,14.98113569275976,0,0,0,0,0,1,1,0,1.790101125773518,0,58.32,50.22,63.41,29.17,8.333333333333334,1,1,0,0,11,7,4,1,604,1018154.718813808,246725.7459271408,621560.4641802078,-4198.913940735936,2729.395445109938 -8750,10802,19582,19581,-9,-9,1,0,51,0,2,0,3,3,-9,0,2,7.942602210880854,7.770634323292577,0,31,-2,-140.3573656602459,0,2,2,2019,4,0,36,38,1,0,0,8.321865387514871,8.321865387514871,0,0,0,0,0,1,1,0,0,0,63.41,29.17,58.32,50.22,6.666666666666667,1,1,0,0,9,7,4,1,604,1018154.718813808,246725.7459271408,621560.4641802078,-4198.913940735936,2729.395445109938 -8750,10802,19583,-9,19582,19581,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-948.7780536451475,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,604,1018154.718813808,246725.7459271408,621560.4641802078,-4198.913940735936,2729.395445109938 -8750,10802,19584,-9,19582,19581,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.707387076158,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,4,1,604,1018154.718813808,246725.7459271408,621560.4641802078,-4198.913940735936,2729.395445109938 -8750,10803,19585,-9,19582,19581,1,1,24,0,2,0,2,2,-9,0,3,8.365967122936473,8.299959824903571,0,0,0,-982.3042752056646,0,3,3,2019,8,1,55,55,1,1,1,9.85254731376294,9.85254731376294,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,7,4,1,194,-136277.5842486868,0,0,0,1495.838664092884 -8751,10804,19586,19587,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.644584568644344,8.787954189042626,0,7,-19,92.34161137758215,0,3,2,2019,13,1,54,90,1,1,0,11.3896131060294,11.3896131060294,0,0,0,0,7,1,1,0,0,0,38.98,44.11,29.77,56.76,5,3,4,0,0,10,8,5,1,764,5614590.465178013,2178295.122537361,919498.945137277,0,4874.236025705888 -8751,10804,19587,19586,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.359372002280335,7.922838924963238,7,19,-91.11088430829901,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,8.137522140640636,29.77,56.76,38.98,44.11,5,1,1,0,0,0,8,5,1,764,5614590.465178013,2178295.122537361,919498.945137277,0,4874.236025705888 -8752,10805,19588,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,5.131091411734109,5.108748166365744,0,0,-1000.885527352991,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,.0107245130286877,2,1,1,0,6.710643300981221,5.42531471453579,65.63,42.66,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,260,-59747.05354503929,69291.71741458859,56483.52288069652,0,744.2437776216821 -8753,10806,19589,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.722765578935869,6.750109553322659,0,0,0,-996.4191691051284,0,-9,-9,2019,9,0,16,16,1,0,0,6.862067578562459,6.862067578562459,0,0,0,0,0,1,1,0,2.344559219905037,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,560,100473.2234426254,0,0,0,1530.358039631621 -8753,10806,19590,-9,19589,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-912.4817833108623,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,560,100473.2234426254,0,0,0,1530.358039631621 -8754,10807,19591,19592,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,52,-4,-90.06560859051274,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,5.48,1,1,0,0,0,42.22,45.38,52.23,29.33,8.333333333333334,1,1,0,0,5,2,2,1,483,17458.97040326742,90263.67959483746,0,0,1579.747794615411 -8754,10807,19592,19591,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,1.487000350203935,1.68120536155044,52,4,-13.60160519431656,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,5.439234727821614,0,0,1,1,0,0,1.763820239329941,52.23,29.33,42.22,45.38,6.666666666666667,1,1,0,0,3,2,2,1,483,17458.97040326742,90263.67959483746,0,0,1579.747794615411 -8755,10808,19593,19594,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.941126961274216,8.8533024958687,7,3,33.13975195014595,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.70822525831301,8.554384775499368,40.47,55.65,35.88,56.66,8.333333333333334,1,1,0,0,4,5,4,1,373.5,1916026.849411745,1439159.375624989,544388.3615945948,75559.27378255242,4995.719201882031 -8755,10808,19594,19593,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,45,-3,10.14109342654846,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,7.003941862101488,0,35.88,56.66,40.47,55.65,8.333333333333334,1,1,0,0,8,5,4,1,373.5,1916026.849411745,1439159.375624989,544388.3615945948,75559.27378255242,4995.719201882031 -8755,10809,19595,-9,19594,19593,1,1,36,0,0,0,2,2,-9,0,3,8.636110884127058,8.464608617432804,0,0,0,-991.3575736209539,0,1,1,2019,16,5,47,42,1,5,0,13.22401018206956,13.22401018206956,0,0,0,0,2,1,1,0,0,0,20.93,60.89,-9,-9,3.333333333333333,1,1,0,0,7,5,5,1,1715,116246.3538482906,-1618.817865562988,0,0,2288.49557618585 -8755,10810,19596,-9,19594,19593,1,1,33,0,0,0,2,2,-9,0,2,8.338746603302718,8.682297393840024,0,0,0,-1009.875160439147,0,1,1,2019,13,2,37,35,1,2,0,15.23157465691191,15.23157465691191,0,0,0,0,14.5,1,1,0,2.161185560539934,0,38.38,52.96,-9,-9,5,1,1,0,0,6,5,4,1,487,157914.4481764428,0,0,0,1846.383977989425 -8755,10811,19597,-9,19594,19593,1,1,31,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1049.762820355671,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.549370469423987,0,50,57,-9,-9,7,1,1,0,0,0,5,1,1,100,0,0,0,0,191.0687677015696 -8756,10812,19598,19599,-9,-9,1,1,61,0,3,0,3,3,-9,0,3,7.439307258805382,7.58144412888254,0,8,4,35.28615662502408,-9,3,2,2019,10,0,40,0,1,1,0,5.093868435210859,5.093868435210859,0,0,0,0,0,1,1,0,2.257848313861666,0,51,48,49,48,7,2,3,0,0,10,2,2,1,1158.333333333333,192409.0583156232,5002.1224037083,425013.3876011595,103433.353274919,948.1389070618588 -8756,10812,19599,19598,-9,-9,1,0,57,0,3,0,3,3,-9,0,3,0,0,0,8,-4,88.06807271636039,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,1,0,0,2,2,1,1158.333333333333,192409.0583156232,5002.1224037083,425013.3876011595,103433.353274919,948.1389070618588 -8756,10812,19600,-9,19599,19598,1,0,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-832.3500716897502,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.160945885354274,0,38,44,-9,-9,6.666666666666667,2,3,1,0,0,2,2,1,1158.333333333333,192409.0583156232,5002.1224037083,425013.3876011595,103433.353274919,948.1389070618588 -8756,10813,19601,19603,-9,-9,1,0,27,0,3,0,2,2,-9,0,5,0,0,0,10,-3,-141.346822827044,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.533545393543374,0,52.39,37.22,39.92,58.05,1.666666666666667,2,3,0,0,5,2,2,1,672,9709.039583942464,-61972.35446971549,0,0,1734.917363714053 -8756,10813,19602,-9,19601,19603,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.281915280904,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,672,9709.039583942464,-61972.35446971549,0,0,1734.917363714053 -8756,10813,19603,19601,19599,19598,1,1,30,0,3,0,2,2,-9,0,5,7.489540748612038,7.518925716558908,0,10,3,-123.7027936649777,0,3,3,2019,6,0,45,35,1,0,0,5.07150999927546,5.07150999927546,0,0,0,0,0,1,1,0,0,0,39.92,58.05,52.39,37.22,10,2,3,0,0,10,2,2,1,672,9709.039583942464,-61972.35446971549,0,0,1734.917363714053 -8756,10813,19604,-9,19601,19603,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.0123644704871,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,672,9709.039583942464,-61972.35446971549,0,0,1734.917363714053 -8757,10814,19605,-9,19606,19608,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.3424556638078,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,6,1,1,394.5,361253.2847425389,34127.02176979488,142903.0962578457,127050.9300718241,2408.838086533257 -8757,10814,19606,19608,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,0,0,0,9,1,0,1,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.00455513287003,0,55.09,55.87,51.73,58.82,8.333333333333334,4,2,0,0,5,6,1,1,394.5,361253.2847425389,34127.02176979488,142903.0962578457,127050.9300718241,2408.838086533257 -8757,10814,19607,-9,19606,19608,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.610869307922,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,1,1,394.5,361253.2847425389,34127.02176979488,142903.0962578457,127050.9300718241,2408.838086533257 -8757,10814,19608,19606,-9,-9,1,1,39,0,2,0,1,1,0,0,5,0,0,0,9,-1,0,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8.720675207222673,0,51.73,58.82,55.09,55.87,10,1,1,0,0,7,6,1,1,394.5,361253.2847425389,34127.02176979488,142903.0962578457,127050.9300718241,2408.838086533257 -8758,10815,19609,19611,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,7.087164271354735,7.324633579138695,5.607936951261489,16,18,32.8987167043206,0,3,1,2019,7,0,20,20,1,0,0,7.620477817710441,7.620477817710441,0,0,0,0,0,1,1,0,5.664146957144339,5.867086505894,55.71,40.47,58.16,48.06,5,1,1,0,1,7,10,3,1,271.3333333333333,2408419.716762761,1430053.480046568,842847.6321080974,0,2414.996021313575 -8758,10815,19610,-9,19611,19609,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1094.959214644123,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,271.3333333333333,2408419.716762761,1430053.480046568,842847.6321080974,0,2414.996021313575 -8758,10815,19611,19609,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.364914980191152,8.418508764081869,0,16,-18,-46.57305836548723,0,1,1,2019,13,1,38,39,1,1,0,12.93744484049044,12.93744484049044,0,0,0,0,0,1,1,0,0,0,58.16,48.06,55.71,40.47,6.666666666666667,1,1,0,1,10,10,3,1,271.3333333333333,2408419.716762761,1430053.480046568,842847.6321080974,0,2414.996021313575 -8759,10816,19612,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.471433695042908,8.081483698600554,0,0,-974.5908661689618,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.856442458050197,7.675568961234732,58.75,48.57,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,484,223362.6983177363,197975.9320059683,153545.4752403945,0,2071.211775281533 -8760,10817,19613,-9,-9,19614,1,1,57,0,0,0,2,2,-9,0,3,7.734820516801278,7.648443601200874,0,0,0,-1038.550021406385,0,3,3,2019,11,0,40,40,1,0,0,5.810508720308287,5.810508720308287,0,0,0,0,0,1,1,0,4.354295496078763,0,57.34,47.92,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,394,274702.6050610617,121101.2294824666,132944.3089904703,0,1369.693363127829 -8760,10818,19614,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-935.1415548503896,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,.54539620225653,0,1,1,0,0,0,61.04,44.94,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,639,99181.97836025032,0,0,0,103.5628534784628 -8761,10819,19615,19616,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.635330866400292,8.735718513190987,0,4,4,56.60529368439418,0,-9,-9,2019,9,0,55,60,1,0,0,14.52717325932066,14.52717325932066,0,0,0,0,0,0,0,0,0,0,46.5,58.26,43.2,59.97,8.333333333333334,1,1,0,0,4,8,5,0,861,321603.6450112265,109485.4828813872,355096.029405247,239190.7295565606,4080.797510526757 -8761,10819,19616,19615,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.947599255268164,9.202676276193717,0,4,-4,2.617579202967336,0,-9,-9,2019,18,6,43,45,1,6,0,20.82753814017342,20.82753814017342,0,0,0,1.238040697639159,0,0,0,0,1.136482392825148,0,43.2,59.97,46.5,58.26,6.666666666666667,1,1,0,0,9,8,5,0,861,321603.6450112265,109485.4828813872,355096.029405247,239190.7295565606,4080.797510526757 -8762,10820,19617,-9,19618,19619,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-959.7998743284408,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,454.6666666666667,318882.8437959341,216135.2324194221,105145.2576581744,32045.15574213903,2724.032985810904 -8762,10820,19618,19619,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.552475013109066,7.657237634224286,0,6,0,-55.88136375635286,0,3,2,2019,6,0,25,30,1,0,0,9.068249729601066,9.068249729601066,0,0,0,0,0,1,1,0,1.599326646935215,0,55.19,54.26,53,54,8.333333333333334,1,1,0,0,8,6,4,1,454.6666666666667,318882.8437959341,216135.2324194221,105145.2576581744,32045.15574213903,2724.032985810904 -8762,10820,19619,19618,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.571046680060723,8.648943806270161,0,6,0,.1691621707086454,0,-9,-9,2019,9,0,40,38,1,1,0,11.14634238373921,11.14634238373921,0,0,0,0,0,1,1,0,0,0,53,54,55.19,54.26,8,1,1,0,0,1,6,4,1,454.6666666666667,318882.8437959341,216135.2324194221,105145.2576581744,32045.15574213903,2724.032985810904 -8763,10821,19620,19621,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.454119998979566,7.022805699037769,9,5,62.16972665513233,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.529071534791757,6.446914774554943,49.46,56.91,46,17.21,8.333333333333334,1,1,0,0,1,13,2,1,571.5,474172.9173403616,189876.0436132215,213717.6331305037,0,2487.482003161021 -8763,10821,19621,19620,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,9,-5,86.46571979706707,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,17.21,49.46,56.91,6.666666666666667,1,1,0,0,0,13,2,1,571.5,474172.9173403616,189876.0436132215,213717.6331305037,0,2487.482003161021 -8764,10822,19622,19623,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.44462137524679,8.585835025700341,6.476050059224847,10,7,43.15000647207445,0,3,2,2019,13,1,40,50,1,1,0,15.0964342892062,15.0964342892062,1,0,0,0,0,1,1,0,0,6.962666747343712,54.49,47.79,52.34,56.95,8.333333333333334,1,1,0,0,12,7,4,1,559.5,822589.0418793053,609252.7519597937,182572.9698311652,0,3807.221003879614 -8764,10822,19623,19622,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,10,-7,-43.33057512745563,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.1692753012112197,0,52.34,56.95,54.49,47.79,8.333333333333334,1,1,0,0,5,7,4,1,559.5,822589.0418793053,609252.7519597937,182572.9698311652,0,3807.221003879614 -8765,10823,19624,-9,19625,19626,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.8124569445158,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,667.5,61138.13767669381,43396.81652044998,204908.2529882343,147470.1433188863,1674.637947568123 -8765,10823,19625,19626,-9,-9,1,0,36,0,2,0,3,3,-9,0,3,0,0,0,11,-10,66.89854469091384,0,2,2,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,1.518078029813611,0,46.76,47.2,44.3,32.69,6.666666666666667,2,3,0,1,0,8,3,1,667.5,61138.13767669381,43396.81652044998,204908.2529882343,147470.1433188863,1674.637947568123 -8765,10823,19626,19625,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.40311193418222,8.221673439793914,0,20,10,45.34988521148647,0,2,2,2019,13,1,48,0,1,1,0,9.239193137681474,9.239193137681474,0,0,0,0,0,1,1,0,0,0,44.3,32.69,46.76,47.2,6.666666666666667,2,3,0,1,11,8,3,1,667.5,61138.13767669381,43396.81652044998,204908.2529882343,147470.1433188863,1674.637947568123 -8765,10823,19627,-9,19625,19626,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.9593670806142,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,667.5,61138.13767669381,43396.81652044998,204908.2529882343,147470.1433188863,1674.637947568123 -8766,10824,19628,-9,19629,19630,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-911.1473767717889,-9,2,2,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.36,65.29000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,1957.75,2321820.804214131,1752502.066287478,440270.6704712028,34627.99645015128,5785.679963274916 -8766,10824,19629,19630,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.274409351754541,7.599986279582825,0,6,-4,7.467213424268898,0,2,2,2019,8,0,25,25,1,0,0,6.588741966169121,6.588741966169121,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,9,5,1,1957.75,2321820.804214131,1752502.066287478,440270.6704712028,34627.99645015128,5785.679963274916 -8766,10824,19630,19629,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.464897110496088,9.612771631200921,0,6,4,29.02851654674469,0,2,2,2019,7,0,46,48,1,0,0,44.24161903832774,44.24161903832774,0,0,0,0,0,0,0,0,8.592651774007226,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,1957.75,2321820.804214131,1752502.066287478,440270.6704712028,34627.99645015128,5785.679963274916 -8766,10824,19631,-9,19629,19630,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.431207871157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1957.75,2321820.804214131,1752502.066287478,440270.6704712028,34627.99645015128,5785.679963274916 -8767,10825,19632,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-988.618291894343,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40.55,31.73,-9,-9,6.666666666666667,1,1,0,0,4,1,2,0,441,94495.82915785731,0,0,0,1762.164417468781 -8768,10826,19633,19634,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.906437448268417,8.692249912407371,0,38,4,38.03044381588137,0,-9,-9,2019,12,2,50,40,1,2,0,12.12257187271964,12.12257187271964,0,0,0,0,0,0,0,0,0,0,47.79,53.79,41.11,60.68,3.333333333333333,1,1,0,0,12,10,5,1,277,221136.8382769001,-71228.21565378492,0,0,5520.298302700704 -8768,10826,19634,19633,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.201948079711884,6.951858213417212,0,38,-4,34.40508004718485,0,2,-9,2019,11,1,20,15,1,1,0,7.25704282343058,7.25704282343058,0,0,0,0,0,0,0,0,8.888694289782539,0,41.11,60.68,47.79,53.79,6.666666666666667,1,1,0,0,12,10,5,1,277,221136.8382769001,-71228.21565378492,0,0,5520.298302700704 -8769,10827,19635,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.411724410168802,8.119245075465059,0,0,0,-1011.558095035303,-9,2,2,2019,11,0,43,0,1,0,0,11.82857509694989,11.82857509694989,0,0,0,0,0,0,0,0,.1931439046017819,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,464,79144.52714206721,7576.677456539473,0,0,1568.912274275846 -8769,10828,19636,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.878952660805703,7.978529036096359,0,0,0,-958.0020381407585,-9,-9,-9,2019,10,1,41,0,1,1,0,10.34831093615761,10.34831093615761,0,0,0,0,0,0,0,0,0,0,49.17,58.56,-9,-9,6.666666666666667,1,1,0,0,1,10,4,0,1178,13181.77470064341,0,0,0,1626.218692963679 -8770,10829,19637,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,6.456093635415967,6.548483745835769,0,0,-1015.497479554647,0,3,1,2019,9,0,0,0,4,0,0,0,0,1,2.525290406955656,0,21.02065426152983,0,1,1,0,4.267254114499655,6.506581067635728,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,7,6,2,0,411,474037.8776884983,189357.5264264129,179959.2478677832,0,534.8371559884913 -8771,10830,19638,19639,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,3.79080906724761,3.873959960106308,49,-4,-113.3068179925101,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.841624989882177,54.37,54.8,58.03,43.83,10,1,1,0,0,0,2,2,1,485.5,1035327.250586377,299403.1349209098,448321.2385385153,0,1876.412785831656 -8771,10830,19639,19638,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.748905322957705,7.535596015924643,49,4,75.50632579857653,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.281883458987227,58.03,43.83,54.37,54.8,10,1,1,0,0,0,2,2,1,485.5,1035327.250586377,299403.1349209098,448321.2385385153,0,1876.412785831656 -8772,10831,19640,19641,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,52,10,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.892357197509375,0,58.32,50.22,52.99,51.28,8.333333333333334,1,1,0,0,0,13,1,1,1074.5,191693.2123229982,0,234999.0175036,0,1146.834291859577 -8772,10831,19641,19640,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,52,-10,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.81692979241617,0,52.99,51.28,58.32,50.22,6.666666666666667,1,1,0,0,0,13,1,1,1074.5,191693.2123229982,0,234999.0175036,0,1146.834291859577 -8773,10832,19642,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,6.712396843921152,6.734155223075117,0,0,0,-1002.991829407257,0,-9,-9,2019,11,1,40,50,1,1,0,2.778458185594371,2.778458185594371,0,0,0,0,0,1,1,0,2.999497330437567,0,53.11,47.09,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,1686,133509.4534933338,0,0,0,1236.981541265756 -8774,10833,19643,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.021860988709588,6.820449997536429,0,0,0,-1077.239760053664,0,2,-9,2019,7,0,50,60,1,0,0,2.22051403789155,2.22051403789155,0,0,0,0,0,0,0,0,1.671227839738517,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,433,376182.2492701348,208548.5975496686,138837.2085984607,0,395.333263420112 -8775,10834,19644,19645,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,44,-4,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,29.61,28.53,5,1,1,0,0,0,12,1,0,1082.5,115862.470435763,29707.82749315497,72928.73885239824,60443.27331745055,2699.17689920338 -8775,10834,19645,19644,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,44,4,0,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,0,29.61,28.53,40.31,14.24,0,1,1,0,0,0,12,1,0,1082.5,115862.470435763,29707.82749315497,72928.73885239824,60443.27331745055,2699.17689920338 -8775,10835,19646,-9,19644,19645,1,1,36,0,0,0,1,1,-9,0,4,5.940290637412606,6.161414487327265,0,0,0,-1017.452991453144,0,2,2,2019,11,0,35,35,1,0,0,1.395650208085732,1.395650208085732,0,0,0,0,0,1,1,0,0,0,46.67,58.37,-9,-9,5,1,1,0,1,11,12,2,0,1120,242012.9833886136,0,0,0,388.8966201309794 -8776,10836,19647,19648,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,51,-2,-7.492191239267452,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.312865259631911,0,61.43,32.82,44.24,35.51,8.333333333333334,1,1,0,0,3,10,2,1,939,502551.8666777143,0,319559.8962534668,0,5053.100033122078 -8776,10836,19648,19647,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,5.310555840931099,5.173558017976857,51,2,105.4013107168406,0,3,3,2019,20,8,0,49,4,8,0,0,0,0,0,0,0,0,1,1,0,7.928730458140933,5.229144253914852,44.24,35.51,61.43,32.82,8.333333333333334,1,1,0,0,11,10,2,1,939,502551.8666777143,0,319559.8962534668,0,5053.100033122078 -8777,10837,19649,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.010471066487921,7.321440405979592,0,0,-1014.645697315534,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.005791902991558,6.932611373551588,51,46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2341,254479.9954775344,193333.5824730882,173605.6844843846,0,449.4869617934338 -8778,10838,19650,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1051.868371539167,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.06,38.71,-9,-9,5,1,1,0,0,0,8,1,0,308,223681.10272441,-468.9590360608563,0,0,1396.737110734526 -8779,10839,19651,19655,-9,-9,1,0,46,0,3,0,1,1,-9,0,3,8.433091811708334,8.228191424487965,0,23,1,54.40188966251053,0,3,3,2019,14,2,35,15,1,2,0,12.65440526689366,12.65440526689366,0,0,0,0,0,1,1,0,0,0,33.47,50.75,60.14,41.18,6.666666666666667,1,1,0,0,10,12,5,1,911.6,352620.0230777051,306823.6359611914,173930.0091501875,134750.9601739258,5257.19870176969 -8779,10839,19652,-9,19651,19655,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.8086541187552,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,911.6,352620.0230777051,306823.6359611914,173930.0091501875,134750.9601739258,5257.19870176969 -8779,10839,19653,-9,19651,19655,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.189480544253,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,911.6,352620.0230777051,306823.6359611914,173930.0091501875,134750.9601739258,5257.19870176969 -8779,10839,19654,-9,19651,19655,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.2776095157872,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,911.6,352620.0230777051,306823.6359611914,173930.0091501875,134750.9601739258,5257.19870176969 -8779,10839,19655,19651,-9,-9,1,1,45,0,3,0,3,3,-9,0,3,9.244365534617243,9.229112606095365,0,23,-1,-68.48264009693878,0,3,3,2019,7,0,58,57,1,0,0,18.6714365211856,18.6714365211856,0,0,0,0,0,1,1,0,0,0,60.14,41.18,33.47,50.75,8.333333333333334,1,1,0,0,10,12,5,1,911.6,352620.0230777051,306823.6359611914,173930.0091501875,134750.9601739258,5257.19870176969 -8780,10840,19656,19657,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.106167814666515,8.932576985291043,0,33,-1,23.16609161347624,0,2,2,2019,6,0,40,50,1,0,0,20.99733345847231,20.99733345847231,0,0,0,0,0,0,0,0,2.932604544088458,0,57.16,56.15,52.21,59.91,8.333333333333334,1,1,0,0,7,4,5,1,1052,1298483.276967634,1031721.838520891,251789.6466263821,98806.94974070758,5154.777655896187 -8780,10840,19657,19656,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.541828679982888,8.79905126954953,0,7,1,5.235833068547295,0,-9,-9,2019,10,1,37,37,1,1,0,16.38976730325041,16.38976730325041,0,0,0,0,0,0,0,0,0,0,52.21,59.91,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,1052,1298483.276967634,1031721.838520891,251789.6466263821,98806.94974070758,5154.777655896187 -8781,10841,19658,19659,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.324571611952656,7.336428599298359,0,6,-8,-109.8115621785758,0,3,3,2019,15,3,23,30,1,3,0,7.328612344296735,7.328612344296735,0,0,0,1.245191751590466,0,1,1,0,0,0,29.68,32.81,44.24,33.61,6.666666666666667,1,1,0,0,8,11,4,1,647.5,210383.1831386457,57918.35321291505,151904.3421368328,0,2026.876205862233 -8781,10841,19659,19658,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.376120985632614,8.3421295653394,3.912029765796975,6,8,17.54692040246733,0,3,2,2019,16,4,37,37,1,4,0,9.081381750937759,9.081381750937759,0,0,0,0,0,1,1,0,4.416319095126773,3.867686629551987,44.24,33.61,29.68,32.81,5,1,1,0,0,8,11,4,1,647.5,210383.1831386457,57918.35321291505,151904.3421368328,0,2026.876205862233 -8781,10842,19660,-9,19658,19659,1,1,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-969.393017419981,-9,2,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,11,1,1,150,-98075.69197539255,0,0,0,857.5055255208699 -8782,10843,19661,19662,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,8,-6,9.190675703993172,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.216252784490363,0,56.46,49.68,53,47,8.333333333333334,1,1,0,0,0,7,2,0,1161,290915.0683252521,18805.73869786097,301118.5049054992,0,1917.892797362721 -8782,10843,19662,19661,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,6.504571328526815,6.706333518880599,0,8,6,74.68004305072392,0,-9,-9,2019,10,0,60,40,1,1,0,1.401222262108292,1.401222262108292,0,0,0,0,0,1,1,0,4.214635097361342,0,53,47,56.46,49.68,7,1,1,0,0,1,7,2,0,1161,290915.0683252521,18805.73869786097,301118.5049054992,0,1917.892797362721 -8783,10844,19663,19664,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.164832633152113,7.086979463835581,47,1,-10.80870651625308,0,3,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.357480651505684,37.16,58.63,54.62,32.87,8.333333333333334,1,1,0,0,6,10,2,1,862,369116.9243624392,283844.4546366941,0,0,1412.123107626854 -8783,10844,19664,19663,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-1,-40.91575301820631,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.555829292379431,0,54.62,32.87,37.16,58.63,10,1,1,0,0,5,10,2,1,862,369116.9243624392,283844.4546366941,0,0,1412.123107626854 -8784,10845,19665,19666,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.633835178678646,7.542507753196347,0,33,1,73.82564411213843,0,2,2,2019,19,7,30,20,1,7,0,6.732099335084815,6.732099335084815,0,0,0,0,2,0,0,0,2.38762974639556,0,50.54,52.37,49.77,33.09,8.333333333333334,1,1,0,0,13,9,4,1,962.5,660706.6099440503,392372.7839516385,425568.4142542925,0,2611.126985459166 -8784,10845,19666,19665,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.077756688000775,7.607944002501443,33,-1,29.59330054554272,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,0,0,0,2.441834455078807,8.241610995747617,49.77,33.09,50.54,52.37,5,1,1,0,0,9,9,4,1,962.5,660706.6099440503,392372.7839516385,425568.4142542925,0,2611.126985459166 -8785,10846,19667,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.071349842220505,8.006289951929546,0,0,0,-1113.20321791482,0,-9,-9,2019,14,3,30,30,1,3,0,14.15975729314848,14.15975729314848,0,0,0,0,0,1,1,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,221,156053.883999909,0,0,0,2296.758162166707 -8786,10847,19668,19670,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,14,-8,173.2018045671023,0,3,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.19155844149419,0,49.65,37.15,50,50,8.333333333333334,2,3,1,0,0,8,3,0,961.3333333333334,-40079.76956381409,0,0,0,2951.167750468322 -8786,10847,19669,-9,19668,19670,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-901.8707302378153,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,3,0,961.3333333333334,-40079.76956381409,0,0,0,2951.167750468322 -8786,10847,19670,19668,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.320378905691856,8.032017810720641,0,14,8,21.13479972118611,0,3,2,2019,9,0,60,30,1,0,0,7.816195861637047,7.816195861637047,0,0,0,0,0,1,1,0,0,0,50,50,49.65,37.15,3.333333333333333,2,3,0,0,11,8,3,0,961.3333333333334,-40079.76956381409,0,0,0,2951.167750468322 -8787,10848,19671,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.459594434898285,7.990242302643835,0,0,0,-1014.776942358622,0,3,-9,2019,6,0,41,44,1,0,0,6.274436398606295,6.274436398606295,0,0,0,0,0,0,0,0,0,0,58.06,46.15,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,427,10192.78560456938,134640.1352428992,120741.0096809651,17061.54782569264,1479.844055237404 -8787,10849,19672,-9,19671,-9,1,1,25,0,0,0,2,2,-9,0,4,7.924846954762398,7.936877325272038,0,0,0,-943.211152346572,0,3,-9,2019,4,0,48,41,1,0,1,7.150358810942653,7.150358810942653,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,4,0,621,139129.3928868482,-12233.85081464029,0,0,1000.983815092529 -8788,10850,19673,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.535670071896,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.964796791297664,0,53,46,-9,-9,7,1,1,0,0,6,4,1,1,241,144218.1556515581,0,0,0,698.2173116242739 -8789,10851,19674,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1039.075750830527,-9,-9,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,31.29,61.29,-9,-9,3.333333333333333,1,1,1,1,7,7,1,0,267,116338.2454214726,0,0,0,906.4502275647042 -8790,10852,19675,19676,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.952684148582548,6.958033189573999,7,-7,167.5311013082457,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.914341245735304,7.060019578723448,57.16,56.15,55.43,42.62,8.333333333333334,1,1,0,0,0,7,3,1,765.5,660544.105675371,552771.3649640117,168954.4536270899,0,3318.392693350823 -8790,10852,19676,19675,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,7.773969187181066,8.193025306251409,0,7,7,44.86079277812743,0,3,1,2019,12,0,60,60,1,2,0,5.481466485105982,5.481466485105982,0,0,0,0,0,1,1,0,0,0,55.43,42.62,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,765.5,660544.105675371,552771.3649640117,168954.4536270899,0,3318.392693350823 -8791,10853,19677,19678,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.381180372362067,8.0536438935347,0,9,-2,92.08159328191071,0,2,2,2019,9,0,39,39,1,0,0,10.99231718102009,10.99231718102009,0,0,0,0,0,1,1,0,0,0,52.48,55.6,40.14,52.54,5,1,1,0,0,10,11,3,1,2642,140625.1995972355,19531.50327868921,0,0,1783.270165379727 -8791,10853,19678,19677,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.22590108574594,7.132719757928414,0,9,2,-5.669798438737985,0,3,2,2019,28,11,16,16,1,11,0,8.908327579428935,8.908327579428935,0,0,0,0,0,1,1,0,0,0,40.14,52.54,52.48,55.6,5,1,1,0,1,10,11,3,1,2642,140625.1995972355,19531.50327868921,0,0,1783.270165379727 -8792,10854,19679,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.724985295498927,7.46575997454147,0,0,0,-890.3851071218735,0,-9,2,2019,24,12,40,38,1,12,0,5.661262053756531,5.661262053756531,0,0,0,0,0,0,0,0,0,0,35.73,46.14,-9,-9,1.666666666666667,1,1,0,0,8,4,3,0,215,236009.7869314994,-35055.77285864862,112723.2432059677,-5761.302232352362,875.429452327979 -8793,10855,19680,19681,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,50,4,0,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,8.230171664495399,3.235931067900887,0,1,1,0,0,0,57.33,53.46,47.14,43.11,10,1,1,0,0,3,10,1,0,425,205552.9224983975,-1287.187556232071,114889.4992685633,0,1861.724296073353 -8793,10855,19681,19680,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,-4,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.910482570218681,0,0,1,1,0,0,0,47.14,43.11,57.33,53.46,8.333333333333334,1,1,0,0,0,10,1,0,425,205552.9224983975,-1287.187556232071,114889.4992685633,0,1861.724296073353 -8794,10856,19682,19683,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.213096742389221,7.105093202106453,58,0,-109.7648151876503,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,6.536072310831734,7.655714066179991,56.47,40.19,51,46,8.333333333333334,1,1,0,0,0,4,2,0,2150.5,517290.3084202959,335529.4336286647,0,0,2449.95523563545 -8794,10856,19683,19682,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,9,0,36.75096052880908,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,56.47,40.19,7,1,1,0,0,0,4,2,0,2150.5,517290.3084202959,335529.4336286647,0,0,2449.95523563545 -8795,10857,19684,19686,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.400341438568063,8.44043208986273,0,2,4,91.08302016888868,0,-9,-9,2019,11,0,33,37,1,0,0,13.20722592615054,13.20722592615054,0,0,0,0,0,1,1,0,1.386510330244608,0,41.93,55.12,58.3,52.91,6.666666666666667,1,1,0,0,2,13,5,1,302.3333333333333,329589.9572124821,270425.2448709912,250009.1060225944,124166.1573267242,3986.74796530177 -8795,10857,19685,-9,19686,19684,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.829525472986,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,302.3333333333333,329589.9572124821,270425.2448709912,250009.1060225944,124166.1573267242,3986.74796530177 -8795,10857,19686,19684,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.746751329821373,9.141840859849623,0,2,-4,17.31725377941292,0,2,2,2019,1,0,41,37,1,0,0,20.4719179033218,20.4719179033218,0,0,0,0,0,1,1,0,.8497434046376613,0,58.3,52.91,41.93,55.12,8.333333333333334,1,1,0,0,8,13,5,1,302.3333333333333,329589.9572124821,270425.2448709912,250009.1060225944,124166.1573267242,3986.74796530177 -8796,10858,19687,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.177159576234613,8.540835406056109,0,0,0,-985.7205683792706,0,2,2,2019,12,0,55,51,1,0,0,9.043120669948898,9.043120669948898,0,0,0,0,0,1,1,0,1.456558082202778,0,50.43,45.82,-9,-9,5,1,1,0,0,8,6,4,0,1172,270497.1292390138,141904.7211687721,-34365.7879248454,0,1634.205504123148 -8797,10859,19688,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1072.772154784807,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,2,13,1,1,324,0,0,0,0,1264.357720796469 -8798,10860,19689,-9,-9,-9,1,0,66,0,0,0,3,3,-9,1,3,5.997496609395082,6.079009078566943,4.24120427000353,0,0,-986.2565091879093,0,3,3,2019,6,0,12,8,1,0,0,3.404907444634149,3.404907444634149,1,0,0,0,2,1,1,0,0,3.965371879008483,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,1588,180832.1698337445,0,113373.3779944056,0,858.0012617575208 -8799,10861,19690,19691,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.353496555823286,9.168814147042879,0,19,-8,-26.03020506468207,0,3,3,2019,17,7,42,52,1,7,0,31.65901132747369,31.65901132747369,0,0,0,0,0,0,0,0,.4815377437234484,0,31.77,61.1,58.15,52.91,6.666666666666667,1,1,0,0,8,9,5,1,496,1048447.281442016,370235.3513749782,360583.4057874201,0,3803.953542324583 -8799,10861,19691,19690,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.21108093675015,8.332026729916711,0,19,8,-39.20556222081754,0,2,2,2019,7,0,37,47,1,0,0,12.14609700063505,12.14609700063505,0,0,0,0,0,0,0,0,0,0,58.15,52.91,31.77,61.1,8.333333333333334,1,1,0,0,9,9,5,1,496,1048447.281442016,370235.3513749782,360583.4057874201,0,3803.953542324583 -8799,10861,19692,-9,19690,19691,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.6096642005353,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,496,1048447.281442016,370235.3513749782,360583.4057874201,0,3803.953542324583 -8800,10862,19693,19694,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.205280228488084,8.696299926434458,0,3,-3,-42.91314806672261,0,3,3,2019,7,0,41,41,1,0,0,14.39907326315983,14.39907326315983,0,0,0,0,0,0,0,0,6.994443592222304,0,57.16,56.15,41.15,54.82,8.333333333333334,1,1,0,0,9,4,5,1,460,246350.3292036193,140829.7259959475,219675.6173240474,148441.485247259,3116.063330781637 -8800,10862,19694,19693,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.930645037096719,8.185469959292911,5.274271877335083,3,3,33.08782647897273,0,-9,-9,2019,8,1,37,37,1,1,0,11.36270918657848,11.36270918657848,0,0,0,0,0,0,0,0,0,5.610524991680309,41.15,54.82,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,460,246350.3292036193,140829.7259959475,219675.6173240474,148441.485247259,3116.063330781637 -8801,10863,19695,19696,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.77286127640592,7.080601897455375,9,0,-3.954143878633564,0,3,3,2019,10,0,0,40,4,0,0,0,0,0,0,0,0,0,1,0,1,7.265389592750345,6.663569099059996,62.49,55.09,58.55,46.11,10,1,1,0,0,9,9,2,1,961,377015.6512196341,205402.7907516595,319084.5050829977,0,1980.285566682018 -8801,10863,19696,19695,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,9,0,-110.4931197612836,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.842450443946412,0,58.55,46.11,62.49,55.09,10,1,1,0,0,0,9,2,1,961,377015.6512196341,205402.7907516595,319084.5050829977,0,1980.285566682018 -8801,10864,19697,-9,19696,19695,1,0,40,0,0,0,2,2,-9,0,4,7.659361188615941,7.86620776317224,4.583621750595245,0,0,-908.8153054183003,0,3,3,2019,12,0,40,40,1,0,0,6.337706474493983,6.337706474493983,0,0,0,0,0,1,0,1,4.877747659511658,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,778,123236.1910929984,58514.69458672783,0,0,2560.180754385322 -8801,10864,19698,-9,19697,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1147.11194995462,1,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,3.989732685464324,0,54.2,57.49,-9,-9,10,1,1,0,0,0,9,3,1,778,123236.1910929984,58514.69458672783,0,0,2560.180754385322 -8802,10865,19699,-9,19702,19700,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.219537331645,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,665.5,74491.38137675004,0,0,0,1459.320598042779 -8802,10865,19700,19702,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.226993501411012,6.277604136151542,0,26,0,30.21356638024528,0,-9,-9,2019,7,0,50,60,1,0,0,1.200004645774269,1.200004645774269,0,0,0,0,14.5,1,1,0,2.093321402285138,0,60.28,43.74,46.5,58.26,6.666666666666667,1,1,0,0,6,13,2,1,665.5,74491.38137675004,0,0,0,1459.320598042779 -8802,10865,19701,-9,19702,19700,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.457285601708,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,665.5,74491.38137675004,0,0,0,1459.320598042779 -8802,10865,19702,19700,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,26,0,-28.99104394145042,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,3.791136156552934,0,46.5,58.26,60.28,43.74,5,1,1,0,1,3,13,2,1,665.5,74491.38137675004,0,0,0,1459.320598042779 -8802,10866,19703,-9,19702,19700,1,1,24,0,2,0,3,3,-9,1,4,0,0,0,0,0,-945.3112896915075,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,1,1,245,-38525.76405636404,0,0,0,213.30482928205 -8803,10867,19704,19705,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.075863817178007,6.113703100682506,9,-2,98.01655884556705,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.876915175936142,6.00176873379672,49.13,32.8,54,45,8.333333333333334,1,1,0,0,0,12,2,1,800,573610.0975276444,245075.3979306311,207963.3900881599,0,1971.205590517383 -8803,10867,19705,19704,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.93236708285329,7.007128484126004,9,2,53.16107033305011,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,1.814927406149711,.4588565828643785,22.60921227853992,0,1,1,0,0,7.388037336164829,54,45,49.13,32.8,8,1,1,0,0,0,12,2,1,800,573610.0975276444,245075.3979306311,207963.3900881599,0,1971.205590517383 -8804,10868,19706,-9,19709,19708,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0091879271047,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1417.5,-34336.60532646684,-74690.14691810515,0,0,1751.865960942238 -8804,10868,19707,-9,19709,19708,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.13569007853,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1417.5,-34336.60532646684,-74690.14691810515,0,0,1751.865960942238 -8804,10868,19708,19709,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.27379379531228,8.229083848637467,0,5,2,.8741735640293493,0,-9,-9,2019,17,5,42,50,1,5,0,11.36748925803034,11.36748925803034,0,0,0,0,0,1,1,0,0,0,37.57,54.73,39.1,57.79,3.333333333333333,1,1,0,0,4,5,3,1,1417.5,-34336.60532646684,-74690.14691810515,0,0,1751.865960942238 -8804,10868,19709,19708,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,5,-2,-41.45432299082405,0,2,1,2019,10,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.1,57.79,37.57,54.73,8.333333333333334,1,1,0,0,8,5,3,1,1417.5,-34336.60532646684,-74690.14691810515,0,0,1751.865960942238 -8805,10869,19710,19711,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.583009232685086,8.571691497855079,31,-3,-144.2931822001001,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.406061123618776,8.283831142090033,58.47,50.22,51.48,39.76,8.333333333333334,1,1,0,0,6,5,4,1,499.5,2683365.011936963,2154888.964406641,331103.8774558959,0,5962.116915912404 -8805,10869,19711,19710,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.790336242878961,8.178997429990847,31,3,-44.29685539707948,0,3,2,2019,11,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,8.224837795386073,7.782629825407391,51.48,39.76,58.47,50.22,8.333333333333334,1,1,0,0,8,5,4,1,499.5,2683365.011936963,2154888.964406641,331103.8774558959,0,5962.116915912404 -8806,10870,19712,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.597888985001745,8.777351080849963,0,0,0,-871.6787830824336,-9,-9,-9,2019,12,4,35,0,1,4,0,15.63673501504908,15.63673501504908,0,0,0,0,0,0,0,0,1.973885977225858,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,366,36701.41206637392,-82337.2732252554,0,0,1621.824753656329 -8807,10871,19713,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,7.106040638495488,7.008776732127628,0,0,0,-1010.030510991642,0,2,2,2019,12,0,16,16,1,0,0,10.84164272127343,10.84164272127343,0,0,0,0,2,1,1,0,0,0,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,11,2,2,0,639,-150897.81543574,0,0,0,1321.301227417673 -8807,10871,19714,-9,19713,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.970911928103,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,639,-150897.81543574,0,0,0,1321.301227417673 -8808,10872,19715,19718,-9,-9,1,1,74,0,1,0,2,2,-9,0,5,6.88327818178046,7.102625596800027,0,31,24,159.6206955006737,0,-9,-9,2019,5,0,16,16,1,0,0,6.487117566458471,6.487117566458471,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,6,2,0,435.5,536627.550579218,467996.7366608857,67855.41250071239,0,2251.419922363275 -8808,10872,19716,-9,19718,19715,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-914.8057083354022,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,6,2,0,435.5,536627.550579218,467996.7366608857,67855.41250071239,0,2251.419922363275 -8808,10872,19717,-9,19718,19715,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1043.031210232904,-9,-9,-9,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,4,2,0,0,1,6,2,0,435.5,536627.550579218,467996.7366608857,67855.41250071239,0,2251.419922363275 -8808,10872,19718,19715,-9,-9,1,0,50,0,1,0,3,3,-9,0,5,6.812339361194486,6.755288271476278,0,31,-24,-128.1847907281571,0,-9,-9,2019,7,0,16,16,1,0,0,6.724369675418633,6.724369675418633,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,4,2,0,0,10,6,2,0,435.5,536627.550579218,467996.7366608857,67855.41250071239,0,2251.419922363275 -8809,10873,19719,19720,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,6.57842363489921,6.757094139275279,0,17,-13,135.4086054791833,0,2,3,2019,10,0,40,35,1,1,0,2.450589153174148,2.450589153174148,0,0,0,0,2,1,1,0,2.827912247474257,0,51,54,51.83,57.2,8,1,1,0,0,8,9,5,1,343.5,1721140.275455332,1898242.515303977,0,0,8305.817049967776 -8809,10873,19720,19719,19721,-9,1,1,64,0,1,0,2,2,-9,0,4,9.692492800942643,9.875963538991885,0,17,13,-45.13589883143749,0,3,2,2019,7,0,40,37,1,0,0,43.05861989975678,43.05861989975678,0,0,0,0,2,1,1,0,8.678811960021756,0,51.83,57.2,51,54,8.333333333333334,1,1,0,0,12,9,5,1,343.5,1721140.275455332,1898242.515303977,0,0,8305.817049967776 -8809,10874,19721,-9,-9,-9,1,0,86,0,1,0,3,3,-9,0,1,0,6.718998144274655,6.82694304201872,0,0,-839.4614911699259,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,30.94716250073396,5.7020167917007,293.1033668624737,0,1,1,0,3.567596672317579,6.40832154937517,37.5,33.75,-9,-9,5,1,1,0,1,0,9,2,1,1035,649679.9455662565,5155.794545197903,605339.8565064297,0,459.8860519097785 -8810,10875,19722,19723,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.274684735157471,8.062428252835605,5,0,101.1510303334335,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,6.981738279696931,8.166396677023828,50.62,53.79,48.96,60.26,10,1,1,0,0,2,2,4,1,1362.5,2689009.748701797,1385151.637125254,406482.6359379792,0,3013.932123239317 -8810,10875,19723,19722,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.605850362612146,6.991551279547398,5,0,-66.42138495742567,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,7.098892791107129,48.96,60.26,50.62,53.79,1.666666666666667,1,1,0,0,5,2,4,1,1362.5,2689009.748701797,1385151.637125254,406482.6359379792,0,3013.932123239317 -8811,10876,19724,19725,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.868990162392723,6.936212200433665,7,4,-115.7524578056899,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.736628555457235,61.13,43.2,65.23,38.89,10,1,1,0,0,0,12,2,1,307,457864.1379229533,276655.4805400062,121339.4033262248,0,1467.084457173473 -8811,10876,19725,19724,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,7,-4,24.55858268875875,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.001408188690423,0,65.23,38.89,61.13,43.2,8.333333333333334,1,1,0,0,0,12,2,1,307,457864.1379229533,276655.4805400062,121339.4033262248,0,1467.084457173473 -8812,10877,19726,19727,-9,-9,1,0,73,0,1,0,2,2,-9,0,4,0,8.344817183504929,8.294855174735789,55,-2,.8530348682580386,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.746013437577233,6.973516285665219,50.93,54.77,48.85,58.56,8.333333333333334,1,1,0,0,0,5,3,1,483.5,1012621.794625486,669678.6658229223,214307.6408267542,0,2963.182701596945 -8812,10877,19727,19726,-9,-9,1,1,75,0,1,0,2,2,-9,0,4,0,5.984244994078473,6.146191581164026,55,2,-209.5309219705079,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.265794452515038,5.693681685664815,48.85,58.56,50.93,54.77,6.666666666666667,1,1,0,0,0,5,3,1,483.5,1012621.794625486,669678.6658229223,214307.6408267542,0,2963.182701596945 -8813,10878,19728,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,7.992359089091431,7.581810306705418,0,0,-1041.047021477912,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,7.29406452450093,8.178636265935026,46.64,48.98,-9,-9,10,1,1,0,0,0,11,4,1,702,916285.9765232336,176369.1738673926,283325.2732185652,0,2579.942579735795 -8814,10879,19729,19730,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.879927131299126,8.083269314998148,52,-3,-74.60835877410008,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.284720379401006,8.005807368443243,59.14,52.5,54.2,57.49,10,1,1,0,0,2,9,4,1,409,1469722.519936888,471604.3533475502,435160.1889678229,0,3636.454982973582 -8814,10879,19730,19729,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.102536539379894,7.687765585616363,52,3,-155.8814788174689,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.173770884178759,7.988977151848216,54.2,57.49,59.14,52.5,8.333333333333334,1,1,0,0,5,9,4,1,409,1469722.519936888,471604.3533475502,435160.1889678229,0,3636.454982973582 -8815,10880,19731,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.684054497372015,8.692740223727734,0,0,0,-1028.38232189205,0,2,3,2019,22,10,42,37,1,10,0,13.59517347140351,13.59517347140351,0,0,0,0,0,0,0,0,0,0,36.99,50.67,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,94,66093.03836172912,193080.0843575016,59986.5478655278,92384.21851097264,2312.422593816498 -8816,10881,19732,19733,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.377699170820058,8.068703473930583,0,10,-5,-14.16023302775523,0,2,2,2019,8,0,26,35,1,0,0,22.06027098547148,22.06027098547148,0,0,0,0,0,0,0,0,.5462930559022179,0,56.29,52.37,58.15,52.91,8.333333333333334,1,1,0,0,11,11,5,1,357,631459.535812993,332869.8361359626,150825.7598375927,0,2711.550144034841 -8816,10881,19733,19732,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.036542957922842,7.771771748785666,10,5,-5.428189415404012,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.214992245974017,58.15,52.91,56.29,52.37,8.333333333333334,1,1,0,0,10,11,5,1,357,631459.535812993,332869.8361359626,150825.7598375927,0,2711.550144034841 -8817,10882,19734,19736,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,8.13915203016121,7.98878197512965,0,7,7,107.2168192210394,0,-9,-9,2019,8,0,40,35,1,0,0,9.55136324718266,9.55136324718266,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.47,32.27,6.666666666666667,1,1,0,0,5,1,3,0,243.8,121414.1564855196,-36214.97627035899,122210.8249472208,91362.81347201353,2982.877729476358 -8817,10882,19735,-9,19736,19734,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.101389466128,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,243.8,121414.1564855196,-36214.97627035899,122210.8249472208,91362.81347201353,2982.877729476358 -8817,10882,19736,19734,-9,-9,1,0,30,1,3,0,3,3,-9,0,2,0,0,0,7,-7,-27.45967344593033,0,-9,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.47,32.27,48.87,58.55,8.333333333333334,1,1,0,0,0,1,3,0,243.8,121414.1564855196,-36214.97627035899,122210.8249472208,91362.81347201353,2982.877729476358 -8817,10882,19737,-9,19736,19734,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.316136561537,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,0,243.8,121414.1564855196,-36214.97627035899,122210.8249472208,91362.81347201353,2982.877729476358 -8817,10882,19738,-9,19736,19734,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.8223263652459,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,243.8,121414.1564855196,-36214.97627035899,122210.8249472208,91362.81347201353,2982.877729476358 -8818,10883,19739,19740,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.949612867257573,7.850060481604058,0,26,-1,139.6523813397014,0,3,2,2019,9,0,37,38,1,0,0,12.43564090425905,12.43564090425905,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,36.02,38.91,8.333333333333334,2,3,0,0,10,5,3,1,155,139483.6924367074,42151.61913643459,201237.1564450154,16743.98286647191,2344.53519496019 -8818,10883,19740,19739,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,27,1,-126.7519881690573,0,3,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.02,38.91,54.79,55.86,6.666666666666667,4,2,0,0,0,5,3,1,155,139483.6924367074,42151.61913643459,201237.1564450154,16743.98286647191,2344.53519496019 -8818,10884,19741,-9,19740,19739,1,1,21,0,0,0,2,2,-9,0,5,8.057937520893976,8.007654408138533,0,0,0,-1033.966997807197,-9,2,2,2019,7,0,40,0,1,0,1,8.428620640612726,8.428620640612726,0,0,0,0,7,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,4,2,0,0,2,5,4,1,1417,-61926.9928865496,0,0,0,1850.980687211586 -8819,10885,19742,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1060.831436759064,-9,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,37.02,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1483,126788.5511968715,-108571.4661964213,200096.2641072877,11086.31670309931,637.1939947064587 -8820,10886,19743,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-961.5042458164213,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1.371259176500367,0,45.91,59.89,-9,-9,3.333333333333333,3,4,0,0,9,10,1,0,1974,221593.0178070033,0,0,0,2427.993524020407 -8821,10887,19744,19745,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.008682938313312,8.855067263302802,0,11,0,55.89268479992155,0,-9,-9,2019,7,0,46,40,1,0,0,19.40960610760436,19.40960610760436,0,0,0,0,0,0,0,0,4.79318348788794,0,53.29,49.66,58.87,51.29,8.333333333333334,1,1,0,0,13,2,5,1,597,489617.3082642759,199570.2943982058,660298.6619052076,295847.632360901,6497.629874916145 -8821,10887,19745,19744,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.925552152320812,8.759005839776314,36,0,34.4199427965638,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.885944863895072,8.711036428917144,58.87,51.29,53.29,49.66,8.333333333333334,1,1,0,0,9,2,5,1,597,489617.3082642759,199570.2943982058,660298.6619052076,295847.632360901,6497.629874916145 -8822,10888,19746,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.448656971378411,7.352942225382344,0,0,-1152.691679554319,0,2,2,2019,28,12,0,37,4,12,0,0,0,0,0,0,0,0,1,1,0,2.645402778548875,7.700384811918783,22.91,39.29,-9,-9,1.666666666666667,1,1,0,0,8,6,3,1,255,340275.9426051258,180064.7986877964,149359.6097345661,110419.7201849899,326.9191795592712 -8823,10889,19747,19748,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,7.064678154862365,6.925020895328668,42,0,-80.74863373326244,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,4.214409048198068,6.879934231706874,45.41,10.82,52.38,55.95,8.333333333333334,1,1,0,0,3,12,4,1,782.5,1704043.167620924,1499612.845084678,165730.2691384796,0,2651.747372926615 -8823,10889,19748,19747,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,8.047626905555342,8.162334650911571,6,0,-59.57072422770693,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.398853529148157,52.38,55.95,45.41,10.82,8.333333333333334,1,1,0,0,6,12,4,1,782.5,1704043.167620924,1499612.845084678,165730.2691384796,0,2651.747372926615 -8824,10890,19749,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.840828953470039,7.711211195629831,0,0,-1107.240505179827,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.255079801585688,7.353365529928327,63.98,38.08,-9,-9,5,1,1,0,0,0,12,3,1,848,687971.8092352634,208151.5896676191,220291.3536019579,0,2196.690038686485 -8825,10891,19750,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,9.491442581795983,9.48091327630735,7.146100814578542,0,0,-1023.730754958137,0,-9,-9,2019,8,0,45,40,1,0,0,35.86551804653664,35.86551804653664,0,0,0,0,0,1,1,0,7.640981346935455,0,48.61,56.07,-9,-9,10,1,1,0,0,7,9,5,1,3982.5,602263.9886724411,386039.4187723394,456841.8483680737,218522.2465133352,4745.842965395245 -8825,10891,19751,-9,19750,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.2088532286303,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,3982.5,602263.9886724411,386039.4187723394,456841.8483680737,218522.2465133352,4745.842965395245 -8826,10892,19752,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.00876897669,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,46.3,31.73,-9,-9,0,1,1,1,1,0,6,1,0,1660,-95956.49934413892,0,0,0,1285.996886489419 -8827,10893,19753,19754,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.484305089090698,7.753768072815628,10,-1,-36.63467698928493,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.247619962811608,7.870582185624236,65.38,25.53,52.25,45.21,5,1,1,0,0,1,1,3,1,724,1252201.526429352,588116.8665004924,303310.0001210175,0,1606.518602057174 -8827,10893,19754,19753,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,45,1,-2.544443032903748,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.376844957267457,0,52.25,45.21,65.38,25.53,8.333333333333334,1,1,0,0,2,1,3,1,724,1252201.526429352,588116.8665004924,303310.0001210175,0,1606.518602057174 -8828,10894,19755,-9,19756,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.8432133298031,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,248.3333333333333,51555.6384788291,0,0,0,821.2624002632282 -8828,10894,19756,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,7.284572303800616,7.673856033421429,0,0,0,-1031.231807402049,0,2,3,2019,12,0,35,20,1,0,0,4.556294258133873,4.556294258133873,0,0,0,0,0,1,1,0,0,0,35.9,52.38,-9,-9,6.666666666666667,1,1,0,1,6,13,2,1,248.3333333333333,51555.6384788291,0,0,0,821.2624002632282 -8828,10894,19757,-9,19756,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.349469612419,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,248.3333333333333,51555.6384788291,0,0,0,821.2624002632282 -8829,10895,19758,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.81898777498043,7.776982104789176,0,0,-961.5197548774365,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.498035412358991,7.618311331522419,60.44,46.58,-9,-9,10,1,1,0,0,0,10,3,1,303,1058909.701535005,522886.9390157313,478966.9279716329,0,2332.824293528427 -8830,10896,19759,-9,-9,19760,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-972.6241430521765,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,2,4,0,1103.333333333333,-98708.00637745745,-71036.94556487921,159978.9089925246,134267.5541649705,1793.713655796026 -8830,10896,19760,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.612156789172017,8.522226182273162,0,0,0,-977.0631651855621,0,3,3,2019,18,5,60,55,1,5,0,11.16549052046087,11.16549052046087,0,0,0,0,0,1,1,0,0,0,48.42,60.53,-9,-9,1.666666666666667,1,1,0,1,11,2,4,0,1103.333333333333,-98708.00637745745,-71036.94556487921,159978.9089925246,134267.5541649705,1793.713655796026 -8830,10896,19761,-9,-9,19760,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-989.9983582392736,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,0,1103.333333333333,-98708.00637745745,-71036.94556487921,159978.9089925246,134267.5541649705,1793.713655796026 -8831,10897,19762,19763,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,7.902967787093763,7.191075318596419,43,-2,-37.82502518480471,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.9427726280646699,7.366855264727864,60.14,44.41,53.93,10.78,5,1,1,0,0,5,1,3,1,1255.5,2118765.246785227,1523872.953636955,269375.4512409761,0,2692.248575720027 -8831,10897,19763,19762,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,7.841817193167684,7.825797975608186,43,2,-9.351105068310108,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,11.0677124928201,0,0,1,1,0,3.423550072087247,7.614715463685156,53.93,10.78,60.14,44.41,5,1,1,0,0,5,1,3,1,1255.5,2118765.246785227,1523872.953636955,269375.4512409761,0,2692.248575720027 -8832,10898,19764,-9,19765,19766,1,1,33,0,0,0,1,1,-9,0,4,9.062261786129248,9.173892861734657,0,0,0,-941.1020143968974,0,2,1,2019,10,0,50,50,1,1,0,23.53474879340692,23.53474879340692,0,0,0,0,0,1,1,0,3.21949241335152,0,49,57,-9,-9,7,2,3,0,0,1,7,5,1,2937,164829.244835159,-26612.5812891088,0,0,3445.325176554295 -8832,10899,19765,19766,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,10,5,0,0,-9,-9,2019,23,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,1.800585952053716,0,22.8,35.58,52,47,1.666666666666667,2,3,0,0,0,7,2,1,290.5,755090.5941445264,161026.8525521866,593756.6611191533,0,592.4535820281587 -8832,10899,19766,19765,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,0,0,10,-5,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,7.384818498758189,16.57683313630036,73.81179399895721,0,1,1,0,0,0,52,47,22.8,35.58,7,2,3,0,0,11,7,2,1,290.5,755090.5941445264,161026.8525521866,593756.6611191533,0,592.4535820281587 -8833,10900,19767,19768,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,48,-6,101.2153595635137,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.65,39.74,39.57,16.2,8.333333333333334,1,1,0,0,4,11,2,0,522.5,265873.611006799,137105.8279314705,0,0,1732.584858337177 -8833,10900,19768,19767,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.894662536196078,6.868065910384705,9,6,-11.19139584554038,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,108.2101150552915,0,0,1,1,0,0,6.639207606027236,39.57,16.2,51.65,39.74,8.333333333333334,1,1,0,0,0,11,2,0,522.5,265873.611006799,137105.8279314705,0,0,1732.584858337177 -8833,10901,19769,-9,19767,19768,1,1,42,0,0,0,3,3,-9,0,4,8.681793851973653,8.530522733912527,0,0,0,-960.4984504652839,-9,3,3,2019,7,0,38,0,1,0,0,17.13575731287439,17.13575731287439,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,11,5,0,559,302495.1612305905,188378.7048985636,91018.41935395205,59794.70848127537,2295.064045581625 -8834,10902,19770,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.179536515125831,5.263842702282501,0,0,-1038.205801218941,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.064711687261614,5.258818789886563,52.75,36.58,-9,-9,5,1,1,0,0,0,6,2,1,594,371721.4704729582,-45687.34600549013,443533.9456708259,0,1164.607000354482 -8835,10903,19771,19772,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.120693056596997,5.876332038405571,0,45,-1,29.89864827442495,0,3,3,2019,12,0,6,7,1,0,0,9.439074893131448,9.439074893131448,0,0,0,0,7,0,0,0,4.072826572501448,0,49.85,44.94,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,233.5,261552.8631577413,79163.94095717177,140277.3907461313,0,2856.56532416417 -8835,10903,19772,19771,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.981831165964454,9.161681777421292,0,45,1,-56.27029982939766,0,3,3,2019,6,0,52,53,1,0,0,17.41086091115285,17.41086091115285,0,0,0,0,0,0,0,0,4.782129035459651,0,57.16,56.15,49.85,44.94,8.333333333333334,1,1,0,0,11,6,5,1,233.5,261552.8631577413,79163.94095717177,140277.3907461313,0,2856.56532416417 -8836,10904,19773,-9,19775,19774,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-901.8716713284003,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,929.3333333333334,234370.6643682204,86961.84679191427,238560.5723434562,115864.1335032397,4660.840331800759 -8836,10904,19774,19775,-9,-9,1,1,34,0,1,0,1,1,-9,0,5,8.645032716570993,8.623643266698718,0,6,-1,-49.75909750009016,0,2,2,2019,8,1,47,47,1,1,0,13.52966276629278,13.52966276629278,0,0,0,0,0,1,1,0,3.441694220613819,0,42.85,62.85,45.91,59.89,6.666666666666667,1,1,0,0,8,9,5,1,929.3333333333334,234370.6643682204,86961.84679191427,238560.5723434562,115864.1335032397,4660.840331800759 -8836,10904,19775,19774,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.012358701735,8.304158691750148,0,6,1,70.58300107300239,0,2,3,2019,20,6,28,28,1,6,0,12.39612000172964,12.39612000172964,0,0,0,0,0,1,1,0,0,0,45.91,59.89,42.85,62.85,6.666666666666667,1,1,0,0,8,9,5,1,929.3333333333334,234370.6643682204,86961.84679191427,238560.5723434562,115864.1335032397,4660.840331800759 -8837,10905,19776,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.536285820271608,7.555423634027854,0,0,0,-1034.736117422681,0,3,3,2019,11,1,30,40,1,1,0,6.913203247039914,6.913203247039914,0,0,0,0,2,1,1,0,0,0,48.45,49.46,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,878.5,-14461.04283950204,0,0,0,1709.45169862688 -8837,10905,19777,-9,19776,-9,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-982.5144158139907,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.39,50.44,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,878.5,-14461.04283950204,0,0,0,1709.45169862688 -8838,10906,19778,19779,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,7,4,-93.22887466511578,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.573864269247641,0,38.5,55.03,54.91,38.47,5,1,1,0,0,0,13,4,1,1392.5,932218.3900555242,629654.2330032584,251292.6845329946,0,1682.014422075005 -8838,10906,19779,19778,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.574011043101457,8.220991329444439,0,7,-4,-66.04271933001576,0,2,2,2019,11,1,54,56,1,1,0,8.602371560324887,8.602371560324887,0,0,0,0,0,1,1,0,3.611237359105629,0,54.91,38.47,38.5,55.03,5,1,1,0,0,8,13,4,1,1392.5,932218.3900555242,629654.2330032584,251292.6845329946,0,1682.014422075005 -8839,10907,19780,19781,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,7.842913684141842,8.206873380737544,0,5,-2,-7.684798346963735,0,3,2,2019,13,2,42,43,1,2,0,7.439810701586812,7.439810701586812,0,0,0,0,0,0,0,0,0,0,51.65,52.38,55.11,47.63,5,1,1,0,1,10,7,4,1,995,488350.2347508454,-42605.00326344595,198420.2337831764,0,3548.535710655217 -8839,10907,19781,19780,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.371873974866778,8.300286144131677,0,5,2,1.269471411410719,0,-9,-9,2019,6,0,39,41,1,0,0,11.07453988974961,11.07453988974961,0,0,0,0,0,0,0,0,7.029999401344546,0,55.11,47.63,51.65,52.38,8.333333333333334,1,1,0,0,10,7,4,1,995,488350.2347508454,-42605.00326344595,198420.2337831764,0,3548.535710655217 -8840,10908,19782,-9,19786,19784,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.945716907192,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,652.4,455534.8195548134,383478.2708795439,103652.7252248972,67818.7934615916,3235.163644671408 -8840,10908,19783,-9,19786,19784,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.0862372186062,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,3,1,652.4,455534.8195548134,383478.2708795439,103652.7252248972,67818.7934615916,3235.163644671408 -8840,10908,19784,19786,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.815087522537878,8.427881795640737,0,23,-3,-46.1974029967113,0,2,2,2019,9,0,37,40,1,0,0,16.96051745313653,16.96051745313653,0,0,0,0,0,1,1,0,0,0,60.27,49.27,60.46,33.02,1.666666666666667,2,3,0,0,11,5,3,1,652.4,455534.8195548134,383478.2708795439,103652.7252248972,67818.7934615916,3235.163644671408 -8840,10908,19785,-9,19786,19784,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-863.6854003941011,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,0,5,3,1,652.4,455534.8195548134,383478.2708795439,103652.7252248972,67818.7934615916,3235.163644671408 -8840,10908,19786,19784,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,0,0,0,23,3,-4.464676076707289,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,60.46,33.02,60.27,49.27,6.666666666666667,2,3,0,0,1,5,3,1,652.4,455534.8195548134,383478.2708795439,103652.7252248972,67818.7934615916,3235.163644671408 -8841,10909,19787,19788,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.942722183112816,7.809665118419539,0,7,-1,-51.48664949198649,0,3,3,2019,6,0,37,41,1,0,0,10.48211226090122,10.48211226090122,0,0,0,0,0,0,0,0,4.11833637604294,0,59.86,37.35,60.12,54.8,8.333333333333334,1,1,0,0,8,12,4,1,528.5,41109.05942301724,0,0,0,1900.650469394488 -8841,10909,19788,19787,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.941546057808453,7.254787822637796,5.285731590483834,7,1,169.2606412593939,0,2,3,2019,3,0,18,18,1,0,0,9.675958720095775,9.675958720095775,0,0,0,0,0,0,0,0,3.770625728388155,5.545981696476842,60.12,54.8,59.86,37.35,10,1,1,0,0,8,12,4,1,528.5,41109.05942301724,0,0,0,1900.650469394488 -8842,10910,19789,19791,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.888925249424358,7.998790092236884,0,23,2,138.6809430589819,0,-9,2,2019,14,5,30,33,1,5,0,11.72221370231655,11.72221370231655,0,0,0,0,0,1,1,0,1.932084356478106,0,41.06,62.04,54.2,57.49,6.666666666666667,1,1,0,0,12,5,4,1,282,396434.398062057,214781.1075207833,176253.4557596391,26897.14172268749,4302.963925439171 -8842,10910,19790,-9,19789,19791,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-957.4680397916604,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,5,4,1,282,396434.398062057,214781.1075207833,176253.4557596391,26897.14172268749,4302.963925439171 -8842,10910,19791,19789,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.710789564764834,8.820370301437659,0,21,-2,104.5963967858085,0,2,1,2019,10,1,48,-9,1,1,0,14.31650550800509,14.31650550800509,0,0,0,0,0,1,1,0,.7509595919184564,0,54.2,57.49,41.06,62.04,8.333333333333334,4,2,0,0,12,5,4,1,282,396434.398062057,214781.1075207833,176253.4557596391,26897.14172268749,4302.963925439171 -8842,10910,19792,-9,19789,19791,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1000.22434232938,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.1027170139877494,0,46.31,53.09,-9,-9,6.666666666666667,4,2,0,0,2,5,4,1,282,396434.398062057,214781.1075207833,176253.4557596391,26897.14172268749,4302.963925439171 -8843,10911,19793,19794,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.762600798055242,9.726142380504958,0,36,-3,-16.36463369524585,0,1,1,2019,12,1,43,45,1,1,0,40.16490148425411,40.16490148425411,0,0,0,0,0,0,0,0,4.068635639466727,0,48.87,58.55,48.06,57.48,6.666666666666667,2,3,0,0,12,8,5,1,376.5,1366712.437592878,357971.3634250827,489207.1315668526,0,16276.72914099858 -8843,10911,19794,19793,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.339020952126624,9.513080089689129,0,36,3,-21.40985343991999,-9,2,2,2019,7,0,48,0,1,0,0,27.5983289408056,27.5983289408056,0,0,0,0,0,0,0,0,6.793968965496199,0,48.06,57.48,48.87,58.55,6.666666666666667,1,1,0,0,12,8,5,1,376.5,1366712.437592878,357971.3634250827,489207.1315668526,0,16276.72914099858 -8843,10912,19795,-9,19793,19794,1,1,23,0,0,0,1,1,-9,0,2,8.341362231677239,8.548548564410808,0,0,0,-925.6984971494347,0,1,1,2019,6,0,40,48,1,0,1,10.81677406423422,10.81677406423422,0,0,0,0,0,0,0,0,4.891752401552233,0,41.73,44.96,-9,-9,3.333333333333333,4,2,0,0,2,8,4,1,590,284995.5491075462,34415.38473305873,0,0,2048.035435331263 -8843,10913,19796,-9,19793,19794,1,0,21,0,0,1,1,0,0,0,1,0,6.489963808437167,6.512931539767615,0,0,-925.0770890006318,-9,1,1,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,6.417770220899041,0,36.6,39.01,-9,-9,6.666666666666667,4,2,0,0,0,8,2,1,393,99537.83953765451,0,0,0,144.648785339882 -8844,10914,19797,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,4.341464679901309,4.376082453229233,0,7,-7,115.5997170899629,0,3,3,2019,8,0,40,40,1,0,0,.1641996567576026,.1641996567576026,0,0,0,0,14.5,0,0,0,0,0,55,57,53,54,8,4,5,0,0,9,5,2,0,200,219927.2960616571,0,0,0,-72.51543737687564 -8845,10915,19798,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.631737093772179,8.640879877950697,0,0,0,-918.3057938588368,0,2,2,2019,10,1,52,51,1,1,0,16.02352351956587,16.02352351956587,0,0,0,0,0,1,1,0,1.589052082254009,0,49.52,56.95,-9,-9,5,1,1,0,0,12,10,5,1,164,661929.2563490773,184214.2288363101,268088.3816394678,0,1700.670667908442 -8846,10916,19799,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.595679078560579,8.488737687823566,0,0,0,-1074.674006258003,0,-9,-9,2019,27,12,40,37,1,12,0,12.71026397797135,12.71026397797135,0,0,0,0,0,0,0,0,0,0,14.11,60.15,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,851,-229793.1217618942,143982.0547486028,0,0,1699.634334749853 -8847,10917,19800,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1003.37656748036,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.543822142483346,0,43.67,43.13,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,650,-62172.71677337567,0,0,0,842.0114163715025 -8848,10918,19801,19802,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,7.095473438253184,6.970144842463633,0,2,2,87.63784365206956,0,2,2,2019,7,0,40,40,1,0,0,3.52226082381113,3.52226082381113,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.18,55.64,10,1,1,0,0,11,1,4,1,440.5,76113.31007055187,-30246.48988493971,179874.4823326464,134889.786188791,2781.268568610374 -8848,10918,19802,19801,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.723300881620181,8.956160795720894,0,2,-2,100.4328151329251,0,-9,-9,2019,7,1,38,38,1,1,0,19.40786849832714,19.40786849832714,0,0,0,0,0,0,0,0,0,0,50.18,55.64,57.16,56.15,10,1,1,0,0,4,1,4,1,440.5,76113.31007055187,-30246.48988493971,179874.4823326464,134889.786188791,2781.268568610374 -8849,10919,19803,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,6.88787293558522,7.030907821763702,0,0,0,-1022.541040330401,0,-9,-9,2019,11,0,40,35,1,0,0,2.466726485215763,2.466726485215763,0,0,0,0,2,1,1,0,.9135138310491576,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,10,2,0,314,-66639.42904414599,0,0,0,626.5968441697382 -8850,10920,19804,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.544333153447036,5.701016785413576,0,0,-1071.137071655037,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.690111747503757,59.9,48.18,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,573,538725.1543250263,-30312.32840723741,294986.4581861041,0,1727.323023341081 -8851,10921,19805,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.314792102250038,8.5323853625171,0,0,0,-1163.112564681398,0,1,1,2019,10,0,27,34,1,0,0,19.52908316783556,19.52908316783556,0,0,0,0,0,0,0,0,0,0,50.14,53.97,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,410,1024987.02191999,759748.9819294879,172815.1150091359,0,1789.401793544164 -8852,10922,19806,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.923013113872222,7.48997753350703,0,0,-1030.976101084164,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.320024317355591,7.769420102155779,56.65,39.94,-9,-9,10,1,1,0,0,0,8,3,1,223,891208.8569940579,588000.8761861366,260149.9250722096,0,1437.068479551282 -8853,10923,19807,-9,19810,19808,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.677256118553,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,412.5,191789.8173702525,100384.1906800973,188680.7404330867,0,1847.470226852524 -8853,10923,19808,19810,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.81165611276327,7.924107869112429,0,24,1,113.5343514620922,0,3,1,2019,11,0,32,32,1,0,0,8.983953173342696,8.983953173342696,0,0,0,0,0,1,1,0,0,0,49.33,43.75,46.28,62.6,5,2,3,0,1,7,8,2,1,412.5,191789.8173702525,100384.1906800973,188680.7404330867,0,1847.470226852524 -8853,10923,19809,-9,19810,19808,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-950.6778336865956,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,1,412.5,191789.8173702525,100384.1906800973,188680.7404330867,0,1847.470226852524 -8853,10923,19810,19808,-9,-9,1,0,50,0,2,0,3,3,-9,0,5,0,0,0,24,-1,-40.13005358012294,0,3,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,49.33,43.75,6.666666666666667,2,3,0,1,0,8,2,1,412.5,191789.8173702525,100384.1906800973,188680.7404330867,0,1847.470226852524 -8853,10924,19811,-9,19810,19808,1,0,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-931.6825145305934,-9,3,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,5,2,3,0,1,1,8,1,1,479,169521.6394086657,0,0,0,0 -8853,10925,19812,-9,19810,19808,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1084.043478665508,-9,3,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55,44.83,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,981,0,0,0,0,0 -8854,10926,19813,19814,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.893622449446843,6.983204956154135,49,7,33.27512734200116,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,7.027929904819339,0,0,1,1,0,4.857846090542395,6.727641042450252,62.01,36.19,42.86,27.38,8.333333333333334,1,1,0,0,1,6,2,1,635.5,794308.4365067759,339069.2797830788,321997.3415034738,0,1103.710889139911 -8854,10926,19814,19813,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,49,-7,26.4500126441309,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,27.38,62.01,36.19,8.333333333333334,1,1,0,0,0,6,2,1,635.5,794308.4365067759,339069.2797830788,321997.3415034738,0,1103.710889139911 -8855,10927,19815,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1105.444770505489,0,3,-9,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,42,1,1,0,0,0,54.93,20.87,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,167,0,0,0,0,1589.261201316672 -8856,10928,19816,19819,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.255864113219143,8.368701267415339,0,6,2,-70.45646489592254,-9,2,2,2019,13,1,40,0,1,1,0,12.73077594065989,12.73077594065989,0,0,0,0,0,1,1,0,6.41379956133123,0,44.57,52.34,47.07,56.64,8.333333333333334,2,3,0,0,9,5,4,1,401,81267.71688928524,113497.1452361759,180686.2918346437,138158.6711957983,2803.358683084309 -8856,10928,19817,-9,19819,19816,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.328757228417,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,401,81267.71688928524,113497.1452361759,180686.2918346437,138158.6711957983,2803.358683084309 -8856,10928,19818,-9,19819,19816,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.237311641223,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,4,1,401,81267.71688928524,113497.1452361759,180686.2918346437,138158.6711957983,2803.358683084309 -8856,10928,19819,19816,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.900477793222444,7.964110223803781,0,6,-2,45.11475743006132,-9,2,2,2019,8,0,29,0,1,0,0,10.44460151012857,10.44460151012857,0,0,0,0,0,1,1,0,0,0,47.07,56.64,44.57,52.34,8.333333333333334,2,3,0,0,7,5,4,1,401,81267.71688928524,113497.1452361759,180686.2918346437,138158.6711957983,2803.358683084309 -8857,10929,19820,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.063648115913622,8.107664344629644,0,0,0,-1057.637375702105,0,3,3,2019,13,3,43,44,1,3,0,11.69149201775681,11.69149201775681,0,0,0,0,27,1,1,0,0,0,36.68,58.87,-9,-9,3.333333333333333,1,1,0,0,11,12,4,0,530,235674.8012413536,-68590.91363306453,0,0,641.6588126205713 -8858,10930,19821,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.175103280566123,7.965677067759577,0,0,0,-936.6627823957646,0,-9,-9,2019,9,0,37,37,1,0,0,9.819096919509308,9.819096919509308,0,0,0,0,14.5,1,1,0,4.531622316391551,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,1592,170488.5934287585,12941.71923176914,48337.22134892669,10188.5166801432,726.2970538560301 -8859,10931,19822,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-961.4612278155415,-9,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,36.54143180135644,0,0,1,1,0,0,0,34.81,27.79,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,558,154955.7575435592,0,0,0,753.2402419968729 -8860,10932,19823,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1039.824946665683,-9,-9,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,59.28,-9,-9,8.333333333333334,1,1,0,0,3,10,1,0,1273,-126435.5237457593,0,0,0,732.1947844726125 -8861,10933,19824,19825,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,6,-1,52.0003840742236,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.17,22.95,55.39,48.69,1.666666666666667,1,1,0,0,0,2,2,1,304,178579.2436483842,64678.59875505778,0,0,1116.769673352729 -8861,10933,19825,19824,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.060119721596179,6.186149511299794,6,1,-19.98616185799002,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.475099436584319,55.39,48.69,62.17,22.95,10,1,1,0,0,7,2,2,1,304,178579.2436483842,64678.59875505778,0,0,1116.769673352729 -8862,10934,19826,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,3.666365882736988,6.179819519901367,6.250145319939292,0,0,-958.6984332815571,0,2,2,2019,7,0,40,30,1,0,0,.1149698530191376,.1149698530191376,0,0,0,0,0,1,1,0,6.308856509228908,6.425290970696713,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,8,8,2,1,1268,36931.75265694018,117294.5174567215,0,0,825.8504952508706 -8863,10935,19827,19828,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.132076369265643,8.08154921926498,0,2,-3,27.1175228083652,0,3,2,2019,19,7,52,52,1,7,0,6.766273244477949,6.766273244477949,0,0,0,0,0,0,0,0,0,0,39.24,53.72,59.88,48.2,3.333333333333333,2,3,0,0,7,10,4,1,451.5,2347992.717766125,1123010.626382432,705883.6893596499,0,2801.395289840699 -8863,10935,19828,19827,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.362552225365423,8.443688029992982,0,2,3,-122.5712708490706,0,3,3,2019,14,2,47,48,1,2,0,9.033282574889878,9.033282574889878,0,0,0,0,0,0,0,0,0,0,59.88,48.2,39.24,53.72,6.666666666666667,2,3,0,0,7,10,4,1,451.5,2347992.717766125,1123010.626382432,705883.6893596499,0,2801.395289840699 -8864,10936,19829,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.861941986656339,6.400495313880375,0,0,-1087.324961395055,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.896322689090259,6.559598168220094,59.01,25.21,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,781,15830.54036427531,122649.6150188496,0,0,773.1241256855116 -8865,10937,19830,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.343530140403473,8.251244429072337,5.515225883373884,0,0,-1079.97912132649,0,2,2,2019,11,0,35,35,1,0,0,16.8494202994105,16.8494202994105,0,0,0,0,0,0,0,0,0,5.952109709925749,59.15,49.67,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,539,844406.2256648032,491768.269778136,450806.6625403518,90709.97245277632,1377.156454592258 -8866,10938,19831,19832,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.120454344982683,7.211804313552641,0,8,1,-4.779625812796613,0,-9,-9,2019,10,0,21,21,1,0,0,6.000657313599952,6.000657313599952,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,10,1,1,0,0,8,13,5,1,244,430149.7403472457,110411.4700130436,183022.4997466705,92386.52064875761,2821.395461462505 -8866,10938,19832,19831,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.83221242342851,8.98011111362171,0,25,-1,-119.1805943967934,0,3,3,2019,7,0,53,39,1,0,0,17.57693388309406,17.57693388309406,0,0,0,0,0,0,0,0,4.530715285920009,0,62.49,55.09,57.16,56.15,10,1,1,0,0,10,13,5,1,244,430149.7403472457,110411.4700130436,183022.4997466705,92386.52064875761,2821.395461462505 -8866,10939,19833,-9,19831,19832,1,1,21,0,0,0,2,2,-9,0,5,7.898787614839049,7.615465055314879,0,0,0,-1000.053198763751,0,1,1,2019,0,0,48,48,1,0,1,5.887515074126404,5.887515074126404,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,854,192594.0048422475,109478.2995814741,0,0,1548.351333408203 -8866,10940,19834,-9,19831,19832,1,1,19,0,0,0,2,2,-9,0,5,7.330388238385374,7.502124855676423,0,0,0,-1003.240024044806,0,1,1,2019,7,0,40,42,1,0,1,4.182884788351075,4.182884788351075,0,0,0,0,0,0,0,0,4.319601306750029,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,521,133787.5914609846,26254.92085168774,0,0,1340.812913829151 -8867,10941,19835,19837,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.152620174626064,8.325221490587372,0,15,2,165.4090735474384,0,2,2,2019,12,0,50,50,1,0,0,8.861300078097486,8.861300078097486,0,0,0,0,0,1,1,0,0,0,56.35,45.63,63.09,39.69,6.666666666666667,1,1,0,0,8,13,4,0,1060.333333333333,219910.1339293102,33919.4092990214,144133.1099352853,0,2594.946991932552 -8867,10941,19836,-9,19837,19835,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.792467493275,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,0,1060.333333333333,219910.1339293102,33919.4092990214,144133.1099352853,0,2594.946991932552 -8867,10941,19837,19835,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.456921675616543,7.811223909717024,0,15,-2,-196.4910854121119,0,2,2,2019,12,1,40,40,1,1,0,7.727475086112845,7.727475086112845,0,0,0,0,0,1,1,0,0,0,63.09,39.69,56.35,45.63,8.333333333333334,1,1,0,0,6,13,4,0,1060.333333333333,219910.1339293102,33919.4092990214,144133.1099352853,0,2594.946991932552 -8868,10942,19838,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1067.993699938284,0,-9,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,.8325087107419318,0,1,1,0,0,0,4.18,51.5,-9,-9,0,1,1,0,1,8,11,1,0,435,0,0,0,0,115.9214236865823 -8869,10943,19839,19840,-9,-9,1,1,44,1,1,0,3,3,-9,0,3,6.602391902462574,6.701127742293692,0,7,5,-66.22641857296614,0,2,3,2019,16,4,48,45,1,4,0,1.686769037642585,1.686769037642585,0,0,0,0,0,1,1,0,2.184425484772732,0,33.43,59.21,51.83,57.2,6.666666666666667,1,1,0,0,9,6,2,1,439,71886.3794489407,0,97807.78193223661,60365.78216998681,1409.034212858978 -8869,10943,19840,19839,-9,-9,1,0,39,1,1,0,2,2,-9,0,4,7.559340993013304,7.286289917119891,0,7,-5,95.95923667484465,0,3,3,2019,4,0,12,25,1,0,0,18.76541170057983,18.76541170057983,0,0,0,0,0,1,1,0,2.850444545622039,0,51.83,57.2,33.43,59.21,8.333333333333334,1,1,0,0,9,6,2,1,439,71886.3794489407,0,97807.78193223661,60365.78216998681,1409.034212858978 -8869,10943,19841,-9,19840,19839,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.285381326377,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,439,71886.3794489407,0,97807.78193223661,60365.78216998681,1409.034212858978 -8870,10944,19842,19843,-9,-9,1,1,45,0,0,0,2,2,-9,1,4,0,0,0,6,-1,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,35.11,34.11,8,1,1,0,0,0,1,1,0,1479,85790.91045555267,0,0,0,2365.516706943075 -8870,10944,19843,19842,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,6,1,0,0,2,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,35.11,34.11,52,55,8.333333333333334,1,1,0,0,0,1,1,0,1479,85790.91045555267,0,0,0,2365.516706943075 -8871,10945,19844,19846,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.613530759704139,7.575267512863094,0,8,3,106.5778988376067,0,2,2,2019,12,0,24,24,1,0,0,8.92462784134467,8.92462784134467,0,0,0,0,0,1,1,0,0,0,54.97,47.63,37.14,50.37,8.333333333333334,1,1,0,0,7,11,3,0,1438.666666666667,-70851.1261566842,0,0,0,2765.288878186898 -8871,10945,19845,-9,19846,19844,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.8326328936021,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,1438.666666666667,-70851.1261566842,0,0,0,2765.288878186898 -8871,10945,19846,19844,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.740533990393081,6.867039816611503,0,8,-3,75.48034505312593,0,-9,-9,2019,15,2,15,20,1,2,0,8.699896669736948,8.699896669736948,0,0,0,0,0,1,1,0,0,0,37.14,50.37,54.97,47.63,5,1,1,0,0,2,11,3,0,1438.666666666667,-70851.1261566842,0,0,0,2765.288878186898 -8871,10946,19847,-9,19846,19844,1,1,18,0,1,0,2,2,0,0,3,0,0,0,0,0,-885.5827310115709,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,0,11,1,0,387,141282.5729597789,0,0,0,0 -8872,10947,19848,19849,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,56.52,48.31,6.666666666666667,1,1,0,0,4,5,1,0,375,88604.24902286376,90360.00812869152,0,0,1623.625595185034 -8872,10947,19849,19848,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.52,48.31,52.77,55.33,8.333333333333334,1,1,0,0,0,5,1,0,375,88604.24902286376,90360.00812869152,0,0,1623.625595185034 -8873,10948,19850,19852,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.646799250461564,8.792146207944363,0,17,0,-38.15177126307606,0,1,1,2019,1,0,50,35,1,0,0,12.43045537262103,12.43045537262103,0,0,0,0,0,1,1,0,0,0,51.77,58.57,50.95,43.05,8.333333333333334,2,3,0,0,12,6,3,1,696.25,257726.4476511661,99371.70281125105,191841.8266420008,86830.60779349132,2462.954176688577 -8873,10948,19851,-9,19852,19850,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.802623957646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,696.25,257726.4476511661,99371.70281125105,191841.8266420008,86830.60779349132,2462.954176688577 -8873,10948,19852,19850,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,0,0,0,17,0,-155.7102137390591,0,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,50.95,43.05,51.77,58.57,8.333333333333334,1,1,0,0,0,6,3,1,696.25,257726.4476511661,99371.70281125105,191841.8266420008,86830.60779349132,2462.954176688577 -8873,10948,19853,-9,19852,19850,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1150.573301848028,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,696.25,257726.4476511661,99371.70281125105,191841.8266420008,86830.60779349132,2462.954176688577 -8874,10949,19854,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-904.5971007836284,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,23.78,47.59,-9,-9,5,1,1,0,0,0,6,1,0,434,197632.6885435608,0,0,0,668.1857457272465 -8875,10950,19855,19856,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.708501016450868,7.926646117573823,0,3,-1,-40.43309882807308,0,-9,-9,2019,11,1,59,35,1,1,0,4.522444385290094,4.522444385290094,0,0,0,0,27,0,0,0,0,0,44.08,59.33,54.4,51.93,3.333333333333333,1,1,0,0,4,5,4,0,233,68164.43094321073,-46968.10844475451,82241.98012624247,59323.42639459684,2417.88075141232 -8875,10950,19856,19855,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.911722905727649,7.952479374546323,0,3,1,27.69554346341636,0,3,2,2019,13,2,39,40,1,2,0,6.786950587165984,6.786950587165984,0,0,0,0,0,0,0,0,0,0,54.4,51.93,44.08,59.33,6.666666666666667,1,1,0,0,8,5,4,0,233,68164.43094321073,-46968.10844475451,82241.98012624247,59323.42639459684,2417.88075141232 -8876,10951,19857,19858,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.797326009995832,5.797338798698592,48,3,-38.19895125433776,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.800360518580365,5.540893470187311,46.61,56.93,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,445.5,1200781.384478235,862783.7342038781,165162.4382047799,0,3842.56144542274 -8876,10951,19858,19857,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.001483537854394,8.352198251681344,10,-3,120.3781797515223,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,48.13545179338867,0,0,1,1,0,2.909154734041863,8.406513774681933,57.16,56.15,46.61,56.93,8.333333333333334,1,1,0,0,0,4,4,1,445.5,1200781.384478235,862783.7342038781,165162.4382047799,0,3842.56144542274 -8877,10952,19859,19861,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.25333597359063,7.26708945164674,0,14,-3,78.09043245529637,0,2,2,2019,10,1,28,1,1,1,0,6.558996267594275,6.558996267594275,0,0,0,0,0,1,1,0,0,0,51.91,42.22,48.69,42.52,8.333333333333334,1,1,0,0,8,7,4,1,720.5,-11441.24082067138,318.7052478670483,0,0,3662.813957364177 -8877,10952,19860,-9,19859,19861,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.782576664313,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,720.5,-11441.24082067138,318.7052478670483,0,0,3662.813957364177 -8877,10952,19861,19859,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.85032069067559,8.781808839197659,0,14,3,-73.67936560213361,0,3,2,2019,9,0,26,60,1,0,0,37.75540836970957,37.75540836970957,0,0,0,0,0,1,1,0,0,0,48.69,42.52,51.91,42.22,6.666666666666667,1,1,0,0,8,7,4,1,720.5,-11441.24082067138,318.7052478670483,0,0,3662.813957364177 -8877,10952,19862,-9,19859,19861,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.72917440594,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,720.5,-11441.24082067138,318.7052478670483,0,0,3662.813957364177 -8878,10953,19863,-9,19864,19865,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.3727141469996,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1135.666666666667,-23478.37298673671,56673.5648115146,82508.76697762306,34589.92890581346,1479.48986842765 -8878,10953,19864,19865,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,0,0,0,3,-15,-52.72634600260115,0,-9,-9,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.12,37.24,49.04,55.86,0,2,3,0,0,0,4,3,1,1135.666666666667,-23478.37298673671,56673.5648115146,82508.76697762306,34589.92890581346,1479.48986842765 -8878,10953,19865,19864,-9,-9,1,1,42,1,1,0,1,1,-9,0,3,8.214666054953623,8.539187790360218,0,3,15,-55.47874047438312,0,2,3,2019,9,0,48,40,1,0,0,9.524593238298895,9.524593238298895,0,0,0,0,0,1,1,0,0,0,49.04,55.86,39.12,37.24,5,2,3,0,0,4,4,3,1,1135.666666666667,-23478.37298673671,56673.5648115146,82508.76697762306,34589.92890581346,1479.48986842765 -8879,10954,19866,19867,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.437652713265216,9.437524215292255,0,6,-2,-20.23660169020326,0,2,3,2019,6,0,43,44,1,0,0,36.58643560079617,36.58643560079617,0,0,0,0,0,0,0,0,4.658816944465889,0,58.15,52.91,57.06,57.76,10,1,1,0,0,9,8,5,1,278.5,2806310.615695208,2483853.070599503,351166.5491951901,125917.4155834224,5872.91999228263 -8879,10954,19867,19866,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.731994131306085,7.571997114188775,0,27,2,-87.50616536386781,0,2,2,2019,6,0,17,15,1,0,0,16.54171817610481,16.54171817610481,0,0,0,0,0,0,0,0,3.144907292315628,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,9,8,5,1,278.5,2806310.615695208,2483853.070599503,351166.5491951901,125917.4155834224,5872.91999228263 -8879,10955,19868,-9,19867,19866,1,1,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-972.0958821164,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.413686256254767,0,49.34,58.54,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1603,319182.4506885247,0,0,0,-176.1805730964199 -8880,10956,19869,19870,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.186522599509318,6.108815174238141,49,-4,-44.19909738806308,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,14.75327896015937,0,0,1,1,0,4.198716907732258,5.874895873617902,60.29,52.11,62.17,41.71,10,1,1,0,0,4,12,2,1,314,710060.9908513431,161974.2307669112,101594.7594493799,0,2062.040925196184 -8880,10956,19870,19869,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.132644283094089,7.055268770782891,49,4,-75.17666135545586,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.883474169143198,6.959820676212479,62.17,41.71,60.29,52.11,8.333333333333334,1,1,0,0,1,12,2,1,314,710060.9908513431,161974.2307669112,101594.7594493799,0,2062.040925196184 -8881,10957,19871,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,9.411239875068018,8.934362386086672,0,0,0,-960.6243970082949,0,2,2,2019,18,7,55,70,1,7,0,27.53127592197497,27.53127592197497,0,0,0,0,0,1,1,0,3.480855207756358,0,28.8,63.72,-9,-9,5,1,1,0,0,7,2,5,1,652,96973.39824680652,255895.2116757993,55808.80203710713,50494.51872422711,3490.967797287941 -8882,10958,19872,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.7070350544545,8.444463112212681,8.249607465440436,0,0,-1123.121790617021,0,3,2,2019,12,0,8,12,1,0,0,10.62527707426424,10.62527707426424,0,0,0,0,2,1,1,0,7.684507326772291,0,50.94,53.44,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,941,677789.9389704767,516395.4914089601,239338.5301860544,13883.28433885949,2522.97151898107 -8882,10959,19873,-9,19872,-9,1,0,28,0,0,0,2,2,-9,1,4,4.104021687190329,3.952943255163105,0,0,0,-969.6230642582764,0,2,-9,2019,5,0,19,6,1,0,0,.4548679087874974,.4548679087874974,0,0,0,0,0,1,1,0,0,0,49.88,59.37,-9,-9,10,1,1,0,0,2,9,2,1,106,596686.9812607673,0,0,0,788.842418077322 -8883,10960,19874,19875,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,7.012570385639433,7.265799131064782,0,9,-3,201.5127117731917,0,3,3,2019,9,0,18,8,1,0,0,7.351551901919564,7.351551901919564,0,0,0,0,0,1,1,0,0,0,50.32,42.1,49.88,44.92,6.666666666666667,1,1,0,0,10,6,4,1,1036.5,1766465.834295504,1445363.345535852,184909.0993750439,52195.54674840085,3091.137051711097 -8883,10960,19875,19874,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.872713442569188,8.855927341267405,0,9,3,-32.45808433703841,0,-9,-9,2019,12,0,55,55,1,0,0,14.01165251522043,14.01165251522043,0,0,0,0,0,1,1,0,0,0,49.88,44.92,50.32,42.1,5,1,1,0,0,10,6,4,1,1036.5,1766465.834295504,1445363.345535852,184909.0993750439,52195.54674840085,3091.137051711097 -8884,10961,19876,-9,19878,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.12569041945,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,491.3333333333333,6481.431142220118,0,0,0,1285.776450687038 -8884,10961,19877,-9,19878,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.0347031396086,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,491.3333333333333,6481.431142220118,0,0,0,1285.776450687038 -8884,10961,19878,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,2,0,5.363057859394575,4.923359364822304,0,0,-1031.472336334708,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,4.798078889513646,0,31.75,59.88,-9,-9,8.333333333333334,1,1,1,0,0,13,2,0,491.3333333333333,6481.431142220118,0,0,0,1285.776450687038 -8885,10962,19879,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.284795424326078,5.461824689268085,0,0,-975.7578075281903,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,7.705143524172477,0,66.22548401516578,0,1,1,0,0,5.294976677058041,53,44,-9,-9,8,1,1,0,0,0,5,2,1,2016,114815.932285462,1707.882796952934,89042.02516101785,0,676.4705197935267 -8886,10963,19880,19881,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.236273878252167,8.419828556789804,7.071087310922286,7,-2,-26.97433035371774,0,-9,-9,2019,11,0,40,35,1,2,0,9.686372174653165,9.686372174653165,0,0,0,0,0,1,1,0,0,7.161499664266758,49,48,45.88,59.91,7,1,1,0,0,1,9,5,1,790.5,3318730.292349654,1905936.138980058,999999.9551673497,0,6425.970884321935 -8886,10963,19881,19880,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.962127212405854,7.995350869662206,19,2,63.73815371536652,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.251396826629081,8.202025775941904,45.88,59.91,49,48,6.666666666666667,1,1,0,0,5,9,5,1,790.5,3318730.292349654,1905936.138980058,999999.9551673497,0,6425.970884321935 -8887,10964,19882,19883,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,6,1,8.172614892072547,0,3,3,2019,21,9,0,10,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,36.07,52.49,51.41,56.15,5,1,1,1,0,6,12,2,0,391.5,175423.3652866834,98919.66440489168,255422.2891334645,98810.51195072744,772.5734439680537 -8887,10964,19883,19882,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.354307386617472,7.260025953684302,0,6,-1,15.11975878390723,0,3,3,2019,11,0,34,26,1,0,0,4.741161221933072,4.741161221933072,0,0,0,0,0,0,0,0,0,0,51.41,56.15,36.07,52.49,8.333333333333334,1,1,0,0,6,12,2,0,391.5,175423.3652866834,98919.66440489168,255422.2891334645,98810.51195072744,772.5734439680537 -8888,10965,19884,19885,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.213653898551461,5.870225732683122,42,4,69.19713752515204,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.3331861765536959,6.055141063097063,56.26,53.71,58.32,50.22,8.333333333333334,2,3,0,0,5,2,3,1,1130.5,466524.713929654,233401.4864969098,221100.0646456224,0,1880.883461390812 -8888,10965,19885,19884,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.901840479286238,7.827574568643556,0,9,-4,-94.63487822977999,0,-9,-9,2019,7,0,37,37,1,0,0,7.615279843158156,7.615279843158156,0,0,0,0,0,1,1,0,1.308810214539412,0,58.32,50.22,56.26,53.71,8.333333333333334,2,3,0,0,10,2,3,1,1130.5,466524.713929654,233401.4864969098,221100.0646456224,0,1880.883461390812 -8889,10966,19886,19887,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,9,-6,71.68682913985836,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,2.462156069185221,0,1,1,0,2.085988859928105,0,53.86,43.07,45.97,49.2,6.666666666666667,1,1,0,0,0,12,2,1,413,399039.2471152642,178309.9984128385,215290.8482262279,0,1602.348393901422 -8889,10966,19887,19886,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.024541834698527,7.067042218282199,9,6,36.22035848807087,0,1,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.450023319027246,6.811884696569598,45.97,49.2,53.86,43.07,8.333333333333334,1,1,0,0,2,12,2,1,413,399039.2471152642,178309.9984128385,215290.8482262279,0,1602.348393901422 -8890,10967,19888,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.9282103247967,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,25.36,-9,-9,5,1,1,0,0,0,2,1,0,904,279959.2254899908,124068.1389832778,0,0,1248.793306413945 -8891,10968,19889,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.60005909331351,7.430279537169176,0,0,0,-1086.580091859527,0,2,2,2019,18,6,45,20,1,6,0,3.59893337471323,3.59893337471323,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,1621,92416.05246424738,-171212.0347079212,0,0,863.2100089512154 -8892,10969,19890,-9,19891,19892,1,0,18,0,2,0,2,2,1,0,4,7.469346489609803,7.05055737666485,0,0,0,-883.03360521898,-9,2,2,2019,9,3,25,0,1,3,1,5.027575365009152,5.027575365009152,0,0,0,0,14.5,1,1,0,0,0,53.9,47.89,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,178,45009.01969882883,0,0,0,805.2339699561668 -8892,10970,19891,19892,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,0,0,3,-1,0,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.58,43.04,47.27,32.46,3.333333333333333,1,1,0,0,0,12,1,0,542,185502.0026093524,0,0,0,3826.96200405885 -8892,10970,19892,19891,-9,-9,1,1,48,0,2,0,2,2,-9,1,2,0,0,0,3,1,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,47.27,32.46,38.58,43.04,8.333333333333334,1,1,0,0,0,12,1,0,542,185502.0026093524,0,0,0,3826.96200405885 -8893,10971,19893,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.497515957466653,8.769153282980282,0,0,0,-1074.166432369432,0,-9,-9,2019,7,0,60,45,1,0,0,9.385435501411362,9.385435501411362,0,0,0,0,2,0,0,0,1.579447787432583,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,2,5,1,371,19260.07005338319,39796.83497880078,0,0,1737.032824079521 -8894,10972,19894,19896,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.200804813829645,8.304782409164783,0,27,-2,-247.3204888337093,0,2,1,2019,6,0,29,22,1,0,0,15.22219293980013,15.22219293980013,0,0,0,0,0,0,0,0,0,0,61.58,51.56,57.06,57.76,10,1,1,0,0,10,2,5,1,970.3333333333334,1827507.84774265,1585861.165867455,339071.3733567221,140081.9519243143,9476.741612577944 -8894,10972,19895,-9,19894,19896,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1102.361054940753,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,2,5,1,970.3333333333334,1827507.84774265,1585861.165867455,339071.3733567221,140081.9519243143,9476.741612577944 -8894,10972,19896,19894,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.706192359894251,9.740424171613636,0,27,2,-12.17739310110116,0,1,1,2019,8,0,112,56,1,0,0,14.90564003991878,14.90564003991878,0,0,0,0,0,0,0,0,1.16844851161262,0,57.06,57.76,61.58,51.56,8.333333333333334,1,1,0,0,11,2,5,1,970.3333333333334,1827507.84774265,1585861.165867455,339071.3733567221,140081.9519243143,9476.741612577944 -8895,10973,19897,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.227628768516555,8.126228025892027,0,0,0,-958.2491135510598,0,-9,-9,2019,6,0,38,37,1,0,0,8.828869279674553,8.828869279674553,0,0,0,0,0,0,0,0,0,0,48.06,50.73,-9,-9,1.666666666666667,1,1,0,0,4,2,4,1,843,37425.37179257097,0,0,0,1161.139221313331 -8896,10974,19898,19899,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.771392388398263,7.63351552890126,0,27,3,90.44348994799688,0,3,3,2019,1,0,38,40,1,0,0,7.753933307041864,7.753933307041864,0,0,0,0,0,0,0,0,0,0,57.36,50.71,53.01,54.06,8.333333333333334,2,3,0,0,11,8,3,1,304.5,29067.68125484163,147848.3540761294,0,0,2136.622515693935 -8896,10974,19899,19898,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.074985608695743,7.283962951030293,0,27,-3,-26.21975998772503,0,3,2,2019,3,0,15,21,1,0,0,10.04640303426132,10.04640303426132,0,0,0,0,0,0,0,0,0,0,53.01,54.06,57.36,50.71,10,2,3,0,0,11,8,3,1,304.5,29067.68125484163,147848.3540761294,0,0,2136.622515693935 -8896,10975,19900,-9,19899,19898,1,1,21,0,0,0,2,2,-9,0,4,7.572299111053127,7.334068273968989,0,0,0,-1041.158632189964,0,2,1,2019,3,0,32,0,1,0,1,6.450231849259881,6.450231849259881,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6.666666666666667,2,3,0,1,1,8,3,1,463,-80836.28106662254,141512.882266408,0,0,618.9588518788331 -8897,10976,19901,19902,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.960099642682971,7.918147262424012,0,9,0,3.358259480140021,0,1,1,2019,4,1,12,8,1,1,0,31.75232507363197,31.75232507363197,0,0,0,0,0,0,0,0,.3135394663781219,0,47.97,48.24,57.06,57.76,8.333333333333334,4,2,0,0,10,5,4,0,449,1975.795029659217,21954.88204016547,0,0,2419.096563629886 -8897,10976,19902,19901,-9,-9,1,1,30,0,0,0,3,3,-9,0,5,7.337726621647366,7.611475748879166,0,9,0,56.17228973966254,0,1,1,2019,6,0,14,16,1,0,0,14.16058048095713,14.16058048095713,0,0,0,0,0,0,0,0,.5630161755319466,0,57.06,57.76,47.97,48.24,1.666666666666667,1,1,0,0,10,5,4,0,449,1975.795029659217,21954.88204016547,0,0,2419.096563629886 -8898,10977,19903,19904,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.205049085392766,5.380564961636804,50,0,-25.9196504287682,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.263065232676951,5.546901576495375,60.27,49.27,52.47,40.47,8.333333333333334,1,1,0,0,0,9,3,1,1712,1221663.264216335,244073.439438152,535531.6622617727,0,2446.97586353666 -8898,10977,19904,19903,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.56964903378516,8.08696211168771,50,9,8.635722089995154,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.931604160418567,7.577570604754831,52.47,40.47,60.27,49.27,8.333333333333334,1,1,0,0,0,9,3,1,1712,1221663.264216335,244073.439438152,535531.6622617727,0,2446.97586353666 -8899,10978,19905,19906,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,6.966013868375271,6.935500261614209,4,8,-48.99315682919148,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.259013446166675,39.36,45.66,46.03,50.54,6.666666666666667,2,3,0,0,10,6,3,1,399,53360.0519492634,-18786.00920414968,0,0,1591.991369328483 -8899,10978,19906,19905,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.488487023176421,7.563374712978024,0,4,-8,54.85608537286219,0,2,2,2019,20,8,28,21,1,8,0,7.804640242642688,7.804640242642688,0,0,0,0,0,0,0,0,.8068772146415949,0,46.03,50.54,39.36,45.66,8.333333333333334,1,1,0,0,9,6,3,1,399,53360.0519492634,-18786.00920414968,0,0,1591.991369328483 -8900,10979,19907,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.883083469992194,5.95575235691187,0,0,-931.3855250045841,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.733459479237194,5.438534358023797,51.55,51.94,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,684,474318.7673110072,262527.7408901555,227608.8628721977,0,1046.978878962943 -8901,10980,19908,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.445084677719714,6.80809753278757,0,0,-969.3515745777373,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.777751780073582,6.675093880345013,45.1,46.88,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,718,144099.2209628441,158382.4322073965,0,0,1295.221469288124 -8902,10981,19909,19910,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.427137163882596,6.420935792402447,58,4,-50.12391231533994,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.302975927142135,7.103812606299077,60.29,52.11,49.28,52.09,8.333333333333334,1,1,0,0,0,4,2,0,397.5,406999.4259584497,144142.5709664999,246926.3207373996,0,1093.523878708818 -8902,10981,19910,19909,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,58,-4,4.293708133075203,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.406577888543717,0,49.28,52.09,60.29,52.11,8.333333333333334,1,1,0,0,0,4,2,0,397.5,406999.4259584497,144142.5709664999,246926.3207373996,0,1093.523878708818 -8903,10982,19911,19912,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.589332084148387,8.54744265547914,0,9,4,-31.23513259820711,0,-9,-9,2019,14,3,38,38,1,3,0,20.59398267555612,20.59398267555612,0,0,0,0,0,1,1,0,1.257267550753469,0,48.06,53.4,51.83,57.2,8.333333333333334,1,1,0,0,9,10,5,1,463.25,57572.04379013213,54755.05632757534,270045.678733597,179649.9313058098,4399.348978185625 -8903,10982,19912,19911,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.450722554258075,8.206920228934994,0,9,-4,.7087153055222901,0,2,2,2019,10,3,25,27,1,3,0,22.62739692230886,22.62739692230886,0,0,0,0,0,1,1,0,.9151779881555457,0,51.83,57.2,48.06,53.4,10,1,1,0,0,10,10,5,1,463.25,57572.04379013213,54755.05632757534,270045.678733597,179649.9313058098,4399.348978185625 -8903,10982,19913,-9,19912,19911,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.424536806891,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,463.25,57572.04379013213,54755.05632757534,270045.678733597,179649.9313058098,4399.348978185625 -8903,10982,19914,-9,19912,19911,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.3134050942764,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,463.25,57572.04379013213,54755.05632757534,270045.678733597,179649.9313058098,4399.348978185625 -8904,10983,19915,19916,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.280224635192372,5.223535527924942,9,2,-46.0865439940773,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,4.936420382359666,0,71.5,1,1,0,4.555987713082417,5.443022653007541,61.19,33.88,54.7,19.63,3.333333333333333,1,1,0,0,0,6,2,1,466.5,101234.8580596857,-34745.40697566573,125679.9898854704,0,2307.789280013705 -8904,10983,19916,19915,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.993761185001867,6.258443860758034,9,-2,113.7179160643613,0,3,1,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.639760948335032,6.28146160557511,54.7,19.63,61.19,33.88,3.333333333333333,1,1,0,0,0,6,2,1,466.5,101234.8580596857,-34745.40697566573,125679.9898854704,0,2307.789280013705 -8905,10984,19917,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.058314718102781,5.783898416576911,0,0,-1039.71475925806,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.171602334864859,6.646568728303167,51,46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,343,488296.8201724609,-21311.64396363022,158344.2755351571,0,904.7632867890696 -8906,10985,19918,19919,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.11151187088868,9.293289216432076,0,6,12,107.3189028021708,0,2,3,2019,10,1,55,50,1,1,0,21.95239720977949,21.95239720977949,0,0,0,0,0,0,0,0,5.035283142348525,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,565.5,860708.9842562019,609083.5259981058,392513.257836084,92033.83963527027,4934.903404871075 -8906,10985,19919,19918,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.652081668595692,7.601803127186496,0,6,-12,-22.80815628126289,0,2,2,2019,6,0,21,22,1,0,0,13.57969369581997,13.57969369581997,0,0,0,0,0,0,0,0,7.22957494525483,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,565.5,860708.9842562019,609083.5259981058,392513.257836084,92033.83963527027,4934.903404871075 -8907,10986,19920,19921,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,6.667824273520356,6.63898093079843,2,7,75.21701297226316,0,-9,-9,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,7.087127330483562,6.580206527711288,54.61,47.86,54.96,53.17,6.666666666666667,3,4,0,0,8,8,4,1,465.5,-17630.7229666737,-44594.02794520624,0,0,3162.256256597955 -8907,10986,19921,19920,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.282728812396543,8.122692544677662,0,2,-7,115.9289917968594,0,3,3,2019,8,0,45,45,1,0,0,10.03898806996875,10.03898806996875,0,0,0,0,0,0,0,0,3.975596064978679,0,54.96,53.17,54.61,47.86,10,3,4,0,0,9,8,4,1,465.5,-17630.7229666737,-44594.02794520624,0,0,3162.256256597955 -8908,10987,19922,19923,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,42,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,54.79,55.86,52,48,8.333333333333334,1,1,0,0,8,12,1,0,1009,57317.86634728222,0,0,0,1939.867304905598 -8908,10987,19923,19922,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,2,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,54.79,55.86,7,1,1,0,0,0,12,1,0,1009,57317.86634728222,0,0,0,1939.867304905598 -8909,10988,19924,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,0,6.35469473595816,6.39816729840879,0,0,-1018.908972478024,-9,2,2,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,6.953277844815231,0,43.68,48.77,-9,-9,5,2,3,0,0,0,6,2,0,188,-79661.3488487952,0,0,0,360.3765012779139 -8910,10989,19925,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.797245833610233,7.360774660416447,0,0,0,-1040.255410871181,0,2,2,2019,35,12,50,50,1,12,0,5.260608505931378,5.260608505931378,0,0,0,0,0,0,0,0,0,0,38.04,64.75,-9,-9,0,1,1,0,1,10,7,3,1,194,47373.77306958813,-30855.4111280527,0,0,779.7714161971992 -8911,10990,19926,19928,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.462450361495224,8.591868587497732,0,10,6,19.88037875077038,0,-9,-9,2019,7,0,38,38,1,0,0,15.23719708250674,15.23719708250674,0,0,0,0,0,1,1,0,0,0,54.35,57.84,33.37,60.58,10,1,1,0,0,11,5,5,1,931.75,538703.5470220837,257045.6843574725,335034.3117254152,118177.821554951,3929.255488619226 -8911,10990,19927,-9,19928,19926,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.062313376859,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,931.75,538703.5470220837,257045.6843574725,335034.3117254152,118177.821554951,3929.255488619226 -8911,10990,19928,19926,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.704085595055798,8.294334337652572,0,10,-6,116.7909897449353,0,2,1,2019,21,8,39,38,1,8,0,16.81839332243571,16.81839332243571,0,0,0,0,0,1,1,0,0,0,33.37,60.58,54.35,57.84,8.333333333333334,1,1,0,0,11,5,5,1,931.75,538703.5470220837,257045.6843574725,335034.3117254152,118177.821554951,3929.255488619226 -8911,10990,19929,-9,19928,19926,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.844286726772,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,5,1,931.75,538703.5470220837,257045.6843574725,335034.3117254152,118177.821554951,3929.255488619226 -8912,10991,19930,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.795406153631228,7.918020392989275,0,0,-1027.244393100311,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.844127287796931,45.91,59.89,-9,-9,10,1,1,0,0,0,11,3,1,478,705842.5278774711,279905.0668191581,143743.9899623237,0,1871.986981397753 -8913,10992,19931,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-968.9269019817726,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,5,1,1,519,189545.2067564534,-38874.67048998769,66875.9694368311,10490.83553551659,412.43270994957 -8914,10993,19932,19933,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.326549074280222,3.924485313311411,8,-13,-48.26816485361133,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,3.878190876317251,3.179387069506811,47.64,40.56,54,46,6.666666666666667,1,1,0,0,0,13,2,1,1092.5,442212.1226814803,112880.6246547685,305580.6732896732,0,1385.472627448173 -8914,10993,19933,19932,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.366063008116057,6.238929813477554,8,13,6.833641251465865,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.469301822861122,54,46,47.64,40.56,8,4,1,0,0,0,13,2,1,1092.5,442212.1226814803,112880.6246547685,305580.6732896732,0,1385.472627448173 -8915,10994,19934,19935,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.200855415685746,8.891957819230923,0,8,8,-113.0049150932887,0,-9,-9,2019,9,0,35,30,1,1,0,30.06693464909405,30.06693464909405,0,0,0,0,0,0,0,0,0,0,52,55,56.18,53.85,8,1,1,0,0,1,5,5,1,424.75,774996.6750857278,234614.8345407433,467859.0642921543,0,5586.741763843647 -8915,10994,19935,19934,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.815268444665458,8.536941389562104,0,15,-8,32.37655052197386,0,2,2,2019,13,1,48,40,1,1,0,14.33163860294751,14.33163860294751,0,0,0,0,2,0,0,0,6.926560756119843,0,56.18,53.85,52,55,8.333333333333334,1,1,0,0,11,5,5,1,424.75,774996.6750857278,234614.8345407433,467859.0642921543,0,5586.741763843647 -8915,10994,19936,-9,19935,19934,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2976132658558,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,424.75,774996.6750857278,234614.8345407433,467859.0642921543,0,5586.741763843647 -8915,10994,19937,-9,19935,19934,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.459669614817,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,424.75,774996.6750857278,234614.8345407433,467859.0642921543,0,5586.741763843647 -8916,10995,19938,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.738782194771764,8.166105462676112,0,0,0,-1000.240406468088,0,3,3,2019,4,0,40,40,1,0,0,8.408674013321797,8.408674013321797,0,0,0,0,0,0,0,0,0,0,53.22,48.44,-9,-9,10,1,1,0,0,13,12,4,0,1103,285472.3862730049,42885.89825754816,236268.1168925446,101771.0884316579,1291.36047451069 -8917,10996,19939,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.480041099942729,7.22449992308034,0,0,-970.9878291358782,0,2,1,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,4.223692769245504,7.501062028262334,26,35.44,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,308,639994.62508819,68404.11337546346,238967.9647058979,0,1868.180517284306 -8918,10997,19940,19941,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.491611129436996,4.104256372139577,7,-2,-25.28881036726223,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,.8075146977554695,0,120,1,1,0,4.888692793899693,4.694287112352828,51,46,48.97,46.01,8,1,1,0,0,0,13,2,1,1019.5,252919.2950941851,152245.2790630851,130815.0921573889,0,1086.716794061952 -8918,10997,19941,19940,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,4.809783322511254,5.009527797323989,7,2,26.54437089595687,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.660747718559923,4.771852062835743,48.97,46.01,51,46,10,1,1,0,0,0,13,2,1,1019.5,252919.2950941851,152245.2790630851,130815.0921573889,0,1086.716794061952 -8919,10998,19942,19943,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,6.767006857400078,6.92272996986037,0,4,-5,-25.16270141937358,0,-9,-9,2019,14,1,20,20,1,1,0,4.912055274651142,4.912055274651142,0,0,0,0,0,0,0,0,0,0,44.56,59.1,53.72,44.11,3.333333333333333,1,1,0,0,7,12,3,0,350.5,244484.3332775376,118308.6805540597,94454.3797181391,2012.886645998209,1320.617933400764 -8919,10998,19943,19942,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.674003696965357,7.568754468275505,0,4,5,-16.06544116422402,0,-9,-9,2019,7,1,8,8,1,1,0,27.54913770198118,27.54913770198118,0,0,0,0,0,0,0,0,0,0,53.72,44.11,44.56,59.1,8.333333333333334,1,1,0,0,5,12,3,0,350.5,244484.3332775376,118308.6805540597,94454.3797181391,2012.886645998209,1320.617933400764 -8920,10999,19944,19945,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.82939752858424,8.71589180905624,0,10,-3,86.49431860039412,0,-9,-9,2019,10,0,50,-9,1,1,0,13.21533583929369,13.21533583929369,0,0,0,0,0,0,0,0,4.126601287583886,0,50,49,52.31,58.29,7,1,1,0,0,1,12,4,1,2379.5,225735.3136765664,115761.4716857003,192427.4484090973,18436.08494837164,2433.445549766016 -8920,10999,19945,19944,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,5.760636367401132,5.689589125765409,0,42,3,-94.02684122015371,0,3,3,2019,7,0,24,25,1,0,0,1.915334009254359,1.915334009254359,0,0,0,0,0,0,0,0,1.980448987055702,0,52.31,58.29,50,49,8.333333333333334,1,1,0,0,11,12,4,1,2379.5,225735.3136765664,115761.4716857003,192427.4484090973,18436.08494837164,2433.445549766016 -8921,11000,19946,-9,19948,19947,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.4101952254849,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1136,1352669.991935327,1238505.563378898,347860.7359210601,157504.7977658375,3542.876006366696 -8921,11000,19947,19948,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.787432662498793,8.879958123524849,0,7,4,32.30894236540669,0,2,3,2019,9,0,40,45,1,0,0,25.2184290922069,25.2184290922069,0,0,0,0,0,1,1,0,0,0,49.04,55.86,35.97,61.83,6.666666666666667,1,1,0,0,8,12,5,1,1136,1352669.991935327,1238505.563378898,347860.7359210601,157504.7977658375,3542.876006366696 -8921,11000,19948,19947,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.043955519176865,7.941027029880035,0,7,-4,-61.47455385118632,0,2,2,2019,11,0,28,29,1,0,0,13.32405987442205,13.32405987442205,0,0,0,0,0,1,1,0,4.112261893672486,0,35.97,61.83,49.04,55.86,3.333333333333333,1,1,0,0,8,12,5,1,1136,1352669.991935327,1238505.563378898,347860.7359210601,157504.7977658375,3542.876006366696 -8922,11001,19949,19951,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,0,0,0,7,-6,23.44016611124219,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,39.54,34.83,52.75,47.35,1.666666666666667,1,1,1,0,4,10,4,1,813.3333333333334,941073.7547033373,507360.8300011469,558274.5793742888,130357.2137390008,2962.549837254928 -8922,11001,19950,-9,19951,19949,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.826972469582,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,813.3333333333334,941073.7547033373,507360.8300011469,558274.5793742888,130357.2137390008,2962.549837254928 -8922,11001,19951,19949,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.815992955314277,8.850798809501841,0,7,6,12.92438938026481,0,2,2,2019,12,0,43,50,1,0,0,15.25226520806731,15.25226520806731,0,0,0,0,14.5,1,1,0,4.37079138838455,0,52.75,47.35,39.54,34.83,8.333333333333334,1,1,0,0,8,10,4,1,813.3333333333334,941073.7547033373,507360.8300011469,558274.5793742888,130357.2137390008,2962.549837254928 -8923,11002,19952,19953,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.186972396640208,7.041742698469217,0,2,-15,-95.06182592138546,0,-9,-9,2019,10,0,24,0,1,0,0,5.422722747762914,5.422722747762914,0,0,0,0,27,1,1,0,0,0,49.17,40.81,38.13,22.07,5,2,3,0,0,1,8,3,0,506,1342347.892642792,171978.2015822908,857447.7464148706,0,3490.251706319665 -8923,11002,19953,19952,-9,-9,1,1,69,0,0,0,1,1,-9,0,1,0,7.83833481338814,7.680494761545217,2,15,1.950384211172141,0,3,2,2019,25,10,0,0,4,10,0,0,0,0,99.9169397971442,25.60077745605624,0,0,1,1,0,0,7.60150333121882,38.13,22.07,49.17,40.81,5,2,3,0,0,0,8,3,0,506,1342347.892642792,171978.2015822908,857447.7464148706,0,3490.251706319665 -8924,11003,19954,19955,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.323162805629581,9.20712513780156,6.619878525296174,28,-1,-40.72094356063501,0,2,2,2019,12,2,35,35,1,2,0,46.46732384092909,46.46732384092909,0,0,0,0,0,0,0,0,3.025348067121911,6.90292077664554,47.32,52.7,39.85,55.83,8.333333333333334,3,4,0,0,7,8,5,1,178,1023928.240917875,536984.523216747,615094.0708805568,152367.4368705917,4972.329249445394 -8924,11003,19955,19954,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.787476991555263,7.516346523293729,0,30,1,99.0929735615226,0,3,3,2019,16,5,30,30,1,5,0,7.743543981175712,7.743543981175712,0,0,0,0,0,0,0,0,0,0,39.85,55.83,47.32,52.7,6.666666666666667,4,2,0,0,9,8,5,1,178,1023928.240917875,536984.523216747,615094.0708805568,152367.4368705917,4972.329249445394 -8924,11004,19956,-9,19955,19954,1,1,26,0,0,0,2,2,-9,0,5,7.938710726226795,8.089520060552507,0,0,0,-1063.56966699058,0,2,2,2019,11,2,38,38,1,2,1,8.538076584558194,8.538076584558194,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,5,3,4,0,1,5,8,4,1,260,-68060.00452162593,0,0,0,1435.431194868577 -8925,11005,19957,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.757256968079536,8.092948790816928,0,0,-1127.505621335042,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.812096189352047,7.936944471892425,42.52,52.2,-9,-9,8.333333333333334,1,1,0,0,3,13,4,1,195,662816.4310759471,543434.2046323775,215242.1611166192,0,1889.456067957731 -8926,11006,19958,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.749024826267387,8.743695632262108,0,0,0,-1037.976474669038,0,3,2,2019,12,0,40,40,1,0,0,14.73245767862397,14.73245767862397,0,0,0,0,0,0,0,0,0,0,50.85,49.73,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,247,24464.59724227001,40306.34540697726,0,0,1369.727799920293 -8927,11007,19959,-9,19960,-9,1,1,58,0,0,0,2,2,-9,0,3,7.842913017650105,7.879545016813061,0,0,0,-889.8725972413791,0,3,3,2019,10,0,37,37,1,0,0,9.154533329748988,9.154533329748988,0,0,0,0,71.5,1,1,0,1.916560365156876,0,59.04,48.6,-9,-9,1.666666666666667,1,1,0,0,9,6,4,0,383,193223.2906297603,60281.30840515139,0,0,1216.562184528895 -8927,11008,19960,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1075.280650383163,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,6,1,0,130,74823.25795956903,0,0,0,1513.319874792241 -8928,11009,19961,19962,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.069531811153388,7.26752476380107,0,21,2,-41.05896117033441,0,2,2,2019,11,0,21,14,1,0,0,6.983889028208555,6.983889028208555,0,0,0,0,0,1,1,0,0,0,50.03,55.3,47.15,55.39,8.333333333333334,1,1,0,0,3,8,4,1,468.3333333333333,236605.7623150709,82104.66406088507,479673.4281650591,251300.133285485,3458.480585411595 -8928,11009,19962,19961,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,9.152046627076865,8.90618906837892,0,21,-2,35.30619546965769,0,2,1,2019,12,0,47,42,1,0,0,18.99589375702778,18.99589375702778,0,0,0,0,0,1,1,0,0,0,47.15,55.39,50.03,55.3,8.333333333333334,1,1,0,0,9,8,4,1,468.3333333333333,236605.7623150709,82104.66406088507,479673.4281650591,251300.133285485,3458.480585411595 -8928,11009,19963,-9,19961,19962,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.823481544963,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,468.3333333333333,236605.7623150709,82104.66406088507,479673.4281650591,251300.133285485,3458.480585411595 -8929,11010,19964,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,5.122537377555,5.000007251721968,0,0,-1040.10392224054,0,3,3,2019,23,8,0,0,4,8,0,0,0,1,2.463766015541046,9.448087772442156,23.31390896535779,0,1,1,0,0,5.030538243636294,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,1,2,0,564,-98840.68474730973,0,0,0,1715.854588985603 -8930,11011,19965,19966,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.868176339778829,4.910033247498164,45,-6,6.615167547147809,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.456467773454739,4.436939119252076,60.27,49.27,49.56,35.72,10,1,1,0,0,0,7,3,1,762.5,862420.8704921845,444826.2467633802,270062.8320264444,0,2591.819008337747 -8930,11011,19966,19965,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.847811923010538,7.84443043299103,45,6,7.268423091805097,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,11.93730670603672,0,0,1,1,0,7.70883402599373,7.70380058967659,49.56,35.72,60.27,49.27,0,1,1,0,0,0,7,3,1,762.5,862420.8704921845,444826.2467633802,270062.8320264444,0,2591.819008337747 -8931,11012,19967,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.643063783580174,7.75403540671055,0,0,0,-1033.044953579817,0,-9,-9,2019,17,6,56,66,1,6,0,4.626378110945227,4.626378110945227,0,0,0,0,0,0,0,0,0,0,39.5,41.06,-9,-9,5,1,1,0,0,8,7,3,0,620,-115015.6083346349,-15963.77086423533,0,0,892.3571182694099 -8932,11013,19968,19969,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.635078605279585,9.026554113036545,0,4,-2,99.78798415263648,0,2,2,2019,18,8,37,38,1,8,0,21.11626325433192,21.11626325433192,0,0,0,0,0,1,1,0,2.861729783460941,0,33.55,62.9,55.2,43.52,8.333333333333334,1,1,0,0,8,10,5,1,855.6666666666666,500068.3628586628,78980.15652799097,568830.9526451587,138689.2766188513,4248.539671207008 -8932,11013,19969,19968,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.144546905462068,8.24000771787634,0,4,2,-102.9337972642829,0,-9,-9,2019,11,1,30,31,1,1,0,11.0186091508458,11.0186091508458,0,0,0,0,2,1,1,0,0,0,55.2,43.52,33.55,62.9,8.333333333333334,1,1,0,0,4,10,5,1,855.6666666666666,500068.3628586628,78980.15652799097,568830.9526451587,138689.2766188513,4248.539671207008 -8932,11013,19970,-9,19969,19968,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.823687144356,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,855.6666666666666,500068.3628586628,78980.15652799097,568830.9526451587,138689.2766188513,4248.539671207008 -8933,11014,19971,19972,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.410382617074408,7.436506748760698,51,0,88.62494750738884,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.11704396371991,7.455750729993842,38.24,31.29,55.99,39.1,5,1,1,0,0,4,5,2,1,489,716368.3815533778,264622.4573919731,151121.8630261291,0,2524.206468322534 -8933,11014,19972,19971,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,0,-71.45009725225549,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.81456019926108,0,55.99,39.1,38.24,31.29,8.333333333333334,1,1,0,0,0,5,2,1,489,716368.3815533778,264622.4573919731,151121.8630261291,0,2524.206468322534 -8934,11015,19973,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.894544480040956,9.043643658120303,0,0,0,-945.4582234516607,0,2,-9,2019,10,2,41,19,1,2,0,18.11450725473803,18.11450725473803,0,0,0,0,0,1,1,0,3.646756781984953,0,51.25,46.55,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,2568,78193.18185197408,34403.17319231844,211820.3268691724,97096.63316274932,1815.433035846825 -8935,11016,19974,19975,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.511569106794745,7.684002563571693,10,15,155.2118257083113,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.638329521537189,7.866546313147416,62.49,55.09,58.15,52.91,8.333333333333334,1,1,0,0,6,7,3,1,531,1170533.016180021,310077.7857694495,280015.8416634353,0,1809.790466347289 -8935,11016,19975,19974,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,10,-15,136.4444465665321,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.56596030133404,0,58.15,52.91,62.49,55.09,10,1,1,0,0,4,7,3,1,531,1170533.016180021,310077.7857694495,280015.8416634353,0,1809.790466347289 -8936,11017,19976,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,6.077081832796463,6.081971040654109,0,0,0,-956.8611373097262,-9,2,2,2019,8,1,7,0,1,1,1,9.414390761341929,9.414390761341929,0,0,0,0,0,1,0,1,0,0,35.68,62.23,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,441,11129.65991970594,0,0,0,-98.02396850778081 -8937,11018,19977,-9,19979,19980,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.206364700176,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,4,1,933.75,257328.4216197004,57951.27262839149,267818.1384490752,100313.1220663957,2239.834116921787 -8937,11018,19978,-9,19979,19980,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.5279097013638,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,933.75,257328.4216197004,57951.27262839149,267818.1384490752,100313.1220663957,2239.834116921787 -8937,11018,19979,19980,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,0,0,17,-1,13.96821742888935,0,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.166191858692391,0,54.78,45.17,53.61,59.13,8.333333333333334,1,1,0,0,6,2,4,1,933.75,257328.4216197004,57951.27262839149,267818.1384490752,100313.1220663957,2239.834116921787 -8937,11018,19980,19979,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.082139045248264,8.934831013777085,0,17,1,43.13443564250278,0,2,2,2019,6,0,50,50,1,0,0,18.93336864602438,18.93336864602438,0,0,0,0,0,0,0,0,3.246157300390212,0,53.61,59.13,54.78,45.17,8.333333333333334,1,1,0,0,12,2,4,1,933.75,257328.4216197004,57951.27262839149,267818.1384490752,100313.1220663957,2239.834116921787 -8938,11019,19981,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1094.720656027561,0,2,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,0,0,45.8,17.58,-9,-9,5,1,1,0,0,0,12,1,0,4147,123879.9379533872,0,126259.0342693823,0,1073.902033150976 -8938,11020,19982,-9,19981,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.7826661153587,0,2,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.64,8.960000000000001,-9,-9,0,1,1,0,0,4,12,1,0,109,0,0,0,0,954.4477979047429 -8939,11021,19983,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.135330080777045,7.703211245324061,0,0,0,-901.1786914325837,0,2,1,2019,12,2,98,70,1,2,0,3.943111953938658,3.943111953938658,0,0,0,0,0,0,0,0,0,0,43.84,57.1,-9,-9,5,1,1,0,0,9,5,4,1,394,165802.7171783453,168466.9346543938,0,0,2155.277273941766 -8940,11022,19984,-9,-9,-9,1,1,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1021.532213988656,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27.93,48.9,-9,-9,5,1,1,0,1,0,4,1,0,287,0,0,0,0,-82.39045343997316 -8941,11023,19985,19986,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,59,5,0,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,4.40059590598548,0,120,1,1,0,0,0,31.45,34.16,48.5,24.94,8.333333333333334,1,1,0,0,0,5,1,1,519.5,36041.90979363981,-31011.24785096574,148650.8822212805,0,1709.43747577256 -8941,11023,19986,19985,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,59,-5,0,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,48.5,24.94,31.45,34.16,5,1,1,0,0,0,5,1,1,519.5,36041.90979363981,-31011.24785096574,148650.8822212805,0,1709.43747577256 -8942,11024,19987,-9,19989,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.824744702712,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,486,-48870.14279677682,0,0,0,1890.101676755654 -8942,11024,19988,-9,19989,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.4849031325627,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,3,4,-9,0,0,8,2,0,486,-48870.14279677682,0,0,0,1890.101676755654 -8942,11024,19989,-9,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,6.734444935126431,6.804370087372511,0,0,0,-1023.75449160196,0,2,2,2019,8,0,16,16,1,0,0,6.490182780420419,6.490182780420419,0,0,0,0,42,1,1,0,0,0,55.39,54.22,-9,-9,0,3,4,0,0,5,8,2,0,486,-48870.14279677682,0,0,0,1890.101676755654 -8942,11025,19990,-9,19989,-9,1,1,25,0,2,0,2,2,-9,0,4,7.757113179916646,7.695780609522917,0,0,0,-1108.176865441083,0,2,-9,2019,10,1,40,0,1,1,1,5.499390069369604,5.499390069369604,0,0,0,0,0,1,1,0,0,0,47.68,55.12,-9,-9,5,1,1,0,0,1,8,3,0,477,-109855.8399264392,61921.98957238399,0,0,445.3507090395663 -8943,11026,19991,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.312236370143721,8.307072461469868,3.359341458621692,0,0,-1065.147505651929,0,2,3,2019,7,0,38,37,1,0,0,12.88233025380889,12.88233025380889,0,0,0,0,0,0,0,0,6.514692707542666,0,48.48,54.62,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,198,940999.2791728978,855797.207967394,186059.0147449481,1866.221271967572,2395.352099382846 -8944,11027,19992,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,5,0,0,0,0,0,-949.7584057344103,0,-9,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.3571556864637948,0,42.87,50.98,-9,-9,10,1,1,0,0,0,11,1,0,284,209376.3199198336,0,0,0,426.7145750025342 -8945,11028,19993,19994,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.933855051187543,7.603347287250363,5.482917596008145,44,-3,32.14494815840709,0,3,3,2019,10,4,39,44,1,4,0,6.211177914423905,6.211177914423905,0,0,0,0,0,1,1,0,0,5.665448943523053,38.75,60.39,52,54.51,8.333333333333334,1,1,0,0,11,4,3,0,206.5,282960.5615086156,82944.47841546268,0,0,1302.501439564116 -8945,11028,19994,19993,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,3,24.17060724949074,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,38.75,60.39,10,1,1,0,0,8,4,3,0,206.5,282960.5615086156,82944.47841546268,0,0,1302.501439564116 -8946,11029,19995,19996,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.406509687519031,6.548381963037007,9,7,15.10707470589653,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.746747054500089,56.77,52.22,47.85,59.13,8.333333333333334,1,1,0,0,6,7,4,0,718.5,275745.9821698885,463068.210649368,0,0,2569.051854431581 -8946,11029,19996,19995,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.359084643883948,8.494487686151865,0,9,-7,-41.1508458651054,0,2,2,2019,6,0,40,40,1,0,0,11.49292819510559,11.49292819510559,0,0,0,0,0,1,1,0,0,0,47.85,59.13,56.77,52.22,8.333333333333334,1,1,0,0,10,7,4,0,718.5,275745.9821698885,463068.210649368,0,0,2569.051854431581 -8947,11030,19997,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.619063631345506,8.291165504607131,0,0,0,-1142.297045875392,0,-9,-9,2019,7,0,40,49,1,0,0,15.31085228764693,15.31085228764693,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,6.666666666666667,1,1,0,0,11,5,4,0,836,103635.1233862842,-10040.51751011312,0,0,1712.941446139065 -8948,11031,19998,20000,-9,-9,1,1,35,0,2,0,2,2,-9,0,2,0,0,0,9,-6,36.35239206096811,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,39.69,46.08,57.2,8.333333333333334,1,1,0,0,9,8,4,1,1323.5,209996.9919927295,183055.3734642662,276345.8182062346,135433.7638166549,3421.534138156811 -8948,11031,19999,-9,20000,19998,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.966720408626,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,1323.5,209996.9919927295,183055.3734642662,276345.8182062346,135433.7638166549,3421.534138156811 -8948,11031,20000,19998,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,9.040727638757895,9.229713946704305,0,9,6,-93.12620181268335,0,1,2,2019,14,3,50,46,1,3,0,20.97197678059435,20.97197678059435,0,0,0,0,0,1,1,0,6.173801593273791,0,46.08,57.2,58.32,39.69,6.666666666666667,1,1,0,0,11,8,4,1,1323.5,209996.9919927295,183055.3734642662,276345.8182062346,135433.7638166549,3421.534138156811 -8948,11031,20001,-9,20000,19998,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.376086346344,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1323.5,209996.9919927295,183055.3734642662,276345.8182062346,135433.7638166549,3421.534138156811 -8949,11032,20002,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.850910330098057,7.743673700257513,0,0,0,-1051.930217622641,0,3,3,2019,0,0,40,40,1,0,0,7.281124579807348,7.281124579807348,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,10,12,3,0,625,6211.600814571153,-92801.32429708524,12274.28590067016,70178.24512173193,1902.117977316361 -8949,11033,20003,-9,20002,-9,1,0,20,0,0,0,2,2,-9,0,4,7.653732374377549,7.574096660416981,0,0,0,-937.3906945739382,0,1,-9,2019,6,0,33,18,1,0,1,7.077290333356048,7.077290333356048,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,12,3,0,459,136900.5313050437,0,0,0,1049.028466844817 -8950,11034,20004,20005,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.457313300520431,8.567711603823884,0,7,-2,-108.7040140080977,0,1,1,2019,10,0,7,7,1,0,0,72.61170811288234,72.61170811288234,0,0,0,0,0,0,0,0,0,0,50.06,48.29,55.6,42.6,8.333333333333334,2,3,0,0,9,8,5,1,1355.5,873882.8685542506,404740.93803301,328578.4473156433,18544.40259741507,4182.677452063719 -8950,11034,20005,20004,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.820383885236785,9.260084729154331,0,34,2,46.80797972814428,0,2,1,2019,6,0,45,48,1,0,0,16.40913950998646,16.40913950998646,0,0,0,0,7,0,0,0,2.997972926201774,0,55.6,42.6,50.06,48.29,8.333333333333334,2,3,0,0,9,8,5,1,1355.5,873882.8685542506,404740.93803301,328578.4473156433,18544.40259741507,4182.677452063719 -8950,11035,20006,-9,20004,20005,1,1,25,0,0,1,2,0,0,0,5,0,0,0,0,0,-973.3856705557272,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.1,59.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,318,0,0,0,0,0 -8951,11036,20007,20008,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,9.146098610027511,9.077713347191475,48,1,129.266621234499,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.454756634093633,9.061080900138965,56.71,53.58,53.45,49.53,8.333333333333334,1,1,0,0,0,8,5,1,662,2284035.227805237,1217798.407527982,648033.325921664,0,6374.767764911146 -8951,11036,20008,20007,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.506095577925406,5.329425361457124,48,-1,-21.13714565228585,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.463506504999478,53.45,49.53,56.71,53.58,8.333333333333334,1,1,0,0,0,8,5,1,662,2284035.227805237,1217798.407527982,648033.325921664,0,6374.767764911146 -8952,11037,20009,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1005.36414766311,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,1.23896690925805,0,21.3,41.99,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,797,3945.220844283673,-53595.86789427347,0,0,1960.308482916305 -8952,11038,20010,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1021.510889898654,0,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.595393240480997,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,283,378152.7787622139,397122.7231788183,87394.32929184186,0,69.1105609056853 -8953,11039,20011,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,9.040410499899412,8.977366238027029,0,0,0,-1042.763288365318,0,3,2,2019,6,0,38,43,1,0,0,29.9881683716494,29.9881683716494,0,0,0,0,0,1,1,0,1.413942415540961,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,10,7,5,1,436,834003.6073501867,106413.0540085205,492561.910919897,0,3041.512924321966 -8954,11040,20012,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.559030409019905,7.948876183404782,0,0,0,-1004.954387359217,0,2,3,2019,10,1,40,40,1,1,0,5.344825173377489,5.344825173377489,0,0,0,0,0,1,1,0,1.845759740780841,0,53.39,52.35,-9,-9,8.333333333333334,3,4,0,0,9,5,3,0,1364.5,63007.64137493823,-78159.06079367886,0,0,1512.618265698088 -8954,11040,20013,-9,20012,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.2788759205398,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,1364.5,63007.64137493823,-78159.06079367886,0,0,1512.618265698088 -8955,11041,20014,20015,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.132447705784712,6.732493156968562,8,4,-178.9360511302797,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.803940903136986,6.72507839716647,54.69,57.47,54.36,46.43,8.333333333333334,1,1,0,0,3,11,3,1,634.5,582121.0211965069,430424.3635042288,135125.3135118012,0,2264.253962095321 -8955,11041,20015,20014,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.137768013580398,7.378302006036121,8,-4,-28.29221910163321,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.451982044912156,7.192269380099628,54.36,46.43,54.69,57.47,10,1,1,0,0,4,11,3,1,634.5,582121.0211965069,430424.3635042288,135125.3135118012,0,2264.253962095321 -8956,11042,20016,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.084035931802939,8.15066298523077,0,0,0,-1116.837610001082,0,3,2,2019,19,7,45,45,1,7,0,9.28900529607224,9.28900529607224,0,0,0,0,0,0,0,0,0,0,40.32,53.3,-9,-9,3.333333333333333,1,1,0,0,9,8,4,0,204,-124165.4535824279,0,0,0,1153.136729749067 -8957,11043,20017,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.51517676982027,8.338952676416282,0,0,0,-997.6460914855912,0,-9,-9,2019,6,1,43,42,1,1,0,11.35612356936389,11.35612356936389,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,1085,142831.2866670737,0,0,0,1296.516732096653 -8958,11044,20018,20019,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.85067064506782,6.780725171502104,0,9,-4,-90.20662165575972,0,2,1,2019,8,0,16,22,1,0,0,6.616987391790021,6.616987391790021,0,0,0,0,2,0,0,0,0,0,51.4,41.01,57.13,40.12,8.333333333333334,1,1,0,0,10,6,4,1,648.5,147137.9550437401,30703.76820532666,109942.9268228362,0,3654.448277067519 -8958,11044,20019,20018,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.849083109786987,9.518809254190295,0,23,4,-31.76061391263132,0,3,2,2019,15,4,45,46,1,4,0,21.85740612124368,21.85740612124368,0,0,0,0,2,0,0,0,0,0,57.13,40.12,51.4,41.01,6.666666666666667,1,1,0,0,12,6,4,1,648.5,147137.9550437401,30703.76820532666,109942.9268228362,0,3654.448277067519 -8959,11045,20020,20021,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.894525016360058,7.522853493164345,0,6,3,-78.8544584124579,0,-9,-9,2019,11,1,30,30,1,1,0,9.833225217156681,9.833225217156681,0,0,0,0,0,0,0,0,1.409544640168581,0,44.89,53.77,58.15,52.91,1.666666666666667,1,1,0,0,7,2,4,1,1171,104012.7056626588,48536.12395148187,149045.9550358236,57614.29590392433,2557.63214529244 -8959,11045,20021,20020,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.279139315738978,7.954049117205564,7.357860252513237,6,-3,-35.40625772267814,0,3,3,2019,7,0,29,40,1,0,0,5.839255187888832,5.839255187888832,0,0,0,0,2,0,0,0,4.914988985868028,7.278571042845365,58.15,52.91,44.89,53.77,8.333333333333334,1,1,0,0,7,2,4,1,1171,104012.7056626588,48536.12395148187,149045.9550358236,57614.29590392433,2557.63214529244 -8960,11046,20022,20024,-9,-9,1,1,36,1,1,0,1,1,-9,0,5,9.425701158659948,9.071758104020855,0,7,4,.9420342090751148,0,-9,-9,2019,8,0,38,39,1,0,0,32.43925221117152,32.43925221117152,0,0,0,0,0,0,0,0,7.969819186675419,0,52.27,58.55,41.87,59.15,8.333333333333334,2,3,0,0,12,7,5,1,1565.666666666667,255392.8528551713,58042.83672832104,426989.7360375919,223611.9135017958,6925.011527583943 -8960,11046,20023,-9,20024,20022,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.146651459092,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,1565.666666666667,255392.8528551713,58042.83672832104,426989.7360375919,223611.9135017958,6925.011527583943 -8960,11046,20024,20022,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,9.040685521864754,9.00062266431166,0,7,-4,-4.318317723850691,0,2,1,2019,13,2,38,38,1,2,0,20.73442897470759,20.73442897470759,0,0,0,0,0,0,0,0,3.918793464931364,0,41.87,59.15,52.27,58.55,8.333333333333334,1,1,0,0,11,7,5,1,1565.666666666667,255392.8528551713,58042.83672832104,426989.7360375919,223611.9135017958,6925.011527583943 -8961,11047,20025,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,8.184453533033942,8.579064462813248,0,0,-985.1357499752432,-9,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.887533725264896,8.2457393735517,45.15,57.46,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,572,400316.4438383352,210277.5347196993,0,0,3719.376739201706 -8962,11048,20026,20027,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,9.32821556766906,9.423941122608017,0,7,0,-114.5061782842249,0,2,2,2019,7,0,55,50,1,0,0,28.01310290797579,28.01310290797579,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,359.25,1015814.611955717,570427.4869773746,611074.4498512928,238845.9252860284,6672.901201064145 -8962,11048,20027,20026,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.974167340204364,8.582263464962619,0,7,0,108.2879364060131,0,1,1,2019,6,0,35,35,1,0,0,19.18292340395032,19.18292340395032,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,359.25,1015814.611955717,570427.4869773746,611074.4498512928,238845.9252860284,6672.901201064145 -8962,11048,20028,-9,20027,20026,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-914.4070604194355,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,359.25,1015814.611955717,570427.4869773746,611074.4498512928,238845.9252860284,6672.901201064145 -8962,11048,20029,-9,20027,20026,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.88006381658,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,359.25,1015814.611955717,570427.4869773746,611074.4498512928,238845.9252860284,6672.901201064145 -8963,11049,20030,20031,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.166080979206453,6.501880425042451,50,3,-8.093766231178547,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.953169415132007,6.262819971301503,61.12,51.57,57.8,41.32,10,1,1,0,0,5,6,3,1,683.5,807303.5249076613,381956.5617303808,191046.381347645,0,1892.766247067088 -8963,11049,20031,20030,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.17630876737295,6.803948932342495,50,-3,29.05722409127996,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.255427178362456,7.10894011658469,57.8,41.32,61.12,51.57,5,1,1,0,0,0,6,3,1,683.5,807303.5249076613,381956.5617303808,191046.381347645,0,1892.766247067088 -8964,11050,20032,20033,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.418382515721681,6.064546924060417,10,-3,43.85655165207786,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.8652040911805237,6.241337197515993,58.07,46.29,51.38,44.05,6.666666666666667,1,1,0,0,0,7,4,1,214.5,1160151.382611554,829519.2726203264,272242.5418234463,0,3999.317782910315 -8964,11050,20033,20032,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.211592778249358,8.379011056889011,10,3,-42.77453139966654,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.322620837727967,8.128455070451396,51.38,44.05,58.07,46.29,8.333333333333334,1,1,0,0,0,7,4,1,214.5,1160151.382611554,829519.2726203264,272242.5418234463,0,3999.317782910315 -8965,11051,20034,20035,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,8.580365885840852,8.201061123526685,60,-4,71.98953090927772,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.810454918454439,8.503537193030144,39.71,54.21,42.73,53,8.333333333333334,1,1,0,0,6,11,5,1,331.5,1128566.591828858,243830.2993424307,226116.7644760035,0,4912.920372021073 -8965,11051,20035,20034,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,8.221785734547437,8.590921366389315,60,4,-76.08684204413554,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.420863335823872,8.543674342809013,42.73,53,39.71,54.21,6.666666666666667,1,1,0,0,0,11,5,1,331.5,1128566.591828858,243830.2993424307,226116.7644760035,0,4912.920372021073 -8966,11052,20036,20037,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,6.89018229639432,6.695715905187043,9,-8,79.24986889748367,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,0,0,0,6.581839170978158,6.818545228982202,45.01,57.46,46.44,59.62,6.666666666666667,1,1,0,0,10,5,5,1,1054,78187.80812190421,0,166576.9883097591,0,5579.948096438983 -8966,11052,20037,20036,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.597171531971751,9.525747465152884,8.851434720489143,9,8,-48.20011239886713,0,3,3,2019,6,0,16,40,1,0,0,10.94525925767662,10.94525925767662,0,0,0,0,2,0,0,0,9.024896779566204,5.178418393989083,46.44,59.62,45.01,57.46,8.333333333333334,1,1,0,0,10,5,5,1,1054,78187.80812190421,0,166576.9883097591,0,5579.948096438983 -8967,11053,20038,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.821420296183727,7.867589479087191,0,0,0,-917.1431773727833,0,2,2,2019,17,5,39,39,1,5,0,6.385734112046435,6.385734112046435,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,1099,135679.139939799,0,0,0,951.3331305456506 -8968,11054,20039,20040,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,8.046471145053975,7.62103793807465,34,-16,-173.9912963546503,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.565325145729097,8.307163800559975,51.73,46.37,57.06,57.76,6.666666666666667,1,1,0,0,4,10,4,1,286.5,1072185.514420493,579789.9547396998,545377.5336867191,0,3265.634246011698 -8968,11054,20040,20039,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,7.626588556710605,7.54062737026708,34,16,-21.63024550494428,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.334182464178889,7.536722662904962,57.06,57.76,51.73,46.37,8.333333333333334,1,1,0,0,0,10,4,1,286.5,1072185.514420493,579789.9547396998,545377.5336867191,0,3265.634246011698 -8969,11055,20041,20042,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.563283439547074,8.828864830031714,0,7,1,-16.9956253661559,0,2,2,2019,10,0,39,55,1,0,0,15.46408325765664,15.46408325765664,0,0,0,0,14.5,0,0,0,0,0,54.37,54.8,33.47,32.32,8.333333333333334,1,1,0,0,8,11,4,1,973.5,112620.50736301,109552.0391407762,122595.5892852041,37011.04567126175,1782.898802121718 -8969,11055,20042,20041,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.863246171411529,7.508550384482869,0,7,-1,-126.1218331548258,0,3,3,2019,23,10,24,30,1,10,0,5.360142804513544,5.360142804513544,0,0,0,0,7,0,0,0,3.454434437392223,0,33.47,32.32,54.37,54.8,1.666666666666667,1,1,0,0,8,11,4,1,973.5,112620.50736301,109552.0391407762,122595.5892852041,37011.04567126175,1782.898802121718 -8969,11056,20043,-9,20042,20041,1,0,19,0,0,0,2,2,-9,0,5,7.056819391467752,6.886964591783825,0,0,0,-950.0908489080981,0,2,2,2019,6,0,30,0,1,0,1,4.22457100418062,4.22457100418062,0,0,0,0,0,0,0,0,1.798904843697479,0,62.39,56.71,-9,-9,10,1,1,0,0,2,11,2,1,239,168863.380571714,-59825.91102933734,0,0,112.5205932572654 -8970,11057,20044,20045,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,3.010615510945173,2.704743089124156,37,-5,90.78939028934184,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.871964963869051,0,0,1,1,0,0,2.746362130084953,70.08,13.78,54.91,27.74,8.333333333333334,1,1,0,0,8,10,2,1,607,417149.2749094949,98104.87620430675,221229.797492218,0,1915.013635017639 -8970,11057,20045,20044,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.12217646611497,7.773687383822515,9,5,94.58784082862415,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.38646711182576,7.771458534605002,54.91,27.74,70.08,13.78,10,1,1,0,0,0,10,2,1,607,417149.2749094949,98104.87620430675,221229.797492218,0,1915.013635017639 -8971,11058,20046,20049,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.549223156468788,8.397156054362828,0,6,-1,-20.20398208538206,0,-9,-9,2019,13,0,37,37,1,2,0,15.49518526812365,15.49518526812365,0,0,0,0,0,1,1,0,0,0,24.64,57.58,38.11,44.65,3.333333333333333,2,3,0,0,8,6,4,1,462.75,515332.8171705073,544802.9045624493,154782.3177119602,139873.6833051385,4197.454524231645 -8971,11058,20047,-9,20046,20049,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.110426198927,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,462.75,515332.8171705073,544802.9045624493,154782.3177119602,139873.6833051385,4197.454524231645 -8971,11058,20048,-9,20046,20049,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.4697816630135,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,6,4,1,462.75,515332.8171705073,544802.9045624493,154782.3177119602,139873.6833051385,4197.454524231645 -8971,11058,20049,20046,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,8.390307958320852,8.526546518778893,0,6,1,11.8923896383182,0,3,3,2019,12,0,43,42,1,2,0,10.48253329051207,10.48253329051207,0,0,0,0,0,1,1,0,0,0,38.11,44.65,24.64,57.58,6.666666666666667,2,3,0,0,12,6,4,1,462.75,515332.8171705073,544802.9045624493,154782.3177119602,139873.6833051385,4197.454524231645 -8972,11059,20050,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-786.267437684764,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,.2072675644609223,0,1,1,0,0,0,58.85,36.72,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,159,148934.7013068126,0,0,0,995.9009733615042 -8973,11060,20051,20052,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.100132564314174,9.225406754322478,0,16,-2,90.45133005416213,0,2,2,2019,7,0,38,38,1,0,0,30.26935673638555,30.26935673638555,0,0,0,0,0,0,0,0,5.674560546582959,0,54.1,59.11,47.87,46.68,8.333333333333334,1,1,0,0,9,12,5,1,444.5,1791697.176488889,728230.8878803765,703533.653418672,229206.9016745102,5743.842632917705 -8973,11060,20052,20051,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,9.437703154053201,9.352899764746189,0,16,2,30.20416397664328,0,2,2,2019,9,0,38,42,1,0,0,35.91621408190178,35.91621408190178,0,0,0,0,0,0,0,0,4.625896063172484,0,47.87,46.68,54.1,59.11,6.666666666666667,1,1,0,0,9,12,5,1,444.5,1791697.176488889,728230.8878803765,703533.653418672,229206.9016745102,5743.842632917705 -8973,11060,20053,-9,20051,20052,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.810770441904,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,444.5,1791697.176488889,728230.8878803765,703533.653418672,229206.9016745102,5743.842632917705 -8973,11060,20054,-9,20051,20052,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.866010131911,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,444.5,1791697.176488889,728230.8878803765,703533.653418672,229206.9016745102,5743.842632917705 -8974,11061,20055,-9,20058,20056,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.9326900359752,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,351.25,154017.8907394981,149972.4453638816,172800.5932278702,39314.21457041745,3103.183428734165 -8974,11061,20056,20058,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.412100981281613,8.563652968873955,0,7,2,81.5714971851348,0,2,-9,2019,13,1,40,40,1,1,0,12.79604722844848,12.79604722844848,0,0,0,.1006317130013219,0,1,1,0,0,0,43.57,62.68,53.48,53.71,8.333333333333334,1,1,0,0,6,2,4,1,351.25,154017.8907394981,149972.4453638816,172800.5932278702,39314.21457041745,3103.183428734165 -8974,11061,20057,-9,20058,20056,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-874.2737526660782,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,351.25,154017.8907394981,149972.4453638816,172800.5932278702,39314.21457041745,3103.183428734165 -8974,11061,20058,20056,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.032688187743497,8.207394820936715,0,7,-2,13.66836166875491,0,2,2,2019,10,0,42,43,1,0,0,9.152443786703605,9.152443786703605,0,0,0,0,0,1,1,0,0,0,53.48,53.71,43.57,62.68,6.666666666666667,1,1,0,0,8,2,4,1,351.25,154017.8907394981,149972.4453638816,172800.5932278702,39314.21457041745,3103.183428734165 -8975,11062,20059,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.752158544970733,5.916374296369242,0,0,-950.4224525421423,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.95328196197109,5.850770370311183,55.36,46.37,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,718,190093.3609808601,123515.942408309,188757.0734893182,0,977.9710883240554 -8976,11063,20060,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,0,6.489256145902244,6.404583653799689,0,0,-1009.238392900616,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,7.824918446266026,6.573138742424042,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,326,157214.6582269494,108711.8149787665,0,0,2512.841105743782 -8977,11064,20061,-9,20062,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.808000865294,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,708,40962.87216225434,-28140.91490067873,0,0,2682.616108841352 -8977,11064,20062,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.603272541040143,8.674063544155329,6.70392875581218,0,0,-1023.658027102128,0,1,1,2019,11,0,48,45,1,0,0,14.80222554932276,14.80222554932276,0,0,0,0,0,1,1,0,7.235429603024577,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,5,8,5,1,708,40962.87216225434,-28140.91490067873,0,0,2682.616108841352 -8978,11065,20063,20064,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,9.552794652037264,10.36709866886525,9.141380351806713,21,8,28.11080265678427,0,1,1,2019,8,0,40,40,1,0,0,38.28747156733648,38.28747156733648,0,0,0,0,0,0,0,0,9.63178573471397,9.388644712694974,60.12,54.8,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,1090.333333333333,1768156.409314587,502522.103154806,259496.4997865823,59626.90769759667,15477.07519030776 -8978,11065,20064,20063,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,0,0,0,22,-8,14.97475120623551,1,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.068746649039889,0,51.83,57.2,60.12,54.8,10,1,1,0,0,7,9,5,1,1090.333333333333,1768156.409314587,502522.103154806,259496.4997865823,59626.90769759667,15477.07519030776 -8978,11065,20065,-9,20064,20063,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.1278724655258,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1090.333333333333,1768156.409314587,502522.103154806,259496.4997865823,59626.90769759667,15477.07519030776 -8979,11066,20066,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,6.452559622006232,6.631835853291999,0,0,0,-928.1334802484452,0,2,2,2019,27,10,15,15,1,10,0,6.617412162634751,6.617412162634751,0,0,0,0,0,1,1,0,0,0,26.29,28.57,-9,-9,3.333333333333333,1,1,0,1,8,4,2,0,254,115040.4880111169,0,0,0,1468.139976158656 -8980,11067,20067,20068,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.070508207377001,9.351847844501672,0,24,2,-66.65209937885813,0,2,1,2019,13,1,45,60,1,1,0,24.7562544346731,24.7562544346731,0,0,0,0,0,1,1,0,3.451427769582263,0,40.1,54.56,57.34,42.72,8.333333333333334,4,2,0,0,9,7,4,1,699,1892334.159608601,858454.5459560349,861013.0239893175,0,4293.96622565158 -8980,11067,20068,20067,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.60257955274129,7.44265901857347,0,24,-2,-4.548982001189156,0,2,2,2019,10,0,10,12,1,0,0,22.43236289183402,22.43236289183402,0,0,0,0,0,1,1,0,0,0,57.34,42.72,40.1,54.56,8.333333333333334,1,1,0,0,9,7,4,1,699,1892334.159608601,858454.5459560349,861013.0239893175,0,4293.96622565158 -8980,11067,20069,-9,20068,20067,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1010.490338816773,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.595001609829734,0,47.44,59.35,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,699,1892334.159608601,858454.5459560349,861013.0239893175,0,4293.96622565158 -8980,11067,20070,-9,20068,20067,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1047.420731691153,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,4,1,699,1892334.159608601,858454.5459560349,861013.0239893175,0,4293.96622565158 -8981,11068,20071,-9,20074,20073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.7067721947313,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1145,123255.528041926,15549.28193917548,144795.603870225,33295.66362395701,3276.749927142804 -8981,11068,20072,-9,20074,20073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.921791743967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1145,123255.528041926,15549.28193917548,144795.603870225,33295.66362395701,3276.749927142804 -8981,11068,20073,20074,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,9.042888501496654,8.768909565966952,0,7,-2,121.6179558190895,0,1,1,2019,6,0,50,50,1,0,0,17.25927820671661,17.25927820671661,0,0,0,0,0,0,0,0,7.899947789931388,0,44.02,60.7,44.19,58.01,8.333333333333334,1,1,0,0,8,4,4,1,1145,123255.528041926,15549.28193917548,144795.603870225,33295.66362395701,3276.749927142804 -8981,11068,20074,20073,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,7,2,-9.258130901736715,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.8150862463759736,0,44.19,58.01,44.02,60.7,8.333333333333334,1,1,0,0,0,4,4,1,1145,123255.528041926,15549.28193917548,144795.603870225,33295.66362395701,3276.749927142804 -8982,11069,20075,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-971.4893436714096,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,39.53,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,315,-28417.6761692967,0,0,0,553.079908414554 -8983,11070,20076,20079,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,9.040849525565829,9.186904226794248,0,14,-12,99.22312460648081,0,1,2,2019,8,0,38,38,1,0,0,26.5130123200358,26.5130123200358,0,0,0,0,0,0,0,0,0,0,52,54.51,41.11,60.68,8.333333333333334,1,1,0,0,9,8,5,1,528,3319742.143935078,2254643.849792712,884433.4617375565,0,4976.056372715957 -8983,11070,20077,-9,20076,20079,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.3391657576149,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,528,3319742.143935078,2254643.849792712,884433.4617375565,0,4976.056372715957 -8983,11070,20078,-9,20076,20079,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.962128625179,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,528,3319742.143935078,2254643.849792712,884433.4617375565,0,4976.056372715957 -8983,11070,20079,20076,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.816257239092515,8.525116941987484,5.21519049943196,15,12,-23.98919840839328,0,1,1,2019,15,4,70,37,1,4,0,9.852401621684486,9.852401621684486,0,0,0,0,0,0,0,0,6.029469314729637,0,41.11,60.68,52,54.51,3.333333333333333,1,1,0,0,12,8,5,1,528,3319742.143935078,2254643.849792712,884433.4617375565,0,4976.056372715957 -8984,11071,20080,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.42369555012365,8.687983929950336,0,0,0,-1115.486324394331,0,2,2,2019,5,1,37,38,1,1,0,19.4061819818765,19.4061819818765,0,0,0,0,0,1,1,0,0,0,44.26,59.43,-9,-9,8.333333333333334,3,4,0,1,11,7,4,0,418,208718.9888093342,-20528.945502194,425726.8717361399,129062.7217715359,2307.070500397992 -8984,11072,20081,-9,20080,-9,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-957.6460125554022,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.56,57.02,-9,-9,5,3,4,0,0,0,7,1,0,247,0,0,0,0,0 -8985,11073,20082,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.751127281897667,7.295534925813417,0,0,0,-917.0775190842925,0,2,2,2019,11,0,30,25,1,0,0,7.17716095232155,7.17716095232155,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,266,289164.0230203728,43148.08294254411,0,0,739.702161901507 -8986,11074,20083,-9,20085,20086,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.5140881570981,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,4,1,539,178014.6046906678,57797.20115820333,181373.8625019593,145402.4665019125,3433.789696203235 -8986,11074,20084,-9,20085,20086,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.863902358152,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,4,1,539,178014.6046906678,57797.20115820333,181373.8625019593,145402.4665019125,3433.789696203235 -8986,11074,20085,20086,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.552762802961242,8.476978854451229,0,12,-1,176.7517594898158,0,2,2,2019,15,3,34,34,1,3,0,22.27549715803683,22.27549715803683,0,0,0,0,0,1,1,0,2.687597187351594,0,36.04,48.3,40.59,46.29,6.666666666666667,2,3,0,0,11,12,4,1,539,178014.6046906678,57797.20115820333,181373.8625019593,145402.4665019125,3433.789696203235 -8986,11074,20086,20085,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,7.48903270864075,7.457887720280728,0,12,1,-3.78879650101928,0,2,2,2019,15,3,26,-9,1,3,0,6.979380404277408,6.979380404277408,0,0,0,0,0,1,1,0,4.048192533777729,0,40.59,46.29,36.04,48.3,5,2,3,0,0,10,12,4,1,539,178014.6046906678,57797.20115820333,181373.8625019593,145402.4665019125,3433.789696203235 -8987,11075,20087,20088,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.156029399430432,7.035410403042469,0,7,0,-37.46414003461211,0,2,2,2019,10,1,30,30,1,1,0,7.294553337185787,7.294553337185787,0,0,0,0,0,0,0,0,0,0,46.67,55.57,57.16,56.15,5,1,1,0,0,9,9,5,0,934,-8139.105889189057,1599.662411471134,0,0,932.0727222318629 -8987,11075,20088,20087,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.909663997681806,8.708618639371171,0,7,0,-109.8253978933624,0,2,2,2019,6,0,40,45,1,0,0,17.83455811281565,17.83455811281565,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.67,55.57,8.333333333333334,1,1,0,0,9,9,5,0,934,-8139.105889189057,1599.662411471134,0,0,932.0727222318629 -8988,11076,20089,20090,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.168636447151456,6.737933618317739,7,13,7.622683112923368,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.162044308434846,59.26,42.79,55.42,51.42,8.333333333333334,1,1,0,0,7,10,3,0,582,991431.1264280854,906378.3276530835,99397.00469560937,0,2096.23781363996 -8988,11076,20090,20089,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.209899155030952,8.19933414035189,0,7,-13,-172.0508690134225,0,2,1,2019,1,0,37,37,1,0,0,9.275496674560939,9.275496674560939,0,0,0,0,0,1,1,0,0,0,55.42,51.42,59.26,42.79,10,1,1,0,0,10,10,3,0,582,991431.1264280854,906378.3276530835,99397.00469560937,0,2096.23781363996 -8989,11077,20091,20092,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.95391219640531,6.165620568181692,7,-17,136.0825206040383,0,3,1,2019,27,9,0,0,4,9,0,0,0,1,0,3.299275578195748,0,27,1,1,0,2.724925818155633,6.197676115253199,37.6,14.31,55,45,3.333333333333333,1,1,0,0,0,11,2,0,711,439646.0933565692,194894.1878772504,157391.6894402598,0,1347.531877987914 -8989,11077,20092,20091,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.711705201827213,5.678941421063889,7,17,-111.8102871373626,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,30.63508983987449,0,0,1,1,0,0,5.642089755167196,55,45,37.6,14.31,8,1,1,0,0,0,11,2,0,711,439646.0933565692,194894.1878772504,157391.6894402598,0,1347.531877987914 -8990,11078,20093,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,2,8.372298095604442,8.40135001533649,0,0,0,-871.2310806970991,0,-9,-9,2019,15,4,50,40,1,4,0,10.93850309924862,10.93850309924862,0,0,0,0,0,0,0,0,0,0,37.62,40.13,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,283,111398.7980476365,-65386.90353683259,0,0,2168.898726398666 -8991,11079,20094,-9,20095,20097,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.925556351851,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,3,0,912.6,530311.2444950917,265428.4111665007,307180.9183596941,99294.21900475811,4577.823516217431 -8991,11079,20095,20097,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,8.004479379003559,7.807555305613909,0,25,1,61.29596019418933,0,1,1,2019,9,0,20,10,1,0,0,11.87091299010077,11.87091299010077,0,0,0,0,0,1,1,0,3.060572540518037,0,45.97,51.9,41.2,62.39,8.333333333333334,1,1,0,0,4,12,3,0,912.6,530311.2444950917,265428.4111665007,307180.9183596941,99294.21900475811,4577.823516217431 -8991,11079,20096,-9,20095,20097,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1151.329727062838,-9,1,1,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,912.6,530311.2444950917,265428.4111665007,307180.9183596941,99294.21900475811,4577.823516217431 -8991,11079,20097,20095,-9,-9,1,1,46,0,3,0,1,1,-9,0,5,8.770864423723918,8.571002942831692,0,25,-1,-113.631172539583,0,2,2,2019,13,3,50,55,1,3,0,13.7070996968154,13.7070996968154,0,0,0,0,0,1,1,0,7.367050179600525,0,41.2,62.39,45.97,51.9,8.333333333333334,1,1,0,0,6,12,3,0,912.6,530311.2444950917,265428.4111665007,307180.9183596941,99294.21900475811,4577.823516217431 -8991,11079,20098,-9,20095,20097,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.3598212191901,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,912.6,530311.2444950917,265428.4111665007,307180.9183596941,99294.21900475811,4577.823516217431 -8992,11080,20099,20101,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.43986218002402,9.44998150595038,0,18,0,-29.18232069546541,0,3,3,2019,8,0,45,52,1,0,0,33.28907089152562,33.28907089152562,0,0,0,0,0,0,0,0,4.899231129634942,0,57.33,53.46,52.6,47.34,8.333333333333334,1,1,0,0,9,5,5,1,554.3333333333334,438047.3492125669,90974.00281300496,555158.9102051075,289089.6992533846,5787.151517004005 -8992,11080,20100,-9,20101,20099,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-998.9922953474605,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,5,1,554.3333333333334,438047.3492125669,90974.00281300496,555158.9102051075,289089.6992533846,5787.151517004005 -8992,11080,20101,20099,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.154289110608453,8.041445779746937,0,18,0,54.06327050777505,0,3,3,2019,9,1,37,35,1,1,0,10.14399229126511,10.14399229126511,0,0,0,0,0,0,0,0,1.583367626037569,0,52.6,47.34,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,554.3333333333334,438047.3492125669,90974.00281300496,555158.9102051075,289089.6992533846,5787.151517004005 -8993,11081,20102,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.1174547015675,8.374537699664819,0,0,0,-977.2035256216619,0,2,2,2019,9,0,37,38,1,0,0,12.8224408450329,12.8224408450329,0,0,0,0,0,1,1,0,6.542688140383943,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,275,-40959.56173436155,34993.78789246851,0,0,1725.198878411931 -8993,11082,20103,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.709011631262248,7.997909837549419,0,0,0,-908.021413833312,-9,-9,-9,2019,10,0,37,0,1,1,0,8.715637742564773,8.715637742564773,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,6,0,0,1,9,3,1,851,40250.59474763462,72812.10638496045,0,0,1332.454819766963 -8994,11083,20104,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.634614932404373,7.802198274083039,0,0,0,-994.2118879888708,0,3,3,2019,28,11,30,28,1,11,0,11.07053014181166,11.07053014181166,0,0,0,0,0,0,0,0,0,0,26.86,63.5,-9,-9,1.666666666666667,1,1,0,0,10,8,3,1,1501,831107.3711429585,304382.4989823217,341478.470807348,0,407.088802758867 -8995,11084,20105,20106,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,32,-5,0,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,46.32,45.41,6.666666666666667,2,3,0,0,0,8,1,1,134,-67330.13689782833,0,0,0,676.5544262046303 -8995,11084,20106,20105,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,32,5,0,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,1.243440127033944,0,46.32,45.41,52.26,47.71,6.666666666666667,2,3,0,0,2,8,1,1,134,-67330.13689782833,0,0,0,676.5544262046303 -8995,11085,20107,-9,20105,20106,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1046.510538799299,-9,3,3,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,2,3,1,0,0,8,1,1,180,-126070.0093908434,0,0,0,0 -8995,11086,20108,-9,20105,20106,1,0,25,0,0,0,2,2,-9,0,3,7.556667602935062,7.376718817934463,0,0,0,-1099.528605006858,-9,3,3,2019,7,0,37,0,1,0,1,6.492866495886887,6.492866495886887,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,2,3,0,0,3,8,3,1,451,-200359.1212817834,0,0,0,649.8137730203704 -8995,11087,20109,-9,20105,20106,1,0,24,0,0,0,2,2,-9,0,3,7.405254333495195,7.156608505471292,0,0,0,-1099.435127424116,-9,3,3,2019,10,0,24,0,1,0,1,6.264583282255466,6.264583282255466,0,0,0,0,0,1,1,0,0,0,50.34,48.53,-9,-9,8.333333333333334,2,3,0,0,2,8,3,1,104,227752.1609341544,0,0,0,201.9992263859991 -8996,11088,20110,-9,20111,20112,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-810.3052667043023,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,778.3333333333334,540696.7522257144,144705.5085249589,601801.9335775009,140097.3792139006,4465.949471679734 -8996,11088,20111,20112,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,9.13795949235076,9.056172993038736,0,17,0,-127.8707504123311,0,2,2,2019,9,0,47,52,1,0,0,16.31452901138283,16.31452901138283,0,0,0,0,0,1,1,0,0,0,46.06,60.24,42.17,56.08,6.666666666666667,3,4,0,0,10,8,5,1,778.3333333333334,540696.7522257144,144705.5085249589,601801.9335775009,140097.3792139006,4465.949471679734 -8996,11088,20112,20111,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.382859657656974,8.465286879585868,0,17,9,-101.642363904863,0,2,1,2019,6,0,48,48,1,0,0,9.136875769639959,9.136875769639959,0,0,0,0,0,1,1,0,0,0,42.17,56.08,46.06,60.24,10,3,4,0,0,10,8,5,1,778.3333333333334,540696.7522257144,144705.5085249589,601801.9335775009,140097.3792139006,4465.949471679734 -8997,11089,20113,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,8.379695389350179,8.704846980451689,0,0,0,-929.9542448949536,-9,-9,-9,2019,15,3,40,0,1,3,0,14.60988151085339,14.60988151085339,0,0,0,0,0,1,1,0,0,0,47.26,52.47,-9,-9,1.666666666666667,1,1,0,1,10,7,4,0,3629,255871.3417810412,-60553.02141985856,0,0,2276.98746936844 -8998,11090,20114,20115,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.292907201945605,7.93880794619362,45,0,81.60250522572603,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.585132457109774,7.848344789584199,61.12,51.57,58.13,28.99,8.333333333333334,1,1,0,0,0,6,3,1,420,1570576.426370529,503984.0525874394,285685.9164904018,0,2635.342835148017 -8998,11090,20115,20114,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,45,0,13.02461155703638,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,4.986414281447212,0,0,1,1,0,4.977897834690692,0,58.13,28.99,61.12,51.57,8.333333333333334,1,1,0,0,0,6,3,1,420,1570576.426370529,503984.0525874394,285685.9164904018,0,2635.342835148017 -8999,11091,20116,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.560468129056012,8.575925776714275,0,0,-857.4942327544069,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.942122058745296,57.16,56.15,-9,-9,10,1,1,0,0,0,2,5,1,1970,5097386.387654813,515516.6552086015,372949.3138982843,0,3870.52181548216 -9000,11092,20117,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.421408448225673,8.450973652536494,0,0,0,-1075.190434330687,0,2,2,2019,25,11,23,26,1,11,0,21.88279141689468,21.88279141689468,0,0,0,0,0,1,1,0,7.550217309796136,0,21.91,67.26000000000001,-9,-9,3.333333333333333,1,1,0,0,12,10,4,1,94,149173.4284589018,238582.9107229376,192364.5813538875,18882.36708542646,2410.496226300716 -9001,11093,20118,-9,20119,20120,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-988.9573994241367,-9,2,1,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.982536892771144,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,5,1,700.3333333333334,1055705.061602729,786550.7892241696,566566.0421456046,286506.7889838545,5016.581687079545 -9001,11093,20119,20120,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.132650576668073,7.881951166309237,0,27,0,-57.26686580390812,0,1,3,2019,12,2,39,39,1,2,0,9.348658324505294,9.348658324505294,0,0,0,0,0,0,0,0,0,0,41.89,61.78,57.06,57.76,8.333333333333334,1,1,0,0,6,9,5,1,700.3333333333334,1055705.061602729,786550.7892241696,566566.0421456046,286506.7889838545,5016.581687079545 -9001,11093,20120,20119,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.270995442783732,9.353926671592001,0,25,0,19.32916526252672,0,3,3,2019,9,0,55,60,1,0,0,27.22260204771813,27.22260204771813,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.89,61.78,8.333333333333334,1,1,0,0,8,9,5,1,700.3333333333334,1055705.061602729,786550.7892241696,566566.0421456046,286506.7889838545,5016.581687079545 -9002,11094,20121,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.071316665131096,7.898285887335968,0,0,0,-893.390045333559,0,3,-9,2019,6,1,46,35,1,1,0,7.067040177496347,7.067040177496347,0,0,0,0,0,1,1,0,7.019478920257987,0,60.12,54.8,-9,-9,10,3,4,0,0,6,8,4,1,459,68707.6371552365,0,176717.5511320909,9691.278199765518,2244.372736552369 -9003,11095,20122,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.518962196848356,8.542578155627183,0,0,0,-886.0035938660894,0,2,3,2019,10,2,33,37,1,2,0,15.27895357130116,15.27895357130116,0,0,0,0,0,0,0,0,3.828881395969991,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,3678,485354.0623155572,226337.5285146927,310087.2158126418,0,1725.417538375453 -9003,11096,20123,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.511978172103195,8.126719142831952,0,0,0,-913.8240168817446,-9,-9,-9,2019,7,1,30,0,1,1,0,21.77378101869344,21.77378101869344,0,0,0,0,0,0,0,0,1.31302777296924,0,52.6,43.98,-9,-9,8.333333333333334,1,1,0,0,3,4,4,1,343,-50022.52140869424,65842.29091058714,81544.12537339397,65181.24784785446,1978.789279461124 -9004,11097,20124,20125,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.398646286645076,7.150007533897488,40,8,-66.01844992102134,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.897373448267516,6.82710608169349,60.12,54.8,55.93,49.95,8.333333333333334,1,1,0,0,1,2,2,1,312.5,482626.6446687747,309999.0716346776,149903.8705871649,0,1278.593670886858 -9004,11097,20125,20124,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,39,-8,-71.12815673126096,-9,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,2.648251996207591,0,55.93,49.95,60.12,54.8,8.333333333333334,1,1,0,0,9,2,2,1,312.5,482626.6446687747,309999.0716346776,149903.8705871649,0,1278.593670886858 -9005,11098,20126,20129,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,9,-7,-18.40454379274852,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.380493486259809,0,51.03,47.33,25.47,52.18,8.333333333333334,1,1,0,0,2,11,4,1,735.25,117993.3765954535,202387.6199301077,0,0,3434.988626150485 -9005,11098,20127,-9,20126,20129,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.4721408661349,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,735.25,117993.3765954535,202387.6199301077,0,0,3434.988626150485 -9005,11098,20128,-9,20126,20129,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.9723559354607,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,735.25,117993.3765954535,202387.6199301077,0,0,3434.988626150485 -9005,11098,20129,20126,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.742235464647743,9.260185922778486,0,9,7,70.84405929271884,0,2,3,2019,13,1,53,53,1,1,0,13.3406294526682,13.3406294526682,0,0,0,0,0,1,1,0,4.924733433225802,0,25.47,52.18,51.03,47.33,6.666666666666667,1,1,0,0,10,11,4,1,735.25,117993.3765954535,202387.6199301077,0,0,3434.988626150485 -9006,11099,20130,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,6.823195711275461,6.873156985934525,0,0,0,-918.5800026387074,0,3,-9,2019,8,0,8,0,1,0,0,9.125900864568225,9.125900864568225,0,0,0,0,0,1,1,0,0,0,60.23,50.76,-9,-9,10,1,1,0,0,6,7,2,1,204,228238.144858009,-66716.54544861105,0,0,754.4354323336585 -9006,11100,20131,-9,20130,-9,1,1,26,0,0,0,2,2,-9,1,1,0,0,0,0,0,-988.3187594031814,0,3,-9,2019,25,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,33.62,42.03,-9,-9,5,1,1,1,1,0,7,1,1,339,37069.25203501866,0,0,0,49.05116788807828 -9007,11101,20132,-9,20134,20133,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.9706737470464,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,962.5,685014.4313384017,343935.4879352242,526821.488895729,232285.5783267678,9259.171353181013 -9007,11101,20133,20134,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.496044117974655,9.801244664734551,0,19,-3,36.48264540817078,0,1,1,2019,16,6,38,42,1,6,0,51.45576156525044,51.45576156525044,0,0,0,0,0,0,0,0,6.230702967245094,0,39.76,61.21,58.62,52.91,8.333333333333334,1,1,0,0,12,9,5,1,962.5,685014.4313384017,343935.4879352242,526821.488895729,232285.5783267678,9259.171353181013 -9007,11101,20134,20133,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,9.566437783868222,9.314104626271842,0,19,3,-8.38944379731165,0,3,3,2019,7,0,38,40,1,0,0,31.87015728780431,31.87015728780431,0,0,0,0,0,0,0,0,5.549471228571071,0,58.62,52.91,39.76,61.21,8.333333333333334,1,1,0,0,7,9,5,1,962.5,685014.4313384017,343935.4879352242,526821.488895729,232285.5783267678,9259.171353181013 -9007,11101,20135,-9,20134,20133,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.5668959929434,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,962.5,685014.4313384017,343935.4879352242,526821.488895729,232285.5783267678,9259.171353181013 -9008,11102,20136,20137,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,5.816655495939201,5.394268140770447,52,-3,-32.751837080462,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.2472736747053981,5.455687997769664,41.07,60.93,57.16,56.15,10,1,1,0,0,0,11,2,1,201.5,433054.0077581209,238624.5757302745,166149.4388951903,0,1440.827535028494 -9008,11102,20137,20136,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.730181606402044,6.940703722972335,52,3,13.64987757580713,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.499547837123128,6.963965586111693,57.16,56.15,41.07,60.93,10,1,1,0,0,0,11,2,1,201.5,433054.0077581209,238624.5757302745,166149.4388951903,0,1440.827535028494 -9009,11103,20138,20141,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,26,-1,106.3751781769576,0,2,2,2019,12,1,0,34,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,57.16,56.15,5,1,1,0,0,6,10,3,1,844,745153.4238958723,623184.0518424897,162626.6051680539,45559.95252422544,2568.774746740807 -9009,11103,20139,-9,20138,20141,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.850855744605,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,1,844,745153.4238958723,623184.0518424897,162626.6051680539,45559.95252422544,2568.774746740807 -9009,11103,20140,-9,20138,20141,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-933.8077859102389,-9,1,2,2019,24,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.41,55.83,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,844,745153.4238958723,623184.0518424897,162626.6051680539,45559.95252422544,2568.774746740807 -9009,11103,20141,20138,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.389596221644185,8.807704583208572,7.051039139251135,7,1,52.9068587871089,0,-9,-9,2019,6,0,36,36,1,0,0,14.60166076797329,14.60166076797329,0,0,0,0,0,1,1,0,0,7.373289167337309,57.16,56.15,40.77,61.04,8.333333333333334,1,1,0,0,3,10,3,1,844,745153.4238958723,623184.0518424897,162626.6051680539,45559.95252422544,2568.774746740807 -9010,11104,20142,20143,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.033790488727217,8.049596319162248,7,0,9.186145862477666,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,7.231312992877361,8.289670005934173,61.44,40.51,50,47,8.333333333333334,1,1,0,0,5,7,4,1,428.5,1121797.746682165,710699.1229702889,261171.3808559766,0,4229.293776974228 -9010,11104,20143,20142,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.723910121083474,7.558014624073484,7,0,53.01306868959016,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.575468897630092,7.407594115016321,50,47,61.44,40.51,7,1,1,0,0,0,7,4,1,428.5,1121797.746682165,710699.1229702889,261171.3808559766,0,4229.293776974228 -9011,11105,20144,20146,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.132836905248487,8.250655191585723,0,7,5,-54.49203769032322,0,-9,-9,2019,19,7,40,49,1,7,0,11.007662196066,11.007662196066,0,0,0,0,0,0,0,0,2.406351847941961,0,48.45,57.49,50.43,53.69,5,1,1,0,0,7,10,4,1,998.6666666666666,143781.0462049931,140765.2558661749,127239.034708738,104206.71299001,2308.931859522436 -9011,11105,20145,-9,20146,20144,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.586564712754,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,998.6666666666666,143781.0462049931,140765.2558661749,127239.034708738,104206.71299001,2308.931859522436 -9011,11105,20146,20144,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.453325174903586,7.510528867491847,0,7,-5,76.98483229707375,0,2,2,2019,10,1,26,22,1,1,0,9.30017135377571,9.30017135377571,0,0,0,0,0,0,0,0,.8888066502890019,0,50.43,53.69,48.45,57.49,8.333333333333334,1,1,0,0,7,10,4,1,998.6666666666666,143781.0462049931,140765.2558661749,127239.034708738,104206.71299001,2308.931859522436 -9012,11106,20147,-9,20149,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1061.849630029297,-9,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,9,1,1,584,148111.9954200348,0,0,0,-252.8118088605294 -9012,11107,20148,20149,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.960983267302774,8.802986403736735,0,2,8,-22.21109961236964,0,-9,-9,2019,10,0,60,50,1,0,0,11.25364784330855,11.25364784330855,0,0,0,0,0,0,0,0,6.994865168470175,0,49.91,58.02,34.5,44.11,8.333333333333334,1,1,0,0,1,9,5,1,1472.5,1398060.545311765,819894.239176071,719647.6640396058,225825.4074378202,5341.667199228395 -9012,11107,20149,20148,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.78656040384951,8.77563432276181,0,2,-8,-109.6187429511824,0,3,2,2019,25,11,40,40,1,11,0,15.69483517082726,15.69483517082726,0,0,0,0,0,0,0,0,0,0,34.5,44.11,49.91,58.02,6.666666666666667,1,1,0,0,6,9,5,1,1472.5,1398060.545311765,819894.239176071,719647.6640396058,225825.4074378202,5341.667199228395 -9013,11108,20150,20151,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,2.233906892040177,2.194380364639555,0,18,-1,-127.4879461020155,0,1,1,2019,6,0,12,0,1,0,0,.0931182787328039,.0931182787328039,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.86,55.31,8.333333333333334,1,1,0,0,4,6,5,0,380,146813.1849505917,87289.85182672399,120258.4731026313,90836.2848268344,2743.429758293812 -9013,11108,20151,20150,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.13214833705123,8.748459404556277,0,18,1,-48.07413805069259,-9,2,1,2019,6,0,45,0,1,0,0,18.94304220711143,18.94304220711143,0,0,0,0,0,0,0,0,0,0,49.86,55.31,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,0,380,146813.1849505917,87289.85182672399,120258.4731026313,90836.2848268344,2743.429758293812 -9014,11109,20152,20153,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.046953187820595,8.641655256984107,7.871143263276585,9,4,47.33342838597741,0,-9,-9,2019,10,0,5,0,1,1,0,62.02176882714897,62.02176882714897,0,0,0,0,0,0,0,0,3.829854402869242,8.283380576495869,51,48,55.96,49.93,7,1,1,0,0,1,10,5,1,1204.5,2091363.809793975,1985012.37000436,194747.1803836492,0,3987.485098178824 -9014,11109,20153,20152,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.076394284053295,6.869111476686248,0,42,-4,86.88575338845146,0,2,-9,2019,8,0,22,26,1,0,0,6.784326214618432,6.784326214618432,0,0,0,0,2,0,0,0,2.64300300506776,0,55.96,49.93,51,48,8.333333333333334,1,1,0,0,10,10,5,1,1204.5,2091363.809793975,1985012.37000436,194747.1803836492,0,3987.485098178824 -9014,11110,20154,-9,20153,20152,1,1,25,0,0,0,2,2,-9,0,4,7.979103079987998,7.937416633954919,0,0,0,-996.083689262937,0,2,2,2019,10,0,39,40,1,1,1,7.153613046780346,7.153613046780346,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,3,1,284,160446.8752675739,-137308.5289267716,232104.1031833338,126262.2033276723,1487.296162007265 -9015,11111,20155,20156,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.817270529800519,7.842722121048681,0,1,-1,-33.55467225713821,-9,-9,-9,2019,12,1,48,0,1,1,0,8.410881175397265,8.410881175397265,0,0,0,0,0,0,0,0,5.515916917987298,0,38.44,46.65,49.04,55.86,8.333333333333334,1,1,0,0,2,9,4,0,512.5,47731.42697064361,3187.201948399899,428609.5157609843,369457.2795846544,2901.733884662753 -9015,11111,20156,20155,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.111858726690537,8.359607383403434,0,1,1,-41.97033796482956,-9,-9,-9,2019,12,0,40,0,1,0,0,8.317493824302611,8.317493824302611,0,0,0,0,0,0,0,0,1.39503326904096,0,49.04,55.86,38.44,46.65,6.666666666666667,1,1,0,0,2,9,4,0,512.5,47731.42697064361,3187.201948399899,428609.5157609843,369457.2795846544,2901.733884662753 -9016,11112,20157,20158,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.091758807624407,7.74122153637829,10,7,45.30461209419173,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,1.088964604038673,8.179728257596908,62.99,38.46,49.91,17.74,5,1,1,0,0,3,10,3,1,1198.5,1471317.374250727,745330.1426706481,602466.4645598391,0,2981.247620813712 -9016,11112,20158,20157,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.160128027434262,6.289923836044134,10,-7,83.81510740332921,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,39.35818892541874,0,0,1,1,0,0,6.321031926818518,49.91,17.74,62.99,38.46,3.333333333333333,1,1,0,0,8,10,3,1,1198.5,1471317.374250727,745330.1426706481,602466.4645598391,0,2981.247620813712 -9017,11113,20159,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.225136840196411,7.998171010918033,0,0,-1028.082328306662,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.85691775160306,8.353525590434897,51.89,49.21,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,664,642063.7938359238,542977.7019316932,148539.2707372035,0,2633.780459314664 -9018,11114,20160,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.026046899560869,7.844737232740211,0,0,0,-978.4341852777284,-9,2,3,2019,19,7,34,0,1,7,0,7.930635990454719,7.930635990454719,0,0,0,0,0,1,1,0,.3045283022785974,0,31.37,62.71,-9,-9,6.666666666666667,2,3,0,0,3,6,4,1,2041,66738.6365929133,0,0,0,1971.773767814911 -9019,11115,20161,20162,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.654302490748874,9.132079326633965,0,17,0,116.5183542157754,0,2,2,2019,14,2,50,50,1,2,0,32.34595603122128,32.34595603122128,0,0,0,0,0,0,0,0,.9359095624350238,0,48.18,61.8,43.44,61.22,5,1,1,0,1,9,8,5,0,1086,159399.9680643351,44423.62573542367,455469.2929826284,348574.0016689928,6556.916288777818 -9019,11115,20162,20161,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,8.370617439468399,8.682798860272534,0,17,0,63.32350472145238,0,2,2,2019,16,5,38,37,1,5,0,16.19673958518044,16.19673958518044,0,0,0,1.700889122280104,0,0,0,0,0,0,43.44,61.22,48.18,61.8,6.666666666666667,2,3,0,0,3,8,5,0,1086,159399.9680643351,44423.62573542367,455469.2929826284,348574.0016689928,6556.916288777818 -9019,11115,20163,-9,20162,20161,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.680152381795,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,0,1086,159399.9680643351,44423.62573542367,455469.2929826284,348574.0016689928,6556.916288777818 -9019,11115,20164,-9,20162,20161,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-990.596955384515,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,1086,159399.9680643351,44423.62573542367,455469.2929826284,348574.0016689928,6556.916288777818 -9020,11116,20165,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1014.787871918612,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.99,13.98,-9,-9,5,1,1,0,0,7,9,2,1,937,349663.638564383,101199.5460297909,60778.0112825768,0,-50.07168256842647 -9020,11117,20166,-9,20165,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1062.182243647933,0,2,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,268,-215749.3335292454,0,0,0,-62.85871806294602 -9021,11118,20167,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1064.702170393679,0,2,2,2019,15,3,0,44,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,29.77,55.3,-9,-9,6.666666666666667,1,1,1,0,3,6,1,0,668,0,0,0,0,0 -9022,11119,20168,20169,-9,-9,1,0,73,0,0,0,1,1,-9,0,5,0,7.89872216540446,7.475332822802426,52,-1,-148.6251834737744,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.623675802196593,7.778788989959601,56.96,51,68.03,40.23,10,1,1,0,0,0,2,5,1,363.5,2170734.322023232,668570.4989021311,690578.5533085843,0,4870.662299340096 -9022,11119,20169,20168,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.531846442345472,8.249222938023111,52,1,44.22128314982945,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.21601129870403,8.205010722070925,68.03,40.23,56.96,51,8.333333333333334,1,1,0,0,0,2,5,1,363.5,2170734.322023232,668570.4989021311,690578.5533085843,0,4870.662299340096 -9023,11120,20170,-9,20172,20171,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-888.5735310501715,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,797.75,1392735.789636746,1157580.069708065,273300.6200941805,110363.5450249103,1076.475572850178 -9023,11120,20171,20172,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,6.493796943653249,7.292019039570761,6.55327280562897,12,8,-94.56537456151491,0,-9,2,2019,8,0,40,45,1,0,0,2.163868660998715,2.163868660998715,0,0,0,0,0,1,1,0,0,6.575335816096993,53.62,48.74,23.1,68.18000000000001,8.333333333333334,1,1,0,1,11,10,2,0,797.75,1392735.789636746,1157580.069708065,273300.6200941805,110363.5450249103,1076.475572850178 -9023,11120,20172,20171,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,14,-8,56.50488571783398,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,23.1,68.18000000000001,53.62,48.74,5,1,1,0,0,1,10,2,0,797.75,1392735.789636746,1157580.069708065,273300.6200941805,110363.5450249103,1076.475572850178 -9023,11120,20173,-9,20172,20171,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-940.6235355388923,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,2,0,797.75,1392735.789636746,1157580.069708065,273300.6200941805,110363.5450249103,1076.475572850178 -9024,11121,20174,20175,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.299454606190355,7.103709082383732,8,3,177.7450158974731,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.403359630397557,7.109698218219809,40.32,53.3,51.51,25.24,6.666666666666667,1,1,0,0,0,6,2,1,457,152750.6460798153,-12415.61098129055,135122.1149868632,0,2028.139475977973 -9024,11121,20175,20174,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.762569791257373,4.634510736953937,8,-3,-84.69215359089806,0,2,2,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.087357657000183,4.644398338789207,51.51,25.24,40.32,53.3,8.333333333333334,1,1,0,0,0,6,2,1,457,152750.6460798153,-12415.61098129055,135122.1149868632,0,2028.139475977973 -9025,11122,20176,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1084.13465861016,0,2,1,2019,26,9,0,38,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,28.28,57.87,-9,-9,3.333333333333333,1,1,1,1,7,13,1,0,282,0,0,0,0,-52.2540724901512 -9026,11123,20177,20178,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,8.28476843266561,8.172231685653442,7.822432419828998,5,-3,162.2845644882402,0,-9,-9,2019,7,0,35,35,1,0,0,9.957160761925616,9.957160761925616,0,0,0,.1533039323310028,0,1,1,0,6.188659271371628,7.666171132643928,59.53,56.44,58.05,46.31,10,3,4,0,0,12,9,4,1,624,1137752.831015365,718210.6246064303,808370.2587193118,427497.8331132102,4980.481696476256 -9026,11123,20178,20177,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.07676489362481,7.143905014001412,5,3,-142.8095126035086,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.044625604393752,7.346026085623969,58.05,46.31,59.53,56.44,8.333333333333334,1,1,0,0,10,9,4,1,624,1137752.831015365,718210.6246064303,808370.2587193118,427497.8331132102,4980.481696476256 -9027,11124,20179,20181,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.245529203282612,7.482518056359756,0,2,-4,-117.7108146910626,0,-9,-9,2019,9,1,30,30,1,1,0,7.125663511113855,7.125663511113855,0,0,0,0,0,1,1,0,0,0,43.12,58.55,51.89,51.11,8.333333333333334,1,1,0,0,1,11,3,0,519.3333333333334,12935.47028861321,-108071.8663481568,0,0,2868.070363435027 -9027,11124,20180,-9,20179,20181,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.0636731153654,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,3,0,519.3333333333334,12935.47028861321,-108071.8663481568,0,0,2868.070363435027 -9027,11124,20181,20179,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,7.938821081635818,7.905416961506558,0,2,4,-8.466798849328146,0,-9,-9,2019,11,0,48,0,1,0,0,6.836151572476168,6.836151572476168,0,0,0,0,0,1,1,0,0,0,51.89,51.11,43.12,58.55,5,3,4,0,0,1,11,3,0,519.3333333333334,12935.47028861321,-108071.8663481568,0,0,2868.070363435027 -9028,11125,20182,20185,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.64579760677276,9.933140115792371,0,18,-1,97.89644146808732,0,2,3,2019,7,0,37,41,1,0,0,46.60103532597903,46.60103532597903,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,13,5,1,543.25,644506.3364703389,243082.5389485339,140213.3264152696,16044.24076190401,7197.138915731703 -9028,11125,20183,-9,20185,20182,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-980.0841959766191,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,13,5,1,543.25,644506.3364703389,243082.5389485339,140213.3264152696,16044.24076190401,7197.138915731703 -9028,11125,20184,-9,20185,20182,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.4364064487115,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,543.25,644506.3364703389,243082.5389485339,140213.3264152696,16044.24076190401,7197.138915731703 -9028,11125,20185,20182,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.339508848960508,7.665283676555994,0,8,1,26.84598315007862,0,-9,-9,2019,6,0,20,32,1,0,0,8.533019854329831,8.533019854329831,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,9,13,5,1,543.25,644506.3364703389,243082.5389485339,140213.3264152696,16044.24076190401,7197.138915731703 -9029,11126,20186,20187,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,9.539643562726896,9.641166094329234,47,7,-18.49983983673696,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.288226927783566,9.693268854724188,42.32,53.85,35.74,40.63,6.666666666666667,1,1,0,0,2,9,5,1,1632.5,13434577.24196448,2141469.816332383,962457.9623603369,0,11177.22994036264 -9029,11126,20187,20186,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.586312312786207,8.701356553483993,47,-7,2.760571996763086,0,3,2,2019,19,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.038344591423431,8.756954512977442,35.74,40.63,42.32,53.85,3.333333333333333,1,1,0,0,0,9,5,1,1632.5,13434577.24196448,2141469.816332383,962457.9623603369,0,11177.22994036264 -9030,11127,20188,20189,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.977646250826284,7.173297486236417,31,13,42.80755664115059,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.981655929244191,7.097975833481459,59.46,46.99,56.47,59.4,8.333333333333334,1,1,0,0,0,6,2,1,416.5,423737.0038741599,168748.9290302218,144161.0956634942,0,2326.622270807872 -9030,11127,20189,20188,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,31,-13,-89.4585137899869,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.904418614003213,0,56.47,59.4,59.46,46.99,10,1,1,0,0,0,6,2,1,416.5,423737.0038741599,168748.9290302218,144161.0956634942,0,2326.622270807872 -9031,11128,20190,20191,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.16284326802541,7.08465026011537,0,37,6,40.25557024063587,0,1,1,2019,10,0,38,-9,1,1,0,4.200614475064698,4.200614475064698,0,0,0,0,0,0,0,0,0,0,51,49,41.88,45.75,7,2,3,0,0,7,2,4,1,2260.5,1409938.933418312,498950.5877183296,375059.8767237218,0,2167.252242377459 -9031,11128,20191,20190,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.647905371156427,7.744922531040555,0,37,-6,29.68580690666543,0,3,3,2019,20,8,41,42,1,8,0,7.56981542958595,7.56981542958595,0,0,0,0,0,0,0,0,7.449525125889101,0,41.88,45.75,51,49,8.333333333333334,2,3,0,0,10,2,4,1,2260.5,1409938.933418312,498950.5877183296,375059.8767237218,0,2167.252242377459 -9031,11129,20192,-9,20191,20190,1,1,24,0,0,0,1,1,1,0,4,6.760072546954063,7.137847714971099,0,0,0,-921.8753566123887,-9,1,1,2019,0,0,54,0,1,0,1,2.233042356054197,2.233042356054197,0,0,0,1.268610793415755,0,0,0,0,0,0,10.9,68.21000000000001,-9,-9,10,2,3,0,0,3,2,3,1,1015,-78293.20700247992,73803.71464687493,0,0,384.4032140581273 -9031,11130,20193,-9,20191,20190,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-989.3876303928197,-9,1,1,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,2,3,1,0,0,2,1,1,259,20790.94569600559,0,0,0,0 -9032,11131,20194,20195,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,8,1,-75.50619570846959,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.564761904451057,1.817407710413978,24.23983373320761,0,1,1,0,0,0,56.76,30.79,52.99,51.28,8.333333333333334,1,1,0,0,0,7,3,0,707.5,667962.1192869534,414099.2945276664,274736.2505112629,0,2015.574009796857 -9032,11131,20195,20194,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.56105513363902,7.548008500365872,8,-1,66.17365688648256,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.836112199851503,7.996860780937915,52.99,51.28,56.76,30.79,8.333333333333334,1,1,0,0,3,7,3,0,707.5,667962.1192869534,414099.2945276664,274736.2505112629,0,2015.574009796857 -9033,11132,20196,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.279722828406744,8.093361310937471,0,0,0,-868.0282048906486,0,2,2,2019,12,5,37,37,1,5,0,12.5060447023725,12.5060447023725,0,0,0,0,0,1,1,0,6.6578097981531,0,33.92,53.44,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,1579,-123793.7162113042,61674.07094653058,34024.37293488663,55408.34175042817,1666.047388451784 -9034,11133,20197,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.63455629286511,5.645633393629093,0,0,-971.6600485382284,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.0309854344972558,5.983808909215209,62.99,41.16,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,934,107326.662592982,-86669.43692485207,0,0,-78.6111491790715 -9035,11134,20198,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,9.28842480260718,9.386657867351651,0,0,0,-1014.622410243028,0,2,-9,2019,13,1,49,47,1,1,0,19.75505948226696,19.75505948226696,0,0,0,0,0,0,0,0,4.845510704448406,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,245,625491.5410201702,145527.0331258119,196751.6974906847,0,2921.740668859408 -9036,11135,20199,20200,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.295862975633487,7.468096162209728,0,6,1,-78.48395802245977,0,3,3,2019,13,2,26,22,1,2,0,7.841841766831528,7.841841766831528,0,0,0,0,0,0,0,0,0,0,41.64,54.12,38.23,46.31,5,1,1,0,0,7,9,3,1,549.5,630630.409577436,97027.6900581737,546019.387017108,93923.62594861322,1472.746956756338 -9036,11135,20200,20199,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.234298326359135,7.127234433242534,0,6,-1,-1.945499981677762,0,3,2,2019,18,7,20,20,1,7,0,8.261566691956121,8.261566691956121,0,0,0,0,0,0,0,0,0,0,38.23,46.31,41.64,54.12,5,1,1,0,0,7,9,3,1,549.5,630630.409577436,97027.6900581737,546019.387017108,93923.62594861322,1472.746956756338 -9037,11136,20201,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-805.1383937568866,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,309,-51484.37377270882,0,176596.7603242281,0,885.4536312466191 -9038,11137,20202,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.141308782760699,5.77410380647044,0,0,-1011.448214639522,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,30.47102481348813,0,0,1,1,0,0,6.113882377455746,53.08,19.74,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,975,-54166.39333747833,-22147.21845780806,0,0,1326.030244259182 -9039,11138,20203,20204,-9,-9,1,1,79,0,0,0,1,1,-9,0,1,0,0,0,57,3,0,0,-9,2,2019,8,1,0,0,4,1,0,0,0,1,0,2.978036391168937,0,2,1,1,0,.301672770070268,0,58.13,27.52,56.93,12.04,10,1,1,0,0,0,10,1,0,296.5,634297.6969439326,0,298707.6425705405,0,3072.195765775242 -9039,11138,20204,20203,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,57,-3,0,0,1,1,2019,17,6,0,0,4,6,0,0,0,1,0,4.5105918452849,0,120,1,1,0,.6442394191817519,0,56.93,12.04,58.13,27.52,5,1,1,0,0,0,10,1,0,296.5,634297.6969439326,0,298707.6425705405,0,3072.195765775242 -9040,11139,20205,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.327219253785578,5.827329087636177,0,0,-829.9955831498078,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.432195893915935,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,397,233663.1572814531,103350.8462945211,179564.3832400999,26659.94320239096,130.8580244011704 -9041,11140,20206,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,7.003892208350754,7.362593168183826,0,0,-868.7886195793088,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.634563797819995,7.003744221708387,55.09,55.87,-9,-9,10,1,1,0,0,5,6,2,1,379,581584.500862064,147225.6615944925,159280.1918578487,0,1126.858638441521 -9042,11141,20207,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.059384596764476,6.076953619242122,0,0,-829.1492523662752,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.540283674720034,0,0,1,1,0,0,6.405888470352091,47.38,50.99,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,749,594058.3453153049,239744.2666668412,132614.7537375501,0,885.3715216395456 -9043,11142,20208,20209,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.055111594710122,7.322163137899602,49,1,-7.679977159176537,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.321523175611765,62.39,56.71,57.73,54.53,10,1,1,0,0,4,11,3,1,1023.5,1014703.523939982,837530.0133448022,224624.1694206435,0,2838.022564449187 -9043,11142,20209,20208,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.353129785513481,7.761175284282656,49,-1,48.33291923919285,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.50924162266198,57.73,54.53,62.39,56.71,10,1,1,0,0,4,11,3,1,1023.5,1014703.523939982,837530.0133448022,224624.1694206435,0,2838.022564449187 -9043,11143,20210,-9,20208,20209,1,1,41,0,0,0,2,2,-9,0,4,7.63199558799958,7.544463810240034,0,0,0,-1031.207209452088,0,1,1,2019,9,0,37,35,1,1,0,5.156019292780289,5.156019292780289,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,7,1,1,0,0,1,11,3,1,383,33044.35476572264,70826.30124099008,0,0,2261.014402784293 -9044,11144,20211,-9,20213,20212,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.291121386156,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,414.75,-56247.28247724722,41486.04932438289,0,0,2866.237104460896 -9044,11144,20212,20213,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.467900605407731,8.414579855274336,4.192267778359453,7,4,-91.99115105791132,0,3,3,2019,6,0,43,52,1,0,0,11.41683642967573,11.41683642967573,0,0,0,0,0,1,1,0,4.325841479174464,0,57.16,56.15,59.31,33.75,6.666666666666667,1,1,0,0,8,11,4,1,414.75,-56247.28247724722,41486.04932438289,0,0,2866.237104460896 -9044,11144,20213,20212,-9,-9,1,0,35,1,2,0,2,2,-9,1,2,7.075134698998464,7.12749014803979,0,7,-4,-41.18482995768812,0,3,3,2019,10,1,20,31,1,1,0,6.978130112053414,6.978130112053414,0,0,0,0,0,1,1,0,0,0,59.31,33.75,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,414.75,-56247.28247724722,41486.04932438289,0,0,2866.237104460896 -9044,11144,20214,-9,20213,20212,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.154974225506,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,414.75,-56247.28247724722,41486.04932438289,0,0,2866.237104460896 -9045,11145,20215,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.694196388661412,9.051081893570519,0,0,0,-1036.184427900735,0,-9,-9,2019,15,3,50,49,1,3,0,13.48115054667811,13.48115054667811,0,0,0,0,0,0,0,0,0,0,50.93,51.1,-9,-9,6.666666666666667,1,1,0,0,7,1,5,1,234,90557.77472835884,111914.4702768146,0,0,2107.810053689186 -9046,11146,20216,20217,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.649994802426335,8.531479782092539,0,27,-2,-128.0968013739222,0,2,2,2019,10,3,45,35,1,3,0,14.13850497511061,14.13850497511061,0,0,0,0,0,0,0,0,5.920783681680681,0,61.88,39,48.18,61.8,8.333333333333334,1,1,0,0,11,2,5,1,1046.5,1204148.453186571,124340.220129347,377763.9954643456,0,4654.851594013823 -9046,11146,20217,20216,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.465032603440436,8.476063697104975,0,26,2,-39.45143311170568,0,2,2,2019,6,0,50,50,1,0,0,11.69976031128272,11.69976031128272,0,0,0,0,0,0,0,0,0,0,48.18,61.8,61.88,39,8.333333333333334,1,1,0,0,11,2,5,1,1046.5,1204148.453186571,124340.220129347,377763.9954643456,0,4654.851594013823 -9047,11147,20218,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.055769808784435,7.891283250515226,0,0,0,-1133.945346505264,0,3,3,2019,10,1,37,37,1,1,0,7.720335608683442,7.720335608683442,0,0,0,0,7,0,0,0,0,0,50.51,53.71,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,466,333006.6164965821,127512.8588033641,457085.0951534875,27374.25707067404,1050.462069963368 -9047,11148,20219,-9,20218,-9,1,0,22,0,0,0,2,2,-9,0,4,7.683524084207002,7.3401482933142,0,0,0,-1088.644586380503,0,1,-9,2019,2,0,38,0,1,0,1,5.828777383379685,5.828777383379685,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,4,2,0,1,6,1,3,1,591,-39669.8538723761,0,0,0,870.514939030224 -9048,11149,20220,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.112898326977895,7.053565205738455,0,0,-994.5157805346184,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.268136285241658,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,4773,-55263.19528422572,0,0,0,915.5777625268697 -9049,11150,20221,20222,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.272545792927536,8.27707858671511,45,2,-1.058198064563643,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.148047697794835,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,486.5,1114562.919054558,694747.9828114239,189442.6975948809,0,4411.801113535297 -9049,11150,20222,20221,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,8.01559446605064,7.643171744855272,45,-2,31.91728951597683,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.14605895728763,7.561002157105725,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,3,9,4,1,486.5,1114562.919054558,694747.9828114239,189442.6975948809,0,4411.801113535297 -9050,11151,20223,20224,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,6.470083015274633,6.81657557389079,10,-4,-68.42727415183765,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.136276517239668,6.879790832557783,49.34,58.54,45.18,57.44,8.333333333333334,1,1,0,0,8,9,2,1,729.5,4872866.882078396,1346301.44709137,2491745.2230783,0,2583.999174088825 -9050,11151,20224,20223,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,5.984122771388741,6.439086567380827,10,4,25.76105073776614,-9,1,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,3.417975832426569,6.697449345827634,45.18,57.44,49.34,58.54,8.333333333333334,1,1,0,0,9,9,2,1,729.5,4872866.882078396,1346301.44709137,2491745.2230783,0,2583.999174088825 -9051,11152,20225,20226,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.832070824283107,7.121586080561586,56,-4,-33.01322614407274,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.993224441386726,7.405694980792097,45.67,33.47,59.89,42.51,8.333333333333334,1,1,0,0,0,9,3,1,943,1585035.572754663,503750.3610825725,549476.2249209532,0,2904.538127252633 -9051,11152,20226,20225,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,7.654960829443068,7.945264971079759,54,4,62.61587790065519,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.122922244569121,7.926390080396213,59.89,42.51,45.67,33.47,10,1,1,0,0,0,9,3,1,943,1585035.572754663,503750.3610825725,549476.2249209532,0,2904.538127252633 -9052,11153,20227,20228,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.608470081787429,8.521477606840145,0,21,6,104.4204974533731,0,-9,-9,2019,11,2,40,37,1,2,0,16.59241983102388,16.59241983102388,0,0,0,0,0,1,1,0,0,0,36.35,53.49,48.65,27.96,8.333333333333334,1,1,0,0,10,2,3,1,302.5,258052.0668996114,-603.2010602807059,54297.87939016258,20962.92895892943,1981.874744747698 -9052,11153,20228,20227,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,4.687572357656674,4.859504981529362,0,22,-6,-71.87888291934186,0,-9,-9,2019,23,11,11,0,1,11,0,1.38413412390217,1.38413412390217,0,0,0,0,0,1,1,0,0,0,48.65,27.96,36.35,53.49,5,1,1,0,0,1,2,3,1,302.5,258052.0668996114,-603.2010602807059,54297.87939016258,20962.92895892943,1981.874744747698 -9053,11154,20229,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.623190961873962,5.689146005041103,0,0,-921.7866497166124,0,3,3,2019,26,9,0,0,4,9,0,0,0,1,72.66910360025703,68.26561796446123,687.7262555462198,0,1,1,0,5.421026284753629,5.541911631388605,19.01,22.64,-9,-9,8.333333333333334,1,1,0,1,0,6,2,1,595,114769.6418667173,89256.38557874589,228835.8024684752,0,893.6928677061892 -9054,11155,20230,20231,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.807259870899833,8.034045281718855,0,6,-1,8.792446487458609,0,2,2,2019,12,4,43,42,1,4,0,7.095634232972921,7.095634232972921,0,0,0,0,0,0,0,0,4.258990080434336,0,41.7,60.44,57.61,16.97,8.333333333333334,1,1,0,0,7,7,4,1,756.5,842456.1827279408,285717.0506303267,430093.7016162887,26241.632394934,3180.024581713998 -9054,11155,20231,20230,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.386860745448397,8.365351611090942,0,6,1,-35.41649730116537,0,2,2,2019,18,5,50,49,1,5,0,9.836811661938578,9.836811661938578,0,0,0,0,2,0,0,0,0,0,57.61,16.97,41.7,60.44,6.666666666666667,1,1,0,0,9,7,4,1,756.5,842456.1827279408,285717.0506303267,430093.7016162887,26241.632394934,3180.024581713998 -9055,11156,20232,20233,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.582645823301532,6.870238316828316,58,8,-37.48950070210253,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.584438526337265,55,45,52,45,8,2,3,0,0,0,8,2,1,705.5,278950.5038531934,68374.22544060541,174008.2494910148,0,1376.506238494686 -9055,11156,20233,20232,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,58,-8,65.11899000279074,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,8,2,1,705.5,278950.5038531934,68374.22544060541,174008.2494910148,0,1376.506238494686 -9055,11157,20234,-9,20233,20232,1,1,56,0,0,0,2,2,-9,0,3,8.444842823466688,8.134766045446263,0,0,0,-1012.057380653628,0,3,3,2019,10,0,37,38,1,0,0,12.10876168859149,12.10876168859149,0,0,0,0,7,1,1,0,6.281867839603458,0,48.45,57.49,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,455,692148.4427353234,867009.6963360411,149350.8331549521,53957.37336372683,2211.537711508919 -9056,11158,20235,20236,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.068646028777884,8.538747902717148,7.627460548614262,5,7,-16.29572736952094,0,3,2,2019,17,6,37,42,1,6,0,12.03701724254609,12.03701724254609,0,0,0,0,14.5,1,1,0,0,8.137238196591804,51.24,58.84,46.08,57.2,5,1,1,0,0,8,9,5,1,831,718050.568136869,284881.9186371656,274760.5471187489,41820.35869408802,3330.9185631228 -9056,11158,20236,20235,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.068754820778242,8.097288984733172,0,5,-7,62.64827812575705,0,-9,-9,2019,10,0,37,37,1,0,0,8.64902186119782,8.64902186119782,0,0,0,0,42,1,1,0,0,0,46.08,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,831,718050.568136869,284881.9186371656,274760.5471187489,41820.35869408802,3330.9185631228 -9057,11159,20237,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.30796882218014,8.042645274106862,0,0,0,-889.2118160150533,0,-9,-9,2019,9,0,40,6,1,0,0,10.01424429457102,10.01424429457102,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,6,2,4,0,797,86976.13050663043,-39668.44303984506,0,0,1097.070802586834 -9058,11160,20238,20239,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.415976327045044,7.050966106468455,24,12,-55.84608148957139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.321794207539177,59.43,58.05,62.43,40.11,10,1,1,0,0,0,4,4,1,755,516183.5150932737,205221.8828279242,230986.0463509394,-2340.463618880381,3589.294606978177 -9058,11160,20239,20238,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.349637601083598,8.347672735594548,24,-12,-46.30566664870366,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.423077546539893,62.43,40.11,59.43,58.05,8.333333333333334,1,1,0,0,6,4,4,1,755,516183.5150932737,205221.8828279242,230986.0463509394,-2340.463618880381,3589.294606978177 -9059,11161,20240,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.021397684500426,5.968826273908844,0,0,-894.9598168347038,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.093015137031502,5.881202299377748,42.48,53.39,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,426,892782.2651649449,207314.1846866614,385271.8910527232,0,1221.522518077456 -9060,11162,20241,-9,20243,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.7708689314072,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,5,2,0,344,108735.7555015447,0,96498.17526025494,0,1963.008254864482 -9060,11162,20242,-9,20243,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-807.8962092141663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,344,108735.7555015447,0,96498.17526025494,0,1963.008254864482 -9060,11162,20243,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.85406889689656,7.155733812372419,5.40544333681865,0,0,-1082.355398564129,0,2,2,2019,6,0,16,16,1,0,0,8.781024581117771,8.781024581117771,0,0,0,0,0,1,1,0,5.649137921188246,0,41.49,60.87,-9,-9,8.333333333333334,4,2,0,0,13,5,2,0,344,108735.7555015447,0,96498.17526025494,0,1963.008254864482 -9061,11163,20244,20245,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,7.90502151464796,7.893576832053936,0,2,-5,-117.6297339806154,0,-9,-9,2019,6,1,35,35,1,1,0,9.087819091719648,9.087819091719648,0,0,0,0,0,0,0,0,7.231590472264243,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,786.5,640701.8077043467,238305.0395348079,283004.7073301839,147295.6606803515,5579.053208890699 -9061,11163,20245,20244,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.919234571450831,9.34108211493146,0,2,5,.2939362148185909,0,2,2,2019,8,0,51,49,1,0,0,22.29683784446435,22.29683784446435,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,786.5,640701.8077043467,238305.0395348079,283004.7073301839,147295.6606803515,5579.053208890699 -9062,11164,20246,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1149.713025471206,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,6.581947034139493,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,859,-98728.42430752891,0,0,0,434.2559437952268 -9063,11165,20247,20249,-9,-9,1,1,49,0,2,0,3,3,-9,0,2,8.183636603067152,8.311892796019954,0,24,5,30.96726002796972,0,3,2,2019,8,1,38,37,1,1,0,9.259945651145689,9.259945651145689,0,0,0,0,0,1,1,0,4.510999452956423,0,50.27,48.86,60.12,54.8,6.666666666666667,1,1,0,0,9,11,4,1,1919,1804060.49639837,1473620.782523618,291154.6576066372,0,4150.260716286383 -9063,11165,20248,-9,20249,20247,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1124.133157577293,-9,1,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,11,4,1,1919,1804060.49639837,1473620.782523618,291154.6576066372,0,4150.260716286383 -9063,11165,20249,20247,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.982250554389775,8.789196178749789,0,24,-5,131.0591103539991,0,2,3,2019,6,0,48,42,1,0,0,15.71356485305959,15.71356485305959,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50.27,48.86,8.333333333333334,1,1,0,0,8,11,4,1,1919,1804060.49639837,1473620.782523618,291154.6576066372,0,4150.260716286383 -9064,11166,20250,-9,20252,20251,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.384974651756,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,729,388163.6190985878,-18142.41635027798,643736.6773179669,370512.3650174231,7638.037277238253 -9064,11166,20251,20252,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.653522993931464,9.548314678292572,0,3,-1,-46.71020879191874,0,-9,-9,2019,17,6,42,40,1,6,0,44.63581687960647,44.63581687960647,0,0,0,0,0,1,1,0,0,0,30.53,65.61,53.14,45.74,5,1,1,0,0,9,8,5,1,729,388163.6190985878,-18142.41635027798,643736.6773179669,370512.3650174231,7638.037277238253 -9064,11166,20252,20251,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,12,1,6.073813605825006,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,45.74,30.53,65.61,8.333333333333334,4,2,0,0,6,8,5,1,729,388163.6190985878,-18142.41635027798,643736.6773179669,370512.3650174231,7638.037277238253 -9064,11166,20253,-9,20252,20251,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.514912194727,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,729,388163.6190985878,-18142.41635027798,643736.6773179669,370512.3650174231,7638.037277238253 -9065,11167,20254,20255,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,8,9,-117.7627650211723,0,3,3,2019,30,12,0,0,4,12,0,0,0,1,0,18.94742821321368,0,0,1,1,0,0,0,26.57,20.42,37.62,44.93,1.666666666666667,1,1,0,1,0,12,3,1,379,248185.380834585,186419.0301703956,160002.065509679,31275.80284248776,1781.036712442059 -9065,11167,20255,20254,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,7.451181624146981,7.811257542032021,0,8,0,-82.10016680638218,0,3,3,2019,17,6,37,38,1,6,0,5.785194768790609,5.785194768790609,0,0,0,0,42,1,1,0,1.454449050888452,0,37.62,44.93,26.57,20.42,5,2,3,0,1,9,12,3,1,379,248185.380834585,186419.0301703956,160002.065509679,31275.80284248776,1781.036712442059 -9066,11168,20256,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.184438699972299,8.036931783805125,4.009893480738948,0,0,-1124.666036995121,0,2,3,2019,8,0,37,38,1,0,0,12.50555400408448,12.50555400408448,0,0,0,0,0,0,0,0,6.892098441185288,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,426,389155.5594787612,66799.40379153397,322491.5646138229,0,1663.546465180808 -9067,11169,20257,20258,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.746993312577511,6.81459807069271,47,0,8.396347944965664,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.884233761582418,6.211593152035022,46.98,59.35,41.92,12.44,8.333333333333334,1,1,0,0,6,2,2,0,334.5,281913.1190353807,380688.6506125865,59276.62972450114,0,2064.664486741534 -9067,11169,20258,20257,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,47,0,25.03382344781134,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,131.2509614246251,0,0,1,1,0,2.275778543752298,0,41.92,12.44,46.98,59.35,5,1,1,0,0,0,2,2,0,334.5,281913.1190353807,380688.6506125865,59276.62972450114,0,2064.664486741534 -9068,11170,20259,20260,-9,-9,1,1,52,0,1,0,1,1,-9,1,3,0,0,0,8,-3,-131.4872791233041,0,-9,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.58,55.59,54.37,54.8,8.333333333333334,1,1,0,0,0,10,4,0,1059.5,1548158.758064434,910534.4284527802,433961.8651399751,0,3017.949258019429 -9068,11170,20260,20259,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.141079546189188,8.447577967326763,0,8,3,6.68659462547481,0,2,1,2019,7,0,50,30,1,0,0,13.11409229727727,13.11409229727727,0,0,0,0,74.5,1,1,0,1.051831423148745,0,54.37,54.8,49.58,55.59,8.333333333333334,4,2,0,0,7,10,4,0,1059.5,1548158.758064434,910534.4284527802,433961.8651399751,0,3017.949258019429 -9069,11171,20261,20263,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.075249026418094,8.886373336229264,0,10,8,-117.9030758041342,0,2,2,2019,9,0,40,40,1,1,0,25.26670663290357,25.26670663290357,0,0,0,0,0,0,0,0,0,0,52,55,51.39,59.18,8,1,1,0,0,1,7,4,1,845,543206.1541087513,233735.6552350041,279433.9563329754,19995.0947887631,3285.11851065573 -9069,11171,20262,-9,20263,20261,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.811583200315,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,845,543206.1541087513,233735.6552350041,279433.9563329754,19995.0947887631,3285.11851065573 -9069,11171,20263,20261,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,0,0,0,10,-8,-8.296658243388693,0,2,2,2019,12,0,0,13,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,51.39,59.18,52,55,8.333333333333334,1,1,0,0,3,7,4,1,845,543206.1541087513,233735.6552350041,279433.9563329754,19995.0947887631,3285.11851065573 -9069,11171,20264,-9,20263,20261,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.566338663881,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,845,543206.1541087513,233735.6552350041,279433.9563329754,19995.0947887631,3285.11851065573 -9069,11171,20265,-9,20263,20261,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-868.5355634512883,-9,2,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,845,543206.1541087513,233735.6552350041,279433.9563329754,19995.0947887631,3285.11851065573 -9070,11172,20266,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,8.195840536724845,8.171830070165141,0,0,-1017.838196024653,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,.0363749668450732,0,0,0,1,1,0,7.504489079172611,8.189580702077999,27.96,50.9,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1138,1037931.583382051,294624.9142951531,319546.5748501866,0,2625.756248506129 -9071,11173,20267,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1136.611052785739,0,2,2,2019,20,8,0,40,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.33,49.24,-9,-9,6.666666666666667,1,1,0,0,9,10,2,1,1677,233448.9545997705,0,0,0,-306.9794290034635 -9072,11174,20268,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,6.681412811635399,7.052581708568257,0,0,-943.2424694496322,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.543470778982865,6.755496252318015,65.21000000000001,31.08,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,496,160145.4841918101,54536.81824620505,311512.2046232378,0,1306.103556704298 -9073,11175,20269,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.501279773788621,7.178868930151612,0,0,-1049.993275732003,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.468646806940471,7.582913046079677,57,54,-9,-9,10,1,1,0,0,5,2,3,0,525,363167.5786995462,444797.8040466832,78148.94545005419,0,1076.507629384582 -9074,11176,20270,20271,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.138650739157104,8.148866254832489,0,8,0,-81.63662228398128,0,2,3,2019,10,0,42,43,1,0,0,10.54872264205493,10.54872264205493,0,0,0,0,0,0,0,0,0,0,38.24,63.73,46.69,58.35,6.666666666666667,1,1,0,0,9,12,5,1,850,-39493.13287948869,51031.4765415758,121091.3049322059,95566.25453624493,3421.229407425971 -9074,11176,20271,20270,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.498204752190546,8.136894412445388,0,8,0,-93.69174752462538,0,2,3,2019,10,2,45,50,1,2,0,12.3967120053282,12.3967120053282,0,0,0,0,0,0,0,0,0,0,46.69,58.35,38.24,63.73,8.333333333333334,1,1,0,0,7,12,5,1,850,-39493.13287948869,51031.4765415758,121091.3049322059,95566.25453624493,3421.229407425971 -9075,11177,20272,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.301213398338257,7.918980381114002,0,0,-882.8594250862575,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7194902739896,7.938904252723846,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,512,787518.0473276761,676426.4966363955,174584.6242193122,0,1056.091829201685 -9076,11178,20273,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1043.983605796905,0,-9,-9,2019,15,3,0,19,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,26.72,35.27,-9,-9,1.666666666666667,1,1,0,1,6,9,1,0,1216,59221.98808517375,0,0,0,189.7153279354199 -9077,11179,20274,-9,-9,-9,1,1,36,0,0,0,1,1,-9,1,2,6.931986975020377,7.205409543956466,0,0,0,-1051.261210904526,0,2,2,2019,22,10,13,20,1,10,0,12.62409149460276,12.62409149460276,0,0,0,0,0,1,1,0,0,0,29.36,47.96,-9,-9,3.333333333333333,1,1,0,0,6,9,3,0,835,145654.7088363092,-95018.80578668317,0,0,687.9923795076097 -9078,11180,20275,20276,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.770925181391059,8.756922692840957,0,21,5,1.099034593619684,0,2,-9,2019,7,0,55,50,1,0,0,12.29100038745269,12.29100038745269,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.88,42.11,1.666666666666667,3,4,0,0,12,8,5,1,792,1198800.762347202,569735.8864999856,555842.6474889193,58576.88935212683,4333.541890272401 -9078,11180,20276,20275,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.369597318816558,8.112131479791229,0,9,-5,98.20870958659069,0,-9,-9,2019,11,0,36,36,1,0,0,16.39540619504528,16.39540619504528,0,0,0,0,0,1,1,0,0,0,51.88,42.11,51.24,58.84,5,3,4,0,0,12,8,5,1,792,1198800.762347202,569735.8864999856,555842.6474889193,58576.88935212683,4333.541890272401 -9078,11181,20277,-9,20275,20276,1,0,18,0,0,0,2,2,1,0,4,6.371744144693126,6.612655763029649,0,0,0,-1192.767967234305,-9,1,2,2019,3,0,37,0,1,0,1,3.373825291328891,3.373825291328891,0,0,0,0,0,1,1,0,3.25354970034038,0,57.16,56.15,-9,-9,10,3,4,0,0,1,8,2,1,983,-15821.31562161981,-77964.17303484581,0,0,237.4942440438763 -9079,11182,20278,20279,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.122486180871388,7.726567415306489,0,10,0,86.97670899944634,0,-9,-9,2019,22,10,38,44,1,10,0,6.592814196785289,6.592814196785289,0,0,0,0,0,0,0,0,5.804974900852407,0,22.3,38.76,61.25,32.49,1.666666666666667,1,1,0,1,10,12,4,1,1109.5,97957.50300319705,44927.66424572108,196926.6980261893,172197.2823887016,2388.895373089159 -9079,11182,20279,20278,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.125138336209195,7.844567708973879,0,10,9,-55.14128700776278,0,3,2,2019,11,1,12,12,1,1,0,34.88674761225783,34.88674761225783,0,0,0,0,2,0,0,0,1.058526668273125,0,61.25,32.49,22.3,38.76,8.333333333333334,1,1,0,0,10,12,4,1,1109.5,97957.50300319705,44927.66424572108,196926.6980261893,172197.2823887016,2388.895373089159 -9080,11183,20280,-9,-9,-9,1,0,37,0,0,0,1,1,-9,1,3,0,0,0,6,-8,0,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,35.89,53.83,33.28,22.89,10,1,1,0,0,6,13,1,0,765,183962.7009716024,-86175.6384451654,0,0,-743.9773079703891 -9080,11184,20281,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,6,8,0,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,22.89,35.89,53.83,5,1,1,0,0,2,13,1,0,905,-140960.5378191238,0,0,0,1191.941770721645 -9080,11185,20282,-9,20281,-9,1,1,20,0,0,0,2,2,-9,0,3,7.406246010707741,7.091004874718425,0,0,0,-1078.218978332162,0,2,-9,2019,9,0,36,0,1,0,1,6.941255901412958,6.941255901412958,0,0,0,0,0,1,1,0,0,0,54.74,43.81,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,322,62766.06959284998,0,0,0,771.1857202716041 -9081,11186,20283,20285,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,7.97307842786764,7.84861649105816,0,25,3,-44.04303264043239,0,2,2,2019,11,0,40,40,1,0,0,5.750027060160114,5.750027060160114,0,0,0,0,74.5,1,1,0,0,0,46.5,58.26,22.87,23.73,6.666666666666667,1,1,0,0,10,13,2,0,1140.666666666667,387319.6789739756,0,114375.1214929116,53697.90444999997,1744.805382335044 -9081,11186,20284,-9,20285,20283,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.707327811654,-9,3,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1140.666666666667,387319.6789739756,0,114375.1214929116,53697.90444999997,1744.805382335044 -9081,11186,20285,20283,-9,-9,1,0,44,0,1,0,3,3,-9,1,1,0,0,0,25,-3,45.17785749572318,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,22.87,23.73,46.5,58.26,6.666666666666667,1,1,0,0,0,13,2,0,1140.666666666667,387319.6789739756,0,114375.1214929116,53697.90444999997,1744.805382335044 -9081,11187,20286,-9,20285,20283,1,0,22,0,1,0,1,1,-9,0,4,7.79161728746313,7.819278153573068,0,0,0,-994.4372814342787,0,3,2,2019,6,0,40,35,1,0,1,7.123092146623581,7.123092146623581,0,0,0,0,0,1,1,0,0,0,39.28,60.12,-9,-9,10,1,1,0,0,3,13,3,0,851,-125040.1317403491,0,0,0,1243.057434898715 -9082,11188,20287,20288,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.983408794779695,8.324969718261711,0,3,0,30.7941977979312,0,-9,-9,2019,10,0,38,40,1,0,0,19.09767929687486,19.09767929687486,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,10,5,4,1,995.3333333333334,268987.0340374896,-92031.24438384686,186216.830513698,157720.7528866742,2848.573066320048 -9082,11188,20288,20287,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.883260992486112,7.951209567981845,0,3,0,-51.08188018139021,0,2,2,2019,9,0,18,38,1,0,0,14.39924721011357,14.39924721011357,0,0,0,0,0,1,1,0,0,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,995.3333333333334,268987.0340374896,-92031.24438384686,186216.830513698,157720.7528866742,2848.573066320048 -9082,11188,20289,-9,20288,20287,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.0135959331544,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,995.3333333333334,268987.0340374896,-92031.24438384686,186216.830513698,157720.7528866742,2848.573066320048 -9083,11189,20290,20291,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.500730769300084,8.347637954157584,56,4,-74.41388306769196,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.661362992383182,8.283439784283265,55.51,43.54,59.46,46.99,10,1,1,0,0,0,2,4,1,504.5,1900249.217570133,899906.7496535571,822394.0933042334,0,3527.811605006176 -9083,11189,20291,20290,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,56,-4,-116.6896242075507,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.125813063038184,0,59.46,46.99,55.51,43.54,8.333333333333334,1,1,0,0,0,2,4,1,504.5,1900249.217570133,899906.7496535571,822394.0933042334,0,3527.811605006176 -9084,11190,20292,-9,20294,20293,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1049.788973732203,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,643.6,242479.9116503384,238375.7242655039,118078.1617351371,0,2765.637574288093 -9084,11190,20293,20294,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,8.384419382157203,8.226360023396555,0,19,8,15.49834815632357,0,3,2,2019,12,0,40,40,1,0,0,13.96438746425795,13.96438746425795,0,0,0,0,0,1,1,0,3.312793543345457,0,46.9,56.66,61.3,40.51,3.333333333333333,1,1,0,1,11,6,4,1,643.6,242479.9116503384,238375.7242655039,118078.1617351371,0,2765.637574288093 -9084,11190,20294,20293,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.540363931370361,7.702004102760281,0,19,-8,24.91202156962697,0,2,2,2019,10,1,22,21,1,1,0,8.2395962498963,8.2395962498963,0,0,0,0,0,1,1,0,2.558242619221245,0,61.3,40.51,46.9,56.66,8.333333333333334,1,1,0,1,11,6,4,1,643.6,242479.9116503384,238375.7242655039,118078.1617351371,0,2765.637574288093 -9084,11190,20295,-9,20294,20293,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1101.26363763429,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,1,6,4,1,643.6,242479.9116503384,238375.7242655039,118078.1617351371,0,2765.637574288093 -9084,11190,20296,-9,20294,20293,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1062.9493305032,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,1,643.6,242479.9116503384,238375.7242655039,118078.1617351371,0,2765.637574288093 -9085,11191,20297,20298,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.175607998096149,8.170506431129942,26,-4,91.52586182437574,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.536931058572747,0,25.15813393293444,0,1,1,0,7.801080674801976,8.557560408588442,61.43,43.34,60.64,27.78,10,1,1,0,0,0,9,5,1,479,5187744.491588717,1466646.994423203,617439.1966095124,0,5201.832792912398 -9085,11191,20298,20297,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,8.100828882020382,8.508972407449532,26,4,-45.2171878148129,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.581928071545627,8.372843078916407,60.64,27.78,61.43,43.34,8.333333333333334,1,1,0,0,0,9,5,1,479,5187744.491588717,1466646.994423203,617439.1966095124,0,5201.832792912398 -9086,11192,20299,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.9843100304299,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,.9289948221392526,0,42.94,55.94,-9,-9,5,1,1,1,0,7,1,1,1,555,0,0,0,0,346.0955898585464 -9087,11193,20300,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.22499367927386,8.421709678668808,0,0,0,-1016.151730967951,0,2,2,2019,10,0,38,38,1,0,0,13.32475062461706,13.32475062461706,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,1061,-89393.01434876566,-61162.17191461298,89382.84853199898,63002.75107868795,994.9519521698179 -9088,11194,20301,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.337416532253437,8.361501143699712,0,0,-1018.478473158209,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.576944093770899,7.980889928925108,40.94,58.35,-9,-9,8.333333333333334,1,1,0,0,5,2,5,1,1425,2149620.711130007,741477.1539479707,363014.7708716725,0,2381.165538820687 -9089,11195,20302,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.032806302906678,8.764142746322317,0,0,0,-970.9215594628241,0,-9,2,2019,7,0,40,50,1,0,0,16.49690481707287,16.49690481707287,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,549,1106803.464063481,1023104.57057664,221763.673272717,0,2750.046704330976 -9090,11196,20303,-9,20305,20304,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.5485139778955,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,914.5,311325.000212424,185237.9760358112,475101.8600771763,305148.3249386391,7545.862553366529 -9090,11196,20304,20305,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.723347967467141,9.533778900652534,0,9,1,4.166266183495176,-9,-9,-9,2019,9,0,45,0,1,0,0,41.69471749628927,41.69471749628927,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,8.333333333333334,1,1,0,0,11,13,5,1,914.5,311325.000212424,185237.9760358112,475101.8600771763,305148.3249386391,7545.862553366529 -9090,11196,20305,20304,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.283479311176812,8.532596684572063,0,12,-1,-75.51803261577228,0,2,3,2019,6,0,30,30,1,0,0,16.23821095628468,16.23821095628468,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,8.333333333333334,1,1,0,0,8,13,5,1,914.5,311325.000212424,185237.9760358112,475101.8600771763,305148.3249386391,7545.862553366529 -9090,11196,20306,-9,20305,20304,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.340453775427,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,914.5,311325.000212424,185237.9760358112,475101.8600771763,305148.3249386391,7545.862553366529 -9091,11197,20307,-9,20308,-9,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.621063052968,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,1,0,362.5,49106.43390543285,0,0,0,1175.937494266904 -9091,11197,20308,-9,-9,-9,1,0,40,1,2,0,2,2,-9,1,1,0,0,0,0,0,-973.5953465039198,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.46,27.37,-9,-9,5,1,1,1,1,0,8,1,0,362.5,49106.43390543285,0,0,0,1175.937494266904 -9091,11198,20309,-9,20310,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.094416100309,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,280.5,-21776.78002925784,0,0,0,1012.280594456701 -9091,11198,20310,-9,20308,-9,1,0,21,1,2,0,2,2,-9,0,4,0,.6431221757231383,.516269499550063,0,0,-1086.844024997313,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,57.66,45.37,-9,-9,1.666666666666667,1,1,1,0,1,8,2,0,280.5,-21776.78002925784,0,0,0,1012.280594456701 -9092,11199,20311,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.8030937303456,5.864071584635629,0,0,-971.617241921452,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.4805921995671775,5.771890450693682,62.18,36.18,-9,-9,10,1,1,0,0,0,6,2,1,2506,201775.8799431213,15510.65817881174,115717.8084727557,10962.60350056021,899.1172862193248 -9093,11200,20312,20313,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.560487812900748,8.339996459857824,0,6,-8,79.3144630174494,0,2,2,2019,7,0,39,36,1,0,0,11.39627272845927,11.39627272845927,0,0,0,0,0,0,0,0,0,0,52.43,55.57,52,56,8.333333333333334,1,1,0,0,6,4,5,1,630,118893.3792594524,133002.6303529352,63921.80469352029,42469.42666835654,3205.4517249118 -9093,11200,20313,20312,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.518900538940549,8.309730121522524,0,6,8,3.57453121424482,0,2,-9,2019,9,0,24,40,1,1,0,19.92978372397435,19.92978372397435,0,0,0,0,0,0,0,0,0,0,52,56,52.43,55.57,7,1,1,0,0,1,4,5,1,630,118893.3792594524,133002.6303529352,63921.80469352029,42469.42666835654,3205.4517249118 -9094,11201,20314,20315,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.08690126129141,6.953099616940174,9,0,72.86040288046892,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,3.109086376696776,7.113644829227029,53.96,48.03,65.59999999999999,48.21,8.333333333333334,1,1,0,0,8,13,2,1,857.5,596314.2955558305,440120.9820806729,68471.40879454062,0,1538.749568891556 -9094,11201,20315,20314,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,9,0,57.74396982694385,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.004084552900816,0,0,1,1,0,0,0,65.59999999999999,48.21,53.96,48.03,8.333333333333334,4,1,0,0,7,13,2,1,857.5,596314.2955558305,440120.9820806729,68471.40879454062,0,1538.749568891556 -9095,11202,20316,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-946.2980366159031,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.46,45.88,-9,-9,5,1,1,0,0,0,12,1,0,2120,137006.7756885479,0,0,0,1332.842772920106 -9096,11203,20317,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.48085495044492,7.594634657463359,0,0,0,-913.8287115136261,0,3,3,2019,14,4,26,24,1,4,0,6.890071972241826,6.890071972241826,0,0,0,0,7,1,1,0,0,0,33.63,64.61,-9,-9,1.666666666666667,1,1,0,1,6,9,2,0,485.5,-31888.70703553269,-40408.75067259356,0,0,1785.717426168332 -9096,11203,20318,-9,20317,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1120.932349885183,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,24.2,49.6,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,485.5,-31888.70703553269,-40408.75067259356,0,0,1785.717426168332 -9096,11204,20319,-9,20317,-9,1,0,24,0,1,0,2,2,-9,0,4,7.940869979881843,7.897120652185766,0,0,0,-1003.433917677275,0,2,-9,2019,9,1,43,42,1,1,1,7.274596942193831,7.274596942193831,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,1097,-30611.40715952266,-46725.61590976641,0,0,1873.228054526925 -9096,11205,20320,-9,20317,-9,1,1,23,0,1,0,2,2,-9,1,4,0,0,0,0,0,-933.9013170858091,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,0,297,9645.660916562341,40985.91302123946,0,0,1060.233391577655 -9097,11206,20321,-9,20323,20324,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.708502613509,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,0,1228.4,240637.5412271045,-14961.27003715268,269885.6791632356,58751.47429550877,3114.164154421205 -9097,11206,20322,-9,20323,20324,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.199672670113,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,0,1228.4,240637.5412271045,-14961.27003715268,269885.6791632356,58751.47429550877,3114.164154421205 -9097,11206,20323,20324,-9,-9,1,0,34,1,3,0,1,1,-9,0,5,0,0,0,5,-2,-41.63518720416499,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,41.66,35.14,10,1,1,0,0,10,9,4,0,1228.4,240637.5412271045,-14961.27003715268,269885.6791632356,58751.47429550877,3114.164154421205 -9097,11206,20324,20323,-9,-9,1,1,36,1,3,0,2,2,-9,0,2,9.715795833566276,8.892857774179964,0,5,2,72.80530448323212,0,1,2,2019,13,1,48,44,1,1,0,21.1601997073647,21.1601997073647,0,0,0,0,0,0,0,0,0,0,41.66,35.14,54.1,59.11,1.666666666666667,1,1,0,0,13,9,4,0,1228.4,240637.5412271045,-14961.27003715268,269885.6791632356,58751.47429550877,3114.164154421205 -9097,11206,20325,-9,20323,20324,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.674630386342,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,0,1228.4,240637.5412271045,-14961.27003715268,269885.6791632356,58751.47429550877,3114.164154421205 -9098,11207,20326,20329,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.918218551929499,9.011545416812574,0,24,-1,76.14412728150829,0,2,2,2019,10,0,48,46,1,0,0,18.90053252231782,18.90053252231782,0,0,0,0,0,1,1,0,0,0,55.36,51.57,54.79,55.86,8.333333333333334,1,1,0,0,11,10,5,1,744.5,140534.3558343069,112469.6487865138,187877.4116702809,122111.689129069,4859.482389767822 -9098,11207,20327,-9,20329,20326,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.076196032361,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,744.5,140534.3558343069,112469.6487865138,187877.4116702809,122111.689129069,4859.482389767822 -9098,11207,20328,-9,20329,20326,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.2272269463439,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,744.5,140534.3558343069,112469.6487865138,187877.4116702809,122111.689129069,4859.482389767822 -9098,11207,20329,20326,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.61820999167012,8.376922436351739,0,24,1,1.569639388822386,0,2,2,2019,7,0,36,34,1,0,0,16.73865734236747,16.73865734236747,0,0,0,0,0,1,1,0,2.218350797859399,0,54.79,55.86,55.36,51.57,8.333333333333334,1,1,0,0,9,10,5,1,744.5,140534.3558343069,112469.6487865138,187877.4116702809,122111.689129069,4859.482389767822 -9099,11208,20330,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.50608602051427,7.297332190752962,0,0,0,-1000.005529988669,-9,3,3,2019,9,0,20,0,1,0,0,7.11481719851688,7.11481719851688,0,0,0,0,0,0,0,0,0,0,57.41,54.88,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,196,19751.95445528726,0,0,0,386.2288201402702 -9099,11209,20331,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.652870607098887,7.633985421058761,0,0,0,-969.3223334383224,-9,-9,-9,2019,9,1,30,0,1,1,0,6.371434256378276,6.371434256378276,0,0,0,0,0,0,0,0,0,0,65.09,35.18,-9,-9,8.333333333333334,2,3,0,0,0,2,3,1,1107,-150945.9577270072,0,0,0,314.4599432145516 -9100,11210,20332,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-914.9224093377052,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,63.27,18.44,-9,-9,6.666666666666667,1,1,0,0,12,9,1,0,294,49200.88290850617,0,0,0,1112.718817925043 -9101,11211,20333,20334,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.586334183358988,7.688363206531156,0,9,-3,-137.3970200329181,0,2,2,2019,12,0,25,25,1,0,0,10.92020130511515,10.92020130511515,0,0,0,0,0,1,1,0,3.194172945169074,0,53.98,50.87,49.33,51.63,3.333333333333333,1,1,0,0,10,9,5,1,1852.5,501709.2252513798,151248.6519594958,619474.182952381,86847.83599157336,4022.100413554146 -9101,11211,20334,20333,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.994908561796709,8.910453059274756,0,9,3,33.21333269529297,0,2,3,2019,11,0,43,43,1,0,0,21.48923236878886,21.48923236878886,0,0,0,0,0,1,1,0,4.81553117156568,0,49.33,51.63,53.98,50.87,8.333333333333334,1,1,0,0,10,9,5,1,1852.5,501709.2252513798,151248.6519594958,619474.182952381,86847.83599157336,4022.100413554146 -9101,11212,20335,-9,20333,20334,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1148.506517002949,-9,2,2,2019,31,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,1.633173187071625,0,12.35,69.98,-9,-9,0,1,1,1,0,0,9,2,1,1989,0,0,0,0,77.77629364109809 -9102,11213,20336,-9,20337,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.773935290026,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,1,0,527.5,0,0,0,0,2424.471221334855 -9102,11213,20337,-9,-9,-9,1,0,38,1,2,0,2,2,-9,1,4,0,0,0,0,0,-960.4052512220385,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.37,48.04,-9,-9,5,1,1,1,1,0,8,1,0,527.5,0,0,0,0,2424.471221334855 -9102,11214,20338,-9,20339,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.079660640306,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,648,-105561.8933889422,0,0,0,2523.26088929463 -9102,11214,20339,-9,20337,-9,1,0,20,1,2,0,2,2,-9,0,4,8.227110390129218,7.985553124767059,0,0,0,-1010.556223232368,0,2,-9,2019,14,2,50,0,1,2,1,7.245324033614517,7.245324033614517,0,0,0,0,0,1,1,0,0,0,34.13,58.69,-9,-9,0,1,1,0,0,1,8,4,0,648,-105561.8933889422,0,0,0,2523.26088929463 -9103,11215,20340,20341,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.004308330234249,7.656392060026168,0,37,-3,-23.48901447151162,0,3,3,2019,8,0,32,35,1,0,0,8.028559535106124,8.028559535106124,0,0,0,0,0,0,0,0,0,0,59.46,46.99,54,54,8.333333333333334,1,1,0,0,8,7,5,1,1384.5,1394545.923663231,277439.5433516116,700484.5278974416,113704.2789276162,6722.805321133934 -9103,11215,20341,20340,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,9.670970655171937,9.965334187521043,0,37,3,86.25819655005047,0,-9,-9,2019,8,0,50,40,1,0,0,42.17588307607659,42.17588307607659,0,0,0,0,0,0,0,0,0,0,54,54,59.46,46.99,8,1,1,0,0,8,7,5,1,1384.5,1394545.923663231,277439.5433516116,700484.5278974416,113704.2789276162,6722.805321133934 -9104,11216,20342,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.919789565148966,7.979809984035522,0,0,0,-1059.118368961669,-9,2,2,2019,8,0,38,0,1,0,0,9.247607108819865,9.247607108819865,0,0,0,0,0,0,0,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,569,40971.78100419545,-77333.98142680267,98332.16032007188,-598.6232961508222,783.4654683446759 -9104,11217,20343,-9,20342,-9,1,1,22,0,0,0,2,2,-9,0,3,8.072354521533191,7.977599725704679,0,0,0,-839.2950857022643,-9,2,2,2019,12,0,44,0,1,0,1,9.841008356636838,9.841008356636838,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,302,115551.6549418774,0,0,0,830.2969199609189 -9104,11218,20344,-9,20342,-9,1,1,22,0,0,0,2,2,-9,0,3,8.108623396190326,8.217416236182405,0,0,0,-980.078318843581,-9,2,2,2019,6,0,44,0,1,0,1,10.29475836776257,10.29475836776257,0,0,0,0,0,0,0,0,1.337506294341309,0,62.66,52.4,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,841,-44663.78392420922,-150543.9471534825,0,0,1287.052955558115 -9105,11219,20345,20346,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,5.236321032739019,5.195656638041759,52,3,-28.63924557120551,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.650404839525359,5.010874035487697,58.05,54.52,57.27,41.15,8.333333333333334,1,1,0,0,0,11,2,1,690.5,152070.299421541,106517.985004425,56928.54805398456,0,1919.479701571955 -9105,11219,20346,20345,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.345777496983102,5.507496531447741,52,-3,-74.89627612641594,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.385158828618343,57.27,41.15,58.05,54.52,8.333333333333334,1,1,0,0,0,11,2,1,690.5,152070.299421541,106517.985004425,56928.54805398456,0,1919.479701571955 -9106,11220,20347,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1006.201516531031,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.91,28.62,-9,-9,10,1,1,0,0,0,4,1,0,687,-141699.9726750187,0,0,0,2058.365926087798 -9107,11221,20348,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,6.805267382668676,6.950724628653889,0,0,0,-971.9246834835196,0,3,3,2019,8,0,50,60,1,0,0,1.90691068688732,1.90691068688732,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,6,8,2,0,1072,65486.63471987274,103910.4542564574,0,0,339.6792128620363 -9108,11222,20349,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,4.854748746313604,5.002159228943367,0,0,-1103.722516254555,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.8445457516365,28.04468077318685,0,0,1,1,0,0,4.906945775275482,58.35,15.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,748,-130602.1149858169,119103.19433181,0,0,720.7308383215518 -9109,11223,20350,20351,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.330020822995966,7.297629814826997,0,26,13,-18.15922314311843,0,3,3,2019,11,0,40,40,1,0,0,4.727149851027746,4.727149851027746,0,0,0,0,0,0,0,0,1.551222713173001,0,51.83,57.2,62.09,32.44,1.666666666666667,1,1,0,0,10,9,5,1,312,1776956.946160768,1154527.374447411,523764.3078395845,0,3586.057346530246 -9109,11223,20351,20350,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,9.100221739163423,9.113705501167786,0,26,-13,-161.4637591904046,0,3,2,2019,6,0,37,37,1,0,0,23.27703214790133,23.27703214790133,0,0,0,0,0,0,0,0,2.863928564924423,0,62.09,32.44,51.83,57.2,8.333333333333334,4,2,0,0,10,9,5,1,312,1776956.946160768,1154527.374447411,523764.3078395845,0,3586.057346530246 -9109,11224,20352,-9,20351,20350,1,1,24,0,0,0,2,2,-9,0,4,8.013935722512027,7.945397873132176,0,0,0,-984.5230727833595,0,2,3,2019,10,0,48,0,1,1,1,6.275478157136833,6.275478157136833,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,0,0,1,9,4,1,522,84751.49049987257,-97844.91334943115,0,0,1888.86974599733 -9109,11225,20353,-9,20351,20350,1,1,23,0,0,0,2,2,-9,0,5,8.28788887446807,8.327857707100659,0,0,0,-1041.557663038076,0,2,2,2019,9,3,37,37,1,3,1,14.86301064301747,14.86301064301747,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,6,9,4,1,974,-47635.59791403728,0,0,0,1063.514182425874 -9110,11226,20354,20355,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,7.729668483430109,7.872346107257249,0,18,7,-21.57043882647179,0,3,3,2019,13,1,20,20,1,1,0,12.27370071960341,12.27370071960341,0,0,0,0,0,1,1,0,3.441336679616688,0,44.99,43.48,47.34,42.99,5,2,3,0,0,12,6,3,1,349.75,287920.0266176577,227133.0770409246,172977.8846425862,69701.51004931954,3215.085420225588 -9110,11226,20355,20354,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.817083578360323,7.654376256215332,0,18,-7,23.98993007891842,0,3,2,2019,11,0,32,33,1,0,0,8.504517513207823,8.504517513207823,0,0,0,0,0,1,1,0,0,0,47.34,42.99,44.99,43.48,6.666666666666667,2,3,0,0,4,6,3,1,349.75,287920.0266176577,227133.0770409246,172977.8846425862,69701.51004931954,3215.085420225588 -9110,11226,20356,-9,20355,20354,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1039.060849134498,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,56.92,-9,-9,5,2,3,0,0,0,6,3,1,349.75,287920.0266176577,227133.0770409246,172977.8846425862,69701.51004931954,3215.085420225588 -9110,11226,20357,-9,20355,20354,1,0,17,0,1,1,2,0,0,0,4,0,5.511060259338938,5.334809605794172,0,0,-990.6030244008081,-9,2,1,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.428300235174699,0,55.79,52.62,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,349.75,287920.0266176577,227133.0770409246,172977.8846425862,69701.51004931954,3215.085420225588 -9111,11227,20358,-9,20360,20361,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.357019514444,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,5,1,1387,344188.8972310381,0,0,0,4532.552650683088 -9111,11227,20359,-9,20360,20361,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-854.6539624067866,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,5,1,1387,344188.8972310381,0,0,0,4532.552650683088 -9111,11227,20360,20361,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,19,-2,43.24258663330381,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,0,7,5,1,1387,344188.8972310381,0,0,0,4532.552650683088 -9111,11227,20361,20360,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.684662671311868,9.638555433393622,0,19,2,50.93312827360369,0,-9,-9,2019,8,0,50,50,1,0,0,35.2801935539968,35.2801935539968,0,0,0,0,0,0,0,0,5.691038639637967,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,9,7,5,1,1387,344188.8972310381,0,0,0,4532.552650683088 -9112,11228,20362,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,9.176327125493856,9.440022243853573,0,0,0,-1114.91269865435,0,2,1,2019,12,1,55,60,1,1,0,22.62285745572796,22.62285745572796,0,0,0,0,0,0,0,0,1.834419104421624,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,1,5,1,1108,251273.4928644494,333596.6585610176,80604.31844426498,25926.2912324481,3408.806012095184 -9113,11229,20363,20365,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.600021639404464,8.588153114310449,0,7,0,7.438693799618024,0,3,3,2019,10,0,65,70,1,0,0,9.093941327427338,9.093941327427338,0,0,0,0,5.48,1,1,0,3.002500271701008,0,57.33,53.46,60.21,18.88,6.666666666666667,1,1,0,0,8,11,4,1,475.6666666666667,1278767.969282394,993010.3867513783,180477.2549452567,21222.15204862446,2993.721008361365 -9113,11229,20364,-9,-9,20363,1,1,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1120.342475416361,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,475.6666666666667,1278767.969282394,993010.3867513783,180477.2549452567,21222.15204862446,2993.721008361365 -9113,11229,20365,20363,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,7,0,-68.17074580809356,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.21,18.88,57.33,53.46,8.333333333333334,1,1,0,0,0,11,4,1,475.6666666666667,1278767.969282394,993010.3867513783,180477.2549452567,21222.15204862446,2993.721008361365 -9114,11230,20366,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.941482657088295,8.884741348922809,0,0,0,-1099.261360807594,0,2,2,2019,9,0,42,46,1,0,0,17.61394231588715,17.61394231588715,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,7,1,1,0,0,11,9,5,0,420,443457.8946249449,117589.7006443831,0,0,2680.923737984679 -9115,11231,20367,20369,-9,-9,1,1,26,2,3,0,2,2,-9,0,3,8.058891976289322,7.874575522528428,0,6,2,-79.05270505511923,0,-9,-9,2019,13,2,45,0,1,2,0,6.567458330331067,6.567458330331067,0,0,0,0,0,1,1,0,0,0,23.29,56.78,22.42,68.11,5,1,1,0,0,7,5,3,0,585,-55392.7363820134,28849.16447527892,0,0,2631.531021660495 -9115,11231,20368,-9,20369,20367,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-922.3282634079726,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,585,-55392.7363820134,28849.16447527892,0,0,2631.531021660495 -9115,11231,20369,20367,-9,-9,1,0,24,2,3,0,2,2,-9,0,4,6.545534509896227,5.96976926235351,0,6,-2,-19.88031400684811,0,2,2,2019,17,5,9,10,1,5,0,7.405557216520776,7.405557216520776,0,0,0,0,0,1,1,0,0,0,22.42,68.11,23.29,56.78,6.666666666666667,1,1,0,0,9,5,3,0,585,-55392.7363820134,28849.16447527892,0,0,2631.531021660495 -9115,11231,20370,-9,20369,20367,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-889.3955262525055,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,585,-55392.7363820134,28849.16447527892,0,0,2631.531021660495 -9115,11231,20371,-9,20369,20367,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-981.0588542616857,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,585,-55392.7363820134,28849.16447527892,0,0,2631.531021660495 -9116,11232,20372,20374,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.714626528511783,8.291277547683086,0,19,3,-22.79372429720092,0,2,2,2019,9,0,40,43,1,0,0,17.50125486820641,17.50125486820641,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,7,4,5,1,656.75,621087.062760658,442439.7723965074,202711.7507269281,40821.87419943552,3986.175740363269 -9116,11232,20373,-9,20374,20372,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-974.2442683310893,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,8,4,5,1,656.75,621087.062760658,442439.7723965074,202711.7507269281,40821.87419943552,3986.175740363269 -9116,11232,20374,20372,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.716600829172396,8.491446175562917,0,20,-3,-35.5738803240899,0,3,3,2019,7,0,40,40,1,0,0,13.86663902997969,13.86663902997969,0,0,0,.0516010573934267,0,1,1,0,3.568422091130099,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,8,4,5,1,656.75,621087.062760658,442439.7723965074,202711.7507269281,40821.87419943552,3986.175740363269 -9116,11232,20375,-9,20374,20372,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.181701483363,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,656.75,621087.062760658,442439.7723965074,202711.7507269281,40821.87419943552,3986.175740363269 -9117,11233,20376,-9,20377,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.0713717341931,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,0,243.5,21759.62568454318,-72859.59217494991,279910.6382602738,233377.3532860745,1966.241800390737 -9117,11233,20377,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.357067498713864,8.285024178790954,5.41042001510725,0,0,-1058.784941769991,0,2,2,2019,12,1,36,41,1,1,0,9.843575275674324,9.843575275674324,0,0,0,0,0,1,1,0,6.310772563362395,0,41.34,55.47,-9,-9,8.333333333333334,1,1,0,0,10,4,4,0,243.5,21759.62568454318,-72859.59217494991,279910.6382602738,233377.3532860745,1966.241800390737 -9118,11234,20378,-9,20379,20381,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.884233898601,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,4,1,487.8,395992.0099314653,174394.3437408587,451627.0843494969,166003.6738221936,4017.708933869304 -9118,11234,20379,20381,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.462360504387979,8.603388265302598,0,9,-3,-59.31350255878809,0,2,2,2019,7,0,37,38,1,0,0,11.38121303783235,11.38121303783235,0,0,0,0,0,1,1,0,0,0,55.34,54.26,62.39,56.71,8.333333333333334,3,4,0,0,11,8,4,1,487.8,395992.0099314653,174394.3437408587,451627.0843494969,166003.6738221936,4017.708933869304 -9118,11234,20380,-9,20379,20381,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.780621950347,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,1,487.8,395992.0099314653,174394.3437408587,451627.0843494969,166003.6738221936,4017.708933869304 -9118,11234,20381,20379,-9,-9,1,1,39,1,3,0,1,1,-9,0,5,8.478391760816198,8.518832806695331,0,13,3,22.54593717865727,0,2,2,2019,3,0,32,32,1,0,0,16.18553258367727,16.18553258367727,0,0,0,0,0,1,1,0,0,0,62.39,56.71,55.34,54.26,8.333333333333334,3,4,0,0,10,8,4,1,487.8,395992.0099314653,174394.3437408587,451627.0843494969,166003.6738221936,4017.708933869304 -9118,11234,20382,-9,20379,20381,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.8156594259206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,487.8,395992.0099314653,174394.3437408587,451627.0843494969,166003.6738221936,4017.708933869304 -9119,11235,20383,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.473290684814156,9.241761065522757,0,11,6,-53.15037411273475,0,2,1,2019,17,5,43,43,1,5,0,32.64812152800774,32.64812152800774,0,0,0,0,2,0,0,0,4.086413734851163,0,48.28,60.18,52.82,53.97,6.666666666666667,1,1,0,0,12,9,5,1,532,933844.9028535369,694021.6905228891,345702.998368977,112958.3373293285,4562.796925516036 -9119,11236,20384,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.883764280922172,8.962510570296786,0,11,-6,63.60239672554496,0,1,3,2019,7,0,40,82,1,0,0,20.8119313551394,20.8119313551394,0,0,0,0,0,0,0,0,3.852253942013113,0,52.82,53.97,48.28,60.18,8.333333333333334,1,1,0,0,13,9,5,1,676,66759.40071465426,32725.54940298521,0,0,2641.289859783154 -9119,11237,20385,-9,20383,-9,1,1,22,0,0,1,2,0,0,0,4,0,6.143181112750592,6.177463018745121,0,0,-982.1198976699737,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,5.42510991086852,0,40.52,62.31,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,136,4374.506154667906,-81028.70301119941,0,0,606.5374330032502 -9120,11238,20386,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.785622761451251,7.755831901032778,0,0,0,-1142.70247609567,0,3,2,2019,9,0,31,31,1,0,0,8.468015546690957,8.468015546690957,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,9,6,3,0,128,176017.205355114,14999.28556922457,115060.6482961074,112634.2081993867,1817.888812328502 -9121,11239,20387,-9,20389,20388,1,0,38,0,0,0,1,1,-9,0,4,8.635214756311036,8.818283135803517,0,0,0,-873.3227650518888,0,2,2,2019,9,0,37,44,1,0,0,18.46422848323855,18.46422848323855,0,0,0,0,0,1,1,0,2.128758751562759,0,37.78,55.7,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,939,50033.80336888702,99859.27199467021,0,0,1789.493341674075 -9121,11240,20388,20389,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.077282835716543,7.211185856750273,37,2,-124.5743115040758,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.47108850559566,7.047986136089966,54.79,55.86,57.63,56.14,8.333333333333334,1,1,0,0,9,13,3,1,434.5,1123464.420022738,904000.1519988943,149967.7657921828,0,2457.479712511929 -9121,11240,20389,20388,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.929680787844623,6.916406735316903,3,-2,67.29916542144564,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.32092284412829,6.47801520095489,57.63,56.14,54.79,55.86,8.333333333333334,1,1,0,0,10,13,3,1,434.5,1123464.420022738,904000.1519988943,149967.7657921828,0,2457.479712511929 -9122,11241,20390,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.935125206244149,7.733258782476297,0,0,-795.732298043748,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.403721489208412,7.964010912109524,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,246,365790.6056727249,201380.4256183389,82607.99255647484,0,1052.953886039793 -9123,11242,20391,20392,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,8,12,.6939670040376278,0,3,3,2019,10,0,0,30,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,46,50,7,3,4,1,1,10,6,2,0,1105.5,-130093.7396602545,12057.10154628576,0,0,812.9845488163739 -9123,11242,20392,20391,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.090931473065473,7.142915171330942,0,8,-12,-57.16858701763721,0,-9,-9,2019,12,0,25,40,1,2,0,5.745448586772461,5.745448586772461,0,0,0,0,0,0,0,0,0,0,46,50,50,49,7,3,4,0,0,6,6,2,0,1105.5,-130093.7396602545,12057.10154628576,0,0,812.9845488163739 -9124,11243,20393,20394,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,8.07739841755129,7.947668731298005,30,-3,-26.42599568890815,0,2,3,2019,11,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,3.564512375211606,8.095195729989571,57.9,51.84,54.46,48.14,8.333333333333334,1,1,0,0,10,9,5,1,735.5,1963319.477797569,1808173.033723486,231033.3726650623,33280.80455201352,3703.137457806344 -9124,11243,20394,20393,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.197702493997312,9.02043311085397,7.488489860356343,32,3,34.14672887796576,0,2,3,2019,9,0,44,45,1,0,0,12.1830211344152,12.1830211344152,0,0,0,0,0,0,0,0,0,7.391753249910319,54.46,48.14,57.9,51.84,6.666666666666667,1,1,0,0,10,9,5,1,735.5,1963319.477797569,1808173.033723486,231033.3726650623,33280.80455201352,3703.137457806344 -9125,11244,20395,-9,20397,20396,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.8401383360201,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,1453.25,67743.57986412242,-28663.68016433294,221910.1119740709,126335.4124086626,3620.17720451569 -9125,11244,20396,20397,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.472368927167986,8.404635827734031,0,7,-2,-54.35553688491495,0,-9,-9,2019,13,1,45,52,1,1,0,12.10012066768139,12.10012066768139,0,0,0,0,0,1,1,0,0,0,46.67,55.57,52.63,46.3,5,1,1,0,0,6,7,4,0,1453.25,67743.57986412242,-28663.68016433294,221910.1119740709,126335.4124086626,3620.17720451569 -9125,11244,20397,20396,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.690346778508779,8.363791551575828,0,7,2,-154.7610337767672,0,1,2,2019,5,0,38,38,1,0,0,13.84637857759427,13.84637857759427,0,0,0,0,0,1,1,0,0,0,52.63,46.3,46.67,55.57,6.666666666666667,1,1,0,0,8,7,4,0,1453.25,67743.57986412242,-28663.68016433294,221910.1119740709,126335.4124086626,3620.17720451569 -9125,11244,20398,-9,20397,20396,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.247447897555,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1453.25,67743.57986412242,-28663.68016433294,221910.1119740709,126335.4124086626,3620.17720451569 -9126,11245,20399,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,5.304315699712977,5.440142976272187,0,0,-1036.062135317681,0,1,1,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,5.529323341009983,0,38.84,20.12,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,216,344729.3799357472,-880.3817859911069,266531.0595679077,79267.86160819375,673.2586734713425 -9126,11246,20400,-9,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1019.473125559099,0,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,39.81,49.24,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,442,-198874.2992775598,0,0,0,567.3967794642818 -9127,11247,20401,20402,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,8.519648484960927,8.671021759020922,0,19,0,-23.67549919487264,0,2,2,2019,10,0,35,37,1,0,0,13.55353638877033,13.55353638877033,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.28,60.18,5,2,3,0,0,5,8,5,0,1012,964255.3662178149,249738.907795087,612118.9607362624,19108.92086230725,6748.438428171683 -9127,11247,20402,20401,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.851354395667963,9.63308768402503,0,19,0,-35.60978052765743,0,2,2,2019,18,6,50,50,1,6,0,32.53362360956031,32.53362360956031,0,0,0,0,0,0,0,0,0,0,48.28,60.18,54.2,57.49,5,1,1,0,0,11,8,5,0,1012,964255.3662178149,249738.907795087,612118.9607362624,19108.92086230725,6748.438428171683 -9128,11248,20403,20404,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.313181604156423,8.47047572362032,0,17,2,-125.5050538844942,0,2,2,2019,7,0,40,35,1,0,0,12.01695943669314,12.01695943669314,0,0,0,0,0,1,1,0,0,0,60.27,49.27,49.25,61.25,8.333333333333334,1,1,0,0,9,4,4,1,1626.666666666667,251984.8026578133,113177.6977805076,166246.8789158615,116184.4002739835,3814.613908784124 -9128,11248,20404,20403,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.166163176205512,8.100323965651231,0,15,-2,-64.43687301056269,0,2,2,2019,8,0,35,33,1,0,0,11.02636988010794,11.02636988010794,0,0,0,0,0,1,1,0,6.732686076499959,0,49.25,61.25,60.27,49.27,8.333333333333334,1,1,0,0,5,4,4,1,1626.666666666667,251984.8026578133,113177.6977805076,166246.8789158615,116184.4002739835,3814.613908784124 -9128,11248,20405,-9,20404,20403,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.9651064023786,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,1626.666666666667,251984.8026578133,113177.6977805076,166246.8789158615,116184.4002739835,3814.613908784124 -9129,11249,20406,-9,20407,20408,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-867.7074372867671,-9,1,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,38.83,62.1,-9,-9,6.666666666666667,4,2,0,0,0,8,5,1,370.6666666666667,3489640.377507778,1722509.258230813,1029229.15775201,0,6255.977597893142 -9129,11249,20407,20408,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.708413901872976,9.004425302396841,0,8,2,-65.41898688059158,0,2,2,2019,11,3,40,44,1,3,0,28.84780591525828,28.84780591525828,0,0,0,0,0,0,0,0,0,0,45.41,33.7,42.85,62.85,6.666666666666667,3,4,0,0,9,8,5,1,370.6666666666667,3489640.377507778,1722509.258230813,1029229.15775201,0,6255.977597893142 -9129,11249,20408,20407,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,9.362861401116323,9.461490009882596,0,8,-2,-81.8921339187519,0,2,2,2019,14,2,45,44,1,2,0,29.40525163193279,29.40525163193279,0,0,0,0,0,0,0,0,3.150006312200762,0,42.85,62.85,45.41,33.7,6.666666666666667,1,1,0,0,9,8,5,1,370.6666666666667,3489640.377507778,1722509.258230813,1029229.15775201,0,6255.977597893142 -9130,11250,20409,20413,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,7.853331563266698,7.679479547934301,0,8,1,91.73142139380695,0,-9,-9,2019,8,1,40,42,1,1,0,7.464637494857711,7.464637494857711,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,8,5,3,0,660.4,-28264.42363867196,0,0,0,2109.919235998893 -9130,11250,20410,-9,20413,20409,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.596265623452,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,660.4,-28264.42363867196,0,0,0,2109.919235998893 -9130,11250,20411,-9,20413,20409,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1012.838340576693,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.79,65.03,-9,-9,5,1,1,0,0,0,5,3,0,660.4,-28264.42363867196,0,0,0,2109.919235998893 -9130,11250,20412,-9,20413,20409,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1063.428232992691,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,660.4,-28264.42363867196,0,0,0,2109.919235998893 -9130,11250,20413,20409,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,0,4.888789383217932,5.473173768118063,8,-1,-69.88049044554633,1,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.253261636335089,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,1,5,3,0,660.4,-28264.42363867196,0,0,0,2109.919235998893 -9131,11251,20414,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.226218365111112,5.308189978932995,0,0,-1050.243954897373,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,4.232595941861748,12.17262452764944,15.96629742746617,0,1,1,0,6.337994185628464,5.143299655888957,15.64,30.45,-9,-9,5,1,1,0,0,0,7,2,0,646,252656.3349047003,0,236773.2397439825,0,1811.824282230076 -9132,11252,20415,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.785216391936702,8.681479769565735,0,0,0,-1025.182915102984,0,1,1,2019,13,1,37,38,1,1,0,20.22976408438023,20.22976408438023,0,0,0,0,2,1,1,0,0,0,42.85,45.55,-9,-9,3.333333333333333,4,2,0,0,11,9,5,1,643,397147.1719700602,305831.9963692939,288440.4558089684,111869.7723945084,2212.390684087871 -9133,11253,20416,20417,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.980114864116696,7.308059198605967,39,6,78.51319488788575,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.443360858655752,6.984726573928384,52.22,53.26,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,1571,253355.8680856272,275165.0419548255,77229.42502946986,0,2813.459099833082 -9133,11253,20417,20416,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.045304255269164,6.999308554596056,39,-6,3.740987210552917,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.317969518941921,6.901812815557282,57.73,54.53,52.22,53.26,8.333333333333334,1,1,0,0,3,5,3,1,1571,253355.8680856272,275165.0419548255,77229.42502946986,0,2813.459099833082 -9134,11254,20418,20419,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.4915000109977,7.874978259378336,6.563135760911792,7,-2,-24.28492170685635,0,-9,2,2019,8,0,32,34,1,0,0,5.048039926670238,5.048039926670238,0,0,0,0,0,1,1,0,0,6.741564062959944,60.3,46.58,57.33,53.46,8.333333333333334,1,1,0,1,9,12,3,1,922,584031.561230429,167975.3910588441,380666.2540464057,0,2104.671511952634 -9134,11254,20419,20418,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.38902357082341,4.362560700434999,7,2,-72.49963352574372,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.285362387262437,57.33,53.46,60.3,46.58,10,1,1,0,0,0,12,3,1,922,584031.561230429,167975.3910588441,380666.2540464057,0,2104.671511952634 -9135,11255,20420,20421,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,50,1,-137.1488317025836,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.854177376880799,0,52.88,32.74,61.28,35.65,6.666666666666667,1,1,0,0,0,2,2,1,509,243698.137013961,178105.4396349246,123856.9175575011,0,1724.249025762378 -9135,11255,20421,20420,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,6.730453842666647,6.567866015630011,50,-1,-153.0912379149747,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.880269718931002,6.594792577372646,61.28,35.65,52.88,32.74,8.333333333333334,1,1,0,0,10,2,2,1,509,243698.137013961,178105.4396349246,123856.9175575011,0,1724.249025762378 -9136,11256,20422,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,3.668419104259562,3.70187767224221,0,0,-1099.641063780731,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.013639094351599,4.04592006048383,64.37,47.55,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,290,242719.1054054901,0,301558.2995569122,0,-109.60924637661 -9137,11257,20423,20424,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,53,-5,-33.74064078637193,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.57,57.78,57,51,8.333333333333334,1,1,0,0,0,9,2,1,943.5,569878.3110687925,270034.4324671705,309465.3265065937,0,1495.013938409075 -9137,11257,20424,20423,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.651556849842501,6.683121485036232,53,5,80.5376369925945,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.937376974642147,57,51,56.57,57.78,8.333333333333334,1,1,0,0,0,9,2,1,943.5,569878.3110687925,270034.4324671705,309465.3265065937,0,1495.013938409075 -9138,11258,20425,20426,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,25,3,0,0,-9,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.25,15.6,36.93,45.74,5,1,1,0,0,0,7,1,0,1022.5,117815.4681382308,0,0,0,1469.472922309416 -9138,11258,20426,20425,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,25,-3,0,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,36.93,45.74,40.25,15.6,8.333333333333334,1,1,1,1,0,7,1,0,1022.5,117815.4681382308,0,0,0,1469.472922309416 -9138,11259,20427,-9,20426,20425,1,0,20,0,0,0,2,2,1,1,4,7.058752916510382,7.32942038711102,0,0,0,-1164.697059134833,-9,2,2,2019,9,2,40,0,1,2,1,2.883361871816636,2.883361871816636,0,0,0,0,7,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,586,62828.00193888044,0,0,0,709.6878572468386 -9139,11260,20428,20429,-9,-9,1,0,50,0,3,0,2,2,-9,0,3,7.427673933756921,7.586400709339029,0,33,0,-53.38946461971705,0,2,2,2019,11,1,26,25,1,1,0,7.485018715569471,7.485018715569471,0,0,0,0,0,1,1,0,0,0,52,54.51,47.77,56.48,8.333333333333334,1,1,0,0,9,10,2,1,681,441466.5055205231,225229.326342891,251115.2353356812,60259.59248891956,2315.80762419718 -9139,11260,20429,20428,-9,-9,1,1,59,0,3,0,2,2,-9,0,4,6.820007574288802,6.961435933225482,0,33,9,62.13521700324317,0,-9,2,2019,14,2,17,16,1,2,0,6.064443964025839,6.064443964025839,0,0,0,0,0,1,1,0,0,0,47.77,56.48,52,54.51,6.666666666666667,1,1,0,0,9,10,2,1,681,441466.5055205231,225229.326342891,251115.2353356812,60259.59248891956,2315.80762419718 -9139,11260,20430,-9,20428,20429,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.4634580969706,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,681,441466.5055205231,225229.326342891,251115.2353356812,60259.59248891956,2315.80762419718 -9139,11260,20431,-9,20428,20429,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.98438310828,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,2,1,681,441466.5055205231,225229.326342891,251115.2353356812,60259.59248891956,2315.80762419718 -9139,11260,20432,-9,20428,20429,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-906.5087761291918,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,2,1,681,441466.5055205231,225229.326342891,251115.2353356812,60259.59248891956,2315.80762419718 -9140,11261,20433,20434,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.944079580449806,8.922616325528054,0,2,-5,101.2969816875985,0,2,2,2019,8,0,40,40,1,0,0,18.26943085794905,18.26943085794905,0,0,0,0,0,0,0,0,1.193095823029292,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1334,2464244.403554762,2137975.865912259,474078.0673664996,287827.3479198042,4440.838289689129 -9140,11261,20434,20433,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.478669426321622,8.451342161246512,0,2,5,71.51484080079874,0,-9,-9,2019,6,0,54,54,1,0,0,10.28883935616136,10.28883935616136,0,0,0,0,0,0,0,0,3.369481744877326,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,2,12,5,1,1334,2464244.403554762,2137975.865912259,474078.0673664996,287827.3479198042,4440.838289689129 -9140,11262,20435,-9,20433,-9,1,0,22,0,0,0,2,2,-9,0,3,7.676710395931789,7.59742998925033,0,0,0,-928.557116783192,0,2,-9,2019,6,0,38,40,1,0,1,8.62168561933245,8.62168561933245,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,398,131209.7661652893,4912.990716491871,0,0,927.1944252148583 -9140,11263,20436,-9,20433,-9,1,1,20,0,0,0,2,2,-9,0,4,8.212196968445639,7.739936462877148,0,0,0,-924.0254344561929,0,2,-9,2019,7,0,35,35,1,0,1,9.854024912198668,9.854024912198668,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,58,-159385.7035179775,-88836.63371870139,0,0,815.1669212564025 -9141,11264,20437,20438,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.232187868646863,9.371156452463385,6.453575348076119,7,-3,-146.4297812083227,0,-9,-9,2019,10,0,35,30,1,1,0,28.28068561110569,28.28068561110569,0,0,0,0,0,0,0,0,0,6.876063612767591,51,49,50.41,53.71,7,1,1,0,0,1,2,5,1,807.5,19753.69965253309,12155.96349765351,149916.8203879708,98052.63613048379,4718.746188861336 -9141,11264,20438,20437,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.194898213054152,8.300392244117706,0,20,3,113.0002867159411,0,3,2,2019,10,1,35,32,1,1,0,12.08491444579242,12.08491444579242,0,0,0,0,27,0,0,0,0,0,50.41,53.71,51,49,6.666666666666667,1,1,0,0,9,2,5,1,807.5,19753.69965253309,12155.96349765351,149916.8203879708,98052.63613048379,4718.746188861336 -9142,11265,20439,-9,20441,-9,1,1,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1037.576068258752,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,2,0,1278.25,153992.0877034584,77965.64999573785,114734.2003060107,37937.0856053296,2293.059909815649 -9142,11265,20440,-9,20441,-9,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1068.504860645859,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,1278.25,153992.0877034584,77965.64999573785,114734.2003060107,37937.0856053296,2293.059909815649 -9142,11265,20441,-9,-9,-9,1,0,41,1,5,0,1,1,-9,0,5,7.192524514847729,7.297471896319029,0,0,0,-1001.717414007701,0,2,2,2019,6,1,25,24,1,1,0,5.972958150304608,5.972958150304608,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,2,7,2,0,1278.25,153992.0877034584,77965.64999573785,114734.2003060107,37937.0856053296,2293.059909815649 -9142,11265,20442,-9,20441,-9,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-930.2366652085144,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,2,0,1278.25,153992.0877034584,77965.64999573785,114734.2003060107,37937.0856053296,2293.059909815649 -9143,11266,20443,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.694077906080858,6.790951967023966,0,0,-999.7247942156139,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.727956402835441,54,46,-9,-9,8,4,6,0,0,0,11,2,0,928,303196.7579753912,205078.2178980085,0,0,1491.222280852206 -9143,11267,20444,20445,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,4,-5,-58.58865196631785,0,2,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,39.6,43.99,53.7,43.09,6.666666666666667,1,1,0,0,1,11,3,0,237.5,1202234.060257248,931266.3493068048,179120.1862585485,16628.59604020293,2059.481266835807 -9143,11267,20445,20444,-9,20443,1,1,53,0,0,0,3,3,-9,0,3,8.346512535796091,8.368256326383465,0,4,5,111.1815443945272,0,-9,3,2019,9,2,46,46,1,2,0,9.340803201902267,9.340803201902267,0,0,0,0,71.5,1,1,0,0,0,53.7,43.09,39.6,43.99,8.333333333333334,1,1,0,0,5,11,3,0,237.5,1202234.060257248,931266.3493068048,179120.1862585485,16628.59604020293,2059.481266835807 -9144,11268,20446,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,5,8.054701738166992,8.200228601672515,0,0,0,-949.9695506321094,-9,-9,-9,2019,3,0,35,0,1,0,0,11.23502479245361,11.23502479245361,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,6,11,4,1,1095,0,0,0,0,1275.649689656868 -9145,11269,20447,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,4.97714323604691,5.141459077711381,0,0,-1047.576014905958,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.70577774755189,5.450837214377857,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,532,110365.7701720688,120262.3769680585,0,0,1781.062370712032 -9146,11270,20448,-9,20450,20449,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.4729505022533,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1864.666666666667,363607.8163008553,87910.94571496149,411736.2806444333,249609.4639206597,5780.250831578999 -9146,11270,20449,20450,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,9.34080929014781,9.414836751240481,0,6,2,12.89823112236941,0,-9,-9,2019,7,0,53,50,1,0,0,22.83733597976589,22.83733597976589,0,0,0,0,0,0,0,0,6.975289182880752,0,57.16,56.15,20.77,59.32,8.333333333333334,1,1,0,0,7,2,5,1,1864.666666666667,363607.8163008553,87910.94571496149,411736.2806444333,249609.4639206597,5780.250831578999 -9146,11270,20450,20449,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,8.957986107460584,8.384480484165561,0,6,-2,-43.40829318519715,0,2,1,2019,13,1,28,28,1,1,0,29.17512546463877,29.17512546463877,0,0,0,0,0,0,0,0,1.489010838578288,0,20.77,59.32,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,1864.666666666667,363607.8163008553,87910.94571496149,411736.2806444333,249609.4639206597,5780.250831578999 -9147,11271,20451,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.492882948602596,6.684705352651652,0,0,0,-1057.426937334687,0,3,3,2019,8,0,40,25,1,0,0,1.981526538777679,1.981526538777679,0,0,0,0,0,1,1,0,.2161529449275522,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,2,0,1516,-25810.96169148672,0,0,0,490.6536144698752 -9148,11272,20452,20453,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.124482052765167,7.879164037395121,0,18,-1,68.15939999931953,0,2,1,2019,24,12,35,35,1,12,0,11.32460288002369,11.32460288002369,0,0,0,0,0,0,0,0,2.299856753078379,0,32.68,59.12,49.35,59.64,6.666666666666667,1,1,0,0,8,10,5,1,779,311445.191679724,180989.4013035619,233346.2575802579,111536.8291069247,3396.049006354558 -9148,11272,20453,20452,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.765707490994139,8.506696133749436,0,19,1,13.34850368093842,0,2,2,2019,8,0,47,55,1,0,0,14.09617450719268,14.09617450719268,0,0,0,0,0,0,0,0,3.663413649898607,0,49.35,59.64,32.68,59.12,8.333333333333334,1,1,0,0,11,10,5,1,779,311445.191679724,180989.4013035619,233346.2575802579,111536.8291069247,3396.049006354558 -9149,11273,20454,20455,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-3,-62.85104221442768,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,1.29322734477608,0,1,1,0,0,0,60.13,49.27,61.43,43.34,10,1,1,0,0,0,5,3,1,391.5,1018716.620979534,697320.4731290651,240440.0451708856,23769.81669127535,2404.619156134784 -9149,11273,20455,20454,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.122809728123759,7.895713788733645,51,3,-64.38087641829989,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.057144934971161,61.43,43.34,60.13,49.27,8.333333333333334,1,1,0,0,0,5,3,1,391.5,1018716.620979534,697320.4731290651,240440.0451708856,23769.81669127535,2404.619156134784 -9150,11274,20456,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1181.563066937513,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,12.87575509647136,0,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,11,1,1,121,150192.0087506159,0,215067.2351697504,0,933.5195427482352 -9151,11275,20457,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,3,8.322940485722334,8.369242715601382,0,0,0,-1042.639821842211,-9,-9,-9,2019,9,1,48,0,1,1,0,10.12544836971865,10.12544836971865,0,0,0,0,0,0,0,0,2.357986287386501,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,5,12,4,0,1197,-37561.10176639441,-24842.16121217549,0,0,995.3065219768774 -9152,11276,20458,-9,20460,20459,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.5987194717411,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,0,368.3333333333333,97615.4063162903,93062.47064173542,34235.07235892035,26613.65370611597,2217.249657142127 -9152,11276,20459,20460,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.463502256117168,7.401859882718235,0,13,1,50.97716027897307,0,3,2,2019,8,0,35,35,1,0,0,6.672743810662669,6.672743810662669,0,0,0,0,0,1,1,0,0,0,53.39,52.35,45.88,51.75,8.333333333333334,1,1,0,0,10,13,3,0,368.3333333333333,97615.4063162903,93062.47064173542,34235.07235892035,26613.65370611597,2217.249657142127 -9152,11276,20460,20459,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.771103835038104,7.721451941058644,0,13,-1,-28.88561844984745,0,3,-9,2019,6,0,45,35,1,0,0,6.168576739977624,6.168576739977624,0,0,0,0,0,1,1,0,0,0,45.88,51.75,53.39,52.35,8.333333333333334,1,1,0,0,10,13,3,0,368.3333333333333,97615.4063162903,93062.47064173542,34235.07235892035,26613.65370611597,2217.249657142127 -9153,11277,20461,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,5.074804591463335,4.771881311133651,0,0,-1156.802053065567,0,3,2,2019,14,3,0,20,4,3,0,0,0,0,0,0,0,0,1,1,0,1.558884981153908,4.854456140534383,40.38,46.41,-9,-9,3.333333333333333,1,1,0,1,10,4,2,1,246,608388.6969377738,132888.8545357743,509937.5200571758,-1163.360075569381,457.0860991821363 -9154,11278,20462,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.942661785935721,8.482511118279149,0,0,0,-930.7353607971692,0,2,2,2019,10,0,40,40,1,0,0,17.21346312214944,17.21346312214944,0,0,0,0,0,1,1,0,0,0,53.78,37.88,-9,-9,5,1,1,0,0,9,6,5,0,1011,321840.0025471383,104272.4974818999,0,0,2187.665806726409 -9155,11279,20463,-9,20465,20464,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.449380698674,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,549,-7459.721590588339,36178.81895974083,73893.35575429078,11039.84700025413,1697.741408367034 -9155,11279,20464,20465,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,7.28373070761467,7.454347919590317,0,24,2,-52.17934906795675,-9,3,2,2019,18,6,35,0,1,6,0,4.39038247318597,4.39038247318597,0,0,0,0,0,1,1,0,0,0,32.78,46.92,43.7,27.62,10,2,3,0,0,7,4,2,1,549,-7459.721590588339,36178.81895974083,73893.35575429078,11039.84700025413,1697.741408367034 -9155,11279,20465,20464,-9,-9,1,0,45,0,1,0,3,3,-9,0,2,0,0,0,24,-2,2.062809003792559,-9,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,1.345318942779304,0,43.7,27.62,32.78,46.92,8.333333333333334,2,3,0,0,0,4,2,1,549,-7459.721590588339,36178.81895974083,73893.35575429078,11039.84700025413,1697.741408367034 -9155,11280,20466,-9,20465,20464,1,1,23,0,1,1,2,0,-9,0,4,0,0,0,0,0,-978.2217536078596,-9,3,3,2019,18,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,37.99,50.05,-9,-9,10,2,3,0,0,2,4,1,1,1269,129951.4551713057,0,0,0,0 -9155,11281,20467,-9,20465,20464,1,1,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-991.6862666664795,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,42.96,49.25,-9,-9,10,2,3,0,0,0,4,1,1,445,-91369.03197362582,0,0,0,0 -9156,11282,20468,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.483900976843531,8.517108536189243,0,0,0,-893.8295554461656,0,2,2,2019,14,4,27,35,1,4,0,21.77080905882089,21.77080905882089,0,0,0,0,14.5,1,1,0,3.780109239652496,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,691,480869.5643716971,283402.3437526014,34706.78538629056,0,1688.577566614658 -9157,11283,20469,20470,-9,-9,1,0,31,0,1,0,1,1,1,0,4,8.201003369950627,8.444269491333813,0,14,-4,36.71491090853758,-9,2,3,2019,15,3,41,0,1,3,0,13.10837229512834,13.10837229512834,0,0,0,0,0,1,1,0,2.111490703696352,0,41.06,62.04,45.91,59.89,6.666666666666667,1,1,0,0,6,5,5,1,1543.333333333333,319832.3135236172,241152.5392914323,325152.2090295799,234248.6201892482,4346.293592261635 -9157,11283,20470,20469,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.862569766324599,9.031443595555904,0,14,4,93.81015516797125,0,2,2,2019,14,2,51,45,1,2,0,11.75456401555008,11.75456401555008,0,0,0,0,0,1,1,0,2.885791464645276,0,45.91,59.89,41.06,62.04,5,1,1,0,0,8,5,5,1,1543.333333333333,319832.3135236172,241152.5392914323,325152.2090295799,234248.6201892482,4346.293592261635 -9157,11283,20471,-9,20469,20470,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.456653167216,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,1543.333333333333,319832.3135236172,241152.5392914323,325152.2090295799,234248.6201892482,4346.293592261635 -9158,11284,20472,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,8.050224918733687,7.658525660928651,0,0,-927.2855275799847,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.922898682854978,7.854637044128707,53,44,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,189,264747.04535406,85645.05442526958,147886.2801744984,0,1856.576827277544 -9159,11285,20473,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,5.358998257977461,5.236710956634488,0,0,-939.2660509238893,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,7.561450909013082,0,62.62177963623852,0,1,1,0,2.91713982960585,5.320324751943673,63.67,30.04,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,689,250338.8895310962,-28731.03687947717,0,0,1413.994559858099 -9160,11286,20474,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.293255841005426,8.094580428087166,0,0,-975.7262546111541,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2073030703291179,8.329722148224244,54.1,59.11,-9,-9,0,1,1,0,0,0,12,4,1,564,1084196.786185661,611613.2203179783,312479.4870574008,0,2999.344818469976 -9161,11287,20475,20476,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.489738511202864,7.830509158041717,6.139559681246093,13,-7,-74.89676418580088,0,2,2,2019,9,0,23,23,1,0,0,10.00412769310791,10.00412769310791,0,0,0,0,0,0,0,0,3.622445737202082,5.877267704939853,56.33,51.02,57.33,53.46,8.333333333333334,1,1,0,0,10,4,3,1,690,1124996.833967579,624136.676915529,297762.0495180623,0,1527.030103728667 -9161,11287,20476,20475,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.322082264676827,7.082088872038117,13,7,-34.51321949789678,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.267833924542025,57.33,53.46,56.33,51.02,8.333333333333334,1,1,0,0,3,4,3,1,690,1124996.833967579,624136.676915529,297762.0495180623,0,1527.030103728667 -9162,11288,20477,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,7.603528267444092,7.649913199140508,0,0,-992.3656023422202,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.11759378310358,7.609796158738376,40.48,45.26,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,476,807585.5721673904,115463.0050570982,497430.2713810022,0,1380.449478760438 -9163,11289,20478,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.350406673710205,7.468524292546192,5.588721688932475,0,0,-1035.03601378892,0,3,3,2019,25,10,30,24,1,10,0,7.399605498822467,7.399605498822467,0,0,0,0,0,1,1,0,0,5.79494282393436,37.09,45.2,-9,-9,3.333333333333333,1,1,0,0,10,11,3,1,814,389388.663514844,258755.6152064702,174212.9303957355,0,1380.698503756036 -9164,11290,20479,20480,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.029017075943177,7.394564214597483,9,9,36.42146616043596,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.682083024924403,6.87666276762534,56.19,41.56,36.75,42.48,6.666666666666667,1,1,0,0,0,8,3,1,297.5,823636.9220172735,-1037.25603881295,803904.4633609045,0,2883.462671472733 -9164,11290,20480,20479,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.450910445544214,6.475773634128099,9,0,-17.28756478155766,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.231430301601073,6.769050201608085,36.75,42.48,56.19,41.56,8.333333333333334,3,4,0,0,0,8,3,1,297.5,823636.9220172735,-1037.25603881295,803904.4633609045,0,2883.462671472733 -9164,11291,20481,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.95248121535773,7.98397624217929,0,0,0,-965.6319412055714,0,-9,-9,2019,8,0,40,40,1,0,0,6.254571873703616,6.254571873703616,0,0,0,0,0,1,1,0,3.826992503804637,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,10,8,3,1,375,61971.5219500361,0,0,0,1432.957490646427 -9165,11292,20482,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.52042018013,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.237775149265339,0,25.19831641283074,0,1,1,0,0,0,51.15,34.78,-9,-9,10,1,1,0,0,0,1,1,0,817,-167546.85013229,0,0,0,1489.181606877886 -9166,11293,20483,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-915.8065266142572,0,1,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,3,4,0,1,7,8,1,0,331,-16729.35156755713,-42984.96907144347,0,0,1107.664534109943 -9167,11294,20484,20485,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,65,-1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,14.17259743344095,0,0,1,1,0,0,0,54,44,56,44,8,1,1,0,0,0,7,1,1,440.5,-81908.8295136723,0,0,0,937.7398133743934 -9167,11294,20485,20484,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,65,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.422239248130921,0,56,44,54,44,8,1,1,0,0,0,7,1,1,440.5,-81908.8295136723,0,0,0,937.7398133743934 -9168,11295,20486,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,8.652436710003224,8.979880836615379,6.457465200622804,0,0,-935.3878128743114,0,2,3,2019,23,11,38,37,1,11,0,16.17527587986034,16.17527587986034,0,0,0,0,0,1,1,0,6.199788875883911,0,32.09,30.06,-9,-9,1.666666666666667,1,1,0,0,9,13,4,1,811.3333333333334,130464.8554227024,77435.34677670941,100695.9967302921,0,2973.360618791197 -9168,11295,20487,-9,20486,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.560870822152,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,811.3333333333334,130464.8554227024,77435.34677670941,100695.9967302921,0,2973.360618791197 -9168,11295,20488,-9,20486,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-982.8322989424686,-9,1,-9,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,60.73,39.4,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,811.3333333333334,130464.8554227024,77435.34677670941,100695.9967302921,0,2973.360618791197 -9169,11296,20489,-9,20493,20490,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1043.991050247748,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9169,11296,20490,20493,-9,-9,1,1,30,1,4,0,2,2,-9,0,4,7.661807518268068,7.642485794150261,0,8,0,5.179583857070686,0,3,-9,2019,5,0,43,50,1,0,0,5.769330024217926,5.769330024217926,0,0,0,0,0,1,1,0,0,0,55.87,53.99,49.12,57.28,10,1,1,0,0,7,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9169,11296,20491,-9,20493,20490,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.6716321253795,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9169,11296,20492,-9,20493,20490,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.338161903149,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9169,11296,20493,20490,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,6.927424015659298,6.899242906054578,0,8,0,132.5331892876059,0,2,3,2019,12,0,25,41,1,0,0,5.226865377246008,5.226865377246008,0,0,0,0,0,1,1,0,0,0,49.12,57.28,55.87,53.99,8.333333333333334,1,1,0,0,4,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9169,11296,20494,-9,20493,20490,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1087.966879221689,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,3,0,1047.833333333333,-13393.4290917293,0,0,0,2601.508161091458 -9170,11297,20495,20496,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.195984925966929,7.862907033977423,0,4,-5,-49.21001090597517,0,2,2,2019,4,0,20,50,1,0,0,18.39057843312768,18.39057843312768,0,0,0,1.4247766228002,2,0,0,0,0,0,59.53,56.44,58.31,42.52,10,1,1,0,0,8,6,5,1,416,1175413.09188313,1103573.627502987,313547.6339360091,214462.5924553165,3838.371564079968 -9170,11297,20496,20495,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,9.052399733580245,8.903380263325472,0,4,5,140.2707752069495,0,-9,-9,2019,7,0,45,40,1,0,0,18.93614973529343,18.93614973529343,0,0,0,0,0,0,0,0,5.348151485563944,0,58.31,42.52,59.53,56.44,8.333333333333334,1,1,0,0,8,6,5,1,416,1175413.09188313,1103573.627502987,313547.6339360091,214462.5924553165,3838.371564079968 -9171,11298,20497,20498,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,57,3,-127.1117230199439,0,2,2,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,41.7,28.47,61.04,28.88,3.333333333333333,1,1,0,0,0,8,2,1,1771,648727.8631895401,198132.120222716,217131.7775840461,0,1682.16877977129 -9171,11298,20498,20497,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.600427620603975,7.203005553253839,57,-3,47.8820582764391,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.33037861244261,61.04,28.88,41.7,28.47,5,1,1,0,0,0,8,2,1,1771,648727.8631895401,198132.120222716,217131.7775840461,0,1682.16877977129 -9172,11299,20499,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1007.914390295425,0,2,-9,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3.795514661291508,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,437,97874.64942426926,0,0,0,-296.1292814783347 -9173,11300,20500,20501,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.26048275095212,8.107515228757904,0,28,1,11.17471985982726,0,1,1,2019,6,0,38,48,1,0,0,12.38893588723389,12.38893588723389,0,0,0,0,0,0,0,0,.6354337174100064,0,57.16,56.15,50.42,53.85,8.333333333333334,1,1,0,0,10,9,5,1,2095,1606125.908568135,849725.6734619651,463563.0683198628,0,4038.666372328346 -9173,11300,20501,20500,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.090813867330093,9.000777527038071,0,28,-1,100.3785921590542,0,2,2,2019,9,0,46,46,1,0,0,19.77936295154954,19.77936295154954,0,0,0,0,0,0,0,0,2.228530768774335,0,50.42,53.85,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,2095,1606125.908568135,849725.6734619651,463563.0683198628,0,4038.666372328346 -9174,11301,20502,-9,20505,20506,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.782341224633,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,946.4,103578.2740138973,35680.96926017575,70885.41031161281,73169.38536212804,3789.093011492435 -9174,11301,20503,-9,20505,20506,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.209195529745,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,3,0,946.4,103578.2740138973,35680.96926017575,70885.41031161281,73169.38536212804,3789.093011492435 -9174,11301,20504,-9,20505,20506,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1082.982302504752,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,3,0,946.4,103578.2740138973,35680.96926017575,70885.41031161281,73169.38536212804,3789.093011492435 -9174,11301,20505,20506,-9,-9,1,0,31,1,3,0,1,1,1,0,4,7.657812870690367,7.646203720374847,0,4,-11,-26.63774694540242,-9,3,1,2019,2,0,44,0,1,0,0,5.633161603993709,5.633161603993709,0,0,0,0,0,1,1,0,0,0,48,57,50.49,49.65,8.333333333333334,3,4,0,0,3,2,3,0,946.4,103578.2740138973,35680.96926017575,70885.41031161281,73169.38536212804,3789.093011492435 -9174,11301,20506,20505,-9,-9,1,1,42,1,3,0,1,1,-9,0,3,7.853394482029545,7.393841338504497,0,11,11,-62.7040906231094,-9,3,3,2019,3,0,24,0,1,0,0,8.317589340458985,8.317589340458985,0,0,0,0,0,1,1,0,0,0,50.49,49.65,48,57,6.666666666666667,3,4,0,0,3,2,3,0,946.4,103578.2740138973,35680.96926017575,70885.41031161281,73169.38536212804,3789.093011492435 -9175,11302,20507,20508,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.861645804004646,7.482465671213041,0,5,13,-10.55473685631593,0,-9,-9,2019,7,0,36,30,1,0,0,6.047040356126364,6.047040356126364,0,0,0,0,0,0,0,0,0,0,56.34,40.63,35.63,51.49,6.666666666666667,1,1,0,0,11,2,3,0,1336,523949.4840503583,261524.7357855298,139562.48077954,0,1103.18567310024 -9175,11302,20508,20507,-9,-9,1,0,32,0,0,0,1,1,1,0,3,5.555849001829844,5.800757695350496,0,5,-13,-56.22547093071461,-9,-9,-9,2019,18,5,16,0,1,5,0,2.096504283248627,2.096504283248627,0,0,0,0,0,0,0,0,6.041052518589016,0,35.63,51.49,56.34,40.63,3.333333333333333,1,1,0,0,6,2,3,0,1336,523949.4840503583,261524.7357855298,139562.48077954,0,1103.18567310024 -9176,11303,20509,20510,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.198645566303259,7.334472202682209,0,6,1,-46.20004178720709,0,-9,-9,2019,10,0,16,18,1,1,0,9.427184570539001,9.427184570539001,0,0,0,0,0,1,1,0,0,0,51,54,52,55,8,1,1,0,0,1,4,3,0,898,15052.97069395245,-22894.67459857925,0,0,2170.065351855666 -9176,11303,20510,20509,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,7.451346020734512,7.503149522970576,0,24,-1,-73.86818817803223,0,3,2,2019,9,0,13,20,1,1,0,15.12743747201807,15.12743747201807,0,0,0,0,0,1,1,0,0,0,52,55,51,54,7,1,1,0,0,6,4,3,0,898,15052.97069395245,-22894.67459857925,0,0,2170.065351855666 -9176,11304,20511,-9,20509,20510,1,1,23,0,0,0,2,2,1,0,4,7.630928831853466,7.840501938288291,0,0,0,-975.9358562042407,-9,3,2,2019,6,0,41,0,1,0,1,9.080038248903168,9.080038248903168,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,521,315551.0768048923,0,0,0,840.9835091036956 -9176,11305,20512,-9,20509,20510,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-937.537338593715,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.2,52.02,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,90,0,0,0,0,0 -9177,11306,20513,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.991805762209,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.286171211446541,0,54.88,19.94,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,440,-213162.4611105715,0,0,0,350.4817325963096 -9178,11307,20514,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.628002239659455,8.298742070520117,0,0,0,-957.1419361062361,0,2,2,2019,28,12,38,38,1,12,0,19.90783723632266,19.90783723632266,0,0,0,0,0,0,0,0,3.89773601873646,0,20.23,65.13,-9,-9,5,1,1,0,0,9,8,5,0,325,312803.1750975739,-11188.04496807614,0,0,2207.329982793531 -9179,11308,20515,20516,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,5.083490055732414,4.912125262701378,8,1,-100.7449471364255,0,3,2,2019,11,0,0,45,3,2,0,0,0,0,0,0,0,0,1,1,0,0,4.552591266250745,49,48,48.87,58.55,7,1,1,0,0,7,4,3,1,194.5,532066.0348913035,481190.170793447,226142.8109713093,71391.44614960869,2975.121338853181 -9179,11308,20516,20515,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.303523400485966,8.253807200931856,0,8,-1,-31.02617021443939,0,-9,2,2019,6,0,48,44,1,0,0,7.649051009300587,7.649051009300587,0,0,0,.4881259646962057,27,1,1,0,0,0,48.87,58.55,49,48,8.333333333333334,1,1,0,0,8,4,3,1,194.5,532066.0348913035,481190.170793447,226142.8109713093,71391.44614960869,2975.121338853181 -9179,11309,20517,-9,20515,-9,1,1,36,0,0,0,1,1,-9,0,5,8.444894301407956,8.618639492233211,0,0,0,-932.1900862119547,0,2,-9,2019,9,3,49,64,1,3,1,12.90392091843307,12.90392091843307,0,0,0,0,14.5,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,9,4,5,1,221,-318716.2661879372,12138.15796312219,0,0,1956.624685605629 -9179,11310,20518,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.607450005538303,7.579343331234729,0,0,0,-1089.161091157412,0,-9,-9,2019,13,3,35,37,1,3,0,6.93077464844376,6.93077464844376,0,0,0,0,2,1,1,0,0,0,28.38,64.07000000000001,-9,-9,6.666666666666667,1,1,0,0,4,4,3,1,452,15387.63566020752,84587.69512028339,0,0,680.7111546170188 -9180,11311,20519,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.00623106968558,7.848432229837896,0,0,0,-1060.73933180683,0,2,2,2019,12,0,34,33,1,0,0,8.895824027277349,8.895824027277349,0,0,0,0,0,0,0,0,0,0,50.18,52.62,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,541,182073.8814677513,60194.07280928381,126503.2999020471,35479.83659511223,1283.111664857203 -9180,11312,20520,-9,20519,-9,1,0,18,0,0,0,2,2,1,0,4,6.708355513740981,6.827288693648819,0,0,0,-979.6298754914682,-9,2,-9,2019,6,0,30,0,1,0,1,3.632487652717142,3.632487652717142,0,0,0,0,0,0,0,0,0,0,49.59,58.37,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,180,-95707.56876188217,0,0,0,1048.673401103722 -9181,11313,20521,20522,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.409556005820059,8.467628457241098,10,4,-37.3559908283937,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.054336993656508,8.564440425953778,46.34,51.52,37.74,25.05,6.666666666666667,2,3,0,0,3,11,4,1,368,1403441.187203936,581891.9702777485,220993.9393310293,0,3715.54328944035 -9181,11313,20522,20521,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,4.963462901096332,4.904870775665978,10,-4,45.51330895021118,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.611652835834251,4.90646356181492,37.74,25.05,46.34,51.52,0,1,1,0,0,0,11,4,1,368,1403441.187203936,581891.9702777485,220993.9393310293,0,3715.54328944035 -9182,11314,20523,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.678040200979109,6.999231055863799,0,0,-965.5985096802341,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.136085090007263,3.830508908171252,46.57,23.47,-9,-9,6.666666666666667,1,1,0,0,7,2,2,1,2437,274347.3938695694,191038.1733290081,85962.81695211069,0,2760.986620612936 -9183,11315,20524,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.33343451669563,7.775826119623829,0,0,-985.2074666836916,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.323103829465337,46.53,61.33,-9,-9,8.333333333333334,4,2,0,0,4,10,3,1,96,407310.4601580249,102242.6878557485,0,0,1601.842790191977 -9184,11316,20525,20526,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.087031995962325,7.097167891010985,53,1,64.69069391965589,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.18950634909729,7.031865655816785,67.94,25.11,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,4748,938358.1375176344,559310.1650679752,261096.6408639635,0,3419.371655825192 -9184,11316,20526,20525,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.869692176290921,7.837332409768441,53,-1,-74.93730980606102,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.115165464544749,8.025663730042924,57.16,56.15,67.94,25.11,8.333333333333334,1,1,0,0,6,12,3,1,4748,938358.1375176344,559310.1650679752,261096.6408639635,0,3419.371655825192 -9185,11317,20527,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-885.9389898641058,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,36.24,-9,-9,5,1,1,0,1,0,9,2,0,339,0,0,0,0,842.2568110786865 -9186,11318,20528,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-886.1373041922849,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,39.96,43.71,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,2747,336673.6888881796,0,32375.97677359263,0,1034.624865662403 -9186,11319,20529,-9,20528,-9,1,0,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-945.6743340224369,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,71.5,1,1,0,0,0,42.98,26.34,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,792,-42164.52887047127,0,0,0,355.6923889045034 -9186,11320,20530,-9,20528,-9,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-997.4664806949937,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.76,48.67,-9,-9,0,1,1,0,0,0,11,1,0,564,-9899.030433286463,0,0,0,81.99869217624533 -9187,11321,20531,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.315422982858076,8.878902613601198,0,0,0,-969.3496233653547,0,2,2,2019,6,0,40,38,1,0,0,24.09599545753289,24.09599545753289,0,0,0,0,0,1,1,0,.560557457685122,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,712,467048.5427480801,210346.7073902673,397533.1786685598,34484.23005208097,2109.336646852207 -9188,11322,20532,20533,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,8,13,-43.5946357151759,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,49.01,51.14,60.45,6.666666666666667,1,1,0,0,0,12,3,1,848,729402.0395361788,142390.6806974422,325224.7356535266,0,1589.364307141488 -9188,11322,20533,20532,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,7.776977009070001,7.876668934081755,0,8,-13,-78.11389604098116,0,3,3,2019,6,0,39,39,1,0,0,7.017081892595739,7.017081892595739,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.84,49.01,6.666666666666667,1,1,0,0,9,12,3,1,848,729402.0395361788,142390.6806974422,325224.7356535266,0,1589.364307141488 -9189,11323,20534,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.383402790347242,8.269642715518941,0,0,0,-1068.547481127564,0,1,2,2019,10,0,21,38,1,0,0,19.7142972905185,19.7142972905185,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,149,-6208.69984898879,-37185.17321142658,0,0,779.5054886464598 -9190,11324,20535,20538,-9,-9,1,1,46,1,3,0,2,2,-9,0,3,7.133518504251605,7.178079559625126,0,21,2,13.50369895084662,0,3,3,2019,10,0,30,30,1,0,0,6.645262217207889,6.645262217207889,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50,55,8.333333333333334,2,3,0,0,7,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9190,11324,20536,-9,20538,20535,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-907.5179921114385,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9190,11324,20537,-9,20538,20535,1,1,17,1,3,1,2,0,0,0,5,0,0,0,0,0,-1083.63909102134,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,2,3,0,0,0,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9190,11324,20538,20535,-9,-9,1,0,44,1,3,0,3,3,-9,0,4,0,0,0,21,-2,77.23674130376466,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,57.33,53.46,8,2,3,0,1,0,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9190,11324,20539,-9,20538,20535,1,1,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.5907907315973,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9190,11324,20540,-9,20538,20535,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.0573531449893,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,1319.5,420547.0076386931,56887.46272098128,295587.6119984236,0,1822.670753887504 -9191,11325,20541,20543,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.601569728685499,7.613952667076207,0,12,-4,-84.06138984583019,0,2,3,2019,1,0,96,8,1,0,0,2.174640095479037,2.174640095479037,0,0,0,0,7,1,1,0,0,0,61.19,42.11,32.68,35.19,8.333333333333334,1,1,0,0,4,1,3,0,857,620122.7025845383,267812.9808054228,321227.1148756822,0,2561.285516443191 -9191,11325,20542,-9,20543,20541,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1004.377239513787,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,857,620122.7025845383,267812.9808054228,321227.1148756822,0,2561.285516443191 -9191,11325,20543,20541,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.797846207423902,7.648322306801592,0,12,4,-120.7823086441869,0,3,-9,2019,26,12,36,48,1,12,0,6.617543117488244,6.617543117488244,0,0,0,0,0,1,1,0,0,0,32.68,35.19,61.19,42.11,3.333333333333333,1,1,0,0,5,1,3,0,857,620122.7025845383,267812.9808054228,321227.1148756822,0,2561.285516443191 -9192,11326,20544,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.536690196280794,5.566301630118527,0,0,-1053.743405389918,0,3,3,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,5.343669645450758,25.93,39.51,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,451,340915.0634101442,110989.2559174071,230955.9952681074,0,968.853566621279 -9193,11327,20545,20546,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,8.122158293796675,8.277942008114781,0,28,2,-31.37484830278944,0,3,3,2019,8,0,55,60,1,0,0,7.442282905429377,7.442282905429377,0,0,0,0,0,0,0,0,2.616981700368437,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,8,13,4,1,559.5,250580.2051358235,165157.3283202308,252017.2141287922,0,3142.783633134944 -9193,11327,20546,20545,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.526706196822103,8.864926246946599,0,28,-2,-14.87279451517065,0,2,2,2019,8,0,37,44,1,0,0,17.8492310912133,17.8492310912133,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,11,13,4,1,559.5,250580.2051358235,165157.3283202308,252017.2141287922,0,3142.783633134944 -9194,11328,20547,20548,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,7.828866491802136,7.80597597178597,0,6,-1,83.69948703377844,0,3,3,2019,12,0,32,31,1,0,0,10.30606245481739,10.30606245481739,0,0,0,0,0,0,0,0,2.766649702192522,0,39.06,60.84,50.58,56.41,5,1,1,0,0,8,8,5,0,1675,118207.1701511621,-3688.379718480892,230399.095019457,148668.4215006461,3397.412105639255 -9194,11328,20548,20547,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.689188691598222,8.767917032887578,0,6,1,32.63135770659126,0,-9,-9,2019,13,1,37,37,1,1,0,21.26793133230518,21.26793133230518,0,0,0,0,0,0,0,0,0,0,50.58,56.41,39.06,60.84,8.333333333333334,4,5,0,0,8,8,5,0,1675,118207.1701511621,-3688.379718480892,230399.095019457,148668.4215006461,3397.412105639255 -9195,11329,20549,-9,20550,20551,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.670189695657,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,1,1,361.6666666666667,-120966.4534635499,0,0,0,1798.655690688246 -9195,11329,20550,20551,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,0,0,0,2,-5,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.14,29.18,8.333333333333334,2,3,1,0,0,8,1,1,361.6666666666667,-120966.4534635499,0,0,0,1798.655690688246 -9195,11329,20551,20550,-9,20554,1,1,32,1,1,0,2,2,-9,1,2,0,0,0,2,5,0,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.14,29.18,57.33,53.46,5,2,3,0,0,0,8,1,1,361.6666666666667,-120966.4534635499,0,0,0,1798.655690688246 -9195,11330,20552,20553,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.348602093540997,8.161847310413572,0,2,-1,-91.67036511571236,0,-9,-9,2019,12,0,37,37,1,0,0,12.75396024932439,12.75396024932439,0,0,0,0,0,1,1,0,0,0,33.12,48.74,35.29,40.33,5,2,3,0,0,3,8,5,1,638.5,-106313.8391705159,-53597.23689344215,0,0,4460.720662695438 -9195,11330,20553,20552,-9,20554,1,1,29,1,1,0,2,2,-9,0,3,8.742192745573622,8.887797986117793,0,2,1,29.13252685487487,0,-9,2,2019,5,0,38,45,1,0,0,21.29014046931953,21.29014046931953,0,0,0,0,0,1,1,0,0,0,35.29,40.33,33.12,48.74,6.666666666666667,2,3,0,0,13,8,5,1,638.5,-106313.8391705159,-53597.23689344215,0,0,4460.720662695438 -9195,11331,20554,-9,-9,-9,1,1,58,1,1,0,2,2,-9,0,1,8.769910914983619,8.574765406540061,0,0,0,-1208.781855204115,0,-9,-9,2019,19,7,37,38,1,7,0,14.11308050139757,14.11308050139757,0,0,0,0,14.5,1,1,0,0,0,26.49,27.53,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,188,309870.3185191508,197914.8509563854,263994.4402372662,65564.49283225676,1811.437767891338 -9196,11332,20555,20556,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.141079967906221,7.504052180254996,0,4,-4,-70.09391460842812,0,2,-9,2019,11,0,21,21,1,0,0,9.268445143128133,9.268445143128133,0,0,0,.3097296051005323,0,1,1,0,0,0,50.21,48.32,57.06,57.76,6.666666666666667,1,1,0,0,8,13,3,0,565.6666666666666,75040.29385997826,27547.47377289013,186622.0685053279,138358.9298359452,3272.591182922999 -9196,11332,20556,20555,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.030941327556592,7.988900143544999,0,4,4,-83.29540227530637,0,-9,-9,2019,7,0,45,45,1,0,0,9.743370753163987,9.743370753163987,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.21,48.32,6.666666666666667,1,1,0,0,3,13,3,0,565.6666666666666,75040.29385997826,27547.47377289013,186622.0685053279,138358.9298359452,3272.591182922999 -9196,11332,20557,-9,20555,20556,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-888.4614962286831,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,565.6666666666666,75040.29385997826,27547.47377289013,186622.0685053279,138358.9298359452,3272.591182922999 -9197,11333,20558,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.961683856840306,8.17888759946578,0,0,0,-899.3353691828347,0,-9,-9,2019,18,6,40,38,1,6,0,9.109485051382821,9.109485051382821,0,0,0,0,0,1,1,0,0,0,25.84,63.8,-9,-9,3.333333333333333,1,1,0,0,8,9,4,1,1148,-142887.5891311729,65362.8150284781,0,0,1668.583440806758 -9198,11334,20559,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,4,0,2.836251484524442,2.638048991387468,0,0,-900.6115294054719,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,17.44895478767564,0,0,1,1,0,0,2.452049722371789,49.89,32.17,-9,-9,5,1,1,0,0,0,12,2,1,216,71813.77353295972,0,135992.0778813424,0,1663.540554745212 -9199,11335,20560,20561,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,7.615720200427352,8.016439255227681,5.923616654286591,54,-7,19.10833050334905,0,3,3,2019,7,0,48,15,1,0,0,5.732973924773872,5.732973924773872,1,2.354513358450108,0,0,0,1,1,0,8.303073550502907,6.259518832470112,53.38,52.51,50.65,53.71,8.333333333333334,1,1,0,0,9,4,3,1,269.5,649677.7037062231,276136.4943770443,371331.9923459128,0,3993.610952245346 -9199,11335,20561,20560,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.397625560066952,7.173314594360636,54,7,46.80280519243474,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.64477551467758,7.131626089291652,50.65,53.71,53.38,52.51,8.333333333333334,1,1,0,0,9,4,3,1,269.5,649677.7037062231,276136.4943770443,371331.9923459128,0,3993.610952245346 -9200,11336,20562,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1022.090144748609,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.74,49.01,-9,-9,3.333333333333333,2,3,0,0,0,7,1,0,215,1260868.074984252,0,1232187.733012254,0,1552.982122299868 -9201,11337,20563,20564,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.959584534861587,9.446089296791845,0,27,-1,26.70662216537451,0,2,2,2019,11,0,57,52,1,0,0,31.16196342143733,31.16196342143733,0,0,0,0,0,0,0,0,0,0,49.86,55.31,51.77,58.57,8.333333333333334,1,1,0,0,9,6,5,1,1078,1562105.265075042,953006.9668390808,388956.7493863503,0,8083.515523217139 -9201,11337,20564,20563,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,26,1,-60.01703548890337,1,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,51.77,58.57,49.86,55.31,1.666666666666667,1,1,0,0,2,6,5,1,1078,1562105.265075042,953006.9668390808,388956.7493863503,0,8083.515523217139 -9201,11337,20565,-9,20563,20564,1,1,17,0,0,1,2,0,0,0,4,0,4.713412479853643,4.416866477159341,0,0,-940.443362261106,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,5.244829338564796,0,59.15,49.67,-9,-9,1.666666666666667,1,1,0,0,0,6,5,1,1078,1562105.265075042,953006.9668390808,388956.7493863503,0,8083.515523217139 -9201,11338,20566,-9,20563,20564,1,1,19,0,0,1,3,0,-9,0,4,0,0,0,0,0,-893.8192548318692,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,6,1,1,445,113614.923908776,0,0,0,805.871920962833 -9202,11339,20567,20568,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.40895572949962,7.269941568682201,45,5,132.3070943895024,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.89011353798146,7.237920782495183,61.27,46.03,57.33,53.46,8.333333333333334,1,1,0,0,0,7,2,1,1765,356331.6191767156,178403.0694633049,282228.0964289128,34183.12455855161,1855.21382773713 -9202,11339,20568,20567,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,45,-5,41.42552116506549,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.49565925069468,0,57.33,53.46,61.27,46.03,10,1,1,0,0,4,7,2,1,1765,356331.6191767156,178403.0694633049,282228.0964289128,34183.12455855161,1855.21382773713 -9203,11340,20569,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.131426180832467,9.152582736549569,0,0,0,-895.1476311493543,0,2,1,2019,17,5,46,45,1,5,0,22.75630160302702,22.75630160302702,0,0,0,0,0,0,0,0,3.202131228850565,0,52.64,35.24,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,438,-19383.15017013834,65913.09741572218,133260.4274380412,12818.30581169182,3433.028279111629 -9203,11341,20570,-9,20569,-9,1,1,22,0,0,0,2,2,-9,0,3,7.712943484968935,7.705620201588,0,0,0,-997.3924428228885,0,1,1,2019,12,2,44,37,1,2,1,5.656023505551494,5.656023505551494,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,2914,112314.0872128245,0,0,0,700.9276050256117 -9204,11342,20571,-9,-9,-9,1,0,53,1,1,0,2,2,-9,1,1,7.428595000742745,7.793520003318806,2.410863930332962,0,0,-943.0288939216913,0,3,3,2019,12,1,22,25,1,1,0,9.403740127976738,9.403740127976738,0,0,0,0,74.5,1,1,0,2.669486458291761,0,29.47,21.77,-9,-9,1.666666666666667,1,1,0,1,8,11,3,1,2006,799819.2026471106,532411.3363887243,0,0,1177.019282232638 -9204,11343,20572,-9,20574,20573,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.640007914277,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,1,1422.333333333333,-68701.16476066249,0,0,0,1415.632501673565 -9204,11343,20573,20574,20571,-9,1,1,28,1,1,0,2,2,-9,0,1,7.614266968872922,7.918942985634142,0,4,6,-50.92320669792363,0,2,2,2019,14,2,39,50,1,2,0,5.544533021327812,5.544533021327812,0,0,0,0,0,1,1,0,0,0,28.46,45.82,26.64,58.12,8.333333333333334,1,1,0,0,6,11,2,1,1422.333333333333,-68701.16476066249,0,0,0,1415.632501673565 -9204,11343,20574,20573,-9,-9,1,0,22,1,1,0,2,2,-9,1,3,0,0,0,4,-6,-98.20356139812249,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,26.64,58.12,28.46,45.82,6.666666666666667,1,1,1,0,0,11,2,1,1422.333333333333,-68701.16476066249,0,0,0,1415.632501673565 -9204,11344,20575,-9,20571,-9,1,0,25,1,1,0,2,2,-9,1,4,0,0,0,0,0,-952.9333565765822,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,593,41037.36437676068,0,0,0,746.6923395793999 -9205,11345,20576,-9,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,9.058360036732296,8.859320472007752,0,0,-1042.08646165542,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.318474245622388,8.77789895672487,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,806,1512496.560360914,587582.5361748638,483898.5360670415,0,5758.68444560779 -9206,11346,20577,20578,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.736581071765061,7.949725370259862,0,3,-12,-114.6524990921906,0,2,2,2019,6,0,30,36,1,0,0,9.139484046804897,9.139484046804897,0,0,0,0,0,0,0,0,1.032678335064363,0,60.12,54.8,53.89,41.28,10,1,1,0,0,13,10,5,1,890,1486603.149714319,280529.0716937413,0,0,4655.00105644567 -9206,11346,20578,20577,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.842766869428859,9.057278466445736,0,3,12,-32.86259882124182,0,2,3,2019,12,3,45,48,1,3,0,18.1464703635542,18.1464703635542,0,0,0,0,0,0,0,0,0,0,53.89,41.28,60.12,54.8,8.333333333333334,1,1,0,0,13,10,5,1,890,1486603.149714319,280529.0716937413,0,0,4655.00105644567 -9207,11347,20579,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.011978281925,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,8.586716569652136,0,0,1,1,0,.4670424095895138,0,54,45,-9,-9,8,1,1,0,0,0,13,1,0,368,-39527.06514868091,0,-10180.14845486289,0,806.1942700692248 -9208,11348,20580,20581,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.282808395887868,9.201755467678128,0,8,0,-140.6721917257142,0,-9,-9,2019,11,0,88,48,1,0,0,15.1035842503457,15.1035842503457,0,0,0,0,0,0,0,0,.1483656001412249,0,46.88,49.92,60.27,49.27,8.333333333333334,1,1,0,0,12,9,5,1,748.5,2643095.283301719,797842.1563325764,977135.1718821144,0,6623.344711475234 -9208,11348,20581,20580,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.973351764748031,8.90826191433715,0,8,0,-53.58705138131383,0,3,2,2019,8,0,53,63,1,0,0,23.11313124133779,23.11313124133779,0,0,0,0,0,0,0,0,0,0,60.27,49.27,46.88,49.92,6.666666666666667,1,1,0,0,12,9,5,1,748.5,2643095.283301719,797842.1563325764,977135.1718821144,0,6623.344711475234 -9209,11349,20582,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,4.363724641681209,4.100126550211858,0,0,-1044.926258001118,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,9.11567699539593,0,0,1,1,0,0,4.053401721051502,48.49,40.21,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,158,-5875.687186067677,30361.99725555589,0,0,1717.490491246726 -9210,11350,20583,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.080846613380052,7.780854377622107,0,0,0,-965.6264502917894,0,-9,2,2019,6,0,8,40,1,0,0,39.52917963116487,39.52917963116487,0,0,0,0,0,0,0,0,0,0,58.46,44.55,-9,-9,8.333333333333334,1,1,0,0,8,4,4,0,158,33590.22060642877,64617.4729555245,0,0,1347.350014885273 -9211,11351,20584,20585,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.824201260617121,8.851817062845601,0,6,2,37.03482712081911,0,3,2,2019,16,5,70,60,1,5,0,14.20534511937988,14.20534511937988,0,0,0,0,0,1,1,0,0,0,40.93,38.55,43.18,47.7,5,1,1,0,0,9,5,4,1,503.3333333333333,955236.6968017368,718364.2718891563,206956.7271589234,0,3483.533346926583 -9211,11351,20585,20584,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.358189999722715,7.276068495863946,0,20,-2,-16.47015931362989,0,3,3,2019,11,0,23,22,1,0,0,7.854823479457775,7.854823479457775,0,0,0,0,0,1,1,0,0,0,43.18,47.7,40.93,38.55,6.666666666666667,1,1,0,0,9,5,4,1,503.3333333333333,955236.6968017368,718364.2718891563,206956.7271589234,0,3483.533346926583 -9211,11351,20586,-9,20585,20584,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1024.717632782025,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,57.72,-9,-9,10,1,1,0,0,0,5,4,1,503.3333333333333,955236.6968017368,718364.2718891563,206956.7271589234,0,3483.533346926583 -9212,11352,20587,20588,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.622667192563563,8.858893626273195,0,24,0,62.85863547036115,0,2,2,2019,11,0,48,55,1,0,0,17.19490908397331,17.19490908397331,0,0,0,0,0,1,1,0,4.778357253088732,0,39.48,54.62,54.2,57.49,5,1,1,0,0,11,7,5,1,792.5,2276707.441499488,811821.5783142885,0,0,4098.178271487732 -9212,11352,20588,20587,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.889705140208893,8.882832920831955,0,23,0,-78.05404506974942,0,2,2,2019,7,0,39,40,1,0,0,19.18857221195545,19.18857221195545,0,0,0,0,0,1,1,0,4.03912164755954,0,54.2,57.49,39.48,54.62,8.333333333333334,1,1,0,0,11,7,5,1,792.5,2276707.441499488,811821.5783142885,0,0,4098.178271487732 -9212,11353,20589,-9,20587,20588,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1014.341623939681,-9,1,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.633855477834634,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,429,144986.0255450624,0,0,0,-748.8634568817441 -9213,11354,20590,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1038.348170523277,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.19,27.06,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,192,-48945.94188339316,0,0,0,795.1914583451979 -9214,11355,20591,20592,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.952014280737346,8.740226527548069,0,5,5,-31.53147699194561,0,2,1,2019,8,0,38,40,1,0,0,17.32019814611677,17.32019814611677,0,0,0,0,0,0,0,0,5.053020802188584,0,51.73,58.82,34.72,62.28,8.333333333333334,1,1,0,0,9,5,5,1,1209,223123.3388804567,50130.22261704272,155156.8215364972,8595.958993819515,3304.530721681248 -9214,11355,20592,20591,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.060832718900564,7.816412127695634,0,5,-5,-186.9590709586717,0,-9,-9,2019,13,2,36,36,1,2,0,9.643922953113998,9.643922953113998,0,0,0,0,0,0,0,0,0,0,34.72,62.28,51.73,58.82,8.333333333333334,1,1,0,0,5,5,5,1,1209,223123.3388804567,50130.22261704272,155156.8215364972,8595.958993819515,3304.530721681248 -9215,11356,20593,20594,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.863868424916945,7.640261486186382,0,36,-3,-128.2361711636152,0,-9,-9,2019,6,0,38,40,1,0,0,6.652967583699208,6.652967583699208,0,0,0,0,0,0,0,0,.7917083937302334,0,58.75,48.57,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,1,1410.5,1516313.732778495,1379306.197488245,207314.4480189339,20303.86236653788,3451.530807967531 -9215,11356,20594,20593,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.403891397224019,8.390883395925552,0,37,3,-107.5938429479964,-9,-9,-9,2019,10,0,50,0,1,0,0,11.55960769309019,11.55960769309019,0,0,0,0,0,0,0,0,0,0,51.24,58.84,58.75,48.57,8.333333333333334,3,4,0,0,11,6,5,1,1410.5,1516313.732778495,1379306.197488245,207314.4480189339,20303.86236653788,3451.530807967531 -9215,11357,20595,-9,20593,20594,1,1,21,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1153.240828553735,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,1,6,2,1,832,120954.1956262097,0,0,0,37.63175935300093 -9216,11358,20596,20598,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,7,0,-32.31967936743671,0,2,3,2019,6,0,0,24,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.56,47.27,8.333333333333334,1,1,1,0,7,13,3,1,1051.5,653998.0341945896,149615.0752312302,422148.8869805394,0,1369.126495829492 -9216,11358,20597,-9,20596,20598,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.2749113498494,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1051.5,653998.0341945896,149615.0752312302,422148.8869805394,0,1369.126495829492 -9216,11358,20598,20596,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.352275816201455,8.252490593242602,0,7,0,22.36486533349341,0,-9,-9,2019,10,0,46,54,1,0,0,8.815966761058059,8.815966761058059,0,0,0,0,0,1,1,0,0,0,40.56,47.27,54.79,55.86,8.333333333333334,1,1,0,0,5,13,3,1,1051.5,653998.0341945896,149615.0752312302,422148.8869805394,0,1369.126495829492 -9216,11358,20599,-9,20596,20598,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.595221017102,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1051.5,653998.0341945896,149615.0752312302,422148.8869805394,0,1369.126495829492 -9217,11359,20600,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.596055682246318,6.127326872917303,0,0,-991.7564758673509,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.313268521504894,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1551,161691.542831208,75069.6118183263,149432.3334927465,0,638.709598750751 -9218,11360,20601,20602,20603,-9,1,1,31,0,0,0,1,1,-9,0,1,8.752586373747031,9.188727015496113,0,4,-1,-93.25921280206542,0,3,2,2019,3,0,50,37,1,0,0,15.29398889841711,15.29398889841711,0,0,0,0,0,0,0,0,0,0,58.55,19.83,35.92,56.78,6.666666666666667,2,3,0,0,6,7,5,1,679.5,378595.4846654274,73459.22561612559,237206.6867180568,0,4469.995261937083 -9218,11360,20602,20601,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.267590481356088,8.602692701633403,0,4,1,21.90443978861358,0,-9,-9,2019,10,0,38,39,1,0,0,14.16971627316808,14.16971627316808,0,0,0,0,0,0,0,0,0,0,35.92,56.78,58.55,19.83,6.666666666666667,2,3,0,0,2,7,5,1,679.5,378595.4846654274,73459.22561612559,237206.6867180568,0,4469.995261937083 -9218,11361,20603,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,7.080990691367708,7.576839838377309,6.579998308518934,0,0,-859.598445531321,0,-9,-9,2019,20,7,20,20,1,7,0,6.515821466830578,6.515821466830578,0,0,0,0,0,0,0,0,0,6.483324279054849,47.55,28.27,-9,-9,8.333333333333334,2,3,0,0,12,7,3,1,773,455010.4392021275,-32772.03137780039,447644.2525965382,38525.41087381628,600.0673658866801 -9219,11362,20604,20605,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.363211913380616,6.976633567728582,6.564405539676297,1,5,-7.26090853772292,-9,-9,-9,2019,10,0,40,0,1,1,0,2.441509986105302,2.441509986105302,0,0,0,0,0,0,0,0,2.824485475860986,6.600703976780226,50,49,21.04,62.24,7,4,1,0,0,1,6,2,1,700,2674.085414753099,63799.67876486953,29424.92156052672,0,1023.116938238177 -9219,11362,20605,20604,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,1,-5,-21.93212102094237,-9,3,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,5.48,0,0,0,0,0,21.04,62.24,50,49,8.333333333333334,1,1,0,0,6,6,2,1,700,2674.085414753099,63799.67876486953,29424.92156052672,0,1023.116938238177 -9220,11363,20606,20607,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.413049526549017,8.827492267682889,0,6,-1,17.47114402795938,0,2,2,2019,6,0,48,54,1,0,0,12.25295385917637,12.25295385917637,0,0,0,0,0,0,0,0,1.917847746558972,0,54.2,57.49,37.61,56.99,8.333333333333334,1,1,0,0,8,11,5,1,856,154077.7845917328,102309.2679005831,297683.9524250778,185669.4886297548,3506.388946944976 -9220,11363,20607,20606,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.620717399033191,8.673069499695133,0,6,1,-84.80842500919134,0,2,2,2019,9,1,37,37,1,1,0,15.90765502509428,15.90765502509428,0,0,0,0,0,0,0,0,0,0,37.61,56.99,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,856,154077.7845917328,102309.2679005831,297683.9524250778,185669.4886297548,3506.388946944976 -9221,11364,20608,20609,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.735004393365249,7.733167373101958,49,1,-15.16388318054814,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.118099533729661,7.908873905615287,51.22,37.13,63.41,29.17,10,1,1,0,0,0,6,4,1,182,1588046.364886219,1073921.299917576,435364.9174251754,0,3579.656165535381 -9221,11364,20609,20608,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.168231173316395,7.592098149135506,49,-1,-39.78261843201658,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.169813822186651,7.759193881169375,63.41,29.17,51.22,37.13,8.333333333333334,1,1,0,0,0,6,4,1,182,1588046.364886219,1073921.299917576,435364.9174251754,0,3579.656165535381 -9222,11365,20610,20611,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.387657383904352,7.498545008197513,43,-4,-125.2847120401059,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.349181030801792,7.437441467358276,57.16,56.15,60.43,46.44,8.333333333333334,1,1,0,0,4,5,4,1,568.5,2011180.367992722,1299005.595213212,327743.7279656009,0,3518.053512715695 -9222,11365,20611,20610,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.091277546134441,7.997223530828562,43,4,44.34554056069143,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.162729838192277,8.061157526265193,60.43,46.44,57.16,56.15,10,1,1,0,0,2,5,4,1,568.5,2011180.367992722,1299005.595213212,327743.7279656009,0,3518.053512715695 -9223,11366,20612,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.075135041819007,6.102549335986398,0,0,-970.4992042527786,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,23.5274127527307,0,2,1,1,0,0,6.37045973428846,55,45,-9,-9,7,3,4,0,0,0,6,2,1,1083,371420.9347941932,62421.69820696383,226403.8528108539,0,892.3501849607229 -9224,11367,20613,20614,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.707002806212838,7.259012242156874,54,1,-66.20082210745258,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.577580661239652,7.186504327173966,48.86,40.74,49.4,35.27,5,1,1,0,0,10,1,2,1,674.5,846696.9119747755,418325.2194657122,232050.9662159139,0,1934.939513148898 -9224,11367,20614,20613,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.780621024474489,5.830615483697669,54,-1,-29.35244838344909,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.136396803647356,5.572178286686647,49.4,35.27,48.86,40.74,6.666666666666667,1,1,0,0,0,1,2,1,674.5,846696.9119747755,418325.2194657122,232050.9662159139,0,1934.939513148898 -9225,11368,20615,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.203419341582608,8.740932669868602,8.7598064929809,0,0,-932.7608659330713,0,3,2,2019,5,0,24,32,1,0,0,15.53303795980932,15.53303795980932,0,0,0,0,0,1,1,0,.8784542324852191,8.553253730577252,62.03,41.71,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,808,1843377.469105151,1021196.026837074,251101.0603968239,0,5224.619014261705 -9226,11369,20616,20617,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.210172082164782,8.235773212908494,19,-4,-17.18699688639078,0,3,3,2019,8,0,0,22,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9819808629854,8.184531720726566,57.06,57.76,55.18,49.42,8.333333333333334,1,1,0,0,8,5,4,1,429,1774716.995007724,1160089.675956995,287244.9017556972,0,3016.531683386839 -9226,11369,20617,20616,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.506697183625268,7.797821667642803,15,4,158.9105213809107,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.569582451884198,7.683692188657282,55.18,49.42,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,429,1774716.995007724,1160089.675956995,287244.9017556972,0,3016.531683386839 -9227,11370,20618,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.646533595540673,7.212878621025166,0,0,-1187.769234326427,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.115196863413242,49.75,32.52,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,190,391821.1850242721,152058.0536307365,120658.3920103896,0,2161.217417942092 -9228,11371,20619,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.103507575180014,7.08250585011632,0,0,-1073.938476956705,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.682937693733319,55,45,-9,-9,8,1,1,0,0,0,7,2,1,2092,763721.4120746942,160561.9299170333,599360.2676016847,0,1437.69933361533 -9229,11372,20620,20622,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.260827703237789,8.222298095026705,0,8,-4,88.83367824449739,0,2,1,2019,1,0,5,8,1,0,0,80.41663037393405,80.41663037393405,0,0,0,0,0,1,1,0,4.218391795984623,0,45.01,57.46,64.48,48.62,10,1,1,0,0,3,9,4,1,1172.333333333333,302657.524689272,118148.554859895,349108.624560191,147415.443397269,2982.251265443771 -9229,11372,20621,-9,20620,20622,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.5951138337673,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1172.333333333333,302657.524689272,118148.554859895,349108.624560191,147415.443397269,2982.251265443771 -9229,11372,20622,20620,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.040309149403551,8.27277482708679,0,8,4,-44.73922010984845,0,-9,-9,2019,6,0,30,25,1,0,0,17.45663056686828,17.45663056686828,0,0,0,0,0,1,1,0,0,0,64.48,48.62,45.01,57.46,5,1,1,0,0,9,9,4,1,1172.333333333333,302657.524689272,118148.554859895,349108.624560191,147415.443397269,2982.251265443771 -9229,11373,20623,-9,20620,20622,1,0,19,0,1,0,2,2,-9,0,4,7.396823994326962,7.308005178318346,0,0,0,-1088.296270798282,0,2,2,2019,15,3,10,10,1,3,1,16.02230425307485,16.02230425307485,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,10,1,1,0,0,3,9,3,1,551,78174.02880614638,12239.36385907653,0,0,881.7427029043241 -9230,11374,20624,20625,-9,-9,1,0,46,0,0,0,1,1,-9,1,3,6.783979129904552,6.86028075005962,0,10,4,16.77284936597822,0,3,2,2019,12,0,16,16,1,2,0,6.955440206804401,6.955440206804401,0,0,0,0,0,1,1,0,0,0,60.29,52.11,45.49,58.84,5,2,3,0,0,9,5,4,0,366.5,-19204.69253523419,49615.79625225824,100364.795349559,40571.73469307197,1776.011590310251 -9230,11374,20625,20624,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.427615786427159,8.160096586481931,0,6,-4,157.6172803838429,0,3,2,2019,10,1,50,50,1,1,0,11.89204632315366,11.89204632315366,0,0,0,0,0,1,1,0,3.328680977813125,0,45.49,58.84,60.29,52.11,6.666666666666667,2,3,0,0,7,5,4,0,366.5,-19204.69253523419,49615.79625225824,100364.795349559,40571.73469307197,1776.011590310251 -9231,11375,20626,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-979.8233741507851,1,1,2,2019,16,4,0,48,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,34.82,52.79,-9,-9,6.666666666666667,1,1,0,0,8,10,1,1,1485,59044.6468980178,0,0,0,0 -9232,11376,20627,20629,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.427554893312774,8.251598271411991,0,7,2,-65.68028041314113,0,2,2,2019,8,0,40,50,1,0,0,10.6176054282867,10.6176054282867,0,0,0,0,0,1,1,0,1.766060222956191,0,52.97,53.97,57.16,56.15,5,1,1,0,0,10,9,5,1,949.6666666666666,155724.9012921687,41284.34075850789,425918.7440989653,238144.4042642554,3884.557433770394 -9232,11376,20628,-9,20629,20627,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.743536355433,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,949.6666666666666,155724.9012921687,41284.34075850789,425918.7440989653,238144.4042642554,3884.557433770394 -9232,11376,20629,20627,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.911599633359845,9.152275860536392,0,9,-2,-117.1261880394888,0,2,2,2019,4,0,41,38,1,0,0,17.30360110612184,17.30360110612184,0,0,0,0,0,1,1,0,2.020168750522775,0,57.16,56.15,52.97,53.97,10,1,1,0,0,10,9,5,1,949.6666666666666,155724.9012921687,41284.34075850789,425918.7440989653,238144.4042642554,3884.557433770394 -9233,11377,20630,20631,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.407993640000578,7.509573064431526,5.393685282860471,10,-3,12.80258993982949,0,3,3,2019,11,0,16,20,1,0,0,14.84232049292435,14.84232049292435,0,0,0,0,0,1,1,0,5.740011203307444,0,50.83,39.02,53.78,56.44,1.666666666666667,1,1,0,0,10,2,5,1,988,1584485.275899908,1028266.986296114,267724.0885976973,0,3849.921519297108 -9233,11377,20631,20630,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.848976438445259,9.145576529141488,0,8,3,-6.755129246987009,0,-9,-9,2019,9,0,78,78,1,0,0,12.23487048724576,12.23487048724576,0,0,0,0,0,1,1,0,0,0,53.78,56.44,50.83,39.02,6.666666666666667,1,1,0,0,10,2,5,1,988,1584485.275899908,1028266.986296114,267724.0885976973,0,3849.921519297108 -9233,11377,20632,-9,20630,20631,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-942.4750542327306,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,988,1584485.275899908,1028266.986296114,267724.0885976973,0,3849.921519297108 -9233,11378,20633,-9,20630,20631,1,1,22,0,1,0,2,2,-9,0,4,7.547865777870598,7.584883667291911,0,0,0,-1048.025587435959,0,2,2,2019,10,0,36,31,1,0,1,5.223283426615874,5.223283426615874,0,0,0,0,0,1,1,0,0,0,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,511,107624.3648966259,-16435.84248393484,0,0,504.7863857468002 -9234,11379,20634,-9,20636,20635,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.200011588975,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1509,2119696.118582942,1985098.435496844,296191.3123059819,111619.4914462777,4297.589203575983 -9234,11379,20635,20636,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.810051957404939,8.693458984118232,0,14,4,-49.93384632459286,0,2,2,2019,9,0,40,38,1,1,0,20.68563707325011,20.68563707325011,0,0,0,0,0,1,1,0,0,0,52,55,35.84,61.77,7,1,1,0,0,1,9,5,1,1509,2119696.118582942,1985098.435496844,296191.3123059819,111619.4914462777,4297.589203575983 -9234,11379,20636,20635,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.258307707720338,8.058401644573591,0,14,-4,-15.6586243303444,0,2,2,2019,16,5,38,38,1,5,0,8.252777770774687,8.252777770774687,0,0,0,0,0,1,1,0,.3023044849002865,0,35.84,61.77,52,55,3.333333333333333,1,1,0,0,8,9,5,1,1509,2119696.118582942,1985098.435496844,296191.3123059819,111619.4914462777,4297.589203575983 -9235,11380,20637,20638,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.191922141954755,8.516532173185684,6.29280286949388,38,1,115.9362832369098,0,3,2,2019,9,1,30,30,1,1,0,14.45333473101409,14.45333473101409,0,0,0,0,0,1,1,0,7.816134171295108,6.190878925507278,51.84,47.71,57.16,56.15,8.333333333333334,1,1,0,0,10,8,4,1,567,1600161.49350846,913112.9566501742,600193.934803478,0,4223.363298241035 -9235,11380,20638,20637,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,4.690653739980158,4.66113802109933,38,-1,68.02613276780333,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.560762523919435,57.16,56.15,51.84,47.71,8.333333333333334,1,1,0,0,0,8,4,1,567,1600161.49350846,913112.9566501742,600193.934803478,0,4223.363298241035 -9236,11381,20639,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.869986083651145,8.517873642107888,0,0,-940.7490543529534,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.087125295213239,7.877932368700919,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,389,722722.9113947391,287594.6000621674,400819.6190229788,0,2279.727634740334 -9237,11382,20640,20641,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.320586145061023,6.37530066148211,7,-3,-15.20558241118315,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,6.55567606645308,60.13,49.27,54.2,57.49,10,1,1,0,0,7,7,3,1,734.5,989346.8433296202,478777.5352669198,407543.8447853815,0,1413.402624164115 -9237,11382,20641,20640,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.49356832508941,7.351267879737828,7,3,120.0678319843782,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.87928548180252,7.295399338462464,54.2,57.49,60.13,49.27,8.333333333333334,1,1,0,0,7,7,3,1,734.5,989346.8433296202,478777.5352669198,407543.8447853815,0,1413.402624164115 -9238,11383,20642,-9,-9,-9,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1012.731656966192,-9,3,3,2019,20,7,0,0,2,7,0,0,0,0,0,0,.2310856443209879,0,1,1,0,0,0,28.67,54.68,-9,-9,8.333333333333334,1,1,0,0,9,12,1,0,1350,-68902.10066298205,0,0,0,11.5300884163467 -9239,11384,20643,20644,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,49,2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,47,7,1,1,0,0,0,6,1,0,1409,150262.0061158548,-33419.48417532442,0,0,962.5994211823258 -9239,11384,20644,20643,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,51,48,7,1,1,0,0,0,6,1,0,1409,150262.0061158548,-33419.48417532442,0,0,962.5994211823258 -9240,11385,20645,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.287797794285403,5.924892210327863,0,0,-956.8791939979392,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.915226040359722,5.780197094523393,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1331,320534.6814725875,102047.5805275906,97779.49085870017,0,805.6204318984902 -9241,11386,20646,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.7728973864632,7.791882364049311,0,0,0,-1065.693185354799,0,-9,-9,2019,3,0,16,16,1,0,0,12.80022065684194,12.80022065684194,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,8,8,3,0,814,-2430.265773056417,25363.24152162833,0,0,989.3855771099298 -9241,11386,20647,-9,20646,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.476548958557,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,3,0,814,-2430.265773056417,25363.24152162833,0,0,989.3855771099298 -9242,11387,20648,20649,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.49525501080006,8.220376733954208,41,2,16.38655170997613,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.750545605983175,8.480493816108844,54.53,41.24,61.01,53.18,6.666666666666667,1,1,0,0,9,9,5,1,273.5,2920426.299726699,1440211.665992166,368497.7245195031,0,4270.747211432461 -9242,11387,20649,20648,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.14359603515263,8.335650739947233,6.890197405436196,41,-2,-54.54298951704861,0,2,2,2019,7,0,18,30,1,0,0,18.68414827050113,18.68414827050113,0,0,0,0,0,0,0,0,5.490810519707268,7.285682608345121,61.01,53.18,54.53,41.24,8.333333333333334,1,1,0,0,12,9,5,1,273.5,2920426.299726699,1440211.665992166,368497.7245195031,0,4270.747211432461 -9243,11388,20650,20651,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-2,-34.78625604814842,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.499824596513446,0,50,47,53,47,7,1,1,0,0,0,4,3,1,522.5,637035.7802566455,351791.1855907262,215451.4519187495,0,2286.4962898063 -9243,11388,20651,20650,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.748456052261828,7.75219531917646,51,2,-184.2948392963333,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.602062477489886,7.983819132006794,53,47,50,47,7,1,1,0,0,0,4,3,1,522.5,637035.7802566455,351791.1855907262,215451.4519187495,0,2286.4962898063 -9244,11389,20652,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.688973465077856,8.824996761758729,0,0,0,-1131.752238754892,0,1,2,2019,10,1,43,43,1,1,0,15.63301782490002,15.63301782490002,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,1754,102611.759791241,40184.09469018773,0,0,2613.609422156059 -9245,11390,20653,-9,20654,20655,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.6351075137093,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,782.25,117847.8431285603,86367.35574455799,287317.1511732496,268606.1228491766,2961.07342737502 -9245,11390,20654,20655,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.284727245898085,7.174932345371372,0,9,-5,48.24357976365133,0,2,-9,2019,7,0,25,25,1,0,0,8.156771397347589,8.156771397347589,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.55,60.42,10,1,1,0,0,8,2,4,1,782.25,117847.8431285603,86367.35574455799,287317.1511732496,268606.1228491766,2961.07342737502 -9245,11390,20655,20654,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.945446383964406,8.71657801033054,0,9,5,20.74673729034848,0,3,-9,2019,13,1,40,37,1,1,0,22.29839912595614,22.29839912595614,0,0,0,0,0,1,1,0,0,0,44.55,60.42,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,1,782.25,117847.8431285603,86367.35574455799,287317.1511732496,268606.1228491766,2961.07342737502 -9245,11390,20656,-9,20654,20655,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.656458938653,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,782.25,117847.8431285603,86367.35574455799,287317.1511732496,268606.1228491766,2961.07342737502 -9246,11391,20657,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.663068575984701,6.580332968992712,0,0,-949.3729454656212,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.140052666092116,5.936475483314013,52,45,-9,-9,8,1,1,0,0,0,11,2,1,1078,372245.9152406654,51365.14750508757,152430.3436376328,0,361.3702251120575 -9247,11392,20658,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-978.0592219668013,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,32.33,27.68,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,1989,-43874.17173898705,98369.68456488012,0,0,625.0093810029493 -9248,11393,20659,20660,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.241401066965778,9.179101336631325,0,7,7,-73.24801492874994,0,2,2,2019,6,0,50,48,1,0,0,23.67822431599403,23.67822431599403,0,0,0,0,0,0,0,0,.648759439819055,0,62.49,55.09,37.42,35.77,8.333333333333334,1,1,0,0,8,11,5,1,1131.5,109205.9178676502,-4600.032684396108,345225.4933216943,198882.3089545257,3782.707948750858 -9248,11393,20660,20659,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,7,-7,-25.00533741819579,0,3,3,2019,18,7,0,37,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,35.77,62.49,55.09,8.333333333333334,1,1,1,0,7,11,5,1,1131.5,109205.9178676502,-4600.032684396108,345225.4933216943,198882.3089545257,3782.707948750858 -9248,11394,20661,-9,20660,20659,1,1,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-1123.329996849459,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,1,1,239,-82112.85744976597,0,0,0,-389.4996741076106 -9249,11395,20662,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.717532417537493,7.847758272081874,0,0,0,-1008.118692387946,0,2,2,2019,9,0,40,45,1,0,0,7.192454225441122,7.192454225441122,0,0,0,0,0,1,1,0,0,0,41.58,52.86,-9,-9,8.333333333333334,3,4,0,0,4,4,3,1,112,485275.7346097017,396865.6517782743,45375.14310247004,0,1004.469003771565 -9250,11396,20663,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.261178251033489,7.280885684893222,0,0,0,-1054.651527270776,0,2,2,2019,10,0,15,12,1,0,0,8.097210774612934,8.097210774612934,0,0,0,0,0,1,1,0,0,0,57.7,26.41,-9,-9,6.666666666666667,1,1,0,1,1,7,3,1,234,-227271.7050163955,160516.6187606552,0,0,1637.653934537054 -9251,11397,20664,-9,20665,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1023.983079732637,-9,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.51,35.73,-9,-9,10,1,1,1,0,0,13,1,1,358,-25258.29038907861,0,0,0,1202.471769196054 -9251,11398,20665,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1095.179852964307,0,3,3,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.7,35.28,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,510,95970.61676184894,0,0,0,1409.64887753921 -9252,11399,20666,20667,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.256199981481831,7.289080838698516,0,8,0,62.71779196459354,0,-9,2,2019,14,3,15,15,1,3,0,11.76232404701423,11.76232404701423,0,0,0,0,5.48,0,0,0,.5724680509267916,0,32.92,58.01,54.1,59.11,8.333333333333334,1,1,0,0,8,12,4,1,944,1421357.207572685,1205390.223778945,83165.28074805431,36824.70275153254,2012.253987528637 -9252,11399,20667,20666,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.372277406232051,8.307894515214977,0,8,0,-83.06265891208085,0,2,2,2019,11,0,37,37,1,0,0,14.65676140223946,14.65676140223946,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.92,58.01,5,1,1,0,0,8,12,4,1,944,1421357.207572685,1205390.223778945,83165.28074805431,36824.70275153254,2012.253987528637 -9253,11400,20668,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,7.831380839802228,7.834246972229613,0,0,-908.4447624875269,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.783116463354765,7.847677527654449,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,2149,804373.0854688376,454052.1622488149,153279.8748973281,22410.60198098444,781.8917091274783 -9254,11401,20669,20670,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.892438917125244,5.899144215970313,52,0,-28.72337517090766,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.806070603528942,5.412428922877018,39.88,58.55,57.03,48.06,8.333333333333334,1,1,0,0,11,7,2,0,429,648939.8381307726,280423.3127186169,196949.2693799904,0,1265.561343009966 -9254,11401,20670,20669,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,3.236311577972771,3.073466166026764,52,0,-24.27720505333059,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.984022184511946,3.550035607927406,57.03,48.06,39.88,58.55,8.333333333333334,1,1,0,0,2,7,2,0,429,648939.8381307726,280423.3127186169,196949.2693799904,0,1265.561343009966 -9255,11402,20671,20672,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,7.856955446217246,8.247917608739787,0,6,-3,37.79248084669649,0,2,2,2019,11,0,46,45,1,0,0,8.053365247877704,8.053365247877704,0,0,0,0,0,0,0,0,.6871610967006706,0,45.81,61.51,54.63,58.83,8.333333333333334,1,1,0,0,9,5,5,1,402,43694.29909783887,89590.13722646635,0,0,3805.034216852207 -9255,11402,20672,20671,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.622054654777473,8.759379048682421,0,6,3,-111.7189246318727,0,2,2,2019,9,1,55,88,1,1,0,14.06087954532354,14.06087954532354,0,0,0,0,0,0,0,0,2.597180312805119,0,54.63,58.83,45.81,61.51,8.333333333333334,1,1,0,0,6,5,5,1,402,43694.29909783887,89590.13722646635,0,0,3805.034216852207 -9256,11403,20673,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.361659375387361,7.171188730840863,6.321279884381579,0,0,-990.4139637965782,0,2,2,2019,8,0,16,0,1,0,0,4.476871174793737,4.476871174793737,0,0,0,0,14.5,1,1,0,6.191669021190595,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,424.5,68302.58876911188,0,0,0,1922.408840052069 -9256,11403,20674,-9,20673,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.461120032394,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,2,0,424.5,68302.58876911188,0,0,0,1922.408840052069 -9257,11404,20675,20676,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.223311718273569,8.459287596086046,7.131346186446541,7,2,11.51900154102437,-9,-9,-9,2019,10,0,42,0,1,1,0,9.921155104867617,9.921155104867617,0,0,0,0,0,0,0,0,1.83934454479471,7.419394188589186,52,48,42.36,46.68,7,1,1,0,0,1,13,4,1,956.5,1130735.255772241,520836.3133090788,101187.9433691571,0,2680.530121602716 -9257,11404,20676,20675,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.374128668310244,7.566534128707652,39,-2,-49.33659701509727,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.793688214581351,42.36,46.68,52,48,6.666666666666667,1,1,0,0,8,13,4,1,956.5,1130735.255772241,520836.3133090788,101187.9433691571,0,2680.530121602716 -9258,11405,20677,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.64758186412804,5.766473586794999,0,0,-1163.908434695395,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,3.560144033233905,0,19.44176015525423,0,1,1,0,7.167541181330481,5.974123880326308,43.61,42.78,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,863,251209.4810969557,103387.8998161451,307026.7920529805,0,1605.01132972017 -9259,11406,20678,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,0,0,0,0,-875.437687846838,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.454810456897397,0,46.47,45.07,-9,-9,3.333333333333333,1,1,0,0,4,12,2,1,247,378070.4491557091,43740.11641021052,233311.0082669397,0,1616.077359988526 -9260,11407,20679,20680,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.288623500640705,8.500864623225585,6,2,50.83978594367474,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.737357384802547,8.205044069110315,60.12,54.8,54.74,57.22,10,1,1,0,0,3,7,4,1,245.5,2010592.540760027,1356640.776182414,373779.6610481676,0,3585.284949700533 -9260,11407,20680,20679,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.296293028113359,7.364321261853383,6,-2,-107.7353848533185,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.614367667207081,7.158157589926205,54.74,57.22,60.12,54.8,8.333333333333334,1,1,0,0,0,7,4,1,245.5,2010592.540760027,1356640.776182414,373779.6610481676,0,3585.284949700533 -9261,11408,20681,-9,20683,20682,1,1,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-1062.410262745892,-9,2,2,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,5,6,2,0,594,-37884.54331294345,0,0,0,-252.9011521095319 -9261,11409,20682,20683,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,7,3,45.98253073914763,0,-9,-9,2019,12,2,0,46,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.2,52.08,57.16,56.15,10,1,1,0,0,7,6,4,0,450.5,68743.48163389618,24755.67432611543,0,0,1956.768177723726 -9261,11409,20683,20682,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.419817578109159,8.270324679558657,0,7,-3,56.88562241785883,0,3,3,2019,6,0,36,34,1,0,0,15.52702710172641,15.52702710172641,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.2,52.08,1.666666666666667,1,1,0,0,8,6,4,0,450.5,68743.48163389618,24755.67432611543,0,0,1956.768177723726 -9262,11410,20684,20685,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,0,0,24,-6,-107.4324175311159,0,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,2,0,0,0,0,0,39.48,58.88,54,53,6.666666666666667,4,5,0,0,0,7,5,1,727.3333333333334,2573538.813289037,2069987.580387716,349547.0487165673,0,4473.742247076111 -9262,11410,20685,20684,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.334715753559214,9.410181535240811,0,24,6,4.270400691478708,0,1,1,2019,9,0,48,46,1,1,0,30.59079351459532,30.59079351459532,0,0,0,0,0,0,0,0,2.9880242235447,0,54,53,39.48,58.88,8,4,5,0,0,1,7,5,1,727.3333333333334,2573538.813289037,2069987.580387716,349547.0487165673,0,4473.742247076111 -9262,11410,20686,-9,20684,20685,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.0614004953175,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,4,5,-9,0,0,7,5,1,727.3333333333334,2573538.813289037,2069987.580387716,349547.0487165673,0,4473.742247076111 -9262,11411,20687,-9,20684,20685,1,1,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1051.727252342849,-9,1,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,5,1,0,0,7,1,1,564,0,0,0,0,0 -9263,11412,20688,20689,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.309610304220737,8.440665862384606,0,5,-2,-5.465875734720482,0,2,2,2019,14,2,37,37,1,2,0,16.13414794806075,16.13414794806075,0,0,0,0,0,0,0,0,3.667263122208084,0,38.51,59.43,39.9,57.26,6.666666666666667,1,1,0,0,8,4,5,1,119.5,51250.91170927145,104800.3543950244,0,0,3086.244610739403 -9263,11412,20689,20688,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.169789281656659,8.108665807352985,0,5,2,69.33363982215911,0,-9,-9,2019,11,0,37,38,1,0,0,8.330864871803088,8.330864871803088,0,0,0,0,0,0,0,0,0,0,39.9,57.26,38.51,59.43,8.333333333333334,1,1,0,0,9,4,5,1,119.5,51250.91170927145,104800.3543950244,0,0,3086.244610739403 -9264,11413,20690,-9,20692,20691,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.6876633348512,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,3,1,856.25,356193.6210207499,79897.14125792925,228573.0369480897,0,1759.570851520196 -9264,11413,20691,20692,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.244453262567925,8.045306567770634,0,10,2,-29.96679938739481,0,3,3,2019,11,0,38,37,1,0,0,12.06995756354921,12.06995756354921,0,0,0,0,0,1,1,0,0,0,48.28,53.42,50.08,55.33,6.666666666666667,2,3,0,0,12,4,3,1,856.25,356193.6210207499,79897.14125792925,228573.0369480897,0,1759.570851520196 -9264,11413,20692,20691,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,25,-2,-97.73678412489389,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.08,55.33,48.28,53.42,6.666666666666667,2,3,0,0,0,4,3,1,856.25,356193.6210207499,79897.14125792925,228573.0369480897,0,1759.570851520196 -9264,11413,20693,-9,20692,20691,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.8171028359884,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,856.25,356193.6210207499,79897.14125792925,228573.0369480897,0,1759.570851520196 -9265,11414,20694,20695,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.749762759879779,8.367050492701644,0,5,2,-69.78361838352808,0,2,2,2019,8,0,8,38,1,0,0,72.25739698199524,72.25739698199524,0,0,0,0,0,0,0,0,0,0,44.49,61.79,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,603.5,1137450.136353364,447913.511869689,336689.2841240934,0,3260.151110689552 -9265,11414,20695,20694,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.015889547487717,8.142343936509029,0,5,-2,45.69580745152951,0,3,3,2019,6,0,30,30,1,0,0,10.67088330256115,10.67088330256115,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.49,61.79,10,1,1,0,0,9,12,5,1,603.5,1137450.136353364,447913.511869689,336689.2841240934,0,3260.151110689552 -9265,11415,20696,-9,20695,20694,1,0,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1062.04555081243,0,3,1,2019,9,1,0,22,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,12,1,1,577,52737.98264031492,0,0,0,0 -9266,11416,20697,20699,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.084149585381502,8.207570862557459,0,26,-6,32.72727329341696,0,2,2,2019,5,0,35,47,1,0,0,12.1588044318868,12.1588044318868,0,0,0,0,0,1,1,0,0,0,60.12,54.8,58.57,35.72,8.333333333333334,2,3,0,0,11,8,3,1,749.3333333333334,-1611.318275551957,0,0,0,1801.458315506914 -9266,11416,20698,-9,20697,20699,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1029.833717657091,-9,1,1,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,749.3333333333334,-1611.318275551957,0,0,0,1801.458315506914 -9266,11416,20699,20697,-9,-9,1,1,54,0,1,0,1,1,-9,0,2,6.51508077505646,6.51767248766475,0,26,6,-122.6167111360487,0,3,2,2019,6,1,30,24,1,1,0,2.627318722521269,2.627318722521269,0,0,0,0,0,1,1,0,0,0,58.57,35.72,60.12,54.8,8.333333333333334,2,3,0,0,2,8,3,1,749.3333333333334,-1611.318275551957,0,0,0,1801.458315506914 -9266,11417,20700,-9,20697,20699,1,0,22,0,1,0,2,2,0,0,3,0,0,0,0,0,-910.8337119357313,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,8.333333333333334,2,3,0,0,5,8,1,1,865,-179647.6982683645,0,0,0,599.5792972147324 -9267,11418,20701,20702,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.576876024318759,8.010079997371767,52,6,121.9100811462425,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,129.4531648984662,0,120,1,1,0,5.5154967751347,7.444405405243533,60.45,11.88,42.86,16.85,8.333333333333334,1,1,0,0,1,5,3,1,455,709078.4131795723,89884.24596237694,292816.5664825504,0,2691.967301185075 -9267,11418,20702,20701,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,52,-6,-100.2925081062377,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,165.7143622794393,0,0,1,1,0,0,0,42.86,16.85,60.45,11.88,6.666666666666667,1,1,0,0,0,5,3,1,455,709078.4131795723,89884.24596237694,292816.5664825504,0,2691.967301185075 -9268,11419,20703,20705,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.598996343225362,8.251802146363014,0,22,1,98.50128349329594,0,-9,-9,2019,5,0,48,48,1,0,0,11.64729820143216,11.64729820143216,0,0,0,0,0,1,1,0,0,0,54.08,46.54,54.61,51.81,8.333333333333334,3,4,0,0,11,8,4,0,1323,29771.04550413539,-55041.23829622199,418464.4941432453,259005.0625495821,2908.617962909215 -9268,11419,20704,-9,20705,20703,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-950.5175571778457,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,1,0,8,4,0,1323,29771.04550413539,-55041.23829622199,418464.4941432453,259005.0625495821,2908.617962909215 -9268,11419,20705,20703,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.643902651055015,7.291738722542846,0,22,-1,70.94390537812605,0,3,-9,2019,9,0,30,30,1,0,0,6.376634627906521,6.376634627906521,0,0,0,0,0,1,1,0,0,0,54.61,51.81,54.08,46.54,8.333333333333334,3,4,0,0,10,8,4,0,1323,29771.04550413539,-55041.23829622199,418464.4941432453,259005.0625495821,2908.617962909215 -9268,11420,20706,-9,20705,20703,1,1,19,0,2,0,2,2,1,0,3,7.454047361081568,7.532031424629142,0,0,0,-1082.178207310267,-9,2,2,2019,12,0,24,0,1,0,1,9.406588336826548,9.406588336826548,0,0,0,0,0,1,1,0,0,0,56.01,52.64,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,176,-118284.0432375586,0,0,0,752.6565520930465 -9269,11421,20707,20709,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,7.943431658443563,8.064620287109443,0,9,5,-9.777456202385348,0,2,2,2019,10,0,45,40,1,0,0,8.436267692498056,8.436267692498056,0,0,0,0,2,1,1,0,0,0,48.52,42.22,57.33,53.46,3.333333333333333,1,1,0,0,8,4,4,1,785.6666666666666,85607.11144048155,34410.79534205236,68335.00170331345,66890.84401366171,2691.334235910155 -9269,11421,20708,-9,20709,20707,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.381531412635,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,785.6666666666666,85607.11144048155,34410.79534205236,68335.00170331345,66890.84401366171,2691.334235910155 -9269,11421,20709,20707,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.807660923061878,7.505096955096118,0,9,-5,-2.455883106300508,0,-9,-9,2019,6,0,32,32,1,0,0,6.893619318502424,6.893619318502424,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.52,42.22,6.666666666666667,1,1,0,0,11,4,4,1,785.6666666666666,85607.11144048155,34410.79534205236,68335.00170331345,66890.84401366171,2691.334235910155 -9270,11422,20710,20711,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.297923292732218,9.258359203471356,0,34,-1,48.14061032263304,0,2,2,2019,6,0,35,30,1,0,0,33.7915751961415,33.7915751961415,0,0,0,0,0,0,0,0,3.230133650565716,0,59.43,58.05,57.33,53.46,10,1,1,0,0,13,9,5,1,483,3849656.766933874,2752518.062869266,989106.1722829161,87066.62278726963,6904.121775922893 -9270,11422,20711,20710,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.22842848343412,9.175665800370473,0,35,1,-29.59704446965149,0,2,2,2019,6,0,50,50,1,0,0,18.88562457323117,18.88562457323117,0,0,0,0,0,0,0,0,3.218472630554978,0,57.33,53.46,59.43,58.05,10,1,1,0,0,13,9,5,1,483,3849656.766933874,2752518.062869266,989106.1722829161,87066.62278726963,6904.121775922893 -9271,11423,20712,20714,-9,-9,1,1,29,1,4,0,3,3,-9,0,4,5.921858730238787,5.967717274364495,0,7,-3,91.2664172668309,0,-9,-9,2019,10,0,10,30,1,1,0,4.995255108384177,4.995255108384177,0,0,0,0,0,1,1,0,0,0,49,58,48,57,7,2,3,0,1,2,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9271,11423,20713,-9,20714,20712,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.3727665400356,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9271,11423,20714,20712,-9,-9,1,0,32,1,4,0,2,2,-9,0,4,7.813544173524138,7.731833033389695,0,7,3,30.41853004738092,0,3,3,2019,11,0,35,50,1,2,0,5.461785764151014,5.461785764151014,0,0,0,0,0,1,1,0,0,0,48,57,49,58,7,2,3,0,0,5,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9271,11423,20715,-9,20714,20712,1,1,13,1,4,1,3,0,-9,0,2,0,0,0,0,0,-945.996089786839,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9271,11423,20716,-9,20714,20712,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-967.9744618057424,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9271,11423,20717,-9,20714,20712,1,0,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-891.4281360964899,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,9,2,0,506.8333333333333,8864.320051474051,-19759.3920636022,0,0,3062.433262025564 -9272,11424,20718,20719,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.16654095863989,7.381440772634602,0,23,-15,-37.64850281146967,0,3,3,2019,7,0,20,24,1,0,0,7.707994133879829,7.707994133879829,0,0,0,0,0,1,1,0,4.100332761064743,0,50.65,60.47,59.78,40.38,8.333333333333334,1,1,0,0,11,7,3,1,617.5,417000.9774115673,271786.1537510804,167550.2245309317,0,2346.633904647213 -9272,11424,20719,20718,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.655986841476278,7.370165153459196,23,15,-46.65063458058951,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.996398444657957,7.436133523110811,59.78,40.38,50.65,60.47,8.333333333333334,1,1,0,0,10,7,3,1,617.5,417000.9774115673,271786.1537510804,167550.2245309317,0,2346.633904647213 -9273,11425,20720,20721,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.154344301102392,5.414344903841938,5,2,138.849860768541,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.689801620596798,0,1,1,0,0,5.077174379681932,57.16,56.15,53.24,36.78,10,1,1,0,0,0,1,2,1,888,1737054.664685236,212032.3133645884,1026277.650608764,0,1359.2804634026 -9273,11425,20721,20720,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,4.955532345023762,5.07745292709034,5,-2,-53.18386098135748,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.140172913432234,4.926585571533389,53.24,36.78,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,1,888,1737054.664685236,212032.3133645884,1026277.650608764,0,1359.2804634026 -9274,11426,20722,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.443238496828543,6.777399601574915,0,0,-970.8046174291729,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.075411266796447,6.282381610309712,49.27,46.58,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,201,392113.7997562576,192027.4589472772,33355.80644491711,0,666.0504996721802 -9274,11427,20723,-9,-9,20722,1,1,25,0,0,0,2,2,-9,0,4,8.066626395397485,8.43705632630944,0,0,0,-1053.663848916078,0,3,3,2019,10,1,34,0,1,1,0,13.21131365268957,13.21131365268957,0,0,0,0,0,1,1,0,0,0,49.86,55.31,-9,-9,10,1,1,0,0,5,2,4,0,712,44488.87503984405,0,0,0,1663.046437138812 -9275,11428,20724,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,3,6.26771745462983,6.098481876245449,0,0,0,-871.2231308834847,0,-9,-9,2019,23,11,32,0,1,11,0,1.927354701652048,1.927354701652048,0,0,0,0,2,1,1,0,0,0,35.83,38.73,-9,-9,3.333333333333333,1,1,0,0,1,4,2,0,230,-101947.4370639584,0,106915.0892519107,0,1614.561276628608 -9276,11429,20725,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-864.4872866289318,-9,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,3.468428616082121,0,9.9,66.06,-9,-9,1.666666666666667,1,1,1,0,1,8,1,0,577,114053.764714852,0,0,0,-778.1703766007678 -9277,11430,20726,20727,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,1,-5,24.27864516432152,-9,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,49.98,55.33,41,24,8.333333333333334,1,1,0,0,0,7,2,1,738,441408.0342288449,12361.3262105272,222990.3198225809,0,2081.961535825204 -9277,11430,20727,20726,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.627097321397047,5.784433277773966,1,5,-18.83116552284281,-9,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,10.09143178131451,0,0,1,1,0,7.396020765311518,5.80378781817502,41,24,49.98,55.33,0,1,1,0,0,0,7,2,1,738,441408.0342288449,12361.3262105272,222990.3198225809,0,2081.961535825204 -9278,11431,20728,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,0,0,-946.764003734066,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,39.79,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,437,0,0,0,0,982.810781040965 -9279,11432,20729,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.65000080985542,6.827921612454717,0,0,-1063.776722937981,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,2.221420352810936,0,23.88897600265808,0,1,1,0,3.191028138748786,6.737573782308495,54.62,37.47,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,316,101050.1077332335,105169.6161882129,0,0,1155.78807547766 -9280,11433,20730,20732,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.525572934444227,8.321805201183967,0,1,2,-86.92849374534977,-9,-9,-9,2019,11,0,45,0,1,0,0,11.84721473972756,11.84721473972756,0,0,0,0,0,1,1,0,0,0,44.72,56.46,47,57,6.666666666666667,1,1,0,0,8,5,5,1,490.6666666666667,143779.9086209276,-23023.06876365323,291370.6836066601,201789.589415592,3750.219152965206 -9280,11433,20731,-9,20732,20730,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.9395966922937,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,490.6666666666667,143779.9086209276,-23023.06876365323,291370.6836066601,201789.589415592,3750.219152965206 -9280,11433,20732,20730,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.958842303179249,8.159701856153029,0,1,-2,117.5191437906395,-9,2,2,2019,11,0,30,0,1,2,0,13.84355083461755,13.84355083461755,0,0,0,0,0,1,1,0,0,0,47,57,44.72,56.46,7,1,1,0,0,1,5,5,1,490.6666666666667,143779.9086209276,-23023.06876365323,291370.6836066601,201789.589415592,3750.219152965206 -9281,11434,20733,-9,20734,20736,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1005.783147600151,-9,2,1,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,2,3,0,0,1,4,3,1,1318,753820.4652819845,360182.7262018278,388106.5400412141,18724.82751184366,2277.30381354359 -9281,11434,20734,20736,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,23,-4,-75.21643757199649,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,38.91,47.3,50.51,53.71,5,2,3,0,0,0,4,3,1,1318,753820.4652819845,360182.7262018278,388106.5400412141,18724.82751184366,2277.30381354359 -9281,11434,20735,-9,20734,20736,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-946.1042096980677,-9,2,1,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,3,1,1318,753820.4652819845,360182.7262018278,388106.5400412141,18724.82751184366,2277.30381354359 -9281,11434,20736,20734,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.535273165585219,8.457239277974276,0,23,4,97.48406613707331,0,3,3,2019,14,2,37,41,1,2,0,12.03576231603745,12.03576231603745,0,0,0,0,7,1,1,0,.2076902383518335,0,50.51,53.71,38.91,47.3,3.333333333333333,2,3,0,0,12,4,3,1,1318,753820.4652819845,360182.7262018278,388106.5400412141,18724.82751184366,2277.30381354359 -9281,11435,20737,-9,20734,20736,1,0,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1058.818560514062,-9,2,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,38.98,58.02,-9,-9,0,2,3,0,0,0,4,1,1,475,88016.9344932597,0,0,0,0 -9282,11436,20738,20739,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.243605368534598,5.154357466399259,51,-2,-149.5802731902363,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,2.493984902686174,0,1,1,0,0,5.226839438199873,52,46,63.65,35.93,7,1,1,0,0,0,6,3,1,93,1708992.430940388,-22299.23001120623,239892.1418814157,0,2794.969503634421 -9282,11436,20739,20738,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,6.77020000673503,8.02494572130747,7.345678051313032,51,2,-115.2964068233799,0,3,3,2019,7,0,6,12,1,0,0,14.32533440374867,14.32533440374867,1,0,0,0,0,1,1,0,0,7.744941083295689,63.65,35.93,52,46,8.333333333333334,1,1,0,0,9,6,3,1,93,1708992.430940388,-22299.23001120623,239892.1418814157,0,2794.969503634421 -9283,11437,20740,20741,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,48,-1,-4.207924511244455,0,-9,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,.832791169297499,0,1,1,0,.6249575800058677,0,56.5,42.8,49.33,47.37,10,1,1,0,0,5,10,2,1,644.5,250187.9644383879,373073.3973200563,0,0,1541.556624812145 -9283,11437,20741,20740,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.358644236225948,7.104392634073726,48,1,35.12358022483998,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.056534816849517,49.33,47.37,56.5,42.8,10,1,1,0,0,6,10,2,1,644.5,250187.9644383879,373073.3973200563,0,0,1541.556624812145 -9284,11438,20742,20743,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,23,-2,-56.50134108544705,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.71,16.04,52.99,51.28,5,1,1,0,0,0,10,4,1,323,945216.1730481859,848055.9637847606,127679.3795179132,0,2260.640659482468 -9284,11438,20743,20742,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.987555915291888,8.228860138804237,0,23,2,-45.57069109087323,-9,-9,-9,2019,11,0,44,0,1,0,0,11.38624857683754,11.38624857683754,0,0,0,0,2,1,1,0,0,0,52.99,51.28,38.71,16.04,8.333333333333334,1,1,0,0,11,10,4,1,323,945216.1730481859,848055.9637847606,127679.3795179132,0,2260.640659482468 -9285,11439,20744,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,8.235712389707357,8.365185956927535,0,0,0,-991.7712265431138,0,2,2,2019,13,2,8,0,1,2,0,52.51957673985782,52.51957673985782,0,0,0,0,0,0,0,0,0,0,41.73,48.57,-9,-9,5,1,1,0,0,8,8,4,1,541,836261.2402543714,63064.22952297707,417408.3610007112,0,1885.055655607735 -9286,11440,20745,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-966.347364900148,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.108375934775708,0,57.16,56.15,-9,-9,10,1,1,0,0,0,7,1,0,1447,213670.3958986681,0,0,0,664.5556472332873 -9287,11441,20746,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.296489730206294,6.964538697407334,0,0,0,-966.1128643746013,0,1,2,2019,8,0,38,0,1,0,0,3.821329213984127,3.821329213984127,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,395,-127556.907966796,0,0,0,1017.360446278719 -9288,11442,20747,20748,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.764397610055739,7.576403552649937,0,10,-4,9.98959962665654,0,2,3,2019,9,2,30,24,1,2,0,7.223778963895797,7.223778963895797,0,0,0,0,14.5,0,0,0,0,0,47.36,43.76,29.88,38.26,8.333333333333334,1,1,0,0,11,10,3,1,707,367679.798965997,25719.8847579338,217580.1458820518,51951.75249174625,1561.858660526683 -9288,11442,20748,20747,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,7.050932227004005,6.950146249178129,10,4,-96.789524404562,0,2,2,2019,19,7,0,37,3,7,0,0,0,0,0,0,1.526960562253711,0,0,0,0,.0856637003293973,6.886802615062445,29.88,38.26,47.36,43.76,1.666666666666667,1,1,1,0,11,10,3,1,707,367679.798965997,25719.8847579338,217580.1458820518,51951.75249174625,1561.858660526683 -9289,11443,20749,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.222068417184943,8.166131616454896,0,0,0,-1059.343073801116,0,2,2,2019,11,2,37,37,1,2,0,10.34144700643404,10.34144700643404,0,0,0,0,0,0,0,0,0,0,40.98,52.59,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,664,60724.07923930851,-64098.83235169243,0,0,1489.018941633238 -9290,11444,20750,20751,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,0,0,0,40,-7,0,-9,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,50.72,46.82,32.16,41.02,6.666666666666667,2,3,0,0,0,4,1,0,748.5,91836.30161435259,-92409.58209918495,103719.5629699173,0,3464.01496224494 -9290,11444,20751,20750,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,11,7,0,-9,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,32.16,41.02,50.72,46.82,5,2,3,0,0,0,4,1,0,748.5,91836.30161435259,-92409.58209918495,103719.5629699173,0,3464.01496224494 -9290,11445,20752,-9,20750,20751,1,0,32,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1145.537127356941,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,4.146733863149244,0,61.28,46.17,-9,-9,6.666666666666667,2,3,1,0,0,4,1,0,1239,15802.13713248007,0,0,0,1128.090177700528 -9290,11446,20753,-9,20750,20751,1,0,28,0,0,0,1,1,-9,0,4,7.562572630997319,7.379822783025832,0,0,0,-951.8962331644007,0,3,2,2019,11,0,28,20,1,0,1,7.402370058930562,7.402370058930562,0,0,0,0,2,1,0,1,0,0,45.91,59.89,-9,-9,5,2,3,0,1,3,4,3,0,351,77167.91568587918,0,0,0,239.547871710649 -9290,11447,20754,-9,20750,20751,1,0,25,0,0,0,2,2,-9,0,4,7.75308261885705,7.686495643644484,0,0,0,-1008.371627186481,0,3,2,2019,12,0,38,38,1,0,1,6.916845283503643,6.916845283503643,0,0,0,0,0,1,0,1,0,0,58.87,51.29,-9,-9,8.333333333333334,2,3,0,0,3,4,3,0,1985,16621.1785258948,0,0,0,1148.481470664854 -9290,11448,20755,-9,20750,20751,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-959.3522234844735,-9,3,2,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,0,1,0,0,31.72,41.15,-9,-9,5,2,3,0,0,0,4,1,0,454,0,0,0,0,0 -9290,11449,20756,-9,20750,20751,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1075.897931682435,0,3,2,2019,12,0,0,23,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,53.14,51.28,-9,-9,8.333333333333334,2,3,1,0,1,4,1,0,1251,0,0,0,0,0 -9290,11450,20757,-9,20750,20751,1,0,30,0,0,0,2,2,-9,0,3,8.035702443312642,7.977812438505264,0,0,0,-976.346238376476,0,3,2,2019,12,0,38,38,1,0,1,8.751891043550417,8.751891043550417,0,0,0,0,0,1,0,1,0,0,45.73,57.57,-9,-9,1.666666666666667,2,3,0,0,6,4,4,0,497,166872.6925337499,157223.7249780874,81100.90954779329,85220.32999847937,1246.215856339461 -9291,11451,20758,20759,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.693791407691505,6.864067190135892,9,4,65.22332333391505,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.9898709647687951,6.963489877550495,54,46,55.36,51.57,8,1,1,0,0,0,6,2,1,430.5,219973.3592709317,103567.9642003718,235603.4460160924,0,1775.6647168572 -9291,11451,20759,20758,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.46836892948574,3.906040528427376,57,-4,122.1639410458124,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.597712886413258,3.650602786870615,55.36,51.57,54,46,10,1,1,0,0,0,6,2,1,430.5,219973.3592709317,103567.9642003718,235603.4460160924,0,1775.6647168572 -9292,11452,20760,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.6134810560984,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,0,13,1,1,1119,-134816.6896309818,0,0,0,433.723787809978 -9293,11453,20761,20762,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.585450678165353,8.912767201702104,10,1,5.667114688830395,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.459393867602309,8.636394976643849,58.15,52.91,51.24,58.84,8.333333333333334,1,1,0,0,12,7,5,1,105,1203455.700935487,153110.454811117,776587.9582705055,0,6401.108196794835 -9293,11453,20762,20761,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,9.153038340519169,8.709644945585264,36,-1,-56.98251554371159,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.925535733626934,9.273714861794542,51.24,58.84,58.15,52.91,8.333333333333334,1,1,0,0,10,7,5,1,105,1203455.700935487,153110.454811117,776587.9582705055,0,6401.108196794835 -9294,11454,20763,20764,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,8.019772870294565,8.592780888294124,7.444932404650869,19,10,36.86099616719661,0,3,3,2019,13,2,40,30,1,2,0,8.324190249879878,8.324190249879878,0,0,0,0,0,1,1,0,4.575825831228485,6.925098614066155,47.89,49.49,51.19,52.17,6.666666666666667,1,1,0,0,12,2,4,1,664,2700333.849124348,1429426.803425655,774039.1325986903,0,6834.994111763009 -9294,11454,20764,20763,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.30017772422203,7.35238650700136,22,-10,35.0969648709338,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.133106624502336,7.507037815533067,51.19,52.17,47.89,49.49,8.333333333333334,1,1,0,0,5,2,4,1,664,2700333.849124348,1429426.803425655,774039.1325986903,0,6834.994111763009 -9295,11455,20765,20766,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.796520342936145,5.237644573600054,6,1,32.64885184001805,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.009798688069708,5.891050245700741,56.13,44.38,46.48,53.76,6.666666666666667,1,1,0,0,0,7,4,1,456.5,2447998.278938594,451851.3772436946,1954091.39398808,101952.3427234364,4309.351530783003 -9295,11455,20766,20765,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.16581335759291,8.384772133987937,6,-1,27.11075795854729,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.110335183362746,8.531721913331817,46.48,53.76,56.13,44.38,8.333333333333334,1,1,0,0,0,7,4,1,456.5,2447998.278938594,451851.3772436946,1954091.39398808,101952.3427234364,4309.351530783003 -9296,11456,20767,-9,20768,20769,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.5171355418279,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,721.75,67647.27475549289,138.6700072964304,0,0,2446.134011101112 -9296,11456,20768,20769,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.466889246139157,7.488098835664785,0,4,-1,89.20142585514159,0,-9,3,2019,10,1,23,20,1,1,0,7.732456549625164,7.732456549625164,0,0,0,0,0,1,0,1,0,0,49.54,35.36,58.05,54.52,8.333333333333334,1,1,0,1,8,2,3,1,721.75,67647.27475549289,138.6700072964304,0,0,2446.134011101112 -9296,11456,20769,20768,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.107979320842315,8.148717167402012,0,4,1,-29.67147749354008,0,2,2,2019,7,0,35,36,1,0,0,8.732023434072884,8.732023434072884,0,0,0,.2248508933329454,0,1,0,1,6.640174573109392,0,58.05,54.52,49.54,35.36,8.333333333333334,1,1,0,1,9,2,3,1,721.75,67647.27475549289,138.6700072964304,0,0,2446.134011101112 -9296,11456,20770,-9,20768,20769,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.4794776418049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,721.75,67647.27475549289,138.6700072964304,0,0,2446.134011101112 -9297,11457,20771,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.754132032571669,7.760473740466169,5.987616330916776,0,0,-936.4795936037681,0,2,2,2019,12,3,35,25,1,3,0,7.86618992745478,7.86618992745478,0,0,0,0,0,1,1,0,6.151090656710046,0,46.79,40.85,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,1364,207322.04131059,0,0,0,3061.335725791298 -9298,11458,20772,-9,-9,-9,1,0,20,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1040.313916038379,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,1050,0,0,0,0,862.9403515868763 -9299,11459,20773,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.228419921393655,7.994283045412503,0,0,-1008.549240887899,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.496643725632119,8.170269857039557,50.62,53.79,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,511,1248575.236933387,357635.3158492501,179743.9380229585,0,1870.956946674135 -9300,11460,20774,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.262271256147756,8.29223417323184,0,0,-1054.343939716094,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.340268892453829,8.628608819527779,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,482,773128.4338424082,517175.9089504464,61212.48376095371,0,3180.453563215941 -9301,11461,20775,20776,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,7.739998229952292,7.752102779330549,0,1,1,43.61105332801846,-9,-9,2,2019,12,0,39,0,1,0,0,7.206471744793652,7.206471744793652,0,0,0,0,0,0,0,0,0,0,45.81,61.51,50.06,55.28,10,1,1,0,0,7,5,3,0,709.5,5172.416683580555,-26827.87429533261,94112.79029076846,77896.06303467641,1852.477019830403 -9301,11461,20776,20775,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.577681733777636,7.429954670886629,0,1,-1,23.91217142262735,-9,-9,-9,2019,11,0,24,0,1,0,0,7.054061588755416,7.054061588755416,0,0,0,0,0,0,0,0,0,0,50.06,55.28,45.81,61.51,6.666666666666667,1,1,0,0,4,5,3,0,709.5,5172.416683580555,-26827.87429533261,94112.79029076846,77896.06303467641,1852.477019830403 -9302,11462,20777,20778,-9,-9,1,0,59,0,1,0,2,2,-9,0,4,6.245838947390927,6.34408448064924,0,24,12,-4.293255319789111,0,3,-9,2019,11,1,30,20,1,1,0,2.652063275994199,2.652063275994199,0,0,0,0,0,1,1,0,3.249446491196866,0,51.25,50.81,56.75,47.06,8.333333333333334,1,1,0,0,1,8,3,1,673.3333333333334,159551.5385625441,-7645.503577258074,144811.5234575593,57754.90377934097,2602.592473251242 -9302,11462,20778,20777,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,8.239821923968735,8.141769769909697,0,9,-12,-49.39339130972371,0,-9,-9,2019,9,0,59,59,1,0,0,8.446624816172751,8.446624816172751,0,0,0,0,0,1,1,0,7.225916121122635,0,56.75,47.06,51.25,50.81,8.333333333333334,4,2,0,0,2,8,3,1,673.3333333333334,159551.5385625441,-7645.503577258074,144811.5234575593,57754.90377934097,2602.592473251242 -9302,11462,20779,-9,20777,20778,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.9994724615231,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.1,49.93,-9,-9,8.333333333333334,4,5,0,0,2,8,3,1,673.3333333333334,159551.5385625441,-7645.503577258074,144811.5234575593,57754.90377934097,2602.592473251242 -9303,11463,20780,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1055.659293026347,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,54.32,17.21,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,699,0,0,0,0,1083.111482796076 -9303,11464,20781,-9,20780,-9,1,0,28,0,0,0,2,2,-9,0,1,7.799288763553772,8.301130153834251,0,0,0,-894.6842553086184,0,3,-9,2019,10,0,49,50,1,0,1,7.682532377187988,7.682532377187988,0,0,0,0,2,1,1,0,0,0,51.31,40.46,-9,-9,6.666666666666667,1,1,0,0,2,12,4,0,289,38099.24212484123,5256.183591649209,0,0,1346.460308709964 -9304,11465,20782,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,6.98890983811063,6.704550876087537,0,0,0,-1068.7330471976,0,3,3,2019,17,5,17,18,1,5,0,6.789831866144312,6.789831866144312,0,0,0,.58749980953964,2,1,1,0,0,0,41.49,38.99,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,884.5,74694.89192564436,23957.14486057804,0,0,1316.853964596779 -9304,11465,20783,-9,20782,-9,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-966.0203191018651,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,2,0,884.5,74694.89192564436,23957.14486057804,0,0,1316.853964596779 -9304,11466,20784,-9,20782,-9,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-920.1779280765027,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.83,49.11,-9,-9,6.666666666666667,4,2,0,0,2,8,1,0,704,0,0,0,0,0 -9305,11467,20785,20786,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.760740266502856,8.830798977569323,0,24,-5,88.32031406791447,0,1,1,2019,7,0,48,49,1,0,0,12.3347687138358,12.3347687138358,0,0,0,0,0,1,1,0,2.938127226936224,0,54.1,59.11,60.12,54.8,10,3,4,0,0,10,8,3,1,567,2057820.472257554,2060377.758135544,0,0,2892.70668092703 -9305,11467,20786,20785,-9,-9,1,1,56,0,1,0,1,1,0,0,4,0,0,0,24,5,-19.06465738842467,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.1,59.11,8.333333333333334,3,4,0,0,8,8,3,1,567,2057820.472257554,2060377.758135544,0,0,2892.70668092703 -9306,11468,20787,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.504923209964648,8.887442671008859,0,2,1,35.7408965193252,0,1,1,2019,10,0,39,43,1,0,0,15.23724825914212,15.23724825914212,0,0,0,0,7,0,0,0,7.006119984163526,0,52,54.51,50,54,6.666666666666667,1,1,0,0,8,2,4,1,502,292468.2702440656,104825.1723038557,106321.0019047864,69576.69602156863,3127.167769104838 -9307,11469,20788,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,5.472947181644769,5.904180221503396,0,0,-907.7816280122958,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.02456287616635,6.109818497094155,58.33,18.23,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,252,434403.0624618098,108793.6302719949,323497.9272682448,0,1622.061513564221 -9308,11470,20789,20790,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.515592732887258,6.349608271394117,59,6,26.51225966797248,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.14991463523632,57.16,56.15,59.13,44.84,10,3,4,0,0,0,9,2,1,271.5,361912.7188147046,-10569.08634071792,243279.5557662913,0,1925.707412045563 -9308,11470,20790,20789,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.533513711343928,4.505245793537289,58,-6,57.26674180183002,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.241871166470851,4.24133789909692,59.13,44.84,57.16,56.15,6.666666666666667,3,4,0,0,0,9,2,1,271.5,361912.7188147046,-10569.08634071792,243279.5557662913,0,1925.707412045563 -9309,11471,20791,-9,20793,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.6778153268384,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,2,0,1042.25,6523.794026322146,0,0,0,2505.013876800741 -9309,11471,20792,-9,20793,-9,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-935.4677963036751,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,1042.25,6523.794026322146,0,0,0,2505.013876800741 -9309,11471,20793,-9,-9,-9,1,0,30,1,3,0,3,3,-9,1,2,0,6.556845604069318,6.602733362086103,0,0,-984.0338001032814,0,2,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,7.143888617881101,0,29.13,48.1,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,1042.25,6523.794026322146,0,0,0,2505.013876800741 -9309,11471,20794,-9,20793,-9,1,1,13,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1058.752073653875,-9,3,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,0,1042.25,6523.794026322146,0,0,0,2505.013876800741 -9310,11472,20795,20796,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,5.220260354959586,5.425919135239051,55,0,55.11019040767501,0,2,2,2019,15,3,0,0,4,3,0,0,0,1,0,4.269318811173786,0,0,1,1,0,4.672520902798708,5.006976569387222,39,24,59.46,46.99,3.333333333333333,1,1,0,0,0,6,2,1,195,138345.8314199397,89370.57621715862,139703.1159780039,0,2560.754688246732 -9310,11472,20796,20795,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.922347511090002,6.952513557285457,10,0,-30.70601120647853,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.320214729916768,7.262092466994162,59.46,46.99,39,24,8.333333333333334,1,1,0,0,0,6,2,1,195,138345.8314199397,89370.57621715862,139703.1159780039,0,2560.754688246732 -9311,11473,20797,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.011377608994993,6.062770423623384,0,0,-981.5847468129294,0,2,2,2019,9,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.947872671619107,52.05,55.95,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,325,371120.7178427347,112871.9139918508,5283.940008006612,0,38.18927878965798 -9311,11474,20798,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.836761540440954,8.218880857712447,0,0,-1023.667409326952,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.044880451667019,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,201,730892.0136106653,617190.3635040217,-5565.602031268725,18983.19155894734,919.4891553922046 -9312,11475,20799,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-917.8994869777597,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.65,41.46,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,575,-103762.3003147628,0,0,0,654.6255015701901 -9312,11476,20800,-9,20799,-9,1,1,47,0,0,0,2,2,-9,0,4,8.17401205845635,7.981049812894823,0,0,0,-979.2813548299026,0,3,3,2019,9,0,44,42,1,0,0,9.401750123309149,9.401750123309149,0,0,0,0,0,1,1,0,3.75771586595317,0,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,324,144073.035283251,48140.0168683458,188226.6830744779,58753.19801401185,1268.008139903496 -9313,11477,20801,20802,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.429415231169786,9.114384850955881,0,6,-5,181.2262854902477,0,3,3,2019,6,0,50,60,1,0,0,22.48833154474873,22.48833154474873,0,0,0,0,0,1,1,0,0,0,52,54.51,19.01,22.64,8.333333333333334,1,1,0,0,7,2,5,1,208.5,230100.9251052923,100425.8764496233,175530.0616351363,24648.57073405669,3950.218039849284 -9313,11477,20802,20801,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,6,5,78.38502745638829,0,3,3,2019,34,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,52,54.51,1.666666666666667,1,1,0,0,0,2,5,1,208.5,230100.9251052923,100425.8764496233,175530.0616351363,24648.57073405669,3950.218039849284 -9314,11478,20803,20805,-9,-9,1,0,39,1,1,0,3,3,-9,0,3,5.220946629307179,4.914608872188671,0,20,-1,-42.27241880201747,0,2,2,2019,11,0,27,30,1,0,0,.7099209690301784,.7099209690301784,0,0,0,0,0,0,0,0,0,0,47.55,49.86,22.89,58.38,6.666666666666667,1,1,0,1,9,9,4,0,1536.666666666667,469489.8199723513,141322.588051365,248623.9391700338,60613.60770565016,2255.410469573702 -9314,11478,20804,-9,20803,20805,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-896.8305998906898,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,1536.666666666667,469489.8199723513,141322.588051365,248623.9391700338,60613.60770565016,2255.410469573702 -9314,11478,20805,20803,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.304208658313057,8.475912982613268,0,20,1,31.86237956552717,0,2,2,2019,11,1,45,43,1,1,0,12.96934866965591,12.96934866965591,0,0,0,0,0,0,0,0,0,0,22.89,58.38,47.55,49.86,5,1,1,0,0,9,9,4,0,1536.666666666667,469489.8199723513,141322.588051365,248623.9391700338,60613.60770565016,2255.410469573702 -9315,11479,20806,20807,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.009126043604384,8.382014208990245,0,2,5,-68.71512038320519,0,-9,-9,2019,8,0,38,38,1,0,0,11.89512429441119,11.89512429441119,0,0,0,0,0,0,0,0,0,0,51.56,53.97,50.28,51.35,8.333333333333334,1,1,0,0,5,2,4,1,346.5,-30925.97293153228,28847.14721271633,134691.732342149,126291.3952902797,1996.797077512655 -9315,11479,20807,20806,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.576935041821504,7.503213576172223,0,2,-5,113.5785902200761,0,2,2,2019,7,1,37,37,1,1,0,6.988404625714852,6.988404625714852,0,0,0,0,0,0,0,0,0,0,50.28,51.35,51.56,53.97,8.333333333333334,1,1,0,0,7,2,4,1,346.5,-30925.97293153228,28847.14721271633,134691.732342149,126291.3952902797,1996.797077512655 -9316,11480,20808,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.702708817461486,8.481001836981909,4.778123108663314,0,0,-1001.152435687949,0,3,3,2019,10,2,60,70,1,2,0,12.95498570183975,12.95498570183975,0,0,0,0,0,0,0,0,0,5.275885520361133,52.75,25.75,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,280,101262.1233657053,-72174.0581781693,84057.36000328358,25384.17081094623,2027.260747837031 -9317,11481,20809,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.871388446885449,7.924249695516614,0,0,0,-957.3751779039737,0,2,3,2019,12,0,37,37,1,0,0,6.147801522979911,6.147801522979911,0,0,0,0,0,0,0,0,0,0,37,50.59,-9,-9,6.666666666666667,1,1,0,0,11,7,3,0,918,360181.0678788541,40998.53151332758,372479.6907045253,-17189.11934250881,885.659831329537 -9318,11482,20810,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,6.146251355518614,6.097073396794445,0,0,0,-1112.337422817937,0,3,3,2019,6,0,51,65,1,0,0,1.014139993789148,1.014139993789148,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,1021,0,0,0,0,313.0827743364005 -9319,11483,20811,20812,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,67,-3,8.607586214413498,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,22.17516411300369,0,0,1,1,0,2.012708570516179,0,66.01000000000001,31.02,54.53,43.74,0,1,1,0,0,0,2,2,1,917.5,387321.1842013148,264068.7349822939,227121.3333197364,0,2349.219535398748 -9319,11483,20812,20811,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.965743349537749,5.191272209343942,67,3,62.56384523711088,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,1.25788555624232,5.269122167774057,54.53,43.74,66.01000000000001,31.02,8.333333333333334,1,1,0,0,0,2,2,1,917.5,387321.1842013148,264068.7349822939,227121.3333197364,0,2349.219535398748 -9320,11484,20813,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.777405200351888,5.71688032148787,0,0,-1007.307274434325,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.659499870595932,5.7950144057178,57.54,42.36,-9,-9,10,1,1,0,0,0,5,2,1,91,336376.8563421868,55061.48689935535,178117.550814191,0,573.3060571833438 -9321,11485,20814,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,8.458743222934554,8.200205973833489,0,0,-1088.496798552766,0,2,1,2019,14,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,8.139724451092832,46.89,25.18,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,520,515871.2187184822,427494.9745731254,158447.5390171828,0,2940.324693724728 -9322,11486,20815,20816,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.63613616059463,7.830422680939963,6,4,96.79562777926583,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.713119569029828,7.65964676776605,57.16,56.15,49.83,27.52,8.333333333333334,1,1,0,0,7,13,3,1,715,793562.7787211265,382729.732634654,215902.5686295786,0,2405.77422213379 -9322,11486,20816,20815,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,6,-4,2.420145873351719,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.83,27.52,57.16,56.15,10,1,1,0,0,0,13,3,1,715,793562.7787211265,382729.732634654,215902.5686295786,0,2405.77422213379 -9323,11487,20817,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.952173772970136,7.041837142872034,0,0,-873.8114296278201,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.926426474334893,6.710831159050653,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,132,293359.9068661811,135826.0925137606,160004.2782850949,0,-84.17605778133702 -9324,11488,20818,20819,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.58663139401096,7.851456333704786,5.818163044680208,48,4,-25.77565515356544,0,3,3,2019,10,0,60,60,1,0,0,3.872305706269972,3.872305706269972,0,0,0,0,0,1,1,0,7.156426947719853,5.617444508253681,56.35,51.16,36.67,37.73,8.333333333333334,1,1,0,0,10,7,4,1,454.5,675056.436145287,251151.5355077665,158827.9987229315,125628.9674869641,3655.703250506018 -9324,11488,20819,20818,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,8.256396569894276,8.333616334724049,0,48,-4,49.48638192305278,0,3,2,2019,18,6,60,60,1,6,0,8.579161002901065,8.579161002901065,0,0,0,0,0,1,1,0,6.181143113652454,0,36.67,37.73,56.35,51.16,6.666666666666667,1,1,0,0,10,7,4,1,454.5,675056.436145287,251151.5355077665,158827.9987229315,125628.9674869641,3655.703250506018 -9325,11489,20820,-9,20821,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.745948995688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,416,182262.7842838118,32306.17659197927,64312.21008516494,51144.55421159686,1265.933056298497 -9325,11489,20821,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.697494961992454,7.506195426631789,0,0,0,-1084.822595954817,-9,1,2,2019,9,0,23,0,1,0,0,12.24555399833438,12.24555399833438,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,416,182262.7842838118,32306.17659197927,64312.21008516494,51144.55421159686,1265.933056298497 -9326,11490,20822,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,5,0,0,0,0,0,-956.19413338217,0,-9,-9,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,0,0,0,6,1,0,170,87761.56280477588,0,0,0,1303.951125336495 -9327,11491,20823,20824,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.402834351139777,8.146655691256791,5,5,-25.00949838800727,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.448419698931104,8.47009253752047,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,3,10,5,1,272,1609154.4291363,1090098.847120399,430785.1233979242,98526.48210968882,4154.818209610532 -9327,11491,20824,20823,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.568584325772978,8.514673822612053,0,5,-5,-16.32083402008259,-9,3,3,2019,8,0,27,0,1,0,0,24.02995902503423,24.02995902503423,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,272,1609154.4291363,1090098.847120399,430785.1233979242,98526.48210968882,4154.818209610532 -9328,11492,20825,20826,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,43,-5,-8.937508669308077,0,3,3,2019,13,3,0,18,4,3,0,0,0,0,0,0,0,0,0,0,0,4.437066476576284,0,44.42,54.24,36.67,37.73,8.333333333333334,1,1,0,0,12,8,4,0,1270.5,1413617.768384431,813111.477664276,383285.2889140842,0,2255.452546847908 -9328,11492,20826,20825,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,8.191850480122826,8.39047322984926,6.710273430323217,43,5,47.10614551120749,0,3,2,2019,13,1,40,40,1,1,0,9.472649989685886,9.472649989685886,1,0,0,0,0,0,0,0,6.868333891283596,6.994621370770475,36.67,37.73,44.42,54.24,5,1,1,0,0,10,8,4,0,1270.5,1413617.768384431,813111.477664276,383285.2889140842,0,2255.452546847908 -9329,11493,20827,20828,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,29,-3,-159.4340452516529,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,52.65,51.64,6.666666666666667,2,3,1,0,0,8,2,0,646,-47412.71789134682,0,0,0,113.3161323518063 -9329,11493,20828,20827,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,4.767364270931146,4.729230880501894,0,9,3,54.5464626217464,0,3,3,2019,12,0,40,30,1,0,0,.3471929864166458,.3471929864166458,0,0,0,0,0,1,1,0,0,0,52.65,51.64,49.69,52.99,6.666666666666667,2,3,0,0,9,8,2,0,646,-47412.71789134682,0,0,0,113.3161323518063 -9329,11494,20829,-9,20827,20828,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.330471383366,1,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.646636558567524,0,44.98,55.14,-9,-9,6.666666666666667,2,3,0,1,4,8,1,0,296,143814.8376419525,0,0,0,-105.5029675308401 -9330,11495,20830,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.798247078282459,7.940654267761718,0,0,0,-1073.733280673775,0,2,1,2019,18,7,35,37,1,7,0,9.7016068572458,9.7016068572458,0,0,0,0,0,0,0,0,6.16687785947514,0,46.74,20.78,-9,-9,3.333333333333333,1,1,0,0,4,2,3,0,127,40803.26577477725,17012.43328142824,0,0,1731.166038649868 -9331,11496,20831,-9,20834,20835,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.329597121163,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,876.8,625199.9455306071,49399.23613664165,419967.5213820484,0,4715.945590258123 -9331,11496,20832,-9,20834,20835,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.202109985932,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,876.8,625199.9455306071,49399.23613664165,419967.5213820484,0,4715.945590258123 -9331,11496,20833,-9,20834,20835,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1033.478001567622,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,5,1,876.8,625199.9455306071,49399.23613664165,419967.5213820484,0,4715.945590258123 -9331,11496,20834,20835,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,8.718168064236641,8.972251157126044,0,11,-6,53.56063303040057,-9,1,1,2019,25,11,43,0,1,11,0,14.13527038334213,14.13527038334213,0,0,0,0,0,1,1,0,0,0,25.02,64.34,49.29,54.59,5,1,1,0,0,10,13,5,1,876.8,625199.9455306071,49399.23613664165,419967.5213820484,0,4715.945590258123 -9331,11496,20835,20834,-9,-9,1,1,49,0,3,0,1,1,-9,0,3,8.635335448273612,8.891001671050311,0,13,6,18.00048686167626,-9,3,2,2019,12,0,45,0,1,0,0,16.10361475396796,16.10361475396796,0,0,0,0,2,1,1,0,0,0,49.29,54.59,25.02,64.34,6.666666666666667,1,1,0,0,11,13,5,1,876.8,625199.9455306071,49399.23613664165,419967.5213820484,0,4715.945590258123 -9332,11497,20836,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.562480155008632,7.635655164391484,0,0,-906.7238201309613,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.662695795278623,7.542377739818198,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,5,9,3,1,1004,438169.5859696382,216699.0693129089,331067.8212051077,0,1848.040179865702 -9333,11498,20837,20838,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.991234858059038,5.76450423222331,32,16,-1.339915376144563,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,1.79042836804435,4.474346650560413,31.08333535270784,0,1,1,0,3.996020727740988,6.315985355468588,59.07,37.52,49.35,59.64,8.333333333333334,1,1,0,0,8,2,4,1,286,950070.4105741379,760206.0993794973,186254.1792601732,43495.72366680235,3545.615121193889 -9333,11498,20838,20837,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.876526316175914,8.852953359731648,0,32,-16,32.59289363471853,0,2,2,2019,11,0,49,50,1,0,0,16.34179114218976,16.34179114218976,0,0,0,0,2,1,1,0,0,0,49.35,59.64,59.07,37.52,8.333333333333334,1,1,0,0,13,2,4,1,286,950070.4105741379,760206.0993794973,186254.1792601732,43495.72366680235,3545.615121193889 -9334,11499,20839,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,9.145047814199218,8.963330423698102,0,0,0,-959.2520950672101,0,3,2,2019,13,1,40,37,1,1,0,25.01338506692408,25.01338506692408,0,0,0,0,0,0,0,0,0,0,39.5,42.96,-9,-9,6.666666666666667,1,1,0,0,9,4,5,0,1986,264492.3001142351,-13185.07494299799,104367.4524872045,19499.1770984485,2386.270347170338 -9335,11500,20840,20841,-9,-9,1,1,54,1,0,0,3,3,-9,1,2,0,6.164875727471092,6.151940918135645,34,1,19.00487985192186,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.963386436951636,66.67,16.76,50.74,34.81,6.666666666666667,1,1,0,0,0,8,2,0,390,476707.8644976151,220373.2789432513,238165.8838020212,0,2619.440023138169 -9335,11500,20841,20840,-9,-9,1,0,53,1,0,0,3,3,-9,1,2,0,0,0,34,-1,-45.29838301638967,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,50.74,34.81,66.67,16.76,6.666666666666667,1,1,0,0,0,8,2,0,390,476707.8644976151,220373.2789432513,238165.8838020212,0,2619.440023138169 -9335,11501,20842,-9,20841,20840,1,0,22,1,0,0,2,2,-9,0,4,7.706565636789023,7.853475187990132,0,0,0,-1116.744980323944,0,3,3,2019,12,0,44,35,1,0,1,6.728431118563957,6.728431118563957,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,8.333333333333334,1,1,0,0,2,8,3,0,627.25,100695.8801347681,0,0,0,1501.545801803914 -9335,11501,20843,-9,20842,-9,1,1,2,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1090.964837778898,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,627.25,100695.8801347681,0,0,0,1501.545801803914 -9335,11501,20844,-9,20842,-9,1,0,5,1,0,1,3,0,-9,0,4,0,0,0,0,0,-919.7131071947273,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,627.25,100695.8801347681,0,0,0,1501.545801803914 -9335,11501,20845,-9,20842,-9,1,0,10,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1087.317637773396,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,627.25,100695.8801347681,0,0,0,1501.545801803914 -9336,11502,20846,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1080.764653377318,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,15.74470387932152,0,0,1,0,1,0,0,52.64,8.960000000000001,-9,-9,5,1,1,0,0,0,13,1,1,1920,-192693.9554001608,0,0,0,953.1923580652081 -9336,11503,20847,-9,20846,-9,1,0,52,0,0,0,1,1,-9,0,4,8.216639763592271,8.420853670681765,0,0,0,-866.5695109570513,0,3,3,2019,25,11,38,37,1,11,0,14.72894526611775,14.72894526611775,0,0,0,0,14.5,1,0,1,0,0,44.93,55.1,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,528,446960.9586121161,205239.0332560792,149681.6291646263,735.3259398638629,1233.024182467034 -9336,11504,20848,-9,20847,-9,1,0,23,0,0,0,1,1,-9,1,3,8.693790872204245,8.699931994392299,0,0,0,-951.8496066103698,0,1,-9,2019,5,0,38,38,1,0,1,16.66630315492161,16.66630315492161,0,0,0,0,0,1,0,1,0,0,53.2,26.42,-9,-9,3.333333333333333,1,1,0,0,8,13,5,1,3725,-84105.66710061621,-72349.69019872737,0,0,1663.120372723814 -9337,11505,20849,20850,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.542239257743215,7.309899139780131,0,2,5,34.07406523217951,0,-9,-9,2019,13,2,24,40,1,2,0,7.661961461455021,7.661961461455021,0,0,0,0,0,0,0,0,0,0,43.96,62.06,51.67,60.18,5,1,1,0,0,8,1,3,0,864,185042.226043669,0,59699.78634609372,50993.95578434126,1412.661480184428 -9337,11505,20850,20849,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.419231865911143,7.461452025580638,0,2,-5,111.0902044237948,0,2,1,2019,4,0,28,40,1,0,0,6.833995924608547,6.833995924608547,0,0,0,0,0,0,0,0,0,0,51.67,60.18,43.96,62.06,8.333333333333334,1,1,0,0,5,1,3,0,864,185042.226043669,0,59699.78634609372,50993.95578434126,1412.661480184428 -9338,11506,20851,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.855740690939641,6.834393642096726,0,0,-1026.579761754173,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.111299439082345,6.874666538593688,55.19,54.26,-9,-9,10,1,1,0,0,6,7,2,1,611,34876.86482250461,198882.4382313637,0,0,2143.607497947238 -9339,11507,20852,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.30820532070352,7.429290862516425,4.718633597616452,0,0,-1015.621709425588,0,3,-9,2019,23,9,25,30,1,9,0,10.25119179795629,10.25119179795629,0,0,0,0,0,0,0,0,0,5.000200987967993,32.59,51.38,-9,-9,1.666666666666667,1,1,0,1,11,11,3,1,192,137163.3043580125,0,69538.7395336966,0,774.4564920315031 -9339,11508,20853,-9,20852,-9,1,0,29,0,0,0,2,2,-9,0,1,6.694261464576339,6.941472188325012,0,0,0,-1001.502074970765,0,2,2,2019,12,0,32,22,1,0,1,3.530925598474381,3.530925598474381,0,0,0,0,0,0,0,0,0,0,43.42,36.06,-9,-9,5,1,1,0,1,8,11,2,1,672,-137948.3060239765,0,0,0,190.4434133418946 -9339,11509,20854,-9,20852,-9,1,0,24,0,0,0,2,2,-9,0,3,7.910080275372038,8.10959701581443,0,0,0,-1135.744450681972,0,2,2,2019,12,0,60,52,1,0,1,5.507832519806479,5.507832519806479,0,0,0,0,0,0,0,0,0,0,43.02,36.98,-9,-9,5,1,1,0,0,5,11,4,1,1050,-393096.2499505875,26586.71775830271,0,0,1378.106918480655 -9340,11510,20855,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.599652095239762,9.695691310890416,0,0,0,-909.6231508134673,0,3,1,2019,8,0,39,40,1,0,0,44.10838891463342,44.10838891463342,0,0,0,0,0,1,1,0,.483426906586037,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,708,1095496.384646183,803857.3188241947,311843.9368620684,22819.35540337097,3828.535692068529 -9341,11511,20856,20857,-9,-9,1,1,64,0,1,0,2,2,-9,0,5,8.052177976583453,8.037327577344263,0,6,3,12.17962312911929,0,3,-9,2019,9,1,37,40,1,1,0,8.513678577915329,8.513678577915329,0,0,0,0,0,1,1,0,2.215748028253959,0,53.88,52.33,58.32,50.22,10,1,1,0,0,7,4,4,0,2000.5,253197.3476537744,124442.7598015403,126787.6914833201,0,2795.819480509695 -9341,11511,20857,20856,-9,-9,1,0,61,0,1,0,2,2,-9,0,3,8.344496647478165,8.104869462973721,0,6,-3,-101.4350228768023,0,-9,-9,2019,6,0,47,40,1,0,0,7.401967255326791,7.401967255326791,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.88,52.33,6.666666666666667,1,1,0,0,7,4,4,0,2000.5,253197.3476537744,124442.7598015403,126787.6914833201,0,2795.819480509695 -9341,11512,20858,-9,20857,20856,1,1,35,0,1,0,2,2,-9,0,5,8.155731541178534,8.0389648411571,0,0,0,-1099.454476119488,0,2,2,2019,8,1,36,36,1,1,1,10.26456108928009,10.26456108928009,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,188,-167941.9425793081,-51177.42237926107,1136.058141827205,23905.82529156556,1163.045712703467 -9341,11513,20859,-9,20857,20856,1,1,26,0,1,0,2,2,-9,0,4,7.960102109989743,7.711445588764267,0,0,0,-967.4068718705278,0,2,2,2019,8,0,39,37,1,0,1,7.306453000387661,7.306453000387661,0,0,0,0,0,1,1,0,2.387570398930637,0,35.65,58.56,-9,-9,6.666666666666667,1,1,0,0,8,4,4,0,418,-20960.35623104298,0,58751.71371022036,104171.252560006,898.9195114952813 -9341,11514,20860,-9,20857,20856,1,0,22,0,1,0,2,2,-9,0,3,0,4.900704514776887,5.187118428749514,0,0,-1103.975272695605,0,2,2,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,5.157705801897156,0,54.78,37.14,-9,-9,5,1,1,0,0,1,4,2,0,1104.5,24408.66659592222,0,0,0,450.9719518341618 -9341,11514,20861,-9,20860,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.1813485616165,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1104.5,24408.66659592222,0,0,0,450.9719518341618 -9342,11515,20862,20863,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.5,33.16,59.87,37.67,8.333333333333334,1,1,0,0,0,5,1,1,377.5,-114516.3396309344,0,0,0,595.7151089187344 -9342,11515,20863,20862,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.87,37.67,45.5,33.16,10,1,1,0,0,0,5,1,1,377.5,-114516.3396309344,0,0,0,595.7151089187344 -9343,11516,20864,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,8.154014278370662,7.51262315772196,0,0,-1092.69033022172,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.698149407624542,61.02,42.1,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,890,1110708.523116468,222377.1532516668,746469.6310454762,0,2259.772065650088 -9344,11517,20865,20867,-9,-9,1,0,46,0,2,0,2,2,-9,1,3,0,0,0,8,2,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,46.08,57.2,48.26,22.57,6.666666666666667,1,1,1,0,0,4,1,0,719.2,114298.4417754483,0,0,0,1361.562685666415 -9344,11517,20866,-9,20865,20867,1,0,17,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1043.19107001519,-9,2,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,46.25,-9,-9,10,1,1,0,0,0,4,1,0,719.2,114298.4417754483,0,0,0,1361.562685666415 -9344,11517,20867,20865,-9,-9,1,1,44,0,2,0,3,3,-9,1,2,0,0,0,8,-2,0,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.26,22.57,46.08,57.2,3.333333333333333,1,1,0,1,0,4,1,0,719.2,114298.4417754483,0,0,0,1361.562685666415 -9344,11517,20868,-9,20865,20867,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.397963699302,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,719.2,114298.4417754483,0,0,0,1361.562685666415 -9344,11517,20869,-9,20865,20867,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-934.6549185313596,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,1,0,719.2,114298.4417754483,0,0,0,1361.562685666415 -9344,11518,20870,-9,20865,20867,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-993.8332207211121,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,2032,0,0,0,0,0 -9345,11519,20871,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.052018793305891,8.084839533752945,0,0,0,-979.361727045831,0,2,2,2019,7,0,22,22,1,0,0,15.61858379287782,15.61858379287782,0,0,0,0,0,0,0,0,5.401514032781888,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,480,313463.3309224761,119995.2251591111,64105.76759209196,0,1584.269527150953 -9346,11520,20872,20873,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.582453474656983,8.565110964208715,5.997371446400791,7,-2,20.05716786222802,0,1,2,2019,13,1,24,2,1,1,0,24.67671320741368,24.67671320741368,0,0,0,0,0,0,0,0,9.038766247230891,0,39.89,61.68,50,49,8.333333333333334,1,1,0,0,5,6,5,1,590,1522315.159620976,1100987.204123284,273142.1564570632,18350.31307178565,11457.04549351795 -9346,11520,20873,20872,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.29548575224964,9.38076447013515,7.968124376740722,7,2,-15.08961301870344,0,2,2,2019,10,0,60,40,1,1,0,22.73564513569294,22.73564513569294,0,0,0,0,0,0,0,0,0,8.295173462375667,50,49,39.89,61.68,7,1,1,0,0,1,6,5,1,590,1522315.159620976,1100987.204123284,273142.1564570632,18350.31307178565,11457.04549351795 -9346,11521,20874,-9,20872,20873,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1015.505682985013,-9,1,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,2112,0,0,0,0,0 -9347,11522,20875,-9,20878,20877,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1076.477304093688,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,565.5,770303.9881651,285837.2653318376,479773.6123355581,93109.50887961776,5263.590248931283 -9347,11522,20876,-9,20878,20877,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-979.8409249480801,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,565.5,770303.9881651,285837.2653318376,479773.6123355581,93109.50887961776,5263.590248931283 -9347,11522,20877,20878,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.965599902434462,8.599192375383639,0,18,-5,118.2787230295885,0,2,3,2019,12,0,50,50,1,0,0,17.27112803224225,17.27112803224225,0,0,0,0,0,1,1,0,0,0,55.36,51.57,54.37,54.8,6.666666666666667,1,1,0,0,12,4,5,1,565.5,770303.9881651,285837.2653318376,479773.6123355581,93109.50887961776,5263.590248931283 -9347,11522,20878,20877,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.543737560417098,8.272698216711067,0,18,5,-37.15994812800952,-9,2,2,2019,7,0,38,0,1,0,0,14.47054983200421,14.47054983200421,0,0,0,0,0,1,1,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,12,4,5,1,565.5,770303.9881651,285837.2653318376,479773.6123355581,93109.50887961776,5263.590248931283 -9348,11523,20879,20880,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,9.159274588772577,8.910329526096138,0,24,6,-41.1377937538972,0,3,3,2019,12,0,48,43,1,0,0,17.49252304916807,17.49252304916807,0,0,0,0,0,1,1,0,0,0,38.28,57.07,49,55,8.333333333333334,2,3,0,0,10,8,3,1,895,229734.9543705251,318388.8578578123,0,0,2904.866661969832 -9348,11523,20880,20879,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,7,-6,-29.20839637694691,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,38.28,57.07,8,2,3,0,0,0,8,3,1,895,229734.9543705251,318388.8578578123,0,0,2904.866661969832 -9348,11523,20881,-9,20880,20879,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1064.293686101587,-9,2,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,65.37,-9,-9,3.333333333333333,2,3,0,0,0,8,3,1,895,229734.9543705251,318388.8578578123,0,0,2904.866661969832 -9348,11523,20882,-9,20880,20879,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.4542201954411,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,895,229734.9543705251,318388.8578578123,0,0,2904.866661969832 -9348,11523,20883,-9,20880,20879,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.2390910229925,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,895,229734.9543705251,318388.8578578123,0,0,2904.866661969832 -9348,11524,20884,-9,20880,20879,1,0,20,0,2,0,1,1,1,0,4,7.740939952605256,7.930188909206796,0,0,0,-1052.115472870002,-9,2,3,2019,11,0,53,0,1,2,1,4.048220387629882,4.048220387629882,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,3,1,1306,98862.7392824867,66495.80858355312,0,0,1173.202875183209 -9349,11525,20885,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.821018927588293,9.104723409347281,0,0,0,-1009.379808706154,0,3,3,2019,24,10,44,44,1,10,0,22.69872454169746,22.69872454169746,0,0,0,0,0,0,0,0,0,0,48.01,42.01,-9,-9,6.666666666666667,2,3,0,0,8,4,5,0,1373,554991.8269125591,165924.129022855,342647.57081035,92568.75440017419,2967.402101081421 -9350,11526,20886,20887,-9,-9,1,1,58,0,2,0,1,1,-9,0,3,9.58999361558533,9.478742659275762,0,11,15,-112.5784141700947,0,-9,-9,2019,9,0,50,45,1,0,0,31.47545970231286,31.47545970231286,0,0,0,0,0,0,0,0,5.112591759279422,0,54.37,54.8,42.39,50.87,6.666666666666667,1,1,0,0,12,9,5,1,424,14820.53503392883,0,0,0,5178.761677922246 -9350,11526,20887,20886,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.761305213219721,7.776310467783706,0,23,-15,-3.447044625508957,0,2,1,2019,13,1,12,12,1,1,0,20.49304014647587,20.49304014647587,0,0,0,0,0,0,0,0,0,0,42.39,50.87,54.37,54.8,6.666666666666667,1,1,0,0,11,9,5,1,424,14820.53503392883,0,0,0,5178.761677922246 -9351,11527,20888,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.155508534882206,7.115386463399362,0,0,-1062.666298378812,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.264347101101639,7.357873618713576,59.26,37.61,-9,-9,10,1,1,0,0,3,12,2,1,402,517167.4177827276,203708.8276649606,91901.16021179654,0,936.6553801893632 -9352,11528,20889,20891,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.381948992026244,8.552984488817549,0,10,-3,-46.08009935989998,0,2,2,2019,13,1,38,37,1,1,0,13.72951998446968,13.72951998446968,0,0,0,0,0,1,1,0,0,0,47.01,58,46,51,8.333333333333334,1,1,0,0,11,13,3,1,738,-8676.101796132487,-34002.94791490405,0,0,2479.487993572739 -9352,11528,20890,-9,20891,20889,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.53681894815,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,738,-8676.101796132487,-34002.94791490405,0,0,2479.487993572739 -9352,11528,20891,20889,-9,-9,1,0,46,0,2,0,3,3,-9,1,3,0,0,0,10,3,-85.92650412411545,0,2,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,46,51,47.01,58,7,1,1,0,0,5,13,3,1,738,-8676.101796132487,-34002.94791490405,0,0,2479.487993572739 -9352,11528,20892,-9,20891,20889,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.38031333911,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,738,-8676.101796132487,-34002.94791490405,0,0,2479.487993572739 -9353,11529,20893,-9,20894,20895,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.627771531813,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,768.5,249065.2991062385,166034.85579433,446593.4272622018,225333.550478337,3339.524085971017 -9353,11529,20894,20895,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.581401352718165,7.954457807265038,0,6,1,243.4889341458007,0,-9,-9,2019,12,3,17,23,1,3,0,14.60513562883564,14.60513562883564,0,0,0,0,0,1,1,0,2.825143250808807,0,54.2,57.49,45.56,60.26,8.333333333333334,1,1,0,0,8,9,4,1,768.5,249065.2991062385,166034.85579433,446593.4272622018,225333.550478337,3339.524085971017 -9353,11529,20895,20894,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.791515671363131,8.45824762425198,0,6,-1,-84.31356510531164,0,-9,-9,2019,22,8,36,46,1,8,0,21.31488263881653,21.31488263881653,0,0,0,0,0,1,1,0,4.941792379237111,0,45.56,60.26,54.2,57.49,8.333333333333334,1,1,0,0,12,9,4,1,768.5,249065.2991062385,166034.85579433,446593.4272622018,225333.550478337,3339.524085971017 -9353,11529,20896,-9,20894,20895,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.7237103228406,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,768.5,249065.2991062385,166034.85579433,446593.4272622018,225333.550478337,3339.524085971017 -9354,11530,20897,20898,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.71598268978522,6.787338738165068,64,1,132.2029564046367,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8839480725700282,6.996821544312985,53.78,56.44,56.65,41.3,10,1,1,0,0,0,4,2,1,287,317636.5044314481,175019.4250564614,137824.7131023124,0,1447.613879323983 -9354,11530,20898,20897,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.496366520613642,5.274436052491403,64,-1,11.13582841222982,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.698524548561657,5.001356045025886,56.65,41.3,53.78,56.44,6.666666666666667,1,1,0,0,0,4,2,1,287,317636.5044314481,175019.4250564614,137824.7131023124,0,1447.613879323983 -9355,11531,20899,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.675180840818693,4.498945668471141,0,0,-1024.539913591871,0,3,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.368455837047692,51,46,-9,-9,7,1,1,0,1,0,10,2,0,1769,69229.7375345265,0,0,0,809.8967347151083 -9356,11532,20900,-9,20901,20902,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.2754253558362,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,643.6666666666666,-163696.0658775607,-11948.21042250144,0,0,3108.732152601873 -9356,11532,20901,20902,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.6528861764295,8.058150848152483,0,7,-5,-51.98564017615666,0,3,3,2019,8,0,35,28,1,0,0,6.166144976934672,6.166144976934672,0,0,0,0,2,1,1,0,0,0,52.37,56.93,52.48,54.33,8.333333333333334,1,1,0,0,9,11,3,1,643.6666666666666,-163696.0658775607,-11948.21042250144,0,0,3108.732152601873 -9356,11532,20902,20901,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.263789781308327,8.374053455280274,0,7,5,25.15405817177635,0,2,2,2019,4,0,50,38,1,0,0,9.224218018080549,9.224218018080549,0,0,0,0,0,1,1,0,0,0,52.48,54.33,52.37,56.93,8.333333333333334,1,1,0,0,9,11,3,1,643.6666666666666,-163696.0658775607,-11948.21042250144,0,0,3108.732152601873 -9357,11533,20903,20904,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.134126831325991,6.882650072312496,0,36,-5,42.58690099151352,0,3,2,2019,18,6,19,19,1,6,0,6.791972329056665,6.791972329056665,0,0,0,0,14.5,1,1,0,0,0,23.36,61.38,51.64,57.24,8.333333333333334,2,3,0,0,10,2,2,1,1121.5,282696.9661296115,240219.1612727864,95643.47653585694,0,-1894.420656208303 -9357,11533,20904,20903,20907,20908,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,36,5,100.9573874996607,0,3,2,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,23.36,61.38,8.333333333333334,2,3,0,0,10,2,2,1,1121.5,282696.9661296115,240219.1612727864,95643.47653585694,0,-1894.420656208303 -9357,11534,20905,-9,20903,20904,1,1,29,0,0,0,2,2,-9,0,3,8.109363259021857,8.077751489762974,0,0,0,-1198.3656166986,0,2,2,2019,12,0,20,37,1,0,1,14.86099754277197,14.86099754277197,0,0,0,0,7,1,1,0,0,0,43.47,50.15,-9,-9,8.333333333333334,2,3,0,1,7,2,4,1,433,43092.63709840443,103222.0621006694,0,0,1292.093728300496 -9357,11535,20906,-9,20903,20904,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1031.642300976283,1,2,1,2019,11,0,0,35,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,2,1,1,91,34505.91765163319,0,0,0,0 -9357,11536,20907,20908,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,5.373444591600181,13.7128985676702,57.35996462304814,0,1,1,0,0,0,52,46,53.63,43.21,8,2,3,0,0,0,2,1,1,783,59985.84043813977,-66381.02769386288,119362.5780803955,0,732.7592877187819 -9357,11536,20908,20907,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,5,-1,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,76.25545941059006,0,0,1,1,0,0,0,53.63,43.21,52,46,8.333333333333334,2,3,0,0,0,2,1,1,783,59985.84043813977,-66381.02769386288,119362.5780803955,0,732.7592877187819 -9358,11537,20909,-9,20912,20910,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-859.8755351322141,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,4,1,751.4,133596.7932714507,-21881.98428585713,162405.7550653908,145431.4929083659,2805.806301155954 -9358,11537,20910,20912,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,9.037815215271491,8.884941015167074,0,5,4,31.04642704468841,0,3,3,2019,10,0,36,36,1,1,0,23.19676363009164,23.19676363009164,0,0,0,0,0,1,1,0,2.34187348526491,0,51,56,43.04,50.37,7,1,1,0,0,1,5,4,1,751.4,133596.7932714507,-21881.98428585713,162405.7550653908,145431.4929083659,2805.806301155954 -9358,11537,20911,-9,20912,20910,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.180131986298,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,5,4,1,751.4,133596.7932714507,-21881.98428585713,162405.7550653908,145431.4929083659,2805.806301155954 -9358,11537,20912,20910,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,5,-4,-54.20186981421527,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.04,50.37,51,56,8.333333333333334,1,1,0,0,6,5,4,1,751.4,133596.7932714507,-21881.98428585713,162405.7550653908,145431.4929083659,2805.806301155954 -9358,11537,20913,-9,20912,20910,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.1613035100103,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,5,4,1,751.4,133596.7932714507,-21881.98428585713,162405.7550653908,145431.4929083659,2805.806301155954 -9359,11538,20914,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1107.361783989584,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,2,2,1,356,3187.24929666943,0,0,0,-2309.615278994922 -9360,11539,20915,20917,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.758481284352195,8.521196733082609,0,9,-4,142.1999520731585,0,-9,-9,2019,9,0,35,40,1,1,0,24.92535436181011,24.92535436181011,0,0,0,0,0,1,1,0,0,0,51,56,57.06,57.76,7,1,1,0,0,1,10,4,1,515.5,1417270.996490228,912431.4522786697,414659.9305565915,145168.6282384165,3848.962050076297 -9360,11539,20916,-9,20917,20915,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.966851181963,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,515.5,1417270.996490228,912431.4522786697,414659.9305565915,145168.6282384165,3848.962050076297 -9360,11539,20917,20915,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,7.733298132167596,7.779511772795386,0,9,4,-36.82387601962854,0,2,3,2019,10,0,22,23,1,0,0,10.63038020759911,10.63038020759911,0,0,0,0,0,1,1,0,3.907889412198287,0,57.06,57.76,51,56,10,1,1,0,0,10,10,4,1,515.5,1417270.996490228,912431.4522786697,414659.9305565915,145168.6282384165,3848.962050076297 -9360,11539,20918,-9,20917,20915,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-969.9822618569402,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,515.5,1417270.996490228,912431.4522786697,414659.9305565915,145168.6282384165,3848.962050076297 -9361,11540,20919,20920,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,7.249209494169849,7.522953327874241,5.917710118246116,6,-2,53.04742115987589,0,3,3,2019,12,0,24,24,1,0,0,6.04554981467925,6.04554981467925,0,0,0,0,0,1,1,0,6.497173145543701,5.928615954006713,31.73,48.25,55.73,53.98,8.333333333333334,1,1,0,0,7,9,4,1,713.5,1915391.049000971,1111881.655026391,541955.6965588178,0,3892.269329310037 -9361,11540,20920,20919,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.343862592686369,8.636723794750703,6.642280846894099,6,2,86.94311214587495,0,2,2,2019,13,1,55,50,1,1,0,7.996419338766377,7.996419338766377,0,0,0,0,2,1,1,0,6.825052698271938,6.651724606571555,55.73,53.98,31.73,48.25,5,1,1,0,0,7,9,4,1,713.5,1915391.049000971,1111881.655026391,541955.6965588178,0,3892.269329310037 -9362,11541,20921,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.019552480564943,8.347497245360268,0,0,-1112.250759753805,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.140607412962877,8.159144034892057,54.37,54.8,-9,-9,5,1,1,0,0,0,8,4,1,540,1411084.132319997,517958.2049815409,802926.6282969079,0,2058.83581169388 -9363,11542,20922,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1012.696309652796,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.91,30.85,-9,-9,5,1,1,0,0,5,11,1,0,179,76585.72421291078,0,0,0,1390.940131172594 -9364,11543,20923,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.283857614001294,7.173505082851553,0,0,0,-1134.256520277918,0,3,3,2019,6,0,30,40,1,0,0,5.817171831794073,5.817171831794073,0,0,0,0,0,1,1,0,0,0,61.83,49.95,-9,-9,10,1,1,0,0,9,10,3,0,859,6210.373617125839,32659.87571624963,0,0,1889.889723172848 -9365,11544,20924,-9,20925,20926,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.395153608478,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,640.3333333333334,-7333.57553409989,50792.55532678138,0,0,1419.327525319437 -9365,11544,20925,20926,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,0,0,0,8,0,93.85721592437258,0,-9,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,50.11,24.73,5,2,3,0,0,0,2,3,1,640.3333333333334,-7333.57553409989,50792.55532678138,0,0,1419.327525319437 -9365,11544,20926,20925,-9,-9,1,1,45,0,1,0,2,2,-9,0,1,8.126925674254919,8.101073437593717,0,8,0,27.78463218157928,0,2,2,2019,19,7,37,37,1,7,0,11.08350296569042,11.08350296569042,0,0,0,0,0,1,1,0,0,0,50.11,24.73,46,50,1.666666666666667,2,3,0,1,9,2,3,1,640.3333333333334,-7333.57553409989,50792.55532678138,0,0,1419.327525319437 -9365,11545,20927,-9,20925,20926,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1101.545183603283,-9,2,2,2019,15,2,0,0,2,2,1,0,0,0,0,0,.0485471860395972,0,1,1,0,0,0,30.08,57.87,-9,-9,5,2,3,0,0,0,2,1,1,542,-118412.0716779929,0,0,0,-882.1636515599301 -9366,11546,20928,-9,20929,20930,1,1,2,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1004.020083360947,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,1,0,1227,590689.2934111658,0,250540.4560173274,0,1032.338569265943 -9366,11546,20929,20930,-9,-9,1,0,48,1,0,0,3,3,-9,0,4,0,0,0,8,-6,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,1,0,1227,590689.2934111658,0,250540.4560173274,0,1032.338569265943 -9366,11546,20930,20929,-9,-9,1,1,54,1,0,0,3,3,-9,1,4,0,0,0,35,6,0,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,53,54,50,54,8,2,3,0,0,0,8,1,0,1227,590689.2934111658,0,250540.4560173274,0,1032.338569265943 -9367,11547,20931,20932,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,6,-8,51.25605442734015,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.66,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,763,791504.9049747243,166636.6202086663,461782.0190990046,0,1658.643396966084 -9367,11547,20932,20931,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.577974284286818,7.45971088269918,6,8,64.76712111215812,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.628753533951512,7.083321500386529,57.16,56.15,47.66,52.33,8.333333333333334,1,1,0,0,0,11,2,1,763,791504.9049747243,166636.6202086663,461782.0190990046,0,1658.643396966084 -9368,11548,20933,20934,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,61.79201762420294,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,2,2,1,1109.5,69165.37890895098,94041.71432597103,61432.63798949517,0,706.0988804659353 -9368,11548,20934,20933,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.482503061088263,5.927260031173185,9,2,78.28327098421265,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,.5246258195051108,0,0,1,1,0,.6687628736318311,6.405519521877023,54,46,52,46,8,1,1,0,0,0,2,2,1,1109.5,69165.37890895098,94041.71432597103,61432.63798949517,0,706.0988804659353 -9369,11549,20935,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.84941291144522,6.676676597698878,0,0,-948.1083530569946,0,2,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.542696487830061,42.86,31.98,-9,-9,3.333333333333333,1,1,0,0,10,9,2,1,232,412139.6621955693,8498.982188860158,514665.9769434253,0,919.122167549497 -9370,11550,20936,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,7.320840829297363,7.410482966001807,0,0,-904.6198985911598,0,2,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.287083640081431,7.486120588441374,42.08,24.19,-9,-9,3.333333333333333,1,1,0,0,0,12,3,0,687,462799.1297778041,292369.3038129983,126334.0497324965,10234.55197844437,1831.831949236907 -9371,11551,20937,-9,20941,20939,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.7514731360909,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,979.2,938619.4496587599,782731.5631335601,264467.4284971546,123728.8953632993,3058.495305746282 -9371,11551,20938,-9,20941,20939,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.879945979465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,979.2,938619.4496587599,782731.5631335601,264467.4284971546,123728.8953632993,3058.495305746282 -9371,11551,20939,20941,-9,-9,1,1,31,1,3,0,2,2,-9,0,4,8.593007557936716,8.14324799765823,0,9,1,-46.29506138164503,0,3,3,2019,6,0,45,42,1,0,0,13.97865938804302,13.97865938804302,0,0,0,0,0,1,1,0,6.696038902681082,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,979.2,938619.4496587599,782731.5631335601,264467.4284971546,123728.8953632993,3058.495305746282 -9371,11551,20940,-9,20941,20939,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.124366019354,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,979.2,938619.4496587599,782731.5631335601,264467.4284971546,123728.8953632993,3058.495305746282 -9371,11551,20941,20939,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,7.626314798961471,7.531243321576689,0,9,-1,127.5363065106187,0,3,2,2019,7,0,22,37,1,0,0,8.698893326455346,8.698893326455346,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,11,4,1,979.2,938619.4496587599,782731.5631335601,264467.4284971546,123728.8953632993,3058.495305746282 -9372,11552,20942,20943,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,9.346449097447138,8.964958839786632,5.473369017559358,27,5,-64.44299676827583,0,-9,-9,2019,7,0,35,37,1,0,0,31.59971792521147,31.59971792521147,0,0,0,0,0,0,0,0,6.202289303523132,5.630601985354146,61.01,50.48,58.32,50.22,10,1,1,0,0,10,4,5,1,519,1403965.286575131,987368.4715361497,455349.1916721864,19945.14883330878,4050.175685131133 -9372,11552,20943,20942,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.628959007595824,7.588747180198321,0,26,-5,18.32383713145857,0,2,2,2019,9,0,29,34,1,0,0,7.734455881159287,7.734455881159287,0,0,0,0,14.5,0,0,0,3.101832504419376,0,58.32,50.22,61.01,50.48,8.333333333333334,1,1,0,0,11,4,5,1,519,1403965.286575131,987368.4715361497,455349.1916721864,19945.14883330878,4050.175685131133 -9373,11553,20944,20945,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.442019469737886,8.334650514029084,0,12,-1,15.83863697827334,0,2,3,2019,14,2,52,60,1,2,0,11.1825714642291,11.1825714642291,0,0,0,0,0,0,0,0,3.846170015152003,0,40.07,54.57,46.39,60.99,8.333333333333334,4,5,0,0,13,8,5,1,1661.5,1220461.776099339,157499.8452205366,711508.6281766607,0,3365.335691605359 -9373,11553,20945,20944,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.353761925719442,7.475934744753561,0,12,1,42.19903006852638,0,2,3,2019,11,0,52,60,1,0,0,4.676945211097778,4.676945211097778,0,0,0,0,0,0,0,0,0,0,46.39,60.99,40.07,54.57,3.333333333333333,4,2,0,0,9,8,5,1,1661.5,1220461.776099339,157499.8452205366,711508.6281766607,0,3365.335691605359 -9374,11554,20946,20948,-9,-9,1,1,32,1,3,0,1,1,-9,0,4,8.598869560951886,8.519130417838388,0,6,2,-32.73066537875496,0,-9,-9,2019,6,0,37,37,1,0,0,13.78699959466968,13.78699959466968,0,0,0,0,71.5,1,1,0,0,0,61.12,46.03,50.47,36.89,8.333333333333334,4,1,0,0,6,13,4,0,794,97833.02384670274,107738.5260021204,223320.9226352687,171537.1419055951,3316.030308257038 -9374,11554,20947,-9,20948,20946,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.692035915033,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,794,97833.02384670274,107738.5260021204,223320.9226352687,171537.1419055951,3316.030308257038 -9374,11554,20948,20946,-9,-9,1,0,30,1,3,0,1,1,-9,1,2,7.889864938905059,7.661804270114802,0,6,-2,104.6278771484758,0,3,3,2019,7,0,37,37,1,0,0,8.704134169929961,8.704134169929961,0,0,0,5.205410382466971,2,1,1,0,0,0,50.47,36.89,61.12,46.03,8.333333333333334,1,1,0,0,6,13,4,0,794,97833.02384670274,107738.5260021204,223320.9226352687,171537.1419055951,3316.030308257038 -9374,11554,20949,-9,20948,20946,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.5914179246977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,794,97833.02384670274,107738.5260021204,223320.9226352687,171537.1419055951,3316.030308257038 -9374,11554,20950,-9,20948,20946,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-858.5285954544597,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,0,794,97833.02384670274,107738.5260021204,223320.9226352687,171537.1419055951,3316.030308257038 -9375,11555,20951,20952,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,47,0,-8.089767600055611,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.12,54.8,10,1,1,0,0,3,4,2,1,666.5,210459.0770965861,-6083.523088675571,0,0,1889.738581617366 -9375,11555,20952,20951,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.898878076710067,6.5306955686299,3,0,-32.35244862325639,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.0369769679447333,6.649741972500003,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,4,2,1,666.5,210459.0770965861,-6083.523088675571,0,0,1889.738581617366 -9376,11556,20953,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.080344231158401,7.183818607672654,0,0,-1053.646192174305,0,-9,-9,2019,13,0,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.669239368314862,7.207344535108001,61.04,28.88,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,167,188514.0883878361,94877.07674641249,0,0,1921.001880685293 -9377,11557,20954,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.95597972367724,7.817427843072895,0,0,0,-1039.457119921823,0,2,2,2019,9,0,45,40,1,0,0,7.243576331955652,7.243576331955652,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,414,150256.5991387623,231532.9642153346,150773.4736507638,128346.1957566012,902.2464149661436 -9378,11558,20955,20956,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.722569250490869,8.560611743591098,0,3,3,32.38572062209001,0,2,2,2019,12,0,50,60,1,0,0,15.58759125780738,15.58759125780738,0,0,0,0,0,0,0,0,7.396073935186807,0,49.06,58.64,54.2,57.49,6.666666666666667,1,1,0,0,9,9,5,1,614.5,1231754.762271429,628815.2456133217,354321.2233539009,-7135.022866191403,5039.198434780301 -9378,11558,20956,20955,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.428523720243733,8.314821637828862,0,3,-3,69.29706552658195,0,2,2,2019,11,0,25,40,1,2,0,18.38105259004706,18.38105259004706,0,0,0,0,0,0,0,0,.0346968172228191,0,54.2,57.49,49.06,58.64,10,1,1,0,0,6,9,5,1,614.5,1231754.762271429,628815.2456133217,354321.2233539009,-7135.022866191403,5039.198434780301 -9379,11559,20957,20958,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.083827486795376,7.194111235867731,49,3,-51.19490276079541,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.719283805309789,7.3390346306034,61.43,43.34,57.16,56.15,6.666666666666667,1,1,0,0,4,11,2,1,594,870054.6773339766,239883.7060873446,269185.9985301311,0,2511.982647808168 -9379,11559,20958,20957,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.14640585990174,5.237925700239392,49,-3,-26.64023737598528,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.26980375160431,5.180577570568486,57.16,56.15,61.43,43.34,8.333333333333334,1,1,0,0,0,11,2,1,594,870054.6773339766,239883.7060873446,269185.9985301311,0,2511.982647808168 -9380,11560,20959,20962,-9,-9,1,0,55,0,1,0,1,1,-9,0,4,0,0,0,7,0,107.3026254641999,0,2,2,2019,6,0,0,46,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,58.72,51.29,34.88,56.96,8.333333333333334,1,1,0,0,4,8,5,1,315.75,776252.7402396612,569027.6572560692,697979.6570880805,356028.3682698648,6277.180969524127 -9380,11560,20960,-9,20959,20962,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-949.2326109439796,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,5,1,315.75,776252.7402396612,569027.6572560692,697979.6570880805,356028.3682698648,6277.180969524127 -9380,11560,20961,-9,20959,20962,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-980.358637597753,-9,1,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.7518409978732822,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,315.75,776252.7402396612,569027.6572560692,697979.6570880805,356028.3682698648,6277.180969524127 -9380,11560,20962,20959,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,9.802072038943518,9.846930565060688,0,7,0,-171.8820141635801,0,2,3,2019,14,2,90,0,1,2,0,18.45414582294591,18.45414582294591,0,0,0,0,0,0,0,0,0,0,34.88,56.96,58.72,51.29,3.333333333333333,1,1,0,0,5,8,5,1,315.75,776252.7402396612,569027.6572560692,697979.6570880805,356028.3682698648,6277.180969524127 -9381,11561,20963,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,9.954160624154868,10.00625211851343,8.382302826144221,0,0,-986.8609410542294,0,1,1,2019,14,1,3,42,1,1,0,676.6001643306511,676.6001643306511,0,0,0,0,0,0,0,0,5.889416895357498,8.590472108956302,62.09,43.49,-9,-9,8.333333333333334,4,2,0,0,8,2,5,1,424,337128.7621124693,213973.5440312886,145956.0668691476,133787.7643691013,12627.71540129499 -9381,11562,20964,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.770095935957517,9.86533096077717,0,0,0,-996.8067173747738,0,-9,-9,2019,8,0,50,50,1,0,0,32.51760733448933,32.51760733448933,0,0,0,0,0,0,0,0,7.083402480396513,0,59.29,49.68,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,877,818321.9523274946,419041.2877211628,195134.4886966252,0,28065.84746173478 -9382,11563,20965,-9,-9,-9,1,0,63,0,0,0,1,1,-9,1,1,0,0,0,0,0,-996.5509882739474,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,23.61,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,222,1968641.112464241,375077.5066242636,1605670.939023251,0,1672.304385804251 -9382,11564,20966,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-967.3028794053771,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,6.666666666666667,3,4,0,1,0,8,2,0,707,0,0,0,0,643.6035333158802 -9383,11565,20967,20968,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.594371555389759,7.375636180896238,0,4,5,-113.8003109452311,0,2,2,2019,13,2,36,36,1,2,0,5.29092912914047,5.29092912914047,0,0,0,0,0,1,1,0,0,0,37.17,50.6,17.92,58.75,6.666666666666667,1,1,0,0,9,10,2,0,1357.5,1036489.565042161,470601.3917092914,344452.5280099971,0,1439.165395751349 -9383,11565,20968,20967,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,4,-5,22.72525113878677,0,2,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,17.92,58.75,37.17,50.6,1.666666666666667,1,1,0,1,4,10,2,0,1357.5,1036489.565042161,470601.3917092914,344452.5280099971,0,1439.165395751349 -9384,11566,20969,20970,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.301419836550643,8.178652864739727,0,3,2,-7.039311946310272,0,-9,-9,2019,12,1,32,38,1,1,0,16.44335644656621,16.44335644656621,0,0,0,0,0,0,0,0,4.609977056254711,0,42.3,57.54,30.83,62.98,6.666666666666667,1,1,0,0,4,9,4,0,803.5,66129.76942071674,-10590.64789073213,0,0,3233.616081166675 -9384,11566,20970,20969,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.061645649053936,7.421931123939672,0,3,-2,57.32450820357232,0,-9,-9,2019,14,2,17,39,1,2,0,11.06194488818319,11.06194488818319,0,0,0,0,0,0,0,0,0,0,30.83,62.98,42.3,57.54,6.666666666666667,1,1,0,0,3,9,4,0,803.5,66129.76942071674,-10590.64789073213,0,0,3233.616081166675 -9385,11567,20971,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1041.709273160743,0,-9,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,0,1185,-47047.15588822204,0,0,0,2029.114591796576 -9385,11568,20972,-9,20971,-9,1,1,49,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.177736336096,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,2.603842826234249,74.5,1,1,0,0,0,34.08,47.75,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,415,-181602.8646457369,4007.346792895797,0,0,-258.5811643683674 -9386,11569,20973,20974,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.932076188746676,8.138958776381223,0,1,3,47.82830155949804,-9,2,2,2019,10,0,35,0,1,0,0,10.77119881481793,10.77119881481793,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,12,7,5,1,742.5,67489.97054878176,80585.19025419951,0,0,8056.143071135313 -9386,11569,20974,20973,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,9.989871109512437,10.16643333490565,4.613456342615118,1,-3,-12.84905451596443,-9,2,2,2019,10,3,55,0,1,3,0,59.65876307990421,59.65876307990421,0,0,0,0,0,0,0,0,5.410693774237489,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,742.5,67489.97054878176,80585.19025419951,0,0,8056.143071135313 -9387,11570,20975,-9,20977,20976,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1073.38240469549,-9,3,2,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.55,54.06,-9,-9,5,2,3,0,0,0,8,4,1,516,661309.4840182093,409446.9085606653,179767.5814466492,0,3475.278758978924 -9387,11570,20976,20977,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.781113547057934,8.456396555109558,0,38,3,15.18373110841693,0,3,3,2019,12,0,20,20,1,0,0,31.21148738913475,31.21148738913475,0,0,0,0,0,1,1,0,0,0,35.9,28.54,51,54,3.333333333333333,2,3,0,1,3,8,4,1,516,661309.4840182093,409446.9085606653,179767.5814466492,0,3475.278758978924 -9387,11570,20977,20976,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,28,-3,30.71511401840457,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,35.9,28.54,8,2,3,0,0,0,8,4,1,516,661309.4840182093,409446.9085606653,179767.5814466492,0,3475.278758978924 -9387,11571,20978,20979,20977,20976,1,0,27,0,0,0,2,2,-9,0,3,7.761241151659727,8.078889774629161,0,4,0,-48.83057369258276,0,3,2,2019,22,10,30,30,1,10,0,8.334462707432712,8.334462707432712,0,0,0,0,0,1,1,0,0,0,32.86,57.22,49.24,42.06,0,2,3,0,0,3,8,3,1,479,147469.4018687105,64282.48177992359,0,0,1609.550930184686 -9387,11571,20979,20978,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.260936546676391,7.716983954442454,0,4,0,120.1926277856817,-9,-9,-9,2019,7,2,41,0,1,2,0,5.303490915382428,5.303490915382428,0,0,0,0,0,1,1,0,.0531374176645392,0,49.24,42.06,32.86,57.22,10,2,3,0,0,3,8,3,1,479,147469.4018687105,64282.48177992359,0,0,1609.550930184686 -9388,11572,20980,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.817290001307258,7.549824566856441,0,0,0,-1050.128929413301,0,2,2,2019,15,4,30,38,1,4,0,10.20711892825437,10.20711892825437,0,0,0,0,0,0,0,0,1.549779806754014,0,35.81,55.09,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,81,-69075.80868387665,0,0,0,1134.380454579526 -9389,11573,20981,20982,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.613037328345892,7.659734920392412,58,5,-99.14273289692714,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.959658875919045,8.362420085368774,59.22,24.29,54.04,36.4,10,1,1,0,0,0,7,3,1,411.5,787256.582428419,424237.8136529733,515915.9361901584,0,2244.870544428982 -9389,11573,20982,20981,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-5,32.21059412388585,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.036061161799282,0,54.04,36.4,59.22,24.29,1.666666666666667,1,1,0,0,11,7,3,1,411.5,787256.582428419,424237.8136529733,515915.9361901584,0,2244.870544428982 -9390,11574,20983,20986,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,16,0,46.96214014142811,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,2,1,1,0,8.19070341941851,0,57.16,56.15,58.85,43.28,8.333333333333334,2,3,0,0,7,9,4,1,1246.25,131998.7306720281,58539.58840488728,0,0,3880.297716119242 -9390,11574,20984,-9,20983,20986,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.891751103905,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,1246.25,131998.7306720281,58539.58840488728,0,0,3880.297716119242 -9390,11574,20985,-9,20983,20986,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.917022403456,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,1246.25,131998.7306720281,58539.58840488728,0,0,3880.297716119242 -9390,11574,20986,20983,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.544214993296031,8.675850948658729,0,16,0,-85.19667993239828,0,2,2,2019,6,0,45,48,1,0,0,17.43706423271527,17.43706423271527,0,0,0,0,0,1,1,0,0,0,58.85,43.28,57.16,56.15,8.333333333333334,2,3,0,0,7,9,4,1,1246.25,131998.7306720281,58539.58840488728,0,0,3880.297716119242 -9391,11575,20987,20988,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,3,10,0,0,1,2,2019,10,0,0,0,4,1,0,0,0,0,0,21.88647926167632,0,0,1,1,0,0,0,53,47,50,47,7,3,4,0,0,0,8,1,0,2264.5,141958.0974410512,0,148744.157763984,0,1033.36371511146 -9391,11575,20988,20987,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,3,-10,0,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,3,4,0,0,0,8,1,0,2264.5,141958.0974410512,0,148744.157763984,0,1033.36371511146 -9391,11576,20989,-9,20988,20987,1,1,25,0,0,0,2,2,-9,0,4,7.891723471209734,7.93225831720535,0,0,0,-1059.888398619253,0,2,2,2019,18,6,40,40,1,6,0,7.831938907541582,7.831938907541582,0,0,0,0,0,1,1,0,0,0,35.03,51.4,-9,-9,5,3,4,0,0,5,8,3,0,754,-280147.5845685627,0,0,0,1038.735935149803 -9392,11577,20990,20991,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.355225080904353,5.432150219918086,51,3,-23.80355431331838,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.535668130446367,5.217159589713184,57.16,56.15,51.64,37.25,8.333333333333334,1,1,0,0,6,12,2,1,235.5,111803.2595910497,4519.138069682758,101173.5438946002,0,2685.08566604021 -9392,11577,20991,20990,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,51,-3,-.0016277720749294,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.642170254032515,0,51.64,37.25,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,235.5,111803.2595910497,4519.138069682758,101173.5438946002,0,2685.08566604021 -9393,11578,20992,20993,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.27446295521221,8.21690592266066,0,8,-6,17.93977740828034,-9,-9,-9,2019,11,0,38,0,1,1,0,11.1133267021452,11.1133267021452,0,0,0,0,0,0,0,0,0,0,49,50,54.37,54.8,7,1,1,0,0,1,6,4,0,567,448877.2645774552,352802.2794401712,344834.7396217618,53545.94607405546,2242.966453744566 -9393,11578,20993,20992,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.505890346370522,7.528835256907263,0,8,6,-38.42929173031679,0,2,2,2019,6,0,38,36,1,0,0,5.24525301795148,5.24525301795148,0,0,0,0,0,0,0,0,4.966762280947007,0,54.37,54.8,49,50,6.666666666666667,1,1,0,0,12,6,4,0,567,448877.2645774552,352802.2794401712,344834.7396217618,53545.94607405546,2242.966453744566 -9393,11579,20994,-9,20993,-9,1,0,28,0,0,0,2,2,-9,0,4,7.939266962131091,8.12397613638632,0,0,0,-987.8130149576035,-9,3,-9,2019,18,6,45,0,1,6,1,7.370421416868617,7.370421416868617,0,0,0,0,0,0,0,0,0,0,27.57,58.92,-9,-9,6.666666666666667,4,2,0,0,4,6,4,0,681,83417.84562226426,0,0,0,986.3747597265526 -9394,11580,20995,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.257724052191435,8.584985274531871,5.430018282120194,0,0,-980.7655456921233,0,3,3,2019,16,5,35,35,1,5,0,11.58063218711265,11.58063218711265,0,0,0,0,0,1,1,0,7.432789883227772,5.604266500541285,54.23,41.37,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1234,999628.7548056287,-67461.48091800611,579595.3732616871,205067.9079533515,2388.970865760528 -9395,11581,20996,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.577473028361108,7.766239083724755,0,0,-987.4913803181931,0,3,3,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,4.313461874693283,7.537150865591136,42.95,61.24,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,190,765382.7980580011,347908.453283788,266677.7641738391,0,1005.637850605053 -9396,11582,20997,20998,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.800668635255248,7.627755317978097,18,-2,26.80290786509353,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.253655607902184,7.982943233693096,59.14,52.5,46.78,39.4,10,1,1,0,0,0,2,4,1,1893.5,1243591.191963701,731332.2723183304,186200.2598187127,0,4188.133496098739 -9396,11582,20998,20997,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.789319455841109,7.855855278622183,18,2,38.21427439014737,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.244431837502147,7.30314182286109,46.78,39.4,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,1893.5,1243591.191963701,731332.2723183304,186200.2598187127,0,4188.133496098739 -9397,11583,20999,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.223881314342108,7.994578409125109,0,0,0,-1180.150364220578,0,2,2,2019,29,12,37,50,1,12,0,10.43507654181932,10.43507654181932,0,0,0,0,0,0,0,0,0,0,15,55.89,-9,-9,1.666666666666667,1,1,0,0,7,10,4,0,4881,460688.2064517651,455982.6864687771,116015.183143374,110756.1942440625,1646.774327196928 -9398,11584,21000,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,6.420662445944144,6.193938630146232,0,0,-1051.567336144944,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.151274060226754,0,62.43,10.97,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,825.5,16685.47225157524,0,0,0,1262.125123189729 -9398,11584,21001,-9,21000,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1065.802435313925,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,2.217076818580868,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,825.5,16685.47225157524,0,0,0,1262.125123189729 -9398,11585,21002,-9,21000,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1013.645366697094,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,1.317130991896454,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,5,6,1,1,1955,-188556.0619940967,0,0,0,1.256829884998069 -9399,11586,21003,21004,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.968910556307694,9.09830397168199,0,2,4,-29.59100962247194,0,-9,-9,2019,25,10,45,18,1,10,0,17.20478994947807,17.20478994947807,0,0,0,0,2,0,0,0,4.899449125701585,0,29.11,49.23,58.59,48.72,6.666666666666667,1,1,0,0,9,9,5,1,748,416715.6594563838,398220.8496370534,185725.9412394339,144444.5758072329,3444.503994396827 -9399,11586,21004,21003,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.925187097502638,7.909796253607128,0,30,-4,-113.6802506923609,0,3,3,2019,10,2,16,30,1,2,0,18.71001439033457,18.71001439033457,0,0,0,0,7,0,0,0,0,0,58.59,48.72,29.11,49.23,8.333333333333334,1,1,0,0,11,9,5,1,748,416715.6594563838,398220.8496370534,185725.9412394339,144444.5758072329,3444.503994396827 -9399,11587,21005,-9,21004,21003,1,1,29,0,0,0,2,2,-9,0,4,7.872061282563213,7.788749837867697,0,0,0,-1019.214956959094,0,2,2,2019,10,0,42,38,1,1,1,6.374264890596493,6.374264890596493,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,0,0,1,9,3,1,729,109451.8562978359,-198334.069571518,0,0,1475.584292021564 -9400,11588,21006,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.855908091542399,6.862182491154786,0,0,-1007.707287262987,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,3.160369715678503,6.431961967333817,18.32422053574385,0,1,1,0,0,6.768845487996819,30.21,31.29,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,363,471225.6092797708,17236.67343841602,134575.9924909992,0,1826.601345276266 -9401,11589,21007,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.585839359882955,8.827531440705332,0,6,6,95.4728209683058,0,3,3,2019,3,0,37,37,1,0,0,16.19330124855234,16.19330124855234,0,0,0,0,7,0,0,0,0,0,48.56,54.48,50.54,55.39,8.333333333333334,1,1,0,0,7,12,5,1,944,303588.2537419244,17858.68250350303,92577.20384338663,103998.2601713728,1423.279569869107 -9401,11590,21008,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.959179774516569,9.032294527122602,0,6,-6,-41.22327960524552,0,3,3,2019,5,0,48,46,1,0,0,15.09323670704086,15.09323670704086,0,0,0,0,7,0,0,0,0,0,50.54,55.39,48.56,54.48,8.333333333333334,1,1,0,0,7,12,5,1,263,311644.5187559623,125656.4176399086,98291.69318307257,41407.74889015891,2542.030307130456 -9402,11591,21009,21010,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,3.549856175416449,3.682859661590321,28,-6,35.00949287096528,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.354663974657786,2.623078396005779,16.44592786021271,2,1,1,0,2.508209560052873,3.890317509026601,62.57,40.11,48.32,17.12,8.333333333333334,1,1,0,0,0,9,3,1,309,652831.9679549622,305714.4082015946,555334.5436096996,0,2431.027671861701 -9402,11591,21010,21009,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,7.587519940321996,7.492363510169628,10,6,96.78575580109414,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,3.324626875730129,0,0,1,1,0,0,7.760867853013097,48.32,17.12,62.57,40.11,10,1,1,0,0,0,9,3,1,309,652831.9679549622,305714.4082015946,555334.5436096996,0,2431.027671861701 -9403,11592,21011,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-976.2562990662226,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,35.89,29.87,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,452,10596.06807587817,0,0,0,1872.973701421857 -9403,11593,21012,-9,21011,-9,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-903.7754170631554,0,3,-9,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,14.5,1,1,0,0,0,31.08,51.12,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,275,0,0,0,0,466.2969621271114 -9403,11594,21013,-9,21011,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1070.516787422552,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,34.3,37.44,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,818,-8490.901766042625,0,0,0,223.1857836301471 -9404,11595,21014,21015,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.62052533104953,6.639842637608773,59,2,-4.948856307415997,0,2,2,2019,22,8,0,0,4,8,0,0,0,1,7.176562723657275,126.9553457495324,66.51663993794719,0,1,1,0,7.69185962198501,6.584801779356795,22.94,26.43,48.21,40,1.666666666666667,1,1,0,0,0,6,3,1,764.5,697410.2658259756,310406.1760869415,269008.1197208574,0,2782.747734309683 -9404,11595,21015,21014,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.350945776282145,7.082749519932964,59,-2,53.83429327077094,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,7.344567750284719,48.21,40,22.94,26.43,5,1,1,0,0,0,6,3,1,764.5,697410.2658259756,310406.1760869415,269008.1197208574,0,2782.747734309683 -9405,11596,21016,-9,21017,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.897284904284,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,2,0,1535.5,107486.2477466772,-93446.83222158627,0,0,1252.643339148861 -9405,11596,21017,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,6.863471151561858,7.178710298207759,5.574578601399021,0,0,-919.8548430783632,0,2,2,2019,13,1,26,18,1,1,0,5.359447542506517,5.359447542506517,0,0,0,0,0,1,1,0,5.735924758202816,0,35.57,48.77,-9,-9,1.666666666666667,1,1,0,0,9,10,2,0,1535.5,107486.2477466772,-93446.83222158627,0,0,1252.643339148861 -9406,11597,21018,21019,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,5.715375540895191,6.411196819655626,7,2,76.55794660229452,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,7.79918615175364,0,0,1,1,0,6.189747057770425,5.934992630507823,54.64,57.51,48.13,40.19,10,1,1,0,0,0,9,2,1,439.5,73745.65711311657,49943.81952626654,0,0,1881.091509288345 -9406,11597,21019,21018,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.734002646038182,5.778666489761997,7,-2,-156.3406360889935,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.966066562921372,5.754677076138639,48.13,40.19,54.64,57.51,8.333333333333334,1,1,0,0,1,9,2,1,439.5,73745.65711311657,49943.81952626654,0,0,1881.091509288345 -9407,11598,21020,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.231722595802848,8.175433960975493,6.543473890660317,0,0,-936.5162302897315,0,3,3,2019,6,0,46,51,1,0,0,10.18009591151919,10.18009591151919,0,0,0,0,14.5,1,1,0,4.452321621875264,6.580357912146718,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,562,117223.923158365,62008.05593160233,0,0,2391.487198367814 -9408,11599,21021,21022,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.62825535194828,8.100085659577015,61,1,189.7558490785476,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,37.45566072128274,0,27,1,1,0,3.941702254050756,7.718704145523586,52.22,32.59,32.97,18.82,6.666666666666667,1,1,0,0,0,11,3,1,1044.5,1283623.870095274,706905.5641304494,280009.7716010821,0,3791.71713331018 -9408,11599,21022,21021,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,6.280665769852766,5.736869524388441,61,-1,15.85451592574658,0,3,-9,2019,14,2,0,0,4,2,0,0,0,1,0,141.8618166929087,0,0,1,1,0,0,6.029291134999423,32.97,18.82,52.22,32.59,6.666666666666667,1,1,0,0,0,11,3,1,1044.5,1283623.870095274,706905.5641304494,280009.7716010821,0,3791.71713331018 -9409,11600,21023,21024,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,49,0,-29.36859126111008,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.954389290633344,0,51.24,58.84,52.24,48.84,8.333333333333334,1,1,0,0,7,2,2,1,767.5,493477.064702539,220040.3728745751,177187.8273278882,0,3217.576317351046 -9409,11600,21024,21023,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.865363707608983,7.000746136308257,49,0,78.28456213404938,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.90959034619269,7.133530336252659,52.24,48.84,51.24,58.84,8.333333333333334,1,1,0,0,4,2,2,1,767.5,493477.064702539,220040.3728745751,177187.8273278882,0,3217.576317351046 -9410,11601,21025,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,6.478831074649176,6.547372347585126,0,0,-970.9880948929291,-9,3,1,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.409160680475204,50.29,23.1,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,348,-14908.01069434438,122285.0625508334,101876.2090374068,0,1657.016587956285 -9411,11602,21026,21027,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,0,0,0,2,-5,0,-9,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50.66,48.18,52.98,37.73,8.333333333333334,1,1,1,0,0,12,1,0,515,-4382.746757031407,30605.72072656512,0,0,1654.791968299568 -9411,11602,21027,21026,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,0,0,0,2,5,0,0,3,2,2019,15,5,0,47,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,52.98,37.73,50.66,48.18,6.666666666666667,1,1,1,1,8,12,1,0,515,-4382.746757031407,30605.72072656512,0,0,1654.791968299568 -9411,11602,21028,-9,21026,21027,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.2191074202537,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,1,0,515,-4382.746757031407,30605.72072656512,0,0,1654.791968299568 -9411,11602,21029,-9,21026,21027,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.032925757901,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,1,0,515,-4382.746757031407,30605.72072656512,0,0,1654.791968299568 -9412,11603,21030,-9,21034,21031,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1053.720960615486,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,1,0,736.6,640654.6736574175,0,894444.3662420368,324210.7534005931,1683.372195024089 -9412,11603,21031,21034,-9,-9,1,1,37,0,3,0,3,3,-9,1,4,0,0,0,8,4,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,53.61,59.13,10,1,1,0,0,0,7,1,0,736.6,640654.6736574175,0,894444.3662420368,324210.7534005931,1683.372195024089 -9412,11603,21032,-9,21034,21031,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1063.064660497329,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,1,0,736.6,640654.6736574175,0,894444.3662420368,324210.7534005931,1683.372195024089 -9412,11603,21033,-9,21034,21031,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.139466224271,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,736.6,640654.6736574175,0,894444.3662420368,324210.7534005931,1683.372195024089 -9412,11603,21034,21031,-9,-9,1,0,33,0,3,0,2,2,-9,1,4,0,0,0,8,-4,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.61,59.13,63.48,51.85,10,1,1,0,0,0,7,1,0,736.6,640654.6736574175,0,894444.3662420368,324210.7534005931,1683.372195024089 -9413,11604,21035,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-984.7591967743882,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.51,18.49,-9,-9,1.666666666666667,1,1,0,0,3,1,1,0,1368,28131.40876070612,0,0,0,286.1180588472305 -9414,11605,21036,21037,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.004873958856236,7.088455834048489,0,37,0,-162.711978601783,0,2,2,2019,11,1,17,20,1,1,0,7.633048415999233,7.633048415999233,0,0,0,0,0,0,0,0,2.393087306468243,0,45.01,57.46,57.33,53.46,8.333333333333334,1,1,0,0,9,9,2,1,423,154726.4841720253,0,0,0,2098.199674546234 -9414,11605,21037,21036,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,0,0,7,0,-168.6173636119806,0,-9,-9,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,7.952455768617573,0,57.33,53.46,45.01,57.46,1.666666666666667,1,1,0,0,8,9,2,1,423,154726.4841720253,0,0,0,2098.199674546234 -9415,11606,21038,-9,21041,-9,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1052.971446996092,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,514,9967.583854002198,-2341.23691942227,0,0,2535.922812685948 -9415,11606,21039,-9,21041,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.833817967427,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,514,9967.583854002198,-2341.23691942227,0,0,2535.922812685948 -9415,11606,21040,-9,21041,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1058.180905174337,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,2,0,514,9967.583854002198,-2341.23691942227,0,0,2535.922812685948 -9415,11606,21041,-9,-9,-9,1,0,46,0,3,0,1,1,-9,0,1,6.517814247593707,7.618083988147681,7.437307125040743,0,0,-1064.072297672275,0,2,1,2019,16,5,25,33,1,5,0,2.596564304079237,2.596564304079237,0,0,0,0,7,1,1,0,6.84198863717416,0,26.84,35.4,-9,-9,3.333333333333333,1,1,0,0,10,9,2,0,514,9967.583854002198,-2341.23691942227,0,0,2535.922812685948 -9416,11607,21042,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.672952720865059,8.679571521255314,0,0,0,-990.1982133277434,0,-9,-9,2019,13,2,35,41,1,2,0,17.98348988095136,17.98348988095136,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,3.333333333333333,4,2,0,0,13,7,5,1,910,380981.5853357344,-34547.02610052495,667816.7048117879,276570.4916013106,2651.832699181924 -9417,11608,21043,21044,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.562189095043698,4.994198389868454,36,5,-37.06430883835737,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.070389075245996,49.44,43.52,25.42,41.48,8.333333333333334,1,1,0,0,0,13,3,1,824,587664.1115095117,532189.9020046301,154055.9834576139,0,1610.029293574947 -9417,11608,21044,21043,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.480145587162578,7.838129627292504,36,-5,-71.49306934438972,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,7.623521522226064,25.42,41.48,49.44,43.52,3.333333333333333,1,1,0,0,5,13,3,1,824,587664.1115095117,532189.9020046301,154055.9834576139,0,1610.029293574947 -9418,11609,21045,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.469668797877094,6.655621722613339,0,0,-1043.20631077607,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.396596288206089,35.79,48.98,-9,-9,1.666666666666667,1,1,0,0,3,11,2,1,2132,24877.90953638393,-97427.68490227513,16181.54267029899,38127.94885156151,443.8374117175505 -9419,11610,21046,21047,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,7,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.2,43.03,36.39,40.35,8.333333333333334,1,1,0,0,1,12,1,0,528,-63454.36051001163,0,0,0,0 -9419,11610,21047,21046,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,7,-1,0,0,-9,-9,2019,25,8,0,0,4,8,0,0,0,1,0,91.3255508101459,0,0,0,0,0,0,0,36.39,40.35,48.2,43.03,6.666666666666667,1,1,0,0,6,12,1,0,528,-63454.36051001163,0,0,0,0 -9420,11611,21048,-9,21050,21052,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.0410989200636,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,1,478.6,129047.8249020926,82823.91937834623,287896.7613882804,177821.3253510554,2722.664817814557 -9420,11611,21049,-9,21050,21052,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.4325498485636,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,3,1,478.6,129047.8249020926,82823.91937834623,287896.7613882804,177821.3253510554,2722.664817814557 -9420,11611,21050,21052,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,7.261940517774752,7.001303189479393,0,17,-4,-23.608031087394,0,3,1,2019,8,0,16,15,1,0,0,9.771316674906666,9.771316674906666,0,0,0,0,0,1,1,0,0,0,52.65,51.64,45.24,50.24,0,1,1,0,0,5,8,3,1,478.6,129047.8249020926,82823.91937834623,287896.7613882804,177821.3253510554,2722.664817814557 -9420,11611,21051,-9,21050,21052,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.7159774067679,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,478.6,129047.8249020926,82823.91937834623,287896.7613882804,177821.3253510554,2722.664817814557 -9420,11611,21052,21050,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.561068478990645,8.694952366404493,0,17,4,100.4232353485195,0,-9,-9,2019,10,0,48,80,1,0,0,13.54006940513616,13.54006940513616,0,0,0,0,0,1,1,0,0,0,45.24,50.24,52.65,51.64,1.666666666666667,1,1,0,0,10,8,3,1,478.6,129047.8249020926,82823.91937834623,287896.7613882804,177821.3253510554,2722.664817814557 -9421,11612,21053,21054,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.839177829147411,8.875953721027377,38,0,-41.10764650728429,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.595522622828272,8.470759148809199,66.93000000000001,31.07,50,47,8.333333333333334,1,1,0,0,1,10,4,1,1015.5,1941361.582520324,842402.3970918853,484330.4813691329,0,4681.200786077256 -9421,11612,21054,21053,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.135489433733077,7.130735495204319,6,0,-9.633775890831199,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.154919770138274,7.070507380764377,50,47,66.93000000000001,31.07,7,1,1,0,0,0,10,4,1,1015.5,1941361.582520324,842402.3970918853,484330.4813691329,0,4681.200786077256 -9422,11613,21055,21056,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.683322166548322,7.688033803312164,42,1,65.02768818737006,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.308822168980091,7.595955960870833,58.07,46.29,49.66,55.68,10,1,1,0,0,0,4,4,0,1442,1244626.596118048,803069.6196354867,220316.8939717498,0,4675.316104972108 -9422,11613,21056,21055,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.420016941139961,7.994580663838977,42,-1,-36.95147798247982,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.415935995714205,7.616538004312739,49.66,55.68,58.07,46.29,8.333333333333334,1,1,0,0,0,4,4,0,1442,1244626.596118048,803069.6196354867,220316.8939717498,0,4675.316104972108 -9423,11614,21057,21058,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,34,-6,99.54682896768672,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,42.96,48.95,24.93,19.95,3.333333333333333,1,1,0,0,2,6,3,0,554.5,622599.5394060796,357025.6940541428,135629.051297727,0,3128.380153859624 -9423,11614,21058,21057,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,7.777368011334381,7.975919625659717,35,6,-41.49737462239775,0,3,3,2019,16,3,0,0,4,3,0,0,0,1,0,41.34723773196441,0,0,1,1,0,0,7.590682946400297,24.93,19.95,42.96,48.95,0,1,1,0,0,0,6,3,0,554.5,622599.5394060796,357025.6940541428,135629.051297727,0,3128.380153859624 -9424,11615,21059,-9,21060,-9,1,0,17,0,0,1,2,0,0,0,3,0,5.198353404877487,5.624002618908325,0,0,-993.8712662907732,-9,1,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.507300965324328,0,41.23,59.35,-9,-9,8.333333333333334,4,2,0,0,0,8,5,1,294.5,145200.5936779575,0,0,0,1915.476561292535 -9424,11615,21060,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.494437059799788,8.644891043735768,0,0,0,-1208.194252427525,0,1,2,2019,11,1,42,53,1,1,0,13.29858978168834,13.29858978168834,0,0,0,0,0,1,1,0,0,0,56.18,53.85,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,294.5,145200.5936779575,0,0,0,1915.476561292535 -9425,11616,21061,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.143475224871604,7.314664187219118,0,0,-911.488263790287,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.3092657601734116,7.439240516674554,62.49,55.09,-9,-9,10,1,1,0,0,0,12,3,1,489,369234.5337367579,131913.5648206183,110969.8094235252,46037.14837093808,1273.185776765109 -9426,11617,21062,-9,21063,21066,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.212608639793,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1030.6,-33579.74484147427,36898.87381467097,0,0,2507.297542886634 -9426,11617,21063,21066,-9,-9,1,0,40,0,4,0,1,1,-9,0,4,0,0,0,17,3,73.38607877776228,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.79,62.62,46.39,60.99,8.333333333333334,1,1,0,0,0,13,3,1,1030.6,-33579.74484147427,36898.87381467097,0,0,2507.297542886634 -9426,11617,21064,-9,21063,21066,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1108.330633500495,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1030.6,-33579.74484147427,36898.87381467097,0,0,2507.297542886634 -9426,11617,21065,-9,21063,21066,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1052.188340542501,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,1030.6,-33579.74484147427,36898.87381467097,0,0,2507.297542886634 -9426,11617,21066,21063,-9,-9,1,1,37,0,4,0,1,1,-9,0,4,8.355771632107677,8.305171085938525,0,17,-3,58.87583760593537,0,2,2,2019,12,0,39,35,1,0,0,14.44619183400185,14.44619183400185,0,0,0,0,0,1,1,0,0,0,46.39,60.99,45.79,62.62,8.333333333333334,1,1,0,0,7,13,3,1,1030.6,-33579.74484147427,36898.87381467097,0,0,2507.297542886634 -9427,11618,21067,21068,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,0,0,0,10,-1,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,0,1,0,0,40.98,47.92,49,48,8.333333333333334,1,1,0,0,9,12,1,0,680,-46192.57049077981,0,0,0,1533.734630815991 -9427,11618,21068,21067,-9,-9,1,0,64,0,0,0,2,2,-9,1,3,0,0,0,10,1,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,40.98,47.92,7,1,1,0,0,0,12,1,0,680,-46192.57049077981,0,0,0,1533.734630815991 -9428,11619,21069,21070,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.322883935269371,6.18890309781392,7,0,10.84928182777532,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.335362236362898,49.45,35.49,56.22,40.21,5,1,1,0,0,4,11,3,1,546.5,980733.9270513535,505958.9640394204,250093.8872184278,0,2854.784351075706 -9428,11619,21070,21069,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.215414220478408,8.280285438027102,7,0,71.03009073083599,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.177584609340919,56.22,40.21,49.45,35.49,8.333333333333334,1,1,0,0,0,11,3,1,546.5,980733.9270513535,505958.9640394204,250093.8872184278,0,2854.784351075706 -9429,11620,21071,21072,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.37483246477829,8.455983004663986,42,-1,-126.1250376710099,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.476704552332705,8.291422972143714,57.16,56.15,59.68,45.73,8.333333333333334,1,1,0,0,5,7,4,1,444,2403385.623426167,1077163.283807629,1342462.236720171,0,2256.450244546616 -9429,11620,21072,21071,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,42,1,-93.21646743825795,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.68,45.73,57.16,56.15,8.333333333333334,1,1,0,0,5,7,4,1,444,2403385.623426167,1077163.283807629,1342462.236720171,0,2256.450244546616 -9430,11621,21073,21074,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.101851185337375,6.23448220990465,51,2,-1.761560964396164,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.867249107499366,6.00791695558335,51.31,45.18,50,47,5,1,1,0,0,4,5,2,1,1346.5,482763.3969143725,227775.8107006471,189858.6451230662,0,1954.879004299377 -9430,11621,21074,21073,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-2,13.1749765828303,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,51.31,45.18,7,1,1,0,0,0,5,2,1,1346.5,482763.3969143725,227775.8107006471,189858.6451230662,0,1954.879004299377 -9431,11622,21075,-9,21077,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.618485171165,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,356,-35400.53597640622,8327.154329652587,0,0,2123.293892227161 -9431,11622,21076,-9,21077,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.771564982263,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.176525868670325,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,356,-35400.53597640622,8327.154329652587,0,0,2123.293892227161 -9431,11622,21077,-9,-9,-9,1,0,39,0,4,0,2,2,-9,1,1,0,5.881793861212069,5.969935296753112,0,0,-1062.692595287489,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,6.283245339223469,0,35.51,25.75,-9,-9,1.666666666666667,1,1,0,0,6,4,2,0,356,-35400.53597640622,8327.154329652587,0,0,2123.293892227161 -9431,11622,21078,-9,21077,-9,1,1,15,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1140.521910316777,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,2,0,356,-35400.53597640622,8327.154329652587,0,0,2123.293892227161 -9431,11622,21079,-9,21077,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-996.926981852626,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,.1060614592920466,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,356,-35400.53597640622,8327.154329652587,0,0,2123.293892227161 -9432,11623,21080,21081,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,0,-132.1732883582632,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,40.82,53.24,30.15,8.333333333333334,1,1,0,0,0,12,3,1,772,1238356.195275825,671464.6262281423,138131.9623024201,0,2237.367832609123 -9432,11623,21081,21080,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,8.274240694903279,8.051941076843894,52,0,-67.42948855336215,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.138558602396008,53.24,30.15,41.11,40.82,3.333333333333333,1,1,0,0,0,12,3,1,772,1238356.195275825,671464.6262281423,138131.9623024201,0,2237.367832609123 -9433,11624,21082,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.660985634607812,8.47645420788526,0,0,0,-1044.056495441328,0,2,2,2019,12,0,38,36,1,0,0,18.86660406991574,18.86660406991574,0,0,0,0,0,0,0,0,4.902551452054499,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,314,1050900.631992541,946318.3585936428,136699.1580111724,0,2129.465224415554 -9433,11625,21083,-9,21082,-9,1,1,30,0,0,0,1,1,-9,0,5,0,0,0,0,0,-971.3660413633356,-9,1,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,486,-24623.34076717346,0,0,0,0 -9434,11626,21084,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.73031813450004,5.673551891019541,0,0,-962.6002889076198,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.830331250033837,5.375517324510612,48.2,13.44,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,512,284043.1330355476,-45216.86471338185,0,0,433.2131573205779 -9435,11627,21085,-9,-9,-9,1,0,50,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1148.336881644319,0,3,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.2,42.75,-9,-9,8.333333333333334,4,2,0,1,3,8,1,0,1426,665842.7609402298,379090.640391081,96092.94692815495,79732.20785928069,1064.238944174638 -9435,11628,21086,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-836.948993679233,-9,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.77,34.07,-9,-9,8.333333333333334,1,1,0,0,9,8,1,0,463,165878.7733289059,0,0,0,126.4153025462048 -9436,11629,21087,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-863.7710517990653,0,3,3,2019,5,0,0,40,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.53,38.76,-9,-9,8.333333333333334,1,1,0,1,11,13,1,0,132,-177065.0604700933,0,0,0,1037.569176215165 -9437,11630,21088,21089,-9,-9,1,0,43,0,0,0,3,3,-9,1,4,0,0,0,26,-6,-51.70694077598579,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49,55,50.23,46.19,7,2,3,1,0,0,8,4,0,272,27227.24336997295,-16474.24544901724,0,0,2217.697893631932 -9437,11630,21089,21088,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.598736718705259,8.139213773979385,0,10,6,8.541517270936655,0,3,2,2019,10,0,38,38,1,0,0,10.42709777932092,10.42709777932092,0,0,0,0,7,1,1,0,0,0,50.23,46.19,49,55,6.666666666666667,2,3,0,0,3,8,4,0,272,27227.24336997295,-16474.24544901724,0,0,2217.697893631932 -9438,11631,21090,-9,21091,-9,1,0,16,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1080.580201173988,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,27.81,52.48,-9,-9,5,1,1,0,0,1,9,4,0,293,390140.1346811469,92161.09034004869,458859.8688530198,229229.0568173812,2578.872837209164 -9438,11631,21091,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.29225986187118,8.38328826628711,6.579262602340824,0,0,-963.3449588670735,0,2,3,2019,7,0,38,40,1,0,0,10.6983981505705,10.6983981505705,0,0,0,0,0,1,1,0,6.532594783421361,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,293,390140.1346811469,92161.09034004869,458859.8688530198,229229.0568173812,2578.872837209164 -9439,11632,21092,21093,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.79660105380891,9.025483777157936,0,28,-1,68.65478716256762,0,2,-9,2019,30,12,56,50,1,12,0,13.76091141115584,13.76091141115584,0,0,0,0,2,1,1,0,0,0,31.04,62.55,30.33,45.18,3.333333333333333,4,2,0,1,12,2,4,1,1445.5,1074467.563751214,531666.8017769142,442985.3283212624,0,4419.909958686178 -9439,11632,21093,21092,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.218764766310526,8.278879533462383,0,28,1,-.002605562209375,0,2,2,2019,21,8,46,46,1,8,0,7.4202177678144,7.4202177678144,0,0,0,0,7,1,1,0,2.384143400727878,0,30.33,45.18,31.04,62.55,6.666666666666667,1,1,0,0,8,2,4,1,1445.5,1074467.563751214,531666.8017769142,442985.3283212624,0,4419.909958686178 -9440,11633,21094,21095,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.993917279136986,6.260317103239318,9,2,36.33540747441842,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.166002593129521,5.945643421183352,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,2,7,4,1,3271.5,2436590.374374682,962772.8539862991,858695.6915223824,0,3398.434957999794 -9440,11633,21095,21094,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.119180116637503,8.350155424067493,9,-2,-25.64610240291589,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.057324484495433,8.415796445930654,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,7,4,1,3271.5,2436590.374374682,962772.8539862991,858695.6915223824,0,3398.434957999794 -9441,11634,21096,21097,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.755153772449634,7.702730807892763,7,-3,142.7910569269627,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.883203021282412,8.103287918076733,60.13,49.27,59.46,46.99,8.333333333333334,1,1,0,0,3,5,3,1,100,879144.522137727,657829.8166608652,84023.51067710208,0,3138.706826160832 -9441,11634,21097,21096,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.917239259474497,6.998272383507517,7,3,-36.70439233781543,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.306028981947476,7.19433239051409,59.46,46.99,60.13,49.27,8.333333333333334,1,1,0,0,4,5,3,1,100,879144.522137727,657829.8166608652,84023.51067710208,0,3138.706826160832 -9442,11635,21098,-9,21099,21100,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-933.6947458740817,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,4.069885129261348,0,56.59,49.89,-9,-9,10,1,1,0,1,1,5,3,1,2453.666666666667,616566.8255761716,211242.8802479131,247593.5272166588,0,2019.682377998011 -9442,11635,21099,21100,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.991967202584926,8.103283294152336,0,29,-11,2.625635186142175,0,2,-9,2019,8,0,31,30,1,0,0,10.46681508629506,10.46681508629506,0,0,0,0,2,1,0,1,0,0,57.06,57.76,51,49,8.333333333333334,1,1,0,0,12,5,3,1,2453.666666666667,616566.8255761716,211242.8802479131,247593.5272166588,0,2019.682377998011 -9442,11635,21100,21099,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.890856813660107,6.652252938948426,0,9,11,-19.22864246728232,0,-9,-9,2019,10,0,30,30,1,1,0,3.61309355937703,3.61309355937703,0,0,0,0,0,1,0,1,3.197792312595288,0,51,49,57.06,57.76,7,1,1,0,0,1,5,3,1,2453.666666666667,616566.8255761716,211242.8802479131,247593.5272166588,0,2019.682377998011 -9442,11636,21101,-9,21099,21100,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1053.883261602407,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,44.26,59.43,-9,-9,10,1,1,0,0,3,5,1,1,214,0,0,0,0,1207.591315847105 -9443,11637,21102,-9,21103,21104,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.331428658597,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1732.5,400962.1195964203,0,560998.1209871976,108763.8535985778,3740.841513417453 -9443,11637,21103,21104,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,7.117883028150517,6.958552133523366,0,7,-1,10.25518628805914,0,3,2,2019,1,0,25,25,1,0,0,5.440702708027441,5.440702708027441,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,8,9,4,1,1732.5,400962.1195964203,0,560998.1209871976,108763.8535985778,3740.841513417453 -9443,11637,21104,21103,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,8.990341611351036,8.868575952272018,0,7,1,81.8373320741273,0,3,-9,2019,6,0,58,60,1,0,0,11.11148344927156,11.11148344927156,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,8,9,4,1,1732.5,400962.1195964203,0,560998.1209871976,108763.8535985778,3740.841513417453 -9443,11637,21105,-9,21103,21104,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1114.306566481639,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,1732.5,400962.1195964203,0,560998.1209871976,108763.8535985778,3740.841513417453 -9444,11638,21106,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.918439649917226,5.858184006844746,0,0,-1062.556348026404,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.314515167038881,6.10498196305833,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,391,496383.9907732391,100030.2645393283,321645.628895009,0,719.521028113485 -9445,11639,21107,21109,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.510424941769402,8.813324725584124,0,10,3,-51.85590592117825,0,-9,-9,2019,9,0,70,70,1,0,0,9.821313590250432,9.821313590250432,0,0,0,0,0,0,0,0,5.938244125725362,0,44.7,53.68,48.48,49.45,5,1,1,0,0,9,9,5,0,572.6666666666666,236927.1650432464,146355.5990653502,221211.8093149869,117244.1829812713,4558.655784244933 -9445,11639,21108,-9,21109,21107,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.201490742895,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,0,572.6666666666666,236927.1650432464,146355.5990653502,221211.8093149869,117244.1829812713,4558.655784244933 -9445,11639,21109,21107,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.201891507368535,8.426546932495826,0,10,-3,22.42555189970632,0,2,2,2019,14,4,21,22,1,4,0,22.0283962390623,22.0283962390623,0,0,0,0,14.5,0,0,0,7.910547815603145,0,48.48,49.45,44.7,53.68,3.333333333333333,1,1,0,0,12,9,5,0,572.6666666666666,236927.1650432464,146355.5990653502,221211.8093149869,117244.1829812713,4558.655784244933 -9446,11640,21110,-9,-9,21112,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.077689636238,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,626,190800.6324190191,88771.97686011391,134805.6884813756,52384.75833926049,2339.708771186694 -9446,11640,21111,-9,-9,21112,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.7592842781576,-9,-9,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,626,190800.6324190191,88771.97686011391,134805.6884813756,52384.75833926049,2339.708771186694 -9446,11640,21112,-9,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,8.320077595658018,8.070328940755472,0,0,0,-934.1329740614633,0,-9,-9,2019,13,1,46,40,1,1,0,12.27946297570443,12.27946297570443,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,5,1,1,0,0,9,2,4,1,626,190800.6324190191,88771.97686011391,134805.6884813756,52384.75833926049,2339.708771186694 -9447,11641,21113,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1028.348955103233,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.339164390688656,0,43.57,25.04,-9,-9,8.333333333333334,3,4,0,0,0,9,1,1,1059,666700.2026300578,0,731893.4112011314,0,716.7341794848346 -9448,11642,21114,21115,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,7.864843326167058,8.201320735516779,5.456085180856486,15,-2,-34.9324228945278,0,3,3,2019,15,4,33,35,1,4,0,11.73793278065921,11.73793278065921,0,0,0,0,0,1,1,0,5.657696230893339,0,36.99,42.92,52,55,5,1,1,0,0,6,2,4,1,433.5,-54669.32810026308,36376.44884711062,189227.3168991436,146488.0740783413,2990.794115938684 -9448,11642,21115,21114,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.88379029663178,7.892784535432007,0,15,2,29.55887436692654,0,3,3,2019,9,0,30,40,1,1,0,9.897550346414102,9.897550346414102,0,0,0,0,0,1,1,0,0,0,52,55,36.99,42.92,8,1,1,0,0,1,2,4,1,433.5,-54669.32810026308,36376.44884711062,189227.3168991436,146488.0740783413,2990.794115938684 -9448,11643,21116,-9,21114,21115,1,1,27,0,0,0,2,2,-9,0,4,8.309715945445447,8.395117802114841,0,0,0,-1003.663024973251,0,1,3,2019,8,0,47,43,1,0,1,11.57571178029204,11.57571178029204,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,131,-26870.73945999836,-9883.766490721007,0,0,1197.873642681651 -9448,11644,21117,-9,21114,21115,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1082.621112346721,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,2,1,1,619,9847.800397745257,0,0,0,0 -9449,11645,21118,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.099988285476502,5.959790499376894,0,0,-953.5578983605561,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.579315672174291,5.954536538040728,64.15000000000001,32.53,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,616,247377.6463858966,123046.3602760639,0,0,757.9164192913389 -9450,11646,21119,21120,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.076668079724702,6.95897497198061,56,0,-19.34793227615101,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.620880430555127,6.513061954853356,63.15,35.66,62.66,52.4,10,1,1,0,0,0,9,5,1,181.5,3269399.382606473,1361946.790972127,657033.2289302489,0,10356.41248610298 -9450,11646,21120,21119,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,9.336969713624617,9.463683270368543,56,0,45.5641174413654,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.585274147283856,8.534615218574023,62.66,52.4,63.15,35.66,10,1,1,0,0,0,9,5,1,181.5,3269399.382606473,1361946.790972127,657033.2289302489,0,10356.41248610298 -9451,11647,21121,21122,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,2,-4,88.9225097918365,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.66,46.29,59.43,58.05,8.333333333333334,1,1,0,0,2,4,3,0,2372.5,280338.4880439878,171577.3916757721,0,0,1125.5825399182 -9451,11647,21122,21121,-9,-9,1,1,23,0,0,0,3,3,-9,0,5,7.649877216470808,8.079041528383215,0,2,4,63.60287600984643,0,-9,-9,2019,3,0,40,40,1,0,0,8.488775570219271,8.488775570219271,0,0,0,0,0,0,0,0,0,0,59.43,58.05,46.66,46.29,8.333333333333334,1,1,0,1,7,4,3,0,2372.5,280338.4880439878,171577.3916757721,0,0,1125.5825399182 -9452,11648,21123,-9,21125,21124,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.886803147663,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,0,488.6666666666667,499178.7646045584,303125.8433831421,312126.1000070186,101299.4162551433,1980.158023332729 -9452,11648,21124,21125,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.450000056857993,7.453967067067444,0,14,0,82.54626750424285,0,2,2,2019,14,2,35,37,1,2,0,6.837829184803664,6.837829184803664,0,0,0,0,0,0,0,0,0,0,58.47,50.22,43.13,45.53,6.666666666666667,2,3,0,0,7,5,3,0,488.6666666666667,499178.7646045584,303125.8433831421,312126.1000070186,101299.4162551433,1980.158023332729 -9452,11648,21125,21124,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.04447215266355,8.033101199109424,0,14,0,-69.06878844244906,0,3,3,2019,6,0,40,40,1,0,0,10.30278905212834,10.30278905212834,0,0,0,0,0,0,0,0,0,0,43.13,45.53,58.47,50.22,10,2,3,0,0,10,5,3,0,488.6666666666667,499178.7646045584,303125.8433831421,312126.1000070186,101299.4162551433,1980.158023332729 -9453,11649,21126,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.752634394038505,7.032608958678326,0,0,-993.3594597758547,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.312985921740468,7.23343307869704,52.8,43.25,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1120,175516.214827769,74115.98964585079,136040.8617490122,0,1270.490739104938 -9454,11650,21127,-9,21130,21128,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.231846050351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,3,0,921.6,121131.1451038676,13351.59059677757,112557.7639212458,74289.34292226975,1881.972395143388 -9454,11650,21128,21130,-9,-9,1,1,47,0,3,0,2,2,-9,0,5,7.603774524595136,7.724930133233848,0,24,1,105.1514443669971,0,3,2,2019,0,0,50,0,1,0,0,4.710676138170524,4.710676138170524,0,0,0,0,0,0,0,0,0,0,51.08,61.81,62.49,55.09,8.333333333333334,3,4,0,0,8,2,3,0,921.6,121131.1451038676,13351.59059677757,112557.7639212458,74289.34292226975,1881.972395143388 -9454,11650,21129,-9,21130,21128,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-794.5903975149113,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.36,55.54,-9,-9,10,3,4,0,0,0,2,3,0,921.6,121131.1451038676,13351.59059677757,112557.7639212458,74289.34292226975,1881.972395143388 -9454,11650,21130,21128,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,7.586179807597027,7.621615858616217,0,22,-1,22.09433335822907,0,2,2,2019,0,0,40,0,1,0,0,7.740704258941013,7.740704258941013,0,0,0,0,0,0,0,0,0,0,62.49,55.09,51.08,61.81,8.333333333333334,3,4,0,0,5,2,3,0,921.6,121131.1451038676,13351.59059677757,112557.7639212458,74289.34292226975,1881.972395143388 -9454,11650,21131,-9,21130,21128,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-982.7950304453701,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,3,4,-9,0,0,2,3,0,921.6,121131.1451038676,13351.59059677757,112557.7639212458,74289.34292226975,1881.972395143388 -9455,11651,21132,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.608768663622712,6.333336193696454,0,0,-1062.049349224618,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.705390451369996,6.364634995441198,61.29,40.64,-9,-9,6.666666666666667,1,1,0,0,4,2,2,0,1434,346151.6721170647,164465.8772902648,146455.1029948155,0,1686.206425054231 -9456,11652,21133,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1068.36668640496,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1178,-27978.3239047361,0,0,0,2769.727823123455 -9457,11653,21134,21136,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.726689013041899,7.775872795600116,0,6,7,123.3311753330834,0,-9,-9,2019,8,0,24,30,1,0,0,11.64188217864547,11.64188217864547,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.47,37.43,1.666666666666667,2,3,0,1,8,5,2,0,844.6666666666666,415381.2105261972,132933.1444013745,119004.2656526362,30378.6225216619,1548.683238875319 -9457,11653,21135,-9,21136,21134,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.676576146109,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,0,844.6666666666666,415381.2105261972,132933.1444013745,119004.2656526362,30378.6225216619,1548.683238875319 -9457,11653,21136,21134,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,24,-7,47.32801439545121,0,-9,-9,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.47,37.43,57.33,53.46,1.666666666666667,2,3,0,1,0,5,2,0,844.6666666666666,415381.2105261972,132933.1444013745,119004.2656526362,30378.6225216619,1548.683238875319 -9458,11654,21137,-9,21139,21138,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1076.002858280648,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,2,4,1,1159,108080.7246590406,1462.497200736693,158721.0816553954,59351.92481805553,3219.345008037697 -9458,11654,21138,21139,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.815837450416215,8.703350412366134,0,8,-1,28.01638799511657,0,-9,-9,2019,9,0,40,40,1,1,0,16.5722150662273,16.5722150662273,0,0,0,0,0,1,1,0,0,0,51,56,54.79,55.86,8,1,1,0,0,1,2,4,1,1159,108080.7246590406,1462.497200736693,158721.0816553954,59351.92481805553,3219.345008037697 -9458,11654,21139,21138,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.286425362750131,7.090697909834641,0,22,1,-44.1814290508006,0,2,2,2019,6,0,23,23,1,0,0,7.207313532693505,7.207313532693505,0,0,0,0,0,1,1,0,1.80033857612238,0,54.79,55.86,51,56,8.333333333333334,1,1,0,0,9,2,4,1,1159,108080.7246590406,1462.497200736693,158721.0816553954,59351.92481805553,3219.345008037697 -9458,11655,21140,-9,21139,21138,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-929.3351087934129,0,2,2,2019,3,0,0,35,3,0,1,0,0,0,0,0,0,0,1,1,0,.2933677822569686,0,60.12,54.8,-9,-9,10,1,1,0,0,4,2,1,1,90,97472.45275802766,0,0,0,496.7262111864232 -9459,11656,21141,-9,21142,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.069286571397,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,465.25,-51334.00296044314,0,0,0,1975.208118524361 -9459,11656,21142,-9,-9,-9,1,0,31,0,3,0,2,2,0,0,2,0,6.443235384782571,6.214074952845334,0,0,-948.4902762548908,-9,1,2,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,74.5,1,1,0,5.602891322653544,0,19.12,56.49,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,465.25,-51334.00296044314,0,0,0,1975.208118524361 -9459,11656,21143,-9,21142,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.895599881433,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,465.25,-51334.00296044314,0,0,0,1975.208118524361 -9459,11656,21144,-9,21142,-9,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.039465405344,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,465.25,-51334.00296044314,0,0,0,1975.208118524361 -9460,11657,21145,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.283978491762223,8.497383872615968,0,0,0,-909.9640726529502,0,3,3,2019,12,0,55,90,1,0,0,7.800555249484864,7.800555249484864,0,0,0,0,0,0,0,0,7.691210007422413,0,40.72,54.38,-9,-9,1.666666666666667,1,1,0,0,10,13,4,1,491,22411.22361694115,182685.9826937286,0,0,3068.947137024256 -9461,11658,21146,21147,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.680462800436466,8.129088614959677,58,6,-28.39712230646191,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.598052297020829,54,46,39.5,45.66,8,1,1,0,0,0,5,3,1,1177,490496.5424347558,130044.2309392019,234606.5219395601,0,2309.909273296346 -9461,11658,21147,21146,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,58,-6,-153.8241120902366,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,3.647186480814755,0,120,1,1,0,0,0,39.5,45.66,54,46,3.333333333333333,1,1,0,0,0,5,3,1,1177,490496.5424347558,130044.2309392019,234606.5219395601,0,2309.909273296346 -9462,11659,21148,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.496333374871787,7.182906730108477,0,0,-992.6780407886525,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,20.63746665400156,0,0,1,1,0,5.250549685139333,7.076062233661485,62.5,24.04,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,3732,159080.5026502348,149360.0972099133,0,0,1367.477629538971 -9463,11660,21149,21150,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.364238050226388,6.42698637803176,61,3,-35.15022706340781,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.290614594307012,6.28305013476656,53,45,54,46,8,1,1,0,0,0,13,2,1,714.5,479481.2151977688,171506.9260135921,173589.6630757457,0,826.4203210139801 -9463,11660,21150,21149,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.08391192229537,4.767645503220212,9,-3,.6716684009460983,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.575454415419853,5.11605714650429,54,46,53,45,8,1,1,0,0,0,13,2,1,714.5,479481.2151977688,171506.9260135921,173589.6630757457,0,826.4203210139801 -9464,11661,21151,-9,21153,21152,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.74231842605,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,435,96564.38916367129,26485.33517028621,0,0,2850.446063612605 -9464,11661,21152,21153,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.832754689196751,8.743664597827339,0,12,6,-57.26234059293292,0,2,1,2019,14,2,37,37,1,2,0,19.50582257320413,19.50582257320413,0,0,0,0,0,1,1,0,1.269869627969767,0,43.71,59.71,60.28,43.74,8.333333333333334,1,1,0,0,10,9,5,1,435,96564.38916367129,26485.33517028621,0,0,2850.446063612605 -9464,11661,21153,21152,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,7.843239875053843,7.695120039278028,0,12,-6,-8.266315342481619,0,2,2,2019,8,1,19,17,1,1,0,15.29671555594331,15.29671555594331,0,0,0,0,0,1,1,0,4.669163845272512,0,60.28,43.74,43.71,59.71,8.333333333333334,1,1,0,0,10,9,5,1,435,96564.38916367129,26485.33517028621,0,0,2850.446063612605 -9465,11662,21154,-9,21157,21155,1,0,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-933.8567323520457,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9465,11662,21155,21157,-9,-9,1,1,29,2,4,0,3,3,-9,0,4,0,0,0,3,4,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.05,58.81,31.99,49.01,10,3,4,1,0,3,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9465,11662,21156,-9,21157,21155,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-952.4181850336248,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9465,11662,21157,21155,-9,-9,1,0,25,2,4,0,2,2,-9,0,2,0,0,0,3,-4,0,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.99,49.01,48.05,58.81,10,1,1,0,0,0,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9465,11662,21158,-9,21157,21155,1,0,5,2,4,1,3,0,-9,0,4,0,0,0,0,0,-849.4514654066536,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.312412410302604,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9465,11662,21159,-9,21157,21155,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-979.1005116326551,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,1,0,745.6666666666666,-1916.11976455112,0,0,0,1897.484220176042 -9466,11663,21160,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.076288991432245,7.464788596678706,0,0,-1071.109917272943,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.732325783244055,7.275486872561099,55.75,23.84,-9,-9,5,1,1,0,0,0,6,3,1,138,-4399.023682895873,64985.79986372501,108486.8494339312,0,1650.495397850526 -9467,11664,21161,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.422952232753183,8.566576176151859,0,0,0,-976.3303965591431,0,2,-9,2019,10,0,60,42,1,0,0,8.803377796918154,8.803377796918154,0,0,0,0,0,0,0,0,0,0,26.74,66.23,-9,-9,1.666666666666667,1,1,0,0,8,5,5,0,219,151268.4983798048,-124574.8133322495,0,0,1909.386405620984 -9468,11665,21162,-9,21165,21164,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.756140548839,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,1227.2,199888.6316418903,102610.6133831136,0,0,13959.44819877007 -9468,11665,21163,-9,21165,21164,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1130.179512547237,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1227.2,199888.6316418903,102610.6133831136,0,0,13959.44819877007 -9468,11665,21164,21165,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,9.581208077513557,9.438452829509417,0,20,6,31.7834886342152,0,3,3,2019,8,0,60,12,1,0,0,31.40544281233449,31.40544281233449,0,0,0,0,2,1,1,0,2.113302761469082,0,55.76,52.64,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,1227.2,199888.6316418903,102610.6133831136,0,0,13959.44819877007 -9468,11665,21165,21164,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,0,0,0,20,-6,161.0400152385418,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,55.76,52.64,8.333333333333334,1,1,1,0,6,13,5,1,1227.2,199888.6316418903,102610.6133831136,0,0,13959.44819877007 -9468,11665,21166,-9,21165,21164,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.711471034227,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1227.2,199888.6316418903,102610.6133831136,0,0,13959.44819877007 -9469,11666,21167,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.313962325368507,8.628708669460394,0,0,0,-853.007307106954,0,3,3,2019,13,2,40,37,1,2,0,11.56807665495186,11.56807665495186,0,0,0,0,7,0,0,0,0,0,40.58,38.59,-9,-9,5,1,1,0,0,10,7,4,1,245,317124.3400381508,446086.0002094987,0,0,1579.014794436743 -9470,11667,21168,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-940.8211915608483,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.21000000000001,44.28,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,858,72330.38136237234,0,0,0,1052.595547749663 -9471,11668,21169,-9,21173,21170,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.3404711053814,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,2,1,816.4,78251.55800864719,0,0,0,2390.254227714052 -9471,11668,21170,21173,-9,-9,1,1,57,0,3,0,2,2,-9,0,3,6.462570602248069,6.633528309206401,0,16,10,48.75601376591732,0,2,2,2019,14,4,52,50,1,4,0,1.422673570250234,1.422673570250234,0,0,0,0,0,1,0,1,2.720982669206186,0,41.35,47.13,44.47,55.39,5,1,1,0,0,13,7,2,1,816.4,78251.55800864719,0,0,0,2390.254227714052 -9471,11668,21171,-9,21173,21170,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.581724404071,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,816.4,78251.55800864719,0,0,0,2390.254227714052 -9471,11668,21172,-9,21173,21170,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1018.990779180997,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,2,1,816.4,78251.55800864719,0,0,0,2390.254227714052 -9471,11668,21173,21170,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,6.133752261309794,5.95011093928168,0,16,-10,191.0109973288127,0,3,3,2019,11,0,5,8,1,0,0,9.684032688078803,9.684032688078803,0,0,0,0,0,1,0,1,1.37731530459387,0,44.47,55.39,41.35,47.13,8.333333333333334,1,1,0,0,13,7,2,1,816.4,78251.55800864719,0,0,0,2390.254227714052 -9472,11669,21174,21175,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.228128490387766,8.09129092791339,0,3,-2,-101.6675447759178,0,-9,-9,2019,10,1,40,40,1,1,0,10.73624654954518,10.73624654954518,0,0,0,0,0,0,0,0,0,0,43.35,52.88,39.33,51.01,6.666666666666667,1,1,0,0,8,9,5,0,399,749592.4522851382,37700.88777920188,1001891.01937902,308274.5287414972,3313.704253909244 -9472,11669,21175,21174,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.591392872711292,8.617776991521577,0,3,2,-68.88242663401081,0,2,3,2019,12,1,38,38,1,1,0,15.7155446067695,15.7155446067695,0,0,0,0,0,0,0,0,0,0,39.33,51.01,43.35,52.88,8.333333333333334,1,1,0,0,11,9,5,0,399,749592.4522851382,37700.88777920188,1001891.01937902,308274.5287414972,3313.704253909244 -9473,11670,21176,21177,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.543372809697646,8.439158774394542,0,7,-1,-26.92590373031484,-9,-9,-9,2019,8,0,40,0,1,0,0,15.95124359923839,15.95124359923839,0,0,0,0,0,1,1,0,3.202372304765022,0,54,54,58.32,50.22,8,3,4,0,0,1,7,5,1,952.5,318769.7860594222,97176.49003256335,305755.4758691071,182067.1291372241,3495.315667774367 -9473,11670,21177,21176,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.058439421420983,7.686149633211565,0,26,1,-39.84636916678134,0,3,3,2019,8,0,39,38,1,0,0,7.852317067847189,7.852317067847189,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54,54,6.666666666666667,3,4,0,0,7,7,5,1,952.5,318769.7860594222,97176.49003256335,305755.4758691071,182067.1291372241,3495.315667774367 -9474,11671,21178,21180,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.798008933384599,8.0566088387497,0,6,0,37.09124443018315,0,2,3,2019,15,3,42,40,1,3,0,8.634661858582488,8.634661858582488,0,0,0,0,0,1,1,0,0,0,39.95,53.56,48.18,61.8,6.666666666666667,1,1,0,0,7,9,4,1,356.5,133791.4947918605,44349.26271844395,328114.0001542363,193762.8531186852,3378.066656575111 -9474,11671,21179,-9,21180,21178,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.7021771263753,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,356.5,133791.4947918605,44349.26271844395,328114.0001542363,193762.8531186852,3378.066656575111 -9474,11671,21180,21178,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.501928784180016,8.58438765147001,0,6,0,-30.56361233630282,0,2,2,2019,22,10,30,33,1,10,0,22.89711726497401,22.89711726497401,0,0,0,0,0,1,1,0,.4417944712369362,0,48.18,61.8,39.95,53.56,8.333333333333334,1,1,0,0,7,9,4,1,356.5,133791.4947918605,44349.26271844395,328114.0001542363,193762.8531186852,3378.066656575111 -9474,11671,21181,-9,21180,21178,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.8235184602897,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,4,1,356.5,133791.4947918605,44349.26271844395,328114.0001542363,193762.8531186852,3378.066656575111 -9475,11672,21182,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.141462122768573,8.326948709698303,0,0,0,-1018.907085968275,0,-9,-9,2019,18,7,37,40,1,7,0,14.33665643544821,14.33665643544821,0,0,0,0,0,0,0,0,1.395423881977121,0,35.84,53.74,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,247,-27112.35629718858,69878.15154489489,0,0,856.5837827282677 -9475,11673,21183,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.208450343787434,7.374318511923157,1.984380980117303,0,0,-1072.717429368291,-9,1,1,2019,4,0,12,0,1,0,0,14.37954095498712,14.37954095498712,0,0,0,0,0,0,0,0,2.158218982804469,0,59.64,49.65,-9,-9,5,1,1,0,1,11,11,3,0,426,43117.35861554392,0,0,0,777.8728193662431 -9476,11674,21184,21185,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.006478283620254,8.955885786475115,0,4,4,45.64046663942076,0,1,2,2019,9,2,37,37,1,2,0,21.95543220378284,21.95543220378284,0,0,0,0,0,1,1,0,0,0,43.2,59.97,33.01,63.17,8.333333333333334,1,1,0,0,12,6,5,1,806.25,525914.6081052977,206876.2736102913,398421.2772463991,61348.16781758974,3924.944569479428 -9476,11674,21185,21184,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.489357758617615,8.463615729257686,6.483564272049613,4,-4,70.65014624798819,0,-9,-9,2019,16,4,43,35,1,4,0,12.46030528716354,12.46030528716354,0,0,0,0,0,1,1,0,6.784979532483464,0,33.01,63.17,43.2,59.97,8.333333333333334,1,1,0,0,3,6,5,1,806.25,525914.6081052977,206876.2736102913,398421.2772463991,61348.16781758974,3924.944569479428 -9476,11674,21186,-9,21185,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.197289698759,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,806.25,525914.6081052977,206876.2736102913,398421.2772463991,61348.16781758974,3924.944569479428 -9476,11674,21187,-9,21185,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.3969230046187,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,806.25,525914.6081052977,206876.2736102913,398421.2772463991,61348.16781758974,3924.944569479428 -9477,11675,21188,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.818407956680618,6.373647538022198,0,0,-994.8470315611482,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.118324745574722,6.498352392050665,55.03,42.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1087,173637.8637179346,124975.9867842465,0,0,1283.948573268825 -9477,11676,21189,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1075.234332405215,0,3,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,7.139413745136432,0,25.78,46.76,-9,-9,1.666666666666667,1,1,0,0,3,2,1,1,1523,132413.3499884906,0,0,0,1936.289017785056 -9478,11677,21190,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1052.877314421433,0,-9,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,5.883927605910449,0,39.14,29.53,-9,-9,3.333333333333333,1,1,0,1,0,4,1,0,1186,-179380.5622577771,235982.4387318746,0,0,1286.196770416369 -9478,11678,21191,-9,-9,21190,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.2485604716902,-9,-9,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,1418,0,0,0,0,185.3367149803593 -9479,11679,21192,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.029301880515586,6.719580009035887,0,0,-1034.128847220735,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.513830382395347,53,44,-9,-9,8,1,1,0,0,0,11,2,1,390,229742.6882679227,-3983.555265905801,254390.3080217524,0,550.0520876146763 -9480,11680,21193,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,2,7.821790409385647,8.110226128641839,0,0,0,-872.2271826614564,0,2,2,2019,13,3,41,39,1,3,0,8.786674051420817,8.786674051420817,0,0,0,0,0,1,1,0,0,0,58.39,16.33,-9,-9,3.333333333333333,1,1,0,0,7,5,4,1,219,-113663.2999602131,16172.04724243362,0,0,1998.279502692651 -9481,11681,21194,21195,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5243599222964,8.776204227861172,5.639730625569103,10,5,14.21522391246541,0,2,2,2019,14,2,50,50,1,2,0,11.02630014412027,11.02630014412027,0,0,0,0,7,0,0,0,3.486723951996889,6.047222419112751,44.02,60.7,44.02,60.7,8.333333333333334,1,1,0,0,11,6,5,1,3759.5,1265233.06922166,798741.7033218174,367867.9826622867,0,4362.994015374807 -9481,11681,21195,21194,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.583691532620493,8.68713543401457,0,10,-5,12.14075803037456,0,2,2,2019,10,0,40,40,1,0,0,12.52831955977578,12.52831955977578,0,0,0,0,2,0,0,0,6.809552997956104,0,44.02,60.7,44.02,60.7,6.666666666666667,1,1,0,0,11,6,5,1,3759.5,1265233.06922166,798741.7033218174,367867.9826622867,0,4362.994015374807 -9482,11682,21196,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-905.7414353077399,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,10,1,1,1,0,2,2,1,0,442,98139.9908203668,0,0,0,361.8632990629762 -9483,11683,21197,21198,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,58,-2,142.0513341452345,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,.0172221043566805,0,7,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,11,2,1,121.5,295188.8966709231,132679.3980421198,151985.9784665351,0,1622.366640556405 -9483,11683,21198,21197,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.580251829516298,7.100698716261499,58,2,-52.70856871236878,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,8.18837848885169,0,2,1,1,0,0,7.346697588901986,54,46,52,46,8,1,1,0,0,0,11,2,1,121.5,295188.8966709231,132679.3980421198,151985.9784665351,0,1622.366640556405 -9484,11684,21199,21200,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.468732195359228,6.471684305850326,0,37,0,91.6915876670964,0,2,2,2019,7,0,10,17,1,0,0,7.719315397981325,7.719315397981325,0,0,0,0,0,0,0,0,7.598574458433184,0,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,11,10,2,1,556.5,1816298.413904514,1063189.828559874,492018.0214524538,106934.4860338615,1171.044164545553 -9484,11684,21200,21199,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,37,0,23.40153076757114,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.233170220922618,0,57.16,56.15,58.89,48.6,8.333333333333334,1,1,0,0,5,10,2,1,556.5,1816298.413904514,1063189.828559874,492018.0214524538,106934.4860338615,1171.044164545553 -9485,11685,21201,-9,-9,-9,1,0,31,1,3,0,2,2,-9,1,4,0,0,0,0,0,-967.9930757461327,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,3,6,1,0,1119.75,-13435.78026165729,0,0,0,1826.363231773571 -9485,11685,21202,-9,21201,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-875.6094827745194,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,1119.75,-13435.78026165729,0,0,0,1826.363231773571 -9485,11685,21203,-9,21201,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.905536384589,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,1119.75,-13435.78026165729,0,0,0,1826.363231773571 -9485,11685,21204,-9,21201,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.6337463110282,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,1,0,1119.75,-13435.78026165729,0,0,0,1826.363231773571 -9486,11686,21205,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-1028.288789541555,-9,-9,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,.6467309030927142,0,50.44,41.85,-9,-9,0,1,1,0,0,5,6,1,0,474,104521.0275877105,0,0,0,578.2019678390966 -9487,11687,21206,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-964.5445682032813,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.670090961064328,0,0,2,1,1,0,0,0,50.25,38.14,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,3048,-249824.0791103246,0,0,0,727.9585657562486 -9488,11688,21207,21208,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.493511669418773,8.654493971076263,0,7,1,28.00122573870001,0,3,3,2019,7,0,40,37,1,0,0,14.77931762816963,14.77931762816963,0,0,0,0,0,0,0,0,3.447634348293705,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,3,4,5,1,923,303333.8052743488,155092.152685577,246635.6066804522,102353.4572128899,4748.887691666835 -9488,11688,21208,21207,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.837889532663125,9.221220986236489,0,7,-1,-27.43989999455152,0,3,3,2019,9,0,46,40,1,0,0,17.64968017307761,17.64968017307761,0,0,0,0,0,0,0,0,7.510095196885995,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,923,303333.8052743488,155092.152685577,246635.6066804522,102353.4572128899,4748.887691666835 -9489,11689,21209,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.037395407743423,7.832548693417219,0,0,0,-1026.275840126739,0,2,2,2019,10,1,38,40,1,1,0,7.670019074980971,7.670019074980971,0,0,0,0,0,0,0,0,2.879198977392265,0,49,41.16,-9,-9,5,1,1,0,0,10,2,4,1,86,161988.0055177416,35534.45325513958,0,0,1140.0086555598 -9490,11690,21210,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.660083802130496,8.732030017426322,0,0,0,-1152.693315578244,0,-9,-9,2019,12,0,55,45,1,0,0,10.98677160766638,10.98677160766638,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,5,5,0,180,-10.40344901903882,-12698.43455419775,87732.6149585758,74187.59637382854,2455.1436593155 -9491,11691,21211,21212,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.229487213239989,7.079471459090976,52,3,-8.880466997511952,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.028680426387099,7.778679571203816,54,46,52,46,7,1,1,0,0,0,7,3,1,515.5,646925.1811359094,444975.4559200748,228755.6031493908,0,4604.955781729622 -9491,11691,21212,21211,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.404190171191622,7.220285145176637,52,-3,132.7722988041575,0,2,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,7.906209961729957,7.085915528319143,52,46,54,46,7,1,1,0,0,0,7,3,1,515.5,646925.1811359094,444975.4559200748,228755.6031493908,0,4604.955781729622 -9492,11692,21213,21214,-9,-9,1,0,27,0,1,0,1,1,-9,0,4,8.016381481269095,8.182007224107981,0,6,-1,-50.41607806291439,0,2,2,2019,13,2,56,63,1,2,0,7.857616537662592,7.857616537662592,0,0,0,0,0,1,1,0,0,0,49.38,58.29,48.84,49.19,8.333333333333334,1,1,0,0,7,9,4,0,1301.333333333333,56012.35444843029,-11090.72609473914,0,0,3138.451610818098 -9492,11692,21214,21213,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.17383745850224,8.661365732927223,0,6,1,-39.00660771555787,0,-9,-9,2019,9,0,45,45,1,0,0,10.99214953973623,10.99214953973623,0,0,0,0,0,1,1,0,0,0,48.84,49.19,49.38,58.29,5,1,1,0,0,7,9,4,0,1301.333333333333,56012.35444843029,-11090.72609473914,0,0,3138.451610818098 -9492,11692,21215,-9,21213,21214,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.925690555646,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1301.333333333333,56012.35444843029,-11090.72609473914,0,0,3138.451610818098 -9493,11693,21216,21217,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,5,-4,46.07037641009708,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,2.149180254775413,74.5,1,1,0,0,0,45.91,59.89,65.23,38.89,8.333333333333334,1,1,0,0,0,11,2,1,948,71018.36832717861,0,0,0,1050.146397991116 -9493,11693,21217,21216,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,4.891668820929789,4.566634096202479,5,4,101.6828040906303,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.691137484006564,4.957072708935433,65.23,38.89,45.91,59.89,8.333333333333334,1,1,0,0,7,11,2,1,948,71018.36832717861,0,0,0,1050.146397991116 -9494,11694,21218,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,7.983383406637373,7.59227612453898,0,0,0,-895.0365443202893,-9,-9,-9,2019,8,1,60,0,1,1,0,4.787197884432929,4.787197884432929,0,0,0,0,0,0,0,0,2.87643409795868,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,365,0,0,0,0,1941.857124504311 -9495,11695,21219,21220,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.736241401400266,9.591108426341526,0,12,19,-95.31676149459273,0,1,2,2019,12,0,40,40,1,0,0,45.29683025033313,45.29683025033313,0,0,0,0,0,0,0,0,8.682635012304118,0,56.23,52.63,48.18,61.8,8.333333333333334,1,1,0,0,10,10,5,1,1950.5,1285435.396570855,785520.4508480164,396335.1753681591,245722.4437591224,48457.37520970461 -9495,11695,21220,21219,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,9.484729155602359,9.729476802824623,0,12,-19,-45.65960551746575,0,3,1,2019,15,5,38,40,1,5,0,45.28446244841662,45.28446244841662,0,0,0,0,0,0,0,0,8.223039059528228,0,48.18,61.8,56.23,52.63,8.333333333333334,1,1,0,0,10,10,5,1,1950.5,1285435.396570855,785520.4508480164,396335.1753681591,245722.4437591224,48457.37520970461 -9496,11696,21221,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.375399153688833,6.584732445421694,0,0,-974.1903681165843,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.825423344660368,49.42,19.32,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1040,14248.19424814405,59187.47122633552,0,0,1283.852070490373 -9497,11697,21222,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.362697293459295,8.38184240034963,0,0,0,-958.64678953856,0,2,2,2019,9,0,44,39,1,0,0,11.64282916263629,11.64282916263629,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,12,10,4,0,460,184606.2825954527,31522.36249411178,204142.3023177699,0,2005.352075415449 -9498,11698,21223,21225,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,6.745397876574207,6.397274580590683,0,2,-3,-130.0402481567699,0,3,3,2019,10,0,15,30,1,0,0,5.871049494885697,5.871049494885697,0,0,0,0,0,1,1,0,0,0,46.98,59.35,38.15,55.39,8.333333333333334,2,3,0,0,3,6,3,1,388,23206.28329566434,-30073.76871341584,92985.13613892766,24173.85151546521,2124.302413207974 -9498,11698,21224,-9,21223,21225,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-977.7289936747538,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,388,23206.28329566434,-30073.76871341584,92985.13613892766,24173.85151546521,2124.302413207974 -9498,11698,21225,21223,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.153346529438611,7.96508150555603,0,2,3,-18.02892573673039,0,-9,-9,2019,12,0,44,20,1,0,0,5.845976858442429,5.845976858442429,0,0,0,0,0,1,1,0,0,0,38.15,55.39,46.98,59.35,5,2,3,0,0,4,6,3,1,388,23206.28329566434,-30073.76871341584,92985.13613892766,24173.85151546521,2124.302413207974 -9499,11699,21226,21227,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.913770310817789,8.879058170474192,0,7,5,21.07821921357691,0,2,1,2019,9,0,41,36,1,0,0,22.47201709685986,22.47201709685986,0,0,0,0,2,1,1,0,0,0,57.33,53.46,41.28,57.99,8.333333333333334,1,1,0,0,8,8,4,1,1164.5,55992.15889112574,83919.46660796061,0,0,3186.754470288234 -9499,11699,21227,21226,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.899131359680443,7.823402905431489,0,7,-5,6.067798072908606,0,2,2,2019,12,0,22,18,1,0,0,11.59749407956158,11.59749407956158,0,0,0,0,7,1,1,0,0,0,41.28,57.99,57.33,53.46,3.333333333333333,1,1,0,0,8,8,4,1,1164.5,55992.15889112574,83919.46660796061,0,0,3186.754470288234 -9500,11700,21228,21229,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.648801879217388,9.192022991365775,32,6,14.48219524296372,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.400418654613999,9.152441246002862,62.49,55.09,57.16,56.15,10,1,1,0,0,4,9,5,1,388,1286306.607064467,481122.6168671765,812132.2638363796,55036.3616700174,6864.13369425187 -9500,11700,21229,21228,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.874540252761047,8.833931863474294,0,32,-6,-124.9097152196541,0,2,3,2019,6,0,50,45,1,0,0,13.12216074646944,13.12216074646944,0,0,0,0,0,1,1,0,3.656040783442206,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,11,9,5,1,388,1286306.607064467,481122.6168671765,812132.2638363796,55036.3616700174,6864.13369425187 -9500,11701,21230,-9,21229,21228,1,1,25,0,0,0,1,1,-9,0,4,8.668990740656527,8.663533495720221,0,0,0,-1051.856949822123,0,1,1,2019,11,0,52,42,1,0,1,17.9368594359471,17.9368594359471,0,0,0,0,0,1,1,0,2.992093199374469,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,582,137327.7693774113,112597.8621205945,266848.2898151649,190357.8224173725,2091.450381508836 -9501,11702,21231,21232,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.662795265190887,7.639936035004003,34,11,-11.65223558053673,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.859315955193302,7.606824438944022,67.16,24.96,37.31,53.5,8.333333333333334,1,1,0,0,0,1,3,1,497.5,590355.5272196627,535557.027992234,145151.7822544823,0,2330.078128534533 -9501,11702,21232,21231,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.077459967719653,5.971406325629803,35,-11,100.0177076588692,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,6.094556000948504,6.269483854912888,37.31,53.5,67.16,24.96,6.666666666666667,1,1,0,0,6,1,3,1,497.5,590355.5272196627,535557.027992234,145151.7822544823,0,2330.078128534533 -9502,11703,21233,21236,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,6.814815705190981,6.553090624628432,0,21,-11,5.110880173405522,0,2,1,2019,5,0,20,0,1,0,0,4.631496823446096,4.631496823446096,0,0,0,0,0,0,0,0,8.086974494230841,0,54.1,59.11,54.79,55.86,10,1,1,0,0,6,4,5,1,649,678643.2943905554,236880.1962114597,395834.4664453421,84598.80009739011,7245.01725851592 -9502,11703,21234,-9,21233,21236,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.496078429566,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,649,678643.2943905554,236880.1962114597,395834.4664453421,84598.80009739011,7245.01725851592 -9502,11703,21235,-9,21233,21236,1,0,16,0,2,1,2,0,0,0,5,0,3.600623595352081,4.141889876766261,0,0,-984.0418250785625,-9,2,1,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.027395765709381,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,649,678643.2943905554,236880.1962114597,395834.4664453421,84598.80009739011,7245.01725851592 -9502,11703,21236,21233,-9,-9,1,1,60,0,2,0,1,1,-9,0,4,9.559917932559545,9.751578644285152,6.189949396704678,22,11,-119.9766992286281,0,2,2,2019,11,0,50,50,1,0,0,33.20774065276225,33.20774065276225,0,0,0,0,0,0,0,0,7.124468553739178,6.25550032851073,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,9,4,5,1,649,678643.2943905554,236880.1962114597,395834.4664453421,84598.80009739011,7245.01725851592 -9503,11704,21237,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.944851227654848,8.92410896274364,0,0,0,-950.2684933544745,0,-9,-9,2019,11,0,45,40,1,0,0,19.35747590513029,19.35747590513029,0,0,0,0,0,0,0,0,7.897599934866907,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,790,129757.8936918366,68095.11903862542,0,0,4203.454066337386 -9504,11705,21238,21239,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.199383631620547,8.231788461646422,0,9,5,.1192927457982356,0,1,1,2019,13,1,40,38,1,1,0,9.644193089291653,9.644193089291653,0,0,0,0,0,0,0,0,4.30200411168351,0,53.38,52.51,28.08,63.9,6.666666666666667,1,1,0,0,8,4,5,1,1395,610041.983933203,224751.6041284349,324619.7929436962,134873.2178232127,4049.671565463257 -9504,11705,21239,21238,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.00891318662454,8.77011337622533,0,9,-5,84.54774805832984,0,2,1,2019,15,5,35,40,1,5,0,27.14348649510343,27.14348649510343,0,0,0,0,0,0,0,0,0,0,28.08,63.9,53.38,52.51,6.666666666666667,1,1,0,0,10,4,5,1,1395,610041.983933203,224751.6041284349,324619.7929436962,134873.2178232127,4049.671565463257 -9505,11706,21240,21241,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.309899768860148,7.066080149243492,10,-2,49.91254061960908,0,2,2,2019,8,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,3.822381566643179,6.974441853831949,57.16,56.15,45.8,54.59,8.333333333333334,1,1,0,0,11,12,4,1,1166,1028986.579189115,1010007.955988118,0,0,2633.92980210814 -9505,11706,21241,21240,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.524467605872738,8.177504315770237,0,10,2,26.21754112314791,0,-9,-9,2019,12,1,62,60,1,1,0,11.40470296071757,11.40470296071757,0,0,0,0,7,0,0,0,0,0,45.8,54.59,57.16,56.15,6.666666666666667,1,1,0,0,12,12,4,1,1166,1028986.579189115,1010007.955988118,0,0,2633.92980210814 -9506,11707,21242,21243,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,6.977514442689361,7.21009316414697,0,18,0,72.12535728222558,0,3,3,2019,10,0,20,0,1,0,0,8.023520992679265,8.023520992679265,0,0,0,0,0,1,1,0,0,0,61.5,34.39,55.36,51.57,8.333333333333334,2,3,0,0,7,8,4,1,1368,750847.5635849998,82363.43949578285,988620.6785519322,284919.7706492025,2442.122025028007 -9506,11707,21243,21242,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.535568840930809,8.252830989333358,0,18,9,85.95795506832876,0,-9,-9,2019,13,1,9,38,1,1,0,49.28336721005685,49.28336721005685,0,0,0,0,0,1,1,0,0,0,55.36,51.57,61.5,34.39,5,2,3,0,0,3,8,4,1,1368,750847.5635849998,82363.43949578285,988620.6785519322,284919.7706492025,2442.122025028007 -9506,11707,21244,-9,21242,21243,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.7849669970859,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1368,750847.5635849998,82363.43949578285,988620.6785519322,284919.7706492025,2442.122025028007 -9506,11708,21245,-9,21242,21243,1,1,20,0,1,1,2,0,0,0,2,0,0,0,0,0,-1000.92929835513,-9,1,1,2019,25,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.97,60.5,-9,-9,1.666666666666667,2,3,0,1,0,8,1,1,825,0,0,0,0,692.5516172545867 -9507,11709,21246,21247,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.429098281056406,7.745689207734157,0,7,-17,-49.85490150913293,0,3,2,2019,9,0,35,34,1,0,0,7.640278304745082,7.640278304745082,0,0,0,0,0,1,1,0,0,0,58.15,52.91,47.01,55.33,8.333333333333334,1,1,0,0,8,5,3,1,453.5,916622.7553546529,801861.8827234968,0,0,1880.604043739173 -9507,11709,21247,21246,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.655427684590213,6.528191519855047,7,17,44.49301943140197,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.628953769818583,6.549184353132668,47.01,55.33,58.15,52.91,8.333333333333334,1,1,0,0,2,5,3,1,453.5,916622.7553546529,801861.8827234968,0,0,1880.604043739173 -9508,11710,21248,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1030.523380818371,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.53,23.71,-9,-9,5,1,1,0,1,0,13,1,0,1009,-18972.01450242795,15921.36480227389,40335.05963033289,0,1873.16976406995 -9509,11711,21249,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,0,0,-923.5761403714397,0,2,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,6.420310156624528,0,35.67,36.57,-9,-9,0,1,1,1,1,10,10,1,1,705,-214258.1214767241,0,0,0,1319.223193479717 -9510,11712,21250,21251,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.635081038689846,9.546717990589105,0,9,-3,-122.6949178950641,0,1,1,2019,15,4,50,45,1,4,0,25.98195298133843,25.98195298133843,0,0,0,0,0,0,0,0,0,0,49.06,58.64,57.06,57.76,6.666666666666667,1,1,0,0,10,8,5,1,365,1601519.540431044,1340878.558322963,741352.1750927756,511690.3397968702,9443.220480706539 -9510,11712,21251,21250,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.367144251847638,9.678424598104668,0,9,3,10.13790311412184,0,2,3,2019,1,0,55,52,1,0,0,31.10476860573982,31.10476860573982,0,0,0,0,0,0,0,0,4.669936787414141,0,57.06,57.76,49.06,58.64,8.333333333333334,1,1,0,0,11,8,5,1,365,1601519.540431044,1340878.558322963,741352.1750927756,511690.3397968702,9443.220480706539 -9511,11713,21252,21254,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,8.849658216003865,8.99532592198897,0,9,10,-50.42982043826986,0,2,2,2019,12,1,50,50,1,1,0,16.86084512555373,16.86084512555373,0,0,0,0,0,1,1,0,0,0,37.85,46.7,54.2,57.49,8.333333333333334,1,1,0,0,11,2,5,1,705.6666666666666,382958.3896320483,288917.9722090786,272815.1545878151,193023.7187943219,3585.194457396286 -9511,11713,21253,-9,21254,21252,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1106.740055893625,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,705.6666666666666,382958.3896320483,288917.9722090786,272815.1545878151,193023.7187943219,3585.194457396286 -9511,11713,21254,21252,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.858679346279871,8.10272281195684,0,9,-10,7.12121328809489,0,-9,-9,2019,7,0,32,41,1,0,0,11.77627245461636,11.77627245461636,0,0,0,0,0,1,1,0,2.318895116764524,0,54.2,57.49,37.85,46.7,8.333333333333334,1,1,0,0,13,2,5,1,705.6666666666666,382958.3896320483,288917.9722090786,272815.1545878151,193023.7187943219,3585.194457396286 -9512,11714,21255,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.555714020944709,8.313883025212624,0,0,0,-912.4415309709265,0,-9,-9,2019,12,0,37,70,1,0,0,16.84959465492196,16.84959465492196,0,0,0,0,0,1,1,0,1.118694599155047,0,34.55,53.48,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,381,897042.3249763384,823197.3299083635,0,0,2283.858720004607 -9513,11715,21256,21257,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.69860258157931,7.564533853480725,5.680891006149613,39,-3,25.45958836257683,0,2,2,2019,7,0,32,32,1,0,0,7.179994375652004,7.179994375652004,0,0,0,0,0,0,0,0,5.720146561270679,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,2,4,1,530,807773.0592826777,163117.8829267384,321098.750228969,0,2411.71334434046 -9513,11715,21257,21256,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.834774965870551,7.84148791223727,39,3,-64.09891950429005,0,3,2,2019,7,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,2.703120257888098,7.655142035817525,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,530,807773.0592826777,163117.8829267384,321098.750228969,0,2411.71334434046 -9513,11716,21258,-9,21256,21257,1,1,27,0,0,0,1,1,-9,0,3,7.813960204725794,8.055945134101471,0,0,0,-1016.495465090507,-9,1,1,2019,17,5,35,0,1,5,1,10.2417140802516,10.2417140802516,0,0,0,0,0,0,0,0,0,0,41.64,41.69,-9,-9,6.666666666666667,1,1,0,0,1,2,4,1,258,93237.39811751629,0,0,0,1642.877126968006 -9514,11717,21259,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.750639697687968,8.140843150758425,0,0,-1156.176892568777,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.584191558448401,6.901716092022681,45.99,51.88,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,926,641107.4370783062,129555.2921941174,134022.2348588536,0,20086.31955996168 -9515,11718,21260,21261,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,5.710298581600973,5.732611737919304,4,-4,-133.2704767109903,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.717323856378416,5.578121590169049,61.19,26.05,54.81,10.49,8.333333333333334,1,1,0,0,8,11,2,1,713.5,398601.0589778668,97721.94711364598,212146.0242262094,0,1375.448609914923 -9515,11718,21261,21260,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,4,4,-11.16768637069276,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,18.27744654323882,0,0,1,1,0,0,0,54.81,10.49,61.19,26.05,6.666666666666667,1,1,0,0,0,11,2,1,713.5,398601.0589778668,97721.94711364598,212146.0242262094,0,1375.448609914923 -9516,11719,21262,21263,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.540558301187586,8.566721857680216,39,2,-40.03079548918404,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.512624876176677,49.04,55.86,48.45,57.49,6.666666666666667,1,1,0,0,6,13,5,1,204.5,2133817.323481065,1534720.313377292,495074.3437984587,0,5199.739705538627 -9516,11719,21263,21262,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.948868593748481,7.881714798387846,3,-2,109.0325099480874,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.092350941219122,7.97215932174273,48.45,57.49,49.04,55.86,8.333333333333334,1,1,0,0,0,13,5,1,204.5,2133817.323481065,1534720.313377292,495074.3437984587,0,5199.739705538627 -9517,11720,21264,-9,21266,21267,1,0,0,2,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.874613107652,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,412.25,-33252.51396300636,0,0,0,649.7893744831688 -9517,11720,21265,-9,21266,21267,1,1,2,2,1,1,3,0,-9,0,4,0,0,0,0,0,-924.9276222920198,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,412.25,-33252.51396300636,0,0,0,649.7893744831688 -9517,11720,21266,21267,-9,-9,1,0,27,2,1,0,2,2,1,0,2,0,0,0,3,-4,0,-9,3,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,24.91,56.41,19.96,46.59,5,1,1,0,1,0,2,1,0,412.25,-33252.51396300636,0,0,0,649.7893744831688 -9517,11720,21267,21266,-9,-9,1,1,31,2,1,0,2,2,-9,0,2,0,0,0,3,4,0,0,-9,-9,2019,30,12,0,30,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.96,46.59,24.91,56.41,1.666666666666667,1,1,1,1,3,2,1,0,412.25,-33252.51396300636,0,0,0,649.7893744831688 -9518,11721,21268,21269,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.292050380594654,8.2515079330957,0,34,-2,37.94932954863645,0,3,2,2019,10,0,36,35,1,0,0,9.146193619152362,9.146193619152362,0,0,0,0,7,0,0,0,0,0,57.33,53.46,61.78,38.31,8.333333333333334,1,1,0,0,10,1,5,1,450.5,4014949.135490267,3356958.262510142,293223.6092509074,0,5259.390315891674 -9518,11721,21269,21268,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,9.299445443116838,9.321868372154475,0,9,2,-9.505213121060581,0,-9,-9,2019,11,0,50,60,1,0,0,25.25328952558868,25.25328952558868,0,0,0,0,0,0,0,0,0,0,61.78,38.31,57.33,53.46,8.333333333333334,1,1,0,0,8,1,5,1,450.5,4014949.135490267,3356958.262510142,293223.6092509074,0,5259.390315891674 -9519,11722,21270,21273,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,7.347248417484679,7.443136671545048,0,19,-7,15.11553206836816,0,-9,-9,2019,11,0,20,20,1,0,0,9.505958662777383,9.505958662777383,0,0,0,0,14.5,1,1,0,0,0,53.74,44.11,54.2,57.49,8.333333333333334,1,1,0,0,7,9,3,1,859.25,607108.6664100301,441649.3185826965,246804.6932170114,31018.17234545916,2196.171653071741 -9519,11722,21271,-9,21270,21273,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.9296245921589,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,859.25,607108.6664100301,441649.3185826965,246804.6932170114,31018.17234545916,2196.171653071741 -9519,11722,21272,-9,21270,21273,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.9716369587843,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,859.25,607108.6664100301,441649.3185826965,246804.6932170114,31018.17234545916,2196.171653071741 -9519,11722,21273,21270,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.475367757076764,7.174102579252445,0,19,7,-7.572767463273904,0,-9,-9,2019,9,0,45,40,1,0,0,4.266916686256493,4.266916686256493,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.74,44.11,5,1,1,0,0,9,9,3,1,859.25,607108.6664100301,441649.3185826965,246804.6932170114,31018.17234545916,2196.171653071741 -9520,11723,21274,21275,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,6.904862850549873,6.691385499546539,58,-6,66.65307516675057,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.939053099354613,6.262277096759721,58,52,60.68,34.1,8.333333333333334,1,1,0,0,0,5,3,1,1167,716830.8981066749,220813.8996998332,253908.0824815891,0,1902.836332292029 -9520,11723,21275,21274,-9,-9,1,1,85,0,0,0,1,1,-9,0,4,0,7.768210365932792,7.653782353088855,58,6,-14.34603819956128,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,4.461729871019784,0,0,1,1,0,6.227919579998336,7.539203061862526,60.68,34.1,58,52,5,1,1,0,0,0,5,3,1,1167,716830.8981066749,220813.8996998332,253908.0824815891,0,1902.836332292029 -9521,11724,21276,21277,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.488922583327239,8.59287361236054,0,5,-7,-33.59293985417521,-9,-9,-9,2019,6,0,52,0,1,0,0,11.78683856615838,11.78683856615838,0,0,0,0,0,0,0,0,5.380409070094643,0,57.06,57.76,57.16,56.15,10,1,1,0,0,1,12,4,1,496,1751814.437294186,968310.7813851229,328080.1833825913,0,1861.002775846769 -9521,11724,21277,21276,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,5,7,-187.2031470141049,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,5,12,4,1,496,1751814.437294186,968310.7813851229,328080.1833825913,0,1861.002775846769 -9522,11725,21278,-9,-9,-9,1,0,60,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1168.515626947181,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.94,20.11,-9,-9,5,1,1,0,0,0,10,1,0,1185,-68577.11537627535,0,0,0,1444.242038981283 -9522,11726,21279,-9,-9,21280,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-917.3689328816156,-9,-9,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,10,1,1,0,0,0,10,5,0,567.3333333333334,-86599.55118478047,-32453.48699851146,0,0,2458.426508640096 -9522,11726,21280,-9,21278,-9,1,1,38,0,2,0,2,2,-9,0,3,9.035339527832447,9.010131476684997,0,0,0,-895.6136805611741,0,2,-9,2019,7,0,45,36,1,0,1,15.97538328140761,15.97538328140761,0,0,0,0,7,1,1,0,0,0,53.18,51.37,-9,-9,8.333333333333334,1,1,0,0,13,10,5,0,567.3333333333334,-86599.55118478047,-32453.48699851146,0,0,2458.426508640096 -9522,11726,21281,-9,-9,21280,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.392046727594,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,567.3333333333334,-86599.55118478047,-32453.48699851146,0,0,2458.426508640096 -9523,11727,21282,21283,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.033692922621455,8.957957599319533,0,7,3,46.06999366366619,0,3,3,2019,32,12,40,40,1,12,0,22.28899228688513,22.28899228688513,0,0,0,0,0,0,0,0,5.560428672843394,0,28.44,60.03,57.06,57.76,1.666666666666667,1,1,0,0,8,5,5,1,482.5,2450652.295830384,1148690.383538571,906613.3039020863,0,6366.548216251245 -9523,11727,21283,21282,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.917813683826497,8.940225623652857,0,7,-3,-7.233229557698001,0,2,2,2019,9,0,35,30,1,0,0,27.22117305425005,27.22117305425005,0,0,0,0,0,0,0,0,6.722959325142593,0,57.06,57.76,28.44,60.03,10,1,1,0,0,8,5,5,1,482.5,2450652.295830384,1148690.383538571,906613.3039020863,0,6366.548216251245 -9523,11728,21284,-9,21283,21282,1,1,22,0,0,0,1,1,1,0,4,8.137969460408803,8.014952086817972,0,0,0,-982.7156868900481,-9,2,1,2019,6,0,37,0,1,0,1,13.47438878660094,13.47438878660094,0,0,0,0,0,0,0,0,1.944218589475385,0,52,57.31,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,538,82115.63805309137,17650.55116259905,0,0,2307.928902623059 -9523,11729,21285,-9,21283,21282,1,1,21,0,0,0,2,2,-9,0,4,8.622957540281826,8.691686269912317,0,0,0,-941.760792870874,0,2,1,2019,10,0,70,70,1,0,1,8.083634836710516,8.083634836710516,0,0,0,0,0,0,0,0,5.035242862290586,0,50.76,51.17,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,360,176986.4014234373,0,0,0,1883.25107464121 -9523,11730,21286,-9,21283,21282,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.693478966032,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.23,61.31,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1581,0,0,0,0,0 -9524,11731,21287,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.273534417399,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,5.24,57.72,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,1115,0,0,0,0,1451.115693931685 -9524,11732,21288,-9,21287,-9,1,0,18,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1113.637068925018,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.47,57.72,-9,-9,6.666666666666667,4,2,0,0,1,9,1,0,279,178625.9054718596,0,0,0,0 -9525,11733,21289,-9,21294,21293,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1018.899162167561,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9525,11733,21290,-9,21294,21293,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1093.116885360888,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9525,11733,21291,-9,21294,21293,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-960.4312684370586,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9525,11733,21292,-9,21294,21293,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1087.911098122961,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9525,11733,21293,21294,-9,-9,1,1,43,0,4,0,2,2,-9,0,2,8.217401137974591,8.584790183059297,0,10,8,-138.9709269379815,0,2,2,2019,24,12,37,37,1,12,0,10.10848768865542,10.10848768865542,0,0,0,0,0,1,0,1,0,0,35.04,46.54,51.77,58.57,3.333333333333333,1,1,0,0,11,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9525,11733,21294,21293,-9,-9,1,0,35,0,4,0,1,1,-9,0,4,8.232766666836488,8.054963643217913,0,10,-8,96.02538540638625,0,-9,-9,2019,11,0,37,30,1,0,0,10.48780435241978,10.48780435241978,0,0,0,0,0,1,0,1,0,0,51.77,58.57,35.04,46.54,6.666666666666667,1,1,0,0,11,13,4,1,1126.833333333333,-14787.95198831471,13004.10139916157,0,0,4612.45114187042 -9526,11734,21295,21297,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.812657725313812,7.896846599798494,0,8,-3,-11.88410923316736,0,-9,-9,2019,15,3,20,16,1,3,0,13.68096084978866,13.68096084978866,0,0,0,0,0,1,1,0,1.531480330742802,0,38.69,61.75,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,791.5,575413.0799847567,345575.1808421605,278991.3317545364,95064.43423576192,3828.663293826199 -9526,11734,21296,-9,21295,21297,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.9484936232089,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,791.5,575413.0799847567,345575.1808421605,278991.3317545364,95064.43423576192,3828.663293826199 -9526,11734,21297,21295,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.875608798657398,8.713559480205692,0,8,3,-7.494718671847184,0,2,1,2019,9,0,41,42,1,0,0,20.89016300786517,20.89016300786517,0,0,0,0,0,1,1,0,6.178660457661446,0,57.16,56.15,38.69,61.75,8.333333333333334,1,1,0,0,11,5,5,1,791.5,575413.0799847567,345575.1808421605,278991.3317545364,95064.43423576192,3828.663293826199 -9526,11734,21298,-9,21295,21297,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.961504352966,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,791.5,575413.0799847567,345575.1808421605,278991.3317545364,95064.43423576192,3828.663293826199 -9527,11735,21299,-9,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,9.574750297302407,9.127088461024259,0,0,0,-963.9524859860569,0,1,1,2019,0,0,80,0,1,0,0,16.71907080414542,16.71907080414542,0,0,0,0,0,0,0,0,4.583742898947214,0,52,59,-9,-9,10,1,1,0,0,13,2,5,1,4819,621251.7659547151,404502.1549061184,225050.3877682977,55158.30683464669,8619.75317551644 -9527,11735,21300,-9,-9,21299,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.377478656307,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,4819,621251.7659547151,404502.1549061184,225050.3877682977,55158.30683464669,8619.75317551644 -9528,11736,21301,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.252843912190217,8.343838474311553,5.10757190373045,0,0,-990.3388640857222,0,2,1,2019,7,1,40,50,1,1,0,11.09286764622702,11.09286764622702,0,0,0,0,0,0,0,0,5.374177601726327,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,1217,-100802.5303304074,-26806.66265125613,0,0,1172.231749355524 -9529,11737,21302,21306,-9,-9,1,1,37,1,3,0,2,2,-9,0,5,7.148189163280499,7.25004488875665,0,14,-3,119.1743185071753,0,2,2,2019,3,1,40,20,1,1,0,3.099961497616205,3.099961497616205,0,0,0,0,0,0,0,0,0,0,60.59,54.8,32.4,43.1,8.333333333333334,3,4,0,0,5,7,2,0,1119.4,-45303.736825766,30547.82125052085,0,0,789.650108799899 -9529,11737,21303,-9,21306,21302,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.9239408160423,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,7,2,0,1119.4,-45303.736825766,30547.82125052085,0,0,789.650108799899 -9529,11737,21304,-9,21306,21302,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-953.6969470911837,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,7,2,0,1119.4,-45303.736825766,30547.82125052085,0,0,789.650108799899 -9529,11737,21305,-9,21306,21302,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.272395075246,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,2,0,1119.4,-45303.736825766,30547.82125052085,0,0,789.650108799899 -9529,11737,21306,21302,-9,-9,1,0,40,1,3,0,1,1,-9,0,4,0,0,0,14,3,-11.68637459125206,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,32.4,43.1,60.59,54.8,5,3,4,0,0,1,7,2,0,1119.4,-45303.736825766,30547.82125052085,0,0,789.650108799899 -9530,11738,21307,21308,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.47816756252383,7.382462085183084,0,17,-1,4.332339880370643,0,2,2,2019,7,0,45,20,1,0,0,4.205462361182755,4.205462361182755,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.41,50.61,8.333333333333334,1,1,0,0,10,8,3,1,421,19787.38432311959,32611.88900846229,0,0,2798.745443688105 -9530,11738,21308,21307,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.493800995987772,8.724758933341665,0,17,1,-17.14887048705619,0,2,2,2019,9,1,60,45,1,1,0,8.367719679162468,8.367719679162468,0,0,0,0,0,1,1,0,0,0,51.41,50.61,57.16,56.15,6.666666666666667,1,1,0,0,10,8,3,1,421,19787.38432311959,32611.88900846229,0,0,2798.745443688105 -9530,11738,21309,-9,21307,21308,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.424597016663,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,421,19787.38432311959,32611.88900846229,0,0,2798.745443688105 -9531,11739,21310,-9,21312,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.98025870236,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,988.6666666666666,574404.1708190239,212492.3432009766,351074.8231472122,0,2214.299914127175 -9531,11739,21311,-9,21312,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.744027613061,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,988.6666666666666,574404.1708190239,212492.3432009766,351074.8231472122,0,2214.299914127175 -9531,11739,21312,-9,-9,-9,1,0,53,0,2,0,1,1,-9,0,4,8.36517386647315,8.273349536654431,0,0,0,-1122.74318616738,0,2,2,2019,12,0,37,16,1,0,0,14.83025649025603,14.83025649025603,0,0,0,0,0,1,1,0,4.973708977385787,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,988.6666666666666,574404.1708190239,212492.3432009766,351074.8231472122,0,2214.299914127175 -9532,11740,21313,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,1,0,5.918700360673826,5.626091549109227,0,0,-1067.838936693556,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,5.530977196842532,0,36.06,29.88,-9,-9,0,3,4,1,1,1,2,2,0,410.5,-60158.86352703217,0,0,0,953.2543404330468 -9532,11740,21314,-9,21313,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.024670957996,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,410.5,-60158.86352703217,0,0,0,953.2543404330468 -9533,11741,21315,21316,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.479661903435439,7.86151958085545,5.177279597657671,32,8,68.84664015354026,0,-9,-9,2019,17,5,40,44,1,5,0,6.089859442821971,6.089859442821971,0,0,0,0,0,0,0,0,0,5.17020132171468,45.99,39.38,43.4,31.71,5,1,1,0,0,11,12,4,1,1821.5,281073.7605626128,-12046.21934928972,187870.449817153,0,2487.696615937652 -9533,11741,21316,21315,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.827434048370615,7.737849457081514,0,32,-8,-23.44327955597956,0,3,3,2019,14,3,35,48,1,3,0,5.852797972262582,5.852797972262582,0,0,0,0,0,0,0,0,0,0,43.4,31.71,45.99,39.38,6.666666666666667,1,1,0,0,11,12,4,1,1821.5,281073.7605626128,-12046.21934928972,187870.449817153,0,2487.696615937652 -9534,11742,21317,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.718378301253743,8.862918237202933,0,0,0,-1092.027483970403,0,1,1,2019,11,2,40,40,1,2,0,20.87713373326707,20.87713373326707,0,0,0,0,0,1,1,0,5.925219493877261,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,496,32667.36316267376,-14801.51338161381,148564.4663752135,93301.90758400511,3097.687466677331 -9535,11743,21318,21319,-9,-9,1,0,57,0,0,0,1,1,-9,1,2,0,0,0,7,-7,68.34375462488154,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,1.822895531852203,0,31.24,56.52,54.79,55.86,5,1,1,0,0,5,4,3,0,1067.5,750355.860191385,521050.9560301912,194139.0184698991,0,1211.79054989562 -9535,11743,21319,21318,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.762907946306826,7.864286492843847,0,7,7,-109.5513085103188,0,3,3,2019,6,0,30,30,1,0,0,10.06206404796421,10.06206404796421,0,0,0,0,0,1,1,0,0,0,54.79,55.86,31.24,56.52,8.333333333333334,1,1,0,0,8,4,3,0,1067.5,750355.860191385,521050.9560301912,194139.0184698991,0,1211.79054989562 -9536,11744,21320,21322,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.747497833407215,7.759421737021526,0,25,-2,-128.5236306533694,0,2,1,2019,7,0,21,22,1,0,0,13.9225725382213,13.9225725382213,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,7,2,5,1,798.5,468994.8613289301,-31551.73751982975,501504.9884168709,345834.6292419719,8095.193803589418 -9536,11744,21321,-9,21320,21322,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1057.506408401633,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,798.5,468994.8613289301,-31551.73751982975,501504.9884168709,345834.6292419719,8095.193803589418 -9536,11744,21322,21320,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.681265207053627,9.48092655897913,0,25,2,133.1588137737917,0,1,1,2019,12,1,56,55,1,1,0,35.20066617019062,35.20066617019062,0,0,0,0,0,0,0,0,2.826756699351489,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,798.5,468994.8613289301,-31551.73751982975,501504.9884168709,345834.6292419719,8095.193803589418 -9536,11744,21323,-9,21320,21322,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.0756843339391,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,798.5,468994.8613289301,-31551.73751982975,501504.9884168709,345834.6292419719,8095.193803589418 -9536,11745,21324,-9,21320,21322,1,1,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1045.412186937538,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,2,1,1,622,0,0,0,0,0 -9537,11746,21325,21326,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.920926155025763,8.912053715730494,7.165102407486822,7,-3,-11.07988548123467,0,3,3,2019,16,4,39,37,1,4,0,24.44812024683039,24.44812024683039,0,0,0,0,0,1,1,0,2.932484172107204,7.398056818872384,44.45,48.37,63.56,36.87,5,1,1,0,0,10,2,5,1,440.5,766382.1176387053,519925.791107429,143605.1027165296,30996.54594146103,3456.554923984103 -9537,11746,21326,21325,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,2.165448153096059,1.93893352216726,7,3,-184.2652360015319,0,3,3,2019,11,0,0,2,4,0,0,0,0,0,0,0,0,7,1,1,0,1.789456941149866,1.757923936111948,63.56,36.87,44.45,48.37,10,1,1,0,0,2,2,5,1,440.5,766382.1176387053,519925.791107429,143605.1027165296,30996.54594146103,3456.554923984103 -9538,11747,21327,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.224400937389994,8.283736631479423,0,0,0,-1045.029528586414,0,2,2,2019,9,0,42,48,1,1,0,9.146539861578573,9.146539861578573,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,9,7,4,1,300,246019.5923313831,0,0,0,1539.919228033263 -9539,11748,21328,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.093080707679934,5.210012767811409,0,0,-1066.303376389639,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.803242164876235,5.146272552159325,64.47,51.45,-9,-9,10,1,1,0,0,0,12,2,1,1954,186591.4749055452,53125.4131232186,115389.0992744508,0,-193.4989443874371 -9540,11749,21329,21330,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,3.173621030128347,3.51107806504322,55,-5,-61.53957283300498,0,-9,-9,2019,7,0,0,16,4,0,0,0,0,1,0,39.26041604702415,0,0,1,1,0,3.640851582753677,3.220957539028761,65.48999999999999,23.7,59.7,43.01,10,1,1,0,0,11,8,2,1,460.5,0,0,0,0,1052.271245635076 -9540,11749,21330,21329,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,55,5,-103.6843836109512,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.866730733361576,0,59.7,43.01,65.48999999999999,23.7,10,1,1,0,0,10,8,2,1,460.5,0,0,0,0,1052.271245635076 -9541,11750,21331,21332,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.824905363814493,7.84285214013902,0,7,-6,24.61178905696618,0,-9,-9,2019,12,3,40,37,1,3,0,7.290587691016495,7.290587691016495,0,0,0,0,0,0,0,0,.6795772768800067,0,41.14,36.85,44.19,58.01,6.666666666666667,1,1,0,0,7,2,4,1,609,330823.9672216453,231912.6175852498,113459.9716751451,-2504.811061113457,1608.619802392783 -9541,11750,21332,21331,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.651267292031571,8.013827624267442,0,7,6,183.6139157592676,0,-9,-9,2019,11,0,32,30,1,0,0,8.433888429952251,8.433888429952251,0,0,0,0,0,0,0,0,0,0,44.19,58.01,41.14,36.85,8.333333333333334,1,1,0,0,11,2,4,1,609,330823.9672216453,231912.6175852498,113459.9716751451,-2504.811061113457,1608.619802392783 -9542,11751,21333,21334,-9,-9,1,0,37,1,1,0,1,1,-9,0,5,9.231112296734619,9.090200192263339,0,1,1,23.06483088807457,-9,-9,-9,2019,8,0,50,0,1,0,0,25.6666224057367,25.6666224057367,0,0,0,0,0,1,1,0,3.329590019797513,0,48.96,60.26,49.34,58.54,8.333333333333334,1,1,0,0,4,7,5,1,350.3333333333333,353303.7440075039,140807.268332908,292343.562389807,139872.9947992077,6377.523462946723 -9542,11751,21334,21333,-9,-9,1,1,36,1,1,0,1,1,-9,0,5,7.93354999021677,8.465159579459046,0,1,-1,-80.1365119127769,0,2,1,2019,13,4,1,30,1,4,0,400.7599939609374,400.7599939609374,0,0,0,0,0,1,1,0,8.139715808881858,0,49.34,58.54,48.96,60.26,6.666666666666667,1,1,0,0,9,7,5,1,350.3333333333333,353303.7440075039,140807.268332908,292343.562389807,139872.9947992077,6377.523462946723 -9542,11751,21335,-9,21333,21334,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.3285580542588,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,350.3333333333333,353303.7440075039,140807.268332908,292343.562389807,139872.9947992077,6377.523462946723 -9543,11752,21336,-9,21337,21341,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1018.593611123412,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9543,11752,21337,21341,-9,-9,1,0,29,1,4,0,3,3,-9,0,2,0,0,0,3,-12,22.98360504850527,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,2.73,57.43,43.38,52.86,6.666666666666667,1,1,0,0,0,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9543,11752,21338,-9,21337,21341,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.685774128827,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9543,11752,21339,-9,21337,21341,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.423361893068,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9543,11752,21340,-9,21337,21341,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.8876542209262,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9543,11752,21341,21337,-9,-9,1,1,41,1,4,0,2,2,-9,0,3,8.970915937729206,8.931811074056203,0,3,12,-66.61403199680775,0,2,2,2019,16,6,37,48,1,6,0,25.72412177169429,25.72412177169429,0,0,0,0,0,1,1,0,0,0,43.38,52.86,2.73,57.43,3.333333333333333,1,1,0,1,5,2,3,0,823.3333333333334,291732.4461611557,318832.1835991152,111747.6805630365,85630.49731714465,5135.911014385253 -9544,11753,21342,-9,-9,-9,1,1,60,0,1,0,2,2,-9,0,2,8.689593830764448,8.872197468824732,0,0,0,-988.5158166250226,0,-9,-9,2019,11,0,30,25,1,0,0,30.97821777685471,30.97821777685471,0,0,0,0,0,0,0,0,2.23474146588141,0,37.66,42.53,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,851.5,630768.8021958438,234785.9667758182,280768.9226019087,60642.39932794753,2935.151033216791 -9544,11753,21343,-9,-9,21342,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.347911835272,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,851.5,630768.8021958438,234785.9667758182,280768.9226019087,60642.39932794753,2935.151033216791 -9544,11754,21344,-9,-9,21342,1,1,21,0,1,0,1,1,1,0,3,7.275561723567122,7.54484121169088,7.40551175623605,0,0,-1047.186366300929,-9,-9,2,2019,13,2,40,0,1,2,1,2.732619367969362,2.732619367969362,0,0,0,0,0,0,0,0,7.611521099589937,0,30.75,61.56,-9,-9,5,1,1,0,0,0,6,4,1,394,63035.93123687151,0,0,0,1690.235770193144 -9545,11755,21345,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.457634850118515,8.498609076389995,0,0,0,-996.8968327992508,0,3,3,2019,25,12,37,38,1,12,0,12.69065538340656,12.69065538340656,0,0,0,0,0,1,1,0,.3120269290188104,0,29.72,54.5,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,399,1126578.910207953,746156.1166296984,243040.8159223797,0,1479.535373587335 -9546,11756,21346,21347,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.200374727138104,6.25329926175243,45,-2,-99.9970837535629,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.13339968768573,6.337189932993702,48.87,58.55,45.85,61.26,8.333333333333334,1,1,0,0,4,4,5,1,784.5,2227320.23428422,777036.2642176334,712681.2734827192,0,2898.628161651045 -9546,11756,21347,21346,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.334233770411902,8.622051976159391,7.801592881823352,45,2,74.1496844188687,0,-9,-9,2019,10,0,38,38,1,0,0,15.02896670731403,15.02896670731403,0,0,0,0,0,1,1,0,5.082357287404544,8.271198233219787,45.85,61.26,48.87,58.55,8.333333333333334,1,1,0,0,10,4,5,1,784.5,2227320.23428422,777036.2642176334,712681.2734827192,0,2898.628161651045 -9547,11757,21348,21349,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.051070333741638,7.825169596608627,0,30,0,-21.55418544583827,-9,-9,-9,2019,10,0,33,0,1,1,0,11.34745465365535,11.34745465365535,0,0,0,0,0,0,0,0,0,0,51,49,33.07,55.18,7,1,1,0,0,1,4,3,0,248.5,914986.9940709134,643954.7950399695,133210.9904123317,0,1131.623627188947 -9547,11757,21349,21348,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,30,0,6.538789435844053,-9,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,0,0,0,0,0,33.07,55.18,51,49,8.333333333333334,1,1,0,0,6,4,3,0,248.5,914986.9940709134,643954.7950399695,133210.9904123317,0,1131.623627188947 -9548,11758,21350,21351,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.63238124362176,7.587263358729435,0,2,0,-56.93580575354669,0,-9,-9,2019,6,0,25,30,1,0,0,9.501890791161845,9.501890791161845,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,8,9,3,1,966.5,-69588.33114471589,0,192295.6159418173,136403.9500347059,1538.369903849424 -9548,11758,21351,21350,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.29951914039557,7.073030526428272,0,2,0,-2.54448291108212,0,-9,-9,2019,6,0,33,40,1,0,0,4.857282851287362,4.857282851287362,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,8,9,3,1,966.5,-69588.33114471589,0,192295.6159418173,136403.9500347059,1538.369903849424 -9549,11759,21352,-9,-9,-9,1,1,22,0,0,1,1,0,-9,0,5,0,0,0,0,0,-1014.611321906912,-9,1,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.513752658340155,0,62.39,56.71,-9,-9,10,1,1,0,0,6,11,2,1,516,100515.8842600337,0,0,0,490.5931932364994 -9550,11760,21353,21354,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.827403983402497,5.268759605221706,5,-8,-26.88731895254293,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,4.769998871502239,0,0,1,1,0,0,5.165215141128962,44.25,39.12,56.94,36.17,3.333333333333333,1,1,0,0,0,9,2,1,256.5,390376.6556551889,45106.44472982651,235332.8224562397,0,3419.764719221993 -9550,11760,21354,21353,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.27376880443487,4.970911172913159,5,8,59.59186094797359,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.737266960616916,5.224002865328109,56.94,36.17,44.25,39.12,10,1,1,0,0,0,9,2,1,256.5,390376.6556551889,45106.44472982651,235332.8224562397,0,3419.764719221993 -9551,11761,21355,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.468768175967234,7.4625731013664,0,0,-964.2441622713582,0,2,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.429723325129796,7.289703763922614,40.14,24.96,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,679,64894.2955968126,107944.480755624,132392.9737823856,56764.49763132364,1815.241820981375 -9552,11762,21356,-9,21358,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.053543419648,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1008,0,0,0,0,1098.702192031988 -9552,11762,21357,-9,21358,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.868545031197,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1008,0,0,0,0,1098.702192031988 -9552,11762,21358,-9,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,0,0,-998.4647922411805,-9,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,57.02,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,1008,0,0,0,0,1098.702192031988 -9552,11762,21359,-9,21358,-9,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.2937444438478,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1008,0,0,0,0,1098.702192031988 -9553,11763,21360,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.99854718045929,6.255730338996332,0,0,-1082.973149882976,0,3,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.196161587325275,53.48,31.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,2335,208357.4320992887,64254.88275672033,0,0,1593.336536615951 -9554,11764,21361,-9,21362,21364,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-900.8753540879181,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,698.2,602189.8784583069,511476.7670893547,310126.0699017119,204825.916359107,6239.017748042109 -9554,11764,21362,21364,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,6.137248769634097,6.36560089770399,0,16,-2,-52.3799913076044,0,2,2,2019,14,4,25,0,1,4,0,2.86579076440787,2.86579076440787,0,0,0,0,0,1,1,0,8.210540691669015,0,37.4,66.64,52,55,8.333333333333334,1,1,0,1,1,2,4,1,698.2,602189.8784583069,511476.7670893547,310126.0699017119,204825.916359107,6239.017748042109 -9554,11764,21363,-9,21362,21364,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.625295231082,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,698.2,602189.8784583069,511476.7670893547,310126.0699017119,204825.916359107,6239.017748042109 -9554,11764,21364,21362,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.113281033811958,9.097062778634195,0,6,2,-77.51086456950559,0,-9,-9,2019,9,0,55,70,1,1,0,20.86566681776172,20.86566681776172,0,0,0,0,0,1,1,0,4.066933187011535,0,52,55,37.4,66.64,7,1,1,0,0,1,2,4,1,698.2,602189.8784583069,511476.7670893547,310126.0699017119,204825.916359107,6239.017748042109 -9554,11764,21365,-9,21362,21364,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.5505895362091,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,698.2,602189.8784583069,511476.7670893547,310126.0699017119,204825.916359107,6239.017748042109 -9555,11765,21366,21367,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.414884431309407,8.257768641647521,0,5,1,143.8722983743235,0,-9,-9,2019,9,1,50,80,1,1,0,10.94022209577199,10.94022209577199,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.78,50.87,8.333333333333334,1,1,0,0,6,5,4,1,1332.5,118877.7819152561,6283.547924884166,60890.41094513721,83891.6869792332,1428.853704712875 -9555,11765,21367,21366,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,5,-1,114.9038832497818,1,-9,-9,2019,12,0,0,8,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,50.87,54.2,57.49,6.666666666666667,1,1,0,0,0,5,4,1,1332.5,118877.7819152561,6283.547924884166,60890.41094513721,83891.6869792332,1428.853704712875 -9556,11766,21368,21369,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.711813511186768,6.820819165497057,49,2,-79.65193319251898,0,2,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.776925830711979,51.77,58.57,47.86,41.84,1.666666666666667,1,1,0,0,0,10,3,1,1273.5,218514.3515478598,208102.16692806,0,0,2571.769325951979 -9556,11766,21369,21368,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,6.934166897986473,7.113452004578513,49,-2,98.36536972737854,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.935434622707858,6.981786074976425,47.86,41.84,51.77,58.57,8.333333333333334,1,1,0,0,0,10,3,1,1273.5,218514.3515478598,208102.16692806,0,0,2571.769325951979 -9557,11767,21370,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.377744168430608,8.579488613865363,0,0,0,-964.4704028092115,0,2,-9,2019,6,0,35,35,1,0,0,21.60146659825305,21.60146659825305,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,207,191249.0085384672,17000.05128758079,204922.0287969679,196880.3910308203,1847.601459318981 -9558,11768,21371,-9,21373,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-905.834841100267,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,2,0,1059,66132.09164632927,23938.74928470451,102614.947762956,38480.65553769487,3130.78330370405 -9558,11768,21372,-9,21373,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.525832799525,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,1059,66132.09164632927,23938.74928470451,102614.947762956,38480.65553769487,3130.78330370405 -9558,11768,21373,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.07596344125551,7.273233836848333,0,0,0,-1022.828997195112,0,-9,-9,2019,11,0,30,31,1,0,0,5.290242643019798,5.290242643019798,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,5,2,0,1059,66132.09164632927,23938.74928470451,102614.947762956,38480.65553769487,3130.78330370405 -9558,11768,21374,-9,21373,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1147.406788839041,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,1059,66132.09164632927,23938.74928470451,102614.947762956,38480.65553769487,3130.78330370405 -9559,11769,21375,21376,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.334084927692687,7.521391636553975,0,7,0,1.692654715452892,0,-9,3,2019,5,0,26,22,1,0,0,6.13794490065164,6.13794490065164,0,0,0,0,0,0,0,0,.8941771176613712,0,62.39,56.71,40.47,55.65,6.666666666666667,1,1,0,0,8,10,4,1,795,55475.43686546669,98062.74079632026,123955.9572051952,76821.04598990068,1996.264012256139 -9559,11769,21376,21375,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.07390118592825,8.16275294001502,0,7,0,48.72879031162243,0,3,2,2019,12,4,30,32,1,4,0,14.29977353907344,14.29977353907344,0,0,0,0,0,0,0,0,0,0,40.47,55.65,62.39,56.71,3.333333333333333,1,1,0,0,8,10,4,1,795,55475.43686546669,98062.74079632026,123955.9572051952,76821.04598990068,1996.264012256139 -9559,11770,21377,-9,21375,21376,1,1,18,0,0,0,2,2,-9,0,5,8.014243264881092,7.943654250761985,0,0,0,-848.1906291630598,0,2,3,2019,5,0,40,0,1,0,1,7.637964565683082,7.637964565683082,0,0,0,0,0,0,0,0,1.310454309779203,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,314,12359.33943251755,122446.2440619702,0,0,1560.934220164147 -9560,11771,21378,21379,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.201451405662876,8.125552372083321,0,7,-10,13.57620439816855,0,2,2,2019,12,0,48,48,1,0,0,8.636077421283495,8.636077421283495,0,0,0,0,0,0,0,0,1.655453256664397,0,46.08,57.2,43.36,54.78,6.666666666666667,1,1,0,0,7,2,4,1,251,285580.0944773467,253158.7946958333,126543.5385645526,79697.39857147014,2567.832260280557 -9560,11771,21379,21378,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.957079767810406,8.098213084031292,0,7,10,68.83874219146593,0,3,-9,2019,12,0,37,37,1,0,0,9.62838129288134,9.62838129288134,0,0,0,0,0,0,0,0,3.330418348377698,0,43.36,54.78,46.08,57.2,5,1,1,0,0,7,2,4,1,251,285580.0944773467,253158.7946958333,126543.5385645526,79697.39857147014,2567.832260280557 -9561,11772,21380,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.432229845978935,7.184234122168113,0,0,-1005.156055944922,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.133499023059433,53.16,54.06,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,1349,488650.8255658771,140809.4210437132,213541.2112035859,0,1741.235135575694 -9562,11773,21381,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1065.607228160802,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.1,47.5,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1471,-36811.7761577226,0,0,0,933.9823764330088 -9563,11774,21382,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,1,7.6008861309172,7.784163894993546,5.183032716955347,0,0,-951.7709419384832,0,2,2,2019,20,8,42,0,1,8,0,5.135899611502608,5.135899611502608,0,0,0,0,0,1,1,0,4.782289524899271,0,39.4,27.08,-9,-9,5,1,1,0,1,1,9,3,0,884,-97126.01886083357,0,0,0,4664.859958808187 -9563,11774,21383,-9,21382,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.1334373251923,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,9,3,0,884,-97126.01886083357,0,0,0,4664.859958808187 -9564,11775,21384,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1092.479527207053,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.59,43.02,-9,-9,5,1,1,1,0,0,13,2,0,658,0,0,0,0,872.1424435240373 -9564,11776,21385,-9,21384,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1076.215295074938,-9,2,-9,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,47.91,51.06,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,498,-24275.36531148427,0,0,0,439.0861637903391 -9565,11777,21386,21387,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.730836109615939,6.810061104569492,42,3,-181.3052802308104,0,3,3,2019,13,2,0,50,4,2,0,0,0,0,0,0,3.019385608184043,0,1,1,0,0,6.62502193763298,43.71,56.91,40.75,58.26,6.666666666666667,1,1,0,0,9,10,2,1,143,27089.97401800483,0,0,0,2096.526950616885 -9565,11777,21387,21386,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.769157027855948,6.97532483093351,0,42,-3,-28.17319035406734,0,3,3,2019,17,5,15,20,1,5,0,6.602267207435025,6.602267207435025,0,0,0,0,0,1,1,0,0,0,40.75,58.26,43.71,56.91,5,1,1,0,0,10,10,2,1,143,27089.97401800483,0,0,0,2096.526950616885 -9566,11778,21388,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.837319106795,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.953204632633846,0,56.67,45.45,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,419,294600.8527743006,0,192425.1744175929,0,162.3871223742238 -9567,11779,21389,21390,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,6.771318155575313,6.752129973708619,7,4,157.2642986253773,0,2,1,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.209904439456518,6.453103502367889,32.79,36.53,61.64,32.24,6.666666666666667,1,1,0,0,6,7,4,1,592,1503502.253768274,74645.13995442327,852739.7004898919,0,2918.72597217638 -9567,11779,21390,21389,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.195804211745756,8.341794758969284,6.249826222719411,7,-4,68.44916793045404,0,3,2,2019,11,0,37,34,1,0,0,15.52707942901527,15.52707942901527,1,0,0,0,0,1,1,0,2.677543373670938,6.049131132806941,61.64,32.24,32.79,36.53,8.333333333333334,1,1,0,0,8,7,4,1,592,1503502.253768274,74645.13995442327,852739.7004898919,0,2918.72597217638 -9568,11780,21391,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.936603078763742,9.255928739186245,0,0,-950.5273423521733,-9,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,9.507487914588161,45.32,54.77,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,71,1101760.716606833,475920.9960603001,421938.4260420075,0,5144.669496971639 -9569,11781,21392,-9,21394,21393,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.1607391577051,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,884,634767.4016867668,187738.8270555868,337442.3619466957,129455.5852654298,4852.976339445039 -9569,11781,21393,21394,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.24174939371486,8.32259129425141,0,16,-3,69.14892281514497,0,2,1,2019,11,0,41,19,1,0,0,9.236020289574602,9.236020289574602,0,0,0,0,0,1,1,0,0,0,44.66,57.83,46.27,51.76,8.333333333333334,1,1,0,0,5,4,5,0,884,634767.4016867668,187738.8270555868,337442.3619466957,129455.5852654298,4852.976339445039 -9569,11781,21394,21393,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,9.320528772055523,9.248543538209622,0,7,3,-100.3268500950208,0,1,1,2019,9,3,47,50,1,3,0,24.55677431595014,24.55677431595014,0,0,0,.0515959940933612,0,1,1,0,0,0,46.27,51.76,44.66,57.83,8.333333333333334,1,1,0,0,8,4,5,0,884,634767.4016867668,187738.8270555868,337442.3619466957,129455.5852654298,4852.976339445039 -9570,11782,21395,-9,21396,-9,1,1,42,0,0,0,2,2,-9,0,5,8.680156267016466,8.910523636904859,0,0,0,-1044.501293125306,0,2,-9,2019,6,0,46,40,1,0,0,13.98645270650362,13.98645270650362,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,1360,141282.3681427874,35307.04310338285,101137.0321361219,3551.371993979654,2732.009493383132 -9570,11783,21396,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.313622127347001,6.574454463724187,0,0,-867.0551473703269,0,-9,-9,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.778308272901482,52.4,42.38,-9,-9,5,1,1,0,0,8,4,2,1,738,66872.50548300621,301760.2559759286,0,0,1070.516370510511 -9571,11784,21397,21398,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.962987052607467,8.342780036868209,0,40,-2,-93.84471423857524,0,2,3,2019,6,0,33,42,1,0,0,10.55056496074982,10.55056496074982,0,0,0,0,0,1,1,0,0,0,59.55,43.22,62.4,48.33,6.666666666666667,1,1,0,0,11,10,5,1,2111,897484.0374448465,463326.5409108258,314671.7803634417,0,4259.780746384343 -9571,11784,21398,21397,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.508226064301962,8.64865427548637,0,41,2,83.90771049400183,0,3,3,2019,6,0,48,48,1,0,0,11.57159079812793,11.57159079812793,0,0,0,0,0,1,1,0,0,0,62.4,48.33,59.55,43.22,8.333333333333334,1,1,0,0,11,10,5,1,2111,897484.0374448465,463326.5409108258,314671.7803634417,0,4259.780746384343 -9572,11785,21399,21400,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.937333315491514,8.763780285652839,0,10,-8,-48.47478042088281,0,3,3,2019,11,0,39,43,1,0,0,21.45247723044864,21.45247723044864,0,0,0,0,0,1,1,0,3.558028767727879,0,57.06,57.76,48.18,61.8,6.666666666666667,1,1,0,0,11,5,5,1,675,371621.7127481298,18375.27540492166,326221.6591811777,49212.59161399388,4195.15502715916 -9572,11785,21400,21399,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,7.715587604855029,8.370735182883553,7.321177212513851,10,8,23.7423828555237,0,3,2,2019,10,0,12,12,1,0,0,15.93694700222825,15.93694700222825,0,0,0,0,0,1,1,0,3.173949355167121,7.583474307533618,48.18,61.8,57.06,57.76,8.333333333333334,1,1,0,0,11,5,5,1,675,371621.7127481298,18375.27540492166,326221.6591811777,49212.59161399388,4195.15502715916 -9573,11786,21401,21402,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.348788855569516,6.208326184859819,37,5,34.11174897456245,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.356049946020047,57.18,45.76,63.41,39.7,10,1,1,0,0,5,6,2,1,334,270904.7243630628,173849.1652872761,170516.0235835079,0,2325.950373477547 -9573,11786,21402,21401,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.376509812583532,7.105821835111338,0,38,-5,87.79866562932162,0,1,-9,2019,12,0,45,45,1,0,0,3.675070010093162,3.675070010093162,0,0,0,0,0,1,1,0,0,0,63.41,39.7,57.18,45.76,8.333333333333334,1,1,0,0,8,6,2,1,334,270904.7243630628,173849.1652872761,170516.0235835079,0,2325.950373477547 -9574,11787,21403,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.258249632565529,7.586510956953251,7,5,-56.77759509816744,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.441133268960265,7.790778043153136,60.12,54.8,62.39,56.71,10,1,1,0,0,2,4,3,1,360,717604.7104457673,195449.502158306,236096.0476115633,0,1553.802879063821 -9574,11788,21404,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,7.490161312348863,7.534995127965673,7,-5,-70.69493391383476,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.094046679054429,7.618481433735438,62.39,56.71,60.12,54.8,10,1,1,0,0,6,4,3,1,166,699006.5779067655,458187.4517281664,122114.1642769512,0,1047.399381143007 -9575,11789,21405,21406,-9,-9,1,1,42,0,3,0,1,1,-9,1,3,9.367603017989081,9.548740065903313,0,16,-5,-34.17574141416855,0,3,3,2019,8,2,40,40,1,2,0,35.81561048187198,35.81561048187198,0,0,0,0,0,1,1,0,0,0,45.69,50.77,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,355.3333333333333,207007.5454958234,77360.32121988488,0,0,5047.748540534237 -9575,11789,21406,21405,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,0,0,0,16,5,89.1261528088957,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,57.06,57.76,45.69,50.77,10,1,1,0,0,3,13,5,1,355.3333333333333,207007.5454958234,77360.32121988488,0,0,5047.748540534237 -9575,11789,21407,-9,21406,21405,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.549780361174,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,355.3333333333333,207007.5454958234,77360.32121988488,0,0,5047.748540534237 -9576,11790,21408,21410,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.457278377843647,8.611254065505895,0,17,-5,198.2200062642175,0,3,3,2019,22,8,38,38,1,8,0,14.47980719505564,14.47980719505564,0,0,0,0,0,1,1,0,0,0,28.88,53,31.21,48.06,5,2,3,0,0,13,6,4,1,484.6666666666667,306286.3798695009,86186.48321475944,272252.3277022453,92017.09558921955,5015.190174876842 -9576,11790,21409,-9,21408,21410,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.658487184817,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,6,4,1,484.6666666666667,306286.3798695009,86186.48321475944,272252.3277022453,92017.09558921955,5015.190174876842 -9576,11790,21410,21408,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.008487324071412,8.282962207109916,0,17,5,58.69547890867767,0,3,3,2019,18,7,60,55,1,7,0,6.186879247677429,6.186879247677429,0,0,0,0,7,1,1,0,7.995693914223907,0,31.21,48.06,28.88,53,3.333333333333333,2,3,0,0,11,6,4,1,484.6666666666667,306286.3798695009,86186.48321475944,272252.3277022453,92017.09558921955,5015.190174876842 -9577,11791,21411,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1012.910190659061,0,1,1,2019,26,11,0,35,3,11,0,0,0,0,0,0,0,0,1,1,0,.154647409650071,0,29.66,52.46,-9,-9,1.666666666666667,3,4,0,0,4,8,1,0,364.6666666666667,-17096.01915847823,0,0,0,1996.634614362557 -9577,11791,21412,-9,21411,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-995.1550913686642,-9,2,-9,2019,6,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,8,1,0,364.6666666666667,-17096.01915847823,0,0,0,1996.634614362557 -9577,11791,21413,-9,21411,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-959.032595147277,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,0,0,0,8,1,0,364.6666666666667,-17096.01915847823,0,0,0,1996.634614362557 -9577,11792,21414,-9,21411,-9,1,1,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-924.0101370061864,0,2,-9,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,.1479087631581018,0,26.28,48.89,-9,-9,5,3,4,1,0,1,8,1,0,2001,-134404.5744595892,0,0,0,157.0205080973697 -9578,11793,21415,21417,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,9.206706381724132,9.006846256189261,0,22,2,-103.3393548843552,-9,3,2,2019,7,0,50,0,1,0,0,21.65802303688611,21.65802303688611,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,11,8,5,0,518,896641.9619334898,229725.5796637018,590367.8194947595,20989.429475124,5258.503378553609 -9578,11793,21416,-9,21415,21417,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-919.6507431190838,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,5,0,518,896641.9619334898,229725.5796637018,590367.8194947595,20989.429475124,5258.503378553609 -9578,11793,21417,21415,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.819290913734871,9.10589752663418,0,24,-2,35.9521523535445,-9,-9,-9,2019,9,0,40,0,1,1,0,18.61115776972994,18.61115776972994,0,0,0,0,0,1,1,0,1.94438334873807,0,53,55,57.06,57.76,8,3,4,0,0,1,8,5,0,518,896641.9619334898,229725.5796637018,590367.8194947595,20989.429475124,5258.503378553609 -9578,11793,21418,-9,21415,21417,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-954.5560467503379,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,518,896641.9619334898,229725.5796637018,590367.8194947595,20989.429475124,5258.503378553609 -9579,11794,21419,21422,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,19,-11,-49.57872498359526,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,55.39,57.33,53.46,5,2,3,0,0,0,8,2,0,507.2,699057.8442885025,0,606581.4736680698,33088.87959960094,2397.367572414597 -9579,11794,21420,-9,21419,21422,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.0052207508209,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,507.2,699057.8442885025,0,606581.4736680698,33088.87959960094,2397.367572414597 -9579,11794,21421,-9,21419,21422,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1035.097264406623,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,0,507.2,699057.8442885025,0,606581.4736680698,33088.87959960094,2397.367572414597 -9579,11794,21422,21419,-9,-9,1,1,50,0,3,0,3,3,-9,0,3,7.173388693122845,7.116377098651863,0,18,11,-94.91181730649595,0,3,2,2019,6,0,30,30,1,0,0,4.481812019351668,4.481812019351668,0,0,0,0,0,1,1,0,0,0,57.33,53.46,38.15,55.39,8.333333333333334,2,3,0,0,12,8,2,0,507.2,699057.8442885025,0,606581.4736680698,33088.87959960094,2397.367572414597 -9579,11794,21423,-9,21419,21422,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.7496933307009,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.3753296811321011,0,53.86,57.86,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,507.2,699057.8442885025,0,606581.4736680698,33088.87959960094,2397.367572414597 -9580,11795,21424,-9,21425,21426,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.156917884796,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,310.6666666666667,4691.133390745759,-7249.379615329774,0,0,1732.988622651352 -9580,11795,21425,21426,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.877421989186135,7.137060211605916,0,3,1,-152.6060811424389,0,3,2,2019,10,0,25,20,1,0,0,6.278835675965107,6.278835675965107,0,0,0,0,0,1,1,0,0,0,47.49,55.02,55.96,49.93,8.333333333333334,1,1,0,0,7,2,3,1,310.6666666666667,4691.133390745759,-7249.379615329774,0,0,1732.988622651352 -9580,11795,21426,21425,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,7.676398103800995,8.39088941060775,0,3,-1,-23.12190264997714,0,-9,-9,2019,6,0,40,43,1,0,0,8.243586348533979,8.243586348533979,0,0,0,0,0,1,1,0,0,0,55.96,49.93,47.49,55.02,8.333333333333334,1,1,0,0,5,2,3,1,310.6666666666667,4691.133390745759,-7249.379615329774,0,0,1732.988622651352 -9581,11796,21427,21428,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.55661678660375,6.780980787028409,54,-2,59.92005155060676,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.848496241705861,41.79,36.16,66.47,43.77,8.333333333333334,1,1,0,0,0,12,3,1,974,1149088.107726213,529790.1249765611,230187.5796331594,0,2520.035592733409 -9581,11796,21428,21427,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.557347127227256,7.351500840099523,54,2,-17.58879530149914,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.416884597252853,7.093005896381846,66.47,43.77,41.79,36.16,10,1,1,0,0,7,12,3,1,974,1149088.107726213,529790.1249765611,230187.5796331594,0,2520.035592733409 -9582,11797,21429,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1038.96838102734,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,13,2,0,734,504308.1354282399,240113.8019868215,109722.0883096884,0,1416.164124856953 -9583,11798,21430,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.344398534502956,6.163972939470405,0,0,-855.2604093386617,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,5.833037327404782,0,43.06106500427631,0,1,1,0,3.17732665408473,6.665450992215208,51.41,45.41,-9,-9,5,1,1,0,0,0,1,2,1,1978,34193.76932835123,42070.95485519351,0,0,1067.609658940596 -9584,11799,21431,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.984472701186213,7.63298186442139,0,0,0,-1000.482625047364,0,3,3,2019,10,0,36,36,1,1,0,8.361270933447454,8.361270933447454,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,8,1,1,0,0,9,13,3,0,307,156449.6978594959,-19255.34903550406,0,0,845.4651399234384 -9585,11800,21432,-9,21433,21435,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.361241839867,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,586.25,52850.43889383097,60871.85865962641,168019.3312041138,120399.333351865,3779.540368003953 -9585,11800,21433,21435,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.748244015799308,7.75535420474884,0,16,1,.717724383848156,0,1,1,2019,14,2,47,40,1,2,0,6.503436611875852,6.503436611875852,0,0,0,0,0,0,0,0,2.610083341363828,0,45.91,59.89,61.52,45.11,5,1,1,0,0,8,6,5,0,586.25,52850.43889383097,60871.85865962641,168019.3312041138,120399.333351865,3779.540368003953 -9585,11800,21434,-9,21433,21435,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.0274624684433,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,586.25,52850.43889383097,60871.85865962641,168019.3312041138,120399.333351865,3779.540368003953 -9585,11800,21435,21433,-9,-9,1,1,37,0,2,0,1,1,-9,0,2,8.723959682778782,8.887532191916,0,16,-1,6.813712465375154,0,3,2,2019,8,0,38,48,1,0,0,23.15905491168798,23.15905491168798,0,0,0,0,0,0,0,0,0,0,61.52,45.11,45.91,59.89,8.333333333333334,1,1,0,0,10,6,5,0,586.25,52850.43889383097,60871.85865962641,168019.3312041138,120399.333351865,3779.540368003953 -9586,11801,21436,21437,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,6.877381564063374,6.927224738211052,0,26,-6,57.13156608971624,0,-9,-9,2019,4,1,25,27,1,1,0,5.383396198977916,5.383396198977916,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53,55,10,2,3,0,0,6,1,4,1,193.5,17974.36020115633,179548.4735843816,0,0,1403.846987947241 -9586,11801,21437,21436,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.097471599102475,8.103469200130096,0,7,6,20.56476694757878,0,-9,-9,2019,9,0,39,40,1,1,0,8.565090633463015,8.565090633463015,0,0,0,0,0,0,0,0,0,0,53,55,57.06,57.76,8,2,3,0,0,1,1,4,1,193.5,17974.36020115633,179548.4735843816,0,0,1403.846987947241 -9586,11802,21438,-9,21436,21437,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-951.8900186970327,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,2,1,1,1,464,-26391.00650893317,0,0,0,0 -9586,11803,21439,-9,21436,21437,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1100.514059263602,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,1,2,1,1029,0,0,0,0,478.3747060872617 -9587,11804,21440,21442,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,7.603560125706881,7.447325950367623,0,25,-3,-94.01257497012796,0,3,2,2019,15,3,30,30,1,3,0,6.702601088184874,6.702601088184874,0,0,0,0,0,1,1,0,0,0,33.65,42.47,52,55,5,1,1,0,0,12,9,4,1,643.5,601995.7288945294,349013.986501069,241471.6398251484,351.0264754399695,3505.06431386443 -9587,11804,21441,-9,21440,21442,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1071.377101800232,-9,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.04,47.04,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,643.5,601995.7288945294,349013.986501069,241471.6398251484,351.0264754399695,3505.06431386443 -9587,11804,21442,21440,-9,-9,1,1,51,0,1,0,3,3,-9,0,4,8.887827136706992,8.619254986122865,0,11,3,87.99372770801685,-9,-9,-9,2019,9,0,48,0,1,1,0,17.06797650078056,17.06797650078056,0,0,0,0,0,1,1,0,0,0,52,55,33.65,42.47,8,1,1,0,0,13,9,4,1,643.5,601995.7288945294,349013.986501069,241471.6398251484,351.0264754399695,3505.06431386443 -9587,11804,21443,-9,21440,21442,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.832531854985,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,643.5,601995.7288945294,349013.986501069,241471.6398251484,351.0264754399695,3505.06431386443 -9588,11805,21444,21445,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.109211627244139,5.074808196672204,31,-5,-16.94251411784047,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.673094898168638,5.021096277991612,53.53,51,55.28,51.42,10,1,1,0,0,0,7,2,1,1759,741043.9043690081,100070.4661231394,267013.5719737206,0,1473.076439243887 -9588,11805,21445,21444,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.664540487265498,5.872186362646595,6,5,-97.07360485571763,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.538799549551917,55.28,51.42,53.53,51,8.333333333333334,1,1,0,0,3,7,2,1,1759,741043.9043690081,100070.4661231394,267013.5719737206,0,1473.076439243887 -9589,11806,21446,21448,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.590641367449813,8.716940059497018,0,9,7,-3.537936364910916,0,2,1,2019,9,0,40,55,1,0,0,18.01888479999423,18.01888479999423,0,0,0,0,2,1,1,0,1.900344668100033,0,51.47,53.17,58.75,48.57,8.333333333333334,1,1,0,0,8,10,5,1,1817.666666666667,476097.4080965595,187139.5556153923,528754.7226805956,254031.6976176105,5265.155265579636 -9589,11806,21447,-9,21448,21446,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.132937628581,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,1817.666666666667,476097.4080965595,187139.5556153923,528754.7226805956,254031.6976176105,5265.155265579636 -9589,11806,21448,21446,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.971700846109149,8.8776804999563,0,9,-7,130.642616217864,0,-9,-9,2019,11,2,39,33,1,2,0,26.95476826988346,26.95476826988346,0,0,0,0,0,1,1,0,0,0,58.75,48.57,51.47,53.17,8.333333333333334,1,1,0,0,10,10,5,1,1817.666666666667,476097.4080965595,187139.5556153923,528754.7226805956,254031.6976176105,5265.155265579636 -9590,11807,21449,-9,-9,21450,1,0,59,0,0,0,2,2,-9,0,4,7.662491503445915,7.569320976198168,0,0,0,-938.1831604036449,0,2,2,2019,11,1,38,28,1,1,0,7.900649604817688,7.900649604817688,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,1910,539238.2881509559,134919.5638171055,188647.1523090227,0,719.6651094472735 -9590,11808,21450,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,0,0,0,0,-962.4591749701964,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.3,22.27,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1035,-100127.5078737423,0,0,0,741.1315222402122 -9591,11809,21451,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,5.579630672469314,6.15284655888038,0,0,-921.2670906816358,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,3.518477307113751,5.854434042256027,27.75634547115652,0,1,1,0,2.17266571968811,5.845861798247661,40.47,24.04,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,357,-80262.23330860218,15271.91716287134,0,0,933.2806682787295 -9592,11810,21452,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.852754414598317,5.682886951963947,0,0,-987.2194403974329,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,4.697734739072742,21.11425511818895,0,0,1,1,0,0,5.776174169219615,50.61,35.98,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,423,549696.0847924317,89586.64781574732,185331.6385822413,0,225.6407950738774 -9593,11811,21453,-9,21454,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.972679549538,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,813.6666666666666,1679.391713556958,-50974.21871510872,90317.70667615552,114869.4200766412,2182.911948145306 -9593,11811,21454,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.581060377859325,8.785145488592196,0,12,2,122.2911213523877,0,2,1,2019,11,0,43,43,1,0,0,13.6752169738843,13.6752169738843,0,0,0,0,0,1,1,0,0,0,30.67,65.95,41.17,59.31,8.333333333333334,1,1,0,0,11,2,4,1,813.6666666666666,1679.391713556958,-50974.21871510872,90317.70667615552,114869.4200766412,2182.911948145306 -9593,11811,21455,-9,21454,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.3413651648119,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,813.6666666666666,1679.391713556958,-50974.21871510872,90317.70667615552,114869.4200766412,2182.911948145306 -9593,11812,21456,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.049988387568273,8.133420471373496,0,12,-2,-35.5878079915352,0,3,3,2019,5,0,20,19,1,0,0,23.0483054794792,23.0483054794792,0,0,0,0,0,1,1,0,0,0,41.17,59.31,30.67,65.95,8.333333333333334,1,1,0,0,5,2,4,1,310,103169.7027039995,69540.14752030463,0,0,815.9337617979085 -9594,11813,21457,21458,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,0,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,40.91,32.91,47.14,8.333333333333334,1,1,0,0,0,13,1,1,735,211240.2689051381,25443.96844912613,190347.3472989697,0,1083.094130774467 -9594,11813,21458,21457,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,7,9,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.91,47.14,49.41,40.91,6.666666666666667,1,1,0,0,0,13,1,1,735,211240.2689051381,25443.96844912613,190347.3472989697,0,1083.094130774467 -9595,11814,21459,21460,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.261899856563195,6.182899989182696,53,0,-77.50808812146281,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.595873875579315,60.28,23.75,59.07,40.19,6.666666666666667,1,1,0,0,0,1,2,1,873,457082.4941081511,62646.43867614029,330385.4102778488,8807.130631323755,1260.148743559296 -9595,11814,21460,21459,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.477811552541217,5.574807936178834,53,0,-42.66563339814847,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.742378757453049,5.268321578493015,59.07,40.19,60.28,23.75,10,1,1,0,0,2,1,2,1,873,457082.4941081511,62646.43867614029,330385.4102778488,8807.130631323755,1260.148743559296 -9596,11815,21461,21462,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.034328958146379,6.822881346326263,6,4,-81.80065028370772,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.552434233065707,6.909364731442251,52,48,49,48,7,1,1,0,0,0,4,3,1,957,880613.0254788942,600558.3053044889,231301.2200970136,0,2210.957131643309 -9596,11815,21462,21461,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.419955795213197,7.32695357204243,6,-4,109.2510450784023,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.891344892816746,7.209409766184623,49,48,52,48,7,1,1,0,0,4,4,3,1,957,880613.0254788942,600558.3053044889,231301.2200970136,0,2210.957131643309 -9597,11816,21463,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.348038611925157,8.092632338336173,0,0,0,-912.4475853439194,0,3,3,2019,16,4,37,40,1,4,0,12.671602294175,12.671602294175,0,0,0,0,0,0,0,0,0,0,23.88,51.85,-9,-9,3.333333333333333,1,1,0,0,9,2,4,0,455,367334.385550572,378126.831036126,66333.82099072181,0,1310.702467806091 -9598,11817,21464,21465,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.790198173475368,8.208192093203159,0,4,-12,-15.65399114991788,0,3,3,2019,23,9,39,39,1,9,0,6.345072054562756,6.345072054562756,0,0,0,0,14.5,0,0,0,0,0,35.78,55.1,28.81,55.69,3.333333333333333,1,1,0,0,9,9,3,0,478,73245.68994307793,0,165512.55729473,12592.08776940224,521.1015714527304 -9598,11817,21465,21464,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,0,0,0,4,12,131.5952552849353,0,-9,-9,2019,12,1,0,39,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,28.81,55.69,35.78,55.1,5,1,1,1,0,9,9,3,0,478,73245.68994307793,0,165512.55729473,12592.08776940224,521.1015714527304 -9599,11818,21466,-9,21468,21467,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.220182461768,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,854,-56336.69287179269,19128.10671465524,94225.27826848665,104378.378397663,2181.447853719119 -9599,11818,21467,21468,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,8.029836316180969,7.58102592482314,0,4,0,-173.7104787620411,0,2,3,2019,9,0,42,56,1,0,0,6.256209821784906,6.256209821784906,0,0,0,0,0,1,1,0,0,0,37.17,54.55,26.01,61.11,3.333333333333333,1,1,0,0,4,13,3,0,854,-56336.69287179269,19128.10671465524,94225.27826848665,104378.378397663,2181.447853719119 -9599,11818,21468,21467,-9,-9,1,0,24,0,1,0,1,1,-9,0,3,7.076303657655344,7.344535228411101,0,4,0,-67.3126565813978,0,-9,-9,2019,14,2,11,11,1,2,0,14.15213284034342,14.15213284034342,0,0,0,0,0,1,1,0,0,0,26.01,61.11,37.17,54.55,3.333333333333333,1,1,0,0,8,13,3,0,854,-56336.69287179269,19128.10671465524,94225.27826848665,104378.378397663,2181.447853719119 -9600,11819,21469,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.441202441936,5.57818739588177,0,0,-1021.799055159457,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,34.48677975865652,0,0,1,1,0,0,5.51081998480372,54,46,-9,-9,8,1,1,0,1,0,13,2,0,635,176575.8947657528,-75797.95450648785,144704.4687526604,0,1907.601346089383 -9601,11820,21470,21471,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,3.788132378243454,3.675726451332716,46,4,46.18594897165271,0,-9,-9,2019,6,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,3.720409597570829,3.869882627369218,53.99,48.04,52,53,10,1,1,0,0,11,1,2,0,346,601760.6259831784,226031.1131465984,253023.7851080918,0,1351.66659404655 -9601,11820,21471,21470,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.195160562654038,7.241843854885132,6.941582127636056,46,-4,-48.75110520473962,0,3,3,2019,7,0,6,6,1,0,0,9.054777238036182,9.054777238036182,0,0,0,0,0,1,1,0,0,6.517328447360116,52,53,53.99,48.04,8.333333333333334,1,1,0,0,9,1,2,0,346,601760.6259831784,226031.1131465984,253023.7851080918,0,1351.66659404655 -9602,11821,21472,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.985661828553003,8.131734007221343,0,3,2,-122.8996147509204,0,1,1,2019,9,0,50,38,1,0,0,9.131080022601472,9.131080022601472,0,0,0,0,0,0,0,0,3.724485165429412,0,45.6,55.82,48,57,3.333333333333333,1,1,0,0,8,7,5,0,309,15442.74528122213,-27361.96071086456,361894.7424051675,166289.1199847487,1170.521506611219 -9602,11822,21473,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.408156241401572,8.479349239078472,0,3,-2,52.6539025948357,0,-9,-9,2019,11,0,35,40,1,2,0,12.70101850751082,12.70101850751082,0,0,0,0,0,0,0,0,0,0,48,57,45.6,55.82,7,4,1,0,0,1,7,5,0,1658,53522.30356067164,89979.66755236175,0,0,2728.345626004148 -9603,11823,21474,-9,21475,-9,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-802.9910481598303,-9,1,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.59,59.97,-9,-9,8.333333333333334,4,2,0,0,1,9,5,1,853,130961.7621258681,-21236.3749040029,146024.0765661972,74012.08760351923,3339.679239712518 -9603,11823,21475,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.582053763910391,8.944532512444651,8.233152908210192,0,0,-927.5697266053218,0,2,3,2019,10,1,54,35,1,1,0,11.29396493991203,11.29396493991203,0,0,0,0,0,1,1,0,8.165665552876055,0,51.17,49.39,-9,-9,8.333333333333334,3,4,0,0,6,9,5,1,853,130961.7621258681,-21236.3749040029,146024.0765661972,74012.08760351923,3339.679239712518 -9603,11823,21476,-9,21475,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.3526071751178,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,5,1,853,130961.7621258681,-21236.3749040029,146024.0765661972,74012.08760351923,3339.679239712518 -9604,11824,21477,21478,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,7.338065561196847,7.314209561156403,8,6,53.43319824660966,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,5.085098826450077,0,0,1,1,0,.4098017789389226,7.741555237225724,57,19,62.1,51.16,10,1,1,0,0,0,9,2,1,1230.5,561095.0027654297,124903.1047337045,369611.19627826,0,2549.50620130118 -9604,11824,21478,21477,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,3.581818229638642,3.626214482619746,26,-6,-29.48270534571818,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.989753397572356,3.751734809114506,62.1,51.16,57,19,10,1,1,0,0,0,9,2,1,1230.5,561095.0027654297,124903.1047337045,369611.19627826,0,2549.50620130118 -9605,11825,21479,21480,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.335761695754119,8.351314730201315,0,2,4,167.3127312082603,0,2,2,2019,18,6,42,44,1,6,0,10.67818227684367,10.67818227684367,0,0,0,0,0,0,0,0,2.41321621654483,0,32.48,59.49,43.66,51.13,8.333333333333334,1,1,0,0,7,6,5,1,842,84765.04722164322,0,0,0,2935.170407528498 -9605,11825,21480,21479,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.477209706545885,8.064927972683407,0,2,-4,72.18079438505364,0,-9,-9,2019,11,2,40,40,1,2,0,13.15438659561778,13.15438659561778,0,0,0,0,0,0,0,0,0,0,43.66,51.13,32.48,59.49,8.333333333333334,1,1,0,0,3,6,5,1,842,84765.04722164322,0,0,0,2935.170407528498 -9606,11826,21481,-9,21482,21483,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.9830545526306,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,1,355.6666666666667,57663.31887119301,172975.9344676861,0,0,2852.76548151587 -9606,11826,21482,21483,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,8.094341570690798,7.785542562613307,0,19,-13,82.71743768748601,0,2,3,2019,14,2,27,27,1,2,0,13.25233512127258,13.25233512127258,0,0,0,0,0,1,1,0,0,0,57.49,42.39,46.61,56.93,8.333333333333334,3,4,0,0,9,8,3,1,355.6666666666667,57663.31887119301,172975.9344676861,0,0,2852.76548151587 -9606,11826,21483,21482,-9,-9,1,1,58,0,3,0,2,2,-9,0,3,7.500818591288405,7.551985106840629,0,19,13,-29.01723067810055,0,2,2,2019,10,1,35,45,1,1,0,7.497934491166414,7.497934491166414,0,0,0,0,0,1,1,0,2.277678453202967,0,46.61,56.93,57.49,42.39,6.666666666666667,3,4,0,0,9,8,3,1,355.6666666666667,57663.31887119301,172975.9344676861,0,0,2852.76548151587 -9607,11827,21484,-9,21486,21485,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.911967349026,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,6,5,1,1260.75,1012207.529471463,897238.3382067801,452693.4288538253,322618.3467537899,6592.409688341652 -9607,11827,21485,21486,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,9.491567798006331,9.552184591353052,0,5,4,-189.8196433750706,0,-9,-9,2019,10,0,60,70,1,0,0,28.0924888714937,28.0924888714937,0,0,0,0,0,0,0,0,7.130938976148457,0,36.18,42.97,40.48,62.56,3.333333333333333,2,3,0,0,12,6,5,1,1260.75,1012207.529471463,897238.3382067801,452693.4288538253,322618.3467537899,6592.409688341652 -9607,11827,21486,21485,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,8.839295867179256,8.489057745810216,0,10,-4,62.17710058176553,0,1,3,2019,15,3,25,60,1,3,0,38.06774109359342,38.06774109359342,0,0,0,0,0,0,0,0,0,0,40.48,62.56,36.18,42.97,5,2,3,0,0,10,6,5,1,1260.75,1012207.529471463,897238.3382067801,452693.4288538253,322618.3467537899,6592.409688341652 -9607,11827,21487,-9,21486,21485,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-818.2215122304804,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,1,1260.75,1012207.529471463,897238.3382067801,452693.4288538253,322618.3467537899,6592.409688341652 -9608,11828,21488,-9,21489,21491,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-882.757716222827,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,301.75,239992.8480394688,0,0,0,4510.175639086495 -9608,11828,21489,21491,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.146836155844779,7.549221975215104,5.936192260891445,7,0,-34.98207183197646,0,2,2,2019,13,2,14,0,1,2,0,11.13268618036246,11.13268618036246,0,0,0,0,0,1,1,0,5.553210708743312,0,38.3,62.37,62.45,40.09,8.333333333333334,1,1,0,0,7,10,5,1,301.75,239992.8480394688,0,0,0,4510.175639086495 -9608,11828,21490,-9,21489,21491,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.0420556859157,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,301.75,239992.8480394688,0,0,0,4510.175639086495 -9608,11828,21491,21489,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.144563445537381,8.798230970175542,0,7,0,-24.66465681345786,0,1,1,2019,8,0,41,41,1,0,0,24.3479756455226,24.3479756455226,0,0,0,0,0,1,1,0,2.300418189003536,0,62.45,40.09,38.3,62.37,8.333333333333334,1,1,0,0,7,10,5,1,301.75,239992.8480394688,0,0,0,4510.175639086495 -9609,11829,21492,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,2.777077678522595,2.989904888032405,0,0,-1044.986414273415,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,2.476338680977911,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,2,0,673,323381.385787603,70081.68692459729,219553.4530245158,0,1479.086309444656 -9610,11830,21493,-9,21494,21495,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.248538204191,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,379.3333333333333,25653.9683052543,-37927.2297844498,0,0,3117.490424101581 -9610,11830,21494,21495,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.924372034989509,7.896633126255906,0,11,6,4.275336200225333,0,3,3,2019,8,0,37,34,1,0,0,9.496534474952048,9.496534474952048,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.85,52.08,1.666666666666667,3,4,0,0,9,7,4,1,379.3333333333333,25653.9683052543,-37927.2297844498,0,0,3117.490424101581 -9610,11830,21495,21494,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.192474674756173,8.064028860434068,0,11,-6,59.14668735335539,0,2,2,2019,8,0,45,42,1,0,0,9.149589931894008,9.149589931894008,0,0,0,0,0,1,1,0,0,0,50.85,52.08,57.33,53.46,8.333333333333334,1,1,0,0,7,7,4,1,379.3333333333333,25653.9683052543,-37927.2297844498,0,0,3117.490424101581 -9611,11831,21496,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,8.160364977754124,8.043423615667173,0,0,-966.8302912010435,0,-9,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.688270568153902,8.171627385481505,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,185,646788.8710455797,165717.5697945741,375883.4781268153,0,2166.512099700146 -9612,11832,21497,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-997.3155993729848,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,1,0,8,1,0,1235,-183269.5855909506,0,0,0,1727.423002617258 -9613,11833,21498,-9,-9,-9,1,0,41,0,1,0,2,2,0,0,3,0,7.441860432341035,7.329933300474032,0,0,-1001.569356476779,-9,2,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,7.724143428956394,0,54.57,49.24,-9,-9,10,1,1,0,0,8,9,3,0,472.5,-2353.868676839964,45904.89674262644,170827.3549358179,59065.53757889831,3286.826283823644 -9613,11833,21499,-9,21498,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.380691794933,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,472.5,-2353.868676839964,45904.89674262644,170827.3549358179,59065.53757889831,3286.826283823644 -9614,11834,21500,21501,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,8.287766683671206,7.932688691074721,6.192989918756478,9,1,-105.0230007422019,0,2,2,2019,10,0,6,12,1,0,0,66.0875096627157,66.0875096627157,0,0,0,0,7,1,1,0,6.849603535711935,6.84335103103256,41.58,52.86,60.85,31.41,8.333333333333334,1,1,0,0,10,2,4,1,1012.5,2164757.679346782,1593709.48388623,282204.5041286589,0,2992.369372685605 -9614,11834,21501,21500,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.436405689177982,5.680702873922826,9,-1,-77.09903448551319,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.960472927959961,5.473870595054009,60.85,31.41,41.58,52.86,8.333333333333334,1,1,0,0,0,2,4,1,1012.5,2164757.679346782,1593709.48388623,282204.5041286589,0,2992.369372685605 -9615,11835,21502,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,4.209534704497053,3.733488187631169,0,0,-982.2421557538192,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,3.85293728823497,0,26.57,20.42,-9,-9,0,1,1,0,0,2,6,2,0,402,188968.8290664814,-144602.4157788066,0,0,993.3827024313343 -9615,11836,21503,-9,21502,-9,1,0,19,0,0,0,2,2,-9,0,3,6.670616740706972,6.958865934162362,0,0,0,-952.3945340831475,0,3,-9,2019,6,0,7,10,1,0,1,16.70589269718173,16.70589269718173,0,0,0,0,14.5,1,1,0,0,0,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,9,6,2,0,283,13889.89239132177,41129.70489559371,0,0,178.3584650385268 -9616,11837,21504,21505,-9,-9,1,1,65,2,2,0,1,1,-9,0,3,0,6.159691498825385,6.017367634669112,6,2,24.86367428404143,0,3,3,2019,9,1,0,35,4,1,0,0,0,1,0,8.892556810438759,0,0,1,1,0,.4195228312937785,6.096651724376763,44.93,50.84,42.43,47.6,6.666666666666667,1,1,0,0,6,12,2,1,477,1292234.736303855,290179.4883625946,639267.9487335782,0,1252.513898167158 -9616,11837,21505,21504,-9,-9,1,0,63,2,2,0,2,2,-9,0,4,6.42794286797907,6.40342162612888,0,6,-2,-58.36946664897236,0,3,2,2019,13,1,11,6,1,1,0,5.680408210728592,5.680408210728592,0,0,0,0,0,1,1,0,0,0,42.43,47.6,44.93,50.84,5,1,1,0,0,7,12,2,1,477,1292234.736303855,290179.4883625946,639267.9487335782,0,1252.513898167158 -9616,11838,21506,-9,21508,21509,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-986.7325382827853,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,562.75,768907.9110721173,613381.3862118936,242537.6857802445,93365.56123008154,7258.669957141269 -9616,11838,21507,-9,21508,21509,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.431191202139,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,562.75,768907.9110721173,613381.3862118936,242537.6857802445,93365.56123008154,7258.669957141269 -9616,11838,21508,21509,21505,21504,1,0,33,2,2,0,1,1,-9,0,2,8.42690466465171,8.700425944327366,0,6,-6,24.0640778730798,0,2,2,2019,12,0,34,34,1,0,0,19.34569741115831,19.34569741115831,0,0,0,0,0,1,1,0,0,0,45.65,48.29,51,56,6.666666666666667,1,1,0,0,7,12,5,1,562.75,768907.9110721173,613381.3862118936,242537.6857802445,93365.56123008154,7258.669957141269 -9616,11838,21509,21508,-9,-9,1,1,39,2,2,0,1,1,-9,0,4,8.783494064079244,8.858472707760853,0,6,6,18.0321774353678,-9,-9,-9,2019,9,0,38,0,1,1,0,22.19245176399454,22.19245176399454,0,0,0,0,0,1,1,0,6.486759652131269,0,51,56,45.65,48.29,8,4,1,0,0,1,12,5,1,562.75,768907.9110721173,613381.3862118936,242537.6857802445,93365.56123008154,7258.669957141269 -9617,11839,21510,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.61728956384792,8.010810881291752,7.449082948615023,0,0,-1034.47994940916,0,3,1,2019,7,0,22,24,1,0,0,8.788280828803773,8.788280828803773,0,0,0,0,2,1,1,0,6.41239443619559,6.711780538883557,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,839,130690.2222154016,-24830.14414263035,0,0,2644.53722567065 -9618,11840,21511,21512,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,0,0,0,4,0,0,0,-9,-9,2019,8,2,0,38,3,2,0,0,0,0,0,0,0,0,1,1,0,3.471669514550749,0,42.36,56.12,29.15,62.08,6.666666666666667,1,1,1,0,5,12,1,0,470.5,-53363.99038853517,-4660.008822838001,0,0,-336.8072996842644 -9618,11840,21512,21511,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,0,0,0,4,0,0,1,1,2,2019,17,5,0,35,2,5,0,0,0,0,0,0,0,0,1,1,0,1.80953604273219,0,29.15,62.08,42.36,56.12,6.666666666666667,1,1,0,0,10,12,1,0,470.5,-53363.99038853517,-4660.008822838001,0,0,-336.8072996842644 -9619,11841,21513,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,8.805119231024642,8.383626300406604,0,0,-978.7201860818396,0,2,2,2019,21,9,0,0,4,9,0,0,0,1,8.2433278908196,0,94.04736856339596,2,1,1,0,0,8.860413046926572,51.32,24.19,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,372,1545359.722115315,873113.6397126922,620838.807324699,58145.49188469548,3099.220304494081 -9620,11842,21514,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.833386036141,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,40.04,54.65,-9,-9,8.333333333333334,1,1,1,0,0,2,2,0,1285,161901.2132045363,0,0,0,156.1322952113689 -9621,11843,21515,-9,21519,21516,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.909978577459,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,0,447.4,138636.3413826092,-5111.280184038935,132282.7537870047,93204.97175148118,2966.430886613573 -9621,11843,21516,21519,-9,-9,1,1,27,1,3,0,2,2,-9,0,2,7.857921849324331,8.0789253154728,0,3,-1,36.72623644682152,0,-9,-9,2019,16,6,40,0,1,6,0,8.890136872443627,8.890136872443627,0,0,0,0,0,1,1,0,0,0,37.26,44.13,53.38,52.51,8.333333333333334,1,1,0,0,1,6,3,0,447.4,138636.3413826092,-5111.280184038935,132282.7537870047,93204.97175148118,2966.430886613573 -9621,11843,21517,-9,21519,21516,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.038770916909,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,6,3,0,447.4,138636.3413826092,-5111.280184038935,132282.7537870047,93204.97175148118,2966.430886613573 -9621,11843,21518,-9,21519,21516,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.767611738916,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,0,447.4,138636.3413826092,-5111.280184038935,132282.7537870047,93204.97175148118,2966.430886613573 -9621,11843,21519,21516,-9,-9,1,0,28,1,3,0,1,1,1,0,3,0,5.884476088427149,5.922424597040893,3,1,29.57840022443306,-9,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.457428484678727,0,53.38,52.51,37.26,44.13,8.333333333333334,4,2,0,0,0,6,3,0,447.4,138636.3413826092,-5111.280184038935,132282.7537870047,93204.97175148118,2966.430886613573 -9622,11844,21520,21521,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.312903782107028,8.533928171472834,0,27,-7,-159.0834711571179,0,3,3,2019,9,1,33,22,1,1,0,14.72233612851343,14.72233612851343,0,0,0,0,7,1,1,0,0,0,29.72,50.54,56.11,36.37,5,1,1,0,0,9,11,4,1,264.5,189139.1122750965,-16600.74486711377,214095.8924913569,0,2589.950408271456 -9622,11844,21521,21520,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.532225547882656,7.339084866860699,0,27,7,-141.9056667689926,0,3,3,2019,10,0,35,40,1,0,0,4.71612899890896,4.71612899890896,0,0,0,0,2,1,1,0,0,0,56.11,36.37,29.72,50.54,5,1,1,0,0,9,11,4,1,264.5,189139.1122750965,-16600.74486711377,214095.8924913569,0,2589.950408271456 -9622,11845,21522,-9,21520,21521,1,1,23,0,0,0,2,2,-9,0,2,7.816281103809638,7.869236078743031,0,0,0,-1066.01835077496,0,2,3,2019,12,1,38,18,1,1,1,9.688552892031744,9.688552892031744,0,0,0,0,0,1,1,0,0,0,36.2,41.84,-9,-9,3.333333333333333,1,1,0,0,3,11,4,1,2690,95974.63280516567,0,0,0,1285.119784543348 -9622,11846,21523,-9,21520,21521,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-973.7727561087354,1,2,3,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,783,-36071.23489877135,0,0,0,551.8182917573203 -9623,11847,21524,21525,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.982835848449,7.838493651429267,53,-3,97.16934232914336,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,3.616929855020286,6.203875154447174,23.88452555629545,0,1,1,0,0,7.693517181893929,52,47,51,46,7,1,1,0,0,0,9,3,1,1353.5,1028256.864261139,588010.0274305311,358475.8557679836,0,2991.225997212925 -9623,11847,21525,21524,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.790923803164993,4.362492598280499,53,3,38.69945841677723,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,11.60678481638948,0,7,1,1,0,3.894742323282406,4.364850099647855,51,46,52,47,7,1,1,0,0,3,9,3,1,1353.5,1028256.864261139,588010.0274305311,358475.8557679836,0,2991.225997212925 -9623,11848,21526,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.538665852205149,7.436802241084038,0,0,-969.4175409567707,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,4.073314064720141,7.560282516962633,49,48,-9,-9,7,1,1,0,0,0,9,3,1,309,2670613.02742292,399220.9732277112,2174184.180286446,0,1591.658153159889 -9623,11849,21527,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.753450880684473,8.235057423899827,5.674806007755012,0,0,-882.8921478403214,0,-9,-9,2019,11,0,32,30,1,2,0,9.231350694612209,9.231350694612209,0,0,0,0,0,1,1,0,6.106957160737864,5.729559402460044,48,48,-9,-9,7,1,1,0,0,7,9,4,1,743,730786.6202403106,414446.1302101912,197771.9839756561,0,1525.411666240489 -9624,11850,21528,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.337351740147372,6.854648530841675,0,0,-931.1813661551503,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.463964615601062,0,0,1,1,0,.0805658117502825,6.672000869001362,44.94,28.13,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,382,99400.2730980528,-133114.2381735721,234631.7379707882,0,1143.368796081916 -9625,11851,21529,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.963130843481623,8.067700276416758,0,0,0,-993.9939026563618,0,2,2,2019,10,0,39,38,1,0,0,8.648787636311235,8.648787636311235,0,0,0,.0198623328517069,2,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,199,2501.012751939295,66446.49438343021,0,0,1327.534652212915 -9626,11852,21530,21531,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.489390965704175,8.411841891559487,7.31205997070813,10,1,-95.24008634012324,0,2,2,2019,6,0,46,50,1,0,0,12.24121330143843,12.24121330143843,0,0,0,0,0,0,0,0,2.335215693994261,7.553413414890207,54.45,56.22,51.02,52.22,8.333333333333334,1,1,0,0,11,12,5,1,1025.5,444198.7730210018,109209.337911032,261851.2658801168,0,4997.848276762508 -9626,11852,21531,21530,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.380022624271291,8.384787479397172,0,10,-1,45.22737417238596,0,2,2,2019,9,0,31,33,1,0,0,18.00087304781054,18.00087304781054,0,0,0,0,0,0,0,0,8.38715152934393,0,51.02,52.22,54.45,56.22,8.333333333333334,1,1,0,0,11,12,5,1,1025.5,444198.7730210018,109209.337911032,261851.2658801168,0,4997.848276762508 -9626,11853,21532,-9,21531,21530,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-944.5407645147869,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.901880037648374,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,618,61939.07578616842,0,0,0,-5.737009122410663 -9627,11854,21533,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.950755898626976,8.686163065226834,0,0,0,-827.4714286544329,0,2,2,2019,10,0,40,45,1,0,0,11.25552522405469,11.25552522405469,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,604,-159067.8571645156,-24342.43642838862,0,0,1892.16660582812 -9628,11855,21534,21535,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.396717757917841,8.341533547349639,0,6,-1,15.48499973670762,0,2,2,2019,16,4,51,51,1,4,0,12.74323026282021,12.74323026282021,0,0,0,0,0,0,0,0,0,0,36.12,59.15,53.42,44.46,8.333333333333334,1,1,0,0,8,11,5,1,552.5,515117.6033487729,326641.3610935458,103786.8006876586,14032.56104135993,3921.376578423049 -9628,11855,21535,21534,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.535906381757249,8.103130767929301,0,6,1,-129.3526961721948,0,2,2,2019,7,0,37,37,1,0,0,12.43244184521681,12.43244184521681,0,0,0,0,0,0,0,0,0,0,53.42,44.46,36.12,59.15,6.666666666666667,1,1,0,0,8,11,5,1,552.5,515117.6033487729,326641.3610935458,103786.8006876586,14032.56104135993,3921.376578423049 -9629,11856,21536,21537,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,7.589446524946935,7.75629224735535,0,9,-5,10.00758840756378,0,-9,-9,2019,7,0,60,40,1,0,0,3.944375228681709,3.944375228681709,0,0,0,0,0,1,1,0,6.462035912787463,0,63.48,51.85,66.37,38.36,8.333333333333334,2,3,0,0,9,2,3,0,819.75,10191.25935517403,54938.82594455258,169373.1846498391,142186.5693175981,2659.748327532248 -9629,11856,21537,21536,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.331248076630196,7.487743923505112,0,15,5,112.6536811995428,0,2,2,2019,4,0,36,37,1,0,0,4.383613738356188,4.383613738356188,0,0,0,0,0,1,1,0,0,0,66.37,38.36,63.48,51.85,8.333333333333334,2,3,0,0,12,2,3,0,819.75,10191.25935517403,54938.82594455258,169373.1846498391,142186.5693175981,2659.748327532248 -9629,11856,21538,-9,21537,21536,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.671986057192,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,2,3,0,819.75,10191.25935517403,54938.82594455258,169373.1846498391,142186.5693175981,2659.748327532248 -9629,11856,21539,-9,21537,21536,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.4437298230245,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,819.75,10191.25935517403,54938.82594455258,169373.1846498391,142186.5693175981,2659.748327532248 -9630,11857,21540,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-851.1620449568659,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,25.09,29.55,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,526,-190671.6415436385,-122626.1469786619,0,0,1539.348483117217 -9630,11858,21541,-9,21540,-9,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-990.5873108047106,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,53.54,41.65,-9,-9,6.666666666666667,3,4,0,0,3,8,2,0,495,11342.05814975873,0,0,0,254.3748714262758 -9630,11859,21542,-9,21540,-9,1,0,26,0,0,0,1,1,-9,0,3,6.973394583293736,6.813155598824487,0,0,0,-1084.369649652483,0,2,-9,2019,9,0,25,25,1,0,1,4.402689601543568,4.402689601543568,0,0,0,0,7,1,0,1,0,0,41.79,54.12,-9,-9,6.666666666666667,3,4,0,0,6,8,2,0,185,-151557.4102045168,0,0,0,922.8184055865798 -9631,11860,21543,21544,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,10.26672034134789,10.0270233677527,7,2,6.835988532755667,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.676486613469231,9.587712838058557,57.51,38.42,62.66,52.4,10,1,1,0,0,0,13,5,1,876.5,4992088.14122298,1437301.046640976,848812.6807176477,0,12821.14136097524 -9631,11860,21544,21543,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.378177622961526,6.957079198649952,7,-2,8.941457277786675,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.905459615152747,7.342369199521972,62.66,52.4,57.51,38.42,10,1,1,0,0,5,13,5,1,876.5,4992088.14122298,1437301.046640976,848812.6807176477,0,12821.14136097524 -9632,11861,21545,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,0,8.034280553458871,8.292064722759097,0,0,-1062.1381978731,0,3,3,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,2.094757734841212,8.308789765360439,30.48,26.48,-9,-9,1.666666666666667,1,1,0,0,6,11,4,1,411,1458186.51183921,902098.4197474568,325623.0964250021,0,2218.623504575572 -9633,11862,21546,-9,21547,21548,1,1,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1008.980686800133,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,0,624,-8363.020875815117,0,0,0,3006.28920792068 -9633,11862,21547,21548,-9,-9,1,0,33,1,4,0,2,2,-9,1,4,0,0,0,8,1,-53.87823098793692,0,3,1,2019,7,0,0,23,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,49.41,58.28,8.333333333333334,1,1,0,0,7,1,2,0,624,-8363.020875815117,0,0,0,3006.28920792068 -9633,11862,21548,21547,-9,-9,1,1,32,1,4,0,2,2,-9,0,4,7.806522889516383,8.030402629422674,0,8,-1,111.4502979240978,0,-9,-9,2019,13,2,37,40,1,2,0,7.460870893720686,7.460870893720686,0,0,0,0,14.5,1,1,0,0,0,49.41,58.28,51.83,57.2,8.333333333333334,1,1,0,0,7,1,2,0,624,-8363.020875815117,0,0,0,3006.28920792068 -9633,11862,21549,-9,21547,21548,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.486807736575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,624,-8363.020875815117,0,0,0,3006.28920792068 -9633,11862,21550,-9,21547,21548,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1108.851360712424,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,624,-8363.020875815117,0,0,0,3006.28920792068 -9634,11863,21551,21552,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.520927031128219,7.310379198826402,0,6,0,-26.13308497947336,0,3,2,2019,15,4,48,48,1,4,0,4.590381132692878,4.590381132692878,0,0,0,0,0,0,0,0,0,0,39.78,43.64,60.12,54.8,8.333333333333334,1,1,0,0,6,4,4,1,604,785079.9196021911,747851.193974096,218118.4476938836,0,2186.354049557109 -9634,11863,21552,21551,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.252768844390353,8.357826326854241,4.837732945623166,6,0,16.01605871843811,0,-9,2,2019,8,1,48,45,1,1,0,9.438559042879959,9.438559042879959,0,0,0,0,0,0,0,0,0,5.426160481641303,60.12,54.8,39.78,43.64,8.333333333333334,1,1,0,0,6,4,4,1,604,785079.9196021911,747851.193974096,218118.4476938836,0,2186.354049557109 -9634,11864,21553,-9,21551,-9,1,1,34,0,0,0,1,1,-9,0,5,8.556135917005511,8.076229018936603,0,0,0,-1016.674202153142,0,2,-9,2019,4,0,69,59,1,0,1,9.643891673163932,9.643891673163932,0,0,0,.8712565153286285,0,0,0,0,0,0,59.96,57.78,-9,-9,10,1,1,0,0,7,4,4,1,314,148855.9001179013,2533.879145315746,129975.1459928392,84671.22415754528,2543.660152722039 -9634,11865,21554,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,7.876436549219132,7.795069977323496,0,0,0,-969.9583510211326,0,-9,-9,2019,15,5,35,49,1,5,0,7.607508649667621,7.607508649667621,0,0,0,0,0,0,0,0,0,0,42.53,51.01,-9,-9,3.333333333333333,1,1,0,0,2,4,3,1,389,42709.86824800432,52401.61248648412,0,0,1136.254927307068 -9635,11866,21555,21556,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.922731323700894,9.029977621665262,7.592299512831159,7,-10,29.89671935559283,0,2,2,2019,12,0,40,30,1,0,0,16.98582797898751,16.98582797898751,0,0,0,0,0,0,0,0,8.406582923700274,7.888621364830585,47.38,57.75,44.17,49.99,8.333333333333334,1,1,0,0,8,4,5,1,2221,743405.7531840438,404777.7539001618,456108.1483285533,148363.8124395203,7346.912243021819 -9635,11866,21556,21555,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.840392393333685,8.606881175472243,5.348347350879109,7,10,37.06609488584366,0,-9,-9,2019,16,4,37,37,1,4,0,21.82177447707739,21.82177447707739,0,0,0,0,0,0,0,0,3.163739485657752,5.370796362683659,44.17,49.99,47.38,57.75,6.666666666666667,1,1,0,0,7,4,5,1,2221,743405.7531840438,404777.7539001618,456108.1483285533,148363.8124395203,7346.912243021819 -9636,11867,21557,21558,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.791559465361269,7.726882538067511,0,1,0,-95.86986648738413,-9,-9,-9,2019,6,0,32,0,1,0,0,8.777638979127955,8.777638979127955,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.04,55.86,8.333333333333334,1,1,0,0,2,2,5,0,531,127173.4295668571,-71596.1719841623,244442.490332198,210775.102365797,2788.336126026063 -9636,11867,21558,21557,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.543582107618372,8.590025853240959,0,1,0,-110.2015726722798,-9,-9,-9,2019,7,0,42,0,1,0,0,13.55090238632541,13.55090238632541,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,2,5,0,531,127173.4295668571,-71596.1719841623,244442.490332198,210775.102365797,2788.336126026063 -9637,11868,21559,21560,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.145239189516407,4.34112226136713,8,7,-24.3337637135535,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.345398197280962,4.196794490951781,51.66,54.88,54.96,53.17,6.666666666666667,1,1,0,0,0,6,3,1,1000,1038312.488447073,870058.4058801209,137975.00570472,0,2810.342094994064 -9637,11868,21560,21559,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.900498568053263,8.379145424229121,6.960183964434004,8,-7,-11.09299695489891,0,-9,-9,2019,7,0,30,30,1,0,0,7.63636935040935,7.63636935040935,0,0,0,0,0,1,1,0,3.563147184999581,7.129176012186537,54.96,53.17,51.66,54.88,8.333333333333334,1,1,0,0,11,6,3,1,1000,1038312.488447073,870058.4058801209,137975.00570472,0,2810.342094994064 -9638,11869,21561,21562,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.657463771367223,6.721094159612822,11,9,113.2082379787962,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.850442497187029,6.90866506974754,51.3,33.2,59.71,50.89,10,1,1,0,0,0,7,4,1,492.5,230757.8955449701,57861.99586649091,175410.0715568229,-7458.012230918515,2761.735613504366 -9638,11869,21562,21561,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.999696731924629,8.442372140414848,6.991203101169532,48,0,56.61022039358311,0,3,3,2019,7,0,24,24,1,0,0,15.41240926780505,15.41240926780505,0,0,0,0,0,1,1,0,4.373403745483618,7.037164155495251,59.71,50.89,51.3,33.2,8.333333333333334,1,1,0,0,12,7,4,1,492.5,230757.8955449701,57861.99586649091,175410.0715568229,-7458.012230918515,2761.735613504366 -9639,11870,21563,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.414262999901343,7.070407179140967,0,0,-1046.634954822385,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.798939270608916,7.02739013021682,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,537,612623.4142376303,337636.5925247297,0,0,1093.305871464925 -9640,11871,21564,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-982.8764121469351,0,-9,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,49.7,26.67,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1306,454679.4448857131,0,247231.2765085493,0,1512.888104743891 -9641,11872,21565,21566,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.159190209036876,8.161842218849895,0,3,-4,-1.626518274152139,0,3,3,2019,8,0,39,37,1,0,0,14.30412235399652,14.30412235399652,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51,49,8.333333333333334,1,1,0,0,8,8,4,1,2587,89565.61658673725,0,0,0,2281.000886281393 -9641,11872,21566,21565,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.496475723810653,7.712466135664962,0,3,4,-114.4431407472184,0,3,3,2019,10,0,39,39,1,1,0,4.98677501958356,4.98677501958356,0,0,0,0,0,0,0,0,0,0,51,49,58.32,50.22,7,1,1,0,0,1,8,4,1,2587,89565.61658673725,0,0,0,2281.000886281393 -9641,11873,21567,-9,21565,21566,1,0,22,0,0,0,2,2,-9,0,4,7.530995059562395,7.738780353832657,0,0,0,-894.9250965288581,0,1,3,2019,11,0,50,20,1,2,1,5.36811998513111,5.36811998513111,0,0,0,0,0,0,0,0,6.436485751353795,0,46,58,-9,-9,7,1,1,0,0,1,8,3,1,336,-240756.8718354116,0,0,0,1116.902673204064 -9642,11874,21568,21571,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.358765791526773,8.417854491681465,0,8,3,-17.08019604833438,0,2,2,2019,20,7,45,0,1,7,0,13.94115992001531,13.94115992001531,0,0,0,0,0,0,0,0,0,0,34.65,58.34,33.49,64.26000000000001,6.666666666666667,1,1,0,0,8,12,5,1,386.25,301451.5767220735,318609.674016298,0,0,5365.40143449488 -9642,11874,21569,-9,21571,21568,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.887634896769,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,386.25,301451.5767220735,318609.674016298,0,0,5365.40143449488 -9642,11874,21570,-9,21571,21568,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.6349139385104,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,386.25,301451.5767220735,318609.674016298,0,0,5365.40143449488 -9642,11874,21571,21568,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,9.50744449362946,9.400039511813372,0,8,-3,-46.5729625398246,0,-9,-9,2019,16,5,45,42,1,5,0,32.08024857462608,32.08024857462608,0,0,0,0,0,0,0,0,0,0,33.49,64.26000000000001,34.65,58.34,6.666666666666667,1,1,0,0,9,12,5,1,386.25,301451.5767220735,318609.674016298,0,0,5365.40143449488 -9643,11875,21572,21573,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,27,-6,-156.0184392733915,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.476218812474661,0,63.65,49.16,58.77,41.86,0,1,1,0,0,1,4,2,1,660,277017.5955539868,192342.0982085837,175052.6253989645,0,854.0653799771517 -9643,11875,21573,21572,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.171184928735137,5.995452715813212,27,6,131.6833469834449,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,.3222932480464316,0,1,1,0,6.475818619381374,6.004019128712676,58.77,41.86,63.65,49.16,1.666666666666667,1,1,0,0,3,4,2,1,660,277017.5955539868,192342.0982085837,175052.6253989645,0,854.0653799771517 -9644,11876,21574,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.505377737427388,7.700059144685461,0,0,0,-1014.543027361927,0,2,2,2019,9,0,40,40,1,0,1,5.708094842103181,5.708094842103181,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,176,17708.26964227595,0,0,0,1246.363487274723 -9645,11877,21575,21576,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.168380608435525,8.078635871880987,0,5,2,5.845397123404895,0,-9,-9,2019,12,0,44,35,1,0,0,8.313605805519924,8.313605805519924,0,0,0,0,0,0,0,0,0,0,49.9,45.75,57.33,53.46,5,1,1,0,0,7,4,4,0,1345.5,189000.7255818283,247462.934365404,0,0,1868.246981336896 -9645,11877,21576,21575,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.029968156306294,7.158468547310383,0,5,-2,94.6724140030734,0,3,2,2019,10,0,20,20,1,0,0,7.704285801592087,7.704285801592087,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.9,45.75,5,1,1,0,0,12,4,4,0,1345.5,189000.7255818283,247462.934365404,0,0,1868.246981336896 -9646,11878,21577,21578,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,5.207346306661567,5.193109854477415,10,-1,16.12277156397308,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.294890695644285,5.090143724407293,63.44,39.68,57.33,53.46,8.333333333333334,1,1,0,0,3,5,2,1,1533,943250.6338387184,734059.5287193602,179567.100688741,0,1050.667432552019 -9646,11878,21578,21577,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.740389229558891,6.933883368256265,10,1,-124.6895640895319,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.930970559170303,6.784284987661383,57.33,53.46,63.44,39.68,8.333333333333334,1,1,0,0,8,5,2,1,1533,943250.6338387184,734059.5287193602,179567.100688741,0,1050.667432552019 -9647,11879,21579,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,5.918456329345871,5.988137856254097,0,0,-973.4767207912631,0,3,3,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,7,0,0,0,5.72554970915496,6.148322205198197,54.1,59.11,-9,-9,10,1,1,0,0,11,7,2,1,151,678990.9983839507,0,576028.619968079,0,164.122465316554 -9648,11880,21580,21581,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.8059511094245,8.457569880242833,0,7,1,-21.10408773432883,0,-9,-9,2019,7,0,45,40,1,0,0,12.41367035458243,12.41367035458243,0,0,0,0,0,0,0,0,0,0,52.99,51.28,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,256,476764.2680973343,227886.4469495083,151515.2813211983,30464.85612884898,3830.81433788514 -9648,11880,21581,21580,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.386189457469175,8.598088250212403,0,7,-1,-15.0091294170626,0,3,-9,2019,10,0,37,37,1,0,0,21.22207104817238,21.22207104817238,0,0,0,0,0,0,0,0,5.254303815376118,0,51.83,57.2,52.99,51.28,8.333333333333334,1,1,0,0,10,4,5,1,256,476764.2680973343,227886.4469495083,151515.2813211983,30464.85612884898,3830.81433788514 -9649,11881,21582,21583,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.239720624288827,7.908935338663599,51,2,49.03603476120572,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,8.062639980788667,57.16,56.15,60.86,10.15,10,1,1,0,0,0,12,3,1,3621.5,1201224.713902202,688191.1055677198,199847.0335721477,0,2851.525006512266 -9649,11881,21583,21582,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,51,-2,41.2655022277029,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,6.207076967127803,0,0,1,1,0,0,0,60.86,10.15,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,3621.5,1201224.713902202,688191.1055677198,199847.0335721477,0,2851.525006512266 -9650,11882,21584,21588,21589,-9,1,1,59,0,3,0,3,3,-9,0,3,0,0,0,27,10,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,54.66,47.77,7,2,3,1,0,0,6,1,1,775.6,174680.7125601511,21393.95477948648,152665.5282551206,28058.24203682855,621.0760579561113 -9650,11882,21585,-9,21588,21584,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.872544003363,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,1,1,775.6,174680.7125601511,21393.95477948648,152665.5282551206,28058.24203682855,621.0760579561113 -9650,11882,21586,-9,21588,21584,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1024.652125376615,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,775.6,174680.7125601511,21393.95477948648,152665.5282551206,28058.24203682855,621.0760579561113 -9650,11882,21587,-9,21588,21584,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1063.930109592908,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,0,6,1,1,775.6,174680.7125601511,21393.95477948648,152665.5282551206,28058.24203682855,621.0760579561113 -9650,11882,21588,21584,-9,-9,1,0,49,0,3,0,3,3,-9,0,3,0,0,0,27,-10,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.66,47.77,51,49,3.333333333333333,2,3,0,0,0,6,1,1,775.6,174680.7125601511,21393.95477948648,152665.5282551206,28058.24203682855,621.0760579561113 -9650,11883,21589,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1088.624468184927,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,42.89620564474139,93.24668398717569,392.2480779103673,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,2,1,186,11373.36837212267,0,0,0,1213.450681135342 -9650,11884,21590,-9,21588,21584,1,0,21,0,3,0,2,2,-9,0,4,7.558320761321007,7.60891461024684,0,0,0,-1116.18442762243,0,3,3,2019,9,0,35,40,1,0,1,5.6463622079842,5.6463622079842,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,326,0,0,0,0,965.1089700759663 -9651,11885,21591,21592,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,5.360035117785467,5.16107768383012,2,8,-34.00035743492617,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,3.384193814709493,0,0,1,1,0,1.262736991353869,5.320159425501257,34.38,24.96,47.8,43.06,5,1,1,0,0,0,8,2,0,267.5,244980.7474125605,-17708.38231216343,303888.739401824,0,3433.448839301334 -9651,11885,21592,21591,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,2,-8,-61.40959397202425,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.254193371398792,0,47.8,43.06,34.38,24.96,8.333333333333334,1,1,0,0,0,8,2,0,267.5,244980.7474125605,-17708.38231216343,303888.739401824,0,3433.448839301334 -9652,11886,21593,21594,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.193686684507623,7.176731580909575,0,5,12,-7.643938387477054,0,3,3,2019,7,0,30,40,1,0,0,4.348893366877736,4.348893366877736,0,0,0,0,0,0,0,0,0,0,42.78,46.93,53.05,52.71,8.333333333333334,3,4,0,0,7,6,4,0,528,138517.4715572892,32922.70265863882,136730.4315342293,23144.05260462073,1860.111864667396 -9652,11886,21594,21593,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,7.982824145256619,8.072559830289496,0,5,-12,50.59552482640318,0,-9,-9,2019,10,1,37,40,1,1,0,8.402492264942182,8.402492264942182,0,0,0,0,0,0,0,0,0,0,53.05,52.71,42.78,46.93,8.333333333333334,3,4,0,0,3,6,4,0,528,138517.4715572892,32922.70265863882,136730.4315342293,23144.05260462073,1860.111864667396 -9653,11887,21595,21598,-9,-9,1,1,36,0,4,0,2,2,-9,1,5,8.638819230845483,8.339646663020371,0,7,1,37.06411545570501,0,-9,-9,2019,5,0,50,68,1,0,0,10.76438415663169,10.76438415663169,0,0,0,0,0,1,1,0,0,0,62.39,56.71,30.91,51.14,8.333333333333334,1,1,0,0,10,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9653,11887,21596,-9,21598,21595,1,1,15,0,4,1,3,0,-9,0,3,0,0,0,0,0,-964.1642015096958,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9653,11887,21597,-9,21598,21595,1,1,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-1024.604645391587,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.29,55.84,-9,-9,10,1,1,0,0,0,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9653,11887,21598,21595,-9,-9,1,0,35,0,4,0,2,2,-9,1,2,0,0,0,7,-1,-.7031339924105522,0,3,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,1,1,0,0,0,30.91,51.14,62.39,56.71,3.333333333333333,1,1,0,0,1,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9653,11887,21599,-9,21598,21595,1,0,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1003.260101881097,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9653,11887,21600,-9,21598,21595,1,0,15,0,4,1,3,0,-9,0,5,0,0,0,0,0,-887.0937240908949,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,3,0,707.3333333333334,-20378.59938078987,-17766.47726928677,0,0,3965.304791389553 -9654,11888,21601,21602,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,9.854628841873289,9.697721323914493,0,18,-1,-92.99497215852477,0,2,2,2019,9,0,35,35,1,0,0,51.80032242007,51.80032242007,0,0,0,0,0,0,0,0,5.656653461903208,0,53.57,44.8,51.73,58.82,3.333333333333333,1,1,0,0,9,7,5,1,661,961482.5155094792,370124.8943245998,462759.6460324526,213907.7972150389,9980.601530184331 -9654,11888,21602,21601,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.82254422554419,9.098079328176492,0,18,1,23.82769107584662,0,2,2,2019,7,0,37,40,1,0,0,23.38952013301044,23.38952013301044,0,0,0,0,0,0,0,0,3.497564546616634,0,51.73,58.82,53.57,44.8,8.333333333333334,1,1,0,0,9,7,5,1,661,961482.5155094792,370124.8943245998,462759.6460324526,213907.7972150389,9980.601530184331 -9655,11889,21603,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,6.126057033965458,6.429064016754438,0,0,0,-945.3207820571721,0,2,2,2019,11,0,25,25,1,0,0,3.834824479659884,3.834824479659884,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,547,82714.83763088709,0,0,0,161.569445369683 -9656,11890,21604,-9,21605,21606,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-865.4983147335356,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,915.5,3301369.75988544,2572805.238653148,701763.5761320009,250408.6445143131,7300.762750859067 -9656,11890,21605,21606,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.046153719385202,9.004695444336077,0,8,-2,79.47782539158089,-9,2,1,2019,10,0,38,0,1,0,0,21.1797972589413,21.1797972589413,0,0,0,0,0,0,0,0,0,0,46.44,59.62,41.06,62.04,8.333333333333334,1,1,0,0,12,2,5,1,915.5,3301369.75988544,2572805.238653148,701763.5761320009,250408.6445143131,7300.762750859067 -9656,11890,21606,21605,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.407127608993333,9.564591379753599,0,8,2,-16.20861298042442,-9,2,1,2019,11,1,40,0,1,1,0,38.94092718231398,38.94092718231398,0,0,0,0,0,0,0,0,7.506361175514249,0,41.06,62.04,46.44,59.62,8.333333333333334,1,1,0,0,12,2,5,1,915.5,3301369.75988544,2572805.238653148,701763.5761320009,250408.6445143131,7300.762750859067 -9656,11890,21607,-9,21605,21606,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.65476670373,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,915.5,3301369.75988544,2572805.238653148,701763.5761320009,250408.6445143131,7300.762750859067 -9657,11891,21608,-9,21609,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.8085207541255,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,300,48077.40446733894,0,0,0,1446.927221320718 -9657,11891,21609,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,6.178237666859808,6.311398250858636,0,0,0,-1088.596091831812,-9,2,-9,2019,9,1,8,0,1,1,0,6.513650222294621,6.513650222294621,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,5,5,2,0,300,48077.40446733894,0,0,0,1446.927221320718 -9658,11892,21610,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.800769453098738,7.819216827710603,0,0,0,-1103.091189315263,-9,-9,-9,2019,13,2,30,0,1,2,0,9.991225598699813,9.991225598699813,0,0,0,0,0,0,0,0,5.391159463144284,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,346,295906.0011570914,64270.1025455335,0,0,892.3011239745763 -9659,11893,21611,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.083684786701512,6.221175542448601,0,0,-1061.728107051817,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,2.399685582278007,0,0,1,1,0,0,6.473882564557093,52.76,23.83,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,387,307331.2619631695,172518.2713846695,220159.024089561,0,1648.364365418211 -9660,11894,21612,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.791334758004296,6.010906037365094,0,0,-1074.860572571796,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.603349534427013,66.13,28.89,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,445,317599.6641883174,5414.892619466977,336495.6481151685,0,314.0712844310087 -9661,11895,21613,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.784465966092108,7.339698248565477,0,0,-915.5854920955203,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.243482644333443,7.280894021902105,57.17,50.61,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,290,544897.5788949635,181043.6296576622,208738.011575923,0,2217.137317949571 -9662,11896,21614,21615,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,47,-5,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,49.94667581605119,0,0,1,1,0,0,0,31.98,22.06,52.79,31.38,1.666666666666667,1,1,0,0,0,7,1,1,658.5,872158.3363373196,0,266679.8929623905,0,2098.513423277428 -9662,11896,21615,21614,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,47,5,0,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.79,31.38,31.98,22.06,8.333333333333334,1,1,0,0,0,7,1,1,658.5,872158.3363373196,0,266679.8929623905,0,2098.513423277428 -9663,11897,21616,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.088668359571873,8.169789704923653,0,0,0,-907.0514110689077,0,2,-9,2019,4,0,42,35,1,0,0,7.537640220041394,7.537640220041394,0,0,0,0,0,1,1,0,2.24538184831894,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,7,11,4,1,939,306397.5741766691,435615.0737610811,3899.250922669515,0,1750.213244768794 -9663,11898,21617,-9,21616,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-973.4659872651578,-9,2,-9,2019,16,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,26.78,62.08,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,302,-108993.4423375701,0,0,0,433.6871822290835 -9664,11899,21618,21620,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,7.717098846452384,7.816631085783427,0,11,-1,46.10759774995038,0,2,2,2019,12,1,40,0,1,1,0,6.034038369052682,6.034038369052682,0,0,0,0,2,1,1,0,0,0,48.77,49.11,40.26,42.56,10,1,1,0,0,0,9,3,0,296.6666666666667,83292.75560017924,11243.4606953185,0,0,3175.934311027116 -9664,11899,21619,-9,21620,21618,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.900253009489,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,296.6666666666667,83292.75560017924,11243.4606953185,0,0,3175.934311027116 -9664,11899,21620,21618,-9,-9,1,0,33,0,1,0,2,2,-9,1,2,6.783690132341349,6.879585666880696,0,11,1,80.75008139108657,0,3,-9,2019,12,0,20,10,1,0,0,6.284042150322333,6.284042150322333,0,0,0,0,7,1,1,0,0,0,40.26,42.56,48.77,49.11,8.333333333333334,1,1,0,0,1,9,3,0,296.6666666666667,83292.75560017924,11243.4606953185,0,0,3175.934311027116 -9665,11900,21621,21622,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.72303596081192,6.918176526788388,37,0,-19.15540333746414,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.540936522544093,6.601954391051907,50.93,48.04,58.32,21.09,6.666666666666667,1,1,0,0,0,7,3,1,464,1065928.258599203,569958.0055500877,229274.7037563119,0,2308.340326987659 -9665,11900,21622,21621,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.483747878269787,7.155260879900723,7,0,25.45659718212988,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.007930864837732,7.355851705415035,58.32,21.09,50.93,48.04,10,1,1,0,0,0,7,3,1,464,1065928.258599203,569958.0055500877,229274.7037563119,0,2308.340326987659 -9666,11901,21623,21624,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.5572575048478,7.83537272182055,42,3,-194.6891266891243,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.124087347421586,7.864440186741958,62.27,48.47,54.39,44.26,10,1,1,0,0,8,12,4,1,1111,792415.0632310788,114038.5755266937,155159.9947094415,0,3016.698547360936 -9666,11901,21624,21623,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.715594929871396,8.176394810594728,7.202673633404648,42,-3,-80.42916432858955,0,3,3,2019,9,0,36,42,1,0,0,8.878028299750607,8.878028299750607,0,0,0,0,0,1,1,0,0,7.344165034135491,54.39,44.26,62.27,48.47,6.666666666666667,1,1,0,0,9,12,4,1,1111,792415.0632310788,114038.5755266937,155159.9947094415,0,3016.698547360936 -9667,11902,21625,21626,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,0,0,10,3,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.33,53.46,10,1,1,0,0,10,7,2,1,1052,354644.4996067094,0,320122.7501412178,0,770.1748431844883 -9667,11902,21626,21625,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3993806825586729,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,0,7,2,1,1052,354644.4996067094,0,320122.7501412178,0,770.1748431844883 -9668,11903,21627,21628,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.534048397277626,8.618282197343543,0,43,-2,-50.91728977472364,0,3,3,2019,15,3,40,43,1,3,0,15.23909845197668,15.23909845197668,0,0,0,0,2,0,0,0,2.523136097093295,0,44.53,54.03,57.18,45.76,6.666666666666667,1,1,0,0,9,7,5,0,434.5,-76451.47539203666,0,0,0,3108.969397454013 -9668,11903,21628,21627,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.573947545401856,7.882849973098356,6.445340594306916,43,2,-37.29557497622707,0,3,3,2019,7,1,37,37,1,1,0,6.690071800892818,6.690071800892818,0,0,0,0,0,0,0,0,0,6.714007052674302,57.18,45.76,44.53,54.03,8.333333333333334,1,1,0,0,9,7,5,0,434.5,-76451.47539203666,0,0,0,3108.969397454013 -9668,11904,21629,-9,21627,21628,1,1,35,0,0,0,2,2,-9,0,3,7.642032400447052,7.734473736878054,0,0,0,-1062.043151476254,0,2,3,2019,11,0,60,52,1,0,1,5.864572781738983,5.864572781738983,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,56,-87509.94550760971,114975.6173227851,0,0,876.4846904885236 -9669,11905,21630,21633,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.36232655569596,8.039047115786625,0,6,-2,-49.19550098089712,0,3,3,2019,10,0,24,29,1,1,0,20.97991575100827,20.97991575100827,0,0,0,0,0,1,1,0,0,0,50,55,54.79,55.86,8,1,1,0,0,7,13,4,1,436,42562.48929742997,14625.58196468975,0,0,2815.834441470051 -9669,11905,21631,-9,21630,21633,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.9434650885177,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,436,42562.48929742997,14625.58196468975,0,0,2815.834441470051 -9669,11905,21632,-9,21630,21633,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.129377388044,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,436,42562.48929742997,14625.58196468975,0,0,2815.834441470051 -9669,11905,21633,21630,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.082229437541843,8.157067375365049,0,6,2,-35.45217042962187,0,3,3,2019,8,0,43,49,1,0,0,7.773441495251333,7.773441495251333,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,55,8.333333333333334,1,1,0,0,7,13,4,1,436,42562.48929742997,14625.58196468975,0,0,2815.834441470051 -9670,11906,21634,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,6.864035965215225,7.308478497141738,0,0,-894.8068225875596,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,250.9767004012015,0,2295.104146100663,0,1,1,0,0,6.7875635778523,54.99,17.61,-9,-9,5,1,1,0,0,0,10,2,0,766,425716.6200600386,129673.5195185939,175742.8575246393,0,673.8037249142992 -9671,11907,21635,21636,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,25,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.552622268778464,0,55.75,31.53,27.89,18.61,6.666666666666667,1,1,0,0,0,10,1,1,313.5,96704.6616269612,0,132850.4989876227,20638.19851646253,1749.730294765619 -9671,11907,21636,21635,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,25,-1,0,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,125.7449681053211,0,0,1,1,0,0,0,27.89,18.61,55.75,31.53,0,1,1,0,0,0,10,1,1,313.5,96704.6616269612,0,132850.4989876227,20638.19851646253,1749.730294765619 -9672,11908,21637,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.898793156318506,9.086732538517184,0,0,0,-999.3423938141062,0,3,2,2019,8,0,37,0,1,0,0,23.71087289225715,23.71087289225715,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,1.666666666666667,1,1,0,0,5,9,5,1,992,495224.6329733031,140633.8655737155,296061.0906584351,160393.4979706448,3392.070500427797 -9673,11909,21638,21639,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.390403444659968,8.438199649370901,0,30,7,74.41894959751106,0,2,2,2019,8,0,45,45,1,0,0,11.51984109843392,11.51984109843392,0,0,0,0,0,0,0,0,3.485957858875454,0,53.39,49.67,46.9,56.66,6.666666666666667,1,1,0,0,9,4,5,1,814.5,856289.468075289,520136.2195378335,142045.2596037842,45508.41833102073,3091.392140147864 -9673,11909,21639,21638,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.130368099040835,8.005076672603911,0,20,-7,10.02740429615226,0,3,2,2019,11,0,43,41,1,0,0,9.334288480391427,9.334288480391427,0,0,0,0,0,0,0,0,1.779499638396645,0,46.9,56.66,53.39,49.67,6.666666666666667,1,1,0,0,9,4,5,1,814.5,856289.468075289,520136.2195378335,142045.2596037842,45508.41833102073,3091.392140147864 -9673,11910,21640,-9,21639,21638,1,1,24,0,0,0,1,1,-9,0,3,7.873661226033505,7.937635923751481,0,0,0,-1041.03925525829,-9,2,2,2019,9,0,42,0,1,0,1,5.775380036194859,5.775380036194859,0,0,0,0,0,0,0,0,0,0,47.18,55.31,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,1300,137076.340559578,0,0,0,1042.014143615394 -9674,11911,21641,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.752086111499,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,9.506289522810926,0,0,1,1,0,0,0,41.11,40.82,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,119,61053.17981930831,0,232213.8560582306,0,681.1404083683057 -9675,11912,21642,21643,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,53,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,63.56,36.87,53.45,36.12,8.333333333333334,2,3,0,0,0,5,1,1,759,129392.0639373733,21707.74416627417,0,0,0 -9675,11912,21643,21642,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-2,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,53.45,36.12,63.56,36.87,8.333333333333334,2,3,0,0,0,5,1,1,759,129392.0639373733,21707.74416627417,0,0,0 -9676,11913,21644,21645,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,5,1,121.9372785468592,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,7.874863684495336,0,49.29,38.53,43.66,50.25,6.666666666666667,1,1,0,0,9,11,4,1,783,1198652.553923233,740971.9359986029,346546.7658795245,0,3385.775106793151 -9676,11913,21645,21644,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.611508073730025,8.513474901017684,0,5,-1,-60.18521475670195,0,2,2,2019,8,0,37,37,1,0,0,15.5456121537235,15.5456121537235,0,0,0,0,0,0,0,0,0,0,43.66,50.25,49.29,38.53,8.333333333333334,1,1,0,0,9,11,4,1,783,1198652.553923233,740971.9359986029,346546.7658795245,0,3385.775106793151 -9677,11914,21646,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,7.168080306969198,7.650071347266658,0,0,-1052.463449978557,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,8.239074492073678,0,40.09,57.36,-9,-9,5,2,3,0,0,0,7,3,0,671,-73966.29805439162,0,0,0,866.4236055769055 -9678,11915,21647,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.225211716652074,7.288001408328323,0,0,-930.209865553125,0,3,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.948211569784415,7.129550549774917,56.36,25.48,-9,-9,10,1,1,0,0,0,5,2,1,341,940107.4201375365,444048.1854873367,234305.1858199054,0,1268.004752459812 -9679,11916,21648,21649,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.079528367593954,6.710532459780082,50,-2,-119.0111060093878,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.725590692549337,56.98,37.42,58.96,29.51,8.333333333333334,1,1,0,0,6,5,2,1,627,138750.3331745128,188169.9172236658,0,0,2288.816258118304 -9679,11916,21649,21648,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.270067902737539,6.103477841097828,50,2,11.27344362950151,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.312480554303427,58.96,29.51,56.98,37.42,8.333333333333334,1,1,0,0,0,5,2,1,627,138750.3331745128,188169.9172236658,0,0,2288.816258118304 -9679,11917,21650,-9,21648,21649,1,1,31,0,0,0,2,2,-9,0,3,6.946750255869201,6.893907855239666,0,0,0,-919.362068907297,0,2,2,2019,12,0,15,15,1,2,0,9.95518181160771,9.95518181160771,0,0,0,0,0,1,1,0,0,0,46,53,-9,-9,6,3,4,0,0,4,5,3,1,435,125109.4844517991,-12855.54664779905,0,0,891.834335888904 -9680,11918,21651,21652,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.616630368283831,8.192980292862806,3,-7,38.48326605226656,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.648100421563587,8.399475289519447,54.62,53.53,58.7,46.46,8.333333333333334,1,1,0,0,0,5,4,1,508,1052334.776860066,782543.4182604365,154326.4604592718,0,3674.816386083878 -9680,11918,21652,21651,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,3,7,-110.3396449887186,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.7,46.46,54.62,53.53,8.333333333333334,1,1,0,0,6,5,4,1,508,1052334.776860066,782543.4182604365,154326.4604592718,0,3674.816386083878 -9681,11919,21653,-9,21654,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.5568709684387,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,541.3333333333334,127551.7516906346,-33461.40851053976,0,0,2535.580389608808 -9681,11919,21654,-9,-9,-9,1,0,30,0,2,0,1,1,-9,0,3,7.399944060935982,7.519167379009248,0,0,0,-985.8853439252917,0,3,2,2019,11,1,20,20,1,1,0,6.9019106892643,6.9019106892643,0,0,0,0,2,1,1,0,0,0,39.06,49.8,-9,-9,3.333333333333333,1,1,0,0,5,6,2,0,541.3333333333334,127551.7516906346,-33461.40851053976,0,0,2535.580389608808 -9681,11919,21655,-9,21654,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.5758756814068,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,6,2,0,541.3333333333334,127551.7516906346,-33461.40851053976,0,0,2535.580389608808 -9682,11920,21656,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.785704812448644,7.89044720271618,0,0,-1009.157046796967,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.541673852386382,7.897799036678034,49.61,54.24,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,2219,484187.6673701936,228572.5484955393,170957.4767225386,0,1807.874470320681 -9683,11921,21657,21658,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.696199131661505,8.745479233079214,0,28,1,106.0479234007698,0,2,-9,2019,13,1,50,50,1,1,0,13.164862615407,13.164862615407,0,0,0,0,0,0,0,0,0,0,43.1,44.28,37.08,57.26,1.666666666666667,1,1,0,0,12,2,5,1,251.5,1543281.69197128,1521584.985278446,59017.85916247354,34381.79164011718,3475.951652549912 -9683,11921,21658,21657,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.062840930719084,8.107104222420423,0,27,-1,-12.09796811839836,0,2,2,2019,13,2,30,30,1,2,0,14.63886150622975,14.63886150622975,0,0,0,0,0,0,0,0,0,0,37.08,57.26,43.1,44.28,6.666666666666667,1,1,0,0,12,2,5,1,251.5,1543281.69197128,1521584.985278446,59017.85916247354,34381.79164011718,3475.951652549912 -9683,11922,21659,-9,21658,21657,1,1,18,0,0,1,2,0,0,0,1,0,8.204452276850832,8.312168895782289,0,0,-1051.723617543061,-9,2,1,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,8.547290051151302,0,26.21,41.34,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,337,-223969.818073245,0,0,0,2275.706422722985 -9684,11923,21660,21661,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,19,1,65.20323318281999,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,7.896178954836184,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,7,9,5,1,769,743349.3110731912,155415.1250692288,299223.2537282127,0,10928.28709053601 -9684,11923,21661,21660,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,7.056021400816662,9.307142637730568,8.926401205381959,19,-1,28.46204612434661,0,2,3,2019,11,0,53,53,1,0,0,2.588633835768571,2.588633835768571,0,0,0,0,14.5,0,0,0,10.24103849854639,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,11,9,5,1,769,743349.3110731912,155415.1250692288,299223.2537282127,0,10928.28709053601 -9684,11924,21662,-9,21660,21661,1,0,23,0,0,0,1,1,1,0,3,0,7.033742146505055,6.699353065489392,0,0,-1039.017443608084,-9,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,6.826687164669065,0,56.35,51.16,-9,-9,8.333333333333334,1,1,1,0,0,9,2,1,732,171429.2106375697,-60269.44352838797,0,0,920.2823147120827 -9684,11925,21663,-9,21660,21661,1,0,19,0,0,1,2,0,0,0,3,0,6.931607640877103,6.729045052679554,0,0,-913.8456461488577,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,7,0,0,0,7.096147475328533,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,95,-157457.5457578199,0,0,0,1078.257759271251 -9685,11926,21664,21665,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,4,0,105.8277596513694,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,65.98,34.42,8.333333333333334,1,1,0,0,8,12,3,1,199.5,662518.942529307,364075.5470149826,205461.6787398484,0,1357.606136002419 -9685,11926,21665,21664,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.67208873956551,7.881560254070049,6.913296520197672,38,0,-16.44008920792032,0,2,2,2019,7,0,23,23,1,0,0,11.57469459233279,11.57469459233279,0,0,0,.5957086135043301,0,0,0,0,0,7.118921245475089,65.98,34.42,52.4,52.91,8.333333333333334,1,1,0,1,11,12,3,1,199.5,662518.942529307,364075.5470149826,205461.6787398484,0,1357.606136002419 -9686,11927,21666,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,4.693448376662044,4.521072588306079,0,0,-1040.40450626593,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.684432440476739,4.956165269724208,48.23,27.99,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,240,385283.7062125551,-62286.05535434657,238541.9563424582,0,602.4546976714223 -9687,11928,21667,21669,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.260470196039075,8.342310669768208,0,11,0,58.72372481132174,0,3,2,2019,20,8,37,40,1,8,0,10.25766028336951,10.25766028336951,0,0,0,0,0,1,1,0,1.794151314132585,0,39.1,49.76,37.49,42.42,5,1,1,0,1,11,9,5,1,308.3333333333333,1942327.861616635,1520972.721818468,423112.3029256618,80282.38273697767,3280.445408967897 -9687,11928,21668,-9,21667,21669,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-862.4694025778728,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,308.3333333333333,1942327.861616635,1520972.721818468,423112.3029256618,80282.38273697767,3280.445408967897 -9687,11928,21669,21667,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,8.440415746202618,8.164663454034075,0,3,0,-74.13825566150835,0,-9,-9,2019,16,4,40,40,1,4,0,11.60958830579493,11.60958830579493,0,0,0,0,0,1,1,0,0,0,37.49,42.42,39.1,49.76,3.333333333333333,1,1,0,0,11,9,5,1,308.3333333333333,1942327.861616635,1520972.721818468,423112.3029256618,80282.38273697767,3280.445408967897 -9688,11929,21670,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.372706505214558,7.29498006663864,0,0,-980.4434493647,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.993823866985734,7.291301415021892,62.01,38.87,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,754,420708.840882577,10429.08089854312,159601.7213705718,0,2074.965961307425 -9689,11930,21671,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,0,0,-933.2941732248232,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.672398045010207,0,49.43,33.33,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,562,295129.4896189194,0,345746.3288347479,0,932.37526719778 -9689,11931,21672,-9,-9,21671,1,1,31,0,0,0,1,1,-9,0,4,7.6785045893733,7.715990237754373,0,0,0,-859.4848933650808,0,1,1,2019,11,1,30,32,1,1,0,10.04959102165766,10.04959102165766,0,0,0,0,0,1,1,0,0,0,42.1,61.52,-9,-9,6.666666666666667,1,1,0,0,5,8,3,1,646,110150.7473132228,0,0,0,769.5225283205556 -9690,11932,21673,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1011.108681793119,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.294926568393576,0,48.62,22.81,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,949,28360.61365958802,238071.0986604207,0,0,1394.479585386365 -9691,11933,21674,-9,21676,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.4384076167343,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,341.6666666666667,164565.4420226502,125400.663966325,280499.0129659387,126295.148535264,2207.501186835643 -9691,11933,21675,-9,21676,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-794.1382383602568,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,341.6666666666667,164565.4420226502,125400.663966325,280499.0129659387,126295.148535264,2207.501186835643 -9691,11933,21676,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.496707930755912,8.811994680858223,0,0,0,-1029.977500596048,0,2,2,2019,11,0,28,54,1,0,0,26.69710968975736,26.69710968975736,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,341.6666666666667,164565.4420226502,125400.663966325,280499.0129659387,126295.148535264,2207.501186835643 -9692,11934,21677,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.889387928274399,8.831161301851589,0,0,0,-949.2174793470847,0,2,2,2019,11,1,54,50,1,1,0,19.33842414545,19.33842414545,0,0,0,0,2,0,0,0,7.724337856523987,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,179,679845.2814854656,156119.4663935264,168921.4001798265,0,3076.142835668409 -9693,11935,21678,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.236981768666158,7.701842399734768,0,0,-1156.797442770695,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,44.52429270542767,0,0,1,1,0,6.661700927230233,7.498599644259102,60.91,31.29,-9,-9,10,1,1,0,0,0,5,3,1,108,223815.5354390467,140568.6591374046,208546.3264619274,0,2160.624730126244 -9694,11936,21679,21680,-9,-9,1,1,61,0,1,0,2,2,-9,1,3,0,0,0,6,4,-58.80350323698362,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,47.42,67.43000000000001,41.87,6.666666666666667,1,1,1,0,5,9,2,0,647,121376.9437577237,0,0,0,3104.171288839505 -9694,11936,21680,21679,-9,-9,1,0,57,0,1,0,3,3,-9,1,4,6.751550648470974,6.869307947881897,0,6,-4,28.89069405391702,0,2,2,2019,5,0,16,16,1,0,0,7.213070144865157,7.213070144865157,0,0,0,0,0,1,1,0,0,0,67.43000000000001,41.87,56.33,47.42,8.333333333333334,1,1,0,0,8,9,2,0,647,121376.9437577237,0,0,0,3104.171288839505 -9694,11936,21681,-9,21680,21679,1,1,16,0,1,0,3,3,-9,1,5,0,0,0,0,0,-1043.744539094016,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,647,121376.9437577237,0,0,0,3104.171288839505 -9694,11937,21682,-9,21680,21679,1,1,24,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1030.542477055224,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.22,61.55,-9,-9,5,1,1,1,0,6,9,1,0,346,96630.8608867673,0,0,0,0 -9695,11938,21683,21684,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.62511202159655,8.727487374070405,0,4,-1,-4.30972868428779,0,-9,-9,2019,9,1,46,45,1,1,0,15.54636422486928,15.54636422486928,0,0,0,0,0,0,0,0,5.207580803417041,0,48.53,58.91,51.73,58.82,6.666666666666667,1,1,0,0,10,9,5,1,664,156551.8786650441,45526.40583756155,331065.6605090422,250737.9814037947,3276.261024289049 -9695,11938,21684,21683,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,8.106705682776019,7.924437639237831,0,4,1,-14.4096375657874,0,-9,-9,2019,9,0,23,34,1,0,0,16.2466297392348,16.2466297392348,0,0,0,0,0,0,0,0,4.230339026027107,0,51.73,58.82,48.53,58.91,8.333333333333334,1,1,0,0,6,9,5,1,664,156551.8786650441,45526.40583756155,331065.6605090422,250737.9814037947,3276.261024289049 -9695,11938,21685,-9,21684,21683,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.4259407704202,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,664,156551.8786650441,45526.40583756155,331065.6605090422,250737.9814037947,3276.261024289049 -9696,11939,21686,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.861899949044423,6.983485104319218,0,0,-1000.916384964955,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.216796956535474,46.93,45.94,-9,-9,5,1,1,0,0,0,4,2,0,930,950767.8295440436,244681.4535843877,504232.9496123699,0,948.2880629204766 -9697,11940,21687,21688,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.508671541608654,7.71565766031903,0,22,1,-57.51068079879209,0,2,-9,2019,12,1,40,40,1,1,0,4.090929662262327,4.090929662262327,0,0,0,0,2,0,0,0,0,0,50.97,42.72,54.2,57.49,6.666666666666667,1,1,0,0,7,1,4,1,563.5,-38559.65182972161,-10003.30937210904,152463.6514764913,79223.81843003468,2428.694993171488 -9697,11940,21688,21687,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.317034487142404,8.083995154999108,0,6,-1,-106.014718040297,0,2,2,2019,7,0,55,60,1,0,0,8.393261801703151,8.393261801703151,0,0,0,0,2,0,0,0,3.839011298000319,0,54.2,57.49,50.97,42.72,8.333333333333334,1,1,0,0,7,1,4,1,563.5,-38559.65182972161,-10003.30937210904,152463.6514764913,79223.81843003468,2428.694993171488 -9697,11941,21689,-9,21687,21688,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1048.678120150722,1,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,1,1,1,823,0,0,0,0,243.1312514031478 -9698,11942,21690,21691,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.586561458180897,9.517230478390063,0,6,4,41.12001329722796,0,1,2,2019,11,1,45,50,1,1,0,38.86139992072737,38.86139992072737,0,0,0,0,7,1,1,0,3.755416593166708,0,45.85,61.26,45.16,40.96,8.333333333333334,1,1,0,0,7,8,5,1,254,3549311.912836809,2123086.770186652,1258608.469918595,11378.68267495788,4923.096383234068 -9698,11942,21691,21690,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,0,0,0,6,-4,-51.5570743709374,0,1,1,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.965427824504743,0,45.16,40.96,45.85,61.26,6.666666666666667,1,1,0,0,0,8,5,1,254,3549311.912836809,2123086.770186652,1258608.469918595,11378.68267495788,4923.096383234068 -9699,11943,21692,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.450844611026831,8.426264016710233,0,0,0,-940.6020059504335,-9,2,2,2019,18,6,52,0,1,6,0,9.807937125110026,9.807937125110026,0,0,0,0,7,0,0,0,2.433198732824941,0,41.41,59.45,-9,-9,8.333333333333334,3,4,0,0,9,7,4,0,529,371181.8663891068,154876.4756392301,0,0,1828.90686757343 -9700,11944,21693,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.124373032219774,8.502148498860921,0,0,0,-812.8987273291684,0,2,2,2019,7,1,38,56,1,1,0,8.264151696731224,8.264151696731224,0,0,0,0,0,0,0,0,0,0,45,51,-9,-9,6.666666666666667,3,4,0,1,12,2,4,0,361,18266.457253873,-105375.8738237974,0,0,712.4581766003558 -9700,11945,21694,-9,21693,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.8741122408551,-9,2,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,5,3,4,0,0,0,2,1,0,649,-182413.0773826524,0,0,0,0 -9701,11946,21695,-9,21696,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.2959068017122,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1583,206168.3459279378,4632.038389794696,97070.24302159058,72134.34623050084,1759.11495824629 -9701,11946,21696,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,7.216005479667886,7.58643597925248,5.927623531547745,0,0,-1048.584835803959,0,2,2,2019,6,1,24,24,1,1,0,8.642972555710111,8.642972555710111,0,0,0,0,0,1,1,0,6.305035789634107,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,4,3,0,1583,206168.3459279378,4632.038389794696,97070.24302159058,72134.34623050084,1759.11495824629 -9702,11947,21697,21698,-9,-9,1,1,42,0,2,0,1,1,1,0,1,7.958906047404482,7.4932419712939,0,16,4,59.23221877949381,-9,2,-9,2019,35,12,16,0,1,12,0,15.00403713393452,15.00403713393452,0,0,0,0,110,1,1,0,0,0,18.76,23.91,41.13,34.95,0,2,3,0,1,0,2,2,1,493.5,72878.91026211917,43357.25410334657,103872.377344617,45052.04519102382,3380.472722293107 -9702,11947,21698,21697,-9,-9,1,0,38,0,2,0,3,3,-9,1,3,0,0,0,16,-4,50.53228458785615,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,41.13,34.95,18.76,23.91,6.666666666666667,2,3,0,0,0,2,2,1,493.5,72878.91026211917,43357.25410334657,103872.377344617,45052.04519102382,3380.472722293107 -9702,11947,21699,-9,21698,21697,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-865.8740571470804,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,1,493.5,72878.91026211917,43357.25410334657,103872.377344617,45052.04519102382,3380.472722293107 -9702,11947,21700,-9,21698,21697,1,1,16,0,2,1,2,0,-9,1,1,0,0,0,0,0,-1118.52410498164,-9,3,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,22.07,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,493.5,72878.91026211917,43357.25410334657,103872.377344617,45052.04519102382,3380.472722293107 -9702,11948,21701,-9,21698,21697,1,1,18,0,2,1,2,0,0,0,2,0,0,0,0,0,-914.722978288628,-9,3,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,57.57,49.69,-9,-9,5,2,3,0,0,0,2,2,1,4411,0,0,0,0,0 -9703,11949,21702,-9,21703,21704,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.348262838424,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,528.5,1911195.695008878,1642893.521995551,312731.2041226932,128530.7265099057,4164.828378325707 -9703,11949,21703,21704,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.725433451625173,7.767281486482799,0,25,1,11.01489472555239,0,2,2,2019,10,1,16,16,1,1,0,14.37445424655107,14.37445424655107,0,0,0,0,0,1,1,0,3.047527345815181,0,36.54,57.54,52,54.51,8.333333333333334,1,1,0,0,10,5,5,1,528.5,1911195.695008878,1642893.521995551,312731.2041226932,128530.7265099057,4164.828378325707 -9703,11949,21704,21703,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.869515918299438,8.824238763310987,0,25,-1,49.25437935124812,0,3,2,2019,8,0,40,37,1,0,0,23.72649422906683,23.72649422906683,0,0,0,0,0,1,1,0,1.706726037261171,0,52,54.51,36.54,57.54,8.333333333333334,1,1,0,0,10,5,5,1,528.5,1911195.695008878,1642893.521995551,312731.2041226932,128530.7265099057,4164.828378325707 -9703,11949,21705,-9,21703,21704,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-880.5069327789063,0,1,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,528.5,1911195.695008878,1642893.521995551,312731.2041226932,128530.7265099057,4164.828378325707 -9703,11950,21706,-9,21703,21704,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-894.5525625972514,1,1,1,2019,21,9,0,11,2,9,1,0,0,0,0,0,0,0,1,1,0,3.094213970149283,0,36.51,61.56,-9,-9,6.666666666666667,1,1,0,0,2,5,2,1,1813,-52081.55384306185,0,0,0,536.4808099710953 -9704,11951,21707,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,2,0,8.327038365687345,8.522003550267227,0,0,-966.1153472427349,0,1,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.204665713861043,8.133021635778004,64.57000000000001,23.22,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,516,930988.597428065,273352.211461905,406145.986536233,0,2452.729136419046 -9705,11952,21708,21709,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.954325407236192,8.958989033291926,0,4,6,57.51133839219719,0,-9,-9,2019,1,0,43,48,1,0,0,18.67819584528987,18.67819584528987,0,0,0,0,0,0,0,0,0,0,46.8,57.03,55.98,43.19,8.333333333333334,1,1,0,0,4,2,5,0,2052,45758.6125062536,-20164.76052919448,124788.1275487169,61460.20961238729,4529.776603383247 -9705,11952,21709,21708,-9,-9,1,0,23,0,0,0,2,2,1,0,3,8.104571652025829,8.273231660453304,0,4,-6,-46.79301161162078,-9,1,2,2019,13,1,37,0,1,1,0,12.50893809616424,12.50893809616424,0,0,0,0,0,0,0,0,2.292454549675995,0,55.98,43.19,46.8,57.03,8.333333333333334,1,1,0,0,4,2,5,0,2052,45758.6125062536,-20164.76052919448,124788.1275487169,61460.20961238729,4529.776603383247 -9706,11953,21710,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.258809444958748,7.450162231584766,0,0,-903.0695414314279,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.184495842513466,7.444575703193522,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,994,801998.0172700726,215536.5141437867,163053.6173355608,0,1856.307507525084 -9707,11954,21711,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.806961999940553,6.559431234397148,0,0,-923.2236490064042,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,1.616025560521162,0,30.48439284094702,0,1,1,0,2.055428388328998,6.535345945984075,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1503,177407.3101167912,80481.85638643501,147372.5925096376,0,240.3748519969428 -9708,11955,21712,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1004.692288738574,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.48,42.82,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,445,-111086.4706742114,0,0,0,453.5451725396402 -9709,11956,21713,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.098107508739758,6.373631537178069,0,0,-852.0957034861392,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.437150986379426,62,28.5,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,449,254344.3299466295,59540.03880597535,188267.6986062458,0,1573.38127841024 -9710,11957,21714,-9,21715,21716,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-959.4081586893823,-9,3,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,5,1,583.6666666666666,215093.4368757376,226271.52607753,141660.7266048647,0,2646.317162318807 -9710,11957,21715,21716,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,0,0,0,35,-5,-73.26965266235172,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,51.7,49.11,8.333333333333334,2,3,0,0,0,4,5,1,583.6666666666666,215093.4368757376,226271.52607753,141660.7266048647,0,2646.317162318807 -9710,11957,21716,21715,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.70808938295125,8.748848653585071,0,35,5,-9.790023201800167,0,3,3,2019,6,0,50,50,1,0,0,16.38466241382243,16.38466241382243,0,0,0,0,0,1,1,0,0,0,51.7,49.11,53.44,55.06,8.333333333333334,2,3,0,0,11,4,5,1,583.6666666666666,215093.4368757376,226271.52607753,141660.7266048647,0,2646.317162318807 -9710,11958,21717,-9,21715,21716,1,1,27,0,0,0,1,1,-9,0,4,7.995637236468651,8.20756000760346,0,0,0,-978.1431829870172,0,2,2,2019,5,0,37,38,1,0,1,11.25304266690041,11.25304266690041,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,578,0,0,0,0,1645.927351540598 -9711,11959,21718,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1017.236644931603,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.97,40.62,-9,-9,5,1,1,0,0,0,12,1,0,1535,-62625.66173782726,0,0,0,1373.858062160328 -9712,11960,21719,-9,21721,21720,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.5119883807323,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,1383,173222.8172967474,0,158566.1597969002,43056.37854028033,2492.313532939367 -9712,11960,21720,21721,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.77951648569845,8.015843038534307,0,23,0,-97.00296361698487,0,2,2,2019,5,0,48,40,1,0,0,5.577300512038121,5.577300512038121,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,10,2,3,1,1383,173222.8172967474,0,158566.1597969002,43056.37854028033,2492.313532939367 -9712,11960,21721,21720,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,7.046058708085169,6.553140268879681,0,7,0,-197.9600470324657,0,-9,-9,2019,2,0,23,30,1,0,0,6.628228261882202,6.628228261882202,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,10,1,1,0,0,10,2,3,1,1383,173222.8172967474,0,158566.1597969002,43056.37854028033,2492.313532939367 -9713,11961,21722,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1066.132758861871,0,2,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,27,1,1,0,0,0,33.33,22.86,-9,-9,5,1,1,0,0,0,13,1,0,1233,160803.9582898902,0,0,0,1533.971864643294 -9714,11962,21723,-9,21725,21724,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.0681387328291,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1816.666666666667,548460.5794279651,409370.3003224334,408656.9542773317,180994.7501575215,3374.577954312734 -9714,11962,21724,21725,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.874519175555642,8.855471090454897,0,11,4,-38.66186681393098,0,2,2,2019,10,0,39,40,1,0,0,16.86042312659661,16.86042312659661,0,0,0,0,2,1,1,0,0,0,46.62,58.62,39.15,49.76,8.333333333333334,1,1,0,0,10,9,5,1,1816.666666666667,548460.5794279651,409370.3003224334,408656.9542773317,180994.7501575215,3374.577954312734 -9714,11962,21725,21724,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.267958063001286,8.530731364502993,0,7,-4,-95.80823360766004,0,2,2,2019,17,5,27,34,1,5,0,14.60256843262489,14.60256843262489,0,0,0,0,0,1,1,0,0,0,39.15,49.76,46.62,58.62,6.666666666666667,1,1,0,0,9,9,5,1,1816.666666666667,548460.5794279651,409370.3003224334,408656.9542773317,180994.7501575215,3374.577954312734 -9715,11963,21726,21728,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,8.708384385407525,8.724566984344305,0,14,2,83.86921990455018,0,2,2,2019,12,1,50,52,1,1,0,11.99359234214545,11.99359234214545,0,0,0,0,0,1,1,0,0,0,46.59,59.97,36.2,56.31,8.333333333333334,1,1,0,0,9,6,3,0,828.25,-29103.88434525321,20418.73088403304,0,0,2078.92655950001 -9715,11963,21727,-9,21728,21726,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.3729671273809,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,828.25,-29103.88434525321,20418.73088403304,0,0,2078.92655950001 -9715,11963,21728,21726,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,14,-2,-15.89115790046178,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,36.2,56.31,46.59,59.97,8.333333333333334,1,1,0,0,0,6,3,0,828.25,-29103.88434525321,20418.73088403304,0,0,2078.92655950001 -9715,11963,21729,-9,21728,21726,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.353640641252,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,828.25,-29103.88434525321,20418.73088403304,0,0,2078.92655950001 -9716,11964,21730,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.80553951929222,7.027331417890218,0,0,-1017.595632619918,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.538577148095761,6.806526302235397,44.41,58,-9,-9,10,1,1,0,0,0,5,2,1,356,207596.3135340291,29662.04149287477,39144.83318261308,0,599.9236429834179 -9717,11965,21731,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,7.748896316320319,7.838554330426429,0,0,0,-945.6064650863379,0,3,2,2019,15,3,40,48,1,3,0,7.39951897788177,7.39951897788177,0,0,0,0,0,0,0,0,0,0,32.45,27.41,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,130,17116.24517957525,39734.41004218662,0,0,554.6703345582796 -9718,11966,21732,21733,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.757015444513348,8.632814002534186,0,11,1,-24.94019924850475,0,2,2,2019,12,0,55,55,1,0,0,11.56217150385678,11.56217150385678,0,0,0,0,0,0,0,0,0,0,47.7,48.93,53.77,45.91,8.333333333333334,1,1,0,0,13,7,5,1,519.5,615681.3637007538,469415.475795371,374336.1691237281,89944.73591773742,3503.447532044926 -9718,11966,21733,21732,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.249536300790002,8.183125417349373,0,11,-1,125.3530326565532,0,2,2,2019,12,1,47,37,1,1,0,8.628376727983122,8.628376727983122,0,0,0,0,0,0,0,0,1.604675423021884,0,53.77,45.91,47.7,48.93,6.666666666666667,1,1,0,0,12,7,5,1,519.5,615681.3637007538,469415.475795371,374336.1691237281,89944.73591773742,3503.447532044926 -9718,11967,21734,-9,21733,21732,1,0,29,0,0,0,1,1,0,0,2,0,0,0,0,0,-851.6142748882389,-9,2,3,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,40.99,54.49,-9,-9,5,1,1,0,1,7,7,1,1,558,-193872.5251509761,-1315.394784897795,0,0,0 -9719,11968,21735,21736,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,8.511588230753093,8.353260547315706,0,25,-3,-13.0258277313716,0,2,2,2019,6,0,39,39,1,0,0,14.13618828896208,14.13618828896208,0,0,0,0,0,0,0,0,3.506772632589156,0,57.06,57.76,61.58,27.28,8.333333333333334,1,1,0,0,9,8,5,1,493.5,427184.4675896026,201872.6922661379,347741.6718984294,130030.2743145621,3725.150795050676 -9719,11968,21736,21735,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.344951146635303,8.418076841026195,0,25,3,61.94459853578937,0,2,3,2019,10,0,39,39,1,0,0,16.13798732183558,16.13798732183558,0,0,0,0,0,0,0,0,3.789371982893411,0,61.58,27.28,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,493.5,427184.4675896026,201872.6922661379,347741.6718984294,130030.2743145621,3725.150795050676 -9720,11969,21737,21739,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,0,0,0,10,9,47.77745366616841,0,2,2,2019,11,1,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,3.719439643106454,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,1,0,11,10,2,1,1645.5,26450.25356654628,32611.94899038247,0,0,21.17957118536393 -9720,11969,21738,-9,21739,21737,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.249836583809,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,1,1645.5,26450.25356654628,32611.94899038247,0,0,21.17957118536393 -9720,11969,21739,21737,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.621675937979862,7.420239715976088,0,10,0,-64.29091387942583,0,2,2,2019,11,0,18,19,1,0,0,14.79906073564919,14.79906073564919,0,0,0,0,0,0,0,0,8.352806830550112,0,49.41,58.28,57.16,56.15,6.666666666666667,1,1,0,0,10,10,2,1,1645.5,26450.25356654628,32611.94899038247,0,0,21.17957118536393 -9720,11969,21740,-9,21739,21737,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.681207861622,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,2,1,1645.5,26450.25356654628,32611.94899038247,0,0,21.17957118536393 -9721,11970,21741,21743,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.726790779558232,7.791791439370622,0,7,2,-14.25550749832972,0,3,2,2019,9,0,46,42,1,0,0,6.072014823104301,6.072014823104301,0,0,0,0,2,1,1,0,0,0,56.18,51.02,49.04,55.86,6.666666666666667,1,1,0,0,8,11,3,1,677.6,-80471.4479379503,0,293151.7717814216,302450.0306980567,2489.957141173017 -9721,11970,21742,-9,21743,21741,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.3749844734415,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,677.6,-80471.4479379503,0,293151.7717814216,302450.0306980567,2489.957141173017 -9721,11970,21743,21741,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,6.567719521191812,6.525675047980759,0,7,-2,-14.91194053557614,0,3,-9,2019,10,0,10,8,1,0,0,7.998882345001971,7.998882345001971,0,0,0,0,0,1,1,0,0,0,49.04,55.86,56.18,51.02,6.666666666666667,1,1,0,0,6,11,3,1,677.6,-80471.4479379503,0,293151.7717814216,302450.0306980567,2489.957141173017 -9721,11970,21744,-9,21743,21741,1,0,17,0,2,0,2,2,0,0,3,0,0,0,0,0,-1046.934475187994,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,6.446177655537731,0,49.55,55.6,-9,-9,8.333333333333334,1,1,0,0,1,11,3,1,677.6,-80471.4479379503,0,293151.7717814216,302450.0306980567,2489.957141173017 -9721,11970,21745,-9,21743,21741,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.9112136537357,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,677.6,-80471.4479379503,0,293151.7717814216,302450.0306980567,2489.957141173017 -9722,11971,21746,21747,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,22,11,57.61197447405044,0,3,3,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,.8124922061272839,0,60.29,52.11,60.12,54.8,8.333333333333334,1,1,1,0,8,12,5,1,859.5,663373.3181853546,388346.4798056977,392263.0577893028,147622.8469523907,4124.751520896369 -9722,11971,21747,21746,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.027207115672939,9.267326462902794,0,21,-11,-108.4065677211384,0,-9,-9,2019,6,0,49,47,1,0,0,23.35231941306082,23.35231941306082,0,0,0,0,0,0,0,0,.5025716798865321,0,60.12,54.8,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,859.5,663373.3181853546,388346.4798056977,392263.0577893028,147622.8469523907,4124.751520896369 -9723,11972,21748,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.173293711197633,8.257600737374728,0,0,0,-971.2092390690203,0,2,-9,2019,15,5,42,39,1,5,0,15.48190777021038,15.48190777021038,0,0,0,0,0,0,0,0,4.320254550721074,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,998,561702.4241332156,159159.8825811704,229417.1483188988,78700.51828829033,1496.841159969526 -9724,11973,21749,21750,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.732559736935221,8.679532416501241,0,13,1,-34.81507772776236,0,2,2,2019,9,0,39,39,1,1,0,20.46878039144724,20.46878039144724,0,0,0,0,0,0,0,0,0,0,52,55,54.96,53.17,8,1,1,0,0,12,10,5,1,209.5,435577.1155211063,33157.63971067466,329050.1777844083,36900.32881867744,3618.435622827185 -9724,11973,21750,21749,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.913481232961296,7.947037344794681,0,14,-1,-32.55960876904904,0,3,3,2019,8,0,38,38,1,0,0,10.66560005325753,10.66560005325753,0,0,0,0,0,0,0,0,0,0,54.96,53.17,52,55,10,1,1,0,0,12,10,5,1,209.5,435577.1155211063,33157.63971067466,329050.1777844083,36900.32881867744,3618.435622827185 -9725,11974,21751,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.16435715461607,8.267998686059483,0,0,0,-862.4921210396726,0,2,3,2019,6,0,55,50,1,0,0,5.93082841934336,5.93082841934336,0,0,0,0,7,0,0,0,6.693599864342008,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,561,-113313.975553424,-95167.50007596699,0,0,2096.582051552555 -9726,11975,21752,21753,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,3,0,-34.98188793464303,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,4.213546592340153,0,53.98,50.87,37.76,55.72,3.333333333333333,1,1,0,0,8,10,2,1,409.5,1015473.324595113,363847.7413487169,325482.9851591568,0,812.7234289125283 -9726,11975,21753,21752,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.203396947107911,7.060086039562745,34,0,107.2715398066902,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.794518700822453,6.789811252593208,37.76,55.72,53.98,50.87,6.666666666666667,1,1,0,0,0,10,2,1,409.5,1015473.324595113,363847.7413487169,325482.9851591568,0,812.7234289125283 -9727,11976,21754,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.869232636133952,6.873994621327581,0,0,0,-985.5747606467589,0,-9,-9,2019,13,4,16,16,1,4,0,5.523746451739027,5.523746451739027,0,0,0,0,0,1,0,1,0,0,42.97,53.35,-9,-9,8.333333333333334,1,1,0,0,6,2,2,0,646.5,161705.8659873798,-3691.218085155306,124439.6871490011,42786.6677540529,1695.519972945943 -9727,11976,21755,-9,21754,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.808185270723,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,2,0,646.5,161705.8659873798,-3691.218085155306,124439.6871490011,42786.6677540529,1695.519972945943 -9728,11977,21756,21757,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.712499412950708,7.509875207299438,0,6,-1,-61.3920791134649,0,3,3,2019,10,1,26,26,1,1,0,8.750337442369478,8.750337442369478,0,0,0,0,0,1,1,0,0,0,58.07,46.29,51.2,46.51,1.666666666666667,1,1,0,0,7,13,4,1,730,502638.5805427707,194372.7773015328,125689.2522949644,86025.38793339052,1916.433110701722 -9728,11977,21757,21756,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.989830710117718,7.983894830304648,0,6,1,10.14660787119228,0,3,3,2019,8,0,43,50,1,0,0,9.813292295959489,9.813292295959489,0,0,0,0,0,1,1,0,0,0,51.2,46.51,58.07,46.29,6.666666666666667,1,1,0,0,7,13,4,1,730,502638.5805427707,194372.7773015328,125689.2522949644,86025.38793339052,1916.433110701722 -9728,11978,21758,-9,21756,21757,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1059.664880319722,0,3,2,2019,11,0,0,60,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,1,1,6,13,1,1,168,35596.55068921516,0,0,0,-496.4711539018894 -9728,11979,21759,-9,21756,21757,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-948.064360074054,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,1048,24801.38886870199,0,0,0,-133.2809809969221 -9728,11980,21760,-9,21756,21757,1,1,18,0,0,0,2,2,1,0,3,6.369111960567886,6.578142546841063,0,0,0,-999.842029592965,-9,3,2,2019,8,0,12,0,1,0,1,5.965244169645429,5.965244169645429,0,0,0,0,0,1,1,0,.7929485943634532,0,55.93,49.95,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,241,49411.25784219021,0,0,0,309.6970860858915 -9729,11981,21761,21762,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,9.077419287495765,8.950401621929148,45,0,-83.81725271106457,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.023156958459849,8.599613716427895,56.29,52.37,55.27,39.27,8.333333333333334,1,1,0,0,5,4,5,1,297.5,1161960.770565301,812785.3555511293,237252.5721703197,0,5271.098128205124 -9729,11981,21762,21761,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.292344908737096,6.374471961250643,45,0,114.8478292437992,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.290952935772969,6.691345084433728,55.27,39.27,56.29,52.37,10,1,1,0,0,6,4,5,1,297.5,1161960.770565301,812785.3555511293,237252.5721703197,0,5271.098128205124 -9730,11982,21763,-9,21764,-9,1,0,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1071.591464100475,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,1,0,719,0,0,0,0,2044.98976270557 -9730,11982,21764,-9,-9,-9,1,0,56,1,2,0,2,2,-9,0,3,0,0,0,0,0,-949.9508972627772,0,1,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,49.18,19.47,-9,-9,6.666666666666667,1,1,0,0,11,7,1,0,719,0,0,0,0,2044.98976270557 -9730,11983,21765,-9,21764,-9,1,1,20,1,2,0,2,2,-9,0,3,8.2296821212399,8.322360029520105,0,0,0,-910.1545948230854,-9,2,-9,2019,12,1,35,0,1,1,0,8.958950841321057,8.958950841321057,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,6.666666666666667,1,1,0,0,0,7,3,0,1996,-279975.8972656679,29306.8496341256,0,0,971.2297947586751 -9730,11984,21766,21767,21764,-9,1,1,22,1,2,0,2,2,-9,0,4,8.717124692586479,8.288178411536704,0,5,-1,-71.87956750718999,0,2,-9,2019,7,0,40,61,1,0,0,13.15129364601815,13.15129364601815,0,0,0,0,0,1,1,0,0,0,53.82,50.73,35.83,58.16,8.333333333333334,1,1,0,0,6,7,3,0,898,50501.14112487075,442.3081174662414,0,0,2079.439324477749 -9730,11984,21767,21766,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,7.312897217953184,7.030297810365164,0,5,1,40.00821101683323,0,-9,-9,2019,23,11,27,16,1,11,0,4.602564888509201,4.602564888509201,0,0,0,0,0,1,1,0,0,0,35.83,58.16,53.82,50.73,8.333333333333334,1,1,0,0,4,7,3,0,898,50501.14112487075,442.3081174662414,0,0,2079.439324477749 -9730,11984,21768,-9,21767,21766,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.8314435357248,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,0,898,50501.14112487075,442.3081174662414,0,0,2079.439324477749 -9731,11985,21769,21770,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.394391691199118,8.333117443076558,0,19,-3,47.06611801974446,0,-9,-9,2019,7,0,40,45,1,0,0,9.238844155511098,9.238844155511098,0,0,0,0,0,1,1,0,6.42962988974972,0,57.33,53.46,28.9,61.01,8.333333333333334,1,1,0,0,8,2,4,1,543.6666666666666,142367.3019428001,73583.79796028599,101791.6983364081,27300.13965879927,3006.004685840012 -9731,11985,21770,21769,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.705555703590082,7.943468347742419,0,19,3,-74.63933748414877,0,2,2,2019,19,6,2,0,1,6,0,126.1696787897755,126.1696787897755,0,0,0,0,0,1,1,0,0,0,28.9,61.01,57.33,53.46,1.666666666666667,1,1,0,1,10,2,4,1,543.6666666666666,142367.3019428001,73583.79796028599,101791.6983364081,27300.13965879927,3006.004685840012 -9731,11985,21771,-9,21770,21769,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-942.2662118897418,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,543.6666666666666,142367.3019428001,73583.79796028599,101791.6983364081,27300.13965879927,3006.004685840012 -9731,11986,21772,-9,21770,21769,1,0,20,0,1,0,2,2,-9,0,4,8.324708772534979,8.174747054898653,0,0,0,-1063.381076909679,0,2,2,2019,20,9,35,37,1,9,1,11.30478413321689,11.30478413321689,0,0,0,0,0,1,1,0,0,0,22.48,66.73999999999999,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,1689,-140839.8039306306,-39393.52986534542,0,0,1534.253588245719 -9731,11987,21773,-9,21770,21769,1,1,23,0,1,0,2,2,-9,0,3,7.87905721155204,7.958140184776314,0,0,0,-1027.915431352832,0,2,2,2019,12,2,40,37,1,2,1,6.482978802565896,6.482978802565896,0,0,0,0,0,1,1,0,0,0,48.22,54.79,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1506,53461.63178802777,-1557.268988888525,0,0,1194.351673619148 -9732,11988,21774,21776,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.080437866198002,8.741637415476033,0,26,-2,-46.53570496418934,0,2,-9,2019,9,0,37,37,1,0,0,28.30624395478483,28.30624395478483,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.44,51.82,8.333333333333334,4,2,0,0,8,6,5,1,1088.25,719890.6457422045,420530.6363249409,594299.4035484227,350596.1368855563,6486.224637070653 -9732,11988,21775,-9,21774,21776,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1056.189318087954,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.0686620004643786,0,53.75,59.47,-9,-9,10,4,2,0,0,3,6,5,1,1088.25,719890.6457422045,420530.6363249409,594299.4035484227,350596.1368855563,6486.224637070653 -9732,11988,21776,21774,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.733561953659967,9.212105436291878,0,19,2,96.08038441797872,0,2,2,2019,7,1,60,60,1,1,0,18.19652228193905,18.19652228193905,0,0,0,0,7,1,1,0,0,0,54.44,51.82,52.23,55.6,6.666666666666667,4,2,0,0,7,6,5,1,1088.25,719890.6457422045,420530.6363249409,594299.4035484227,350596.1368855563,6486.224637070653 -9732,11988,21777,-9,21774,21776,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.671245267258,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,1088.25,719890.6457422045,420530.6363249409,594299.4035484227,350596.1368855563,6486.224637070653 -9733,11989,21778,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1017.565012362883,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,5,1,0,1370,0,0,0,0,1507.888449162858 -9734,11990,21779,21780,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.1864188142695,9.437981260277764,0,8,-6,3.378925557628245,0,3,2,2019,12,0,45,42,1,0,0,27.23402794061678,27.23402794061678,0,0,0,0,0,0,0,0,8.289155187681109,0,54.37,54.8,54.3,42.49,8.333333333333334,1,1,0,0,8,6,5,1,624.5,649619.7716665955,4780.363576395728,354592.2212194546,0,6822.054009512865 -9734,11990,21780,21779,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.566267541404002,8.670660727625162,0,8,6,110.4194632396487,0,-9,2,2019,12,2,44,43,1,2,0,10.79198943629472,10.79198943629472,0,0,0,0,0,0,0,0,3.984533381921052,0,54.3,42.49,54.37,54.8,6.666666666666667,1,1,0,0,8,6,5,1,624.5,649619.7716665955,4780.363576395728,354592.2212194546,0,6822.054009512865 -9734,11991,21781,-9,21779,21780,1,0,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-961.7391978929709,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.02,41.58,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,372,61266.6367214868,0,0,0,0 -9735,11992,21782,21783,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.864420126920523,7.871954316030171,0,6,-3,-54.96104127580089,0,2,2,2019,35,12,32,36,1,12,0,9.554981572437825,9.554981572437825,0,0,0,0,0,1,1,0,0,0,23.29,35.52,53,54,1.666666666666667,1,1,0,0,8,1,3,0,175.5,291916.7684849908,112936.6301266274,101566.8491540469,64128.8031915732,2351.970614874434 -9735,11992,21783,21782,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.606137545659105,6.992156442618877,0,6,3,-81.22568634580306,0,-9,-9,2019,9,0,32,32,1,1,0,4.289919668004178,4.289919668004178,0,0,0,2.224836885458783,0,1,1,0,0,0,53,54,23.29,35.52,8,1,1,0,0,1,1,3,0,175.5,291916.7684849908,112936.6301266274,101566.8491540469,64128.8031915732,2351.970614874434 -9736,11993,21784,21785,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.569499584966294,8.301279998516396,0,9,5,35.17758849500196,-9,-9,-9,2019,8,0,42,0,1,0,0,14.79999022769466,14.79999022769466,0,0,0,0,0,1,1,0,0,0,52.54,54.24,37.02,37.37,3.333333333333333,1,1,0,0,12,12,4,1,962.6666666666666,84792.27806082826,-13030.46654690148,349571.7330305413,201458.7876323376,2862.746067847439 -9736,11993,21785,21784,-9,-9,1,0,32,1,1,0,2,2,-9,0,2,7.648384486475364,7.460637744910822,0,9,-5,-112.8042690521269,0,2,2,2019,22,10,23,23,1,10,0,8.794593463553941,8.794593463553941,0,0,0,0,0,1,1,0,0,0,37.02,37.37,52.54,54.24,5,1,1,0,0,10,12,4,1,962.6666666666666,84792.27806082826,-13030.46654690148,349571.7330305413,201458.7876323376,2862.746067847439 -9736,11993,21786,-9,21785,21784,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.952842952059,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,962.6666666666666,84792.27806082826,-13030.46654690148,349571.7330305413,201458.7876323376,2862.746067847439 -9737,11994,21787,21788,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.346820532205235,6.036217519175323,5.293124483829969,1,-4,2.418117827062133,-9,2,2,2019,8,0,20,0,1,0,0,1.537132615158677,1.537132615158677,0,0,0,0,27,1,1,0,6.257271451616104,5.365144094909319,48,38,63.76,7.37,8.333333333333334,1,1,0,0,7,11,2,1,605.5,1731262.344422399,147475.2335479506,250930.023981896,0,1182.049698716768 -9737,11994,21788,21787,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,1,4,5.758689369651522,-9,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,26.22424825520217,0,0,1,1,0,0,0,63.76,7.37,48,38,6.666666666666667,1,1,0,0,0,11,2,1,605.5,1731262.344422399,147475.2335479506,250930.023981896,0,1182.049698716768 -9738,11995,21789,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.143551569806347,7.712782039593809,0,0,0,-1097.605433023344,0,2,2,2019,8,0,37,36,1,0,0,8.905725796745873,8.905725796745873,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,414,111022.4302124271,37437.7096009568,117883.8082394121,15156.31021660137,1592.323428252135 -9738,11995,21790,-9,21789,-9,1,0,16,0,1,1,2,0,-9,0,2,0,5.599137861265312,5.473892272137675,0,0,-971.8959267853166,-9,2,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,5.601727441474806,0,46.21,48.13,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,414,111022.4302124271,37437.7096009568,117883.8082394121,15156.31021660137,1592.323428252135 -9739,11996,21791,21792,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.389845610343647,8.455973006913506,30,9,130.9097039230354,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.415081946241958,8.363526324900375,60.12,54.8,38.17,54.26,0,1,1,0,0,7,5,5,1,1001.5,1444648.876511158,1089441.799294578,223717.4445137631,0,4285.414659236412 -9739,11996,21792,21791,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.565315162163166,8.282085214835304,0,26,0,36.79183506256591,0,-9,-9,2019,16,4,44,57,1,4,0,13.45009483508793,13.45009483508793,0,0,0,0,0,1,1,0,1.756755835716326,0,38.17,54.26,60.12,54.8,8.333333333333334,1,1,0,0,9,5,5,1,1001.5,1444648.876511158,1089441.799294578,223717.4445137631,0,4285.414659236412 -9739,11997,21793,-9,21792,21791,1,0,23,0,0,0,1,1,-9,0,5,8.114720641886183,8.112177924387804,0,0,0,-917.4302410203413,0,2,2,2019,9,0,60,25,1,0,1,9.38682646300445,9.38682646300445,0,0,0,0,0,1,1,0,.1190062283120076,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,947,-124830.116842475,37253.98246624836,0,0,1242.37294050697 -9739,11998,21794,-9,21792,21791,1,1,20,0,0,1,2,0,0,0,4,0,7.865903201842769,7.886934976700564,0,0,-1044.213612255922,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,8.131662796033352,0,49.95,56.68,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,1718,99547.32060431855,12238.05055913054,0,0,1663.988856482193 -9740,11999,21795,21796,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,49,0,-83.46205805584934,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,46.56,60,41.18,8.333333333333334,1,1,0,0,0,6,2,1,211.5,-38483.60136974316,-8573.494582253094,0,0,1085.157559718248 -9740,11999,21796,21795,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.369508832886781,4.742829959413884,49,0,134.4590004361164,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.062617312108054,4.830128762278818,60,41.18,49.28,46.56,10,1,1,0,0,0,6,2,1,211.5,-38483.60136974316,-8573.494582253094,0,0,1085.157559718248 -9741,12000,21797,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.176224240773869,7.355391998811039,0,0,-919.9502126387804,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.21498278654363,7.359106407768789,45.67,50.43,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,734,595687.5493241273,64438.45067688818,0,0,1241.870802128077 -9742,12001,21798,21799,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.168073997728014,5.415028032433058,54,3,119.9267944669241,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,2.364554046226014,0,28.52591711184068,0,1,1,0,5.402547222839612,5.498890362994172,33.61,46.08,58.57,35.72,8.333333333333334,1,1,0,0,0,6,2,1,346.5,370215.0970770339,114176.1967859283,176928.3153987447,0,1273.201427377147 -9742,12001,21799,21798,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.991813888754046,6.916745171252907,54,-3,-161.1532062146367,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.754181589619703,6.929465356624314,58.57,35.72,33.61,46.08,8.333333333333334,1,1,0,0,0,6,2,1,346.5,370215.0970770339,114176.1967859283,176928.3153987447,0,1273.201427377147 -9743,12002,21800,21801,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.374793786572172,6.935639503095267,45,-1,64.16816894800496,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,6.809897072413004,49,48,52,54.51,6.666666666666667,1,1,0,0,5,12,3,1,656,938556.8754259734,781292.5570371,250537.3745497195,0,1152.544395367687 -9743,12002,21801,21800,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.508517365517143,7.533985424357728,45,1,-91.13500407207525,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.240109174266759,7.202701115786392,52,54.51,49,48,8.333333333333334,1,1,0,0,7,12,3,1,656,938556.8754259734,781292.5570371,250537.3745497195,0,1152.544395367687 -9744,12003,21802,21803,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,9.598160296179948,9.520868396101898,0,38,2,-3.575603336895037,0,2,2,2019,8,0,44,45,1,0,0,46.89156696637943,46.89156696637943,0,0,0,0,0,1,1,0,9.161044973247908,0,57.16,56.15,52.47,51.99,8.333333333333334,1,1,0,0,11,8,5,1,487,2454957.835333018,1041510.646462975,1389275.073009015,0,10925.27914446614 -9744,12003,21803,21802,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.355680165900192,7.088874620269402,38,-2,101.7076120163192,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.413237458475731,52.47,51.99,57.16,56.15,8.333333333333334,1,1,0,0,6,8,5,1,487,2454957.835333018,1041510.646462975,1389275.073009015,0,10925.27914446614 -9745,12004,21804,21805,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.246750939559151,8.713343998994535,0,3,4,5.378267845794906,0,-9,-9,2019,10,0,37,38,1,1,0,14.17691494108609,14.17691494108609,0,0,0,0,0,1,1,0,0,0,51,54,59.81,52.38,8,4,1,0,0,1,9,4,1,245.5,267175.4489192417,135850.6996852784,261615.2293000342,71999.84149555257,3636.02581756771 -9745,12004,21805,21804,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.358467946048501,7.863037368465637,0,3,-4,110.9684131436182,0,2,3,2019,7,0,37,38,1,0,0,10.39255806485503,10.39255806485503,0,0,0,0,0,1,1,0,0,0,59.81,52.38,51,54,8.333333333333334,1,1,0,0,9,9,4,1,245.5,267175.4489192417,135850.6996852784,261615.2293000342,71999.84149555257,3636.02581756771 -9746,12005,21806,-9,21807,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1078.943277932793,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,56.29,52.52,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,569.5,45237.86040374158,0,0,0,1252.70934590423 -9746,12005,21807,-9,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,7.768087500866427,7.700405672203825,5.66841198510417,0,0,-981.3021401707412,0,3,2,2019,21,9,1,32,1,9,0,239.7775337759905,239.7775337759905,0,0,0,0,0,1,0,1,5.339980860211107,0,36.26,28.29,-9,-9,3.333333333333333,1,1,0,0,8,1,3,0,569.5,45237.86040374158,0,0,0,1252.70934590423 -9747,12006,21808,-9,21809,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.3170215293636,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,645,38999.14508072816,0,0,0,1261.783478531645 -9747,12006,21809,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-931.8305497487216,0,2,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.36,24.02,-9,-9,5,3,4,0,0,0,8,1,0,645,38999.14508072816,0,0,0,1261.783478531645 -9748,12007,21810,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1107.304012355305,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.894906234388901,0,57.16,56.15,-9,-9,10,1,1,0,0,9,4,1,0,238,100164.9442042423,0,146883.5750730863,2873.904202579302,379.0539955214948 -9749,12008,21811,21812,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.712559199874173,6.81668558853214,43,-1,16.64915797294565,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,8.489059940686303,6.507723724471145,48.12,42.71,44.55,60.42,8.333333333333334,1,1,0,0,0,6,2,1,335.5,141594.3669648493,53282.25530844825,121388.1824954002,0,4251.631219420879 -9749,12008,21812,21811,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,6.974205618531657,6.832545278411871,43,1,-34.37009149199464,0,2,2,2019,16,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.912450806191691,6.94905930395888,44.55,60.42,48.12,42.71,8.333333333333334,1,1,0,0,4,6,2,1,335.5,141594.3669648493,53282.25530844825,121388.1824954002,0,4251.631219420879 -9750,12009,21813,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.8879113197775,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,8.167693654852936,25.71961672406971,.1749547062872612,0,1,1,0,0,0,52,45,-9,-9,8,3,4,0,0,0,2,1,0,501,84199.78398763126,0,95425.90668931378,0,1127.202299203776 -9751,12010,21814,21815,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.232431272596628,8.267151418635587,0,10,3,61.42239939886736,0,3,2,2019,10,0,45,43,1,0,0,7.797849507597997,7.797849507597997,0,0,0,0,0,0,0,0,0,0,44.17,49.99,47.61,53.7,6.666666666666667,1,1,0,0,11,12,4,1,3472.5,281178.5500644236,40154.71739375348,110030.4523821997,8246.206801834924,2609.208054885072 -9751,12010,21815,21814,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.95124020293994,7.899187115583482,0,10,-3,-29.84202033288933,0,3,3,2019,11,3,37,37,1,3,0,10.64979648914346,10.64979648914346,0,0,0,0,0,0,0,0,0,0,47.61,53.7,44.17,49.99,8.333333333333334,1,1,0,0,11,12,4,1,3472.5,281178.5500644236,40154.71739375348,110030.4523821997,8246.206801834924,2609.208054885072 -9752,12011,21816,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,7.760815675303447,7.794038285758213,0,0,-998.5806119347261,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,.8276357525161528,0,0,1,1,0,0,8.078137480873162,45.47,25.02,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1300,101144.3889954902,166759.6363488176,281189.2891483592,0,2830.616736215919 -9753,12012,21817,21820,-9,-9,1,1,55,0,3,0,1,1,-9,0,4,9.557524775579623,9.761847342939157,0,25,3,-48.8877218224379,0,3,3,2019,11,0,50,45,1,0,0,37.42856609336326,37.42856609336326,0,0,0,0,0,1,1,0,1.481850111940386,0,51.83,57.2,49.17,58.56,8.333333333333334,1,1,0,0,8,6,5,1,440.2,2103918.584129256,1761864.497064699,421218.7711719511,7408.227083141683,7675.188987381463 -9753,12012,21818,-9,21820,21817,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-894.6393865719366,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,2.939706379192195,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,5,1,440.2,2103918.584129256,1761864.497064699,421218.7711719511,7408.227083141683,7675.188987381463 -9753,12012,21819,-9,21820,21817,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1047.761555884758,-9,1,1,2019,6,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.79,62.34,-9,-9,10,1,1,0,0,0,6,5,1,440.2,2103918.584129256,1761864.497064699,421218.7711719511,7408.227083141683,7675.188987381463 -9753,12012,21820,21817,-9,-9,1,0,52,0,3,0,1,1,-9,0,5,7.718103711115187,7.402621730876958,0,25,-3,48.76271044559508,0,2,2,2019,12,0,32,22,1,0,0,7.502486329819768,7.502486329819768,0,0,0,0,0,1,1,0,.8154090137215079,0,49.17,58.56,51.83,57.2,6.666666666666667,1,1,0,0,2,6,5,1,440.2,2103918.584129256,1761864.497064699,421218.7711719511,7408.227083141683,7675.188987381463 -9753,12012,21821,-9,21820,21817,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-887.7281402935989,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,440.2,2103918.584129256,1761864.497064699,421218.7711719511,7408.227083141683,7675.188987381463 -9753,12013,21822,-9,21820,21817,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-962.0650619354701,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,245,233614.187201559,0,0,0,265.6614610161671 -9754,12014,21823,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.812046448875,0,3,2,2019,25,9,0,40,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.18,58.4,-9,-9,3.333333333333333,1,1,1,1,10,7,2,1,119,0,0,0,0,-68.25787477510062 -9755,12015,21824,21825,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,9,-1,18.01866006043162,0,-9,-9,2019,26,11,0,48,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,53.53,26.07,57.16,56.15,5,1,1,0,0,7,6,3,0,466,260851.8458392444,182865.0816716455,154362.2645319825,0,1046.312828444833 -9755,12015,21825,21824,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.030771450696928,8.164939293475795,0,35,1,-93.82173300169579,0,3,-9,2019,7,0,38,39,1,0,0,10.1416078761699,10.1416078761699,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.53,26.07,5,1,1,0,0,10,6,3,0,466,260851.8458392444,182865.0816716455,154362.2645319825,0,1046.312828444833 -9756,12016,21826,21827,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.103291780356965,8.753018560557161,0,1,-2,35.48432588915384,-9,3,3,2019,22,9,48,0,1,9,0,18.00214174455587,18.00214174455587,0,0,0,0,0,0,0,0,5.19400339056949,0,41.06,62.04,46.57,42.03,8.333333333333334,2,3,0,0,11,6,5,1,1368,923858.3531990605,209097.3686623565,828697.0453954546,148071.9486950354,8992.670517957829 -9756,12016,21827,21826,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.471147733356792,9.259603709341489,0,1,2,-66.231621943859,-9,3,3,2019,13,1,73,0,1,1,0,19.98076978967983,19.98076978967983,0,0,0,0,0,0,0,0,0,0,46.57,42.03,41.06,62.04,5,2,3,0,0,11,6,5,1,1368,923858.3531990605,209097.3686623565,828697.0453954546,148071.9486950354,8992.670517957829 -9756,12017,21828,-9,21826,21827,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-959.0242775302465,-9,1,1,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,37.95,62.73,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,505,26320.90472784666,0,0,0,0 -9757,12018,21829,-9,21831,21830,1,1,16,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1104.713657818889,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.26,50.52,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,839.3333333333334,1414467.990510308,1268040.736851368,261592.0841898557,50841.77719772467,2775.615531905074 -9757,12018,21830,21831,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.629397864550937,7.373694417248955,0,16,10,-92.19567288502211,0,3,3,2019,20,8,35,35,1,8,0,6.577639859532962,6.577639859532962,0,0,0,0,0,1,1,0,0,0,42.45,37.22,46.08,57.2,3.333333333333333,1,1,0,1,9,10,4,1,839.3333333333334,1414467.990510308,1268040.736851368,261592.0841898557,50841.77719772467,2775.615531905074 -9757,12018,21831,21830,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.909813147079585,8.452207151470093,0,7,-10,-24.84230680318655,-9,-9,-9,2019,8,0,36,0,1,0,0,10.61531973963177,10.61531973963177,0,0,0,0,0,1,1,0,0,0,46.08,57.2,42.45,37.22,6.666666666666667,1,1,0,0,9,10,4,1,839.3333333333334,1414467.990510308,1268040.736851368,261592.0841898557,50841.77719772467,2775.615531905074 -9757,12019,21832,-9,21831,21830,1,0,20,0,0,0,2,2,-9,0,4,7.528811395194862,7.745636208642596,0,0,0,-1036.514846420784,0,2,2,2019,20,8,42,33,1,8,1,6.151223018016416,6.151223018016416,0,0,0,0,0,1,1,0,0,0,24.46,63.1,-9,-9,3.333333333333333,1,1,0,1,4,10,3,1,1070,14570.89530016189,0,0,0,838.1623127876612 -9758,12020,21833,-9,21836,21835,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.7549328208612,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.678374550944381,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,962.25,54015.05834874207,17460.00180637967,122115.1639656843,87275.97776527447,2213.417356753475 -9758,12020,21834,-9,21836,21835,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.939721425675,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,2,1,962.25,54015.05834874207,17460.00180637967,122115.1639656843,87275.97776527447,2213.417356753475 -9758,12020,21835,21836,-9,-9,1,1,32,1,2,0,2,2,-9,1,4,0,0,0,1,-8,-133.8942806989074,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,58,45.81,61.51,7,1,1,0,0,0,11,2,1,962.25,54015.05834874207,17460.00180637967,122115.1639656843,87275.97776527447,2213.417356753475 -9758,12020,21836,21835,-9,-9,1,0,40,1,2,0,2,2,-9,0,5,7.318948586831016,7.515960494942507,0,1,8,36.52127453287228,0,2,2,2019,12,2,22,22,1,2,0,9.244443840211652,9.244443840211652,0,0,0,0,2,1,1,0,0,0,45.81,61.51,50,58,8.333333333333334,1,1,0,0,9,11,2,1,962.25,54015.05834874207,17460.00180637967,122115.1639656843,87275.97776527447,2213.417356753475 -9759,12021,21837,-9,21838,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1021.586913798367,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,2,1,0,1021,104945.5796005182,-35578.75003155858,0,0,689.0726325415657 -9759,12021,21838,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,0,0,0,0,0,-827.0791780885565,0,-9,-9,2019,11,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.53,41.24,-9,-9,6.666666666666667,2,3,0,0,7,2,1,0,1021,104945.5796005182,-35578.75003155858,0,0,689.0726325415657 -9759,12022,21839,-9,21838,-9,1,0,26,0,1,0,1,1,-9,0,3,8.271294640722418,7.924023039239141,0,0,0,-970.9017539456213,0,2,-9,2019,7,0,38,38,1,0,1,10.42722930249475,10.42722930249475,0,0,0,1.40416549514806,0,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,2,3,0,0,5,2,4,0,166,124886.6062841779,-43706.63085921478,0,0,1390.92945459121 -9759,12023,21840,-9,21838,-9,1,1,22,0,1,0,1,1,-9,0,3,7.803756648231685,7.75456810305026,0,0,0,-947.0760225036368,0,2,-9,2019,18,6,39,38,1,6,1,5.898194659271743,5.898194659271743,0,0,0,0,0,1,1,0,0,0,20.32,58.46,-9,-9,6.666666666666667,2,3,0,0,6,2,3,0,1636,297122.3151532464,-10646.375533831,0,0,1073.994708366331 -9760,12024,21841,21842,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.613029534885631,7.502014602184262,8,4,98.83190723842986,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.460934903784337,57.16,56.15,50,47,8.333333333333334,1,1,0,0,8,9,3,1,234,1070274.519473005,741260.822982922,218372.0096079682,0,1356.196363425951 -9760,12024,21842,21841,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.177444192360176,6.892132399026882,8,-4,246.3161311877918,0,3,3,2019,32,12,0,18,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,6.866413560716744,50,47,57.16,56.15,3.333333333333333,1,1,1,0,8,9,3,1,234,1070274.519473005,741260.822982922,218372.0096079682,0,1356.196363425951 -9761,12025,21843,21844,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.676323093414002,6.697127465610174,0,7,-5,-15.29574758387108,0,-9,-9,2019,6,0,40,46,1,0,0,1.634771322834357,1.634771322834357,0,0,0,0,0,1,1,0,0,0,64.82000000000001,37.68,59.31,49.81,6.666666666666667,1,1,0,0,11,12,2,0,544,330803.7085387564,151769.1618456102,145811.9835275739,0,516.7296185169275 -9761,12025,21844,21843,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,3,5,-114.2309937385482,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,49.81,64.82000000000001,37.68,6.666666666666667,1,1,0,0,0,12,2,0,544,330803.7085387564,151769.1618456102,145811.9835275739,0,516.7296185169275 -9762,12026,21845,21846,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.398935555136254,7.40588164817119,0,7,11,-38.8083251298729,0,3,3,2019,20,8,22,42,1,8,0,7.162423918917512,7.162423918917512,0,0,0,0,0,0,0,0,1.861106089257313,0,35.79,44.37,62.49,55.09,3.333333333333333,1,1,0,0,9,4,4,1,650.5,181568.9109531207,76861.22190360336,61880.9918375839,0,2264.051419516119 -9762,12026,21846,21845,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.503838114053346,8.186698720579301,0,7,-11,25.63120826910036,0,1,2,2019,4,0,47,52,1,0,0,10.15756857318583,10.15756857318583,0,0,0,0,0,0,0,0,0,0,62.49,55.09,35.79,44.37,10,1,1,0,0,9,4,4,1,650.5,181568.9109531207,76861.22190360336,61880.9918375839,0,2264.051419516119 -9763,12027,21847,21848,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,51,-2,-64.32889821697715,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.286674767870331,0,54.74,57.22,55.88,48.45,10,1,1,0,0,0,10,5,1,1236,2191762.845163623,2093504.628046727,205013.5548483718,47250.34124573463,9640.563195045524 -9763,12027,21848,21847,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,9.263085515722405,8.979748474918113,51,2,-48.55678460177297,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.525239477543519,9.317911942259887,55.88,48.45,54.74,57.22,8.333333333333334,1,1,0,0,0,10,5,1,1236,2191762.845163623,2093504.628046727,205013.5548483718,47250.34124573463,9640.563195045524 -9764,12028,21849,-9,21852,21851,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.613436463521,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1207.25,437156.812755967,364260.658630215,275477.3076338855,112780.2190275306,3420.298739640339 -9764,12028,21850,-9,21852,21851,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.126325530673,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1207.25,437156.812755967,364260.658630215,275477.3076338855,112780.2190275306,3420.298739640339 -9764,12028,21851,21852,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.833270002060154,8.521400087825601,0,8,3,-51.48032397831219,0,2,2,2019,8,0,39,40,1,0,0,18.72456262352846,18.72456262352846,0,0,0,0,0,1,1,0,.4303168716628696,0,58.3,47.38,52.23,55.6,8.333333333333334,1,1,0,0,9,11,4,1,1207.25,437156.812755967,364260.658630215,275477.3076338855,112780.2190275306,3420.298739640339 -9764,12028,21852,21851,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.716460369669755,7.843212808235322,0,8,-3,-4.60622704727964,0,1,2,2019,6,0,18,30,1,0,0,19.69577632840285,19.69577632840285,0,0,0,0,0,1,1,0,1.639077795737087,0,52.23,55.6,58.3,47.38,10,1,1,0,0,8,11,4,1,1207.25,437156.812755967,364260.658630215,275477.3076338855,112780.2190275306,3420.298739640339 -9765,12029,21853,-9,21854,21855,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.312654041959,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,841.3333333333334,-92033.80868604286,-25888.91957604743,0,0,2805.807548244989 -9765,12029,21854,21855,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,8.277099486596232,7.90914852744628,0,13,2,-34.4446876793922,0,2,2,2019,11,0,40,40,1,0,0,7.270402872775837,7.270402872775837,0,0,0,0,0,1,1,0,.7221906525772996,0,62.39,56.71,50.54,62.09,8.333333333333334,1,1,0,0,5,9,4,0,841.3333333333334,-92033.80868604286,-25888.91957604743,0,0,2805.807548244989 -9765,12029,21855,21854,-9,-9,1,1,34,0,1,0,3,3,-9,0,5,8.516886143882413,8.32543473423252,0,13,-2,86.17866005932991,0,2,2,2019,6,0,50,60,1,0,0,8.023084661717784,8.023084661717784,0,0,0,0,0,1,1,0,.8262337973935043,0,50.54,62.09,62.39,56.71,10,1,1,0,0,9,9,4,0,841.3333333333334,-92033.80868604286,-25888.91957604743,0,0,2805.807548244989 -9766,12030,21856,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.741849299654618,7.492125478255106,0,0,0,-964.3801502430599,0,-9,-9,2019,10,0,36,42,1,1,0,6.798152403313883,6.798152403313883,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,8,3,4,0,1,9,8,3,0,2366,-9927.908166827416,39361.33135345733,0,0,1375.521068203501 -9767,12031,21857,21858,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,1,-26.72804903638917,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.42352664515473,1.993264860240726,18.14103521018198,0,1,1,0,0,0,44.18,41.6,62,37.52,6.666666666666667,1,1,0,0,0,12,3,1,1409,660742.7453996267,149630.7847892166,294028.1938797904,0,2015.75357943271 -9767,12031,21858,21857,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.407374097628695,7.845563416938966,9,-1,74.73639558860185,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.276158934908691,0,0,1,1,0,0,7.674740954825799,62,37.52,44.18,41.6,6.666666666666667,1,1,0,0,1,12,3,1,1409,660742.7453996267,149630.7847892166,294028.1938797904,0,2015.75357943271 -9768,12032,21859,-9,21861,21860,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1064.863756904689,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,1,497.75,313360.95922054,299298.3002792693,209327.4569167412,128865.9964561161,3214.245565043288 -9768,12032,21860,21861,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.329722622493959,8.581551764417723,0,7,1,26.73183136559266,0,1,2,2019,10,0,37,37,1,0,0,18.4162194534289,18.4162194534289,0,0,0,0,0,1,1,0,4.66470093271862,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,8,11,4,1,497.75,313360.95922054,299298.3002792693,209327.4569167412,128865.9964561161,3214.245565043288 -9768,12032,21861,21860,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.178058695076002,7.903359509779774,0,7,-1,-146.7004902062586,0,2,2,2019,11,0,23,25,1,0,0,18.45937500144015,18.45937500144015,0,0,0,0,0,1,1,0,4.004414526701676,0,54.2,57.49,54.2,57.49,1.666666666666667,1,1,0,0,8,11,4,1,497.75,313360.95922054,299298.3002792693,209327.4569167412,128865.9964561161,3214.245565043288 -9768,12032,21862,-9,21861,21860,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.959019043858,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,497.75,313360.95922054,299298.3002792693,209327.4569167412,128865.9964561161,3214.245565043288 -9769,12033,21863,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.095684699729883,5.888721106059219,0,0,-911.4675933611675,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.374723385166248,5.53753051122119,47.54,44.53,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,633,63604.48648920075,40061.4345293228,0,0,981.0839119569947 -9770,12034,21864,21865,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,7.933576677901413,8.012771272922686,0,31,0,-26.54808326239213,0,2,3,2019,8,2,20,30,1,2,0,14.98344355139703,14.98344355139703,0,0,0,0,0,0,0,0,0,0,49.69,34.43,55.24,55.87,8.333333333333334,1,1,0,0,10,10,5,0,906,1131118.01570077,870903.7945743187,200093.4781068672,0,3342.795248381271 -9770,12034,21865,21864,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.302019157339517,8.450380413011981,0,31,0,19.76474487212021,0,2,2,2019,11,0,40,50,1,0,0,12.04903674346783,12.04903674346783,0,0,0,0,0,0,0,0,0,0,55.24,55.87,49.69,34.43,6.666666666666667,1,1,0,0,10,10,5,0,906,1131118.01570077,870903.7945743187,200093.4781068672,0,3342.795248381271 -9770,12035,21866,-9,21865,21864,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.496505295193,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1.500755877235175,0,48,59,-9,-9,7,1,1,0,0,0,10,1,0,143,25086.63282625184,0,0,0,-244.9560640068756 -9771,12036,21867,21868,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.09977287476995,8.248458701141596,0,8,1,-4.471367312626555,0,1,2,2019,8,0,34,32,1,0,0,11.91354247163807,11.91354247163807,0,0,0,0,0,0,0,0,.3569905365870515,0,53.36,53.7,57.16,56.15,8.333333333333334,1,1,0,0,9,11,5,1,293,1389104.371581718,972411.4805146756,228241.340494054,2808.935697774495,3204.143160143947 -9771,12036,21868,21867,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.135988008513444,8.489830662330938,0,8,-1,-23.14699982258576,0,2,2,2019,8,0,38,38,1,0,0,10.21442809438633,10.21442809438633,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.36,53.7,8.333333333333334,1,1,0,0,9,11,5,1,293,1389104.371581718,972411.4805146756,228241.340494054,2808.935697774495,3204.143160143947 -9772,12037,21869,-9,21871,21872,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-981.0982001504964,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,0,13,2,1,645,363325.8213480675,134197.8231986177,126482.7619478293,44992.20559576574,2537.618592726215 -9772,12037,21870,-9,21871,21872,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.932426613327,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,645,363325.8213480675,134197.8231986177,126482.7619478293,44992.20559576574,2537.618592726215 -9772,12037,21871,21872,-9,-9,1,0,54,0,4,0,2,2,-9,0,5,0,0,0,6,-5,111.8223623849958,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.2,54.53,50,49,8.333333333333334,1,1,0,0,0,13,2,1,645,363325.8213480675,134197.8231986177,126482.7619478293,44992.20559576574,2537.618592726215 -9772,12037,21872,21871,-9,-9,1,1,59,0,4,0,2,2,-9,0,3,8.25462337175302,8.084634211182651,0,6,5,176.2339007247678,0,1,2,2019,11,0,40,40,1,1,0,9.849653164644335,9.849653164644335,0,0,0,0,0,1,1,0,0,0,50,49,58.2,54.53,7,1,1,0,0,1,13,2,1,645,363325.8213480675,134197.8231986177,126482.7619478293,44992.20559576574,2537.618592726215 -9772,12037,21873,-9,21871,21872,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-944.5462697510644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,645,363325.8213480675,134197.8231986177,126482.7619478293,44992.20559576574,2537.618592726215 -9772,12038,21874,-9,21875,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-955.8146995956677,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,253,-49426.09121020111,0,0,0,681.6081173781598 -9772,12038,21875,-9,21871,21872,1,0,29,0,4,0,2,2,-9,0,3,0,0,0,0,0,-971.1162629196517,0,2,2,2019,9,1,0,16,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,1,11,13,2,1,253,-49426.09121020111,0,0,0,681.6081173781598 -9772,12039,21876,-9,21871,21872,1,1,26,0,4,0,2,2,-9,0,4,7.93210674430455,7.642861580712156,0,0,0,-1055.032890123674,0,2,2,2019,8,0,37,37,1,0,1,6.87063269309363,6.87063269309363,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,798,-6840.780785067391,-29059.36154980915,0,0,1246.297111545675 -9772,12040,21877,-9,21871,21872,1,1,24,0,4,0,2,2,-9,0,4,8.654463460774885,8.534475783747892,0,0,0,-982.0218685714709,0,2,2,2019,5,0,45,40,1,0,1,15.3828890334039,15.3828890334039,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,5,1,329,51961.6587600263,-21340.90090632336,0,0,2395.519260717944 -9772,12041,21878,-9,21871,21872,1,0,22,0,4,0,2,2,-9,0,4,7.600924793861235,7.443272098478971,0,0,0,-965.2329032639724,0,2,2,2019,7,0,22,24,1,0,1,10.11848540476108,10.11848540476108,0,0,0,0,0,1,1,0,1.1047876108052,0,51.49,57.57,-9,-9,1.666666666666667,1,1,0,0,5,13,3,1,386,-150381.7227113569,0,0,0,1030.2844529159 -9773,12042,21879,21880,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.514159341916164,6.463629078036148,9,-3,-30.86457968058205,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.934821583963286,6.532264359593907,54.2,57.49,38.75,53.76,8.333333333333334,1,1,0,0,7,7,5,1,1021,173675.6282659062,125669.7654277743,0,0,4060.593806925097 -9773,12042,21880,21879,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.903109469455449,8.714796902075099,9,3,76.03602711881622,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.557258179277663,8.871844392368018,38.75,53.76,54.2,57.49,8.333333333333334,1,1,0,0,5,7,5,1,1021,173675.6282659062,125669.7654277743,0,0,4060.593806925097 -9774,12043,21881,-9,21882,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-886.7383273562056,0,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,1,0,0,4,1,1,485,142529.0692684354,0,0,0,1224.412500523146 -9774,12044,21882,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-841.2782044838796,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,121.7616626927313,0,0,1,1,0,4.150493304914944,0,53,44,-9,-9,8,1,1,0,0,0,4,1,1,289,54251.4747177078,0,0,0,1450.402695206287 -9775,12045,21883,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1145.472285317493,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,1541,12652.41855837678,122498.0283614359,0,0,598.201772376221 -9776,12046,21884,21885,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,50,-4,-16.05926477475988,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.96,53.17,23.07,46.95,8.333333333333334,1,1,0,0,10,9,2,0,811,187239.7982497413,71130.95612442569,0,0,1171.967697166231 -9776,12046,21885,21884,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.883925760458446,6.972100235648435,50,4,-21.50707586132716,0,2,3,2019,18,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.675060133027065,6.925265912627691,23.07,46.95,54.96,53.17,8.333333333333334,1,1,0,0,0,9,2,0,811,187239.7982497413,71130.95612442569,0,0,1171.967697166231 -9777,12047,21886,21887,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.938943280744072,9.889250548613052,0,3,-11,-28.49190175805604,0,-9,-9,2019,12,0,20,30,1,0,0,97.2812292720287,97.2812292720287,0,0,0,0,0,0,0,0,6.142318507171908,0,34.74,55.63,52.23,55.6,6.666666666666667,1,1,0,0,2,8,5,1,575.5,218726.7963901876,6314.684732048452,614264.708003109,375203.2217556171,25339.22894864258 -9777,12047,21887,21886,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.870060854718211,9.575650753131718,0,3,11,2.584641838108008,0,1,1,2019,11,2,30,30,1,2,0,71.20709644995415,71.20709644995415,0,0,0,0,0,0,0,0,6.801186019499559,0,52.23,55.6,34.74,55.63,8.333333333333334,1,1,0,0,10,8,5,1,575.5,218726.7963901876,6314.684732048452,614264.708003109,375203.2217556171,25339.22894864258 -9778,12048,21888,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,7.61584892657782,7.714239436228338,0,0,-945.4275691657242,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.829493835997791,8.233634836515559,61.52,39.23,-9,-9,10,1,1,0,0,0,10,4,1,163,597976.1525106839,253084.9438690772,353061.6064479958,0,2458.61812131105 -9779,12049,21889,21890,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.29484572219843,8.268044895627996,0,15,-5,12.5017582107447,0,3,2,2019,7,1,50,47,1,1,0,10.07522840939592,10.07522840939592,0,0,0,0,27,0,0,0,3.672672667514254,0,51.92,50.54,49.22,54.23,6.666666666666667,1,1,0,0,10,10,5,1,242,414434.1648232564,478330.3021903553,168860.1042705736,102900.3182910427,3244.667233025524 -9779,12049,21890,21889,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.323561950163512,8.498069410764595,0,9,5,-16.707007100063,0,-9,-9,2019,10,0,40,40,1,0,0,12.497913636361,12.497913636361,0,0,0,0,14.5,0,0,0,.4855770432250667,0,49.22,54.23,51.92,50.54,5,1,1,0,0,10,10,5,1,242,414434.1648232564,478330.3021903553,168860.1042705736,102900.3182910427,3244.667233025524 -9780,12050,21891,21892,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.872944231480397,7.974730640483379,0,26,2,-47.27849042416251,0,2,1,2019,6,0,40,40,1,0,0,8.590622773073733,8.590622773073733,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.76,31.18,8.333333333333334,1,1,0,0,12,9,5,1,295.5,306832.7116505282,212208.7235942422,191667.8225783378,0,3493.526609789032 -9780,12050,21892,21891,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,8.435133536954378,8.639846327123728,0,26,-2,-104.2567872558561,0,2,2,2019,11,0,37,37,1,0,0,15.02880776403948,15.02880776403948,0,0,0,0,0,1,1,0,0,0,44.76,31.18,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,295.5,306832.7116505282,212208.7235942422,191667.8225783378,0,3493.526609789032 -9780,12051,21893,-9,21892,21891,1,1,20,0,0,0,2,2,-9,0,3,7.95630276216897,7.854753653987238,0,0,0,-970.7008912466567,0,2,2,2019,12,0,43,43,1,0,1,6.182185108640243,6.182185108640243,0,0,0,0,0,1,1,0,0,0,43.12,58.55,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,1608,-139554.4457550284,0,0,0,1253.089321967504 -9781,12052,21894,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.294701251957896,8.579526845821892,0,0,0,-1108.388525999858,0,3,3,2019,9,1,40,40,1,1,0,13.35475484137693,13.35475484137693,0,0,0,0,0,0,0,0,.484251232813116,0,53.79,50.75,-9,-9,8.333333333333334,1,1,0,0,2,10,5,0,815,3224674.642026035,3028204.327095905,166933.0787982313,0,2170.958780266601 -9782,12053,21895,21896,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,0,19.27689182378105,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,10,2,1,418.5,549599.2644599169,120885.1410398044,315783.6881821791,0,2051.544964360233 -9782,12053,21896,21895,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.929263211238651,6.947549775159433,51,0,-72.35618841383707,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.017316272437693,53,47,51,46,7,1,1,0,0,0,10,2,1,418.5,549599.2644599169,120885.1410398044,315783.6881821791,0,2051.544964360233 -9783,12054,21897,21898,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.8756906613051,6.629146995943126,0,6,3,84.74812323448752,0,3,3,2019,12,0,15,15,1,0,0,6.028556213181748,6.028556213181748,0,0,0,0,0,0,0,0,2.846542867216646,0,31.58,54.25,37.98,51.67,5,2,3,0,0,11,8,2,1,408.5,28845.705073415,0,0,0,864.7533738898529 -9783,12054,21898,21897,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,6.973828588766922,6.89975479711814,0,29,-3,-46.49861441339092,0,-9,-9,2019,12,0,36,0,1,0,0,2.726274838409034,2.726274838409034,0,0,0,0,0,0,0,0,3.893539889914253,0,37.98,51.67,31.58,54.25,5,2,3,0,0,9,8,2,1,408.5,28845.705073415,0,0,0,864.7533738898529 -9783,12055,21899,-9,21897,21898,1,1,28,0,0,0,1,1,-9,0,3,7.841718348442493,7.692666357502843,0,0,0,-898.1698270401647,0,3,3,2019,12,0,45,38,1,0,1,7.352155982246131,7.352155982246131,0,0,0,0,0,0,0,0,3.696209165527896,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,8,4,1,307,-189290.5094499069,0,0,0,1027.722571004902 -9784,12056,21900,21901,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,4.316750109352046,4.539595928727166,11,5,70.9617546923602,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.705393144273589,4.312298084327219,48.4,40.09,64.15000000000001,32.53,8.333333333333334,1,1,0,0,9,2,2,1,952,498156.2760633737,274376.853745958,173687.3554083962,0,-68.27056891202147 -9784,12056,21901,21900,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,5.686730374245879,5.518372615033913,36,-5,106.5455038334212,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.05980699690337,64.15000000000001,32.53,48.4,40.09,10,1,1,0,0,9,2,2,1,952,498156.2760633737,274376.853745958,173687.3554083962,0,-68.27056891202147 -9785,12057,21902,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1075.055950766333,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,39.73,37.29,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1330,24255.94185948519,0,0,0,1074.610277318907 -9786,12058,21903,-9,21905,21904,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.342682340011,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,557.3333333333334,349714.9888077178,82467.60804481459,400402.3619483095,101429.1897306868,4449.823579376033 -9786,12058,21904,21905,-9,-9,1,1,45,0,1,0,3,3,-9,0,3,8.537502874208604,9.026983187949906,0,8,9,53.7396071194276,0,2,2,2019,7,0,45,40,1,0,0,16.34055165209938,16.34055165209938,0,0,0,0,0,1,1,0,0,0,46.08,57.2,58.47,44.69,6.666666666666667,1,1,0,0,8,9,5,1,557.3333333333334,349714.9888077178,82467.60804481459,400402.3619483095,101429.1897306868,4449.823579376033 -9786,12058,21905,21904,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.625821345981201,8.79007326065126,5.223159359943606,8,0,10.89172056677341,0,3,2,2019,10,0,29,33,1,0,0,18.03236805686612,18.03236805686612,0,0,0,0,0,1,1,0,5.69496999276723,0,58.47,44.69,46.08,57.2,8.333333333333334,1,1,0,0,10,9,5,1,557.3333333333334,349714.9888077178,82467.60804481459,400402.3619483095,101429.1897306868,4449.823579376033 -9787,12059,21906,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.958085688993606,9.086521434238403,0,0,0,-902.2691667531521,0,2,2,2019,11,2,45,55,1,2,0,19.97932322769361,19.97932322769361,0,0,0,0,0,0,0,0,3.972310894882226,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,428,262264.475366851,5384.550090642651,0,0,2991.040392106643 -9788,12060,21907,21908,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.059655838544908,5.105185143164349,7,-2,-94.75413306196231,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.614196239395179,5.257815843077537,36.63,27.9,56.5,48.33,3.333333333333333,1,1,0,0,0,2,2,1,346.5,69946.11771849397,141725.0731449217,0,0,1352.594783385132 -9788,12060,21908,21907,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.893428862743302,6.303684840164669,56,2,6.878339700633612,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.425789213909017,6.101119147361376,56.5,48.33,36.63,27.9,5,1,1,0,0,0,2,2,1,346.5,69946.11771849397,141725.0731449217,0,0,1352.594783385132 -9789,12061,21909,21910,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,5.584240978785695,5.424499954656945,2,15,102.1107625416076,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.429481605112716,5.46784701196077,54.1,50.73,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,362,548318.1302380512,413082.135164744,0,0,2226.53705835079 -9789,12061,21910,21909,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.366849263795972,7.28131731598147,2,-15,50.11415166063594,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.390268451863336,7.451347115381221,57.16,56.15,54.1,50.73,10,1,1,0,0,5,9,2,1,362,548318.1302380512,413082.135164744,0,0,2226.53705835079 -9790,12062,21911,-9,21912,-9,1,1,17,0,0,0,3,3,1,0,4,0,0,0,0,0,-911.5988993992339,-9,3,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,6.666666666666667,2,3,1,0,0,8,2,1,319,-3171.275003747407,0,0,0,707.1827108204021 -9790,12062,21912,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,1,6.712432713607751,6.679517761106641,0,0,0,-929.542850631073,0,3,3,2019,32,11,30,0,1,11,0,3.436679003649641,3.436679003649641,0,0,0,0,0,1,1,0,0,0,34,29,-9,-9,1.666666666666667,2,3,0,1,1,8,2,1,319,-3171.275003747407,0,0,0,707.1827108204021 -9790,12063,21913,-9,21912,-9,1,1,18,0,0,0,2,2,1,0,3,7.368944831640347,7.044686033501934,0,0,0,-1117.173976118082,-9,3,-9,2019,12,0,35,0,1,0,1,4.142270562007559,4.142270562007559,0,0,0,0,0,1,1,0,3.181565126045121,0,48.45,57.49,-9,-9,6.666666666666667,2,3,0,0,1,8,3,1,1626,-34425.33909461306,79197.71331937426,0,0,1055.408923603039 -9791,12064,21914,21915,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,6.13132120863607,7.192743087420643,6.578091177532389,15,12,-52.47059348499788,0,3,3,2019,8,1,60,55,1,1,0,1.199682283381757,1.199682283381757,0,0,0,0,0,0,0,0,0,6.475644541645603,59.57,29.65,46.39,60.99,6.666666666666667,1,1,0,0,9,6,3,1,977.3333333333334,277423.6177794161,183665.7441636055,178620.3177903732,43675.68400555282,1117.752247634295 -9791,12064,21915,21914,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,6.701717324746691,6.788505335255507,0,16,-12,97.06208666993899,0,3,3,2019,11,1,25,25,1,1,0,3.681082139303919,3.681082139303919,0,0,0,0,0,0,0,0,0,0,46.39,60.99,59.57,29.65,10,1,1,0,0,7,6,3,1,977.3333333333334,277423.6177794161,183665.7441636055,178620.3177903732,43675.68400555282,1117.752247634295 -9791,12064,21916,-9,21915,21914,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-834.3663793841046,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,977.3333333333334,277423.6177794161,183665.7441636055,178620.3177903732,43675.68400555282,1117.752247634295 -9792,12065,21917,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.06438548134661,7.710548523282239,0,0,-961.0883568589929,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.277672810558995,7.484587164459478,50,47,-9,-9,7,1,1,0,0,0,1,3,1,393,1096916.352751869,376319.0160897532,158873.1638183742,0,2629.634198732469 -9793,12066,21918,-9,21920,21921,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.494369407828,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1307.25,594720.7001781636,528743.403873219,131281.9467128767,106991.8798478675,2579.990928138564 -9793,12066,21919,-9,21920,21921,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1005.831429945457,-9,1,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,46,-9,-9,5,1,1,-9,0,0,2,4,1,1307.25,594720.7001781636,528743.403873219,131281.9467128767,106991.8798478675,2579.990928138564 -9793,12066,21920,21921,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.097282166871551,8.290474271882866,0,16,-15,-44.58754462480789,0,2,2,2019,14,2,44,46,1,2,0,10.71868585716418,10.71868585716418,0,0,0,0,7,1,1,0,0,0,45.91,59.89,51.24,58.84,8.333333333333334,1,1,0,0,10,2,4,1,1307.25,594720.7001781636,528743.403873219,131281.9467128767,106991.8798478675,2579.990928138564 -9793,12066,21921,21920,-9,-9,1,1,50,0,2,0,3,3,-9,0,4,7.804621762195908,8.131312796845963,0,16,15,-13.28892636610594,-9,3,3,2019,9,0,48,0,1,0,0,7.906845647052323,7.906845647052323,0,0,0,0,0,1,1,0,0,0,51.24,58.84,45.91,59.89,8.333333333333334,1,1,0,0,10,2,4,1,1307.25,594720.7001781636,528743.403873219,131281.9467128767,106991.8798478675,2579.990928138564 -9794,12067,21922,-9,-9,21923,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.779354183479,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,378.5,823.0059809240738,-72848.5228001107,51299.25702320228,43234.4271843974,1663.267165718278 -9794,12067,21923,-9,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,7.923632412219048,7.803443421072348,0,0,0,-1000.945802372012,-9,-9,-9,2019,6,0,24,0,1,0,0,12.88902897159173,12.88902897159173,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,378.5,823.0059809240738,-72848.5228001107,51299.25702320228,43234.4271843974,1663.267165718278 -9795,12068,21924,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1150.467834779829,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.137683830325614,0,26.66995469174142,0,1,1,0,0,0,36.53,14.85,-9,-9,0,1,1,0,0,0,13,2,0,1305,15838.45669731229,-45879.54915785637,0,0,1632.426979329748 -9796,12069,21925,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,0,0,0,0,0,-887.3906463123968,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,27.7,45.94,-9,-9,3.333333333333333,1,1,1,0,0,11,1,0,356.3333333333333,49254.40438602721,0,0,0,1170.87528051497 -9796,12069,21926,-9,21925,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.813510606467,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,356.3333333333333,49254.40438602721,0,0,0,1170.87528051497 -9796,12069,21927,-9,21925,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.8340042817143,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,5,-9,0,0,11,1,0,356.3333333333333,49254.40438602721,0,0,0,1170.87528051497 -9797,12070,21928,-9,21929,21930,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.52472485306,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,371.3333333333333,1175381.222978567,0,350651.0190365012,154179.3273280031,2181.228144472871 -9797,12070,21929,21930,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.48558139861156,7.592279080104138,0,14,-4,53.35127932677715,0,2,3,2019,10,0,27,25,1,0,0,7.657021870045897,7.657021870045897,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.05,54.52,8.333333333333334,1,1,0,0,10,7,4,0,371.3333333333333,1175381.222978567,0,350651.0190365012,154179.3273280031,2181.228144472871 -9797,12070,21930,21929,-9,-9,1,1,35,0,1,0,2,2,-9,0,5,8.369188815693214,8.036962912766706,0,14,4,-42.24520645070071,0,-9,2,2019,7,0,7,37,1,0,0,79.25024446560936,79.25024446560936,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,10,7,4,0,371.3333333333333,1175381.222978567,0,350651.0190365012,154179.3273280031,2181.228144472871 -9798,12071,21931,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.007682847198,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,827,-231506.6517679302,0,0,0,1055.244035993254 -9799,12072,21932,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1070.593548985915,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,716,77399.08638197524,0,0,0,1131.605865540029 -9800,12073,21933,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,7.801603911660806,7.834997323627092,0,0,0,-1196.468307333147,-9,-9,-9,2019,15,4,38,0,1,4,0,6.306011837223652,6.306011837223652,0,0,0,0,0,0,0,0,0,0,39.56,57.63,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,1015,60710.54941287039,-28126.69541984831,0,0,1191.399163848745 -9801,12074,21934,21935,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.713335602230976,8.129754507841369,40,-1,39.85760936199304,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.604492656071649,8.307995653861523,62.39,56.71,59.29,49.68,10,1,1,0,0,13,6,4,1,991,2760292.334819037,1582892.239462219,684392.6693742779,0,2348.657012046219 -9801,12074,21935,21934,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.961879965345476,7.149585343699335,40,1,75.20756345772566,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.942978550995363,59.29,49.68,62.39,56.71,8.333333333333334,1,1,0,0,0,6,4,1,991,2760292.334819037,1582892.239462219,684392.6693742779,0,2348.657012046219 -9802,12075,21936,-9,21938,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.9474722298396,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,1111.666666666667,4524.606793174852,91268.35536821686,53249.43329705042,56858.78158290739,2200.697027526434 -9802,12075,21937,-9,21938,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.473086209522,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1111.666666666667,4524.606793174852,91268.35536821686,53249.43329705042,56858.78158290739,2200.697027526434 -9802,12075,21938,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.458949900352428,7.914547459430039,6.544924436912966,0,0,-918.8576875432286,0,2,3,2019,11,1,20,1,1,1,0,10.8345833673238,10.8345833673238,0,0,0,0,0,1,1,0,5.945386984631029,0,35.57,57.14,-9,-9,5,1,1,0,0,5,13,3,0,1111.666666666667,4524.606793174852,91268.35536821686,53249.43329705042,56858.78158290739,2200.697027526434 -9803,12076,21939,21940,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,40,-1,24.76451311126636,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,27.15,49.84,54.38,49.27,5,1,1,0,0,9,12,4,0,320.5,507539.2350415449,174265.3238338439,158612.2095122504,0,2462.028583173011 -9803,12076,21940,21939,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.780660953385148,9.088611660673511,0,8,1,-33.31350316857237,0,-9,-9,2019,10,2,60,50,1,2,0,12.44857844660876,12.44857844660876,0,0,0,0,0,0,0,0,0,0,54.38,49.27,27.15,49.84,8.333333333333334,1,1,0,0,9,12,4,0,320.5,507539.2350415449,174265.3238338439,158612.2095122504,0,2462.028583173011 -9804,12077,21941,-9,-9,-9,1,1,95,0,0,0,2,2,-9,0,4,0,7.506175538463395,7.500211628709107,0,0,-1089.300097740977,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.453076632513843,7.056448161195828,51.58,46.7,-9,-9,5,1,1,0,0,0,11,3,1,85,267529.9194088565,80816.30328769813,125545.9042688445,0,1249.683165695761 -9805,12078,21942,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,2,0,8.442159710062256,8.223421106957822,0,0,-997.411904674301,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,1.522141674536048,4.221067883268186,23.1941082660944,0,1,1,0,7.437364465630643,8.227406100478925,44.4,21.95,-9,-9,3.333333333333333,1,1,0,0,0,11,4,1,450,897494.3762421635,310240.0320668343,304593.0271424464,0,3650.864273459492 -9806,12079,21943,21944,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.450609372713279,7.262717463898896,9,-6,13.15011417024617,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.792771933950838,55.5,48.58,61.7,39.16,0,1,1,0,0,1,13,3,1,247.5,588778.9521554826,305993.1517798622,0,0,1701.631115418809 -9806,12079,21944,21943,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.625775315316221,6.697231470159267,9,6,-12.22514872076405,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.445847933165854,61.7,39.16,55.5,48.58,8.333333333333334,1,1,0,0,0,13,3,1,247.5,588778.9521554826,305993.1517798622,0,0,1701.631115418809 -9807,12080,21945,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.640213559610318,7.554231060351611,2.745298025919222,0,0,-1058.804367610064,0,-9,2,2019,12,0,36,36,1,0,0,7.232315349465745,7.232315349465745,0,0,0,0,0,1,1,0,0,2.610268287753111,52.25,45.21,-9,-9,5,1,1,0,0,10,2,3,1,1234,8157.3391628268,4850.543991046867,156441.7562873316,0,1133.008360709059 -9808,12081,21946,21949,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,6.837827713387726,6.776956077870142,0,3,5,66.71143471884706,0,-9,-9,2019,8,2,17,16,1,2,0,7.276117594902266,7.276117594902266,0,0,0,0,0,1,1,0,0,0,56.75,42.74,46.73,51.47,8.333333333333334,1,1,0,0,7,9,2,0,678,39041.75658129135,-4586.10489941794,0,0,1697.497441259326 -9808,12081,21947,-9,21949,21946,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.769663087988,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,678,39041.75658129135,-4586.10489941794,0,0,1697.497441259326 -9808,12081,21948,-9,21949,21946,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.975573713842,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,678,39041.75658129135,-4586.10489941794,0,0,1697.497441259326 -9808,12081,21949,21946,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,6.883002823877304,7.036079587807302,0,3,-5,-69.54823565456196,0,-9,-9,2019,12,0,19,16,1,0,0,5.319071922490228,5.319071922490228,0,0,0,0,0,1,1,0,0,0,46.73,51.47,56.75,42.74,6.666666666666667,1,1,0,0,9,9,2,0,678,39041.75658129135,-4586.10489941794,0,0,1697.497441259326 -9809,12082,21950,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1046.040414958374,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,41.63,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,439,102690.0282595622,0,0,0,759.6782757650656 -9810,12083,21951,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.224502031220824,8.221181869906742,0,0,-1050.379561251246,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.394663218314434,7.895585078696328,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,317,161040.5631676875,-33578.86864427377,0,0,1573.703120178124 -9811,12084,21952,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.714781261890044,8.638220870925212,0,0,0,-1023.819891438904,0,2,1,2019,7,1,15,35,1,1,0,40.44229715245274,40.44229715245274,0,0,0,0,0,0,0,0,4.605836390631551,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,825,467504.3937782589,313137.7219341611,86330.88800881026,60266.71474445707,2952.066946738289 -9812,12085,21953,21954,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,7.818282008897267,7.673592703165412,0,19,5,-26.4093299919769,0,3,3,2019,9,0,30,25,1,1,0,11.04361869683576,11.04361869683576,0,0,0,0,0,1,1,0,0,0,53,55,47,50,8,2,3,0,0,1,8,3,1,1290.2,49432.38878777726,-9045.036251592026,179023.1557238857,115162.6978346046,3213.993769574553 -9812,12085,21954,21953,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,7.813336205074255,7.848211514294928,0,19,-5,-29.30042360323898,0,3,3,2019,15,5,28,16,1,5,0,10.10112575111576,10.10112575111576,0,0,0,0,0,1,1,0,0,0,47,50,53,55,5,2,3,0,0,2,8,3,1,1290.2,49432.38878777726,-9045.036251592026,179023.1557238857,115162.6978346046,3213.993769574553 -9812,12085,21955,-9,21954,21953,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.6707257965279,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1290.2,49432.38878777726,-9045.036251592026,179023.1557238857,115162.6978346046,3213.993769574553 -9812,12085,21956,-9,21954,21953,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-918.8775236954777,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,1,1290.2,49432.38878777726,-9045.036251592026,179023.1557238857,115162.6978346046,3213.993769574553 -9812,12085,21957,-9,21954,21953,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-863.0979255217129,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1290.2,49432.38878777726,-9045.036251592026,179023.1557238857,115162.6978346046,3213.993769574553 -9813,12086,21958,-9,21959,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1076.094930931983,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,6,-9,0,0,2,1,0,542.6666666666666,16023.33863807394,-20484.24609582494,0,0,2772.522339836793 -9813,12086,21959,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.2722427609174,0,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,24.62,57.91,-9,-9,3.333333333333333,4,2,0,0,11,2,1,0,542.6666666666666,16023.33863807394,-20484.24609582494,0,0,2772.522339836793 -9813,12086,21960,-9,21959,-9,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1063.770397726113,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,6,-9,0,0,2,1,0,542.6666666666666,16023.33863807394,-20484.24609582494,0,0,2772.522339836793 -9814,12087,21961,-9,21962,21963,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.785026282173,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,359.3333333333333,814005.7517216107,90488.83266146951,429158.706544182,20875.07816387545,3907.035910857737 -9814,12087,21962,21963,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.819907505813972,7.927188227948625,0,23,-2,63.61750067531818,0,2,2,2019,7,0,23,27,1,0,0,11.41084634037049,11.41084634037049,0,0,0,0,0,1,1,0,.8956246784309035,0,57.16,56.15,54.46,47.86,8.333333333333334,1,1,0,0,13,10,5,1,359.3333333333333,814005.7517216107,90488.83266146951,429158.706544182,20875.07816387545,3907.035910857737 -9814,12087,21963,21962,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.129900745146157,9.038184816844002,0,23,2,43.39394265723606,0,2,2,2019,9,1,30,35,1,1,0,40.25303554608616,40.25303554608616,0,0,0,0,0,1,1,0,.8976916822632008,0,54.46,47.86,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,359.3333333333333,814005.7517216107,90488.83266146951,429158.706544182,20875.07816387545,3907.035910857737 -9815,12088,21964,21965,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,27,-1,0,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.61,28.53,49.94,58.01,1.666666666666667,1,1,0,0,3,8,1,0,1520.5,637974.9941196493,0,275404.0419537665,0,1882.536796948394 -9815,12088,21965,21964,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,3,1,0,0,-9,-9,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,49.94,58.01,29.61,28.53,6.666666666666667,3,4,1,1,0,8,1,0,1520.5,637974.9941196493,0,275404.0419537665,0,1882.536796948394 -9815,12089,21966,-9,21964,21965,1,1,23,0,0,0,2,2,-9,0,3,8.172951872209079,7.771785244384182,0,0,0,-912.1990737421752,0,2,2,2019,34,12,38,20,1,12,1,10.70900463711772,10.70900463711772,0,0,0,0,0,1,1,0,0,0,25.93,47.55,-9,-9,1.666666666666667,4,2,0,0,2,8,4,0,247,115562.9412378414,67731.17062737502,0,0,1565.023292072859 -9815,12090,21967,-9,21964,21965,1,0,20,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1082.293381197203,0,2,2,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,37.12,40.3,-9,-9,8.333333333333334,4,2,1,0,0,8,1,0,293,159971.2867348136,0,0,0,497.8194627130024 -9816,12091,21968,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1017.941640021038,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.419364636976928,0,57,43,-9,-9,8,1,1,0,0,0,10,1,1,181,-67230.79746279333,0,0,0,1677.256914299611 -9817,12092,21969,21970,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.254573443646787,7.899042722105649,6.829481947225656,10,7,55.64202004098584,0,2,2,2019,6,0,7,15,1,0,0,24.42393168596142,24.42393168596142,0,0,0,0,0,0,0,0,5.84792614874435,7.176210499580451,59.29,49.68,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,375.5,747482.2561116426,363243.7655745654,268562.1743126791,0,2248.149549282539 -9817,12092,21970,21969,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.748526834979529,7.647807373438828,0,10,-7,13.7401556441872,0,3,3,2019,8,0,48,45,1,0,0,4.693111966875545,4.693111966875545,0,0,0,0,2,0,0,0,5.535741527643444,0,57.33,53.46,59.29,49.68,8.333333333333334,1,1,0,0,11,10,4,1,375.5,747482.2561116426,363243.7655745654,268562.1743126791,0,2248.149549282539 -9817,12093,21971,-9,21969,21970,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1113.018197832205,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,192,0,0,0,0,0 -9817,12094,21972,-9,21969,21970,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.471196801648,1,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,754,12914.86923018098,0,0,0,0 -9818,12095,21973,21974,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.233567360350216,8.436249853177998,30,6,-15.47282592385039,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.923598422545893,8.283200210058746,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,9,5,1,1001,1276898.461424582,1141924.049437324,596974.1879060443,296118.0234552647,4965.681335838722 -9818,12095,21974,21973,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.49691238542224,8.740186868709086,0,30,-6,-35.71478807507641,0,2,3,2019,6,0,60,70,1,0,0,12.31530790769832,12.31530790769832,0,0,0,0,0,1,1,0,5.108429227067749,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,9,5,1,1001,1276898.461424582,1141924.049437324,596974.1879060443,296118.0234552647,4965.681335838722 -9818,12096,21975,-9,21974,21973,1,1,23,0,0,0,1,1,-9,0,5,8.341203860011449,8.154065724379297,0,0,0,-1065.97547884699,0,1,1,2019,12,0,43,39,1,0,1,10.60010651283505,10.60010651283505,0,0,0,0,0,1,1,0,3.033168103582837,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,148,57052.29608646383,35237.5257758546,74952.4022357662,102815.6646981095,1547.911568368061 -9819,12097,21976,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,6.954285986187474,7.120125381302181,0,0,0,-1026.946229463163,0,-9,-9,2019,10,1,21,14,1,1,0,5.680982646273255,5.680982646273255,0,0,0,0,0,1,1,0,0,0,36.58,66.89,-9,-9,1.666666666666667,3,4,0,0,4,8,2,0,2187,28767.46758029696,0,0,0,3.033083710861888 -9820,12098,21977,21978,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.606084020111368,8.850843422730236,5.613850990610576,7,4,56.46495290753669,0,-9,-9,2019,11,0,50,55,1,0,0,12.49229823237127,12.49229823237127,0,0,0,0,0,1,1,0,6.586115733852435,5.725677246325597,52,54.51,43.42,62.33,8.333333333333334,1,1,0,0,8,5,5,1,789,2401131.002257141,1922832.299072554,263544.5172468558,36472.20839460422,5309.14387683007 -9820,12098,21978,21977,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.552340873215856,8.507131540083206,0,7,-4,-92.16851404341318,0,-9,-9,2019,21,8,82,49,1,8,0,5.633604115664605,5.633604115664605,0,0,0,1.081849493084786,0,1,1,0,0,0,43.42,62.33,52,54.51,3.333333333333333,1,1,0,1,8,5,5,1,789,2401131.002257141,1922832.299072554,263544.5172468558,36472.20839460422,5309.14387683007 -9821,12099,21979,21980,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,0,0,0,7,-2,67.69737946679668,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,49.87,50.46,8.333333333333334,1,1,0,0,8,5,2,1,402.5,-20905.16648270986,0,0,0,218.8376517178478 -9821,12099,21980,21979,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,6.768466741910149,6.643730824921838,0,7,2,-49.88157881729968,0,3,2,2019,7,0,16,16,1,0,0,5.397387028302749,5.397387028302749,0,0,0,0,0,1,1,0,0,0,49.87,50.46,60.29,52.11,8.333333333333334,1,1,0,0,8,5,2,1,402.5,-20905.16648270986,0,0,0,218.8376517178478 -9821,12100,21981,-9,21980,21979,1,1,24,0,0,0,2,2,-9,0,4,8.112816834044148,7.803910686932769,0,0,0,-1071.853248318809,0,2,2,2019,9,0,36,38,1,0,1,8.626515617811423,8.626515617811423,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,8,5,3,1,577,-85393.63687618094,89823.24255517808,0,0,750.147202985584 -9822,12101,21982,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,3.534862230823161,3.285856786449537,0,0,-1177.538169718666,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.172110275637017,3.154800537422032,28.18,41.09,-9,-9,0,1,1,0,0,0,6,2,1,174,99699.19856866061,49003.04195905734,159766.9565004669,0,-86.94523474368953 -9823,12102,21983,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1064.549003331932,-9,-9,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,31.69,59.68,-9,-9,8.333333333333334,1,1,1,0,2,4,1,1,160,0,0,0,0,0 -9824,12103,21984,21985,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,7,5,-114.662979250892,0,2,2,2019,11,0,0,14,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,54.57,59.55,43.22,8.333333333333334,1,1,0,0,7,9,5,1,2034,1974883.39511484,1068804.861086287,384849.1290613811,17276.73585566231,3907.960969459767 -9824,12103,21985,21984,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,9.03556750420827,9.354027704201876,0,7,-5,-69.50189824280508,0,3,3,2019,7,0,53,81,1,0,0,20.78577465436154,20.78577465436154,1,0,3.962759789939306,0,0,1,1,0,0,0,59.55,43.22,43.14,54.57,8.333333333333334,1,1,0,0,7,9,5,1,2034,1974883.39511484,1068804.861086287,384849.1290613811,17276.73585566231,3907.960969459767 -9825,12104,21986,21989,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.701313912314921,7.859421153230005,0,5,1,-67.22298257049974,0,2,1,2019,9,0,16,10,1,1,0,14.51636826653084,14.51636826653084,0,0,0,0,0,1,1,0,4.303589383928191,0,52,55,28.82,38.3,7,1,1,0,0,1,4,3,1,1361.5,428271.2810956204,202834.7984635249,139534.938007581,0,2850.626164106181 -9825,12104,21987,-9,21989,21986,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-951.1503041482695,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,5.029333299061126,0,40.38,58.36,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,1361.5,428271.2810956204,202834.7984635249,139534.938007581,0,2850.626164106181 -9825,12104,21988,-9,21989,21986,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.5324324607177,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1361.5,428271.2810956204,202834.7984635249,139534.938007581,0,2850.626164106181 -9825,12104,21989,21986,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.228897576081716,8.361745620748366,0,5,-1,20.55544737129344,0,2,2,2019,22,10,45,37,1,10,0,9.955564583248876,9.955564583248876,0,0,0,0,0,1,1,0,0,0,28.82,38.3,52,55,5,1,1,0,1,3,4,3,1,1361.5,428271.2810956204,202834.7984635249,139534.938007581,0,2850.626164106181 -9825,12105,21990,-9,21989,21986,1,1,20,0,1,0,2,2,-9,0,4,7.471362949455321,7.438962796989431,0,0,0,-901.2328593526396,0,2,2,2019,10,0,40,35,1,2,1,4.496881395210077,4.496881395210077,0,0,0,0,0,1,1,0,.458454109399628,0,49,58,-9,-9,7,1,1,0,0,1,4,3,1,1073,5170.832537502331,0,0,0,773.2596279857868 -9826,12106,21991,21992,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.409923646657955,7.071666738668283,44,3,11.57288643953913,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.131139032235137,7.317247039408554,57.42,49.34,56.18,53.85,8.333333333333334,1,1,0,0,5,9,3,1,1201.5,809680.7334402126,406443.5701999099,373187.9730515563,0,2480.382645964051 -9826,12106,21992,21991,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.056349202868253,7.313036878503453,44,-3,-156.1559406642241,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.487905951937775,6.80878148644576,56.18,53.85,57.42,49.34,10,1,1,0,0,4,9,3,1,1201.5,809680.7334402126,406443.5701999099,373187.9730515563,0,2480.382645964051 -9827,12107,21993,21994,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,8,0,-97.66611300239268,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,8.333333333333334,1,1,1,0,8,13,3,1,391,650785.674479519,194902.8557908665,371541.683859397,0,1705.828355533867 -9827,12107,21994,21993,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.914482908959712,7.697341034741385,0,8,0,9.150145852050208,0,2,2,2019,11,0,40,40,1,2,0,8.118537763719759,8.118537763719759,0,0,0,0,0,1,1,0,1.468504124152819,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,391,650785.674479519,194902.8557908665,371541.683859397,0,1705.828355533867 -9828,12108,21995,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.974574513446067,5.431257838409068,0,0,-1154.737260099175,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.2278365911158,6.859878986590479,21.46416658844475,0,1,1,0,0,5.619298940347011,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,343,413152.0589929047,53074.36782529478,227459.574553109,0,1797.814117229453 -9829,12109,21996,21997,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.596830854910813,5.400505541063424,7,-1,38.56919555535844,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,13.29116200473148,0,0,1,1,0,.2685086116569046,5.551880417527616,55.88,21.37,51.33,24.03,5,1,1,0,0,5,13,2,1,260.5,521010.0293354618,196944.1187619958,287094.1097024117,0,1438.114251315572 -9829,12109,21997,21996,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.164726250089305,6.120608616911444,7,1,20.9188925337855,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.327954806516291,6.187475950228422,51.33,24.03,55.88,21.37,6.666666666666667,1,1,0,0,3,13,2,1,260.5,521010.0293354618,196944.1187619958,287094.1097024117,0,1438.114251315572 -9830,12110,21998,21999,-9,-9,1,1,25,0,0,0,3,3,-9,0,3,8.274514281468123,8.41797163488336,0,1,0,78.47895519417474,0,2,3,2019,9,0,40,40,1,0,0,14.57743571420396,14.57743571420396,0,0,0,0,0,0,0,0,0,0,45.27,48.1,15.78,58.99,5,1,1,0,0,2,10,4,0,2054.5,75082.32697345511,-21614.05864531546,0,0,1410.012327643718 -9830,12110,21999,21998,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,1,0,-38.34165093235684,-9,-9,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,15.78,58.99,45.27,48.1,1.666666666666667,1,1,0,0,0,10,4,0,2054.5,75082.32697345511,-21614.05864531546,0,0,1410.012327643718 -9831,12111,22000,22001,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.943997279140653,6.99762231886735,39,18,-37.27199241910991,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.098191808822647,61.04,39.41,54.1,59.11,5,1,1,0,0,8,6,2,1,422.5,-21409.25600014305,0,0,0,5437.283641306233 -9831,12111,22001,22000,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,4.503095205354359,4.675182394465935,0,39,-18,62.12532227007551,0,3,-9,2019,10,0,40,-9,1,0,0,.2514994295677794,.2514994295677794,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.04,39.41,10,1,1,0,0,10,6,2,1,422.5,-21409.25600014305,0,0,0,5437.283641306233 -9831,12112,22002,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.155912085958564,8.703871388256202,0,0,0,-947.9590865509617,0,-9,-9,2019,12,0,48,48,1,0,0,8.452077844464101,8.452077844464101,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,6,4,1,486.3333333333333,111142.5981621094,58829.35691420304,0,0,1589.898935397111 -9831,12112,22003,-9,22002,-9,1,0,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1015.791087667808,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,486.3333333333333,111142.5981621094,58829.35691420304,0,0,1589.898935397111 -9831,12112,22004,-9,22002,-9,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1073.82390109008,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,486.3333333333333,111142.5981621094,58829.35691420304,0,0,1589.898935397111 -9832,12113,22005,-9,22007,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.4083535588932,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,2,1,808.3333333333334,71830.59049307766,0,0,0,1483.001150377117 -9832,12113,22006,-9,22007,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.316890291178,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,2,1,808.3333333333334,71830.59049307766,0,0,0,1483.001150377117 -9832,12113,22007,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,6.968741033961879,7.216095701963609,3.00205375483661,0,0,-987.8019401390925,0,2,1,2019,28,12,60,40,1,12,0,2.005108605044342,2.005108605044342,0,0,0,0,0,1,1,0,2.695097186360665,0,11.63,57.46,-9,-9,0,4,2,0,1,9,2,2,1,808.3333333333334,71830.59049307766,0,0,0,1483.001150377117 -9833,12114,22008,22009,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.601205903168244,5.537631002673884,51,-7,-64.49425738307585,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,9.437188367450755,0,42,1,1,0,5.013694849446924,5.666029749746563,48.19,33.76,56.94,43.99,6.666666666666667,1,1,0,0,10,7,3,1,602.5,1065533.726086074,473344.3336945423,454786.3733791198,0,2472.295109305881 -9833,12114,22009,22008,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.826607001509601,7.802175711363271,51,7,18.96808085839695,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.653337161789971,7.382423074346861,56.94,43.99,48.19,33.76,8.333333333333334,1,1,0,0,0,7,3,1,602.5,1065533.726086074,473344.3336945423,454786.3733791198,0,2472.295109305881 -9834,12115,22010,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,2,0,9.173743746886309,9.473005003001775,0,0,-1079.407970130937,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,3.076584246346528,0,0,1,1,0,0,9.350017197045497,39.32,17.19,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1152,1023722.009378928,225463.2177733209,784705.5113828172,0,5502.204719375729 -9835,12116,22011,-9,-9,-9,1,0,47,1,2,0,2,2,-9,1,3,7.267068917725727,6.990959455681588,0,0,0,-982.0161059872421,0,3,3,2019,8,0,15,0,1,0,0,8.484581440482321,8.484581440482321,0,0,0,0,111,1,1,0,0,0,45.73,57.57,-9,-9,5,1,1,0,0,5,2,2,0,175,9199.558582565573,72198.46902232582,0,0,518.8513706769273 -9835,12116,22012,-9,22011,-9,1,1,14,1,2,1,3,0,-9,0,3,0,0,0,0,0,-956.9612770480356,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,175,9199.558582565573,72198.46902232582,0,0,518.8513706769273 -9835,12117,22013,-9,22011,-9,1,0,18,1,2,0,2,2,-9,1,1,0,0,0,0,0,-980.8664648615346,0,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.95,29.64,-9,-9,5,1,1,0,0,0,2,1,0,921,53099.47304026235,0,0,0,1343.478227002898 -9835,12117,22014,-9,22013,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-941.2234259197405,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,921,53099.47304026235,0,0,0,1343.478227002898 -9836,12118,22015,22016,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.889223254770127,7.186967921068124,6,2,15.41951041442145,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.161159386374734,53,47,60.59,36.84,7,1,1,0,0,0,4,2,1,261,551395.6616359849,219721.0780873202,248933.9744929487,0,1557.232319230072 -9836,12118,22016,22015,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,50,-2,-8.070676529439801,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.59,36.84,53,47,8.333333333333334,1,1,0,0,0,4,2,1,261,551395.6616359849,219721.0780873202,248933.9744929487,0,1557.232319230072 -9837,12119,22017,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.244391519320461,8.226631133556426,5.803855609856337,0,0,-1041.526824078806,0,2,3,2019,14,4,8,12,1,4,0,37.53160059152244,37.53160059152244,0,0,0,0,0,1,1,0,8.123454548605862,0,43.7,47.64,-9,-9,1.666666666666667,4,2,0,0,7,9,3,1,597,777092.0016436441,261437.0101707278,430036.1959835782,38588.82793292579,2501.409323970576 -9838,12120,22018,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.332607478837852,7.484952603201491,0,0,-1031.241402465635,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.11596881370016,7.504037349692748,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,0,6,3,1,358,513524.143752637,168852.5851968912,317148.8325153992,0,1353.183875238163 -9839,12121,22019,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,5,8.261561464302616,8.390964420101033,0,0,0,-1066.175646329662,-9,-9,-9,2019,6,0,41,0,1,0,0,10.07143861610273,10.07143861610273,0,0,0,0,0,0,0,0,1.399942120400163,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,1,4,4,1,326,30484.08565165141,-87105.48966789561,0,0,2610.300065649173 -9840,12122,22020,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.807358675911,-9,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,8.293855968147078,0,42,1,1,0,0,0,31.19,23.65,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,588,79759.60881175131,0,0,0,1460.737632806393 -9840,12123,22021,-9,-9,22020,1,1,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-869.4581598992114,-9,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,24.26,37.97,-9,-9,3.333333333333333,1,1,0,1,0,4,1,0,127,0,0,0,0,522.1648806243828 -9841,12124,22022,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,3.484384227769277,3.649883974573311,0,0,0,-1114.113495139326,0,3,3,2019,8,2,20,0,1,2,0,.2802279605976104,.2802279605976104,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,10,2,3,0,0,7,8,2,1,549,140057.5348116507,83408.87927476253,0,0,576.0018037751322 -9841,12125,22023,-9,22022,-9,1,0,24,0,0,0,1,1,-9,0,4,8.360254630570374,8.553811614715421,0,0,0,-1100.735642898188,-9,1,-9,2019,11,0,38,0,1,2,1,12.81527406649342,12.81527406649342,0,0,0,0,0,0,0,0,4.739613927102972,0,47,57,-9,-9,7,2,3,0,0,1,8,4,1,705,-184707.3039078496,0,0,0,2048.844835276414 -9842,12126,22024,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.829154777340799,5.906346924828203,0,0,-1120.618843578863,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.692244178843151,47.91,28.34,-9,-9,6.666666666666667,1,1,0,1,0,6,2,1,1940,218648.4795447503,180.0530201607762,217085.4378249036,0,816.8972307275117 -9843,12127,22025,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.727410382708818,6.495585059471183,0,0,-891.8048331322136,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,47.34121398888944,0,0,1,1,0,0,6.459317818240278,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,458,99164.22405204386,88505.18540225108,67843.9265567758,0,1308.269106779193 -9844,12128,22026,22027,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,8.277896255122695,7.945058031932583,0,1,2,54.32962451406583,-9,-9,-9,2019,12,1,39,0,1,1,0,10.36130518542026,10.36130518542026,0,0,0,0,0,1,1,0,0,0,34.73,59.76,54.2,57.49,8.333333333333334,1,1,0,0,10,2,3,0,785,-39721.10569921909,9086.871870432071,86243.88064096605,67388.86970410314,836.9793158913113 -9844,12128,22027,22026,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,0,0,0,1,-2,-24.93531356627088,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,34.73,59.76,8.333333333333334,1,1,0,0,5,2,3,0,785,-39721.10569921909,9086.871870432071,86243.88064096605,67388.86970410314,836.9793158913113 -9844,12128,22028,-9,22026,22027,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.469237887974,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,785,-39721.10569921909,9086.871870432071,86243.88064096605,67388.86970410314,836.9793158913113 -9845,12129,22029,-9,22032,22030,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.30401508738,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,594.75,80118.9020168766,30189.23958403344,204478.5952979228,127512.7302531666,3749.43549237592 -9845,12129,22030,22032,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.735860364312746,8.855127704063612,0,7,0,34.82601710774198,0,2,2,2019,11,0,48,48,1,0,0,15.91816794982897,15.91816794982897,0,0,0,0,0,1,1,0,0,0,43.12,58.55,42.11,49.57,8.333333333333334,1,1,0,0,8,7,4,1,594.75,80118.9020168766,30189.23958403344,204478.5952979228,127512.7302531666,3749.43549237592 -9845,12129,22031,-9,22032,22030,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.287622288072,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,594.75,80118.9020168766,30189.23958403344,204478.5952979228,127512.7302531666,3749.43549237592 -9845,12129,22032,22030,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.092633494569126,7.699091548029114,0,7,0,93.83804212895134,0,3,2,2019,12,1,23,24,1,1,0,13.06602174823041,13.06602174823041,0,0,0,0,0,1,1,0,0,0,42.11,49.57,43.12,58.55,8.333333333333334,1,1,0,0,9,7,4,1,594.75,80118.9020168766,30189.23958403344,204478.5952979228,127512.7302531666,3749.43549237592 -9846,12130,22033,-9,22035,22034,1,1,25,0,2,0,2,2,-9,0,3,5.808634325375147,6.198573962943352,0,0,0,-948.062157957972,0,3,3,2019,5,0,35,35,1,0,1,1.119514797980639,1.119514797980639,0,0,0,0,42,1,1,0,0,0,57.24,41.16,-9,-9,8.333333333333334,2,3,0,0,6,6,2,1,710,55797.99701974331,0,0,0,205.7629892204309 -9846,12131,22034,22035,-9,-9,1,1,81,0,2,0,3,3,-9,0,1,0,0,0,6,26,0,0,3,3,2019,24,12,0,0,4,12,0,0,0,1,0,11.79743570903505,0,0,1,1,0,0,0,27.41,25.55,43.78,38.47,3.333333333333333,2,3,0,0,0,6,1,1,815.5,300048.4205872926,-8063.585754908374,181070.1972756079,0,1478.493537426739 -9846,12131,22035,22034,-9,-9,1,0,55,0,2,0,3,3,-9,0,2,0,0,0,6,-26,0,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.78,38.47,27.41,25.55,3.333333333333333,2,3,0,0,0,6,1,1,815.5,300048.4205872926,-8063.585754908374,181070.1972756079,0,1478.493537426739 -9846,12132,22036,-9,22038,22037,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.406710047307,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,446.5,26749.16662973541,0,0,0,581.3283971609927 -9846,12132,22037,22038,22035,22034,1,1,30,0,2,0,2,2,-9,0,3,6.21843871441683,5.910569468073645,0,6,-5,-77.56569921208398,0,3,3,2019,8,0,28,31,1,0,0,1.757991194779211,1.757991194779211,0,0,0,0,0,1,1,0,0,0,43.83,48.77,50.65,60.47,6.666666666666667,2,3,0,0,8,6,2,1,446.5,26749.16662973541,0,0,0,581.3283971609927 -9846,12132,22038,22037,-9,-9,1,0,35,0,2,0,3,3,-9,0,4,0,0,0,6,5,-155.4059808995449,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.65,60.47,43.83,48.77,8.333333333333334,2,3,0,0,0,6,2,1,446.5,26749.16662973541,0,0,0,581.3283971609927 -9846,12132,22039,-9,22038,22037,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.2815498334867,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,446.5,26749.16662973541,0,0,0,581.3283971609927 -9847,12133,22040,22041,-9,-9,1,0,47,0,0,0,3,3,-9,0,1,0,0,0,32,0,5.624076449739613,0,3,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,14.06,30.46,50.31,57.1,6.666666666666667,2,3,0,0,0,9,5,1,354,1214283.018335999,619586.8251088928,381944.0297578021,-4878.096103522194,2828.333515332136 -9847,12133,22041,22040,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.3196468369919,9.251402997140723,0,8,0,34.34002563994859,0,-9,-9,2019,12,0,40,40,1,0,0,30.90357412827052,30.90357412827052,0,0,0,0,5.48,0,0,0,.03854775258317,0,50.31,57.1,14.06,30.46,6.666666666666667,2,3,0,0,10,9,5,1,354,1214283.018335999,619586.8251088928,381944.0297578021,-4878.096103522194,2828.333515332136 -9848,12134,22042,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,2,0,0,0,0,0,-870.5190518601274,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.1,36.6,-9,-9,6.666666666666667,1,1,0,0,3,6,1,0,2134,-19149.65836876787,0,0,0,0 -9849,12135,22043,22044,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.665285051848601,4.661431261990056,53,-2,126.5497185929969,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.749417013676319,4.827951798965683,41.12,54.83,51.9,43.08,8.333333333333334,1,1,0,0,0,4,2,1,210,470862.3829023464,223796.5422781397,181706.7936028593,0,1811.504832905683 -9849,12135,22044,22043,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.33014970244369,6.129676273037249,53,2,58.64233821987332,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.193806880805946,6.247375626398423,51.9,43.08,41.12,54.83,8.333333333333334,1,1,0,0,0,4,2,1,210,470862.3829023464,223796.5422781397,181706.7936028593,0,1811.504832905683 -9850,12136,22045,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.577507267567342,8.142557212259446,6.648414809273243,0,0,-1085.664862879348,0,3,3,2019,6,0,22,21,1,0,0,12.44622522609965,12.44622522609965,0,0,0,0,0,1,1,0,.975564824482138,6.624288020668835,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,211,571029.298970861,7343.860725288083,359087.3569834846,0,2044.338415504817 -9851,12137,22046,22048,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,7.338537913854462,7.016643397641246,0,1,1,-18.55502984098217,-9,1,2,2019,11,0,23,0,1,2,0,7.745742449027594,7.745742449027594,0,0,0,0,0,1,1,0,0,0,48,57,50,57,7,1,1,0,0,8,9,2,1,887,-16950.35548401561,68493.21334652236,0,0,846.200543225374 -9851,12137,22047,-9,22046,22048,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.337029463389,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,2,1,887,-16950.35548401561,68493.21334652236,0,0,846.200543225374 -9851,12137,22048,22046,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,0,0,0,1,-1,-44.75745258153421,-9,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.851160874292587,0,50,57,48,57,7,2,3,1,0,12,9,2,1,887,-16950.35548401561,68493.21334652236,0,0,846.200543225374 -9851,12137,22049,-9,22046,22048,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.0506761834379,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,9,2,1,887,-16950.35548401561,68493.21334652236,0,0,846.200543225374 -9852,12138,22050,22051,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,10.56707449529424,10.24366435580102,9,4,-9.728630520744888,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.4386789138692596,9.779493428801381,62.39,56.71,59.43,58.05,10,1,1,0,0,0,8,5,1,857,859621.2767477883,228634.0231722163,395782.9197003873,4942.227663255282,24083.3415245205 -9852,12138,22051,22050,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.684815876076809,7.772112554822891,49,-4,-6.660443292509324,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.556603133989989,7.679660442932675,59.43,58.05,62.39,56.71,10,1,1,0,0,8,8,5,1,857,859621.2767477883,228634.0231722163,395782.9197003873,4942.227663255282,24083.3415245205 -9853,12139,22052,22053,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.81777624500771,9.203640357189814,6.049925302241951,7,2,19.47713178233616,0,-9,-9,2019,7,0,70,65,1,0,0,12.03501716783452,12.03501716783452,0,0,0,1.082555376421412,0,0,0,0,6.788377962260773,6.719526962674963,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,1398.5,3158011.417758129,2628792.947792192,409986.3393757596,0,5099.235704543797 -9853,12139,22053,22052,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.656073880471546,8.719027266702906,0,7,-2,88.47243210381426,0,-9,-9,2019,11,0,40,45,1,0,0,15.51049448338746,15.51049448338746,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1398.5,3158011.417758129,2628792.947792192,409986.3393757596,0,5099.235704543797 -9854,12140,22054,22055,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,9.376917668040322,9.3746921415219,6.646338793137294,3,4,35.36530221585352,0,-9,-9,2019,10,0,40,60,1,0,0,32.39692180504209,32.39692180504209,0,0,0,0,0,0,0,0,7.521075894150697,0,54.69,57.47,60.29,52.11,8.333333333333334,1,1,0,0,5,9,5,1,1117.5,5383891.338869729,4278545.964660089,916814.7276505323,0,5777.640201659033 -9854,12140,22055,22054,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.341958298617304,7.34396079485183,0,3,-4,28.85767965335625,0,3,2,2019,8,0,43,45,1,0,0,3.959770758476525,3.959770758476525,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.69,57.47,8.333333333333334,2,3,0,0,6,9,5,1,1117.5,5383891.338869729,4278545.964660089,916814.7276505323,0,5777.640201659033 -9855,12141,22056,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.309838456865185,8.850623394584375,7.552558671096298,0,0,-966.9944165656706,0,2,2,2019,5,0,44,44,1,0,0,12.31205687694073,12.31205687694073,0,0,0,0,0,1,1,0,7.647346415373255,0,49,50,-9,-9,1.666666666666667,1,1,0,0,10,8,5,1,236,361541.8237380069,0,210674.8864168092,52486.21259167894,2766.250361943135 -9856,12142,22057,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,6.588755467114101,6.883482026892684,0,0,0,-997.1597745483757,0,3,3,2019,7,1,35,35,1,1,0,2.65201975195832,2.65201975195832,0,0,0,0,0,1,1,0,0,0,62.18,25.97,-9,-9,5,3,4,0,0,10,8,2,1,279,53466.85059807409,0,0,0,326.2534031272277 -9857,12143,22058,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.622815179105537,7.838414860394161,0,0,0,-1091.229761340054,0,3,3,2019,20,8,35,38,1,8,0,5.543169509864461,5.543169509864461,0,0,0,0,2,1,1,0,1.818809429328113,0,34.35,41.09,-9,-9,3.333333333333333,1,1,0,1,11,7,3,1,243,-31982.01917990235,60903.16622022307,0,0,1074.677985267085 -9858,12144,22059,22060,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.458283240908299,8.702019130700661,58,2,-81.55616349794927,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.737384711454342,8.343436193187129,53.16,21.45,52,46,10,1,1,0,0,6,9,4,1,678,1691173.194394417,962104.4487255891,713393.8009894807,0,4523.872976093273 -9858,12144,22060,22059,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.703358280854498,4.764352397367196,58,-2,27.02788692700005,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.774820870125906,52,46,53.16,21.45,8,1,1,0,0,0,9,4,1,678,1691173.194394417,962104.4487255891,713393.8009894807,0,4523.872976093273 -9859,12145,22061,22062,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.678295484730032,8.814654373600028,0,32,1,23.17447996884705,0,2,3,2019,7,0,42,46,1,0,0,20.0075314016571,20.0075314016571,0,0,0,0,0,0,0,0,0,0,60.12,54.8,38.38,56.81,8.333333333333334,1,1,0,0,10,6,5,1,1395.5,941176.9666758256,675548.0376212227,241639.4761254267,0,3621.053318039628 -9859,12145,22062,22061,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.010261655272426,7.790333115990706,0,32,-1,102.8632747192714,0,3,-9,2019,12,2,39,40,1,2,0,8.006148054162008,8.006148054162008,0,0,0,0,0,0,0,0,6.934859939155778,0,38.38,56.81,60.12,54.8,6.666666666666667,1,1,0,0,10,6,5,1,1395.5,941176.9666758256,675548.0376212227,241639.4761254267,0,3621.053318039628 -9859,12146,22063,-9,22062,22061,1,1,28,0,0,0,2,2,-9,0,3,8.582678518235888,8.371328322206043,0,0,0,-932.1140084147081,-9,2,2,2019,10,0,40,0,1,0,1,16.97534027535304,16.97534027535304,0,0,0,0,0,0,0,0,0,0,33.57,53.14,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,1447,253059.4534908585,23865.36326370707,0,0,2354.792691230718 -9860,12147,22064,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.20769772210458,8.20641716835774,5.817690466923652,0,0,-1031.690026800516,0,3,3,2019,9,0,35,40,1,0,0,11.99644004131974,11.99644004131974,0,0,0,0,0,1,1,0,0,6.11790895948138,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,968,-62853.27678217113,0,5478.4524616792,0,1498.960044936341 -9861,12148,22065,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,7.982404814242171,7.932175704206576,6.850024409053852,0,0,-978.7297109149338,0,3,3,2019,20,8,33,33,1,8,0,10.26063415728133,10.26063415728133,0,0,0,0,0,1,1,0,0,6.630980973255613,39.78,58.75,-9,-9,5,1,1,0,0,10,7,4,1,603,619038.1761091936,170817.2877148726,357699.9452808448,0,2835.578825056647 -9862,12149,22066,22067,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.372707248124108,9.418157085379052,0,22,7,-60.86089357870326,0,3,3,2019,16,5,39,39,1,5,0,29.93458049885414,29.93458049885414,0,0,0,0,0,1,1,0,3.992296078203708,0,51.65,52.38,62.87,41.3,3.333333333333333,2,3,0,0,11,8,5,1,2413.5,889102.5724589,74303.17557515937,497086.3873337294,63981.10430319085,5319.903951386857 -9862,12149,22067,22066,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.824025622123414,7.888323903710544,0,22,-7,40.79741157094585,0,3,1,2019,5,0,40,31,1,0,0,6.624851964449992,6.624851964449992,0,0,0,0,0,1,1,0,7.343083406653223,0,62.87,41.3,51.65,52.38,8.333333333333334,2,3,0,0,8,8,5,1,2413.5,889102.5724589,74303.17557515937,497086.3873337294,63981.10430319085,5319.903951386857 -9862,12150,22068,-9,22067,22066,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1083.449078862434,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,49.49,56.97,-9,-9,3.333333333333333,2,3,0,0,0,8,2,1,878,-110613.4200525356,0,0,0,0 -9863,12151,22069,-9,-9,-9,1,1,22,0,0,0,3,3,-9,0,4,7.825353704862566,7.989751214326423,0,0,0,-889.0909366060172,0,-9,3,2019,16,4,57,43,1,4,1,5.430528146746894,5.430528146746894,0,0,0,0,0,0,0,0,0,0,32.47,56.87,-9,-9,5,1,1,0,1,3,5,4,1,976,68274.51034759273,7819.952319027305,0,0,605.3824765412787 -9864,12152,22070,22071,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.470242828788725,4.592380714478258,59,1,45.78033357784611,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.20185635343531,4.32495952843033,48.45,57.49,57.92,51.82,1.666666666666667,1,1,0,0,0,9,2,1,1002,344402.4717215882,0,331163.5549113975,0,1398.340368653762 -9864,12152,22071,22070,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-1,68.59772168425293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,48.45,57.49,0,1,1,0,0,0,9,2,1,1002,344402.4717215882,0,331163.5549113975,0,1398.340368653762 -9865,12153,22072,-9,22075,22074,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.3527474951204,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,687.25,-17011.77249502474,-4789.946605702196,0,0,1957.324884386052 -9865,12153,22073,-9,22075,22074,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.25631858102,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,2,0,687.25,-17011.77249502474,-4789.946605702196,0,0,1957.324884386052 -9865,12153,22074,22075,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,7.664428322740235,7.768169279441829,0,9,5,30.15421740739081,0,-9,2,2019,6,0,27,25,1,0,0,10.23464606681957,10.23464606681957,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,5,2,0,687.25,-17011.77249502474,-4789.946605702196,0,0,1957.324884386052 -9865,12153,22075,22074,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,0,0,0,9,-5,-38.41746403150695,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,4,5,2,0,687.25,-17011.77249502474,-4789.946605702196,0,0,1957.324884386052 -9866,12154,22076,-9,22079,22077,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.750128704852,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,1,1329.25,1111259.717331469,740481.2962044931,454990.0430028397,20619.23641459299,3044.836521210094 -9866,12154,22077,22079,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.083349019715396,8.760757359090297,0,19,8,-96.19608726890877,0,2,2,2019,24,12,40,45,1,12,0,28.54334812512423,28.54334812512423,0,0,0,0,0,0,0,0,2.778716866791522,0,43.59,59.64,48.87,58.55,3.333333333333333,2,3,0,0,9,8,4,1,1329.25,1111259.717331469,740481.2962044931,454990.0430028397,20619.23641459299,3044.836521210094 -9866,12154,22078,-9,22079,22077,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.025376769567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,1329.25,1111259.717331469,740481.2962044931,454990.0430028397,20619.23641459299,3044.836521210094 -9866,12154,22079,22077,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.467609343316389,7.173279422234846,0,20,-8,-9.988955440890686,0,2,2,2019,6,0,15,22,1,0,0,10.69705636381252,10.69705636381252,0,0,0,0,0,0,0,0,0,0,48.87,58.55,43.59,59.64,8.333333333333334,2,3,0,0,7,8,4,1,1329.25,1111259.717331469,740481.2962044931,454990.0430028397,20619.23641459299,3044.836521210094 -9867,12155,22080,-9,22081,22082,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.6770075035455,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,5,3,1,902.8,65695.62667194133,51012.90368952631,155151.7139594469,98095.33264725929,2052.081828107968 -9867,12155,22081,22082,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,6.011433955097149,6.099994445354014,0,12,-3,-25.89202928145319,0,2,1,2019,10,1,6,0,1,1,0,8.538927673404618,8.538927673404618,0,0,0,0,0,1,1,0,0,0,51.83,57.2,53.22,15.69,8.333333333333334,1,1,0,0,4,5,3,1,902.8,65695.62667194133,51012.90368952631,155151.7139594469,98095.33264725929,2052.081828107968 -9867,12155,22082,22081,-9,-9,1,1,36,1,3,0,1,1,-9,0,1,7.967972584825122,7.878614259212986,0,12,3,-111.8705066620635,0,2,2,2019,12,4,10,40,1,4,0,24.96492691806476,24.96492691806476,0,0,0,0,0,1,1,0,0,0,53.22,15.69,51.83,57.2,8.333333333333334,1,1,0,0,7,5,3,1,902.8,65695.62667194133,51012.90368952631,155151.7139594469,98095.33264725929,2052.081828107968 -9867,12155,22083,-9,22081,22082,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.827533719243,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,3,1,902.8,65695.62667194133,51012.90368952631,155151.7139594469,98095.33264725929,2052.081828107968 -9867,12155,22084,-9,22081,22082,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.11528516144,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,5,3,1,902.8,65695.62667194133,51012.90368952631,155151.7139594469,98095.33264725929,2052.081828107968 -9868,12156,22085,22086,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,0,0,0,35,-2,0,0,3,3,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,35.42,35.38,45.06,5,2,3,0,0,0,6,1,1,302,84163.91436927968,0,0,0,469.0526496749794 -9868,12156,22086,22085,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,35,2,0,0,3,3,2019,8,0,0,54,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,45.06,44.3,35.42,5,2,3,1,0,5,6,1,1,302,84163.91436927968,0,0,0,469.0526496749794 -9868,12157,22087,-9,22085,22086,1,1,24,0,0,0,2,2,-9,0,4,7.588209493773864,7.373008006688121,0,0,0,-934.095159484714,0,3,3,2019,10,0,38,40,1,1,1,4.435421444064325,4.435421444064325,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,257,-253802.331403152,0,0,0,870.5253883287153 -9868,12158,22088,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,8.026239541652346,7.963921178401153,0,0,0,-982.4130182272175,0,-9,-9,2019,9,0,40,40,1,1,0,8.158069140034598,8.158069140034598,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,0,0,1,6,4,1,1784,6573.81715654349,111791.3698377276,45462.7361457314,49489.29336238416,1064.196412578174 -9869,12159,22089,-9,22090,22092,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.4560899896906,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,540,153441.1412781801,34702.44159273621,159221.53682377,0,2657.788858293105 -9869,12159,22090,22092,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,21,-6,-30.49239073108043,0,3,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,53.04,53,55,10,2,3,0,0,0,8,2,0,540,153441.1412781801,34702.44159273621,159221.53682377,0,2657.788858293105 -9869,12159,22091,-9,22090,22092,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1189.523682603482,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,540,153441.1412781801,34702.44159273621,159221.53682377,0,2657.788858293105 -9869,12159,22092,22090,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,6.914229607058584,7.105436534424635,0,7,6,86.24854707262247,0,-9,-9,2019,9,0,25,24,1,1,0,4.289419787309998,4.289419787309998,0,0,0,0,0,1,1,0,0,0,53,55,30.83,53.04,8,2,3,0,0,1,8,2,0,540,153441.1412781801,34702.44159273621,159221.53682377,0,2657.788858293105 -9870,12160,22093,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.90610070118524,8.187568860069582,6.550241309680412,0,0,-1006.256716099512,0,-9,-9,2019,11,0,39,32,1,0,0,10.41423103203348,10.41423103203348,0,0,0,0,0,1,1,0,6.855234727915069,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,2456.5,54099.36879016043,54932.97538226565,61944.60141279643,32460.30224648883,2290.915913772782 -9870,12160,22094,-9,22093,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.312380733523,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,2456.5,54099.36879016043,54932.97538226565,61944.60141279643,32460.30224648883,2290.915913772782 -9870,12161,22095,-9,22093,-9,1,0,18,0,1,0,2,2,1,0,4,6.189317005323532,6.740203713156062,0,0,0,-927.6129806286556,-9,2,-9,2019,10,0,12,0,1,0,1,5.57836952422904,5.57836952422904,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,1,1,2,1,120,116709.426081069,0,169281.1999818488,84683.25967962087,742.8333167466513 -9871,12162,22096,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.558792584269504,8.70277056656494,0,0,0,-1040.845504676587,0,2,2,2019,17,5,46,48,1,5,0,16.74217657907174,16.74217657907174,0,0,0,0,0,1,1,0,0,0,38.87,47.4,-9,-9,3.333333333333333,1,1,0,1,12,10,5,1,1598,18382.00866744746,65861.35736211343,92746.38415066912,16068.6734213977,1943.071591430071 -9872,12163,22097,22099,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.642365254785389,8.491011537432055,0,8,-13,-14.65251430879266,0,2,2,2019,12,1,37,40,1,1,0,15.06267006299729,15.06267006299729,0,0,0,0,0,1,1,0,0,0,43.71,56.91,48.87,58.55,8.333333333333334,1,1,0,0,11,5,4,1,1497,11097.43492418874,-88148.71556387498,228459.7299610498,143733.4725048017,3015.696867375379 -9872,12163,22098,-9,22099,22097,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.5915527796039,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1497,11097.43492418874,-88148.71556387498,228459.7299610498,143733.4725048017,3015.696867375379 -9872,12163,22099,22097,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.902730076864067,7.696540458187273,0,8,13,-123.709109435432,0,2,2,2019,11,0,19,22,1,0,0,12.82516757580835,12.82516757580835,0,0,0,0,0,1,1,0,0,0,48.87,58.55,43.71,56.91,8.333333333333334,1,1,0,0,11,5,4,1,1497,11097.43492418874,-88148.71556387498,228459.7299610498,143733.4725048017,3015.696867375379 -9872,12163,22100,-9,22099,22097,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.800950062501,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1497,11097.43492418874,-88148.71556387498,228459.7299610498,143733.4725048017,3015.696867375379 -9873,12164,22101,22102,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.529419917928271,5.540198111090399,53,-3,86.23683027098862,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.284443778027407,62.58,34.42,58.47,50.22,0,1,1,0,0,0,11,2,1,324.5,391515.0858671363,182391.8864991651,156442.542323068,0,1749.900051192478 -9873,12164,22102,22101,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.229844170155086,5.112010777274134,53,3,-31.2828609984565,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.033956132747113,58.47,50.22,62.58,34.42,8.333333333333334,1,1,0,0,0,11,2,1,324.5,391515.0858671363,182391.8864991651,156442.542323068,0,1749.900051192478 -9874,12165,22103,-9,22104,22105,1,0,16,0,1,1,2,0,-9,0,4,0,5.048101614168196,5.310999658955318,0,0,-894.4492588500198,-9,1,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,5.461362777409052,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,985.3333333333334,3188428.692118704,2943090.508459245,347480.1433054436,170215.6045874891,6838.906077337564 -9874,12165,22104,22105,-9,-9,1,0,56,0,1,0,1,1,-9,0,5,8.588501067485851,8.602250621402089,0,8,0,-181.4069946186526,0,2,1,2019,21,9,33,36,1,9,0,14.25582984268907,14.25582984268907,0,0,0,0,7,0,0,0,2.810023700112468,0,36.52,60.57,58.05,54.52,3.333333333333333,1,1,0,0,9,1,5,1,985.3333333333334,3188428.692118704,2943090.508459245,347480.1433054436,170215.6045874891,6838.906077337564 -9874,12165,22105,22104,-9,-9,1,1,56,0,1,0,1,1,-9,0,5,9.293503939231906,9.608933322252529,0,8,0,-2.575864545119988,0,2,3,2019,7,0,30,35,1,0,0,53.39579822194104,53.39579822194104,0,0,0,0,0,0,0,0,2.48265335488467,0,58.05,54.52,36.52,60.57,8.333333333333334,1,1,0,0,9,1,5,1,985.3333333333334,3188428.692118704,2943090.508459245,347480.1433054436,170215.6045874891,6838.906077337564 -9874,12166,22106,-9,22104,22105,1,0,22,0,1,0,2,2,-9,0,4,7.956036137577038,7.896487473990271,0,0,0,-966.9624389000928,0,1,1,2019,9,1,25,0,1,1,1,14.43452896379599,14.43452896379599,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,468,-13144.24541421713,52560.32364754639,0,0,984.884321735858 -9875,12167,22107,22108,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.735386628994335,8.207165103639143,0,9,7,74.03685166800524,0,3,3,2019,6,0,40,50,1,0,0,9.471347344619222,9.471347344619222,1,0,0,0,0,1,1,0,3.193048257190722,0,60.12,54.8,49.84,47.3,6.666666666666667,1,1,0,0,10,9,4,1,450.5,498480.0071948688,146191.5577244112,267826.1268666236,24715.17822196704,4126.533231791995 -9875,12167,22108,22107,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.166825260934965,7.667870387235981,0,9,-7,17.32904862871536,0,-9,-9,2019,10,0,50,50,1,0,0,9.486926300038153,9.486926300038153,0,0,0,0,0,1,1,0,2.927918486151402,0,49.84,47.3,60.12,54.8,1.666666666666667,1,1,0,0,10,9,4,1,450.5,498480.0071948688,146191.5577244112,267826.1268666236,24715.17822196704,4126.533231791995 -9876,12168,22109,22110,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.09869070856634,7.030437207884364,0,7,3,74.16144214306232,0,3,3,2019,12,0,30,35,1,0,0,4.359088561995607,4.359088561995607,0,0,0,0,0,1,1,0,0,0,52,48,28.34,41.04,6.666666666666667,1,1,0,0,8,11,2,1,865,387735.8033104443,197181.8294169997,179064.2403242683,0,1048.634740375504 -9876,12168,22110,22109,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,7,-3,-42.39781110218971,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,28.34,41.04,52,48,8.333333333333334,1,1,0,0,0,11,2,1,865,387735.8033104443,197181.8294169997,179064.2403242683,0,1048.634740375504 -9877,12169,22111,-9,22114,22115,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1052.750341313908,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,0,1086.2,277072.6017181359,1730.400355021092,305755.6879902471,150792.2702330829,3746.984325574223 -9877,12169,22112,-9,22114,22115,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.2392242329087,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,1086.2,277072.6017181359,1730.400355021092,305755.6879902471,150792.2702330829,3746.984325574223 -9877,12169,22113,-9,22114,22115,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1084.623263823812,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,1086.2,277072.6017181359,1730.400355021092,305755.6879902471,150792.2702330829,3746.984325574223 -9877,12169,22114,22115,-9,-9,1,0,31,0,4,0,2,2,-9,0,3,7.390953216275827,7.5398481439241,0,10,-1,-29.90717867694926,0,2,3,2019,15,3,25,25,1,3,0,8.165078236751521,8.165078236751521,0,0,0,0,0,1,1,0,0,0,46.08,57.2,43.19,44.86,8.333333333333334,1,1,0,0,6,7,3,0,1086.2,277072.6017181359,1730.400355021092,305755.6879902471,150792.2702330829,3746.984325574223 -9877,12169,22115,22114,-9,-9,1,1,32,0,4,0,2,2,-9,0,3,8.221026564902077,8.064925886009672,0,10,1,19.45933348833433,0,3,-9,2019,24,10,55,55,1,10,0,6.975230135265142,6.975230135265142,0,0,0,0,0,1,1,0,0,0,43.19,44.86,46.08,57.2,8.333333333333334,1,1,0,0,9,7,3,0,1086.2,277072.6017181359,1730.400355021092,305755.6879902471,150792.2702330829,3746.984325574223 -9878,12170,22116,22117,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.272705944501539,8.324719784311888,0,10,-2,44.1218241319861,0,2,2,2019,18,6,40,41,1,6,0,10.1997676209569,10.1997676209569,0,0,0,0,0,1,1,0,1.777231361390864,0,36.1,65.8,40.95,63.66,8.333333333333334,1,1,0,0,11,6,5,0,692,2112870.786336231,1771212.247766636,305134.0402833788,48765.83448306486,3732.968027795042 -9878,12170,22117,22116,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,8.512646025964884,8.189606439751199,0,10,2,-109.2262275289245,0,2,2,2019,9,0,40,40,1,0,0,12.67353802804226,12.67353802804226,0,0,0,0,0,1,1,0,6.566487072793732,0,40.95,63.66,36.1,65.8,8.333333333333334,1,1,0,0,11,6,5,0,692,2112870.786336231,1771212.247766636,305134.0402833788,48765.83448306486,3732.968027795042 -9878,12170,22118,-9,22116,22117,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1017.460015764677,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,5,0,692,2112870.786336231,1771212.247766636,305134.0402833788,48765.83448306486,3732.968027795042 -9879,12171,22119,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.6020442680901,0,1,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,8,1,0,4412,-18277.88667057821,0,0,0,1945.494655165829 -9880,12172,22120,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1141.738122291127,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.345356229481268,0,59.81,35.89,-9,-9,10,1,1,0,0,9,12,1,1,164,92826.03420867359,0,0,0,986.6253768392052 -9881,12173,22121,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.825489878676395,7.777953028534627,0,0,-1007.651782054961,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.527552870221044,7.735900472766881,62.39,56.71,-9,-9,8.333333333333334,4,5,0,0,0,8,3,1,441,1261642.155063513,360123.6976438554,0,0,3378.589016874635 -9882,12174,22122,22123,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,6,-6,-49.62633613334325,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.18274182165984,0,52,45,46.29,24.63,7,1,1,0,0,0,7,2,1,527.5,605360.6290366207,0,240647.2625397127,0,1041.055059702844 -9882,12174,22123,22122,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.862108689450418,6.406706540947082,54,6,91.93253184710768,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.604252697481654,46.29,24.63,52,45,3.333333333333333,1,1,0,0,7,7,2,1,527.5,605360.6290366207,0,240647.2625397127,0,1041.055059702844 -9883,12175,22124,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1036.507414292493,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,37.89,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,625,315135.3534428488,46977.51941554018,0,0,862.4450145390605 -9884,12176,22125,-9,22126,22127,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.537677362171,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,0,755.75,44218.00364041609,-17314.29051403626,0,0,1254.485586156005 -9884,12176,22126,22127,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,0,0,0,6,-7,26.51357367896563,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,57.48,51.65,52.38,8.333333333333334,2,3,0,0,0,1,2,0,755.75,44218.00364041609,-17314.29051403626,0,0,1254.485586156005 -9884,12176,22127,22126,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,7.338489051959521,7.467792784648199,0,12,7,-21.99848618333489,0,3,3,2019,11,0,24,60,1,0,0,6.801069310950066,6.801069310950066,0,0,0,0,0,1,1,0,6.697403218457692,0,51.65,52.38,48.06,57.48,5,2,3,0,0,9,1,2,0,755.75,44218.00364041609,-17314.29051403626,0,0,1254.485586156005 -9884,12176,22128,-9,22126,22127,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.93069446438,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,1,2,0,755.75,44218.00364041609,-17314.29051403626,0,0,1254.485586156005 -9885,12177,22129,22130,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,5.566424436299195,5.265432925355508,47,-4,-36.12808676577912,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3108333687264,5.963812273781438,58.72,43.42,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,948.5,1359887.203243701,969345.5579868201,487481.6490296681,40579.51917485123,3562.470598945572 -9885,12177,22130,22129,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.252846011143498,8.619670471070586,47,4,82.10560498497628,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.793609139255175,8.490947062566107,57.16,56.15,58.72,43.42,8.333333333333334,1,1,0,0,0,10,4,1,948.5,1359887.203243701,969345.5579868201,487481.6490296681,40579.51917485123,3562.470598945572 -9886,12178,22131,22132,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.040254760753553,7.730500171652572,0,35,1,-42.6568045549994,0,-9,2,2019,9,0,30,30,1,0,0,10.68493054332145,10.68493054332145,0,0,0,0,2,0,0,0,6.275149213028293,0,54.8,50.32,57.42,49.34,8.333333333333334,1,1,0,0,9,7,4,1,342,542256.8861275709,573707.7203669489,0,0,2754.008599511332 -9886,12178,22132,22131,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.834346399006169,7.686489351301946,0,35,-1,32.46201360597649,0,2,2,2019,10,0,45,45,1,0,0,6.430162275290572,6.430162275290572,0,0,0,0,0,0,0,0,0,0,57.42,49.34,54.8,50.32,8.333333333333334,1,1,0,0,11,7,4,1,342,542256.8861275709,573707.7203669489,0,0,2754.008599511332 -9887,12179,22133,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.266637486160022,8.104504270231253,0,0,0,-932.624087197353,0,3,-9,2019,12,0,37,37,1,0,0,11.29001481964997,11.29001481964997,0,0,0,0,0,0,0,0,3.75919692853138,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,382,42916.60270329176,-11623.52703516417,0,0,1631.476806463106 -9888,12180,22134,22135,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.515026110235179,6.454288798795289,0,29,-5,15.0698618893558,0,3,3,2019,7,0,12,12,1,0,0,7.734060344783542,7.734060344783542,0,0,0,0,0,1,1,0,4.106978098302433,0,54.2,57.49,51.93,45,8.333333333333334,1,1,0,0,11,2,5,1,713,909779.0209289785,709767.9565018287,227331.5375722735,64393.6538195664,5483.398917034896 -9888,12180,22135,22134,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.897841428727038,8.875691493600421,36,5,65.43442509179094,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.631126060948378,9.286666326480859,51.93,45,54.2,57.49,6.666666666666667,1,1,0,0,10,2,5,1,713,909779.0209289785,709767.9565018287,227331.5375722735,64393.6538195664,5483.398917034896 -9889,12181,22136,22137,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.441320191225738,6.166526668301895,34,6,-71.29374215953349,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.655003359920228,6.289628231122732,57.16,56.15,62.52,11.88,6.666666666666667,1,1,0,0,0,7,2,1,836,530970.8560208951,149709.4326673135,492689.5105529438,0,2504.071106912512 -9889,12181,22137,22136,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.233767915696366,6.31206740298054,34,-6,119.9301906108122,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.013880548334727,6.074257703380647,62.52,11.88,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,836,530970.8560208951,149709.4326673135,492689.5105529438,0,2504.071106912512 -9890,12182,22138,22139,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.944320787664992,7.598517533340855,0,6,21,102.1851040932039,0,3,3,2019,14,3,45,50,1,3,0,8.261511875600895,8.261511875600895,0,0,0,0,14.5,1,1,0,0,0,32.43,50.02,27.8,29.48,5,1,1,0,0,5,13,3,0,372.5,294779.6467948015,214472.6277922677,132314.1862885013,69141.90951194285,2287.40838477493 -9890,12182,22139,22138,-9,-9,1,0,31,0,0,0,2,2,-9,1,1,0,0,0,6,-21,-181.1868374839093,-9,-9,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.8,29.48,32.43,50.02,5,1,1,0,0,0,13,3,0,372.5,294779.6467948015,214472.6277922677,132314.1862885013,69141.90951194285,2287.40838477493 -9891,12183,22140,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.283498358639566,8.43343499897844,5.80800168777834,0,0,-1004.730459908831,0,1,2,2019,22,10,37,37,1,10,0,9.858049542997941,9.858049542997941,0,0,0,0,0,1,1,0,6.229741219160226,0,35.36,55.45,-9,-9,5,1,1,0,0,9,1,4,1,102,-13417.13445358873,-12495.59317148152,60518.83273356828,59754.85477715772,1980.209201928122 -9892,12184,22141,-9,22143,22142,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.0837049403081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,663,775650.7707116475,338473.6557843504,571928.9128771719,149005.8635478182,5456.462188943847 -9892,12184,22142,22143,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.738318228616668,9.051949580204717,0,14,-2,-32.59413264029777,0,-9,-9,2019,6,0,38,40,1,0,0,24.44608244763189,24.44608244763189,0,0,0,0,0,1,1,0,5.433363804232167,0,51.83,57.2,42.34,48.1,6.666666666666667,1,1,0,0,10,7,5,1,663,775650.7707116475,338473.6557843504,571928.9128771719,149005.8635478182,5456.462188943847 -9892,12184,22143,22142,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.540809497203686,8.421990622705779,0,14,2,-28.05530245510699,0,2,1,2019,22,10,40,37,1,10,0,16.27036347165274,16.27036347165274,0,0,0,.6488827500239243,0,1,1,0,4.605566187801413,0,42.34,48.1,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,663,775650.7707116475,338473.6557843504,571928.9128771719,149005.8635478182,5456.462188943847 -9893,12185,22144,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.569980776939717,8.824769676059958,0,0,0,-1079.677904460437,0,3,3,2019,12,1,37,37,1,1,0,17.61769254134903,17.61769254134903,0,0,0,0,0,1,1,0,7.77552949644498,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,837,752176.1984038656,578128.4202357037,218123.276905228,98231.70845697088,2428.212574124652 -9894,12186,22145,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.06285499934002,7.569761404287691,0,0,0,-1067.401199810874,0,-9,-9,2019,9,0,37,36,1,0,0,7.341732784895958,7.341732784895958,0,0,0,0,0,1,1,0,3.479801223801601,0,42.75,36.17,-9,-9,5,1,1,0,0,7,7,3,1,3609,124818.0651561607,-103896.1045621474,315246.5475341471,59455.14712439115,1234.649588367752 -9895,12187,22146,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.990972694431164,6.94416974565682,0,0,0,-880.2570888202807,-9,2,-9,2019,6,0,18,0,1,0,0,7.245017206180204,7.245017206180204,0,0,0,0,0,1,1,0,0,0,57.98,39.85,-9,-9,5,1,1,0,0,12,7,2,0,1233,-2845.708663981301,1485.042250453975,0,0,895.5438714082979 -9896,12188,22147,22148,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.045161395600477,7.049260059390747,8,-2,-52.36806561152729,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.967332119483297,6.973144994854502,61.04,39.41,58.75,51.28,8.333333333333334,1,1,0,0,0,12,4,1,1115.5,1594162.578412342,1056037.195205168,189610.8203908242,0,6176.541138755442 -9896,12188,22148,22147,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.606296875688559,8.345195827449842,8,2,87.03575866940311,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.176057662975465,8.438819638213392,58.75,51.28,61.04,39.41,8.333333333333334,1,1,0,0,0,12,4,1,1115.5,1594162.578412342,1056037.195205168,189610.8203908242,0,6176.541138755442 -9897,12189,22149,22150,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,7.322686737342647,7.309818886600297,58,4,35.44458778123018,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,125.299553337648,0,0,1,1,0,4.572889014952512,7.219646684229162,68.41,17.57,55.36,51.57,6.666666666666667,1,1,0,0,0,1,2,1,898,364643.3837921678,179684.6368429486,272500.0425363707,0,1922.9227725312 -9897,12189,22150,22149,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,-32.43009261477319,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,3.958180750846264,0,55.36,51.57,68.41,17.57,8.333333333333334,1,1,0,0,0,1,2,1,898,364643.3837921678,179684.6368429486,272500.0425363707,0,1922.9227725312 -9898,12190,22151,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.603799126659044,6.707542078817474,0,0,-974.1235355457994,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.241313964589688,6.629959393589663,64.02,27,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1513,-16711.41107590699,79942.67367903984,0,0,1109.114712910956 -9899,12191,22152,22153,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.307774020990855,8.220495933305514,6,4,54.50492537685044,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.235880900366849,8.567635313819679,54.2,57.49,59.04,48.59,10,1,1,0,0,5,12,4,1,1269,1163889.740827093,740268.8615975599,253097.9525831418,0,2832.719864388184 -9899,12191,22153,22152,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.301456555638246,6.982087286165892,6,-4,9.890387538688287,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.351518834599156,6.095660509551413,59.04,48.59,54.2,57.49,0,1,1,0,0,5,12,4,1,1269,1163889.740827093,740268.8615975599,253097.9525831418,0,2832.719864388184 -9900,12192,22154,22155,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,7.359388996608688,7.521831671314855,50,-4,-54.79819248322395,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.312256182828965,7.416295427778119,51.14,60.45,39.87,48.03,10,1,1,0,0,8,7,2,1,742.5,729771.9984247657,232659.7623041527,429889.8152269579,0,1759.958418668358 -9900,12192,22155,22154,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,4.963276297570472,4.672705681212461,50,4,-102.204807448129,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.007162412259279,4.922782844408303,39.87,48.03,51.14,60.45,8.333333333333334,1,1,0,0,5,7,2,1,742.5,729771.9984247657,232659.7623041527,429889.8152269579,0,1759.958418668358 -9901,12193,22156,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,8.08037702744692,8.310727272004202,0,0,-887.5079374384736,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.427235374246431,8.138688649638478,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,399,1822445.460573634,1005631.64264271,475782.2962774778,0,1743.080685401035 -9902,12194,22157,22158,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,40,-15,-46.85193785989107,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,2.478544680384997,0,46.16,58.62,51.24,58.84,10,1,1,0,0,6,11,4,1,756,1419979.957170798,650302.8059768323,390324.1939902205,0,3272.828590616047 -9902,12194,22158,22157,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.450023732911216,8.302652090795256,40,15,-11.16492339771836,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.211040472384319,8.515792255233578,51.24,58.84,46.16,58.62,8.333333333333334,1,1,0,0,0,11,4,1,756,1419979.957170798,650302.8059768323,390324.1939902205,0,3272.828590616047 -9903,12195,22159,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-995.9551160651647,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.36,15.07,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,580,16808.50172321625,0,0,0,1275.363859799973 -9904,12196,22160,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,7.509447061317495,7.436035271816645,0,0,0,-1004.150919181043,0,2,2,2019,11,0,30,40,1,0,0,8.937571394052322,8.937571394052322,0,0,0,0,0,0,0,0,8.434552711187484,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,6,11,3,1,561,-109741.7839097303,0,0,0,3528.407544095812 -9905,12197,22161,22162,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.216422318969699,7.443813906571061,16,4,6.364721524441737,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.197082023333173,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,643,1605241.769170113,1091768.697807235,498336.8833589597,0,3452.68763066862 -9905,12197,22162,22161,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.562205503958694,8.344861815279671,20,-4,46.48147179844365,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.575868154998228,8.42757696202696,54.2,57.49,55.19,54.26,6.666666666666667,1,1,0,0,8,5,4,1,643,1605241.769170113,1091768.697807235,498336.8833589597,0,3452.68763066862 -9906,12198,22163,22164,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.102369308438293,8.401877981300657,0,3,1,-35.11282262723253,0,-9,-9,2019,7,0,38,41,1,0,0,11.45056660473211,11.45056660473211,0,0,0,0,0,0,0,0,0,0,52.34,56.95,51.83,57.2,8.333333333333334,1,1,0,0,10,13,5,0,611.5,243453.837964165,381501.2747276701,178654.2737816608,148868.9228665837,3390.510168218584 -9906,12198,22164,22163,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.409463956932159,8.276444159584079,0,3,-1,-71.42658254193078,0,3,2,2019,7,0,40,38,1,0,0,11.14471510125968,11.14471510125968,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.34,56.95,8.333333333333334,1,1,0,0,10,13,5,0,611.5,243453.837964165,381501.2747276701,178654.2737816608,148868.9228665837,3390.510168218584 -9907,12199,22165,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.598797627446592,8.455792320216226,0,0,0,-937.5878920839247,0,2,2,2019,30,12,42,42,1,12,0,13.97698668891834,13.97698668891834,0,0,0,0,0,0,0,0,0,0,19.41,62.78,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,738,646825.166506619,303097.2970372566,385242.3716884141,0,1036.992260731002 -9908,12200,22166,22167,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.176970151531822,7.544278322024299,45,1,-203.6051447944962,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.079458658773503,7.050000255316815,48.93,50.55,46.44,59.62,8.333333333333334,1,1,0,0,8,7,2,1,396,374287.97871637,248894.2450436215,0,0,1801.066067742401 -9908,12200,22167,22166,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,45,-1,-89.18141181446002,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.730047352963194,0,46.44,59.62,48.93,50.55,8.333333333333334,1,1,0,0,0,7,2,1,396,374287.97871637,248894.2450436215,0,0,1801.066067742401 -9909,12201,22168,22169,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.668869636493051,8.956946885527682,0,10,9,3.239919489786635,0,2,2,2019,12,1,44,43,1,1,0,13.76446143466689,13.76446143466689,0,0,0,0,2,0,0,0,3.664640884785225,0,42.53,52.15,42.57,37.11,3.333333333333333,1,1,0,0,12,6,4,1,419,483563.2600576183,171257.6266755918,318551.7780436678,91867.41402777734,1529.59721411583 -9909,12201,22169,22168,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,0,0,0,10,0,-107.2430439908777,0,2,3,2019,14,2,0,46,3,2,0,0,0,0,0,0,0,7,0,0,0,0,0,42.57,37.11,42.53,52.15,3.333333333333333,1,1,0,0,6,6,4,1,419,483563.2600576183,171257.6266755918,318551.7780436678,91867.41402777734,1529.59721411583 -9910,12202,22170,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.756658522157766,8.547932331418419,0,0,0,-954.299427640966,0,1,1,2019,16,6,44,38,1,6,0,11.25839246133483,11.25839246133483,0,0,0,0,0,0,0,0,0,0,42.97,48.02,-9,-9,1.666666666666667,1,1,0,0,4,12,5,1,1292,20639.12407918203,27434.2118799221,0,0,2210.636735082627 -9911,12203,22171,-9,22172,22173,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.241405312738,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,833,703397.9889234657,421306.4023320144,162478.5266263087,52475.77923212468,9057.623124919061 -9911,12203,22172,22173,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,6.743164439993723,6.67751999690897,0,28,0,62.1839060339051,0,3,3,2019,7,0,15,15,1,0,0,7.252192832991637,7.252192832991637,0,0,0,0,7,1,1,0,8.857409228029134,0,57.16,56.15,53.51,60.74,10,1,1,0,0,5,6,5,1,833,703397.9889234657,421306.4023320144,162478.5266263087,52475.77923212468,9057.623124919061 -9911,12203,22173,22172,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,9.081586472636356,9.049797052197633,0,28,0,-54.66813379678405,0,2,2,2019,5,0,78,64,1,0,0,11.59994777182278,11.59994777182278,0,0,0,0,7,1,1,0,8.321621888558454,0,53.51,60.74,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,833,703397.9889234657,421306.4023320144,162478.5266263087,52475.77923212468,9057.623124919061 -9912,12204,22174,22175,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.181378300352299,7.518720697576537,0,9,-23,22.04057951680514,0,2,3,2019,7,0,30,30,1,0,0,4.727267636405402,4.727267636405402,0,0,0,0,2,1,1,0,0,0,49.28,51.53,63.56,36.87,6.666666666666667,1,1,0,0,10,8,3,0,320.5,406258.6606768324,85413.80976200757,572101.7481986515,247036.6479978638,1733.021063239595 -9912,12204,22175,22174,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.028857077999009,6.888367896480673,9,23,126.604238321974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.869978311895056,63.56,36.87,49.28,51.53,8.333333333333334,1,1,0,0,0,8,3,0,320.5,406258.6606768324,85413.80976200757,572101.7481986515,247036.6479978638,1733.021063239595 -9912,12205,22176,-9,22174,22175,1,1,18,0,0,0,2,2,-9,0,4,6.988316910818019,7.124120970568714,0,0,0,-858.6467745491293,0,2,2,2019,6,0,20,0,1,0,1,5.552707456781722,5.552707456781722,0,0,0,0,2,1,1,0,0,0,44.94,53.43,-9,-9,8.333333333333334,1,1,0,0,1,8,2,0,443,0,0,0,0,532.9843417619343 -9913,12206,22177,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1035.772571027872,0,2,1,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.06,54.55,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,1296,-248600.6567341744,0,0,0,-66.80342970704545 -9914,12207,22178,-9,22181,22180,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-990.7251657329365,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,3,0,1053.5,-51888.0031311717,-24338.53840964787,0,0,2139.435423767864 -9914,12207,22179,-9,22181,22180,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-936.951024405039,-9,-9,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,1053.5,-51888.0031311717,-24338.53840964787,0,0,2139.435423767864 -9914,12207,22180,22181,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,7.579750554232149,7.818904771483226,0,7,1,26.49900257330644,0,-9,-9,2019,15,3,42,40,1,3,0,5.753213984634245,5.753213984634245,0,0,0,0,0,1,1,0,0,0,39.09,44.25,40.38,34.42,3.333333333333333,1,1,0,1,8,4,3,0,1053.5,-51888.0031311717,-24338.53840964787,0,0,2139.435423767864 -9914,12207,22181,22180,-9,-9,1,0,32,0,2,0,1,1,-9,0,2,7.058474656505227,7.165234429144659,0,7,-1,-49.67731475651654,0,3,-9,2019,24,12,30,27,1,12,0,5.623338862985558,5.623338862985558,0,0,0,0,0,1,1,0,0,0,40.38,34.42,39.09,44.25,1.666666666666667,1,1,0,1,3,4,3,0,1053.5,-51888.0031311717,-24338.53840964787,0,0,2139.435423767864 -9915,12208,22182,-9,22184,22183,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-862.1985525054356,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,6,4,1,973.25,250854.3222761312,207612.8039761159,89572.8408435428,72669.90906238902,3347.600929107369 -9915,12208,22183,22184,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.230945058274472,8.116409364915844,6.186407829115443,16,1,90.55350315087597,0,2,2,2019,8,0,47,47,1,0,0,10.93728646405333,10.93728646405333,0,0,0,0,0,1,1,0,6.635815931109874,0,49.04,55.86,52.43,55.57,6.666666666666667,1,1,0,0,8,6,4,1,973.25,250854.3222761312,207612.8039761159,89572.8408435428,72669.90906238902,3347.600929107369 -9915,12208,22184,22183,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,7.515229485027771,7.75165089197976,0,13,-1,175.0221405785633,0,3,3,2019,9,3,31,30,1,3,0,6.992001300963718,6.992001300963718,0,0,0,0,0,1,1,0,0,0,52.43,55.57,49.04,55.86,8.333333333333334,1,1,0,0,8,6,4,1,973.25,250854.3222761312,207612.8039761159,89572.8408435428,72669.90906238902,3347.600929107369 -9915,12208,22185,-9,22184,22183,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.305985171505,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.8366677727311842,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,6,4,1,973.25,250854.3222761312,207612.8039761159,89572.8408435428,72669.90906238902,3347.600929107369 -9916,12209,22186,-9,22187,22188,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.7974242524056,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1142.25,680617.0536644849,191186.1525874423,293041.8747606419,20337.11923110169,4508.686841723722 -9916,12209,22187,22188,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.851390386206619,8.875361052094872,0,12,-3,-96.95603645125611,0,1,1,2019,11,0,47,42,1,0,0,19.7681587025896,19.7681587025896,0,0,0,0,2,1,1,0,0,0,39.93,58.52,46.9,52.7,6.666666666666667,1,1,0,0,6,5,5,1,1142.25,680617.0536644849,191186.1525874423,293041.8747606419,20337.11923110169,4508.686841723722 -9916,12209,22188,22187,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.217475442565918,8.086320091360388,0,12,3,-197.7661019575132,0,1,2,2019,13,2,50,40,1,2,0,9.217578111064316,9.217578111064316,0,0,0,0,7,1,1,0,.8800153391446506,0,46.9,52.7,39.93,58.52,8.333333333333334,1,1,0,0,6,5,5,1,1142.25,680617.0536644849,191186.1525874423,293041.8747606419,20337.11923110169,4508.686841723722 -9916,12209,22189,-9,22187,22188,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.414103214807,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1142.25,680617.0536644849,191186.1525874423,293041.8747606419,20337.11923110169,4508.686841723722 -9917,12210,22190,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.263659420305604,7.784802926703696,0,0,-1068.99876118023,0,2,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.1884045123994437,6.796487881289091,55.71,40.47,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,327,916766.2970883104,211748.4132871592,692321.201271807,0,1197.045101521333 -9918,12211,22191,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.91958545195739,7.529440041654876,0,0,-1023.014997241727,-9,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.305494445562796,7.826342099386569,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,4537,-17214.28582761097,41288.70950856838,0,0,2485.260135771528 -9919,12212,22192,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.766074195517695,7.54023236800134,0,0,-1008.509750538903,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.400134296041544,7.356960353151162,46.34,48.81,-9,-9,5,1,1,0,0,0,12,3,1,1681,437275.5334978487,124766.00531805,157266.8630016345,0,1800.902428236798 -9920,12213,22193,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.619654125958982,5.426329623915128,0,0,-1027.925305582795,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,1.939090101971956,0,1,1,0,5.377025066151787,5.687296535280336,53.41,41.96,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,431,-43703.90041542528,0,188638.5995006215,0,1212.358584387793 -9921,12214,22194,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.278124347108871,8.101598616849827,0,0,0,-1040.363951085153,0,2,2,2019,21,9,42,42,1,9,0,8.896723035323213,8.896723035323213,0,0,0,0,0,0,0,0,.4709359716307925,0,29.2,40.86,-9,-9,1.666666666666667,1,1,0,0,8,12,4,1,1233,51706.6498401071,210208.4198992664,14542.22439318988,47029.47991683919,1217.824749199272 -9922,12215,22195,-9,22198,22196,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.136844698621,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,465.75,204092.8355968421,128956.1331814385,259637.18643351,167650.7064488646,2468.797883371563 -9922,12215,22196,22198,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.724885404853739,8.845868694437803,0,8,3,34.95945070693422,0,-9,-9,2019,10,0,42,43,1,0,0,19.59902121119697,19.59902121119697,0,0,0,0,0,1,1,0,0,0,43.96,62.06,35.63,62.19,5,1,1,0,0,10,2,4,1,465.75,204092.8355968421,128956.1331814385,259637.18643351,167650.7064488646,2468.797883371563 -9922,12215,22197,-9,22198,22196,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.51594392592,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,465.75,204092.8355968421,128956.1331814385,259637.18643351,167650.7064488646,2468.797883371563 -9922,12215,22198,22196,-9,-9,1,0,36,0,2,0,1,1,-9,1,4,0,0,0,8,-3,57.1201698589114,0,2,1,2019,13,1,0,9,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,43.96,62.06,6.666666666666667,1,1,0,0,3,2,4,1,465.75,204092.8355968421,128956.1331814385,259637.18643351,167650.7064488646,2468.797883371563 -9923,12216,22199,22200,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.348716820999584,7.589206871849819,0,8,-2,-16.19902794548817,0,2,2,2019,8,0,30,30,1,0,0,9.088928811447623,9.088928811447623,0,0,0,0,0,1,1,0,0,0,49.69,52.99,28.13,45.03,8.333333333333334,1,1,0,0,9,4,4,1,692,913281.6428132902,179036.6372658388,507467.0922274418,0,2217.110029778828 -9923,12216,22200,22199,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.826105869007718,7.822341438380767,0,8,2,20.9278556115137,0,2,2,2019,24,12,30,30,1,12,0,8.009420760001156,8.009420760001156,0,0,0,0,0,1,1,0,0,0,28.13,45.03,49.69,52.99,5,1,1,0,0,9,4,4,1,692,913281.6428132902,179036.6372658388,507467.0922274418,0,2217.110029778828 -9923,12217,22201,-9,22199,22200,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-1005.757604946186,-9,2,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,0,4,4,1,1,60,-12570.32445130901,0,0,0,0 -9923,12218,22202,-9,22199,22200,1,1,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-953.21630728053,-9,2,2,2019,19,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.5184906753202366,0,20.33,61.3,-9,-9,5,1,1,0,0,0,4,1,1,1590,69035.72699611042,0,0,0,-259.2693451426472 -9924,12219,22203,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.878960457887,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,32.45,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,2776,-74514.85734275191,0,0,0,1333.122888013089 -9925,12220,22204,22205,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.980309984074579,6.916933274599397,0,39,-16,-14.97880630101336,0,-9,-9,2019,10,0,15,25,1,1,0,7.891211580821461,7.891211580821461,0,0,0,0,0,1,1,0,0,0,52,53,60.69,53.18,8,1,1,0,0,1,9,3,1,1740,905066.9008665816,206333.7780258314,542651.133023842,0,3819.048210851342 -9925,12220,22205,22204,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.710560763456238,8.115595619583985,39,16,141.6799511170761,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.770967368716331,7.713072670864932,60.69,53.18,52,53,8.333333333333334,1,1,0,0,0,9,3,1,1740,905066.9008665816,206333.7780258314,542651.133023842,0,3819.048210851342 -9925,12221,22206,-9,22204,22205,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-964.9332441437739,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.219209900937257,0,55.18,41.95,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,317,40480.25130986898,0,0,0,754.5104527416959 -9926,12222,22207,22208,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,9.003113075068461,8.780295898725795,0,3,-4,35.5271936218817,0,2,1,2019,14,4,37,39,1,4,0,22.22679177232802,22.22679177232802,0,0,0,0,0,0,0,0,5.028735376974564,0,43.86,63.67,55.79,52.62,8.333333333333334,1,1,0,0,7,7,5,1,524,85351.91674666791,-15742.59298352166,0,0,5413.154997492125 -9926,12222,22208,22207,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.928424874151645,8.942360171957512,0,3,4,17.44513713296826,0,-9,-9,2019,7,0,37,41,1,0,0,29.60095610496209,29.60095610496209,0,0,0,0,0,0,0,0,7.226193767515856,0,55.79,52.62,43.86,63.67,8.333333333333334,2,3,0,0,8,7,5,1,524,85351.91674666791,-15742.59298352166,0,0,5413.154997492125 -9927,12223,22209,-9,22211,22212,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.205134944963,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,616.5,70797.64889207717,45937.26574417924,100077.0503114742,63543.2236778123,2783.270000781588 -9927,12223,22210,-9,22211,22212,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1158.308680462883,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,616.5,70797.64889207717,45937.26574417924,100077.0503114742,63543.2236778123,2783.270000781588 -9927,12223,22211,22212,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.198794722530486,7.297397349763163,0,17,-2,8.008747804733037,-9,3,2,2019,14,2,18,0,1,2,0,7.333572254529903,7.333572254529903,0,0,0,0,0,1,1,0,3.49001070013784,0,38.69,47.09,38.16,44.66,3.333333333333333,2,3,0,1,2,2,3,1,616.5,70797.64889207717,45937.26574417924,100077.0503114742,63543.2236778123,2783.270000781588 -9927,12223,22212,22211,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,7.622474179765899,7.624752102582757,0,17,2,-60.88625046076401,0,-9,2,2019,11,1,40,40,1,1,0,8.375670389901101,8.375670389901101,0,0,0,0,0,1,1,0,0,0,38.16,44.66,38.69,47.09,3.333333333333333,2,3,0,0,11,2,3,1,616.5,70797.64889207717,45937.26574417924,100077.0503114742,63543.2236778123,2783.270000781588 -9928,12224,22213,22214,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,10,-1,82.91751520348097,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.6,52.77,63.27,39.7,10,1,1,0,0,0,1,3,1,346,392705.6497043112,203292.8432078734,128725.3696488744,0,2124.536677946247 -9928,12224,22214,22213,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.484114530656121,7.766437548210375,10,1,149.9007128901827,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.726219684809539,7.432956170284055,63.27,39.7,44.6,52.77,10,1,1,0,0,0,1,3,1,346,392705.6497043112,203292.8432078734,128725.3696488744,0,2124.536677946247 -9928,12225,22215,-9,22213,22214,1,1,25,0,0,0,2,2,-9,0,5,8.164263966791772,8.159455037248373,0,0,0,-1014.914808105769,0,3,2,2019,6,0,43,43,1,0,0,8.44580706823065,8.44580706823065,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,9,1,4,1,90,-41920.16062458351,88243.07102037143,0,0,1092.928760993287 -9929,12226,22216,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.543852804437404,4.67980402407395,0,0,-903.3346594545001,0,2,1,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,7.480082506117862,4.796002120788599,44.59,45.67,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,246,357316.9713615339,0,318543.4828867043,0,1270.299115415444 -9930,12227,22217,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.593835514947735,8.389950244657472,0,0,0,-1165.602700382826,0,2,2,2019,10,0,50,40,1,1,0,11.94145130906501,11.94145130906501,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,10,5,0,313,293935.7647677307,298831.7898610175,262062.4630137857,123692.8908330019,2693.228905153588 -9930,12228,22218,-9,22217,-9,1,1,30,0,0,0,1,1,-9,0,5,8.280741631016799,8.03760003501881,0,0,0,-1091.490501621009,0,2,-9,2019,2,0,50,48,1,0,1,9.426399457817311,9.426399457817311,0,0,0,0,0,1,1,0,2.691071649654979,0,54.1,59.11,-9,-9,10,1,1,0,0,2,10,4,0,953,-149396.6251699345,0,0,0,1735.667954523742 -9931,12229,22219,22220,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.710886746363362,6.544700128381387,41,-1,60.32273286253741,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.489086110388395,44.11,55.31,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,1,1992.5,227347.3697261693,39398.16292010932,122593.627752961,0,2549.750961874275 -9931,12229,22220,22219,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.51288399774292,8.67368954020445,0,41,1,33.29543983267092,0,3,3,2019,8,0,42,40,1,0,0,19.76296165985594,19.76296165985594,0,0,0,0,2,0,0,0,0,0,57.33,53.46,44.11,55.31,8.333333333333334,1,1,0,0,10,2,5,1,1992.5,227347.3697261693,39398.16292010932,122593.627752961,0,2549.750961874275 -9932,12230,22221,-9,22222,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.007503326684,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,352.5,-61181.36923400899,38240.97483825975,0,0,1415.740799374617 -9932,12230,22222,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.804685616765086,7.011202855910821,0,0,0,-911.6651545049968,0,3,2,2019,12,0,16,16,1,2,0,6.070839514654367,6.070839514654367,0,0,0,0,0,1,1,0,.2018161343165772,0,46,58,-9,-9,7,1,1,0,1,4,9,2,0,352.5,-61181.36923400899,38240.97483825975,0,0,1415.740799374617 -9933,12231,22223,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,4,7.955808298404238,8.021225470362728,0,0,0,-915.9445427832362,-9,-9,-9,2019,7,0,38,0,1,0,0,9.959242614850112,9.959242614850112,0,0,0,0,0,0,0,0,2.492928912723459,0,59.53,56.44,-9,-9,10,1,1,0,0,1,10,4,0,436,170453.929316879,0,0,0,1411.892160263568 -9934,12232,22224,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-920.2044162856843,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,20.14,-9,-9,5,1,1,0,0,5,7,1,0,549,132705.4645331786,0,0,0,800.8494120337641 -9935,12233,22225,-9,-9,-9,1,1,36,0,0,0,3,3,-9,0,5,8.994849379648617,8.940992766006264,0,0,0,-1007.617891937456,-9,-9,-9,2019,16,5,40,0,1,5,0,22.07234346439321,22.07234346439321,0,0,0,0,0,0,0,0,0,0,30.57,65.05,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,133,-67825.91091089888,7312.572600746333,0,0,2709.810442868805 -9936,12234,22226,22227,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.702356923652545,7.565877103494576,0,9,-1,109.589794174316,0,-9,-9,2019,12,0,40,40,1,0,0,7.877691181572571,7.877691181572571,0,0,0,0,0,0,0,0,0,0,50.57,52.35,38.06,56.52,6.666666666666667,1,1,0,0,10,2,4,0,638,177581.9218448147,187843.144260632,0,0,2114.45544690188 -9936,12234,22227,22226,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,8.031773974312364,7.966328462196498,0,9,1,-93.13065343917182,0,2,2,2019,12,0,41,41,1,2,0,7.196076502308884,7.196076502308884,0,0,0,0,0,0,0,0,0,0,38.06,56.52,50.57,52.35,6.666666666666667,1,1,0,0,10,2,4,0,638,177581.9218448147,187843.144260632,0,0,2114.45544690188 -9937,12235,22228,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.522035367728549,8.381312262030807,0,0,0,-955.4010075101128,0,2,2,2019,12,0,50,40,1,0,0,10.38535233298074,10.38535233298074,0,0,0,0,0,0,0,0,0,0,34.41,43.65,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,233,29124.28933755989,-67147.99395893388,0,0,2276.021198272392 -9938,12236,22229,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.652911770970277,6.992279480006913,0,0,-962.6633858472469,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.473227349758199,6.851154665987025,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,422,266269.0726169905,-35524.77444994837,306214.1919112265,0,1385.268665927816 -9939,12237,22230,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.863253780030423,7.998285091967608,0,0,0,-893.8581451183262,0,2,2,2019,9,0,37,38,1,1,0,7.951746788640964,7.951746788640964,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,877,49368.60923593518,0,0,0,1342.907708677296 -9939,12238,22231,-9,22230,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1090.600720242909,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,1,1,1,106,43032.4995903708,0,0,0,0 -9940,12239,22232,-9,22233,22234,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1125.898546088803,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,3.628323026335787,0,23.98,60.58,-9,-9,1.666666666666667,1,1,0,0,0,9,5,1,404.6666666666667,646040.4203956319,99564.0161047312,621165.0948354829,80070.53656260383,3733.755270076435 -9940,12239,22233,22234,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.639930498930545,7.50756157504504,0,8,-3,-152.2573189193386,0,2,2,2019,11,0,25,25,1,0,0,10.15304311681758,10.15304311681758,0,0,0,0,0,1,1,0,2.88637704541465,0,54.97,47.63,46.71,50.27,6.666666666666667,1,1,0,0,9,9,5,1,404.6666666666667,646040.4203956319,99564.0161047312,621165.0948354829,80070.53656260383,3733.755270076435 -9940,12239,22234,22233,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.909138962267939,8.953742507923995,0,8,3,-16.5937789716503,0,2,3,2019,11,0,43,43,1,0,0,18.40498353874221,18.40498353874221,0,0,0,0,0,1,1,0,2.653521912830245,0,46.71,50.27,54.97,47.63,8.333333333333334,1,1,0,0,9,9,5,1,404.6666666666667,646040.4203956319,99564.0161047312,621165.0948354829,80070.53656260383,3733.755270076435 -9941,12240,22235,22236,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.708507583918013,9.874970771697292,0,26,4,-165.7565518821298,0,1,1,2019,14,3,46,50,1,3,0,38.21759783958466,38.21759783958466,0,0,0,0,14.5,0,0,0,6.456235674133181,0,51.24,58.84,35.34,63.71,3.333333333333333,1,1,0,0,5,6,5,1,911.5,1308411.495727208,231401.623964202,990561.5722669846,262296.3010863588,9193.522165347411 -9941,12240,22236,22235,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,9.429813221253973,9.462558088121851,0,27,-4,-43.31090984927567,0,1,1,2019,18,6,36,48,1,6,0,37.00602894547498,37.00602894547498,0,0,0,0,5.48,0,0,0,7.038235778240701,0,35.34,63.71,51.24,58.84,3.333333333333333,1,1,0,0,6,6,5,1,911.5,1308411.495727208,231401.623964202,990561.5722669846,262296.3010863588,9193.522165347411 -9941,12241,22237,-9,22236,22235,1,1,19,0,3,1,2,0,0,0,3,0,0,0,0,0,-917.3526345100887,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.6,51,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,2673,85320.42861999309,0,0,0,0 -9942,12242,22238,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-946.2905552030491,-9,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.279792080079219,0,51,49,-9,-9,7,1,1,0,0,0,1,1,0,154,-54006.83819176784,0,0,0,1566.81649680804 -9942,12243,22239,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.476297178626766,7.737010827987318,0,0,0,-1005.396918951573,0,3,2,2019,13,1,39,42,1,1,0,5.459496190337519,5.459496190337519,0,0,0,0,87,1,1,0,0,0,46.6,20.67,-9,-9,6.666666666666667,1,1,0,0,9,1,3,0,395,220110.8373809333,248849.5558022935,67686.88296755461,49022.80192581152,551.0302655611979 -9943,12244,22240,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.872395372345574,7.815750785928177,0,0,0,-1046.348384518035,0,3,3,2019,6,0,40,35,1,0,0,7.338224747055174,7.338224747055174,0,0,0,0,0,0,0,0,0,0,58.16,48.06,-9,-9,5,4,5,0,0,8,11,3,0,765,88699.92713980138,0,127554.1374138938,24253.19416302724,1448.550419641037 -9944,12245,22241,22242,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.118221816354826,6.558550902867386,0,33,-3,75.70482691175235,0,2,1,2019,9,0,17,11,1,0,0,7.050636479858375,7.050636479858375,0,0,0,0,0,0,0,0,2.02801204223531,0,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,13,10,5,1,941,1208874.05390136,1017333.491418044,145994.6723141141,82458.98551557744,3604.54632365071 -9944,12245,22242,22241,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.39840363148744,9.420742234349699,0,11,3,-90.93909464779306,0,-9,-9,2019,7,0,43,50,1,0,0,31.51935808516849,31.51935808516849,0,0,0,0,0,0,0,0,2.241877452855761,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,941,1208874.05390136,1017333.491418044,145994.6723141141,82458.98551557744,3604.54632365071 -9944,12246,22243,-9,22241,22242,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1131.917729832006,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.206317822782081,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,453,-77207.81142127424,0,0,0,-81.27550135577491 -9944,12247,22244,-9,22241,22242,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1066.809623717275,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.433763765630891,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,827,178150.2050435241,0,0,0,87.61484109527144 -9945,12248,22245,22246,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,35,4,0,0,3,3,2019,14,2,0,2,4,2,0,0,0,0,0,0,0,0,1,1,0,7.577256232977978,0,47.7,47.03,48,49,5,2,3,0,0,10,2,1,1,388.5,642600.5093755245,536942.9841559426,140490.7066675976,0,2175.629133112671 -9945,12248,22246,22245,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,35,-4,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,47.7,47.03,7,2,3,0,0,0,2,1,1,388.5,642600.5093755245,536942.9841559426,140490.7066675976,0,2175.629133112671 -9946,12249,22247,-9,22249,22251,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-986.7675228225878,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9946,12249,22248,-9,22249,22251,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.750066499951,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9946,12249,22249,22251,-9,-9,1,0,33,1,4,0,3,3,-9,0,3,0,0,0,5,-1,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.53,56.44,3.333333333333333,1,1,0,1,0,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9946,12249,22250,-9,22249,22251,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1087.247281452507,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9946,12249,22251,22249,-9,-9,1,1,34,1,4,0,2,2,-9,0,4,0,0,0,5,1,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,54.96,53.17,5,1,1,1,1,1,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9946,12249,22252,-9,22249,22251,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-894.8440789168412,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,1111.166666666667,-731.0736848717983,0,0,0,1245.102306048528 -9947,12250,22253,22254,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.112238042575729,8.120530570006162,0,27,2,33.16444384687931,0,2,2,2019,11,0,30,0,1,0,0,15.46364815505573,15.46364815505573,0,0,0,0,0,0,0,0,0,0,57.33,53.46,40.8,59.7,6.666666666666667,1,1,0,0,9,2,5,1,1007.5,614332.4578884382,650491.9502024287,127403.6243339286,91752.2982285308,3055.783199251391 -9947,12250,22254,22253,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.177102970749042,8.210610472309726,0,8,-2,141.7621977225318,0,-9,-9,2019,22,10,45,40,1,10,0,11.27691661947633,11.27691661947633,0,0,0,0,2,0,0,0,4.199496095748803,0,40.8,59.7,57.33,53.46,6.666666666666667,1,1,0,1,8,2,5,1,1007.5,614332.4578884382,650491.9502024287,127403.6243339286,91752.2982285308,3055.783199251391 -9947,12251,22255,-9,22254,22253,1,0,23,0,0,0,1,1,-9,0,4,7.646793005191476,7.631564012174517,0,0,0,-887.0250618457486,0,2,2,2019,13,1,41,32,1,1,1,5.774996848145417,5.774996848145417,0,0,0,0,0,0,0,0,0,0,35.75,55.18,-9,-9,6.666666666666667,1,1,0,0,4,2,3,1,1781,-64785.53140184277,-74961.18930206947,0,0,731.7694148846773 -9948,12252,22256,22257,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,46,-3,-40.27900202031374,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,4.608322726882562,103.1470500973316,50.08851348961211,0,1,1,0,0,0,52,45,43.34,30.37,8,1,1,0,0,0,7,2,1,1428,210229.6053488299,-2752.246506913711,215800.8073380254,0,1765.006548140959 -9948,12252,22257,22256,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,6.154973633818432,5.8067585012345,9,3,57.57202317621257,0,2,3,2019,24,12,0,0,4,12,0,0,0,1,3.39478381757956,10.69622249790098,21.02547422938998,71.5,1,1,0,4.209415440538571,6.249198828608117,43.34,30.37,52,45,3.333333333333333,1,1,0,0,0,7,2,1,1428,210229.6053488299,-2752.246506913711,215800.8073380254,0,1765.006548140959 -9949,12253,22258,22259,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,5.792130484616209,5.840496706939829,2,11,-25.99049834747264,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.972884228356125,5.915245126907742,57.16,56.15,58.15,52.91,10,1,1,0,0,6,10,2,1,560,405145.1319231039,118241.1084155835,281646.3073653033,0,996.122079088005 -9949,12253,22259,22258,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.184974283978963,7.264573341379989,0,2,-11,-16.05775193990545,0,3,3,2019,9,0,21,21,1,0,0,6.831805622396908,6.831805622396908,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,10,2,1,560,405145.1319231039,118241.1084155835,281646.3073653033,0,996.122079088005 -9950,12254,22260,-9,22263,22264,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.5707271079182,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,459.4,2393840.892101167,463067.1717297315,232834.2406100361,0,3987.112631185522 -9950,12254,22261,-9,22263,22264,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-871.1206024553478,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,4,1,459.4,2393840.892101167,463067.1717297315,232834.2406100361,0,3987.112631185522 -9950,12254,22262,-9,22263,22264,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.722028154497,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,459.4,2393840.892101167,463067.1717297315,232834.2406100361,0,3987.112631185522 -9950,12254,22263,22264,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,8.123715335840457,7.949750380241195,0,19,-1,-25.97992756097934,0,3,3,2019,7,0,10,8,1,0,0,27.41835078183301,27.41835078183301,0,0,0,0,0,1,1,0,0,0,49.35,59.64,54.77,55.87,8.333333333333334,1,1,0,0,10,4,4,1,459.4,2393840.892101167,463067.1717297315,232834.2406100361,0,3987.112631185522 -9950,12254,22264,22263,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.959908937677611,8.422646866196589,0,8,1,29.15051659161858,0,-9,-9,2019,8,0,48,40,1,0,0,15.41234330172127,15.41234330172127,0,0,0,0,0,1,1,0,5.401243333207637,0,54.77,55.87,49.35,59.64,6.666666666666667,1,1,0,0,10,4,4,1,459.4,2393840.892101167,463067.1717297315,232834.2406100361,0,3987.112631185522 -9951,12255,22265,22266,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.153499771620034,7.244211916780046,0,10,10,3.338724641145899,0,-9,-9,2019,7,0,41,45,1,0,0,3.27952464190776,3.27952464190776,0,0,0,0,0,0,0,0,0,0,57.57,49.69,57.33,53.46,6.666666666666667,1,1,0,0,11,12,4,0,1766.5,97357.20638908376,9056.59572472726,285087.0649216684,60851.85164215344,2600.474876538932 -9951,12255,22266,22265,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.160933575349544,8.275421032842489,0,10,-10,-16.1796911410561,0,-9,-9,2019,8,0,46,45,1,0,0,8.847121755647462,8.847121755647462,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.57,49.69,6.666666666666667,1,1,0,0,11,12,4,0,1766.5,97357.20638908376,9056.59572472726,285087.0649216684,60851.85164215344,2600.474876538932 -9952,12256,22267,22268,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,7.685433226702653,7.499133083774335,42,0,-132.0633309124697,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.411525234703584,0,56.47,59.4,52.72,55.58,10,1,1,0,0,6,4,3,1,367,1619879.733329735,972197.275608657,246195.5856270355,0,8032.801077052298 -9952,12256,22268,22267,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.950364866868267,7.717325557718112,42,0,103.2196623585093,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.278551193893209,0,52.72,55.58,56.47,59.4,8.333333333333334,1,1,0,0,6,4,3,1,367,1619879.733329735,972197.275608657,246195.5856270355,0,8032.801077052298 -9953,12257,22269,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.885790993887017,9.295112905773872,0,0,0,-1141.869945234154,0,2,2,2019,11,0,50,45,1,0,0,15.95561021053175,15.95561021053175,0,0,0,0,0,0,0,0,6.390329155843439,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,9,5,1,218,99864.23440775156,116999.3551133264,0,0,3233.947767825327 -9954,12258,22270,-9,-9,-9,1,0,51,1,1,0,2,2,-9,0,5,7.492953896070641,7.932656903410239,6.711580540271817,0,0,-940.5433982999831,0,3,3,2019,20,8,25,27,1,8,0,7.365983421060956,7.365983421060956,0,0,0,0,7,1,0,1,6.991173993273065,0,38.05,63.64,-9,-9,3.333333333333333,1,1,0,1,8,9,3,0,766,499016.0294408766,144249.6368374914,249124.2005711428,0,1282.953299250427 -9954,12259,22271,-9,22270,-9,1,0,26,1,1,0,2,2,-9,0,4,7.955829486663408,7.977160220585385,0,0,0,-1020.588210547926,0,2,-9,2019,6,0,43,42,1,0,1,8.674797535479318,8.674797535479318,0,0,0,0,0,1,0,1,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,1484,-6122.332833300141,10184.51293158503,0,0,1299.463591940816 -9954,12259,22272,-9,22271,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.122754920195,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,1484,-6122.332833300141,10184.51293158503,0,0,1299.463591940816 -9954,12260,22273,-9,22270,-9,1,1,25,1,1,0,2,2,-9,1,4,0,0,0,0,0,-985.7719019205903,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,3.93980414379595,0,48,59,-9,-9,7,1,1,0,0,0,9,2,0,210,64321.34844215192,0,0,0,618.1556440553126 -9955,12261,22274,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.814091581986165,8.932124350749929,0,0,-945.9728915353768,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.791404537353987,8.812004020232806,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,5,1,2186,1901738.362840238,795544.19638599,238891.5399637355,0,5762.195539070347 -9956,12262,22275,22276,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.13654752439871,7.937934773302104,0,4,2,-17.79637577840818,0,-9,-9,2019,11,0,48,50,1,0,0,8.90685966152151,8.90685966152151,0,0,0,0,0,1,1,0,0,0,49.41,58.28,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,871.6666666666666,998.7772146363665,1418.256243119627,0,0,2315.50140413916 -9956,12262,22276,22275,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,8.116844201203921,7.907939987017296,0,4,-2,55.80836889657314,0,-9,-9,2019,9,0,40,33,1,0,0,9.9917775764221,9.9917775764221,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,8,7,4,1,871.6666666666666,998.7772146363665,1418.256243119627,0,0,2315.50140413916 -9956,12262,22277,-9,22276,22275,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.4217783511581,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,871.6666666666666,998.7772146363665,1418.256243119627,0,0,2315.50140413916 -9957,12263,22278,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.670561121090143,8.673014937605521,0,14,10,60.24231300839062,0,2,2,2019,12,0,40,40,1,0,0,16.06587216633984,16.06587216633984,0,0,0,0,0,0,0,0,1.288742739282684,0,38.94,60.48,56.99,50.96,6.666666666666667,1,1,0,0,8,8,5,1,129,721456.7002172117,206882.8827251938,502052.1529218363,0,2048.093454127587 -9957,12264,22279,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.887811658179267,8.765256872842929,0,14,-10,-1.590819321349316,0,2,3,2019,11,0,35,35,1,0,0,23.89010590833289,23.89010590833289,0,0,0,0,0,0,0,0,0,0,56.99,50.96,38.94,60.48,8.333333333333334,1,1,0,0,4,8,5,1,579,47452.38558711407,81661.46975360363,0,0,2052.734218992522 -9958,12265,22280,22281,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.750108285182908,7.152803499200187,36,16,17.62344942616465,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.91347567069755,7.289342772340126,41.17,59.31,49.5,48.94,10,1,1,0,0,0,10,4,1,565.5,1624440.917206293,722400.1977783494,434294.8056002814,0,3340.504609505003 -9958,12265,22281,22280,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,8.449951568794924,8.250930416079484,36,-16,56.41579746795509,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.303711881818137,8.007107725922877,49.5,48.94,41.17,59.31,8.333333333333334,1,1,0,0,4,10,4,1,565.5,1624440.917206293,722400.1977783494,434294.8056002814,0,3340.504609505003 -9959,12266,22282,-9,22283,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,0,0,-884.8752806741835,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,5.051145041667771,0,49.94,58.01,-9,-9,8.333333333333334,1,1,1,0,7,13,2,1,574,527920.3757445825,119021.3995295046,128191.276188851,0,955.0699448011765 -9959,12267,22283,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.509298674299516,4.778008500377601,0,0,-933.9918054289977,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,3.692007696395932,120.1505945200384,23.85750443084998,0,1,1,0,0,4.914745692795964,53,44,-9,-9,8,1,1,0,0,0,13,2,1,1009,-49663.15000760333,0,0,0,949.1793796027273 -9959,12268,22284,-9,22282,-9,1,1,28,0,0,0,2,2,-9,0,4,7.469797583154739,7.423355930366331,0,0,0,-981.6860493517303,-9,3,-9,2019,6,0,30,0,1,0,1,7.574054680343719,7.574054680343719,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,-9,-9,0,1,1,0,0,3,13,3,1,614,-44434.21506710968,-116509.0194582575,0,0,1548.722412911629 -9960,12269,22285,22286,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,8.013814241928443,8.030997117115479,0,39,0,15.82819543483168,0,2,2,2019,25,11,40,0,1,11,0,9.329107411413654,9.329107411413654,0,0,0,0,0,1,1,0,3.787941813378766,0,22.48,25,56.43,47.07,5,1,1,0,0,8,6,5,0,201,524823.3115733765,327569.0077534646,163465.9721752821,104485.0462489048,3359.182914262567 -9960,12269,22286,22285,-9,-9,1,1,58,0,0,0,1,1,-9,1,5,8.782300556270812,8.658047105792781,0,39,0,81.3352719829532,0,2,2,2019,9,0,55,47,1,0,0,11.68715587810232,11.68715587810232,0,0,0,0,2,1,1,0,0,0,56.43,47.07,22.48,25,8.333333333333334,1,1,0,0,8,6,5,0,201,524823.3115733765,327569.0077534646,163465.9721752821,104485.0462489048,3359.182914262567 -9960,12270,22287,-9,22285,22286,1,1,27,0,0,0,1,1,-9,0,3,7.898552967275273,7.903758207058292,0,0,0,-1026.099797162216,0,2,1,2019,12,0,46,42,1,0,1,7.593539108409058,7.593539108409058,0,0,0,0,2,1,1,0,0,0,36.2,57.77,-9,-9,3.333333333333333,1,1,0,0,6,6,4,0,172,126755.8702170027,68097.397404035,43635.32037169854,84601.82361705269,979.5989106606205 -9961,12271,22288,22290,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.664544708340971,8.737549046712752,0,9,2,83.89333626697022,0,2,2,2019,6,0,37,37,1,0,0,18.96972579048179,18.96972579048179,0,0,0,0,2,0,0,0,1.951380707579917,0,54.96,53.17,52.6,52.88,8.333333333333334,1,1,0,0,10,6,5,1,157,2368748.10677563,1701769.055713639,387786.2636629313,0,4053.887973352554 -9961,12271,22289,-9,22290,22288,1,1,17,0,0,0,3,3,1,0,3,0,0,0,0,0,-1105.078949623674,-9,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,3.23189818238899,0,47.66,52.33,-9,-9,1.666666666666667,1,1,0,0,1,6,5,1,157,2368748.10677563,1701769.055713639,387786.2636629313,0,4053.887973352554 -9961,12271,22290,22288,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.780633079274937,8.789742470074788,0,25,-2,14.56417633473645,0,2,2,2019,9,0,38,37,1,0,0,21.29824664620442,21.29824664620442,0,0,0,0,2,0,0,0,3.904890338607944,0,52.6,52.88,54.96,53.17,8.333333333333334,1,1,0,0,10,6,5,1,157,2368748.10677563,1701769.055713639,387786.2636629313,0,4053.887973352554 -9961,12272,22291,-9,22290,22288,1,1,21,0,0,0,2,2,-9,0,4,7.974468972860147,7.880684910229697,0,0,0,-1048.945103835239,0,2,1,2019,6,0,40,40,1,0,1,9.154209843567111,9.154209843567111,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,990,106048.0227395062,-48369.07348624465,0,0,1351.19825504253 -9962,12273,22292,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,7.058450016253663,6.983340990486855,0,0,-1027.510322194749,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,1.493414857580488,0,1,1,0,0,7.01377528179044,57.06,57.76,-9,-9,10,1,1,0,0,0,2,3,1,897,591991.639853012,428739.626406503,113755.9641067374,0,1344.830843047697 -9963,12274,22293,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.3059387362337,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,.6930326846900861,0,0,1,1,0,0,0,41.25,50.19,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,347,-160426.3375551113,0,0,0,586.5776650123207 -9964,12275,22294,22295,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,55,-2,36.97337218736857,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,0,129.9313965476604,0,0,1,1,0,0,0,49.03,13.18,52.94,49.78,5,1,1,0,0,0,5,2,1,566,367680.0596834176,114552.8310501743,128548.7803280297,0,1602.488682307897 -9964,12275,22295,22294,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.481184988117598,6.530672921175636,55,2,4.153190599461642,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.102382395997235,6.511843781538321,52.94,49.78,49.03,13.18,8.333333333333334,1,1,0,0,0,5,2,1,566,367680.0596834176,114552.8310501743,128548.7803280297,0,1602.488682307897 -9965,12276,22296,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.887291131577405,5.964883221041528,0,0,-1062.533215707915,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.302573762161938,6.069398295856019,59.15,44.82,-9,-9,10,1,1,0,0,0,2,2,1,120,467633.9101065033,198563.3159828566,6643.446535201234,0,1054.649187749164 -9966,12277,22297,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.598806885199348,7.618416333651144,0,0,-1007.350096726074,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,2.269525328829555,0,20.70231259984122,0,1,1,0,4.778999462531887,7.486009776156209,34.03,18.62,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,621,734901.3537575193,520629.1812141852,425598.5835952169,0,1510.587497363329 -9967,12278,22298,22299,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.002013321033417,6.892357929565279,21,-2,82.52559791325554,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.389072032529729,6.992857650523142,60.12,41.6,58.15,52.91,10,1,1,0,0,5,9,2,1,631,963396.3000857289,246435.6727895521,416675.912979981,0,2025.563582471299 -9967,12278,22299,22298,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.44571316512963,5.068948644358693,21,2,-7.703388732733729,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,5.051739407456651,58.15,52.91,60.12,41.6,8.333333333333334,1,1,0,0,5,9,2,1,631,963396.3000857289,246435.6727895521,416675.912979981,0,2025.563582471299 -9968,12279,22300,22301,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.122853926150801,8.317726330103268,0,8,0,-86.11025479723669,-9,-9,-9,2019,10,0,37,0,1,0,0,8.941806001053044,8.941806001053044,0,0,0,0,0,1,1,0,0,0,51.13,44.07,69.63,31.48,6.666666666666667,2,3,0,0,12,6,4,1,742.3333333333334,244553.6739437105,168474.3099155793,118346.6024909702,70512.68223755599,3807.519695546471 -9968,12279,22301,22300,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.272319343687428,7.984540618211576,0,8,0,61.01683377519943,0,-9,-9,2019,8,0,38,38,1,0,0,10.2678745860657,10.2678745860657,0,0,0,0,0,1,1,0,0,0,69.63,31.48,51.13,44.07,8.333333333333334,2,3,0,0,12,6,4,1,742.3333333333334,244553.6739437105,168474.3099155793,118346.6024909702,70512.68223755599,3807.519695546471 -9968,12279,22302,-9,22301,22300,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-865.8234395057883,-9,2,2,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.490961194003599,0,51.95,33.25,-9,-9,6.666666666666667,2,3,0,0,0,6,4,1,742.3333333333334,244553.6739437105,168474.3099155793,118346.6024909702,70512.68223755599,3807.519695546471 -9969,12280,22303,22304,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,0,0,11,5,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48,49,7,1,1,1,0,0,5,1,0,829.5,339630.7691417073,0,241348.2402367077,0,1120.958019122759 -9969,12280,22304,22303,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,11,-5,0,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,1,1,0,0,0,5,1,0,829.5,339630.7691417073,0,241348.2402367077,0,1120.958019122759 -9970,12281,22305,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.689842263875626,8.973312958395109,0,0,0,-932.5663917460289,0,2,3,2019,11,0,42,44,1,0,0,19.76232237871373,19.76232237871373,0,0,0,0,0,0,0,0,8.212605525053789,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,98,128074.6757928187,109156.5167537495,0,0,4148.447875862872 -9971,12282,22306,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.68142808815899,6.633364423860606,0,0,-921.1717159347986,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.54071432649551,6.824395712756503,47.23,58.08,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,652,494691.2842376981,164418.7032290492,154738.0784087095,0,1144.670381019041 -9972,12283,22307,22308,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.850743346960044,8.617596677927123,0,13,2,108.9042887269444,0,3,3,2019,10,0,43,42,1,0,0,15.72329312124008,15.72329312124008,0,0,0,0,0,1,1,0,2.850134393558259,0,54.1,59.11,32.5,55.09,8.333333333333334,3,4,0,0,8,7,4,1,988.5,151282.6572066046,-15679.17096333419,223771.6386511872,125347.5325515974,2487.348356487745 -9972,12283,22308,22307,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,6.715682088473272,6.524588273810948,0,13,-2,15.32199627453766,0,3,3,2019,18,6,18,0,1,6,0,4.033047178784463,4.033047178784463,0,0,0,0,0,1,1,0,0,0,32.5,55.09,54.1,59.11,3.333333333333333,1,1,0,1,7,7,4,1,988.5,151282.6572066046,-15679.17096333419,223771.6386511872,125347.5325515974,2487.348356487745 -9973,12284,22309,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.579258227045246,9.763391243497768,7.086106251079746,0,0,-1001.840888550288,0,3,2,2019,9,0,35,50,1,0,0,62.30345579377028,62.30345579377028,0,0,0,0,2,1,1,0,7.706713248658177,7.49328052718818,35.44,62.1,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,594,1402906.963960978,1321219.005251366,208978.4061894806,12009.88333020317,7821.50238312414 -9973,12284,22310,-9,-9,22309,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-882.2691612176296,1,-9,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.8982671412817965,0,41.22,55.39,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,594,1402906.963960978,1321219.005251366,208978.4061894806,12009.88333020317,7821.50238312414 -9974,12285,22311,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,5,0,6.021389097167614,6.312672210146388,0,0,-1043.948291062684,0,-9,-9,2019,13,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,6.048442734490836,0,43.82,61.41,-9,-9,3.333333333333333,1,1,1,0,4,6,2,0,866,-56920.21728816942,0,0,0,236.3004678717936 -9975,12286,22312,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.385924482581994,6.461464577176589,0,0,-920.3862507272935,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.636197290038017,29.24,39.51,-9,-9,1.666666666666667,1,1,0,0,3,11,2,1,119,222588.5164798244,201978.9842189294,0,0,1073.666729858797 -9976,12287,22313,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.544582240372525,7.788875997344975,5.407983158940071,0,0,-930.854526903276,0,1,1,2019,28,11,30,30,1,11,0,8.579002670355836,8.579002670355836,0,0,0,0,0,1,0,1,5.985514696887433,0,17.83,67.65000000000001,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,485,78016.86277181547,-9106.826380068913,0,0,1494.854607413684 -9976,12287,22314,-9,22313,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.247104536359,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,485,78016.86277181547,-9106.826380068913,0,0,1494.854607413684 -9977,12288,22315,-9,22316,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.825984802981,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,514.5,-18162.47013478057,10617.06985087401,140215.6406740098,66974.32878465422,1167.062376056077 -9977,12288,22316,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.534415028127937,7.223756880477155,0,0,0,-933.6426488581773,0,-9,-9,2019,7,0,23,23,1,0,0,9.23944240274907,9.23944240274907,0,0,0,0,0,1,0,1,0,0,60,48.06,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,514.5,-18162.47013478057,10617.06985087401,140215.6406740098,66974.32878465422,1167.062376056077 -9978,12289,22317,-9,22322,22319,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.338788989809,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9978,12289,22318,-9,22322,22319,1,1,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1094.001266233415,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9978,12289,22319,22322,-9,-9,1,1,47,0,4,0,1,1,-9,0,4,8.758571759161502,8.733272357947188,0,20,0,-76.09851728747869,0,2,2,2019,9,1,43,50,1,1,0,12.95298959861872,12.95298959861872,0,0,0,0,0,1,1,0,4.037557604097502,0,54.2,57.49,62.27,42.94,1.666666666666667,1,1,0,0,11,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9978,12289,22320,-9,22322,22319,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-934.6164806921823,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9978,12289,22321,-9,22322,22319,1,0,12,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1086.152435419345,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9978,12289,22322,22319,-9,-9,1,0,47,0,4,0,2,2,-9,0,3,7.481442547406017,7.465004371452179,0,9,0,-65.78560187040817,0,2,2,2019,6,0,35,38,1,0,0,5.120028870397763,5.120028870397763,0,0,0,0,0,1,1,0,0,0,62.27,42.94,54.2,57.49,8.333333333333334,1,1,0,0,9,10,4,1,1066.833333333333,1509200.2165632,136344.6009552555,345402.3494310251,0,3396.321312455807 -9979,12290,22323,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.916153138705826,7.775442884620982,0,0,0,-1002.928903942564,0,3,2,2019,6,0,35,35,1,0,0,9.237635981335142,9.237635981335142,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,12,1,4,0,1834,481065.235375645,296620.5494744327,174247.7114949355,0,1326.841076796394 -9980,12291,22324,22325,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,58,-3,5.670227459436199,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,50.26,39.26,8.333333333333334,1,1,0,0,0,9,2,1,582.5,581952.5049545569,159286.428379395,417714.5241278375,0,1554.686696969043 -9980,12291,22325,22324,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.261167812018881,6.9544566491326,58,3,-22.06061781995648,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.724120033940149,7.142209758882757,50.26,39.26,48.28,60.18,8.333333333333334,1,1,0,0,0,9,2,1,582.5,581952.5049545569,159286.428379395,417714.5241278375,0,1554.686696969043 -9981,12292,22326,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.864305393586246,8.022723578979351,0,0,-964.7206084240613,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.918964393850962,4.168426369434918,0,0,1,1,0,4.120266087957248,7.906659655728594,52.25,23.43,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1173,265244.6029363637,1170.922656173978,145862.5711958464,0,1644.521792467992 -9982,12293,22327,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,0,0,-986.6999453972775,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,1328,74271.79804216328,0,0,0,1095.110531360328 -9983,12294,22328,-9,-9,22329,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.163638575283,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,276.5,512760.6252711043,372223.6912616467,287003.6536793953,153695.4172035553,2172.254078960924 -9983,12294,22329,-9,-9,-9,1,1,31,1,2,0,1,1,-9,0,4,8.675315386145263,8.907332725143565,0,0,0,-945.328348162869,0,-9,-9,2019,9,0,50,60,1,0,0,12.10662712203012,12.10662712203012,0,0,0,0,0,1,1,0,0,0,45.99,46.12,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,276.5,512760.6252711043,372223.6912616467,287003.6536793953,153695.4172035553,2172.254078960924 -9983,12295,22330,22332,-9,-9,1,1,31,1,2,0,1,1,-9,0,4,8.903984644363987,8.583961628793375,0,5,2,-13.97812633918474,0,-9,-9,2019,17,6,49,45,1,6,0,14.30268322074999,14.30268322074999,0,0,0,0,0,1,1,0,4.340539807821925,0,42.05,58.8,51.24,58.84,8.333333333333334,1,1,0,0,4,4,5,1,1178,251429.2961466649,-5256.897621075957,402726.4725274965,275468.5745157276,4122.561850631234 -9983,12295,22331,-9,22332,22330,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.14867189838,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1178,251429.2961466649,-5256.897621075957,402726.4725274965,275468.5745157276,4122.561850631234 -9983,12295,22332,22330,-9,-9,1,0,29,1,2,0,1,1,-9,0,4,8.413905182193238,8.796398398820422,0,5,-2,76.98085166216802,0,2,2,2019,12,0,37,37,1,0,0,15.50325941358567,15.50325941358567,0,0,0,0,0,1,1,0,.61574097913161,0,51.24,58.84,42.05,58.8,8.333333333333334,1,1,0,0,7,4,5,1,1178,251429.2961466649,-5256.897621075957,402726.4725274965,275468.5745157276,4122.561850631234 -9984,12296,22333,22334,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.804954726880029,9.680080193382343,0,18,2,4.709766462164912,0,1,1,2019,9,0,55,50,1,1,0,33.12640381820216,33.12640381820216,0,0,0,0,0,0,0,0,7.597948150812416,0,52,55,50,55,8,1,1,0,0,9,8,5,1,323,3434363.259048013,1670112.863504489,995293.2417574072,0,13289.36439134133 -9984,12296,22334,22333,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.203059254624645,9.159174420594345,0,7,-2,83.08746492541862,-9,-9,-9,2019,10,0,43,0,1,1,0,27.22461863674909,27.22461863674909,0,0,0,0,0,0,0,0,4.445337424667749,0,50,55,52,55,8,1,1,0,0,9,8,5,1,323,3434363.259048013,1670112.863504489,995293.2417574072,0,13289.36439134133 -9984,12296,22335,-9,22334,22333,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-891.6705127781069,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,323,3434363.259048013,1670112.863504489,995293.2417574072,0,13289.36439134133 -9985,12297,22336,22337,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.606911842200615,8.898568738105418,0,2,2,-69.41802091623471,0,2,2,2019,6,0,36,38,1,0,0,24.32014391981454,24.32014391981454,0,0,0,0,0,0,0,0,7.422063529592635,0,58.15,52.91,56.18,53.85,8.333333333333334,1,1,0,0,7,6,5,0,1134,271763.3991477837,77216.51958956878,158432.849008495,61813.94160463084,3915.749025559015 -9985,12297,22337,22336,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.269069584976846,7.051422232169457,0,2,-2,43.80084407415643,0,-9,-9,2019,11,0,5,60,1,0,0,27.26704627734061,27.26704627734061,0,0,0,0,0,0,0,0,7.498476757830973,0,56.18,53.85,58.15,52.91,3.333333333333333,1,1,0,0,9,6,5,0,1134,271763.3991477837,77216.51958956878,158432.849008495,61813.94160463084,3915.749025559015 -9986,12298,22338,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.956739701445,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,1,1,0,187,-121661.0235110704,0,0,0,1386.179544374487 -9987,12299,22339,22340,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,8.204510855668483,8.231550599944928,8,1,55.9680914981516,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.008608377752068,8.208616921145191,43.77,51.59,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,505.5,1081337.494657072,434140.3489874933,181101.5442178688,0,3309.066483982563 -9987,12299,22340,22339,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,7.113535830448273,6.827726462944019,8,-1,-49.2291066471381,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.384983402526339,7.275160129792802,57.16,56.15,43.77,51.59,8.333333333333334,1,1,0,0,0,13,4,1,505.5,1081337.494657072,434140.3489874933,181101.5442178688,0,3309.066483982563 -9988,12300,22341,22343,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,6.869425443181767,6.760565452050165,0,13,-8,-57.49043568874286,0,3,2,2019,13,1,16,12,1,1,0,7.009631627217613,7.009631627217613,0,0,0,0,0,1,1,0,0,0,42.2,48.1,48.87,58.55,3.333333333333333,2,3,0,0,6,10,3,1,775.5,1480607.083384381,1163064.929313226,434324.2546888202,127007.2307397073,2299.807357294915 -9988,12300,22342,-9,22341,22343,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.5528926408292,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,775.5,1480607.083384381,1163064.929313226,434324.2546888202,127007.2307397073,2299.807357294915 -9988,12300,22343,22341,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.32240438691419,8.38014502817491,0,13,8,68.14993227742086,0,2,2,2019,11,2,40,40,1,2,0,11.73466091430741,11.73466091430741,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.2,48.1,3.333333333333333,1,1,0,1,8,10,3,1,775.5,1480607.083384381,1163064.929313226,434324.2546888202,127007.2307397073,2299.807357294915 -9988,12300,22344,-9,22341,22343,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.902877819914,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,3,1,775.5,1480607.083384381,1163064.929313226,434324.2546888202,127007.2307397073,2299.807357294915 -9989,12301,22345,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-940.2961572775419,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.80223150963357,0,50.21,44.21,-9,-9,10,1,1,0,0,0,6,1,1,618,-142672.5346432386,0,0,0,180.2870346423966 -9989,12302,22346,-9,22345,-9,1,1,51,0,0,0,2,2,-9,0,4,8.270708727676642,8.161795098462758,0,0,0,-948.2223567522801,0,3,3,2019,7,0,40,40,1,0,0,9.620987118749989,9.620987118749989,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,6,4,1,373,515633.9027241417,332361.7915833323,126355.9717730434,34023.66460984915,912.7126046779513 -9990,12303,22347,22348,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.530916697633341,7.333215440869046,54,7,-17.1951668189122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.720495970791712,7.351382777708223,48.92,35.42,43.19,30.37,10,1,1,0,0,0,5,2,1,241.5,184907.2292493905,162468.9890918763,0,0,1551.391143463519 -9990,12303,22348,22347,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,-7,-134.1517634351236,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,34.24316130162916,0,71.5,1,1,0,0,0,43.19,30.37,48.92,35.42,5,1,1,0,0,0,5,2,1,241.5,184907.2292493905,162468.9890918763,0,0,1551.391143463519 -9991,12304,22349,22351,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.670638722004266,9.110134593103597,4.980492816620156,10,5,48.40142875797014,0,-9,-9,2019,10,0,42,37,1,0,0,18.79056963043429,18.79056963043429,0,0,0,0,0,1,1,0,4.921895802236816,0,48,54.77,49.25,61.25,6.666666666666667,1,1,0,0,11,10,5,1,604.3333333333334,615271.3873260828,426876.6334209672,340009.8694972908,245443.1524689513,3629.788807560053 -9991,12304,22350,-9,22351,22349,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.567680913093,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,604.3333333333334,615271.3873260828,426876.6334209672,340009.8694972908,245443.1524689513,3629.788807560053 -9991,12304,22351,22349,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.28912950977927,8.078696283407773,0,17,-5,-115.2357450306228,0,3,2,2019,8,0,24,23,1,0,0,16.14313283283528,16.14313283283528,0,0,0,0,0,1,1,0,2.389268884283316,0,49.25,61.25,48,54.77,5,1,1,0,0,11,10,5,1,604.3333333333334,615271.3873260828,426876.6334209672,340009.8694972908,245443.1524689513,3629.788807560053 -9992,12305,22352,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,5.854056726490556,5.973967884659393,0,0,-949.4995597413501,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.018960223697501,6.005799886224151,54.4,51.93,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2606,137806.0007966007,24988.17576412461,0,0,625.2716893484735 -9993,12306,22353,-9,22356,22355,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.370363314173,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,785.6,64288.63274201368,52929.23806937867,0,0,2016.819209938681 -9993,12306,22354,-9,22356,22355,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.204117265071,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,785.6,64288.63274201368,52929.23806937867,0,0,2016.819209938681 -9993,12306,22355,22356,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.283209240535959,8.421059214885359,0,7,1,-116.7177396628472,0,-9,-9,2019,6,0,46,47,1,0,0,10.78561052255376,10.78561052255376,0,0,0,0,0,1,1,0,0,0,60.6,46.43,54.69,57.47,8.333333333333334,2,3,0,0,9,2,3,1,785.6,64288.63274201368,52929.23806937867,0,0,2016.819209938681 -9993,12306,22356,22355,-9,-9,1,0,34,0,3,0,2,2,-9,0,5,0,0,0,14,-1,-42.62819895848023,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,60.6,46.43,8.333333333333334,2,3,0,0,0,2,3,1,785.6,64288.63274201368,52929.23806937867,0,0,2016.819209938681 -9993,12306,22357,-9,22356,22355,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.1077167790128,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,785.6,64288.63274201368,52929.23806937867,0,0,2016.819209938681 -9994,12307,22358,-9,22359,22361,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.5079790948844,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1360.75,508768.772347845,542525.2984478432,262805.9940672835,223006.755607074,3882.238088244205 -9994,12307,22359,22361,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,7.276733204008093,7.225659123401192,0,6,-3,38.97737988531181,0,2,2,2019,11,0,16,12,1,0,0,8.953578078312548,8.953578078312548,0,0,0,0,0,1,1,0,0,0,48.28,29.15,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,1360.75,508768.772347845,542525.2984478432,262805.9940672835,223006.755607074,3882.238088244205 -9994,12307,22360,-9,22359,22361,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.095205221405,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1360.75,508768.772347845,542525.2984478432,262805.9940672835,223006.755607074,3882.238088244205 -9994,12307,22361,22359,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,9.16544687642441,8.859954384761918,0,6,3,60.86740822096983,0,2,2,2019,7,0,54,54,1,0,0,13.49763188028533,13.49763188028533,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.28,29.15,6.666666666666667,1,1,0,0,7,11,4,1,1360.75,508768.772347845,542525.2984478432,262805.9940672835,223006.755607074,3882.238088244205 -9995,12308,22362,22363,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.965451416610126,9.105681266052759,0,6,10,-15.18212767089037,0,3,3,2019,13,3,55,70,1,3,0,16.6103646113233,16.6103646113233,0,0,0,0,14.5,0,0,0,2.855095292775963,0,44.94,57.73,51.94,55.88,8.333333333333334,1,1,0,0,9,1,5,1,970,567495.3528302424,476610.772562071,223659.7467475026,212701.2861046338,7218.316694267498 -9995,12308,22363,22362,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.129266290981718,9.200975676624665,0,6,-10,72.55886945797681,0,2,2,2019,10,0,20,20,1,0,0,56.36730063821547,56.36730063821547,0,0,0,0,0,0,0,0,2.559818756733946,0,51.94,55.88,44.94,57.73,8.333333333333334,1,1,0,0,9,1,5,1,970,567495.3528302424,476610.772562071,223659.7467475026,212701.2861046338,7218.316694267498 -9995,12309,22364,-9,22362,22363,1,1,19,0,0,1,2,0,0,0,4,0,5.34817562068426,5.382219788535468,0,0,-1000.342962717485,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,0,0,0,5.990724881213194,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1469,-49542.6065266765,0,0,0,564.6509595301281 -9996,12310,22365,22366,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.568068254889843,6.43157429689659,6,1,11.04024584594208,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.661660728176122,6.537846293550702,55.66,40.5,34.43,45.24,10,1,1,0,0,0,11,2,1,853,189572.5992767617,129253.1728006813,0,0,1695.165375488819 -9996,12310,22366,22365,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-1,55.8643121471442,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,34.43,45.24,55.66,40.5,5,1,1,0,0,0,11,2,1,853,189572.5992767617,129253.1728006813,0,0,1695.165375488819 -9997,12311,22367,-9,22368,22369,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-990.3566565075926,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,6,1,0,2135,0,0,0,0,0 -9997,12312,22368,22369,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.112734253152547,7.390309387900251,0,3,-5,-85.95918198038468,0,2,2,2019,15,4,10,15,1,4,0,15.47939843336601,15.47939843336601,0,0,0,0,0,0,0,0,0,0,40.58,33.06,58.41,47.38,5,4,2,0,0,12,6,3,0,661,446595.912717364,0,343738.8949254715,0,1033.789616756078 -9997,12312,22369,22368,-9,-9,1,1,56,0,0,0,2,2,0,0,3,0,6.660211299052951,6.535884004356172,3,5,-176.7354490108594,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,6.573335870780298,58.41,47.38,40.58,33.06,6.666666666666667,1,1,0,0,0,6,3,0,661,446595.912717364,0,343738.8949254715,0,1033.789616756078 -9998,12313,22370,22371,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.843917991455163,9.179510637204501,0,2,-2,149.9548497626738,-9,-9,-9,2019,11,0,40,0,1,0,0,19.84907492700071,19.84907492700071,0,0,0,0,0,0,0,0,0,0,43.95,51.24,48.83,43.79,8.333333333333334,1,1,0,0,7,9,5,0,991,158324.1395685657,26961.13490128451,305092.9361815267,218896.8219269633,4725.018532569788 -9998,12313,22371,22370,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.850766641941654,8.432874226133489,0,2,2,2.522458965838653,0,2,3,2019,12,0,38,38,1,0,0,19.4924062821428,19.4924062821428,0,0,0,0,0,0,0,0,0,0,48.83,43.79,43.95,51.24,8.333333333333334,1,1,0,0,10,9,5,0,991,158324.1395685657,26961.13490128451,305092.9361815267,218896.8219269633,4725.018532569788 -9999,12314,22372,-9,22374,22375,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.775107308407,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,992.25,639923.6907132849,483357.2600130061,302515.5633120293,88346.04547322963,5139.792943014636 -9999,12314,22373,-9,22374,22375,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.1749361900773,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,992.25,639923.6907132849,483357.2600130061,302515.5633120293,88346.04547322963,5139.792943014636 -9999,12314,22374,22375,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.460962123264638,8.524189233616569,0,7,0,121.2931264737923,0,2,2,2019,8,0,32,32,1,0,0,15.62553417562274,15.62553417562274,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,992.25,639923.6907132849,483357.2600130061,302515.5633120293,88346.04547322963,5139.792943014636 -9999,12314,22375,22374,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.032522347548751,8.675332094470589,0,7,0,-84.78065892991218,0,-9,-9,2019,7,0,37,0,1,0,0,22.2831127740974,22.2831127740974,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,5,1,992.25,639923.6907132849,483357.2600130061,302515.5633120293,88346.04547322963,5139.792943014636 -10000,12315,22376,-9,22379,22378,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.343482967595,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,591.5,720570.7973197646,192553.2342107571,492885.9099688474,1844.593550200905,3049.580954252286 -10000,12315,22377,-9,22379,22378,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.306193047542,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,591.5,720570.7973197646,192553.2342107571,492885.9099688474,1844.593550200905,3049.580954252286 -10000,12315,22378,22379,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.29721735575859,8.28722346593883,0,15,-3,131.8524477916263,0,-9,-9,2019,9,0,40,48,1,1,0,11.97549835276675,11.97549835276675,0,0,0,0,0,1,1,0,0,0,52,55,46.82,50.04,8,1,1,0,0,1,7,4,1,591.5,720570.7973197646,192553.2342107571,492885.9099688474,1844.593550200905,3049.580954252286 -10000,12315,22379,22378,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.034357377523566,7.6846829754979,0,15,3,-129.7873307519955,0,2,1,2019,12,0,36,30,1,0,0,8.605950378329874,8.605950378329874,0,0,0,0,27,1,1,0,0,0,46.82,50.04,52,55,6.666666666666667,1,1,0,0,10,7,4,1,591.5,720570.7973197646,192553.2342107571,492885.9099688474,1844.593550200905,3049.580954252286 -10000,12316,22380,-9,22379,22378,1,1,24,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1028.178496952207,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,7,1,1,157,62536.24382929016,0,0,0,644.5484385619637 -10001,12317,22381,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.883703257085799,8.896996230270888,0,0,0,-918.5648159238082,0,3,3,2019,16,4,46,40,1,4,0,23.01342971756429,23.01342971756429,0,0,0,0,2,1,1,0,0,0,40.75,58.26,-9,-9,3.333333333333333,1,1,0,0,13,13,5,1,268,1246686.412763842,1223485.751676689,184012.9394932512,63025.84154085222,2857.867991050493 -10002,12318,22382,22385,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.117736228324286,8.976214954599326,0,12,4,99.35262617659815,0,2,1,2019,11,0,40,40,1,0,0,29.24695359461039,29.24695359461039,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.25,44.46,6.666666666666667,2,3,0,0,6,2,4,1,889.25,551063.9115680542,341047.6242280788,398922.2343176411,217590.2260146924,2852.050134406956 -10002,12318,22383,-9,22385,22382,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.75647415203,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,4,1,889.25,551063.9115680542,341047.6242280788,398922.2343176411,217590.2260146924,2852.050134406956 -10002,12318,22384,-9,22385,22382,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.144782304097,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,4,1,889.25,551063.9115680542,341047.6242280788,398922.2343176411,217590.2260146924,2852.050134406956 -10002,12318,22385,22382,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,0,0,0,12,-4,-67.23524929969828,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.195367618275715,0,47.25,44.46,51.83,57.2,6.666666666666667,2,3,0,0,1,2,4,1,889.25,551063.9115680542,341047.6242280788,398922.2343176411,217590.2260146924,2852.050134406956 -10003,12319,22386,22387,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.519821124965937,7.503674906026054,38,13,-66.49150666670744,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.480424088845427,7.53009414593517,51.19,52.17,57.73,54.53,8.333333333333334,1,1,0,0,0,10,3,1,201.5,342022.8485049157,14181.39358231129,281479.6205054839,0,3004.367938221322 -10003,12319,22387,22386,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.342485339690868,7.438082830247658,38,-13,93.79832460398927,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.21633998767591,6.680686179021325,57.73,54.53,51.19,52.17,10,1,1,0,0,6,10,3,1,201.5,342022.8485049157,14181.39358231129,281479.6205054839,0,3004.367938221322 -10004,12320,22388,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,7.362521429148759,7.258528637070116,0,0,-1006.894170755063,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,7.539268655615191,38.17,16.31,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,229,-6617.998050533715,59511.96563397777,0,0,1862.991002045063 -10005,12321,22389,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1063.123069720228,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,659,24639.33332276343,0,0,0,351.6086266872162 -10006,12322,22390,22391,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.535726477814853,8.747400948735455,10,1,66.0788057515074,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.096596799836193,8.375066080910285,52.82,53.97,44.85,53.68,8.333333333333334,1,1,0,0,12,11,4,1,379.5,1937990.134538807,994070.7791512054,484281.4680385969,0,4491.736186372616 -10006,12322,22391,22390,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,10,-1,-21.20376414189126,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,44.85,53.68,52.82,53.97,6.666666666666667,1,1,0,0,0,11,4,1,379.5,1937990.134538807,994070.7791512054,484281.4680385969,0,4491.736186372616 -10007,12323,22392,22393,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.583149298430792,7.836578757358885,0,28,-15,-69.56145974165203,-9,3,3,2019,11,0,38,0,1,0,0,7.352100640168897,7.352100640168897,0,0,0,0,5.48,1,1,0,0,0,48.31,49.46,48,37,8.333333333333334,2,3,0,0,3,7,4,1,496,1129356.100192138,712483.3659794913,292913.3727285417,0,2768.499958696276 -10007,12323,22393,22392,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.199062789058805,7.375495675546422,30,15,-11.60945942702999,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,4.660724290152682,0,0,1,1,0,6.695419786703685,7.492374814940886,48,37,48.31,49.46,5,1,1,0,0,0,7,4,1,496,1129356.100192138,712483.3659794913,292913.3727285417,0,2768.499958696276 -10007,12324,22394,-9,22392,22393,1,1,24,0,0,0,2,2,-9,0,2,6.579918556993162,6.62068596228638,0,0,0,-977.2271570306905,-9,3,3,2019,12,0,13,0,1,0,1,8.651241529494811,8.651241529494811,0,0,0,0,2,1,1,0,0,0,46.8,43.8,-9,-9,5,4,2,0,1,2,7,2,1,421,27756.3111982743,0,0,0,927.8758664463905 -10007,12325,22395,-9,22392,22393,1,1,20,0,0,0,2,2,-9,0,3,8.244679802373485,8.44584601641137,0,0,0,-746.7171666699803,-9,2,3,2019,12,1,30,0,1,1,1,12.23544603727231,12.23544603727231,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,8.333333333333334,4,2,0,0,4,7,4,1,226,-67652.39048188807,14707.063918928,0,0,1466.509113080702 -10008,12326,22396,22397,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.166071352978872,8.483518682298216,0,8,-3,131.6159658560046,0,-9,3,2019,10,0,46,45,1,0,0,8.893313857352458,8.893313857352458,0,0,0,0,0,1,1,0,0,0,58.32,50.22,51.41,56.15,8.333333333333334,1,1,0,0,8,8,4,0,274,1014135.572264318,698782.1984496098,402981.0290006326,0,2077.809340163014 -10008,12326,22397,22396,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.749978261952927,7.776893928842745,0,8,3,-70.48290261688769,0,-9,-9,2019,9,0,38,38,1,0,0,6.930911309086875,6.930911309086875,0,0,0,0,0,1,1,0,0,0,51.41,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,8,4,0,274,1014135.572264318,698782.1984496098,402981.0290006326,0,2077.809340163014 -10008,12327,22398,-9,22397,22396,1,1,28,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1064.214074607479,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,1,1,1,0,0,8,1,0,353,-48408.72669532526,0,0,0,291.0259535098761 -10009,12328,22399,22400,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,50,-5,0,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.26,57.62,36.22,37.22,10,2,3,0,0,9,8,1,1,1061.5,376266.7573112792,0,287236.6369099725,0,864.4693486146002 -10009,12328,22400,22399,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,50,5,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,36.22,37.22,49.26,57.62,5,2,3,0,0,0,8,1,1,1061.5,376266.7573112792,0,287236.6369099725,0,864.4693486146002 -10010,12329,22401,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.859476064354011,8.029024141105721,0,0,0,-994.8625509979023,0,2,3,2019,11,2,39,40,1,2,0,10.03890091774457,10.03890091774457,0,0,0,0,0,0,0,0,0,0,45.16,46.76,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,828,-119005.4463988873,-41097.39179525742,0,0,908.3833590369679 -10011,12330,22402,22403,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.694809078406003,7.796448524360089,50,3,-59.67453304875355,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.606275098585275,7.727923057867314,58.08,43.46,58.5,44.67,6.666666666666667,1,1,0,0,0,10,3,1,2495,880021.3551124532,362781.0836715701,236592.921661911,0,3161.185108337421 -10011,12330,22403,22402,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.950099700246536,6.140247810634833,50,-3,106.6409294129642,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.240536349020481,58.5,44.67,58.08,43.46,8.333333333333334,1,1,0,0,0,10,3,1,2495,880021.3551124532,362781.0836715701,236592.921661911,0,3161.185108337421 -10012,12331,22404,-9,22405,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.6728966063182,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,1,0,466,90782.63548731706,0,0,0,1482.505252717814 -10012,12331,22405,-9,-9,-9,1,0,38,1,2,0,2,2,-9,1,4,0,0,0,0,0,-1056.953517787491,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,64.22,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,466,90782.63548731706,0,0,0,1482.505252717814 -10013,12332,22406,22407,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,0,0,0,24,-1,0,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,120,1,1,0,0,0,23.65,27.39,42.97,28.29,1.666666666666667,1,1,0,0,0,5,2,0,1548,0,0,0,0,2948.287449093964 -10013,12332,22407,22406,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,0,0,0,24,1,0,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,28.29,23.65,27.39,3.333333333333333,1,1,0,0,0,5,2,0,1548,0,0,0,0,2948.287449093964 -10014,12333,22408,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-985.164821175562,0,3,3,2019,8,0,0,38,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,8,4,2,1,56,7750.794416265941,0,165847.9992708565,15982.99516129586,467.724880542236 -10015,12334,22409,22410,-9,-9,1,0,20,0,0,0,2,2,0,0,4,0,0,0,1,0,-122.6917347680995,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.06,57.76,8.333333333333334,1,1,0,0,2,5,3,0,1074,-27499.66195172159,0,0,0,942.2359450722691 -10015,12334,22410,22409,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.608019270444079,7.858081391600281,0,1,0,27.52031895951528,-9,-9,-9,2019,6,0,40,0,1,0,0,6.279770252771661,6.279770252771661,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.77,58.57,10,1,1,0,0,0,5,3,0,1074,-27499.66195172159,0,0,0,942.2359450722691 -10016,12335,22411,-9,22412,22413,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.6262295770739,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.2942939624722923,0,48,59,-9,-9,7,1,1,0,0,0,6,3,1,684.6666666666666,215471.9959291951,207462.2318261307,100419.352803174,71263.50258434299,1931.985266451296 -10016,12335,22412,22413,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.337472535991228,7.032962868018197,0,26,1,174.3548202764942,0,1,2,2019,13,2,45,35,1,2,0,3.143753163349456,3.143753163349456,0,0,0,0,0,1,1,0,0,0,43.18,55.57,52,55,8.333333333333334,1,1,0,0,7,6,3,1,684.6666666666666,215471.9959291951,207462.2318261307,100419.352803174,71263.50258434299,1931.985266451296 -10016,12335,22413,22412,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.80549845835575,7.863978429733614,0,7,-1,46.84435704029711,0,-9,-9,2019,9,0,75,80,1,1,0,3.819085219228061,3.819085219228061,0,0,0,0,0,1,1,0,0,0,52,55,43.18,55.57,8,1,1,0,0,1,6,3,1,684.6666666666666,215471.9959291951,207462.2318261307,100419.352803174,71263.50258434299,1931.985266451296 -10016,12336,22414,-9,22412,22413,1,1,19,0,0,0,2,2,-9,0,4,7.039434109554824,7.350225028507143,0,0,0,-970.9642098269426,-9,2,2,2019,10,0,40,0,1,2,1,3.56498715079275,3.56498715079275,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,3,1,1072,-125114.602253089,58822.20929007309,0,0,1332.09876988226 -10017,12337,22415,-9,22418,22416,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.7048375920749,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,297.25,371689.0031148756,271852.9119007291,91130.22740862131,52820.9101159398,2916.380964643799 -10017,12337,22416,22418,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.277137634976635,8.319736335717533,0,16,1,23.95928155563718,0,2,2,2019,5,0,35,35,1,0,0,14.58203944875276,14.58203944875276,0,0,0,0,0,1,1,0,3.002558724874862,0,59.43,58.05,56.35,51.16,8.333333333333334,1,1,0,0,9,4,3,1,297.25,371689.0031148756,271852.9119007291,91130.22740862131,52820.9101159398,2916.380964643799 -10017,12337,22417,-9,22418,22416,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.326384221355,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,297.25,371689.0031148756,271852.9119007291,91130.22740862131,52820.9101159398,2916.380964643799 -10017,12337,22418,22416,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.24666569614642,7.551900655402,0,16,-1,9.193396866263878,0,2,2,2019,6,0,20,16,1,0,0,9.519205367190525,9.519205367190525,0,0,0,0,0,1,1,0,0,0,56.35,51.16,59.43,58.05,6.666666666666667,1,1,0,0,9,4,3,1,297.25,371689.0031148756,271852.9119007291,91130.22740862131,52820.9101159398,2916.380964643799 -10018,12338,22419,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.297860207593,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,37.51,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,142,72234.90608818542,0,0,0,849.3792053665745 -10019,12339,22420,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1049.318151798358,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.65,37.7,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,610,-15068.36891198632,0,0,0,388.7527956912017 -10020,12340,22421,22422,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,0,0,0,28,-8,0,0,-9,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,49,50,8.333333333333334,2,3,0,1,0,8,1,0,443.5,464498.3051916675,42291.52608428302,243359.9636674861,0,2316.044372507141 -10020,12340,22422,22421,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,0,0,0,10,8,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,50,57.06,57.76,7,2,3,0,0,0,8,1,0,443.5,464498.3051916675,42291.52608428302,243359.9636674861,0,2316.044372507141 -10020,12341,22423,-9,22421,22422,1,1,23,0,0,0,2,2,-9,0,5,8.565936257509417,8.479869570344162,0,0,0,-1056.862333725363,0,3,3,2019,8,1,41,54,1,1,1,13.50363682155932,13.50363682155932,0,0,0,0,0,1,0,1,0,0,45.69,39.15,-9,-9,0,2,3,0,0,4,8,5,0,238,217027.2751784592,-26224.18296843766,0,0,1706.748599999574 -10020,12342,22424,-9,22421,22422,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-952.4252690834236,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,58.2,48.99,-9,-9,8.333333333333334,2,3,0,1,0,8,1,0,901,-47378.93560690644,0,0,0,0 -10021,12343,22425,22426,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.855048732760367,7.3841680030982,28,7,199.925610299072,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.83104097803392,7.547885192562533,58.4,48.94,58.15,52.91,10,1,1,0,0,0,12,3,1,518.5,1081850.330183997,126867.9150164735,315856.6931319503,0,3166.443729113364 -10021,12343,22426,22425,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.814575401630569,6.784757006781143,28,-7,-56.81021406215925,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.596086433346399,6.610399093602407,58.15,52.91,58.4,48.94,10,1,1,0,0,0,12,3,1,518.5,1081850.330183997,126867.9150164735,315856.6931319503,0,3166.443729113364 -10022,12344,22427,-9,22430,22429,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.652463619357,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1236.25,255717.865140586,131111.2524387607,287830.0174199493,136273.2330003206,4003.177015906641 -10022,12344,22428,-9,22430,22429,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-949.0886003446757,-9,1,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.2805036386901041,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,1236.25,255717.865140586,131111.2524387607,287830.0174199493,136273.2330003206,4003.177015906641 -10022,12344,22429,22430,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.633015156594324,8.954520447956424,0,22,2,-74.92223045996992,0,2,1,2019,17,5,39,42,1,5,0,20.54646759035462,20.54646759035462,0,0,0,0,0,1,1,0,4.761564080819847,0,31.75,58.32,47.32,29.98,3.333333333333333,1,1,0,0,9,13,4,1,1236.25,255717.865140586,131111.2524387607,287830.0174199493,136273.2330003206,4003.177015906641 -10022,12344,22430,22429,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.211584613378454,8.340021854546569,0,22,-2,25.78306806491785,0,1,3,2019,9,0,28,21,1,0,0,14.64039212155914,14.64039212155914,0,0,0,0,0,1,1,0,3.363312162367675,0,47.32,29.98,31.75,58.32,6.666666666666667,1,1,0,0,9,13,4,1,1236.25,255717.865140586,131111.2524387607,287830.0174199493,136273.2330003206,4003.177015906641 -10023,12345,22431,22432,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,53,4,-54.13896138482487,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,20.07259993706916,0,0,1,1,0,0,0,55.53,25.22,30.94,30.46,6.666666666666667,1,1,0,0,8,5,2,1,402.5,434978.641661928,177432.6242011448,278239.3235566037,0,1789.311324544658 -10023,12345,22432,22431,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.553104972199598,6.821537822763636,53,-4,6.7294581825663,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,42,1,1,0,5.662601648424738,6.38969203448635,30.94,30.46,55.53,25.22,8.333333333333334,1,1,0,0,2,5,2,1,402.5,434978.641661928,177432.6242011448,278239.3235566037,0,1789.311324544658 -10024,12346,22433,22434,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.8016738700549,9.720531897561937,0,24,-1,-71.56528526213495,0,2,2,2019,7,0,50,50,1,0,0,42.16148550255765,42.16148550255765,0,0,0,0,0,0,0,0,1.507497053331518,0,57.06,57.76,49.91,55.35,8.333333333333334,1,1,0,0,11,12,5,1,499.5,1451351.270586683,631695.6510523956,737978.8188515208,0,11574.7460349587 -10024,12346,22434,22433,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.69681157554027,9.627015201858233,0,24,1,92.85956718548186,0,1,2,2019,14,5,31,31,1,5,0,43.96141952957693,43.96141952957693,0,0,0,0,0,0,0,0,1.263571384372173,0,49.91,55.35,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,499.5,1451351.270586683,631695.6510523956,737978.8188515208,0,11574.7460349587 -10024,12347,22435,-9,22434,22433,1,0,20,0,0,0,2,2,-9,0,5,0,6.886452498239002,7.478504604286241,0,0,-981.6920025410446,1,1,1,2019,9,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,6.832923173520926,0,46.59,59.97,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,616,47869.66806177401,0,0,0,-26.29677785912725 -10025,12348,22436,-9,22437,22438,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.0834572904382,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,9,5,1,2519,418407.2062055601,87449.28922549596,272258.1995462464,128196.3740509078,3606.071025515725 -10025,12348,22437,22438,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,6.498586807967007,7.013502870004039,0,4,6,49.81565545549377,0,3,1,2019,6,0,12,8,1,0,0,7.471411205953382,7.471411205953382,0,0,0,0,0,1,1,0,0,0,49.45,51.4,62.27,42.94,8.333333333333334,1,1,0,0,5,9,5,1,2519,418407.2062055601,87449.28922549596,272258.1995462464,128196.3740509078,3606.071025515725 -10025,12348,22438,22437,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,9.264619673745809,9.129446101728936,0,4,-6,4.616885363143107,0,-9,-9,2019,6,0,50,55,1,0,0,24.72886495498214,24.72886495498214,0,0,0,0,0,1,1,0,0,0,62.27,42.94,49.45,51.4,8.333333333333334,1,1,0,0,6,9,5,1,2519,418407.2062055601,87449.28922549596,272258.1995462464,128196.3740509078,3606.071025515725 -10026,12349,22439,22441,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.980997718931272,8.008712601610517,0,7,9,-110.4176658634864,0,-9,-9,2019,23,11,30,30,1,11,0,11.89847212259021,11.89847212259021,0,0,0,0,0,1,1,0,0,0,39.6,49.16,45.49,50.81,8.333333333333334,1,1,0,0,10,13,4,1,1286.25,32493.47773454451,-15561.09477534858,112274.5002096218,82348.78686534079,2573.669073457849 -10026,12349,22440,-9,22439,22441,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.275796412039,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1286.25,32493.47773454451,-15561.09477534858,112274.5002096218,82348.78686534079,2573.669073457849 -10026,12349,22441,22439,-9,-9,1,1,28,1,2,0,3,3,-9,0,3,8.23472788982429,8.189703450411837,0,7,0,122.5223967849019,0,3,3,2019,12,0,39,40,1,0,0,11.69034167982676,11.69034167982676,0,0,0,0,0,1,1,0,0,0,45.49,50.81,39.6,49.16,3.333333333333333,1,1,0,0,8,13,4,1,1286.25,32493.47773454451,-15561.09477534858,112274.5002096218,82348.78686534079,2573.669073457849 -10026,12349,22442,-9,22439,22441,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.283807782719,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1286.25,32493.47773454451,-15561.09477534858,112274.5002096218,82348.78686534079,2573.669073457849 -10027,12350,22443,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.005714639484022,7.835059030825071,0,0,0,-1053.981183621686,0,3,3,2019,25,12,40,39,1,12,0,7.712262270411553,7.712262270411553,0,0,0,0,0,1,1,0,0,0,18.8,60.1,-9,-9,1.666666666666667,1,1,0,0,13,1,4,1,1829,73352.8131788984,19286.18318578934,0,0,934.0846375976944 -10028,12351,22444,22445,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.857535551453667,8.726828829114469,7,-8,-125.5822313960315,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.720065422845037,8.839393548543123,54.96,53.17,63.4,45.23,8.333333333333334,1,1,0,0,0,7,5,1,1290,3871106.827795591,673726.4954873753,1981547.736136664,0,4282.907310295932 -10028,12351,22445,22444,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.226899774279731,6.984447116267154,7,8,83.87334008020586,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.373516521666289,7.239458650415097,63.4,45.23,54.96,53.17,10,1,1,0,0,0,7,5,1,1290,3871106.827795591,673726.4954873753,1981547.736136664,0,4282.907310295932 -10029,12352,22446,22447,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,8.687747114741548,8.524881628379596,0,21,3,-125.5372552247426,0,-9,-9,2019,7,0,20,20,1,0,0,29.12128031231329,29.12128031231329,0,0,0,1.484962783543132,0,1,1,0,6.930787330480234,0,54.69,57.47,31.08,62.12,6.666666666666667,1,1,0,0,7,8,5,1,972.6666666666666,1909102.813023799,516383.5420413802,1058306.494873694,150560.5879772904,5171.815419835569 -10029,12352,22447,22446,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,9.437175479623534,9.385285861726539,0,21,-3,53.37077612721234,0,-9,-9,2019,35,12,90,60,1,12,0,18.24850878481928,18.24850878481928,0,0,0,0,0,1,1,0,6.436336231966516,0,31.08,62.12,54.69,57.47,0,2,3,0,0,10,8,5,1,972.6666666666666,1909102.813023799,516383.5420413802,1058306.494873694,150560.5879772904,5171.815419835569 -10029,12352,22448,-9,22447,22446,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.6303659173379,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,972.6666666666666,1909102.813023799,516383.5420413802,1058306.494873694,150560.5879772904,5171.815419835569 -10030,12353,22449,-9,22451,22452,1,0,42,1,1,0,2,2,-9,0,3,7.737563249938384,7.868005180866026,0,0,0,-845.5245479100274,0,2,1,2019,8,1,48,47,1,1,0,6.484198577589055,6.484198577589055,0,0,0,0,27,1,1,0,0,0,50.53,28.09,-9,-9,6.666666666666667,3,4,0,0,9,6,3,0,179.5,22755.69319043594,-3568.67077508792,0,0,1733.718903498173 -10030,12353,22450,-9,22449,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-911.051070253655,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,3,0,179.5,22755.69319043594,-3568.67077508792,0,0,1733.718903498173 -10030,12354,22451,22452,-9,-9,1,0,76,1,1,0,2,2,-9,0,5,0,0,0,3,-3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.39,58.82,42.9,23.98,8.333333333333334,3,4,0,0,0,6,1,0,923,805304.8672769151,227003.7027485819,230402.6499676706,0,395.3439980578157 -10030,12354,22452,22451,-9,-9,1,1,79,1,1,0,1,1,-9,0,2,0,0,0,3,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,14.30985705241864,0,0,1,1,0,0,0,42.9,23.98,39.39,58.82,5,3,4,0,0,0,6,1,0,923,805304.8672769151,227003.7027485819,230402.6499676706,0,395.3439980578157 -10031,12355,22453,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-931.345597161333,0,2,2,2019,13,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,61.03,23.84,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,198,-104780.398644124,0,0,0,582.9344459807969 -10032,12356,22454,22455,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.011517920944324,7.365971459419501,54,5,-78.15394089734808,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,27.65133297516405,0,0,1,1,0,0,6.957123897214839,56.18,14.34,40.73,58.78,1.666666666666667,1,1,0,0,0,13,3,1,455.5,362447.1538521969,314041.9509717333,0,0,2474.037900126481 -10032,12356,22455,22454,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.63415975157798,6.657828117365615,54,-5,-24.9887091627861,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.79860677241042,40.73,58.78,56.18,14.34,1.666666666666667,1,1,0,0,0,13,3,1,455.5,362447.1538521969,314041.9509717333,0,0,2474.037900126481 -10033,12357,22456,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,4.406960910340906,4.576354618566731,0,0,-889.2830900090329,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.010596278745985,4.680299760611075,54.83,53.05,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,921,99821.66255640949,0,112335.3249048165,82586.41480042867,1350.539281148255 -10034,12358,22457,22458,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.740378301744355,6.216842532218463,6,-2,-57.15831915046678,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,.8012086930729295,6.019294964989259,56.92,33.48,34.64,59.9,8.333333333333334,1,1,0,0,10,5,3,1,810.5,-52991.1607870522,0,0,0,2206.954699238026 -10034,12358,22458,22457,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.240183101571574,7.689537648547529,0,6,2,-132.8758714469719,0,-9,-9,2019,25,12,24,24,1,12,0,8.257299910813673,8.257299910813673,0,0,0,0,14.5,1,1,0,.8525156950372372,0,34.64,59.9,56.92,33.48,6.666666666666667,1,1,0,0,10,5,3,1,810.5,-52991.1607870522,0,0,0,2206.954699238026 -10035,12359,22459,-9,22461,22460,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.2238640978047,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,465.3333333333333,-88148.7618407706,0,0,0,1342.063766941138 -10035,12359,22460,22461,-9,-9,1,1,27,1,1,0,3,3,-9,0,2,7.169312777405643,6.845278745187755,0,2,4,-132.1524934501451,0,-9,-9,2019,7,1,16,16,1,1,0,6.832814228742402,6.832814228742402,0,0,0,0,0,1,1,0,0,0,52.24,50.75,57.65,56.13,8.333333333333334,1,1,0,0,7,13,2,0,465.3333333333333,-88148.7618407706,0,0,0,1342.063766941138 -10035,12359,22461,22460,-9,-9,1,0,23,1,1,0,2,2,-9,0,5,6.317231371805434,5.98494082694482,0,2,-4,22.81156180637966,0,2,-9,2019,6,0,8,8,1,0,0,6.766693390015936,6.766693390015936,0,0,0,0,0,1,1,0,0,0,57.65,56.13,52.24,50.75,8.333333333333334,1,1,0,0,3,13,2,0,465.3333333333333,-88148.7618407706,0,0,0,1342.063766941138 -10036,12360,22462,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1040.842586698798,0,2,2,2019,7,0,0,50,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,1,0,9,6,1,1,399,0,0,0,0,0 -10037,12361,22463,-9,22466,22465,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-878.3640897496192,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,6,5,1,572,215094.4964538577,152623.2176531728,305587.6363677428,179657.1324114114,4346.368131953142 -10037,12361,22464,-9,22466,22465,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.1987557524577,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,6,5,1,572,215094.4964538577,152623.2176531728,305587.6363677428,179657.1324114114,4346.368131953142 -10037,12361,22465,22466,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.108815635926096,8.167451415990532,0,10,0,101.6089445685933,0,2,3,2019,11,0,38,38,1,0,0,7.365860799724207,7.365860799724207,0,0,0,0,0,1,1,0,0,0,51.77,58.57,36.83,56.26,5,3,4,0,0,13,6,5,1,572,215094.4964538577,152623.2176531728,305587.6363677428,179657.1324114114,4346.368131953142 -10037,12361,22466,22465,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,9.021683260653393,9.198142856844354,0,10,0,-64.46844732978251,0,2,2,2019,23,10,55,45,1,10,0,16.90423429758806,16.90423429758806,0,0,0,0,0,1,1,0,0,0,36.83,56.26,51.77,58.57,3.333333333333333,4,2,0,0,13,6,5,1,572,215094.4964538577,152623.2176531728,305587.6363677428,179657.1324114114,4346.368131953142 -10038,12362,22467,22468,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,52,3,157.5133690144062,0,2,3,2019,18,5,0,0,4,5,0,0,0,1,0,5.63836283704067,0,0,1,1,0,5.270287155571607,0,54.56,22.9,53.9,52.09,6.666666666666667,1,1,0,0,0,12,2,1,554,51878.89571891728,40197.13029612465,0,0,1665.761660853251 -10038,12362,22468,22467,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.975440973104608,5.909420689954271,52,-3,-15.17063575572381,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,6.528206272332345,6.372952149283966,53.9,52.09,54.56,22.9,8.333333333333334,1,1,0,0,0,12,2,1,554,51878.89571891728,40197.13029612465,0,0,1665.761660853251 -10039,12363,22469,22470,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.619994444567279,6.550608889589916,0,10,1,-208.012953105605,0,3,3,2019,8,0,10,10,1,0,0,6.457566197213337,6.457566197213337,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,10,13,3,1,470.5,1068040.723668092,940960.7923483058,0,0,1850.001504542474 -10039,12363,22470,22469,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.227764977875106,8.284765412962287,0,10,-1,48.22095874190129,0,2,3,2019,6,0,47,44,1,0,0,7.429077772908854,7.429077772908854,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,1.666666666666667,1,1,0,0,10,13,3,1,470.5,1068040.723668092,940960.7923483058,0,0,1850.001504542474 -10040,12364,22471,22472,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,6.071805461811275,6.2193099367749,36,5,76.06860069360815,0,3,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,6.327451064487454,46.2,22.27,32.82,43.22,3.333333333333333,1,1,0,0,3,9,3,0,388.5,1222728.719164502,636262.0392560057,473021.6696053087,0,1804.231359864173 -10040,12364,22472,22471,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.283900279861536,8.385301164681852,0,36,-5,99.47819071550819,0,3,2,2019,24,10,29,35,1,10,0,15.2766895849074,15.2766895849074,0,0,0,0,74.5,1,1,0,3.163608590994544,0,32.82,43.22,46.2,22.27,1.666666666666667,1,1,0,0,9,9,3,0,388.5,1222728.719164502,636262.0392560057,473021.6696053087,0,1804.231359864173 -10040,12365,22473,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.022352876279697,8.002236072055247,0,0,0,-963.4802433641369,-9,-9,-9,2019,9,0,48,0,1,1,0,6.927933869980895,6.927933869980895,0,0,0,0,0,1,1,0,4.357083929854008,0,52,55,-9,-9,8,1,1,0,0,1,9,4,0,850,-39340.43581804975,75345.84003868126,0,0,787.7095030001308 -10041,12366,22474,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,4.599861198678748,4.734719979852633,0,0,-829.2989365873855,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.461451962331017,4.467405492788346,66.88,18.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2362,-80367.79949795135,0,0,0,742.3965311052992 -10042,12367,22475,-9,22476,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.673024537513,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,402,105265.5225498275,0,0,0,1676.101134667637 -10042,12367,22476,-9,-9,-9,1,0,43,0,1,0,3,3,-9,0,3,7.482191462573542,7.395761971031663,0,0,0,-1033.59274038346,0,2,2,2019,13,1,18,18,1,1,0,9.002520921867612,9.002520921867612,0,0,0,0,0,1,1,0,0,0,39.93,57.19,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,402,105265.5225498275,0,0,0,1676.101134667637 -10043,12368,22477,22478,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.403785599561859,9.222306888302315,0,41,-6,138.8633500457398,0,3,3,2019,10,2,47,47,1,2,0,30.70977188616816,30.70977188616816,0,0,0,0,2,0,0,0,4.737211292182427,0,58.05,54.52,55.96,49.93,10,1,1,0,0,9,8,5,1,446,8091641.868544664,5831758.179667605,0,0,6829.616277868005 -10043,12368,22478,22477,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.356788396957503,8.379281270276914,34,6,-83.93488393220026,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.746285916953486,55.96,49.93,58.05,54.52,10,1,1,0,0,4,8,5,1,446,8091641.868544664,5831758.179667605,0,0,6829.616277868005 -10044,12369,22479,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.629912325193388,8.556714590561135,0,0,0,-991.5374313722951,0,-9,-9,2019,10,0,40,40,1,0,0,11.46577216082568,11.46577216082568,0,0,0,0,0,0,0,0,4.150930012223839,0,43.18,55.57,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,244,-37663.28618706839,7840.265934321331,0,0,1289.151772652064 -10045,12370,22480,-9,22482,22481,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-870.9016143893666,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,1306,213936.0749160622,145302.5874645764,130767.838074724,75413.27754044367,3435.036740760206 -10045,12370,22481,22482,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.386089512068082,8.225904628684251,0,2,1,9.738317427629283,0,3,3,2019,20,6,37,37,1,6,0,11.98500470028038,11.98500470028038,0,0,0,0,0,1,1,0,0,0,39.07,50.55,41.43,56.37,5,2,3,0,0,8,6,4,1,1306,213936.0749160622,145302.5874645764,130767.838074724,75413.27754044367,3435.036740760206 -10045,12370,22482,22481,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,8.175920124552174,8.180526549371544,0,2,-1,-85.51381547259048,0,-9,-9,2019,11,0,35,35,1,0,0,11.79583601649072,11.79583601649072,0,0,0,0,0,1,1,0,0,0,41.43,56.37,39.07,50.55,8.333333333333334,2,3,0,0,4,6,4,1,1306,213936.0749160622,145302.5874645764,130767.838074724,75413.27754044367,3435.036740760206 -10046,12371,22483,-9,22484,22486,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.2559031527734,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,447.4,434528.4521983202,131526.2174407949,153150.4204428959,0,3193.807363586262 -10046,12371,22484,22486,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.589342616315085,8.522325091529561,0,1,-2,98.40232071312755,-9,3,2,2019,12,2,38,0,1,2,0,12.15644390387676,12.15644390387676,0,0,0,0,0,1,1,0,0,0,47.6,47.37,39.1,57.79,8.333333333333334,1,1,0,0,7,4,4,1,447.4,434528.4521983202,131526.2174407949,153150.4204428959,0,3193.807363586262 -10046,12371,22485,-9,22484,22486,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-878.7229914360485,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,447.4,434528.4521983202,131526.2174407949,153150.4204428959,0,3193.807363586262 -10046,12371,22486,22484,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,7.861569371952463,7.593919119000002,0,1,2,3.433261045899743,-9,3,3,2019,9,1,55,0,1,1,0,3.886024671725336,3.886024671725336,0,0,0,0,0,1,1,0,0,0,39.1,57.79,47.6,47.37,10,1,1,0,0,9,4,4,1,447.4,434528.4521983202,131526.2174407949,153150.4204428959,0,3193.807363586262 -10046,12371,22487,-9,22484,22486,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-917.7962408401777,-9,1,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,4,4,1,447.4,434528.4521983202,131526.2174407949,153150.4204428959,0,3193.807363586262 -10046,12372,22488,-9,22484,22486,1,1,20,0,3,0,2,2,-9,0,5,7.648162333400098,7.665658745814905,0,0,0,-1008.579405743009,-9,1,2,2019,13,5,42,0,1,5,1,5.937878362582518,5.937878362582518,0,0,0,0,0,1,1,0,0,0,53.99,53.8,-9,-9,3.333333333333333,1,1,0,0,1,4,3,1,1063,-341972.4649646623,-14208.16379838967,0,0,541.5468987671891 -10047,12373,22489,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.15442714418,6.931981591999521,0,0,-1050.880964003461,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,0,5.928345942181927,0,0,1,1,0,0,7.300236330226138,39.94,34.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,423,408234.275664158,27417.72109841328,295187.4886695335,32977.90511343063,1864.238005896964 -10048,12374,22490,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.089933284456014,5.769375340660253,0,0,-1039.715717417164,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.03385849342001,5.964414438233401,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,380,490900.2632764694,90244.48443941638,240242.4848831692,0,683.9327113860269 -10049,12375,22491,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.68873909755967,7.618688371308785,0,0,-986.7602651570451,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.014507570079943,7.885394038954205,60.12,54.8,-9,-9,10,1,1,0,0,6,13,3,1,1828,430713.5913824297,323175.2893708016,129678.2911976419,0,1373.212303615851 -10050,12376,22492,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.316984005901406,5.26362639378722,0,0,-1004.163530532795,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.268871250291964,50,46,-9,-9,7,1,1,0,0,5,13,2,1,164,323405.2081211359,0,194160.3700354167,0,983.4567526342589 -10051,12377,22493,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,5,0,7.411267036136461,7.482727885688933,0,0,-948.1495080799596,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,7.209911861635608,0,51.73,58.82,-9,-9,10,1,1,0,0,0,7,3,0,3192,18118.85970530933,0,0,0,940.1912471615716 -10052,12378,22494,22495,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.275276680522144,7.69325199743444,19,7,35.30290774528667,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.978922218179285,7.12868185884219,55.79,52.62,59.14,52.5,8.333333333333334,1,1,0,0,6,4,5,1,501.5,2627349.824706474,1054410.747227026,421657.689783651,0,5683.185222432238 -10052,12378,22495,22494,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.901726563668721,8.985758783386117,19,-7,88.91064394357451,0,-9,-9,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,0,9.095478471267745,59.14,52.5,55.79,52.62,10,1,1,0,0,11,4,5,1,501.5,2627349.824706474,1054410.747227026,421657.689783651,0,5683.185222432238 -10053,12379,22496,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.596970582090963,8.247698761474661,0,0,0,-887.2439093887151,0,-9,-9,2019,9,0,42,40,1,0,0,11.13271666611141,11.13271666611141,0,0,0,0,7,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,8,1,4,1,860,-69038.25101117734,23351.7495246053,167371.8548055482,0,1709.24976954689 -10054,12380,22497,22498,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.773351839511919,6.729256121339862,50,2,-82.33617487063781,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.77392630511455,6.632929097712218,55.27,44.81,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,0,259.5,1245237.815974053,656071.9817847218,390820.2897819701,0,2533.272933424672 -10054,12380,22498,22497,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.358926766908744,6.734956424852323,50,-2,81.79422081499075,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.218847155268837,7.52375992729467,57.06,57.76,55.27,44.81,6.666666666666667,1,1,0,0,4,6,3,0,259.5,1245237.815974053,656071.9817847218,390820.2897819701,0,2533.272933424672 -10055,12381,22499,22500,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,7,-4,-69.66998106237095,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.13,49.27,60.56,42.39,8.333333333333334,1,1,0,0,0,12,2,1,540,702568.7719907992,252310.4511901313,354532.8345290346,0,2561.460369652171 -10055,12381,22500,22499,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.936419161113963,6.023454706646492,7,4,-28.61220946709522,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.889165479915772,60.56,42.39,60.13,49.27,10,1,1,0,0,0,12,2,1,540,702568.7719907992,252310.4511901313,354532.8345290346,0,2561.460369652171 -10056,12382,22501,22502,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.907088591064539,7.715778821699057,0,23,-3,-66.09507568434029,0,-9,-9,2019,10,0,42,0,1,0,0,10.55561326918935,10.55561326918935,0,0,0,0,0,1,1,0,0,0,55.76,52.64,55.53,51.55,8.333333333333334,1,1,0,0,8,4,5,1,1528.5,-39946.77666955198,13138.61750926547,128659.3007265896,46475.54443482782,3142.279292761186 -10056,12382,22502,22501,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.68164299900555,8.945586005122827,0,6,3,-75.51580738062509,0,-9,-9,2019,4,0,50,42,1,0,0,11.43412475529147,11.43412475529147,0,0,0,0,0,1,1,0,0,0,55.53,51.55,55.76,52.64,8.333333333333334,1,1,0,0,1,4,5,1,1528.5,-39946.77666955198,13138.61750926547,128659.3007265896,46475.54443482782,3142.279292761186 -10056,12383,22503,-9,22501,22502,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.097259609704,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.38,47.62,-9,-9,6.666666666666667,1,1,0,0,8,4,1,1,746,-110022.0383225303,0,0,0,0 -10057,12384,22504,-9,22507,22505,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.522212290291,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1090,337547.6904020398,25021.09196837819,341430.5901274101,173892.3102057367,4567.521433752454 -10057,12384,22505,22507,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,8.852528543082588,8.53247868449286,6.352394915939552,8,0,18.32205156237266,0,1,2,2019,9,1,40,35,1,1,0,13.74134860462568,13.74134860462568,0,0,0,0,0,1,1,0,6.241753814741621,0,46.37,50.17,44.19,58.01,8.333333333333334,1,1,0,0,10,11,5,1,1090,337547.6904020398,25021.09196837819,341430.5901274101,173892.3102057367,4567.521433752454 -10057,12384,22506,-9,22507,22505,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.863387737754,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,1090,337547.6904020398,25021.09196837819,341430.5901274101,173892.3102057367,4567.521433752454 -10057,12384,22507,22505,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.605930724594073,8.641148803416494,0,8,0,-48.46680402104162,0,-9,-9,2019,18,7,40,35,1,7,0,16.85865391556816,16.85865391556816,0,0,0,0,2,1,1,0,6.15999316397914,0,44.19,58.01,46.37,50.17,8.333333333333334,1,1,0,0,12,11,5,1,1090,337547.6904020398,25021.09196837819,341430.5901274101,173892.3102057367,4567.521433752454 -10058,12385,22508,22509,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.963086059118251,6.95220571513936,10,2,70.89802355792472,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.850399929195517,7.208893460245399,36.79,56.27,23.83,21.84,6.666666666666667,1,1,0,0,10,10,3,1,536,685407.8359793606,401041.1984053997,200000.545443788,0,2705.52717407986 -10058,12385,22509,22508,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.843436205121533,6.660116560981851,10,-2,44.28043820418435,0,2,2,2019,28,11,0,0,4,11,0,0,0,1,0,15.25208491821081,0,0,1,1,0,4.874523224320883,6.616458942955135,23.83,21.84,36.79,56.27,1.666666666666667,1,1,0,0,0,10,3,1,536,685407.8359793606,401041.1984053997,200000.545443788,0,2705.52717407986 -10059,12386,22510,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,6.557294606021166,6.589216369443772,0,0,-1046.000905380514,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,10.75947918754224,0,0,1,1,0,0,6.888559014875328,55,45,-9,-9,8,1,1,0,0,0,2,2,1,386,483449.6341646587,103183.2325876904,276750.066726667,0,1250.69132624509 -10060,12387,22511,-9,22513,22514,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.1876873471746,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,631.75,664863.6062302558,82498.93403481445,782723.1968419109,291948.9690267972,3226.971577344878 -10060,12387,22512,-9,22513,22514,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.217519364539,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,631.75,664863.6062302558,82498.93403481445,782723.1968419109,291948.9690267972,3226.971577344878 -10060,12387,22513,22514,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.925056839520814,8.288598897816323,0,13,-3,109.7714638942889,0,1,1,2019,9,0,30,30,1,0,0,11.74544170587251,11.74544170587251,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.38,44.32,8.333333333333334,3,4,0,0,10,8,4,0,631.75,664863.6062302558,82498.93403481445,782723.1968419109,291948.9690267972,3226.971577344878 -10060,12387,22514,22513,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.285200599481197,8.436334485756763,0,13,3,65.98577592899542,0,2,2,2019,8,0,44,47,1,0,0,10.08094930044902,10.08094930044902,0,0,0,0,0,1,1,0,0,0,50.38,44.32,57.16,56.15,8.333333333333334,3,4,0,0,10,8,4,0,631.75,664863.6062302558,82498.93403481445,782723.1968419109,291948.9690267972,3226.971577344878 -10061,12388,22515,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,6.929495995266355,7.15741879525737,5.295978944055993,0,0,-1107.947214740088,0,1,1,2019,6,0,5,5,1,0,0,29.54094168731212,29.54094168731212,0,0,0,0,0,1,1,0,7.992356765538622,5.340154692060241,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,759,277691.9047951118,186818.0220200034,0,0,2330.33206584976 -10062,12389,22516,-9,22519,22518,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.426103238378,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,761.25,858538.9346546411,744084.306692142,129059.0832309785,15254.93604281063,4256.187840985748 -10062,12389,22517,-9,22519,22518,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.024342998899,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,761.25,858538.9346546411,744084.306692142,129059.0832309785,15254.93604281063,4256.187840985748 -10062,12389,22518,22519,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.274289649234078,8.292123138007179,0,5,9,55.63214749775081,0,2,2,2019,11,0,45,50,1,0,0,10.31936610337153,10.31936610337153,0,0,0,0,0,1,1,0,4.901172032872041,0,55.24,55.87,35.37,48.69,8.333333333333334,1,1,0,0,13,2,5,1,761.25,858538.9346546411,744084.306692142,129059.0832309785,15254.93604281063,4256.187840985748 -10062,12389,22519,22518,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.722021227927431,8.718761666551972,6.604107273527939,5,0,26.9291570739524,0,-9,-9,2019,11,0,55,53,1,0,0,10.30422252920151,10.30422252920151,0,0,0,0,0,1,1,0,7.090726858298156,0,35.37,48.69,55.24,55.87,5,1,1,0,0,9,2,5,1,761.25,858538.9346546411,744084.306692142,129059.0832309785,15254.93604281063,4256.187840985748 -10063,12390,22520,22521,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.627844936666145,7.411424865621479,32,11,-150.9940612120542,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.912862316359182,8.335633565972747,54.72,46.41,54.2,57.49,6.666666666666667,1,1,0,0,1,9,4,1,467.5,1142096.206741131,516954.4662387296,564996.0050857922,0,3062.892109781149 -10063,12390,22521,22520,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.820120825413627,8.028282451833324,0,32,-11,-35.68874260533759,0,3,2,2019,8,0,37,38,1,0,0,8.02161326229335,8.02161326229335,0,0,0,0,0,1,1,0,4.571806286030443,0,54.2,57.49,54.72,46.41,8.333333333333334,1,1,0,0,9,9,4,1,467.5,1142096.206741131,516954.4662387296,564996.0050857922,0,3062.892109781149 -10063,12391,22522,-9,22521,22520,1,1,24,0,0,0,2,2,-9,0,4,7.322890097146937,7.196806985821674,0,0,0,-976.9082790592278,0,2,2,2019,9,1,27,0,1,1,1,4.830785943439906,4.830785943439906,0,0,0,0,0,1,1,0,0,0,35.34,61.2,-9,-9,3.333333333333333,1,1,0,0,1,9,3,1,416,75791.30299369449,40395.37543067829,0,0,707.5731615225245 -10064,12392,22523,22524,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.781835706392834,6.762935008438563,8,1,-17.64240221402915,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.416202185997194,6.438724192846477,53.13,25.94,47.94,48.26,6.666666666666667,1,1,0,0,3,13,2,1,979.5,357889.6888595601,8158.402672361621,83643.09445024471,0,2131.318907319234 -10064,12392,22524,22523,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.423764652681261,5.666468285716367,8,-1,-37.364730080285,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,1.320825440542202,0,0,1,1,0,0,5.444155487843343,47.94,48.26,53.13,25.94,8.333333333333334,1,1,0,0,5,13,2,1,979.5,357889.6888595601,8158.402672361621,83643.09445024471,0,2131.318907319234 -10065,12393,22525,22526,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.356399656426634,8.264235281911374,0,7,-1,50.5985442143383,0,2,3,2019,11,0,40,40,1,0,0,10.87058622247532,10.87058622247532,0,0,0,0,0,0,0,0,0,0,43.42,62.33,62.49,55.09,1.666666666666667,1,1,0,0,9,13,5,1,556.5,856392.8326640688,523515.6877681635,260808.076488403,113370.305796889,5123.957144272566 -10065,12393,22526,22525,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.018176993446618,9.199303145973825,0,7,1,-64.82391223143186,0,2,2,2019,6,0,58,48,1,0,0,18.89838189293806,18.89838189293806,0,0,0,0,0,0,0,0,0,0,62.49,55.09,43.42,62.33,6.666666666666667,1,1,0,0,9,13,5,1,556.5,856392.8326640688,523515.6877681635,260808.076488403,113370.305796889,5123.957144272566 -10066,12394,22527,22528,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.062933528051342,7.313036461937616,0,8,-5,-7.178118614942285,0,-9,-9,2019,20,8,22,22,1,8,0,6.071085520812826,6.071085520812826,0,0,0,0,0,1,0,1,0,0,28.33,62.63,52,54.51,8.333333333333334,1,1,0,1,13,12,2,1,469.3333333333333,43202.87940714558,-50185.90358765196,230281.62057746,166770.8363611143,908.5955488477542 -10066,12394,22528,22527,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,0,0,0,8,5,-98.70428844719542,0,2,2,2019,12,3,0,14,3,3,0,0,0,0,0,0,0,0,1,0,1,.5103932115420197,0,52,54.51,28.33,62.63,3.333333333333333,1,1,1,1,13,12,2,1,469.3333333333333,43202.87940714558,-50185.90358765196,230281.62057746,166770.8363611143,908.5955488477542 -10066,12394,22529,-9,22527,22528,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.267371337447,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,2,1,469.3333333333333,43202.87940714558,-50185.90358765196,230281.62057746,166770.8363611143,908.5955488477542 -10067,12395,22530,22532,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.611765346774202,8.453011329456304,0,16,0,-93.7250821775614,0,3,3,2019,8,0,40,47,1,0,0,14.65077587968862,14.65077587968862,0,0,0,0,0,1,1,0,3.882345749513372,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,5,5,1,780,451831.5764079855,196254.2216222806,387340.2732878573,188794.4547035457,4962.983147163247 -10067,12395,22531,-9,22530,22532,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.813536623072,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,780,451831.5764079855,196254.2216222806,387340.2732878573,188794.4547035457,4962.983147163247 -10067,12395,22532,22530,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.831754290465872,9.460140450186449,0,16,0,-30.83028614308216,0,3,3,2019,18,7,55,48,1,7,0,17.95495070011212,17.95495070011212,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,10,5,5,1,780,451831.5764079855,196254.2216222806,387340.2732878573,188794.4547035457,4962.983147163247 -10067,12395,22533,-9,22530,22532,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.682249301166,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,780,451831.5764079855,196254.2216222806,387340.2732878573,188794.4547035457,4962.983147163247 -10068,12396,22534,22535,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,6.85705960885389,6.923676765333904,0,46,-2,17.83407134341883,0,2,2,2019,3,0,30,30,1,0,0,3.772463386926069,3.772463386926069,0,0,0,0,0,1,1,0,7.985878263155554,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,10,4,1,674,526068.0976025136,0,544494.2207861177,0,4245.703257903358 -10068,12396,22535,22534,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.934697900751028,8.227637059137098,5.327806724552311,46,2,-41.26627082708467,0,3,2,2019,6,0,30,34,1,0,0,15.20515485748687,15.20515485748687,0,0,0,0,0,1,1,0,0,5.192851459808944,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,10,4,1,674,526068.0976025136,0,544494.2207861177,0,4245.703257903358 -10069,12397,22536,-9,22540,22538,1,0,15,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1127.115046093401,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10069,12397,22537,-9,22540,22538,1,1,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1073.388878139045,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10069,12397,22538,22540,-9,-9,1,1,45,1,3,0,2,2,-9,0,3,8.288289195851524,8.476263851853343,0,6,0,-86.62764926555975,0,-9,3,2019,12,0,40,40,1,0,0,10.52742626506123,10.52742626506123,0,0,0,0,0,1,1,0,0,0,40.59,40.76,59.14,52.5,5,1,1,0,0,7,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10069,12397,22539,-9,22540,22538,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-986.9164421562159,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10069,12397,22540,22538,-9,-9,1,0,45,1,3,0,1,1,-9,0,4,8.697438193872619,8.494821332070735,0,6,0,-39.07346183752521,0,2,1,2019,5,0,34,24,1,0,0,17.83566016882034,17.83566016882034,0,0,0,0,0,1,1,0,0,0,59.14,52.5,40.59,40.76,8.333333333333334,1,1,0,0,8,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10069,12397,22541,-9,22540,22538,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.9374464138931,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,503.6666666666667,301356.0268641011,73213.41317615006,368012.4552929781,295943.5384120058,4131.91544616284 -10070,12398,22542,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-922.3724863217936,0,3,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.6,26.75,-9,-9,1.666666666666667,1,1,0,1,0,5,1,0,1863,-57363.81537445308,0,0,0,730.2297204858012 -10070,12399,22543,-9,22542,-9,1,1,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1011.304248338246,1,2,-9,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,42,1,1,0,0,0,48.97,17.24,-9,-9,5,1,1,0,1,2,5,1,0,1620,34363.33477227481,0,0,0,389.2684733147018 -10071,12400,22544,-9,-9,-9,1,1,27,0,0,0,3,3,-9,0,5,8.144029286730621,8.045547171381044,0,0,0,-1047.054082179944,0,-9,-9,2019,6,0,48,55,1,0,0,8.358024965326598,8.358024965326598,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,3,4,0,0,6,8,4,0,293,56132.63855266586,52282.18255469151,0,0,1021.179559547514 -10072,12401,22545,-9,-9,-9,1,0,30,1,4,0,3,3,-9,0,5,0,0,0,0,0,-991.5273374676148,0,2,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,63.48,-9,-9,8.333333333333334,1,1,1,1,0,6,1,0,733.8,63813.13491667018,0,0,0,2061.282812892217 -10072,12401,22546,-9,22545,-9,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-939.303710095663,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,733.8,63813.13491667018,0,0,0,2061.282812892217 -10072,12401,22547,-9,22545,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-935.7486013266672,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,733.8,63813.13491667018,0,0,0,2061.282812892217 -10072,12401,22548,-9,22545,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-917.8062972638661,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,1,0,733.8,63813.13491667018,0,0,0,2061.282812892217 -10072,12401,22549,-9,22545,-9,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-994.8404250575078,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,733.8,63813.13491667018,0,0,0,2061.282812892217 -10073,12402,22550,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.69254246006,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,3,4,0,1,0,8,1,0,89,221392.7152480437,98020.54416161608,0,0,887.2918591213735 -10074,12403,22551,22552,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.954831173747532,8.835786120427437,0,18,-3,58.29890253124205,0,2,3,2019,8,0,40,42,1,0,0,18.318217461463,18.318217461463,0,0,0,0,7,1,1,0,0,0,56.18,53.85,43.96,62.06,8.333333333333334,1,1,0,0,8,2,5,1,341,1435035.896032556,927550.5537443706,477477.7732880081,55138.16807878338,3742.625489661312 -10074,12403,22552,22551,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,8.35941661138623,8.066177860731601,0,19,3,96.95600778575482,0,2,3,2019,11,0,28,24,1,0,0,18.10623452809176,18.10623452809176,0,0,0,0,7,1,1,0,0,0,43.96,62.06,56.18,53.85,8.333333333333334,1,1,0,0,8,2,5,1,341,1435035.896032556,927550.5537443706,477477.7732880081,55138.16807878338,3742.625489661312 -10074,12403,22553,-9,22552,22551,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.455310923008,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,5,1,341,1435035.896032556,927550.5537443706,477477.7732880081,55138.16807878338,3742.625489661312 -10075,12404,22554,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.42547448694397,6.322650273341397,0,0,-938.1259923640747,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,3.756509440581189,0,0,0,1,1,0,4.709678871722617,6.290125815935126,58.5,32.48,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,288,130226.7483396748,169664.4161699356,0,0,1377.778497482039 -10076,12405,22555,22556,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.595217765979347,6.966676180863124,8,4,-13.31700398545527,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,.6840546529140139,0,27,1,1,0,6.568011499232845,6.412344718849757,52.65,40.91,51.42,13.45,8.333333333333334,1,1,0,0,0,9,2,1,448,578009.8414025763,271879.3435987533,205820.406716083,0,1494.06576087957 -10076,12405,22556,22555,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.787759350129928,6.008945202578549,50,-4,45.27897383668473,0,3,3,2019,19,9,0,0,4,9,0,0,0,1,0,2.044467776047389,0,0,1,1,0,1.858398271223127,5.695355985184738,51.42,13.45,52.65,40.91,8.333333333333334,1,1,0,0,4,9,2,1,448,578009.8414025763,271879.3435987533,205820.406716083,0,1494.06576087957 -10077,12406,22557,22561,-9,-9,1,0,32,0,3,0,2,2,-9,1,3,8.023645290276018,7.932509085267131,0,8,-13,49.05104428617277,0,1,1,2019,21,9,44,44,1,9,0,7.898074892178747,7.898074892178747,0,0,0,0,0,1,1,0,0,0,35.02,57.09,48.87,58.55,8.333333333333334,1,1,0,1,10,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10077,12406,22558,-9,22557,22561,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.1671288280151,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10077,12406,22559,-9,22557,22561,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.8360278210256,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10077,12406,22560,-9,22557,22561,1,1,17,0,3,1,2,0,0,0,2,0,0,0,0,0,-1016.765963273552,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.32,56.73,-9,-9,5,1,1,0,0,0,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10077,12406,22561,22557,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,0,0,0,8,13,-4.604208158069995,0,2,2,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,35.02,57.09,6.666666666666667,1,1,1,1,2,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10077,12406,22562,-9,22557,22561,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.503896695346,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,882.6666666666666,579789.3306491403,75938.91406183732,443037.2858287618,273554.003279401,3584.249486968549 -10078,12407,22563,22564,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,7.439293355943816,6.845711708444684,0,8,-7,45.8459714155115,0,2,2,2019,6,0,30,25,1,0,0,4.536315875942955,4.536315875942955,0,0,0,0,0,0,0,0,4.298291164562552,0,54.1,59.11,49.17,58.56,8.333333333333334,1,1,0,0,10,10,3,1,817,597386.5012719155,215181.1556254819,268696.3627522503,0,1414.348332653796 -10078,12407,22564,22563,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.915722276632067,7.31683983648152,6.304696163428855,8,7,31.61349552990518,0,3,3,2019,12,0,30,4,1,0,0,3.29353197015562,3.29353197015562,0,0,0,0,0,0,0,0,5.664124194797029,5.989555774807034,49.17,58.56,54.1,59.11,5,1,1,0,0,10,10,3,1,817,597386.5012719155,215181.1556254819,268696.3627522503,0,1414.348332653796 -10079,12408,22565,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.222730484345876,6.393217952992091,0,0,-979.4768084723019,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.195946273887206,6.155604240142756,56.58,29.43,-9,-9,10,2,3,0,0,0,6,2,1,564,71993.80035058642,150048.3096893634,0,0,1554.684556698356 -10080,12409,22566,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1007.525537355696,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.77,21.33,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,466,421304.4503635833,88653.85897937832,258236.6715190958,0,262.6388789334703 -10081,12410,22567,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.604135038443668,7.705868124573548,0,0,-1012.37058016792,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.860895688982441,7.266963112887832,59.32,46.98,-9,-9,10,1,1,0,0,0,12,3,1,1209,321999.7906786,186959.5701600231,168094.264604669,0,1721.886135866469 -10081,12411,22568,-9,-9,22567,1,1,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-945.3893620966433,0,-9,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,12,2,1,230,-49621.38540681419,0,0,0,525.5383315238311 -10082,12412,22569,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,8.803738971258804,8.743610834405819,6.488395624846057,0,0,-966.2377730543851,-9,3,3,2019,6,0,25,0,1,0,0,23.27252713954376,23.27252713954376,0,0,0,0,0,1,1,0,6.944730235416183,6.598985936523244,64.3,35.24,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,286,720155.7187258514,651759.967855298,240662.5514733178,24664.00739161177,3123.470642114589 -10083,12413,22570,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1086.077602881846,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,39.11942822150193,0,0,1,1,0,0,0,37.01,22.23,-9,-9,5,1,1,0,0,0,12,1,0,385,-193050.5197989758,0,0,0,2601.469908761412 -10084,12414,22571,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,6.977083651485525,7.28525751475415,0,8,-7,-70.06002575119319,0,2,3,2019,12,0,35,40,1,0,0,4.678260499274352,4.678260499274352,0,0,0,0,0,1,1,0,0,0,40.23,36.69,42.48,41.17,6.666666666666667,1,1,0,0,3,2,3,0,385.5,-71821.0638297852,0,0,0,1765.232460696134 -10084,12414,22572,-9,22571,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.145274013067,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,385.5,-71821.0638297852,0,0,0,1765.232460696134 -10084,12415,22573,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.641134860298557,6.549229049482406,0,8,7,35.94210890864661,0,2,1,2019,13,1,16,0,1,1,0,6.625086139726992,6.625086139726992,0,0,0,0,0,1,1,0,0,0,42.48,41.17,40.23,36.69,6.666666666666667,1,1,0,0,1,2,3,0,250,40140.81516289571,-49062.69412877742,0,0,455.2115173813019 -10085,12416,22574,-9,22575,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1034.359851087924,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.98,47.11,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,789,79937.3287523435,0,0,0,2692.073834296228 -10085,12416,22575,-9,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,7.58889611875803,7.574358271250177,6.026431383466606,0,0,-1032.242805135855,0,2,2,2019,12,0,39,36,1,0,0,6.120797000269485,6.120797000269485,0,0,0,0,0,1,1,0,5.786427526361785,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,4,4,2,0,789,79937.3287523435,0,0,0,2692.073834296228 -10085,12416,22576,-9,22575,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.3649042653159,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,789,79937.3287523435,0,0,0,2692.073834296228 -10085,12416,22577,-9,22575,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.5892431048273,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,4,2,0,789,79937.3287523435,0,0,0,2692.073834296228 -10086,12417,22578,22579,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.053567619888193,8.21139862376714,3.82995432281848,3,-7,-172.6688877807755,0,3,3,2019,11,0,38,36,1,0,0,10.70705189382302,10.70705189382302,0,0,0,0,0,1,1,0,4.233977862385255,0,33.24,65.53,42.89,62.6,3.333333333333333,1,1,0,1,11,7,5,1,644.6666666666666,1076085.224191536,528715.0106031348,573256.7144020866,83002.26700683958,5117.579625368026 -10086,12417,22579,22578,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,9.48343539027206,9.362476769862026,0,3,7,52.01271107529116,-9,-9,-9,2019,12,1,43,0,1,1,0,25.34835571636817,25.34835571636817,0,0,0,0,0,1,1,0,0,0,42.89,62.6,33.24,65.53,8.333333333333334,1,1,0,0,0,7,5,1,644.6666666666666,1076085.224191536,528715.0106031348,573256.7144020866,83002.26700683958,5117.579625368026 -10086,12417,22580,-9,22578,22579,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-867.9069775429566,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.4412331336767251,0,41,56.99,-9,-9,5,1,1,0,0,0,7,5,1,644.6666666666666,1076085.224191536,528715.0106031348,573256.7144020866,83002.26700683958,5117.579625368026 -10087,12418,22581,22582,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.451634474331463,8.335525698144268,0,8,-10,-24.65832172100987,0,2,2,2019,9,0,40,40,1,0,0,13.27494258097458,13.27494258097458,0,0,0,0,0,0,0,0,6.635732806180304,0,52.43,55.57,52.37,56.93,8.333333333333334,1,1,0,0,10,4,5,1,438,1161685.702750235,965395.7736206558,0,0,4707.213741248938 -10087,12418,22582,22581,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.507993808322547,8.334743961235024,5.817279222072181,8,10,141.5416226612899,0,-9,-9,2019,7,0,30,30,1,0,0,15.42956457147027,15.42956457147027,0,0,0,0,0,0,0,0,7.819790093568978,0,52.37,56.93,52.43,55.57,8.333333333333334,1,1,0,0,12,4,5,1,438,1161685.702750235,965395.7736206558,0,0,4707.213741248938 -10088,12419,22583,-9,22584,22585,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.027381912963,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,281.75,348238.0289018951,-3195.86891194393,465603.1639309431,159919.230003045,5025.258611790871 -10088,12419,22584,22585,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.184478851093237,7.910549081042658,0,11,-3,75.78256030197228,0,2,2,2019,16,4,32,53,1,4,0,12.1967989668151,12.1967989668151,0,0,0,0,0,0,0,0,.8890285831856486,0,39.99,51.16,41.76,59.08,6.666666666666667,1,1,0,0,11,6,5,1,281.75,348238.0289018951,-3195.86891194393,465603.1639309431,159919.230003045,5025.258611790871 -10088,12419,22585,22584,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.273988007389955,9.542754598421482,0,11,3,-7.654571694046933,0,-9,-9,2019,13,2,48,62,1,2,0,27.87848594529049,27.87848594529049,0,0,0,1.071849833396127,0,0,0,0,4.458095817097588,0,41.76,59.08,39.99,51.16,8.333333333333334,1,1,0,0,11,6,5,1,281.75,348238.0289018951,-3195.86891194393,465603.1639309431,159919.230003045,5025.258611790871 -10088,12419,22586,-9,22584,22585,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.7011588216847,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,281.75,348238.0289018951,-3195.86891194393,465603.1639309431,159919.230003045,5025.258611790871 -10089,12420,22587,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,7.336624035507416,7.228450156022731,0,0,0,-1027.966220184437,-9,-9,-9,2019,11,0,12,0,1,0,0,15.63625052996332,15.63625052996332,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,5,8,3,1,621,-163541.6446392707,2164.403820965003,0,0,1053.302612383682 -10089,12421,22588,-9,-9,-9,1,0,22,0,0,1,1,0,-9,0,5,0,7.967649056625525,8.100372169228496,0,0,-915.6310703957304,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8.293920776124969,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,432,127108.3760373507,-15722.23291038623,0,0,1368.187542834975 -10090,12422,22589,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1076.462679226887,0,3,3,2019,23,8,0,0,4,8,0,0,0,1,6.192635869191705,0,58.87506800019649,0,1,1,0,0,0,16.66,51.03,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,121,-40676.77293835882,0,0,0,1805.969448819033 -10091,12423,22590,22591,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,6.693670357251738,6.613900718409573,0,35,0,129.1540524436005,0,3,3,2019,15,3,47,45,1,3,0,2.389240625114519,2.389240625114519,0,0,0,0,0,0,0,0,5.381195378997668,0,44.98,55.14,52,54.51,6.666666666666667,1,1,0,0,10,7,4,1,738.5,1483380.736308668,654872.6738379957,647070.9636867086,0,3161.334232727662 -10091,12423,22591,22590,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.475167660214366,8.612827827079791,0,35,0,96.21360469747589,0,3,2,2019,10,0,37,37,1,0,0,14.93403007571602,14.93403007571602,0,0,0,0,0,0,0,0,7.3953267506811,0,52,54.51,44.98,55.14,8.333333333333334,1,1,0,0,10,7,4,1,738.5,1483380.736308668,654872.6738379957,647070.9636867086,0,3161.334232727662 -10092,12424,22592,-9,22593,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.2102503550288,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,714.6666666666666,-2959.772341511147,0,0,0,2032.599611852191 -10092,12424,22593,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,0,0,0,0,0,-974.5190843952658,0,2,1,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.71,48.16,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,714.6666666666666,-2959.772341511147,0,0,0,2032.599611852191 -10092,12424,22594,-9,22593,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.078546912806,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,714.6666666666666,-2959.772341511147,0,0,0,2032.599611852191 -10092,12425,22595,-9,22593,-9,1,0,21,0,2,1,2,0,0,0,2,0,0,0,0,0,-971.5693158030223,-9,2,-9,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,42.54,44.57,-9,-9,5,3,4,0,0,3,8,1,0,195,-211732.2612422482,0,0,0,0 -10093,12426,22596,22597,-9,-9,1,0,24,0,0,0,2,2,0,0,5,0,7.273667425105602,7.061132033419625,2,-2,101.7951045625069,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,8.203214509686333,0,43.64,51.95,50.54,62.09,8.333333333333334,1,1,0,0,0,12,5,1,528.5,203710.8638609579,7907.801327810332,252160.3534050313,42431.863396827,4920.130394590156 -10093,12426,22597,22596,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.850643311850398,8.73444661395855,0,2,2,-93.7159012023037,0,-9,-9,2019,6,0,56,57,1,0,0,15.08312340512171,15.08312340512171,0,0,0,0,0,1,1,0,4.377817083618456,0,50.54,62.09,43.64,51.95,10,1,1,0,0,8,12,5,1,528.5,203710.8638609579,7907.801327810332,252160.3534050313,42431.863396827,4920.130394590156 -10094,12427,22598,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.11858468927014,7.906570325612295,0,0,0,-1017.494716992739,0,3,3,2019,9,1,40,40,1,1,0,8.473948341623974,8.473948341623974,0,0,0,0,0,0,0,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,1,12,12,4,1,2083,197475.5959937849,179855.6560610402,0,0,1576.404487077413 -10095,12428,22599,22600,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.444221454070242,7.542782723205296,0,6,-1,-3.811533475791391,0,2,2,2019,13,1,45,45,1,1,0,3.618788296682578,3.618788296682578,0,0,0,0,0,1,1,0,0,0,48.32,50.46,53.1,52.62,8.333333333333334,1,1,0,0,11,13,3,1,746,36401.17050431627,-62630.48074885715,0,0,1775.011446149197 -10095,12428,22600,22599,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.31882590615561,7.561564712663203,0,6,1,-71.08726483870269,0,3,3,2019,6,0,14,0,1,0,0,14.11787440618059,14.11787440618059,0,0,0,0,0,1,1,0,0,0,53.1,52.62,48.32,50.46,8.333333333333334,1,1,0,0,9,13,3,1,746,36401.17050431627,-62630.48074885715,0,0,1775.011446149197 -10095,12429,22601,-9,22600,22599,1,0,22,0,0,0,2,2,-9,0,2,8.020666214047997,8.032387374816292,0,0,0,-1080.509269796858,0,2,2,2019,14,3,10,30,1,3,1,34.69100164103812,34.69100164103812,0,0,0,0,0,1,1,0,0,0,30.61,51.03,-9,-9,5,1,1,0,0,6,13,3,1,1891,-69991.05041430672,43701.21239287603,0,0,1104.893075041905 -10096,12430,22602,22603,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.914347983939335,7.773014108438309,0,16,-1,-3.249793313113029,0,2,1,2019,11,0,37,0,1,0,0,6.046129698764972,6.046129698764972,0,0,0,0,0,0,0,0,2.727739768399341,0,49.46,56.91,54.2,57.49,8.333333333333334,1,1,0,0,6,10,5,0,748,1080233.553894876,807034.4130310332,178150.9342733138,0,3100.972522664016 -10096,12430,22603,22602,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.5555778761076,8.890326690671246,0,17,1,-74.85013672067886,0,2,2,2019,10,1,47,47,1,1,0,12.50166470126473,12.50166470126473,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.46,56.91,8.333333333333334,1,1,0,0,9,10,5,0,748,1080233.553894876,807034.4130310332,178150.9342733138,0,3100.972522664016 -10097,12431,22604,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.262086809488579,7.039988080257293,0,0,-987.9574500473541,-9,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,7.129775876584878,41.33,35.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,694,934756.3908764262,288155.6932660516,627956.8919901949,0,1309.483085827861 -10098,12432,22605,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.078205149980063,7.754708022983379,0,0,0,-1107.520982070621,0,2,2,2019,14,3,40,50,1,3,0,7.922061169467485,7.922061169467485,0,0,0,0,0,0,0,0,0,0,24.02,63.18,-9,-9,3.333333333333333,1,1,0,0,12,7,4,0,2230,670235.701032803,600240.541722343,0,0,1557.130704012368 -10099,12433,22606,22607,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.379801864348606,4.98289696713387,5,8,27.87912762547835,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,0,1,0,5.177460086842828,53,47,49,48,7,1,1,0,0,0,11,2,0,936.5,180919.4754848813,232000.2580700496,91363.50932457825,0,2940.199595733255 -10099,12433,22607,22606,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,5,-8,-40.54430755013771,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,2.326468944051131,0,49,48,53,47,7,1,1,1,0,0,11,2,0,936.5,180919.4754848813,232000.2580700496,91363.50932457825,0,2940.199595733255 -10100,12434,22608,22609,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.371983351695827,6.792771727287324,32,3,46.20300847220639,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.46673583261888,40.04,49.39,55.37,40.83,8.333333333333334,1,1,0,0,10,4,4,1,1920.5,632990.7967742505,472297.2412271758,137424.8562177571,54438.89137194864,3181.996715367401 -10100,12434,22609,22608,-9,-9,1,1,68,0,0,0,3,3,-9,1,3,8.125389266736835,8.390210097870353,7.042750349196708,32,-3,-142.7900086609668,0,2,3,2019,9,1,24,37,1,1,0,18.21089289468687,18.21089289468687,1,0,7.062203870304343,0,0,1,1,0,7.227660688743932,7.073806817610321,55.37,40.83,40.04,49.39,8.333333333333334,1,1,0,0,10,4,4,1,1920.5,632990.7967742505,472297.2412271758,137424.8562177571,54438.89137194864,3181.996715367401 -10101,12435,22610,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.921725697459132,7.348595060117198,0,0,-915.1224281225363,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.0410926065066993,6.692190387724708,56.3,41.63,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,339,155488.4651609603,138090.9222557579,107768.1535421952,0,1138.564572630775 -10102,12436,22611,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.086749944522057,7.71156751300097,7.099202103978032,0,0,-907.7583539057138,0,-9,2,2019,12,0,30,20,1,0,0,6.370082280111138,6.370082280111138,0,0,0,0,0,0,0,0,5.683295015507179,6.946131560552836,48.42,55.98,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,1131,226897.0786431993,83070.16415423923,0,0,666.5624704200524 -10103,12437,22612,22613,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.890453674064066,8.854163233778047,0,5,-1,14.37456456719505,0,-9,2,2019,7,0,38,37,1,0,0,17.49270442136023,17.49270442136023,0,0,0,0,0,0,0,0,0,0,46.21,58.07,20.42,46.66,8.333333333333334,1,1,0,0,8,9,4,0,365,401463.9740961239,224158.145308357,0,0,2926.250953056727 -10103,12437,22613,22612,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,23,1,-70.60054315001736,0,3,2,2019,30,11,0,10,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,20.42,46.66,46.21,58.07,5,1,1,0,0,9,9,4,0,365,401463.9740961239,224158.145308357,0,0,2926.250953056727 -10103,12438,22614,-9,22613,22612,1,1,21,0,0,0,2,2,-9,0,4,7.694309555853734,7.953210842632151,0,0,0,-1051.644001930956,0,2,2,2019,5,0,45,41,1,0,1,6.846828658961063,6.846828658961063,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,1019,-115780.3147575046,0,0,0,1268.593231345821 -10104,12439,22615,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.652310323157094,7.855340259473827,7.335170473184178,0,0,-1030.859136178456,0,2,2,2019,32,12,35,36,1,12,0,6.794079792750547,6.794079792750547,0,0,0,0,0,0,0,0,6.970356759720453,0,30.22,61.83,-9,-9,3.333333333333333,1,1,0,0,9,7,3,1,127,-38475.99440798632,-31561.46613065846,0,0,1329.341837714794 -10104,12440,22616,-9,22615,-9,1,1,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-878.1507394283916,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.2481739673103359,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,103,0,0,0,0,-470.3140759256431 -10104,12441,22617,-9,22615,-9,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1037.242678954268,-9,2,-9,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,0,7,1,1,365,-44038.98227273505,0,0,0,0 -10105,12442,22618,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-978.6460056783858,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.87,47.66,-9,-9,0,1,1,0,0,0,9,1,0,887,-24791.12189653383,62760.06058603297,0,0,1239.177896449662 -10106,12443,22619,22620,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,55,-3,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.3,50.78,48.76,43.78,6.666666666666667,1,1,0,0,0,12,2,1,521.5,302429.0742661314,18789.67774663021,292963.4125970979,27975.00338904688,1358.798267658812 -10106,12443,22620,22619,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,55,3,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,43.78,42.3,50.78,8.333333333333334,1,1,0,0,0,12,2,1,521.5,302429.0742661314,18789.67774663021,292963.4125970979,27975.00338904688,1358.798267658812 -10107,12444,22621,22622,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.724815918866598,6.894275284437828,9,-1,109.1300880112764,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.760982816743612,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,4,11,4,1,516.5,1110579.0989005,764781.6863419975,125804.5706112195,0,3924.788744860871 -10107,12444,22622,22621,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.417952691225924,8.522213438430985,9,1,146.8117706012383,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.528187795386161,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,1,11,4,1,516.5,1110579.0989005,764781.6863419975,125804.5706112195,0,3924.788744860871 -10108,12445,22623,22624,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.116313630321783,6.362132027182374,57,1,26.1522144665906,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,7.805986786661624,0,0,1,1,0,6.561173620131227,6.562700260813215,60.89,42.24,60.13,49.27,10,1,1,0,0,0,10,2,1,1221,44228.68050175138,87807.00657531239,86125.55299748361,0,1676.324310304634 -10108,12445,22624,22623,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,57,-1,-46.80264995794077,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.585336171710133,0,14.5,1,1,0,0,0,60.13,49.27,60.89,42.24,10,1,1,0,0,0,10,2,1,1221,44228.68050175138,87807.00657531239,86125.55299748361,0,1676.324310304634 -10109,12446,22625,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1037.120099214342,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,30.8,21.25,-9,-9,3.333333333333333,1,1,0,0,3,10,1,1,536,-251870.3689857519,0,0,0,919.5260219574923 -10110,12447,22626,-9,-9,-9,1,0,43,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1019.525516046992,0,2,2,2019,32,11,0,19,3,11,0,0,0,0,0,0,0,2,1,1,0,.3079484316227201,0,29.21,19.42,-9,-9,0,1,1,0,1,7,12,1,1,550,-13201.66804666889,0,0,0,776.3402044306088 -10111,12448,22627,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,1,6.82123709892454,7.020236044574887,0,0,0,-806.6977560880777,0,3,3,2019,33,12,26,28,1,12,0,3.846324921398065,3.846324921398065,0,0,0,0,0,1,1,0,0,0,28.67,33.26,-9,-9,1.666666666666667,1,1,0,0,11,13,2,1,724.5,72416.76945616808,-20011.25100220011,0,0,1388.182128258383 -10111,12448,22628,-9,22627,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-984.7767982362116,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,13,2,1,724.5,72416.76945616808,-20011.25100220011,0,0,1388.182128258383 -10112,12449,22629,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-983.0578573520254,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,292,23154.89503115912,0,105149.5633994781,0,1713.314035333077 -10113,12450,22630,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.558335929314692,6.281087031894268,0,0,-1032.179176207035,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.485537581153585,6.455072387453248,51.53,43.93,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,235,57186.18059058313,-65936.0534347059,150409.3959412261,0,593.942615626358 -10114,12451,22631,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,6.838765291860088,6.989055112264403,0,0,0,-1099.940924439315,0,2,-9,2019,14,2,25,0,1,2,0,5.527121747854289,5.527121747854289,0,0,0,0,0,1,1,0,0,0,31.46,57.32,-9,-9,6.666666666666667,3,4,0,0,2,8,2,0,1008,50332.42998445792,-49303.31813182737,0,0,2645.467974272253 -10115,12452,22632,22634,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,8.249603021509001,7.961369013762433,0,8,3,-74.68121025895228,0,2,2,2019,6,0,41,37,1,0,0,11.34776446769863,11.34776446769863,0,0,0,0,0,0,0,0,.1507429200583233,0,57.33,53.46,48.87,58.55,8.333333333333334,1,1,0,0,10,9,4,1,1100,16606.57883511181,-26164.58340614038,0,0,2577.391133172023 -10115,12452,22633,-9,22634,22632,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.7015084368624,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,1100,16606.57883511181,-26164.58340614038,0,0,2577.391133172023 -10115,12452,22634,22632,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.870394348915406,7.97405632140666,0,8,-3,-108.3064783934936,0,-9,-9,2019,10,0,30,38,1,0,0,12.08924217363124,12.08924217363124,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,1100,16606.57883511181,-26164.58340614038,0,0,2577.391133172023 -10116,12453,22635,22637,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.470739102109606,8.230435265437528,0,10,2,31.75452035922392,0,2,2,2019,12,0,45,43,1,0,0,11.01891077456465,11.01891077456465,0,0,0,0,0,1,1,0,6.929238506401473,0,59.29,49.68,53.23,47.51,8.333333333333334,1,1,0,0,11,2,5,1,405,459508.7845751871,47224.53942832921,326098.660600341,91643.64000921696,7045.734622088818 -10116,12453,22636,-9,22637,22635,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.223697491877,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,405,459508.7845751871,47224.53942832921,326098.660600341,91643.64000921696,7045.734622088818 -10116,12453,22637,22635,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.596968845027673,9.777013722255491,0,10,-2,-95.75246178884102,0,3,2,2019,11,0,35,30,1,0,0,48.84428869775421,48.84428869775421,0,0,0,0,0,1,1,0,0,0,53.23,47.51,59.29,49.68,8.333333333333334,1,1,0,0,10,2,5,1,405,459508.7845751871,47224.53942832921,326098.660600341,91643.64000921696,7045.734622088818 -10116,12453,22638,-9,22637,22635,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.3974836778622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,405,459508.7845751871,47224.53942832921,326098.660600341,91643.64000921696,7045.734622088818 -10117,12454,22639,22640,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.076178970843003,7.838037534421237,0,7,8,-94.71520048333595,0,3,3,2019,10,0,40,40,1,1,0,9.517185325646626,9.517185325646626,0,0,0,0,0,1,1,0,8.436256814610955,0,52,47,50.03,52.62,7,1,1,0,0,1,8,4,1,300.5,874128.5063790961,647987.817926965,268770.7039381522,0,4541.62607041618 -10117,12454,22640,22639,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.532895802709707,7.360017762395347,0,7,-8,71.07207895096631,0,3,3,2019,20,9,28,36,1,9,0,7.616468844129253,7.616468844129253,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,8.333333333333334,1,1,0,0,8,8,4,1,300.5,874128.5063790961,647987.817926965,268770.7039381522,0,4541.62607041618 -10118,12455,22641,22642,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.805029533902955,9.06839368589111,0,5,3,-28.8115463864394,0,-9,-9,2019,10,0,50,47,1,0,0,16.15814401747851,16.15814401747851,0,0,0,0,2,0,0,0,6.74040571594581,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,562.5,258224.1076488969,181044.0894031061,0,0,20701.26761078032 -10118,12455,22642,22641,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.717811227021443,6.87345124662866,0,20,-3,6.18247465028023,0,3,3,2019,3,0,60,55,1,0,0,2.002479257218029,2.002479257218029,0,0,0,0,0,0,0,0,9.113009409734376,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,10,5,1,562.5,258224.1076488969,181044.0894031061,0,0,20701.26761078032 -10119,12456,22643,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.430512687545336,7.505954089467336,0,0,-969.643569280994,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.430654092971944,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,401,423576.7536465917,515630.2945016767,0,0,1349.907578234631 -10120,12457,22644,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,7.410736664111233,7.308110339807245,0,0,0,-1001.767904323709,0,1,1,2019,12,0,16,14,1,0,0,11.60572029178064,11.60572029178064,0,0,0,0,0,1,1,0,5.135813745289134,0,61.43,30.11,-9,-9,10,1,1,0,0,8,2,3,1,266,590758.5343017735,549849.1025411533,111811.6939549318,34163.1976011238,1980.747498526715 -10121,12458,22645,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.69057503745638,7.653866441012855,0,0,0,-906.6069196993056,-9,2,3,2019,10,0,38,0,1,0,0,5.921422596028902,5.921422596028902,0,0,0,0,0,0,0,0,0,0,55.44,48.73,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,561,-17812.00382300816,-48265.90852663836,0,0,734.6752103804995 -10122,12459,22646,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.416730937375681,7.782104229481737,0,0,-970.1716175660997,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.075246642682403,0,23.72605950951715,0,1,1,0,0,7.299336713455687,52.72,33.67,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,414,261250.0799902634,82273.11934952784,0,0,2352.128489872825 -10123,12460,22647,22648,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,0,0,60,4,40.50297222593031,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.705537893832304,0,57.16,56.15,51.83,57.2,10,1,1,0,0,0,2,2,1,533,234046.5040580487,150849.275197323,90758.34593033865,0,1610.329340375917 -10123,12460,22648,22647,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,6.598105088631391,6.663954146402886,60,-4,24.95773684374264,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.250812000714206,6.488241000710253,51.83,57.2,57.16,56.15,1.666666666666667,1,1,0,0,0,2,2,1,533,234046.5040580487,150849.275197323,90758.34593033865,0,1610.329340375917 -10124,12461,22649,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1050.581090368392,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.973500431665026,0,55.79,47.77,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,306,175212.2656007625,0,137181.4387691714,0,647.1492079645288 -10124,12462,22650,-9,-9,22649,1,0,39,0,0,0,2,2,-9,0,3,7.336359436672875,7.410027513201942,0,0,0,-1000.126795789214,0,3,3,2019,5,0,33,22,1,0,0,5.735170468810228,5.735170468810228,0,0,0,0,0,1,1,0,5.546065858734561,0,49.51,41.82,-9,-9,0,1,1,0,0,7,13,3,1,649,119164.8363851868,68097.50260975111,0,0,613.9188496162908 -10124,12463,22651,-9,-9,22649,1,1,37,0,0,0,2,2,-9,0,5,8.303578843886701,8.083656711576838,0,0,0,-947.1176470347539,0,-9,3,2019,9,0,37,40,1,0,0,11.57303682274381,11.57303682274381,0,0,0,0,0,1,1,0,4.630104882262792,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,600,36218.6292636123,37641.50909518463,0,0,1296.472606472124 -10125,12464,22652,22653,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,8.346468185832933,8.205899679793733,0,5,1,46.94459643641143,0,2,3,2019,6,0,12,16,1,0,0,26.72851529944718,26.72851529944718,0,0,0,0,0,1,1,0,8.926563520335371,0,57.06,57.76,46.21,58.07,10,1,1,0,0,7,5,5,1,1038.5,1050308.155960201,714313.0172693916,543063.7372987933,15292.7765158564,15799.46305369915 -10125,12464,22653,22652,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.936752861269975,9.575043232335261,0,5,-1,19.29323523242077,0,2,1,2019,6,0,35,30,1,0,0,51.70464548731017,51.70464548731017,0,0,0,0,0,1,1,0,8.779830853622389,0,46.21,58.07,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,1038.5,1050308.155960201,714313.0172693916,543063.7372987933,15292.7765158564,15799.46305369915 -10126,12465,22654,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.997937935281715,8.03749115203596,0,0,-982.0883224389647,0,2,2,2019,7,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,8.588263741138624,8.066118026965757,57.92,51.82,-9,-9,0,1,1,0,0,8,12,4,1,469,606661.9470728975,152428.1311455441,157437.2190167574,0,1650.517776284704 -10127,12466,22655,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.833371473329418,5.650443054611008,0,0,-1133.660917525697,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,6.496933818433662,6.002097888943966,48.37,61.89,-9,-9,5,1,1,0,0,0,9,2,1,74,528354.576872488,-35857.76342897477,283020.4533901326,0,629.1782081836404 -10128,12467,22656,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,6.846015346084803,7.295749233107196,0,0,-928.4952701878375,0,-9,-9,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,0,1,0,1,6.690982428808954,6.451226081642465,49.54,41.21,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,256,565713.8756425243,262984.6875007584,107720.7591623893,619.7445157927459,1521.231154466094 -10128,12467,22657,-9,-9,22656,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-939.2744455840104,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,256,565713.8756425243,262984.6875007584,107720.7591623893,619.7445157927459,1521.231154466094 -10129,12468,22658,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.829873067970773,8.590387222719423,0,0,0,-915.4703291325727,0,-9,-9,2019,10,0,29,6,1,0,0,24.38831729155564,24.38831729155564,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,8.333333333333334,1,1,0,0,8,6,5,0,1406,133307.0776540904,-57213.81110086097,271715.4413703374,18234.86291054567,2651.212326041362 -10130,12469,22659,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,6.418483289701215,6.291217299031651,3.647841348550559,0,0,-971.7825713743076,0,2,1,2019,8,0,7,0,1,0,0,9.578391114120505,9.578391114120505,0,0,0,0,0,0,0,0,3.363413390173678,0,44.83,55.13,-9,-9,3.333333333333333,1,1,0,0,10,10,2,1,450,26188.30059530634,0,0,0,501.1950962422468 -10131,12470,22660,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,2.221590446748301,2.199674080674423,0,0,-1040.765797489648,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.959073108038458,2.425784900594141,54,46,-9,-9,8,1,1,0,0,0,11,2,1,409,116978.0161753399,-24359.54461853176,0,0,342.7561294054593 -10132,12471,22661,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.808547362218189,9.046381563166239,6.73573800106606,0,0,-960.0502948366649,0,3,3,2019,6,0,21,25,1,0,0,34.87968800887872,34.87968800887872,0,0,0,0,0,1,1,0,3.133502585668653,7.246367513975875,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,295,303574.1283599586,172083.1324518626,118968.9010119952,0,4403.576654241599 -10133,12472,22662,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.791010108262283,8.717947343754881,0,0,0,-1177.072669352594,0,2,2,2019,10,0,41,41,1,0,0,16.22275580197871,16.22275580197871,0,0,0,0,0,0,0,0,.917309453893336,0,46.69,49.1,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,214,336760.607683923,257981.883189177,111440.9148769903,111364.0065262276,2420.712908556524 -10134,12473,22663,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.028971823674761,6.40786759968339,0,0,-951.1401554910174,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,38.37469712594499,.3810920865965759,0,1,1,0,6.354697401903953,5.806916622783922,55,45,-9,-9,8,1,1,0,0,2,11,2,1,739,108668.9552960832,100123.8706648528,0,0,957.3456400098356 -10135,12474,22664,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1040.368693061529,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.02,34.01,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,719,170672.4718267319,0,0,0,389.2363589152651 -10136,12475,22665,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.189572898404167,7.853649477333009,0,0,0,-1049.162847026274,0,-9,3,2019,9,0,40,40,1,0,0,7.888607276817265,7.888607276817265,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,10,6,4,1,907,-86632.84471061152,23462.51827819999,0,0,1403.417825796564 -10137,12476,22666,22667,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,6.33920779868442,6.307548850244102,57,-2,-70.74996640062085,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,3.835879365341143,7.956004688096873,0,0,1,1,0,6.034451117207763,6.834800958603367,60.21,34.28,62.67,17.73,8.333333333333334,1,1,0,0,0,9,2,1,1314,659989.7957177449,-67645.90009476722,389683.2350930878,0,2719.840892962908 -10137,12476,22667,22666,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.955888758080945,6.573449342417309,57,2,80.02471005907086,0,1,3,2019,7,0,0,0,4,0,0,0,0,1,0,.8862388242841024,0,0,1,1,0,6.677699997588114,7.158166139669632,62.67,17.73,60.21,34.28,10,1,1,0,0,0,9,2,1,1314,659989.7957177449,-67645.90009476722,389683.2350930878,0,2719.840892962908 -10138,12477,22668,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,8.660642463589916,8.526781504760017,0,0,0,-945.7051829900051,0,2,2,2019,10,0,34,40,1,0,0,18.42960939296647,18.42960939296647,0,0,0,0,0,1,1,0,0,0,47.94,32.53,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,278,158249.5739080986,21663.77146667554,80715.06075867594,64098.1484358376,2043.854971476509 -10139,12478,22669,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1079.54026467941,0,-9,-9,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,46,36,-9,-9,0,1,1,0,0,0,6,1,0,305,108275.5102991276,0,0,0,1952.637367159156 -10140,12479,22670,22671,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,10,-1,-67.29813126232058,0,2,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,.9029178359133814,0,65.96000000000001,21.08,49.6,34.44,8.333333333333334,1,1,0,0,0,7,3,1,476,769860.8604836927,210558.796641181,511770.3687408757,0,2113.037543987756 -10140,12479,22671,22670,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.890373737713509,7.5861526672318,10,1,91.9881817084913,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,7,1,1,0,4.586795402755274,7.706470767464199,49.6,34.44,65.96000000000001,21.08,8.333333333333334,1,1,0,0,0,7,3,1,476,769860.8604836927,210558.796641181,511770.3687408757,0,2113.037543987756 -10141,12480,22672,22673,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,0,0,0,6,-3,52.36117324039981,0,2,2,2019,4,0,0,26,3,0,0,0,0,0,0,0,0,7,0,0,0,3.277198323309296,0,53.51,60.74,57.16,56.15,10,1,1,1,0,6,9,5,1,3252.5,296587.18507108,602430.9932408482,320586.9864896834,623177.3762201461,3949.367714694185 -10141,12480,22673,22672,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.370008120961685,9.008088339309797,0,6,3,11.84019901181991,0,3,2,2019,6,0,47,48,1,0,0,28.0332328091925,28.0332328091925,0,0,0,0,0,0,0,0,3.959888763265098,0,57.16,56.15,53.51,60.74,8.333333333333334,1,1,0,0,7,9,5,1,3252.5,296587.18507108,602430.9932408482,320586.9864896834,623177.3762201461,3949.367714694185 -10141,12481,22674,-9,22672,22673,1,1,21,0,0,0,2,2,-9,0,4,7.955615260381932,7.9478529509457,0,0,0,-1033.17622442329,0,2,2,2019,10,1,46,0,1,1,1,7.253644347061107,7.253644347061107,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,396,109356.8454231206,-107828.2538254904,0,0,1897.4912991637 -10142,12482,22675,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,8.824910772365246,8.865369137394797,0,0,0,-959.8923347403822,0,-9,-9,2019,11,2,40,0,1,2,0,19.7821861428295,19.7821861428295,0,0,0,0,0,0,0,0,0,0,39.06,55.65,-9,-9,5,1,1,0,0,2,5,5,1,258,135002.286656763,122042.2326663752,0,0,2929.991150242366 -10142,12483,22676,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.189306711216854,8.474836054455132,0,0,0,-1099.84503497265,-9,-9,-9,2019,6,0,65,0,1,0,0,6.408936269699627,6.408936269699627,0,0,0,0,0,0,0,0,6.075711384381646,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,7,5,4,1,960,21966.55549650494,0,0,0,1877.087574860278 -10143,12484,22677,22678,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.598706247372419,6.510062181212716,10,1,10.84474173151447,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.621309920184117,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,0,11,2,1,782,472633.9663106888,0,215622.7987934023,0,1335.027168084378 -10143,12484,22678,22677,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,10,-1,-29.01507463314743,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,57.16,56.15,8.333333333333334,1,1,0,0,6,11,2,1,782,472633.9663106888,0,215622.7987934023,0,1335.027168084378 -10144,12485,22679,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.586793398105031,7.433762466946306,0,0,-949.6947183892141,0,3,3,2019,12,5,0,0,4,5,0,0,0,1,2.255575460949368,2.293719740335003,25.49532315497163,0,1,1,0,6.238715911693117,7.751066003351252,42.56,29.42,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,1308,651071.5365173519,635719.5984668665,175921.2713783093,0,1086.704526498147 -10144,12486,22680,-9,-9,-9,1,0,43,0,0,0,3,3,-9,0,1,0,0,0,0,0,-933.3941065432324,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.58,32.26,-9,-9,3.333333333333333,1,1,1,0,0,4,1,1,230,89350.32111966355,0,0,0,847.8377752491122 -10144,12487,22681,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.728266977671185,7.516192669060058,0,0,0,-911.564699760382,-9,-9,-9,2019,21,10,45,0,1,10,0,5.829881768634679,5.829881768634679,0,0,0,0,7,1,1,0,0,0,38.57,58.06,-9,-9,3.333333333333333,1,1,0,0,2,4,3,1,488,777.7864671620773,21379.68516867435,49695.97825605936,-639.5277747781056,1347.171500301327 -10145,12488,22682,22683,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.01243537215216,8.312567342974351,0,4,1,94.56441250741219,0,2,2,2019,10,0,35,36,1,0,0,12.02250437873796,12.02250437873796,0,0,0,0,0,0,0,0,6.506018912269686,0,47.91,57.48,50.91,54.79,8.333333333333334,1,1,0,0,10,13,4,1,414.5,490878.2735352987,331857.4848644175,96951.77838370466,0,2672.795800308805 -10145,12488,22683,22682,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.860426030210531,7.780071128271057,0,4,-1,-6.332886021813011,0,3,3,2019,12,0,39,0,1,0,0,6.27998354452193,6.27998354452193,0,0,0,0,0,0,0,0,0,0,50.91,54.79,47.91,57.48,8.333333333333334,1,1,0,0,10,13,4,1,414.5,490878.2735352987,331857.4848644175,96951.77838370466,0,2672.795800308805 -10145,12489,22684,-9,22683,22682,1,1,28,0,0,0,2,2,-9,0,4,7.989612050965192,7.922019468724485,0,0,0,-1006.163641298782,0,3,2,2019,11,0,36,36,1,0,1,8.100315011892537,8.100315011892537,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1453,-582.846605935476,118412.7668262329,0,0,1101.753493384709 -10146,12490,22685,22686,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,8.603325196049742,8.490039911567028,0,8,5,-85.48306306419248,0,3,2,2019,8,0,40,40,1,0,0,18.40082313406197,18.40082313406197,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,693,1902535.892797443,1463854.619115569,309016.6940719319,0,2747.380166434325 -10146,12490,22686,22685,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,6.820594624378703,6.854294143469651,0,8,-5,-104.6245048364692,0,3,3,2019,6,0,20,20,1,0,0,4.503376189339392,4.503376189339392,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,6,2,4,1,693,1902535.892797443,1463854.619115569,309016.6940719319,0,2747.380166434325 -10146,12490,22687,-9,22686,22685,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-914.2830107430552,-9,2,1,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.14,47.8,-9,-9,3.333333333333333,1,1,1,0,0,2,4,1,693,1902535.892797443,1463854.619115569,309016.6940719319,0,2747.380166434325 -10147,12491,22688,-9,22691,22689,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.28697512159,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,953.25,134335.1608719677,127756.593018457,284451.5902325589,231986.6744294638,3654.350465683921 -10147,12491,22689,22691,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,0,0,0,7,3,93.39186340478604,0,2,2,2019,29,10,0,42,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.39,55.44,54.2,57.49,1.666666666666667,1,1,1,1,7,12,4,1,953.25,134335.1608719677,127756.593018457,284451.5902325589,231986.6744294638,3654.350465683921 -10147,12491,22690,-9,22691,22689,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.946616857037,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,953.25,134335.1608719677,127756.593018457,284451.5902325589,231986.6744294638,3654.350465683921 -10147,12491,22691,22689,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,9.197638440739578,9.354813379330123,0,7,-3,3.1020956139225,0,-9,-9,2019,10,0,42,25,1,0,0,25.3978293705411,25.3978293705411,0,0,0,0,0,1,1,0,3.761658120139318,0,54.2,57.49,26.39,55.44,6.666666666666667,1,1,0,0,8,12,4,1,953.25,134335.1608719677,127756.593018457,284451.5902325589,231986.6744294638,3654.350465683921 -10148,12492,22692,22693,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.439189341222175,8.343614380210139,0,29,0,-66.10749176754895,0,2,2,2019,6,0,40,40,1,0,0,11.81690362495022,11.81690362495022,0,0,0,0,0,0,0,0,7.611164344912334,0,53.38,41.98,53,55,8.333333333333334,1,1,0,0,9,10,5,1,651.5,655538.218181256,86725.79895160906,666133.9625666001,288750.6958792071,11161.23411878561 -10148,12492,22693,22692,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.7048488121555,9.689597721381762,0,6,0,-48.35110447916863,0,-9,-9,2019,9,0,60,60,1,1,0,34.22371096171558,34.22371096171558,0,0,0,0,0,0,0,0,0,0,53,55,53.38,41.98,8,1,1,0,0,1,10,5,1,651.5,655538.218181256,86725.79895160906,666133.9625666001,288750.6958792071,11161.23411878561 -10148,12493,22694,-9,22692,22693,1,1,22,0,0,0,2,2,-9,0,4,8.387131528095836,8.229779863701479,0,0,0,-980.9909759489447,0,3,2,2019,10,0,40,37,1,1,1,11.41127855945839,11.41127855945839,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,4,1,1136,-24050.49893366219,84116.4652562627,58018.26641930149,160284.5202617943,1780.337022395154 -10148,12494,22695,-9,22692,22693,1,1,21,0,0,0,2,2,-9,0,4,8.125079349856618,8.163429587107801,0,0,0,-989.7121720378564,0,3,2,2019,10,0,40,40,1,1,1,7.880192830934672,7.880192830934672,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,4,1,402,52364.74471727415,-101581.3422618254,247105.2118635528,129858.6668274578,722.2320724665884 -10149,12495,22696,-9,-9,-9,1,1,23,0,1,0,2,2,-9,0,5,0,0,0,0,0,-928.7594287773579,1,2,-9,2019,6,0,0,7,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,10,3,4,0,0,2,6,2,1,346,184177.73323137,0,0,0,306.0886698641381 -10149,12496,22697,22698,-9,-9,1,0,70,0,1,0,2,2,-9,0,4,0,0,0,2,-5,-98.14499013559981,-9,-9,-9,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,44.67,38.32,33.85,53.98,0,3,4,0,0,0,6,2,1,330.5,857644.8641649198,690217.6804639077,282204.0021334768,0,2388.940451296779 -10149,12496,22698,22697,-9,-9,1,1,75,0,1,0,3,3,-9,0,3,0,7.384890295764115,7.95160195946773,2,5,77.18075427964841,-9,-9,-9,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,0,1,0,7.584344968972861,33.85,53.98,44.67,38.32,8.333333333333334,3,4,0,0,0,6,2,1,330.5,857644.8641649198,690217.6804639077,282204.0021334768,0,2388.940451296779 -10150,12497,22699,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.217071251979593,7.13121021612535,0,0,-1114.025562526178,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.316898555468844,6.875816295695906,57.06,57.76,-9,-9,10,1,1,0,0,0,6,3,1,179,482222.5763127585,226124.4559772843,142336.0381365688,0,1649.953368857325 -10151,12498,22700,22702,-9,-9,1,1,24,0,1,0,1,1,-9,0,2,0,0,0,2,-2,-92.08200794742432,0,-9,-9,2019,20,8,0,37,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,44.99,52.62,45.14,19.98,3.333333333333333,1,1,1,1,2,4,2,0,2011,79585.31115244313,0,0,0,1621.883980935165 -10151,12498,22701,-9,22702,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.2010198749444,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,2,0,2011,79585.31115244313,0,0,0,1621.883980935165 -10151,12498,22702,22700,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.12483040656609,7.151325188800374,0,2,2,122.3533975482206,0,2,2,2019,19,7,30,12,1,7,0,4.274130928496382,4.274130928496382,0,0,0,0,0,1,0,1,0,0,45.14,19.98,44.99,52.62,1.666666666666667,1,1,0,0,2,4,2,0,2011,79585.31115244313,0,0,0,1621.883980935165 -10152,12499,22703,-9,22704,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.585433326656,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,0,992.6666666666666,162570.607146933,175459.0811384893,74580.79810590106,32104.28381907224,2201.564545565219 -10152,12499,22704,-9,-9,-9,1,0,44,0,2,0,1,1,-9,1,1,0,5.493581194629654,5.675453662971883,0,0,-1089.934102474275,0,2,2,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,5.307616135732093,0,18.77,31.02,-9,-9,0,2,3,0,1,0,5,2,0,992.6666666666666,162570.607146933,175459.0811384893,74580.79810590106,32104.28381907224,2201.564545565219 -10152,12499,22705,-9,22704,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.8544870264072,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,0,992.6666666666666,162570.607146933,175459.0811384893,74580.79810590106,32104.28381907224,2201.564545565219 -10153,12500,22706,22707,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.439470137263336,7.44009766643578,48,-7,-32.76913727988551,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.657243573770923,6.96264631946379,51.38,54.63,46.91,49.9,8.333333333333334,1,1,0,0,0,10,3,1,1442.5,1454238.802633932,580901.3912459748,741527.2316100621,0,2726.017391702665 -10153,12500,22707,22706,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.37468092607434,6.811822710138582,48,7,-22.14668673651144,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,.4350587394331082,0,1,1,0,6.062387787044949,6.369454758747878,46.91,49.9,51.38,54.63,10,1,1,0,0,0,10,3,1,1442.5,1454238.802633932,580901.3912459748,741527.2316100621,0,2726.017391702665 -10154,12501,22708,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.397204256496066,8.157600530018565,5.418127449947147,0,0,-990.878067789106,0,3,3,2019,22,9,30,23,1,9,0,20.09319093196619,20.09319093196619,0,0,0,0,0,1,1,0,5.754725443370366,0,34.87,59.76,-9,-9,5,1,1,0,0,7,10,5,0,1296,846814.7139506338,688951.8513560101,279332.4346804013,56041.27686266,1847.199078518096 -10154,12501,22709,-9,22708,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-913.9628128795506,-9,1,-9,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,.8006347799147592,0,46.48,58.28,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1296,846814.7139506338,688951.8513560101,279332.4346804013,56041.27686266,1847.199078518096 -10155,12502,22710,-9,22711,22713,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1137.485617655326,-9,2,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,1242,460007.825093384,176756.8463742248,203253.690148676,0,1679.621232994499 -10155,12502,22711,22713,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,6.108464139937122,6.301106489972885,0,6,-4,-35.78747529956474,0,3,3,2019,10,0,7,8,1,1,0,7.063047968196285,7.063047968196285,0,0,0,0,0,1,1,0,0,0,51,54,55.53,35.49,8,2,3,0,1,8,6,2,1,1242,460007.825093384,176756.8463742248,203253.690148676,0,1679.621232994499 -10155,12502,22712,-9,22711,22713,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.4734528659285,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,1,1242,460007.825093384,176756.8463742248,203253.690148676,0,1679.621232994499 -10155,12502,22713,22711,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,7.395062107335674,7.291386311252968,0,6,4,-1.239402253751642,0,3,2,2019,12,2,35,40,1,2,0,5.059412731230539,5.059412731230539,0,0,0,0,0,1,1,0,0,0,55.53,35.49,51,54,6.666666666666667,2,3,0,1,6,6,2,1,1242,460007.825093384,176756.8463742248,203253.690148676,0,1679.621232994499 -10155,12503,22714,-9,22711,22713,1,1,24,0,2,0,2,2,-9,0,4,7.683428167352967,7.634632176293415,0,0,0,-925.9351512305411,0,2,1,2019,20,7,45,50,1,7,1,6.684391372352843,6.684391372352843,0,0,0,0,0,1,1,0,0,0,39.38,57.98,-9,-9,3.333333333333333,2,3,0,0,3,6,3,1,2003,-91758.57497391726,47893.57639677775,0,0,656.3440654059696 -10155,12504,22715,-9,22711,22713,1,0,22,0,2,0,2,2,-9,0,3,8.124551100629345,7.904348177512579,0,0,0,-1125.31407120764,0,3,1,2019,12,2,40,35,1,2,1,8.699304579708544,8.699304579708544,0,0,0,0,0,1,1,0,0,0,48.72,38.24,-9,-9,8.333333333333334,2,3,0,0,2,6,4,1,458,8548.39551475454,-90046.48126528878,0,0,1493.317182024909 -10156,12505,22716,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.539637727387709,7.472590792354315,0,0,-1090.474537687148,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.446007857595445,34.65,58.34,-9,-9,5,1,1,0,0,0,13,3,1,435,207825.1084473205,14798.37562631923,132602.3628032138,50956.64273349987,1093.905923544249 -10157,12506,22717,22718,-9,-9,1,1,50,0,3,0,2,2,-9,0,3,8.269666656437016,8.326614882369842,0,23,3,73.44383677399837,0,2,2,2019,8,0,40,48,1,0,0,11.15092647789986,11.15092647789986,0,0,0,0,0,1,1,0,0,0,54.15,48.02,51.83,57.2,8.333333333333334,1,1,0,0,9,6,4,1,1065.5,722317.3964026966,179146.1432744138,480366.5082425195,83087.28360509238,3902.737373582509 -10157,12506,22718,22717,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.560557851278313,8.601079145382348,0,23,-3,81.50665840806118,0,2,3,2019,11,0,42,45,1,0,0,18.23340429866164,18.23340429866164,0,0,0,0,2,1,1,0,0,0,51.83,57.2,54.15,48.02,8.333333333333334,1,1,0,0,9,6,4,1,1065.5,722317.3964026966,179146.1432744138,480366.5082425195,83087.28360509238,3902.737373582509 -10157,12506,22719,-9,22718,22717,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.918744011829,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1065.5,722317.3964026966,179146.1432744138,480366.5082425195,83087.28360509238,3902.737373582509 -10157,12506,22720,-9,22718,22717,1,0,16,0,3,1,2,0,-9,0,3,0,4.656357843089394,4.941780822172875,0,0,-948.4469208599656,-9,1,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.537245433157374,0,41.76,59.08,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,1065.5,722317.3964026966,179146.1432744138,480366.5082425195,83087.28360509238,3902.737373582509 -10158,12507,22721,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.694009878447121,7.554236858879887,0,0,-919.4545279156421,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.833143718256675,8.008519895269286,62.1,51.16,-9,-9,10,1,1,0,0,0,5,3,1,621,473265.5410006142,172810.687053789,177152.2334480243,0,2432.669308271407 -10159,12508,22722,22723,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,9.460752699786122,8.799495460401824,0,3,0,96.65832809506887,0,2,2,2019,30,12,35,40,1,12,0,30.69380339424462,30.69380339424462,0,0,0,0,0,0,0,0,0,0,20.16,55.96,50.26,40.64,6.666666666666667,1,1,0,0,7,7,5,1,406.5,1246910.755813484,761456.8074975326,0,0,3332.192708344674 -10159,12508,22723,22722,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,3,0,59.99605984458633,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.26,40.64,20.16,55.96,10,1,1,0,0,2,7,5,1,406.5,1246910.755813484,761456.8074975326,0,0,3332.192708344674 -10160,12509,22724,22725,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,5.379143644194565,5.562403355714933,8,1,16.87449118846901,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,6.781012319948585,8.23270390333855,62.89943156824158,14.5,1,1,0,7.930119072446371,5.651699048968144,54.7,54.95,53,45,8.333333333333334,2,3,0,0,0,2,2,1,661.5,520255.13822302,264760.6626845205,254001.1575520457,0,2709.027378499589 -10160,12509,22725,22724,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,3.880107617184982,3.974630078646341,8,-1,153.6520894756936,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,6.178694922916905,4.253063639563088,65.5399173379209,0,1,1,0,3.582659878437635,4.120066714933747,53,45,54.7,54.95,8,4,5,0,0,0,2,2,1,661.5,520255.13822302,264760.6626845205,254001.1575520457,0,2709.027378499589 -10161,12510,22726,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1084.696844995957,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,23.66,-9,-9,0,1,1,0,0,0,12,1,0,739,-89780.13569605647,0,0,0,710.643097926132 -10162,12511,22727,22728,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,0,53.17602982032727,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,47.86,53.77,5,1,1,0,0,0,4,2,1,941,253755.9008904046,72427.34530078532,132183.8182238737,0,1460.512092704066 -10162,12511,22728,22727,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.457803767531202,6.410001906047272,7,0,-56.93501829311953,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.252078241584561,6.832077201640438,47.86,53.77,43.71,56.91,6.666666666666667,1,1,0,0,0,4,2,1,941,253755.9008904046,72427.34530078532,132183.8182238737,0,1460.512092704066 -10163,12512,22729,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.679675006540657,8.952324287269644,7.687667927423658,0,0,-862.9585587300712,0,3,3,2019,17,5,40,40,1,5,0,21.89686921991872,21.89686921991872,0,0,0,0,2,1,1,0,0,7.726859313144939,27.98,63,-9,-9,6.666666666666667,1,1,0,0,12,4,5,0,119,1987302.387310939,1624298.542022987,319424.6514100669,0,4068.539817289625 -10164,12513,22730,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.115200849269197,8.209538713260699,0,0,0,-1037.071867610967,0,-9,-9,2019,6,0,40,38,1,0,0,10.12108519271178,10.12108519271178,0,0,0,0,0,0,0,0,0,0,44.23,45.9,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,606,65824.30271779897,28137.94394091398,0,0,1617.230245284739 -10165,12514,22731,22732,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.247618623172696,6.747065934836897,53,7,122.6061540853361,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.724947352099613,6.753778162476856,57.16,56.15,52.82,53.97,10,1,1,0,0,0,4,2,0,775,374200.7171650072,188278.6984377278,237542.6932205285,0,1553.195896042408 -10165,12514,22732,22731,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,6.427591516384595,6.940414597496975,5.734392171162127,53,-7,57.04913595029021,0,3,3,2019,9,0,11,10,1,0,0,8.703974612029674,8.703974612029674,1,0,0,0,0,1,1,0,2.077463156582951,5.983220386457317,52.82,53.97,57.16,56.15,10,1,1,0,0,9,4,2,0,775,374200.7171650072,188278.6984377278,237542.6932205285,0,1553.195896042408 -10166,12515,22733,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.237499305904959,6.534075877484903,6.227888842565809,0,0,-980.276063884378,0,1,3,2019,9,0,16,13,1,0,0,3.919991260754344,3.919991260754344,0,0,0,0,0,1,1,0,6.377230062812471,0,49.42,50.19,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,478,-87517.60424743831,-70725.42483483072,0,0,792.8395360045037 -10166,12515,22734,-9,22733,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.845199235842,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,478,-87517.60424743831,-70725.42483483072,0,0,792.8395360045037 -10167,12516,22735,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1069.636933020751,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.280415896890814,0,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,638,242961.0153088374,0,33687.65794861632,0,811.1532450736099 -10168,12517,22736,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-973.2698710724006,0,3,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,5.41,52.17,-9,-9,3.333333333333333,1,1,0,0,1,11,2,1,159,-9733.243091866974,0,0,0,-171.7455891667215 -10168,12518,22737,-9,22738,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.006435922211,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,479,12535.98078422367,57075.96772904041,0,0,2146.085188600748 -10168,12518,22738,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.198246683623639,8.401950649233616,0,0,0,-963.1075781178236,0,3,2,2019,9,0,30,30,1,0,0,10.52867303129442,10.52867303129442,0,0,0,0,0,1,1,0,0,0,55.78,44.75,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,479,12535.98078422367,57075.96772904041,0,0,2146.085188600748 -10169,12519,22739,22740,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,6.927497584560419,6.712152568497648,41,2,-4.328213525189705,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,6.313327857931456,47.34,44.9,37.83,31.81,8.333333333333334,1,1,1,0,4,13,3,1,390,178439.5054517774,190186.3182249713,182313.1659975062,43434.09161092474,1218.072060210295 -10169,12519,22740,22739,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,6.978115456751609,7.112373043192729,0,41,-2,-52.7698052529119,0,3,3,2019,12,0,25,16,1,0,0,4.936531741719071,4.936531741719071,0,0,0,0,0,0,0,0,0,0,37.83,31.81,47.34,44.9,6.666666666666667,1,1,0,0,10,13,3,1,390,178439.5054517774,190186.3182249713,182313.1659975062,43434.09161092474,1218.072060210295 -10170,12520,22741,22742,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.24967949193672,7.258328416176494,50,2,-23.75249378179417,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.520049118605011,7.387824470057073,59.14,52.5,39.44,41.83,10,1,1,0,0,0,4,2,1,1848,495389.6401510901,387417.7616051266,250235.7138542032,0,1881.035621844806 -10170,12520,22742,22741,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,50,-2,-42.4767139481535,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.793639113995003,0,39.44,41.83,59.14,52.5,5,1,1,0,0,0,4,2,1,1848,495389.6401510901,387417.7616051266,250235.7138542032,0,1881.035621844806 -10171,12521,22743,22744,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.130544622357987,7.031400132431875,6,-1,8.437057084021301,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,1.859235720267466,0,0,1,1,0,6.758704824079545,6.732095663001799,64.23999999999999,34.3,62.49,55.09,10,4,5,0,0,0,2,2,1,509,891378.1510922113,233822.6349549962,295792.9463101691,0,3199.736633384226 -10171,12521,22744,22743,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,5.198962940433824,5.736358548962563,6,1,-12.71362616409019,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.191013278819151,5.511954565134268,62.49,55.09,64.23999999999999,34.3,10,2,3,0,0,0,2,2,1,509,891378.1510922113,233822.6349549962,295792.9463101691,0,3199.736633384226 -10172,12522,22745,22748,-9,-9,1,0,31,0,4,0,2,2,-9,0,4,7.773869433335157,8.02481576429609,0,13,-3,268.6021802470877,0,2,2,2019,6,0,50,42,1,0,0,5.809641722815298,5.809641722815298,0,0,0,0,2,1,1,0,0,0,57.16,56.15,46.08,57.2,10,1,1,0,0,5,9,2,0,919.75,251598.1029069428,22375.79969338036,109080.8001471814,32540.80068638379,2125.358414495211 -10172,12522,22746,-9,22745,22748,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.9685134664901,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,919.75,251598.1029069428,22375.79969338036,109080.8001471814,32540.80068638379,2125.358414495211 -10172,12522,22747,-9,22745,22748,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1120.276575638876,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,919.75,251598.1029069428,22375.79969338036,109080.8001471814,32540.80068638379,2125.358414495211 -10172,12522,22748,22745,-9,-9,1,1,34,0,4,0,2,2,-9,0,3,0,0,0,13,3,-49.80619745720357,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,57.16,56.15,8.333333333333334,1,1,0,0,5,9,2,0,919.75,251598.1029069428,22375.79969338036,109080.8001471814,32540.80068638379,2125.358414495211 -10173,12523,22749,22752,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,6.959122139039996,6.658228076638321,0,7,-5,-93.62064942541133,0,-9,-9,2019,12,0,22,40,1,0,0,5.804957142275941,5.804957142275941,0,0,0,0,0,1,1,0,0,0,56.19,53.98,60.12,54.8,5,1,1,0,0,5,2,3,1,476.2,1622344.928425624,281207.9327654485,235921.6566849524,0,2758.733737664495 -10173,12523,22750,-9,22749,22752,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-792.6485957759572,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,476.2,1622344.928425624,281207.9327654485,235921.6566849524,0,2758.733737664495 -10173,12523,22751,-9,22749,22752,1,0,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1078.96631549934,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,476.2,1622344.928425624,281207.9327654485,235921.6566849524,0,2758.733737664495 -10173,12523,22752,22749,-9,-9,1,1,40,1,3,0,2,2,-9,0,4,8.552295522327654,8.217218524276255,0,7,5,-6.278919741532829,0,2,2,2019,8,0,42,40,1,0,0,9.381581690000544,9.381581690000544,0,0,0,0,0,1,1,0,1.897910336507951,0,60.12,54.8,56.19,53.98,8.333333333333334,1,1,0,0,10,2,3,1,476.2,1622344.928425624,281207.9327654485,235921.6566849524,0,2758.733737664495 -10173,12523,22753,-9,22749,22752,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.428705879641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,3,1,476.2,1622344.928425624,281207.9327654485,235921.6566849524,0,2758.733737664495 -10174,12524,22754,22755,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,0,0,0,13,-6,10.432380202767,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,59.78,55.17,10,2,3,0,0,0,8,2,0,1425,159985.0592990155,0,244821.0748580089,165635.5346735296,1984.41478137673 -10174,12524,22755,22754,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.163864352561019,6.488350893405348,0,13,6,12.68779429059209,0,3,2,2019,6,0,20,24,1,0,0,6.321911132036095,6.321911132036095,0,0,0,0,0,1,1,0,0,0,59.78,55.17,56.96,56.86,10,2,3,0,0,11,8,2,0,1425,159985.0592990155,0,244821.0748580089,165635.5346735296,1984.41478137673 -10175,12525,22756,22757,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.375682819973953,6.502856325183714,7,2,137.4817032035979,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412156480811368,54.37,54.8,62.42,32.41,10,1,1,0,0,1,4,2,1,402,1257582.248970493,388902.8785011823,473512.0907025015,0,1391.931706679305 -10175,12525,22757,22756,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,7,-2,-60.23954688309591,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,54.37,54.8,8.333333333333334,1,1,0,0,2,4,2,1,402,1257582.248970493,388902.8785011823,473512.0907025015,0,1391.931706679305 -10176,12526,22758,-9,22759,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1030.547064452251,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,-9,-9,5,1,1,0,1,0,2,2,1,1638,105460.7937742647,-32652.54920277992,0,0,609.4231833315885 -10176,12526,22759,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,6.813072378552023,7.115216595955003,0,0,0,-893.1470473492593,0,-9,-9,2019,17,5,20,19,1,5,0,6.685078736939976,6.685078736939976,0,0,0,0,0,1,1,0,0,0,43.61,41.22,-9,-9,3.333333333333333,1,1,0,1,5,2,2,1,1638,105460.7937742647,-32652.54920277992,0,0,609.4231833315885 -10176,12527,22760,-9,22759,-9,1,1,20,0,1,0,2,2,-9,0,3,7.796344805160538,7.767923461364616,0,0,0,-890.3893012902806,-9,2,-9,2019,12,0,40,0,1,0,1,7.571541101102682,7.571541101102682,0,0,0,0,0,1,1,0,0,0,42.04,56.46,-9,-9,3.333333333333333,1,1,0,1,1,2,4,1,206,-200770.5981010284,-39429.09731856833,0,0,1520.811519099009 -10177,12528,22761,22763,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.663595232027829,8.501205251472244,0,4,0,127.5390372885142,0,-9,-9,2019,9,0,45,37,1,1,0,12.42675198978766,12.42675198978766,0,0,0,0,0,1,1,0,2.344290064619909,0,52,55,46.99,58.02,7,4,1,0,0,1,5,3,1,1002.666666666667,1001484.69021843,640397.2820583651,291190.5056000091,95663.43105563561,2147.380650418585 -10177,12528,22762,-9,22763,22761,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.784282908678,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1002.666666666667,1001484.69021843,640397.2820583651,291190.5056000091,95663.43105563561,2147.380650418585 -10177,12528,22763,22761,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,0,0,0,4,0,-22.92767795213801,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,6.432471215172659,0,46.99,58.02,52,55,8.333333333333334,1,1,0,0,4,5,3,1,1002.666666666667,1001484.69021843,640397.2820583651,291190.5056000091,95663.43105563561,2147.380650418585 -10178,12529,22764,22765,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,8.130479716025132,7.757496656586673,7,3,-97.09067850656845,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.865080242717002,8.058772806979409,60.05,42.65,44,39.28,8.333333333333334,1,1,0,0,0,4,3,1,768.5,1172544.347705249,343632.2494725505,216421.5085547082,0,1961.965228123745 -10178,12529,22765,22764,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.714391630284118,6.059396311768171,7,-3,-40.67104045477183,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.789764188185132,44,39.28,60.05,42.65,5,1,1,0,0,0,4,3,1,768.5,1172544.347705249,343632.2494725505,216421.5085547082,0,1961.965228123745 -10179,12530,22766,22767,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,7.963823302333314,8.086056752427405,43,6,-27.98861046169684,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.484479129441036,8.043310442448442,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,6,11,4,1,1145.5,1772909.053851375,1004680.001583693,610092.6409735216,0,4495.081826018593 -10179,12530,22767,22766,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.156068885660938,7.664413692147176,47,-6,53.73056789666892,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.583595154897822,7.582316674449071,60.12,54.8,57.06,57.76,10,1,1,0,0,6,11,4,1,1145.5,1772909.053851375,1004680.001583693,610092.6409735216,0,4495.081826018593 -10180,12531,22768,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,7.522290705971185,7.288167699031082,0,0,0,-920.8337307644492,0,3,3,2019,22,10,43,40,1,10,1,5.314927612665619,5.314927612665619,0,0,0,0,0,1,1,0,0,0,25.83,50.93,-9,-9,3.333333333333333,2,3,0,0,3,7,3,1,153,131187.8772240043,81693.136273967,0,0,777.3030803062583 -10181,12532,22769,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.54356199229484,7.584317280689273,5.448769229851321,0,0,-771.5453924799349,0,3,3,2019,13,3,27,27,1,3,0,6.614466972665126,6.614466972665126,0,0,0,0,0,0,0,0,6.54231000910326,0,50.89,39.81,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,398,384197.818786232,0,255433.7909674032,0,939.0107691727339 -10181,12533,22770,-9,22769,-9,1,1,25,0,0,0,2,2,-9,0,3,8.263896510588959,8.330747883504614,0,0,0,-993.8099313771251,0,3,-9,2019,14,2,43,40,1,2,1,9.639424111810515,9.639424111810515,0,0,0,0,0,0,0,0,0,0,25.06,66.61,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,277,-76916.47880734538,33911.49751796635,0,0,1379.571766631697 -10181,12534,22771,-9,22769,-9,1,1,21,0,0,0,2,2,-9,0,4,8.468382210850375,8.224256890859881,0,0,0,-1070.772176788511,0,3,-9,2019,7,0,40,42,1,0,1,13.12920755833614,13.12920755833614,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,268,-165461.3443484545,0,0,0,2121.231288628979 -10182,12535,22772,-9,-9,-9,1,0,48,1,1,0,2,2,-9,0,3,7.872807422219218,7.635968197074058,0,0,0,-1032.806481056051,0,3,3,2019,20,8,47,21,1,8,0,7.198394987205456,7.198394987205456,0,0,0,0,0,1,1,0,0,0,53.83,39.94,-9,-9,5,1,1,0,0,3,2,3,0,1006,279874.9695908995,-45430.48129059849,240819.8306065243,29296.75739158592,1409.780916271598 -10182,12536,22773,-9,22772,-9,1,1,21,1,1,0,2,2,-9,0,3,7.878212179730563,8.202039426803356,0,0,0,-1131.180457357729,0,2,-9,2019,8,1,42,24,1,1,1,7.860083503299462,7.860083503299462,0,0,0,0,0,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,1751,23087.10508089831,2416.800817269147,0,0,2049.892478848225 -10182,12537,22774,-9,22775,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-867.2202239428628,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,774.5,17033.95757942666,0,0,0,1060.666762236283 -10182,12537,22775,-9,22772,-9,1,0,18,1,1,0,2,2,0,0,4,0,0,0,0,0,-917.1564135023672,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.588284755504456,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,774.5,17033.95757942666,0,0,0,1060.666762236283 -10183,12538,22776,-9,22779,22778,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.090856153696,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,932.25,530346.2755243038,21619.37295494014,382687.478497121,23229.52531365947,2960.25967947378 -10183,12538,22777,-9,22779,22778,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.8182090933739,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,4,1,932.25,530346.2755243038,21619.37295494014,382687.478497121,23229.52531365947,2960.25967947378 -10183,12538,22778,22779,-9,-9,1,1,51,0,2,0,3,3,-9,0,4,7.916652176417989,8.272579962974762,0,17,15,38.76510592161336,0,3,3,2019,8,0,48,48,1,0,0,6.694345536141686,6.694345536141686,0,0,0,0,0,1,1,0,0,0,51.24,58.84,38.67,49.48,8.333333333333334,1,1,0,0,11,2,4,1,932.25,530346.2755243038,21619.37295494014,382687.478497121,23229.52531365947,2960.25967947378 -10183,12538,22779,22778,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.028528296779928,8.248908116437203,0,17,-15,92.43152239383552,0,2,2,2019,15,3,33,44,1,3,0,11.19241810810307,11.19241810810307,0,0,0,0,7,1,1,0,0,0,38.67,49.48,51.24,58.84,6.666666666666667,1,1,0,0,11,2,4,1,932.25,530346.2755243038,21619.37295494014,382687.478497121,23229.52531365947,2960.25967947378 -10184,12539,22780,22781,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,35,-1,99.35469601500988,0,2,2,2019,24,12,0,5,3,12,0,0,0,0,0,0,0,0,1,1,0,4.890120165743575,0,33.9,23.58,29.15,63.36,3.333333333333333,1,1,0,0,11,9,5,1,472,1946969.758984281,1580765.285837836,446392.229841811,56488.64718498443,3668.373733189896 -10184,12539,22781,22780,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.175612698593868,8.968283888356183,0,35,1,50.68440219651561,0,2,1,2019,15,3,48,45,1,3,0,25.43403129886567,25.43403129886567,0,0,0,0,0,1,1,0,7.152510781229147,0,29.15,63.36,33.9,23.58,6.666666666666667,1,1,0,0,9,9,5,1,472,1946969.758984281,1580765.285837836,446392.229841811,56488.64718498443,3668.373733189896 -10185,12540,22782,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1023.012529880049,0,3,3,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.13,51.16,-9,-9,1.666666666666667,1,1,1,1,2,13,1,0,1506,76313.61229970265,94396.36395155729,99076.5817959384,0,812.104908936519 -10186,12541,22783,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,0,0,0,0,-952.6103459941884,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.208712870965917,0,52.5,51.63,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,436,-103813.3784080407,0,0,0,629.9353435779663 -10187,12542,22784,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.086224454924274,8.395717645177156,0,0,0,-914.5377076064126,0,1,1,2019,6,0,50,0,1,0,0,7.237532820858666,7.237532820858666,0,0,0,0,0,0,0,0,6.517086107505952,0,57.06,57.76,-9,-9,10,1,1,0,0,6,10,4,1,1372,-134763.7069287672,12520.36271725703,0,0,2011.292632958672 -10188,12543,22785,22786,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.510981934292715,8.688231008830483,0,2,-2,48.39422612059036,0,-9,-9,2019,9,0,35,40,1,0,0,16.71006787382087,16.71006787382087,0,0,0,0,0,0,0,0,4.15229238037798,0,57.06,57.76,58.62,36.17,10,1,1,0,0,10,11,4,1,399.5,15730.09966553709,31341.91963001862,0,0,3248.001685450254 -10188,12543,22786,22785,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.69757436038874,7.547316766850751,0,2,2,26.54421447350481,0,2,3,2019,8,0,40,40,1,0,0,5.542053033960609,5.542053033960609,0,0,0,0,2,0,0,0,6.481114526095221,0,58.62,36.17,57.06,57.76,8.333333333333334,1,1,0,0,10,11,4,1,399.5,15730.09966553709,31341.91963001862,0,0,3248.001685450254 -10189,12544,22787,22788,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,7.850530600585827,7.795293149111505,0,3,2,-9.947622813499041,0,3,2,2019,17,5,50,18,1,5,0,4.253556149727632,4.253556149727632,0,0,0,0,2,0,0,0,0,0,36.18,48.3,24.38,47.19,5,2,3,0,0,8,2,3,0,329,-15476.64227976341,71211.18183078672,155272.6723753281,85435.35559054714,1001.810269817126 -10189,12544,22788,22787,-9,-9,1,0,29,0,0,0,2,2,-9,0,2,0,0,0,3,-2,22.79202634922594,-9,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,5.48,0,0,0,0,0,24.38,47.19,36.18,48.3,1.666666666666667,2,3,0,0,0,2,3,0,329,-15476.64227976341,71211.18183078672,155272.6723753281,85435.35559054714,1001.810269817126 -10190,12545,22789,22790,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,8.906478785441934,8.543308089727262,0,10,-1,99.67311631604839,-9,2,2,2019,14,2,49,0,1,2,0,15.65494841633409,15.65494841633409,0,0,0,0,0,1,1,0,0,0,35.36,46.19,55.96,49.93,6.666666666666667,1,1,0,0,11,4,5,0,607,672829.2721019854,169049.9553319613,683863.5511186844,157113.8647262618,5253.613743041778 -10190,12545,22790,22789,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,9.238485894827516,8.871238918012494,0,10,1,-20.03878014523472,-9,3,1,2019,8,0,43,0,1,0,0,21.97090742532654,21.97090742532654,0,0,0,0,0,1,1,0,0,0,55.96,49.93,35.36,46.19,8.333333333333334,1,1,0,0,11,4,5,0,607,672829.2721019854,169049.9553319613,683863.5511186844,157113.8647262618,5253.613743041778 -10190,12545,22791,-9,22789,22790,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-906.1752170986723,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,0,4,5,0,607,672829.2721019854,169049.9553319613,683863.5511186844,157113.8647262618,5253.613743041778 -10190,12546,22792,-9,22789,22790,1,0,18,0,2,0,2,2,1,0,3,7.143078380427225,6.688279199916694,0,0,0,-1028.381306600805,-9,1,2,2019,5,0,36,0,1,0,1,3.665191742512052,3.665191742512052,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,392,-106378.5825589382,0,0,0,639.9813626609042 -10191,12547,22793,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3437143176668,8.284961108686613,0,0,0,-888.2749286510455,0,3,-9,2019,3,0,38,38,1,0,0,12.48412041674169,12.48412041674169,0,0,0,0,0,1,1,0,7.732755738187156,0,62.66,52.4,-9,-9,10,3,4,0,0,8,8,4,1,2166,547109.8952376767,107213.6875308194,0,0,2627.194637306518 -10192,12548,22794,22795,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,40,-1,-6.158095717356391,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.612745942975382,0,61.68,47.24,55.44,52.99,8.333333333333334,1,1,0,0,7,4,3,1,467.5,1301056.263910757,398706.6487088292,228317.9276866511,0,1877.759993083092 -10192,12548,22795,22794,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.922464780618057,7.936733697146039,40,1,173.0602424168973,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.11503060258456,8.022274900729297,55.44,52.99,61.68,47.24,8.333333333333334,1,1,0,0,6,4,3,1,467.5,1301056.263910757,398706.6487088292,228317.9276866511,0,1877.759993083092 -10193,12549,22796,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.780715982541187,8.930715504661855,7.550666906792016,0,0,-1065.197971351314,0,2,2,2019,14,3,47,0,1,3,0,15.17296496725809,15.17296496725809,0,0,0,0,0,0,0,0,4.695131693451209,7.949451743943242,43.32,63.94,-9,-9,5,1,1,0,0,9,7,5,1,2209,726535.8694716603,268927.3933776791,454102.3576910528,25203.88298693789,3367.725609239269 -10194,12550,22797,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.406712115754544,7.938746351509595,0,0,0,-961.4083222032245,0,2,1,2019,7,0,35,30,1,0,0,10.00554194373857,10.00554194373857,0,0,0,0,7,0,0,0,0,0,56.5,37.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,529,157110.8643269317,10491.31525275114,30287.07071121763,20508.82364167937,948.4427912012936 -10195,12551,22798,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.960703507314923,5.086418734826414,0,0,-1021.850341733762,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.801948278497525,59.54,46.05,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,198,46676.99734693239,24075.63387782386,0,0,796.1449075842369 -10196,12552,22799,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1009.921516074807,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.010354375842117,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,323,391989.7273225709,0,230965.970907854,0,1778.160147967213 -10197,12553,22800,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.693596518701074,7.596275038987265,0,0,0,-1027.004493350331,0,2,2,2019,7,0,27,27,1,0,0,7.319799684171203,7.319799684171203,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,464,-38026.25403886857,39337.62903212779,0,0,1362.663253859641 -10197,12554,22801,-9,22800,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1013.145558503673,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,380,-39711.04110797671,0,0,0,139.4799005793425 -10198,12555,22802,22803,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-5,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.943284261304498,0,50,46,51.34,33.97,7,4,5,0,0,0,8,1,1,354,-23075.53717366698,0,0,0,1935.590019613002 -10198,12555,22803,22802,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,9,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4099061816957542,0,51.34,33.97,50,46,8.333333333333334,1,1,0,0,0,8,1,1,354,-23075.53717366698,0,0,0,1935.590019613002 -10199,12556,22804,22805,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.423162009814714,4.421356519939366,49,-2,114.4116654661569,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.231878978403253,4.523852832918062,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,639,589670.3627091355,335510.0504292925,255950.8762026952,0,2230.017686449477 -10199,12556,22805,22804,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.183001431726884,7.168706841353359,49,2,10.49280626105718,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.222105480588886,7.456654993897427,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,5,1,2,1,639,589670.3627091355,335510.0504292925,255950.8762026952,0,2230.017686449477 -10200,12557,22806,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,6.884316979647901,7.248728302795777,5.676152484162535,0,0,-1087.570485324789,0,3,3,2019,14,4,17,16,1,4,0,8.577723460171669,8.577723460171669,0,0,0,0,0,1,1,0,5.802924162812342,0,45.15,51.17,-9,-9,5,1,1,0,0,11,6,2,1,155.5,58058.21622575632,61117.05155160306,137740.9298648741,56394.87876313693,1418.721792216645 -10200,12557,22807,-9,22806,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.5989937465098,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,1,155.5,58058.21622575632,61117.05155160306,137740.9298648741,56394.87876313693,1418.721792216645 -10201,12558,22808,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.140092930988,0,2,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,44.84,24.08,-9,-9,5,1,1,0,0,0,12,1,0,208,106320.753525661,0,0,0,639.0209223238678 -10202,12559,22809,22811,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,35,-3,0,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.94,58,38.67,20.47,6.666666666666667,2,3,0,1,0,8,2,1,171.3333333333333,-108718.0741580338,0,0,0,1344.703596319294 -10202,12559,22810,-9,22809,22811,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1006.257055874737,-9,3,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.24,59.44,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,171.3333333333333,-108718.0741580338,0,0,0,1344.703596319294 -10202,12559,22811,22809,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,35,3,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.67,20.47,43.94,58,5,2,3,0,0,0,8,2,1,171.3333333333333,-108718.0741580338,0,0,0,1344.703596319294 -10202,12560,22812,-9,22809,22811,1,1,28,0,0,0,2,2,-9,0,4,8.494301481313901,8.30304648108711,0,0,0,-998.6437397813098,0,3,2,2019,9,1,45,40,1,1,1,10.44255402545179,10.44255402545179,0,0,0,0,0,1,1,0,0,0,42.84,55.93,-9,-9,8.333333333333334,2,3,0,0,7,8,4,1,1123,227187.8328956852,6582.290617279979,0,0,1514.201992374794 -10202,12561,22813,-9,22809,22811,1,1,23,0,0,0,2,2,-9,0,4,8.535160878441257,8.321198168630865,0,0,0,-985.7168148987755,0,3,2,2019,10,1,37,36,1,1,1,13.46352124843104,13.46352124843104,0,0,0,0,0,1,1,0,3.743412463051041,0,48.81,59.91,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,1225,-67430.67284669576,-30011.96751251451,0,0,1084.338166637899 -10203,12562,22814,22815,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,50,-1,-5.735144181120591,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,46.41,37.03,61.31,30.1,8.333333333333334,1,1,0,0,3,1,2,0,1199,-83042.77165763191,0,105553.941242126,0,1464.007478883382 -10203,12562,22815,22814,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,4.211737322722899,3.87559816843592,50,1,-46.23128104159398,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,1.295395959918083,0,0,1,1,0,3.657152462966907,4.111633872377665,61.31,30.1,46.41,37.03,8.333333333333334,1,1,0,0,3,1,2,0,1199,-83042.77165763191,0,105553.941242126,0,1464.007478883382 -10204,12563,22816,22817,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,39,-13,-85.77644274783287,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.4,57.72,62.42,45.64,10,1,1,0,0,5,10,2,1,472.5,495867.7777108393,201052.2524122059,171725.1500715657,0,1461.944651516547 -10204,12563,22817,22816,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.856822341957391,5.690223836449438,2,13,-22.63705728425484,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.660836469697255,62.42,45.64,41.4,57.72,10,1,1,0,0,0,10,2,1,472.5,495867.7777108393,201052.2524122059,171725.1500715657,0,1461.944651516547 -10205,12564,22818,22819,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.699197511450548,8.647725723929563,0,4,-4,-56.52477333989825,0,-9,-9,2019,6,0,50,52,1,0,0,12.46903393920289,12.46903393920289,0,0,0,0,0,0,0,0,0,0,54.74,57.22,51.19,49.37,8.333333333333334,1,1,0,0,5,5,5,1,487.5,843798.492394831,332159.1603402488,149066.7498488006,121301.5544969669,3516.306890267698 -10205,12564,22819,22818,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.51823834561046,8.734540705927294,0,4,4,64.23212681538564,0,1,2,2019,8,0,46,47,1,0,0,11.59864319165341,11.59864319165341,0,0,0,0,0,0,0,0,0,0,51.19,49.37,54.74,57.22,8.333333333333334,1,1,0,0,7,5,5,1,487.5,843798.492394831,332159.1603402488,149066.7498488006,121301.5544969669,3516.306890267698 -10206,12565,22820,-9,22822,22821,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-937.8665070781353,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,1,1360.666666666667,122270.0559424335,136402.664300134,0,0,2926.769423368542 -10206,12565,22821,22822,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,8.884902004821015,8.754541267097327,0,30,0,51.52559831142033,0,2,1,2019,15,5,40,40,1,5,0,18.79254679820828,18.79254679820828,0,0,0,0,2,1,1,0,3.077668720020941,0,38.81,62.11,58.07,46.29,6.666666666666667,1,1,0,0,12,6,4,1,1360.666666666667,122270.0559424335,136402.664300134,0,0,2926.769423368542 -10206,12565,22822,22821,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,6.819839601235222,7.125159640324187,0,30,0,-43.80896710219626,0,2,2,2019,12,0,6,5,1,0,0,20.96998731881517,20.96998731881517,0,0,0,0,2,1,1,0,.0679510343540459,0,58.07,46.29,38.81,62.11,8.333333333333334,1,1,0,0,9,6,4,1,1360.666666666667,122270.0559424335,136402.664300134,0,0,2926.769423368542 -10207,12566,22823,22824,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,8.209353148933605,8.641782314348502,6.730450279337973,48,5,50.52477329589913,0,3,3,2019,7,0,40,50,1,0,0,9.50667525789917,9.50667525789917,0,0,0,0,0,1,1,0,6.580850421677806,6.660927651972687,54.74,57.22,57.33,53.46,0,1,1,0,0,9,8,4,1,689,-39030.36154259703,51361.20091786881,0,0,3209.664180752482 -10207,12566,22824,22823,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,49,-5,-67.57005660938268,0,3,3,2019,6,0,0,28,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.74,57.22,1.666666666666667,1,1,0,0,4,8,4,1,689,-39030.36154259703,51361.20091786881,0,0,3209.664180752482 -10208,12567,22825,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.932420978337358,8.952950421723605,0,0,0,-996.0018308301815,0,-9,-9,2019,6,0,40,37,1,0,0,19.31818203262267,19.31818203262267,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,11,5,0,182,282599.4701188477,165106.7873155369,211562.3519146274,112811.5881364216,2648.216203217879 -10209,12568,22826,-9,22827,-9,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,0,0,-972.204739216191,0,3,-9,2019,17,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,-9,-9,5,1,1,1,1,4,4,1,0,524,6144.940744878812,0,0,0,462.0425922141064 -10209,12569,22827,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.518142184340779,7.463551459735101,0,0,0,-961.3238684268715,0,-9,-9,2019,12,0,30,19,1,2,0,7.493878650206038,7.493878650206038,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,1,5,4,3,0,576,397393.88387715,145574.6103030049,252787.4047651782,0,1365.084568596904 -10209,12570,22828,-9,22827,-9,1,1,20,0,0,0,2,2,-9,1,5,0,0,0,0,0,-938.0130023881794,0,3,-9,2019,17,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,20.27,70.98,-9,-9,5,1,1,1,1,0,4,1,0,349,67367.0015931557,0,0,0,326.6832061727433 -10210,12571,22829,22830,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.790828489259901,8.717111975638749,0,1,6,-41.29342746016709,-9,3,2,2019,7,0,38,0,1,0,0,22.59209888887457,22.59209888887457,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.38,46.77,8.333333333333334,2,3,0,0,9,9,5,1,578,8051.16579342226,-17939.23922362732,275570.4808728551,216310.2256891784,4036.334289888664 -10210,12571,22830,22829,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.178042618233681,8.516438243372104,0,1,-6,-133.9812162757677,-9,2,1,2019,6,0,38,0,1,0,0,11.50947407417164,11.50947407417164,0,0,0,0,0,0,0,0,0,0,54.38,46.77,54.1,59.11,8.333333333333334,2,3,0,0,5,9,5,1,578,8051.16579342226,-17939.23922362732,275570.4808728551,216310.2256891784,4036.334289888664 -10211,12572,22831,22833,-9,-9,1,0,36,0,1,0,3,3,-9,1,2,7.091192837125837,6.964671945841824,0,1,0,-106.6258147697507,-9,-9,-9,2019,13,1,20,0,1,1,0,6.823872105170396,6.823872105170396,0,0,0,0,0,1,1,0,0,0,41,41,36.79,45.74,5,1,1,0,0,5,6,2,0,468.3333333333333,213403.5952060444,170730.3195953473,144250.0689643514,74728.26792003569,3164.818665370567 -10211,12572,22832,-9,22831,22833,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.137488228616,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,468.3333333333333,213403.5952060444,170730.3195953473,144250.0689643514,74728.26792003569,3164.818665370567 -10211,12572,22833,22831,-9,-9,1,1,45,0,1,0,3,3,-9,1,2,0,0,0,1,9,45.68246998142472,-9,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,36.79,45.74,41,41,3.333333333333333,1,1,1,0,0,6,2,0,468.3333333333333,213403.5952060444,170730.3195953473,144250.0689643514,74728.26792003569,3164.818665370567 -10211,12573,22834,-9,22831,22833,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1099.194437451497,-9,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,2.534662422151899,0,47.15,55.39,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,766,63659.07101918224,0,0,0,932.7973099277766 -10212,12574,22835,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.175998387322684,6.539327941843736,0,0,-1053.554195352042,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.405172645021771,54.38,36.04,-9,-9,5,1,1,0,0,0,5,2,1,982,311256.0071900212,189025.7197511123,129892.9904062638,0,848.5827525877912 -10213,12575,22836,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.613570277652972,8.332979852275045,6.696081413917883,0,0,-1030.235230586253,0,3,3,2019,8,0,60,80,1,0,0,4.443727831056645,4.443727831056645,0,0,0,0,0,1,1,0,0,7.121768017870676,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,3491,699506.6978712012,444902.3070111235,324804.7728212569,0,2079.690880253856 -10214,12576,22837,22838,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.286001509180331,8.448752036925061,42,8,-10.5965146246813,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.695458730001718,8.770849022589626,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,0,9,4,1,932,1724254.401798368,777563.0196509382,548546.0293176263,0,4249.019601795574 -10214,12576,22838,22837,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,42,-8,-42.52804213921404,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.38791771066342,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,4,9,4,1,932,1724254.401798368,777563.0196509382,548546.0293176263,0,4249.019601795574 -10215,12577,22839,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.987705881618361,5.825526521935267,0,0,-918.1534613591299,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.153118291639002,5.427953962248623,43.93,31.44,-9,-9,5,1,1,0,0,0,4,2,0,2508,90559.67427807386,78509.00055694576,0,0,1107.763945169292 -10216,12578,22840,-9,22842,22843,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.3852293110428,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,181.5,425279.9680867168,360085.448226231,123750.4026422998,86376.84104886388,3458.568316049006 -10216,12578,22841,-9,22842,22843,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.436079305621,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,181.5,425279.9680867168,360085.448226231,123750.4026422998,86376.84104886388,3458.568316049006 -10216,12578,22842,22843,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.669822578042341,8.570136938361239,0,17,-3,55.66629824589106,0,1,1,2019,12,3,37,40,1,3,0,18.2960693671277,18.2960693671277,0,0,0,0,0,1,1,0,0,0,40.67,62.66,48,51,1.666666666666667,1,1,0,0,11,2,4,1,181.5,425279.9680867168,360085.448226231,123750.4026422998,86376.84104886388,3458.568316049006 -10216,12578,22843,22842,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.555071144717376,8.283442746531501,0,15,3,56.93192579327177,0,2,2,2019,9,0,48,43,1,0,0,11.94813444491083,11.94813444491083,0,0,0,0,0,1,1,0,0,0,48,51,40.67,62.66,8.333333333333334,1,1,0,0,10,2,4,1,181.5,425279.9680867168,360085.448226231,123750.4026422998,86376.84104886388,3458.568316049006 -10217,12579,22844,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.911781190011864,7.846949389743503,0,0,-1065.658469209033,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.800025437809172,7.906749883060885,57.16,56.15,-9,-9,10,1,1,0,0,0,8,4,1,248,707524.3703189387,518750.9150106278,158101.9972311447,0,2538.110457352073 -10218,12580,22845,-9,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,0,0,0,0,0,-961.546074153482,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.2,43.53,-9,-9,6.666666666666667,2,3,1,0,0,6,1,0,373,-38595.10528143223,0,0,0,561.8618334798196 -10218,12580,22846,-9,22845,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-954.4428764463617,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,1,0,373,-38595.10528143223,0,0,0,561.8618334798196 -10218,12581,22847,-9,22845,-9,1,0,29,0,1,0,1,1,-9,0,4,8.573452814033805,8.680483389750703,0,0,0,-982.6586311709464,0,3,-9,2019,9,0,10,10,1,0,1,51.4438580398053,51.4438580398053,0,0,0,0,0,1,0,1,0,0,46.39,60.99,-9,-9,6.666666666666667,2,3,0,0,6,6,4,0,410,-210234.8706007884,91173.61011582353,0,0,2028.795029209349 -10218,12582,22848,-9,22845,-9,1,0,26,0,1,0,1,1,-9,0,4,8.150789193808048,8.552243844918095,0,0,0,-832.6369735922675,0,3,-9,2019,12,1,39,40,1,1,1,12.93948162401179,12.93948162401179,0,0,0,0,0,1,0,1,0,0,45.81,58.99,-9,-9,6.666666666666667,2,3,0,0,5,6,4,0,599,-62778.49821198829,-91153.1888220473,0,0,1699.652610285626 -10218,12583,22849,-9,22845,-9,1,0,21,0,1,1,2,0,0,0,2,0,0,0,0,0,-1021.315018145594,-9,3,-9,2019,24,11,0,0,2,11,1,0,0,0,0,0,0,0,1,0,1,0,0,41.84,35.11,-9,-9,6.666666666666667,2,3,0,0,2,6,1,0,246,0,0,0,0,0 -10218,12584,22850,-9,22845,-9,1,0,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-866.6169500561251,1,3,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,4.040226005906108,0,1,0,1,4.295856486771513,0,49.81,56.02,-9,-9,8.333333333333334,2,3,0,0,3,6,1,0,1769,278909.2367042923,0,0,0,318.9612602264224 -10219,12585,22851,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.063070603726128,7.072661988809021,0,0,-1003.137416883726,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.083938597333183,6.887719486306843,52,45,-9,-9,8,1,1,0,0,0,4,2,0,506,227972.6651126228,4743.406009690283,347110.9664482985,0,916.5797754277099 -10220,12586,22852,22853,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.157099258054546,6.164015895888583,6,1,-38.71235643389674,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,12.92070038919182,0,0,1,1,0,1.976873825170469,6.336154511855405,53.48,27.1,54.86,23.57,6.666666666666667,1,1,0,0,0,6,2,0,992.5,302637.6410092637,167539.4916187898,150980.7789376788,0,2502.499613345183 -10220,12586,22853,22852,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.630381830863173,6.265123453365805,6,-1,3.260367132945516,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,15.57783096663279,0,7,1,1,0,3.186679798941602,6.778447823649329,54.86,23.57,53.48,27.1,6.666666666666667,1,1,0,0,0,6,2,0,992.5,302637.6410092637,167539.4916187898,150980.7789376788,0,2502.499613345183 -10221,12587,22854,22855,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.168004797907191,7.938793326531478,0,40,-2,-91.97217214861439,0,2,2,2019,15,5,31,32,1,5,0,11.21627395037882,11.21627395037882,0,0,0,0,0,0,0,0,1.96971611369819,0,45.32,54.77,60.12,54.8,6.666666666666667,1,1,0,0,9,7,5,1,422.5,5644572.700006404,4039060.037977801,783607.7601136193,0,19164.83744081068 -10221,12587,22855,22854,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,9.645494251342621,9.490070056286619,0,40,2,-39.62004175039495,0,3,3,2019,6,0,35,35,1,0,0,55.45594500128784,55.45594500128784,0,0,0,0,0,0,0,0,6.233579909645186,0,60.12,54.8,45.32,54.77,10,1,1,0,0,9,7,5,1,422.5,5644572.700006404,4039060.037977801,783607.7601136193,0,19164.83744081068 -10222,12588,22856,22857,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.62388845479504,8.59223924548577,0,4,-3,12.7653139910951,-9,-9,-9,2019,12,0,40,0,1,0,0,16.52204301187354,16.52204301187354,0,0,0,0,0,0,0,0,3.555122901873298,0,44.09,58.35,52.72,47.36,8.333333333333334,1,1,0,0,3,2,5,1,337,-28428.63625410038,112824.2527939757,213993.7655376417,157718.9743900865,5663.106131457509 -10222,12588,22857,22856,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,9.231829518947309,9.408422550794961,0,4,3,-72.02609647769633,0,2,2,2019,22,9,42,38,1,9,0,32.16931227094101,32.16931227094101,0,0,0,.6551190748766569,0,0,0,0,4.856169660954228,0,52.72,47.36,44.09,58.35,3.333333333333333,1,1,0,0,9,2,5,1,337,-28428.63625410038,112824.2527939757,213993.7655376417,157718.9743900865,5663.106131457509 -10223,12589,22858,-9,22860,22859,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.319498700505,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,422.3333333333333,1245075.06580623,767093.5657692685,445916.5575530573,0,3925.426832855618 -10223,12589,22859,22860,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.35438603699232,8.409529446053812,0,2,0,139.993930400395,0,-9,-9,2019,3,0,45,45,1,0,0,6.714244029314457,6.714244029314457,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.5,58.26,8.333333333333334,1,1,0,0,4,7,4,1,422.3333333333333,1245075.06580623,767093.5657692685,445916.5575530573,0,3925.426832855618 -10223,12589,22860,22859,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.581429682267681,8.413115622606686,0,12,0,-102.46075641982,0,2,1,2019,11,1,37,37,1,1,0,17.25749925061428,17.25749925061428,0,0,0,0,0,1,1,0,0,0,46.5,58.26,54.2,57.49,8.333333333333334,1,1,0,0,8,7,4,1,422.3333333333333,1245075.06580623,767093.5657692685,445916.5575530573,0,3925.426832855618 -10224,12590,22861,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.448477657517396,9.717449779577203,0,0,0,-1027.848490802648,0,2,2,2019,8,0,47,45,1,0,0,32.53743367889476,32.53743367889476,0,0,0,0,0,0,0,0,.8837155156465543,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,235,405042.4600561616,73880.01522310451,210877.4855232201,0,3687.428990088355 -10225,12591,22862,22866,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.874008620172409,7.568068522492582,0,8,0,93.59707698156463,0,2,2,2019,16,6,61,28,1,6,0,5.41319638609895,5.41319638609895,0,0,0,0,0,1,1,0,0,0,41.3,60.77,50.48,56.4,8.333333333333334,1,1,0,0,9,4,4,1,1027.2,458127.6790769738,404493.8686291199,252370.1315996808,144803.0238265151,3992.200209135353 -10225,12591,22863,-9,22862,22866,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.6878369596077,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,1027.2,458127.6790769738,404493.8686291199,252370.1315996808,144803.0238265151,3992.200209135353 -10225,12591,22864,-9,22862,22866,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.738013161073,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1027.2,458127.6790769738,404493.8686291199,252370.1315996808,144803.0238265151,3992.200209135353 -10225,12591,22865,-9,22862,22866,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.0399233037782,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1027.2,458127.6790769738,404493.8686291199,252370.1315996808,144803.0238265151,3992.200209135353 -10225,12591,22866,22862,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.704409079002573,8.925830051187917,0,8,0,108.7396984356369,0,1,2,2019,9,0,40,40,1,0,0,18.32030705810717,18.32030705810717,0,0,0,0,0,1,1,0,2.718445766763601,0,50.48,56.4,41.3,60.77,8.333333333333334,1,1,0,0,9,4,4,1,1027.2,458127.6790769738,404493.8686291199,252370.1315996808,144803.0238265151,3992.200209135353 -10226,12592,22867,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.332205841231175,8.646490625713366,0,0,0,-1036.662227463489,-9,2,3,2019,11,0,38,0,1,0,0,18.70918022301763,18.70918022301763,0,0,0,0,0,1,1,0,0,0,60.32,48.05,-9,-9,1.666666666666667,1,1,0,0,9,2,5,1,569,-11515.96529781734,-43870.35444273512,249125.114918027,148778.5741196482,1328.251780682854 -10227,12593,22868,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,0,0,-886.4414544911275,-9,2,3,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39.45,35.3,-9,-9,10,1,1,1,0,0,10,1,1,1018,202180.8897290085,0,0,0,789.7501131720899 -10228,12594,22869,22870,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.044603604528074,8.036188482786942,0,6,3,27.9040706396524,0,-9,-9,2019,9,0,8,35,1,1,0,61.49871632671611,61.49871632671611,0,0,0,0,0,0,0,0,0,0,53,55,38.66,61.77,8,4,1,0,0,1,9,5,0,1282.5,106395.008882854,-39710.26929581727,0,0,4666.266876461368 -10228,12594,22870,22869,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.68646572870257,8.782031219051513,0,6,-3,-41.4885202231186,0,2,1,2019,19,8,20,20,1,8,0,32.90010254330914,32.90010254330914,0,0,0,0,0,0,0,0,0,0,38.66,61.77,53,55,3.333333333333333,1,1,0,0,7,9,5,0,1282.5,106395.008882854,-39710.26929581727,0,0,4666.266876461368 -10229,12595,22871,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.726359887242751,7.883875560074692,0,0,0,-1013.149968157754,0,-9,-9,2019,9,0,43,39,1,1,0,5.336555523346894,5.336555523346894,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,3,6,3,0,449,42778.22076580882,30592.40539955393,0,0,1267.663559950267 -10230,12596,22872,-9,22873,22875,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.975591922693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1559.75,137775.8373989473,69143.28536632903,218983.8499096005,89021.34530737979,3481.396994662054 -10230,12596,22873,22875,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.397270321187865,7.341413873696461,0,20,-5,-60.35302580601082,0,1,2,2019,4,0,20,21,1,0,0,6.611610666187298,6.611610666187298,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,5,9,4,1,1559.75,137775.8373989473,69143.28536632903,218983.8499096005,89021.34530737979,3481.396994662054 -10230,12596,22874,-9,22873,22875,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.012919639251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1559.75,137775.8373989473,69143.28536632903,218983.8499096005,89021.34530737979,3481.396994662054 -10230,12596,22875,22873,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.644330692705694,8.461810500263876,0,20,5,-6.155414681540044,0,2,2,2019,9,0,56,56,1,0,0,13.25256364517226,13.25256364517226,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,5,1,1,0,0,11,9,4,1,1559.75,137775.8373989473,69143.28536632903,218983.8499096005,89021.34530737979,3481.396994662054 -10231,12597,22876,22877,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.343840765418772,8.529246130301244,0,7,2,85.15324233245474,0,-9,-9,2019,10,0,40,37,1,1,0,15.01142463814649,15.01142463814649,0,0,0,0,0,1,1,0,2.954470783210799,0,52,48,48.7,40.16,7,1,1,0,0,1,4,4,1,1160.5,370791.6356334138,192232.4510169818,0,0,2714.53893495871 -10231,12597,22877,22876,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-2,-28.46605215009613,0,3,3,2019,7,1,0,30,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.7,40.16,52,48,8.333333333333334,1,1,0,0,9,4,4,1,1160.5,370791.6356334138,192232.4510169818,0,0,2714.53893495871 -10232,12598,22878,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,4.625190127801764,4.881308987432326,0,0,-936.1907819190899,0,2,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.779587269543597,4.588063415190152,57.06,57.76,-9,-9,0,1,1,0,0,0,9,2,0,332,-75428.66463403056,-19382.78506373097,0,0,1620.017270872372 -10233,12599,22879,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,.6723448590149457,.8364531378890177,0,0,-1106.488701969229,0,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,.8913115973788744,0,36.23,28.98,-9,-9,5,2,3,0,0,0,4,2,1,808,82017.29950220707,0,0,0,1058.763008298884 -10233,12599,22880,-9,22879,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1075.201547021811,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,808,82017.29950220707,0,0,0,1058.763008298884 -10233,12600,22881,-9,22879,-9,1,0,23,0,1,0,2,2,-9,1,1,7.130539001763051,7.353640414613146,0,0,0,-1004.680516513303,0,2,-9,2019,23,10,62,11,1,10,1,3.921414349561991,3.921414349561991,0,0,0,0,0,1,1,0,0,0,48.68,29.22,-9,-9,6.666666666666667,2,3,0,0,4,4,3,1,973,-9664.67753172919,90058.01543698231,0,0,744.5600032284583 -10233,12601,22882,-9,22879,-9,1,0,23,0,1,0,1,1,-9,0,2,8.004409552628648,8.067792256535206,0,0,0,-908.5374391419571,0,2,-9,2019,31,11,66,38,1,11,1,4.830301792063218,4.830301792063218,0,0,0,0,0,1,1,0,0,0,25.06,41.73,-9,-9,0,2,3,0,0,4,4,4,1,849,-60756.10959440165,0,0,0,1242.836093696858 -10234,12602,22883,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.991619905942366,8.07081550397306,0,0,0,-968.6927891055471,0,-9,-9,2019,10,1,37,37,1,1,0,11.74370267749378,11.74370267749378,0,0,0,0,0,0,0,0,.9858838446073216,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,5,12,4,0,466,91636.9852554988,-108484.3174725165,0,0,1518.255358809289 -10235,12603,22884,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.360481917628113,4.532495698377609,0,0,-1129.062896594231,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.627899948545728,52.83,44.51,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,334,107672.9390816301,42133.66810438123,81555.12773887109,0,1492.040685044419 -10236,12604,22885,22886,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.931967085508941,9.28087214221226,0,21,-1,-43.54185394090488,0,2,1,2019,8,1,37,34,1,1,0,32.10222550362131,32.10222550362131,0,0,0,0,0,1,1,0,3.579149465330144,0,48.87,58.55,55.19,54.26,6.666666666666667,1,1,0,0,13,1,5,1,974.6666666666666,661243.8151393126,526497.8258344512,274858.5141906963,166650.8951212315,2337.998835425053 -10236,12604,22886,22885,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,0,0,0,21,1,30.27266636112642,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.978550846758643,0,55.19,54.26,48.87,58.55,6.666666666666667,1,1,0,0,0,1,5,1,974.6666666666666,661243.8151393126,526497.8258344512,274858.5141906963,166650.8951212315,2337.998835425053 -10236,12604,22887,-9,22886,22885,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1135.941716784257,-9,1,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,1,5,1,974.6666666666666,661243.8151393126,526497.8258344512,274858.5141906963,166650.8951212315,2337.998835425053 -10237,12605,22888,22889,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.084410176431518,8.041764411735603,7.033702737482512,8,0,9.139520161799407,0,-9,-9,2019,9,0,50,70,1,1,0,6.740315039121755,6.740315039121755,0,0,0,0,0,0,0,0,0,7.068746771691821,53,54,51.24,58.84,8,1,1,0,0,1,5,4,1,376,144041.2031742698,252352.3336265702,0,0,2749.722494342146 -10237,12605,22889,22888,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.678928809096344,7.487391632056408,0,29,0,-86.3295809792117,0,3,3,2019,17,5,16,15,1,5,0,14.22313600183122,14.22313600183122,0,0,0,0,0,0,0,0,0,0,51.24,58.84,53,54,6.666666666666667,1,1,0,0,8,5,4,1,376,144041.2031742698,252352.3336265702,0,0,2749.722494342146 -10238,12606,22890,22891,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.224179939001475,7.171843948427809,24,-10,-92.20593248590912,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.429835789190832,7.319293364842117,57.06,57.76,54,46,8.333333333333334,1,1,0,0,0,11,2,1,694.5,482475.7715366905,248447.1720421457,136042.4976519136,0,2329.363124116783 -10238,12606,22891,22890,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,7,10,33.57673861422767,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.733378204909595,0,54,46,57.06,57.76,8,1,1,0,0,0,11,2,1,694.5,482475.7715366905,248447.1720421457,136042.4976519136,0,2329.363124116783 -10239,12607,22892,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.666783866497607,8.603450313943814,0,0,0,-940.2267205449459,0,1,1,2019,12,0,40,38,1,0,0,11.15280369100393,11.15280369100393,0,0,0,0,0,0,0,0,0,0,48.45,49.46,-9,-9,1.666666666666667,2,3,0,0,12,1,5,1,493,27615.98413865764,-64423.53973693073,0,0,1770.200469058369 -10240,12608,22893,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,5.782994436680074,5.663943855350692,0,0,0,-994.6511148997253,-9,-9,-9,2019,11,2,6,0,1,2,0,5.591828055950538,5.591828055950538,0,0,0,0,0,0,0,0,0,0,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,342,-39834.72519995688,0,0,0,654.3120528820804 -10241,12609,22894,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,8.702380922715721,8.75089813224344,4.942585565270941,0,0,-958.416004122856,0,1,1,2019,9,1,12,8,1,1,0,53.18118090696939,53.18118090696939,0,0,0,0,2,1,1,0,5.608917968332726,5.050309302882326,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,444,926872.9163742486,0,502783.5408429279,0,3385.070849322236 -10242,12610,22895,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.716164655200414,5.909042010085511,0,0,-1037.611483792078,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.238650572382973,52.04,51.55,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,2052,343253.8267364623,24580.35359616873,145522.7203138267,0,1171.769687896011 -10243,12611,22896,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.831157097289834,5.961866348929555,0,0,-1037.269817326509,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.595145859762193,51,46,-9,-9,7,2,3,0,0,0,6,2,1,1973,91765.15205588966,80648.0517978467,0,0,622.6619839255399 -10243,12612,22897,22898,22896,-9,1,1,29,0,0,0,1,1,-9,0,4,8.470449344773968,8.759387337440369,0,4,2,-85.0792335745621,0,3,2,2019,7,0,38,38,1,0,0,14.02896263988179,14.02896263988179,0,0,0,0,2,1,1,0,6.882337532047218,0,49.46,56.91,47,57,5,2,3,0,0,5,6,4,1,343.5,86452.64472960051,22968.8704337751,209868.9466073461,133788.4605950595,1973.722618679288 -10243,12612,22898,22897,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,4,-2,169.8308653755518,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,49.46,56.91,7,2,3,0,0,0,6,4,1,343.5,86452.64472960051,22968.8704337751,209868.9466073461,133788.4605950595,1973.722618679288 -10243,12613,22899,-9,22896,-9,1,1,25,0,0,0,1,1,-9,0,4,7.244332980269392,7.203520982451518,0,0,0,-1038.782009112805,0,3,-9,2019,10,0,25,25,1,1,0,8.139214540003506,8.139214540003506,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,317,-5767.18204560055,0,0,0,1339.829453577884 -10244,12614,22900,22901,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.046566509084531,7.952033667449743,0,8,-2,38.91868637075784,0,1,2,2019,12,0,47,42,1,0,0,5.760577763949609,5.760577763949609,0,0,0,3.74375131421508,0,0,0,0,0,0,40.65,57.36,46.65,58.6,5,1,1,0,0,9,5,4,0,383,30717.19285245632,-37196.57208542092,251425.2978817234,144275.1818108703,2842.910497263582 -10244,12614,22901,22900,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.947608116098793,8.161027318233907,0,8,2,61.02800781649957,0,-9,-9,2019,14,5,50,50,1,5,0,6.941610984286284,6.941610984286284,0,0,0,0,0,0,0,0,.370936945464703,0,46.65,58.6,40.65,57.36,6.666666666666667,1,1,0,0,11,5,4,0,383,30717.19285245632,-37196.57208542092,251425.2978817234,144275.1818108703,2842.910497263582 -10245,12615,22902,-9,-9,-9,1,0,24,0,0,0,1,1,0,1,3,0,0,0,0,0,-1029.448949391881,-9,2,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,5,1,1,0,0,7,12,1,0,748,0,0,0,0,635.6672126465431 -10246,12616,22903,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.396412049193586,8.27379542961002,0,0,0,-1084.911922146604,0,2,2,2019,9,0,36,35,1,0,0,15.14400336532304,15.14400336532304,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,2264,165091.3270394785,229887.086613301,123467.6305236538,31601.05775547527,1851.206382012952 -10246,12616,22904,-9,22903,-9,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1101.470947500277,-9,1,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.44,64.52,-9,-9,10,1,1,0,0,0,12,4,1,2264,165091.3270394785,229887.086613301,123467.6305236538,31601.05775547527,1851.206382012952 -10247,12617,22905,-9,22908,22906,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.507353377113,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,941,215396.5863941992,261716.3526452849,0,0,6770.140941228472 -10247,12617,22906,22908,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,8.814998741057934,8.821818408730284,0,12,0,41.17205899159942,0,1,1,2019,15,4,65,52,1,4,0,11.14671315341405,11.14671315341405,0,0,0,0,0,1,1,0,0,0,49.34,58.54,49.04,55.86,8.333333333333334,1,1,0,0,8,5,5,1,941,215396.5863941992,261716.3526452849,0,0,6770.140941228472 -10247,12617,22907,-9,22908,22906,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.9727570719402,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,941,215396.5863941992,261716.3526452849,0,0,6770.140941228472 -10247,12617,22908,22906,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,9.535892987690625,9.49656282957255,0,12,0,-70.957795049051,0,2,2,2019,10,0,36,45,1,0,0,39.62738824566929,39.62738824566929,0,0,0,0,0,1,1,0,6.869907250186104,0,49.04,55.86,49.34,58.54,8.333333333333334,1,1,0,0,11,5,5,1,941,215396.5863941992,261716.3526452849,0,0,6770.140941228472 -10248,12618,22909,-9,22910,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.3958893244534,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,804.5,20943.7059720074,0,0,0,3037.132063895728 -10248,12618,22910,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,3,7.02464184224233,7.324742288056161,6.618106083700144,0,0,-902.0625104831715,0,2,2,2019,12,0,20,20,1,0,0,5.720352541914688,5.720352541914688,0,0,0,0,106,1,1,0,6.184741484001828,0,36.35,53.49,-9,-9,6.666666666666667,1,1,0,0,9,6,2,1,804.5,20943.7059720074,0,0,0,3037.132063895728 -10249,12619,22911,22912,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.631556308766468,8.789236614100975,0,3,-2,14.45015235554478,0,-9,-9,2019,12,0,50,53,1,0,0,12.71504440543078,12.71504440543078,0,0,0,0,0,0,0,0,3.860506125778212,0,57.06,57.76,48,56,8.333333333333334,1,1,0,0,6,8,5,0,428.5,63347.82934476485,-17254.17103745851,246193.6816307607,173087.0995162455,3794.224603936007 -10249,12619,22912,22911,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.185302644637169,8.02411728973186,0,3,2,3.582283658122977,-9,-9,-9,2019,11,0,40,0,1,2,0,10.6012318787221,10.6012318787221,0,0,0,0,0,0,0,0,0,0,48,56,57.06,57.76,7,1,1,0,0,1,8,5,0,428.5,63347.82934476485,-17254.17103745851,246193.6816307607,173087.0995162455,3794.224603936007 -10250,12620,22913,-9,22915,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.526605655177,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,770.6666666666666,555190.1058380728,272091.9067485858,333962.0683402358,40560.09867132243,4193.940551781389 -10250,12620,22914,22915,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,9.178465295306204,8.955810356266689,0,2,8,-2.532460209778423,0,2,2,2019,12,0,50,55,1,0,0,22.69122873120028,22.69122873120028,0,0,0,0,0,1,1,0,3.833791335722832,0,58.32,50.22,45.43,53.5,6.666666666666667,1,1,0,0,12,6,4,1,770.6666666666666,555190.1058380728,272091.9067485858,333962.0683402358,40560.09867132243,4193.940551781389 -10250,12620,22915,22914,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.020398841012288,7.25318281341902,0,2,-8,-65.87558322775755,0,2,3,2019,24,12,14,15,1,12,0,8.25970045706123,8.25970045706123,0,0,0,0,0,1,1,0,2.616378427073366,0,45.43,53.5,58.32,50.22,8.333333333333334,1,1,0,0,9,6,4,1,770.6666666666666,555190.1058380728,272091.9067485858,333962.0683402358,40560.09867132243,4193.940551781389 -10250,12621,22916,-9,22915,22914,1,0,22,0,2,0,1,1,1,0,4,7.846174073647048,8.200622625939376,0,0,0,-1027.899111208131,-9,2,2,2019,8,1,40,0,1,1,1,8.44014612747398,8.44014612747398,0,0,0,0,0,1,1,0,0,0,43.49,51.48,-9,-9,6.666666666666667,1,1,0,0,3,6,4,1,1879,-200106.4449991019,16994.69255464003,0,0,1332.966184567479 -10251,12622,22917,22918,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,52,0,37.92010381889383,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,14.90693268026278,0,0,1,1,0,3.3422051875116,0,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,9,2,1,948,1028314.597680142,87481.96519654916,921910.0183254625,0,1179.80171090637 -10251,12622,22918,22917,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.878967795222119,7.190487410582165,52,0,49.08680472896535,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.847023654848576,6.375418288231071,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,4,9,2,1,948,1028314.597680142,87481.96519654916,921910.0183254625,0,1179.80171090637 -10252,12623,22919,22920,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.905142716972777,8.511851029634499,6.69697919708724,9,2,159.5865019172785,0,3,3,2019,8,0,37,44,1,0,0,10.24538167322233,10.24538167322233,0,0,0,0,0,0,0,0,0,6.501406443265301,60.81,43.46,65.07000000000001,44.28,8.333333333333334,1,1,0,0,10,13,4,1,886,657580.0973813683,273126.3083412302,296571.7147186011,0,2331.37764849408 -10252,12623,22920,22919,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.547086039527069,7.744810854968673,0,9,-2,53.91560525503102,0,3,3,2019,7,0,27,25,1,0,0,9.616221335614659,9.616221335614659,0,0,0,0,0,0,0,0,4.854911924465416,0,65.07000000000001,44.28,60.81,43.46,10,1,1,0,0,10,13,4,1,886,657580.0973813683,273126.3083412302,296571.7147186011,0,2331.37764849408 -10253,12624,22921,22922,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.695999447459842,8.465727343813853,0,22,1,96.34809752334473,0,2,2,2019,8,0,52,55,1,0,0,15.28306884759757,15.28306884759757,0,0,0,0,0,0,0,0,3.46733997688426,0,52.82,53.97,57.06,57.76,8.333333333333334,1,1,0,0,9,1,5,1,816,1704240.188916879,1543638.347589165,325332.1104274592,194797.2690843727,13581.81857049066 -10253,12624,22922,22921,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,9.647497994467546,9.556908297929947,0,7,-1,-71.5758899634953,0,-9,-9,2019,6,0,52,52,1,0,0,38.39745403286276,38.39745403286276,0,0,0,0,0,0,0,0,7.239998044908152,0,57.06,57.76,52.82,53.97,10,1,1,0,0,5,1,5,1,816,1704240.188916879,1543638.347589165,325332.1104274592,194797.2690843727,13581.81857049066 -10253,12624,22923,-9,22921,22922,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1139.69937231511,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,816,1704240.188916879,1543638.347589165,325332.1104274592,194797.2690843727,13581.81857049066 -10254,12625,22924,22925,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.617773851894897,8.471679014779482,0,8,-16,35.27990982586839,0,2,-9,2019,10,0,44,52,1,0,0,11.31876727378772,11.31876727378772,0,0,0,0,2,0,0,0,0,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,7,1,5,1,589,-67493.35036395729,-22553.18452853938,0,0,3022.947129494617 -10254,12625,22925,22924,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.255356262118458,8.016030014648807,0,8,16,72.4459407380355,0,3,3,2019,4,0,38,38,1,0,0,9.766107289833355,9.766107289833355,0,0,0,0,2,0,0,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,1,5,1,589,-67493.35036395729,-22553.18452853938,0,0,3022.947129494617 -10255,12626,22926,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.318908628817693,6.9491468402046,5.624895059038499,0,0,-1009.777955034266,0,2,2,2019,12,0,25,35,1,0,0,2.217986987854771,2.217986987854771,0,0,0,0,7,1,1,0,6.529066366758688,0,42.52,53.48,-9,-9,5,1,1,0,0,10,5,2,0,1526,-62862.6933124043,-12251.09981709438,0,0,704.5604383876706 -10255,12626,22927,-9,22926,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.751657375881,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1526,-62862.6933124043,-12251.09981709438,0,0,704.5604383876706 -10256,12627,22928,22929,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.293239064077001,8.102567163571013,4.314331388111262,24,4,-83.94076491037278,0,3,3,2019,7,1,44,48,1,1,0,10.59697814340254,10.59697814340254,0,0,0,0,14.5,0,0,0,5.28263093951344,4.520041133199197,60.3,46.58,55,53,10,1,1,0,0,9,9,5,1,342.5,491365.9313555764,150456.9156817792,279004.4677233933,0,3366.541387928137 -10256,12627,22929,22928,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.444297812715817,8.44064010650381,0,6,-4,-68.80739764834939,-9,-9,-9,2019,8,0,25,0,1,0,0,20.89309055008357,20.89309055008357,0,0,0,0,0,0,0,0,0,0,55,53,60.3,46.58,8,1,1,0,0,1,9,5,1,342.5,491365.9313555764,150456.9156817792,279004.4677233933,0,3366.541387928137 -10257,12628,22930,-9,22932,22931,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.0454130414807,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,5,1,576.3333333333334,494152.7298067394,288707.5864055869,271679.4541282401,155952.9894981958,7144.244682966685 -10257,12628,22931,22932,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.665702020479428,9.548363596712075,0,20,0,56.36754659293481,0,2,2,2019,13,1,51,52,1,1,0,33.3126929783256,33.3126929783256,0,0,0,0,0,0,0,0,0,0,56.74,52.23,58.47,44.69,8.333333333333334,1,1,0,0,11,5,5,1,576.3333333333334,494152.7298067394,288707.5864055869,271679.4541282401,155952.9894981958,7144.244682966685 -10257,12628,22932,22931,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.259803238078929,8.11251222893473,0,20,0,34.78321033120385,0,1,1,2019,10,0,22,23,1,0,0,18.99575231145661,18.99575231145661,0,0,0,0,0,0,0,0,0,0,58.47,44.69,56.74,52.23,8.333333333333334,1,1,0,0,13,5,5,1,576.3333333333334,494152.7298067394,288707.5864055869,271679.4541282401,155952.9894981958,7144.244682966685 -10258,12629,22933,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.310528665866533,6.861445572921961,0,0,-900.6352910925426,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.949719168392838,55.01,24.68,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,595,371365.0054496083,159290.2793553316,121350.0246835183,0,939.9743936229229 -10259,12630,22934,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.791069387293883,7.841688787256865,0,0,0,-892.4549349475943,0,2,1,2019,8,0,30,32,1,0,0,7.743352240435967,7.743352240435967,0,0,0,0,0,0,0,0,0,0,53.2,56.67,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,385,204176.8752351147,48269.18606684415,0,0,1015.303666457044 -10260,12631,22935,-9,22937,22938,1,0,21,0,1,0,1,1,-9,0,4,7.55495476648189,7.756635595901649,0,0,0,-1101.451358082929,-9,1,3,2019,8,0,36,0,1,0,1,6.259688060957709,6.259688060957709,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,247,105536.231624073,-45062.4842469766,0,0,864.3432302849393 -10260,12632,22936,-9,22937,22938,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.605783810435,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1650.666666666667,429045.0384195754,284447.4215740846,295939.7808850063,98296.94334252963,3744.734038770884 -10260,12632,22937,22938,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,9.11036033360598,8.811444547430854,0,8,-1,46.12335375390116,0,-9,-9,2019,12,0,31,28,1,0,0,33.42776034559423,33.42776034559423,0,0,0,0,2,1,1,0,1.227282874538023,0,42.37,48.08,42.85,51.08,6.666666666666667,1,1,0,0,9,13,5,1,1650.666666666667,429045.0384195754,284447.4215740846,295939.7808850063,98296.94334252963,3744.734038770884 -10260,12632,22938,22937,-9,-9,1,1,50,0,1,0,3,3,-9,0,2,7.776267098536133,7.859727580109714,0,8,1,1.142224010912634,0,3,3,2019,13,1,30,40,1,1,0,11.43872164109528,11.43872164109528,0,0,0,0,0,1,1,0,0,0,42.85,51.08,42.37,48.08,5,1,1,0,0,9,13,5,1,1650.666666666667,429045.0384195754,284447.4215740846,295939.7808850063,98296.94334252963,3744.734038770884 -10261,12633,22939,22941,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.677128023063878,9.830026159239532,0,11,4,16.14152512809366,0,2,1,2019,10,0,36,40,1,0,0,47.90160134586954,47.90160134586954,0,0,0,0,0,0,0,0,5.579087312727356,0,57.33,53.46,53.63,51.24,8.333333333333334,2,3,0,0,13,8,5,1,1518.333333333333,629542.7262093314,32630.79401495821,812248.0789514274,311895.2008101516,9050.275259819035 -10261,12633,22940,-9,22941,22939,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.4565092252304,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,1518.333333333333,629542.7262093314,32630.79401495821,812248.0789514274,311895.2008101516,9050.275259819035 -10261,12633,22941,22939,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.752303028057007,7.731124235138422,0,17,-4,76.16760620987215,0,1,1,2019,12,0,35,0,1,0,0,8.25111006474507,8.25111006474507,0,0,0,0,0,0,0,0,0,0,53.63,51.24,57.33,53.46,6.666666666666667,2,3,0,0,3,8,5,1,1518.333333333333,629542.7262093314,32630.79401495821,812248.0789514274,311895.2008101516,9050.275259819035 -10262,12634,22942,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,6.868925397438106,6.79034589378264,0,0,-1040.332021415451,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,6.951391420076659,0,25.92,66.48999999999999,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,953,-56628.67965291292,0,0,0,422.8464221747658 -10263,12635,22943,22944,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.74891497896396,7.566857690757492,0,8,0,9.720421204799194,0,3,-9,2019,12,0,38,39,1,0,0,6.936156920410011,6.936156920410011,0,0,0,0,0,0,0,0,0,0,36.02,46.73,44.42,43.19,3.333333333333333,1,1,0,0,9,11,4,0,456,141758.5957885589,98872.46540146774,130819.134150522,53758.24781148286,2490.938433919224 -10263,12635,22944,22943,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.877906757737288,7.858271612080518,0,8,0,-33.49005353751445,0,3,-9,2019,12,0,40,40,1,0,0,7.295804673292522,7.295804673292522,0,0,0,0,0,0,0,0,0,0,44.42,43.19,36.02,46.73,5,1,1,0,0,9,11,4,0,456,141758.5957885589,98872.46540146774,130819.134150522,53758.24781148286,2490.938433919224 -10264,12636,22945,22947,-9,-9,1,1,40,0,0,0,2,2,-9,1,5,0,0,0,24,-7,0,0,-9,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,46.82,62.33,43.45,38.38,8.333333333333334,1,1,0,0,0,1,1,0,1047.25,-57057.8674019,1160.13390585858,0,0,2523.912979312994 -10264,12636,22946,-9,22947,22945,1,1,17,0,0,1,3,0,0,1,3,0,0,0,0,0,-1063.478022270744,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,63.8,49.17,-9,-9,10,1,1,0,0,0,1,1,0,1047.25,-57057.8674019,1160.13390585858,0,0,2523.912979312994 -10264,12636,22947,22945,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,24,7,0,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,43.45,38.38,46.82,62.33,5,1,1,0,0,0,1,1,0,1047.25,-57057.8674019,1160.13390585858,0,0,2523.912979312994 -10264,12636,22948,-9,22947,22945,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1003.076044296943,-9,3,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,48.13,35.56,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1047.25,-57057.8674019,1160.13390585858,0,0,2523.912979312994 -10264,12637,22949,-9,22947,22945,1,1,21,0,0,0,2,2,1,0,4,0,0,0,0,0,-929.3644882060692,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.3,55.06,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,782,114944.4431089886,0,0,0,0 -10265,12638,22950,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.02911480293128,8.443965736841355,0,0,0,-874.4516385326569,0,2,2,2019,8,0,26,35,1,0,0,16.44946660353689,16.44946660353689,0,0,0,0,0,1,1,0,2.112624767784273,0,46.39,60.99,-9,-9,6.666666666666667,3,4,0,0,11,8,4,0,798,13223.05940324372,50199.66141899239,0,0,1944.316612318347 -10266,12639,22951,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.854355095828971,4.078143015076542,0,0,-956.082259338958,0,2,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.192545509144077,4.115176115048102,32.62,34.05,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,709,253439.7706559532,0,193381.5414790207,0,781.7008162598677 -10267,12640,22952,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,0,0,-901.484828103092,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.961734362466681,0,56.89,45.36,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1116,1023018.420466136,302380.9211219355,347122.0276523759,0,195.0859057225835 -10267,12641,22953,-9,22952,-9,1,1,26,0,0,0,1,1,-9,0,4,8.456055995064007,8.239267634027657,0,0,0,-915.9020371618545,0,1,-9,2019,10,0,38,38,1,1,1,14.06917122220173,14.06917122220173,0,0,0,0,0,0,0,0,2.168466543824425,0,49,58,-9,-9,7,1,1,0,0,1,10,4,1,398,-54090.02982901966,0,0,0,1696.759537107076 -10268,12642,22954,22955,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.063992877453662,7.907798459893142,0,18,-7,-17.23006863911912,0,2,2,2019,14,2,38,40,1,2,0,9.465524771376716,9.465524771376716,0,0,0,0,0,0,0,0,0,0,47.45,51.3,60.12,30.87,8.333333333333334,1,1,0,0,8,10,5,1,3090,1189916.997844776,1062741.166087995,258549.6258121302,0,3460.154566643205 -10268,12642,22955,22954,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.327447806069451,8.344442184175426,0,18,7,-88.92597508533891,0,-9,2,2019,8,0,46,44,1,0,0,12.20195147696693,12.20195147696693,0,0,0,0,0,0,0,0,0,0,60.12,30.87,47.45,51.3,6.666666666666667,1,1,0,0,8,10,5,1,3090,1189916.997844776,1062741.166087995,258549.6258121302,0,3460.154566643205 -10269,12643,22956,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1140.742908582736,0,3,3,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,52.17,-9,-9,6.666666666666667,1,1,1,0,2,1,1,0,503,-74777.78179758397,0,0,0,1255.364834091747 -10270,12644,22957,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.813451600082056,6.824315029519187,0,0,-1103.199008310867,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.006468947642796,46.36,30.37,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,497,487205.6567418248,101027.1413008697,240464.7538092991,0,1009.406458758083 -10271,12645,22958,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.608173810923933,5.724422760625526,0,0,-1083.947620984851,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.699479970387799,6.011094680528206,36.02,45.46,-9,-9,5,1,1,0,0,0,12,2,0,322,283415.7194769995,-48257.32692975484,148290.3506660011,0,2006.23132780845 -10272,12646,22959,22960,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.34063930227312,8.247987710653197,3.482162393854292,6,-3,5.269763227765521,0,3,3,2019,14,3,37,37,1,3,0,11.96470181125676,11.96470181125676,0,0,0,0,0,0,0,0,5.126090884026301,3.683608667813999,56.36,40.3,55.84,55.33,1.666666666666667,1,1,0,0,9,12,4,1,769,1799764.764458055,1229221.035978032,264965.4716105357,0,2685.511966158297 -10272,12646,22960,22959,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,7.449861001230536,7.662860497869405,6,3,15.5098201047748,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.473441788379696,7.441094955734667,55.84,55.33,56.36,40.3,10,1,1,0,0,8,12,4,1,769,1799764.764458055,1229221.035978032,264965.4716105357,0,2685.511966158297 -10273,12647,22961,22962,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.57944439643803,8.174727536675572,8,2,61.45449050285696,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.241314498392611,8.258337072939566,50.27,48.86,54.2,57.49,6.666666666666667,1,1,0,0,8,10,4,1,320.5,663753.5333559662,58324.9555605807,665214.9684110614,0,2616.153576821705 -10273,12647,22962,22961,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,6.83489057389793,6.942649153507088,0,8,-2,-3.806563354060173,0,1,1,2019,7,0,16,17,1,0,0,6.651618710090675,6.651618710090675,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.27,48.86,8.333333333333334,1,1,0,0,9,10,4,1,320.5,663753.5333559662,58324.9555605807,665214.9684110614,0,2616.153576821705 -10273,12648,22963,-9,22962,22961,1,0,27,0,0,0,1,1,-9,0,4,7.900554433063729,7.597226024458943,0,0,0,-1015.001603719329,-9,1,1,2019,2,0,38,0,1,0,1,7.582216468013561,7.582216468013561,0,0,0,0,0,0,0,0,0,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1732,-158160.6755859628,-36496.95422320444,0,0,618.758224397454 -10274,12649,22964,22965,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.799067889140719,8.643162094890618,0,16,-3,11.17231304464754,0,1,1,2019,12,1,50,38,1,1,0,13.63707284196699,13.63707284196699,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,9,7,5,1,297,1689357.359161267,341385.3748474462,1712950.179239768,341775.2714608604,5517.590934469212 -10274,12649,22965,22964,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.954513533804867,9.337789275330994,0,16,3,-28.47634680910469,0,2,2,2019,10,3,70,55,1,3,0,16.27029877434082,16.27029877434082,0,0,0,0,0,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,0,9,7,5,1,297,1689357.359161267,341385.3748474462,1712950.179239768,341775.2714608604,5517.590934469212 -10274,12649,22966,-9,22964,22965,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.219209139196,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,297,1689357.359161267,341385.3748474462,1712950.179239768,341775.2714608604,5517.590934469212 -10274,12649,22967,-9,22964,22965,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.3023348961246,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,297,1689357.359161267,341385.3748474462,1712950.179239768,341775.2714608604,5517.590934469212 -10275,12650,22968,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.178413227835605,7.534531666124662,0,0,0,-965.1738620191624,0,3,3,2019,5,0,16,20,1,0,0,8.435542284689193,8.435542284689193,0,0,0,0,0,1,1,0,0,0,41.86,58.04,-9,-9,8.333333333333334,1,1,0,0,8,8,2,0,60,638966.6814852295,40554.39269560343,143400.3433653909,0,1252.40150322521 -10275,12651,22969,-9,22968,-9,1,1,26,0,0,0,1,1,-9,0,5,8.656362659505417,8.667854406437858,0,0,0,-901.2083858209171,0,3,3,2019,7,0,42,50,1,0,0,17.80636155268113,17.80636155268113,0,0,0,0,0,1,1,0,.5668815222076379,0,54.75,56.24,-9,-9,8.333333333333334,4,2,0,0,4,8,5,0,445,28232.90006374904,78936.04994317242,107033.2605143056,95460.24440178035,2243.167124742421 -10276,12652,22970,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,6.719401964364477,7.308665573181888,6.022595157085828,0,0,-877.4001899704331,0,2,2,2019,12,3,14,0,1,3,0,7.274906908512452,7.274906908512452,0,0,0,0,0,1,0,1,5.603733771480591,0,42.22,50.11,-9,-9,6.666666666666667,4,5,0,0,1,7,2,0,171,24202.79492301556,155533.0452765878,0,0,2158.396644868337 -10277,12653,22971,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.630833720380581,8.458061502736053,6.041949527632502,0,0,-839.8794195666161,0,2,2,2019,6,0,46,42,1,0,0,15.92961918517548,15.92961918517548,0,0,0,0,0,1,1,0,7.299978309536897,0,55.02,49.07,-9,-9,6.666666666666667,2,3,0,0,10,9,5,0,230,396861.5387157417,180654.1223480676,343554.6073380185,40989.08848799452,2865.613846103451 -10277,12654,22972,-9,22971,-9,1,1,23,0,1,0,1,1,-9,0,3,8.421657940831725,8.486676909700964,0,0,0,-1018.936936843406,-9,2,-9,2019,10,0,42,0,1,0,1,13.51753981824445,13.51753981824445,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,8.333333333333334,4,2,0,0,1,9,4,0,147,25340.5105196537,0,0,0,1164.528236303984 -10277,12655,22973,-9,22971,-9,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-970.6175467936615,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.21,53.17,-9,-9,8.333333333333334,2,3,0,0,2,9,1,0,202,-92772.33546893489,0,0,0,0 -10278,12656,22974,22975,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.506965011259609,6.71347793809333,57,-2,107.4419126005033,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,4.421241823223287,0,0,1,1,0,0,6.519635534920068,48.91,43.45,58.4,51.64,8.333333333333334,1,1,0,0,0,5,2,1,334,609525.6022341831,236003.8489145107,439179.1249872152,0,1943.674587746017 -10278,12656,22975,22974,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.8291225541766,6.823254233708616,57,2,-88.99343586108823,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.577129869662706,7.308018753391067,58.4,51.64,48.91,43.45,8.333333333333334,1,1,0,0,0,5,2,1,334,609525.6022341831,236003.8489145107,439179.1249872152,0,1943.674587746017 -10279,12657,22976,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.510258840716988,8.174652684238058,0,0,-940.8035072553657,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.77760414468286,8.196264658403566,57.16,56.15,-9,-9,10,1,1,0,0,6,9,5,1,755,1528598.423917505,747949.9217764443,478770.8435512405,0,2410.440489176687 -10280,12658,22977,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,6.6347594183911,6.786050030773265,0,0,-880.9788210920453,0,2,1,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,1.572298937834355,7.065426570659372,39.79,63.29,-9,-9,1.666666666666667,1,1,0,0,8,10,2,1,2124,457925.7433714139,0,181378.7891611583,0,1002.782183482543 -10281,12659,22978,22979,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,59,-3,-125.7387551597124,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.6,22.28,65.83,17.83,8.333333333333334,1,1,0,0,0,9,3,1,1231,824233.129577446,572979.2078333393,270447.8056676792,0,1793.098474433348 -10281,12659,22979,22978,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.620120776050094,7.813912482838624,8,3,68.01888199959112,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.961325300924353,65.83,17.83,60.6,22.28,10,1,1,0,0,0,9,3,1,1231,824233.129577446,572979.2078333393,270447.8056676792,0,1793.098474433348 -10282,12660,22980,22981,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,7.725199883483556,7.834179338093928,0,9,3,102.7901656335913,0,2,2,2019,12,0,40,40,1,0,0,6.194615549187287,6.194615549187287,0,0,0,0,0,1,1,0,0,0,48.77,38.59,54.77,55.87,5,1,1,0,0,8,4,4,1,874.25,1000410.999934312,689215.4488440898,235163.7806806705,16075.25455824764,2958.054769454586 -10282,12660,22981,22980,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.512698054063977,8.835436290416824,0,9,-3,95.87917203717895,0,1,2,2019,10,0,37,37,1,0,0,22.73357158057495,22.73357158057495,0,0,0,0,0,1,1,0,0,0,54.77,55.87,48.77,38.59,8.333333333333334,1,1,0,1,10,4,4,1,874.25,1000410.999934312,689215.4488440898,235163.7806806705,16075.25455824764,2958.054769454586 -10282,12660,22982,-9,22981,22980,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.8129340805851,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,874.25,1000410.999934312,689215.4488440898,235163.7806806705,16075.25455824764,2958.054769454586 -10282,12660,22983,-9,22981,22980,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.865866960259,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,874.25,1000410.999934312,689215.4488440898,235163.7806806705,16075.25455824764,2958.054769454586 -10283,12661,22984,22985,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,54,-7,-16.37755229630227,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,124.3359964229887,0,71.5,1,1,0,0,0,41.77,26.19,60.14,38.88,8.333333333333334,1,1,0,0,0,5,2,1,1534.5,520494.1531726716,118961.2769574431,186080.5699887683,0,2088.16595598535 -10283,12661,22985,22984,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.085149449715373,7.310134859781538,55,7,118.4016546981375,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.911337858232361,7.516097776812329,60.14,38.88,41.77,26.19,10,1,1,0,0,0,5,2,1,1534.5,520494.1531726716,118961.2769574431,186080.5699887683,0,2088.16595598535 -10284,12662,22986,22988,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.73270102913488,7.853099559698814,0,11,2,20.84994225660296,0,2,2,2019,7,0,84,84,1,0,0,3.933985540510432,3.933985540510432,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.73,58.82,8.333333333333334,1,1,0,0,11,1,3,1,618.25,161029.9503740247,43751.63250423188,119204.3484342279,131034.1606945542,2133.250453763676 -10284,12662,22987,-9,22988,22986,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.825736088496,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,618.25,161029.9503740247,43751.63250423188,119204.3484342279,131034.1606945542,2133.250453763676 -10284,12662,22988,22986,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.595899327439133,7.982152854700637,0,11,-2,-139.4384235666872,0,2,2,2019,10,0,17,18,1,0,0,12.25828042278357,12.25828042278357,0,0,0,0,2,1,1,0,0,0,51.73,58.82,57.33,53.46,6.666666666666667,1,1,0,0,11,1,3,1,618.25,161029.9503740247,43751.63250423188,119204.3484342279,131034.1606945542,2133.250453763676 -10284,12662,22989,-9,22988,22986,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.456563643869,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,618.25,161029.9503740247,43751.63250423188,119204.3484342279,131034.1606945542,2133.250453763676 -10285,12663,22990,22991,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.688015492111755,7.18115057189973,59,-2,-64.17484486588629,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.530653438055625,6.897734685912295,60.2,39.82,54.69,57.47,8.333333333333334,1,1,0,0,0,6,2,1,835.5,434944.328300825,60581.54615177982,200485.376231949,0,1420.946733625665 -10285,12663,22991,22990,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,0,0,59,2,-79.21595046887025,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2837162501235135,0,54.69,57.47,60.2,39.82,8.333333333333334,1,1,0,0,0,6,2,1,835.5,434944.328300825,60581.54615177982,200485.376231949,0,1420.946733625665 -10286,12664,22992,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.767090891256864,6.707158327745399,0,0,-967.0126317083251,0,2,1,2019,8,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,4.250234561525609,6.910548412909601,44.45,50.99,-9,-9,1.666666666666667,1,1,1,0,9,9,2,1,217,356765.7570550604,250320.6987953375,153697.5476167143,0,631.2769595807667 -10287,12665,22993,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.779011285048075,5.897698230687469,0,0,-1012.33843762663,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.082105813221273,5.32815982878968,50,47,-9,-9,7,1,1,0,0,0,7,2,0,1124,231047.792973884,66457.70159505267,408482.8163328454,178520.1853089773,1724.113027486319 -10288,12666,22994,22995,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,7.04211907438825,7.282303489531152,0,19,9,-64.47840964537222,0,2,2,2019,12,2,15,16,1,2,0,11.65083162623514,11.65083162623514,0,0,0,0,111,1,1,0,0,0,58.29,34.19,33.39,54.83,8.333333333333334,1,1,0,0,7,10,4,1,591.6666666666666,944167.0267041564,680274.2011597417,249623.0001758947,54554.20332055525,3478.145389075067 -10288,12666,22995,22994,-9,-9,1,0,42,0,1,0,1,1,-9,1,3,8.898403399305241,9.206032598274724,0,19,0,-15.09972179606409,0,2,2,2019,15,4,55,55,1,4,0,16.3037510663057,16.3037510663057,0,0,0,0,2,1,1,0,0,0,33.39,54.83,58.29,34.19,5,1,1,0,0,7,10,4,1,591.6666666666666,944167.0267041564,680274.2011597417,249623.0001758947,54554.20332055525,3478.145389075067 -10288,12666,22996,-9,22995,22994,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.0846233445424,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,591.6666666666666,944167.0267041564,680274.2011597417,249623.0001758947,54554.20332055525,3478.145389075067 -10289,12667,22997,22998,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,0,0,0,7,-1,-85.17983949473077,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,20.04,31.61,53.12,45.76,3.333333333333333,1,1,0,0,6,5,3,1,285.5,746479.546817911,831829.1837889531,0,0,1378.665199450384 -10289,12667,22998,22997,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.150638106267857,8.056641312798345,0,7,1,-27.65694904851244,0,2,-9,2019,10,0,46,43,1,0,0,9.372380130031969,9.372380130031969,0,0,0,.7464406716774601,0,0,0,0,2.574799676197148,0,53.12,45.76,20.04,31.61,8.333333333333334,1,1,0,0,7,5,3,1,285.5,746479.546817911,831829.1837889531,0,0,1378.665199450384 -10290,12668,22999,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.388548845323419,6.474987743064654,0,0,-1020.647789259209,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.990917689209856,6.625818032441958,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,595,-66138.78474829899,0,125928.8416430352,0,955.7601004293271 -10291,12669,23000,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,4,7.975891816052933,7.937763226412412,0,0,0,-1063.251690593194,-9,2,-9,2019,12,0,8,0,1,2,1,59.46004125360403,59.46004125360403,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,4,0,229,35772.49065512748,0,0,0,1341.266936997859 -10292,12670,23001,-9,23004,23003,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-939.3478788681473,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10292,12670,23002,-9,23004,23003,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-925.2700152798609,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10292,12670,23003,23004,-9,-9,1,1,32,0,4,0,3,3,-9,0,3,0,0,0,7,2,-37.85348227135035,0,2,2,2019,18,4,0,60,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,58.05,51.81,57.22,8.333333333333334,1,1,0,0,7,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10292,12670,23004,23003,-9,-9,1,0,30,0,4,0,2,2,-9,0,4,7.642034631468822,8.108477833866676,0,7,-2,69.39301145714379,0,-9,-9,2019,10,0,42,16,1,0,0,6.652675459919721,6.652675459919721,0,0,0,0,0,1,1,0,0,0,51.81,57.22,32.42,58.05,8.333333333333334,1,1,0,0,2,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10292,12670,23005,-9,23004,23003,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-979.1796361883205,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10292,12670,23006,-9,23004,23003,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.493037805054,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,588.6666666666666,106822.3210163903,206200.4166768008,0,0,1864.776925393214 -10293,12671,23007,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.151893479577975,7.73872404482711,0,0,0,-1046.195891627397,0,2,2,2019,5,0,51,35,1,0,0,7.656276097786818,7.656276097786818,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,1174,37427.11030382701,0,46245.44325997171,0,1535.367934347753 -10294,12672,23008,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.725086499611796,8.760690914249754,0,0,0,-948.5851930594993,0,2,2,2019,12,0,87,44,1,0,0,10.66512838154228,10.66512838154228,0,0,0,0,2,1,1,0,0,0,54.21,45.2,-9,-9,6.666666666666667,3,4,0,0,10,6,5,1,442.5,-11394.76318513757,0,0,0,2540.549124353699 -10294,12672,23009,-9,23008,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1123.180931130133,-9,1,-9,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,53.21,-9,-9,6.666666666666667,4,2,0,0,0,6,5,1,442.5,-11394.76318513757,0,0,0,2540.549124353699 -10294,12673,23010,-9,23008,-9,1,0,21,0,0,1,1,0,0,0,3,0,0,0,0,0,-1006.402175116662,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,2.845660366153242,0,41.17,60.71,-9,-9,5,4,2,0,0,0,6,2,1,196,32217.22493041522,0,0,0,-161.9528877830098 -10295,12674,23011,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.813171330894552,6.915883317468963,0,0,-985.198783039682,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8870304146948,6.537136823091636,57.34,50.6,-9,-9,10,1,1,0,0,6,9,2,1,217,431807.9864534187,169898.8981337572,232681.6131709319,0,1456.80127754229 -10296,12675,23012,-9,23014,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-859.8906288092749,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,964,196702.676799596,0,229599.4950965185,0,3311.531295253533 -10296,12675,23013,-9,23014,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.9483225864394,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,964,196702.676799596,0,229599.4950965185,0,3311.531295253533 -10296,12675,23014,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,6.796886938638244,7.158771424709307,0,0,0,-1007.95556288761,0,2,2,2019,7,1,17,16,1,1,0,8.333641881079968,8.333641881079968,0,0,0,0,0,1,1,0,0,0,61.28,48.88,-9,-9,8.333333333333334,3,4,0,1,4,8,2,0,964,196702.676799596,0,229599.4950965185,0,3311.531295253533 -10296,12675,23015,-9,23014,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.6014815602462,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,964,196702.676799596,0,229599.4950965185,0,3311.531295253533 -10297,12676,23016,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,7.555760692967847,7.932972249576633,6.489866820111637,0,0,-935.2816805503841,0,3,3,2019,6,0,20,18,1,0,0,9.146423320795698,9.146423320795698,0,0,0,0,0,1,1,0,2.049174658735828,6.586973131548549,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,114,215206.7771791232,209677.7739394405,0,0,1940.913035880229 -10298,12677,23017,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1073.722891591869,-9,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,1.22368454321777,0,1,1,0,0,0,36.86,18.62,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,452,166303.4109387925,0,0,0,1701.059129253182 -10299,12678,23018,-9,23021,23022,1,1,17,1,4,1,2,0,0,0,4,0,0,0,0,0,-983.0459700326651,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.720987966202565,0,47,59,-9,-9,7,2,3,0,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23019,-9,23021,23022,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.275101822124,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23020,-9,23021,23022,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1110.763427670132,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23021,23022,-9,-9,1,0,42,1,4,0,3,3,-9,0,4,0,0,0,26,-5,22.41349861603045,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,43.07,42.39,8,2,3,0,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23022,23021,23025,-9,1,1,47,1,4,0,1,1,-9,0,3,8.521258494310219,8.218981541338858,0,26,5,13.15781835449879,0,3,3,2019,9,0,40,35,1,0,0,11.65072310927518,11.65072310927518,0,0,0,0,7,1,1,0,0,0,43.07,42.39,49,55,6.666666666666667,2,3,0,0,10,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23023,-9,23021,23022,1,1,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.5622387677012,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12678,23024,-9,23021,23022,1,0,16,1,4,1,3,0,-9,0,3,0,0,0,0,0,-925.3721208207447,-9,3,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,55.18,-9,-9,6.666666666666667,2,3,0,0,0,7,3,1,595.5714285714286,360849.8387492523,0,604243.1722488651,183732.5688312551,2876.779665890585 -10299,12679,23025,-9,-9,-9,1,0,79,1,4,0,2,2,-9,0,3,0,0,0,0,0,-1003.472380418042,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,448,0,0,0,0,895.5140436766426 -10299,12680,23026,-9,23021,23022,1,1,21,1,4,1,2,0,0,0,4,0,0,0,0,0,-1141.69303872265,-9,3,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,2,3,0,0,6,7,2,1,940,0,0,0,0,-675.3192774928893 -10299,12681,23027,-9,23021,23022,1,0,20,1,4,1,3,0,0,0,4,0,0,0,0,0,-1047.731705987475,-9,3,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,106,-6941.196728774124,0,0,0,965.4548226374768 -10300,12682,23028,23029,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,8.435404891938383,8.357245309983686,0,6,0,-50.98411683490146,0,-9,-9,2019,16,4,48,48,1,4,0,10.01343497678314,10.01343497678314,0,0,0,0,0,0,0,0,0,0,38.7,48.99,22.4,53.55,5,1,1,0,0,7,13,4,1,223.5,202771.6843491099,130721.2817616716,175239.1001933823,75547.00955397577,1793.504763925285 -10300,12682,23029,23028,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.195335119893871,7.301397581384404,0,6,0,33.36121120338744,0,3,3,2019,29,11,30,36,1,11,0,4.877274412516598,4.877274412516598,0,0,0,0,0,0,0,0,0,0,22.4,53.55,38.7,48.99,5,1,1,0,0,5,13,4,1,223.5,202771.6843491099,130721.2817616716,175239.1001933823,75547.00955397577,1793.504763925285 -10301,12683,23030,23031,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.814233654225921,8.680389572293983,0,7,-1,98.60547995201792,0,1,1,2019,10,1,46,47,1,1,0,17.26412638902794,17.26412638902794,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.99,51.28,8.333333333333334,1,1,0,0,8,2,5,1,440.5,415832.4921107878,290807.4816861153,141773.7441616168,55658.73464945525,4468.452635329986 -10301,12683,23031,23030,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.750556708419563,8.79663577414062,0,7,1,21.16456224624886,0,2,2,2019,7,0,95,51,1,0,0,8.13365928182677,8.13365928182677,0,0,0,0,0,0,0,0,0,0,52.99,51.28,51.14,60.45,8.333333333333334,1,1,0,0,6,2,5,1,440.5,415832.4921107878,290807.4816861153,141773.7441616168,55658.73464945525,4468.452635329986 -10302,12684,23032,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.229034666773606,7.990241493421682,0,0,0,-1035.961433641239,0,3,2,2019,9,0,17,12,1,0,0,17.9402371019743,17.9402371019743,0,0,0,0,0,0,0,0,0,0,57.68,31.83,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,473,99937.02176599692,115450.7013643526,85005.00421301991,39867.91695858214,831.5765026755253 -10303,12685,23033,23034,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.363259287251488,8.218789336901967,35,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.956280254642375,8.595443529758276,51.83,57.2,48.28,60.18,8.333333333333334,1,1,0,0,0,1,5,1,440,2048595.783177111,1330797.614925557,326975.418760649,0,3950.110581163627 -10303,12685,23034,23033,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.226800836541713,8.34625966178726,35,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.470338119788916,7.839264958242914,48.28,60.18,51.83,57.2,8.333333333333334,1,1,0,0,0,1,5,1,440,2048595.783177111,1330797.614925557,326975.418760649,0,3950.110581163627 -10304,12686,23035,23036,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,1,8,40.69513022380045,0,2,2,2019,11,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,37.32,32.66,35.2,6.666666666666667,1,1,1,0,8,2,2,0,470,-22292.69750452664,-54872.44110999177,0,0,870.4935533889649 -10304,12686,23036,23035,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,6.9854704928482,7.047943403351229,0,1,-8,62.65381532604782,-9,-9,-9,2019,28,10,16,0,1,10,0,7.052521689402961,7.052521689402961,0,0,0,0,0,1,1,0,0,0,32.66,35.2,48.92,37.32,3.333333333333333,1,1,0,0,1,2,2,0,470,-22292.69750452664,-54872.44110999177,0,0,870.4935533889649 -10305,12687,23037,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1030.082904241862,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.11,15.87,-9,-9,1.666666666666667,1,1,0,0,6,10,1,0,369,66043.46516270607,0,0,0,2039.199736481727 -10306,12688,23038,23039,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,8.21762867611108,8.056431392163978,53,0,95.56784506258668,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.669873076050326,8.467390640192365,59.43,58.05,57.16,56.15,10,4,2,0,0,0,7,5,1,511,1994684.658777765,1361925.80493563,442830.6218183966,0,6267.4600442553 -10306,12688,23039,23038,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,8.541420453465896,8.694058072431154,50,0,20.48261919095723,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.489049532492313,8.567155494996394,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,0,7,5,1,511,1994684.658777765,1361925.80493563,442830.6218183966,0,6267.4600442553 -10307,12689,23040,23041,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.104340767229737,6.840595356689423,0,7,-5,-66.38191618453095,0,2,2,2019,6,0,18,20,1,0,0,6.146617736430779,6.146617736430779,0,0,0,0,0,0,0,0,2.805988622043913,0,51.59,50.44,47.31,58.02,10,1,1,0,0,7,2,5,1,741,196424.0553179209,134177.2102123618,148566.9931741035,87301.56624798698,3837.447912267676 -10307,12689,23041,23040,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.200396764951298,9.017017394718605,0,7,5,-84.58309662724768,0,3,3,2019,12,1,45,47,1,1,0,24.88718870957414,24.88718870957414,0,0,0,0,0,0,0,0,3.301868275921001,0,47.31,58.02,51.59,50.44,8.333333333333334,1,1,0,0,8,2,5,1,741,196424.0553179209,134177.2102123618,148566.9931741035,87301.56624798698,3837.447912267676 -10307,12690,23042,-9,23040,23041,1,1,22,0,0,1,2,0,0,0,4,0,6.917136795504056,6.700400277523202,0,0,-1062.355370234881,-9,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,7.015363545777908,0,48.28,60.18,-9,-9,10,1,1,0,0,2,2,2,1,754,-26903.02780279989,0,0,0,812.0559020292776 -10308,12691,23043,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1057.08691094808,0,3,3,2019,11,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.76,59.08,-9,-9,6.666666666666667,1,1,0,0,13,13,2,1,474,1741.904891559416,0,0,0,48.98795473442257 -10309,12692,23044,23046,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.912757472787117,8.037476527159852,0,8,8,102.9335530957614,0,2,3,2019,10,0,42,42,1,0,0,8.191028347819389,8.191028347819389,0,0,0,0,2,1,1,0,0,0,52.55,45.88,45.01,57.46,8.333333333333334,1,1,0,1,8,5,3,1,1201,84030.70830836653,11961.35811532239,181943.1164421417,89812.83018802598,2930.346057101368 -10309,12692,23045,-9,23046,23044,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1086.369069615929,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,3,1,1201,84030.70830836653,11961.35811532239,181943.1164421417,89812.83018802598,2930.346057101368 -10309,12692,23046,23044,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.334988478220476,8.36956263560813,0,8,-8,17.09184264544825,0,2,3,2019,12,0,38,38,1,0,0,11.17550616063336,11.17550616063336,0,0,0,0,14.5,1,1,0,0,0,45.01,57.46,52.55,45.88,6.666666666666667,1,1,0,1,8,5,3,1,1201,84030.70830836653,11961.35811532239,181943.1164421417,89812.83018802598,2930.346057101368 -10309,12692,23047,-9,23046,23044,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-920.9379827944975,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,3,1,1201,84030.70830836653,11961.35811532239,181943.1164421417,89812.83018802598,2930.346057101368 -10309,12693,23048,-9,23046,23044,1,1,21,0,2,0,2,2,-9,0,3,7.823386988930425,7.50698037547393,0,0,0,-996.2701933591858,0,2,2,2019,9,0,39,38,1,0,1,6.919622821399451,6.919622821399451,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,531,206849.8409144027,0,0,0,1208.708056914868 -10310,12694,23049,23051,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,7.081197250748008,6.686802496201804,0,8,0,-.643191359557447,0,2,2,2019,8,1,20,23,1,1,0,6.628871632971555,6.628871632971555,0,0,0,0,0,1,1,0,.1678767151536353,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,883.25,637056.6607408662,97893.23609156975,519058.6087216416,251874.2012700713,3203.220102437955 -10310,12694,23050,-9,23049,23051,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1151.950078500636,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,883.25,637056.6607408662,97893.23609156975,519058.6087216416,251874.2012700713,3203.220102437955 -10310,12694,23051,23049,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,9.146984035757736,9.151583813192733,0,8,0,39.9361638257046,0,2,1,2019,9,0,43,42,1,0,0,27.28633444057767,27.28633444057767,0,0,0,0,0,1,1,0,3.287998468698492,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,883.25,637056.6607408662,97893.23609156975,519058.6087216416,251874.2012700713,3203.220102437955 -10310,12694,23052,-9,23049,23051,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.729031280897,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,883.25,637056.6607408662,97893.23609156975,519058.6087216416,251874.2012700713,3203.220102437955 -10311,12695,23053,-9,23054,23055,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-888.2644616750351,-9,2,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.73597074129117,0,30.59,64.25,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,705,572402.571792805,591626.192093437,0,0,3785.910362625059 -10311,12695,23054,23055,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.460893328864108,7.752449854553611,0,29,-4,-31.14730161840509,0,2,2,2019,10,1,19,25,1,1,0,9.920263297536774,9.920263297536774,0,0,0,0,0,1,1,0,4.855867182405115,0,50.03,52.62,53.61,51.1,8.333333333333334,1,1,0,0,11,5,4,1,705,572402.571792805,591626.192093437,0,0,3785.910362625059 -10311,12695,23055,23054,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.736092341948595,8.860338644441276,0,29,4,8.068283140625555,0,2,2,2019,7,0,50,45,1,0,0,17.38864405232846,17.38864405232846,0,0,0,0,0,1,1,0,4.828808148314175,0,53.61,51.1,50.03,52.62,8.333333333333334,1,1,0,0,11,5,4,1,705,572402.571792805,591626.192093437,0,0,3785.910362625059 -10312,12696,23056,23057,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-7,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.33,53.46,53.59,22.98,8.333333333333334,1,1,0,0,0,12,1,1,715,156678.2533647181,0,174050.0978806262,0,2260.898676417082 -10312,12696,23057,23056,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,7,7,0,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,0,19.49581104550213,0,0,1,1,0,0,0,53.59,22.98,57.33,53.46,6.666666666666667,1,1,0,0,4,12,1,1,715,156678.2533647181,0,174050.0978806262,0,2260.898676417082 -10313,12697,23058,23059,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.060184664876349,8.277047276616617,0,23,-1,62.40932355258514,0,3,2,2019,14,3,32,35,1,3,0,13.06485955354204,13.06485955354204,0,0,0,0,0,0,0,0,0,0,38.99,60.52,50,55,6.666666666666667,4,2,0,0,11,8,4,0,475.5,-19053.47290537818,0,0,0,1621.012043369223 -10313,12697,23059,23058,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.031791414125766,7.039607213819193,0,23,1,-163.9021062171503,0,2,-9,2019,10,0,50,50,1,1,0,3.371142974178484,3.371142974178484,0,0,0,0,0,0,0,0,.8806662588184975,0,50,55,38.99,60.52,8,3,4,0,0,1,8,4,0,475.5,-19053.47290537818,0,0,0,1621.012043369223 -10313,12698,23060,-9,23059,23058,1,1,29,0,0,0,2,2,-9,0,3,8.257541244485898,8.242673615662428,0,0,0,-972.6336435196337,0,2,2,2019,6,2,30,36,1,2,1,17.14679711752269,17.14679711752269,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,7,8,4,0,1098,729290.295981705,-57005.39643764486,0,0,1263.545691200772 -10314,12699,23061,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.746449715856144,5.39143238814896,0,0,-959.8762321075383,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.063518581231285,5.992380032129672,61.42,40.5,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,571,483119.5853265389,48839.73987473165,212113.2352155577,0,1423.168487446779 -10315,12700,23062,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,0,0,-994.0662156332613,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,1.33333621873358,0,1,1,0,0,0,52.4,55.58,-9,-9,5,1,1,0,0,0,10,1,1,693,33315.5578128706,147004.4032642778,272237.7366697845,59615.42597797184,651.98468835157 -10316,12701,23063,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.121141074260858,6.698381095503467,0,0,-1044.673359661154,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.092587050937333,51.67,20.05,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,510,583843.0570394445,174016.9929118516,102215.5986815535,0,1609.915012993176 -10317,12702,23064,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,1,0,0,0,0,0,-893.7502073840623,-9,2,2,2019,16,4,0,0,4,4,0,0,0,1,0,3.68783520196225,0,0,1,1,0,0,0,43.62,29.03,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,1168,744620.1151145513,98711.88778027869,496414.6498694396,0,370.5881667178611 -10318,12703,23065,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.029512856515653,7.060510201004502,0,0,-905.3201731882199,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.764242254536541,6.886001434681226,60.05,42.65,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,780,589123.896207923,84178.17234683826,302241.0260191403,0,1090.208396680702 -10319,12704,23066,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.25751132319527,6.280916183243551,0,0,-1010.967173398986,0,-9,-9,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.385643694344061,0,26.4,23.11,-9,-9,1.666666666666667,1,1,0,0,0,10,2,0,666,910281.8028307427,-77759.5816593472,662498.7162998597,0,1557.452014279949 -10320,12705,23067,23068,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.835471218854885,6.736908994570181,7,6,-108.9220862421831,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,1.984246681365537,28.77667500999912,24.33207191434705,27,1,1,0,4.532112921884364,6.634825065177513,57.65,18.77,51.14,19.98,8.333333333333334,1,1,0,0,0,5,2,1,343.5,120126.5059464821,121472.6167199022,0,0,2546.682798692839 -10320,12705,23068,23067,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,7,-6,-36.5403187067543,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,2.024010491508979,27.60559587146765,24.44722904343272,27,1,1,0,2.587272238329328,0,51.14,19.98,57.65,18.77,8.333333333333334,1,1,0,0,0,5,2,1,343.5,120126.5059464821,121472.6167199022,0,0,2546.682798692839 -10321,12706,23069,-9,23071,23070,1,1,13,0,0,1,3,0,-9,0,5,0,0,0,0,0,-891.0280296682997,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,5,1,621.75,2754736.944852704,1945942.40294032,538706.8939108485,0,7868.634966691849 -10321,12706,23070,23071,23073,-9,1,1,53,0,0,0,1,1,-9,0,4,9.303317456507234,9.10692993671176,0,35,0,63.13491735470828,0,2,2,2019,7,0,20,35,1,0,0,63.39701167944021,63.39701167944021,0,0,0,0,27,1,1,0,3.722137207864053,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,12,4,5,1,621.75,2754736.944852704,1945942.40294032,538706.8939108485,0,7868.634966691849 -10321,12706,23071,23070,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.063134246617309,9.198192343334174,0,35,0,31.05074764327776,0,2,2,2019,7,0,8,8,1,0,0,171.3996117703953,171.3996117703953,0,0,0,0,118,1,1,0,3.091892013483739,0,51.73,58.82,54.2,57.49,6.666666666666667,1,1,0,0,12,4,5,1,621.75,2754736.944852704,1945942.40294032,538706.8939108485,0,7868.634966691849 -10321,12706,23072,-9,23071,23070,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1029.526786809068,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,621.75,2754736.944852704,1945942.40294032,538706.8939108485,0,7868.634966691849 -10321,12707,23073,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,8.299217926648659,8.729631406890864,0,0,-969.7143689936165,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,5.988971191921308,35.65223994491529,49.57732590154857,0,1,1,0,3.931535008515796,8.578847392685686,42.93,13.26,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,365,462975.4303976277,115203.3398902762,52881.31020833036,0,3565.658506614585 -10322,12708,23074,23077,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.946405738816173,8.820073463876248,0,16,0,-17.24239252347098,0,2,2,2019,8,0,35,35,1,0,0,32.30755479257781,32.30755479257781,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.35,59.64,8.333333333333334,2,3,0,0,10,6,5,1,1198,207487.7276537812,104591.2216698445,164775.400628839,104897.7461563592,4695.983470198815 -10322,12708,23075,-9,23077,23074,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.781140800851,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,1198,207487.7276537812,104591.2216698445,164775.400628839,104897.7461563592,4695.983470198815 -10322,12708,23076,-9,23077,23074,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.1358781042487,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,1198,207487.7276537812,104591.2216698445,164775.400628839,104897.7461563592,4695.983470198815 -10322,12708,23077,23074,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.959761495215961,8.181901044340831,0,16,0,4.709376223006433,0,2,1,2019,12,0,20,-9,1,0,0,19.70872644472324,19.70872644472324,0,0,0,.5113161837332267,0,1,1,0,6.304338665534233,0,49.35,59.64,57.06,57.76,6.666666666666667,2,3,0,0,6,6,5,1,1198,207487.7276537812,104591.2216698445,164775.400628839,104897.7461563592,4695.983470198815 -10323,12709,23078,23081,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,0,0,0,7,-12,-29.93185831328839,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,53.17,48.87,6.666666666666667,1,1,0,0,1,10,2,0,1540.25,55706.94945981956,52845.52289014904,188431.0751866737,78953.0810989434,1917.828636598907 -10323,12709,23079,-9,23078,23081,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.5594771784995,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,1540.25,55706.94945981956,52845.52289014904,188431.0751866737,78953.0810989434,1917.828636598907 -10323,12709,23080,-9,23078,23081,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.262780335617,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1540.25,55706.94945981956,52845.52289014904,188431.0751866737,78953.0810989434,1917.828636598907 -10323,12709,23081,23078,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,7.30875864686592,7.715129267880738,0,7,12,-3.714751726595037,0,-9,-9,2019,9,0,40,30,1,0,0,5.167472673380963,5.167472673380963,0,0,0,0,0,1,1,0,3.447642321948437,0,53.17,48.87,42.61,54.85,6.666666666666667,1,1,0,0,8,10,2,0,1540.25,55706.94945981956,52845.52289014904,188431.0751866737,78953.0810989434,1917.828636598907 -10324,12710,23082,23083,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.601667029229047,7.5430975568073,0,8,1,42.24705914325093,0,3,3,2019,33,12,40,38,1,12,0,5.453606716068776,5.453606716068776,0,0,0,0,0,0,0,0,0,0,20.1,70.08,33.41,62.84,3.333333333333333,1,1,0,1,8,9,5,1,522.5,1205639.199243344,964112.1169585916,279453.1494980002,129439.3441861245,3425.148098163085 -10324,12710,23083,23082,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.761451332112836,9.019306249065671,0,8,-1,16.51475551421276,0,2,2,2019,24,12,50,40,1,12,0,14.38667099546665,14.38667099546665,0,0,0,0,0,0,0,0,0,0,33.41,62.84,20.1,70.08,3.333333333333333,1,1,0,0,9,9,5,1,522.5,1205639.199243344,964112.1169585916,279453.1494980002,129439.3441861245,3425.148098163085 -10325,12711,23084,23086,-9,-9,1,1,52,0,1,0,2,2,-9,1,1,0,0,0,24,5,0,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,20.91,35.39,30.22,47.34,3.333333333333333,1,1,0,1,0,2,1,0,354.3333333333333,79230.09541471537,0,0,0,1685.950745386418 -10325,12711,23085,-9,23086,23084,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-907.5402526331375,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,65.2,-9,-9,5,1,1,0,1,0,2,1,0,354.3333333333333,79230.09541471537,0,0,0,1685.950745386418 -10325,12711,23086,23084,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,0,0,0,24,-5,0,0,2,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.22,47.34,20.91,35.39,3.333333333333333,1,1,0,0,0,2,1,0,354.3333333333333,79230.09541471537,0,0,0,1685.950745386418 -10326,12712,23087,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.116988053914417,7.929458583095209,0,0,0,-864.7767760748916,0,1,1,2019,6,0,6,6,1,0,0,50.56272408973966,50.56272408973966,0,0,0,0,0,0,0,0,0,0,46.56,57.02,-9,-9,3.333333333333333,1,1,0,0,9,11,4,1,607,-33929.38866667646,112493.4894409727,24739.02450303744,58611.68569139257,1587.607235585325 -10327,12713,23088,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,6.54200760705602,6.497835267213688,0,0,-886.7901080411007,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,6.704687947672097,0,41.53,44.53,-9,-9,6.666666666666667,1,1,0,1,0,8,2,0,653,-50536.57839012935,0,0,0,1895.245319025384 -10327,12713,23089,-9,23088,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.528262102682,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,653,-50536.57839012935,0,0,0,1895.245319025384 -10327,12713,23090,-9,23088,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.7338879788392,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,653,-50536.57839012935,0,0,0,1895.245319025384 -10327,12714,23091,-9,23088,-9,1,1,28,0,2,0,2,2,-9,0,4,8.020804868386202,7.950351741105321,0,0,0,-983.6104973089678,0,2,2,2019,21,9,30,33,1,9,1,8.912716713560974,8.912716713560974,0,0,0,0,0,1,1,0,0,0,34.28,61.39,-9,-9,6.666666666666667,4,2,0,0,5,8,3,0,234,-5437.199687327816,0,0,0,875.4020788809362 -10327,12715,23092,-9,23088,-9,1,0,22,0,2,0,2,2,-9,0,3,6.277986036991003,6.241544120558052,0,0,0,-977.9512863177578,0,2,-9,2019,18,6,9,26,1,6,1,7.971231219297036,7.971231219297036,0,0,0,0,0,1,1,0,0,0,44.19,56.68,-9,-9,5,4,2,0,0,4,8,2,0,1613,95373.77864860171,0,0,0,534.1699669354815 -10328,12716,23093,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,6.532667849759252,6.524172444485336,0,0,0,-1057.860807382955,0,2,2,2019,10,0,50,40,1,0,0,1.924099170329651,1.924099170329651,0,0,0,0,7,1,1,0,2.288464717276804,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,1389,153628.2292060135,22276.79828757007,0,0,201.7389196280639 -10329,12717,23094,23095,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.602000973368005,7.858260792369344,26,-16,-63.52629379562872,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.919140183716506,7.999515479379793,54.96,53.17,54.78,34.44,8.333333333333334,1,1,0,0,6,7,4,1,466,2023550.072487079,880820.222678934,634836.7526105531,0,3739.851956784291 -10329,12717,23095,23094,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.137474727486854,8.236247225974001,23,16,100.4234276524637,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.045692824231927,8.278743631185748,54.78,34.44,54.96,53.17,8.333333333333334,1,1,0,0,0,7,4,1,466,2023550.072487079,880820.222678934,634836.7526105531,0,3739.851956784291 -10330,12718,23096,23097,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.690376047528867,8.686846882935551,0,11,7,115.6540171931892,0,-9,-9,2019,6,0,39,-9,1,0,0,16.67997032176729,16.67997032176729,0,0,0,0,0,0,0,0,0,0,52.6,52.88,60.29,52.11,8.333333333333334,1,1,0,0,12,4,5,0,841.5,406041.4302509924,39075.43982532113,225431.8168846244,0,3826.59510047511 -10330,12718,23097,23096,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,7.545839161292458,7.131574530940606,0,11,-7,46.14933158711431,0,2,3,2019,10,0,18,18,1,0,0,10.91727177505949,10.91727177505949,0,0,0,0,0,0,0,0,1.75576407737193,0,60.29,52.11,52.6,52.88,6.666666666666667,1,1,0,0,13,4,5,0,841.5,406041.4302509924,39075.43982532113,225431.8168846244,0,3826.59510047511 -10331,12719,23098,23099,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.19669657497659,7.289181906422416,0,6,0,-74.9563838459123,0,-9,-9,2019,11,0,40,40,1,0,0,4.47554677628425,4.47554677628425,0,0,0,0,0,1,1,0,2.916199310503352,0,48.45,57.49,55.36,51.57,8.333333333333334,1,1,0,0,8,2,4,1,1401,134394.2771027646,86231.01094215334,0,0,3307.748878507225 -10331,12719,23099,23098,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,8.209666728995233,8.676543414706014,6.678053567695246,6,0,32.11262234282013,0,3,2,2019,6,0,48,0,1,0,0,10.99461339451444,10.99461339451444,0,0,0,0,0,1,1,0,0,6.648826155656506,55.36,51.57,48.45,57.49,6.666666666666667,1,1,0,0,5,2,4,1,1401,134394.2771027646,86231.01094215334,0,0,3307.748878507225 -10332,12720,23100,23101,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.565555547306468,8.697094274773951,0,2,9,0,0,3,2,2019,11,1,30,33,1,1,0,19.26033222172042,19.26033222172042,0,0,0,0,0,1,1,0,0,0,34.44,43.57,41.64,54.12,6.666666666666667,1,1,0,0,7,11,5,0,1089.5,864336.5364922879,239055.7570442531,272478.926028993,73325.1075380469,4448.003602324266 -10332,12720,23101,23100,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.649593528545406,8.355046425436583,0,2,0,0,0,-9,-9,2019,13,3,42,37,1,3,0,18.12328084251662,18.12328084251662,0,0,0,0,0,1,1,0,0,0,41.64,54.12,34.44,43.57,5,1,1,0,0,8,11,5,0,1089.5,864336.5364922879,239055.7570442531,272478.926028993,73325.1075380469,4448.003602324266 -10332,12721,23102,-9,23100,23101,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-900.5037522871174,1,1,1,2019,9,1,0,22,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,3,11,2,0,1681,204698.6377680155,0,0,0,-451.2214238993778 -10333,12722,23103,23104,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.295564220069404,8.051154920306407,7.332995619928409,30,-14,18.91046192791669,0,3,3,2019,7,0,13,8,1,0,0,15.21970072806308,15.21970072806308,0,0,0,0,0,1,1,0,6.004563700395395,7.432046532260224,62.27,42.94,31.3,51.93,6.666666666666667,4,2,0,0,11,10,4,1,1647,2139121.737098275,514519.7864560022,833229.3276920405,0,4775.200128044889 -10333,12722,23104,23103,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.679810727171533,7.910842300565224,30,14,-68.51448447988476,0,1,1,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.976513254337945,8.333694586726317,31.3,51.93,62.27,42.94,3.333333333333333,1,1,0,0,11,10,4,1,1647,2139121.737098275,514519.7864560022,833229.3276920405,0,4775.200128044889 -10334,12723,23105,23106,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,.0093077244235934,8.364659889923244,8.467352318712864,2,3,45.9900597174277,0,3,3,2019,5,0,24,27,1,0,0,.0006991352437666,.0006991352437666,0,0,0,0,0,0,0,0,7.274943918504102,8.453037435141509,58.2,54.53,65.63,24.26,10,1,1,0,0,8,10,4,1,101,2009622.928145255,1329388.081231671,610760.3943342573,0,6194.538522182435 -10334,12723,23106,23105,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.136717025179188,7.039548622086135,2,-3,4.571208354285195,0,-9,-9,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,8.317353756903971,7.323956385278705,65.63,24.26,58.2,54.53,8.333333333333334,1,1,0,0,8,10,4,1,101,2009622.928145255,1329388.081231671,610760.3943342573,0,6194.538522182435 -10335,12724,23107,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,9.336850680015949,8.979902734797216,0,0,0,-1004.448767769095,-9,2,3,2019,28,9,50,0,1,9,0,21.23767129462026,21.23767129462026,0,0,0,0,0,0,0,0,8.356807341115115,0,9.870000000000001,49.92,-9,-9,1.666666666666667,1,1,0,0,11,10,5,1,994,-61583.29544339275,-71931.35867337139,0,0,4131.423867880656 -10336,12725,23108,-9,23109,-9,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-945.8111133304589,-9,2,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,26.63,62.2,-9,-9,8.333333333333334,1,1,1,1,1,12,2,1,266,92226.29445796357,0,0,0,495.1217334490066 -10336,12725,23109,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,7.201390946342253,6.944338751716384,0,0,-1078.364177213094,0,2,2,2019,21,8,0,6,3,8,0,0,0,0,0,0,0,2,1,1,0,6.248686607199924,0,35.67,36.57,-9,-9,3.333333333333333,1,1,0,0,2,12,2,1,266,92226.29445796357,0,0,0,495.1217334490066 -10336,12726,23110,-9,23109,-9,1,0,18,0,0,0,2,2,1,1,4,0,0,0,0,0,-1020.120452798574,-9,2,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,12,1,1,718,-13715.05086456506,0,0,0,952.3869953736965 -10337,12727,23111,-9,23112,23113,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.570391919852,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,308.6666666666667,63364.21510920813,22939.49711409718,408100.1503344073,240622.5391071612,3347.146492544559 -10337,12727,23112,23113,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,0,0,0,16,0,11.47081210627965,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.55,62.02,51.81,54.55,8.333333333333334,1,1,0,0,0,6,4,0,308.6666666666667,63364.21510920813,22939.49711409718,408100.1503344073,240622.5391071612,3347.146492544559 -10337,12727,23113,23112,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.527541063092281,8.641773223312862,0,16,9,-43.99075324320388,0,3,2,2019,10,1,90,52,1,1,0,5.878037544460776,5.878037544460776,0,0,0,0,0,1,1,0,0,0,51.81,54.55,41.55,62.02,6.666666666666667,1,1,0,0,11,6,4,0,308.6666666666667,63364.21510920813,22939.49711409718,408100.1503344073,240622.5391071612,3347.146492544559 -10338,12728,23114,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.045621878326315,8.69995039118726,0,0,0,-1088.458651015454,0,1,1,2019,19,7,34,50,1,7,0,16.86226828561284,16.86226828561284,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,2,3,0,0,5,8,4,0,445,-50939.13961046629,31174.63195285968,0,0,1315.21506183984 -10339,12729,23115,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-957.8208284878599,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.237446189982384,0,51,46,-9,-9,8,1,1,0,0,12,9,1,1,268,89974.39844517806,0,0,0,1321.22802012933 -10340,12730,23116,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.089128914619296,7.568784237001987,0,0,0,-1122.635863446848,0,-9,-9,2019,10,0,40,40,1,0,0,7.995591120592572,7.995591120592572,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,1,3,0,25,234158.9955375783,84934.12043952204,133132.9733510659,41366.61018804421,1111.80451588975 -10341,12731,23117,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,6.986401637493325,7.084939052178057,4.684875397061574,0,0,-1084.602364800513,0,3,2,2019,17,5,6,6,1,5,0,25.57804321026649,25.57804321026649,0,0,0,0,0,1,0,1,0,5.173831132424809,45.69,25.38,-9,-9,3.333333333333333,3,4,0,1,6,8,3,0,103,481342.4722170919,10924.38878227454,230248.9838654854,0,1022.196153161569 -10342,12732,23118,23119,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.180272265729945,8.24179680881209,47,-1,2.858503356429808,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.106741718008378,8.305603040453445,59.53,56.44,51.94,55.88,8.333333333333334,1,1,0,0,0,12,4,1,877.5,2190800.476900818,1224856.425210978,320167.0877576832,0,3822.254905158456 -10342,12732,23119,23118,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.37825846582715,7.276650216344313,47,1,-114.388202264653,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.494601119176458,51.94,55.88,59.53,56.44,8.333333333333334,1,1,0,0,0,12,4,1,877.5,2190800.476900818,1224856.425210978,320167.0877576832,0,3822.254905158456 -10343,12733,23120,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,4.973575319488246,6.080827925317059,6.33815229119821,0,0,-896.2513944931909,0,-9,-9,2019,14,3,35,38,1,3,0,.3983786741681004,.3983786741681004,0,0,0,0,0,1,1,0,5.495857466052502,5.96390732067684,55.38,38.32,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1124,218850.5256821271,0,0,0,1257.82436751453 -10344,12734,23121,23122,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.449465029193844,8.425389259288705,0,4,-1,25.24004635786028,0,-9,-9,2019,23,11,39,50,1,11,0,12.98473433909656,12.98473433909656,0,0,0,0,0,0,0,0,1.920039446412818,0,40.18,62.68,47.38,57.75,8.333333333333334,1,1,0,0,4,10,5,1,389.5,1394675.308691686,841202.0132530821,450026.1598433103,59463.65065867899,3991.596454270713 -10344,12734,23122,23121,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.682680243121391,8.640569518073821,0,4,1,-166.3675147969254,0,3,2,2019,16,7,37,37,1,7,0,16.28804206065812,16.28804206065812,0,0,0,0,0,0,0,0,2.52539166592323,0,47.38,57.75,40.18,62.68,8.333333333333334,1,1,0,0,9,10,5,1,389.5,1394675.308691686,841202.0132530821,450026.1598433103,59463.65065867899,3991.596454270713 -10345,12735,23123,23124,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.773388785564112,8.711749789416874,0,43,0,129.3554751129896,0,3,3,2019,4,0,40,45,1,0,0,14.6642830331708,14.6642830331708,0,0,0,0,5.48,1,1,0,0,0,62.49,55.09,52.35,19.26,8.333333333333334,1,1,0,0,8,12,4,0,2350.5,1315198.683666079,527318.3294626512,154261.8404917252,0,3702.65934327124 -10345,12735,23124,23123,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,43,0,44.54065674151688,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.35,19.26,62.49,55.09,10,1,1,0,0,0,12,4,0,2350.5,1315198.683666079,527318.3294626512,154261.8404917252,0,3702.65934327124 -10346,12736,23125,23128,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,6.254998400126375,6.093554587927399,0,12,0,54.8831321276537,0,3,3,2019,7,0,10,8,1,0,0,6.231695217883297,6.231695217883297,0,0,0,0,0,1,1,0,6.726375995688788,0,62.49,55.09,46.34,61.24,8.333333333333334,4,5,0,0,8,11,2,1,1087.75,0,0,0,0,708.4659084048096 -10346,12736,23126,-9,23128,23125,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.713424912606,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,11,2,1,1087.75,0,0,0,0,708.4659084048096 -10346,12736,23127,-9,23128,23125,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.224767326011,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,11,2,1,1087.75,0,0,0,0,708.4659084048096 -10346,12736,23128,23125,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,12,0,-90.42962529789339,0,2,1,2019,21,9,0,50,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,62.49,55.09,3.333333333333333,1,1,1,0,8,11,2,1,1087.75,0,0,0,0,708.4659084048096 -10347,12737,23129,23131,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.328597067907499,9.06976758675156,7.236071503481929,21,1,8.500214925816383,0,2,2,2019,7,0,37,40,1,0,0,16.02656297851855,16.02656297851855,0,0,0,0,0,1,1,0,7.779022955180502,0,61.04,39.41,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,258.3333333333333,500601.256815129,192798.8216437186,467816.4490924723,133773.9805058729,3609.106055507913 -10347,12737,23130,-9,23131,23129,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.7263383553756,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,258.3333333333333,500601.256815129,192798.8216437186,467816.4490924723,133773.9805058729,3609.106055507913 -10347,12737,23131,23129,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.099491207399844,7.945590158915732,0,20,-1,-5.909883229308176,0,2,2,2019,0,0,23,45,1,0,0,16.97164159705238,16.97164159705238,0,0,0,0,0,1,1,0,1.253736248353847,0,57.06,57.76,61.04,39.41,8.333333333333334,1,1,0,0,10,9,5,1,258.3333333333333,500601.256815129,192798.8216437186,467816.4490924723,133773.9805058729,3609.106055507913 -10348,12738,23132,23133,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.293300759616635,8.576578660168124,41,-2,-149.1589794589798,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.523774721058116,68.51000000000001,23.49,52,48,1.666666666666667,1,1,0,0,4,13,4,1,433.5,1808142.91630057,1404749.18266098,84478.14398245671,0,3148.198815665464 -10348,12738,23133,23132,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.976882818328475,7.678786573106854,41,2,1.487684354069616,0,2,2,2019,10,0,0,37,4,1,0,0,0,0,0,0,0,0,0,0,0,6.729014136852409,7.605993083971256,52,48,68.51000000000001,23.49,7,1,1,0,0,0,13,4,1,433.5,1808142.91630057,1404749.18266098,84478.14398245671,0,3148.198815665464 -10349,12739,23134,23135,-9,-9,1,1,73,0,2,0,1,1,-9,0,4,0,8.355080052597064,8.494091230613767,50,3,23.25725055066173,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,8.105180507122013,8.734932270700517,52.97,53.97,52.97,51.29,8.333333333333334,1,1,0,0,0,9,3,1,377.5,1380173.482333748,641259.6059050201,388804.0167945726,0,3585.174883265447 -10349,12739,23135,23134,-9,-9,1,0,70,0,2,0,1,1,-9,0,3,0,5.526876218752437,5.816372141705664,50,-3,96.98113310283114,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.61492578413142,5.594737486867595,52.97,51.29,52.97,53.97,8.333333333333334,1,1,0,0,4,9,3,1,377.5,1380173.482333748,641259.6059050201,388804.0167945726,0,3585.174883265447 -10349,12740,23136,-9,23139,23137,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.087973932839,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,429.5,730787.0323563796,115606.3546838795,520496.3871512178,245688.6507878558,4940.261251437914 -10349,12740,23137,23139,23135,23134,1,1,38,0,2,0,1,1,-9,0,3,7.995938821508048,8.032300406978296,0,1,-4,-11.68362571409374,-9,1,1,2019,11,3,60,0,1,3,0,5.951282920280592,5.951282920280592,0,0,0,0,0,1,1,0,7.38894782591121,0,44.25,56.64,45.91,59.89,8.333333333333334,1,1,0,0,1,9,5,1,429.5,730787.0323563796,115606.3546838795,520496.3871512178,245688.6507878558,4940.261251437914 -10349,12740,23138,-9,23139,23137,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.527859167,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,429.5,730787.0323563796,115606.3546838795,520496.3871512178,245688.6507878558,4940.261251437914 -10349,12740,23139,23137,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.915427054882748,9.344798954624617,0,1,4,67.08429429963947,-9,-9,-9,2019,11,0,50,0,1,0,0,17.05264416658943,17.05264416658943,0,0,0,0,0,1,1,0,5.090771205917844,0,45.91,59.89,44.25,56.64,8.333333333333334,1,1,0,0,0,9,5,1,429.5,730787.0323563796,115606.3546838795,520496.3871512178,245688.6507878558,4940.261251437914 -10350,12741,23140,23141,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,2,4,3.775696826286998,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.888191855911199,0,50,47,54.1,59.11,7,1,1,0,0,0,6,3,1,1364,114205.268947736,-32852.94460081474,143622.1123457024,0,2180.007963140606 -10350,12741,23141,23140,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.124480564493902,7.839881541442665,0,11,-4,-50.43474343806842,0,-9,-9,2019,7,0,40,65,1,0,0,7.539198265097907,7.539198265097907,0,0,0,0,2,1,1,0,4.294802364114769,0,54.1,59.11,50,47,10,1,1,0,0,9,6,3,1,1364,114205.268947736,-32852.94460081474,143622.1123457024,0,2180.007963140606 -10351,12742,23142,23143,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,47,0,-26.08885915863678,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.524077282006284,0,49.04,35.19,59.14,52.5,8.333333333333334,1,1,0,0,0,4,2,1,742,256216.2802755557,35752.33642434431,189166.7054008485,0,2053.204120265514 -10351,12742,23143,23142,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.413256441710919,5.058840586847198,47,0,10.46727405856253,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.258511656539839,5.333824268782948,59.14,52.5,49.04,35.19,8.333333333333334,1,1,0,0,0,4,2,1,742,256216.2802755557,35752.33642434431,189166.7054008485,0,2053.204120265514 -10352,12743,23144,23146,-9,-9,1,1,38,1,1,0,1,1,-9,0,5,8.702865875246399,8.726514384300167,0,6,5,24.87993094004758,0,-9,-9,2019,9,0,37,42,1,0,0,17.3552498523964,17.3552498523964,0,0,0,0,0,1,1,0,0,0,48.18,61.8,48.77,60.16,8.333333333333334,1,1,0,0,8,2,5,1,1674,212944.2884859343,250594.9267807215,214189.1879139569,184504.5008813994,3901.952610140825 -10352,12743,23145,-9,23146,23144,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.9088413097802,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1674,212944.2884859343,250594.9267807215,214189.1879139569,184504.5008813994,3901.952610140825 -10352,12743,23146,23144,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.64649736455069,8.750737639435293,0,6,-5,26.02505329597452,0,2,2,2019,10,0,52,52,1,0,0,12.6353339550066,12.6353339550066,0,0,0,1.23076320415459,0,1,1,0,1.088599934864687,0,48.77,60.16,48.18,61.8,8.333333333333334,1,1,0,0,8,2,5,1,1674,212944.2884859343,250594.9267807215,214189.1879139569,184504.5008813994,3901.952610140825 -10353,12744,23147,-9,23148,23149,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.9999161358691,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,1304.25,227679.0805625588,66291.50740874719,206520.8472628657,41317.67785878207,1715.974957580672 -10353,12744,23148,23149,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,6.01492140390179,5.794918235065204,0,20,-3,77.96040255576833,0,2,2,2019,14,3,7,7,1,3,0,5.560264594555102,5.560264594555102,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.88,60.96,8.333333333333334,1,1,0,0,4,7,2,1,1304.25,227679.0805625588,66291.50740874719,206520.8472628657,41317.67785878207,1715.974957580672 -10353,12744,23149,23148,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,7.740880333263539,7.602739646742768,0,15,3,-67.2700243658697,0,2,2,2019,17,6,36,37,1,6,0,6.305222000418786,6.305222000418786,0,0,0,0,0,1,1,0,0,0,40.88,60.96,57.16,56.15,8.333333333333334,1,1,0,0,6,7,2,1,1304.25,227679.0805625588,66291.50740874719,206520.8472628657,41317.67785878207,1715.974957580672 -10353,12744,23150,-9,23148,23149,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-863.2764031644697,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,1304.25,227679.0805625588,66291.50740874719,206520.8472628657,41317.67785878207,1715.974957580672 -10354,12745,23151,-9,23152,23153,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.424372888643,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,1127,1034249.551299998,463916.2890259732,532205.0915751086,5635.780439037434,4747.844418899863 -10354,12745,23152,23153,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.663127524911474,8.496234212615633,0,7,1,-.9678966523015734,0,2,1,2019,11,0,48,0,1,0,0,14.54049503301387,14.54049503301387,0,0,0,0,0,1,1,0,0,0,51.02,52.22,46.08,57.2,6.666666666666667,1,1,0,0,8,1,5,1,1127,1034249.551299998,463916.2890259732,532205.0915751086,5635.780439037434,4747.844418899863 -10354,12745,23153,23152,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.190946166327306,8.908561530951603,0,7,-1,-69.27658923547881,0,-9,-9,2019,14,4,37,36,1,4,0,21.34829054790307,21.34829054790307,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.02,52.22,3.333333333333333,1,1,0,0,8,1,5,1,1127,1034249.551299998,463916.2890259732,532205.0915751086,5635.780439037434,4747.844418899863 -10354,12745,23154,-9,23152,23153,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.653633023124,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,1127,1034249.551299998,463916.2890259732,532205.0915751086,5635.780439037434,4747.844418899863 -10355,12746,23155,-9,23157,-9,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1050.287869178362,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,304.2,-45103.22884267317,0,0,0,2703.110182700804 -10355,12746,23156,-9,23157,-9,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-841.1090903954578,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,304.2,-45103.22884267317,0,0,0,2703.110182700804 -10355,12746,23157,-9,-9,-9,1,0,32,0,4,0,2,2,-9,0,3,0,0,0,0,0,-892.5835019067074,0,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,26.86,36.21,-9,-9,6.666666666666667,3,4,0,1,1,8,2,0,304.2,-45103.22884267317,0,0,0,2703.110182700804 -10355,12746,23158,-9,23157,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-975.1676702720418,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,2,0,304.2,-45103.22884267317,0,0,0,2703.110182700804 -10355,12746,23159,-9,23157,-9,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1079.551567220749,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,304.2,-45103.22884267317,0,0,0,2703.110182700804 -10356,12747,23160,23162,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.927884867063897,8.84402790161468,0,9,7,-55.33137001538044,0,-9,-9,2019,6,0,45,50,1,0,0,16.58611727739777,16.58611727739777,0,0,0,0,0,1,1,0,4.956760878410459,0,55.51,46.03,53.78,48.41,8.333333333333334,1,1,0,0,9,7,4,1,381.3333333333333,272079.7136370184,127685.1800821576,225509.9126514838,21041.74098332765,3190.386339234812 -10356,12747,23161,-9,23162,23160,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.6230555529008,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,381.3333333333333,272079.7136370184,127685.1800821576,225509.9126514838,21041.74098332765,3190.386339234812 -10356,12747,23162,23160,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,6.814598954842187,6.638992477203575,0,9,-7,153.9785239486204,0,-9,-9,2019,12,0,13,7,1,0,0,8.149502083745164,8.149502083745164,0,0,0,0,0,1,1,0,0,0,53.78,48.41,55.51,46.03,8.333333333333334,1,1,0,0,9,7,4,1,381.3333333333333,272079.7136370184,127685.1800821576,225509.9126514838,21041.74098332765,3190.386339234812 -10357,12748,23163,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.424798448442951,8.970038865935985,7.792717326853176,0,0,-949.7716787384995,0,1,1,2019,7,0,57,57,1,0,0,10.29434369461842,10.29434369461842,0,0,0,0,0,0,0,0,7.17258259894115,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,406,-23655.68418585092,0,0,0,3836.297197319008 -10358,12749,23164,23165,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,9,-2,-19.12476427014845,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.280679567472407,0,60.87,42.1,58.72,51.29,8.333333333333334,1,1,0,0,2,8,2,1,4666,782227.3296817436,357294.7998981417,454260.2147563933,0,1406.760427378265 -10358,12749,23165,23164,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.296123317576464,7.23649284384046,9,2,79.90929277855176,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.491870886083526,7.256517927078073,58.72,51.29,60.87,42.1,8.333333333333334,1,1,0,0,2,8,2,1,4666,782227.3296817436,357294.7998981417,454260.2147563933,0,1406.760427378265 -10359,12750,23166,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.045186212225014,7.525760779201772,0,0,0,-899.3628950119851,0,3,2,2019,12,0,33,32,1,0,0,8.526519841812368,8.526519841812368,0,0,0,0,0,1,1,0,0,0,53.42,52.33,-9,-9,3.333333333333333,1,1,0,1,7,6,3,0,257,234493.7632908215,26629.88155457903,0,0,566.1810135708153 -10360,12751,23167,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1020.638507895651,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,44.97,41.91,-9,-9,3.333333333333333,1,1,1,0,0,2,1,1,709,22157.34354202816,67347.83413085467,0,0,230.9430716018495 -10361,12752,23168,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.368198735583027,6.14132323138805,0,0,-989.0415910465682,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.576166452782127,54.37,54.8,-9,-9,10,1,1,0,0,0,12,2,1,639,386109.1701581471,87603.31710027928,194763.6774448365,0,1070.274952642819 -10362,12753,23169,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.199911926578813,6.903588713473175,0,0,0,-1092.615260514801,0,3,3,2019,13,2,16,16,1,2,0,8.307239987123248,8.307239987123248,0,0,0,0,0,1,1,0,0,0,39.54,32.12,-9,-9,3.333333333333333,2,3,0,1,12,6,2,1,271,46610.83406163313,0,0,0,1244.107115230634 -10363,12754,23170,-9,23171,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.0914611496971,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,1,0,1946.333333333333,76190.00458132983,0,0,0,1380.520742469399 -10363,12754,23171,-9,-9,-9,1,0,24,1,2,0,1,1,-9,0,3,0,0,0,0,0,-948.4047931611851,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,13,1,0,1946.333333333333,76190.00458132983,0,0,0,1380.520742469399 -10363,12754,23172,-9,23171,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.381676400154,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1946.333333333333,76190.00458132983,0,0,0,1380.520742469399 -10364,12755,23173,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.773031298376204,7.965380170710016,0,0,0,-981.1656116389399,0,3,3,2019,11,0,43,43,1,0,0,6.665919659958134,6.665919659958134,0,0,0,0,0,0,0,0,0,0,41,56.99,-9,-9,5,2,3,0,0,7,2,4,1,584,-67509.91506661264,105493.4606042705,117356.8162847293,71563.94921075595,1882.796901210406 -10365,12756,23174,-9,23177,-9,1,0,25,0,1,0,2,2,0,0,3,0,0,0,0,0,-1096.483088636756,-9,2,1,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,1143,36241.50282874046,0,0,0,252.9001032137946 -10365,12757,23175,-9,23177,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-976.8505180774307,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,477.6666666666667,651491.8927620064,530282.4740891337,196741.3999966773,127874.4079251343,2689.012613804699 -10365,12757,23176,23177,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.04133241676948,8.44113363350151,0,5,2,-53.19464835347676,0,-9,-9,2019,9,1,40,40,1,1,0,11.98339289012741,11.98339289012741,0,0,0,0,0,1,1,0,0,0,47.49,55.02,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,477.6666666666667,651491.8927620064,530282.4740891337,196741.3999966773,127874.4079251343,2689.012613804699 -10365,12757,23177,23176,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,7.607037500424027,8.074063457916239,7.206697171727908,5,-2,13.79986911361426,0,2,2,2019,7,0,30,34,1,0,0,10.63636797296332,10.63636797296332,0,0,0,0,0,1,1,0,7.485561606197476,0,54.2,57.49,47.49,55.02,8.333333333333334,1,1,0,0,12,12,4,1,477.6666666666667,651491.8927620064,530282.4740891337,196741.3999966773,127874.4079251343,2689.012613804699 -10366,12758,23178,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.622709895337145,8.910713723908408,0,0,0,-967.7491084394447,0,3,3,2019,12,0,40,40,1,0,0,14.1467788050557,14.1467788050557,0,0,0,0,0,1,1,0,.7882485789265191,0,38,56.63,-9,-9,5,1,1,0,0,12,1,5,1,1062,814181.8812748763,737209.4639888935,127349.9718075088,46106.02781282239,1856.284606146774 -10367,12759,23179,-9,-9,23180,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.832606083945,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,789,152969.7685279832,-17435.01131712369,54506.85589189447,43945.18188884787,2234.352186386941 -10367,12759,23180,-9,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.236782268479544,8.050891005633444,3.691940533552814,0,0,-887.7461225711668,0,2,2,2019,8,2,40,25,1,2,0,8.71140394556282,8.71140394556282,0,0,0,0,0,1,1,0,3.27219112170325,0,51.66,46.64,-9,-9,8.333333333333334,2,3,0,0,9,2,3,1,789,152969.7685279832,-17435.01131712369,54506.85589189447,43945.18188884787,2234.352186386941 -10367,12759,23181,-9,-9,23180,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.6807060151468,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,3,1,789,152969.7685279832,-17435.01131712369,54506.85589189447,43945.18188884787,2234.352186386941 -10368,12760,23182,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1122.690417279452,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,37.32,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,209,251927.1390543604,0,0,0,488.5161025269564 -10369,12761,23183,23184,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.229842904062217,8.644401992363765,0,2,-1,-44.14930673705506,0,-9,-9,2019,7,0,40,30,1,0,0,15.97040630674669,15.97040630674669,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.07,60.93,8.333333333333334,2,3,0,0,2,5,4,0,713,315961.0770402919,-24958.11384870285,235914.8743353558,154671.2931305547,2414.540468083498 -10369,12761,23184,23183,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.677479728872129,7.413760250120127,0,2,1,-69.1862159337032,0,-9,-9,2019,1,0,30,25,1,0,0,8.912137587196099,8.912137587196099,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.06,57.76,10,2,3,0,0,6,5,4,0,713,315961.0770402919,-24958.11384870285,235914.8743353558,154671.2931305547,2414.540468083498 -10370,12762,23185,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.086644908382098,4.581856862744609,0,0,-1042.820860053199,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,14.86723447818876,0,0,1,1,0,0,4.945027458260256,47.32,17.81,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,483,266136.3777354599,-59037.38326377067,0,0,1882.604165621259 -10371,12763,23186,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.880392971348249,8.890115742318407,0,0,0,-1032.916390419478,0,-9,-9,2019,15,3,38,42,1,3,0,21.0981179639465,21.0981179639465,0,0,0,0,0,0,0,0,6.853733952637355,0,25.86,53.41,-9,-9,3.333333333333333,1,1,0,0,4,12,5,1,2416,450762.9890598559,170200.4463822291,253213.2932548851,72646.80799311734,2938.981812856103 -10372,12764,23187,23188,-9,-9,1,0,67,2,2,0,3,3,-9,0,2,0,0,0,50,-10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,5.876818168140642,0,27,1,1,0,0,0,46,23.63,54.51,29.47,6.666666666666667,2,3,0,0,0,8,1,1,541,354579.1606528906,0,393942.8421793039,0,1080.572265585817 -10372,12764,23188,23187,-9,-9,1,1,77,2,2,0,2,2,-9,0,2,0,0,0,50,10,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,23.09398651239587,0,14.5,1,1,0,0,0,54.51,29.47,46,23.63,8.333333333333334,2,3,0,0,0,8,1,1,541,354579.1606528906,0,393942.8421793039,0,1080.572265585817 -10372,12765,23189,23191,23187,23188,1,1,29,2,2,0,1,1,-9,0,3,8.951093291825522,8.813279665282064,0,3,0,-50.2660998516388,0,3,2,2019,19,7,35,35,1,7,0,24.58738012216972,24.58738012216972,0,0,0,0,7,1,1,0,0,0,44.43,56.74,43.83,37.91,5,2,3,0,0,5,8,4,1,1611,-3872.025151361708,5486.425736205323,0,0,3030.344947643085 -10372,12765,23190,-9,23191,23189,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-979.0937309706875,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1611,-3872.025151361708,5486.425736205323,0,0,3030.344947643085 -10372,12765,23191,23189,-9,-9,1,0,29,2,2,0,1,1,-9,0,2,0,0,0,3,0,-15.71309348534317,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.83,37.91,44.43,56.74,3.333333333333333,2,3,1,0,0,8,4,1,1611,-3872.025151361708,5486.425736205323,0,0,3030.344947643085 -10372,12765,23192,-9,23191,23189,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.891536259154,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1611,-3872.025151361708,5486.425736205323,0,0,3030.344947643085 -10373,12766,23193,23194,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.556112585506787,8.245120310352837,0,31,5,59.72386732886811,0,1,3,2019,12,1,37,33,1,1,0,13.89513090598576,13.89513090598576,0,0,0,0,0,0,0,0,0,0,50.44,42.99,49.69,52.99,5,1,1,0,0,11,5,5,1,521.5,1382339.270597966,1004723.84936214,299175.627170202,0,4259.793481666989 -10373,12766,23194,23193,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.519418338024465,8.365656426783193,0,9,-5,115.4665969769187,0,2,2,2019,9,0,37,43,1,0,0,14.22672182208148,14.22672182208148,0,0,0,0,14.5,0,0,0,0,0,49.69,52.99,50.44,42.99,8.333333333333334,1,1,0,0,11,5,5,1,521.5,1382339.270597966,1004723.84936214,299175.627170202,0,4259.793481666989 -10373,12767,23195,-9,23194,23193,1,0,23,0,0,0,2,2,-9,0,4,7.870155183160974,7.920548656827503,0,0,0,-1048.641115437443,0,2,2,2019,9,2,38,40,1,2,1,9.139331932129211,9.139331932129211,0,0,0,0,0,0,0,0,2.653052557284996,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,135,43309.60202728844,0,0,0,1560.795831092466 -10374,12768,23196,-9,23198,23199,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.0252269992105,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,12,3,0,800.75,-16697.20552025187,21124.78092538374,0,0,2483.648157443806 -10374,12768,23197,-9,23198,23199,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.734274171724,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,12,3,0,800.75,-16697.20552025187,21124.78092538374,0,0,2483.648157443806 -10374,12768,23198,23199,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.189139012802145,7.172090114149087,0,6,0,-135.1239590461154,0,2,-9,2019,4,0,20,20,1,0,0,8.075081957971108,8.075081957971108,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.98,50.87,8.333333333333334,4,2,0,0,7,12,3,0,800.75,-16697.20552025187,21124.78092538374,0,0,2483.648157443806 -10374,12768,23199,23198,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.197944612845941,7.974365478534229,0,6,0,75.05811583489832,0,2,-9,2019,11,0,37,37,1,0,0,13.29195943987029,13.29195943987029,0,0,0,0,0,1,1,0,0,0,53.98,50.87,58.32,50.22,6.666666666666667,1,1,0,0,7,12,3,0,800.75,-16697.20552025187,21124.78092538374,0,0,2483.648157443806 -10375,12769,23200,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.895265771913942,5.765136767931676,0,0,-900.2938265822009,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.787943520650646,5.756973517767817,57.33,53.46,-9,-9,10,1,1,0,0,0,2,2,1,432,327130.0192871152,41262.79373696622,179062.4566166548,0,963.8531790583885 -10376,12770,23201,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-971.6588840968324,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,790,190657.207703914,0,169622.24617922,5927.414508310318,1046.365910012124 -10377,12771,23202,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-933.2401794226944,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,315,-90934.8773168575,0,0,0,0 -10378,12772,23203,23204,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.841195454709069,8.90915029525565,0,10,-3,-145.4034617578518,0,2,3,2019,10,1,40,37,1,1,0,19.02342618529861,19.02342618529861,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,1353.5,84536.77843908838,70637.70077916773,136955.9783469152,49675.13335824906,4115.957722901547 -10378,12772,23204,23203,-9,-9,1,1,40,2,2,0,2,2,-9,0,4,8.337070636109843,8.710715260860166,0,10,3,130.3151650235928,0,3,3,2019,7,0,37,37,1,0,0,13.0776306726934,13.0776306726934,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,13,5,1,1353.5,84536.77843908838,70637.70077916773,136955.9783469152,49675.13335824906,4115.957722901547 -10378,12772,23205,-9,23203,23204,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.178008508838,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1353.5,84536.77843908838,70637.70077916773,136955.9783469152,49675.13335824906,4115.957722901547 -10378,12772,23206,-9,23203,23204,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-896.3415311873457,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1353.5,84536.77843908838,70637.70077916773,136955.9783469152,49675.13335824906,4115.957722901547 -10379,12773,23207,23208,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.205505805835241,8.263676927186259,0,8,-1,2.63060282867891,0,2,2,2019,10,0,44,44,1,0,0,10.89388973589175,10.89388973589175,0,0,0,0,0,1,1,0,0,0,43.61,56.01,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,319.5,1501160.492133695,1224761.849294828,357401.2672777014,161469.294654028,3200.416585685644 -10379,12773,23208,23207,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.294268448092025,8.535346042125664,0,8,1,88.72869924522563,0,3,3,2019,9,1,30,0,1,1,0,17.30985379828438,17.30985379828438,0,0,0,0,7,1,1,0,0,0,57.16,56.15,43.61,56.01,8.333333333333334,1,1,0,0,9,12,5,1,319.5,1501160.492133695,1224761.849294828,357401.2672777014,161469.294654028,3200.416585685644 -10380,12774,23209,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.020393992080869,8.049477311592332,0,0,-1048.605976954835,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.308967965224525,8.299372807477814,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,5,11,4,0,607,560965.2477675839,690452.9744448569,0,0,2023.260052427161 -10381,12775,23210,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,7.079946640919753,6.776356229359759,0,0,-1039.445829254381,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,6.973716748968685,40.48,45.26,-9,-9,3.333333333333333,1,1,0,1,7,7,2,1,357,2382067.129817017,0,1834039.381879724,0,404.995237418397 -10382,12776,23211,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,0,0,-907.7802461106795,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,21.24,-9,-9,6.666666666666667,2,3,0,1,0,8,1,0,555,-83633.55333836455,0,0,0,2047.655630029657 -10382,12776,23212,-9,23211,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.587148272504,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.0461246801512463,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,555,-83633.55333836455,0,0,0,2047.655630029657 -10383,12777,23213,23214,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.381125949163065,7.307072684209159,53,3,72.5617719753221,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,1.263149080664009,0,1,1,0,5.681387234851511,7.525006602302867,54.2,57.49,48.18,61.8,10,1,1,0,0,0,5,3,1,206,743987.240584827,431505.0166749404,12856.26515857478,0,1974.169069540548 -10383,12777,23214,23213,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.558923903884601,7.092310871841383,53,-3,-49.49947733757394,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.419755529985832,6.408005374436933,48.18,61.8,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,206,743987.240584827,431505.0166749404,12856.26515857478,0,1974.169069540548 -10384,12778,23215,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.0053286493114,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,14.19026519438902,9.924256596786169,129.7895359572378,0,1,1,0,0,0,58.53,28.59,-9,-9,10,1,1,0,0,0,11,1,1,272,-29237.70949006701,0,0,0,505.8125462820939 -10385,12779,23216,23217,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,9.46421599893481,9.164832650705844,0,8,-7,27.44015467828676,0,3,2,2019,10,0,45,0,1,0,0,30.10759502895021,30.10759502895021,0,0,0,0,0,0,0,0,1.702921135517214,0,46.57,54.66,55.36,51.57,8.333333333333334,1,1,0,0,7,10,5,1,304.5,6899687.482663246,200817.0868791897,991815.5613128513,0,6264.638589676348 -10385,12779,23217,23216,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,7.681138115526943,8.28616612024541,8,7,-95.68988678462773,0,2,2,2019,10,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,7.432154740095546,8.031050236232929,55.36,51.57,46.57,54.66,8.333333333333334,1,1,0,0,9,10,5,1,304.5,6899687.482663246,200817.0868791897,991815.5613128513,0,6264.638589676348 -10386,12780,23218,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.020442676550536,8.200075149540821,0,0,0,-899.9559952248881,0,3,2,2019,11,0,45,45,1,0,0,8.929079787012407,8.929079787012407,0,0,0,0,0,0,0,0,0,0,55.73,46.11,-9,-9,6.666666666666667,2,3,0,0,9,8,4,1,648,183464.0306315705,47951.41550265032,0,0,1600.024721921991 -10386,12781,23219,-9,23218,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1096.064995886516,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,7,0,0,0,0,0,33.74,63,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,709,77443.76068790646,0,0,0,605.3715605148727 -10387,12782,23220,-9,23221,23222,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.9811656747451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,521.6666666666666,-61462.51678234551,-35574.88673945802,147456.4541040002,48473.35610432716,3183.510295827475 -10387,12782,23221,23222,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.331671588088517,7.241067984871051,0,7,-1,73.51386151786599,0,-9,2,2019,6,0,22,20,1,0,0,7.546721465243117,7.546721465243117,0,0,0,0,0,1,1,0,0,0,62.49,55.09,47.55,55.06,1.666666666666667,1,1,0,0,9,2,4,1,521.6666666666666,-61462.51678234551,-35574.88673945802,147456.4541040002,48473.35610432716,3183.510295827475 -10387,12782,23222,23221,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.374377388562873,8.590976919872451,0,7,1,63.03123518186653,0,-9,-9,2019,11,0,40,60,1,0,0,16.58210381754115,16.58210381754115,0,0,0,0,0,1,1,0,0,0,47.55,55.06,62.49,55.09,8.333333333333334,1,1,0,0,4,2,4,1,521.6666666666666,-61462.51678234551,-35574.88673945802,147456.4541040002,48473.35610432716,3183.510295827475 -10388,12783,23223,23224,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.201152503533612,8.42994939985279,0,25,-1,13.18751399378716,0,3,3,2019,12,0,40,38,1,0,0,9.203407367348852,9.203407367348852,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.32,50.22,3.333333333333333,1,1,0,0,12,5,5,0,663.5,178201.8356346558,33725.45190620451,220475.7144507059,103982.9596740969,3527.327467398306 -10388,12783,23224,23223,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.630775375711805,8.747585212895276,0,11,1,28.14959621566792,0,-9,-9,2019,10,0,37,47,1,0,0,15.23161270861985,15.23161270861985,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.37,54.8,3.333333333333333,1,1,0,0,11,5,5,0,663.5,178201.8356346558,33725.45190620451,220475.7144507059,103982.9596740969,3527.327467398306 -10389,12784,23225,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-890.2768541708001,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.719493954949369,0,49.94,27.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1109,-118394.2718228596,0,130458.9681457305,0,1032.143304383199 -10390,12785,23226,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.921588205887632,7.960917858878675,0,0,0,-1045.973069523687,0,2,2,2019,17,5,55,0,1,5,0,4.901813236459911,4.901813236459911,0,0,0,0,0,1,1,0,.3264964419266341,0,33.01,48.38,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,955,54986.72125222361,-15210.31708353075,0,0,1269.341061261233 -10390,12785,23227,-9,23226,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.127393207912,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,955,54986.72125222361,-15210.31708353075,0,0,1269.341061261233 -10390,12786,23228,-9,23226,-9,1,1,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-867.6451239460396,-9,1,-9,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,2.686711423507448,0,30.2,64.86,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,2326,30818.03823153334,0,0,0,370.245384400249 -10391,12787,23229,-9,-9,-9,1,0,42,0,3,0,1,1,-9,1,4,0,0,0,0,0,-1056.909120045296,0,2,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.8,62.45,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,1027.25,-39528.39904460824,50763.54924931641,0,0,2058.668076781099 -10391,12787,23230,-9,23229,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.23411488794,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,1,1027.25,-39528.39904460824,50763.54924931641,0,0,2058.668076781099 -10391,12787,23231,-9,23229,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.8630781221676,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,1,1027.25,-39528.39904460824,50763.54924931641,0,0,2058.668076781099 -10391,12787,23232,-9,23229,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.170165007265,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,1,1027.25,-39528.39904460824,50763.54924931641,0,0,2058.668076781099 -10392,12788,23233,23236,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.568408081966577,8.591164872356572,0,12,2,-33.73827917692552,0,-9,-9,2019,10,0,44,38,1,0,0,14.31698567865877,14.31698567865877,0,0,0,0,0,1,1,0,7.001632079239687,0,49.35,59.64,54.79,55.86,8.333333333333334,1,1,0,0,9,13,5,1,1876,999532.0772711943,263187.2015531137,433849.3632232666,0,4636.270290264687 -10392,12788,23234,-9,23233,23236,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.6707763304215,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1876,999532.0772711943,263187.2015531137,433849.3632232666,0,4636.270290264687 -10392,12788,23235,-9,23233,23236,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.1469689879372,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1876,999532.0772711943,263187.2015531137,433849.3632232666,0,4636.270290264687 -10392,12788,23236,23233,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.914270532765936,9.038163118756788,0,8,-2,-18.67309846938818,0,-9,-9,2019,10,2,40,80,1,2,0,14.62182488689169,14.62182488689169,0,0,0,0,0,1,1,0,2.76607511977854,0,54.79,55.86,49.35,59.64,8.333333333333334,1,1,0,0,9,13,5,1,1876,999532.0772711943,263187.2015531137,433849.3632232666,0,4636.270290264687 -10393,12789,23237,-9,23240,23238,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.392304889109,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,3,0,795.4,425626.8420513663,45274.92659561961,361167.0849720608,0,3656.161681186962 -10393,12789,23238,23240,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.657458137089803,8.445652283476781,0,19,11,15.58905638156019,0,3,2,2019,11,0,40,30,1,1,0,15.34141055961245,15.34141055961245,0,0,0,0,0,1,1,0,0,0,49,50,54.2,57.49,7,2,3,0,0,13,8,3,0,795.4,425626.8420513663,45274.92659561961,361167.0849720608,0,3656.161681186962 -10393,12789,23239,-9,23240,23238,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.7093952443,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,0,795.4,425626.8420513663,45274.92659561961,361167.0849720608,0,3656.161681186962 -10393,12789,23240,23238,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,20,-11,74.73006180441871,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.344922930039147,0,54.2,57.49,49,50,5,2,3,0,0,0,8,3,0,795.4,425626.8420513663,45274.92659561961,361167.0849720608,0,3656.161681186962 -10393,12789,23241,-9,23240,23238,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1076.989467327377,-9,2,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,3,0,795.4,425626.8420513663,45274.92659561961,361167.0849720608,0,3656.161681186962 -10394,12790,23242,23243,-9,-9,1,1,64,1,0,0,3,3,-9,0,2,0,0,0,9,16,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.26,35.24,51.24,58.84,5,1,1,0,0,4,1,1,0,810.3333333333334,356678.7169443776,126899.1164162476,150025.703401051,0,1291.449236349155 -10394,12790,23243,23242,-9,-9,1,0,48,1,0,0,3,3,-9,0,4,0,0,0,9,-16,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,62.26,35.24,5,1,1,0,0,0,1,1,0,810.3333333333334,356678.7169443776,126899.1164162476,150025.703401051,0,1291.449236349155 -10394,12790,23244,-9,23243,23242,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1061.905184182373,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,1,1,0,810.3333333333334,356678.7169443776,126899.1164162476,150025.703401051,0,1291.449236349155 -10395,12791,23245,23246,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.488270284452903,7.819171058470586,0,12,15,134.5334596618677,0,2,2,2019,6,0,15,17,1,0,0,17.79043556771207,17.79043556771207,0,0,0,0,0,1,1,0,0,0,54.79,55.86,39.28,59.59,8.333333333333334,2,3,0,0,9,8,3,1,452.5,1273760.227562233,129326.5733717728,1699830.189225694,998691.7568751795,1769.286037858981 -10395,12791,23246,23245,-9,-9,1,0,30,0,2,0,2,2,-9,0,5,7.300173683459302,7.120879490920168,0,12,-15,-37.25661862754325,0,2,2,2019,5,0,17,17,1,0,0,9.940153700144448,9.940153700144448,0,0,0,0,0,1,1,0,0,0,39.28,59.59,54.79,55.86,8.333333333333334,2,3,0,0,8,8,3,1,452.5,1273760.227562233,129326.5733717728,1699830.189225694,998691.7568751795,1769.286037858981 -10395,12791,23247,-9,23246,23245,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.7136297077736,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,452.5,1273760.227562233,129326.5733717728,1699830.189225694,998691.7568751795,1769.286037858981 -10395,12791,23248,-9,23246,23245,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.6320940852783,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,452.5,1273760.227562233,129326.5733717728,1699830.189225694,998691.7568751795,1769.286037858981 -10396,12792,23249,23250,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.970478314582087,7.016806070178109,0,2,-6,137.4454630059398,0,2,3,2019,7,0,40,45,1,0,0,2.790239438182297,2.790239438182297,0,0,0,2.139527441632644,0,0,0,0,0,0,59.88,48.2,60.12,54.8,8.333333333333334,1,1,0,0,6,13,3,1,752,-217768.0767319302,-86405.05351481156,132726.900838413,87941.1625185009,1444.785045972561 -10396,12792,23250,23249,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.819920649585731,7.806334841748604,0,2,6,-67.82471823942112,-9,-9,-9,2019,5,0,44,0,1,0,0,4.307467152200021,4.307467152200021,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.88,48.2,8.333333333333334,1,1,0,0,8,13,3,1,752,-217768.0767319302,-86405.05351481156,132726.900838413,87941.1625185009,1444.785045972561 -10397,12793,23251,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1060.380280826595,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.75,31.51,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,474,434144.1236866505,0,478435.6939813807,0,262.2111807155806 -10398,12794,23252,-9,23253,23255,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.8529608319143,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,622,984209.9817385697,471629.8912104758,246296.9062974981,0,1436.008522336565 -10398,12794,23253,23255,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,0,0,0,10,-15,36.98512699379648,0,2,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,38.85,47.08,33.67,52.21,3.333333333333333,1,1,0,0,1,4,2,0,622,984209.9817385697,471629.8912104758,246296.9062974981,0,1436.008522336565 -10398,12794,23254,-9,23253,23255,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.6041429381299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,622,984209.9817385697,471629.8912104758,246296.9062974981,0,1436.008522336565 -10398,12794,23255,23253,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,6.949909584919045,7.280235167499656,0,10,15,-22.59614474068869,0,3,3,2019,15,3,16,16,1,3,0,8.261731775938891,8.261731775938891,0,0,0,0,0,1,1,0,0,0,33.67,52.21,38.85,47.08,3.333333333333333,1,1,0,0,11,4,2,0,622,984209.9817385697,471629.8912104758,246296.9062974981,0,1436.008522336565 -10399,12795,23256,23257,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,43,-1,51.79448676853249,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58,26.61,45.96,45.32,6.666666666666667,1,1,0,0,0,6,2,1,938,198656.9228200112,317172.6186735107,0,0,2179.189765261803 -10399,12795,23257,23256,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.156313710802722,7.403723259465102,42,1,112.8934652392034,-9,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.395011226416076,45.96,45.32,58,26.61,10,1,1,0,0,0,6,2,1,938,198656.9228200112,317172.6186735107,0,0,2179.189765261803 -10400,12796,23258,23259,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.716803058159162,8.96365053600238,0,6,0,-64.40798045219401,0,1,2,2019,6,0,40,90,1,0,0,21.25314488138898,21.25314488138898,0,0,0,0,0,0,0,0,7.413891149839189,0,60.02,56.42,48.28,60.18,8.333333333333334,1,1,0,0,5,12,4,1,625.5,37783.43957433484,-3793.639844291451,158868.6634612823,94825.80133689578,4416.692851054768 -10400,12796,23259,23258,-9,-9,1,0,28,0,0,0,2,2,0,0,4,0,0,0,6,0,104.6509355374647,-9,2,3,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,60.02,56.42,6.666666666666667,1,1,0,0,8,12,4,1,625.5,37783.43957433484,-3793.639844291451,158868.6634612823,94825.80133689578,4416.692851054768 -10401,12797,23260,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.131687300144193,8.267576053226291,0,0,-905.1656024448301,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.334688286518549,8.289979689663699,58.48,17.89,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,211,609412.7841915664,182569.9081796457,616779.4075217147,244322.1194862873,2149.275062350299 -10402,12798,23261,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,7.268673476879466,7.076147024355863,0,0,-977.6005257348254,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.469617301632339,6.972034858633219,59.05,40.21,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,542,105682.5116060811,58998.24194130152,0,0,588.6563585949781 -10403,12799,23262,23263,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-6,28.42515167479972,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.23,46.56,54,46,6.666666666666667,1,1,0,0,0,5,3,1,252,622182.5928413502,297255.7418953525,132741.8234558181,0,2754.723807603709 -10403,12799,23263,23262,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.893912163012384,7.81301852473053,56,6,100.8589330819194,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.625661926245153,7.510695945865359,54,46,51.23,46.56,8,1,1,0,0,0,5,3,1,252,622182.5928413502,297255.7418953525,132741.8234558181,0,2754.723807603709 -10404,12800,23264,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.758433552728005,7.539608146361356,0,0,0,-1068.023118709166,0,3,3,2019,22,9,20,50,1,9,0,12.27156342244586,12.27156342244586,0,0,0,0,0,0,0,0,0,0,24.88,56.31,-9,-9,1.666666666666667,1,1,0,1,5,6,3,1,560,77564.85031944871,80461.8638182979,0,0,1637.296003318534 -10405,12801,23265,23266,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.255447191162098,8.045160605758097,0,5,1,105.7999759991073,0,2,1,2019,7,0,26,44,1,0,0,16.19656423718317,16.19656423718317,0,0,0,0,0,0,0,0,6.372484771523276,0,62.42,32.41,54.2,57.49,1.666666666666667,1,1,0,0,7,12,3,1,713.5,130230.4883883285,-10160.57270746728,108390.9511897435,0,1428.057471559241 -10405,12801,23266,23265,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,5,-1,84.31712623304882,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.42,32.41,10,1,1,0,0,0,12,3,1,713.5,130230.4883883285,-10160.57270746728,108390.9511897435,0,1428.057471559241 -10406,12802,23267,-9,23268,23269,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.780645105233,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,389,2120075.969364547,1932960.091392153,279243.8621351622,120842.0728291026,3167.825715048862 -10406,12802,23268,23269,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.272230975473715,7.053757136686413,0,6,-3,18.58032670039312,0,-9,-9,2019,11,0,20,20,1,0,0,6.751711507596604,6.751711507596604,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,389,2120075.969364547,1932960.091392153,279243.8621351622,120842.0728291026,3167.825715048862 -10406,12802,23269,23268,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.052964327633585,9.040886271736712,0,6,3,63.95210355935914,0,3,2,2019,12,0,43,38,1,0,0,28.2507886788774,28.2507886788774,0,0,0,0,0,1,1,0,.1304931071323593,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,7,9,5,1,389,2120075.969364547,1932960.091392153,279243.8621351622,120842.0728291026,3167.825715048862 -10407,12803,23270,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1035.817634868404,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,197,27390.47333109936,-37698.56152649364,0,0,823.768938862954 -10408,12804,23271,23272,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,5.757964083174532,6.248655694948973,6.01718512993529,40,0,19.52229044921374,0,3,3,2019,9,0,20,20,1,0,0,1.873758978360187,1.873758978360187,0,0,0,0,0,0,0,0,5.56699071436293,0,58.89,48.6,57.65,56.13,8.333333333333334,1,1,0,0,10,9,5,1,630,1594554.922481251,977392.82510756,681291.9704426859,109711.8677341934,2989.111503884486 -10408,12804,23272,23271,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.780809656327627,8.901172540914089,0,7,0,27.8629822943146,0,1,2,2019,6,0,47,42,1,0,0,18.99919969347116,18.99919969347116,0,0,0,0,0,0,0,0,4.513447435290233,0,57.65,56.13,58.89,48.6,10,1,1,0,0,10,9,5,1,630,1594554.922481251,977392.82510756,681291.9704426859,109711.8677341934,2989.111503884486 -10408,12805,23273,-9,23271,23272,1,0,33,0,0,0,1,1,-9,0,4,7.553685311502487,7.838153041457054,0,0,0,-1006.472823121917,0,1,1,2019,12,2,25,33,1,2,1,10.04185332756791,10.04185332756791,0,0,0,0,0,0,0,0,.3856139372219854,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,814,59021.52246686861,0,0,0,62.74495722903691 -10409,12806,23274,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.428310249251335,7.63801471492421,0,0,-921.1068347623864,0,-9,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.683418702057958,48.15,22.37,-9,-9,5,1,1,0,0,0,8,3,0,367,1136261.940850694,260654.6947979704,512131.3091161696,0,3788.375466639839 -10410,12807,23275,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,7.605359385104027,7.589821384644222,0,0,-957.0235033845402,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.091290838221189,7.710008553774049,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,802,774042.2785455966,206148.9340648397,219951.2524328494,0,1544.347801568714 -10411,12808,23276,23277,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,5.648194684851282,6.066507593622591,51,-2,74.19730607163686,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.994755484128324,5.772972891823386,60.86,34.43,28.1,28.06,8.333333333333334,1,1,0,0,0,10,2,1,485,1052496.002651152,476461.056080215,429267.3310971413,0,1733.514669858986 -10411,12808,23277,23276,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,5.939246477614414,5.967224896118504,51,2,-91.03606604362686,0,-9,-9,2019,29,11,0,0,4,11,0,0,0,1,0,3.238917347785373,0,0,1,1,0,2.324914402802385,6.097095253738828,28.1,28.06,60.86,34.43,1.666666666666667,1,1,0,0,0,10,2,1,485,1052496.002651152,476461.056080215,429267.3310971413,0,1733.514669858986 -10412,12809,23278,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.29796788996464,7.547167161775958,0,0,0,-987.5746443238623,0,2,1,2019,11,0,36,24,1,0,0,4.629878086739812,4.629878086739812,0,0,0,0,0,1,1,0,0,0,50.65,53.71,-9,-9,8.333333333333334,1,1,0,0,9,13,2,0,991,18927.94768502744,-56581.86822629938,0,0,1861.249143437667 -10412,12809,23279,-9,23278,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-920.6870275819015,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,2,0,991,18927.94768502744,-56581.86822629938,0,0,1861.249143437667 -10412,12809,23280,-9,23278,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1101.352675872071,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,13,2,0,991,18927.94768502744,-56581.86822629938,0,0,1861.249143437667 -10413,12810,23281,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.638393263624504,7.640927409762109,0,0,0,-1052.997375913464,0,-9,-9,2019,8,2,30,30,1,2,0,6.836792832731567,6.836792832731567,0,0,0,0,0,0,0,0,5.616444521008829,0,62.96,55.09,-9,-9,0,1,1,0,0,11,8,3,0,206,-3622.313401737616,-40891.36078233922,0,0,1197.473214312259 -10414,12811,23282,23283,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.043930287596464,7.64744537769472,0,10,-4,-60.02005632305735,0,3,2,2019,17,3,40,40,1,3,0,9.753415969137597,9.753415969137597,0,0,0,0,0,0,0,0,0,0,48,51,50,54,1.666666666666667,2,3,0,1,11,5,3,1,459.5,9345.790479188567,251226.2042025412,102950.7329701445,41144.41500469949,1842.646891315203 -10414,12811,23283,23282,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.803332886978677,6.630849918750647,0,14,4,-81.00383524270239,0,3,2,2019,10,0,14,0,1,1,0,5.958210928623821,5.958210928623821,0,0,0,0,0,0,0,0,0,0,50,54,48,51,8,2,3,0,0,11,5,3,1,459.5,9345.790479188567,251226.2042025412,102950.7329701445,41144.41500469949,1842.646891315203 -10415,12812,23284,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,2,0,0,0,0,0,-952.8826753621719,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,23.05,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,529,163967.5073411929,162686.6356026955,0,0,1659.660448025768 -10415,12813,23285,-9,23284,-9,1,0,21,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1069.496593571566,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,1,0,1,11,1,1,1104.5,-80326.62210099955,0,0,0,733.2454875389828 -10415,12813,23286,-9,23285,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-890.3955695507525,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,1,1,1104.5,-80326.62210099955,0,0,0,733.2454875389828 -10416,12814,23287,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.320756000798223,7.888121920531506,0,0,0,-979.7091015844842,0,-9,-9,2019,11,0,40,45,1,0,0,10.93651340989148,10.93651340989148,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,1169,-155569.0725425836,-13252.20385645181,0,0,1468.73835958393 -10417,12815,23288,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1010.805795944859,0,3,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.74,43.48,-9,-9,8.333333333333334,1,1,1,0,1,13,2,0,515,160659.7879929697,0,0,0,989.3416424542526 -10418,12816,23289,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.170348477425981,5.983216828505526,0,0,-957.8589988491328,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.047242047053141,52,45,-9,-9,8,3,4,0,1,0,6,2,1,606,217557.4849545149,739.8472569190199,0,0,792.11606642091 -10419,12817,23290,23292,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.30584938557883,8.295444033178216,0,7,-3,102.483134197435,0,2,2,2019,3,0,39,36,1,0,0,11.02806185921682,11.02806185921682,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,1181,97307.13315299524,-2527.970374556848,61797.4880442611,51566.14390372241,3106.169489595819 -10419,12817,23291,-9,23292,23290,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.725929781147,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1181,97307.13315299524,-2527.970374556848,61797.4880442611,51566.14390372241,3106.169489595819 -10419,12817,23292,23290,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.211059109990661,7.858071694378703,0,7,3,-28.51568344583409,0,2,3,2019,7,0,36,40,1,0,0,9.052016409035636,9.052016409035636,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,2,4,1,1181,97307.13315299524,-2527.970374556848,61797.4880442611,51566.14390372241,3106.169489595819 -10419,12818,23293,-9,23292,23290,1,1,22,0,1,0,2,2,-9,0,4,7.785633482996899,8.075965090856384,0,0,0,-1030.428894941065,0,2,3,2019,7,0,41,37,1,0,1,6.790303250827658,6.790303250827658,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,1289,177494.5526472845,0,122348.4713096851,117380.1196298309,240.9205777617554 -10420,12819,23294,-9,-9,-9,1,0,47,0,0,0,1,1,-9,1,4,7.901881717111165,7.748881422419318,0,0,0,-935.0634273352642,0,-9,-9,2019,9,0,22,21,1,0,0,12.59060785957929,12.59060785957929,0,0,0,0,0,1,1,0,0,0,45.5,34.25,-9,-9,6.666666666666667,1,1,0,0,6,8,3,0,861,300684.7721075884,-38694.987710634,271526.8158314566,0,2825.3470303868 -10420,12819,23295,-9,23294,-9,1,1,17,0,0,1,2,0,0,0,4,0,4.902371340251599,5.423776791056068,0,0,-1041.139278040192,-9,1,-9,2019,19,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,4.857961012452352,0,56.75,49.4,-9,-9,6.666666666666667,1,1,0,0,0,8,3,0,861,300684.7721075884,-38694.987710634,271526.8158314566,0,2825.3470303868 -10420,12820,23296,-9,23294,-9,1,1,22,0,0,0,2,2,-9,0,4,7.51916328316615,7.902799512734267,0,0,0,-926.4935130499723,0,1,-9,2019,7,0,48,48,1,0,1,4.435053789854722,4.435053789854722,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,3.333333333333333,4,5,0,0,3,8,3,0,843,-53380.35243150191,0,0,0,1077.664281743603 -10420,12821,23297,-9,23294,-9,1,1,21,0,0,0,2,2,-9,0,5,7.15403545127811,7.144143748033263,0,0,0,-1039.166846715465,0,3,2,2019,9,1,20,0,1,1,1,6.500814704762624,6.500814704762624,0,0,0,0,7,1,1,0,0,0,48.8,54.86,-9,-9,8.333333333333334,1,1,0,0,4,8,2,0,671,0,0,0,0,908.6964197713747 -10421,12822,23298,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.729379985641618,8.595530347034819,0,0,0,-1017.450482237878,0,2,2,2019,9,1,55,37,1,1,0,11.22133845481057,11.22133845481057,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,3,13,5,1,696,41501.84300465594,37953.44107711437,0,0,1852.921489149805 -10422,12823,23299,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,2,0,0,0,0,0,-987.3784836044864,-9,-9,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,25.16,49.61,-9,-9,5,1,1,0,0,5,7,1,1,280,200898.366884541,0,0,0,0 -10423,12824,23300,-9,23301,23303,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-915.5048795886942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10423,12824,23301,23303,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,0,0,21,3,-24.21792225837325,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,40.7,56.33,51.02,8.333333333333334,2,3,0,0,1,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10423,12824,23302,-9,23301,23303,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.0774351644533,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10423,12824,23303,23301,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,7.313251850744872,7.409728562177818,0,21,-3,-23.67911598962063,0,2,2,2019,10,0,40,35,1,0,0,3.860244102708887,3.860244102708887,0,0,0,0,0,1,1,0,3.164976340899894,0,56.33,51.02,55.6,40.7,1.666666666666667,2,3,0,0,9,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10423,12824,23304,-9,23301,23303,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-998.3572741124425,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,10,2,3,0,0,0,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10423,12824,23305,-9,23301,23303,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.809600071476,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,648.6666666666666,185453.8076377734,131834.0180102266,77203.20676701111,35019.67057871215,2020.222783290948 -10424,12825,23306,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.000857154050733,8.977654797515834,0,0,0,-974.4231570735517,0,2,2,2019,7,0,45,49,1,0,0,17.64664453393753,17.64664453393753,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,573,232190.340220545,402061.1664526241,0,0,2783.410447937706 -10424,12826,23307,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.292313502213645,8.273030454604989,0,0,0,-980.3074430321944,0,-9,-9,2019,9,0,48,58,1,0,0,10.29118270820294,10.29118270820294,0,0,0,0,0,0,0,0,2.28254692932321,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,8,8,4,1,1126,-167992.4954067449,42011.96777152516,0,0,1681.825508119084 -10425,12827,23308,23309,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,49,3,35.98292141007709,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,25.86036492812586,0,0,1,1,0,3.338102627832522,0,50,47,52,48,7,1,1,0,0,6,6,3,1,574.5,1137105.093397123,489083.3439557251,262944.2810314448,0,2900.445396430458 -10425,12827,23309,23308,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.898054520915528,7.697258825747939,49,-3,9.911978706076033,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,3.528135114799342,7.957873262621831,52,48,50,47,7,1,1,0,0,9,6,3,1,574.5,1137105.093397123,489083.3439557251,262944.2810314448,0,2900.445396430458 -10426,12828,23310,23311,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.665743441272989,8.584697733288113,0,6,0,37.86003656015025,0,2,2,2019,9,0,72,72,1,0,0,8.313434831130859,8.313434831130859,0,0,0,0,0,0,0,0,0,0,60.12,54.8,47.77,56.48,6.666666666666667,1,1,0,0,6,5,5,0,212.5,646925.1331363728,165943.4836358691,323083.9622145917,22057.57838211855,2948.226362975356 -10426,12828,23311,23310,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.349263997934298,7.935290774821484,0,6,0,59.09649746239047,0,1,2,2019,11,0,24,24,1,0,0,9.754865076175202,9.754865076175202,0,0,0,0,0,0,0,0,4.35655676149555,0,47.77,56.48,60.12,54.8,8.333333333333334,1,1,0,0,6,5,5,0,212.5,646925.1331363728,165943.4836358691,323083.9622145917,22057.57838211855,2948.226362975356 -10426,12829,23312,-9,23311,23310,1,0,23,0,0,0,1,1,1,0,5,7.957630635103791,8.169568811810052,0,0,0,-1093.827930864734,-9,1,2,2019,14,3,48,0,1,3,1,9.268950137043992,9.268950137043992,0,0,0,0,0,0,0,0,1.142607339069561,0,32.91,64.79000000000001,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,189,-264390.4499455434,0,0,0,1274.71688759549 -10426,12830,23313,-9,23311,23310,1,1,19,0,0,0,2,2,-9,0,5,8.100102291212922,7.814019442544003,0,0,0,-1037.652697799014,0,1,2,2019,18,7,40,40,1,7,1,10.65821578687543,10.65821578687543,0,0,0,0,0,0,0,0,0,0,32.64,62.12,-9,-9,5,1,1,0,0,4,5,4,0,582,59279.98188525934,0,0,0,1122.902824529126 -10427,12831,23314,23315,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,6,10,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,78.74012368229381,0,71.5,1,1,0,0,0,53,47,50,47,7,1,1,0,0,0,2,1,0,450,121223.8938396747,-43791.09729668135,261670.3225317002,0,1902.857314353978 -10427,12831,23315,23314,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,40,-10,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,2,1,0,450,121223.8938396747,-43791.09729668135,261670.3225317002,0,1902.857314353978 -10428,12832,23316,-9,23317,23319,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.1699771290753,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,399.25,283297.6293629081,100230.7744179543,264210.5113093031,57290.12575933056,2204.537566224863 -10428,12832,23317,23319,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,0,0,0,24,-4,47.91925301417587,0,3,3,2019,29,10,0,42,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.09,40.41,53,55,0,2,3,1,0,8,2,3,1,399.25,283297.6293629081,100230.7744179543,264210.5113093031,57290.12575933056,2204.537566224863 -10428,12832,23318,-9,23317,23319,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.3445640972175,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,2,3,1,399.25,283297.6293629081,100230.7744179543,264210.5113093031,57290.12575933056,2204.537566224863 -10428,12832,23319,23317,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.112387227950869,8.051412310911402,0,24,4,-75.3956098603021,0,3,3,2019,9,0,40,50,1,1,0,9.808818872082231,9.808818872082231,0,0,0,0,0,1,1,0,0,0,53,55,28.09,40.41,8,2,3,0,0,1,2,3,1,399.25,283297.6293629081,100230.7744179543,264210.5113093031,57290.12575933056,2204.537566224863 -10428,12833,23320,-9,23317,23319,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-932.2301442999182,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.93,52.43,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,2596,30444.03221080186,0,0,0,-22.59854508721219 -10429,12834,23321,-9,23322,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.5873242828012,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,0,314.5,-139138.4853263256,0,0,0,1836.684777956022 -10429,12834,23322,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1019.875295446615,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,16.76,52.18,-9,-9,0,2,3,1,1,4,6,1,0,314.5,-139138.4853263256,0,0,0,1836.684777956022 -10429,12835,23323,-9,23322,-9,1,1,21,0,1,0,2,2,-9,0,3,6.306918221329137,6.38945661240176,0,0,0,-984.190653492509,0,2,2,2019,2,0,16,16,1,0,1,5.165508156160862,5.165508156160862,0,0,0,0,0,1,1,0,0,0,37.84,37.02,-9,-9,0,2,3,0,0,5,6,2,0,2491,52338.5683589159,0,0,0,515.4782303905181 -10429,12836,23324,-9,23322,-9,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-947.9099347251666,-9,2,-9,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,49.61,48.71,-9,-9,5,2,3,0,0,0,6,1,0,555,283154.9481462638,0,0,0,0 -10430,12837,23325,-9,23326,23328,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.6080513492025,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,5,1,669.5,629573.7045796497,541129.4840954186,136932.373801091,127888.967134233,4054.16874108138 -10430,12837,23326,23328,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.79347502793954,8.772441421003062,0,17,-1,-62.39909016913327,-9,2,2,2019,9,0,6,0,1,0,0,126.2845174893954,126.2845174893954,0,0,0,0,0,1,1,0,.3883502489129756,0,54.96,53.17,55.2,49.4,6.666666666666667,2,3,0,0,12,5,5,1,669.5,629573.7045796497,541129.4840954186,136932.373801091,127888.967134233,4054.16874108138 -10430,12837,23327,-9,23326,23328,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.771809507541,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,5,1,669.5,629573.7045796497,541129.4840954186,136932.373801091,127888.967134233,4054.16874108138 -10430,12837,23328,23326,23330,23329,1,1,42,0,2,0,1,1,-9,0,2,8.626429694099492,8.43578334469837,0,17,1,-47.93006833098555,0,3,3,2019,9,0,37,37,1,0,0,18.64015566492493,18.64015566492493,0,0,0,0,0,1,1,0,0,0,55.2,49.4,54.96,53.17,5,2,3,0,0,12,5,5,1,669.5,629573.7045796497,541129.4840954186,136932.373801091,127888.967134233,4054.16874108138 -10430,12838,23329,23330,-9,-9,1,1,68,0,2,0,3,3,-9,0,2,0,0,0,47,5,-176.4386668427304,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.562882577882232,0,61.1,46.73,64.64,48.76,0,2,3,0,0,9,5,2,1,280.5,873249.9858499188,256956.1223246066,638427.1089863121,101519.9415071393,2149.275553850705 -10430,12838,23330,23329,-9,-9,1,0,63,0,2,0,2,2,-9,0,3,7.748204794352198,7.746359663626598,0,47,-5,33.926047105846,0,3,3,2019,8,0,20,50,1,0,0,14.33650203120978,14.33650203120978,0,0,0,0,0,1,1,0,0,0,64.64,48.76,61.1,46.73,1.666666666666667,2,3,0,0,12,5,2,1,280.5,873249.9858499188,256956.1223246066,638427.1089863121,101519.9415071393,2149.275553850705 -10431,12839,23331,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1175.045981106388,0,-9,-9,2019,11,0,0,47,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,8,6,1,0,429,33474.71674398737,0,0,0,1390.639890228403 -10432,12840,23332,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,7.393131988639337,7.611909429967758,0,0,-1083.791054498181,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,7.774252896973548,48.89,48.16,-9,-9,6.666666666666667,1,1,0,0,8,9,3,1,659,359256.1355011658,323782.9598721071,75932.4163379393,0,668.5576157822891 -10433,12841,23333,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.722986440711594,7.128991219905694,0,0,-881.8515073519304,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.666062513417891,6.700810206107234,40.64,52.96,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,185,519841.5159630978,421743.5676907856,185095.5774833906,0,1480.638721981147 -10434,12842,23334,23336,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.629092166503407,8.591249348880179,0,9,3,-91.84739745352513,0,-9,-9,2019,12,0,43,44,1,0,0,14.3290981619765,14.3290981619765,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.19,58.01,8.333333333333334,1,1,0,0,12,12,5,1,752,1047603.833380448,967696.1294920789,173132.1097777312,28550.99838289771,4158.350096067958 -10434,12842,23335,-9,23336,23334,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-957.6376821018692,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,752,1047603.833380448,967696.1294920789,173132.1097777312,28550.99838289771,4158.350096067958 -10434,12842,23336,23334,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.787258698705395,8.78819777073479,0,9,-3,112.1013967552716,0,2,2,2019,12,4,35,40,1,4,0,22.08690532280392,22.08690532280392,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.16,56.15,6.666666666666667,1,1,0,0,12,12,5,1,752,1047603.833380448,967696.1294920789,173132.1097777312,28550.99838289771,4158.350096067958 -10434,12842,23337,-9,23336,23334,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.386015665139,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,752,1047603.833380448,967696.1294920789,173132.1097777312,28550.99838289771,4158.350096067958 -10435,12843,23338,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.309426275999359,7.608005883131159,0,0,0,-973.5519552932803,0,1,2,2019,17,7,33,40,1,7,0,6.434051143167058,6.434051143167058,0,0,0,0,0,1,1,0,0,0,41.36,59.41,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,60,209629.9190508429,0,0,0,669.4202286762833 -10435,12844,23339,-9,23338,-9,1,0,20,0,0,0,2,2,-9,0,2,7.949049811205995,7.671613958635898,0,0,0,-987.3434747400647,0,2,-9,2019,16,3,45,20,1,3,1,6.467097833530144,6.467097833530144,0,0,0,0,0,1,1,0,0,0,32.17,54.65,-9,-9,5,1,1,0,0,3,7,4,1,125,87416.25253393491,0,0,0,1523.798267104844 -10436,12845,23340,23341,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,7,-4,77.8706984698867,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,57.33,53.46,10,1,1,0,0,5,4,2,1,1111,263905.3934093107,41122.92771915716,205340.0165537572,-2043.541088234107,1506.976407421394 -10436,12845,23341,23340,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.49676439429596,6.351241277364499,7,4,-24.82251827175441,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.365626661013484,6.655765120112826,57.33,53.46,53.61,59.13,10,1,1,0,0,3,4,2,1,1111,263905.3934093107,41122.92771915716,205340.0165537572,-2043.541088234107,1506.976407421394 -10437,12846,23342,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-882.7868100793557,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,41.16,27.02,-9,-9,5,1,1,0,0,0,2,1,0,1045,0,0,0,0,1386.568412496872 -10438,12847,23343,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.757488783675402,7.723221838535181,0,0,-1084.260014821727,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.451046687313005,7.978761437966192,48.89,31.58,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1000,434988.5829646544,264992.6657860891,206998.1298442653,0,1863.66386588061 -10439,12848,23344,-9,23346,23345,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-973.1836147218214,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,3.736442652835124,0,47,60,-9,-9,7,1,1,0,0,0,6,5,1,962.6666666666666,246452.6686390595,191297.378561909,80632.34289058129,30486.38400209022,4168.615820220665 -10439,12848,23345,23346,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.651729995292508,8.802579137686251,0,9,7,22.50825380004645,0,2,3,2019,3,0,55,49,1,0,0,13.58795697234967,13.58795697234967,0,0,0,0,0,1,1,0,0,0,59.15,49.67,60.69,53.18,8.333333333333334,1,1,0,0,10,6,5,1,962.6666666666666,246452.6686390595,191297.378561909,80632.34289058129,30486.38400209022,4168.615820220665 -10439,12848,23346,23345,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.267388521306158,7.722133048284393,0,9,-7,93.89884278836736,0,2,3,2019,3,0,45,40,1,0,0,8.841585378595187,8.841585378595187,0,0,0,0,0,1,1,0,0,0,60.69,53.18,59.15,49.67,8.333333333333334,1,1,0,0,10,6,5,1,962.6666666666666,246452.6686390595,191297.378561909,80632.34289058129,30486.38400209022,4168.615820220665 -10439,12849,23347,-9,23346,23345,1,1,23,0,0,0,2,2,-9,0,4,7.996124221207268,7.775247746999819,0,0,0,-891.3449732249743,0,2,3,2019,7,1,42,43,1,1,1,8.015454145658573,8.015454145658573,0,0,0,0,0,1,1,0,3.75179280326395,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,866,26432.6171311412,0,0,0,900.9326133417028 -10439,12850,23348,-9,23346,23345,1,0,21,0,0,0,2,2,-9,0,5,7.865534035541534,7.989712482983098,0,0,0,-1005.618091279929,0,2,3,2019,6,0,46,35,1,0,1,6.654031011094889,6.654031011094889,0,0,0,0,0,1,1,0,.7553836112246817,0,60.02,56.42,-9,-9,10,1,1,0,0,4,6,3,1,604,239997.0487137104,-29656.02368873578,0,0,1424.256664730048 -10440,12851,23349,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.264941442660673,8.296416124973415,0,0,0,-941.7469920959217,0,-9,-9,2019,9,3,46,38,1,3,0,9.808806710956258,9.808806710956258,0,0,0,0,0,0,0,0,2.250017471478461,0,40.64,52.96,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,226,766268.2081366652,41675.60647146518,0,0,1615.225265983351 -10440,12852,23350,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.968528348720379,7.796954252634905,0,0,0,-1173.014956735541,0,-9,-9,2019,9,0,44,45,1,0,0,10.69483997848712,10.69483997848712,0,0,0,0,0,0,0,0,7.089674874618401,0,54.78,45.17,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,147,255209.3649782544,85203.81869584168,0,0,2003.98547180702 -10441,12853,23351,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.046195671636046,7.012944154766354,0,0,-940.0996776429973,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.431535040576835,6.984014768451317,61.45,29.78,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,5691,448262.5043446973,273534.3465600628,268058.4557770559,0,1737.236461754591 -10442,12854,23352,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,5.187232783318287,5.107218383790933,0,0,-996.3599149416618,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.208178086846837,5.417465738556666,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,5,1,2,1,823,164788.4462997761,27532.47738937964,0,0,472.463630174395 -10443,12855,23353,23354,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.32224352406317,8.457076399624802,0,41,1,153.5203516463523,0,3,3,2019,10,0,44,44,1,0,0,14.07569983371616,14.07569983371616,0,0,0,0,2,0,0,0,3.72071888484122,0,53.57,36.1,57.16,56.15,6.666666666666667,1,1,0,0,9,6,5,1,469,940748.3998383502,771080.5896725999,134803.1641843343,33843.63151879835,2921.972016435851 -10443,12855,23354,23353,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.858151210161838,7.854545944190383,0,41,-1,94.56621757608087,0,3,3,2019,11,0,38,38,1,0,0,7.40474520592985,7.40474520592985,0,0,0,0,2,0,0,0,3.545577514007557,0,57.16,56.15,53.57,36.1,8.333333333333334,1,1,0,0,9,6,5,1,469,940748.3998383502,771080.5896725999,134803.1641843343,33843.63151879835,2921.972016435851 -10444,12856,23355,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.414291046010735,8.12427771673881,0,0,0,-1013.436451262097,0,3,3,2019,9,1,37,34,1,1,0,13.34022855267754,13.34022855267754,0,0,0,.2156728275456938,0,0,0,0,7.331799281234257,0,59.3,39.29,-9,-9,3.333333333333333,1,1,0,0,10,9,4,1,776,131526.4729727283,-9074.153482665894,0,0,1845.287265731876 -10445,12857,23356,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,4,0,6.038632027739981,5.69905656721911,0,0,-1010.046479280527,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,5.68123230996324,0,46.88195031218376,2,1,1,0,2.571626934732794,6.030015529578785,61.3,29.75,-9,-9,10,1,1,0,0,0,5,2,0,368,240861.3093858566,53377.55567455574,262228.7268778668,0,608.38457593293 -10446,12858,23357,23358,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.98720554828014,8.288198703680056,0,6,-2,87.15249881813799,0,-9,-9,2019,6,0,38,33,1,0,0,9.985501992367629,9.985501992367629,0,0,0,0,0,0,0,0,4.169177890016062,0,51.73,58.82,52,54.51,6.666666666666667,1,1,0,0,7,10,4,1,3281.5,9324.234367995101,10051.7125885765,14716.03664460701,55347.71644481132,2343.867576684075 -10446,12858,23358,23357,-9,-9,1,1,29,0,0,0,3,3,-9,0,3,8.107277230883245,7.79923525182568,0,6,2,-92.59738701733686,0,3,2,2019,9,0,43,43,1,0,0,8.300152438015598,8.300152438015598,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,6.666666666666667,1,1,0,0,7,10,4,1,3281.5,9324.234367995101,10051.7125885765,14716.03664460701,55347.71644481132,2343.867576684075 -10447,12859,23359,-9,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,7.123600224400162,7.193400469294528,0,0,0,-1045.138999766675,0,3,3,2019,11,0,37,32,1,0,0,6.762643726839721,6.762643726839721,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,10,2,1,2028,212373.8459981083,40306.91843147588,276188.5534822142,56482.11294386617,1627.223929006146 -10447,12859,23360,-9,-9,23359,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.5993404395168,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,2028,212373.8459981083,40306.91843147588,276188.5534822142,56482.11294386617,1627.223929006146 -10447,12859,23361,-9,-9,23359,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.768202869577,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,2028,212373.8459981083,40306.91843147588,276188.5534822142,56482.11294386617,1627.223929006146 -10448,12860,23362,23363,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,9.883456919309154,9.954118842290384,0,15,2,70.46518201805013,0,3,3,2019,10,0,60,60,1,0,0,27.81129225499942,27.81129225499942,0,0,0,0,0,0,0,0,5.361893546640665,0,54.1,59.11,50,55,8.333333333333334,1,1,0,0,7,8,5,1,945,3619177.65580381,129229.0835018285,1956870.236513624,711579.4641338233,14182.82741043301 -10448,12860,23363,23362,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,9.695857808729416,9.531290125786494,0,7,-2,64.01566866043976,0,-9,-9,2019,10,0,60,38,1,1,0,29.93327841711134,29.93327841711134,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,8,5,1,945,3619177.65580381,129229.0835018285,1956870.236513624,711579.4641338233,14182.82741043301 -10449,12861,23364,23365,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,58,1,0,-9,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,62.32,36.18,8,1,1,0,0,0,7,1,0,541,112275.3047086488,1658.267496075205,127970.2138367404,0,1519.428112002403 -10449,12861,23365,23364,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,58,-1,0,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,9.125977746590834,0,120,1,1,0,0,0,62.32,36.18,52,45,8.333333333333334,1,1,0,0,0,7,1,0,541,112275.3047086488,1658.267496075205,127970.2138367404,0,1519.428112002403 -10450,12862,23366,23367,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.70028907460814,9.078741859080608,0,28,-1,-7.995172158925989,0,3,1,2019,12,0,45,47,1,0,0,17.49639941592606,17.49639941592606,0,0,0,0,0,0,0,0,0,0,44.53,56.37,57.16,56.15,6.666666666666667,1,1,0,0,9,11,5,1,1274.5,773704.5223927451,695877.6133104622,0,0,4930.300776375137 -10450,12862,23367,23366,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.030819770647486,8.895328286101931,0,28,1,-8.830251422978861,0,-9,2,2019,6,0,40,48,1,0,0,23.85607153106557,23.85607153106557,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.53,56.37,8.333333333333334,1,1,0,0,8,11,5,1,1274.5,773704.5223927451,695877.6133104622,0,0,4930.300776375137 -10450,12863,23368,-9,23366,23367,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1039.751541036733,1,1,2,2019,14,2,0,26,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,36.62,58.96,-9,-9,5,1,1,0,1,4,11,1,1,299,-96551.69991665051,0,0,0,-37.22934546508421 -10451,12864,23369,23370,-9,-9,1,0,58,1,1,0,2,2,-9,0,2,8.192481179261101,8.101711212478627,0,39,-7,16.81613054748037,0,2,2,2019,12,0,42,40,1,0,0,8.84190041294508,8.84190041294508,0,0,0,0,0,1,1,0,0,0,36.03,40.6,53,47,3.333333333333333,2,3,0,0,8,8,3,1,433,107383.8720261629,0,0,0,1664.121006310639 -10451,12864,23370,23369,-9,-9,1,1,65,1,1,0,1,1,-9,0,3,0,0,0,6,7,-81.00088410361832,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,47,36.03,40.6,7,2,3,0,0,7,8,3,1,433,107383.8720261629,0,0,0,1664.121006310639 -10451,12865,23371,-9,23373,23372,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.148175818549,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,736.6666666666666,70183.4001120091,-11490.55954386348,0,0,2226.73654769272 -10451,12865,23372,23373,23369,23370,1,1,32,1,1,0,2,2,-9,0,4,8.699397308485867,8.194475754275233,0,3,3,-77.07381504401356,0,1,1,2019,10,0,46,48,1,1,0,13.71084677854505,13.71084677854505,0,0,0,0,0,1,1,0,0,0,51,57,48.8,44.93,7,2,3,0,0,4,8,4,1,736.6666666666666,70183.4001120091,-11490.55954386348,0,0,2226.73654769272 -10451,12865,23373,23372,-9,-9,1,0,29,1,1,0,1,1,1,0,3,0,0,0,3,-3,-43.00010610276646,-9,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.8185685293678732,0,48.8,44.93,51,57,8.333333333333334,2,3,0,0,0,8,4,1,736.6666666666666,70183.4001120091,-11490.55954386348,0,0,2226.73654769272 -10451,12866,23374,-9,23369,23370,1,1,27,1,1,0,2,2,-9,0,4,6.120225977760357,6.207522327109122,0,0,0,-1056.584089188237,0,1,1,2019,10,0,50,40,1,1,1,1.496545788266747,1.496545788266747,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,3,8,2,1,363,-42773.08397213492,0,0,0,336.0325960309491 -10451,12867,23375,-9,23369,23370,1,0,27,1,1,0,1,1,-9,0,4,8.574322358088553,8.225890074116467,0,0,0,-990.538459501141,0,1,2,2019,11,0,53,38,1,2,1,9.953330403944515,9.953330403944515,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,0,7,8,4,1,458,-185698.2633643664,0,0,0,1552.621514890932 -10452,12868,23376,-9,23377,-9,1,0,30,0,0,0,2,2,-9,0,4,7.776139411424828,8.1397204114307,0,0,0,-958.9060208752741,0,2,2,2019,10,1,37,37,1,1,1,7.725065458808563,7.725065458808563,0,0,0,0,2,1,1,0,0,0,44.21,60.79,-9,-9,3.333333333333333,1,1,0,0,7,4,3,1,1747,-28744.97346109623,106804.5195324119,0,0,1019.084310201101 -10452,12869,23377,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.344672164509567,5.259676582485696,0,0,-1058.800557700204,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.008720225172909,5.635367596563722,35.44,36.71,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,1494,-149742.5168091919,-93878.93604664624,0,0,942.1957245973258 -10453,12870,23378,23379,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.611572709971067,7.71831421065186,0,13,-1,139.0211433501842,0,2,2,2019,11,0,33,33,1,0,0,5.799057198003055,5.799057198003055,0,0,0,0,0,0,0,0,.010469371355751,0,57.17,50.61,45.49,50.81,8.333333333333334,1,1,0,0,9,2,5,1,1355.5,634992.2637281381,390273.0635035783,194673.1090214979,60523.97003039988,3079.515391289415 -10453,12870,23379,23378,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.653816019411014,8.616685287420829,0,10,1,-28.89966782151928,0,2,2,2019,13,1,48,42,1,1,0,11.23369164437615,11.23369164437615,0,0,0,0,7,0,0,0,0,0,45.49,50.81,57.17,50.61,8.333333333333334,1,1,0,0,12,2,5,1,1355.5,634992.2637281381,390273.0635035783,194673.1090214979,60523.97003039988,3079.515391289415 -10454,12871,23380,23381,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,46,-4,0,0,3,3,2019,30,11,0,0,4,11,0,0,0,1,0,96.73503647952631,0,0,1,1,0,0,0,27.89,18.61,38.69,28.33,5,1,1,0,0,0,12,1,0,232.5,17219.12739390178,40998.57052176617,0,0,1949.846036538755 -10454,12871,23381,23380,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,46,4,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,0,0,38.69,28.33,27.89,18.61,3.333333333333333,1,1,0,0,0,12,1,0,232.5,17219.12739390178,40998.57052176617,0,0,1949.846036538755 -10454,12872,23382,-9,23380,23381,1,1,38,0,0,0,1,1,-9,0,4,7.294266113066107,7.312217786266032,0,0,0,-990.7578822228544,0,2,2,2019,10,0,45,45,1,0,0,4.593297797599154,4.593297797599154,0,0,0,0,0,1,1,0,.6463240173150278,0,51.77,58.57,-9,-9,5,1,1,0,0,13,12,3,0,44,54812.96912460546,22456.66544398928,87085.55088502305,0,549.2874487244839 -10455,12873,23383,-9,23384,23386,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.075339778029,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,831,319998.3934636652,264356.0634776298,219371.3222308028,121895.8442320577,3587.078621228833 -10455,12873,23384,23386,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,8.586784139027955,8.327851173326179,0,15,-10,16.23216522913403,0,2,3,2019,9,0,40,42,1,0,0,12.06921620636382,12.06921620636382,0,0,0,0,0,1,1,0,0,0,45.91,59.89,27.83,52.47,6.666666666666667,1,1,0,0,11,4,4,1,831,319998.3934636652,264356.0634776298,219371.3222308028,121895.8442320577,3587.078621228833 -10455,12873,23385,-9,23384,23386,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.999098026036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,831,319998.3934636652,264356.0634776298,219371.3222308028,121895.8442320577,3587.078621228833 -10455,12873,23386,23384,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.528580679473182,8.275156690986412,0,15,10,-48.91352673254613,0,3,3,2019,15,4,42,37,1,4,0,9.565408006196961,9.565408006196961,0,0,0,0,0,1,1,0,0,0,27.83,52.47,45.91,59.89,3.333333333333333,1,1,0,0,10,4,4,1,831,319998.3934636652,264356.0634776298,219371.3222308028,121895.8442320577,3587.078621228833 -10456,12874,23387,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.581998306398981,7.637104414473564,0,0,-880.4896203513142,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.262009356314092,7.363718095868506,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,881,428901.2562158082,326982.9418808512,129926.8161790769,0,1671.521820384182 -10457,12875,23388,23389,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.933526797474086,7.43439137808071,53,1,-141.4132808087338,0,3,3,2019,21,10,0,0,4,10,0,0,0,1,0,119.2309572872753,0,0,1,1,0,4.277635469517026,7.71084114397286,42.53,25.23,46.91,51.11,5,1,1,0,0,0,4,4,1,756,1873910.401952639,1221041.026245586,317202.9717159196,0,4729.39303059388 -10457,12875,23389,23388,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.930387017451505,8.229302406168474,53,-1,102.7850624390701,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,5.48,1,1,0,3.177489198669256,8.212037630383332,46.91,51.11,42.53,25.23,8.333333333333334,1,1,0,0,0,4,4,1,756,1873910.401952639,1221041.026245586,317202.9717159196,0,4729.39303059388 -10458,12876,23390,23391,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.916491150213162,7.052178190296445,0,4,-2,-62.57689160413734,0,3,2,2019,6,0,20,20,1,0,0,9.216988416673839,9.216988416673839,0,0,0,0,0,0,0,0,0,0,58.32,50.22,50.43,45.82,10,1,1,0,0,11,4,4,0,571.5,573636.0010573312,-63365.67232352099,425040.1109631913,7235.259146574846,1794.10087959351 -10458,12876,23391,23390,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.060479592266663,8.022563173836152,0,4,2,-103.9354519740625,0,-9,-9,2019,11,0,35,35,1,0,0,10.85986953678436,10.85986953678436,0,0,0,0,0,0,0,0,0,0,50.43,45.82,58.32,50.22,8.333333333333334,1,1,0,0,6,4,4,0,571.5,573636.0010573312,-63365.67232352099,425040.1109631913,7235.259146574846,1794.10087959351 -10459,12877,23392,-9,23393,23395,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.066235437983,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1129.5,621035.0213539167,388917.1848904885,177125.6057653035,29934.38496651714,3146.749643378765 -10459,12877,23393,23395,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.584002787951388,7.849504807010217,0,14,2,-12.10383732656647,0,3,3,2019,18,7,26,26,1,7,0,11.33099116286478,11.33099116286478,0,0,0,0,0,1,1,0,0,0,37.46,55.55,48.28,60.18,3.333333333333333,1,1,0,1,9,5,4,1,1129.5,621035.0213539167,388917.1848904885,177125.6057653035,29934.38496651714,3146.749643378765 -10459,12877,23394,-9,23393,23395,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.6856451779715,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1129.5,621035.0213539167,388917.1848904885,177125.6057653035,29934.38496651714,3146.749643378765 -10459,12877,23395,23393,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.458358313049324,8.62275765818263,0,14,-2,47.75511019728642,0,2,3,2019,12,0,53,52,1,0,0,12.87375566283124,12.87375566283124,0,0,0,0,0,1,1,0,0,0,48.28,60.18,37.46,55.55,3.333333333333333,1,1,0,1,7,5,4,1,1129.5,621035.0213539167,388917.1848904885,177125.6057653035,29934.38496651714,3146.749643378765 -10460,12878,23396,23397,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.993699970550709,7.224085151950794,0,17,11,-21.13466288262812,0,2,1,2019,16,6,35,60,1,6,0,3.710820361559032,3.710820361559032,0,0,0,0,27,1,1,0,4.059127450042515,0,41.99,53.75,40.56,12.97,3.333333333333333,1,1,0,1,10,4,4,0,292.5,936247.4442747569,0,430963.7154651028,0,2303.488001959261 -10460,12878,23397,23396,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,8.33084734959759,8.715669116723754,0,16,-11,.6618523138943458,0,2,2,2019,24,7,41,42,1,7,0,12.43448918661603,12.43448918661603,0,0,0,0,0,1,1,0,0,0,40.56,12.97,41.99,53.75,0,1,1,0,0,10,4,4,0,292.5,936247.4442747569,0,430963.7154651028,0,2303.488001959261 -10460,12879,23398,-9,23397,23396,1,0,21,0,0,0,2,2,1,0,4,7.125697654743863,6.894650250852225,0,0,0,-1003.231477068911,-9,1,2,2019,5,0,28,0,1,0,1,5.016755015153234,5.016755015153234,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,4,2,0,900,36168.89961009051,0,0,0,474.1747819857365 -10461,12880,23399,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.573939729613459,8.443953556710856,0,0,0,-1049.86131667722,0,2,2,2019,9,1,38,42,1,1,0,13.2481027328376,13.2481027328376,0,0,0,0,0,1,1,0,0,0,53.92,52.23,-9,-9,6.666666666666667,1,1,0,0,8,8,4,0,1822,595926.8697757151,364448.3790140623,386028.6536397466,245396.5048301934,1741.762046985732 -10461,12881,23400,-9,23399,-9,1,0,33,0,2,0,2,2,-9,0,4,8.075059652951639,8.333010076772174,0,0,0,-972.0217255362908,0,2,-9,2019,9,0,30,30,1,0,1,12.82937234319427,12.82937234319427,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,8,8,4,0,1036.333333333333,185372.2794250489,0,179354.4113019188,98114.9928512388,2418.139447060008 -10461,12881,23401,-9,23400,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.301872676231,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,1036.333333333333,185372.2794250489,0,179354.4113019188,98114.9928512388,2418.139447060008 -10461,12881,23402,-9,23400,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.469984274635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,0,1036.333333333333,185372.2794250489,0,179354.4113019188,98114.9928512388,2418.139447060008 -10462,12882,23403,23404,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.825342947989503,7.929609027543537,43,-1,80.90241367104376,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.86343862926413,7.815859762658478,58.15,52.91,57.17,50.61,8.333333333333334,1,1,0,0,6,5,4,1,272.5,-12082.38699005781,74684.17788532632,0,0,3958.358203719116 -10462,12882,23404,23403,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,6.854546050117006,7.351635767100656,7.530286985016879,43,1,-12.22591957287304,0,3,3,2019,6,0,16,16,1,0,0,7.197408041808404,7.197408041808404,0,0,0,0,0,1,1,0,2.143860711418604,7.15397137768639,57.17,50.61,58.15,52.91,10,1,1,0,0,11,5,4,1,272.5,-12082.38699005781,74684.17788532632,0,0,3958.358203719116 -10463,12883,23405,23406,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,7.102473593497715,7.012165300525392,8,0,131.3149577568629,0,3,3,2019,5,0,0,16,3,0,0,0,0,0,0,0,0,2,1,1,0,5.496217786168098,7.255600897558821,60.13,49.27,58.25,16.81,8.333333333333334,1,1,1,0,8,5,4,1,722.5,946996.5000279669,799417.849171927,254563.0130087754,21238.75323383104,2129.412333933465 -10463,12883,23406,23405,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,7.933444064775698,8.20723197096212,6.785793095839745,8,0,-62.64845379961793,0,3,3,2019,14,3,24,40,1,3,0,12.60680881395745,12.60680881395745,0,0,0,0,0,1,1,0,5.111812799002989,6.832956151086536,58.25,16.81,60.13,49.27,5,1,1,0,0,9,5,4,1,722.5,946996.5000279669,799417.849171927,254563.0130087754,21238.75323383104,2129.412333933465 -10464,12884,23407,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.201205033249138,7.270451965175446,0,0,-1013.292105084043,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.841595342665537,7.471719805415162,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1122,454002.9546237523,208079.7780824929,102310.8660316977,0,1519.954311288178 -10465,12885,23408,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.482900831252479,8.655547026787156,0,0,-1173.996754609577,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.04033890712018,8.684707473987336,57.06,57.76,-9,-9,10,1,1,0,0,1,9,5,1,589,1303505.611140472,945205.3923022056,298837.5111250194,0,4502.640576116947 -10466,12886,23409,-9,23410,23413,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.4151698086536,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,1,1,890.8,444188.6133046719,287978.1581182537,296764.6747535822,96316.40378169033,1023.778019088808 -10466,12886,23410,23413,-9,-9,1,0,49,0,3,0,3,3,-9,0,4,0,0,0,33,-3,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,50,50,8,2,3,0,0,0,10,1,1,890.8,444188.6133046719,287978.1581182537,296764.6747535822,96316.40378169033,1023.778019088808 -10466,12886,23411,-9,23410,23413,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1047.003659616053,-9,3,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,10,1,1,890.8,444188.6133046719,287978.1581182537,296764.6747535822,96316.40378169033,1023.778019088808 -10466,12886,23412,-9,23410,23413,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-933.4746062778834,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,10,1,1,890.8,444188.6133046719,287978.1581182537,296764.6747535822,96316.40378169033,1023.778019088808 -10466,12886,23413,23410,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,0,0,0,33,3,0,0,-9,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,50,50,54,5,2,3,1,0,10,10,1,1,890.8,444188.6133046719,287978.1581182537,296764.6747535822,96316.40378169033,1023.778019088808 -10466,12887,23414,-9,23410,23413,1,1,24,0,3,0,1,1,-9,0,4,7.910138294617728,8.112469819857619,0,0,0,-1015.682730940858,0,3,2,2019,7,0,35,35,1,0,1,11.24335913937455,11.24335913937455,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,2,3,0,0,8,10,4,1,424,78758.15514931513,-9307.427167568283,0,0,1828.141860668393 -10467,12888,23415,23416,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,8,-4,44.67781856828599,0,-9,-9,2019,30,12,0,0,4,12,0,0,0,1,0,0,0,7,1,1,0,.9019061545441261,0,19.82,44.92,51.99,34.71,5,1,1,0,0,7,2,2,0,786.5,338690.202507238,180917.1099976595,136828.9978067002,0,2202.634000133003 -10467,12888,23416,23415,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.084210982797144,5.281263292380425,18,4,140.0292971989381,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.868329051019122,5.039022235114598,51.99,34.71,19.82,44.92,8.333333333333334,1,1,0,0,6,2,2,0,786.5,338690.202507238,180917.1099976595,136828.9978067002,0,2202.634000133003 -10468,12889,23417,23418,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.117742187504549,7.679724798164592,9,5,-55.68795149556328,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.247829982934974,7.353130840831299,60.29,52.11,57.57,49.69,10,1,1,0,0,8,13,3,1,153,924404.6783027439,358879.2701384994,237750.3907187108,0,2284.892944898364 -10468,12889,23418,23417,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.03721256065112,7.086043144636109,0,9,-5,15.30257000392119,0,3,3,2019,6,0,20,20,1,0,0,6.523367226014847,6.523367226014847,0,0,0,0,0,1,1,0,0,0,57.57,49.69,60.29,52.11,1.666666666666667,1,1,0,0,8,13,3,1,153,924404.6783027439,358879.2701384994,237750.3907187108,0,2284.892944898364 -10468,12890,23419,-9,23418,23417,1,0,24,0,0,0,2,2,-9,0,5,7.777344233600175,8.204194416644009,0,0,0,-968.0599989410704,-9,2,1,2019,7,0,37,0,1,0,1,6.792536222527032,6.792536222527032,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,9,13,3,1,942,166620.4781678697,0,0,0,1550.065812871882 -10468,12891,23420,-9,23418,23417,1,0,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-957.7009542159969,-9,2,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.42,60.53,-9,-9,10,1,1,0,0,5,13,1,1,814,-41143.58161720399,0,0,0,-71.36834876290547 -10469,12892,23421,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.030182450758808,8.636409441491439,0,1,-30,23.13679412107539,0,3,2,2019,12,1,35,35,1,1,0,10.21217496609659,10.21217496609659,0,0,0,0,91,1,1,0,0,0,27.14,45,47.5,40.03,0,1,1,0,1,13,12,3,1,400,164547.8500253074,-69463.90686351519,0,0,1283.367517453243 -10469,12893,23422,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.877461817217975,5.866837713918792,1,30,-36.19922004411865,-9,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,74.01653997383958,74.79908751384224,714.6152462473656,0,1,1,0,0,6.012586354767721,47.5,40.03,27.14,45,6.666666666666667,1,1,0,0,0,12,3,1,111,328151.0366232826,85575.3583195392,161623.5239415439,0,896.6571486927737 -10470,12894,23423,-9,23424,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.261309872427,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,2149.333333333333,67804.69225309558,0,80609.26965492038,9580.780052603846,1482.34848660885 -10470,12894,23424,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.154186352325807,7.1076316710317,0,0,0,-1079.282364587731,0,2,2,2019,22,10,14,13,1,10,0,7.248033726540386,7.248033726540386,0,0,0,1.406700926515095,14.5,1,1,0,0,0,43.86,39.27,-9,-9,3.333333333333333,1,1,0,0,8,6,2,0,2149.333333333333,67804.69225309558,0,80609.26965492038,9580.780052603846,1482.34848660885 -10470,12894,23425,-9,23424,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.965393635327,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,2149.333333333333,67804.69225309558,0,80609.26965492038,9580.780052603846,1482.34848660885 -10471,12895,23426,23427,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,10,6,41.25210024125273,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,65.15000000000001,29.3,10,1,1,0,0,0,9,2,1,650.5,957036.1272727845,121655.2826938652,466402.1421685466,0,1893.25006276328 -10471,12895,23427,23426,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.290081569821017,6.91997382533962,10,-6,-20.34026036526039,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.491510633189499,65.15000000000001,29.3,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,650.5,957036.1272727845,121655.2826938652,466402.1421685466,0,1893.25006276328 -10472,12896,23428,23429,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.200193963483153,8.39696190876411,0,33,4,-66.24424504562958,-9,3,2,2019,9,0,38,0,1,1,0,12.10356959915731,12.10356959915731,0,0,0,0,0,1,1,0,0,0,53,54,40.71,62.41,8,1,1,0,0,1,10,5,1,684.5,1996426.126349868,1634968.591446695,304857.0154427602,0,3092.73939504153 -10472,12896,23429,23428,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.461988959781857,8.136539878729037,0,33,-4,-27.83116882173726,0,2,2,2019,14,3,41,43,1,3,0,14.1390439938934,14.1390439938934,0,0,0,0,0,1,1,0,0,0,40.71,62.41,53,54,6.666666666666667,1,1,0,0,6,10,5,1,684.5,1996426.126349868,1634968.591446695,304857.0154427602,0,3092.73939504153 -10472,12897,23430,-9,23429,23428,1,0,28,0,0,0,2,2,-9,0,3,8.001001927146413,7.950194882793432,0,0,0,-985.7339235567539,0,2,2,2019,10,0,38,45,1,0,1,9.734300151478648,9.734300151478648,0,0,0,0,0,1,1,0,3.626903517534781,0,56.32,27.1,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,1000,43221.95596886624,112856.9514725457,0,0,924.0595983169567 -10473,12898,23431,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.7335709852525,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,30.74483824949193,0,0,1,1,0,0,0,42.68,14.53,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,1546,207765.5273774849,0,97566.45871009171,0,1376.238574345795 -10474,12899,23432,-9,23433,23434,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-948.0084075205104,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,0,4,5,1,405.3333333333333,265555.242906865,57897.2501058399,330041.6912937619,79463.08323427167,4181.562859008881 -10474,12899,23433,23434,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,8.060843286939244,8.227316982745215,6.06120583398554,2,-5,93.40983743643753,0,2,3,2019,7,0,37,37,1,0,0,11.51409233928227,11.51409233928227,0,0,0,0,2,1,1,0,6.122293140649687,0,52.66,56.94,57.16,56.15,10,1,1,0,0,8,4,5,1,405.3333333333333,265555.242906865,57897.2501058399,330041.6912937619,79463.08323427167,4181.562859008881 -10474,12899,23434,23433,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.950418150405479,8.984538788827919,0,2,5,-54.54551035302861,0,-9,-9,2019,9,0,44,37,1,0,0,21.16127973004569,21.16127973004569,0,0,0,0,0,1,1,0,2.591100139613277,0,57.16,56.15,52.66,56.94,8.333333333333334,1,1,0,0,9,4,5,1,405.3333333333333,265555.242906865,57897.2501058399,330041.6912937619,79463.08323427167,4181.562859008881 -10475,12900,23435,-9,23436,23437,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-923.0087795784864,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10475,12900,23436,23437,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,6.160766808950806,6.143044585726338,0,19,1,-28.24823355972355,0,2,2,2019,7,0,10,15,1,0,0,4.128959381476055,4.128959381476055,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,5,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10475,12900,23437,23436,-9,-9,1,1,43,0,4,0,2,2,-9,0,3,7.793347328100325,7.845334906254094,0,21,-1,-17.9394423933818,0,2,2,2019,7,0,37,55,1,0,0,5.669528681571297,5.669528681571297,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,9,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10475,12900,23438,-9,23436,23437,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1123.0633303211,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10475,12900,23439,-9,23436,23437,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.8832573376301,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10475,12900,23440,-9,23436,23437,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-994.1485457662754,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,619.1666666666666,326094.524544146,0,328066.3548266072,108287.0218097285,2315.149345481402 -10476,12901,23441,23442,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,5.918583236812392,5.928166005348978,7,-3,-59.43500098187301,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.112566738550622,55.33,50.05,44.67,32.3,10,1,1,0,0,0,4,2,1,997,834046.7492308253,312307.364026183,297107.3477921387,0,1828.605501748916 -10476,12901,23442,23441,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.275518770562971,7.493130301750617,48,3,-7.011040210674063,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2147866692934,44.67,32.3,55.33,50.05,8.333333333333334,1,1,0,0,0,4,2,1,997,834046.7492308253,312307.364026183,297107.3477921387,0,1828.605501748916 -10477,12902,23443,23444,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.292350087609124,7.912269632272818,46,1,-3.893056000772205,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.641614484177915,8.665029058708241,51.73,58.82,61.01,53.18,10,1,1,0,0,6,4,4,1,898.5,1007541.425595343,677752.132956251,235578.8716316186,0,3648.398704647248 -10477,12902,23444,23443,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,46,-1,4.426039175431207,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.74543795671535,0,61.01,53.18,51.73,58.82,10,1,1,0,0,0,4,4,1,898.5,1007541.425595343,677752.132956251,235578.8716316186,0,3648.398704647248 -10478,12903,23445,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.680187687119147,8.484743256275781,0,0,0,-961.244477977118,0,1,2,2019,10,0,46,45,1,0,0,12.08786264128121,12.08786264128121,0,0,0,0,0,0,0,0,3.221949632734625,0,51.24,58.84,-9,-9,8.333333333333334,4,2,0,0,10,2,5,1,335,214725.5691207264,165863.6170258402,171233.9275652515,60657.05262768991,2635.519717720588 -10479,12904,23446,23448,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,5.630612279331311,5.879756044790573,0,25,-3,103.7118979116902,0,2,2,2019,12,3,30,30,1,3,0,1.459306652690513,1.459306652690513,0,0,0,0,71.5,0,0,0,8.729433693230314,0,43.9,57.01,54,54,8.333333333333334,1,1,0,0,5,7,5,1,338.3333333333333,460111.6038507088,76861.76616271069,189416.2171156701,0,5143.201558333708 -10479,12904,23447,-9,23446,23448,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1140.222652836404,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,5,1,338.3333333333333,460111.6038507088,76861.76616271069,189416.2171156701,0,5143.201558333708 -10479,12904,23448,23446,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.31236040034478,9.339560499080118,0,6,3,39.5984671062582,0,-9,-9,2019,9,0,40,50,1,1,0,28.22294021985628,28.22294021985628,0,0,0,0,0,0,0,0,0,0,54,54,43.9,57.01,8,1,1,0,0,1,7,5,1,338.3333333333333,460111.6038507088,76861.76616271069,189416.2171156701,0,5143.201558333708 -10480,12905,23449,23450,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,8,0,38.43431044192882,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,2.52883193612609,0,0,1,1,0,0,0,49.74,22.92,47.02,36.57,8.333333333333334,1,1,0,0,0,13,2,1,1417,235555.2903387997,94796.31329510038,241994.287199004,0,2321.216404578639 -10480,12905,23450,23449,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.31069087268279,6.42050964255483,8,0,-57.61278473304851,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,3.310137903076831,0,21.12149459382356,2,1,1,0,0,6.010549333005057,47.02,36.57,49.74,22.92,6.666666666666667,1,1,0,0,0,13,2,1,1417,235555.2903387997,94796.31329510038,241994.287199004,0,2321.216404578639 -10481,12906,23451,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.023630391700127,8.141802488858804,0,0,0,-917.7969327189057,0,2,2,2019,5,1,38,38,1,1,0,10.09268658023165,10.09268658023165,0,0,0,0,0,0,0,0,1.488377916889431,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,1118,19442.72247879854,64165.92630250563,0,0,1082.952769975931 -10482,12907,23452,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.827205835764252,8.954736973982431,0,7,-5,9.12364937340819,0,2,2,2019,21,7,46,38,1,7,0,16.49333144840341,16.49333144840341,0,0,0,0,5.48,0,0,0,0,0,27,57.87,49.36,46.08,6.666666666666667,1,1,0,0,8,7,5,1,6133,236777.4949479946,98508.0602530569,0,0,2481.18271021379 -10482,12908,23453,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.028650006647357,7.880242037898515,0,7,5,46.25308720847244,0,3,3,2019,12,0,38,38,1,0,0,10.12102512005983,10.12102512005983,0,0,0,0,5.48,0,0,0,7.969752157552538,0,49.36,46.08,27,57.87,8.333333333333334,1,1,0,0,9,7,5,1,497,347721.8334951908,361795.9907917973,124445.3080757883,95585.1600216706,2194.228224076925 -10483,12909,23454,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1175.395552919729,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,31.05,-9,-9,10,1,1,0,0,4,2,1,1,579,-190402.5715022781,0,0,0,740.1911585681723 -10484,12910,23455,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.99761141864556,7.882879491703261,0,0,0,-908.9175503717213,-9,2,2,2019,13,1,37,0,1,1,0,8.163669966745003,8.163669966745003,0,0,0,0,0,0,0,0,.020015362913872,0,39.85,55.83,-9,-9,6.666666666666667,1,1,0,0,8,9,4,0,339,41544.8377496631,-20799.10018086439,0,0,1439.056260098733 -10485,12911,23456,23457,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.762864380770687,7.987800799145171,0,6,-1,-4.154106328728338,0,-9,-9,2019,12,0,39,41,1,0,0,6.748398700910454,6.748398700910454,0,0,0,0,0,0,0,0,0,0,40.33,55.64,49.52,55.68,8.333333333333334,1,1,0,0,10,2,5,1,567,437290.3178235983,150252.9409209648,231422.6208802244,118643.7116938048,3450.095094254851 -10485,12911,23457,23456,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.703707120390646,9.036906675965955,0,6,1,96.85698572446751,0,-9,-9,2019,7,1,40,39,1,1,0,15.67434954213219,15.67434954213219,0,0,0,0,0,0,0,0,3.512347424321914,0,49.52,55.68,40.33,55.64,8.333333333333334,1,1,0,0,7,2,5,1,567,437290.3178235983,150252.9409209648,231422.6208802244,118643.7116938048,3450.095094254851 -10486,12912,23458,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.006565025947694,9.377950916479405,7.689988338180084,0,0,-847.3727482244325,0,3,2,2019,11,0,38,35,1,0,0,22.71373404696646,22.71373404696646,0,0,0,0,2,1,1,0,0,8.095823710071409,49.63,54.22,-9,-9,5,1,1,0,0,10,12,5,0,37,993615.5998202905,681510.3269403266,180429.5670050083,0,4565.426150901101 -10487,12913,23459,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.421362938960391,8.434859229360077,0,0,0,-930.5225240118762,0,3,3,2019,11,2,37,35,1,2,0,14.25463179417964,14.25463179417964,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,1,10,2,4,1,618,248859.0686967998,125930.7469806002,203908.5155999273,3713.897360810523,1348.101242473249 -10487,12914,23460,-9,23459,-9,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1108.027756355879,-9,1,-9,2019,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,5,1,1,0,0,0,2,1,1,570,0,0,0,0,-417.6188180102556 -10488,12915,23461,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-975.9639585342593,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,.203686505199093,0,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,5,1,1,103,-135464.6613141664,0,0,0,178.9844544112435 -10489,12916,23462,-9,-9,-9,1,1,69,1,1,0,2,2,-9,0,3,0,0,0,0,0,-986.2069709944934,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,49.94331290093699,0,0,1,1,0,0,0,52,47,-9,-9,7,3,4,0,0,0,8,2,0,313,41234.55565731417,0,0,0,1752.52036996898 -10489,12917,23463,23464,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,0,0,0,1,0,71.29050638191475,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,.2169297048593688,0,57.06,57.76,50,57,6.666666666666667,3,4,0,0,0,8,2,0,439,19110.60896451604,0,0,0,27.35890157959527 -10489,12917,23464,23463,-9,23462,1,1,35,1,1,0,1,1,-9,0,4,3.687328306937983,3.914444633262498,0,1,0,60.04919350442265,0,-9,2,2019,10,0,37,0,1,1,0,.1091179808480178,.1091179808480178,0,0,0,0,0,1,1,0,0,0,50,57,57.06,57.76,7,3,4,0,0,1,8,2,0,439,19110.60896451604,0,0,0,27.35890157959527 -10489,12917,23465,-9,23463,23464,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.261270654123,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,2,0,439,19110.60896451604,0,0,0,27.35890157959527 -10490,12918,23466,23467,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.650752591854496,7.423368022205396,10,-2,-3.813794288609143,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.464435721048089,7.356806123433084,51,48,51.24,58.84,7,1,1,0,0,1,13,2,1,1112.5,939667.321168157,478830.82307209,354206.6645001594,0,2247.594405156805 -10490,12918,23467,23466,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,45,2,86.78228827663553,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51,48,10,1,1,0,0,0,13,2,1,1112.5,939667.321168157,478830.82307209,354206.6645001594,0,2247.594405156805 -10491,12919,23468,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,5,0,5.815004346240363,6.196364501101784,0,0,-922.1287211881302,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.340890729775409,5.760444178414719,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,576,157721.8272660575,4964.243598118148,296254.1424538383,0,463.019424398726 -10492,12920,23469,23470,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.464642168987254,5.421784633173107,43,-4,-107.6419552499821,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.554835976525096,5.274409122933761,52.07,51.53,51,46,10,1,1,0,0,0,6,2,1,1312.5,409695.2075472162,195810.2806604256,296211.2400285581,0,2213.960800003666 -10492,12920,23470,23469,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.778658551363938,6.152721155662745,10,4,-102.3964393302361,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.884129218537362,6.339135655618347,51,46,52.07,51.53,7,1,1,0,0,0,6,2,1,1312.5,409695.2075472162,195810.2806604256,296211.2400285581,0,2213.960800003666 -10493,12921,23471,23472,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.598519959458933,8.493583803717158,0,9,6,-99.44587658168636,0,3,2,2019,8,0,50,52,1,0,0,13.35490030635296,13.35490030635296,0,0,0,0,0,1,1,0,0,0,57.33,53.46,33.44,61.5,8.333333333333334,1,1,0,0,10,12,4,1,414.25,635796.4043851839,274533.8879280954,343883.6142909926,110832.6619075455,4020.207645826828 -10493,12921,23472,23471,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.202977124748237,8.2641181632636,0,9,-6,-9.952646972385336,0,-9,2,2019,8,0,40,40,1,0,0,10.49187742108516,10.49187742108516,0,0,0,0,0,1,1,0,0,0,33.44,61.5,57.33,53.46,3.333333333333333,1,1,0,0,10,12,4,1,414.25,635796.4043851839,274533.8879280954,343883.6142909926,110832.6619075455,4020.207645826828 -10493,12921,23473,-9,23472,23471,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.658953680766,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,414.25,635796.4043851839,274533.8879280954,343883.6142909926,110832.6619075455,4020.207645826828 -10493,12921,23474,-9,23472,23471,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1043.342505498689,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,5,1,1,0,0,0,12,4,1,414.25,635796.4043851839,274533.8879280954,343883.6142909926,110832.6619075455,4020.207645826828 -10493,12922,23475,-9,23472,23471,1,0,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-895.6304956309068,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,523,-641.3271041746962,0,0,0,0 -10494,12923,23476,-9,23479,23478,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-919.1330476439592,0,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,1,0,0,6,1,0,372,168369.9544493499,0,0,0,576.7735437739939 -10494,12924,23477,-9,23479,23478,1,0,26,0,0,0,1,1,1,0,3,0,0,0,0,0,-903.9010319666372,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,-9,-9,5,2,3,1,0,0,6,1,0,1246,72711.2995004728,0,0,0,378.1481040549657 -10494,12925,23478,23479,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,-4,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.56,35.77,39.35,35.33,5,2,3,0,0,0,6,1,0,552.5,126921.8006239892,0,0,0,606.3582148405328 -10494,12925,23479,23478,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,31,4,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,5.48,1,1,0,0,0,39.35,35.33,37.56,35.77,5,2,3,0,0,0,6,1,0,552.5,126921.8006239892,0,0,0,606.3582148405328 -10494,12926,23480,-9,23479,23478,1,1,23,0,0,0,2,2,-9,0,4,7.895811925162172,7.931945264869307,0,0,0,-1069.740891943072,0,3,3,2019,10,0,40,40,1,1,1,9.792709163626711,9.792709163626711,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,0,196,-282.1671858825684,-77295.61680674652,0,0,2287.543660536913 -10494,12927,23481,-9,23479,23478,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1093.866613953802,-9,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,10,2,3,1,0,0,6,1,0,244,119322.3396699944,0,0,0,0 -10495,12928,23482,23483,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,46,-2,115.6319178419729,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.315153002236536,0,43.93,31.44,37.25,31.7,6.666666666666667,1,1,0,0,0,6,2,1,674.5,582654.3790203999,328094.1422113814,84714.83533868582,0,1365.453411321774 -10495,12928,23483,23482,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.214170951038934,7.433715246926798,50,2,55.28357061631233,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.873662020619353,7.337846499441111,37.25,31.7,43.93,31.44,8.333333333333334,1,1,0,0,0,6,2,1,674.5,582654.3790203999,328094.1422113814,84714.83533868582,0,1365.453411321774 -10496,12929,23484,23485,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,7.754247445355841,7.629640124208194,0,4,4,-36.62288619681139,0,-9,-9,2019,7,0,39,40,1,0,0,6.247721106403842,6.247721106403842,0,0,0,0,0,1,1,0,0,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,0,928,11264.46243254197,28220.19232258099,0,0,2527.026317883543 -10496,12929,23485,23484,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.811625291938759,8.072420573190193,0,4,-4,-37.65654156051464,0,3,3,2019,11,0,38,36,1,0,0,8.911308323385919,8.911308323385919,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.65,60.47,8.333333333333334,1,1,0,0,7,4,4,0,928,11264.46243254197,28220.19232258099,0,0,2527.026317883543 -10496,12929,23486,-9,23485,23484,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.37770159002,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,928,11264.46243254197,28220.19232258099,0,0,2527.026317883543 -10497,12930,23487,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,6.886341369217543,7.165521398219781,0,0,0,-859.6505453202384,0,2,3,2019,20,8,16,16,1,8,0,7.190844401536196,7.190844401536196,0,0,0,0,71.5,1,1,0,0,0,28.52,33.26,-9,-9,3.333333333333333,1,1,0,1,12,10,2,0,165,132837.9509617178,-67798.79157584265,79971.07864250244,24702.78667034442,1511.192852926013 -10497,12931,23488,-9,23487,-9,1,1,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-982.0890790906172,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.42,60.53,-9,-9,6.666666666666667,1,1,1,0,0,10,1,0,1135,0,0,0,0,0 -10498,12932,23489,-9,-9,-9,1,1,47,0,4,0,1,1,-9,0,5,6.81593910905375,6.986038439861309,0,0,0,-1043.270505872681,0,3,3,2019,7,0,17,16,1,0,0,6.16589705304718,6.16589705304718,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,3,4,0,1,3,5,2,0,147,-76581.17413371667,0,0,0,2548.03362238889 -10498,12933,23490,-9,-9,23489,1,0,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-1012.307214276685,-9,3,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,5,1,0,737,-39512.12730272487,0,0,0,0 -10498,12934,23491,-9,-9,23489,1,0,18,0,4,1,2,0,0,0,5,0,0,0,0,0,-1016.980964715019,-9,-9,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,5,1,0,739,23713.72088660794,0,0,0,0 -10499,12935,23492,23493,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.365039977781332,5.873594839717344,6,2,30.95845683967717,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.641581941342264,5.471339099618844,47.62,41.63,55,45,8.333333333333334,1,1,0,0,0,11,3,1,222.5,568740.5270663651,156845.6808107455,149514.7901827702,0,2830.473648690277 -10499,12935,23493,23492,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.734861963156814,7.711610190689441,6,-2,87.03973920321934,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.078891634833248,7.92157558574228,55,45,47.62,41.63,8,1,1,0,0,0,11,3,1,222.5,568740.5270663651,156845.6808107455,149514.7901827702,0,2830.473648690277 -10500,12936,23494,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.954575038856619,7.363032937785504,0,0,0,-899.8990767529064,0,2,2,2019,16,4,20,20,1,4,0,6.344437623468532,6.344437623468532,0,0,0,.2437575934662686,0,1,1,0,0,0,38.38,52.74,-9,-9,5,1,1,0,0,3,8,2,0,973,127321.0299049613,0,0,0,1355.848713194234 -10501,12937,23495,-9,23496,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.7591156000295,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,578,-58020.35764378074,0,0,0,1945.325188287541 -10501,12937,23496,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.220593601282399,7.676358620502174,0,0,0,-1103.278260370048,-9,3,3,2019,10,0,17,0,1,1,0,8.823870937535903,8.823870937535903,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,3,4,0,0,2,8,2,0,578,-58020.35764378074,0,0,0,1945.325188287541 -10502,12938,23497,23498,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,7.235668888942629,7.130989282766602,0,49,0,-1.584613164653879,0,2,2,2019,6,0,21,20,1,0,0,7.605059770152146,7.605059770152146,0,0,0,0,0,1,1,0,4.427492825297367,0,59.88,48.2,37.46,42.77,8.333333333333334,1,1,0,0,9,10,3,1,1150,553806.1017534756,293237.3049511745,344887.8388016928,38780.40437578983,2355.283605656949 -10502,12938,23498,23497,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.515361250600597,6.466165840912566,49,0,101.2432534317581,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.605567783133043,6.421638504337955,37.46,42.77,59.88,48.2,3.333333333333333,1,1,0,0,5,10,3,1,1150,553806.1017534756,293237.3049511745,344887.8388016928,38780.40437578983,2355.283605656949 -10503,12939,23499,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,1,0,6.936479779951219,6.730527374423804,0,0,-930.074119994848,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,4.226136331875914,0,44.33073455210989,0,1,1,0,3.957048186297049,6.957867588923333,59.55,24.29,-9,-9,5,1,1,0,0,5,13,2,1,518,335496.1332218921,135314.6538530843,301002.0718251434,0,775.0577093462209 -10504,12940,23500,-9,23502,23503,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.0079053348725,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,1423.75,102860.6226551881,0,0,0,2479.307178227349 -10504,12940,23501,-9,23502,23503,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.4445424598341,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,0,1423.75,102860.6226551881,0,0,0,2479.307178227349 -10504,12940,23502,23503,-9,-9,1,0,26,1,2,0,3,3,-9,0,3,0,0,0,3,-1,-5.995459228492116,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,31.3,51.93,48.29,52.15,3.333333333333333,1,1,1,0,0,12,3,0,1423.75,102860.6226551881,0,0,0,2479.307178227349 -10504,12940,23503,23502,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,8.261912305919012,8.163655799205541,0,3,1,45.54394793315673,0,2,2,2019,11,1,55,60,1,1,0,8.922082691592985,8.922082691592985,0,0,0,0,2,1,1,0,.4080087575566566,0,48.29,52.15,31.3,51.93,8.333333333333334,1,1,0,0,7,12,3,0,1423.75,102860.6226551881,0,0,0,2479.307178227349 -10505,12941,23504,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,4.732279691350931,4.569654313861947,0,0,-935.5380367551942,0,-9,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.086262040631611,4.418871920471131,41.62,36.62,-9,-9,10,1,1,0,0,5,5,2,1,940,108361.1374475802,232435.2691253047,0,0,923.9678889683596 -10506,12942,23505,23506,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,42,0,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.45,38.38,41.65,35.01,6.666666666666667,2,3,0,0,0,6,1,1,739,352068.6708460987,2724.024850816357,139999.9278467215,0,1668.777372863662 -10506,12942,23506,23505,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,42,0,0,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,35.01,43.45,38.38,5,2,3,1,0,0,6,1,1,739,352068.6708460987,2724.024850816357,139999.9278467215,0,1668.777372863662 -10506,12943,23507,-9,23505,23506,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1005.837548875781,0,3,3,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,37.88,23.34,-9,-9,1.666666666666667,2,3,0,0,0,6,1,1,4781,72019.54742739059,0,0,0,1034.244353844174 -10506,12944,23508,-9,23505,23506,1,1,32,0,0,0,2,2,-9,1,3,7.166744170710542,7.278040123452076,0,0,0,-924.6533463056353,0,3,3,2019,6,0,24,25,1,0,1,5.164547919695269,5.164547919695269,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,2310,232618.1834116365,16509.37811273018,0,0,1112.805307068488 -10507,12945,23509,23510,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.158891598035237,7.137407660551627,39,-4,129.8034368370062,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.98784682640261,6.973123904551502,61.04,39.41,55.76,52.64,10,1,1,0,0,4,5,4,1,455,1453699.000692259,1572855.350856426,134827.3467374698,15667.91572706545,3707.43234078691 -10507,12945,23510,23509,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.119706319821155,8.907319770470465,7.586910968886858,39,4,-63.73739762452298,0,-9,-9,2019,8,0,23,20,1,0,0,18.47067905391104,18.47067905391104,0,0,0,0,0,1,1,0,5.532556354729404,7.65651379249446,55.76,52.64,61.04,39.41,8.333333333333334,1,1,0,0,11,5,4,1,455,1453699.000692259,1572855.350856426,134827.3467374698,15667.91572706545,3707.43234078691 -10508,12946,23511,-9,23512,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.11385346507,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,5,3,1,528.5,-11923.3893605475,39364.58780974844,173481.3729668251,109278.0410278283,2657.431527991812 -10508,12946,23512,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.349415214994593,8.639801995480552,6.174339927472754,0,0,-910.234345886246,0,2,2,2019,10,0,40,37,1,0,0,9.823714786677934,9.823714786677934,0,0,0,0,0,1,1,0,6.734258880044903,0,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,9,5,3,1,528.5,-11923.3893605475,39364.58780974844,173481.3729668251,109278.0410278283,2657.431527991812 -10508,12947,23513,-9,23512,-9,1,0,18,0,1,0,2,2,-9,0,4,0,3.300230049031113,3.23829609979984,0,0,-949.6477819530543,1,2,-9,2019,21,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,2.967013997372483,0,33.14,64.63,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,1209,-183114.0170261192,0,0,0,107.6652830020095 -10509,12948,23514,23515,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,9,-6,-83.47962373461431,0,2,1,2019,10,1,0,14,4,1,0,0,0,0,0,0,0,0,0,0,0,7.157429335428585,0,46.39,60.99,41.95,57.9,10,1,1,0,0,5,2,5,1,284,1921718.361865866,1644085.81888261,154060.5640746775,0,3700.628483523165 -10509,12948,23515,23514,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.051472859067834,8.729948729601842,0,6,6,26.10844667665679,0,-9,-9,2019,11,0,37,38,1,0,0,18.64862652335698,18.64862652335698,0,0,0,0,0,0,0,0,5.054159366982308,0,41.95,57.9,46.39,60.99,8.333333333333334,1,1,0,0,4,2,5,1,284,1921718.361865866,1644085.81888261,154060.5640746775,0,3700.628483523165 -10510,12949,23516,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.993827619941391,7.49362952277604,0,0,-1091.53993286209,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.631822267932201,7.231228039139724,60.87,44.96,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1163,237587.3860251871,220698.6273634614,129222.4622971268,0,1194.113340007287 -10511,12950,23517,23518,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.32015382981476,8.440946545293695,0,6,5,106.3977195601471,0,-9,-9,2019,7,0,49,42,1,0,0,11.79804969142312,11.79804969142312,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.12,57.28,6.666666666666667,1,1,0,0,6,10,4,1,661,60735.55130096139,106088.544903991,212028.6819169668,82495.48442610465,2261.493324370806 -10511,12950,23518,23517,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.155326600821987,7.283500911784196,0,6,-5,9.6951674000663,0,2,2,2019,10,0,22,22,1,0,0,7.580826889765298,7.580826889765298,0,0,0,0,0,0,0,0,1.095570134461622,0,49.12,57.28,51.24,58.84,10,1,1,0,0,6,10,4,1,661,60735.55130096139,106088.544903991,212028.6819169668,82495.48442610465,2261.493324370806 -10511,12950,23519,-9,23518,23517,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.955512208349,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,661,60735.55130096139,106088.544903991,212028.6819169668,82495.48442610465,2261.493324370806 -10512,12951,23520,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.387705191482,0,3,3,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,27,1,1,0,0,0,23.2,24.82,-9,-9,0,1,1,0,0,0,2,1,0,267,74158.61629034407,0,0,0,1728.697793726348 -10513,12952,23521,23522,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.131424066037379,8.328491034639413,0,1,-4,121.9403887110112,-9,2,2,2019,8,0,37,0,1,0,0,10.54591903080294,10.54591903080294,0,0,0,0,0,0,0,0,0,0,47.21,55.3,51.83,57.2,6.666666666666667,1,1,0,0,8,12,5,1,222,972385.5396950477,960450.1163838462,151756.6566100903,4149.968487854483,2870.377243029715 -10513,12952,23522,23521,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.390353062346545,8.282924313566545,0,1,4,-13.50625364139725,-9,-9,-9,2019,9,0,49,0,1,0,0,8.878634334064465,8.878634334064465,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.21,55.3,8.333333333333334,1,1,0,0,8,12,5,1,222,972385.5396950477,960450.1163838462,151756.6566100903,4149.968487854483,2870.377243029715 -10514,12953,23523,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.658391126986007,8.589438840825785,0,0,0,-1020.982204295264,0,2,2,2019,14,2,44,46,1,2,0,13.73012005362524,13.73012005362524,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,10,4,5,1,719,-6098.358682854421,112722.8942839857,153545.4590286552,53071.06212769337,1385.119326129073 -10515,12954,23524,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.042798788778814,8.126157996322107,0,0,0,-966.2633951771405,0,2,3,2019,10,0,35,35,1,0,0,10.15854030786559,10.15854030786559,0,0,0,0,14.5,0,0,0,4.65335129005124,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,1055,929597.3810730162,243386.2519966058,355421.2436212589,0,1272.564830490849 -10516,12955,23525,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.672330892582488,8.375236341371718,0,1,-15,24.50542870549111,0,1,2,2019,11,0,42,42,1,0,0,14.74434746360964,14.74434746360964,0,0,0,0,0,0,0,0,7.046494845377885,0,51.41,56.15,48,49,8.333333333333334,1,1,0,0,9,9,5,1,404,522450.2849568196,205721.6497717328,212400.6403169677,0,2452.681857226471 -10516,12956,23526,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.396970021724274,8.301599012018823,0,1,15,-67.466680679923,0,-9,-9,2019,11,0,22,42,1,2,0,18.84306205593545,18.84306205593545,0,0,0,0,0,0,0,0,4.653516731591372,0,48,49,51.41,56.15,7,2,3,0,0,9,9,5,1,2133,-166308.0463931219,85830.36565605721,0,0,1321.805656573543 -10516,12957,23527,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.858942093680101,7.86499081717744,0,0,0,-1085.076788878536,0,-9,-9,2019,7,1,48,35,1,1,0,7.146491586368757,7.146491586368757,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,4,2,0,0,1,9,4,1,349,4822.68290101698,-25494.53731201309,0,0,1222.464683786513 -10517,12958,23528,-9,23530,23531,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.819995970298,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1969,129030.229106747,54973.23569534184,126865.4035175136,102743.3963554017,1883.188567164921 -10517,12958,23529,-9,23530,23531,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.5192993989906,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,2,0,1969,129030.229106747,54973.23569534184,126865.4035175136,102743.3963554017,1883.188567164921 -10517,12958,23530,23531,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-64.22149265547593,0,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.2381131371844326,0,42.85,56.07,31.93,58.41,8.333333333333334,1,1,0,0,7,12,2,0,1969,129030.229106747,54973.23569534184,126865.4035175136,102743.3963554017,1883.188567164921 -10517,12958,23531,23530,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.402978146735937,7.419441687176206,0,9,8,29.3287048042392,0,-9,3,2019,18,6,40,40,1,6,0,4.433775875359402,4.433775875359402,0,0,0,0,0,1,1,0,0,0,31.93,58.41,42.85,56.07,5,1,1,0,1,10,12,2,0,1969,129030.229106747,54973.23569534184,126865.4035175136,102743.3963554017,1883.188567164921 -10518,12959,23532,23533,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.539901710645734,7.968130115164269,45,2,25.09728003639142,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.267244820030824,7.733539542213431,61.12,51.57,58.05,54.52,8.333333333333334,1,1,0,0,0,11,3,1,1340.5,822530.3177911371,289168.6735942644,310356.9329934227,0,2724.36384391162 -10518,12959,23533,23532,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,45,-2,-10.02128616084145,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,61.12,51.57,10,1,1,0,0,0,11,3,1,1340.5,822530.3177911371,289168.6735942644,310356.9329934227,0,2724.36384391162 -10519,12960,23534,23535,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,9.292171779621501,8.923668408274857,0,35,-6,45.80738069332411,0,2,1,2019,9,0,43,46,1,0,0,23.37146807013352,23.37146807013352,0,0,0,0,7,0,0,0,6.103863083409253,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,11,9,5,1,977,4084704.488365084,2667821.270282155,408240.9822939046,0,6165.443544383991 -10519,12960,23535,23534,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.646222885403491,8.572891428893403,35,6,100.4101194924712,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.674073507646487,8.473884634449972,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,977,4084704.488365084,2667821.270282155,408240.9822939046,0,6165.443544383991 -10520,12961,23536,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.217982287365292,8.263963390511734,0,0,0,-1013.39683639354,-9,1,1,2019,6,0,30,0,1,0,0,16.20431077768304,16.20431077768304,0,0,0,0,0,0,0,0,0,0,56.72,58.13,-9,-9,10,1,1,0,0,9,13,4,1,271,266114.7400110475,0,0,0,557.4321208632706 -10521,12962,23537,23538,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.296167915301986,8.408163162013754,0,8,2,-23.30089339012714,0,2,2,2019,8,0,42,50,1,0,0,12.05966374819098,12.05966374819098,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,9,12,4,1,699.6,126882.5916537286,0,311984.4519985568,126671.2008474478,4480.997642735873 -10521,12962,23538,23537,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,8.748305251401922,8.975106863190241,0,8,-2,-5.836296025847301,0,-9,-9,2019,11,0,37,32,1,0,0,22.64648283279381,22.64648283279381,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,699.6,126882.5916537286,0,311984.4519985568,126671.2008474478,4480.997642735873 -10521,12962,23539,-9,23538,23537,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.369080718116,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,699.6,126882.5916537286,0,311984.4519985568,126671.2008474478,4480.997642735873 -10521,12962,23540,-9,23538,23537,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.500701693146,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,699.6,126882.5916537286,0,311984.4519985568,126671.2008474478,4480.997642735873 -10521,12962,23541,-9,23538,23537,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.3859360884879,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,699.6,126882.5916537286,0,311984.4519985568,126671.2008474478,4480.997642735873 -10522,12963,23542,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-992.8456308419625,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1093,24912.4097415787,0,0,0,1215.903756998908 -10522,12963,23543,-9,23542,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.3303169640135,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1093,24912.4097415787,0,0,0,1215.903756998908 -10523,12964,23544,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-937.273300988861,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,48.46,14.79,-9,-9,10,1,1,0,0,0,9,1,0,879,-165188.6016272182,0,0,0,1570.650828243219 -10524,12965,23545,23547,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,8.71963661596342,8.885618171629094,0,13,-1,-179.4116871801409,0,2,2,2019,10,0,40,37,1,0,0,20.57180695940124,20.57180695940124,0,0,0,0,0,1,1,0,0,0,52.6,48.84,58.15,52.91,8.333333333333334,1,1,0,0,11,10,4,1,1033,529977.2178019994,73905.30573108305,375962.5134925056,0,3876.707277842189 -10524,12965,23546,-9,23547,23545,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.8862867801632,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1033,529977.2178019994,73905.30573108305,375962.5134925056,0,3876.707277842189 -10524,12965,23547,23545,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,6.486467419829141,6.614308250974566,0,13,1,21.19845792645227,0,2,2,2019,7,0,10,8,1,0,0,6.554534871416394,6.554534871416394,0,0,0,0,0,1,1,0,8.343499430921737,0,58.15,52.91,52.6,48.84,10,1,1,0,0,10,10,4,1,1033,529977.2178019994,73905.30573108305,375962.5134925056,0,3876.707277842189 -10524,12965,23548,-9,23547,23545,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.159066439704,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1033,529977.2178019994,73905.30573108305,375962.5134925056,0,3876.707277842189 -10525,12966,23549,-9,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,9.177858418584945,9.195271489165256,0,0,0,-899.3693962126398,0,2,2,2019,17,3,30,30,1,3,0,35.64307330480745,35.64307330480745,0,0,0,0,0,1,1,0,0,0,35.43,24.27,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,456.3333333333333,1809958.491630476,735509.0037809334,807383.2933116943,0,5129.450604495407 -10525,12966,23550,-9,-9,23549,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-992.4744944144317,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,-9,-9,8.333333333333334,1,1,1,0,0,8,5,1,456.3333333333333,1809958.491630476,735509.0037809334,807383.2933116943,0,5129.450604495407 -10525,12966,23551,-9,-9,23549,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.092945817518,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,456.3333333333333,1809958.491630476,735509.0037809334,807383.2933116943,0,5129.450604495407 -10526,12967,23552,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.597466791421033,8.162574949183377,0,0,-946.3088696839519,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,3.94540110531786,0,0,1,1,0,0,7.472091704411601,58.52,44.65,-9,-9,6.666666666666667,2,3,0,0,0,11,3,1,91,455209.7759598475,287713.900121445,253344.19113973,0,1814.885815389353 -10526,12968,23553,-9,-9,23552,1,1,35,0,0,0,2,2,-9,0,4,8.091172068826461,7.990959243098393,0,0,0,-975.2366277569618,0,-9,1,2019,10,0,40,40,1,1,0,9.729957243420033,9.729957243420033,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,11,4,1,502,-29941.4382847632,0,0,0,1274.402299017641 -10527,12969,23554,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.575569570058352,9.659003900657769,4.684199739272789,0,0,-1046.631777102335,0,3,3,2019,7,0,40,0,1,0,0,41.95220940233122,41.95220940233122,0,0,0,0,0,1,1,0,5.440179360166276,4.926157042200506,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,12,5,0,675,506872.8769594127,208840.989548923,90216.68501017828,0,4566.794270099824 -10528,12970,23555,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.562427589113235,7.541247179850683,0,0,-846.4652048493483,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.125243257951902,7.45459115187071,55.52,43.17,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,602,968097.1812808616,350328.4081185856,507525.1289332993,0,1958.539209758286 -10529,12971,23556,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.482124016087406,8.478009815694156,0,0,0,-945.2106712993377,0,2,2,2019,7,0,45,43,1,0,0,17.3444960956739,17.3444960956739,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,1428,346719.404590491,296354.1876919873,138688.5052538034,28275.26877915352,2217.413736960908 -10530,12972,23557,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.961296794372201,6.780475165466838,0,0,-1003.20411179055,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.549823811426886,6.91629202253076,55,45,-9,-9,8,1,1,0,0,0,7,2,1,313,556591.6871069151,51150.58858146833,255318.2308150216,0,1368.162382032863 -10531,12973,23558,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1060.684578266863,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.98,50.34,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,3775,-188674.1900542124,0,0,0,927.7712538480811 -10532,12974,23559,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.491374215611879,7.276161455092258,0,0,-1090.195118750311,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.818570891783246,7.018250563707603,47.09,58.02,-9,-9,10,1,1,0,0,0,9,2,1,488,421497.1267693043,175348.3172565145,197184.5361842599,0,1509.52783954876 -10533,12975,23560,23561,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.511013848283834,6.464902028143888,10,0,29.90863681117369,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.745651072367304,6.338610537611332,43.88,39.51,53.1,40.64,8.333333333333334,1,1,0,0,0,6,2,1,1393.5,369596.552298695,188545.0708131568,184952.8991891027,0,1778.449571616352 -10533,12975,23561,23560,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.496393015197698,6.451075328964356,10,0,109.6163247050782,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.720627199940306,6.731688937876345,53.1,40.64,43.88,39.51,8.333333333333334,1,1,0,0,0,6,2,1,1393.5,369596.552298695,188545.0708131568,184952.8991891027,0,1778.449571616352 -10534,12976,23562,23563,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.377977860756694,8.510398601296787,0,18,2,-108.1947763918077,-9,2,2,2019,6,0,40,0,1,0,0,15.34705587841355,15.34705587841355,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.06,60.24,10,1,1,0,1,8,2,3,1,1640.666666666667,-49542.7473137963,-18787.4497435265,0,0,3186.585884459878 -10534,12976,23563,23562,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.795391169384092,6.544170691270475,0,1,-2,-137.7114549894432,-9,-9,-9,2019,7,0,16,0,1,0,0,6.413080520536269,6.413080520536269,0,0,0,0,0,1,1,0,0,0,46.06,60.24,41.17,59.31,8.333333333333334,1,1,0,0,10,2,3,1,1640.666666666667,-49542.7473137963,-18787.4497435265,0,0,3186.585884459878 -10534,12976,23564,-9,23563,23562,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.8194081742301,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,1640.666666666667,-49542.7473137963,-18787.4497435265,0,0,3186.585884459878 -10535,12977,23565,23566,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.435222583878041,8.633936241419683,0,5,-1,-102.8900338861819,0,2,1,2019,7,0,33,29,1,0,0,15.77144869048764,15.77144869048764,0,0,0,0,0,0,0,0,0,0,54.69,57.47,46.28,62.6,8.333333333333334,1,1,0,0,7,12,5,1,591,680125.2932674183,306833.6772977461,336687.0685854806,36365.82931923037,6823.84174364311 -10535,12977,23566,23565,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.632189429704029,9.972883627374244,0,5,1,95.456009335034,0,2,1,2019,7,0,50,45,1,0,0,40.42012405530935,40.42012405530935,0,0,0,0,0,0,0,0,4.984799150875541,0,46.28,62.6,54.69,57.47,8.333333333333334,1,1,0,0,8,12,5,1,591,680125.2932674183,306833.6772977461,336687.0685854806,36365.82931923037,6823.84174364311 -10536,12978,23567,23568,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.487572896236329,6.745924869103692,36,-1,2.617480269669858,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,4.622462644093288,0,0,1,1,0,6.438953467384802,6.635982540404824,52.69,27.12,55.19,54.26,6.666666666666667,1,1,0,0,0,5,4,1,369.5,1571913.222450315,746029.6332738292,276878.3651225607,0,3267.469777092647 -10536,12978,23568,23567,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.491300813177348,8.445694013496535,36,1,175.7192140755681,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.451918607135653,55.19,54.26,52.69,27.12,8.333333333333334,1,1,0,0,0,5,4,1,369.5,1571913.222450315,746029.6332738292,276878.3651225607,0,3267.469777092647 -10537,12979,23569,23570,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.976625852271409,8.78148186613082,0,38,-1,-53.64161394435896,0,-9,2,2019,6,0,44,0,1,0,0,18.96704292040696,18.96704292040696,0,0,0,0,0,0,0,0,2.965063838312631,0,57.06,57.76,55.19,54.26,8.333333333333334,1,1,0,0,10,9,5,1,467.5,718190.771073279,73965.40250870315,490242.8440242393,63782.1507534069,2875.234619056453 -10537,12979,23570,23569,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.812298790641745,6.372554225895679,0,38,1,-36.00607099732152,0,2,3,2019,10,1,4,-9,1,1,0,23.56432227156917,23.56432227156917,0,0,0,0,7,0,0,0,1.939015974293527,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,467.5,718190.771073279,73965.40250870315,490242.8440242393,63782.1507534069,2875.234619056453 -10538,12980,23571,23572,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.147470984059723,8.505904641099839,0,5,1,123.4505631201266,0,-9,-9,2019,8,0,43,45,1,0,0,9.901407862781962,9.901407862781962,0,0,0,0,0,0,0,0,0,0,58.06,46.15,48.87,58.55,10,1,1,0,0,9,13,5,1,138,220303.5320954855,-45375.88180928848,0,0,3037.889267470444 -10538,12980,23572,23571,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.126869254104605,8.538311075410146,0,5,-1,94.13074948036396,0,2,3,2019,10,1,39,35,1,1,0,13.90162927670031,13.90162927670031,0,0,0,0,2,0,0,0,0,0,48.87,58.55,58.06,46.15,10,1,1,0,0,9,13,5,1,138,220303.5320954855,-45375.88180928848,0,0,3037.889267470444 -10539,12981,23573,23574,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.861309302682339,8.04860071272571,0,36,0,19.63043527566744,0,-9,-9,2019,12,0,30,30,1,0,0,9.930430775601582,9.930430775601582,0,0,0,0,0,0,0,0,5.325304470184058,0,43.84,57.1,51,49,3.333333333333333,1,1,0,0,9,1,4,1,707,299733.185517508,55578.55934003805,205840.5333096274,0,1839.501832717096 -10539,12981,23574,23573,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.594403156660095,7.734935510648349,0,36,0,-54.90445101846752,0,3,3,2019,10,0,39,42,1,1,0,4.602881848539102,4.602881848539102,0,0,0,0,0,0,0,0,4.877952496741207,0,51,49,43.84,57.1,7,1,1,0,0,1,1,4,1,707,299733.185517508,55578.55934003805,205840.5333096274,0,1839.501832717096 -10540,12982,23575,23576,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.966456345040938,7.681945490215347,0,39,-3,8.398263869806922,0,3,3,2019,12,0,35,35,1,0,0,10.97148885129064,10.97148885129064,0,0,0,0,0,0,0,0,0,0,49.29,54.59,51,49,5,1,1,0,0,10,7,5,1,241.5,1027866.315032409,199015.0053162985,628895.8052202391,0,3608.659770290419 -10540,12982,23576,23575,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.88161247125351,8.977567587471112,0,39,3,-52.82415848354077,-9,-9,-9,2019,10,0,40,0,1,1,0,21.91223423496339,21.91223423496339,0,0,0,0,0,0,0,0,0,0,51,49,49.29,54.59,7,1,1,0,0,1,7,5,1,241.5,1027866.315032409,199015.0053162985,628895.8052202391,0,3608.659770290419 -10541,12983,23577,23578,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.210545257675353,7.990045964936495,52,4,-1.596482421617386,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.234208071812696,8.027398816145775,57.33,53.46,60.03,45.37,8.333333333333334,1,1,0,0,0,7,3,1,442,668122.6261999302,426001.7876449992,343079.4392769519,0,3086.746286168989 -10541,12983,23578,23577,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.47488846998394,6.478278299880296,52,-4,-97.30861791133584,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.592251147756087,60.03,45.37,57.33,53.46,8.333333333333334,1,1,0,0,0,7,3,1,442,668122.6261999302,426001.7876449992,343079.4392769519,0,3086.746286168989 -10542,12984,23579,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1017.142798682289,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.796725058074314,7.174199620899049,56.2183212818553,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,13,1,1,1152,500608.9764333242,0,385017.959924548,0,834.4899082130759 -10542,12985,23580,-9,23579,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.053115829408274,8.128640113556006,0,0,-961.7575529306886,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.704262665747093,7.964753250118231,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,293,713460.9613790172,647176.1503455883,41006.96072002446,0,2647.501196781898 -10543,12986,23581,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.344547589856889,8.149251417790497,0,0,-1045.553038161547,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.020886383709729,8.222350116322078,50.04,45.04,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,420,317072.0224277346,335481.6315840305,0,0,2600.001668758646 -10544,12987,23582,-9,23583,23584,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.899423827224,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,3,0,2327.333333333333,-6282.846062402842,-61610.59339768847,0,0,2201.664501202567 -10544,12987,23583,23584,-9,-9,1,0,21,1,1,0,2,2,-9,0,5,0,0,0,3,-1,-167.3264068867848,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,47,59,10,2,3,0,0,2,6,3,0,2327.333333333333,-6282.846062402842,-61610.59339768847,0,0,2201.664501202567 -10544,12987,23584,23583,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,8.03197709661065,8.359849298139377,0,3,1,-35.95622890084827,-9,-9,-9,2019,11,0,38,0,1,1,0,10.55437857281638,10.55437857281638,0,0,0,0,0,1,1,0,0,0,47,59,59.43,58.05,7,2,3,0,0,1,6,3,0,2327.333333333333,-6282.846062402842,-61610.59339768847,0,0,2201.664501202567 -10545,12988,23585,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.40621809323997,4.380972255013748,0,0,-1006.409848090919,0,3,3,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.615669658884436,4.678021611165471,29.3,45.82,-9,-9,5,1,1,0,0,0,4,2,1,359,-82294.65494188163,-35406.51347217893,85703.14127090799,0,840.6672496479018 -10546,12989,23586,23587,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,36,-8,-115.5068326645572,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,22.52,46.65,60.69,53.18,6.666666666666667,1,1,1,1,5,6,3,1,625,1196558.217431983,954390.4131597503,125117.240945694,0,1847.06471165958 -10546,12989,23587,23586,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.269382708565342,8.313045028642909,35,8,90.82895466114495,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.310546900406957,60.69,53.18,22.52,46.65,8.333333333333334,1,1,0,0,7,6,3,1,625,1196558.217431983,954390.4131597503,125117.240945694,0,1847.06471165958 -10546,12990,23588,-9,23586,23587,1,0,23,0,0,0,1,1,0,0,5,0,5.380650167426235,5.427812127542579,0,0,-1065.684146074351,-9,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,5.027326097029881,0,48.18,55.1,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,724,-19299.29172456014,0,0,0,559.1863409103287 -10547,12991,23589,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,3.832414537206148,4.139392537511599,0,0,-1013.833076896207,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.623701279808966,4.165394034182925,52,48,-9,-9,7,1,1,0,1,0,7,2,0,1194,677240.7479119176,30770.58081397053,326701.0592576037,0,914.4882179335827 -10548,12992,23590,-9,23592,23591,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.0947933890446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,754.5,813105.7229653558,697224.4873377519,186215.0088833372,30743.58034420782,4958.02425529859 -10548,12992,23591,23592,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.954096949687107,9.069526175215859,0,7,6,-37.44860051659676,0,2,2,2019,7,0,42,35,1,0,0,17.95346492013348,17.95346492013348,0,0,0,0,0,1,1,0,0,0,45.19,47.9,48.87,58.55,8.333333333333334,1,1,0,0,9,1,5,1,754.5,813105.7229653558,697224.4873377519,186215.0088833372,30743.58034420782,4958.02425529859 -10548,12992,23592,23591,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.248273371999902,8.347857345841419,0,17,-6,97.48883816222687,0,2,3,2019,11,0,30,25,1,0,0,16.77070104673057,16.77070104673057,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.19,47.9,1.666666666666667,1,1,0,0,9,1,5,1,754.5,813105.7229653558,697224.4873377519,186215.0088833372,30743.58034420782,4958.02425529859 -10548,12992,23593,-9,23592,23591,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.5110307098466,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,754.5,813105.7229653558,697224.4873377519,186215.0088833372,30743.58034420782,4958.02425529859 -10549,12993,23594,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9796063850938,8.174291751893698,0,0,-931.6572140096756,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.50608512782313,8.243523116500487,58.32,50.22,-9,-9,5,1,1,0,0,0,8,4,1,1769,1592485.102847489,487681.3042478643,739202.4093943768,0,2434.757654475524 -10550,12994,23595,23596,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.82699709106817,8.733131163825707,41,9,-27.78577221535843,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,8.66966697996156,38.19,52.86,57.33,53.46,6.666666666666667,1,1,0,0,0,8,5,1,1615.5,1896897.802563929,1120873.851974952,372676.1042663081,0,4600.395565123972 -10550,12994,23596,23595,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.629021862062561,7.865748526129316,42,0,22.34422014320357,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.798908851780071,7.798507307640505,57.33,53.46,38.19,52.86,8.333333333333334,1,1,0,0,9,8,5,1,1615.5,1896897.802563929,1120873.851974952,372676.1042663081,0,4600.395565123972 -10551,12995,23597,23598,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.603990537453514,6.381223424148331,58,6,70.57746451067827,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,9.533200443873804,0,0,1,1,0,6.91780384421135,6.649143404573792,49.34,47.5,59.53,56.44,8.333333333333334,1,1,0,0,0,7,2,1,552.5,301057.609458304,23760.63217957961,433492.0092678376,0,1476.295291878531 -10551,12995,23598,23597,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.65518998367683,4.806149986656941,58,-6,32.07078390374775,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.259574006535221,4.29380154638518,59.53,56.44,49.34,47.5,10,1,1,0,0,0,7,2,1,552.5,301057.609458304,23760.63217957961,433492.0092678376,0,1476.295291878531 -10552,12996,23599,-9,23601,23600,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-941.9390335969541,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,4,2,-9,0,0,4,1,1,1489,14297.06207423139,53902.09708750238,0,0,696.6710594162729 -10552,12996,23600,23601,-9,-9,1,1,50,0,1,0,3,3,-9,0,2,0,0,0,34,0,0,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.39,37.66,39.39,37.66,5,2,3,1,0,0,4,1,1,1489,14297.06207423139,53902.09708750238,0,0,696.6710594162729 -10552,12996,23601,23600,-9,-9,1,0,50,0,1,0,3,3,-9,0,2,0,0,0,34,0,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.39,37.66,39.39,37.66,5,2,3,0,0,0,4,1,1,1489,14297.06207423139,53902.09708750238,0,0,696.6710594162729 -10552,12997,23602,-9,23601,23600,1,1,27,0,1,0,2,2,-9,0,2,0,0,0,0,0,-974.3734283679674,0,3,3,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,36.43,41.7,-9,-9,5,2,3,1,1,0,4,1,1,204,243392.2885647254,0,72720.73902106815,0,-28.54495992213504 -10552,12998,23603,-9,23601,23600,1,1,26,0,1,0,2,2,-9,0,3,8.107370228019811,7.974604918263061,0,0,0,-1036.432646467663,0,3,2,2019,6,0,35,35,1,0,1,9.29625083027055,9.29625083027055,0,0,0,0,0,1,0,1,0,0,48.45,57.49,-9,-9,5,2,3,0,0,7,4,4,1,144,-82030.02823917243,-84816.0347857968,0,0,966.5099310565079 -10552,12999,23604,-9,23601,23600,1,0,22,0,1,1,2,0,0,0,3,0,0,0,0,0,-1099.494400218891,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,43.15,53.25,-9,-9,5,2,3,0,0,0,4,1,1,152,34556.35999263454,0,0,0,454.1898489301312 -10553,13000,23605,-9,23606,23607,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.388926685906,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,4,0,1105,10039.94548092167,71454.26025378685,0,0,2625.227927908896 -10553,13000,23606,23607,-9,-9,1,0,29,0,1,0,1,1,-9,0,2,7.873781768846159,7.900891281388485,0,6,-1,-68.35964554122116,0,2,2,2019,6,0,4,12,1,0,0,74.76088544070699,74.76088544070699,0,0,0,0,0,1,1,0,0,0,52.64,41.11,59.27,50.04,6.666666666666667,3,4,0,0,6,8,4,0,1105,10039.94548092167,71454.26025378685,0,0,2625.227927908896 -10553,13000,23607,23606,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.856906289208717,7.832002435829178,0,6,1,58.27706001014749,0,-9,-9,2019,6,0,34,39,1,0,0,6.835060312779804,6.835060312779804,0,0,0,0,0,1,1,0,0,0,59.27,50.04,52.64,41.11,8.333333333333334,1,1,0,0,5,8,4,0,1105,10039.94548092167,71454.26025378685,0,0,2625.227927908896 -10554,13001,23608,-9,23610,23609,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.1765528901008,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,476,232955.7201862704,185427.2286793926,257972.570789216,157739.9533866004,3056.268882704189 -10554,13001,23609,23610,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.729286666715476,8.794564761562455,0,6,-3,-152.4234276996483,0,2,2,2019,25,11,38,41,1,11,0,21.40432618857875,21.40432618857875,0,0,0,0,0,1,1,0,0,0,28.97,59.76,47.07,56.64,3.333333333333333,1,1,0,0,5,12,4,1,476,232955.7201862704,185427.2286793926,257972.570789216,157739.9533866004,3056.268882704189 -10554,13001,23610,23609,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.38354907567165,7.1697309216542,0,6,3,-3.145689339687228,0,-9,-9,2019,8,1,32,28,1,1,0,4.80453774070127,4.80453774070127,0,0,0,0,0,1,1,0,0,0,47.07,56.64,28.97,59.76,8.333333333333334,1,1,0,0,9,12,4,1,476,232955.7201862704,185427.2286793926,257972.570789216,157739.9533866004,3056.268882704189 -10555,13002,23611,23612,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.620368947053171,8.653334055575197,0,4,-11,-37.74641967577214,0,-9,-9,2019,12,0,20,20,1,0,0,39.44275880007637,39.44275880007637,0,0,0,0,0,0,0,0,6.816901845359483,0,38.26,60.7,52.23,55.6,8.333333333333334,1,1,0,0,3,8,5,1,348.5,321801.2882808205,-69061.2095850581,654230.8978353993,384013.6843117917,8830.966600252415 -10555,13002,23612,23611,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.634298619441205,9.296164061199786,0,4,11,23.52466286931424,0,1,1,2019,11,1,16,30,1,1,0,102.7922031886246,102.7922031886246,0,0,0,0,0,0,0,0,7.104482485850803,0,52.23,55.6,38.26,60.7,8.333333333333334,1,1,0,0,11,8,5,1,348.5,321801.2882808205,-69061.2095850581,654230.8978353993,384013.6843117917,8830.966600252415 -10556,13003,23613,23615,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.14283543026289,9.29669380826526,0,15,-2,-60.77935063996195,0,-9,-9,2019,6,0,38,38,1,0,0,31.41112050994982,31.41112050994982,0,0,0,0,0,1,1,0,6.059221980207188,0,51.83,57.2,43.83,43.24,8.333333333333334,1,1,0,0,11,7,5,1,605.6666666666666,709326.3695171284,282361.9208597965,616454.0592582455,63735.67194213969,5753.2399368183 -10556,13003,23614,-9,23615,23613,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1056.740737785866,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,605.6666666666666,709326.3695171284,282361.9208597965,616454.0592582455,63735.67194213969,5753.2399368183 -10556,13003,23615,23613,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.688225448501081,8.748609332610794,0,15,2,106.1456821542016,0,2,1,2019,12,0,44,40,1,0,0,14.60483083347817,14.60483083347817,0,0,0,0,0,1,1,0,5.588748737721766,0,43.83,43.24,51.83,57.2,6.666666666666667,1,1,0,0,11,7,5,1,605.6666666666666,709326.3695171284,282361.9208597965,616454.0592582455,63735.67194213969,5753.2399368183 -10557,13004,23616,23617,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.373730242244946,8.280852743957135,0,1,0,85.39464634414767,-9,-9,-9,2019,7,0,46,0,1,0,0,11.31584672569098,11.31584672569098,0,0,0,0,0,0,0,0,2.63540694566932,0,54.1,59.11,39.37,57.53,8.333333333333334,1,1,0,0,4,6,5,1,448,57995.53487961376,-44253.49160130641,233534.7724827078,147938.3749001115,3541.409922362145 -10557,13004,23617,23616,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.710130382223316,8.127280589513383,0,1,0,32.00193125454748,-9,-9,-9,2019,11,2,50,0,1,2,0,5.824204398543706,5.824204398543706,0,0,0,0,0,0,0,0,0,0,39.37,57.53,54.1,59.11,8.333333333333334,1,1,0,0,8,6,5,1,448,57995.53487961376,-44253.49160130641,233534.7724827078,147938.3749001115,3541.409922362145 -10558,13005,23618,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,5.471845290051028,5.007798541908365,0,0,-1077.65851074794,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,5.928365570000748,0,0,1,1,0,0,5.402144441868264,43.4,40.77,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,456,-150382.206863864,0,0,0,1342.134899785757 -10559,13006,23619,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.476182028407555,8.277609024330872,6.113314694322002,0,0,-1034.698166993903,0,2,3,2019,22,10,38,38,1,10,0,13.07525892785053,13.07525892785053,0,0,0,0,0,1,1,0,7.591692107816537,0,42,40,-9,-9,3.333333333333333,1,1,0,0,9,8,4,1,146.5,528753.6274958106,78398.22157559782,413384.2001841064,0,2773.031131553993 -10559,13006,23620,-9,23619,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.801016036584,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,146.5,528753.6274958106,78398.22157559782,413384.2001841064,0,2773.031131553993 -10560,13007,23621,23622,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.981841339983177,8.147822293502305,0,7,1,67.38616446476222,0,-9,-9,2019,11,0,37,37,1,0,0,10.32278005908363,10.32278005908363,0,0,0,0,0,0,0,0,6.15864344710973,0,49.35,59.64,51.49,57.57,8.333333333333334,1,1,0,0,8,13,4,1,488.5,786332.6104358506,647530.9131233961,92632.75270969918,66238.25185175191,3005.664424739235 -10560,13007,23622,23621,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.35293914449626,8.081017854300704,7.524209153920672,7,-1,-15.84698067899752,0,2,-9,2019,12,0,24,4,1,0,0,7.774156893896097,7.774156893896097,0,0,0,0,0,0,0,0,4.808989482050796,7.553179549781113,51.49,57.57,49.35,59.64,8.333333333333334,1,1,0,0,8,13,4,1,488.5,786332.6104358506,647530.9131233961,92632.75270969918,66238.25185175191,3005.664424739235 -10561,13008,23623,-9,-9,-9,1,1,77,0,1,0,2,2,-9,0,2,0,7.39180626486719,7.649960931149584,0,0,-1002.941195409729,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,28.30671984630475,0,0,1,1,0,1.25250425873945,7.739003967837344,43.34,45.18,-9,-9,5,1,1,0,0,0,9,3,1,7048,1212136.967843662,324674.656487236,56134.14144965518,0,2044.67054549295 -10561,13009,23624,23625,-9,23623,1,1,39,0,1,0,2,2,-9,0,4,8.750401796535451,8.786987960002456,0,1,0,-33.42327354458671,-9,-9,2,2019,9,0,35,0,1,1,0,18.39360420134195,18.39360420134195,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,6,0,0,1,9,4,1,688,22345.2504559006,0,196761.3461573062,116247.2699015865,2926.766227115489 -10561,13009,23625,23624,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.26529823608626,7.148072405113127,0,1,0,-20.71681801614703,-9,-9,-9,2019,10,0,25,0,1,1,0,6.468369152262128,6.468369152262128,0,0,0,0,0,1,1,0,0,0,49,56,51,56,8,4,6,0,0,1,9,4,1,688,22345.2504559006,0,196761.3461573062,116247.2699015865,2926.766227115489 -10562,13010,23626,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,7.606174997219401,7.495562733063528,0,0,0,-1044.162459885088,0,2,-9,2019,18,6,37,43,1,6,0,5.685410289830302,5.685410289830302,0,0,0,0,7,1,1,0,0,0,42.85,62.85,-9,-9,3.333333333333333,1,1,0,1,4,9,3,0,824,65967.74349252896,-8514.855934067113,0,0,792.803408031862 -10563,13011,23627,23628,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.526099229005652,8.207678926163371,0,7,1,60.31234569980639,0,2,3,2019,6,0,27,22,1,0,0,19.64962897782747,19.64962897782747,0,0,0,0,0,0,0,0,6.054267954863938,0,63.83,38.08,51.83,57.2,8.333333333333334,1,1,0,0,8,13,5,1,340.5,1950639.59744207,1322882.431835936,389472.6761037591,17750.22944092679,5930.783840192761 -10563,13011,23628,23627,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,9.424699189702018,9.419332061430923,0,7,-1,85.77974331951047,0,3,2,2019,6,0,37,37,1,0,0,41.52559279748186,41.52559279748186,0,0,0,0,0,0,0,0,4.323443388602073,0,51.83,57.2,63.83,38.08,1.666666666666667,1,1,0,0,8,13,5,1,340.5,1950639.59744207,1322882.431835936,389472.6761037591,17750.22944092679,5930.783840192761 -10563,13012,23629,-9,23628,23627,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1049.20222621978,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.6941391809410615,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,254,51713.43623720435,0,0,0,219.8829097240518 -10564,13013,23630,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1143.406360155258,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,48.45,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,164,-226120.7588397738,27496.31043825772,0,0,81.29887234677835 -10565,13014,23631,23632,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.100175429259721,8.855965953862514,0,8,-1,61.92919570565401,0,-9,-9,2019,11,0,28,28,1,0,0,34.65551917251158,34.65551917251158,0,0,0,0,0,0,0,0,0,0,60.25,45.08,58.32,50.22,8.333333333333334,2,3,0,0,9,7,5,1,1096,500343.6663643684,377409.488557191,323977.6651627597,94836.69071000244,9453.038634076827 -10565,13014,23632,23631,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,9.558439904553214,9.751700591006285,0,8,1,144.7789975556734,0,3,1,2019,8,0,40,50,1,0,0,52.18399618883731,52.18399618883731,0,0,0,0,0,0,0,0,6.58805651837443,0,58.32,50.22,60.25,45.08,8.333333333333334,2,3,0,0,10,7,5,1,1096,500343.6663643684,377409.488557191,323977.6651627597,94836.69071000244,9453.038634076827 -10566,13015,23633,-9,-9,-9,1,0,35,0,0,0,1,1,-9,1,3,0,0,0,0,0,-863.1033338741033,0,1,1,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,.5658559297984342,0,24.88,35.64,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,186,222780.1117292709,0,0,0,1069.124875328076 -10567,13016,23634,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1046.291630414416,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.72,9.17,-9,-9,5,1,1,0,0,0,10,1,1,913,-40662.15701885275,38505.41814799922,0,0,857.5252683453189 -10567,13017,23635,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.731667010817168,8.067957577187849,0,0,0,-997.3051882300537,-9,-9,-9,2019,17,5,35,0,1,5,0,8.677954834063952,8.677954834063952,0,0,0,0,0,1,1,0,0,0,39.81,60.26,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,1284,-133707.1759670099,-63034.11846374766,0,0,1945.618813570985 -10568,13018,23636,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,6.974380668443646,7.16375031494584,0,0,0,-868.1576030807846,-9,-9,-9,2019,14,4,42,0,1,4,0,3.115126095780401,3.115126095780401,0,0,0,0,0,0,0,0,0,0,33.35,56.52,-9,-9,5,1,1,0,1,7,6,2,0,467,71014.14467192223,0,0,0,156.709725627975 -10569,13019,23637,23638,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.708509806508848,8.004495193007893,28,-2,53.23083657211806,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.502678820768834,7.671325022650016,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,0,7,3,1,419.5,810946.5282077477,387715.6689971962,375962.0726235367,0,2405.684111289553 -10569,13019,23638,23637,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,32,2,.4767060608222211,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.990874661749239,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,419.5,810946.5282077477,387715.6689971962,375962.0726235367,0,2405.684111289553 -10570,13020,23639,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.674100833332321,7.015151266148389,0,0,-953.4230891327444,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.278885987987968,6.475740939746387,53.09,39.08,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,345,487145.7935607529,191876.4736534439,0,0,894.6248758909946 -10571,13021,23640,23641,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.566956776538531,6.577840367767448,32,-3,-22.61514994045551,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.191975021702832,60.56,22.38,62.42,32.41,10,1,1,0,0,0,10,2,0,361.5,734882.5675302637,424624.5428232664,149470.8001624548,0,1399.209192974186 -10571,13021,23641,23640,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.102968877033792,6.524345441077274,32,3,171.8045496266538,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.926941336501692,6.844427820044716,62.42,32.41,60.56,22.38,8.333333333333334,1,1,0,0,3,10,2,0,361.5,734882.5675302637,424624.5428232664,149470.8001624548,0,1399.209192974186 -10572,13022,23642,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-911.7724910674285,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,30.23,44.75,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,735,145394.0587154433,0,0,0,1862.923838350856 -10573,13023,23643,-9,-9,23644,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1002.591270456072,-9,-9,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,4,1,2375,190790.3936409895,68544.47854136139,0,0,1343.473450135909 -10573,13023,23644,-9,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,8.345313564719026,8.11710198754697,0,0,0,-1069.972061998493,0,3,3,2019,9,1,48,46,1,1,0,11.78924834750668,11.78924834750668,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,12,10,4,1,2375,190790.3936409895,68544.47854136139,0,0,1343.473450135909 -10573,13024,23645,-9,-9,23644,1,1,18,0,1,0,2,2,1,0,3,7.704060045957649,7.375550637113803,0,0,0,-1009.052934693893,-9,-9,3,2019,12,0,53,0,1,2,1,3.980796073876906,3.980796073876906,0,0,0,0,0,0,0,0,.6020772145004818,0,44,55,-9,-9,5,1,1,0,0,4,10,3,1,813,27300.16793163681,-83875.56929193392,160695.3024097891,129532.6043396968,770.0539125520481 -10574,13025,23646,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1035.771563346538,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.0937420150965681,0,31.68,17,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,563,1888.976953294779,0,0,0,889.0728749520749 -10575,13026,23647,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,1,8.614719128584468,8.207270943691151,0,0,0,-1119.709212242792,0,1,1,2019,36,12,78,61,1,12,0,5.150800332980617,5.150800332980617,0,0,0,0,0,0,0,0,0,0,11.7,45.3,-9,-9,0,1,1,0,1,11,8,4,0,1481,0,0,0,0,1530.329076762895 -10576,13027,23648,23649,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.747053157133489,7.425074592656602,0,4,-8,46.99149783931452,0,-9,-9,2019,16,5,38,40,1,5,0,6.053794546119777,6.053794546119777,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.02,60.7,10,1,1,0,0,9,6,5,1,864.5,307326.4520836686,295483.1800946451,196725.2486976482,139682.6799578498,3474.187552628204 -10576,13027,23649,23648,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.161078308196974,8.895566061420984,0,4,8,14.47687968604366,0,2,1,2019,11,0,47,40,1,0,0,28.48364238164008,28.48364238164008,0,0,0,0,0,0,0,0,0,0,44.02,60.7,48.28,60.18,6.666666666666667,1,1,0,0,9,6,5,1,864.5,307326.4520836686,295483.1800946451,196725.2486976482,139682.6799578498,3474.187552628204 -10577,13028,23650,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.638377175483557,6.983712351675018,0,0,-1029.141861402152,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.659324138361335,37.57,35.67,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,545,182400.1200750593,166303.2572601933,94287.88183216442,0,1180.166218855692 -10578,13029,23651,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.225865931938117,7.982666403573606,0,0,0,-1072.129900799966,0,3,2,2019,12,0,23,25,1,0,0,20.15476500715143,20.15476500715143,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,518,207438.220916773,45849.88416418898,133448.6628240373,97947.05553224025,1528.8854289207 -10579,13030,23652,23653,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.066167861880272,8.117194572195908,0,17,0,74.39497809571206,0,2,2,2019,10,0,33,34,1,0,0,12.0499503837828,12.0499503837828,0,0,0,0,0,1,1,0,.8290325936370175,0,54.74,57.22,54.2,57.49,8.333333333333334,1,1,0,0,8,4,4,1,342.6666666666667,328377.1123705221,266689.6451701661,175843.2729756027,98187.94514149333,3211.791150041536 -10579,13030,23653,23652,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.448676490563161,8.426351707944265,0,17,0,-8.452154667268513,0,3,2,2019,1,0,39,40,1,0,0,11.95987974445627,11.95987974445627,0,0,0,0,0,1,1,0,3.855181662182647,0,54.2,57.49,54.74,57.22,8.333333333333334,1,1,0,0,8,4,4,1,342.6666666666667,328377.1123705221,266689.6451701661,175843.2729756027,98187.94514149333,3211.791150041536 -10579,13030,23654,-9,23652,23653,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.90697825385,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,342.6666666666667,328377.1123705221,266689.6451701661,175843.2729756027,98187.94514149333,3211.791150041536 -10580,13031,23655,23656,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,4.854396529936923,5.040580193526528,6,10,-25.27349892343668,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.455260851063302,4.856234507219021,40.68,36.11,37.28,26.3,3.333333333333333,1,1,0,0,0,4,2,1,571.5,360415.3032481486,1985.392780687649,60851.01206239105,0,921.0717566743501 -10580,13031,23656,23655,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,6,-10,117.3752430788308,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,2.396374540849389,0,0,1,1,0,.8098129906996637,0,37.28,26.3,40.68,36.11,5,1,1,0,0,0,4,2,1,571.5,360415.3032481486,1985.392780687649,60851.01206239105,0,921.0717566743501 -10581,13032,23657,23658,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,42,2,0,0,-9,-9,2019,12,0,0,52,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,55.3,33.72,48.19,15.79,8.333333333333334,1,1,0,0,9,7,1,0,631.5,270808.6130050419,0,288687.2235562056,0,1228.267025118791 -10581,13032,23658,23657,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,42,-2,0,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,48.19,15.79,55.3,33.72,3.333333333333333,1,1,0,0,3,7,1,0,631.5,270808.6130050419,0,288687.2235562056,0,1228.267025118791 -10581,13033,23659,-9,23658,23657,1,1,23,0,0,0,2,2,-9,0,4,7.387620799390469,7.213642724391611,0,0,0,-1040.187001898802,0,-9,2,2019,10,0,5,5,1,1,0,37.43483750400287,37.43483750400287,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,0,2211,-187439.4147894186,0,0,0,596.025008093828 -10582,13034,23660,23661,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,6.386022596910012,6.552252353248165,9,-2,-77.23965214198955,0,2,2,2019,7,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,5.795038623216129,6.518670352958079,57.06,57.76,57.16,56.15,10,1,1,0,0,9,11,3,1,753.5,897197.3472533899,720856.4556201966,195364.6581016727,0,1933.085853818517 -10582,13034,23661,23660,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.948517181586382,7.947480746246887,9,2,16.58325792966629,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.215045845779471,57.16,56.15,57.06,57.76,10,1,1,0,0,0,11,3,1,753.5,897197.3472533899,720856.4556201966,195364.6581016727,0,1933.085853818517 -10582,13035,23662,-9,23661,23660,1,0,22,0,0,0,1,1,-9,0,4,0,2.868349885119419,2.940614181548445,0,0,-874.2953424979364,0,1,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,2.582794752789391,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,0,0,11,2,1,603,-83296.28717303574,0,0,0,-433.9039623424861 -10583,13036,23663,23664,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.174465434875486,8.219197180645278,10,0,25.43760299444124,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.190326869587483,7.985977585455794,55.2,49.4,57.06,57.76,8.333333333333334,1,1,0,0,0,12,3,1,978.5,1271089.055578316,821979.3962871539,176374.2524020862,0,3339.229810269651 -10583,13036,23664,23663,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,0,0,10,0,60.75440439089355,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.171722861872447,0,57.06,57.76,55.2,49.4,8.333333333333334,1,1,0,0,0,12,3,1,978.5,1271089.055578316,821979.3962871539,176374.2524020862,0,3339.229810269651 -10584,13037,23665,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.331712341733716,8.338092108812965,0,0,0,-991.0089965982241,0,2,2,2019,6,0,35,37,1,0,0,12.93253695233046,12.93253695233046,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,1418,-148836.7307216355,68912.59008897406,196687.798744493,50767.18072830443,1591.132500226884 -10585,13038,23666,-9,23670,23667,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.069070383349,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1276.8,95404.0124496527,0,133790.7920470446,79043.07835702077,2517.362892794749 -10585,13038,23667,23670,-9,-9,1,1,36,0,3,0,3,3,-9,0,5,8.127071625495848,8.310670061327167,0,8,4,-30.88935277143329,0,-9,-9,2019,2,0,30,48,1,0,0,12.60019247171749,12.60019247171749,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,13,3,1,1276.8,95404.0124496527,0,133790.7920470446,79043.07835702077,2517.362892794749 -10585,13038,23668,-9,23670,23667,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.709061513754,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1276.8,95404.0124496527,0,133790.7920470446,79043.07835702077,2517.362892794749 -10585,13038,23669,-9,23670,23667,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.7337514094673,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,1276.8,95404.0124496527,0,133790.7920470446,79043.07835702077,2517.362892794749 -10585,13038,23670,23667,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,7.794840792193375,7.801222969987677,0,8,-4,103.8987663173519,0,2,3,2019,6,0,35,35,1,0,0,9.309694599156963,9.309694599156963,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,2,13,3,1,1276.8,95404.0124496527,0,133790.7920470446,79043.07835702077,2517.362892794749 -10586,13039,23671,-9,23674,23673,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.584341417429,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,949.25,532105.4909532145,303330.2371144811,397563.6057288247,201097.5087166379,3775.803444018842 -10586,13039,23672,-9,23674,23673,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1061.292249454535,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,949.25,532105.4909532145,303330.2371144811,397563.6057288247,201097.5087166379,3775.803444018842 -10586,13039,23673,23674,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.194883106858416,8.250491621725955,0,9,5,-138.0329847012567,0,2,3,2019,6,0,50,49,1,0,0,7.238080622420369,7.238080622420369,0,0,0,0,0,1,1,0,1.979064975957696,0,60.13,49.27,58.15,52.91,8.333333333333334,1,1,0,0,10,7,4,1,949.25,532105.4909532145,303330.2371144811,397563.6057288247,201097.5087166379,3775.803444018842 -10586,13039,23674,23673,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.684521626149332,8.979775763184119,0,9,-5,-48.08266526654693,0,2,2,2019,9,0,39,39,1,0,0,17.95051647842247,17.95051647842247,0,0,0,0,0,1,1,0,0,0,58.15,52.91,60.13,49.27,8.333333333333334,1,1,0,0,10,7,4,1,949.25,532105.4909532145,303330.2371144811,397563.6057288247,201097.5087166379,3775.803444018842 -10587,13040,23675,23676,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,5.882142324390286,6.087977915144712,8,0,-19.14262809288063,0,3,2,2019,23,11,0,0,4,11,0,0,0,1,0,11.29035288069283,0,14.5,1,1,0,5.904361400976963,5.670479330233372,36.43,39,64.40000000000001,15.2,5,1,1,0,0,0,6,2,1,439,321135.0631004405,16603.83915326995,168534.6613517785,0,2461.287562866531 -10587,13040,23676,23675,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.98193319355371,6.264465806091609,8,0,-14.60396361928293,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,7.549683573684079,0,0,1,1,0,0,6.283616848851864,64.40000000000001,15.2,36.43,39,10,1,1,0,0,0,6,2,1,439,321135.0631004405,16603.83915326995,168534.6613517785,0,2461.287562866531 -10588,13041,23677,23678,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.805425819683926,8.841065624114052,0,4,-1,121.0588664834887,0,2,2,2019,12,2,67,65,1,2,0,9.716444081586889,9.716444081586889,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,7,2,5,0,103,241240.407094119,220723.0651910757,179244.3051958139,126169.2364832483,3775.188598275364 -10588,13041,23678,23677,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.108287705071238,8.023300685818381,0,4,1,34.38352176746175,0,-9,-9,2019,15,3,42,42,1,3,0,9.859040238517743,9.859040238517743,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,5,1,1,0,0,9,2,5,0,103,241240.407094119,220723.0651910757,179244.3051958139,126169.2364832483,3775.188598275364 -10589,13042,23679,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.65624690409823,6.521961185438038,0,0,-1060.481168992923,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.650828146510118,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,659,122313.1175284906,213323.2972151952,0,0,1129.896331679509 -10590,13043,23680,-9,23681,23682,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1082.107202653286,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,0,164,643343.6143969406,334410.1134769926,415991.3969311989,0,1184.903070308615 -10590,13043,23681,23682,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,15,-8,14.08282902591512,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,43.12,47.53,8,2,3,0,1,0,8,2,0,164,643343.6143969406,334410.1134769926,415991.3969311989,0,1184.903070308615 -10590,13043,23682,23681,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.587097808828061,7.450556252405934,0,15,8,32.62277440197461,0,3,2,2019,15,6,28,60,1,6,0,7.56498971446546,7.56498971446546,0,0,0,0,0,1,1,0,0,0,43.12,47.53,49,55,5,2,3,0,1,12,8,2,0,164,643343.6143969406,334410.1134769926,415991.3969311989,0,1184.903070308615 -10591,13044,23683,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,7.519895227061994,7.556006742298145,4.214944924382227,0,0,-988.8264167099868,0,-9,-9,2019,5,0,24,30,1,0,0,7.828800294963601,7.828800294963601,1,0,0,0,0,1,1,0,6.566421908989782,4.510731597620723,56,53,-9,-9,10,1,1,0,0,9,7,3,1,1183,229017.0404574799,113181.4403992332,172538.6275042111,0,1621.100298149824 -10592,13045,23684,23685,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.650981779832009,7.522060760796146,16,6,-38.80138392071,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.012347976719963,7.823757632566985,52.15,48.98,41.88,48.45,8.333333333333334,1,1,0,0,8,7,3,1,471,690292.1714826592,0,632718.8062747212,0,3488.001408771578 -10592,13045,23685,23684,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,16,-6,-51.79325029644488,0,1,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.531862508076971,0,41.88,48.45,52.15,48.98,5,1,1,0,0,9,7,3,1,471,690292.1714826592,0,632718.8062747212,0,3488.001408771578 -10593,13046,23686,23687,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.374598709130762,8.507684064361799,0,6,-1,78.83700328033053,0,3,3,2019,9,0,45,39,1,1,0,11.9325366393575,11.9325366393575,0,0,0,0,2,0,0,0,0,0,54,54,52,53,8,1,1,0,0,6,12,4,1,648.5,609563.7364487252,425530.4529453566,94726.03530195946,0,2502.936810513142 -10593,13046,23687,23686,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.606472927140139,7.476159472887062,0,36,1,-38.37417807881589,0,3,3,2019,10,0,39,41,1,1,0,5.116915290884489,5.116915290884489,0,0,0,0,0,0,0,0,0,0,52,53,54,54,8,1,1,0,0,8,12,4,1,648.5,609563.7364487252,425530.4529453566,94726.03530195946,0,2502.936810513142 -10594,13047,23688,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-945.476841529392,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,45.67,53.13,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1437,105604.9393960147,0,0,0,1117.943618185989 -10595,13048,23689,23690,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,53,-2,37.40859743730403,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.868465831051268,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,496.5,602551.949542304,379831.3452046299,0,0,2211.3529320218 -10595,13048,23690,23689,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.60906244137913,7.256894523543942,53,2,-93.85776293923854,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.627532920651652,7.635778683012353,57.16,56.15,49.04,55.86,10,1,1,0,0,0,11,3,1,496.5,602551.949542304,379831.3452046299,0,0,2211.3529320218 -10596,13049,23691,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.964996131010649,7.785181188203435,0,0,-998.6794993620402,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.176269537952036,7.847260003627983,54.38,51.94,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,442,927647.2961971202,617513.4875250476,167938.1973438927,0,1895.55394208582 -10597,13050,23692,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.266042450289436,7.724142734152582,0,0,-1028.268094982549,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.807673787916555,60.46,40.89,-9,-9,10,1,1,0,0,0,12,3,1,1969,526846.072658191,97413.73633456994,130923.2545201273,0,1743.94607066154 -10598,13051,23693,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.135089061378676,7.152588229042794,0,0,0,-981.6520405626464,0,-9,1,2019,8,0,20,20,1,0,0,7.923811475657804,7.923811475657804,0,0,0,0,0,0,0,0,0,0,39.33,60.15,-9,-9,6.666666666666667,1,1,0,0,4,8,2,0,1626,184155.3108713128,157750.6783902246,152479.97157844,35383.75495970113,268.9276444021534 -10599,13052,23694,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,3.490179634715742,3.835244922613524,0,0,-1015.062441582993,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.572732080579281,3.550796434866803,51.22,46.65,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,31,-36984.83610205914,0,0,0,857.1345717268757 -10600,13053,23695,23696,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,40,-2,69.31594329726676,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,49,48,51,49,7,1,1,0,1,0,7,3,0,2018,263477.1198635823,77786.0078681958,342879.5857375846,0,2100.186240372536 -10600,13053,23696,23695,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.036384470270862,8.319971044138851,0,40,2,103.9047924575382,0,-9,-9,2019,10,0,38,50,1,1,0,9.410633826212223,9.410633826212223,0,0,0,0,0,1,1,0,0,0,51,49,49,48,7,1,1,0,1,11,7,3,0,2018,263477.1198635823,77786.0078681958,342879.5857375846,0,2100.186240372536 -10600,13054,23697,-9,23695,23696,1,1,31,0,0,0,3,3,-9,0,4,7.216591651918621,7.16708113965945,0,0,0,-883.9713688402002,0,3,2,2019,10,0,21,30,1,1,1,7.005378510867188,7.005378510867188,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,11,7,3,0,537,55625.12834216569,0,0,0,775.1684275397482 -10600,13055,23698,-9,23695,23696,1,1,21,0,0,0,2,2,-9,0,4,7.543609815020745,7.141384029212044,0,0,0,-1055.750466799419,0,3,3,2019,10,0,24,0,1,1,1,7.908859519410614,7.908859519410614,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,0,3077,54206.20185015559,0,0,0,648.2183728127942 -10601,13056,23699,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.407336865523468,5.839905644454358,0,0,-967.0593985561417,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.902384586210238,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,1089,208686.9666182711,16714.97919944009,338423.3586606582,0,179.5561220779228 -10602,13057,23700,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.924481083262364,6.893163590193507,0,0,-1036.713539808588,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.915030362646899,59.3,39.29,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1010,637083.3811787638,355321.4669231998,270236.4714268125,0,1219.818837817481 -10603,13058,23701,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.096603059693253,8.233709987356903,0,0,0,-928.6498748742764,0,-9,-9,2019,7,0,38,48,1,0,0,11.51902598040672,11.51902598040672,0,0,0,0,0,1,1,0,.0021565596209118,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,244,1156821.44330985,468348.9616147624,284490.8708517305,0,1729.73760271226 -10604,13059,23702,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.603902515140896,8.099125060649417,0,0,-880.1279538848951,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.131745850222568,62.39,56.71,-9,-9,10,1,1,0,0,9,12,4,1,2730,811457.7204438162,610104.0831758505,402981.2216050095,0,1615.284296157505 -10605,13060,23703,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.114496591274836,8.027491585436048,0,0,0,-1091.493146713854,0,2,2,2019,20,8,75,40,1,8,0,5.42758695716658,5.42758695716658,0,0,0,0,0,1,1,0,1.276517692374865,0,24.42,52.3,-9,-9,0,1,1,0,1,4,6,4,0,137,136482.2262912085,44848.84160007602,0,0,1870.370165094033 -10605,13061,23704,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.286711015751413,7.350985096303657,0,0,0,-1056.932735244597,-9,-9,-9,2019,12,0,35,0,1,2,0,4.02407450259753,4.02407450259753,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,6,3,0,301,149469.5879138397,0,0,0,625.8829499554349 -10606,13062,23705,23706,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.313664493234521,8.37919287308477,0,2,-2,-62.01190271882648,-9,-9,-9,2019,12,0,37,0,1,2,0,13.03591729095969,13.03591729095969,0,0,0,0,0,1,1,0,0,0,47,49,34.7,35.84,7,1,1,0,0,1,2,5,0,336,1404333.119809087,992619.9077904031,346444.4405512735,26738.63796215896,3871.227927175071 -10606,13062,23706,23705,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,8.262182530161645,8.272067733907797,0,2,2,14.46070835521784,0,2,2,2019,23,11,35,37,1,11,0,13.11344762588004,13.11344762588004,0,0,0,0,0,1,1,0,0,0,34.7,35.84,47,49,3.333333333333333,1,1,0,0,10,2,5,0,336,1404333.119809087,992619.9077904031,346444.4405512735,26738.63796215896,3871.227927175071 -10607,13063,23707,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,8.190442269151125,7.817787731001308,0,0,-1085.573390219621,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,15.15381740313768,0,135.1466606399492,0,1,1,0,0,7.84678709931971,44.52,35.92,-9,-9,5,1,1,0,0,0,9,3,0,141,679295.4577445522,147501.3655752695,336173.3671046945,0,1703.387166410004 -10608,13064,23708,23709,-9,-9,1,1,53,0,0,0,1,1,-9,0,1,7.578981934392822,7.930880681728827,6.838630223464675,34,0,28.18315602605094,0,2,2,2019,9,0,48,35,1,0,0,5.589642369567549,5.589642369567549,0,0,0,0,0,0,0,0,6.900046017641778,7.207535910116673,56.75,44.7,53.96,42.86,8.333333333333334,1,1,0,0,13,7,4,1,835,307616.221045014,338253.3929852594,142647.527792913,42494.59928759207,3124.783494300852 -10608,13064,23709,23708,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.844834981600109,7.905140721836807,0,34,0,49.8858327780743,0,2,3,2019,10,0,33,34,1,0,0,10.6955855410416,10.6955855410416,0,0,0,0,0,0,0,0,0,0,53.96,42.86,56.75,44.7,8.333333333333334,1,1,0,0,13,7,4,1,835,307616.221045014,338253.3929852594,142647.527792913,42494.59928759207,3124.783494300852 -10608,13065,23710,-9,23709,23708,1,0,26,0,0,0,1,1,-9,0,3,7.845924130313205,7.803884910954396,0,0,0,-911.3971777535467,0,2,2,2019,6,1,39,40,1,1,1,8.360050659872902,8.360050659872902,0,0,0,0,0,0,0,0,3.620232535402809,0,49.42,50.19,-9,-9,8.333333333333334,1,1,0,0,13,7,4,1,2683,-233379.2011106953,20930.88509246585,0,0,1878.559426956956 -10608,13066,23711,-9,23709,23708,1,0,24,0,0,0,2,2,-9,0,3,7.723448960946184,7.920799441906563,0,0,0,-1046.828122005478,0,2,1,2019,18,6,40,70,1,6,1,6.628175460019496,6.628175460019496,0,0,0,0,0,0,0,0,0,0,27.96,54.98,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,6702,-49287.83821537027,0,0,0,715.4242453094628 -10609,13067,23712,-9,23713,-9,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-933.415811192209,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,4,2,0,1772.5,0,0,0,0,910.744151927162 -10609,13067,23713,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.0447364530166,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,27.11,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,1772.5,0,0,0,0,910.744151927162 -10610,13068,23714,23715,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.113218103177736,8.050960527531673,34,-1,-27.83484451804885,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.602651108455099,8.269970313612044,51.83,57.2,44.09,31.24,8.333333333333334,1,1,0,0,0,9,3,1,822.5,769981.8001563279,452367.8836716171,412462.3805205521,-926.3596482735029,2977.918573766364 -10610,13068,23715,23714,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,34,1,-2.877952230452092,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,2.674129057295517,0,0,1,1,0,0,0,44.09,31.24,51.83,57.2,5,1,1,0,0,0,9,3,1,822.5,769981.8001563279,452367.8836716171,412462.3805205521,-926.3596482735029,2977.918573766364 -10611,13069,23716,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.912985193296805,8.110985093570307,0,0,-1026.361741708119,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.20965621358279,7.630073047847097,57.16,56.15,-9,-9,10,1,1,0,0,0,12,3,1,884,652200.9927878832,252143.2389840827,279737.6720201065,0,2698.366219046117 -10612,13070,23717,-9,23718,23719,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.9858196489358,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,0,452,772517.3531893231,610904.3248063815,245307.9509578597,107777.5427127723,3909.645631665779 -10612,13070,23718,23719,-9,-9,1,0,54,0,3,0,2,2,-9,0,3,7.076799771886285,7.324157844625447,0,22,3,-97.67076376493631,0,3,2,2019,12,0,20,0,1,0,0,6.938180392144329,6.938180392144329,0,0,0,0,0,1,1,0,0,0,49.29,54.59,49.04,55.86,5,1,1,0,0,5,2,5,0,452,772517.3531893231,610904.3248063815,245307.9509578597,107777.5427127723,3909.645631665779 -10612,13070,23719,23718,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,9.529498525167419,9.589848880542293,0,22,-3,59.76109637859577,0,3,2,2019,3,0,40,40,1,0,0,41.73628693473175,41.73628693473175,0,0,0,0,0,1,1,0,9.976970902492718,0,49.04,55.86,49.29,54.59,8.333333333333334,1,1,0,0,11,2,5,0,452,772517.3531893231,610904.3248063815,245307.9509578597,107777.5427127723,3909.645631665779 -10612,13071,23720,-9,23718,23719,1,1,29,0,3,0,2,2,-9,0,3,0,6.259019158953508,6.158101453064821,0,0,-1066.887465263768,-9,2,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,6.399943038630965,0,43.92,51.26,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,888,19814.11244716071,0,0,0,1335.799348811735 -10612,13071,23721,-9,-9,23720,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.555320456131,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,888,19814.11244716071,0,0,0,1335.799348811735 -10612,13071,23722,-9,-9,23720,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.8929583689744,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,888,19814.11244716071,0,0,0,1335.799348811735 -10613,13072,23723,23724,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.298497180379687,6.214999868669909,7,-2,-99.56899270342275,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.67963827560738,6.611918255744164,55.79,52.62,57.09,46.7,10,1,1,0,0,0,9,3,1,974.5,1018042.776205851,343745.5024604773,194278.2888316957,0,2547.218800334857 -10613,13072,23724,23723,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.639930649425031,7.323368148235888,60,2,-5.617238007217851,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.225617303835121,7.675299646306495,57.09,46.7,55.79,52.62,8.333333333333334,1,1,0,0,0,9,3,1,974.5,1018042.776205851,343745.5024604773,194278.2888316957,0,2547.218800334857 -10614,13073,23725,23726,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.263449615623256,6.846795743638658,10,3,44.52658901054666,0,-9,-9,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.968784523332093,6.682261806713555,31.9,19.36,36.89,34.45,3.333333333333333,1,1,0,0,9,11,2,1,559.5,152138.2586482626,122416.9611411764,100686.1490447965,0,1910.329123774688 -10614,13073,23726,23725,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,6.584484573499714,6.487264409359218,0,10,-3,-32.32613979692571,0,-9,-9,2019,17,6,15,14,1,6,0,5.057605353663058,5.057605353663058,0,0,0,0,14.5,1,1,0,2.055429400590257,0,36.89,34.45,31.9,19.36,3.333333333333333,1,1,0,0,11,11,2,1,559.5,152138.2586482626,122416.9611411764,100686.1490447965,0,1910.329123774688 -10615,13074,23727,23728,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.006127137967789,7.185558752831423,2,-5,78.76743114326732,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.314322936900201,46.92,60.71,47.78,36.16,8.333333333333334,1,1,0,0,2,11,2,1,552.5,385523.0519293963,279430.6564584078,181492.5385627954,0,1147.811643965808 -10615,13074,23728,23727,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,2,5,-81.92648433077291,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,6.219016726659857,0,0,1,1,0,0,0,47.78,36.16,46.92,60.71,8.333333333333334,1,1,0,0,0,11,2,1,552.5,385523.0519293963,279430.6564584078,181492.5385627954,0,1147.811643965808 -10616,13075,23729,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1162.525938652403,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.79,38.61,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,73,67134.5295211176,0,0,0,460.8307358668587 -10617,13076,23730,-9,23731,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1047.757196298422,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.81,33.29,-9,-9,0,1,1,1,0,9,12,1,1,523,15971.98976121051,0,0,0,948.3367933164991 -10617,13077,23731,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,4.928656778951424,5.431380133427889,0,0,-1028.923317823767,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,5.261960365821221,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,485,3705.002323699038,30384.52166805013,186939.7346909438,0,596.1833816145341 -10618,13078,23732,23733,-9,-9,1,1,21,0,1,0,2,2,-9,1,3,4.598382568306937,4.523127292027705,0,1,-1,44.57650128195394,-9,-9,-9,2019,10,1,5,0,1,1,0,2.192805923424754,2.192805923424754,0,0,0,0,0,1,1,0,0,0,30.98,50.81,30.8,52.18,10,1,1,0,0,2,11,2,0,666.3333333333334,-46865.16492584273,31390.74716989681,0,0,2515.827981294754 -10618,13078,23733,23732,-9,-9,1,0,22,0,1,0,2,2,-9,1,3,0,0,0,1,1,15.1586127096955,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.8,52.18,30.98,50.81,5,1,1,0,0,1,11,2,0,666.3333333333334,-46865.16492584273,31390.74716989681,0,0,2515.827981294754 -10618,13078,23734,-9,23733,23732,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.5892595428933,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,2,0,666.3333333333334,-46865.16492584273,31390.74716989681,0,0,2515.827981294754 -10619,13079,23735,-9,23738,23736,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.1167207821034,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,722.25,6440.62142816171,-4610.849153125371,0,0,2154.818206625653 -10619,13079,23736,23738,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.641510140267142,8.496863857036272,0,6,1,-14.67963118331264,0,-9,-9,2019,6,0,50,47,1,0,0,13.63793686476815,13.63793686476815,0,0,0,0,7,1,1,0,0,0,59.53,56.44,27.63,32.17,5,1,1,0,0,5,9,3,1,722.25,6440.62142816171,-4610.849153125371,0,0,2154.818206625653 -10619,13079,23737,-9,23738,23736,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-996.3976290229866,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,1,722.25,6440.62142816171,-4610.849153125371,0,0,2154.818206625653 -10619,13079,23738,23736,-9,-9,1,0,30,1,2,0,2,2,-9,1,2,0,0,0,6,-1,-69.84523951784315,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,2.682911636545899,0,27.63,32.17,59.53,56.44,0,1,1,0,1,9,9,3,1,722.25,6440.62142816171,-4610.849153125371,0,0,2154.818206625653 -10620,13080,23739,-9,23741,23740,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.070256392367,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,653.6,143656.8032449817,35607.37096971027,257020.6387527906,145279.2299022067,3490.498966786769 -10620,13080,23740,23741,-9,-9,1,1,37,2,3,0,3,3,-9,0,3,8.352468210379001,8.337614692918695,0,16,3,10.9577079200635,0,3,1,2019,8,0,42,40,1,0,0,14.95827535735996,14.95827535735996,0,0,0,0,0,1,1,0,3.152693431289151,0,57.33,53.46,63.48,51.85,1.666666666666667,1,1,0,0,7,9,4,1,653.6,143656.8032449817,35607.37096971027,257020.6387527906,145279.2299022067,3490.498966786769 -10620,13080,23741,23740,-9,-9,1,0,34,2,3,0,2,2,-9,0,4,7.97254751830005,8.117238674501744,0,15,-3,46.75334971263067,0,1,2,2019,8,0,24,0,1,0,0,16.2131649487699,16.2131649487699,0,0,0,0,0,1,1,0,4.613254568596661,0,63.48,51.85,57.33,53.46,10,1,1,0,0,6,9,4,1,653.6,143656.8032449817,35607.37096971027,257020.6387527906,145279.2299022067,3490.498966786769 -10620,13080,23742,-9,23741,23740,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-890.2605398355496,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,653.6,143656.8032449817,35607.37096971027,257020.6387527906,145279.2299022067,3490.498966786769 -10620,13080,23743,-9,23741,23740,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.330325883517,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,653.6,143656.8032449817,35607.37096971027,257020.6387527906,145279.2299022067,3490.498966786769 -10621,13081,23744,23745,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.277445196819251,7.823093182081264,30,7,-70.18097101075206,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.357905720577344,8.16069262000773,54.79,55.86,49,48,10,1,1,0,0,5,5,3,1,418,1456287.388029914,1400233.271777323,135876.7240433772,14225.54615921788,2955.68748646982 -10621,13081,23745,23744,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,8,-7,-7.678735818721783,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,54.79,55.86,7,1,1,0,0,0,5,3,1,418,1456287.388029914,1400233.271777323,135876.7240433772,14225.54615921788,2955.68748646982 -10622,13082,23746,-9,23747,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.962461802251,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,8,4,0,263.5,302778.2948958538,0,191218.7000339988,0,2050.254131840945 -10622,13082,23747,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.366928636725243,8.228112101505081,0,0,0,-970.9441101940092,0,3,2,2019,3,0,40,40,1,0,0,13.01071863538664,13.01071863538664,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,263.5,302778.2948958538,0,191218.7000339988,0,2050.254131840945 -10622,13083,23748,-9,-9,-9,1,1,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-939.2584273118473,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,2.223822726717893,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,513,174851.3879591941,0,0,0,167.2883959157666 -10623,13084,23749,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.699419021301209,7.446409403810561,0,0,0,-1061.723656433546,0,2,2,2019,11,0,44,40,1,0,0,5.79328544359661,5.79328544359661,0,0,0,0,2,1,1,0,0,0,33.33,56.25,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,2061,-151539.2078826255,0,0,0,1683.329918520174 -10623,13085,23750,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.1652969634179,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,4,6,0,0,0,6,1,0,735,245312.7581557919,0,182537.0579460659,0,1623.073475505995 -10624,13086,23751,23752,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.227992112892098,7.45148607649168,0,6,12,-36.78375164834546,0,3,-9,2019,10,0,38,38,1,0,0,10.32016393297747,10.32016393297747,0,0,0,0,0,0,0,0,0,0,56.19,41.56,43.27,37.27,8.333333333333334,1,1,0,0,8,4,4,1,634.5,124182.474591582,247280.8680266738,103128.8994265415,45900.8637157069,2552.070662875873 -10624,13086,23752,23751,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.285313505567453,8.326968028101611,0,6,-12,-30.79674948087801,0,2,3,2019,11,0,36,38,1,0,0,10.50004538415541,10.50004538415541,0,0,0,0,0,0,0,0,0,0,43.27,37.27,56.19,41.56,5,1,1,0,0,6,4,4,1,634.5,124182.474591582,247280.8680266738,103128.8994265415,45900.8637157069,2552.070662875873 -10625,13087,23753,-9,23754,23755,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.598696498173,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,1056.8,228567.6286998886,66634.88936712653,158744.1761978505,79755.72359968156,4008.697434824764 -10625,13087,23754,23755,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.918092390092104,7.747973267411467,0,8,-3,-6.175444827950887,0,-9,-9,2019,14,3,21,0,1,3,0,14.90400525711535,14.90400525711535,0,0,0,0,0,1,1,0,0,0,44.59,56.4,51.24,58.84,6.666666666666667,1,1,0,1,9,2,4,0,1056.8,228567.6286998886,66634.88936712653,158744.1761978505,79755.72359968156,4008.697434824764 -10625,13087,23755,23754,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.912220761116709,8.894047547179168,0,8,3,-40.11142484602556,0,2,2,2019,12,0,37,55,1,0,0,19.87408603514521,19.87408603514521,0,0,0,0,0,1,1,0,0,0,51.24,58.84,44.59,56.4,8.333333333333334,1,1,0,1,9,2,4,0,1056.8,228567.6286998886,66634.88936712653,158744.1761978505,79755.72359968156,4008.697434824764 -10625,13087,23756,-9,23754,23755,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.6873003408374,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,1056.8,228567.6286998886,66634.88936712653,158744.1761978505,79755.72359968156,4008.697434824764 -10625,13087,23757,-9,23754,23755,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.4650398182681,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1056.8,228567.6286998886,66634.88936712653,158744.1761978505,79755.72359968156,4008.697434824764 -10626,13088,23758,23759,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.425256715274738,8.223961902456976,0,3,-2,155.4418973431729,0,-9,-9,2019,11,1,58,50,1,1,0,6.48658366551088,6.48658366551088,0,0,0,0,0,0,0,0,.5165264438783717,0,30.59,64.25,14.49,67.91,5,1,1,0,0,6,9,5,0,407.5,279430.7790286277,100210.9301371853,252259.5209675467,158796.1339233249,3193.211265718706 -10626,13088,23759,23758,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.34446877566117,8.133301642541261,0,3,2,-14.93171909838777,0,-9,-9,2019,22,10,42,23,1,10,0,9.10109319497943,9.10109319497943,0,0,0,0,0,0,0,0,2.569086063760496,0,14.49,67.91,30.59,64.25,6.666666666666667,1,1,0,0,2,9,5,0,407.5,279430.7790286277,100210.9301371853,252259.5209675467,158796.1339233249,3193.211265718706 -10627,13089,23760,23761,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,41,-7,-1.330431055383224,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,4.148783578060697,0,62.4,42.8,61.16,53.18,8.333333333333334,1,1,0,0,2,13,3,1,1772,1376353.47172819,1081878.425572908,170038.6325845011,0,1664.242067873773 -10627,13089,23761,23760,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,8.041318621381384,7.965683405496987,0,41,7,168.3223355575965,0,3,3,2019,6,0,50,35,1,0,0,5.889098548197865,5.889098548197865,1,0,0,0,0,1,1,0,0,0,61.16,53.18,62.4,42.8,8.333333333333334,1,1,0,0,8,13,3,1,1772,1376353.47172819,1081878.425572908,170038.6325845011,0,1664.242067873773 -10628,13090,23762,23763,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,0,0,8,-7,-38.37955894611368,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.056466837611512,0,21.02685600079819,0,1,1,0,0,0,37.19,34.68,48.61,53.58,10,1,1,0,0,0,1,3,1,269,477582.7278672304,365629.0879120348,244103.5604994696,0,2641.457673023445 -10628,13090,23763,23762,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,8.212010087396711,8.808987945994888,8,7,-102.0799477751846,0,3,2,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.094993276226163,8.32319217159939,48.61,53.58,37.19,34.68,10,1,1,0,0,0,1,3,1,269,477582.7278672304,365629.0879120348,244103.5604994696,0,2641.457673023445 -10629,13091,23764,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.933511773606445,8.058653865344965,5.785405094826112,0,0,-1136.154276872626,0,2,2,2019,9,0,37,37,1,0,0,9.684099809924136,9.684099809924136,0,0,0,0,0,0,0,0,0,5.663390697675443,60.9,39.41,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,624,365248.0392220158,-77486.3006108221,148346.9990000367,0,1042.32730246957 -10630,13092,23765,-9,23766,23767,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.555304785915,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,3,0,677.6666666666666,193174.7044441813,45985.80577289814,194353.4727540053,131556.497571265,2717.494178609033 -10630,13092,23766,23767,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.722773992766098,7.132271142803313,5.733565579693236,9,-4,-33.77775206314551,0,2,2,2019,8,0,12,10,1,0,0,8.6139336259331,8.6139336259331,0,0,0,0,0,1,1,0,5.702979318110526,0,54.79,55.86,48.28,60.18,8.333333333333334,1,1,0,0,4,4,3,0,677.6666666666666,193174.7044441813,45985.80577289814,194353.4727540053,131556.497571265,2717.494178609033 -10630,13092,23767,23766,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.855119186577872,7.95527861589877,0,9,4,74.5516063734723,-9,-9,-9,2019,9,0,40,0,1,0,0,9.402850256143266,9.402850256143266,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.79,55.86,8.333333333333334,1,1,0,0,8,4,3,0,677.6666666666666,193174.7044441813,45985.80577289814,194353.4727540053,131556.497571265,2717.494178609033 -10631,13093,23768,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.027813095889243,5.453969399254592,0,0,-977.854481471136,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.460876596546552,53,45,-9,-9,8,1,1,0,0,0,12,2,0,673,370228.0773784779,85496.19153687367,275222.8776540852,0,1147.299515724126 -10632,13094,23769,23770,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.337526529536009,4.379534540075683,67,1,-63.23109000247138,-9,3,3,2019,26,11,0,0,4,11,0,0,0,0,6.930854041061481,0,0,0,1,1,0,4.082483087557981,4.337781896017169,28.38,27.5,62.85,39.98,8.333333333333334,1,1,0,1,8,5,2,1,722,328614.4244515237,99459.96396499654,146992.8310591649,0,1288.078609164138 -10632,13094,23770,23769,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,4.614364382274234,4.613132537390777,66,-1,-76.45606014606389,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,120,1,1,0,4.309184305247212,4.305390458851545,62.85,39.98,28.38,27.5,10,1,1,0,1,5,5,2,1,722,328614.4244515237,99459.96396499654,146992.8310591649,0,1288.078609164138 -10633,13095,23771,-9,23772,23773,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-924.7439966360928,-9,2,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,48.16,37.04,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,1884.666666666667,998157.8641200005,768889.1501758583,223501.0822645292,0,2944.087995230565 -10633,13095,23772,23773,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.824254483527333,7.714385959493923,0,21,-14,74.83428563583476,0,3,2,2019,12,4,30,31,1,4,0,8.795237125606615,8.795237125606615,0,0,0,0,0,1,1,0,0,0,40.4,58.62,28.25,55.98,8.333333333333334,1,1,0,0,7,9,5,1,1884.666666666667,998157.8641200005,768889.1501758583,223501.0822645292,0,2944.087995230565 -10633,13095,23773,23772,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.337765687337058,8.38949125424843,0,21,14,-82.21518306223834,0,2,2,2019,19,7,43,42,1,7,0,11.46631166908432,11.46631166908432,0,0,0,0,0,1,1,0,0,0,28.25,55.98,40.4,58.62,6.666666666666667,1,1,0,0,9,9,5,1,1884.666666666667,998157.8641200005,768889.1501758583,223501.0822645292,0,2944.087995230565 -10633,13096,23774,-9,23772,23773,1,1,18,0,0,0,2,2,-9,0,4,7.653511383164197,7.763614732487771,0,0,0,-949.1432218720355,0,2,2,2019,3,0,34,0,1,0,1,7.892353945327858,7.892353945327858,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,1147,-80713.2244322333,68173.51627549519,0,0,794.0561534844663 -10634,13097,23775,-9,23777,23779,1,1,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1095.357597274038,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,3,1,874.2,-47340.3972432587,0,0,0,3213.450799379924 -10634,13097,23776,-9,23777,23779,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.397444445351,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,1,874.2,-47340.3972432587,0,0,0,3213.450799379924 -10634,13097,23777,23779,-9,-9,1,0,31,1,3,0,2,2,-9,1,3,7.38560927517487,7.183398341045926,6.039744372286643,6,0,4.693392987503326,0,2,2,2019,9,0,18,18,1,0,0,10.72031462045318,10.72031462045318,0,0,0,0,108,1,1,0,6.043770624780894,0,57.33,53.46,42.36,62.87,8.333333333333334,1,1,0,0,12,6,3,1,874.2,-47340.3972432587,0,0,0,3213.450799379924 -10634,13097,23778,-9,23777,23779,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.074400478105,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,3,1,874.2,-47340.3972432587,0,0,0,3213.450799379924 -10634,13097,23779,23777,-9,-9,1,1,31,1,3,0,2,2,-9,0,4,8.449199532953145,8.596293929498637,0,6,0,6.51568894586309,-9,-9,-9,2019,12,1,40,0,1,1,0,11.79176095650668,11.79176095650668,0,0,0,0,5.48,1,1,0,0,0,42.36,62.87,57.33,53.46,6.666666666666667,1,1,0,0,2,6,3,1,874.2,-47340.3972432587,0,0,0,3213.450799379924 -10635,13098,23780,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,7.098819035571296,7.188527535049143,0,0,-1001.420791080248,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.012028090894823,6.869370200872368,56.05,27,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,250,295815.0011841137,-37554.75811025352,317156.4951445938,0,1432.407568012881 -10636,13099,23781,23782,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.200830513959358,7.131607735785623,54,-3,-85.27391178622405,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.276310758371495,7.302825183639326,55.36,54.24,45.14,31.84,8.333333333333334,1,1,0,0,4,9,2,1,1013,592859.5327588177,69836.19699751603,349358.8467970756,0,1280.593037459779 -10636,13099,23782,23781,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,54,3,-143.8693976526291,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.202087539929896,0,45.14,31.84,55.36,54.24,8.333333333333334,1,1,0,0,0,9,2,1,1013,592859.5327588177,69836.19699751603,349358.8467970756,0,1280.593037459779 -10637,13100,23783,23784,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.464857949821546,8.597696494035659,49,2,12.32247723911304,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.598763620080545,8.181295309531253,61.12,51.57,57.33,53.46,0,1,1,0,0,0,9,4,1,394,1656602.405561445,648377.2630033765,802944.575543107,0,4072.393605561995 -10637,13100,23784,23783,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-77.39716734814664,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.12,51.57,10,1,1,0,0,0,9,4,1,394,1656602.405561445,648377.2630033765,802944.575543107,0,4072.393605561995 -10638,13101,23785,23786,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.32016153057611,8.184278992427119,0,6,4,80.4420234287511,0,3,3,2019,17,5,50,48,1,5,0,9.162015676850766,9.162015676850766,0,0,0,0,0,0,0,0,0,0,44.58,51.2,41.73,51.28,3.333333333333333,2,3,0,0,11,10,5,1,1397.5,1329538.253880537,897364.5268025151,436874.8919524084,27669.77095310194,2736.502381840085 -10638,13101,23786,23785,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.200198273772846,8.347283854387257,0,6,-4,63.55676875991094,0,3,2,2019,15,4,48,50,1,4,0,11.41126909866731,11.41126909866731,0,0,0,0,0,0,0,0,0,0,41.73,51.28,44.58,51.2,5,2,3,0,0,11,10,5,1,1397.5,1329538.253880537,897364.5268025151,436874.8919524084,27669.77095310194,2736.502381840085 -10639,13102,23787,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.014747841552128,5.677045851981963,0,0,-937.1632750828618,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,1.995731305509397,0,24.22645694397451,0,1,1,0,0,5.880964800277154,63.6,26.44,-9,-9,5,1,1,0,0,0,10,2,0,493,85249.88562555518,47822.65412628001,0,0,1198.412888125507 -10640,13103,23788,-9,23790,23791,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.9048923319776,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,1052.4,-21831.27530134634,11660.21510784037,0,0,3342.753051386821 -10640,13103,23789,-9,23790,23791,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.645701261431,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,1,1052.4,-21831.27530134634,11660.21510784037,0,0,3342.753051386821 -10640,13103,23790,23791,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,0,0,0,11,-1,-15.38824771891299,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.992835483969211,0,57.09,43.99,38.34,62.12,10,2,3,0,0,0,8,2,1,1052.4,-21831.27530134634,11660.21510784037,0,0,3342.753051386821 -10640,13103,23791,23790,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,7.189701216167584,7.006958403662525,0,11,1,-27.72968237286793,0,3,3,2019,16,4,50,37,1,4,0,3.108609713753738,3.108609713753738,0,0,0,0,0,0,0,0,8.933692266136015,0,38.34,62.12,57.09,43.99,8.333333333333334,2,3,0,0,6,8,2,1,1052.4,-21831.27530134634,11660.21510784037,0,0,3342.753051386821 -10640,13103,23792,-9,23790,23791,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.870377951733,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,1052.4,-21831.27530134634,11660.21510784037,0,0,3342.753051386821 -10641,13104,23793,23794,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.438189033527883,7.765591871463275,0,30,8,34.56863031051752,0,2,2,2019,9,0,60,80,1,0,0,3.252088714527308,3.252088714527308,0,0,0,0,7,0,0,0,0,0,59.74,41.31,54.2,57.49,1.666666666666667,1,1,0,0,11,12,5,1,831,641887.5981641014,130715.2775450485,409372.3799809894,0,3364.850936287065 -10641,13104,23794,23793,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.548237722732292,8.218958879650888,0,30,-8,8.320185302125214,0,2,3,2019,11,2,40,25,1,2,0,13.53872181450558,13.53872181450558,0,0,0,0,2,0,0,0,0,0,54.2,57.49,59.74,41.31,8.333333333333334,1,1,0,0,11,12,5,1,831,641887.5981641014,130715.2775450485,409372.3799809894,0,3364.850936287065 -10641,13105,23795,-9,23794,23793,1,1,25,0,0,0,2,2,-9,0,4,8.427297708424996,8.364480622085908,0,0,0,-1113.032509039416,0,2,2,2019,6,0,40,44,1,0,1,10.50093596199982,10.50093596199982,0,0,0,0,0,0,0,0,1.636000561397718,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,1660,96227.95035508626,0,0,0,1542.09932120657 -10642,13106,23796,-9,23798,23797,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.6037993021206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,555.5,531287.388247333,66374.29302416695,393585.6381262407,0,3340.806028955724 -10642,13106,23797,23798,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.05832046209022,7.87956799610717,0,16,5,-151.4140415535382,0,2,3,2019,9,0,16,20,1,0,0,21.29539441893597,21.29539441893597,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.06,57.76,6.666666666666667,1,1,0,0,7,10,4,1,555.5,531287.388247333,66374.29302416695,393585.6381262407,0,3340.806028955724 -10642,13106,23798,23797,-9,-9,1,0,32,0,2,0,1,1,1,0,5,8.123926506993442,8.220244972200495,0,16,-5,-.492410889876835,-9,2,2,2019,4,0,55,0,1,0,0,8.784331676394732,8.784331676394732,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,7,10,4,1,555.5,531287.388247333,66374.29302416695,393585.6381262407,0,3340.806028955724 -10642,13106,23799,-9,23798,23797,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1168.551819683045,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,555.5,531287.388247333,66374.29302416695,393585.6381262407,0,3340.806028955724 -10643,13107,23800,-9,23801,23803,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.198184072442,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,457.75,554764.0694952504,388449.4349567533,226062.239862059,161343.7902468728,3772.426260733379 -10643,13107,23801,23803,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,9.060176650966042,9.035022673180105,0,17,-5,84.50844050753173,0,2,2,2019,5,0,47,37,1,0,0,17.68274786486466,17.68274786486466,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.94,58.01,10,1,1,0,0,9,4,4,1,457.75,554764.0694952504,388449.4349567533,226062.239862059,161343.7902468728,3772.426260733379 -10643,13107,23802,-9,23801,23803,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.342168459297,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,457.75,554764.0694952504,388449.4349567533,226062.239862059,161343.7902468728,3772.426260733379 -10643,13107,23803,23801,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,8.006037440632442,7.97850082297446,0,18,5,41.01080156059987,0,2,2,2019,10,0,12,26,1,0,0,22.15484983143389,22.15484983143389,0,0,0,0,0,1,1,0,2.428951309135438,0,49.94,58.01,54.1,59.11,6.666666666666667,1,1,0,0,12,4,4,1,457.75,554764.0694952504,388449.4349567533,226062.239862059,161343.7902468728,3772.426260733379 -10644,13108,23804,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.008575149390799,8.968814869744261,0,0,0,-971.7859461597411,0,2,2,2019,10,0,40,50,1,0,0,26.82530358811638,26.82530358811638,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,12,5,1,1362,297874.1856150024,100537.1570741557,122580.3377074621,90503.21486907959,3253.563339946925 -10645,13109,23805,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1051.902402904626,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,7.190908078087297,11.88757124218901,64.63560516629941,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,13,1,1,179,72362.62975251304,0,0,0,472.5113027936893 -10645,13110,23806,-9,23805,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.982130312488091,8.240756275696265,0,0,-1020.931266010147,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,8.335778951727686,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,2266,1086920.505562947,707733.9126396705,196818.7881409038,0,2451.412118116141 -10646,13111,23807,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.644978498844266,8.164092626088486,0,0,0,-986.1659441273948,0,3,3,2019,11,1,40,20,1,1,0,8.124808681420975,8.124808681420975,0,0,0,0,0,1,1,0,0,0,45.82,46.7,-9,-9,6.666666666666667,1,1,0,0,7,5,4,1,316,22425.1011381408,0,182047.4311378525,83785.64705871246,1696.428823245357 -10647,13112,23808,23809,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.288137467604937,8.217105371984299,0,3,0,-37.80762333258228,0,-9,-9,2019,12,2,39,40,1,2,0,13.22527660697209,13.22527660697209,0,0,0,0,0,0,0,0,0,0,21.25,63.22,43.73,59.7,6.666666666666667,2,3,0,0,4,4,5,1,372,244504.9136095691,34242.99426308941,247498.8376540408,203695.4620766126,2727.626278132149 -10647,13112,23809,23808,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.156136890581752,8.115147983325588,0,3,0,16.90085725030756,0,1,1,2019,12,1,37,39,1,1,0,8.370227361820985,8.370227361820985,0,0,0,0,0,0,0,0,2.277570690820995,0,43.73,59.7,21.25,63.22,6.666666666666667,1,1,0,0,5,4,5,1,372,244504.9136095691,34242.99426308941,247498.8376540408,203695.4620766126,2727.626278132149 -10648,13113,23810,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.577512278339613,8.319176851391578,0,6,2,72.99020765262935,0,2,2,2019,6,0,55,70,1,0,0,9.656754561896635,9.656754561896635,0,0,0,0,0,0,0,0,0,0,57.06,57.76,34.04,45.86,8.333333333333334,1,1,0,0,5,9,5,0,731,-50740.08270536107,86855.5227451793,0,0,1753.282954509104 -10648,13114,23811,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,1,8.507869322709553,8.6647555240089,0,6,-2,33.64352646260985,0,1,1,2019,24,12,35,55,1,12,0,16.06687578384367,16.06687578384367,0,0,0,0,0,0,0,0,3.09359533027959,0,34.04,45.86,57.06,57.76,8.333333333333334,1,1,0,0,3,9,5,0,502,-183239.9799442459,0,0,0,1714.146355299069 -10649,13115,23812,-9,23814,23813,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1030.678676921512,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,656.5,127294.5004922455,29441.07248362697,372407.7671486136,214574.6940716544,3873.472656464727 -10649,13115,23813,23814,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.769139044808643,8.554270517704246,0,10,2,-102.1788914698108,0,2,2,2019,7,0,37,37,1,0,0,20.04154341409268,20.04154341409268,0,0,0,0,0,1,1,0,0,0,46.9,56.66,54.79,55.86,8.333333333333334,1,1,0,0,13,9,5,1,656.5,127294.5004922455,29441.07248362697,372407.7671486136,214574.6940716544,3873.472656464727 -10649,13115,23814,23813,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.460553172908226,8.703240629327102,0,14,-2,28.9364962903369,0,2,2,2019,4,0,40,37,1,0,0,15.66322553642214,15.66322553642214,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.9,56.66,8.333333333333334,1,1,0,0,7,9,5,1,656.5,127294.5004922455,29441.07248362697,372407.7671486136,214574.6940716544,3873.472656464727 -10649,13115,23815,-9,23814,23813,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.7572897809055,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,656.5,127294.5004922455,29441.07248362697,372407.7671486136,214574.6940716544,3873.472656464727 -10650,13116,23816,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.309953972403445,8.253046553616011,0,0,0,-940.4413390013279,0,2,2,2019,1,0,55,55,1,0,0,8.608857452847889,8.608857452847889,0,0,0,0,0,0,0,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,1,9,6,4,0,573,-41406.96712160044,79055.65741956938,146803.9366328266,103938.3601993597,1233.590818960326 -10651,13117,23817,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-854.6536333235313,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.88,24.2,-9,-9,3.333333333333333,1,1,0,1,0,13,1,1,100,211386.2876490256,0,0,0,1334.680769457369 -10652,13118,23818,-9,-9,-9,1,1,34,0,0,0,3,3,-9,0,3,7.559580374793281,7.335263188196707,0,0,0,-1090.632213584659,0,-9,-9,2019,11,0,10,15,1,0,0,19.24115959260707,19.24115959260707,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,6.666666666666667,3,4,0,0,8,5,3,1,474,-767.4005790846149,114876.2683870897,0,0,306.5296556025446 -10653,13119,23819,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.644720866980864,8.61064544426668,0,0,0,-996.2361746080129,0,2,2,2019,6,0,41,37,1,0,0,11.77096406977247,11.77096406977247,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,4,5,1,285,124609.9498560911,224955.8656450437,174788.0857857693,75609.14634545408,2076.155234656797 -10654,13120,23820,23821,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.459221706392368,9.7736468673621,0,3,7,-68.31948992449347,0,1,1,2019,12,3,45,45,1,3,0,40.17869162381484,40.17869162381484,0,0,0,0,0,0,0,0,0,0,54.1,59.11,47.67,58.09,8.333333333333334,1,1,0,0,8,7,5,1,424,247464.956256004,51806.76684453314,313307.7170878429,236746.4747787818,6104.666484007013 -10654,13120,23821,23820,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.798650591281614,8.648629970114422,0,3,-7,20.44377457471995,0,-9,-9,2019,7,0,45,50,1,0,0,16.39148136522607,16.39148136522607,0,0,0,0,0,0,0,0,1.033877607021034,0,47.67,58.09,54.1,59.11,10,1,1,0,0,2,7,5,1,424,247464.956256004,51806.76684453314,313307.7170878429,236746.4747787818,6104.666484007013 -10655,13121,23822,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.686643323251389,4.45316548141899,0,0,-1120.143900834879,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,1.860102309094886,47.24967019553232,24.14256847626361,0,1,1,0,0,4.578398892109941,44.25,16.75,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,263,-40619.81395743591,28303.50720535244,0,0,1205.871284590726 -10656,13122,23823,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-890.8462829180061,0,3,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,11,1,0,149,-84797.96106286311,0,0,0,1202.951053907033 -10657,13123,23824,23825,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.963198067914988,9.007616097267134,0,16,4,121.9662061169381,0,3,3,2019,7,0,40,40,1,0,0,28.45000642443485,28.45000642443485,0,0,0,0,0,0,0,0,0,0,57.16,56.15,28.33,54.6,8.333333333333334,1,1,0,0,10,9,5,1,427.5,1784936.256551334,827183.3917968211,761424.9334449207,0,3864.388628949612 -10657,13123,23825,23824,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.23621684950322,8.585402190874131,0,16,-4,-138.236562685261,0,3,3,2019,31,12,40,33,1,12,0,12.87002551808433,12.87002551808433,0,0,0,0,2,0,0,0,4.606506700857439,0,28.33,54.6,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,427.5,1784936.256551334,827183.3917968211,761424.9334449207,0,3864.388628949612 -10658,13124,23826,23827,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,27,-6,-79.97779200787338,0,3,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,45.2,51.24,58.84,8.333333333333334,2,3,0,0,1,4,5,1,1197,1534487.146055277,249117.378621978,398127.2784174734,0,3637.812014585274 -10658,13124,23827,23826,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.042779853539484,9.288459997988678,0,27,6,10.01432161236431,0,3,3,2019,12,0,40,40,1,0,0,33.07552382310218,33.07552382310218,0,0,0,0,0,0,0,0,6.543766528387107,0,51.24,58.84,42.7,45.2,5,1,1,0,0,9,4,5,1,1197,1534487.146055277,249117.378621978,398127.2784174734,0,3637.812014585274 -10658,13125,23828,-9,23826,23827,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-952.252848102087,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,5,4,2,0,0,2,4,1,1,586,0,0,0,0,0 -10659,13126,23829,23830,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.435583581293718,7.24385790921375,0,8,-21,-21.9682227122166,0,3,3,2019,10,0,15,0,1,0,0,19.38541337286003,19.38541337286003,0,0,0,0,0,1,1,0,1.598443244775186,0,44.93,52.43,46.08,57.2,6.666666666666667,2,3,0,0,0,8,4,1,387,3241207.843620948,1305995.818614728,874570.005023913,0,5069.296659296557 -10659,13126,23830,23829,-9,-9,1,1,64,0,1,0,1,1,-9,0,3,0,8.432137276276952,8.783076154502751,8,21,6.02078853950509,0,2,2,2019,10,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,7.628020161224999,8.290836347118306,46.08,57.2,44.93,52.43,6.666666666666667,1,1,0,0,8,8,4,1,387,3241207.843620948,1305995.818614728,874570.005023913,0,5069.296659296557 -10660,13127,23831,23832,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,9.07391852901045,9.080890357626565,0,4,-5,-39.63871728719073,0,-9,-9,2019,7,0,61,57,1,0,0,16.47772855150946,16.47772855150946,0,0,0,0,0,0,0,0,0,0,54.1,59.11,48,56,8.333333333333334,1,1,0,0,9,1,5,1,4833,-706.0357814970412,14682.66692155766,113046.4062917217,26980.75456677589,4917.763284421584 -10660,13127,23832,23831,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.674849908998953,7.960995526325481,0,4,5,-42.17775901322905,0,-9,-9,2019,11,0,43,45,1,2,0,13.52583795907415,13.52583795907415,0,0,0,0,0,0,0,0,2.110923512373481,0,48,56,54.1,59.11,7,1,1,0,0,5,1,5,1,4833,-706.0357814970412,14682.66692155766,113046.4062917217,26980.75456677589,4917.763284421584 -10661,13128,23833,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1021.692652811895,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.44,33.06,-9,-9,5,1,1,0,0,0,7,1,1,4469,112451.1760255016,0,0,0,541.8788148341712 -10662,13129,23834,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1125.281657617023,-9,3,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.71,39.08,-9,-9,1.666666666666667,1,1,1,1,5,9,2,1,912,-95391.74818286572,0,0,0,0 -10662,13130,23835,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,4.851835194748805,4.980985208111101,0,0,-996.0550900415627,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,13.50438957235469,0,27,1,1,0,2.990577992980268,4.733313956968747,24.41,32.44,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,1664,295008.3276704201,-36498.7718200107,211112.4312035886,0,-33.95355550605916 -10663,13131,23836,23837,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.492507711390822,7.985862734718392,6,-1,27.37689845994921,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.391435906009989,7.75312393247292,63.99,35.25,54.79,55.86,6.666666666666667,1,1,0,0,0,11,4,1,1213.5,1104924.347770891,504473.0737078608,349533.795690309,0,4235.054580932553 -10663,13131,23837,23836,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.752025201480018,8.28835593498826,6,1,45.03504908563977,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.230140074248647,8.214275590946714,54.79,55.86,63.99,35.25,8.333333333333334,1,1,0,0,0,11,4,1,1213.5,1104924.347770891,504473.0737078608,349533.795690309,0,4235.054580932553 -10664,13132,23838,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,2,7.755026438715458,7.804828929210648,0,0,0,-1005.007546394382,0,1,1,2019,18,6,26,16,1,6,0,8.634932659840267,8.634932659840267,0,0,0,0,0,1,1,0,0,0,46.21,37.4,-9,-9,5,3,4,0,0,12,8,3,0,430,733306.5862763826,135313.083957151,560680.8938801441,0,1436.884921344522 -10665,13133,23839,-9,23841,23842,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-971.5089046818412,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,738.8,1088887.177290894,261478.2728521261,731982.7690142842,31134.98934436029,5880.193671340042 -10665,13133,23840,-9,23841,23842,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-978.361458768037,-9,1,1,2019,15,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,738.8,1088887.177290894,261478.2728521261,731982.7690142842,31134.98934436029,5880.193671340042 -10665,13133,23841,23842,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.873250948080276,8.680835907545136,0,21,1,-76.74097604820054,0,1,2,2019,12,3,70,58,1,3,0,11.83430449996768,11.83430449996768,0,0,0,0,0,1,1,0,0,0,44.45,57.75,47.66,52.33,6.666666666666667,1,1,0,0,6,9,5,1,738.8,1088887.177290894,261478.2728521261,731982.7690142842,31134.98934436029,5880.193671340042 -10665,13133,23842,23841,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.524781250922175,9.073752443091321,0,8,-1,-6.429999857250107,0,-9,-9,2019,10,0,48,45,1,0,0,13.7846275031901,13.7846275031901,0,0,0,0,0,1,1,0,8.176540450529513,0,47.66,52.33,44.45,57.75,6.666666666666667,1,1,0,0,7,9,5,1,738.8,1088887.177290894,261478.2728521261,731982.7690142842,31134.98934436029,5880.193671340042 -10665,13133,23843,-9,23841,23842,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.453522308054,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,738.8,1088887.177290894,261478.2728521261,731982.7690142842,31134.98934436029,5880.193671340042 -10666,13134,23844,-9,23845,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.324520112748,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,574.3333333333334,256177.5004810431,129085.0332176557,165293.6990299331,65519.09804567794,2148.767357270839 -10666,13134,23845,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.17691320147866,8.316145978662854,4.107038465906871,0,0,-921.8141591767984,0,2,1,2019,16,4,30,24,1,4,0,15.9023101721691,15.9023101721691,0,0,0,0,0,1,1,0,4.537881631011483,0,42.27,39.15,-9,-9,6.666666666666667,1,1,0,1,9,13,4,1,574.3333333333334,256177.5004810431,129085.0332176557,165293.6990299331,65519.09804567794,2148.767357270839 -10666,13134,23846,-9,23845,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.749287174418,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,574.3333333333334,256177.5004810431,129085.0332176557,165293.6990299331,65519.09804567794,2148.767357270839 -10667,13135,23847,23848,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.217125525633733,7.158939753615769,0,7,-5,-112.0186385447266,0,-9,2,2019,6,0,30,30,1,0,0,7.122225886326463,7.122225886326463,0,0,0,0,0,0,0,0,2.23731736257835,0,58.89,48.6,57.43,38.96,8.333333333333334,1,1,0,0,8,6,5,1,497.5,121445.1020025591,0,162087.5881804411,53133.98983995802,2850.702794423831 -10667,13135,23848,23847,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.61200416884587,8.394778879849262,7.742392743897261,7,5,-40.14137336234261,0,3,2,2019,8,0,37,37,1,0,0,11.4037686304602,11.4037686304602,0,0,0,0,0,0,0,0,4.276650372643683,8.075580357561503,57.43,38.96,58.89,48.6,6.666666666666667,1,1,0,0,8,6,5,1,497.5,121445.1020025591,0,162087.5881804411,53133.98983995802,2850.702794423831 -10668,13136,23849,23851,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,34,10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.857582117474806,0,27.89,18.61,40.37,20.56,5,1,1,0,0,0,9,1,0,1215.333333333333,-48932.13593454837,106465.325616607,0,0,2491.796695881161 -10668,13136,23850,-9,23851,23849,1,1,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-916.8365123694047,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.84,43.22,-9,-9,5,1,1,0,0,0,9,1,0,1215.333333333333,-48932.13593454837,106465.325616607,0,0,2491.796695881161 -10668,13136,23851,23849,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,34,-10,0,0,3,3,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,40.37,20.56,27.89,18.61,0,1,1,0,1,0,9,1,0,1215.333333333333,-48932.13593454837,106465.325616607,0,0,2491.796695881161 -10668,13137,23852,-9,23851,23849,1,0,23,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1003.688446755068,0,2,3,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,14.5,1,1,0,1.623656244228158,0,36.7,24.31,-9,-9,5,1,1,1,0,1,9,2,0,282,-66010.12603707556,0,0,0,33.86920964897152 -10669,13138,23853,23854,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,35.57,62.49,55.09,8.333333333333334,1,1,0,0,0,7,1,1,442.5,778374.2241522508,556276.3944998001,185254.5956332993,0,1112.073141744263 -10669,13138,23854,23853,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,5,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,62.49,55.09,46.51,35.57,10,1,1,0,0,0,7,1,1,442.5,778374.2241522508,556276.3944998001,185254.5956332993,0,1112.073141744263 -10670,13139,23855,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.252948489816566,8.27310055526457,0,0,-1034.505709567253,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.968124405542048,8.511815668703733,46.42,52.88,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,368,1608640.21855485,1385215.98132882,166872.2785800334,0,1726.971670276451 -10670,13140,23856,-9,23855,-9,1,1,27,0,0,0,1,1,-9,0,4,6.326234557137195,6.071966531938124,0,0,0,-1011.62724846734,0,2,1,2019,12,3,35,40,1,3,0,1.427079238922458,1.427079238922458,0,0,0,0,0,0,0,0,0,0,31.58,61.01,-9,-9,8.333333333333334,1,1,0,0,5,5,2,1,213,168248.6704992552,0,0,0,547.9396853934632 -10671,13141,23857,-9,23859,23858,1,1,20,0,2,0,2,2,-9,0,3,6.956499529963019,7.276563715662442,0,0,0,-966.4612871040517,0,2,2,2019,29,10,40,55,1,10,1,4.297981613323135,4.297981613323135,0,0,0,0,0,1,1,0,0,0,29.67,52.63,-9,-9,0,1,1,0,1,2,6,3,0,689,-46010.06336217285,0,0,0,81.67375252016154 -10671,13142,23858,23859,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.206486873601131,8.340272767476678,0,4,0,138.7942486833783,0,2,2,2019,26,11,48,44,1,11,0,8.603586792798248,8.603586792798248,0,0,0,0,0,1,1,0,0,0,33.14,53.48,39.77,41.15,3.333333333333333,1,1,0,0,4,6,3,0,572,300379.1102498149,124249.7870920907,163743.1931094214,18743.14111309417,2094.931738569921 -10671,13142,23859,23858,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,6.977049794127434,7.004081252120433,0,4,0,21.14611425116676,0,-9,-9,2019,15,4,25,15,1,4,0,5.658190289608117,5.658190289608117,0,0,0,0,0,1,1,0,0,0,39.77,41.15,33.14,53.48,5,1,1,0,0,3,6,3,0,572,300379.1102498149,124249.7870920907,163743.1931094214,18743.14111309417,2094.931738569921 -10671,13142,23860,-9,23859,23858,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.8116168902943,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,6,3,0,572,300379.1102498149,124249.7870920907,163743.1931094214,18743.14111309417,2094.931738569921 -10672,13143,23861,-9,23866,23862,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-929.5292783926486,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23862,23866,-9,-9,1,1,40,1,5,0,2,2,-9,0,2,7.708344993813163,7.705516736933449,0,3,3,-123.3651799431389,0,-9,-9,2019,8,0,38,16,1,0,0,6.926167538719982,6.926167538719982,0,0,0,0,2,1,1,0,0,0,53.8,45.89,56.33,21.91,8.333333333333334,1,1,0,0,1,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23863,-9,23866,23862,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-930.9818871239775,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23864,-9,23866,23862,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.728220168944,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23865,-9,23866,23862,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1086.995961233301,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23866,23862,-9,-9,1,0,37,1,5,0,1,1,-9,1,1,0,0,0,3,-3,22.78116400326861,0,1,2,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,21.91,53.8,45.89,8.333333333333334,1,1,0,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10672,13143,23867,-9,23866,23862,1,0,16,1,5,1,3,0,-9,0,1,0,0,0,0,0,-940.7552241864447,-9,1,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.32,46.2,-9,-9,10,1,1,0,0,0,2,2,0,935.4285714285714,-47425.31725103761,24123.66677614394,0,0,3561.839467461417 -10673,13144,23868,23869,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.346107259211722,9.228522012835576,0,5,-6,-92.39163338953783,0,-9,-9,2019,10,0,40,40,1,1,0,27.67302744735092,27.67302744735092,0,0,0,0,0,0,0,0,6.976537701722402,0,50,54,58.32,50.22,8,1,1,0,0,1,2,5,1,1725.5,1945448.378956831,1251798.469559219,257453.3156513364,0,6444.710902853589 -10673,13144,23869,23868,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.639458417610525,8.937026260742956,0,5,6,38.56552493755214,0,3,3,2019,3,0,40,40,1,0,0,20.36911595111542,20.36911595111542,0,0,0,0,0,0,0,0,0,0,58.32,50.22,50,54,10,1,1,0,0,10,2,5,1,1725.5,1945448.378956831,1251798.469559219,257453.3156513364,0,6444.710902853589 -10674,13145,23870,23871,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.57003461567783,7.520756820571843,45,0,17.10840049653663,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.333010042752503,56.18,53.85,61.55,44.69,8.333333333333334,1,1,0,0,7,7,3,1,759.5,1141558.782332005,177624.1373452122,819748.7884113962,0,2498.582388230407 -10674,13145,23871,23870,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.439376301010921,6.524862061088252,45,0,67.161612120641,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.356989420899375,61.55,44.69,56.18,53.85,10,1,1,0,0,9,7,3,1,759.5,1141558.782332005,177624.1373452122,819748.7884113962,0,2498.582388230407 -10675,13146,23872,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.221374711642226,6.908181029005724,0,0,-1031.232998574664,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,75.66233056360257,0,0,1,1,0,2.093194671823107,7.104342150963042,34.85,47.44,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,2178,768830.1561548776,233135.0445626787,226116.2011214301,0,1387.56545286289 -10676,13147,23873,23874,-9,-9,1,1,36,0,3,0,3,3,-9,0,4,0,0,0,9,-3,58.98038436281186,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,28.47,35.74,6.666666666666667,3,4,1,0,3,8,2,0,1182,-27244.5926474887,0,0,0,2279.294811725078 -10676,13147,23874,23873,-9,-9,1,0,39,0,3,0,2,2,-9,0,1,6.515411959350616,6.848241239713063,5.076728168075184,9,3,50.75888477301406,0,1,2,2019,12,0,15,0,1,0,0,7.441760391185611,7.441760391185611,0,0,0,0,0,1,1,0,4.902392090580467,0,28.47,35.74,54.2,57.49,5,4,2,0,0,0,8,2,0,1182,-27244.5926474887,0,0,0,2279.294811725078 -10676,13147,23875,-9,23874,23873,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.7503339908437,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,8,2,0,1182,-27244.5926474887,0,0,0,2279.294811725078 -10676,13147,23876,-9,23874,23873,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.8785590155759,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,1182,-27244.5926474887,0,0,0,2279.294811725078 -10677,13148,23877,23878,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,11,1,24.20700290352611,0,3,3,2019,19,7,0,60,3,7,0,0,0,0,0,0,0,0,0,0,0,2.566912011060957,0,36.67,27.8,57.06,57.76,1.666666666666667,1,1,0,0,12,1,3,1,1354.5,892383.0806308393,675232.6681978882,166021.6705468202,0,1414.153136285716 -10677,13148,23878,23877,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,7.772059916109185,7.670620496232225,0,34,-1,123.8717600798725,0,3,3,2019,9,0,32,32,1,0,0,8.866876738401894,8.866876738401894,0,0,0,0,0,0,0,0,3.27480514179169,0,57.06,57.76,36.67,27.8,8.333333333333334,1,1,0,0,13,1,3,1,1354.5,892383.0806308393,675232.6681978882,166021.6705468202,0,1414.153136285716 -10678,13149,23879,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.1628319291476,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.43,41.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,1125,163464.6307614528,0,0,0,1920.564168522035 -10679,13150,23880,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.8805411601406,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,8.220121284595546,0,0,1,1,0,2.198047077954521,0,27.63,26.97,-9,-9,5,1,1,0,0,0,6,1,1,448,-66749.65293240696,0,0,0,927.2521398398226 -10680,13151,23881,-9,23884,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.023769903715,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.230944205244827,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1197.2,-42072.66994818051,15029.30970301834,0,0,2137.745203793093 -10680,13151,23882,-9,23884,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.1475482906416,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1197.2,-42072.66994818051,15029.30970301834,0,0,2137.745203793093 -10680,13151,23883,-9,23884,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.539696018003,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1197.2,-42072.66994818051,15029.30970301834,0,0,2137.745203793093 -10680,13151,23884,23885,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,1,-2,65.69473774643782,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.28,60.18,49.08,46.92,8.333333333333334,1,1,0,0,11,9,2,0,1197.2,-42072.66994818051,15029.30970301834,0,0,2137.745203793093 -10680,13151,23885,23884,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,8.003359271623593,7.983246293571234,0,1,2,78.4442798754187,0,2,2,2019,10,2,50,40,1,2,0,6.457941427999157,6.457941427999157,0,0,0,0,2,1,1,0,0,0,49.08,46.92,48.28,60.18,5,1,1,0,0,10,9,2,0,1197.2,-42072.66994818051,15029.30970301834,0,0,2137.745203793093 -10681,13152,23886,23887,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.236464986206276,8.410534759068904,7.640291470829596,41,0,119.6892215344959,0,-9,-9,2019,10,0,22,20,1,0,0,6.034179575576012,6.034179575576012,0,0,0,0,2,1,1,0,0,7.806134278772381,49.04,35.84,51.94,55.88,8.333333333333334,1,1,0,0,9,10,4,1,506.5,1053308.327886706,705274.5775867356,282984.1512047265,0,2632.073899889783 -10681,13152,23887,23886,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.530789580553225,5.507316601969888,41,0,77.14889183858986,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.372278040646285,51.94,55.88,49.04,35.84,5,1,1,0,0,0,10,4,1,506.5,1053308.327886706,705274.5775867356,282984.1512047265,0,2632.073899889783 -10682,13153,23888,23889,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.377202770495952,8.003446748230617,7.686759736605109,7,2,47.96318195196743,0,2,2,2019,7,1,18,20,1,1,0,13.90711301261174,13.90711301261174,0,0,0,0,0,0,0,0,6.743170655140847,7.485551337691521,69.25,19.18,59.07,43.05,3.333333333333333,1,1,0,0,8,10,4,1,669,334363.3189238678,113081.8906530304,320320.2044830476,0,3403.347421880469 -10682,13153,23889,23888,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.963891111656028,7.743367439352797,7.353564491849568,7,-2,44.74049969418409,0,2,2,2019,8,0,30,30,1,0,0,3.532679669964454,3.532679669964454,0,0,0,0,0,0,0,0,5.368321145117082,7.304714347613508,59.07,43.05,69.25,19.18,8.333333333333334,1,1,0,0,8,10,4,1,669,334363.3189238678,113081.8906530304,320320.2044830476,0,3403.347421880469 -10683,13154,23890,-9,23893,23891,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.6202216516878,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,6,4,0,578.75,89099.72837022043,21946.65362602301,289219.9736107974,145508.6446218751,3112.304844291879 -10683,13154,23891,23893,-9,-9,1,1,28,0,2,0,2,2,-9,0,5,8.137061511335496,7.639673449336935,0,7,0,6.22962023783365,0,-9,-9,2019,7,1,37,40,1,1,0,7.833591213285262,7.833591213285262,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.93,60.55,8.333333333333334,1,1,0,0,7,6,4,0,578.75,89099.72837022043,21946.65362602301,289219.9736107974,145508.6446218751,3112.304844291879 -10683,13154,23892,-9,23893,23891,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.383549674852,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,4,0,578.75,89099.72837022043,21946.65362602301,289219.9736107974,145508.6446218751,3112.304844291879 -10683,13154,23893,23891,-9,-9,1,0,28,0,2,0,1,1,-9,0,4,7.979398328802094,8.662721501079066,0,7,0,-51.87481014206021,0,2,2,2019,13,2,39,32,1,2,0,11.81729648732119,11.81729648732119,0,0,0,0,0,1,1,0,0,0,47.93,60.55,57.06,57.76,8.333333333333334,1,1,0,0,10,6,4,0,578.75,89099.72837022043,21946.65362602301,289219.9736107974,145508.6446218751,3112.304844291879 -10684,13155,23894,23895,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.595790172162598,8.544912500083072,0,1,2,-146.0893922093225,-9,3,3,2019,10,0,38,0,1,0,0,18.12453681875747,18.12453681875747,0,0,0,0,0,1,1,0,0,0,51.61,61.54,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,477,-60286.87974132138,10325.09104494546,0,0,3140.620220238272 -10684,13155,23895,23894,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.398375220479837,7.428334794308839,0,1,-2,144.6098377715863,-9,-9,-9,2019,7,0,37,0,1,0,0,6.268537105471473,6.268537105471473,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.61,61.54,8.333333333333334,1,1,0,0,8,1,4,1,477,-60286.87974132138,10325.09104494546,0,0,3140.620220238272 -10684,13155,23896,-9,23895,23894,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.041063620004,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,477,-60286.87974132138,10325.09104494546,0,0,3140.620220238272 -10685,13156,23897,23898,-9,-9,1,0,50,0,2,0,3,3,-9,0,3,0,0,0,21,-3,-102.8651873481976,0,2,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.26,35.44,10.89,64.09999999999999,0,2,3,1,0,0,2,2,1,266.5,210625.5906156304,0,115088.450080612,53797.01969979281,1138.068994845693 -10685,13156,23898,23897,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.508249371100116,7.395709363416438,0,21,3,-85.54398502613898,0,3,3,2019,34,12,16,16,1,12,0,11.87644300520545,11.87644300520545,0,0,0,0,0,1,1,0,0,0,10.89,64.09999999999999,31.26,35.44,0,2,3,0,0,11,2,2,1,266.5,210625.5906156304,0,115088.450080612,53797.01969979281,1138.068994845693 -10686,13157,23899,23900,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.857953721703092,8.843837536593082,0,28,1,-193.9137500766788,0,-9,-9,2019,6,0,45,45,1,0,0,15.41369478505914,15.41369478505914,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,6,5,5,1,471,1343195.225124141,1078903.079992729,251151.0284192315,40682.1182203275,4102.550229481953 -10686,13157,23900,23899,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.612298456340802,8.203501138814001,0,28,-1,-117.3095016387311,0,2,3,2019,10,0,38,41,1,0,0,15.73244778127668,15.73244778127668,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,4,5,5,1,471,1343195.225124141,1078903.079992729,251151.0284192315,40682.1182203275,4102.550229481953 -10686,13158,23901,-9,23900,23899,1,1,23,0,0,0,2,2,-9,0,3,8.258610167072526,7.897198437424102,0,0,0,-884.5921838889863,0,2,2,2019,12,1,39,43,1,1,1,11.48886687863653,11.48886687863653,0,0,0,0,0,0,0,0,0,0,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,288,-146509.02755836,0,0,0,1163.076980717399 -10687,13159,23902,-9,-9,23905,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.576812370219,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,443.75,33669.34846714871,39993.19827956424,0,0,3543.41876077703 -10687,13159,23903,-9,-9,23905,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.2086548111977,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,443.75,33669.34846714871,39993.19827956424,0,0,3543.41876077703 -10687,13159,23904,-9,-9,23905,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1132.999370776193,-9,-9,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,443.75,33669.34846714871,39993.19827956424,0,0,3543.41876077703 -10687,13159,23905,-9,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,9.011869437721934,8.954722527465909,0,0,0,-1101.438970246279,0,2,2,2019,31,12,40,38,1,12,0,26.09070674881365,26.09070674881365,0,0,0,0,7,0,0,0,6.417811134626761,0,22.3,53.89,-9,-9,1.666666666666667,1,1,0,1,9,6,5,1,443.75,33669.34846714871,39993.19827956424,0,0,3543.41876077703 -10688,13160,23906,23907,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.599286213740283,7.188047623082873,0,2,1,85.24801630182422,0,-9,2,2019,12,0,42,39,1,0,0,4.588730224091059,4.588730224091059,0,0,0,0,0,0,0,0,0,0,49.25,52.88,35.79,60.4,8.333333333333334,1,1,0,0,8,5,3,0,1068,3452.59800333989,-9393.335110077147,0,0,1830.3250706912 -10688,13160,23907,23906,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.438487368721974,7.287447963445061,0,2,-1,-79.56177704826277,0,-9,-9,2019,12,0,23,24,1,0,0,8.385380289776281,8.385380289776281,0,0,0,0,0,0,0,0,0,0,35.79,60.4,49.25,52.88,6.666666666666667,1,1,0,0,5,5,3,0,1068,3452.59800333989,-9393.335110077147,0,0,1830.3250706912 -10689,13161,23908,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.477848794784308,6.694196095187662,0,0,-995.3045364213817,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,.0740431493735954,0,0,1,1,0,0,6.657636178722684,45.42,24.8,-9,-9,5,1,1,0,0,0,11,2,1,650,171787.7086966456,106185.0917037034,147650.8372802975,0,1111.36344849653 -10690,13162,23909,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.788514064396763,8.740389366503278,0,0,0,-1073.222368932774,0,2,2,2019,19,7,47,44,1,7,0,17.96150973910877,17.96150973910877,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,2707,-53416.34786889703,0,111550.2292843999,118588.3304468279,2680.604754209483 -10690,13162,23910,-9,23909,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.2521115681922,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,2707,-53416.34786889703,0,111550.2292843999,118588.3304468279,2680.604754209483 -10691,13163,23911,23912,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.301709578321001,8.942852579163157,7.114092719894622,9,-2,-80.53019041224414,0,2,3,2019,7,0,40,40,1,0,0,12.47352726980445,12.47352726980445,0,0,0,0,14.5,0,0,0,0,6.811550844678457,50.74,52.33,53.76,52.09,8.333333333333334,1,1,0,0,9,12,5,1,352.5,1136644.722933819,1006068.502703653,114428.9700709494,0,3858.722400556364 -10691,13163,23912,23911,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.394088708762226,8.023109123849665,0,9,2,-95.69887062000504,0,3,3,2019,15,4,39,39,1,4,0,11.98415213352643,11.98415213352643,0,0,0,0,0,0,0,0,0,0,53.76,52.09,50.74,52.33,8.333333333333334,1,1,0,0,10,12,5,1,352.5,1136644.722933819,1006068.502703653,114428.9700709494,0,3858.722400556364 -10691,13164,23913,-9,23911,23912,1,1,23,0,0,0,1,1,1,0,4,7.908450922835327,7.6132687630769,0,0,0,-957.286429097794,-9,2,2,2019,12,0,80,0,1,0,1,3.348058227546352,3.348058227546352,0,0,0,0,0,0,0,0,2.515361597655408,0,47.77,56.48,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,185,-91153.23807420461,0,0,0,1784.25701420614 -10692,13165,23914,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.549788026625643,8.33486210775666,0,0,0,-1073.534016079887,0,3,3,2019,9,0,48,45,1,0,0,9.781796896013573,9.781796896013573,0,0,0,0,0,1,1,0,0,0,63.26,45.23,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,756,812381.1301631567,528879.1537432541,162221.0307991837,0,1896.552812358708 -10693,13166,23915,23916,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.108438333839612,6.190975124568238,22,-1,-34.6711057806539,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.512809388819798,5.909308568338543,47.78,52.35,59.49,23.03,8.333333333333334,1,1,0,0,0,4,2,1,557,118068.4168346694,39903.99156507705,62687.27342216464,0,3930.345052611442 -10693,13166,23916,23915,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,5.915964710826273,6.40083063601783,23,1,166.0793922271178,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.860305164244044,6.145103135516413,59.49,23.03,47.78,52.35,6.666666666666667,1,1,0,0,0,4,2,1,557,118068.4168346694,39903.99156507705,62687.27342216464,0,3930.345052611442 -10694,13167,23917,-9,-9,-9,1,0,55,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1136.595318631911,0,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,2,3,0,0,0,2,1,1,318,99180.94488169235,0,0,0,687.8281962507017 -10694,13168,23918,23920,23917,-9,1,1,34,0,2,0,2,2,-9,0,4,8.068188363685596,8.170210715074418,0,5,1,-45.7392684321663,0,3,-9,2019,10,0,25,25,1,1,0,13.41215222434878,13.41215222434878,0,0,0,0,0,1,1,0,0,0,49,57,59.54,46.05,7,2,3,0,0,1,2,3,1,716.6666666666666,182445.4082322961,3692.110653141155,222560.6716161286,128321.2575232721,1719.000682505547 -10694,13168,23919,-9,23920,23918,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.3164278198115,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,3,1,716.6666666666666,182445.4082322961,3692.110653141155,222560.6716161286,128321.2575232721,1719.000682505547 -10694,13168,23920,23918,-9,-9,1,0,33,0,2,0,3,3,-9,1,2,0,0,0,5,-1,46.25802249480426,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,59.54,46.05,49,57,8.333333333333334,2,3,0,0,0,2,3,1,716.6666666666666,182445.4082322961,3692.110653141155,222560.6716161286,128321.2575232721,1719.000682505547 -10695,13169,23921,-9,23923,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.9911818045741,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,649.6666666666666,6533.636258575571,-29790.488940342,0,0,1711.16029401017 -10695,13169,23922,-9,23923,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1030.636349533946,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,649.6666666666666,6533.636258575571,-29790.488940342,0,0,1711.16029401017 -10695,13169,23923,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.220819492273034,7.094103426491953,0,0,0,-886.4380355868914,-9,-9,-9,2019,5,0,16,0,1,0,0,10.32937483474161,10.32937483474161,0,0,0,0,0,1,1,0,0,0,46.76,48.74,-9,-9,10,3,4,0,0,4,8,2,0,649.6666666666666,6533.636258575571,-29790.488940342,0,0,1711.16029401017 -10695,13170,23924,-9,23923,-9,1,0,20,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1013.894051344156,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,8,1,0,928,-7215.369878480597,0,0,0,0 -10695,13171,23925,-9,-9,-9,1,1,23,0,2,0,1,1,-9,0,4,0,0,0,0,0,-915.5150895398795,-9,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,309,-38084.93983755884,0,0,0,0 -10696,13172,23926,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.375756748893084,7.204749468380399,10,19,28.61067599438787,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,6.342519507269381,7.290584803996531,57.06,57.76,51,55,8.333333333333334,1,1,0,0,12,11,2,1,339,271127.3707033775,428622.5738049214,0,0,1208.347919222847 -10697,13173,23927,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-968.9908374354226,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,47.34952574627772,0,7,1,1,0,0,0,39,24,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,735,-81876.47454802488,0,0,0,2063.912840236271 -10698,13174,23928,23929,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.151845512599305,8.040962012012043,35,2,-40.42101814622124,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.145695988377931,8.59124189417197,52.88,32.74,59.14,52.5,3.333333333333333,1,1,0,0,8,9,5,1,512.5,4643223.575613659,3437606.374789792,1194450.617166169,0,5097.591007453258 -10698,13174,23929,23928,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.31917684235067,9.2726798855568,0,9,-2,92.94545663171088,0,2,2,2019,7,0,44,57,1,0,0,29.51344900657494,29.51344900657494,0,0,0,0,0,0,0,0,0,0,59.14,52.5,52.88,32.74,6.666666666666667,1,1,0,0,10,9,5,1,512.5,4643223.575613659,3437606.374789792,1194450.617166169,0,5097.591007453258 -10699,13175,23930,23931,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,7,-1,6.164404962672215,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.945872857025711,0,43.78,53.93,52.48,55.6,1.666666666666667,1,1,0,0,6,7,2,1,553,516902.9052327701,67642.18658082662,425383.0983834858,0,2402.356778672124 -10699,13175,23931,23930,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.989534228547281,6.351013888790491,7,1,97.2498341606953,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.158447232356211,6.051906676948359,52.48,55.6,43.78,53.93,8.333333333333334,1,1,0,0,4,7,2,1,553,516902.9052327701,67642.18658082662,425383.0983834858,0,2402.356778672124 -10700,13176,23932,23933,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.080550276025466,7.900486105639764,0,8,-12,53.58345477606942,-9,2,2,2019,11,0,40,0,1,2,0,9.746130516924183,9.746130516924183,0,0,0,0,0,0,0,0,5.702832977639236,0,48,57,60.89,44.94,7,1,1,0,0,1,9,5,1,258.5,314495.7838778407,124093.84634457,124605.5403676134,72249.78128544206,3934.783102327745 -10700,13176,23933,23932,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.664235276411574,8.664535126892066,0,8,12,37.32837537829427,0,2,2,2019,6,0,37,37,1,0,0,21.78011469936408,21.78011469936408,0,0,0,0,0,0,0,0,0,0,60.89,44.94,48,57,8.333333333333334,1,1,0,0,10,9,5,1,258.5,314495.7838778407,124093.84634457,124605.5403676134,72249.78128544206,3934.783102327745 -10701,13177,23934,23937,-9,-9,1,1,32,1,2,0,2,2,-9,0,5,9.070436260915285,9.092039305458801,0,6,5,-43.7855660867646,0,-9,-9,2019,6,0,40,55,1,0,0,26.34955968074645,26.34955968074645,0,0,0,0,0,1,1,0,0,0,59.43,58.05,47.32,52.7,8.333333333333334,1,1,0,0,6,9,5,0,425.75,370743.4468649371,0,0,0,5040.733341966587 -10701,13177,23935,-9,23937,23934,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.3130371890649,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,425.75,370743.4468649371,0,0,0,5040.733341966587 -10701,13177,23936,-9,23937,23934,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-844.0305299037882,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,425.75,370743.4468649371,0,0,0,5040.733341966587 -10701,13177,23937,23934,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,7.499570397126196,7.817492696086921,0,6,-5,44.144402093575,0,-9,-9,2019,9,0,35,0,1,0,0,6.514429880652507,6.514429880652507,0,0,0,0,0,1,1,0,0,0,47.32,52.7,59.43,58.05,8.333333333333334,1,1,0,0,3,9,5,0,425.75,370743.4468649371,0,0,0,5040.733341966587 -10702,13178,23938,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.030674152690173,6.029165908138536,0,0,-1055.21688983055,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.626675956220046,5.8449804248779,20.41,28.49,-9,-9,5,1,1,0,0,7,9,2,1,2467,528289.005302781,142570.0706702258,243120.656721534,0,108.5191593333996 -10703,13179,23939,23940,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.779054630102243,7.652749379200598,0,1,-2,203.5618511729153,-9,-9,-9,2019,5,0,24,0,1,0,0,10.86973561380067,10.86973561380067,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,10,1,1,0,0,13,2,4,1,362.6666666666667,25745.33355332074,-6884.245464355932,159056.6155097755,107883.0022364988,3189.71733880536 -10703,13179,23940,23939,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,7.901419424792466,8.088236678724794,0,1,2,70.47509694808595,-9,-9,-9,2019,12,2,55,0,1,2,0,7.386043954324964,7.386043954324964,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,11,2,4,1,362.6666666666667,25745.33355332074,-6884.245464355932,159056.6155097755,107883.0022364988,3189.71733880536 -10703,13179,23941,-9,23939,23940,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.500385757354,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,362.6666666666667,25745.33355332074,-6884.245464355932,159056.6155097755,107883.0022364988,3189.71733880536 -10704,13180,23942,23943,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.934594899841257,8.189305861853905,7.660747530748055,12,-3,29.40245021484324,0,2,2,2019,8,0,20,22,1,0,0,12.7055077680732,12.7055077680732,0,0,0,0,7,1,1,0,5.579103658865128,7.526883451684975,59.29,46.97,42.61,49.31,8.333333333333334,1,1,0,0,9,6,5,1,248.5,591758.0580510231,10972.75259220123,400040.4482454328,0,4575.993319939003 -10704,13180,23943,23942,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.719451169284703,8.623493799250801,6.649410292697073,7,3,17.39549358723617,0,-9,-9,2019,8,0,45,80,1,0,0,16.76185390406599,16.76185390406599,0,0,0,0,2,1,1,0,6.697101140587924,6.950019758524049,42.61,49.31,59.29,46.97,8.333333333333334,1,1,0,0,5,6,5,1,248.5,591758.0580510231,10972.75259220123,400040.4482454328,0,4575.993319939003 -10705,13181,23944,23945,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.157750843527239,8.245489930861194,0,3,0,-87.08984863412849,0,-9,-9,2019,20,9,52,45,1,9,0,10.06092635665508,10.06092635665508,0,0,0,0,0,0,0,0,0,0,40.52,62.31,45.69,50.44,8.333333333333334,1,1,0,0,2,1,4,1,394.5,211148.1248394471,1470.717124897641,92499.6465661507,66461.73968001729,2448.177963862883 -10705,13181,23945,23944,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.727887456153534,8.069658020068509,0,3,0,-72.91121007259176,0,2,2,2019,13,2,37,0,1,2,0,8.741080624710415,8.741080624710415,0,0,0,0,0,0,0,0,5.481056280858222,0,45.69,50.44,40.52,62.31,5,1,1,0,0,6,1,4,1,394.5,211148.1248394471,1470.717124897641,92499.6465661507,66461.73968001729,2448.177963862883 -10706,13182,23946,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.193051279846941,6.089801657330034,0,0,-1160.493136703838,0,3,2,2019,19,7,0,0,4,7,0,0,0,1,0,6.13848736333143,0,0,1,1,0,0,6.132951896675778,44.24,30.31,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,640,351198.206339507,38545.89266010471,185358.5684405651,0,786.9539556827749 -10707,13183,23947,23948,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,10,-3,0,0,2,3,2019,7,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,.700309277995375,0,58.15,52.91,58.32,50.22,8.333333333333334,1,1,0,0,11,9,1,1,539,646771.7741646788,-102650.7413460878,295170.6982640009,0,101.488761720135 -10707,13183,23948,23947,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,10,3,0,0,3,3,2019,9,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,3.82144067004826,0,58.32,50.22,58.15,52.91,8.333333333333334,1,1,0,0,11,9,1,1,539,646771.7741646788,-102650.7413460878,295170.6982640009,0,101.488761720135 -10708,13184,23949,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-972.5973300432591,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,30.9,-9,-9,3.333333333333333,1,1,0,0,8,12,1,1,216,-182756.6561804809,0,0,0,730.3775104587908 -10709,13185,23950,23952,-9,-9,1,0,44,1,1,0,2,2,-9,0,4,7.933624186149385,7.531787525419192,0,7,-5,-48.13473825600056,0,-9,-9,2019,6,0,37,37,1,0,0,5.96565515570445,5.96565515570445,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52,54.51,10,1,1,0,0,8,11,3,1,968.6666666666666,212641.3019592826,147218.3415552762,201971.026496634,33283.33253934408,2342.673262260374 -10709,13185,23951,-9,23950,23952,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.014070309406,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,968.6666666666666,212641.3019592826,147218.3415552762,201971.026496634,33283.33253934408,2342.673262260374 -10709,13185,23952,23950,-9,-9,1,1,49,1,1,0,2,2,-9,0,3,7.831178790247063,7.929539183486469,0,7,5,89.17980225643024,0,-9,-9,2019,9,0,37,37,1,0,0,6.553685165090523,6.553685165090523,0,0,0,0,0,1,1,0,3.72650384083071,0,52,54.51,51.83,57.2,8.333333333333334,1,1,0,0,8,11,3,1,968.6666666666666,212641.3019592826,147218.3415552762,201971.026496634,33283.33253934408,2342.673262260374 -10710,13186,23953,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,4.566565095695026,4.638763243537126,0,0,-952.5736266946426,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.464320996180572,55,45,-9,-9,8,1,1,0,0,0,13,2,1,685,523960.0780319527,7400.074620440959,202379.4945667397,0,356.4512581856967 -10711,13187,23954,23955,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.372862072478815,8.702928629587253,0,29,0,-97.90956219147408,0,-9,-9,2019,7,0,46,49,1,0,0,11.33458827694469,11.33458827694469,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.37,54.8,6.666666666666667,1,1,0,0,11,4,5,1,768,338586.4049493986,47328.40913143571,283012.5665319648,81242.10928033481,2886.067044876201 -10711,13187,23955,23954,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.717845686609956,7.988412170721326,0,29,0,-79.70149703377609,0,2,1,2019,8,0,40,40,1,0,0,8.762513879009552,8.762513879009552,0,0,0,0,0,0,0,0,6.542619899672612,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,11,4,5,1,768,338586.4049493986,47328.40913143571,283012.5665319648,81242.10928033481,2886.067044876201 -10711,13188,23956,-9,23955,23954,1,1,26,0,0,0,2,2,-9,0,4,8.322383331266728,8.655981594036268,0,0,0,-987.9028241038152,-9,2,2,2019,10,0,39,0,1,1,1,15.86520958581029,15.86520958581029,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,5,1,1327,294402.5929234993,23849.97213985768,86896.97074343597,30046.98770827705,1777.578707714282 -10712,13189,23957,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.604080803780652,9.776410284631423,0,0,0,-898.2046057296825,0,2,1,2019,13,1,100,60,1,1,0,21.8730298659294,21.8730298659294,0,0,0,0,0,0,0,0,9.415852312390442,0,42.36,56.12,-9,-9,6.666666666666667,1,1,0,0,12,9,5,0,2063,-64897.94193357322,83416.24463444365,0,0,8914.254993997341 -10713,13190,23958,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.03452960938368,6.867778029239404,0,0,-1121.931784076303,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.745960603553137,64.07000000000001,47.52,-9,-9,10,1,1,0,0,8,10,2,1,1136,117531.9906480862,51068.71243730426,0,0,1209.600385405493 -10714,13191,23959,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.9440943199834,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,1.24079324875215,4.926369856055214,0,0,1,1,0,0,0,32.32,42.01,-9,-9,6.666666666666667,1,1,0,0,2,13,1,1,292,238881.4250188693,0,153962.7814403499,0,1124.744446913873 -10715,13192,23960,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-974.1709068062559,0,2,2,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,1.549027673876756,0,33.73,21.25,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,1393,-125810.8530606299,-47336.10125101203,0,0,969.0313921217124 -10716,13193,23961,23962,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,36,1,0,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,51.96,26.25,30.4,22.85,1.666666666666667,1,1,0,0,0,2,1,1,481,248789.1152633552,0,132797.8108467121,0,1869.132317789359 -10716,13193,23962,23961,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,36,-1,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.4,22.85,51.96,26.25,1.666666666666667,1,1,0,0,0,2,1,1,481,248789.1152633552,0,132797.8108467121,0,1869.132317789359 -10717,13194,23963,-9,23966,23965,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.493695850913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1864.5,96367.92089189273,36862.71510617215,91753.44277391226,51684.05140279694,3275.662680703504 -10717,13194,23964,-9,23966,23965,1,1,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1039.664293550158,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,4,1,1864.5,96367.92089189273,36862.71510617215,91753.44277391226,51684.05140279694,3275.662680703504 -10717,13194,23965,23966,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,7.761871508707143,7.984971489810905,0,13,-11,102.2750029255302,0,-9,2,2019,9,0,34,34,1,0,0,8.489995549689867,8.489995549689867,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,12,4,1,1864.5,96367.92089189273,36862.71510617215,91753.44277391226,51684.05140279694,3275.662680703504 -10717,13194,23966,23965,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.550164346707417,8.510584274234702,0,13,11,-119.5475142128055,0,2,2,2019,9,0,40,39,1,0,0,12.5767702963409,12.5767702963409,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,12,4,1,1864.5,96367.92089189273,36862.71510617215,91753.44277391226,51684.05140279694,3275.662680703504 -10718,13195,23967,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,0,0,-952.2463538036058,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.15,61.2,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,372,-69470.27371072138,0,0,0,554.1919841110785 -10719,13196,23968,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.651127502774917,9.516292789908288,0,0,0,-1017.472110537661,0,2,2,2019,8,0,16,16,1,0,0,128.8643581763809,128.8643581763809,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,1,7,10,5,1,778,401737.2496554892,307620.4698272072,233867.1602092386,125104.7886328776,33645.86153491762 -10719,13197,23969,-9,23968,-9,1,0,18,0,0,1,2,0,-9,0,2,0,4.332082990265012,4.514252868688122,0,0,-900.7186185637798,-9,1,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,3.772307811458882,0,40.58,43.79,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,608,73922.06822660216,0,0,0,-210.9331895224346 -10720,13198,23970,23971,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,33,-5,-170.8905826433138,0,3,3,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,2.46267026075109,0,28.23,36.29,54,54,6.666666666666667,2,3,0,0,0,8,4,1,306,1850530.769964764,1163647.427484752,474090.8321920173,0,1968.45945097727 -10720,13198,23971,23970,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.374894578035869,8.171065792640297,0,8,5,14.23734739128107,0,-9,-9,2019,9,0,50,40,1,1,0,9.600233006830326,9.600233006830326,0,0,0,0,0,1,1,0,0,0,54,54,28.23,36.29,8,2,3,0,0,1,8,4,1,306,1850530.769964764,1163647.427484752,474090.8321920173,0,1968.45945097727 -10720,13199,23972,-9,23970,23971,1,1,26,0,0,0,2,2,-9,0,4,8.58703546177048,8.475542200859696,0,0,0,-972.7048774585439,0,3,2,2019,10,0,58,40,1,1,1,10.24723098515156,10.24723098515156,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,5,1,955,124631.9361959358,122231.9621565974,0,0,1953.339192080967 -10720,13200,23973,-9,23970,23971,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-923.8536432479651,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.150711248139985,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,655,0,0,0,0,-63.01814959176074 -10720,13201,23974,23975,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.742149426877269,7.99392739737626,0,3,0,140.8301088286792,0,-9,-9,2019,11,0,37,35,1,2,0,7.577380614423994,7.577380614423994,0,0,0,0,0,1,1,0,0,0,47,57,49,58,7,4,2,0,0,1,8,3,1,1005,37801.59380408152,0,0,0,1771.546789607704 -10720,13201,23975,23974,23970,23971,1,1,28,0,0,0,2,2,-9,0,4,6.955511375007812,6.837458183693404,0,3,0,13.7248988427602,0,3,2,2019,10,0,58,40,1,1,0,1.683726579700078,1.683726579700078,0,0,0,0,0,1,1,0,2.894980769942157,0,49,58,47,57,7,2,3,0,0,1,8,3,1,1005,37801.59380408152,0,0,0,1771.546789607704 -10721,13202,23976,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,6.509450837894176,6.39117624699352,0,0,-1010.305501213804,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.314722470127835,0,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,6,8,2,1,274.5,-91750.63353039518,0,0,0,6091.147922902242 -10721,13202,23977,-9,23976,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.0192787808647,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,274.5,-91750.63353039518,0,0,0,6091.147922902242 -10722,13203,23978,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-935.896726162759,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.57,41.44,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,176,46946.99475445678,0,0,0,688.5139232329931 -10723,13204,23979,-9,23980,23981,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1041.058421029974,-9,3,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,5820.333333333333,2518.39696572379,76303.80208802526,76652.0608001628,90150.98990677633,2501.742247714271 -10723,13204,23980,23981,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,7.987188554046602,7.670604120909164,0,2,5,-67.9738902315267,0,2,2,2019,12,1,42,37,1,1,0,6.956038291460684,6.956038291460684,0,0,0,0,0,1,1,0,0,0,48.01,51.1,46.55,58.3,6.666666666666667,1,1,0,0,8,2,4,1,5820.333333333333,2518.39696572379,76303.80208802526,76652.0608001628,90150.98990677633,2501.742247714271 -10723,13204,23981,23980,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.160916172394581,8.202415562025509,0,2,-5,-97.74724859536404,0,-9,-9,2019,11,0,35,35,1,0,0,12.56350104139363,12.56350104139363,0,0,0,0,0,1,1,0,0,0,46.55,58.3,48.01,51.1,6.666666666666667,1,1,0,0,2,2,4,1,5820.333333333333,2518.39696572379,76303.80208802526,76652.0608001628,90150.98990677633,2501.742247714271 -10724,13205,23982,23983,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.194861472055464,8.400987040069394,0,1,-5,-82.37912802427718,-9,-9,-9,2019,6,0,30,0,1,0,0,16.03431489476123,16.03431489476123,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37,53.29,6.666666666666667,1,1,0,0,8,12,5,1,1044,1176390.686948808,811006.9668361186,261638.3385643694,0,9929.155393879464 -10724,13205,23983,23982,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.688784901810401,9.834872796060976,0,1,5,-37.62746689840108,-9,-9,-9,2019,11,0,84,0,1,0,0,22.42725087137969,22.42725087137969,0,0,0,0,0,0,0,0,0,0,37,53.29,57.33,53.46,6.666666666666667,1,1,0,0,8,12,5,1,1044,1176390.686948808,811006.9668361186,261638.3385643694,0,9929.155393879464 -10725,13206,23984,23985,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.02217489578197,6.97897140466392,50,-1,57.47868999072121,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.236626311412401,56.81,47.26,64.96000000000001,43.19,8.333333333333334,1,1,0,0,6,12,3,1,1015,881148.901719257,577673.9524711368,232968.8589405715,0,3010.462259407253 -10725,13206,23985,23984,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.705336559338492,7.80106702689589,50,1,21.36410308058196,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.422392878019571,7.453460242735761,64.96000000000001,43.19,56.81,47.26,10,1,1,0,0,0,12,3,1,1015,881148.901719257,577673.9524711368,232968.8589405715,0,3010.462259407253 -10726,13207,23986,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.827420924263604,5.98085945562064,0,0,-968.5721080861374,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.738439524497621,47.66,38.44,-9,-9,10,1,1,0,0,0,7,2,1,1756,439320.8531173365,71595.05536270945,304012.5680228996,0,1227.355733468179 -10727,13208,23987,-9,23990,23989,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.7876170967128,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,530.25,459344.890546323,26819.1230061159,358554.339413322,0,7416.838376590337 -10727,13208,23988,-9,23990,23989,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.073428555736,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,530.25,459344.890546323,26819.1230061159,358554.339413322,0,7416.838376590337 -10727,13208,23989,23990,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,9.523458539782657,9.946146400200901,0,23,4,36.78185797111362,0,3,3,2019,7,0,60,60,1,0,0,25.61921807698753,25.61921807698753,0,0,0,0,0,1,1,0,7.830493552375732,0,61.27,46.03,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,530.25,459344.890546323,26819.1230061159,358554.339413322,0,7416.838376590337 -10727,13208,23990,23989,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,7.835855583111218,7.824882047750928,0,25,-4,-115.0879941987813,0,2,2,2019,12,0,20,20,1,0,0,11.87648044269293,11.87648044269293,0,0,0,0,0,1,1,0,2.328390305869187,0,57.06,57.76,61.27,46.03,8.333333333333334,1,1,0,0,6,6,5,1,530.25,459344.890546323,26819.1230061159,358554.339413322,0,7416.838376590337 -10728,13209,23991,23992,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.572175053253961,8.751977891315232,5.318634508602985,36,-2,-38.50485548562592,0,3,3,2019,16,4,48,49,1,4,0,14.14087889645481,14.14087889645481,0,0,0,0,0,0,0,0,7.429598755485239,0,32.17,66.08,46.8,46.5,3.333333333333333,1,1,0,0,10,5,5,1,780.5,470919.0924929575,124982.2808822574,136124.7529715775,11278.03530909517,4287.297256183143 -10728,13209,23992,23991,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.754061552797786,8.799188951248976,0,36,2,-122.5273340718082,0,3,3,2019,13,1,90,44,1,1,0,9.38536923005106,9.38536923005106,0,0,0,0,0,0,0,0,0,0,46.8,46.5,32.17,66.08,8.333333333333334,4,2,0,0,12,5,5,1,780.5,470919.0924929575,124982.2808822574,136124.7529715775,11278.03530909517,4287.297256183143 -10729,13210,23993,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,7.147692397940592,6.991298058096119,0,0,-841.1231564073992,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.837597866523967,4.968207619367618,49.01,45.35,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,593,805681.6616422425,0,763424.3846678663,0,857.4058394481522 -10729,13211,23994,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.786768959289907,7.806907139754006,0,0,0,-932.6571337936379,-9,2,1,2019,11,0,35,0,1,0,0,7.431677310399298,7.431677310399298,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,10,3,1,939,100644.3595961732,0,0,0,1583.886280201603 -10730,13212,23995,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-986.6607182968189,1,2,2,2019,10,2,0,36,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,8,1,0,858,224768.2349868547,0,0,0,182.5225025784502 -10731,13213,23996,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,8.42029630421972,8.35577633047294,0,0,0,-961.677948578932,0,3,2,2019,20,8,29,29,1,8,0,21.46865650710109,21.46865650710109,0,0,0,0,0,1,1,0,0,0,40.82,39.82,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,1680,303046.8694641398,14482.54261347478,197301.8899314997,23380.89888732569,1613.152240711751 -10732,13214,23997,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.673983739215458,7.475668885241428,0,0,-970.8929788370433,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.770837440403758,7.027368475093862,46.39,60.99,-9,-9,10,1,1,0,0,0,6,3,1,1528,537470.398849515,195310.1776583348,197501.6871086253,0,1469.192297734477 -10733,13215,23998,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.093357286281471,6.747177018887664,0,0,0,-966.5266177389077,0,3,3,2019,17,6,16,16,1,6,0,8.009959140720863,8.009959140720863,0,0,0,0,0,1,1,0,0,0,37.39,53.3,-9,-9,3.333333333333333,1,1,0,1,2,13,2,0,85,-94494.38229091773,-4410.92320053097,0,0,706.2797239942486 -10733,13216,23999,-9,23998,-9,1,0,24,0,0,0,2,2,-9,0,3,7.320805391151247,7.445586605540973,0,0,0,-1015.383068898202,0,3,3,2019,24,10,30,16,1,10,1,4.875387074227598,4.875387074227598,0,0,0,0,0,1,1,0,0,0,33.57,55.27,-9,-9,1.666666666666667,1,1,0,1,2,13,3,0,502,0,0,0,0,638.9012248864199 -10734,13217,24000,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.904005626181115,8.210096474471042,0,0,0,-997.9988244144763,0,2,-9,2019,11,0,37,37,1,0,0,9.731106940956179,9.731106940956179,0,0,0,0,0,0,0,0,.019865016822225,0,52.3,57.2,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,39,131745.7483599141,-189805.6579569702,0,0,1145.224467671721 -10735,13218,24001,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,8.761463758027405,8.698296420954515,0,0,0,-993.3432260678468,0,-9,-9,2019,15,4,40,25,1,4,0,21.60511369919762,21.60511369919762,0,0,0,0,0,0,0,0,4.278608231837135,0,41.23,30.19,-9,-9,6.666666666666667,1,1,0,0,3,8,5,0,484,133528.2678553942,32211.19738096961,0,0,1873.061670040037 -10735,13219,24002,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.076812315777227,8.832232029033925,0,0,0,-979.627484054504,-9,-9,-9,2019,10,0,40,0,1,1,0,23.80238255576607,23.80238255576607,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,4,6,0,0,1,8,5,0,518,294658.7586559808,75848.08807520292,154723.016985382,75429.1520055513,2337.394749580164 -10736,13220,24003,24005,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.108545785051746,7.95887291358275,0,9,-3,15.30848779029267,0,3,3,2019,11,0,42,37,1,0,0,9.008029436564323,9.008029436564323,0,0,0,0,0,1,1,0,0,0,52.23,55.6,49.04,55.86,3.333333333333333,1,1,0,0,10,4,4,1,621,191898.3958884849,227634.9996296711,88298.43748535453,36771.09595460875,2736.755494218893 -10736,13220,24004,-9,24003,24005,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-968.8081457223318,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,621,191898.3958884849,227634.9996296711,88298.43748535453,36771.09595460875,2736.755494218893 -10736,13220,24005,24003,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.833934611222616,7.940636156081599,0,9,3,54.14791449057127,0,-9,-9,2019,12,1,37,37,1,1,0,7.893203782495887,7.893203782495887,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.23,55.6,5,1,1,0,0,10,4,4,1,621,191898.3958884849,227634.9996296711,88298.43748535453,36771.09595460875,2736.755494218893 -10736,13221,24006,-9,24003,24005,1,1,21,0,1,0,2,2,-9,0,3,6.909924567272513,6.947410805960549,0,0,0,-1061.277046354709,0,2,2,2019,11,0,16,15,1,0,1,6.54646978164691,6.54646978164691,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,4,4,2,1,239,105614.1980163059,0,0,0,441.5545334118394 -10737,13222,24007,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1082.352572588237,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,4.160697142331109,0,0,1,1,0,0,0,30.32,17.53,-9,-9,5,1,1,0,0,0,11,1,0,36,204529.7383727772,0,0,0,2300.521789045039 -10738,13223,24008,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.073942226061581,6.357517697836878,0,0,-956.8479266092174,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,1,0,13.81977308194638,0,0,1,1,0,0,5.997991293314074,67.09999999999999,25.52,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,814,412414.0590679361,11194.55750691628,270844.4400932374,0,1530.119081707419 -10739,13224,24009,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.537208350172517,7.04398448588343,0,0,-977.2813013731165,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.243082566939087,7.16438548807697,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,7,8,3,1,444,925588.0386078698,346708.0361744082,208510.4854261152,0,1000.237137164249 -10740,13225,24010,24011,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,6.896816944807156,6.522300439955016,10,-5,15.33182777275779,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.30209886655805,6.862659835532686,45.73,26.38,50,49,5,1,1,0,0,0,5,3,1,1445.5,885546.5324186136,615321.8699401377,191595.8041096466,0,4530.1114975328 -10740,13225,24011,24010,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.474847059824856,7.638326485700542,10,5,-137.2262291221789,0,1,2,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,7,1,1,0,4.981212234561267,7.927697126931688,50,49,45.73,26.38,5,1,1,0,0,9,5,3,1,1445.5,885546.5324186136,615321.8699401377,191595.8041096466,0,4530.1114975328 -10740,13226,24012,-9,24010,24011,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-976.1899025613927,0,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,2.38164805944108,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,534,88070.23211423389,0,0,0,-42.46430892136197 -10740,13227,24013,-9,24010,24011,1,0,21,0,0,0,2,2,-9,0,2,7.279545202322472,7.777376386110783,6.75163384234079,0,0,-912.2222063642724,0,2,2,2019,10,0,32,40,1,0,1,7.934409515733551,7.934409515733551,0,0,0,0,0,1,1,0,6.109512099428193,6.602656256922891,50.89,49.95,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,174,45663.01806771065,0,0,0,1149.482761165688 -10741,13228,24014,24015,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.683305144436467,8.48079259563122,0,2,0,91.00503587880162,0,-9,-9,2019,14,4,41,41,1,4,0,19.07439198080212,19.07439198080212,0,0,0,0,0,0,0,0,0,0,38.16,61.04,62.39,56.71,8.333333333333334,1,1,0,0,1,12,5,1,571,222214.4276671062,33850.96257170864,286584.4863002913,204224.3910252442,3172.686673472447 -10741,13228,24015,24014,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.189486063755529,8.155107583009205,0,2,0,30.65833159086378,0,-9,2,2019,6,0,40,41,1,0,0,8.540717976040272,8.540717976040272,0,0,0,0,0,0,0,0,4.085354414471973,0,62.39,56.71,38.16,61.04,10,1,1,0,0,9,12,5,1,571,222214.4276671062,33850.96257170864,286584.4863002913,204224.3910252442,3172.686673472447 -10742,13229,24016,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.14834507461925,7.977418545108178,0,0,0,-1000.183499907932,0,2,3,2019,17,5,38,38,1,5,0,8.530276630471601,8.530276630471601,0,0,0,0,0,0,0,0,0,0,34.04,44.46,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,374,1084490.480283948,456452.8607629944,461048.4274382202,0,1533.690010844721 -10743,13230,24017,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,7.901608128625992,7.939753314155763,0,0,0,-977.250050882834,0,3,3,2019,18,6,32,24,1,6,0,10.04795314692325,10.04795314692325,0,0,0,0,0,1,1,0,6.779611468636611,0,27.39,53.9,-9,-9,5,1,1,0,0,10,6,3,0,876,254269.4831329646,49771.10943961128,83601.73224805265,55765.99173057498,2106.96618289194 -10743,13230,24018,-9,24017,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-979.1922076325584,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,3,0,876,254269.4831329646,49771.10943961128,83601.73224805265,55765.99173057498,2106.96618289194 -10744,13231,24019,-9,-9,-9,1,1,41,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1060.302034991439,1,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,27,1,1,0,0,0,53.22,52.7,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,581.5,0,0,0,0,2459.419716494305 -10744,13231,24020,-9,-9,24019,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.760062619348,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,1,0,581.5,0,0,0,0,2459.419716494305 -10745,13232,24021,24022,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,8,3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,0,0,47.69,29.6,52.37,26,8.333333333333334,1,1,0,0,0,13,1,1,1288,-22412.4407410706,0,0,0,1599.166521214414 -10745,13232,24022,24021,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,8,-3,0,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,26,47.69,29.6,6.666666666666667,1,1,0,0,0,13,1,1,1288,-22412.4407410706,0,0,0,1599.166521214414 -10746,13233,24023,24024,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.936378643530234,8.124993139651778,0,2,-4,6.172335902253708,0,-9,-9,2019,9,0,40,40,1,1,0,8.059286592921627,8.059286592921627,0,0,0,0,0,1,1,0,0,0,53,54,42.58,52.25,8,1,1,0,0,1,10,4,0,639,-61949.05804463648,21613.74869792721,0,0,1940.688779118949 -10746,13233,24024,24023,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.099370821230739,7.840874962989391,0,24,4,-159.777866099184,0,-9,-9,2019,12,1,47,48,1,1,0,6.168294780442415,6.168294780442415,0,0,0,0,7,1,1,0,0,0,42.58,52.25,53,54,6.666666666666667,1,1,0,0,6,10,4,0,639,-61949.05804463648,21613.74869792721,0,0,1940.688779118949 -10747,13234,24025,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.704201067463083,8.695688797459514,6.110013249813489,0,0,-921.5576817237626,0,1,1,2019,18,6,40,41,1,6,0,12.60665112814331,12.60665112814331,0,0,0,0,0,1,1,0,6.710944594197751,0,34.04,43.93,-9,-9,6.666666666666667,1,1,0,1,11,4,5,1,869,114426.8673297358,107497.5817410318,142249.8706116137,124813.7809034014,2325.117463338295 -10748,13235,24026,24027,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,5.457816815911739,7.279187897508498,7.418321786589892,30,-6,-5.749349034064309,0,3,3,2019,14,3,5,5,1,3,0,4.921194183362849,4.921194183362849,0,0,0,0,0,1,1,0,7.646595939843714,7.097716898586546,43.2,59.97,50,47,8.333333333333334,1,1,0,0,9,4,4,1,1653.5,841580.7539958748,542754.2695888861,164670.1024993805,0,3883.220214616738 -10748,13235,24027,24026,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.725261018456283,7.855196647666411,9,6,128.9136322277593,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.77560256563895,50,47,43.2,59.97,6.666666666666667,1,1,0,0,4,4,4,1,1653.5,841580.7539958748,542754.2695888861,164670.1024993805,0,3883.220214616738 -10749,13236,24028,-9,24032,24034,1,1,12,0,6,1,3,0,-9,0,4,0,0,0,0,0,-939.4272215860256,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24029,-9,24032,24034,1,1,10,0,6,1,3,0,-9,0,4,0,0,0,0,0,-946.6813718459584,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24030,-9,24032,24034,1,0,6,0,6,1,3,0,-9,0,4,0,0,0,0,0,-941.0071045425269,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24031,-9,24032,24034,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1044.728598857294,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24032,24034,-9,-9,1,0,31,0,6,0,2,2,-9,1,3,8.253467202701007,7.698054723643518,0,7,-13,16.8596030383207,0,1,1,2019,22,10,44,37,1,10,0,7.402432222357888,7.402432222357888,0,0,0,0,0,1,1,0,0,0,27.6,62.81,39.08,41.75,1.666666666666667,1,1,0,0,9,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24033,-9,24032,24034,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1045.579975028005,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24034,24032,-9,-9,1,1,44,0,6,0,1,1,-9,0,2,6.655924168474315,6.925706492095633,3.856686476149006,7,13,82.62777602826506,0,2,2,2019,12,0,10,0,1,0,0,11.99197281084739,11.99197281084739,0,0,0,0,0,1,1,0,5.146622151735498,0,39.08,41.75,27.6,62.81,3.333333333333333,1,1,0,0,1,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10749,13236,24035,-9,24032,24034,1,1,16,0,6,1,3,0,-9,0,3,0,0,0,0,0,-979.2041247911252,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,47.3,-9,-9,5,1,1,0,0,0,9,2,1,1477.5,65653.98178253529,-18354.22311954611,0,0,3985.470862655225 -10750,13237,24036,-9,24037,24038,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-973.3216390614181,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,2,1,903.3333333333334,338760.6424838078,142301.5260996251,225620.5415314617,123370.3624513513,2201.675421544851 -10750,13237,24037,24038,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,6.999419984913448,6.524898964405298,0,7,-4,56.87399230908821,0,3,2,2019,11,0,12,8,1,0,0,7.957192724634079,7.957192724634079,0,0,0,0,0,1,1,0,7.740859567983083,0,44.26,59.43,58.74,52.92,6.666666666666667,1,1,0,0,8,9,2,1,903.3333333333334,338760.6424838078,142301.5260996251,225620.5415314617,123370.3624513513,2201.675421544851 -10750,13237,24038,24037,-9,-9,1,1,46,0,1,0,3,3,-9,0,5,0,7.476915497487219,7.694996640315933,7,4,-2.028982770476127,0,3,3,2019,9,0,0,84,3,0,0,0,0,0,0,0,0,0,1,1,0,0,7.540434388389146,58.74,52.92,44.26,59.43,10,1,1,1,0,8,9,2,1,903.3333333333334,338760.6424838078,142301.5260996251,225620.5415314617,123370.3624513513,2201.675421544851 -10750,13238,24039,-9,24037,24038,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1066.594345471086,-9,2,3,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,1,1,231,48592.53738182665,0,0,0,0 -10751,13239,24040,-9,24044,24043,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.406525457498,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,4,1,1,629.2,-40721.82398139346,0,0,0,383.6422480779389 -10751,13239,24041,-9,24044,24043,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-953.1038030701318,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,1,1,629.2,-40721.82398139346,0,0,0,383.6422480779389 -10751,13239,24042,-9,24044,24043,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.165002875873,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,4,1,1,629.2,-40721.82398139346,0,0,0,383.6422480779389 -10751,13239,24043,24044,-9,-9,1,1,42,1,3,0,2,2,-9,0,3,0,0,0,5,11,0,0,3,2,2019,15,4,0,46,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,49.99,33.89,36.04,43.1,1.666666666666667,1,1,0,1,11,4,1,1,629.2,-40721.82398139346,0,0,0,383.6422480779389 -10751,13239,24044,24043,-9,-9,1,0,31,1,3,0,3,3,-9,0,3,0,0,0,5,-11,0,0,3,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.04,43.1,49.99,33.89,1.666666666666667,2,3,0,1,0,4,1,1,629.2,-40721.82398139346,0,0,0,383.6422480779389 -10752,13240,24045,-9,24048,24049,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1173.229781034107,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,3,1,1365,-14059.43298140994,0,0,0,2193.620141335276 -10752,13240,24046,-9,24048,24049,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.8896564962829,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,3,1,1365,-14059.43298140994,0,0,0,2193.620141335276 -10752,13240,24047,-9,24048,24049,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.261348928618,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,3,1,1365,-14059.43298140994,0,0,0,2193.620141335276 -10752,13240,24048,24049,-9,-9,1,0,47,0,3,0,2,2,-9,0,5,0,0,0,13,0,-44.28468500154532,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,38.75,44.93,8.333333333333334,1,1,0,0,5,11,3,1,1365,-14059.43298140994,0,0,0,2193.620141335276 -10752,13240,24049,24048,-9,-9,1,1,47,0,3,0,2,2,-9,0,2,7.835650073239179,8.081128484566891,0,13,0,83.12156625854138,0,2,-9,2019,11,1,40,40,1,1,0,10.18883863109608,10.18883863109608,0,0,0,0,0,1,1,0,0,0,38.75,44.93,48.77,60.16,1.666666666666667,1,1,0,0,6,11,3,1,1365,-14059.43298140994,0,0,0,2193.620141335276 -10753,13241,24050,-9,24052,24051,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.579209673306,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10753,13241,24051,24052,-9,-9,1,1,36,2,4,0,1,1,-9,0,4,7.144312842814035,7.232545654554994,0,10,10,-29.17440752436063,0,3,2,2019,7,0,35,35,1,0,0,4.67686465847622,4.67686465847622,0,0,0,0,0,1,1,0,0,0,50.34,56.4,57.06,57.76,6.666666666666667,2,3,0,0,8,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10753,13241,24052,24051,-9,-9,1,0,26,2,4,0,2,2,-9,0,5,0,0,0,8,-10,.5267094054097452,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.34,56.4,8.333333333333334,2,3,0,0,0,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10753,13241,24053,-9,24052,24051,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1065.64580664292,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10753,13241,24054,-9,24052,24051,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.677259767071,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10753,13241,24055,-9,24052,24051,1,0,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-921.5339560858392,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1160.166666666667,33916.29986062142,72966.64142959294,147213.8891516154,108429.5186336864,1903.223662195476 -10754,13242,24056,24057,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,9.759272811949284,9.848229267341248,0,19,2,-12.37523676013937,0,2,2,2019,6,0,60,60,1,0,0,27.75100770580225,27.75100770580225,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,0,5,6,5,1,783,2348019.697297976,469339.764422007,681930.0216835919,0,6683.01687292299 -10754,13242,24057,24056,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.94627191681999,8.397246622671993,0,22,-2,-91.94798758234168,0,1,1,2019,9,0,28,29,1,0,0,31.84131938291181,31.84131938291181,0,0,0,0,0,0,0,0,.6181169938594167,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,8,6,5,1,783,2348019.697297976,469339.764422007,681930.0216835919,0,6683.01687292299 -10754,13242,24058,-9,24057,24056,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.354574626745,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,783,2348019.697297976,469339.764422007,681930.0216835919,0,6683.01687292299 -10754,13242,24059,-9,24057,24056,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.6092977039871,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,783,2348019.697297976,469339.764422007,681930.0216835919,0,6683.01687292299 -10755,13243,24060,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.848925996097514,7.721540281642438,0,0,0,-1086.82215014221,0,3,2,2019,11,0,37,37,1,0,0,6.780804995741126,6.780804995741126,0,0,0,0,0,0,0,0,5.029010608626181,0,45.58,47.97,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,1782,-75698.80249385603,0,0,0,1463.532859846428 -10755,13244,24061,-9,24060,-9,1,0,26,0,0,0,2,2,-9,0,3,8.022830086070519,7.990917788756988,0,0,0,-1003.367884667407,-9,2,2,2019,10,0,50,0,1,0,1,7.922367203453731,7.922367203453731,0,0,0,0,0,0,0,0,0,0,52.58,47.36,-9,-9,5,1,1,0,0,6,12,4,1,1125,-63282.31126064496,0,0,0,962.8713263351374 -10756,13245,24062,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,8.092260879583362,8.229673820319809,0,0,0,-1010.243412416282,0,2,2,2019,16,6,35,40,1,6,0,12.28552137643592,12.28552137643592,0,0,0,0,0,0,0,0,1.003673366144327,0,43.38,62.58,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,706,-75733.60546754427,83309.45969263221,0,0,1357.126511707834 -10757,13246,24063,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.433460834079775,7.442855194945803,0,0,-987.864852432903,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,7.516659630499403,62.39,56.71,-9,-9,10,1,1,0,0,4,12,3,1,990,639311.9805234007,324018.2129131019,325880.7800590141,51738.08826496128,450.8251944017279 -10758,13247,24064,-9,24067,24065,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.9745984524944,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,609.5,1694131.651742265,1437908.611516665,345214.8089529236,118658.4436975968,14273.38041652402 -10758,13247,24065,24067,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,6.826169069939025,7.154735197302756,0,19,1,64.98144041469168,0,2,2,2019,9,0,35,37,1,0,0,4.223350290231619,4.223350290231619,0,0,0,0,0,0,0,0,9.497031706259531,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,609.5,1694131.651742265,1437908.611516665,345214.8089529236,118658.4436975968,14273.38041652402 -10758,13247,24066,-9,24067,24065,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1179.762130478025,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,609.5,1694131.651742265,1437908.611516665,345214.8089529236,118658.4436975968,14273.38041652402 -10758,13247,24067,24065,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.421572558469125,9.040174162911375,8.825082783376695,19,-1,-131.9634697571176,0,1,1,2019,5,0,50,40,1,0,0,4.580476104496802,4.580476104496802,0,0,0,0,0,0,0,0,10.26204953132716,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,5,2,5,1,609.5,1694131.651742265,1437908.611516665,345214.8089529236,118658.4436975968,14273.38041652402 -10759,13248,24068,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-955.1704404976365,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.8,39.97,-9,-9,10,1,1,0,0,0,13,1,1,114,89581.97141970776,0,-20100.30946404405,0,489.276010242066 -10760,13249,24069,24070,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,8.244325877534495,8.363659472718867,0,5,-7,-6.28377090910346,0,1,2,2019,10,1,40,0,1,1,0,12.28264200001118,12.28264200001118,0,0,0,0,0,1,1,0,0,0,54.37,54.8,49.04,55.86,6.666666666666667,1,1,0,0,1,4,3,0,778.3333333333334,118530.3678263864,34450.1940980397,0,0,2220.39874398593 -10760,13249,24070,24069,-9,-9,1,1,34,0,1,0,2,2,-9,1,3,0,0,0,5,7,103.0228361645431,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,6.666666666666667,1,1,0,0,0,4,3,0,778.3333333333334,118530.3678263864,34450.1940980397,0,0,2220.39874398593 -10760,13249,24071,-9,24069,24070,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.027007300334,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,778.3333333333334,118530.3678263864,34450.1940980397,0,0,2220.39874398593 -10761,13250,24072,24073,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.702668183177153,8.08890834427671,8,0,40.81752152500908,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.281249118844097,7.854854555322348,57.16,56.15,56.47,59.4,8.333333333333334,1,1,0,0,4,2,4,1,708.5,2065450.802635447,1700757.976585799,190158.7242971256,0,4105.18209282194 -10761,13250,24073,24072,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.830347537635458,7.752218303886025,46,0,-114.8674758370903,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.878521008382367,8.016445468062278,56.47,59.4,57.16,56.15,10,1,1,0,0,3,2,4,1,708.5,2065450.802635447,1700757.976585799,190158.7242971256,0,4105.18209282194 -10762,13251,24074,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,1,0,7.038542346190615,6.635340854136678,0,0,-1099.919171245655,0,3,-9,2019,15,6,0,0,4,6,0,0,0,1,0,14.11675847747587,0,0,1,1,0,0,6.94114908204126,33.44,24.2,-9,-9,6.666666666666667,3,4,0,0,0,6,2,1,1715,422818.6002475657,219927.8710301262,216246.7892199123,0,592.1699269888177 -10763,13252,24075,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.379547414333,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,-9,-9,8.333333333333334,1,1,0,1,0,1,1,0,338,32469.99369462995,0,0,0,479.6020636361859 -10764,13253,24076,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-975.8199364604785,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.842882887043447,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,0,619,-217705.3174127452,0,0,0,795.3551464912962 -10765,13254,24077,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1021.669843717628,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,1,1,0,0,0,12,1,1,217,46469.04810943321,0,0,0,602.3146013462119 -10766,13255,24078,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.847885859172154,8.960491357838702,0,0,0,-977.7551923805177,0,3,3,2019,14,2,50,60,1,2,0,15.8250083724062,15.8250083724062,0,0,0,0,0,0,0,0,3.700219708303698,0,45.46,61.87,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1124,887155.6365754385,588815.6604248701,231017.2382290814,0,2544.625728380673 -10766,13256,24079,-9,24078,-9,1,1,21,0,0,0,1,1,1,0,4,7.548268191328346,7.474000738308982,0,0,0,-894.5218715713277,-9,1,-9,2019,5,0,42,0,1,0,1,6.073187376089526,6.073187376089526,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,4,2,0,0,5,6,3,1,849,35967.58474195057,8289.020589267006,0,0,633.1621450081816 -10766,13257,24080,-9,24078,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1037.107943299612,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.06,48.59,-9,-9,10,4,2,0,0,3,6,1,1,1914,114856.9585669647,0,0,0,-253.4965984561796 -10766,13258,24081,-9,24078,-9,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-979.3820726149332,-9,1,-9,2019,3,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.71,58.83,-9,-9,8.333333333333334,4,2,0,0,3,6,1,1,450,122305.1574220571,0,0,0,-476.0864570809354 -10767,13259,24082,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.054517336846889,8.226532962672934,0,0,0,-1086.756108388073,0,2,-9,2019,12,0,35,35,1,0,0,11.95792417946268,11.95792417946268,0,0,0,0,0,0,0,0,0,0,50.27,48.86,-9,-9,5,1,1,0,1,9,7,4,0,1395,312966.5741824254,-27190.49618668848,330252.4952769871,-12188.52542495385,588.2243759923182 -10767,13260,24083,-9,24082,-9,1,1,20,0,0,0,2,2,-9,0,4,6.837375117900444,6.825406816507579,0,0,0,-942.51621176913,0,2,-9,2019,11,0,40,40,1,2,1,3.462180452166975,3.462180452166975,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,3,7,2,0,1097,-83880.51138490392,0,0,0,1308.03522233749 -10768,13261,24084,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,8.204840743130445,8.514969456164497,7.664329373581962,0,0,-1010.690026842613,0,2,2,2019,10,0,40,37,1,0,0,10.7332116025186,10.7332116025186,0,0,0,0,0,1,1,0,0,7.467596656527525,48.22,51.17,-9,-9,5,1,1,0,0,12,5,5,1,552,1831796.699749386,1551393.876285645,272986.7660262921,0,3109.266025847682 -10769,13262,24085,24086,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,8.324518184246344,8.66278600109913,26,12,9.460017688647525,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,5.039565449208139,8.281444181136665,58.26,38.35,21.55,25.26,8.333333333333334,1,1,0,0,0,2,4,1,841,1136926.399263683,1086164.630548292,85102.01225800294,-3864.453192968734,4157.39729531533 -10769,13262,24086,24085,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,7.423246061040831,7.575478631231149,26,-12,62.24329532392435,0,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,42,1,1,0,5.764092486936919,7.181663910788914,21.55,25.26,58.26,38.35,1.666666666666667,1,1,0,0,0,2,4,1,841,1136926.399263683,1086164.630548292,85102.01225800294,-3864.453192968734,4157.39729531533 -10770,13263,24087,-9,24091,24088,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.5160011224582,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,850.4,-37776.73444596592,0,191159.3675205487,126064.5050809576,3816.519455059873 -10770,13263,24088,24091,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,9.571857511226336,9.265007611470319,0,6,0,-109.9404513190806,0,1,1,2019,8,1,50,42,1,1,0,22.61970062223434,22.61970062223434,0,0,0,0,0,1,1,0,5.065756063527646,0,57.16,56.15,47.15,56.66,8.333333333333334,1,1,0,0,7,6,5,1,850.4,-37776.73444596592,0,191159.3675205487,126064.5050809576,3816.519455059873 -10770,13263,24089,-9,24091,24088,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.725035547922,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,850.4,-37776.73444596592,0,191159.3675205487,126064.5050809576,3816.519455059873 -10770,13263,24090,-9,24091,24088,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.697615059341,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,850.4,-37776.73444596592,0,191159.3675205487,126064.5050809576,3816.519455059873 -10770,13263,24091,24088,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,2.564369731678442,2.314241254980824,0,6,0,14.12223909845647,0,1,2,2019,9,0,2,2,1,0,0,.6328156168533916,.6328156168533916,0,0,0,0,0,1,1,0,2.879396133196809,0,47.15,56.66,57.16,56.15,8.333333333333334,1,1,0,0,2,6,5,1,850.4,-37776.73444596592,0,191159.3675205487,126064.5050809576,3816.519455059873 -10771,13264,24092,24093,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.574403907335353,6.51815068345205,52,-4,-34.77860708344392,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.454423897036843,4.694859354122563,55.53,51.55,47.29,52.71,10,1,1,0,0,0,5,2,1,2404.5,507150.7584349174,230646.7670296414,131660.1758449983,0,8216.38895570979 -10771,13264,24093,24092,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.927195660619152,7.186290504146607,52,4,-26.48425215857784,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.276449777132118,7.039520377969537,47.29,52.71,55.53,51.55,8.333333333333334,1,1,0,0,0,5,2,1,2404.5,507150.7584349174,230646.7670296414,131660.1758449983,0,8216.38895570979 -10772,13265,24094,24097,-9,-9,1,0,48,0,3,0,2,2,-9,0,4,7.803732606061129,7.738813151373503,0,12,-7,-78.49315590431983,0,2,2,2019,7,0,33,33,1,0,0,8.398559898526701,8.398559898526701,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,54,8.333333333333334,1,1,0,0,9,10,3,0,668.6,361812.4367103936,-3347.067828070486,305560.1562152736,23801.91757247363,2839.376427373586 -10772,13265,24095,-9,24094,24097,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.5608508295524,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,668.6,361812.4367103936,-3347.067828070486,305560.1562152736,23801.91757247363,2839.376427373586 -10772,13265,24096,-9,24094,24097,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.447661320559,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,668.6,361812.4367103936,-3347.067828070486,305560.1562152736,23801.91757247363,2839.376427373586 -10772,13265,24097,24094,-9,-9,1,1,55,0,3,0,2,2,-9,0,4,8.098913108160071,8.17934978624643,0,12,7,-47.88997700634475,0,3,3,2019,9,0,55,50,1,1,0,7.231014324235375,7.231014324235375,0,0,0,0,0,1,1,0,3.599895377267865,0,53,54,57.16,56.15,8,1,1,0,0,1,10,3,0,668.6,361812.4367103936,-3347.067828070486,305560.1562152736,23801.91757247363,2839.376427373586 -10772,13265,24098,-9,24094,24097,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.107566024251,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,668.6,361812.4367103936,-3347.067828070486,305560.1562152736,23801.91757247363,2839.376427373586 -10773,13266,24099,24100,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,6.822396532563682,6.950427828768901,4.525523495694628,23,4,31.10537243809826,0,3,2,2019,15,4,6,20,1,4,0,15.5905502955446,15.5905502955446,0,0,0,0,0,1,1,0,4.904592398364028,4.616262974210272,52,54.51,57.06,57.76,10,1,1,0,0,7,2,4,1,809,248139.6682499727,0,326782.313414294,43459.43140770764,2750.84674121943 -10773,13266,24100,24099,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.529378292697677,8.373555846588536,0,23,-4,-14.96247505008041,0,2,2,2019,8,0,37,40,1,0,0,14.09974745199293,14.09974745199293,0,0,0,0,7,1,1,0,4.110593227906995,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,9,2,4,1,809,248139.6682499727,0,326782.313414294,43459.43140770764,2750.84674121943 -10774,13267,24101,24102,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.907399906034048,6.650172662667939,6,13,65.8820058083782,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.015876436066455,49.35,59.64,48.28,60.18,8.333333333333334,1,1,0,0,7,12,4,1,394,210625.6507875507,148262.2009307499,93777.3136296978,1268.807732080866,1603.030003463575 -10774,13267,24102,24101,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.909469009351263,7.769620395009428,0,6,-13,34.3584740469926,0,3,3,2019,8,0,43,42,1,0,0,7.218926242067598,7.218926242067598,0,0,0,0,0,0,0,0,1.294297247322867,0,48.28,60.18,49.35,59.64,8.333333333333334,1,1,0,0,7,12,4,1,394,210625.6507875507,148262.2009307499,93777.3136296978,1268.807732080866,1603.030003463575 -10775,13268,24103,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.2220198919518,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,7.106084759362855,13.04725375321694,70.06186543858985,0,1,1,0,0,0,58.23,33.72,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,193,-149003.4153323959,0,0,0,1364.50540641906 -10776,13269,24104,24105,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,36,-2,83.6704605307428,0,-9,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,60.12,54.8,1.666666666666667,1,1,0,0,3,6,3,0,632.5,13060.92751589749,10968.8173693836,0,0,1728.016626594519 -10776,13269,24105,24104,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.135921817187093,7.967477773903363,5.827430206081105,36,2,121.4193345404287,0,-9,-9,2019,6,0,48,48,1,0,0,6.436181865211015,6.436181865211015,0,0,0,0,14.5,1,1,0,0,6.297316023209419,60.12,54.8,30.6,18.53,10,1,1,0,0,8,6,3,0,632.5,13060.92751589749,10968.8173693836,0,0,1728.016626594519 -10777,13270,24106,24107,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.606936092098614,8.643895824659737,0,10,2,54.40256524143203,0,2,2,2019,8,0,48,48,1,0,0,13.55124784575417,13.55124784575417,0,0,0,0,0,1,1,0,0,0,53.47,52.37,57.06,57.76,8.333333333333334,1,1,0,0,9,4,5,1,554.6666666666666,356813.1170139294,118978.3107951319,31172.55736810334,19719.87107177603,5204.560936095298 -10777,13270,24107,24106,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.80549605392758,8.861798863478038,0,10,-2,18.20772258094332,0,2,2,2019,9,0,40,40,1,0,0,16.39877307084292,16.39877307084292,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.47,52.37,8.333333333333334,1,1,0,0,9,4,5,1,554.6666666666666,356813.1170139294,118978.3107951319,31172.55736810334,19719.87107177603,5204.560936095298 -10777,13270,24108,-9,24107,24106,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.8632110096019,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,554.6666666666666,356813.1170139294,118978.3107951319,31172.55736810334,19719.87107177603,5204.560936095298 -10778,13271,24109,24110,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,7.603793498053653,7.35627270717704,0,3,4,86.78676714511904,0,2,-9,2019,9,1,25,38,1,1,0,7.952848362023168,7.952848362023168,0,0,0,0,0,1,1,0,0,0,44.78,56.37,54.2,57.49,8.333333333333334,1,1,0,0,9,11,4,1,1653.666666666667,114635.6572568424,140356.3310896977,0,0,2806.015149450191 -10778,13271,24110,24109,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.746334836027504,8.784607902929892,0,3,-4,87.6692247572705,-9,-9,-9,2019,8,0,50,0,1,0,0,14.90817886860464,14.90817886860464,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.78,56.37,8.333333333333334,1,1,0,0,10,11,4,1,1653.666666666667,114635.6572568424,140356.3310896977,0,0,2806.015149450191 -10778,13271,24111,-9,24109,24110,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-915.9218841524514,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1653.666666666667,114635.6572568424,140356.3310896977,0,0,2806.015149450191 -10779,13272,24112,-9,24115,24114,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.790774639631,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1076.5,-38061.50061247863,0,0,0,2225.796672189873 -10779,13272,24113,-9,24115,24114,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.490580624308,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1076.5,-38061.50061247863,0,0,0,2225.796672189873 -10779,13272,24114,24115,-9,-9,1,1,33,1,2,0,2,2,0,1,3,0,0,0,4,2,-12.0701634775174,-9,-9,-9,2019,28,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.31,52.52,6.59,58.52,1.666666666666667,1,1,0,0,0,7,2,0,1076.5,-38061.50061247863,0,0,0,2225.796672189873 -10779,13272,24115,24114,-9,-9,1,0,31,1,2,0,1,1,-9,0,2,6.738427658698208,6.841280271068149,0,4,-2,-26.35777373733892,0,2,1,2019,26,10,12,16,1,10,0,7.176244386268613,7.176244386268613,0,0,0,0,2,1,1,0,0,0,6.59,58.52,21.31,52.52,8.333333333333334,1,1,0,0,4,7,2,0,1076.5,-38061.50061247863,0,0,0,2225.796672189873 -10780,13273,24116,-9,24118,24119,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.538786556045,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,719.5,1245874.106441807,571063.8548385239,471237.2625743757,0,5416.918172701 -10780,13273,24117,-9,24118,24119,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.228069521078,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,719.5,1245874.106441807,571063.8548385239,471237.2625743757,0,5416.918172701 -10780,13273,24118,24119,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.822380871740425,8.901269917723791,0,11,-8,76.38535780058524,0,1,2,2019,13,2,40,43,1,2,0,18.98779012321173,18.98779012321173,0,0,0,0,0,1,1,0,0,0,45.75,62.87,48.28,60.18,8.333333333333334,1,1,0,0,11,2,5,1,719.5,1245874.106441807,571063.8548385239,471237.2625743757,0,5416.918172701 -10780,13273,24119,24118,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.186512244853057,8.888339393667463,0,11,8,22.04844113910832,0,2,3,2019,7,0,45,40,1,0,0,17.02767814581242,17.02767814581242,0,0,0,0,0,1,1,0,7.703091682123358,0,48.28,60.18,45.75,62.87,8.333333333333334,1,1,0,0,13,2,5,1,719.5,1245874.106441807,571063.8548385239,471237.2625743757,0,5416.918172701 -10781,13274,24120,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.634120756902108,8.559087059035123,0,0,0,-1132.949739803703,0,-9,-9,2019,13,0,70,0,1,3,0,10.47350077143793,10.47350077143793,0,0,0,0,14.5,1,1,0,5.386935948060379,0,46,39,-9,-9,5,1,1,0,0,11,9,5,1,487,984281.6171700237,819154.6353637856,0,0,1884.341900321666 -10782,13275,24121,24122,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.205052473155343,9.286227863810609,0,31,1,19.26022008128758,0,2,2,2019,11,0,50,40,1,0,0,22.47933920394303,22.47933920394303,0,0,0,0,0,0,0,0,3.520383167384681,0,43.42,62.33,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,559.5,2828027.959350562,2345337.794045632,336519.7793862614,35719.71858147044,3395.820861409045 -10782,13275,24122,24121,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,31,-1,-20.70191687097521,0,1,3,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,3.110095041330653,0,57.06,57.76,43.42,62.33,8.333333333333334,1,1,0,0,9,2,5,1,559.5,2828027.959350562,2345337.794045632,336519.7793862614,35719.71858147044,3395.820861409045 -10783,13276,24123,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.789002912166719,7.750490355349314,0,0,0,-932.6675450231123,0,3,-9,2019,10,0,30,60,1,0,0,9.369375246273133,9.369375246273133,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,2081,-82508.54305764705,120029.3070969195,0,0,1135.389683852586 -10784,13277,24124,-9,24127,24125,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.508026284927,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,902.75,368967.2762186766,309667.8140759497,98807.62395432399,17413.38610081617,4321.276520195213 -10784,13277,24125,24127,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.778721477473169,8.9807368386387,0,6,0,41.06295373876007,0,1,1,2019,10,1,50,55,1,1,0,17.86778591278068,17.86778591278068,0,0,0,0,0,1,1,0,2.728087099636286,0,46.44,59.62,50.6,53.68,8.333333333333334,1,1,0,0,7,12,5,1,902.75,368967.2762186766,309667.8140759497,98807.62395432399,17413.38610081617,4321.276520195213 -10784,13277,24126,-9,24127,24125,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.235358223305,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,902.75,368967.2762186766,309667.8140759497,98807.62395432399,17413.38610081617,4321.276520195213 -10784,13277,24127,24125,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.211586886837734,7.220370689125061,0,6,0,84.43408942356159,0,2,1,2019,11,0,15,15,1,0,0,10.34501918152229,10.34501918152229,0,0,0,0,0,1,1,0,1.26413930203716,0,50.6,53.68,46.44,59.62,8.333333333333334,1,1,0,0,7,12,5,1,902.75,368967.2762186766,309667.8140759497,98807.62395432399,17413.38610081617,4321.276520195213 -10785,13278,24128,-9,24129,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-871.6635872859505,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,339,133185.5602671705,95207.8307881081,180511.506656091,28043.97866519466,1278.211543741145 -10785,13278,24129,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.006679657101035,8.074008106731583,0,0,0,-1057.711716707621,0,2,2,2019,9,0,37,30,1,0,0,9.525341921766604,9.525341921766604,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,339,133185.5602671705,95207.8307881081,180511.506656091,28043.97866519466,1278.211543741145 -10786,13279,24130,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-956.178739081247,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,7.060778221590387,0,0,1,1,0,0,0,42.68,14.53,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,5298,12518.47893394994,0,137531.2008755703,0,1322.728126912531 -10787,13280,24131,24133,-9,-9,1,1,53,0,2,0,3,3,-9,0,2,8.122774181887976,8.28180727399803,0,11,11,-83.41659222719466,0,-9,-9,2019,8,0,40,40,1,0,0,13.57616002400142,13.57616002400142,0,0,0,0,0,1,1,0,0,0,52.87,35.57,46.71,42.03,1.666666666666667,2,3,0,0,11,8,3,1,558.5,1219922.600123583,-2548.315191116515,1491948.084386211,381185.7176262224,2776.995938048797 -10787,13280,24132,-9,24133,24131,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.148991756215,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,558.5,1219922.600123583,-2548.315191116515,1491948.084386211,381185.7176262224,2776.995938048797 -10787,13280,24133,24131,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.587027917845188,8.01528214344887,0,11,-11,15.32704828793311,0,-9,-9,2019,13,2,8,28,1,2,0,32.26087852148393,32.26087852148393,0,0,0,0,0,1,1,0,6.235299213116586,0,46.71,42.03,52.87,35.57,8.333333333333334,2,3,0,0,4,8,3,1,558.5,1219922.600123583,-2548.315191116515,1491948.084386211,381185.7176262224,2776.995938048797 -10787,13280,24134,-9,24133,24131,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-980.7362458713266,-9,1,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,2,3,1,0,0,8,3,1,558.5,1219922.600123583,-2548.315191116515,1491948.084386211,381185.7176262224,2776.995938048797 -10787,13281,24135,-9,24133,24131,1,1,24,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1057.205144644874,0,1,3,2019,10,1,0,28,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,2,3,1,0,1,8,1,1,468,0,0,0,0,0 -10788,13282,24136,24137,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,9.506760881322764,9.775556185224506,5.700675738898298,31,0,-167.0761369460037,0,1,1,2019,7,0,43,40,1,0,0,41.60389918815424,41.60389918815424,0,0,0,0,0,0,0,0,6.483337818586005,6.089608922675546,50.83,56.38,65.95,45.49,8.333333333333334,1,1,0,0,11,8,5,1,510.5,2626263.486848938,1414226.70008,141493.9538931282,0,15457.95463416835 -10788,13282,24137,24136,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.525242424815652,9.471651734714902,7.746506576292139,3,0,-31.21194390754766,0,-9,-9,2019,6,0,35,30,1,0,0,47.70229429773141,47.70229429773141,0,0,0,0,0,0,0,0,8.920172973866347,7.566779134023639,65.95,45.49,50.83,56.38,8.333333333333334,1,1,0,0,11,8,5,1,510.5,2626263.486848938,1414226.70008,141493.9538931282,0,15457.95463416835 -10789,13283,24138,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.084577806305042,7.946240836129325,0,0,0,-1105.312779884423,0,3,3,2019,9,0,30,30,1,0,0,10.85071030456675,10.85071030456675,0,0,0,0,0,1,1,0,2.082961263819345,0,46.8,42.02,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,652,144172.5181459011,19411.05739001773,264549.1424365662,0,1386.263926150262 -10789,13284,24139,-9,24138,-9,1,0,24,0,0,0,2,2,-9,0,3,7.962372858335883,7.899468675031948,0,0,0,-871.498731161253,0,2,2,2019,18,6,37,36,1,6,1,10.26757159060389,10.26757159060389,0,0,0,0,0,1,1,0,0,0,33.82,53.21,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,3819,-23122.65584812905,0,0,0,446.6158866066123 -10790,13285,24140,-9,24141,24142,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.8997164485475,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,614.25,166971.028759025,105037.279605763,310878.183005787,191161.3978689794,3001.369464081066 -10790,13285,24141,24142,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.43484315078002,8.665229997500711,0,8,-4,-138.109321482142,0,3,1,2019,21,7,42,44,1,7,0,12.04687508593133,12.04687508593133,0,0,0,0,0,1,1,0,0,0,38.15,49.03,39.15,41.42,3.333333333333333,2,3,0,0,8,8,4,1,614.25,166971.028759025,105037.279605763,310878.183005787,191161.3978689794,3001.369464081066 -10790,13285,24142,24141,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.847281438713553,7.917522101021089,0,21,4,64.62705364963499,0,2,2,2019,15,3,35,7,1,3,0,6.526923751311147,6.526923751311147,0,0,0,0,0,1,1,0,0,0,39.15,41.42,38.15,49.03,3.333333333333333,2,3,0,0,11,8,4,1,614.25,166971.028759025,105037.279605763,310878.183005787,191161.3978689794,3001.369464081066 -10790,13285,24143,-9,24141,24142,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.320340128335,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,1,614.25,166971.028759025,105037.279605763,310878.183005787,191161.3978689794,3001.369464081066 -10791,13286,24144,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,3.523044104621726,3.507863910492317,0,0,-1042.582719062398,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.472187968316968,48.08,48.13,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,128,220280.9819319098,30986.98858412231,110051.9368589118,0,757.2076096775506 -10792,13287,24145,24146,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-1,-42.45548703718941,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,59.15,49.67,8.333333333333334,1,1,0,0,4,12,3,1,355,1483903.203090412,1165297.980701971,268715.0728112927,0,2553.518718988096 -10792,13287,24146,24145,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.990942763941814,8.114281587512146,9,1,-69.66458897364356,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.008488835518865,59.15,49.67,61.28,46.17,8.333333333333334,1,1,0,0,10,12,3,1,355,1483903.203090412,1165297.980701971,268715.0728112927,0,2553.518718988096 -10793,13288,24147,24148,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.484278657449118,7.552745678113775,34,0,-5.226031667724815,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.359118455912109,7.331139248554686,60.02,56.42,54.2,57.49,10,1,1,0,0,0,9,3,1,695,1579300.244324981,387943.4617235266,549616.5032412568,0,4473.095822377414 -10793,13288,24148,24147,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.196173309108795,7.137438235274531,34,0,25.82111593488994,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.167568820513579,7.216828317194436,54.2,57.49,60.02,56.42,10,1,1,0,0,0,9,3,1,695,1579300.244324981,387943.4617235266,549616.5032412568,0,4473.095822377414 -10794,13289,24149,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-997.9234503052755,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.28,20.7,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,304,67871.13030227629,0,0,0,693.771005285198 -10795,13290,24150,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.519361878119103,8.61090377762358,0,0,0,-885.6052216598586,0,2,-9,2019,6,0,38,38,1,0,0,14.69505860124282,14.69505860124282,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,151,521158.9930782642,109911.0503282296,393761.8386917904,116787.4962142061,2209.496909767808 -10795,13291,24151,-9,24150,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1100.563193235257,0,2,-9,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6,1,1,1,0,0,9,1,1,428,248148.4286252139,0,0,0,0 -10796,13292,24152,-9,24154,24155,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.7962789738903,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,1,0,676.25,25310.98505513944,0,0,0,1784.960881369171 -10796,13292,24153,-9,24154,24155,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.705951249154,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,676.25,25310.98505513944,0,0,0,1784.960881369171 -10796,13292,24154,24155,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,1,-2,0,-9,-9,-9,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.51,41.64,37.5,51.04,3.333333333333333,1,1,0,1,0,10,1,0,676.25,25310.98505513944,0,0,0,1784.960881369171 -10796,13292,24155,24154,-9,-9,1,1,35,0,2,0,3,3,-9,0,3,0,0,0,1,2,0,-9,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.5,51.04,18.51,41.64,6.666666666666667,1,1,1,0,0,10,1,0,676.25,25310.98505513944,0,0,0,1784.960881369171 -10797,13293,24156,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1011.92915489154,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,3.003282029116147,0,30.22451188167307,27,1,1,0,0,0,27.38,28.27,-9,-9,0,1,1,0,0,0,12,1,0,1308,-149849.637675959,-17062.85459282102,0,0,2495.207952983646 -10798,13294,24157,-9,-9,-9,1,0,35,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1010.253327717273,0,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.25,53.93,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,637.3333333333334,-39646.71390064587,0,0,0,1674.824325235704 -10798,13294,24158,-9,24157,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.830085294324,-9,3,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,10,1,1,0,0,0,5,1,0,637.3333333333334,-39646.71390064587,0,0,0,1674.824325235704 -10798,13294,24159,-9,24157,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.2271087158668,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,637.3333333333334,-39646.71390064587,0,0,0,1674.824325235704 -10799,13295,24160,24161,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.737137908018927,7.599272904430814,60,-1,-18.16261413209578,0,3,-9,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.637358761022528,7.626331991123271,47.83,32.89,56.11,36.37,1.666666666666667,1,1,0,0,0,2,3,1,723,417710.6014218265,350990.2485993109,156890.6778872302,0,2697.192090820646 -10799,13295,24161,24160,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.036975102633944,6.910701402290474,60,1,-66.99230353301817,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.545804932870145,7.08598224803218,56.11,36.37,47.83,32.89,8.333333333333334,1,1,0,0,0,2,3,1,723,417710.6014218265,350990.2485993109,156890.6778872302,0,2697.192090820646 -10800,13296,24162,-9,24165,24163,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.819790540701,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,739.75,298953.1350148995,130819.3329367585,149834.007320307,0,2323.857561090829 -10800,13296,24163,24165,-9,-9,1,1,34,2,2,0,1,1,1,0,5,8.109014710212991,8.203196950043035,0,7,2,72.61291499682143,-9,3,2,2019,12,0,40,0,1,0,0,10.64677931056604,10.64677931056604,0,0,0,0,0,1,1,0,0,0,37.45,58.7,41.95,57.9,6.666666666666667,1,1,0,0,4,12,3,0,739.75,298953.1350148995,130819.3329367585,149834.007320307,0,2323.857561090829 -10800,13296,24164,-9,24165,24163,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-953.2366887865148,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,739.75,298953.1350148995,130819.3329367585,149834.007320307,0,2323.857561090829 -10800,13296,24165,24163,-9,-9,1,0,32,2,2,0,2,2,1,0,4,0,0,0,7,-2,-53.67692143940171,-9,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.95,57.9,37.45,58.7,8.333333333333334,1,1,0,0,0,12,3,0,739.75,298953.1350148995,130819.3329367585,149834.007320307,0,2323.857561090829 -10801,13297,24166,24167,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,7.874904794764628,7.489511561597389,52,2,6.216251183929529,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.407295361185565,7.692946615965579,62.39,56.71,57.16,56.15,10,1,1,0,0,0,5,3,1,1223.5,1309339.267995692,472835.3045211885,428074.3383961452,0,2876.260426523311 -10801,13297,24167,24166,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,6.74765801217375,6.429632998705325,52,-2,10.3354811533134,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.515247677441335,6.343592200900019,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,5,3,1,1223.5,1309339.267995692,472835.3045211885,428074.3383961452,0,2876.260426523311 -10802,13298,24168,24169,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.424011849863227,8.524996024923068,0,4,6,14.32196616456879,-9,2,1,2019,13,1,35,0,1,1,0,12.63984321504681,12.63984321504681,0,0,0,0,0,0,0,0,0,0,44.17,49.99,28.88,53,5,1,1,0,1,12,7,4,1,840,986028.8686509117,302071.4965294789,630086.2472340716,15631.10447701798,2320.478151541447 -10802,13298,24169,24168,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.185211846124503,7.214594871910574,0,4,-6,-54.51022459101074,-9,2,1,2019,21,9,20,0,1,9,0,7.172489424839929,7.172489424839929,0,0,0,0,0,0,0,0,0,0,28.88,53,44.17,49.99,3.333333333333333,1,1,0,1,11,7,4,1,840,986028.8686509117,302071.4965294789,630086.2472340716,15631.10447701798,2320.478151541447 -10802,13298,24170,-9,24169,24168,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.634365357837,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,840,986028.8686509117,302071.4965294789,630086.2472340716,15631.10447701798,2320.478151541447 -10803,13299,24171,24173,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.393358766767663,7.578983490272312,0,24,3,-69.43740840952799,0,3,2,2019,12,3,35,55,1,3,0,4.773120854060056,4.773120854060056,0,0,0,0,0,1,1,0,0,0,43.22,52.08,47.55,48.59,6.666666666666667,2,3,0,1,9,12,5,1,412.3333333333333,332162.5585045715,143058.5608476666,208727.1231294918,0,4171.69789365917 -10803,13299,24172,-9,24171,24173,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.530483014714,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,5,1,412.3333333333333,332162.5585045715,143058.5608476666,208727.1231294918,0,4171.69789365917 -10803,13299,24173,24171,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.184379151247441,9.016077085589426,0,24,-3,-55.08646382397679,0,2,1,2019,9,0,35,40,1,0,0,35.09397055093036,35.09397055093036,0,0,0,0,0,1,1,0,0,0,47.55,48.59,43.22,52.08,8.333333333333334,1,1,0,0,9,12,5,1,412.3333333333333,332162.5585045715,143058.5608476666,208727.1231294918,0,4171.69789365917 -10804,13300,24174,-9,24177,24176,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.0806477418371,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,851.5,122130.7513117122,124179.9951457385,0,0,3313.337330290134 -10804,13300,24175,-9,24177,24176,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.4818409736098,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,851.5,122130.7513117122,124179.9951457385,0,0,3313.337330290134 -10804,13300,24176,24177,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,7.316843890763701,7.304027285683992,0,13,7,1.987768056489725,0,2,2,2019,9,0,26,25,1,0,0,6.507964216074601,6.507964216074601,0,0,0,0,0,1,1,0,0,0,57.73,54.53,54.2,57.49,8.333333333333334,1,1,0,0,8,7,3,1,851.5,122130.7513117122,124179.9951457385,0,0,3313.337330290134 -10804,13300,24177,24176,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.308617488243941,8.254659634387503,0,14,-7,175.8045999660283,0,2,2,2019,8,0,25,29,1,0,0,14.83696274190826,14.83696274190826,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,8,7,3,1,851.5,122130.7513117122,124179.9951457385,0,0,3313.337330290134 -10805,13301,24178,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.8849686527581,7.568572955556702,0,0,-814.913356774488,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.023054331575731,8.017701535589888,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,526,360836.5681983997,281378.7051893644,122562.3685850944,54104.53293170038,1885.57748712223 -10806,13302,24179,24180,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.041201639846083,8.345155532830651,6,4,25.31534014180642,0,2,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.052434935447083,52.16,48.82,46.84,58.02,8.333333333333334,1,1,0,0,2,4,4,1,2454,1793810.473304167,1333656.020972222,205514.3266226319,0,3731.750407820755 -10806,13302,24180,24179,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.053483425579678,7.757317447399848,7.014468691708375,6,-4,35.62254709772309,0,-9,-9,2019,10,0,5,15,1,0,0,25.37565320206603,25.37565320206603,0,0,0,0,0,1,1,0,0,6.611808195959158,46.84,58.02,52.16,48.82,8.333333333333334,1,1,0,0,7,4,4,1,2454,1793810.473304167,1333656.020972222,205514.3266226319,0,3731.750407820755 -10807,13303,24181,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1075.758781655571,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,495,0,0,0,0,925.8475202411771 -10808,13304,24182,24183,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,6.966344617331617,7.100836380237719,4.062940423927028,6,10,-63.80440047776881,0,-9,2,2019,8,0,12,15,1,0,0,9.479042437762164,9.479042437762164,0,0,0,0,0,1,1,0,3.859985503261075,4.063104469045052,58.3,52.91,50,47,8.333333333333334,1,1,0,0,8,2,3,1,463,551498.0558364401,381205.6522887461,86649.45987729088,0,2099.92165992762 -10808,13304,24183,24182,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.740646259039272,7.780691089294319,0,6,-10,27.53404776815535,0,3,2,2019,11,0,17,18,1,2,0,15.13052239735081,15.13052239735081,0,0,0,0,0,1,1,0,0,0,50,47,58.3,52.91,7,1,1,0,0,1,2,3,1,463,551498.0558364401,381205.6522887461,86649.45987729088,0,2099.92165992762 -10809,13305,24184,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.12918964197234,5.112683509727207,0,0,-1022.438900835113,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.98673924258895,5.087352810496248,59.07,32.32,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,955,365962.5665734278,-267.5185279505276,229727.1780609116,0,1117.878484573726 -10810,13306,24185,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.913466898423184,8.541087941150291,0,0,0,-996.961455801555,0,1,2,2019,16,5,35,35,1,5,0,23.44060705748484,23.44060705748484,0,0,0,0,0,0,0,0,4.161383990295933,0,37.23,59.61,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,381,91801.39353976038,112703.1669989836,0,0,2223.242896952235 -10810,13307,24186,-9,24185,-9,1,0,29,0,0,0,1,1,-9,0,4,8.57727307503729,8.99919384530757,0,0,0,-925.5547406610506,0,1,-9,2019,18,7,30,25,1,7,1,23.59489670680817,23.59489670680817,0,0,0,0,0,0,0,0,.9463658896999936,0,23.47,63.51,-9,-9,3.333333333333333,1,1,0,0,5,8,5,1,2881,-145385.7070118,-161881.6055191554,0,0,2364.299442456461 -10811,13308,24187,24188,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.639000310044041,7.554898265217519,0,20,-1,-46.4658395569915,0,-9,-9,2019,14,3,27,27,1,3,0,11.36432850508343,11.36432850508343,0,0,0,0,0,1,1,0,0,0,42,42.91,54.79,55.86,8.333333333333334,1,1,0,0,10,12,4,1,1056,315814.3650060169,39089.35569530392,177523.7645322657,0,2760.090286225052 -10811,13308,24188,24187,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.130326709723885,8.387584486976623,0,5,1,60.1228191000811,0,-9,-9,2019,12,0,40,40,1,0,0,10.97828549183069,10.97828549183069,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42,42.91,6.666666666666667,1,1,0,0,8,12,4,1,1056,315814.3650060169,39089.35569530392,177523.7645322657,0,2760.090286225052 -10812,13309,24189,24193,-9,-9,1,0,38,0,3,0,1,1,-9,0,1,8.647198124423857,8.838923079077183,0,7,2,6.248481813714613,0,2,1,2019,24,12,35,38,1,12,0,20.35942608909995,20.35942608909995,0,0,0,0,0,1,1,0,0,0,31.54,38.7,50.11,54.04,3.333333333333333,1,1,0,0,8,12,4,1,490.6,58531.62551735227,0,349755.9463223478,302775.1855588058,4244.025510064241 -10812,13309,24190,-9,24189,24193,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.901669733959,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,490.6,58531.62551735227,0,349755.9463223478,302775.1855588058,4244.025510064241 -10812,13309,24191,-9,24189,24193,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.50887690646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,490.6,58531.62551735227,0,349755.9463223478,302775.1855588058,4244.025510064241 -10812,13309,24192,-9,24189,24193,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.8781678577845,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,490.6,58531.62551735227,0,349755.9463223478,302775.1855588058,4244.025510064241 -10812,13309,24193,24189,-9,-9,1,1,36,0,3,0,1,1,-9,1,4,8.518058336398786,8.274190593681954,0,7,-2,-105.3203093690377,0,1,-9,2019,12,0,41,41,1,0,0,17.05443757309645,17.05443757309645,0,0,0,0,0,1,1,0,0,0,50.11,54.04,31.54,38.7,8.333333333333334,1,1,0,0,8,12,4,1,490.6,58531.62551735227,0,349755.9463223478,302775.1855588058,4244.025510064241 -10813,13310,24194,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1017.653688002641,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.97,33.08,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,426,158269.2334911735,0,0,0,1247.205905942231 -10814,13311,24195,24198,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.61904481690754,7.709208512143879,0,7,-1,-45.32612325653295,-9,3,-9,2019,13,1,28,0,1,1,0,7.921100625488492,7.921100625488492,0,0,0,0,0,1,1,0,0,0,31.61,45.13,34.44,48.18,5,1,1,0,0,11,11,4,1,825.5,64358.91291952327,28352.00400320334,0,0,3219.352884651816 -10814,13311,24196,-9,24195,24198,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.1282274983569,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,825.5,64358.91291952327,28352.00400320334,0,0,3219.352884651816 -10814,13311,24197,-9,24195,24198,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.570939024748,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,825.5,64358.91291952327,28352.00400320334,0,0,3219.352884651816 -10814,13311,24198,24195,-9,-9,1,1,31,1,2,0,2,2,-9,0,2,8.423489655203211,8.240582395769742,0,7,1,88.30628073902061,0,-9,-9,2019,24,11,40,40,1,11,0,14.46220035859534,14.46220035859534,0,0,0,0,0,1,1,0,0,0,34.44,48.18,31.61,45.13,3.333333333333333,1,1,0,0,8,11,4,1,825.5,64358.91291952327,28352.00400320334,0,0,3219.352884651816 -10815,13312,24199,24200,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.356513659970702,8.42131417086223,0,27,-1,-85.68904536298292,-9,3,3,2019,11,0,30,0,1,0,0,15.63997647797989,15.63997647797989,0,0,0,0,0,0,0,0,5.949686845868654,0,61.24,27.65,38.51,59.43,6.666666666666667,1,1,0,0,12,4,5,1,739.5,235975.5094022993,114933.4599383551,281699.3985116587,78144.94290555076,3853.022232612831 -10815,13312,24200,24199,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.907655727957761,7.754866397395983,0,25,1,41.38428791081646,-9,3,3,2019,16,5,32,0,1,5,0,13.06615955954435,13.06615955954435,0,0,0,0,2,0,0,0,5.419513884148356,0,38.51,59.43,61.24,27.65,1.666666666666667,1,1,0,0,12,4,5,1,739.5,235975.5094022993,114933.4599383551,281699.3985116587,78144.94290555076,3853.022232612831 -10816,13313,24201,24202,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,6.519562405614236,6.320780552912122,49,-3,94.57200073463306,-9,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,62.3501948158878,0,0,1,1,0,0,6.426859845115414,28.93,34.48,40.47,55.65,6.666666666666667,1,1,0,0,0,13,2,1,474,341896.5261853317,155922.4222069384,68272.97768022798,0,2325.31565672383 -10816,13313,24202,24201,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,1,3,-38.48311528792297,-9,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.47,55.65,28.93,34.48,8.333333333333334,1,1,0,0,0,13,2,1,474,341896.5261853317,155922.4222069384,68272.97768022798,0,2325.31565672383 -10817,13314,24203,24204,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.876776680143935,6.946441391083875,52,-1,49.60009729364955,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.953340553867054,6.823440639008109,43.89,41.87,52.07,51.53,8.333333333333334,1,1,0,0,0,9,2,1,1294.5,175318.0235874557,139699.4022818491,143176.729942812,0,3872.411913157167 -10817,13314,24204,24203,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,2.100674264686266,1.640781166421819,49,1,-8.115415120173612,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.031221046291021,2.08616111130335,52.07,51.53,43.89,41.87,8.333333333333334,1,1,0,0,13,9,2,1,1294.5,175318.0235874557,139699.4022818491,143176.729942812,0,3872.411913157167 -10818,13315,24205,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,8.174989618462687,7.929025430948682,5.904101095218458,0,0,-942.1881297384663,0,2,2,2019,6,0,16,25,1,0,0,17.62803599095944,17.62803599095944,0,0,0,0,0,1,1,0,5.91540986517473,5.813120561473315,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,413,112488.8691473442,147396.3591065021,0,0,2359.554054375894 -10819,13316,24206,-9,24207,24208,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.2208524888189,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,2385.333333333333,463344.4091026796,282017.9423664684,144047.4851989996,148815.7476535203,3226.918436577218 -10819,13316,24207,24208,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.056147797620984,8.99564886989325,0,18,0,-86.52616572623639,0,-9,-9,2019,17,4,31,-9,1,4,0,30.3992983463166,30.3992983463166,0,0,0,0,0,1,1,0,0,0,42.96,48.95,57.06,57.76,5,1,1,0,0,7,7,4,1,2385.333333333333,463344.4091026796,282017.9423664684,144047.4851989996,148815.7476535203,3226.918436577218 -10819,13316,24208,24207,-9,-9,1,1,54,0,1,0,2,2,-9,0,5,7.183709381324985,6.867784514753833,0,18,0,7.451016424192464,0,1,3,2019,7,0,57,55,1,0,0,2.000024396845294,2.000024396845294,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.96,48.95,8.333333333333334,1,1,0,0,9,7,4,1,2385.333333333333,463344.4091026796,282017.9423664684,144047.4851989996,148815.7476535203,3226.918436577218 -10819,13317,24209,-9,24207,24208,1,0,24,0,1,0,1,1,-9,0,4,8.378296212410008,8.574656207666914,0,0,0,-934.3620024786176,0,2,2,2019,9,2,48,45,1,2,1,11.40726870055843,11.40726870055843,0,0,0,0,0,1,1,0,0,0,43.14,61.33,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,648,-114340.5742420619,84222.27301120061,0,0,1803.640995355086 -10820,13318,24210,24211,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.31671220367584,8.323866390536828,28,6,-82.18585055630652,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.207669155911736,8.483772147599193,49.95,56.68,48.23,30.35,8.333333333333334,1,1,0,0,8,9,4,1,470.5,1936755.561539726,233861.3140323018,574785.3638352326,0,7706.594385275334 -10820,13318,24211,24210,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,6.100636546027482,5.923980174760398,27,-6,-129.1082303228921,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,8.512171338706583,6.194817389206571,48.23,30.35,49.95,56.68,8.333333333333334,1,1,0,0,0,9,4,1,470.5,1936755.561539726,233861.3140323018,574785.3638352326,0,7706.594385275334 -10821,13319,24212,24213,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,4.927746403693804,5.171667004887235,56,5,-39.84137037106905,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,6.033257613365767,0,0,1,1,0,5.692790114475571,4.595146814801281,55,45,52,45,8,1,1,0,0,0,4,2,1,456,453727.5232602308,87315.69796314626,263729.0932281229,0,685.4772742348027 -10821,13319,24213,24212,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,56,-5,13.57600294182738,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,4,2,1,456,453727.5232602308,87315.69796314626,263729.0932281229,0,685.4772742348027 -10822,13320,24214,24215,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.737961422888032,8.24058533286658,0,8,-2,-140.682626212846,0,-9,2,2019,24,10,39,39,1,10,0,7.110226792294532,7.110226792294532,0,0,0,0,0,1,1,0,0,0,33.05,43.41,51,56,3.333333333333333,1,1,0,0,10,2,4,0,560,73351.55889122006,14858.20495764847,102408.4035805141,23471.82996799387,2571.218858101941 -10822,13320,24215,24214,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,7.707249647689315,7.724517537194621,0,8,2,-63.07389927629696,0,-9,-9,2019,10,0,39,0,1,1,0,6.17588831626934,6.17588831626934,0,0,0,0,0,1,1,0,0,0,51,56,33.05,43.41,7,1,1,0,0,1,2,4,0,560,73351.55889122006,14858.20495764847,102408.4035805141,23471.82996799387,2571.218858101941 -10822,13320,24216,-9,24214,24215,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1107.409020161783,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,0,560,73351.55889122006,14858.20495764847,102408.4035805141,23471.82996799387,2571.218858101941 -10823,13321,24217,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.56824532423068,8.029788110998499,6.697839228412414,0,0,-908.0070594185393,0,3,3,2019,12,0,31,32,1,0,0,9.413143739061715,9.413143739061715,0,0,0,0,0,1,0,1,6.287258387165714,0,52.22,53.26,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,518.3333333333334,100975.8636237542,17622.58989164076,129086.8645839033,68258.86805769408,2036.363978111654 -10823,13321,24218,-9,24217,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.644181698308,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,518.3333333333334,100975.8636237542,17622.58989164076,129086.8645839033,68258.86805769408,2036.363978111654 -10823,13321,24219,-9,24217,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.702001020096,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,518.3333333333334,100975.8636237542,17622.58989164076,129086.8645839033,68258.86805769408,2036.363978111654 -10824,13322,24220,24221,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.976805823531139,7.704277795430897,0,5,-1,-56.98633277210017,0,2,2,2019,11,0,37,37,1,0,0,7.653309828440325,7.653309828440325,0,0,0,0,0,0,0,0,0,0,48.7,56.22,50.54,62.09,8.333333333333334,1,1,0,0,7,10,5,1,811,60216.59257069339,-19996.12582297487,145394.9907415698,140063.1792976772,3125.067065383202 -10824,13322,24221,24220,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.523926541211356,8.41338302730577,0,5,1,47.45231157706931,0,-9,-9,2019,6,0,54,49,1,0,0,9.645001794481983,9.645001794481983,0,0,0,0,0,0,0,0,0,0,50.54,62.09,48.7,56.22,10,1,1,0,0,6,10,5,1,811,60216.59257069339,-19996.12582297487,145394.9907415698,140063.1792976772,3125.067065383202 -10825,13323,24222,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-953.7407928512993,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,335,-221606.0984202098,110337.917319898,171243.2867933746,0,1353.652935900047 -10826,13324,24223,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,9.577085783405213,9.382640560590568,0,0,0,-984.8451195384511,0,2,2,2019,12,3,50,44,1,3,0,27.81934948012135,27.81934948012135,0,0,0,0,0,0,0,0,0,0,38.91,60.5,-9,-9,3.333333333333333,1,1,0,0,6,8,5,0,2441,386052.6806138982,-36413.32004478173,0,0,3170.532028131378 -10827,13325,24224,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,2,0,0,0,0,0,-946.3309523409118,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.93,54.93,-9,-9,6.666666666666667,1,1,1,0,1,4,1,0,342,-81488.74397856228,0,0,0,316.6487572348127 -10828,13326,24225,24226,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.066142822328233,8.562611537836409,0,29,-5,-18.54923321719389,0,2,3,2019,8,0,14,20,1,0,0,39.19343706874005,39.19343706874005,0,0,0,0,0,0,0,0,0,0,51.81,57.22,54.77,55.87,1.666666666666667,1,1,0,0,7,1,5,1,738,1061980.451293492,946382.4210776624,226160.8523906146,0,6224.000189361139 -10828,13326,24226,24225,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.426884160340421,8.802961893777637,6.684837680209553,29,5,71.30208317472557,0,2,2,2019,8,0,15,10,1,0,0,36.90711244489026,36.90711244489026,0,0,0,0,0,0,0,0,8.88791076481092,6.872835124545394,54.77,55.87,51.81,57.22,8.333333333333334,1,1,0,0,11,1,5,1,738,1061980.451293492,946382.4210776624,226160.8523906146,0,6224.000189361139 -10828,13327,24227,-9,24225,24226,1,0,25,0,0,0,1,1,-9,0,4,8.393883428237233,8.268247237730074,0,0,0,-956.5020782420607,0,2,2,2019,21,9,40,39,1,9,1,11.21732491372639,11.21732491372639,0,0,0,0,0,0,0,0,7.835345904045021,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,1695,51456.06302942678,-58313.25279142261,0,0,2330.693228556335 -10829,13328,24228,24229,-9,-9,1,0,59,0,0,0,2,2,-9,1,4,5.45161316471987,5.555143464408356,0,6,8,-86.25620218778633,0,2,2,2019,13,1,3,0,1,1,0,7.34886016654923,7.34886016654923,0,0,0,0,120,1,1,0,0,0,38.47,49.9,50.91,54.79,6.666666666666667,1,1,0,0,1,6,5,1,1020,875026.5537759156,730380.3509066312,166153.0391957544,8817.1464996381,3728.911324946497 -10829,13328,24229,24228,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.040072680177209,8.756473822812364,0,6,-8,152.8996625230382,0,-9,-9,2019,10,0,65,73,1,0,0,16.38145239506552,16.38145239506552,0,0,0,0,14.5,1,1,0,7.642885627665848,0,50.91,54.79,38.47,49.9,8.333333333333334,1,1,0,0,6,6,5,1,1020,875026.5537759156,730380.3509066312,166153.0391957544,8817.1464996381,3728.911324946497 -10829,13329,24230,-9,24228,24229,1,1,31,0,0,0,1,1,-9,0,3,6.794306591170777,6.782454275766437,0,0,0,-937.6417667547208,0,2,2,2019,24,12,30,38,1,12,1,3.487612428121471,3.487612428121471,0,0,0,0,0,1,1,0,0,0,22.12,64.32000000000001,-9,-9,1.666666666666667,1,1,0,0,4,6,2,1,1036,-68861.86122521137,0,0,0,1204.616122960027 -10829,13330,24231,-9,24228,24229,1,1,19,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1110.380494330842,1,2,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,5.915652751120922,0,35.59,62.44,-9,-9,5,1,1,0,0,0,6,1,1,711,-58391.6499136965,0,0,0,117.8810852486845 -10830,13331,24232,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,5.007009800707396,4.945420878746037,0,0,-949.7658152253908,0,-9,-9,2019,13,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.95502706387583,39.16,36.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,299,-103145.8784886649,-16631.8262571118,0,0,636.4967304379032 -10831,13332,24233,24234,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,7.364150089959861,7.528690981346574,0,10,-2,-30.31949980075131,0,2,2,2019,4,0,40,16,1,0,0,6.408229665308836,6.408229665308836,0,0,0,0,0,0,0,0,0,0,60.3,46.58,55,34.15,8.333333333333334,2,3,0,0,9,8,4,0,475.5,536995.5302559657,215550.1648743548,542082.3057428157,193364.8177258316,1751.138214843511 -10831,13332,24234,24233,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.237795765367569,8.404158220147236,0,2,2,-22.69393727334079,0,2,2,2019,13,1,40,55,1,1,0,11.16505077933019,11.16505077933019,0,0,0,0,0,0,0,0,0,0,55,34.15,60.3,46.58,6.666666666666667,2,3,0,0,9,8,4,0,475.5,536995.5302559657,215550.1648743548,542082.3057428157,193364.8177258316,1751.138214843511 -10832,13333,24235,-9,24236,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.322548484136,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,988,69373.09268791265,0,111168.4303791742,68050.54792750183,1173.607922963719 -10832,13333,24236,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.181486056158483,7.605506455181545,6.415898041088757,0,0,-1136.23827658561,0,2,1,2019,12,0,30,27,1,0,0,6.005515401198378,6.005515401198378,0,0,0,0,0,1,0,1,6.616347896324643,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,988,69373.09268791265,0,111168.4303791742,68050.54792750183,1173.607922963719 -10832,13334,24237,-9,24236,-9,1,1,19,0,1,0,2,2,-9,0,4,7.641583300773912,8.190649062502551,0,0,0,-1090.149944464047,0,2,-9,2019,16,5,37,37,1,5,1,8.747209097742433,8.747209097742433,0,0,0,0,0,1,0,1,0,0,46.16,58.62,-9,-9,5,1,1,0,0,1,4,3,0,430,-258.6856547911075,-155950.4239327021,0,0,1546.026065999892 -10833,13335,24238,24239,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.073244854547785,6.828163827619176,32,-11,25.84640681787847,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.823131156561576,54.96,53.17,54.42,27.11,8.333333333333334,1,1,0,0,0,2,4,1,455,1250344.330880042,533181.5402207477,668956.4186835967,0,3373.169654168279 -10833,13335,24239,24238,-9,-9,1,1,90,0,0,0,1,1,-9,0,2,0,8.289813601223967,8.420580397134328,32,11,-53.0341697488734,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,11.2204509892147,0,0,1,1,0,7.164322929051429,8.263469524348846,54.42,27.11,54.96,53.17,3.333333333333333,1,1,0,0,0,2,4,1,455,1250344.330880042,533181.5402207477,668956.4186835967,0,3373.169654168279 -10834,13336,24240,-9,24242,24241,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.6779203962373,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,0,533.6666666666666,207774.3741000874,125216.6824030763,0,0,3937.210791726746 -10834,13336,24241,24242,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,9.021431312229501,9.035419410208826,0,13,8,77.67010395909283,0,3,3,2019,7,0,38,45,1,0,0,23.72268757932202,23.72268757932202,0,0,0,0,0,1,1,0,0,0,56.58,47.39,59.46,44.28,5,1,1,0,0,10,9,5,0,533.6666666666666,207774.3741000874,125216.6824030763,0,0,3937.210791726746 -10834,13336,24242,24241,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,7.351966716321466,7.441604171057373,0,14,-8,38.6696844062628,0,3,3,2019,4,0,34,6,1,0,0,5.525705774112932,5.525705774112932,0,0,0,0,0,1,1,0,0,0,59.46,44.28,56.58,47.39,0,2,3,0,0,8,9,5,0,533.6666666666666,207774.3741000874,125216.6824030763,0,0,3937.210791726746 -10835,13337,24243,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.255030816985681,6.966771573845969,0,0,-1046.325300906211,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.990715486141948,58.58,37.86,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1431,335722.5603407387,553852.8532497187,0,0,797.2026906263955 -10836,13338,24244,24247,-9,-9,1,1,40,1,3,0,1,1,-9,0,5,9.841358693380453,9.579446557045481,0,13,5,-29.6298810135981,0,3,2,2019,7,0,35,35,1,0,0,54.41244065926765,54.41244065926765,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,2,3,0,0,8,9,5,1,740.6,1812673.754579473,144373.5462209845,877986.4260952765,141809.0495232248,10983.43750832209 -10836,13338,24245,-9,24247,24244,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.562756538312,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,740.6,1812673.754579473,144373.5462209845,877986.4260952765,141809.0495232248,10983.43750832209 -10836,13338,24246,-9,24247,24244,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.30482148634,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,5,1,740.6,1812673.754579473,144373.5462209845,877986.4260952765,141809.0495232248,10983.43750832209 -10836,13338,24247,24244,-9,-9,1,0,35,1,3,0,1,1,-9,0,5,8.911291390791197,8.959951709857558,0,13,-5,-84.94058852405716,0,2,1,2019,7,0,44,20,1,0,0,19.75112824914389,19.75112824914389,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,2,3,0,0,6,9,5,1,740.6,1812673.754579473,144373.5462209845,877986.4260952765,141809.0495232248,10983.43750832209 -10836,13338,24248,-9,24247,24244,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.853985106541,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,5,1,740.6,1812673.754579473,144373.5462209845,877986.4260952765,141809.0495232248,10983.43750832209 -10837,13339,24249,-9,24250,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.5561020392026,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,3137,-97263.46302967241,-35255.92437871684,0,0,756.793034454852 -10837,13339,24250,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,6.938289439475517,7.172476425275263,0,0,0,-1204.159565625696,0,3,3,2019,28,11,16,16,1,11,0,6.475113286419067,6.475113286419067,0,0,0,0,2,1,1,0,0,0,26.33,53.06,-9,-9,0,1,1,0,1,9,12,2,0,3137,-97263.46302967241,-35255.92437871684,0,0,756.793034454852 -10838,13340,24251,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1029.057206339644,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,1,1,0,65,33708.65264796331,0,0,0,775.4292125226676 -10839,13341,24252,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.885164332601355,7.971135843795524,0,0,0,-1028.61502699214,0,2,2,2019,12,0,37,40,1,0,0,8.46465530199033,8.46465530199033,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,10,13,3,1,436,-90383.34544528151,325.2585274638895,0,0,1245.123616871746 -10840,13342,24253,24254,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.812420760548365,7.806727829818116,24,5,28.93857295794473,0,2,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,4.372322769551299,7.683991920668826,42.22,45.38,25.97,54.75,6.666666666666667,1,1,0,0,9,5,4,1,538.5,1142154.140776518,893377.9830096536,221509.9001689284,0,1831.417058253391 -10840,13342,24254,24253,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,7.522178066744618,7.616483819006715,24,-5,-59.5698211011038,0,3,3,2019,13,1,0,12,4,1,0,0,0,0,0,0,0,5.48,0,0,0,4.371011590823788,7.314625813725398,25.97,54.75,42.22,45.38,6.666666666666667,1,1,0,0,8,5,4,1,538.5,1142154.140776518,893377.9830096536,221509.9001689284,0,1831.417058253391 -10840,13343,24255,-9,24254,24253,1,1,32,0,0,0,1,1,-9,0,3,7.743782045753319,7.510175762954223,0,0,0,-999.0312906631553,-9,1,1,2019,6,0,40,0,1,0,0,6.543984873124841,6.543984873124841,0,0,0,0,14.5,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,192,-55329.89815082352,203676.6653594451,0,0,1347.030657047419 -10841,13344,24256,24258,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.979579862556483,8.231413260265679,6.241581891485798,3,-12,112.6571379103163,0,2,2,2019,11,1,35,38,1,1,0,9.683172461073447,9.683172461073447,0,0,0,0,0,1,1,0,6.819789135291609,0,49.58,55.59,64.23,12.88,8.333333333333334,1,1,0,0,9,10,3,1,720.25,232545.0630262695,0,209029.4415810169,16341.73248944685,3284.210205664669 -10841,13344,24257,-9,24256,24258,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-960.1788768792413,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,3,1,720.25,232545.0630262695,0,209029.4415810169,16341.73248944685,3284.210205664669 -10841,13344,24258,24256,-9,-9,1,1,55,0,2,0,2,2,-9,1,1,7.619489248747939,7.657734957637407,0,3,12,77.44806902878848,0,-9,-9,2019,10,0,30,0,1,0,0,8.232046843807742,8.232046843807742,0,0,0,0,0,1,1,0,0,0,64.23,12.88,49.58,55.59,3.333333333333333,1,1,0,0,1,10,3,1,720.25,232545.0630262695,0,209029.4415810169,16341.73248944685,3284.210205664669 -10841,13344,24259,-9,24256,24258,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.240561589576,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,720.25,232545.0630262695,0,209029.4415810169,16341.73248944685,3284.210205664669 -10842,13345,24260,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.894105931475457,7.459569169850575,6.700097827137397,0,0,-1016.884299120838,0,2,2,2019,6,0,27,30,1,0,0,4.210669250337359,4.210669250337359,0,0,0,0,0,1,0,1,6.926833422487117,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,847,116050.4949935754,0,0,0,1593.267347367886 -10842,13346,24261,-9,24260,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1173.986908692533,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,47,59,-9,-9,8.333333333333334,1,1,0,0,11,9,1,1,447,98431.18752940618,0,0,0,0 -10843,13347,24262,24263,-9,-9,1,1,45,1,2,0,3,3,-9,0,4,8.017446006489237,8.340898591704283,0,6,1,98.32091158825111,0,-9,-9,2019,6,0,46,46,1,0,0,8.740886406553294,8.740886406553294,0,0,0,0,0,1,1,0,0,0,50.57,55.02,34.88,34.24,8.333333333333334,1,1,0,0,8,2,4,1,1182.25,209659.985679278,64856.24099096803,148109.6017459559,67575.78512177414,2779.732667086055 -10843,13347,24263,24262,-9,-9,1,0,44,1,2,0,2,2,-9,0,2,7.923876648737701,7.852941672252015,0,6,-1,-23.68029988904699,0,2,3,2019,18,6,32,32,1,6,0,11.7800412306714,11.7800412306714,0,0,0,0,14.5,1,1,0,0,0,34.88,34.24,50.57,55.02,8.333333333333334,1,1,0,0,11,2,4,1,1182.25,209659.985679278,64856.24099096803,148109.6017459559,67575.78512177414,2779.732667086055 -10843,13347,24264,-9,24263,24262,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.4949804364842,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,1182.25,209659.985679278,64856.24099096803,148109.6017459559,67575.78512177414,2779.732667086055 -10843,13347,24265,-9,24263,24262,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.362317184014,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.657051482824718,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,1182.25,209659.985679278,64856.24099096803,148109.6017459559,67575.78512177414,2779.732667086055 -10844,13348,24266,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.162626297873314,7.397448812465091,0,0,0,-993.7943701327472,0,-9,-9,2019,12,0,48,60,1,0,0,3.348286409449091,3.348286409449091,0,0,0,0,0,0,0,0,0,0,43.21,34.36,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,804,7959.164581929781,103465.5316859516,0,0,695.103375038113 -10845,13349,24267,-9,-9,-9,1,1,26,0,0,0,1,1,0,0,4,0,0,0,0,0,-956.1330312821674,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,4,5,1,0,406,-151798.1792715861,0,0,0,0 -10846,13350,24268,-9,24269,24272,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.895868649988,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,1474.8,2732838.910610031,0,1486316.02137601,0,1557.67919842509 -10846,13350,24269,24272,-9,-9,1,0,41,1,3,0,1,1,-9,0,5,7.381498146028584,7.428509710375453,0,3,-2,-63.79275284347175,0,2,2,2019,7,0,5,14,1,0,0,28.6761019341778,28.6761019341778,0,0,0,0,0,1,1,0,1.137150894625264,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,9,2,1,1474.8,2732838.910610031,0,1486316.02137601,0,1557.67919842509 -10846,13350,24270,-9,24269,24272,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1123.123503202117,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,1474.8,2732838.910610031,0,1486316.02137601,0,1557.67919842509 -10846,13350,24271,-9,24269,24272,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.376967098048,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,1474.8,2732838.910610031,0,1486316.02137601,0,1557.67919842509 -10846,13350,24272,24269,-9,-9,1,1,43,1,3,0,1,1,-9,0,4,7.256431775204129,7.303861866458321,0,3,2,-76.33482026830949,0,2,3,2019,9,0,40,40,1,0,0,3.113597714755973,3.113597714755973,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,9,2,1,1474.8,2732838.910610031,0,1486316.02137601,0,1557.67919842509 -10847,13351,24273,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.80059901789589,7.744780815652464,0,0,0,-926.5160070051356,0,3,3,2019,11,0,37,37,1,0,0,6.234725060978251,6.234725060978251,0,0,0,0,0,1,1,0,0,0,53.12,43.26,-9,-9,5,1,1,0,0,11,4,3,1,639,183372.4907046971,65998.64273124559,0,0,3927.475648953934 -10848,13352,24274,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,0,0,0,0,0,-894.0637966234484,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,6.371639966577799,0,49.12,57.28,-9,-9,6.666666666666667,1,1,1,0,6,8,1,0,317,276564.1859920816,8233.035887586739,353406.5776177717,64601.74621168632,842.9886174741757 -10849,13353,24275,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.338213801900709,6.578928742175197,0,0,-1092.791941536609,-9,-9,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,7.114492679650574,0,21.95,67.01000000000001,-9,-9,5,1,1,0,1,2,10,2,0,457,88433.48592561511,0,0,0,590.0019783280056 -10850,13354,24276,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.439717870849883,8.143633682785145,0,0,-981.8195263169109,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.091568744428692,8.238040822811527,45.64,50.52,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,165,798079.7922382946,728565.7114553865,276261.8856884356,0,2164.272128004671 -10851,13355,24277,-9,-9,-9,1,0,38,0,3,0,2,2,-9,1,2,0,0,0,0,0,-1044.079923683869,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,42,1,1,0,0,0,31.79,46.89,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,390,-9786.91525045559,0,0,0,1945.566972072482 -10851,13355,24278,-9,24277,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.504909049578,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,1,0,390,-9786.91525045559,0,0,0,1945.566972072482 -10851,13356,24279,-9,24277,-9,1,0,20,0,3,0,3,3,-9,1,2,0,0,0,0,0,-1036.979754197915,-9,2,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.14,21.5,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,761,39281.79429107021,0,0,0,1035.611091042185 -10852,13357,24280,24281,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,6.849964571476924,7.227762070948952,0,8,-1,14.19013015911116,0,2,3,2019,9,0,16,16,1,0,0,7.59614684599685,7.59614684599685,0,0,0,0,0,1,1,0,0,0,59.15,49.67,53,47,8.333333333333334,1,1,0,0,9,10,3,1,349,454860.9962869586,214984.8022345405,95698.3967717351,0,2029.70365656317 -10852,13357,24281,24280,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.824457165885942,6.20913155212538,8,1,4.578446183446593,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.119338621868311,6.906993969561028,53,47,59.15,49.67,7,1,1,0,0,0,10,3,1,349,454860.9962869586,214984.8022345405,95698.3967717351,0,2029.70365656317 -10853,13358,24282,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.167669831187067,5.633021046190884,0,0,-1006.890014375277,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.713696808282661,5.631496229477078,52.4,47.71,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,212,240278.7930038346,-70708.67007943611,282460.190145939,0,370.6498303430138 -10854,13359,24283,24284,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.575875272162936,8.33570413285875,0,24,-5,81.09247905102185,0,3,3,2019,12,1,38,38,1,1,0,11.14657703659764,11.14657703659764,0,0,0,0,0,1,1,0,0,0,43.12,44.86,56.88,50.89,6.666666666666667,1,1,0,0,9,4,5,1,1297.5,985010.7097935081,786514.2674818845,170019.9614608088,0,3726.296965002415 -10854,13359,24284,24283,-9,-9,1,1,55,0,0,0,2,2,-9,1,3,7.974349317837979,8.104324070641589,0,24,5,-91.26963273821437,0,3,2,2019,7,0,39,39,1,0,0,9.888396073661738,9.888396073661738,0,0,0,0,0,1,1,0,0,0,56.88,50.89,43.12,44.86,6.666666666666667,1,1,0,0,10,4,5,1,1297.5,985010.7097935081,786514.2674818845,170019.9614608088,0,3726.296965002415 -10854,13360,24285,-9,24283,24284,1,0,22,0,0,0,2,2,-9,0,4,7.833998714792078,7.834061296082519,0,0,0,-851.3271587368976,0,2,2,2019,12,1,39,39,1,1,1,7.562673805712413,7.562673805712413,0,0,0,0,0,1,1,0,0,0,51.58,51.9,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,72,-177550.100906362,-106479.055147801,0,0,851.3920855132628 -10855,13361,24286,24287,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.397109901229506,7.265091836490021,57,3,-60.66795880771171,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,2.852080129552773,5.48,1,1,0,0,7.342475913827943,54,46,52,46,8,1,1,0,0,0,11,2,1,1238.5,431659.6284178629,234650.9748797629,137025.4705395966,0,1764.212075571075 -10855,13361,24287,24286,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.253085410731498,6.099286156903817,7,-3,-120.2620111185778,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,11.94502652780992,0,0,1,1,0,0,6.315359286974957,52,46,54,46,8,1,1,0,0,0,11,2,1,1238.5,431659.6284178629,234650.9748797629,137025.4705395966,0,1764.212075571075 -10855,13362,24288,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.895557188998121,7.963746278027806,0,0,0,-1031.644124660956,0,-9,-9,2019,10,0,35,40,1,1,0,8.597277000814493,8.597277000814493,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,11,4,1,1345,129439.1011115742,0,0,0,1697.099183587643 -10856,13363,24289,24290,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,7.542555309371324,8.118597589492374,0,4,-2,-91.14391527577322,0,-9,-9,2019,9,1,32,30,1,1,0,8.118453988373298,8.118453988373298,0,0,0,0,0,1,1,0,0,0,42.93,13.26,57.06,57.76,8.333333333333334,1,1,0,0,10,10,3,1,1351.5,33978.17892625061,0,176888.3457859745,41615.36083776968,1833.771959961232 -10856,13363,24290,24289,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,6.735748481394143,6.807195389113654,0,4,2,-8.760260712257207,0,2,2,2019,7,0,50,50,1,0,0,2.643376326349434,2.643376326349434,0,0,0,0,0,1,1,0,1.199919674671401,0,57.06,57.76,42.93,13.26,8.333333333333334,1,1,0,0,8,10,3,1,1351.5,33978.17892625061,0,176888.3457859745,41615.36083776968,1833.771959961232 -10857,13364,24291,-9,24292,24295,1,1,19,0,3,0,2,2,-9,0,4,7.956463943852247,7.879161622724292,0,0,0,-1056.8959659783,0,2,2,2019,3,0,47,45,1,0,1,7.537349031690298,7.537349031690298,0,0,0,0,0,1,1,0,0,0,51,47.87,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,612,-114988.2829291371,1263.762000279794,0,0,1148.601458446945 -10857,13365,24292,24295,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.829974585284767,7.052678372619622,0,6,-2,14.37231155707854,0,3,2,2019,6,0,10,15,1,0,0,10.66251268500477,10.66251268500477,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.11,26.06,10,1,1,0,0,7,10,4,1,681.2,88582.55379263326,66254.17822130301,144607.9721840845,100306.3813104449,3970.796957910513 -10857,13365,24293,-9,24292,24295,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.258745476707,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,681.2,88582.55379263326,66254.17822130301,144607.9721840845,100306.3813104449,3970.796957910513 -10857,13365,24294,-9,24292,24295,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.0677305315604,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,681.2,88582.55379263326,66254.17822130301,144607.9721840845,100306.3813104449,3970.796957910513 -10857,13365,24295,24292,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.790903034082474,9.052507760273595,0,6,2,174.674104818353,0,2,2,2019,15,4,50,50,1,4,0,13.82256917083064,13.82256917083064,0,0,0,0,0,1,1,0,0,0,55.11,26.06,60.12,54.8,8.333333333333334,1,1,0,0,7,10,4,1,681.2,88582.55379263326,66254.17822130301,144607.9721840845,100306.3813104449,3970.796957910513 -10857,13365,24296,-9,24292,24295,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.432852823,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,681.2,88582.55379263326,66254.17822130301,144607.9721840845,100306.3813104449,3970.796957910513 -10858,13366,24297,-9,24300,24299,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1078.351333244414,-9,3,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52.7,52.89,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,490,98416.63784891054,0,0,0,0 -10858,13367,24298,-9,24300,24299,1,1,30,0,0,0,1,1,-9,0,4,8.05898478212862,7.96049906696258,0,0,0,-929.7671595139068,-9,3,2,2019,10,0,40,0,1,1,1,7.116574739293935,7.116574739293935,0,0,0,0,0,1,1,0,5.096539302475453,0,50,57,-9,-9,7,2,3,0,0,1,8,4,1,110,184099.4760665033,-42129.11427073184,0,0,1339.262191129585 -10858,13368,24299,24300,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,0,0,4,3,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,52,53,8,2,3,1,0,0,8,1,1,579.5,41733.29184532885,0,0,0,1252.450012294481 -10858,13368,24300,24299,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,4,-3,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,54,53,8,2,3,1,0,0,8,1,1,579.5,41733.29184532885,0,0,0,1252.450012294481 -10859,13369,24301,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.4467842979974,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.78,49.92,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1067,244925.757457837,0,273375.0004601329,0,428.4336721332449 -10860,13370,24302,24303,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,8.118458645926777,8.199183349238718,7.149213753924626,8,2,-52.89460057435849,0,3,3,2019,10,2,45,40,1,2,0,7.869352743525726,7.869352743525726,0,0,0,0,14.5,1,1,0,3.814296579541822,7.200477109434635,51.89,26.83,51.64,50.48,5,1,1,0,0,7,12,5,1,382,573379.2053212352,331395.0665300943,156721.078651461,0,4471.220688241746 -10860,13370,24303,24302,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.319458951840401,8.365209369077826,0,8,-2,89.04248581473756,0,2,3,2019,14,4,35,35,1,4,0,15.8102922635627,15.8102922635627,0,0,0,0,7,1,1,0,3.301588418487096,0,51.64,50.48,51.89,26.83,8.333333333333334,1,1,0,0,8,12,5,1,382,573379.2053212352,331395.0665300943,156721.078651461,0,4471.220688241746 -10861,13371,24304,24305,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,2,2,74.07930696027839,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,13.52,38.97,31.68,42.84,3.333333333333333,1,1,0,0,6,2,3,0,566.5,387524.1524072526,146429.8016887991,132533.5317038223,0,1761.684150824782 -10861,13371,24305,24304,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.483058435817566,7.50674965104673,0,2,-2,-54.44461886207732,0,3,2,2019,24,12,25,29,1,12,0,10.07543078090053,10.07543078090053,0,0,0,0,42,1,1,0,0,0,31.68,42.84,13.52,38.97,6.666666666666667,1,1,0,0,10,2,3,0,566.5,387524.1524072526,146429.8016887991,132533.5317038223,0,1761.684150824782 -10862,13372,24306,-9,24309,24310,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.332827073614,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,460.2,1222572.186518188,859342.8882276367,374250.7582832082,5963.706123283499,3831.646502123399 -10862,13372,24307,-9,24309,24310,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.440759029663,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,460.2,1222572.186518188,859342.8882276367,374250.7582832082,5963.706123283499,3831.646502123399 -10862,13372,24308,-9,24309,24310,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.75671779582,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,460.2,1222572.186518188,859342.8882276367,374250.7582832082,5963.706123283499,3831.646502123399 -10862,13372,24309,24310,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.238037453454643,6.879009252808517,0,6,-5,6.484613887627487,0,-9,-9,2019,10,0,33,38,1,0,0,2.879203908545263,2.879203908545263,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,43.52,38.05,8.333333333333334,1,1,0,0,3,9,4,1,460.2,1222572.186518188,859342.8882276367,374250.7582832082,5963.706123283499,3831.646502123399 -10862,13372,24310,24309,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.963278053557932,9.099924186816096,0,6,5,23.10444350555462,0,-9,-9,2019,23,11,40,48,1,11,0,23.38087338476674,23.38087338476674,0,0,0,0,0,1,1,0,0,0,43.52,38.05,54.2,57.49,6.666666666666667,1,1,0,1,8,9,4,1,460.2,1222572.186518188,859342.8882276367,374250.7582832082,5963.706123283499,3831.646502123399 -10862,13373,24311,-9,-9,-9,1,0,79,0,3,0,3,3,-9,0,3,0,6.845267594671227,6.663895368833572,0,0,-1070.041423009209,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,19.55431532039612,0,0,1,1,0,3.912571937234251,6.679115749925946,52,45,-9,-9,8,1,1,0,0,0,9,2,1,803,410729.93487771,104213.6536749086,395111.8765339094,0,870.9467931697802 -10863,13374,24312,-9,24315,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1061.455103134017,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,1,1,585,28311.13969455631,0,34727.74447492274,0,1775.63076264285 -10863,13374,24313,-9,24315,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.656465900561,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,1,1,585,28311.13969455631,0,34727.74447492274,0,1775.63076264285 -10863,13374,24314,-9,24315,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1010.695943681147,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,1,1,585,28311.13969455631,0,34727.74447492274,0,1775.63076264285 -10863,13374,24315,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,3,0,0,0,0,0,-891.7371359970296,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45,51,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,585,28311.13969455631,0,34727.74447492274,0,1775.63076264285 -10864,13375,24316,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1000.684109065111,0,3,3,2019,21,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,42.55,25.21,-9,-9,1.666666666666667,3,4,0,1,0,6,1,0,290,0,0,0,0,1582.977366944223 -10865,13376,24317,24318,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.348321388838222,8.549673831879893,0,28,-6,-55.09478788396054,0,2,2,2019,12,1,45,43,1,1,0,13.32194675958098,13.32194675958098,0,0,0,0,14.5,1,1,0,1.687854304257022,0,36.09,59.23,35.84,61.77,3.333333333333333,1,1,0,0,8,4,5,1,534.5,1104628.923210577,673223.6558200654,379310.7814303404,44229.33586609585,5229.278125934582 -10865,13376,24318,24317,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,9.151804814650657,9.254249695972472,0,27,6,65.42423889289948,0,-9,2,2019,17,6,48,54,1,6,0,17.14339909996812,17.14339909996812,0,0,0,0,0,1,1,0,0,0,35.84,61.77,36.09,59.23,6.666666666666667,1,1,0,0,8,4,5,1,534.5,1104628.923210577,673223.6558200654,379310.7814303404,44229.33586609585,5229.278125934582 -10865,13377,24319,-9,24317,24318,1,1,22,0,1,0,1,1,1,0,4,0,4.197241640685645,4.905660396750964,0,0,-1037.768849607734,-9,1,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,4.841378100865549,0,49.41,58.28,-9,-9,3.333333333333333,1,1,1,0,0,4,2,1,782,17899.99419409339,0,0,0,503.1790241903252 -10866,13378,24320,24321,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,7.865550037589169,7.977568755995732,0,37,6,25.84438598998543,0,-9,-9,2019,7,0,30,-9,1,0,0,9.965013013507008,9.965013013507008,0,0,0,0,0,1,1,0,0,0,52.49,49.48,57.33,53.46,8.333333333333334,2,3,0,0,9,4,3,1,397,331987.3100945328,62633.19622800719,241082.423724832,0,1362.271733016456 -10866,13378,24321,24320,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,5,-6,-30.28503282754354,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.49,49.48,10,2,3,0,0,0,4,3,1,397,331987.3100945328,62633.19622800719,241082.423724832,0,1362.271733016456 -10866,13379,24322,-9,24321,24320,1,1,31,0,0,0,2,2,-9,0,5,6.042045820989228,6.124764048572434,0,0,0,-1046.848427132785,-9,3,3,2019,6,0,15,0,1,0,1,3.493094416491572,3.493094416491572,0,0,0,0,0,1,1,0,1.417946319667647,0,62.39,56.71,-9,-9,8.333333333333334,2,3,0,0,3,4,2,1,1035,48960.37803823638,0,0,0,153.8536204939274 -10867,13380,24323,-9,24325,-9,1,1,27,0,1,0,2,2,-9,0,4,7.850920129299777,7.704350298287205,0,0,0,-814.7733927999387,0,2,2,2019,8,0,38,37,1,0,1,6.891144060889582,6.891144060889582,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,649,-162396.2124613839,0,0,0,1363.817572053403 -10867,13381,24324,-9,24325,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1143.430414259233,-9,3,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,2333.5,188548.0312463887,231486.8045076123,107301.3190414212,41799.32436396651,1314.791121633423 -10867,13381,24325,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.735496248760328,7.625719389019838,0,0,0,-912.3517462469711,0,3,-9,2019,7,0,38,37,1,0,0,7.710170505617777,7.710170505617777,0,0,0,0,0,1,1,0,0,0,45.21,49.47,-9,-9,8.333333333333334,1,1,0,0,11,1,3,0,2333.5,188548.0312463887,231486.8045076123,107301.3190414212,41799.32436396651,1314.791121633423 -10868,13382,24326,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.662964434937333,8.486140222001515,0,0,0,-996.8004171172355,0,-9,-9,2019,19,7,43,46,1,7,0,11.61700632165652,11.61700632165652,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,1,12,12,5,1,1952,245274.6066093837,100924.3146892864,0,0,1443.543237843205 -10869,13383,24327,24329,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.168928484972412,8.127012112203133,0,1,-2,-82.98493960682544,-9,-9,-9,2019,14,3,44,0,1,3,0,9.082633837567943,9.082633837567943,0,0,0,0,14.5,1,1,0,0,0,41.34,56.62,50.54,62.09,8.333333333333334,1,1,0,0,11,11,3,1,891.3333333333334,124054.778685623,81446.09349828582,134373.1522263025,44442.15407011924,1560.050275442103 -10869,13383,24328,-9,24329,24327,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-828.6185853997389,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,891.3333333333334,124054.778685623,81446.09349828582,134373.1522263025,44442.15407011924,1560.050275442103 -10869,13383,24329,24327,-9,-9,1,0,34,0,1,0,3,3,-9,1,5,3.437185256688263,2.977575795470384,0,1,2,-21.51952308265449,-9,-9,-9,2019,2,0,39,0,1,0,0,.0785893438369933,.0785893438369933,0,0,0,0,42,1,1,0,0,0,50.54,62.09,41.34,56.62,5,1,1,0,0,9,11,3,1,891.3333333333334,124054.778685623,81446.09349828582,134373.1522263025,44442.15407011924,1560.050275442103 -10870,13384,24330,-9,24332,24331,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1135.12083531981,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,1067.666666666667,324722.2340269178,235876.7367567341,326284.1711404503,182201.0305093212,2597.203723954818 -10870,13384,24331,24332,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,8.331916933914801,8.201943447510574,0,4,15,19.53594379827653,0,-9,-9,2019,7,0,40,40,1,0,0,11.60468909525646,11.60468909525646,0,0,0,0,0,1,1,0,.3829287153744019,0,44.98,57.48,44.78,56.37,8.333333333333334,1,1,0,0,13,9,4,1,1067.666666666667,324722.2340269178,235876.7367567341,326284.1711404503,182201.0305093212,2597.203723954818 -10870,13384,24332,24331,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,7.176437649028887,7.103164738531734,4,-15,42.21912588711602,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.663096497588138,0,44.78,56.37,44.98,57.48,8.333333333333334,1,1,0,0,0,9,4,1,1067.666666666667,324722.2340269178,235876.7367567341,326284.1711404503,182201.0305093212,2597.203723954818 -10871,13385,24333,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.148422195128292,6.298340306291879,0,0,-925.3381579072078,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.396651190718208,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,1032,-162549.1979484932,0,0,0,70.34998533986769 -10872,13386,24334,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.009811796401,0,3,3,2019,11,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,0,545,-176623.1378826112,0,0,0,1621.231344182527 -10873,13387,24335,-9,24336,24337,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.9078796165016,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1019.666666666667,187490.0525497213,46397.38010532447,167523.0577208994,29711.20717377387,2070.969481306679 -10873,13387,24336,24337,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,0,0,6,-4,71.5923120815897,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.36,54.78,53,55,10,1,1,0,0,3,9,3,0,1019.666666666667,187490.0525497213,46397.38010532447,167523.0577208994,29711.20717377387,2070.969481306679 -10873,13387,24337,24336,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.803060620310408,7.747013506048771,0,6,4,-67.22888457136742,0,-9,-9,2019,9,0,24,20,1,1,0,11.03625159383514,11.03625159383514,0,0,0,0,0,1,1,0,0,0,53,55,43.36,54.78,8,1,1,0,0,1,9,3,0,1019.666666666667,187490.0525497213,46397.38010532447,167523.0577208994,29711.20717377387,2070.969481306679 -10874,13388,24338,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.904671268598365,6.536376595774184,0,0,-839.1261474142972,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.294658281245257,7.038727052427349,45.58,37.23,-9,-9,5,1,1,0,0,0,6,2,1,763,20364.16096707599,180430.648303976,0,0,870.3848014494679 -10875,13389,24339,-9,24340,24341,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-932.9281269812294,-9,2,3,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,1206.333333333333,393744.2648943955,181936.8183332898,277541.604726108,78950.36594694668,4255.993609643973 -10875,13389,24340,24341,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.314090054648283,8.111960450008045,0,6,4,-89.06544289629096,0,3,2,2019,6,0,37,37,1,0,0,14.52179417215093,14.52179417215093,0,0,0,0,0,1,1,0,2.824661033686882,0,57.06,57.76,57.33,53.46,10,1,1,0,0,7,11,5,1,1206.333333333333,393744.2648943955,181936.8183332898,277541.604726108,78950.36594694668,4255.993609643973 -10875,13389,24341,24340,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.562214620173592,8.941347915117124,0,6,-4,93.97477159177697,0,3,3,2019,6,0,49,47,1,0,0,13.61576525722927,13.61576525722927,0,0,0,0,2,1,1,0,5.304838023436464,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,11,5,1,1206.333333333333,393744.2648943955,181936.8183332898,277541.604726108,78950.36594694668,4255.993609643973 -10876,13390,24342,24343,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.735532638612185,8.728456747668574,0,10,-1,-100.4722763409036,0,-9,-9,2019,13,1,50,48,1,1,0,14.36845270976605,14.36845270976605,0,0,0,0,0,0,0,0,0,0,43.12,58.55,58.47,50.22,6.666666666666667,1,1,0,0,11,13,5,1,715,749657.0925085542,474364.3283377178,383947.8584201377,39847.45564608219,5009.604286833998 -10876,13390,24343,24342,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.842524575450263,8.883220036082525,0,10,1,-23.4180701266758,0,2,2,2019,7,0,38,43,1,0,0,21.34524332690197,21.34524332690197,0,0,0,0,0,0,0,0,0,0,58.47,50.22,43.12,58.55,8.333333333333334,1,1,0,0,11,13,5,1,715,749657.0925085542,474364.3283377178,383947.8584201377,39847.45564608219,5009.604286833998 -10876,13391,24344,-9,24343,24342,1,0,23,0,0,0,2,2,-9,0,4,8.529278662308933,8.409742529920107,0,0,0,-838.4883609037497,0,1,1,2019,8,0,38,41,1,0,1,15.9468960145034,15.9468960145034,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,1689,-61523.81481429585,-62715.21036748933,150929.8656231036,70039.00969091336,1095.022267802661 -10877,13392,24345,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,7.678205037726083,7.517187649061674,0,0,0,-1006.115322461872,0,-9,-9,2019,13,1,38,36,1,1,0,5.448890379232469,5.448890379232469,0,0,0,0,0,1,1,0,0,0,50.41,48.86,-9,-9,5,1,1,0,0,11,12,3,0,1163.5,92592.71578776797,0,122702.3839486576,82862.15836761879,1193.914327315901 -10877,13392,24346,-9,24345,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.8531506824619,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,0,1163.5,92592.71578776797,0,122702.3839486576,82862.15836761879,1193.914327315901 -10878,13393,24347,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.243602551908895,7.34469737951485,0,0,-920.1904632876904,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.397122557169547,67.36,21.89,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1019,504456.4249368562,0,282673.6950762987,0,1970.147613040334 -10879,13394,24348,24349,-9,-9,1,0,39,1,1,0,2,2,-9,0,5,7.191095971585456,7.338674731875302,0,7,2,80.53374887769537,0,2,2,2019,11,0,18,0,1,0,0,10.90831781227799,10.90831781227799,0,0,0,0,0,1,1,0,3.464092097320983,0,51.73,58.82,51,57,8.333333333333334,1,1,0,0,8,12,5,1,378.3333333333333,203823.0740502885,179276.6650718764,213926.5995501309,160111.8475179179,3358.006069918653 -10879,13394,24349,24348,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.915554710993392,8.849192355990999,0,7,-2,121.0299884940541,0,-9,-9,2019,10,0,35,50,1,1,0,24.3659626626403,24.3659626626403,0,0,0,0,0,1,1,0,0,0,51,57,51.73,58.82,7,4,1,0,0,1,12,5,1,378.3333333333333,203823.0740502885,179276.6650718764,213926.5995501309,160111.8475179179,3358.006069918653 -10879,13394,24350,-9,24348,24349,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.003162953626,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,378.3333333333333,203823.0740502885,179276.6650718764,213926.5995501309,160111.8475179179,3358.006069918653 -10880,13395,24351,24352,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.054382904632947,9.097203834067857,0,4,-1,14.02858534309128,0,-9,-9,2019,12,4,40,50,1,4,0,25.09802738655792,25.09802738655792,0,0,0,0,5.48,1,1,0,7.369758472453499,0,32.53,56.78,57.59,25.34,5,1,1,0,0,4,2,5,1,740.5,288378.4936294368,204953.8007919807,557965.7335186364,267322.3874988102,5164.9469766025 -10880,13395,24352,24351,-9,-9,1,0,35,0,0,0,1,1,-9,1,1,9.029969447140985,8.394374089167611,0,4,1,-7.540155579516565,0,2,2,2019,9,1,40,41,1,1,0,16.19090927365702,16.19090927365702,0,0,0,0,0,1,1,0,0,0,57.59,25.34,32.53,56.78,8.333333333333334,1,1,0,0,9,2,5,1,740.5,288378.4936294368,204953.8007919807,557965.7335186364,267322.3874988102,5164.9469766025 -10881,13396,24353,-9,24354,24355,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.5289564588742,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,2,0,1700,-37794.05597219762,-35088.8398126247,0,0,843.7865609860974 -10881,13396,24354,24355,-9,-9,1,0,19,1,1,0,2,2,1,0,3,0,0,0,1,-1,18.37659145116709,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.23,44.07,48.88,53.01,8.333333333333334,1,1,1,0,1,9,2,0,1700,-37794.05597219762,-35088.8398126247,0,0,843.7865609860974 -10881,13396,24355,24354,-9,-9,1,1,20,1,1,0,2,2,-9,0,4,7.521425705237739,7.350651898011744,0,1,1,104.7811626961193,-9,-9,-9,2019,9,1,40,0,1,1,0,5.462535760385226,5.462535760385226,0,0,0,0,0,1,1,0,0,0,48.88,53.01,54.23,44.07,6.666666666666667,1,1,0,0,2,9,2,0,1700,-37794.05597219762,-35088.8398126247,0,0,843.7865609860974 -10882,13397,24356,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.345848645922223,8.224353522176132,0,0,0,-939.9316100137753,0,2,2,2019,9,1,30,35,1,1,0,14.30698891019375,14.30698891019375,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,398,983688.1945786629,961459.9098494392,264750.7902135859,0,1685.389930988332 -10882,13398,24357,-9,24356,-9,1,0,28,0,0,0,2,2,-9,0,4,7.650975163114332,7.543444062528136,0,0,0,-885.3787557545892,0,2,-9,2019,10,0,39,32,1,0,1,4.366066381391152,4.366066381391152,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,5,1,1,0,0,10,11,3,1,167,-147000.6596101189,6762.759366620845,0,0,1131.710654879271 -10882,13399,24358,-9,24356,-9,1,1,26,0,0,0,2,2,-9,0,4,7.652863064901247,7.824697178247566,0,0,0,-988.6791246018493,0,2,-9,2019,10,0,40,40,1,1,1,6.62557591289059,6.62557591289059,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,0,0,1,11,3,1,610,105075.5599479398,-24538.02260689854,0,0,896.7052387767019 -10882,13400,24359,-9,24356,-9,1,0,23,0,0,0,2,2,-9,0,4,5.025751330319014,4.969914463859952,0,0,0,-1083.471334650636,-9,2,-9,2019,12,0,40,0,1,2,1,.4793568091288712,.4793568091288712,0,0,0,1.165907904321323,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,2,1,1084,0,0,0,0,194.9973010682468 -10883,13401,24360,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,5.654508493329399,8.166807945667173,8.045145966980217,0,0,-996.511877281407,0,2,-9,2019,6,0,16,21,1,0,0,2.124600937877155,2.124600937877155,0,0,0,0,0,1,1,0,0,7.984524820452721,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,516,-44407.91418315341,-2142.3193544273,120650.219870764,22018.70881343261,2073.791396707789 -10884,13402,24361,-9,24364,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.682943573269,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,561.5,-48689.17022461118,0,0,0,1437.904152055445 -10884,13402,24362,-9,24364,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.833121205178,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,561.5,-48689.17022461118,0,0,0,1437.904152055445 -10884,13402,24363,-9,24364,-9,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.1160501662476,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,561.5,-48689.17022461118,0,0,0,1437.904152055445 -10884,13402,24364,-9,-9,-9,1,0,28,1,3,0,3,3,-9,0,4,0,0,0,0,0,-1075.256319652648,0,2,3,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.26,61.9,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,561.5,-48689.17022461118,0,0,0,1437.904152055445 -10885,13403,24365,24366,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,5.542339619854509,5.191769029773623,51,2,-32.42223815390539,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.269934497441606,62.39,56.71,51,46,10,1,1,0,0,1,11,2,1,4264,414047.6988672348,0,243623.9095016417,0,946.775530672619 -10885,13403,24366,24365,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,51,-2,-125.079616498011,0,3,3,2019,11,0,0,39,4,1,0,0,0,0,0,0,0,0,1,1,0,2.737255941094651,0,51,46,62.39,56.71,7,1,1,0,0,0,11,2,1,4264,414047.6988672348,0,243623.9095016417,0,946.775530672619 -10886,13404,24367,-9,24368,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.751453404111,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1195.5,151572.1699516431,5530.669006953292,0,0,2522.208195562737 -10886,13404,24368,-9,24369,24370,1,0,39,0,1,0,2,2,-9,0,4,7.475559311344869,7.843330584711484,6.577646315460641,0,0,-893.1824425281104,0,1,1,2019,1,0,33,20,1,0,0,6.52614589756381,6.52614589756381,0,0,0,0,0,1,1,0,6.659536379935996,0,62.49,55.09,-9,-9,10,1,1,0,0,9,12,3,1,1195.5,151572.1699516431,5530.669006953292,0,0,2522.208195562737 -10886,13405,24369,24370,-9,-9,1,0,68,0,1,0,2,2,-9,0,3,0,0,0,1,-1,-191.7008426944955,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,54.77,55.87,7,4,1,0,0,0,12,3,1,1007.5,452219.2442948367,171435.7001016843,181296.4393223707,0,2880.249279762696 -10886,13405,24370,24369,-9,-9,1,1,69,0,1,0,1,1,-9,0,4,0,8.276098947481977,8.140272506031113,1,1,79.35051680497757,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.531181109883323,8.121256273951055,54.77,55.87,49,47,8.333333333333334,1,1,0,0,0,12,3,1,1007.5,452219.2442948367,171435.7001016843,181296.4393223707,0,2880.249279762696 -10887,13406,24371,24373,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.615999578646116,8.642041006156607,0,24,-1,13.28272415278221,0,2,2,2019,7,0,38,33,1,0,0,19.16776210436075,19.16776210436075,0,0,0,0,0,0,0,0,7.398386885995818,0,52.4,55.58,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,488.3333333333333,803663.6718225334,410899.6686481337,583194.4132348814,367488.791393546,9066.732443047486 -10887,13406,24372,-9,24371,24373,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-839.1676026148272,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,488.3333333333333,803663.6718225334,410899.6686481337,583194.4132348814,367488.791393546,9066.732443047486 -10887,13406,24373,24371,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.542925230915143,9.436996374105727,0,24,1,89.09340468372129,0,2,2,2019,8,2,37,41,1,2,0,63.23202897637004,63.23202897637004,0,0,0,0,0,0,0,0,3.956403896877265,0,57.16,56.15,52.4,55.58,8.333333333333334,1,1,0,0,8,6,5,1,488.3333333333333,803663.6718225334,410899.6686481337,583194.4132348814,367488.791393546,9066.732443047486 -10888,13407,24374,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.652647981611302,8.65736173662944,0,0,0,-960.4570149715648,0,2,1,2019,19,6,50,47,1,6,0,15.16831916310524,15.16831916310524,0,0,0,0,0,0,0,0,0,0,38.11,59.76,-9,-9,3.333333333333333,3,4,0,0,7,8,5,1,1242,34710.33541031626,-4786.170479612912,0,0,2097.12021629933 -10889,13408,24375,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.848640196279152,7.949794928697088,0,0,0,-983.4649831431183,0,3,2,2019,26,9,82,20,1,9,0,3.206673109009658,3.206673109009658,0,0,0,0,0,1,1,0,0,0,22.07,59.56,-9,-9,1.666666666666667,1,1,0,1,8,2,3,0,1037.5,478422.8275267813,231096.7602416768,114684.5404835067,0,1936.714979649849 -10889,13408,24376,-9,24375,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-938.2185542072672,-9,1,-9,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,19.71,68.18000000000001,-9,-9,5,1,1,0,0,0,2,3,0,1037.5,478422.8275267813,231096.7602416768,114684.5404835067,0,1936.714979649849 -10889,13409,24377,-9,24375,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1040.085192994922,-9,1,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,2,1,0,1108,-29553.43346979691,0,0,0,260.6207735889918 -10890,13410,24378,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.836387032796033,5.842873851830596,0,0,-940.1777045379449,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.709298809107584,5.724242033470641,47.55,47.03,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,466,409732.309336084,55544.09287772601,277704.3653428382,0,970.2583658912573 -10891,13411,24379,24380,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.481716759815136,8.224239598267649,0,5,-1,7.187067928697195,0,2,-9,2019,4,0,47,40,1,0,0,9.65753717041518,9.65753717041518,0,0,0,0,0,0,0,0,0,0,51.98,57.55,50.63,50.99,6.666666666666667,1,1,0,0,7,1,4,1,473,-51751.59899840486,8303.990252521719,70589.32725700323,56359.1732323667,2592.251096411295 -10891,13411,24380,24379,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.848899061354873,8.059746848942947,0,5,1,-77.57517385710857,0,-9,-9,2019,9,0,37,37,1,0,0,8.152930916619148,8.152930916619148,0,0,0,0,0,0,0,0,2.208708882697332,0,50.63,50.99,51.98,57.55,6.666666666666667,1,1,0,0,6,1,4,1,473,-51751.59899840486,8303.990252521719,70589.32725700323,56359.1732323667,2592.251096411295 -10892,13412,24381,24382,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,7.342937796896321,7.24446247600513,0,7,-2,-77.97111885493509,0,2,3,2019,9,2,35,40,1,2,0,4.354735452033908,4.354735452033908,0,0,0,0,7,1,1,0,0,0,52.97,53.97,52.99,51.28,8.333333333333334,1,1,0,1,10,10,3,0,1259.666666666667,173386.2167015869,23476.55336759578,278643.6338557878,129309.7435010399,2143.482848558361 -10892,13412,24382,24381,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.145104524676182,7.889463861476428,0,7,2,-60.79745581107672,0,-9,-9,2019,9,0,60,52,1,0,0,6.316256469442945,6.316256469442945,0,0,0,0,0,1,1,0,0,0,52.99,51.28,52.97,53.97,8.333333333333334,1,1,0,0,6,10,3,0,1259.666666666667,173386.2167015869,23476.55336759578,278643.6338557878,129309.7435010399,2143.482848558361 -10892,13412,24383,-9,24381,24382,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-840.5060087440336,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,3,0,1259.666666666667,173386.2167015869,23476.55336759578,278643.6338557878,129309.7435010399,2143.482848558361 -10893,13413,24384,24385,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,9.491638714916821,9.204923505495614,0,10,-4,124.6336528057756,0,-9,-9,2019,10,1,41,40,1,1,0,31.09433085501722,31.09433085501722,0,0,0,0,0,1,1,0,4.000756029839427,0,44.74,45.52,50.01,55.31,8.333333333333334,1,1,0,0,11,8,5,1,656,225774.0749096001,78983.82980839358,409898.2831463634,198678.6215047753,5937.144819060401 -10893,13413,24385,24384,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,7.914725103617711,7.917069486366641,0,10,4,230.8282574619391,-9,1,2,2019,12,1,40,0,1,1,0,9.61301931700943,9.61301931700943,0,0,0,0,0,1,1,0,7.165793660140475,0,50.01,55.31,44.74,45.52,6.666666666666667,1,1,0,0,11,8,5,1,656,225774.0749096001,78983.82980839358,409898.2831463634,198678.6215047753,5937.144819060401 -10894,13414,24386,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.220415877742678,4.326556998414558,0,0,-960.6395337817311,0,1,1,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,2,1,1,0,5.548206016078284,4.461765189597499,62.84,41.32,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,265,1308899.175214736,523976.2285436337,669983.8026450506,0,522.1936131784355 -10895,13415,24387,24388,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.363953870352589,8.225851808321853,0,5,-1,-33.02279322167116,0,2,2,2019,17,5,52,44,1,5,0,11.06385987954589,11.06385987954589,0,0,0,0,0,1,1,0,0,0,38.03,55.84,12.29,51.23,3.333333333333333,1,1,0,0,7,7,4,0,301.5,17735.14351778656,-37118.04185291439,214241.4026854449,162970.0415829461,2252.563471699734 -10895,13415,24388,24387,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.779752748016148,6.703406424011138,0,5,1,-72.26800199826295,0,-9,-9,2019,26,9,13,25,1,9,0,7.333743950076334,7.333743950076334,0,0,0,0,0,1,1,0,0,0,12.29,51.23,38.03,55.84,1.666666666666667,1,1,0,0,3,7,4,0,301.5,17735.14351778656,-37118.04185291439,214241.4026854449,162970.0415829461,2252.563471699734 -10896,13416,24389,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.405729084805696,7.479806062384382,0,0,0,-1099.111738131412,0,-9,-9,2019,16,3,8,8,1,3,0,25.04648372926147,25.04648372926147,0,0,0,0,0,1,0,1,0,0,35.13,64.73,-9,-9,3.333333333333333,1,1,0,0,9,11,3,0,243,162778.7482303715,68977.00848918535,0,0,555.9359527967532 -10896,13417,24390,-9,24389,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1038.736188477842,1,3,-9,2019,15,4,0,16,2,4,1,0,0,0,0,0,0,0,1,0,1,0,0,43.71,56.91,-9,-9,5,1,1,0,0,5,11,2,0,357,-38089.52917587823,0,0,0,0 -10896,13418,24391,-9,24389,-9,1,0,30,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1009.143566419413,-9,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,44.84,41.7,-9,-9,5,1,1,0,0,0,11,1,0,102,-222535.0481658406,0,0,0,685.1448662819557 -10897,13419,24392,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.020852614771074,6.570677389129281,0,0,-919.6288623889686,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.604302373367876,6.234676274146466,41.07,40.6,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,446,134557.6960587127,115715.835620807,220128.6429273307,0,1314.503111228973 -10898,13420,24393,24394,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.482348861753366,8.193167936663913,0,16,-16,43.40037355108666,0,2,2,2019,7,0,46,45,1,0,0,14.52871536870687,14.52871536870687,0,0,0,0,0,0,0,0,0,0,39.58,58.88,40.42,45.74,6.666666666666667,1,1,0,0,12,4,5,1,197,84970.00423659873,121212.4603586597,174801.6235949437,76235.36154068905,3816.202307462432 -10898,13420,24394,24393,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,8.226246625148057,8.66638474939025,7.195608977419621,16,16,-102.6680774996349,0,3,2,2019,19,7,40,40,1,7,0,10.06571838542493,10.06571838542493,0,0,0,0,0,0,0,0,0,7.267727496441243,40.42,45.74,39.58,58.88,1.666666666666667,1,1,0,0,10,4,5,1,197,84970.00423659873,121212.4603586597,174801.6235949437,76235.36154068905,3816.202307462432 -10899,13421,24395,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.041313671634001,7.627265275147693,0,0,0,-1043.786617101781,0,-9,-9,2019,12,1,40,36,1,1,0,9.673192712198221,9.673192712198221,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,10,11,4,1,339,420186.3931930827,170737.976254425,129790.2305391422,0,1416.152756152096 -10900,13422,24396,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.2843382164472,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,17.76,-9,-9,5,1,1,0,1,0,6,1,0,369,122190.2900316691,0,0,0,1300.939436675348 -10900,13423,24397,-9,24396,-9,1,1,33,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1139.501301083291,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,28.54,65.51000000000001,-9,-9,8.333333333333334,1,1,1,1,0,6,1,0,1187,56582.1965431909,0,0,0,613.2308361391645 -10901,13424,24398,24399,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.027458407771317,6.814424960566555,6,-7,-27.44686474592941,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.837599923117526,7.099454370269008,61.29,22.08,50.12,49.78,8.333333333333334,1,1,0,0,0,2,3,1,1029.5,1004095.499304803,494037.635403371,277592.3656359044,0,2665.33086820133 -10901,13424,24399,24398,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.483149265954197,7.035566094728502,6,7,77.17773835371969,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.951465704248526,7.471530345489205,50.12,49.78,61.29,22.08,10,1,1,0,0,0,2,3,1,1029.5,1004095.499304803,494037.635403371,277592.3656359044,0,2665.33086820133 -10902,13425,24400,24401,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.197003362762066,9.293542376763792,4.682045296935732,6,6,-73.9687410556169,0,2,3,2019,12,0,96,84,1,0,0,10.62981028155439,10.62981028155439,0,0,0,0,0,1,1,0,6.225980663371495,5.195924498503897,37.69,58.7,39.81,52.1,6.666666666666667,1,1,0,0,7,12,5,1,873.5,719386.8906737771,780805.6837516492,0,0,5535.943035063417 -10902,13425,24401,24400,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.994332853891717,7.828642558161444,0,6,-6,17.15750850111853,0,2,2,2019,16,4,27,28,1,4,0,10.33727231492035,10.33727231492035,0,0,0,0,0,1,1,0,0,0,39.81,52.1,37.69,58.7,3.333333333333333,1,1,0,0,7,12,5,1,873.5,719386.8906737771,780805.6837516492,0,0,5535.943035063417 -10902,13426,24402,-9,24401,24400,1,1,25,0,0,0,2,2,-9,0,4,7.953319465470158,8.424954589335279,0,0,0,-952.6819446264395,0,2,3,2019,5,0,49,59,1,0,1,7.393218071881867,7.393218071881867,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1256,-186599.6599443601,0,0,0,1073.141082622489 -10902,13427,24403,-9,24401,24400,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-944.0112564295746,0,2,3,2019,23,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,31.85,62.81,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,734,0,0,0,0,248.3224357620752 -10903,13428,24404,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.269009502712927,5.534721595428273,0,0,-980.8948222690509,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.598515918516656,60.12,54.8,-9,-9,10,1,1,0,0,0,4,2,0,4794,184531.1653779022,122802.1746620671,69316.63589164161,0,1079.181796372404 -10904,13429,24405,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.23427516643053,8.682819632054654,0,0,0,-1167.012556616671,0,2,3,2019,7,0,40,41,1,0,0,10.91707084704325,10.91707084704325,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,544,481962.8131225038,67557.12038530406,130773.2528086948,13250.2778459071,1593.239788370124 -10905,13430,24406,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,5,7.865154952881067,8.189389262262122,5.072565728815063,0,0,-1092.322126136618,0,3,-9,2019,6,0,39,39,1,0,0,11.14169555515587,11.14169555515587,0,0,0,0,0,1,1,0,5.567626703906642,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,995.5,30980.88972208737,17013.51474318535,27846.41234748738,20293.53326815398,2526.354410718183 -10905,13430,24407,-9,24406,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.917253262045,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,995.5,30980.88972208737,17013.51474318535,27846.41234748738,20293.53326815398,2526.354410718183 -10905,13430,24408,-9,24406,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.570772282246,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,995.5,30980.88972208737,17013.51474318535,27846.41234748738,20293.53326815398,2526.354410718183 -10905,13430,24409,-9,24406,-9,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1037.927539438022,-9,2,-9,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,37.76,62.64,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,995.5,30980.88972208737,17013.51474318535,27846.41234748738,20293.53326815398,2526.354410718183 -10906,13431,24410,24411,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.336515117969721,6.200593429174151,10,-1,76.48171106983204,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.309907891809356,0,0,1,1,0,2.672411687693966,6.272366948268426,55.91,28.5,55.15,32.6,6.666666666666667,1,1,0,0,0,4,2,1,1357.5,580428.2119905504,361178.6564083813,155075.6684042384,0,2157.426670150684 -10906,13431,24411,24410,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.583797656303759,6.521204593684378,10,1,.1956234709906472,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,2.635786910048342,0,2,1,1,0,6.885096243524284,6.682158715910475,55.15,32.6,55.91,28.5,8.333333333333334,1,1,0,0,0,4,2,1,1357.5,580428.2119905504,361178.6564083813,155075.6684042384,0,2157.426670150684 -10907,13432,24412,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,7.671250006272166,7.547683261538451,0,0,-1005.271888526197,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.347656730713272,7.622090069025963,47.37,43.29,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,8074,1116827.340975465,610457.6488758307,319616.5002702315,0,1859.163632172998 -10908,13433,24413,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.402991667842628,8.418242360084648,0,0,0,-1057.908002825009,0,2,2,2019,0,0,43,45,1,0,0,12.72842470408951,12.72842470408951,0,0,0,0,0,0,0,0,0,0,59.14,52.5,-9,-9,10,1,1,0,0,11,12,5,0,568,162139.7710063282,14362.12858854954,213018.3558729198,102397.5037855235,817.7879842908575 -10909,13434,24414,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,0,0,0,0,-882.6719955888099,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,46.63,20.78,-9,-9,0,1,1,0,0,0,11,1,1,532,143459.6745938225,0,0,0,1170.3010399254 -10910,13435,24415,24416,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.944575138580924,7.230188979905734,9,3,68.31695542904548,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.277542103512578,6.933188951767105,64.40000000000001,42,54.96,53.17,10,1,1,0,0,0,12,2,1,240.5,526366.787132798,314448.1502379958,149031.0264127425,0,1891.039861722509 -10910,13435,24416,24415,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-6.749066918299099,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.304156654534726,0,54.96,53.17,64.40000000000001,42,8.333333333333334,1,1,0,0,0,12,2,1,240.5,526366.787132798,314448.1502379958,149031.0264127425,0,1891.039861722509 -10911,13436,24417,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-921.7051289292566,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,16.67,-9,-9,5,1,1,0,0,0,12,1,0,954,741.8041142101849,0,0,0,645.8245046311691 -10912,13437,24418,24419,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,6,10,-60.73872359133322,0,-9,-9,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,.7433432037480746,0,62.49,55.09,50,54,10,2,3,1,0,5,8,4,0,449.5,1006430.941933424,515596.5283429152,555473.3021400102,0,2206.333501507902 -10912,13437,24419,24418,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.67868824518674,8.68049073715696,0,6,-10,75.14694027509779,0,-9,-9,2019,10,0,38,38,1,1,0,19.74282265312543,19.74282265312543,0,0,0,0,0,0,0,0,3.039053037679152,0,50,54,62.49,55.09,8,2,3,0,0,10,8,4,0,449.5,1006430.941933424,515596.5283429152,555473.3021400102,0,2206.333501507902 -10913,13438,24420,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.437687131848597,4.140133513951712,0,0,-992.1752224267047,0,3,2,2019,23,10,0,0,4,10,0,0,0,1,0,11.24499944189916,0,42,1,1,0,0,4.127005841337484,33.61,30.61,-9,-9,1.666666666666667,1,1,0,1,0,12,2,1,108,569798.0491913848,49427.60105232062,290515.3346049971,0,1026.062284099113 -10914,13439,24421,24422,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.036732947881283,9.502044535164849,8.493202661009786,35,7,99.09061824474904,0,3,3,2019,10,1,50,0,1,1,0,17.7676573091138,17.7676573091138,0,0,0,0,76,1,1,0,8.220940902357922,8.592176054287663,57.16,56.15,63.65,49.16,8.333333333333334,2,3,0,0,6,6,5,1,383,1795389.259358671,1020951.218106909,449578.4292098407,5099.04884289945,7947.277105799647 -10914,13439,24422,24421,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,34,-7,56.912865523967,0,3,2,2019,9,1,0,32,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,63.65,49.16,57.16,56.15,10,2,3,0,0,9,6,5,1,383,1795389.259358671,1020951.218106909,449578.4292098407,5099.04884289945,7947.277105799647 -10914,13440,24423,-9,24422,24421,1,0,28,0,0,0,1,1,-9,0,3,7.886191640946622,7.830018060383082,0,0,0,-1073.639150552033,0,2,2,2019,9,1,40,37,1,1,1,7.541119789477142,7.541119789477142,0,0,0,0,7,1,1,0,0,0,51.02,43.98,-9,-9,8.333333333333334,2,3,0,0,5,6,4,1,1229,-136362.0222462668,0,0,0,1325.081227732555 -10914,13441,24424,-9,24422,24421,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-953.387839199363,1,2,1,2019,11,2,0,20,2,2,1,0,0,0,0,0,0,120,1,1,0,0,0,47.01,58,-9,-9,8.333333333333334,2,3,0,0,5,6,1,1,699,58938.85156138273,0,0,0,2036.424242509024 -10915,13442,24425,24426,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,7.914033917393565,7.800606235320935,0,7,1,-94.3890819881144,0,3,2,2019,12,0,39,40,1,0,0,7.951387698311944,7.951387698311944,0,0,0,0,0,0,0,0,0,0,47.31,50.2,53.09,42.31,6.666666666666667,1,1,0,0,12,1,5,1,571,84620.57661741682,34703.14182291935,178220.7539098267,129985.5868873872,3215.043851559684 -10915,13442,24426,24425,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.453509736789195,8.492015566909741,0,7,-1,-82.39623329298983,0,-9,-9,2019,11,0,22,37,1,0,0,28.78374276984718,28.78374276984718,0,0,0,0,0,0,0,0,1.157938895604675,0,53.09,42.31,47.31,50.2,6.666666666666667,1,1,0,0,10,1,5,1,571,84620.57661741682,34703.14182291935,178220.7539098267,129985.5868873872,3215.043851559684 -10916,13443,24427,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-991.2245461151347,0,3,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.06,44.49,-9,-9,10,1,1,1,0,0,4,1,1,118,-209957.3104783523,0,0,0,124.6666011677381 -10917,13444,24428,24429,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.501042440989849,8.545665524521578,10,3,158.9611948045971,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,7.836954181297749,8.860970160393316,29.69,58.14,52.23,55.6,5,1,1,0,0,5,7,4,1,419,127398.2939820346,162498.8697466127,0,0,4990.970341209937 -10917,13444,24429,24428,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.939539932004203,6.514130050159128,10,-3,-106.2653338591445,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.160957953315771,6.886222764325354,52.23,55.6,29.69,58.14,8.333333333333334,1,1,0,0,7,7,4,1,419,127398.2939820346,162498.8697466127,0,0,4990.970341209937 -10918,13445,24430,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-885.4806054842389,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.18,30.64,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,988,-79909.16252795591,0,0,0,1076.012060269437 -10919,13446,24431,24432,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,62,-1,18.40581395654002,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.15,41.01,61.02,44.8,8.333333333333334,1,1,0,0,0,2,2,1,810,461504.4976436779,195521.179702803,263412.6255039977,0,1762.831649989399 -10919,13446,24432,24431,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,6.258237769854707,6.481252041646301,62,1,18.32696675968565,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,1.437066007464536,0,0,1,1,0,3.80152928471475,6.332163449815947,61.02,44.8,57.15,41.01,1.666666666666667,1,1,0,0,0,2,2,1,810,461504.4976436779,195521.179702803,263412.6255039977,0,1762.831649989399 -10920,13447,24433,24434,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,24,-2,-39.50272698018766,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.38,46.48,10,1,1,0,0,0,2,2,1,199.5,655035.9957370666,299684.3405355634,241197.0229342543,0,1328.595143687303 -10920,13447,24434,24433,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.784875982886651,6.99474550779507,24,2,-101.1558895766005,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.220008328429373,48.38,46.48,57.16,56.15,10,1,1,0,0,0,2,2,1,199.5,655035.9957370666,299684.3405355634,241197.0229342543,0,1328.595143687303 -10921,13448,24435,24436,-9,-9,1,0,68,0,1,0,1,1,-9,0,2,0,6.004620193645303,5.887817404350624,46,1,150.4814097723462,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.890147122029362,5.737643940620196,55.92,36.72,59.71,50.89,6.666666666666667,1,1,0,0,5,9,3,1,878,585336.9388450292,146983.4301951386,288365.9162585541,0,3165.835244939848 -10921,13448,24436,24435,-9,-9,1,1,67,0,1,0,1,1,-9,0,4,0,8.062576741477324,8.279476335554767,46,-1,36.48355231544912,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.753648057086532,7.967247832196434,59.71,50.89,55.92,36.72,8.333333333333334,1,1,0,0,7,9,3,1,878,585336.9388450292,146983.4301951386,288365.9162585541,0,3165.835244939848 -10922,13449,24437,24438,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.289214235848275,7.80516293012676,7,0,-45.72486399146881,0,3,3,2019,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,6.080643302151858,8.051265606332951,45.13,49.45,36.7,61.65,8.333333333333334,1,1,0,0,2,2,4,1,620.5,1720360.200783685,1214309.643853846,245790.2296403656,0,3149.332112389054 -10922,13449,24438,24437,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.818455218170132,6.756699413131096,7,0,33.92905525524472,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,6.281092472477482,6.682718110773695,36.7,61.65,45.13,49.45,8.333333333333334,1,1,0,0,5,2,4,1,620.5,1720360.200783685,1214309.643853846,245790.2296403656,0,3149.332112389054 -10923,13450,24439,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,0,7.498918214565136,7.35078784224035,0,0,-1028.514424954623,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,4.830207911739904,7.668679606259747,31.26,61.3,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1135,-15192.01373303813,23955.00255486386,0,0,922.1097242813498 -10923,13451,24440,-9,24439,-9,1,1,23,0,0,0,2,2,-9,0,3,7.287693081223394,7.289320626020948,0,0,0,-933.9030324051814,0,2,-9,2019,12,0,40,40,1,0,1,4.934937379492857,4.934937379492857,0,0,0,0,0,0,0,0,4.242457664576791,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,520,53622.12380511573,0,0,0,1098.396897605704 -10923,13452,24441,-9,24439,-9,1,1,19,0,0,0,2,2,1,0,4,7.123768860662865,6.946781085379705,0,0,0,-1072.973068446674,-9,2,-9,2019,10,0,16,0,1,0,1,8.80869030029711,8.80869030029711,0,0,0,0,0,0,0,0,3.050720097970701,0,48.06,53.4,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,1657,23489.47341189727,-4560.510363237975,0,0,889.5946462418644 -10924,13453,24442,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.0469849506241,7.220716349070742,0,0,0,-978.338346017778,0,2,1,2019,12,2,21,20,1,2,0,8.975005455976586,8.975005455976586,0,0,0,0,7,0,0,0,2.022460598505898,0,53.57,46.8,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1202,990109.2157201982,221344.1051888628,571879.1140095071,0,1291.774856465768 -10924,13454,24443,-9,24442,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.4123601737036,-9,2,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,642,0,0,0,0,572.8850350949386 -10924,13455,24444,-9,24442,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1025.915194346077,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,4127,-275565.2070587999,0,0,0,-418.6119313750464 -10925,13456,24445,-9,-9,-9,1,1,38,0,3,0,2,2,-9,1,3,0,0,0,0,0,-927.7217868515779,0,3,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,13.11,49.25,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,1019,92048.54067979475,0,0,0,2304.438773273486 -10925,13456,24446,-9,-9,24445,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.3599097958582,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,1,0,1019,92048.54067979475,0,0,0,2304.438773273486 -10925,13456,24447,-9,-9,24445,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1006.879359488203,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,1,0,1019,92048.54067979475,0,0,0,2304.438773273486 -10925,13456,24448,-9,-9,24445,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.0677341237168,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1019,92048.54067979475,0,0,0,2304.438773273486 -10926,13457,24449,24450,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.594263467616095,7.744277850195816,54,-1,76.26664931515523,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.328118368709672,3.40317769382432,0,1,1,0,0,7.928314728621295,65.53,36.06,55.61,39.77,10,1,1,0,0,0,9,3,1,3264.5,2115913.439225989,774761.0031988486,875432.5675614444,0,3078.687976970027 -10926,13457,24450,24449,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.631519667465335,7.409092882331731,54,1,-84.15238407165451,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.28452668605069,55.61,39.77,65.53,36.06,8.333333333333334,1,1,0,0,0,9,3,1,3264.5,2115913.439225989,774761.0031988486,875432.5675614444,0,3078.687976970027 -10927,13458,24451,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-960.7351317328184,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.35,45.09,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,1557,0,0,0,0,333.6360210167442 -10928,13459,24452,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.090295461884,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,0,1,1,1,212,161374.5345679945,0,285391.3179073677,0,563.7343574274604 -10928,13460,24453,-9,24452,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1036.562737691698,0,3,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.42,28.78,-9,-9,0,1,1,0,1,0,1,1,1,764,-110032.3769224749,-110578.4251329263,0,0,704.8051001084445 -10929,13461,24454,24455,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.442877831332687,7.094143633877573,7,-2,-36.88860675406238,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.959445851859801,7.105351087604465,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,0,7,4,1,1250,1957558.936179148,1304418.959221611,397181.6374077142,0,3606.431684564018 -10929,13461,24455,24454,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.225897134884908,8.259852469545539,7,2,56.04399100139331,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.322432695285308,8.441399380384166,60.12,54.8,54.2,57.49,10,1,1,0,0,3,7,4,1,1250,1957558.936179148,1304418.959221611,397181.6374077142,0,3606.431684564018 -10930,13462,24456,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,5,0,0,0,0,0,-989.641568017821,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.374603576457836,5.071487240659023,21.15139394446711,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,2,1,0,1908,13254.24282362645,0,0,0,-51.27735214768971 -10931,13463,24457,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.469824468493915,8.442915647665952,3.742459495737987,0,0,-1051.464715011698,0,-9,-9,2019,17,6,39,36,1,6,0,11.60392328468803,11.60392328468803,0,0,0,0,0,0,0,0,.5278753865336442,4.071506345506283,42.82,48.95,-9,-9,5,1,1,0,0,9,12,4,1,297,653790.2979080275,428114.3621486152,163122.3929919738,0,1293.81495200613 -10931,13464,24458,-9,24457,-9,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-970.2041829773673,-9,1,-9,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,927,-142751.9963001694,0,0,0,-138.3076145225363 -10932,13465,24459,24460,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.880387867500639,9.189346801314453,0,4,3,-111.0962839630824,0,-9,-9,2019,12,2,47,47,1,2,0,16.65908654901519,16.65908654901519,0,0,0,0,0,0,0,0,3.597033337382067,0,43.86,63.67,44.36,54.04,8.333333333333334,1,1,0,0,5,6,5,0,621.5,251342.5490601403,97364.13253736508,141442.1224607823,33966.52772407205,3477.073393741228 -10932,13465,24460,24459,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.253030256720626,7.455204107735846,0,4,-3,32.79927663776049,0,1,1,2019,7,0,29,0,1,0,0,6.315092304506683,6.315092304506683,0,0,0,0,0,0,0,0,0,0,44.36,54.04,43.86,63.67,8.333333333333334,1,1,0,0,7,6,5,0,621.5,251342.5490601403,97364.13253736508,141442.1224607823,33966.52772407205,3477.073393741228 -10933,13466,24461,24462,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.289263339521789,5.588139732703356,8,5,18.612347823441,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,5.286189928136518,5.643713341842711,55,45,52,46,8,1,1,0,0,0,13,2,1,306.5,52703.4729500152,138619.8924806908,0,0,1586.108949089969 -10933,13466,24462,24461,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,8,-5,16.52523856192916,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.97565454739288,26.07128647590909,136.4873730751182,14.5,1,1,0,0,0,52,46,55,45,8,1,1,0,0,0,13,2,1,306.5,52703.4729500152,138619.8924806908,0,0,1586.108949089969 -10933,13467,24463,-9,24462,24461,1,1,49,0,0,0,2,2,-9,1,4,0,0,0,0,0,-900.1653611476157,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,13,1,1,904,35743.24407321631,0,0,0,1699.177995419092 -10934,13468,24464,-9,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.243490900971238,8.127763812963652,0,0,0,-1014.337757198929,0,3,-9,2019,23,8,40,40,1,8,1,13.56759291187388,13.56759291187388,0,0,0,0,7,1,1,0,0,0,49,58,-9,-9,8.333333333333334,2,3,0,0,8,6,4,1,472,53268.77507554357,81120.23354605719,141301.3121807809,94381.40764580206,1316.882522304887 -10934,13469,24465,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,5,8.428022889887428,8.382137049406914,0,0,0,-985.4686717549087,0,3,-9,2019,6,0,35,48,1,0,1,10.25151951044609,10.25151951044609,0,0,0,0,2,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,5,6,4,1,3169,-10621.56252316516,147168.5847293651,0,0,1336.331171069191 -10935,13470,24466,24467,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.676852609318516,8.697332584839286,0,41,-1,-60.18948738240903,0,3,2,2019,15,4,44,37,1,4,0,13.87174742097048,13.87174742097048,0,0,0,0,2,0,0,0,3.631944448791657,0,41.29,55.13,48.94,54.95,5,1,1,0,0,11,9,5,1,1000,2303464.48221121,1416205.722358382,878577.7140035785,275132.975651597,3368.273435946267 -10935,13470,24467,24466,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.144326224070086,8.59792013793103,0,41,1,-3.821721000431054,0,2,2,2019,8,0,39,38,1,0,0,12.5005520359181,12.5005520359181,0,0,0,0,0,0,0,0,2.110857499625613,0,48.94,54.95,41.29,55.13,6.666666666666667,1,1,0,0,11,9,5,1,1000,2303464.48221121,1416205.722358382,878577.7140035785,275132.975651597,3368.273435946267 -10936,13471,24468,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,4,7.060886192803222,6.92031954834237,0,0,0,-1039.542752806652,-9,-9,-9,2019,7,1,19,0,1,1,0,5.511919773853909,5.511919773853909,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,12,2,0,368,-19411.97526462005,0,0,0,150.0122954873218 -10937,13472,24469,24470,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.462101512701183,6.976001908624895,49,0,171.3555472559915,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.579758527677805,6.664365256629583,47.76,52.08,57.33,42.93,8.333333333333334,1,1,0,0,6,12,2,1,1001,449328.0416973641,177667.6981117618,187027.2925285903,0,1673.24286390431 -10937,13472,24470,24469,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,49,0,-172.4472565226365,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,42.93,47.76,52.08,8.333333333333334,1,1,0,0,0,12,2,1,1001,449328.0416973641,177667.6981117618,187027.2925285903,0,1673.24286390431 -10938,13473,24471,24472,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,7,3,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.16,26.12,43.04,16.94,6.666666666666667,1,1,0,0,0,6,1,1,694.5,279562.0212060495,0,219170.2643367525,0,2141.521687886378 -10938,13473,24472,24471,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,7,-3,0,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,2.629399509592457,70.86531865049621,27.52046373294831,0,1,1,0,0,0,43.04,16.94,49.16,26.12,5,1,1,0,0,0,6,1,1,694.5,279562.0212060495,0,219170.2643367525,0,2141.521687886378 -10939,13474,24473,24475,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.925851823178585,8.866767705440894,0,6,0,15.16239967361974,0,-9,-9,2019,17,5,43,43,1,5,0,16.7774392877072,16.7774392877072,0,0,0,0,0,1,1,0,0,0,33.72,60.21,44.44,55.46,6.666666666666667,1,1,0,0,13,4,5,1,652.6666666666666,295446.4296845859,30262.71289118231,297294.7006397701,22500.97121338909,4080.155081514886 -10939,13474,24474,-9,24475,24473,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.69654223539,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,5,1,652.6666666666666,295446.4296845859,30262.71289118231,297294.7006397701,22500.97121338909,4080.155081514886 -10939,13474,24475,24473,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.737816724221537,8.568319866942041,0,6,0,-2.661535740953715,0,-9,-9,2019,15,3,37,38,1,3,0,18.31964979613938,18.31964979613938,0,0,0,0,0,1,1,0,1.440268248678197,0,44.44,55.46,33.72,60.21,8.333333333333334,1,1,0,0,9,4,5,1,652.6666666666666,295446.4296845859,30262.71289118231,297294.7006397701,22500.97121338909,4080.155081514886 -10940,13475,24476,24477,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.596510852377094,8.27206396845046,7.230482690451777,38,0,6.061914607352139,0,1,-9,2019,4,0,15,45,1,0,0,17.01325863218377,17.01325863218377,0,0,0,0,0,0,0,0,1.547990089778931,7.768338682694472,49.97,56.66,54.1,59.11,8.333333333333334,1,1,0,0,7,2,5,1,696.5,1809295.432370128,1531609.216056284,216304.4788331121,0,5496.26305345464 -10940,13475,24477,24476,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.430990160635531,9.650395247931002,0,40,0,26.07501507513584,0,2,1,2019,7,0,43,45,1,0,0,27.58263791082192,27.58263791082192,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.97,56.66,8.333333333333334,1,1,0,0,9,2,5,1,696.5,1809295.432370128,1531609.216056284,216304.4788331121,0,5496.26305345464 -10941,13476,24478,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1056.823057132995,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,6.988610644050445,0,0,1,1,0,0,0,61.6,22.22,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,648,9085.208494123901,0,0,0,1881.254530019446 -10942,13477,24479,24480,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.889728416290562,6.628812505907833,7,0,-80.47698506305227,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.833268218054184,6.806119356663859,54.87,40.87,56.11,44.4,8.333333333333334,1,1,0,0,0,9,2,1,389,540638.2472824224,208009.1079157597,277958.9358318872,0,1973.534902598248 -10942,13477,24480,24479,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.634683373362266,5.484589446858619,7,0,55.56047340861195,0,3,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.942471156306041,6.021195708181198,56.11,44.4,54.87,40.87,8.333333333333334,1,1,0,0,1,9,2,1,389,540638.2472824224,208009.1079157597,277958.9358318872,0,1973.534902598248 -10943,13478,24481,24482,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.369272573574774,8.152844443179495,0,2,0,31.83038371099418,0,-9,-9,2019,9,0,46,44,1,1,0,9.216521246809984,9.216521246809984,0,0,0,0,0,0,0,0,0,0,52,55,46.85,47.29,8,1,1,0,0,13,8,5,1,578,1469504.916550029,518108.4608424639,732405.2065794079,0,3406.998713666701 -10943,13478,24482,24481,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,8.162037038782762,8.143957914425302,0,2,0,31.08766472459908,0,2,2,2019,14,2,30,32,1,2,0,10.21207774916027,10.21207774916027,0,0,0,0,0,0,0,0,7.690207986907116,0,46.85,47.29,52,55,8.333333333333334,1,1,0,0,12,8,5,1,578,1469504.916550029,518108.4608424639,732405.2065794079,0,3406.998713666701 -10944,13479,24483,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,3,8.306812230439228,8.673294842899686,0,0,0,-951.6947680086962,0,2,-9,2019,11,0,36,0,1,0,0,21.06239743026209,21.06239743026209,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,5,1,1,0,1,3,11,5,0,376,404969.4451299425,270225.8791494884,55567.43299246725,31989.37288042019,2828.017119307381 -10944,13480,24484,-9,24483,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1070.860642914263,0,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.81,47.49,-9,-9,6.666666666666667,1,1,1,1,0,11,2,0,462,0,0,0,0,269.6553263869473 -10944,13481,24485,-9,24483,-9,1,0,20,0,0,0,2,2,-9,0,3,7.394412373599973,7.554485359205501,0,0,0,-961.5829191824394,0,3,-9,2019,14,3,36,36,1,3,1,5.602599585996728,5.602599585996728,0,0,0,0,0,1,1,0,0,0,28.93,59.67,-9,-9,5,1,1,0,0,4,11,3,0,847,52365.91821366537,-28802.68490983825,0,0,582.4653925883636 -10945,13482,24486,24487,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.563630752099641,6.705774817826794,0,35,2,-27.86202287857471,0,3,2,2019,11,1,21,22,1,1,0,4.306461057796831,4.306461057796831,0,0,0,0,0,0,0,0,7.17535374582856,0,57.16,56.15,54,53,10,1,1,0,0,8,9,5,1,352.5,388521.5079284411,161711.6567603893,265618.024219552,0,4470.018994974199 -10945,13482,24487,24486,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.072455459006722,9.287084346649282,0,6,-2,-83.216954630033,0,-9,-9,2019,9,0,45,50,1,1,0,21.15326978504769,21.15326978504769,0,0,0,0,0,0,0,0,2.780546766632083,0,54,53,57.16,56.15,8,1,1,0,0,1,9,5,1,352.5,388521.5079284411,161711.6567603893,265618.024219552,0,4470.018994974199 -10946,13483,24488,24489,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.358067584363739,7.647123920818357,0,1,-1,6.117167374137963,-9,-9,-9,2019,0,0,36,0,1,0,0,6.425580037268735,6.425580037268735,0,0,0,0,0,0,0,0,0,0,62.39,56.71,33.56,61.92,10,2,3,0,0,0,2,4,1,1179.5,-40899.72376429976,4264.22915964017,151641.1028636502,128600.1056489974,2468.368016454044 -10946,13483,24489,24488,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.396897754954608,8.571015118182256,0,1,1,60.76783979893997,0,3,2,2019,20,8,47,30,1,8,0,9.80344510290864,9.80344510290864,0,0,0,0,0,0,0,0,0,0,33.56,61.92,62.39,56.71,6.666666666666667,2,3,0,0,4,2,4,1,1179.5,-40899.72376429976,4264.22915964017,151641.1028636502,128600.1056489974,2468.368016454044 -10947,13484,24490,24491,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,0,0,37,0,-5.260248428228554,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.776484839106937,0,51.32,43.85,60.05,26.59,6.666666666666667,1,1,0,0,4,10,2,1,884.5,596389.7328157411,275570.9631414247,221197.2890179598,0,2313.305386261817 -10947,13484,24491,24490,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.337862401191932,7.354562949418471,37,0,-59.18658632852082,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.29036885429293,7.559953410761545,60.05,26.59,51.32,43.85,6.666666666666667,1,1,0,0,0,10,2,1,884.5,596389.7328157411,275570.9631414247,221197.2890179598,0,2313.305386261817 -10948,13485,24492,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,6.657038215523942,6.209481442735205,0,0,-972.6305266012607,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,3.722325897131764,0,1,1,0,5.855526280466645,6.189330091701228,49.8,36.69,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,307,350828.0366921235,85742.01504969291,177497.42086258,0,1266.336370276074 -10949,13486,24493,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.274737721180069,7.075379198527103,0,0,-935.3987674957688,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,7.462077219111241,55.19,54.26,-9,-9,0,1,1,0,0,3,2,3,1,172,573807.3477729108,562443.9590821509,255735.4886805131,0,1523.993189187276 -10949,13487,24494,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,0,7.042953973888782,6.6793772164359,0,0,-924.7809365448321,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.249467905230266,7.346867952984592,50,50,-9,-9,7,1,1,0,0,0,2,3,1,2794,470236.4543504398,284032.9296585351,104989.6206021294,0,609.8402107301504 -10950,13488,24495,-9,24500,24499,1,1,15,1,4,1,3,0,-9,0,5,0,0,0,0,0,-868.9113418054644,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10950,13488,24496,-9,24500,24499,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1142.259969672712,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10950,13488,24497,-9,24500,24499,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-946.6494520504845,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10950,13488,24498,-9,24500,24499,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1108.697454871675,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10950,13488,24499,24500,-9,-9,1,1,57,1,4,0,3,3,-9,1,3,0,0,0,2,23,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,47,57,7,1,1,0,1,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10950,13488,24500,24499,-9,-9,1,0,34,1,4,0,3,3,-9,0,4,0,0,0,2,-23,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,49,7,1,1,0,1,0,13,1,1,418.8333333333333,227846.1001295703,67752.3778585033,203852.3815336262,74969.6345526378,1937.256262200878 -10951,13489,24501,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.097090792856559,8.294180453791098,6.186237389403148,0,0,-1059.711011149965,0,3,3,2019,6,0,26,26,1,0,0,12.35287877133551,12.35287877133551,0,0,0,0,2,1,1,0,6.882932167530923,6.299425643734367,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,708,160707.7593994375,102484.5095194853,0,0,2356.44376682079 -10952,13490,24502,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.493006227141596,6.824613494832814,0,0,-1197.481926492138,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,4.969065629150895,0,55.10415453922655,0,1,1,0,7.045574981654765,6.45454170023345,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,8343,1565403.610362327,1596965.326731834,139146.2676983514,0,688.3496570867117 -10953,13491,24503,24504,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.789401048935028,8.562587325670474,0,25,-4,92.52111567464459,0,2,2,2019,9,0,44,43,1,0,0,17.18159796377922,17.18159796377922,0,0,0,0,5.48,1,1,0,4.761601512296321,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,11,2,4,1,608,878515.4357007868,0,370622.3540199384,0,2819.116127524311 -10953,13491,24504,24503,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,5.637192472296563,5.953015912290661,4.615092491410581,25,4,-56.85752854252679,0,3,2,2019,8,0,10,4,1,0,0,3.911598878816243,3.911598878816243,0,0,0,0,0,1,1,0,5.981432906134767,4.394534057085704,54.96,53.17,57.06,57.76,10,1,1,0,0,9,2,4,1,608,878515.4357007868,0,370622.3540199384,0,2819.116127524311 -10954,13492,24505,24508,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,7,-1,-3.118810860330706,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.91,53.2,10,1,1,0,0,1,4,3,1,641.25,30288.59800100211,0,0,0,2507.37605684516 -10954,13492,24506,-9,24505,24508,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.957882597324,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,641.25,30288.59800100211,0,0,0,2507.37605684516 -10954,13492,24507,-9,24505,24508,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.487432790622,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,641.25,30288.59800100211,0,0,0,2507.37605684516 -10954,13492,24508,24505,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.036565016481831,7.911539729518336,0,7,1,99.10095831913172,0,-9,-9,2019,10,0,40,40,1,0,0,9.709430485249868,9.709430485249868,0,0,0,0,0,1,1,0,0,0,54.91,53.2,51.83,57.2,8.333333333333334,1,1,0,0,10,4,3,1,641.25,30288.59800100211,0,0,0,2507.37605684516 -10955,13493,24509,24510,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.497028596800801,7.374496226134844,0,3,-3,48.44210068552764,0,-9,-9,2019,5,0,40,45,1,0,0,4.791257490583217,4.791257490583217,0,0,0,0,0,0,0,0,0,0,50.54,62.09,49.91,58.02,10,1,1,0,0,3,2,5,1,987,106946.5203201868,0,0,0,2665.522878952218 -10955,13493,24510,24509,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.989152869216037,8.841992672590221,0,3,3,-31.36843539144427,0,2,2,2019,5,0,39,40,1,0,0,20.55975536087971,20.55975536087971,0,0,0,0,0,0,0,0,0,0,49.91,58.02,50.54,62.09,8.333333333333334,1,1,0,0,7,2,5,1,987,106946.5203201868,0,0,0,2665.522878952218 -10956,13494,24511,24512,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,6.920563002894626,7.568223974013792,49,-7,-78.08334954820124,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.754260191756702,7.192252153990836,51.81,57.22,54.96,53.17,8.333333333333334,1,1,0,0,0,10,3,1,992.5,1297009.960543304,789865.8245158726,363777.256223755,0,2920.855662398904 -10956,13494,24512,24511,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.417502154651379,6.517902778158005,49,7,53.3920256752664,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.414089282599543,6.68848973821258,54.96,53.17,51.81,57.22,10,1,1,0,0,0,10,3,1,992.5,1297009.960543304,789865.8245158726,363777.256223755,0,2920.855662398904 -10957,13495,24513,24514,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.967598675052591,7.334920400948836,0,4,2,77.02959306905008,0,-9,-9,2019,8,1,14,14,1,1,0,13.61920438041118,13.61920438041118,0,0,0,0,0,1,1,0,0,0,46.4,39.55,57.33,53.46,10,1,1,0,0,6,4,3,0,841,-6097.343614957431,-17043.1087909773,0,0,3055.851277211139 -10957,13495,24514,24513,-9,-9,1,1,25,0,1,0,2,2,-9,0,3,8.203144967364429,8.394739981439612,0,4,-2,-61.33926947836611,0,-9,-9,2019,5,0,39,39,1,0,0,9.813976235567813,9.813976235567813,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.4,39.55,8.333333333333334,1,1,0,0,4,4,3,0,841,-6097.343614957431,-17043.1087909773,0,0,3055.851277211139 -10957,13495,24515,-9,24513,24514,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.854358106388,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,841,-6097.343614957431,-17043.1087909773,0,0,3055.851277211139 -10958,13496,24516,24517,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.301193155666899,8.318207377778505,0,10,-17,-42.55026951031121,0,2,3,2019,5,0,5,60,1,0,0,118.8419191128166,118.8419191128166,0,0,0,0,0,0,0,0,1.926219466235986,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,13,7,5,0,450.5,1018322.396290735,598821.2489764158,415725.9504616571,116239.3851276538,3154.112178081917 -10958,13496,24517,24516,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.983628835125905,7.990058073167805,0,10,17,117.4779380083982,0,-9,-9,2019,6,0,16,17,1,0,0,22.50410552732982,22.50410552732982,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,9,7,5,0,450.5,1018322.396290735,598821.2489764158,415725.9504616571,116239.3851276538,3154.112178081917 -10959,13497,24518,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,7.589970997720621,7.131725883989545,0,0,-1034.096876287981,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.595962568301532,7.226559768799193,53,44,-9,-9,8,1,1,0,0,0,9,3,1,713,694307.9708457439,82856.85870230084,438774.6473257556,0,1503.984728932739 -10960,13498,24519,24520,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.260183604290182,8.13364062821128,0,8,-3,106.4887010049514,-9,-9,-9,2019,11,1,38,0,1,1,0,9.155272859703272,9.155272859703272,0,0,0,0,0,0,0,0,2.418985725236737,0,51.03,46.77,37.53,56.97,6.666666666666667,1,1,0,0,12,13,5,1,514.5,-11751.93798816774,42601.569499069,0,0,3695.449647790666 -10960,13498,24520,24519,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.424486229543598,8.495016380228334,0,8,3,-41.40630534504156,0,3,3,2019,9,0,47,50,1,0,0,12.16487766338864,12.16487766338864,0,0,0,0,0,0,0,0,0,0,37.53,56.97,51.03,46.77,8.333333333333334,1,1,0,0,13,13,5,1,514.5,-11751.93798816774,42601.569499069,0,0,3695.449647790666 -10961,13499,24521,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-863.8128368364069,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.57,24.17,-9,-9,10,1,1,0,0,6,5,1,0,1416,150204.1532865422,0,0,0,1554.513690187207 -10962,13500,24522,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-921.1827240235986,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,48.73130268039176,0,0,1,1,0,0,0,53.22,15.69,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,863,-76933.17894749198,0,0,0,319.6807410892665 -10963,13501,24523,24524,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.415613402828436,8.588179988564438,0,2,-3,179.6214318566037,-9,-9,-9,2019,18,8,35,0,1,8,0,14.87993984398143,14.87993984398143,0,0,0,0,0,0,0,0,0,0,30.53,65.61,51.67,60.18,8.333333333333334,4,2,0,0,4,9,5,1,1402,28998.94305710521,-25646.29397141363,240547.1722111493,215236.1385027869,3063.593464058363 -10963,13501,24524,24523,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.620877497096789,8.652789315342988,0,2,3,62.07305428629824,0,2,2,2019,10,0,38,37,1,0,0,11.72826882536554,11.72826882536554,0,0,0,0,0,0,0,0,4.061966648224936,0,51.67,60.18,30.53,65.61,8.333333333333334,1,1,0,0,6,9,5,1,1402,28998.94305710521,-25646.29397141363,240547.1722111493,215236.1385027869,3063.593464058363 -10964,13502,24525,-9,24526,24527,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.387458311214,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,790.2,-57774.45277306767,-7714.941518631376,0,0,1984.766955683794 -10964,13502,24526,24527,-9,-9,1,0,26,1,3,0,2,2,-9,0,2,0,0,0,7,-7,-62.54144978445529,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,41.21,50.28,6.666666666666667,1,1,0,0,1,7,3,0,790.2,-57774.45277306767,-7714.941518631376,0,0,1984.766955683794 -10964,13502,24527,24526,-9,-9,1,1,33,1,3,0,2,2,-9,0,2,8.135196629496251,8.431865007488586,0,7,7,105.5880115442288,0,2,2,2019,15,3,47,40,1,3,0,10.18529452470733,10.18529452470733,0,0,0,0,0,1,1,0,0,0,41.21,50.28,49.87,50.46,5,1,1,0,0,8,7,3,0,790.2,-57774.45277306767,-7714.941518631376,0,0,1984.766955683794 -10964,13502,24528,-9,24526,24527,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.3999995667,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,790.2,-57774.45277306767,-7714.941518631376,0,0,1984.766955683794 -10964,13502,24529,-9,24526,24527,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.266968225011,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,790.2,-57774.45277306767,-7714.941518631376,0,0,1984.766955683794 -10965,13503,24530,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.537291558452896,8.856190771630679,0,0,0,-1069.289831175458,0,2,2,2019,20,8,38,38,1,8,0,23.03903385097015,23.03903385097015,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,1336,-136621.2589818434,79403.41734761203,119297.7956029055,74269.47633881589,2436.029232926473 -10966,13504,24531,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.505839680804254,8.426852706186779,0,0,0,-889.1045533799911,0,2,3,2019,12,0,38,38,1,0,0,15.49900718903391,15.49900718903391,0,0,0,0,0,0,0,0,0,0,24.46,48.31,-9,-9,3.333333333333333,1,1,0,0,10,4,5,0,460,1046854.210644834,635252.7194570933,265805.0522987647,0,2223.506174410772 -10967,13505,24532,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,4.783260951997887,4.366400287751873,0,0,-1088.510927553553,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.387133301328312,53,45,-9,-9,8,1,1,0,0,0,6,2,1,512,105935.2745827311,-77480.5825943191,0,0,310.2340362096135 -10968,13506,24533,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,9.018360676264818,9.035899531793206,0,0,0,-846.4882112640659,0,2,2,2019,8,0,43,45,1,0,0,20.08953726643291,20.08953726643291,0,0,0,0,7,0,0,0,1.95477336870333,0,55.95,36.7,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,778,971982.0866083779,-81109.52933661398,389958.9964778432,21458.10298976628,2762.602120231546 -10969,13507,24534,-9,24535,24536,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.5364403118349,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10969,13507,24535,24536,-9,-9,1,0,28,0,4,0,2,2,-9,0,5,0,0,0,6,-1,8.942956320791779,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,34.77,55.52,46.91,51.8,5,1,1,0,0,1,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10969,13507,24536,24535,-9,-9,1,1,29,0,4,0,2,2,-9,0,2,7.922641969743616,7.840607588323419,0,6,1,49.70316848774905,0,-9,-9,2019,9,0,50,50,1,0,0,6.215582000327373,6.215582000327373,0,0,0,0,0,1,1,0,0,0,46.91,51.8,34.77,55.52,6.666666666666667,1,1,0,0,2,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10969,13507,24537,-9,24535,24536,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-947.4562894762179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10969,13507,24538,-9,24535,24536,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.931271791529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10969,13507,24539,-9,24535,24536,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.8512167316876,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1132,141396.3256301799,69107.75615726957,173527.2552246875,137290.5067204116,2738.351169422933 -10970,13508,24540,24541,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.681487300917725,7.935282685528492,0,5,-2,-79.91053115926908,0,-9,-9,2019,21,9,24,24,1,9,0,11.25618606448829,11.25618606448829,0,0,0,0,0,0,0,0,2.679814441543557,0,29.87,49.76,45.56,47.83,3.333333333333333,1,1,0,0,6,5,4,1,2419,57531.95754976576,-22300.45063946708,184466.9864445077,155958.5560358846,2353.9768950451 -10970,13508,24541,24540,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.128639611708346,8.41885865957342,0,5,2,-4.685060527252531,-9,-9,-9,2019,12,0,40,0,1,0,0,9.011518406982654,9.011518406982654,0,0,0,0,0,0,0,0,3.366519978656001,0,45.56,47.83,29.87,49.76,8.333333333333334,1,1,0,0,6,5,4,1,2419,57531.95754976576,-22300.45063946708,184466.9864445077,155958.5560358846,2353.9768950451 -10971,13509,24542,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,4.409311053761849,4.137589816688017,0,0,-1038.022567981008,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,4.030976632247992,13.4818843561906,27.63268681707638,0,1,1,0,4.327094415456541,4.865427511295487,53,44,-9,-9,8,1,1,0,0,0,11,2,0,341,132613.2520733412,-135986.7871120184,153007.8186921846,0,886.3448112927304 -10972,13510,24543,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,7.287331311024103,7.697165296141901,0,0,0,-929.482900080108,0,2,1,2019,27,9,65,60,1,9,0,2.598476877020987,2.598476877020987,0,0,0,0,0,0,0,0,0,0,43.56,46.39,-9,-9,10,1,1,0,1,7,13,3,0,2056,36461.69841533744,-90707.60369170461,0,0,512.7926437404196 -10973,13511,24544,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-965.2167438114545,-9,2,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,36.51,33.67,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,85,640020.3959718239,0,429556.3622543227,0,961.2789583677013 -10973,13512,24545,-9,24544,-9,1,1,36,0,0,0,3,3,-9,0,4,8.520998695962342,8.556319855932117,0,0,0,-1055.546415943596,-9,2,2,2019,10,0,36,0,1,1,0,19.98904765865459,19.98904765865459,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,5,1,1761,-78767.78447708121,0,0,0,2643.208978269117 -10974,13513,24546,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,7.784970838689,7.680760749568587,0,0,0,-889.2226117053599,0,-9,3,2019,10,0,44,46,1,0,0,7.667083605678508,7.667083605678508,0,0,0,0,0,1,1,0,0,0,48.3,41.76,-9,-9,5,1,1,0,0,2,2,3,0,209,-177331.3327185046,19108.05094709346,0,0,1224.546145464783 -10975,13514,24547,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-993.3119332854266,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,276,-69990.70114845103,0,0,0,1331.798615878613 -10976,13515,24548,-9,24550,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.864668085057,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,574.3333333333334,-52438.86874796168,23592.51109739306,0,0,2052.590606019599 -10976,13515,24549,-9,24550,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.901666082286,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,2,0,574.3333333333334,-52438.86874796168,23592.51109739306,0,0,2052.590606019599 -10976,13515,24550,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,6.978564510982758,6.832592445119638,0,0,0,-984.4018986589748,0,-9,-9,2019,7,0,16,16,1,0,0,8.284029168211257,8.284029168211257,0,0,0,0,0,1,1,0,0,0,58.47,47.36,-9,-9,10,1,1,0,0,9,13,2,0,574.3333333333334,-52438.86874796168,23592.51109739306,0,0,2052.590606019599 -10977,13516,24551,24552,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.998956464147421,8.839643574042274,0,29,6,-27.0551257608133,0,2,3,2019,3,0,40,40,1,0,0,21.03077804203068,21.03077804203068,0,0,0,0,0,0,0,0,4.344890837706258,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,11,2,5,1,604.5,909787.9369146407,714167.5547304975,219352.2439583751,55372.69914404723,5665.48749776636 -10977,13516,24552,24551,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.709044455482395,8.735904996852232,0,29,-6,-23.18525596023599,0,2,1,2019,11,0,39,40,1,0,0,17.36728552642588,17.36728552642588,0,0,0,0,0,0,0,0,1.731269678658471,0,55.19,54.26,57.16,56.15,10,1,1,0,0,10,2,5,1,604.5,909787.9369146407,714167.5547304975,219352.2439583751,55372.69914404723,5665.48749776636 -10977,13517,24553,-9,24552,24551,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1005.304097624177,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,45.85,61.26,-9,-9,6.666666666666667,1,1,0,0,1,2,1,1,477,56279.90866780282,0,0,0,630.1379756357097 -10978,13518,24554,-9,24556,24557,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1042.5138173134,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10978,13518,24555,-9,24556,24557,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1199.93618906091,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10978,13518,24556,24557,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,6.597117691070061,6.438148324727873,0,6,-2,-85.5320851368113,0,-9,-9,2019,14,2,16,0,1,2,0,6.761557570204091,6.761557570204091,0,0,0,0,0,1,1,0,0,0,42.19,58.81,49.44,56.93,6.666666666666667,1,1,0,0,1,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10978,13518,24557,24556,-9,-9,1,1,31,0,4,0,3,3,-9,0,4,7.110600850957617,7.469568962544042,0,6,2,43.20480489432742,0,2,2,2019,3,0,60,70,1,0,0,2.739692751041251,2.739692751041251,0,0,0,0,0,1,1,0,0,0,49.44,56.93,42.19,58.81,8.333333333333334,1,1,0,0,6,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10978,13518,24558,-9,24556,24557,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-994.2624326895142,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10978,13518,24559,-9,24556,24557,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-883.117654433368,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,846.6666666666666,115507.6678105691,-32005.57175973474,0,0,1698.980380449401 -10979,13519,24560,24561,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.579627342464791,7.964632355934478,34,1,40.46235248746745,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.644776638314669,7.488227551676099,56.35,43.13,55.36,51.57,8.333333333333334,1,1,0,0,7,9,5,1,520,381527.8750075667,-12068.49347765285,373861.7027073601,0,4659.854980988854 -10979,13519,24561,24560,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.134064793919435,9.129705597135608,0,34,-1,98.23698328838643,0,2,2,2019,7,0,45,40,1,0,0,18.02705392759288,18.02705392759288,0,0,0,0,2,0,0,0,4.352435231113812,0,55.36,51.57,56.35,43.13,10,1,1,0,0,9,9,5,1,520,381527.8750075667,-12068.49347765285,373861.7027073601,0,4659.854980988854 -10979,13520,24562,-9,24561,24560,1,0,31,0,0,0,1,1,-9,0,4,8.661536709718975,9.024040908543746,0,0,0,-1155.019236385421,0,2,2,2019,20,8,43,43,1,8,1,12.86555100264749,12.86555100264749,0,0,0,0,0,0,0,0,3.321181663901157,0,32.73,62.17,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,358,-108202.2503992788,-23985.6510248207,0,0,1784.265183820045 -10980,13521,24563,24564,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.876489822943704,8.516075926138766,35,-2,95.4105915267931,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.632550360216767,8.861272608074364,49.41,58.28,52.97,40.56,8.333333333333334,1,1,0,0,11,6,5,1,1494.5,2325878.894053269,1513483.052421847,391440.6992851896,4684.83299272169,4352.504970197482 -10980,13521,24564,24563,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.485411502397649,7.474810629945367,35,2,22.26942633074081,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.711483097782814,52.97,40.56,49.41,58.28,8.333333333333334,1,1,0,0,9,6,5,1,1494.5,2325878.894053269,1513483.052421847,391440.6992851896,4684.83299272169,4352.504970197482 -10981,13522,24565,24569,-9,-9,1,0,27,2,4,0,2,2,-9,0,5,0,0,0,7,-2,13.52736189707744,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.436598571692609,0,49.25,61.25,49,58,8.333333333333334,1,1,0,0,5,11,3,1,906.8,21098.42018332666,-24096.06161482325,208158.979302406,169930.1398752532,3173.439422807432 -10981,13522,24566,-9,24565,24569,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.588935528535,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,906.8,21098.42018332666,-24096.06161482325,208158.979302406,169930.1398752532,3173.439422807432 -10981,13522,24567,-9,24565,24569,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1149.214540703511,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,906.8,21098.42018332666,-24096.06161482325,208158.979302406,169930.1398752532,3173.439422807432 -10981,13522,24568,-9,24565,24569,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-924.4254794897677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,906.8,21098.42018332666,-24096.06161482325,208158.979302406,169930.1398752532,3173.439422807432 -10981,13522,24569,24565,-9,-9,1,1,29,2,4,0,2,2,-9,0,4,8.658647059630631,8.698441247758378,0,7,2,42.37025088529926,0,-9,-9,2019,10,0,45,30,1,1,0,12.73776705677222,12.73776705677222,0,0,0,0,0,1,1,0,2.113347400614634,0,49,58,49.25,61.25,7,1,1,0,0,1,11,3,1,906.8,21098.42018332666,-24096.06161482325,208158.979302406,169930.1398752532,3173.439422807432 -10982,13523,24570,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.234074509762594,8.580148275495937,0,0,0,-1005.568492378997,0,3,2,2019,9,0,44,19,1,0,0,11.24880812528458,11.24880812528458,0,0,0,0,0,0,0,0,0,0,53.57,41.27,-9,-9,6.666666666666667,1,1,0,0,2,2,4,1,791,295862.4587379751,276390.323057496,38564.68030161579,0,1578.833145147385 -10983,13524,24571,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.404563609261762,8.503920017822805,0,0,0,-988.3277332530386,0,2,3,2019,10,0,37,50,1,0,0,14.11477217426899,14.11477217426899,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,4,5,0,220,79492.39464854891,-75617.22281456321,0,0,2050.769722290109 -10984,13525,24572,24573,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,6.746864829526119,6.817861979336368,0,18,-3,24.65416395804659,0,2,3,2019,14,3,15,15,1,3,0,8.260714613923936,8.260714613923936,0,0,0,0,0,0,0,0,0,0,54.04,25.54,61.43,43.34,8.333333333333334,1,1,0,0,10,7,2,1,181,-76462.8599559829,0,0,0,2216.132093798458 -10984,13525,24573,24572,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.12551823067323,6.584649696808738,0,18,3,-46.5270362951612,0,2,3,2019,8,0,15,15,1,0,0,4.090799366662369,4.090799366662369,0,0,0,0,0,0,0,0,7.898672851572655,0,61.43,43.34,54.04,25.54,8.333333333333334,1,1,0,0,10,7,2,1,181,-76462.8599559829,0,0,0,2216.132093798458 -10985,13526,24574,24575,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-36.97312540537458,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,58.08,43.46,49.32,39.55,8.333333333333334,1,1,0,0,0,8,3,1,1769,924926.4817059559,506212.3118995882,242515.293399015,0,2532.34212875232 -10985,13526,24575,24574,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.875476159641805,7.948436398971434,54,3,-50.12903426427359,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.783344538482922,49.32,39.55,58.08,43.46,8.333333333333334,1,1,0,0,0,8,3,1,1769,924926.4817059559,506212.3118995882,242515.293399015,0,2532.34212875232 -10986,13527,24576,-9,24577,24578,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.502450900129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,486.5,450758.7505000497,222268.6529173882,216766.9001252096,44767.1459827396,2870.126993431952 -10986,13527,24577,24578,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.241673145275989,7.939255950427585,0,6,-4,-64.82101435263672,0,2,2,2019,11,0,38,0,1,0,0,8.611321284716434,8.611321284716434,0,0,0,0,0,1,1,0,0,0,53.59,49.64,55.66,45.88,8.333333333333334,1,1,0,0,7,12,4,1,486.5,450758.7505000497,222268.6529173882,216766.9001252096,44767.1459827396,2870.126993431952 -10986,13527,24578,24577,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.072300068159556,8.177472407480249,0,6,4,-5.392676262069343,0,-9,3,2019,11,3,35,35,1,3,0,10.51373535923514,10.51373535923514,0,0,0,0,0,1,1,0,0,0,55.66,45.88,53.59,49.64,8.333333333333334,1,1,0,0,7,12,4,1,486.5,450758.7505000497,222268.6529173882,216766.9001252096,44767.1459827396,2870.126993431952 -10986,13527,24579,-9,24577,24578,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.3544820699698,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,486.5,450758.7505000497,222268.6529173882,216766.9001252096,44767.1459827396,2870.126993431952 -10987,13528,24580,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,7.070592204892145,7.128126930413699,0,0,-1130.597178599348,0,2,2,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.674747242406945,7.466964951905698,37.91,53.22,-9,-9,5,1,1,0,0,0,9,3,1,129,1203600.498868007,185377.8033729036,458630.9646845881,0,1434.075643236828 -10988,13529,24581,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-946.4283927719673,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.36,57.34,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1744,138465.0442330766,0,140336.2943206294,0,312.7086199174247 -10989,13530,24582,24583,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.42395962891869,8.165424223994126,51,-4,42.89380465066193,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.757543153810221,8.020176774198134,63.99,32.39,55.73,53.98,10,1,1,0,0,2,9,4,1,1019.5,1806560.283507874,1012537.740125603,598584.8372130515,0,3962.333325549586 -10989,13530,24583,24582,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.029638411560034,8.195142458549805,51,4,-39.5550950048731,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.068025722019653,8.084205478435367,55.73,53.98,63.99,32.39,10,1,1,0,0,5,9,4,1,1019.5,1806560.283507874,1012537.740125603,598584.8372130515,0,3962.333325549586 -10990,13531,24584,24585,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.036802518288981,7.40570892807829,9,0,-99.95717219660136,0,3,3,2019,5,0,0,39,4,0,0,0,0,0,0,0,0,0,1,1,0,7.175120792738181,7.007257729925501,58.15,52.91,51.83,57.2,10,1,1,0,0,9,5,2,1,800,529610.6057037761,492782.0921450038,124175.5309641774,0,1992.129047526055 -10990,13531,24585,24584,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,9,0,-17.52871197547665,0,2,3,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,3.574434956093663,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,9,5,2,1,800,529610.6057037761,492782.0921450038,124175.5309641774,0,1992.129047526055 -10991,13532,24586,24587,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.877770638358398,8.180945160855261,6,-1,91.95531428788877,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.76756812419153,51.83,57.2,60.42,52.11,8.333333333333334,1,1,0,0,0,11,3,1,916.5,604394.708011942,518538.1621685123,87375.3697267596,0,2098.10757194094 -10991,13532,24587,24586,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,5.227554972791547,5.187835148106939,6,1,-111.6325779594397,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.056651834475911,60.42,52.11,51.83,57.2,1.666666666666667,1,1,0,0,0,11,3,1,916.5,604394.708011942,518538.1621685123,87375.3697267596,0,2098.10757194094 -10992,13533,24588,24590,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.611461185267327,8.281125316978427,0,19,5,-9.713248678747011,0,3,3,2019,17,6,54,50,1,6,0,11.56367366958038,11.56367366958038,0,0,0,0,0,1,1,0,0,0,30.71,65.7,48.77,60.16,5,1,1,0,0,9,2,4,1,640.75,210546.7559533804,-24247.77058056902,93515.16447732961,53249.35808055736,3352.534913250191 -10992,13533,24589,-9,24590,24588,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.7685393844432,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,640.75,210546.7559533804,-24247.77058056902,93515.16447732961,53249.35808055736,3352.534913250191 -10992,13533,24590,24588,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,7.911570452262219,8.313934763241592,0,20,-5,-53.19334631515643,0,3,2,2019,12,1,34,29,1,1,0,7.990521235012143,7.990521235012143,0,0,0,0,0,1,1,0,0,0,48.77,60.16,30.71,65.7,5,1,1,0,0,9,2,4,1,640.75,210546.7559533804,-24247.77058056902,93515.16447732961,53249.35808055736,3352.534913250191 -10992,13533,24591,-9,24590,24588,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.8773078833549,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,640.75,210546.7559533804,-24247.77058056902,93515.16447732961,53249.35808055736,3352.534913250191 -10993,13534,24592,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.754436543171296,10.03769691810151,0,0,0,-1012.100845763333,0,3,2,2019,9,0,60,37,1,0,0,28.86784422459364,28.86784422459364,0,0,0,0,0,0,0,0,0,0,46.66,56.93,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,149,243833.9693846134,154274.8088365117,356777.1262739204,177172.6216806739,7605.928421312887 -10994,13535,24593,24594,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.988242761941487,8.393171051425664,7.274600157336084,6,7,-97.26290848958602,0,3,2,2019,10,3,38,37,1,3,0,8.740865372853985,8.740865372853985,0,0,0,0,14.5,1,1,0,0,7.806668472639483,50.82,36.05,49.04,55.86,1.666666666666667,1,1,0,0,9,9,5,1,838,1742695.390975219,1027857.235242553,517724.5374540312,0,3496.638265891263 -10994,13535,24594,24593,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.206637617253852,8.143500358710062,0,6,-7,41.51809948677239,0,-9,-9,2019,10,0,47,37,1,0,0,9.491061117585099,9.491061117585099,0,0,0,0,27,1,1,0,2.406205276603633,0,49.04,55.86,50.82,36.05,5,1,1,0,0,11,9,5,1,838,1742695.390975219,1027857.235242553,517724.5374540312,0,3496.638265891263 -10995,13536,24595,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.423260853887031,8.154808608286173,0,0,0,-929.7207160442279,0,2,2,2019,6,0,40,40,1,0,0,12.05961954081808,12.05961954081808,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,867,-74656.48861267521,0,0,0,1293.985191869475 -10996,13537,24596,24597,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.700349863665,8.851997540002962,0,21,0,15.65097756062288,0,2,2,2019,6,0,40,40,1,0,0,14.51266046952066,14.51266046952066,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.72,51.29,8.333333333333334,1,1,0,0,13,6,4,1,620,918427.2809980678,760058.305859589,164997.6922906663,107541.6365845967,4365.635647025477 -10996,13537,24597,24596,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.818939082598733,9.083685478087485,0,10,0,-89.81821369674373,0,1,3,2019,12,0,56,50,1,0,0,12.09595139334424,12.09595139334424,0,0,0,0,0,1,1,0,0,0,58.72,51.29,57.16,56.15,8.333333333333334,1,1,0,0,11,6,4,1,620,918427.2809980678,760058.305859589,164997.6922906663,107541.6365845967,4365.635647025477 -10996,13537,24598,-9,24597,24596,1,1,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1088.630430881251,-9,1,2,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,3.824888323548088,0,55.05,49,-9,-9,8.333333333333334,1,1,1,0,0,6,4,1,620,918427.2809980678,760058.305859589,164997.6922906663,107541.6365845967,4365.635647025477 -10997,13538,24599,24600,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,-4,65.09797989366746,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,2.099834467871487,3.313718438862654,0,0,1,1,0,4.362101279888792,0,52,45,60.02,56.42,8,1,1,0,0,0,12,3,1,1528.5,105526.8126621425,0,0,0,2107.041705845704 -10997,13538,24600,24599,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,7.351051218666499,7.796141647018395,56,4,79.66148147813786,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.565169318360999,60.02,56.42,52,45,8.333333333333334,1,1,0,0,0,12,3,1,1528.5,105526.8126621425,0,0,0,2107.041705845704 -10998,13539,24601,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.772755812729366,7.891858904262418,0,0,0,-825.6573628153277,-9,3,3,2019,11,0,30,0,1,0,0,8.809246917395598,8.809246917395598,0,0,0,0,0,1,1,0,3.805791763333199,0,40.75,58.26,-9,-9,7,1,1,0,0,9,10,3,1,807,-43127.92452065206,117173.247141959,0,0,1661.849126087196 -10998,13540,24602,-9,24601,-9,1,0,23,0,0,0,2,2,-9,0,3,7.887372797380066,7.921622912808795,0,0,0,-982.8996281283244,-9,2,2,2019,16,4,36,0,1,4,1,8.968246977256108,8.968246977256108,0,0,0,0,0,1,1,0,0,0,40.81,48.99,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,323,-71095.83886202594,-4325.227371939905,0,0,1720.925667976841 -10999,13541,24603,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,5,0,6.503021622646965,6.451574289407553,0,0,-952.9818597018028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.919382660807746,6.437824581296162,62.39,56.71,-9,-9,10,1,1,0,0,0,5,2,1,235,543890.7358618889,0,303353.833250949,0,1132.03030115735 -11000,13542,24604,24605,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.776656922010755,5.068247568505915,49,0,68.84884201948063,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.628114467403345,4.638580260776381,47.64,49.49,57.06,57.76,8.333333333333334,1,1,0,0,0,8,2,1,1112.5,447057.224560351,18823.22127812222,196332.8612136703,0,1974.601816455277 -11000,13542,24605,24604,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.556901621630343,7.593436821871501,7,0,-26.83801367991915,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.755249191854125,7.445027674055854,57.06,57.76,47.64,49.49,8.333333333333334,1,1,0,0,0,8,2,1,1112.5,447057.224560351,18823.22127812222,196332.8612136703,0,1974.601816455277 -11001,13543,24606,24607,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.325236173849524,9.852393934087035,0,8,2,25.39595101459921,0,1,2,2019,12,0,48,46,1,0,0,34.67037790152638,34.67037790152638,0,0,0,0,0,0,0,0,0,0,49.58,55.59,60.04,48.05,6.666666666666667,1,1,0,0,8,9,5,1,746.3333333333334,3601471.75202788,2743127.313976169,692629.6144787949,145873.4928636899,6868.057368303821 -11001,13543,24607,24606,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.750588369915034,8.566945815375158,0,8,-2,-54.04899854613327,0,2,1,2019,7,0,46,43,1,0,0,22.68512148072808,22.68512148072808,0,0,0,0,0,0,0,0,5.489167085002489,0,60.04,48.05,49.58,55.59,8.333333333333334,1,1,0,0,8,9,5,1,746.3333333333334,3601471.75202788,2743127.313976169,692629.6144787949,145873.4928636899,6868.057368303821 -11001,13543,24608,-9,24607,24606,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.3472361739953,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,746.3333333333334,3601471.75202788,2743127.313976169,692629.6144787949,145873.4928636899,6868.057368303821 -11001,13544,24609,-9,24607,24606,1,1,18,0,1,0,2,2,-9,0,3,7.852367379132771,7.748588596836143,0,0,0,-1054.250484367012,-9,1,1,2019,17,5,38,0,1,5,1,7.449425222221841,7.449425222221841,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,3343,-53405.58419385381,-70857.83848143484,0,0,823.6306547874535 -11002,13545,24610,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.393576028824,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,27,1,0,1,0,0,35.18,27.16,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,198,0,0,0,0,1001.248911399647 -11003,13546,24611,24614,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,7.468227802614053,7.46573362099121,0,6,0,34.60251901273094,0,-9,-9,2019,10,0,20,60,1,0,0,12.70527359961167,12.70527359961167,0,0,0,0,0,1,1,0,7.251701151545664,0,57.06,57.76,44.19,56.73,6.666666666666667,1,1,0,0,10,7,3,1,686,98855.51735967904,-59809.86019061523,0,0,4531.028867714456 -11003,13546,24612,-9,24614,24611,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-951.2500325910192,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,3,1,686,98855.51735967904,-59809.86019061523,0,0,4531.028867714456 -11003,13546,24613,-9,24614,24611,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.253864261193,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,686,98855.51735967904,-59809.86019061523,0,0,4531.028867714456 -11003,13546,24614,24611,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.706303364265327,7.486688800953616,0,6,0,42.10246540912308,0,2,1,2019,11,1,15,12,1,1,0,15.52631084885522,15.52631084885522,0,0,0,0,0,1,1,0,8.316308706459795,0,44.19,56.73,57.06,57.76,6.666666666666667,1,1,0,0,9,7,3,1,686,98855.51735967904,-59809.86019061523,0,0,4531.028867714456 -11004,13547,24615,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.506974979839179,6.370913047053118,0,0,-908.8392573835233,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.439943210495192,45.49,50.81,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,121,101608.8331713081,6783.10789415022,0,0,1422.064554402393 -11005,13548,24616,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.18172700718338,8.474542125832617,0,7,2,-41.92874650404742,0,1,2,2019,8,1,40,46,1,1,0,13.40446444024342,13.40446444024342,0,0,0,0,0,0,0,0,0,0,35.8,59.5,47,57,8.333333333333334,1,1,0,0,6,2,5,0,950,44986.63839658993,92008.17028200874,0,0,2141.544423437374 -11005,13549,24617,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.909144248039044,7.961692527741853,0,7,-2,68.04336238351901,0,-9,-9,2019,11,0,37,44,1,2,0,10.16548329871111,10.16548329871111,0,0,0,0,0,0,0,0,0,0,47,57,35.8,59.5,7,1,1,0,0,1,2,5,0,2598,-93559.58762080579,-82543.30559608519,0,0,364.0938562460894 -11006,13550,24618,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.294049132837152,6.801986766166607,0,0,-967.6216353508568,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,5.515134202961161,0,0,0,1,1,0,.9728994586945563,7.000342655570217,58.09,32.73,-9,-9,5,1,1,0,0,0,9,2,1,1229,282831.6940623808,13441.68475283789,159556.5669107971,0,1668.945693895709 -11007,13551,24619,24620,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,5,13,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.607677429185047,0,54,46,50,47,8,1,1,0,0,0,12,1,1,839.5,185416.4003244262,0,129781.4284556066,0,1270.603840946629 -11007,13551,24620,24619,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,16,-13,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,1.698457603631567,48.80112277129031,0,0,1,1,0,0,0,50,47,54,46,7,4,5,0,0,0,12,1,1,839.5,185416.4003244262,0,129781.4284556066,0,1270.603840946629 -11008,13552,24621,24622,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.887665284178393,7.666176805158651,0,8,-5,-9.678504629083688,0,3,3,2019,10,0,39,39,1,0,0,7.905300142881564,7.905300142881564,0,0,0,0,0,1,1,0,0,0,44.11,55.31,56.19,46.16,6.666666666666667,1,1,0,0,10,2,4,1,682,87127.35031690824,69891.68060539966,93234.44672752669,58204.88301442846,2793.671992174802 -11008,13552,24622,24621,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,7.893592664868879,8.069990404900222,0,8,5,-85.61316565889071,0,-9,-9,2019,11,0,47,44,1,0,0,8.658625265689922,8.658625265689922,0,0,0,0,0,1,1,0,0,0,56.19,46.16,44.11,55.31,8.333333333333334,1,1,0,0,8,2,4,1,682,87127.35031690824,69891.68060539966,93234.44672752669,58204.88301442846,2793.671992174802 -11009,13553,24623,24624,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.552911334815898,6.185053304961271,8,-5,-75.08257958454702,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.217645683557885,6.615034562880493,42.23,49.99,58.32,50.22,5,1,1,0,0,4,4,2,1,810,726874.9971276587,482316.6947502661,168163.6590608176,0,1721.36450405236 -11009,13553,24624,24623,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.712367233124617,6.597239070425346,8,5,8.856722907808237,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.196254743208214,6.730465274997061,58.32,50.22,42.23,49.99,8.333333333333334,1,1,0,0,0,4,2,1,810,726874.9971276587,482316.6947502661,168163.6590608176,0,1721.36450405236 -11010,13554,24625,24626,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,57,-2,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52,45,54,45,8,4,5,0,0,0,8,2,0,237,534607.5932564536,0,275757.4743245492,0,2312.024769047933 -11010,13554,24626,24625,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,57,2,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,6.351733316613709,122.8107968118806,65.35254815590731,0,1,1,0,0,0,54,45,52,45,8,4,5,0,0,0,8,2,0,237,534607.5932564536,0,275757.4743245492,0,2312.024769047933 -11011,13555,24627,24629,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.337901742728362,7.62189898947437,0,34,2,-105.0455045611722,0,-9,-9,2019,6,0,26,18,1,0,0,8.755082228280271,8.755082228280271,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.68,50.49,10,1,1,0,0,9,4,4,0,723.3333333333334,495258.6301831619,542386.2276780818,160933.8566516513,86375.86532403469,2728.695837633493 -11011,13555,24628,-9,24627,24629,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.131346823727,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,0,723.3333333333334,495258.6301831619,542386.2276780818,160933.8566516513,86375.86532403469,2728.695837633493 -11011,13555,24629,24627,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,8.179145584232554,8.187110411250892,0,28,-2,-66.95629368368596,0,2,2,2019,12,0,42,43,1,0,0,10.70907416938727,10.70907416938727,0,0,0,0,0,1,1,0,0,0,49.68,50.49,57.33,53.46,5,1,1,0,0,5,4,4,0,723.3333333333334,495258.6301831619,542386.2276780818,160933.8566516513,86375.86532403469,2728.695837633493 -11012,13556,24630,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-956.4001557685349,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.45,37.1,-9,-9,1.666666666666667,2,3,1,0,0,8,2,0,620,33237.9832325367,0,0,0,895.6002258191438 -11013,13557,24631,24633,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.228814776279274,7.904920774895345,6.948979323410659,38,5,42.91333083130235,0,3,3,2019,11,0,20,30,1,0,0,9.137051710617399,9.137051710617399,0,0,0,0,0,1,1,0,6.773625384340537,0,47.77,56.48,50.6,53.68,6.666666666666667,1,1,0,0,12,10,3,1,895.6666666666666,1285251.688933472,511522.0966026417,413215.4606693187,0,1580.322273930739 -11013,13557,24632,-9,24633,24631,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-939.3899407076111,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,10,3,1,895.6666666666666,1285251.688933472,511522.0966026417,413215.4606693187,0,1580.322273930739 -11013,13557,24633,24631,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,38,-5,39.63326331784788,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.6,53.68,47.77,56.48,6.666666666666667,1,1,0,0,9,10,3,1,895.6666666666666,1285251.688933472,511522.0966026417,413215.4606693187,0,1580.322273930739 -11014,13558,24634,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,8.414110883737616,8.661690450078076,0,0,-976.0724097886331,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.769879245003917,8.288289743138181,65.21000000000001,44.28,-9,-9,10,1,1,0,0,0,7,5,1,1539,772756.1720067136,318801.6189854386,148251.7438925493,0,3719.465369937664 -11015,13559,24635,-9,24636,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.341035027355,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,4,1,932.5,343669.7612750205,123886.0153238098,193110.5179007041,52359.29237826707,2141.248386448618 -11015,13559,24636,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.381505626518456,8.389851311171739,5.49025698699641,0,0,-960.8298760974899,0,3,3,2019,6,0,10,15,1,0,0,52.04032439093862,52.04032439093862,0,0,0,0,0,1,1,0,6.222612201929576,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,932.5,343669.7612750205,123886.0153238098,193110.5179007041,52359.29237826707,2141.248386448618 -11016,13560,24637,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1074.048027084822,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,13.43554235868343,0,0,1,1,0,0,0,46.02,44.01,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,178,195321.3279461178,0,159369.0196768736,0,1645.752292412516 -11016,13561,24638,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.311235401876349,8.330985727559554,0,0,0,-914.0416263523244,0,3,2,2019,9,1,45,40,1,1,0,12.32476188678614,12.32476188678614,0,0,0,0,14.5,1,1,0,4.195003752297424,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,424,90988.24099835468,-61336.05618145248,0,0,1443.741559184813 -11017,13562,24639,24640,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.097511536434549,8.465465077542175,0,8,-1,11.08268425414641,0,2,2,2019,13,4,20,18,1,4,0,23.30862283611773,23.30862283611773,0,0,0,0,0,0,0,0,2.901057512440353,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,9,12,5,1,482.5,1124946.868399265,689654.9106792312,321094.7639247547,0,3013.242301529714 -11017,13562,24640,24639,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.142535093018491,8.254517652006784,0,8,1,-85.94574608448433,0,2,2,2019,8,0,37,37,1,0,0,13.74397818921042,13.74397818921042,0,0,0,0,0,0,0,0,7.053093897081424,0,57.73,54.53,54.2,57.49,10,1,1,0,0,9,12,5,1,482.5,1124946.868399265,689654.9106792312,321094.7639247547,0,3013.242301529714 -11018,13563,24641,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.666558144055,0,2,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,40.8,30.46,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,254,-129327.6979758952,0,0,0,1456.012432083962 -11019,13564,24642,24643,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,7.956465519761187,7.698854887468269,0,11,-2,15.21083278319394,0,1,1,2019,9,0,60,56,1,0,0,5.325636370648831,5.325636370648831,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49,56,8.333333333333334,1,1,0,0,7,8,3,0,1292.75,731677.6074978801,138696.219419839,513466.3420810694,3364.570743789343,1655.109586664786 -11019,13564,24643,24642,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.129971934509653,6.794622472548298,0,11,2,17.06319997841939,0,3,2,2019,11,0,19,18,1,2,0,6.24204178658421,6.24204178658421,0,0,0,0,0,1,1,0,0,0,49,56,60.02,56.42,7,1,1,0,0,3,8,3,0,1292.75,731677.6074978801,138696.219419839,513466.3420810694,3364.570743789343,1655.109586664786 -11019,13564,24644,-9,24643,24642,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.773441172924,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,3,0,1292.75,731677.6074978801,138696.219419839,513466.3420810694,3364.570743789343,1655.109586664786 -11019,13564,24645,-9,24643,24642,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.425290178462,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,0,1292.75,731677.6074978801,138696.219419839,513466.3420810694,3364.570743789343,1655.109586664786 -11020,13565,24646,24647,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,6.270583842519525,6.49994479040058,46,1,41.58972101996343,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.881667950181708,6.271738617085223,61.28,48.88,53.21,36.79,10,1,1,0,0,7,12,2,1,1206,1153105.11878394,298922.2612596712,305755.2730058146,0,1319.900935776946 -11020,13565,24647,24646,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.127152703500121,7.015881764155693,46,-1,22.05331530145082,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.215221810597825,53.21,36.79,61.28,48.88,6.666666666666667,1,1,0,0,5,12,2,1,1206,1153105.11878394,298922.2612596712,305755.2730058146,0,1319.900935776946 -11021,13566,24648,24649,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,7.191825063548404,7.753337978802014,6.06709637573972,42,0,-5.294228650930313,0,2,1,2019,13,2,20,20,1,2,0,5.345439311520167,5.345439311520167,0,0,0,0,0,1,1,0,7.157231249442167,0,45.3,51.93,53.32,40.19,8.333333333333334,1,1,0,0,11,8,4,1,286.5,1809085.450090782,347608.1514380226,1428849.162178061,0,3689.736767951165 -11021,13566,24649,24648,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.150349419171501,8.3602539884478,42,9,155.6461819063901,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.146768417594383,8.009118620629655,53.32,40.19,45.3,51.93,5,1,1,0,0,8,8,4,1,286.5,1809085.450090782,347608.1514380226,1428849.162178061,0,3689.736767951165 -11022,13567,24650,24651,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,24,2,-18.98000218451801,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.3,35.24,58.47,44.69,8.333333333333334,1,1,0,0,7,2,5,1,1052.5,74274.62042725988,47844.41945940375,84064.99957881399,43100.52686071607,2620.965881509117 -11022,13567,24651,24650,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.806706353793677,9.096838523586801,0,24,-2,-71.19226679261013,0,2,1,2019,9,0,50,55,1,0,0,16.86301262155991,16.86301262155991,0,0,0,0,2,0,0,0,0,0,58.47,44.69,64.3,35.24,6.666666666666667,1,1,0,0,9,2,5,1,1052.5,74274.62042725988,47844.41945940375,84064.99957881399,43100.52686071607,2620.965881509117 -11023,13568,24652,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,5,0,5.554431987851562,6.117838156960948,0,0,-1030.037390955466,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.46346525549091,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,229,212630.7548149482,0,0,0,10.78580890816136 -11024,13569,24653,24654,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.349291454543023,6.664620591838168,2,-7,-111.0603402910002,-9,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.250881530074229,6.599945933740457,63.24,42.39,52.82,53.97,8.333333333333334,1,1,0,0,0,12,3,1,2475,468271.411743751,441426.8234700237,172980.2697962034,0,3205.77314530647 -11024,13569,24654,24653,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.765706021239682,7.612505440088588,2,7,19.90444338012939,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.742027315276564,7.700088042319028,52.82,53.97,63.24,42.39,8.333333333333334,1,1,0,0,0,12,3,1,2475,468271.411743751,441426.8234700237,172980.2697962034,0,3205.77314530647 -11025,13570,24655,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,8.146331257372724,8.540453141716679,0,0,0,-1060.501078593508,0,3,2,2019,6,0,38,56,1,0,0,10.1724353180768,10.1724353180768,0,0,0,0,0,0,0,0,0,0,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,154,-109911.591823308,34990.58527159123,0,0,1456.897861491018 -11026,13571,24656,24657,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.55023383680976,6.535763499126684,53,9,145.1388393994137,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.996030819373044,6.68489823088917,51.49,24.48,52.99,51.28,5,1,1,0,0,9,2,2,1,1207,269415.2506965953,141223.7268240958,87217.15554253681,0,1964.448821478876 -11026,13571,24657,24656,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.093989888040428,7.190249984351923,2.812545102031366,53,0,-147.595239736054,0,3,3,2019,12,1,40,40,1,1,0,3.47562114348665,3.47562114348665,0,0,0,0,14.5,1,1,0,3.001220056186544,3.334176337808207,52.99,51.28,51.49,24.48,6.666666666666667,1,1,0,0,10,2,2,1,1207,269415.2506965953,141223.7268240958,87217.15554253681,0,1964.448821478876 -11027,13572,24658,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.555767401718896,5.705548623661879,0,0,-990.79338683895,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.379361993695104,58.9,45.74,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,2142,321353.571868304,114178.6064084323,110228.5878092242,0,1202.851751270799 -11027,13573,24659,-9,24658,-9,1,1,35,0,0,0,1,1,1,0,3,0,0,0,0,0,-931.5785335655511,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,-9,-9,6.666666666666667,1,1,0,0,7,12,1,1,66,-13.04741989415594,0,0,0,816.5801286710002 -11028,13574,24660,-9,24662,24661,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.7061180099762,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,463.3333333333333,145772.8279059519,-13593.0326101826,298405.8798496297,185199.7319412255,3719.329784125245 -11028,13574,24661,24662,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.850993651846512,8.992028297599234,0,6,3,5.094738593613581,0,1,1,2019,11,1,40,40,1,1,0,16.86598876832696,16.86598876832696,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,463.3333333333333,145772.8279059519,-13593.0326101826,298405.8798496297,185199.7319412255,3719.329784125245 -11028,13574,24662,24661,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,7.634173712765175,7.494227222952198,0,6,-3,12.26197556303601,0,-9,-9,2019,3,0,10,18,1,0,0,25.58760698306285,25.58760698306285,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,10,1,1,0,0,5,7,5,1,463.3333333333333,145772.8279059519,-13593.0326101826,298405.8798496297,185199.7319412255,3719.329784125245 -11029,13575,24663,24664,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.150717523630877,7.055808653109684,50,1,-146.5163070556476,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.973434639688874,62.03,36.18,59.65,34.05,8.333333333333334,1,1,0,0,6,2,2,1,690,467664.145518708,393459.1377482142,120530.4868976111,0,1831.055269931769 -11029,13575,24664,24663,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.305366920484683,5.526728659795856,50,-1,-11.3947338275472,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.123708946172141,59.65,34.05,62.03,36.18,8.333333333333334,1,1,0,0,6,2,2,1,690,467664.145518708,393459.1377482142,120530.4868976111,0,1831.055269931769 -11030,13576,24665,24666,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.309847142133538,7.451891997731356,0,5,-18,-17.60523646037123,0,2,2,2019,17,5,18,15,1,5,0,11.48284391616872,11.48284391616872,0,0,0,0,27,1,1,0,0,0,43.15,32.98,41.92,25.86,5,1,1,0,0,11,2,2,0,1160,478826.5620528809,31051.25166428756,328677.7214145568,22610.00874725797,3066.244785552306 -11030,13576,24666,24665,-9,-9,1,1,60,0,1,0,3,3,-9,1,1,0,0,0,5,18,71.78590272195156,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.92,25.86,43.15,32.98,5,1,1,0,0,0,2,2,0,1160,478826.5620528809,31051.25166428756,328677.7214145568,22610.00874725797,3066.244785552306 -11031,13577,24667,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1060.638786276919,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,39.65,50.66,-9,-9,5,1,1,0,0,0,11,1,0,929,280034.6490335372,0,0,0,1062.181257707065 -11031,13578,24668,-9,24667,-9,1,0,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1039.102665106072,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,185,-102692.762751349,0,0,0,1202.983718390001 -11031,13579,24669,-9,24667,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-927.5326667132101,0,2,-9,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,5.48,1,1,0,0,0,28.09,53.14,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,1663,181982.2140664654,0,0,0,0 -11032,13580,24670,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.380983629386439,5.080006905451238,0,0,-995.2301920999913,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,2.34664820293856,0,0,1,1,0,0,5.288534005652311,31.87,20.71,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,594,69922.76893641469,8732.947610916106,185306.2587927164,0,2716.308772738524 -11033,13581,24671,24672,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,8.645572226948087,8.545332662011976,0,27,6,-.039213047998838,0,2,2,2019,7,0,38,45,1,0,0,17.68620004702145,17.68620004702145,0,0,0,0,0,1,1,0,0,0,52.15,52.9,47.07,53.97,8.333333333333334,1,1,0,0,10,4,5,1,718,1595990.988301183,1252842.342678124,353049.2271763448,119589.0130062693,3674.883603580621 -11033,13581,24672,24671,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.457043879957808,8.349744874905934,0,27,-6,22.71728025539674,0,3,3,2019,13,1,30,32,1,1,0,16.17321711177134,16.17321711177134,0,0,0,0,0,1,1,0,0,0,47.07,53.97,52.15,52.9,8.333333333333334,1,1,0,0,10,4,5,1,718,1595990.988301183,1252842.342678124,353049.2271763448,119589.0130062693,3674.883603580621 -11033,13581,24673,-9,24672,24671,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-981.5814212332983,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,5,1,718,1595990.988301183,1252842.342678124,353049.2271763448,119589.0130062693,3674.883603580621 -11033,13582,24674,-9,24672,24671,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1009.894625710927,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.6274148684973279,0,46,58,-9,-9,7,1,1,0,0,0,4,1,1,274,-88141.38396075853,0,0,0,3.19520035298218 -11034,13583,24675,24677,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.848632578477831,7.836419155244311,0,19,-1,-76.1497020202834,0,2,1,2019,11,2,26,31,1,2,0,10.97718948705722,10.97718948705722,0,0,0,0,0,1,1,0,0,0,50.51,53.71,57.16,56.15,1.666666666666667,1,1,0,0,6,2,4,1,536,670992.1809135567,419106.2927707385,234763.683881153,0,2696.680109808813 -11034,13583,24676,-9,24675,24677,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1023.317119483426,-9,1,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.96,43.47,-9,-9,10,1,1,0,0,0,2,4,1,536,670992.1809135567,419106.2927707385,234763.683881153,0,2696.680109808813 -11034,13583,24677,24675,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.448918783723242,8.066419153468253,0,19,1,3.063476900451141,0,2,2,2019,7,0,38,40,1,0,0,12.13330066448153,12.13330066448153,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.51,53.71,8.333333333333334,1,1,0,0,9,2,4,1,536,670992.1809135567,419106.2927707385,234763.683881153,0,2696.680109808813 -11035,13584,24678,24679,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.189561569826568,6.328602126920446,5,-5,-15.96399253672717,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.350098490251366,6.340416316918208,46.67,58.37,31.84,51.65,6.666666666666667,1,1,0,0,0,4,2,1,2258,893760.1979680423,229136.445219558,261113.8029848282,0,2143.610362439059 -11035,13584,24679,24678,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.104078792697155,7.103251028532681,5,5,15.71442456216491,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.849439468523127,6.636209985599842,31.84,51.65,46.67,58.37,6.666666666666667,1,1,0,0,0,4,2,1,2258,893760.1979680423,229136.445219558,261113.8029848282,0,2143.610362439059 -11036,13585,24680,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.938909675720776,6.012977028553967,0,0,-1078.929880808617,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.12975492643704,44.06684876115947,135.1663588576092,0,1,1,0,0,5.637891437739147,53,45,-9,-9,8,1,1,0,0,0,7,2,0,2805,536951.2013673744,79223.2277367356,303495.9649315417,0,1527.206034640491 -11037,13586,24681,24682,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,18,-7,54.99774712664878,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.326324583302596,0,52.13,57.22,54.2,57.49,8.333333333333334,1,1,0,0,8,11,4,1,411,2159681.83092098,1521550.679463556,103610.4733631981,0,2627.261222972282 -11037,13586,24682,24681,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.822941198452531,8.247991089877431,18,7,-113.4595281730162,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.121039607939309,8.328556493337393,54.2,57.49,52.13,57.22,1.666666666666667,1,1,0,0,8,11,4,1,411,2159681.83092098,1521550.679463556,103610.4733631981,0,2627.261222972282 -11037,13587,24683,-9,24682,24681,1,0,22,0,0,0,2,2,1,0,4,7.350697687846902,7.033761910963621,0,0,0,-965.1672714603649,-9,1,2,2019,11,0,40,0,1,2,0,4.183039605824892,4.183039605824892,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,1490,0,0,0,0,1159.723623866139 -11038,13588,24684,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.887713582539416,7.26483609946504,0,0,-1047.061504308961,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.954697103694493,7.549909626039114,49.41,58.28,-9,-9,10,1,1,0,0,0,12,3,1,85,353958.6425257177,303284.895438849,197914.821895638,76591.69005591991,1723.580413789176 -11039,13589,24685,24686,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.533717712264892,6.600888117388044,6,-4,66.4484782610262,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.564495013090331,6.826660352144446,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,10,2,1,423.5,996175.3351099695,347782.5694829656,188550.4435213745,0,858.5483791105315 -11039,13589,24686,24685,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.653639247782422,6.894396871809011,6,4,-14.12597429569363,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.865558962989652,6.554692320499544,57.16,56.15,57.16,56.15,10,1,1,0,0,2,10,2,1,423.5,996175.3351099695,347782.5694829656,188550.4435213745,0,858.5483791105315 -11040,13590,24687,24688,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.022281439507738,8.091906167737207,0,8,-8,-132.4665002460668,0,-9,-9,2019,6,0,42,37,1,0,0,8.642843951179479,8.642843951179479,0,0,0,0,0,0,0,0,0,0,62.9,43.1,46.56,46.65,10,1,1,0,0,12,12,5,1,660,868765.1783984439,489437.1755986045,607044.8888239053,236403.6568891421,3146.886378324246 -11040,13590,24688,24687,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.432626986400654,8.382048269827147,0,8,8,-31.00700386247712,0,3,3,2019,10,0,39,40,1,0,0,12.93171389031812,12.93171389031812,0,0,0,0,0,0,0,0,0,0,46.56,46.65,62.9,43.1,8.333333333333334,1,1,0,0,11,12,5,1,660,868765.1783984439,489437.1755986045,607044.8888239053,236403.6568891421,3146.886378324246 -11041,13591,24689,24690,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,7.268323580984136,7.483150016766949,5.189901246020025,27,-2,49.76354972472284,0,-9,-9,2019,8,0,20,15,1,0,0,9.911899106665816,9.911899106665816,0,0,0,0,0,1,1,0,5.61162472508212,5.13300772624097,56.5,48.33,51.18,40.21,8.333333333333334,1,1,0,0,13,9,4,1,532.5,1324399.619227944,733063.2694476964,456594.3650219832,0,4224.473735302061 -11041,13591,24690,24689,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.065853668870265,7.688272602866031,27,2,-.7919000701397352,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.82634781291933,7.903578513925009,51.18,40.21,56.5,48.33,8.333333333333334,1,1,0,0,0,9,4,1,532.5,1324399.619227944,733063.2694476964,456594.3650219832,0,4224.473735302061 -11042,13592,24691,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1069.344570082304,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.1098734544279386,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,433,-97587.9123793808,0,0,0,479.7487576286687 -11043,13593,24692,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.80026390431958,7.889084429529973,0,0,0,-984.5890954808224,0,3,2,2019,14,3,38,43,1,3,0,10.31724346411193,10.31724346411193,0,0,0,0,0,0,0,0,6.635954366380131,0,42.12,61.5,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,147,-17184.89898639,-25991.15086964335,0,0,1651.564929407278 -11044,13594,24693,24694,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.735159370754713,8.122500017262611,44,-2,68.54634853458836,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.245643068967776,7.646565552263135,60.28,43.74,45.97,41.17,10,1,1,0,0,5,6,4,1,416.5,1307595.723525702,1188688.897610477,246608.8779592922,0,4921.439373149102 -11044,13594,24694,24693,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.236031291004789,8.233664599228165,44,2,66.84436512331378,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.756816130864102,8.2782387265973,45.97,41.17,60.28,43.74,10,1,1,0,0,0,6,4,1,416.5,1307595.723525702,1188688.897610477,246608.8779592922,0,4921.439373149102 -11045,13595,24695,24696,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.276090191733942,7.031112672830877,4.156294403479087,1,3,-12.97061975803743,-9,-9,-9,2019,6,0,21,0,1,0,0,8.08137129884067,8.08137129884067,0,0,0,0,0,1,1,0,0,4.481203040045273,54.96,53.17,60.52,53.2,8.333333333333334,1,1,0,0,9,7,4,0,397.5,957027.1560658338,-4907.783632962412,819241.782179045,0,2559.091607873479 -11045,13595,24696,24695,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.27979890134938,8.601325432162653,0,1,-3,138.3117421752264,-9,3,3,2019,6,0,45,0,1,0,0,10.70981123973394,10.70981123973394,0,0,0,0,0,1,1,0,0,0,60.52,53.2,54.96,53.17,8.333333333333334,1,1,0,0,7,7,4,0,397.5,957027.1560658338,-4907.783632962412,819241.782179045,0,2559.091607873479 -11046,13596,24697,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.336657725289431,9.155762455676905,0,0,0,-998.5867605252677,0,3,2,2019,13,1,38,38,1,1,0,30.44001721375416,30.44001721375416,0,0,0,0,0,0,0,0,3.58164062473648,0,34.55,51.58,-9,-9,5,1,1,0,0,10,9,5,1,449,93383.25321097566,149704.2587385832,0,0,2698.125490906238 -11047,13597,24698,24700,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.750577350366308,9.817833769743448,0,17,-2,-2.45116977741351,0,2,2,2019,6,0,60,70,1,0,0,36.84467716654423,36.84467716654423,0,0,0,0,0,0,0,0,0,0,53.99,48.04,52.99,51.28,6.666666666666667,1,1,0,0,7,4,5,1,737.3333333333334,672970.572300166,376868.6968512546,269194.3985939883,69278.14921785019,6010.828507059246 -11047,13597,24699,-9,24700,24698,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-851.6525525629902,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,737.3333333333334,672970.572300166,376868.6968512546,269194.3985939883,69278.14921785019,6010.828507059246 -11047,13597,24700,24698,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.510866748301913,7.233761579720274,0,17,2,-56.18222707124777,0,2,2,2019,5,0,40,0,1,0,0,4.652475413897438,4.652475413897438,0,0,0,0,0,0,0,0,0,0,52.99,51.28,53.99,48.04,6.666666666666667,1,1,0,0,8,4,5,1,737.3333333333334,672970.572300166,376868.6968512546,269194.3985939883,69278.14921785019,6010.828507059246 -11048,13598,24701,-9,24702,24703,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.4785714220443,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,389,-53222.97975023084,111179.2918454776,0,0,2611.679162126703 -11048,13598,24702,24703,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,0,0,0,16,-16,-49.73871614207347,0,1,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,46.03,50.54,6.666666666666667,1,1,0,0,0,4,2,1,389,-53222.97975023084,111179.2918454776,0,0,2611.679162126703 -11048,13598,24703,24702,-9,-9,1,1,58,0,1,0,3,3,-9,0,3,7.436060652487189,7.598723510723254,0,15,16,-94.15229024939566,0,2,2,2019,11,1,50,50,1,1,0,5.26872589364598,5.26872589364598,0,0,0,0,0,1,1,0,0,0,46.03,50.54,41.3,60.77,5,1,1,0,0,9,4,2,1,389,-53222.97975023084,111179.2918454776,0,0,2611.679162126703 -11048,13599,24704,-9,24702,24703,1,0,21,0,1,0,1,1,1,0,5,6.929212089072863,7.254261569164646,0,0,0,-1000.148009502878,-9,3,2,2019,8,0,25,0,1,0,1,4.048656283784648,4.048656283784648,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,6.666666666666667,1,1,0,0,4,4,2,1,517,-121519.2207884562,-57872.51080851686,0,0,618.5354077783127 -11048,13600,24705,-9,24702,24703,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1040.70268652862,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,1,4,1,1,936,-15407.69216797295,0,0,0,-242.8420846920531 -11049,13601,24706,24707,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.989849666512196,9.464572977601176,0,30,1,11.30749163555245,0,2,2,2019,8,0,27,54,1,0,0,91.61036551369671,91.61036551369671,0,0,0,0,2,0,0,0,4.523352794755515,0,52.77,58.29,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,875.5,910051.5263733992,83095.4566180182,841937.4846353349,0,8940.390724600409 -11049,13601,24707,24706,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,0,0,0,10,-1,-34.90943042418001,0,-9,-9,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,8.408004286256922,0,57.16,56.15,52.77,58.29,10,1,1,0,0,8,10,5,1,875.5,910051.5263733992,83095.4566180182,841937.4846353349,0,8940.390724600409 -11050,13602,24708,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,6.549466444915965,6.375484611771827,0,0,-963.9532617820169,0,-9,2,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.215892815983524,6.506969817356707,47.65,35.74,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1528,629183.5350125668,7274.408901065284,343104.1426363519,0,552.0565416131503 -11051,13603,24709,24710,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.2259044007815,7.70831377007485,29,0,-101.021729508682,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.686874787896045,51.17,49.39,55.09,55.87,5,1,1,0,0,10,10,4,1,281.5,2255077.454457985,1342222.344572851,293966.3881902193,0,3401.467387565552 -11051,13603,24710,24709,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,7.498933613940124,7.710679308896494,29,0,-188.2692863666909,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.049299197085062,7.612812648028884,55.09,55.87,51.17,49.39,8.333333333333334,1,1,0,0,10,10,4,1,281.5,2255077.454457985,1342222.344572851,293966.3881902193,0,3401.467387565552 -11052,13604,24711,24712,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.330022154630081,6.810539751928832,44,0,-63.49463161255107,0,2,2,2019,11,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,2.073860558616354,7.309359076545245,57.16,56.15,52.58,47.36,8.333333333333334,1,1,0,0,9,7,4,1,367,2693147.410896845,1868701.026880684,601929.8906071652,0,3700.655133090093 -11052,13604,24712,24711,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.162154289596989,8.151596121299901,44,0,161.9691508137639,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.4024744377856,8.402342807463766,52.58,47.36,57.16,56.15,6.666666666666667,1,1,0,0,0,7,4,1,367,2693147.410896845,1868701.026880684,601929.8906071652,0,3700.655133090093 -11053,13605,24713,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.458920513119985,8.445680391890285,0,0,0,-1017.775037914994,0,-9,-9,2019,13,4,44,58,1,4,0,12.84291572330704,12.84291572330704,0,0,0,0,0,0,0,0,0,0,49.99,47.3,-9,-9,6.666666666666667,1,1,0,0,6,2,5,1,301,79774.40473795895,-227104.5536531529,0,0,1748.497503302886 -11054,13606,24714,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,4.983956254914031,5.139891735031897,0,0,-913.5688743959017,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.197976819078108,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,335,62821.19760528071,45392.34128302227,101498.8147072966,0,672.7492050481882 -11055,13607,24715,24716,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,8.048616447468808,7.941741068751415,53,-1,193.1339185851385,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.59802250118786,7.948365252206529,55,45,47.9,29.27,8,1,1,0,0,0,4,3,1,734.5,581944.0789043033,235470.1701823524,138377.0052795464,0,2314.061059499883 -11055,13607,24716,24715,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,53,1,-149.0893318889577,0,1,1,2019,9,2,0,0,4,2,0,0,0,0,2.440141167332366,0,0,0,1,1,0,0,0,47.9,29.27,55,45,8.333333333333334,1,1,0,0,0,4,3,1,734.5,581944.0789043033,235470.1701823524,138377.0052795464,0,2314.061059499883 -11056,13608,24717,-9,24718,24719,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.8412577355449,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,815.6666666666666,155275.3590016074,1517.764937220326,148888.9163664954,62001.20172699634,2798.729989927758 -11056,13608,24718,24719,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,8.460735039010544,8.207091663369779,0,5,-4,-15.62201227913662,0,2,2,2019,12,0,40,40,1,0,0,12.84997625573075,12.84997625573075,0,0,0,0,0,1,1,0,2.279485540835352,0,40.7,49.98,51.36,59.2,8.333333333333334,1,1,0,0,6,7,3,1,815.6666666666666,155275.3590016074,1517.764937220326,148888.9163664954,62001.20172699634,2798.729989927758 -11056,13608,24719,24718,-9,-9,1,1,28,0,1,0,2,2,-9,0,5,5.417033359143415,5.233317403818382,0,5,4,-6.773264727649787,0,-9,-9,2019,12,0,45,50,1,0,0,.46577094440109,.46577094440109,0,0,0,0,0,1,1,0,7.941225077145933,0,51.36,59.2,40.7,49.98,5,1,1,0,0,11,7,3,1,815.6666666666666,155275.3590016074,1517.764937220326,148888.9163664954,62001.20172699634,2798.729989927758 -11057,13609,24720,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,7.242476434738832,7.664452632204744,0,0,-973.0024422725655,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.636875018087431,7.301794067640002,51.44,53.27,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,198,249822.9777660276,98576.20693520168,273424.8235985745,0,1567.511995887142 -11058,13610,24721,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-992.904575029264,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,40.84,22,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,77,-240313.1422343925,0,0,0,825.4006080139238 -11058,13611,24722,-9,24721,-9,1,0,27,0,0,0,2,2,-9,0,5,7.821063580075374,8.05647805843579,0,0,0,-1067.225026992131,0,3,3,2019,9,0,30,48,1,0,1,9.44457246470995,9.44457246470995,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,7,12,4,0,1824,50594.31955942718,-38004.41053929824,0,0,1534.472758612351 -11059,13612,24723,24724,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,5.931647068810385,5.56614302437499,0,9,-4,97.93580372820689,0,2,2,2019,12,0,45,50,1,0,0,.7923226374887677,.7923226374887677,0,0,0,0,0,0,0,0,0,0,54.37,44.27,40.48,60.05,3.333333333333333,1,1,0,0,12,7,4,1,1385,442164.6565749695,55698.42423124258,381104.8490343099,39354.36002466716,2468.35009762525 -11059,13612,24724,24723,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.487757858958,8.304934617104939,0,9,4,13.11671263036374,0,3,3,2019,24,12,45,76,1,12,0,13.33049759173547,13.33049759173547,0,0,0,0,0,0,0,0,0,0,40.48,60.05,54.37,44.27,3.333333333333333,1,1,0,0,12,7,4,1,1385,442164.6565749695,55698.42423124258,381104.8490343099,39354.36002466716,2468.35009762525 -11060,13613,24725,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1012.818436134519,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.552527749411863,0,61.49,20.85,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,2169,0,0,0,0,359.3171840209413 -11061,13614,24726,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,7.238159673658214,7.694620125909913,0,0,-884.6202277835429,0,2,3,2019,21,7,0,0,4,7,0,0,0,1,0,11.23622874844409,1.644801861681433,0,1,1,0,0,7.244849879456482,25.91,22.25,-9,-9,1.666666666666667,1,1,0,0,0,12,3,0,1094,765949.5450040256,396645.1624134062,183549.4597366572,0,2425.44346998004 -11062,13615,24727,24728,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.699949671348682,8.104647367457325,39,1,-8.100902823116927,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.712175682189246,7.911900838199031,55.63,55.6,62.67,49.54,8.333333333333334,1,1,0,0,6,4,3,1,104.5,769359.6459813308,641418.9760616269,176517.0428083129,0,1619.370453169275 -11062,13615,24728,24727,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,39,-1,-50.77572372859009,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.721139495734044,0,62.67,49.54,55.63,55.6,8.333333333333334,1,1,0,0,7,4,3,1,104.5,769359.6459813308,641418.9760616269,176517.0428083129,0,1619.370453169275 -11063,13616,24729,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.853137844018931,7.087636537092988,0,0,-952.6723446032451,0,3,2,2019,13,2,0,27,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.845746878716223,50.24,48.87,-9,-9,8.333333333333334,1,1,0,0,10,11,2,1,474,258515.9396768539,288479.7535016992,10818.0106601167,0,220.6783120739342 -11063,13617,24730,-9,-9,24729,1,1,25,0,0,0,2,2,-9,0,4,8.590342646638771,8.893052751898637,0,0,0,-1081.823012119937,0,-9,2,2019,10,0,35,0,1,0,0,15.31950768555004,15.31950768555004,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,134,-11840.85151112447,54082.79928373906,0,0,2126.980070050128 -11063,13618,24731,-9,-9,24729,1,0,23,0,0,0,2,2,-9,0,3,7.545465923199542,7.594924809946787,0,0,0,-869.9042851270935,0,-9,2,2019,16,4,35,35,1,4,0,5.511460511607975,5.511460511607975,0,0,0,0,0,1,1,0,.1968796183004743,0,34.67,51.6,-9,-9,6.666666666666667,1,1,0,1,5,11,3,1,818,-129219.053531328,52710.21165815394,0,0,997.3361184558997 -11064,13619,24732,24733,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.326808731226206,8.325270102068863,0,1,-4,153.3343584813828,-9,-9,-9,2019,24,11,37,0,1,11,0,11.48589676707444,11.48589676707444,0,0,0,0,7,0,0,0,0,0,22.73,65.47,45.39,38.38,3.333333333333333,1,1,0,0,10,11,4,0,497.5,2302276.129569566,2267489.841767447,126392.7337849223,36472.10000882238,1957.172687374664 -11064,13619,24733,24732,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,6.999641386457502,6.665158192437704,1,4,55.02771313613532,-9,3,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,7.132435476622407,45.39,38.38,22.73,65.47,6.666666666666667,1,1,1,0,5,11,4,0,497.5,2302276.129569566,2267489.841767447,126392.7337849223,36472.10000882238,1957.172687374664 -11065,13620,24734,-9,24736,24737,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.742251737583,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,511,313012.8631019802,46525.4832550768,291928.2487950665,163388.1142910897,3082.066980347392 -11065,13620,24735,-9,24736,24737,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1212.915406325463,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,511,313012.8631019802,46525.4832550768,291928.2487950665,163388.1142910897,3082.066980347392 -11065,13620,24736,24737,-9,-9,1,0,33,1,2,0,2,2,-9,1,3,0,0,0,3,-3,51.33055299921823,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,52.42,41.3,60.77,10,1,1,0,0,1,10,4,1,511,313012.8631019802,46525.4832550768,291928.2487950665,163388.1142910897,3082.066980347392 -11065,13620,24737,24736,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.853004163118829,8.743096904963403,0,3,3,-61.20738455121183,0,2,2,2019,15,3,40,41,1,3,0,17.97543703705014,17.97543703705014,0,0,0,0,0,1,1,0,1.124327789712115,0,41.3,60.77,49.44,52.42,6.666666666666667,1,1,0,0,11,10,4,1,511,313012.8631019802,46525.4832550768,291928.2487950665,163388.1142910897,3082.066980347392 -11066,13621,24738,24739,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.411114882519993,8.548559793655617,0,9,-1,10.22195400937073,0,2,2,2019,8,0,44,44,1,0,0,11.22268483341991,11.22268483341991,0,0,0,0,0,1,1,0,2.687223606915582,0,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,376,267924.8539933509,187794.1498078963,318443.5224600822,17702.57191704603,2950.372826609366 -11066,13621,24739,24738,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.275194471527117,8.172703132541876,0,9,1,76.71318904353932,0,3,3,2019,6,0,30,30,1,0,0,14.27069716852932,14.27069716852932,0,0,0,0,0,1,1,0,.0885682396761503,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,12,4,1,376,267924.8539933509,187794.1498078963,318443.5224600822,17702.57191704603,2950.372826609366 -11066,13622,24740,-9,24739,24738,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-907.4650417327177,-9,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.406173558747503,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,1,12,1,1,371,112527.0300678637,0,0,0,59.40227712541254 -11067,13623,24741,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-981.2522982671079,0,3,2,2019,18,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,44.94,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,829,70373.23400267882,55417.90774471399,0,0,0 -11068,13624,24742,24743,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.610508141883127,8.745862622752281,0,20,-2,54.60735324467525,0,3,3,2019,12,0,38,36,1,0,0,11.1456112178143,11.1456112178143,0,0,0,0,0,1,1,0,3.252916295300378,0,46.14,54.22,53,55,6.666666666666667,1,1,0,0,9,13,4,1,525,484717.1026900869,461142.3926839286,213773.7159109135,40159.44464641171,3113.208307303195 -11068,13624,24743,24742,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,7.0890403601254,6.9137795336553,0,20,2,47.08547373393461,-9,3,3,2019,9,0,50,0,1,1,0,3.149850578936822,3.149850578936822,0,0,0,0,0,1,1,0,0,0,53,55,46.14,54.22,8,1,1,0,0,1,13,4,1,525,484717.1026900869,461142.3926839286,213773.7159109135,40159.44464641171,3113.208307303195 -11068,13624,24744,-9,24742,24743,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-929.5169392563635,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,4,1,525,484717.1026900869,461142.3926839286,213773.7159109135,40159.44464641171,3113.208307303195 -11068,13625,24745,-9,24742,24743,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-930.0084876128856,-9,1,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,37.1,60.05,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,1276,-125343.4876557017,0,0,0,0 -11069,13626,24746,24747,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.122123769988892,7.003543553716071,0,7,-8,107.6186254128613,0,-9,-9,2019,6,0,7,25,1,0,0,20.41253892436976,20.41253892436976,0,0,0,0,0,1,1,0,6.932959880453779,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,1,473.5,239562.6605043335,102587.0314467329,188688.3809316054,32672.31139178407,5252.683168587396 -11069,13626,24747,24746,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,6.939205320887587,7.335702101781934,0,7,8,-56.98244401513398,0,2,2,2019,7,0,40,50,1,0,0,3.409643210880181,3.409643210880181,0,0,0,0,0,1,1,0,9.032494575057667,0,57.16,56.15,57.16,56.15,10,1,1,0,0,12,10,2,1,473.5,239562.6605043335,102587.0314467329,188688.3809316054,32672.31139178407,5252.683168587396 -11070,13627,24748,24749,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.156227216312476,7.02814323882644,0,7,-4,51.01546841262914,0,2,2,2019,6,0,6,6,1,0,0,21.95828155293489,21.95828155293489,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,10,1,1,0,0,7,12,5,1,1256,308803.2252419003,60575.44437763684,304547.9633426959,182639.3615867263,4036.480161721625 -11070,13627,24749,24748,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,9.145142755978389,9.412256498211567,0,7,4,-70.61554110186808,0,-9,-9,2019,4,0,38,32,1,0,0,23.2457607182794,23.2457607182794,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,5,12,5,1,1256,308803.2252419003,60575.44437763684,304547.9633426959,182639.3615867263,4036.480161721625 -11070,13627,24750,-9,24748,24749,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.7315853994668,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,1256,308803.2252419003,60575.44437763684,304547.9633426959,182639.3615867263,4036.480161721625 -11071,13628,24751,24752,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,2,-4,45.65052528943021,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.82,53.97,55.83,51.72,8.333333333333334,1,1,0,0,0,11,2,1,460,409696.3421155388,202461.7725221906,163712.4469939612,0,545.7608443653421 -11071,13628,24752,24751,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.195760938686973,5.083213322014626,2,4,-37.15145311258108,0,3,3,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,5.500333371590147,5.164046384779414,55.83,51.72,52.82,53.97,8.333333333333334,1,1,0,0,7,11,2,1,460,409696.3421155388,202461.7725221906,163712.4469939612,0,545.7608443653421 -11072,13629,24753,24754,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.510469580302111,8.624686186539071,0,8,-2,-37.07423957216692,0,3,-9,2019,9,0,42,42,1,0,0,10.39974049599157,10.39974049599157,0,0,0,0,0,1,1,0,0,0,45.08,52.59,33.01,49.04,8.333333333333334,1,1,0,0,9,13,4,1,401.5,868509.8784100462,531757.6578732666,292461.9332531645,0,1604.169003990061 -11072,13629,24754,24753,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.468945091504336,6.60675579945685,0,8,2,-19.37958245021403,0,3,3,2019,20,8,10,10,1,8,0,6.714537988002103,6.714537988002103,0,0,0,0,0,1,1,0,0,0,33.01,49.04,45.08,52.59,5,1,1,0,0,9,13,4,1,401.5,868509.8784100462,531757.6578732666,292461.9332531645,0,1604.169003990061 -11073,13630,24755,24757,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.350701593691431,8.293773812642034,0,7,7,-32.74865045583538,0,1,1,2019,22,11,40,40,1,11,0,15.51269080983696,15.51269080983696,0,0,0,0,14.5,1,1,0,0,0,40.96,61.14,43.79,58.33,6.666666666666667,3,4,0,1,8,9,3,1,869.5,51641.26478118748,68490.6261176453,0,0,2434.466486749311 -11073,13630,24756,-9,24757,24755,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.5455708521658,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,3,1,869.5,51641.26478118748,68490.6261176453,0,0,2434.466486749311 -11073,13630,24757,24755,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,0,0,0,7,-7,89.6667220742753,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,43.79,58.33,40.96,61.14,5,1,1,0,1,5,9,3,1,869.5,51641.26478118748,68490.6261176453,0,0,2434.466486749311 -11073,13630,24758,-9,24757,24755,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.287570053592,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,1,869.5,51641.26478118748,68490.6261176453,0,0,2434.466486749311 -11074,13631,24759,24760,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.514861328868037,7.523557889363978,4.328204322647857,39,3,10.41143820347511,0,2,2,2019,13,2,30,25,1,2,0,8.093228622916666,8.093228622916666,0,0,0,0,0,0,0,0,0,4.216996865694924,52.81,31.17,43.52,48.92,6.666666666666667,1,1,0,0,13,2,4,1,1287,1905255.732171225,1299277.831732186,277419.590717971,0,2404.366402544768 -11074,13631,24760,24759,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.554657536470394,8.085880326634934,0,39,-3,-101.2205782313793,0,3,3,2019,19,7,25,25,1,7,0,12.22892710281347,12.22892710281347,0,0,0,0,0,0,0,0,0,0,43.52,48.92,52.81,31.17,8.333333333333334,1,1,0,0,13,2,4,1,1287,1905255.732171225,1299277.831732186,277419.590717971,0,2404.366402544768 -11075,13632,24761,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1132.706680069983,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.19,47.83,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,348,136452.8545432837,0,0,0,590.9173347799626 -11076,13633,24762,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,8.36736185151363,8.477220949168323,5.179142601395462,0,0,-1008.202924935973,0,2,2,2019,12,0,37,37,1,0,0,18.49110322512383,18.49110322512383,0,0,0,0,0,1,1,0,5.44359304966743,0,43.07,54.56,-9,-9,5,1,1,0,0,12,10,3,0,771.3333333333334,1663842.134255984,819726.8677670768,727827.7651638255,1364.302279661049,2158.312291577945 -11076,13633,24763,-9,24762,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1074.806092526253,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.6857140803254375,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,771.3333333333334,1663842.134255984,819726.8677670768,727827.7651638255,1364.302279661049,2158.312291577945 -11076,13633,24764,-9,24762,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.3963701995632,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,771.3333333333334,1663842.134255984,819726.8677670768,727827.7651638255,1364.302279661049,2158.312291577945 -11077,13634,24765,24766,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.52294744749755,8.539986397712553,0,31,4,50.63914437630605,0,3,3,2019,9,0,60,60,1,0,0,10.9721257454578,10.9721257454578,0,0,0,0,0,0,0,0,3.23600874093915,0,55.2,49.4,54.2,57.49,8.333333333333334,1,1,0,0,11,13,5,1,557.5,1040619.087682093,481448.9001548318,245843.8809810921,0,3203.162441343586 -11077,13634,24766,24765,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.956343674502903,7.687562208303515,31,-4,-141.799019978634,0,3,3,2019,10,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.636592499029954,54.2,57.49,55.2,49.4,0,1,1,0,0,11,13,5,1,557.5,1040619.087682093,481448.9001548318,245843.8809810921,0,3203.162441343586 -11077,13635,24767,-9,24766,24765,1,0,29,0,0,0,2,2,-9,0,5,7.925741105261797,7.60056070830905,0,0,0,-1014.952434321035,0,2,3,2019,5,0,37,3,1,0,1,4.944949065840117,4.944949065840117,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,801,100731.8812884915,0,0,0,724.3865077014291 -11078,13636,24768,24769,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.903308232819055,6.73888107447284,34,1,-79.14518679361964,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.852189192968048,6.988036548724732,53.98,50.87,54.1,59.11,0,1,1,0,0,0,4,3,1,517,958311.1470700664,509962.2378322941,152919.3260525008,0,2634.382937529312 -11078,13636,24769,24768,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.54841793536171,7.680052268243758,34,-1,37.67663354019027,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.383227136083055,7.545098058123992,54.1,59.11,53.98,50.87,8.333333333333334,1,1,0,0,0,4,3,1,517,958311.1470700664,509962.2378322941,152919.3260525008,0,2634.382937529312 -11078,13637,24770,-9,24768,24769,1,0,43,0,0,0,2,2,-9,0,4,7.553952562811628,7.729530317718728,0,0,0,-1017.257864565051,0,2,2,2019,9,1,48,39,1,1,0,5.276798763808179,5.276798763808179,0,0,0,.3967886687362245,0,1,1,0,6.65068377412438,0,44.62,57.73,-9,-9,10,1,1,0,0,7,4,3,1,450,175383.1200692736,23568.88696876322,0,0,1065.627949476643 -11079,13638,24771,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1003.552218982677,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.181185271675169,0,58.23,32.73,-9,-9,8.333333333333334,1,1,0,0,7,8,1,1,577,313672.0918626746,-13363.88251503563,0,0,1735.155335981698 -11080,13639,24772,24773,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.818049257810414,7.495697810143037,0,1,-8,-144.1626427722439,-9,-9,-9,2019,10,1,44,0,1,1,0,6.924177334526448,6.924177334526448,0,0,0,0,0,0,0,0,0,0,52.66,44.52,54.69,57.47,8.333333333333334,1,1,0,0,1,4,5,0,946.5,79275.37114924096,-29070.28488532935,97066.40721462741,47507.73973064059,3100.593498962662 -11080,13639,24773,24772,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.593089756211819,8.311067012491742,0,1,8,4.4461555690373,0,2,3,2019,4,0,60,40,1,0,0,10.15668583126608,10.15668583126608,0,0,0,0,0,0,0,0,2.365284322222873,0,54.69,57.47,52.66,44.52,10,1,1,0,0,9,4,5,0,946.5,79275.37114924096,-29070.28488532935,97066.40721462741,47507.73973064059,3100.593498962662 -11081,13640,24774,24775,-9,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,2,-21,0,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,43.49,43.6,24.52,39.05,8.333333333333334,1,1,0,0,0,9,1,0,955,53632.97434162588,0,0,0,1653.852600804452 -11081,13640,24775,24774,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,2,21,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.52,39.05,43.49,43.6,3.333333333333333,1,1,0,0,0,9,1,0,955,53632.97434162588,0,0,0,1653.852600804452 -11082,13641,24776,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.091120218386793,7.93935659713557,0,0,0,-948.1151414793906,0,2,2,2019,24,11,38,0,1,11,0,9.952676034444423,9.952676034444423,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,8,5,4,0,440,-106474.0222764593,0,0,0,1143.65564606667 -11083,13642,24777,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.844568983180444,9.091991239366216,0,0,0,-925.4489252789184,0,2,3,2019,13,1,45,45,1,1,0,15.77241593315583,15.77241593315583,0,0,0,0,0,0,0,0,6.752654030793384,0,49.33,38.22,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,432,1327693.195905537,1002118.995583927,239843.9216143057,53377.31548736069,2652.982685142777 -11083,13643,24778,-9,-9,24777,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-938.8889498215013,-9,-9,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,35.78,63.13,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,2314,-124088.2093103867,0,0,0,316.9540305772043 -11084,13644,24779,24781,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.472555943451368,8.390440430749152,0,6,1,60.41191517527076,0,2,2,2019,13,2,38,37,1,2,0,16.83079745608441,16.83079745608441,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49,58,8.333333333333334,1,1,0,0,11,11,5,0,219,358736.3576693235,214562.8625513616,166968.171512974,39410.91464776215,3609.133344941765 -11084,13644,24780,-9,24779,24781,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.9830348224242,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,5,0,219,358736.3576693235,214562.8625513616,166968.171512974,39410.91464776215,3609.133344941765 -11084,13644,24781,24779,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.52826755209475,8.511771934667587,0,6,-1,-17.46287816760156,0,-9,-9,2019,10,0,38,36,1,1,0,21.36370962614997,21.36370962614997,0,0,0,0,0,1,1,0,0,0,49,58,57.06,57.76,7,4,1,0,0,1,11,5,0,219,358736.3576693235,214562.8625513616,166968.171512974,39410.91464776215,3609.133344941765 -11085,13645,24782,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,0,0,0,0,-975.9339271392816,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,30.75083375919351,0,0,1,1,0,0,0,66.53,10,-9,-9,10,1,1,0,0,0,11,1,0,343,-19038.71297607134,4959.165739270067,87630.55886841832,0,943.792131057677 -11086,13646,24783,24784,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.399437705862274,9.189033268127758,7.437964801860091,32,0,5.191805578739175,0,2,3,2019,7,0,19,12,1,0,0,32.06983585231758,32.06983585231758,0,0,0,0,2,0,0,0,2.829150775072157,8.062062025775029,58.15,52.91,51.95,53.02,8.333333333333334,1,1,0,0,12,5,5,0,594.5,396781.1014621235,335562.8578600665,153608.1396126843,0,5478.308889304883 -11086,13646,24784,24783,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.409454889801246,8.212100414454477,0,32,0,130.98088273482,0,2,2,2019,8,1,50,0,1,1,0,9.507864808725653,9.507864808725653,0,0,0,0,0,0,0,0,7.718693004458074,0,51.95,53.02,58.15,52.91,8.333333333333334,1,1,0,0,9,5,5,0,594.5,396781.1014621235,335562.8578600665,153608.1396126843,0,5478.308889304883 -11086,13647,24785,-9,24784,24783,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-948.6416236220418,1,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.77,47.12,-9,-9,6.666666666666667,1,1,0,0,3,5,1,0,478,148352.009607638,0,0,0,0 -11087,13648,24786,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3637857734421,8.26256819794737,0,0,0,-949.6765185256592,0,2,2,2019,9,0,45,50,1,0,0,11.66477751878664,11.66477751878664,0,0,0,0,0,0,0,0,0,0,49.82,54.32,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,322,112227.0835520249,-35730.03344115688,0,0,1649.164209307256 -11088,13649,24787,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.438589742475796,4.349002856475484,0,0,-924.0002693418437,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.356129870225768,4.501939768857511,52.99,53.95,-9,-9,10,1,1,0,0,5,5,2,1,1159,318368.0788959324,96980.93315361027,102980.9674473649,0,1149.733742336916 -11088,13650,24788,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-815.7223793920931,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.0191866922936434,0,48.04,22.83,-9,-9,5,1,1,0,0,4,5,2,1,257,26825.0201047609,0,0,0,846.7452928375931 -11089,13651,24789,24790,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.873376951931453,8.010954127106334,8,4,-111.7830716992199,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,7.974897247583398,37.41,41.3,45.99,43.85,3.333333333333333,1,1,0,0,4,9,4,1,769,1234979.401063981,567128.5008705534,439192.1161989468,0,2440.625940481162 -11089,13651,24790,24789,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.778487673034941,7.691496984853231,0,8,-4,55.93578832107694,0,3,-9,2019,16,5,40,39,1,5,0,6.751311326378836,6.751311326378836,0,0,0,0,2,0,0,0,0,0,45.99,43.85,37.41,41.3,6.666666666666667,1,1,0,0,12,9,4,1,769,1234979.401063981,567128.5008705534,439192.1161989468,0,2440.625940481162 -11090,13652,24791,24792,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.872095963469201,5.660846456120428,58,-7,-75.463329997936,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.894392059299906,63.17,32.94,57,50,3.333333333333333,1,1,0,0,0,10,2,1,1946.5,747779.9920792731,-63837.80949016313,638149.124290549,0,2231.247876140602 -11090,13652,24792,24791,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,6.986546144585673,6.80895077561964,58,7,-90.00378778052274,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.183645546789748,7.35490657373507,57,50,63.17,32.94,8.333333333333334,1,1,0,0,0,10,2,1,1946.5,747779.9920792731,-63837.80949016313,638149.124290549,0,2231.247876140602 -11091,13653,24793,24794,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.594379871603626,6.36505695547651,6,4,-38.39514479400749,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.684165022646975,6.59651592950872,61.02,39.43,47.32,52.7,0,1,1,0,0,3,4,2,1,411.5,390717.4662289321,213410.0922849833,224823.3078630942,0,4614.379858883913 -11091,13653,24794,24793,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.69746247808177,7.080817291468258,6,-4,-26.03607522158047,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.169931303277407,6.596534669721003,47.32,52.7,61.02,39.43,8.333333333333334,1,1,0,0,5,4,2,1,411.5,390717.4662289321,213410.0922849833,224823.3078630942,0,4614.379858883913 -11092,13654,24795,24796,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.830837135301767,7.659458743881923,0,33,-5,160.5188508346868,0,3,3,2019,11,0,33,43,1,0,0,9.431817477710441,9.431817477710441,0,0,0,0,0,0,0,0,0,0,53.46,44.67,55.51,46.03,8.333333333333334,1,1,0,0,10,4,5,1,945,828698.3322161029,596746.9997819851,194037.779224772,21377.37686633602,4667.707602351589 -11092,13654,24796,24795,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.930753851891025,9.452326119685353,7.573361521317935,33,5,3.842912953121425,0,3,3,2019,7,0,45,45,1,0,0,16.18030680979349,16.18030680979349,0,0,0,0,0,0,0,0,0,8.00916164999458,55.51,46.03,53.46,44.67,8.333333333333334,1,1,0,0,10,4,5,1,945,828698.3322161029,596746.9997819851,194037.779224772,21377.37686633602,4667.707602351589 -11092,13655,24797,-9,24795,24796,1,0,23,0,0,0,2,2,-9,0,4,8.006630085624304,7.900025803695471,0,0,0,-790.412897715787,0,3,3,2019,5,0,42,42,1,0,1,6.472777597684869,6.472777597684869,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,1608,-108820.0333103696,95501.45080551962,0,0,1494.977039099812 -11092,13656,24798,-9,24795,24796,1,1,23,0,0,0,2,2,-9,0,4,7.893803950986407,7.837153098115555,0,0,0,-1110.151002130799,0,3,3,2019,10,0,44,44,1,1,1,5.825061543594654,5.825061543594654,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,1,598,-39306.80385864086,0,0,0,913.4005340136761 -11093,13657,24799,24800,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.188771210516133,6.936763238652037,9,3,114.7666188017369,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.767246057188887,7.27141250382231,54.2,57.49,57.92,51.82,8.333333333333334,1,1,0,0,8,13,3,1,532.5,1182668.574014904,559474.2777832034,412630.1654480696,0,3090.372613231258 -11093,13657,24800,24799,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.065784163665013,6.938214356315099,9,-3,-74.71245001566224,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.50597725448303,6.894848558859954,57.92,51.82,54.2,57.49,6.666666666666667,1,1,0,0,8,13,3,1,532.5,1182668.574014904,559474.2777832034,412630.1654480696,0,3090.372613231258 -11094,13658,24801,-9,24802,24803,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.039558360103,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,832.75,2929438.961866209,1043625.480114077,1269466.117653794,0,8313.571336801129 -11094,13658,24802,24803,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.654730056401752,7.767328884010395,0,21,-15,-59.74569435720539,0,2,1,2019,11,0,12,12,1,0,0,23.92273530337667,23.92273530337667,0,0,0,0,0,0,0,0,0,0,50.05,55.41,53.47,52.37,8.333333333333334,1,1,0,0,9,9,5,1,832.75,2929438.961866209,1043625.480114077,1269466.117653794,0,8313.571336801129 -11094,13658,24803,24802,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,9.662504920497062,9.341405629857205,0,9,15,-5.444455452090927,0,-9,-9,2019,10,0,40,50,1,0,0,57.39976816760475,57.39976816760475,0,0,0,0,0,0,0,0,6.077256339643961,0,53.47,52.37,50.05,55.41,8.333333333333334,1,1,0,0,10,9,5,1,832.75,2929438.961866209,1043625.480114077,1269466.117653794,0,8313.571336801129 -11094,13658,24804,-9,24802,24803,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.1568249641107,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,832.75,2929438.961866209,1043625.480114077,1269466.117653794,0,8313.571336801129 -11095,13659,24805,24807,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.360761810238886,8.346170099318297,0,6,0,-91.48807584826915,0,2,2,2019,8,0,37,38,1,0,0,11.54880215416243,11.54880215416243,0,0,0,0,0,1,1,0,2.12527149079194,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,774.3333333333334,364358.7262892327,198965.6542034134,121941.0993855205,67691.25679947034,2741.360942940593 -11095,13659,24806,-9,24807,24805,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.9484285342534,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,774.3333333333334,364358.7262892327,198965.6542034134,121941.0993855205,67691.25679947034,2741.360942940593 -11095,13659,24807,24805,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,8.36377701614151,8.143370352852846,0,6,0,-17.8956808819005,0,3,2,2019,9,0,33,35,1,0,0,13.17380253138796,13.17380253138796,0,0,0,0,0,1,1,0,4.333814657860638,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,13,4,1,774.3333333333334,364358.7262892327,198965.6542034134,121941.0993855205,67691.25679947034,2741.360942940593 -11096,13660,24808,24811,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,7,-5,-60.6299305669389,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,60.35,53.55,7,2,3,0,0,0,6,2,1,539.4,-52792.25513214176,0,0,0,1363.251371960927 -11096,13660,24809,-9,24808,24811,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.291905861902,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,539.4,-52792.25513214176,0,0,0,1363.251371960927 -11096,13660,24810,-9,24808,24811,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.7682297011552,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,539.4,-52792.25513214176,0,0,0,1363.251371960927 -11096,13660,24811,24808,24813,-9,1,1,41,0,3,0,2,2,-9,1,4,5.850800805748924,5.465430709642238,0,15,5,-10.65958401622978,0,3,3,2019,10,0,35,30,1,0,0,.8098465896403504,.8098465896403504,0,0,0,0,0,1,1,0,0,0,60.35,53.55,49,56,8.333333333333334,2,3,0,0,10,6,2,1,539.4,-52792.25513214176,0,0,0,1363.251371960927 -11096,13660,24812,-9,24808,24811,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.7672310804744,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,539.4,-52792.25513214176,0,0,0,1363.251371960927 -11096,13661,24813,-9,-9,-9,1,0,62,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1084.18626231092,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,48,-9,-9,7,2,3,0,0,0,6,1,1,1026,107019.4236773608,0,0,0,620.807138483935 -11097,13662,24814,24815,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.857498193587926,8.703617717573225,0,27,-1,-25.05921117101871,0,2,-9,2019,14,3,60,0,1,3,0,14.74158508920931,14.74158508920931,0,0,0,0,0,0,0,0,0,0,47.79,40.56,58.15,52.91,5,1,1,0,0,1,7,5,1,806.5,2233842.86940318,1159471.81178508,750090.6173049265,0,4230.693734945671 -11097,13662,24815,24814,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.526107190388636,8.773907679878079,0,27,1,-59.28039635398675,0,3,3,2019,5,0,56,60,1,0,0,11.58285032854191,11.58285032854191,0,0,0,0,7,0,0,0,0,0,58.15,52.91,47.79,40.56,6.666666666666667,2,3,0,0,9,7,5,1,806.5,2233842.86940318,1159471.81178508,750090.6173049265,0,4230.693734945671 -11097,13663,24816,-9,24815,24814,1,1,24,0,0,0,1,1,-9,0,4,7.429338789844963,7.194244009540095,0,0,0,-907.853484651195,0,1,3,2019,8,0,37,39,1,0,1,5.32033024496395,5.32033024496395,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,4,2,0,0,3,7,3,1,450,-7431.496229604374,0,0,0,525.9132363337251 -11098,13664,24817,24818,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,7.29223787930719,7.667758578887757,0,6,7,-30.26122381923258,0,3,2,2019,7,1,45,48,1,1,0,3.894761569781855,3.894761569781855,0,0,0,0,0,0,0,0,0,0,55.5,52.9,49,56,10,1,1,0,0,9,5,4,1,453,119051.9457558555,65455.92729851108,108544.3774511004,81668.39618466399,6072.935046329225 -11098,13664,24818,24817,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.335454049680985,8.261267911429428,0,6,-7,-152.9708687122042,0,2,2,2019,11,0,40,46,1,2,0,9.751606890082506,9.751606890082506,0,0,0,0,0,0,0,0,8.952839187225425,0,49,56,55.5,52.9,7,1,1,0,0,1,5,4,1,453,119051.9457558555,65455.92729851108,108544.3774511004,81668.39618466399,6072.935046329225 -11099,13665,24819,24821,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,9.203696613874632,9.121773341533608,0,10,-2,44.48432637661674,0,-9,-9,2019,5,0,60,50,1,0,0,16.04850640202128,16.04850640202128,0,0,0,0,2,1,1,0,0,0,48.18,61.8,57.06,57.76,8.333333333333334,1,1,0,0,12,9,4,1,539.5,1149673.726909064,554391.3966206466,719980.9750094507,68290.01585994095,6326.027735894634 -11099,13665,24820,-9,24819,24821,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-818.1693413161615,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,4,1,539.5,1149673.726909064,554391.3966206466,719980.9750094507,68290.01585994095,6326.027735894634 -11099,13665,24821,24819,-9,-9,1,1,52,0,2,0,1,1,-9,0,5,0,0,0,18,2,57.24942907903115,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.04071686456801,0,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,12,9,4,1,539.5,1149673.726909064,554391.3966206466,719980.9750094507,68290.01585994095,6326.027735894634 -11099,13665,24822,-9,24819,24821,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1004.249366005512,-9,1,1,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,31.27,63.64,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,539.5,1149673.726909064,554391.3966206466,719980.9750094507,68290.01585994095,6326.027735894634 -11100,13666,24823,24824,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.666671123100107,5.592115268217677,8,-1,-32.69885480607184,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.491325172534935,5.890960749751915,57.06,57.76,60.3,46.58,10,1,1,0,0,0,12,3,1,347,1235791.312927264,1073260.250639397,160257.0336863614,34027.22756899152,3482.286870934416 -11100,13666,24824,24823,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.970611303391802,8.238357758401619,8,1,43.43871064867697,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.395138011024383,8.017459372644227,60.3,46.58,57.06,57.76,0,1,1,0,0,0,12,3,1,347,1235791.312927264,1073260.250639397,160257.0336863614,34027.22756899152,3482.286870934416 -11101,13667,24825,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.800756737276222,7.948130202897121,0,0,-1016.355763344246,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.332435293251594,7.966012455935016,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1787,849489.7589836009,221657.3881120407,141469.9535924555,0,1983.133054641413 -11102,13668,24826,24827,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,0,0,0,6,-4,0,0,2,2,2019,20,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,25.42,42.75,56.14,38.85,8.333333333333334,1,1,0,0,0,2,1,0,2945,-57208.38425542971,0,0,0,1264.995984219565 -11102,13668,24827,24826,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,6,4,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.14,38.85,25.42,42.75,8.333333333333334,1,1,1,0,0,2,1,0,2945,-57208.38425542971,0,0,0,1264.995984219565 -11102,13669,24828,-9,24826,24827,1,1,30,0,0,0,3,3,-9,0,4,8.131740514695515,7.884291138043625,0,0,0,-1123.549615801325,-9,2,2,2019,10,0,40,0,1,1,1,8.652351474431239,8.652351474431239,0,0,0,0,0,1,1,0,.7191220262621203,0,50,57,-9,-9,7,1,1,0,0,1,2,4,0,2370,87015.1749840518,0,0,0,650.1342458786771 -11102,13670,24829,-9,24826,24827,1,1,24,0,0,0,2,2,-9,0,4,7.666179595429527,7.346186086200826,0,0,0,-927.4072866805736,0,2,2,2019,10,0,40,40,1,1,1,6.442568267841254,6.442568267841254,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,3,0,337,-29315.5888448121,-79834.49058285182,0,0,1082.469276076984 -11103,13671,24830,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1048.204795072929,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.41,31.9,-9,-9,1.666666666666667,1,1,0,1,1,12,1,0,1174,-69357.73627713537,0,0,0,1176.628872612986 -11103,13672,24831,-9,-9,24830,1,0,23,0,0,0,1,1,0,0,3,0,0,0,0,0,-958.0407404104428,-9,-9,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,5,1,1,0,0,7,12,2,0,362,152413.712754569,0,0,0,0 -11104,13673,24832,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.032678852083473,7.657467777472348,0,0,-917.6406659037984,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,2.190937370908051,8.024369611050775,60.12,54.8,-9,-9,10,1,1,0,0,5,11,3,0,888,1029007.655465832,477428.416221712,116573.4513290052,22292.56790123196,1182.596513507246 -11105,13674,24833,24834,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.666801718749349,7.795315909024318,8,7,100.5348225285176,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.619186224024846,7.860125298132718,48.24,40.43,41.75,37.95,6.666666666666667,1,1,0,0,5,11,3,1,446,1119129.254544509,974236.9462878052,265443.4756077093,0,1326.41701491596 -11105,13674,24834,24833,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,8,-7,18.56836908646126,0,2,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.75,37.95,48.24,40.43,5,1,1,0,0,4,11,3,1,446,1119129.254544509,974236.9462878052,265443.4756077093,0,1326.41701491596 -11106,13675,24835,24836,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.522067157059522,7.580245191961414,0,9,-2,9.705256819485996,0,2,2,2019,10,0,23,25,1,0,0,8.539322768605834,8.539322768605834,0,0,0,0,0,0,0,0,0,0,51.66,54.88,57.33,53.46,1.666666666666667,1,1,0,0,10,10,5,1,243.5,304135.8602433712,99816.77304598625,292151.700605054,103897.6676168481,3200.799267399889 -11106,13675,24836,24835,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.39984927849274,8.718757714058583,0,9,2,-9.560450321458614,0,2,2,2019,7,0,48,50,1,0,0,9.953176512031378,9.953176512031378,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.66,54.88,8.333333333333334,1,1,0,0,10,10,5,1,243.5,304135.8602433712,99816.77304598625,292151.700605054,103897.6676168481,3200.799267399889 -11106,13676,24837,-9,24835,24836,1,1,24,0,0,0,2,2,-9,0,4,8.11412302092287,7.833897270642558,0,0,0,-1053.043325532433,0,2,2,2019,9,0,45,36,1,0,1,7.879471145759552,7.879471145759552,0,0,0,0,0,0,0,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,132,46060.14942276818,-117295.9118895893,236571.52983798,178237.2891487312,714.4603954229458 -11107,13677,24838,-9,24841,24839,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.3373866039445,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,2,3,0,1352,-7748.334929618246,-28216.63251063389,35102.35505392764,76541.58548372542,2300.784750120974 -11107,13677,24839,24841,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.219478950011998,8.448971895863837,0,4,-3,125.89358708259,0,-9,-9,2019,8,0,37,37,1,0,0,9.900789430965061,9.900789430965061,0,0,0,0,0,1,1,0,0,0,55.13,34.07,47.04,57.99,8.333333333333334,1,1,0,0,8,2,3,0,1352,-7748.334929618246,-28216.63251063389,35102.35505392764,76541.58548372542,2300.784750120974 -11107,13677,24840,-9,24841,24839,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-885.5302345776831,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,2,3,0,1352,-7748.334929618246,-28216.63251063389,35102.35505392764,76541.58548372542,2300.784750120974 -11107,13677,24841,24839,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,0,0,0,4,3,180.8807722429341,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.04,57.99,55.13,34.07,8.333333333333334,1,1,0,0,0,2,3,0,1352,-7748.334929618246,-28216.63251063389,35102.35505392764,76541.58548372542,2300.784750120974 -11108,13678,24842,24843,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.741526314698044,7.945224131339468,7,-5,-33.22203550502327,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,4.874230877202822,8.199966272638415,45.85,61.26,52,46,6.666666666666667,1,1,0,0,0,9,3,1,1572.5,931850.4591616059,381905.6839295641,354910.0212959151,0,2368.097704264958 -11108,13678,24843,24842,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,7,5,-35.61432649516728,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.9467454376325803,0,52,46,45.85,61.26,8,1,1,0,0,0,9,3,1,1572.5,931850.4591616059,381905.6839295641,354910.0212959151,0,2368.097704264958 -11109,13679,24844,24845,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.689087489953184,7.429664608238804,0,28,-15,101.0919898592328,0,3,2,2019,12,2,40,40,1,2,0,6.851246432813292,6.851246432813292,0,0,0,0,27,1,1,0,0,0,43.94,43.87,43.81,34.51,3.333333333333333,3,4,0,0,9,8,3,0,920.5,336058.800401861,38753.67693347187,228042.9009321909,0,1977.308860534416 -11109,13679,24845,24844,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,3.262738357534278,3.201151791799244,28,15,23.5831876549615,0,3,2,2019,22,7,0,0,4,7,0,0,0,0,0,32.63209464403229,0,0,1,1,0,3.013091415040743,3.522994059743964,43.81,34.51,43.94,43.87,3.333333333333333,3,4,0,0,0,8,3,0,920.5,336058.800401861,38753.67693347187,228042.9009321909,0,1977.308860534416 -11110,13680,24846,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.137406881499794,5.505303944932089,0,0,-1161.721768151042,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.492546308902289,5.741272394011379,49.59,49.9,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1011,468856.7403822898,447036.8825462386,47189.38620157253,0,1363.192968896425 -11111,13681,24847,24848,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,53,-1,89.45416900313651,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.408284504789791,0,60.84,43.45,53,47,0,1,1,0,0,9,12,4,1,1242.5,1266228.041253941,701056.0925767082,381217.2744580879,0,3629.620175789802 -11111,13681,24848,24847,-9,-9,1,1,73,0,0,0,2,2,-9,1,3,8.394877047161375,8.595682851974097,0,7,1,13.03437723342029,0,-9,-9,2019,9,0,20,-9,1,1,0,33.42741558552927,33.42741558552927,0,0,0,0,0,1,1,0,4.554541795113268,0,53,47,60.84,43.45,8,1,1,0,0,9,12,4,1,1242.5,1266228.041253941,701056.0925767082,381217.2744580879,0,3629.620175789802 -11112,13682,24849,-9,24852,24850,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.902796532361,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,3,0,561.75,269775.9440940751,-14975.74932033648,182680.7524677626,70610.18444339781,1746.453557698684 -11112,13682,24850,24852,-9,-9,1,1,40,2,3,0,2,2,-9,0,3,7.962966670362971,8.048519065247282,0,8,9,75.29721998089971,0,-9,-9,2019,13,3,40,50,1,3,0,10.22590555517893,10.22590555517893,0,0,0,0,0,1,1,0,0,0,61.85,47.26,54.1,59.11,1.666666666666667,3,4,0,1,5,8,3,0,561.75,269775.9440940751,-14975.74932033648,182680.7524677626,70610.18444339781,1746.453557698684 -11112,13682,24851,-9,24852,24850,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.649430326566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,8,3,0,561.75,269775.9440940751,-14975.74932033648,182680.7524677626,70610.18444339781,1746.453557698684 -11112,13682,24852,24850,-9,-9,1,0,31,2,3,0,2,2,-9,0,5,3.836839988572473,3.215526258630744,0,8,0,62.85424047384934,0,2,-9,2019,4,0,50,-9,1,0,0,.0920586690972393,.0920586690972393,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.85,47.26,6.666666666666667,3,4,0,1,9,8,3,0,561.75,269775.9440940751,-14975.74932033648,182680.7524677626,70610.18444339781,1746.453557698684 -11113,13683,24853,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1113.542980352108,0,3,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,27.72,-9,-9,0,1,1,0,1,3,6,2,0,180,-37784.63729870989,0,0,0,-214.4945636456817 -11113,13684,24854,-9,24853,-9,1,0,37,0,0,0,2,2,-9,0,4,7.681685649386718,7.739811649196375,0,0,0,-1040.550916007234,-9,3,-9,2019,11,0,38,0,1,2,1,5.46600292206556,5.46600292206556,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,6,3,0,220,10225.523927029,0,0,0,997.1573333238584 -11114,13685,24855,24856,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.499058619007723,6.742300732086758,10,1,51.44671251789833,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.319579253532188,6.493051055825907,57.16,56.15,55.93,49.95,8.333333333333334,1,1,0,0,8,5,3,1,315.5,968216.5007518507,732230.4636860355,296026.4765432155,0,3572.468267385097 -11114,13685,24856,24855,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.023172290617097,8.228969343456356,49,-1,-17.81794079376598,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.695404611757016,7.869782684377284,55.93,49.95,57.16,56.15,8.333333333333334,1,1,0,0,10,5,3,1,315.5,968216.5007518507,732230.4636860355,296026.4765432155,0,3572.468267385097 -11115,13686,24857,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.383223409825612,7.536772026182057,0,0,0,-1018.298583468203,0,3,3,2019,6,0,30,30,1,0,0,6.812509496220802,6.812509496220802,0,0,0,0,0,0,0,0,.4783504395165753,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,662,-236203.0575685126,0,0,0,418.1420956902684 -11116,13687,24858,24859,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,30,-5,120.3271597473355,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.75,39.21,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,0,459,2343859.881748617,1405651.55179281,591667.376152631,0,2974.716075562855 -11116,13687,24859,24858,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,8.691634067297954,8.812437045157662,5.976091844425031,30,5,-.4565510974038087,0,-9,-9,2019,8,0,35,30,1,0,0,21.5664982858924,21.5664982858924,0,0,0,0,0,0,0,0,4.582927064752349,6.294799391362153,57.33,53.46,50.75,39.21,8.333333333333334,1,1,0,0,12,2,4,0,459,2343859.881748617,1405651.55179281,591667.376152631,0,2974.716075562855 -11116,13688,24860,-9,24858,24859,1,0,30,0,0,0,1,1,-9,0,4,8.071698113708615,8.161837989088621,0,0,0,-936.9209683029341,0,2,2,2019,12,1,38,38,1,1,0,6.736396417114433,6.736396417114433,0,0,0,0,0,0,0,0,2.268260974176667,0,42.52,59.9,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,1462,108076.9783460637,-22522.41235254997,0,0,465.9914726790799 -11116,13689,24861,-9,24858,24859,1,0,29,0,0,0,1,1,-9,0,4,8.13433282805485,8.031637753680245,0,0,0,-932.834638326853,0,2,2,2019,18,6,38,-9,1,6,0,7.82612400688496,7.82612400688496,0,0,0,0,0,0,0,0,4.813127228859801,0,27.23,62.9,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,759,59392.24907312291,77851.21026028621,0,0,1321.671555297361 -11117,13690,24862,24863,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.791903133520114,9.912758320994252,0,3,-5,48.07611854311711,0,1,2,2019,15,5,35,40,1,5,0,57.92666895287232,57.92666895287232,0,0,0,0,0,0,0,0,5.188332083471639,0,36.75,54.56,45.91,59.89,6.666666666666667,1,1,0,0,7,9,5,1,565.6666666666666,1182323.236380328,480865.811012557,277132.2460294153,22242.38830407748,6534.422220711186 -11117,13690,24863,24862,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.359052464642417,8.565101037158566,0,10,5,-61.18667713572802,0,2,3,2019,10,0,65,60,1,0,0,10.65439726919786,10.65439726919786,0,0,0,0,0,0,0,0,3.913032846325746,0,45.91,59.89,36.75,54.56,8.333333333333334,1,1,0,0,5,9,5,1,565.6666666666666,1182323.236380328,480865.811012557,277132.2460294153,22242.38830407748,6534.422220711186 -11117,13690,24864,-9,24862,24863,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-892.7509983815702,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,565.6666666666666,1182323.236380328,480865.811012557,277132.2460294153,22242.38830407748,6534.422220711186 -11118,13691,24865,24866,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.529523094557426,7.984182146151111,0,29,5,33.76764587008356,0,2,2,2019,18,6,30,35,1,6,0,8.958804769220036,8.958804769220036,0,0,0,0,2,0,0,0,0,0,47.61,53.7,54.69,57.47,3.333333333333333,1,1,0,0,13,5,4,1,188.5,179646.310321531,93687.20043453164,0,0,2278.693329350835 -11118,13691,24866,24865,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.033543797693294,8.026806844402786,0,29,-5,-101.3476049606269,0,2,2,2019,8,0,36,37,1,0,0,12.29305998847733,12.29305998847733,0,0,0,0,0,0,0,0,1.074995207765215,0,54.69,57.47,47.61,53.7,6.666666666666667,1,1,0,0,13,5,4,1,188.5,179646.310321531,93687.20043453164,0,0,2278.693329350835 -11119,13692,24867,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,7.918481183259537,7.874607123319526,0,0,0,-1010.224894795332,0,3,2,2019,19,4,45,37,1,4,0,6.933882516510026,6.933882516510026,0,0,0,0,2,0,0,0,.423397356125267,0,42.06,57.69,-9,-9,5,1,1,0,1,10,12,4,1,605,350950.1429383064,72868.87913802396,60506.99771862073,0,1373.684888449466 -11120,13693,24868,-9,24869,24871,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.316640318893,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,183.5,58759.75597738393,50110.93710590259,0,0,2583.694655569071 -11120,13693,24869,24871,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,0,0,0,6,0,-10.02813044813504,0,2,2,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.752300541979588,0,51.24,58.84,37.36,30.71,8.333333333333334,1,1,0,0,5,9,3,0,183.5,58759.75597738393,50110.93710590259,0,0,2583.694655569071 -11120,13693,24870,-9,24869,24871,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.536934555614,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,183.5,58759.75597738393,50110.93710590259,0,0,2583.694655569071 -11120,13693,24871,24869,-9,-9,1,1,32,1,2,0,1,1,-9,0,1,8.025695072578763,8.397557294146218,0,6,0,-55.9440642153743,0,-9,-9,2019,20,7,34,34,1,7,0,10.22093990315737,10.22093990315737,0,0,0,0,0,1,1,0,0,0,37.36,30.71,51.24,58.84,5,1,1,0,0,8,9,3,0,183.5,58759.75597738393,50110.93710590259,0,0,2583.694655569071 -11121,13694,24872,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.363149359503309,6.567167525972105,0,0,-1023.801435342865,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,12.09419225815379,0,0,1,1,0,0,6.355324850598952,28.09,56.66,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,136,206223.2916204746,-62241.20569507018,88942.39268472216,0,1465.409452491278 -11122,13695,24873,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.839071524565722,5.872373812655556,0,0,-960.2594371359891,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.336011121352919,5.121874707219634,64.76000000000001,48.62,-9,-9,10,1,1,0,0,0,11,2,1,1144,316681.1324366681,25776.10916466924,232876.3433695979,0,1957.978036847627 -11123,13696,24874,-9,24877,24876,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.188490626533,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,0,837.5,209215.5457533613,40843.63000639549,219722.4050931282,142229.2359045406,2272.963298210284 -11123,13696,24875,-9,24877,24876,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.1253002539123,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,837.5,209215.5457533613,40843.63000639549,219722.4050931282,142229.2359045406,2272.963298210284 -11123,13696,24876,24877,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,5.64094050365054,5.605868050795914,0,8,3,83.0048432160327,0,2,2,2019,13,1,40,45,1,1,0,.8144456509756117,.8144456509756117,0,0,0,0,0,1,1,0,0,0,39.06,49.8,59.86,48.06,3.333333333333333,1,1,0,0,7,4,4,0,837.5,209215.5457533613,40843.63000639549,219722.4050931282,142229.2359045406,2272.963298210284 -11123,13696,24877,24876,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.730686261177546,8.618439489017094,0,8,-3,62.84580944157607,0,1,2,2019,7,1,37,41,1,1,0,18.4284884405824,18.4284884405824,0,0,0,0,0,1,1,0,1.108536469270735,0,59.86,48.06,39.06,49.8,8.333333333333334,1,1,0,0,9,4,4,0,837.5,209215.5457533613,40843.63000639549,219722.4050931282,142229.2359045406,2272.963298210284 -11124,13697,24878,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.007096245019623,6.973275892732261,0,0,-970.1224306341118,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,2.590978530498879,0,23.78811518420292,0,1,1,0,.8973766442838484,7.461114542773818,57.77,33.99,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,305,86186.27187042694,-100052.7015110817,0,0,1568.027270530264 -11125,13698,24879,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.608691238556998,7.689918814150007,0,0,-1097.614423714172,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.208386293832233,8.203511832938474,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,727,-150547.9668153283,0,0,0,1347.622009224844 -11126,13699,24880,-9,-9,24883,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1064.014156318277,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11126,13699,24881,-9,24882,24883,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1121.031976976892,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11126,13699,24882,24883,-9,-9,1,0,36,0,4,0,2,2,-9,0,1,0,5.887319610897791,5.892765169514329,8,-6,25.61545275477905,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,5.845289064764653,0,36.26,51.68,43.12,58.55,8.333333333333334,1,1,0,1,0,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11126,13699,24883,24882,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.716813051000416,8.850327870325879,5.207801955217785,8,6,-95.96596027524103,0,2,2,2019,6,0,40,40,1,0,0,19.65646109328883,19.65646109328883,0,0,0,0,7,1,1,0,4.982241223468597,0,43.12,58.55,36.26,51.68,5,1,1,0,0,10,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11126,13699,24884,-9,24882,24883,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1082.082218353173,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11126,13699,24885,-9,-9,24883,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1057.68553077037,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,393,572792.2803466826,32407.87670075937,648502.7548280471,102221.414801077,3494.521553735413 -11127,13700,24886,24887,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.794106842836714,9.585479573036078,0,10,-1,60.4757338795198,0,-9,-9,2019,22,10,42,48,1,10,0,39.0042410938634,39.0042410938634,0,0,0,0,0,1,1,0,0,0,41.3,60.77,35.63,47.41,5,1,1,0,0,5,6,5,1,293.5,1855265.373781909,1165848.404321987,684559.4798381136,228902.6662378797,6817.330733398986 -11127,13700,24887,24886,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.963248793411529,8.144130818194748,0,25,1,-89.50494111707978,0,3,3,2019,23,11,40,37,1,11,0,14.97381182643464,14.97381182643464,0,0,0,0,0,1,1,0,2.767159996754365,0,35.63,47.41,41.3,60.77,3.333333333333333,1,1,0,0,10,6,5,1,293.5,1855265.373781909,1165848.404321987,684559.4798381136,228902.6662378797,6817.330733398986 -11127,13701,24888,-9,24887,24886,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1079.513789056638,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1151,0,0,0,0,262.0960190696924 -11127,13702,24889,-9,24887,24886,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1027.69938014037,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,858,134499.3585811205,0,0,0,708.2193263333376 -11128,13703,24890,24891,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,47,0,-59.95088307414024,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.800819548365187,0,62.42,45.64,57.33,53.46,10,1,1,0,0,0,6,5,1,492.5,1743843.137939777,778871.5843306159,364416.0584527767,0,4861.598355669004 -11128,13703,24891,24890,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,9.167291975884007,9.277505794297621,47,0,23.45972647604305,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.172006288872192,8.940223669761144,57.33,53.46,62.42,45.64,8.333333333333334,1,1,0,0,8,6,5,1,492.5,1743843.137939777,778871.5843306159,364416.0584527767,0,4861.598355669004 -11129,13704,24892,-9,24893,24897,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1193.460305627624,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11129,13704,24893,24897,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,19,-3,92.46927620768714,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,57,7,2,3,0,0,0,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11129,13704,24894,-9,24893,24897,1,1,17,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1059.496722433481,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11129,13704,24895,-9,24893,24897,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1099.145199752979,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11129,13704,24896,-9,24893,24897,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.9098700904939,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11129,13704,24897,24893,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,5.909978365429522,6.124704986336749,0,19,3,-19.99766392618107,0,3,3,2019,10,0,60,60,1,1,0,.7894602884719578,.7894602884719578,0,0,0,0,0,1,1,0,0,0,51,57,48,56,7,2,3,0,0,11,6,2,1,925.5,65350.73036831432,0,105041.7425794027,65941.2939183979,1222.625633715714 -11130,13705,24898,24899,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.742536589973897,8.721965082545491,0,3,6,-8.248734825042844,0,-9,-9,2019,6,0,44,45,1,0,0,19.87250357002596,19.87250357002596,0,0,0,0,0,1,1,0,7.338276755026325,0,57.73,54.53,54.04,60.47,8.333333333333334,1,1,0,0,4,11,5,1,473.5,398986.0459053591,22385.04492599561,239842.2804867147,0,3337.654848927095 -11130,13705,24899,24898,-9,24900,1,0,50,0,0,0,2,2,-9,0,5,6.334765079730325,6.377926738991472,0,3,-6,-82.08600880237849,0,2,2,2019,7,0,5,10,1,0,0,13.62456417641216,13.62456417641216,0,0,0,0,27,1,1,0,0,0,54.04,60.47,57.73,54.53,8.333333333333334,1,1,0,0,9,11,5,1,473.5,398986.0459053591,22385.04492599561,239842.2804867147,0,3337.654848927095 -11130,13706,24900,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.0129477592159,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,11,1,1,576,-86135.76279735986,0,0,0,1765.39706898977 -11131,13707,24901,24902,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,6.049525263861508,6.005130127725551,35,-8,-16.70072429837882,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.002028992969643,5.68569937150424,46.75,48.9,54.21,25.53,8.333333333333334,1,1,0,0,6,9,2,1,667.5,895335.3111266859,334761.1004340379,503036.2331727952,0,4139.593299520439 -11131,13707,24902,24901,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.913174949635057,7.175373919785533,35,8,-74.1778928680222,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,9.235957501454271,6.694278712560799,54.21,25.53,46.75,48.9,8.333333333333334,1,1,0,0,0,9,2,1,667.5,895335.3111266859,334761.1004340379,503036.2331727952,0,4139.593299520439 -11132,13708,24903,24904,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,0,0,52,-3,-62.14891383790998,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.65,52.89,54.79,18.85,10,1,1,0,0,0,12,2,0,3590,234586.1678854832,48149.04227609153,234844.3396209761,0,1634.489087840842 -11132,13708,24904,24903,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,4.784192636638107,4.198074771037117,52,3,20.40100283582368,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,8.577467656916516,0,0,1,1,0,4.415178930492585,4.312610794415191,54.79,18.85,58.65,52.89,3.333333333333333,1,1,0,0,0,12,2,0,3590,234586.1678854832,48149.04227609153,234844.3396209761,0,1634.489087840842 -11133,13709,24905,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1025.302698159684,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.141186986601233,0,50.54,62.09,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1228,111421.0416263458,0,0,0,73.0721130819868 -11134,13710,24906,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-779.4113920568876,0,3,3,2019,12,5,0,30,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,62.61,26.53,-9,-9,8.333333333333334,3,4,1,1,4,8,1,0,697,0,0,0,0,380.2512199010754 -11134,13711,24907,-9,24906,-9,1,0,23,0,0,0,2,2,-9,0,3,8.073621181649745,7.90768552979392,0,0,0,-1058.389747853567,0,2,-9,2019,8,0,15,16,1,0,1,15.79951954849936,15.79951954849936,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,8.333333333333334,3,4,0,0,4,8,3,0,1114,144388.455731189,0,0,0,746.4131128001513 -11134,13712,24908,-9,24906,-9,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-947.3821365643366,-9,2,-9,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.92,36.74,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,297,0,0,0,0,569.9043636269511 -11135,13713,24909,-9,24910,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.200626764744,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,398.5,15754.8685793559,0,0,0,3228.120500088855 -11135,13713,24910,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,0,0,0,0,0,-917.9702177356705,0,3,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,74.5,1,1,0,0,0,19.72,49.57,-9,-9,1.666666666666667,1,1,1,1,0,8,1,0,398.5,15754.8685793559,0,0,0,3228.120500088855 -11135,13714,24911,-9,24910,-9,1,0,18,0,1,0,2,2,1,0,4,6.200969774021464,6.134627842024485,0,0,0,-1102.205444885198,-9,2,-9,2019,8,0,7,0,1,0,1,11.73252276572022,11.73252276572022,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,2,8,2,0,400,-3413.942667304826,0,0,0,593.4610427655589 -11136,13715,24912,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.051686169631264,7.305562850318369,0,0,0,-932.3442146588462,0,2,2,2019,8,0,20,25,1,0,0,7.869872627062206,7.869872627062206,0,0,0,0,0,1,1,0,6.503742478895993,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,10,5,3,0,121,71222.22787775274,40505.3903226266,0,0,411.2082169983761 -11137,13716,24913,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.637005720857191,8.617539583822355,0,0,0,-1076.089578921914,0,-9,-9,2019,6,0,40,40,1,0,0,14.67901804906685,14.67901804906685,0,0,0,0,0,0,0,0,2.755456250840655,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,435,-82926.20609481631,-39989.48939384172,0,0,2689.098343114655 -11138,13717,24914,24915,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.491005075712946,8.523332804918498,0,9,8,43.90434408310351,0,2,2,2019,10,0,41,41,1,0,0,14.43787754150872,14.43787754150872,0,0,0,0,0,1,1,0,0,0,39.93,57.25,41.43,40.35,6.666666666666667,1,1,0,0,11,7,4,1,412,774626.2790136163,304820.0228932447,631383.3255710021,174852.2637862004,3422.222272341949 -11138,13717,24915,24914,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,7.915345743819628,8.164523399037032,0,9,-8,175.3591900555157,0,2,2,2019,12,0,24,23,1,0,0,15.84019566817517,15.84019566817517,0,0,0,0,102,1,1,0,0,0,41.43,40.35,39.93,57.25,8.333333333333334,1,1,0,0,11,7,4,1,412,774626.2790136163,304820.0228932447,631383.3255710021,174852.2637862004,3422.222272341949 -11138,13717,24916,-9,24915,24914,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.069531243032,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,412,774626.2790136163,304820.0228932447,631383.3255710021,174852.2637862004,3422.222272341949 -11138,13717,24917,-9,24915,24914,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.368634231424,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,412,774626.2790136163,304820.0228932447,631383.3255710021,174852.2637862004,3422.222272341949 -11138,13717,24918,-9,24915,24914,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.9689661136313,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,412,774626.2790136163,304820.0228932447,631383.3255710021,174852.2637862004,3422.222272341949 -11139,13718,24919,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.354302644135933,5.248658667504113,0,0,-1014.700878279516,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,22.10904562129855,0,0,1,1,0,5.50366277436297,5.149137807091793,53.16,28.54,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,393,251323.4445137693,-8327.064931736297,152041.9185919321,0,1635.21192535156 -11139,13719,24920,-9,24919,-9,1,0,44,0,0,0,3,3,-9,0,4,7.827799748234573,8.051071264590362,0,0,0,-929.0276556849051,0,3,-9,2019,13,4,37,20,1,4,0,7.392476721257295,7.392476721257295,0,0,0,0,74.5,1,1,0,0,0,53.29,51.44,-9,-9,6.666666666666667,1,1,0,0,12,5,3,1,818,216542.6273814514,0,0,0,450.5463799501697 -11140,13720,24921,24922,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.924589538479746,7.718333639732641,0,1,-7,-67.66847445161598,-9,-9,-9,2019,16,5,38,0,1,5,0,9.325785186621319,9.325785186621319,0,0,0,0,0,0,0,0,0,0,47.25,28.4,54.2,57.49,6.666666666666667,1,1,0,0,2,4,5,1,301,9291.800044969834,0,0,0,3456.40499053304 -11140,13720,24922,24921,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.970848805651752,8.702200602703634,0,1,7,63.71363893274103,0,2,2,2019,8,0,48,48,1,0,0,16.92219109530554,16.92219109530554,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.25,28.4,8.333333333333334,1,1,0,0,6,4,5,1,301,9291.800044969834,0,0,0,3456.40499053304 -11141,13721,24923,24924,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,8.00722812797088,7.917477057334426,0,7,-3,-46.68988165288808,0,-9,-9,2019,11,0,30,20,1,1,0,11.85790894129886,11.85790894129886,0,0,0,0,0,1,1,0,5.551123750148238,0,50,47,51.77,58.57,7,1,1,0,0,1,8,4,1,397.5,1280221.808068015,813623.1865138417,431920.2367802635,0,6396.934586386176 -11141,13721,24924,24923,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.59676428835357,7.426288831940097,5.635187632513364,7,3,-86.43053567948498,0,2,2,2019,10,0,40,45,1,0,0,3.90832426585741,3.90832426585741,0,0,0,0,0,1,1,0,8.550081212150738,5.326813148551656,51.77,58.57,50,47,6.666666666666667,1,1,0,1,8,8,4,1,397.5,1280221.808068015,813623.1865138417,431920.2367802635,0,6396.934586386176 -11142,13722,24925,-9,24927,24926,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-887.2623310164986,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,425,2601718.151509229,1854115.299376462,913432.8090822963,113360.7933536741,5526.468238566369 -11142,13722,24926,24927,-9,-9,1,1,62,0,1,0,1,1,-9,0,3,8.717320792713133,9.19860561657941,7.343596283906108,25,12,-61.9481026477099,0,-9,-9,2019,18,6,48,38,1,6,0,14.66763200727078,14.66763200727078,0,0,0,0,0,0,0,0,0,7.768224296663543,46.27,57.3,41.41,22.16,3.333333333333333,1,1,0,0,10,8,5,1,425,2601718.151509229,1854115.299376462,913432.8090822963,113360.7933536741,5526.468238566369 -11142,13722,24927,24926,-9,-9,1,0,50,0,1,0,2,2,-9,0,1,8.59800702142565,8.782796833752133,0,8,-12,-44.33111719065461,0,2,3,2019,17,5,46,43,1,5,0,18.17439133809859,18.17439133809859,0,0,0,0,0,0,0,0,0,0,41.41,22.16,46.27,57.3,5,2,3,0,0,10,8,5,1,425,2601718.151509229,1854115.299376462,913432.8090822963,113360.7933536741,5526.468238566369 -11143,13723,24928,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.329465575749937,7.530897555332358,0,0,-994.9401217071652,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,0,7.382952323952916,29.83,35.21,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,446,567842.8794075556,119317.9153577784,54441.03323270196,0,1575.226389220219 -11144,13724,24929,-9,24930,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1095.928602875793,-9,2,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,1,0,419.5,-99613.16181351915,0,0,0,1575.794554994868 -11144,13724,24930,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1078.361787088305,-9,3,1,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,7.969280676558324,0,54.1,59.11,-9,-9,8.333333333333334,4,2,1,0,8,8,1,0,419.5,-99613.16181351915,0,0,0,1575.794554994868 -11145,13725,24931,-9,24933,24932,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1158.259867180334,-9,-9,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,4,6,-9,0,0,12,5,1,747.3333333333334,971614.5613683271,592537.1474773703,157065.2435059168,0,4323.706819102186 -11145,13725,24932,24933,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.14524810096043,8.228228732937174,31,7,129.9009300187758,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.609692195544018,8.063083074180906,54.45,56.22,57.16,56.15,8.333333333333334,1,1,0,0,5,12,5,1,747.3333333333334,971614.5613683271,592537.1474773703,157065.2435059168,0,4323.706819102186 -11145,13725,24933,24932,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.167742694056333,8.344649087234959,7.081190913708145,6,-7,-16.69609041004725,0,3,3,2019,9,0,29,30,1,0,0,12.10205135171761,12.10205135171761,0,0,0,0,0,1,1,0,4.305626693654824,7.280391702871768,57.16,56.15,54.45,56.22,10,1,1,0,0,8,12,5,1,747.3333333333334,971614.5613683271,592537.1474773703,157065.2435059168,0,4323.706819102186 -11146,13726,24934,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.5297799396783,7.299307282726677,0,0,-896.0468738880653,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,7.831206961426788,27.74,40.17,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,433,99416.26356750078,186678.7603541118,199375.6973604844,0,1281.129234105499 -11147,13727,24935,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.649465692674687,8.518313982747221,5.737369901748771,0,0,-1091.976659735496,0,2,2,2019,9,2,48,58,1,2,0,10.78865645280801,10.78865645280801,0,0,0,0,0,1,1,0,0,5.773477753136028,57.18,42.58,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,653,129755.9615441896,-36318.30138794961,0,0,2368.056467360103 -11148,13728,24936,24937,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.911641748812929,7.794006752026614,0,3,-1,-19.59776117387236,0,1,2,2019,6,0,40,55,1,0,0,8.071944661657398,8.071944661657398,0,0,0,0,0,1,1,0,0,0,43.96,55.64,46.63,59.72,8.333333333333334,1,1,0,0,7,9,3,0,1106.25,209788.8319341973,98080.19731287712,206314.1777292648,47989.51539708031,2415.226005849203 -11148,13728,24937,24936,-9,-9,1,1,33,0,2,0,3,3,-9,0,4,7.435482433870625,7.75871554988869,0,3,1,1.58009126966442,0,-9,-9,2019,8,1,20,20,1,1,0,12.29506151378477,12.29506151378477,0,0,0,0,0,1,1,0,0,0,46.63,59.72,43.96,55.64,6.666666666666667,2,3,0,0,1,9,3,0,1106.25,209788.8319341973,98080.19731287712,206314.1777292648,47989.51539708031,2415.226005849203 -11148,13728,24938,-9,24936,24937,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.5178806153629,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1106.25,209788.8319341973,98080.19731287712,206314.1777292648,47989.51539708031,2415.226005849203 -11148,13728,24939,-9,24936,24937,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.2726131944085,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,1106.25,209788.8319341973,98080.19731287712,206314.1777292648,47989.51539708031,2415.226005849203 -11149,13729,24940,24941,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,4.700171706259962,4.522918317354594,63,5,126.6073015994288,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.924440060239388,4.76555992946683,54.2,57.49,48,35,6.666666666666667,1,1,0,0,0,10,2,0,1027.5,1700949.912993068,0,272090.0871510789,0,2197.962140228776 -11149,13729,24941,24940,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,9,-5,70.31208657537054,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,48,35,54.2,57.49,0,1,1,0,0,0,10,2,0,1027.5,1700949.912993068,0,272090.0871510789,0,2197.962140228776 -11150,13730,24942,24944,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.585665976353738,8.444863391596231,0,27,3,-45.41064987099514,0,-9,3,2019,28,11,70,20,1,11,0,7.787440620800884,7.787440620800884,0,0,0,0,2,1,1,0,0,0,60.94,49.24,57.33,53.46,5,3,4,0,0,12,8,4,0,492.6666666666667,182238.2102128009,58995.58527660976,257052.7223091497,172382.0306667506,3543.33232553246 -11150,13730,24943,-9,24944,24942,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1039.405950430441,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,4,0,492.6666666666667,182238.2102128009,58995.58527660976,257052.7223091497,172382.0306667506,3543.33232553246 -11150,13730,24944,24942,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.67375811143839,7.888209992939202,0,27,-3,-3.565750277934677,0,3,3,2019,4,0,40,37,1,0,0,7.617824414518757,7.617824414518757,0,0,0,0,86,1,1,0,0,0,57.33,53.46,60.94,49.24,6.666666666666667,3,4,0,0,3,8,4,0,492.6666666666667,182238.2102128009,58995.58527660976,257052.7223091497,172382.0306667506,3543.33232553246 -11150,13731,24945,-9,24944,24942,1,1,24,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1035.025977520566,0,1,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,2,1,1,0,3.352102851135611,0,57.33,53.46,-9,-9,3.333333333333333,3,4,0,0,5,8,1,0,1119,0,0,0,0,-221.6705277648998 -11150,13732,24946,-9,24944,24942,1,1,19,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1034.566015945588,1,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,0,335,0,0,0,0,538.1535442864916 -11151,13733,24947,24948,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,5.8228781055641,6.034748635013759,49,-2,16.21010544372304,-9,-9,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.565982386539241,6.072848526687723,54.27,37.84,23.01,44.11,3.333333333333333,1,1,0,0,0,10,2,1,1081,1455177.966062202,485051.6414285076,551469.7327024587,0,1798.807714509175 -11151,13733,24948,24947,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.873298834657007,6.326139971043096,49,2,168.2322852054626,-9,-9,-9,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,6.26804695802287,23.01,44.11,54.27,37.84,5,1,1,0,0,0,10,2,1,1081,1455177.966062202,485051.6414285076,551469.7327024587,0,1798.807714509175 -11152,13734,24949,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,9.034369806405937,9.117503133672864,0,0,0,-982.227753636904,0,2,2,2019,14,1,75,86,1,1,0,12.39747720055307,12.39747720055307,0,0,0,0,0,0,0,0,1.93181579688329,0,59.15,42.12,-9,-9,5,2,3,0,0,4,6,5,0,340,-6728.725989646939,-57926.29805710233,0,0,1884.439827111859 -11153,13735,24950,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.599486983139482,7.721188317479807,0,0,-942.7959334932531,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.232165837957636,7.580477143792866,50.79,51.1,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,136,815932.17635472,415450.7755296223,91539.34114353676,0,1817.575383010263 -11154,13736,24951,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.701134537837351,7.490129445046431,0,0,0,-975.8166910903126,0,-9,-9,2019,12,2,32,24,1,2,0,7.164983236432833,7.164983236432833,0,0,0,0,0,0,0,0,.3285856551691328,0,38.98,49.99,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,1078,23648.28540446842,-21042.8823802186,0,0,536.176361130129 -11155,13737,24952,-9,-9,24953,1,1,37,0,0,0,1,1,-9,0,4,8.965595141790331,9.136684454725211,0,0,0,-930.0909674045001,0,2,2,2019,7,0,45,45,1,0,0,16.18219290712605,16.18219290712605,0,0,0,0,0,0,0,0,6.74894951792851,0,55.78,49.92,-9,-9,8.333333333333334,2,3,0,0,10,4,5,1,1150,230328.1477808041,29335.65359534956,130934.3985985293,151940.7637357182,3120.105015288122 -11155,13738,24953,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.820862879298708,7.962176603813069,0,0,-926.2442414386139,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.369075975382652,7.879792057128618,58.47,50.22,-9,-9,1.666666666666667,2,3,0,0,8,4,3,1,888,1176540.153010925,560965.2958483123,201222.7079634885,0,1159.288127975232 -11156,13739,24954,-9,-9,-9,1,0,42,1,2,0,3,3,-9,0,3,0,0,0,0,0,-967.7849396050862,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.13,48.04,-9,-9,5,1,1,0,0,1,7,1,0,801,13341.93843858287,0,0,0,1238.863596136268 -11156,13739,24955,-9,24954,-9,1,1,15,1,2,1,3,0,-9,0,5,0,0,0,0,0,-989.9007124680461,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,1,0,801,13341.93843858287,0,0,0,1238.863596136268 -11156,13739,24956,-9,24954,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.5901146026564,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,1,0,801,13341.93843858287,0,0,0,1238.863596136268 -11156,13740,24957,-9,24954,-9,1,1,18,1,2,0,2,2,-9,0,4,7.734021005982356,7.968506854313842,0,0,0,-1058.251490588612,0,3,-9,2019,11,0,72,0,1,2,1,3.465987084045618,3.465987084045618,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,1,7,3,0,493,135978.6168802948,0,0,0,1385.31711626674 -11157,13741,24958,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.479305343139762,9.946311930559146,0,0,0,-946.8716905866158,0,2,2,2019,7,0,60,55,1,0,0,24.40356089532062,24.40356089532062,0,0,0,0,2,1,1,0,3.109153789464608,0,62.64,49.56,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,369,2165460.963665347,1581303.441143498,455809.1301589545,0,5594.303365361286 -11158,13742,24959,24960,-9,-9,1,1,95,0,0,0,3,3,-9,0,3,0,6.201824097189343,5.974881112146997,69,8,22.5783493858245,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.584254563999403,5.830081657882443,56,44,49.58,54.26,8,1,1,0,0,0,9,2,1,884.5,619347.6000081545,151094.0386170023,238169.7557674535,0,1721.889318222709 -11158,13742,24960,24959,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.203422875125519,7.301591775665841,69,-8,-43.52440697792292,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,2.194198474864485,7.603004180914661,49.58,54.26,56,44,5,1,1,0,0,0,9,2,1,884.5,619347.6000081545,151094.0386170023,238169.7557674535,0,1721.889318222709 -11159,13743,24961,24962,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.151740720008771,8.663891959312187,0,34,1,94.29105491648606,0,2,1,2019,7,0,45,47,1,0,0,23.37542679519605,23.37542679519605,0,0,0,0,0,0,0,0,3.509815982308235,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,477.5,1604979.088377921,1075284.670611505,124604.9378366508,0,5561.392487965595 -11159,13743,24962,24961,24963,-9,1,0,57,0,0,0,1,1,-9,0,5,8.676174188961314,8.512398416920092,0,33,-1,50.0529036650755,0,2,2,2019,6,0,40,65,1,0,0,15.71919287794603,15.71919287794603,0,0,0,0,0,0,0,0,1.836992199120477,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,477.5,1604979.088377921,1075284.670611505,124604.9378366508,0,5561.392487965595 -11159,13744,24963,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.941323358174,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.373291309092505,0,52,45,-9,-9,8,4,6,0,0,0,2,1,1,906,200735.3073746039,0,0,0,590.5889957099962 -11159,13745,24964,-9,24962,24961,1,0,28,0,0,0,1,1,-9,0,5,8.611251080112124,8.655245881671709,0,0,0,-949.4516710344075,0,1,1,2019,7,0,58,50,1,0,1,9.568712359018788,9.568712359018788,0,0,0,0,0,0,0,0,1.545846603138123,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,141,106309.652576703,36935.99504866813,0,0,1484.037746306668 -11160,13746,24965,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1020.684329240734,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.5,37.38,-9,-9,10,1,1,0,0,0,9,1,1,542,-2004.639436804722,0,0,0,693.3973968021902 -11161,13747,24966,24967,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,8.091663070937816,7.962595959010597,0,1,-1,20.25103986464236,-9,-9,-9,2019,34,12,38,0,1,12,0,9.862465855863505,9.862465855863505,0,0,0,0,0,0,0,0,0,0,26.57,20.42,27.81,65.69,0,1,1,0,0,4,1,5,1,164,186158.5631424909,51338.30492788754,183754.8602378212,130809.0966007154,3635.938220825717 -11161,13747,24967,24966,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.21179547243654,8.276948373125261,0,1,1,47.54616285806293,-9,2,2,2019,19,7,40,0,1,7,0,13.08405745073128,13.08405745073128,0,0,0,0,0,0,0,0,7.070625658767996,0,27.81,65.69,26.57,20.42,3.333333333333333,1,1,0,0,2,1,5,1,164,186158.5631424909,51338.30492788754,183754.8602378212,130809.0966007154,3635.938220825717 -11162,13748,24968,24969,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.107945533248198,6.975818520607158,0,9,8,-12.68464344378801,0,1,2,2019,7,1,30,30,1,1,0,4.315964193701686,4.315964193701686,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.95,39.29,6.666666666666667,1,1,0,0,11,4,5,1,371.5,779090.2419311219,682764.0416193692,195057.2895336643,119254.0366245108,4117.693425142976 -11162,13748,24969,24968,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.101229593797868,9.427858355651335,0,9,-8,-26.39105643657123,0,-9,-9,2019,11,2,82,80,1,2,0,13.97042083332818,13.97042083332818,0,0,0,0,0,0,0,0,7.52362899306269,0,47.95,39.29,54.2,57.49,6.666666666666667,1,1,0,0,7,4,5,1,371.5,779090.2419311219,682764.0416193692,195057.2895336643,119254.0366245108,4117.693425142976 -11163,13749,24970,24971,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.896083608442377,6.865526384366855,0,9,-4,-28.65107062133486,0,3,3,2019,11,0,18,16,1,0,0,6.986765946676272,6.986765946676272,0,0,0,0,2,1,1,0,0,0,41.86,46.88,39.88,50.52,8.333333333333334,1,1,0,0,12,13,3,1,1062,1210982.772031746,1165102.461556682,116582.5522273204,0,2101.319227241244 -11163,13749,24971,24970,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.792621216828339,8.155624407210526,9,4,-68.34340852372684,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.211637921871643,7.915964006596118,39.88,50.52,41.86,46.88,5,1,1,0,0,0,13,3,1,1062,1210982.772031746,1165102.461556682,116582.5522273204,0,2101.319227241244 -11164,13750,24972,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.257964614374078,8.546539646901273,0,0,0,-1100.447604905764,0,3,3,2019,17,7,45,44,1,7,0,10.90352604320649,10.90352604320649,0,0,0,0,0,0,0,0,5.160734698235594,0,49.56,39.99,-9,-9,5,1,1,0,0,11,6,4,1,127,1111525.775114914,849079.5088795114,138069.9585007238,0,1677.692832722737 -11165,13751,24973,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.714829756724894,6.779411871894711,0,0,-934.1926577135175,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.847478008205105,6.965770089252839,56.92,46.68,-9,-9,6.666666666666667,1,1,0,0,9,11,2,1,527,1209286.668875903,698326.4223882862,286970.5887367808,0,1144.195567139614 -11166,13752,24974,24975,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,6,-5,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,36.76,53.66,8,2,3,0,0,0,7,1,1,850,172405.6790513532,0,0,0,262.1696419901845 -11166,13752,24975,24974,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,6,5,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,71.5,1,1,0,0,0,36.76,53.66,53,52,5,2,3,0,0,0,7,1,1,850,172405.6790513532,0,0,0,262.1696419901845 -11167,13753,24976,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,7.186872862089657,7.493404997533967,0,0,-1087.012791792193,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,4.180393195520523,7.315858388421105,44.06,45,-9,-9,5,1,1,0,0,0,8,3,1,772,937716.7616659789,395178.9577365187,363980.8620290585,0,1214.853831010409 -11168,13754,24977,24978,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.661498659478427,5.927350903393561,48,0,150.4568936515163,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.822875272092888,5.888151714767273,61.28,48.88,56.92,49.39,10,1,1,0,0,3,1,3,1,944.5,418703.34757976,317824.7642263437,58999.2309498096,0,2577.547485929298 -11168,13754,24978,24977,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.573169599487881,7.716690916873341,48,0,80.07752931878565,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.207105818026641,7.732628357879166,56.92,49.39,61.28,48.88,8.333333333333334,1,1,0,0,0,1,3,1,944.5,418703.34757976,317824.7642263437,58999.2309498096,0,2577.547485929298 -11169,13755,24979,24980,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.16905164908432,9.356779865940739,0,27,0,-32.98565639990476,0,2,2,2019,10,1,37,37,1,1,0,37.06830244165118,37.06830244165118,0,0,0,0,0,0,0,0,8.299083961591204,0,48.81,59.91,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,499.75,1578693.817071585,838751.4171655884,455845.0022894738,0,5043.21727939303 -11169,13755,24980,24979,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.63748117210367,7.681939421716345,0,26,0,-23.46783624462939,0,2,2,2019,6,0,30,30,1,0,0,8.149012642480379,8.149012642480379,0,0,0,0,2,0,0,0,1.754401166706162,0,57.06,57.76,48.81,59.91,10,1,1,0,0,8,8,5,1,499.75,1578693.817071585,838751.4171655884,455845.0022894738,0,5043.21727939303 -11169,13755,24981,-9,24980,24979,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1026.258490036968,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,499.75,1578693.817071585,838751.4171655884,455845.0022894738,0,5043.21727939303 -11169,13755,24982,-9,24980,24979,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1129.330050450647,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.800992785013661,0,57.33,53.46,-9,-9,10,1,1,0,0,1,8,5,1,499.75,1578693.817071585,838751.4171655884,455845.0022894738,0,5043.21727939303 -11170,13756,24983,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.258838027082612,6.248384872501942,0,0,-997.5477853018554,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.944703289838259,6.824450665230776,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,328,262616.3964484521,189072.8551337718,133124.6028192604,0,1081.534142344288 -11171,13757,24984,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.258749512247505,6.996170328297484,0,0,0,-1140.889974437813,0,-9,1,2019,7,2,20,40,1,2,0,9.217680624118419,9.217680624118419,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,816,1624473.746309928,0,996053.6330726771,0,1519.924231856618 -11172,13758,24985,24986,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.734286177398438,6.807157838355318,8,-5,-30.66874983383945,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,5.053150513897197,6.817152259623946,49.67,48.56,51.31,29.12,8.333333333333334,1,1,0,0,0,10,2,1,794,766443.7758943127,378590.9967361322,238948.8461087321,0,1697.32278763552 -11172,13758,24986,24985,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.035352373573353,5.897458540778119,8,5,-12.33993970259186,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.851970356560476,6.288386852583932,51.31,29.12,49.67,48.56,8.333333333333334,1,1,0,0,0,10,2,1,794,766443.7758943127,378590.9967361322,238948.8461087321,0,1697.32278763552 -11173,13759,24987,24988,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.6239451196322,8.654190600037467,0,6,0,86.45132557613952,0,2,2,2019,6,0,45,33,1,0,0,14.48320096523384,14.48320096523384,0,0,0,0,0,0,0,0,0,0,57.9,51.84,39.64,46.92,8.333333333333334,1,1,0,0,8,9,5,0,752,127158.6848306764,59860.50490981628,0,0,3149.913011365396 -11173,13759,24988,24987,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.454242476094589,7.284627834678454,0,6,0,7.448227873594079,0,2,2,2019,12,0,30,15,1,0,0,7.163579697688426,7.163579697688426,0,0,0,0,0,0,0,0,0,0,39.64,46.92,57.9,51.84,5,1,1,0,0,8,9,5,0,752,127158.6848306764,59860.50490981628,0,0,3149.913011365396 -11174,13760,24989,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.080614387074256,7.763879884949993,0,0,-907.9204042735423,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.275785707043614,7.788197591948077,55.37,24.77,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,142,840688.9740990261,526106.0700777564,78737.0781699426,0,1803.758231156887 -11175,13761,24990,24991,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.567413108506051,8.569949780220682,0,8,-11,103.1426744027588,0,-9,-9,2019,14,3,50,60,1,3,0,10.57959673426399,10.57959673426399,0,0,0,0,0,0,0,0,0,0,40.4,58.62,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,828,56380.61540781202,-15049.10152800943,133818.5900878718,92683.39917339968,3242.984369884933 -11175,13761,24991,24990,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.247394577621179,8.175331449791011,0,8,11,-62.19896659218785,0,2,3,2019,12,1,41,43,1,1,0,11.27796871984274,11.27796871984274,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.4,58.62,6.666666666666667,1,1,0,0,9,5,5,1,828,56380.61540781202,-15049.10152800943,133818.5900878718,92683.39917339968,3242.984369884933 -11176,13762,24992,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.400010977747025,7.543191026248928,0,0,-1057.469094276515,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.821395068052484,0,17.82795598936116,2,1,1,0,3.082354863408404,7.088408967717103,58.83,36.29,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1575,368499.6308067786,259898.641988189,99358.96823403605,0,1499.26903479645 -11177,13763,24993,24994,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.910391228841594,7.787458642710543,0,8,9,5.726740634751264,0,3,-9,2019,15,3,50,40,1,3,0,4.990655100232845,4.990655100232845,0,0,0,0,0,0,0,0,0,0,45.91,59.89,51.14,60.45,5,1,1,0,0,9,12,3,1,103.5,23705.74174765849,88939.93850638159,0,0,1587.068465135523 -11177,13763,24994,24993,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,6.141300831748814,6.460787112354356,0,8,0,-42.24862427096743,0,3,2,2019,12,2,60,70,1,2,0,.9916252085342564,.9916252085342564,0,0,0,0,0,0,0,0,0,0,51.14,60.45,45.91,59.89,6.666666666666667,1,1,0,0,9,12,3,1,103.5,23705.74174765849,88939.93850638159,0,0,1587.068465135523 -11178,13764,24995,24997,-9,-9,1,1,47,0,3,0,2,2,-9,0,4,8.694431460007912,8.644388703449307,0,21,6,102.4722490906838,0,3,3,2019,12,0,39,44,1,0,0,21.05529303101363,21.05529303101363,0,0,0,0,0,1,1,0,0,0,57.14,56.16,52.69,42.39,8.333333333333334,1,1,0,0,12,4,4,1,483.2,861894.8516305254,60427.41773477078,625677.8661927268,75526.09906727464,3303.040835173706 -11178,13764,24996,-9,24997,24995,1,0,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-951.1852046895785,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.71,57.71,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,483.2,861894.8516305254,60427.41773477078,625677.8661927268,75526.09906727464,3303.040835173706 -11178,13764,24997,24995,-9,-9,1,0,41,0,3,0,2,2,-9,0,2,7.817060729886474,8.11837056709968,0,9,-6,-18.66126773333074,-9,3,1,2019,17,5,39,0,1,5,0,8.337626504455235,8.337626504455235,0,0,0,0,0,1,1,0,0,0,52.69,42.39,57.14,56.16,8.333333333333334,1,1,0,0,12,4,4,1,483.2,861894.8516305254,60427.41773477078,625677.8661927268,75526.09906727464,3303.040835173706 -11178,13764,24998,-9,24997,24995,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.5801190454038,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,483.2,861894.8516305254,60427.41773477078,625677.8661927268,75526.09906727464,3303.040835173706 -11178,13764,24999,-9,24997,24995,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-843.7958553315439,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,483.2,861894.8516305254,60427.41773477078,625677.8661927268,75526.09906727464,3303.040835173706 -11179,13765,25000,25003,-9,-9,1,0,46,0,4,0,3,3,-9,0,3,0,0,0,28,-2,-49.43444157413747,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52,35.53,55.06,48.84,10,2,3,0,0,0,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11179,13765,25001,-9,25000,25003,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1018.639638940571,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11179,13765,25002,-9,25000,25003,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.6608023749332,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11179,13765,25003,25000,-9,-9,1,1,48,0,4,0,2,2,-9,0,4,7.826229990581744,7.684887327966746,0,7,2,198.480754800798,0,3,3,2019,8,0,36,41,1,0,0,7.3872642894921,7.3872642894921,0,0,0,0,2,1,1,0,0,0,55.06,48.84,66.52,35.53,1.666666666666667,2,3,0,0,5,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11179,13765,25004,-9,25000,25003,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-956.7337481657828,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11179,13765,25005,-9,25000,25003,1,1,16,0,4,1,2,0,0,0,5,0,0,0,0,0,-996.6626867472301,-9,3,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,2,2,1,1241.166666666667,122477.779536661,20993.21211080816,194132.7012329844,141918.3313052899,2673.408118236714 -11180,13766,25006,25007,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,45,-1,0,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.106915344266282,0,51,47,53,47,7,2,3,0,0,0,6,1,1,325,-31851.95119353646,0,144311.1983110393,0,728.7425834727628 -11180,13766,25007,25006,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,45,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,51,47,7,2,3,0,0,0,6,1,1,325,-31851.95119353646,0,144311.1983110393,0,728.7425834727628 -11180,13767,25008,-9,25006,25007,1,1,40,0,0,0,1,1,-9,0,5,9.677620528441649,9.474037740552397,0,0,0,-1060.978295155406,0,3,3,2019,1,0,24,26,1,0,0,59.84883007930558,59.84883007930558,0,0,0,0,2,1,1,0,9.529673379642984,0,62.39,56.71,-9,-9,10,2,3,0,0,9,6,5,1,679,268683.7160542903,340793.4714481015,0,0,9230.393158884795 -11180,13768,25009,-9,25006,25007,1,0,37,0,0,0,2,2,-9,0,4,8.301219844497064,8.52198254795336,0,0,0,-1012.385382522492,0,3,3,2019,21,8,35,30,1,8,0,15.7948026187012,15.7948026187012,0,0,0,0,14.5,1,1,0,0,0,30.17,53.55,-9,-9,6.666666666666667,2,3,0,0,4,6,4,1,481,-17718.85053454742,0,0,0,1670.711222690544 -11180,13769,25010,-9,25006,25007,1,0,31,0,0,0,2,2,-9,0,4,7.932333027504432,7.938204642612533,6.201920530964491,0,0,-889.0211129023215,0,3,3,2019,11,0,35,35,1,2,0,9.512499363909543,9.512499363909543,0,0,0,0,0,1,1,0,4.582878629161374,6.295221359458225,48,56,-9,-9,7,2,3,0,0,1,6,4,1,1402,-74994.78246736879,-42211.81249598159,0,0,2337.948451993861 -11181,13770,25011,-9,25013,25014,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.0001116319751,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,718.5,1484250.930662112,1068012.741019125,400342.8625829295,39782.89387826729,3994.930068561375 -11181,13770,25012,-9,25013,25014,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-962.4953880699288,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,1,0,2,5,1,718.5,1484250.930662112,1068012.741019125,400342.8625829295,39782.89387826729,3994.930068561375 -11181,13770,25013,25014,-9,-9,1,0,46,0,1,0,2,2,-9,0,1,8.265078782256998,8.524352501444795,0,22,-6,100.1286903365631,0,3,2,2019,33,11,32,24,1,11,0,19.65502083321294,19.65502083321294,0,0,0,0,0,1,1,0,0,0,25.15,22.66,46.41,33.08,1.666666666666667,1,1,0,1,10,2,5,1,718.5,1484250.930662112,1068012.741019125,400342.8625829295,39782.89387826729,3994.930068561375 -11181,13770,25014,25013,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,9.065115431477189,9.171691600125685,0,22,6,-33.02525313380099,0,2,2,2019,8,0,40,42,1,0,0,20.29499971534401,20.29499971534401,0,0,0,0,0,1,1,0,2.617363855717464,0,46.41,33.08,25.15,22.66,6.666666666666667,1,1,0,0,10,2,5,1,718.5,1484250.930662112,1068012.741019125,400342.8625829295,39782.89387826729,3994.930068561375 -11182,13771,25015,25017,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.077973181120024,7.795924595623572,0,33,1,-30.01969334536034,0,1,2,2019,11,0,35,36,1,0,0,9.124296597091027,9.124296597091027,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.09,51.67,8.333333333333334,1,1,0,0,9,7,4,1,998,920238.1006296534,311350.9822672924,721191.2204594029,118737.4856606277,3302.360584553691 -11182,13771,25016,-9,25015,25017,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-861.1266748273654,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,998,920238.1006296534,311350.9822672924,721191.2204594029,118737.4856606277,3302.360584553691 -11182,13771,25017,25015,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.309491630381084,8.220885049946757,0,32,-1,-48.07349452282551,0,2,2,2019,11,2,50,55,1,2,0,9.227235819487118,9.227235819487118,0,0,0,0,0,1,1,0,0,0,46.09,51.67,51.24,58.84,6.666666666666667,1,1,0,0,8,7,4,1,998,920238.1006296534,311350.9822672924,721191.2204594029,118737.4856606277,3302.360584553691 -11182,13772,25018,-9,25015,25017,1,1,22,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1038.102861614551,0,2,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,290,65733.17234595708,0,0,0,0 -11182,13773,25019,-9,25015,25017,1,0,18,0,1,0,2,2,-9,0,4,0,3.634878179362851,3.694855604831463,0,0,-1137.594204879827,1,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,3.081126687882891,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,605,122051.7913493984,0,0,0,-669.3697293152413 -11183,13774,25020,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.661410979361729,6.110742208601057,0,0,-980.6631440221382,0,3,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.192205156048208,6.579735372441775,54.1,59.11,-9,-9,0,1,1,0,0,6,4,2,0,1899,110135.4041263436,19997.14166338179,0,0,934.4666335576435 -11184,13775,25021,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.581682446923018,7.7386273989001,0,0,-1068.732815506591,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.845623040456598,7.204960197209076,50.6,53.68,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,206,749798.5431960775,409859.9559373003,457370.3820158602,65711.84733403532,1515.365269710107 -11185,13776,25022,25023,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,6.608492325385566,6.702863420474708,0,1,-10,57.27011530216141,-9,-9,-9,2019,12,0,25,0,1,0,0,4.011196406977443,4.011196406977443,0,0,0,0,0,0,0,0,7.386036170541125,0,25.92,66.48999999999999,40.48,60.05,0,1,1,0,0,10,8,5,0,940.5,532405.9737197278,526272.1009811196,191139.8073654552,68417.44556683025,5951.045325734134 -11185,13776,25023,25022,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,9.400642452889048,9.745178616091348,0,1,10,-115.0816515727235,0,-9,-9,2019,15,3,30,40,1,3,0,52.38310938786169,52.38310938786169,0,0,0,0,0,0,0,0,0,0,40.48,60.05,25.92,66.48999999999999,6.666666666666667,1,1,0,0,10,8,5,0,940.5,532405.9737197278,526272.1009811196,191139.8073654552,68417.44556683025,5951.045325734134 -11185,13777,25024,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.667911027658942,8.819676747377793,0,0,0,-956.2359863749056,-9,-9,-9,2019,11,1,41,0,1,1,0,13.92261745240396,13.92261745240396,0,0,0,0,0,0,0,0,7.047689965313577,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,2,8,5,0,587,-129372.3331104271,151795.1542087232,63912.25652463664,53712.59345012827,2923.086578124971 -11186,13778,25025,-9,25026,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.1983822924061,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,949,-28606.16348134332,0,0,0,883.6412046022527 -11186,13778,25026,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-801.7967322055611,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,36.55,-9,-9,5,1,1,1,0,1,13,1,0,949,-28606.16348134332,0,0,0,883.6412046022527 -11187,13779,25027,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,7.185680370907557,6.906376469535911,0,0,-1063.515742309419,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.030696370627926,54.43,49.12,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,494,536184.5411188771,184687.0921188996,161736.6705333171,0,474.5435462862928 -11188,13780,25028,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1002.933277426238,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.129067075926125,0,51,46,-9,-9,8,1,1,0,0,0,12,1,0,2028,44073.89784852898,0,0,0,1232.608400721771 -11189,13781,25029,25030,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.686665174673767,9.503147011211173,6.584780132094281,8,0,-110.5410625032033,0,-9,-9,2019,11,0,60,45,1,0,0,32.88390303363639,32.88390303363639,0,0,0,0,0,0,0,0,1.30305990807445,6.08535916076583,52,54.51,55.52,38,1.666666666666667,1,1,0,0,11,1,5,1,403,3505884.11475694,2872334.612999508,211230.955563428,0,14706.78600336194 -11189,13781,25030,25029,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.208129721464129,7.91196729613864,0,15,0,-13.60995546581505,0,3,2,2019,9,0,60,37,1,0,0,6.040442513919576,6.040442513919576,0,0,0,0,0,0,0,0,0,0,55.52,38,52,54.51,1.666666666666667,1,1,0,0,9,1,5,1,403,3505884.11475694,2872334.612999508,211230.955563428,0,14706.78600336194 -11190,13782,25031,25033,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.488240321555894,9.610808457919614,0,24,1,37.59732942497909,0,2,2,2019,11,2,48,48,1,2,0,39.9496152407904,39.9496152407904,0,0,0,0,0,0,0,0,4.277126163488721,0,44.47,57.73,40.88,59.72,6.666666666666667,1,1,0,0,9,9,5,1,532.3333333333334,3695392.050596524,3155024.913853059,477957.6332619937,51916.99826020779,5235.474205696575 -11190,13782,25032,-9,25033,25031,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-972.511018723367,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,532.3333333333334,3695392.050596524,3155024.913853059,477957.6332619937,51916.99826020779,5235.474205696575 -11190,13782,25033,25031,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.340410647260552,7.298405637347442,0,27,-1,41.11070942258575,0,3,3,2019,12,0,24,15,1,0,0,8.467314958097949,8.467314958097949,0,0,0,0,0,0,0,0,2.919036758529743,0,40.88,59.72,44.47,57.73,6.666666666666667,1,1,0,0,9,9,5,1,532.3333333333334,3695392.050596524,3155024.913853059,477957.6332619937,51916.99826020779,5235.474205696575 -11190,13783,25034,-9,25033,25031,1,1,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-974.1818733190028,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.252214759751504,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,111,13710.44721233741,0,0,0,53.21641593106689 -11191,13784,25035,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.319237064751531,8.358479811647205,0,0,-983.6284525142007,-9,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,4.49749135169391,8.220988550765233,49.93,51.72,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,462,798973.4505000594,651199.3015883117,217827.2364012727,0,1719.760299196006 -11192,13785,25036,-9,25037,25040,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.712246698695,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,475,240337.4689705987,112708.6669313876,244756.3934231507,166822.515726161,5211.958399002781 -11192,13785,25037,25040,-9,-9,1,0,43,0,3,0,1,1,-9,1,3,7.895168825011207,7.804380445224757,0,7,5,-8.988356688483652,0,1,2,2019,12,0,16,15,1,0,0,21.11380673470699,21.11380673470699,0,0,0,0,7,1,1,0,0,0,46.67,55.57,41.06,62.04,8.333333333333334,1,1,0,0,10,6,5,1,475,240337.4689705987,112708.6669313876,244756.3934231507,166822.515726161,5211.958399002781 -11192,13785,25038,-9,25037,25040,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.012104078757,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,475,240337.4689705987,112708.6669313876,244756.3934231507,166822.515726161,5211.958399002781 -11192,13785,25039,-9,25037,25040,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.4306548633,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,475,240337.4689705987,112708.6669313876,244756.3934231507,166822.515726161,5211.958399002781 -11192,13785,25040,25037,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,9.368288791854622,9.431614716395973,0,7,-5,135.1661273859161,0,2,2,2019,12,1,40,40,1,1,0,29.53553778447144,29.53553778447144,0,0,0,0,14.5,1,1,0,3.011852129297127,0,41.06,62.04,46.67,55.57,5,1,1,0,0,10,6,5,1,475,240337.4689705987,112708.6669313876,244756.3934231507,166822.515726161,5211.958399002781 -11193,13786,25041,25042,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.386913287130655,7.582386759116866,0,15,-3,-80.33683162572471,0,-9,-9,2019,9,0,35,35,1,0,0,5.351234560298014,5.351234560298014,0,0,0,0,0,1,1,0,1.866954483707192,0,62.49,55.09,50.82,57.78,10,1,1,0,0,10,9,4,1,550.5,408370.0492740321,91957.74703177494,350327.8149660261,172534.251888538,3296.863409947338 -11193,13786,25042,25041,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.552038761182716,8.222966728666572,0,15,3,-54.8850426145594,0,2,2,2019,10,0,60,60,1,0,0,10.02652234844746,10.02652234844746,0,0,0,0,0,1,1,0,0,0,50.82,57.78,62.49,55.09,8.333333333333334,1,1,0,0,11,9,4,1,550.5,408370.0492740321,91957.74703177494,350327.8149660261,172534.251888538,3296.863409947338 -11193,13787,25043,-9,25041,25042,1,1,19,0,1,0,2,2,1,0,3,7.140204786644545,7.19912636638815,0,0,0,-1041.508874673982,-9,2,2,2019,6,0,12,0,1,0,1,10.34963580380638,10.34963580380638,0,0,0,0,0,1,1,0,0,0,64.23999999999999,44.83,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,332,163780.4145621342,17456.99528750284,0,0,600.4036028771692 -11194,13788,25044,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,5,0,7.717695357450005,7.372837208608473,0,0,-1001.166186608593,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.541685599273257,58,51,-9,-9,8.333333333333334,1,1,0,0,0,5,3,0,579,415872.0101935107,469039.8180799325,214138.5519131124,532.9717942186144,1461.17331591848 -11195,13789,25045,25048,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.61717009893791,8.82572151486082,0,6,1,15.0892938120471,0,2,2,2019,8,0,37,35,1,0,0,19.62730605364285,19.62730605364285,0,0,0,0,0,1,1,0,6.069234456727297,0,57.16,56.15,42.89,55.9,8.333333333333334,1,1,0,0,6,9,5,1,345,494406.8188854276,151881.1561048613,498416.1251761461,164897.8444739281,5228.567980921292 -11195,13789,25046,-9,25048,25045,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.502400316253,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,345,494406.8188854276,151881.1561048613,498416.1251761461,164897.8444739281,5228.567980921292 -11195,13789,25047,-9,25048,25045,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.7122614260015,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,345,494406.8188854276,151881.1561048613,498416.1251761461,164897.8444739281,5228.567980921292 -11195,13789,25048,25045,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,9.101170093655822,9.216733064743185,0,6,-1,-2.313584917694448,0,3,3,2019,9,0,31,28,1,0,0,33.39168525850912,33.39168525850912,0,0,0,0,0,1,1,0,4.952339972776383,0,42.89,55.9,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,345,494406.8188854276,151881.1561048613,498416.1251761461,164897.8444739281,5228.567980921292 -11196,13790,25049,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.399542442851279,6.880997662702619,0,0,0,-1016.500389664425,0,3,2,2019,9,0,20,20,1,0,0,9.26947827748657,9.26947827748657,0,0,0,0,0,0,0,0,0,0,57.51,42.37,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,517,404329.4956469417,158191.3402835794,190755.232066834,55486.83555345095,671.3834168893284 -11196,13791,25050,-9,25049,-9,1,1,20,0,0,0,2,2,-9,0,4,7.836949363176349,7.725953948506123,0,0,0,-1121.161367551238,-9,1,-9,2019,11,0,36,0,1,2,1,6.871763536860088,6.871763536860088,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,12,3,0,981,74651.95070301324,0,0,0,1156.897928275455 -11197,13792,25051,25052,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.831692450903144,8.210003011723217,0,33,2,8.982121111570798,0,-9,-9,2019,12,0,38,35,1,0,0,6.610662582721309,6.610662582721309,0,0,0,0,0,0,0,0,0,0,59.13,44.84,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,0,791.5,295657.4891444566,-12070.18264841377,347738.736164843,81723.86128120194,3331.726869454127 -11197,13792,25052,25051,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.630790438253356,8.583695505100836,0,33,-2,70.77665235795922,0,3,2,2019,8,0,46,40,1,0,0,12.90038933078626,12.90038933078626,0,0,0,0,0,0,0,0,6.320574297844359,0,57.16,56.15,59.13,44.84,6.666666666666667,1,1,0,0,11,9,5,0,791.5,295657.4891444566,-12070.18264841377,347738.736164843,81723.86128120194,3331.726869454127 -11197,13793,25053,-9,25051,25052,1,1,26,0,0,0,2,2,-9,0,4,8.725064612374037,8.383180147614045,0,0,0,-909.924889840387,0,2,2,2019,13,1,40,35,1,1,1,13.89022789800354,13.89022789800354,0,0,0,0,0,0,0,0,3.683278352678852,0,40.58,60.95,-9,-9,5,1,1,0,0,11,9,5,0,619,-38586.0590398084,192648.6607483116,0,0,2018.716926675215 -11198,13794,25054,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,8.050925832886225,8.060895516450776,0,0,-956.3951373633378,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.340386570140748,8.080112678004285,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,646,566689.5871057413,302240.9542998807,105592.6388550662,0,1178.258746599015 -11199,13795,25055,-9,25057,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-948.7997870955927,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,3,0,688,253839.836615327,67703.89382170833,290483.3261265907,82324.13998918448,1258.146689759963 -11199,13795,25056,-9,25057,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-959.1893329717553,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,688,253839.836615327,67703.89382170833,290483.3261265907,82324.13998918448,1258.146689759963 -11199,13795,25057,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,8.425317384199904,8.251693396947786,0,0,0,-965.3549796496571,0,2,3,2019,5,0,40,49,1,0,0,12.69519239434437,12.69519239434437,0,0,0,0,2,1,1,0,0,0,54.04,60.47,-9,-9,10,4,2,0,0,3,8,3,0,688,253839.836615327,67703.89382170833,290483.3261265907,82324.13998918448,1258.146689759963 -11200,13796,25058,25059,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.711292380089953,8.962770160456294,0,32,-2,0,0,1,1,2019,8,0,24,24,1,0,0,27.42275061103299,27.42275061103299,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,491.5,1860437.725816555,1080486.437827988,787495.9257966462,0,4889.024442659362 -11200,13796,25059,25058,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.940458118442528,8.819028337415174,0,33,2,0,0,3,1,2019,7,0,50,50,1,0,0,17.59614572113035,17.59614572113035,0,0,0,0,0,0,0,0,4.986720534426814,0,57.16,56.15,51.83,57.2,10,1,1,0,0,8,9,5,1,491.5,1860437.725816555,1080486.437827988,787495.9257966462,0,4889.024442659362 -11201,13797,25060,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,9.614476630418144,9.917559956131166,7.455973624412602,0,0,-1035.451038041189,0,1,1,2019,6,0,41,42,1,0,0,40.11350958730992,40.11350958730992,0,0,0,0,0,0,0,0,8.916176139367865,6.622631676879892,55,54,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,255,1138540.786911582,147397.001941827,711186.1302311765,0,8880.240828117794 -11202,13798,25061,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.592282335048258,6.01740394236063,0,0,-1002.818818593404,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.375780484042833,6.594642925187715,47.3,43.1,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,922,350379.1540461205,71404.5322114685,179926.845446505,0,452.1215989965557 -11203,13799,25062,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,4.895294558473561,4.636510195752135,0,0,-1025.443104843013,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.562603622953056,0,65.14,34.83,-9,-9,10,1,1,0,0,0,4,2,1,1729,-112151.2729148425,0,0,0,533.0714332278077 -11204,13800,25063,25064,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,8,3,31.06488838663041,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.126894351638479,0,53,47,50,47,7,1,1,0,0,0,4,2,1,548,175960.6932068752,0,147669.0561121794,0,1380.222930094039 -11204,13800,25064,25063,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.260108498301862,4.432373672416748,8,-3,-96.14319781588878,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,4.67693675165854,50,47,53,47,7,1,1,0,0,5,4,2,1,548,175960.6932068752,0,147669.0561121794,0,1380.222930094039 -11205,13801,25065,-9,25066,25068,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.4365997128181,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,264.75,685371.5050788885,431473.9363625744,218390.3190052289,6609.69833480974,3273.472255829953 -11205,13801,25066,25068,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.643984678103902,7.637852214280316,0,15,-5,165.5262426170969,0,1,1,2019,7,0,30,24,1,0,0,5.736414456453295,5.736414456453295,0,0,0,0,0,1,1,0,3.918363306445092,0,45.91,59.89,35.95,36.01,6.666666666666667,1,1,0,0,7,4,4,1,264.75,685371.5050788885,431473.9363625744,218390.3190052289,6609.69833480974,3273.472255829953 -11205,13801,25067,-9,25066,25068,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.6327200370081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,264.75,685371.5050788885,431473.9363625744,218390.3190052289,6609.69833480974,3273.472255829953 -11205,13801,25068,25066,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.782970116889929,8.503736232580822,0,8,5,75.02802586830647,0,1,2,2019,12,0,45,45,1,0,0,15.04518120377992,15.04518120377992,0,0,0,0,0,1,1,0,4.051447478605854,0,35.95,36.01,45.91,59.89,6.666666666666667,1,1,0,0,8,4,4,1,264.75,685371.5050788885,431473.9363625744,218390.3190052289,6609.69833480974,3273.472255829953 -11206,13802,25069,25070,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.81939372300419,8.778812688951961,0,9,-2,103.1486156156898,0,-9,-9,2019,18,6,40,42,1,6,0,20.33751315652669,20.33751315652669,0,0,0,0,0,0,0,0,0,0,44.98,55.14,55.77,41.91,8.333333333333334,1,1,0,0,11,6,5,1,478.5,610446.2140656747,165348.8717265652,450584.8658761364,50005.81785191661,5346.225751796439 -11206,13802,25070,25069,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.141273454647457,8.739688774540921,0,28,2,-60.0378261552594,0,2,2,2019,16,5,45,47,1,5,0,21.21148088492617,21.21148088492617,0,0,0,0,0,0,0,0,6.715536624634875,0,55.77,41.91,44.98,55.14,6.666666666666667,1,1,0,0,11,6,5,1,478.5,610446.2140656747,165348.8717265652,450584.8658761364,50005.81785191661,5346.225751796439 -11206,13803,25071,-9,25069,25070,1,0,21,0,0,0,2,2,-9,0,4,7.863661001469412,7.839606077398009,0,0,0,-953.9630242727944,0,2,2,2019,5,0,37,39,1,0,1,7.125760280312267,7.125760280312267,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,36,76952.60871716688,8993.540592817222,0,0,923.2810338931217 -11207,13804,25072,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,7.716256792837505,7.706401442291575,0,0,0,-1000.387245736136,0,3,3,2019,10,0,30,18,1,1,0,6.931191865824777,6.931191865824777,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,8,1,3,0,436,-100283.3290491215,104246.9303144381,0,0,998.2305968534181 -11208,13805,25073,-9,25075,25076,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-940.9430429322204,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,5,-9,0,0,8,4,0,1541.25,1489071.3629118,1305746.639589294,274273.5405864441,104365.38445418,4840.618404142423 -11208,13805,25074,-9,25075,25076,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-796.9703094335296,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,8.333333333333334,4,5,0,0,0,8,4,0,1541.25,1489071.3629118,1305746.639589294,274273.5405864441,104365.38445418,4840.618404142423 -11208,13805,25075,25076,-9,-9,1,0,51,0,2,0,3,3,-9,0,5,0,0,0,20,0,-54.90260601757874,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,56.28,49,50,10,4,5,0,0,0,8,4,0,1541.25,1489071.3629118,1305746.639589294,274273.5405864441,104365.38445418,4840.618404142423 -11208,13805,25076,25075,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,9.132426436724044,9.336170047635038,0,20,0,67.41558159304444,0,3,3,2019,11,0,40,8,1,2,0,27.85333147991935,27.85333147991935,0,0,0,0,0,1,1,0,0,0,49,50,52.23,56.28,7,4,5,0,0,1,8,4,0,1541.25,1489071.3629118,1305746.639589294,274273.5405864441,104365.38445418,4840.618404142423 -11208,13806,25077,-9,25075,25076,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-888.7800100249129,-9,3,3,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.64,49.56,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,286,0,0,0,0,0 -11209,13807,25078,-9,25081,25079,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.762786772454,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,1467.25,-11663.81115030146,52339.37773325045,139914.3492774935,81469.38425148322,4464.495387432049 -11209,13807,25079,25081,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.272065549603006,8.43350587537155,0,6,-5,-7.663275084743136,0,-9,-9,2019,14,4,40,38,1,4,0,12.49959793308088,12.49959793308088,0,0,0,0,0,1,1,0,0,0,51.66,54.88,46.8,57.03,6.666666666666667,3,4,0,0,9,2,4,1,1467.25,-11663.81115030146,52339.37773325045,139914.3492774935,81469.38425148322,4464.495387432049 -11209,13807,25080,-9,25081,25079,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.625583181371,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,2,4,1,1467.25,-11663.81115030146,52339.37773325045,139914.3492774935,81469.38425148322,4464.495387432049 -11209,13807,25081,25079,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,8.355002527001606,8.286360015794459,0,6,5,52.02226304646888,0,-9,-9,2019,8,0,21,21,1,0,0,32.431867394162,32.431867394162,0,0,0,0,0,1,1,0,0,0,46.8,57.03,51.66,54.88,1.666666666666667,1,1,0,0,9,2,4,1,1467.25,-11663.81115030146,52339.37773325045,139914.3492774935,81469.38425148322,4464.495387432049 -11210,13808,25082,25083,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.237673111512986,7.99924696353294,0,1,0,37.81606480275767,-9,-9,-9,2019,10,0,46,0,1,0,0,9.568585893772475,9.568585893772475,0,0,0,0,0,0,0,0,2.911153811736928,0,51.14,60.45,48,59,8.333333333333334,2,3,0,0,7,7,5,1,351.5,369907.2224784456,-37964.115669616,514102.6392207502,280379.4689959244,4215.905037422413 -11210,13808,25083,25082,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.927679708858317,8.873211453027634,0,1,0,-28.4757388566093,-9,-9,-9,2019,10,0,40,0,1,1,0,22.07915339877005,22.07915339877005,0,0,0,0,0,0,0,0,0,0,48,59,51.14,60.45,7,4,3,0,0,1,7,5,1,351.5,369907.2224784456,-37964.115669616,514102.6392207502,280379.4689959244,4215.905037422413 -11211,13809,25084,25085,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.72562085706133,8.90121268585859,0,28,7,6.377129472718219,0,2,2,2019,3,0,10,40,1,0,0,73.09043969578593,73.09043969578593,0,0,0,0,7,0,0,0,2.523273392907386,0,62,47.24,57.16,56.15,10,1,1,0,0,11,8,5,1,397,396884.8726970644,135812.876168921,346533.0096357127,-4183.765580723097,5424.403759295665 -11211,13809,25085,25084,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,9.090745786060992,9.019898231380473,0,28,-7,-42.95017711823591,0,2,2,2019,7,0,38,42,1,0,0,22.9366525640367,22.9366525640367,0,0,0,0,2,0,0,0,2.066444664318363,0,57.16,56.15,62,47.24,8.333333333333334,1,1,0,0,11,8,5,1,397,396884.8726970644,135812.876168921,346533.0096357127,-4183.765580723097,5424.403759295665 -11212,13810,25086,-9,-9,25087,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1035.132513633092,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,3,0,467.5,44426.0632983828,106114.3560229081,0,0,541.6680410876738 -11212,13810,25087,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.634985899079452,7.464622307764684,0,0,0,-1029.066027510175,0,2,-9,2019,11,0,39,36,1,0,0,5.161547379244528,5.161547379244528,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,4,2,3,0,467.5,44426.0632983828,106114.3560229081,0,0,541.6680410876738 -11213,13811,25088,25090,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.783273973489711,8.662957155050666,0,14,5,11.63688187190779,0,-9,-9,2019,9,0,30,37,1,1,0,25.10561509129567,25.10561509129567,0,0,0,.5379580456519548,0,1,1,0,1.398396304552055,0,52,56,49,56,8,1,1,0,0,1,9,5,1,1488.666666666667,331134.8078027476,108722.4058645754,305150.5846309736,150582.2121558955,3534.498295361442 -11213,13811,25089,-9,25090,25088,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-891.3426427791491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1488.666666666667,331134.8078027476,108722.4058645754,305150.5846309736,150582.2121558955,3534.498295361442 -11213,13811,25090,25088,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.841915766302757,7.8692924570782,0,15,-5,-94.29557383158303,0,-9,-9,2019,11,0,23,24,1,1,0,12.95924384804243,12.95924384804243,0,0,0,0,0,1,1,0,0,0,49,56,52,56,7,1,1,0,0,10,9,5,1,1488.666666666667,331134.8078027476,108722.4058645754,305150.5846309736,150582.2121558955,3534.498295361442 -11214,13812,25091,25092,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.709276226263095,7.86589324146445,0,35,-2,-71.26434974292893,0,3,2,2019,15,3,14,13,1,3,0,12.83902268148368,12.83902268148368,0,0,0,0,0,0,0,0,2.153765918743563,0,40.23,52.06,44.02,60.7,6.666666666666667,1,1,0,0,12,7,4,1,1351.5,568494.9192999026,209922.8838998874,116220.3101967269,136918.6874788558,2683.967282840837 -11214,13812,25092,25091,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.575209137273198,8.415458074616524,0,35,2,-48.34295809511352,0,3,3,2019,9,0,50,50,1,0,0,12.47898479571046,12.47898479571046,0,0,0,0,0,0,0,0,6.204151293780559,0,44.02,60.7,40.23,52.06,6.666666666666667,1,1,0,0,12,7,4,1,1351.5,568494.9192999026,209922.8838998874,116220.3101967269,136918.6874788558,2683.967282840837 -11214,13813,25093,-9,25091,25092,1,1,25,0,0,0,2,2,-9,0,5,7.558145911582159,7.571289916471063,0,0,0,-1004.626696942986,0,2,2,2019,8,0,42,30,1,0,1,4.596676660619186,4.596676660619186,0,0,0,0,0,0,0,0,0,0,49.02,58.89,-9,-9,10,1,1,0,0,3,7,3,1,2304,-86512.340220036,0,0,0,895.712441394058 -11214,13814,25094,-9,25091,25092,1,1,23,0,0,0,2,2,-9,0,1,7.553479748882877,7.577908023425325,0,0,0,-1175.501366418827,0,2,2,2019,14,4,40,44,1,4,1,5.232440606430647,5.232440606430647,0,0,0,0,0,0,0,0,1.755168199696769,0,40.5,31.64,-9,-9,3.333333333333333,1,1,0,0,4,7,3,1,1392,-161588.8327701322,37007.21440262419,0,0,1.475782454071691 -11215,13815,25095,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.3592540414836,0,2,3,2019,14,2,0,0,4,2,0,0,0,1,0,55.97204394640713,0,0,1,1,0,0,0,37.17,27.63,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,321,0,0,0,0,1608.249834617936 -11216,13816,25096,25097,25098,-9,1,0,27,0,0,0,2,2,-9,0,4,7.758796982326996,7.558677570001338,0,5,-1,-10.38220104810311,0,2,-9,2019,8,2,45,38,1,2,0,5.251301337033222,5.251301337033222,0,0,0,0,5.48,1,1,0,0,0,51.83,57.2,51.65,52.38,8.333333333333334,1,1,0,1,5,6,4,1,1440.5,175510.7075749209,57881.07438855666,157572.3312151288,165656.3041943498,2516.355881504342 -11216,13816,25097,25096,-9,-9,1,1,28,0,0,0,1,1,-9,0,2,8.154925323882949,8.076453725626521,0,5,1,38.27999739280051,0,-9,-9,2019,5,0,43,43,1,0,0,10.07906307014372,10.07906307014372,0,0,0,0,0,1,1,0,0,0,51.65,52.38,51.83,57.2,8.333333333333334,1,1,0,0,6,6,4,1,1440.5,175510.7075749209,57881.07438855666,157572.3312151288,165656.3041943498,2516.355881504342 -11216,13817,25098,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,6.653938486195076,7.330254841136949,6.846146452595026,0,0,-962.3081028889062,0,-9,-9,2019,18,6,15,15,1,6,0,5.328440022575137,5.328440022575137,0,0,0,0,0,1,1,0,0,6.846216485732195,45.89,44.01,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,1799,-44852.31443319777,23246.12317054289,0,0,875.1520368853821 -11217,13818,25099,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,5.353951766715896,5.486935981454016,0,0,-1052.000672589948,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,4.368042185857993,2.410118709265048,46.06598515161709,0,1,1,0,0,5.744340523602053,57.49,18.96,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,497,-168857.0437189143,-105383.2220963821,0,0,1040.109289028574 -11218,13819,25100,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1044.964195901651,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,50.07,28.88,-9,-9,5,1,1,0,0,0,1,1,0,1043,-122181.0308812021,0,0,0,1129.355219733719 -11219,13820,25101,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-999.5159629807299,1,-9,-9,2019,8,0,0,47,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,5,6,1,0,913,-15518.18040332539,0,0,0,0 -11220,13821,25102,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1037.528473667088,0,2,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5.942023366207127,0,53.23,42.9,-9,-9,10,1,1,0,0,0,9,1,1,378,326495.1696393026,0,193952.7910605856,101955.9868882657,122.3883775840698 -11221,13822,25103,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,0,0,-987.6679307111208,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,3,4,1,0,8,6,1,1,188,-42460.44813933306,0,0,0,852.5435729945738 -11221,13823,25104,-9,25103,-9,1,1,22,0,1,0,2,2,-9,0,3,7.314118312529923,7.554945496668595,0,0,0,-1030.079783188886,0,1,2,2019,9,0,24,0,1,0,1,8.881971427838325,8.881971427838325,0,0,0,0,0,1,1,0,0,0,43.83,43.24,-9,-9,8.333333333333334,3,4,0,0,1,6,3,1,1907,16075.91920375281,48021.96687813203,0,0,702.0836058907288 -11222,13824,25105,25106,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.726561235241443,8.654116116568545,0,6,3,-98.15669415585089,0,2,3,2019,9,0,40,39,1,0,0,17.61546738277781,17.61546738277781,0,0,0,0,0,1,1,0,0,0,68.35000000000001,34.71,40.47,55.65,10,1,1,0,0,7,12,4,1,496.3333333333333,91916.35618500631,29453.12476087473,175135.367885422,97688.5711947948,2973.449653431842 -11222,13824,25106,25105,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,7.355729370252768,7.680484655916961,0,6,-3,80.02845127244186,0,2,2,2019,15,3,31,32,1,3,0,5.823469742813421,5.823469742813421,0,0,0,0,0,1,1,0,0,0,40.47,55.65,68.35000000000001,34.71,8.333333333333334,1,1,0,0,7,12,4,1,496.3333333333333,91916.35618500631,29453.12476087473,175135.367885422,97688.5711947948,2973.449653431842 -11222,13824,25107,-9,25106,25105,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.7184887820629,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,496.3333333333333,91916.35618500631,29453.12476087473,175135.367885422,97688.5711947948,2973.449653431842 -11223,13825,25108,25109,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,0,0,0,8,-12,61.54014281798862,0,1,2,2019,25,11,0,37,3,11,0,0,0,0,0,0,0,27,1,1,0,2.606560424150423,0,35.34,50.05,35.91,63.19,3.333333333333333,1,1,0,0,9,8,5,1,815,992005.8129410516,738871.5886076614,251000.1136696015,24172.91076250353,3216.488811497824 -11223,13825,25109,25108,25110,-9,1,0,52,0,0,0,1,1,-9,0,4,8.928931612572484,9.38016264434474,0,8,12,15.89764385561967,0,2,3,2019,16,6,35,35,1,6,0,26.16525708104085,26.16525708104085,0,0,0,0,91,1,1,0,5.110842309138695,0,35.91,63.19,35.34,50.05,8.333333333333334,1,1,0,0,10,8,5,1,815,992005.8129410516,738871.5886076614,251000.1136696015,24172.91076250353,3216.488811497824 -11223,13826,25110,-9,-9,-9,1,0,94,0,0,0,2,2,-9,0,3,0,7.164364799699458,7.181600446968164,0,0,-1007.735305203391,0,-9,-9,2019,22,8,0,0,4,8,0,0,0,1,14.53992164591854,7.339280097919533,132.7193970056758,0,1,1,0,6.121246029083528,6.953718579296656,71.38,12.71,-9,-9,1.666666666666667,1,1,0,0,0,8,3,1,439,1044332.461734178,48950.30450329866,786711.9362965272,0,1716.798583489667 -11224,13827,25111,-9,25114,25112,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.461360216325,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,3,1,940.25,-47866.47739193139,-10631.15893462695,168021.0246728293,103802.0522001989,2538.095947039509 -11224,13827,25112,25114,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.716326535885719,8.123050834441484,0,3,3,-57.92635504742399,0,-9,-9,2019,11,0,40,40,1,0,0,9.186631380210319,9.186631380210319,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.33,55.93,8.333333333333334,1,1,0,0,3,12,3,1,940.25,-47866.47739193139,-10631.15893462695,168021.0246728293,103802.0522001989,2538.095947039509 -11224,13827,25113,-9,25114,25112,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.1775233076394,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,1,940.25,-47866.47739193139,-10631.15893462695,168021.0246728293,103802.0522001989,2538.095947039509 -11224,13827,25114,25112,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.584234487779446,7.536121535964503,0,3,-3,5.239007868629208,0,2,2,2019,19,6,24,39,1,6,0,7.686523835117163,7.686523835117163,0,0,0,0,2,1,1,0,0,0,46.33,55.93,54.2,57.49,5,1,1,0,1,7,12,3,1,940.25,-47866.47739193139,-10631.15893462695,168021.0246728293,103802.0522001989,2538.095947039509 -11225,13828,25115,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.850502682643,4.645254440397472,0,0,-1095.927901036021,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.602780633659345,51,46,-9,-9,8,1,1,0,0,0,5,2,0,41,85578.01850232671,-10673.46760530865,95444.24093243468,0,877.2160771605231 -11226,13829,25116,25117,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,51,0,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,0,0,46.11,31.64,55,45,6.666666666666667,2,3,0,0,0,4,1,1,361.5,71010.56292196365,74494.42820440211,114468.3864884075,0,1639.273675001985 -11226,13829,25117,25116,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,6,9,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,7.704444349037157,0,0,1,1,0,0,0,55,45,46.11,31.64,8,2,3,0,0,0,4,1,1,361.5,71010.56292196365,74494.42820440211,114468.3864884075,0,1639.273675001985 -11227,13830,25118,25119,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.307888180206874,8.588318397198694,6.694618582200189,10,11,-117.3753928596627,-9,-9,-9,2019,9,0,50,0,1,1,0,9.288866754024857,9.288866754024857,0,0,0,0,0,0,0,0,5.252553609847689,6.93907158635361,52,54,44.01,47.83,8,1,1,0,0,1,7,5,1,523,1104126.519597895,256478.6847845884,630670.7978845597,0,3956.944561202466 -11227,13830,25119,25118,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,7.838649174215561,7.73196242851238,0,20,-11,-43.09100742704855,0,1,1,2019,13,1,23,22,1,1,0,10.87940283099767,10.87940283099767,0,0,0,0,0,0,0,0,0,0,44.01,47.83,52,54,5,1,1,0,0,11,7,5,1,523,1104126.519597895,256478.6847845884,630670.7978845597,0,3956.944561202466 -11228,13831,25120,25121,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.782347803399808,7.727323868704466,0,37,-5,-148.9580748138325,0,2,2,2019,13,1,37,21,1,1,0,8.250572075966554,8.250572075966554,0,0,0,0,0,0,0,0,.9235470279292071,0,47.53,47.36,55.71,46,6.666666666666667,1,1,0,0,10,2,4,1,1219.5,94265.61255641939,18795.93608791508,120198.4603407183,12441.401463145,1799.181446595661 -11228,13831,25121,25120,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.391378377748264,7.651108967747846,37,5,86.30297540947838,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,2.322841305179427,0,0,0,0,.8304812035221072,7.276228805521071,55.71,46,47.53,47.36,6.666666666666667,1,1,0,0,9,2,4,1,1219.5,94265.61255641939,18795.93608791508,120198.4603407183,12441.401463145,1799.181446595661 -11228,13832,25122,-9,25120,25121,1,0,27,0,0,0,1,1,-9,0,4,7.399698661124687,7.711182205965683,0,0,0,-1110.868296510645,0,2,2,2019,17,5,7,26,1,5,1,31.23077790741068,31.23077790741068,0,0,0,0,0,0,0,0,.4576372982524563,0,28.41,62.72,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,430,-46874.59840603592,-21132.95386892624,0,0,1171.948058493367 -11229,13833,25123,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.471261770150488,8.670672057670135,0,0,0,-907.9873867594764,0,3,2,2019,7,0,80,70,1,0,0,8.132806801519894,8.132806801519894,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,0,0,8,12,5,1,106,933750.4305524353,1016511.181337844,60804.36857155421,60496.57686971477,1960.294885745646 -11230,13834,25124,-9,25125,25127,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.7555204162895,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,855.25,408325.5301507192,126282.039577605,209859.681997236,30482.96078690345,4187.038616594 -11230,13834,25125,25127,-9,-9,1,0,44,0,2,0,2,2,-9,1,4,8.238144875673775,8.460140619087758,0,17,-5,25.29974596807269,-9,2,2,2019,9,0,32,0,1,0,0,16.70228316887238,16.70228316887238,0,0,0,0,42,1,1,0,0,0,54.2,57.49,41.11,60.68,8.333333333333334,1,1,0,0,11,5,4,1,855.25,408325.5301507192,126282.039577605,209859.681997236,30482.96078690345,4187.038616594 -11230,13834,25126,-9,25125,25127,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.5884205984028,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,4,1,855.25,408325.5301507192,126282.039577605,209859.681997236,30482.96078690345,4187.038616594 -11230,13834,25127,25125,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.816342629256173,8.547202436429838,0,17,5,62.6077885703038,-9,2,2,2019,10,0,54,0,1,0,0,10.06004675036139,10.06004675036139,0,0,0,0,2,1,1,0,0,0,41.11,60.68,54.2,57.49,6.666666666666667,1,1,0,0,11,5,4,1,855.25,408325.5301507192,126282.039577605,209859.681997236,30482.96078690345,4187.038616594 -11231,13835,25128,25129,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,7.788388276176801,8.186921466002561,35,8,-139.0892531803347,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.283185448286994,8.168057276249179,53.76,46.89,44.72,38.97,8.333333333333334,1,1,0,0,0,9,4,1,470.5,874956.1046916838,310356.6370015849,454976.3689483035,0,2830.783679773167 -11231,13835,25129,25128,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.210433701073674,6.918309606393515,35,-8,-108.2856356441014,0,-9,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.009457519787718,7.145884859001491,44.72,38.97,53.76,46.89,8.333333333333334,1,1,0,0,0,9,4,1,470.5,874956.1046916838,310356.6370015849,454976.3689483035,0,2830.783679773167 -11232,13836,25130,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,0,8.112683431301907,8.498635514784711,0,0,-1050.792277476209,0,1,1,2019,14,3,0,39,3,3,0,0,0,0,0,0,0,0,1,1,0,8.273152619928078,0,41.06,62.04,-9,-9,8.333333333333334,4,2,1,0,5,7,4,1,845,475041.2495463325,-25244.62779458968,241763.0592487829,0,721.366765469607 -11233,13837,25131,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.398977181284923,8.24580454378057,0,0,0,-980.8413632069316,0,3,3,2019,18,6,37,37,1,6,0,14.7546099995873,14.7546099995873,0,0,0,0,0,1,1,0,3.165228980714216,0,45.85,34.82,-9,-9,5,1,1,0,0,8,5,4,1,475,450054.1372785998,147122.7883787043,176061.2643348989,13865.63852266936,1474.560394553986 -11234,13838,25132,25133,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.84223397156797,7.571104840171192,30,7,-23.81248964453007,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,14.5,1,1,0,6.019805201446776,7.717363916721379,40.07,38.85,64.23,33.98,8.333333333333334,1,1,0,0,6,10,3,1,863,706535.6992962451,306407.2118785213,460571.2164502444,72526.73160660018,1768.419538606385 -11234,13838,25133,25132,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,6.72156759094754,6.771096343557352,0,30,-7,188.1238532210362,0,2,3,2019,6,0,15,15,1,0,0,6.910150288669432,6.910150288669432,0,0,0,0,2,1,1,0,0,0,64.23,33.98,40.07,38.85,10,1,1,0,0,10,10,3,1,863,706535.6992962451,306407.2118785213,460571.2164502444,72526.73160660018,1768.419538606385 -11235,13839,25134,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-945.5469452162999,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.08,35.66,-9,-9,5,1,1,0,0,0,12,1,0,611,198571.0479892993,-22298.89170766954,181288.3700560058,0,1795.172426266544 -11236,13840,25135,-9,25137,25136,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1120.788412285084,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,632.6666666666666,3476687.802844811,1676954.695854912,995941.4804631071,0,14768.16807325144 -11236,13840,25136,25137,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.539788814040318,9.614245303961738,0,6,1,79.2106440457566,0,-9,-9,2019,9,0,40,50,1,1,0,35.1717237054935,35.1717237054935,0,0,0,0,0,0,0,0,6.563633394834957,0,52,55,60.28,46.44,7,1,1,0,0,1,7,5,1,632.6666666666666,3476687.802844811,1676954.695854912,995941.4804631071,0,14768.16807325144 -11236,13840,25137,25136,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,9.904858267902693,9.379319403666303,0,21,-1,-40.65011613147298,0,2,3,2019,7,0,37,37,1,0,0,49.79072013861294,49.79072013861294,0,0,0,0,0,0,0,0,0,0,60.28,46.44,52,55,8.333333333333334,1,1,0,0,9,7,5,1,632.6666666666666,3476687.802844811,1676954.695854912,995941.4804631071,0,14768.16807325144 -11236,13841,25138,-9,25137,25136,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-948.8605122426382,-9,1,1,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,143,82011.03336272546,0,0,0,0 -11237,13842,25139,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.160390221437792,7.889881488480831,0,0,0,-1063.308564148309,-9,2,-9,2019,31,12,45,0,1,12,1,7.175720043512778,7.175720043512778,0,0,0,0,0,1,1,0,2.797780182400905,0,15.08,66.28,-9,-9,1.666666666666667,1,1,0,0,4,4,4,0,1870,0,0,0,0,861.7012681445133 -11238,13843,25140,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.712669456154536,9.703091571361707,7.293504791151026,0,0,-955.6332389947499,0,2,1,2019,12,0,43,38,1,0,0,40.99466027212355,40.99466027212355,0,0,0,0,0,1,1,0,8.061861452432179,6.111990069361913,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,262,-59939.18653318274,57664.48682796593,0,0,6470.349147012925 -11238,13844,25141,-9,25140,-9,1,1,18,0,0,1,2,0,-9,0,3,0,4.429160072659282,4.568505606341642,0,0,-963.3552507800874,-9,1,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,4.501321742856962,0,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1229,49816.25686780272,0,0,0,-55.61566222445243 -11239,13845,25142,-9,25143,-9,1,1,39,0,0,0,2,2,-9,0,4,6.905926228121416,6.904231461310854,0,0,0,-975.5649587745258,0,3,3,2019,9,0,25,0,1,0,0,4.132320211361431,4.132320211361431,0,0,0,0,71.5,1,1,0,0,0,39.89,61.68,-9,-9,5,2,3,0,1,9,7,2,1,267,-69400.26794327244,-101173.6984533236,0,0,556.6738032333084 -11239,13846,25143,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.6354974219,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,2.151249344240136,0,0,1,1,0,0,0,37.83,16.67,-9,-9,10,2,3,0,0,0,7,1,1,474,77056.4764964777,0,0,0,583.4009237600912 -11240,13847,25144,25145,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.87801511964839,7.933135293935378,0,31,-3,-41.36263013871173,-9,2,3,2019,10,0,30,0,1,0,0,11.06093315565693,11.06093315565693,0,0,0,0,2,0,0,0,0,0,54.2,57.49,49.52,56.95,10,1,1,0,0,9,10,5,1,1026.5,1100577.491509308,813830.6700398249,176094.5437659871,0,3341.281361836479 -11240,13847,25145,25144,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.143271121305812,8.553460452272182,7.522038958914203,1,3,-75.92494178022221,-9,2,3,2019,9,0,39,0,1,0,0,8.010149906318118,8.010149906318118,0,0,0,0,2,0,0,0,0,7.175960984417868,49.52,56.95,54.2,57.49,8.333333333333334,1,1,0,0,7,10,5,1,1026.5,1100577.491509308,813830.6700398249,176094.5437659871,0,3341.281361836479 -11241,13848,25146,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1071.766771988521,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,31.74,27.73,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,612,-18018.68241520383,0,0,0,1422.36542427108 -11242,13849,25147,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.993002217133251,6.114474332356395,0,0,-964.7588536282294,0,-9,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.994450593504202,6.13283785750304,53.78,35.18,-9,-9,5,1,1,0,0,7,8,2,1,194,253937.0982800122,88934.11106484022,212052.0720414616,0,734.6443212454803 -11243,13850,25148,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.788087786900508,7.536969517784127,0,0,0,-1009.059580285203,0,2,1,2019,6,0,42,45,1,0,0,5.860797508806055,5.860797508806055,0,0,0,0,0,0,0,0,1.86106111298396,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,695,-14765.43453212629,0,0,0,771.6015430743608 -11244,13851,25149,25150,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,3.988798307498767,4.315297584786496,6,-6,-21.3971441257529,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,2.77409726459394,13.98864499114356,26.94261010560184,0,1,1,0,5.123188912164727,3.871053729834073,29.35,31.4,54.63,58.83,8.333333333333334,1,1,0,0,0,2,4,1,383.5,2486234.562715264,587548.2965383267,376068.8728444597,0,6369.043048156644 -11244,13851,25150,25149,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.347220716979644,8.560127745860207,6,6,-101.1778173651397,0,2,2,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,7,1,1,0,9.336762597506677,5.85779534866499,54.63,58.83,29.35,31.4,8.333333333333334,1,1,0,0,8,2,4,1,383.5,2486234.562715264,587548.2965383267,376068.8728444597,0,6369.043048156644 -11245,13852,25151,-9,25155,-9,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.334844230556,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11245,13852,25152,-9,25155,-9,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1036.083214590019,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11245,13852,25153,-9,25155,-9,1,1,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-957.7312451371774,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11245,13852,25154,-9,25155,-9,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1054.66119782807,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11245,13852,25155,-9,-9,-9,1,0,40,1,5,0,1,1,-9,0,5,7.173346733341125,7.11230873023947,0,0,0,-918.7028661639654,0,2,2,2019,4,1,24,0,1,1,0,6.261646633926782,6.261646633926782,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,3,4,0,0,1,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11245,13852,25156,-9,25155,-9,1,1,12,1,5,1,3,0,-9,0,4,0,0,0,0,0,-999.5857345782143,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,2,0,700.8333333333334,111223.2804785982,-13756.12319591785,148930.152170389,37820.9734440621,1158.982898565685 -11246,13853,25157,-9,25158,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-875.5996371124617,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,1061.5,-52055.05737415624,0,0,0,1448.517591584604 -11246,13853,25158,-9,-9,-9,1,0,28,1,3,0,3,3,-9,1,3,6.026738511861601,6.229082577864132,0,0,0,-929.2166394936824,0,-9,-9,2019,8,0,15,12,1,0,0,3.688527999043901,3.688527999043901,0,0,0,0,111,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,1061.5,-52055.05737415624,0,0,0,1448.517591584604 -11246,13853,25159,-9,25158,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.5382718678773,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,1061.5,-52055.05737415624,0,0,0,1448.517591584604 -11246,13853,25160,-9,25158,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.448235645812,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,6,-9,0,0,13,2,0,1061.5,-52055.05737415624,0,0,0,1448.517591584604 -11247,13854,25161,25162,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.904773711124759,4.494986849584294,49,-1,77.79048628575202,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.807639514401806,5.083199722940186,60.12,54.8,60.29,52.11,10,1,1,0,0,7,5,2,1,1699.5,402248.8952278076,234454.478530346,53265.71888741147,0,2539.836170003213 -11247,13854,25162,25161,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.231732724257046,6.764075378469373,49,1,-56.46187414588324,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.45008612592884,6.778808249422422,60.29,52.11,60.12,54.8,10,1,1,0,0,5,5,2,1,1699.5,402248.8952278076,234454.478530346,53265.71888741147,0,2539.836170003213 -11248,13855,25163,25165,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.425898153138423,8.349572178425701,0,7,3,50.22092910217394,0,-9,-9,2019,11,0,44,46,1,0,0,12.03160658938338,12.03160658938338,0,0,0,0,0,1,1,0,0,0,48.28,60.18,51,52.08,6.666666666666667,1,1,0,0,10,12,5,1,1059,504137.2284421257,87746.4051411004,190062.4331250917,0,4311.823996434093 -11248,13855,25164,-9,25165,25163,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.126496039439,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1059,504137.2284421257,87746.4051411004,190062.4331250917,0,4311.823996434093 -11248,13855,25165,25163,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.88628271531717,8.752107606353603,0,7,-3,70.48346357432575,0,2,2,2019,9,0,35,35,1,0,0,20.31358462546897,20.31358462546897,0,0,0,0,0,1,1,0,0,0,51,52.08,48.28,60.18,3.333333333333333,1,1,0,0,10,12,5,1,1059,504137.2284421257,87746.4051411004,190062.4331250917,0,4311.823996434093 -11248,13855,25166,-9,25165,25163,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.295934432437,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1059,504137.2284421257,87746.4051411004,190062.4331250917,0,4311.823996434093 -11249,13856,25167,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.902069600663017,8.901273438856901,0,0,0,-931.0107887600319,0,2,3,2019,9,0,38,35,1,0,0,20.69833575021611,20.69833575021611,0,0,0,0,0,0,0,0,1.956801431491601,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,10,9,5,1,346,167743.0325703684,94036.14082742229,122368.6087967908,88245.43052158314,3021.009677857348 -11250,13857,25168,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.351672009461066,7.625212992747588,6.059342050647305,0,0,-994.0096226330186,0,-9,-9,2019,10,0,35,35,1,0,0,4.80644689007912,4.80644689007912,0,0,0,0,0,1,1,0,5.612583685897385,6.073315866406289,45,37,-9,-9,8.333333333333334,1,1,0,0,9,8,3,1,695,39640.68204685619,71872.92109642293,0,0,1909.903754131729 -11251,13858,25169,25170,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.620877994693369,6.906685214428185,5.491364397698415,2,-2,5.429559224689218,0,-9,-9,2019,12,0,24,22,1,0,0,4.370874412933039,4.370874412933039,0,0,0,0,0,1,1,0,5.523752211911435,0,52,54.51,36.49,58.77,5,1,1,0,0,6,11,4,0,692,44046.2552843356,18551.76168331417,131906.1942294449,79717.9794385117,4653.968950450149 -11251,13858,25170,25169,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.992318530395776,8.901315638231303,0,2,2,100.9692300356076,0,-9,-9,2019,32,12,45,50,1,12,0,21.49052295761659,21.49052295761659,0,0,0,0,0,1,1,0,2.141656747834771,0,36.49,58.77,52,54.51,0,1,1,0,1,6,11,4,0,692,44046.2552843356,18551.76168331417,131906.1942294449,79717.9794385117,4653.968950450149 -11251,13858,25171,-9,25169,-9,1,1,10,1,2,1,3,0,-9,0,3,0,0,0,0,0,-972.4464125365583,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,0,692,44046.2552843356,18551.76168331417,131906.1942294449,79717.9794385117,4653.968950450149 -11251,13858,25172,-9,25169,25170,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.540701417176,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,692,44046.2552843356,18551.76168331417,131906.1942294449,79717.9794385117,4653.968950450149 -11252,13859,25173,25174,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.688643211644749,6.801034815683583,9,3,-66.48701890395103,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.23588499174913,6.688406680880011,55.27,44.81,60.6,43.75,8.333333333333334,1,1,0,0,2,8,2,1,2245,196461.3231806911,104747.5578093232,28420.79085974705,6147.024161211019,1789.743074861603 -11252,13859,25174,25173,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,9,-3,61.59217351097419,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.620285771043128,0,60.6,43.75,55.27,44.81,8.333333333333334,1,1,0,0,0,8,2,1,2245,196461.3231806911,104747.5578093232,28420.79085974705,6147.024161211019,1789.743074861603 -11253,13860,25175,25176,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.401750194337074,8.332521454865137,0,30,3,146.932906299269,0,3,-9,2019,22,6,39,45,1,6,0,13.35746366871115,13.35746366871115,0,0,0,0,0,0,0,0,0,0,35.44,44.94,46.87,47.3,5,1,1,0,0,8,2,5,1,288,89313.79256737896,183414.3268181681,0,0,3048.24744042905 -11253,13860,25176,25175,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.034501230158739,8.000518307272444,0,30,-3,98.53452231999515,0,3,2,2019,20,6,42,40,1,6,0,8.544352115556014,8.544352115556014,0,0,0,0,0,0,0,0,4.56296824379239,0,46.87,47.3,35.44,44.94,10,1,1,0,0,9,2,5,1,288,89313.79256737896,183414.3268181681,0,0,3048.24744042905 -11253,13861,25177,-9,25176,25175,1,0,23,0,0,0,2,2,-9,0,2,7.428532343094429,7.614338654738049,0,0,0,-1002.29900064336,0,2,2,2019,14,2,36,40,1,2,1,5.291170064373124,5.291170064373124,0,0,0,0,0,0,0,0,0,0,48.64,41.4,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,306,181818.4873886718,-73070.48367478329,0,0,550.3811009464596 -11254,13862,25178,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.404599478875843,7.380039459823038,0,0,-887.1724591188919,0,3,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.618485732627803,48.81,39.92,-9,-9,5,1,1,0,0,0,5,3,1,343,533939.5468122626,82402.41411341468,145066.6718390654,0,1563.161375474748 -11255,13863,25179,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.576645514171425,5.417334982012196,0,0,-1061.1776152215,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.833730951267817,62.49,55.09,-9,-9,10,1,1,0,0,0,4,2,0,143,141246.6332940841,112545.3744507265,78505.9882300483,0,1011.678243398492 -11256,13864,25180,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,5.152331057623622,5.141958780027912,0,0,-995.6074067726944,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,2.49249995996977,0,20.9952686594824,0,1,1,0,0,5.394323805600854,55.2,9.220000000000001,-9,-9,5,1,1,0,0,0,12,2,1,569,202312.1167116009,8127.956297216908,0,0,1602.367461459364 -11257,13865,25181,25182,-9,-9,1,0,40,0,1,0,2,2,-9,1,1,0,4.620441556094352,4.629935915964202,19,-6,129.6671529600594,0,2,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,2.697207615837831,0,1,1,0,0,4.541188044303747,40.33,22.25,58.32,50.22,5,1,1,0,0,0,13,3,1,560.3333333333334,83808.54116956439,156753.8507362034,0,0,3543.846700024011 -11257,13865,25182,25181,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.098716481491556,7.98253172304303,0,19,6,-57.15816338429421,0,2,2,2019,8,0,40,40,1,0,0,9.287446188247877,9.287446188247877,0,0,0,0,7,1,1,0,6.743193836598634,0,58.32,50.22,40.33,22.25,8.333333333333334,1,1,0,0,10,13,3,1,560.3333333333334,83808.54116956439,156753.8507362034,0,0,3543.846700024011 -11257,13865,25183,-9,25181,25182,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.556371570289,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,560.3333333333334,83808.54116956439,156753.8507362034,0,0,3543.846700024011 -11258,13866,25184,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-922.5432443929188,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36,27,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,271,106024.4539143472,0,0,0,752.740654445481 -11258,13867,25185,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-964.0832847759862,0,-9,-9,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.14,46.54,-9,-9,5,1,1,0,0,0,12,1,0,588,-14167.11312746141,0,0,0,244.8415716712813 -11259,13868,25186,25187,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.922613483338321,8.956097441979491,0,8,1,64.57082357797691,0,2,2,2019,6,0,47,95,1,0,0,14.35679985122221,14.35679985122221,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,2,5,1,2964.5,195907.3976605778,-61013.11323724347,210572.0193270128,150581.3128090509,4553.304537796077 -11259,13868,25187,25186,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.750521211334389,8.704207568489915,0,8,-1,-41.83758401551978,0,1,1,2019,8,1,44,46,1,1,0,16.66024671780741,16.66024671780741,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,2964.5,195907.3976605778,-61013.11323724347,210572.0193270128,150581.3128090509,4553.304537796077 -11260,13869,25188,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.856518768841913,7.640177725981443,0,0,-890.4013395435683,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.023455317835212,0,26.65139430551369,0,1,1,0,4.77250362607925,7.92693272487625,62.52,30.61,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,397,923362.6922223441,223126.670871878,611385.4311820596,0,2578.856509802424 -11261,13870,25189,25190,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.081564310627771,8.105496812893044,0,29,-3,-15.62753304211412,0,2,2,2019,6,0,37,37,1,0,0,11.37586621015736,11.37586621015736,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.85,34.03,8.333333333333334,1,1,0,0,6,12,4,1,509,901800.6938568036,783986.1711673931,177125.7871968908,0,2654.864659128358 -11261,13870,25190,25189,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.302351447409176,8.089807046308367,0,29,3,30.71438225334787,0,2,2,2019,10,1,38,39,1,1,0,9.823555472628563,9.823555472628563,0,0,0,0,2,1,1,0,2.378663764225357,0,61.85,34.03,57.16,56.15,6.666666666666667,1,1,0,0,8,12,4,1,509,901800.6938568036,783986.1711673931,177125.7871968908,0,2654.864659128358 -11261,13871,25191,-9,25192,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.902634675061,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,707,-51076.33569194018,0,0,0,1398.609332472538 -11261,13871,25192,-9,25189,25190,1,0,23,0,1,0,2,2,-9,0,4,7.181681399435337,7.749660883636531,5.526743221618911,0,0,-973.7508090513504,0,2,2,2019,6,0,24,24,1,0,1,6.303650628219005,6.303650628219005,0,0,0,0,0,1,1,0,5.313472645795414,0,49.46,56.91,-9,-9,10,1,1,0,0,5,12,3,1,707,-51076.33569194018,0,0,0,1398.609332472538 -11261,13872,25193,-9,25189,25190,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1106.481384865813,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.115909681380773,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,284,-46014.17630335245,0,0,0,936.0442552410781 -11262,13873,25194,-9,25198,25197,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-974.178610943062,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25195,-9,25198,25197,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1003.519968690136,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25196,-9,25198,25197,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1020.026121199935,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25197,25198,25206,-9,1,1,52,0,5,0,3,3,-9,0,4,7.292142236750325,7.208467403378338,0,23,8,-44.94443592322392,-9,3,3,2019,9,0,12,0,1,1,0,11.68953916146026,11.68953916146026,0,0,0,0,7,1,1,0,0,0,54,54,50,54,8,2,3,0,0,2,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25198,25197,-9,-9,1,0,44,0,5,0,3,3,-9,0,4,0,0,0,23,-8,7.070521638991916,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,54,54,8,2,3,0,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25199,-9,25198,25197,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-999.3335881140308,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13873,25200,-9,25198,25197,1,0,14,0,5,1,3,0,-9,0,5,0,0,0,0,0,-953.7408926752182,-9,3,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,2,3,-9,0,0,8,2,0,1084.428571428571,44818.86221280431,0,247053.8819982753,170037.9265521549,3716.433000029918 -11262,13874,25201,-9,25198,25197,1,1,26,0,5,0,2,2,-9,0,4,8.740355399418856,8.609235308545106,0,0,0,-969.085304095893,-9,3,3,2019,10,0,50,0,1,1,1,14.48481456120466,14.48481456120466,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,2,3,0,0,5,8,5,0,711,199297.8815515118,0,324717.8419389721,138715.0814493486,3199.699592196417 -11262,13875,25202,-9,25198,25197,1,1,24,0,5,0,2,2,-9,0,4,0,0,0,0,0,-965.5479248451483,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,402,0,0,0,0,70.73969636333632 -11262,13876,25203,-9,25198,25197,1,0,22,0,5,0,2,2,-9,0,4,7.65604447828509,8.034546041503184,0,0,0,-1091.284111450459,-9,3,3,2019,12,0,50,0,1,0,1,6.593828562492043,6.593828562492043,0,0,0,0,0,1,1,0,0,0,30.19,57.95,-9,-9,3.333333333333333,2,3,0,0,3,8,3,0,376,-180564.0304958627,0,0,0,920.5033846814865 -11262,13877,25204,-9,25198,25197,1,0,19,0,5,0,2,2,-9,0,5,0,0,0,0,0,-1046.718028107341,-9,3,3,2019,4,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,18.42,66.36,-9,-9,5,2,3,1,0,0,8,1,0,198,-204356.9048245388,0,0,0,348.0481525035923 -11262,13878,25205,-9,25198,25197,1,1,18,0,5,0,2,2,-9,0,4,0,0,0,0,0,-903.2449635193307,-9,3,3,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,.3807197637768766,0,52.35,55.62,-9,-9,0,2,3,1,1,0,8,1,0,1885,0,0,0,0,890.2195647008338 -11262,13879,25206,-9,-9,-9,1,0,78,0,5,0,3,3,-9,0,3,0,0,0,0,0,-1018.20200000085,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,431,0,0,0,0,673.9673585805774 -11262,13880,25207,-9,-9,-9,1,1,19,0,5,0,2,2,-9,0,4,0,0,0,0,0,-889.211128639921,-9,-9,-9,2019,10,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,461,0,0,0,0,0 -11263,13881,25208,25209,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.484174283018998,9.69025402291906,7.832010636220531,7,2,-55.33374873895557,0,-9,2,2019,8,0,45,50,1,0,0,28.43240277311046,28.43240277311046,0,0,0,0,0,0,0,0,3.234979440129132,8.265738083043898,58.3,52.91,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,1198.5,761939.1303086935,579186.7532172641,195682.4763496883,29432.06417569796,5524.116349805725 -11263,13881,25209,25208,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,6.485493873984439,7.358240015132323,6.326746035093728,7,-2,-64.47321138082536,0,2,2,2019,7,0,11,11,1,0,0,6.657224600676627,6.657224600676627,0,0,0,0,0,0,0,0,0,6.353539327070166,54.2,57.49,58.3,52.91,8.333333333333334,1,1,0,0,8,2,5,1,1198.5,761939.1303086935,579186.7532172641,195682.4763496883,29432.06417569796,5524.116349805725 -11264,13882,25210,25211,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.931132461912234,7.684849397692088,0,3,-10,35.33093186859733,0,2,2,2019,15,3,38,42,1,3,0,9.849229046219509,9.849229046219509,0,0,0,0,2,0,0,0,0,0,41.47,35.36,55.1,47.5,6.666666666666667,1,1,0,0,8,6,4,0,1282.5,-102198.349395927,39491.00050925191,0,0,2301.028685591241 -11264,13882,25211,25210,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.194053366873757,8.119250631244972,0,3,10,7.254488248367167,0,-9,-9,2019,11,0,42,45,1,0,0,9.273774069619682,9.273774069619682,0,0,0,0,0,0,0,0,3.534985477671535,0,55.1,47.5,41.47,35.36,5,1,1,0,0,12,6,4,0,1282.5,-102198.349395927,39491.00050925191,0,0,2301.028685591241 -11265,13883,25212,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1099.118746980927,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.500491448952396,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,624,1567515.25477379,0,503344.8708506857,0,4277.390413621806 -11266,13884,25213,25214,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.066221052238367,7.963345358786198,0,2,2,56.65197340974765,0,3,2,2019,8,0,47,40,1,0,0,7.339809456750216,7.339809456750216,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.92,62.31,8.333333333333334,1,1,0,0,8,10,4,1,224,74394.32348909901,-53712.86067513595,0,0,2955.709424116233 -11266,13884,25214,25213,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.365853749276514,8.383041376767334,0,2,-2,10.91762770904996,0,-9,-9,2019,8,2,37,38,1,2,0,13.69140018933888,13.69140018933888,0,0,0,0,0,0,0,0,.8337555626104526,0,43.92,62.31,57.06,57.76,8.333333333333334,1,1,0,0,7,10,4,1,224,74394.32348909901,-53712.86067513595,0,0,2955.709424116233 -11267,13885,25215,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.761051199961839,8.521880153711178,0,0,0,-947.7242491958575,0,2,1,2019,13,2,39,38,1,2,0,15.21584347386851,15.21584347386851,0,0,0,0,0,0,0,0,.9870303177833477,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,651,344691.170874396,0,482761.4004659367,75284.74834465572,2190.223172602256 -11268,13886,25216,-9,25218,25217,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.526700588861,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,575.6666666666666,540824.4132309506,113083.8239197774,444035.6005210413,109044.4702321121,14662.86536308968 -11268,13886,25217,25218,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,9.876797686407695,9.98659596529248,0,7,5,48.6239436328497,0,-9,-9,2019,9,0,50,50,1,1,0,36.66023010370939,36.66023010370939,0,0,0,0,0,1,1,0,6.339112744780255,0,51,56,66.34,49.42,8,4,2,0,0,1,8,5,1,575.6666666666666,540824.4132309506,113083.8239197774,444035.6005210413,109044.4702321121,14662.86536308968 -11268,13886,25218,25217,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,9.622309261908919,9.864862211120982,0,14,-5,-55.23242816226823,0,2,2,2019,7,1,20,44,1,1,0,111.7429755873462,111.7429755873462,0,0,0,0,0,1,1,0,0,0,66.34,49.42,51,56,10,1,1,0,0,9,8,5,1,575.6666666666666,540824.4132309506,113083.8239197774,444035.6005210413,109044.4702321121,14662.86536308968 -11269,13887,25219,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1135.117264457756,0,3,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,24.82,-9,-9,5,1,1,0,0,0,12,1,0,461,-184328.6070027058,0,0,0,1572.677217723006 -11270,13888,25220,25221,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.329571203411716,8.639010255983413,0,8,-1,-13.5605715150763,0,2,2,2019,7,0,55,44,1,0,0,10.84934509633296,10.84934509633296,0,0,0,0,0,1,1,0,7.216793182882547,0,37.16,39.96,51.77,58.57,5,1,1,0,0,11,7,5,1,271,213947.3862662382,51231.67136228862,420442.2324992549,207658.4722939539,4648.308456457481 -11270,13888,25221,25220,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.582765338005226,8.464520231448523,0,8,1,-55.36176579520601,0,-9,-9,2019,7,0,37,37,1,0,0,19.90481569765054,19.90481569765054,0,0,0,0,0,1,1,0,6.774657283528666,0,51.77,58.57,37.16,39.96,8.333333333333334,1,1,0,0,6,7,5,1,271,213947.3862662382,51231.67136228862,420442.2324992549,207658.4722939539,4648.308456457481 -11270,13888,25222,-9,25221,25220,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.753211284198,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,271,213947.3862662382,51231.67136228862,420442.2324992549,207658.4722939539,4648.308456457481 -11271,13889,25223,25224,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,4,1,-15.14727926007044,0,-9,-9,2019,13,2,0,16,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.5,52.88,49,48,6.666666666666667,1,1,1,0,11,13,2,1,1093.5,849468.0328072153,357760.7744687742,161030.048308924,0,1475.844861711164 -11271,13889,25224,25223,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.412301518277445,7.256325846326941,0,36,-1,76.72529770399323,-9,3,3,2019,11,0,20,0,1,2,0,9.00886613504928,9.00886613504928,0,0,0,0,0,1,1,0,0,0,49,48,43.5,52.88,7,1,1,0,0,1,13,2,1,1093.5,849468.0328072153,357760.7744687742,161030.048308924,0,1475.844861711164 -11272,13890,25225,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.819883598408214,4.495535025650301,0,0,-1144.204117211474,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.685803514040621,39.26,46.73,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,463,-126686.5616365877,0,0,0,740.717258662754 -11273,13891,25226,-9,25228,25227,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.711417875405,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,962.3333333333334,334590.0301519465,139639.2785761073,248834.6141020489,32160.81301513512,4341.17842022531 -11273,13891,25227,25228,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.169196495651423,8.477681298200983,0,14,1,-53.0981645942562,0,2,1,2019,10,1,44,45,1,1,0,12.57770641352055,12.57770641352055,0,0,0,0,2,1,1,0,0,0,54.2,57.49,48.77,60.16,8.333333333333334,1,1,0,1,13,6,5,1,962.3333333333334,334590.0301519465,139639.2785761073,248834.6141020489,32160.81301513512,4341.17842022531 -11273,13891,25228,25227,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,8.959769796940877,9.088161213460573,0,16,-1,-87.0444584072991,-9,2,2,2019,11,0,52,0,1,0,0,13.61067180782678,13.61067180782678,0,0,0,0,42,1,1,0,0,0,48.77,60.16,54.2,57.49,8.333333333333334,1,1,0,0,11,6,5,1,962.3333333333334,334590.0301519465,139639.2785761073,248834.6141020489,32160.81301513512,4341.17842022531 -11274,13892,25229,25230,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,9.651207997715142,9.551358468038448,0,10,-7,24.55903072840795,0,2,2,2019,8,0,40,40,1,0,0,46.10521243363248,46.10521243363248,0,0,0,0,0,0,0,0,2.721653636336053,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,11,5,5,1,316,144993.737365271,0,0,0,5660.178103853588 -11274,13892,25230,25229,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,5.881510969925179,7.539432921130341,7.087888190179008,10,7,84.86734312338955,0,2,2,2019,5,0,10,40,1,0,0,4.063893832411447,4.063893832411447,0,0,0,0,0,0,0,0,5.166779356998608,7.178630055402822,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,11,5,5,1,316,144993.737365271,0,0,0,5660.178103853588 -11275,13893,25231,25232,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,5.895132728865519,5.484866895937397,9,3,53.39815359663062,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.009800122433789,5.489760183879646,54.2,57.49,31.81,29.07,8.333333333333334,1,1,0,0,0,4,2,1,375,146330.8821572753,21043.32519838825,165248.6030073979,0,1054.756594433711 -11275,13893,25232,25231,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,6.461150245329149,6.74008257950213,9,-3,-113.9522678162509,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,1.005794949672624,6.811660489134858,31.81,29.07,54.2,57.49,1.666666666666667,1,1,0,0,4,4,2,1,375,146330.8821572753,21043.32519838825,165248.6030073979,0,1054.756594433711 -11276,13894,25233,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,7.955791912462336,7.965263901378998,6.489197524517636,0,0,-933.4520236908244,0,2,2,2019,10,0,24,0,1,0,0,13.3116550247225,13.3116550247225,0,0,0,0,0,1,1,0,5.267183063612823,6.459529938241315,34.2,49.45,-9,-9,3.333333333333333,1,1,0,1,7,9,4,0,185,1134460.606962711,1218740.339987714,0,0,2537.303185121824 -11277,13895,25234,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-953.1941585370739,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,21.79719361553071,0,0,1,1,0,0,0,50.76,41.71,-9,-9,10,1,1,0,0,0,13,2,1,880,-28879.43208256226,0,0,0,679.6062092384866 -11278,13896,25235,-9,-9,-9,1,1,40,0,0,0,1,1,-9,1,2,8.338951694774702,8.541625290331693,5.703017118818474,0,0,-991.8985097796092,-9,1,1,2019,7,0,20,0,1,0,0,31.40770208314331,31.40770208314331,0,0,0,0,0,1,1,0,8.121044870063887,0,59.96,20.15,-9,-9,6.666666666666667,1,1,0,0,11,5,5,0,579,271818.3862387421,141278.3319408937,138491.4825062071,47029.71287627929,3857.433925516192 -11279,13897,25236,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.403852231729037,7.375166001318744,0,0,0,-1041.492539254882,0,3,3,2019,14,2,45,35,1,2,0,3.965386724448608,3.965386724448608,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,1160,78408.5986875154,-15175.60481554779,198928.5639858729,19487.40465390669,513.3837335495432 -11280,13898,25237,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.403153646633246,7.549180917720089,0,0,-1128.942921759717,0,3,3,2019,9,0,0,37,4,0,0,0,0,1,0,0,0,0,1,1,0,7.099023095883068,7.170506823667624,36.32,44.1,-9,-9,6.666666666666667,1,1,0,0,8,8,3,1,680,498766.4016923731,233477.9838770019,337496.2395565931,0,1613.809257484154 -11281,13899,25238,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.3160730746314,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,10,1,1,0,0,0,8,1,0,649,-78058.31490603123,0,0,0,803.0570386387363 -11282,13900,25239,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.255030023085107,8.067687801351255,0,0,0,-1015.557022168009,0,2,2,2019,11,0,37,53,1,0,0,10.16268488340873,10.16268488340873,0,0,0,0,27,0,0,0,0,0,34.66,52.21,-9,-9,5,1,1,0,0,7,2,4,0,1057,21740.29171774764,1557.260819927753,0,0,953.6686579754962 -11282,13901,25240,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,1,7.767136287644847,8.115433005576932,0,0,0,-1023.316986871996,-9,-9,-9,2019,17,6,37,0,1,6,0,9.848132391334179,9.848132391334179,0,0,0,0,0,0,0,0,0,0,42.43,31.26,-9,-9,1.666666666666667,1,1,0,0,4,2,3,0,153,-12286.1598351153,0,0,0,1578.914471423848 -11283,13902,25241,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.467850880801413,7.786488874370807,0,0,0,-829.6063251958813,0,2,2,2019,16,5,30,30,1,5,0,9.215893499290171,9.215893499290171,0,0,0,0,0,1,1,0,0,0,39.67,56.17,-9,-9,6.666666666666667,1,1,0,0,12,1,3,1,4320,99057.71203551367,108503.8625132217,0,0,833.7769007935607 -11284,13903,25242,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.806865665638976,5.630577997393692,0,0,-957.3942623179061,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,1.006627090790028,0,1,1,0,0,5.533671487980613,52,45,-9,-9,7,1,1,0,0,0,2,2,1,3622,253106.075135145,-29808.24716309559,228383.0323596384,0,1900.148078784608 -11285,13904,25243,-9,25246,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-946.3856622401463,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,634.4,50599.25975636027,9619.054072634788,0,0,2456.256765850547 -11285,13904,25244,-9,25246,-9,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-905.5926419040661,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,634.4,50599.25975636027,9619.054072634788,0,0,2456.256765850547 -11285,13904,25245,-9,25246,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.014907668445,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,634.4,50599.25975636027,9619.054072634788,0,0,2456.256765850547 -11285,13904,25246,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,8.233541741651436,8.274644664874961,0,0,0,-1030.033112307698,0,2,1,2019,8,1,37,0,1,1,0,12.82134987604483,12.82134987604483,0,0,0,0,0,1,1,0,0,0,35.85,53.07,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,634.4,50599.25975636027,9619.054072634788,0,0,2456.256765850547 -11285,13904,25247,-9,25246,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1055.511100730218,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,634.4,50599.25975636027,9619.054072634788,0,0,2456.256765850547 -11286,13905,25248,-9,25250,25249,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.3433506768598,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11286,13905,25249,25250,-9,-9,1,1,35,1,4,0,2,2,-9,0,5,8.4401844077608,8.434999759662583,0,16,-1,114.2143899978795,0,3,3,2019,15,3,60,40,1,3,0,8.766424478438445,8.766424478438445,0,0,0,0,2,1,1,0,0,0,33.46,49.49,49,56,6.666666666666667,2,3,0,1,9,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11286,13905,25250,25249,-9,-9,1,0,36,1,4,0,1,1,-9,0,4,6.407850453449372,6.467681288057106,0,15,1,-40.67133096384293,0,-9,-9,2019,11,0,20,16,1,2,0,4.008336169511746,4.008336169511746,0,0,0,0,0,1,1,0,4.656707329483846,0,49,56,33.46,49.49,7,2,3,0,0,1,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11286,13905,25251,-9,25250,25249,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-878.1144885106515,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11286,13905,25252,-9,25250,25249,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1162.5093278131,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11286,13905,25253,-9,25250,25249,1,1,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1010.99303627888,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,7,3,1,1243.333333333333,-11098.26883151314,4941.860487261279,0,0,3210.96917466298 -11287,13906,25254,25255,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.475879157416712,8.765481632330761,0,17,6,44.27254617451975,0,2,2,2019,7,0,40,50,1,0,0,16.39591985815181,16.39591985815181,0,0,0,0,7,1,1,0,0,0,51.77,58.57,44.84,24.41,8.333333333333334,1,1,0,0,9,13,3,1,863,629730.1406330712,91620.93150400036,227770.0974212591,0,3357.611904173723 -11287,13906,25255,25254,-9,-9,1,0,38,0,1,0,2,2,-9,1,1,0,4.748605738270909,4.690414170200318,17,-6,-248.6890964763219,0,2,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,4.583567507640184,44.84,24.41,51.77,58.57,1.666666666666667,1,1,0,0,0,13,3,1,863,629730.1406330712,91620.93150400036,227770.0974212591,0,3357.611904173723 -11288,13907,25256,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.455887903942983,7.455152121821732,0,0,-1066.81087401833,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.149774379965114,7.410120033374642,52.08,46.68,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,1021,241444.9901220781,66318.38085503833,35084.18120491963,0,1639.044567963672 -11289,13908,25257,25258,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,6.944078441440166,6.922942478012915,0,2,-3,98.48089996123214,0,-9,-9,2019,6,0,15,14,1,0,0,6.798985626709006,6.798985626709006,0,0,0,0,0,1,1,0,0,0,55.96,49.93,48.7,56.22,8.333333333333334,1,1,0,0,3,10,3,0,700.6666666666666,-88113.54729243799,12777.13609357045,0,0,2045.17288916972 -11289,13908,25258,25257,-9,-9,1,1,25,1,1,0,2,2,-9,0,3,8.079700429606742,8.169383746575491,0,2,3,-25.07236010210764,0,-9,-9,2019,13,3,44,44,1,3,0,8.66558715935596,8.66558715935596,0,0,0,0,0,1,1,0,.5266431917710439,0,48.7,56.22,55.96,49.93,8.333333333333334,1,1,0,1,9,10,3,0,700.6666666666666,-88113.54729243799,12777.13609357045,0,0,2045.17288916972 -11289,13908,25259,-9,25257,25258,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.365851537842,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,700.6666666666666,-88113.54729243799,12777.13609357045,0,0,2045.17288916972 -11290,13909,25260,25263,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0328332588516,8.046884338202636,0,14,-3,52.58797487686544,0,2,2,2019,11,0,37,37,1,0,0,9.374118764661027,9.374118764661027,0,0,0,0,2,1,1,0,0,0,52.95,29.84,57.33,53.46,6.666666666666667,1,1,0,0,9,2,4,1,418.75,-5941.649091674182,-28359.45262612741,156974.9458943435,89861.97272596422,3921.561943873644 -11290,13909,25261,-9,25260,25263,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1062.357206830306,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,4,1,418.75,-5941.649091674182,-28359.45262612741,156974.9458943435,89861.97272596422,3921.561943873644 -11290,13909,25262,-9,25260,25263,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.645285737224,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,418.75,-5941.649091674182,-28359.45262612741,156974.9458943435,89861.97272596422,3921.561943873644 -11290,13909,25263,25260,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.498587182416548,9.048818959421025,0,9,3,-23.63929698146522,-9,-9,-9,2019,7,0,50,0,1,0,0,12.77635610933086,12.77635610933086,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.95,29.84,8.333333333333334,1,1,0,0,5,2,4,1,418.75,-5941.649091674182,-28359.45262612741,156974.9458943435,89861.97272596422,3921.561943873644 -11291,13910,25264,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.244018432010419,7.492711316319681,0,0,-989.4509300845939,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.211415494162524,60.93,36.01,-9,-9,8.333333333333334,3,4,0,0,2,9,3,1,817,1164917.625312486,550541.193338522,487585.3102007775,0,829.6001761413874 -11292,13911,25265,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,7.16093016351039,7.33587983017548,0,0,0,-911.721092077829,-9,2,2,2019,10,0,23,0,1,0,0,6.420471126886333,6.420471126886333,0,0,0,0,2,1,1,0,7.682239208920849,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,986,21115.45195883998,0,0,0,2275.687675756913 -11292,13912,25266,-9,25265,-9,1,1,25,0,0,0,1,1,-9,0,5,8.205656370345245,8.673363752874449,0,0,0,-1186.973661888392,-9,1,-9,2019,8,2,53,0,1,2,1,9.747246346099885,9.747246346099885,0,0,0,0,0,1,1,0,4.790307068202076,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,601,9313.030082585748,127922.896110745,153564.8778979221,128227.0726955789,2726.572186143887 -11292,13913,25267,-9,25265,-9,1,1,22,0,0,0,1,1,-9,0,5,7.9086993098234,7.991594028432363,0,0,0,-1040.608748746354,-9,1,-9,2019,6,0,45,0,1,0,1,6.650182606934131,6.650182606934131,0,0,0,0,0,1,1,0,5.942264550503802,0,54.69,57.47,-9,-9,10,1,1,0,0,1,9,4,1,2557,-35917.23782595642,30260.84911780983,0,0,843.1370745099589 -11292,13914,25268,-9,25265,-9,1,0,20,0,0,1,2,0,-9,0,1,0,0,0,0,0,-1024.139313101695,-9,1,1,2019,23,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,0,0,19.38,47.13,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,458,-88956.66448787072,0,0,0,584.7402242806295 -11293,13915,25269,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.256474358133,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,40,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,190,-233184.0638130942,-87449.98062109576,0,0,1610.221014660046 -11293,13916,25270,-9,25269,-9,1,1,26,0,0,0,2,2,-9,0,4,8.001004754751373,8.30878611809373,0,0,0,-1030.611709755068,-9,3,-9,2019,10,0,36,0,1,1,1,8.573991015843106,8.573991015843106,0,0,0,0,0,1,0,1,1.920875874560811,0,48,58,-9,-9,7,2,3,0,0,6,4,4,1,273,-9193.10107361335,51321.30120286424,0,0,1002.437289800903 -11293,13917,25271,-9,25269,-9,1,1,23,0,0,0,2,2,-9,0,4,6.807990919572806,7.116070465065288,0,0,0,-1049.27320164708,-9,3,-9,2019,11,0,30,0,1,1,1,5.177498136386875,5.177498136386875,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,3,4,3,1,392,87266.08151444465,105236.5452104043,0,0,930.4137164266579 -11293,13918,25272,-9,25269,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-964.3322144711111,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,5,2,3,0,0,0,4,2,1,394,-1712.946169663672,0,0,0,0 -11294,13919,25273,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,4.93442676603052,5.093089302408132,0,0,0,-963.9236133917565,0,3,2,2019,1,0,30,32,1,0,0,.616831606157168,.616831606157168,0,0,0,0,0,0,0,0,1.233224968997307,0,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,10,6,2,1,962,460266.2000174915,301927.6908942315,201696.3767605671,55431.69749575684,301.183650949783 -11295,13920,25274,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.608419005573099,8.486321121593202,0,0,0,-1079.432127777005,0,-9,-9,2019,4,0,37,90,1,0,0,18.58583946607143,18.58583946607143,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,305,126331.3624636501,0,0,0,2445.601776428868 -11296,13921,25275,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.470183846931118,6.704485233934757,0,0,-959.02906786653,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,.9408766093544354,13.14609267018288,27.243956222855,0,1,1,0,0,6.720920781553415,54.07,36.17,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,528,23895.28087925982,217420.5499249261,0,0,1129.361728511504 -11297,13922,25276,25279,-9,-9,1,0,38,0,2,0,3,3,-9,0,2,7.260417994733551,7.105209648891281,0,11,-2,-42.37313350028246,0,2,2,2019,9,0,20,20,1,0,0,7.142253451145072,7.142253451145072,0,0,0,0,0,0,0,0,0,0,46.62,32.97,56.82,56.51,5,2,3,0,1,2,6,2,1,367.5,158810.880156701,56218.46187521974,125392.2665656987,0,1091.504761569768 -11297,13922,25277,-9,25276,25279,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-813.0263332398056,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,367.5,158810.880156701,56218.46187521974,125392.2665656987,0,1091.504761569768 -11297,13922,25278,-9,25276,25279,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.2178519851142,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,367.5,158810.880156701,56218.46187521974,125392.2665656987,0,1091.504761569768 -11297,13922,25279,25276,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,7.189864763968541,6.938330385135584,0,11,2,98.0961744868371,0,2,2,2019,6,0,50,40,1,0,0,2.374090031335849,2.374090031335849,0,0,0,0,0,0,0,0,0,0,56.82,56.51,46.62,32.97,8.333333333333334,2,3,0,1,8,6,2,1,367.5,158810.880156701,56218.46187521974,125392.2665656987,0,1091.504761569768 -11298,13923,25280,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.907354314609605,7.68652689946856,0,0,-1062.020649094136,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5834653843247,7.865864056022621,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,1072,795134.6007915423,456826.1870342718,235502.9458042623,0,2460.22122427404 -11299,13924,25281,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.939038883723041,8.083335076069348,0,0,0,-959.9988181503917,0,3,2,2019,12,0,36,28,1,0,0,13.27333703130876,13.27333703130876,0,0,0,0,0,0,0,0,0,0,36.45,55.05,-9,-9,1.666666666666667,1,1,0,0,8,12,4,1,4788,145159.4539012473,164385.2854969704,0,0,462.028050268025 -11299,13925,25282,-9,25281,-9,1,1,27,0,0,0,2,2,-9,0,4,7.933482579216268,8.318278014845967,0,0,0,-1021.222189749129,0,2,3,2019,15,4,37,37,1,4,1,9.453125330080629,9.453125330080629,0,0,0,0,0,0,0,0,0,0,43.42,62.33,-9,-9,1.666666666666667,1,1,0,0,10,12,4,1,2224,320049.1797823942,0,0,0,1037.285584679051 -11300,13926,25283,25284,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.897930734900243,7.719588756893242,51,4,39.04077319621901,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.439636336787292,7.780247124955468,61.28,35.65,60.12,54.8,8.333333333333334,1,1,0,0,0,5,3,1,376.5,728730.6545682375,390206.8280539454,296634.375212927,0,2688.829089077845 -11300,13926,25284,25283,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,51,-4,25.62815470080843,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.133340393138461,0,60.12,54.8,61.28,35.65,1.666666666666667,1,1,0,0,0,5,3,1,376.5,728730.6545682375,390206.8280539454,296634.375212927,0,2688.829089077845 -11301,13927,25285,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.524305041200884,7.648586779150178,6.345303788841202,0,0,-977.8827564286038,0,1,2,2019,3,0,44,40,1,0,0,4.992757424030053,4.992757424030053,0,0,0,0,0,0,0,0,6.489761588178378,0,38.82,63.21,-9,-9,10,4,2,0,0,8,5,3,0,919,65818.08596751647,0,0,0,205.5536440845883 -11302,13928,25286,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-953.1658674512287,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.11,22.3,-9,-9,8.333333333333334,1,1,0,0,8,6,1,0,610,75679.36373791542,0,0,0,1974.936915770611 -11303,13929,25287,25288,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,8.231562921576359,8.038984997068978,0,7,2,-23.10782800533631,0,-9,2,2019,7,0,15,15,1,0,0,24.38424556680646,24.38424556680646,0,0,0,0,0,1,1,0,0,0,42.85,43.64,41.47,58.08,6.666666666666667,1,1,0,0,8,12,4,1,1093.5,68024.10006926532,104658.9297612321,190112.8822940092,196327.415850193,4079.511550696967 -11303,13929,25288,25287,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.686558882680604,8.499640394479625,0,7,-2,71.87226472923402,0,-9,-9,2019,11,0,47,49,1,0,0,12.77467533702112,12.77467533702112,0,0,0,0,0,1,1,0,7.093299774008506,0,41.47,58.08,42.85,43.64,8.333333333333334,1,1,0,0,6,12,4,1,1093.5,68024.10006926532,104658.9297612321,190112.8822940092,196327.415850193,4079.511550696967 -11303,13929,25289,-9,25287,25288,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.6165341833005,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1093.5,68024.10006926532,104658.9297612321,190112.8822940092,196327.415850193,4079.511550696967 -11303,13929,25290,-9,25287,25288,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.4770200678732,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1093.5,68024.10006926532,104658.9297612321,190112.8822940092,196327.415850193,4079.511550696967 -11304,13930,25291,25292,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.288927882764066,5.394723803572171,55,0,-188.4900513665251,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,3.509844122848853,5.186411367926056,59.66,33.18,42.93,19.83,8.333333333333334,1,1,0,0,2,1,2,1,1018,387492.1133062054,144570.7604384529,143447.6072919731,0,1410.045027753324 -11304,13930,25292,25291,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,6.34918468541442,6.527491363596545,55,0,43.41706003909533,0,3,2,2019,16,5,0,0,4,5,0,0,0,1,0,26.77234968195488,0,0,1,1,0,0,6.697942159445583,42.93,19.83,59.66,33.18,8.333333333333334,1,1,0,0,0,1,2,1,1018,387492.1133062054,144570.7604384529,143447.6072919731,0,1410.045027753324 -11305,13931,25293,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.061692276956068,7.285406092220406,0,0,-1011.136047921993,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.636870806237425,7.534813145034666,60.53,42.47,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,363,381797.1580197873,54185.79942113888,0,0,1570.915582549538 -11306,13932,25294,-9,25296,25295,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.769323853399,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,477.6666666666667,333491.5965791839,83017.22308571839,309377.3648703711,81703.14565902423,5854.776566686665 -11306,13932,25295,25296,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.634796697033151,8.558124807136295,0,8,-4,-99.75891947980199,0,1,1,2019,13,2,55,60,1,2,0,11.28102532131218,11.28102532131218,0,0,0,0,0,1,1,0,1.114486295345678,0,46.2,46.23,46.16,58.62,8.333333333333334,4,2,0,0,10,12,4,1,477.6666666666667,333491.5965791839,83017.22308571839,309377.3648703711,81703.14565902423,5854.776566686665 -11306,13932,25296,25295,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.830237495166439,7.776416636243837,0,8,4,43.00078943173531,0,2,2,2019,9,1,25,0,1,1,0,11.9985589618483,11.9985589618483,0,0,0,0,0,1,1,0,7.822138667928933,0,46.16,58.62,46.2,46.23,8.333333333333334,1,1,0,0,10,12,4,1,477.6666666666667,333491.5965791839,83017.22308571839,309377.3648703711,81703.14565902423,5854.776566686665 -11307,13933,25297,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-997.6489229943996,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.7844812232919429,0,54.1,59.11,-9,-9,10,1,1,0,0,0,4,1,1,321,-180475.1510644097,0,0,0,-607.6876874620519 -11308,13934,25298,25299,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,-17,0,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,0,47.96933760256211,0,71.5,1,1,0,0,0,43.1,23.61,36.51,20.26,3.333333333333333,2,3,0,1,0,6,1,1,549,217942.8327425739,0,233655.6860787545,0,1184.0405341668 -11308,13934,25299,25298,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,6,17,0,0,3,3,2019,16,3,0,0,4,3,0,0,0,1,13.26671982527197,18.31480299544792,137.517117918067,0,1,1,0,0,0,36.51,20.26,43.1,23.61,1.666666666666667,2,3,0,1,0,6,1,1,549,217942.8327425739,0,233655.6860787545,0,1184.0405341668 -11308,13935,25300,25301,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,0,0,0,1,6,0,-9,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,5.48,1,1,0,0,0,39.89,61.68,46.13,58.64,3.333333333333333,2,3,1,0,0,6,1,1,312.5,44068.14514715588,0,0,0,666.7474895474074 -11308,13935,25301,25300,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,1,-6,0,0,-9,-9,2019,15,4,0,35,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.13,58.64,39.89,61.68,1.666666666666667,2,3,1,0,4,6,1,1,312.5,44068.14514715588,0,0,0,666.7474895474074 -11309,13936,25302,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.0182035669354,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,11.61129224318566,0,0,1,1,0,0,0,54,45,-9,-9,8,1,1,0,0,0,2,1,0,404,386371.7272241995,0,85918.4289115775,0,1662.242896621556 -11310,13937,25303,25304,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.706286361693412,4.78524740244253,46,2,118.8411441666762,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.078879286174169,4.694852895763278,59.53,56.44,59.32,46.98,10,1,1,0,0,5,5,3,1,1100.5,1017247.486116672,707275.9708355314,263525.0483425481,29882.5678240508,2867.272379484155 -11310,13937,25304,25303,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.944607295500338,8.091306632132005,46,-2,79.09520678795784,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.611660431649624,7.985215642566406,59.32,46.98,59.53,56.44,8.333333333333334,1,1,0,0,0,5,3,1,1100.5,1017247.486116672,707275.9708355314,263525.0483425481,29882.5678240508,2867.272379484155 -11311,13938,25305,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.4065014907885,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,7.661132161494248,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,6,1,0,2933,-8907.142800051386,0,0,0,771.2970680945169 -11312,13939,25306,25308,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.07720008431622,7.060801912196557,0,10,4,43.47376580406053,0,2,1,2019,16,5,15,30,1,5,0,9.055576776285347,9.055576776285347,0,0,0,0,14.5,1,1,0,6.609013234808452,0,43.14,61.33,53.53,44,8.333333333333334,1,1,0,0,10,10,3,1,1220.75,26475.44994065345,14030.56008138833,0,0,2725.058082622131 -11312,13939,25307,-9,25306,25308,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.3696480092721,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,1220.75,26475.44994065345,14030.56008138833,0,0,2725.058082622131 -11312,13939,25308,25306,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.942043817925973,8.070682447191412,0,13,-4,44.02854696046006,0,2,2,2019,10,0,45,45,1,0,0,5.635064554604601,5.635064554604601,0,0,0,0,7,1,1,0,0,0,53.53,44,43.14,61.33,6.666666666666667,1,1,0,0,10,10,3,1,1220.75,26475.44994065345,14030.56008138833,0,0,2725.058082622131 -11312,13939,25309,-9,25306,25308,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.533519526316,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,1220.75,26475.44994065345,14030.56008138833,0,0,2725.058082622131 -11313,13940,25310,25311,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.331259551921891,7.093412089736522,52,0,42.12337172881615,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.081698810685234,7.634744070054314,57.16,56.15,51,47,8.333333333333334,1,1,0,0,0,11,2,1,1119.5,560220.4159582814,187584.9968587146,158709.4296029591,4996.655271827026,1472.858467270238 -11313,13940,25311,25310,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.603489225162426,4.806294325477342,9,0,-17.80593122384956,0,3,-9,2019,11,0,0,0,4,1,0,0,0,1,0,8.640082138874106,0,0,1,1,0,3.123825465458259,4.597227055216923,51,47,57.16,56.15,7,1,1,0,0,0,11,2,1,1119.5,560220.4159582814,187584.9968587146,158709.4296029591,4996.655271827026,1472.858467270238 -11314,13941,25312,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.491451284687146,8.440085967149065,0,0,0,-926.1578765622364,0,1,1,2019,10,3,37,37,1,3,0,15.24080090584668,15.24080090584668,0,0,0,0,0,1,1,0,3.204463358446735,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,279,4398.063498573663,-45348.25338946002,0,0,2462.599434013382 -11315,13942,25313,25314,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.913451028590774,7.649208225896605,0,7,5,24.77495814693827,0,-9,-9,2019,8,0,42,42,1,0,0,8.410831035677063,8.410831035677063,0,0,0,0,0,0,0,0,0,0,69.08,21.87,48.93,31.79,10,1,1,0,0,9,6,4,0,1529.5,76945.78612622991,79270.91570836972,103788.634243151,28703.16856843544,2047.528340000208 -11315,13942,25314,25313,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.633242892782672,7.822912064030572,5.505709725037323,7,-5,3.956721560709454,0,3,3,2019,13,1,42,52,1,1,0,6.507901032877629,6.507901032877629,0,0,0,0,0,0,0,0,5.204692637522164,0,48.93,31.79,69.08,21.87,8.333333333333334,1,1,0,0,9,6,4,0,1529.5,76945.78612622991,79270.91570836972,103788.634243151,28703.16856843544,2047.528340000208 -11315,13943,25315,-9,25314,25313,1,0,18,0,0,1,1,0,0,0,3,0,0,0,0,0,-1013.811397788726,-9,2,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,21.79,45.58,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,1538,25727.51571590563,0,0,0,0 -11316,13944,25316,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.440168970099498,8.298095414047923,0,0,0,-907.5664725356924,-9,-9,3,2019,19,7,56,0,1,7,0,8.337223470159826,8.337223470159826,0,0,0,0,0,0,0,0,0,0,32.62,36.55,-9,-9,5,1,1,0,0,12,4,4,0,474,-10455.37213932411,172747.6743590494,0,0,1278.535642361606 -11317,13945,25317,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,7.311093001021364,7.418589172695519,0,0,-1035.455085684389,0,1,1,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.535456305478178,7.269025489345093,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1356,437628.7967112812,41095.68922270085,187065.7604892238,0,1601.778392443782 -11318,13946,25318,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.550527391237033,8.687642968550087,0,0,0,-964.3370520802889,0,-9,-9,2019,7,0,38,37,1,0,0,17.88122928222766,17.88122928222766,0,0,0,0,0,1,1,0,4.739328421937127,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,566,-61284.90297076729,115151.5493462408,0,0,2477.336750604439 -11319,13947,25319,25320,-9,-9,1,1,37,2,2,0,1,1,-9,0,4,8.721928659280634,8.758501222379413,0,4,3,103.6438203105927,0,-9,-9,2019,12,0,43,43,1,0,0,19.26242530972495,19.26242530972495,0,0,0,0,0,1,1,0,.9412949732344945,0,51.83,57.2,49.94,58.01,8.333333333333334,1,1,0,0,12,10,4,1,362,535537.5734930714,174097.9969936302,367811.1399658127,83084.86080071275,2190.961312448938 -11319,13947,25320,25319,-9,-9,1,0,34,2,2,0,2,2,-9,0,4,0,0,0,4,-3,12.7382128163709,0,-9,-9,2019,11,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.94,58.01,51.83,57.2,8.333333333333334,1,1,0,0,12,10,4,1,362,535537.5734930714,174097.9969936302,367811.1399658127,83084.86080071275,2190.961312448938 -11319,13947,25321,-9,25320,25319,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-989.4912239848367,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,362,535537.5734930714,174097.9969936302,367811.1399658127,83084.86080071275,2190.961312448938 -11319,13947,25322,-9,25320,25319,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.171748186613,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,362,535537.5734930714,174097.9969936302,367811.1399658127,83084.86080071275,2190.961312448938 -11320,13948,25323,25324,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.689309337633295,8.651121373235398,0,1,-2,115.2264595505386,0,2,2,2019,7,0,36,36,1,0,0,16.12851906476702,16.12851906476702,0,0,0,0,0,0,0,0,0,0,52,54.51,45,51,8.333333333333334,1,1,0,0,9,2,5,1,750,210884.8022614299,84785.69586440298,148163.7309070243,145282.874918458,3429.050698834676 -11320,13948,25324,25323,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.491361176715282,8.567275826907055,0,1,2,60.79156378797555,-9,-9,-9,2019,9,0,36,0,1,0,0,13.4092902748251,13.4092902748251,0,0,0,0,0,0,0,0,0,0,45,51,52,54.51,8.333333333333334,1,1,0,0,2,2,5,1,750,210884.8022614299,84785.69586440298,148163.7309070243,145282.874918458,3429.050698834676 -11321,13949,25325,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.800974471410407,7.502749456343656,0,0,0,-1046.092481666153,0,3,3,2019,16,5,44,45,1,5,0,6.633602323038275,6.633602323038275,0,0,0,0,14.5,1,1,0,0,0,45.26,32.26,-9,-9,8.333333333333334,1,1,0,1,5,11,3,0,1159,168611.06220818,123887.8863144593,0,0,945.4578363005602 -11321,13950,25326,-9,25325,-9,1,1,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1025.021727652472,-9,2,-9,2019,19,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,30.49,50.86,-9,-9,3.333333333333333,1,1,1,1,0,11,2,0,712,-14519.849767292,0,0,0,968.8999347684403 -11322,13951,25327,25328,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,6,0,-86.6073591856036,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,28.95,54.9,54.53,3.333333333333333,1,1,0,0,2,9,2,1,338,1303811.137457862,88015.81348674705,482436.9227392237,0,3144.125046495935 -11322,13951,25328,25327,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.054360221957071,6.918185031293114,6,0,-10.13485951720062,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.620200465628659,7.409641355778456,54.9,54.53,32.09,28.95,8.333333333333334,1,1,0,0,7,9,2,1,338,1303811.137457862,88015.81348674705,482436.9227392237,0,3144.125046495935 -11323,13952,25329,-9,25330,25331,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.1186742828168,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,780.75,14632.61127287969,47893.21743928343,0,0,1912.346492940452 -11323,13952,25330,25331,-9,-9,1,0,48,0,2,0,3,3,-9,1,4,0,0,0,28,0,0,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,54,52,55,8,2,3,0,0,0,8,1,0,780.75,14632.61127287969,47893.21743928343,0,0,1912.346492940452 -11323,13952,25331,25330,-9,-9,1,1,48,0,2,0,2,2,-9,1,4,0,0,0,28,0,0,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,50,54,8,2,3,1,0,0,8,1,0,780.75,14632.61127287969,47893.21743928343,0,0,1912.346492940452 -11323,13952,25332,-9,25330,25331,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.617115831632,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,780.75,14632.61127287969,47893.21743928343,0,0,1912.346492940452 -11323,13953,25333,-9,25330,25331,1,1,23,0,2,0,2,2,-9,1,4,0,0,0,0,0,-771.8384287270804,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,1773,0,0,0,0,75.70210849449984 -11324,13954,25334,25335,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.754353108349615,7.974212394686618,5.611843422695129,35,-3,9.717362698213766,0,2,2,2019,17,5,31,27,1,5,0,7.405307208189083,7.405307208189083,0,0,0,0,0,0,0,0,2.146305900369141,6.075159315816645,44.49,61.79,36.12,41.51,5,1,1,0,0,11,9,5,1,1112,1373726.191736737,1073729.149979747,286540.7240592509,0,3135.569312781658 -11324,13954,25335,25334,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.538429764226493,8.3266196748555,35,3,-10.26469249674226,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,3.579827855080627,8.266978782519148,36.12,41.51,44.49,61.79,3.333333333333333,1,1,0,0,6,9,5,1,1112,1373726.191736737,1073729.149979747,286540.7240592509,0,3135.569312781658 -11325,13955,25336,25337,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.617640774797613,7.053717311135276,8,-2,110.2224912080264,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.08265428260853,6.998790000231892,52.39,43.31,46.08,57.2,8.333333333333334,1,1,0,0,0,11,2,1,513.5,636143.044475527,265196.7186138331,352317.1088991673,0,2444.003120880944 -11325,13955,25337,25336,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.220024845951835,5.124160546165954,8,2,-39.29566479261696,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.355335754172179,4.79690339975609,46.08,57.2,52.39,43.31,10,1,1,0,0,0,11,2,1,513.5,636143.044475527,265196.7186138331,352317.1088991673,0,2444.003120880944 -11326,13956,25338,25340,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,7.609130689011415,7.500848888748791,0,28,9,133.1749603065987,0,-9,-9,2019,9,0,50,50,1,1,0,5.208119222956846,5.208119222956846,0,0,0,0,0,1,1,0,0,0,54,53,51,54,8,2,3,0,1,4,6,2,0,577.6666666666666,1333158.645696251,1079549.866033693,327740.4318533831,0,1556.527083160223 -11326,13956,25339,-9,25340,25338,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1014.756703516597,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,6,2,0,577.6666666666666,1333158.645696251,1079549.866033693,327740.4318533831,0,1556.527083160223 -11326,13956,25340,25338,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,0,0,0,28,0,-46.933124487277,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,1.075067297074433,0,1,1,0,4.028235270398724,0,51,54,54,53,8,2,3,0,0,0,6,2,0,577.6666666666666,1333158.645696251,1079549.866033693,327740.4318533831,0,1556.527083160223 -11326,13957,25341,-9,25340,25338,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1055.934128444359,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,3.333333333333333,2,3,0,0,0,6,1,0,3543,-82074.2300464791,0,0,0,241.8308135633927 -11326,13958,25342,-9,25340,25338,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-950.0469684139977,1,3,1,2019,11,0,0,30,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,6,1,0,758,0,0,0,0,-463.9780047359795 -11327,13959,25343,25344,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.208998249312566,8.379287605465624,0,7,0,136.6983570277919,0,-9,-9,2019,9,0,40,70,1,1,0,12.31702882696869,12.31702882696869,0,0,0,0,0,1,1,0,0,0,53,55,50.28,51.35,8,2,3,0,0,1,4,3,1,210,171791.0430060595,163123.7531669961,97829.38126272401,0,1858.806395128205 -11327,13959,25344,25343,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,22,0,-29.6069341180279,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,53,55,1.666666666666667,2,3,0,0,1,4,3,1,210,171791.0430060595,163123.7531669961,97829.38126272401,0,1858.806395128205 -11327,13960,25345,-9,25344,25343,1,1,30,0,0,0,1,1,-9,0,3,7.870872625513355,8.060411776915435,0,0,0,-917.2124628523135,0,2,3,2019,12,0,41,35,1,0,1,6.702887769011398,6.702887769011398,0,0,0,0,0,1,1,0,0,0,43.65,58.28,-9,-9,6.666666666666667,2,3,0,0,2,4,4,1,261,-20054.83256410966,-7834.625005667469,0,0,1067.293287896386 -11327,13961,25346,-9,25344,25343,1,1,24,0,0,0,1,1,-9,0,3,8.407855417184026,8.282736359472507,0,0,0,-1071.581665431316,0,2,3,2019,11,0,40,44,1,0,1,8.058595448596082,8.058595448596082,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,2,3,0,0,3,4,4,1,256,214262.199696871,-14108.8054944999,0,0,1751.393643929203 -11328,13962,25347,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.634244766581041,8.416061471446511,0,0,0,-894.8196646635713,0,3,3,2019,8,0,35,39,1,0,0,15.55436627628045,15.55436627628045,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,978,81141.62059920495,0,0,0,1981.103315106197 -11329,13963,25348,25349,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.34458551058176,7.303214627618284,43,1,-4.987528170557222,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.385310977040072,52,48,49,47,7,1,1,0,1,0,8,2,0,360,752696.2792426122,288796.7232387876,210503.2034729558,0,2058.560894096341 -11329,13963,25349,25348,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,43,-1,-102.3844351663258,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,49,47,52,48,7,1,1,0,1,0,8,2,0,360,752696.2792426122,288796.7232387876,210503.2034729558,0,2058.560894096341 -11330,13964,25350,25351,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.775897781280423,7.844289628944112,0,11,0,-34.61489163413712,0,3,3,2019,15,3,35,35,1,3,0,8.780155959794682,8.780155959794682,0,0,0,0,0,1,1,0,0,0,42.85,56.07,47.69,35.39,3.333333333333333,1,1,0,0,9,12,3,0,631,127576.6869486577,44947.47703168771,0,0,2240.582934936012 -11330,13964,25351,25350,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,11,0,-10.14200352390407,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.69,35.39,42.85,56.07,8.333333333333334,1,1,0,0,1,12,3,0,631,127576.6869486577,44947.47703168771,0,0,2240.582934936012 -11331,13965,25352,25354,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,0,0,0,11,3,-99.62672576028439,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,51.41,56.15,8.333333333333334,1,1,0,0,0,2,3,1,909.3333333333334,41388.36984016264,-23031.01957967688,197087.3216013248,109747.3065976873,1964.420900103428 -11331,13965,25353,-9,25352,25354,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.12044915268,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,909.3333333333334,41388.36984016264,-23031.01957967688,197087.3216013248,109747.3065976873,1964.420900103428 -11331,13965,25354,25352,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.268182952821135,8.255069224189288,0,11,-3,9.403406886782538,0,3,3,2019,9,0,40,40,1,0,0,11.58836137823253,11.58836137823253,0,0,0,0,0,1,0,1,0,0,51.41,56.15,54.79,55.86,6.666666666666667,1,1,0,0,12,2,3,1,909.3333333333334,41388.36984016264,-23031.01957967688,197087.3216013248,109747.3065976873,1964.420900103428 -11332,13966,25355,25356,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-32.59624422281175,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.588735010120369,0,47.32,47.47,45.22,53.92,10,1,1,0,0,0,4,2,1,711,888821.243825854,115401.5830850418,323464.8893669972,0,2030.291874387182 -11332,13966,25356,25355,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,6.931265635771529,7.125821437512933,8,2,-216.3856610833231,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.190293829022875,7.155345727850292,45.22,53.92,47.32,47.47,10,1,1,0,0,0,4,2,1,711,888821.243825854,115401.5830850418,323464.8893669972,0,2030.291874387182 -11333,13967,25357,25358,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,54,0,0,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.519163917524757,0,51,49.37,52,47,6.666666666666667,1,1,0,0,0,2,1,1,705,176441.9756623655,20294.93848412085,130544.3199265067,0,2352.820548351417 -11333,13967,25358,25357,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,10,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.827692161127066,0,52,47,51,49.37,7,1,1,0,0,0,2,1,1,705,176441.9756623655,20294.93848412085,130544.3199265067,0,2352.820548351417 -11334,13968,25359,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.906020570495807,6.803637423487229,0,0,-1012.882571323863,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.009525692858206,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,740,487987.0261871348,275508.2788943339,198544.5366319152,0,1692.350752550688 -11335,13969,25360,25361,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,8.460099599917646,8.527021510400722,0,7,2,-10.32031884165504,0,3,3,2019,12,0,50,40,1,0,0,12.83660475088388,12.83660475088388,0,0,0,0,0,1,1,0,0,0,34.76,35.75,54.21,47.1,3.333333333333333,1,1,0,0,7,13,4,0,797,809388.0052749449,553349.8105742536,180345.0514530736,0,2843.008598177583 -11335,13969,25361,25360,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.260780544670201,7.274232247708556,0,7,-2,38.74957346232645,0,3,3,2019,11,1,22,22,1,1,0,7.247336787626196,7.247336787626196,0,0,0,0,0,1,1,0,.5341442920171531,0,54.21,47.1,34.76,35.75,5,1,1,0,0,7,13,4,0,797,809388.0052749449,553349.8105742536,180345.0514530736,0,2843.008598177583 -11335,13970,25362,-9,25361,25360,1,0,31,0,0,0,1,1,-9,0,3,8.077194965042757,8.541769781119713,0,0,0,-1046.531031693864,0,2,2,2019,9,0,36,36,1,0,1,16.43344719024871,16.43344719024871,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,13,4,0,1547,597942.2480976204,60151.92886847931,55163.78820496937,47035.99925862964,1670.922730067426 -11335,13971,25363,-9,25361,25360,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-900.8679184108657,0,2,2,2019,16,5,0,45,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,30.49,56.93,-9,-9,10,1,1,1,0,0,13,1,0,2031,206049.3466422163,0,0,0,-236.132826222821 -11336,13972,25364,25365,-9,-9,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,1,-1,96.52376242849431,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,49.97,53.99,7,1,1,0,0,0,10,3,0,381,-15581.67987705472,0,0,0,850.2981504163391 -11336,13972,25365,25364,-9,-9,1,1,19,0,0,0,2,2,1,0,3,7.725418902319598,7.51610637776569,0,1,1,55.65322822695699,-9,-9,-9,2019,3,0,42,0,1,0,0,6.599888782394613,6.599888782394613,0,0,0,0,0,0,0,0,0,0,49.97,53.99,46,59,6.666666666666667,1,1,0,0,2,10,3,0,381,-15581.67987705472,0,0,0,850.2981504163391 -11337,13973,25366,25367,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.252353689595175,8.166889962620763,0,4,0,140.0708812002305,0,-9,-9,2019,6,0,40,35,1,0,0,10.65441286041678,10.65441286041678,0,0,0,0,0,1,1,0,0,0,57.32,47.78,45.84,50.44,8.333333333333334,1,1,0,0,5,13,4,1,680,66406.75074724223,44111.24968393007,126997.5161748963,80292.22829271416,3158.650070083661 -11337,13973,25367,25366,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.882278752465247,8.062723260944985,0,4,0,-91.42824902301855,0,-9,-9,2019,9,1,15,0,1,1,0,18.80467249475193,18.80467249475193,0,0,0,0,0,1,1,0,0,0,45.84,50.44,57.32,47.78,6.666666666666667,1,1,0,0,1,13,4,1,680,66406.75074724223,44111.24968393007,126997.5161748963,80292.22829271416,3158.650070083661 -11338,13974,25368,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.764708788184579,6.894200978655484,0,0,-964.4870463681768,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.632308790641368,6.820129920378929,29.23,45.05,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,113,99106.29085498907,123689.8878476395,132240.7526948354,0,431.1313839753135 -11339,13975,25369,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.882546912998591,5.95564392555228,0,0,-1005.484231803207,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.437988537112491,5.814432364826314,58.22,40.76,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,1547,206693.5890360179,-28212.81322720132,237165.0727737442,0,545.2300770489745 -11340,13976,25370,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,1,7.65433578972933,7.729258382869654,5.198666655706034,0,0,-1052.390026446125,0,2,2,2019,21,9,16,15,1,9,0,15.71245599315344,15.71245599315344,0,0,0,0,0,1,1,0,5.233783912076453,0,6,53.39,-9,-9,1.666666666666667,1,1,0,0,2,9,3,1,1213,330683.1234085063,0,325322.9739320162,80324.49505440962,695.2847454546138 -11341,13977,25371,25372,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,4.496934733115051,4.678163234549412,61,-1,54.25220527366135,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,7.027532156574127,4.212720072034854,52,45,54.57,27.11,8,1,1,0,0,0,5,2,1,351,112655.0659166509,107834.9416378005,0,0,2529.011358343668 -11341,13977,25372,25371,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.756619059734307,7.261039445058954,61,1,-5.772884819894791,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,5.48,1,1,0,6.306342108002742,7.433520857883591,54.57,27.11,52,45,6.666666666666667,1,1,0,0,0,5,2,1,351,112655.0659166509,107834.9416378005,0,0,2529.011358343668 -11341,13978,25373,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.093000382370453,5.66936748080203,0,0,-1046.274752961224,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.266083396536182,53,46,-9,-9,7,1,1,0,0,0,5,2,1,1789,395565.9095653404,86583.51453900451,112691.5613006426,0,1020.85703321077 -11342,13979,25374,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,9.144440570351975,9.446361123513276,8.130130299266085,0,0,-1005.415343996492,0,3,3,2019,11,0,27,32,1,0,0,40.89400804561414,40.89400804561414,0,0,0,0,0,0,0,0,7.040591959945803,8.136820252130715,37.31,47.62,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,976,392036.1478463778,14624.82625935393,302806.3590754494,-8734.115226498849,4738.514898408495 -11343,13980,25375,-9,25377,25376,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.8385740211113,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,989,351821.1912985703,261099.6836369093,165220.1319962697,68449.56456106802,3120.59895211866 -11343,13980,25376,25377,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,7.423254523796144,7.43669797584879,0,8,9,39.24326744170273,0,2,2,2019,6,0,40,40,1,0,0,4.078590870434629,4.078590870434629,0,0,0,0,0,1,1,0,1.735554046470574,0,57.33,53.46,47.17,36.23,8.333333333333334,1,1,0,0,9,12,3,1,989,351821.1912985703,261099.6836369093,165220.1319962697,68449.56456106802,3120.59895211866 -11343,13980,25377,25376,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.176838040533342,8.268767478982166,0,8,0,-112.4092531905026,0,2,2,2019,13,2,38,38,1,2,0,12.26048889774748,12.26048889774748,0,0,0,0,0,1,1,0,7.922286827596619,0,47.17,36.23,57.33,53.46,5,1,1,0,0,9,12,3,1,989,351821.1912985703,261099.6836369093,165220.1319962697,68449.56456106802,3120.59895211866 -11343,13981,25378,-9,25377,25376,1,1,18,0,2,0,2,2,1,0,5,0,0,0,0,0,-937.5901978151089,-9,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,61.98,49.96,-9,-9,6.666666666666667,1,1,1,0,0,12,2,1,340,-41861.01905779223,0,0,0,0 -11344,13982,25379,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.22436897669709,8.103820976453498,0,0,0,-965.4685741574027,0,3,-9,2019,6,0,42,0,1,0,0,10.93518534514256,10.93518534514256,0,0,0,0,0,0,0,0,0,0,62.57,40.11,-9,-9,5,1,1,0,0,5,9,4,0,73,227122.8976077998,0,0,0,1494.136940927095 -11345,13983,25380,-9,25381,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.0141216184027,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,708,16176.20727438795,-18079.69231122296,0,0,1296.847070633682 -11345,13983,25381,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.037641718669652,7.928605965391792,0,0,0,-964.4664075400124,0,2,2,2019,1,0,30,34,1,0,0,10.34971648002841,10.34971648002841,0,0,0,0,0,1,1,0,0,0,67.97,41.6,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,708,16176.20727438795,-18079.69231122296,0,0,1296.847070633682 -11346,13984,25382,25383,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.48886034434031,9.364201550029028,0,19,1,2.578049964329689,0,2,1,2019,9,0,40,45,1,0,0,38.40056494599362,38.40056494599362,0,0,0,0,0,0,0,0,3.386355240041558,0,52.82,53.97,47.38,52.55,8.333333333333334,1,1,0,0,8,9,5,1,854.3333333333334,1983324.17601848,901790.6460490342,606363.0100637384,29765.51411606638,6048.536980115368 -11346,13984,25383,25382,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.863479818170169,7.8849486283632,0,20,-1,-80.16213926780701,0,3,3,2019,11,1,40,40,1,1,0,7.972852985130656,7.972852985130656,0,0,0,0,0,0,0,0,7.637857231334076,0,47.38,52.55,52.82,53.97,6.666666666666667,2,3,0,0,12,9,5,1,854.3333333333334,1983324.17601848,901790.6460490342,606363.0100637384,29765.51411606638,6048.536980115368 -11346,13984,25384,-9,25383,25382,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1080.297398649363,-9,2,2,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.3493728918830572,0,42.58,58.53,-9,-9,6.666666666666667,4,2,0,0,0,9,5,1,854.3333333333334,1983324.17601848,901790.6460490342,606363.0100637384,29765.51411606638,6048.536980115368 -11347,13985,25385,25386,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.723655037246008,9.523706141213637,0,6,-1,-192.4137113481895,0,2,2,2019,10,0,50,50,1,0,0,26.71160838651353,26.71160838651353,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.31,41.83,8.333333333333334,1,1,0,0,7,9,5,1,1018.333333333333,781909.9826697997,182973.0441155592,640704.2778360894,57045.45696753034,6312.235319341239 -11347,13985,25386,25385,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.387182255565037,8.43483152003596,0,6,1,52.63006293246559,0,-9,-9,2019,11,0,45,50,1,0,0,12.44599682286533,12.44599682286533,0,0,0,0,0,0,0,0,4.322662029441752,0,55.31,41.83,54.37,54.8,10,1,1,0,0,5,9,5,1,1018.333333333333,781909.9826697997,182973.0441155592,640704.2778360894,57045.45696753034,6312.235319341239 -11347,13985,25387,-9,25386,25385,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.51138836053,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1018.333333333333,781909.9826697997,182973.0441155592,640704.2778360894,57045.45696753034,6312.235319341239 -11348,13986,25388,-9,25389,25391,1,1,20,1,1,0,2,2,1,0,4,0,0,0,0,0,-850.6605750583888,-9,1,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,1,1,0,1,2,8,1,1,687,0,0,0,0,-478.0553092340217 -11348,13987,25389,25391,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,8.792036809458068,8.689559281090663,0,3,0,126.056058222204,0,2,3,2019,20,8,30,45,1,8,0,23.89703877042189,23.89703877042189,0,0,0,0,0,1,1,0,0,0,24.27,37.82,40.48,60.05,3.333333333333333,1,1,0,0,9,8,5,1,567.6666666666666,786354.3652978955,236210.2507914125,722210.6193244834,256661.44891871,5748.12089721318 -11348,13987,25390,-9,25389,25391,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.010247819128,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,567.6666666666666,786354.3652978955,236210.2507914125,722210.6193244834,256661.44891871,5748.12089721318 -11348,13987,25391,25389,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,9.265669929776784,9.394285921242092,0,3,0,101.763069470108,0,-9,-9,2019,13,1,43,50,1,1,0,31.63601691254485,31.63601691254485,0,0,0,0,0,1,1,0,0,0,40.48,60.05,24.27,37.82,6.666666666666667,1,1,0,0,12,8,5,1,567.6666666666666,786354.3652978955,236210.2507914125,722210.6193244834,256661.44891871,5748.12089721318 -11349,13988,25392,25393,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,7.804053400358656,7.865602946846069,0,8,14,-42.80733111244948,0,-9,-9,2019,21,9,40,50,1,9,0,5.994803177056445,5.994803177056445,0,0,0,0,0,1,1,0,7.019878953797035,0,40.16,59.89,51.73,58.82,5,1,1,0,0,11,7,2,1,500,1741005.43310037,724420.2792550318,397718.1898191794,0,2290.538985951702 -11349,13988,25393,25392,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,8,-14,-119.7114421570647,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.410104844447654,0,51.73,58.82,40.16,59.89,6.666666666666667,1,1,0,0,1,7,2,1,500,1741005.43310037,724420.2792550318,397718.1898191794,0,2290.538985951702 -11349,13989,25394,-9,25393,25392,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-961.1468640846916,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,1614,-211526.9327496924,0,0,0,0 -11350,13990,25395,25397,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.383540206388263,8.080546379064197,0,18,-4,-28.38738455713415,0,2,1,2019,25,10,40,40,1,10,0,9.798069336741611,9.798069336741611,0,0,0,0,0,1,1,0,0,0,16.08,63.04,44.31,39.26,3.333333333333333,1,1,0,0,7,1,5,0,1630.333333333333,1052410.36939664,1006725.660077432,216544.8673740726,68770.85260114445,3746.775484335447 -11350,13990,25396,-9,25397,25395,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.1714988615478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,0,1630.333333333333,1052410.36939664,1006725.660077432,216544.8673740726,68770.85260114445,3746.775484335447 -11350,13990,25397,25395,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.841957255258057,8.962188319729542,0,9,4,-60.82155007996509,0,1,1,2019,20,8,55,52,1,8,0,12.43776573430175,12.43776573430175,0,0,0,0,2,1,1,0,0,0,44.31,39.26,16.08,63.04,6.666666666666667,1,1,0,0,9,1,5,0,1630.333333333333,1052410.36939664,1006725.660077432,216544.8673740726,68770.85260114445,3746.775484335447 -11351,13991,25398,-9,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,7.965422748915195,7.846899314625904,0,0,0,-1094.288954348895,0,3,2,2019,9,1,35,35,1,1,0,9.090557294856463,9.090557294856463,0,0,0,0,0,1,1,0,0,0,50.65,53.71,-9,-9,3.333333333333333,1,1,0,0,5,2,3,0,610.5,-205683.3226580183,66469.63791075331,0,0,1629.350180720684 -11351,13991,25399,-9,25398,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-906.5937885260182,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,3,0,610.5,-205683.3226580183,66469.63791075331,0,0,1629.350180720684 -11352,13992,25400,25401,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,0,0,5,3,0,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,46.43,47.35,8.333333333333334,2,3,0,0,4,8,1,0,854.5,44573.37218782773,0,0,0,1976.840436215002 -11352,13992,25401,25400,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,5,-3,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.43,47.35,54.61,51.04,8.333333333333334,2,3,0,0,0,8,1,0,854.5,44573.37218782773,0,0,0,1976.840436215002 -11353,13993,25402,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.389843219657499,7.823516673203589,0,0,-1028.949225245068,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.763709968075137,7.674111226154208,52.01,48.98,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,518,177521.9452337323,50438.80635513262,0,0,2046.741729790627 -11354,13994,25403,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.095122748877784,7.202605187673088,0,0,-1048.276630736831,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.797111857281584,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,353,371109.9318688032,143396.7448795717,116770.1495687776,0,1345.311937355408 -11355,13995,25404,25405,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,8,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.741342302044496,0,53,46,51,46,8,1,1,0,0,0,9,1,1,874.5,926649.6175891575,745235.137166434,73384.87218875287,0,1620.82928049206 -11355,13995,25405,25404,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,54,-4,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,25.6930075909228,81.38160651929387,247.908390552329,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,1,1,874.5,926649.6175891575,745235.137166434,73384.87218875287,0,1620.82928049206 -11356,13996,25406,-9,25407,25409,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-825.2848757371244,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,908.25,269729.59081343,15145.82476581307,213652.4747378939,25833.42268235135,4889.267985989763 -11356,13996,25407,25409,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,8.292033999873022,8.534693836271748,0,6,-7,-47.66811223225034,0,2,-9,2019,10,0,44,62,1,0,0,11.8163112893629,11.8163112893629,0,0,0,0,0,1,1,0,0,0,52.4,52.91,25.59,66.34,8.333333333333334,1,1,0,0,6,11,4,1,908.25,269729.59081343,15145.82476581307,213652.4747378939,25833.42268235135,4889.267985989763 -11356,13996,25408,-9,25407,25409,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.187233296597,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,908.25,269729.59081343,15145.82476581307,213652.4747378939,25833.42268235135,4889.267985989763 -11356,13996,25409,25407,-9,-9,1,1,40,0,4,0,2,2,-9,0,3,8.233135568772063,8.310029645098929,0,6,7,69.39355482193652,0,2,2,2019,34,12,37,37,1,12,0,11.7081408390447,11.7081408390447,0,0,0,0,0,1,1,0,7.21488108153479,0,25.59,66.34,52.4,52.91,6.666666666666667,1,1,0,0,7,11,4,1,908.25,269729.59081343,15145.82476581307,213652.4747378939,25833.42268235135,4889.267985989763 -11357,13997,25410,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,6.609848227219206,6.432241366790421,0,0,-987.0283652122095,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.290204983967401,7.17676120871595,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,2240,1067634.496148177,590565.9765812157,271394.5274311008,0,1101.244276987568 -11357,13998,25411,-9,-9,25410,1,1,42,0,0,0,2,2,-9,0,4,8.119691863210848,8.341036526624427,0,0,0,-1033.045286300332,0,2,2,2019,16,3,45,44,1,3,0,12.14036266428091,12.14036266428091,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,7,4,1,387,532245.6029813107,397389.4982815517,180162.5478447427,55534.86228410986,1188.580996939382 -11358,13999,25412,25413,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,8,-6,42.47555157115126,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,49.81,58.56,46.45,8.333333333333334,1,1,0,0,0,13,2,1,1349,547696.6627083975,0,508002.9486578763,0,2148.036529890875 -11358,13999,25413,25412,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.456668758899188,3.465120856459865,8,6,18.04372622843155,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.823400575888228,58.56,46.45,42.95,49.81,8.333333333333334,1,1,0,0,3,13,2,1,1349,547696.6627083975,0,508002.9486578763,0,2148.036529890875 -11358,14000,25414,-9,25412,25413,1,1,38,0,0,0,3,3,-9,1,4,0,0,0,0,0,-990.8639489095351,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.66,55.68,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,143,0,0,0,0,386.0298041802941 -11359,14001,25415,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1078.948803298904,0,2,3,2019,10,2,0,45,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,52.66,36.05,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,428,432917.526771254,0,359950.6774257041,0,-543.3065903079339 -11360,14002,25416,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.143623663588492,6.934137086954069,0,0,-1015.069437357031,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.749473881742935,52.2,48.95,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,358,484831.6585669369,7248.258360147509,487092.4952105369,0,1496.662138859855 -11361,14003,25417,-9,25420,25418,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.4815452123373,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,4,1,945,486708.1296050841,274010.5184569267,586122.149083799,320937.8469349793,3962.768968666008 -11361,14003,25418,25420,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.579133577182464,8.612045892347647,0,10,-7,57.64708670443826,0,2,1,2019,15,5,56,38,1,5,0,11.63849231886591,11.63849231886591,0,0,0,0,0,1,1,0,0,0,40.9,53.97,54.97,47.63,8.333333333333334,1,1,0,0,11,9,4,1,945,486708.1296050841,274010.5184569267,586122.149083799,320937.8469349793,3962.768968666008 -11361,14003,25419,-9,25420,25418,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.01443114198,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,945,486708.1296050841,274010.5184569267,586122.149083799,320937.8469349793,3962.768968666008 -11361,14003,25420,25418,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.515078139930383,8.152451891558632,0,10,7,41.11320412789316,0,2,2,2019,8,0,25,35,1,0,0,21.04281584387338,21.04281584387338,0,0,0,0,0,1,1,0,0,0,54.97,47.63,40.9,53.97,8.333333333333334,1,1,0,0,11,9,4,1,945,486708.1296050841,274010.5184569267,586122.149083799,320937.8469349793,3962.768968666008 -11362,14004,25421,25422,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-36.51785807632185,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,.6227608229630111,0,1,1,0,3.956684993135144,0,52.4,52.91,49.46,56.91,8.333333333333334,1,1,0,0,0,6,2,1,2152,488050.7729202161,171137.2998259959,62247.26162375446,0,1747.585870095646 -11362,14004,25422,25421,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,7.46170968518008,7.246602777307501,10,2,25.57773846018745,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.985521944751668,49.46,56.91,52.4,52.91,8.333333333333334,1,1,0,0,0,6,2,1,2152,488050.7729202161,171137.2998259959,62247.26162375446,0,1747.585870095646 -11363,14005,25423,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.632149779730384,8.093064554449777,0,0,0,-916.4921608137838,-9,3,-9,2019,8,0,40,0,1,0,0,5.851515181829511,5.851515181829511,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,3,5,3,0,3081,72415.26355508858,0,0,0,548.3846603300517 -11364,14006,25424,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-854.4094432142415,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,2040,-53006.65376916832,0,56315.86727202485,0,-15.41883014985348 -11364,14007,25425,-9,25424,-9,1,0,55,0,0,0,2,2,-9,0,4,7.767964219242321,7.807886271977024,0,0,0,-1091.063847626549,0,3,3,2019,14,3,29,30,1,3,0,8.077824081259914,8.077824081259914,0,0,0,0,0,1,1,0,0,0,42.19,58.81,-9,-9,3.333333333333333,1,1,0,0,8,13,3,1,1341,343920.406656484,4944.86773020518,37415.38467601718,20186.2226936644,651.2926583493586 -11365,14008,25426,25427,-9,-9,1,0,32,2,2,0,2,2,-9,0,4,7.891482181468541,7.619823010208628,0,4,-3,-9.531858605359188,0,-9,-9,2019,6,0,20,20,1,0,0,11.14451644407177,11.14451644407177,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,0,282.75,226419.3199975535,57222.38201281993,514220.9316383764,343370.1031385558,3693.009109142099 -11365,14008,25427,25426,-9,-9,1,1,35,2,2,0,1,1,-9,0,4,8.809734576017966,9.11775888611243,0,4,3,-41.2224386061609,0,-9,-9,2019,6,1,46,42,1,1,0,17.58041148334117,17.58041148334117,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,3,4,0,0,8,9,5,0,282.75,226419.3199975535,57222.38201281993,514220.9316383764,343370.1031385558,3693.009109142099 -11365,14008,25428,-9,25426,25427,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-975.8542012797816,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,9,5,0,282.75,226419.3199975535,57222.38201281993,514220.9316383764,343370.1031385558,3693.009109142099 -11365,14008,25429,-9,25426,25427,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.549332786501,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,9,5,0,282.75,226419.3199975535,57222.38201281993,514220.9316383764,343370.1031385558,3693.009109142099 -11366,14009,25430,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.951226041665447,6.981031826305625,0,0,-1097.579131371589,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.756925347012692,61.2,31.05,-9,-9,10,1,1,0,0,0,12,2,1,251,387016.999771835,149611.4250352184,161081.4254661864,0,652.6349182016454 -11367,14010,25431,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.506592529461825,5.156951875371991,0,0,-910.1077809464725,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.842656120197835,5.177655748295935,41.62,20.8,-9,-9,5,1,1,0,0,0,7,2,1,1236,27462.5174201989,21962.60276775217,0,0,1107.798444980352 -11368,14011,25432,25433,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,0,0,52,4,0,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,3.083463707181185,126.1723947239978,19.98700251557757,0,1,1,0,0,0,16.04,23.99,18.6,31,0,1,1,0,1,0,4,1,0,785.5,207080.8951878549,0,121038.4510194974,0,1739.621243585769 -11368,14011,25433,25432,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,52,-4,0,0,2,1,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,0,18.6,31,16.04,23.99,0,1,1,0,1,0,4,1,0,785.5,207080.8951878549,0,121038.4510194974,0,1739.621243585769 -11369,14012,25434,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.807768209327545,6.593252939223714,0,0,-1031.006349594969,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.787907731772268,6.691222384535953,60.2,39.82,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,561,438993.3206681742,215357.7652107062,143328.904561599,0,1648.992545849657 -11370,14013,25435,25436,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.424993486224637,6.909050284010918,40,5,0,0,-9,2,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,2.940589081829248,6.819662713928897,60.69,53.18,62.39,56.71,10,1,1,0,0,7,2,3,1,648.5,673489.4360325378,506028.1595929519,156379.454227317,0,1372.557203679477 -11370,14013,25436,25435,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,0,6.938039126666692,7.039764132263928,40,-5,0,0,-9,-9,2019,9,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,1.676618816151559,7.114431547189202,62.39,56.71,60.69,53.18,10,1,1,0,0,7,2,3,1,648.5,673489.4360325378,506028.1595929519,156379.454227317,0,1372.557203679477 -11371,14014,25437,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1011.060476163843,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5815439826104752,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,964,83286.5194279861,80761.49130101528,133932.0285540589,0,1315.380427733393 -11372,14015,25438,25439,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.252821770360062,7.584569391680627,46,-1,56.9689583843986,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.557874826877319,7.996879133991882,54.37,54.8,66.2,41.05,8.333333333333334,1,1,0,0,4,9,3,1,862.5,1290639.205638852,763751.5558007821,493188.9025411002,0,4785.744195966181 -11372,14015,25439,25438,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,6.808267451499097,6.88309833707291,46,1,-23.68603336675816,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.371004066996813,6.902996929389381,66.2,41.05,54.37,54.8,10,1,1,0,0,7,9,3,1,862.5,1290639.205638852,763751.5558007821,493188.9025411002,0,4785.744195966181 -11373,14016,25440,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.431253197895204,8.579665298846191,0,0,0,-1036.915135127314,0,2,2,2019,8,0,37,37,1,0,0,18.94618125079477,18.94618125079477,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,501,300079.9228421797,296477.7373350646,155996.0096474716,65855.91147544247,2275.154211459791 -11374,14017,25441,25443,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,0,0,0,3,3,2.974715666984844,0,3,2,2019,6,0,0,60,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,59.53,56.44,6.666666666666667,2,3,1,0,8,2,3,1,280,-34604.77534465065,-27539.92362088946,0,0,1377.619135566036 -11374,14017,25442,-9,25441,25443,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.491168569492,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,280,-34604.77534465065,-27539.92362088946,0,0,1377.619135566036 -11374,14017,25443,25441,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.021693135987171,8.077122684737279,0,3,-3,78.59268361189024,0,-9,-9,2019,7,0,35,36,1,0,0,10.34870750724512,10.34870750724512,0,0,0,0,0,1,1,0,0,0,59.53,56.44,62.49,55.09,5,1,1,0,0,2,2,3,1,280,-34604.77534465065,-27539.92362088946,0,0,1377.619135566036 -11375,14018,25444,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.897207176927646,9.028201514238878,0,0,0,-935.2174404917815,0,2,1,2019,9,0,70,60,1,0,0,13.93039367878779,13.93039367878779,0,0,0,0,2,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,2052,377902.1441095592,311293.3125305892,0,0,3237.549522278151 -11376,14019,25445,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-943.3688326121609,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,39,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,550,140144.0607318386,0,0,0,560.4176274360087 -11376,14020,25446,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.4984249533982,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,1,1,0,13,1,1,430,8727.77786314892,0,0,0,27.9722527951281 -11377,14021,25447,25448,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,4.021310579560429,3.820797256343988,6,24,-27.93648158390323,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.297482009579888,4.12304408219085,49.06,37.98,38.75,49.78,3.333333333333333,1,1,0,0,0,8,5,1,1410,1268927.158537139,768870.5217043139,484360.9704267473,0,4046.342378478698 -11377,14021,25448,25447,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,9.314537765610062,9.018036482515553,0,6,-24,21.5910307362153,0,2,1,2019,10,0,43,55,1,0,0,29.43673514220902,29.43673514220902,0,0,0,0,0,1,1,0,0,0,38.75,49.78,49.06,37.98,3.333333333333333,1,1,0,0,9,8,5,1,1410,1268927.158537139,768870.5217043139,484360.9704267473,0,4046.342378478698 -11378,14022,25449,25450,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,14,-11,-29.29757260590488,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.07,26.99,8.333333333333334,1,1,0,0,1,10,2,1,1210.5,702160.347215479,127363.2760132171,530139.5783291053,0,2523.275558066863 -11378,14022,25450,25449,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.123202256472053,7.122017672505104,20,11,-81.59272882996424,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.172433859467153,4.569862530967251,59.07,26.99,54.96,53.17,8.333333333333334,1,1,0,0,2,10,2,1,1210.5,702160.347215479,127363.2760132171,530139.5783291053,0,2523.275558066863 -11379,14023,25451,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1140.015292399643,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.191511973168485,0,1,1,0,0,0,42.7,38.44,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,189,147225.9951263089,0,0,0,1380.298521646026 -11380,14024,25452,25453,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.651450304700814,8.840226641742493,0,31,-5,124.6073577356296,0,3,3,2019,10,0,39,30,1,0,0,18.79285805066588,18.79285805066588,0,0,0,0,2,0,0,0,4.138273450229747,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,606.5,549276.8738106808,206343.1216496382,375821.4075880043,159573.4727230222,3279.195245607472 -11380,14024,25453,25452,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.904136366129854,7.274094446811504,6.645582220058507,31,5,-79.19404193866727,0,3,3,2019,7,0,35,35,1,0,0,2.479017228409572,2.479017228409572,0,0,0,0,7,0,0,0,6.870035099686697,0,57.16,56.15,51.73,58.82,10,1,1,0,0,5,2,5,1,606.5,549276.8738106808,206343.1216496382,375821.4075880043,159573.4727230222,3279.195245607472 -11381,14025,25454,-9,25455,25456,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.661137991318,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,1,636.25,-137056.007674914,0,85594.43478613137,82940.17723620699,699.7160143242725 -11381,14025,25455,25456,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,0,0,9,2,-197.6975635944833,0,1,2,2019,14,2,0,24,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,58.88,51.73,58.82,8.333333333333334,1,1,0,0,10,4,2,1,636.25,-137056.007674914,0,85594.43478613137,82940.17723620699,699.7160143242725 -11381,14025,25456,25455,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,7.666842497970525,7.542501972297135,0,9,-2,-50.14955401723407,0,2,2,2019,7,0,55,35,1,0,0,3.620561106863126,3.620561106863126,0,0,0,0,0,1,1,0,0,0,51.73,58.82,39.33,58.88,8.333333333333334,1,1,0,0,8,4,2,1,636.25,-137056.007674914,0,85594.43478613137,82940.17723620699,699.7160143242725 -11381,14025,25457,-9,25455,25456,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.6190766296975,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,2,1,636.25,-137056.007674914,0,85594.43478613137,82940.17723620699,699.7160143242725 -11382,14026,25458,25459,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,0,0,0,1,1,57.27650504777642,0,2,2,2019,13,0,0,37,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,55.19,54.26,8.333333333333334,1,1,1,0,7,10,3,0,2047.5,-182355.2741096461,37793.42514600123,0,0,1142.479376416235 -11382,14026,25459,25458,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.785964385050351,7.767436719495682,0,1,-1,-107.8959755937532,-9,-9,-9,2019,6,0,40,0,1,0,0,6.590541352180874,6.590541352180874,0,0,0,0,0,0,0,0,0,0,55.19,54.26,52,54.51,8.333333333333334,1,1,0,0,1,10,3,0,2047.5,-182355.2741096461,37793.42514600123,0,0,1142.479376416235 -11383,14027,25460,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.801810180430133,9.009218090366348,0,0,0,-981.7186898818841,0,3,3,2019,11,0,40,45,1,0,0,15.27739311999044,15.27739311999044,0,0,0,0,0,1,1,0,1.355330392511549,0,54.9,35.37,-9,-9,3.333333333333333,1,1,0,0,11,6,5,1,941,121140.7586333131,81406.99558731806,0,0,1820.504244411002 -11384,14028,25461,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,9.119342328651447,9.018026421744979,0,0,-911.46202474084,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,5.473495110695692,9.016250909761739,38.46,57.93,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,313,1202773.306543502,748409.1581542381,148490.3251999096,0,3517.654428674326 -11385,14029,25462,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,5.237658668273744,5.611582833350777,0,10,-6,-76.37133017820162,0,2,2,2019,13,2,15,0,1,2,0,1.80350357496667,1.80350357496667,0,0,0,0,7,0,0,0,0,0,21.77,57.99,50.68,52.42,6.666666666666667,1,1,0,0,0,7,4,1,424,98763.46220688269,0,0,0,-14.66610387906231 -11385,14030,25463,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.180054190530086,8.462074477119696,0,10,6,-53.02739329891634,0,3,2,2019,11,2,40,40,1,2,0,11.48271963309413,11.48271963309413,0,0,0,0,0,0,0,0,2.76879750453764,0,50.68,52.42,21.77,57.99,5,1,1,0,0,13,7,4,1,1074,150254.6896325147,-37489.79959387624,0,0,1677.503024842375 -11386,14031,25464,25465,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,0,0,0,27,-1,-35.30585074296197,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.97101961660237,0,57.06,57.76,57.16,56.15,10,1,1,1,0,11,6,5,1,731,2002269.284649945,1393541.726385047,693888.168310651,178653.4081214932,5904.458467193047 -11386,14031,25465,25464,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.424404770538002,9.375197642026194,0,27,1,-1.343232376673459,0,2,2,2019,10,0,45,41,1,0,0,42.59271773267763,42.59271773267763,0,0,0,1.098272072565759,0,0,0,0,6.740387763051207,0,57.16,56.15,57.06,57.76,10,1,1,0,0,10,6,5,1,731,2002269.284649945,1393541.726385047,693888.168310651,178653.4081214932,5904.458467193047 -11386,14031,25466,-9,25464,25465,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.081768357722,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,731,2002269.284649945,1393541.726385047,693888.168310651,178653.4081214932,5904.458467193047 -11387,14032,25467,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,5,6.785947641207235,7.184008015201718,0,0,0,-1020.302319375616,0,-9,-9,2019,7,0,16,16,1,0,0,7.364405814095182,7.364405814095182,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,825,-90968.74918921984,0,0,0,2086.918014715985 -11387,14032,25468,-9,25467,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.2694133352671,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,825,-90968.74918921984,0,0,0,2086.918014715985 -11388,14033,25469,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.696407999859715,8.100902164556839,0,0,0,-1067.948499998473,0,2,3,2019,12,1,33,33,1,1,0,7.488926379207088,7.488926379207088,0,0,0,0,0,1,1,0,0,0,25.29,56.74,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,505,453781.6740971112,408298.0090320756,0,0,2388.244767530864 -11388,14034,25470,-9,25469,-9,1,0,18,0,0,1,2,0,0,0,4,0,1.926118843999306,2.010167677174274,0,0,-983.6380238337485,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,1.802782383779091,0,46,59,-9,-9,7,3,4,0,0,1,8,2,0,214,167591.6663081446,0,0,0,-287.1837752125998 -11389,14035,25471,-9,25472,25474,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.2140378052483,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,671.6,16503.48581142224,0,99255.78312314316,52046.61260103209,2162.501499984015 -11389,14035,25472,25474,-9,-9,1,0,33,1,3,0,2,2,-9,0,3,7.118674903991846,7.028817927846791,0,5,-1,-123.1857493426312,0,2,-9,2019,12,0,17,0,1,0,0,7.788544021000636,7.788544021000636,0,0,0,0,0,1,1,0,0,0,57.64,31.66,58.3,52.91,3.333333333333333,1,1,0,0,5,6,2,0,671.6,16503.48581142224,0,99255.78312314316,52046.61260103209,2162.501499984015 -11389,14035,25473,-9,25472,25474,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1078.363620979799,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,0,671.6,16503.48581142224,0,99255.78312314316,52046.61260103209,2162.501499984015 -11389,14035,25474,25472,-9,-9,1,1,34,1,3,0,3,3,-9,0,4,7.476486954429723,7.127539680845308,0,5,1,-61.20246700897194,0,-9,-9,2019,2,0,35,20,1,0,0,5.190382340728483,5.190382340728483,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.64,31.66,10,1,1,0,0,10,6,2,0,671.6,16503.48581142224,0,99255.78312314316,52046.61260103209,2162.501499984015 -11389,14035,25475,-9,25472,25474,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.847016005546,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,671.6,16503.48581142224,0,99255.78312314316,52046.61260103209,2162.501499984015 -11390,14036,25476,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.311542311959395,7.064928671188416,0,0,-1060.401795125013,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9075329241771,7.135360918736441,57.16,56.15,-9,-9,0,1,1,0,0,2,2,3,0,495,444045.1430160791,285627.4046018712,134561.4033348897,34683.15103169796,1841.858749231593 -11391,14037,25477,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.237648295357877,7.812554731463154,0,0,-1024.331837847592,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.217080486857704,53.63,43.98,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1168,730108.933818064,450687.9225987684,378675.409850675,0,1816.818286029447 -11392,14038,25478,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,6.33428461154934,6.076702386425464,0,0,-980.6857665889786,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.357039472268427,6.433406284627927,66.26000000000001,25.92,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,320,-202005.0799418394,105152.1396145321,0,0,576.931971272405 -11393,14039,25479,25482,-9,-9,1,0,46,0,2,0,2,2,-9,1,4,0,0,0,7,5,3.566289671453585,0,2,2,2019,17,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,28.06,58.56,51,56,5,1,1,0,0,0,10,4,1,814.75,408355.7696990239,129054.7839353549,385708.2963121227,0,4494.000620451743 -11393,14039,25480,-9,25479,25482,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.0311232146785,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,814.75,408355.7696990239,129054.7839353549,385708.2963121227,0,4494.000620451743 -11393,14039,25481,-9,25479,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.5645681218425,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,814.75,408355.7696990239,129054.7839353549,385708.2963121227,0,4494.000620451743 -11393,14039,25482,25479,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.600500806516697,8.408834117305252,0,7,-5,14.28877226918145,0,3,3,2019,9,0,18,30,1,1,0,47.37144042965103,47.37144042965103,0,0,0,4.717083608990377,7,1,1,0,0,0,51,56,28.06,58.56,8,1,1,0,0,6,10,4,1,814.75,408355.7696990239,129054.7839353549,385708.2963121227,0,4494.000620451743 -11393,14040,25483,-9,25479,-9,1,1,24,0,2,0,2,2,-9,0,4,7.863228087741166,7.69798451920651,0,0,0,-1040.559613812459,0,2,-9,2019,8,0,38,24,1,0,1,8.422057290062469,8.422057290062469,0,0,0,0,0,1,1,0,0,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,98,45148.9304135705,20775.99936666616,0,0,744.9258585338686 -11394,14041,25484,25485,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,6.90957435109245,6.963490261189795,0,10,3,53.00315179015684,0,3,3,2019,11,0,30,30,1,0,0,4.082790556827612,4.082790556827612,1,0,5.679282480927558,0,0,1,1,0,0,0,36.02,46.73,36.18,48.3,5,1,1,0,0,11,11,2,1,711.5,460369.9252668074,130175.5655209189,228735.8828111917,0,1905.460195527037 -11394,14041,25485,25484,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,10,-3,14.39529080645312,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,14.10833258144581,0,0,1,1,0,0,0,36.18,48.3,36.02,46.73,1.666666666666667,1,1,0,0,0,11,2,1,711.5,460369.9252668074,130175.5655209189,228735.8828111917,0,1905.460195527037 -11395,14042,25486,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.182223831527374,8.293192103731439,0,0,0,-901.8814435614973,0,2,2,2019,10,1,35,60,1,1,0,9.366196984943391,9.366196984943391,0,0,0,0,7,1,1,0,2.60876971397465,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,7,8,4,1,1457,87945.95096049327,128069.4858086848,24505.00282683036,45089.56258157417,766.1392730477609 -11396,14043,25487,25488,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.947941759291671,8.75113409919822,0,4,0,106.7741738452717,0,1,2,2019,13,1,50,80,1,1,0,15.19281304541761,15.19281304541761,0,0,0,0,0,0,0,0,4.047283740974986,0,42.36,56.12,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,1100.333333333333,1336287.502435709,1043779.344057771,264444.7604045243,6182.28884034119,2673.707344250466 -11396,14043,25488,25487,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.061375686895897,5.670336002573348,4,0,-21.28874643670655,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.33318934664883,0,57.33,53.46,42.36,56.12,10,1,1,1,0,3,12,4,1,1100.333333333333,1336287.502435709,1043779.344057771,264444.7604045243,6182.28884034119,2673.707344250466 -11396,14043,25489,-9,25488,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.582345210673,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1100.333333333333,1336287.502435709,1043779.344057771,264444.7604045243,6182.28884034119,2673.707344250466 -11397,14044,25490,25491,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,6.878788620984471,6.806116241756899,0,13,-23,83.17206317504423,0,3,2,2019,8,0,15,45,1,0,0,5.94425102499061,5.94425102499061,0,0,0,0,0,1,1,0,7.486597715771074,0,51.79,47.73,54,46,8.333333333333334,1,1,0,0,4,10,4,1,1992,995360.3493588727,665653.0179552862,512115.5778169038,78166.80853550181,4654.48166962424 -11397,14044,25491,25490,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,8.648487431278008,8.257297169925684,5.152329053162126,13,23,63.8013314054191,0,3,3,2019,9,0,35,30,1,1,0,18.01923438956911,18.01923438956911,0,2.084747090403293,3.846945549156881,0,0,1,1,0,6.426603778175257,5.278067081604987,54,46,51.79,47.73,7,1,1,0,0,9,10,4,1,1992,995360.3493588727,665653.0179552862,512115.5778169038,78166.80853550181,4654.48166962424 -11398,14045,25492,25493,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.593266020203337,7.792550229921814,0,7,3,-100.3955909184127,0,-9,-9,2019,8,0,36,36,1,0,0,6.402526058157083,6.402526058157083,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.78,47.22,6.666666666666667,1,1,0,1,8,10,4,1,946.5,299491.8884600542,131098.472215941,199637.1821190105,0,2358.071490735971 -11398,14045,25493,25492,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.619098663238573,7.81827611370295,0,33,-3,169.342403973761,0,3,3,2019,11,0,18,18,1,0,0,13.07776257110573,13.07776257110573,0,0,0,0,2,0,0,0,0,0,44.78,47.22,54.37,54.8,5,1,1,0,1,7,10,4,1,946.5,299491.8884600542,131098.472215941,199637.1821190105,0,2358.071490735971 -11398,14046,25494,-9,25493,25492,1,1,25,0,0,0,2,2,-9,0,2,9.443021565381947,9.626824812265282,0,0,0,-986.3049473274527,0,2,2,2019,19,6,8,0,1,6,1,244.3127701347262,244.3127701347262,0,0,0,0,0,0,0,0,0,0,19.89,59.36,-9,-9,1.666666666666667,1,1,0,1,6,10,5,1,257,177038.331012261,0,0,0,9867.087112532377 -11398,14047,25495,-9,25493,25492,1,0,18,0,0,0,2,2,-9,0,4,6.656272280049301,6.593943974399541,0,0,0,-1085.825441394181,0,2,2,2019,11,0,25,0,1,0,1,3.464230969273489,3.464230969273489,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,81,0,0,0,0,1022.372516827014 -11399,14048,25496,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.3889584573573,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,8,12,1,1,793,63694.96658675048,0,-35506.2322408437,0,443.7304443697309 -11400,14049,25497,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.288409438070415,8.292949210779174,0,0,0,-874.9267738544889,0,3,-9,2019,9,0,39,39,1,0,0,11.39593458118275,11.39593458118275,0,0,0,0,2,0,0,0,0,0,62.66,52.4,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,813,-1408.304755425623,-36239.74017642992,0,0,1766.486080831181 -11401,14050,25498,-9,25499,25500,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1071.269698871222,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,692.6666666666666,2140177.567936611,970219.5260703802,947700.4496694425,396841.7176807595,4697.452348948985 -11401,14050,25499,25500,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,9,0,-4.224053500181471,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,692.6666666666666,2140177.567936611,970219.5260703802,947700.4496694425,396841.7176807595,4697.452348948985 -11401,14050,25500,25499,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.511918777340728,9.665584385450629,0,9,0,-20.2739857896372,0,2,1,2019,8,0,60,60,1,0,0,27.4630574275526,27.4630574275526,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.38,58.02,8.333333333333334,1,1,0,0,9,13,5,1,692.6666666666666,2140177.567936611,970219.5260703802,947700.4496694425,396841.7176807595,4697.452348948985 -11401,14051,25501,-9,25499,25500,1,0,21,0,1,1,2,0,0,0,4,0,7.58335147880142,7.647747593769386,0,0,-959.083369247984,-9,2,1,2019,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,7.534458897839994,0,48.27,47.75,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,93,-71358.90308406332,-16905.10783011444,0,0,2169.923202690136 -11401,14052,25502,-9,25499,25500,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1035.828653931735,-9,2,1,2019,22,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,0,13,1,1,1447,19814.19724159466,0,0,0,0 -11402,14053,25503,25504,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,42,1,35.96106594484877,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,46.57,54.66,7,4,5,0,0,0,4,2,1,1290.5,150072.264758962,0,116050.7447145348,0,1543.903102989831 -11402,14053,25504,25503,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.443090988543155,6.313473731901883,42,-1,-61.49758520115038,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.250173314135815,46.57,54.66,51,46,8.333333333333334,4,5,0,0,0,4,2,1,1290.5,150072.264758962,0,116050.7447145348,0,1543.903102989831 -11403,14054,25505,-9,-9,-9,1,0,56,0,3,0,1,1,-9,1,2,0,0,0,4,12,4.426737110627928,0,2,1,2019,13,1,0,26,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.16,22.25,21.97,21.3,6.666666666666667,1,1,0,0,5,2,2,1,288,-7046.584448608727,73440.52579165703,0,0,751.3793970563744 -11403,14055,25506,-9,25505,-9,1,1,19,0,3,0,2,2,-9,1,2,0,0,0,0,0,-1009.658545051501,1,1,-9,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,32.63,45.02,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1938,-89173.20742237232,0,0,0,862.2137227752969 -11403,14056,25507,-9,25509,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-999.966029720256,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,2,1,1296.25,132656.2990430811,52585.55340898826,0,0,2895.991660471799 -11403,14056,25508,-9,25509,-9,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-856.6443084533612,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,2,1,1296.25,132656.2990430811,52585.55340898826,0,0,2895.991660471799 -11403,14056,25509,-9,-9,-9,1,0,44,0,3,0,1,1,-9,1,1,0,7.279794231139572,7.587325533014399,4,-12,20.7466396916161,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,7.35872178611532,0,21.97,21.3,43.16,22.25,3.333333333333333,2,3,0,0,0,2,2,1,1296.25,132656.2990430811,52585.55340898826,0,0,2895.991660471799 -11403,14056,25510,-9,25509,-9,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.587925609399,-9,1,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.55,61.98,-9,-9,5,1,1,0,0,0,2,2,1,1296.25,132656.2990430811,52585.55340898826,0,0,2895.991660471799 -11404,14057,25511,25512,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.807655236372619,5.963971929386909,10,-8,5.960530985822191,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.614797276806874,5.884705320179493,51.58,53.17,57.33,53.46,10,1,1,0,0,5,7,3,1,1289,608946.4946114423,0,340659.2659713532,0,2352.684033651611 -11404,14057,25512,25511,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.958548876051842,7.129214367093902,10,8,-28.32376359307468,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.729736300661894,7.726542869228034,57.33,53.46,51.58,53.17,8.333333333333334,1,1,0,0,0,7,3,1,1289,608946.4946114423,0,340659.2659713532,0,2352.684033651611 -11405,14058,25513,-9,25514,25515,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1076.575765849957,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,4,0,359.3333333333333,301491.1954240297,379669.0016110861,0,0,2609.777817435654 -11405,14058,25514,25515,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.85970776288261,8.105762909358596,0,22,1,-26.55994025294611,-9,2,-9,2019,10,0,50,0,1,1,0,5.825399677063118,5.825399677063118,0,0,0,0,0,1,1,0,5.000820313238473,0,50,54,52.65,51.64,8,3,4,0,0,1,8,4,0,359.3333333333333,301491.1954240297,379669.0016110861,0,0,2609.777817435654 -11405,14058,25515,25514,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.230484095613274,8.280473121376621,0,22,-1,30.45270748095982,0,3,2,2019,12,2,35,35,1,2,0,10.42024673045102,10.42024673045102,0,0,0,0,0,1,1,0,0,0,52.65,51.64,50,54,6.666666666666667,4,2,0,0,10,8,4,0,359.3333333333333,301491.1954240297,379669.0016110861,0,0,2609.777817435654 -11405,14059,25516,-9,25514,25515,1,1,28,0,0,0,2,2,-9,0,3,8.976627177181104,8.616506470135953,0,0,0,-1017.003197684636,0,2,2,2019,8,0,36,30,1,0,1,21.50466501537599,21.50466501537599,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,6,8,5,0,176,-62106.30748401939,0,0,0,3235.848526524783 -11406,14060,25517,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.236092687996663,8.09242597607301,0,0,0,-1166.156806167988,0,2,2,2019,6,0,42,40,1,0,0,11.63763182048628,11.63763182048628,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,390,438776.9443693204,389931.1027528358,247901.1972897286,0,1347.281040172636 -11407,14061,25518,-9,25521,25520,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.207479184381,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1711,1663626.913917372,70448.85999754674,1205791.019598213,505015.2493518792,7188.788130514845 -11407,14061,25519,-9,25521,25520,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1065.550533921364,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,45,-9,-9,5,1,1,-9,0,0,7,5,1,1711,1663626.913917372,70448.85999754674,1205791.019598213,505015.2493518792,7188.788130514845 -11407,14061,25520,25521,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,9.742582372964936,9.680494940167263,0,10,0,-1.040592551868154,0,-9,-9,2019,11,0,40,44,1,0,0,40.82243015865033,40.82243015865033,0,0,0,0,0,0,0,0,2.922998638402586,0,49.11,46.91,51.24,58.84,6.666666666666667,1,1,0,0,7,7,5,1,1711,1663626.913917372,70448.85999754674,1205791.019598213,505015.2493518792,7188.788130514845 -11407,14061,25521,25520,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,9.01011927300674,8.998463789325223,0,21,0,99.35988474654258,0,2,2,2019,9,0,47,42,1,0,0,21.84914532128603,21.84914532128603,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.11,46.91,8.333333333333334,1,1,0,0,11,7,5,1,1711,1663626.913917372,70448.85999754674,1205791.019598213,505015.2493518792,7188.788130514845 -11407,14061,25522,-9,25521,25520,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.3534462318323,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1711,1663626.913917372,70448.85999754674,1205791.019598213,505015.2493518792,7188.788130514845 -11408,14062,25523,25525,-9,-9,1,1,41,1,1,0,1,1,-9,0,5,8.07830909430986,8.269601174054179,0,2,7,-102.4757568365814,0,2,2,2019,14,6,38,39,1,6,0,8.124779244569773,8.124779244569773,0,0,0,0,2,1,1,0,0,0,45.22,63.14,46.06,60.24,8.333333333333334,1,1,0,0,7,12,4,1,852.6666666666666,446108.80780843,103918.9947188263,232533.7401190308,168431.6372577416,3538.276170432741 -11408,14062,25524,-9,25525,25523,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.2944705925731,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,852.6666666666666,446108.80780843,103918.9947188263,232533.7401190308,168431.6372577416,3538.276170432741 -11408,14062,25525,25523,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.498055494470146,8.467075205567049,0,2,-7,36.11066766572441,0,-9,-9,2019,10,1,38,38,1,1,0,11.97269625445372,11.97269625445372,0,0,0,0,2,1,1,0,2.785595070329968,0,46.06,60.24,45.22,63.14,8.333333333333334,1,1,0,1,8,12,4,1,852.6666666666666,446108.80780843,103918.9947188263,232533.7401190308,168431.6372577416,3538.276170432741 -11409,14063,25526,25528,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,6.660902429736641,6.439530347670855,0,7,12,41.20002207467408,-9,-9,-9,2019,9,0,40,0,1,1,0,2.056530021448409,2.056530021448409,0,0,0,0,0,1,1,0,0,0,52,55,41.34,56.62,8,2,3,0,0,1,4,2,1,1015.666666666667,31395.76079987482,0,0,0,455.5069681384151 -11409,14063,25527,-9,25528,25526,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.117325540067,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1015.666666666667,31395.76079987482,0,0,0,455.5069681384151 -11409,14063,25528,25526,-9,-9,1,0,32,0,3,0,3,3,-9,0,3,0,0,0,16,-12,-60.76195078416082,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,52,55,5,2,3,0,0,0,4,2,1,1015.666666666667,31395.76079987482,0,0,0,455.5069681384151 -11410,14064,25529,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1116.756522247488,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.78,48.45,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,362,-120435.481287183,0,0,0,1416.93580649846 -11411,14065,25530,25531,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.775026062906321,8.772802395996763,0,7,-15,-41.58484487947493,0,3,3,2019,8,1,38,38,1,1,0,24.0113790335075,24.0113790335075,0,0,0,0,0,1,1,0,0,0,52.83,49.11,22.71,24.86,5,1,1,0,0,7,5,5,1,849,471459.3037760268,532545.1858810172,109727.1003780896,14764.77438136405,3919.614756981229 -11411,14065,25531,25530,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,6.216257362691109,6.23057094717208,7,15,-58.33958158117121,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.809214002302062,0,0,1,1,0,6.577587526048518,6.054855037189059,22.71,24.86,52.83,49.11,6.666666666666667,1,1,0,0,1,5,5,1,849,471459.3037760268,532545.1858810172,109727.1003780896,14764.77438136405,3919.614756981229 -11412,14066,25532,25533,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.923044278087978,8.285244512684431,0,14,1,-82.98062990283444,-9,1,2,2019,11,0,37,0,1,2,0,21.88514265314742,21.88514265314742,0,0,0,0,0,1,1,0,0,0,49,55,51,56,7,1,1,0,0,8,2,4,1,644.25,357951.5635056481,89131.06779616233,250001.0742524787,87687.62211043027,2119.340434936169 -11412,14066,25533,25532,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,4.894940772814819,5.127187072071562,0,14,-1,-28.47470060369362,0,2,2,2019,10,0,40,40,1,1,0,.3501684101000991,.3501684101000991,0,0,0,0,0,1,1,0,3.61066632791156,0,51,56,49,55,7,1,1,0,0,7,2,4,1,644.25,357951.5635056481,89131.06779616233,250001.0742524787,87687.62211043027,2119.340434936169 -11412,14066,25534,-9,25532,25533,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.9157506640828,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,644.25,357951.5635056481,89131.06779616233,250001.0742524787,87687.62211043027,2119.340434936169 -11412,14066,25535,-9,25532,25533,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.783025936717,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,644.25,357951.5635056481,89131.06779616233,250001.0742524787,87687.62211043027,2119.340434936169 -11413,14067,25536,25537,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,8,-3,-33.63373991979563,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.31,23.81,63.65,35.93,5,1,1,0,0,0,11,5,1,755,1521917.613362511,1089309.164772679,281706.4449600322,0,3363.050025548449 -11413,14067,25537,25536,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.742423765644176,8.854766614426119,4.627759479573438,8,3,40.04052605001799,0,2,3,2019,6,0,55,49,1,0,0,13.6534630271105,13.6534630271105,0,0,0,0,0,1,1,0,5.018354033949413,4.847586676435099,63.65,35.93,48.31,23.81,8.333333333333334,1,1,0,0,10,11,5,1,755,1521917.613362511,1089309.164772679,281706.4449600322,0,3363.050025548449 -11414,14068,25538,25539,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,36,6,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.01,21.43,42.22,45.38,3.333333333333333,2,3,0,1,3,4,1,1,1053,172110.5370615183,64439.02100688027,0,0,1269.767160717185 -11414,14068,25539,25538,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,36,-6,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.22,45.38,39.01,21.43,6.666666666666667,2,3,0,1,0,4,1,1,1053,172110.5370615183,64439.02100688027,0,0,1269.767160717185 -11415,14069,25540,25541,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.335049705743605,8.93460355116766,0,10,-6,-8.896450146046073,-9,3,2,2019,11,2,39,0,1,2,0,24.03797437878722,24.03797437878722,0,0,0,0,0,1,1,0,6.436029420239517,0,50.51,32.45,57.98,47.73,6.666666666666667,1,1,0,0,12,11,4,1,660.25,140654.159352553,49948.25578947389,211512.228866333,141571.9212208799,3117.313271699661 -11415,14069,25541,25540,-9,-9,1,1,48,0,2,0,2,2,-9,1,4,0,0,0,10,6,-12.91896668432096,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.98,47.73,50.51,32.45,8.333333333333334,1,1,0,0,4,11,4,1,660.25,140654.159352553,49948.25578947389,211512.228866333,141571.9212208799,3117.313271699661 -11415,14069,25542,-9,25540,25541,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.285926286321,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,660.25,140654.159352553,49948.25578947389,211512.228866333,141571.9212208799,3117.313271699661 -11415,14069,25543,-9,25540,25541,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.6113955018023,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,660.25,140654.159352553,49948.25578947389,211512.228866333,141571.9212208799,3117.313271699661 -11416,14070,25544,25545,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.63033359996542,7.71732741179329,17,-7,67.23656339125797,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.52634729427727,45.96,44.2,52,45,6.666666666666667,1,1,0,0,0,2,4,1,854.5,1162945.898363366,596134.2440298899,295541.6934249698,0,3328.583589280252 -11416,14070,25545,25544,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,8.010738027237148,7.64904979391448,7,7,6.306643465965009,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.944039461323888,52,45,45.96,44.2,8,1,1,0,0,0,2,4,1,854.5,1162945.898363366,596134.2440298899,295541.6934249698,0,3328.583589280252 -11417,14071,25546,25547,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.426798676159661,6.346932184514346,49,0,54.81663410194255,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.565453690279262,57.16,56.15,54.49,19.87,8.333333333333334,1,1,0,0,0,6,2,1,3223.5,643798.0844051447,293010.2626148917,117774.4598627262,0,1985.424862518656 -11417,14071,25547,25546,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.96756347125829,6.782406297768588,49,0,80.66763507737942,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,12.83291291889201,0,0,1,1,0,4.635780166707788,6.760327701277842,54.49,19.87,57.16,56.15,6.666666666666667,1,1,0,0,0,6,2,1,3223.5,643798.0844051447,293010.2626148917,117774.4598627262,0,1985.424862518656 -11418,14072,25548,25549,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.129594648214759,8.008913271188161,0,25,-1,32.59615742459462,0,3,3,2019,8,0,45,45,1,0,0,8.310025498758602,8.310025498758602,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,9,4,1,557,1648643.154024328,1216444.511936805,325169.4835317054,109299.850649899,3235.407063162529 -11418,14072,25549,25548,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.158339792999387,8.121099442858798,0,25,1,22.59998438657275,0,2,2,2019,8,0,40,39,1,0,0,11.24104130141283,11.24104130141283,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,9,4,1,557,1648643.154024328,1216444.511936805,325169.4835317054,109299.850649899,3235.407063162529 -11419,14073,25550,25551,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,28,10,0,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45,43.43,30.37,8,1,1,0,0,0,5,1,0,426.5,116493.6021872205,-25784.14167205493,178195.5632883538,19527.65336416003,1162.685003188156 -11419,14073,25551,25550,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,28,-10,0,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,0,0,43.43,30.37,54,45,5,1,1,0,0,0,5,1,0,426.5,116493.6021872205,-25784.14167205493,178195.5632883538,19527.65336416003,1162.685003188156 -11420,14074,25552,25554,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,7.916573656118931,7.821515820085384,0,7,-19,-166.9163596996815,0,2,2,2019,11,1,27,26,1,1,0,11.3406153594719,11.3406153594719,0,0,0,0,0,1,1,0,2.141072426237344,0,45.24,53.41,40.02,45.2,6.666666666666667,1,1,0,0,7,5,4,1,373.5,421149.7699291352,212825.5975141737,237257.2214249021,0,3463.042759960843 -11420,14074,25553,-9,25552,25554,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.168190234014,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,373.5,421149.7699291352,212825.5975141737,237257.2214249021,0,3463.042759960843 -11420,14074,25554,25552,-9,-9,1,1,55,1,2,0,2,2,-9,0,3,8.19138171282933,8.658130429283144,7.501679721084836,7,19,-118.1066429910852,0,2,3,2019,8,0,48,48,1,0,0,7.141595246589692,7.141595246589692,0,0,0,0,0,1,1,0,0,7.172897766185767,40.02,45.2,45.24,53.41,3.333333333333333,1,1,0,0,7,5,4,1,373.5,421149.7699291352,212825.5975141737,237257.2214249021,0,3463.042759960843 -11420,14074,25555,-9,25552,25554,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.7357885263195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,373.5,421149.7699291352,212825.5975141737,237257.2214249021,0,3463.042759960843 -11421,14075,25556,25557,-9,-9,1,1,49,0,0,0,3,3,-9,0,5,7.662232422595665,7.938184250732315,0,27,3,3.672657018470808,0,2,2,2019,8,0,38,40,1,0,0,9.376238352797579,9.376238352797579,0,0,0,0,0,0,0,0,0,0,54.59,51.83,47.23,56.75,10,1,1,0,0,9,13,4,1,467.6666666666667,-42659.93405784526,0,213221.20063446,128364.2864577928,1952.565084806528 -11421,14075,25557,25556,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.316228631910556,7.291704520745211,0,27,-3,105.5240741400391,0,3,2,2019,10,1,40,35,1,1,0,4.328312139067982,4.328312139067982,0,0,0,0,0,0,0,0,1.745563609900926,0,47.23,56.75,54.59,51.83,8.333333333333334,1,1,0,0,10,13,4,1,467.6666666666667,-42659.93405784526,0,213221.20063446,128364.2864577928,1952.565084806528 -11421,14075,25558,-9,25557,25556,1,1,17,0,0,0,3,3,1,0,4,0,0,0,0,0,-860.8465570983416,-9,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.77,50.95,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,467.6666666666667,-42659.93405784526,0,213221.20063446,128364.2864577928,1952.565084806528 -11421,14076,25559,-9,25557,25556,1,1,21,0,0,0,2,2,-9,0,3,6.936782714640245,6.794741071587782,0,0,0,-1086.304862824004,0,2,3,2019,10,0,15,0,1,0,1,7.829266413013023,7.829266413013023,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,1145,-114955.3840900659,0,0,0,402.5604659717746 -11422,14077,25560,25561,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.187352415600998,7.694604350811085,0,6,2,117.2704234870666,0,2,2,2019,8,0,20,20,1,0,0,14.85820579704256,14.85820579704256,1,0,0,0,0,1,1,0,0,0,58.66,31.42,67.19,37.81,8.333333333333334,1,1,0,0,6,9,3,1,1402,684942.0302758403,196741.682208005,253395.5307303292,0,2162.442006830783 -11422,14077,25561,25560,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,6,-2,-32.32280409613557,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.19,37.81,58.66,31.42,8.333333333333334,1,1,0,0,0,9,3,1,1402,684942.0302758403,196741.682208005,253395.5307303292,0,2162.442006830783 -11423,14078,25562,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-972.06903664512,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.66,32.71,-9,-9,0,1,1,0,1,0,8,1,0,1159,-50578.6528246489,-29007.98300530227,0,0,589.9660382035536 -11424,14079,25563,25564,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,43,3,71.25400946466729,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,2.846797184088944,2.579211989540504,18.1644782511167,7,1,1,0,0,0,40.78,23.36,51.05,18.77,8.333333333333334,1,1,0,0,5,9,2,0,710.5,233529.3356322919,119313.1918521854,209961.2374813498,0,2220.687575037717 -11424,14079,25564,25563,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,5.848730930982219,6.192596582256916,43,-3,152.4059996170411,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,5.963286638850654,5.750649703960591,51.05,18.77,40.78,23.36,6.666666666666667,1,1,0,0,5,9,2,0,710.5,233529.3356322919,119313.1918521854,209961.2374813498,0,2220.687575037717 -11425,14080,25565,-9,25566,25568,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-986.2732855932503,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,898,345426.5913620918,56789.42280638587,365858.5526844409,53873.48149797148,3021.079555565379 -11425,14080,25566,25568,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.203654305054897,7.248312067831088,0,19,0,65.10673556014443,0,2,-9,2019,13,1,19,24,1,1,0,8.670146438684885,8.670146438684885,0,0,0,0,0,1,1,0,0,0,53.39,44.47,60.29,52.11,8.333333333333334,1,1,0,0,2,6,3,1,898,345426.5913620918,56789.42280638587,365858.5526844409,53873.48149797148,3021.079555565379 -11425,14080,25567,-9,25566,25568,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-958.7958521107619,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,6,3,1,898,345426.5913620918,56789.42280638587,365858.5526844409,53873.48149797148,3021.079555565379 -11425,14080,25568,25566,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.268657437601744,8.386437419229035,0,19,9,-67.58002814597153,0,-9,-9,2019,7,0,40,40,1,0,0,11.10188127501788,11.10188127501788,0,0,0,0,0,1,1,0,0,0,60.29,52.11,53.39,44.47,8.333333333333334,1,1,0,0,11,6,3,1,898,345426.5913620918,56789.42280638587,365858.5526844409,53873.48149797148,3021.079555565379 -11426,14081,25569,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,7.318371528866035,7.441963313952042,0,0,0,-853.034067971672,0,-9,-9,2019,13,1,20,30,1,1,0,7.601561475587541,7.601561475587541,0,0,0,0,74.5,1,0,1,0,0,40.48,60.05,-9,-9,5,1,1,0,0,8,5,2,0,338,55781.55794408946,6439.996567469083,96426.40381381012,61061.29113229156,1713.123610495061 -11426,14082,25570,-9,25569,-9,1,1,19,0,2,0,3,3,1,0,3,0,0,0,0,0,-920.6004972589468,-9,2,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,45.58,45.14,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,904,30266.92268917913,0,0,0,-281.297491900846 -11427,14083,25571,25572,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.113738904359666,8.826863173296216,0,1,1,-23.0922249055891,-9,-9,-9,2019,5,0,38,0,1,0,0,29.51947863695326,29.51947863695326,0,0,0,0,0,1,1,0,0,0,46.63,59.72,39.12,60.58,1.666666666666667,4,5,0,0,7,4,5,1,728.5,-43900.5841319653,0,194987.1985533022,159303.5667029571,3582.149076733115 -11427,14083,25572,25571,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,0,0,0,1,-1,.4050911732331404,-9,3,3,2019,5,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.12,60.58,46.63,59.72,8.333333333333334,2,3,1,0,4,4,5,1,728.5,-43900.5841319653,0,194987.1985533022,159303.5667029571,3582.149076733115 -11428,14084,25573,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1047.527203863339,0,3,3,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,25.64,-9,-9,3.333333333333333,1,1,0,0,9,6,1,1,459,153689.3398233775,0,0,0,1760.046850930957 -11428,14085,25574,-9,-9,25573,1,1,33,0,0,0,3,3,-9,0,2,6.449109819999059,6.537209984535209,0,0,0,-933.7212554961127,0,-9,3,2019,6,0,30,30,1,0,0,2.384537888613937,2.384537888613937,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,1456,82214.3524275306,18896.11607076099,0,0,236.7900263381867 -11429,14086,25575,-9,25577,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.3041032638018,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,455.6666666666667,-23930.42867999549,24585.79888079814,0,0,2114.245171974045 -11429,14086,25576,-9,25577,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.083594914489,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,455.6666666666667,-23930.42867999549,24585.79888079814,0,0,2114.245171974045 -11429,14086,25577,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.688795486616683,8.126801350935859,5.948401539052049,0,0,-1051.825826801058,0,2,2,2019,20,8,37,37,1,8,0,8.570617925813778,8.570617925813778,0,0,0,0,0,1,1,0,7.611486227059287,0,34.11,53.41,-9,-9,5,1,1,0,0,8,5,3,1,455.6666666666667,-23930.42867999549,24585.79888079814,0,0,2114.245171974045 -11430,14087,25578,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.123749494249111,9.091038465892199,0,9,-3,-55.3398915937853,0,3,3,2019,5,0,40,42,1,0,0,22.32158655838285,22.32158655838285,0,0,0,0,27,0,0,0,0,0,62.43,40.11,56.25,52.62,8.333333333333334,1,1,0,0,10,13,5,1,626,573790.9079153659,355189.1617928795,48619.37870067909,58851.41550597033,4361.80799165899 -11430,14088,25579,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,8.924881548780959,8.694006985463824,0,9,3,81.8200924046095,0,3,3,2019,6,0,43,47,1,0,0,22.92053180935152,22.92053180935152,0,0,0,0,0,0,0,0,7.241572799266618,0,56.25,52.62,62.43,40.11,10,1,1,0,0,10,13,5,1,3472,-15051.09088978966,0,182335.4987008745,54066.0980936622,3136.261603583998 -11431,14089,25580,-9,-9,-9,1,0,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1045.957023188278,-9,1,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,0,0,4,1,0,1867,28778.20700608166,0,0,0,0 -11432,14090,25581,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,6.127141576927191,6.338738200582336,0,0,-1090.058953931394,1,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.411506546566085,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,539.5,109746.9229041099,0,0,0,792.7247928342136 -11432,14090,25582,-9,25581,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.991893697319,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,539.5,109746.9229041099,0,0,0,792.7247928342136 -11433,14091,25583,25584,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.008937481356657,8.092577667782756,47,-2,51.98364140998343,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.342130948248722,7.983265799527413,57.76,54.51,57.16,56.15,10,1,1,0,0,0,12,5,1,537,2152651.243372123,1197433.654902453,773906.9620291796,0,5773.284785789207 -11433,14091,25584,25583,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.436501433079028,8.126337032104747,47,2,-40.26781815406935,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.114402430599698,8.738747136603742,57.16,56.15,57.76,54.51,10,1,1,0,0,0,12,5,1,537,2152651.243372123,1197433.654902453,773906.9620291796,0,5773.284785789207 -11434,14092,25585,-9,25586,25587,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.6786852425779,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,536,667386.2418843586,178415.2896577966,97757.04456611285,80189.1689073599,1063.465945041037 -11434,14092,25586,25587,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,0,0,0,6,1,-132.829695165568,0,2,2,2019,17,5,0,38,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.64,48.69,51.73,58.82,8.333333333333334,1,1,0,0,9,7,4,1,536,667386.2418843586,178415.2896577966,97757.04456611285,80189.1689073599,1063.465945041037 -11434,14092,25587,25586,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.546502892251047,8.567336138210241,0,6,-1,158.3398850390359,0,-9,-9,2019,12,0,38,38,1,0,0,13.37113616565092,13.37113616565092,0,0,0,0,0,1,1,0,2.307515594233007,0,51.73,58.82,49.64,48.69,8.333333333333334,1,1,0,0,6,7,4,1,536,667386.2418843586,178415.2896577966,97757.04456611285,80189.1689073599,1063.465945041037 -11435,14093,25588,-9,25590,25589,1,0,46,0,0,0,2,2,-9,0,2,9.066635008593725,8.948579018001034,0,0,0,-1011.044902887675,-9,2,3,2019,9,0,43,0,1,0,0,21.62597160640007,21.62597160640007,0,0,0,0,0,1,1,0,8.781321024782656,0,48.83,27.86,-9,-9,5,1,1,0,0,8,8,5,1,236,340707.5769536352,467821.4068851263,194274.3843727165,94508.41099338834,4802.980261147981 -11435,14094,25589,25590,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,1,7,0,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.22,55.2,37.67,39.17,5,1,1,0,0,0,8,1,1,1299.5,63326.37659103223,136838.3736231143,126238.5242751077,0,902.835945278558 -11435,14094,25590,25589,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,1,-7,0,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.67,39.17,53.22,55.2,5,1,1,0,0,0,8,1,1,1299.5,63326.37659103223,136838.3736231143,126238.5242751077,0,902.835945278558 -11436,14095,25591,25592,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.554469745839986,8.099950940021419,0,44,-2,-18.66027343812451,-9,2,2,2019,9,0,38,0,1,0,0,13.71816137423115,13.71816137423115,0,0,0,0,2,1,1,0,0,0,52.8,49.47,57.33,53.46,6.666666666666667,3,4,0,0,9,9,5,0,205,2330797.505759554,1624662.492837163,720936.2633563869,79354.10733798498,4630.53111595986 -11436,14095,25592,25591,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.839893537109665,8.100797062543124,7.246968024580555,44,2,-34.89996505559965,0,3,3,2019,6,0,38,45,1,0,0,7.941463643073516,7.941463643073516,0,0,0,0,0,1,1,0,0,7.373525957013772,57.33,53.46,52.8,49.47,8.333333333333334,3,4,0,0,8,9,5,0,205,2330797.505759554,1624662.492837163,720936.2633563869,79354.10733798498,4630.53111595986 -11437,14096,25593,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,0,0,0,0,0,-853.6189261759932,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,39.19,43.1,-9,-9,6.666666666666667,1,1,1,1,0,10,1,0,1415,-58286.60488570666,11554.26050569415,0,0,464.0997009684523 -11438,14097,25594,25598,-9,-9,1,1,35,1,3,0,2,2,-9,0,3,9.22543250777691,9.115603687941995,0,8,0,-75.29635787307481,0,-9,-9,2019,8,0,48,50,1,0,0,19.65250964456459,19.65250964456459,0,0,0,0,0,0,0,0,0,0,44.06,52.59,57.16,56.15,10,1,1,0,0,4,6,4,1,619.8,136626.2093409464,103636.2578897807,220822.8319828349,162922.479048702,3677.414889545852 -11438,14097,25595,-9,25598,25594,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-919.6914264242353,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,619.8,136626.2093409464,103636.2578897807,220822.8319828349,162922.479048702,3677.414889545852 -11438,14097,25596,-9,25598,25594,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-987.561140555429,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,619.8,136626.2093409464,103636.2578897807,220822.8319828349,162922.479048702,3677.414889545852 -11438,14097,25597,-9,25598,25594,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.746685237804,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,619.8,136626.2093409464,103636.2578897807,220822.8319828349,162922.479048702,3677.414889545852 -11438,14097,25598,25594,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,7.667937751710686,7.763640953935228,0,13,0,13.84011433083969,-9,3,3,2019,7,0,20,0,1,0,0,14.38766606564679,14.38766606564679,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.06,52.59,10,1,1,0,0,9,6,4,1,619.8,136626.2093409464,103636.2578897807,220822.8319828349,162922.479048702,3677.414889545852 -11439,14098,25599,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.884047329388546,9.026269590132808,0,0,0,-963.1801185523923,0,3,3,2019,6,1,60,65,1,1,0,20.84367546416462,20.84367546416462,0,0,0,0,0,1,1,0,0,0,54.51,36.04,-9,-9,0,1,1,0,0,10,2,5,1,325,797108.2410377874,270457.2823447932,116565.2654203023,0,2105.74290456587 -11440,14099,25600,-9,25601,25603,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.820767765962,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,680.75,130373.9674750411,113534.4035568489,0,0,4341.190103559586 -11440,14099,25601,25603,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.926346203483931,8.996628072382178,0,6,0,131.3107859565824,0,2,2,2019,14,3,40,40,1,3,0,27.34090046864029,27.34090046864029,0,0,0,0,0,1,1,0,6.451582845902599,0,33.02,58.91,49.63,43.7,5,1,1,0,0,6,2,4,1,680.75,130373.9674750411,113534.4035568489,0,0,4341.190103559586 -11440,14099,25602,-9,25601,25603,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.169380511529,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,680.75,130373.9674750411,113534.4035568489,0,0,4341.190103559586 -11440,14099,25603,25601,-9,-9,1,1,35,1,2,0,2,2,0,0,2,0,0,0,6,0,-33.90947532654832,-9,2,2,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,43.7,33.02,58.91,6.666666666666667,1,1,0,0,1,2,4,1,680.75,130373.9674750411,113534.4035568489,0,0,4341.190103559586 -11441,14100,25604,25605,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.057419823330157,8.032379355142357,0,4,-7,-2.152377511764709,0,-9,-9,2019,13,1,41,40,1,1,0,8.913693200592725,8.913693200592725,0,0,0,0,0,0,0,0,2.636931495821278,0,45.99,38.65,53,52,5,1,1,0,0,12,6,4,1,550,-2475.849002349696,108954.753917372,109541.2220635751,55019.81134642205,2008.175113015408 -11441,14100,25605,25604,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.741135481013075,6.554908174454206,0,4,7,44.28007186699967,0,3,3,2019,12,0,27,27,1,0,0,4.973752933496476,4.973752933496476,0,0,0,0,0,0,0,0,2.762670622158785,0,53,52,45.99,38.65,8.333333333333334,1,1,0,0,11,6,4,1,550,-2475.849002349696,108954.753917372,109541.2220635751,55019.81134642205,2008.175113015408 -11442,14101,25606,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,5.612821254962365,5.686771819557951,0,0,0,-1123.56989948833,0,2,2,2019,5,1,8,35,1,1,1,3.956639081409627,3.956639081409627,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,727,-114631.504373355,0,0,0,119.6717180883491 -11443,14102,25607,25608,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,8,4,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.45,36.32,57.76,30.58,3.333333333333333,1,1,0,0,0,12,2,0,625.5,385291.5170132506,0,518640.9307763855,0,1408.965983877017 -11443,14102,25608,25607,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,8,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.76,30.58,53.45,36.32,8.333333333333334,1,1,0,0,0,12,2,0,625.5,385291.5170132506,0,518640.9307763855,0,1408.965983877017 -11444,14103,25609,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-946.8820986083998,0,3,3,2019,21,10,0,0,4,10,0,0,0,1,0,6.395799716733144,0,0,1,1,0,4.649272349375243,0,33.29,31.88,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,451,-160471.6779498178,0,0,0,386.3764230218022 -11445,14104,25610,25611,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.734844042187909,7.695431387606116,0,29,-3,13.6323435806879,0,3,2,2019,8,0,30,33,1,0,0,9.002659678675311,9.002659678675311,0,0,0,0,0,1,1,0,0,0,50.86,44.52,57.16,56.15,10,2,3,0,0,10,9,5,1,754.5,2660713.750361872,1415475.220899777,597229.7103716427,0,3914.904784007778 -11445,14104,25611,25610,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.031606371483798,8.969663292789354,0,29,3,20.37294692971528,-9,3,-9,2019,6,0,47,0,1,0,0,16.21000300370383,16.21000300370383,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.86,44.52,10,1,1,0,0,10,9,5,1,754.5,2660713.750361872,1415475.220899777,597229.7103716427,0,3914.904784007778 -11445,14105,25612,-9,25610,25611,1,0,22,0,0,0,2,2,-9,0,3,7.719038457266528,8.0609280429126,0,0,0,-1081.805507823813,-9,2,3,2019,9,0,38,0,1,0,1,7.841557724046244,7.841557724046244,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,6,9,3,1,396,-131699.4061949115,0,0,0,466.1165601884683 -11446,14106,25613,25614,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.86536181237824,7.507862875144971,0,30,-1,24.54967056772475,0,3,3,2019,17,5,23,35,1,5,0,11.07389322600584,11.07389322600584,0,0,0,0,2,1,1,0,0,0,41.07,23.08,31.73,23.33,3.333333333333333,1,1,0,0,11,2,3,0,800,144705.2070009956,0,63958.0454506124,0,2121.49711316465 -11446,14106,25614,25613,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,6.9555967084255,6.572188574331435,30,1,-77.81546040919618,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,6.871320738467062,31.73,23.33,41.07,23.08,1.666666666666667,1,1,0,0,9,2,3,0,800,144705.2070009956,0,63958.0454506124,0,2121.49711316465 -11447,14107,25615,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.864080439157243,7.946756472746094,0,0,0,-787.4620456298925,0,3,3,2019,8,0,39,39,1,0,1,9.14038349148956,9.14038349148956,0,0,0,0,0,1,1,0,0,0,56.01,40.66,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,395,163524.8421480541,58298.58264156934,0,0,1480.287319604027 -11448,14108,25616,-9,25617,25618,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.110542379412,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1888.666666666667,166332.587178867,120748.1550654468,285539.3760817736,214249.0647751863,4033.790473946462 -11448,14108,25617,25618,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,7.218081716970514,7.344189974412622,0,3,-7,-150.5061377320017,0,-9,-9,2019,6,0,25,26,1,0,0,6.762637817753411,6.762637817753411,0,0,0,0,0,1,1,0,0,0,50.54,62.09,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1888.666666666667,166332.587178867,120748.1550654468,285539.3760817736,214249.0647751863,4033.790473946462 -11448,14108,25618,25617,-9,-9,1,1,36,0,1,0,1,1,-9,0,4,8.841374931051096,9.021118346576523,0,3,7,-1.127801774455828,0,-9,-9,2019,7,0,50,50,1,0,0,18.72062222278251,18.72062222278251,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,4,6,5,1,1888.666666666667,166332.587178867,120748.1550654468,285539.3760817736,214249.0647751863,4033.790473946462 -11449,14109,25619,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.434313991610615,8.29301467927842,0,1,-4,38.58753469652162,0,2,2,2019,17,6,40,40,1,6,0,13.20629412900649,13.20629412900649,0,0,0,0,0,0,0,0,.6251558136096909,0,35.81,64.81,47,57,6.666666666666667,1,1,0,0,6,9,4,0,325,-68298.97948528772,0,0,0,1811.340107701098 -11450,14110,25620,25621,-9,-9,1,1,84,0,0,0,1,1,-9,0,2,0,8.197973299761557,8.09096858917937,56,1,-62.32000089680171,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,5.332599194453696,0,0,1,1,0,0,8.27166376036836,52.68,23.37,45.88,43.88,3.333333333333333,1,1,0,0,0,10,3,1,342,815317.3836377801,469040.7533284107,304248.4970862328,0,2826.588607572112 -11450,14110,25621,25620,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.671243566874581,6.176931789597491,56,-1,-90.43082601637779,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,5.48,1,1,0,6.560200884489544,6.236611088872829,45.88,43.88,52.68,23.37,8.333333333333334,1,1,0,0,0,10,3,1,342,815317.3836377801,469040.7533284107,304248.4970862328,0,2826.588607572112 -11451,14111,25622,25623,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,31,-1,-82.65226295251369,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,30.37,24.2,47.84,49.93,1.666666666666667,1,1,0,0,0,4,4,1,861.6666666666666,1175767.621456382,773279.2650436098,147856.1516011835,0,3058.665380556269 -11451,14111,25623,25622,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.414060110587601,8.830378674502215,6.540843147575039,31,1,-30.5596076536921,0,3,3,2019,12,0,38,46,1,0,0,14.7459781845154,14.7459781845154,0,0,0,0,0,1,1,0,3.769731767825738,6.984593800488987,47.84,49.93,30.37,24.2,3.333333333333333,1,1,0,0,12,4,4,1,861.6666666666666,1175767.621456382,773279.2650436098,147856.1516011835,0,3058.665380556269 -11451,14111,25624,-9,25622,25623,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-917.4528387115863,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,7,1,1,0,1.733108745257115,0,39.14,41.63,-9,-9,6.666666666666667,1,1,0,0,1,4,4,1,861.6666666666666,1175767.621456382,773279.2650436098,147856.1516011835,0,3058.665380556269 -11451,14112,25625,-9,25622,25623,1,0,22,0,0,0,1,1,-9,0,4,7.80242701390636,7.423269258567823,0,0,0,-1067.593605249188,0,2,2,2019,11,2,40,18,1,2,1,5.372608987082931,5.372608987082931,0,0,0,0,0,1,1,0,.0159968338342715,0,54.2,57.49,-9,-9,10,1,1,0,0,6,4,3,1,1034,60727.6776369254,81530.11786976043,0,0,1435.028755305998 -11452,14113,25626,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.388038636344779,5.667977410183509,0,0,-912.3011946750472,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.646603964865924,5.531378991422205,60.12,54.8,-9,-9,10,1,1,0,0,9,9,2,1,564,287151.2928528167,169605.0390202671,249044.1699270632,21847.97242546712,411.8470580467693 -11453,14114,25627,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.454787853038921,8.265181273490132,0,0,0,-1033.680451612812,0,-9,-9,2019,15,3,43,43,1,3,0,11.0400528849747,11.0400528849747,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,560,18221.62458917873,0,0,0,1407.979723238906 -11454,14115,25628,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.247871700273341,6.881046740290437,0,0,-1017.176243618112,0,3,-9,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,4.218945161780997,6.749468253546748,38.39,40.89,-9,-9,5,1,1,0,0,0,7,2,1,647,177897.6323257886,146408.6831054698,0,0,1630.94741727909 -11455,14116,25629,25630,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,48,-3,1.115943371658408,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,2.266021754998635,0,1,1,0,0,0,48.15,43.34,59.29,49.68,10,1,1,0,0,1,10,2,1,1047.5,811605.1896776946,498637.3911027275,237987.6003727063,0,1631.931570141603 -11455,14116,25630,25629,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.029007876957543,7.469773006123412,50,3,-151.6712575580412,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.119953238075285,6.77099983318548,59.29,49.68,48.15,43.34,10,1,1,0,0,4,10,2,1,1047.5,811605.1896776946,498637.3911027275,237987.6003727063,0,1631.931570141603 -11456,14117,25631,-9,-9,-9,1,1,25,0,3,0,2,2,-9,0,4,7.830403408936535,8.07856885552035,0,0,0,-978.0327687596658,-9,2,2,2019,3,1,32,0,1,1,1,8.618489189805592,8.618489189805592,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,3.333333333333333,3,4,0,1,5,8,3,1,846,98801.40625700362,0,0,0,798.1012428746451 -11457,14118,25632,-9,25634,25633,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.6184406815587,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,445,178164.4195459769,174091.1315502287,240372.552190492,124040.1864756349,7421.768342592011 -11457,14118,25633,25634,-9,-9,1,1,30,0,1,0,1,1,-9,0,4,9.367851393876048,9.31218152777282,0,3,2,-135.6997173448508,0,-9,-9,2019,6,0,40,38,1,0,0,28.35983772585723,28.35983772585723,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.97,53.97,8.333333333333334,1,1,0,0,4,2,5,1,445,178164.4195459769,174091.1315502287,240372.552190492,124040.1864756349,7421.768342592011 -11457,14118,25634,25633,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.598062834098188,8.511703119073559,0,3,-2,-109.4847608490243,0,2,1,2019,7,0,37,38,1,0,0,18.11685447558556,18.11685447558556,0,0,0,0,0,0,0,0,8.318585530613145,0,52.97,53.97,57.16,56.15,8.333333333333334,1,1,0,0,5,2,5,1,445,178164.4195459769,174091.1315502287,240372.552190492,124040.1864756349,7421.768342592011 -11458,14119,25635,-9,-9,-9,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1011.802993479089,-9,1,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,7,2,1,744,0,0,0,0,423.3032656909667 -11459,14120,25636,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.529943773137827,7.689470145575328,0,0,0,-1015.350756055046,0,-9,2,2019,11,0,36,36,1,0,0,7.149017101492858,7.149017101492858,0,0,0,0,0,0,0,0,0,0,44.88,51.27,-9,-9,5,1,1,0,0,9,2,3,1,528,-63604.2135263571,26009.81682196009,77586.19780932718,4491.226536566575,691.8317538796491 -11459,14121,25637,-9,25636,-9,1,1,30,0,0,0,2,2,-9,0,5,7.920159447743599,7.749896017425477,0,0,0,-971.496736421966,0,2,2,2019,9,0,37,45,1,0,1,8.64949414831761,8.64949414831761,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,9,2,3,1,1246,-17816.98683985781,24499.97943281741,0,0,938.2385127523601 -11460,14122,25638,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.46484532197093,6.869320774786002,0,0,-920.364639683769,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.464808360992358,51,48,-9,-9,7,3,4,0,0,7,6,2,1,483,698860.0890331083,323205.7936101942,73970.97523944397,0,662.3181230259781 -11461,14123,25639,25640,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.196182412009765,9.112766537884426,0,10,1,19.26501198612927,0,2,2,2019,10,0,40,40,1,1,0,24.89367416383305,24.89367416383305,0,0,0,0,0,1,1,0,0,0,50,49,35.61,65.82000000000001,7,1,1,0,0,1,8,5,1,1318.5,3327134.593882518,2739027.664289315,381106.8200447176,0,4598.229424003761 -11461,14123,25640,25639,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.651634087649679,8.77338652310867,0,33,-1,136.5998558283006,0,2,1,2019,14,3,50,50,1,3,0,17.68601667628256,17.68601667628256,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,50,49,8.333333333333334,1,1,0,0,11,8,5,1,1318.5,3327134.593882518,2739027.664289315,381106.8200447176,0,4598.229424003761 -11461,14124,25641,-9,25640,25639,1,0,27,0,0,0,2,2,-9,0,4,7.257271230477364,7.032732950969816,0,0,0,-903.0089835610924,0,1,1,2019,11,0,35,40,1,2,1,4.328888934516419,4.328888934516419,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,3,1,310,-11433.00275883405,0,0,0,1282.286982377903 -11461,14125,25642,-9,25640,25639,1,1,25,0,0,0,1,1,-9,0,4,7.936810579176012,7.970186226113371,0,0,0,-1024.623279658062,0,1,1,2019,14,4,35,35,1,4,1,10.23443116339378,10.23443116339378,0,0,0,0,0,1,1,0,0,0,34.93,58.4,-9,-9,3.333333333333333,1,1,0,0,3,8,4,1,517,-12693.12521996536,2610.919749305277,0,0,1354.877642165367 -11461,14126,25643,-9,25640,25639,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1044.059948441306,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,0,8,1,1,358,-8588.603688533049,0,0,0,126.5722164422724 -11462,14127,25644,-9,-9,25645,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1038.241902581793,-9,-9,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,834,119233.2759268488,64586.65367843794,86031.67401877727,14738.29248497618,1653.812914213139 -11462,14127,25645,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.579072674652069,8.666752792033057,0,0,0,-978.3229490189105,0,-9,-9,2019,7,0,52,46,1,0,0,11.87896718442451,11.87896718442451,0,0,0,0,0,1,1,0,3.943905261537866,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,834,119233.2759268488,64586.65367843794,86031.67401877727,14738.29248497618,1653.812914213139 -11462,14128,25646,-9,-9,25645,1,0,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-955.3684270466639,1,-9,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.377807884810863,0,50.18,52.62,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,1164,-78311.21427459014,0,0,0,-289.4454980713965 -11463,14129,25647,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.975694606808955,7.542182704548659,0,0,-943.9689559051593,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.959200040121924,7.032670454326795,62.49,55.09,-9,-9,10,1,1,0,0,7,13,3,1,222,646924.389123574,233307.7860953212,288720.0438325204,0,1665.896763723856 -11464,14130,25648,-9,25649,25650,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.896393993945,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,5,5,1,1243.6,1620601.986084407,977906.2233562708,313861.6005512525,0,4553.108144218376 -11464,14130,25649,25650,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.395673890433715,7.565838465707969,0,19,-4,-.4288786393760702,0,2,3,2019,8,1,20,20,1,1,0,10.82934320030263,10.82934320030263,0,0,0,0,0,1,1,0,.8512762183826936,0,51.77,58.57,52,55,8.333333333333334,1,1,0,0,7,5,5,1,1243.6,1620601.986084407,977906.2233562708,313861.6005512525,0,4553.108144218376 -11464,14130,25650,25649,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.049296088239736,9.071920856777599,0,19,4,-44.12162133614615,0,2,3,2019,9,0,44,41,1,1,0,24.90710184210457,24.90710184210457,0,0,0,0,0,1,1,0,6.793586429981744,0,52,55,51.77,58.57,7,1,1,0,0,8,5,5,1,1243.6,1620601.986084407,977906.2233562708,313861.6005512525,0,4553.108144218376 -11464,14130,25651,-9,25649,25650,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.794654666779,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,1243.6,1620601.986084407,977906.2233562708,313861.6005512525,0,4553.108144218376 -11464,14130,25652,-9,25649,25650,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.89546188097,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,5,1,1243.6,1620601.986084407,977906.2233562708,313861.6005512525,0,4553.108144218376 -11465,14131,25653,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.147608541574314,8.221614470316307,0,0,0,-1070.968509472386,0,3,-9,2019,6,0,42,40,1,0,0,8.756999743172711,8.756999743172711,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,724,288921.0890620035,31325.29212255686,184313.5786618286,0,1666.926683579649 -11466,14132,25654,25655,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.214312976459857,5.547508214383357,43,-3,80.25411957560321,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.468821277221183,5.584282750372954,57.91,48.98,67.34,37.81,10,1,1,0,0,0,5,5,1,2116.5,1422939.837601295,1108261.345481695,340502.7307894282,64511.93074276009,5848.411144705117 -11466,14132,25655,25654,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,9.042404709580058,9.408104844851373,43,3,-76.04950609797781,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.792290213115143,9.174253111394378,67.34,37.81,57.91,48.98,8.333333333333334,1,1,0,0,9,5,5,1,2116.5,1422939.837601295,1108261.345481695,340502.7307894282,64511.93074276009,5848.411144705117 -11467,14133,25656,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,9.023993860224484,9.069078674199439,0,0,-1066.592271610361,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.9908522085824,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,120,764697.6016743252,571004.1475395305,160971.5482728221,0,5935.474401168372 -11468,14134,25657,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1054.407728768343,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.01,30.2,-9,-9,3.333333333333333,1,1,0,1,0,5,1,0,281,0,0,0,0,1132.626249698696 -11469,14135,25658,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,1,0,0,0,0,0,-926.619237553675,0,2,2,2019,20,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,39.55,23.45,-9,-9,5,1,1,0,0,0,9,1,0,115,116393.4020875947,0,0,0,571.4098521086304 -11470,14136,25659,25660,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,55,-3,24.79069841417693,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.258192863596967,0,44.59,56.4,55.96,49.93,5,1,1,0,0,0,2,2,1,579.5,545875.1366281529,133702.8663559484,127062.555604062,0,1353.174347489389 -11470,14136,25660,25659,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.130326541512887,5.46694712439329,55,3,44.60818132829343,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.284633440635601,5.019335390658556,55.96,49.93,44.59,56.4,8.333333333333334,1,1,0,0,0,2,2,1,579.5,545875.1366281529,133702.8663559484,127062.555604062,0,1353.174347489389 -11471,14137,25661,25664,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.170047437876848,7.000941017060323,0,18,0,-61.60214300903969,0,2,-9,2019,10,0,24,20,1,0,0,6.612564240167362,6.612564240167362,0,0,0,0,0,1,1,0,0,0,61.04,39.41,54.37,54.8,8.333333333333334,1,1,0,0,1,6,3,1,391.5,205338.343274879,-17488.79232146718,65983.78904405267,44519.56906075974,2743.533749273637 -11471,14137,25662,-9,25661,25664,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-923.1215671194122,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,3,1,391.5,205338.343274879,-17488.79232146718,65983.78904405267,44519.56906075974,2743.533749273637 -11471,14137,25663,-9,25661,25664,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-930.916448535216,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,391.5,205338.343274879,-17488.79232146718,65983.78904405267,44519.56906075974,2743.533749273637 -11471,14137,25664,25661,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.266298090181067,8.119392015796535,0,18,9,-3.486722834593952,0,-9,-9,2019,11,2,40,40,1,2,0,11.30297497626864,11.30297497626864,0,0,0,0,0,1,1,0,3.664086596869148,0,54.37,54.8,61.04,39.41,8.333333333333334,1,1,0,0,10,6,3,1,391.5,205338.343274879,-17488.79232146718,65983.78904405267,44519.56906075974,2743.533749273637 -11472,14138,25665,-9,25666,25667,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.775620546018,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,1,372.6666666666667,292580.8493140559,18152.07417692039,296804.1573914473,200123.0115343538,2462.371253743671 -11472,14138,25666,25667,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.19969360989713,7.926993593585529,0,4,2,26.74018160619089,0,-9,-9,2019,12,1,40,37,1,1,0,9.891475846449909,9.891475846449909,0,0,0,0,0,1,1,0,4.134436056805197,0,48.87,58.55,46.08,57.2,6.666666666666667,2,3,0,0,10,9,4,1,372.6666666666667,292580.8493140559,18152.07417692039,296804.1573914473,200123.0115343538,2462.371253743671 -11472,14138,25667,25666,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.333879767763474,7.975397329799642,0,4,-2,55.17533016185146,0,1,1,2019,21,9,30,32,1,9,0,17.26451007346758,17.26451007346758,0,0,0,0,0,1,1,0,1.986297144569934,0,46.08,57.2,48.87,58.55,3.333333333333333,1,1,0,0,10,9,4,1,372.6666666666667,292580.8493140559,18152.07417692039,296804.1573914473,200123.0115343538,2462.371253743671 -11473,14139,25668,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.148785888605715,8.238353533214049,0,0,0,-1076.059126729273,-9,-9,-9,2019,10,1,29,0,1,1,0,15.12866778033769,15.12866778033769,0,0,0,0,0,0,0,0,.3126740192609374,0,52.3,46.15,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,1027,71899.55136061185,-3942.725163188334,0,0,1410.787542868411 -11474,14140,25669,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.368882463551151,8.449514355974621,0,0,0,-897.172252878221,0,1,1,2019,9,0,39,43,1,0,0,15.85010939919416,15.85010939919416,0,0,0,0,0,0,0,0,2.902576532678601,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,113,533703.7470748755,295590.8398633468,0,0,2065.009499248362 -11475,14141,25670,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.443725466903643,8.46094379100702,0,0,0,-982.0131381745703,0,2,3,2019,9,0,70,80,1,0,0,6.483129758015321,6.483129758015321,0,0,0,0,0,0,0,0,1.771164547652807,0,51.73,58.82,-9,-9,1.666666666666667,1,1,0,0,5,11,4,0,632,40527.93551174246,78968.76273725135,150305.5616464168,66256.86083839642,1499.058623423662 -11476,14142,25671,-9,25672,25674,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.1037299036688,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,799.5,29090.46890904061,-66846.00779053933,179019.2819965435,151434.8783162144,2686.554585470437 -11476,14142,25672,25674,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.069653057014639,8.346696618503401,0,15,-3,25.42076665818704,0,2,2,2019,11,2,38,50,1,2,0,12.41207084677727,12.41207084677727,0,0,0,0,0,1,1,0,0,0,42.56,57.31,51.83,57.2,8.333333333333334,1,1,0,1,7,5,4,1,799.5,29090.46890904061,-66846.00779053933,179019.2819965435,151434.8783162144,2686.554585470437 -11476,14142,25673,-9,25672,25674,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.2836730229272,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,799.5,29090.46890904061,-66846.00779053933,179019.2819965435,151434.8783162144,2686.554585470437 -11476,14142,25674,25672,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.22743099171802,8.021826923254547,0,15,3,110.0115073037181,0,2,2,2019,10,1,40,41,1,1,0,9.803621269444594,9.803621269444594,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.56,57.31,8.333333333333334,1,1,0,0,11,5,4,1,799.5,29090.46890904061,-66846.00779053933,179019.2819965435,151434.8783162144,2686.554585470437 -11477,14143,25675,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.320552520635933,6.40935913026258,0,0,-1079.49843300216,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.296116141228397,39.2,32.39,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,245,120520.1651760383,172455.2897946813,0,0,1409.600959513574 -11478,14144,25676,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.856144545859282,6.886747895748397,0,0,-1061.146941816958,0,2,2,2019,15,4,0,23,4,4,0,0,0,0,0,0,0,0,0,0,0,0,7.407685583501242,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,10,7,2,1,1846,724595.8470452316,238628.8618933576,332530.3994173036,0,458.6779278665651 -11479,14145,25677,25679,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,3.635826925376715,5.386842981721797,4.85468979644112,5,1,30.81541250243768,0,2,2,2019,15,6,50,0,1,6,0,.1013314983111778,.1013314983111778,0,0,0,0,0,1,1,0,5.238068639168008,0,42.6,35.77,35.67,58.05,6.666666666666667,1,1,0,0,3,9,3,0,1281.75,43333.0032061524,-51904.58628276191,188902.6914478375,117906.7367962667,2045.110430763954 -11479,14145,25678,-9,25677,25679,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.333301954618,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1281.75,43333.0032061524,-51904.58628276191,188902.6914478375,117906.7367962667,2045.110430763954 -11479,14145,25679,25677,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,8.370256399871083,8.371095143554955,0,5,-1,-96.90177346238792,0,-9,-9,2019,21,9,86,43,1,9,0,4.766504900908238,4.766504900908238,0,0,0,0,0,1,1,0,0,0,35.67,58.05,42.6,35.77,6.666666666666667,1,1,0,0,11,9,3,0,1281.75,43333.0032061524,-51904.58628276191,188902.6914478375,117906.7367962667,2045.110430763954 -11479,14145,25680,-9,25677,25679,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1058.610145221627,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,3,0,1281.75,43333.0032061524,-51904.58628276191,188902.6914478375,117906.7367962667,2045.110430763954 -11480,14146,25681,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1081.246244203349,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,42.36,24.02,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,2437,258306.5531454001,0,189432.6213966118,0,1928.736599630521 -11480,14147,25682,-9,25681,-9,1,0,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-827.2324344860817,0,3,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,25.73,-9,-9,5,1,1,0,0,1,10,1,0,155,236756.4920178303,0,0,0,1343.421529384422 -11481,14148,25683,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1027.017989394649,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,141,136001.858649328,0,156559.6522594198,0,848.8360008241352 -11482,14149,25684,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.680304882696918,8.612401913488142,0,0,0,-1036.082457157704,0,-9,-9,2019,6,0,48,56,1,0,0,13.49056720057947,13.49056720057947,0,0,0,0,0,1,1,0,0,0,53.34,40.18,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,3921,17232.35728770993,27591.14806533847,-18463.40722756307,0,3109.815679937396 -11483,14150,25685,25686,-9,-9,1,0,47,1,1,0,3,3,-9,1,1,0,5.992556957355888,6.324588032982749,8,1,-19.63253116466606,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,6.149738852228038,0,30.77,22.6,30.94,22.58,3.333333333333333,1,1,0,0,0,10,2,0,390,625857.3173307293,487632.7968991232,0,0,2720.319938020704 -11483,14150,25686,25685,-9,-9,1,1,46,1,1,0,2,2,-9,1,1,0,0,0,8,-1,-43.83300560357631,-9,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.94,22.58,30.77,22.6,5,1,1,0,0,0,10,2,0,390,625857.3173307293,487632.7968991232,0,0,2720.319938020704 -11484,14151,25687,-9,-9,25689,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1000.698924973912,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,5,1,288.3333333333333,-4008.45994566525,-14600.70085153348,0,0,3993.895308439143 -11484,14151,25688,-9,-9,25689,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.999967636059,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,288.3333333333333,-4008.45994566525,-14600.70085153348,0,0,3993.895308439143 -11484,14151,25689,-9,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.271903166446483,9.472565200968504,0,0,0,-1102.708767189955,-9,1,2,2019,16,4,48,0,1,4,0,29.15761199782775,29.15761199782775,0,0,0,0,0,0,0,0,0,0,36.42,56.52,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,288.3333333333333,-4008.45994566525,-14600.70085153348,0,0,3993.895308439143 -11485,14152,25690,25691,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,4,-5,34.59629116958936,0,-9,3,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,24.41,45.73,57.57,5,1,1,0,1,8,4,2,1,1552,593519.5892041246,75899.58141944118,274387.7266840895,0,892.1656248932953 -11485,14152,25691,25690,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.634365131910759,7.205397067101487,40,5,106.4313566507315,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,10.31170308153776,0,2,1,1,0,0,6.948653153539905,45.73,57.57,32.38,24.41,6,1,1,0,1,10,4,2,1,1552,593519.5892041246,75899.58141944118,274387.7266840895,0,892.1656248932953 -11486,14153,25692,25693,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.260605355316128,8.187933151913436,0,4,-2,4.885322459135776,0,-9,-9,2019,9,1,37,37,1,1,0,13.92121645119071,13.92121645119071,0,0,0,0,0,0,0,0,2.073768401414595,0,54.79,55.86,36.48,53.7,5,1,1,0,0,4,11,5,1,191.5,137683.8220833029,5404.421884009778,198895.5660237378,76728.94679720874,2909.173157589875 -11486,14153,25693,25692,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.228117788154501,8.36333202779147,0,4,2,63.91459111761442,0,2,2,2019,14,2,37,37,1,2,0,11.92969417318935,11.92969417318935,0,0,0,0,0,0,0,0,1.403160026406906,0,36.48,53.7,54.79,55.86,3.333333333333333,1,1,0,0,9,11,5,1,191.5,137683.8220833029,5404.421884009778,198895.5660237378,76728.94679720874,2909.173157589875 -11487,14154,25694,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.020489665066137,9.119512303815116,0,0,0,-942.7231838534151,0,1,1,2019,10,0,40,40,1,0,0,21.04982717262179,21.04982717262179,0,0,0,0,0,1,1,0,3.481860378752136,0,56.35,51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,243,155894.3793439059,148850.7280297483,147155.6099023637,108922.2088677035,2785.980999318322 -11488,14155,25695,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.3170699546167,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,31.94,-9,-9,5,1,1,0,0,10,12,1,0,1723,45309.2521083851,0,84854.44250335502,0,937.1325641164452 -11489,14156,25696,25697,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,8,8,0,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,41.71,33.65,5,1,1,0,0,5,5,2,0,329.5,-61133.34039233525,-19428.51525386566,0,0,2309.904244799569 -11489,14156,25697,25696,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,8,-8,0,0,-9,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,41.71,33.65,30.6,18.53,5,1,1,0,0,1,5,2,0,329.5,-61133.34039233525,-19428.51525386566,0,0,2309.904244799569 -11490,14157,25698,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,7.407195143279047,7.328272788728522,0,0,-1025.744927205108,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.498848786280819,7.158521253930442,44.12,44.92,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,342,882748.5709890792,365800.5400159846,68198.84746764974,0,1242.229607670051 -11491,14158,25699,-9,25700,25702,1,0,24,0,1,0,1,1,-9,0,4,8.367481169898097,8.459876994149074,0,0,0,-1060.859415454673,0,3,3,2019,6,0,18,38,1,0,1,27.43279799096896,27.43279799096896,0,0,0,0,14.5,1,1,0,0,0,62.67,49.54,-9,-9,1.666666666666667,2,3,0,0,4,8,4,0,182,-137976.7193457631,0,0,0,1465.092225439928 -11491,14159,25700,25702,-9,-9,1,0,51,0,1,0,3,3,-9,1,4,0,0,0,6,-2,-76.67993468131243,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,53,54,8,2,3,0,0,0,8,3,0,838.3333333333334,186424.4842610269,12128.29264585443,125621.2798305142,88410.36389823566,2804.218801631383 -11491,14159,25701,-9,25700,25702,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.7774973908208,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,838.3333333333334,186424.4842610269,12128.29264585443,125621.2798305142,88410.36389823566,2804.218801631383 -11491,14159,25702,25700,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,0,8.29515539670188,7.907395422214775,6,2,104.8791081365464,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.092081075155984,8.377682749653053,53,54,51,54,8,4,3,1,0,0,8,3,0,838.3333333333334,186424.4842610269,12128.29264585443,125621.2798305142,88410.36389823566,2804.218801631383 -11491,14160,25703,-9,25700,25702,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1070.49540127883,-9,3,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,52.65,51.64,-9,-9,5,2,3,0,0,0,8,2,0,689,121670.4152847815,0,0,0,0 -11492,14161,25704,25705,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.469922849327162,8.521533871540244,0,10,-3,-72.91491127514782,0,-9,3,2019,6,0,36,51,1,0,0,13.88341339896545,13.88341339896545,0,0,0,0,0,1,1,0,0,0,48,49,51.47,53.17,10,1,1,0,0,11,11,4,0,472.5,1021492.468381978,721992.034277379,115238.6578429013,0,2219.206223426435 -11492,14161,25705,25704,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,6.561306775948203,6.74924306026519,10,3,-123.4291382501341,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.401064375375177,6.595614242572687,51.47,53.17,48,49,8.333333333333334,1,1,0,0,10,11,4,0,472.5,1021492.468381978,721992.034277379,115238.6578429013,0,2219.206223426435 -11492,14162,25706,-9,25704,25705,1,1,35,0,0,0,2,2,-9,1,2,0,0,0,0,0,-885.4518829523154,0,3,3,2019,28,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,23.85,44.64,-9,-9,6.666666666666667,1,1,0,0,1,11,1,0,528,0,0,0,0,189.1257742549668 -11493,14163,25707,-9,25708,-9,1,1,37,0,0,0,2,2,-9,0,2,8.44506030237771,8.42149661159258,0,0,0,-1055.608718677875,0,2,-9,2019,14,3,51,58,1,3,0,10.94567620163849,10.94567620163849,0,0,0,0,0,1,1,0,.8170973084793196,0,57.09,27.93,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,306,152834.6300013659,-133420.3933122568,0,0,1862.16016110505 -11493,14164,25708,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.610106062244686,7.566366547619258,5.21323668240646,0,0,-1131.197529413506,0,-9,-9,2019,17,5,27,29,1,5,0,8.012736844279212,8.012736844279212,0,0,0,0,0,1,1,0,2.670042561058422,5.51792648308499,43.62,50.48,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,287,89850.05578595003,-64133.50009101503,0,0,1704.482560299899 -11494,14165,25709,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-892.9679901598907,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.004558244483531,0,55.45,48.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,174,212981.1829466201,0,0,0,393.749876676327 -11494,14166,25710,-9,25709,-9,1,0,50,0,0,0,3,3,-9,0,4,7.363161335145143,7.276515950447843,0,0,0,-1005.834970808044,0,3,3,2019,9,0,22,23,1,0,0,8.291953668014616,8.291953668014616,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,294,-106930.4935248279,45034.19604636785,0,0,946.0797249453107 -11495,14167,25711,-9,25714,25712,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.2673622234786,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,533.25,409140.3389713154,287601.926059541,193076.3075453222,40598.26949520584,3541.709900246307 -11495,14167,25712,25714,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.793082615065627,8.598520164309255,0,8,4,-10.70677548421776,0,2,2,2019,9,0,45,45,1,0,0,16.07796140973953,16.07796140973953,0,0,0,0,0,1,1,0,1.69364105772797,0,47.26,54.06,42.1,55.1,8.333333333333334,1,1,0,0,6,2,4,1,533.25,409140.3389713154,287601.926059541,193076.3075453222,40598.26949520584,3541.709900246307 -11495,14167,25713,-9,25714,25712,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.373055968779,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,533.25,409140.3389713154,287601.926059541,193076.3075453222,40598.26949520584,3541.709900246307 -11495,14167,25714,25712,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.196709066754428,7.260450570432507,0,20,-4,-58.81298757708858,0,3,2,2019,11,0,20,16,1,0,0,6.611611438632354,6.611611438632354,0,0,0,0,2,1,1,0,2.333634268657508,0,42.1,55.1,47.26,54.06,8.333333333333334,1,1,0,0,11,2,4,1,533.25,409140.3389713154,287601.926059541,193076.3075453222,40598.26949520584,3541.709900246307 -11496,14168,25715,25716,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,8.072596676476845,8.14180570609539,2,0,-36.67605710289457,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.011001756924064,8.091410925664748,48.7,53.36,30.53,65.61,8.333333333333334,1,1,0,0,8,6,3,1,865.5,500558.344988622,185530.9259220674,220218.1229388335,59275.40118416026,3361.760502942577 -11496,14168,25716,25715,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,4.638834579554615,4.528182325457479,25,0,64.44499896482647,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.266613617630827,4.235233401206146,30.53,65.61,48.7,53.36,3.333333333333333,1,1,0,1,8,6,3,1,865.5,500558.344988622,185530.9259220674,220218.1229388335,59275.40118416026,3361.760502942577 -11496,14169,25717,-9,25716,25715,1,1,22,0,0,0,2,2,-9,0,3,8.218850596816777,8.08306030113679,0,0,0,-1090.966697462425,-9,2,2,2019,15,3,40,0,1,3,0,7.426484513429913,7.426484513429913,0,0,0,0,0,1,1,0,.7345827174240801,0,26.69,60.83,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,94,-14063.51096890791,0,0,0,1146.735592397456 -11497,14170,25718,-9,-9,25719,1,1,38,0,0,0,2,2,-9,0,3,9.208519064702369,9.604132534730288,0,0,0,-1021.401751894443,0,3,3,2019,9,0,50,60,1,0,0,28.23522912249622,28.23522912249622,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,262,576201.2664910662,197277.9119068385,225270.2963494892,98780.67133557302,4043.663922336516 -11497,14171,25719,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-905.4599507848097,0,-9,-9,2019,10,0,0,60,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,4,6,0,0,0,7,1,1,542,248251.0519056398,34651.23219989499,275183.5075406806,0,-256.5889423590926 -11498,14172,25720,25721,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.647457057023347,8.716700923573608,0,15,0,-30.45136518395222,0,2,2,2019,5,0,47,35,1,0,0,15.28886874835237,15.28886874835237,0,0,0,0,0,1,1,0,0,0,62.27,48.47,55.22,46.37,10,1,1,0,0,10,2,4,1,1454.75,268204.2994224539,240765.5487839197,227837.1284782995,140896.3775262821,3126.506841874389 -11498,14172,25721,25720,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.962322348057906,6.831360702934226,0,15,0,-42.38993979614693,0,2,2,2019,10,0,18,25,1,0,0,6.542734504439305,6.542734504439305,0,0,0,0,0,1,1,0,0,0,55.22,46.37,62.27,48.47,8.333333333333334,1,1,0,0,8,2,4,1,1454.75,268204.2994224539,240765.5487839197,227837.1284782995,140896.3775262821,3126.506841874389 -11498,14172,25722,-9,25721,25720,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.629367087106,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1454.75,268204.2994224539,240765.5487839197,227837.1284782995,140896.3775262821,3126.506841874389 -11498,14172,25723,-9,25721,25720,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.416661924419,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1454.75,268204.2994224539,240765.5487839197,227837.1284782995,140896.3775262821,3126.506841874389 -11499,14173,25724,25725,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,8.324810001571739,7.941331286135773,0,8,-3,34.83170331454955,0,3,3,2019,8,0,40,40,1,0,0,12.79205831651424,12.79205831651424,0,0,0,0,0,1,1,0,0,0,57.33,53.46,55.19,54.26,8.333333333333334,1,1,0,0,9,6,5,1,440.5,395448.3659982951,175001.2620366418,415897.5976082963,0,5541.961278815009 -11499,14173,25725,25724,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,9.107107827586574,9.176746025916824,0,8,3,-32.65196833787614,0,3,2,2019,7,0,50,50,1,0,0,18.28640014074079,18.28640014074079,1,0,0,0,0,1,1,0,0,0,55.19,54.26,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,440.5,395448.3659982951,175001.2620366418,415897.5976082963,0,5541.961278815009 -11500,14174,25726,-9,25727,25730,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-945.5650276085995,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,7,1,1,0,0,0,22.77,67.73999999999999,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,1314.2,41914.16234485976,-32279.44812771933,161716.9679832374,95146.34192249202,2838.393162322368 -11500,14174,25727,25730,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,7.859851201148072,7.943094775588314,0,6,-2,-111.9563546813537,0,2,1,2019,6,0,40,43,1,0,0,9.229034483631457,9.229034483631457,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.98,33.49,8.333333333333334,1,1,0,0,7,2,3,1,1314.2,41914.16234485976,-32279.44812771933,161716.9679832374,95146.34192249202,2838.393162322368 -11500,14174,25728,-9,25727,25730,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.790341428265,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,1314.2,41914.16234485976,-32279.44812771933,161716.9679832374,95146.34192249202,2838.393162322368 -11500,14174,25729,-9,25727,25730,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.009000845534,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,1314.2,41914.16234485976,-32279.44812771933,161716.9679832374,95146.34192249202,2838.393162322368 -11500,14174,25730,25727,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.200845933968166,8.093821305756057,0,6,2,29.24583017666265,0,2,2,2019,8,0,40,39,1,0,0,10.56329797376989,10.56329797376989,0,0,0,0,0,1,1,0,0,0,50.98,33.49,54.79,55.86,8.333333333333334,1,1,0,0,7,2,3,1,1314.2,41914.16234485976,-32279.44812771933,161716.9679832374,95146.34192249202,2838.393162322368 -11500,14175,25731,-9,25727,25730,1,0,19,0,3,1,2,0,0,0,2,0,0,0,0,0,-918.0978502303948,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.45,33.75,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,471,2910.156499297967,0,0,0,0 -11501,14176,25732,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.376785506758427,8.210804482211238,0,0,0,-956.0392149137006,0,3,3,2019,13,3,34,34,1,3,0,15.68649390113964,15.68649390113964,0,0,0,0,2,0,0,0,0,0,33.6,62.94,-9,-9,1.666666666666667,1,1,0,0,10,7,4,1,743,6770.766721617591,158241.1133066523,0,0,1568.429738730561 -11501,14177,25733,-9,25732,-9,1,0,22,0,0,0,2,2,-9,0,2,7.032159315392281,6.905941055182877,0,0,0,-1013.532093804577,0,2,2,2019,14,4,18,20,1,4,1,4.912391318556553,4.912391318556553,0,0,0,0,0,0,0,0,0,0,48.36,30.91,-9,-9,8.333333333333334,1,1,0,0,3,7,2,1,204,-73021.61351190312,0,0,0,812.0703696929513 -11502,14178,25734,25735,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.966445934014162,8.608919136786106,6.239841236969503,11,3,-134.8251405729673,0,3,2,2019,18,6,37,40,1,6,0,19.84274899502854,19.84274899502854,0,0,0,0,2,0,0,0,6.637634172049158,0,43.14,35.81,21.24,59.82,5,1,1,0,0,12,10,5,1,414.5,66214.70407632434,-3839.489773206067,388688.534623477,224987.4679492985,4546.260356327655 -11502,14178,25735,25734,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.584643277563597,8.595534844485982,0,11,-3,61.66682366375306,0,3,2,2019,16,6,37,37,1,6,0,18.57732197456034,18.57732197456034,0,0,0,0,2,0,0,0,4.130655911719608,0,21.24,59.82,43.14,35.81,5,1,1,0,0,11,10,5,1,414.5,66214.70407632434,-3839.489773206067,388688.534623477,224987.4679492985,4546.260356327655 -11503,14179,25736,25737,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,28,0,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.831822198668551,0,58.57,37.75,60.02,56.42,8.333333333333334,1,1,0,0,0,6,1,1,1035,537957.5530617875,222589.9260163226,285689.538320626,0,2154.722990769522 -11503,14179,25737,25736,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,0,0,4,0,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.30864186108311,0,60.02,56.42,58.57,37.75,10,1,1,0,0,0,6,1,1,1035,537957.5530617875,222589.9260163226,285689.538320626,0,2154.722990769522 -11504,14180,25738,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.411927618931911,8.515234070730603,0,0,0,-1039.866746989274,0,-9,-9,2019,12,0,40,40,1,0,0,14.88528634428152,14.88528634428152,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,5,1,1,0,0,5,10,5,1,353,69818.71610296168,0,0,0,1787.170339782975 -11505,14181,25739,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.086129224554831,8.221616378693824,0,0,0,-1052.919160591215,0,3,3,2019,8,0,42,45,1,0,0,9.988807022114489,9.988807022114489,0,0,0,0,0,0,0,0,0,0,59.53,27.3,-9,-9,8.333333333333334,3,4,0,1,12,9,4,1,3002,939657.530964677,408846.5857906718,373326.6777647158,0,1106.918660306923 -11506,14182,25740,25741,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.340452362562385,5.664652160483848,10,1,-46.25127818995269,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.731439312058646,0,0,1,1,0,0,5.475878885707512,48.26,53.44,53.98,50.87,8.333333333333334,1,1,0,0,0,11,3,1,497.5,517598.2256284741,0,489875.0486402553,0,2492.027573999283 -11506,14182,25741,25740,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,8.03309374979492,7.927437804010109,10,-1,21.13592013481631,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.961492139675468,53.98,50.87,48.26,53.44,8.333333333333334,1,1,0,0,0,11,3,1,497.5,517598.2256284741,0,489875.0486402553,0,2492.027573999283 -11507,14183,25742,25743,-9,-9,1,1,55,0,0,0,1,1,-9,1,1,0,7.175608541167085,7.187644296209907,14,16,-3.998163419602996,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.114438348801037,7.156998857779227,54.78,25.18,58.89,48.6,1.666666666666667,1,1,0,0,6,2,3,1,1088.5,296284.7464395014,197286.1746495144,0,0,2792.711285436485 -11507,14183,25743,25742,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.02214602849323,7.862862672654403,0,14,-16,-20.18145606855751,0,2,1,2019,4,0,34,46,1,0,0,8.754672252789199,8.754672252789199,0,0,0,0,2,1,1,0,2.956990502300432,0,58.89,48.6,54.78,25.18,8.333333333333334,1,1,0,0,8,2,3,1,1088.5,296284.7464395014,197286.1746495144,0,0,2792.711285436485 -11508,14184,25744,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,5.859037322405585,6.214791636174425,0,0,-1119.77987463792,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.804558718766292,5.75753307877878,47.26,32.8,-9,-9,6.666666666666667,1,1,0,0,6,2,2,0,633,14559.61941019283,110374.6178529414,0,0,1236.863355654373 -11509,14185,25745,25746,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.576948864393369,8.793751149200196,0,7,3,-45.67502110210683,0,2,2,2019,17,5,39,39,1,5,0,17.66615371902195,17.66615371902195,0,0,0,0,0,1,1,0,0,0,44.29,51.01,49.63,54.22,3.333333333333333,1,1,0,0,8,9,4,1,1136.5,25817.20037813944,-26586.09152493528,257316.0163091213,153551.3844966309,3412.121013931232 -11509,14185,25746,25745,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.879435148731024,7.790974837754038,0,7,-3,13.86492897627196,0,3,2,2019,7,2,40,40,1,2,0,4.895434115948595,4.895434115948595,0,0,0,0,0,1,1,0,0,0,49.63,54.22,44.29,51.01,6.666666666666667,1,1,0,0,7,9,4,1,1136.5,25817.20037813944,-26586.09152493528,257316.0163091213,153551.3844966309,3412.121013931232 -11509,14185,25747,-9,25745,25746,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.7032347588485,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1136.5,25817.20037813944,-26586.09152493528,257316.0163091213,153551.3844966309,3412.121013931232 -11509,14185,25748,-9,25745,25746,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.39268406395,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1136.5,25817.20037813944,-26586.09152493528,257316.0163091213,153551.3844966309,3412.121013931232 -11510,14186,25749,25750,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.879966625063956,8.206494346855457,0,8,0,-125.1165377621889,-9,3,2,2019,10,0,40,0,1,0,0,6.848225020705775,6.848225020705775,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.49,40.08,8.333333333333334,1,1,0,0,8,1,4,0,359,1032016.720743821,913195.2626080491,125304.5041000662,0,2579.206281177344 -11510,14186,25750,25749,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.365473921481959,8.355919307127666,0,8,0,-91.03908773696583,0,3,3,2019,8,1,72,96,1,1,0,5.635279161978315,5.635279161978315,0,0,0,0,0,0,0,0,0,0,51.49,40.08,57.33,53.46,5,1,1,0,0,10,1,4,0,359,1032016.720743821,913195.2626080491,125304.5041000662,0,2579.206281177344 -11511,14187,25751,25752,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,7.6906317862594,7.840887558151137,6,1,46.84376082168227,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,7.618824337047171,60.02,56.42,53.98,52.11,8.333333333333334,1,1,0,0,5,13,5,1,687,1973716.675410337,1501633.537277929,135061.2522590057,0,3461.542966557766 -11511,14187,25752,25751,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.872999444011388,8.872502471900436,0,6,-1,-103.6519388076808,0,3,3,2019,12,3,43,43,1,3,0,17.19810485365048,17.19810485365048,0,0,0,0,0,0,0,0,6.581382921216209,0,53.98,52.11,60.02,56.42,8.333333333333334,1,1,0,0,7,13,5,1,687,1973716.675410337,1501633.537277929,135061.2522590057,0,3461.542966557766 -11512,14188,25753,25754,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.939566366476139,6.757052387915055,8,-2,-15.49447583474973,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.171351125700008,7.398380214932808,58.72,51.29,54.69,57.47,8.333333333333334,1,1,0,0,0,2,3,1,375.5,650883.2212883336,364756.0805807635,-21296.41287530341,0,2208.0731786387 -11512,14188,25754,25753,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,6.751099875818181,6.607319882789684,8,2,2.008919090663126,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.064241462630057,6.931596881219488,54.69,57.47,58.72,51.29,8.333333333333334,1,1,0,0,0,2,3,1,375.5,650883.2212883336,364756.0805807635,-21296.41287530341,0,2208.0731786387 -11513,14189,25755,25756,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,7.575618654803246,7.63039116395189,0,17,-10,-52.07422185013315,0,3,3,2019,9,0,12,12,1,0,0,13.70992368243189,13.70992368243189,0,0,0,0,0,1,1,0,3.679179352777171,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,8,7,4,1,704.4,195457.4400975248,0,266866.5403677498,68466.53986134809,3915.226606294465 -11513,14189,25756,25755,-9,-9,1,1,57,0,3,0,1,1,-9,0,5,8.612688021094261,8.470470093661865,0,11,10,-2.381922067296443,0,2,3,2019,6,0,20,15,1,0,0,41.8668771887859,41.8668771887859,0,0,0,0,0,1,1,0,1.883080373338929,0,57.06,57.76,51.24,58.84,6.666666666666667,1,1,0,0,8,7,4,1,704.4,195457.4400975248,0,266866.5403677498,68466.53986134809,3915.226606294465 -11513,14189,25757,-9,25755,25756,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-977.1412099050734,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,704.4,195457.4400975248,0,266866.5403677498,68466.53986134809,3915.226606294465 -11513,14189,25758,-9,25755,25756,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.517465241099,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,704.4,195457.4400975248,0,266866.5403677498,68466.53986134809,3915.226606294465 -11513,14189,25759,-9,25755,25756,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1127.952210781154,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,1,704.4,195457.4400975248,0,266866.5403677498,68466.53986134809,3915.226606294465 -11514,14190,25760,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1016.405024132312,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.84,28.69,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1332,-76621.4635306889,0,0,0,1409.48454215772 -11515,14191,25761,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.695043107969857,8.697977065209983,0,0,0,-1147.395364771422,0,-9,-9,2019,8,0,55,67,1,0,0,11.33497038054413,11.33497038054413,0,0,0,0,0,0,0,0,3.385117777622284,0,51.66,54.88,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,826,338089.6883491414,-13130.26444417033,0,0,1583.834725583655 -11516,14192,25762,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,5.309351377541255,5.354876175508564,0,0,-1049.150394674366,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.819008405926578,5.192081930550158,56.83,21.19,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,2667,2809.813397530641,0,124920.3286004403,0,734.9279071945325 -11517,14193,25763,25764,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.865045021992423,8.091734393187377,0,28,-7,-.1753497220377792,0,2,2,2019,6,0,36,32,1,0,0,10.06957188989002,10.06957188989002,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.32,61.53,1.666666666666667,1,1,0,0,9,5,5,0,261.5,542835.1864152644,548013.0237759977,60853.68930092022,0,2630.607422218 -11517,14193,25764,25763,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.340357708905575,8.15087327826083,0,28,7,5.712823310293438,0,3,3,2019,9,0,39,40,1,0,0,11.1752676904151,11.1752676904151,0,0,0,0,2,0,0,0,3.098333898289959,0,45.32,61.53,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,0,261.5,542835.1864152644,548013.0237759977,60853.68930092022,0,2630.607422218 -11517,14194,25765,-9,25763,25764,1,1,22,0,0,0,2,2,-9,0,5,7.882644810227915,7.82361673937818,0,0,0,-1026.914950740093,0,2,2,2019,5,0,45,40,1,0,1,8.136945452108579,8.136945452108579,0,0,0,0,0,0,0,0,0,0,55.68,54.24,-9,-9,10,1,1,0,0,6,5,3,0,473,93033.96848325968,-96516.86989193111,0,0,1419.120280218808 -11518,14195,25766,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.652123438167788,8.834821916309682,0,0,0,-924.8793902422897,0,3,3,2019,9,0,95,48,1,0,0,9.086800394067581,9.086800394067581,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,12,5,0,418,1356521.40952514,939536.4763814796,174851.3794648309,0,2409.875732642711 -11519,14196,25767,25768,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,3.913018917200573,4.192904229793486,8,-1,-24.49814514847538,0,3,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.291639559543878,4.078600854396304,57.06,57.76,43.03,38.54,8.333333333333334,1,1,0,0,0,7,2,0,566,122742.5525898159,-14103.83035143866,206538.6250731159,0,1486.980709333755 -11519,14196,25768,25767,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,8,1,9.539543922336541,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,38.54,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,566,122742.5525898159,-14103.83035143866,206538.6250731159,0,1486.980709333755 -11520,14197,25769,25770,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.767736173843769,8.716769257589542,0,3,0,58.59690285580358,0,-9,-9,2019,15,5,41,41,1,5,0,19.14950979802376,19.14950979802376,0,0,0,0,2,0,0,0,0,0,36.62,58.96,48.78,53.38,8.333333333333334,1,1,0,0,6,9,5,1,963.5,191518.5473413346,100869.1506142695,245113.7918839217,167554.2764384238,4231.379179443318 -11520,14197,25770,25769,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.265661069010246,8.358702723045724,0,3,0,-6.262632531185391,0,-9,-9,2019,7,1,38,40,1,1,0,10.83070968731896,10.83070968731896,0,0,0,0,0,0,0,0,0,0,48.78,53.38,36.62,58.96,8.333333333333334,1,1,0,0,7,9,5,1,963.5,191518.5473413346,100869.1506142695,245113.7918839217,167554.2764384238,4231.379179443318 -11521,14198,25771,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.556828667282648,10.007285104485,0,0,0,-953.453460307756,0,1,1,2019,8,0,55,70,1,0,0,31.24772620066062,31.24772620066062,0,0,0,0,0,0,0,0,7.369003219837282,0,40.2,61.22,-9,-9,6.666666666666667,1,1,0,0,13,8,5,0,984,613846.2418872222,265093.3545324099,416892.4713361411,0,5914.690272205926 -11522,14199,25772,25773,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,10,8,1.607485754090577,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,48.15,37.16,3.333333333333333,1,1,0,0,5,5,3,0,151.5,1312919.925524425,535212.7819254908,389380.5742501114,56559.6805365805,2835.02166922784 -11522,14199,25773,25772,-9,-9,1,0,54,0,0,0,3,3,-9,1,3,7.971231341052154,8.181269502784685,0,10,-8,28.22742868351053,0,-9,2,2019,12,0,35,0,1,0,0,9.837762179043773,9.837762179043773,0,0,0,0,42,1,1,0,0,0,48.15,37.16,27.89,18.61,5,1,1,0,0,2,5,3,0,151.5,1312919.925524425,535212.7819254908,389380.5742501114,56559.6805365805,2835.02166922784 -11523,14200,25774,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,0,0,-867.1927010097198,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.07,46.71,-9,-9,5,1,1,1,0,10,11,1,1,3321,-99392.45820887361,0,0,0,-363.7206398868328 -11524,14201,25775,25777,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.352971942479972,7.595423006774292,0,29,-1,-51.8610603407216,0,2,2,2019,11,1,30,31,1,1,0,8.598704256001707,8.598704256001707,0,0,0,0,2,1,1,0,1.018787802181902,0,56.18,53.85,56.19,46.16,8.333333333333334,1,1,0,0,12,9,4,1,513.3333333333334,1339345.888992883,1035412.710964563,455604.7105668552,157691.1637065594,2321.496696346464 -11524,14201,25776,-9,25775,25777,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1098.09533955291,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,513.3333333333334,1339345.888992883,1035412.710964563,455604.7105668552,157691.1637065594,2321.496696346464 -11524,14201,25777,25775,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.300269973761397,8.43691054509047,0,29,1,30.28019081298452,0,2,3,2019,10,1,37,37,1,1,0,13.6096989320494,13.6096989320494,0,0,0,0,0,1,1,0,2.0446984795713,0,56.19,46.16,56.18,53.85,6.666666666666667,1,1,0,0,12,9,4,1,513.3333333333334,1339345.888992883,1035412.710964563,455604.7105668552,157691.1637065594,2321.496696346464 -11525,14202,25778,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-942.143729795104,0,2,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,2.800057596944262,0,38.43,29.81,-9,-9,5,1,1,0,0,0,2,2,0,1737,84243.60619909898,30588.02082784725,0,0,2655.605867645981 -11526,14203,25779,25780,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.351237871234098,8.368576329483847,0,27,3,49.89733450915861,0,2,2,2019,19,7,53,50,1,7,0,7.341363631114328,7.341363631114328,0,0,0,0,0,0,0,0,5.580865260414518,0,43.09,34.34,35.01,46.56,3.333333333333333,1,1,0,0,6,11,4,1,463.5,315566.1184819947,221556.055875562,79256.40680299672,51113.77674142437,1528.720164101426 -11526,14203,25780,25779,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,6.855853720024363,6.937082626439412,0,27,-3,-28.92137250541879,0,3,3,2019,11,0,18,18,1,0,0,6.064275119951656,6.064275119951656,0,0,0,0,27,0,0,0,0,0,35.01,46.56,43.09,34.34,8.333333333333334,1,1,0,0,7,11,4,1,463.5,315566.1184819947,221556.055875562,79256.40680299672,51113.77674142437,1528.720164101426 -11526,14204,25781,-9,25780,25779,1,1,24,0,0,0,1,1,-9,0,4,8.472942068996373,8.500218010291054,0,0,0,-932.5365566331885,0,2,2,2019,11,1,40,40,1,1,1,14.02380746012809,14.02380746012809,0,0,0,0,0,0,0,0,0,0,36.43,58.86,-9,-9,5,1,1,0,0,7,11,4,1,593,-215859.5498240397,29794.44406932976,0,0,1848.69798383093 -11526,14205,25782,-9,25780,25779,1,0,21,0,0,0,2,2,1,0,5,6.0627227942454,5.97609317406038,0,0,0,-1084.158604213789,-9,2,2,2019,15,5,8,0,1,5,1,5.493326596417992,5.493326596417992,0,0,0,0,0,0,0,0,4.20120722379843,0,28.3,65.67,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,420,35029.67161303903,0,0,0,171.2353761607861 -11527,14206,25783,25784,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,46,3,-.4960047519269395,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,6.309651168692757,0,51,48,33.97,57.61,7,1,1,0,0,0,6,2,1,1813,379952.7079104985,207469.4046907649,182103.2433055389,0,904.4815720049359 -11527,14206,25784,25783,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.330297547544165,6.952472733957014,46,-3,-37.98320528536126,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,.8725895101531699,6.797541726542884,33.97,57.61,51,48,6.666666666666667,1,1,0,0,10,6,2,1,1813,379952.7079104985,207469.4046907649,182103.2433055389,0,904.4815720049359 -11528,14207,25785,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.055273238300698,8.082371156474899,0,0,0,-1061.877932417757,0,3,3,2019,10,0,65,40,1,0,0,5.018371232122431,5.018371232122431,0,0,0,0,2,1,1,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,323,-4160.928092167611,24676.28400319027,231256.0917440451,31443.0105291335,1313.890361008487 -11529,14208,25786,25787,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.801901236997114,7.750741336480529,0,3,-4,156.1980865952912,0,2,3,2019,6,0,39,39,1,0,0,6.225798948424185,6.225798948424185,0,0,0,0,0,1,1,0,0,0,54.69,57.47,49,58,8.333333333333334,1,1,0,0,8,13,4,1,646.3333333333334,397086.4862631608,-16907.04540157997,284868.5137761477,200460.0961173688,3745.012514685176 -11529,14208,25787,25786,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.490118580593997,8.266350861940632,0,3,4,-73.64223937515651,0,-9,-9,2019,10,0,37,31,1,1,0,13.38117840233495,13.38117840233495,0,0,0,0,0,1,1,0,0,0,49,58,54.69,57.47,7,1,1,0,0,1,13,4,1,646.3333333333334,397086.4862631608,-16907.04540157997,284868.5137761477,200460.0961173688,3745.012514685176 -11529,14208,25788,-9,25786,25787,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.089299666301,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,1,646.3333333333334,397086.4862631608,-16907.04540157997,284868.5137761477,200460.0961173688,3745.012514685176 -11530,14209,25789,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.641261946434975,8.275512875910124,0,0,0,-942.7880128298583,0,-9,-9,2019,7,1,36,35,1,1,0,17.20725412374852,17.20725412374852,0,0,0,0,0,0,0,0,7.84072888404021,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,1051,285316.7884892721,151853.5283348636,256112.0869997325,101855.8964726925,3106.208981819296 -11531,14210,25790,25791,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.897317399076039,9.591014148923517,0,6,6,65.2595535745312,0,-9,-9,2019,10,0,40,35,1,0,0,56.69912652937061,56.69912652937061,0,0,0,0,0,0,0,0,2.977956161353803,0,54.2,57.49,46.44,59.62,1.666666666666667,1,1,0,0,6,9,5,1,652.5,1914170.136561407,1420681.387666757,532047.1819243245,0,10448.31257243381 -11531,14210,25791,25790,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.060185388817606,8.936101110944316,0,6,-6,-101.5307731541805,0,2,3,2019,12,1,50,50,1,1,0,17.81243906768173,17.81243906768173,0,0,0,0,0,0,0,0,2.431666387376871,0,46.44,59.62,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,652.5,1914170.136561407,1420681.387666757,532047.1819243245,0,10448.31257243381 -11532,14211,25792,25793,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.688027712729834,8.69604331254514,0,14,2,82.28547619596752,0,3,3,2019,9,0,47,43,1,0,0,15.79616529148535,15.79616529148535,0,0,0,0,0,0,0,0,0,0,43.57,62.68,41.37,42.7,8.333333333333334,3,4,0,1,9,7,5,1,475.5,98031.165536061,47694.22135583563,225004.7038456339,98120.16643819818,2657.21026398959 -11532,14211,25793,25792,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,6.607696140495672,6.55263570931367,0,14,-2,47.87198338803653,0,3,3,2019,13,2,15,18,1,2,0,4.837464410827064,4.837464410827064,0,0,0,0,0,0,0,0,0,0,41.37,42.7,43.57,62.68,3.333333333333333,1,1,0,1,8,7,5,1,475.5,98031.165536061,47694.22135583563,225004.7038456339,98120.16643819818,2657.21026398959 -11533,14212,25794,25795,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.27373336849817,7.715064974157196,4.708624426903847,3,-2,101.9623161067195,0,3,3,2019,7,1,20,20,1,1,0,8.593851705870753,8.593851705870753,0,0,0,0,0,1,1,0,3.523079361776311,4.399809914310426,52,54.51,51.41,56.15,10,1,1,0,0,4,13,5,1,521.5,642845.0995356187,213731.3070761471,236167.0433145516,73162.28233753509,5497.831148955736 -11533,14212,25795,25794,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.869521181707364,8.868670940433082,0,3,2,-69.77439738757433,0,3,3,2019,8,0,65,60,1,0,0,12.3577860289156,12.3577860289156,0,0,0,0,0,1,1,0,5.83738199709705,0,51.41,56.15,52,54.51,8.333333333333334,1,1,0,0,8,13,5,1,521.5,642845.0995356187,213731.3070761471,236167.0433145516,73162.28233753509,5497.831148955736 -11533,14213,25796,-9,25794,25795,1,0,20,0,0,0,2,2,-9,0,4,6.795600239384471,6.7202330747201,0,0,0,-899.0691232255433,0,3,2,2019,12,0,40,15,1,2,0,2.238119046187486,2.238119046187486,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,2,1,501,-18003.25518459683,0,0,0,282.3844385514515 -11534,14214,25797,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.118796946803398,8.334613648432045,0,0,0,-972.3664836701038,0,3,3,2019,7,0,63,60,1,0,0,6.395414710577199,6.395414710577199,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,10,4,4,1,2234,-73172.99476753859,89413.41769225241,0,0,1954.744105007263 -11535,14215,25798,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,5.711693597673689,5.986484906380455,0,0,-929.3337407059139,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.475965596567432,22.12,36.43,-9,-9,5,1,1,0,1,0,12,2,0,877,21893.87328496572,142320.2569302847,0,0,892.4103197439063 -11536,14216,25799,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-850.1138665841421,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,8.161059503326435,5.423264671107528,70.12666247905024,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,231,93776.2224763683,0,86273.48501988658,0,341.8497973736368 -11537,14217,25800,25801,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.730675999397833,7.864415444020644,0,21,5,24.01111388110581,0,2,2,2019,19,7,40,40,1,7,0,5.545909247091775,5.545909247091775,0,0,0,0,0,1,1,0,0,0,40.2,36.82,35.56,48.42,8.333333333333334,2,3,0,1,9,8,2,0,693,78988.64763622975,0,170451.3944426776,166767.7878482136,2233.249630025967 -11537,14217,25801,25800,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,21,-5,-2.868463062643515,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,35.56,48.42,40.2,36.82,8.333333333333334,2,3,0,1,0,8,2,0,693,78988.64763622975,0,170451.3944426776,166767.7878482136,2233.249630025967 -11537,14218,25802,-9,25801,25800,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1096.40508377854,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.25,61.25,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,473,-280443.5782913071,0,0,0,0 -11538,14219,25803,25804,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.077956371661294,8.934181462344105,0,3,4,30.02025349044556,0,2,2,2019,10,0,40,44,1,0,0,21.92216234654737,21.92216234654737,0,0,0,0,0,0,0,0,0,0,38.5,55.03,57.33,53.46,6.666666666666667,1,1,0,0,9,10,5,1,3259,583434.9247223588,142116.5117831994,643732.8474059382,272941.932331529,4910.146253007013 -11538,14219,25804,25803,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.26904659513586,8.314731760414253,0,3,-4,.0767508563849618,0,-9,-9,2019,10,0,18,22,1,0,0,21.24412635914909,21.24412635914909,0,0,0,0,0,0,0,0,0,0,57.33,53.46,38.5,55.03,10,1,1,0,0,9,10,5,1,3259,583434.9247223588,142116.5117831994,643732.8474059382,272941.932331529,4910.146253007013 -11539,14220,25805,25806,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.690355470161617,8.510994339359137,0,7,-6,116.8730067996892,0,3,3,2019,12,2,60,58,1,2,0,9.039340200839023,9.039340200839023,0,0,0,0,2,0,0,0,0,0,49.5,51.28,42.72,49.62,8.333333333333334,1,1,0,0,9,9,4,1,406,782553.7557915184,312502.271864994,347058.8850881932,3601.935143042513,3101.197511921612 -11539,14220,25806,25805,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.188958597722229,7.488269160393974,0,7,6,33.15539570654252,0,3,3,2019,5,0,24,28,1,0,0,5.265937268597579,5.265937268597579,0,0,0,0,2,0,0,0,0,0,42.72,49.62,49.5,51.28,8.333333333333334,1,1,0,0,9,9,4,1,406,782553.7557915184,312502.271864994,347058.8850881932,3601.935143042513,3101.197511921612 -11540,14221,25807,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,5,0,8.84825323994524,9.172928853826345,0,0,-1066.671019085284,0,2,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.877623227945651,8.797895662554174,56.71,41.41,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,695,1243066.791665788,450174.2192312243,477985.1469826758,0,4576.993306634567 -11541,14222,25808,-9,25811,25809,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.712854209737,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,722.75,61354.94664244959,26121.09678976611,186451.9397427341,57778.59486032007,2572.573276938182 -11541,14222,25809,25811,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,7.723448462997435,7.773025380633195,0,15,3,51.72980885860673,0,2,2,2019,11,0,45,40,1,0,0,5.688448908712828,5.688448908712828,0,0,0,0,14.5,0,0,0,7.601816268484094,0,48.77,60.16,56.35,51,8.333333333333334,1,1,0,0,10,12,3,1,722.75,61354.94664244959,26121.09678976611,186451.9397427341,57778.59486032007,2572.573276938182 -11541,14222,25810,-9,25811,25809,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.3583252265117,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,722.75,61354.94664244959,26121.09678976611,186451.9397427341,57778.59486032007,2572.573276938182 -11541,14222,25811,25809,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.913062002542601,7.950068284377291,0,15,-3,5.3633955948462,0,1,1,2019,5,0,16,0,1,0,0,17.86598621754666,17.86598621754666,0,0,0,0,0,0,0,0,2.136176171817641,0,56.35,51,48.77,60.16,8.333333333333334,1,1,0,0,8,12,3,1,722.75,61354.94664244959,26121.09678976611,186451.9397427341,57778.59486032007,2572.573276938182 -11542,14223,25812,25813,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.475648011614199,6.325331073222491,24,-1,-58.72362141594844,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,4.537897091027951,0,0,1,1,0,0,6.561868217260963,39.39,26.92,47.55,33.8,3.333333333333333,1,1,0,0,7,6,2,0,1016.5,180318.1946469058,152903.8677049055,64154.12235005506,0,1965.559590272776 -11542,14223,25813,25812,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,5.752028149733354,5.709954121876475,24,1,-17.11823966745377,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,6.404267617986957,0,14.5,1,1,0,0,5.651138090675793,47.55,33.8,39.39,26.92,6.666666666666667,1,1,0,0,4,6,2,0,1016.5,180318.1946469058,152903.8677049055,64154.12235005506,0,1965.559590272776 -11543,14224,25814,-9,25815,-9,1,1,51,0,0,0,3,3,-9,0,3,8.293016094720171,8.126204744605209,0,0,0,-1016.624323610753,0,3,2,2019,18,6,46,37,1,6,0,8.730456396325035,8.730456396325035,0,0,0,0,14.5,1,1,0,0,0,40.75,58.26,-9,-9,0,1,1,0,0,9,8,4,1,660,890675.5774176015,775293.1955337175,0,0,1077.554953674034 -11543,14225,25815,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.227099651566676,4.969016123448869,0,0,-1041.886230044385,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,22.23287649713934,0,0,1,1,0,0,5.234875262653548,52,46,-9,-9,8,1,1,0,0,0,8,2,1,437,552769.314428249,0,577380.9834803442,0,812.245835529827 -11544,14226,25816,25818,-9,-9,1,1,43,0,2,0,2,2,-9,1,2,0,0,0,17,11,0,0,-9,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,24.7,49,56,5,1,1,0,0,1,11,1,0,459.6666666666667,115711.7773343859,0,0,0,1624.9388030879 -11544,14226,25817,-9,25818,25816,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.8061191903189,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,459.6666666666667,115711.7773343859,0,0,0,1624.9388030879 -11544,14226,25818,25816,-9,-9,1,0,32,0,2,0,2,2,0,0,4,0,0,0,17,-11,0,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,56,46.82,24.7,7,1,1,0,0,0,11,1,0,459.6666666666667,115711.7773343859,0,0,0,1624.9388030879 -11545,14227,25819,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,7.069810523158067,6.935136542647896,0,0,-1101.649276727222,0,2,3,2019,13,2,0,44,4,2,0,0,0,0,0,0,0,0,1,1,0,8.090335302088556,7.182356657999193,46.84,28.89,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,437,695024.1649822224,289264.0413359046,289107.4593194711,0,2148.375015137472 -11546,14228,25820,25821,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.397535435915228,4.672923892396813,8,2,130.1646040745111,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.384635175817261,52.82,51.26,61.28,46.17,8.333333333333334,1,1,0,0,0,12,4,1,521.5,1353260.354735862,988083.923279628,223390.5702837973,0,2919.667539494952 -11546,14228,25821,25820,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,8.309426128134435,8.139687879358323,6.761624662244733,8,-2,-31.74089173968212,0,-9,2,2019,8,0,32,32,1,0,0,18.17166930035797,18.17166930035797,0,0,0,0,0,1,1,0,0,6.700337830352213,61.28,46.17,52.82,51.26,6.666666666666667,1,1,0,0,9,12,4,1,521.5,1353260.354735862,988083.923279628,223390.5702837973,0,2919.667539494952 -11547,14229,25822,25824,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.957724921392503,8.333902690424457,0,18,0,-31.4654519267455,0,2,2,2019,12,0,48,44,1,0,0,10.76241216346596,10.76241216346596,0,0,0,0,0,1,1,0,3.171823621427156,0,39.74,52.42,55.19,54.26,3.333333333333333,1,1,0,0,10,7,4,1,735.5,258191.2397738772,171091.0493493179,0,0,2878.644514503679 -11547,14229,25823,-9,25824,25822,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.117376581352,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,735.5,258191.2397738772,171091.0493493179,0,0,2878.644514503679 -11547,14229,25824,25822,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.932124180198793,7.906396275305715,0,19,0,183.1810623504252,0,2,1,2019,15,3,24,24,1,3,0,12.14551051873086,12.14551051873086,0,0,0,0,0,1,1,0,.2245267717566826,0,55.19,54.26,39.74,52.42,8.333333333333334,1,1,0,0,10,7,4,1,735.5,258191.2397738772,171091.0493493179,0,0,2878.644514503679 -11547,14229,25825,-9,25824,25822,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1067.923484626452,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,735.5,258191.2397738772,171091.0493493179,0,0,2878.644514503679 -11548,14230,25826,25827,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,53,-4,1.66455841396387,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.999264336088158,0,61.7,34.03,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,508.5,452335.2702912396,303042.0198028868,138488.6438108165,0,2287.030186505755 -11548,14230,25827,25826,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.833004743460949,7.834158880821475,53,4,-48.62655919591748,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.011424474234335,7.71157877165161,57.16,56.15,61.7,34.03,10,1,1,0,0,0,11,3,1,508.5,452335.2702912396,303042.0198028868,138488.6438108165,0,2287.030186505755 -11549,14231,25828,-9,25829,25831,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1114.265953878998,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,848.75,700749.8339961518,482929.0788849438,532861.7945740951,371643.294095058,4486.462386115687 -11549,14231,25829,25831,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.441093627483708,8.264615131722447,0,17,0,82.28685777577122,0,2,2,2019,7,0,38,40,1,0,0,16.25097053406731,16.25097053406731,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.69,57.47,8.333333333333334,1,1,0,0,7,10,5,1,848.75,700749.8339961518,482929.0788849438,532861.7945740951,371643.294095058,4486.462386115687 -11549,14231,25830,-9,25829,25831,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.8531125774944,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,848.75,700749.8339961518,482929.0788849438,532861.7945740951,371643.294095058,4486.462386115687 -11549,14231,25831,25829,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.797716165770602,9.033508415632706,0,18,0,-112.7230509739644,0,2,1,2019,9,0,37,37,1,0,0,23.51844893430316,23.51844893430316,0,0,0,0,0,1,1,0,5.046662274097002,0,54.69,57.47,52.82,53.97,8.333333333333334,1,1,0,0,11,10,5,1,848.75,700749.8339961518,482929.0788849438,532861.7945740951,371643.294095058,4486.462386115687 -11550,14232,25832,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,4.811199777125644,5.076583841912571,0,0,-1006.237470071211,0,-9,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.976154287435238,4.496455954859608,35.61,20.78,-9,-9,5,1,1,0,0,0,7,2,1,213,-256520.1631607632,-42863.37902160101,0,0,1602.297271188734 -11551,14233,25833,25834,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,29,12,0,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,50,47,8,1,1,0,0,0,4,1,1,1281.5,206887.69400052,88271.60143848904,207388.6668268834,0,1148.955037925844 -11551,14233,25834,25833,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,29,-12,0,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,50,47,53,46,7,1,1,0,0,0,4,1,1,1281.5,206887.69400052,88271.60143848904,207388.6668268834,0,1148.955037925844 -11552,14234,25835,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.68025213391997,7.510657080460039,0,0,-923.9056299669251,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.030007354966406,7.808805420610053,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,600,918418.3431234749,149647.0009137214,543118.3308450553,0,1124.707951227985 -11553,14235,25836,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,6.740292601531039,6.682284669738046,0,0,-920.0592632639575,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.639967416095862,56.43,14.92,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,496,159779.3018404863,222695.1752732827,0,0,1624.821563316186 -11554,14236,25837,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,9.255645448987726,9.266615698224266,0,0,0,-1077.574118546851,-9,-9,-9,2019,15,6,70,0,1,6,0,14.37699506442145,14.37699506442145,0,0,0,0,0,0,0,0,3.910357934947328,0,33.89,62.66,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,426,-118406.1104889202,0,0,0,3307.354504239775 -11555,14237,25838,25839,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.659408239911929,7.521006540320517,0,8,-4,190.2405270581903,0,3,-9,2019,22,10,33,33,1,10,0,8.232614157953082,8.232614157953082,0,0,0,0,0,1,1,0,0,0,43.67,47.86,36.42,48.15,3.333333333333333,4,2,0,1,7,11,2,0,477,88582.20075398225,21750.74481401869,0,0,1844.057556572576 -11555,14237,25839,25838,-9,-9,1,1,40,0,1,0,2,2,-9,0,2,0,0,0,8,4,11.14647137398198,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,48.15,43.67,47.86,1.666666666666667,1,1,0,1,3,11,2,0,477,88582.20075398225,21750.74481401869,0,0,1844.057556572576 -11555,14237,25840,-9,25838,25839,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-988.5351745436644,-9,2,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,11,2,0,477,88582.20075398225,21750.74481401869,0,0,1844.057556572576 -11556,14238,25841,25842,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,6.700869704741886,6.506484356061804,0,36,-2,-53.24507194977807,0,3,-9,2019,9,1,21,26,1,1,0,4.539014162432778,4.539014162432778,0,0,0,0,7,0,0,0,0,0,60.14,38.88,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,999,723635.9956520568,426480.1163378599,203645.8129131158,34015.35430787149,3594.908135222553 -11556,14238,25842,25841,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.855415024385064,8.799433151635364,0,36,2,-139.5233363023176,0,3,2,2019,6,0,45,46,1,0,0,22.55053653187874,22.55053653187874,0,0,0,0,2,0,0,0,0,0,57.06,57.76,60.14,38.88,8.333333333333334,1,1,0,0,9,12,5,1,999,723635.9956520568,426480.1163378599,203645.8129131158,34015.35430787149,3594.908135222553 -11557,14239,25843,25844,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,23,-2,48.90040239711717,0,2,2,2019,7,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,40.5,60.02,56.42,8.333333333333334,1,1,0,0,11,9,4,1,344,157641.4203891677,175317.9088017448,222906.1904535871,27139.1360205187,3104.886183240606 -11557,14239,25844,25843,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,8.467389279844751,8.734040224573908,3,2,53.36962039484601,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.89629153917901,8.386842425090212,60.02,56.42,61.42,40.5,10,1,1,0,0,10,9,4,1,344,157641.4203891677,175317.9088017448,222906.1904535871,27139.1360205187,3104.886183240606 -11558,14240,25845,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.308983612527397,8.829507370548511,0,0,0,-1018.699991382704,0,2,-9,2019,21,9,48,49,1,9,0,9.940862407898162,9.940862407898162,0,0,0,0,0,0,0,0,0,0,35.84,56.24,-9,-9,1.666666666666667,1,1,0,0,8,9,4,0,631,-148810.257369513,0,0,0,1556.411706115555 -11559,14241,25846,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.502610863119864,8.374015305205777,0,0,0,-1031.582931476389,0,2,2,2019,13,1,50,50,1,1,0,11.83474615994884,11.83474615994884,0,0,0,0,0,0,0,0,0,0,26.69,60.83,-9,-9,5,1,1,0,0,8,10,4,1,554,51313.54647778504,211424.3539785593,0,0,1518.838607763994 -11560,14242,25847,-9,25849,25850,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.523382219729,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,2126.75,68533.89563681961,44835.05780518255,154063.9147326268,114523.1277536649,2945.725707691863 -11560,14242,25848,-9,25849,25850,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.756033964937,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,2126.75,68533.89563681961,44835.05780518255,154063.9147326268,114523.1277536649,2945.725707691863 -11560,14242,25849,25850,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.777886888036568,7.778685075017278,0,10,2,-47.11563876266955,0,2,3,2019,6,0,30,39,1,0,0,11.44155168658443,11.44155168658443,0,0,0,0,0,1,1,0,0,0,54.2,57.49,39.9,57.26,8.333333333333334,1,1,0,0,9,5,4,1,2126.75,68533.89563681961,44835.05780518255,154063.9147326268,114523.1277536649,2945.725707691863 -11560,14242,25850,25849,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.327321502690715,8.348634921812694,0,10,-2,73.35574479399504,0,2,2,2019,13,2,43,48,1,2,0,13.52559670481952,13.52559670481952,0,0,0,0,0,1,1,0,0,0,39.9,57.26,54.2,57.49,6.666666666666667,1,1,0,0,9,5,4,1,2126.75,68533.89563681961,44835.05780518255,154063.9147326268,114523.1277536649,2945.725707691863 -11561,14243,25851,-9,25852,25853,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.7337523317,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,482,2172008.946025427,1884079.512095145,351349.3039145055,123197.65433127,4820.536856509657 -11561,14243,25852,25853,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.548397270791595,8.828861437964443,6.40940243662448,6,-5,116.1623677257907,0,2,2,2019,11,0,48,43,1,0,0,13.98181437869936,13.98181437869936,0,0,0,0,0,1,1,0,6.53926332876332,0,57.06,57.76,41.06,62.04,6.666666666666667,1,1,0,0,9,6,5,1,482,2172008.946025427,1884079.512095145,351349.3039145055,123197.65433127,4820.536856509657 -11561,14243,25853,25852,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.811993055472234,8.895090714637162,0,6,5,94.23673126136902,0,2,2,2019,12,2,44,43,1,2,0,18.65779247854399,18.65779247854399,0,0,0,0,0,1,1,0,0,0,41.06,62.04,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,482,2172008.946025427,1884079.512095145,351349.3039145055,123197.65433127,4820.536856509657 -11562,14244,25854,25855,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,9.077729191224988,8.918516159947522,0,7,0,18.17592571579087,0,2,2,2019,9,0,35,35,1,0,0,32.9230784345387,32.9230784345387,0,0,0,0,0,1,1,0,6.910063017376907,0,54.1,59.11,50.57,41.62,8.333333333333334,1,1,0,0,8,7,5,1,288.75,358199.9646731712,298769.1729450482,266276.7706300378,156067.676661703,5476.585916155139 -11562,14244,25855,25854,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.692599559752949,8.504058453490261,0,7,0,-20.64826456616314,0,2,1,2019,15,3,25,25,1,3,0,25.45615156870817,25.45615156870817,0,0,0,0,0,1,1,0,1.010441094808536,0,50.57,41.62,54.1,59.11,5,1,1,0,0,6,7,5,1,288.75,358199.9646731712,298769.1729450482,266276.7706300378,156067.676661703,5476.585916155139 -11562,14244,25856,-9,25855,25854,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.2762365337668,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,288.75,358199.9646731712,298769.1729450482,266276.7706300378,156067.676661703,5476.585916155139 -11562,14244,25857,-9,25855,25854,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1085.868425719761,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,288.75,358199.9646731712,298769.1729450482,266276.7706300378,156067.676661703,5476.585916155139 -11563,14245,25858,-9,25859,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.2444579063759,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.3062675430427184,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,408.5,-11988.91585362987,0,0,0,1797.275285121158 -11563,14245,25859,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,3,0,0,0,0,0,-961.2671231663112,1,2,2,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.34,48.71,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,408.5,-11988.91585362987,0,0,0,1797.275285121158 -11564,14246,25860,25864,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,5,-11,106.5264491109492,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,44.93,52.43,8.333333333333334,1,1,0,0,3,7,2,0,621.4,21789.07967760883,0,0,0,2653.060373200015 -11564,14246,25861,-9,25860,25864,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.2294603457507,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,621.4,21789.07967760883,0,0,0,2653.060373200015 -11564,14246,25862,-9,25860,25864,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.5328896080858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,621.4,21789.07967760883,0,0,0,2653.060373200015 -11564,14246,25863,-9,25860,25864,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.9283978830337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,621.4,21789.07967760883,0,0,0,2653.060373200015 -11564,14246,25864,25860,-9,-9,1,1,36,1,3,0,2,2,-9,0,3,7.873083774550961,7.560525621455624,0,5,11,-80.64062080841781,0,3,3,2019,12,0,38,38,1,0,0,7.290945592356489,7.290945592356489,0,0,0,0,0,1,1,0,0,0,44.93,52.43,42.95,61.24,6.666666666666667,1,1,0,0,5,7,2,0,621.4,21789.07967760883,0,0,0,2653.060373200015 -11565,14247,25865,-9,25866,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.065696877626,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,539.6666666666666,6384.228335553838,-50304.30636928195,0,0,1714.500512028216 -11565,14247,25866,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,8.253049240107647,7.813751197532567,0,0,0,-1115.391563414165,0,-9,-9,2019,12,1,32,22,1,1,0,9.639982256540797,9.639982256540797,0,0,0,0,0,1,1,0,0,0,40.72,55.32,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,539.6666666666666,6384.228335553838,-50304.30636928195,0,0,1714.500512028216 -11565,14247,25867,-9,25866,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.6095445826004,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,539.6666666666666,6384.228335553838,-50304.30636928195,0,0,1714.500512028216 -11566,14248,25868,-9,25869,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.747408106284,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,332.5,35085.43571622917,145199.7088422772,0,0,1251.220090372427 -11566,14248,25869,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.77521826900657,7.689164889736175,0,0,0,-938.8549062354515,0,3,3,2019,2,0,41,49,1,0,0,7.174292100295269,7.174292100295269,0,0,0,0,0,1,1,0,0,0,62.11,48.33,-9,-9,10,3,4,0,0,9,8,3,0,332.5,35085.43571622917,145199.7088422772,0,0,1251.220090372427 -11567,14249,25870,25871,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.799386475703734,9.218545637627164,0,8,-3,-36.53186550669628,0,3,-9,2019,7,0,38,38,1,0,0,22.00683741285751,22.00683741285751,0,0,0,0,0,0,0,0,0,0,58.16,48.06,48.08,60.89,8.333333333333334,1,1,0,0,9,9,5,1,302.5,284958.250972003,82681.13640274054,537450.1022616295,348081.4404472497,4815.513949711322 -11567,14249,25871,25870,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,8.02655160571234,8.472260622517151,0,8,3,-105.171139128985,0,2,2,2019,9,2,20,20,1,2,0,24.21413987808188,24.21413987808188,0,0,0,0,0,0,0,0,0,0,48.08,60.89,58.16,48.06,10,1,1,0,0,9,9,5,1,302.5,284958.250972003,82681.13640274054,537450.1022616295,348081.4404472497,4815.513949711322 -11568,14250,25872,25873,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,5.818754046779358,5.6066451299325,42,-3,-101.5185049769407,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.407589839273132,5.858198165879284,53.63,29.98,47.8,32.53,8.333333333333334,1,1,0,1,5,9,2,0,1520,304877.7016742717,153021.9876320699,271474.8640530151,0,1481.997071245546 -11568,14250,25873,25872,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,42,3,-134.9211898470554,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,47.8,32.53,53.63,29.98,6.666666666666667,1,1,0,1,5,9,2,0,1520,304877.7016742717,153021.9876320699,271474.8640530151,0,1481.997071245546 -11569,14251,25874,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.680602665162385,7.980750473994656,0,0,0,-1046.441801927657,0,3,3,2019,6,0,30,30,1,0,0,9.270226376170363,9.270226376170363,0,0,0,0,0,0,0,0,0,0,48.3,42.42,-9,-9,6.666666666666667,3,4,0,0,8,8,3,1,930,704209.3316601024,118956.0952711137,449085.6416295237,0,1225.193156257145 -11569,14252,25875,-9,25874,-9,1,0,25,0,0,0,1,1,1,0,5,8.274948785186366,8.339325270301625,0,0,0,-1103.074772486699,-9,1,1,2019,5,0,39,0,1,0,1,15.76465151115529,15.76465151115529,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,3,4,0,0,7,8,4,1,3181,-89951.67457833573,6144.8105710233,0,0,2296.561163021709 -11570,14253,25876,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,7.982363092199058,7.848446004044738,0,0,0,-853.5628917947737,0,2,2,2019,12,4,37,40,1,4,0,8.22205039275943,8.22205039275943,0,0,0,0,0,0,0,0,0,0,42.28,52.7,-9,-9,5,1,1,0,0,7,7,4,0,588,84319.3421881565,222579.1960095526,0,0,1470.475322293677 -11571,14254,25877,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-985.1925918672918,0,3,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,42,1,1,0,0,0,31.85,29.16,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,2578,149628.5010347756,0,0,0,1453.393019413451 -11572,14255,25878,25879,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,13,-3,56.82353109543644,1,3,2,2019,6,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,0,2.594783866387062,0,46.34,42.37,50.32,52.34,6.666666666666667,3,4,0,0,9,5,4,1,742,914452.2526150129,769919.0539972275,169076.8027368647,0,1606.187497499062 -11572,14255,25879,25878,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.987059252025309,8.231587631785754,0,13,3,3.981315231053616,0,-9,-9,2019,11,0,48,48,1,0,0,9.315427107102005,9.315427107102005,0,0,0,0,0,0,0,0,0,0,50.32,52.34,46.34,42.37,8.333333333333334,3,4,0,0,9,5,4,1,742,914452.2526150129,769919.0539972275,169076.8027368647,0,1606.187497499062 -11573,14256,25880,25881,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.207383835783126,8.13532330970234,48,1,-128.265798496161,0,-9,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.290267765517918,8.177575223313706,62.39,56.71,52.69,48.71,10,1,1,0,0,0,8,3,1,757,1454596.573191074,912277.1792694876,489258.5109145177,0,3890.730826188777 -11573,14256,25881,25880,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.608977119074482,5.646992123756982,48,-1,-32.11546282078669,0,-9,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.756378398843971,5.399800086860315,52.69,48.71,62.39,56.71,8.333333333333334,1,1,0,0,0,8,3,1,757,1454596.573191074,912277.1792694876,489258.5109145177,0,3890.730826188777 -11574,14257,25882,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.582615936606641,7.841155153779749,0,0,0,-1056.709902667668,0,3,3,2019,8,0,30,35,1,0,0,6.60793662980276,6.60793662980276,0,0,0,0,0,1,1,0,0,0,43.96,62.06,-9,-9,5,1,1,0,0,8,2,3,1,633,167435.7465832494,-7029.424957129118,0,0,1819.41206828128 -11575,14258,25883,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.417932075284289,8.301653177575261,0,0,0,-1066.814485440121,0,2,-9,2019,8,0,35,40,1,0,0,12.13853534031882,12.13853534031882,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,7,12,4,0,152,122043.5810346443,-74522.73672157155,0,0,1437.859038601028 -11576,14259,25884,-9,-9,-9,1,0,30,1,1,0,2,2,-9,0,2,8.711372356210175,8.654019347788735,0,0,0,-959.3613075451508,0,1,2,2019,30,10,38,39,1,10,0,17.56371692242977,17.56371692242977,0,0,0,0,0,1,1,0,0,0,15.39,55.61,-9,-9,0,3,4,0,1,10,8,5,0,526,-48720.10916696509,0,0,0,2345.656521094706 -11576,14259,25885,-9,25884,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.3242894935161,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,526,-48720.10916696509,0,0,0,2345.656521094706 -11577,14260,25886,25887,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.433340686571272,7.436359272724331,0,11,2,49.64663912173281,0,-9,-9,2019,11,0,95,62,1,0,0,1.616247055271506,1.616247055271506,0,0,0,0,2,0,0,0,0,0,58.87,45.76,54.37,54.8,8.333333333333334,1,1,0,0,13,12,3,1,1396.5,715441.2992469238,506521.2197960404,136665.7295401778,41999.99536838535,959.4556673042892 -11577,14260,25887,25886,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,6.14019418003231,5.95940144803901,11,-2,75.35575641791348,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,6.008730908690183,54.37,54.8,58.87,45.76,3.333333333333333,1,1,0,0,12,12,3,1,1396.5,715441.2992469238,506521.2197960404,136665.7295401778,41999.99536838535,959.4556673042892 -11578,14261,25888,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.11923719311448,7.147654460566495,0,0,-982.6894350124534,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.496904712929674,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,352,653857.1892265109,251447.7286390652,256990.5793317799,0,815.5508949597449 -11579,14262,25889,25890,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.390097191296521,6.790566072725445,0,56,-6,-54.57605781697948,0,-9,-9,2019,6,0,11,11,1,0,0,8.12115833311757,8.12115833311757,0,0,0,0,0,1,1,0,0,0,59.7,53.75,60.12,54.8,10,1,1,0,0,13,4,2,1,902.5,201063.458037601,0,101476.3043193767,0,1546.301139278186 -11579,14262,25890,25889,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.603195973959513,4.262182965800072,56,6,-71.42816142501493,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.130458323295497,4.19264671955389,60.12,54.8,59.7,53.75,10,1,1,0,0,0,4,2,1,902.5,201063.458037601,0,101476.3043193767,0,1546.301139278186 -11580,14263,25891,-9,25892,25896,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.89812082648,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11580,14263,25892,25896,-9,-9,1,0,35,2,4,0,2,2,-9,0,4,0,0,0,9,-1,-101.7671764495548,0,2,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,34.04,54.63,32.63,56.35,6.666666666666667,1,1,0,0,6,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11580,14263,25893,-9,25892,25896,1,1,7,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1158.522322424772,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11580,14263,25894,-9,25892,25896,1,1,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-922.3123631970795,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11580,14263,25895,-9,25892,25896,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.035825768956,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11580,14263,25896,25892,-9,-9,1,1,36,2,4,0,2,2,-9,0,3,8.458430275913802,8.47583381873565,0,9,1,-53.66133034067002,0,2,3,2019,19,8,54,50,1,8,0,9.067396422308191,9.067396422308191,0,0,0,0,0,1,0,1,2.107887201404031,0,32.63,56.35,34.04,54.63,1.666666666666667,1,1,0,0,12,7,3,1,485.8333333333333,-37057.81082327331,24487.5837842762,0,0,2528.342322190848 -11581,14264,25897,25898,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.700659481363136,6.770564534921293,8,1,82.99115592782644,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.4528756998013532,6.840741047229216,59.07,26.99,61.67,45.11,8.333333333333334,1,1,0,0,8,10,3,1,776,368562.5766327633,345387.971574539,247583.5629529321,0,2247.594897971588 -11581,14264,25898,25897,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.753869880708209,6.740703265680719,8,-1,-77.52033049934657,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.075560074368376,6.946613529565126,61.67,45.11,59.07,26.99,1.666666666666667,1,1,0,0,5,10,3,1,776,368562.5766327633,345387.971574539,247583.5629529321,0,2247.594897971588 -11581,14265,25899,-9,25897,25898,1,1,44,0,0,0,2,2,-9,0,4,7.5733436338966,7.487382101568135,0,0,0,-935.2205066507951,0,2,3,2019,11,0,25,27,1,0,0,8.655286417837496,8.655286417837496,0,0,0,0,0,1,1,0,0,0,35.62,57.79,-9,-9,6.666666666666667,1,1,0,0,6,10,3,1,676,11334.93072016407,0,0,0,633.0866347252174 -11582,14266,25900,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,9.111079983075767,9.437623513499672,0,7,1,-40.0188197781553,0,2,2,2019,12,3,44,44,1,3,0,31.52972526054129,31.52972526054129,0,0,0,0,0,0,0,0,3.153497365253723,0,44.8,47.01,46.11,51.9,3.333333333333333,1,1,0,0,7,8,5,1,741,-220723.2817977392,0,0,0,3502.645428270504 -11582,14267,25901,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.501691149441994,8.625796170776868,0,7,-1,36.46021833756368,0,-9,-9,2019,12,0,43,49,1,0,0,14.43334273298376,14.43334273298376,0,0,0,0,0,0,0,0,7.580099305285788,0,46.11,51.9,44.8,47.01,6.666666666666667,2,3,0,0,10,8,5,1,346,115803.7146863653,187382.4383932043,169480.7957392854,75181.74806064655,2697.862613883615 -11583,14268,25902,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1025.198522520021,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.83,11.94,-9,-9,5,1,1,0,0,0,10,1,0,797,48912.86174086804,0,0,0,1085.148743588542 -11583,14269,25903,25904,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.927183694374498,7.652056301142588,0,2,-10,3.451449617996139,0,-9,-9,2019,13,3,35,35,1,3,0,6.469694091298825,6.469694091298825,0,0,0,0,7,1,1,0,0,0,44.19,58.01,48.28,52.81,8.333333333333334,1,1,0,1,2,10,4,0,1534.5,213266.3420012815,60002.1539761894,253050.7332319879,155038.5647145227,2135.212234125711 -11583,14269,25904,25903,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.87486832963153,7.662421147680686,0,2,10,72.01581850118434,-9,-9,-9,2019,11,1,30,0,1,1,0,6.314186660555238,6.314186660555238,0,0,0,0,2,1,1,0,0,0,48.28,52.81,44.19,58.01,8.333333333333334,3,4,0,0,2,10,4,0,1534.5,213266.3420012815,60002.1539761894,253050.7332319879,155038.5647145227,2135.212234125711 -11583,14270,25905,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,7.791036243308161,8.297359615061545,7.343748379827259,0,0,-969.7054491961661,0,-9,-9,2019,19,7,30,50,1,7,0,7.815603656609331,7.815603656609331,0,0,0,0,14.5,1,1,0,8.917044111236496,7.462730464545157,39.6,39.91,-9,-9,5,1,1,0,1,3,10,4,0,354,1003834.140719058,577730.0170621346,351905.2501147118,0,4123.436404747872 -11583,14271,25906,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1038.610419557643,0,-9,-9,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,23.98,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,556,2147.299030111878,0,0,0,971.0803075562288 -11584,14272,25907,25908,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.464725272210814,8.476498732145195,46,0,-3.909119720008934,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,86.11610118361844,0,0,1,1,0,4.001446096429464,8.025353419691424,52,47,38.39,42.95,7,1,1,0,0,2,2,3,1,422.5,1169788.254199906,802003.1362056,524455.4889760215,0,3317.858285394414 -11584,14272,25908,25907,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.984052655551265,4.816276260009842,46,0,-9.227891109739655,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.289684154389954,0,18.97187909800242,120,1,1,0,0,5.107059325465522,38.39,42.95,52,47,6.666666666666667,1,1,0,0,5,2,3,1,422.5,1169788.254199906,802003.1362056,524455.4889760215,0,3317.858285394414 -11585,14273,25909,-9,25912,25910,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.141617315952,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1076.75,194914.4058664111,157645.4174343564,179943.1795523554,105318.1109704063,4013.293834167396 -11585,14273,25910,25912,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,9.375142791685146,9.142566093780122,0,9,-2,-103.7776803885311,0,-9,-9,2019,13,3,41,38,1,3,0,29.37719168242894,29.37719168242894,0,0,0,0,0,1,1,0,0,0,39.59,57.55,54.2,57.49,3.333333333333333,1,1,0,0,10,5,5,1,1076.75,194914.4058664111,157645.4174343564,179943.1795523554,105318.1109704063,4013.293834167396 -11585,14273,25911,-9,25912,25910,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.4071439907025,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1076.75,194914.4058664111,157645.4174343564,179943.1795523554,105318.1109704063,4013.293834167396 -11585,14273,25912,25910,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,9,2,-30.91125979740618,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.366623792274695,0,54.2,57.49,39.59,57.55,8.333333333333334,1,1,0,0,4,5,5,1,1076.75,194914.4058664111,157645.4174343564,179943.1795523554,105318.1109704063,4013.293834167396 -11586,14274,25913,25916,-9,-9,1,1,34,1,2,0,1,1,-9,0,2,8.202516665527476,8.400557728562173,0,9,3,-62.11174787350983,0,3,2,2019,11,0,40,40,1,0,0,13.9925400770177,13.9925400770177,0,0,0,0,0,1,1,0,0,0,36.03,40.6,51.73,58.82,6.666666666666667,1,1,0,0,10,11,4,1,438.5,235138.2409040095,232185.6426415603,296748.5438282976,238775.0821876648,2885.579792304908 -11586,14274,25914,-9,25916,25913,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-834.4293508087022,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,438.5,235138.2409040095,232185.6426415603,296748.5438282976,238775.0821876648,2885.579792304908 -11586,14274,25915,-9,25916,25913,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.8278521452669,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,438.5,235138.2409040095,232185.6426415603,296748.5438282976,238775.0821876648,2885.579792304908 -11586,14274,25916,25913,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,7.74372866951535,7.786107128323987,0,9,-3,26.84184663546057,0,-9,-9,2019,10,0,24,24,1,0,0,10.38910111613176,10.38910111613176,0,0,0,0,0,1,1,0,0,0,51.73,58.82,36.03,40.6,6.666666666666667,1,1,0,0,10,11,4,1,438.5,235138.2409040095,232185.6426415603,296748.5438282976,238775.0821876648,2885.579792304908 -11587,14275,25917,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.458118192034904,8.295414299009254,0,0,-974.0198515929833,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,4.248282314744869,8.180211008476997,51.77,58.57,-9,-9,10,1,1,0,0,6,7,4,1,546,1797794.354487875,994751.2079028751,608207.1957534642,0,3127.207509562214 -11588,14276,25918,25919,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.610688656770076,8.489700802475083,0,7,0,51.41853692949273,0,2,2,2019,10,1,60,70,1,1,0,9.86602010067381,9.86602010067381,0,0,0,0,0,1,1,0,0,0,43.24,47.58,61.01,53.18,8.333333333333334,1,1,0,0,8,13,4,1,1167.5,345410.1428803328,226023.9134312979,170318.6901222802,145403.3631030361,3429.486117928276 -11588,14276,25919,25918,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,7.952570600861102,8.086633120832364,0,7,0,129.8595255566584,0,1,2,2019,7,0,40,40,1,0,0,6.871065572884831,6.871065572884831,0,0,0,0,0,1,1,0,0,0,61.01,53.18,43.24,47.58,8.333333333333334,1,1,0,0,8,13,4,1,1167.5,345410.1428803328,226023.9134312979,170318.6901222802,145403.3631030361,3429.486117928276 -11588,14276,25920,-9,25918,25919,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.132525081878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,1167.5,345410.1428803328,226023.9134312979,170318.6901222802,145403.3631030361,3429.486117928276 -11588,14276,25921,-9,25918,25919,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1132.120165522218,-9,2,2,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,10,1,1,0,0,0,13,4,1,1167.5,345410.1428803328,226023.9134312979,170318.6901222802,145403.3631030361,3429.486117928276 -11588,14277,25922,-9,25918,25919,1,0,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1009.747857939662,-9,2,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.69,59.62,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,430,56300.18013710178,0,0,0,0 -11589,14278,25923,25925,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,9.725793117069482,9.569699462512462,0,20,4,-64.34612311364815,0,2,1,2019,9,0,40,40,1,0,0,57.73029416914304,57.73029416914304,0,0,0,0,0,1,1,0,0,0,43.38,62.58,54.1,59.11,3.333333333333333,1,1,0,1,11,9,5,1,971,50619.00146087086,0,231147.7637054818,146322.6881946617,10991.67539639692 -11589,14278,25924,-9,25923,25925,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.5375717749399,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,971,50619.00146087086,0,231147.7637054818,146322.6881946617,10991.67539639692 -11589,14278,25925,25923,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.772956656389095,8.833724214735387,0,19,-4,17.76562598115774,0,2,1,2019,7,0,40,40,1,0,0,18.95859705190447,18.95859705190447,0,0,0,0,0,1,1,0,0,0,54.1,59.11,43.38,62.58,6.666666666666667,1,1,0,0,9,9,5,1,971,50619.00146087086,0,231147.7637054818,146322.6881946617,10991.67539639692 -11589,14278,25926,-9,25923,25925,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.3435701720505,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,971,50619.00146087086,0,231147.7637054818,146322.6881946617,10991.67539639692 -11590,14279,25927,-9,25929,25928,1,0,23,0,0,0,1,1,-9,0,4,8.052527522441599,7.486822222520612,0,0,0,-986.46756445272,0,1,1,2019,5,0,40,-9,1,0,1,7.217122564526955,7.217122564526955,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,8,3,0,490,24257.15753670278,-19978.95677480047,0,0,1139.848586216887 -11590,14280,25928,25929,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,6.451042465393803,6.403065119025414,0,26,6,-41.37204382319255,0,1,1,2019,9,0,49,0,1,1,0,1.660144807225143,1.660144807225143,0,0,0,4.551037512084573,0,0,0,0,0,0,52,55,42,40,8,2,3,0,0,10,8,4,0,909,908577.3208442822,912556.8961906282,0,0,3235.799278860286 -11590,14280,25929,25928,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.49621246428323,8.527563292382169,0,26,-6,32.97165729991582,0,1,1,2019,6,0,50,-9,1,0,0,13.46709300798422,13.46709300798422,0,0,0,0,0,0,0,0,0,0,42,40,52,55,8.333333333333334,2,3,0,0,10,8,4,0,909,908577.3208442822,912556.8961906282,0,0,3235.799278860286 -11590,14281,25930,-9,25929,25928,1,1,27,0,0,0,1,1,-9,0,4,8.486723063644485,8.688377774749297,0,0,0,-976.9295397017313,0,1,1,2019,10,1,46,46,1,1,1,16.75014916333547,16.75014916333547,0,0,0,0,0,0,0,0,0,0,54.99,50.29,-9,-9,8.333333333333334,2,3,0,0,5,8,5,0,526,81176.33221353978,-23638.65608827598,0,0,3057.265766421929 -11591,14282,25931,-9,25932,25934,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.5801586611276,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,0,948.25,112243.2268849782,17650.76139879189,150480.7320410522,77875.17888136499,1924.671835918536 -11591,14282,25932,25934,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,16,-5,-72.67608409178693,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,64.58,33.62,8.333333333333334,1,1,0,0,0,4,2,0,948.25,112243.2268849782,17650.76139879189,150480.7320410522,77875.17888136499,1924.671835918536 -11591,14282,25933,-9,25932,25934,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.331102769213,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,948.25,112243.2268849782,17650.76139879189,150480.7320410522,77875.17888136499,1924.671835918536 -11591,14282,25934,25932,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.157065685983602,7.667467700800131,0,16,5,-24.51023194713927,0,-9,-9,2019,8,0,24,24,1,0,0,8.72931590837165,8.72931590837165,0,0,0,0,0,1,1,0,0,0,64.58,33.62,58.15,52.91,8.333333333333334,1,1,0,0,6,4,2,0,948.25,112243.2268849782,17650.76139879189,150480.7320410522,77875.17888136499,1924.671835918536 -11592,14283,25935,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.200610515023125,6.561782970180646,0,0,-852.2847208170667,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,26.83567553820437,0,0,1,1,0,5.318627411658535,6.582094869759817,44.19,18.11,-9,-9,5,1,1,0,0,0,4,2,1,1451,269824.9948922332,-14648.46596712838,159114.6190405526,0,1066.764465076531 -11592,14284,25936,-9,25935,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.330441684738292,6.453188030822722,0,0,-979.6198166117803,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.470923961466783,6.700009766355739,47,38,-9,-9,5,1,1,0,0,0,4,2,1,224,424939.1437552327,335090.1654656408,91303.04440435531,0,765.8035301866944 -11593,14285,25937,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.886073722195621,6.689714984526468,0,0,-952.7273994222999,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.101243201608026,6.94680554134521,52,45,-9,-9,8,1,1,0,0,0,13,2,1,1235,265683.7260648535,75965.30186155632,0,0,1464.788630587255 -11593,14286,25938,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.540013185800286,6.490402921564349,0,0,-982.4937744530058,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,6.514350888509284,127.4570067460417,0,0,1,1,0,0,6.633461037224289,52,45,-9,-9,8,1,1,0,0,0,13,2,1,263,254225.0675556663,105089.5341656551,0,0,1232.694187413081 -11594,14287,25939,-9,25940,25941,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.657900596005,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,759,132507.4165480403,40604.57859459639,0,0,1598.347169567457 -11594,14287,25940,25941,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.546306030755639,8.361215803677679,0,21,-5,-3.621465559332487,0,1,2,2019,12,1,37,37,1,1,0,14.48799452571599,14.48799452571599,0,0,0,0,0,1,1,0,0,0,51.41,56.15,30.86,66.05,8.333333333333334,2,3,0,0,10,6,3,1,759,132507.4165480403,40604.57859459639,0,0,1598.347169567457 -11594,14287,25941,25940,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,0,0,0,21,5,-5.710378337736353,0,2,2,2019,26,12,0,48,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.86,66.05,51.41,56.15,8.333333333333334,2,3,1,0,10,6,3,1,759,132507.4165480403,40604.57859459639,0,0,1598.347169567457 -11594,14288,25942,-9,25940,25941,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-885.5027863523306,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.88,42.65,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,3689,40977.92906805751,0,0,0,335.435659408476 -11595,14289,25943,25944,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,9.332361312336161,9.131632056814418,0,44,0,-85.38587720478435,0,3,2,2019,5,0,40,50,1,0,0,26.5724762200494,26.5724762200494,0,0,0,0,0,0,0,0,3.677473401434701,0,57.06,57.76,45.18,54.77,8.333333333333334,1,1,0,0,7,10,5,1,1323,3468053.963044399,2206717.496592903,573757.0988677121,100233.0433774268,3653.88502285837 -11595,14289,25944,25943,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,44,0,35.98983075880379,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.637109733781766,0,45.18,54.77,57.06,57.76,8.333333333333334,1,1,0,0,5,10,5,1,1323,3468053.963044399,2206717.496592903,573757.0988677121,100233.0433774268,3653.88502285837 -11596,14290,25945,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.538130423465426,7.757177082106259,0,0,0,-1107.453380791076,0,3,2,2019,7,1,33,0,1,1,0,7.794717085842552,7.794717085842552,0,0,0,0,0,1,1,0,0,0,51.47,53.82,-9,-9,0,1,1,0,0,2,8,3,0,610,-86272.54897579068,0,0,0,2320.270592984097 -11596,14291,25946,-9,25945,-9,1,1,22,0,0,0,2,2,-9,0,5,7.949976935725746,8.263192034980817,0,0,0,-991.5257047727896,0,3,-9,2019,0,0,35,41,1,0,0,8.950166372773744,8.950166372773744,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,8,3,0,387,-47101.9296035267,0,0,0,1244.537237414697 -11597,14292,25947,25949,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,6.07825363872352,6.188431253397567,0,7,3,-34.39076866064897,0,3,3,2019,12,0,9,0,1,0,0,5.661321956352438,5.661321956352438,0,0,0,0,7,1,1,0,0,0,60.12,54.8,36.65,58.88,6.666666666666667,1,1,0,0,1,4,3,0,1008.333333333333,-35274.68680817101,-25949.48000866845,0,0,1533.676017861524 -11597,14292,25948,-9,25947,25949,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.1273219028957,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1008.333333333333,-35274.68680817101,-25949.48000866845,0,0,1533.676017861524 -11597,14292,25949,25947,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,7.587052287051068,7.517609461875871,0,7,-3,93.81916510110915,0,-9,-9,2019,12,0,37,24,1,0,0,5.768870938718733,5.768870938718733,0,0,0,0,0,1,1,0,0,0,36.65,58.88,60.12,54.8,5,1,1,0,0,3,4,3,0,1008.333333333333,-35274.68680817101,-25949.48000866845,0,0,1533.676017861524 -11597,14293,25950,-9,25947,25949,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1149.369535452448,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,4,1,0,19,8026.976930894822,0,0,0,0 -11598,14294,25951,-9,25952,25953,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.5807330046187,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,4,1,659.6666666666666,43442.92349818954,-1393.964047021417,93530.0523451054,57325.22952959299,2735.377020420333 -11598,14294,25952,25953,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.028100421605178,7.841113969727866,0,7,-2,-45.20722773158753,0,3,3,2019,20,7,36,36,1,7,0,9.060484230213198,9.060484230213198,0,0,0,0,0,1,1,0,0,0,33.03,59.54,51.49,57.57,5,4,5,0,0,2,6,4,1,659.6666666666666,43442.92349818954,-1393.964047021417,93530.0523451054,57325.22952959299,2735.377020420333 -11598,14294,25953,25952,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.207479121622638,8.267652682966657,0,7,2,-82.04734380711875,0,-9,-9,2019,12,0,36,36,1,0,0,9.327366920580682,9.327366920580682,0,0,0,0,0,1,1,0,.4115347643273234,0,51.49,57.57,33.03,59.54,6.666666666666667,4,5,0,0,8,6,4,1,659.6666666666666,43442.92349818954,-1393.964047021417,93530.0523451054,57325.22952959299,2735.377020420333 -11599,14295,25954,-9,25957,25955,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-968.5183509778893,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.05,53.56,-9,-9,6.666666666666667,1,1,0,0,0,1,4,1,650,229599.9494119866,170226.7723712373,283076.9047721821,115726.8409996465,3532.648102685569 -11599,14295,25955,25957,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.476123192155853,8.421228929926146,0,9,-2,132.186293967107,0,3,3,2019,7,0,41,44,1,0,0,15.64530819083973,15.64530819083973,0,0,0,0,0,1,1,0,0,0,49.04,55.86,49.04,55.86,8.333333333333334,1,1,0,0,9,1,4,1,650,229599.9494119866,170226.7723712373,283076.9047721821,115726.8409996465,3532.648102685569 -11599,14295,25956,-9,25957,25955,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1162.463976046896,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,650,229599.9494119866,170226.7723712373,283076.9047721821,115726.8409996465,3532.648102685569 -11599,14295,25957,25955,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.303871253212636,8.511423645755723,0,9,2,37.96192676096598,0,3,3,2019,9,0,35,35,1,0,0,13.55256316384518,13.55256316384518,0,0,0,0,0,1,1,0,2.786698283145664,0,49.04,55.86,49.04,55.86,8.333333333333334,1,1,0,0,9,1,4,1,650,229599.9494119866,170226.7723712373,283076.9047721821,115726.8409996465,3532.648102685569 -11600,14296,25958,25959,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.411900775800178,7.532761800336699,1,16,-84.83810098693692,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.737840390037987,7.49717644411342,57.33,53.46,50,56.64,8.333333333333334,1,1,0,0,4,9,5,1,487,1622287.02058077,1255325.413822782,388336.909160317,0,4731.506456301047 -11600,14296,25959,25958,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.576445773353603,8.672611961446785,0,1,-16,6.660420593188413,-9,-9,-9,2019,9,0,37,0,1,0,0,19.35389360461976,19.35389360461976,0,0,0,0,0,1,1,0,7.438116693070925,0,50,56.64,57.33,53.46,6.666666666666667,1,1,0,0,1,9,5,1,487,1622287.02058077,1255325.413822782,388336.909160317,0,4731.506456301047 -11601,14297,25960,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-935.7027999210966,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.58,44.39,-9,-9,3.333333333333333,1,1,0,0,2,1,1,0,1132,151626.1385817901,0,0,0,648.3646525766056 -11601,14298,25961,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.585469468894765,8.462274633923702,0,0,0,-818.4877960884976,0,-9,-9,2019,12,0,38,45,1,0,0,11.49086880734898,11.49086880734898,0,0,0,0,0,1,1,0,0,0,41.46,53.68,-9,-9,5,1,1,0,0,3,1,4,0,2626,-145594.6514455419,15335.1935775243,0,0,1383.76505524898 -11602,14299,25962,25963,-9,-9,1,1,55,0,1,0,2,2,-9,0,1,0,0,0,29,3,-93.14018050104181,0,2,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,4.92,34.08,54.76,0,1,1,0,0,0,1,2,1,475,260047.84342698,293833.0391834902,94732.3513215851,103962.0567355033,1075.692384449445 -11602,14299,25963,25962,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.530323497442263,7.742713655658133,0,6,-3,-39.72990437553587,-9,-9,-9,2019,18,6,30,0,1,6,0,8.386660266125622,8.386660266125622,0,0,0,0,27,1,1,0,0,0,34.08,54.76,61.52,4.92,6.666666666666667,1,1,0,0,8,1,2,1,475,260047.84342698,293833.0391834902,94732.3513215851,103962.0567355033,1075.692384449445 -11602,14300,25964,-9,25963,25962,1,1,26,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1042.144462255648,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,120,1,1,0,0,0,58.47,50.22,-9,-9,5,1,1,0,0,2,1,1,1,747,0,0,0,0,1222.802332544386 -11602,14301,25965,-9,25963,25962,1,0,22,0,1,0,2,2,1,0,4,7.936068485715291,7.452078075714135,0,0,0,-1173.194536066526,-9,2,2,2019,14,2,52,0,1,2,1,6.563969506230418,6.563969506230418,0,0,0,0,2,1,1,0,0,0,43.35,52.94,-9,-9,5,1,1,0,0,3,1,3,1,689,-149761.3358340006,50480.74814167111,0,0,990.2137206025175 -11603,14302,25966,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.289130742186563,5.422038989565845,0,0,-902.2137720018671,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.953059088690898,5.219335934957748,60.87,44.96,-9,-9,10,1,1,0,0,0,4,2,1,145,83037.8461779106,0,64220.44322092421,0,877.0622770117765 -11604,14303,25967,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.968571084696105,7.842059622690974,0,0,-984.5336646330223,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.236579175153159,8.141076053703452,54.44,51.82,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,470,822244.6885682888,659218.8246742422,0,0,7397.767563337971 -11605,14304,25968,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.527998460803376,6.071117096040415,0,0,-958.0436094134402,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.201411202151807,50.83,42.63,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,2011,103843.0878545096,280662.0568533244,0,0,1847.875608499165 -11606,14305,25969,25970,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.236707256438105,7.774308760184866,1,-1,91.78493321700239,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.380682154670642,7.439998612742452,55.19,54.26,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,2429.5,1550778.441368541,1062117.420069234,417377.4563830422,0,2783.265344680653 -11606,14305,25970,25969,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,6.676935024995942,7.025367155421247,1,1,24.93234314168697,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.611385499138848,6.718865765406231,57.33,53.46,55.19,54.26,8.333333333333334,1,1,0,0,0,9,3,1,2429.5,1550778.441368541,1062117.420069234,417377.4563830422,0,2783.265344680653 -11607,14306,25971,25972,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.619301988407453,7.393525765500431,0,2,1,-162.2645224791547,0,-9,-9,2019,11,0,35,40,1,2,0,5.476248911409582,5.476248911409582,0,0,0,0,0,0,0,0,0,0,48,57,62.39,56.71,7,3,4,0,0,3,6,2,0,441.75,-32519.44893895691,27407.6189936872,0,0,472.9123964887631 -11607,14306,25972,25971,-9,-9,1,1,29,1,2,0,1,1,0,0,5,0,6.252377556535453,6.402432993733151,2,-1,-64.54421430770341,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.338901090427776,0,62.39,56.71,48,57,10,3,4,0,0,2,6,2,0,441.75,-32519.44893895691,27407.6189936872,0,0,472.9123964887631 -11607,14306,25973,-9,25971,25972,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.647558939075,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,2,0,441.75,-32519.44893895691,27407.6189936872,0,0,472.9123964887631 -11607,14306,25974,-9,25971,25972,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.884461136644,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,2,0,441.75,-32519.44893895691,27407.6189936872,0,0,472.9123964887631 -11608,14307,25975,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,9.688124650594466,9.530399555248252,0,0,0,-988.517383709911,0,2,2,2019,4,0,50,40,1,0,0,30.79388875651165,30.79388875651165,0,0,0,0,0,0,0,0,6.785917276604063,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,314,70438.72687627251,41908.86137994821,0,0,4587.654023048111 -11609,14308,25976,-9,25978,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1103.211012833702,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,425,-81322.97114749455,0,0,0,1882.48949845537 -11609,14308,25977,-9,25978,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-898.1492948779768,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,1,0,425,-81322.97114749455,0,0,0,1882.48949845537 -11609,14308,25978,-9,-9,-9,1,0,27,1,3,0,2,2,-9,1,4,0,0,0,0,0,-962.6253992018612,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,0,10,1,0,425,-81322.97114749455,0,0,0,1882.48949845537 -11610,14309,25979,-9,25980,25981,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.9963704789179,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,464.6666666666667,1030633.47773305,244585.5009891787,638966.2583303925,325884.5363580823,9315.522252542556 -11610,14309,25980,25981,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,9.206193053052994,9.25777763164476,0,15,-3,-58.07012094791111,0,2,2,2019,12,2,34,30,1,2,0,32.72084320422886,32.72084320422886,0,0,0,0,0,1,1,0,7.680763192056296,0,47.24,53.95,36.38,53.47,6.666666666666667,1,1,0,0,11,9,5,1,464.6666666666667,1030633.47773305,244585.5009891787,638966.2583303925,325884.5363580823,9315.522252542556 -11610,14309,25981,25980,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.58533507243088,9.531832206090312,0,16,3,-6.690936725997545,0,2,2,2019,13,2,40,45,1,2,0,33.83869444153356,33.83869444153356,0,0,0,0,0,1,1,0,3.442875533321105,0,36.38,53.47,47.24,53.95,5,1,1,0,0,11,9,5,1,464.6666666666667,1030633.47773305,244585.5009891787,638966.2583303925,325884.5363580823,9315.522252542556 -11611,14310,25982,25983,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.358972063262588,9.167810904544552,0,9,0,54.37629652582866,0,1,1,2019,8,1,23,45,1,1,0,59.22024160921225,59.22024160921225,0,0,0,0,0,0,0,0,4.96742535152727,0,46.5,58.26,57.16,56.15,5,1,1,0,0,10,10,5,0,1149.5,195990.8843156908,122415.7049215378,283443.8463659222,248661.6696537718,7199.018120506276 -11611,14310,25983,25982,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.103190227297132,9.423827843032495,0,9,0,64.59109806505009,0,-9,-9,2019,8,0,38,48,1,0,0,40.43657206682243,40.43657206682243,0,0,0,0,0,0,0,0,5.582922487966437,0,57.16,56.15,46.5,58.26,6.666666666666667,1,1,0,0,10,10,5,0,1149.5,195990.8843156908,122415.7049215378,283443.8463659222,248661.6696537718,7199.018120506276 -11612,14311,25984,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.591856301448933,8.705656379613947,0,0,0,-918.9404482924687,0,1,1,2019,7,0,50,50,1,0,0,14.04247956298443,14.04247956298443,0,0,0,0,0,0,0,0,3.927162219920505,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,6,4,5,1,1450,242684.6223280167,162445.7459578195,189705.7027281136,116712.4265800018,2177.322239294087 -11613,14312,25985,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.431223925855936,7.439861248504541,0,0,0,-1001.296172624488,0,3,3,2019,18,7,35,10,1,7,0,6.85312608057081,6.85312608057081,0,0,0,0,0,0,0,0,0,0,50.3,32.5,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,427,194164.7046889009,-53379.62138560457,0,0,1048.324462225658 -11614,14313,25986,-9,-9,-9,1,0,26,0,0,0,3,3,-9,0,3,7.5927698198068,7.448680598872463,0,0,0,-942.6682671277463,0,-9,-9,2019,11,0,37,16,1,0,0,7.355650639472443,7.355650639472443,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,192,45863.64034821382,39914.56563943907,0,0,1157.433515293161 -11615,14314,25987,-9,25988,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1073.140702700519,-9,2,-9,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,992.3333333333334,-67575.80625747512,0,0,0,2015.086699298548 -11615,14314,25988,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.042514309161419,6.995022264595793,0,0,0,-1002.359803614344,-9,2,3,2019,12,0,16,0,1,0,0,7.255147464146954,7.255147464146954,0,0,0,0,0,1,1,0,0,0,45.71,33.36,-9,-9,3.333333333333333,1,1,0,0,5,6,2,0,992.3333333333334,-67575.80625747512,0,0,0,2015.086699298548 -11615,14314,25989,-9,25988,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.353993739818,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,992.3333333333334,-67575.80625747512,0,0,0,2015.086699298548 -11616,14315,25990,-9,25991,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.808812617256,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,5,2,0,950.5,151602.8048210834,17560.83122250677,0,0,1911.10389704582 -11616,14315,25991,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.994882874806178,6.968029331500442,0,0,0,-957.0128974587519,0,2,3,2019,6,0,18,0,1,0,0,5.23146334437313,5.23146334437313,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,5,2,0,950.5,151602.8048210834,17560.83122250677,0,0,1911.10389704582 -11617,14316,25992,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.342343405629829,7.616277618804943,0,0,-1098.305882259889,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.866391841694783,46.46,54.53,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,462,270390.800516316,270058.4676686234,181295.6820932011,0,2005.735777096991 -11618,14317,25993,25994,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.084529682624312,8.870762015142576,0,10,-11,-105.8353813950497,0,-9,-9,2019,11,0,40,40,1,2,0,27.27847316106559,27.27847316106559,0,0,0,0,0,0,0,0,0,0,48,48,55.94,47.09,7,2,3,0,0,1,5,5,1,2585,3657902.306380143,1024308.708468657,440914.0960914858,0,4333.482716737566 -11618,14317,25994,25993,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.773421218385609,7.751540146778018,0,35,11,-70.1095672625767,0,2,2,2019,6,0,40,40,1,0,0,7.316434103174682,7.316434103174682,0,0,0,0,0,0,0,0,0,0,55.94,47.09,48,48,8.333333333333334,2,3,0,0,13,5,5,1,2585,3657902.306380143,1024308.708468657,440914.0960914858,0,4333.482716737566 -11619,14318,25995,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,5,0,6.983230760267144,6.970921678141405,0,0,-1177.94934483256,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.626142565443283,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,5,1,2,0,126,-111409.9576453412,0,0,0,711.8334252077949 -11619,14319,25996,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,6.047913250456418,5.970250492083074,0,0,-1064.949668735865,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.505171523100957,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,475,269444.0185906542,0,0,0,469.7402957297107 -11619,14320,25997,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1023.549694556253,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1590,0,0,0,0,537.0210762078077 -11619,14321,25998,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-967.6181690889728,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,1,1,0,185,289885.2015988167,0,0,0,0 -11620,14322,25999,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.90796603721359,8.756834499297034,0,0,0,-932.2485502530858,0,2,2,2019,9,0,45,44,1,0,0,14.48029509277248,14.48029509277248,0,0,0,0,0,0,0,0,0,0,57.78,40.89,-9,-9,6.666666666666667,1,1,0,0,7,9,5,0,503,99354.3385378339,26152.40827385413,0,0,2372.224944702053 -11621,14323,26000,26001,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,9,23,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,42.05523957249349,0,0,1,1,0,0,0,45.07,52.43,21.27,58.03,5,1,1,0,0,0,9,2,0,1564.5,186790.2197399866,0,204338.6379609515,0,1838.874013234668 -11621,14323,26001,26000,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,21,-23,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.27,58.03,45.07,52.43,5,1,1,0,0,7,9,2,0,1564.5,186790.2197399866,0,204338.6379609515,0,1838.874013234668 -11622,14324,26002,-9,26003,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.757596931929,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,706.6666666666666,72722.36419173477,26529.60677214242,0,0,2599.379116425689 -11622,14324,26003,-9,-9,-9,1,0,34,2,2,0,1,1,-9,0,3,0,8.318655028512236,8.217641846340825,0,0,-1127.926057886712,0,1,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,8.988928698425038,0,25.9,63.7,-9,-9,3.333333333333333,2,3,0,0,0,6,3,1,706.6666666666666,72722.36419173477,26529.60677214242,0,0,2599.379116425689 -11622,14324,26004,-9,26003,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.361572660381,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,1,706.6666666666666,72722.36419173477,26529.60677214242,0,0,2599.379116425689 -11623,14325,26005,26007,-9,-9,1,0,49,0,3,0,1,1,-9,0,3,8.277553418158535,8.416977238120296,0,3,-1,-149.3762259059725,0,-9,-9,2019,12,1,30,38,1,1,0,16.29721379041339,16.29721379041339,0,0,0,0,0,0,0,0,7.35261636884701,0,56.16,35.13,57.06,57.76,6.666666666666667,1,1,0,0,2,9,4,1,798.8,762591.6187263966,646313.4920883377,308663.0458067604,132729.927974759,5011.097304279049 -11623,14325,26006,-9,26005,26007,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1026.329438923667,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,4,1,798.8,762591.6187263966,646313.4920883377,308663.0458067604,132729.927974759,5011.097304279049 -11623,14325,26007,26005,-9,-9,1,1,50,0,3,0,1,1,-9,0,5,8.857120373088744,8.943319386447902,0,3,1,-110.4892728323085,0,1,1,2019,7,0,38,38,1,0,0,19.70938541113463,19.70938541113463,0,0,0,0,0,0,0,0,7.111828377096132,0,57.06,57.76,56.16,35.13,8.333333333333334,1,1,0,0,9,9,4,1,798.8,762591.6187263966,646313.4920883377,308663.0458067604,132729.927974759,5011.097304279049 -11623,14325,26008,-9,26005,26007,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-965.48188755816,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.281327463678323,0,40.67,62.66,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,798.8,762591.6187263966,646313.4920883377,308663.0458067604,132729.927974759,5011.097304279049 -11623,14325,26009,-9,26005,26007,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.0363563014278,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,798.8,762591.6187263966,646313.4920883377,308663.0458067604,132729.927974759,5011.097304279049 -11624,14326,26010,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.546711781421116,5.189934219648702,0,0,-1019.250953370177,0,-9,2,2019,12,3,0,0,4,3,0,0,0,1,0,11.80195403546788,0,0,1,1,0,4.661480941950305,5.271864648439336,45.54,57.19,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,125,303327.5118318153,75244.90508636658,289836.3260747054,0,526.113971463645 -11625,14327,26011,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-967.5781356504946,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.436472616991662,0,48.22,61.55,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,1177,-573.3200955558124,0,0,0,879.6857027797978 -11626,14328,26012,26013,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.522522233102549,7.95861058732383,4,-2,92.74979180768409,0,3,2,2019,11,0,0,13,4,0,0,0,0,0,0,0,0,0,0,0,0,.0975691550431857,7.529114399818656,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,132.5,1028378.28583705,697260.5799291314,204360.9943181312,0,1536.145475595731 -11626,14328,26013,26012,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,4,2,-90.14259607284741,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.250213303360583,0,57.16,56.15,51.83,57.2,1.666666666666667,1,1,0,0,4,9,3,1,132.5,1028378.28583705,697260.5799291314,204360.9943181312,0,1536.145475595731 -11627,14329,26014,26015,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.000298315059309,8.057526942332444,5.113022081446,28,-3,-36.59355039164168,0,3,3,2019,9,0,42,48,1,0,0,8.64437761406403,8.64437761406403,0,0,0,0,14.5,1,1,0,5.347225181676394,5.465170047239003,58.16,55.87,23.86,20.5,8.333333333333334,1,1,0,0,8,5,3,1,4693,217643.8359643022,186753.333510788,0,0,2074.940278588105 -11627,14329,26015,26014,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,28,3,163.4783604716482,0,3,3,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,58.16,55.87,6.666666666666667,1,1,0,0,0,5,3,1,4693,217643.8359643022,186753.333510788,0,0,2074.940278588105 -11628,14330,26016,-9,26020,26018,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.82364550454,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,526,1901.596053516696,0,0,0,712.260473815924 -11628,14330,26017,-9,26020,26018,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-978.8761831556706,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,526,1901.596053516696,0,0,0,712.260473815924 -11628,14330,26018,26020,-9,-9,1,1,47,0,4,0,3,3,-9,0,3,0,0,0,25,9,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.28,50.19,59.78,55.17,8.333333333333334,2,3,1,1,4,8,1,0,526,1901.596053516696,0,0,0,712.260473815924 -11628,14330,26019,-9,26020,26018,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.651058929229,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,1,0,526,1901.596053516696,0,0,0,712.260473815924 -11628,14330,26020,26018,-9,-9,1,0,38,0,4,0,2,2,-9,0,4,0,0,0,5,0,0,0,-9,-9,2019,5,0,0,28,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.78,55.17,49.28,50.19,5,2,3,0,1,8,8,1,0,526,1901.596053516696,0,0,0,712.260473815924 -11628,14331,26021,-9,26020,26018,1,1,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-897.479311702062,-9,2,3,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,55.52,36.17,-9,-9,10,2,3,0,1,0,8,1,0,350,0,0,0,0,1304.474053384481 -11629,14332,26022,26023,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,0,0,14,-4,-47.68521920568421,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,1.301351046837404,2,1,1,0,3.876676284580852,0,49.17,58.56,56.55,45.59,8.333333333333334,1,1,0,0,7,7,2,1,614.5,78833.15858449036,0,0,0,1888.080205025904 -11629,14332,26023,26022,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.20252225412996,7.238078309964782,14,4,7.615034645212447,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.600821492896743,7.280268588515608,56.55,45.59,49.17,58.56,8.333333333333334,1,1,0,0,8,7,2,1,614.5,78833.15858449036,0,0,0,1888.080205025904 -11630,14333,26024,26025,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.730678129531453,7.657666903408187,0,15,1,-46.48789948034839,0,3,2,2019,8,0,35,40,1,0,0,9.106326579248138,9.106326579248138,0,0,0,0,0,1,1,0,0,0,51.83,57.2,59.61,41.45,8.333333333333334,1,1,0,0,12,13,3,0,1022,1202082.850467308,949872.0952511372,205546.5614362173,0,2828.804362283144 -11630,14333,26025,26024,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.804741449723855,7.571395485290661,0,15,-1,-73.53239863009972,0,3,-9,2019,6,0,60,55,1,0,0,4.548403702670677,4.548403702670677,0,0,0,0,0,1,1,0,0,0,59.61,41.45,51.83,57.2,6.666666666666667,1,1,0,0,12,13,3,0,1022,1202082.850467308,949872.0952511372,205546.5614362173,0,2828.804362283144 -11631,14334,26026,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.890359791865054,7.176053423525868,0,0,-873.4503419250573,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.903333267687128,50.86,47.22,-9,-9,6.666666666666667,1,1,0,0,0,2,3,0,485,546389.6238965861,266543.8753174957,178666.9759868797,0,1415.959943123142 -11632,14335,26027,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.776835250116656,7.085032573518016,0,0,-937.7760205057327,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.113240347279646,53.81,53.56,-9,-9,10,1,1,0,0,0,10,2,1,366,382404.390963622,148584.2139763068,0,0,1266.856208512143 -11633,14336,26028,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,4.387258434457955,4.676127325355494,0,0,-966.3487021412941,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.033052985127941,0,54.37,54.8,-9,-9,6.666666666666667,4,2,0,0,6,5,2,1,233,-21522.60528750293,0,0,0,138.8969224080143 -11634,14337,26029,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.291929514114537,7.495679953756508,0,0,-1020.910949792582,0,1,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.01463428619984,7.151872944060781,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1182,582970.2854790515,334299.8141041498,245426.2128372307,0,13236.76903914916 -11634,14338,26030,-9,26029,-9,1,1,49,0,0,0,1,1,-9,0,5,7.403102611949651,7.383778599233985,0,0,0,-1004.930022856614,0,2,1,2019,7,0,60,60,1,0,0,3.117756061061991,3.117756061061991,0,0,0,0,0,1,1,0,2.935697945005312,0,57.06,57.76,-9,-9,10,1,1,0,0,8,7,3,1,363,-16554.23370394364,79447.66667513829,0,0,1221.550789707855 -11634,14339,26031,-9,26029,-9,1,1,45,0,0,0,1,1,-9,0,4,7.482517136431566,7.614702429349568,0,0,0,-905.5447898512668,0,2,1,2019,9,0,50,60,1,0,0,5.073110281147477,5.073110281147477,0,0,0,0,0,1,1,0,3.498246240369901,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,2022,17812.51390107249,112051.2943974433,0,0,1607.024016941798 -11635,14340,26032,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.959609200239854,7.912712970008345,0,0,-1018.135742448988,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.417849379947674,8.148393445179432,53.71,46.8,-9,-9,10,1,1,0,0,0,7,4,1,1072,1436068.585744638,462725.21054411,289217.3380101675,0,2144.392943039936 -11636,14341,26033,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.928989693513833,9.200575080454382,0,0,0,-957.0283299619434,0,2,2,2019,8,0,49,50,1,0,0,15.20127338395713,15.20127338395713,0,0,0,0,0,0,0,0,1.100796001941071,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,132,1240258.013356522,924200.407811849,285916.8064291046,0,3225.394979146181 -11637,14342,26034,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.891414562013781,5.846774436610926,0,0,-1013.954407221729,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,5.856442255707635,45.8,54.59,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,2385,616063.3532321973,136604.4323907813,295712.8218039322,0,1008.926768620372 -11637,14343,26035,-9,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,0,3.836151327873003,3.713443839723194,0,0,-1029.941872869148,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.559301014242841,0,39.83,43.06,-9,-9,5,1,1,0,0,0,1,2,1,541,12419.69643940126,0,0,0,639.2207153824695 -11638,14344,26036,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.798692392177061,8.053426411948267,0,0,0,-942.1991621243452,0,-9,-9,2019,13,1,37,37,1,1,0,8.158535217258585,8.158535217258585,0,0,0,0,2,1,1,0,0,0,52.97,51.29,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,97,317608.2557432316,286662.1205866975,0,0,1139.448299876259 -11639,14345,26037,-9,26038,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.568000301474,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1529,218804.4535876247,4749.38052450644,157413.0166819385,94305.16009606807,2756.000294895751 -11639,14345,26038,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.152315225625602,8.406992944818324,5.901960092831072,0,0,-999.3780263775687,0,2,2,2019,8,0,40,40,1,0,0,11.51272779037793,11.51272779037793,0,0,0,0,0,1,1,0,6.36931443851807,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,1529,218804.4535876247,4749.38052450644,157413.0166819385,94305.16009606807,2756.000294895751 -11639,14345,26039,-9,26038,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.0659099819576,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1529,218804.4535876247,4749.38052450644,157413.0166819385,94305.16009606807,2756.000294895751 -11640,14346,26040,26041,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.642866293769437,8.685597451732491,0,1,-3,-114.2143165493601,-9,2,2,2019,15,4,35,0,1,4,0,25.77271983420834,25.77271983420834,0,0,0,0,0,0,0,0,0,0,35.57,63.56,51.83,57.2,8.333333333333334,1,1,0,0,9,13,5,1,910,351207.9949595763,268190.5914731575,320968.8980545203,190664.1920174081,5716.357695753726 -11640,14346,26041,26040,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.083023738671896,8.965451466715493,0,1,3,9.605451138557244,-9,2,2,2019,10,1,37,0,1,1,0,32.26902595893193,32.26902595893193,0,0,0,0,0,0,0,0,0,0,51.83,57.2,35.57,63.56,8.333333333333334,1,1,0,0,9,13,5,1,910,351207.9949595763,268190.5914731575,320968.8980545203,190664.1920174081,5716.357695753726 -11640,14346,26042,-9,26040,26041,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.964911884771,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,910,351207.9949595763,268190.5914731575,320968.8980545203,190664.1920174081,5716.357695753726 -11641,14347,26043,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.594546557908918,5.052347290580958,0,0,-1044.064712304637,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,3.189757682773015,9.034740666457786,17.71480698008862,0,1,1,0,0,5.358667053347853,36.77,38.64,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,276,102835.6538351482,-5369.566322108602,0,0,1681.700703647325 -11642,14348,26044,26045,-9,-9,1,1,27,0,1,0,2,2,-9,1,1,0,0,0,4,1,103.4562832578317,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.31,28.62,43.42,62.33,1.666666666666667,1,1,0,0,6,1,2,0,1071.666666666667,79368.07517094054,0,0,0,947.3060536123688 -11642,14348,26045,26044,-9,-9,1,0,26,0,1,0,1,1,-9,0,4,6.521890730853583,6.066171568783669,0,4,-1,-52.12735056873893,0,2,-9,2019,14,2,45,40,1,2,0,1.428577264073998,1.428577264073998,0,0,0,0,2,1,1,0,0,0,43.42,62.33,35.31,28.62,6.666666666666667,1,1,0,0,8,1,2,0,1071.666666666667,79368.07517094054,0,0,0,947.3060536123688 -11642,14348,26046,-9,26045,26044,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.149448989887,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,1071.666666666667,79368.07517094054,0,0,0,947.3060536123688 -11643,14349,26047,26048,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.153843839559421,7.183542786611341,0,8,-3,130.4077984748608,0,3,3,2019,11,0,21,25,1,0,0,6.797190613433006,6.797190613433006,0,0,0,0,2,1,1,0,0,0,48.87,58.55,54.37,54.8,8.333333333333334,1,1,0,0,11,11,2,1,548.5,605708.9954549284,113297.2233922344,165837.0860010259,0,449.6497634598817 -11643,14349,26048,26047,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,42,3,-115.739074118503,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.096656360780701,0,54.37,54.8,48.87,58.55,8.333333333333334,1,1,0,0,10,11,2,1,548.5,605708.9954549284,113297.2233922344,165837.0860010259,0,449.6497634598817 -11644,14350,26049,26052,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,8.123846965738799,8.193869081280427,0,25,2,-120.1746586440203,0,2,2,2019,8,0,33,30,1,0,0,12.2428011863415,12.2428011863415,0,0,0,0,0,1,1,0,.8343107650033381,0,52.81,49.13,49.12,44.08,6.666666666666667,1,1,0,0,12,10,4,1,488.75,213829.5575478046,-22564.43344674715,182403.2521922828,51213.0239641874,2797.809177669935 -11644,14350,26050,-9,26049,26052,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.401475042381,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.9539242470625307,0,56.57,57.78,-9,-9,10,1,1,0,0,12,10,4,1,488.75,213829.5575478046,-22564.43344674715,182403.2521922828,51213.0239641874,2797.809177669935 -11644,14350,26051,-9,26049,26052,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.0206030947431,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,488.75,213829.5575478046,-22564.43344674715,182403.2521922828,51213.0239641874,2797.809177669935 -11644,14350,26052,26049,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.367005081245875,8.092174803685179,0,26,-2,22.67384534650088,0,1,2,2019,12,0,38,43,1,0,0,12.50002167301387,12.50002167301387,0,0,0,0,0,1,1,0,.2881135785328465,0,49.12,44.08,52.81,49.13,5,1,1,0,0,12,10,4,1,488.75,213829.5575478046,-22564.43344674715,182403.2521922828,51213.0239641874,2797.809177669935 -11645,14351,26053,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.112814499270183,7.429657206299998,0,0,-1071.855531060978,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,13.51215574205793,0,0,1,1,0,5.159518773122786,6.918691809974137,47.87,37.53,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,680,-213381.8809137166,0,0,0,1779.159918630184 -11646,14352,26054,26055,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.295123056718245,8.39804435357545,0,6,-4,-107.6300818794566,0,2,3,2019,6,0,37,37,1,0,0,12.38518110121188,12.38518110121188,0,0,0,0,0,1,1,0,2.682271633062007,0,57.33,53.46,57.87,53.19,6.666666666666667,1,1,0,0,7,7,4,1,590,431599.4533730014,262650.0365953639,174392.6857185573,42829.4807590505,2670.367852090562 -11646,14352,26055,26054,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,7.957892165783986,7.987075378833482,0,6,4,106.9815903964133,0,2,2,2019,10,0,24,28,1,0,0,16.13578175624376,16.13578175624376,0,0,0,0,0,1,1,0,0,0,57.87,53.19,57.33,53.46,8.333333333333334,1,1,0,0,6,7,4,1,590,431599.4533730014,262650.0365953639,174392.6857185573,42829.4807590505,2670.367852090562 -11646,14352,26056,-9,26055,26054,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.7137304277152,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,590,431599.4533730014,262650.0365953639,174392.6857185573,42829.4807590505,2670.367852090562 -11646,14352,26057,-9,26055,26054,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-987.9219164307998,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,590,431599.4533730014,262650.0365953639,174392.6857185573,42829.4807590505,2670.367852090562 -11647,14353,26058,26059,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.239575231096133,5.061893723210876,6,-1,-14.18773380686716,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.933660307114622,51,46,53,46,7,1,1,0,0,0,7,2,1,687,625832.8243224069,179911.9105669534,178661.7691974452,0,1899.63327071599 -11647,14353,26059,26058,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.520498514786377,6.365427219380894,51,1,28.29231409149112,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.873840176863723,6.110545762255626,53,46,51,46,7,1,1,0,0,0,7,2,1,687,625832.8243224069,179911.9105669534,178661.7691974452,0,1899.63327071599 -11648,14354,26060,-9,26063,26061,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.6292291517179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,907.25,195476.5647195492,87092.15677693236,278647.9788112254,17025.1442361578,2732.64564770692 -11648,14354,26061,26063,-9,-9,1,1,57,0,2,0,2,2,-9,0,4,7.905601203025334,8.090369447538132,0,9,13,43.80354687806754,0,2,1,2019,10,0,37,37,1,0,0,10.25053239150206,10.25053239150206,0,0,0,0,2,1,1,0,0,0,55.19,54.26,54.79,55.86,8.333333333333334,4,5,0,1,12,10,4,1,907.25,195476.5647195492,87092.15677693236,278647.9788112254,17025.1442361578,2732.64564770692 -11648,14354,26062,-9,26063,26061,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.734418079204,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,907.25,195476.5647195492,87092.15677693236,278647.9788112254,17025.1442361578,2732.64564770692 -11648,14354,26063,26061,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.197638267324571,8.360970110966214,0,9,-13,78.55517870370072,0,2,2,2019,7,0,30,28,1,0,0,13.17026112478387,13.17026112478387,0,0,0,0,0,1,1,0,0,0,54.79,55.86,55.19,54.26,6.666666666666667,1,1,0,1,12,10,4,1,907.25,195476.5647195492,87092.15677693236,278647.9788112254,17025.1442361578,2732.64564770692 -11649,14355,26064,26065,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.287684275233008,7.48804980269756,35,16,-25.13117697556455,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.26248144918178,52.4,50.21,38.7,48.99,10,1,1,0,0,0,10,4,1,1457,910625.9846438486,307098.6173176906,210373.5335206496,0,3185.960587808121 -11649,14355,26065,26064,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,8.042991301127667,7.830292903401113,35,-16,32.57800259850736,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.187501316990877,8.180829823531669,38.7,48.99,52.4,50.21,5,1,1,0,0,4,10,4,1,1457,910625.9846438486,307098.6173176906,210373.5335206496,0,3185.960587808121 -11650,14356,26066,-9,26068,26067,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.4217720718179,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,3,0,260,432496.7651941318,0,481500.3811962379,196606.9978723926,1699.541801837678 -11650,14356,26067,26068,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.34452995829237,8.510274581589879,0,1,-2,2.144342165787314,-9,-9,-9,2019,15,3,65,0,1,3,0,7.670275637756755,7.670275637756755,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.63,38.2,8.333333333333334,1,1,0,0,8,7,3,0,260,432496.7651941318,0,481500.3811962379,196606.9978723926,1699.541801837678 -11650,14356,26068,26067,-9,-9,1,0,32,0,1,0,2,2,-9,1,3,0,0,0,1,2,-64.96576821648786,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,60.63,38.2,57.33,53.46,6.666666666666667,1,1,0,0,0,7,3,0,260,432496.7651941318,0,481500.3811962379,196606.9978723926,1699.541801837678 -11651,14357,26069,-9,26070,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1120.230135823726,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,2,1,805,88148.70288359134,-14376.24824279182,117550.9959311836,0,1882.641572722258 -11651,14357,26070,-9,-9,-9,1,0,39,0,2,0,1,1,-9,1,5,6.788719122969478,7.425664747025257,5.627961069340158,1,6,-46.23902619371859,0,2,2,2019,9,0,27,21,1,0,0,3.780530828410291,3.780530828410291,0,0,0,0,99,1,1,0,5.60544848127874,0,51.14,60.45,48,57,8.333333333333334,1,1,0,0,9,4,2,1,805,88148.70288359134,-14376.24824279182,117550.9959311836,0,1882.641572722258 -11651,14357,26071,-9,26070,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.3234503697801,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,805,88148.70288359134,-14376.24824279182,117550.9959311836,0,1882.641572722258 -11652,14358,26072,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1028.624734172654,0,-9,-9,2019,20,7,0,17,3,7,0,0,0,0,0,0,0,42,1,0,1,0,0,16.04,23.99,-9,-9,6.666666666666667,1,1,1,1,12,5,2,1,345,-86323.03277495749,0,0,0,595.0997058528686 -11652,14359,26073,-9,-9,26072,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1076.444586889919,0,-9,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,7,1,0,1,0,0,45.94,54.59,-9,-9,10,1,1,1,0,0,5,1,1,511,102603.1270994939,0,0,0,-155.4636879324972 -11653,14360,26074,26075,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,8.070071037130345,8.075107774162337,0,3,-6,3.529891352951831,0,-9,-9,2019,6,0,30,37,1,0,0,12.66511757617579,12.66511757617579,0,0,0,0,0,1,1,0,2.553836484284866,0,54.2,57.49,60.69,29.25,8.333333333333334,1,1,0,0,10,5,4,1,734,1609461.16071218,849078.2535398321,275742.5292694365,0,2953.149913602869 -11653,14360,26075,26074,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.526168535017169,6.980225698864247,3,6,-70.93081983925271,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.564025607126536,7.083752771467603,60.69,29.25,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,734,1609461.16071218,849078.2535398321,275742.5292694365,0,2953.149913602869 -11654,14361,26076,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.181773108480257,8.205270964385752,5.927482678220868,0,0,-888.3671055024123,0,2,2,2019,32,12,30,40,1,12,0,14.08141261295058,14.08141261295058,0,0,0,0,0,1,1,0,2.221891787560729,6.251927865501353,18.2,64.59999999999999,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,1421,288209.085578666,46062.58569089016,133743.2042726672,0,2548.074061329534 -11655,14362,26077,-9,26078,26079,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-919.9862322024152,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,957,1623941.052106008,721570.5489713708,665894.8480156251,0,11305.39753341677 -11655,14362,26078,26079,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.691382933468407,8.070235187815726,0,9,3,62.13093269734735,0,2,1,2019,12,0,18,30,1,0,0,13.58759589349879,13.58759589349879,0,0,0,0,0,0,0,0,0,0,49.91,58.02,44.02,60.7,8.333333333333334,1,1,0,0,10,7,5,1,957,1623941.052106008,721570.5489713708,665894.8480156251,0,11305.39753341677 -11655,14362,26079,26078,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.621403023873157,9.518829181121951,0,9,-3,-14.38213071593339,0,3,3,2019,21,10,50,40,1,10,0,32.40921001846807,32.40921001846807,0,0,0,0,0,0,0,0,7.310066440949818,0,44.02,60.7,49.91,58.02,8.333333333333334,1,1,0,0,10,7,5,1,957,1623941.052106008,721570.5489713708,665894.8480156251,0,11305.39753341677 -11655,14363,26080,-9,26078,26079,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1042.619003497317,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,241,-65369.27875235881,0,0,0,0 -11655,14364,26081,-9,26078,26079,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-991.6571867989471,-9,1,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,10,1,1,0,0,1,7,1,1,108,-177750.3553415806,0,0,0,0 -11656,14365,26082,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,8.614576688203314,8.317367609232818,0,0,-1028.529664702012,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.019927206961704,8.166405499714211,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1235,993076.0252606061,87918.21934671034,402455.4137295288,0,3694.943324704398 -11657,14366,26083,26084,-9,-9,1,0,24,0,1,0,2,2,-9,0,5,0,0,0,3,-1,-11.34907189579164,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.85,57.37,51.83,57.2,8.333333333333334,1,1,0,0,0,4,2,0,1024.666666666667,-42202.66253668816,8912.58148830856,0,0,1569.83311418827 -11657,14366,26084,26083,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,7.160018075494543,7.296900500584129,0,3,1,2.959005117909637,0,-9,-9,2019,9,1,24,16,1,1,0,5.752443976395414,5.752443976395414,0,0,0,0,7,1,1,0,0,0,51.83,57.2,46.85,57.37,6.666666666666667,1,1,0,0,8,4,2,0,1024.666666666667,-42202.66253668816,8912.58148830856,0,0,1569.83311418827 -11657,14366,26085,-9,26083,26084,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.8938974419859,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1024.666666666667,-42202.66253668816,8912.58148830856,0,0,1569.83311418827 -11658,14367,26086,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.013491353855539,8.20537950721272,0,0,-1003.359765244529,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.703390157534608,8.329166526508278,57.7,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,171,1423183.99595733,773059.9039860186,333778.6015042537,0,1537.183913684943 -11659,14368,26087,26089,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.426612852945986,8.52702048550807,0,9,-2,-41.52660978701475,0,1,1,2019,16,4,41,42,1,4,0,12.02190894661536,12.02190894661536,0,0,0,0,0,1,1,0,0,0,39.77,49.18,40.42,54.21,6.666666666666667,1,1,0,0,9,2,4,1,907.3333333333334,2019804.127828065,1408790.450014145,351262.6215692353,80105.47052111621,3178.009363723248 -11659,14368,26088,-9,26089,26087,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-934.3560839514212,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.95,57.56,-9,-9,10,1,1,0,0,1,2,4,1,907.3333333333334,2019804.127828065,1408790.450014145,351262.6215692353,80105.47052111621,3178.009363723248 -11659,14368,26089,26087,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.801401763600955,8.009758552701669,0,9,2,23.79110517984559,0,1,1,2019,13,2,38,38,1,2,0,6.630419159865109,6.630419159865109,0,0,0,0,0,1,1,0,0,0,40.42,54.21,39.77,49.18,6.666666666666667,1,1,0,0,9,2,4,1,907.3333333333334,2019804.127828065,1408790.450014145,351262.6215692353,80105.47052111621,3178.009363723248 -11659,14369,26090,-9,26089,26087,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.433023853421,-9,2,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.23,56.21,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,650,0,0,0,0,0 -11660,14370,26091,-9,26094,26093,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.418654664923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,452.5,618961.5215656499,332735.7697564678,371961.1927571638,140314.6019114906,12425.31526840687 -11660,14370,26092,-9,26094,26093,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.879493087028,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,452.5,618961.5215656499,332735.7697564678,371961.1927571638,140314.6019114906,12425.31526840687 -11660,14370,26093,26094,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.742401058812343,9.949240509761408,0,15,12,44.53739998433498,0,3,2,2019,9,0,60,50,1,0,0,35.37657762821567,35.37657762821567,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,1,1,0,0,9,2,5,1,452.5,618961.5215656499,332735.7697564678,371961.1927571638,140314.6019114906,12425.31526840687 -11660,14370,26094,26093,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.902414659435664,8.631567768267209,0,15,-12,89.6808789230421,0,1,1,2019,3,0,55,33,1,0,0,12.46980565632469,12.46980565632469,0,0,0,0,0,1,1,0,1.984916858515326,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,452.5,618961.5215656499,332735.7697564678,371961.1927571638,140314.6019114906,12425.31526840687 -11661,14371,26095,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.338881455201183,7.766221683799972,0,0,-1005.092124021174,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,21.37411540812151,0,0,1,1,0,0,7.280285949959373,55.17,35.34,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,852,802396.8318390262,171972.8355497738,532823.5195406929,0,2454.349649872274 -11662,14372,26096,26097,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.487390227090735,8.459781588012429,0,32,-4,21.06902845729029,0,3,3,2019,6,0,35,39,1,0,0,18.26774536374558,18.26774536374558,0,0,0,0,2,0,0,0,4.479168265883692,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,1,1119,-44903.81223390275,-72863.13008546912,92186.67091169312,74243.05103412033,5084.323366578917 -11662,14372,26097,26096,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.632719945439408,8.694935947253601,7.260956691688617,32,4,-61.21317900176679,0,3,3,2019,6,0,40,35,1,0,0,11.42501345660703,11.42501345660703,0,0,0,0,2,0,0,0,7.94136197751267,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,1119,-44903.81223390275,-72863.13008546912,92186.67091169312,74243.05103412033,5084.323366578917 -11663,14373,26098,26099,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.603047083339845,8.591226329665758,0,41,-5,-37.33220655215062,0,3,3,2019,6,0,58,42,1,0,0,15.71956227434916,15.71956227434916,0,0,0,0,0,0,0,0,3.950351696762479,0,62.49,55.09,40.64,52.96,10,1,1,0,0,11,4,4,1,363.5,170312.8729982972,152339.6779272063,223451.9355655378,159252.7904542228,2798.228100136254 -11663,14373,26099,26098,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,40,5,-17.26700727505293,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.607590354925016,0,40.64,52.96,62.49,55.09,8.333333333333334,1,1,0,0,0,4,4,1,363.5,170312.8729982972,152339.6779272063,223451.9355655378,159252.7904542228,2798.228100136254 -11664,14374,26100,26101,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.802325796196975,9.236557867655131,0,32,1,177.764889754787,0,2,3,2019,11,0,37,45,1,0,0,27.45136907177615,27.45136907177615,0,0,0,0,0,0,0,0,0,0,63.09,47.92,37.42,30.57,8.333333333333334,1,1,0,0,10,9,5,1,258,221131.4979697467,104372.6735767301,0,0,2052.585227380249 -11664,14374,26101,26100,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,32,-1,132.1632667620232,0,3,3,2019,19,7,0,37,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,30.57,63.09,47.92,3.333333333333333,1,1,0,0,8,9,5,1,258,221131.4979697467,104372.6735767301,0,0,2052.585227380249 -11664,14375,26102,-9,26101,26100,1,0,19,0,0,0,2,2,1,0,3,7.868672861001234,7.494490739904042,0,0,0,-1041.524311888907,-9,3,2,2019,12,0,45,0,1,0,1,6.125787205193386,6.125787205193386,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,259,2600.376069963054,0,0,0,176.7902480209649 -11665,14376,26103,26104,-9,-9,1,1,82,0,0,0,1,1,-9,0,1,0,7.206396217801896,7.164254432862302,62,1,87.75346247721467,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.293796332270907,8.738966846810525,20.40646887311651,0,1,1,0,4.448075909973104,7.526526585137887,34.22,20.89,33.06,26.82,5,1,1,0,0,0,7,3,1,472,1023656.351114437,164758.3867643446,541033.7110239896,0,1371.994458263947 -11665,14376,26104,26103,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,4.772591418563251,4.502652172656735,62,-1,24.07142380226903,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,.7277249036590119,0,0,1,1,0,5.804075671335069,5.089784684534467,33.06,26.82,34.22,20.89,5,1,1,0,0,0,7,3,1,472,1023656.351114437,164758.3867643446,541033.7110239896,0,1371.994458263947 -11665,14377,26105,-9,26104,26103,1,1,58,0,0,0,1,1,-9,1,1,0,7.510585759810013,7.198798408565246,0,0,-987.8878372920402,-9,2,1,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,7.592359835224733,26.65,23.11,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,344,510010.3541120343,0,307740.4407490034,0,1438.969574948073 -11665,14378,26106,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.581562887972,0,-9,-9,2019,15,4,0,38,4,4,0,0,0,0,0,0,0,42,1,1,0,3.597343922325916,0,38.16,47.36,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,1146,9135.177833064619,0,-17428.91288015289,0,1324.6690774877 -11666,14379,26107,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.168104196010032,7.177840766131444,0,0,-891.8809135826044,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.272267142357498,6.995048128587809,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,532,667540.310135247,228600.6357175413,367014.4826579758,0,1543.563468304852 -11667,14380,26108,-9,26109,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.707310098859153,7.734303078856211,0,0,-1043.810703126188,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,0,7.483119305144861,48.45,36.23,-9,-9,5,1,1,0,0,0,8,3,1,246,721119.5103750514,278356.1558154142,363193.3507939231,51255.04689488995,677.1105870785716 -11667,14381,26109,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1072.838760463391,0,2,3,2019,21,10,0,0,4,10,0,0,0,1,0,29.30211359441135,0,0,1,1,0,0,0,37.96,24.76,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,213,481821.8817861656,0,406352.9218521905,0,586.2572209535851 -11668,14382,26110,26113,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,0,0,0,15,0,-11.42241992080795,0,2,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,8.009405805538309,0,58.55,51.64,56.5,48.33,8.333333333333334,1,1,0,0,0,6,3,1,744.5,133359.4822372415,44127.62912035004,88050.90601473254,25126.02403273009,3938.546104286765 -11668,14382,26111,-9,26110,26113,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.337824587209,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,6,3,1,744.5,133359.4822372415,44127.62912035004,88050.90601473254,25126.02403273009,3938.546104286765 -11668,14382,26112,-9,26110,26113,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.1897081961941,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,744.5,133359.4822372415,44127.62912035004,88050.90601473254,25126.02403273009,3938.546104286765 -11668,14382,26113,26110,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.221483700716053,8.468096219775179,0,15,0,-89.66857938651052,0,1,1,2019,11,1,50,30,1,1,0,8.076857888656731,8.076857888656731,0,0,0,0,0,0,0,0,0,0,56.5,48.33,58.55,51.64,8.333333333333334,2,3,0,0,9,6,3,1,744.5,133359.4822372415,44127.62912035004,88050.90601473254,25126.02403273009,3938.546104286765 -11669,14383,26114,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.970444919840317,7.831507103655201,0,0,0,-1001.936694620944,0,3,3,2019,10,0,38,37,1,0,0,8.149477878362122,8.149477878362122,0,0,0,0,7,1,1,0,0,0,51.98,54.53,-9,-9,6.666666666666667,1,1,0,1,9,1,4,1,475,409178.3454208244,145064.598226711,512176.3516292364,48812.17422695134,1078.678936765464 -11669,14384,26115,-9,26114,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-880.0111750417909,1,1,-9,2019,8,2,0,38,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,4,2,0,1,7,1,1,1,1933,45607.42876666304,0,0,0,1078.719179927473 -11670,14385,26116,26117,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.161847150603894,7.13590674710556,60,-3,-124.4821659217851,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,14.31819585417372,0,0,1,1,0,3.322052368956626,7.337650301060481,52,45,54.87,27.64,8,1,1,0,0,0,7,4,1,1129.5,1016594.833684287,309644.8491067394,463032.8364891309,0,3985.454738377808 -11670,14385,26117,26116,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,8.083467269342359,8.258770446144686,60,3,-57.9592429921134,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.462643843860957,0,31.30633075393186,2,1,1,0,6.890540997434215,7.859433291306561,54.87,27.64,52,45,5,1,1,0,0,0,7,4,1,1129.5,1016594.833684287,309644.8491067394,463032.8364891309,0,3985.454738377808 -11671,14386,26118,-9,26119,-9,1,0,24,0,1,0,2,2,0,0,4,0,0,0,0,0,-886.9380422250208,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,587,-84579.56403278257,0,0,0,164.5651357847294 -11671,14387,26119,26120,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.494698989512933,8.061770291762437,7.190684723337668,4,-2,-33.88824786937576,0,2,2,2019,9,0,34,30,1,0,0,7.52983596817596,7.52983596817596,0,0,0,0,0,1,1,0,6.697470500159737,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,11,12,5,1,506,626950.356065565,622437.5215728153,0,0,3932.489504376195 -11671,14387,26120,26119,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.964831789898502,8.587389497042574,0,4,2,-7.759399835202169,0,-9,-9,2019,10,1,40,40,1,1,0,17.33887848456846,17.33887848456846,0,0,0,0,0,1,1,0,0,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,506,626950.356065565,622437.5215728153,0,0,3932.489504376195 -11671,14387,26121,-9,26119,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.5056482017178,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,506,626950.356065565,622437.5215728153,0,0,3932.489504376195 -11672,14388,26122,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.103700693444082,6.64444003041376,0,0,-1031.128637993173,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.794999671701426,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,531,403125.946061307,183569.3945226482,93916.55586587665,0,674.0303515984306 -11673,14389,26123,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0251853111172,8.273517766795621,0,0,0,-996.9501383945874,0,3,3,2019,19,9,30,30,1,9,0,13.82432848803256,13.82432848803256,0,0,0,0,0,1,1,0,0,0,37.75,63.75,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,1661,210213.8132924328,1174.382681702592,0,0,912.5365763420954 -11674,14390,26124,26125,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.854250209697259,9.469287667105261,8.506265862366513,38,2,7.849974670564808,0,1,1,2019,7,0,32,24,1,0,0,20.09964804192525,20.09964804192525,0,0,0,0,0,0,0,0,1.503363461272043,8.791125343964001,52,54.51,58.87,37.89,8.333333333333334,2,3,0,0,13,8,5,1,1266.5,2932453.197157891,454718.1697779765,2470768.005798255,138627.8690008294,6528.613652243821 -11674,14390,26125,26124,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.51551099584626,7.697141932671233,38,-2,39.01412477719992,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,2.132478335237062,0,0,0,0,1.129411062540059,7.708432258423485,58.87,37.89,52,54.51,8.333333333333334,2,3,0,0,8,8,5,1,1266.5,2932453.197157891,454718.1697779765,2470768.005798255,138627.8690008294,6528.613652243821 -11675,14391,26126,-9,26129,26127,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1013.728170719966,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,6,5,1,827.75,152648.4000250847,65347.10668874166,283221.6050046757,113198.5247597908,4735.840637844115 -11675,14391,26127,26129,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,9.532774591298503,9.051272733809864,0,8,3,-93.08247607403575,-9,2,2,2019,10,0,40,0,1,0,0,36.74037049115695,36.74037049115695,0,0,0,0,0,0,0,0,0,0,58.56,46.45,59.31,49.81,8.333333333333334,1,1,0,0,10,6,5,1,827.75,152648.4000250847,65347.10668874166,283221.6050046757,113198.5247597908,4735.840637844115 -11675,14391,26128,-9,26129,26127,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-916.7657758748971,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,5,1,827.75,152648.4000250847,65347.10668874166,283221.6050046757,113198.5247597908,4735.840637844115 -11675,14391,26129,26127,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.290636834327108,8.296422053273318,0,8,-3,.2952674677945821,0,2,2,2019,4,0,38,38,1,0,0,14.6471777493104,14.6471777493104,0,0,0,0,0,0,0,0,0,0,59.31,49.81,58.56,46.45,8.333333333333334,1,1,0,0,9,6,5,1,827.75,152648.4000250847,65347.10668874166,283221.6050046757,113198.5247597908,4735.840637844115 -11676,14392,26130,26131,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.635878736978409,8.520607728455193,0,9,1,-75.86887139648013,0,-9,-9,2019,9,2,50,46,1,2,0,13.59756307486864,13.59756307486864,0,0,0,0,0,1,1,0,0,0,55.19,54.26,52.99,51.28,6.666666666666667,1,1,0,0,11,1,4,1,994.5,460197.1242020553,24203.99088279523,407113.9235828914,52705.94787450824,2504.973270684586 -11676,14392,26131,26130,-9,-9,1,0,41,0,2,0,1,1,1,0,3,0,0,0,9,-1,37.53525688645495,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,55.19,54.26,6.666666666666667,1,1,0,0,3,1,4,1,994.5,460197.1242020553,24203.99088279523,407113.9235828914,52705.94787450824,2504.973270684586 -11676,14392,26132,-9,26131,26130,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.6955861622458,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,994.5,460197.1242020553,24203.99088279523,407113.9235828914,52705.94787450824,2504.973270684586 -11676,14392,26133,-9,26131,26130,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.1365777770191,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,994.5,460197.1242020553,24203.99088279523,407113.9235828914,52705.94787450824,2504.973270684586 -11677,14393,26134,26135,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,9.717729046842949,9.688519591231685,0,1,3,62.89849312790042,-9,2,3,2019,8,0,55,0,1,0,0,30.84022215996828,30.84022215996828,0,0,0,0,0,1,1,0,0,0,64.07000000000001,39.85,57.16,56.15,8.333333333333334,1,1,0,0,13,12,5,0,1168,5838797.104273576,148541.481853541,3519063.123981194,217949.2672469973,9526.654443084899 -11677,14393,26135,26134,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.326754121831451,8.27903923480763,0,1,-3,89.71868828359558,-9,-9,-9,2019,6,0,42,0,1,0,0,14.91706051729829,14.91706051729829,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.07000000000001,39.85,8.333333333333334,1,1,0,0,1,12,5,0,1168,5838797.104273576,148541.481853541,3519063.123981194,217949.2672469973,9526.654443084899 -11678,14394,26136,-9,26138,26137,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-945.6534214572035,0,2,1,2019,31,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,16.05,65.73,-9,-9,1.666666666666667,1,1,1,0,0,10,1,0,570,50746.15142470809,0,0,0,373.1078893284784 -11678,14395,26137,26138,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,4.402744247410337,4.332164092399237,0,8,-2,2.187085611451953,0,2,2,2019,13,2,50,37,1,2,0,.2666455482922834,.2666455482922834,0,0,0,0,0,1,0,1,0,0,46.45,51.59,37.19,26.65,8.333333333333334,4,2,0,1,9,10,2,0,606.5,950907.2114502676,761637.7970203015,171942.9526726217,0,243.9580417250311 -11678,14395,26138,26137,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,4.698892904518913,4.421217700772129,0,8,2,-50.61137105659816,0,-9,-9,2019,26,12,2,6,1,12,0,5.256620503220116,5.256620503220116,0,0,0,0,0,1,0,1,0,0,37.19,26.65,46.45,51.59,6.666666666666667,4,5,0,0,2,10,2,0,606.5,950907.2114502676,761637.7970203015,171942.9526726217,0,243.9580417250311 -11679,14396,26139,26140,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,7.652254856765606,7.69271497649522,0,4,0,-39.15880116171813,0,-9,-9,2019,3,0,28,25,1,0,0,6.130841464364011,6.130841464364011,0,0,0,0,0,1,1,0,0,0,61.49,43.19,58.92,48.59,5,2,3,0,1,6,8,2,0,1255.75,59460.67694837977,32339.7375774187,0,0,2597.373878802511 -11679,14396,26140,26139,-9,-9,1,1,46,1,4,0,3,3,-9,0,3,0,0,0,24,9,-55.02745880946372,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.92,48.59,61.49,43.19,8.333333333333334,2,3,1,0,4,8,2,0,1255.75,59460.67694837977,32339.7375774187,0,0,2597.373878802511 -11679,14396,26141,-9,26139,26140,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-968.8220368842756,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,0,1255.75,59460.67694837977,32339.7375774187,0,0,2597.373878802511 -11679,14396,26142,-9,26139,26140,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.6734885329105,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,1255.75,59460.67694837977,32339.7375774187,0,0,2597.373878802511 -11679,14397,26143,-9,26139,26140,1,1,18,1,4,1,2,0,0,0,4,0,0,0,0,0,-1089.100860348952,-9,2,3,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,2,3,0,0,0,8,1,0,317,0,0,0,0,241.4596391641474 -11680,14398,26144,26145,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.559089462948508,8.905135819372468,0,6,0,-37.12695701837841,0,2,-9,2019,8,0,40,40,1,0,0,16.29132663108354,16.29132663108354,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,5,3,1,510.5,193537.1065226533,147282.6949693082,164670.3129699984,101163.5447648898,2237.380427539659 -11680,14398,26145,26144,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,6,0,4.907862532982973,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,0,5,3,1,510.5,193537.1065226533,147282.6949693082,164670.3129699984,101163.5447648898,2237.380427539659 -11680,14398,26146,-9,26145,26144,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-986.8443676300611,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.78,53.38,-9,-9,6.666666666666667,2,3,0,0,0,5,3,1,510.5,193537.1065226533,147282.6949693082,164670.3129699984,101163.5447648898,2237.380427539659 -11680,14398,26147,-9,26145,26144,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1029.602564546632,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,3,1,510.5,193537.1065226533,147282.6949693082,164670.3129699984,101163.5447648898,2237.380427539659 -11680,14399,26148,-9,26145,26144,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-957.3731137397488,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,344,22242.31168818678,0,0,0,0 -11681,14400,26149,26150,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.339765469446048,8.382025198378381,32,5,55.26761348100979,0,3,3,2019,11,0,0,45,4,0,0,0,0,0,0,0,.2694732766858223,0,0,0,0,7.965882714929545,8.351943407504422,46.57,44.73,58.15,52.91,8.333333333333334,1,1,0,0,7,13,5,1,993.5,553754.807753862,555065.6211327007,87171.23860851341,70613.95389646965,4041.160869072778 -11681,14400,26150,26149,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.138251573063133,8.545623593338695,0,32,-5,-16.82244571904917,0,2,3,2019,6,0,38,38,1,0,0,12.64832511351366,12.64832511351366,0,0,0,0,0,0,0,0,3.328338612035366,0,58.15,52.91,46.57,44.73,8.333333333333334,1,1,0,0,8,13,5,1,993.5,553754.807753862,555065.6211327007,87171.23860851341,70613.95389646965,4041.160869072778 -11682,14401,26151,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.828726951366955,7.699988877427525,5.901882275266142,0,0,-941.8891101790356,0,3,3,2019,11,1,37,37,1,1,0,7.717594302184724,7.717594302184724,0,0,0,0,0,0,0,0,0,6.07635839409216,45.51,48.29,-9,-9,3.333333333333333,1,1,0,1,5,1,4,1,880,343015.6386431165,208020.5704424211,0,0,1981.961272533298 -11682,14402,26152,-9,26151,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1069.084559845543,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.12,53.02,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,343,38100.42760383545,0,0,0,1320.119941952639 -11682,14403,26153,-9,26151,-9,1,1,26,0,0,0,2,2,0,0,2,0,0,0,0,0,-980.2717511086689,-9,2,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,33.16,54.24,-9,-9,3.333333333333333,1,1,0,1,1,1,1,1,2881,10231.87478848821,0,0,0,0 -11683,14404,26154,-9,26157,26155,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.478032149959,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,0,292.5,34849.25172191483,-9773.797188985251,123284.8031018059,93322.51320156013,2064.173296111153 -11683,14404,26155,26157,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,8.031800365516288,7.9211141375139,0,2,2,-17.8899147409368,0,-9,-9,2019,14,2,43,39,1,2,0,7.57418817337336,7.57418817337336,0,0,0,0,0,1,1,0,0,0,36.16,61.92,36.45,57.39,5,1,1,0,0,4,12,3,0,292.5,34849.25172191483,-9773.797188985251,123284.8031018059,93322.51320156013,2064.173296111153 -11683,14404,26156,-9,26157,26155,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.190423424093,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,292.5,34849.25172191483,-9773.797188985251,123284.8031018059,93322.51320156013,2064.173296111153 -11683,14404,26157,26155,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,6.885330883332107,7.278458135875292,0,2,-2,-47.9964970655154,0,2,2,2019,19,7,17,17,1,7,0,8.82592517516089,8.82592517516089,0,0,0,0,2,1,1,0,0,0,36.45,57.39,36.16,61.92,8.333333333333334,1,1,0,0,9,12,3,0,292.5,34849.25172191483,-9773.797188985251,123284.8031018059,93322.51320156013,2064.173296111153 -11684,14405,26158,-9,26160,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1221.93414833019,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,1,0,696.6666666666666,133487.9563673985,0,0,0,2017.750909696246 -11684,14405,26159,-9,26160,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.241047429009,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,1,0,696.6666666666666,133487.9563673985,0,0,0,2017.750909696246 -11684,14405,26160,-9,-9,-9,1,0,25,1,2,0,2,2,-9,1,3,0,0,0,0,0,-1027.269437265908,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,696.6666666666666,133487.9563673985,0,0,0,2017.750909696246 -11685,14406,26161,26162,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.798246768214552,7.978628012486022,0,9,3,60.8988718456471,0,2,3,2019,8,0,38,36,1,0,0,11.23127785205373,11.23127785205373,0,0,0,0,2,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,2,4,1,360.3333333333333,132757.6839377958,33787.12327089836,87623.30661493941,68763.64488596389,2808.524089634867 -11685,14406,26162,26161,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.439919228680564,8.321762103666536,0,9,-3,101.404874597019,0,2,2,2019,10,0,46,45,1,0,0,9.436086472452887,9.436086472452887,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,10,1,1,0,0,11,2,4,1,360.3333333333333,132757.6839377958,33787.12327089836,87623.30661493941,68763.64488596389,2808.524089634867 -11685,14406,26163,-9,26161,26162,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.0507853991855,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,360.3333333333333,132757.6839377958,33787.12327089836,87623.30661493941,68763.64488596389,2808.524089634867 -11685,14407,26164,-9,26161,26162,1,1,24,0,1,0,2,2,-9,0,5,8.238259816405769,8.138251201565726,0,0,0,-1112.559096555249,0,2,3,2019,11,0,42,40,1,0,1,11.17604157379111,11.17604157379111,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,3792,145120.1676435354,100771.4471849969,0,0,1689.7386995652 -11686,14408,26165,-9,26168,26166,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.928367999745,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,3,0,1047.5,1153341.580177467,493676.6036415923,661996.2880073119,0,2278.101153022928 -11686,14408,26166,26168,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,7.968868882015725,7.82558288709642,0,8,8,-85.01273641808714,0,-9,-9,2019,11,0,45,40,1,0,0,7.420457373544017,7.420457373544017,0,0,0,0,0,1,1,0,2.871390083320382,0,57.33,53.46,45.49,58.84,8.333333333333334,1,1,0,0,7,10,3,0,1047.5,1153341.580177467,493676.6036415923,661996.2880073119,0,2278.101153022928 -11686,14408,26167,-9,26168,26166,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1125.218895256732,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,3,0,1047.5,1153341.580177467,493676.6036415923,661996.2880073119,0,2278.101153022928 -11686,14408,26168,26166,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.224950300411891,7.105098038602888,0,8,-8,24.94289300668071,0,-9,-9,2019,8,0,13,15,1,0,0,9.565890889538323,9.565890889538323,0,0,0,0,0,1,1,0,0,0,45.49,58.84,57.33,53.46,6.666666666666667,3,4,0,0,6,10,3,0,1047.5,1153341.580177467,493676.6036415923,661996.2880073119,0,2278.101153022928 -11686,14409,26169,-9,26168,26166,1,0,18,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1000.693356420051,1,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.1,41.16,-9,-9,6.666666666666667,4,2,0,0,0,10,1,0,872,-33029.12942429843,0,0,0,0 -11687,14410,26170,26171,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.227049390848721,8.327251352105039,0,2,-10,-69.76552020529502,-9,-9,-9,2019,6,0,40,0,1,0,0,11.13664439731323,11.13664439731323,0,0,0,0,0,0,0,0,4.544492780542909,0,57.06,57.76,48.87,58.55,10,4,2,0,0,1,5,5,1,668.3333333333334,415374.6279665223,141891.384709192,246131.2638413316,222823.959551133,4819.014062469858 -11687,14410,26171,26170,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,9.206325074608152,9.141602995384657,0,2,10,50.43799687223741,0,1,1,2019,13,1,40,46,1,1,0,28.00780502001052,28.00780502001052,0,0,0,0,0,0,0,0,4.823423970908082,0,48.87,58.55,57.06,57.76,10,4,5,0,0,10,5,5,1,668.3333333333334,415374.6279665223,141891.384709192,246131.2638413316,222823.959551133,4819.014062469858 -11687,14410,26172,-9,26170,26171,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.16367344798,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,5,5,1,668.3333333333334,415374.6279665223,141891.384709192,246131.2638413316,222823.959551133,4819.014062469858 -11688,14411,26173,26174,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.104741417332317,8.117904065253184,0,10,2,3.557691966477875,0,-9,-9,2019,5,0,38,38,1,0,0,9.149014693116442,9.149014693116442,0,0,0,0,0,0,0,0,0,0,54.79,55.86,60.3,46.58,8.333333333333334,1,1,0,0,11,4,5,1,268.5,878574.8688198816,549344.7522945723,138847.8485059706,0,3350.963746974618 -11688,14411,26174,26173,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.623055890218886,8.455023476356464,0,10,-2,66.76263645400252,0,-9,2,2019,9,0,40,40,1,0,0,12.90838710168349,12.90838710168349,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.79,55.86,6.666666666666667,1,1,0,0,9,4,5,1,268.5,878574.8688198816,549344.7522945723,138847.8485059706,0,3350.963746974618 -11689,14412,26175,26176,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.688903908668296,6.531612359123282,0,35,-5,-74.32212218000541,0,2,3,2019,8,0,16,16,1,0,0,5.820619203386694,5.820619203386694,0,0,0,0,2,0,0,0,0,0,60.88,31.4,56.47,44.14,6.666666666666667,1,1,0,0,2,10,4,0,352.5,1500616.891564203,566936.4643842404,685674.3004172463,0,1962.639251175605 -11689,14412,26176,26175,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.443176103954057,8.151432110029434,0,6,5,14.89755475213818,0,2,2,2019,11,1,44,40,1,1,0,9.579824793858839,9.579824793858839,0,0,0,0,0,0,0,0,0,0,56.47,44.14,60.88,31.4,8.333333333333334,1,1,0,0,6,10,4,0,352.5,1500616.891564203,566936.4643842404,685674.3004172463,0,1962.639251175605 -11689,14413,26177,-9,26175,26176,1,0,26,0,0,0,2,2,-9,0,3,8.032219575183678,8.313545683939299,0,0,0,-962.5776432402059,0,2,2,2019,12,1,30,0,1,1,1,12.45940293767714,12.45940293767714,0,0,0,0,0,0,0,0,0,0,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,1647,78961.21608627596,-85759.43227589483,0,0,463.9471192622551 -11690,14414,26178,26179,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.857421124305924,9.789071389754641,0,8,-5,15.46148862867121,0,2,1,2019,13,2,56,48,1,2,0,32.60885864185872,32.60885864185872,0,0,0,0,0,0,0,0,.1599601583100797,0,51.24,58.84,54.1,59.11,1.666666666666667,1,1,0,0,10,5,5,1,755,4590602.13435385,4470687.968263515,140940.2791206134,0,8101.92727107302 -11690,14414,26179,26178,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.142362323984752,9.2587392780275,0,8,5,49.96321094197538,0,2,2,2019,7,0,60,47,1,0,0,16.9720554926705,16.9720554926705,0,0,0,0,0,0,0,0,4.926865377823062,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,10,5,5,1,755,4590602.13435385,4470687.968263515,140940.2791206134,0,8101.92727107302 -11691,14415,26180,26182,-9,-9,1,1,44,1,4,0,3,3,-9,0,4,7.879708021701532,7.834599350265639,0,7,6,36.97730733539244,0,-9,-9,2019,9,0,24,18,1,1,0,12.92624035788153,12.92624035788153,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,8,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14415,26181,-9,26182,26180,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.70189102126,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14415,26182,26180,-9,-9,1,0,38,1,4,0,2,2,-9,0,4,0,0,0,25,-6,92.45807594388974,0,3,3,2019,11,0,0,11,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,10,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14415,26183,-9,26182,26180,1,1,16,1,4,1,2,0,-9,0,4,0,0,0,0,0,-1059.817127155266,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14415,26184,-9,26182,26180,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1064.424508996577,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14415,26185,-9,26182,26180,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1110.008022352795,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,891,-7765.443392386405,19505.56308024806,0,0,2243.644025122635 -11691,14416,26186,-9,26182,26180,1,1,19,1,4,1,1,0,-9,0,4,0,0,0,0,0,-933.5616328093073,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,202,145303.05495638,0,0,0,130.6433099642542 -11692,14417,26187,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,7.048054042447124,6.954927751678298,5.145752501460798,0,0,-1013.288351271097,0,-9,-9,2019,10,0,22,0,1,0,0,6.143323269321042,6.143323269321042,0,0,0,0,14.5,1,1,0,5.226874319968633,0,55.21,43.87,-9,-9,6.666666666666667,1,1,0,0,5,2,2,0,861.3333333333334,-61472.19215963144,35340.25805153373,0,0,2189.365212295183 -11692,14417,26188,-9,26187,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.816930911392,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,861.3333333333334,-61472.19215963144,35340.25805153373,0,0,2189.365212295183 -11692,14417,26189,-9,26187,-9,1,1,16,0,2,1,2,0,-9,1,4,0,0,0,0,0,-991.6291846802527,-9,2,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,55.16,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,861.3333333333334,-61472.19215963144,35340.25805153373,0,0,2189.365212295183 -11693,14418,26190,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.518235017180795,6.293677723885656,0,0,-786.7049558584179,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.151417746847423,63.41,39.7,-9,-9,10,1,1,0,0,9,7,2,0,258,508661.5439097662,64182.59382264255,335353.714268812,0,1410.689318982977 -11694,14419,26191,26192,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.181048289605032,8.297287632778881,4.691475560150357,39,-5,-74.64438771590952,0,3,2,2019,12,0,33,35,1,0,0,11.6254949280297,11.6254949280297,0,0,0,0,14.5,1,1,0,0,4.907334160240936,61.28,35.65,51.1,52.08,8.333333333333334,1,1,0,0,12,1,4,0,621.6666666666666,54297.17532881757,73334.41310299469,120767.1020229381,0,2783.298361048279 -11694,14419,26192,26191,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.933338425591494,7.639460603173806,39,5,86.94824120912133,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.439910572459907,0,0,1,1,0,0,7.813275828018616,51.1,52.08,61.28,35.65,6.666666666666667,1,1,0,0,9,1,4,0,621.6666666666666,54297.17532881757,73334.41310299469,120767.1020229381,0,2783.298361048279 -11694,14419,26193,-9,26191,26192,1,1,17,0,0,0,2,2,-9,0,3,0,3.769691249158008,3.664480342670353,0,0,-1052.846610189998,1,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.88673178854815,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,2,1,4,0,621.6666666666666,54297.17532881757,73334.41310299469,120767.1020229381,0,2783.298361048279 -11694,14420,26194,-9,26191,26192,1,0,25,0,0,0,1,1,-9,0,4,8.402275533663097,8.392356442977102,0,0,0,-993.8946067972794,-9,2,2,2019,13,1,40,0,1,1,1,10.21547161844289,10.21547161844289,0,0,0,0,2,1,1,0,0,0,46.48,58.28,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,336,-31219.4440724318,-60544.7922318542,0,0,1603.420118084451 -11695,14421,26195,26196,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.181868651113636,7.124289839605664,0,5,-5,89.82109406568485,0,-9,-9,2019,12,1,19,19,1,1,0,9.261976077411591,9.261976077411591,0,0,0,0,42,1,1,0,0,0,43.91,55.39,45.68,27.93,8.333333333333334,4,2,0,0,4,2,3,1,571,537285.0651869548,268414.5007216831,181973.6572430299,0,3341.431055399506 -11695,14421,26196,26195,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,7.851106516782719,7.444153636044052,5,5,-75.99878283886751,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,31.63733567536803,0,0,1,1,0,7.850928141775521,7.560315849986419,45.68,27.93,43.91,55.39,8.333333333333334,1,1,0,0,0,2,3,1,571,537285.0651869548,268414.5007216831,181973.6572430299,0,3341.431055399506 -11696,14422,26197,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,3,0,0,0,0,0,-935.2033108003376,0,3,3,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,35.38,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,125,327135.4038510008,6621.539136010953,286635.8426507562,0,799.6831073631118 -11697,14423,26198,26199,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,0,0,0,8,-7,-192.554560647706,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.79,55.86,8.333333333333334,2,3,0,0,0,8,3,1,280.25,69395.60393637116,180160.7402347648,0,0,2352.016155514213 -11697,14423,26199,26198,-9,-9,1,1,42,1,3,0,1,1,-9,0,4,8.758829296633577,8.720786331813807,0,8,7,-37.90446463187707,-9,2,2,2019,7,0,40,0,1,0,0,12.74233880354276,12.74233880354276,0,0,0,0,0,1,1,0,0,0,54.79,55.86,48.87,58.55,6.666666666666667,2,3,0,0,10,8,3,1,280.25,69395.60393637116,180160.7402347648,0,0,2352.016155514213 -11697,14423,26200,-9,26198,26199,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-934.5647906561777,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,280.25,69395.60393637116,180160.7402347648,0,0,2352.016155514213 -11697,14423,26201,-9,26198,26199,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.403406783159,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,280.25,69395.60393637116,180160.7402347648,0,0,2352.016155514213 -11698,14424,26202,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.480478673643341,6.524288588341872,0,0,-1039.262457475345,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.007662455224531,54.57,33.18,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,507,515143.3710296764,294276.425019011,342247.068063902,0,670.7306657218652 -11699,14425,26203,26204,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.358662629123418,6.833862374935882,8,-5,27.93509841744883,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,3.787778075697101,0,120,1,1,0,0,6.783570284537911,33.95,33.41,38.86,26.85,6.666666666666667,1,1,0,0,0,13,2,1,562,534595.0276887945,400703.1093528223,245360.7988610987,0,1529.694180658251 -11699,14425,26204,26203,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,5.865597520093661,6.192495537846147,8,5,73.48702753619092,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,7.491358879164516,44.91660439125453,71.69860358398103,0,1,1,0,0,6.245537665881028,38.86,26.85,33.95,33.41,6.666666666666667,1,1,0,0,0,13,2,1,562,534595.0276887945,400703.1093528223,245360.7988610987,0,1529.694180658251 -11700,14426,26205,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,7.591102890539055,8.021592749834182,0,0,-1005.291036217247,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,7.467682610431636,0,35.91,63.19,-9,-9,6.666666666666667,2,3,0,0,0,7,3,0,254,-20305.05375544434,-95675.79413246312,0,0,933.5531392654182 -11701,14427,26206,26207,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,7.569773146580959,7.858217531624743,57,3,63.265460006373,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.460991270930505,8.016767582360288,62.83,12.04,41.52,45.66,5,1,1,0,0,0,9,4,1,709.5,1854890.29654427,170115.5950629568,555350.5058959812,0,3960.751679204378 -11701,14427,26207,26206,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.671120860578799,7.65247411425525,57,-3,50.02163539026284,0,2,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.333500482133744,8.007452250094834,41.52,45.66,62.83,12.04,8.333333333333334,1,1,0,0,9,9,4,1,709.5,1854890.29654427,170115.5950629568,555350.5058959812,0,3960.751679204378 -11702,14428,26208,26209,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.685307416199137,8.967560444260268,6.519149257841796,37,-3,-9.906670860371607,0,-9,-9,2019,10,0,50,50,1,0,0,12.02553931199208,12.02553931199208,0,0,0,0,0,1,1,0,6.846801056798219,6.644058762497484,54.13,48.04,62.27,48.47,8.333333333333334,1,1,0,0,11,2,5,1,620.5,877654.7799665041,105795.0952281912,483169.6032274233,0,5851.339774145944 -11702,14428,26209,26208,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.500950626225073,8.550626591797249,0,37,3,98.46765448542105,0,2,3,2019,9,0,20,30,1,0,0,29.18911087992383,29.18911087992383,0,0,0,0,0,1,1,0,3.6027848427192,0,62.27,48.47,54.13,48.04,8.333333333333334,1,1,0,0,11,2,5,1,620.5,877654.7799665041,105795.0952281912,483169.6032274233,0,5851.339774145944 -11703,14429,26210,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.378089594184398,5.062455977104967,0,0,-962.020283641685,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,122.2662923129705,0,0,1,1,0,5.087147062153257,5.017730717505374,51,46,-9,-9,7,1,1,0,0,0,5,2,1,310,253341.5321925551,-38310.59072453805,159129.2885806891,0,1011.731009362278 -11703,14430,26211,-9,26210,-9,1,0,45,0,0,0,3,3,-9,0,4,7.96339506331738,7.859209179504726,0,0,0,-1009.164221173161,0,3,-9,2019,12,3,37,37,1,3,0,8.284327459233067,8.284327459233067,0,0,0,0,42,1,1,0,0,0,44.76,44.38,-9,-9,8.333333333333334,1,1,0,0,13,5,3,1,1375,-66987.26387872857,5119.385772527334,0,0,1588.112571200145 -11704,14431,26212,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.427816802614276,6.041964738215158,0,0,-1028.92371812271,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2912295462159109,6.667139668413426,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,731,634657.7706376365,214131.028521808,342939.9199443702,0,1329.101291795744 -11705,14432,26213,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.132469228883802,5.062930308123083,0,0,-996.9672813086137,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.522764868545333,5.449597547807027,56.89,23.1,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,1180,410606.7926065378,0,156436.2909612358,0,791.4770715882802 -11706,14433,26214,26215,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.075830533500948,7.863757569433492,0,6,-35,-41.84969961656141,0,-9,-9,2019,6,0,32,35,1,0,0,11.08072327689636,11.08072327689636,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,7,7,4,1,1379,1584351.184454737,176194.4537442552,875779.6201524357,0,3272.22063700852 -11706,14433,26215,26214,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,6.037109434949267,7.470217991347923,7.337761317295337,6,35,36.46738596018169,0,3,3,2019,4,0,4,8,1,0,0,9.216627607012523,9.216627607012523,0,0,0,0,2,1,1,0,6.437441494727515,7.338628350563277,60.12,54.8,57.16,56.15,10,1,1,0,0,6,7,4,1,1379,1584351.184454737,176194.4537442552,875779.6201524357,0,3272.22063700852 -11707,14434,26216,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.36937387471586,9.339313998904574,0,0,0,-1106.931689424954,0,2,3,2019,9,0,50,52,1,0,0,34.48734616055666,34.48734616055666,0,0,0,0,0,0,0,0,1.268785422195238,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,330,547849.2858707993,263993.5148366527,108121.5365387096,30929.24253237561,3600.597132755738 -11707,14435,26217,-9,-9,26216,1,1,19,0,0,0,2,2,-9,0,4,0,4.899851092607421,4.898935465481197,0,0,-980.4996432242156,1,-9,2,2019,8,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,5.86322093061589,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,111,223566.0489097629,0,0,0,80.66236987711545 -11708,14436,26218,-9,26222,26219,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-860.1541751064103,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,819.4,149736.042228033,38010.14881855854,0,0,4932.522487548947 -11708,14436,26219,26222,-9,-9,1,1,54,0,3,0,2,2,-9,0,4,8.91960504280863,9.032359016679299,0,7,15,-13.83478821945809,0,2,3,2019,11,2,36,38,1,2,0,24.14565189966696,24.14565189966696,0,0,0,0,0,1,1,0,4.085021115329705,0,54.2,57.49,54.1,59.11,1.666666666666667,1,1,0,0,11,6,5,1,819.4,149736.042228033,38010.14881855854,0,0,4932.522487548947 -11708,14436,26220,-9,26222,26219,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1128.60115283811,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,5,1,819.4,149736.042228033,38010.14881855854,0,0,4932.522487548947 -11708,14436,26221,-9,26222,26219,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.4012713186714,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,819.4,149736.042228033,38010.14881855854,0,0,4932.522487548947 -11708,14436,26222,26219,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.696106018960961,8.675809676862466,6.352093700171602,7,-15,-55.92469978927986,0,-9,-9,2019,11,0,50,60,1,0,0,13.95584576800843,13.95584576800843,0,0,0,0,0,1,1,0,6.39757488051726,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,6,6,5,1,819.4,149736.042228033,38010.14881855854,0,0,4932.522487548947 -11709,14437,26223,-9,26224,26225,1,0,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1111.215521482439,1,2,3,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,4.937568905678214,0,32.68,49.94,-9,-9,5,1,1,0,0,1,9,4,1,886.3333333333334,348448.5304498445,103081.551028346,203442.3073583142,0,2575.138771689249 -11709,14437,26224,26225,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,6.940120364060298,7.180574933736824,0,9,-3,62.25127839600739,0,3,2,2019,15,3,20,0,1,3,0,7.314921277351488,7.314921277351488,0,0,0,0,2,1,1,0,6.991291147961793,0,26.58,62.16,34.59,47.69,3.333333333333333,1,1,0,0,9,9,4,1,886.3333333333334,348448.5304498445,103081.551028346,203442.3073583142,0,2575.138771689249 -11709,14437,26225,26224,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,7.653169963789025,7.872998319788309,5.486028996359805,9,3,.9454921029579441,0,3,3,2019,16,4,11,35,1,4,0,28.33534073205972,28.33534073205972,0,0,0,0,0,1,1,0,1.673437442292563,5.36945315800178,34.59,47.69,26.58,62.16,5,1,1,0,0,9,9,4,1,886.3333333333334,348448.5304498445,103081.551028346,203442.3073583142,0,2575.138771689249 -11709,14438,26226,-9,26224,26225,1,1,20,0,0,0,2,2,-9,0,5,7.564803509669712,7.881625933922781,0,0,0,-1060.310574716095,0,2,3,2019,5,0,40,32,1,0,1,6.961729007524446,6.961729007524446,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,2,9,3,1,450,125044.1427319793,0,0,0,860.7520335215307 -11710,14439,26227,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.629490719731004,7.502921823991935,0,0,-1079.319094346489,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.230569648972637,7.890730084425629,46.14,46.35,-9,-9,8.333333333333334,2,3,0,0,3,12,3,1,912,165858.8109068435,-68707.06274551696,152709.6460982117,14695.65812407851,1093.607633369156 -11711,14440,26228,26230,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,6.695911749642747,6.658757916867834,0,7,-3,151.1053886043993,0,3,1,2019,14,2,80,70,1,2,0,1.093867112675071,1.093867112675071,0,0,0,0,0,1,1,0,0,0,35.8,59.5,43.35,46.41,5,2,3,0,1,8,9,2,1,631.6666666666666,260812.0267619301,18630.90446677414,341284.1076975313,76983.5538922346,1067.974935751226 -11711,14440,26229,-9,26230,26228,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1044.181515875476,-9,3,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,9,2,1,631.6666666666666,260812.0267619301,18630.90446677414,341284.1076975313,76983.5538922346,1067.974935751226 -11711,14440,26230,26228,-9,-9,1,0,52,0,1,0,3,3,-9,0,4,6.512207708450955,6.345869234052947,0,7,3,59.23639274112583,0,3,3,2019,12,0,11,11,1,0,0,6.507877470815594,6.507877470815594,0,0,0,0,7,1,1,0,0,0,43.35,46.41,35.8,59.5,3.333333333333333,2,3,0,0,8,9,2,1,631.6666666666666,260812.0267619301,18630.90446677414,341284.1076975313,76983.5538922346,1067.974935751226 -11711,14441,26231,-9,26230,26228,1,0,19,0,1,0,2,2,1,0,4,7.7881910235139,7.675747195951567,0,0,0,-1037.011151714036,-9,3,1,2019,12,2,38,0,1,2,1,5.968862887262979,5.968862887262979,0,0,0,0,0,1,1,0,0,0,38.47,37.71,-9,-9,1.666666666666667,2,3,0,0,1,9,3,1,180,-44696.68314400155,0,0,0,828.7444153310336 -11712,14442,26232,26233,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,9,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,66.2,41.05,64.66,35.51,8.333333333333334,1,1,0,0,0,9,1,1,476.5,576098.0489744972,298308.4846421291,435937.7739873612,0,1733.79351273935 -11712,14442,26233,26232,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,9,1,0,0,2,2,2019,6,0,0,25,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.66,35.51,66.2,41.05,8.333333333333334,1,1,0,0,9,9,1,1,476.5,576098.0489744972,298308.4846421291,435937.7739873612,0,1733.79351273935 -11713,14443,26234,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,8.710465373700062,8.434213484822779,0,8,18,94.14062815596898,0,3,3,2019,11,0,40,40,1,0,0,14.52927715512029,14.52927715512029,0,0,0,0,0,0,0,0,.1411718822324691,0,52.3,47.92,54.79,55.86,8.333333333333334,1,1,0,0,11,4,5,1,129,229667.4880277697,380363.457307812,0,0,2279.508511667005 -11713,14444,26235,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.700085624243037,8.581379657026265,0,8,-18,48.22467385483061,0,2,2,2019,7,0,44,40,1,0,0,13.45917940848927,13.45917940848927,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52.3,47.92,8.333333333333334,1,1,0,0,9,4,5,1,170,1855.39589138313,-2701.69563459717,0,0,1992.812228952349 -11714,14445,26236,26237,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,10,9,125.906954050079,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,27.76703402993699,40.88958514744854,254.8665978127105,0,1,1,0,1.933811169259913,0,20.73,25.8,43.28,48.9,1.666666666666667,1,1,0,1,0,12,3,1,870,910959.0140271094,476110.4473917139,374017.1553332707,0,2016.997937638448 -11714,14445,26237,26236,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,7.727754306886577,7.325891102374887,0,10,0,32.79121041393783,0,3,3,2019,9,0,44,35,1,0,0,5.395010661723797,5.395010661723797,0,0,0,0,42,1,1,0,1.962911893035157,0,43.28,48.9,20.73,25.8,6.666666666666667,2,3,0,1,11,12,3,1,870,910959.0140271094,476110.4473917139,374017.1553332707,0,2016.997937638448 -11715,14446,26238,-9,26241,26240,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.9181216343004,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,3,1,524.5,242331.2454635908,33670.56779511644,226005.9618520683,55387.92044554857,2613.976882511139 -11715,14446,26239,-9,26241,26240,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.871729414854,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,524.5,242331.2454635908,33670.56779511644,226005.9618520683,55387.92044554857,2613.976882511139 -11715,14446,26240,26241,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.174055165988324,7.99325186912322,0,14,2,57.911644228412,0,2,3,2019,12,2,50,40,1,2,0,6.438544039883992,6.438544039883992,0,0,0,0,0,1,1,0,0,0,46.22,56.92,45.91,59.89,6.666666666666667,1,1,0,0,10,7,3,1,524.5,242331.2454635908,33670.56779511644,226005.9618520683,55387.92044554857,2613.976882511139 -11715,14446,26241,26240,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,14,-2,-95.31896024964583,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.22,56.92,6.666666666666667,1,1,0,0,5,7,3,1,524.5,242331.2454635908,33670.56779511644,226005.9618520683,55387.92044554857,2613.976882511139 -11716,14447,26242,-9,26245,26243,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.506194117,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,604.5,627147.4177032175,26284.70523209174,868574.4017183108,356849.6800935323,8603.289001086161 -11716,14447,26243,26245,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.326619833491055,9.325746468309852,0,22,0,52.16239888176607,0,2,2,2019,12,0,45,45,1,0,0,24.38059899098859,24.38059899098859,0,0,0,0,0,0,0,0,2.477934378509601,0,48.41,56.13,28.22,59.23,8.333333333333334,1,1,0,0,11,9,5,1,604.5,627147.4177032175,26284.70523209174,868574.4017183108,356849.6800935323,8603.289001086161 -11716,14447,26244,-9,26245,26243,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-984.7848789884558,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,604.5,627147.4177032175,26284.70523209174,868574.4017183108,356849.6800935323,8603.289001086161 -11716,14447,26245,26243,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.343271865307099,9.614259911536173,0,22,0,111.226295231951,0,2,1,2019,24,12,30,45,1,12,0,38.46477202152015,38.46477202152015,0,0,0,0,0,0,0,0,0,0,28.22,59.23,48.41,56.13,3.333333333333333,1,1,0,0,11,9,5,1,604.5,627147.4177032175,26284.70523209174,868574.4017183108,356849.6800935323,8603.289001086161 -11717,14448,26246,26247,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.925903283242322,8.653206711042683,0,19,0,131.5143641268155,0,2,2,2019,17,5,2,28,1,5,0,389.5244268074431,389.5244268074431,0,0,0,0,0,1,1,0,0,0,47.07,53.97,60.12,54.8,6.666666666666667,1,1,0,0,9,10,5,1,627,371519.9582198283,258877.8372266389,511017.7115357975,251427.7594597596,5171.155547160425 -11717,14448,26247,26246,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.124654505340548,9.117614756761018,0,19,0,114.875234585157,0,2,2,2019,8,0,40,40,1,0,0,24.49435888506523,24.49435888506523,0,0,0,0,0,1,1,0,3.909382453665468,0,60.12,54.8,47.07,53.97,5,1,1,0,0,9,10,5,1,627,371519.9582198283,258877.8372266389,511017.7115357975,251427.7594597596,5171.155547160425 -11717,14448,26248,-9,26246,26247,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.835622934178,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,627,371519.9582198283,258877.8372266389,511017.7115357975,251427.7594597596,5171.155547160425 -11718,14449,26249,26250,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.091526749390411,5.106153174831652,48,-3,-138.7030037139292,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.008573895109542,0,57.16,56.15,37.75,43.76,10,1,1,0,0,0,2,2,0,499.5,381067.1412634486,260591.3449863806,109171.3597663622,0,2027.143429838994 -11718,14449,26250,26249,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.53625646025689,6.267722721325716,48,3,25.59573045907058,0,-9,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.265377451186301,6.580376389616345,37.75,43.76,57.16,56.15,3.333333333333333,1,1,0,0,0,2,2,0,499.5,381067.1412634486,260591.3449863806,109171.3597663622,0,2027.143429838994 -11719,14450,26251,26252,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,8,3,-27.48306286171053,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.724840497678445,0,57.16,56.15,57.16,56.15,10,1,1,0,0,5,6,2,1,503.5,874984.8627472827,35629.10574284243,721187.6983226028,0,1967.341469754961 -11719,14450,26252,26251,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.939075860423381,5.939219294132864,8,-3,-19.6656172078324,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.425466486732931,5.633060584622087,57.16,56.15,57.16,56.15,10,1,1,0,0,1,6,2,1,503.5,874984.8627472827,35629.10574284243,721187.6983226028,0,1967.341469754961 -11720,14451,26253,-9,26254,26255,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.0161318427363,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,0,1275.75,327838.2977071308,76633.01906191636,241421.4603660552,107850.4384523834,4033.911036465459 -11720,14451,26254,26255,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.438574879856462,8.553650761802455,6.694358230151899,12,-15,207.282383960026,0,3,2,2019,7,0,40,44,1,0,0,13.01031507665336,13.01031507665336,0,0,0,0,7,1,1,0,6.452872547544239,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,0,1275.75,327838.2977071308,76633.01906191636,241421.4603660552,107850.4384523834,4033.911036465459 -11720,14451,26255,26254,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.273933988036221,8.31726391161216,0,12,15,31.98443349552182,0,3,3,2019,5,0,40,38,1,0,0,15.10697209484421,15.10697209484421,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,4,0,1275.75,327838.2977071308,76633.01906191636,241421.4603660552,107850.4384523834,4033.911036465459 -11720,14451,26256,-9,26254,26255,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.4266907413629,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,0,1275.75,327838.2977071308,76633.01906191636,241421.4603660552,107850.4384523834,4033.911036465459 -11721,14452,26257,-9,26258,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.1370523182713,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1670.5,206327.3660631979,-54726.60982582942,225999.5874959838,0,1867.535778214896 -11721,14452,26258,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,0,6.228019663943301,6.296701518971775,0,0,-923.3147677032575,1,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,42,1,1,0,6.158825042460533,0,36.2,57.77,-9,-9,8.333333333333334,1,1,0,1,8,10,2,0,1670.5,206327.3660631979,-54726.60982582942,225999.5874959838,0,1867.535778214896 -11722,14453,26259,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1062.339843318184,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.52,55.06,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,380,-37205.74860227825,0,0,0,1674.089797063828 -11723,14454,26260,26261,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,7.891602705627665,8.104295813507447,0,19,13,145.2147733428486,0,2,-9,2019,7,0,40,40,1,0,0,8.392873376483735,8.392873376483735,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,8.333333333333334,1,1,0,0,8,8,5,0,888,198226.0260748527,68256.80779118105,558353.312157762,360656.3965361032,4565.001427863172 -11723,14454,26261,26260,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,9.012915232468046,9.087382205160241,0,19,-13,-43.9224387698542,0,-9,-9,2019,7,0,40,35,1,0,0,26.66145605300787,26.66145605300787,0,0,0,0,0,1,1,0,2.520226033297396,0,62.49,55.09,61.12,51.57,10,1,1,0,0,10,8,5,0,888,198226.0260748527,68256.80779118105,558353.312157762,360656.3965361032,4565.001427863172 -11724,14455,26262,-9,26263,26266,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.7846658570917,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,624.2,621696.7432586855,69087.85159238876,820927.1392345952,431792.3662867242,7616.178231819233 -11724,14455,26263,26266,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,9.134820202297989,8.937692892161781,0,24,-5,7.58216822094608,0,3,2,2019,8,1,32,36,1,1,0,41.10755856166537,41.10755856166537,0,0,0,0,0,0,0,0,0,0,41.06,62.04,41.74,55.02,8.333333333333334,1,1,0,0,10,8,5,1,624.2,621696.7432586855,69087.85159238876,820927.1392345952,431792.3662867242,7616.178231819233 -11724,14455,26264,-9,26263,26266,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-871.7557629337724,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,624.2,621696.7432586855,69087.85159238876,820927.1392345952,431792.3662867242,7616.178231819233 -11724,14455,26265,-9,26263,26266,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.068152608335,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,624.2,621696.7432586855,69087.85159238876,820927.1392345952,431792.3662867242,7616.178231819233 -11724,14455,26266,26263,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.630681168508021,9.807117418504466,0,24,5,-63.27684849917719,0,2,2,2019,11,0,42,40,1,0,0,35.01543795929236,35.01543795929236,0,0,0,0,0,0,0,0,0,0,41.74,55.02,41.06,62.04,8.333333333333334,1,1,0,0,10,8,5,1,624.2,621696.7432586855,69087.85159238876,820927.1392345952,431792.3662867242,7616.178231819233 -11725,14456,26267,26268,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.414706027241023,7.136607755955764,46,3,-108.0439062490716,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.565118235793434,7.222009524662367,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,8,9,2,1,411.5,931320.8073229727,302824.0023266247,539890.8291417081,0,2536.768480886744 -11725,14456,26268,26267,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,47,-3,-87.88963255220217,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.10723421916553,0,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,0,9,2,1,411.5,931320.8073229727,302824.0023266247,539890.8291417081,0,2536.768480886744 -11726,14457,26269,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.155969040684763,5.724012550814414,0,0,-981.6666963346335,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,12.37647521557282,0,0,1,1,0,5.757528985679524,2.330408175218959,59.45,33.75,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1264,309209.0938339061,110134.4476442402,139118.9620085571,0,792.8185694485068 -11727,14458,26270,-9,26273,26272,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.196796659835,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,616,-45198.87765112748,-59861.56307913597,0,0,2578.109087926691 -11727,14458,26271,-9,26273,26272,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.471688594516,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,616,-45198.87765112748,-59861.56307913597,0,0,2578.109087926691 -11727,14458,26272,26273,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.300179767546963,8.53516556277966,0,7,1,39.36877827934426,0,-9,-9,2019,11,0,50,60,1,0,0,9.932962187991462,9.932962187991462,0,0,0,0,0,1,1,0,0,0,48.52,47.76,29.31,35.11,3.333333333333333,1,1,0,0,8,11,3,1,616,-45198.87765112748,-59861.56307913597,0,0,2578.109087926691 -11727,14458,26273,26272,-9,-9,1,0,35,0,2,0,3,3,-9,0,3,6.872471991648382,6.626397747528324,0,7,-1,95.50661358940344,0,3,3,2019,16,4,12,12,1,4,0,9.094409248169438,9.094409248169438,0,0,0,0,0,1,1,0,0,0,29.31,35.11,48.52,47.76,5,1,1,0,0,4,11,3,1,616,-45198.87765112748,-59861.56307913597,0,0,2578.109087926691 -11728,14459,26274,26275,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.941859030778982,6.501892679099583,54,0,5.494614181478754,0,2,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.4712416965456,6.563386356481882,52.65,33.68,52,45,8.333333333333334,1,1,0,0,0,2,2,1,1150.5,562944.701974432,65234.13333078173,243099.2636286971,0,2075.806404039481 -11728,14459,26275,26274,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,54,0,62.58714938056074,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,3.164722398968044,0,1,1,0,4.837872542626457,0,52,45,52.65,33.68,8,1,1,0,0,0,2,2,1,1150.5,562944.701974432,65234.13333078173,243099.2636286971,0,2075.806404039481 -11729,14460,26276,26277,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,44,-1,-2.517456175848959,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.04,53.77,53.22,50.02,8.333333333333334,1,1,0,0,0,7,2,1,3503,1595656.323607539,549185.8840184812,916059.3127093893,0,2205.543253712495 -11729,14460,26277,26276,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.267531859069851,7.274295390935197,44,1,-44.42223126723582,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.479719896751321,7.144413083121904,53.22,50.02,45.04,53.77,8.333333333333334,1,1,0,0,8,7,2,1,3503,1595656.323607539,549185.8840184812,916059.3127093893,0,2205.543253712495 -11730,14461,26278,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,7.823483715696835,7.859425932692858,0,0,-1051.892159167739,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.298738221737935,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,567,1511414.833618951,834507.6286058959,246040.6521590989,0,1869.903314191304 -11730,14462,26279,-9,-9,26278,1,0,23,0,0,0,1,1,0,0,2,0,0,0,0,0,-1012.307526184866,-9,-9,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.793515724599452,0,42.7,51.08,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,1199,218706.5423440922,-53790.81265785437,0,0,-474.5474698271244 -11731,14463,26280,26281,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.101134074259861,8.252529711351478,0,11,5,-71.91381386063048,0,1,2,2019,6,0,38,36,1,0,0,10.37973316842121,10.37973316842121,0,0,0,0,0,0,0,0,0,0,53.99,50.71,51.94,55.88,8.333333333333334,1,1,0,0,13,12,5,1,642,-150867.8642117172,86455.25135418001,157707.3639287325,86605.40511745824,3710.728489280515 -11731,14463,26281,26280,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.871727011197658,8.836543459101811,0,11,-5,60.36371425784752,0,2,2,2019,11,0,40,42,1,0,0,19.555865186976,19.555865186976,0,0,0,0,0,0,0,0,1.039047062402264,0,51.94,55.88,53.99,50.71,8.333333333333334,1,1,0,0,10,12,5,1,642,-150867.8642117172,86455.25135418001,157707.3639287325,86605.40511745824,3710.728489280515 -11732,14464,26282,26283,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.795183162660093,7.592400645265565,5,-1,128.5325447146746,0,2,1,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,3.70983207801812,7.69406562843216,55,45,53,44,8,1,1,0,0,0,11,3,0,2359.5,360335.3172974344,423508.2665093614,0,0,2099.160238778025 -11732,14464,26283,26282,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,2.4227343710316,2.696367364377447,5,1,12.31184170738662,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,2.572375023325816,53,44,55,45,8,1,1,0,0,0,11,3,0,2359.5,360335.3172974344,423508.2665093614,0,0,2099.160238778025 -11733,14465,26284,26285,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.828790642818294,8.900333041618634,0,7,0,140.2884835630407,0,1,2,2019,21,9,43,47,1,9,0,18.53999006026042,18.53999006026042,0,0,0,0,0,1,1,0,7.224228986871462,0,43.09,54.67,38.69,53.88,6.666666666666667,1,1,0,0,10,7,5,1,714,5469628.549791194,3922981.102595299,718169.6803201023,0,4840.59005590702 -11733,14465,26285,26284,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.578069842487917,8.841553050893815,0,32,0,-38.8443150744149,0,2,1,2019,13,1,37,37,1,1,0,15.98824266855419,15.98824266855419,0,0,0,0,0,1,1,0,.7630297840997818,0,38.69,53.88,43.09,54.67,8.333333333333334,1,1,0,0,10,7,5,1,714,5469628.549791194,3922981.102595299,718169.6803201023,0,4840.59005590702 -11733,14466,26286,-9,26285,26284,1,0,18,0,0,1,2,0,0,0,4,0,3.872488055583855,3.744776626039535,0,0,-897.8359801021475,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,4.355656123702665,0,28.62,62.36,-9,-9,6.666666666666667,1,1,0,0,2,7,2,1,259,141720.3846684288,0,0,0,-320.8903758813625 -11734,14467,26287,26288,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,8.203491868005591,8.254650516839126,0,9,10,-146.6964285235055,0,3,3,2019,10,2,50,47,1,2,0,7.312587739136201,7.312587739136201,0,0,0,0,0,1,0,1,0,0,62.39,56.71,40.2,27.57,8.333333333333334,1,1,0,0,12,6,4,1,567.5,306508.1570084285,113635.7793208233,103196.8552457812,0,2248.486294544969 -11734,14467,26288,26287,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,7.109038882814637,7.224127178738201,0,9,-10,8.123279760532753,0,3,3,2019,12,2,28,30,1,2,0,6.145570339285665,6.145570339285665,0,0,0,0,7,1,0,1,0,0,40.2,27.57,62.39,56.71,3.333333333333333,1,1,0,0,5,6,4,1,567.5,306508.1570084285,113635.7793208233,103196.8552457812,0,2248.486294544969 -11734,14468,26289,-9,26288,26287,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1128.635586293454,-9,2,3,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,37.42,60.49,-9,-9,5,1,1,1,0,0,6,1,1,1544,-128868.761213372,0,0,0,203.2422353519238 -11735,14469,26290,26291,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.829131795319476,8.921700027960304,0,7,-3,-6.935761198526322,0,-9,-9,2019,11,1,40,44,1,1,0,17.99583569598483,17.99583569598483,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,468.5,380812.991689381,51843.4016034602,306066.1874163882,56317.44028668758,3396.069247077804 -11735,14469,26291,26290,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.849095554824698,7.891718498760325,0,7,3,78.78309576075931,0,-9,-9,2019,8,0,35,35,1,0,0,10.84095223743812,10.84095223743812,0,0,0,0,0,0,0,0,3.605906446830284,0,54.79,55.86,55.36,51.57,8.333333333333334,1,1,0,0,8,7,5,1,468.5,380812.991689381,51843.4016034602,306066.1874163882,56317.44028668758,3396.069247077804 -11736,14470,26292,26293,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.306195659068823,5.547323513474949,63,-2,-60.89590696770517,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,19.92013618234291,0,27,1,1,0,0,5.249832167730198,51.01,33.14,41.04,20.63,6.666666666666667,1,1,0,0,0,2,2,1,585.5,386496.2169251813,130281.1110870703,225983.6140308225,0,1918.176727932526 -11736,14470,26293,26292,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,6.094605633615963,6.375030695857066,63,2,13.12043136820621,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,2.542735027422331,46.93461784487626,23.80237488478853,0,1,1,0,1.923879728685928,6.364137809431024,41.04,20.63,51.01,33.14,5,1,1,0,0,0,2,2,1,585.5,386496.2169251813,130281.1110870703,225983.6140308225,0,1918.176727932526 -11736,14471,26294,-9,26292,26293,1,1,52,0,0,0,2,2,-9,0,4,3.463512398544565,3.729068120730371,0,0,0,-1063.873438832176,0,2,2,2019,8,0,40,-9,1,0,0,.1050302697595781,.1050302697595781,0,0,0,0,86,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,415,186445.0990682021,162547.231850828,0,0,-195.5455660023019 -11737,14472,26295,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.408953899546117,7.737391226387393,5.461225890550493,0,0,-903.5431612893419,0,2,3,2019,12,0,30,33,1,0,0,6.855727972483374,6.855727972483374,0,0,0,0,0,1,1,0,5.459230691408039,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,135,-114428.0375791462,-44780.20340238437,0,0,982.6961398995111 -11737,14473,26296,-9,26295,-9,1,0,19,0,0,0,2,2,-9,0,4,6.357224476863596,6.347579001971047,0,0,0,-1028.750189988771,0,2,-9,2019,8,2,12,24,1,2,1,6.066165983801817,6.066165983801817,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,10041,21943.00740504086,0,0,0,774.4780686003455 -11738,14474,26297,-9,26299,26298,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.65784031972,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,785.75,3336783.276093917,2267815.197667746,934028.275241112,0,5315.933948645437 -11738,14474,26298,26299,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,9.076405757769713,9.145896654482051,0,24,-7,-34.97815154912028,0,2,2,2019,6,0,35,38,1,0,0,33.9041625886092,33.9041625886092,0,0,0,0,0,1,1,0,3.439179393251333,0,60.29,52.11,57.06,57.76,8.333333333333334,2,3,0,0,11,8,5,1,785.75,3336783.276093917,2267815.197667746,934028.275241112,0,5315.933948645437 -11738,14474,26299,26298,-9,-9,1,0,63,0,2,0,1,1,-9,0,5,8.466049607151565,8.950727918759537,0,24,7,-99.67709438506427,0,1,1,2019,8,1,29,31,1,1,0,17.89751501996863,17.89751501996863,0,0,0,0,0,1,1,0,4.052211973856604,0,57.06,57.76,60.29,52.11,6.666666666666667,1,1,0,0,11,8,5,1,785.75,3336783.276093917,2267815.197667746,934028.275241112,0,5315.933948645437 -11738,14474,26300,-9,26299,26298,1,0,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-831.1418037156532,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,3,2,3,-9,0,0,8,5,1,785.75,3336783.276093917,2267815.197667746,934028.275241112,0,5315.933948645437 -11739,14475,26301,26302,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.855845385063163,7.03440984633261,2,14,77.24400276313148,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.248420735530646,6.802772565976084,57.57,49.69,54.57,49.24,8.333333333333334,1,1,0,0,0,9,3,1,536,173577.5501797058,330094.2655894988,0,0,3203.453662529241 -11739,14475,26302,26301,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.852346296725154,8.134768588205128,0,2,-14,-49.24407926155884,0,-9,2,2019,11,0,38,37,1,0,0,7.985568641399542,7.985568641399542,0,0,0,0,0,1,1,0,6.203114954488025,0,54.57,49.24,57.57,49.69,8.333333333333334,1,1,0,0,11,9,3,1,536,173577.5501797058,330094.2655894988,0,0,3203.453662529241 -11740,14476,26303,26304,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.355496169813525,9.455773611980616,0,8,-3,-42.84962788280903,-9,-9,-9,2019,12,0,40,0,1,0,0,28.62050965272542,28.62050965272542,0,0,0,0,0,0,0,0,7.780652931900977,0,51.83,57.2,62.62,21.31,8.333333333333334,1,1,0,0,9,10,5,1,806.5,1440553.45770868,1062723.423405612,251723.8858394893,0,4830.111686699323 -11740,14476,26304,26303,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,6.574401154736393,6.510348516840718,0,32,3,74.75316541590597,0,-9,2,2019,7,0,10,10,1,0,0,7.723666315841063,7.723666315841063,0,0,0,0,0,0,0,0,0,0,62.62,21.31,51.83,57.2,8.333333333333334,1,1,0,0,7,10,5,1,806.5,1440553.45770868,1062723.423405612,251723.8858394893,0,4830.111686699323 -11741,14477,26305,26306,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.168637756873609,8.212807772720289,0,16,-5,104.2724195407879,0,3,2,2019,10,0,23,24,1,0,0,17.32487646373924,17.32487646373924,0,0,0,0,0,1,1,0,2.695901873106484,0,48.18,61.8,45.81,61.51,8.333333333333334,1,1,0,0,10,10,4,1,368,182711.3466579522,92790.44144010752,272702.6219580958,130166.600371509,3236.339262058313 -11741,14477,26306,26305,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.441272870052465,8.791018494460676,4.665911186837528,9,5,60.19994120607824,0,-9,-9,2019,15,4,37,40,1,4,0,14.66009921558609,14.66009921558609,0,0,0,0,0,1,1,0,5.093424973918909,0,45.81,61.51,48.18,61.8,6.666666666666667,1,1,0,0,10,10,4,1,368,182711.3466579522,92790.44144010752,272702.6219580958,130166.600371509,3236.339262058313 -11741,14477,26307,-9,26305,26306,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.7237913577633,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,368,182711.3466579522,92790.44144010752,272702.6219580958,130166.600371509,3236.339262058313 -11742,14478,26308,26309,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,6.291598192775666,6.454244373727528,8,-2,-97.59674107631076,0,-9,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,6.492451705635886,35.62,17.95,35.32,43.62,5,1,1,0,1,3,10,2,1,492.5,257309.5782420993,82226.16506579137,152546.1453458791,0,354.9308719588471 -11742,14478,26309,26308,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,15,2,-123.8803601177896,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,.5642819191489323,120,1,1,0,0,0,35.32,43.62,35.62,17.95,6.666666666666667,1,1,1,1,6,10,2,1,492.5,257309.5782420993,82226.16506579137,152546.1453458791,0,354.9308719588471 -11743,14479,26310,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.139082880145281,8.04689039771543,0,0,0,-855.5773404780568,0,2,2,2019,13,1,20,30,1,1,0,20.30781435367479,20.30781435367479,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,795,638319.0109986196,138909.1815542716,614832.9443788776,255468.9235593956,1552.193499453544 -11744,14480,26311,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.220105636544594,7.44964238413954,0,0,-1057.681126364322,0,-9,2,2019,9,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.068102233341934,56.75,36.33,-9,-9,10,1,1,0,0,6,8,3,1,1147,569920.9240962077,480424.8838582528,130042.9873550296,0,1369.47011487971 -11745,14481,26312,26315,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.688598048086327,8.76180254014759,0,6,2,12.47359973822483,0,-9,2,2019,13,2,37,37,1,2,0,18.74888496856471,18.74888496856471,0,0,0,0,0,1,1,0,.1522862145449316,0,41.07,51.65,37.66,42.4,6.666666666666667,1,1,0,0,9,1,4,1,387.75,381444.0180946416,124844.3072757649,228975.9896460088,84345.28220570499,2644.117737165755 -11745,14481,26313,-9,26315,26312,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.095538576192,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,387.75,381444.0180946416,124844.3072757649,228975.9896460088,84345.28220570499,2644.117737165755 -11745,14481,26314,-9,26315,26312,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.2726213830623,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,387.75,381444.0180946416,124844.3072757649,228975.9896460088,84345.28220570499,2644.117737165755 -11745,14481,26315,26312,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.211849023872042,7.007348758545348,0,6,-2,27.95075943614165,0,-9,2,2019,4,0,15,15,1,0,0,13.5749255615562,13.5749255615562,0,0,0,0,0,1,1,0,0,0,37.66,42.4,41.07,51.65,8.333333333333334,1,1,0,0,9,1,4,1,387.75,381444.0180946416,124844.3072757649,228975.9896460088,84345.28220570499,2644.117737165755 -11746,14482,26316,-9,26319,26320,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.5780742442257,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,790.4,118850.1995169605,49666.54843222739,0,0,4561.148799224517 -11746,14482,26317,-9,26319,26320,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.242637330982,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,790.4,118850.1995169605,49666.54843222739,0,0,4561.148799224517 -11746,14482,26318,-9,26319,26320,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.012732692308,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,790.4,118850.1995169605,49666.54843222739,0,0,4561.148799224517 -11746,14482,26319,26320,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.61521906804653,8.324380360300886,0,7,3,-45.32631682154609,0,3,2,2019,13,2,33,30,1,2,0,19.95182594927903,19.95182594927903,0,0,0,0,0,1,1,0,0,0,33.01,63.17,50,57,8.333333333333334,1,1,0,0,11,6,5,1,790.4,118850.1995169605,49666.54843222739,0,0,4561.148799224517 -11746,14482,26320,26319,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.814039554798534,8.75547941310715,0,7,-3,-3.725150438483567,-9,-9,-9,2019,10,0,38,0,1,1,0,15.47387779058398,15.47387779058398,0,0,0,0,0,1,1,0,0,0,50,57,33.01,63.17,7,1,1,0,0,1,6,5,1,790.4,118850.1995169605,49666.54843222739,0,0,4561.148799224517 -11747,14483,26321,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,1,0,6.33424725872151,6.245949930722996,0,0,-1016.687368532319,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,7.256825039784696,6.275536619598032,69.3449128087953,0,1,1,0,2.597725187864075,6.26512072431613,52.82,16.96,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,441,49829.12039874914,3076.157828692405,0,0,1866.544038712967 -11748,14484,26322,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-912.8596043302148,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,37.44,35.75,-9,-9,6.666666666666667,1,1,0,1,0,2,1,0,232,-12606.97587037426,0,0,0,475.1927253972167 -11748,14485,26323,-9,26322,-9,1,1,18,0,0,0,2,2,1,0,5,7.4184736926779,7.388971527541154,0,0,0,-911.9158050373387,-9,3,-9,2019,5,0,24,0,1,0,1,8.191251181404677,8.191251181404677,0,0,0,0,0,1,0,1,0,0,52.27,58.55,-9,-9,6.666666666666667,1,1,0,0,1,2,3,0,261,4011.478819475044,0,0,0,339.9879354365947 -11749,14486,26324,-9,26325,26326,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.5745867062875,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,411.25,299451.5323136593,0,250522.5324456767,24634.99937646341,4165.63520163489 -11749,14486,26325,26326,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.121702008628962,8.862802666665925,0,11,4,34.09499726232283,0,3,3,2019,8,0,49,49,1,0,0,20.21693926983451,20.21693926983451,0,0,0,0,0,0,0,0,0,0,49,55,51.81,57.22,8.333333333333334,1,1,0,0,13,5,5,1,411.25,299451.5323136593,0,250522.5324456767,24634.99937646341,4165.63520163489 -11749,14486,26326,26325,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.042297933834648,7.804764536187012,0,11,-4,-71.34549982431743,0,3,3,2019,5,0,35,45,1,0,0,8.516945624267363,8.516945624267363,0,0,0,0,0,0,0,0,.0362096247316603,0,51.81,57.22,49,55,8.333333333333334,1,1,0,0,13,5,5,1,411.25,299451.5323136593,0,250522.5324456767,24634.99937646341,4165.63520163489 -11749,14486,26327,-9,26325,26326,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1113.896894501619,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,5,1,411.25,299451.5323136593,0,250522.5324456767,24634.99937646341,4165.63520163489 -11750,14487,26328,-9,26329,26331,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1111.660371731221,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.753770913917554,0,54.1,59.11,-9,-9,10,2,3,0,0,1,5,4,1,533,620692.3281675947,691283.1303336768,0,0,3669.91806323115 -11750,14487,26329,26331,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.881896280304853,8.303866753581254,0,27,-4,141.527002941362,0,3,3,2019,7,0,25,16,1,0,0,13.01189319974342,13.01189319974342,0,0,0,0,2,1,1,0,0,0,62.49,55.09,53.11,35.9,8.333333333333334,2,3,0,0,12,5,4,1,533,620692.3281675947,691283.1303336768,0,0,3669.91806323115 -11750,14487,26330,-9,26329,26331,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1113.002842579997,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.99,60.73,-9,-9,5,2,3,0,0,1,5,4,1,533,620692.3281675947,691283.1303336768,0,0,3669.91806323115 -11750,14487,26331,26329,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.563128904159246,8.536022295991174,0,27,4,63.58006244194875,0,3,3,2019,11,1,70,40,1,1,0,10.05357201427556,10.05357201427556,0,0,0,0,0,1,1,0,3.342050951211511,0,53.11,35.9,62.49,55.09,10,2,3,0,0,12,5,4,1,533,620692.3281675947,691283.1303336768,0,0,3669.91806323115 -11750,14487,26332,-9,26329,26331,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-937.5282061399414,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,4,1,533,620692.3281675947,691283.1303336768,0,0,3669.91806323115 -11751,14488,26333,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.858686817066164,6.955265678777087,0,0,-958.4001335030383,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.352403324697334,6.95207972154215,37.42,35.77,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,5627,106182.2139590207,322651.5322253893,0,0,1893.153296972188 -11752,14489,26334,26335,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.452118546965552,7.60471645134574,0,20,-7,-8.271656753641651,0,3,3,2019,9,0,19,19,1,0,0,9.907064427128976,9.907064427128976,0,0,0,0,0,1,1,0,2.33392773799353,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,312,842680.4340242917,588979.6723983554,235288.4915139324,89277.79994172238,3189.810373644976 -11752,14489,26335,26334,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.940105249414032,8.979817141576907,0,10,7,120.0135062631505,0,-9,-9,2019,8,0,37,40,1,0,0,19.46369509837489,19.46369509837489,0,0,0,0,0,1,1,0,2.304971403176341,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,312,842680.4340242917,588979.6723983554,235288.4915139324,89277.79994172238,3189.810373644976 -11752,14489,26336,-9,26334,26335,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.107580852233,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,312,842680.4340242917,588979.6723983554,235288.4915139324,89277.79994172238,3189.810373644976 -11753,14490,26337,-9,26338,-9,1,0,17,0,2,0,2,2,1,0,3,0,0,0,0,0,-958.1812344434464,-9,2,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,5,4,2,0,0,1,9,3,1,589,109471.079250264,106509.6891963691,0,0,1614.279897734965 -11753,14490,26338,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.98625980224061,7.739971127868372,0,0,0,-929.3435231046187,0,2,2,2019,12,0,24,20,1,0,0,12.19763860526669,12.19763860526669,0,0,0,0,0,1,1,0,1.323607299082635,0,57.33,53.46,-9,-9,6.666666666666667,4,2,0,0,8,9,3,1,589,109471.079250264,106509.6891963691,0,0,1614.279897734965 -11754,14491,26339,26340,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.695994719321329,8.02398442495222,47,3,94.12078297458207,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.8332979799480472,8.064387402892326,54.96,53.17,60.02,56.42,8.333333333333334,1,1,0,0,2,6,4,1,1628,364371.7985936315,194268.6646356886,186408.142741548,0,3306.37741432751 -11754,14491,26340,26339,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.784940177462005,7.03659906110188,47,-3,89.13053949606929,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.822447563088099,7.19191580015426,60.02,56.42,54.96,53.17,10,1,1,0,0,9,6,4,1,1628,364371.7985936315,194268.6646356886,186408.142741548,0,3306.37741432751 -11755,14492,26341,-9,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1074.294372809845,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,8.333333333333334,1,1,0,1,0,9,1,0,792,229641.1374940468,-52096.709152378,0,0,533.3621125014681 -11756,14493,26342,26344,-9,-9,1,1,42,1,1,0,2,2,-9,0,2,7.377054448578866,7.67367467083531,0,3,6,-49.84878750327174,0,3,3,2019,9,0,20,20,1,0,0,8.044661261380977,8.044661261380977,0,0,0,0,0,1,1,0,0,0,49.53,50.82,57.63,47.77,5,3,4,0,0,4,8,4,0,641.6666666666666,273266.9415419796,141627.5341054048,353971.7432073502,137511.6819175241,2760.440113450972 -11756,14493,26343,-9,26344,26342,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.2561201238833,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,641.6666666666666,273266.9415419796,141627.5341054048,353971.7432073502,137511.6819175241,2760.440113450972 -11756,14493,26344,26342,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.39496119683862,8.627015885716752,0,3,-6,-79.66473085830519,0,-9,-9,2019,7,0,38,48,1,0,0,12.44485203311197,12.44485203311197,0,0,0,0,0,1,1,0,0,0,57.63,47.77,49.53,50.82,8.333333333333334,1,1,0,1,7,8,4,0,641.6666666666666,273266.9415419796,141627.5341054048,353971.7432073502,137511.6819175241,2760.440113450972 -11757,14494,26345,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.996068669832601,7.15220366792925,0,0,-890.8829123386695,0,3,3,2019,17,7,0,0,4,7,0,0,0,1,49.16141239468978,125.7999350570664,445.7633335667139,0,1,1,0,0,6.864773979031998,63.41,23.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1131,843335.608108276,115254.3815855487,238859.9324817663,39287.22515390545,1691.581901980178 -11758,14495,26346,26348,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,0,0,0,4,-2,-62.89682551285202,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,50.28,51.35,8.333333333333334,1,1,0,0,4,1,3,0,595.3333333333334,-139797.6551498122,-23550.80149348016,0,0,1234.261130201244 -11758,14495,26347,-9,26346,26348,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.23899214393,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,0,595.3333333333334,-139797.6551498122,-23550.80149348016,0,0,1234.261130201244 -11758,14495,26348,26346,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.356493479155493,7.91968312762909,0,4,2,30.84123629309402,0,-9,-9,2019,7,0,39,43,1,0,0,10.87166841286368,10.87166841286368,0,0,0,0,0,1,1,0,0,0,50.28,51.35,47.07,53.97,6.666666666666667,1,1,0,0,2,1,3,0,595.3333333333334,-139797.6551498122,-23550.80149348016,0,0,1234.261130201244 -11759,14496,26349,26350,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.855736996431652,8.54818728867941,0,20,1,18.33674055880853,0,-9,-9,2019,8,0,42,45,1,0,0,18.40903726524321,18.40903726524321,0,0,0,0,0,0,0,0,0,0,53.33,51.37,59.19,36.04,8.333333333333334,1,1,0,0,13,11,5,1,707,1033041.744908127,269516.6725780495,254423.6185655147,70314.07869317345,3544.482873574777 -11759,14496,26350,26349,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.25404831361066,8.748460388651884,0,17,-1,-16.10197760878672,0,-9,-9,2019,10,1,50,70,1,1,0,12.06090301322511,12.06090301322511,0,0,0,0,5.48,0,0,0,0,0,59.19,36.04,53.33,51.37,3.333333333333333,1,1,0,0,13,11,5,1,707,1033041.744908127,269516.6725780495,254423.6185655147,70314.07869317345,3544.482873574777 -11760,14497,26351,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,4.779296916561941,5.064867538263918,0,0,-1054.028274944473,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.811012860050103,56.53,13.65,-9,-9,5,1,1,0,0,0,1,2,0,629,4040.256619452726,0,0,0,832.9244671848137 -11761,14498,26352,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.066764303655546,8.340146191085719,0,0,0,-916.1274447756584,0,2,-9,2019,17,5,46,48,1,5,0,7.695081659405647,7.695081659405647,0,0,0,0,0,0,0,0,5.239873001373191,0,47.09,56.75,-9,-9,6.666666666666667,2,3,0,0,8,8,4,0,769,-157830.4160734891,-27467.44803301826,0,0,1492.188726362397 -11762,14499,26353,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.926765154975353,8.140985358452028,7.16839719077143,0,0,-894.5049940567784,0,2,2,2019,11,0,38,0,1,2,0,7.99853533892403,7.99853533892403,0,0,0,0,7,0,0,0,7.246397132684887,6.441249517537371,46.57,39.2,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,933,779775.2825022492,214572.5620816155,306088.766041349,0,2467.135155158131 -11763,14500,26354,26355,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.810244195423873,7.485735956808308,0,26,-2,-40.50643243063656,0,2,2,2019,10,0,30,29,1,0,0,9.612881295925174,9.612881295925174,0,0,0,0,0,1,1,0,2.015211222636003,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,556,662722.014912247,255661.5535726741,299839.4282224114,27435.94731458157,3949.027460287204 -11763,14500,26355,26354,-9,-9,1,1,48,0,1,0,3,3,-9,0,5,8.665132753761778,8.720311204846361,0,26,2,.8955296874571506,0,2,2,2019,7,0,40,40,1,0,0,16.20527384452886,16.20527384452886,0,0,0,0,0,1,1,0,2.321552485584514,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,12,9,4,1,556,662722.014912247,255661.5535726741,299839.4282224114,27435.94731458157,3949.027460287204 -11763,14500,26356,-9,26354,26355,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-961.5425031466897,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,4,1,556,662722.014912247,255661.5535726741,299839.4282224114,27435.94731458157,3949.027460287204 -11763,14500,26357,-9,26354,26355,1,0,17,0,1,0,2,2,-9,0,3,0,4.357974193918046,4.219672637402832,0,0,-1003.135075963145,1,2,3,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,4.64040830706272,0,37.08,57.26,-9,-9,5,1,1,0,0,1,9,4,1,556,662722.014912247,255661.5535726741,299839.4282224114,27435.94731458157,3949.027460287204 -11764,14501,26358,26359,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.298567167870598,8.538541465930583,0,5,5,-4.089331243019632,0,3,3,2019,19,7,59,48,1,7,0,10.9060605340507,10.9060605340507,0,0,0,0,0,0,0,0,8.109612385959094,0,23.51,55.4,54.96,53.17,3.333333333333333,1,1,0,0,11,9,5,1,643.5,1190850.459540488,1072238.944156326,221694.5919490748,149841.2696098504,4608.116344990784 -11764,14501,26359,26358,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.343038366640158,8.505817455871917,0,5,-5,-144.7081398287833,0,-9,-9,2019,11,0,35,37,1,0,0,14.89091074407107,14.89091074407107,0,0,0,0,0,0,0,0,0,0,54.96,53.17,23.51,55.4,8.333333333333334,1,1,0,0,7,9,5,1,643.5,1190850.459540488,1072238.944156326,221694.5919490748,149841.2696098504,4608.116344990784 -11764,14502,26360,-9,26359,26358,1,0,22,0,0,1,2,0,0,0,4,0,6.498823473611133,6.732307449411783,0,0,-1004.634301797764,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.983817284093921,0,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,395,-7129.495515212661,0,0,0,-175.9603553744662 -11765,14503,26361,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.838483880136959,7.768179475682532,0,0,0,-980.5388069713962,0,3,2,2019,7,0,50,55,1,0,0,7.791500292803552,7.791500292803552,0,0,0,0,2,0,0,0,0,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,233,-36636.64184174455,92374.18850972557,0,0,1308.607207214519 -11766,14504,26362,26363,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.274219348659962,8.586788979749404,0,7,-4,31.58209190898071,0,2,2,2019,5,0,46,38,1,0,0,7.728997663437178,7.728997663437178,0,0,0,0,0,1,1,0,0,0,56.33,51.02,48.87,58.55,8.333333333333334,1,1,0,0,6,10,5,1,429,44345.99344878946,-22397.51474844881,187707.1063123805,176890.447900738,5539.966412511634 -11766,14504,26363,26362,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,9.101781513387998,9.376191886948488,0,7,4,27.99511634421928,0,2,2,2019,10,0,45,45,1,0,0,33.15681101989221,33.15681101989221,0,0,0,0,0,1,1,0,7.115902080095383,0,48.87,58.55,56.33,51.02,8.333333333333334,1,1,0,0,8,10,5,1,429,44345.99344878946,-22397.51474844881,187707.1063123805,176890.447900738,5539.966412511634 -11766,14504,26364,-9,26362,26363,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.0980364867016,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,429,44345.99344878946,-22397.51474844881,187707.1063123805,176890.447900738,5539.966412511634 -11766,14504,26365,-9,26362,26363,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.253747809413,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,429,44345.99344878946,-22397.51474844881,187707.1063123805,176890.447900738,5539.966412511634 -11767,14505,26366,-9,26367,-9,1,1,17,0,1,1,2,0,-9,0,4,0,4.609638951938607,5.127843536456138,0,0,-933.0158244319159,-9,2,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.77028424651323,0,46.92,60.71,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,602.6666666666666,-143460.6510596127,-16916.66710556835,0,0,215.7428135663345 -11767,14505,26367,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1037.836254991423,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.69,38.14,-9,-9,5,1,1,0,0,0,4,1,0,602.6666666666666,-143460.6510596127,-16916.66710556835,0,0,215.7428135663345 -11767,14505,26368,-9,26367,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1095.85968748398,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,1,0,602.6666666666666,-143460.6510596127,-16916.66710556835,0,0,215.7428135663345 -11768,14506,26369,26370,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.469181958815404,7.555439862736218,16,8,-22.82972641173204,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,11.33798110612255,0,0,1,1,0,5.548199207774264,7.116373481594358,56.36,16.34,62.49,55.09,6.666666666666667,1,1,0,0,0,2,3,1,610,1907195.473822444,834106.2633225608,364802.0304837794,0,3432.642448122127 -11768,14506,26370,26369,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.794110720916019,7.206110494180366,16,-8,12.86290675564606,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,6.847671048579293,7.540225361616898,62.49,55.09,56.36,16.34,10,1,1,0,0,0,2,3,1,610,1907195.473822444,834106.2633225608,364802.0304837794,0,3432.642448122127 -11769,14507,26371,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,5,0,7.431140588178664,7.629725758130117,0,0,-1067.847681132402,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.763899034147141,55.83,54.24,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,730,276384.9471451355,38650.30744051744,154390.9748987985,0,1875.999353798051 -11770,14508,26372,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,4.397670022320752,4.07122209729101,0,0,-1098.365904905751,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.251645833032421,4.38259398387017,52.68,48.77,-9,-9,10,1,1,0,0,0,12,2,0,396,168351.1957947785,-29290.17971300022,154676.3536836357,0,1094.294691994207 -11771,14509,26373,26374,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.268144490140481,6.541134706917691,21,5,-50.8426365220064,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.306905327423706,6.02073118034558,51.24,58.84,55.11,47.63,8.333333333333334,1,1,0,0,0,4,2,1,1275,412054.6997161641,178731.6107922419,255960.8315413668,0,3541.208024350325 -11771,14509,26374,26373,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,-5,134.6170288982402,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.510290162922588,0,55.11,47.63,51.24,58.84,10,1,1,0,0,0,4,2,1,1275,412054.6997161641,178731.6107922419,255960.8315413668,0,3541.208024350325 -11772,14510,26375,26376,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.315183218455072,8.2121508638535,0,16,-4,47.67780308293979,0,2,2,2019,12,0,20,28,1,0,0,23.80096976054046,23.80096976054046,0,0,0,0,0,1,1,0,0,0,48.77,60.16,47.55,55.06,8.333333333333334,1,1,0,0,9,10,5,1,996.3333333333334,337816.967915129,207483.6978358921,166352.2233934584,83515.59196888453,4269.109380726092 -11772,14510,26376,26375,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.530888016750868,8.713820200050968,0,15,4,53.59327947303582,0,2,3,2019,11,0,50,45,1,0,0,13.4627508691772,13.4627508691772,0,0,0,0,0,1,1,0,1.873214646557088,0,47.55,55.06,48.77,60.16,8.333333333333334,1,1,0,0,12,10,5,1,996.3333333333334,337816.967915129,207483.6978358921,166352.2233934584,83515.59196888453,4269.109380726092 -11772,14510,26377,-9,26375,26376,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-809.8334038077371,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,996.3333333333334,337816.967915129,207483.6978358921,166352.2233934584,83515.59196888453,4269.109380726092 -11773,14511,26378,-9,26379,26380,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.736098393296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1268.25,380978.098700283,313735.7963080032,33736.29907195584,51562.08321187148,4201.962966648876 -11773,14511,26379,26380,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,7.934639838493136,8.135196291711186,0,6,-4,87.13758335591433,0,-9,-9,2019,11,0,30,35,1,0,0,13.17071595328518,13.17071595328518,0,0,0,0,0,1,1,0,6.738461804516981,0,51.83,57.2,54.74,57.22,8.333333333333334,1,1,0,0,10,6,5,1,1268.25,380978.098700283,313735.7963080032,33736.29907195584,51562.08321187148,4201.962966648876 -11773,14511,26380,26379,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,8.712396041040883,8.843897248918879,0,6,4,129.1314202497761,0,-9,-9,2019,10,0,55,55,1,0,0,13.82953190012821,13.82953190012821,0,0,0,0,0,1,1,0,2.86150835868093,0,54.74,57.22,51.83,57.2,10,1,1,0,0,9,6,5,1,1268.25,380978.098700283,313735.7963080032,33736.29907195584,51562.08321187148,4201.962966648876 -11773,14511,26381,-9,26379,26380,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.7780953052566,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1268.25,380978.098700283,313735.7963080032,33736.29907195584,51562.08321187148,4201.962966648876 -11774,14512,26382,26383,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.858043889514964,5.853898469852769,38,1,-49.34619315771684,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.450105341299164,5.434216863030036,54.21,47.1,41.25,30.17,5,1,1,0,0,4,2,2,1,775.5,487992.6226096047,475035.0323155575,160156.4514193538,0,1788.449943251945 -11774,14512,26383,26382,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.009894599779962,7.1500215493529,38,-1,164.177177980654,-9,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.585621880531457,7.049225549272475,41.25,30.17,54.21,47.1,6.666666666666667,1,1,0,0,0,2,2,1,775.5,487992.6226096047,475035.0323155575,160156.4514193538,0,1788.449943251945 -11774,14513,26384,-9,26382,26383,1,1,33,0,0,0,1,1,-9,0,4,7.815505879742578,7.777049795525879,0,0,0,-1039.61114319146,-9,2,2,2019,8,0,37,0,1,0,0,8.926478145882678,8.926478145882678,0,0,0,0,0,1,1,0,1.716250964959399,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,1184,-119685.0735730874,62765.03384425386,0,0,1304.212813295191 -11775,14514,26385,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.7531117568454,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,.4957566168380971,0,0,1,1,0,0,0,51.9,22.42,-9,-9,5,1,1,0,0,0,13,1,0,491,-680.9198585297529,0,0,0,1585.200675048653 -11776,14515,26386,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1046.26348802799,0,3,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.77,22.54,-9,-9,3.333333333333333,2,3,0,1,0,8,1,0,183,198326.5344232901,0,0,0,1870.158699786901 -11777,14516,26387,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.568669304748557,8.369228392809747,0,0,0,-951.2023571910138,0,2,2,2019,9,1,41,40,1,1,0,13.51500043960101,13.51500043960101,0,0,0,0,0,0,0,0,1.417034620686254,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,323,40821.01057197345,4883.725060319746,33389.39691288353,0,2071.106405469815 -11777,14517,26388,-9,26387,-9,1,1,24,0,0,0,2,2,-9,0,2,6.928277226499761,7.01066774088356,0,0,0,-943.2575277253118,0,2,-9,2019,12,0,20,18,1,0,1,6.145547239179436,6.145547239179436,0,0,0,0,0,0,0,0,0,0,44.94,49.91,-9,-9,3.333333333333333,1,1,0,1,5,12,2,1,1131,64640.19925289247,-103166.626281787,0,0,151.5775365257392 -11778,14518,26389,26391,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.411950759888608,8.826795280814748,0,26,4,3.811143672218357,0,2,2,2019,9,0,46,92,1,0,0,14.69032543556278,14.69032543556278,0,0,0,0,0,1,1,0,5.155741522660564,0,54.2,57.49,48.87,58.55,1.666666666666667,1,1,0,0,8,5,4,1,707.6666666666666,329124.5449383952,233176.3947218312,96461.85706084699,0,2799.240041976039 -11778,14518,26390,-9,26391,26389,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.2719832369902,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,5,4,1,707.6666666666666,329124.5449383952,233176.3947218312,96461.85706084699,0,2799.240041976039 -11778,14518,26391,26389,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.479258278506357,7.4329902391265,0,26,-4,-125.7553321922133,0,2,2,2019,14,3,19,23,1,3,0,10.23433562358101,10.23433562358101,0,0,0,0,0,1,1,0,3.395870142143219,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,8,5,4,1,707.6666666666666,329124.5449383952,233176.3947218312,96461.85706084699,0,2799.240041976039 -11779,14519,26392,26393,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.659854839869274,6.147478175061268,46,1,12.95257693783282,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.053281318568314,6.500726061509759,58.15,52.91,58.9,45.74,10,1,1,0,0,0,2,3,1,437.5,931515.0365889351,492965.2687264411,363490.5253263301,132828.6940103802,3516.075969713589 -11779,14519,26393,26392,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.711204344066027,7.615427332333855,46,-1,-58.68704647918185,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.543453012940312,7.839667650139694,58.9,45.74,58.15,52.91,8.333333333333334,1,1,0,0,0,2,3,1,437.5,931515.0365889351,492965.2687264411,363490.5253263301,132828.6940103802,3516.075969713589 -11780,14520,26394,26395,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.070679854704733,7.282374860776927,9,2,2.403768219627602,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.750526301633179,7.177977507641666,51.9,43.68,34.96,27.45,8.333333333333334,1,1,0,0,0,1,3,1,507,802966.4379544985,551965.5404486327,295137.0252777202,0,2833.561524260177 -11780,14520,26395,26394,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.335068358452506,6.272472491717219,23,-2,-116.7660443212115,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.833060959934144,34.96,27.45,51.9,43.68,6.666666666666667,1,1,0,0,10,1,3,1,507,802966.4379544985,551965.5404486327,295137.0252777202,0,2833.561524260177 -11781,14521,26396,26397,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.659839313349456,7.767479978007277,0,27,-5,-78.0971490777179,0,2,2,2019,10,0,30,38,1,0,0,6.573205722191566,6.573205722191566,0,0,0,0,0,1,1,0,0,0,46.98,59.35,47.19,40.97,8.333333333333334,1,1,0,0,10,4,2,0,684,-65982.75966558645,0,0,0,2324.87943236381 -11781,14521,26397,26396,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,1,5,-43.10471894604461,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,40.97,46.98,59.35,8.333333333333334,1,1,0,0,0,4,2,0,684,-65982.75966558645,0,0,0,2324.87943236381 -11782,14522,26398,26399,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,8.447578713116938,8.432226149242304,0,32,-20,-55.66331461316862,0,-9,-9,2019,8,0,58,48,1,0,0,8.861568999502165,8.861568999502165,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.79,52.62,8.333333333333334,3,4,0,0,10,7,4,1,1163.5,1718897.178734091,820285.1998711869,599599.3791014204,0,2646.07057142261 -11782,14522,26399,26398,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.331836439111902,5.431521628342772,32,20,102.0833246479729,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,19.72284200195834,0,0,1,1,0,0,5.221849606135865,55.79,52.62,57.06,57.76,5,3,4,0,0,0,7,4,1,1163.5,1718897.178734091,820285.1998711869,599599.3791014204,0,2646.07057142261 -11782,14523,26400,-9,26398,26399,1,1,28,0,0,0,1,1,-9,0,4,8.47941106588917,8.62088561123316,0,0,0,-861.8288523710486,0,3,3,2019,3,0,39,47,1,0,1,18.37065401859779,18.37065401859779,0,0,0,0,0,1,1,0,3.60292236365339,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,2,7,5,1,734,88630.97818161212,-2786.571678989538,0,0,2472.51485089064 -11783,14524,26401,-9,26404,26405,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.4062217816969,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,693.8,576069.0418802786,253370.9106835594,194061.6842914375,44580.94853085189,9827.109896076034 -11783,14524,26402,-9,26404,26405,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.611247732558,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,1,693.8,576069.0418802786,253370.9106835594,194061.6842914375,44580.94853085189,9827.109896076034 -11783,14524,26403,-9,26404,26405,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-927.8392391578275,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,693.8,576069.0418802786,253370.9106835594,194061.6842914375,44580.94853085189,9827.109896076034 -11783,14524,26404,26405,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.151383306456845,7.952313050067485,0,8,-2,82.37889401314627,0,2,2,2019,11,0,18,13,1,1,0,20.10662518188803,20.10662518188803,0,0,0,0,0,1,1,0,0,0,49,56,49.87,50.46,7,1,1,0,0,1,2,5,1,693.8,576069.0418802786,253370.9106835594,194061.6842914375,44580.94853085189,9827.109896076034 -11783,14524,26405,26404,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,9.785108027888453,9.800760760478916,0,18,2,42.54215247740184,0,2,1,2019,8,0,50,45,1,0,0,32.91237785413689,32.91237785413689,0,0,0,0,0,1,1,0,7.140470885731972,0,49.87,50.46,49,56,8.333333333333334,1,1,0,0,11,2,5,1,693.8,576069.0418802786,253370.9106835594,194061.6842914375,44580.94853085189,9827.109896076034 -11784,14525,26406,-9,26407,26408,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-857.8620518455474,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,646.3333333333334,236849.3293235832,36004.4400171223,192548.7306820404,32957.48536286934,2615.791809531509 -11784,14525,26407,26408,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.764441851594841,7.869580806826614,0,19,-8,108.5136710527791,0,2,2,2019,10,0,16,16,1,1,0,16.61205292480541,16.61205292480541,0,0,0,0,0,1,1,0,0,0,50,55,49.08,53.24,8,1,1,0,0,1,2,4,1,646.3333333333334,236849.3293235832,36004.4400171223,192548.7306820404,32957.48536286934,2615.791809531509 -11784,14525,26408,26407,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.017065791712998,8.038902919090418,0,19,8,-154.8601217253032,0,2,2,2019,18,6,46,45,1,6,0,8.508974762543051,8.508974762543051,0,0,0,0,27,1,1,0,0,0,49.08,53.24,50,55,3.333333333333333,1,1,0,0,10,2,4,1,646.3333333333334,236849.3293235832,36004.4400171223,192548.7306820404,32957.48536286934,2615.791809531509 -11785,14526,26409,-9,26412,26413,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.9134406949354,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,666.2,371266.6332700428,201662.0956575835,153831.9170231558,84874.25210243868,2593.006442059351 -11785,14526,26410,-9,26412,26413,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.148811564756,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.519651018887945,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,666.2,371266.6332700428,201662.0956575835,153831.9170231558,84874.25210243868,2593.006442059351 -11785,14526,26411,-9,26412,26413,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.476099349348,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,666.2,371266.6332700428,201662.0956575835,153831.9170231558,84874.25210243868,2593.006442059351 -11785,14526,26412,26413,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,6.848637911361447,6.75866242441711,0,18,-14,78.01345909843074,0,3,3,2019,8,0,10,10,1,0,0,10.7934161416062,10.7934161416062,0,0,0,0,0,1,1,0,0,0,57.49,45.09,64.64,45.93,8.333333333333334,2,3,0,0,10,4,2,1,666.2,371266.6332700428,201662.0956575835,153831.9170231558,84874.25210243868,2593.006442059351 -11785,14526,26413,26412,-9,-9,1,1,49,1,3,0,3,3,-9,0,3,7.449906593010749,7.570988796574618,0,18,14,-34.36777322210595,0,3,3,2019,6,0,35,35,1,0,0,6.691414590359368,6.691414590359368,0,0,0,0,0,1,1,0,0,0,64.64,45.93,57.49,45.09,1.666666666666667,2,3,0,0,10,4,2,1,666.2,371266.6332700428,201662.0956575835,153831.9170231558,84874.25210243868,2593.006442059351 -11786,14527,26414,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-972.8077685300444,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.046167645550544,0,53.53,22.75,-9,-9,5,1,1,0,0,0,2,1,0,444,-3276.008312252231,0,0,0,335.6789970444944 -11787,14528,26415,26416,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.96744953784908,8.084921809495603,0,39,-1,-14.02768421264039,0,2,2,2019,13,1,42,42,1,1,0,7.435622095217769,7.435622095217769,0,0,0,0,7,0,0,0,3.237967305445587,0,43.24,49.48,57.75,41.31,8.333333333333334,1,1,0,0,7,2,5,1,253.5,1388114.061703891,1166395.867306158,172040.8201550984,46448.21822313072,3654.124001731935 -11787,14528,26416,26415,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.444020821723033,8.487221762179519,0,39,1,49.51355700151753,0,2,3,2019,9,1,50,49,1,1,0,12.43112207370091,12.43112207370091,0,0,0,0,0,0,0,0,5.176800798888221,0,57.75,41.31,43.24,49.48,6.666666666666667,1,1,0,0,9,2,5,1,253.5,1388114.061703891,1166395.867306158,172040.8201550984,46448.21822313072,3654.124001731935 -11788,14529,26417,26418,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.623211241202439,8.335619888510248,0,10,12,110.6302063740822,0,2,2,2019,7,0,48,45,1,0,0,14.53265722983093,14.53265722983093,0,0,0,0,0,0,0,0,1.778166375363766,0,49.96,56.89,51.49,57.57,6.666666666666667,1,1,0,0,10,10,5,1,582.5,487925.9491226602,176066.3369652411,291627.755869596,99158.90915958438,3178.900058908444 -11788,14529,26418,26417,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.838963532016105,8.092932584796461,0,10,-12,125.747790357019,0,3,2,2019,8,1,5,5,1,1,0,50.06085172572393,50.06085172572393,0,0,0,0,2,0,0,0,0,0,51.49,57.57,49.96,56.89,6.666666666666667,1,1,0,0,9,10,5,1,582.5,487925.9491226602,176066.3369652411,291627.755869596,99158.90915958438,3178.900058908444 -11789,14530,26419,26421,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,7.959947018564786,8.009086839730776,0,6,4,140.6308616831212,0,-9,-9,2019,10,0,40,40,1,1,0,8.688125356492421,8.688125356492421,0,0,0,0,0,1,1,0,0,0,51,57,51.84,35.77,7,1,1,0,0,1,7,3,0,1307.75,8402.499997527084,41737.26172561885,0,0,2534.253460846405 -11789,14530,26420,-9,26421,26419,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.307493659954,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,.6078870925270206,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1307.75,8402.499997527084,41737.26172561885,0,0,2534.253460846405 -11789,14530,26421,26419,-9,-9,1,0,32,1,2,0,2,2,-9,1,3,0,0,0,6,-4,-56.96300552169903,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.84,35.77,51,57,8.333333333333334,1,1,0,0,0,7,3,0,1307.75,8402.499997527084,41737.26172561885,0,0,2534.253460846405 -11789,14530,26422,-9,26421,26419,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.882483021297,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1307.75,8402.499997527084,41737.26172561885,0,0,2534.253460846405 -11790,14531,26423,26424,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,7.837432901657312,7.054968968482237,31,6,126.6653437241328,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,4.499361930524245,7.728124872750264,42.19,55.41,2.19,69.56,5,1,1,0,0,2,7,4,1,2507,296503.1144253361,87558.67216787758,208144.6105921838,0,2673.87977293156 -11790,14531,26424,26423,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.269543656227498,8.399147181426102,0,31,-6,-76.58945235530814,0,3,3,2019,33,11,75,39,1,11,0,6.235920583252337,6.235920583252337,0,0,0,0,0,0,0,0,0,0,2.19,69.56,42.19,55.41,1.666666666666667,1,1,0,0,7,7,4,1,2507,296503.1144253361,87558.67216787758,208144.6105921838,0,2673.87977293156 -11791,14532,26425,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.620308420667677,6.375754682342842,0,0,-939.8447534512611,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.602170331083276,6.013824109297323,27.65,33.74,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,1201,229659.8223191626,274248.8849576139,0,0,713.6577696655125 -11792,14533,26426,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.788279539622708,8.008385352139157,0,0,-843.5432486387547,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.077380379514594,54,46,-9,-9,8,3,4,0,0,0,8,3,0,669,1091710.402211056,356242.3930968281,325951.7771822351,0,1895.397441045555 -11793,14534,26427,26428,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,7.859497182245265,8.081511721478826,0,5,2,-177.7374331912691,0,-9,-9,2019,15,4,37,35,1,4,0,8.607296031692545,8.607296031692545,0,0,0,0,2,0,0,0,0,0,44.43,43.51,60.7,39.78,6.666666666666667,1,1,0,0,1,11,4,0,379,27886.56174596864,-29433.93391355913,255175.1028494701,128613.4185690028,2873.893219603566 -11793,14534,26428,26427,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.221994406264356,8.470040413269885,0,5,-2,15.20851415875005,0,-9,-9,2019,6,0,37,35,1,0,0,11.67585513898295,11.67585513898295,0,0,0,0,2,0,0,0,0,0,60.7,39.78,44.43,43.51,8.333333333333334,1,1,0,0,3,11,4,0,379,27886.56174596864,-29433.93391355913,255175.1028494701,128613.4185690028,2873.893219603566 -11794,14535,26429,-9,26431,26430,1,0,17,0,0,0,2,2,1,0,2,0,0,0,0,0,-950.5360344937496,-9,1,-9,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,35.93,-9,-9,3.333333333333333,1,1,0,1,3,12,5,1,711.6666666666666,506441.3450032959,362035.7905389103,196806.440458449,99662.11547609395,3136.29078254092 -11794,14535,26430,26431,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.568066495518208,8.598811167240974,0,8,1,-35.98337709196718,0,2,2,2019,11,0,41,41,1,0,0,12.76651157443053,12.76651157443053,0,0,0,0,0,1,1,0,3.240311868024868,0,49.68,50.49,23.07,49.2,3.333333333333333,1,1,0,1,9,12,5,1,711.6666666666666,506441.3450032959,362035.7905389103,196806.440458449,99662.11547609395,3136.29078254092 -11794,14535,26431,26430,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.657200429271637,7.835832597731378,0,8,-1,4.495730330541584,0,2,2,2019,22,8,24,24,1,8,0,11.06381773421331,11.06381773421331,0,0,0,0,2,1,1,0,0,0,23.07,49.2,49.68,50.49,6.666666666666667,1,1,0,1,8,12,5,1,711.6666666666666,506441.3450032959,362035.7905389103,196806.440458449,99662.11547609395,3136.29078254092 -11794,14536,26432,-9,26431,26430,1,1,20,0,0,0,2,2,-9,0,4,6.794124216790464,7.175146264972583,0,0,0,-1039.478816631554,0,1,-9,2019,12,1,25,23,1,1,1,3.884504003640168,3.884504003640168,0,0,0,0,0,1,1,0,0,0,50.85,54.91,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,547,12374.65870726965,0,0,0,91.80339429294366 -11795,14537,26433,26434,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,3.840179651449452,3.968782136536651,52,-1,-7.763088361551508,0,-9,-9,2019,12,0,0,12,4,0,0,0,0,0,0,0,0,2,1,1,0,3.854624361028632,3.701219325602285,57.24,46.7,62.49,55.09,10,1,1,0,0,11,9,2,1,359.5,804731.8809556222,58902.88202749546,681093.197449391,0,1184.507105030653 -11795,14537,26434,26433,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.73566538113123,5.932394110990434,52,1,-35.74531717543281,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.632908857542946,6.152201653921034,62.49,55.09,57.24,46.7,10,1,1,0,0,10,9,2,1,359.5,804731.8809556222,58902.88202749546,681093.197449391,0,1184.507105030653 -11795,14538,26435,-9,26433,26434,1,1,45,0,0,0,3,3,-9,0,4,7.817843642825633,7.942105102203023,0,0,0,-811.6920357816075,-9,3,2,2019,9,0,40,0,1,1,0,6.409336644970377,6.409336644970377,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,9,4,1,474,-84186.40298184475,42667.69639928974,0,0,553.3189259381942 -11796,14539,26436,-9,-9,-9,1,1,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1129.189088311665,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,1.18938314755185,1.476588636238969,0,0,1,1,0,0,0,48.57,34.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,336,155778.8371069352,0,0,0,423.7066742302281 -11797,14540,26437,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.009111458645686,5.105951218791494,0,0,-1056.058744043957,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.450036983437143,5.027224040275752,44.62,20.44,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,676,-84415.30992510854,-74156.14260997486,0,0,1377.51645911335 -11798,14541,26438,-9,26440,26441,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.748189775574,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,2,3,-9,0,0,4,4,1,649.25,272733.4600958934,289668.3009699219,84861.93957996857,69447.50910264708,3409.346810731343 -11798,14541,26439,-9,26440,26441,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.0406269896403,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,4,1,649.25,272733.4600958934,289668.3009699219,84861.93957996857,69447.50910264708,3409.346810731343 -11798,14541,26440,26441,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.523183502001605,7.438724193794181,0,16,-6,2.58364160058361,0,2,1,2019,5,0,27,5,1,0,0,7.61230983552533,7.61230983552533,0,0,0,0,0,1,1,0,0,0,48.62,54.52,58.47,44.69,6.666666666666667,2,3,0,0,1,4,4,1,649.25,272733.4600958934,289668.3009699219,84861.93957996857,69447.50910264708,3409.346810731343 -11798,14541,26441,26440,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.525817239366701,8.531394025177663,0,6,6,84.42708203446846,0,2,2,2019,11,0,40,39,1,0,0,15.81765693665083,15.81765693665083,0,0,0,0,0,1,1,0,6.29799474210379,0,58.47,44.69,48.62,54.52,5,2,3,0,0,9,4,4,1,649.25,272733.4600958934,289668.3009699219,84861.93957996857,69447.50910264708,3409.346810731343 -11799,14542,26442,26443,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.661608532317313,7.625232124470777,52,-4,-58.60097436701651,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.393637337688365,7.467138895175476,51,46,63.48,51.85,7,1,1,0,0,0,11,3,1,217,731783.0365243899,341272.8207097391,357475.9281188153,0,2117.091603443767 -11799,14542,26443,26442,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.212013302068803,6.780915323951533,49,4,33.87300256879669,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.745625348005285,6.806970846183623,63.48,51.85,51,46,10,1,1,0,0,0,11,3,1,217,731783.0365243899,341272.8207097391,357475.9281188153,0,2117.091603443767 -11800,14543,26444,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,6.597087401332965,6.665923341458223,0,0,-1070.227036332065,0,2,2,2019,21,7,0,0,4,7,0,0,0,1,6.12443222280151,0,72.99003509683607,0,1,1,0,0,6.690876103714213,40.25,19.86,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1087,241412.6449598135,178752.7330866028,161012.8189812623,0,927.901025212047 -11801,14544,26445,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.070537388262771,8.211566438247086,0,0,0,-978.4980181454011,0,-9,-9,2019,10,1,21,26,1,1,0,17.13052574349128,17.13052574349128,0,0,0,0,0,1,1,0,2.701576244792113,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,1291.666666666667,-14865.53232862256,-39241.10632643787,0,0,2125.258078939405 -11801,14544,26446,-9,26445,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.8047148331594,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,3,1,1291.666666666667,-14865.53232862256,-39241.10632643787,0,0,2125.258078939405 -11801,14544,26447,-9,26445,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.9764952888,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1291.666666666667,-14865.53232862256,-39241.10632643787,0,0,2125.258078939405 -11802,14545,26448,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.176080254179247,6.969583051635094,0,0,0,-1055.343177555912,0,3,3,2019,8,2,10,10,1,2,0,12.94337041908339,12.94337041908339,0,0,0,0,2,1,1,0,0,0,36.21,43.67,-9,-9,1.666666666666667,1,1,0,0,8,2,3,0,374,23006.11264425646,66159.18055304991,0,0,607.4317931160668 -11803,14546,26449,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.83154861984644,8.020219951302153,5.646002923524837,0,0,-1045.032626679498,0,3,3,2019,8,0,30,30,1,0,0,8.020620288971726,8.020620288971726,0,0,0,0,0,0,0,0,0,5.885007228770297,58.91,45.88,-9,-9,10,1,1,0,0,12,2,3,0,358,213231.4345190795,0,0,0,955.9310518256075 -11804,14547,26450,-9,26451,26453,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1074.626953572294,-9,2,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,.0659132005022731,0,34.73,60.05,-9,-9,3.333333333333333,1,1,0,1,4,2,1,1,302,-25097.85688930218,0,0,0,194.2365067521823 -11804,14548,26451,26453,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.878091549991599,7.854691447738926,0,6,11,63.42688989290034,0,-9,-9,2019,11,0,32,22,1,0,0,9.890246573952769,9.890246573952769,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.53,56.37,6.666666666666667,1,1,0,0,11,2,4,1,685,156169.1924407378,57425.67422000694,199918.5781922262,99879.74804805843,2627.646915445001 -11804,14548,26452,-9,26451,26453,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.6737277071391,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,685,156169.1924407378,57425.67422000694,199918.5781922262,99879.74804805843,2627.646915445001 -11804,14548,26453,26451,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.049583435325021,8.134398566600707,0,6,-11,-146.5550193317441,0,2,-9,2019,12,0,45,45,1,0,0,7.094067695390126,7.094067695390126,0,0,0,0,2,1,1,0,0,0,44.53,56.37,48.87,58.55,5,1,1,0,0,9,2,4,1,685,156169.1924407378,57425.67422000694,199918.5781922262,99879.74804805843,2627.646915445001 -11805,14549,26454,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1027.415523142951,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,24.43,22.49,-9,-9,0,1,1,0,0,2,12,1,0,250,183273.8758893418,0,0,0,530.1888257369781 -11806,14550,26455,26456,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.525552840890104,8.572943350690846,0,15,-5,-228.9426711404601,0,2,3,2019,12,1,46,48,1,1,0,10.5633132013568,10.5633132013568,0,0,0,0,7,1,1,0,0,0,35,55.7,33.37,60.58,8.333333333333334,2,3,0,0,11,8,4,1,952.5,162157.0149865596,11251.66456955938,258597.6022879072,137978.1332826501,3770.15000099138 -11806,14550,26456,26455,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.138540121908388,8.001503343262836,0,15,5,129.6353475084109,0,2,2,2019,9,0,40,40,1,0,0,12.35135240231086,12.35135240231086,0,0,0,0,2,1,1,0,.4581246822534489,0,33.37,60.58,35,55.7,8.333333333333334,2,3,0,0,11,8,4,1,952.5,162157.0149865596,11251.66456955938,258597.6022879072,137978.1332826501,3770.15000099138 -11806,14550,26457,-9,26455,26456,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-949.0248271900787,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,4,1,952.5,162157.0149865596,11251.66456955938,258597.6022879072,137978.1332826501,3770.15000099138 -11806,14550,26458,-9,26455,26456,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.215172530617,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,952.5,162157.0149865596,11251.66456955938,258597.6022879072,137978.1332826501,3770.15000099138 -11807,14551,26459,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.846729329296249,6.766664866265635,0,0,-1052.806067234847,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,3.487734669961052,0,0,1,1,0,0,6.758066963058093,59,36.72,-9,-9,10,1,1,0,0,0,11,2,0,372,400722.1498293027,60881.15795699452,181996.9119414871,0,588.0934039064947 -11808,14552,26460,26461,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.27514720929231,6.05473150672479,6,23,16.62392952550629,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,5.842898527060478,37.21,33.39,30.77,22.6,6.666666666666667,1,1,0,0,0,11,2,1,885,26996.02911610828,0,0,0,1639.051169276866 -11808,14552,26461,26460,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,6,-23,-61.30116220263868,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,22.6,37.21,33.39,1.666666666666667,1,1,0,0,0,11,2,1,885,26996.02911610828,0,0,0,1639.051169276866 -11809,14553,26462,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.993500375150173,5.776007879014503,0,0,-887.6933663265029,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.11498248905594,6.204296152314361,54,46,-9,-9,8,1,1,0,0,0,13,2,1,1527,318610.2590329355,148141.0042613578,0,0,210.1433646089607 -11810,14554,26463,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.677075360039611,8.702842412601489,0,0,0,-866.9280989373925,0,1,1,2019,4,1,38,47,1,1,0,22.44264938161767,22.44264938161767,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,8,9,5,1,79,145675.2720558478,84278.38521060324,0,0,3035.658261815342 -11811,14555,26464,-9,26466,26465,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.1182635084454,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1167.666666666667,790251.7224168234,573727.2086954055,261740.3091701983,75774.38879946683,3255.687530491035 -11811,14555,26465,26466,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,7.252246391275364,7.695065200818158,0,7,1,-52.61956661943636,0,2,2,2019,7,0,32,0,1,0,0,7.529226516430837,7.529226516430837,0,0,0,0,0,1,1,0,6.709038662281714,0,54.79,55.86,43.2,59.97,8.333333333333334,1,1,0,0,9,11,5,1,1167.666666666667,790251.7224168234,573727.2086954055,261740.3091701983,75774.38879946683,3255.687530491035 -11811,14555,26466,26465,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.704078168612687,8.760993183920833,0,7,-1,45.05465841233708,0,-9,-9,2019,6,0,32,30,1,0,0,23.58382956120871,23.58382956120871,0,0,0,0,0,1,1,0,0,0,43.2,59.97,54.79,55.86,8.333333333333334,1,1,0,0,8,11,5,1,1167.666666666667,790251.7224168234,573727.2086954055,261740.3091701983,75774.38879946683,3255.687530491035 -11812,14556,26467,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.6417445988031,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.8,38.88,-9,-9,5,1,1,0,0,0,10,1,0,94,-30637.80572923755,0,0,0,1011.383781249449 -11813,14557,26468,26469,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.021482644699086,7.972726230475401,10,4,-56.14947974681587,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.0272026585321505,7.810645215212162,60.29,38.88,60.87,44.96,8.333333333333334,1,1,0,0,3,13,4,1,1150,1915552.769467617,1097809.904888434,434233.1128688456,0,3092.724923424956 -11813,14557,26469,26468,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.000021879181636,7.948642063243399,10,-4,138.2022883909238,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.53101374278224,7.950390945981886,60.87,44.96,60.29,38.88,8.333333333333334,1,1,0,0,4,13,4,1,1150,1915552.769467617,1097809.904888434,434233.1128688456,0,3092.724923424956 -11814,14558,26470,26472,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,4.303666782733317,4.169038943273808,0,14,-11,25.9187101924832,0,-9,-9,2019,7,0,8,8,1,0,0,1.066073139069528,1.066073139069528,0,0,0,0,0,1,1,0,0,0,57.73,54.53,56.01,51.37,8.333333333333334,1,1,0,0,11,12,4,1,623.3333333333334,259486.4034288376,101444.9455160552,205034.0903443352,156198.9269272253,2799.156529881695 -11814,14558,26471,-9,26470,26472,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.3656846407533,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,623.3333333333334,259486.4034288376,101444.9455160552,205034.0903443352,156198.9269272253,2799.156529881695 -11814,14558,26472,26470,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.805957328789679,8.904278937282191,5.331587039023616,3,11,-123.391393528189,0,-9,-9,2019,8,0,41,45,1,0,0,17.33920673769369,17.33920673769369,0,0,0,0,0,1,1,0,5.840960768232529,0,56.01,51.37,57.73,54.53,8.333333333333334,1,1,0,0,5,12,4,1,623.3333333333334,259486.4034288376,101444.9455160552,205034.0903443352,156198.9269272253,2799.156529881695 -11815,14559,26473,26475,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,7.736595873845289,7.465251266579694,0,17,3,-108.5406765508521,0,3,1,2019,8,0,40,40,1,0,0,5.836756485804916,5.836756485804916,0,0,0,0,0,1,1,0,0,0,37.14,49.77,49,56,10,2,3,0,0,10,8,2,0,1030.6,-15978.06441489766,0,0,0,1839.572987800078 -11815,14559,26474,-9,26475,26473,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.8698496120982,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,1030.6,-15978.06441489766,0,0,0,1839.572987800078 -11815,14559,26475,26473,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,0,0,17,-3,-24.80146705485079,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,37.14,49.77,5,2,3,1,0,0,8,2,0,1030.6,-15978.06441489766,0,0,0,1839.572987800078 -11815,14559,26476,-9,26475,26473,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1023.765893469312,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.373324270544134,0,35.2,48.71,-9,-9,5,2,3,0,0,0,8,2,0,1030.6,-15978.06441489766,0,0,0,1839.572987800078 -11815,14559,26477,-9,26475,26473,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.1157156714161,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,1030.6,-15978.06441489766,0,0,0,1839.572987800078 -11816,14560,26478,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.061568542896246,8.02300259593075,6.076330685668547,0,0,-990.3964178082433,0,-9,-9,2019,18,5,38,39,1,5,0,11.49773413285264,11.49773413285264,0,0,0,0,0,1,1,0,6.529423103696189,0,31.12,63.98,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,4536,48485.92650751334,127743.9660435524,155992.2849632761,101065.2581928488,2428.557055750607 -11816,14560,26479,-9,26478,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.8775365440382,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,4536,48485.92650751334,127743.9660435524,155992.2849632761,101065.2581928488,2428.557055750607 -11816,14560,26480,-9,26478,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.4670472628907,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,4536,48485.92650751334,127743.9660435524,155992.2849632761,101065.2581928488,2428.557055750607 -11817,14561,26481,-9,26482,-9,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1087.040809058901,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,9,3,1,1107,339030.8083485749,301171.2641059886,203550.6181371151,22290.96184419389,2046.349217836238 -11817,14561,26482,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.20527191634366,7.161989045621271,0,0,-958.2576409480988,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2871851742350376,7.478621982344937,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,1107,339030.8083485749,301171.2641059886,203550.6181371151,22290.96184419389,2046.349217836238 -11818,14562,26483,-9,26488,26487,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-921.0154924069,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14562,26484,-9,26488,26487,1,0,16,0,4,1,2,0,-9,0,2,0,0,0,0,0,-1039.13376393247,-9,3,1,2019,9,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39,43,-9,-9,5,3,4,0,0,0,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14562,26485,-9,26488,26487,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1035.946348777145,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14562,26486,-9,26488,26487,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-873.0376849529043,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14562,26487,26488,-9,-9,1,1,45,0,4,0,1,1,-9,0,4,7.961705918641015,8.247571585939633,0,3,8,148.22907439279,0,-9,-9,2019,9,0,40,40,1,1,0,9.563767746482842,9.563767746482842,0,0,0,0,0,1,1,0,8.348660519975772,0,53,55,32.79,44.66,8,3,4,0,0,1,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14562,26488,26487,-9,-9,1,0,37,0,4,0,3,3,-9,0,4,0,0,0,3,-8,-9.172373077072972,0,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.79,44.66,53,55,3.333333333333333,3,4,1,0,4,8,2,0,804.5,-90951.64986210868,0,0,0,5214.252066648849 -11818,14563,26489,-9,26488,26487,1,0,18,0,4,0,2,2,1,0,4,8.133898606514872,7.554818874612454,0,0,0,-1030.001675045929,-9,3,1,2019,12,0,12,0,1,2,1,21.18374975695072,21.18374975695072,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,1446,-49751.74359830342,0,0,0,1867.450289422143 -11819,14564,26490,-9,-9,-9,1,0,70,0,1,0,2,2,-9,0,4,0,5.649621904575961,5.510227952084672,0,0,-1048.579728169015,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.591929984634537,38.02,58.85,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,866,416126.5159735208,0,404070.815959177,0,959.9856612976763 -11819,14565,26491,-9,-9,26493,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1078.88119132876,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,7,3,1,303,176018.3316375105,91356.73022423853,92480.71395350633,53686.93190738184,1656.056514300145 -11819,14565,26492,-9,-9,26493,1,1,16,0,1,1,2,0,-9,0,2,0,0,0,0,0,-937.3210113791991,-9,-9,2,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.17,32.45,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,303,176018.3316375105,91356.73022423853,92480.71395350633,53686.93190738184,1656.056514300145 -11819,14565,26493,-9,26490,-9,1,1,44,0,1,0,2,2,-9,0,4,7.936657648897031,7.852336648193513,0,0,0,-1115.390305225423,0,2,2,2019,7,0,37,37,1,0,0,8.828599183512855,8.828599183512855,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,303,176018.3316375105,91356.73022423853,92480.71395350633,53686.93190738184,1656.056514300145 -11820,14566,26494,26495,-9,-9,1,0,65,0,0,0,3,3,-9,1,1,0,0,0,40,-1,17.06980691516821,0,3,3,2019,11,0,0,0,3,0,0,0,0,1,2.023613994782066,28.12497441045788,26.82753852353924,0,1,1,0,0,0,37.03,15.93,46.95,35.43,5,1,1,0,0,0,2,4,1,704,1385516.402159362,934247.107302893,230307.3845230814,0,2469.385434209853 -11820,14566,26495,26494,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.786234106024961,8.033981432822166,7.008022036063561,40,1,42.26053963149995,0,3,3,2019,11,0,37,37,1,0,0,9.229823979180393,9.229823979180393,0,0,0,0,14.5,1,1,0,4.132562305353806,7.140742170506964,46.95,35.43,37.03,15.93,5,1,1,0,0,12,2,4,1,704,1385516.402159362,934247.107302893,230307.3845230814,0,2469.385434209853 -11821,14567,26496,26497,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.491960022407778,7.736026754717754,7.284886685210568,9,-3,-58.08346801651552,0,2,2,2019,10,0,10,20,1,0,0,7.142379330584944,7.142379330584944,0,0,0,0,0,1,1,0,7.602134742793153,7.308320868871679,55.79,52.62,57.04,42.53,5,1,1,0,0,11,8,3,1,326,1080295.146339855,283941.3745262878,457647.2788074027,0,2963.507450887025 -11821,14567,26497,26496,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.479222405438547,6.583182026577629,9,3,98.8688535762399,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.552223179798433,57.04,42.53,55.79,52.62,6.666666666666667,1,1,0,0,6,8,3,1,326,1080295.146339855,283941.3745262878,457647.2788074027,0,2963.507450887025 -11822,14568,26498,26499,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,6.070792898129821,6.121907718373131,46,-2,69.42986481708695,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.74789380288731,6.449284669286784,57.06,57.76,55.9,52.64,8.333333333333334,1,1,0,0,7,10,3,1,412,1053394.616941588,621349.4631936119,349841.4717765484,0,3177.453692894164 -11822,14568,26499,26498,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.842096891775141,8.145930814724537,46,2,-67.02906570092163,0,-9,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.727487950904667,8.11328788781846,55.9,52.64,57.06,57.76,8.333333333333334,1,1,0,0,8,10,3,1,412,1053394.616941588,621349.4631936119,349841.4717765484,0,3177.453692894164 -11823,14569,26500,-9,26503,26504,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.5415543674959,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,1473.4,1254468.961006811,834554.0446959108,436235.8884566136,0,3542.825991030263 -11823,14569,26501,-9,26503,26504,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.700448115376,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,1473.4,1254468.961006811,834554.0446959108,436235.8884566136,0,3542.825991030263 -11823,14569,26502,-9,26503,26504,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.5736222605362,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,4,1,1473.4,1254468.961006811,834554.0446959108,436235.8884566136,0,3542.825991030263 -11823,14569,26503,26504,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.964168985264555,7.635125321973865,0,17,-2,-21.02109331990309,0,1,3,2019,11,0,31,29,1,0,0,10.1905714793513,10.1905714793513,0,0,0,0,0,1,1,0,2.655263969169028,0,51.83,57.2,52,55,1.666666666666667,1,1,0,0,8,8,4,1,1473.4,1254468.961006811,834554.0446959108,436235.8884566136,0,3542.825991030263 -11823,14569,26504,26503,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.793203166427254,8.533577815828231,0,17,2,-88.05264458181234,0,1,3,2019,9,0,60,50,1,1,0,11.9319880076563,11.9319880076563,0,0,0,0,0,1,1,0,0,0,52,55,51.83,57.2,8,1,1,0,0,1,8,4,1,1473.4,1254468.961006811,834554.0446959108,436235.8884566136,0,3542.825991030263 -11824,14570,26505,26506,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,30,28,0,0,2,3,2019,31,12,0,0,4,12,0,0,0,1,123.4595842672377,118.3691787066288,1172.438005514298,74.5,1,1,0,0,0,29.27,22.13,55.43,31.57,10,1,1,0,0,0,2,1,0,411,131298.6988765584,0,174344.2991034947,0,2326.149574433376 -11824,14570,26506,26505,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,28,-28,0,0,2,2,2019,4,1,0,34,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,55.43,31.57,29.27,22.13,8.333333333333334,1,1,1,0,3,2,1,0,411,131298.6988765584,0,174344.2991034947,0,2326.149574433376 -11825,14571,26507,26508,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.597294051367225,8.823009811785235,0,11,4,-37.88950465953936,0,2,2,2019,7,0,40,52,1,0,0,17.41926120113667,17.41926120113667,0,0,0,0,0,1,1,0,0,0,38.04,64.75,60.27,49.27,8.333333333333334,1,1,0,0,13,4,5,1,699.3333333333334,456840.8010756695,341034.9520664756,0,0,3013.697095259884 -11825,14571,26508,26507,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.944943007706688,7.766282286398575,0,11,-4,145.6113182518222,0,2,2,2019,9,2,38,22,1,2,0,7.964052568893347,7.964052568893347,0,0,0,0,0,1,1,0,0,0,60.27,49.27,38.04,64.75,8.333333333333334,1,1,0,0,13,4,5,1,699.3333333333334,456840.8010756695,341034.9520664756,0,0,3013.697095259884 -11825,14571,26509,-9,26508,26507,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.0845018625164,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,699.3333333333334,456840.8010756695,341034.9520664756,0,0,3013.697095259884 -11826,14572,26510,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.801710696624455,5.382442857500592,0,0,-934.2046695498987,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.868629129214819,5.757618215518685,62.27,42.94,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,1515,-23823.36147379974,120356.5788214046,0,0,1384.290025188126 -11827,14573,26511,26512,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.714008855103742,8.433125979933637,0,38,-4,-30.88927214753414,0,-9,-9,2019,14,2,47,47,1,2,0,12.94926605724222,12.94926605724222,0,0,0,0,0,0,0,0,0,0,48.43,47.89,62.66,39.17,8.333333333333334,1,1,0,0,12,8,5,0,631,1586500.145781344,350573.4555050486,987458.5874881204,35019.90694541889,3807.765141279482 -11827,14573,26512,26511,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.723778365600179,8.902862330456463,4.908253484956824,6,4,37.85438105311673,0,-9,-9,2019,2,0,43,46,1,0,0,10.39589303541002,10.39589303541002,0,0,0,0,0,0,0,0,0,5.209000792414792,62.66,39.17,48.43,47.89,8.333333333333334,3,4,0,0,12,8,5,0,631,1586500.145781344,350573.4555050486,987458.5874881204,35019.90694541889,3807.765141279482 -11828,14574,26513,26514,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,48,1,-3.222679175522139,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.57,57.78,56.19,5.98,8.333333333333334,1,1,0,0,0,1,2,1,467.5,545176.2553713872,365831.4782457284,137517.2868160112,0,2341.879930107931 -11828,14574,26514,26513,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.075814234596434,7.226366143016727,48,-1,-62.91018244321469,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.481213036355877,134.8951124155628,23.26963643191544,0,1,1,0,2.887448663775526,7.37618079574838,56.19,5.98,56.57,57.78,6.666666666666667,1,1,0,0,0,1,2,1,467.5,545176.2553713872,365831.4782457284,137517.2868160112,0,2341.879930107931 -11828,14575,26515,26516,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.12571990443093,8.092390413340411,0,4,0,-2.259134275868544,0,-9,-9,2019,10,0,40,40,1,0,0,8.513302305258874,8.513302305258874,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.63,51.17,8.333333333333334,1,1,0,0,11,1,5,1,641.5,89781.00227985909,155935.0911223993,232661.0359174048,182651.6996956526,2903.734911875792 -11828,14575,26516,26515,26513,26514,1,0,46,0,0,0,2,2,-9,0,3,8.312141471958379,8.3410832475821,6.419853940783612,4,0,52.70496447532972,0,3,2,2019,18,5,40,32,1,5,0,11.66997158684488,11.66997158684488,0,0,0,0,71.5,1,1,0,6.930964835904652,0,38.63,51.17,54.2,57.49,6.666666666666667,1,1,0,0,11,1,5,1,641.5,89781.00227985909,155935.0911223993,232661.0359174048,182651.6996956526,2903.734911875792 -11829,14576,26517,26519,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.277473868447967,8.472079461259877,0,4,-1,8.944684109662248,0,3,3,2019,5,0,38,42,1,0,0,13.1164393277984,13.1164393277984,0,0,0,0,0,1,1,0,5.224767760553445,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,13,13,5,1,1390.5,1822554.418707348,1210526.41997216,308021.4707991278,45989.96148081498,4498.175997729875 -11829,14576,26518,-9,26517,26519,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-907.3368435746302,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.16,58.63,-9,-9,6.666666666666667,1,1,0,0,0,13,5,1,1390.5,1822554.418707348,1210526.41997216,308021.4707991278,45989.96148081498,4498.175997729875 -11829,14576,26519,26517,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.823728096529148,8.956458626522281,0,4,1,15.35802508806924,0,2,2,2019,8,0,40,40,1,0,0,21.47697841862073,21.47697841862073,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,13,13,5,1,1390.5,1822554.418707348,1210526.41997216,308021.4707991278,45989.96148081498,4498.175997729875 -11829,14576,26520,-9,26517,26519,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.0908942133354,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,1390.5,1822554.418707348,1210526.41997216,308021.4707991278,45989.96148081498,4498.175997729875 -11829,14577,26521,-9,26517,26519,1,0,19,0,2,0,2,2,-9,0,4,6.391388618783245,6.521285218727297,0,0,0,-1112.350598411467,0,1,1,2019,27,10,20,0,1,10,1,3.917013344856087,3.917013344856087,0,0,0,0,0,1,1,0,0,0,19.77,66.82000000000001,-9,-9,5,1,1,0,0,1,13,2,1,2046,128155.4742420855,0,0,0,226.4874516191845 -11830,14578,26522,26523,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.224757669194378,8.410571938431779,0,6,-2,-12.33313982318805,0,-9,-9,2019,11,0,45,35,1,2,0,11.38478917305983,11.38478917305983,0,0,0,0,0,0,0,0,0,0,48,57,57.16,56.15,7,2,3,0,0,3,8,5,0,1376,54260.43310106199,-64846.69152168099,0,0,4571.557757554568 -11830,14578,26523,26522,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.351942019929387,8.784398314638603,0,6,2,-185.1396806383495,0,1,1,2019,6,0,41,41,1,0,0,17.63706874569453,17.63706874569453,0,0,0,0,0,0,0,0,.8575677725945785,0,57.16,56.15,48,57,8.333333333333334,2,3,0,0,10,8,5,0,1376,54260.43310106199,-64846.69152168099,0,0,4571.557757554568 -11831,14579,26524,-9,26527,26525,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.8961215950244,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1238,514985.266899018,79078.89085973211,516696.4551935219,218460.0211613121,5398.723418684711 -11831,14579,26525,26527,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.712809264333254,8.795463543211001,0,16,-1,-42.71468827573298,0,2,3,2019,10,0,46,38,1,0,0,16.29471609346085,16.29471609346085,0,0,0,0,0,0,0,0,7.579982014365125,0,38.34,62.12,35.76,57.79,8.333333333333334,1,1,0,0,11,9,5,1,1238,514985.266899018,79078.89085973211,516696.4551935219,218460.0211613121,5398.723418684711 -11831,14579,26526,-9,26527,26525,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.3183048146666,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1238,514985.266899018,79078.89085973211,516696.4551935219,218460.0211613121,5398.723418684711 -11831,14579,26527,26525,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.760123966988296,9.076867986343796,0,9,1,139.9334793129001,0,1,2,2019,12,1,60,47,1,1,0,15.69122455566613,15.69122455566613,0,0,0,0,0,0,0,0,0,0,35.76,57.79,38.34,62.12,8.333333333333334,1,1,0,0,11,9,5,1,1238,514985.266899018,79078.89085973211,516696.4551935219,218460.0211613121,5398.723418684711 -11832,14580,26528,26529,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,43,-1,-9.871556420732508,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.315965162834008,0,63.41,39.7,64.23,39.15,8.333333333333334,1,1,0,0,7,2,3,1,799.5,866764.6681247185,672606.611011026,185922.8909119357,0,3271.414714281759 -11832,14580,26529,26528,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.867893265704895,7.92735718302576,43,1,-36.94728631654166,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.203141225381148,7.69122841175755,64.23,39.15,63.41,39.7,8.333333333333334,1,1,0,0,6,2,3,1,799.5,866764.6681247185,672606.611011026,185922.8909119357,0,3271.414714281759 -11833,14581,26530,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,6.810377276354469,6.794449899384615,0,0,0,-982.5602796729116,0,2,2,2019,14,2,75,18,1,2,0,1.310998470849057,1.310998470849057,0,0,0,0,0,1,1,0,0,0,40.89,53.59,-9,-9,3.333333333333333,1,1,0,1,7,4,2,0,627,62204.69592656899,0,0,0,974.7445142359757 -11834,14582,26531,26532,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,6.321197031392247,6.902292746117323,0,9,-1,-113.1942917037075,0,3,2,2019,9,0,50,45,1,0,0,1.606924660488419,1.606924660488419,0,0,0,0,0,0,0,0,3.961313193488447,0,62.39,56.71,55.96,49.93,6.666666666666667,1,1,0,0,10,2,5,1,1324.5,812335.9257416993,841569.7675038918,232109.1564515648,60417.58283959767,3300.510959288862 -11834,14582,26532,26531,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.312018427696898,9.261455333381518,0,9,1,131.2884222066629,0,2,2,2019,6,0,42,41,1,0,0,29.01363449200186,29.01363449200186,0,0,0,0,0,0,0,0,1.645629818897695,0,55.96,49.93,62.39,56.71,8.333333333333334,1,1,0,0,10,2,5,1,1324.5,812335.9257416993,841569.7675038918,232109.1564515648,60417.58283959767,3300.510959288862 -11835,14583,26533,26536,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.096582660526098,8.395558974175668,0,9,-3,-48.97694340763056,0,1,2,2019,7,0,24,18,1,0,0,14.05111841985437,14.05111841985437,0,0,0,0,0,1,1,0,.2007045741125609,0,54.79,55.86,58.32,50.22,10,1,1,0,0,9,11,5,1,508,144342.3506701006,5444.174125005629,190912.2758390557,86885.51524705203,3702.389893955564 -11835,14583,26534,-9,26533,26536,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.6435448905938,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,508,144342.3506701006,5444.174125005629,190912.2758390557,86885.51524705203,3702.389893955564 -11835,14583,26535,-9,26533,26536,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.1343470296076,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,508,144342.3506701006,5444.174125005629,190912.2758390557,86885.51524705203,3702.389893955564 -11835,14583,26536,26533,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.782568774007927,8.71690016183169,0,9,3,-32.52347071411079,0,2,2,2019,10,0,37,39,1,0,0,19.22192593847941,19.22192593847941,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,508,144342.3506701006,5444.174125005629,190912.2758390557,86885.51524705203,3702.389893955564 -11836,14584,26537,26538,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,7.590112838280898,7.651748670223405,9,-1,-2.291857225094988,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.702466998116968,57.06,57.76,45.32,53.5,10,1,1,0,0,9,5,4,1,1278,2594227.066540397,2224801.770599474,104189.6407600933,54537.1524646433,5640.347861212445 -11836,14584,26538,26537,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.166070552876123,8.308935421082634,0,30,1,-58.82182545268051,0,3,2,2019,13,1,37,38,1,1,0,13.46549425227506,13.46549425227506,0,0,0,0,0,0,0,0,8.67821958020167,0,45.32,53.5,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,1278,2594227.066540397,2224801.770599474,104189.6407600933,54537.1524646433,5640.347861212445 -11837,14585,26539,-9,-9,-9,1,1,52,0,2,0,3,3,-9,0,3,0,0,0,0,0,-934.2369029117638,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,834,-28688.60671611622,0,0,0,1408.5162085147 -11837,14585,26540,-9,-9,26539,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.5759687962301,-9,-9,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,834,-28688.60671611622,0,0,0,1408.5162085147 -11837,14585,26541,-9,-9,26539,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.1691744769552,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,834,-28688.60671611622,0,0,0,1408.5162085147 -11838,14586,26542,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.4223475550227,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.609658942857664,0,57.33,53.46,-9,-9,10,1,1,0,0,0,13,1,1,574,202333.641218817,0,0,0,855.7026653330405 -11839,14587,26543,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.627077812935839,9.508498561341881,0,10,13,24.8359743063558,0,2,2,2019,9,0,35,35,1,0,0,50.82587512386864,50.82587512386864,0,0,0,0,0,0,0,0,5.82210747074889,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,1003,339747.0219841524,351885.6761461898,0,0,6045.426425417076 -11839,14588,26544,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.928597984133766,8.255583646575978,0,10,-13,-11.00792245121188,0,2,3,2019,10,0,40,37,1,0,0,6.773935982524038,6.773935982524038,0,0,0,0,0,0,0,0,3.227525181991664,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,6,8,5,1,399,-156348.9329953374,-28534.85025344565,0,0,1386.515634921057 -11840,14589,26545,26546,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,29,-5,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.81,28.46,50,13.57,6.666666666666667,1,1,0,0,0,6,1,0,650.5,409541.4009230878,367900.1825498473,222168.2942119787,6222.796766595132,2813.596562057432 -11840,14589,26546,26545,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,0,0,5,5,0,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,13.57,41.81,28.46,5,1,1,0,0,0,6,1,0,650.5,409541.4009230878,367900.1825498473,222168.2942119787,6222.796766595132,2813.596562057432 -11841,14590,26547,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.128161450369,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,62.26,10.99,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,929,-31174.54311422309,0,0,0,1057.440735495997 -11842,14591,26548,26549,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.527533273653715,8.479686421246205,0,1,7,-49.02414561360502,-9,-9,-9,2019,10,0,37,0,1,1,0,14.30450385636414,14.30450385636414,0,0,0,0,0,0,0,0,0,0,50,57,39.01,40.83,7,4,1,0,0,1,6,4,0,453,135085.8109925574,116684.0472703173,96206.49824964814,74246.56966647481,2683.158962025209 -11842,14591,26549,26548,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.735983507596733,8.157613100755581,0,1,-7,28.87787009225933,0,3,3,2019,19,7,41,38,1,7,0,5.486995634628649,5.486995634628649,0,0,0,0,0,0,0,0,0,0,39.01,40.83,50,57,5,1,1,0,0,6,6,4,0,453,135085.8109925574,116684.0472703173,96206.49824964814,74246.56966647481,2683.158962025209 -11843,14592,26550,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.753798314645252,8.030462558544315,0,0,0,-950.7818109251238,0,-9,2,2019,6,0,21,35,1,0,0,14.51744926029168,14.51744926029168,0,0,0,0,0,0,0,0,0,0,54.77,39.97,-9,-9,10,1,1,0,0,10,12,4,0,292,113876.2667767174,59357.45988048671,0,0,1666.021484343094 -11844,14593,26551,26552,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.17670785662205,8.447100183894474,0,4,1,21.50483736504458,-9,-9,-9,2019,9,0,50,0,1,0,0,8.285229651243773,8.285229651243773,0,0,0,0,0,0,0,0,0,0,54,53,56.23,52.63,8,1,1,0,0,1,6,5,0,908,1337051.421053959,1072106.958559935,223376.998247177,0,2778.979912290474 -11844,14593,26552,26551,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.956453027405424,7.869102204984149,0,36,-1,.4253877289624102,0,-9,-9,2019,9,0,53,58,1,0,0,7.928251860220303,7.928251860220303,0,0,0,0,0,0,0,0,0,0,56.23,52.63,54,53,8.333333333333334,1,1,0,0,9,6,5,0,908,1337051.421053959,1072106.958559935,223376.998247177,0,2778.979912290474 -11844,14594,26553,-9,26552,26551,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-912.0318854090368,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,1,0,0,6,1,0,851,87347.08330919579,0,0,0,0 -11845,14595,26554,26555,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.983251014348989,9.098329071783308,0,3,1,47.1899267400197,0,2,3,2019,14,3,50,55,1,3,0,20.43430769688142,20.43430769688142,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49,56,5,1,1,0,0,7,12,5,1,679.5,431002.1627082037,61386.23944963368,161927.8237932896,105127.6864567611,3421.824421622422 -11845,14595,26555,26554,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.836779880075856,7.950670429856711,0,3,-1,-63.09439177205216,0,-9,-9,2019,10,0,40,40,1,1,0,7.975518063261069,7.975518063261069,0,0,0,0,0,0,0,0,0,0,49,56,46.63,59.72,8,4,1,0,0,1,12,5,1,679.5,431002.1627082037,61386.23944963368,161927.8237932896,105127.6864567611,3421.824421622422 -11846,14596,26556,26557,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,3.248769372277584,3.162974190398346,57,-4,18.00514537483597,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.221397714981378,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,0,1,2,1,496.5,375742.813137934,109215.594300433,113752.9971321362,0,1706.192465564613 -11846,14596,26557,26556,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.460009761242535,6.754876384315398,57,4,-53.62880577511998,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.73091607660028,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,496.5,375742.813137934,109215.594300433,113752.9971321362,0,1706.192465564613 -11847,14597,26558,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.249419468380086,8.259989529812964,0,0,0,-966.1117944533289,0,2,2,2019,4,0,50,45,1,0,0,8.474078523970466,8.474078523970466,0,0,0,0,0,0,0,0,0,0,56.38,53.73,-9,-9,8.333333333333334,2,3,0,0,7,5,4,0,143,7662.893788339014,-24971.77008352749,0,0,1339.993721618223 -11848,14598,26559,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.348931922921238,8.325607486564849,0,17,9,-64.32092061594123,0,2,2,2019,18,6,36,44,1,6,0,15.83713944489715,15.83713944489715,0,0,0,0,0,0,0,0,0,0,35.89,63.21,57.76,48.98,8.333333333333334,1,1,0,0,11,8,5,1,538,290041.7832756385,0,201585.6405482127,107258.6097306372,1981.849016237548 -11848,14599,26560,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.150571262398255,9.417327737765957,0,17,0,44.39635201700699,0,2,3,2019,12,0,35,35,1,0,0,34.40307304426748,34.40307304426748,0,0,0,0,0,0,0,0,0,0,57.76,48.98,35.89,63.21,6.666666666666667,1,1,0,0,7,8,5,1,1973,223796.0443150441,86007.11897034982,298718.8072870754,163581.2783830705,3162.680287314748 -11849,14600,26561,26562,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.483160533458651,8.566143314242685,0,40,0,135.1369207430744,0,-9,3,2019,6,0,50,50,1,0,0,10.37725239090531,10.37725239090531,0,0,0,0,0,1,1,0,0,0,60.52,53.2,47.87,46.68,8.333333333333334,1,1,0,0,11,9,4,1,3136.5,2060086.615737191,1752923.693594855,188094.1507369163,0,2282.903930337211 -11849,14600,26562,26561,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,40,0,-156.9730670648069,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.87,46.68,60.52,53.2,8.333333333333334,1,1,0,0,0,9,4,1,3136.5,2060086.615737191,1752923.693594855,188094.1507369163,0,2282.903930337211 -11850,14601,26563,26565,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.851159242524666,8.445854745707301,6.305359372221801,19,-4,72.25497964925852,-9,1,1,2019,14,2,42,0,1,2,0,13.8424185993274,13.8424185993274,0,0,0,0,0,1,1,0,6.5861946922986,0,55.09,55.87,58.47,50.22,8.333333333333334,1,1,0,0,12,2,4,0,1288.75,305266.3487420541,27190.28517835213,240223.1152612073,104739.3449431074,4622.267320609843 -11850,14601,26564,-9,26563,26565,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.8574274705037,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,1288.75,305266.3487420541,27190.28517835213,240223.1152612073,104739.3449431074,4622.267320609843 -11850,14601,26565,26563,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.320321151157403,8.371951692797023,0,17,4,-38.89529304531609,0,2,2,2019,7,0,42,58,1,0,0,9.952150534582113,9.952150534582113,0,0,0,.7143729353527082,0,1,1,0,0,0,58.47,50.22,55.09,55.87,6.666666666666667,1,1,0,0,12,2,4,0,1288.75,305266.3487420541,27190.28517835213,240223.1152612073,104739.3449431074,4622.267320609843 -11850,14601,26566,-9,26563,26565,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1070.248176132695,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,0,1288.75,305266.3487420541,27190.28517835213,240223.1152612073,104739.3449431074,4622.267320609843 -11851,14602,26567,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.075135781352195,9.06997263080534,0,0,0,-935.0242514217626,0,2,3,2019,11,0,50,45,1,2,0,14.35588604574262,14.35588604574262,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,7,2,3,0,1,6,8,5,0,645,27612.72085972165,-13583.13668122443,320996.1330718503,86298.23156301805,2567.963682927875 -11852,14603,26568,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-892.9704699362494,0,2,3,2019,9,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,13,4,1,1,220,276343.1476108608,0,92080.0461925329,46932.35637666479,-561.2594019580876 -11853,14604,26569,-9,26570,26571,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.1062294036651,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,450.75,282847.6843724919,212272.7965076136,115339.5917788279,16907.87195495166,3031.649711617786 -11853,14604,26570,26571,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.868828266174865,8.005481561007585,0,6,-1,-123.5006427013521,0,2,2,2019,10,0,25,24,1,0,0,13.47560883675533,13.47560883675533,0,0,0,0,0,1,1,0,1.928323444894505,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,450.75,282847.6843724919,212272.7965076136,115339.5917788279,16907.87195495166,3031.649711617786 -11853,14604,26571,26570,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.663857893559204,8.314054229046331,0,6,1,100.6474922344354,0,1,2,2019,8,0,37,37,1,0,0,17.89835601954093,17.89835601954093,0,0,0,0,0,1,1,0,3.457070232318423,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,450.75,282847.6843724919,212272.7965076136,115339.5917788279,16907.87195495166,3031.649711617786 -11853,14604,26572,-9,26570,26571,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.053256203174,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,450.75,282847.6843724919,212272.7965076136,115339.5917788279,16907.87195495166,3031.649711617786 -11854,14605,26573,26574,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.763050149169525,7.093583528325991,0,29,-3,9.517531050093151,0,3,3,2019,13,1,10,18,1,1,0,12.28881216591866,12.28881216591866,0,0,0,0,0,0,0,0,3.62496007149109,0,34.21,51.94,35.18,43.16,5,1,1,0,0,9,11,4,1,812.5,647962.6100817149,430879.8632221299,134394.9116361145,0,2256.19058297047 -11854,14605,26574,26573,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.28581182554975,8.158530749589843,0,29,3,-42.2696575141529,0,2,2,2019,11,0,64,50,1,0,0,7.507759277206128,7.507759277206128,0,0,0,0,0,0,0,0,3.7597515483205,0,35.18,43.16,34.21,51.94,6.666666666666667,1,1,0,0,8,11,4,1,812.5,647962.6100817149,430879.8632221299,134394.9116361145,0,2256.19058297047 -11854,14606,26575,-9,26573,26574,1,0,23,0,0,0,1,1,-9,0,4,4.402103161114334,4.711134989677024,0,0,0,-899.482446466717,0,2,2,2019,21,9,7,10,1,9,1,1.472402104118176,1.472402104118176,0,0,0,0,2,0,0,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,625,-63038.98273962202,0,0,0,159.9453057485742 -11855,14607,26576,26577,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.391183272728291,8.541000705145045,0,4,0,-1.740715267649405,0,2,2,2019,12,0,43,37,1,0,0,11.99421597889176,11.99421597889176,0,0,0,0,0,0,0,0,2.90401229963834,0,39.27,60.24,51.14,60.45,6.666666666666667,1,1,0,0,8,11,5,1,944,434997.5820985656,214175.8862176363,171562.2035133488,0,3296.423749071451 -11855,14607,26577,26576,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,8.22256439010865,8.165910703464204,0,4,9,-37.31328093190085,0,3,3,2019,7,0,39,39,1,0,0,10.46914223989592,10.46914223989592,0,0,0,0,0,0,0,0,2.194235902846403,0,51.14,60.45,39.27,60.24,8.333333333333334,1,1,0,0,8,11,5,1,944,434997.5820985656,214175.8862176363,171562.2035133488,0,3296.423749071451 -11856,14608,26578,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,6.438747122536522,6.235243173045515,0,0,-952.1092189520984,0,3,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,6.246407008501185,0,38,25,-9,-9,1.666666666666667,1,1,0,1,0,7,2,0,409,18850.81708553286,139264.1345830935,0,0,814.6278739965885 -11856,14609,26579,-9,26578,-9,1,0,18,0,0,0,2,2,-9,0,5,7.135958479946852,7.074686819723785,0,0,0,-1026.993112015187,0,3,-9,2019,20,7,20,0,1,7,1,9.778299817282804,9.778299817282804,0,0,0,0,2,1,1,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,464,144093.2447366565,0,0,0,582.0382180834403 -11857,14610,26580,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.911185847459622,7.950332126025267,0,0,0,-886.7361698135464,0,-9,-9,2019,11,0,43,38,1,0,0,8.093363816991525,8.093363816991525,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,253,57736.5673039236,31241.97312324281,0,0,1375.591845912701 -11858,14611,26581,26582,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.07318354317162,4.565364784883878,8,5,31.28565101781901,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,16.437151042529,0,0,1,1,0,4.619983865099133,5.127314318166605,56.09,36.7,45.24,42.8,6.666666666666667,1,1,0,0,1,8,2,0,880.5,483602.112757098,89902.43616974953,573121.8302311525,0,1557.128991126589 -11858,14611,26582,26581,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,8,-5,-157.5660586199872,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,0,0,45.24,42.8,56.09,36.7,1.666666666666667,1,1,0,0,1,8,2,0,880.5,483602.112757098,89902.43616974953,573121.8302311525,0,1557.128991126589 -11859,14612,26583,26584,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,6.05258634012306,5.746433863837169,0,32,-3,-27.20096263796362,0,3,2,2019,12,0,8,8,1,0,0,6.156170890883674,6.156170890883674,0,0,0,0,71.5,1,1,0,0,0,46.32,35.27,57.33,53.46,5,1,1,0,0,11,6,4,1,379,299362.613754184,69163.07524039457,285590.6051992218,9007.806547489936,3213.198341088908 -11859,14612,26584,26583,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.721994292081838,8.846687190183532,5.569554981586607,33,3,23.34397709064504,0,2,-9,2019,6,0,44,44,1,0,0,13.30236251000531,13.30236251000531,0,0,0,0,2,1,1,0,6.129714340903989,5.886163658594522,57.33,53.46,46.32,35.27,8.333333333333334,1,1,0,0,10,6,4,1,379,299362.613754184,69163.07524039457,285590.6051992218,9007.806547489936,3213.198341088908 -11859,14613,26585,-9,26583,26584,1,1,23,0,0,0,2,2,-9,0,3,7.752786138842892,7.706529072188716,0,0,0,-1078.611470363656,0,2,2,2019,12,0,47,44,1,0,1,4.804418553293258,4.804418553293258,0,0,0,0,2,1,1,0,0,0,37.97,47.27,-9,-9,5,1,1,0,0,3,6,3,1,892,98846.65515122451,0,0,0,518.1503367368153 -11860,14614,26586,26588,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,9.811483325462865,9.588606174250392,0,6,-3,-6.527935171545618,0,2,3,2019,6,0,50,60,1,0,0,33.40592318987072,33.40592318987072,0,0,0,0,0,0,0,0,3.901911392441686,0,54.2,57.49,60.02,56.42,8.333333333333334,1,1,0,0,7,9,5,1,951.3333333333334,1009405.876144304,484069.7723762114,485264.9107444223,91114.57518224505,6282.449925953348 -11860,14614,26587,-9,26586,26588,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-884.636742175404,1,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.205766469393555,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,951.3333333333334,1009405.876144304,484069.7723762114,485264.9107444223,91114.57518224505,6282.449925953348 -11860,14614,26588,26586,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,6.577324148039885,6.554339972919345,0,6,3,-40.88177595660623,0,3,3,2019,11,0,30,30,1,0,0,3.588962422022348,3.588962422022348,0,0,0,0,0,0,0,0,3.838376412172379,0,60.02,56.42,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,951.3333333333334,1009405.876144304,484069.7723762114,485264.9107444223,91114.57518224505,6282.449925953348 -11861,14615,26589,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.395059420049053,6.245056388082854,0,0,-924.5605960851791,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.161393648560478,53,47,-9,-9,7,1,1,0,0,0,11,2,1,1267,154026.9846860887,77675.65059452251,115064.4502157549,0,762.1149478349507 -11862,14616,26590,26591,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,7.486169527313879,7.320221374379334,0,2,1,23.02442634319023,0,3,2,2019,8,0,40,50,1,0,0,5.992612900995435,5.992612900995435,0,0,0,0,0,1,1,0,6.121728156795168,0,50.44,48.16,56.11,44.4,8.333333333333334,1,1,0,0,6,11,4,1,1519.5,287530.4568560286,262666.4616130128,201788.9028983295,100855.9643946765,3067.277360357445 -11862,14616,26591,26590,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.840550134070591,8.089832665081317,0,2,-1,-31.51734871082627,0,3,2,2019,11,1,60,70,1,1,0,5.152711291140105,5.152711291140105,0,0,0,0,0,1,1,0,0,0,56.11,44.4,50.44,48.16,8.333333333333334,1,1,0,0,9,11,4,1,1519.5,287530.4568560286,262666.4616130128,201788.9028983295,100855.9643946765,3067.277360357445 -11862,14617,26592,-9,26590,26591,1,1,23,0,0,0,2,2,-9,0,5,7.686254874086606,8.041856114195014,4.629020874923534,0,0,-888.4560395989233,0,3,2,2019,6,0,60,70,1,0,1,4.166099394375727,4.166099394375727,0,0,0,0,0,1,1,0,5.224894778111896,4.902770277866066,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,722,-68383.33133248588,0,0,0,1161.513725828103 -11862,14618,26593,-9,26590,26591,1,1,20,0,0,0,2,2,-9,0,5,7.475699030570388,7.207934689926438,0,0,0,-905.9630840016599,0,3,2,2019,6,0,60,70,1,0,1,3.763678954748203,3.763678954748203,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,116,-22455.7042279809,0,0,0,437.4386886986526 -11863,14619,26594,26595,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.118602173790224,8.025929079064701,0,9,-1,99.00115217053205,0,2,3,2019,6,0,44,42,1,0,0,9.112800366803979,9.112800366803979,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.37,54.8,8.333333333333334,1,1,0,0,10,13,3,1,833.5,-77892.51879995863,48935.61593730107,0,0,1204.366293432395 -11863,14619,26595,26594,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,6.640155318862739,6.501608017104151,0,9,1,-137.0881255230769,0,3,3,2019,8,0,10,10,1,0,0,9.632716670171787,9.632716670171787,0,0,0,0,0,0,0,0,0,0,54.37,54.8,59.43,58.05,8.333333333333334,1,1,0,0,10,13,3,1,833.5,-77892.51879995863,48935.61593730107,0,0,1204.366293432395 -11864,14620,26596,26597,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.362330469158493,7.246036803601134,59,1,-118.7560014922316,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.765675462251331,7.289869503287933,58.29,37.01,53,45,8.333333333333334,1,1,0,0,0,2,2,1,2237,384797.638648952,238702.9216571759,114033.9759169233,0,1584.932668259072 -11864,14620,26597,26596,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,4,-1,-41.59979140594666,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.713600426277668,0,53,45,58.29,37.01,8,1,1,0,0,0,2,2,1,2237,384797.638648952,238702.9216571759,114033.9759169233,0,1584.932668259072 -11865,14621,26598,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,6.271405230771272,6.073370051967491,0,0,-969.9348321373551,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.338541873810326,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,491,1832777.703137114,864207.0555283094,651789.1517013777,0,447.4916780720533 -11866,14622,26599,-9,-9,-9,1,0,66,0,2,0,3,3,-9,0,3,0,5.9603641887306,6.275478705027895,0,0,-894.4411996763857,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,1.488849084313018,5.842146593977944,35.26,59.77,-9,-9,5,1,1,0,0,7,7,2,1,1053,211982.6834760449,196531.8961030023,0,0,905.964581226159 -11867,14623,26600,26601,-9,26602,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,2,4,0,0,-9,3,2019,10,0,0,45,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.14,38.88,52,55,5,1,1,1,0,9,13,1,1,795,330705.5014749399,0,286969.4496700627,0,598.231986383516 -11867,14623,26601,26600,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,0,0,0,2,-4,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,60.14,38.88,8,4,1,0,0,0,13,1,1,795,330705.5014749399,0,286969.4496700627,0,598.231986383516 -11867,14624,26602,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,8.223551319035089,7.708402735077356,0,0,-1046.23839580434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.409259407573328,7.714553277213553,45.44,29.14,-9,-9,10,1,1,0,0,0,13,4,1,270,502835.535264214,252922.2394681725,163259.9218640777,0,2143.265323187615 -11868,14625,26603,-9,26604,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.329416298192,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,1073.333333333333,21455.39664260478,0,0,0,2408.730720090074 -11868,14625,26604,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,2,0,0,0,0,0,-921.2407344834891,0,2,3,2019,14,2,0,38,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,32.16,-9,-9,1.666666666666667,1,1,0,0,10,2,1,1,1073.333333333333,21455.39664260478,0,0,0,2408.730720090074 -11868,14625,26605,-9,26604,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.814186781006,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,1073.333333333333,21455.39664260478,0,0,0,2408.730720090074 -11869,14626,26606,26608,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.629001085527939,7.590685576972393,0,19,5,1.59397450400805,0,2,2,2019,9,1,18,18,1,1,0,12.42790569097779,12.42790569097779,0,0,0,0,0,0,0,0,7.087359586666366,0,54.2,57.49,22.89,60.29,8.333333333333334,1,1,0,0,1,9,5,1,1307.333333333333,329763.1941666409,29592.11336296536,484613.4067220791,272854.1116400333,4405.368457790101 -11869,14626,26607,-9,26606,26608,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.53096298946,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1307.333333333333,329763.1941666409,29592.11336296536,484613.4067220791,272854.1116400333,4405.368457790101 -11869,14626,26608,26606,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.203178143297752,9.14594319731339,0,19,-5,-75.70880654475066,0,2,2,2019,24,12,50,45,1,12,0,22.95248220600968,22.95248220600968,0,0,0,0,0,0,0,0,3.881044716068051,0,22.89,60.29,54.2,57.49,3.333333333333333,1,1,0,0,7,9,5,1,1307.333333333333,329763.1941666409,29592.11336296536,484613.4067220791,272854.1116400333,4405.368457790101 -11870,14627,26609,26610,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,8.138404260018129,7.881950531177795,49,3,-10.81084721351376,0,2,1,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,8.208784862768571,41.46,55.58,57.06,57.76,5,1,1,0,0,4,6,4,1,715,939688.0195076973,529413.3529856065,167985.7964739271,0,2947.851449218488 -11870,14627,26610,26609,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.169216642740368,6.998100176639604,49,-3,-18.26510693175893,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.317882764311446,57.06,57.76,41.46,55.58,8.333333333333334,1,1,0,0,11,6,4,1,715,939688.0195076973,529413.3529856065,167985.7964739271,0,2947.851449218488 -11871,14628,26611,26612,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,7.069020469195847,7.3975342504629,4.261159202181056,35,-7,4.845077981238458,0,2,3,2019,9,0,27,27,1,0,0,6.22320500074777,6.22320500074777,0,0,0,0,0,1,1,0,0,4.23948457212099,46.9,56.66,57.16,56.15,5,1,1,0,0,9,9,5,0,359,1694470.934689105,1063840.290781548,382940.6259407056,-262.7151040710296,4606.679593828865 -11871,14628,26612,26611,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.747035962967809,8.747264037809668,6.717202625325265,35,7,-38.93930962679678,0,3,3,2019,7,0,27,35,1,0,0,28.6333578882981,28.6333578882981,0,0,0,0,0,1,1,0,3.576260930455441,6.956086253915519,57.16,56.15,46.9,56.66,8.333333333333334,1,1,0,0,9,9,5,0,359,1694470.934689105,1063840.290781548,382940.6259407056,-262.7151040710296,4606.679593828865 -11872,14629,26613,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.338436778322761,8.826017100972809,8.247380576649814,0,0,-1003.753151341089,0,3,3,2019,12,1,40,45,1,1,0,9.81434665136433,9.81434665136433,0,0,0,0,0,1,1,0,8.700006935453064,0,50.51,23.31,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,421.5,647681.8652344982,557177.4878283977,105512.7834719293,0,5140.12858516248 -11872,14629,26614,-9,26613,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-984.4497337072237,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,57.22,-9,-9,10,1,1,0,0,0,10,4,0,421.5,647681.8652344982,557177.4878283977,105512.7834719293,0,5140.12858516248 -11872,14630,26615,-9,26613,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-844.8834710059516,-9,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.81,52.29,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,2719,8115.444999268458,0,0,0,0 -11873,14631,26616,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.747627463929,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,-9,-9,5,1,1,0,0,0,6,1,0,195,-62666.98587901842,0,0,0,1517.208169797909 -11874,14632,26617,26618,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.234116425770859,8.468740584575977,0,25,7,25.32572104650125,0,2,2,2019,15,3,35,35,1,3,0,14.2313343219036,14.2313343219036,0,0,0,0,0,0,0,0,0,0,61.86,35.07,45.68,47.26,10,2,3,0,0,10,8,4,0,432.5,1467872.917842947,514252.3885369869,670532.1983224757,0,2067.818718409358 -11874,14632,26618,26617,-9,-9,1,0,46,0,0,0,3,3,-9,0,5,7.526192228725171,7.400583509403903,0,25,-7,2.535465722522562,0,2,2,2019,9,2,32,24,1,2,0,6.405060724759648,6.405060724759648,0,0,0,0,0,0,0,0,0,0,45.68,47.26,61.86,35.07,10,2,3,0,0,9,8,4,0,432.5,1467872.917842947,514252.3885369869,670532.1983224757,0,2067.818718409358 -11875,14633,26619,26620,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.980400782124148,10.17258821519505,0,32,5,19.92512676390521,0,2,2,2019,7,0,44,40,1,0,0,56.21782828566374,56.21782828566374,0,0,0,0,0,1,0,1,9.414071661463671,0,53.78,56.44,57.06,57.76,3.333333333333333,1,1,0,0,10,6,5,1,295.5,3440534.59308158,2553958.036597799,814694.4994642723,479426.2085461784,16100.36562011553 -11875,14633,26620,26619,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,7.767180704359203,7.674350796452678,0,32,-5,44.85469549443741,0,2,2,2019,7,0,24,24,1,0,0,9.502896882967811,9.502896882967811,0,0,0,0,14.5,1,0,1,7.169758141872522,0,57.06,57.76,53.78,56.44,10,1,1,0,0,12,6,5,1,295.5,3440534.59308158,2553958.036597799,814694.4994642723,479426.2085461784,16100.36562011553 -11875,14634,26621,-9,26620,26619,1,1,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-911.5705908915201,0,1,1,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,892,-40106.50085544005,0,0,0,604.4895835996779 -11875,14635,26622,-9,26620,26619,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-896.7599999505242,1,1,1,2019,5,0,0,25,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,999,-121674.9086983213,0,0,0,-255.8408947142129 -11875,14636,26623,-9,26620,26619,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1053.487483690422,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1237,-145836.1358587204,0,0,0,0 -11876,14637,26624,26625,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,8,-3,-105.4979262108183,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.38,36.78,61.26,51.57,8.333333333333334,1,1,0,0,0,11,3,1,452.5,1643782.269946785,356354.254917136,237033.5079340997,0,2229.959089937906 -11876,14637,26625,26624,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.961203377817563,7.410370726125891,8,3,-43.17604279053176,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.517461781478767,7.983106741323073,61.26,51.57,53.38,36.78,8.333333333333334,1,1,0,0,4,11,3,1,452.5,1643782.269946785,356354.254917136,237033.5079340997,0,2229.959089937906 -11877,14638,26626,26627,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.813686380347024,7.704755995732326,0,39,-5,-30.88736482340133,0,3,3,2019,7,0,18,19,1,0,0,10.305094303945,10.305094303945,0,0,0,0,0,0,0,0,3.980780134104191,0,44.02,60.7,42.11,41.98,8.333333333333334,1,1,0,0,9,8,4,0,703.5,680981.6121176304,409038.2472589529,271614.9712846177,79183.707910283,2436.552692758912 -11877,14638,26627,26626,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.453243578416952,8.274746306863564,0,39,5,-20.9920192843823,0,3,2,2019,12,0,40,40,1,0,0,10.33041609031697,10.33041609031697,0,0,0,0,0,0,0,0,0,0,42.11,41.98,44.02,60.7,3.333333333333333,1,1,0,0,6,8,4,0,703.5,680981.6121176304,409038.2472589529,271614.9712846177,79183.707910283,2436.552692758912 -11877,14639,26628,-9,26626,26627,1,1,27,0,0,0,2,2,-9,0,4,7.643812453036104,7.954851294102042,0,0,0,-955.0249718191048,0,2,2,2019,10,0,50,30,1,0,1,6.881922477249813,6.881922477249813,0,0,0,0,0,0,0,0,0,0,50.04,40.86,-9,-9,6.666666666666667,1,1,0,0,8,8,3,0,582,-34019.74147001672,0,0,0,585.5388237212375 -11878,14640,26629,26630,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.823929745831885,8.818123443017798,0,5,12,10.62926253626942,0,-9,-9,2019,7,0,9,38,1,0,0,76.00094658576344,76.00094658576344,0,0,0,0,0,0,0,0,2.27318095368511,0,57.06,57.76,51.73,58.82,10,1,1,0,0,8,5,5,1,453.5,497265.6856358382,640477.0550441688,0,0,3645.707445035443 -11878,14640,26630,26629,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,7.867624179946652,7.802719157645879,0,5,-12,16.0508363772404,0,2,2,2019,8,0,43,43,1,0,0,8.643385076135743,8.643385076135743,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,453.5,497265.6856358382,640477.0550441688,0,0,3645.707445035443 -11879,14641,26631,26632,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.879106375091831,8.030801173297203,0,2,6,19.49279500817121,0,2,2,2019,9,1,40,40,1,1,0,8.871700130202363,8.871700130202363,0,0,0,0,0,0,0,0,0,0,49.04,55.86,53.02,52.73,8.333333333333334,1,1,0,0,6,2,4,0,291.5,177620.5636791523,-5468.188325922236,94976.01946526495,122852.3223283163,2598.46065242317 -11879,14641,26632,26631,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.146142778686819,7.861429085805962,0,2,-6,18.97721149209563,0,-9,-9,2019,9,0,48,48,1,0,0,7.317506946085378,7.317506946085378,0,0,0,1.865346017430337,0,0,0,0,0,0,53.02,52.73,49.04,55.86,8.333333333333334,1,1,0,0,1,2,4,0,291.5,177620.5636791523,-5468.188325922236,94976.01946526495,122852.3223283163,2598.46065242317 -11880,14642,26633,26634,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,25,14,61.2640808976882,0,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,51.14,23.94,1.666666666666667,1,1,0,1,11,9,4,1,1587.5,308738.908042385,7361.840445264534,194235.2387716201,0,2189.516867008932 -11880,14642,26634,26633,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,7.93965258850777,8.400245307048801,7.448821726818895,25,-14,54.22596563141313,0,3,2,2019,17,5,30,30,1,5,0,11.10948973469368,11.10948973469368,0,0,0,0,0,0,0,0,0,7.28763497411588,51.14,23.94,41.47,58.08,8.333333333333334,1,1,0,0,11,9,4,1,1587.5,308738.908042385,7361.840445264534,194235.2387716201,0,2189.516867008932 -11880,14643,26635,-9,26634,26633,1,1,22,0,0,0,2,2,-9,0,5,7.475275064913419,7.834524163963842,0,0,0,-913.449499474644,-9,2,2,2019,7,1,35,0,1,1,1,7.120320356213629,7.120320356213629,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,212,52852.9635606465,-40371.57966349487,0,0,-27.62326393284559 -11881,14644,26636,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.392705438066649,8.452779051267457,0,0,-973.9364407987657,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.267397494861501,8.460490843497167,53,47,-9,-9,7,2,3,0,0,5,8,4,1,429,1663765.737048899,782220.0676315436,673393.1482679136,0,3665.579321442175 -11882,14645,26637,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.073870199569258,7.280144639933017,0,0,-1037.500174101669,-9,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.225863322494733,7.500287450428843,53,52,-9,-9,10,1,1,0,0,0,11,3,1,338,449702.1648083003,230511.4590909314,151934.6515166839,0,1801.165595580858 -11883,14646,26638,26639,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,18,-1,-123.0522589675296,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,46.43,36.16,45.46,6.666666666666667,2,3,0,0,0,5,2,1,1726,79853.02142948854,22215.35463209613,95228.41790679045,17784.16024793545,1715.944018357574 -11883,14646,26639,26638,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.615592939396229,7.368357225253257,0,18,1,-84.15363778477119,0,3,2,2019,10,2,30,30,1,2,0,7.581014675635049,7.581014675635049,0,0,0,0,0,1,1,0,0,0,36.16,45.46,48.6,46.43,8.333333333333334,2,3,0,0,10,5,2,1,1726,79853.02142948854,22215.35463209613,95228.41790679045,17784.16024793545,1715.944018357574 -11883,14646,26640,-9,26638,26639,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.85340949219,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,1,1726,79853.02142948854,22215.35463209613,95228.41790679045,17784.16024793545,1715.944018357574 -11883,14646,26641,-9,26638,26639,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.9115379840988,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,1726,79853.02142948854,22215.35463209613,95228.41790679045,17784.16024793545,1715.944018357574 -11883,14646,26642,-9,26638,26639,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1030.200532666732,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,1,1726,79853.02142948854,22215.35463209613,95228.41790679045,17784.16024793545,1715.944018357574 -11884,14647,26643,-9,26646,26645,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.408005209389,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,581.25,248962.4524416584,46999.25710998642,194695.7941309724,121967.7321818429,5292.142598353741 -11884,14647,26644,-9,26646,26645,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-866.8486130135557,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,581.25,248962.4524416584,46999.25710998642,194695.7941309724,121967.7321818429,5292.142598353741 -11884,14647,26645,26646,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,9.265214508389953,9.34173170515678,0,5,4,42.62192201942016,0,-9,-9,2019,5,0,50,50,1,0,0,31.85783691910565,31.85783691910565,0,0,0,0,0,1,1,0,0,0,50.03,52.62,55.19,51.55,8.333333333333334,1,1,0,0,11,13,5,1,581.25,248962.4524416584,46999.25710998642,194695.7941309724,121967.7321818429,5292.142598353741 -11884,14647,26646,26645,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.04026136655375,7.900134280415462,0,5,-4,1.355952517565106,0,3,3,2019,11,1,22,39,1,1,0,14.6346635060568,14.6346635060568,0,0,0,0,0,1,1,0,0,0,55.19,51.55,50.03,52.62,8.333333333333334,1,1,0,0,10,13,5,1,581.25,248962.4524416584,46999.25710998642,194695.7941309724,121967.7321818429,5292.142598353741 -11885,14648,26647,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.27093379324775,8.225684720260588,0,0,0,-1051.694567744618,0,2,1,2019,3,0,75,70,1,0,0,5.84126864136684,5.84126864136684,0,0,0,0,0,0,0,0,0,0,54.45,56.22,-9,-9,5,1,1,0,0,10,9,4,1,626,109469.0676018513,74059.7914960209,0,0,1700.691404464353 -11886,14649,26648,26649,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,6.180283398042537,6.162357317599117,33,11,99.50713289891016,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,0,1.766013413958986,0,7,1,1,0,0,6.185228562999993,40.48,33.77,52.88,15.57,3.333333333333333,1,1,0,0,0,5,2,1,743,185158.9111964669,-35891.03786229879,263473.0444154775,0,972.0332157449035 -11886,14649,26649,26648,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,33,-11,-71.518274381957,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,3.014044202817147,2.442252196945315,20.76826982817843,5.48,1,1,0,0,0,52.88,15.57,40.48,33.77,3.333333333333333,1,1,0,0,0,5,2,1,743,185158.9111964669,-35891.03786229879,263473.0444154775,0,972.0332157449035 -11887,14650,26650,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.708550813198,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,41.97,-9,-9,10,1,1,0,0,11,12,1,0,477,94984.77305424682,0,0,0,1239.140398610055 -11887,14651,26651,-9,-9,-9,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-965.5179216939405,-9,-9,-9,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,6,12,1,0,2781,0,0,0,0,0 -11888,14652,26652,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.6772452546498,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,13.58102581277746,0,0,1,1,0,0,0,27.99,38.91,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,623,71050.95536316789,0,125826.6791879289,54075.91474929018,1904.762781538911 -11888,14653,26653,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-965.3624420030734,-9,-9,-9,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,41.13,58.45,-9,-9,5,1,1,0,0,2,13,1,0,360,97085.32313752038,0,0,0,0 -11889,14654,26654,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.528248789673182,6.57458838122868,0,0,-1041.010185374055,0,2,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.690878989504903,56.79,22.53,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1500,327629.9504511229,181320.6492633258,61890.51375737862,0,338.6354764033604 -11889,14655,26655,-9,26654,-9,1,0,43,0,0,0,2,2,-9,0,4,8.64950083502851,8.645238777700653,0,0,0,-1081.009023848907,0,3,-9,2019,11,0,39,40,1,0,0,14.51566564763226,14.51566564763226,0,0,0,0,0,1,1,0,4.576727524155223,0,56.35,51,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,841,42676.37805193911,-52677.75815474891,201218.4553969953,90623.64704447897,1937.123314291862 -11890,14656,26656,26657,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.682738652563445,7.665509986986878,0,7,0,-.8050166110366366,0,-9,-9,2019,8,0,20,19,1,0,0,13.02907738786852,13.02907738786852,0,0,0,0,0,0,0,0,.3653904819954739,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,5,6,3,1,884,410559.8650141271,52955.2281132121,201037.3292486788,10723.72686137902,1711.095160726714 -11890,14656,26657,26656,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.115773644437015,7.26062746139156,34,0,11.92223195277009,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.17416990633942,7.259412400948826,55.96,49.93,57.16,56.15,10,1,1,0,0,0,6,3,1,884,410559.8650141271,52955.2281132121,201037.3292486788,10723.72686137902,1711.095160726714 -11891,14657,26658,26659,-9,-9,1,1,63,0,0,0,2,2,-9,1,3,0,0,0,40,6,-158.0270700250331,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,3,4,0,0,6,8,2,0,526,417831.0871197673,97842.28037066894,191273.5142704005,0,1036.576349317036 -11891,14657,26659,26658,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.98603301824236,7.065199884880827,0,40,-6,-19.9268567566066,0,3,2,2019,11,0,57,0,1,2,0,2.225827186253145,2.225827186253145,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,3,4,0,0,6,8,2,0,526,417831.0871197673,97842.28037066894,191273.5142704005,0,1036.576349317036 -11892,14658,26660,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.6878847719631,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,19.71623254020441,0,0,1,1,0,0,0,34.37,25,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,228,291931.1610293908,0,0,0,1231.589003247888 -11893,14659,26661,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-853.2629657501741,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,12.08,36.93,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,664,-133049.4213134121,0,0,0,769.5198727795332 -11894,14660,26662,26663,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.565404191505673,8.382519918056552,0,2,1,-58.8542081092634,0,-9,-9,2019,10,0,37,40,1,1,0,16.87961367702897,16.87961367702897,0,0,0,0,0,0,0,0,3.876453513018664,0,49,58,57.06,57.76,7,1,1,0,0,1,12,5,1,683,6602.228603243836,23466.08540531256,241997.1473421474,241515.829365247,2970.940967449161 -11894,14660,26663,26662,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.346774342517765,8.134912304142455,0,2,-1,-34.18478885557103,0,2,3,2019,7,0,37,38,1,0,0,9.057608023123883,9.057608023123883,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49,58,10,1,1,0,0,5,12,5,1,683,6602.228603243836,23466.08540531256,241997.1473421474,241515.829365247,2970.940967449161 -11895,14661,26664,26665,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.197634311602751,6.970800992799188,43,5,-68.98470360392291,0,-9,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1.654266975198716,7.337792435259439,55.22,46.37,60.02,56.42,10,1,1,0,0,7,2,3,1,1670.5,1757688.863510238,882117.178023215,379904.840737114,0,1189.415908701467 -11895,14661,26665,26664,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,6.667248586601982,6.679356638516685,43,-5,52.74642836807175,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.30128749972899,6.495422930450747,60.02,56.42,55.22,46.37,8.333333333333334,1,1,0,0,7,2,3,1,1670.5,1757688.863510238,882117.178023215,379904.840737114,0,1189.415908701467 -11896,14662,26666,26668,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,8.455008462693087,8.579599090106337,0,10,6,73.82857401751296,0,-9,-9,2019,6,0,39,8,1,0,0,11.97375461781145,11.97375461781145,0,0,0,0,0,1,1,0,0,0,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,12,6,4,1,438.2,11102.80713022524,10520.25958269857,203448.8772541811,131837.6344112227,3038.899298269711 -11896,14662,26667,-9,26668,26666,1,1,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1024.239054537497,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,-9,-9,8.333333333333334,4,2,0,0,0,6,4,1,438.2,11102.80713022524,10520.25958269857,203448.8772541811,131837.6344112227,3038.899298269711 -11896,14662,26668,26666,-9,-9,1,0,38,1,3,0,2,2,-9,0,5,8.162075412502773,8.149495144277298,0,20,-6,-67.0049399175458,0,3,2,2019,10,0,20,44,1,0,0,23.76036470913064,23.76036470913064,0,0,0,0,0,1,1,0,0,0,59.43,58.05,54.2,57.49,8.333333333333334,3,4,0,0,11,6,4,1,438.2,11102.80713022524,10520.25958269857,203448.8772541811,131837.6344112227,3038.899298269711 -11896,14662,26669,-9,26668,26666,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.616543569305,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.386395770224075,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,6,4,1,438.2,11102.80713022524,10520.25958269857,203448.8772541811,131837.6344112227,3038.899298269711 -11896,14662,26670,-9,26668,26666,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.319390849523,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,438.2,11102.80713022524,10520.25958269857,203448.8772541811,131837.6344112227,3038.899298269711 -11897,14663,26671,-9,26673,26674,1,0,19,0,1,0,2,2,-9,0,4,8.036145002769134,7.959569936710674,0,0,0,-1108.32625155241,0,2,2,2019,12,0,70,37,1,0,1,4.913809405962944,4.913809405962944,0,0,0,0,0,1,1,0,0,0,43.48,47.86,-9,-9,6.666666666666667,1,1,0,0,5,13,4,0,293,-100174.0808450802,0,0,0,1213.637070953869 -11897,14664,26672,-9,26673,26674,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-946.5235401113433,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,3,0,530.3333333333334,-18056.90882962962,13101.07717763348,0,0,2332.328120878689 -11897,14664,26673,26674,-9,-9,1,0,37,0,1,0,2,2,-9,1,2,7.371704059750009,6.905157635290348,0,5,-8,-40.91451206306423,0,2,3,2019,15,3,20,0,1,3,0,7.989506300539177,7.989506300539177,0,0,0,0,0,1,1,0,.7839694649037814,0,34.65,37.08,43.97,47.28,3.333333333333333,1,1,0,0,5,13,3,0,530.3333333333334,-18056.90882962962,13101.07717763348,0,0,2332.328120878689 -11897,14664,26674,26673,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.935592058611544,7.728062568432525,0,5,8,-80.94041019216139,0,-9,-9,2019,11,0,20,30,1,0,0,13.48129039385014,13.48129039385014,0,0,0,0,0,1,1,0,0,0,43.97,47.28,34.65,37.08,5,1,1,0,0,4,13,3,0,530.3333333333334,-18056.90882962962,13101.07717763348,0,0,2332.328120878689 -11898,14665,26675,26676,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.689586397029642,7.980326630241728,0,32,6,10.19900171619576,-9,-9,-9,2019,10,0,60,0,1,1,0,4.260076710384136,4.260076710384136,0,0,0,0,0,0,0,0,0,0,50,49,58.92,48.59,7,2,3,0,0,1,5,3,1,1210.5,-86007.28199240362,11215.07763350798,0,0,1501.739740506823 -11898,14665,26676,26675,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.13103563642357,7.291415425829732,0,32,-6,-34.33084644436511,0,3,1,2019,5,0,20,20,1,0,0,6.839780268104382,6.839780268104382,0,0,0,0,0,0,0,0,0,0,58.92,48.59,50,49,8.333333333333334,2,3,0,0,12,5,3,1,1210.5,-86007.28199240362,11215.07763350798,0,0,1501.739740506823 -11898,14666,26677,-9,26676,26675,1,0,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1006.409814153532,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,1357,0,0,0,0,0 -11899,14667,26678,26679,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.465641975574377,7.722035949968778,0,15,3,118.9756358840341,0,3,2,2019,7,0,23,30,1,0,0,8.668170274493582,8.668170274493582,0,0,0,0,0,1,1,0,0,0,42,52.08,38.51,59.43,10,2,3,0,0,13,6,4,0,269,479052.7634239797,45852.82733558876,528987.3592165877,123690.3445199243,2768.987116017441 -11899,14667,26679,26678,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.217638761966924,8.472836756998646,0,15,-3,-41.46968898762856,0,2,2,2019,11,0,38,22,1,0,0,11.51884732184445,11.51884732184445,0,0,0,0,0,1,1,0,0,0,38.51,59.43,42,52.08,8.333333333333334,2,3,0,0,13,6,4,0,269,479052.7634239797,45852.82733558876,528987.3592165877,123690.3445199243,2768.987116017441 -11899,14667,26680,-9,26679,26678,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.284079573458,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,0,269,479052.7634239797,45852.82733558876,528987.3592165877,123690.3445199243,2768.987116017441 -11899,14667,26681,-9,26679,26678,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.6383671504141,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,4,0,269,479052.7634239797,45852.82733558876,528987.3592165877,123690.3445199243,2768.987116017441 -11900,14668,26682,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-942.6488801242126,0,3,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.17,26.65,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,1246,-42391.48684485618,0,0,0,1440.467439090772 -11901,14669,26683,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.077061361712689,7.770967917889224,0,0,-905.1789753307177,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.987700259063737,8.041948041616742,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,510,806561.1510384987,461596.4272792922,213793.2800700151,2802.188714217329,2676.780850101809 -11902,14670,26684,26685,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.181930993645487,8.330965500776635,0,27,-1,-158.777488045146,-9,-9,-9,2019,8,0,41,0,1,0,0,11.03771528867447,11.03771528867447,0,0,0,0,0,0,0,0,0,0,57.07,52.23,54.2,57.49,8.333333333333334,1,1,0,0,10,5,3,1,762,309238.3820621375,-31675.43132094746,216973.4415675848,0,1541.439998271798 -11902,14670,26685,26684,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,5.198521867794199,5.162576596020468,0,8,1,17.68144588593027,0,-9,-9,2019,11,0,40,40,1,0,0,.4469546331584281,.4469546331584281,0,0,0,0,2,0,0,0,.9321805561488068,0,54.2,57.49,57.07,52.23,1.666666666666667,1,1,0,0,10,5,3,1,762,309238.3820621375,-31675.43132094746,216973.4415675848,0,1541.439998271798 -11903,14671,26686,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.565125931777096,8.43945371124487,0,0,-998.8278782974061,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.277314166608193,8.504369539283569,47.1,21.74,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,602,2065413.933747868,1744200.557767992,99074.15949634473,0,2951.532807865887 -11904,14672,26687,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.330145858487191,8.979208687170988,7.542701204554143,0,0,-964.6160192215036,0,2,1,2019,10,0,32,0,1,0,0,14.17782716812031,14.17782716812031,0,0,0,0,0,0,0,0,7.759286248417421,7.778532219441576,42.17,51.35,-9,-9,5,1,1,0,0,8,12,5,1,403,132397.5057851539,8308.627029059062,145837.9941101582,0,2580.362860727248 -11905,14673,26688,26689,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.201244626118189,8.068824824031433,0,8,-3,50.45611804189291,0,2,2,2019,9,2,43,43,1,2,0,9.209044846340744,9.209044846340744,0,0,0,0,2,0,0,0,2.199298038684788,0,45.21,56.1,41.22,55.74,8.333333333333334,1,1,0,1,13,11,4,1,1332,249646.9304922074,95096.73040232545,109891.547643956,29777.97010331568,3110.413105919725 -11905,14673,26689,26688,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.071682458250532,7.932564797070418,0,8,3,50.94942663487311,0,-9,-9,2019,11,0,40,40,1,0,0,11.09875132378422,11.09875132378422,0,0,0,.679493338523157,0,0,0,0,0,0,41.22,55.74,45.21,56.1,5,1,1,0,0,7,11,4,1,1332,249646.9304922074,95096.73040232545,109891.547643956,29777.97010331568,3110.413105919725 -11906,14674,26690,26691,-9,-9,1,0,29,0,0,0,2,2,-9,0,1,8.202046888883881,8.177653085517257,0,4,-2,44.22522457972972,0,2,3,2019,8,0,38,38,1,0,0,11.19917230403872,11.19917230403872,0,0,0,0,0,0,0,0,7.524434962049112,0,29.95,28.52,28.37,31.81,3.333333333333333,1,1,0,0,4,2,5,1,533,157873.1550247866,-43747.57936768582,196262.2005847164,153451.3874246193,4374.870669731878 -11906,14674,26691,26690,-9,-9,1,1,31,0,0,0,1,1,-9,0,1,8.59026122639859,8.402858812326455,0,4,2,-75.99560865627269,0,-9,-9,2019,21,9,44,55,1,9,0,14.37905264529719,14.37905264529719,0,0,0,0,0,0,0,0,6.935401186679107,0,28.37,31.81,29.95,28.52,3.333333333333333,1,1,0,0,8,2,5,1,533,157873.1550247866,-43747.57936768582,196262.2005847164,153451.3874246193,4374.870669731878 -11907,14675,26692,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1055.573309413458,0,2,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,-9,-9,10,1,1,0,0,0,4,1,0,982,-34623.83007973534,0,77191.84533485727,0,343.3331242579554 -11908,14676,26693,26694,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.33457704864888,8.474108960875066,7.348143464672238,29,1,-22.74639049251225,0,2,2,2019,6,0,42,97,1,0,0,9.981487846573902,9.981487846573902,0,0,0,0,0,0,0,0,2.911121572954612,7.343229375892797,59.29,49.68,57.06,57.76,8.333333333333334,1,1,0,0,10,4,4,1,483.5,897312.144058021,830695.2944973803,139484.0953278877,0,3905.691783653503 -11908,14676,26694,26693,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,29,-1,-51.98398054313767,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.975606273523812,0,57.06,57.76,59.29,49.68,10,1,1,0,0,8,4,4,1,483.5,897312.144058021,830695.2944973803,139484.0953278877,0,3905.691783653503 -11909,14677,26695,26696,-9,-9,1,1,31,0,0,0,3,3,-9,0,4,8.052027051034553,8.072690450203213,0,6,2,41.02204684965218,0,3,3,2019,6,0,37,36,1,0,0,9.324436146951863,9.324436146951863,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,5,4,1,849,180009.0877901961,-85841.9423786455,0,0,2633.055923459311 -11909,14677,26696,26695,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.172856801762462,8.234271231667915,0,6,-2,-46.29292211616936,0,-9,-9,2019,7,0,43,38,1,0,0,8.667902572789274,8.667902572789274,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,5,4,1,849,180009.0877901961,-85841.9423786455,0,0,2633.055923459311 -11910,14678,26697,26698,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.324225572091683,8.782690219172334,0,37,0,58.92688519130807,0,-9,-9,2019,9,0,35,40,1,1,0,19.81014995434705,19.81014995434705,0,0,0,0,0,1,1,0,0,0,54,53,49.29,54.59,8,2,3,0,0,1,5,4,1,471,396382.5725584689,41416.96032978552,130953.1992219415,500.2955109708764,2807.148828362065 -11910,14678,26698,26697,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.907784559647122,7.318103221573015,37,0,-27.05824436591838,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.946840787844488,49.29,54.59,54,53,8.333333333333334,2,3,0,0,0,5,4,1,471,396382.5725584689,41416.96032978552,130953.1992219415,500.2955109708764,2807.148828362065 -11910,14679,26699,-9,26698,26697,1,1,29,0,0,0,1,1,-9,0,4,8.329358645837187,8.212275231183369,0,0,0,-918.8095616918756,0,2,1,2019,10,0,60,40,1,1,1,8.220144789714688,8.220144789714688,0,0,0,0,0,1,1,0,6.749939304704791,0,50,57,-9,-9,7,2,3,0,0,1,5,4,1,308,-237499.0439970844,33895.04898632423,0,0,2341.065858026401 -11911,14680,26700,26701,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.708013417648521,8.412480362506949,0,31,14,39.67765682429862,0,3,3,2019,10,0,47,48,1,0,0,15.13291757842533,15.13291757842533,0,0,0,0,0,0,0,0,0,0,61.38,44.71,58.21,55.62,8.333333333333334,2,3,0,0,13,8,5,1,998.5,5924317.503024962,1023249.97490451,3483197.815731252,0,4023.08840052314 -11911,14680,26701,26700,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.01276890444127,8.146920817422227,0,10,-14,-96.58259506951707,0,-9,-9,2019,5,0,40,40,1,0,0,10.54240846489314,10.54240846489314,0,0,0,0,0,0,0,0,0,0,58.21,55.62,61.38,44.71,8.333333333333334,2,3,0,0,13,8,5,1,998.5,5924317.503024962,1023249.97490451,3483197.815731252,0,4023.08840052314 -11911,14681,26702,-9,26701,26700,1,0,26,0,0,0,1,1,-9,0,4,7.855036116613159,7.621577929657153,0,0,0,-1115.899976360716,0,2,3,2019,2,0,41,37,1,0,1,8.609720890506141,8.609720890506141,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,1050,145766.3475821596,0,0,0,772.2489531575145 -11911,14682,26703,-9,26701,26700,1,1,25,0,0,0,1,1,-9,0,4,9.071919835205843,9.222073484650906,0,0,0,-1090.487032629398,0,2,3,2019,9,0,48,0,1,0,1,24.56286285136774,24.56286285136774,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,1,8,5,1,213,123542.3166507295,10715.61312220756,0,0,4382.113332424059 -11912,14683,26704,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.326073813078023,5.602146274628812,0,0,-942.1262563674422,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.050934570917003,39.03,33.62,-9,-9,5,4,5,0,1,0,9,2,1,357,-7483.177768142763,39950.7048811201,0,0,806.9618304355256 -11913,14684,26705,26706,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.832366693967529,6.997033358751333,10,-1,114.4039553200712,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.879727668155518,6.927307877414695,58.72,43.42,53.33,45.84,8.333333333333334,1,1,0,0,6,7,3,1,827.5,1944004.145933427,773016.1422530605,435736.6887328012,0,3281.424059576815 -11913,14684,26706,26705,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.053833654539988,7.949621467256824,10,1,61.81871610201294,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.747761456511302,7.69942511870687,53.33,45.84,58.72,43.42,8.333333333333334,1,1,0,0,1,7,3,1,827.5,1944004.145933427,773016.1422530605,435736.6887328012,0,3281.424059576815 -11914,14685,26707,-9,26710,26708,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.1892615725252,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,1264,286877.0352215241,-24969.09745068609,154349.3431447069,84309.33716384476,1959.726994121864 -11914,14685,26708,26710,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,0,0,0,5,6,-64.43477104741996,0,3,3,2019,9,0,0,26,3,1,0,0,0,0,0,0,0,0,1,1,0,4.246947472243309,0,52,56,49,56,8,3,4,1,0,6,8,3,0,1264,286877.0352215241,-24969.09745068609,154349.3431447069,84309.33716384476,1959.726994121864 -11914,14685,26709,-9,26710,26708,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.3599996355538,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,3,0,1264,286877.0352215241,-24969.09745068609,154349.3431447069,84309.33716384476,1959.726994121864 -11914,14685,26710,26708,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.575585372196066,8.24289520161337,0,5,-6,-5.713604100380095,0,-9,-9,2019,11,0,38,38,1,2,0,9.48239181526127,9.48239181526127,0,0,0,0,0,1,1,0,0,0,49,56,52,56,7,1,1,0,1,9,8,3,0,1264,286877.0352215241,-24969.09745068609,154349.3431447069,84309.33716384476,1959.726994121864 -11915,14686,26711,26712,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,6.934637265401141,7.459868996417868,39,-5,-74.46726752415158,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.170929103617851,7.529862284881907,57.16,56.15,60.12,54.8,10,1,1,0,0,10,10,3,1,686.5,1828207.195161225,1084159.420459856,571178.5967909163,0,1324.280761814202 -11915,14686,26712,26711,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.580072938310439,7.697121534780488,38,5,51.1560940928691,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.103281841927028,60.12,54.8,57.16,56.15,10,1,1,0,0,8,10,3,1,686.5,1828207.195161225,1084159.420459856,571178.5967909163,0,1324.280761814202 -11916,14687,26713,26714,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.511058258097557,7.891127596553377,7.676785806786495,9,-7,-59.31007174317877,0,3,3,2019,6,0,18,18,1,0,0,11.21629788568617,11.21629788568617,0,0,0,0,0,1,1,0,4.483379607789739,7.518907139608204,57.16,56.15,57.16,56.15,10,1,1,0,0,11,12,4,1,415.5,475843.0346335159,303487.1231348393,150559.7121836325,0,3876.824696306593 -11916,14687,26714,26713,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.655052715409196,8.22810448344987,34,7,50.86424654693939,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.696441844270282,7.966847660714729,57.16,56.15,57.16,56.15,10,1,1,0,0,5,12,4,1,415.5,475843.0346335159,303487.1231348393,150559.7121836325,0,3876.824696306593 -11917,14688,26715,26716,-9,-9,1,0,63,0,1,0,2,2,-9,0,4,0,4.700246533866623,4.602911225385784,8,-5,-64.94493106016583,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.272137673152774,4.851218509544705,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,0,11,3,1,434.5,123910.1995929335,-10868.71252075828,0,0,1667.074921611722 -11917,14688,26716,26715,-9,-9,1,1,68,0,1,0,2,2,-9,0,4,0,7.366823837416707,7.604905505928099,8,5,71.5804125535938,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.951413986464802,7.880935282703464,48.87,58.55,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,434.5,123910.1995929335,-10868.71252075828,0,0,1667.074921611722 -11917,14689,26717,-9,-9,26718,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1126.606217546812,-9,-9,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,343,35067.68825309042,30281.00759409237,0,0,2332.313325467379 -11917,14689,26718,-9,26715,26716,1,1,40,0,1,0,3,3,-9,0,4,8.579558009597637,8.554166790785228,0,0,0,-1013.238348854612,0,2,1,2019,23,11,60,60,1,11,0,9.215299127931086,9.215299127931086,0,0,0,0,0,1,1,0,0,0,42.93,36.83,-9,-9,6.666666666666667,1,1,0,1,8,11,4,1,343,35067.68825309042,30281.00759409237,0,0,2332.313325467379 -11918,14690,26719,26720,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.323738244926155,8.587077397067254,48,4,-9.986195941215485,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.773349743653901,8.132392553684912,58.72,51.29,62.03,36.18,8.333333333333334,1,1,0,0,0,10,4,1,376.5,2352353.77963855,1144687.812391732,695110.1743734367,0,3799.212615129316 -11918,14690,26720,26719,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.668503102437691,5.627655271889113,48,-4,10.27476995291287,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.167280505001874,5.714039863376723,62.03,36.18,58.72,51.29,8.333333333333334,1,1,0,0,0,10,4,1,376.5,2352353.77963855,1144687.812391732,695110.1743734367,0,3799.212615129316 -11919,14691,26721,26722,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.603383209453586,6.397346611793258,5,-1,-51.2574516157078,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.160483417259466,52.21,46.12,62.25,48.33,8.333333333333334,1,1,0,0,0,10,2,0,406,102101.0604531606,74780.47309285901,0,0,2651.57306234783 -11919,14691,26722,26721,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,5,1,29.91065358440189,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.25,48.33,52.21,46.12,10,1,1,0,0,0,10,2,0,406,102101.0604531606,74780.47309285901,0,0,2651.57306234783 -11920,14692,26723,-9,26724,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1078.150877171314,-9,2,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.020965517461647,0,33.77,65.26000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,970,-190849.3213018701,0,0,0,2496.965975216701 -11920,14692,26724,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.617619861328383,7.727692476486008,0,0,0,-944.6056530843711,0,-9,-9,2019,8,1,30,30,1,1,0,9.431445378864536,9.431445378864536,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,970,-190849.3213018701,0,0,0,2496.965975216701 -11921,14693,26725,26726,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.219301346321301,5.778929779743166,46,-3,124.5340380252056,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.612117237470351,6.095680502007066,60.13,49.27,53,47,10,1,1,0,0,6,4,2,1,1532,323927.780366216,271745.3537938485,0,0,2351.613011914197 -11921,14693,26726,26725,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,6.254026629980696,6.487112216833332,0,6,3,-38.33644008507223,-9,-9,-9,2019,10,0,25,0,1,1,0,2.484713047955996,2.484713047955996,0,0,0,0,0,1,1,0,0,0,53,47,60.13,49.27,7,1,1,0,0,1,4,2,1,1532,323927.780366216,271745.3537938485,0,0,2351.613011914197 -11921,14694,26727,-9,26725,26726,1,1,30,0,0,0,1,1,-9,0,5,8.494182825526742,8.322649194614291,0,0,0,-1105.136867469576,-9,3,2,2019,9,0,37,0,1,0,0,11.6712278799113,11.6712278799113,0,0,0,0,0,1,1,0,4.289535095267747,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,1045,112288.1804503726,59379.68167558503,113114.6546543366,53937.83622876686,548.7637596466396 -11922,14695,26728,26729,-9,-9,1,1,45,1,1,0,2,2,-9,0,2,8.42207806928916,8.372385924055321,0,2,0,46.77352685265095,-9,-9,-9,2019,7,0,38,0,1,0,0,16.93750759358775,16.93750759358775,0,0,0,0,0,1,1,0,0,0,50.91,46.32,60.02,56.42,10,1,1,0,0,1,4,5,1,593,1875220.999006415,1527270.154840881,251675.8270199859,0,3667.867464750252 -11922,14695,26729,26728,-9,-9,1,0,45,1,1,0,2,2,-9,0,5,8.388854255477826,8.104178270063978,0,2,0,-13.9035310644704,0,-9,-9,2019,7,0,30,30,1,0,0,15.89205415031342,15.89205415031342,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50.91,46.32,10,1,1,0,0,10,4,5,1,593,1875220.999006415,1527270.154840881,251675.8270199859,0,3667.867464750252 -11922,14695,26730,-9,26729,26728,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.996845331879,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,593,1875220.999006415,1527270.154840881,251675.8270199859,0,3667.867464750252 -11923,14696,26731,26732,-9,-9,1,1,66,0,1,0,2,2,-9,0,3,0,7.108771613805254,7.225475301609409,7,23,-26.59108499606093,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.17793206030514,51.81,43.81,36.41,54.92,8.333333333333334,1,1,0,1,0,8,3,0,697.6666666666666,974657.7070922958,509648.1079022179,339813.6323490193,0,2556.138616686253 -11923,14696,26732,26731,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.154172356347337,7.421002178173333,0,7,-23,14.5033349327598,0,2,3,2019,12,0,30,30,1,0,0,5.300132989483457,5.300132989483457,0,0,0,0,0,1,1,0,0,0,36.41,54.92,51.81,43.81,8.333333333333334,1,1,0,1,8,8,3,0,697.6666666666666,974657.7070922958,509648.1079022179,339813.6323490193,0,2556.138616686253 -11923,14696,26733,-9,26732,26731,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.3692831210632,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,8,3,0,697.6666666666666,974657.7070922958,509648.1079022179,339813.6323490193,0,2556.138616686253 -11924,14697,26734,26736,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.148360398137024,8.185444868503764,0,8,-1,-83.41189571781331,0,2,2,2019,11,0,47,44,1,0,0,9.720335689871291,9.720335689871291,0,0,0,0,0,1,1,0,0,0,45.41,50.66,47.71,51.43,3.333333333333333,1,1,0,0,9,5,4,1,1431.333333333333,-12753.49633322751,29097.48733053595,60120.94121293357,49202.10503332003,2640.144747557403 -11924,14697,26735,-9,26736,26734,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.143267110404,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1431.333333333333,-12753.49633322751,29097.48733053595,60120.94121293357,49202.10503332003,2640.144747557403 -11924,14697,26736,26734,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.892550187547685,7.873138237186622,0,8,1,66.59926532673418,0,-9,-9,2019,13,5,48,53,1,5,0,7.046989896221056,7.046989896221056,0,0,0,0,0,1,1,0,0,0,47.71,51.43,45.41,50.66,6.666666666666667,1,1,0,0,9,5,4,1,1431.333333333333,-12753.49633322751,29097.48733053595,60120.94121293357,49202.10503332003,2640.144747557403 -11925,14698,26737,26738,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.961816434370456,5.965795105226973,6,3,-42.57121122023842,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.760108126896106,54,46,52,46,8,1,1,0,0,0,13,2,1,531.5,351581.9836922089,125379.9090441795,145884.8961042532,0,1084.744842297769 -11925,14698,26738,26737,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-3,-82.56029158780179,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,13,2,1,531.5,351581.9836922089,125379.9090441795,145884.8961042532,0,1084.744842297769 -11926,14699,26739,26740,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,10,1,36.49184678892774,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,58.56,29.84,8,4,1,0,0,0,13,2,1,724.5,320333.6139681743,79031.72484904702,196949.786701505,0,1205.135941423558 -11926,14699,26740,26739,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.975864377967774,6.760444890747098,10,-1,-87.42553624619907,0,3,3,2019,14,6,0,0,4,6,0,0,0,1,0,14.04457147641924,0,0,1,1,0,4.364960437129129,7.256560884675278,58.56,29.84,53,46,10,1,1,0,0,0,13,2,1,724.5,320333.6139681743,79031.72484904702,196949.786701505,0,1205.135941423558 -11927,14700,26741,26742,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,7.571971113917582,7.649586675907207,0,16,2,-74.35689120475804,0,2,2,2019,6,0,5,15,1,0,0,47.77059618551483,47.77059618551483,0,0,0,0,0,1,1,0,8.155906542648204,0,57.06,57.76,50,54,8.333333333333334,1,1,0,0,11,9,5,1,686,869941.0472451536,-80191.65198486418,989236.1881719232,173614.9378780339,7289.521467074996 -11927,14700,26742,26741,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.27915588739649,9.364342975838952,0,8,-2,73.21081972566517,0,-9,-9,2019,10,0,37,35,1,1,0,37.19610768778217,37.19610768778217,0,0,0,0,0,1,1,0,6.895266194867927,0,50,54,57.06,57.76,8,1,1,0,0,1,9,5,1,686,869941.0472451536,-80191.65198486418,989236.1881719232,173614.9378780339,7289.521467074996 -11927,14700,26743,-9,26742,26741,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.9647158014862,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,686,869941.0472451536,-80191.65198486418,989236.1881719232,173614.9378780339,7289.521467074996 -11927,14700,26744,-9,26742,26741,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.2225563484931,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,686,869941.0472451536,-80191.65198486418,989236.1881719232,173614.9378780339,7289.521467074996 -11928,14701,26745,26746,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.333046417295375,8.017812451045092,0,1,2,43.94998723109114,-9,-9,-9,2019,14,2,40,0,1,2,0,10.33739935523205,10.33739935523205,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,8,2,4,1,295.5,-17114.55943028897,-26611.05580579647,163413.0156848346,86358.11667514734,2484.95205038662 -11928,14701,26746,26745,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.00792212019188,7.551260875235377,0,1,-2,9.943355306853864,-9,3,3,2019,12,0,37,0,1,0,0,9.275663280131672,9.275663280131672,0,0,0,0,0,0,0,0,2.977222923172689,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,8,2,4,1,295.5,-17114.55943028897,-26611.05580579647,163413.0156848346,86358.11667514734,2484.95205038662 -11929,14702,26747,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,5,8.276690922232662,8.59861355602669,0,0,0,-868.6240242583315,-9,-9,-9,2019,10,2,37,0,1,2,0,11.20650751228718,11.20650751228718,0,0,0,0,0,0,0,0,0,0,34.58,61.28,-9,-9,6.666666666666667,1,1,0,0,1,12,4,0,1404,33558.04667210059,55970.89956210325,106861.1835518152,101343.6681899683,1867.701341142722 -11930,14703,26748,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,5.930135967676045,6.028822811324347,0,0,-1063.304709855322,0,2,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.751828054566438,5.974848964805542,53.13,25.94,-9,-9,3.333333333333333,1,1,0,0,2,7,2,1,242,0,0,0,0,1878.161989750077 -11931,14704,26749,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.161522925446334,7.220144969854169,0,0,-1128.166612982333,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,2.062597707504609,0,0,1,1,0,1.638597406081296,7.324542385785271,62.4,48.33,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,738,685132.8518638329,199144.3265810524,318612.95885597,0,1875.190836113114 -11932,14705,26750,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-954.8830355384737,0,3,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,17.23,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,945,83752.64630240659,0,77769.92160048956,0,1686.323178425058 -11933,14706,26751,26752,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.328533189386432,3.744494209885487,42,-2,-111.7335319486683,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.203397713555117,4.280775482166417,58.44,46.03,51.31,45.15,8.333333333333334,1,1,0,0,5,2,3,1,605.5,1743870.23827713,1269593.521393232,284500.8956923875,0,2525.174313126008 -11933,14706,26752,26751,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.045802059716747,8.345108720853837,42,2,228.1415207282171,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.839243410308113,8.086548070314231,51.31,45.15,58.44,46.03,8.333333333333334,1,1,0,0,10,2,3,1,605.5,1743870.23827713,1269593.521393232,284500.8956923875,0,2525.174313126008 -11934,14707,26753,-9,26754,26755,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.3890775298339,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,509.3333333333333,172622.6177744745,91507.27858083915,125760.1428899576,105508.150678568,2256.073696985074 -11934,14707,26754,26755,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,7.762594043452251,7.402020375980452,0,6,0,-67.38701745170705,0,1,1,2019,8,0,25,25,1,0,0,7.544637138189423,7.544637138189423,0,0,0,0,0,1,1,0,0,0,44.72,57.73,58.05,54.52,6.666666666666667,1,1,0,0,10,5,4,1,509.3333333333333,172622.6177744745,91507.27858083915,125760.1428899576,105508.150678568,2256.073696985074 -11934,14707,26755,26754,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,7.878080760625805,8.105505996391335,0,6,0,-6.989415196807225,0,-9,-9,2019,10,0,40,40,1,0,0,9.438480601288692,9.438480601288692,0,0,0,0,0,1,1,0,0,0,58.05,54.52,44.72,57.73,8.333333333333334,1,1,0,0,10,5,4,1,509.3333333333333,172622.6177744745,91507.27858083915,125760.1428899576,105508.150678568,2256.073696985074 -11935,14708,26756,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.779880485918147,7.888186515753223,0,0,0,-989.9817890523871,0,2,3,2019,13,3,39,39,1,3,0,6.727627416914234,6.727627416914234,0,0,0,0,14.5,1,1,0,1.420493620761828,0,39.14,41.63,-9,-9,5,2,3,0,1,4,7,3,0,498,67563.32124074655,58338.60024843466,0,0,657.0800425561832 -11936,14709,26757,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.63643868615611,8.634550250391122,0,0,0,-1057.490818346738,0,2,2,2019,11,1,37,37,1,1,0,19.99448053399518,19.99448053399518,0,0,0,0,0,0,0,0,0,0,39.14,56.45,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,405,953693.7786886641,162007.9427958008,567537.652648196,177607.9085465397,1748.00443158155 -11937,14710,26758,26759,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.299299923652141,8.426487951370913,0,26,4,-44.66764992364567,0,3,3,2019,11,2,63,54,1,2,0,9.581804744780724,9.581804744780724,0,0,0,0,2,0,0,0,1.159411707998434,0,47.55,33.8,60.29,52.11,5,3,4,0,0,10,8,5,1,1396.5,557543.4593374524,165167.7698825765,482659.5953564806,109156.7016541938,3070.434387051546 -11937,14710,26759,26758,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.268182733804039,9.178920390580931,0,26,-4,-21.5735311001207,0,-9,-9,2019,12,0,59,53,1,0,0,21.36867515527361,21.36867515527361,0,0,0,0,0,0,0,0,0,0,60.29,52.11,47.55,33.8,1.666666666666667,1,1,0,0,8,8,5,1,1396.5,557543.4593374524,165167.7698825765,482659.5953564806,109156.7016541938,3070.434387051546 -11937,14711,26760,-9,26758,26759,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-944.382310429444,-9,2,2,2019,7,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.6,48.91,-9,-9,6.666666666666667,4,2,0,0,1,8,1,1,3771,-157479.0331499419,0,0,0,0 -11937,14712,26761,-9,26758,26759,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1036.608966282399,0,2,2,2019,14,2,0,42,3,2,1,0,0,0,0,0,0,2,0,0,0,0,0,41.21,51.34,-9,-9,6.666666666666667,4,2,1,0,3,8,1,1,382,-74167.57130626513,0,0,0,0 -11938,14713,26762,-9,26763,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.534387391366,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,460,70335.73405016944,0,0,0,1164.035405855361 -11938,14713,26763,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1005.957353206251,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.71,43.63,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,460,70335.73405016944,0,0,0,1164.035405855361 -11939,14714,26764,-9,26766,26767,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.834372401205,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,0,1299,135646.0814125838,42184.98162245177,223611.1648613648,121974.1405393502,3330.498337102934 -11939,14714,26765,-9,26766,26767,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.228783847941,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1299,135646.0814125838,42184.98162245177,223611.1648613648,121974.1405393502,3330.498337102934 -11939,14714,26766,26767,-9,-9,1,0,26,0,2,0,1,1,-9,0,3,8.082378134938221,7.960274925814383,0,5,0,33.5315939617472,0,2,2,2019,6,1,38,28,1,1,0,12.7362439456973,12.7362439456973,0,0,0,0,0,1,1,0,0,0,51.81,54.55,41.07,60.93,10,1,1,0,0,7,6,4,0,1299,135646.0814125838,42184.98162245177,223611.1648613648,121974.1405393502,3330.498337102934 -11939,14714,26767,26766,-9,-9,1,1,26,0,2,0,2,2,-9,0,5,8.217721916658705,7.923652921621941,0,5,0,-10.02765777258265,0,-9,-9,2019,6,0,40,41,1,0,0,10.51938158737649,10.51938158737649,0,0,0,0,0,1,1,0,0,0,41.07,60.93,51.81,54.55,10,1,1,0,0,4,6,4,0,1299,135646.0814125838,42184.98162245177,223611.1648613648,121974.1405393502,3330.498337102934 -11940,14715,26768,26770,-9,-9,1,0,45,0,3,0,1,1,-9,0,5,8.028448715832369,7.969826454242348,0,1,2,148.2946959780739,-9,1,2,2019,12,0,25,0,1,0,0,12.60440802859783,12.60440802859783,0,0,0,0,0,0,0,0,0,0,52.13,57.22,57.33,53.46,6.666666666666667,1,1,0,0,7,9,5,0,348.2,782387.9416575726,511240.3568236527,410345.1601016868,236377.2045596346,10732.5238069332 -11940,14715,26769,-9,26768,26770,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.016341006981,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.9832817473988822,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,5,0,348.2,782387.9416575726,511240.3568236527,410345.1601016868,236377.2045596346,10732.5238069332 -11940,14715,26770,26768,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,9.558139686338025,9.524029446074984,0,1,-2,-35.67483810174319,-9,2,1,2019,7,0,62,0,1,0,0,30.84129907235051,30.84129907235051,0,0,0,0,0,0,0,0,9.545968094981214,0,57.33,53.46,52.13,57.22,10,2,3,0,0,7,9,5,0,348.2,782387.9416575726,511240.3568236527,410345.1601016868,236377.2045596346,10732.5238069332 -11940,14715,26771,-9,26768,26770,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.898249976792,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,5,0,348.2,782387.9416575726,511240.3568236527,410345.1601016868,236377.2045596346,10732.5238069332 -11940,14715,26772,-9,26768,26770,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-872.2404802539206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,0,348.2,782387.9416575726,511240.3568236527,410345.1601016868,236377.2045596346,10732.5238069332 -11941,14716,26773,26774,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.305132463914005,7.338371626251583,8,0,-52.03701659224316,0,2,-9,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,4.298347238459207,7.453557236547199,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,9,13,4,1,1115,935705.8928746684,950422.0396789797,0,0,2489.363557164802 -11941,14716,26774,26773,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.203770422572029,8.374487615131169,0,8,0,67.58979630922619,0,-9,-9,2019,7,0,37,37,1,0,0,11.93891961372993,11.93891961372993,0,0,0,0,0,0,0,0,6.629255472655318,0,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,9,13,4,1,1115,935705.8928746684,950422.0396789797,0,0,2489.363557164802 -11942,14717,26775,26776,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.09101210829215,9.218377444111617,7.074761581638375,7,0,-27.64893747931169,0,-9,-9,2019,9,0,40,40,1,1,0,29.27217009376492,29.27217009376492,0,0,0,0,0,0,0,0,0,7.117631433496229,53,54,57.06,57.76,8,1,1,0,0,1,2,5,1,618.5,153897.1164164078,98249.84641470408,113932.4342138475,46100.14679741206,6521.435376216666 -11942,14717,26776,26775,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.698900018608304,8.658526539812936,0,32,0,-84.89841222411511,0,1,3,2019,7,0,50,49,1,0,0,17.14081214105356,17.14081214105356,0,0,0,0,2,0,0,0,7.644393504230463,0,57.06,57.76,53,54,10,1,1,0,0,7,2,5,1,618.5,153897.1164164078,98249.84641470408,113932.4342138475,46100.14679741206,6521.435376216666 -11942,14718,26777,-9,26776,26775,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-985.5375501066351,-9,2,2,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,.3547577483237115,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,594,2306.589130053493,0,0,0,284.8506847506309 -11943,14719,26778,26779,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.688013798369195,5.794124959562877,55,-1,-90.91735683035057,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,4.998331607318699,0,0,1,1,0,0,5.660482549791742,59.21,43.05,60.12,54.8,6.666666666666667,1,1,0,0,0,1,3,1,2333,499406.2450390325,125122.864148206,109534.0355726387,0,2035.684096921855 -11943,14719,26779,26778,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.792493438295355,7.637534888674318,55,1,28.9436787124777,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5704085918578,60.12,54.8,59.21,43.05,8.333333333333334,1,1,0,0,3,1,3,1,2333,499406.2450390325,125122.864148206,109534.0355726387,0,2035.684096921855 -11944,14720,26780,26781,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,7.90582993915355,7.829051551770037,0,6,-11,-129.1950444375937,0,-9,-9,2019,11,3,38,37,1,3,0,9.352610162524371,9.352610162524371,0,0,0,0,7,1,1,0,0,0,54.76,39.83,54.1,59.11,8.333333333333334,1,1,0,0,9,12,5,1,132,193982.3451977331,39562.39664789411,105736.1716500144,21525.0202513927,4222.526907237179 -11944,14720,26781,26780,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.936766764570391,9.08912059177597,0,6,11,10.6694913315226,0,-9,-9,2019,8,0,41,42,1,0,0,22.1506455686994,22.1506455686994,0,0,0,0,2,1,1,0,2.281841878636832,0,54.1,59.11,54.76,39.83,6.666666666666667,1,1,0,0,8,12,5,1,132,193982.3451977331,39562.39664789411,105736.1716500144,21525.0202513927,4222.526907237179 -11945,14721,26782,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,5,6.190779611036275,6.499283655872259,0,0,0,-1024.632822597912,-9,-9,-9,2019,4,0,10,0,1,0,0,7.567990880223503,7.567990880223503,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,1,9,2,1,491,-177946.8193377498,0,0,0,119.3622961943982 -11945,14722,26783,26784,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,47,-4,-49.1478595913654,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.83,57.2,53,46,10,3,4,0,0,0,9,2,1,243.5,315718.6629170771,36446.32036210992,0,0,4800.928233036774 -11945,14722,26784,26783,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.457879698092421,5.953061485975586,10,4,-82.95560212030894,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.168027394362726,5.616645075380472,53,46,51.83,57.2,7,3,4,0,0,0,9,2,1,243.5,315718.6629170771,36446.32036210992,0,0,4800.928233036774 -11946,14723,26785,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1053.13817520399,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,13.88054776379536,24.62975179807707,134.0955444010457,0,1,1,0,0,0,63.72,16.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,304,-68821.5727354277,0,0,0,1479.865770026469 -11947,14724,26786,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-969.9572432308451,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,29.62,48.33,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,711,29363.26042360407,0,0,0,1148.475260299723 -11948,14725,26787,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-981.8583405574781,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,38.45,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,356,-69484.60984992508,0,0,0,602.5255042983846 -11948,14726,26788,-9,26787,-9,1,1,21,0,0,0,2,2,-9,0,4,7.963634785644367,7.574569928697504,0,0,0,-991.137868757627,0,2,-9,2019,8,0,36,16,1,0,1,6.046738241251455,6.046738241251455,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,13,3,0,1190,-59930.12745264075,-16858.41347042882,0,0,1309.635321089353 -11949,14727,26789,26790,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.259691552667482,8.104198817776981,16,1,145.725327117193,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.303264706529744,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,13,3,1,701.5,1022967.435548826,612658.9495751446,269984.4836613648,0,1581.497598136756 -11949,14727,26790,26789,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,7,-1,-.3408110654416294,0,-9,-9,2019,8,1,0,24,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,1,0,9,13,3,1,701.5,1022967.435548826,612658.9495751446,269984.4836613648,0,1581.497598136756 -11950,14728,26791,26792,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.061397675452628,7.862954165983043,0,2,4,-39.24593729353492,0,2,3,2019,8,0,50,43,1,0,0,6.195101278826914,6.195101278826914,0,0,0,0,0,1,1,0,0,0,47.37,55.41,39.28,53.83,8.333333333333334,1,1,0,0,7,6,4,1,669,184997.2733715648,-17410.57832268671,152141.3481923777,85486.15712726576,2928.596260985017 -11950,14728,26792,26791,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.43002115027349,7.971094156845973,0,2,-4,75.87534142894685,0,2,2,2019,14,2,50,59,1,2,0,8.124143100046503,8.124143100046503,0,0,0,0,2,1,1,0,0,0,39.28,53.83,47.37,55.41,8.333333333333334,1,1,0,0,9,6,4,1,669,184997.2733715648,-17410.57832268671,152141.3481923777,85486.15712726576,2928.596260985017 -11951,14729,26793,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-854.1918741234633,0,2,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,46.68,-9,-9,6.666666666666667,1,1,1,0,0,10,1,0,760,123426.3918444128,0,76604.13095226257,-3788.083070158476,789.4529460188064 -11952,14730,26794,26797,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.347357293305363,7.938146328578147,0,14,1,-48.39572693941903,0,2,2,2019,11,0,40,40,1,0,0,12.61847516583927,12.61847516583927,0,0,0,0,0,1,1,0,0,0,44.74,48.37,51.14,60.45,6.666666666666667,1,1,0,0,10,6,4,1,939.75,140276.9500747016,27728.29096719134,296184.734983361,187852.1905552734,3610.890862071678 -11952,14730,26795,-9,26797,26794,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.971645344552,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,939.75,140276.9500747016,27728.29096719134,296184.734983361,187852.1905552734,3610.890862071678 -11952,14730,26796,-9,26797,26794,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.2786152123535,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,939.75,140276.9500747016,27728.29096719134,296184.734983361,187852.1905552734,3610.890862071678 -11952,14730,26797,26794,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.486773614140523,8.267286331941648,0,14,-1,13.0674695331129,0,2,3,2019,12,0,38,35,1,0,0,9.21583736438533,9.21583736438533,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.74,48.37,8.333333333333334,1,1,0,0,8,6,4,1,939.75,140276.9500747016,27728.29096719134,296184.734983361,187852.1905552734,3610.890862071678 -11953,14731,26798,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.483453689103675,7.582593207597715,0,0,0,-996.6669662367913,0,2,-9,2019,30,11,35,37,1,11,0,6.454225464796367,6.454225464796367,0,0,0,0,14.5,1,1,0,0,0,26.39,41.87,-9,-9,1.666666666666667,1,1,0,1,6,9,3,0,314,87890.2081251763,0,0,0,767.0194972422337 -11954,14732,26799,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.647496216274742,7.749811920299408,0,0,-918.3480197721722,0,3,3,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,5.965461465385365,7.060558382589627,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,4697,1956846.008524503,629500.7630898813,587708.6808223218,0,1220.642186255583 -11955,14733,26800,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,4.805550275733686,4.558588117759068,0,0,-1047.584551253949,0,3,2,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.971850838956206,4.664574567591642,22.98,43.88,-9,-9,1.666666666666667,1,1,0,0,4,11,2,1,481,142248.888300344,-10256.86457366661,218617.9855393319,0,507.008599792322 -11956,14734,26801,26802,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.982438371269393,8.235250037907303,6.726710019053466,6,2,64.76474558735249,0,-9,-9,2019,6,0,40,30,1,0,0,7.315597605783336,7.315597605783336,0,0,0,0,2,0,0,0,0,6.635502089722038,60.29,52.11,54.37,54.8,8.333333333333334,1,1,0,0,12,4,4,1,631,451069.2409035569,132206.4441688884,258902.5202592168,29.1380652046455,2854.338508187943 -11956,14734,26802,26801,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.2798177959631,7.72201116246992,7.020804615126987,6,-2,86.45640087539755,0,3,2,2019,11,0,12,8,1,0,0,13.39541805402916,13.39541805402916,0,0,0,0,2,0,0,0,0,7.023357927333737,54.37,54.8,60.29,52.11,6.666666666666667,1,1,0,0,12,4,4,1,631,451069.2409035569,132206.4441688884,258902.5202592168,29.1380652046455,2854.338508187943 -11957,14735,26803,26804,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.983376250168142,8.407532518332657,0,25,-5,-97.68674705469111,0,3,3,2019,10,0,45,45,1,0,0,12.72912219371901,12.72912219371901,0,0,0,0,0,1,1,0,0,0,47.52,57.75,46.08,57.2,10,1,1,0,0,12,8,5,1,582.3333333333334,173673.104952014,171787.8028002993,0,0,3439.219809804981 -11957,14735,26804,26803,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.263749638623143,7.915448230051261,0,25,5,-95.80031349624116,0,-9,-9,2019,11,0,60,60,1,0,0,5.908082106084019,5.908082106084019,0,0,0,0,0,1,1,0,0,0,46.08,57.2,47.52,57.75,5,1,1,0,0,12,8,5,1,582.3333333333334,173673.104952014,171787.8028002993,0,0,3439.219809804981 -11957,14735,26805,-9,26803,26804,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.989088552797,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,582.3333333333334,173673.104952014,171787.8028002993,0,0,3439.219809804981 -11958,14736,26806,26807,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.496094835716108,7.286292140738007,32,-2,-164.5774299447113,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.254173654224722,52,47,61.61,37.79,7,1,1,0,0,0,7,4,1,778.5,2081450.868606853,1086262.731742264,506083.8367991648,0,3258.388814274149 -11958,14736,26807,26806,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.723725001826129,8.018193813756863,33,2,19.2557001296035,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.837905621491429,8.255571266097704,61.61,37.79,52,47,8.333333333333334,1,1,0,0,0,7,4,1,778.5,2081450.868606853,1086262.731742264,506083.8367991648,0,3258.388814274149 -11959,14737,26808,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1053.303800774911,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,31.14,-9,-9,5,1,1,0,0,0,2,1,0,383,-92511.05841737941,57361.10720159999,0,0,989.2367756572431 -11960,14738,26809,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-956.5081002462691,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,16.01,37.41,-9,-9,0,1,1,1,0,0,9,1,0,588,-41096.21993729892,109885.6072473662,0,0,1628.413280082747 -11960,14739,26810,-9,26809,-9,1,1,28,0,0,0,1,1,-9,0,2,7.392479815318413,7.256984202622459,0,0,0,-1022.564805849315,0,3,-9,2019,23,8,62,62,1,8,1,3.363477595558255,3.363477595558255,0,0,0,0,0,1,1,0,0,0,13.26,53.86,-9,-9,1.666666666666667,1,1,0,1,4,9,3,0,777,-171465.5714752871,0,0,0,949.1240458061518 -11961,14740,26811,26812,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.284310761594085,9.297136666227543,0,25,1,53.12442733515338,0,-9,-9,2019,14,2,44,44,1,2,0,24.70782310928435,24.70782310928435,0,0,0,0,0,0,0,0,2.887752578783875,0,50,50,30.77,64.34,8.333333333333334,1,1,0,0,10,4,5,1,868,931752.641443084,520588.5335522001,169542.1561402315,0,5159.783803365165 -11961,14740,26812,26811,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,0,0,0,7,-1,-2.719326680374348,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,50,50,5,1,1,0,0,4,4,5,1,868,931752.641443084,520588.5335522001,169542.1561402315,0,5159.783803365165 -11962,14741,26813,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,6.133782002797699,6.242529279945717,0,0,-1017.255998013743,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.732976219018178,6.05157158198948,47,37,-9,-9,5,1,1,0,0,10,11,2,1,146,1081251.164650727,29054.48938081802,177588.4129126274,0,3167.824521347581 -11963,14742,26814,-9,26815,-9,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-881.7786880442211,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,13,5,1,262.5,1142126.603318709,1107793.103248176,133392.6047002155,37148.2098144862,2934.765958107479 -11963,14742,26815,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.118167629457789,9.098608090151481,0,0,0,-912.1408448299159,0,3,3,2019,15,4,40,35,1,4,0,25.87670426084963,25.87670426084963,0,0,0,0,0,1,1,0,0,0,32.95,64.54000000000001,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,262.5,1142126.603318709,1107793.103248176,133392.6047002155,37148.2098144862,2934.765958107479 -11964,14743,26816,-9,26818,26817,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.635948235653,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,536,2799.847730705398,46595.87373348996,0,0,3250.474727607575 -11964,14743,26817,26818,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.150734046881029,7.90650013855021,0,6,1,49.01465471967637,0,2,2,2019,15,3,45,52,1,3,0,7.30164106269537,7.30164106269537,0,0,0,0,0,1,1,0,0,0,48.75,47.6,35.9,60.41,3.333333333333333,1,1,0,0,7,6,4,1,536,2799.847730705398,46595.87373348996,0,0,3250.474727607575 -11964,14743,26818,26817,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.37969607697554,8.468082086204721,0,6,-1,33.82219173432246,0,-9,-9,2019,9,0,50,55,1,0,0,9.982324972806673,9.982324972806673,0,0,0,0,0,1,1,0,2.263595203856046,0,35.9,60.41,48.75,47.6,8.333333333333334,1,1,0,0,7,6,4,1,536,2799.847730705398,46595.87373348996,0,0,3250.474727607575 -11965,14744,26819,-9,26821,26820,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.9339133696659,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,412.75,125170.5415611653,62306.12301391776,0,0,4068.185191277329 -11965,14744,26820,26821,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,8.516416824767699,8.466652881312081,0,14,5,-67.73037657324689,0,3,3,2019,10,1,40,38,1,1,0,12.72187030407609,12.72187030407609,0,0,0,0,0,1,1,0,0,0,48.38,50.72,38.34,62.12,8.333333333333334,1,1,0,0,6,7,5,1,412.75,125170.5415611653,62306.12301391776,0,0,4068.185191277329 -11965,14744,26821,26820,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.76971958217227,8.642520300275372,0,14,-5,-68.51621504733325,0,2,2,2019,8,1,22,30,1,1,0,29.38951140490704,29.38951140490704,0,0,0,0,0,1,1,0,0,0,38.34,62.12,48.38,50.72,8.333333333333334,1,1,0,0,8,7,5,1,412.75,125170.5415611653,62306.12301391776,0,0,4068.185191277329 -11965,14744,26822,-9,26821,26820,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.986203816373,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,412.75,125170.5415611653,62306.12301391776,0,0,4068.185191277329 -11966,14745,26823,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.514400138217,0,-9,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.8511271205698367,0,51,48,-9,-9,7,1,1,0,1,8,7,1,0,618,281976.4400346324,59436.80119192052,328226.1574968235,0,1257.147824846095 -11967,14746,26824,26825,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.024980770990936,7.865764458740424,6.949173791472223,1,5,11.21930369501708,-9,3,3,2019,6,0,35,0,1,0,0,3.912358668360594,3.912358668360594,0,0,0,0,27,1,1,0,0,7.29600938581375,57.16,56.15,44.31,28.61,8.333333333333334,1,1,0,0,10,10,3,1,902,-94995.59355263732,0,0,0,2261.149564632638 -11967,14746,26825,26824,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,3.786568624112873,3.596861735314054,1,-5,137.9513840310854,-9,2,3,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.2423170407201,3.787398461875047,44.31,28.61,57.16,56.15,1.666666666666667,1,1,0,0,0,10,3,1,902,-94995.59355263732,0,0,0,2261.149564632638 -11968,14747,26826,26827,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.310857628724506,8.590401548703486,0,7,4,-2.122419477575991,0,3,2,2019,22,10,40,43,1,10,0,11.5385948193435,11.5385948193435,0,0,0,0,0,0,0,0,1.408603806869967,0,37.85,53.23,32.76,57.87,3.333333333333333,1,1,0,0,10,4,4,1,1096.5,108807.8466974552,212396.049749043,76331.39594214095,55668.69150828473,2359.355697597351 -11968,14747,26827,26826,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.276224929778175,7.573280556136269,0,7,-4,34.95593242262443,0,-9,-9,2019,24,12,33,43,1,12,0,5.02252223897392,5.02252223897392,0,0,0,0,0,0,0,0,2.329825364376555,0,32.76,57.87,37.85,53.23,5,1,1,0,0,7,4,4,1,1096.5,108807.8466974552,212396.049749043,76331.39594214095,55668.69150828473,2359.355697597351 -11968,14748,26828,-9,26827,26826,1,1,23,0,0,0,2,2,-9,0,4,7.903805542340113,8.069051370820095,0,0,0,-1159.096790305103,0,2,2,2019,10,1,40,44,1,1,1,5.098371894018777,5.098371894018777,0,0,0,0,0,0,0,0,.4229207885454899,0,47.38,57.75,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,537,-176040.7043445837,32447.98289346206,0,0,1235.666472868676 -11969,14749,26829,-9,26830,26832,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.402324742022,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,5,1,1142.25,2042001.482149419,1624293.11030667,648387.9864666265,273508.6099662412,8050.765544497181 -11969,14749,26830,26832,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,8.568485918067346,8.471876311242497,0,7,-2,-184.7964912439104,0,2,2,2019,17,6,46,46,1,6,0,13.44531718722767,13.44531718722767,0,0,0,0,0,0,0,0,4.880866443466636,0,36.77,41.34,49.28,52.09,5,3,4,0,0,6,2,5,1,1142.25,2042001.482149419,1624293.11030667,648387.9864666265,273508.6099662412,8050.765544497181 -11969,14749,26831,-9,26830,26832,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.9955584412558,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,1142.25,2042001.482149419,1624293.11030667,648387.9864666265,273508.6099662412,8050.765544497181 -11969,14749,26832,26830,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,9.809929757618669,9.362557936397199,0,7,2,19.37504516089106,0,3,3,2019,6,0,50,60,1,0,0,34.70749667561682,34.70749667561682,0,0,0,0,0,0,0,0,6.938269805801844,0,49.28,52.09,36.77,41.34,8.333333333333334,1,1,0,0,7,2,5,1,1142.25,2042001.482149419,1624293.11030667,648387.9864666265,273508.6099662412,8050.765544497181 -11970,14750,26833,26834,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.201187796423399,8.774157567446801,0,7,0,-56.06535025212694,0,-9,-9,2019,7,1,43,40,1,1,0,11.46674312132667,11.46674312132667,0,0,0,0,0,0,0,0,0,0,49.12,57.28,28.55,61.38,5,1,1,0,0,7,10,4,0,375.5,32006.09579715603,116494.7439600712,0,0,2702.331096523347 -11970,14750,26834,26833,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.800995773349642,7.968605623529605,0,7,0,22.56254372505776,0,-9,-9,2019,14,2,74,45,1,2,0,4.716195650988875,4.716195650988875,0,0,0,0,0,0,0,0,0,0,28.55,61.38,49.12,57.28,8.333333333333334,1,1,0,0,10,10,4,0,375.5,32006.09579715603,116494.7439600712,0,0,2702.331096523347 -11971,14751,26835,-9,26836,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1178.138207244793,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,5,0,126,230518.6740708527,193949.9244299831,191172.4611841646,147685.2292011169,2479.5900089787 -11971,14751,26836,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.501780887552705,8.914868959705807,0,0,0,-890.7441866263392,0,3,2,2019,26,11,37,37,1,11,0,22.42947585334778,22.42947585334778,0,0,0,0,0,1,1,0,0,0,25.08,62.98,-9,-9,3.333333333333333,1,1,0,0,8,12,5,0,126,230518.6740708527,193949.9244299831,191172.4611841646,147685.2292011169,2479.5900089787 -11972,14752,26837,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.708976027729006,5.540986285420021,0,0,-999.4534854801755,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.829947263387564,5.256645057372952,33.6,29.17,-9,-9,5,1,1,0,0,0,12,2,1,3224,271912.2497285986,147631.8754047765,114897.3141353861,0,554.5459193038859 -11973,14753,26838,26839,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.617102833303326,7.694461009236086,49,1,-86.19238352801922,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.168726350931847,7.440662682373842,52,47,57.06,57.76,7,1,1,0,0,0,4,2,1,711.5,599684.5824353145,366813.2234961082,231571.7999817029,0,2011.859690061309 -11973,14753,26839,26838,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,4.937425905285685,4.721852813764595,49,-1,-83.50968395996361,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.336299730673479,4.611568537779961,57.06,57.76,52,47,8.333333333333334,1,1,0,0,0,4,2,1,711.5,599684.5824353145,366813.2234961082,231571.7999817029,0,2011.859690061309 -11974,14754,26840,26841,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.118012813908253,9.207385941060567,0,28,-1,0,0,3,3,2019,6,0,50,70,1,0,0,19.07194924997452,19.07194924997452,0,0,0,0,0,0,0,0,9.297028193855473,0,58.47,47.36,37.38,37.11,1.666666666666667,1,1,0,0,7,5,5,1,796,1557865.787328742,578858.402964542,672719.5452503961,0,12271.16455653146 -11974,14754,26841,26840,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,9.091422733164128,9.176185050666124,0,28,1,0,0,3,3,2019,16,3,5,10,1,3,0,242.8611978506406,242.8611978506406,0,0,0,0,0,0,0,0,8.937401686108101,0,37.38,37.11,58.47,47.36,8.333333333333334,2,3,0,0,2,5,5,1,796,1557865.787328742,578858.402964542,672719.5452503961,0,12271.16455653146 -11975,14755,26842,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.336096992634876,7.332181560940232,0,0,-924.6886569304586,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.516144013254112,7.265610166284656,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,258,517004.1621323122,60549.37842141686,238634.8782096491,0,1603.617131649176 -11976,14756,26843,26844,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.384585251448716,9.458623993297255,0,7,4,-64.84360291425423,0,-9,-9,2019,19,8,50,45,1,8,0,27.24743092513831,27.24743092513831,0,0,0,0,0,0,0,0,3.591353151240953,0,37.53,58.25,55.08,27.72,1.666666666666667,1,1,0,0,8,2,5,1,511,2465999.957004071,1816239.243956955,227105.6896077334,0,4288.783857255608 -11976,14756,26844,26843,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.194977034439198,7.198436795125267,0,32,-4,81.02831922917345,0,3,2,2019,10,0,21,18,1,0,0,7.701513829205361,7.701513829205361,0,0,0,0,0,0,0,0,0,0,55.08,27.72,37.53,58.25,10,1,1,0,0,9,2,5,1,511,2465999.957004071,1816239.243956955,227105.6896077334,0,4288.783857255608 -11976,14757,26845,-9,26844,26843,1,1,25,0,0,0,2,2,-9,0,4,7.859544405791143,7.668477352921032,0,0,0,-942.87889943242,0,2,2,2019,10,0,38,0,1,1,1,5.903647721585576,5.903647721585576,0,0,0,0,0,0,0,0,5.911607607779457,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,222,0,0,0,0,1322.575042445121 -11977,14758,26846,26847,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.384089302515099,8.412906414487519,0,7,1,11.23613782648608,0,3,3,2019,10,0,41,40,1,0,0,13.32094182027992,13.32094182027992,0,0,0,0,0,1,1,0,0,0,56.94,49.53,41.13,32.93,8.333333333333334,1,1,0,0,11,11,4,0,131.5,92532.71691802007,-22339.32889312295,37241.01390115315,77504.85435392609,2780.769879371449 -11977,14758,26847,26846,-9,-9,1,1,36,0,0,0,2,2,-9,1,1,0,0,0,7,-1,24.65364367772553,0,-9,-9,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,32.93,56.94,49.53,3.333333333333333,1,1,0,0,0,11,4,0,131.5,92532.71691802007,-22339.32889312295,37241.01390115315,77504.85435392609,2780.769879371449 -11978,14759,26848,-9,26850,26849,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.558885227853,-9,1,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.78,55.17,-9,-9,8.333333333333334,1,1,0,0,3,11,5,1,1009,1578269.479999679,1378806.899774153,260924.1999821907,73004.35030624706,3323.470732606167 -11978,14759,26849,26850,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.634883129029969,8.406585598982005,0,23,2,125.4756306637004,0,3,3,2019,7,0,60,62,1,0,0,13.6036200535802,13.6036200535802,0,0,0,0,0,1,1,0,4.007473236842559,0,57.16,56.15,49.02,39.48,6.666666666666667,1,1,0,0,13,11,5,1,1009,1578269.479999679,1378806.899774153,260924.1999821907,73004.35030624706,3323.470732606167 -11978,14759,26850,26849,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.936583805805495,7.918032204913676,0,23,-2,93.32454490567633,0,3,3,2019,20,8,28,28,1,8,0,11.16638992488665,11.16638992488665,0,0,0,0,0,1,1,0,3.66917421058527,0,49.02,39.48,57.16,56.15,6.666666666666667,1,1,0,0,12,11,5,1,1009,1578269.479999679,1378806.899774153,260924.1999821907,73004.35030624706,3323.470732606167 -11978,14760,26851,-9,26850,26849,1,1,18,0,0,0,2,2,-9,0,4,8.126325072245313,7.884530866185821,0,0,0,-1050.184300111707,0,1,3,2019,9,0,44,0,1,0,1,8.847823256097039,8.847823256097039,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,1.666666666666667,1,1,0,0,2,11,4,1,2537,187351.6168087393,112880.6216783989,214027.1973096702,122208.8801361199,1913.983094036941 -11979,14761,26852,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.102674177268343,9.071310420726842,3.9252871355183,0,0,-944.029400884473,0,2,2,2019,13,4,40,40,1,4,0,22.38405172243551,22.38405172243551,0,0,0,0,2,0,0,0,4.290533775221,0,44.48,52.88,-9,-9,5,1,1,0,0,11,4,5,1,217,397117.1702439102,212515.9925378683,185537.9961809621,38014.59197208287,1990.536709389454 -11980,14762,26853,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.978751723483768,9.121974655700281,0,0,0,-1128.318811044207,0,1,2,2019,9,0,52,52,1,0,0,19.72197498871464,19.72197498871464,0,0,0,0,0,1,1,0,4.435757333277444,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,1711,37925.17213603131,-69239.67836013308,158652.180501177,120818.2965269382,2616.705333896256 -11981,14763,26854,-9,26857,26856,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.8219041991713,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,5,1,1120.5,2461819.361471599,76854.04952362839,1921032.44754993,0,10932.01107544459 -11981,14763,26855,-9,26857,26856,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.136395232246,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1120.5,2461819.361471599,76854.04952362839,1921032.44754993,0,10932.01107544459 -11981,14763,26856,26857,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.763840983416372,9.835494565473997,0,27,0,-.5883816801914508,0,3,2,2019,12,0,9,45,1,0,0,195.0062998878529,195.0062998878529,0,0,0,0,0,0,0,0,6.695629611480885,0,48.87,58.55,51.41,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1120.5,2461819.361471599,76854.04952362839,1921032.44754993,0,10932.01107544459 -11981,14763,26857,26856,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.981753212401715,9.177216322583035,0,27,0,-6.08278760084134,0,1,1,2019,8,1,48,45,1,1,0,18.51131187643308,18.51131187643308,0,0,0,0,0,0,0,0,.1737436100426424,0,51.41,56.15,48.87,58.55,8.333333333333334,2,3,0,0,10,8,5,1,1120.5,2461819.361471599,76854.04952362839,1921032.44754993,0,10932.01107544459 -11982,14764,26858,26859,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,6,-5,-248.4251274071012,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,47.15,56.66,8.333333333333334,1,1,0,0,4,12,5,1,735,539155.2867668598,239803.1785790243,318491.4793948066,191059.7687699306,4639.619593243042 -11982,14764,26859,26858,-9,-9,1,1,42,1,1,0,1,1,-9,0,3,9.741177758148494,9.676354947015122,0,6,5,26.41716896217387,0,1,1,2019,7,0,35,35,1,0,0,47.9859952629995,47.9859952629995,0,0,0,0,0,0,0,0,0,0,47.15,56.66,48.87,58.55,8.333333333333334,1,1,0,0,11,12,5,1,735,539155.2867668598,239803.1785790243,318491.4793948066,191059.7687699306,4639.619593243042 -11982,14764,26860,-9,26858,26859,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.915298194861,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,735,539155.2867668598,239803.1785790243,318491.4793948066,191059.7687699306,4639.619593243042 -11983,14765,26861,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.471100312099084,8.394095324387326,4.859260300252677,0,0,-1052.310110919015,0,2,3,2019,12,0,32,32,1,0,0,15.1336305441059,15.1336305441059,0,0,0,0,0,1,1,0,0,4.990894949316064,42.1,55.1,-9,-9,3.333333333333333,1,1,0,0,10,6,4,1,1782,266147.5337330191,207641.6770656892,108888.5369065801,48294.21911526591,2313.154651944575 -11983,14766,26862,-9,26861,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-930.6260641357856,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,0,1,6,1,1,384,83296.07659975396,0,0,0,0 -11984,14767,26863,26864,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,6,4,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.9812970801659835,0,50.68,25.79,54.79,55.86,8.333333333333334,1,1,0,0,0,2,1,0,460,283490.5904960178,-25836.46689563238,69824.97886899557,13763.56339739915,1032.912856563645 -11984,14767,26864,26863,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.68,25.79,8.333333333333334,1,1,0,0,0,2,1,0,460,283490.5904960178,-25836.46689563238,69824.97886899557,13763.56339739915,1032.912856563645 -11985,14768,26865,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.250641053524152,8.850957629105665,0,0,0,-918.4778833649649,0,1,1,2019,12,0,30,30,1,0,0,30.96795196205153,30.96795196205153,0,0,0,0,2,1,1,0,6.483107393219152,0,46.73,57.01,-9,-9,5,1,1,0,0,10,5,5,1,135,281081.755771621,350499.2767535156,213737.6659766184,0,2118.690765672635 -11986,14769,26866,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.696885691656231,9.329661467994175,0,0,0,-951.6204960696853,-9,1,1,2019,11,1,40,0,1,1,0,22.5755830865203,22.5755830865203,0,0,0,0,0,0,0,0,0,0,60.03,48.18,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,512,-72392.2123902663,11668.49753070044,0,0,2600.58413459252 -11987,14770,26867,-9,26868,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.073815044973,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,1,0,1640,45922.81908581159,0,0,0,1481.573739987825 -11987,14770,26868,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-896.3730548584808,-9,3,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,8.333333333333334,4,2,0,0,2,9,1,0,1640,45922.81908581159,0,0,0,1481.573739987825 -11987,14770,26869,-9,26868,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.152345525303,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,1,0,1640,45922.81908581159,0,0,0,1481.573739987825 -11988,14771,26870,-9,26872,26871,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.3955147951028,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,874.6666666666666,611613.7456690007,305878.198237073,276323.2566416062,33774.92944111245,3868.135895815849 -11988,14771,26871,26872,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,9.634195156705118,9.384378122618244,0,8,3,105.7282961619043,0,-9,-9,2019,6,0,40,40,1,0,0,40.8779235904861,40.8779235904861,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.91,55.06,8.333333333333334,1,1,0,0,13,9,5,1,874.6666666666666,611613.7456690007,305878.198237073,276323.2566416062,33774.92944111245,3868.135895815849 -11988,14771,26872,26871,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,0,0,0,8,-3,-127.9717190321227,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.3279541507767517,0,53.91,55.06,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,874.6666666666666,611613.7456690007,305878.198237073,276323.2566416062,33774.92944111245,3868.135895815849 -11989,14772,26873,26874,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.213490523036569,7.393665602730426,0,7,-2,121.3823887364718,0,2,2,2019,7,0,28,29,1,0,0,6.391602660232038,6.391602660232038,0,0,0,0,0,0,0,0,4.896378646184751,0,54.74,57.22,62.99,46.83,8.333333333333334,1,1,0,0,9,9,3,1,893,1208307.509486473,706178.2688943162,363267.8817645016,0,3119.006640996804 -11989,14772,26874,26873,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,7.865615328895755,7.825567333650467,0,7,2,60.25911252195266,0,2,2,2019,4,0,40,50,1,0,0,4.851033881693928,4.851033881693928,0,0,0,0,0,0,0,0,7.299372185222919,0,62.99,46.83,54.74,57.22,8.333333333333334,1,1,0,0,9,9,3,1,893,1208307.509486473,706178.2688943162,363267.8817645016,0,3119.006640996804 -11989,14773,26875,-9,26873,26874,1,1,18,0,0,0,2,2,-9,0,4,8.012936420322642,8.273999213640982,0,0,0,-985.7204825907799,-9,1,2,2019,11,0,40,0,1,2,1,9.923479830945038,9.923479830945038,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,4,1,319,-32727.72509294874,-23162.87488477225,0,0,1235.681086721852 -11990,14774,26876,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.77991725622369,8.44769415863729,0,0,0,-976.1923660765025,0,1,1,2019,6,0,55,100,1,0,0,14.10536331306176,14.10536331306176,0,0,0,0,0,1,1,0,1.962908296753866,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,760,76641.16959898127,-54934.41432029143,0,0,1407.019567649775 -11991,14775,26877,26878,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.176561856488052,7.382636426717702,5.898865047180728,5,-15,-74.60290769374555,-9,-9,-9,2019,11,0,24,0,1,0,0,6.655731481813639,6.655731481813639,0,0,0,0,0,1,1,0,0,6.058088526540797,49.13,41.16,53.39,49.67,6.666666666666667,1,1,0,0,0,12,3,1,552,83731.9879918454,198848.2658233384,15724.558466472,0,2180.957117493371 -11991,14775,26878,26877,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.365191228288936,7.485716382720356,5,15,89.31106993923615,0,2,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.118634336325735,7.435264617731008,53.39,49.67,49.13,41.16,8.333333333333334,1,1,0,0,5,12,3,1,552,83731.9879918454,198848.2658233384,15724.558466472,0,2180.957117493371 -11992,14776,26879,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-988.8860099039208,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.81,37.91,-9,-9,3.333333333333333,1,1,0,1,0,2,2,1,371,77297.77837430158,0,0,0,693.7231080795775 -11993,14777,26880,-9,26881,26882,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.762715541671,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,10,4,1,669.75,450671.66556496,326618.079083482,343973.6312978003,147487.9156369244,3063.217704725434 -11993,14777,26881,26882,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,6.799936919176465,6.537312888492259,0,8,-4,69.19377190073993,0,-9,-9,2019,3,0,12,12,1,0,0,7.789529417120781,7.789529417120781,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.43,58.05,10,2,3,0,0,4,10,4,1,669.75,450671.66556496,326618.079083482,343973.6312978003,147487.9156369244,3063.217704725434 -11993,14777,26882,26881,-9,-9,1,1,45,1,2,0,1,1,-9,0,5,8.90723678854407,8.877066125357707,0,8,4,-19.69833931715367,0,1,1,2019,7,0,42,35,1,0,0,18.52301515493755,18.52301515493755,0,0,0,0,0,1,1,0,6.502771237976333,0,59.43,58.05,62.39,56.71,10,1,1,0,0,9,10,4,1,669.75,450671.66556496,326618.079083482,343973.6312978003,147487.9156369244,3063.217704725434 -11993,14777,26883,-9,26881,26882,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-803.0837164912102,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,4,1,669.75,450671.66556496,326618.079083482,343973.6312978003,147487.9156369244,3063.217704725434 -11994,14778,26884,26885,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,6.514857304996847,6.337630186250688,6,7,16.49997694780309,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,6.246094600162187,43.26,54.35,58.32,50.22,8.333333333333334,1,1,0,0,6,7,4,0,1002,968433.2199946144,236535.2896094464,728045.703837737,0,2468.068454764257 -11994,14778,26885,26884,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.466498913904541,8.373992892299924,0,6,-7,48.44967558190412,0,2,2,2019,10,0,40,40,1,0,0,14.15260918414976,14.15260918414976,0,0,0,0,0,1,1,0,1.813232144277514,0,58.32,50.22,43.26,54.35,6.666666666666667,1,1,0,0,7,7,4,0,1002,968433.2199946144,236535.2896094464,728045.703837737,0,2468.068454764257 -11995,14779,26886,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.729006851334353,6.632601708684095,0,0,-1013.914980143692,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.519034188704019,6.856127550327275,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,313,625201.5489279248,173421.117582306,128586.7654517801,0,1201.539090804916 -11995,14780,26887,-9,-9,26886,1,1,45,0,0,0,2,2,-9,0,5,7.606878468597146,7.771327307564126,0,0,0,-927.5230411641894,0,-9,3,2019,13,1,38,40,1,1,0,9.862658230807615,9.862658230807615,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,9,11,3,1,326,-98096.9046991223,135362.1111077963,0,0,1056.307701590367 -11996,14781,26888,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.02407766018584,8.207330471454448,0,0,0,-1142.477786877484,-9,2,1,2019,9,0,38,0,1,0,0,13.41143681922785,13.41143681922785,0,0,0,0,0,0,0,0,3.440189216568643,0,49.84,59.62,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,270,87307.71075827892,0,0,0,1539.845740663378 -11997,14782,26889,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.626746218612166,6.618821816372724,0,0,-1085.340786140477,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,.6630376366516937,0,0,1,1,0,0,6.520758251844386,50.63,22.73,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,700,137221.667910729,78732.73766051403,164335.1673267051,0,257.6058634997772 -11998,14783,26890,-9,26891,26892,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1122.275382265733,-9,1,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,50.72,-9,-9,8.333333333333334,1,1,1,0,0,6,5,1,1133.333333333333,1151076.075787482,948097.2708488349,281951.7099298357,87904.59394183761,4183.872608444417 -11998,14783,26891,26892,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,6.943790709839038,6.966460632502089,0,25,1,56.14952157173249,0,2,3,2019,10,0,15,15,1,0,0,8.962416518878783,8.962416518878783,0,0,0,0,0,1,1,0,0,0,54.69,57.47,54.81,44.79,10,1,1,0,0,9,6,5,1,1133.333333333333,1151076.075787482,948097.2708488349,281951.7099298357,87904.59394183761,4183.872608444417 -11998,14783,26892,26891,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.120661113168447,9.263937397602161,0,25,-1,99.48519183352772,0,2,2,2019,7,0,51,50,1,0,0,22.37709624571503,22.37709624571503,0,0,0,0,0,1,1,0,0,0,54.81,44.79,54.69,57.47,8.333333333333334,1,1,0,0,9,6,5,1,1133.333333333333,1151076.075787482,948097.2708488349,281951.7099298357,87904.59394183761,4183.872608444417 -11998,14784,26893,-9,26891,26892,1,0,19,0,1,0,2,2,-9,0,4,6.916528473321985,8.704695462333351,8.805508176443993,0,0,-916.9961770582977,0,1,1,2019,16,4,14,4,1,4,1,7.790141771524005,7.790141771524005,0,0,0,0,0,1,1,0,8.188803888659479,0,46.8,55.75,-9,-9,8.333333333333334,1,1,0,0,2,6,5,1,209,-40114.07065909936,-136339.4754510957,0,0,2723.74433358844 -11999,14785,26894,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1055.852246342138,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.55,54.69,-9,-9,3.333333333333333,1,1,1,1,3,4,1,0,398,-126975.3014250374,0,0,0,1801.685081499194 -12000,14786,26895,26896,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.844080338621541,8.692883460244575,0,2,4,9.664484901684537,0,1,1,2019,0,0,40,48,1,0,0,17.18718090566163,17.18718090566163,0,0,0,0,0,0,0,0,8.525152457432652,0,60.02,56.42,47.58,56.39,10,1,1,0,0,4,12,4,0,953.5,42886.22867493937,-36928.26847366976,221482.0249160255,181616.5756072282,3328.206437380067 -12000,14786,26896,26895,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,2,-4,61.51430334460155,0,-9,-9,2019,6,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,.2584189533395667,0,47.58,56.39,60.02,56.42,8.333333333333334,1,1,0,0,0,12,4,0,953.5,42886.22867493937,-36928.26847366976,221482.0249160255,181616.5756072282,3328.206437380067 -12001,14787,26897,26899,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.921712131499599,7.745604341409773,0,23,4,20.1689001798558,0,2,-9,2019,12,0,33,31,1,0,0,12.1349467564986,12.1349467564986,0,0,0,0,2,1,1,0,0,0,52,54.51,51.41,56.15,5,1,1,0,0,9,12,3,1,450.6666666666667,161912.7282849058,-53972.45990438792,144341.6866392529,76162.51159247587,2055.096274434949 -12001,14787,26898,-9,26897,26899,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.485134932071,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,450.6666666666667,161912.7282849058,-53972.45990438792,144341.6866392529,76162.51159247587,2055.096274434949 -12001,14787,26899,26897,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,7.139853260659367,7.047316656105648,0,23,-4,-93.29262584095042,0,2,3,2019,9,0,8,55,1,0,0,17.89276802339977,17.89276802339977,0,0,0,0,0,1,1,0,0,0,51.41,56.15,52,54.51,6.666666666666667,1,1,0,0,10,12,3,1,450.6666666666667,161912.7282849058,-53972.45990438792,144341.6866392529,76162.51159247587,2055.096274434949 -12002,14788,26900,-9,-9,-9,1,0,27,0,1,0,2,2,-9,1,4,6.813851747774197,6.84945476658175,0,0,0,-904.9125340854135,0,2,-9,2019,7,0,16,0,1,0,0,6.873550103809403,6.873550103809403,0,0,0,0,0,1,0,1,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,483,64301.09823112359,62169.82973428341,0,0,839.0733657106971 -12003,14789,26901,26902,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.762993550345971,7.954963337815588,0,43,-2,-12.82034800835594,0,2,2,2019,9,0,31,31,1,0,0,8.499793874579483,8.499793874579483,0,0,0,0,14.5,0,0,0,0,0,42.6,50.45,60.53,48.35,6.666666666666667,1,1,0,0,12,7,3,1,1354.5,314951.0471781364,135292.8924159278,359666.3516663915,0,2079.878753902123 -12003,14789,26902,26901,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,5.616754391471662,5.444935058015561,0,43,2,6.407244354334901,0,3,3,2019,7,0,37,35,1,0,0,.9727570735336897,.9727570735336897,0,0,0,0,7,0,0,0,7.108764226624632,0,60.53,48.35,42.6,50.45,8.333333333333334,1,1,0,0,12,7,3,1,1354.5,314951.0471781364,135292.8924159278,359666.3516663915,0,2079.878753902123 -12004,14790,26903,26905,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.675081729688147,8.486091728004466,0,15,2,100.7170202821588,0,-9,-9,2019,7,0,40,40,1,0,0,16.9697811438302,16.9697811438302,0,0,0,0,0,1,1,0,0,0,46.48,54.32,48.38,46.48,3.333333333333333,3,4,0,0,9,7,4,0,203.5,467096.4772025628,42284.07158622325,293912.1783681588,13493.76082067655,3287.782590240293 -12004,14790,26904,-9,26905,26903,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-926.7422135748295,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,7,4,0,203.5,467096.4772025628,42284.07158622325,293912.1783681588,13493.76082067655,3287.782590240293 -12004,14790,26905,26903,-9,-9,1,0,38,0,2,0,2,2,1,0,4,7.792590140925516,7.558683215066319,0,17,-2,-8.456186135200561,-9,2,2,2019,8,0,30,0,1,0,0,7.80965835286926,7.80965835286926,0,0,0,0,0,1,1,0,0,0,48.38,46.48,46.48,54.32,8.333333333333334,3,4,0,0,3,7,4,0,203.5,467096.4772025628,42284.07158622325,293912.1783681588,13493.76082067655,3287.782590240293 -12004,14790,26906,-9,26905,26903,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.140552114631,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,4,0,203.5,467096.4772025628,42284.07158622325,293912.1783681588,13493.76082067655,3287.782590240293 -12005,14791,26907,26908,-9,-9,1,0,28,1,1,0,3,3,-9,0,3,7.161832424491374,7.196987704330795,0,2,1,188.6796973472905,0,-9,-9,2019,12,0,16,49,1,0,0,10.52548547204279,10.52548547204279,0,0,0,0,0,1,1,0,0,0,45.56,49.1,55.19,54.26,6.666666666666667,1,1,0,0,2,5,4,0,724.3333333333334,-73842.23121668947,-6092.642688352841,110202.041267445,97113.22603104146,2357.507001157572 -12005,14791,26908,26907,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.704099920958987,8.541651800342251,0,2,-1,76.67759890264563,0,-9,-9,2019,7,0,39,38,1,0,0,16.15784315419981,16.15784315419981,0,0,0,0,0,1,1,0,0,0,55.19,54.26,45.56,49.1,5,1,1,0,0,3,5,4,0,724.3333333333334,-73842.23121668947,-6092.642688352841,110202.041267445,97113.22603104146,2357.507001157572 -12005,14791,26909,-9,26907,26908,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.325458838819,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,0,724.3333333333334,-73842.23121668947,-6092.642688352841,110202.041267445,97113.22603104146,2357.507001157572 -12006,14792,26910,-9,26916,26913,1,0,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1090.011085502626,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,27,1,1,0,0,0,44.45,47.1,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26911,-9,26916,26913,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1080.267614028892,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26912,-9,26916,26913,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1180.835884227411,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26913,26916,-9,-9,1,1,37,0,4,0,2,2,-9,0,3,8.06340877649108,8.160923522746154,0,10,0,-59.80041271530929,0,2,2,2019,25,11,50,40,1,11,0,9.274248248969624,9.274248248969624,0,0,0,0,0,1,1,0,0,0,19.13,49.3,39.48,58.88,5,1,1,0,0,9,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26914,-9,26916,26913,1,0,10,0,4,1,3,0,-9,0,1,0,0,0,0,0,-1027.570002705423,-9,3,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,3,1,1,-9,0,0,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26915,-9,26916,26913,1,0,16,0,4,0,3,3,-9,0,4,0,0,0,0,0,-1040.208764697504,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,0,0,0,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12006,14792,26916,26913,-9,-9,1,0,37,0,4,0,3,3,-9,0,4,7.13381419376878,7.111741254169423,0,10,0,59.11175423156288,0,3,2,2019,12,0,18,19,1,0,0,6.844749355374198,6.844749355374198,0,0,0,0,0,1,1,0,0,0,39.48,58.88,19.13,49.3,8.333333333333334,1,1,0,0,3,11,3,0,747.8571428571429,27334.93536685033,11138.60380356059,181729.5111581902,124121.6390228938,3964.979606541189 -12007,14793,26917,26918,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.235529119386989,8.252689026277782,36,5,-104.2151660816625,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.18688848146816,8.372289751019899,51.14,60.45,57.93,46.29,8.333333333333334,2,3,0,0,6,8,4,1,929,1306659.933164462,789056.9216148333,706602.8098327126,0,2402.209437685378 -12007,14793,26918,26917,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.11621822038759,6.981653138866212,0,34,-5,-38.00845249267996,0,2,2,2019,8,0,18,18,1,0,0,6.9278159212378,6.9278159212378,0,0,0,0,0,1,1,0,2.949405687825653,0,57.93,46.29,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,929,1306659.933164462,789056.9216148333,706602.8098327126,0,2402.209437685378 -12007,14794,26919,-9,26918,26917,1,1,28,0,0,0,1,1,-9,0,4,8.297792901769157,7.88814760784761,0,0,0,-882.6285034839574,0,2,2,2019,10,0,36,36,1,1,1,12.82728920023788,12.82728920023788,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,2974,-215250.5588641931,0,0,0,1466.232710579601 -12008,14795,26920,26921,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,6.468430664628959,6.738010267898142,48,1,.7600836488360175,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.734304214638992,6.710163669721123,57.06,57.76,59.6,46.99,10,1,1,0,0,4,9,2,1,1457,1103559.886035335,615499.0359440863,271933.5907443664,0,2636.871534660088 -12008,14795,26921,26920,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.116068687236564,5.954058891325912,48,-1,67.26167915863093,0,3,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.602534332673907,5.980119853168251,59.6,46.99,57.06,57.76,8.333333333333334,1,1,0,0,0,9,2,1,1457,1103559.886035335,615499.0359440863,271933.5907443664,0,2636.871534660088 -12009,14796,26922,26923,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.126600102741259,9.078867827951047,0,15,11,-21.35451693768318,0,3,2,2019,9,0,35,30,1,1,0,27.11878557428757,27.11878557428757,0,0,0,0,0,1,1,0,2.824476872467814,0,52,55,49,56,7,2,3,0,0,7,4,4,1,1574,486657.7479680777,246567.3465840647,225994.3987921453,152599.5523918693,4863.272887419384 -12009,14796,26923,26922,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,15,-11,-83.24027471586099,0,3,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.94388827555927,0,49,56,52,55,7,2,3,0,0,0,4,4,1,1574,486657.7479680777,246567.3465840647,225994.3987921453,152599.5523918693,4863.272887419384 -12009,14796,26924,-9,26923,26922,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.351540997852,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,4,1,1574,486657.7479680777,246567.3465840647,225994.3987921453,152599.5523918693,4863.272887419384 -12010,14797,26925,26926,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,10,-5,26.16775020209559,0,3,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.08,33.03,51,48,3.333333333333333,1,1,0,0,3,10,2,0,1768,100499.1199862294,96409.34683526121,212989.3889554942,0,1231.068053177001 -12010,14797,26926,26925,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,3.296545586557093,3.150498671764177,10,5,37.17981671560379,0,3,2,2019,10,0,0,57,4,1,0,0,0,1,0,0,0,0,1,1,0,5.912763432631088,2.963237392222022,51,48,47.08,33.03,7,1,1,0,0,0,10,2,0,1768,100499.1199862294,96409.34683526121,212989.3889554942,0,1231.068053177001 -12011,14798,26927,26928,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.522683850451035,9.74597994136051,0,10,6,304.395020793484,0,2,2,2019,12,0,47,55,1,0,0,38.55462047544916,38.55462047544916,0,0,0,0,7,0,0,0,7.498537030820882,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,12,2,5,1,698.5,3367394.373296207,2818185.804431318,513149.6480523028,134331.5018186946,10509.4474672865 -12011,14798,26928,26927,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.805356889855775,9.511003197536549,0,10,-6,52.68888162091849,0,2,2,2019,9,0,45,45,1,0,0,45.61406695693579,45.61406695693579,0,0,0,0,7,0,0,0,5.927682894163553,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,12,2,5,1,698.5,3367394.373296207,2818185.804431318,513149.6480523028,134331.5018186946,10509.4474672865 -12012,14799,26929,26930,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.969293408147244,7.676634107875376,50,1,-207.5750191309743,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.385260736814547,7.90661039708453,59.05,42.91,50,47,10,1,1,0,0,0,6,4,1,255,1098818.788491138,672989.2432881329,316333.6042882185,0,4189.668305511309 -12012,14799,26930,26929,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.431515397420712,7.692388027019992,50,-1,-100.9191377297823,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,1.202905362408083,0,1,1,0,5.429760112942281,7.657627973194408,50,47,59.05,42.91,7,1,1,0,0,0,6,4,1,255,1098818.788491138,672989.2432881329,316333.6042882185,0,4189.668305511309 -12013,14800,26931,26932,-9,-9,1,0,45,0,0,0,1,1,-9,0,5,7.901149966360418,7.843409629792989,0,23,0,-42.84379863418285,0,2,1,2019,7,0,30,30,1,0,0,9.75062730239442,9.75062730239442,0,0,0,0,0,0,0,0,4.571366163618718,0,57.06,57.76,38.51,59.43,8.333333333333334,1,1,0,0,8,12,5,1,1924.5,957796.8368997341,937514.2789176656,65351.96065910568,69361.01076763857,3795.62310588778 -12013,14800,26932,26931,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.410315594492003,8.508901073681436,7.227172394840677,8,0,91.11144524026176,0,3,2,2019,22,10,37,43,1,10,0,13.3592076722621,13.3592076722621,0,0,0,0,0,0,0,0,1.876714036984777,7.721314821953561,38.51,59.43,57.06,57.76,3.333333333333333,1,1,0,0,10,12,5,1,1924.5,957796.8368997341,937514.2789176656,65351.96065910568,69361.01076763857,3795.62310588778 -12014,14801,26933,26934,-9,-9,1,0,42,0,4,0,2,2,-9,0,4,8.192303648457459,8.203692107211452,0,23,-3,73.16065360253216,0,3,3,2019,13,2,32,32,1,2,0,12.3056321674433,12.3056321674433,0,0,0,0,0,1,1,0,6.468170812267657,0,40.96,61.14,52,55,6.666666666666667,2,3,0,0,9,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12014,14801,26934,26933,-9,-9,1,1,45,0,4,0,2,2,-9,0,4,8.341497016813241,8.031802301839203,0,7,3,27.99276159069759,-9,3,2,2019,9,0,36,0,1,1,0,9.960826931240579,9.960826931240579,0,0,0,0,0,1,1,0,0,0,52,55,40.96,61.14,8,2,3,0,0,1,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12014,14801,26935,-9,26933,26934,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-956.7383810428986,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12014,14801,26936,-9,26933,26934,1,0,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-943.0813324967191,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,9,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12014,14801,26937,-9,26933,26934,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-867.6702636138186,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12014,14801,26938,-9,26933,26934,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1088.423770075433,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,10,3,1,2495.166666666667,471020.4557080464,195414.789429565,225222.2753168985,158326.5240905255,4507.802353467239 -12015,14802,26939,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.216181862212697,7.083139999285121,0,0,-1081.217778498788,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.598675692593837,7.175338759147724,50.64,44.11,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,225,335763.3104879423,32940.51169171376,178576.4636945413,0,2060.465157916708 -12015,14803,26940,-9,26939,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.963688233053048,7.158429952558772,0,0,-1002.35327694419,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.239153241938504,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,846,658203.3554555989,441938.4248088581,70156.23663983175,0,1659.776456585485 -12016,14804,26941,26942,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,51,-2,-11.91016675398282,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,57.16,56.15,7,1,1,0,0,0,9,5,1,219,1598736.03629462,927579.997785655,519728.7796163468,0,6049.420070548336 -12016,14804,26942,26941,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,9.186808765072918,8.988821074521827,51,2,125.2467576012503,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.332366576798835,9.004253401559993,57.16,56.15,51,46,1.666666666666667,1,1,0,0,7,9,5,1,219,1598736.03629462,927579.997785655,519728.7796163468,0,6049.420070548336 -12017,14805,26943,26944,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,0,0,53,-4,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.323615889188835,0,62.15,47.24,54,46,8.333333333333334,1,1,0,0,9,5,1,1,1453.5,28369.52568440259,0,0,0,473.1099665391145 -12017,14805,26944,26943,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,53,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,6.051189679602059,0,0,1,1,0,0,0,54,46,62.15,47.24,7,1,1,0,0,0,5,1,1,1453.5,28369.52568440259,0,0,0,473.1099665391145 -12018,14806,26945,26946,-9,-9,1,0,56,0,0,0,3,3,-9,0,1,0,6.43521901295572,6.27869635310088,15,-14,70.18102506700242,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.255530415558332,41.89,17.4,19.01,22.64,6.666666666666667,1,1,0,0,0,5,2,1,567,111464.0893370198,168464.553536968,0,0,1739.433612348209 -12018,14806,26946,26945,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,15,14,24.22017495994004,0,3,2,2019,26,11,0,0,4,11,0,0,0,1,0,61.73845901479497,0,0,1,1,0,.8339865049907813,0,19.01,22.64,41.89,17.4,1.666666666666667,1,1,0,0,0,5,2,1,567,111464.0893370198,168464.553536968,0,0,1739.433612348209 -12019,14807,26947,26948,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.950419393960189,9.026765964062182,0,10,-2,-13.04779102229136,0,2,2,2019,15,4,32,32,1,4,0,30.11813388838555,30.11813388838555,0,0,0,0,0,0,0,0,8.321843184532302,0,51.83,57.2,49.81,45.94,8.333333333333334,1,1,0,0,8,6,5,1,339,2258950.803073724,1793819.301674154,380957.1492777768,0,12784.30375891101 -12019,14807,26948,26947,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.64502988824918,9.681603196620637,0,10,2,37.20102091451433,0,2,2,2019,21,9,50,30,1,9,0,35.23205183052814,35.23205183052814,0,0,0,0,0,0,0,0,6.877187303736551,0,49.81,45.94,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,1,339,2258950.803073724,1793819.301674154,380957.1492777768,0,12784.30375891101 -12020,14808,26949,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,6.340023089527413,6.540011084430703,0,0,-1121.562200497617,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.634746498743799,39.81,22.96,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,156,-108459.4172448562,19437.18017187004,0,0,1167.951570924573 -12021,14809,26950,-9,26951,26952,1,0,16,0,0,1,3,0,-9,0,3,0,0,0,0,0,-951.6695376367499,-9,-9,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.0591236647910225,0,37.64,39.59,-9,-9,5,2,3,0,0,0,5,2,1,851,536429.4296915836,214132.8455533383,164330.8092951859,0,1338.372902277704 -12021,14809,26951,26952,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,46,-4,35.12849520206971,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,62.39,56.71,6.666666666666667,2,3,0,0,0,5,2,1,851,536429.4296915836,214132.8455533383,164330.8092951859,0,1338.372902277704 -12021,14809,26952,26951,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,6.780247599032294,6.955193921399279,0,46,4,38.61194022432623,0,-9,-9,2019,7,0,16,20,1,0,0,5.940480328062432,5.940480328062432,1,0,0,0,0,1,1,0,1.157792175986462,0,62.39,56.71,38.16,44.66,10,2,3,0,0,10,5,2,1,851,536429.4296915836,214132.8455533383,164330.8092951859,0,1338.372902277704 -12022,14810,26953,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.248434082510116,6.952959291120654,0,0,0,-1103.508753276335,0,-9,-9,2019,11,0,40,50,1,0,0,3.365207920573244,3.365207920573244,0,0,0,0,14.5,1,1,0,0,0,40.61,53.03,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,465,517686.7167451265,47822.28437119436,510760.9548783851,0,727.9825961538165 -12023,14811,26954,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.934876904807607,6.998026434687895,0,0,-988.524172809306,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,2.322875766001684,7.098468836286229,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,1269,372351.4777471393,258644.9085401424,184412.8332908785,0,879.2565037296308 -12024,14812,26955,26957,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.555782514489041,7.475820532396916,5.412613942613752,9,16,-37.31986338541435,0,3,3,2019,14,4,25,25,1,4,0,8.294338786152176,8.294338786152176,0,0,0,0,0,1,1,0,6.075204361586738,0,39.93,49.37,59.7,53.75,8.333333333333334,1,1,0,0,12,9,4,1,685.3333333333334,460243.0305421776,214764.5313158021,320057.1363056574,61684.16871365248,3365.178547282238 -12024,14812,26956,-9,26955,26957,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.190176315475,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,685.3333333333334,460243.0305421776,214764.5313158021,320057.1363056574,61684.16871365248,3365.178547282238 -12024,14812,26957,26955,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.589405904301261,8.135921735317202,0,9,-16,7.178383982615785,0,2,2,2019,8,0,40,40,1,0,0,13.17444309051961,13.17444309051961,0,0,0,0,0,1,1,0,0,0,59.7,53.75,39.93,49.37,8.333333333333334,1,1,0,0,12,9,4,1,685.3333333333334,460243.0305421776,214764.5313158021,320057.1363056574,61684.16871365248,3365.178547282238 -12024,14813,26958,-9,26955,26957,1,1,21,0,1,0,2,2,-9,0,2,8.07340154990168,7.940516972090261,0,0,0,-942.3339054453789,0,2,2,2019,8,0,52,15,1,0,1,8.0735676533355,8.0735676533355,0,0,0,0,0,1,1,0,2.902763688899605,0,51.08,45.97,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,2624,162558.608861559,37982.79917714257,0,0,1584.852613046768 -12025,14814,26959,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,6.41135534800591,6.868649072660559,5.29109718744289,0,0,-1014.940274305913,-9,3,3,2019,10,1,12,0,1,1,0,8.24642443287456,8.24642443287456,0,0,0,0,0,1,1,0,5.224763834741629,0,53.67,51.01,-9,-9,8.333333333333334,1,1,0,1,7,11,2,0,362,-31550.92806103743,0,0,0,664.2775686827854 -12025,14814,26960,-9,26959,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.7916297415658,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,362,-31550.92806103743,0,0,0,664.2775686827854 -12026,14815,26961,26963,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.736439247790207,7.631137093614505,0,7,-4,-87.08104972685206,-9,2,2,2019,11,0,15,0,1,0,0,20.86531291667361,20.86531291667361,0,0,0,0,7,1,1,0,.6540007350247411,0,46.08,57.2,26.36,58.69,6.666666666666667,1,1,0,0,8,12,4,0,1058.25,174262.4311165713,109395.5949502395,167940.2237403937,64555.0471513602,3006.081380335903 -12026,14815,26962,-9,26961,26963,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1000.981105509215,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.5,57.5,-9,-9,6.666666666666667,1,1,0,0,0,12,4,0,1058.25,174262.4311165713,109395.5949502395,167940.2237403937,64555.0471513602,3006.081380335903 -12026,14815,26963,26961,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.287470367866561,8.245548033721599,0,7,4,42.79249401309438,-9,2,2,2019,28,12,35,0,1,12,0,15.6882068450815,15.6882068450815,0,0,0,0,0,1,1,0,2.460488910877954,0,26.36,58.69,46.08,57.2,3.333333333333333,1,1,0,0,8,12,4,0,1058.25,174262.4311165713,109395.5949502395,167940.2237403937,64555.0471513602,3006.081380335903 -12026,14815,26964,-9,26961,26963,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1052.486786813136,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,0,1058.25,174262.4311165713,109395.5949502395,167940.2237403937,64555.0471513602,3006.081380335903 -12027,14816,26965,26966,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.081951214531633,9.40740498711652,0,1,-2,76.70634590650958,-9,-9,-9,2019,10,0,50,0,1,1,0,24.79646742399503,24.79646742399503,0,0,0,0,0,0,0,0,8.194765031330938,0,49,57,48.77,60.16,7,4,1,0,0,1,8,5,0,213.5,113985.3019137682,70921.40020533168,397947.3846909626,282829.8339673685,8025.667953918128 -12027,14816,26966,26965,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.316596950524403,9.134179520482601,0,1,2,-201.864181879192,0,-9,-9,2019,10,0,50,40,1,0,0,33.54393237236407,33.54393237236407,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49,57,8.333333333333334,1,1,0,0,4,8,5,0,213.5,113985.3019137682,70921.40020533168,397947.3846909626,282829.8339673685,8025.667953918128 -12028,14817,26967,26970,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,9.536575770373009,9.829000568558758,0,23,12,252.9450688325127,0,2,2,2019,12,2,43,42,1,2,0,44.23687377694901,44.23687377694901,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,738.5,111460.0829485901,0,0,0,6448.975976458922 -12028,14817,26968,-9,26970,26967,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.5273611087611,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,738.5,111460.0829485901,0,0,0,6448.975976458922 -12028,14817,26969,-9,26970,26967,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1071.212782351278,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,738.5,111460.0829485901,0,0,0,6448.975976458922 -12028,14817,26970,26967,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.355499372890764,8.742349556612645,0,23,-12,-34.30566382170128,0,2,2,2019,7,0,45,46,1,0,0,13.98342747394024,13.98342747394024,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,9,5,1,738.5,111460.0829485901,0,0,0,6448.975976458922 -12029,14818,26971,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.258855332054058,8.155269042758427,0,0,0,-924.864910989239,0,3,3,2019,9,0,37,36,1,0,0,13.37561257255493,13.37561257255493,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,11,8,4,0,264,-176241.6409699502,98975.34709001865,0,0,1726.380049069758 -12030,14819,26972,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,0,0,-937.7171132098692,0,3,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,18.04,51.7,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,1484,0,0,0,0,823.5556655398067 -12030,14820,26973,-9,26972,-9,1,1,18,0,0,0,2,2,1,0,5,0,5.620184896666603,5.332126543375839,0,0,-1005.450561472148,-9,2,-9,2019,19,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,5.173998574324407,0,40.28,60.76,-9,-9,5,1,1,1,1,0,11,2,0,251,165137.0094888704,147726.1971308392,0,0,-582.9882091242881 -12031,14821,26974,-9,26975,26976,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.145601050441,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,903.75,-25732.46975133364,37050.76654994239,0,0,3910.001187694755 -12031,14821,26975,26976,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.717049927144508,8.560146686011386,0,6,-6,-36.91836164081776,0,3,3,2019,7,0,41,0,1,0,0,16.9294979815171,16.9294979815171,0,0,0,0,7,1,1,0,0,0,58.15,52.91,56.04,51.3,10,2,3,0,0,6,2,4,1,903.75,-25732.46975133364,37050.76654994239,0,0,3910.001187694755 -12031,14821,26976,26975,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,8.220316110493263,8.475152861728981,0,6,6,-11.86593307810367,0,3,2,2019,11,0,37,37,1,0,0,11.58928500857729,11.58928500857729,0,0,0,0,0,1,1,0,0,0,56.04,51.3,58.15,52.91,6.666666666666667,2,3,0,0,6,2,4,1,903.75,-25732.46975133364,37050.76654994239,0,0,3910.001187694755 -12031,14821,26977,-9,26975,26976,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.046061809473,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,903.75,-25732.46975133364,37050.76654994239,0,0,3910.001187694755 -12032,14822,26978,-9,26979,26980,1,0,20,0,0,0,2,2,-9,0,4,7.654465129453615,7.566712656648007,0,0,0,-970.7687316987436,0,2,2,2019,2,0,45,20,1,0,1,4.976030936541028,4.976030936541028,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,401,147108.8001455286,-24398.08389435836,0,0,796.6925736487942 -12032,14823,26979,26980,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.319549751172179,8.250661662963633,0,6,-5,54.14728248300954,0,2,3,2019,7,0,38,44,1,0,0,15.19962152648166,15.19962152648166,0,0,0,0,7,1,1,0,0,0,51.49,57.57,50.25,54.04,10,1,1,0,0,12,4,5,1,530.5,757739.4198846633,111703.4691688612,859013.6866516958,193417.9217345543,4572.180616624299 -12032,14823,26980,26979,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.839289976355513,9.060381093780464,0,6,5,47.88459588115101,0,-9,-9,2019,9,0,46,49,1,0,0,21.34042337479395,21.34042337479395,0,0,0,0,0,1,1,0,2.165656532431326,0,50.25,54.04,51.49,57.57,6.666666666666667,1,1,0,0,12,4,5,1,530.5,757739.4198846633,111703.4691688612,859013.6866516958,193417.9217345543,4572.180616624299 -12033,14824,26981,-9,26982,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.5202423011232,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,5,1,923.5,328499.6369030292,275531.4778287786,177579.8505071597,72014.8116711645,3783.89025852526 -12033,14824,26982,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.048998650201991,9.080637788428499,0,0,0,-936.3993962708669,0,2,1,2019,8,0,38,39,1,0,0,33.95530013221244,33.95530013221244,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,923.5,328499.6369030292,275531.4778287786,177579.8505071597,72014.8116711645,3783.89025852526 -12034,14825,26983,-9,26985,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.7664506422984,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,1,0,491,-32820.7166085729,0,0,0,1993.782568244928 -12034,14825,26984,-9,26985,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.0564202804809,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,5,1,0,491,-32820.7166085729,0,0,0,1993.782568244928 -12034,14825,26985,-9,-9,-9,1,0,35,0,3,0,1,1,-9,1,2,0,0,0,0,0,-1165.412368613839,0,2,2,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,59.3,39.29,-9,-9,8.333333333333334,3,4,0,0,0,5,1,0,491,-32820.7166085729,0,0,0,1993.782568244928 -12034,14825,26986,-9,26985,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.981142695352,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,1,0,491,-32820.7166085729,0,0,0,1993.782568244928 -12035,14826,26987,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.38180668696,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,44.26,31.88,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,652,-152086.0853022649,0,0,0,-716.4095451785549 -12036,14827,26988,26989,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,41,1,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.064755563294922,0,59.07,43.05,59.88,48.2,8.333333333333334,1,1,0,0,10,12,1,1,488,398340.0307524351,-5917.49327276375,203943.4579871234,0,1392.143483628494 -12036,14827,26989,26988,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,3,-1,0,0,-9,-9,2019,9,1,0,17,4,1,0,0,0,0,0,0,0,0,1,1,0,3.261109380337257,0,59.88,48.2,59.07,43.05,8.333333333333334,1,1,0,1,12,12,1,1,488,398340.0307524351,-5917.49327276375,203943.4579871234,0,1392.143483628494 -12037,14828,26990,26991,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.663168875260661,8.927244738294776,0,2,3,-111.5488724569763,-9,-9,-9,2019,7,0,48,0,1,0,0,17.17782543699882,17.17782543699882,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.58,55.59,8.333333333333334,1,1,0,0,8,13,5,1,874.5,801058.8889890839,321304.4152403715,415705.3505858162,130304.4844473855,4483.387623718227 -12037,14828,26991,26990,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.84660590698215,9.054551528292055,0,2,-3,-10.6832519662481,0,-9,-9,2019,13,3,48,59,1,3,0,22.65800139455389,22.65800139455389,0,0,0,0,0,0,0,0,0,0,49.58,55.59,54.2,57.49,6.666666666666667,1,1,0,0,2,13,5,1,874.5,801058.8889890839,321304.4152403715,415705.3505858162,130304.4844473855,4483.387623718227 -12038,14829,26992,26994,-9,-9,1,1,31,1,1,0,1,1,-9,0,3,8.520236248444032,8.744389093175251,0,4,1,61.8461836138039,0,-9,-9,2019,9,1,42,48,1,1,0,15.09091092931328,15.09091092931328,0,0,0,0,0,0,0,0,0,0,46.71,44.73,47,57,8.333333333333334,2,3,0,0,9,8,4,0,510.3333333333333,586659.7446493114,130859.8868495381,418672.4897494155,144954.2009851931,3329.770710601603 -12038,14829,26993,-9,26994,26992,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.3325168776558,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,8,4,0,510.3333333333333,586659.7446493114,130859.8868495381,418672.4897494155,144954.2009851931,3329.770710601603 -12038,14829,26994,26992,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.769879950550523,7.716103698081004,0,4,-1,78.58119101356934,0,-9,-9,2019,11,0,40,25,1,2,0,5.99567347809537,5.99567347809537,0,0,0,0,0,0,0,0,0,0,47,57,46.71,44.73,7,2,3,0,0,2,8,4,0,510.3333333333333,586659.7446493114,130859.8868495381,418672.4897494155,144954.2009851931,3329.770710601603 -12039,14830,26995,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.429698203921861,7.624510983604941,0,0,0,-1121.21704784359,0,2,3,2019,10,0,23,23,1,0,0,8.906121735757072,8.906121735757072,0,0,0,0,2,0,0,0,3.419658518705614,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,9,13,3,1,325,350044.0155787121,149877.7279230343,297913.0602242597,36186.01183420526,687.5147850138352 -12040,14831,26996,-9,-9,-9,1,0,85,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1007.238761559179,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,0,8,1,0,755,190456.2608100906,0,0,0,313.4871971800788 -12040,14832,26997,26999,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,0,0,0,5,-5,-39.93477694375044,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,60.28,38.54,7,2,3,0,0,0,8,4,0,429,24788.9796719291,12831.05172862422,158396.394986048,110894.5332176624,2139.64663988924 -12040,14832,26998,-9,26997,26999,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.241656119793,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,429,24788.9796719291,12831.05172862422,158396.394986048,110894.5332176624,2139.64663988924 -12040,14832,26999,26997,26996,-9,1,1,33,0,1,0,1,1,-9,0,4,8.592095052178156,8.648898053698945,0,5,5,-14.04930019581166,0,3,3,2019,12,2,35,35,1,2,0,15.91908381359733,15.91908381359733,0,0,0,0,0,1,1,0,.4389667310725889,0,60.28,38.54,47,57,8.333333333333334,2,3,0,0,6,8,4,0,429,24788.9796719291,12831.05172862422,158396.394986048,110894.5332176624,2139.64663988924 -12040,14833,27000,-9,26996,-9,1,0,30,0,1,0,1,1,-9,0,4,9.069552251710206,8.831202875591039,0,0,0,-1041.617623206014,0,3,3,2019,5,0,35,40,1,0,0,23.97605191547134,23.97605191547134,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,1026,26372.85279039109,108877.2494741898,0,0,2284.399794966765 -12041,14834,27001,27002,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.985119721373399,8.18427294011256,0,7,0,-114.4748589544578,0,-9,-9,2019,9,0,30,30,1,0,0,9.784777114922973,9.784777114922973,0,0,0,0,0,1,1,0,0,0,52.37,56.93,47.56,48.93,8.333333333333334,1,1,0,0,8,12,3,1,548.5,165531.5866153612,322592.7668294157,0,0,2449.668902394718 -12041,14834,27002,27001,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,6.778066524130273,6.792771656541818,0,7,9,-85.02594635411802,0,1,1,2019,15,5,16,5,1,5,0,6.870676918607162,6.870676918607162,0,0,0,0,7,1,1,0,0,0,47.56,48.93,52.37,56.93,6.666666666666667,1,1,0,0,8,12,3,1,548.5,165531.5866153612,322592.7668294157,0,0,2449.668902394718 -12042,14835,27003,27004,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.981458106675268,6.493476474459804,54,-5,24.97767270317566,0,3,2,2019,31,11,0,0,4,11,0,0,0,1,0,25.1858267187062,0,71.5,1,1,0,4.410816475824229,6.250601071381831,13.07,33.7,20.81,27.22,8.333333333333334,2,3,0,0,0,4,2,0,1332,1721147.807286359,423376.4990708625,432327.3239445511,0,2889.425963742899 -12042,14835,27004,27003,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,0,0,54,5,-30.40864101255969,0,3,2,2019,23,8,0,0,4,8,0,0,0,1,14.54396292018068,154.111199502614,129.1968356502464,120,1,1,0,0,0,20.81,27.22,13.07,33.7,8.333333333333334,2,3,0,0,0,4,2,0,1332,1721147.807286359,423376.4990708625,432327.3239445511,0,2889.425963742899 -12043,14836,27005,-9,27006,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.809718616728,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,777.5,769181.7915394835,431348.9213742064,566815.6929482433,239548.4644040271,4703.65104048848 -12043,14836,27006,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.369694199977884,9.409467270732579,7.244748615611523,0,0,-965.9835380356565,0,2,2,2019,14,3,25,25,1,3,0,51.57060806736771,51.57060806736771,0,0,0,0,0,0,0,0,5.7154551790932,7.513655649982223,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,777.5,769181.7915394835,431348.9213742064,566815.6929482433,239548.4644040271,4703.65104048848 -12044,14837,27007,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.684315152602137,7.493744489447496,2.383742767928922,0,0,-1038.254999613309,0,-9,2,2019,12,0,37,36,1,0,0,6.821606012075816,6.821606012075816,0,0,0,0,0,0,0,0,0,2.611399239789547,48.83,49.52,-9,-9,5,1,1,0,0,12,2,3,1,338,88416.3014332836,86737.13253380744,119505.6696702913,62313.20942467044,858.7235606636489 -12045,14838,27008,27009,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.528317845339334,6.443172180154924,49,6,-29.28017602117894,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.375197149128402,53,47,50,47,8,1,1,0,0,0,13,2,1,302,128269.1227427439,69737.12992128212,0,0,2175.650438713123 -12045,14838,27009,27008,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,59,-6,70.22703243921271,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,13,2,1,302,128269.1227427439,69737.12992128212,0,0,2175.650438713123 -12046,14839,27010,27011,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.614553001331126,7.225275871068558,52,2,13.81825656276921,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,27,1,1,0,0,7.14429128101093,21.83,54.07,36.42,33.8,1.666666666666667,1,1,0,0,2,4,2,1,500.5,391664.9757757713,335116.9620926785,98572.43352417216,8115.969042434516,2118.339193200323 -12046,14839,27011,27010,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,52,-2,-29.20946433038727,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,36.42,33.8,21.83,54.07,5,1,1,0,0,5,4,2,1,500.5,391664.9757757713,335116.9620926785,98572.43352417216,8115.969042434516,2118.339193200323 -12047,14840,27012,27015,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,6.937148191267494,6.955733425776718,0,15,-2,34.27520115935683,0,2,3,2019,12,0,20,30,1,0,0,6.934755449485218,6.934755449485218,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.01,41.75,8.333333333333334,1,1,0,0,9,10,4,1,498.5,375961.6051860435,155546.0673925534,276686.3999570961,146686.7533879874,2085.191369354312 -12047,14840,27013,-9,27012,27015,1,1,17,0,1,1,1,0,0,0,3,0,0,0,0,0,-962.7452484378136,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.771092837341874,0,58.91,45.88,-9,-9,10,1,1,0,0,2,10,4,1,498.5,375961.6051860435,155546.0673925534,276686.3999570961,146686.7533879874,2085.191369354312 -12047,14840,27014,-9,27012,27015,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.540603108084,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,498.5,375961.6051860435,155546.0673925534,276686.3999570961,146686.7533879874,2085.191369354312 -12047,14840,27015,27012,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.158294346932033,8.059401092874191,0,8,2,-43.23843204548572,0,-9,-9,2019,11,0,35,36,1,0,0,12.41559021533462,12.41559021533462,0,0,0,0,7,1,1,0,0,0,42.01,41.75,51.83,57.2,5,1,1,0,0,9,10,4,1,498.5,375961.6051860435,155546.0673925534,276686.3999570961,146686.7533879874,2085.191369354312 -12048,14841,27016,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.076219759506719,7.958489225987185,5.171411145517887,0,0,-955.8408009155371,0,3,3,2019,11,1,36,36,1,1,0,12.09637393997395,12.09637393997395,0,0,0,0,0,1,1,0,0,4.868427055091543,43.35,52.88,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,409,598148.0346381878,387329.3359331387,553141.8005108699,265751.0925794636,2126.093738443205 -12049,14842,27017,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.773002187483979,7.922582485975002,0,0,-986.0310167549335,0,3,3,2019,7,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,3.653851342694462,7.580273073854952,66.37,38.36,-9,-9,10,1,1,0,0,8,8,3,1,330,883510.6853506031,703442.4179481544,0,0,1800.204174650917 -12050,14843,27018,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.823668427691332,7.899024224063372,0,0,-911.8192566482898,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.487061119587071,7.994552493612723,57.73,54.53,-9,-9,10,1,1,0,0,0,11,4,1,743,268752.8409172504,92704.22619125174,213321.9535364094,0,1847.917560058069 -12051,14844,27019,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.207416573733349,7.941885547412002,0,0,0,-878.2753654071551,0,3,3,2019,10,0,47,48,1,1,0,7.805361460319001,7.805361460319001,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,12,5,4,1,2297,135451.6605582782,8174.925530167035,0,0,2182.095734387762 -12052,14845,27020,27021,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.937244442643276,6.518965247477041,53,6,43.89110766576884,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.168018410464705,7.093191232283752,54,46,57.16,56.15,8,1,1,0,0,0,11,2,1,789.5,266618.6074968284,97005.48556218712,196465.2320627704,0,2508.801568685048 -12052,14845,27021,27020,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.486995264157471,6.590237174610952,53,-6,35.40275117809955,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.675810538496995,0,0,1,1,0,4.204034076896181,6.027114099106567,57.16,56.15,54,46,10,1,1,0,0,0,11,2,1,789.5,266618.6074968284,97005.48556218712,196465.2320627704,0,2508.801568685048 -12053,14846,27022,27025,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,0,0,0,13,0,-155.7855664247568,0,2,2,2019,5,0,0,5,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.46,56.16,52.39,45.21,8.333333333333334,1,1,0,0,4,7,5,1,376.25,775538.7275913829,87591.73177690154,370884.7771645947,68145.74180794763,4235.218116127205 -12053,14846,27023,-9,27022,27025,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.2135324822619,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,376.25,775538.7275913829,87591.73177690154,370884.7771645947,68145.74180794763,4235.218116127205 -12053,14846,27024,-9,27022,27025,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.677287326797,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,376.25,775538.7275913829,87591.73177690154,370884.7771645947,68145.74180794763,4235.218116127205 -12053,14846,27025,27022,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,9.480175581811572,9.482403724036926,0,13,0,47.79489458863389,0,2,2,2019,6,0,57,49,1,0,0,26.97379485114376,26.97379485114376,0,0,0,0,0,1,1,0,0,0,52.39,45.21,30.46,56.16,8.333333333333334,1,1,0,0,11,7,5,1,376.25,775538.7275913829,87591.73177690154,370884.7771645947,68145.74180794763,4235.218116127205 -12054,14847,27026,-9,27028,27027,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.3231557109758,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,305.25,421705.1500439466,224490.4893347965,158019.6556990484,0,3914.456712477124 -12054,14847,27027,27028,-9,-9,1,1,42,0,2,0,1,1,-9,0,1,9.347320514018,9.180856695414532,0,19,2,-120.9899555215021,0,1,3,2019,18,6,40,43,1,6,0,30.66709289429872,30.66709289429872,0,0,0,0,0,0,0,0,0,0,30.89,35.01,45.91,59.89,1.666666666666667,1,1,0,0,11,1,4,1,305.25,421705.1500439466,224490.4893347965,158019.6556990484,0,3914.456712477124 -12054,14847,27028,27027,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,18,-2,-29.02357272901281,1,3,3,2019,13,1,0,35,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,30.89,35.01,6.666666666666667,1,1,0,0,10,1,4,1,305.25,421705.1500439466,224490.4893347965,158019.6556990484,0,3914.456712477124 -12054,14847,27029,-9,27028,27027,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-898.4188355982456,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,1,305.25,421705.1500439466,224490.4893347965,158019.6556990484,0,3914.456712477124 -12055,14848,27030,27031,-9,-9,1,0,60,0,3,0,1,1,-9,0,4,7.662356197491565,7.587174450771874,4.914552402689771,40,-3,-45.72210956959734,0,3,3,2019,10,0,17,20,1,0,0,14.6256227686401,14.6256227686401,0,0,0,0,27,1,1,0,2.33296157005075,5.160594966236598,49.35,59.64,61.1,27.44,8.333333333333334,1,1,0,0,9,2,3,1,605.5,1070334.402588999,780496.5786253797,211454.5847615641,0,3147.412363630881 -12055,14848,27031,27030,-9,-9,1,1,63,0,3,0,2,2,-9,0,3,8.491714118876201,7.968207161357854,4.483576555668224,40,3,4.664433122977388,0,2,3,2019,11,3,40,40,1,3,0,11.66562659418543,11.66562659418543,0,0,0,0,2,1,1,0,5.858055189734898,4.585641871192552,61.1,27.44,49.35,59.64,8.333333333333334,1,1,0,0,9,2,3,1,605.5,1070334.402588999,780496.5786253797,211454.5847615641,0,3147.412363630881 -12055,14849,27032,-9,27030,27031,1,1,33,0,3,0,2,2,-9,1,5,6.895096359332642,6.89145770549608,0,0,0,-1118.98895249741,0,1,2,2019,3,0,19,21,1,0,1,4.388155892163338,4.388155892163338,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,9,2,2,1,439,70251.94179041577,46920.13805551425,0,0,795.8350915158754 -12055,14850,27033,-9,27030,27031,1,0,35,0,3,0,2,2,-9,1,1,0,0,0,0,0,-948.9707054238797,0,1,2,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,30.68,20.24,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,607.5,0,0,0,0,1761.153177457577 -12055,14850,27034,-9,27033,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.3192416001385,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,1,607.5,0,0,0,0,1761.153177457577 -12055,14850,27035,-9,27033,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.984441525137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,607.5,0,0,0,0,1761.153177457577 -12055,14850,27036,-9,27033,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.981496074038,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,607.5,0,0,0,0,1761.153177457577 -12056,14851,27037,27038,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,69,-4,0,0,3,3,2019,13,0,0,0,4,2,0,0,0,1,0,12.77853483487523,0,71.5,1,1,0,0,0,34.06,38.71,56,44,6.666666666666667,1,1,0,0,0,1,1,0,2669.5,162847.9185317458,-1021.748443163562,90339.1095269268,41474.72833032062,1813.22249497564 -12056,14851,27038,27037,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,69,4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,122.6435098534011,0,0,1,1,0,0,0,56,44,34.06,38.71,8,1,1,0,0,0,1,1,0,2669.5,162847.9185317458,-1021.748443163562,90339.1095269268,41474.72833032062,1813.22249497564 -12057,14852,27039,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.079368469192,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.209914507491391,0,55.27,39.27,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,325,103371.432257398,0,0,0,736.3008031020299 -12058,14853,27040,-9,27043,27042,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.654841813673,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,4,1,1045.75,387256.8653678598,49026.00688216306,602716.7477169719,329412.4589877702,3285.369851134159 -12058,14853,27041,-9,27043,27042,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.355205508949,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,1045.75,387256.8653678598,49026.00688216306,602716.7477169719,329412.4589877702,3285.369851134159 -12058,14853,27042,27043,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.822213810529586,8.684167443992447,0,6,-6,-114.3074210403261,0,-9,-9,2019,9,0,40,40,1,1,0,17.78296083756077,17.78296083756077,0,0,0,0,0,1,1,0,0,0,51,56,22.42,61.69,8,2,3,0,0,1,9,4,1,1045.75,387256.8653678598,49026.00688216306,602716.7477169719,329412.4589877702,3285.369851134159 -12058,14853,27043,27042,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,7.377354616901501,7.273326196780691,0,6,6,-66.25574074803754,0,3,3,2019,26,9,20,27,1,9,0,9.571118895762647,9.571118895762647,0,0,0,0,27,1,1,0,0,0,22.42,61.69,51,56,1.666666666666667,2,3,0,0,9,9,4,1,1045.75,387256.8653678598,49026.00688216306,602716.7477169719,329412.4589877702,3285.369851134159 -12058,14854,27044,-9,27043,27042,1,1,18,0,2,0,2,2,1,0,4,7.524079857714447,7.614062928987594,0,0,0,-942.0906300572307,-9,3,1,2019,24,12,42,0,1,12,1,5.244951267634343,5.244951267634343,0,0,0,0,7,1,1,0,0,0,26.44,62.16,-9,-9,5,2,3,0,0,2,9,3,1,128,191671.6581299972,-40258.37620539627,0,0,764.5734733086357 -12059,14855,27045,-9,-9,-9,1,0,41,1,7,0,3,3,-9,0,3,0,0,0,0,0,-934.5645459466306,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,3.333333333333333,1,1,0,1,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27046,-9,27045,-9,1,1,10,1,7,1,3,0,-9,0,3,0,0,0,0,0,-987.6723825647963,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27047,-9,27045,-9,1,1,6,1,7,1,3,0,-9,0,4,0,0,0,0,0,-950.2469295319627,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27048,-9,27045,-9,1,0,16,1,7,1,2,0,-9,0,4,0,0,0,0,0,-1062.013811459589,-9,3,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,8.333333333333334,4,5,0,0,13,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27049,-9,27045,-9,1,1,12,1,7,1,3,0,-9,0,5,0,0,0,0,0,-1052.027568709102,-9,3,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27050,-9,27045,-9,1,0,14,1,7,1,3,0,-9,0,3,0,0,0,0,0,-1156.140056177216,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,5,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27051,-9,27045,-9,1,0,2,1,7,1,3,0,-9,0,4,0,0,0,0,0,-1059.773178151936,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14855,27052,-9,27045,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-1080.050772398496,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,1167.75,-31051.02489377466,0,0,0,1484.179120417703 -12059,14856,27053,-9,27054,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-999.8541119809612,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,936.5,-30379.35623106619,0,0,0,0 -12059,14856,27054,-9,27045,-9,1,0,23,1,7,0,2,2,-9,0,5,0,0,0,0,0,-854.5528327298657,0,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,936.5,-30379.35623106619,0,0,0,0 -12059,14857,27055,-9,27045,-9,1,1,21,1,7,0,2,2,-9,0,5,0,0,0,0,0,-952.8098242402182,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,361,0,0,0,0,0 -12059,14858,27056,-9,27045,-9,1,1,19,1,7,0,2,2,-9,0,5,7.604245518233922,7.137914478287154,0,0,0,-958.3246944309205,0,3,-9,2019,6,0,40,0,1,0,1,5.671968346911952,5.671968346911952,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,4,5,0,1,1,8,3,0,245,-6914.942943158248,0,0,0,1330.603833673076 -12059,14859,27057,-9,27045,-9,1,1,18,1,7,0,3,3,-9,0,5,4.876377429999335,4.878331894808825,0,0,0,-1109.659835685377,0,3,-9,2019,8,0,40,0,1,0,1,.3484693317393602,.3484693317393602,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,4,5,0,0,1,8,2,0,756,197629.8815115283,0,0,0,-190.5981050400007 -12060,14860,27058,27059,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,5.177690067862478,5.108586492081038,38,0,-63.15865791146243,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.261556520750876,5.150824941421705,57.73,54.53,45.02,47.07,8.333333333333334,1,1,0,0,8,8,4,1,1044,2434600.262924992,1342623.004405727,453722.2846987599,0,3571.745359393607 -12060,14860,27059,27058,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.378676576579196,8.205617070529462,37,9,99.23645157823948,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.655278637470825,8.321558142295197,45.02,47.07,57.73,54.53,5,1,1,0,0,0,8,4,1,1044,2434600.262924992,1342623.004405727,453722.2846987599,0,3571.745359393607 -12061,14861,27060,27061,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,4,7,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.74,31.71,62.28,26.88,8.333333333333334,1,1,0,0,0,2,1,0,1344,144038.2997505102,0,155460.1143635201,0,2466.867388721123 -12061,14861,27061,27060,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,4,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.28,26.88,60.74,31.71,8.333333333333334,1,1,0,0,0,2,1,0,1344,144038.2997505102,0,155460.1143635201,0,2466.867388721123 -12062,14862,27062,27063,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.037972381103737,8.174666787909432,0,7,-3,19.17762325563267,0,-9,3,2019,7,0,45,39,1,0,0,8.595288424413214,8.595288424413214,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.37,54.8,1.666666666666667,1,1,0,1,7,8,4,0,483,550455.3771334367,212526.9493104822,495761.4469617265,162342.8373141666,1974.901569812494 -12062,14862,27063,27062,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.802084642087014,7.918594749700084,0,7,3,-62.85779129765723,0,-9,-9,2019,8,0,38,36,1,0,0,6.124505374382037,6.124505374382037,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.33,53.46,6.666666666666667,1,1,0,1,8,8,4,0,483,550455.3771334367,212526.9493104822,495761.4469617265,162342.8373141666,1974.901569812494 -12062,14863,27064,-9,27063,27062,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1091.078582299853,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,1,0,0,8,1,0,333,128895.2776725362,0,0,0,619.380729569613 -12063,14864,27065,-9,-9,-9,1,0,59,0,0,0,1,1,-9,1,1,7.941671997365222,7.753051112043002,0,0,0,-947.4841375806775,0,2,3,2019,30,12,42,43,1,12,0,8.101823452225108,8.101823452225108,0,0,0,0,42,1,1,0,1.932102219374217,0,32.66,19.3,-9,-9,1.666666666666667,1,1,0,1,11,2,4,0,1066,544217.1287819423,467299.3483905378,162902.6011696453,0,1409.225786597773 -12064,14865,27066,-9,27067,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1068.704501298161,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,2,1,1020.5,-51819.99225913743,20655.06967139262,0,0,1092.217664288657 -12064,14865,27067,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.508247881123513,6.974889668599283,6.412728884047392,0,0,-1031.38090739148,0,1,3,2019,12,0,16,16,1,0,0,5.553127932613328,5.553127932613328,0,0,0,0,0,1,1,0,6.140267991316965,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,1020.5,-51819.99225913743,20655.06967139262,0,0,1092.217664288657 -12065,14866,27068,27069,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,42,-12,-63.8674538271127,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,50.89,49.95,10,1,1,0,0,0,2,2,1,2282.5,121967.9680824697,6840.710404230675,137651.2418460177,29783.33389072907,1839.06260012041 -12065,14866,27069,27068,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.513130707278019,6.335672530008846,42,12,-26.49904460994556,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.793651716706697,6.766271869995657,50.89,49.95,57.33,53.46,8.333333333333334,1,1,0,0,9,2,2,1,2282.5,121967.9680824697,6840.710404230675,137651.2418460177,29783.33389072907,1839.06260012041 -12066,14867,27070,27071,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.034483111071538,7.255672352486701,0,9,10,-127.7973058679255,0,-9,-9,2019,9,0,45,45,1,0,0,3.175831948509322,3.175831948509322,0,0,0,0,0,0,0,0,6.345117730928628,0,54.1,59.11,51.14,60.45,10,1,1,0,0,9,10,5,1,367.5,1076570.672810847,598079.3373247004,222406.0151368161,0,5443.181358758933 -12066,14867,27071,27070,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,9.541371686800556,9.663337525633784,0,9,-10,-47.1341006729828,0,2,2,2019,14,3,46,43,1,3,0,38.58053546953976,38.58053546953976,0,0,0,0,0,0,0,0,3.966529748570233,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,11,10,5,1,367.5,1076570.672810847,598079.3373247004,222406.0151368161,0,5443.181358758933 -12067,14868,27072,-9,27075,27074,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.139876768727,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,507,212912.8021777311,187079.3084196402,95650.36210418737,29981.40507228235,1517.938939832512 -12067,14868,27073,-9,27075,27074,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.353245802517,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,507,212912.8021777311,187079.3084196402,95650.36210418737,29981.40507228235,1517.938939832512 -12067,14868,27074,27075,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.458699105677399,7.829371649301617,0,15,13,7.069894142050557,0,2,1,2019,10,0,42,40,1,0,0,10.1352970408134,10.1352970408134,0,0,0,0,0,1,1,0,0,0,52,54.51,50.24,58.02,8.333333333333334,1,1,0,0,13,12,3,1,507,212912.8021777311,187079.3084196402,95650.36210418737,29981.40507228235,1517.938939832512 -12067,14868,27075,27074,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,0,0,0,16,-13,129.6515657345644,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.46631650467162,0,50.24,58.02,52,54.51,8.333333333333334,1,1,0,0,7,12,3,1,507,212912.8021777311,187079.3084196402,95650.36210418737,29981.40507228235,1517.938939832512 -12068,14869,27076,27077,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.447778261316017,8.432977480709608,45,-7,-.0136223876570729,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.866333265959986,8.579670547185781,47.91,53.86,50.42,43.32,8.333333333333334,1,1,0,0,0,1,5,1,359.5,1403004.773702339,83965.69689574985,553275.9845518613,0,5249.098611432106 -12068,14869,27077,27076,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.270351859025144,8.731852550958855,9,7,67.51858580012406,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.040104658099974,8.317491679730809,50.42,43.32,47.91,53.86,8.333333333333334,1,1,0,0,0,1,5,1,359.5,1403004.773702339,83965.69689574985,553275.9845518613,0,5249.098611432106 -12069,14870,27078,-9,-9,-9,1,1,30,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1001.971776585497,-9,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,9.950000000000001,51.31,-9,-9,1.666666666666667,1,1,1,0,8,8,1,0,894,-60427.62156153417,0,0,0,71.48926826248317 -12070,14871,27079,27080,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.487901846287809,8.350826557144256,0,1,3,79.35821044496008,0,2,3,2019,9,0,49,45,1,0,0,14.04666379194366,14.04666379194366,0,0,0,0,0,0,0,0,0,0,49.69,55.66,43.63,61.31,5,1,1,0,0,9,9,5,1,1011,99597.30586164047,8634.637792204045,211652.5283533352,172310.1196404282,3363.788271582203 -12070,14871,27080,27079,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.148925155093295,8.217795079144915,0,1,-3,101.9390039477618,-9,-9,-9,2019,10,0,49,0,1,0,0,7.919070799295655,7.919070799295655,0,0,0,0,0,0,0,0,0,0,43.63,61.31,49.69,55.66,8.333333333333334,1,1,0,0,1,9,5,1,1011,99597.30586164047,8634.637792204045,211652.5283533352,172310.1196404282,3363.788271582203 -12071,14872,27081,27082,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.435054848764286,8.538718033752847,0,6,-3,-178.7558990551118,0,-9,-9,2019,11,0,38,41,1,0,0,12.16306587911153,12.16306587911153,0,0,0,0,0,0,0,0,2.112370898964842,0,48.03,46.88,52.77,55.33,8.333333333333334,1,1,0,0,7,12,5,1,794.5,436774.8373132308,117244.0045566725,224820.4813293885,46558.22996248848,3303.2621467962 -12071,14872,27082,27081,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.268249649129325,8.524501364966079,0,6,3,-74.03957610674162,0,-9,-9,2019,8,0,50,48,1,0,0,8.076809875704521,8.076809875704521,0,0,0,0,0,0,0,0,0,0,52.77,55.33,48.03,46.88,8.333333333333334,1,1,0,0,7,12,5,1,794.5,436774.8373132308,117244.0045566725,224820.4813293885,46558.22996248848,3303.2621467962 -12072,14873,27083,-9,-9,-9,1,0,35,0,0,0,3,3,-9,0,2,7.969539956265046,8.005978854182214,0,0,0,-929.6491056647701,0,-9,-9,2019,14,4,50,50,1,4,0,8.225334117521133,8.225334117521133,0,0,0,0,0,0,0,0,0,0,46.47,43.95,-9,-9,8.333333333333334,1,1,0,0,12,7,4,0,313,173380.3875458974,44701.35530756469,0,0,888.560293797203 -12073,14874,27084,-9,27085,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-936.5723552039979,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,535.6666666666666,103386.9441393764,0,102292.376315425,0,688.6549081082829 -12073,14874,27085,27086,-9,-9,1,0,31,1,1,0,3,3,-9,0,3,0,0,0,1,7,0,0,2,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,25.48,54.68,48,59,5,1,1,0,1,5,12,1,0,535.6666666666666,103386.9441393764,0,102292.376315425,0,688.6549081082829 -12073,14874,27086,27085,-9,-9,1,1,24,1,1,0,3,3,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,25.48,54.68,7,1,1,1,0,0,12,1,0,535.6666666666666,103386.9441393764,0,102292.376315425,0,688.6549081082829 -12074,14875,27087,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.183937865395,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.93,23.01,-9,-9,5,3,4,1,0,0,8,1,0,486,-3551.590873973942,0,0,0,1631.680419172102 -12074,14876,27088,-9,27087,-9,1,1,24,0,0,0,2,2,-9,0,3,7.937293519787221,8.119603199269795,0,0,0,-954.0097852791266,0,2,2,2019,10,3,45,63,1,3,1,7.774275008256333,7.774275008256333,0,0,0,0,27,1,1,0,0,0,44.6,52.77,-9,-9,5,3,4,0,0,3,8,4,0,766,-141184.4943821445,0,0,0,988.6360207775795 -12075,14877,27089,27090,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,5.86793526474033,6.012254111058324,0,10,0,-5.617845630134102,0,3,2,2019,20,6,16,16,1,6,0,2.338775592103913,2.338775592103913,0,0,0,0,0,0,0,0,0,0,27.61,33.64,42.47,53.52,5,1,1,0,0,9,5,4,1,322,469556.8526122783,116527.4335060505,221421.9486252807,20675.24415317263,1764.647599344969 -12075,14877,27090,27089,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.184129006809114,8.162702834042104,0,10,0,108.8207334402785,0,2,-9,2019,15,5,48,43,1,5,0,11.58959207467472,11.58959207467472,0,0,0,0,0,0,0,0,0,0,42.47,53.52,27.61,33.64,5,1,1,0,0,10,5,4,1,322,469556.8526122783,116527.4335060505,221421.9486252807,20675.24415317263,1764.647599344969 -12076,14878,27091,27092,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.714077965755588,5.503035989129271,9,4,-7.861721421298083,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.773879618681528,47.13,22.01,51.3,26.88,5,1,1,0,0,0,11,2,1,1087,221348.3813277875,29819.30667889791,223096.1130143484,68459.76367406116,1681.315348071131 -12076,14878,27092,27091,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,9,-4,-71.1109431700537,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,13.24283549199339,0,0,1,1,0,0,0,51.3,26.88,47.13,22.01,5,1,1,0,0,0,11,2,1,1087,221348.3813277875,29819.30667889791,223096.1130143484,68459.76367406116,1681.315348071131 -12077,14879,27093,-9,27095,27094,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-930.8601736719127,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,55.9,52.64,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,928.3333333333334,404147.072620966,329622.0617536585,175537.9174186426,106011.5464705066,1509.084117272627 -12077,14879,27094,27095,-9,-9,1,1,46,0,1,0,3,3,-9,1,1,0,0,0,4,-1,16.16924126048833,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,25.24,26.72,54.94,53.18,1.666666666666667,1,1,0,1,8,5,3,1,928.3333333333334,404147.072620966,329622.0617536585,175537.9174186426,106011.5464705066,1509.084117272627 -12077,14879,27095,27094,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.90886758766502,7.648898466200225,0,4,1,19.12637367137111,0,3,2,2019,10,0,40,40,1,0,0,6.850660889773439,6.850660889773439,0,0,0,0,0,1,0,1,0,0,54.94,53.18,25.24,26.72,3.333333333333333,1,1,0,1,5,5,3,1,928.3333333333334,404147.072620966,329622.0617536585,175537.9174186426,106011.5464705066,1509.084117272627 -12077,14880,27096,-9,27095,27094,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-890.5029115316293,0,2,3,2019,29,11,0,35,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,9.75,67.33,-9,-9,0,1,1,0,1,5,5,1,1,144,13971.65247541565,0,0,0,-69.00062925729088 -12078,14881,27097,27098,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.530556675041157,7.690739092491481,0,28,1,-58.79515363825325,0,2,3,2019,13,2,24,24,1,2,0,8.208740429280258,8.208740429280258,0,0,0,0,0,0,0,0,0,0,44.66,57.83,55.36,51.57,8.333333333333334,1,1,0,0,11,12,4,1,1085,134227.6450480326,138360.6105023187,164291.473396948,84156.56818471209,2576.104921801142 -12078,14881,27098,27097,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.003360776496052,7.983072614293635,0,28,-1,51.58745062714345,0,3,3,2019,8,1,54,54,1,1,0,7.972369850613586,7.972369850613586,0,0,0,0,0,0,0,0,0,0,55.36,51.57,44.66,57.83,8.333333333333334,1,1,0,0,8,12,4,1,1085,134227.6450480326,138360.6105023187,164291.473396948,84156.56818471209,2576.104921801142 -12078,14882,27099,-9,27097,27098,1,0,23,0,0,0,2,2,-9,0,4,7.834825820562664,7.748198581103707,0,0,0,-1172.520246733228,0,2,3,2019,9,2,35,40,1,2,1,9.299327212517767,9.299327212517767,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,2456,-164984.816544696,0,0,0,1270.165862810733 -12078,14883,27100,-9,27097,27098,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1109.029626054217,-9,2,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,648,0,0,0,0,438.0173802887442 -12079,14884,27101,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.790577770523592,8.09734726055367,0,0,0,-838.8755501107257,0,1,1,2019,15,3,25,4,1,3,0,10.88873286306617,10.88873286306617,0,0,0,0,0,1,1,0,5.285686339504718,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,7,9,3,1,1427,795156.96648419,265515.736439865,225374.8709073713,0,755.5613473235859 -12080,14885,27102,27103,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.29463906292626,8.112618116110484,46,2,-98.78088241330249,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.882198437902179,8.254954106087764,57.73,41.12,58.72,51.29,10,1,1,0,0,0,6,5,1,748.5,1229907.606393133,93117.85859811534,608360.4216040686,0,5509.908394922692 -12080,14885,27103,27102,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.228823688481089,8.284287201701163,46,-2,83.4995501376835,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.304708577269088,8.268410240324055,58.72,51.29,57.73,41.12,10,1,1,0,0,5,6,5,1,748.5,1229907.606393133,93117.85859811534,608360.4216040686,0,5509.908394922692 -12081,14886,27104,27105,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.638192695953173,7.518767664888353,6,0,-59.86662634270556,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.894179634042151,57.16,56.15,56.67,42.78,1.666666666666667,1,1,0,0,5,9,3,1,345.5,1250060.695906154,655421.0879933193,322818.8344736753,0,1798.84489879922 -12081,14886,27105,27104,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.33641545447195,6.597009386150581,6,0,88.20987040918973,0,3,3,2019,9,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,4.560265725932001,6.323213839340873,56.67,42.78,57.16,56.15,8.333333333333334,1,1,0,0,6,9,3,1,345.5,1250060.695906154,655421.0879933193,322818.8344736753,0,1798.84489879922 -12082,14887,27106,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,0,0,-955.7834498847254,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,1,1,0,0,0,13,1,0,934,141766.9180709802,0,0,0,1794.937791339652 -12083,14888,27107,27108,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.22503075389608,8.519116790155078,0,4,-3,-70.48913866976761,0,-9,-9,2019,6,0,40,36,1,0,0,10.53267018879502,10.53267018879502,0,0,0,0,0,0,0,0,1.032742067428034,0,62.39,56.71,49,58,10,1,1,0,0,5,4,5,1,1015.5,110600.8739279474,-87304.73276790671,342984.7462141985,195615.4330040126,3942.138324069638 -12083,14888,27108,27107,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.622589483857622,8.266058420612973,0,4,3,74.67940155367999,-9,-9,-9,2019,10,0,50,0,1,1,0,10.05096512021919,10.05096512021919,0,0,0,0,0,0,0,0,.4516999829694723,0,49,58,62.39,56.71,7,1,1,0,0,1,4,5,1,1015.5,110600.8739279474,-87304.73276790671,342984.7462141985,195615.4330040126,3942.138324069638 -12084,14889,27109,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.268311389831311,8.298213002632552,0,1,8,-14.00326912483527,-9,3,3,2019,4,0,38,0,1,0,0,14.35699027004921,14.35699027004921,0,0,0,0,0,0,0,0,7.190772111587815,0,60.12,54.8,52.61,49.93,10,1,1,0,0,7,7,5,1,513,-15953.99766421388,-24210.13260701355,0,0,2335.527536913436 -12084,14890,27110,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.181737805092517,8.302227172825125,0,1,-8,-80.52074239954,0,-9,-9,2019,10,0,37,32,1,0,0,10.65334917539435,10.65334917539435,0,0,0,0,0,0,0,0,2.680838444960497,0,52.61,49.93,60.12,54.8,8.333333333333334,1,1,0,0,10,7,5,1,1587,21806.18607272388,0,0,0,2136.278276193781 -12085,14891,27111,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,9.196094581448966,9.13882304582487,0,0,0,-868.5725110646147,-9,1,1,2019,10,0,50,0,1,1,0,26.28128611931491,26.28128611931491,0,0,0,0,0,0,0,0,4.224936681426796,0,48,58,-9,-9,7,1,1,0,0,8,8,5,1,394,-81741.34854183081,137039.8521180168,0,0,5528.072759933366 -12086,14892,27112,27113,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.39402143308911,7.59081061163794,59,3,68.49772225485411,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,7.453371858777497,54,45,52,45,8,1,1,0,0,0,13,3,1,368.5,606615.3124958815,326797.1048166571,0,0,2515.471914608964 -12086,14892,27113,27112,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.58779977100993,6.690657094077769,59,-3,116.4818791915381,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,39.95371161520138,0,0,1,1,0,.306810496512971,6.580005356972942,52,45,54,45,8,1,1,0,0,0,13,3,1,368.5,606615.3124958815,326797.1048166571,0,0,2515.471914608964 -12087,14893,27114,27115,27116,-9,1,0,62,0,0,0,2,2,-9,0,3,7.593557995097099,7.603637181193043,0,25,10,128.3295891309458,0,2,1,2019,12,0,55,50,1,0,0,3.562399001792624,3.562399001792624,0,0,0,0,2,1,1,0,0,0,52.51,54.26,54.37,54.8,8.333333333333334,1,1,0,0,5,11,5,1,593.5,373279.063011168,-51971.9866926166,170347.6629001453,52409.95816328439,3414.564707336564 -12087,14893,27115,27114,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.710278437856791,8.738428911202844,0,25,-10,-32.29961965183509,0,2,2,2019,13,1,70,50,1,1,0,8.090549109136843,8.090549109136843,0,0,0,0,0,1,1,0,7.472354518222789,0,54.37,54.8,52.51,54.26,8.333333333333334,1,1,0,0,7,11,5,1,593.5,373279.063011168,-51971.9866926166,170347.6629001453,52409.95816328439,3414.564707336564 -12087,14894,27116,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.219593246479172,5.505315393046204,0,0,-910.6099775723347,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,1.731570368705579,3.368892222788722,0,0,1,1,0,0,5.435155574499701,53,44,-9,-9,7,1,1,0,0,0,11,2,1,1984,-56764.55576491353,-13094.88580090047,0,0,558.338897180186 -12088,14895,27117,27118,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.731455077467604,9.582790820709246,0,8,-6,71.09312059601025,0,2,2,2019,6,0,38,37,1,0,0,45.2340109856507,45.2340109856507,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.57,49.69,8.333333333333334,1,1,0,0,9,9,5,1,1112.5,2382230.496223602,2105248.76634197,572806.4936664593,283137.3152140721,8157.765788014235 -12088,14895,27118,27117,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.162059162970782,6.164557364784325,0,8,6,-62.82869149332864,0,2,3,2019,8,0,50,72,1,0,0,1.211595504022487,1.211595504022487,1,0,0,0,0,1,1,0,7.776097304445498,0,57.57,49.69,58.15,52.91,1.666666666666667,1,1,0,0,9,9,5,1,1112.5,2382230.496223602,2105248.76634197,572806.4936664593,283137.3152140721,8157.765788014235 -12088,14896,27119,-9,27118,27117,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.632696659653,-9,3,1,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1161,0,0,0,0,0 -12089,14897,27120,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.931626438742327,5.919495591376353,0,0,-1065.78659013256,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,18.90879648365726,0,0,1,1,0,0,5.986654667587026,47.29,40.6,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,803,158659.2338796863,36781.3075062228,178092.9742035295,0,1527.165224197704 -12089,14898,27121,-9,27120,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1125.444528535155,0,3,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.68,30,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,264,8504.569018282004,0,0,0,673.365425473961 -12089,14899,27122,-9,27120,-9,1,0,50,0,0,0,3,3,-9,0,3,7.329148266299072,7.246167880238555,0,0,0,-1000.730643008245,0,3,3,2019,12,0,36,36,1,2,0,5.412676982791322,5.412676982791322,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,0,1,13,3,1,1255,-56257.48017803633,0,0,0,1586.016767183277 -12090,14900,27123,27124,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-2,-94.43504678491776,0,3,3,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,0,0,38,24,29.54,34.21,0,1,1,0,0,8,10,2,1,2459.5,650377.1488419684,333892.3562578047,170197.2925617666,0,2353.427143550056 -12090,14900,27124,27123,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.474738317182182,7.357995281590291,9,2,34.94307187786622,0,-9,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.976067465011107,7.471204571744651,29.54,34.21,38,24,1.666666666666667,1,1,0,0,0,10,2,1,2459.5,650377.1488419684,333892.3562578047,170197.2925617666,0,2353.427143550056 -12091,14901,27125,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.286939490318272,8.242178522344275,0,0,0,-991.0189655279422,0,2,2,2019,9,0,35,36,1,0,0,8.732269242795438,8.732269242795438,0,0,0,0,0,0,0,0,3.264208954159959,0,45.15,57.46,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,727,507678.5197548706,662500.4848965621,0,0,1296.940003340485 -12092,14902,27126,27127,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.285465273901426,8.987558658533658,0,27,-4,2.792844003463153,0,3,1,2019,6,0,30,25,1,0,0,29.27921767154603,29.27921767154603,0,0,0,0,0,0,0,0,2.817947259088047,0,59.71,50.89,49.35,59.64,8.333333333333334,1,1,0,0,8,12,5,1,1587,1170554.641280804,965000.5455045546,260574.6905842947,90729.69934506499,5083.00694658449 -12092,14902,27127,27126,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.222540986296758,8.140494468759105,0,27,4,-10.15176541284485,0,-9,3,2019,10,0,20,20,1,0,0,17.96026039131494,17.96026039131494,0,0,0,0,0,0,0,0,7.261510112398604,0,49.35,59.64,59.71,50.89,8.333333333333334,1,1,0,0,7,12,5,1,1587,1170554.641280804,965000.5455045546,260574.6905842947,90729.69934506499,5083.00694658449 -12093,14903,27128,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,2.608271693118949,3.01879199104012,0,0,-941.759748513172,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,2.811954693677259,51.42,29.35,-9,-9,5,1,1,0,0,0,4,2,0,329,-12326.59451676902,-64779.33334395797,96902.06516156552,0,1171.575218260573 -12094,14904,27129,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.773280518691525,8.639138501425682,0,0,0,-1028.927028710831,0,-9,-9,2019,3,0,47,40,1,0,0,13.486224704803,13.486224704803,0,0,0,0,0,1,1,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,0,2,5,5,0,83,29525.12410935682,64095.62445931602,0,0,2330.678257995515 -12095,14905,27130,27131,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.850379202960887,7.846497027313276,0,46,-1,-102.5331145905146,0,-9,-9,2019,12,0,25,25,1,0,0,8.135138002062797,8.135138002062797,0,0,0,0,0,1,1,0,3.490436079847161,0,48.24,53.66,60.95,22.45,8.333333333333334,1,1,0,0,9,5,4,1,420.5,214249.7974811519,0,131871.4998716924,0,1942.452677629897 -12095,14905,27131,27130,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,7.668158710824267,7.994134108650629,0,46,1,13.17588274755322,0,2,-9,2019,6,0,30,32,1,0,0,9.377669428418523,9.377669428418523,0,0,0,0,0,1,1,0,3.114757373851551,0,60.95,22.45,48.24,53.66,8.333333333333334,1,1,0,0,5,5,4,1,420.5,214249.7974811519,0,131871.4998716924,0,1942.452677629897 -12096,14906,27132,27133,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.356548448089796,5.079940648185628,10,-3,23.41705741423823,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.138224714517475,5.394727433564398,48.54,46.62,54.2,57.49,8.333333333333334,1,1,0,0,0,12,2,1,398,280526.4734698759,40462.25820018112,122333.386680009,0,1230.842878389428 -12096,14906,27133,27132,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.42740021895076,6.490937804772237,10,3,103.8593816033722,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,2.502840205190309,0,27,1,1,0,4.259390544888431,6.527734074112846,54.2,57.49,48.54,46.62,6.666666666666667,1,1,0,0,0,12,2,1,398,280526.4734698759,40462.25820018112,122333.386680009,0,1230.842878389428 -12097,14907,27134,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.572249363472486,7.737973551754506,6.751907030180345,0,0,-986.248781081581,0,3,3,2019,8,1,17,17,1,1,0,12.29384445498193,12.29384445498193,0,0,0,0,0,1,1,0,6.869511662606637,6.888521382291856,54.57,49.24,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,756,-147367.6440615389,-39246.65999625613,0,0,1877.21831658735 -12098,14908,27135,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.9561301329508,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.71,21.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,575,-44609.32229283679,0,0,0,1168.498455953385 -12099,14909,27136,27137,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,41,1,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,48.27,47.75,30.6,18.53,8.333333333333334,1,1,0,0,0,2,2,1,1620,81277.13602244572,0,0,0,1175.719258491936 -12099,14909,27137,27136,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,41,-1,0,0,3,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,48.27,47.75,1.666666666666667,1,1,0,0,0,2,2,1,1620,81277.13602244572,0,0,0,1175.719258491936 -12100,14910,27138,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1009.541526653712,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.98,27.16,-9,-9,5,1,1,0,1,0,13,1,0,841,168942.9807368985,0,0,0,882.8141930908578 -12100,14911,27139,-9,27138,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1000.757938854076,0,2,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,1168,-112249.1877067982,0,0,0,0 -12101,14912,27140,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,9.004473101587783,8.538960797519312,0,0,-947.5087196495737,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.718286718653856,8.433547039001825,55.02,54.61,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,988,1462379.970419865,377457.3507026929,732721.6887146368,0,3014.38939695431 -12102,14913,27141,-9,27143,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.855731396336,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1658,39076.40874300174,0,0,0,2289.225827270864 -12102,14913,27142,-9,27143,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.1267245479862,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1658,39076.40874300174,0,0,0,2289.225827270864 -12102,14913,27143,-9,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,7.27800413578353,7.272597742295208,0,0,0,-973.2695726256215,0,2,2,2019,13,1,18,16,1,1,0,7.135674187261792,7.135674187261792,0,0,0,0,2,1,1,0,0,0,32.82,51.25,-9,-9,1.666666666666667,1,1,0,0,9,12,2,0,1658,39076.40874300174,0,0,0,2289.225827270864 -12102,14913,27144,-9,27143,-9,1,0,17,0,2,1,3,0,0,0,4,0,0,0,0,0,-1058.1981925888,-9,3,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,35.97,61.83,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,1658,39076.40874300174,0,0,0,2289.225827270864 -12103,14914,27145,27146,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,2.255548841736111,1.930353182365432,0,47,-2,45.60655665525845,0,3,3,2019,6,0,16,16,1,0,0,.0715885209136706,.0715885209136706,0,0,0,0,2,1,1,0,0,0,59.53,56.44,52,36.11,10,1,1,0,0,12,7,2,1,914.5,442279.3663512078,0,389324.5689608612,0,1421.760900616728 -12103,14914,27146,27145,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,47,2,-15.28241693836496,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52,36.11,59.53,56.44,8.333333333333334,1,1,0,0,4,7,2,1,914.5,442279.3663512078,0,389324.5689608612,0,1421.760900616728 -12104,14915,27147,27148,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.329043452593515,8.025122048067873,0,19,0,-61.88256303868462,0,2,2,2019,8,0,40,40,1,0,0,11.42308144306324,11.42308144306324,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.66,32.73,8.333333333333334,1,1,0,0,13,1,3,1,856,1603142.861008625,1175897.94120491,391484.5758446013,149220.6057538951,1385.052576782244 -12104,14915,27148,27147,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,19,0,95.93436780172456,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.66,32.73,57.16,56.15,3.333333333333333,1,1,0,0,0,1,3,1,856,1603142.861008625,1175897.94120491,391484.5758446013,149220.6057538951,1385.052576782244 -12104,14916,27149,-9,27148,27147,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-1060.601626405032,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,314,10122.73632611435,0,0,0,0 -12105,14917,27150,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.060108640068137,8.152055260887398,0,0,0,-1066.73460226794,0,-9,2,2019,8,0,60,60,1,0,0,7.474771991932313,7.474771991932313,0,0,0,0,2,0,0,0,0,0,49.44,54.26,-9,-9,5,1,1,0,0,7,5,4,0,63,370022.0543239551,39983.49569029547,89645.85188170878,56655.01385868023,1155.720040067029 -12106,14918,27151,-9,-9,27154,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-928.5938511719758,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,2,1,388,36206.92264958343,31504.54437837786,0,0,3438.091638281289 -12106,14918,27152,27154,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,6.19050633022264,6.264383123818584,5,1,-71.16021810865882,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,1.438386005344624,2,1,1,0,0,6.195814292771836,57.51,47.91,41.49,38.99,8.333333333333334,1,1,0,0,3,10,2,1,388,36206.92264958343,31504.54437837786,0,0,3438.091638281289 -12106,14918,27153,-9,-9,27154,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1043.419255796441,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,388,36206.92264958343,31504.54437837786,0,0,3438.091638281289 -12106,14918,27154,27152,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,5.64950553045227,5.250585380938739,5,-1,42.98308214201059,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,4.63017591397876,5.546988592417681,41.49,38.99,57.51,47.91,6.666666666666667,1,1,0,0,2,10,2,1,388,36206.92264958343,31504.54437837786,0,0,3438.091638281289 -12106,14918,27155,-9,-9,27154,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-927.7924380806242,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,388,36206.92264958343,31504.54437837786,0,0,3438.091638281289 -12107,14919,27156,27157,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.394176231258683,7.56946035035426,30,5,-47.79562029730442,0,3,3,2019,10,2,0,44,4,2,0,0,0,0,0,0,0,27,1,1,0,0,7.162363006768599,50.27,56.67,49,48,10,1,1,0,0,9,1,2,0,403,775363.9185478542,319845.1467267341,231637.1547655714,0,3556.250497269197 -12107,14919,27157,27156,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,8,-5,-4.454995763678111,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,50.27,56.67,7,1,1,0,0,0,1,2,0,403,775363.9185478542,319845.1467267341,231637.1547655714,0,3556.250497269197 -12108,14920,27158,27159,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,9.1196877192221,9.161990194625155,0,8,-1,-58.01910837401417,0,-9,-9,2019,35,12,48,48,1,12,0,21.84777885337309,21.84777885337309,0,0,0,0,0,0,0,0,4.005398239892708,0,16.96,47.37,51.71,58.83,8.333333333333334,1,1,0,0,9,9,5,1,369.6666666666667,73739.69696314652,-2335.499489099924,554744.801728863,415358.5947635078,5782.137528231105 -12108,14920,27159,27158,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,9.280951693264024,9.000648807855717,0,8,1,54.26441051634016,0,-9,-9,2019,12,1,50,50,1,1,0,24.02529658318893,24.02529658318893,0,0,0,0,0,0,0,0,4.615656088683489,0,51.71,58.83,16.96,47.37,8.333333333333334,1,1,0,0,9,9,5,1,369.6666666666667,73739.69696314652,-2335.499489099924,554744.801728863,415358.5947635078,5782.137528231105 -12108,14920,27160,-9,27158,27159,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.964435201178,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,369.6666666666667,73739.69696314652,-2335.499489099924,554744.801728863,415358.5947635078,5782.137528231105 -12109,14921,27161,27162,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.340570377684648,5.421772287822277,9,-5,73.27190297298775,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.089460208642003,5.412115868554779,57.06,57.76,54.55,41.22,10,1,1,0,0,6,12,4,1,519.5,1485373.170004213,770313.9313493581,486324.6696202572,0,3518.348532850111 -12109,14921,27162,27161,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.415827604812046,8.090557080653168,9,5,-72.09640452943364,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.619630044713346,8.380651101129978,54.55,41.22,57.06,57.76,8.333333333333334,1,1,0,0,5,12,4,1,519.5,1485373.170004213,770313.9313493581,486324.6696202572,0,3518.348532850111 -12110,14922,27163,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.414855346562478,7.383072601516966,0,5,4,-8.756219118944038,0,-9,-9,2019,9,0,23,23,1,1,0,6.779203905630517,6.779203905630517,0,0,0,0,0,0,0,0,6.892179958218112,0,53,55,52,55,8,1,1,0,0,6,8,5,1,1530,59851.66812174381,44524.97835097054,0,0,747.7049471155173 -12110,14923,27164,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.148866441063282,8.555177281959855,4.393937721464583,5,-4,80.44640161470272,0,-9,-9,2019,9,0,40,39,1,1,0,20.17847489167973,20.17847489167973,0,0,0,0,0,0,0,0,8.009187841723058,0,52,55,53,55,8,1,1,0,0,8,8,5,1,1002,31417.21153324199,-44170.84531683217,0,0,4500.880663759398 -12111,14924,27165,27166,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,6,5,-22.68826105201915,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.820423452292095,0,63.41,39.7,55.19,54.26,8.333333333333334,1,1,0,0,0,9,3,1,573,361364.365561105,166871.8232248717,138668.0010662142,0,2575.979124258804 -12111,14924,27166,27165,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.037318441661672,7.998843359538207,6,-5,-17.02866413088078,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.09865458899989,8.260639404902419,55.19,54.26,63.41,39.7,8.333333333333334,1,1,0,0,0,9,3,1,573,361364.365561105,166871.8232248717,138668.0010662142,0,2575.979124258804 -12112,14925,27167,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,7.151305775771545,7.255952080107796,0,0,0,-979.7448306006003,0,2,2,2019,6,0,20,0,1,0,0,8.45689893731719,8.45689893731719,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,114,141988.776449256,34349.76320331755,44941.45952329673,0,548.2985340010207 -12113,14926,27168,27170,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.158502996651801,8.507703469152068,0,12,5,-112.4290060916198,0,2,2,2019,10,0,57,62,1,0,0,8.740274129308691,8.740274129308691,0,0,0,0,2,1,1,0,4.311302500943071,0,47.62,56.48,55.75,37.07,8.333333333333334,1,1,0,0,10,7,5,1,636.6666666666666,78986.38838426197,1048.179222956363,180343.0056359014,107869.3378446699,4315.203561250491 -12113,14926,27169,-9,27170,27168,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.38509980589,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,636.6666666666666,78986.38838426197,1048.179222956363,180343.0056359014,107869.3378446699,4315.203561250491 -12113,14926,27170,27168,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,8.381993464034938,8.813044715144128,5.678651847748453,12,-5,45.2750153788141,0,2,2,2019,9,0,30,38,1,0,0,18.66101612779286,18.66101612779286,0,0,0,0,0,1,1,0,7.785035174763928,0,55.75,37.07,47.62,56.48,6.666666666666667,1,1,0,0,10,7,5,1,636.6666666666666,78986.38838426197,1048.179222956363,180343.0056359014,107869.3378446699,4315.203561250491 -12114,14927,27171,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.672699593198123,6.654482099935464,0,0,-872.5903856282214,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.673291317587316,44.71,33.9,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,300,2250943.813386241,2134991.742051429,0,0,988.1351274869883 -12115,14928,27172,27173,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.777332583189948,6.685749743096609,59,-6,-103.0099427748235,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.984042160669479,6.506438860737433,57.06,57.76,56.01,27.43,10,1,1,0,0,0,5,3,1,298,625004.3050447317,331561.3983415931,328246.1422276843,0,2166.750344283166 -12115,14928,27173,27172,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.705742790372881,7.256215567056879,59,6,45.70043329992801,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,1.697627888715965,0,0,1,1,0,.1656773582863384,7.52894107560051,56.01,27.43,57.06,57.76,3.333333333333333,1,1,0,0,0,5,3,1,298,625004.3050447317,331561.3983415931,328246.1422276843,0,2166.750344283166 -12116,14929,27174,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.247498078165826,6.297472529279334,0,0,-1006.002911840788,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.088191957610789,6.177010228631886,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,11,2,1,931,54964.23800585166,2147.476968571806,118795.6436549134,0,1076.639497906469 -12117,14930,27175,27176,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.815467329279477,8.246704721358112,8.134188906703363,36,-3,-73.70360339705024,0,2,2,2019,8,0,15,15,1,0,0,7.984574002477379,7.984574002477379,0,0,0,0,0,0,0,0,0,8.012440709387187,55.19,54.26,36.72,31.97,8.333333333333334,1,1,0,0,11,10,5,1,263,552050.5560996006,193048.7423479786,301114.0994744644,39215.37598481107,4761.766689150737 -12117,14930,27176,27175,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.383383287577384,8.32941555445286,36,3,98.55365170824106,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8.468269438946942,8.620207112769883,36.72,31.97,55.19,54.26,3.333333333333333,1,1,0,0,8,10,5,1,263,552050.5560996006,193048.7423479786,301114.0994744644,39215.37598481107,4761.766689150737 -12118,14931,27177,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.708280364606077,9.246421671295444,0,0,0,-1090.865205052908,0,2,3,2019,7,0,63,50,1,0,0,16.1246874842796,16.1246874842796,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,3,4,0,0,8,6,5,1,843,264368.8810107409,-21002.37503465828,203071.3993149507,98785.96830332626,2304.578803227434 -12119,14932,27178,27179,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.706988550395261,7.149132039409396,0,8,-4,1.894307671313389,0,-9,-9,2019,11,0,30,38,1,0,0,7.41527002418606,7.41527002418606,0,0,0,0,0,0,0,0,0,0,53.52,53.81,39.06,48.74,10,2,3,0,0,3,8,5,1,433,1357027.458886533,386472.1353759672,666140.5370153822,105406.3332604874,3099.083841057893 -12119,14932,27179,27178,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.893351467577203,8.611045209937121,0,29,4,-59.75529725587001,0,3,3,2019,14,2,60,55,1,2,0,14.42793075559234,14.42793075559234,0,0,0,0,0,0,0,0,2.36464721985046,0,39.06,48.74,53.52,53.81,8.333333333333334,2,3,0,0,9,8,5,1,433,1357027.458886533,386472.1353759672,666140.5370153822,105406.3332604874,3099.083841057893 -12119,14933,27180,-9,27178,27179,1,1,25,0,0,0,2,2,-9,0,4,8.027972713263971,8.155196141518749,0,0,0,-1004.621891204328,0,1,2,2019,9,0,48,40,1,0,1,7.128069669712651,7.128069669712651,0,0,0,0,0,0,0,0,0,0,58.66,52.66,-9,-9,8.333333333333334,2,3,0,0,5,8,4,1,291,-31977.93779521668,-34726.48185282693,0,0,1373.799048538624 -12119,14934,27181,-9,27178,27179,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1056.333643542368,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1761,310768.2363674123,0,0,0,0 -12120,14935,27182,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.534590113090305,8.618079467065822,0,0,0,-989.2296706603103,-9,-9,3,2019,12,2,51,0,1,2,0,11.9426637242781,11.9426637242781,0,0,0,0,2,0,0,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,7,9,5,0,697,160807.9189355694,28589.81369565702,124869.0223358127,72010.43376477514,2034.227134280567 -12121,14936,27183,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.147612538498731,7.38070733741665,0,0,0,-1051.768310134016,0,3,3,2019,21,9,30,28,1,9,0,6.740553597289366,6.740553597289366,0,0,0,0,0,1,1,0,0,0,25.85,58.94,-9,-9,5,1,1,0,0,11,6,3,1,791,124874.0127577922,0,127886.2330074339,0,1264.580358613186 -12122,14937,27184,27185,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.994114216854371,7.082874901410965,6,6,-92.60898604089351,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.517192891013086,7.135156200814792,47.7,41.5,50.75,39.21,8.333333333333334,1,1,0,0,3,4,2,1,1358.5,729104.6034054921,251933.7242766193,312381.1664443101,0,1936.973974651238 -12122,14937,27185,27184,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,5.684199155607101,5.664997514529716,6,-6,-6.404373719735474,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.024624020982801,5.488936231149121,50.75,39.21,47.7,41.5,5,1,1,0,0,4,4,2,1,1358.5,729104.6034054921,251933.7242766193,312381.1664443101,0,1936.973974651238 -12123,14938,27186,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.4423214565559,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,30.76815261522992,0,0,1,1,0,4.640116611249229,0,49.04,55.86,-9,-9,10,1,1,0,0,0,4,1,1,448,-69.97363600893073,0,0,0,693.9071142897704 -12124,14939,27187,27188,-9,-9,1,0,51,0,2,0,2,2,-9,0,5,7.792466723459458,8.141026429035767,0,18,-3,11.20277483370989,0,3,2,2019,9,0,17,17,1,0,0,18.01316951998985,18.01316951998985,0,0,0,0,0,0,0,0,5.995171685722393,0,46.28,62.6,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,1461,3111331.910304852,340159.9561600102,2320345.83223925,0,5828.194502120103 -12124,14939,27188,27187,-9,-9,1,1,54,0,2,0,1,1,-9,0,5,9.6317287771205,9.511064581053384,0,7,3,-34.88657479954568,0,-9,-9,2019,6,0,48,52,1,0,0,32.97057867263668,32.97057867263668,0,0,0,0,0,0,0,0,5.832478561376468,0,57.06,57.76,46.28,62.6,10,1,1,0,0,8,7,5,1,1461,3111331.910304852,340159.9561600102,2320345.83223925,0,5828.194502120103 -12125,14940,27189,27190,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,5.280435612897969,5.460585755960029,0,7,-1,-11.47816435516746,0,-9,-9,2019,14,2,8,3,1,2,0,3.121583100107412,3.121583100107412,0,0,0,0,0,1,1,0,0,0,37.02,58.63,50.68,52.42,3.333333333333333,1,1,0,0,8,7,3,0,551.5,741577.4531751028,103892.307141366,632638.5461533667,0,2404.317698234936 -12125,14940,27190,27189,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.425383214660458,8.308059541222924,5.585167141951507,7,1,-40.36955009000306,0,2,2,2019,10,0,24,37,1,0,0,16.38614484450981,16.38614484450981,0,0,0,0,0,1,1,0,5.756969734864134,5.963910866105729,50.68,52.42,37.02,58.63,8.333333333333334,1,1,0,0,8,7,3,0,551.5,741577.4531751028,103892.307141366,632638.5461533667,0,2404.317698234936 -12126,14941,27191,27192,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,3.099473086692584,2.597397779694115,2,0,-33.86741257819756,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.080470862601715,0,41.81,31.98,51.77,58.57,5,2,3,1,0,0,5,2,0,857.3333333333334,-48953.91603435021,-16096.02477311042,0,0,145.4647496427599 -12126,14941,27192,27191,-9,-9,1,1,29,1,1,0,1,1,1,0,4,0,0,0,2,0,-68.08282549929251,-9,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,41.81,31.98,8.333333333333334,2,3,1,0,0,5,2,0,857.3333333333334,-48953.91603435021,-16096.02477311042,0,0,145.4647496427599 -12126,14941,27193,-9,27191,27192,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1217.685208718396,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,2,3,-9,0,0,5,2,0,857.3333333333334,-48953.91603435021,-16096.02477311042,0,0,145.4647496427599 -12127,14942,27194,-9,27197,27195,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-903.5811894895864,-9,3,3,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,494.5,94903.12243136752,-34808.49733856963,108480.4754677676,65098.97755633199,2753.592651769487 -12127,14942,27195,27197,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,8.253533634469953,8.21581421331067,0,8,2,-12.39621171319221,0,2,2,2019,9,0,43,40,1,1,0,9.60251701370391,9.60251701370391,0,0,0,0,0,1,1,0,0,0,52,55,51.58,34.22,8,1,1,0,0,1,4,4,1,494.5,94903.12243136752,-34808.49733856963,108480.4754677676,65098.97755633199,2753.592651769487 -12127,14942,27196,-9,27197,27195,1,1,12,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1038.055434548003,-9,3,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,4,4,1,494.5,94903.12243136752,-34808.49733856963,108480.4754677676,65098.97755633199,2753.592651769487 -12127,14942,27197,27195,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,7.714558851176015,7.76987724735332,0,8,-2,32.59897501784215,0,3,3,2019,12,0,25,25,1,0,0,10.95603022662039,10.95603022662039,0,0,0,0,2,1,1,0,0,0,51.58,34.22,52,55,6.666666666666667,1,1,0,1,9,4,4,1,494.5,94903.12243136752,-34808.49733856963,108480.4754677676,65098.97755633199,2753.592651769487 -12128,14943,27198,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,6.624841373061382,6.772900525128643,0,0,-796.2698329593508,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.259300327198074,6.608838317427811,57.51,42.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,345,76814.58482657452,89630.50674239648,0,0,828.6221783433625 -12129,14944,27199,27200,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.521441251204955,8.098533571353993,7.801748145041267,6,1,98.28135886548753,0,3,2,2019,5,0,70,70,1,0,0,1.306089979629637,1.306089979629637,0,0,0,0,0,0,0,0,2.668427742662504,8.446619945347162,58.87,37.89,44.05,38.12,6.666666666666667,1,1,0,0,6,5,4,1,676.5,304847.6370394765,303056.0496839909,151233.2463744923,50524.25770139627,3212.649648094985 -12129,14944,27200,27199,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.795957953354339,7.679195507308575,0,6,-1,62.98917715165391,0,-9,-9,2019,11,0,45,-9,1,0,0,5.207665419024477,5.207665419024477,0,0,0,0,0,0,0,0,7.645967728782706,0,44.05,38.12,58.87,37.89,8.333333333333334,1,1,0,0,4,5,4,1,676.5,304847.6370394765,303056.0496839909,151233.2463744923,50524.25770139627,3212.649648094985 -12129,14945,27201,-9,27200,27199,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1077.222501965862,1,3,2,2019,22,8,0,15,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,37.55,50.67,-9,-9,5,1,1,0,0,5,5,1,1,472,41516.72714359262,0,0,0,0 -12130,14946,27202,-9,27204,27203,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.393919292158,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,730.5,158442.3132089427,46136.12140953302,0,0,3827.973183306036 -12130,14946,27203,27204,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.486074829886446,8.532868948407577,0,21,2,-136.7303777237599,0,2,2,2019,8,0,48,43,1,0,0,14.404829161873,14.404829161873,0,0,0,0,0,1,1,0,0,0,48.52,47.76,47.37,48.28,5,1,1,0,0,13,6,4,1,730.5,158442.3132089427,46136.12140953302,0,0,3827.973183306036 -12130,14946,27204,27203,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.974213494391804,7.897141325649976,0,18,-2,69.77342499215483,0,3,3,2019,17,5,32,30,1,5,0,8.517356365523851,8.517356365523851,0,0,0,0,0,1,1,0,0,0,47.37,48.28,48.52,47.76,5,1,1,0,0,13,6,4,1,730.5,158442.3132089427,46136.12140953302,0,0,3827.973183306036 -12130,14946,27205,-9,27204,27203,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.7688226052098,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,4,1,730.5,158442.3132089427,46136.12140953302,0,0,3827.973183306036 -12131,14947,27206,27207,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.78412891952741,8.712127496979786,0,20,-7,-113.9528214372061,0,2,3,2019,16,4,38,38,1,4,0,24.15230374128157,24.15230374128157,0,0,0,0,0,0,0,0,7.062956617885466,0,35.69,60.83,36.03,40.6,3.333333333333333,1,1,0,0,12,1,4,1,950.5,1892432.742492381,1408811.693954235,210364.3595408704,0,2692.637892766433 -12131,14947,27207,27206,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,21,7,-18.58138382145268,0,2,2,2019,19,7,0,48,3,7,0,0,0,0,0,0,0,0,0,0,0,2.846055853616047,0,36.03,40.6,35.69,60.83,3.333333333333333,1,1,1,0,11,1,4,1,950.5,1892432.742492381,1408811.693954235,210364.3595408704,0,2692.637892766433 -12132,14948,27208,27210,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.015056904417392,7.870496736475713,0,4,-2,15.89666339244105,0,-9,-9,2019,6,0,16,24,1,0,0,18.44926860487638,18.44926860487638,0,0,0,0,0,1,1,0,1.55853781902692,0,54.2,57.49,62.5,49.56,10,1,1,0,0,8,11,5,1,731,2987719.149310994,258150.242404565,323023.0324723341,201503.7779690128,4113.609067838782 -12132,14948,27209,-9,27208,27210,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.007768579432,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,1,731,2987719.149310994,258150.242404565,323023.0324723341,201503.7779690128,4113.609067838782 -12132,14948,27210,27208,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.085357026841917,8.803366485371919,0,4,2,-5.813978909877425,0,1,1,2019,8,0,37,37,1,0,0,35.36889827748016,35.36889827748016,0,0,0,0,0,1,1,0,1.797598862532567,0,62.5,49.56,54.2,57.49,10,1,1,0,0,12,11,5,1,731,2987719.149310994,258150.242404565,323023.0324723341,201503.7779690128,4113.609067838782 -12132,14948,27211,-9,27208,27210,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.220007609279,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,731,2987719.149310994,258150.242404565,323023.0324723341,201503.7779690128,4113.609067838782 -12133,14949,27212,-9,27213,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.6016391825017,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,2,0,645.6666666666666,115317.3711417602,0,0,0,1285.360349677804 -12133,14949,27213,-9,-9,-9,1,0,32,0,2,0,2,2,-9,1,2,0,5.651340116992769,5.717606413259562,0,0,-1098.120989340324,0,3,2,2019,30,12,0,4,3,12,0,0,0,0,0,0,0,74.5,1,1,0,5.56887917568392,0,11.77,42.33,-9,-9,0,1,1,0,1,4,7,2,0,645.6666666666666,115317.3711417602,0,0,0,1285.360349677804 -12133,14949,27214,-9,27213,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.8319870136686,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,645.6666666666666,115317.3711417602,0,0,0,1285.360349677804 -12134,14950,27215,27218,-9,-9,1,0,26,1,2,0,2,2,-9,1,3,7.053612697678163,7.078244628269524,0,6,-3,32.94403698038874,0,2,2,2019,5,0,18,16,1,0,0,10.43188766265624,10.43188766265624,0,0,0,0,27,1,1,0,0,0,52,54.51,52,54.51,10,1,1,0,0,6,6,4,1,396.5,206382.9977468803,64723.42554034268,223941.2547687158,128876.3402324225,3097.05500143729 -12134,14950,27216,-9,27215,27218,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.1230883213302,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,396.5,206382.9977468803,64723.42554034268,223941.2547687158,128876.3402324225,3097.05500143729 -12134,14950,27217,-9,27215,27218,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.1770389712265,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,396.5,206382.9977468803,64723.42554034268,223941.2547687158,128876.3402324225,3097.05500143729 -12134,14950,27218,27215,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.805645987450784,8.803290246324787,0,6,3,-86.42504695064682,0,-9,-9,2019,6,0,48,47,1,0,0,16.54617020905802,16.54617020905802,0,0,0,0,2,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,10,6,4,1,396.5,206382.9977468803,64723.42554034268,223941.2547687158,128876.3402324225,3097.05500143729 -12135,14951,27219,-9,27221,27220,1,1,29,0,0,0,1,1,-9,0,2,7.605286452736349,7.596894538925882,0,0,0,-999.6981694784058,0,1,1,2019,16,4,44,30,1,4,0,5.28499379326233,5.28499379326233,0,0,0,0,0,0,0,0,0,0,46.56,52.17,-9,-9,1.666666666666667,1,1,0,1,6,5,3,1,450,13732.25111678167,34488.9388115333,0,0,942.2195447556749 -12135,14952,27220,27221,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,2,0,-112.3122009215568,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.98,44.6,8.333333333333334,1,1,0,0,0,5,5,1,902.5,1983844.041616754,1322532.374911966,500427.0650909788,0,3621.506525734615 -12135,14952,27221,27220,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,8.883971372969141,9.122714156671005,2,0,-75.33928451454508,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,4.183964211471677,9.065378142141169,41.98,44.6,54.2,57.49,6.666666666666667,1,1,0,0,0,5,5,1,902.5,1983844.041616754,1322532.374911966,500427.0650909788,0,3621.506525734615 -12136,14953,27222,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1063.467369642028,-9,-9,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,17.57,63.84,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,201,-44804.77732350439,0,0,0,0 -12137,14954,27223,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.28928233809428,7.92940681973422,0,0,0,-1040.08312599604,0,2,2,2019,10,0,24,24,1,0,0,18.59472547597124,18.59472547597124,0,0,0,0,0,1,1,0,0,0,41.35,44.4,-9,-9,5,4,5,0,0,2,8,4,0,272,-24038.0248546219,0,0,0,1191.054048874456 -12138,14955,27224,27226,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,31,-5,154.2759740461874,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.48,58.28,40.72,26.18,5,1,1,0,0,0,4,2,1,2390.333333333333,122511.290146549,0,0,0,1423.00199259394 -12138,14955,27225,-9,27224,27226,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.5867405261441,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,2390.333333333333,122511.290146549,0,0,0,1423.00199259394 -12138,14955,27226,27224,-9,-9,1,1,59,0,1,0,2,2,-9,0,1,0,5.775212450471552,5.795123218546116,31,5,-49.60010226332808,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.627987863216659,5.510420113201054,40.72,26.18,46.48,58.28,3.333333333333333,1,1,0,0,0,4,2,1,2390.333333333333,122511.290146549,0,0,0,1423.00199259394 -12139,14956,27227,27228,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,4.991248263601438,5.089382027857464,46,-4,31.50526221437038,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,7.74582659905353,5.036261601228921,36.41,39.93,54.96,53.17,10,2,3,0,0,0,8,3,1,1139,85676.86685640964,0,0,0,5036.512325458087 -12139,14956,27228,27227,-9,-9,1,1,67,0,2,0,1,1,-9,0,3,0,8.062533060353292,7.929209731437536,46,4,-92.64614615927644,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.093300156128768,7.753775938609095,54.96,53.17,36.41,39.93,8.333333333333334,2,3,0,0,0,8,3,1,1139,85676.86685640964,0,0,0,5036.512325458087 -12139,14957,27229,27230,27227,27228,1,1,38,0,2,0,2,2,-9,0,3,8.252578290492112,8.17480888617326,0,14,1,12.25419252720768,0,3,2,2019,5,0,21,25,1,0,0,18.76641485024254,18.76641485024254,0,0,0,0,0,1,1,0,8.511767610509862,0,54.37,54.8,54.2,57.49,8.333333333333334,2,3,0,0,10,8,4,1,1419.25,399164.2347463055,-13709.58594241182,692141.1655019999,287680.3130828335,5972.181016408758 -12139,14957,27230,27229,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.396203658882007,8.770299205235757,0,14,-1,-11.95853551206387,0,3,3,2019,6,0,30,30,1,0,0,19.01921323450594,19.01921323450594,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.37,54.8,10,2,3,0,0,10,8,4,1,1419.25,399164.2347463055,-13709.58594241182,692141.1655019999,287680.3130828335,5972.181016408758 -12139,14957,27231,-9,27230,27229,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.126109706962,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,1419.25,399164.2347463055,-13709.58594241182,692141.1655019999,287680.3130828335,5972.181016408758 -12139,14957,27232,-9,27230,27229,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.2701550586296,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,1419.25,399164.2347463055,-13709.58594241182,692141.1655019999,287680.3130828335,5972.181016408758 -12139,14958,27233,-9,27227,27228,1,0,42,0,2,0,1,1,-9,0,4,8.814230769037405,8.701947966563059,0,0,0,-987.5563263270046,0,3,2,2019,10,0,40,41,1,0,0,19.07594870703034,19.07594870703034,0,0,0,0,0,1,1,0,0,0,49.59,58.37,-9,-9,10,2,3,0,0,10,8,4,1,138,495836.8304597823,159230.5063008133,348910.8084766124,0,2973.489460369543 -12140,14959,27234,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.993710382027047,8.981811092009314,0,0,0,-1030.482931781236,0,2,2,2019,19,7,41,43,1,7,0,18.59170801523602,18.59170801523602,0,0,0,0,0,0,0,0,0,0,38.39,48.48,-9,-9,3.333333333333333,1,1,0,0,8,12,5,1,538,384593.9658300706,42001.09756443351,192948.2471059885,79979.28052070817,3149.437063253189 -12141,14960,27235,27236,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,8,-3,91.24278516067146,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.301926941623332,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,1,0,7,10,4,1,363,1585669.148108387,769847.7379351016,573123.0258749032,0,2254.833726144954 -12141,14960,27236,27235,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,8.645327954239381,8.710282692015186,8,3,-112.829056432384,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.069653957202343,8.565695434836879,57.16,56.15,57.33,53.46,0,1,1,0,0,6,10,4,1,363,1585669.148108387,769847.7379351016,573123.0258749032,0,2254.833726144954 -12142,14961,27237,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.860305205147774,6.972853823465262,0,0,-973.2934182388606,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.799058666217349,6.978015060837274,55.35,40.69,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,429,236853.615419967,220857.5806638037,106023.1807904598,0,1888.085018602211 -12143,14962,27238,27240,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.516945511719459,8.587344187259172,0,21,2,-5.420394589116882,0,2,2,2019,10,0,38,-9,1,0,0,13.69500998983332,13.69500998983332,0,0,0,0,0,1,1,0,0,0,59.43,58.05,45.01,57.46,8.333333333333334,1,1,0,0,10,9,4,1,471,374263.6153957553,90649.16078091772,482249.5705790691,167536.6038132854,3964.550784904598 -12143,14962,27239,-9,27240,27238,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.584775620139,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,471,374263.6153957553,90649.16078091772,482249.5705790691,167536.6038132854,3964.550784904598 -12143,14962,27240,27238,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.150003277253003,8.325762235860646,0,21,-2,54.49529372616709,0,2,3,2019,19,7,37,50,1,7,0,9.534052910984043,9.534052910984043,0,0,0,0,0,1,1,0,0,0,45.01,57.46,59.43,58.05,6.666666666666667,1,1,0,0,11,9,4,1,471,374263.6153957553,90649.16078091772,482249.5705790691,167536.6038132854,3964.550784904598 -12143,14962,27241,-9,27240,27238,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-996.6187846569884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,471,374263.6153957553,90649.16078091772,482249.5705790691,167536.6038132854,3964.550784904598 -12144,14963,27242,27243,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,37,2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,0,0,6,8,1,1,1004.5,492999.182370829,0,397606.0575016608,0,1052.918855756559 -12144,14963,27243,27242,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,37,-2,0,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,1004.5,492999.182370829,0,397606.0575016608,0,1052.918855756559 -12144,14964,27244,-9,27243,27242,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-935.1339578192132,1,3,3,2019,11,0,0,48,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,1,1,124,39967.7926599097,0,0,0,0 -12145,14965,27245,-9,27247,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.8887154578724,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,1383,50042.81970421406,0,0,0,1363.610043449487 -12145,14965,27246,-9,27247,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.6745768640062,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,1,1383,50042.81970421406,0,0,0,1363.610043449487 -12145,14965,27247,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,0,0,-941.0858603837443,0,3,3,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,1383,50042.81970421406,0,0,0,1363.610043449487 -12146,14966,27248,27249,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.676429421292315,7.62404985282648,0,2,0,22.95223967781948,0,-9,-9,2019,10,0,30,38,1,0,0,6.492504319125384,6.492504319125384,0,0,0,0,0,0,0,0,.3970963929872443,0,47.61,53.7,60.02,56.42,8.333333333333334,1,1,0,0,6,11,5,1,380.5,502314.0442638079,245777.0341237511,238923.962477807,135709.5660354668,2991.427148295799 -12146,14966,27249,27248,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.723673114333739,8.726152011068043,0,2,0,-23.99838241502379,0,2,1,2019,9,0,38,38,1,0,0,20.22372082766067,20.22372082766067,0,0,0,0,0,0,0,0,3.439105483187076,0,60.02,56.42,47.61,53.7,10,1,1,0,0,7,11,5,1,380.5,502314.0442638079,245777.0341237511,238923.962477807,135709.5660354668,2991.427148295799 -12147,14967,27250,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,6.810684196143495,7.065136352988841,0,0,-1036.576358378906,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.138011779151818,49.77,39.62,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,2495,312926.0895456864,152240.4551453029,0,0,874.6446606776234 -12147,14968,27251,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,6.657541624474005,6.559330681534528,0,0,-1089.650352247523,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,10.32259829191335,0,0,1,1,0,0,6.43924478774403,36.57,42.83,-9,-9,5,1,1,0,0,0,12,2,1,387,397812.5107404226,197358.9231638997,98597.51056364228,0,806.9623963553955 -12147,14969,27252,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,7.171096140074697,7.038954549422429,0,0,-884.4366907040073,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.001250466203719,39.56,34.97,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,221,160488.931398535,210282.407322027,0,0,889.8613794848192 -12148,14970,27253,-9,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,0,5.044019220210487,4.924543596541129,0,0,-959.9107301504329,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.414593327993544,0,53.81,48.39,-9,-9,8.333333333333334,1,1,1,0,4,11,2,0,257,55008.10367782073,0,0,0,1140.568817654218 -12148,14970,27254,-9,27253,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.9576708986949,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,257,55008.10367782073,0,0,0,1140.568817654218 -12148,14970,27255,-9,27253,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.887287290347,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,257,55008.10367782073,0,0,0,1140.568817654218 -12149,14971,27256,27257,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,46,2,75.42213328870379,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.289952515507978,0,57.09,46.7,53.96,50.73,6.666666666666667,1,1,0,0,6,6,3,1,1521,1296434.863051313,905244.9099015353,217677.0639676357,0,6833.828179281245 -12149,14971,27257,27256,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.044411159034798,7.9849866600038,46,-2,-67.40743897623928,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.560387365541935,8.252477668974921,53.96,50.73,57.09,46.7,8.333333333333334,1,1,0,0,0,6,3,1,1521,1296434.863051313,905244.9099015353,217677.0639676357,0,6833.828179281245 -12149,14972,27258,-9,27256,27257,1,1,33,0,0,0,1,1,-9,0,2,8.190087090382919,8.152048971254247,0,0,0,-1102.500768856655,-9,2,1,2019,12,2,35,0,1,2,0,12.94991629726981,12.94991629726981,0,0,0,0,0,1,1,0,0,0,47.56,48.93,-9,-9,5,1,1,0,0,1,6,4,1,508,-42169.95358790406,-57147.03072486715,0,0,1842.1721738809 -12150,14973,27259,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-996.424208625621,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.86,36,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1488,0,0,0,0,1708.32657615848 -12151,14974,27260,-9,27261,-9,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.962886831104,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,9,3,0,296,-342.5844051466896,104651.759988054,0,0,2323.555234263154 -12151,14974,27261,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.576038670331288,8.6924108398846,0,0,0,-906.5834512430686,0,2,2,2019,11,0,37,30,1,2,0,14.0064396563786,14.0064396563786,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,10,9,3,0,296,-342.5844051466896,104651.759988054,0,0,2323.555234263154 -12151,14974,27262,-9,27261,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-956.0015649490517,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,0,296,-342.5844051466896,104651.759988054,0,0,2323.555234263154 -12152,14975,27263,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.606640504124064,8.297059830422434,0,7,-6,51.35605617945598,0,2,1,2019,13,1,44,50,1,1,0,16.67570151223973,16.67570151223973,0,0,0,0,0,0,0,0,1.032006449748578,0,26.22,59.74,51,56,5,1,1,0,0,11,9,4,0,725,167526.3399238056,203401.8938174731,0,0,2791.822822069774 -12153,14976,27264,27265,-9,-9,1,0,43,0,1,0,2,2,-9,1,1,0,0,0,6,0,57.66705735218418,0,3,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.43,21.57,44.21,50.21,0,1,1,0,0,3,12,4,1,492.5,498916.6993257914,253903.0473519188,198472.344497572,136002.1565694351,4541.31825326122 -12153,14976,27265,27264,-9,-9,1,1,43,0,1,0,3,3,-9,0,2,8.839401589862089,9.078176479139378,0,6,0,72.2172733620893,0,-9,-9,2019,8,0,60,52,1,0,0,15.59337372765241,15.59337372765241,0,0,0,0,42,1,1,0,0,0,44.21,50.21,21.43,21.57,3.333333333333333,1,1,0,0,9,12,4,1,492.5,498916.6993257914,253903.0473519188,198472.344497572,136002.1565694351,4541.31825326122 -12154,14977,27266,27267,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,49,-1,0,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,52,45,8,1,1,0,0,0,2,1,0,631.5,74143.40564658954,0,0,0,1003.22350159723 -12154,14977,27267,27266,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,49,1,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,54,46,8,1,1,0,0,0,2,1,0,631.5,74143.40564658954,0,0,0,1003.22350159723 -12155,14978,27268,27269,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.740437007657392,7.566336000719952,0,19,-2,83.89298439546985,0,2,2,2019,23,10,28,27,1,10,0,11.4518015279782,11.4518015279782,0,0,0,0,0,1,1,0,0,0,43.67,61.06,55.19,54.26,6.666666666666667,1,1,0,0,10,1,5,1,590,659623.5905050188,453709.6902311825,177024.4513917682,34550.82023219873,5294.577023150332 -12155,14978,27269,27268,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.265083989514201,9.538065638292164,0,20,2,-62.69961459701216,0,-9,3,2019,11,0,40,45,1,0,0,37.02933870809893,37.02933870809893,0,0,0,0,0,1,1,0,3.420083051055753,0,55.19,54.26,43.67,61.06,8.333333333333334,1,1,0,0,10,1,5,1,590,659623.5905050188,453709.6902311825,177024.4513917682,34550.82023219873,5294.577023150332 -12155,14978,27270,-9,27268,27269,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.719977582101,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,590,659623.5905050188,453709.6902311825,177024.4513917682,34550.82023219873,5294.577023150332 -12155,14978,27271,-9,27268,27269,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.445300225616,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,590,659623.5905050188,453709.6902311825,177024.4513917682,34550.82023219873,5294.577023150332 -12155,14978,27272,-9,27268,27269,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.5549760809831,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,590,659623.5905050188,453709.6902311825,177024.4513917682,34550.82023219873,5294.577023150332 -12156,14979,27273,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,3.360055561807963,3.149328192210062,0,0,-1033.124519834639,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.066804177668228,3.29286461279096,63.26,45.23,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,534,446733.9809765826,-1658.176918016557,314739.3479009664,62663.37340841505,647.7919560046846 -12157,14980,27274,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.439890243079395,5.777325861691039,0,0,-948.290589475976,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.063204153316641,5.735747525419281,54.57,22.57,-9,-9,5,1,1,0,1,4,10,2,1,470,73921.69890653377,121806.756444275,0,0,849.6836483717606 -12158,14981,27275,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.679590828860573,7.462705603656015,0,0,0,-875.8177716183563,0,2,3,2019,9,0,32,16,1,0,0,7.403677365022011,7.403677365022011,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,616,-54234.40924497054,0,0,0,488.6566444833718 -12159,14982,27276,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.276068721649353,7.385407952011614,0,0,0,-1156.436543674869,0,-9,2,2019,8,1,38,38,1,1,0,4.915275972541646,4.915275972541646,0,0,0,0,0,0,0,0,4.601884947036289,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,1588,-125706.0706062802,-134958.7721199352,0,0,823.1137203659966 -12160,14983,27277,27278,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,6.202706454036885,6.140591374554402,23,21,-20.44571630898595,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,6.050084838060815,46.41,42.57,30.96,53.29,1.666666666666667,1,1,0,0,7,4,3,0,1535,138810.9257066379,-15892.33249467696,68076.03637089673,32707.92311513046,981.4532223906918 -12160,14983,27278,27277,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.833255310601686,7.908894114600223,0,9,-21,12.97549813358074,0,-9,-9,2019,17,4,39,39,1,4,0,5.224578080218548,5.224578080218548,0,0,0,0,2,0,0,0,0,0,30.96,53.29,46.41,42.57,3.333333333333333,1,1,0,1,11,4,3,0,1535,138810.9257066379,-15892.33249467696,68076.03637089673,32707.92311513046,981.4532223906918 -12161,14984,27279,27280,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.170813825610427,7.795290094830531,50,1,-56.53737702374645,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,4.054548383341687,8.112318540166847,46.45,26.2,37.69,58.7,8.333333333333334,1,1,0,0,0,9,3,1,292,1123700.529617996,822433.7652831706,387210.8554198837,53028.18537339928,2589.505409868032 -12161,14984,27280,27279,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.35809175083253,6.623994243182842,50,-1,-41.21535370561679,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,6.174453664954457,37.69,58.7,46.45,26.2,10,1,1,0,0,0,9,3,1,292,1123700.529617996,822433.7652831706,387210.8554198837,53028.18537339928,2589.505409868032 -12162,14985,27281,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.928666979167987,8.50065456898494,0,0,0,-1034.762049859521,0,2,2,2019,12,0,60,60,1,0,0,13.44506989991515,13.44506989991515,0,0,0,0,0,0,0,0,5.152004468776974,0,57.3,42.95,-9,-9,5,1,1,0,0,10,10,5,1,287,358141.2442284529,19648.30351705658,224171.9422715539,0,2569.754413111945 -12163,14986,27282,-9,-9,-9,1,1,38,0,0,0,1,1,-9,1,3,0,0,0,0,0,-921.4325290951618,0,1,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.210479454981809,0,48,52,-9,-9,7,2,3,0,0,2,6,1,0,1046,115996.5870667469,0,0,0,-456.9526792576298 -12164,14987,27283,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.796384307551373,9.991293411552912,0,0,0,-854.1132066273717,0,2,2,2019,10,0,40,37,1,1,0,52.1467890929268,52.1467890929268,0,0,0,0,0,0,0,0,0,0,47,55.72,-9,-9,8.333333333333334,4,2,0,0,9,5,5,0,1055,787660.9947344983,642810.0388021368,311618.1184394652,161910.2475038548,6277.107699503471 -12165,14988,27284,27285,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,5.848037232328187,5.5373010595109,34,-5,-84.4299832652504,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1.83121831833718,5.657664989603996,63.69,24.97,53.79,37.67,10,1,1,0,0,9,2,4,1,629,1734460.107275681,674124.324451234,425198.3151766784,0,3056.803455665188 -12165,14988,27285,27284,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.149614951108116,8.631319684487073,9,5,111.1945431747534,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,0,0,0,8.366746896680358,8.294141737889444,53.79,37.67,63.69,24.97,6.666666666666667,1,1,0,0,9,2,4,1,629,1734460.107275681,674124.324451234,425198.3151766784,0,3056.803455665188 -12166,14989,27286,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,7.302658443841232,6.915312463016265,0,0,0,-900.8583994095795,0,-9,-9,2019,7,0,17,14,1,0,0,8.838920635827899,8.838920635827899,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,10,2,1,593,137682.5232521702,114950.2553119251,43939.18113518522,0,1316.713567324836 -12167,14990,27287,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,6.991473222077272,7.037526564824595,0,0,0,-970.65844716403,0,1,1,2019,21,6,27,37,1,6,0,5.23631613536172,5.23631613536172,0,0,0,0,0,1,1,0,8.573489495016723,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,1619,0,0,0,0,3830.590038276134 -12168,14991,27288,-9,27289,27290,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.4287354864939,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,399.25,-22186.80519043818,0,0,0,4342.981573744471 -12168,14991,27289,27290,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,7.77871186034257,7.79519889575043,0,10,2,-73.86191745248941,0,-9,2,2019,13,1,40,45,1,1,0,8.21354123563216,8.21354123563216,0,0,0,0,0,1,1,0,0,0,48.53,58.91,48.45,57.49,6.666666666666667,1,1,0,0,11,2,2,1,399.25,-22186.80519043818,0,0,0,4342.981573744471 -12168,14991,27290,27289,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,0,0,0,10,-2,-139.5258330971909,1,1,1,2019,14,2,0,37,2,2,0,0,0,0,0,0,0,0,1,1,0,3.109970514856666,0,48.45,57.49,48.53,58.91,8.333333333333334,1,1,0,0,11,2,2,1,399.25,-22186.80519043818,0,0,0,4342.981573744471 -12168,14991,27291,-9,27289,27290,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.776663968216,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,399.25,-22186.80519043818,0,0,0,4342.981573744471 -12168,14992,27292,-9,27289,27290,1,0,23,0,2,0,2,2,-9,0,5,7.643276824161936,7.88940714763558,0,0,0,-1001.965493559449,0,3,2,2019,11,1,38,38,1,1,1,8.192763841583218,8.192763841583218,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1156,181660.609501422,-123394.6811489095,0,0,1364.577067590532 -12169,14993,27293,27294,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.23181921701654,8.269693024690456,0,34,-1,137.141538601299,0,-9,-9,2019,12,0,50,40,1,0,0,8.075988479642884,8.075988479642884,0,0,0,0,5.48,0,0,0,0,0,36.02,45.46,31.19,24.93,8.333333333333334,2,3,0,0,7,9,3,1,361.5,1414091.348538774,818008.0377720115,380895.7247939908,0,1799.663990410513 -12169,14993,27294,27293,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,34,1,-68.24794689259154,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,31.19,24.93,36.02,45.46,5,2,3,0,0,0,9,3,1,361.5,1414091.348538774,818008.0377720115,380895.7247939908,0,1799.663990410513 -12169,14994,27295,-9,27294,27293,1,0,26,0,0,0,1,1,-9,0,3,7.073444198162104,6.859530306854961,0,0,0,-1028.110780705292,0,3,2,2019,10,0,20,40,1,0,1,7.089833081868194,7.089833081868194,0,0,0,0,71.5,0,0,0,0,0,42.17,38.71,-9,-9,6.666666666666667,2,3,0,0,2,9,3,1,177,-105027.7712377896,-32477.14566555464,0,0,457.9334219378817 -12169,14995,27296,-9,27294,27293,1,0,21,0,0,0,2,2,-9,0,4,7.397973201395017,7.528914131204512,0,0,0,-941.8837458418001,0,3,3,2019,14,3,48,40,1,3,1,3.89055160802714,3.89055160802714,0,0,0,.091947956191003,2,0,0,0,0,0,48.39,50.88,-9,-9,1.666666666666667,2,3,0,0,2,9,3,1,401,-258481.853787739,0,0,0,483.9673377196773 -12170,14996,27297,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,8.778657795069849,8.630099611505267,0,0,0,-1118.451246216098,0,2,3,2019,8,0,40,43,1,0,0,15.14879359668549,15.14879359668549,0,0,0,0,0,1,1,0,0,0,54.25,36.27,-9,-9,8.333333333333334,1,1,0,1,6,9,5,0,377,106555.4415652567,-11630.42601864768,91198.9332440728,54489.66267208051,2535.953133427719 -12171,14997,27298,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1072.634739203977,0,3,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,24.42,50.25,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,285.5,174495.6997818567,-21294.09115312422,0,0,1322.08233966255 -12171,14997,27299,-9,27298,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.707882959884,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,285.5,174495.6997818567,-21294.09115312422,0,0,1322.08233966255 -12172,14998,27300,27301,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.349594633249905,0,53,46,53.63,24.78,8,1,1,0,0,0,2,1,0,651,264190.048512142,0,171968.988336162,0,2332.77044409962 -12172,14998,27301,27300,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,7,-4,0,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,5.904185224330051,0,2,1,1,0,0,0,53.63,24.78,53,46,6.666666666666667,1,1,0,0,5,2,1,0,651,264190.048512142,0,171968.988336162,0,2332.77044409962 -12173,14999,27302,27304,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,9.277595215709791,9.302387727409139,0,18,-4,94.0311052237023,0,1,1,2019,10,0,47,50,1,0,0,20.61808565876762,20.61808565876762,0,0,0,0,0,0,0,0,0,0,46.4,59.87,55.19,54.26,8.333333333333334,1,1,0,0,9,6,5,1,621.75,948933.9351288087,506459.7053355963,610143.6800109607,227133.6686594483,6890.056278871182 -12173,14999,27303,-9,27302,27304,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.0838222741678,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,621.75,948933.9351288087,506459.7053355963,610143.6800109607,227133.6686594483,6890.056278871182 -12173,14999,27304,27302,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.294058582326558,9.046379071255915,0,18,4,-72.8565888577844,0,2,3,2019,11,1,20,65,1,1,0,66.67674664665985,66.67674664665985,0,0,0,0,0,0,0,0,0,0,55.19,54.26,46.4,59.87,8.333333333333334,1,1,0,0,6,6,5,1,621.75,948933.9351288087,506459.7053355963,610143.6800109607,227133.6686594483,6890.056278871182 -12173,14999,27305,-9,27302,27304,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.3823760016691,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,621.75,948933.9351288087,506459.7053355963,610143.6800109607,227133.6686594483,6890.056278871182 -12174,15000,27306,27307,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.024139581659934,7.31772632873092,0,24,0,21.23082153407267,0,2,2,2019,8,0,10,10,1,0,0,12.28061659404041,12.28061659404041,0,0,0,0,0,0,0,0,6.25606515732476,0,54.2,57.49,45.04,53.77,8.333333333333334,1,1,0,0,12,2,2,1,376.5,364057.3793630708,91938.65836991073,42205.89655749601,0,531.4325172977894 -12174,15000,27307,27306,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,24,9,41.34839415840099,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,54.2,57.49,6.666666666666667,1,1,1,0,9,2,2,1,376.5,364057.3793630708,91938.65836991073,42205.89655749601,0,531.4325172977894 -12175,15001,27308,-9,-9,-9,1,0,21,0,0,1,1,0,-9,1,2,0,0,0,0,0,-1017.213771590878,-9,-9,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,28.07,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,572,55532.593583879,-12779.67631271968,0,0,97.0638312972338 -12176,15002,27309,27310,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.66981379894152,8.635248245606357,0,18,-1,14.51805971207975,0,2,2,2019,6,0,36,37,1,0,0,22.99457201639744,22.99457201639744,0,0,0,0,0,1,1,0,1.120561851127735,0,63.09,47.92,62.96,55.09,0,3,4,0,0,12,8,5,1,479.3333333333333,692919.7945722811,323388.0683611498,791639.2579148291,414602.2489206777,11549.74224517788 -12176,15002,27310,27309,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,9.213728451235156,9.457523802192158,0,16,1,-67.06603638142067,0,2,1,2019,0,0,7,7,1,0,0,142.8788548623075,142.8788548623075,0,0,0,0,0,1,1,0,10.11493304946177,0,62.96,55.09,63.09,47.92,10,3,4,0,0,11,8,5,1,479.3333333333333,692919.7945722811,323388.0683611498,791639.2579148291,414602.2489206777,11549.74224517788 -12176,15002,27311,-9,27310,27309,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.442274039596,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,5,1,479.3333333333333,692919.7945722811,323388.0683611498,791639.2579148291,414602.2489206777,11549.74224517788 -12176,15003,27312,-9,27310,27309,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-878.9874221006797,1,2,1,2019,6,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,.730251326392085,0,48.87,58.55,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,171,0,0,0,0,191.6183117705939 -12177,15004,27313,-9,27316,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.897960355443,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,972.5,-41446.41296562609,0,0,0,1276.479516366944 -12177,15004,27314,-9,27316,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.910207157729,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,972.5,-41446.41296562609,0,0,0,1276.479516366944 -12177,15004,27315,-9,27316,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.8621659400076,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,972.5,-41446.41296562609,0,0,0,1276.479516366944 -12177,15004,27316,-9,-9,-9,1,0,27,1,3,0,3,3,-9,0,4,0,0,0,0,0,-1088.948698267935,0,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,54.92,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,972.5,-41446.41296562609,0,0,0,1276.479516366944 -12178,15005,27317,27318,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,8,-3,-31.87032435901961,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,51,49,8.333333333333334,1,1,0,0,0,11,2,1,686,323166.8872607298,0,165086.3204705936,0,72.33182853907948 -12178,15005,27318,27317,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,6.604000374810459,6.396087998316876,0,8,3,-32.74553114582614,0,2,2,2019,10,0,50,65,1,1,0,1.275366920160433,1.275366920160433,0,0,0,0,0,0,0,0,0,0,51,49,62.49,55.09,7,1,1,0,0,1,11,2,1,686,323166.8872607298,0,165086.3204705936,0,72.33182853907948 -12178,15006,27319,-9,27317,27318,1,1,32,0,0,0,2,2,-9,0,4,7.173608531618451,7.312431779710074,0,0,0,-1067.597012415663,0,2,2,2019,10,0,50,65,1,1,1,2.637873871338736,2.637873871338736,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,1,1,0,0,1,11,3,1,978,37069.65850700195,68037.33796186856,0,0,1035.772486311832 -12179,15007,27320,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.707270060558467,7.6732476385361,0,0,-944.7379997751908,0,2,2,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.041852089877982,8.002749515453486,45.18,54.77,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,681,635320.2628086272,434981.9742802243,196422.1556409384,0,1961.087632775817 -12180,15008,27321,27322,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.904732427799515,7.175555469874008,0,29,-3,-27.56582093677883,0,3,3,2019,13,1,17,15,1,1,0,9.616122733606552,9.616122733606552,0,0,0,0,14.5,0,0,0,2.094036612977481,0,43.73,59.7,51,48,8.333333333333334,1,1,0,0,11,6,5,1,333,1086885.325355223,640138.1539936092,385669.8280978573,0,3169.026984977105 -12180,15008,27322,27321,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.325238937501489,8.585310112971271,6.800615453345061,8,3,-54.16630369332714,-9,-9,-9,2019,10,0,39,0,1,1,0,14.12687819460937,14.12687819460937,0,0,0,0,0,0,0,0,1.56515844696684,7.304449278751188,51,48,43.73,59.7,7,1,1,0,0,1,6,5,1,333,1086885.325355223,640138.1539936092,385669.8280978573,0,3169.026984977105 -12180,15009,27323,-9,27321,27322,1,0,23,0,0,0,1,1,-9,0,4,8.441316654179852,8.760561722790193,0,0,0,-922.1655460872581,-9,2,-9,2019,11,0,38,0,1,2,1,13.18476625559559,13.18476625559559,0,0,0,0,0,0,0,0,1.135209176263923,0,46,58,-9,-9,7,1,1,0,0,1,6,5,1,964,76208.56954380401,41891.21460568107,0,0,1776.596374728373 -12181,15010,27324,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1019.305637754735,-9,1,1,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,19.57,31.73,-9,-9,6.666666666666667,4,5,0,1,0,8,1,0,1115,219907.088629609,95924.31515522854,400597.7178701967,0,2295.778488281173 -12181,15011,27325,-9,27324,-9,1,1,18,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.385350922694,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,0,1,0,8,1,0,569,0,0,0,0,768.5114220233465 -12182,15012,27326,27327,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,6.147596306824486,6.358405762048181,9,7,111.5202427388337,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.277853360657538,22.66,26.42,42.49,38.37,3.333333333333333,1,1,0,0,0,10,3,0,278,197827.4392504869,10005.83490202966,238130.4831374111,31523.39348375875,2009.910911467265 -12182,15012,27327,27326,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.114191396290721,7.765301624145074,0,9,-7,145.2160253429534,0,3,2,2019,12,0,35,35,1,0,0,8.882567615112336,8.882567615112336,0,0,0,0,27,1,1,0,0,0,42.49,38.37,22.66,26.42,5,1,1,0,0,9,10,3,0,278,197827.4392504869,10005.83490202966,238130.4831374111,31523.39348375875,2009.910911467265 -12183,15013,27328,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,7.064155901929048,6.997949438902475,0,0,-1122.359523257713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.774497602829447,7.121436891591463,60.3,49.25,-9,-9,10,1,1,0,0,0,13,2,1,976,339967.4216473191,116859.1800118138,146733.4204196465,0,1711.194905891309 -12184,15014,27329,27331,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.759020952148361,7.945254967790612,0,1,1,-134.2289512091016,-9,2,2,2019,12,0,36,0,1,2,0,8.776098708261317,8.776098708261317,0,0,0,0,0,1,1,0,2.01603468995287,0,46,51,30.46,56.16,7,1,1,0,0,1,5,3,1,455,133860.3705587844,17957.71548274735,150825.9242048915,0,2531.874734987749 -12184,15014,27330,-9,27329,27331,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1042.852013253883,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,455,133860.3705587844,17957.71548274735,150825.9242048915,0,2531.874734987749 -12184,15014,27331,27329,-9,-9,1,1,44,0,1,0,3,3,-9,0,3,7.607349878371593,8.116304972669234,0,1,-1,39.99612165281685,-9,2,2,2019,24,12,35,0,1,12,0,7.32864110566685,7.32864110566685,0,0,0,0,0,1,1,0,0,0,30.46,56.16,46,51,1.666666666666667,1,1,0,0,11,5,3,1,455,133860.3705587844,17957.71548274735,150825.9242048915,0,2531.874734987749 -12184,15015,27332,-9,27329,27331,1,1,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-898.5937916285469,-9,2,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,21.16,63.25,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,1545,54634.04914602625,0,0,0,0 -12185,15016,27333,27334,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.024037238430358,9.419461612622074,0,6,3,81.3230756737449,0,-9,-9,2019,9,0,50,50,1,0,0,17.40755168572979,17.40755168572979,0,0,0,0,2,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,1683,884861.4201540889,737241.0442726056,324894.4021404827,61393.69436341724,3989.458343062681 -12185,15016,27334,27333,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,7.161455974107048,6.948563737993986,0,21,-3,72.08076178438979,0,3,3,2019,8,0,45,60,1,0,0,3.526077661301813,3.526077661301813,0,0,0,0,0,0,0,0,6.829162871376814,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,1683,884861.4201540889,737241.0442726056,324894.4021404827,61393.69436341724,3989.458343062681 -12186,15017,27335,27336,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,6.160599683333763,6.246615079702307,39,2,-102.6677086653735,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.937406590025271,49.87,58.27,59.07,43.05,8.333333333333334,1,1,0,0,5,4,3,1,518,1352476.085968863,1238104.966490709,299449.0325141636,111734.8792686258,3083.725305111694 -12186,15017,27336,27335,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.436031948918908,8.053514701221017,39,-2,121.8519856341709,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.47431386040218,59.07,43.05,49.87,58.27,8.333333333333334,1,1,0,0,7,4,3,1,518,1352476.085968863,1238104.966490709,299449.0325141636,111734.8792686258,3083.725305111694 -12187,15018,27337,27338,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.814768639009965,7.880595886966604,0,42,-6,107.8402902302271,0,3,2,2019,6,0,23,23,1,0,0,9.127964015639702,9.127964015639702,0,0,0,0,0,0,0,0,5.285782633487438,0,57.16,56.15,60.52,53.2,10,1,1,0,0,11,4,4,1,840,2140466.86249608,1182552.201199159,811286.8659467259,0,2643.786044604718 -12187,15018,27338,27337,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.866524554294964,7.503154303496064,42,6,-66.58639128175642,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.166334388955247,7.665036545142004,60.52,53.2,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,1,840,2140466.86249608,1182552.201199159,811286.8659467259,0,2643.786044604718 -12188,15019,27339,27340,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,5,-3,31.450110832969,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,55.19,54.26,8,1,1,1,0,0,12,5,1,1086.5,466678.7412771856,179008.9926474153,183346.7973077005,16655.16077451714,3958.721697009118 -12188,15019,27340,27339,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.437963158575114,9.345566789839241,0,5,3,-198.2395415614796,0,2,1,2019,9,0,42,43,1,0,0,26.52827258995468,26.52827258995468,0,0,0,0,0,0,0,0,6.615017564622797,0,55.19,54.26,51,54,1.666666666666667,1,1,0,0,8,12,5,1,1086.5,466678.7412771856,179008.9926474153,183346.7973077005,16655.16077451714,3958.721697009118 -12189,15020,27341,27342,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.082596029454344,9.346949976080309,8.589032026296247,40,2,-139.6690100776435,0,2,3,2019,12,3,30,30,1,3,0,34.03237187339063,34.03237187339063,0,0,0,2.160579169634627,0,0,0,0,3.574200215426991,8.315218735203612,51.57,37.05,32.35,56.92,8.333333333333334,1,1,0,0,10,2,5,1,594.5,1139769.928359773,770457.1117431838,341296.8747285043,0,6724.97477259852 -12189,15020,27342,27341,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,4.409030899586923,4.308664876409941,40,-2,-66.81949353261753,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,0,0,0,8.194187423779763,4.136391466333966,32.35,56.92,51.57,37.05,6.666666666666667,1,1,0,0,5,2,5,1,594.5,1139769.928359773,770457.1117431838,341296.8747285043,0,6724.97477259852 -12190,15021,27343,27344,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,0,0,0,24,-7,21.86191135442622,0,-9,-9,2019,21,7,0,25,3,7,0,0,0,0,0,0,.1700256689838859,14.5,1,1,0,2.542244222149381,0,32.24,41.22,40.3,47.19,5,1,1,1,0,12,6,2,0,413.5,248503.020183337,106229.9432622829,87263.87737003189,0,353.9790314571877 -12190,15021,27344,27343,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,.0305407008720313,0,10,7,75.62130733659976,0,-9,-9,2019,12,0,45,50,1,0,0,.0001496061592873,.0001496061592873,0,0,0,0,0,1,1,0,0,0,40.3,47.19,32.24,41.22,6.666666666666667,1,1,0,0,6,6,2,0,413.5,248503.020183337,106229.9432622829,87263.87737003189,0,353.9790314571877 -12191,15022,27345,27346,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.052752910016576,7.366224181129756,50,-1,7.568862727326573,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.323281047498629,7.309750858304646,49.28,52.09,55.79,52.62,8.333333333333334,1,1,0,0,0,11,2,1,591,305730.4249520031,314583.8275153911,110685.8578643286,0,2129.811823793601 -12191,15022,27346,27345,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.909325230116865,5.44167774470539,49,1,31.18565016946466,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.728970052008457,55.79,52.62,49.28,52.09,10,1,1,0,0,0,11,2,1,591,305730.4249520031,314583.8275153911,110685.8578643286,0,2129.811823793601 -12192,15023,27347,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.395172019695318,8.503874279201243,0,0,0,-957.9012084778904,0,3,3,2019,7,0,36,35,1,0,0,18.14150194524112,18.14150194524112,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,282,164457.8663298353,203041.5745038558,178866.5405132593,93286.5022906087,1825.670766486629 -12193,15024,27348,-9,27349,27350,1,0,68,0,0,0,3,3,-9,0,2,0,8.229247632632619,8.259471447399024,0,0,-992.0470895523192,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,120,1,1,0,0,8.412252300512895,33.76,33.31,-9,-9,5,1,1,0,0,0,8,4,1,324,1857656.562365112,1213617.780385987,376374.642798553,0,2449.924288399262 -12193,15025,27349,27350,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,8,1,33.94785762845714,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,792.5,1086248.878992063,112650.5912396021,499413.5443767034,0,1368.599721192429 -12193,15025,27350,27349,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.84704629372436,6.644207266051284,8,-1,120.7679776053833,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.997111273195908,6.867996652005335,55,45,53,44,8,1,1,0,0,0,8,2,1,792.5,1086248.878992063,112650.5912396021,499413.5443767034,0,1368.599721192429 -12194,15026,27351,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.442739533113382,8.540405707728008,0,0,0,-965.890356186376,0,-9,-9,2019,17,5,47,89,1,5,0,12.1371762218984,12.1371762218984,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,8,4,5,1,605,156341.4972624342,51386.45142451648,0,0,1884.140274095344 -12195,15027,27352,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.769214124520954,7.812141756915792,0,0,-942.5430162822904,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.246013140444483,7.661399710997752,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,55,1434311.287465691,437595.4802626699,504601.0455178254,0,2916.37776939949 -12196,15028,27353,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.938717555105269,8.973655688476901,7.627455737934128,0,0,-986.0113041412341,0,-9,-9,2019,11,0,30,30,1,0,0,28.67070450585663,28.67070450585663,0,0,0,0,0,1,0,1,7.751696216517026,0,49.25,52.88,-9,-9,6.666666666666667,1,1,0,0,4,7,5,1,1510.333333333333,0,0,0,0,4727.350542969872 -12196,15028,27354,-9,27353,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.346770842281,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1510.333333333333,0,0,0,0,4727.350542969872 -12196,15028,27355,-9,27353,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.360528638484,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1510.333333333333,0,0,0,0,4727.350542969872 -12197,15029,27356,-9,27359,27360,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.8847704879976,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,842.8,-6551.56049860497,0,0,0,1498.663832308576 -12197,15029,27357,-9,27359,27360,1,1,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-985.3923637487013,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.51,44.7,-9,-9,10,2,3,0,0,0,6,2,1,842.8,-6551.56049860497,0,0,0,1498.663832308576 -12197,15029,27358,-9,27359,27360,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.765561190455,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,1,842.8,-6551.56049860497,0,0,0,1498.663832308576 -12197,15029,27359,27360,-9,-9,1,0,52,0,3,0,2,2,-9,0,1,0,0,0,27,-3,73.88044653932893,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.43,23.72,46.65,43.39,1.666666666666667,2,3,0,0,0,6,2,1,842.8,-6551.56049860497,0,0,0,1498.663832308576 -12197,15029,27360,27359,-9,-9,1,1,55,0,3,0,3,3,-9,0,3,7.05564658046735,7.189130258252908,0,27,3,75.32852335533781,0,3,3,2019,10,0,24,24,1,0,0,6.240010730885118,6.240010730885118,0,0,0,0,0,1,1,0,0,0,46.65,43.39,40.43,23.72,5,2,3,0,0,2,6,2,1,842.8,-6551.56049860497,0,0,0,1498.663832308576 -12198,15030,27361,27362,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.585686737848624,8.722786163854003,0,6,1,89.73341934342456,0,2,2,2019,6,0,50,45,1,0,0,15.35785482738708,15.35785482738708,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,6.666666666666667,1,1,0,0,7,13,4,1,741.75,60028.02275971712,101800.7929005566,86214.12712674405,55911.67139401597,2842.599090068528 -12198,15030,27362,27361,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.423831505403684,7.476120677852362,0,6,-1,-138.3493694647346,0,-9,-9,2019,6,0,16,30,1,0,0,15.91055320646191,15.91055320646191,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.46,56.91,10,1,1,0,0,7,13,4,1,741.75,60028.02275971712,101800.7929005566,86214.12712674405,55911.67139401597,2842.599090068528 -12198,15030,27363,-9,27362,27361,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.6695025303796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,741.75,60028.02275971712,101800.7929005566,86214.12712674405,55911.67139401597,2842.599090068528 -12198,15030,27364,-9,27362,27361,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.155045617078,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,741.75,60028.02275971712,101800.7929005566,86214.12712674405,55911.67139401597,2842.599090068528 -12199,15031,27365,27366,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,9.097938268768031,9.435344525505151,0,8,17,-1.163736759723584,0,-9,-9,2019,9,0,46,45,1,0,0,26.21874727770813,26.21874727770813,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,8,8,5,0,306.3333333333333,2967371.113531553,1193643.285309595,1510719.89268509,0,7524.785009604534 -12199,15031,27366,27365,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.722984499234366,8.935714540906885,6.96600917683333,8,-17,113.8194403273679,0,1,3,2019,11,0,40,38,1,0,0,18.31939421467347,18.31939421467347,0,0,0,0,0,0,0,0,6.34404449990041,0,57.16,56.15,62.39,56.71,6.666666666666667,3,4,0,0,5,8,5,0,306.3333333333333,2967371.113531553,1193643.285309595,1510719.89268509,0,7524.785009604534 -12199,15031,27367,-9,27366,27365,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.302573856148,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,5,0,306.3333333333333,2967371.113531553,1193643.285309595,1510719.89268509,0,7524.785009604534 -12200,15032,27368,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.372069720375377,7.527054131884001,6.844829527663131,0,0,-981.8199410371961,0,2,1,2019,6,0,35,37,1,0,0,4.848709222353722,4.848709222353722,0,0,0,0,0,1,1,0,7.01854633732943,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,10,2,3,0,2885,153558.1255669479,25760.65377415066,159894.7190622688,30421.98026928617,1796.170579436271 -12201,15033,27369,27370,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,5.955047822107524,6.586883136022966,9,2,75.19317959291581,0,2,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.497306480400858,6.677739463486702,62.39,56.71,62.39,56.71,10,1,1,0,0,11,9,3,1,1351.5,1090089.846686996,440955.893866757,375572.8082668397,0,2117.256842098875 -12201,15033,27370,27369,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,0,8.036657196411239,8.263372705019632,35,-2,7.681909120275447,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.643063938564431,7.81137611384997,62.39,56.71,62.39,56.71,10,1,1,0,0,10,9,3,1,1351.5,1090089.846686996,440955.893866757,375572.8082668397,0,2117.256842098875 -12202,15034,27371,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.750963761843462,8.564579981698515,0,0,0,-1053.453682389814,0,2,2,2019,14,2,44,49,1,2,0,14.98145772340926,14.98145772340926,0,0,0,0,0,1,1,0,0,0,36.61,54.56,-9,-9,6.666666666666667,1,1,0,0,10,5,5,0,109,192101.789279323,177472.5202904347,115492.3377240469,53675.77824658548,2525.595272785393 -12203,15035,27372,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.509807747837,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,0,8,1,0,1556,0,0,0,0,476.9126423990924 -12204,15036,27373,27374,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.144272170671043,7.381568796762926,56,-3,-57.2232422747215,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.19745556286806,7.240363731832439,52,45,54,46,8,1,1,0,0,0,12,4,1,279.5,827021.9400309041,392341.8419686527,181967.8637107367,0,3405.673449568967 -12204,15036,27374,27373,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.938065020711013,7.853214473086122,56,3,-135.680924031998,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.49727872328006,7.666305613813058,54,46,52,45,8,1,1,0,0,0,12,4,1,279.5,827021.9400309041,392341.8419686527,181967.8637107367,0,3405.673449568967 -12205,15037,27375,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.416034501390346,8.36692534404828,0,0,0,-1079.699564207566,0,2,2,2019,8,0,38,37,1,0,0,14.83380058531362,14.83380058531362,0,0,0,0,0,1,1,0,5.7820491601484,0,53.36,50.02,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,131,59735.83038668981,28948.00081572092,38563.38114335755,710.8025063586683,1211.363988968833 -12206,15038,27376,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,5,8.582631197913148,8.802861913696574,0,0,0,-1129.380190489124,-9,-9,-9,2019,6,0,35,0,1,0,0,14.81316398978924,14.81316398978924,0,0,0,0,0,0,0,0,.4785066497495644,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,137,91688.97316639792,9581.810746381121,0,0,1668.506863305891 -12207,15039,27377,27378,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.459430530173931,8.723810466867825,0,3,0,33.07487695000637,0,-9,2,2019,6,0,44,43,1,0,0,12.49085715302143,12.49085715302143,0,0,0,0,0,0,0,0,2.088751769494647,0,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,8,4,5,1,782.5,1113586.285671026,647500.4278182489,285084.6305098613,49957.22388183188,3576.125279406594 -12207,15039,27378,27377,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.414201019730955,8.338031964652798,0,3,0,-146.5567460207226,0,1,1,2019,9,0,33,32,1,0,0,13.58838099695163,13.58838099695163,0,0,0,0,0,0,0,0,6.8053007771409,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,8,4,5,1,782.5,1113586.285671026,647500.4278182489,285084.6305098613,49957.22388183188,3576.125279406594 -12208,15040,27379,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-830.7619715296555,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1966,26015.22285869278,0,0,0,1339.865176525882 -12209,15041,27380,27381,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.431501795851558,7.729131021768553,0,8,-1,-37.58505100994794,0,2,2,2019,12,4,20,23,1,4,0,8.352465224919674,8.352465224919674,0,0,0,0,2,0,0,0,.9561207937426186,0,41.23,59.35,38.38,57.97,8.333333333333334,1,1,0,0,8,7,5,1,703.5,1179120.59428664,386068.8612051756,475683.107601858,0,2864.658417302649 -12209,15041,27381,27380,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.030596418087859,8.983903098167339,0,8,1,-94.54902796197366,0,2,2,2019,13,1,43,51,1,1,0,21.59323897095582,21.59323897095582,0,0,0,0,0,0,0,0,0,0,38.38,57.97,41.23,59.35,3.333333333333333,1,1,0,0,9,7,5,1,703.5,1179120.59428664,386068.8612051756,475683.107601858,0,2864.658417302649 -12209,15042,27382,-9,27380,27381,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-951.6865286393436,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,650,71129.55887491121,0,0,0,0 -12210,15043,27383,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.848525188341009,8.086669811841082,0,0,0,-1026.344884433942,0,2,2,2019,8,0,35,35,1,0,0,11.41015459980085,11.41015459980085,0,0,0,0,0,0,0,0,0,0,53.2,42.92,-9,-9,6.666666666666667,4,2,0,0,13,5,4,1,614,377457.9436156163,9389.514259276068,277498.1354588445,0,1426.03427587263 -12211,15044,27384,27385,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,7.285533728883061,7.46843415171779,33,2,22.55519628209023,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.708236758479571,6.76888023053028,57.4,30.78,44.34,51.2,8.333333333333334,1,1,0,0,0,10,3,1,566.5,409784.5877787872,566767.7507819607,0,0,2352.587295577363 -12211,15044,27385,27384,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.255813841457284,6.930569651973605,4.930145202348474,34,-2,-40.40382523418181,0,3,3,2019,16,6,16,8,1,6,0,3.361248809030287,3.361248809030287,0,0,0,0,27,1,1,0,.3602846657079565,5.132551541971964,44.34,51.2,57.4,30.78,3.333333333333333,1,1,0,0,10,10,3,1,566.5,409784.5877787872,566767.7507819607,0,0,2352.587295577363 -12212,15045,27386,27388,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.023421707007866,7.929105873118103,0,6,-2,33.64672615756816,0,2,2,2019,19,7,43,38,1,7,0,9.069451349123845,9.069451349123845,0,0,0,0,0,1,1,0,0,0,29.63,55.43,51.24,58.84,3.333333333333333,1,1,0,0,7,2,4,1,2070.5,471496.0053138735,422942.7066233889,169801.0498626864,130330.2349780533,3050.397783344478 -12212,15045,27387,-9,27386,27388,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.0926269712915,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,2070.5,471496.0053138735,422942.7066233889,169801.0498626864,130330.2349780533,3050.397783344478 -12212,15045,27388,27386,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.998829140398009,8.048451746697761,0,6,2,-16.0540902464037,0,2,-9,2019,12,0,40,0,1,0,0,8.749827734755744,8.749827734755744,0,0,0,0,0,1,1,0,0,0,51.24,58.84,29.63,55.43,8.333333333333334,1,1,0,0,5,2,4,1,2070.5,471496.0053138735,422942.7066233889,169801.0498626864,130330.2349780533,3050.397783344478 -12212,15045,27389,-9,27386,27388,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.1781377734587,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,2070.5,471496.0053138735,422942.7066233889,169801.0498626864,130330.2349780533,3050.397783344478 -12213,15046,27390,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.580677496154671,6.666990240766033,0,0,-915.1886488593502,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,7.749158021403233,6.617855956791762,50.11,55.32,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,516,1447530.038042307,-39303.81451289812,1275039.791090667,0,2276.053116343276 -12214,15047,27391,27392,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.153521865188646,8.315785338040616,0,21,3,-4.697742883427969,0,2,-9,2019,17,5,30,42,1,5,0,15.75191925784018,15.75191925784018,0,0,0,0,2,1,1,0,0,0,39.5,42.96,38.75,53.76,3.333333333333333,1,1,0,0,11,9,4,1,484.3333333333333,1278304.844254004,989535.7294433928,449007.0328153669,167706.6494534363,3017.758628984076 -12214,15047,27392,27391,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.896400232725348,8.019586128971396,0,21,-3,28.8078011053833,0,-9,-9,2019,13,1,8,8,1,1,0,35.92722539905903,35.92722539905903,0,0,0,0,2,1,1,0,.3252477558831089,0,38.75,53.76,39.5,42.96,5,1,1,0,0,6,9,4,1,484.3333333333333,1278304.844254004,989535.7294433928,449007.0328153669,167706.6494534363,3017.758628984076 -12214,15047,27393,-9,27392,27391,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.8833669471677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,4,1,484.3333333333333,1278304.844254004,989535.7294433928,449007.0328153669,167706.6494534363,3017.758628984076 -12215,15048,27394,-9,27397,27395,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.054989296334,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,727.75,710074.4650499815,435206.8371278986,380983.7332632372,151501.7551758814,5365.077363293919 -12215,15048,27395,27397,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.568539034106038,9.487853174953745,0,3,1,-15.92508070289566,0,2,1,2019,9,0,40,40,1,1,0,41.2443303347974,41.2443303347974,0,0,0,0,0,0,0,0,8.251422161868195,0,51,56,57.06,57.76,8,1,1,0,0,1,4,5,1,727.75,710074.4650499815,435206.8371278986,380983.7332632372,151501.7551758814,5365.077363293919 -12215,15048,27396,-9,27397,27395,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.6343156896723,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,727.75,710074.4650499815,435206.8371278986,380983.7332632372,151501.7551758814,5365.077363293919 -12215,15048,27397,27395,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,3,-1,22.84636694320913,0,2,3,2019,6,0,0,32,3,0,0,0,0,0,0,0,0,0,0,0,0,2.290823518986429,0,57.06,57.76,51,56,0,1,1,0,0,8,4,5,1,727.75,710074.4650499815,435206.8371278986,380983.7332632372,151501.7551758814,5365.077363293919 -12216,15049,27398,27399,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.699605769496032,6.540967332090921,56,-3,-94.58035893864341,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.225759178796342,6.508263675763669,53.81,29.63,55.53,51.55,5,1,1,0,0,0,9,4,1,500.5,1753015.557773722,885300.4447381713,468727.8574495233,0,3417.339240744325 -12216,15049,27399,27398,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.122885807807457,8.270346836729356,56,3,-98.46038317786562,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.652391491422821,8.127514827127735,55.53,51.55,53.81,29.63,8.333333333333334,1,1,0,0,4,9,4,1,500.5,1753015.557773722,885300.4447381713,468727.8574495233,0,3417.339240744325 -12216,15050,27400,-9,27398,27399,1,1,30,0,0,0,2,2,-9,0,4,7.783791843140144,7.84347418172681,0,0,0,-1013.547035203973,0,2,1,2019,10,0,21,33,1,1,0,14.42984235170402,14.42984235170402,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,1.666666666666667,1,1,0,0,10,9,3,1,1906,89170.75021493908,-13093.2216288687,274677.9415946848,82967.3177299988,873.9711452048891 -12217,15051,27401,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.805309783165837,9.26473530459667,0,0,0,-1058.415782070424,0,2,2,2019,5,0,25,18,1,0,0,30.18211172624946,30.18211172624946,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,475,384919.3723207836,350965.7609048025,0,0,3478.607236504929 -12218,15052,27402,27403,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.141883699589201,6.0034169677626,55,-1,-33.11188229290745,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.741900276746676,6.524809923516115,63.65,49.16,57.16,56.15,8.333333333333334,1,1,0,0,4,9,2,1,1286,383469.2408726031,54467.84658362732,198708.2427716295,0,1177.239222665706 -12218,15052,27403,27402,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,55,1,-123.6432494535117,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.852454146331323,0,57.16,56.15,63.65,49.16,8.333333333333334,1,1,0,0,0,9,2,1,1286,383469.2408726031,54467.84658362732,198708.2427716295,0,1177.239222665706 -12219,15053,27404,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.883062434476935,8.914433417228285,0,0,0,-1111.778478809919,0,2,2,2019,34,12,43,40,1,12,0,21.84169768078014,21.84169768078014,0,0,0,0,0,0,0,0,.1696911638881459,0,30.65,69.59,-9,-9,8.333333333333334,4,2,0,0,10,6,5,1,3516,164164.6434452516,-11387.07433895919,180945.6372777552,91709.9350801735,2081.102481085094 -12220,15054,27405,27406,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.945399498741751,7.708447369846608,47,-1,50.03479278629055,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.00946168540095,7.908794973970373,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,0,6,4,1,487,1940239.099008599,1415993.107391994,326474.9284398229,0,4956.9519307652 -12220,15054,27406,27405,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.293353290537976,7.892524140850602,47,1,-41.63901530107598,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.467680068901098,8.130078860585044,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,6,4,1,487,1940239.099008599,1415993.107391994,326474.9284398229,0,4956.9519307652 -12221,15055,27407,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.348150078221661,5.055704842684642,0,0,-1088.923487785825,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.348315687812688,5.062006842762259,57.33,53.46,-9,-9,10,3,4,0,0,0,9,2,1,652,812483.5696801203,0,507754.6529170181,0,1057.324967119891 -12222,15056,27408,27410,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,29,2,-4.339432954326512,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.561210481603205,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,1343.666666666667,290876.4734647731,35890.21151960841,0,0,1416.05326197428 -12222,15056,27409,-9,27408,27410,1,1,17,0,0,1,2,0,0,0,5,0,3.097697709236141,2.789926127400253,0,0,-1118.688642798509,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,2.521076652773712,0,52.66,56.94,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,1343.666666666667,290876.4734647731,35890.21151960841,0,0,1416.05326197428 -12222,15056,27410,27408,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.087660407593307,7.225168313053039,0,29,-2,57.36958731167444,0,3,2,2019,7,0,50,50,1,0,0,3.633655038080189,3.633655038080189,0,0,0,0,0,1,0,1,3.456400798831147,0,57.06,57.76,57.33,53.46,6.666666666666667,1,1,0,0,8,10,2,1,1343.666666666667,290876.4734647731,35890.21151960841,0,0,1416.05326197428 -12222,15057,27411,-9,27408,27410,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-962.4159119493506,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,1,1,0,0,0,10,1,1,477,-11222.03682944049,0,0,0,0 -12223,15058,27412,27413,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,5.059374586245843,4.789766760582617,0,5,0,-31.71119752750541,0,2,2,2019,12,0,40,40,1,0,0,.46804287455383,.46804287455383,0,0,0,0,0,0,0,0,.2980595497547138,0,36.29,61.48,51.83,57.2,8.333333333333334,1,1,0,0,11,9,4,1,585.5,28745.85537216532,122802.2133936779,0,0,2157.446121195694 -12223,15058,27413,27412,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.561549020528117,8.423823702765231,0,5,0,-29.14988862922895,0,-9,-9,2019,7,0,40,40,1,0,0,16.03332346358723,16.03332346358723,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.29,61.48,8.333333333333334,1,1,0,0,4,9,4,1,585.5,28745.85537216532,122802.2133936779,0,0,2157.446121195694 -12224,15059,27414,-9,27415,27416,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.4181239466093,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,953.6666666666666,56839.95305973668,28369.02387962029,0,0,1531.468875301707 -12224,15059,27415,27416,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.6372995147139,7.852178541013179,0,27,-2,-30.49764320524,0,2,2,2019,8,0,32,30,1,0,0,9.155651859444591,9.155651859444591,0,0,0,0,0,1,1,0,.6723215316655182,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,9,3,1,953.6666666666666,56839.95305973668,28369.02387962029,0,0,1531.468875301707 -12224,15059,27416,27415,-9,-9,1,1,49,0,1,0,3,3,-9,0,5,5.959120837147254,6.101130713848874,0,27,2,-28.21058922386103,0,2,2,2019,8,0,40,40,1,0,0,.9635451373859355,.9635451373859355,0,0,0,0,0,1,1,0,.8721620307528966,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,13,9,3,1,953.6666666666666,56839.95305973668,28369.02387962029,0,0,1531.468875301707 -12224,15060,27417,-9,27415,27416,1,0,18,0,1,0,2,2,1,0,4,7.193077587414609,7.490238447552167,4.524248661789306,0,0,-941.6081058335795,-9,2,3,2019,6,1,18,0,1,1,1,6.963155300342819,6.963155300342819,0,0,0,0,0,1,1,0,4.139748214718731,0,36.66,61.22,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,428,61709.91541536394,0,0,0,952.2942946189238 -12225,15061,27418,27419,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.671344427854264,8.736236938408094,0,10,-6,-70.858859926875,0,-9,2,2019,9,1,45,40,1,1,0,12.45581344589942,12.45581344589942,0,0,0,0,0,1,1,0,0,0,52,54.51,60.12,54.8,6.666666666666667,1,1,0,0,11,12,5,1,690.5,1340718.696286561,399395.1120900527,330933.756550108,0,4000.930512062614 -12225,15061,27419,27418,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.606388542463451,8.733796485466991,0,10,6,32.71601635546655,0,3,2,2019,6,0,50,50,1,0,0,13.68707089688762,13.68707089688762,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52,54.51,5,1,1,0,0,11,12,5,1,690.5,1340718.696286561,399395.1120900527,330933.756550108,0,4000.930512062614 -12225,15061,27420,-9,27418,27419,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-956.2384821134222,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,48.55,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,690.5,1340718.696286561,399395.1120900527,330933.756550108,0,4000.930512062614 -12225,15061,27421,-9,27418,27419,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.116435443434,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,690.5,1340718.696286561,399395.1120900527,330933.756550108,0,4000.930512062614 -12225,15062,27422,-9,27418,27419,1,0,22,0,1,0,2,2,0,0,4,0,0,0,0,0,-930.0552740920205,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,12,1,1,228,-11502.98934253603,0,0,0,0 -12226,15063,27423,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.04579111749034,8.222742964263183,0,0,0,-973.0731348912611,0,2,2,2019,13,1,45,3,1,1,0,8.285989169094217,8.285989169094217,0,0,0,0,0,0,0,0,0,0,47.3,45.59,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,157,115812.3821160205,0,0,0,1534.549473249655 -12227,15064,27424,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.416960620034452,8.78155670076773,0,0,0,-934.2790979941583,0,-9,-9,2019,28,11,60,55,1,11,0,9.60094192377279,9.60094192377279,0,0,0,0,0,0,0,0,0,0,36.18,53.83,-9,-9,5,1,1,0,0,11,11,5,0,614,160533.6092201544,0,207507.0265231547,83060.91799433912,2098.843919240792 -12228,15065,27425,-9,27428,27426,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.0930093658433,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,0,1178,3558331.412198728,2714064.726396866,952230.1169968673,232429.7338836004,6307.390835506883 -12228,15065,27426,27428,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,9.363129017212215,9.784022046263326,0,20,0,77.01955336871011,0,2,2,2019,8,0,48,50,1,0,0,32.59248837736304,32.59248837736304,0,0,0,0,2,0,0,0,0,0,54.1,59.11,46.44,59.62,8.333333333333334,1,1,0,0,12,8,5,0,1178,3558331.412198728,2714064.726396866,952230.1169968673,232429.7338836004,6307.390835506883 -12228,15065,27427,-9,27428,27426,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1011.413736102187,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,0,8,5,0,1178,3558331.412198728,2714064.726396866,952230.1169968673,232429.7338836004,6307.390835506883 -12228,15065,27428,27426,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.306308131065077,8.589569936494787,0,20,0,-39.07795334896682,0,2,2,2019,13,3,35,35,1,3,0,17.39889224407045,17.39889224407045,0,0,0,0,0,0,0,0,0,0,46.44,59.62,54.1,59.11,8.333333333333334,2,3,0,0,6,8,5,0,1178,3558331.412198728,2714064.726396866,952230.1169968673,232429.7338836004,6307.390835506883 -12229,15066,27429,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,2.282533005934048,2.735936127683531,0,0,-937.941007365456,-9,3,2,2019,30,12,0,0,4,12,0,0,0,0,0,0,0,0,1,0,1,0,2.23839879846826,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,128,356258.3038730591,3267.367759746971,225249.1742517136,0,799.6742773373782 -12230,15067,27430,27431,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,25,2,-32.89726280352561,0,2,2,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,58.32,50.22,54.1,59.11,8.333333333333334,1,1,0,0,8,9,4,1,2265,518423.1521162895,349427.2745385624,142022.5485246415,12631.46331147572,1276.883122642333 -12230,15067,27431,27430,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.33012812273757,8.514154163271417,0,26,-2,148.391948685337,0,2,2,2019,12,0,50,40,1,0,0,9.182402902487006,9.182402902487006,0,0,0,0,2,0,0,0,0,0,54.1,59.11,58.32,50.22,6.666666666666667,1,1,0,0,10,9,4,1,2265,518423.1521162895,349427.2745385624,142022.5485246415,12631.46331147572,1276.883122642333 -12230,15068,27432,-9,27430,27431,1,1,23,0,0,0,1,1,-9,0,3,4.152839601187106,4.34308194981165,0,0,0,-976.4023884213312,0,2,1,2019,10,2,38,0,1,2,1,.1793794288413439,.1793794288413439,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,1,9,2,1,753,-15962.11349311479,0,0,0,-25.66227574909652 -12231,15069,27433,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.365163310491818,8.656452917296511,0,0,0,-906.0601473604236,0,3,2,2019,8,0,42,43,1,0,0,12.33049931526974,12.33049931526974,0,0,0,0,0,1,1,0,2.617242930672563,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,111,397647.6495483601,425607.64688037,98800.89443136728,71971.69176504071,1395.114764743277 -12232,15070,27434,27435,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,5.150324850432043,5.171567796309016,1,10,-18.17528777441095,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.282692356149668,52,47,49,48,7,4,1,0,0,0,1,3,1,1195.5,531154.9132083526,122530.674056833,168448.7825789154,0,1876.680570988786 -12232,15070,27435,27434,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.407897608711684,7.62459811967221,0,1,-10,-59.51306514220857,0,3,3,2019,19,7,35,30,1,7,0,6.464724334558024,6.464724334558024,0,0,0,0,7,1,1,0,0,0,49,48,52,47,1.666666666666667,1,1,0,1,8,1,3,1,1195.5,531154.9132083526,122530.674056833,168448.7825789154,0,1876.680570988786 -12233,15071,27436,27437,-9,-9,1,0,48,1,1,0,2,2,-9,0,4,8.000499144576391,8.019372111222271,0,4,14,-145.6618799155339,0,2,3,2019,9,0,25,28,1,0,0,15.7393072325225,15.7393072325225,0,0,0,0,7,1,1,0,4.589412878463419,0,51.95,53.02,49.41,58.28,8.333333333333334,1,1,0,0,9,5,4,1,458,117771.3112827022,182901.8030827518,295168.2420829849,206730.2075912872,3250.15946612613 -12233,15071,27437,27436,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.389913500403351,8.504986312658662,0,4,-14,-2.071050483386546,0,-9,-9,2019,12,0,48,45,1,0,0,9.083324182283009,9.083324182283009,0,0,0,0,0,1,1,0,1.226580440355251,0,49.41,58.28,51.95,53.02,8.333333333333334,1,1,0,0,6,5,4,1,458,117771.3112827022,182901.8030827518,295168.2420829849,206730.2075912872,3250.15946612613 -12233,15071,27438,-9,27436,27437,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.491423691302,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,458,117771.3112827022,182901.8030827518,295168.2420829849,206730.2075912872,3250.15946612613 -12234,15072,27439,27440,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.993058751709623,8.152273152021399,9,0,14.16001584599902,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.198812431270711,8.800810295061392,55.93,52.62,51.4,41.01,10,1,1,0,0,1,12,4,1,259.5,2077621.401817695,1318597.984864691,273081.799104142,0,3352.066081837078 -12234,15072,27440,27439,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.815748684651092,6.628382266840688,9,0,12.0628622537769,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,.1877180569208541,0,0,1,1,0,4.20082231675218,6.862535840664582,51.4,41.01,55.93,52.62,8.333333333333334,1,1,0,0,2,12,4,1,259.5,2077621.401817695,1318597.984864691,273081.799104142,0,3352.066081837078 -12235,15073,27441,27442,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.211677886830622,6.940179928480465,8,-1,45.90398099568758,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.441028939624769,54.2,57.49,62.99,44.02,8.333333333333334,1,1,0,0,4,11,4,1,716,1202009.750903503,595859.5104748694,334950.3786015306,0,3588.885711658641 -12235,15073,27442,27441,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.27409312962682,8.475480841330524,8,1,86.44899999944217,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.183245654979306,62.99,44.02,54.2,57.49,8.333333333333334,1,1,0,0,1,11,4,1,716,1202009.750903503,595859.5104748694,334950.3786015306,0,3588.885711658641 -12236,15074,27443,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,8.452729142083529,8.423821127725097,0,0,-1040.018949678695,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.242723756318876,47.7,49.37,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,470,500070.5080752854,0,404040.8045028219,0,3465.384933166017 -12236,15075,27444,-9,27443,-9,1,1,49,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1039.878788752662,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.714055038166324,0,46.39,39.75,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,607,255155.8190663634,56008.85807211087,160656.5556335195,9727.537836265499,-878.4329368861155 -12237,15076,27445,27446,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,3,.8170292426117767,0,2,2,2019,5,0,0,35,4,0,0,0,0,0,0,0,0,0,1,1,0,2.459693399549648,0,60.54,42.81,56.49,35.1,10,1,1,0,0,10,1,2,1,539.5,114293.4816304348,25641.33554130853,0,0,1670.338647589373 -12237,15076,27446,27445,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.87360427572516,7.153508050609296,42,-3,-105.1210630419907,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.865193556238147,6.591805223932593,56.49,35.1,60.54,42.81,5,1,1,0,0,8,1,2,1,539.5,114293.4816304348,25641.33554130853,0,0,1670.338647589373 -12238,15077,27447,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.974088046707962,8.047892416955451,0,0,0,-1018.009957073103,-9,2,2,2019,10,0,32,0,1,0,0,10.45982561602569,10.45982561602569,0,0,0,0,0,0,0,0,2.193525891847289,0,41.46,53.68,-9,-9,3.333333333333333,1,1,0,0,8,7,4,0,72,-110898.3992857749,25248.94568279547,0,0,1584.574921417261 -12239,15078,27448,27452,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,0,0,0,17,-1,-100.0130266846483,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,2,4,2,1,839.8,-68882.68120573231,-8194.709253060575,0,0,2225.858968398582 -12239,15078,27449,-9,27452,27448,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1017.078304227341,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,2,1,839.8,-68882.68120573231,-8194.709253060575,0,0,2225.858968398582 -12239,15078,27450,-9,27452,27448,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.279443470944,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,839.8,-68882.68120573231,-8194.709253060575,0,0,2225.858968398582 -12239,15078,27451,-9,27452,27448,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-994.022533026094,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,2,1,839.8,-68882.68120573231,-8194.709253060575,0,0,2225.858968398582 -12239,15078,27452,27448,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,7.727248479945171,7.308900860008673,0,17,1,-28.95768806715414,0,3,3,2019,10,0,32,30,1,0,0,6.720328539039724,6.720328539039724,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,7,4,2,1,839.8,-68882.68120573231,-8194.709253060575,0,0,2225.858968398582 -12240,15079,27453,-9,-9,-9,1,0,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-1062.082183395084,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,.2920805190270335,0,49.79,43.81,-9,-9,5,1,1,0,0,6,6,1,1,196,0,0,0,0,-303.7139816621294 -12241,15080,27454,-9,27455,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.486472322167,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.0548058783835099,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,843.5,-6194.362072203372,0,0,0,1850.908965387507 -12241,15080,27455,-9,-9,-9,1,0,39,0,1,0,3,3,-9,0,4,7.493870180496041,7.773593703330519,0,0,0,-941.4803905190887,0,2,2,2019,12,0,24,30,1,0,0,10.14742875816105,10.14742875816105,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,843.5,-6194.362072203372,0,0,0,1850.908965387507 -12241,15081,27456,-9,27455,-9,1,0,19,0,1,1,2,0,0,0,5,0,5.568480514013279,5.737793309645109,0,0,-1075.457742384287,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.0176048270127,0,57.65,56.13,-9,-9,1.666666666666667,1,1,0,0,2,13,2,0,759,-271171.2748334866,0,0,0,-37.1530651603812 -12242,15082,27457,27458,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.695850101814138,8.717552574377391,0,10,3,-9.98705937577553,0,3,3,2019,6,0,39,39,1,0,0,16.27586941004132,16.27586941004132,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,13,2,3,1,808.3333333333334,208526.1172755234,-18839.14690766154,141848.2276909723,82010.83222474351,2144.240663618526 -12242,15082,27458,27457,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.521883671481263,6.841341991365891,0,10,-3,-82.72022117118901,0,3,3,2019,6,0,12,11,1,0,0,6.261507350361959,6.261507350361959,0,0,0,0,2,1,1,0,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,13,2,3,1,808.3333333333334,208526.1172755234,-18839.14690766154,141848.2276909723,82010.83222474351,2144.240663618526 -12242,15082,27459,-9,27458,27457,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.0707502013204,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,808.3333333333334,208526.1172755234,-18839.14690766154,141848.2276909723,82010.83222474351,2144.240663618526 -12243,15083,27460,27461,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.547285240864991,8.427214218146251,0,6,-2,-53.66395844382592,0,3,3,2019,18,5,45,44,1,5,0,9.88033739050144,9.88033739050144,0,0,0,0,0,0,0,0,3.894297619576798,0,33.99,55.1,45.91,59.89,3.333333333333333,1,1,0,0,7,5,5,1,234,952854.6127524712,148009.2148896632,445017.1661809191,63557.44022077974,7587.283854926217 -12243,15083,27461,27460,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.665128224781535,9.665346473430716,0,6,2,-157.1208506585504,0,1,1,2019,12,0,42,46,1,0,0,49.28468779240278,49.28468779240278,0,0,0,0,2,0,0,0,1.16624954952642,0,45.91,59.89,33.99,55.1,6.666666666666667,1,1,0,0,7,5,5,1,234,952854.6127524712,148009.2148896632,445017.1661809191,63557.44022077974,7587.283854926217 -12243,15084,27462,-9,27460,27461,1,0,26,0,0,0,2,2,0,0,4,0,0,0,0,0,-941.5981567791879,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,1352,-40084.44661466491,0,0,0,-158.5961321949828 -12243,15085,27463,-9,27460,27461,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-911.0856451807585,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,311,0,0,0,0,208.7753151894681 -12244,15086,27464,27465,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.818067815111206,9.051884945343506,0,2,1,59.91288502453391,0,-9,-9,2019,10,0,38,47,1,1,0,23.85889125488827,23.85889125488827,0,0,0,0,0,0,0,0,0,0,50,57,58.05,54.52,7,2,3,0,0,1,9,5,0,252.5,218484.7202073424,113657.3279854435,249888.9212124392,196056.3884279096,5218.026316112718 -12244,15086,27465,27464,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.86813051208634,9.113416697007182,0,2,-1,-56.90806223585354,0,1,1,2019,7,0,43,42,1,0,0,18.2699980597097,18.2699980597097,0,0,0,0,0,0,0,0,2.72891756037686,0,58.05,54.52,50,57,8.333333333333334,2,3,0,0,5,9,5,0,252.5,218484.7202073424,113657.3279854435,249888.9212124392,196056.3884279096,5218.026316112718 -12245,15087,27466,-9,27468,27470,1,1,16,0,4,1,3,0,-9,0,5,0,0,0,0,0,-961.8227451256992,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.29000000000001,42.14,-9,-9,10,2,3,0,0,0,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12245,15087,27467,-9,27468,27470,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-844.9448405566395,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12245,15087,27468,27470,-9,-9,1,0,36,0,4,0,3,3,-9,0,4,0,0,0,15,-3,-77.76806370061804,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12245,15087,27469,-9,27468,27470,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-981.5741113097971,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12245,15087,27470,27468,-9,-9,1,1,39,0,4,0,2,2,-9,0,4,7.756409605396886,7.331507440534448,0,15,3,-91.13324574711282,0,-9,-9,2019,9,0,45,32,1,1,0,5.145083614830993,5.145083614830993,0,0,0,.9088034561418343,0,1,1,0,0,0,51,56,49,56,8,2,3,0,0,8,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12245,15087,27471,-9,27468,27470,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.130762470578,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1056,9750.868370425158,0,0,0,2978.725604322721 -12246,15088,27472,-9,27473,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.7420463335068,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,539.3333333333334,207616.3832665843,172841.1183228349,125865.9650146625,0,1419.868777380671 -12246,15088,27473,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,3,7.022204872209197,7.322178666811592,6.749848547695872,3,6,-41.37570701138972,0,2,2,2019,8,0,33,29,1,0,0,3.297264884139357,3.297264884139357,0,0,0,0,93,1,1,0,5.857545618347761,0,55.36,51.57,46.67,55.57,8.333333333333334,1,1,0,0,11,4,3,1,539.3333333333334,207616.3832665843,172841.1183228349,125865.9650146625,0,1419.868777380671 -12246,15088,27474,-9,27473,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-966.3294377647335,-9,1,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,4,3,1,539.3333333333334,207616.3832665843,172841.1183228349,125865.9650146625,0,1419.868777380671 -12246,15089,27475,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.921017650396224,7.887839010023375,0,3,-6,102.4844791738274,0,-9,-9,2019,21,9,38,30,1,9,0,9.844716702954964,9.844716702954964,0,0,0,0,2,1,1,0,0,0,46.67,55.57,55.36,51.57,3.333333333333333,1,1,0,1,11,4,3,1,1437,41998.87214953788,73039.36626669743,0,0,759.0426176421955 -12247,15090,27476,27477,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.439497666881302,5.694011451102984,30,2,-51.73324657793032,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.7519030702104817,5.505146167522115,57.16,56.15,65.82000000000001,26.41,10,1,1,0,0,6,9,2,1,612,720998.321033559,111396.000044984,606376.5983918458,0,2168.854800520586 -12247,15090,27477,27476,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.466555342044299,6.500476542738629,31,-2,143.9782749768751,0,-9,2,2019,5,0,0,0,4,0,0,0,0,1,0,7.542628189841209,0,0,1,1,0,6.952976387391694,6.684239157146949,65.82000000000001,26.41,57.16,56.15,8.333333333333334,1,1,0,0,7,9,2,1,612,720998.321033559,111396.000044984,606376.5983918458,0,2168.854800520586 -12248,15091,27478,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1096.883149670598,0,3,3,2019,28,10,0,0,4,10,0,0,0,0,15.39885558501751,0,0,0,1,1,0,0,0,17.81,60.07,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,561,-250646.8690552357,0,0,0,1643.686186731789 -12249,15092,27479,27480,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.198865755269672,8.504699306321324,0,36,2,-27.1698946903313,0,3,3,2019,5,0,37,37,1,0,0,13.28989271566853,13.28989271566853,0,0,0,0,0,0,0,0,0,0,56.89,48.06,49.37,56.01,10,1,1,0,0,10,2,5,1,422,812324.0449789332,579203.3386537435,166886.2930283436,44661.76505635215,3304.1978058698 -12249,15092,27480,27479,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.079873741038687,7.870916114942913,0,35,-2,51.27519897858872,0,1,3,2019,12,0,38,38,1,0,0,9.058044240535603,9.058044240535603,0,0,0,0,0,0,0,0,0,0,49.37,56.01,56.89,48.06,8.333333333333334,1,1,0,0,10,2,5,1,422,812324.0449789332,579203.3386537435,166886.2930283436,44661.76505635215,3304.1978058698 -12250,15093,27481,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.925942627978733,8.906551634326879,0,0,0,-991.8224948469932,0,2,2,2019,13,1,43,39,1,1,0,19.40623813431964,19.40623813431964,0,0,0,0,0,0,0,0,0,0,42.74,49.17,-9,-9,6.666666666666667,1,1,0,0,7,12,5,1,229,-7294.422479363275,77124.55405799905,105132.7879470821,0,3281.65511111112 -12251,15094,27482,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.305873958843398,6.224198667875285,0,0,-984.765901776538,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.361874642218621,6.025209214569521,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1208,333073.7779633525,-74963.60162080542,215685.936302949,0,1268.046686912771 -12252,15095,27483,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,7.263174227471872,7.447764743821426,5.929962631389984,0,0,-1044.335737733916,0,3,2,2019,13,3,25,40,1,3,0,6.697562309285193,6.697562309285193,0,0,0,0,0,1,1,0,0,5.592269100307773,54.89,46.16,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,303,756127.4974197438,282294.9736895253,216013.2882740089,0,792.9419428679548 -12253,15096,27484,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1060.489563016466,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,30.1,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,3779,255194.7887329534,130853.3537046492,0,0,914.5594339367285 -12254,15097,27485,-9,27486,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-959.038274426209,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,4,2,-9,0,0,12,2,0,421,563524.5306030985,556298.9231099773,0,0,2010.165862362591 -12254,15097,27486,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,3,7.665356788144895,7.606140726016093,2.693647439332693,0,0,-966.3855844577187,0,2,1,2019,14,3,32,28,1,3,0,6.55519573021134,6.55519573021134,0,0,0,0,0,1,1,0,2.96325430666901,0,39.87,50.74,-9,-9,6.666666666666667,1,1,0,0,9,12,2,0,421,563524.5306030985,556298.9231099773,0,0,2010.165862362591 -12255,15098,27487,27488,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,8.300185657056746,7.836258039727398,8,1,-.7599960747209282,0,2,2,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,6.993467503018632,8.116617815283959,57.06,57.76,57.16,56.15,10,1,1,0,0,8,9,4,1,944.5,1260216.596389183,857710.1268854836,375363.2165129557,0,2366.197169534685 -12255,15098,27488,27487,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.902615465305501,6.985253160992595,8,-1,-13.80875430700055,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.086928455887681,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,1,9,4,1,944.5,1260216.596389183,857710.1268854836,375363.2165129557,0,2366.197169534685 -12256,15099,27489,27490,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.331142134635115,8.079731064768826,0,9,-8,-152.0549691599022,0,2,2,2019,6,0,40,35,1,0,0,12.67325424191728,12.67325424191728,0,0,0,0,0,1,1,0,6.507766484369265,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,10,11,5,1,476.5,1267308.222245057,862374.0765180625,196227.5037684785,0,3739.5792650171 -12256,15099,27490,27489,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.175606798516048,7.679848114635615,9,8,-154.510376616306,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.890013283503391,8.014983344631336,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,11,5,1,476.5,1267308.222245057,862374.0765180625,196227.5037684785,0,3739.5792650171 -12257,15100,27491,27492,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.844340161702962,5.58971549093415,30,3,100.2214287578447,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.053101077093444,5.818336611252075,48.68,51.82,41.72,21.36,6.666666666666667,1,1,0,0,0,6,2,1,456,402248.3151598456,350081.78456873,147191.4017285359,0,1087.018597768721 -12257,15100,27492,27491,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.813120298281882,6.890702518561801,29,-3,30.42049810343538,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.483897886465538,41.72,21.36,48.68,51.82,8.333333333333334,1,1,0,0,0,6,2,1,456,402248.3151598456,350081.78456873,147191.4017285359,0,1087.018597768721 -12258,15101,27493,27494,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.427386145024387,8.263004451474732,0,4,0,48.58145235134889,0,2,2,2019,9,0,45,32,1,0,0,12.14872223935855,12.14872223935855,0,0,0,0,0,0,0,0,1.085924857545916,0,57.06,57.76,51,56,10,1,1,0,0,9,7,5,1,2341,630209.4028306657,0,555919.264085032,0,3664.555110650871 -12258,15101,27494,27493,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.475203360183709,7.935847813617137,0,4,9,8.02871479064075,-9,-9,-9,2019,9,0,45,0,1,1,0,11.75653927836169,11.75653927836169,0,0,0,0,0,0,0,0,0,0,51,56,57.06,57.76,8,1,1,0,0,1,7,5,1,2341,630209.4028306657,0,555919.264085032,0,3664.555110650871 -12259,15102,27495,27496,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.539759309265732,6.088002498583328,61,-5,-34.09701924150423,0,3,3,2019,17,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.921020302859622,6.297736896715984,39.58,42.82,50.68,27.06,8.333333333333334,1,1,0,0,0,7,3,1,336.5,786120.1919942081,201778.1824527209,497712.4983044076,0,2163.543792666954 -12259,15102,27496,27495,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.539653984806201,7.564312099319292,61,5,-48.13380244185777,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.7324890372218289,7.328648516030794,50.68,27.06,39.58,42.82,8.333333333333334,1,1,0,0,0,7,3,1,336.5,786120.1919942081,201778.1824527209,497712.4983044076,0,2163.543792666954 -12260,15103,27497,27498,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.501847376780363,8.597702761680173,0,9,-1,23.4272997333808,0,3,3,2019,16,5,38,38,1,5,0,12.85644512902931,12.85644512902931,0,0,0,0,7,0,0,0,1.622561669455099,0,40.75,58.26,37.59,35.75,5,1,1,0,0,12,12,5,1,425,1603522.243872293,1236496.107284761,250103.688608573,28012.26896524214,4052.326323481655 -12260,15103,27498,27497,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.631015559387212,8.59789975691289,0,9,1,-48.80641930971316,-9,-9,-9,2019,16,4,25,0,1,4,0,21.90482483020974,21.90482483020974,0,0,0,0,7,0,0,0,4.353107621555325,0,37.59,35.75,40.75,58.26,5,1,1,0,0,0,12,5,1,425,1603522.243872293,1236496.107284761,250103.688608573,28012.26896524214,4052.326323481655 -12261,15104,27499,-9,27501,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.422051838051,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,1,0,935,236329.7640552775,0,227763.0181882154,123943.9408963645,1507.676337897375 -12261,15104,27500,-9,27501,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.1621509597051,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,935,236329.7640552775,0,227763.0181882154,123943.9408963645,1507.676337897375 -12261,15104,27501,-9,-9,-9,1,0,42,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1028.524640387355,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.35,57.21,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,935,236329.7640552775,0,227763.0181882154,123943.9408963645,1507.676337897375 -12261,15105,27502,-9,27501,-9,1,0,23,0,2,0,3,3,1,1,1,0,0,0,0,0,-851.1430855922861,-9,3,3,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.79,46.39,-9,-9,6.666666666666667,1,1,1,0,0,9,1,0,320,68991.96499220526,0,0,0,1138.133723703008 -12262,15106,27503,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.186379025367561,8.464580958516722,0,0,0,-1047.681253479212,0,2,2,2019,6,0,48,42,1,0,0,11.6221929666968,11.6221929666968,0,0,0,0,0,1,1,0,1.480012773850782,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,4,4,1,1045,-23725.24802000483,0,0,0,2096.689909992889 -12263,15107,27504,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,6.85477539162551,6.92422898530674,0,0,-1022.05659453272,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.606278801344969,6.97533064440307,62.52,30.61,-9,-9,10,1,1,0,0,0,6,2,1,244,-97666.63455489383,127433.2782137085,0,0,1132.731676783537 -12264,15108,27505,27506,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,4.31174270661945,4.097016797891878,55,1,87.49115616749701,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.836360695452203,4.232362283567163,51.24,58.84,62.27,48.47,10,1,1,0,0,0,7,2,1,1891.5,615694.591908775,132812.5205306901,257542.3214647622,0,1540.627820418344 -12264,15108,27506,27505,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.913785449055945,7.03041212991505,55,-1,-28.90661920469649,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.259200135585141,6.965161281839591,62.27,48.47,51.24,58.84,10,1,1,0,0,4,7,2,1,1891.5,615694.591908775,132812.5205306901,257542.3214647622,0,1540.627820418344 -12265,15109,27507,27508,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.292954461517992,7.588009596205606,0,6,3,75.56575315062896,0,2,1,2019,19,7,25,25,1,7,0,8.481679844455694,8.481679844455694,0,0,0,0,0,0,0,0,0,0,46.44,59.62,57.16,56.15,5,1,1,0,0,6,7,5,1,276.5,202930.0277975545,62604.59918445043,0,0,3055.764995998454 -12265,15109,27508,27507,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.746778060107435,8.537596897916739,0,6,-3,121.1138150354328,0,1,2,2019,8,0,42,42,1,0,0,17.52232709775223,17.52232709775223,0,0,0,0,0,0,0,0,2.445743647598825,0,57.16,56.15,46.44,59.62,8.333333333333334,1,1,0,0,6,7,5,1,276.5,202930.0277975545,62604.59918445043,0,0,3055.764995998454 -12265,15110,27509,-9,27508,27507,1,0,18,0,0,0,2,2,-9,0,3,7.113837066828508,7.125840142900684,0,0,0,-1051.177899710653,0,1,2,2019,6,0,15,0,1,0,1,8.677562913809318,8.677562913809318,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,430,-77285.95698046405,0,0,0,1307.281445070265 -12266,15111,27510,27511,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.485975962806444,8.404382581939991,0,29,3,-4.954829003984066,0,3,3,2019,11,1,40,37,1,1,0,13.62396294935748,13.62396294935748,0,0,0,0,0,0,0,0,0,0,47.79,53.79,59.29,49.68,8.333333333333334,1,1,0,0,8,13,5,1,435,1200967.227189852,1020209.166197,123775.716825143,0,3148.776893481687 -12266,15111,27511,27510,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.334397864044751,8.565321632615863,0,30,-3,21.91016329579026,0,2,-9,2019,11,0,37,37,1,0,0,9.669898536657435,9.669898536657435,0,0,0,0,0,0,0,0,0,0,59.29,49.68,47.79,53.79,8.333333333333334,1,1,0,0,8,13,5,1,435,1200967.227189852,1020209.166197,123775.716825143,0,3148.776893481687 -12266,15112,27512,-9,27511,27510,1,0,22,0,0,0,2,2,1,0,5,6.577815820701598,6.560549301140028,0,0,0,-1140.16612460871,-9,2,2,2019,8,0,14,0,1,0,1,4.655628714646789,4.655628714646789,0,0,0,0,0,0,0,0,0,0,52.3,57.2,-9,-9,10,1,1,0,0,5,13,2,1,248,205640.4077234805,43268.34043043389,0,0,139.4504276429564 -12266,15113,27513,-9,27511,27510,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-967.4548689858783,-9,2,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,37.44,59.68,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,743,113570.2347852338,0,0,0,0 -12267,15114,27514,27515,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,9.180166868140411,9.15054541587569,0,28,6,1.501113462515876,0,-9,2,2019,8,1,50,48,1,1,0,18.31010032429477,18.31010032429477,0,0,0,0,2,1,1,0,0,0,44.68,53.41,55.79,47.09,8.333333333333334,1,1,0,0,9,4,5,1,796.6666666666666,769003.2933205065,254878.7338335645,426593.7275363252,22035.42173791281,5381.39971513633 -12267,15114,27515,27514,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.761888878149403,8.652481138248971,0,29,-6,-25.48931807277165,0,2,2,2019,11,0,43,45,1,0,0,15.66624716087879,15.66624716087879,0,0,0,0,7,1,1,0,0,0,55.79,47.09,44.68,53.41,6.666666666666667,1,1,0,0,9,4,5,1,796.6666666666666,769003.2933205065,254878.7338335645,426593.7275363252,22035.42173791281,5381.39971513633 -12267,15114,27516,-9,27515,27514,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.2744352585005,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,796.6666666666666,769003.2933205065,254878.7338335645,426593.7275363252,22035.42173791281,5381.39971513633 -12267,15115,27517,-9,27515,27514,1,1,23,0,1,0,1,1,-9,0,5,7.339309410487028,7.811536846130512,5.014893967949003,0,0,-868.1294884096105,0,1,2,2019,9,1,35,0,1,1,1,8.391289985740324,8.391289985740324,0,0,0,0,0,1,1,0,5.025506234510349,0,51.73,58.82,-9,-9,5,1,1,0,0,1,4,3,1,513,112566.6538332925,0,0,0,1207.127659730527 -12268,15116,27518,-9,27519,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1167.406307425432,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,247,-22432.56234364502,0,0,0,1043.265889594615 -12268,15116,27519,-9,-9,-9,1,0,50,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1054.834798467346,-9,3,3,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.67,30.46,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,247,-22432.56234364502,0,0,0,1043.265889594615 -12269,15117,27520,27521,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,7.029395865702204,7.059539260522399,3,0,25.55748566859165,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.940650681988959,7.024125409201825,54.1,59.11,51.17,49.39,8.333333333333334,1,1,0,0,6,9,3,1,830.5,790424.8571777865,351116.5654927086,428328.4644538852,22217.94158949482,2652.720444347635 -12269,15117,27521,27520,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.37078950821337,6.854313673685136,3,9,57.85942291761424,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.197327791190594,7.086228029999858,51.17,49.39,54.1,59.11,6.666666666666667,1,1,0,0,0,9,3,1,830.5,790424.8571777865,351116.5654927086,428328.4644538852,22217.94158949482,2652.720444347635 -12270,15118,27522,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.015266951076539,7.226523036537102,0,0,-1122.040765236202,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,2.471853757547578,6.786946475747941,62.82,22.78,-9,-9,10,1,1,0,0,8,10,2,0,118,743042.6323751196,111430.9272601606,297365.747330662,0,1396.075251892793 -12271,15119,27523,27524,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.385842391735946,7.262879304788299,0,6,-1,-61.98820233314682,0,2,2,2019,7,0,16,8,1,0,0,13.88597037295496,13.88597037295496,0,0,0,0,0,1,1,0,2.064737287380112,0,57.16,56.15,67.75,25.82,8.333333333333334,1,1,0,0,7,4,2,1,2891.5,2040774.770857231,1214502.400235626,0,0,1768.417521270386 -12271,15119,27524,27523,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,6,1,-51.08357493590319,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3509721532792422,0,67.75,25.82,57.16,56.15,6.666666666666667,1,1,0,0,0,4,2,1,2891.5,2040774.770857231,1214502.400235626,0,0,1768.417521270386 -12272,15120,27525,27528,-9,-9,1,1,49,0,2,0,3,3,-9,0,2,8.56251892211767,8.50355228080784,0,18,5,5.314391625738818,0,-9,-9,2019,12,0,43,43,1,0,0,13.95754581029605,13.95754581029605,0,0,0,0,0,1,1,0,0,0,45,40,42.8,44.08,6.666666666666667,1,1,0,0,5,10,3,1,857.25,253067.7891934747,47403.50993942684,186447.1279397073,30773.74430974223,1772.59329956113 -12272,15120,27526,-9,27528,27525,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.3078229106143,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,857.25,253067.7891934747,47403.50993942684,186447.1279397073,30773.74430974223,1772.59329956113 -12272,15120,27527,-9,27528,27525,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1150.000674193212,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,857.25,253067.7891934747,47403.50993942684,186447.1279397073,30773.74430974223,1772.59329956113 -12272,15120,27528,27525,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,0,0,0,16,-5,-41.79702930246332,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,42.8,44.08,45,40,6.666666666666667,1,1,0,1,5,10,3,1,857.25,253067.7891934747,47403.50993942684,186447.1279397073,30773.74430974223,1772.59329956113 -12273,15121,27529,27531,-9,-9,1,1,55,0,4,0,2,2,-9,0,4,4.617407464379077,4.129650037442294,0,2,5,-104.2202138907505,0,1,2,2019,9,0,40,40,1,1,0,.2620343221659814,.2620343221659814,0,0,0,0,0,1,1,0,0,0,54,54,51.77,58.57,8,1,1,0,0,1,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15121,27530,-9,27531,27529,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.0999216519916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15121,27531,27529,-9,-9,1,0,50,0,4,0,2,2,-9,0,4,0,0,0,2,-5,52.80932813719774,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,54,54,8.333333333333334,1,1,0,0,0,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15121,27532,-9,27531,27529,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.528142806134,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15121,27533,-9,27531,27529,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.607070015933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15121,27534,-9,27531,27529,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.896124904096,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,754.3333333333334,-37264.67335403698,0,0,0,2001.57960071617 -12273,15122,27535,-9,27531,27529,1,0,25,0,4,0,2,2,-9,0,3,7.700322168177506,7.869627080115857,0,0,0,-963.2689003715202,0,2,2,2019,19,7,30,30,1,7,1,8.261968164318592,8.261968164318592,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,7,13,3,1,214,36774.55872620697,0,0,0,1037.982435305093 -12273,15123,27536,-9,27531,27529,1,1,23,0,4,0,1,1,-9,0,5,8.429103592038016,7.929409039088037,0,0,0,-918.1425648012668,0,2,2,2019,15,5,40,40,1,5,1,7.971660051323584,7.971660051323584,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,406,-50497.60543148203,-11407.50579567547,0,0,1228.723181205302 -12273,15124,27537,-9,27531,27529,1,1,21,0,4,0,2,2,-9,0,4,8.069067309574901,8.416802427471595,0,0,0,-890.7787907661459,0,2,2,2019,10,0,40,40,1,1,1,8.630887481085988,8.630887481085988,0,0,0,0,0,1,1,0,4.982632845308979,0,48,59,-9,-9,7,1,1,0,0,1,13,4,1,274,71859.45339268632,0,0,0,1480.967782638986 -12273,15125,27538,-9,27531,27529,1,1,20,0,4,0,2,2,-9,0,5,8.153603141899,8.149908266158647,0,0,0,-959.1479224857826,0,2,2,2019,6,1,58,40,1,1,1,8.804621499890507,8.804621499890507,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,230,67633.27145454747,-96392.91339060961,0,0,1209.480352549518 -12273,15126,27539,-9,27531,27529,1,0,18,0,4,0,2,2,1,0,5,7.75709356781246,8.115115062693727,0,0,0,-1022.884844716882,-9,2,2,2019,9,1,36,0,1,1,1,7.446219992684462,7.446219992684462,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,1,13,3,1,591,49518.9621405986,-1027.463702016831,74548.07850334655,85786.63367675734,1620.309200210769 -12274,15127,27540,27541,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,55,2,-199.0166286827319,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.26,38.87,55.36,51.57,8.333333333333334,1,1,0,0,0,4,2,1,291.5,493733.6584556526,277326.3201597997,130200.6596794498,0,1883.01388326917 -12274,15127,27541,27540,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.411425849823829,7.426397202509651,55,-2,-46.24759177927616,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.543369910775945,7.518930310722259,55.36,51.57,56.26,38.87,8.333333333333334,1,1,0,0,0,4,2,1,291.5,493733.6584556526,277326.3201597997,130200.6596794498,0,1883.01388326917 -12274,15128,27542,-9,27540,27541,1,1,53,0,0,0,2,2,-9,0,3,8.341941446218746,8.058471740493871,0,0,0,-995.3402177082864,0,2,2,2019,9,0,40,0,1,0,0,9.539289823910465,9.539289823910465,0,0,0,.2506804114541392,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,3,4,4,1,197,114304.8456387757,-11329.22321359497,134904.8825038673,20832.87704733201,552.214386387406 -12275,15129,27543,27544,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.477677531273883,8.720349566175077,0,2,-2,-9.938532390466726,0,2,1,2019,10,1,32,30,1,1,0,15.30117824500564,15.30117824500564,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,10,1,1,0,0,8,8,5,1,977.6666666666666,691731.1024970062,124299.1911038366,766546.5772527022,46195.61452848002,4610.514340872077 -12275,15129,27544,27543,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.639667082970497,8.990524191557295,0,2,2,-5.740850819769782,-9,2,1,2019,9,0,40,0,1,1,0,26.77569754920906,26.77569754920906,0,0,0,0,0,1,1,0,.8086307491292598,0,52,55,54.37,54.8,8,4,2,0,0,1,8,5,1,977.6666666666666,691731.1024970062,124299.1911038366,766546.5772527022,46195.61452848002,4610.514340872077 -12275,15129,27545,-9,27543,27544,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.930890779822,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,977.6666666666666,691731.1024970062,124299.1911038366,766546.5772527022,46195.61452848002,4610.514340872077 -12275,15130,27546,-9,27543,27544,1,1,19,0,1,0,2,2,1,0,4,8.392259381263257,8.288685351765913,0,0,0,-941.9484817833082,-9,2,1,2019,10,0,35,0,1,2,1,16.08925917269085,16.08925917269085,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,4,1,396,329053.4800922449,0,330095.5023394657,99966.02445105775,1765.217853961849 -12276,15131,27547,27548,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.762398381610552,9.09153929600442,0,8,3,10.78388145270599,0,2,3,2019,8,0,44,44,1,0,0,20.77543648644289,20.77543648644289,0,0,0,0,2,0,0,0,.0684145910490814,0,58.55,51.64,57.58,33.42,6.666666666666667,1,1,0,1,10,8,5,1,685,431379.9498208142,76378.64524145247,401110.7519096619,74636.63413106417,4630.726757399205 -12276,15131,27548,27547,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.056994532983058,8.35042930184016,0,8,-3,-31.88790245953822,0,2,1,2019,11,0,55,40,1,0,0,7.278514170361504,7.278514170361504,0,0,0,0,2,0,0,0,0,0,57.58,33.42,58.55,51.64,5,1,1,0,0,10,8,5,1,685,431379.9498208142,76378.64524145247,401110.7519096619,74636.63413106417,4630.726757399205 -12277,15132,27549,27550,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,5.719412669408976,5.583929498704166,2.928489554749633,32,-10,40.32855791764697,0,3,3,2019,7,0,4,10,1,0,0,7.074509644332474,7.074509644332474,0,0,0,0,0,1,1,0,3.419077337812797,3.215821142335516,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,11,5,2,1,167,499016.8978376454,33365.99053975959,253412.1570532407,0,840.6421272699146 -12277,15132,27550,27549,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,4.937688575613612,5.184731287957542,32,10,-199.8226177040918,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.761383413041961,4.958856986861252,57.33,53.46,58.32,50.22,10,1,1,0,0,7,5,2,1,167,499016.8978376454,33365.99053975959,253412.1570532407,0,840.6421272699146 -12278,15133,27551,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.556245262789973,8.43607470913196,0,0,0,-1098.231994704902,0,2,2,2019,14,3,48,42,1,3,0,9.514831723354568,9.514831723354568,0,0,0,0,14.5,0,0,0,0,0,32.84,60.85,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,682,326471.1011466747,109904.1910723738,95815.20258298027,0,2116.221451957779 -12279,15134,27552,-9,27553,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1064.263228906628,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,1,0,528,-152509.0290321099,0,0,0,2816.115815056652 -12279,15134,27553,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1084.962161306099,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.48,17.04,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,528,-152509.0290321099,0,0,0,2816.115815056652 -12279,15135,27554,-9,27553,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1019.275176323559,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,4079,93084.96439056503,0,0,0,0 -12280,15136,27555,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,7.949352016688031,8.095413441207306,0,0,0,-910.0920972623545,0,2,2,2019,7,0,32,23,1,0,0,12.24230429103205,12.24230429103205,0,0,0,0,0,1,1,0,7.775533254835856,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,12,10,4,0,352,178060.8271336027,-87180.67385716374,363762.8829569704,61387.12674297963,1654.710127109313 -12281,15137,27556,27557,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.423924679328753,8.74910154879041,0,23,14,43.90927416870126,0,2,2,2019,10,0,42,43,1,0,0,12.1127315083244,12.1127315083244,0,0,0,0,0,0,0,0,0,0,45.66,49.73,54.62,26.74,8.333333333333334,1,1,0,0,11,9,5,1,649.5,519342.7962187427,404743.4533188065,0,0,2540.48165642194 -12281,15137,27557,27556,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,7.843743817292006,7.677270801081448,0,23,-14,-20.33911575452035,0,3,2,2019,15,5,5,32,1,5,0,56.49579502965071,56.49579502965071,0,0,0,0,0,0,0,0,0,0,54.62,26.74,45.66,49.73,8.333333333333334,1,1,0,0,9,9,5,1,649.5,519342.7962187427,404743.4533188065,0,0,2540.48165642194 -12281,15138,27558,-9,27557,27556,1,1,20,0,0,0,2,2,-9,0,4,7.700227119816625,8.09480334288355,0,0,0,-930.7068054794604,0,2,2,2019,11,1,40,39,1,1,1,7.307794352955297,7.307794352955297,0,0,0,0,0,0,0,0,.235198420046101,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,756,-18050.67888220213,31178.21564129027,0,0,1160.222897162767 -12281,15139,27559,-9,27557,27556,1,1,19,0,0,0,2,2,1,0,3,7.397661147125746,7.181916426858928,0,0,0,-986.4924160446926,-9,2,2,2019,8,0,25,0,1,0,1,8.145489585351902,8.145489585351902,0,0,0,0,0,0,0,0,0,0,54.46,46.43,-9,-9,10,1,1,0,0,3,9,3,1,1062,63890.38430000748,-69924.3395740009,0,0,704.25889018081 -12282,15140,27560,27561,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,8,7,-181.5419756685261,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.221005947616472,0,55.64,39.02,54.79,55.86,8.333333333333334,4,2,0,0,2,7,2,1,786.5,435092.4367808804,177494.95179294,173894.3942595398,0,2041.590576121324 -12282,15140,27561,27560,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,6.270906480393214,7.111998551502216,7.015345353680578,8,-7,-26.15406344260735,0,2,2,2019,7,0,15,15,1,0,0,4.002770540572055,4.002770540572055,0,0,0,0,0,1,1,0,6.631252881062408,6.975610950648701,54.79,55.86,55.64,39.02,8.333333333333334,1,1,0,0,11,7,2,1,786.5,435092.4367808804,177494.95179294,173894.3942595398,0,2041.590576121324 -12283,15141,27562,-9,27564,-9,1,1,17,0,1,0,3,3,1,0,4,0,0,0,0,0,-1012.524994702567,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,2,2,0,492.3333333333333,-71599.45226133631,-6063.688292923088,0,0,1530.618550494962 -12283,15141,27563,-9,27564,-9,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-979.2262459947955,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,52.4,-9,-9,10,3,4,0,0,0,2,2,0,492.3333333333333,-71599.45226133631,-6063.688292923088,0,0,1530.618550494962 -12283,15141,27564,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.180026856404017,7.216898498828127,0,0,0,-1051.892291931149,0,3,3,2019,7,0,22,25,1,0,0,8.503398189306957,8.503398189306957,0,0,0,0,0,1,1,0,0,0,59.6,40.08,-9,-9,6.666666666666667,3,4,0,1,3,2,2,0,492.3333333333333,-71599.45226133631,-6063.688292923088,0,0,1530.618550494962 -12284,15142,27565,27566,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.842885383483566,8.507087566327705,0,6,0,-51.62997343803364,0,-9,-9,2019,9,0,35,37,1,1,0,17.65398474852702,17.65398474852702,0,0,0,0,0,0,0,0,0,0,52,55,56.18,53.85,8,1,1,0,0,1,9,5,1,280.5,58859.85998954854,121569.9535014029,253996.2171490461,134858.6330429666,3776.078280498221 -12284,15142,27566,27565,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.216084249093807,8.132099202096112,0,6,0,-89.51484890744767,0,2,2,2019,7,0,35,35,1,0,0,11.37808990081258,11.37808990081258,0,0,0,0,0,0,0,0,3.616465956396479,0,56.18,53.85,52,55,8.333333333333334,1,1,0,0,10,9,5,1,280.5,58859.85998954854,121569.9535014029,253996.2171490461,134858.6330429666,3776.078280498221 -12285,15143,27567,27568,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.296390836188015,7.479802233067943,29,16,119.7525587931134,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.493009968252471,7.784288379479015,42.19,58.81,43.71,56.91,8.333333333333334,1,1,0,0,9,5,3,1,419,297718.3298329882,286633.5749932732,112632.0811905902,0,1921.410424785752 -12285,15143,27568,27567,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,28,-16,69.16791175654387,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,42.19,58.81,8.333333333333334,4,2,0,0,0,5,3,1,419,297718.3298329882,286633.5749932732,112632.0811905902,0,1921.410424785752 -12286,15144,27569,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,3.780473028976842,3.67474239898117,0,0,-1172.202813912832,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,12.71786473512057,0,107.8040266560442,0,1,1,0,3.445370019608083,3.64505283992912,55.13,42.55,-9,-9,5,1,1,0,0,0,12,2,1,691,392703.8611046884,26962.14691044027,326110.6632876629,0,1433.574476334171 -12287,15145,27570,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.285987214552245,8.443707968179854,0,0,0,-953.8874290871423,0,2,2,2019,7,0,30,40,1,0,0,15.31709271805807,15.31709271805807,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,1773,89043.60657454803,30456.35197332452,0,0,1356.47410215489 -12288,15146,27571,-9,27573,27572,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.79765096454,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,758.3333333333334,55878.76811797266,-28875.77699947974,299391.7775477964,182015.0002406476,5469.159156414222 -12288,15146,27572,27573,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.601824714121127,8.652340578721624,0,6,1,-14.88946650148883,0,3,2,2019,8,0,37,37,1,0,0,19.06983912840036,19.06983912840036,0,0,0,0,0,1,1,0,.9090942266069026,0,53.07,52.7,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,758.3333333333334,55878.76811797266,-28875.77699947974,299391.7775477964,182015.0002406476,5469.159156414222 -12288,15146,27573,27572,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.583295639786135,8.461512242884503,0,6,-1,66.46255647890857,0,-9,-9,2019,9,2,37,37,1,2,0,19.11896685316494,19.11896685316494,0,0,0,0,0,1,1,0,3.501053653405309,0,57.33,53.46,53.07,52.7,10,1,1,0,0,6,10,5,1,758.3333333333334,55878.76811797266,-28875.77699947974,299391.7775477964,182015.0002406476,5469.159156414222 -12289,15147,27574,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1103.895096893357,0,2,-9,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,31.53,46.79,-9,-9,3.333333333333333,2,3,0,0,0,9,1,0,662,-136600.3720452822,116267.8837903012,0,0,741.0756892585798 -12289,15148,27575,-9,27574,-9,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-969.1955454107625,-9,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,2,3,1,0,0,9,2,0,906,119163.7475657405,0,0,0,0 -12290,15149,27576,27577,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.410239937817447,8.146830688898195,0,34,11,35.48538280001279,0,-9,-9,2019,12,2,55,50,1,2,0,6.217166201099163,6.217166201099163,0,0,0,0,0,1,1,0,0,0,58.88,40.91,57.06,57.76,8.333333333333334,2,3,0,0,9,8,5,1,234.5,737721.7441183319,361587.3614736032,382253.0251079476,-2825.511569134784,3652.697404685486 -12290,15149,27577,27576,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.522875550333591,8.493595983087239,0,33,-11,-31.87822019174104,0,-9,-9,2019,6,0,38,39,1,0,0,16.0627080221138,16.0627080221138,0,0,0,0,0,1,1,0,3.737898559239363,0,57.06,57.76,58.88,40.91,6.666666666666667,1,1,0,0,8,8,5,1,234.5,737721.7441183319,361587.3614736032,382253.0251079476,-2825.511569134784,3652.697404685486 -12290,15150,27578,-9,27577,27576,1,0,27,0,0,0,2,2,-9,0,3,8.438075612574547,8.462670178998717,0,0,0,-999.213003301135,0,2,2,2019,13,1,44,37,1,1,1,10.9297387292075,10.9297387292075,0,0,0,0,0,1,1,0,1.004478002441245,0,42.94,55.94,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,158,-782.5192552540684,43483.34343319452,0,0,1855.409625855482 -12290,15151,27579,-9,27577,27576,1,1,26,0,0,0,1,1,-9,0,4,8.278446179188631,8.326373130356131,0,0,0,-877.6042362412372,0,2,2,2019,11,0,55,40,1,0,1,9.575955216940306,9.575955216940306,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,426,-96395.06019828723,0,0,0,1478.333150656179 -12291,15152,27580,27582,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.428051419078328,8.394431107967556,0,16,-2,7.84018637564373,0,-9,2,2019,7,0,38,48,1,0,0,12.33423522869597,12.33423522869597,0,0,0,0,0,1,1,0,0,0,58.32,50.22,42.76,57.53,8.333333333333334,1,1,0,0,13,9,3,1,475.25,-29088.14137471188,3889.535457752783,0,0,3577.812174151937 -12291,15152,27581,-9,27582,27580,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.680435649197,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,3,1,475.25,-29088.14137471188,3889.535457752783,0,0,3577.812174151937 -12291,15152,27582,27580,-9,-9,1,0,41,1,2,0,2,2,-9,0,5,6.49425392676568,6.434165795757209,0,16,2,-199.6709730981355,0,2,3,2019,10,3,17,16,1,3,0,5.584491101222588,5.584491101222588,0,0,0,0,0,1,1,0,7.3582616682629,0,42.76,57.53,58.32,50.22,6.666666666666667,1,1,0,0,13,9,3,1,475.25,-29088.14137471188,3889.535457752783,0,0,3577.812174151937 -12291,15152,27583,-9,27582,27580,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.2437416004482,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,475.25,-29088.14137471188,3889.535457752783,0,0,3577.812174151937 -12292,15153,27584,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-857.4883370524021,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,40.38,34.42,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,769,311035.2285573434,0,244156.1913989556,0,442.65134116897 -12293,15154,27585,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-884.6325791526874,0,-9,-9,2019,22,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.85,32.5,-9,-9,3.333333333333333,1,1,0,0,2,7,1,0,552,91466.84522046769,0,302155.2189801799,0,1462.218134946536 -12294,15155,27586,27588,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.34532398216675,8.386138303609604,0,19,1,69.09827954272424,0,2,3,2019,7,0,25,25,1,0,0,21.98038896738185,21.98038896738185,0,0,0,0,0,1,1,0,2.396515412251626,0,48.87,58.55,51.41,56.15,8.333333333333334,1,1,0,0,7,7,5,1,1042.5,918239.9914081701,609614.8650523664,594299.5758825532,151444.425542918,5060.655073629645 -12294,15155,27587,-9,27588,27586,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.1579928665133,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1042.5,918239.9914081701,609614.8650523664,594299.5758825532,151444.425542918,5060.655073629645 -12294,15155,27588,27586,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,9.08813259766287,9.269377792269449,0,18,-1,1.065453299809504,0,2,2,2019,7,1,50,50,1,1,0,18.90818844550158,18.90818844550158,0,0,0,0,0,1,1,0,0,0,51.41,56.15,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,1042.5,918239.9914081701,609614.8650523664,594299.5758825532,151444.425542918,5060.655073629645 -12294,15155,27589,-9,27588,27586,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1183.772015434756,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1042.5,918239.9914081701,609614.8650523664,594299.5758825532,151444.425542918,5060.655073629645 -12295,15156,27590,27591,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.535457666490363,8.172233591435747,28,2,-13.95019557669703,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.40054441141868,7.912986678173111,59.46,46.99,55.19,54.26,8.333333333333334,1,1,0,0,0,2,4,1,386.5,1737845.060034294,962118.955325105,443757.8572177837,0,3676.914150596463 -12295,15156,27591,27590,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.245186899043249,7.603744964433099,28,-2,51.67831737842994,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.913939249233231,7.033316838498856,55.19,54.26,59.46,46.99,10,1,1,0,0,0,2,4,1,386.5,1737845.060034294,962118.955325105,443757.8572177837,0,3676.914150596463 -12296,15157,27592,27593,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.818570426541508,8.032121917033999,0,16,-1,98.07998414140057,0,2,2,2019,9,0,33,25,1,0,0,10.86156576490627,10.86156576490627,0,0,0,0,0,1,1,0,0,0,53.51,48.16,39.53,37.66,6.666666666666667,1,1,0,0,13,7,5,1,929.3333333333334,1312538.867398377,726074.3591317624,530387.6489951737,41314.03140743792,3696.752605402899 -12296,15157,27593,27592,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.684496233975533,8.78170037792925,0,16,1,-152.2870068869633,0,3,3,2019,15,3,38,37,1,3,0,17.27659220987388,17.27659220987388,0,0,0,0,0,1,1,0,0,0,39.53,37.66,53.51,48.16,5,1,1,0,0,13,7,5,1,929.3333333333334,1312538.867398377,726074.3591317624,530387.6489951737,41314.03140743792,3696.752605402899 -12296,15157,27594,-9,27592,27593,1,1,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-873.7747570462502,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,1,1,-9,0,0,7,5,1,929.3333333333334,1312538.867398377,726074.3591317624,530387.6489951737,41314.03140743792,3696.752605402899 -12297,15158,27595,27596,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.790477043829672,7.95945984516298,0,24,2,-115.1055838055825,0,2,2,2019,8,0,10,10,1,0,0,42.4432436012745,42.4432436012745,0,0,0,0,0,1,1,0,2.301340466089172,0,61.12,51.57,43.42,62.33,8.333333333333334,1,1,0,0,3,9,5,1,567.25,1337921.362415071,1134311.299509207,365879.920981867,276656.5347542067,5356.264791078542 -12297,15158,27596,27595,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.061625130982229,8.981092742187128,0,24,-2,66.09342981323108,0,2,2,2019,14,2,40,50,1,2,0,26.89661907378629,26.89661907378629,0,0,0,0,0,1,1,0,4.419430433039248,0,43.42,62.33,61.12,51.57,5,1,1,0,0,10,9,5,1,567.25,1337921.362415071,1134311.299509207,365879.920981867,276656.5347542067,5356.264791078542 -12297,15158,27597,-9,27595,27596,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1001.347050984823,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,567.25,1337921.362415071,1134311.299509207,365879.920981867,276656.5347542067,5356.264791078542 -12297,15158,27598,-9,27595,27596,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-887.1330875078813,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,567.25,1337921.362415071,1134311.299509207,365879.920981867,276656.5347542067,5356.264791078542 -12298,15159,27599,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.025729247549499,7.90855537606342,0,0,0,-974.3649676499477,0,2,2,2019,11,0,35,35,1,0,0,12.43258203983837,12.43258203983837,0,0,0,0,0,1,1,0,0,0,45.43,53.5,-9,-9,6.666666666666667,1,1,0,0,10,8,3,0,437,-84028.3463412735,141615.6357996386,0,0,969.0185091946353 -12299,15160,27600,27601,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,62,-3,1.437131166974088,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.786199831204597,0,52.37,56.93,56.5,48.33,8.333333333333334,1,1,0,0,0,6,2,1,1329,516824.0975765408,158004.6000849414,204328.8825726741,0,2227.800304352478 -12299,15160,27601,27600,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.141201203105846,6.743762111339054,62,3,56.6238417638814,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.887957948200165,7.071331692138592,56.5,48.33,52.37,56.93,8.333333333333334,1,1,0,0,0,6,2,1,1329,516824.0975765408,158004.6000849414,204328.8825726741,0,2227.800304352478 -12300,15161,27602,27603,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.55924091702482,7.914894958899562,9,1,11.12334006749756,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.500682769106511,0,0,1,1,0,6.633752464411819,7.591544261340451,59.15,49.67,52,45,8.333333333333334,1,1,0,0,0,7,4,1,452.5,1662762.079325026,827155.434299155,665610.5155180618,0,4366.776725131207 -12300,15161,27603,27602,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.937826984167597,7.980996878914135,9,-1,-19.0213484652669,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.424584620325278,7.951720090783962,52,45,59.15,49.67,8.333333333333334,1,1,0,0,0,7,4,1,452.5,1662762.079325026,827155.434299155,665610.5155180618,0,4366.776725131207 -12301,15162,27604,-9,27607,27605,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.324187787341,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,742.75,827073.4817048719,291193.5764767019,465379.1115973784,36694.06319643804,5578.608712660203 -12301,15162,27605,27607,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.514764251752249,9.57249326765157,0,24,-1,-92.62919325453272,0,2,2,2019,9,1,56,45,1,1,0,26.78661675457326,26.78661675457326,0,0,0,0,0,0,0,0,2.578228918214232,0,56.35,48.33,56.57,57.78,6.666666666666667,1,1,0,0,8,5,5,1,742.75,827073.4817048719,291193.5764767019,465379.1115973784,36694.06319643804,5578.608712660203 -12301,15162,27606,-9,27607,27605,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.756735128526,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,5,1,742.75,827073.4817048719,291193.5764767019,465379.1115973784,36694.06319643804,5578.608712660203 -12301,15162,27607,27605,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.242956671766997,8.208895307834789,0,24,1,14.03323523847847,0,1,2,2019,8,0,55,34,1,0,0,8.32615340762246,8.32615340762246,0,0,0,0,0,0,0,0,1.309017879414501,0,56.57,57.78,56.35,48.33,8.333333333333334,1,1,0,0,6,5,5,1,742.75,827073.4817048719,291193.5764767019,465379.1115973784,36694.06319643804,5578.608712660203 -12302,15163,27608,27609,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.100917513016364,8.1951992185947,0,3,7,-214.3645199242729,0,-9,-9,2019,16,4,50,55,1,4,0,7.668749829717047,7.668749829717047,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.21,30.41,3.333333333333333,1,1,0,1,5,9,4,0,2351.5,65540.60224231622,83013.2095711244,0,0,1634.591463897251 -12302,15163,27609,27608,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,6.71102756714709,6.853501144640882,0,3,-7,-33.26748738379728,0,-9,-9,2019,18,6,15,37,1,6,0,7.56949480184146,7.56949480184146,0,0,0,0,0,0,0,0,0,0,44.21,30.41,54.37,54.8,3.333333333333333,1,1,0,1,4,9,4,0,2351.5,65540.60224231622,83013.2095711244,0,0,1634.591463897251 -12303,15164,27610,-9,27611,27613,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1075.853692482682,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,476.25,-67621.35406454245,-2312.215413132782,0,0,1758.363124375883 -12303,15164,27611,27613,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,0,0,0,16,-10,28.98791901556373,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,2.1520386615453,0,24.78,62.75,55.11,59.93,8.333333333333334,1,1,0,0,0,9,3,1,476.25,-67621.35406454245,-2312.215413132782,0,0,1758.363124375883 -12303,15164,27612,-9,27611,27613,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1135.092237662453,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,476.25,-67621.35406454245,-2312.215413132782,0,0,1758.363124375883 -12303,15164,27613,27611,-9,-9,1,1,56,0,2,0,3,3,-9,0,5,7.872107029542202,7.993530692641958,0,16,10,81.59418193198965,0,-9,-9,2019,6,0,37,39,1,0,0,11.8402755136371,11.8402755136371,0,0,0,0,27,1,1,0,0,0,55.11,59.93,24.78,62.75,10,1,1,0,0,9,9,3,1,476.25,-67621.35406454245,-2312.215413132782,0,0,1758.363124375883 -12304,15165,27614,27616,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,4,0,-43.34680296719241,0,2,-9,2019,12,4,0,40,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.59,49.6,58.15,52.91,8.333333333333334,1,1,0,0,6,10,3,1,634.6666666666666,151246.6890698603,13261.99245614964,0,0,2058.119782458385 -12304,15165,27615,-9,27614,27616,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-879.6170349503747,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,634.6666666666666,151246.6890698603,13261.99245614964,0,0,2058.119782458385 -12304,15165,27616,27614,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.552537428476057,8.401992872504673,0,3,0,-19.88358426491421,0,-9,2,2019,9,0,84,84,1,0,0,6.794340007957958,6.794340007957958,0,0,0,0,2,1,1,0,0,0,58.15,52.91,50.59,49.6,1.666666666666667,1,1,0,0,8,10,3,1,634.6666666666666,151246.6890698603,13261.99245614964,0,0,2058.119782458385 -12305,15166,27617,27618,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,5.386577835462879,7.746721167533131,7.30444451588126,50,2,34.85580932683482,0,-9,-9,2019,7,0,4,6,1,0,0,5.076467833571638,5.076467833571638,1,0,0,0,2,1,1,0,3.663529765900791,7.553291972148591,54.79,55.86,57.06,57.76,10,1,1,0,0,13,9,3,1,1095.5,781786.5203754939,308978.7433385609,486835.9193877114,0,1673.870100837604 -12305,15166,27618,27617,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,50,-2,-11.65592133333054,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.225475015372059,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,12,9,3,1,1095.5,781786.5203754939,308978.7433385609,486835.9193877114,0,1673.870100837604 -12306,15167,27619,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.954934744064921,6.63147545354088,0,0,-955.4266371622061,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.859881205341563,46.95,31.82,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,519,70499.74096228383,-10832.37464688523,0,0,1374.706552290172 -12307,15168,27620,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.426067751383949,8.398561621497324,0,0,0,-938.6156373614253,0,-9,-9,2019,8,0,44,15,1,0,0,10.65227815313958,10.65227815313958,0,0,0,0,0,1,1,0,3.368225720019127,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,100,10014.96065150308,40903.51107058756,0,0,1824.452551720247 -12308,15169,27621,27622,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,8.317163923437031,8.478636652484909,0,5,6,-20.0664664240734,0,-9,-9,2019,24,12,38,38,1,12,0,15.69965478006687,15.69965478006687,0,0,0,0,0,0,0,0,4.865345021264402,0,36.56,62.84,45.81,61.51,8.333333333333334,1,1,0,0,3,2,4,1,514.5,1849249.308817786,1377773.509539563,230791.0142236195,12173.29712318188,4027.979793688658 -12308,15169,27622,27621,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,7.519263921049008,7.577132438486682,0,8,-6,-41.80665761027423,0,2,1,2019,13,1,14,13,1,1,0,14.94655368623675,14.94655368623675,0,0,0,0,0,0,0,0,7.853045894163563,0,45.81,61.51,36.56,62.84,8.333333333333334,1,1,0,0,4,2,4,1,514.5,1849249.308817786,1377773.509539563,230791.0142236195,12173.29712318188,4027.979793688658 -12309,15170,27623,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.567307343891384,7.971983605719957,0,0,0,-1088.808721939406,0,2,-9,2019,10,2,35,32,1,2,0,6.744719201387173,6.744719201387173,0,0,0,0,0,1,1,0,0,0,53.62,46.84,-9,-9,3.333333333333333,4,2,0,1,7,7,3,0,241,584063.897969385,9125.065896236021,354350.066745637,0,797.3395075045387 -12310,15171,27624,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-994.4158641880265,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.170059969450534,0,41.36,34.01,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,962,198875.0120021312,0,0,0,375.5879883555744 -12311,15172,27625,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.128530526635824,8.607758048901196,5.14031426585534,7,0,7.09878561797109,0,2,2,2019,23,10,40,40,1,10,0,10.77764528056203,10.77764528056203,0,0,0,0,0,1,1,0,5.389129727308039,0,26.02,58.25,59.63,44.25,6.666666666666667,1,1,0,0,9,5,4,0,1547,174359.3942772791,8409.134951268708,0,0,1725.346204637616 -12311,15173,27626,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,8.365517370040454,8.570119219389904,0,7,0,-134.4471454420125,0,-9,-9,2019,5,0,40,45,1,0,0,12.14787713935959,12.14787713935959,0,0,0,0,0,1,1,0,0,0,59.63,44.25,26.02,58.25,8.333333333333334,1,1,0,0,8,5,4,0,657,132327.1553077133,-68067.53003808974,0,0,1481.743317746167 -12312,15174,27627,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.596596858923304,8.659502718501235,0,0,0,-1122.429977837618,0,2,3,2019,12,0,40,40,1,0,0,13.40368299405834,13.40368299405834,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,711,-172687.8013230929,-98286.92196359995,116953.111334113,95203.25473671986,1581.445186742626 -12313,15175,27628,27629,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,0,0,69,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.954061877778247,0,57.42,49.34,49.75,23.73,10,1,1,0,0,0,9,1,1,1000,487533.0568125114,0,345321.7157411624,0,2518.914806899899 -12313,15175,27629,27628,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,69,2,0,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,3.563249956348439,0,0,1,1,0,0,0,49.75,23.73,57.42,49.34,6.666666666666667,1,1,0,0,0,9,1,1,1000,487533.0568125114,0,345321.7157411624,0,2518.914806899899 -12314,15176,27630,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.840357445113661,6.864125973422214,0,0,-942.3885602635069,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.940434870397333,6.787498690790431,54.21,17.65,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,4221,292200.6504815785,116973.9923001413,0,0,451.4029020978309 -12314,15177,27631,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,0,0,0,0,-920.4380226230038,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,43.03,14.16,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,424,-63064.74862747708,61454.24347530432,0,0,938.0627748902699 -12314,15178,27632,-9,-9,27631,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-989.3149514226527,0,-9,3,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,27,1,1,0,0,0,26.53,46.18,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1238,78178.74899868587,0,0,0,1002.094365404728 -12315,15179,27633,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,7.842656278415019,7.861255925164147,0,0,0,-969.9798388231195,0,3,2,2019,12,0,70,60,1,0,0,3.750839144791763,3.750839144791763,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,975,-130999.4105637678,10096.40447603098,0,0,3918.399640468095 -12315,15180,27634,-9,27633,-9,1,0,24,0,0,0,2,2,-9,0,3,7.612909416272049,7.270257177496234,0,0,0,-957.6574645229739,0,1,2,2019,14,3,49,60,1,3,1,4.212905527042253,4.212905527042253,0,0,0,0,0,1,1,0,0,0,27.28,59.54,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,510,7977.140609729707,0,0,0,989.2080945350035 -12315,15181,27635,-9,27633,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-961.5173429130806,0,2,-9,2019,4,0,0,26,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,313,0,0,0,0,-477.1560231784323 -12316,15182,27636,-9,-9,27637,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.242847333863,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,3.875899872967835,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,435,13955.11678801146,0,0,0,1110.044073794618 -12316,15182,27637,-9,-9,-9,1,1,48,0,2,0,2,2,-9,1,2,0,0,0,0,0,-998.7448669533262,0,1,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,3.005063174407432,0,1,0,1,0,0,31.16,29.2,-9,-9,1.666666666666667,1,1,0,0,7,2,1,0,435,13955.11678801146,0,0,0,1110.044073794618 -12316,15182,27638,-9,-9,27637,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.952368202094,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,1,0,435,13955.11678801146,0,0,0,1110.044073794618 -12317,15183,27639,27640,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.680518082356365,7.500434484279698,24,-3,-10.16681604645003,0,3,3,2019,7,1,0,45,4,1,0,0,0,0,0,0,0,0,0,0,0,6.849798942857498,7.582462150299314,59.33,51.29,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,205,385638.941621644,413148.9190629693,0,0,4439.738521060202 -12317,15183,27640,27639,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.796808334595417,9.221867943070688,0,9,3,134.0795417644502,0,-9,-9,2019,10,0,45,46,1,0,0,19.48419686584187,19.48419686584187,0,0,0,0,0,0,0,0,4.831353183092455,0,51.24,58.84,59.33,51.29,8.333333333333334,1,1,0,0,13,10,5,1,205,385638.941621644,413148.9190629693,0,0,4439.738521060202 -12318,15184,27641,27642,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.651185487512502,7.546770507044341,9,7,-80.74708194676458,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.434510571342305,7.811708913095107,54.07,49.4,54.79,55.86,8.333333333333334,1,1,0,0,4,13,3,1,536,921179.4211647297,497347.4062868034,239032.5395260837,0,2763.577910859421 -12318,15184,27642,27641,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.127363519941471,6.772338346462447,9,-7,-8.24398729720059,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.863956639797911,6.856657080802956,54.79,55.86,54.07,49.4,8.333333333333334,1,1,0,0,6,13,3,1,536,921179.4211647297,497347.4062868034,239032.5395260837,0,2763.577910859421 -12319,15185,27643,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1027.238467305414,0,3,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.32,17.53,-9,-9,0,1,1,0,1,3,6,1,0,259,58302.09063447908,0,0,0,573.7811304532444 -12320,15186,27644,27646,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.377917337601826,9.378218223430403,0,33,3,69.51792492714118,0,2,3,2019,19,8,46,46,1,8,0,31.86649236117329,31.86649236117329,0,0,0,0,0,0,0,0,2.952748199838477,0,43.67,61.06,48.87,58.55,3.333333333333333,1,1,0,0,8,8,5,1,626.3333333333334,2753734.762028802,2455617.023213409,352012.347147737,121538.4644957088,6081.019497785896 -12320,15186,27645,-9,27644,27646,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-926.9766215133099,-9,1,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,49.24,43.89,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,626.3333333333334,2753734.762028802,2455617.023213409,352012.347147737,121538.4644957088,6081.019497785896 -12320,15186,27646,27644,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.90581299936628,9.124468738963524,0,33,-3,-114.8216822456027,0,3,3,2019,8,0,40,40,1,0,0,29.25643422251796,29.25643422251796,0,0,0,0,0,0,0,0,1.080979751412176,0,48.87,58.55,43.67,61.06,8.333333333333334,1,1,0,0,8,8,5,1,626.3333333333334,2753734.762028802,2455617.023213409,352012.347147737,121538.4644957088,6081.019497785896 -12320,15187,27647,-9,27644,27646,1,1,23,0,0,0,2,2,1,0,4,7.153537514727534,6.884005113457245,0,0,0,-817.8859217679731,-9,2,2,2019,10,0,30,0,1,1,1,5.298097134516848,5.298097134516848,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,3,1,121,90029.63569299098,-21300.50314392874,0,0,450.203985192961 -12321,15188,27648,27649,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.240803886021848,6.868026012984543,11,-7,27.07838024739416,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.912070555599528,7.165862572788398,59.43,58.05,55.96,49.93,0,1,1,0,0,6,9,2,1,1217.5,1030679.622567989,693871.931268243,296144.9939674974,0,1127.989399242465 -12321,15188,27649,27648,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,5.758146583574964,5.58563849068848,0,11,7,40.25392380329583,0,2,2,2019,7,0,4,3,1,0,0,9.508022455157024,9.508022455157024,0,0,0,0,0,0,0,0,7.97423075913367,0,55.96,49.93,59.43,58.05,10,1,1,0,0,8,9,2,1,1217.5,1030679.622567989,693871.931268243,296144.9939674974,0,1127.989399242465 -12322,15189,27650,27651,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.460701936082788,8.306970776053044,0,6,-3,-44.79573283849278,0,2,3,2019,13,3,40,40,1,3,0,11.2395413182238,11.2395413182238,0,0,0,0,0,0,0,0,0,0,43.09,58.28,51.94,55.88,8.333333333333334,1,1,0,0,6,2,4,1,202.5,142221.0747662296,59434.25902888598,182444.698914764,64565.49626839545,1559.818263848755 -12322,15189,27651,27650,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,5.663534506029322,5.752847651582444,0,6,3,-49.86357375196696,0,1,2,2019,11,0,25,30,1,0,0,1.307040962661391,1.307040962661391,0,0,0,0,0,0,0,0,0,0,51.94,55.88,43.09,58.28,8.333333333333334,1,1,0,0,5,2,4,1,202.5,142221.0747662296,59434.25902888598,182444.698914764,64565.49626839545,1559.818263848755 -12323,15190,27652,27653,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,50,-3,41.07810500509183,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.387954092173304,0,46.22,45.1,57.16,56.15,5,1,1,0,0,0,1,2,1,811.5,442251.0844262937,165351.4081876541,116266.5725447695,0,1628.337009945453 -12323,15190,27653,27652,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.972070301754393,6.97125493279741,50,3,53.01756978101922,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.729451900856139,6.841300184895625,57.16,56.15,46.22,45.1,10,1,1,0,0,0,1,2,1,811.5,442251.0844262937,165351.4081876541,116266.5725447695,0,1628.337009945453 -12324,15191,27654,27655,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.969764425198789,7.978269142864478,0,4,-5,138.3427644069554,0,-9,-9,2019,10,0,43,49,1,0,0,6.484438508993777,6.484438508993777,0,0,0,0,0,0,0,0,0,0,52.57,52.89,54.1,59.11,8.333333333333334,1,1,0,0,4,9,5,0,1079,188575.2167390526,67896.07902779974,285403.7749140168,172232.1523569851,4769.953078281019 -12324,15191,27655,27654,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.079678963695766,9.1490244025634,0,4,5,62.24157955438496,0,1,2,2019,6,0,28,32,1,0,0,40.40116577027183,40.40116577027183,0,0,0,0,0,0,0,0,7.419512615534789,0,54.1,59.11,52.57,52.89,10,1,1,0,0,8,9,5,0,1079,188575.2167390526,67896.07902779974,285403.7749140168,172232.1523569851,4769.953078281019 -12325,15192,27656,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,3,7.235077733734006,7.157690978119404,0,0,0,-1088.434209026335,-9,3,3,2019,15,2,16,0,1,2,0,10.01265873380911,10.01265873380911,0,0,0,0,0,1,1,0,0,0,42.52,19.71,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,263.5,42682.59671563948,0,0,0,2133.417191697905 -12325,15192,27657,-9,27656,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.309722880777,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,263.5,42682.59671563948,0,0,0,2133.417191697905 -12325,15193,27658,-9,27656,-9,1,0,19,0,1,0,2,2,-9,0,4,8.002107087762672,8.125454430290128,0,0,0,-936.1641433623149,-9,2,-9,2019,12,0,16,0,1,2,1,27.64761535747758,27.64761535747758,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,1,8,4,0,473,50807.41167828057,395.2742272540472,0,0,1670.099061384583 -12326,15194,27659,27660,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.30942164035261,8.745476960787745,0,11,0,-66.90916021657162,0,2,2,2019,12,0,45,45,1,0,0,11.0896332442098,11.0896332442098,0,0,0,0,0,1,1,0,0,0,48.21,50.73,39.71,57.17,5,1,1,0,0,13,5,3,0,808,187807.3445665943,103882.7067219038,112267.5558642464,40930.48830145372,3154.607276695344 -12326,15194,27660,27659,-9,-9,1,0,36,0,3,0,2,2,-9,1,4,7.556275566528903,7.19025278432321,0,11,0,75.66952121093321,0,2,-9,2019,12,0,25,27,1,0,0,6.403915279003379,6.403915279003379,0,0,0,0,0,1,1,0,0,0,39.71,57.17,48.21,50.73,3.333333333333333,1,1,0,0,12,5,3,0,808,187807.3445665943,103882.7067219038,112267.5558642464,40930.48830145372,3154.607276695344 -12326,15194,27661,-9,27660,27659,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.034466693106,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,808,187807.3445665943,103882.7067219038,112267.5558642464,40930.48830145372,3154.607276695344 -12326,15194,27662,-9,27660,27659,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.863102691515,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,808,187807.3445665943,103882.7067219038,112267.5558642464,40930.48830145372,3154.607276695344 -12326,15194,27663,-9,27660,27659,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1128.940398716201,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,0,808,187807.3445665943,103882.7067219038,112267.5558642464,40930.48830145372,3154.607276695344 -12327,15195,27664,27665,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.911263882675384,7.82992650190516,0,27,-3,-21.21434835715243,0,-9,-9,2019,6,0,25,41,1,0,0,14.51144083849593,14.51144083849593,0,0,0,0,2,1,1,0,0,0,49.36,58.53,30.6,18.53,0,1,1,0,0,9,2,3,1,389.5,282538.1829658516,87700.33541153872,121073.2796478691,0,1291.280712551259 -12327,15195,27665,27664,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,27,3,79.14001575040913,0,3,3,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,49.36,58.53,0,1,1,0,0,1,2,3,1,389.5,282538.1829658516,87700.33541153872,121073.2796478691,0,1291.280712551259 -12327,15196,27666,-9,27664,27665,1,0,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-956.1296298432629,0,2,2,2019,11,2,0,16,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,6.666666666666667,1,1,1,1,3,2,1,1,606,-36074.97286118743,0,0,0,0 -12327,15197,27667,-9,27664,27665,1,1,21,0,0,0,3,3,-9,0,5,0,0,0,0,0,-979.0653477916256,0,2,2,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,7,1,1,0,0,0,35.43,57.05,-9,-9,0,1,1,1,1,0,2,1,1,294,-41977.45467177562,0,0,0,0 -12327,15198,27668,-9,27664,27665,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-948.8284217766184,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,383,-108839.5257394699,0,0,0,0 -12328,15199,27669,27670,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.008455371424981,9.032928464657713,0,8,-2,-30.66824324297825,0,3,2,2019,13,1,38,37,1,1,0,21.32455852094873,21.32455852094873,0,0,0,0,0,0,0,0,0,0,38.41,52.67,54.96,53.17,1.666666666666667,1,1,0,0,8,13,5,1,533,2407761.459147612,2008628.124445554,288620.1518886327,42958.55835094027,4414.974225704924 -12328,15199,27670,27669,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.460604931287536,8.114632652455185,0,8,2,-13.62140320421921,0,2,2,2019,7,0,37,37,1,0,0,14.8256875087061,14.8256875087061,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.41,52.67,8.333333333333334,1,1,0,0,8,13,5,1,533,2407761.459147612,2008628.124445554,288620.1518886327,42958.55835094027,4414.974225704924 -12328,15200,27671,-9,27669,27670,1,1,20,0,0,0,2,2,-9,0,3,7.595162937490374,7.592770208637582,0,0,0,-1057.153080060636,0,1,1,2019,12,0,40,0,1,0,1,5.532655822252469,5.532655822252469,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,1220,87331.58777384792,136609.9414760787,0,0,853.5269821251508 -12328,15201,27672,-9,27669,27670,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1089.82587351225,-9,1,1,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,41.95,56.31,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1380,0,0,0,0,0 -12329,15202,27673,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.341959911036652,8.165102309526635,0,0,0,-1063.399029963361,0,3,3,2019,11,0,60,60,1,0,0,7.61990672133796,7.61990672133796,0,0,0,0,0,0,0,0,0,0,41.91,53.55,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,376,-281506.442313308,-116244.492189823,0,0,1674.582726078952 -12330,15203,27674,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,3.918392537900317,4.403269870192967,0,0,-898.9881146914591,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,1.421202438791372,0,0,1,1,0,0,3.939076833059796,45.83,41.17,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,151,266853.5940594451,8073.919551222294,100469.1719340808,0,1085.953242292716 -12331,15204,27675,27676,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.61816783689757,9.47578008673508,0,33,-2,-52.64478234984587,0,2,2,2019,9,0,45,48,1,0,0,45.68868853787539,45.68868853787539,0,0,0,0,0,0,0,0,0,0,61.16,53.18,57.16,56.15,10,1,1,0,0,11,9,5,1,810.5,1039157.538728956,697525.519525768,349407.4131317368,85738.85215465291,6178.753648608913 -12331,15204,27676,27675,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.67903145327344,7.836619682360614,0,33,2,43.95614215217892,0,2,3,2019,10,0,35,35,1,0,0,10.42909882687456,10.42909882687456,0,0,0,0,0,0,0,0,4.026474604727401,0,57.16,56.15,61.16,53.18,10,1,1,0,0,12,9,5,1,810.5,1039157.538728956,697525.519525768,349407.4131317368,85738.85215465291,6178.753648608913 -12332,15205,27677,27679,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.688751306593735,9.022026010148267,0,8,-3,16.62482770939611,0,2,2,2019,10,0,43,46,1,0,0,17.31769115740696,17.31769115740696,0,0,0,0,0,1,1,0,0,0,38.36,54.03,54.2,57.49,5,1,1,0,0,7,12,5,1,2044.333333333333,249465.3727848372,23841.13314915421,218935.6319928475,144069.0236653677,3354.208482888551 -12332,15205,27678,-9,27679,27677,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.791626679804,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,2044.333333333333,249465.3727848372,23841.13314915421,218935.6319928475,144069.0236653677,3354.208482888551 -12332,15205,27679,27677,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.650089708416934,7.633243902885974,0,8,3,-58.7318435359977,0,-9,-9,2019,12,0,27,23,1,0,0,7.295086387564311,7.295086387564311,0,0,0,0,0,1,1,0,.6294199030790937,0,54.2,57.49,38.36,54.03,6.666666666666667,1,1,0,0,11,12,5,1,2044.333333333333,249465.3727848372,23841.13314915421,218935.6319928475,144069.0236653677,3354.208482888551 -12333,15206,27680,-9,27682,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.9786639258233,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,658.6666666666666,-50704.65907311098,12199.74778932564,0,0,2192.548633519599 -12333,15206,27681,-9,27682,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.473067688898,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,658.6666666666666,-50704.65907311098,12199.74778932564,0,0,2192.548633519599 -12333,15206,27682,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.726741486555498,7.987756508244142,5.94363109597654,0,0,-933.5393393790861,0,-9,-9,2019,11,0,25,24,1,0,0,10.28096895868035,10.28096895868035,0,0,0,0,2,1,1,0,5.489425080213381,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,658.6666666666666,-50704.65907311098,12199.74778932564,0,0,2192.548633519599 -12334,15207,27683,27684,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.532060235809903,9.809000821156072,0,10,-2,-3.222576208753414,0,2,2,2019,8,0,50,50,1,0,0,35.15150373963375,35.15150373963375,0,0,0,0,2,0,0,0,2.048670237760907,0,57.57,49.69,48.71,61.53,10,1,1,0,0,11,9,5,1,718.5,1157301.243474711,941770.4023905252,528252.2969882396,234490.4313457095,12905.51267745807 -12334,15207,27684,27683,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.269073942100709,8.515065416707765,0,24,2,-133.8668692068061,0,1,2,2019,23,10,33,55,1,10,0,15.03873651406412,15.03873651406412,0,0,0,0,7,0,0,0,0,0,48.71,61.53,57.57,49.69,3.333333333333333,1,1,0,0,13,9,5,1,718.5,1157301.243474711,941770.4023905252,528252.2969882396,234490.4313457095,12905.51267745807 -12334,15208,27685,-9,27684,27683,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-935.1182261732962,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.5892614313911059,0,45,59,-9,-9,7,1,1,0,0,0,9,1,1,235,145918.6553231161,0,0,0,26.56413784553416 -12335,15209,27686,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,8.020698518584265,7.749699811864649,0,0,-904.850711256676,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.701115577007133,7.611063924143236,44.92,31.03,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1724,525176.9002463395,201192.1942923299,247344.6397064764,0,1734.467872534663 -12336,15210,27687,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.595259035226654,8.483984229157668,0,1,6,-119.5193764032735,-9,-9,-9,2019,18,6,37,0,1,6,0,14.60033951458869,14.60033951458869,0,0,0,0,0,0,0,0,6.123278519306911,0,48.29,52.15,39.47,42.98,8.333333333333334,1,1,0,0,6,11,5,1,636,338922.7000167776,169626.2095840995,252277.5517240253,50243.63943395932,2102.399992276412 -12336,15211,27688,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.632884271188388,9.163385941544163,0,1,-6,-117.2579849642496,0,-9,-9,2019,13,3,41,42,1,3,0,16.66416460624537,16.66416460624537,0,0,0,0,0,0,0,0,0,0,39.47,42.98,48.29,52.15,8.333333333333334,1,1,0,0,8,11,5,1,308,-36041.79429780465,108993.1843596951,128578.2786933226,75516.98519105119,2278.569542620163 -12337,15212,27689,27690,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.709225727942385,7.815172057998931,8,1,-13.1930302020199,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.66335120613741,59.46,46.99,43.21,47.68,8.333333333333334,1,1,0,0,0,2,3,1,292.5,889278.3582361321,760736.9012535617,222480.7620170523,0,3240.480246427237 -12337,15212,27690,27689,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.162157158571278,6.906825878029569,8,-1,54.9938816863724,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.948603163144034,43.21,47.68,59.46,46.99,8.333333333333334,1,1,0,0,1,2,3,1,292.5,889278.3582361321,760736.9012535617,222480.7620170523,0,3240.480246427237 -12338,15213,27691,-9,27692,-9,1,1,16,0,1,1,2,0,-9,0,3,0,4.313467402781121,4.15006549603295,0,0,-1125.628996984279,-9,1,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.12447638196319,0,57.33,53.46,-9,-9,5,3,4,0,0,0,8,4,0,890.5,1101075.00145617,223342.0978971165,699161.6209915637,0,2190.281745262079 -12338,15213,27692,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.615971246233844,8.538338387425648,0,0,0,-898.4438991273348,0,3,2,2019,7,0,44,44,1,0,0,11.85250385163455,11.85250385163455,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,890.5,1101075.00145617,223342.0978971165,699161.6209915637,0,2190.281745262079 -12339,15214,27693,-9,27694,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-842.5889388749475,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,2215,-122442.8594101713,80535.71490574942,0,0,2392.294335838662 -12339,15214,27694,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.950095537139199,7.348816745758133,0,0,0,-1156.746078323883,0,2,2,2019,26,8,28,16,1,8,0,8.390709960686745,8.390709960686745,0,0,0,0,0,1,1,0,0,0,19.47,63.92,-9,-9,5,1,1,0,0,7,11,2,0,2215,-122442.8594101713,80535.71490574942,0,0,2392.294335838662 -12340,15215,27695,-9,27697,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1113.050037498118,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,41.34,-9,-9,5,1,1,0,0,1,7,2,0,693.3333333333334,46427.21940481782,0,0,0,998.1416479423946 -12340,15215,27696,-9,27697,-9,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-967.1372431370307,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,48.2,-9,-9,5,1,1,1,0,0,7,2,0,693.3333333333334,46427.21940481782,0,0,0,998.1416479423946 -12340,15215,27697,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,2,0,0,0,0,0,-938.0812518690137,-9,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,33.01,42.07,-9,-9,0,1,1,1,1,0,7,2,0,693.3333333333334,46427.21940481782,0,0,0,998.1416479423946 -12341,15216,27698,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,1,0,0,0,0,0,-912.2191104546949,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,-9,-9,5,2,3,0,1,0,4,1,0,684,-50021.70176261767,0,0,0,2191.177943112896 -12342,15217,27699,27700,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.905357109647846,6.324674560400262,50,3,-29.05052973724185,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,16.02907499925156,0,0,1,1,0,6.918646865698011,6.166907015733664,47.1,33.93,61.43,43.34,8.333333333333334,1,1,0,1,4,5,2,1,347,520346.8904954851,203966.4045087179,170748.2108543607,0,1402.527189581749 -12342,15217,27700,27699,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,50,-3,-60.69760307695944,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,43.34,47.1,33.93,10,1,1,0,0,11,5,2,1,347,520346.8904954851,203966.4045087179,170748.2108543607,0,1402.527189581749 -12343,15218,27701,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.309065486607548,5.262432550290732,0,0,-975.6185526988506,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,13.79382206570489,0,0,1,1,0,0,5.367143024306735,29.61,28.53,-9,-9,5,1,1,0,0,0,11,2,1,724,133526.1972479887,0,0,0,1041.543936832054 -12344,15219,27702,27703,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,7.516926595857248,7.266075643400876,9,-2,-58.02321102605583,0,2,1,2019,11,3,0,8,4,3,0,0,0,0,0,0,0,2,0,0,0,1.37060688378494,7.221492455947693,54.2,57.49,58.55,46.11,8.333333333333334,1,1,0,0,10,12,4,1,377,966640.4690369058,632079.9006201834,182081.1396560292,0,2129.333214521544 -12344,15219,27703,27702,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.046038652152287,7.855724387217922,9,2,-48.89980157586783,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.345465016520805,58.55,46.11,54.2,57.49,8.333333333333334,1,1,0,0,8,12,4,1,377,966640.4690369058,632079.9006201834,182081.1396560292,0,2129.333214521544 -12345,15220,27704,27705,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.122622676868831,7.797605021009078,0,19,3,-15.21116965620254,0,2,3,2019,11,0,25,26,1,0,0,12.07605249216248,12.07605249216248,0,0,0,0,0,1,1,0,5.594488810935203,0,54.2,57.49,39.33,58.88,8.333333333333334,1,1,0,0,11,6,3,1,660,175687.0425212529,196559.2141201618,193552.8761378458,158483.9894465611,2187.990476438663 -12345,15220,27705,27704,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,7.23884726658833,7.259368423955572,0,19,-3,-90.52992202700887,0,2,3,2019,21,9,20,20,1,9,0,13.54999009641272,13.54999009641272,0,0,0,0,0,1,1,0,2.163481771248066,0,39.33,58.88,54.2,57.49,8.333333333333334,1,1,0,0,9,6,3,1,660,175687.0425212529,196559.2141201618,193552.8761378458,158483.9894465611,2187.990476438663 -12345,15220,27706,-9,27705,27704,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.963445218006,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,660,175687.0425212529,196559.2141201618,193552.8761378458,158483.9894465611,2187.990476438663 -12346,15221,27707,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.46041977364,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,21.31794677915305,0,0,1,1,0,.2127867659465081,0,44,28.75,-9,-9,3.333333333333333,1,1,0,0,6,11,1,1,1434,194690.9005144762,0,0,0,2199.085010364828 -12347,15222,27708,27709,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,10,23,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,27.17,33.92,8.333333333333334,1,1,0,0,0,4,1,0,1399.5,-76651.62241459095,-63711.41749820996,0,0,1105.318906350149 -12347,15222,27709,27708,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,10,-23,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.17,33.92,57.16,56.15,5,1,1,0,0,0,4,1,0,1399.5,-76651.62241459095,-63711.41749820996,0,0,1105.318906350149 -12348,15223,27710,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,7.055311787927136,6.705396698907314,0,0,-1003.308343929975,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,12.74218291514899,12.81768321075467,138.8806152675249,0,1,1,0,4.670111067082898,6.947839777981681,49.52,22.28,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,258,2223.228244015132,235937.9660695137,0,0,1375.440094272238 -12349,15224,27711,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.102086394792611,8.254529244898913,0,0,0,-915.4021307891909,0,-9,-9,2019,11,0,36,40,1,0,0,9.556041105551717,9.556041105551717,0,0,0,0,0,1,1,0,0,0,41.14,63.75,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,435.5,64049.45356488501,-23745.33481363702,75211.22626696015,79915.46835815973,1817.129078164318 -12349,15224,27712,-9,27711,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-842.3401310430838,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,435.5,64049.45356488501,-23745.33481363702,75211.22626696015,79915.46835815973,1817.129078164318 -12350,15225,27713,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.498103305882379,6.86688042564387,0,0,-1133.676983979863,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.558728836852662,6.898073360999296,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,729,343312.5241408968,55847.52349950466,177062.8324474664,0,1019.671937886894 -12351,15226,27714,27715,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,8.733790186849529,8.646575668002036,0,26,-1,-103.6450192938914,0,2,-9,2019,9,0,55,57,1,0,0,12.56560430358079,12.56560430358079,0,0,0,0,0,1,1,0,2.638980672582249,0,51.73,58.82,42.81,54.48,6.666666666666667,4,2,0,0,10,2,4,1,1043.5,1184319.722652843,631146.2273323957,448462.6602815705,0,4614.364324638529 -12351,15226,27715,27714,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.212622315196981,8.367256404117104,0,26,1,71.30001424516198,0,2,2,2019,15,4,46,51,1,4,0,11.49805711287698,11.49805711287698,0,0,0,0,0,1,1,0,5.839251244307688,0,42.81,54.48,51.73,58.82,8.333333333333334,1,1,0,0,6,2,4,1,1043.5,1184319.722652843,631146.2273323957,448462.6602815705,0,4614.364324638529 -12351,15226,27716,-9,27714,27715,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.7799533341594,-9,1,2,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,57.18,37.05,-9,-9,10,4,2,0,0,0,2,4,1,1043.5,1184319.722652843,631146.2273323957,448462.6602815705,0,4614.364324638529 -12351,15226,27717,-9,27714,27715,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.191785547539,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,2,4,1,1043.5,1184319.722652843,631146.2273323957,448462.6602815705,0,4614.364324638529 -12352,15227,27718,27719,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.903442836750297,6.790481688706678,50,-3,-.9253771538792198,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,2.492656112633682,2,1,1,0,2.753293740758112,6.88788087077334,54.2,57.49,46.67,32.88,8.333333333333334,1,1,0,0,3,8,4,1,296.5,949380.4369220843,382835.3893309589,458661.1718708311,0,3316.906241088598 -12352,15227,27719,27718,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,8.217426639379882,7.857716915192644,50,3,.666007298913913,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,124.9374402694456,130.2156297688249,1146.367450535108,0,1,1,0,3.716802454954368,8.17046593292841,46.67,32.88,54.2,57.49,6.666666666666667,1,1,0,0,0,8,4,1,296.5,949380.4369220843,382835.3893309589,458661.1718708311,0,3316.906241088598 -12353,15228,27720,-9,27722,27721,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1031.527053986551,-9,1,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.29,54.84,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,356,2522674.650560081,1322771.191229001,563313.4659056767,0,2897.826881957603 -12353,15228,27721,27722,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.569644779533622,8.403607484835542,0,26,1,-83.57638546433321,0,2,3,2019,9,0,40,37,1,0,0,11.75097765627178,11.75097765627178,0,0,0,0,0,1,1,0,2.815543943166098,0,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,9,10,4,1,356,2522674.650560081,1322771.191229001,563313.4659056767,0,2897.826881957603 -12353,15228,27722,27721,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.222140366425245,8.149826885245412,0,26,-1,-28.0460883566693,0,2,3,2019,11,0,30,30,1,0,0,15.14399681130898,15.14399681130898,0,0,0,0,2,1,1,0,2.786437573098516,0,51.77,58.57,57.33,53.46,5,1,1,0,0,9,10,4,1,356,2522674.650560081,1322771.191229001,563313.4659056767,0,2897.826881957603 -12353,15229,27723,-9,27722,27721,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1041.901522710637,1,1,2,2019,6,0,0,35,2,0,1,0,0,0,0,0,0,0,1,1,0,1.682787127826364,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,428,109851.6399368412,0,0,0,83.24666302802126 -12354,15230,27724,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.334252059208131,7.026511727059133,0,0,0,-1050.718186763594,0,-9,-9,2019,10,1,44,42,1,1,0,3.927863488837148,3.927863488837148,0,0,0,0,0,0,0,0,0,0,22.72,53.2,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,477,-14901.67315410856,0,0,0,897.687364460995 -12355,15231,27725,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,0,7.351065329207755,7.120800268489418,0,0,-1015.944960308414,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.92970144133235,32.46,19.08,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,329,0,0,0,0,1960.910885968252 -12356,15232,27726,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,3,6.61850841845062,6.933290825460488,0,0,0,-1034.949174994847,0,2,1,2019,13,3,10,10,1,3,0,8.346169565810866,8.346169565810866,0,0,0,0,0,1,1,0,0,0,23.89,59.55,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,2281,214691.4505940454,0,76164.77090707446,0,1965.325379917865 -12357,15233,27727,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-941.5474388281488,0,3,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,2,1,0,1,0,0,40.38,34.42,-9,-9,3.333333333333333,1,1,0,1,0,6,1,0,742,-44065.57499695764,0,0,0,361.6828655772055 -12357,15234,27728,-9,27727,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-944.7459988457491,-9,3,-9,2019,24,10,0,0,3,10,1,0,0,0,0,0,0,0,1,0,1,0,0,22.76,46.32,-9,-9,1.666666666666667,1,1,0,1,1,6,2,0,202,0,0,0,0,888.1520153261067 -12358,15235,27729,27730,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.113703587040876,8.195225750125608,0,7,-4,63.26003170611899,0,-9,-9,2019,19,7,38,40,1,7,0,12.6818928489002,12.6818928489002,0,0,0,0,0,1,1,0,0,0,48.48,42.45,42.46,54.85,3.333333333333333,2,3,0,0,2,8,5,1,1693,1728243.009949682,1467351.353740171,243075.9518069015,59171.02959709112,4521.067898142806 -12358,15235,27730,27729,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.970835593742025,9.280413778215459,6.129869321451376,28,4,6.400411249327394,0,3,3,2019,16,5,55,60,1,5,0,13.97147693109683,13.97147693109683,0,0,0,0,0,1,1,0,0,6.681133671041385,42.46,54.85,48.48,42.45,8.333333333333334,2,3,0,0,8,8,5,1,1693,1728243.009949682,1467351.353740171,243075.9518069015,59171.02959709112,4521.067898142806 -12358,15236,27731,27732,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,3,69.77583995748992,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.58,56.45,59.94,34.64,8.333333333333334,2,3,1,0,0,8,3,1,2047,30620.19825410054,127725.6849687503,0,0,722.4235403804898 -12358,15236,27732,27731,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.994315982282908,7.830511353437726,0,7,-3,68.57136358582713,0,-9,-9,2019,4,0,38,38,1,0,0,8.446454366853215,8.446454366853215,0,0,0,0,0,1,1,0,0,0,59.94,34.64,38.58,56.45,8.333333333333334,2,3,0,0,5,8,3,1,2047,30620.19825410054,127725.6849687503,0,0,722.4235403804898 -12358,15237,27733,-9,27729,27730,1,1,24,0,0,0,2,2,-9,0,4,8.313107563782316,8.453536730990569,0,0,0,-994.7828233353661,0,1,2,2019,2,1,40,40,1,1,1,11.87480403613534,11.87480403613534,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,203,81644.15217862172,7709.33053030826,0,0,1522.437067453355 -12358,15238,27734,-9,27732,27731,1,1,22,0,0,0,2,2,-9,0,4,8.033938194799406,7.569041170288401,0,0,0,-983.9472850265818,0,2,2,2019,9,1,40,45,1,1,1,6.420600881465083,6.420600881465083,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,4,8,3,1,247,137525.9457743085,0,0,0,1192.166190529258 -12358,15239,27735,-9,27729,27730,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1148.326407602343,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,628,86505.4049904534,0,0,0,94.50559912837525 -12358,15240,27736,-9,27732,27731,1,1,19,0,0,0,2,2,1,0,4,6.555403016377105,6.728442330998966,0,0,0,-1030.830140084258,-9,2,2,2019,7,0,20,0,1,0,1,4.335218157591289,4.335218157591289,0,0,0,0,0,1,1,0,0,0,58.59,35.27,-9,-9,6.666666666666667,2,3,0,0,3,8,2,1,1526,51792.66529036159,0,0,0,583.607663256452 -12359,15241,27737,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,6.692956429851011,7.650557819093836,6.987383078129905,0,0,-1148.139967229214,0,2,1,2019,6,0,12,12,1,0,0,7.797918529367426,7.797918529367426,0,0,0,0,7,1,1,0,6.984048733999364,7.13109059388651,54.1,59.11,-9,-9,10,1,1,0,0,10,5,3,1,741,658217.37357564,377527.8250816865,109350.2301631401,0,2058.530430305646 -12360,15242,27738,27741,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,9.65243754185998,9.354597282721702,0,9,2,-19.46179430052354,0,2,2,2019,8,0,60,60,1,0,0,27.37369081203094,27.37369081203094,0,0,0,0,0,0,0,0,2.468715771144328,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,1278.5,234325.0651897172,161251.6417509956,0,0,5557.509866960144 -12360,15242,27739,-9,27741,27738,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.247843169865,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,1278.5,234325.0651897172,161251.6417509956,0,0,5557.509866960144 -12360,15242,27740,-9,27741,27738,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-999.6653889550146,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1278.5,234325.0651897172,161251.6417509956,0,0,5557.509866960144 -12360,15242,27741,27738,-9,-9,1,0,34,2,2,0,1,1,-9,0,4,7.201640230563306,7.023290002849819,0,9,-2,33.63412997541733,0,2,1,2019,9,0,12,13,1,0,0,13.71365383835762,13.71365383835762,0,0,0,0,0,0,0,0,3.31484065008698,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,1278.5,234325.0651897172,161251.6417509956,0,0,5557.509866960144 -12361,15243,27742,-9,-9,-9,1,1,24,1,1,0,2,2,-9,0,2,0,5.674730251489311,5.357889450562944,0,0,-965.9449059967484,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.179455988448787,0,50.5,40.48,-9,-9,6.666666666666667,1,1,1,1,5,9,2,1,119,-99180.81050702257,0,0,0,187.2829814585367 -12361,15244,27743,27745,-9,-9,1,0,21,1,1,0,2,2,-9,1,3,7.511138445347068,7.301065582063315,0,1,-1,66.29046376959087,-9,-9,-9,2019,18,4,16,0,1,4,0,9.382731714173268,9.382731714173268,0,0,0,0,0,1,1,0,0,0,56.91,27.97,49,58,8.333333333333334,1,1,0,0,0,9,3,1,465.3333333333333,67534.47914454002,4562.361569626332,150252.4521619346,133228.4373901824,3197.87676227528 -12361,15244,27744,-9,27743,27745,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.7015853509192,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,465.3333333333333,67534.47914454002,4562.361569626332,150252.4521619346,133228.4373901824,3197.87676227528 -12361,15244,27745,27743,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,8.000552913563524,7.936838278619442,0,1,1,-48.44758993727312,0,2,2,2019,10,0,30,0,1,1,0,12.49593083858521,12.49593083858521,0,0,0,0,0,1,1,0,0,0,49,58,56.91,27.97,7,1,1,0,0,1,9,3,1,465.3333333333333,67534.47914454002,4562.361569626332,150252.4521619346,133228.4373901824,3197.87676227528 -12362,15245,27746,-9,-9,-9,1,0,35,0,3,0,3,3,0,1,3,0,0,0,0,0,-1055.657827953336,-9,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,120,1,1,0,0,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,438,54327.91105746529,0,0,0,3022.468493405373 -12362,15245,27747,-9,27746,-9,1,0,17,0,3,1,3,0,0,0,3,0,0,0,0,0,-1033.024498674232,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,27.33,-9,-9,5,1,1,0,0,0,2,1,0,438,54327.91105746529,0,0,0,3022.468493405373 -12362,15245,27748,-9,27746,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.209741826398,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,438,54327.91105746529,0,0,0,3022.468493405373 -12362,15245,27749,-9,27746,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.913502682544,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,438,54327.91105746529,0,0,0,3022.468493405373 -12362,15245,27750,-9,27746,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.6507181204354,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,438,54327.91105746529,0,0,0,3022.468493405373 -12363,15246,27751,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.142989404286,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,6.117558279310142,0,0,1,1,0,0,0,58.31,40.62,-9,-9,10,1,1,0,0,0,10,1,0,721,110032.8107411314,0,183066.5226160223,0,356.1896038651161 -12364,15247,27752,27753,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.346702696185506,7.905486340923533,7,7,23.37738682179251,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.259513627038468,7.910715733411373,58.32,50.22,44.83,57.81,10,1,1,0,0,0,7,5,1,186,1519255.596690355,803243.9437455758,618405.0910986401,0,4725.018379273924 -12364,15247,27753,27752,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.192517501384124,8.908340005643858,0,7,-7,83.3919110634271,0,1,1,2019,13,1,57,57,1,1,0,16.55625948909308,16.55625948909308,0,0,0,0,0,0,0,0,5.932780493088767,0,44.83,57.81,58.32,50.22,8.333333333333334,1,1,0,0,8,7,5,1,186,1519255.596690355,803243.9437455758,618405.0910986401,0,4725.018379273924 -12365,15248,27754,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,5.497191881487935,5.47896242516321,0,0,-1007.557297120368,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,3.651560981218593,0,22.66299842194118,0,1,1,0,0,5.223308117956525,57.91,9.140000000000001,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,920,45995.21023308243,-34220.51785151738,47421.95225476462,0,1607.769643369453 -12366,15249,27755,27756,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.108676617603447,5.472569026295037,10,-1,131.1323346924095,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,1.259823035452061,0,0,1,1,0,0,5.320618263061566,64.09999999999999,31.07,60.12,54.8,8.333333333333334,1,1,0,0,0,11,3,1,753.5,240725.8692227614,302042.9403440476,115784.6251723947,0,2331.394883785937 -12366,15249,27756,27755,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.993137844616099,8.185727032510322,10,1,-50.62201186968846,0,2,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.98662994886964,60.12,54.8,64.09999999999999,31.07,10,1,1,0,0,1,11,3,1,753.5,240725.8692227614,302042.9403440476,115784.6251723947,0,2331.394883785937 -12367,15250,27757,27758,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,21,0,0,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.5,48.33,30.26,18.9,6.666666666666667,1,1,0,0,2,8,2,0,1157.333333333333,-22691.69212847466,0,0,0,2857.007610770465 -12367,15250,27758,27757,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,21,9,0,-9,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.26,18.9,56.5,48.33,1.666666666666667,1,1,0,0,5,8,2,0,1157.333333333333,-22691.69212847466,0,0,0,2857.007610770465 -12367,15250,27759,-9,27757,27758,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1053.430018405624,0,3,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,3.284903854699039,0,9.870000000000001,71.02,-9,-9,1.666666666666667,1,1,1,0,0,8,2,0,1157.333333333333,-22691.69212847466,0,0,0,2857.007610770465 -12368,15251,27760,27761,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.929789764321845,7.754804481357104,9,3,54.13693257081442,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.305106214479096,7.710546520850185,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,0,13,3,1,431,865247.8753187874,757646.5394582355,187287.7665072175,0,2346.474610579945 -12368,15251,27761,27760,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,9,-3,41.71978282202045,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.43,55.57,8.333333333333334,1,1,0,0,9,13,3,1,431,865247.8753187874,757646.5394582355,187287.7665072175,0,2346.474610579945 -12369,15252,27762,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.824852578171,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,61.69,15.28,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,694,167926.882193703,0,0,0,595.1527404058975 -12370,15253,27763,-9,27764,-9,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1033.621757516037,-9,1,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,13,3,0,1761.5,8149.568032195797,-23569.6860962455,0,0,1076.039261893355 -12370,15253,27764,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,7.98239631140928,7.86436146402138,0,0,0,-963.628143757307,0,3,3,2019,15,4,35,35,1,4,0,6.342563174821875,6.342563174821875,0,0,0,0,2,1,1,0,0,0,42.35,33.61,-9,-9,1.666666666666667,1,1,0,0,8,13,3,0,1761.5,8149.568032195797,-23569.6860962455,0,0,1076.039261893355 -12371,15254,27765,27766,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.202003209166858,7.176548413027005,8,-2,-36.0596929072522,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.677330732376228,7.313357570777484,60.12,54.8,57.16,56.15,10,1,1,0,0,0,6,2,1,514,472759.0379192944,329053.275600237,178831.5919631278,0,1995.263114960274 -12371,15254,27766,27765,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.727642200444361,5.761911946598716,8,2,45.41964310316176,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.726965524355449,5.524906918047098,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,6,2,1,514,472759.0379192944,329053.275600237,178831.5919631278,0,1995.263114960274 -12372,15255,27767,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.953732931940344,8.082488106270683,7.187059055517692,0,0,-954.9411971037738,0,3,3,2019,16,4,40,38,1,4,0,8.809102993814255,8.809102993814255,0,0,0,0,0,0,0,0,.209113765103037,7.863837256281689,34.11,58.61,-9,-9,3.333333333333333,1,1,0,0,10,13,4,1,1340,1560456.177653899,1261395.468070979,214507.1855242732,-8226.902940403077,1365.897325719271 -12372,15256,27768,-9,27767,-9,1,1,25,0,0,0,1,1,1,0,4,8.36036213695029,7.998825598638762,0,0,0,-1045.78654753094,-9,2,-9,2019,13,1,37,0,1,1,1,14.08550368852142,14.08550368852142,0,0,0,0,0,0,0,0,0,0,48.77,51.79,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,312,51772.75719655355,51357.82917896982,0,0,332.9964486813385 -12373,15257,27769,-9,27770,27772,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-925.2441229898076,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.84,29.12,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,888.6,58355.42338997994,0,65345.07048973283,62041.00219303581,2265.884937445773 -12373,15257,27770,27772,-9,-9,1,0,46,0,3,0,2,2,-9,1,1,0,0,0,23,0,-2.659351500706808,-9,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.25,37.02,42.99,37.39,1.666666666666667,2,3,0,0,0,6,2,1,888.6,58355.42338997994,0,65345.07048973283,62041.00219303581,2265.884937445773 -12373,15257,27771,-9,27770,27772,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-883.1324336870643,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,888.6,58355.42338997994,0,65345.07048973283,62041.00219303581,2265.884937445773 -12373,15257,27772,27770,-9,-9,1,1,46,0,3,0,3,3,-9,0,2,7.755985538644991,7.616112758534409,0,23,0,33.35679552245433,-9,3,3,2019,8,0,40,0,1,0,0,6.694853828192329,6.694853828192329,0,0,0,0,2,1,1,0,0,0,42.99,37.39,23.25,37.02,6.666666666666667,2,3,0,0,9,6,2,1,888.6,58355.42338997994,0,65345.07048973283,62041.00219303581,2265.884937445773 -12373,15257,27773,-9,27770,27772,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.2871830661128,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,888.6,58355.42338997994,0,65345.07048973283,62041.00219303581,2265.884937445773 -12374,15258,27774,27775,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.317594834036916,8.427696704042797,0,7,17,-56.52083750916272,0,-9,-9,2019,9,0,60,55,1,1,0,8.867868508839283,8.867868508839283,0,0,0,0,0,1,1,0,2.594514063385562,0,53,55,38.45,60.79,8,1,1,0,0,1,10,4,0,702,740644.175115713,562459.3674167496,233585.3407956577,104144.2316493682,3590.434788551829 -12374,15258,27775,27774,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,8.358897188990369,8.356626378286624,0,14,-17,-2.954727597120524,0,2,2,2019,17,5,35,47,1,5,0,12.93200249219147,12.93200249219147,0,0,0,0,0,1,1,0,2.769480658446557,0,38.45,60.79,53,55,5,1,1,0,0,8,10,4,0,702,740644.175115713,562459.3674167496,233585.3407956577,104144.2316493682,3590.434788551829 -12374,15258,27776,-9,27775,27774,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.9411295231744,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,702,740644.175115713,562459.3674167496,233585.3407956577,104144.2316493682,3590.434788551829 -12375,15259,27777,27779,-9,-9,1,1,43,1,4,0,3,3,-9,0,3,7.428027437964838,7.463690701630074,0,10,5,67.3269407283402,0,-9,-9,2019,7,0,42,40,1,0,0,5.284436427730928,5.284436427730928,0,0,0,0,0,1,1,0,0,0,58.32,50.22,58.56,46.45,6.666666666666667,2,3,0,1,3,12,2,1,704.2,98242.21056282571,-24060.91563198052,227240.8985404599,90702.95116916313,1988.141437525131 -12375,15259,27778,-9,27779,27777,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-975.5780576318974,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,12,2,1,704.2,98242.21056282571,-24060.91563198052,227240.8985404599,90702.95116916313,1988.141437525131 -12375,15259,27779,27777,-9,-9,1,0,38,1,4,0,1,1,-9,0,2,0,0,0,14,-5,21.80368943711654,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,46.45,58.32,50.22,6.666666666666667,2,3,0,1,0,12,2,1,704.2,98242.21056282571,-24060.91563198052,227240.8985404599,90702.95116916313,1988.141437525131 -12375,15259,27780,-9,27779,27777,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-941.6946128728727,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,12,2,1,704.2,98242.21056282571,-24060.91563198052,227240.8985404599,90702.95116916313,1988.141437525131 -12375,15259,27781,-9,27779,27777,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-949.2211925021367,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,12,2,1,704.2,98242.21056282571,-24060.91563198052,227240.8985404599,90702.95116916313,1988.141437525131 -12376,15260,27782,27783,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.926739014440796,8.116218775127924,0,16,12,-98.12823093755034,0,2,3,2019,7,0,37,37,1,0,0,7.160541772089003,7.160541772089003,0,0,0,0,0,1,1,0,0,0,60.02,56.42,39.78,32.13,6.666666666666667,1,1,0,0,8,10,3,0,431.5,273320.8590451057,234054.6790436693,235620.3631687433,0,2201.669719309759 -12376,15260,27783,27782,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,16,-12,48.11775163168558,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.78,32.13,60.02,56.42,6.666666666666667,1,1,0,0,0,10,3,0,431.5,273320.8590451057,234054.6790436693,235620.3631687433,0,2201.669719309759 -12377,15261,27784,27786,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.551785205000512,7.274078373290015,0,10,-5,13.6727282424615,0,2,2,2019,3,0,22,18,1,0,0,7.520022925987567,7.520022925987567,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.71,64,8.333333333333334,1,1,0,0,12,4,4,1,934,231146.3501786848,36967.89720962445,179795.9423314821,169610.8831074304,2542.456642199899 -12377,15261,27785,-9,27784,27786,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.618520083201,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,934,231146.3501786848,36967.89720962445,179795.9423314821,169610.8831074304,2542.456642199899 -12377,15261,27786,27784,-9,-9,1,1,32,0,1,0,2,2,-9,0,5,8.420117184283782,8.59099464771591,0,10,5,-63.61433303726098,0,2,2,2019,10,1,52,40,1,1,0,8.870862583219177,8.870862583219177,0,0,0,0,0,1,1,0,4.263893745653252,0,37.71,64,57.16,56.15,8.333333333333334,1,1,0,0,12,4,4,1,934,231146.3501786848,36967.89720962445,179795.9423314821,169610.8831074304,2542.456642199899 -12378,15262,27787,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1076.594175186665,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,842,-78435.57608510398,0,0,0,1033.658840060219 -12379,15263,27788,27789,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.328359988213472,8.122207405377223,7.217444807695064,8,-10,-62.18061410372108,0,3,3,2019,15,3,16,18,1,3,0,12.7770768058848,12.7770768058848,0,0,0,0,42,1,1,0,7.087734067425869,7.102109863126909,47.48,50.18,45.21,14.36,6.666666666666667,1,1,0,0,8,10,3,1,375.5,1390015.303054103,916180.0960229574,564926.8466006254,83543.49820757701,2869.407389410705 -12379,15263,27789,27788,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.67682630991484,6.474026608232438,8,10,156.896165791683,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,7.503198382842745,0,69.70841777876025,0,1,1,0,.6318796952418464,6.399112414675503,45.21,14.36,47.48,50.18,5,1,1,0,0,0,10,3,1,375.5,1390015.303054103,916180.0960229574,564926.8466006254,83543.49820757701,2869.407389410705 -12380,15264,27790,27791,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.914902163049497,7.954990956122322,0,4,-1,48.68881060639459,0,-9,-9,2019,5,0,40,39,1,0,0,7.706693636844618,7.706693636844618,0,0,0,0,0,0,0,0,0,0,48.22,56.69,53.05,52.71,10,1,1,0,0,8,2,5,1,604,-65671.05300867655,0,0,0,2524.946734227293 -12380,15264,27791,27790,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.529029609563125,8.659409684588127,0,4,1,63.27324732191904,0,-9,-9,2019,4,0,44,40,1,0,0,13.05949301949597,13.05949301949597,0,0,0,0,0,0,0,0,0,0,53.05,52.71,48.22,56.69,8.333333333333334,1,1,0,0,5,2,5,1,604,-65671.05300867655,0,0,0,2524.946734227293 -12381,15265,27792,27793,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.025779627961292,9.021366689503111,8.566618777787532,6,-3,-17.39331999509884,0,-9,-9,2019,4,0,35,-9,1,0,0,11.82101146960159,11.82101146960159,0,0,0,0,0,1,1,0,6.734467124448503,8.410899358374431,60.12,54.8,58.47,50.22,8.333333333333334,3,4,0,0,13,9,5,1,1016,2518899.807295216,1741066.746513797,674411.7195927773,0,6062.999394807835 -12381,15265,27793,27792,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.447421738011685,7.643689109113995,6,3,30.26103023725666,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.54715577124329,7.44502018025999,58.47,50.22,60.12,54.8,8.333333333333334,1,1,0,0,10,9,5,1,1016,2518899.807295216,1741066.746513797,674411.7195927773,0,6062.999394807835 -12382,15266,27794,27796,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.562590686030097,8.677131329559517,0,10,2,77.85608532495397,0,2,1,2019,6,0,40,40,1,0,0,13.26683670350056,13.26683670350056,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,11,12,5,1,447,254205.9159588751,88504.87730400792,338797.6613811915,170613.6396587576,3393.578296753115 -12382,15266,27795,-9,27796,27794,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.798861913793,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,447,254205.9159588751,88504.87730400792,338797.6613811915,170613.6396587576,3393.578296753115 -12382,15266,27796,27794,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,8.331613590553356,8.110101735841264,0,10,-2,-8.183877085824889,0,-9,-9,2019,6,0,40,45,1,0,0,9.627121089450203,9.627121089450203,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,447,254205.9159588751,88504.87730400792,338797.6613811915,170613.6396587576,3393.578296753115 -12383,15267,27797,27798,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.600998382169657,8.324231813186039,0,1,5,-8.460139740400681,-9,2,2,2019,8,0,40,0,1,0,0,11.78517484149021,11.78517484149021,0,0,0,0,0,0,0,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,836,150654.7911137112,-23638.91806817906,0,0,3624.408159914651 -12383,15267,27798,27797,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.592636318712973,9.075775287615116,0,1,-5,-57.73291807166555,-9,-9,-9,2019,12,1,65,0,1,1,0,11.45045280533325,11.45045280533325,0,0,0,0,0,0,0,0,2.790628063177704,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,6,9,5,1,836,150654.7911137112,-23638.91806817906,0,0,3624.408159914651 -12384,15268,27799,27800,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.395934133030341,8.494876863913657,7.043020237823202,9,5,-141.5319335819508,0,3,3,2019,8,0,46,47,1,0,0,12.20527986769609,12.20527986769609,0,0,0,0,0,0,0,0,0,7.614625275552983,46.92,46.27,54.2,57.49,6.666666666666667,1,1,0,0,10,12,5,1,352.5,1733736.360308056,1312409.875037322,284267.8126812267,0,3720.974514057805 -12384,15268,27800,27799,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.854061229307293,8.175833188397984,0,9,-5,55.01175504637943,0,2,2,2019,6,0,30,32,1,0,0,10.00743766739107,10.00743766739107,0,0,0,0,0,0,0,0,3.14505443542973,0,54.2,57.49,46.92,46.27,8.333333333333334,1,1,0,0,10,12,5,1,352.5,1733736.360308056,1312409.875037322,284267.8126812267,0,3720.974514057805 -12384,15269,27801,-9,27800,27799,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-982.5007339438731,1,1,2,2019,10,0,0,28,2,0,1,0,0,0,0,0,0,7,0,0,0,.659821224547715,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,2221,-134255.6304787739,0,0,0,-1096.420379545791 -12385,15270,27802,27803,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,7,4,87.23487688138356,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.328645325858222,0,37.44,59.97,54.2,57.49,8.333333333333334,1,1,0,0,7,12,5,1,531,226788.5735986064,-16114.40307392921,97051.61470000035,0,3281.573234197788 -12385,15270,27803,27802,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.001440822430256,8.857845081637761,0,7,-4,-40.20341119693906,0,-9,-9,2019,7,0,52,40,1,0,0,16.01152739859013,16.01152739859013,0,0,0,0,0,0,0,0,3.428314143593825,0,54.2,57.49,37.44,59.97,8.333333333333334,1,1,0,0,10,12,5,1,531,226788.5735986064,-16114.40307392921,97051.61470000035,0,3281.573234197788 -12386,15271,27804,27805,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.493187948853233,8.041975077355161,0,2,0,97.36606664695563,0,-9,-9,2019,5,0,37,37,1,0,0,13.06134484539213,13.06134484539213,0,0,0,0,0,0,0,0,0,0,62.39,56.71,50.24,58.02,8.333333333333334,1,1,0,0,6,5,5,1,1199.5,154396.7139829058,23856.58303776068,145851.7735132671,84585.4385289096,3224.948290956447 -12386,15271,27805,27804,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.035468751060575,8.368630173842995,0,2,0,53.05233954723127,0,-9,-9,2019,6,0,35,38,1,0,0,12.18754497846705,12.18754497846705,0,0,0,0,0,0,0,0,2.064661078603514,0,50.24,58.02,62.39,56.71,10,1,1,0,0,3,5,5,1,1199.5,154396.7139829058,23856.58303776068,145851.7735132671,84585.4385289096,3224.948290956447 -12387,15272,27806,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.611351292378003,7.868482393116377,6.763088701047604,0,0,-1149.198228083736,0,3,3,2019,9,1,18,38,1,1,0,14.76072936328652,14.76072936328652,0,0,0,0,0,1,1,0,0,6.981154685210184,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,308,510107.2221740833,410584.0786281826,51795.13861803242,0,1192.336416387056 -12388,15273,27807,-9,27808,27809,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-940.6661832721378,-9,1,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,20.76,64.84999999999999,-9,-9,1.666666666666667,1,1,0,0,0,1,5,0,1293.666666666667,930925.8023905494,19187.56024344511,484436.9023254504,0,11729.41492365124 -12388,15273,27808,27809,-9,-9,1,0,57,0,1,0,1,1,-9,0,3,9.023758222307421,9.16335845336733,0,7,-3,13.85760642850681,0,2,2,2019,11,0,48,32,1,2,0,22.93426937086229,22.93426937086229,0,0,0,0,0,0,0,0,2.034908995408844,0,49,48,51,49,7,1,1,0,0,1,1,5,0,1293.666666666667,930925.8023905494,19187.56024344511,484436.9023254504,0,11729.41492365124 -12388,15273,27809,27808,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.396132622715736,8.419862352395681,0,7,3,9.315676798524461,0,1,1,2019,10,0,40,40,1,1,0,11.38728116777671,11.38728116777671,0,0,0,0,0,0,0,0,9.004798271040711,0,51,49,49,48,7,1,1,0,0,8,1,5,0,1293.666666666667,930925.8023905494,19187.56024344511,484436.9023254504,0,11729.41492365124 -12388,15274,27810,-9,27808,27809,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1118.477616798145,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,9,1,1,0,2622,-90289.54044703698,0,0,0,0 -12389,15275,27811,27812,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.660123897745038,8.740410148120958,0,3,-1,56.74349906329361,0,2,-9,2019,26,11,60,62,1,11,0,12.83235238828681,12.83235238828681,0,0,0,0,0,0,0,0,2.640966325339678,0,30.52,47.21,47.16,50.53,3.333333333333333,1,1,0,0,9,9,5,1,1025.5,50563.0305322491,188148.4581341475,0,0,3602.625166777917 -12389,15275,27812,27811,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.318298496466134,8.244951163163709,0,3,1,12.85182811286873,0,3,-9,2019,4,0,38,88,1,0,0,14.78423181762498,14.78423181762498,0,0,0,0,0,0,0,0,0,0,47.16,50.53,30.52,47.21,6.666666666666667,1,1,0,0,9,9,5,1,1025.5,50563.0305322491,188148.4581341475,0,0,3602.625166777917 -12390,15276,27813,27814,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.310479534563248,8.258800438931857,0,4,3,5.532843142367592,-9,-9,-9,2019,10,0,40,0,1,1,0,9.256268452954719,9.256268452954719,0,0,0,0,0,1,1,0,5.034948929475702,0,51,57,57.33,53.46,7,4,1,0,0,1,5,4,1,1050,83269.10919216808,0,123302.7521236659,74249.48890430763,3599.662438970898 -12390,15276,27814,27813,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.094137765199321,8.024925285033715,5.74386130622232,4,-3,63.20484629483513,0,2,2,2019,8,0,36,30,1,0,0,9.36753900750924,9.36753900750924,0,0,0,0,0,1,1,0,6.61649998112465,0,57.33,53.46,51,57,8.333333333333334,1,1,0,0,3,5,4,1,1050,83269.10919216808,0,123302.7521236659,74249.48890430763,3599.662438970898 -12390,15276,27815,-9,27814,27813,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.067751131359,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1050,83269.10919216808,0,123302.7521236659,74249.48890430763,3599.662438970898 -12390,15276,27816,-9,27814,27813,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.6021189775067,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1050,83269.10919216808,0,123302.7521236659,74249.48890430763,3599.662438970898 -12391,15277,27817,-9,27818,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.544576869645,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,1292,-233339.7770304952,0,0,0,888.3661988120659 -12391,15277,27818,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,5.849732384648286,5.846681202448577,0,0,0,-1008.753762722941,0,-9,3,2019,12,0,6,0,1,0,0,6.187324408520904,6.187324408520904,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,5,1,1,0,1,1,1,2,0,1292,-233339.7770304952,0,0,0,888.3661988120659 -12392,15278,27819,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.000553566303743,7.985699043593083,0,0,0,-1022.462239859219,0,1,1,2019,7,0,40,38,1,0,0,8.686981189375626,8.686981189375626,0,0,0,0,0,0,0,0,1.77731173536936,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,452,20376.56017769463,167867.8641495306,98629.01911606514,30.40261116340844,1409.087627959698 -12392,15279,27820,-9,27819,-9,1,1,40,0,0,0,2,2,-9,0,4,7.566289877200229,7.515300525853286,0,0,0,-985.1067652634754,0,2,-9,2019,12,0,40,40,1,0,1,6.536250610732244,6.536250610732244,0,0,0,0,0,0,0,0,0,0,56,46.97,-9,-9,6.666666666666667,4,2,0,0,8,11,3,1,502,-28205.7444290306,23146.8045041297,0,0,1403.286981894932 -12393,15280,27821,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-973.2194325424011,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.14,23.69,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,637,0,0,0,0,1696.117221206566 -12393,15281,27822,-9,27821,-9,1,0,21,0,0,0,2,2,-9,0,4,7.833295412728456,7.934118053796361,0,0,0,-993.7920398971793,-9,2,-9,2019,11,0,38,0,1,2,1,7.895279029471078,7.895279029471078,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,216,-53778.37551394841,0,0,0,645.736148510468 -12393,15282,27823,-9,27821,-9,1,0,21,0,0,0,2,2,-9,0,5,6.856647962942371,6.915974834191644,0,0,0,-1033.919215808191,-9,2,-9,2019,6,0,16,0,1,0,1,5.805148996436761,5.805148996436761,0,0,0,0,14.5,1,1,0,0,0,69.51000000000001,30.25,-9,-9,10,1,1,0,0,0,2,2,0,826,0,0,0,0,1000.367251249457 -12394,15283,27824,27827,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,7.310631454247506,7.473695458085832,0,20,12,-74.35003376030812,0,2,1,2019,9,0,60,60,1,0,0,2.576710291882343,2.576710291882343,0,0,0,0,0,1,1,0,7.298451766906052,0,54.2,57.49,38.51,59.43,8.333333333333334,1,1,0,0,11,9,4,1,757.5,708049.9240550811,264441.063929935,260420.9536540319,20992.08063410991,4239.47069375667 -12394,15283,27825,-9,27827,27824,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-950.342295661862,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,9,4,1,757.5,708049.9240550811,264441.063929935,260420.9536540319,20992.08063410991,4239.47069375667 -12394,15283,27826,-9,27827,27824,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1035.550954608879,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,4,1,757.5,708049.9240550811,264441.063929935,260420.9536540319,20992.08063410991,4239.47069375667 -12394,15283,27827,27824,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.666839748754949,8.833751898859941,0,23,-12,40.53424416182969,0,3,2,2019,7,0,48,44,1,0,0,16.54896410969367,16.54896410969367,0,0,0,0,0,1,1,0,0,0,38.51,59.43,54.2,57.49,1.666666666666667,1,1,0,0,11,9,4,1,757.5,708049.9240550811,264441.063929935,260420.9536540319,20992.08063410991,4239.47069375667 -12395,15284,27828,-9,27833,27831,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-972.1656562778053,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15284,27829,-9,27833,27831,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.797545868439,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15284,27830,-9,27833,27831,1,0,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1045.545249112023,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15284,27831,27833,-9,-9,1,1,45,1,3,0,3,3,-9,1,4,0,0,0,22,7,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15284,27832,-9,27833,27831,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.006851192378,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15284,27833,27831,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,22,-7,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,688.1666666666666,38898.77523212197,8189.555641651993,0,0,2244.185707481033 -12395,15285,27834,-9,27833,27831,1,1,19,1,3,1,2,0,0,0,4,0,0,0,0,0,-997.6215584212642,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,712,-58289.77628792622,0,0,0,-280.7215263003268 -12396,15286,27835,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.770379129909196,7.700402368126399,0,0,-918.3891186477904,0,1,1,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,8.039975243134455,7.927440581557381,51.62,42.55,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,2089,1022226.65088312,439324.5301330666,264108.421065218,0,1733.245334246976 -12397,15287,27836,27837,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,31,11,0,0,-9,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.034372911245895,0,56.23,52.63,55.19,54.26,10,1,1,0,0,0,1,1,1,255,61290.86948530165,0,0,0,1158.134333178467 -12397,15287,27837,27836,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,0,0,0,31,-11,0,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,6.184917749345258,0,55.19,54.26,56.23,52.63,8.333333333333334,1,1,0,0,0,1,1,1,255,61290.86948530165,0,0,0,1158.134333178467 -12398,15288,27838,27839,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.926717669159673,8.730587001194616,0,6,-6,66.93569850177192,0,3,2,2019,8,0,37,42,1,0,0,18.65359314198962,18.65359314198962,0,0,0,0,0,1,1,0,0,0,54.98,44.8,52.99,51.28,5,1,1,0,0,8,1,5,1,1313.666666666667,1248692.299482046,1025749.150900543,231053.8321252332,82346.97727095403,5108.822561366589 -12398,15288,27839,27838,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,8.480543731418313,8.591506939382082,0,6,6,-48.00821742952684,0,3,3,2019,11,0,37,38,1,0,0,16.38168034810295,16.38168034810295,0,0,0,0,0,1,1,0,2.811698894032196,0,52.99,51.28,54.98,44.8,8.333333333333334,1,1,0,0,8,1,5,1,1313.666666666667,1248692.299482046,1025749.150900543,231053.8321252332,82346.97727095403,5108.822561366589 -12398,15288,27840,-9,27839,27838,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.6218178203754,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,1313.666666666667,1248692.299482046,1025749.150900543,231053.8321252332,82346.97727095403,5108.822561366589 -12398,15289,27841,-9,27839,27838,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-963.0722594663164,0,2,2,2019,12,0,0,25,3,0,1,0,0,0,0,0,0,0,1,1,0,1.172557840855383,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,275,-70534.30640128629,0,0,0,432.056257845543 -12399,15290,27842,27843,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.507464251965808,7.481768806143407,0,17,-3,-95.16508099297376,0,2,3,2019,0,0,23,15,1,0,0,9.4333515451409,9.4333515451409,0,0,0,0,0,0,0,0,0,0,55.85,46.97,54.69,57.47,8.333333333333334,1,1,0,0,8,7,4,1,388,2213463.261187064,1262983.841942497,791661.5276688407,0,2568.542947174244 -12399,15290,27843,27842,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.810710156566547,8.404104015823826,6.867476225795663,10,3,86.22098954937611,0,-9,-9,2019,6,0,25,12,1,0,0,13.06077453525895,13.06077453525895,0,0,0,0,0,0,0,0,.6818760520093304,6.808611159351129,54.69,57.47,55.85,46.97,8.333333333333334,1,1,0,0,11,7,4,1,388,2213463.261187064,1262983.841942497,791661.5276688407,0,2568.542947174244 -12400,15291,27844,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-916.7023932870106,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.308017031266113,0,36.61,43.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1273,-103979.2694289743,0,118674.9644996678,0,1204.524634166167 -12401,15292,27845,27846,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.998913324056454,6.676024330275979,0,8,-5,-96.66370128947587,0,3,3,2019,9,0,16,15,1,0,0,7.249003876212195,7.249003876212195,0,0,0,0,0,1,0,1,0,0,52.23,55.6,47.68,61.82,5,1,1,0,1,9,5,3,1,1208.5,290914.3919068688,257587.1888023089,169859.6918777933,39030.83002686048,1393.217451115776 -12401,15292,27846,27845,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.669176045047205,7.409781802735134,5.173709813910926,8,5,-6.921871749836384,0,-9,-9,2019,10,0,50,60,1,0,0,4.023645561127607,4.023645561127607,0,0,0,0,0,1,0,1,5.406198254780792,0,47.68,61.82,52.23,55.6,5,1,1,0,0,9,5,3,1,1208.5,290914.3919068688,257587.1888023089,169859.6918777933,39030.83002686048,1393.217451115776 -12401,15293,27847,-9,27845,27846,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.124986483469,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,5,1,1,644,0,0,0,0,-66.98000321222872 -12402,15294,27848,27849,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.899306713265681,7.981186756370229,0,20,-1,9.645935996229493,0,2,2,2019,8,0,27,33,1,0,0,11.4194025171409,11.4194025171409,0,0,0,0,0,1,1,0,3.56988840238198,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,12,4,1,521.6666666666666,258230.4214688501,90766.66768888559,227445.7669111421,105031.3944242736,3546.426993270812 -12402,15294,27849,27848,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.648745560956458,8.724196173699696,0,6,1,16.83909856040908,-9,-9,-9,2019,9,0,39,0,1,1,0,19.33081744212253,19.33081744212253,0,0,0,0,0,1,1,0,3.49065318956317,0,53,55,54.2,57.49,8,1,1,0,0,1,12,4,1,521.6666666666666,258230.4214688501,90766.66768888559,227445.7669111421,105031.3944242736,3546.426993270812 -12402,15294,27850,-9,27848,27849,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-948.5377213115835,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,4,1,521.6666666666666,258230.4214688501,90766.66768888559,227445.7669111421,105031.3944242736,3546.426993270812 -12403,15295,27851,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.552640924541977,4.294408053998474,0,0,-1046.955333631996,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.196352880098607,4.518360797781882,47.37,45.94,-9,-9,6.666666666666667,1,1,0,0,7,10,2,1,173,156526.2905281068,-57480.29963475255,230193.3100224262,0,741.255695105493 -12404,15296,27852,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.896726265310654,9.888209059642065,0,4,0,3.438995133694099,0,2,1,2019,4,0,50,60,1,0,0,37.17047346480751,37.17047346480751,0,0,0,0,0,0,0,0,6.974701343010034,0,54.69,57.47,50,57,8.333333333333334,1,1,0,0,11,8,5,0,914,-19248.01413856079,64938.66604842636,0,0,8129.775529904839 -12405,15297,27853,27854,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,46,-8,-139.4075699566723,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,34.3,37.44,50.03,15.33,5,1,1,0,0,3,10,3,1,613.5,1428108.746107802,433961.3631521889,542017.9164223229,0,1629.423639146593 -12405,15297,27854,27853,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.494464896567406,7.656356125357311,46,8,208.1622017134579,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,42.32963310082566,0,0,1,1,0,2.917398217421409,7.799346797097662,50.03,15.33,34.3,37.44,6.666666666666667,1,1,0,0,0,10,3,1,613.5,1428108.746107802,433961.3631521889,542017.9164223229,0,1629.423639146593 -12406,15298,27855,27856,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.15919296086776,8.555203715448746,0,5,2,-15.13723115103737,0,3,3,2019,12,0,55,45,1,0,0,8.407956408443537,8.407956408443537,0,0,0,0,0,0,0,0,2.887460870842058,0,37.83,42.51,57.25,50.48,5,1,1,0,0,10,4,4,0,132.5,197015.218389411,150376.6349509888,95164.69080059021,11355.81645338692,2843.122616558831 -12406,15298,27856,27855,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.075173335716867,8.161699249420405,0,5,-2,-97.61315891400612,0,-9,-9,2019,6,0,48,50,1,0,0,6.342548330370108,6.342548330370108,0,0,0,0,0,0,0,0,0,0,57.25,50.48,37.83,42.51,8.333333333333334,1,1,0,0,6,4,4,0,132.5,197015.218389411,150376.6349509888,95164.69080059021,11355.81645338692,2843.122616558831 -12407,15299,27857,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.626939506287048,7.832497568611157,0,0,0,-957.6985964760195,0,-9,-9,2019,12,0,30,37,1,0,0,8.006093581157957,8.006093581157957,0,0,0,0,0,0,0,0,0,0,37.98,59.7,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,660,-125604.7281670653,-54818.00847037809,0,0,606.4916086758408 -12408,15300,27858,-9,27861,27860,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.363142392662,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,776.75,451097.4801040157,201336.866446059,193821.965655264,65252.70656863968,2657.257700846782 -12408,15300,27859,-9,27861,27860,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.5523626416477,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,776.75,451097.4801040157,201336.866446059,193821.965655264,65252.70656863968,2657.257700846782 -12408,15300,27860,27861,-9,-9,1,1,55,0,2,0,2,2,-9,0,2,8.079692640783804,8.134776308200788,0,9,8,30.96970060209719,0,-9,-9,2019,18,6,36,36,1,6,0,10.640018068513,10.640018068513,0,0,0,0,0,1,1,0,6.99311134617238,0,26.75,48.94,41.94,48.3,3.333333333333333,1,1,0,1,11,13,4,1,776.75,451097.4801040157,201336.866446059,193821.965655264,65252.70656863968,2657.257700846782 -12408,15300,27861,27860,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.700469050941813,7.725378860859926,0,9,-8,39.15695047755622,0,3,3,2019,11,0,28,28,1,0,0,10.99691526954653,10.99691526954653,0,0,0,0,0,1,1,0,7.663991464766335,0,41.94,48.3,26.75,48.94,3.333333333333333,1,1,0,0,11,13,4,1,776.75,451097.4801040157,201336.866446059,193821.965655264,65252.70656863968,2657.257700846782 -12409,15301,27862,-9,27865,27864,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.162927818173,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,872.75,550809.4952419287,67207.22239341833,626265.9326730749,175016.2499464082,4064.580057411138 -12409,15301,27863,-9,27865,27864,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.6359998489836,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,872.75,550809.4952419287,67207.22239341833,626265.9326730749,175016.2499464082,4064.580057411138 -12409,15301,27864,27865,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.797164301726561,8.549024609716296,0,2,2,114.2352155231399,0,2,3,2019,19,7,40,40,1,7,0,16.44655251502209,16.44655251502209,0,0,0,0,0,1,1,0,0,0,46.9,56.66,41.59,61.77,5,1,1,0,0,12,7,5,1,872.75,550809.4952419287,67207.22239341833,626265.9326730749,175016.2499464082,4064.580057411138 -12409,15301,27865,27864,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.580897326257281,8.079133595772106,0,2,-2,154.8181800232178,0,1,1,2019,12,0,30,30,1,0,0,17.68714511956799,17.68714511956799,0,0,0,0,0,1,1,0,3.619177637695279,0,41.59,61.77,46.9,56.66,8.333333333333334,1,1,0,0,12,7,5,1,872.75,550809.4952419287,67207.22239341833,626265.9326730749,175016.2499464082,4064.580057411138 -12410,15302,27866,27867,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.201978192917878,7.217460190190796,0,5,2,-48.31269486324233,0,2,2,2019,10,1,45,60,1,1,0,2.873385075598523,2.873385075598523,0,0,0,0,0,0,0,0,0,0,55.76,52.64,52.69,32.65,8.333333333333334,1,1,0,0,6,4,5,1,1244.5,1551506.654253434,1246675.144130586,208424.8256122457,0,2982.445551895203 -12410,15302,27867,27866,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.715592821494297,8.622689552794848,0,5,-2,83.01612225073964,0,3,2,2019,10,0,41,41,1,0,0,20.39896454966558,20.39896454966558,0,0,0,0,7,0,0,0,0,0,52.69,32.65,55.76,52.64,6.666666666666667,1,1,0,0,6,4,5,1,1244.5,1551506.654253434,1246675.144130586,208424.8256122457,0,2982.445551895203 -12411,15303,27868,27869,-9,-9,1,0,44,0,0,0,3,3,-9,0,3,7.471579371779788,7.422122280413002,0,1,3,-102.9255592590023,-9,3,3,2019,12,1,29,0,1,1,0,7.427304297874972,7.427304297874972,0,0,0,0,0,0,0,0,0,0,41.21,51.34,54.37,54.8,6.666666666666667,1,1,0,0,11,6,4,0,1365.5,61449.79084998251,15846.93310786865,0,0,1907.679842778561 -12411,15303,27869,27868,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.026421760114427,7.980424576898258,0,1,-3,-89.57168193106099,-9,3,3,2019,9,0,41,0,1,0,0,9.550995770172452,9.550995770172452,0,0,0,0,0,0,0,0,0,0,54.37,54.8,41.21,51.34,8.333333333333334,1,1,0,0,11,6,4,0,1365.5,61449.79084998251,15846.93310786865,0,0,1907.679842778561 -12412,15304,27870,27872,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.472539404502662,8.531674753307502,0,7,0,55.29079082383456,0,2,3,2019,9,0,40,40,1,1,0,14.16477449421459,14.16477449421459,0,0,0,0,0,1,1,0,0,0,53,54,57.06,57.76,8,1,1,0,0,1,2,4,1,389.3333333333333,857443.4704287051,301639.3544278541,418454.1199152926,10107.63320949882,3829.266836876558 -12412,15304,27871,-9,27872,27870,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.1343597926569,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,389.3333333333333,857443.4704287051,301639.3544278541,418454.1199152926,10107.63320949882,3829.266836876558 -12412,15304,27872,27870,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,7.994469672277855,8.277669482313744,0,26,0,-140.6155111266183,0,2,3,2019,9,0,37,32,1,0,0,9.976278980815852,9.976278980815852,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,54,10,1,1,0,0,9,2,4,1,389.3333333333333,857443.4704287051,301639.3544278541,418454.1199152926,10107.63320949882,3829.266836876558 -12412,15305,27873,-9,27872,27870,1,0,23,0,1,0,2,2,-9,0,4,7.994872078510528,8.024155978117252,0,0,0,-981.0868137676742,0,1,2,2019,7,0,37,37,1,0,1,11.59906353649115,11.59906353649115,0,0,0,0,0,1,1,0,3.012028963300868,0,59.53,56.44,-9,-9,10,1,1,0,0,7,2,4,1,569,-220319.1887508298,-22373.47837158565,0,0,1394.118487394967 -12412,15306,27874,-9,27872,27870,1,0,22,0,1,0,2,2,-9,0,4,7.163235673946281,7.193157838172882,0,0,0,-1082.153064037669,0,2,2,2019,11,0,37,45,1,2,1,3.768385781066119,3.768385781066119,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,2,1,306,-10690.9516563157,0,31878.51374629398,103987.6348964638,570.293061029181 -12413,15307,27875,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-931.7323022436544,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,1.576341253877041,0,1,1,0,0,0,37.46,24.8,-9,-9,5,1,1,0,0,0,9,1,0,974,-55838.12142705703,-94976.64199494674,0,0,1729.779162765559 -12413,15308,27876,-9,27875,-9,1,0,23,0,0,0,1,1,-9,0,3,8.539228591047115,7.943823714911493,0,0,0,-1142.691597737532,0,2,-9,2019,28,11,54,46,1,11,1,9.286416348931853,9.286416348931853,0,0,0,0,0,1,1,0,0,0,19.94,64.13,-9,-9,3.333333333333333,1,1,0,0,5,9,4,0,1537,-155119.1432509055,0,0,0,934.5503181469699 -12414,15309,27877,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.192282206501245,8.272870704662008,7.468910304108888,0,0,-992.047016269303,0,3,2,2019,7,0,36,35,1,0,0,9.381158318798306,9.381158318798306,0,0,0,0,0,1,1,0,0,7.473631706804685,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,10,1,4,1,1002,167897.7905440188,-1067.126263089372,0,0,2337.29606361346 -12415,15310,27878,-9,27881,27879,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.621007470131,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,337.25,41762.61278480093,-45141.96644873956,0,0,1057.208236783011 -12415,15310,27879,27881,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,7.955500186760595,7.97294413472777,0,14,3,124.3491480035412,0,2,2,2019,14,2,40,38,1,2,0,6.553344043511228,6.553344043511228,0,0,0,0,0,1,1,0,3.607907296128838,0,31.06,46.94,51.73,58.82,1.666666666666667,1,1,0,0,8,7,3,1,337.25,41762.61278480093,-45141.96644873956,0,0,1057.208236783011 -12415,15310,27880,-9,27881,27879,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.5980642821926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,337.25,41762.61278480093,-45141.96644873956,0,0,1057.208236783011 -12415,15310,27881,27879,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,0,0,0,14,-3,-128.4428015707072,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,31.06,46.94,8.333333333333334,1,1,0,0,0,7,3,1,337.25,41762.61278480093,-45141.96644873956,0,0,1057.208236783011 -12416,15311,27882,27883,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,9,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,42.71,50.87,10,1,1,0,0,0,2,1,0,346.5,-155682.0848389301,0,0,0,1629.657560351584 -12416,15311,27883,27882,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,45,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.71,50.87,50.34,48.53,8.333333333333334,1,1,0,0,0,2,1,0,346.5,-155682.0848389301,0,0,0,1629.657560351584 -12416,15312,27884,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.735114735885813,7.668252901808376,0,0,0,-1101.731242689352,0,-9,-9,2019,12,0,40,6,1,2,0,6.918417720872386,6.918417720872386,0,0,0,0,0,1,1,0,2.481532362870957,0,45,59,-9,-9,7,1,1,0,0,1,2,3,0,1863,-192967.9198761061,0,0,0,699.2679292015907 -12417,15313,27885,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-973.5582869777008,0,-9,-9,2019,19,8,0,0,4,8,0,0,0,1,0,15.20766104693482,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,356,-93469.33219603087,0,0,0,1770.45406322379 -12418,15314,27886,-9,27887,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-884.2801980145191,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,440.5,143190.1504745604,88201.48605605046,127969.5034642011,158742.0073187953,1709.676475732819 -12418,15314,27887,-9,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.376121234901827,8.372066671958123,0,0,0,-1116.402812425854,0,1,1,2019,9,0,24,36,1,0,0,21.1739597190406,21.1739597190406,0,0,0,0,0,1,1,0,4.806535526071976,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,440.5,143190.1504745604,88201.48605605046,127969.5034642011,158742.0073187953,1709.676475732819 -12419,15315,27888,27889,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,7,-2,0,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.44,44.51,60.12,54.8,8.333333333333334,1,1,0,0,0,12,1,1,458.5,779530.7189162633,454634.9972653721,223999.6625295784,0,1418.359214821012 -12419,15315,27889,27888,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,7,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,43.44,44.51,8.333333333333334,1,1,0,0,0,12,1,1,458.5,779530.7189162633,454634.9972653721,223999.6625295784,0,1418.359214821012 -12420,15316,27890,27892,-9,-9,1,1,55,0,3,0,1,1,-9,0,4,9.288330570822989,9.311439309169527,0,24,10,18.78996402660262,0,3,3,2019,6,0,50,50,1,0,0,29.8076904017835,29.8076904017835,0,0,0,0,0,1,1,0,0,0,53,54,48.53,58.91,8.333333333333334,3,4,0,0,10,9,5,1,1532.666666666667,1837715.21945454,1338374.313119786,727177.9734581303,252937.7698963919,5145.671640809157 -12420,15316,27891,-9,27892,27890,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.28709425074,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,5,1,1532.666666666667,1837715.21945454,1338374.313119786,727177.9734581303,252937.7698963919,5145.671640809157 -12420,15316,27892,27890,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.127667117670558,7.818001618107469,0,26,-10,133.3112282519375,0,2,2,2019,10,0,25,31,1,0,0,13.05406569257804,13.05406569257804,0,0,0,0,0,1,1,0,0,0,48.53,58.91,53,54,8.333333333333334,3,4,0,0,9,9,5,1,1532.666666666667,1837715.21945454,1338374.313119786,727177.9734581303,252937.7698963919,5145.671640809157 -12420,15317,27893,-9,27892,27890,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1061.087320116122,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.834251912548137,0,41.59,61.77,-9,-9,8.333333333333334,3,4,0,0,2,9,2,1,1114,-72251.56560711555,0,0,0,-495.8392160769013 -12421,15318,27894,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.321536041937788,8.603839263736528,0,0,0,-996.1031595024126,0,-9,-9,2019,12,0,38,43,1,0,0,11.20694371161696,11.20694371161696,0,0,0,0,0,1,1,0,3.695317689382124,0,49.45,44.64,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,666,89503.656572473,6618.769653961962,0,0,1310.567172264617 -12422,15319,27895,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,0,5.254321252599784,5.369836240749565,0,0,-1015.857471544452,0,2,-9,2019,19,7,0,21,3,7,0,0,0,0,0,0,0,0,1,1,0,5.508747616455618,0,34.81,61.47,-9,-9,1.666666666666667,1,1,0,0,2,6,2,0,486,10940.21261788883,0,0,0,1388.642354611503 -12422,15319,27896,-9,27895,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.7084426483229,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,2,0,486,10940.21261788883,0,0,0,1388.642354611503 -12423,15320,27897,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,9.296041731911661,8.820982088713352,0,0,0,-925.6434573134993,0,3,2,2019,6,0,55,55,1,0,0,17.6981539592262,17.6981539592262,0,0,0,0,2,0,0,0,6.922309035623941,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,2476,609409.4405791996,280925.9244120128,484515.3005081111,41981.63461208963,2935.563400941862 -12423,15321,27898,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,3,6.793870469085232,6.804517789637972,0,0,0,-955.5817325382379,-9,-9,-9,2019,13,2,25,0,1,2,0,3.985901261757116,3.985901261757116,0,0,0,0,2,0,0,0,0,0,53.59,49.64,-9,-9,5,1,1,0,0,0,9,2,1,661,176643.9564687983,0,0,0,1037.861575396568 -12424,15322,27899,27900,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.262846554682984,7.205246311887607,9,-4,50.97196714154808,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.333984541747413,7.285283201168704,58.3,52.91,57.73,54.53,8.333333333333334,1,1,0,0,9,7,3,1,329.5,1719754.76343136,768761.0813907683,943486.2978168528,0,2851.933407051061 -12424,15322,27900,27899,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.60027234688802,7.192522746065169,9,4,-45.64716623540044,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.454365139649016,7.997226845472527,57.73,54.53,58.3,52.91,8.333333333333334,1,1,0,0,4,7,3,1,329.5,1719754.76343136,768761.0813907683,943486.2978168528,0,2851.933407051061 -12425,15323,27901,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.533432941126291,7.469892558329893,0,0,0,-986.4423895752883,0,2,2,2019,11,0,18,18,1,0,0,13.58657906045485,13.58657906045485,0,0,0,0,0,0,0,0,2.892761162623594,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,108,628803.1940266666,242707.2057013199,61461.68595054359,0,582.2689324205842 -12426,15324,27902,-9,27911,-9,1,1,14,3,9,1,3,0,-9,0,4,0,0,0,0,0,-938.6504159119406,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27903,-9,27911,-9,1,1,6,3,9,1,3,0,-9,0,4,0,0,0,0,0,-1000.40578398557,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27904,-9,27911,-9,1,0,10,3,9,1,3,0,-9,0,4,0,0,0,0,0,-1043.158348829136,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,5,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27905,-9,27911,-9,1,0,12,3,9,1,3,0,-9,0,4,0,0,0,0,0,-892.6756678070237,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27906,-9,27911,-9,1,1,1,3,9,1,3,0,-9,0,4,0,0,0,0,0,-990.1306260236998,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27907,-9,27911,-9,1,1,2,3,9,1,3,0,-9,0,4,0,0,0,0,0,-1188.913159784302,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27908,-9,27911,-9,1,1,8,3,9,1,3,0,-9,0,4,0,0,0,0,0,-982.0629286247689,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27909,-9,27911,-9,1,1,17,3,9,0,3,3,1,0,4,0,0,0,0,0,-1087.101268701509,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,5,1,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27910,-9,27911,-9,1,1,1,3,9,1,3,0,-9,0,4,0,0,0,0,0,-976.6299604021524,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27911,-9,-9,-9,1,0,37,3,9,0,3,3,-9,0,4,0,0,0,0,0,-1103.479162703087,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,1,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15324,27912,-9,27911,-9,1,1,15,3,9,1,3,0,-9,0,4,0,0,0,0,0,-891.6815826816404,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,1,0,1071.181818181818,12742.50982985344,0,0,0,2230.753419205362 -12426,15325,27913,-9,27911,-9,1,0,19,3,9,0,2,2,-9,0,4,0,0,0,0,0,-859.038507131163,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,1,0,0,8,1,0,1439,-133120.0854967725,0,0,0,0 -12427,15326,27914,27915,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,8,10,0,0,-9,-9,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.714413654761181,0,26.63,42.21,45.81,58.99,8.333333333333334,1,1,0,0,4,6,1,1,1421.5,18717.19292350268,0,0,0,606.8015601004838 -12427,15326,27915,27914,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,8,-10,0,0,3,3,2019,11,0,0,2,3,0,0,0,0,0,0,0,0,71.5,1,1,0,2.109171198523777,0,45.81,58.99,26.63,42.21,1.666666666666667,1,1,1,0,10,6,1,1,1421.5,18717.19292350268,0,0,0,606.8015601004838 -12428,15327,27916,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.528207598411194,5.47258102383504,0,0,-968.8216049759723,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.338576737299115,5.764351276343589,59.64,35.9,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,412,-72212.50838407365,185286.4863374693,0,0,847.208697028699 -12429,15328,27917,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.356834336855668,8.235739744171983,0,0,0,-1008.544171904722,0,2,2,2019,9,0,45,42,1,1,0,11.57007530282021,11.57007530282021,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,10,7,4,1,97,80439.13318502643,94220.08019785685,0,0,1098.354500593507 -12430,15329,27918,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.695127695340773,5.189482004463821,0,0,-1119.284265244786,-9,3,3,2019,11,2,0,0,4,2,0,0,0,1,6.965908652218609,17.66216011431313,58.88131506988192,0,1,1,0,0,5.789618382754715,40.33,35.45,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,941,23444.56542206689,-9560.439991256895,92182.85731402015,0,1609.148520161238 -12431,15330,27919,27920,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,9.56212993266505,9.163765759302525,0,23,10,-156.8125749468496,0,2,1,2019,11,0,45,43,1,0,0,30.61342596845585,30.61342596845585,0,0,0,0,0,1,1,0,0,0,51.41,56.15,54.2,57.49,6.666666666666667,1,1,0,0,10,7,5,1,485.3333333333333,3312787.459608675,223044.4651731676,1307408.836108219,471115.8569076449,5874.293800993219 -12431,15330,27920,27919,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.400127514560742,8.569934396621143,0,23,-10,-97.52759798232069,0,2,2,2019,13,1,23,23,1,1,0,24.5737167209567,24.5737167209567,0,0,0,0,0,1,1,0,2.679957157469094,0,54.2,57.49,51.41,56.15,8.333333333333334,1,1,0,0,10,7,5,1,485.3333333333333,3312787.459608675,223044.4651731676,1307408.836108219,471115.8569076449,5874.293800993219 -12431,15330,27921,-9,27920,27919,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-947.5050646562112,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,485.3333333333333,3312787.459608675,223044.4651731676,1307408.836108219,471115.8569076449,5874.293800993219 -12431,15331,27922,-9,27920,27919,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-967.1788795512198,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,2,7,1,1,251,68260.43059793947,0,0,0,0 -12431,15332,27923,-9,27920,27919,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-899.5729804823224,1,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,1139,139348.3412549825,0,0,0,5243.10516748701 -12432,15333,27924,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.003720153494845,7.968444827785192,0,0,0,-1051.207030798478,0,3,2,2019,9,2,45,48,1,2,0,7.814677857975568,7.814677857975568,0,0,0,0,2,0,0,0,0,0,54.38,36.04,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,897,196115.6731233521,114203.4694949606,132003.0572670915,34220.01238283965,877.6610199643901 -12433,15334,27925,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,8.286794591056067,8.146910183345,0,0,-995.1756482655477,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.603181358635676,7.769851106003914,59.31,46.96,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,601,1530831.347596837,951202.053642838,72700.32652428375,0,2146.782592719426 -12434,15335,27926,27927,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.433058208847063,8.499218553791438,0,10,5,-41.75236535173568,0,3,1,2019,8,1,50,45,1,1,0,9.227940142320705,9.227940142320705,0,0,0,0,0,0,0,0,0,0,55.59,48.73,57.06,57.76,3.333333333333333,3,4,0,0,8,9,4,0,801.5,725886.0581361284,174673.4301749844,322775.031981812,0,3125.626550030161 -12434,15335,27927,27926,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.094624909253239,7.774531707774444,0,10,-5,3.078122362350223,0,3,2,2019,2,0,45,42,1,0,0,7.251218778795867,7.251218778795867,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.59,48.73,6.666666666666667,3,4,0,0,8,9,4,0,801.5,725886.0581361284,174673.4301749844,322775.031981812,0,3125.626550030161 -12435,15336,27928,-9,27930,27931,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.596896702645,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1218,172938.0634663947,11799.25922422829,183458.5520831021,39661.48633479033,3558.365226757298 -12435,15336,27929,-9,27930,27931,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.938184046248,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1218,172938.0634663947,11799.25922422829,183458.5520831021,39661.48633479033,3558.365226757298 -12435,15336,27930,27931,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.875927055536252,7.745014987860381,0,8,-4,43.89951464225482,-9,-9,-9,2019,11,0,17,0,1,1,0,20.23288796129775,20.23288796129775,0,0,0,0,0,1,1,0,0,0,49,56,55.2,49.4,7,1,1,0,0,1,2,4,1,1218,172938.0634663947,11799.25922422829,183458.5520831021,39661.48633479033,3558.365226757298 -12435,15336,27931,27930,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,8.711848448400527,8.652991807029325,0,19,4,-68.36122789440395,0,3,2,2019,8,0,44,46,1,0,0,16.48854900641046,16.48854900641046,0,0,0,0,0,1,1,0,0,0,55.2,49.4,49,56,8.333333333333334,1,1,0,0,10,2,4,1,1218,172938.0634663947,11799.25922422829,183458.5520831021,39661.48633479033,3558.365226757298 -12436,15337,27932,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,5.648754143004262,5.69677725600272,0,0,-1059.850454924248,0,2,1,2019,10,3,0,0,4,3,0,0,0,1,4.551470128555589,0,23.48926758504708,0,1,1,0,7.176001068997291,5.675008370648519,60.13,20.13,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,982,26009.6409968932,0,127036.7137692895,0,1556.278381501063 -12437,15338,27933,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,0,0,0,0,-996.9489651774052,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,46.2,33,-9,-9,5,1,1,0,0,0,2,1,1,836,46380.07638573504,0,0,0,357.8906649850705 -12438,15339,27934,-9,27937,27936,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-882.4462142933312,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,5,1,372,1033667.81499484,424447.2869087118,543530.8147703789,1403.05384397917,4953.651432663887 -12438,15339,27935,-9,27937,27936,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.2315812692792,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.455152814790958,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,5,1,372,1033667.81499484,424447.2869087118,543530.8147703789,1403.05384397917,4953.651432663887 -12438,15339,27936,27937,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.225209823486173,8.279039029174021,0,20,1,54.83923554601679,0,1,1,2019,9,2,37,22,1,2,0,11.54150153861678,11.54150153861678,0,0,0,0,0,0,0,0,3.641455454408949,0,49.97,56.66,47.72,53.77,8.333333333333334,1,1,0,0,12,1,5,1,372,1033667.81499484,424447.2869087118,543530.8147703789,1403.05384397917,4953.651432663887 -12438,15339,27937,27936,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.371566677041791,9.29613500829371,0,20,-1,-69.0876820059397,0,2,2,2019,16,5,35,42,1,5,0,36.08514888451091,36.08514888451091,0,0,0,0,0,0,0,0,1.605081814265346,0,47.72,53.77,49.97,56.66,6.666666666666667,1,1,0,0,12,1,5,1,372,1033667.81499484,424447.2869087118,543530.8147703789,1403.05384397917,4953.651432663887 -12439,15340,27938,27939,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.793338112780693,7.580771899836654,0,8,-1,-63.93713187624002,0,2,2,2019,11,0,21,37,1,0,0,11.57077722096078,11.57077722096078,0,0,0,0,0,1,1,0,0,0,46.41,47.21,29.99,59.47,8.333333333333334,1,1,0,0,8,12,5,1,498.6666666666667,92558.91696216752,88957.59165777272,111114.1806762104,98133.66170485046,3343.802038587559 -12439,15340,27939,27938,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,8.601183736759454,8.643483749524028,0,8,1,37.62731926408424,0,2,2,2019,14,3,41,40,1,3,0,19.26185196407818,19.26185196407818,0,0,0,0,0,1,1,0,5.081601567926699,0,29.99,59.47,46.41,47.21,3.333333333333333,1,1,0,0,10,12,5,1,498.6666666666667,92558.91696216752,88957.59165777272,111114.1806762104,98133.66170485046,3343.802038587559 -12439,15340,27940,-9,27938,27939,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.836716886713,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,498.6666666666667,92558.91696216752,88957.59165777272,111114.1806762104,98133.66170485046,3343.802038587559 -12440,15341,27941,27942,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.712124588571171,7.533028264185037,0,41,-2,-82.31518128963765,0,3,2,2019,8,0,50,35,1,0,0,5.315513918991394,5.315513918991394,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,256.5,619844.7653904897,687204.7973025455,96126.30172134738,60235.93431414814,5064.853047260644 -12440,15341,27942,27941,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.729929286774501,8.810007174608408,7.337034399146512,6,2,-70.0818011201755,0,3,1,2019,6,0,42,37,1,0,0,14.62344975857671,14.62344975857671,0,0,0,0,0,0,0,0,8.123494964148197,7.559881024081137,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,9,5,5,1,256.5,619844.7653904897,687204.7973025455,96126.30172134738,60235.93431414814,5064.853047260644 -12441,15342,27943,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-992.1803201903261,-9,2,-9,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,58.72,48.62,-9,-9,6.666666666666667,1,1,1,0,1,2,1,0,177,0,0,0,0,0 -12441,15343,27944,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1040.20270427743,-9,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,2,1,0,381,-225656.971042851,0,0,0,0 -12442,15344,27945,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,7.0069587255029,6.599178278562521,0,0,-970.9888680188676,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,133.1583258708385,0,1261.717363945305,0,1,1,0,3.951047136614561,7.085514619033704,27.41,25.55,-9,-9,3.333333333333333,1,1,0,0,3,4,2,1,336,33702.21976657113,328654.4709537032,0,0,1472.223250645326 -12443,15345,27946,-9,27948,27947,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.1287028489648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,1922.333333333333,-54661.42075456825,0,0,0,1143.478885300749 -12443,15345,27947,27948,-9,-9,1,1,26,1,1,0,1,1,-9,0,4,7.184705591134501,7.385722663690726,0,3,0,3.221769428084242,0,-9,-9,2019,10,0,20,25,1,1,0,9.606654833085617,9.606654833085617,0,0,0,0,0,1,1,0,0,0,50,58,46.1,49.25,7,1,1,0,0,2,8,2,0,1922.333333333333,-54661.42075456825,0,0,0,1143.478885300749 -12443,15345,27948,27947,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,0,0,0,3,0,40.50183355577541,0,3,3,2019,13,1,0,8,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,49.25,50,58,3.333333333333333,4,5,0,0,5,8,2,0,1922.333333333333,-54661.42075456825,0,0,0,1143.478885300749 -12444,15346,27949,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,5.369101002886813,5.527879356042761,0,0,-1022.402852457954,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.952751590893451,5.532115422842516,50.54,62.09,-9,-9,10,1,1,0,0,0,5,2,1,152,30965.17613108731,805.1360411011628,114920.3699662515,0,956.851852470646 -12445,15347,27950,27951,-9,-9,1,0,55,0,1,0,3,3,-9,0,3,5.52305452891759,5.763632142800817,3.401058717504613,38,-2,36.38039433001504,0,3,3,2019,7,1,40,30,1,1,0,.7986014740630576,.7986014740630576,0,0,0,0,7,1,0,1,0,3.193323316876075,45.59,52.37,33.13,36.3,8.333333333333334,1,1,0,0,10,5,2,0,678.5,298321.5302939372,77032.78620593413,139405.6250997409,9489.96498154752,1192.555736706749 -12445,15347,27951,27950,-9,-9,1,1,57,0,1,0,3,3,-9,1,2,7.46660004248198,7.539817632269516,0,38,2,23.31916811077019,0,3,3,2019,24,12,60,60,1,12,0,4.08331299247393,4.08331299247393,0,0,0,0,0,1,0,1,0,0,33.13,36.3,45.59,52.37,3.333333333333333,1,1,0,0,10,5,2,0,678.5,298321.5302939372,77032.78620593413,139405.6250997409,9489.96498154752,1192.555736706749 -12446,15348,27952,27954,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.070201347290654,8.025654680435427,0,6,-2,-52.1291121867408,0,-9,-9,2019,7,0,40,40,1,0,0,8.309102311942342,8.309102311942342,0,0,0,0,42,1,1,0,2.472625563250733,0,55.96,49.93,30.24,64.61,5,1,1,0,0,5,4,3,1,1604.25,144398.112004189,272520.7571881131,148822.7633596394,125006.5435671756,2366.28725976085 -12446,15348,27953,-9,27954,27952,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.926756629077,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,1604.25,144398.112004189,272520.7571881131,148822.7633596394,125006.5435671756,2366.28725976085 -12446,15348,27954,27952,-9,-9,1,0,39,0,2,0,1,1,-9,1,4,0,0,0,6,2,-66.3005581868556,0,3,3,2019,17,7,0,40,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,30.24,64.61,55.96,49.93,3.333333333333333,1,1,0,0,9,4,3,1,1604.25,144398.112004189,272520.7571881131,148822.7633596394,125006.5435671756,2366.28725976085 -12446,15348,27955,-9,27954,27952,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-848.2683117391969,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1604.25,144398.112004189,272520.7571881131,148822.7633596394,125006.5435671756,2366.28725976085 -12447,15349,27956,27957,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,49,-1,-47.06319321824315,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.93,28.14,46.63,59.72,8.333333333333334,1,1,0,0,0,6,2,1,1695,407162.7213047313,188431.7446776701,145718.2025008486,0,1904.851329368058 -12447,15349,27957,27956,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.140595934932509,7.063084615932825,49,1,21.59963642828102,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.570364309399426,7.260566428042046,46.63,59.72,53.93,28.14,10,1,1,0,0,0,6,2,1,1695,407162.7213047313,188431.7446776701,145718.2025008486,0,1904.851329368058 -12448,15350,27958,-9,27959,27960,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1088.534627097366,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,5,4,1,1021.333333333333,679787.4739984274,380152.8836707301,280253.8759956881,42519.98625966084,4077.780545470978 -12448,15350,27959,27960,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,8.079272589594529,8.123812837509336,0,7,-1,-59.10893249121467,0,3,3,2019,6,0,35,35,1,0,0,12.88770219939676,12.88770219939676,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.35,59.64,10,1,1,0,0,8,5,4,1,1021.333333333333,679787.4739984274,380152.8836707301,280253.8759956881,42519.98625966084,4077.780545470978 -12448,15350,27960,27959,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.635562765086638,8.732632146572771,0,7,1,-167.3753838728366,0,3,3,2019,10,0,50,55,1,0,0,14.01307728580753,14.01307728580753,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.06,57.76,8.333333333333334,1,1,0,0,7,5,4,1,1021.333333333333,679787.4739984274,380152.8836707301,280253.8759956881,42519.98625966084,4077.780545470978 -12448,15351,27961,-9,27959,27960,1,1,20,0,1,0,2,2,-9,0,4,8.067788061786507,8.128872047798158,0,0,0,-957.7816236046153,0,2,-9,2019,4,0,38,40,1,0,1,8.910369943564893,8.910369943564893,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,388,34042.28688814035,0,0,0,1167.250891835213 -12448,15352,27962,-9,27959,27960,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-998.9882053588217,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,93,95868.52307857604,0,0,0,0 -12449,15353,27963,27964,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.544945706453463,7.343832977809233,0,43,0,75.25885417322652,0,2,2,2019,11,0,12,6,1,0,0,13.40571533704348,13.40571533704348,0,0,0,0,0,1,1,0,3.960989283065578,0,49.62,47.77,55,52,8.333333333333334,1,1,0,0,8,8,4,1,718.5,1522225.936056668,137338.6328080503,820174.9780866224,0,3372.871987816593 -12449,15353,27964,27963,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,7.807264954362944,8.250144419569159,7.695107611929972,43,0,-106.8116617510779,0,2,2,2019,8,0,20,20,1,0,0,15.33713553271901,15.33713553271901,0,0,0,0,0,1,1,0,4.017586001159652,7.301012452487065,55,52,49.62,47.77,8,1,1,0,0,8,8,4,1,718.5,1522225.936056668,137338.6328080503,820174.9780866224,0,3372.871987816593 -12450,15354,27965,-9,27966,-9,1,1,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1031.365187340256,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,2,0,265,-165389.2807370108,0,0,0,668.3390099024507 -12450,15355,27966,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-977.8212590902973,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,-9,-9,8,2,3,0,0,0,8,2,0,4720,-126962.0901367608,0,0,0,1678.180032334543 -12450,15356,27967,-9,27966,-9,1,1,20,0,0,0,2,2,-9,0,4,8.201838259499732,8.473472535848828,0,0,0,-961.2672177624775,0,3,-9,2019,11,0,35,0,1,2,1,11.67825887431653,11.67825887431653,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,0,827,180421.7521845329,93343.32281161999,0,0,1648.742471431424 -12450,15357,27968,-9,27966,-9,1,0,30,0,0,0,1,1,-9,0,4,9.144545575389062,8.870926850565318,0,0,0,-912.38316932621,0,3,-9,2019,11,0,35,40,1,2,1,24.99960038954609,24.99960038954609,0,0,0,0,0,1,1,0,2.805725788861382,0,48,57,-9,-9,7,2,3,0,0,3,8,5,0,844,135722.8629117157,-4944.770206070374,574761.334560513,258803.8787300034,2732.177801449657 -12451,15358,27969,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.177920994930856,7.147348251115218,0,0,-912.7103277948391,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.857624590045678,51.68,38.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,242,213979.9092198959,15538.01403900993,121897.7616163714,0,1680.785116085369 -12452,15359,27970,27971,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.637923096551078,7.811413220975346,0,1,-3,170.3445991514463,0,-9,-9,2019,8,1,43,37,1,1,0,6.888651939979313,6.888651939979313,0,0,0,0,0,0,0,0,.0916738139420656,0,58.72,51.29,35.15,61.1,8.333333333333334,1,1,0,0,3,2,5,1,966.5,87601.54710904568,-19302.27638419464,170152.1693846546,80625.78192625643,2808.239948423879 -12452,15359,27971,27970,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.413389401674072,8.365682859456696,0,1,3,-31.74997613655971,-9,-9,-9,2019,17,5,62,0,1,5,0,7.445325492483993,7.445325492483993,0,0,0,0,0,0,0,0,0,0,35.15,61.1,58.72,51.29,5,1,1,0,0,1,2,5,1,966.5,87601.54710904568,-19302.27638419464,170152.1693846546,80625.78192625643,2808.239948423879 -12453,15360,27972,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,8.096890774196989,8.091646521141278,0,0,0,-952.2245091233968,0,3,3,2019,20,8,36,36,1,8,0,8.349758390090095,8.349758390090095,0,0,0,0,0,1,1,0,0,0,31.86,40.9,-9,-9,3.333333333333333,1,1,0,0,8,12,4,0,425,124513.2750277683,0,177228.6572886674,0,966.105834961415 -12454,15361,27973,-9,27976,27974,1,0,18,0,1,0,2,2,-9,0,4,7.515230322262637,7.418055559268277,0,0,0,-994.5645977616118,0,2,2,2019,10,2,37,0,1,2,1,4.473273114821454,4.473273114821454,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,10,1,1,0,0,4,13,3,0,915,84802.95009791586,178136.8041049404,0,0,490.067113914255 -12454,15362,27974,27976,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.395512030266314,8.287100016393666,0,4,8,-27.41378438530539,0,-9,-9,2019,13,2,30,30,1,2,0,15.5558432683763,15.5558432683763,0,0,0,0,0,1,1,0,0,0,51.1,50.81,57.06,57.76,8.333333333333334,1,1,0,0,3,13,3,0,943.6666666666666,30523.10653505955,-14410.52981904977,146981.087342634,132886.7507339463,1766.053820944685 -12454,15362,27975,-9,27976,27974,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.821505247327,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,943.6666666666666,30523.10653505955,-14410.52981904977,146981.087342634,132886.7507339463,1766.053820944685 -12454,15362,27976,27974,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,0,0,0,4,-8,-153.2050298854268,0,2,3,2019,7,0,0,25,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.1,50.81,8.333333333333334,1,1,0,0,4,13,3,0,943.6666666666666,30523.10653505955,-14410.52981904977,146981.087342634,132886.7507339463,1766.053820944685 -12455,15363,27977,27978,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.016158031676973,9.343053903101637,0,38,2,-22.3086574610532,0,2,1,2019,17,5,45,45,1,5,0,23.51988180848643,23.51988180848643,0,0,0,0,0,0,0,0,4.264314345180952,0,38.04,58.33,57.06,57.76,3.333333333333333,1,1,0,0,8,9,5,1,575.5,704758.4125877798,384871.2527106816,464908.3698443558,0,5391.444290047467 -12455,15363,27978,27977,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.491936999919501,8.329362088562101,0,38,-2,-55.7426292245734,0,2,2,2019,8,0,30,31,1,0,0,23.40731677543943,23.40731677543943,0,0,0,0,0,0,0,0,.6249566747425515,0,57.06,57.76,38.04,58.33,8.333333333333334,1,1,0,0,9,9,5,1,575.5,704758.4125877798,384871.2527106816,464908.3698443558,0,5391.444290047467 -12455,15364,27979,-9,27978,27977,1,0,30,0,0,0,1,1,-9,0,4,8.371308932227386,8.750281383277887,0,0,0,-1040.933875441458,0,2,2,2019,15,3,37,35,1,3,1,14.84645574054876,14.84645574054876,0,0,0,0,0,0,0,0,4.681424448074239,0,46.8,55.75,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,1306,17522.22313819652,4807.808425557334,0,0,1908.10318887619 -12455,15365,27980,-9,27978,27977,1,1,25,0,0,0,2,2,-9,0,5,8.681646357640529,8.578495777441558,0,0,0,-1057.044892485,0,2,1,2019,8,1,35,35,1,1,1,16.95038654949435,16.95038654949435,0,0,0,0,0,0,0,0,4.300824336705269,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,303,-114139.89842212,62634.94130766463,0,0,831.1542137802254 -12456,15366,27981,-9,27984,27983,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.473065359442,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1431,565405.4104699867,280840.9992123701,404817.700812872,149378.7460327598,7847.078658924785 -12456,15366,27982,-9,27984,27983,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.178974307938,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1431,565405.4104699867,280840.9992123701,404817.700812872,149378.7460327598,7847.078658924785 -12456,15366,27983,27984,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.133330603491647,9.206899963412404,0,10,-4,-93.37749809686046,0,-9,-9,2019,11,0,45,40,1,0,0,22.59494652868473,22.59494652868473,0,0,0,0,0,0,0,0,8.438731912450383,0,49.04,55.86,45.09,26.67,8.333333333333334,1,1,0,0,12,9,5,1,1431,565405.4104699867,280840.9992123701,404817.700812872,149378.7460327598,7847.078658924785 -12456,15366,27984,27983,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.444623224719377,8.794069283296199,0,13,4,58.15545577332135,0,2,2,2019,16,6,10,3,1,6,0,70.03747957282488,70.03747957282488,0,0,0,0,0,0,0,0,7.302357794161499,0,45.09,26.67,49.04,55.86,8.333333333333334,1,1,0,0,10,9,5,1,1431,565405.4104699867,280840.9992123701,404817.700812872,149378.7460327598,7847.078658924785 -12457,15367,27985,27986,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.984723032840584,8.092137595039299,48,-2,-108.3726879845154,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.448709276855164,7.835153493521424,57.16,56.15,54.79,55.86,10,1,1,0,0,0,12,5,1,710,2400780.992045461,992579.4343202845,331736.1981474099,0,5122.169867939024 -12457,15367,27986,27985,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.338532014589031,9.046815595911397,48,2,6.935791846048672,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.297839814044817,8.980217018507945,54.79,55.86,57.16,56.15,0,1,1,0,0,0,12,5,1,710,2400780.992045461,992579.4343202845,331736.1981474099,0,5122.169867939024 -12458,15368,27987,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,6.176474931300903,6.381747677677639,0,0,0,-983.4966176721155,0,2,-9,2019,18,5,14,0,1,5,0,3.876968737858168,3.876968737858168,0,0,0,0,2,1,1,0,0,0,37.7,31.69,-9,-9,3.333333333333333,4,2,0,1,0,8,2,0,4284,-24731.46052212282,73883.3975775798,0,0,1313.140308643293 -12458,15369,27988,-9,27987,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1137.517833951637,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,291,-215238.2780523481,0,0,0,0 -12459,15370,27989,27990,-9,-9,1,0,30,0,0,0,1,1,1,0,5,8.450176442937245,8.763350032732857,0,4,-4,110.1417592123244,-9,-9,-9,2019,7,0,39,0,1,0,0,17.28209367286603,17.28209367286603,0,0,0,0,0,1,1,0,0,0,54.1,59.11,52.43,55.57,8.333333333333334,4,2,0,0,4,9,5,1,321,533425.7987746249,233751.3647702907,275841.6371994684,0,5723.887426638325 -12459,15370,27990,27989,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.03494686672108,9.122527640062954,0,4,4,-26.54794869590511,0,2,2,2019,10,2,39,39,1,2,0,24.25365350749701,24.25365350749701,0,0,0,0,0,1,1,0,0,0,52.43,55.57,54.1,59.11,8.333333333333334,1,1,0,0,11,9,5,1,321,533425.7987746249,233751.3647702907,275841.6371994684,0,5723.887426638325 -12460,15371,27991,27992,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.365100871358294,6.382618959432711,35,1,-29.98308537856403,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.536125264431201,6.046075288143262,60.12,54.8,60.12,54.8,0,1,1,0,0,7,4,4,1,623,72270.95352291476,0,148840.1047615171,36730.18336555125,3515.201550364567 -12460,15371,27992,27991,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.664500993100738,8.67795078517848,35,-1,-107.3040021607155,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.003529765048277,8.81293701371488,60.12,54.8,60.12,54.8,10,1,1,0,0,3,4,4,1,623,72270.95352291476,0,148840.1047615171,36730.18336555125,3515.201550364567 -12461,15372,27993,27994,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,28,16,-138.3772391343341,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,42.2,21.18,44,39.28,10,1,1,0,0,0,7,2,0,447,-200368.6572438087,28989.50446884367,0,0,2222.728251030449 -12461,15372,27994,27993,-9,-9,1,1,47,0,0,0,3,3,-9,1,3,6.929673658761047,6.518987889968062,0,28,-16,-63.77458752027601,0,-9,-9,2019,12,0,15,15,1,0,0,5.843401993348311,5.843401993348311,0,0,0,0,27,1,1,0,0,0,44,39.28,42.2,21.18,5,1,1,0,0,9,7,2,0,447,-200368.6572438087,28989.50446884367,0,0,2222.728251030449 -12462,15373,27995,27996,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,34,-13,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,3,2,1,1,398.5,-70121.15456453861,0,166151.1441440874,0,-184.0681438487772 -12462,15373,27996,27995,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,34,13,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.521880868225342,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,0,2,1,1,398.5,-70121.15456453861,0,166151.1441440874,0,-184.0681438487772 -12463,15374,27997,-9,27998,27999,1,0,25,0,0,0,2,2,-9,0,4,7.907269091338597,7.830947286348327,0,0,0,-959.7488047497072,-9,2,2,2019,11,0,45,0,1,2,1,6.501077130632359,6.501077130632359,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,589,-39329.38327307451,0,0,0,1093.537901254299 -12463,15375,27998,27999,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.912867541455491,6.739510666875626,0,26,-6,34.08499803708224,-9,2,2,2019,12,0,15,0,1,2,0,7.541146972938414,7.541146972938414,0,0,0,0,0,1,1,0,0,0,48,49,51,49,7,3,4,0,0,1,8,2,0,595,354157.7639224392,170860.9748854199,153669.0568212161,0,522.8539044466543 -12463,15375,27999,27998,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,1,6,-136.22038416417,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,48,49,7,3,4,0,1,0,8,2,0,595,354157.7639224392,170860.9748854199,153669.0568212161,0,522.8539044466543 -12463,15376,28000,-9,27998,27999,1,1,25,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1022.591817911134,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,386,0,0,0,0,-209.6854084499365 -12464,15377,28001,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,7.476050496132398,7.73022192280446,0,0,-1040.616658848063,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.467655715556237,55,45,-9,-9,8,1,1,0,0,0,7,3,1,963,540850.2439143755,291919.4002012887,136754.0224070508,0,2059.729732660623 -12465,15378,28002,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.359434281639869,8.264516761189556,0,0,0,-982.4054451717301,0,2,2,2019,16,5,33,30,1,5,0,12.05638238425121,12.05638238425121,0,0,0,0,0,1,1,0,5.081130384337368,0,36.93,46.33,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,1057,-81545.73723736731,0,0,0,1742.558875092582 -12466,15379,28003,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.319343306380302,8.617010226638648,0,0,0,-900.1419831975342,0,3,2,2019,12,2,41,37,1,2,0,12.42526895985373,12.42526895985373,0,0,0,0,2,0,0,0,0,0,55.51,43.54,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,3151,305760.3469753785,0,240253.7319678523,20164.50076708078,1771.845016272157 -12467,15380,28004,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,4.520187063225837,4.805324697614533,0,0,-870.814548900403,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,4.955406641276133,4.556170033693157,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,1235,548810.7223578305,0,343955.6824415028,0,1166.784107238045 -12468,15381,28005,28006,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.853896794325337,6.915612829822264,0,38,-10,21.29265801173403,0,3,3,2019,17,6,15,15,1,6,0,8.892168389797062,8.892168389797062,0,0,0,0,0,0,0,0,0,0,40.31,57.72,57.16,56.15,6.666666666666667,1,1,0,0,6,13,2,0,454,1747645.418114062,690244.1929353354,866259.8820237552,0,296.4287536588217 -12468,15381,28006,28005,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,38,10,169.7844141116681,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.31,57.72,10,1,1,0,0,1,13,2,0,454,1747645.418114062,690244.1929353354,866259.8820237552,0,296.4287536588217 -12469,15382,28007,28008,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.754587349555997,8.970598575275265,0,2,0,40.86270981053551,-9,3,3,2019,9,0,70,0,1,1,0,12.76058722829796,12.76058722829796,0,0,0,0,56,1,1,0,0,0,53,54,48,49,8,1,1,0,0,10,13,5,1,218.5,150032.7190512175,44435.38697135438,112156.6621414836,0,3676.826427832822 -12469,15382,28008,28007,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.311420902362425,7.468166719023891,2,0,-96.88936710999474,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.124264131386195,48,49,53,54,7,1,1,0,0,0,13,5,1,218.5,150032.7190512175,44435.38697135438,112156.6621414836,0,3676.826427832822 -12469,15383,28009,-9,28008,28007,1,1,22,0,0,0,2,2,-9,0,4,7.448650714431304,7.789503292785195,0,0,0,-981.2014507347836,-9,2,2,2019,10,0,35,0,1,1,1,5.960498158916269,5.960498158916269,0,0,0,0,5.48,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,6,13,3,1,3495,140177.2225731649,0,0,0,787.913243313649 -12469,15384,28010,-9,28008,28007,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.1145961492102,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1170,-46939.92328041942,0,0,0,0 -12470,15385,28011,-9,28014,28013,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.0231979754715,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,2459.5,631018.4234054642,274891.5112238762,200313.9006254722,80248.87196211409,3370.592446720898 -12470,15385,28012,-9,28014,28013,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.702036354473,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.799138067017845,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,2459.5,631018.4234054642,274891.5112238762,200313.9006254722,80248.87196211409,3370.592446720898 -12470,15385,28013,28014,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,7.86216227648077,7.79851416870858,0,17,4,52.56271731519131,0,2,2,2019,9,0,40,40,1,0,0,6.101780023129729,6.101780023129729,0,0,0,0,0,1,1,0,1.170424064591261,0,50.63,50.99,46.4,59.87,8.333333333333334,1,1,0,0,8,10,4,1,2459.5,631018.4234054642,274891.5112238762,200313.9006254722,80248.87196211409,3370.592446720898 -12470,15385,28014,28013,-9,-9,1,0,37,1,2,0,2,2,-9,0,5,8.717002346259243,8.558282075661028,0,16,-4,100.8935373287344,0,2,2,2019,12,2,37,36,1,2,0,13.93340963547904,13.93340963547904,0,0,0,0,0,1,1,0,0,0,46.4,59.87,50.63,50.99,8.333333333333334,1,1,0,0,8,10,4,1,2459.5,631018.4234054642,274891.5112238762,200313.9006254722,80248.87196211409,3370.592446720898 -12471,15386,28015,28018,-9,-9,1,0,35,1,3,0,2,2,-9,0,1,0,0,0,7,-2,0,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,0,1,0,0,15.05,27.23,30.37,24.2,0,1,1,0,0,0,9,1,0,1003.8,-23131.75797369066,-9948.470950641598,0,0,1633.956949729662 -12471,15386,28016,-9,28015,28018,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.0634429328103,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,1003.8,-23131.75797369066,-9948.470950641598,0,0,1633.956949729662 -12471,15386,28017,-9,28015,28018,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.2158239064008,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,1003.8,-23131.75797369066,-9948.470950641598,0,0,1633.956949729662 -12471,15386,28018,28015,-9,-9,1,1,37,1,3,0,3,3,-9,1,1,0,0,0,16,2,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,30.37,24.2,15.05,27.23,1.666666666666667,1,1,0,0,7,9,1,0,1003.8,-23131.75797369066,-9948.470950641598,0,0,1633.956949729662 -12471,15386,28019,-9,28015,28018,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.837656491854,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1003.8,-23131.75797369066,-9948.470950641598,0,0,1633.956949729662 -12471,15387,28020,-9,28015,28018,1,1,18,1,3,0,2,2,1,0,4,6.452088096347254,6.544318555047572,0,0,0,-986.822201546579,-9,2,3,2019,14,2,10,0,1,2,1,6.698030951680785,6.698030951680785,0,0,0,0,7,1,0,1,0,0,44.78,55.1,-9,-9,8.333333333333334,1,1,0,0,2,9,2,0,383,455.1481621834949,144965.6145641957,0,0,389.280404004855 -12472,15388,28021,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.243085561213867,8.157176459971181,0,0,0,-1041.799766546423,0,-9,3,2019,21,10,44,37,1,10,0,7.555627791442885,7.555627791442885,0,0,0,0,0,0,0,0,0,0,31.91,61.11,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,2723,-102927.7011585294,128862.4235701139,0,0,1220.525774699215 -12473,15389,28022,28023,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.201867228896798,8.362661892725075,0,2,3,-32.50160463561122,0,2,2,2019,8,0,40,42,1,0,0,12.8944950783525,12.8944950783525,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.12,58.55,8.333333333333334,1,1,0,0,10,9,5,1,601,278118.8689412623,70441.88873326138,274695.7671656882,87307.26187554777,3234.326147456353 -12473,15389,28023,28022,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.636433827027648,8.506459311270961,0,2,-3,-138.1678945826798,0,-9,-9,2019,13,1,56,51,1,1,0,10.52327599947688,10.52327599947688,0,0,0,0,0,0,0,0,0,0,43.12,58.55,54.1,59.11,8.333333333333334,1,1,0,0,8,9,5,1,601,278118.8689412623,70441.88873326138,274695.7671656882,87307.26187554777,3234.326147456353 -12474,15390,28024,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1018.733136449409,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,4.409014482556171,11.1965241968981,0,0,1,1,0,2.040545020063434,0,33.87,21.25,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,54,17159.58138070264,0,0,0,546.7231380353971 -12475,15391,28025,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-996.2632524535362,0,3,3,2019,7,0,0,36,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,30.62,-9,-9,8.333333333333334,1,1,0,0,8,12,1,0,1076,175421.9513262511,0,0,0,1101.254243516625 -12476,15392,28026,-9,28029,28027,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-910.4287848159274,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12476,15392,28027,28029,-9,-9,1,1,44,0,4,0,1,1,-9,0,4,0,0,0,12,2,-122.7246073719211,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,59.14,62.39,56.71,8.333333333333334,3,4,0,1,6,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12476,15392,28028,-9,28029,28027,1,0,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-1173.489598295817,-9,2,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.04,51.28,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12476,15392,28029,28027,-9,-9,1,0,42,0,4,0,2,2,-9,0,5,7.371521140451887,7.306705939950445,0,12,-2,-1.462216850335515,-9,3,2,2019,3,0,36,0,1,0,0,5.760185753237518,5.760185753237518,0,0,0,0,0,1,1,0,0,0,62.39,56.71,40.38,59.14,10,3,4,0,0,7,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12476,15392,28030,-9,28029,28027,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.487997935078,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12476,15392,28031,-9,28029,28027,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.022171446814,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,2,1,387,95994.15647427755,0,0,0,1901.973977186236 -12477,15393,28032,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.923354091129641,7.154301752089249,0,0,-1052.713278879186,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.692486714468564,6.796406839024272,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,601,432168.3343939236,216076.7669179895,186680.8005901743,0,1491.797618489803 -12478,15394,28033,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.126549895681977,7.539681808477199,0,0,-1033.940596841738,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.307932029085511,7.410751386047413,45.81,44.2,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,647,743456.4061824711,58863.60628392361,467030.2932386365,0,1742.866938326264 -12479,15395,28034,28035,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.645427896562593,8.076227227385889,0,1,0,-29.52087213800028,-9,-9,-9,2019,16,4,42,0,1,4,0,7.291845213815346,7.291845213815346,0,0,0,0,0,0,0,0,7.538924880787707,0,41.86,41.35,60.87,44.96,3.333333333333333,1,1,0,0,3,2,5,1,947.5,1793911.794502003,1564232.372815614,202348.0223041535,52241.19633530053,4242.040038520139 -12479,15395,28035,28034,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.703778569464697,8.82638686976644,0,1,0,-119.0773610583353,-9,3,2,2019,6,0,44,0,1,0,0,20.53347453083949,20.53347453083949,0,0,0,0,0,0,0,0,0,0,60.87,44.96,41.86,41.35,5,1,1,0,0,9,2,5,1,947.5,1793911.794502003,1564232.372815614,202348.0223041535,52241.19633530053,4242.040038520139 -12480,15396,28036,28039,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,6.985331145560353,7.020685343405715,0,14,0,-11.48392072045424,0,2,2,2019,20,8,40,40,1,8,0,3.469561912844769,3.469561912844769,0,0,0,0,0,1,1,0,0,0,39.48,58.88,51.83,57.2,6.666666666666667,1,1,0,1,9,10,3,1,435.25,304356.8680077281,258125.4017454961,0,0,2044.818209923083 -12480,15396,28037,-9,28039,28036,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.6185565589964,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,435.25,304356.8680077281,258125.4017454961,0,0,2044.818209923083 -12480,15396,28038,-9,28039,28036,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.295059392094,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,435.25,304356.8680077281,258125.4017454961,0,0,2044.818209923083 -12480,15396,28039,28036,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.804664874861942,7.931784927832194,0,8,0,-.5863191979338549,0,-9,-9,2019,8,0,29,24,1,0,0,9.142897158120684,9.142897158120684,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.48,58.88,6.666666666666667,1,1,0,0,1,10,3,1,435.25,304356.8680077281,258125.4017454961,0,0,2044.818209923083 -12481,15397,28040,28041,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.312715032734864,6.417105971910022,49,3,-25.50352081401333,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,121.2171335190953,0,0,1,1,0,5.33812452261612,6.500236137791084,43.59,59.64,46.16,58.62,1.666666666666667,1,1,0,0,0,12,2,1,1448.5,200517.3439223202,115285.1704600871,105311.4634265296,0,1822.694758079037 -12481,15397,28041,28040,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.688872360794565,5.46817351618401,49,-3,18.96655079288213,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.292422492200206,5.569171013901451,46.16,58.62,43.59,59.64,8.333333333333334,1,1,0,0,4,12,2,1,1448.5,200517.3439223202,115285.1704600871,105311.4634265296,0,1822.694758079037 -12482,15398,28042,28043,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,8.483287528601524,8.429307394747111,6,11,98.71727941338503,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.992190982211936,8.240092718605352,49.86,55.31,53.56,49.66,1.666666666666667,1,1,0,0,1,5,5,1,181.5,588908.3797453367,261086.8856878027,107134.1181456145,41216.24903161729,5019.958515405652 -12482,15398,28043,28042,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.446871283476588,8.946882730889827,0,6,-11,183.1745003607769,0,3,2,2019,8,1,38,37,1,1,0,10.86695187129956,10.86695187129956,0,0,0,0,0,1,1,0,4.024551740234585,0,53.56,49.66,49.86,55.31,6.666666666666667,1,1,0,0,7,5,5,1,181.5,588908.3797453367,261086.8856878027,107134.1181456145,41216.24903161729,5019.958515405652 -12483,15399,28044,28045,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,9,-2,0,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,19.39,29.41,51,49,6.666666666666667,1,1,0,0,0,13,1,0,842,21104.63675346424,0,0,0,2458.788906649435 -12483,15399,28045,28044,-9,-9,1,1,61,0,0,0,2,2,-9,1,3,0,0,0,9,2,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,49,19.39,29.41,7,1,1,0,0,3,13,1,0,842,21104.63675346424,0,0,0,2458.788906649435 -12484,15400,28046,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-989.5799844999656,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.328704715546175,0,63.41,39.7,-9,-9,6.666666666666667,1,1,1,1,0,2,1,1,624,0,0,0,0,719.9779062856732 -12485,15401,28047,28048,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.78502113405991,5.926478086916235,42,-2,57.024606962127,0,3,3,2019,7,0,0,22,4,0,0,0,0,0,0,0,0,0,1,1,0,2.611819647748557,5.919514138035431,54.1,41.8,61.12,51.57,8.333333333333334,1,1,0,0,11,8,2,1,1179.5,727020.8671929741,335304.9047036655,488336.0980582176,0,1911.806666861884 -12485,15401,28048,28047,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.142188963808318,6.158741046726298,42,2,52.45989126334464,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.01356621175708,5.884079400522336,61.12,51.57,54.1,41.8,10,1,1,0,0,7,8,2,1,1179.5,727020.8671929741,335304.9047036655,488336.0980582176,0,1911.806666861884 -12485,15402,28049,-9,28047,28048,1,0,37,0,0,0,2,2,-9,1,1,7.146246094945063,6.841518380664454,0,0,0,-922.4382763473807,0,3,2,2019,17,3,16,33,1,3,0,7.411605321148035,7.411605321148035,0,0,0,0,0,1,1,0,0,0,29.04,24.97,-9,-9,0,1,1,0,0,11,8,3,1,284,49857.30166838488,0,0,0,962.3804217797093 -12486,15403,28050,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-949.006957361654,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.8,23.94,-9,-9,5,1,1,0,0,0,4,2,0,699,-59672.87333715333,-51696.16296355161,0,0,1328.131401402652 -12487,15404,28051,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.096996813719477,8.090647115866904,0,0,0,-975.3194642869354,-9,-9,-9,2019,6,0,30,0,1,0,0,10.66076612893314,10.66076612893314,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,859,414287.5502920892,367590.0125184188,219173.1283541689,0,2074.417701229133 -12488,15405,28052,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.438607543829002,7.331978954806835,0,0,-1021.406397011226,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.082789876783641,7.90391318506319,48.54,46.62,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,533,412870.7438082139,288294.5831275839,181429.5221087015,0,2668.31328692251 -12489,15406,28053,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.163219000442663,8.125305666976081,0,0,0,-1009.298575587047,0,2,2,2019,22,7,37,37,1,7,0,12.31744414885233,12.31744414885233,0,0,0,0,0,0,0,0,1.981653323493342,0,44.39,63.4,-9,-9,3.333333333333333,1,1,0,1,11,10,4,1,852,66309.11327865221,187217.1453033614,0,0,2197.866370816755 -12490,15407,28054,28057,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.724060241776371,9.089440859359625,0,13,1,29.03379665611309,0,2,2,2019,8,0,48,43,1,0,0,16.11209798966585,16.11209798966585,0,0,0,0,0,1,1,0,1.414002251999612,0,51.83,57.2,50.6,53.68,8.333333333333334,1,1,0,0,9,2,5,1,1014.5,242586.7817720085,14853.11597241573,106506.1605445388,0,3945.658571306266 -12490,15407,28055,-9,28057,28054,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.222445478144,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1014.5,242586.7817720085,14853.11597241573,106506.1605445388,0,3945.658571306266 -12490,15407,28056,-9,28057,28054,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.3439230123967,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1014.5,242586.7817720085,14853.11597241573,106506.1605445388,0,3945.658571306266 -12490,15407,28057,28054,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.146157725808983,8.061207817393377,0,13,-1,108.3712957446288,0,2,2,2019,6,0,30,23,1,0,0,15.26646352572373,15.26646352572373,0,0,0,0,0,1,1,0,0,0,50.6,53.68,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,1014.5,242586.7817720085,14853.11597241573,106506.1605445388,0,3945.658571306266 -12491,15408,28058,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.0064718245298,7.829904582850449,0,0,0,-986.0571843922988,0,-9,-9,2019,8,2,40,8,1,2,0,7.20497006006356,7.20497006006356,0,0,0,0,0,0,0,0,0,0,58.9,35.01,-9,-9,6.666666666666667,3,4,0,0,8,8,4,0,1476,158584.2434369396,-101368.1119429992,0,0,1366.836404915352 -12491,15409,28059,-9,28058,-9,1,1,24,0,0,0,2,2,-9,0,4,6.628483264426994,6.474482353288465,0,0,0,-966.3757143877515,-9,2,-9,2019,10,0,35,0,1,1,1,1.98646590198947,1.98646590198947,0,0,0,0,0,0,0,0,3.322291742558309,0,49,58,-9,-9,7,3,4,0,0,1,8,2,0,332,-108537.7120200798,0,0,0,420.9850213234877 -12492,15410,28060,28062,-9,-9,1,0,31,0,2,0,1,1,-9,0,5,0,0,0,7,-2,76.85152186943608,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,38.24,63.73,49,57,1.666666666666667,2,3,0,1,4,4,2,1,768,-119848.8410636045,0,0,0,1481.54966817904 -12492,15410,28061,-9,28060,28062,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.193254914554,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,768,-119848.8410636045,0,0,0,1481.54966817904 -12492,15410,28062,28060,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.810986768077999,7.608632946594709,0,4,2,2.292407889627725,0,-9,-9,2019,10,0,38,38,1,1,0,7.199963281899666,7.199963281899666,0,0,0,0,0,1,1,0,0,0,49,57,38.24,63.73,7,2,3,0,0,1,4,2,1,768,-119848.8410636045,0,0,0,1481.54966817904 -12492,15410,28063,-9,28060,28062,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.5256815784776,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,768,-119848.8410636045,0,0,0,1481.54966817904 -12493,15411,28064,28065,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.718334201180216,6.209060420799883,44,-1,138.4316673211597,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.924199428638429,57.83,35.77,62.39,56.71,8.333333333333334,1,1,0,0,5,7,2,1,716.5,884333.068719493,53227.23323344519,684042.0719254122,0,646.8197158889088 -12493,15411,28065,28064,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,0,0,44,1,-12.30727524766954,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.83,35.77,8.333333333333334,1,1,0,0,5,7,2,1,716.5,884333.068719493,53227.23323344519,684042.0719254122,0,646.8197158889088 -12494,15412,28066,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.718964388176892,7.600582449602961,0,0,-1028.37501156979,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,9.396648638381624,0,0,1,1,0,1.696519111567764,7.685714637228935,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,376,815404.1639800711,229035.6501643016,269380.2421880527,0,1827.352966120311 -12495,15413,28067,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.823648743234128,7.886428992324719,0,0,0,-958.1179411940175,-9,2,3,2019,15,3,16,0,1,3,0,21.31090842454369,21.31090842454369,0,0,0,0,0,0,0,0,0,0,33.66,61.57,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,2649,141022.9547007036,0,0,0,872.8381703342525 -12496,15414,28068,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.588763515175978,8.589061084012723,0,0,0,-1019.204276913243,0,2,2,2019,9,0,47,40,1,0,0,14.20583300011906,14.20583300011906,0,0,0,0,2,1,1,0,0,0,47.55,44.33,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,567,599884.9021498489,403485.6574599692,157183.706891386,33448.06515152695,1619.976482109198 -12497,15415,28069,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.327758499617596,7.243722422124658,5.317327695625892,0,0,-1053.202766874642,0,3,3,2019,8,0,20,20,1,0,0,6.444331710600003,6.444331710600003,0,0,0,0,0,0,0,0,0,5.364245285742656,46.77,49.78,-9,-9,6.666666666666667,1,1,0,0,11,12,3,1,206,3971.950134617078,-23996.29924095351,0,0,606.2018356590301 -12498,15416,28070,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.265135542152523,8.491083655311671,6.599512129004674,0,0,-923.9759410252074,0,2,2,2019,30,11,34,32,1,11,0,9.808127306023778,9.808127306023778,0,0,0,0,0,1,1,0,6.673227508935162,0,6.43,67.32000000000001,-9,-9,1.666666666666667,1,1,0,0,12,5,4,1,990,1147012.856997121,959834.3906785445,101332.0623094132,36050.92255914555,2140.53397881792 -12498,15416,28071,-9,28070,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1061.745078308214,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,4,1,990,1147012.856997121,959834.3906785445,101332.0623094132,36050.92255914555,2140.53397881792 -12498,15417,28072,-9,28070,-9,1,1,21,0,1,1,2,0,0,0,2,0,7.310633114810735,7.711838863365524,0,0,-1023.604124812165,-9,2,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,7.657837056026803,0,43.29,41.01,-9,-9,3.333333333333333,1,1,0,0,4,5,3,1,400,69647.11336212896,-24610.69028102311,0,0,1241.178313536936 -12499,15418,28073,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1074.741870577303,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,9.933111394351165,0,0,1,1,0,0,0,45.84,23.52,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,1336,95755.216758319,0,78071.9836898358,-18811.18337961676,1220.267612539041 -12499,15419,28074,-9,28073,-9,1,0,49,0,0,0,1,1,-9,0,3,7.178009912457409,7.19467280018152,0,0,0,-893.3539886107872,0,2,-9,2019,12,0,16,24,1,2,0,11.20133599308413,11.20133599308413,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,1,1,3,0,559,101322.1275209047,113558.8823432391,96012.11751487838,78217.09185113208,443.0655279623601 -12500,15420,28075,28076,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,5.384715073725409,5.110567065324181,35,-2,-6.125511053924699,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.749190660638853,0,46.62,51.4,59.46,46.99,10,1,1,0,0,5,10,2,1,540,360968.3771554311,297258.4439212554,0,0,1194.860681006327 -12500,15420,28076,28075,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.344423365733618,7.086918977735354,35,2,-21.64408455254083,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.084641129784883,0,59.46,46.99,46.62,51.4,8.333333333333334,1,1,0,0,0,10,2,1,540,360968.3771554311,297258.4439212554,0,0,1194.860681006327 -12501,15421,28077,28078,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,9.11958384646077,8.631357585143745,0,14,-1,-31.0628866379008,0,2,1,2019,11,0,43,45,1,0,0,17.02576136436937,17.02576136436937,0,0,0,0,0,1,1,0,1.969443814424469,0,54.37,54.8,52,54.51,8.333333333333334,1,1,0,0,12,9,4,1,285,548944.0349801795,311977.1109208373,356710.304662194,149827.2171603706,3359.841212513415 -12501,15421,28078,28077,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,14,1,68.89119892567231,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.691209546771696,0,52,54.51,54.37,54.8,8.333333333333334,1,1,0,0,6,9,4,1,285,548944.0349801795,311977.1109208373,356710.304662194,149827.2171603706,3359.841212513415 -12501,15421,28079,-9,28078,28077,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.928601776812,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,4,1,285,548944.0349801795,311977.1109208373,356710.304662194,149827.2171603706,3359.841212513415 -12501,15421,28080,-9,28078,28077,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.5174102267172,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,285,548944.0349801795,311977.1109208373,356710.304662194,149827.2171603706,3359.841212513415 -12502,15422,28081,28083,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.505198687833436,8.226916201789829,0,8,6,-6.865138711514111,-9,-9,-9,2019,12,0,37,0,1,0,0,14.07750756652103,14.07750756652103,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.76,54.51,10,1,1,0,0,9,6,4,1,1874,448953.4171229105,371942.9545214032,207784.5935707224,147393.7475528575,3571.145350748229 -12502,15422,28082,-9,28083,28081,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.9873268505838,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,3.063460333929665,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1874,448953.4171229105,371942.9545214032,207784.5935707224,147393.7475528575,3571.145350748229 -12502,15422,28083,28081,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.374682250838152,8.241475439673694,0,8,-6,-32.16253287607606,-9,-9,-9,2019,12,0,70,0,1,0,0,8.248741597125509,8.248741597125509,0,0,0,0,0,1,1,0,0,0,57.76,54.51,54.79,55.86,10,1,1,0,0,9,6,4,1,1874,448953.4171229105,371942.9545214032,207784.5935707224,147393.7475528575,3571.145350748229 -12502,15422,28084,-9,28083,28081,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.3225847531687,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1874,448953.4171229105,371942.9545214032,207784.5935707224,147393.7475528575,3571.145350748229 -12503,15423,28085,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.983963862483394,7.715392757662427,5,11,-123.601340426686,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,.3287170316088126,0,0,0,0,0,7.611164463311616,48.83,51.82,47,49,8.333333333333334,1,1,0,0,7,6,5,1,1013,828612.9945417803,243034.0345374557,335287.2679350134,0,1102.178853396654 -12503,15424,28086,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.799133281399007,8.491741255890041,0,5,-11,-9.20088082254625,0,-9,-9,2019,11,1,37,43,1,1,0,16.72019109709294,16.72019109709294,0,0,0,0,0,0,0,0,3.412305322211969,0,47,49,48.83,51.82,6.666666666666667,1,1,0,0,11,6,5,1,348,107288.1719815028,-46156.95546165343,120813.4429548188,0,1766.881849665737 -12504,15425,28087,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.234038364834248,8.505294894806815,0,0,0,-901.2570270367585,0,3,2,2019,10,0,30,30,1,0,0,13.33207219505151,13.33207219505151,0,0,0,0,0,1,0,1,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,192,389381.1008275439,143887.1468299032,216111.629812996,19736.57942748264,2891.27196782999 -12504,15425,28088,-9,28087,-9,1,0,16,0,0,0,3,3,-9,0,5,0,7.494115756432233,7.706703099038871,0,0,-839.9596944970481,-9,1,-9,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,0,1,7.884010871485732,0,30.67,65.95,-9,-9,5,1,1,0,0,0,7,4,1,192,389381.1008275439,143887.1468299032,216111.629812996,19736.57942748264,2891.27196782999 -12505,15426,28089,28091,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.107917146770356,9.144218950293883,0,6,3,20.29733081815047,0,2,2,2019,11,2,38,40,1,2,0,29.14460942389302,29.14460942389302,0,0,0,0,0,1,1,0,0,0,49.86,55.31,51.73,58.82,8.333333333333334,1,1,0,0,7,12,5,1,660.6666666666666,563730.7234357565,226131.4232387425,323688.7045579951,148361.1114483521,4463.85001624384 -12505,15426,28090,-9,28091,28089,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.179246639187,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,660.6666666666666,563730.7234357565,226131.4232387425,323688.7045579951,148361.1114483521,4463.85001624384 -12505,15426,28091,28089,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.475692215420169,8.641653394584488,0,6,-3,102.9359094197441,0,-9,-9,2019,8,0,40,40,1,0,0,15.39579418141826,15.39579418141826,0,0,0,0,0,1,1,0,0,0,51.73,58.82,49.86,55.31,8.333333333333334,1,1,0,0,6,12,5,1,660.6666666666666,563730.7234357565,226131.4232387425,323688.7045579951,148361.1114483521,4463.85001624384 -12506,15427,28092,28093,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.633071573921526,7.578528108632741,0,5,-2,2.773694998601617,0,2,2,2019,12,0,16,18,1,0,0,17.17886035545657,17.17886035545657,0,0,0,0,0,0,0,0,5.227553638264046,0,46.08,57.2,55,53,6.666666666666667,1,1,0,0,9,4,5,1,217,1530006.519786786,1265484.457830758,229212.3024766369,0,3884.18926469783 -12506,15427,28093,28092,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.758141557605061,9.051455889821291,0,5,2,-.9411311737726873,0,-9,-9,2019,8,0,70,70,1,0,0,11.0304916376135,11.0304916376135,0,0,0,0,0,0,0,0,0,0,55,53,46.08,57.2,8,1,1,0,0,1,4,5,1,217,1530006.519786786,1265484.457830758,229212.3024766369,0,3884.18926469783 -12507,15428,28094,28095,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,9.097542387197828,9.048002456665863,0,3,1,-105.6268719993923,0,2,2,2019,8,0,65,60,1,0,0,20.87558248322009,20.87558248322009,0,0,0,0,0,0,0,0,3.857501449309933,0,45.81,61.51,47.24,53.95,6.666666666666667,1,1,0,0,7,8,5,1,1101.5,503817.9602923013,77570.0448530366,0,0,4424.366759154052 -12507,15428,28095,28094,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.371963476217308,8.357822758160935,0,3,-1,-60.29330644164424,0,-9,-9,2019,9,2,35,25,1,2,0,12.76059923292596,12.76059923292596,0,0,0,0,0,0,0,0,0,0,47.24,53.95,45.81,61.51,8.333333333333334,1,1,0,0,2,8,5,1,1101.5,503817.9602923013,77570.0448530366,0,0,4424.366759154052 -12508,15429,28096,-9,28097,-9,1,0,37,0,0,0,3,3,-9,0,4,1.553636388852671,1.366301691374837,0,0,0,-754.1752235999717,0,3,-9,2019,6,0,48,8,1,0,0,.0090514964325412,.0090514964325412,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,10,8,2,0,391,0,0,0,0,-433.3490627520114 -12508,15430,28097,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1072.755188487926,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,3.447848753664226,76.77504478199509,23.66578064701106,0,1,1,0,0,0,63.01,30.77,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,249,14712.09107127416,0,0,0,100.1925688454382 -12509,15431,28098,28099,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.512205770608308,8.98275168125744,0,13,-1,79.48281738278303,0,1,1,2019,8,0,48,44,1,0,0,34.14992719558753,34.14992719558753,0,0,0,0,0,0,0,0,5.383392937859037,0,57.16,56.15,45.43,53.5,8.333333333333334,1,1,0,0,10,8,5,1,293,2515167.230253837,1591209.470287017,1209876.453526595,214075.8757450304,7684.281683257534 -12509,15431,28099,28098,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.969376486374017,9.074473179999989,0,13,1,-74.55173301906274,0,1,1,2019,12,0,55,60,1,0,0,23.23780694178841,23.23780694178841,0,0,0,0,0,0,0,0,7.013931332267873,0,45.43,53.5,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,293,2515167.230253837,1591209.470287017,1209876.453526595,214075.8757450304,7684.281683257534 -12509,15431,28100,-9,28098,28099,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1079.736986203556,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,293,2515167.230253837,1591209.470287017,1209876.453526595,214075.8757450304,7684.281683257534 -12510,15432,28101,-9,28102,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-968.6024105603854,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,5,1,83.5,125852.2148851339,-47669.91769778026,59901.41272874252,85229.58066426725,2149.295173560523 -12510,15432,28102,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,8.358090888799079,8.747033612841983,0,0,0,-971.4550609121094,0,2,2,2019,10,0,40,37,1,0,0,15.80106572158808,15.80106572158808,0,0,0,0,14.5,0,0,0,0,0,51.23,32.56,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,83.5,125852.2148851339,-47669.91769778026,59901.41272874252,85229.58066426725,2149.295173560523 -12511,15433,28103,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,1,0,0,0,0,0,-1002.352996626079,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17,15.39,-9,-9,1.666666666666667,1,1,0,0,5,2,1,0,801,-150640.2166214349,-66481.93643012473,0,0,2194.498081975629 -12511,15434,28104,-9,28103,-9,1,0,19,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1126.081436347172,1,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,25.16,59.67,-9,-9,5,1,1,0,0,0,2,1,0,371.5,68822.33992892063,0,0,0,302.7332599578001 -12511,15434,28105,-9,28104,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.6226624888136,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,371.5,68822.33992892063,0,0,0,302.7332599578001 -12512,15435,28106,28107,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,30,-11,-102.0181761259021,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,58.89,48.6,10,1,1,0,0,6,1,3,1,300,1092821.885378056,447026.2368133222,405748.6673081315,0,2008.347172912834 -12512,15435,28107,28106,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.919227629976802,7.746123271991142,30,11,18.64993905255689,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.395754349517957,8.116307315300821,58.89,48.6,59.71,50.89,10,1,1,0,0,0,1,3,1,300,1092821.885378056,447026.2368133222,405748.6673081315,0,2008.347172912834 -12513,15436,28108,28109,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.480108815482605,8.29278263677441,8,1,36.31393193128999,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.439252939806128,56.47,38.94,56.07,45.75,8.333333333333334,1,1,0,0,0,13,4,1,1827,955436.3789691164,615742.7863020682,171882.6889069677,0,3440.044496711547 -12513,15436,28109,28108,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,4.216608946261794,4.119503296585987,8,-1,-36.00276064770642,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.353371317718618,56.07,45.75,56.47,38.94,8.333333333333334,1,1,0,0,0,13,4,1,1827,955436.3789691164,615742.7863020682,171882.6889069677,0,3440.044496711547 -12514,15437,28110,-9,28111,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.3759861533331,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,407,-12673.1450013111,2111.516758623871,0,0,2843.739772433015 -12514,15437,28111,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,5.957299486707544,7.05514705759662,6.683878246826272,0,0,-1075.225273200762,0,2,2,2019,31,12,38,38,1,12,0,1.258347964875818,1.258347964875818,0,0,0,0,0,1,0,1,5.890965716249593,0,32.09,64.06,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,407,-12673.1450013111,2111.516758623871,0,0,2843.739772433015 -12515,15438,28112,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.947141917383128,6.404451152426097,0,0,-1004.441569491888,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.865296874821751,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,260,297919.34405997,77952.528939653,0,0,1045.830999640304 -12516,15439,28113,-9,28114,28115,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.3953809339146,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,5,1,1268.25,3640979.638640068,2308671.609038295,1409211.868973764,185620.0298537209,5836.884450972566 -12516,15439,28114,28115,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.959201651616773,8.058722667476056,6.077229068049558,7,-1,.0375755628901417,0,2,3,2019,8,0,21,21,1,0,0,16.50223941218373,16.50223941218373,0,0,0,0,0,1,1,0,6.305469015736836,0,56.35,51.16,54.37,54.8,8.333333333333334,1,1,0,0,9,7,5,1,1268.25,3640979.638640068,2308671.609038295,1409211.868973764,185620.0298537209,5836.884450972566 -12516,15439,28115,28114,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.835333159554674,9.469062318779073,0,7,1,-16.85047605829658,0,-9,-9,2019,7,0,55,60,1,0,0,38.84109539682956,38.84109539682956,0,0,0,0,0,1,1,0,0,0,54.37,54.8,56.35,51.16,8.333333333333334,1,1,0,0,11,7,5,1,1268.25,3640979.638640068,2308671.609038295,1409211.868973764,185620.0298537209,5836.884450972566 -12516,15439,28116,-9,28114,28115,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1101.495741185117,-9,2,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,5,1,1,0,0,0,7,5,1,1268.25,3640979.638640068,2308671.609038295,1409211.868973764,185620.0298537209,5836.884450972566 -12517,15440,28117,28118,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,8.590314496593079,8.806647378066932,6.639739051051484,30,5,-8.484216397973567,0,3,3,2019,24,12,55,55,1,12,0,11.26700839229627,11.26700839229627,1,0,0,0,0,1,1,0,5.872722504088893,6.569987312095629,37.44,33.41,36.95,43.05,3.333333333333333,1,1,0,0,11,1,4,0,407.5,278620.5055570845,85240.64850517196,195826.7569643021,2154.608014789502,3748.367211719531 -12517,15440,28118,28117,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,6.893348404462704,7.022386049356499,0,27,-5,3.291659917647757,0,3,3,2019,13,1,22,20,1,1,0,4.616561342428897,4.616561342428897,0,0,0,0,0,1,1,0,0,0,36.95,43.05,37.44,33.41,3.333333333333333,1,1,0,0,12,1,4,0,407.5,278620.5055570845,85240.64850517196,195826.7569643021,2154.608014789502,3748.367211719531 -12518,15441,28119,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.434713220804228,7.024610288570844,0,0,0,-990.3034324236498,0,-9,-9,2019,23,11,39,38,1,11,0,3.64377686122311,3.64377686122311,0,0,0,0,0,0,0,0,0,0,29.07,53.09,-9,-9,3.333333333333333,1,1,0,0,5,10,3,0,342,122721.9042210675,57146.57256563327,0,0,957.1885519964694 -12519,15442,28120,28122,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.23841256404123,8.016881830425833,0,8,11,1.22627656365285,0,2,2,2019,6,0,38,46,1,0,0,11.94435347436925,11.94435347436925,0,0,0,0,0,1,1,0,2.232423314603391,0,54.37,54.8,38.24,33.99,8.333333333333334,1,1,0,0,10,5,4,0,624.6666666666666,721412.4275328033,528825.5965675045,156161.310363811,15983.21616110833,3426.375414759671 -12519,15442,28121,-9,28122,28120,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-990.5266344505795,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,5,4,0,624.6666666666666,721412.4275328033,528825.5965675045,156161.310363811,15983.21616110833,3426.375414759671 -12519,15442,28122,28120,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,6.668785784235824,7.126086745896099,0,8,-11,-39.72496355845431,0,2,2,2019,9,1,10,20,1,1,0,9.993910736542198,9.993910736542198,0,0,0,0,0,1,1,0,0,0,38.24,33.99,54.37,54.8,6.666666666666667,1,1,0,1,9,5,4,0,624.6666666666666,721412.4275328033,528825.5965675045,156161.310363811,15983.21616110833,3426.375414759671 -12520,15443,28123,28124,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.316552838250059,8.012810732129692,0,8,4,45.66001144588009,0,2,2,2019,10,1,40,80,1,1,0,9.635870075117847,9.635870075117847,0,0,0,0,0,1,1,0,0,0,30.22,61.23,26.91,54.17,5,1,1,0,0,7,4,4,0,970.5,246409.6890580095,281480.8819213134,136173.2849739105,108926.5587483319,2341.873594975937 -12520,15443,28124,28123,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.509878500030825,7.688753726274942,0,8,-4,-125.8742840847452,0,-9,-9,2019,14,3,21,35,1,3,0,8.788099026655516,8.788099026655516,0,0,0,0,0,1,1,0,0,0,26.91,54.17,30.22,61.23,6.666666666666667,1,1,0,0,5,4,4,0,970.5,246409.6890580095,281480.8819213134,136173.2849739105,108926.5587483319,2341.873594975937 -12520,15444,28125,-9,28124,28123,1,0,23,0,0,0,2,2,-9,0,4,7.268433714661019,7.136162241865979,0,0,0,-1061.832860456826,0,2,2,2019,12,0,20,31,1,2,1,8.525004559657619,8.525004559657619,0,0,0,0,0,1,1,0,2.122601745681496,0,46,58,-9,-9,7,1,1,0,0,6,4,3,0,106,25795.48643994574,0,0,0,67.91735625604804 -12520,15445,28126,-9,28124,28123,1,0,25,0,0,0,2,2,-9,0,5,7.352983379499891,7.588209127047826,0,0,0,-1091.781319485269,0,2,2,2019,12,0,25,37,1,0,1,7.875576144820672,7.875576144820672,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,8,4,3,0,1160,-34338.77516526602,142283.3970426369,0,0,1046.119825833988 -12520,15446,28127,-9,28124,28123,1,1,21,0,0,0,2,2,1,0,4,7.925774662302052,8.162617406478201,0,0,0,-1031.173526731132,-9,2,2,2019,6,0,20,0,1,0,1,12.31396827742919,12.31396827742919,0,0,0,0,0,1,1,0,1.067832531538828,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,1,4,4,0,597,-153444.5274863356,-56089.07344924452,0,0,1462.617388326817 -12520,15447,28128,-9,28124,28123,1,1,18,0,0,0,2,2,-9,1,1,0,0,0,0,0,-863.721377704978,0,2,2,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,1.420318172034332,0,29.38,48.1,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,1174,0,0,0,0,858.947157240083 -12521,15448,28129,28132,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,8.677584504690946,8.906604654416288,0,10,-4,-164.0570240787665,0,2,2,2019,12,0,40,40,1,0,0,16.94819041683316,16.94819041683316,0,0,0,0,0,1,1,0,4.567022327541713,0,39.64,49.74,48.77,57.64,5,2,3,0,0,11,8,5,1,367.5,521828.6636759366,189957.0901190113,467110.8201612344,106917.8300504511,4589.163017291787 -12521,15448,28130,-9,28132,28129,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.586882652456,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,367.5,521828.6636759366,189957.0901190113,467110.8201612344,106917.8300504511,4589.163017291787 -12521,15448,28131,-9,28132,28129,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.1238185932532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,367.5,521828.6636759366,189957.0901190113,467110.8201612344,106917.8300504511,4589.163017291787 -12521,15448,28132,28129,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.464357644417911,8.701829853527952,0,10,4,-102.7173194668787,0,3,1,2019,22,10,35,-9,1,10,0,18.15267152722278,18.15267152722278,0,0,0,0,0,1,1,0,.3540472118839141,0,48.77,57.64,39.64,49.74,6.666666666666667,1,1,0,1,9,8,5,1,367.5,521828.6636759366,189957.0901190113,467110.8201612344,106917.8300504511,4589.163017291787 -12522,15449,28133,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,5,0,6.13995361876832,5.984658620784386,0,0,-929.2068268345683,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.822602243269331,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,721,24968.17447367645,115245.6610900536,0,0,1193.614525088573 -12523,15450,28134,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-931.2885296364362,0,3,3,2019,12,2,0,15,3,2,0,0,0,0,0,0,0,0,0,0,0,2.316867393676376,0,43.97,54.03,-9,-9,3.333333333333333,1,1,1,0,12,4,1,1,97,334314.1022241362,-39091.73504927364,0,0,286.1150253991862 -12523,15451,28135,-9,-9,28134,1,0,27,0,0,0,2,2,-9,0,3,8.191255741843156,8.074541726206279,0,0,0,-934.4109795174531,0,2,2,2019,6,0,41,42,1,0,1,10.18861242251095,10.18861242251095,0,0,0,0,0,0,0,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,741,10224.26613401955,0,0,0,1554.238387559104 -12524,15452,28136,28137,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.504493836951513,8.100692300621944,26,-3,-58.25547646014284,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.868387949096787,56.76,44.55,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1207.5,1024770.655390179,435179.5623050566,454718.0987654909,0,2677.892089377991 -12524,15452,28137,28136,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.969920808190792,6.927455901420739,26,3,71.35884661087749,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.633720029158843,6.93915907216144,57.16,56.15,56.76,44.55,10,1,1,0,0,0,10,3,1,1207.5,1024770.655390179,435179.5623050566,454718.0987654909,0,2677.892089377991 -12525,15453,28138,28141,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,8.539277312087338,8.561540845726197,5.358205933064411,7,-6,-175.70163125265,0,-9,-9,2019,8,0,60,50,1,0,0,10.57146643379193,10.57146643379193,0,0,0,0,0,1,1,0,6.016649378757925,0,49.45,46.23,56.47,59.4,1.666666666666667,1,1,0,0,7,10,4,0,652,137907.5315283854,58272.73395358808,241038.897375813,132311.5129967504,3865.212315058445 -12525,15453,28139,-9,28138,28141,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1072.188770379538,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,4,0,652,137907.5315283854,58272.73395358808,241038.897375813,132311.5129967504,3865.212315058445 -12525,15453,28140,-9,28138,28141,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-936.163277262901,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,0,652,137907.5315283854,58272.73395358808,241038.897375813,132311.5129967504,3865.212315058445 -12525,15453,28141,28138,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.383150927859031,8.612148283601549,0,7,6,36.21721917208254,-9,-9,-9,2019,6,0,40,0,1,0,0,11.34813632753725,11.34813632753725,0,0,0,0,0,1,1,0,0,0,56.47,59.4,49.45,46.23,10,1,1,0,0,12,10,4,0,652,137907.5315283854,58272.73395358808,241038.897375813,132311.5129967504,3865.212315058445 -12525,15453,28142,-9,28138,28141,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.843299002855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,652,137907.5315283854,58272.73395358808,241038.897375813,132311.5129967504,3865.212315058445 -12526,15454,28143,28144,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,5.774043089819022,6.169367868224252,48,1,-142.9000898372118,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.954445890062822,6.001910750185486,59.14,52.5,57.26,39.74,8.333333333333334,1,1,0,0,10,2,2,1,2179,125107.5272647151,101817.5069889839,139467.184281577,0,1543.674473934587 -12526,15454,28144,28143,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,48,-1,-124.4380728410893,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.26,39.74,59.14,52.5,10,1,1,0,0,6,2,2,1,2179,125107.5272647151,101817.5069889839,139467.184281577,0,1543.674473934587 -12527,15455,28145,28146,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,4.640668510614558,5.23507774905806,6,3,16.68414623711384,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.392118867507229,34.21,37.16,27.88,26.97,6.666666666666667,1,1,0,0,0,11,2,1,343,189136.5517790162,46205.50067309101,142781.9390940107,0,3625.557716585285 -12527,15455,28146,28145,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,6,-3,2.295277380581782,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,12.85579195416356,0,0,1,1,0,0,0,27.88,26.97,34.21,37.16,8.333333333333334,1,1,0,0,0,11,2,1,343,189136.5517790162,46205.50067309101,142781.9390940107,0,3625.557716585285 -12528,15456,28147,-9,-9,-9,1,0,94,0,0,0,2,2,-9,0,3,0,6.499107273492829,6.823015398305562,0,0,-1017.570461968859,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,13.33664561029985,12.98430920875306,0,0,1,1,0,3.999984295834223,6.681673139842689,55,43,-9,-9,8,1,1,0,0,0,6,2,1,430,239085.8013773438,29865.59498683307,238182.7765734438,0,1878.476910903048 -12529,15457,28148,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.168095509730483,7.867932023426305,0,0,-1059.537906557059,0,2,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.752706587204042,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,224,1832287.186047151,470464.434833033,913999.7572326013,0,2142.830726379976 -12530,15458,28149,-9,28151,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.4978273465709,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,439,-94506.36357820015,0,0,0,999.5094545298734 -12530,15458,28150,-9,28151,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.718237267997,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,1,0,439,-94506.36357820015,0,0,0,999.5094545298734 -12530,15458,28151,-9,-9,-9,1,0,25,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1087.551689065484,-9,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.25,41.05,-9,-9,6.666666666666667,3,4,0,0,1,2,1,0,439,-94506.36357820015,0,0,0,999.5094545298734 -12531,15459,28152,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.305197704706964,7.270297604977508,0,0,0,-1052.713540414343,0,-9,-9,2019,6,0,24,41,1,0,0,8.111277887960576,8.111277887960576,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,6.666666666666667,1,1,0,1,2,13,3,1,115,-143672.6505558145,0,0,0,190.3940869195008 -12532,15460,28153,28155,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.924056197706023,7.808081272376738,0,8,9,-31.93069381972516,0,2,2,2019,21,9,33,32,1,9,0,8.250638984968012,8.250638984968012,0,0,0,0,0,1,1,0,0,0,38.27,52.67,51.25,52.08,8.333333333333334,3,4,0,0,9,13,5,1,235,555834.4748044194,295965.7449158403,287822.2053159381,130620.8297700129,3791.990765563592 -12532,15460,28154,-9,28153,28155,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.5366677531174,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,13,5,1,235,555834.4748044194,295965.7449158403,287822.2053159381,130620.8297700129,3791.990765563592 -12532,15460,28155,28153,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.81552358799393,8.772652598163083,0,8,0,53.70016785823053,0,3,3,2019,11,0,40,40,1,0,0,16.18677440515379,16.18677440515379,0,0,0,0,0,1,1,0,0,0,51.25,52.08,38.27,52.67,8.333333333333334,1,1,0,0,9,13,5,1,235,555834.4748044194,295965.7449158403,287822.2053159381,130620.8297700129,3791.990765563592 -12532,15461,28156,-9,28153,28155,1,0,19,0,1,0,3,3,-9,0,4,0,0,0,0,0,-904.074053948507,1,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,0,13,1,1,142,-176335.8862260814,0,0,0,-12.64108349028731 -12533,15462,28157,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.35186749874018,8.465711759993829,7.349071247252963,2,-1,5.574497561325824,0,3,2,2019,6,0,36,38,1,0,0,11.27275777420118,11.27275777420118,0,0,0,0,0,0,0,0,8.10623144956759,0,62.39,56.71,59.53,56.44,10,4,5,0,0,4,8,5,0,492,-233.846019555187,-28260.25518952761,0,0,2494.639315892021 -12533,15463,28158,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,9.038623448093308,8.977877622446778,0,2,1,-164.6474906044284,-9,-9,-9,2019,6,0,54,0,1,0,0,15.73323269863051,15.73323269863051,0,0,0,0,0,0,0,0,.8198129447316937,0,59.53,56.44,62.39,56.71,10,1,1,0,0,10,8,5,0,754,-53697.43359954226,0,0,0,2615.288604126225 -12534,15464,28159,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.8331742675658,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.656081693291439,0,55,42,-9,-9,8,1,1,0,0,0,9,1,1,388,43847.46714881877,0,0,0,1102.455151153144 -12534,15465,28160,-9,28159,-9,1,0,64,0,0,0,2,2,-9,0,4,5.960666253717564,6.748172571553223,6.335915578059229,0,0,-924.758473199065,0,3,-9,2019,11,0,10,10,1,0,0,5.296928001581946,5.296928001581946,0,0,0,0,74.5,1,1,0,7.228597673741287,6.406117219158702,45.86,53.23,-9,-9,6.666666666666667,1,1,0,0,7,9,2,1,1287,775687.0156112185,154107.646979062,507457.5989450483,0,1949.919988977267 -12535,15466,28161,28162,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.957512876984669,7.946258339265253,0,3,3,-84.21355086176231,0,3,2,2019,11,0,20,21,1,0,0,13.86678408060267,13.86678408060267,0,0,0,0,0,0,0,0,3.220057313088318,0,51.81,50.46,50.32,49.66,8.333333333333334,1,1,0,0,13,10,5,1,2334.5,818391.9857697883,122138.8056995231,708508.7676640941,194528.3695164743,8643.970533333439 -12535,15466,28162,28161,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.648746974344503,9.623540521679251,0,3,-3,-13.78029897391569,-9,-9,-9,2019,12,0,40,0,1,0,0,41.13078604638262,41.13078604638262,0,0,0,0,0,0,0,0,0,0,50.32,49.66,51.81,50.46,8.333333333333334,1,1,0,0,2,10,5,1,2334.5,818391.9857697883,122138.8056995231,708508.7676640941,194528.3695164743,8643.970533333439 -12536,15467,28163,28164,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.813287249129878,8.657254222096258,0,19,-4,-2.140402724709234,-9,2,1,2019,4,0,36,0,1,0,0,19.20520602582432,19.20520602582432,0,0,0,0,0,0,0,0,7.878465195659492,0,59.46,46.99,57.16,56.15,8.333333333333334,3,4,0,0,12,8,5,1,1093,932458.3987730255,511458.0524999224,647451.6690098604,58290.8879636631,7318.446559119217 -12536,15467,28164,28163,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.149719198965558,8.386945458524046,0,19,4,-116.4639501548373,-9,2,2,2019,4,0,7,0,1,0,0,62.2402942450321,62.2402942450321,0,0,0,0,0,0,0,0,8.678581828510824,0,57.16,56.15,59.46,46.99,8.333333333333334,3,4,0,0,12,8,5,1,1093,932458.3987730255,511458.0524999224,647451.6690098604,58290.8879636631,7318.446559119217 -12536,15468,28165,-9,28163,28164,1,1,23,0,0,0,1,1,-9,0,3,8.207377917517475,8.171538840627417,0,0,0,-988.7169785302949,-9,1,1,2019,7,0,37,0,1,0,1,12.23802999936655,12.23802999936655,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,6.666666666666667,3,4,0,0,6,8,4,1,361,-74527.2474738469,47219.18148692918,0,0,1630.282560344484 -12536,15469,28166,-9,28163,28164,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-949.5983400916629,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,1403,-25249.38971779694,0,0,0,1062.012866274035 -12537,15470,28167,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1103.449386703487,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,52.95,-9,-9,5,1,1,0,0,0,8,1,0,321,0,0,0,0,704.1754783902237 -12538,15471,28168,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.817787034505,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,12,1,1,1947,-10557.87482462026,0,0,0,756.5829646622394 -12539,15472,28169,-9,28171,28170,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.1635785830407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,3363090.452510014,2211940.923025314,906800.0288201708,0,5624.653678191185 -12539,15472,28170,28171,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.202271483535304,9.278263446682809,0,10,5,-20.77028569612886,0,-9,-9,2019,11,0,59,-9,1,2,0,21.47600726177206,21.47600726177206,0,0,0,0,0,0,0,0,4.327169981277465,0,49,50,28.26,61.5,7,4,1,0,0,1,8,5,1,428.25,3363090.452510014,2211940.923025314,906800.0288201708,0,5624.653678191185 -12539,15472,28171,28170,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,7.364494914799132,7.59234832269572,0,10,-5,115.5484090061092,0,3,1,2019,27,10,16,0,1,10,0,11.8531398085471,11.8531398085471,0,0,0,.1753658254449668,0,0,0,0,7.823712179928903,0,28.26,61.5,49,50,6.666666666666667,1,1,0,0,9,8,5,1,428.25,3363090.452510014,2211940.923025314,906800.0288201708,0,5624.653678191185 -12539,15472,28172,-9,28171,28170,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.416056986466,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,3363090.452510014,2211940.923025314,906800.0288201708,0,5624.653678191185 -12540,15473,28173,-9,28174,28175,1,1,16,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1030.171940816908,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,0,0,0,8,1,0,1899.666666666667,-24391.9485943883,0,0,0,1887.953441779587 -12540,15473,28174,28175,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,0,0,0,28,-5,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,0,0,46,50,38.75,43.02,7,2,3,0,0,0,8,1,0,1899.666666666667,-24391.9485943883,0,0,0,1887.953441779587 -12540,15473,28175,28174,-9,-9,1,1,54,0,1,0,3,3,-9,1,3,0,0,0,28,5,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,0,1,0,0,38.75,43.02,46,50,6.666666666666667,2,3,0,1,0,8,1,0,1899.666666666667,-24391.9485943883,0,0,0,1887.953441779587 -12540,15474,28176,-9,28174,28175,1,0,21,0,1,1,2,0,0,1,4,0,0,0,0,0,-1034.850707000546,-9,3,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,39.09,60.15,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,418,38816.25536521761,0,0,0,1528.286587961842 -12540,15475,28177,-9,28174,28175,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-1123.870355806254,-9,3,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,131,0,0,0,0,0 -12541,15476,28178,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.860773837985185,8.684322940220099,0,0,0,-1076.747536336427,0,1,1,2019,15,3,40,42,1,3,0,16.31707443063891,16.31707443063891,0,0,0,0,0,1,1,0,5.691268056909365,0,42.61,49.31,-9,-9,3.333333333333333,1,1,0,0,11,4,5,1,703,174204.5610278489,4027.24608952147,0,0,2435.6421980797 -12542,15477,28179,28181,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.83663348188335,9.589843079146849,0,26,0,-74.68870601868456,0,2,1,2019,10,1,45,47,1,1,0,38.06870821306065,38.06870821306065,0,0,0,0,0,0,0,0,2.697228099616112,0,55.36,51.57,60.87,44.96,8.333333333333334,1,1,0,0,11,8,5,1,814.6666666666666,2825044.941918675,1807461.979538796,1236093.368957448,247104.8601448734,10985.03061553042 -12542,15477,28180,-9,28181,28179,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-965.3620257840361,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,8,5,1,814.6666666666666,2825044.941918675,1807461.979538796,1236093.368957448,247104.8601448734,10985.03061553042 -12542,15477,28181,28179,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,6.3549681043046,6.269421412671286,0,8,0,-23.16581709486704,0,-9,-9,2019,10,0,20,15,1,0,0,3.08246628542774,3.08246628542774,0,0,0,0,0,0,0,0,8.432879409742368,0,60.87,44.96,55.36,51.57,8.333333333333334,1,1,0,0,6,8,5,1,814.6666666666666,2825044.941918675,1807461.979538796,1236093.368957448,247104.8601448734,10985.03061553042 -12542,15478,28182,-9,28181,28179,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1044.923354821121,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.516478795732274,0,56.19,53.98,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,277,0,0,0,0,402.4880212410802 -12543,15479,28183,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.260856454182115,8.108287185746123,0,0,-881.2019811254168,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.989804606531188,8.558765878514428,55,45,-9,-9,8,1,1,0,0,0,7,4,1,665,874390.7682748954,386413.8508612079,180323.7718340307,0,3917.051397292526 -12544,15480,28184,28185,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,9.393226859287562,9.455716751093041,0,11,-2,-37.67592585663635,0,2,2,2019,9,1,50,50,1,1,0,33.20932851821746,33.20932851821746,0,0,0,0,0,0,0,0,0,0,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,8,5,1,592,551405.4618165325,56725.23492560955,420732.8170239065,202448.925890544,14884.65763213735 -12544,15480,28185,28184,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.800949118380977,9.472329172941125,0,11,2,38.8705835888637,0,2,2,2019,6,0,50,50,1,0,0,29.17572065949786,29.17572065949786,0,0,0,0,0,0,0,0,9.549008043568426,0,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,13,8,5,1,592,551405.4618165325,56725.23492560955,420732.8170239065,202448.925890544,14884.65763213735 -12545,15481,28186,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.189605217201362,7.257063950861437,6.121650676058152,0,0,-948.5695322876491,0,-9,-9,2019,8,0,17,18,1,0,0,8.308425585934529,8.308425585934529,0,0,0,0,0,1,1,0,5.595308604863677,0,45.19,48.64,-9,-9,8.333333333333334,1,1,0,0,8,6,2,1,318,94507.24537141678,93016.30285217978,0,0,2019.922858366774 -12545,15481,28187,-9,28186,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1164.127070188009,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,1,318,94507.24537141678,93016.30285217978,0,0,2019.922858366774 -12545,15481,28188,-9,28186,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-859.4807239547727,-9,2,-9,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,318,94507.24537141678,93016.30285217978,0,0,2019.922858366774 -12546,15482,28189,-9,28192,28191,1,1,18,0,2,0,2,2,1,0,4,6.162042632458208,6.146289289869648,0,0,0,-835.316444646983,-9,1,2,2019,8,2,60,0,1,2,1,.8854731701086663,.8854731701086663,0,0,0,0,0,1,1,0,2.364487387768235,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,11,7,2,1,1189,-5788.817483560279,0,0,0,-39.28668758431303 -12546,15483,28190,-9,28192,28191,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.581086732977,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,700.25,92758.79912920797,121824.1477584899,0,0,2876.225319821374 -12546,15483,28191,28192,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,6.758128581961613,6.742465262906665,0,9,0,21.70685273450989,0,-9,-9,2019,15,4,16,16,1,4,0,7.896109168967966,7.896109168967966,0,0,0,0,0,1,1,0,3.935979096816057,0,45.18,54.77,54.2,57.49,8.333333333333334,1,1,0,0,11,7,4,1,700.25,92758.79912920797,121824.1477584899,0,0,2876.225319821374 -12546,15483,28192,28191,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.715677065313978,8.812271425739596,0,27,0,99.65903237937829,0,2,1,2019,9,1,26,27,1,1,0,25.90033529978558,25.90033529978558,0,0,0,0,2,1,1,0,0,0,54.2,57.49,45.18,54.77,8.333333333333334,1,1,0,0,9,7,4,1,700.25,92758.79912920797,121824.1477584899,0,0,2876.225319821374 -12546,15483,28193,-9,28192,28191,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-978.5787495104283,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,4,1,700.25,92758.79912920797,121824.1477584899,0,0,2876.225319821374 -12547,15484,28194,28196,-9,-9,1,1,38,1,3,0,1,1,-9,0,5,7.838931559943502,7.729990667567781,0,15,1,-33.19785728670664,0,2,2,2019,0,0,39,55,1,0,0,8.410852482475107,8.410852482475107,0,0,0,0,0,1,1,0,2.486080337854992,0,56.96,56.86,51.39,59.18,8.333333333333334,2,3,0,0,6,1,2,1,653.8,241790.8637447001,235858.5977285462,135874.721996813,114926.7028692072,1846.837723619681 -12547,15484,28195,-9,28196,28194,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.343962690622,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,1,2,1,653.8,241790.8637447001,235858.5977285462,135874.721996813,114926.7028692072,1846.837723619681 -12547,15484,28196,28194,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,0,0,0,15,-1,-156.3429238219162,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,56.96,56.86,10,2,3,0,0,3,1,2,1,653.8,241790.8637447001,235858.5977285462,135874.721996813,114926.7028692072,1846.837723619681 -12547,15484,28197,-9,28196,28194,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.020005274548,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,2,1,653.8,241790.8637447001,235858.5977285462,135874.721996813,114926.7028692072,1846.837723619681 -12547,15484,28198,-9,28196,28194,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.8975849701084,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,1,653.8,241790.8637447001,235858.5977285462,135874.721996813,114926.7028692072,1846.837723619681 -12548,15485,28199,-9,28200,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.279381710095,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1173,653300.1991959161,85951.83611223058,464856.1757537201,0,974.1887377849644 -12548,15485,28200,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,5.141102483089118,5.338374116418801,0,0,0,-896.2950109389909,0,3,2,2019,12,1,17,16,1,1,0,1.038447309233407,1.038447309233407,0,0,0,0,0,1,1,0,0,0,40.69,59.62,-9,-9,3.333333333333333,1,1,0,0,5,10,2,1,1173,653300.1991959161,85951.83611223058,464856.1757537201,0,974.1887377849644 -12548,15486,28201,-9,28200,-9,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.1218410048143,0,2,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.98,55.39,-9,-9,5,1,1,0,0,2,10,1,1,488,0,0,0,0,-233.8826358509069 -12549,15487,28202,28204,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.40951059850603,8.130172057787021,0,5,3,27.07962223949513,0,3,2,2019,10,0,50,58,1,0,0,8.239673958974194,8.239673958974194,0,0,0,0,0,1,1,0,2.591262650738223,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,7,10,4,0,328.6666666666667,3738.133808561232,8538.158838210458,0,0,2714.042759645011 -12549,15487,28203,-9,28204,28202,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.154177523511,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,328.6666666666667,3738.133808561232,8538.158838210458,0,0,2714.042759645011 -12549,15487,28204,28202,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.690373184056037,8.266329271487514,0,5,-3,64.88095518313015,0,-9,-9,2019,8,0,37,40,1,0,0,10.09066514759292,10.09066514759292,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,7,10,4,0,328.6666666666667,3738.133808561232,8538.158838210458,0,0,2714.042759645011 -12550,15488,28205,-9,28206,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.838174496904,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,219.5,-3122.429289985739,0,0,0,1160.961905798173 -12550,15488,28206,-9,-9,-9,1,0,29,0,1,0,1,1,0,0,4,0,0,0,0,0,-1085.674364823082,-9,3,-9,2019,30,10,0,0,2,10,0,0,0,0,0,0,0,0,1,0,1,0,0,26.56,66.13,-9,-9,0,4,2,0,1,7,7,1,0,219.5,-3122.429289985739,0,0,0,1160.961905798173 -12551,15489,28207,28209,-9,-9,1,1,29,0,3,0,2,2,-9,0,3,8.873860721648152,8.395445490650905,0,10,-11,-1.856527894417488,0,2,3,2019,12,0,42,45,1,0,0,16.14829758141109,16.14829758141109,0,0,0,0,0,1,1,0,4.335635676267182,0,38.63,56.7,49.04,55.86,8.333333333333334,1,1,0,0,12,2,4,1,623.8,73528.22364959729,8086.422812466927,176748.6885951554,115723.2857052474,3430.36808171641 -12551,15489,28208,-9,28209,28207,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4569539169572,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,4,1,623.8,73528.22364959729,8086.422812466927,176748.6885951554,115723.2857052474,3430.36808171641 -12551,15489,28209,28207,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.052872741459863,7.361898117215416,6.055720904411836,10,11,-37.51592145269071,0,-9,-9,2019,9,0,16,20,1,0,0,7.752050398986306,7.752050398986306,0,0,0,0,0,1,1,0,6.671692583279552,0,49.04,55.86,38.63,56.7,8.333333333333334,1,1,0,0,9,2,4,1,623.8,73528.22364959729,8086.422812466927,176748.6885951554,115723.2857052474,3430.36808171641 -12551,15489,28210,-9,28209,28207,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.4352574733007,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,623.8,73528.22364959729,8086.422812466927,176748.6885951554,115723.2857052474,3430.36808171641 -12551,15489,28211,-9,28209,-9,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1060.481536654763,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,1,623.8,73528.22364959729,8086.422812466927,176748.6885951554,115723.2857052474,3430.36808171641 -12552,15490,28212,-9,28214,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.314279306283,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,1,866.6666666666666,42230.3936559169,0,0,0,2862.285636288992 -12552,15490,28213,-9,28214,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.0951451593521,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,866.6666666666666,42230.3936559169,0,0,0,2862.285636288992 -12552,15490,28214,-9,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,7.010880406809893,6.728012630487108,0,0,0,-968.3281595308174,0,2,2,2019,0,0,16,16,1,0,0,6.985744221790126,6.985744221790126,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,13,13,2,1,866.6666666666666,42230.3936559169,0,0,0,2862.285636288992 -12553,15491,28215,28216,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.180647815205552,7.899224129680681,0,31,-11,-41.36228354614983,0,3,2,2019,7,0,38,35,1,0,0,11.15665731958573,11.15665731958573,0,0,0,0,0,1,1,0,6.516708546112818,0,54.2,57.49,55.95,47.23,8.333333333333334,1,1,0,0,8,9,4,1,1058.5,1159653.840139063,516254.9493478404,574847.9961075098,0,3058.141332016554 -12553,15491,28216,28215,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.099719143517351,7.927488915305034,31,11,-34.19189775312343,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.142303135681772,55.95,47.23,54.2,57.49,6.666666666666667,1,1,0,0,0,9,4,1,1058.5,1159653.840139063,516254.9493478404,574847.9961075098,0,3058.141332016554 -12553,15492,28217,-9,28215,28216,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-964.2361328402357,0,2,2,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,1.642710125294171,0,20.3,66.55,-9,-9,0,1,1,1,0,1,9,1,1,148,56406.13020346449,0,0,0,-506.2157335568974 -12554,15493,28218,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.742711909255299,8.451793342623288,0,0,0,-903.3174479460046,-9,1,1,2019,11,1,35,0,1,1,0,24.23451428593858,24.23451428593858,0,0,0,0,0,1,1,0,0,0,17.88,67.62,-9,-9,5,1,1,0,0,9,9,5,0,283,-21926.17851224002,66219.98160995412,0,0,1763.652804472404 -12555,15494,28219,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,6.672242754839223,6.916087599035483,0,0,0,-1129.27990696648,-9,-9,-9,2019,10,0,16,0,1,0,0,7.472606551844378,7.472606551844378,0,0,0,0,0,1,1,0,0,0,43.24,59.41,-9,-9,6.666666666666667,1,1,0,0,4,11,2,0,756,-151786.9180757214,0,0,0,292.8237654962607 -12556,15495,28220,28221,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,0,0,0,2,0,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.82000000000001,31.64,31.43,18.27,6.666666666666667,1,1,0,1,0,11,1,0,2064.5,104882.5362388147,-31041.02065640759,0,0,2860.79172926582 -12556,15495,28221,28220,-9,-9,1,0,37,0,2,0,2,2,-9,1,1,0,0,0,2,0,0,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,1.24682125650642,0,1,1,0,0,0,31.43,18.27,69.82000000000001,31.64,0,1,1,0,1,0,11,1,0,2064.5,104882.5362388147,-31041.02065640759,0,0,2860.79172926582 -12557,15496,28222,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.616878994733468,8.194798605040148,0,0,-770.9736810881034,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.459489738402795,8.169043202874558,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,452,1026643.350850331,536152.1218157883,439921.8688386204,0,1946.564541701646 -12558,15497,28223,28224,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.514281938646253,8.306452021495803,0,10,-6,7.961901773050487,0,2,2,2019,7,0,38,38,1,0,0,13.3593007792074,13.3593007792074,0,0,0,0,0,0,0,0,7.28241328812402,0,62.96,55.09,34.63,50.33,8.333333333333334,1,1,0,0,11,13,5,1,1912,58548.52399265847,57789.25371103558,0,0,4557.606277471815 -12558,15497,28224,28223,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.535396355533592,8.550636615834563,0,10,6,81.14617463351991,0,2,2,2019,12,0,39,78,1,0,0,20.3787646492054,20.3787646492054,0,0,0,0,0,0,0,0,2.55745266040366,0,34.63,50.33,62.96,55.09,6.666666666666667,1,1,0,0,11,13,5,1,1912,58548.52399265847,57789.25371103558,0,0,4557.606277471815 -12558,15498,28225,-9,28223,28224,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-960.429542108055,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,2551,-103586.563108576,0,0,0,0 -12558,15499,28226,-9,28223,28224,1,1,20,0,0,0,2,2,-9,0,4,8.054138979870313,7.767972298796654,0,0,0,-878.7312705717409,0,2,2,2019,6,0,42,40,1,0,1,5.934229266611561,5.934229266611561,0,0,0,0,0,0,0,0,0,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,276,71188.57031506769,23277.25932384384,0,0,1165.041726866105 -12559,15500,28227,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.793713992307619,7.201606833994449,4.258882915845186,0,0,-955.3226869520272,0,2,2,2019,9,0,16,16,1,1,0,7.821491667005288,7.821491667005288,0,0,0,0,0,1,1,0,0,4.082624665094879,53,52,-9,-9,8,1,1,0,0,3,9,2,0,475,522765.9405324901,54040.72159819488,485569.1275233115,0,1190.150021064886 -12560,15501,28228,28229,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.082005430239144,8.223209793835753,7.851988384875939,51,1,69.73575044427912,0,3,3,2019,9,0,25,25,1,0,0,7.272128515490548,7.272128515490548,1,0,0,0,27,1,1,0,0,8.174720513985195,56.94,43.99,51.82,11.85,8.333333333333334,1,1,0,0,6,2,3,1,1633.5,938164.1778541035,472412.9133904402,249647.8368218304,0,2982.868879246018 -12560,15501,28229,28228,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,51,-1,140.0417030700945,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,21.96224641174243,0,0,1,1,0,0,0,51.82,11.85,56.94,43.99,1.666666666666667,1,1,0,0,0,2,3,1,1633.5,938164.1778541035,472412.9133904402,249647.8368218304,0,2982.868879246018 -12561,15502,28230,28231,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,53,-1,-79.1293116079332,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,1.004223435123781,0,0,1,1,0,0,0,44.07,39.47,56.1,49.93,5,1,1,0,0,0,6,4,1,270,1097296.282852739,621940.9108517943,258736.9783721604,0,3817.953341977356 -12561,15502,28231,28230,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.262590457796831,8.599060843610163,53,1,-144.7574095898382,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.938317195452003,8.822896784613647,56.1,49.93,44.07,39.47,8.333333333333334,1,1,0,0,0,6,4,1,270,1097296.282852739,621940.9108517943,258736.9783721604,0,3817.953341977356 -12562,15503,28232,-9,28233,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.4463407961593,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,1414,0,0,0,0,1648.157059691932 -12562,15503,28233,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,2,0,0,0,0,0,-985.0618111260573,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.66,35.81,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1414,0,0,0,0,1648.157059691932 -12562,15503,28234,-9,28233,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.608476473012,-9,2,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.07,59.39,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1414,0,0,0,0,1648.157059691932 -12563,15504,28235,-9,28236,28239,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.155337052845,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,570.4,340054.9096326752,62835.721793284,325253.625241174,196742.0494583615,3216.326091173584 -12563,15504,28236,28239,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.041614511117629,7.816914819566681,0,21,-3,72.57026576114211,0,2,2,2019,12,1,33,33,1,1,0,11.90063595388163,11.90063595388163,0,0,0,0,0,1,1,0,2.992676424015645,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,11,2,4,1,570.4,340054.9096326752,62835.721793284,325253.625241174,196742.0494583615,3216.326091173584 -12563,15504,28237,-9,28236,28239,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.960528954841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,570.4,340054.9096326752,62835.721793284,325253.625241174,196742.0494583615,3216.326091173584 -12563,15504,28238,-9,28236,28239,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-997.0447821386105,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,570.4,340054.9096326752,62835.721793284,325253.625241174,196742.0494583615,3216.326091173584 -12563,15504,28239,28236,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.4386999776689,8.543218736525892,0,9,3,-15.77871459170387,0,-9,-9,2019,10,0,78,44,1,0,0,6.660922162774987,6.660922162774987,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,7,2,4,1,570.4,340054.9096326752,62835.721793284,325253.625241174,196742.0494583615,3216.326091173584 -12564,15505,28240,28242,-9,-9,1,0,52,0,1,0,1,1,-9,0,1,7.112821197988747,7.56850382971766,0,9,8,120.3964948023378,0,2,2,2019,8,1,30,32,1,1,0,5.514441303817697,5.514441303817697,0,0,0,0,0,1,1,0,0,0,50.75,31.34,48.76,53.24,8.333333333333334,1,1,0,1,8,10,2,0,746,-33033.14682413634,0,0,0,734.1446707954393 -12564,15505,28241,-9,28240,28242,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.8958620397035,-9,1,2,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,27.65,54.97,-9,-9,1.666666666666667,1,1,0,0,0,10,2,0,746,-33033.14682413634,0,0,0,734.1446707954393 -12564,15505,28242,28240,-9,-9,1,1,44,0,1,0,2,2,-9,1,4,0,0,0,9,-8,2.992423475742935,0,2,2,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,1.583267307735746,0,48.76,53.24,50.75,31.34,8.333333333333334,1,1,0,0,10,10,2,0,746,-33033.14682413634,0,0,0,734.1446707954393 -12564,15506,28243,-9,28240,28242,1,1,20,0,1,0,2,2,-9,0,4,7.389813524828172,7.653003832682833,0,0,0,-1063.750396616925,0,1,2,2019,11,0,30,48,1,2,1,6.037045063453315,6.037045063453315,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,1,10,3,0,1231,25153.16415462297,6836.807519544965,0,0,644.1593156395595 -12565,15507,28244,28245,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,8.430343779403387,8.524244174226249,0,7,-2,39.64637074695874,0,3,3,2019,7,0,39,39,1,0,0,12.90137207567313,12.90137207567313,0,0,0,0,0,1,1,0,0,0,51.08,45.97,53.81,53.56,8.333333333333334,1,1,0,0,7,1,4,1,629.6666666666666,696960.7728013877,451309.6563833912,281750.6900618498,171606.133562944,3367.852328181452 -12565,15507,28245,28244,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.149632054418564,8.352234414553067,0,7,2,-95.78281065132168,0,3,3,2019,7,0,35,35,1,0,0,14.80082546617648,14.80082546617648,0,0,0,0,0,1,1,0,2.326664428962919,0,53.81,53.56,51.08,45.97,8.333333333333334,1,1,0,0,7,1,4,1,629.6666666666666,696960.7728013877,451309.6563833912,281750.6900618498,171606.133562944,3367.852328181452 -12565,15507,28246,-9,28245,28244,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.62172655236,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,629.6666666666666,696960.7728013877,451309.6563833912,281750.6900618498,171606.133562944,3367.852328181452 -12566,15508,28247,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.837230033691335,7.89266735736807,0,0,0,-993.2616429772271,0,-9,-9,2019,10,0,47,44,1,0,0,7.066295066915721,7.066295066915721,0,0,0,0,0,0,0,0,0,0,52.43,50.03,-9,-9,6.666666666666667,1,1,0,0,7,6,4,0,411,-57215.95257003534,0,0,0,1405.650529252982 -12567,15509,28248,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.545707284274108,8.835894102557969,0,0,0,-1095.228413399658,-9,2,2,2019,10,0,37,0,1,0,0,17.48155834069768,17.48155834069768,0,0,0,0,0,0,0,0,1.112386584819301,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1011,74274.76132785024,0,0,0,2017.040989811832 -12568,15510,28249,28250,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,5,-3,-77.21671369942511,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.077125251349898,0,57.4,24.9,54.62,37.47,8.333333333333334,1,1,0,0,0,5,3,1,773.5,832470.5798852558,530574.8997427772,128780.1905225857,0,2853.628880631591 -12568,15510,28250,28249,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.582858624262599,8.0739333364057,5,3,-100.7530717954061,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,8.44876541090731,54.62,37.47,57.4,24.9,8.333333333333334,1,1,0,0,1,5,3,1,773.5,832470.5798852558,530574.8997427772,128780.1905225857,0,2853.628880631591 -12569,15511,28251,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,1,0,7.523173340805694,7.686849539917195,0,0,-997.0159730851929,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,14.7140718624444,0,146.5330282319329,0,1,1,0,3.418059268717931,7.684250236595221,53.23,7.33,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,2246,971762.7567613116,291763.976820696,506049.9086463249,0,2040.523783196623 -12570,15512,28252,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.119521792888511,6.06437596113854,0,0,0,-1128.293466331152,0,2,2,2019,10,0,6,0,1,0,0,8.706549507016684,8.706549507016684,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,3,4,0,0,4,8,2,0,322,-18953.34005910679,0,0,0,615.5768040743903 -12570,15513,28253,-9,28252,-9,1,0,27,0,0,0,2,2,-9,0,4,7.866937362138054,7.714936293148019,0,0,0,-954.4382777169725,0,2,2,2019,11,0,38,35,1,2,1,8.809101931202147,8.809101931202147,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,0,6,8,3,0,562,382926.2446794601,0,0,0,1064.460964847908 -12571,15514,28254,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,7.417095486837208,7.324043993167126,0,0,-1086.641046732046,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.854245616878864,7.371904592447688,46.15,14.39,-9,-9,10,1,1,0,0,0,4,3,1,1134,640477.6378575214,391292.2753292893,132722.545724208,0,1172.730992420957 -12572,15515,28255,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.687403225751238,9.317899453299541,0,0,0,-991.8835353075615,0,3,3,2019,8,0,50,70,1,0,0,50.16238840128097,50.16238840128097,0,0,0,0,0,0,0,0,8.444983797242537,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,945,866429.811915698,981180.0245460505,118958.8848231718,165256.4894748143,7555.334447685235 -12573,15516,28256,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.332343849979436,8.411394070476025,0,0,0,-965.2888400469208,0,2,2,2019,7,0,40,35,1,0,0,13.92843731835647,13.92843731835647,0,0,0,0,0,0,0,0,5.398347568217078,0,57.16,56.15,-9,-9,10,1,1,0,0,5,9,5,1,758,-36033.72774261124,7118.843482893462,0,0,1245.54148755238 -12574,15517,28257,28259,-9,-9,1,1,63,0,2,0,2,2,-9,0,3,8.002080898926307,7.978560982985933,0,10,22,.4185004029031785,0,2,2,2019,7,0,38,37,1,0,0,9.753003515183018,9.753003515183018,0,0,0,0,0,1,1,0,0,0,48.14,44.28,32.68,55.45,6.666666666666667,3,4,0,0,9,6,3,0,720.25,93155.44924381313,112898.248132299,0,0,2720.248556621008 -12574,15517,28258,-9,28259,28257,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.4171494750027,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,3,0,720.25,93155.44924381313,112898.248132299,0,0,2720.248556621008 -12574,15517,28259,28257,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.260011391054245,7.572944395404087,0,10,-22,-61.71588216068689,0,3,3,2019,13,2,37,40,1,2,0,6.240540496628377,6.240540496628377,0,0,0,0,0,1,1,0,0,0,32.68,55.45,48.14,44.28,3.333333333333333,3,4,0,1,3,6,3,0,720.25,93155.44924381313,112898.248132299,0,0,2720.248556621008 -12574,15517,28260,-9,28259,28257,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.661231975718,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,6,3,0,720.25,93155.44924381313,112898.248132299,0,0,2720.248556621008 -12575,15518,28261,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-985.3080868973572,0,-9,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,27.8,37.71,-9,-9,3.333333333333333,1,1,1,1,0,8,1,0,596,51299.67843597354,0,0,0,1949.399047549123 -12576,15519,28262,28263,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,26,1,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,63.89,25.79,5,1,1,0,0,0,9,1,0,1924,-136931.8872869779,0,0,0,888.2935052658904 -12576,15519,28263,28262,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,26,-1,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.89,25.79,62.42,32.41,8.333333333333334,1,1,1,0,0,9,1,0,1924,-136931.8872869779,0,0,0,888.2935052658904 -12577,15520,28264,28265,-9,-9,1,0,31,1,3,0,1,1,-9,0,3,0,0,0,11,-5,25.81668178294652,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,47.94,53.79,8.333333333333334,4,5,0,0,0,5,4,1,746.2,127279.2071522545,-42491.33974480678,288968.3145876458,170659.0878975402,3092.321858537385 -12577,15520,28265,28264,-9,-9,1,1,36,1,3,0,1,1,-9,0,3,8.96784176156487,8.928899717080498,0,11,5,-77.13230601252732,0,2,2,2019,9,0,40,40,1,0,0,25.06343005765057,25.06343005765057,0,0,0,0,0,1,1,0,0,0,47.94,53.79,54.96,53.17,3.333333333333333,4,5,0,0,12,5,4,1,746.2,127279.2071522545,-42491.33974480678,288968.3145876458,170659.0878975402,3092.321858537385 -12577,15520,28266,-9,28264,28265,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.0643535695065,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,5,-9,0,0,5,4,1,746.2,127279.2071522545,-42491.33974480678,288968.3145876458,170659.0878975402,3092.321858537385 -12577,15520,28267,-9,28264,28265,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-882.5679672828984,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,5,4,1,746.2,127279.2071522545,-42491.33974480678,288968.3145876458,170659.0878975402,3092.321858537385 -12577,15520,28268,-9,28264,28265,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.418570414979,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,5,-9,0,0,5,4,1,746.2,127279.2071522545,-42491.33974480678,288968.3145876458,170659.0878975402,3092.321858537385 -12578,15521,28269,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-938.6186154464467,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,.7042118335936962,0,1,1,0,0,0,37.18,19.54,-9,-9,5,1,1,0,1,0,12,1,0,86,9876.810187264855,0,0,0,1373.857587823554 -12579,15522,28270,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1062.00479918244,0,2,3,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,1,0,10,6,1,1,425,42686.73561413734,0,0,0,0 -12580,15523,28271,-9,28272,28274,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.333279983804,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,0,785.5,15246.248672141,81284.97050793328,199908.1877414462,139953.0163771625,3274.696859579004 -12580,15523,28272,28274,-9,-9,1,0,43,0,2,0,2,2,-9,1,2,7.747128586848086,7.631892980326372,0,15,-1,63.77801715899587,0,2,2,2019,7,0,30,30,1,0,0,10.072005677402,10.072005677402,0,0,0,0,42,1,1,0,0,0,55.2,49.4,24.6,44.73,8.333333333333334,1,1,0,0,3,4,2,0,785.5,15246.248672141,81284.97050793328,199908.1877414462,139953.0163771625,3274.696859579004 -12580,15523,28273,-9,28272,28274,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.542570895836,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,2,0,785.5,15246.248672141,81284.97050793328,199908.1877414462,139953.0163771625,3274.696859579004 -12580,15523,28274,28272,-9,-9,1,1,44,0,2,0,3,3,-9,1,1,0,0,0,15,1,12.064978219268,0,3,3,2019,36,12,0,52,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,24.6,44.73,55.2,49.4,0,2,3,0,1,8,4,2,0,785.5,15246.248672141,81284.97050793328,199908.1877414462,139953.0163771625,3274.696859579004 -12581,15524,28275,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.0944835730585,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.81,37.12,-9,-9,10,1,1,0,0,0,11,1,1,1890,-78207.34666804115,0,0,0,919.6696333458435 -12582,15525,28276,28277,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,5.74833152799272,6.055586922374652,42,-11,187.7095014331115,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.870642325184562,57.06,57.76,54.72,22.47,1.666666666666667,1,1,0,0,0,8,2,0,504.5,61850.26170146732,77536.09156495886,155189.5202268521,24312.6934471811,1459.048631649634 -12582,15525,28277,28276,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,2.753523601233639,2.764127801184092,42,11,-26.83372001921795,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,26.51561409850257,5.919168275747939,0,0,1,1,0,0,3.128470283087264,54.72,22.47,57.06,57.76,8.333333333333334,1,1,0,0,0,8,2,0,504.5,61850.26170146732,77536.09156495886,155189.5202268521,24312.6934471811,1459.048631649634 -12582,15526,28278,-9,28276,28277,1,1,26,0,0,0,1,1,-9,0,4,6.479941904518656,6.239531090725152,0,0,0,-949.258988172551,-9,2,2,2019,10,0,35,0,1,1,0,2.161293492480636,2.161293492480636,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,1,8,2,0,733,-2995.911719655124,0,0,0,-350.1472467808771 -12583,15527,28279,28280,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,48,-2,-82.52847152578163,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.96,53.17,35.53,28.54,10,1,1,0,0,7,11,2,1,485.5,263840.7034426384,39767.42774048821,116481.2973401974,0,932.3850258277469 -12583,15527,28280,28279,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.637422257831409,6.53593280125997,48,2,59.89711941154389,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.531524782694166,35.53,28.54,54.96,53.17,5,1,1,0,0,0,11,2,1,485.5,263840.7034426384,39767.42774048821,116481.2973401974,0,932.3850258277469 -12584,15528,28281,28282,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,9.128254228215551,8.897929186928797,0,20,3,-78.50746162110434,0,2,2,2019,16,4,50,55,1,4,0,19.87099297199826,19.87099297199826,0,0,0,0,2,1,1,0,8.28518175563449,0,27.81,65.69,45.91,59.89,5,1,1,0,0,10,6,5,1,860,59742.49333077663,51133.39264584138,0,0,5980.848106418394 -12584,15528,28282,28281,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.087806460049807,8.016048888426088,0,20,-3,22.33137714006346,0,2,2,2019,15,3,30,28,1,3,0,8.840553442519585,8.840553442519585,0,0,0,0,0,1,1,0,4.25929669894284,0,45.91,59.89,27.81,65.69,8.333333333333334,1,1,0,0,10,6,5,1,860,59742.49333077663,51133.39264584138,0,0,5980.848106418394 -12585,15529,28283,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.0033070608357,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.38,25.53,-9,-9,10,1,1,0,0,0,13,1,0,393,-56572.3195453692,0,0,0,1802.951443698687 -12586,15530,28284,28285,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.329242987656549,6.667379514623287,49,-1,1.162773644859989,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.571691920629518,6.532642399056456,48.02,37.72,51.83,57.2,5,1,1,0,0,0,9,4,1,531.5,1516033.98462416,814935.0794363737,565458.9964724139,0,3958.69077059915 -12586,15530,28285,28284,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.644296939102031,8.392985308266635,49,1,-15.26814576358268,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.616915142889663,8.480253351535541,51.83,57.2,48.02,37.72,8.333333333333334,1,1,0,0,4,9,4,1,531.5,1516033.98462416,814935.0794363737,565458.9964724139,0,3958.69077059915 -12587,15531,28286,-9,28288,28287,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1100.319897159374,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,3,1,544.3333333333334,6669.913177258321,27847.01909811627,0,0,2984.432163642267 -12587,15531,28287,28288,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.444060953498356,8.751414124302581,0,19,0,32.11184660656275,0,-9,-9,2019,9,1,30,30,1,1,0,20.70898945239767,20.70898945239767,0,0,0,0,2,1,1,0,0,0,49.04,55.86,27.64,19.88,8.333333333333334,1,1,0,0,9,7,3,1,544.3333333333334,6669.913177258321,27847.01909811627,0,0,2984.432163642267 -12587,15531,28288,28287,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,19,0,73.38742871672306,0,2,2,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,19.88,49.04,55.86,5,4,2,0,0,0,7,3,1,544.3333333333334,6669.913177258321,27847.01909811627,0,0,2984.432163642267 -12587,15532,28289,-9,28288,28287,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-912.0047215341435,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,.2146120567648552,0,37.41,54.5,-9,-9,8.333333333333334,4,2,0,0,0,7,1,1,704,174552.2905649724,0,0,0,411.9487246034915 -12588,15533,28290,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.192066434605706,5.97403190581595,0,0,-1021.035787704042,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,2.466247747829209,9.810678026300744,25.0609061496811,7,1,1,0,0,6.382826025376651,41.63,23.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,129,-9347.025934181933,91936.50275214807,67553.30548142178,0,1295.605405105723 -12589,15534,28291,28292,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.441052352807576,8.419986651264988,0,4,-3,58.66890653562717,0,-9,-9,2019,18,5,46,45,1,5,0,10.18809088426755,10.18809088426755,0,0,0,0,0,0,0,0,4.677723862284323,0,27.73,64.27,57.16,56.15,1.666666666666667,1,1,0,0,7,4,5,0,395.5,38644.55129248264,32897.72590948991,0,0,2946.720297054777 -12589,15534,28292,28291,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.344497082331589,8.468024267337285,0,4,3,-32.98953197511135,0,2,2,2019,7,0,39,37,1,0,0,11.03462045724156,11.03462045724156,0,0,0,0,0,0,0,0,0,0,57.16,56.15,27.73,64.27,8.333333333333334,1,1,0,0,10,4,5,0,395.5,38644.55129248264,32897.72590948991,0,0,2946.720297054777 -12590,15535,28293,-9,28295,28294,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.5923183226357,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,813.25,-12829.3487693628,-5248.681556050566,0,0,1412.65860985344 -12590,15535,28294,28295,-9,-9,1,1,49,0,2,0,3,3,-9,0,5,6.0772219398666,6.351645481219163,0,18,-6,117.8885352023263,0,3,3,2019,9,0,50,60,1,0,0,1.002474571510479,1.002474571510479,0,0,0,0,27,1,1,0,0,0,56.47,59.4,45.81,61.51,8.333333333333334,1,1,0,1,13,2,2,1,813.25,-12829.3487693628,-5248.681556050566,0,0,1412.65860985344 -12590,15535,28295,28294,-9,-9,1,0,55,0,2,0,2,2,-9,0,5,6.855684538203571,6.86141922198609,0,18,6,-14.93451058806419,0,2,3,2019,13,2,8,8,1,2,0,13.97663890810531,13.97663890810531,0,0,0,0,14.5,1,1,0,0,0,45.81,61.51,56.47,59.4,5,1,1,0,1,7,2,2,1,813.25,-12829.3487693628,-5248.681556050566,0,0,1412.65860985344 -12590,15535,28296,-9,28295,28294,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.392080126889,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,813.25,-12829.3487693628,-5248.681556050566,0,0,1412.65860985344 -12591,15536,28297,28298,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,34,1,0,0,3,3,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,44.72,32.53,23.69,24.46,1.666666666666667,1,1,0,0,0,2,1,1,913.5,-2607.227343546605,0,0,0,2645.433983542774 -12591,15536,28298,28297,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,34,-1,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,23.69,24.46,44.72,32.53,0,1,1,0,1,0,2,1,1,913.5,-2607.227343546605,0,0,0,2645.433983542774 -12592,15537,28299,28300,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.502650383744206,7.633559244645442,6,2,98.60748732072945,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,.7643102407053386,0,0,1,1,0,4.056858228586381,7.430074027284404,47.59,40.93,62.93,26.18,8.333333333333334,1,1,0,0,0,2,3,1,193.5,871123.6147220731,623618.7180074049,190232.3027104664,0,2751.331715199459 -12592,15537,28300,28299,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.274139702514671,7.284772184111299,6,-2,-15.68409905784844,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,7.373984590245994,62.93,26.18,47.59,40.93,8.333333333333334,1,1,0,0,0,2,3,1,193.5,871123.6147220731,623618.7180074049,190232.3027104664,0,2751.331715199459 -12593,15538,28301,28302,-9,-9,1,1,22,0,0,0,3,3,-9,0,5,0,0,0,1,4,0,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,51.99,47.91,6.666666666666667,1,1,1,0,0,6,1,0,175.5,0,0,0,0,245.5437846211154 -12593,15538,28302,28301,-9,-9,1,0,18,0,0,0,2,2,1,0,4,0,0,0,1,-4,0,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.99,47.91,59.43,58.05,8.333333333333334,1,1,1,0,0,6,1,0,175.5,0,0,0,0,245.5437846211154 -12594,15539,28303,-9,28305,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-988.1982297796408,-9,1,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.67,49.57,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,1761,156314.3931656223,146379.0686947347,0,0,2172.405095791237 -12594,15539,28304,-9,28305,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1055.328629150101,-9,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,1761,156314.3931656223,146379.0686947347,0,0,2172.405095791237 -12594,15539,28305,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.783519060694907,8.476521149715795,0,0,0,-947.0534589556254,0,3,1,2019,11,0,49,50,1,0,0,14.88274849589583,14.88274849589583,0,0,0,0,2,0,0,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,1761,156314.3931656223,146379.0686947347,0,0,2172.405095791237 -12595,15540,28306,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1033.60656456896,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,11.13633987580605,0,0,1,1,0,0,0,51,35,-9,-9,5,1,1,0,0,0,10,1,1,581,-153637.4383813152,0,0,0,1498.747425453535 -12596,15541,28307,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,0,0,-880.0084780773617,0,2,1,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,300,178343.3272893089,-65082.88371021794,172043.5931918866,32730.92154962712,-41.55883394170982 -12597,15542,28308,-9,28309,28310,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.6311437953643,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,859.75,178276.3242434727,-15579.02282014878,141238.2937337254,23905.17587619159,4352.178922776297 -12597,15542,28309,28310,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,7.298922729764793,7.168968129347935,5.19774024256203,8,3,-54.97283122748028,0,1,2,2019,9,0,21,21,1,0,0,5.927151226311756,5.927151226311756,0,0,0,0,0,1,1,0,7.378567960573745,0,51.83,57.2,46.81,50.9,8.333333333333334,1,1,0,0,9,13,4,1,859.75,178276.3242434727,-15579.02282014878,141238.2937337254,23905.17587619159,4352.178922776297 -12597,15542,28310,28309,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,8.771169460302682,8.449082230171255,0,8,-3,61.98972912180479,0,2,2,2019,13,3,38,38,1,3,0,14.49535445713517,14.49535445713517,0,0,0,0,0,1,1,0,6.42952938283633,0,46.81,50.9,51.83,57.2,3.333333333333333,1,1,0,0,8,13,4,1,859.75,178276.3242434727,-15579.02282014878,141238.2937337254,23905.17587619159,4352.178922776297 -12597,15542,28311,-9,28309,28310,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.60922373063,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,859.75,178276.3242434727,-15579.02282014878,141238.2937337254,23905.17587619159,4352.178922776297 -12598,15543,28312,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1046.801632560878,0,3,-9,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,71.5,1,1,0,0,0,53.05,28.78,-9,-9,8.333333333333334,1,1,0,0,10,8,1,0,766,184571.6931208264,0,176610.7188625149,0,1449.367935429831 -12599,15544,28313,28314,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.089322838012258,8.06263627701499,8,0,.3862029805294012,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.670928770436134,7.885377602949304,51.24,58.84,58.62,52.91,10,1,1,0,0,7,7,5,1,645.5,2978552.424878114,1633697.769882387,1033773.849146669,0,6438.307299521408 -12599,15544,28314,28313,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,8.797538729064556,8.892110382201972,8,0,72.48623750652135,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.737583493864842,8.807366570785645,58.62,52.91,51.24,58.84,8.333333333333334,1,1,0,0,9,7,5,1,645.5,2978552.424878114,1633697.769882387,1033773.849146669,0,6438.307299521408 -12599,15545,28315,-9,28313,28314,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1005.872525651458,0,1,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,1.119508420392143,0,27.5,51.38,-9,-9,1.666666666666667,1,1,1,1,4,7,1,1,768,-189971.9010236721,0,0,0,50.79464341511621 -12600,15546,28316,28317,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.984235782771494,7.312612033422425,5.752839303001948,10,-3,-13.94983764421471,0,-9,3,2019,11,0,16,16,1,0,0,10.1722491628295,10.1722491628295,1,0,0,0,0,1,1,0,5.931576905042165,5.54124524536218,58.32,50.22,40.67,32.92,8.333333333333334,1,1,0,0,12,4,2,1,977.5,591233.143945843,308936.8925223841,169113.4171286551,0,1542.133566331348 -12600,15546,28317,28316,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.025741170611841,4.600264083556307,46,3,-7.935203472080818,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.678871221890243,5.057278049887865,40.67,32.92,58.32,50.22,8.333333333333334,1,1,0,0,0,4,2,1,977.5,591233.143945843,308936.8925223841,169113.4171286551,0,1542.133566331348 -12601,15547,28318,28319,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,6.494985272878696,6.705231774312143,39,-7,-166.5719308418403,0,2,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3.570384027787925,6.480657225944729,36.35,53.49,47.31,50.2,6.666666666666667,1,1,0,0,8,2,4,1,427.5,1531038.277686029,935923.6969384205,257958.5177480776,0,2083.834628888345 -12601,15547,28319,28318,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,8.178861024892809,8.420435791916962,38,7,-170.7614702732731,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.834327012207517,7.793169824040011,47.31,50.2,36.35,53.49,8.333333333333334,1,1,0,0,5,2,4,1,427.5,1531038.277686029,935923.6969384205,257958.5177480776,0,2083.834628888345 -12602,15548,28320,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-910.453487812362,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.47,34.82,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,126,213604.461032369,0,115816.5050304097,0,1174.7654508722 -12602,15549,28321,-9,28320,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,0,0,-942.2112209801439,0,3,-9,2019,19,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,26.78,41.4,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,313,33573.38609393574,0,0,0,544.9164391497792 -12603,15550,28322,28324,-9,-9,1,0,31,0,2,0,1,1,-9,0,2,0,0,0,6,-1,0,1,-9,-9,2019,19,8,0,37,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.82,44.38,38.57,64.48,8.333333333333334,1,1,0,1,3,2,1,0,668.5,14407.92510446894,0,0,0,3119.078837617199 -12603,15550,28323,-9,28322,28324,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.3183623477312,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,668.5,14407.92510446894,0,0,0,3119.078837617199 -12603,15550,28324,28322,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,0,0,0,6,1,0,0,1,3,2019,12,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,64.48,30.82,44.38,10,1,1,1,1,3,2,1,0,668.5,14407.92510446894,0,0,0,3119.078837617199 -12603,15550,28325,-9,28322,28324,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.199132435043,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,668.5,14407.92510446894,0,0,0,3119.078837617199 -12604,15551,28326,-9,28329,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.687798441564,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,0,580.5,283985.85220473,95082.78685537633,144964.5186494803,122913.6263742428,7057.193173831934 -12604,15551,28327,-9,28329,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-982.2001632815351,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,5,0,580.5,283985.85220473,95082.78685537633,144964.5186494803,122913.6263742428,7057.193173831934 -12604,15551,28328,-9,28329,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1000.479497532145,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,5,0,580.5,283985.85220473,95082.78685537633,144964.5186494803,122913.6263742428,7057.193173831934 -12604,15551,28329,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,2,9.393949515030048,9.232281119503703,0,0,0,-1032.543083340896,0,2,1,2019,20,8,16,16,1,8,0,76.61461900142062,76.61461900142062,0,0,0,0,0,1,1,0,0,0,17.82,58.4,-9,-9,1.666666666666667,1,1,0,1,1,5,5,0,580.5,283985.85220473,95082.78685537633,144964.5186494803,122913.6263742428,7057.193173831934 -12605,15552,28330,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.985251277689036,8.335525848773502,0,0,0,-1037.124976022621,0,-9,1,2019,8,0,48,43,1,0,0,9.547215986298241,9.547215986298241,0,0,0,0,0,0,0,0,2.657722157022335,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,1,7,4,0,1414,44510.12178669521,3836.610564736463,0,0,1375.732529632321 -12606,15553,28331,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.449814431217316,7.732020810090106,0,0,0,-940.6659221601822,0,3,3,2019,11,0,40,40,1,0,0,6.17566204766078,6.17566204766078,0,0,0,0,2,1,1,0,0,0,44.94,49.91,-9,-9,5,1,1,0,0,5,2,3,1,249.5,17894.52639883946,-66963.75124151714,0,0,1649.157866778393 -12606,15553,28332,-9,28331,-9,1,0,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1091.864851495218,-9,2,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.39,44.67,-9,-9,5,1,1,0,0,0,2,3,1,249.5,17894.52639883946,-66963.75124151714,0,0,1649.157866778393 -12607,15554,28333,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1000.582810371599,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.671999573406056,0,58.66,25.58,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,248,92637.99104803034,0,95535.7425915135,0,994.4848302392782 -12608,15555,28334,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.163367821128871,8.232162966066921,0,6,-3,-157.0751325112619,0,1,1,2019,9,0,43,39,1,0,0,11.6731803326966,11.6731803326966,0,0,0,0,0,0,0,0,0,0,54.1,59.11,59.29,49.68,8.333333333333334,2,3,0,0,5,10,5,1,397,-73446.57570743952,1779.238860759443,0,0,1240.16733725263 -12608,15556,28335,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.175692439657993,8.204689397267936,0,6,3,-54.79881640484194,0,-9,-9,2019,1,0,41,43,1,0,0,11.29594866230513,11.29594866230513,0,0,0,0,0,0,0,0,1.095987286789194,0,59.29,49.68,54.1,59.11,8.333333333333334,1,1,0,0,7,10,5,1,1722,68270.52860780977,102941.6932115694,0,0,2012.306069382801 -12609,15557,28336,28337,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.180388906447979,7.110172624951718,36,10,-108.1143178401365,0,2,2,2019,15,3,0,0,4,3,0,0,0,1,0,4.178226259811394,0,2,1,1,0,0,6.817478705574593,39.56,34.97,63.54,37.2,6.666666666666667,1,1,0,0,0,9,2,0,1099,261457.4539196733,225170.9139974208,0,0,2177.629560375569 -12609,15557,28337,28336,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,36,-10,-29.54067781987971,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.257977090313,0,63.54,37.2,39.56,34.97,10,1,1,0,0,4,9,2,0,1099,261457.4539196733,225170.9139974208,0,0,2177.629560375569 -12610,15558,28338,28341,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,9.219479066560618,9.199363862154303,0,8,0,-77.47538877065929,0,3,2,2019,10,0,40,40,1,0,0,23.62982466506018,23.62982466506018,0,0,0,0,0,1,1,0,0,0,40.74,51.69,26.91,43.55,6.666666666666667,1,1,0,0,8,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12610,15558,28339,-9,28341,28338,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-868.1227918409029,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12610,15558,28340,-9,28341,28338,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.7873157170479,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12610,15558,28341,28338,-9,-9,1,0,39,0,3,0,1,1,-9,0,1,8.860835383150965,8.852652130751556,0,8,0,-10.02965871426922,0,3,3,2019,22,9,37,53,1,9,0,15.98191818773148,15.98191818773148,0,0,0,0,2,1,1,0,0,0,26.91,43.55,40.74,51.69,5,1,1,0,0,10,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12610,15558,28342,-9,28341,28338,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1123.580313232247,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12610,15558,28343,-9,-9,28338,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-985.2613731339603,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,5,1,657.5,291582.649910389,88035.3341895138,253442.8277957535,198836.3812796054,4433.38606566469 -12611,15559,28344,28345,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,7.763815297080002,7.988868947930592,0,3,0,-172.9101549211252,0,2,2,2019,7,0,42,50,1,0,0,9.273915867353292,9.273915867353292,0,0,0,0,0,0,0,0,0,0,60.02,56.42,38.51,59.43,8.333333333333334,1,1,0,0,3,10,4,1,947.5,58485.80927058031,16010.94754054321,0,0,2297.155434354263 -12611,15559,28345,28344,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.194629075437165,7.805654781137646,0,3,0,38.19212521395593,0,2,2,2019,14,3,37,39,1,3,0,9.425491359731321,9.425491359731321,0,0,0,0,0,0,0,0,0,0,38.51,59.43,60.02,56.42,6.666666666666667,1,1,0,0,13,10,4,1,947.5,58485.80927058031,16010.94754054321,0,0,2297.155434354263 -12612,15560,28346,28347,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,46,-6,0,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,2.378740282504498,0,0,1,1,0,0,0,35.21,29.8,58.32,50.22,8.333333333333334,1,1,0,0,0,2,1,0,308.5,133065.6734780611,-52822.70534760813,141975.9984089457,0,2322.40364713568 -12612,15560,28347,28346,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,47,6,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.32,50.22,35.21,29.8,10,1,1,0,0,0,2,1,0,308.5,133065.6734780611,-52822.70534760813,141975.9984089457,0,2322.40364713568 -12613,15561,28348,28349,-9,-9,1,0,57,0,1,0,2,2,-9,1,1,0,0,0,9,5,71.09163028437041,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,50.84,10.67,49,50,6.666666666666667,1,1,0,1,0,5,3,1,1105.333333333333,111597.775357445,32385.1057093448,88121.5296011531,10051.06568814125,1601.494923016366 -12613,15561,28349,28348,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.028658543932224,8.070282722156211,0,9,-5,-6.794843924813934,0,-9,-9,2019,11,0,39,39,1,1,0,8.424063675097415,8.424063675097415,0,0,0,0,0,1,1,0,0,0,49,50,50.84,10.67,7,1,1,0,0,1,5,3,1,1105.333333333333,111597.775357445,32385.1057093448,88121.5296011531,10051.06568814125,1601.494923016366 -12613,15561,28350,-9,28348,28349,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.268631242649,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,3,1,1105.333333333333,111597.775357445,32385.1057093448,88121.5296011531,10051.06568814125,1601.494923016366 -12613,15562,28351,-9,28348,28349,1,1,18,0,1,0,2,2,-9,0,3,7.113739474017625,7.073163188286693,0,0,0,-934.0838729951295,0,2,2,2019,9,0,47,0,1,0,1,4.977886988584371,4.977886988584371,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,487,0,0,0,0,550.3916481926424 -12614,15563,28352,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.107958450143894,8.051502110651375,0,0,0,-955.574082013316,0,3,-9,2019,9,0,37,40,1,0,0,11.30007869094473,11.30007869094473,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,1590,127943.4430326554,10777.76294133779,9124.923260408003,54923.88937833346,995.1969925987054 -12615,15564,28353,28354,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.744837785384452,7.830673630156486,41,1,-121.1666878992943,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.047468147716142,7.371199347233153,56.94,49.53,40.47,55.65,10,1,1,0,0,0,4,4,0,523.5,2622482.341077852,1376356.682156716,377557.9667471249,0,3641.261175372318 -12615,15564,28354,28353,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.80045026516148,7.595408348432849,41,-1,133.2216601549761,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.661434055033545,7.717145665864215,40.47,55.65,56.94,49.53,10,1,1,0,0,0,4,4,0,523.5,2622482.341077852,1376356.682156716,377557.9667471249,0,3641.261175372318 -12616,15565,28355,-9,28356,28358,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.8067560005816,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,655.5,221976.5632963854,65062.85735340128,159218.9258337145,65905.61378943101,3325.316826819786 -12616,15565,28356,28358,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,7.890390625305156,7.993504325927454,0,9,-5,-140.5244554234243,0,-9,-9,2019,9,0,40,45,1,0,0,6.405209365320217,6.405209365320217,0,0,0,0,0,1,1,0,0,0,45.4,56.19,57.76,54.51,8.333333333333334,1,1,0,0,12,2,4,1,655.5,221976.5632963854,65062.85735340128,159218.9258337145,65905.61378943101,3325.316826819786 -12616,15565,28357,-9,28356,28358,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.786715016718,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,655.5,221976.5632963854,65062.85735340128,159218.9258337145,65905.61378943101,3325.316826819786 -12616,15565,28358,28356,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.820672128170651,8.305148373365933,0,9,5,74.16242328977596,0,-9,-9,2019,6,0,40,40,1,0,0,13.05205185920123,13.05205185920123,0,0,0,0,0,1,1,0,0,0,57.76,54.51,45.4,56.19,8.333333333333334,1,1,0,0,12,2,4,1,655.5,221976.5632963854,65062.85735340128,159218.9258337145,65905.61378943101,3325.316826819786 -12617,15566,28359,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.556204271979723,5.944110890103589,0,0,-942.1874895975062,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.432870255736475,6.109114780937184,52.75,47.35,-9,-9,10,1,1,0,0,0,7,2,1,831,504997.8506003994,-33650.96395100163,212136.2357373352,0,286.533047894155 -12618,15567,28360,28361,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.52288344912307,8.700162705269651,0,36,-2,-26.54695085399432,0,2,2,2019,11,0,37,37,1,0,0,15.11204188775124,15.11204188775124,0,0,0,0,42,1,1,0,2.822381633468519,0,49.04,55.86,39.84,36.02,1.666666666666667,1,1,0,0,8,9,4,1,467,614357.8507208624,156108.7721623441,324869.9746173233,0,2495.900827837394 -12618,15567,28361,28360,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,5.259920471175075,5.161561522778269,36,2,88.25704597169684,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,5.629240077592596,5.57480644354756,39.84,36.02,49.04,55.86,6.666666666666667,1,1,0,0,1,9,4,1,467,614357.8507208624,156108.7721623441,324869.9746173233,0,2495.900827837394 -12619,15568,28362,28364,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,20,-10,0,0,2,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,28.52,46.26,34.32,63.88,5,1,1,1,1,1,12,1,0,473.6666666666667,-31840.72704754074,0,0,0,512.4003806251075 -12619,15568,28363,-9,28364,28362,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-961.1112837530892,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,1,0,0,12,1,0,473.6666666666667,-31840.72704754074,0,0,0,512.4003806251075 -12619,15568,28364,28362,-9,-9,1,0,60,0,1,0,3,3,-9,0,5,0,0,0,20,10,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.32,63.88,28.52,46.26,8.333333333333334,1,1,1,1,0,12,1,0,473.6666666666667,-31840.72704754074,0,0,0,512.4003806251075 -12620,15569,28365,28366,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.530399633492268,5.747462790765278,7,-5,33.8376484496384,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.028634193175151,5.070307608035395,46.91,51.8,54.06,12.45,8.333333333333334,1,1,0,0,0,5,2,1,413,402196.8957430773,74799.05591525367,116480.8550177594,0,1357.508622788284 -12620,15569,28366,28365,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,4.902752216216017,4.846250533273341,7,5,127.4090262015053,0,3,3,2019,18,4,0,0,4,4,0,0,0,1,0,16.07907969172733,0,0,1,1,0,4.590526329716142,4.458040022171353,54.06,12.45,46.91,51.8,5,1,1,0,0,0,5,2,1,413,402196.8957430773,74799.05591525367,116480.8550177594,0,1357.508622788284 -12621,15570,28367,28368,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,8,-8,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,45.17,55.5,50.04,10,2,3,0,0,0,5,1,0,1355.5,425521.8448492605,0,320013.1137555169,0,1287.502785121617 -12621,15570,28368,28367,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,8,8,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.5,50.04,51.14,45.17,0,2,3,0,0,0,5,1,0,1355.5,425521.8448492605,0,320013.1137555169,0,1287.502785121617 -12622,15571,28369,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.338819131661655,8.016810433899815,0,0,0,-973.655363279002,0,-9,3,2019,6,0,39,39,1,0,0,12.42835378967398,12.42835378967398,0,0,0,.287331141553711,0,1,1,0,0,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,406,704173.7992284595,393007.3271873498,251250.474704902,0,2009.158902345041 -12623,15572,28370,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,9.050408820189768,8.768972651794462,0,0,-944.1759740295013,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,.5308045534770489,0,1,1,0,7.622198275462934,9.166852653833454,47.82,47.03,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,727,2229057.470826048,1558482.849168375,383545.408872117,0,6711.861244887849 -12624,15573,28371,28372,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.972124877169088,7.881974289623286,51,-1,-53.28340624351182,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.969265809161052,47.54,20.25,64.38,39.16,6.666666666666667,1,1,0,0,0,10,3,1,890.5,585358.4785522856,98637.55153743776,231795.5015121766,0,2399.104672709647 -12624,15573,28372,28371,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.346219358795776,5.400750846467447,51,1,-61.79013987721348,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.476954150003105,64.38,39.16,47.54,20.25,10,1,1,0,0,0,10,3,1,890.5,585358.4785522856,98637.55153743776,231795.5015121766,0,2399.104672709647 -12625,15574,28373,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1070.627829348364,0,2,1,2019,21,9,0,40,3,9,0,0,0,0,0,0,0,0,0,0,0,1.209414283073047,0,39.77,49.18,-9,-9,8.333333333333334,1,1,1,0,7,10,1,0,636,126353.5959957512,0,0,0,-32.83465535617579 -12625,15575,28374,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.630293730189049,8.743493309408429,0,0,0,-1072.703953285587,-9,-9,-9,2019,6,0,45,0,1,0,0,13.67052077003648,13.67052077003648,0,0,0,0,0,0,0,0,4.297169262243732,0,51.83,49.33,-9,-9,8.333333333333334,1,1,0,0,3,10,5,0,444,337754.5983452036,30910.88512208863,284047.1066854987,0,1967.130877062756 -12626,15576,28375,28376,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.510177874740479,7.616577152049891,0,21,6,116.1036778856807,0,3,2,2019,9,0,60,42,1,1,0,3.934961916823556,3.934961916823556,0,0,0,0,66,1,1,0,0,0,52,55,39.12,44.67,7,2,3,0,0,9,8,2,1,1049.6,-49904.7564383609,51238.79578204527,0,0,3259.404826874156 -12626,15576,28376,28375,-9,-9,1,0,37,0,3,0,2,2,-9,0,2,7.350605935900921,6.893127705491506,0,6,-6,-9.440753359610538,0,2,2,2019,16,3,40,37,1,3,0,3.187015541467026,3.187015541467026,0,0,0,0,86,1,1,0,7.418952786363241,0,39.12,44.67,52,55,8.333333333333334,2,3,0,0,3,8,2,1,1049.6,-49904.7564383609,51238.79578204527,0,0,3259.404826874156 -12626,15576,28377,-9,28376,28375,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.241252105897,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,1049.6,-49904.7564383609,51238.79578204527,0,0,3259.404826874156 -12626,15576,28378,-9,28376,28375,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.363108466404,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,1049.6,-49904.7564383609,51238.79578204527,0,0,3259.404826874156 -12626,15576,28379,-9,28376,28375,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-931.2547589290705,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,2,3,-9,0,0,8,2,1,1049.6,-49904.7564383609,51238.79578204527,0,0,3259.404826874156 -12626,15577,28380,-9,28376,28375,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1067.670404086772,-9,2,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,2,3,0,0,1,8,1,1,489,142689.4411671299,0,0,0,514.5590892207804 -12627,15578,28381,28382,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,0,0,49,-1,0,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,1.438913943903733,0,1,1,0,8.959676138971965,0,57.9,51.84,56.85,37.23,8.333333333333334,1,1,0,0,0,4,1,1,1082.5,234957.1868587612,0,90868.74440576577,0,6673.958575076544 -12627,15578,28382,28381,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,0,0,49,1,0,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.650873550996105,0,56.85,37.23,57.9,51.84,8.333333333333334,1,1,0,0,0,4,1,1,1082.5,234957.1868587612,0,90868.74440576577,0,6673.958575076544 -12628,15579,28383,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.913923814789644,9.048382861366644,8.305204407215392,0,0,-884.5559791261104,0,3,1,2019,15,6,42,0,1,6,0,15.49962047325854,15.49962047325854,0,0,0,0,0,1,1,0,8.058943203804841,7.989868044487165,42.22,50.91,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,501,3162806.609354702,1777317.263454699,591189.3789833833,0,5801.388704436287 -12629,15580,28384,28385,-9,-9,1,1,31,0,0,0,2,2,0,0,5,0,0,0,1,0,-68.63451113843759,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,4,4,4,1,667,-169468.5027422064,4854.376894068395,-9111.010695900084,22098.18660578791,1618.639052247316 -12629,15580,28385,28384,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.308988821168395,8.559946867869513,0,1,0,104.1230363968105,-9,-9,-9,2019,7,0,37,0,1,0,0,12.87395876143013,12.87395876143013,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,4,4,1,667,-169468.5027422064,4854.376894068395,-9111.010695900084,22098.18660578791,1618.639052247316 -12630,15581,28386,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.768153181568146,7.540933342486245,0,0,-973.162368562799,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.996788462713289,7.643740482400398,59.04,48.6,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,213,122687.425973349,50751.9023192207,22804.37654248706,0,2284.011668807108 -12631,15582,28387,28388,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.943955228237359,9.21748904479163,57,2,51.39061208198186,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.977360553515597,8.871221448474353,58.15,52.91,57.48,47.92,8.333333333333334,1,1,0,0,1,5,5,1,120.5,1883713.108623303,970328.6137654501,776693.8668062744,0,7917.363273009232 -12631,15582,28388,28387,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,6.803821090573287,7.070495390488632,57,-2,-113.859661414953,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.159367960647193,7.061855130847304,57.48,47.92,58.15,52.91,8.333333333333334,1,1,0,0,0,5,5,1,120.5,1883713.108623303,970328.6137654501,776693.8668062744,0,7917.363273009232 -12632,15583,28389,28390,-9,-9,1,0,42,1,2,0,2,2,-9,0,4,8.30232748901218,8.260669736126985,0,25,-4,-41.18271665473348,0,2,3,2019,8,0,39,37,1,0,0,11.80185371872918,11.80185371872918,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.21,50.72,8.333333333333334,1,1,0,0,12,5,5,1,812.6666666666666,495999.2769106589,209874.2845301513,183327.9457829736,65122.34074527495,4916.146879002382 -12632,15583,28390,28389,-9,-9,1,1,46,1,2,0,2,2,-9,0,3,9.259359664207821,9.188510519002248,0,25,4,-8.013843920377527,0,2,2,2019,23,11,53,48,1,11,0,20.08054145457988,20.08054145457988,0,0,0,0,0,1,1,0,1.732275934652313,0,42.21,50.72,54.79,55.86,3.333333333333333,1,1,0,0,12,5,5,1,812.6666666666666,495999.2769106589,209874.2845301513,183327.9457829736,65122.34074527495,4916.146879002382 -12632,15583,28391,-9,28389,28390,1,1,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.671688376782,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,5,1,812.6666666666666,495999.2769106589,209874.2845301513,183327.9457829736,65122.34074527495,4916.146879002382 -12632,15584,28392,-9,28393,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.233344212749,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,2,1,681.5,36518.72604462474,0,0,0,537.3121200234023 -12632,15584,28393,-9,28389,28390,1,0,20,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1015.180564574952,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,30.25,54.22,-9,-9,6.666666666666667,1,1,0,0,1,5,2,1,681.5,36518.72604462474,0,0,0,537.3121200234023 -12632,15585,28394,-9,28389,28390,1,0,19,1,2,0,2,2,1,0,4,7.671358065563572,7.660225320464065,0,0,0,-998.2604695552488,-9,2,2,2019,13,2,35,0,1,2,1,7.855013393900368,7.855013393900368,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,1239,107587.2684090604,101805.81828834,0,0,1074.376889169679 -12633,15586,28395,28396,-9,-9,1,1,90,0,0,0,3,3,-9,0,1,0,6.894917318436677,7.099075129371968,68,2,28.48306039482149,0,3,3,2019,16,3,0,0,4,3,0,0,0,1,13.13559272278512,27.4318261423287,133.0402083378243,0,1,1,0,0,6.700267387898293,36.09,21.88,44.6,37.64,3.333333333333333,1,1,0,0,0,10,2,1,588,244199.6460390526,41574.38309648538,298954.0752693397,0,2322.799158603848 -12633,15586,28396,28395,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,68,-2,120.3256180595913,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,.9243262415517297,0,74.5,1,1,0,0,0,44.6,37.64,36.09,21.88,6.666666666666667,1,1,0,0,0,10,2,1,588,244199.6460390526,41574.38309648538,298954.0752693397,0,2322.799158603848 -12634,15587,28397,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.270015382959256,8.231854472107186,0,0,0,-1113.480327266521,0,2,2,2019,9,0,60,40,1,0,0,7.07189609925096,7.07189609925096,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,5,11,4,0,926,-69238.67522295818,69926.48262282819,48882.10871111394,66992.90413292572,2126.543545091256 -12634,15588,28398,-9,28397,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-975.5786700706582,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,25.53,59.73,-9,-9,5,1,1,1,0,2,11,1,0,338,245134.9677457236,0,0,0,0 -12635,15589,28399,28400,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.13306504510232,6.808391646678731,9,0,-53.98852301539561,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7510166970553349,7.00708370656021,58.32,50.22,56.69,29.53,8.333333333333334,1,1,0,0,0,4,2,1,812,771989.4843869462,423852.418581536,196688.6448177067,0,1591.001798746563 -12635,15589,28400,28399,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.794410289930851,5.78607276237951,9,0,26.98612980271593,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.305999776242416,6.077425356732266,56.69,29.53,58.32,50.22,5,1,1,0,0,0,4,2,1,812,771989.4843869462,423852.418581536,196688.6448177067,0,1591.001798746563 -12636,15590,28401,28402,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.169074490842455,8.132164716531678,0,22,0,-1.702143242221639,0,2,3,2019,12,0,42,48,1,0,0,11.01506647192798,11.01506647192798,0,0,0,0,5.48,0,0,0,2.299078317141809,0,40.82,50.55,51.41,56.15,5,1,1,0,0,12,13,3,1,456.5,839506.8463766773,483976.4360938495,251063.4976158254,0,1653.365242845154 -12636,15590,28402,28401,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,6.530276123174656,6.557359179041858,0,20,0,70.0433617067001,0,2,2,2019,12,0,35,35,1,0,0,1.978264927075074,1.978264927075074,0,0,0,0,0,0,0,0,0,0,51.41,56.15,40.82,50.55,6.666666666666667,1,1,0,0,3,13,3,1,456.5,839506.8463766773,483976.4360938495,251063.4976158254,0,1653.365242845154 -12636,15591,28403,-9,28402,28401,1,1,19,0,0,0,2,2,-9,0,3,8.252551821505092,8.334770902772538,0,0,0,-994.6616750226466,0,1,2,2019,4,0,45,0,1,0,1,9.585852959586855,9.585852959586855,0,0,0,0,0,0,0,0,.2914575049249283,0,48.54,51.82,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,286,125164.8581611731,-69742.45139692863,0,0,1458.072426654632 -12637,15592,28404,-9,28406,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.978186792977,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,559.75,10585.74723088894,0,0,0,1677.71806387783 -12637,15592,28405,-9,28406,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1017.191051560392,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,0,559.75,10585.74723088894,0,0,0,1677.71806387783 -12637,15592,28406,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.60732801242106,7.778807250367727,0,0,0,-1086.565323732175,0,-9,-9,2019,8,0,36,0,1,0,0,7.61864562271994,7.61864562271994,0,0,0,0,0,1,0,1,0,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,559.75,10585.74723088894,0,0,0,1677.71806387783 -12637,15592,28407,-9,28406,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1042.298852414608,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,2,0,559.75,10585.74723088894,0,0,0,1677.71806387783 -12638,15593,28408,28409,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.330057913305849,7.562857444743047,0,5,-8,-2.549929905000968,0,3,-9,2019,7,0,25,26,1,0,0,9.765055583524125,9.765055583524125,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,693.5,1282016.843112543,774714.6653929219,260268.8066751641,0,2938.71199865204 -12638,15593,28409,28408,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.819978154447711,8.365887878106099,6.904726396803873,5,8,15.40527924946182,0,-9,-9,2019,10,0,41,41,1,0,0,8.668945533398633,8.668945533398633,0,0,0,0,0,0,0,0,6.211263228732605,7.040841212293321,51.14,60.45,57.16,56.15,10,1,1,0,0,6,12,4,1,693.5,1282016.843112543,774714.6653929219,260268.8066751641,0,2938.71199865204 -12639,15594,28410,-9,28411,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.112657680315,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,702.6666666666666,-104961.5951803253,0,0,0,932.0216526337969 -12639,15594,28411,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,3,0,0,0,0,0,-1044.340069952295,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.35,51.96,-9,-9,10,1,1,0,0,0,12,1,0,702.6666666666666,-104961.5951803253,0,0,0,932.0216526337969 -12639,15594,28412,-9,28411,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-949.2267783569531,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,702.6666666666666,-104961.5951803253,0,0,0,932.0216526337969 -12640,15595,28413,28416,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.467792390430375,8.562553578907549,0,12,-3,33.92396860419277,0,-9,-9,2019,6,0,64,59,1,0,0,11.2047318847091,11.2047318847091,0,0,0,0,0,1,1,0,0,0,59.46,46.99,48.77,60.16,6.666666666666667,1,1,0,0,9,9,4,0,926,563317.7794136399,194261.8189836808,360420.4182151401,72304.17245170624,2806.208126832952 -12640,15595,28414,-9,28416,28413,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.9103419205404,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,926,563317.7794136399,194261.8189836808,360420.4182151401,72304.17245170624,2806.208126832952 -12640,15595,28415,-9,28416,28413,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.018002688752,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,926,563317.7794136399,194261.8189836808,360420.4182151401,72304.17245170624,2806.208126832952 -12640,15595,28416,28413,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.277782692290161,7.318861022420327,0,12,3,73.57649066222029,0,-9,-9,2019,7,0,39,38,1,0,0,4.485311691806815,4.485311691806815,0,0,0,0,2,1,1,0,0,0,48.77,60.16,59.46,46.99,6.666666666666667,1,1,0,0,8,9,4,0,926,563317.7794136399,194261.8189836808,360420.4182151401,72304.17245170624,2806.208126832952 -12641,15596,28417,-9,28420,28419,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.9758640867377,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.454079445879776,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,542.5,206390.0099907867,34850.71719449299,275930.0763406773,78728.4214100532,4689.828603452793 -12641,15596,28418,-9,28420,28419,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.043414682247,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,542.5,206390.0099907867,34850.71719449299,275930.0763406773,78728.4214100532,4689.828603452793 -12641,15596,28419,28420,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.794417346699431,8.865307982348002,0,3,2,27.15494192681561,-9,1,2,2019,11,1,45,0,1,1,0,14.62584018041883,14.62584018041883,0,0,0,0,0,0,0,0,6.089346023430453,0,38.78,56.37,54.1,59.11,1.666666666666667,1,1,0,0,11,9,5,1,542.5,206390.0099907867,34850.71719449299,275930.0763406773,78728.4214100532,4689.828603452793 -12641,15596,28420,28419,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,8.662331105751521,8.43156683440859,0,3,-2,14.23164944249428,0,2,-9,2019,7,0,26,0,1,0,0,18.79563608298733,18.79563608298733,0,0,0,0,0,0,0,0,0,0,54.1,59.11,38.78,56.37,10,1,1,0,0,8,9,5,1,542.5,206390.0099907867,34850.71719449299,275930.0763406773,78728.4214100532,4689.828603452793 -12642,15597,28421,-9,28423,28422,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1030.760906825159,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28422,28423,-9,-9,1,1,37,1,5,0,1,1,-9,0,4,0,0,0,7,8,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,57,60.74,43.75,7,4,5,0,1,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28423,28422,-9,-9,1,0,29,1,5,0,1,1,-9,1,3,0,0,0,7,-8,0,1,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.74,43.75,51,57,8.333333333333334,4,5,0,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28424,-9,28423,28422,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-859.1812307239296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28425,-9,28423,28422,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1060.682097556746,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,5,-9,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28426,-9,28423,28422,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-989.2043121669691,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12642,15597,28427,-9,28423,28422,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-949.26921986266,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,8,1,0,367.8571428571428,436.8326960888475,0,0,0,4205.81814565788 -12643,15598,28428,28429,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.259692592079544,7.081768042269275,46,0,-19.9334413167905,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.317337341431146,56.48,36.43,52.24,50.75,8.333333333333334,1,1,0,0,0,12,3,1,3239,978074.6535538081,892495.1791335623,111309.8848418813,0,2715.468645518842 -12643,15598,28429,28428,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,6.070665697836318,6.726827516588298,6.2056069521709,8,0,-13.43561864052277,0,-9,-9,2019,6,0,35,50,1,0,0,1.628485472219042,1.628485472219042,0,0,0,.3314117179830109,0,1,1,0,6.366059787925874,6.364745600559441,52.24,50.75,56.48,36.43,10,1,1,0,0,10,12,3,1,3239,978074.6535538081,892495.1791335623,111309.8848418813,0,2715.468645518842 -12643,15599,28430,-9,28428,28429,1,1,38,0,0,0,2,2,-9,0,4,8.134016220916777,8.361221509553369,0,0,0,-989.0399828595619,-9,2,2,2019,10,0,45,0,1,1,0,7.501814693864453,7.501814693864453,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,12,4,1,894,43561.27990589439,-7028.402414979013,0,0,1265.712600509637 -12644,15600,28431,-9,28433,28434,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1085.449106365814,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.41,58.28,-9,-9,10,1,1,0,0,1,2,4,1,499.5,151524.8336219008,76827.86432131712,27872.38998511669,10733.28831111704,2364.300265193567 -12644,15600,28432,-9,28433,28434,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.338811259866,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,499.5,151524.8336219008,76827.86432131712,27872.38998511669,10733.28831111704,2364.300265193567 -12644,15600,28433,28434,-9,28435,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,15,1,-164.5011496139524,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.65,37.08,51.83,57.2,6.666666666666667,1,1,0,0,2,2,4,1,499.5,151524.8336219008,76827.86432131712,27872.38998511669,10733.28831111704,2364.300265193567 -12644,15600,28434,28433,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.734235414532739,8.615745445376534,0,6,-1,134.7360300875935,0,-9,-9,2019,5,0,45,53,1,0,0,18.84897748431231,18.84897748431231,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34.65,37.08,8.333333333333334,1,1,0,0,10,2,4,1,499.5,151524.8336219008,76827.86432131712,27872.38998511669,10733.28831111704,2364.300265193567 -12644,15601,28435,-9,-9,-9,1,1,66,0,1,0,1,1,-9,0,1,0,8.846083769223016,8.682465018364095,0,0,-964.7025977698435,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,17.58884771940649,0,0,1,1,0,0,8.933256477553615,40.31,14.24,-9,-9,1.666666666666667,1,1,0,0,0,2,5,1,280,1544687.019980855,1054874.037686667,396015.2570974772,0,4765.661988092942 -12645,15602,28436,28437,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.611976740891354,8.714299815458823,0,10,0,60.65222549421716,0,2,2,2019,8,0,33,52,1,0,0,20.88864392139186,20.88864392139186,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.8,54.29,8.333333333333334,1,1,0,0,12,9,5,0,1507.5,244388.5258091899,72618.88505691041,448944.4739856258,129385.9250749052,3207.509732345864 -12645,15602,28437,28436,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.453941805446422,7.25385866008899,0,10,0,-24.05405751396007,0,2,2,2019,14,2,30,-9,1,2,0,7.179313624661953,7.179313624661953,0,0,0,0,0,0,0,0,7.96009498195206,0,32.8,54.29,49.04,55.86,5,1,1,0,0,12,9,5,0,1507.5,244388.5258091899,72618.88505691041,448944.4739856258,129385.9250749052,3207.509732345864 -12646,15603,28438,-9,28439,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1055.742980660924,-9,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,3963,65237.35550798742,46721.5915788951,0,0,1842.350370069687 -12646,15603,28439,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.124716239369739,7.603356887857173,6.697639244109906,0,0,-1115.81160292489,0,2,2,2019,24,12,20,20,1,12,0,9.354195642637691,9.354195642637691,0,0,0,0,0,1,1,0,7.660007729598478,0,25.61,62.71,-9,-9,5,1,1,0,0,10,5,3,1,3963,65237.35550798742,46721.5915788951,0,0,1842.350370069687 -12647,15604,28440,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,7.380377433928973,7.4251930202201,5.006198287120377,0,0,-1029.401607773625,0,-9,-9,2019,8,1,25,20,1,1,0,7.690020923174349,7.690020923174349,0,0,0,0,0,1,1,0,4.39298344599863,5.07510634978441,57.34,45.06,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,897,178421.8368250521,23371.25587435017,203964.0861198952,0,1399.984846942419 -12648,15605,28441,-9,28443,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1135.617075999491,-9,2,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.48,52.12,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,393.3333333333333,-81682.04690932992,0,0,0,1628.613031255122 -12648,15605,28442,-9,28443,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.4420739130379,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.090605715820617,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,393.3333333333333,-81682.04690932992,0,0,0,1628.613031255122 -12648,15605,28443,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,0,0,0,0,0,-955.022549413799,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.63,54.1,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,393.3333333333333,-81682.04690932992,0,0,0,1628.613031255122 -12648,15606,28444,-9,28443,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1116.797810228123,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,13,2,0,402,56928.17091987394,0,0,0,-522.9154279829762 -12649,15607,28445,-9,28448,28446,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.5993097316965,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,609.25,322764.1929354849,121650.299300993,352769.7118848664,190905.3125781679,5465.902812039584 -12649,15607,28446,28448,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,9.692906360255877,9.597556109577924,0,6,0,-40.73436439294592,0,2,2,2019,14,5,45,35,1,5,0,34.97632787059895,34.97632787059895,0,0,0,0,0,1,1,0,0,0,43.09,61.58,46.06,60.24,8.333333333333334,1,1,0,0,7,13,5,1,609.25,322764.1929354849,121650.299300993,352769.7118848664,190905.3125781679,5465.902812039584 -12649,15607,28447,-9,28448,28446,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.1939666945054,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,609.25,322764.1929354849,121650.299300993,352769.7118848664,190905.3125781679,5465.902812039584 -12649,15607,28448,28446,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.184260814755982,7.979359750756788,0,6,0,-46.58669361258182,0,-9,-9,2019,17,6,29,24,1,6,0,10.11387414810689,10.11387414810689,0,0,0,0,0,1,1,0,0,0,46.06,60.24,43.09,61.58,6.666666666666667,1,1,0,0,7,13,5,1,609.25,322764.1929354849,121650.299300993,352769.7118848664,190905.3125781679,5465.902812039584 -12650,15608,28449,28451,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.392609709224443,8.190851882976887,0,24,4,10.30251130536138,0,2,2,2019,15,5,28,27,1,5,0,20.89207579101153,20.89207579101153,0,0,0,0,2,1,1,0,.7344453115526138,0,40.61,64.02,46.63,59.72,8.333333333333334,1,1,0,0,8,10,5,1,856.6666666666666,2555771.447860977,1983528.561660913,453231.5751823034,0,4742.738664109187 -12650,15608,28450,-9,28449,28451,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-933.4850028023346,-9,2,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,856.6666666666666,2555771.447860977,1983528.561660913,453231.5751823034,0,4742.738664109187 -12650,15608,28451,28449,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.299469957182156,8.914372691978793,0,24,-4,-85.48208335609408,0,3,3,2019,14,3,55,50,1,3,0,19.57293440953596,19.57293440953596,0,0,0,0,0,1,1,0,3.910140983000019,0,46.63,59.72,40.61,64.02,8.333333333333334,1,1,0,0,8,10,5,1,856.6666666666666,2555771.447860977,1983528.561660913,453231.5751823034,0,4742.738664109187 -12650,15609,28452,-9,28449,28451,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1109.242697489894,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.851201280453299,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,805,9564.762582660616,0,0,0,-580.7773411750346 -12651,15610,28453,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,6.317977654176789,6.473615879728681,0,0,-1048.194915977904,-9,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.375471302625893,6.319611087844602,54,46,-9,-9,8,2,3,0,0,0,8,2,0,224,1547155.308124584,0,1518471.715784679,0,1187.323061148963 -12651,15611,28454,28455,-9,-9,1,0,39,0,0,0,3,3,-9,0,3,7.787460388365988,8.024524312773801,0,23,-11,35.26882514104826,0,2,2,2019,9,0,30,30,1,0,0,10.99590472672942,10.99590472672942,0,0,0,0,0,1,1,0,3.182623874541281,0,40.87,44.58,52,55,3.333333333333333,2,3,0,0,11,8,5,0,826,703186.1753270745,78924.79882033254,414158.5984595082,0,6133.212103710459 -12651,15611,28455,28454,-9,28453,1,1,50,0,0,0,2,2,-9,0,4,9.536508607879435,9.60559361078908,0,23,11,108.1980160286392,-9,1,1,2019,9,0,40,0,1,1,0,50.29810092902485,50.29810092902485,0,0,0,0,0,1,1,0,0,0,52,55,40.87,44.58,8,2,3,0,0,1,8,5,0,826,703186.1753270745,78924.79882033254,414158.5984595082,0,6133.212103710459 -12652,15612,28456,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.929715498864096,7.283196213748989,0,0,-1021.088077981331,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.532363800282798,7.054093976614465,52.2,48.95,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,246,982814.1802378247,367580.0809635666,182080.8723117078,0,1964.997421264867 -12653,15613,28457,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-976.446070107374,0,3,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,42.32,-9,-9,3.333333333333333,1,1,1,1,4,9,1,0,640,390012.732081737,88703.11100348229,0,0,472.8824118957854 -12654,15614,28458,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.68025365473281,5.437948982344099,0,0,-962.9252387588874,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.602571514712493,5.57360130372246,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,285,-28860.45997426964,-32948.58660213273,179271.9829177501,0,-25.91396259109638 -12655,15615,28459,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.447424142556214,7.653338752325082,0,0,-978.9764715735022,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.262980430698856,7.148214810372678,52.56,18.09,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,451,874038.8839758708,442944.4330849384,263690.4676885583,0,1502.220695621382 -12656,15616,28460,28461,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.16400729915563,8.271310086976122,31,-1,86.88255492650819,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.255909728516997,57.16,37.75,51,46,8.333333333333334,1,1,0,0,4,10,3,1,923,1101675.407478998,729205.2801026171,331271.2571020525,0,2809.116103923431 -12656,15616,28461,28460,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,19,1,-62.8451354805624,0,3,-9,2019,11,0,0,0,4,1,0,0,0,1,0,4.56699226516132,0,0,1,1,0,0,0,51,46,57.16,37.75,7,1,1,0,0,0,10,3,1,923,1101675.407478998,729205.2801026171,331271.2571020525,0,2809.116103923431 -12657,15617,28462,28463,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,0,0,10,-8,-40.34495937595293,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.95,34.83,37.83,37.31,8.333333333333334,1,1,0,0,0,12,2,1,362,165493.6320301988,133277.7592141796,101499.8138649978,0,1913.326073162005 -12657,15617,28463,28462,-9,-9,1,1,92,0,0,0,2,2,-9,0,2,0,6.950169112274398,7.184665855519582,10,8,56.0968836804666,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,.445055375749984,0,0,1,1,0,7.541231836023726,6.826824377388152,37.83,37.31,59.95,34.83,3.333333333333333,1,1,0,0,0,12,2,1,362,165493.6320301988,133277.7592141796,101499.8138649978,0,1913.326073162005 -12658,15618,28464,28465,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,7.999746798685127,7.784071764567904,0,13,0,11.49072788478394,0,2,2,2019,11,0,39,40,1,0,0,13.10820611542633,13.10820611542633,0,0,0,0,0,1,1,0,0,0,54.37,54.8,49.86,47.44,8.333333333333334,1,1,0,0,8,11,4,1,957,44650.18099468134,22063.08289761218,129619.9812421384,100784.8059671374,2534.859210138131 -12658,15618,28465,28464,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.664747587655625,7.931327774555103,0,11,9,-68.657807507326,0,2,2,2019,10,0,27,1,1,0,0,8.892822088269368,8.892822088269368,0,0,0,0,0,1,1,0,0,0,49.86,47.44,54.37,54.8,8.333333333333334,1,1,0,0,8,11,4,1,957,44650.18099468134,22063.08289761218,129619.9812421384,100784.8059671374,2534.859210138131 -12658,15618,28466,-9,28465,28464,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.1591840210187,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,957,44650.18099468134,22063.08289761218,129619.9812421384,100784.8059671374,2534.859210138131 -12658,15619,28467,-9,28465,28464,1,0,18,0,1,0,2,2,-9,0,3,6.494060988940424,6.664352517124667,0,0,0,-955.517129257983,0,2,2,2019,5,0,20,0,1,0,1,4.733574296893304,4.733574296893304,0,0,0,0,0,1,1,0,0,0,55.74,43.19,-9,-9,5,1,1,0,0,0,11,2,1,693,-12803.47464865305,0,0,0,50.44526979751703 -12659,15620,28468,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.841210675929615,8.499995335148503,0,0,0,-1031.915045507577,0,-9,-9,2019,6,0,39,38,1,0,0,15.50827781235691,15.50827781235691,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,10,1,1,0,0,6,7,5,0,312,-60051.6704380014,-74889.56956653812,0,0,1807.856170703918 -12660,15621,28469,28470,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.863269630172116,7.039245388461538,0,8,-5,56.60314582374188,0,-9,-9,2019,34,12,16,0,1,12,0,8.377535033297132,8.377535033297132,0,0,0,0,0,0,0,0,2.644217871729703,0,28.37,42.65,55.19,54.26,1.666666666666667,1,1,0,1,12,5,5,1,353,2174446.725541101,1686525.602206527,450209.1127803853,0,3208.869532834754 -12660,15621,28470,28469,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.502429695025565,9.041675149974029,7.692459345756547,8,5,239.0225804989602,0,2,2,2019,8,0,42,42,1,0,0,13.79681623437615,13.79681623437615,0,0,0,0,0,0,0,0,6.904840173617823,7.979599360116461,55.19,54.26,28.37,42.65,8.333333333333334,1,1,0,0,13,5,5,1,353,2174446.725541101,1686525.602206527,450209.1127803853,0,3208.869532834754 -12661,15622,28471,28472,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.975862188589017,6.432253871743057,10,1,-83.46295951034988,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.836857156369874,6.923883074444218,57.73,30.59,54.46,49.13,8.333333333333334,1,1,0,0,4,7,3,1,350,883256.3189678625,482555.6299230879,319318.9994629028,0,2058.918262805064 -12661,15622,28472,28471,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.337415787002428,7.141815650518109,10,-1,-28.14200635648063,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.439907683871107,7.425906018452886,54.46,49.13,57.73,30.59,8.333333333333334,1,1,0,0,3,7,3,1,350,883256.3189678625,482555.6299230879,319318.9994629028,0,2058.918262805064 -12662,15623,28473,28474,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.69418061656615,8.578680740396974,0,25,0,85.24267387621886,0,2,2,2019,11,0,40,48,1,0,0,20.22098414431277,20.22098414431277,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.63,50.99,8.333333333333334,1,1,0,0,12,11,5,1,1855.5,210627.0390796152,82655.31718939202,150511.0434164029,0,3141.058868613871 -12662,15623,28474,28473,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.200150940492602,8.157186953519819,0,25,0,-6.822765040627872,0,2,3,2019,11,0,50,50,1,0,0,7.393651324043821,7.393651324043821,0,0,0,0,0,0,0,0,0,0,50.63,50.99,54.2,57.49,8.333333333333334,1,1,0,0,11,11,5,1,1855.5,210627.0390796152,82655.31718939202,150511.0434164029,0,3141.058868613871 -12662,15624,28475,-9,28473,28474,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1025.45742434491,-9,1,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,49.29,61,-9,-9,8.333333333333334,1,1,0,0,3,11,1,1,136,0,0,0,0,589.8002823388542 -12663,15625,28476,-9,28479,28477,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.686618014307,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,761.6,113897.5161168117,130777.6881186032,202390.6797173196,174271.7640665038,3260.255946301187 -12663,15625,28477,28479,-9,-9,1,1,37,1,3,0,1,1,-9,0,5,8.674641114645175,8.79568926691678,0,14,0,-109.6615734396274,0,2,1,2019,10,0,35,37,1,0,0,19.84225666787706,19.84225666787706,0,0,0,0,0,1,1,0,2.451344759113823,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,761.6,113897.5161168117,130777.6881186032,202390.6797173196,174271.7640665038,3260.255946301187 -12663,15625,28478,-9,28479,28477,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.997061288339,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,761.6,113897.5161168117,130777.6881186032,202390.6797173196,174271.7640665038,3260.255946301187 -12663,15625,28479,28477,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,8.25322385252179,7.802767176138906,0,14,0,-152.5339236269585,0,1,2,2019,6,0,23,20,1,0,0,13.04708220357064,13.04708220357064,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,9,2,4,1,761.6,113897.5161168117,130777.6881186032,202390.6797173196,174271.7640665038,3260.255946301187 -12663,15625,28480,-9,28479,28477,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-920.2775071356597,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,761.6,113897.5161168117,130777.6881186032,202390.6797173196,174271.7640665038,3260.255946301187 -12664,15626,28481,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.61693983071858,7.416781645360507,0,0,-1038.409737874009,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.295846139308229,7.412415900938125,61.48,39.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,802,331893.7878822944,147798.8793597379,185598.9815887689,0,1941.772177653008 -12665,15627,28482,28483,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,6.713136173522656,7.862128821661014,7.69099134715613,41,1,84.80718959096028,0,3,3,2019,6,0,15,22,1,0,0,6.694312342446188,6.694312342446188,0,0,0,0,0,0,0,0,3.437478877472931,7.613881630436689,61.68,49.95,57.16,56.15,10,1,1,0,0,9,5,4,1,905,2523141.046925754,1672537.061211536,642329.7433455705,48488.38000662181,3428.608410943243 -12665,15627,28483,28482,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.995473058953252,7.661026223807804,41,-1,166.9571026029954,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.339362683998817,8.134061451179701,57.16,56.15,61.68,49.95,8.333333333333334,1,1,0,0,6,5,4,1,905,2523141.046925754,1672537.061211536,642329.7433455705,48488.38000662181,3428.608410943243 -12666,15628,28484,28485,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.437741479690689,6.337767151611845,8,-1,20.47904712313752,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.231868388422662,6.289484827277575,51.65,44.35,42.73,46.59,6.666666666666667,1,1,0,0,3,10,3,1,2477,631672.2840725603,467750.1586991355,210175.8019926366,0,2239.551893936379 -12666,15628,28485,28484,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.143835598697843,7.05622549605649,8,1,67.69871892812567,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.94303618640589,0,0,1,1,0,2.917602433286727,7.049313381914076,42.73,46.59,51.65,44.35,8.333333333333334,1,1,0,0,3,10,3,1,2477,631672.2840725603,467750.1586991355,210175.8019926366,0,2239.551893936379 -12667,15629,28486,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.516716010359806,9.695421797685741,6.687507613731808,0,0,-1063.820251250494,0,3,2,2019,11,1,35,50,1,1,0,48.14230281869483,48.14230281869483,0,0,0,0,0,1,1,0,4.6355523326416,7.216735954396665,43.42,62.33,-9,-9,6.666666666666667,1,1,0,0,5,7,5,1,283,126516.376199431,147652.0650513633,0,0,4046.838915124575 -12668,15630,28487,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.088676009845607,5.158205807816117,0,0,-1158.22506870621,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.934535426013698,0,0,1,1,0,4.824038727171577,4.730151733601016,57.98,29.33,-9,-9,10,1,1,0,0,0,9,2,1,183,839441.275147735,0,619124.1194508086,0,1652.137381793906 -12669,15631,28488,-9,28490,28491,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-935.3150796568365,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,63.75,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15631,28489,-9,28490,28491,1,1,17,0,3,0,2,2,1,0,5,0,0,0,0,0,-981.9320678943337,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,62.79,-9,-9,3.333333333333333,1,1,0,0,1,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15631,28490,28491,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,9.399227033038649,8.764791070668387,0,22,0,8.608270636536705,0,3,3,2019,17,5,40,35,1,5,0,25.41693741380646,25.41693741380646,0,0,0,0,0,0,0,0,0,0,33.27,51.2,61.02,44.8,8.333333333333334,1,1,0,0,9,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15631,28491,28490,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.048853786756657,9.019342102132702,0,22,9,116.4021197584482,0,3,3,2019,7,0,35,36,1,0,0,30.83183295367653,30.83183295367653,0,0,0,0,0,0,0,0,0,0,61.02,44.8,33.27,51.2,8.333333333333334,1,1,0,0,9,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15631,28492,-9,28490,28491,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.1955135723877,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15631,28493,-9,28490,28491,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.433683766544,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,700.1666666666666,2008760.45852745,1779383.489572853,260260.6681085566,0,5488.032210685376 -12669,15632,28494,-9,28490,28491,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-907.6667745304653,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,0,7,1,1,584,49098.90105418314,0,0,0,0 -12669,15633,28495,-9,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.214762394584616,8.986069647514357,0,0,0,-967.1413698073017,-9,-9,-9,2019,25,10,35,0,1,10,0,27.75025019480626,27.75025019480626,0,0,0,0,7,0,0,0,0,0,18.42,66.02,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1070,79087.15264815371,119263.8232029875,0,0,2377.869571549748 -12670,15634,28496,28497,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.770146927291343,8.591956678941335,0,36,0,-71.25949379940764,0,2,2,2019,8,0,47,40,1,0,0,13.65816521953943,13.65816521953943,0,0,0,0,2,1,1,0,3.786581309294658,0,56.18,53.85,51.77,58.57,8.333333333333334,1,1,0,0,12,2,5,1,993,4093717.550834626,2904417.765427685,529273.5910971134,0,7160.357455419601 -12670,15634,28497,28496,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.358677969728522,9.212363446127123,7.279103602128916,37,0,-91.88598834736919,0,2,1,2019,7,0,61,60,1,0,0,20.61505794938172,20.61505794938172,0,0,0,0,2,1,1,0,2.702793200872685,8.067437990624171,51.77,58.57,56.18,53.85,8.333333333333334,1,1,0,0,11,2,5,1,993,4093717.550834626,2904417.765427685,529273.5910971134,0,7160.357455419601 -12671,15635,28498,28499,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,8.834761641197424,8.901672069317147,5.903347027560518,35,8,8.404545654718497,0,3,3,2019,6,0,32,32,1,0,0,23.28234329155216,23.28234329155216,0,0,0,0,0,0,0,0,5.077580701326814,6.19352987612221,59.71,43.36,57.33,53.46,8.333333333333334,1,1,0,0,12,12,5,1,792,333384.1523021196,343866.3641103297,171572.7295389275,65342.15679134046,3726.926886153034 -12671,15635,28499,28498,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.019910775191901,7.98348193416623,0,35,-8,26.85724400275636,0,3,3,2019,10,0,24,24,1,0,0,16.69723130319395,16.69723130319395,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.71,43.36,6.666666666666667,1,1,0,0,12,12,5,1,792,333384.1523021196,343866.3641103297,171572.7295389275,65342.15679134046,3726.926886153034 -12672,15636,28500,-9,28503,28501,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.8264246438104,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,938,369751.8378627576,419489.5302028613,0,0,3007.221677651901 -12672,15636,28501,28503,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.80399317538018,8.829078245651367,0,7,-1,-42.46416035159226,0,3,2,2019,12,0,43,39,1,0,0,15.13919690261284,15.13919690261284,0,0,0,0,0,1,1,0,0,0,38.63,63.11,54.18,31.08,6.666666666666667,1,1,0,0,9,4,4,0,938,369751.8378627576,419489.5302028613,0,0,3007.221677651901 -12672,15636,28502,-9,28503,28501,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.419392345269,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,938,369751.8378627576,419489.5302028613,0,0,3007.221677651901 -12672,15636,28503,28501,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.256567218096716,8.342257692256625,0,7,1,90.31041287134755,0,2,2,2019,10,0,42,40,1,0,0,7.086382867516799,7.086382867516799,0,0,0,0,14.5,1,1,0,0,0,54.18,31.08,38.63,63.11,8.333333333333334,1,1,0,0,5,4,4,0,938,369751.8378627576,419489.5302028613,0,0,3007.221677651901 -12673,15637,28504,-9,28506,28508,1,1,19,0,2,0,2,2,-9,0,3,8.606855540472253,8.615287488372584,0,0,0,-1043.990580576533,-9,1,2,2019,17,7,50,0,1,7,1,12.05011140036306,12.05011140036306,0,0,0,0,0,1,1,0,2.203452341759752,0,36.98,42.6,-9,-9,5,1,1,0,0,0,7,5,0,304,390263.7955957744,0,294823.4395872687,128421.3527436191,1826.488489295084 -12673,15638,28505,-9,28506,28508,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.383550997267,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,386.5,-32825.95040369884,0,0,0,2320.150250595143 -12673,15638,28506,28508,-9,-9,1,0,40,0,2,0,1,1,-9,0,2,0,0,0,6,-3,-5.256463865456189,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,24.18,51.52,44.44,55.46,0,1,1,0,0,4,7,3,0,386.5,-32825.95040369884,0,0,0,2320.150250595143 -12673,15638,28507,-9,28506,28508,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.5637569413651,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,386.5,-32825.95040369884,0,0,0,2320.150250595143 -12673,15638,28508,28506,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.319165305891195,8.027811235497131,0,6,3,106.2894326596059,0,-9,-9,2019,15,4,38,47,1,4,0,13.11799598270789,13.11799598270789,0,0,0,0,0,1,1,0,0,0,44.44,55.46,24.18,51.52,6.666666666666667,1,1,0,1,5,7,3,0,386.5,-32825.95040369884,0,0,0,2320.150250595143 -12674,15639,28509,28510,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,4.778586953578002,7.669868810850958,7.607685777865501,8,1,24.130712660822,0,-9,-9,2019,9,0,20,-9,1,1,0,.6575704159839729,.6575704159839729,0,0,0,0,0,1,1,0,4.900005379983368,7.360037823478555,53,47,66.2,41.05,8,1,1,0,0,1,12,2,1,591,401155.2622106222,249861.192916948,125832.9297701697,0,2027.119983259667 -12674,15639,28510,28509,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,54,-1,7.55047810574641,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.863480890615596,0,66.2,41.05,53,47,10,1,1,0,0,10,12,2,1,591,401155.2622106222,249861.192916948,125832.9297701697,0,2027.119983259667 -12675,15640,28511,28512,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.334456385967277,8.169841581902288,0,4,4,-107.9734600242358,0,2,3,2019,8,1,40,38,1,1,0,9.426735352682721,9.426735352682721,0,0,0,0,7,0,0,0,.9193482748132595,0,51.49,57.57,54.2,57.49,1.666666666666667,1,1,0,0,10,11,3,1,2099.5,-151072.2503330677,9791.595154011455,0,0,1107.108526253021 -12675,15640,28512,28511,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,4,-4,107.9642966602577,0,-9,-9,2019,6,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.49,57.57,8.333333333333334,1,1,1,0,12,11,3,1,2099.5,-151072.2503330677,9791.595154011455,0,0,1107.108526253021 -12675,15641,28513,-9,28511,28512,1,0,19,0,0,0,2,2,-9,0,4,6.880874508056154,6.984677796033282,0,0,0,-1048.367941428134,0,1,2,2019,7,0,18,0,1,0,1,5.741025916219092,5.741025916219092,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,1,11,2,1,392,4123.676070805621,0,0,0,598.8373892745004 -12676,15642,28514,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.851810699836609,6.380350814730913,0,0,-817.9123128424607,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.331409964015795,6.873422174686825,47.61,53.7,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,488,259120.3846657499,91379.3998888886,42314.77988709901,0,1207.323402721426 -12677,15643,28515,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1088.647896299085,0,-9,-9,2019,11,4,0,0,4,4,0,0,0,1,3.396830488465509,0,24.09517943678016,0,1,1,0,.8440141142999192,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,657,-15052.67964741886,0,0,0,1361.264646408292 -12678,15644,28516,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1103.149753111611,0,-9,-9,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,18.76,23.91,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,567,1639.131942497101,0,0,0,1548.735307615622 -12679,15645,28517,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.607759852107659,8.584377080603682,0,0,0,-1032.65329510474,0,-9,-9,2019,11,0,44,43,1,0,0,14.8123609904261,14.8123609904261,0,0,0,0,0,1,1,0,2.136555168553025,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,1621,321.5906896395645,-2526.703101652125,0,0,2512.965651376617 -12679,15646,28518,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.382350200986696,8.653360861019696,0,0,0,-972.6710219754917,0,-9,-9,2019,10,0,35,32,1,1,0,14.22315101352978,14.22315101352978,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,8,1,1,0,0,1,10,4,1,173,103192.92198377,121233.7371115343,185877.3625718075,140614.5583050655,2166.252302373543 -12680,15647,28519,-9,28520,28521,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.571537336122,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,628,-50565.43195938443,44064.85090388297,0,0,1674.651826066502 -12680,15647,28520,28521,-9,-9,1,0,32,0,1,0,3,3,-9,0,3,0,0,0,7,-5,33.25351879748626,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.21,50.73,53.46,33.26,5,1,1,0,1,0,4,2,0,628,-50565.43195938443,44064.85090388297,0,0,1674.651826066502 -12680,15647,28521,28520,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,7.669053876793299,7.537848783695784,0,7,5,53.00431869966614,0,2,2,2019,11,1,39,39,1,1,0,5.349912655281793,5.349912655281793,0,0,0,0,0,1,1,0,0,0,53.46,33.26,48.21,50.73,3.333333333333333,1,1,0,0,7,4,2,0,628,-50565.43195938443,44064.85090388297,0,0,1674.651826066502 -12681,15648,28522,28523,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.392343050127122,7.644026163286322,8,-2,-56.36500903601196,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.002377438541687,7.38148210286558,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,1050.5,1388010.026184985,445494.6447869016,236251.1703109553,0,4344.418921981002 -12681,15648,28523,28522,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.862230971996831,8.298491056762154,8,2,-16.76165033344467,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.451294327367918,57.06,57.76,54.2,57.49,10,1,1,0,0,3,7,4,1,1050.5,1388010.026184985,445494.6447869016,236251.1703109553,0,4344.418921981002 -12682,15649,28524,28525,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.444739338312564,9.518646262142024,7.503979857321389,36,1,-52.02790464993291,0,2,3,2019,8,1,100,52,1,1,0,18.44871770406963,18.44871770406963,0,0,0,0,0,0,0,0,0,7.850774128269309,62.39,56.71,57.06,57.76,10,1,1,0,0,11,2,5,1,223,651558.1440445229,196616.5246579317,396483.7829724792,75036.76899030621,5592.773006225299 -12682,15649,28525,28524,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.588608552658681,7.486821430101765,0,36,-1,-97.77276186826397,0,3,3,2019,7,0,20,15,1,0,0,10.53994019020078,10.53994019020078,0,0,0,1.586252998923309,0,0,0,0,1.903229270357123,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,2,5,1,223,651558.1440445229,196616.5246579317,396483.7829724792,75036.76899030621,5592.773006225299 -12682,15650,28526,-9,28525,28524,1,0,24,0,0,0,2,2,-9,0,5,7.219311640580082,7.581179352311157,0,0,0,-895.2100769747874,0,2,1,2019,8,0,14,40,1,0,1,11.35165601599252,11.35165601599252,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,6.666666666666667,1,1,0,0,4,2,3,1,282,-237253.6732509249,43582.97656925517,0,0,1091.82899215311 -12683,15651,28527,-9,28528,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.686433496923,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,0,720,1627059.366553431,797862.7253066959,695400.9991359386,2992.006920209615,2221.137493238622 -12683,15651,28528,-9,-9,-9,1,0,54,0,2,0,1,1,-9,0,4,8.139850235101827,8.476674405003505,0,0,0,-977.2442685971529,0,2,2,2019,11,0,37,37,1,0,0,14.33069452488973,14.33069452488973,0,0,0,0,0,1,1,0,4.244021768158658,0,38.85,61.86,-9,-9,3.333333333333333,1,1,0,0,10,10,3,0,720,1627059.366553431,797862.7253066959,695400.9991359386,2992.006920209615,2221.137493238622 -12683,15651,28529,-9,28528,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-925.4340016980314,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,0,720,1627059.366553431,797862.7253066959,695400.9991359386,2992.006920209615,2221.137493238622 -12684,15652,28530,28531,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-24.52568656115303,0,2,2,2019,25,9,0,0,4,9,0,0,0,1,0,0,0,7,1,1,0,.2206434080902893,0,31.52,33.24,40.26,33.41,3.333333333333333,1,1,0,0,0,2,3,0,570,734930.4275393568,402895.9852054259,348887.5437445727,0,2142.460784577808 -12684,15652,28531,28530,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.732639095450393,7.561646549677675,7,1,-1.299199820643575,0,3,3,2019,19,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.338172070379995,7.645364148036374,40.26,33.41,31.52,33.24,10,1,1,0,0,7,2,3,0,570,734930.4275393568,402895.9852054259,348887.5437445727,0,2142.460784577808 -12685,15653,28532,28533,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,6.617349158671063,6.721515406719409,48,0,-123.0778615953899,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.439015995252534,6.833967816300151,54.37,44.27,54.37,54.8,8.333333333333334,1,1,0,0,8,10,3,1,250,3722029.182888766,1418314.915846695,432436.7100139376,0,3049.617958093132 -12685,15653,28533,28532,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.857827059378782,7.338329808080405,48,0,-106.4702522785662,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.517144453901942,7.308798972937994,54.37,54.8,54.37,44.27,6.666666666666667,1,1,0,0,10,10,3,1,250,3722029.182888766,1418314.915846695,432436.7100139376,0,3049.617958093132 -12686,15654,28534,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.704279825742457,6.719248714566714,0,0,-954.4349389044256,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.906971720604911,58.33,47.36,-9,-9,10,1,1,0,0,0,5,2,1,245,420357.199640246,229133.0788174442,277135.6263660933,0,1358.289217653842 -12687,15655,28535,28536,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.625890544735052,8.625543314082554,51,0,-4.832020620027025,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.620348628662541,8.438889323408279,54.2,57.49,49.97,56.66,8.333333333333334,1,1,0,0,0,9,4,1,509.5,1832434.777050002,74662.31161231181,1490654.811897378,0,3777.045052832068 -12687,15655,28536,28535,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.079975720801752,5.964539671884327,51,0,-29.53816671357522,0,2,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.673136971538653,6.004148699382261,49.97,56.66,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,509.5,1832434.777050002,74662.31161231181,1490654.811897378,0,3777.045052832068 -12688,15656,28537,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.80942549022913,7.805159053476415,0,0,-1087.450296468656,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.351589599332256,7.881128889236227,54.9,44,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,289,602843.3583242052,491792.3872156476,221421.7527796864,0,2173.539395041416 -12689,15657,28538,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.606984390879042,8.033898568230756,0,0,0,-943.7492703624235,-9,-9,-9,2019,7,0,50,0,1,0,0,8.776052827417045,8.776052827417045,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,210,0,0,0,0,1452.874470758697 -12690,15658,28539,28544,-9,-9,1,0,31,2,5,0,2,2,-9,0,2,0,0,0,4,-12,-67.6188335268205,0,3,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.15,36.12,51,56,3.333333333333333,2,3,0,1,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28540,-9,28539,-9,1,1,13,2,5,1,3,0,-9,0,2,0,0,0,0,0,-1019.850140985425,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28541,-9,28539,28544,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1084.597075077239,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28542,-9,28539,28544,1,1,3,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1114.75949770945,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28543,-9,28539,-9,1,0,10,2,5,1,3,0,-9,0,2,0,0,0,0,0,-1166.392877454112,-9,2,-9,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28544,28539,-9,-9,1,1,43,2,5,0,3,3,-9,0,4,7.797132676331554,7.726369417037958,0,4,12,-40.37302795501706,0,-9,-9,2019,9,0,24,24,1,1,0,12.7509157441406,12.7509157441406,0,0,0,0,0,1,1,0,0,0,51,56,37.15,36.12,8,2,3,0,0,1,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12690,15658,28545,-9,28539,28544,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1055.839161909412,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,561.2857142857143,5156.770590988549,21801.76466609226,0,0,3711.714001109944 -12691,15659,28546,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,0,5.441730249445657,5.667881256386258,0,0,-1063.701805054156,0,2,1,2019,15,3,0,7,3,3,0,0,0,0,0,0,0,0,0,0,0,5.189344810765009,0,43.91,52.59,-9,-9,3.333333333333333,1,1,0,0,11,10,2,1,757,37769.20786848239,0,0,0,694.4449021104325 -12692,15660,28547,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,8.510912592207617,8.648684668733447,0,0,-1011.856184871007,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.700688318634443,5.098344952915584,56.52,35.11,-9,-9,3.333333333333333,1,1,0,0,1,9,5,1,520,928460.0507412599,656705.5345743508,292855.0610345955,57257.02164862898,2623.892568342821 -12693,15661,28548,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.25326801351973,4.420792397869397,0,0,-961.3203337325041,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.57313055733457,4.31843489650087,52.21,51.53,-9,-9,10,1,1,0,0,0,10,2,0,540,-31015.95120967294,-54110.03154941314,0,0,1275.443166751505 -12694,15662,28549,28550,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.824935008812735,6.775326457320463,4,0,-128.8755818342489,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.729234118784256,7.008214229971626,57.16,56.15,47.81,52.33,8.333333333333334,1,1,0,0,6,9,3,1,968.5,1231907.228896374,474919.077668568,311385.5455781599,0,2546.87351468349 -12694,15662,28550,28549,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.481664710338513,7.370478600249006,4,9,35.25715842385001,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.277348998823649,7.321271515551721,47.81,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,968.5,1231907.228896374,474919.077668568,311385.5455781599,0,2546.87351468349 -12695,15663,28551,-9,28555,28556,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.992894963896,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12695,15663,28552,-9,28555,28556,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.3578121781177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12695,15663,28553,-9,28555,28556,1,0,17,0,3,1,2,0,0,0,3,0,0,0,0,0,-916.7956485168389,-9,2,2,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,2,1,0,1,0,0,20.61,53.92,-9,-9,6.666666666666667,1,1,0,0,1,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12695,15663,28554,-9,28555,28556,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.867533423758,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12695,15663,28555,28556,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.822182839152026,7.43375963479497,0,10,-2,-79.06481830298092,0,2,3,2019,23,10,30,36,1,10,0,10.20637256911858,10.20637256911858,0,0,0,0,2,1,0,1,0,0,35.64,49.9,48.82,38.59,5,1,1,0,0,12,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12695,15663,28556,28555,-9,-9,1,1,42,0,3,0,2,2,-9,1,2,8.462337825240475,8.541468040124421,0,10,2,-108.1102076010525,0,2,-9,2019,16,4,34,38,1,4,0,20.0407622567604,20.0407622567604,0,0,0,0,0,1,0,1,0,0,48.82,38.59,35.64,49.9,8.333333333333334,1,1,0,0,12,9,4,0,740.1666666666666,276131.0106271585,104337.2774243675,0,0,3649.824276492478 -12696,15664,28557,28558,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,8.242429582377302,8.710380953366517,4,9,55.03524288178998,0,1,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,0,0,0,5.214910836893056,8.397938764927847,48.28,42.9,54.79,55.86,5,1,1,0,0,3,2,5,1,399,461295.155120082,373354.5701789914,274446.5136600469,90537.08646637759,8634.120692722769 -12696,15664,28558,28557,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.814959411280963,9.65752286068485,0,4,0,17.57782939509138,0,2,2,2019,12,0,40,50,1,0,0,55.77606632119432,55.77606632119432,0,0,0,0,0,0,0,0,5.15758245681305,0,54.79,55.86,48.28,42.9,8.333333333333334,1,1,0,0,11,2,5,1,399,461295.155120082,373354.5701789914,274446.5136600469,90537.08646637759,8634.120692722769 -12697,15665,28559,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.974973094090906,8.798402866686748,0,0,0,-1111.355105547254,0,2,2,2019,7,0,35,30,1,0,0,21.47138540627163,21.47138540627163,0,0,0,0,0,0,0,0,4.381453593735386,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,99,404858.4545795997,265706.1526789694,88031.69929127897,21978.80588268064,2699.697570024406 -12698,15666,28560,28561,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,6.850544511678923,7.261362013869697,6.705688913980921,23,18,18.93581705006956,0,2,3,2019,10,2,13,6,1,2,0,5.883884867303096,5.883884867303096,0,0,0,0,0,1,1,0,2.831396698900202,6.717984069533864,41.34,56.62,52.23,31.67,6.666666666666667,1,1,0,0,7,11,3,1,314,317209.8075248452,253693.802106132,192676.3560875062,0,2784.610980792133 -12698,15666,28561,28560,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.156920169250649,7.670562402765881,7.053510000329777,23,-18,-31.17464412035651,0,3,2,2019,13,2,18,18,1,2,0,6.223245393006419,6.223245393006419,0,0,0,0,0,1,1,0,2.531385167038291,6.941637464796376,52.23,31.67,41.34,56.62,8.333333333333334,1,1,0,0,5,11,3,1,314,317209.8075248452,253693.802106132,192676.3560875062,0,2784.610980792133 -12698,15667,28562,-9,28561,28560,1,1,18,0,0,0,2,2,1,0,4,6.015139822060812,6.3373406433246,0,0,0,-972.3297089123105,-9,2,2,2019,6,0,8,0,1,0,1,6.989206626113999,6.989206626113999,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,793,143945.4372765655,0,0,0,82.16885473642958 -12699,15668,28563,28564,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,39,0,-20.76059056642809,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,1,5,6,3,1,1235,-246.0522626580932,69710.0577320095,0,0,1471.560399138306 -12699,15668,28564,28563,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.830504319284279,8.169979886099922,0,9,0,-46.70603320666958,0,3,3,2019,10,0,40,40,1,1,0,9.574010127766046,9.574010127766046,0,0,0,0,14.5,0,0,0,0,0,50,49,48,49,7,1,1,0,1,12,6,3,1,1235,-246.0522626580932,69710.0577320095,0,0,1471.560399138306 -12699,15669,28565,-9,28563,28564,1,1,33,0,0,0,2,2,-9,0,5,6.686633490380054,6.540322383730629,0,0,0,-956.7981629388671,0,3,3,2019,0,0,11,30,1,0,1,8.054022568369598,8.054022568369598,0,0,0,0,14.5,0,0,0,0,0,30.22,61.23,-9,-9,10,1,1,0,0,4,6,2,1,446,-173724.6481751337,109519.8943011631,0,0,483.4439600732095 -12700,15670,28566,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.142658546269693,7.964472941113311,0,0,-961.2773341557324,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.889749902888759,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,660,702571.1006546345,702197.147799082,21200.57072651586,0,2607.710468021157 -12701,15671,28567,28568,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.982597000107883,7.88482794951883,0,8,-1,-32.48396992336423,0,-9,-9,2019,7,0,28,29,1,0,0,11.32272102510239,11.32272102510239,0,0,0,0,7,0,0,0,7.314730555177546,0,54.2,57.49,57.33,53.46,1.666666666666667,1,1,0,0,9,11,4,0,1635,1131717.422150198,946927.976797336,194672.8391397641,0,3813.033172833446 -12701,15671,28568,28567,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.28847168701723,8.119229112895754,0,8,1,-61.46196428509773,0,2,3,2019,6,0,40,40,1,0,0,12.20805289698709,12.20805289698709,0,0,0,0,2,0,0,0,7.017721852100894,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,11,4,0,1635,1131717.422150198,946927.976797336,194672.8391397641,0,3813.033172833446 -12701,15672,28569,-9,28567,28568,1,0,27,0,0,0,2,2,-9,0,5,8.028726600785721,7.787197794483841,0,0,0,-1157.827049122128,0,3,2,2019,5,0,24,24,1,0,1,12.0705614743704,12.0705614743704,0,0,0,0,0,0,0,0,.6757539056387565,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,8,11,4,0,327,45526.72483879083,0,0,0,811.75305518922 -12701,15673,28570,-9,28567,28568,1,0,24,0,0,0,1,1,-9,0,4,7.487302788568861,7.425092781556899,0,0,0,-907.9836039108206,0,3,2,2019,6,0,54,20,1,0,1,4.376425676980044,4.376425676980044,0,0,0,1.733435194763002,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,1678,101149.6119496194,-7149.798735954651,0,0,1296.19361686243 -12702,15674,28571,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.410891853051494,9.363004327579324,0,0,0,-1020.677258230974,0,2,1,2019,10,0,58,55,1,0,0,21.13826631704512,21.13826631704512,0,0,0,0,0,0,0,0,6.364982675247197,0,49.8,56.68,-9,-9,5,1,1,0,0,9,8,5,0,794,61154.28514974515,0,230676.7735895872,12611.58085020429,2863.50510960096 -12702,15675,28572,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.875460368061582,8.770561674095896,0,0,0,-989.4010852241116,0,-9,-9,2019,9,1,40,48,1,1,0,18.22479322944956,18.22479322944956,0,0,0,0,0,0,0,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,10,8,5,0,300,274162.4619959892,269060.1585013559,0,0,2116.879632443999 -12703,15676,28573,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.617562675131,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,13,1,0,1251,-7363.502855839266,0,216746.2277604656,5667.31951632673,1258.163112529057 -12704,15677,28574,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.21702042322574,9.610930181876597,0,0,0,-1069.699603295932,0,2,2,2019,6,0,40,77,1,0,0,34.37353228794862,34.37353228794862,0,0,0,0,0,0,0,0,9.340289901841572,0,62.39,56.71,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,621,-29281.40475510672,50579.92019924971,354345.0585117021,302642.3163881327,8937.203878355751 -12705,15678,28575,-9,28578,28576,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-995.5560183767291,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,463.75,9890.648800347379,96607.02646293867,133035.4814603773,90868.42363098396,3731.18737204234 -12705,15678,28576,28578,-9,-9,1,1,32,2,2,0,1,1,-9,0,3,8.718158848934364,8.503286426096537,0,9,1,-24.19628269876505,0,2,2,2019,18,6,37,37,1,6,0,17.8416346775889,17.8416346775889,0,0,0,0,2,1,1,0,0,0,26.61,59.47,32.96,56.51,6.666666666666667,1,1,0,0,9,13,4,1,463.75,9890.648800347379,96607.02646293867,133035.4814603773,90868.42363098396,3731.18737204234 -12705,15678,28577,-9,28578,28576,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.860485031435,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,463.75,9890.648800347379,96607.02646293867,133035.4814603773,90868.42363098396,3731.18737204234 -12705,15678,28578,28576,-9,-9,1,0,31,2,2,0,1,1,-9,0,4,7.659591377954288,7.863103095788942,0,9,-1,66.25570945217918,0,2,2,2019,13,3,29,29,1,3,0,10.96026391554126,10.96026391554126,0,0,0,0,0,1,1,0,0,0,32.96,56.51,26.61,59.47,8.333333333333334,1,1,0,0,9,13,4,1,463.75,9890.648800347379,96607.02646293867,133035.4814603773,90868.42363098396,3731.18737204234 -12706,15679,28579,28581,-9,-9,1,1,24,1,1,0,2,2,-9,0,4,8.048045465081751,8.493789269260175,0,2,0,-127.935460062157,-9,-9,-9,2019,10,0,40,0,1,1,0,15.49126562053002,15.49126562053002,0,0,0,0,0,1,1,0,0,0,48,59,57.16,56.15,7,4,1,0,0,1,11,4,1,435.3333333333333,-31468.9244399663,19259.45769720474,0,0,3012.174446852182 -12706,15679,28580,-9,28581,28579,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.378581473395,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,435.3333333333333,-31468.9244399663,19259.45769720474,0,0,3012.174446852182 -12706,15679,28581,28579,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.224776256450573,7.369124522886795,0,2,0,81.52654102253049,0,-9,-9,2019,5,0,24,0,1,0,0,6.707762919242594,6.707762919242594,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48,59,8.333333333333334,1,1,0,0,6,11,4,1,435.3333333333333,-31468.9244399663,19259.45769720474,0,0,3012.174446852182 -12707,15680,28582,28583,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,8,-1,-5.454872897213598,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.38,42.47,57.17,50.61,8.333333333333334,1,1,0,0,0,7,3,1,760,788545.6773254098,382251.8281898946,505011.3948774873,0,2576.958929201644 -12707,15680,28583,28582,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.965858027593186,7.947667996516536,8,1,-14.0197220356673,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.551359321722662,7.636927835434175,57.17,50.61,60.38,42.47,10,1,1,0,0,0,7,3,1,760,788545.6773254098,382251.8281898946,505011.3948774873,0,2576.958929201644 -12708,15681,28584,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.919688835419647,7.435592429915838,0,0,-1013.771565853412,-9,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.272313245207349,6.679189587647453,51.42,48.12,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,309,1172518.039165925,2927.57746644826,692917.8456356718,0,1447.015256727125 -12709,15682,28585,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.901665202143766,8.649010685209518,0,0,0,-940.0823103948293,0,2,1,2019,15,3,45,48,1,3,0,16.88697530912853,16.88697530912853,0,0,0,0,0,1,1,0,3.950607879789004,0,35.73,63.1,-9,-9,3.333333333333333,2,3,0,0,6,6,5,1,385,0,0,0,0,2824.513958375891 -12710,15683,28586,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.106811108658,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,49.76,26.98,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,4194,228190.0304326862,0,0,0,1215.746793510191 -12711,15684,28587,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-938.4506452991731,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,957,120056.8697131695,0,0,0,580.0826766983603 -12712,15685,28588,-9,28589,-9,1,1,36,0,0,0,2,2,-9,0,2,8.494949239333573,8.156043936012956,0,0,0,-1057.505658139447,0,2,-9,2019,11,2,58,58,1,2,0,9.479669656796286,9.479669656796286,0,0,0,0,0,1,1,0,.220621667302425,0,55.5,34.13,-9,-9,5,1,1,0,0,10,9,5,1,343,79769.45862145929,-957.3563370416086,0,0,1870.517830656133 -12712,15686,28589,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.810900642327682,7.810491600460826,5.491322425027287,0,0,-1130.286738974931,0,-9,-9,2019,14,2,29,29,1,2,0,6.667463739777039,6.667463739777039,0,0,0,0,0,1,1,0,4.104672691216234,5.523362786845467,16.67,61.4,-9,-9,3.333333333333333,1,1,0,0,10,9,3,1,1190,451042.2207324993,0,266374.6876174237,0,1394.216152107973 -12713,15687,28590,28591,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.508001100084603,8.31286908219275,6.574642871696171,36,3,-9.654156045203518,0,-9,-9,2019,19,7,22,23,1,7,0,10.06816118606354,10.06816118606354,0,0,0,0,0,1,1,0,2.629042626572823,6.632162198297133,44.92,57.6,33.87,34.69,8.333333333333334,1,1,0,0,10,12,4,1,479,234452.7903498214,109664.3152389109,114981.8089639669,0,1992.101443814417 -12713,15687,28591,28590,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,6.898617444353937,7.454331841565851,6.232817858858316,36,-3,37.81750959844042,0,-9,2,2019,14,2,15,15,1,2,0,8.07221799690141,8.07221799690141,0,0,0,0,0,1,1,0,2.6856164356723,6.18500828492635,33.87,34.69,44.92,57.6,5,1,1,0,0,4,12,4,1,479,234452.7903498214,109664.3152389109,114981.8089639669,0,1992.101443814417 -12713,15688,28592,-9,28590,28591,1,1,26,0,0,0,2,2,1,1,4,7.840866543292784,8.071175262481688,0,0,0,-1034.588053893922,-9,3,2,2019,2,0,36,0,1,0,1,8.93745412109344,8.93745412109344,0,0,0,0,0,1,1,0,1.845644469629312,0,60.1,54.82,-9,-9,10,1,1,0,0,1,12,4,1,507,-1062.754014607919,0,0,0,1544.437554153997 -12714,15689,28593,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-906.4077500348792,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.01,34.13,-9,-9,5,1,1,0,0,0,5,1,1,260,139299.0234934122,0,0,0,-45.66532482203047 -12714,15690,28594,-9,28593,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1128.282191934578,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,5,1,1,2970,-87555.97194536762,0,0,0,1194.994564414844 -12715,15691,28595,-9,-9,28596,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.9475115252693,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,931.5,14097.35813567058,0,0,0,733.2072709829331 -12715,15691,28596,-9,-9,-9,1,1,25,0,1,0,2,2,-9,0,3,7.757291575852114,7.916800470024411,0,0,0,-893.7827174447633,0,-9,-9,2019,20,6,45,53,1,6,0,6.983693050206058,6.983693050206058,0,0,0,0,0,0,0,0,0,0,42.22,56.11,-9,-9,3.333333333333333,1,1,0,0,5,11,3,0,931.5,14097.35813567058,0,0,0,733.2072709829331 -12716,15692,28597,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.358088718986534,5.449602510200763,0,0,-995.4154937688223,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.442535278599371,5.369287299865229,47.69,45.91,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,334,5803.059645969486,27257.02829069693,0,0,1604.157968371614 -12717,15693,28598,28600,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.698715433496663,7.463455399931664,0,8,-6,110.3390575418102,0,2,2,2019,7,0,32,27,1,0,0,6.215949518927239,6.215949518927239,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.05,54.52,8.333333333333334,4,2,0,0,8,5,5,1,947,708777.3814050133,296492.6220852388,371462.0157940395,84442.9006000065,5001.551289118072 -12717,15693,28599,-9,28598,28600,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-901.9290237570131,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,5,1,947,708777.3814050133,296492.6220852388,371462.0157940395,84442.9006000065,5001.551289118072 -12717,15693,28600,28598,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.703721629615659,9.480096741756913,0,8,6,34.40910900351459,0,-9,-9,2019,7,0,42,45,1,0,0,34.16888174358343,34.16888174358343,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,947,708777.3814050133,296492.6220852388,371462.0157940395,84442.9006000065,5001.551289118072 -12717,15694,28601,-9,28598,28600,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1016.310625760176,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,5,1,1,1290,9363.302851415323,0,0,0,1197.410499713033 -12718,15695,28602,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.025519597696801,9.284348602378259,0,0,0,-991.394045831765,0,-9,-9,2019,11,3,55,53,1,3,0,17.50016107595179,17.50016107595179,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,4,2,0,0,7,8,5,1,181,229265.0479864021,56821.67299496572,0,0,2797.704432149067 -12719,15696,28603,28604,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,11,-11,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.84,42.48,46.01,44.17,10,1,1,0,0,0,4,1,0,445.5,140613.1124057999,47508.54327669129,42869.53860023814,25860.83493967504,3035.902740195667 -12719,15696,28604,28603,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,30,11,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.420128992468388,12.88158142819944,66.67335814912938,0,1,0,1,0,0,46.01,44.17,60.84,42.48,6.666666666666667,1,1,0,0,0,4,1,0,445.5,140613.1124057999,47508.54327669129,42869.53860023814,25860.83493967504,3035.902740195667 -12719,15697,28605,-9,28604,28603,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-914.6006949621221,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.32,58.41,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,470,0,0,0,0,469.7228161050723 -12720,15698,28606,28607,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.766747484978924,5.683574570879183,6,6,-21.01607464075875,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2983710497873,5.762539106912545,54.94,53.18,57.25,20.23,8.333333333333334,1,1,0,0,0,13,2,1,762,219440.3644231131,-36312.60537692904,157398.5930413592,0,2419.005046823092 -12720,15698,28607,28606,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.593505169454591,6.313448299851772,6,-6,50.70873158745378,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.650815836613878,6.634946812114118,57.25,20.23,54.94,53.18,5,1,1,0,0,0,13,2,1,762,219440.3644231131,-36312.60537692904,157398.5930413592,0,2419.005046823092 -12721,15699,28608,28609,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.107945344309988,7.370830644195522,19,10,16.15259092205445,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.828434441069689,7.399538078365171,34.39,40.86,49.52,55.68,8.333333333333334,1,1,0,0,0,5,3,1,314.5,748248.4270945434,620591.375965049,166586.9054406348,0,2745.938592110476 -12721,15699,28609,28608,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.513229761486097,6.54122862724022,19,-10,50.13312260111962,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.49820106831142,49.52,55.68,34.39,40.86,8.333333333333334,1,1,0,0,8,5,3,1,314.5,748248.4270945434,620591.375965049,166586.9054406348,0,2745.938592110476 -12722,15700,28610,-9,28611,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.7547793733949,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,899.25,408760.7843168441,0,163922.9052031134,0,3311.434668822622 -12722,15700,28611,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,1,0,5.96256354893503,6.106300522161648,0,0,-1080.433954386872,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,6.090068098718276,0,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,899.25,408760.7843168441,0,163922.9052031134,0,3311.434668822622 -12722,15700,28612,-9,28611,-9,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1092.120781624724,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.1,43.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,899.25,408760.7843168441,0,163922.9052031134,0,3311.434668822622 -12722,15700,28613,-9,28611,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-841.3067230117747,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.7040130487541205,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,899.25,408760.7843168441,0,163922.9052031134,0,3311.434668822622 -12722,15701,28614,-9,28611,-9,1,1,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1140.271252844868,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,31.54,60.02,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,1570,0,0,0,0,219.6158390773777 -12723,15702,28615,28618,28621,-9,1,0,32,2,4,0,2,2,-9,1,4,0,0,0,5,-7,-66.05806715417894,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,.4931275740569147,0,46.26,40.89,57.76,54.51,1.666666666666667,3,4,0,0,0,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15702,28616,-9,28615,28618,1,1,16,2,4,0,3,3,-9,0,5,0,0,0,0,0,-987.1560544158718,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,61,-9,-9,7,3,4,0,0,0,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15702,28617,-9,28615,28618,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.152942485382,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15702,28618,28615,-9,-9,1,1,39,2,4,0,2,2,-9,0,4,8.647311043868118,8.370061587240766,0,5,7,-51.01811313547704,0,-9,-9,2019,6,0,65,70,1,0,0,10.1595913999348,10.1595913999348,0,0,0,0,2,1,1,0,0,0,57.76,54.51,46.26,40.89,10,4,2,0,0,8,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15702,28619,-9,28615,28618,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1131.485027603702,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15702,28620,-9,28615,28618,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.814231596323,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,743.1666666666666,172178.2985007083,55449.49941157605,208613.3138394011,224062.8132620606,3509.536912354223 -12723,15703,28621,-9,-9,-9,1,0,60,2,4,0,2,2,-9,0,2,6.942259340896565,7.165118836480169,0,0,0,-932.3327490633625,0,-9,-9,2019,6,0,18,15,1,0,0,6.928486898997009,6.928486898997009,0,0,0,0,14.5,1,1,0,.5781868558298613,0,63.65,35.93,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,191,82421.69391608259,0,204281.1838626965,27190.77399652785,-7.450323077962821 -12724,15704,28622,28623,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.109485769721664,7.4835834974424,0,9,-5,-15.89610929660295,0,2,1,2019,17,5,25,25,1,5,0,6.130325142680204,6.130325142680204,0,0,0,0,0,1,1,0,0,0,48.29,51.82,56.5,48.33,3.333333333333333,1,1,0,0,10,2,3,1,570.5,-80732.93700998608,41101.50973359468,0,0,2134.550930090858 -12724,15704,28623,28622,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.221148130129228,8.22995664581026,0,9,5,135.4413574536606,0,2,2,2019,12,1,42,41,1,1,0,8.960895729142692,8.960895729142692,0,0,0,0,0,1,1,0,0,0,56.5,48.33,48.29,51.82,1.666666666666667,1,1,0,0,8,2,3,1,570.5,-80732.93700998608,41101.50973359468,0,0,2134.550930090858 -12724,15704,28624,-9,28622,28623,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.0305255016044,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,570.5,-80732.93700998608,41101.50973359468,0,0,2134.550930090858 -12724,15704,28625,-9,28622,28623,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.6863640356768,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,3,1,570.5,-80732.93700998608,41101.50973359468,0,0,2134.550930090858 -12725,15705,28626,28627,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.330940583689501,7.790566136224089,6,-2,28.98671590607664,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.075931287091787,7.656479948314178,57.16,56.15,59.4,29.59,8.333333333333334,1,1,0,0,7,7,3,1,1779.5,754381.5340889597,233574.0997999763,350560.7878000388,0,2787.304209726479 -12725,15705,28627,28626,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.619367963284548,6.04811681241683,6,2,-10.95876156832941,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.937055505093104,59.4,29.59,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,1779.5,754381.5340889597,233574.0997999763,350560.7878000388,0,2787.304209726479 -12726,15706,28628,28629,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,9.384509321272677,9.429609595483749,0,20,-3,22.05163022747318,0,1,1,2019,2,0,30,40,1,0,0,49.30743906864205,49.30743906864205,0,0,0,0,71.5,0,0,0,4.622694064097743,0,58.62,52.91,27.79,62.9,8.333333333333334,1,1,0,0,8,9,5,1,334.5,725702.2970739681,374261.4870201942,698937.9509943279,399394.780381415,5840.904269310758 -12726,15706,28629,28628,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,9.619912795336555,9.849075552475508,0,21,3,93.51002820420624,0,2,2,2019,30,12,45,50,1,12,0,44.94606505549746,44.94606505549746,0,0,0,0,0,0,0,0,5.609524904523555,0,27.79,62.9,58.62,52.91,3.333333333333333,1,1,0,0,8,9,5,1,334.5,725702.2970739681,374261.4870201942,698937.9509943279,399394.780381415,5840.904269310758 -12726,15706,28630,-9,28628,28629,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.4845474287662,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,334.5,725702.2970739681,374261.4870201942,698937.9509943279,399394.780381415,5840.904269310758 -12726,15706,28631,-9,28628,28629,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.296418038428,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,334.5,725702.2970739681,374261.4870201942,698937.9509943279,399394.780381415,5840.904269310758 -12727,15707,28632,28633,-9,-9,1,0,32,0,0,0,2,2,-9,0,1,8.104816241135094,8.105681360572007,0,2,-2,-126.7229252610744,0,2,2,2019,7,1,38,37,1,1,0,8.224759974969192,8.224759974969192,0,0,0,0,0,0,0,0,6.804609141110667,0,47.89,46.23,50,57,6.666666666666667,1,1,0,0,8,2,5,1,1195.5,29199.30429677515,0,0,0,4097.028842436858 -12727,15707,28633,28632,-9,-9,1,1,34,0,0,0,3,3,-9,0,4,8.734155229391092,8.362394747546247,0,2,2,33.77906290824045,0,-9,-9,2019,10,0,40,50,1,1,0,14.51759918085521,14.51759918085521,0,0,0,0,0,0,0,0,0,0,50,57,47.89,46.23,7,4,1,0,0,1,2,5,1,1195.5,29199.30429677515,0,0,0,4097.028842436858 -12728,15708,28634,28635,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.624895437067849,8.598164974333129,0,10,0,-17.2866547682344,0,2,2,2019,11,1,37,38,1,1,0,21.27240786294045,21.27240786294045,0,0,0,0,7,0,0,0,0,0,56.11,44.4,57.24,46.7,8.333333333333334,1,1,0,0,8,6,5,1,339,360106.0359439313,453193.7917589312,139205.2772686426,91363.28377695783,4140.461808224482 -12728,15708,28635,28634,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.48507285507044,8.493042230131426,0,10,0,94.13396613425944,0,2,2,2019,7,0,45,46,1,0,0,12.9702477393349,12.9702477393349,0,0,0,0,7,0,0,0,0,0,57.24,46.7,56.11,44.4,8.333333333333334,1,1,0,0,5,6,5,1,339,360106.0359439313,453193.7917589312,139205.2772686426,91363.28377695783,4140.461808224482 -12729,15709,28636,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1045.136302283609,0,-9,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,8,1,0,445,141672.3192041733,0,0,0,1554.099481888338 -12730,15710,28637,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.993540875092806,7.844906758189741,4.229549516469374,0,0,-991.4636223483087,0,2,2,2019,12,0,48,36,1,2,0,8.420548914344741,8.420548914344741,0,0,0,0,0,0,0,0,0,4.58272029963011,48,49,-9,-9,7,3,4,0,1,7,8,4,0,577,1072068.89891884,435061.8549485606,427025.9044467186,111141.1439966823,1564.818469857258 -12730,15711,28638,-9,28637,-9,1,0,23,0,0,0,2,2,-9,0,4,8.436168321755812,8.265780616246946,0,0,0,-950.4140669479575,0,2,2,2019,11,0,35,36,1,2,1,13.67484715858037,13.67484715858037,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,347,-226738.5020024854,0,0,0,2154.911725285225 -12730,15712,28639,-9,28637,-9,1,1,19,0,0,0,2,2,-9,0,4,8.197343749279927,7.952812846295134,0,0,0,-1006.533345927604,0,2,-9,2019,11,0,25,25,1,2,1,16.96581757613476,16.96581757613476,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,4,0,301,-4567.444491642382,60174.08896772753,0,0,1937.158287250516 -12730,15713,28640,-9,28637,-9,1,1,29,0,0,0,1,1,-9,0,4,8.836433814229126,8.8472245440057,0,0,0,-984.9314764710005,0,2,-9,2019,10,0,36,36,1,1,1,21.38334199677953,21.38334199677953,0,0,0,0,0,0,0,0,3.976386047681667,0,49,58,-9,-9,7,3,4,0,0,1,8,5,0,210,-50370.39283754615,91850.62441099172,83306.43721296244,73707.17793021249,2953.074125441596 -12730,15714,28641,-9,28637,-9,1,0,26,0,0,0,1,1,-9,0,4,8.017403541214955,7.689584939013598,0,0,0,-926.9806644645897,0,2,-9,2019,11,0,40,36,1,2,1,11.8827038962918,11.8827038962918,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,2,8,4,0,173,117438.5832890666,244.9689627986043,0,0,1504.876927276015 -12731,15715,28642,-9,28643,-9,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-937.9462500386516,-9,3,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,-9,-9,1.666666666666667,3,4,0,0,0,6,1,0,309,-665.6646615571408,0,0,0,1564.894690326216 -12731,15715,28643,-9,-9,-9,1,0,45,0,2,0,3,3,-9,1,1,0,0,0,0,0,-933.2430150418336,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,19.03,-9,-9,0,4,2,0,1,0,6,1,0,309,-665.6646615571408,0,0,0,1564.894690326216 -12731,15716,28644,-9,28643,-9,1,1,25,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1257.423542364833,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,47.96,36.6,-9,-9,3.333333333333333,4,2,1,1,0,6,1,0,906,232894.2570640699,0,0,0,393.9844766491428 -12732,15717,28645,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.262442908109914,6.909619149862932,0,0,-1082.322178042211,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.128721351549079,49.38,34.36,-9,-9,3.333333333333333,3,4,0,1,7,8,3,0,516,349574.3185846483,206622.9008947411,161797.9624291167,0,859.9984626383711 -12732,15718,28646,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-927.6649072834447,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,29.08,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,560,0,0,0,0,187.1899548555579 -12733,15719,28647,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.038351118436564,8.196409974298826,0,0,0,-1020.36515389797,0,2,2,2019,9,0,39,0,1,0,0,8.145257867146029,8.145257867146029,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,6,6,4,0,61,166255.8235679612,18356.67764494916,268337.2745828426,114536.2556017584,1831.837765630931 -12734,15720,28648,28649,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,40,0,76.12908992046249,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,.8616900359735791,0,0,0,0,3.879298190777118,0,50,50,51.83,57.2,7,1,1,0,0,5,5,3,1,916,1841640.415550673,580628.0678713063,711033.975744291,0,1307.716644687706 -12734,15720,28649,28648,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.148349062833145,8.109361851910215,0,40,0,59.60241594547243,0,3,3,2019,8,0,47,42,1,0,0,8.215335540991708,8.215335540991708,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50,50,8.333333333333334,1,1,0,0,12,5,3,1,916,1841640.415550673,580628.0678713063,711033.975744291,0,1307.716644687706 -12735,15721,28650,28651,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.808329481287154,6.577524320205211,44,-5,7.415289820408241,0,2,2,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,.0385386612080279,7.111269379338617,40,60.35,51.83,57.2,1.666666666666667,1,1,0,0,8,10,3,1,2654.5,1234705.563627708,730138.0814499804,355794.2363399024,0,1809.669330898763 -12735,15721,28651,28650,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.037862758435176,7.100256862864992,44,5,93.34816202210902,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,3.846444301208569,7.359561006093065,51.83,57.2,40,60.35,3.333333333333333,1,1,0,0,9,10,3,1,2654.5,1234705.563627708,730138.0814499804,355794.2363399024,0,1809.669330898763 -12736,15722,28652,28658,-9,-9,1,1,36,1,5,0,3,3,-9,0,5,0,0,0,4,9,64.25741203362298,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.01000000000001,28.53,58.41,43.41,8.333333333333334,3,4,1,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28653,-9,28658,28652,1,0,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-978.6133038313613,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.937660035253815,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28654,-9,28658,28652,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-977.1671431416778,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28655,-9,28658,28652,1,1,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1030.151281684809,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28656,-9,28658,28652,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-829.3752543478211,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28657,-9,28658,28652,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1054.448719215749,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12736,15722,28658,28652,-9,-9,1,0,27,1,5,0,1,1,-9,0,4,7.695815605149783,7.797896117827142,0,4,0,-47.36708636109559,0,-9,-9,2019,9,0,28,44,1,0,0,8.162754713283382,8.162754713283382,0,0,0,0,0,1,1,0,0,0,58.41,43.41,65.01000000000001,28.53,8.333333333333334,3,4,0,0,1,9,2,0,1195.714285714286,57105.3177041014,14506.04998136799,0,0,3523.355853043831 -12737,15723,28659,28660,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.073246152382694,7.899870820313662,0,31,6,13.15676037363994,0,2,3,2019,8,0,36,36,1,0,0,9.429536856696105,9.429536856696105,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,828,556900.4115210741,504502.5979120394,225843.9529272807,51272.19158716996,4259.009489197986 -12737,15723,28660,28659,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.782426167450474,8.632181701222027,0,31,-6,-209.1190193144039,0,2,2,2019,8,0,38,37,1,0,0,23.82075855891655,23.82075855891655,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,13,5,1,828,556900.4115210741,504502.5979120394,225843.9529272807,51272.19158716996,4259.009489197986 -12737,15724,28661,-9,28660,28659,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1056.995919185174,-9,1,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1182,-160766.8911117547,0,0,0,0 -12738,15725,28662,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.367064656810694,6.247542441535618,0,0,-977.0799612983747,-9,3,3,2019,5,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.677559272520446,6.258359703507709,57.03,48.06,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,174,282740.140247805,210452.8364206373,0,0,787.186188803344 -12739,15726,28663,28664,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,8.035110269748266,8.097985342551361,0,2,-1,32.71186265525743,0,1,2,2019,14,4,45,50,1,4,0,7.126777693480639,7.126777693480639,0,0,0,0,0,0,0,0,0,0,37.02,58.63,54.74,57.22,3.333333333333333,2,3,0,0,6,2,4,0,1317.5,31942.37849740677,7540.883944131783,64281.73297398706,72897.27354927862,2465.314981221865 -12739,15726,28664,28663,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.070427694896457,8.462448530357964,0,2,1,5.261633455680934,0,-9,-9,2019,12,2,38,41,1,2,0,8.994215518657509,8.994215518657509,0,0,0,0,0,0,0,0,0,0,54.74,57.22,37.02,58.63,8.333333333333334,1,1,0,0,2,2,4,0,1317.5,31942.37849740677,7540.883944131783,64281.73297398706,72897.27354927862,2465.314981221865 -12740,15727,28665,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,6.560876082960381,7.268044849112769,0,0,-974.2356801145515,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.994435918977041,6.994345370439434,48.7,40.16,-9,-9,6.666666666666667,1,1,0,0,8,1,3,1,145,546182.8680218119,300389.5739425837,48360.50945194386,0,1315.864586251337 -12741,15728,28666,28668,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.635721900119131,9.006212591315075,0,9,-3,-8.166795414400777,0,-9,-9,2019,7,0,37,36,1,0,0,18.9479559220743,18.9479559220743,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.55,57.73,10,1,1,0,0,12,12,5,1,592,289269.1714176647,0,263387.555861419,70422.18810156955,3736.450639681741 -12741,15728,28667,-9,28668,28666,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-876.7478195494828,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,592,289269.1714176647,0,263387.555861419,70422.18810156955,3736.450639681741 -12741,15728,28668,28666,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,8.076819986624292,7.956520574879839,0,9,3,41.80378235271877,0,2,2,2019,11,1,38,38,1,1,0,10.11384766147683,10.11384766147683,0,0,0,0,0,1,1,0,0,0,47.55,57.73,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,592,289269.1714176647,0,263387.555861419,70422.18810156955,3736.450639681741 -12742,15729,28669,28670,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,5.580902890179735,5.878065128406796,0,3,7,-32.77973970784989,0,-9,-9,2019,8,0,45,50,1,0,0,.783214569936508,.783214569936508,0,0,0,0,0,0,0,0,3.98423659141501,0,40.96,44.45,57.06,57.76,8.333333333333334,1,1,0,0,10,13,3,0,301,40399.99742034231,-30009.67641971428,56220.2219608078,84099.87029625729,1417.778653794737 -12742,15729,28670,28669,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.815875793490724,7.918925718244011,0,3,-7,-132.9775116230152,0,2,3,2019,5,0,35,16,1,0,0,8.35313281395563,8.35313281395563,0,0,0,0,0,0,0,0,0,0,57.06,57.76,40.96,44.45,10,1,1,0,0,6,13,3,0,301,40399.99742034231,-30009.67641971428,56220.2219608078,84099.87029625729,1417.778653794737 -12743,15730,28671,28672,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.797548737523957,7.381287396067767,7,9,26.85856319403876,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.274376522326413,7.613405245541403,55,45,57.16,56.15,8,1,1,0,0,0,9,4,1,208.5,1137473.185791091,493570.662762681,473257.7826189474,0,7718.208535009934 -12743,15730,28672,28671,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,8.120841553880211,8.29657371233758,55,0,120.0436140638965,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.674853367576935,8.280396730114596,57.16,56.15,55,45,8.333333333333334,1,1,0,0,0,9,4,1,208.5,1137473.185791091,493570.662762681,473257.7826189474,0,7718.208535009934 -12744,15731,28673,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.605195827529458,7.42486629710622,0,0,-1067.965278349038,-9,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.372421349866428,62.39,56.71,-9,-9,10,1,1,0,0,0,9,3,1,107,448161.3368419413,21326.46296914236,227880.4988652783,0,1311.415190460566 -12745,15732,28674,-9,28677,28676,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1054.997966845422,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,0,619,229818.0748445197,-35132.6013099692,140114.4480026918,67324.66554129308,1385.326813431938 -12745,15732,28675,-9,28677,28676,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-898.9452417205541,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,53.29,-9,-9,5,2,3,0,0,0,8,2,0,619,229818.0748445197,-35132.6013099692,140114.4480026918,67324.66554129308,1385.326813431938 -12745,15732,28676,28677,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,7.17649406101719,7.506466959697684,0,19,4,74.08893287864966,-9,3,3,2019,11,0,24,0,1,0,0,5.890142380108886,5.890142380108886,0,0,0,0,0,1,1,0,0,0,38.86,40.43,37.91,48.63,5,4,5,0,0,8,8,2,0,619,229818.0748445197,-35132.6013099692,140114.4480026918,67324.66554129308,1385.326813431938 -12745,15732,28677,28676,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,19,-4,-72.48620297512637,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.91,48.63,38.86,40.43,5,2,3,1,0,2,8,2,0,619,229818.0748445197,-35132.6013099692,140114.4480026918,67324.66554129308,1385.326813431938 -12746,15733,28678,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.07463669931192,6.965484034913834,0,0,0,-1116.722346718105,0,-9,-9,2019,6,0,30,14,1,0,0,4.474772969795304,4.474772969795304,0,0,0,0,0,1,1,0,0,0,59.04,51.29,-9,-9,10,3,4,0,0,2,6,2,1,928,15303.96360073981,0,0,0,680.5450451372112 -12746,15734,28679,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.005307514545861,7.446862927562521,0,0,-1072.807822710698,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.091528334732968,51,46,-9,-9,7,4,6,0,0,0,6,2,1,287,432606.4260998979,298752.1037892532,224558.2961577621,0,1219.00365719787 -12747,15735,28680,28681,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.687328826491163,8.70465837933498,0,1,-1,38.49627492753898,-9,-9,-9,2019,10,0,30,0,1,1,0,18.56331397837034,18.56331397837034,0,0,0,0,0,0,0,0,0,0,50,57,55.34,54.26,7,4,1,0,0,1,13,5,0,658,74004.36715667689,-31666.42534928613,0,0,3311.205774971888 -12747,15735,28681,28680,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.501044722064154,7.350696813505781,0,1,1,-95.60056453642441,0,2,2,2019,11,1,35,30,1,1,0,6.030940380171485,6.030940380171485,0,0,0,0,0,0,0,0,3.484501826270302,0,55.34,54.26,50,57,8.333333333333334,1,1,0,0,10,13,5,0,658,74004.36715667689,-31666.42534928613,0,0,3311.205774971888 -12748,15736,28682,28683,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.545782236215409,8.618368997947687,7,1,15.76844316087912,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.829306321256823,8.171327381880412,57.16,56.15,59.54,46.05,8.333333333333334,1,1,0,0,6,6,5,1,847,550723.1288211914,103930.8378397427,369530.7746597228,0,5594.541143387664 -12748,15736,28683,28682,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,9.554468096208316,9.616719102022877,5.884812398170832,7,-1,-58.91969061151933,0,2,3,2019,6,0,40,38,1,0,0,34.66052993245391,34.66052993245391,0,0,0,0,0,0,0,0,0,6.575378022005834,59.54,46.05,57.16,56.15,6.666666666666667,4,2,0,0,10,6,5,1,847,550723.1288211914,103930.8378397427,369530.7746597228,0,5594.541143387664 -12749,15737,28684,-9,28685,28687,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.939575573823,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,1304.25,47569.49706742636,53960.80318499186,106183.1279252522,67458.12920013019,2079.847240089837 -12749,15737,28685,28687,-9,-9,1,0,33,0,3,0,2,2,-9,0,5,0,0,0,13,-7,-125.3251362663516,0,2,1,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.05,44.81,54.79,55.86,8.333333333333334,2,3,1,0,0,2,3,1,1304.25,47569.49706742636,53960.80318499186,106183.1279252522,67458.12920013019,2079.847240089837 -12749,15737,28686,-9,28685,28687,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.907198390845,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,1304.25,47569.49706742636,53960.80318499186,106183.1279252522,67458.12920013019,2079.847240089837 -12749,15737,28687,28685,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.213788749899896,8.302011560289516,0,13,7,-22.57396218915442,0,3,2,2019,10,0,38,38,1,0,0,12.75372705466569,12.75372705466569,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.05,44.81,8.333333333333334,2,3,0,0,10,2,3,1,1304.25,47569.49706742636,53960.80318499186,106183.1279252522,67458.12920013019,2079.847240089837 -12750,15738,28688,-9,28691,28693,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1016.128827642688,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28689,-9,28691,28693,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1075.892659985839,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28690,-9,28691,28693,1,0,16,0,5,1,3,0,-9,0,4,0,0,0,0,0,-943.5008740670618,-9,3,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27,57.58,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28691,28693,-9,-9,1,0,45,0,5,0,3,3,-9,1,4,0,0,0,24,-8,52.81816456862802,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,54,8,2,3,0,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28692,-9,28691,28693,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-899.6287556386779,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28693,28691,-9,-9,1,1,53,0,5,0,3,3,-9,0,4,7.10095666327917,7.192842906797533,0,24,8,-29.75843679812499,0,3,3,2019,9,0,24,12,1,1,0,7.263425467884788,7.263425467884788,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,2,3,0,1,3,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15738,28694,-9,28691,28693,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1006.70293748257,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,496.8571428571428,527605.9836801948,34020.26111225646,516837.2328161981,0,4536.615150616017 -12750,15739,28695,-9,28691,28693,1,1,25,0,5,0,2,2,-9,0,4,0,0,0,0,0,-1030.888409422959,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,1,0,8,1,0,661,0,0,0,0,111.9287664761689 -12750,15740,28696,-9,28691,28693,1,0,23,0,5,0,2,2,-9,0,3,7.919818722196649,7.538542445627186,0,0,0,-1160.785784239067,0,3,3,2019,9,0,40,50,1,0,1,9.117005793277862,9.117005793277862,0,0,0,0,0,1,1,0,0,0,47.37,51.46,-9,-9,6.666666666666667,2,3,0,0,4,8,4,0,192,-4445.147813688927,33981.00025726532,0,0,1223.447905178807 -12750,15741,28697,-9,28691,28693,1,0,20,0,5,0,2,2,-9,0,5,0,0,0,0,0,-978.071892351973,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,60.92,43.72,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,262,72865.33604532573,0,0,0,208.9928046855642 -12750,15742,28698,-9,28691,28693,1,1,19,0,5,0,2,2,-9,0,4,0,0,0,0,0,-1053.3101851022,1,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,1614,0,0,0,0,544.9447471333917 -12751,15743,28699,-9,-9,28701,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1101.908789281184,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,1197.666666666667,1309064.488606747,545409.0634779417,335652.3702523154,0,3753.870743150137 -12751,15743,28700,28701,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.094099975679686,8.25824195628971,0,4,-4,53.5813568539024,0,-9,-9,2019,6,0,35,40,1,0,0,11.53481609428476,11.53481609428476,0,0,0,0,0,1,1,0,2.892376319917239,0,53.14,51.28,52.48,54.33,8.333333333333334,1,1,0,0,4,11,5,1,1197.666666666667,1309064.488606747,545409.0634779417,335652.3702523154,0,3753.870743150137 -12751,15743,28701,28700,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.810125954963965,9.006997895162259,0,4,4,8.832858963899199,0,2,2,2019,5,0,45,40,1,0,0,23.06189035575078,23.06189035575078,0,0,0,0,0,1,1,0,7.56726824668102,0,52.48,54.33,53.14,51.28,6.666666666666667,1,1,0,0,9,11,5,1,1197.666666666667,1309064.488606747,545409.0634779417,335652.3702523154,0,3753.870743150137 -12751,15744,28702,-9,-9,28701,1,1,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1061.605227917422,0,2,1,2019,11,0,0,40,3,0,1,0,0,0,0,0,0,0,1,1,0,3.661457335457834,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,3,11,1,1,596,-276576.9787534842,0,0,0,-37.85417321550408 -12752,15745,28703,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1080.824003890747,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.23,34.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,434,95379.83056686631,0,0,0,417.4489546048753 -12753,15746,28704,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,5,7.560696447694689,8.162091052777532,0,0,0,-1021.859147802879,-9,1,3,2019,5,0,50,0,1,0,0,4.960821494867113,4.960821494867113,0,0,0,0,0,0,0,0,1.737911660725058,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,682,122254.7086618849,24764.14528537967,0,0,903.8782721777875 -12754,15747,28705,28708,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,0,0,0,15,3,-77.56562110142384,0,3,3,2019,15,4,0,26,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.04,43.93,41.17,59.31,6.666666666666667,1,1,1,0,10,5,3,1,1240.5,857725.5538361717,-16033.81405991,408873.7418140277,196971.8617247721,1800.50568282355 -12754,15747,28706,-9,28705,28708,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.5110162533706,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1240.5,857725.5538361717,-16033.81405991,408873.7418140277,196971.8617247721,1800.50568282355 -12754,15747,28707,-9,28705,28708,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.053803851715,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,1240.5,857725.5538361717,-16033.81405991,408873.7418140277,196971.8617247721,1800.50568282355 -12754,15747,28708,28705,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.628523618210933,8.551650329918159,0,15,-3,180.8960214680705,0,2,3,2019,12,1,48,53,1,1,0,14.17655721777036,14.17655721777036,0,0,0,0,0,1,1,0,0,0,41.17,59.31,34.04,43.93,5,1,1,0,0,8,5,3,1,1240.5,857725.5538361717,-16033.81405991,408873.7418140277,196971.8617247721,1800.50568282355 -12755,15748,28709,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.538689105288702,4.60575462225347,0,0,-1098.547597912529,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.616446766911141,56.52,45.61,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,739,-55089.99057650479,-16369.78856929688,0,0,773.5652190092493 -12756,15749,28710,28711,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,56,-5,67.23861071859437,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.09,36.99,61.7,28.51,10,1,1,0,0,9,7,3,1,560.5,1581125.954249998,159660.91327971,541832.3488932485,0,1885.564805801205 -12756,15749,28711,28710,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.01920329647764,7.975081323685694,56,5,35.07074881708852,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.724651857973893,8.233254961238639,61.7,28.51,63.09,36.99,0,1,1,0,0,0,7,3,1,560.5,1581125.954249998,159660.91327971,541832.3488932485,0,1885.564805801205 -12757,15750,28712,28713,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.408387566982229,7.634379984149077,0,35,-3,121.2024953577766,0,3,2,2019,10,0,26,24,1,1,0,6.632739747176962,6.632739747176962,0,0,0,0,0,0,0,0,0,0,51,54,54,54,8,1,1,0,0,8,9,5,1,416.5,517468.666165059,93193.0557134733,421631.6480184013,58930.48462288595,9349.945417630923 -12757,15750,28713,28712,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.145190829180136,9.601722388050034,8.917445249121487,7,3,4.516996274456303,0,-9,-9,2019,9,0,37,37,1,1,0,24.54053612843123,24.54053612843123,0,0,0,0,0,0,0,0,5.12877852406787,9.318594681823104,54,54,51,54,8,1,1,0,0,1,9,5,1,416.5,517468.666165059,93193.0557134733,421631.6480184013,58930.48462288595,9349.945417630923 -12758,15751,28714,28715,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.143379821774294,8.605761541815502,0,10,-5,44.13933432112978,0,2,1,2019,11,0,50,25,1,0,0,8.129227050829664,8.129227050829664,0,0,0,0,0,0,0,0,1.79627741637036,0,47.44,59.35,49.05,54.24,8.333333333333334,1,1,0,0,11,4,4,1,190.5,402176.8816341029,219314.5907667569,202709.4556778029,0,1979.367790913384 -12758,15751,28715,28714,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,6.676211675013992,6.498330301173692,0,10,5,-9.938821219789959,0,2,3,2019,12,1,30,30,1,1,0,2.76862299725144,2.76862299725144,0,0,0,0,0,0,0,0,0,0,49.05,54.24,47.44,59.35,8.333333333333334,1,1,0,0,11,4,4,1,190.5,402176.8816341029,219314.5907667569,202709.4556778029,0,1979.367790913384 -12759,15752,28716,28717,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.219892742923186,8.307859078188988,7,1,-78.82692060091756,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.220372772293577,7.707386188316868,48.23,44.06,55.07,35.43,8.333333333333334,1,1,0,0,3,7,3,1,208,739633.7483058756,95020.52929081408,626964.007410518,0,3013.589405326637 -12759,15752,28717,28716,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,7,-1,-54.24346446414324,0,3,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.07,35.43,48.23,44.06,8.333333333333334,1,1,0,0,0,7,3,1,208,739633.7483058756,95020.52929081408,626964.007410518,0,3013.589405326637 -12760,15753,28718,28719,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.753421063130578,9.134711084725271,0,11,2,-61.14654463474464,-9,-9,-9,2019,12,0,47,0,1,0,0,18.99186015451864,18.99186015451864,0,0,0,0,0,1,0,1,0,0,52.4,55.58,55.87,53.99,6.666666666666667,1,1,0,1,12,1,5,1,378.5,2319362.66117677,989198.6186993744,628393.4087842922,0,5451.639462017776 -12760,15753,28719,28718,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.013131664953992,8.673812022858073,0,29,-2,-31.30852815655431,0,2,3,2019,3,0,41,41,1,0,0,20.82224557695266,20.82224557695266,0,0,0,0,0,1,0,1,0,0,55.87,53.99,52.4,55.58,6.666666666666667,1,1,0,0,11,1,5,1,378.5,2319362.66117677,989198.6186993744,628393.4087842922,0,5451.639462017776 -12760,15754,28720,-9,28719,28718,1,0,18,0,0,0,2,2,1,0,2,5.992701395962958,6.078415818533657,0,0,0,-1047.388871038193,-9,1,1,2019,21,6,18,0,1,6,1,2.474589196817082,2.474589196817082,0,0,0,0,0,1,0,1,0,0,23.91,49.04,-9,-9,6.666666666666667,1,1,0,1,1,1,2,1,462,-30020.60211533951,0,0,0,-29.35796147092873 -12761,15755,28721,28722,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.813735696777247,7.534886928299938,60,-1,28.34184171141323,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.16533365079803,57.16,56.15,63.74,31.32,8.333333333333334,1,1,0,0,0,2,3,1,815.5,705938.2653146909,180421.0438497677,301494.759238754,0,2313.296306697727 -12761,15755,28722,28721,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.263961687758514,7.29741091526757,60,1,49.04000231161452,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.261138244440474,63.74,31.32,57.16,56.15,8.333333333333334,1,1,0,0,2,2,3,1,815.5,705938.2653146909,180421.0438497677,301494.759238754,0,2313.296306697727 -12762,15756,28723,-9,28726,28724,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.141858455546,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,2,1,609.5,128238.6911175867,179307.9121505233,204131.3659966628,81741.18714351635,1763.163816245461 -12762,15756,28724,28726,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,4.481212846240687,4.736036293260154,0,6,0,36.16684141062255,0,-9,3,2019,11,0,40,47,1,0,0,.2567017401650193,.2567017401650193,0,0,0,0,0,1,1,0,7.116885157427172,0,37.17,45.07,57.33,53.46,6.666666666666667,1,1,0,0,8,9,2,1,609.5,128238.6911175867,179307.9121505233,204131.3659966628,81741.18714351635,1763.163816245461 -12762,15756,28725,-9,28726,28724,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.6248671997905,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,609.5,128238.6911175867,179307.9121505233,204131.3659966628,81741.18714351635,1763.163816245461 -12762,15756,28726,28724,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.051221121811635,7.279482382008829,0,6,0,52.32483891048253,0,2,3,2019,10,0,12,25,1,0,0,16.02177052348659,16.02177052348659,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.17,45.07,10,1,1,0,0,5,9,2,1,609.5,128238.6911175867,179307.9121505233,204131.3659966628,81741.18714351635,1763.163816245461 -12763,15757,28727,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.191179075635677,8.093872559380156,0,0,0,-905.3755299063191,0,3,3,2019,8,0,36,46,1,0,0,13.56870657048976,13.56870657048976,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,1,7,9,4,1,394,421290.0584358138,-7341.180905122834,270859.0545345133,0,1670.396105251001 -12764,15758,28728,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.555279212269644,8.693521629821172,0,0,0,-1044.101362157703,0,-9,-9,2019,7,0,24,24,1,0,0,26.9122902390103,26.9122902390103,0,0,0,0,0,1,1,0,2.040581435484838,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,5,5,0,340,-37967.57528261171,0,80972.1346632988,11397.32193769239,4448.166127566805 -12764,15759,28729,-9,28728,-9,1,1,29,0,0,0,2,2,-9,0,4,7.594589574713368,7.63983165134967,0,0,0,-988.7931836560741,0,2,2,2019,10,0,48,48,1,1,1,4.327204164120686,4.327204164120686,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,3.333333333333333,4,2,0,0,9,5,3,0,1230,41857.61132410316,0,0,0,1600.943542524446 -12765,15760,28730,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,9.196678213744503,9.010841852514581,6.186560800630153,0,0,-1011.237017592545,0,2,2,2019,10,0,70,65,1,0,0,18.58535141505678,18.58535141505678,0,0,0,0,0,1,1,0,8.166793098564389,6.4963448132433,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,800,-40172.68653474534,128718.4378498645,0,0,4451.794401668589 -12766,15761,28731,28732,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,9.447659948502256,9.40337898196851,0,7,-3,81.53810133131965,0,2,3,2019,7,0,84,41,1,0,0,19.87130777124711,19.87130777124711,0,0,0,0,0,1,1,0,0,0,54.1,59.11,34.63,31.56,8.333333333333334,1,1,0,0,8,7,5,1,648.5,326847.9432904735,287540.6896947699,280226.0468633034,167576.053292873,4224.888283904176 -12766,15761,28732,28731,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,7,3,-52.34240635512517,0,3,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,34.63,31.56,54.1,59.11,3.333333333333333,1,1,0,0,4,7,5,1,648.5,326847.9432904735,287540.6896947699,280226.0468633034,167576.053292873,4224.888283904176 -12767,15762,28733,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.035016848618366,5.770203743809674,0,0,-1080.520975258186,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.661789799075414,5.960685255001901,41.03,51.1,-9,-9,5,1,1,1,1,12,2,2,1,521,110840.965986282,417331.6117110331,0,0,703.9951959638065 -12768,15763,28734,-9,28736,28737,1,0,31,0,0,0,2,2,-9,0,4,7.517424257016831,7.596460263234174,0,0,0,-1111.107097066101,-9,3,3,2019,5,0,35,0,1,0,1,5.770093315800418,5.770093315800418,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,2,3,0,0,7,2,3,0,154,118895.4467337235,0,0,0,1179.036947596165 -12768,15764,28735,-9,28736,28737,1,1,32,0,0,0,1,1,-9,0,5,7.850686619651082,7.988424987358779,0,0,0,-1009.987796620854,-9,3,3,2019,11,0,45,0,1,0,1,7.069169609007526,7.069169609007526,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,2,3,0,0,6,2,3,0,867,21196.17810252861,-26297.64646636763,0,0,524.5667460140514 -12768,15765,28736,28737,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,0,0,33,-3,-57.94567532816339,-9,3,3,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,38,60.12,54.8,10,2,3,0,0,0,2,3,0,1084.5,396858.4764604497,230320.6372573124,176573.6360422448,0,1560.068281097531 -12768,15765,28737,28736,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.6806388836193,7.863879539485661,0,32,3,-31.99434244791566,-9,-9,-9,2019,12,0,35,0,1,0,0,8.298115012744757,8.298115012744757,0,0,0,0,0,1,1,0,0,0,60.12,54.8,44,38,10,2,3,0,0,9,2,3,0,1084.5,396858.4764604497,230320.6372573124,176573.6360422448,0,1560.068281097531 -12769,15766,28738,28739,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.580528860875443,8.188359627256281,0,3,3,1.036671046694288,0,-9,-9,2019,6,0,40,40,1,0,0,14.90091544565391,14.90091544565391,0,0,0,0,2,1,1,0,0,0,45.91,59.89,54.3,45.3,8.333333333333334,4,2,0,0,5,8,4,1,315,522438.8600142584,249631.2747056677,489076.9434410402,41205.44780611516,3945.901037725905 -12769,15766,28739,28738,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.25749490294225,8.433982851696207,0,3,-3,40.2425823374101,0,-9,-9,2019,7,0,55,48,1,0,0,8.713152846815516,8.713152846815516,0,0,0,0,0,1,1,0,0,0,54.3,45.3,45.91,59.89,8.333333333333334,4,2,0,0,8,8,4,1,315,522438.8600142584,249631.2747056677,489076.9434410402,41205.44780611516,3945.901037725905 -12769,15766,28740,-9,28739,28738,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.330030079547,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,8,4,1,315,522438.8600142584,249631.2747056677,489076.9434410402,41205.44780611516,3945.901037725905 -12769,15767,28741,-9,28739,28738,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-932.0717396193464,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,409,249304.6462198293,0,0,0,0 -12770,15768,28742,-9,28745,28744,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.77453215079,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1903,808224.9178802797,184331.9765912541,685574.5677403359,191752.384214103,9049.364800438188 -12770,15768,28743,-9,28745,28744,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.1716374220657,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1903,808224.9178802797,184331.9765912541,685574.5677403359,191752.384214103,9049.364800438188 -12770,15768,28744,28745,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.750063993056488,9.751778242450067,0,14,3,-51.0692566158345,0,3,3,2019,6,0,28,25,1,0,0,75.60918796574546,75.60918796574546,0,0,0,0,0,0,0,0,2.706760293293612,0,57.06,57.76,48.45,49.46,8.333333333333334,1,1,0,0,9,6,5,1,1903,808224.9178802797,184331.9765912541,685574.5677403359,191752.384214103,9049.364800438188 -12770,15768,28745,28744,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.853982232717099,8.81271116466076,0,16,-3,-124.5736668289464,0,2,2,2019,10,0,30,36,1,0,0,29.20608048376815,29.20608048376815,0,0,0,0,0,0,0,0,7.249021295932403,0,48.45,49.46,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,1903,808224.9178802797,184331.9765912541,685574.5677403359,191752.384214103,9049.364800438188 -12771,15769,28746,28747,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.263643329430069,7.347257873019458,0,10,8,29.86156759278878,0,2,2,2019,9,0,24,25,1,0,0,5.878267336359746,5.878267336359746,0,0,0,0,0,1,1,0,0,0,38.69,61.75,52,54.51,6.666666666666667,1,1,0,0,11,11,5,1,553,705363.0220237565,317440.444064036,220674.3274047603,62482.00765211989,2914.887058064777 -12771,15769,28747,28746,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.963202142437293,8.805776507910883,0,10,-8,16.8904339932452,0,3,-9,2019,10,0,50,50,1,0,0,16.02679796677508,16.02679796677508,0,0,0,0,0,1,1,0,0,0,52,54.51,38.69,61.75,5,1,1,0,0,11,11,5,1,553,705363.0220237565,317440.444064036,220674.3274047603,62482.00765211989,2914.887058064777 -12771,15770,28748,-9,28746,28747,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-1006.17573881765,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.737751586760035,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1215,-42156.92777502885,0,0,0,641.8986809454696 -12772,15771,28749,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.795849468899261,8.516891977943189,0,0,0,-977.5490346603989,0,2,2,2019,19,7,40,40,1,7,0,16.03444996442538,16.03444996442538,0,0,0,0,0,1,1,0,0,0,21.36,61.89,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,714,47277.6807379375,-55360.40663009655,0,0,2607.982370617185 -12773,15772,28750,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.272279344571185,7.35144950512517,0,0,0,-981.5606593229329,0,2,-9,2019,7,0,35,30,1,0,0,4.929210459541061,4.929210459541061,0,0,0,0,0,1,1,0,0,0,50.46,48.14,-9,-9,8.333333333333334,1,1,0,0,5,4,2,0,549,122925.655284938,101316.9250679719,0,0,1533.562696037031 -12773,15772,28751,-9,28750,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.852611397792,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.2173245395203001,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,549,122925.655284938,101316.9250679719,0,0,1533.562696037031 -12774,15773,28752,-9,28753,28754,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.3051174483907,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,3362.666666666667,203059.9144814867,102762.6856753714,298445.2788610649,290675.6619990204,4169.625544790657 -12774,15773,28753,28754,-9,-9,1,0,36,0,2,0,3,3,-9,0,2,0,0,0,9,-3,4.869641604073598,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,33.82,44.38,42.22,45.38,6.666666666666667,1,1,0,0,0,6,4,0,3362.666666666667,203059.9144814867,102762.6856753714,298445.2788610649,290675.6619990204,4169.625544790657 -12774,15773,28754,28753,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.963560587271443,9.075035861056262,0,9,3,120.0159429514033,0,2,3,2019,16,4,55,55,1,4,0,18.06449144025883,18.06449144025883,0,0,0,0,0,1,1,0,0,0,42.22,45.38,33.82,44.38,5,1,1,0,0,12,6,4,0,3362.666666666667,203059.9144814867,102762.6856753714,298445.2788610649,290675.6619990204,4169.625544790657 -12775,15774,28755,-9,-9,-9,1,0,26,1,3,0,2,2,-9,0,3,0,0,0,0,0,-1026.463617043467,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.26,54.12,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,714,-82333.06443970463,0,0,0,1737.944396304168 -12776,15775,28756,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.805448715383996,7.829824653939079,0,0,0,-886.7518978839762,0,2,3,2019,16,5,20,20,1,5,0,14.9160656755091,14.9160656755091,0,0,0,0,0,0,0,0,3.981847818461779,0,48.8,49.1,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,1998,14751.48533203104,63633.43252433732,0,0,1305.16780603985 -12777,15776,28757,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-920.7356454497384,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,6.666666666666667,4,2,0,1,0,5,1,0,743,157576.4180459854,0,0,0,1436.243937734442 -12778,15777,28758,-9,28762,28761,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.1017665176871,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,252.8,106876.2719991568,82838.72586374558,0,0,2433.827854948953 -12778,15777,28759,-9,28762,28761,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.1095236877188,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,252.8,106876.2719991568,82838.72586374558,0,0,2433.827854948953 -12778,15777,28760,-9,28762,28761,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.0251362404831,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,2,0,252.8,106876.2719991568,82838.72586374558,0,0,2433.827854948953 -12778,15777,28761,28762,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,7.317172086371793,7.287075654056462,0,7,5,8.47466041350879,0,-9,-9,2019,10,0,18,19,1,1,0,8.760636037976505,8.760636037976505,0,0,0,0,0,1,1,0,0,0,50,57,57.7,55.88,7,1,1,0,0,1,4,2,0,252.8,106876.2719991568,82838.72586374558,0,0,2433.827854948953 -12778,15777,28762,28761,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.149405678441125,6.168509197244308,0,7,-5,-61.38717144104515,0,2,2,2019,6,0,12,6,1,0,0,4.318988450624696,4.318988450624696,0,0,0,0,27,1,1,0,0,0,57.7,55.88,50,57,8.333333333333334,1,1,0,0,1,4,2,0,252.8,106876.2719991568,82838.72586374558,0,0,2433.827854948953 -12779,15778,28763,28764,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.772780267399185,8.559944494845368,0,42,2,-57.58715203416266,0,2,3,2019,6,0,37,40,1,0,0,17.92587335469015,17.92587335469015,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.33,53.46,0,1,1,0,0,8,11,5,1,425.5,754628.7004665084,589504.1930254595,65716.00634618048,54175.16924850531,3469.427325274457 -12779,15778,28764,28763,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.155009457061992,8.180877158171448,0,42,-2,-134.2766596679207,0,3,2,2019,7,0,37,37,1,0,0,10.47595111716485,10.47595111716485,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,8,11,5,1,425.5,754628.7004665084,589504.1930254595,65716.00634618048,54175.16924850531,3469.427325274457 -12780,15779,28765,28766,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.512780432152113,8.37472140417451,0,27,0,86.9939745125625,-9,2,2,2019,9,0,50,0,1,1,0,12.48793640594315,12.48793640594315,0,0,0,0,0,0,0,0,4.583279926764581,0,53,54,41.31,55.24,8,1,1,0,0,1,11,5,1,1203.5,1562325.960314961,1330234.431724742,246504.8039354666,119913.1285773095,4092.029235400354 -12780,15779,28766,28765,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.51526357275988,8.623584197758385,0,27,0,17.87086088006743,0,2,2,2019,15,4,37,40,1,4,0,17.73758009753486,17.73758009753486,0,0,0,0,0,0,0,0,7.279329195784661,0,41.31,55.24,53,54,8.333333333333334,1,1,0,0,8,11,5,1,1203.5,1562325.960314961,1330234.431724742,246504.8039354666,119913.1285773095,4092.029235400354 -12780,15780,28767,-9,28766,28765,1,0,21,0,0,0,1,1,1,0,5,7.275354446887544,7.608871277981066,0,0,0,-964.9054009681103,-9,2,2,2019,10,0,24,0,1,0,1,7.463299778712095,7.463299778712095,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,810,-162958.7767894034,-24110.04702239301,0,0,252.3460924676432 -12781,15781,28768,28769,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.053300333674496,7.869756306920714,10,6,-52.95786551920362,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.335720609448819,8.128881179533282,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,563.5,471946.3437377508,75292.04063813383,83238.06889860102,0,3905.8448086854 -12781,15781,28769,28768,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.673205321052976,8.591638464179068,0,32,-6,-53.45004552797048,0,1,1,2019,7,0,37,38,1,0,0,16.95233999664039,16.95233999664039,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,12,2,5,1,563.5,471946.3437377508,75292.04063813383,83238.06889860102,0,3905.8448086854 -12782,15782,28770,-9,28772,28771,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1246.107971634786,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,313.3333333333333,17227.46883465153,0,0,0,1570.594730094889 -12782,15782,28771,28772,-9,-9,1,1,34,1,1,0,3,3,-9,0,4,0,0,0,3,0,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,50.76,22.04,7,1,1,1,0,0,7,1,0,313.3333333333333,17227.46883465153,0,0,0,1570.594730094889 -12782,15782,28772,28771,-9,-9,1,0,34,1,1,0,2,2,-9,1,2,0,0,0,3,0,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.76,22.04,51,56,6.666666666666667,1,1,0,0,3,7,1,0,313.3333333333333,17227.46883465153,0,0,0,1570.594730094889 -12783,15783,28773,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.008521681952178,6.799014850572151,0,0,-1147.59925699311,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.685627606336561,6.849990957794954,38.75,43.02,-9,-9,3.333333333333333,1,1,0,0,7,1,2,1,429,1506261.76357801,1459150.896671358,173429.330303518,0,1143.700232651615 -12784,15784,28774,28775,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.094694101667082,8.068910128560164,0,5,5,-20.73114382891061,0,-9,-9,2019,9,0,35,35,1,1,0,11.14101559151359,11.14101559151359,0,0,0,0,0,1,1,0,0,0,52,55,41.17,59.31,8,4,1,0,0,1,5,4,0,2211.333333333333,273792.6987792646,98123.33704048407,58353.38358402284,31542.15285247791,3137.711962766812 -12784,15784,28775,28774,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.72144388092277,7.709996861220032,6.016636209810946,5,-5,-69.85828616314302,0,-9,-9,2019,3,1,35,30,1,1,0,6.527955393174125,6.527955393174125,0,0,0,1.054608873861813,0,1,1,0,6.148634675447362,0,41.17,59.31,52,55,5,1,1,0,0,7,5,4,0,2211.333333333333,273792.6987792646,98123.33704048407,58353.38358402284,31542.15285247791,3137.711962766812 -12784,15784,28776,-9,28775,-9,1,1,17,0,0,0,2,2,1,0,5,0,6.58251319519379,6.573322810388143,0,0,-974.3950996789861,-9,2,-9,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.419944667686709,0,50.54,62.09,-9,-9,10,1,1,0,0,2,5,4,0,2211.333333333333,273792.6987792646,98123.33704048407,58353.38358402284,31542.15285247791,3137.711962766812 -12785,15785,28777,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.365336695294999,8.561456219276643,7.810588369480507,0,0,-971.9152680966688,0,2,1,2019,21,8,30,30,1,8,0,16.42761864406134,16.42761864406134,0,0,0,0,7,0,0,0,7.591613670572907,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,479,1147627.589742598,869222.881701643,116459.6166736156,65250.79731649252,2892.998580667424 -12786,15786,28778,28779,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.717150704302121,7.677727746923462,0,6,-2,25.83126803538328,0,3,3,2019,14,2,24,24,1,2,0,12.88568657601751,12.88568657601751,0,0,0,0,0,1,1,0,0,0,41.44,42.97,58.3,47.38,5,1,1,0,0,7,7,2,1,641,148961.87606288,69773.68626935704,143274.8437480972,95583.73501683856,1895.222417804791 -12786,15786,28779,28778,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,0,0,0,6,2,-48.21023430131924,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,47.38,41.44,42.97,6.666666666666667,1,1,0,0,0,7,2,1,641,148961.87606288,69773.68626935704,143274.8437480972,95583.73501683856,1895.222417804791 -12786,15786,28780,-9,28778,28779,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-959.4278566127816,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,641,148961.87606288,69773.68626935704,143274.8437480972,95583.73501683856,1895.222417804791 -12786,15786,28781,-9,28778,28779,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.7481319977842,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,641,148961.87606288,69773.68626935704,143274.8437480972,95583.73501683856,1895.222417804791 -12787,15787,28782,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-878.7373660388835,0,2,1,2019,21,10,0,30,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,35.16,36.82,-9,-9,5,1,1,1,0,12,1,1,1,344,-58169.85820006818,0,0,0,0 -12788,15788,28783,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,4,0,0,0,0,0,-933.9513327769589,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,13,1,0,540,3890.615133080169,0,0,0,1048.942700436091 -12788,15789,28784,-9,-9,-9,1,1,38,0,0,0,3,3,-9,0,5,6.180659915694164,6.180410967776438,0,0,0,-1047.200384212804,0,3,2,2019,10,0,40,40,1,0,0,1.503191876016261,1.503191876016261,0,0,0,0,0,1,1,0,0,0,50.41,58,-9,-9,8.333333333333334,1,1,0,0,5,13,2,0,138,-84566.91920612476,0,0,0,88.05529207450496 -12788,15790,28785,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,6.842852906844374,6.727626838822427,0,0,0,-1174.16086924128,0,-9,-9,2019,9,0,40,40,1,1,0,2.729231960751771,2.729231960751771,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,3,13,2,0,189,0,0,0,0,176.3265234387907 -12788,15791,28786,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.15232172314656,7.208615107218478,0,0,0,-940.4232779863268,0,-9,-9,2019,9,0,37,40,1,0,0,4.955791979355458,4.955791979355458,0,0,0,0,0,1,1,0,0,0,51.25,52.08,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,182,92907.03778572541,63596.87919065134,29782.09816946516,0,699.5522833281481 -12789,15792,28787,-9,28789,28788,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.9503780930909,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,1,2743.6,580835.167869549,246340.7806332846,171634.9417469949,59767.19041331531,4796.924955077438 -12789,15792,28788,28789,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.691812008090762,8.689602579451494,0,9,9,5.76400730720361,0,-9,-9,2019,12,1,60,60,1,1,0,10.27238488781411,10.27238488781411,0,0,0,0,0,1,1,0,0,0,48,51,46.12,44.87,5,3,4,0,0,9,8,4,1,2743.6,580835.167869549,246340.7806332846,171634.9417469949,59767.19041331531,4796.924955077438 -12789,15792,28789,28788,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,7.995914021212143,8.077262762981103,0,8,0,80.08172382622961,0,-9,-9,2019,12,1,24,41,1,1,0,20.92978855287356,20.92978855287356,0,0,0,0,0,1,1,0,0,0,46.12,44.87,48,51,6.666666666666667,3,4,0,0,10,8,4,1,2743.6,580835.167869549,246340.7806332846,171634.9417469949,59767.19041331531,4796.924955077438 -12789,15792,28790,-9,28789,28788,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.518587249735,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,4,1,2743.6,580835.167869549,246340.7806332846,171634.9417469949,59767.19041331531,4796.924955077438 -12789,15792,28791,-9,28789,28788,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.545392626138,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,2743.6,580835.167869549,246340.7806332846,171634.9417469949,59767.19041331531,4796.924955077438 -12790,15793,28792,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,7.264559608370178,7.224741101973104,0,4,4,-142.9951842181802,0,-9,-9,2019,12,4,32,36,1,4,0,4.726527127045884,4.726527127045884,0,0,0,0,0,0,0,0,0,0,58.72,51.29,48,56,8.333333333333334,1,1,0,0,11,11,2,1,2801,63929.99488697496,46647.69197972426,0,0,1212.192893075228 -12791,15794,28793,-9,28798,28794,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.1393029880046,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15794,28794,28798,-9,-9,1,1,41,1,4,0,3,3,-9,1,4,0,0,0,17,1,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,37.02,47.89,7,2,3,0,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15794,28795,-9,28798,28794,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-994.1115260661408,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15794,28796,-9,28798,28794,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.8379858775977,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15794,28797,-9,28798,28794,1,1,14,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1061.874200048167,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15794,28798,28794,-9,-9,1,0,40,1,4,0,2,2,-9,1,3,0,0,0,17,-1,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,37.02,47.89,51,56,6.666666666666667,2,3,0,0,0,6,1,1,1097.166666666667,-39533.72169366587,0,0,0,4072.195329858429 -12791,15795,28799,-9,28798,28794,1,0,18,1,4,1,2,0,0,0,4,0,0,0,0,0,-1060.885879772228,-9,2,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,1,1,228,-19235.68226631926,0,0,0,0 -12792,15796,28800,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.936356218249043,7.985446229605111,0,0,-1029.879603712652,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.956182120287931,7.796216050513047,59.43,58.05,-9,-9,0,1,1,0,0,6,13,3,1,317,804780.5187671533,496030.2216086279,206765.7746302645,-1431.201386494797,2059.261980172188 -12793,15797,28801,28802,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.32570430823224,9.338243861628603,0,9,-3,76.74559915399227,0,3,3,2019,10,0,30,30,1,0,0,67.9508373112285,67.9508373112285,0,0,0,0,2,0,0,0,0,0,46.67,55.57,46.61,56.93,6.666666666666667,1,1,0,0,11,8,5,0,1223,831215.8128415265,74446.08234190955,514948.8870825496,69721.1300958161,7593.155147713866 -12793,15797,28802,28801,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.965710240223089,7.678677600993028,0,9,3,-117.1960047576614,0,-9,-9,2019,19,7,28,28,1,7,0,11.98737774912897,11.98737774912897,0,0,0,0,7,0,0,0,0,0,46.61,56.93,46.67,55.57,6.666666666666667,1,1,0,0,11,8,5,0,1223,831215.8128415265,74446.08234190955,514948.8870825496,69721.1300958161,7593.155147713866 -12794,15798,28803,-9,28806,28804,1,1,21,0,0,0,2,2,-9,0,5,8.238338720585618,8.224832146964678,0,0,0,-1037.192129916583,0,2,2,2019,9,0,40,35,1,0,1,9.531632789963977,9.531632789963977,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,660,-132502.4645477824,43326.75688301945,0,0,1997.560685203018 -12794,15799,28804,28806,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.724161230342485,8.720839290449597,0,6,5,40.12276252240997,0,-9,-9,2019,7,0,40,46,1,0,0,21.61855028395415,21.61855028395415,0,0,0,0,0,1,1,0,0,0,56.33,51.02,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,0,1113.666666666667,730034.7421552612,410380.7667457457,339725.5090615209,81827.81273461132,5848.77180244164 -12794,15799,28805,-9,28806,28804,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1008.64135030795,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,0,1113.666666666667,730034.7421552612,410380.7667457457,339725.5090615209,81827.81273461132,5848.77180244164 -12794,15799,28806,28804,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.420529431618622,8.585323942296505,0,6,-5,-105.2396619050933,0,2,3,2019,9,0,15,25,1,0,0,30.65315601779943,30.65315601779943,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.33,51.02,8.333333333333334,1,1,0,0,7,9,5,0,1113.666666666667,730034.7421552612,410380.7667457457,339725.5090615209,81827.81273461132,5848.77180244164 -12795,15800,28807,-9,28809,-9,1,1,21,0,0,0,2,2,-9,0,2,7.766268987511522,7.759844247347937,0,0,0,-989.5840320365966,-9,1,-9,2019,19,5,49,0,1,5,1,5.52192573542723,5.52192573542723,0,0,0,0,0,1,1,0,3.330282522808349,0,45.12,40.73,-9,-9,5,1,1,0,0,3,6,3,1,553,-74252.89804495916,0,0,0,1057.26183247289 -12795,15801,28808,-9,28809,-9,1,1,20,0,0,0,2,2,-9,0,5,7.637291038024817,7.578170533146961,0,0,0,-998.1283931758412,-9,2,-9,2019,6,0,38,0,1,0,1,6.393556545416163,6.393556545416163,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,1269,-82893.9525602286,0,0,0,895.3629996520857 -12795,15802,28809,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.234346755002017,8.441448970843176,6.173057087806835,0,0,-1089.599481423385,-9,-9,-9,2019,7,1,35,0,1,1,0,12.63779528152642,12.63779528152642,0,0,0,0,0,1,1,0,6.551124319863602,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,894.5,114207.7475078057,230038.3568188725,170982.2326162833,68753.93015770076,2004.098220673246 -12795,15802,28810,-9,28809,-9,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1082.464434424795,-9,1,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,894.5,114207.7475078057,230038.3568188725,170982.2326162833,68753.93015770076,2004.098220673246 -12796,15803,28811,-9,-9,-9,1,0,46,0,1,0,1,1,0,0,3,0,6.700643083820365,6.221776507723895,0,0,-997.4222861790786,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.741710174363338,0,26.95,59.1,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,606,29956.27091956827,-9626.941862390559,0,0,598.626067637799 -12796,15803,28812,-9,28811,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1094.631021466426,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,606,29956.27091956827,-9626.941862390559,0,0,598.626067637799 -12797,15804,28813,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.70945608594705,8.757823894168128,0,6,-7,3.775827680941518,0,-9,-9,2019,22,9,43,51,1,9,0,18.05547744422273,18.05547744422273,0,0,0,0,0,0,0,0,7.203312852126037,0,31.35,59.92,49.53,23.66,5,1,1,0,0,9,12,5,1,702,99766.21086759622,-48619.21128900614,100416.9864357552,91211.27022615487,2587.508754018858 -12797,15805,28814,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,9.255365450458813,9.148362795636761,0,6,7,133.7108470064962,0,1,1,2019,14,4,52,58,1,4,0,21.18670776752387,21.18670776752387,0,0,0,0,0,0,0,0,7.172284388037832,0,49.53,23.66,31.35,59.92,5,1,1,0,0,9,12,5,1,193,-70903.21479722406,65300.29435634689,202827.2866720303,77759.18306969336,3605.178450625984 -12798,15806,28815,28816,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.666999347753489,9.582609358371482,0,2,1,-75.56332734658395,-9,1,2,2019,12,0,40,0,1,0,0,40.92794478880789,40.92794478880789,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.7,43.22,8.333333333333334,1,1,0,0,9,8,5,1,269.5,1010007.343473777,269717.8535147093,993051.4098687284,498899.010405767,7629.311860931635 -12798,15806,28816,28815,-9,-9,1,0,37,0,0,0,1,1,-9,1,2,8.226094613824403,7.944262152145881,0,2,-1,30.57273403478071,0,2,2,2019,10,0,48,40,1,0,0,7.401076580890465,7.401076580890465,0,0,0,0,0,1,1,0,7.467638762211232,0,59.7,43.22,57.06,57.76,5,1,1,0,0,8,8,5,1,269.5,1010007.343473777,269717.8535147093,993051.4098687284,498899.010405767,7629.311860931635 -12799,15807,28817,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,7.214360751457174,7.155672467470148,0,0,-937.809038959268,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.494527806531329,6.97392275621541,57.34,29.16,-9,-9,10,1,1,0,0,0,5,3,1,456,114198.2285569853,97283.55781476581,0,0,1320.575088998417 -12800,15808,28818,-9,28819,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-829.1543285158992,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,2,0,1158,71823.11168007625,0,122446.0732120255,25596.85618602697,1085.192075196175 -12800,15808,28819,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.789607820977976,7.034557553005859,0,0,0,-949.4258560450811,-9,2,2,2019,11,0,17,0,1,0,0,7.307694025489628,7.307694025489628,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,3.333333333333333,3,4,0,0,1,6,2,0,1158,71823.11168007625,0,122446.0732120255,25596.85618602697,1085.192075196175 -12801,15809,28820,28821,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,7.635525473220876,7.895342771121748,0,10,-1,-19.45811142232047,0,-9,-9,2019,35,12,38,24,1,12,0,6.862462919216136,6.862462919216136,0,0,0,0,27,1,1,0,0,0,3.55,67.41,59.43,58.05,5,1,1,0,0,11,4,4,1,787.5,1490480.738490704,1282369.029602522,226990.8608520248,0,2940.501107998834 -12801,15809,28821,28820,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,8.12559350297909,7.73575151218768,36,1,-96.31556348437681,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.828232359721267,8.352956132903369,59.43,58.05,3.55,67.41,10,1,1,0,0,10,4,4,1,787.5,1490480.738490704,1282369.029602522,226990.8608520248,0,2940.501107998834 -12802,15810,28822,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.435553136767027,8.754001281569106,0,0,0,-892.8906906904261,0,2,2,2019,19,8,47,42,1,8,0,12.1256429027622,12.1256429027622,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,1024,77383.52314587214,111900.7094195412,0,0,1525.188003119007 -12803,15811,28823,28824,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,0,0,0,9,0,-18.0951687662689,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,17.69,47.79,38.66,3.333333333333333,1,1,0,0,0,2,2,0,551,319062.6639138275,257219.6050682796,171060.8723771392,0,1454.42068067043 -12803,15811,28824,28823,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,5.600243133948865,5.258828011057947,9,0,-5.785042125418998,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,5.440635900043955,47.79,38.66,44.4,17.69,5,1,1,0,0,3,2,2,0,551,319062.6639138275,257219.6050682796,171060.8723771392,0,1454.42068067043 -12804,15812,28825,-9,28828,28826,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.281286079227,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,977.25,96067.13267107205,-15348.62254196779,0,0,3028.160591663482 -12804,15812,28826,28828,-9,-9,1,1,25,1,2,0,2,2,-9,0,4,8.662511288551517,8.684326781253796,0,2,-4,-141.0927409091878,0,-9,-9,2019,12,0,45,50,1,0,0,11.20612827071617,11.20612827071617,0,0,0,0,0,1,1,0,0,0,48.28,60.18,38.82,56.79,6.666666666666667,1,1,0,0,6,10,4,1,977.25,96067.13267107205,-15348.62254196779,0,0,3028.160591663482 -12804,15812,28827,-9,28828,28826,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.8138119522516,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,977.25,96067.13267107205,-15348.62254196779,0,0,3028.160591663482 -12804,15812,28828,28826,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,7.89834666569284,7.758879892782056,0,2,4,-19.58786574719452,0,2,-9,2019,9,0,24,24,1,0,0,7.533091846640536,7.533091846640536,0,0,0,0,0,1,1,0,0,0,38.82,56.79,48.28,60.18,8.333333333333334,1,1,0,0,11,10,4,1,977.25,96067.13267107205,-15348.62254196779,0,0,3028.160591663482 -12805,15813,28829,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.865674881386596,4.82184976394967,0,0,-1141.340361513979,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,0,4.929649908895047,39.57,24.67,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,81,366824.630809985,0,277592.2744008869,0,1440.784215870608 -12806,15814,28830,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.554973452981326,8.73464037343814,0,0,0,-1000.075306470439,0,2,3,2019,7,0,47,37,1,0,0,14.18344305491333,14.18344305491333,0,0,0,0,0,0,0,0,0,0,59.91,42.65,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,407,581765.4806779409,235038.6439024931,190932.711240638,0,2022.982748858654 -12807,15815,28831,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.740159329129558,8.596584656414986,0,0,0,-1054.014323939472,0,2,1,2019,12,0,48,48,1,0,0,16.24462739136391,16.24462739136391,0,0,0,0,0,0,0,0,0,0,48.29,49.79,-9,-9,6.666666666666667,1,1,0,1,11,8,5,1,398,-39855.26816477085,-9529.446950178857,0,0,2052.498657458395 -12808,15816,28832,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,8.257914737414078,8.349561442377684,0,0,-948.9331951585015,0,-9,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.195752116237425,7.986243100430838,44.88,37.37,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,956,1394248.249620404,174890.1050082612,952355.0467396358,0,1994.244600461605 -12809,15817,28833,28834,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,53,-1,0,0,-9,-9,2019,23,11,0,0,4,11,0,0,0,1,0,50.5218006153852,0,0,1,1,0,0,0,31.11,37.7,43.58,29.1,3.333333333333333,3,4,0,0,0,12,1,0,714.5,-34695.70554308685,-22747.21996027617,0,0,1856.909371522236 -12809,15817,28834,28833,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,1,0,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,42,1,1,0,0,0,43.58,29.1,31.11,37.7,3.333333333333333,1,1,0,0,0,12,1,0,714.5,-34695.70554308685,-22747.21996027617,0,0,1856.909371522236 -12810,15818,28835,28836,-9,-9,1,0,27,1,1,0,1,1,-9,0,5,7.772361231574101,7.823058354126512,0,6,-3,24.13888432200287,0,-9,-9,2019,3,0,36,35,1,0,0,6.314218986400066,6.314218986400066,0,0,0,0,0,1,1,0,0,0,58.05,54.52,49.97,48.78,8.333333333333334,1,1,0,0,8,4,5,1,1240.333333333333,233010.0684649693,276999.2424769198,0,0,3569.83619985416 -12810,15818,28836,28835,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,9.454638048345638,9.5500328214899,0,6,3,44.64319618057747,0,2,2,2019,11,0,36,43,1,0,0,28.88673571320875,28.88673571320875,0,0,0,0,0,1,1,0,0,0,49.97,48.78,58.05,54.52,8.333333333333334,1,1,0,0,8,4,5,1,1240.333333333333,233010.0684649693,276999.2424769198,0,0,3569.83619985416 -12810,15818,28837,-9,28835,28836,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.6956082677891,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,1240.333333333333,233010.0684649693,276999.2424769198,0,0,3569.83619985416 -12811,15819,28838,28839,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.88764178286702,7.926434686505461,43,5,52.39846825962133,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.535733072207259,7.742590490121334,54.2,57.49,48.7,38.58,8.333333333333334,1,1,0,0,8,12,3,1,754,1295894.703031951,615324.5867502905,256475.2442820637,0,2448.325169686741 -12811,15819,28839,28838,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.011887514217409,7.04347543584235,43,-5,98.56177744446703,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,5.919902593060698,0,0,1,1,0,0,6.807784468948906,48.7,38.58,54.2,57.49,6.666666666666667,1,1,0,0,4,12,3,1,754,1295894.703031951,615324.5867502905,256475.2442820637,0,2448.325169686741 -12812,15820,28840,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1027.113501457066,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,0,0,38.46,46.19,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,999,0,0,0,0,378.7266543288229 -12812,15821,28841,-9,28840,-9,1,0,23,0,0,0,2,2,-9,0,2,6.935567689117161,6.700414621816214,0,0,0,-1100.662957039683,0,3,-9,2019,20,8,14,17,1,8,1,7.108491041336,7.108491041336,0,0,0,0,0,1,0,1,0,0,19.8,46.73,-9,-9,3.333333333333333,4,2,0,0,5,2,2,0,3866,-67377.32565651412,0,0,0,427.4559392698226 -12813,15822,28842,28844,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.446766976226839,7.707363350689431,0,19,-15,-60.13693072315845,0,2,1,2019,11,0,11,11,1,0,0,18.73587979902103,18.73587979902103,0,0,0,0,0,0,0,0,4.615847999835279,0,46.05,53.32,55.44,52.99,8.333333333333334,1,1,0,0,7,9,5,1,1075.5,697272.0897156089,363578.212495796,709600.2171756879,396660.9210554334,6645.250718075697 -12813,15822,28843,-9,28842,28844,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.3144037261486,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,1075.5,697272.0897156089,363578.212495796,709600.2171756879,396660.9210554334,6645.250718075697 -12813,15822,28844,28842,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,9.722573937092831,9.68236491390704,0,7,15,78.29727995632267,0,-9,-9,2019,10,0,46,63,1,0,0,43.32143218083063,43.32143218083063,0,0,0,0,0,0,0,0,4.893639545600927,0,55.44,52.99,46.05,53.32,8.333333333333334,1,1,0,0,8,9,5,1,1075.5,697272.0897156089,363578.212495796,709600.2171756879,396660.9210554334,6645.250718075697 -12813,15822,28845,-9,28842,28844,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.483843217936,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1075.5,697272.0897156089,363578.212495796,709600.2171756879,396660.9210554334,6645.250718075697 -12814,15823,28846,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.491726278689011,6.390033560179149,0,0,-1114.088027201799,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.469624624017761,6.698866853794841,61.09,51.58,-9,-9,10,1,1,0,0,0,5,2,0,707,-71551.59094123646,151013.4361754046,0,0,551.5618700470484 -12815,15824,28847,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.268441898859502,8.278660226395715,0,0,0,-966.5234377251854,0,2,1,2019,8,1,48,40,1,1,0,8.568055177136074,8.568055177136074,0,0,0,0,0,0,0,0,4.885780325115316,0,54.79,55.86,-9,-9,6.666666666666667,4,2,0,0,10,5,4,1,2443,120112.5534066024,0,0,0,2086.011381133629 -12816,15825,28848,28849,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.302177331329876,8.380644779812048,0,3,0,38.28236510425393,0,-9,-9,2019,10,2,40,37,1,2,0,10.1846457464442,10.1846457464442,0,0,0,0,0,0,0,0,0,0,44.43,56.74,30.75,61.56,3.333333333333333,1,1,0,0,4,1,5,1,656.5,-16076.96055884495,93198.33968347809,54343.35273441748,106141.0471460965,4431.866178237749 -12816,15825,28849,28848,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,9.060611712277788,9.023805057631305,0,3,0,116.1370249549054,0,-9,-9,2019,18,7,42,42,1,7,0,21.17520676312851,21.17520676312851,0,0,0,0,0,0,0,0,4.153386783576652,0,30.75,61.56,44.43,56.74,8.333333333333334,1,1,0,0,6,1,5,1,656.5,-16076.96055884495,93198.33968347809,54343.35273441748,106141.0471460965,4431.866178237749 -12817,15826,28850,28851,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.670548297694058,7.644116006437279,56,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.874600513669783,55.91,38.95,60.12,54.8,8.333333333333334,1,1,0,0,2,2,4,1,875,1809306.310178624,827921.0775752648,404494.0529866493,0,3551.647237402002 -12817,15826,28851,28850,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.875584822048057,7.687037925625762,56,-1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.654440687189114,60.12,54.8,55.91,38.95,10,1,1,0,0,0,2,4,1,875,1809306.310178624,827921.0775752648,404494.0529866493,0,3551.647237402002 -12818,15827,28852,28853,-9,-9,1,0,31,0,3,0,2,2,-9,1,1,0,0,0,2,-1,0,0,3,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,43.65,54.32,6.666666666666667,1,1,0,0,0,5,1,0,1220.6,103958.1871418866,0,135187.4383862619,66999.53690323139,2573.678169712039 -12818,15827,28853,28852,-9,-9,1,1,32,0,3,0,2,2,-9,1,3,0,0,0,2,1,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,43.65,54.32,21.97,21.3,6.666666666666667,1,1,1,0,0,5,1,0,1220.6,103958.1871418866,0,135187.4383862619,66999.53690323139,2573.678169712039 -12818,15827,28854,-9,28852,28853,1,1,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1079.4096607896,-9,2,2,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.88,53.03,-9,-9,5,1,1,1,0,0,5,1,0,1220.6,103958.1871418866,0,135187.4383862619,66999.53690323139,2573.678169712039 -12818,15827,28855,-9,28852,28853,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.2863620677992,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6,103958.1871418866,0,135187.4383862619,66999.53690323139,2573.678169712039 -12818,15827,28856,-9,28852,28853,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.4660639412069,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6,103958.1871418866,0,135187.4383862619,66999.53690323139,2573.678169712039 -12819,15828,28857,28858,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,6,-2,-182.325308858047,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,46.3,31.73,43.34,30.37,8.333333333333334,1,1,0,0,0,4,2,1,409.5,344654.3493291067,51470.55098963697,169541.5780212674,0,2221.592009627534 -12819,15828,28858,28857,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.646227378402442,7.668578526847776,6,2,-155.0805977741363,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.077369100131394,7.499519584160171,43.34,30.37,46.3,31.73,5,1,1,0,0,0,4,2,1,409.5,344654.3493291067,51470.55098963697,169541.5780212674,0,2221.592009627534 -12820,15829,28859,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.195001061542587,7.554157395918934,0,0,-1031.15621059657,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.376207267803279,7.088591257509581,62.97,33.31,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,332,585414.6587461499,110010.0166525495,306785.7904696536,7752.952979830552,2282.582004213652 -12821,15830,28860,28861,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.006162466340347,5.557278972129323,8,7,-8.100705943766007,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.763368567983226,5.582826232278014,55.96,49.93,56.05,45.76,8.333333333333334,1,1,0,0,6,6,3,1,741.5,349304.840002916,196273.7329161449,153911.4158407455,3205.854825680233,5217.387985132375 -12821,15830,28861,28860,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.101940741465926,8.295647343647465,0,8,-7,85.97136671571762,0,3,2,2019,9,0,70,36,1,0,0,4.730332159709874,4.730332159709874,0,0,0,0,56,1,1,0,0,0,56.05,45.76,55.96,49.93,8.333333333333334,1,1,0,0,9,6,3,1,741.5,349304.840002916,196273.7329161449,153911.4158407455,3205.854825680233,5217.387985132375 -12822,15831,28862,28863,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,-90.38298503880104,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.961566621909818,0,59.07,43.05,47.79,38.66,8.333333333333334,1,1,0,0,0,12,5,1,272.5,531468.3852602616,0,213593.285688961,0,3834.136211765779 -12822,15831,28863,28862,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.38441545335092,8.816721734308762,8.080749388072542,10,1,4.933942492623134,0,3,2,2019,9,0,20,30,1,0,0,27.35138435165779,27.35138435165779,0,0,0,0,0,1,1,0,0,8.410896599090627,47.79,38.66,59.07,43.05,8.333333333333334,1,1,0,0,11,12,5,1,272.5,531468.3852602616,0,213593.285688961,0,3834.136211765779 -12823,15832,28864,28865,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.71037430157924,8.012739252787876,57,5,-95.23985254398838,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.839445851545366,8.114203448500852,58.64,25.59,58.32,50.22,1.666666666666667,1,1,0,0,0,9,3,1,827,959475.5634950332,283872.3436033002,373988.0728205479,0,3187.939381752402 -12823,15832,28865,28864,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,57,-5,9.422277426449597,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.737316893274164,0,58.32,50.22,58.64,25.59,10,1,1,0,0,0,9,3,1,827,959475.5634950332,283872.3436033002,373988.0728205479,0,3187.939381752402 -12824,15833,28866,28868,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,7.591550656720019,7.610901206664201,0,17,1,69.80286578534761,0,2,2,2019,10,0,23,23,1,0,0,9.842011564837602,9.842011564837602,0,0,0,0,0,1,1,0,.1416278536207978,0,54.1,59.11,45.81,61.51,8.333333333333334,1,1,0,0,10,11,5,1,445.6666666666667,197305.95689686,137188.4309250477,260921.0005365909,181512.9602584071,3727.767660814852 -12824,15833,28867,-9,28866,28868,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.035237807082,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,445.6666666666667,197305.95689686,137188.4309250477,260921.0005365909,181512.9602584071,3727.767660814852 -12824,15833,28868,28866,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.940909039009085,9.027566604711849,0,8,-1,-192.2402055140213,0,-9,-9,2019,12,0,46,40,1,0,0,18.93043916537015,18.93043916537015,0,0,0,0,0,1,1,0,2.79107393883454,0,45.81,61.51,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,445.6666666666667,197305.95689686,137188.4309250477,260921.0005365909,181512.9602584071,3727.767660814852 -12825,15834,28869,28870,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,5.392211236602953,5.675370338061977,8,-8,66.10499377620957,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.623174510324239,5.895744176662834,61.12,51.57,59.88,45.37,8.333333333333334,1,1,0,0,2,10,2,1,1698.5,307267.0527126327,323176.4067824426,0,0,277.2789592669155 -12825,15834,28870,28869,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.599842741639524,5.521473803262706,8,8,109.338629731664,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.862645321182187,5.415851672395924,59.88,45.37,61.12,51.57,8.333333333333334,1,1,0,0,0,10,2,1,1698.5,307267.0527126327,323176.4067824426,0,0,277.2789592669155 -12826,15835,28871,28872,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.210309196127373,8.266647933529834,0,40,2,-84.81754628473634,0,3,3,2019,11,0,24,32,1,0,0,19.9608453899454,19.9608453899454,0,0,0,0,0,0,0,0,7.644821199460283,0,53.87,53.44,33.07,55.18,8.333333333333334,1,1,0,0,11,10,4,1,106.5,1392977.908741269,918711.1864959865,487945.8666550346,53001.47077937218,3542.203946077567 -12826,15835,28872,28871,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.570639073937287,7.946791444866937,0,40,-2,-97.11416680834122,0,3,3,2019,18,6,25,20,1,6,0,8.846011680033989,8.846011680033989,0,0,0,0,14.5,0,0,0,1.423662444829206,0,33.07,55.18,53.87,53.44,8.333333333333334,1,1,0,0,10,10,4,1,106.5,1392977.908741269,918711.1864959865,487945.8666550346,53001.47077937218,3542.203946077567 -12827,15836,28873,-9,28874,28875,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.036504315431,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,0,1090.666666666667,694322.879564223,309607.536953674,348176.359706363,68869.50318322009,3489.989136392459 -12827,15836,28874,28875,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,24,-2,-103.6416086820273,0,2,2,2019,6,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.2,57.49,8.333333333333334,1,1,0,0,3,5,5,0,1090.666666666667,694322.879564223,309607.536953674,348176.359706363,68869.50318322009,3489.989136392459 -12827,15836,28875,28874,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.194623135824664,9.236062503188057,0,14,2,-124.391399113513,0,2,1,2019,10,1,55,55,1,1,0,21.72140275017487,21.72140275017487,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.49,55.09,8.333333333333334,1,1,0,0,9,5,5,0,1090.666666666667,694322.879564223,309607.536953674,348176.359706363,68869.50318322009,3489.989136392459 -12828,15837,28876,28877,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,62,-1,-103.2966035151039,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,0,0,47.62,26.56,27.55,25.55,6.666666666666667,1,1,0,0,0,2,2,1,654,145104.7852811492,96073.67838795076,0,0,1407.67954521503 -12828,15837,28877,28876,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.979065165459432,6.101341248546698,62,1,210.1558489307799,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,5.24000167199053,0,0,1,1,0,0,6.270276661907909,27.55,25.55,47.62,26.56,8.333333333333334,1,1,0,0,0,2,2,1,654,145104.7852811492,96073.67838795076,0,0,1407.67954521503 -12829,15838,28878,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1024.743698893157,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.08,19.69,-9,-9,0,1,1,0,1,5,4,1,0,123,0,0,0,0,1312.639584397263 -12829,15839,28879,-9,28878,-9,1,0,27,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1024.613503558387,0,3,-9,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,74.5,1,1,0,0,0,30.47,60.56,-9,-9,5,1,1,1,1,0,4,1,0,133,-132323.8265811737,0,0,0,-186.1776400537011 -12829,15840,28880,-9,28878,-9,1,0,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1127.476247494065,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,1,0,0,4,1,0,516,109038.2352691505,0,0,0,844.6415765738886 -12830,15841,28881,28882,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.882840722378269,7.848258226695797,0,7,2,40.70705703181412,0,3,3,2019,7,0,45,38,1,0,0,7.157674141112448,7.157674141112448,0,0,0,0,0,0,0,0,7.154429337915826,0,54.96,53.17,52.84,30.07,6.666666666666667,1,1,0,0,9,11,4,1,431.5,299938.7837592084,119797.0618803317,233309.2440222003,77385.46601981303,2845.413737082876 -12830,15841,28882,28881,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.17145409229615,8.399945485037358,0,7,-2,79.8323066691248,0,-9,-9,2019,17,5,44,44,1,5,0,8.271398028485295,8.271398028485295,0,0,0,0,0,0,0,0,0,0,52.84,30.07,54.96,53.17,3.333333333333333,1,1,0,0,11,11,4,1,431.5,299938.7837592084,119797.0618803317,233309.2440222003,77385.46601981303,2845.413737082876 -12831,15842,28883,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.775116010030129,6.933882229713756,0,0,0,-985.3764206633051,-9,3,3,2019,6,0,26,0,1,0,0,3.704578741522872,3.704578741522872,0,0,0,0,0,1,1,0,0,0,68.36,31.88,-9,-9,10,1,1,0,0,4,13,2,1,583,431604.7387106212,149245.6297466297,168081.3865679427,0,2818.596966082412 -12831,15843,28884,-9,28883,-9,1,0,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-971.2477303498139,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,68.01000000000001,10.99,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,183,0,0,0,0,-13.36761796922644 -12832,15844,28885,28886,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,6.413315994499711,6.131481392938758,0,9,6,30.5503415814115,0,-9,-9,2019,10,0,25,35,1,1,0,2.173379595795075,2.173379595795075,0,0,0,0,0,1,1,0,0,0,52,48,64.55,36.47,7,1,1,0,0,11,2,2,1,1468.5,343043.7995980232,250618.5620689674,110306.635688236,0,1520.024656342243 -12832,15844,28886,28885,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.629968446086611,6.98265335279869,26,-6,2.075473335679995,0,3,2,2019,9,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,3.683673499343169,7.038680596382497,64.55,36.47,52,48,8.333333333333334,1,1,0,0,10,2,2,1,1468.5,343043.7995980232,250618.5620689674,110306.635688236,0,1520.024656342243 -12833,15845,28887,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.417889888186956,8.18192413052123,0,0,-1129.88721793987,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.637787319978408,8.038865339562513,31.77,61.1,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,864,1784912.758526062,1153470.568380397,266455.3942992721,0,3087.460293221573 -12834,15846,28888,28889,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.521515590742236,4.719933067925976,61,-2,32.32673895315956,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.445736538135956,4.558132173474627,58.27,24.79,52.99,51.28,8.333333333333334,1,1,0,0,0,11,4,1,581,1052980.799167002,524283.3638417587,538952.8462039921,0,2699.802070273077 -12834,15846,28889,28888,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.173980548278788,8.416027753029248,61,2,36.82180122928328,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.509076213672659,8.498265351875428,52.99,51.28,58.27,24.79,8.333333333333334,1,1,0,0,0,11,4,1,581,1052980.799167002,524283.3638417587,538952.8462039921,0,2699.802070273077 -12835,15847,28890,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.057785498067526,9.086817091261882,0,0,0,-1056.294419499451,0,2,2,2019,8,0,70,80,1,0,0,15.03963463047503,15.03963463047503,0,0,0,0,0,0,0,0,9.387461140671968,0,56.95,46.69,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,325,204389.0085774506,207981.0717359147,235715.4324393009,150067.7795499294,7848.86999863928 -12836,15848,28891,28892,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.159273781654778,6.863720120996343,0,40,0,-11.14119291811984,0,2,2,2019,6,0,25,20,1,0,0,5.609822069259553,5.609822069259553,0,0,0,0,0,0,0,0,0,0,62.49,55.09,58.16,55.87,8.333333333333334,1,1,0,0,11,13,4,1,1132,255037.5873143222,20008.77279779989,199744.3303579216,0,1793.821772137936 -12836,15848,28892,28891,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,7.346667146649893,7.993439901208536,6.899812807903666,9,0,-40.97789110910678,0,-9,-9,2019,6,0,22,23,1,0,0,10.35550311931436,10.35550311931436,0,0,0,0,0,0,0,0,0,7.013290472451942,58.16,55.87,62.49,55.09,8.333333333333334,1,1,0,0,11,13,4,1,1132,255037.5873143222,20008.77279779989,199744.3303579216,0,1793.821772137936 -12837,15849,28893,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.137252734974506,6.836463632335679,0,0,0,-1050.998151797921,0,3,-9,2019,1,0,24,24,1,0,0,6.158407672711774,6.158407672711774,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,1344,53700.80416207918,0,0,0,1574.96497794823 -12837,15849,28894,-9,28893,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-838.134866098163,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,1344,53700.80416207918,0,0,0,1574.96497794823 -12838,15850,28895,28896,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.543912212419529,8.613472966766828,8.169858483297077,29,-3,29.93022331567807,0,2,3,2019,10,1,15,37,1,1,0,15.32298795897826,15.32298795897826,0,0,0,0,0,0,0,0,0,7.991897179819349,45.91,59.89,46.96,40.76,8.333333333333334,1,1,0,0,9,9,5,1,1395,664646.2794620877,171811.3670532666,381200.871442963,96690.96496087419,4828.288945605431 -12838,15850,28896,28895,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.30299452583602,8.492553815669968,7.422668454865828,31,3,-48.60659874409416,0,2,3,2019,18,6,45,37,1,6,0,12.34946055725188,12.34946055725188,0,0,0,0,0,0,0,0,0,7.459540326061491,46.96,40.76,45.91,59.89,5,1,1,0,0,9,9,5,1,1395,664646.2794620877,171811.3670532666,381200.871442963,96690.96496087419,4828.288945605431 -12839,15851,28897,28898,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,8.488905067671366,8.778686640389944,0,25,2,2.394726009021619,0,2,2,2019,6,0,50,50,1,0,0,13.42469751849415,13.42469751849415,0,0,0,0,0,0,0,0,.9290407955789572,0,59.43,58.05,61.32,35.34,8.333333333333334,1,1,0,0,10,2,5,1,407.5,1097263.210993764,654667.3104994568,355161.9679931392,0,5385.532206633381 -12839,15851,28898,28897,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.973391047244625,9.266081480429657,0,26,-2,45.30553502328489,0,2,2,2019,11,2,35,40,1,2,0,29.40990836682271,29.40990836682271,0,0,0,0,0,0,0,0,1.698452561451763,0,61.32,35.34,59.43,58.05,8.333333333333334,1,1,0,0,10,2,5,1,407.5,1097263.210993764,654667.3104994568,355161.9679931392,0,5385.532206633381 -12840,15852,28899,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.757872810541284,7.227602242529284,0,0,-1083.606717696043,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.429116409467938,58.08,43.46,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,102,906780.7751426974,454399.2474798208,424280.540957249,0,755.0331342404413 -12840,15853,28900,-9,28899,-9,1,0,23,0,0,0,1,1,-9,0,3,5.254487907667568,5.346258927023471,0,0,0,-1069.95112712045,-9,1,-9,2019,4,0,30,0,1,0,0,.6933105443173591,.6933105443173591,0,0,0,0,0,0,0,0,0,0,51.36,49.48,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,63,-133250.6874284789,0,0,0,-253.7591988077957 -12841,15854,28901,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,3.158651166029732,3.115446124470789,0,0,-915.4259869280604,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.483297834043914,3.150282374348784,60.04,39.68,-9,-9,10,1,1,0,0,0,12,2,1,581,344513.9526750791,122368.5238947798,272652.5726609583,0,2850.963447895882 -12842,15855,28902,28903,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,25,-2,73.64076107459755,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.7,53.75,43.25,51.98,10,1,1,0,0,0,2,2,1,124.5,572891.9793914317,468412.3121712799,207089.0465209334,0,1531.456965492969 -12842,15855,28903,28902,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.181791739418579,7.070835025669222,25,2,71.90878760005515,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.505613479032268,43.25,51.98,59.7,53.75,8.333333333333334,1,1,0,0,0,2,2,1,124.5,572891.9793914317,468412.3121712799,207089.0465209334,0,1531.456965492969 -12843,15856,28904,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.01232994633504,9.090674769455257,0,0,0,-875.614180152381,0,2,3,2019,17,7,47,62,1,7,0,22.55771251584017,22.55771251584017,0,0,0,0,0,0,0,0,6.155257663336917,0,40,50.29,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,728,627978.6505949644,632093.0249193148,215787.2634225879,21647.66712974709,3579.538594399469 -12844,15857,28905,-9,28908,28906,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-840.3531812758727,-9,-9,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,948.8,-73611.9563089498,0,0,0,1968.212129173535 -12844,15857,28906,28908,-9,-9,1,1,22,1,3,0,3,3,-9,0,4,0,0,0,5,-4,0,0,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,9.41,67.7,8.333333333333334,1,1,1,1,1,4,1,0,948.8,-73611.9563089498,0,0,0,1968.212129173535 -12844,15857,28907,-9,28908,28906,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1143.546384249957,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,948.8,-73611.9563089498,0,0,0,1968.212129173535 -12844,15857,28908,28906,-9,-9,1,0,26,1,3,0,2,2,-9,0,3,0,0,0,5,4,0,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,9.41,67.7,41.17,59.31,3.333333333333333,1,1,1,1,1,4,1,0,948.8,-73611.9563089498,0,0,0,1968.212129173535 -12844,15857,28909,-9,28908,28906,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.481582150603,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,948.8,-73611.9563089498,0,0,0,1968.212129173535 -12845,15858,28910,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.29341808526063,7.970160205268254,0,0,0,-1042.365125634223,0,2,2,2019,9,1,40,38,1,1,0,11.32846119755685,11.32846119755685,0,0,0,0,0,0,0,0,6.532879086512852,0,49.76,54.41,-9,-9,5,1,1,0,0,7,4,4,1,886,13935.58492673354,49007.69889363507,67663.79580655425,40679.26437675133,1834.429786533139 -12845,15859,28911,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.699462445806724,7.841781593006588,0,0,0,-1003.990202435172,-9,-9,-9,2019,6,0,30,0,1,0,0,9.179839171458939,9.179839171458939,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,367,-69518.7055782895,-31321.02658738564,0,0,1066.541802194775 -12846,15860,28912,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.093968622146829,8.058006483682279,0,0,-1050.082912637848,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.534984110868673,8.000102850340006,64.05,42.36,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,415,974860.8556239685,456303.6370805447,361212.3156896557,0,2206.984818059426 -12847,15861,28913,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.797135648158081,8.739924499882274,0,0,0,-1019.902966835072,0,3,3,2019,11,0,37,37,1,0,0,19.15488656029838,19.15488656029838,0,0,0,0,0,1,1,0,6.668423678615502,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,227,333262.1009457598,9346.755030718203,0,0,2617.511680289681 -12848,15862,28914,28915,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.033500447174775,7.251998711504036,0,30,-3,-29.56592815179372,0,3,1,2019,7,0,30,30,1,0,0,5.293545834255285,5.293545834255285,0,0,0,0,0,0,0,0,0,0,50.27,41.42,43.18,47.7,8.333333333333334,3,4,0,0,11,7,3,1,545,3511591.386831707,0,1389372.331964796,0,1620.517223155232 -12848,15862,28915,28914,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.748457837324713,7.967348965740864,0,30,3,-78.30939423974542,0,3,3,2019,11,0,45,48,1,0,0,6.806006294721651,6.806006294721651,0,0,0,0,0,0,0,0,0,0,43.18,47.7,50.27,41.42,8.333333333333334,3,4,0,0,12,7,3,1,545,3511591.386831707,0,1389372.331964796,0,1620.517223155232 -12848,15863,28916,-9,28914,28915,1,0,25,0,0,0,1,1,-9,0,4,8.131936646970935,7.857427601717565,0,0,0,-1113.004460831667,0,1,1,2019,13,3,12,53,1,3,1,28.49626454567843,28.49626454567843,0,0,0,0,0,0,0,0,0,0,37.77,60.12,-9,-9,3.333333333333333,3,4,0,0,2,7,4,1,1537,115141.9198770331,-45078.21680753173,0,0,892.6228710311893 -12848,15864,28917,-9,28914,28915,1,0,23,0,0,0,1,1,-9,0,3,8.672421252078752,8.648645519351911,0,0,0,-969.179680274048,0,1,1,2019,12,2,40,0,1,2,1,17.10890657191956,17.10890657191956,0,0,0,0,0,0,0,0,0,0,45.97,51.9,-9,-9,6.666666666666667,3,4,0,0,3,7,5,1,1508,30164.81388793167,-46318.29752717514,0,0,1981.095353722675 -12849,15865,28918,-9,-9,-9,1,0,44,0,4,0,3,3,-9,1,2,0,6.433887692484389,6.509533289468627,0,0,-951.2388701327557,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,6.102372937886161,0,52.48,39.54,-9,-9,5,1,1,1,0,0,13,2,0,623.6,0,0,0,0,2440.977489054801 -12849,15865,28919,-9,28918,-9,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.9469198235533,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.72,51.29,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,623.6,0,0,0,0,2440.977489054801 -12849,15865,28920,-9,28918,-9,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.8313131289817,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,623.6,0,0,0,0,2440.977489054801 -12849,15865,28921,-9,28918,-9,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-888.5333907706134,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,623.6,0,0,0,0,2440.977489054801 -12849,15865,28922,-9,28918,-9,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.9269111837569,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,623.6,0,0,0,0,2440.977489054801 -12850,15866,28923,-9,28924,28925,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1154.805828451017,0,2,2,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.7,54.95,-9,-9,1.666666666666667,1,1,1,0,4,11,1,1,171,80544.82277585279,0,0,0,0 -12850,15867,28924,28925,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.280320658971929,8.445517963298748,0,10,5,49.46350059304576,0,-9,-9,2019,12,2,45,45,1,2,0,10.66596412251839,10.66596412251839,0,0,0,0,0,0,0,0,2.597691322823307,0,50.54,47.17,54.79,55.86,1.666666666666667,1,1,0,0,11,11,5,1,312.5,106640.5141625489,49249.30928951762,0,0,2987.056038224153 -12850,15867,28925,28924,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.389095852654918,8.640265639630757,0,10,-5,-70.82562273730666,0,3,-9,2019,6,0,49,37,1,0,0,10.02791318952004,10.02791318952004,0,0,0,0,2,0,0,0,1.494665039364876,0,54.79,55.86,50.54,47.17,1.666666666666667,1,1,0,0,11,11,5,1,312.5,106640.5141625489,49249.30928951762,0,0,2987.056038224153 -12851,15868,28926,28927,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,14,-5,-136.2693150420422,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.56,34.97,53.41,32.47,8.333333333333334,3,4,0,0,2,6,2,0,1245,-5939.14742925981,0,0,0,1075.415113202957 -12851,15868,28927,28926,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,6.781411749129015,6.817509163011772,0,13,5,-57.59918354063935,0,2,-9,2019,6,0,17,20,1,0,0,6.323190477370018,6.323190477370018,0,0,0,0,2,1,1,0,2.793128331069059,0,53.41,32.47,39.56,34.97,10,4,2,0,0,10,6,2,0,1245,-5939.14742925981,0,0,0,1075.415113202957 -12852,15869,28928,28929,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.533806722072192,7.756222756498446,0,11,-2,42.04971245117177,0,2,3,2019,16,4,36,36,1,4,0,5.954640761716824,5.954640761716824,0,0,0,0,0,1,1,0,0,0,44.7,56.48,46.48,58.28,6.666666666666667,1,1,0,0,10,10,3,0,268,-38393.89278154675,18626.71923905214,0,0,2039.510927796334 -12852,15869,28929,28928,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.825808187193824,7.571851162144315,0,11,2,-23.30205234443485,0,-9,-9,2019,11,1,80,90,1,1,0,2.630003091794941,2.630003091794941,0,0,0,1.075328700260213,7,1,1,0,0,0,46.48,58.28,44.7,56.48,8.333333333333334,1,1,0,0,13,10,3,0,268,-38393.89278154675,18626.71923905214,0,0,2039.510927796334 -12853,15870,28930,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.041665919559438,7.577263224218258,0,0,0,-950.3546199264955,0,-9,2,2019,12,0,16,16,1,0,0,9.743592220085498,9.743592220085498,0,0,0,0,0,1,0,1,0,0,41.12,43.31,-9,-9,5,1,1,0,0,13,12,3,0,902,81575.3609134405,-6901.667029781629,0,0,487.3432478829403 -12854,15871,28931,28932,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,33,-8,10.72645189805791,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.52,55.43,59.79,33.07,5,1,1,1,0,5,6,3,1,959,1433519.456458234,1099256.997123876,194397.335289922,0,1608.056113030808 -12854,15871,28932,28931,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.095072882815446,7.675076754554778,32,8,48.65824363015545,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.974087037169785,8.08971239535491,59.79,33.07,27.52,55.43,6.666666666666667,1,1,0,0,7,6,3,1,959,1433519.456458234,1099256.997123876,194397.335289922,0,1608.056113030808 -12855,15872,28933,28935,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,8.154616708242326,8.517960693571693,0,11,-7,41.92275951681897,0,2,-9,2019,12,2,37,37,1,2,0,11.57994407050425,11.57994407050425,0,0,0,0,0,1,1,0,0,0,50.48,56.4,50.09,49.2,8.333333333333334,1,1,0,0,12,7,4,1,1560.666666666667,304142.9813836826,-28131.96980069162,395991.9093912376,257341.3241777759,3465.773050137755 -12855,15872,28934,-9,28933,28935,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.6144065943478,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1560.666666666667,304142.9813836826,-28131.96980069162,395991.9093912376,257341.3241777759,3465.773050137755 -12855,15872,28935,28933,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.645154110418693,8.384682356360708,0,11,7,26.87742903827089,0,-9,-9,2019,9,0,30,40,1,0,0,17.88562374324317,17.88562374324317,0,0,0,0,0,1,1,0,0,0,50.09,49.2,50.48,56.4,6.666666666666667,1,1,0,0,13,7,4,1,1560.666666666667,304142.9813836826,-28131.96980069162,395991.9093912376,257341.3241777759,3465.773050137755 -12856,15873,28936,28938,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,6.034471370011424,5.886293718809566,0,8,2,-22.20207689473529,0,3,3,2019,11,1,70,60,1,1,0,.7917563034177345,.7917563034177345,0,0,0,0,0,1,1,0,1.640364086153129,0,48.45,54.63,33.15,53.9,5,1,1,0,0,9,13,2,1,593,167112.354426294,89552.33568319527,134799.0873463123,18462.9935148906,950.2336755841064 -12856,15873,28937,-9,28938,28936,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.5203914373944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,593,167112.354426294,89552.33568319527,134799.0873463123,18462.9935148906,950.2336755841064 -12856,15873,28938,28936,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.331861641172979,7.236956478987427,0,8,-2,-67.1095695876763,0,2,2,2019,14,3,40,40,1,3,0,4.438578450237597,4.438578450237597,0,0,0,0,0,1,1,0,3.567127453040212,0,33.15,53.9,48.45,54.63,5,1,1,0,0,8,13,2,1,593,167112.354426294,89552.33568319527,134799.0873463123,18462.9935148906,950.2336755841064 -12856,15874,28939,-9,28938,28936,1,1,21,0,1,0,2,2,1,0,4,7.710167731230493,7.759827143151798,0,0,0,-972.004382019195,-9,2,2,2019,11,0,30,0,1,2,1,7.361755009650198,7.361755009650198,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,2,13,3,1,556,102602.7434067002,0,0,0,1369.025349470588 -12857,15875,28940,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,0,0,-911.7913609894771,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,31.87,-9,-9,5,1,1,1,1,0,5,1,0,898,-158828.4802764361,0,0,0,630.3694598479797 -12858,15876,28941,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,4.04511928032473,3.655771428811318,0,0,-1052.727141998129,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,2.127362737807398,4.107033548720063,27.56538647470006,0,1,1,0,0,4.281666134287671,59.36,22.12,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,239,40556.24000559842,0,65378.05904366334,0,563.8323788745397 -12859,15877,28942,-9,28943,-9,1,1,65,0,0,0,1,1,-9,0,3,8.589467325110293,8.706889977080706,5.275744726064887,0,0,-1045.594797713704,0,3,2,2019,6,0,22,30,1,0,0,28.06930299337051,28.06930299337051,0,0,0,0,0,1,1,0,8.251094390575501,5.017920129512039,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,856,813981.4973441132,171635.0226331605,491687.4070324517,0,4680.191225539917 -12859,15878,28943,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1065.034648659224,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,2.02258581217136,9.801329738406176,21.46426199051376,0,1,1,0,5.691149745263176,0,60.59,30.52,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,493,202406.3561983019,0,246584.1248872145,0,163.9947794003146 -12860,15879,28944,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.191036769332702,7.266462539116474,0,0,-1020.063551080887,0,1,1,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.047490320632228,7.114086193498601,59.46,46.99,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,205,237091.6649383648,0,270705.7831641466,0,802.44179707153 -12861,15880,28945,28946,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,10.13022100178801,0,2,1,1,0,1.650068635528292,0,45.98,34.05,52.08,55.93,10,1,1,0,0,0,2,2,0,655,82118.80068179601,10880.66282097931,95316.47476845374,0,1111.102211313722 -12861,15880,28946,28945,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,0,0,7,-4,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,45.98,34.05,8.333333333333334,1,1,0,0,0,2,2,0,655,82118.80068179601,10880.66282097931,95316.47476845374,0,1111.102211313722 -12862,15881,28947,-9,28948,28949,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.907756672749,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,1424,1373714.594194916,904968.2037324449,310379.8122198069,0,8888.528645502809 -12862,15881,28948,28949,-9,-9,1,0,48,0,2,0,1,1,-9,0,2,8.48864558264286,8.484767811765396,0,7,-2,-79.3907380195067,0,1,1,2019,10,2,30,30,1,2,0,18.68821517109662,18.68821517109662,0,0,0,0,0,0,0,0,0,0,51.29,21.77,54.2,57.49,8.333333333333334,1,1,0,0,7,8,4,1,1424,1373714.594194916,904968.2037324449,310379.8122198069,0,8888.528645502809 -12862,15881,28949,28948,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,7.554717568694951,7.044209711304888,0,7,2,-31.09395225486868,0,-9,-9,2019,9,0,42,45,1,0,0,4.297339987004086,4.297339987004086,0,0,0,0,2,0,0,0,9.035248532110851,0,54.2,57.49,51.29,21.77,6.666666666666667,1,1,0,0,8,8,4,1,1424,1373714.594194916,904968.2037324449,310379.8122198069,0,8888.528645502809 -12862,15881,28950,-9,28948,28949,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.4127109657297,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,1424,1373714.594194916,904968.2037324449,310379.8122198069,0,8888.528645502809 -12863,15882,28951,28952,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.059553432669688,8.19094322409458,0,7,0,16.83508236670052,0,3,2,2019,13,1,40,40,1,1,0,11.25600535077743,11.25600535077743,0,0,0,0,0,1,1,0,0,0,47.62,49.51,33.29,43.99,3.333333333333333,1,1,0,0,6,5,4,0,437,549553.2891057769,366275.2802780351,179968.5778722302,55944.48946708142,1993.323637591584 -12863,15882,28952,28951,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.32736043326133,7.563837095544402,0,7,9,-13.13094268623572,0,2,2,2019,20,8,32,37,1,8,0,6.609257110185609,6.609257110185609,0,0,0,0,0,1,1,0,0,0,33.29,43.99,47.62,49.51,1.666666666666667,1,1,0,0,5,5,4,0,437,549553.2891057769,366275.2802780351,179968.5778722302,55944.48946708142,1993.323637591584 -12863,15883,28953,-9,28952,-9,1,0,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1041.365136945803,0,3,-9,2019,18,5,0,42,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,44.28,20.47,-9,-9,5,1,1,1,0,4,5,1,0,775,90517.30836314065,0,0,0,-8.909627344690932 -12864,15884,28954,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1112.423924267863,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.456264367371592,0,43.71,56.91,-9,-9,1.666666666666667,1,1,1,0,10,12,1,1,78,15678.09267918269,0,0,0,139.5886128318947 -12865,15885,28955,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.986908736798632,6.067810567748469,0,0,-1031.718914324317,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.533715844954425,53.63,33.27,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,325,399908.945590427,32291.08693677023,362573.5345307167,0,1148.227841679694 -12866,15886,28956,28957,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.227720081546014,8.354392066834535,0,8,0,-83.70018056573316,0,2,2,2019,12,0,36,36,1,0,0,13.02586698565947,13.02586698565947,0,0,0,0,0,1,1,0,0,0,52.34,56.95,46.44,59.62,8.333333333333334,1,1,0,0,9,11,5,1,647.75,162413.0744626375,-22177.13680493719,171033.8672043884,87605.78565300131,3819.297596140585 -12866,15886,28957,28956,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.875453569493816,8.757129553702114,0,8,0,101.5059687816822,0,2,2,2019,6,0,28,47,1,0,0,26.3379932318445,26.3379932318445,0,0,0,0,0,1,1,0,4.080025273663486,0,46.44,59.62,52.34,56.95,6.666666666666667,1,1,0,0,8,11,5,1,647.75,162413.0744626375,-22177.13680493719,171033.8672043884,87605.78565300131,3819.297596140585 -12866,15886,28958,-9,28957,28956,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.3585296454837,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,647.75,162413.0744626375,-22177.13680493719,171033.8672043884,87605.78565300131,3819.297596140585 -12866,15886,28959,-9,28957,28956,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.811690433124,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,647.75,162413.0744626375,-22177.13680493719,171033.8672043884,87605.78565300131,3819.297596140585 -12867,15887,28960,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.247364684211064,8.114188588127476,0,0,0,-1045.102009964053,0,1,1,2019,12,0,39,37,1,0,0,14.51662167729719,14.51662167729719,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,183,161094.6501169144,83270.75273210689,0,0,1613.175324613679 -12868,15888,28961,28962,-9,-9,1,0,41,0,0,0,1,1,-9,0,1,8.699608663376393,8.733939583510203,0,3,-5,20.89884693454432,0,2,2,2019,22,9,40,40,1,9,0,14.55330535833904,14.55330535833904,0,0,0,0,0,0,0,0,0,0,35.73,46.42,46.9,56.66,5,2,3,0,0,11,11,5,1,2462,1421164.671701508,1089188.805491746,333667.608230986,73145.51426987418,4056.883407622648 -12868,15888,28962,28961,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.37300276115498,8.295866920266556,0,3,5,-9.482128787537864,0,-9,-9,2019,11,1,41,38,1,1,0,13.95515197906788,13.95515197906788,0,0,0,0,0,0,0,0,0,0,46.9,56.66,35.73,46.42,5,1,1,0,0,4,11,5,1,2462,1421164.671701508,1089188.805491746,333667.608230986,73145.51426987418,4056.883407622648 -12869,15889,28963,28964,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,6.419771227597376,6.493516829346599,0,27,0,12.17305616469663,0,3,2,2019,11,0,12,12,1,0,0,7.442613123875493,7.442613123875493,0,0,0,0,0,0,0,0,2.24704081922832,0,39.63,51.79,58.14,44.9,6.666666666666667,1,1,0,0,9,10,4,1,1292.5,1397324.529776139,1045268.830192356,306889.037884413,42542.19168686315,2833.921255667835 -12869,15889,28964,28963,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.514286965160812,8.223805132598518,7.04860408826576,27,0,26.99752435490347,0,2,2,2019,11,2,22,22,1,2,0,21.41281269099402,21.41281269099402,0,0,0,0,0,0,0,0,6.761328020461185,7.466287349955759,58.14,44.9,39.63,51.79,8.333333333333334,1,1,0,0,9,10,4,1,1292.5,1397324.529776139,1045268.830192356,306889.037884413,42542.19168686315,2833.921255667835 -12870,15890,28965,-9,28968,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.733403843106,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,761.75,-31499.1771451378,-16982.27945020958,0,0,2413.535807035277 -12870,15890,28966,-9,28968,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.0575168642997,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,761.75,-31499.1771451378,-16982.27945020958,0,0,2413.535807035277 -12870,15890,28967,-9,28968,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.5115368671022,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,761.75,-31499.1771451378,-16982.27945020958,0,0,2413.535807035277 -12870,15890,28968,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,8.050766338604463,8.365142017557679,5.953421021986321,0,0,-983.5247789343646,0,2,2,2019,22,9,37,41,1,9,0,11.14669214622623,11.14669214622623,0,0,0,0,0,1,1,0,6.489596814721555,0,19.83,65.45,-9,-9,6.666666666666667,1,1,0,0,11,7,3,0,761.75,-31499.1771451378,-16982.27945020958,0,0,2413.535807035277 -12871,15891,28969,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1092.895081530025,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50.65,53.71,-9,-9,1.666666666666667,1,1,0,0,0,12,1,1,584,-111880.1602276746,0,0,0,838.8868803461115 -12872,15892,28970,28971,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.432020658012046,8.260689125207545,0,8,5,-23.53731547959667,0,-9,-9,2019,9,0,40,38,1,1,0,11.71475008723862,11.71475008723862,0,0,0,0,0,0,0,0,0,0,53,54,38.15,62.02,8,1,1,0,0,1,10,5,1,293.5,513372.6487993604,146982.1310255672,217426.2370397561,0,3303.401758932102 -12872,15892,28971,28970,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.078471131768186,8.07483289020321,0,14,-5,60.48565475025123,0,3,2,2019,8,2,47,44,1,2,0,8.613302381749083,8.613302381749083,0,0,0,0,14.5,0,0,0,4.112047524943472,0,38.15,62.02,53,54,8.333333333333334,1,1,0,0,9,10,5,1,293.5,513372.6487993604,146982.1310255672,217426.2370397561,0,3303.401758932102 -12873,15893,28972,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.757515745443508,6.529375578420266,0,0,-1000.944287029421,0,3,3,2019,5,0,0,22,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.443439682758751,6.801198648302099,59.22,37.52,-9,-9,8.333333333333334,4,2,0,0,11,7,2,0,620,428336.8461668837,237785.2446546586,0,0,1227.712589868047 -12874,15894,28973,28974,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.766017024333585,6.832093416285733,57,3,2.715964766291723,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.474000213247566,61.28,35.65,55.61,31.53,8.333333333333334,2,3,0,0,0,7,2,1,723.5,177755.1161023768,69506.56295931822,230109.0801086542,0,1458.955830556964 -12874,15894,28974,28973,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-3,-111.351021553257,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,31.53,61.28,35.65,8.333333333333334,2,3,0,0,0,7,2,1,723.5,177755.1161023768,69506.56295931822,230109.0801086542,0,1458.955830556964 -12875,15895,28975,28976,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.796714121803637,8.504666292143085,0,2,0,-31.2712196058935,0,-9,-9,2019,9,0,60,68,1,0,0,10.01664616513009,10.01664616513009,0,0,0,0,0,0,0,0,0,0,53.97,40,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,0,555,93362.41552395714,31137.31225644508,368471.758813186,286816.9650395334,3502.951084998256 -12875,15895,28976,28975,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,7.996140950720723,8.197044413171794,0,2,0,16.82600168731671,0,1,2,2019,6,0,35,35,1,0,0,10.5331112179787,10.5331112179787,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53.97,40,10,1,1,0,0,10,9,5,0,555,93362.41552395714,31137.31225644508,368471.758813186,286816.9650395334,3502.951084998256 -12876,15896,28977,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,7.566075470671195,7.326738236376896,0,0,-899.3268517933355,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,2.711028737303682,0,0,1,1,0,1.405527528720168,7.464307314434262,47.89,27.15,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,417,42074.46669495816,151564.3392586471,0,0,2309.484616543343 -12877,15897,28978,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.441840515852373,8.367411861330966,0,0,0,-979.6189170965223,0,2,1,2019,11,0,37,38,1,2,0,12.1773297273556,12.1773297273556,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,9,8,4,1,204,-218593.6476909634,-25062.00065031551,0,0,1896.172551327 -12878,15898,28979,28982,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.986260493183613,8.894296380517098,0,20,-1,12.6632391020298,0,3,2,2019,10,0,12,0,1,0,0,86.86378805376251,86.86378805376251,0,0,0,0,0,1,1,0,8.238514565958067,0,54.2,57.49,52,56,8.333333333333334,1,1,0,0,2,8,5,1,255.25,612593.9224018506,56151.08719007318,1173687.688679241,659733.6585079171,7222.570623350375 -12878,15898,28980,-9,28979,28982,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.6511717396845,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,255.25,612593.9224018506,56151.08719007318,1173687.688679241,659733.6585079171,7222.570623350375 -12878,15898,28981,-9,28979,28982,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.9428916980476,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,255.25,612593.9224018506,56151.08719007318,1173687.688679241,659733.6585079171,7222.570623350375 -12878,15898,28982,28979,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.137782665626487,8.980446626518523,0,6,1,-65.40272781716359,-9,3,3,2019,9,0,40,0,1,1,0,22.8600678333321,22.8600678333321,0,0,0,0,0,1,1,0,5.259265401958967,0,52,56,54.2,57.49,7,1,1,0,0,1,8,5,1,255.25,612593.9224018506,56151.08719007318,1173687.688679241,659733.6585079171,7222.570623350375 -12879,15899,28983,-9,28986,28984,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.172001504589,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,576,115781.9308586066,62039.55240623422,0,0,2165.063208304017 -12879,15899,28984,28986,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.621806308149767,7.72252481089305,0,6,6,54.89501740499274,0,-9,-9,2019,5,0,37,35,1,0,0,7.410182267448411,7.410182267448411,0,0,0,0,7,1,1,0,0,0,46.98,59.35,48.77,60.16,8.333333333333334,1,1,0,0,3,10,2,0,576,115781.9308586066,62039.55240623422,0,0,2165.063208304017 -12879,15899,28985,-9,28986,28984,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.431308164657,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,576,115781.9308586066,62039.55240623422,0,0,2165.063208304017 -12879,15899,28986,28984,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,6,-6,-65.12744388633902,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,46.98,59.35,8.333333333333334,1,1,0,0,6,10,2,0,576,115781.9308586066,62039.55240623422,0,0,2165.063208304017 -12880,15900,28987,28988,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.726944151310153,8.765389672659287,0,3,0,102.4146261069955,0,2,3,2019,9,0,41,39,1,0,0,19.22349272498318,19.22349272498318,0,0,0,0,0,0,0,0,0,0,51.83,57.2,56.68,51,6.666666666666667,1,1,0,0,11,13,5,1,4213.5,646840.9415689087,287002.3153106829,265989.7359803403,25946.53641108836,6160.128679409234 -12880,15900,28988,28987,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.323777485526591,9.608816195447014,0,3,0,65.93632427367851,0,3,3,2019,15,4,60,45,1,4,0,25.1398171208969,25.1398171208969,0,0,0,0,0,0,0,0,0,0,56.68,51,51.83,57.2,6.666666666666667,1,1,0,0,11,13,5,1,4213.5,646840.9415689087,287002.3153106829,265989.7359803403,25946.53641108836,6160.128679409234 -12880,15901,28989,-9,28987,28988,1,1,23,0,0,0,2,2,-9,0,3,8.059842910794485,7.981140514167757,0,0,0,-1034.119319422393,0,1,1,2019,11,0,43,40,1,0,1,8.814179578490373,8.814179578490373,0,0,0,0,0,0,0,0,0,0,55.17,47.52,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,352,-108887.9237807207,14825.76893354647,0,0,1752.956392948797 -12880,15902,28990,-9,28987,28988,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-982.95739021136,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,228,-56188.93378923883,0,0,0,0 -12881,15903,28991,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,5.835320638456599,5.633352099083181,0,0,-1084.931923270321,0,-9,-9,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.868306683634573,13.92,60.06,-9,-9,5,1,1,0,0,5,4,2,1,763,632642.6266838668,0,0,0,731.8893739972724 -12882,15904,28992,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1105.773932792229,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.59,34.54,-9,-9,5,1,1,0,0,2,12,1,0,1062,0,0,0,0,1172.538996470367 -12883,15905,28993,-9,28994,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.746634158961,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,412,122962.2776571215,15519.95763804712,85210.57001947719,8111.803097096958,1727.005071714661 -12883,15905,28994,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.264653612691584,8.178581224532609,0,0,0,-942.5471544138371,0,3,1,2019,7,0,45,43,1,0,0,11.06239646987553,11.06239646987553,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,10,4,4,1,412,122962.2776571215,15519.95763804712,85210.57001947719,8111.803097096958,1727.005071714661 -12883,15906,28995,-9,28994,-9,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-863.1496000148932,1,2,-9,2019,14,3,0,20,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,38.01,56.82,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,172,143658.125105988,0,0,0,-161.0461385811786 -12884,15907,28996,-9,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,6.651994142559943,6.972944937062215,0,0,0,-1045.415715125371,-9,3,3,2019,8,0,15,0,1,0,0,7.441474695757951,7.441474695757951,0,0,0,0,42,1,1,0,0,0,38.26,56.14,-9,-9,3.333333333333333,1,1,0,0,2,13,2,0,775,-9816.205301998771,0,0,0,1126.501305545273 -12884,15908,28997,-9,28999,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.5554802561988,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,332,101581.3281483441,0,0,0,1056.92099737801 -12884,15908,28998,-9,28999,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.2305875886918,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,332,101581.3281483441,0,0,0,1056.92099737801 -12884,15908,28999,-9,28996,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,0,0,-931.3479469675627,-9,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.99,48.04,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,332,101581.3281483441,0,0,0,1056.92099737801 -12884,15909,29000,-9,28996,-9,1,0,27,0,2,0,1,1,-9,0,4,7.797274630743518,7.951063000025684,0,0,0,-1030.362636302413,-9,3,-9,2019,6,0,42,0,1,0,1,7.698853426673143,7.698853426673143,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,993,-40891.97499203324,-35500.60684929557,0,0,1064.898995484137 -12884,15910,29001,-9,28996,-9,1,1,25,0,2,0,2,2,-9,0,4,7.304721398970295,7.142670139702532,0,0,0,-1024.252046643322,-9,3,-9,2019,6,0,25,0,1,0,1,7.767036620471048,7.767036620471048,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,13,3,0,3756,-53194.88403316338,-63694.41718703136,0,0,726.4291556377427 -12884,15911,29002,-9,28996,-9,1,1,23,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1024.34429946767,-9,3,-9,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,1,0,0,13,1,0,1885,23322.02101735127,0,0,0,297.6099528766113 -12885,15912,29003,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,2,0,6.268527322790599,6.099964054960396,0,0,-966.615104665255,1,2,2,2019,12,0,0,25,2,0,0,0,0,0,0,0,0,0,1,1,0,6.112984440593834,0,32.74,53.03,-9,-9,5,1,1,0,1,12,11,2,1,501,-14525.10534234884,-11991.44870194342,0,0,944.6568586370108 -12885,15912,29004,-9,29003,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.0178238358137,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,501,-14525.10534234884,-11991.44870194342,0,0,944.6568586370108 -12885,15912,29005,-9,29003,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.0389313110197,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,2,1,501,-14525.10534234884,-11991.44870194342,0,0,944.6568586370108 -12885,15912,29006,-9,29003,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-974.7136884732212,-9,2,-9,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.08,62.98,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,501,-14525.10534234884,-11991.44870194342,0,0,944.6568586370108 -12886,15913,29007,29008,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.263312821947562,6.592441189040605,42,-8,48.31774005711186,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.513882728589541,53.82,45.88,56.58,47.39,8.333333333333334,1,1,0,0,6,9,2,1,789.5,355586.5142938301,80032.15028939434,201965.5748560649,0,1502.387381070888 -12886,15913,29008,29007,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,42,8,-22.44568863926744,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,16.25342696299315,0,0,1,1,0,0,0,56.58,47.39,53.82,45.88,10,1,1,0,0,2,9,2,1,789.5,355586.5142938301,80032.15028939434,201965.5748560649,0,1502.387381070888 -12887,15914,29009,29012,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,8.658534117872222,8.341023420869528,0,10,0,96.287200912673,0,-9,-9,2019,19,6,35,35,1,6,0,17.11202767975748,17.11202767975748,0,0,0,0,0,1,1,0,0,0,23.33,62.51,47.71,25.23,3.333333333333333,3,4,0,0,12,8,4,1,937.4,40046.17095556376,0,0,0,3876.852779184536 -12887,15914,29010,-9,29009,29012,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1137.518952986991,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,3,4,-9,0,0,8,4,1,937.4,40046.17095556376,0,0,0,3876.852779184536 -12887,15914,29011,-9,29009,29012,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.401614450011,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,937.4,40046.17095556376,0,0,0,3876.852779184536 -12887,15914,29012,29009,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.42830094033801,8.357235127551849,0,11,9,82.35019174979368,0,-9,-9,2019,18,5,70,70,1,5,0,7.447094023532308,7.447094023532308,0,0,0,0,0,1,1,0,0,0,47.71,25.23,23.33,62.51,8.333333333333334,3,4,0,0,11,8,4,1,937.4,40046.17095556376,0,0,0,3876.852779184536 -12887,15914,29013,-9,29009,29012,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.886172644928,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,937.4,40046.17095556376,0,0,0,3876.852779184536 -12888,15915,29014,29015,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.979020643828794,5.239653578235736,6,-1,-30.69925597265588,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,1.56484460776222,0,1,1,0,2.932485703824503,4.936449368832038,55,51,42.84,46.47,8.333333333333334,1,1,0,0,0,11,2,1,837,565160.4998502738,109565.692519662,458989.6465463604,0,965.5898609585402 -12888,15915,29015,29014,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.514458325365825,6.661320621560355,6,1,-40.70922031415378,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.190416159193817,6.423043454725648,42.84,46.47,55,51,8.333333333333334,1,1,0,0,0,11,2,1,837,565160.4998502738,109565.692519662,458989.6465463604,0,965.5898609585402 -12889,15916,29016,-9,29017,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-967.446280991328,-9,2,-9,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,2474,-145357.8585654082,12880.04180141172,0,0,-47.69045017938642 -12889,15916,29017,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,6.36201408419117,6.667498379490753,0,0,-1019.758374867298,0,2,2,2019,19,6,0,20,3,6,0,0,0,0,0,0,0,0,1,1,0,6.720601468379173,0,25.87,42.14,-9,-9,3.333333333333333,1,1,0,1,7,10,2,0,2474,-145357.8585654082,12880.04180141172,0,0,-47.69045017938642 -12890,15917,29018,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,8.181190619513094,8.180710899746989,0,0,0,-969.8510709557577,0,3,3,2019,14,0,38,37,1,3,0,9.345408074485704,9.345408074485704,0,0,0,0,0,1,1,0,0,0,43,39,-9,-9,5,2,3,0,1,9,7,3,1,2568.666666666667,29478.9754836294,42164.01770442691,0,0,1752.835635216812 -12890,15917,29019,-9,29018,-9,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-921.2367568819741,-9,2,-9,2019,28,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,41.76,40.65,-9,-9,1.666666666666667,4,2,0,0,0,7,3,1,2568.666666666667,29478.9754836294,42164.01770442691,0,0,1752.835635216812 -12890,15917,29020,-9,29018,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.9236351592325,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,3,1,2568.666666666667,29478.9754836294,42164.01770442691,0,0,1752.835635216812 -12890,15918,29021,-9,29018,-9,1,1,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-831.3458316196097,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.83,55.13,-9,-9,5,2,3,0,0,2,7,1,1,1042,0,0,0,0,277.8557531633228 -12890,15919,29022,-9,29018,-9,1,1,19,0,2,0,2,2,1,0,4,0,0,0,0,0,-927.1350094178516,-9,2,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,3.600033994601973,0,48.78,50.52,-9,-9,6.666666666666667,2,3,0,0,3,7,1,1,276,0,0,0,0,-96.68304964943756 -12891,15920,29023,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,7.679909144611183,8.093581372327208,0,0,0,-862.2309713923287,0,1,-9,2019,21,9,43,42,1,9,0,8.855900545358789,8.855900545358789,0,0,0,0,0,0,0,0,0,0,33.21,47.15,-9,-9,3.333333333333333,1,1,0,1,11,9,4,0,294,83697.2657701073,15023.89961359021,0,0,1173.62773263139 -12892,15921,29024,-9,29025,29026,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-951.2970332414063,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.56,59.44,-9,-9,0,1,1,0,0,1,5,5,1,522.6666666666666,247094.4007726895,62558.84978729524,181869.138711358,0,8648.975788401016 -12892,15921,29025,29026,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.921389267046012,8.642565574798203,0,24,-2,-68.1616267225711,0,2,2,2019,13,2,37,57,1,2,0,20.32401891255446,20.32401891255446,0,0,0,0,0,0,0,0,2.050583114019378,0,46.44,59.62,58.15,52.91,8.333333333333334,1,1,0,0,11,5,5,1,522.6666666666666,247094.4007726895,62558.84978729524,181869.138711358,0,8648.975788401016 -12892,15921,29026,29025,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.789891165238984,9.538523942854795,0,10,2,41.39714110518248,0,2,1,2019,7,0,35,24,1,0,0,53.30807288263017,53.30807288263017,0,0,0,0,0,0,0,0,0,0,58.15,52.91,46.44,59.62,10,1,1,0,0,12,5,5,1,522.6666666666666,247094.4007726895,62558.84978729524,181869.138711358,0,8648.975788401016 -12892,15922,29027,-9,29025,29026,1,0,19,0,0,0,2,2,-9,0,1,7.902090348720468,7.497286662730725,0,0,0,-1089.615870606105,0,1,1,2019,15,3,40,43,1,3,1,5.75067700999951,5.75067700999951,0,0,0,0,0,0,0,0,.0843672206986807,0,25.62,42.98,-9,-9,5,1,1,0,0,3,5,3,1,989,5402.846024616269,-159301.4473102751,0,0,494.7186792237847 -12893,15923,29028,29031,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.25335465335723,7.286939240328327,0,9,-13,81.88081935937217,0,2,-9,2019,9,0,19,24,1,0,0,8.021316474561623,8.021316474561623,0,0,0,0,0,1,1,0,0,0,38.68,55.46,54.96,53.17,5,1,1,0,0,10,5,4,0,434.75,221186.2180339078,115094.2497443368,240896.2000700986,96326.80677778268,4089.555988638157 -12893,15923,29029,-9,29028,29031,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.278555993523,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,434.75,221186.2180339078,115094.2497443368,240896.2000700986,96326.80677778268,4089.555988638157 -12893,15923,29030,-9,29028,29031,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.7390150037012,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,434.75,221186.2180339078,115094.2497443368,240896.2000700986,96326.80677778268,4089.555988638157 -12893,15923,29031,29028,-9,-9,1,1,47,1,2,0,2,2,-9,0,3,8.888798786936169,8.975513445391874,0,9,13,52.97202923167757,0,-9,-9,2019,9,0,50,50,1,0,0,18.1961995063192,18.1961995063192,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.68,55.46,6.666666666666667,1,1,0,0,11,5,4,0,434.75,221186.2180339078,115094.2497443368,240896.2000700986,96326.80677778268,4089.555988638157 -12894,15924,29032,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.675064533689071,6.756120781364428,0,0,-951.6567973303722,0,2,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.493099030687932,58.98,23.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,188,38820.01279489046,38617.62893356659,0,0,1546.504990789869 -12895,15925,29033,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.463341153900078,8.559867393700523,5.527540838248935,0,0,-945.6972330119289,0,3,3,2019,28,11,35,35,1,11,0,15.34414302180072,15.34414302180072,0,0,0,0,0,0,0,0,8.441222623159438,5.768166395937247,37.58,32.94,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,724,1303264.883933566,858767.2434928383,676298.0386465464,2690.988603452448,4150.307524327072 -12896,15926,29034,-9,29035,-9,1,1,16,0,1,0,2,2,-9,0,1,0,0,0,0,0,-796.7151558093407,-9,2,-9,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,1,0,1,0,0,33.17,28.19,-9,-9,3.333333333333333,1,1,1,0,13,12,4,1,761.5,457902.9492334048,302019.3311765717,209880.9069924822,64224.85151077228,3235.301668285914 -12896,15926,29035,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.803706236963753,8.458948296695359,7.189320046370812,0,0,-1012.047344672424,0,2,3,2019,22,10,35,36,1,10,0,9.826544708801665,9.826544708801665,0,0,0,0,2,1,0,1,8.134965965065561,0,29.7,41.88,-9,-9,1.666666666666667,1,1,0,0,10,12,4,1,761.5,457902.9492334048,302019.3311765717,209880.9069924822,64224.85151077228,3235.301668285914 -12897,15927,29036,29037,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,0,0,0,10,-8,0,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,49.69,52.99,46.38,44.17,6.666666666666667,1,1,1,1,8,8,1,1,1438.5,-49257.38987560225,0,0,0,1583.105089501223 -12897,15927,29037,29036,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,0,0,10,8,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,46.38,44.17,49.69,52.99,5,3,4,0,0,0,8,1,1,1438.5,-49257.38987560225,0,0,0,1583.105089501223 -12898,15928,29038,-9,29039,29040,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.8622370375575,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,299.6666666666667,214299.9945396235,55642.45971170731,172137.8297139147,0,2881.160583018956 -12898,15928,29039,29040,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,7.802644894514727,7.746329389701126,0,6,-8,-89.60831923704743,0,3,2,2019,12,0,18,39,1,0,0,17.02851163854602,17.02851163854602,0,0,0,0,0,1,1,0,0,0,47.62,56.48,54.2,57.49,8.333333333333334,1,1,0,0,8,11,4,1,299.6666666666667,214299.9945396235,55642.45971170731,172137.8297139147,0,2881.160583018956 -12898,15928,29040,29039,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,8.193804335322485,8.239456512654925,0,6,8,-30.31190604709091,0,3,3,2019,10,0,48,45,1,0,0,9.005607596356302,9.005607596356302,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.62,56.48,8.333333333333334,1,1,0,0,4,11,4,1,299.6666666666667,214299.9945396235,55642.45971170731,172137.8297139147,0,2881.160583018956 -12899,15929,29041,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.844701996451772,7.912097467034795,0,0,0,-1042.052928446695,0,2,2,2019,6,0,37,0,1,0,0,8.012102173789119,8.012102173789119,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,394,-23560.13051239194,130165.1138794945,0,0,892.011336609957 -12900,15930,29042,29043,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,7,-5,61.28476134004713,-9,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,5.98,57.16,56.15,1.666666666666667,1,1,0,0,0,11,2,1,1474,310817.7965259452,99443.22023341397,27559.69547952044,0,2459.819852713345 -12900,15930,29043,29042,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.136174425493683,6.349381223807256,7,5,-64.1276157681814,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.204173830618045,6.184489711308297,57.16,56.15,56.19,5.98,8.333333333333334,1,1,0,0,6,11,2,1,1474,310817.7965259452,99443.22023341397,27559.69547952044,0,2459.819852713345 -12901,15931,29044,29045,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,7.6257873230392,7.403723352582111,0,10,-2,-68.93176945122462,0,1,1,2019,10,0,26,26,1,0,0,7.982774517459801,7.982774517459801,0,0,0,0,0,0,0,0,0,0,52.54,48.71,50.01,55.31,8.333333333333334,1,1,0,0,11,1,4,1,438.5,290946.733197108,60017.62497066731,156310.3693048296,8480.579798446648,2574.392811607665 -12901,15931,29045,29044,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.216639239768003,8.093008171552093,0,10,2,47.12263501399682,0,2,3,2019,14,3,38,38,1,3,0,10.79632399516058,10.79632399516058,0,0,0,0,7,0,0,0,0,0,50.01,55.31,52.54,48.71,3.333333333333333,1,1,0,0,9,1,4,1,438.5,290946.733197108,60017.62497066731,156310.3693048296,8480.579798446648,2574.392811607665 -12902,15932,29046,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.533662177042754,6.87186728527838,0,0,-940.5763602542725,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.041314667651451,60.05,29.29,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,190,399181.7257555319,88231.22373231289,318155.9470343975,0,1681.419918973235 -12903,15933,29047,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.180410723081152,7.956539038652308,0,0,0,-1085.154141510176,0,2,1,2019,17,6,35,35,1,6,0,11.64002117867452,11.64002117867452,0,0,0,0,0,0,0,0,0,0,35.56,52.74,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,324,406826.3590456261,113130.065763347,153058.2493191838,28660.19356596551,1701.906256786267 -12904,15934,29048,29049,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.358549530178971,8.440573285058964,0,8,-2,-2.796940388155575,0,1,1,2019,6,0,60,45,1,0,0,9.797525493687534,9.797525493687534,0,0,0,0,0,0,0,0,3.184724637914692,0,52.82,53.97,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,0,359,765831.2400144715,364906.4752672925,1168667.788457532,822297.0786901293,6356.578032983941 -12904,15934,29049,29048,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.641108494332856,9.663257715301175,0,8,2,-74.58706112267269,0,2,1,2019,11,0,50,55,1,0,0,34.79444751285352,34.79444751285352,0,0,0,0,0,0,0,0,4.922547829840059,0,57.16,56.15,52.82,53.97,8.333333333333334,1,1,0,0,9,7,5,0,359,765831.2400144715,364906.4752672925,1168667.788457532,822297.0786901293,6356.578032983941 -12905,15935,29050,29051,-9,-9,1,1,35,0,0,0,2,2,-9,0,1,0,0,0,4,9,-42.41402388430372,0,3,2,2019,28,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,38.42,15.04,48.28,53.42,1.666666666666667,1,1,1,1,2,13,3,0,1013.5,86086.55230837656,-1957.468598813539,180020.0036287445,63465.06827309546,2161.991119021593 -12905,15935,29051,29050,-9,-9,1,0,26,0,0,0,3,3,-9,0,3,8.181231690511593,8.082936854092146,0,4,0,98.82889007734812,0,-9,-9,2019,12,0,40,37,1,0,0,9.178699790238054,9.178699790238054,0,0,0,0,0,1,0,1,0,0,48.28,53.42,38.42,15.04,5,1,1,0,1,4,13,3,0,1013.5,86086.55230837656,-1957.468598813539,180020.0036287445,63465.06827309546,2161.991119021593 -12906,15936,29052,29053,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,32,7,0,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,42.62328966263703,39.09790790004871,392.741535610496,0,1,1,0,0,0,30.77,22.6,15.05,29.93,5,1,1,0,0,0,2,1,0,759,152076.3983362537,0,226510.6293342646,0,2438.926659747941 -12906,15936,29053,29052,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,15.05,29.93,30.77,22.6,5,1,1,0,0,0,2,1,0,759,152076.3983362537,0,226510.6293342646,0,2438.926659747941 -12907,15937,29054,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.227342699844314,7.400994513507761,0,0,-990.2098984673756,0,3,-9,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.989945480836456,7.45482573092347,58.37,36.55,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,106,395244.3728211807,-11611.7488138426,355523.638788982,0,1161.649283232519 -12907,15938,29055,-9,29054,-9,1,1,56,0,0,0,2,2,-9,0,4,9.739413447496874,9.726152749341864,0,0,0,-995.4994432695368,0,2,3,2019,9,0,84,80,1,0,0,19.6283335768412,19.6283335768412,0,0,0,0,7,1,1,0,0,0,48.09,56.13,-9,-9,5,1,1,0,0,7,11,5,1,1923,206544.0947504247,107828.6035215207,80791.1790184938,49006.25485256297,11570.72680734196 -12908,15939,29056,29057,-9,-9,1,0,51,0,0,0,1,1,-9,1,2,0,0,0,21,4,58.65128938027127,0,3,1,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,33.39,44.43,57.98,5,1,1,1,0,8,9,5,1,2354,226502.4004402382,143435.669409073,127527.5558459932,56440.37091389656,3373.667559156313 -12908,15939,29057,29056,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,9.312464155383866,9.236291614740956,0,21,-4,-8.471655495031737,0,3,1,2019,10,0,55,48,1,0,0,19.05413073583759,19.05413073583759,0,0,0,0,0,1,1,0,0,0,44.43,57.98,48.53,33.39,6.666666666666667,1,1,0,0,11,9,5,1,2354,226502.4004402382,143435.669409073,127527.5558459932,56440.37091389656,3373.667559156313 -12909,15940,29058,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.793977920898492,7.760317726392501,0,0,0,-944.469160121498,0,1,1,2019,17,8,35,34,1,8,0,8.407481681246582,8.407481681246582,0,0,0,0,0,0,0,0,7.073730704833569,0,46.47,51.73,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,323,149137.366460562,95752.94435787298,0,0,1452.852047623854 -12909,15941,29059,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.943772099077997,7.912891220609652,0,0,0,-1069.980987381131,-9,-9,-9,2019,9,0,70,0,1,1,0,4.418966357627246,4.418966357627246,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,8,4,6,0,0,1,12,4,1,300,-72602.92800342944,-2127.240060928823,0,0,1381.296288220411 -12910,15942,29060,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.954656527382015,8.930580574137442,0,0,-825.7587998386566,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,2.445062583355249,0,1,1,0,7.044515209471165,8.897310784796865,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1115,2551024.156367631,1109312.275703877,424569.081321976,0,5981.314413526473 -12911,15943,29061,29062,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.42783818363254,5.181142539879845,37,-3,-113.9588055963537,0,3,3,2019,9,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.426843103000089,51.35,38.95,49.04,55.86,10,1,1,0,0,0,9,4,1,1460.5,1668889.652318286,959466.6440840682,578070.6158997982,0,3838.992056254078 -12911,15943,29062,29061,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.040815898031642,8.388966894777065,7.702103141950248,37,3,56.495235436422,0,3,3,2019,11,0,26,36,1,0,0,11.47248487490083,11.47248487490083,0,0,0,0,27,1,1,0,3.689241768747535,7.105826778626585,49.04,55.86,51.35,38.95,8.333333333333334,1,1,0,0,5,9,4,1,1460.5,1668889.652318286,959466.6440840682,578070.6158997982,0,3838.992056254078 -12912,15944,29063,29065,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,8.837130419105453,8.760614835802562,0,11,3,94.51078101146216,0,1,1,2019,9,1,39,38,1,1,0,14.02796945026492,14.02796945026492,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.74,49,6.666666666666667,2,3,0,0,6,4,5,1,760,199270.1632426242,36825.53249666047,225503.2866149471,85504.23456999169,3897.277567881027 -12912,15944,29064,-9,29065,29063,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.08521033464,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,5,1,760,199270.1632426242,36825.53249666047,225503.2866149471,85504.23456999169,3897.277567881027 -12912,15944,29065,29063,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.229839350253028,8.179511777426679,0,11,-3,-71.21347724344641,0,2,1,2019,9,0,32,32,1,0,0,12.07978935645126,12.07978935645126,0,0,0,0,0,1,1,0,0,0,57.74,49,48.77,60.16,8.333333333333334,2,3,0,0,9,4,5,1,760,199270.1632426242,36825.53249666047,225503.2866149471,85504.23456999169,3897.277567881027 -12913,15945,29066,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.00982617318151,8.184555042672914,0,0,0,-967.0369937241094,0,-9,-9,2019,8,1,40,40,1,1,0,9.548264955190689,9.548264955190689,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,462,468484.1235517754,-34621.13419336341,178690.3253273162,0,1917.260190645442 -12914,15946,29067,29068,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.87764000487523,8.913928546085602,0,9,-1,-18.2022664170372,0,2,1,2019,8,0,40,40,1,0,0,23.32999084029867,23.32999084029867,0,0,0,0,0,1,1,0,4.077553159318485,0,48.42,55.98,33.3,64.17,8.333333333333334,1,1,0,0,8,8,5,1,1445.25,364895.3308104012,70632.09180559963,0,0,8102.968799001159 -12914,15946,29068,29067,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,9.713879175379875,9.702615257598394,0,15,1,-23.4377133469805,0,1,1,2019,12,0,50,57,1,0,0,35.98920843108618,35.98920843108618,0,0,0,0,0,1,1,0,3.648463109335855,0,33.3,64.17,48.42,55.98,6.666666666666667,1,1,0,0,10,8,5,1,1445.25,364895.3308104012,70632.09180559963,0,0,8102.968799001159 -12914,15946,29069,-9,29067,29068,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.1382038489313,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,1445.25,364895.3308104012,70632.09180559963,0,0,8102.968799001159 -12914,15946,29070,-9,29067,29068,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.2012737466495,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,1445.25,364895.3308104012,70632.09180559963,0,0,8102.968799001159 -12915,15947,29071,29072,-9,-9,1,1,39,0,2,0,2,2,-9,1,5,0,0,0,23,-7,0,0,-9,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.77,60.16,28.22,44.55,8.333333333333334,1,1,0,0,0,1,1,0,865,53450.818111372,-56175.16160667761,0,0,2434.870462150119 -12915,15947,29072,29071,-9,-9,1,0,46,0,2,0,3,3,-9,1,2,0,0,0,23,7,0,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.22,44.55,48.77,60.16,5,1,1,0,0,0,1,1,0,865,53450.818111372,-56175.16160667761,0,0,2434.870462150119 -12915,15947,29073,-9,29072,29071,1,1,16,0,2,1,3,0,-9,1,5,0,0,0,0,0,-1175.2569100414,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.09,58.35,-9,-9,10,1,1,0,1,0,1,1,0,865,53450.818111372,-56175.16160667761,0,0,2434.870462150119 -12915,15947,29074,-9,29072,29071,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.719065329093,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,1,0,865,53450.818111372,-56175.16160667761,0,0,2434.870462150119 -12915,15948,29075,-9,29072,29071,1,1,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-1087.315143691152,-9,3,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,360,17149.0186930982,0,0,0,0 -12916,15949,29076,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,3.957358346579996,4.300507712701203,0,0,-1023.910416949312,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.618299872548388,4.310562984701177,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,3553,-90796.08416615531,117694.6777304529,0,0,1714.510217329409 -12917,15950,29077,29078,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.904061230852751,9.052475931234673,0,25,-1,-73.0404029766983,-9,1,1,2019,13,2,29,0,1,2,0,25.8621281062304,25.8621281062304,0,0,0,0,0,0,0,0,5.400461587068566,0,44.11,50.11,40.76,48.77,6.666666666666667,1,1,0,0,10,8,5,0,633,3494157.109812653,1725518.6757257,730850.4676492151,0,4764.627409912395 -12917,15950,29078,29077,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.341906908446479,8.231037312166789,25,1,-110.848485502803,-9,2,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,0,0,0,6.654574394443806,8.124139759639641,40.76,48.77,44.11,50.11,3.333333333333333,1,1,0,0,5,8,5,0,633,3494157.109812653,1725518.6757257,730850.4676492151,0,4764.627409912395 -12918,15951,29079,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.852736943766661,8.729770172411063,0,0,0,-946.0150848512553,0,2,2,2019,13,3,35,37,1,3,0,22.11253657669942,22.11253657669942,0,0,0,0,0,1,1,0,0,0,29.24,60.65,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,644,319888.0604313504,447934.0388575194,150973.1756594577,73299.33269749307,1934.303194053267 -12919,15952,29080,-9,29081,29082,1,1,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1006.609665347449,0,3,3,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.95,59.97,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,608,1600.072198684757,0,0,0,880.9584853048405 -12919,15953,29081,29082,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,8,-5,0,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.08,41.37,53.89,47.14,10,1,1,1,0,0,5,1,0,1564.5,-11894.57184408042,0,70114.55884151976,35274.52812781886,2007.210453312419 -12919,15953,29082,29081,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,8,5,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.89,47.14,38.08,41.37,10,1,1,1,0,0,5,1,0,1564.5,-11894.57184408042,0,70114.55884151976,35274.52812781886,2007.210453312419 -12920,15954,29083,29084,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.832876647066795,8.728964879046915,0,2,2,70.96246300581338,0,3,3,2019,12,0,45,84,1,0,0,24.86120293570626,24.86120293570626,0,0,0,0,0,0,0,0,1.167485432962417,0,47.95,56.13,60.02,56.42,8.333333333333334,1,1,0,0,5,7,5,1,1262.5,469211.1413752373,203941.0972822251,204144.5976332499,82230.07527172042,4505.693271130735 -12920,15954,29084,29083,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,9.04667303545434,8.632277401634134,0,2,-2,75.87405985886613,0,-9,-9,2019,6,0,42,42,1,0,0,17.85952642392472,17.85952642392472,0,0,0,0,0,0,0,0,3.142375837821024,0,60.02,56.42,47.95,56.13,10,1,1,0,0,6,7,5,1,1262.5,469211.1413752373,203941.0972822251,204144.5976332499,82230.07527172042,4505.693271130735 -12921,15955,29085,-9,29087,29089,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.4295991902516,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,795.2,120277.2987573401,14809.24052019013,126730.3572663612,104750.2939099999,4049.969449132164 -12921,15955,29086,-9,29087,29089,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.105601673442,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,795.2,120277.2987573401,14809.24052019013,126730.3572663612,104750.2939099999,4049.969449132164 -12921,15955,29087,29089,-9,-9,1,0,45,1,3,0,2,2,-9,0,4,5.564885702883075,5.391760314305754,0,29,1,61.56599840384388,0,2,2,2019,6,0,84,10,1,0,0,.3635533909560367,.3635533909560367,0,0,0,0,0,1,0,1,0,0,54.79,55.86,58.89,48.6,10,1,1,0,0,2,5,3,1,795.2,120277.2987573401,14809.24052019013,126730.3572663612,104750.2939099999,4049.969449132164 -12921,15955,29088,-9,-9,29089,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.0497547268385,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,6,-9,0,0,5,3,1,795.2,120277.2987573401,14809.24052019013,126730.3572663612,104750.2939099999,4049.969449132164 -12921,15955,29089,29087,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.377261214027424,8.155201684394676,0,11,-1,-44.1793645099502,0,-9,-9,2019,10,0,55,55,1,0,0,8.27450027227048,8.27450027227048,0,0,0,0,0,1,0,1,0,0,58.89,48.6,54.79,55.86,10,1,1,0,0,12,5,3,1,795.2,120277.2987573401,14809.24052019013,126730.3572663612,104750.2939099999,4049.969449132164 -12922,15956,29090,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1114.463148989333,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,7.025249489962848,0,33.72,36.25,-9,-9,1.666666666666667,1,1,0,1,7,7,1,1,1186,0,0,0,0,765.1785309018992 -12923,15957,29091,29093,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,7.453253991363888,7.435930355863587,0,9,1,-76.60783256887383,0,2,3,2019,3,0,37,35,1,0,0,5.977362084246197,5.977362084246197,0,0,0,0,0,1,1,0,5.354113036802358,0,54.37,54.8,50.03,52.62,8.333333333333334,2,3,0,0,9,5,3,1,1005.75,341030.6657682449,211866.2632808505,213133.4800216776,115043.1698215808,1958.090073520436 -12923,15957,29092,-9,29093,29091,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.0863961243456,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,1005.75,341030.6657682449,211866.2632808505,213133.4800216776,115043.1698215808,1958.090073520436 -12923,15957,29093,29091,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.778464379484466,7.939340430632431,0,9,-1,29.62803080260843,0,2,2,2019,11,0,22,22,1,0,0,14.79542837639945,14.79542837639945,0,0,0,0,0,1,1,0,0,0,50.03,52.62,54.37,54.8,8.333333333333334,1,1,0,0,9,5,3,1,1005.75,341030.6657682449,211866.2632808505,213133.4800216776,115043.1698215808,1958.090073520436 -12923,15957,29094,-9,29093,29091,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.6797428818621,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,5,3,1,1005.75,341030.6657682449,211866.2632808505,213133.4800216776,115043.1698215808,1958.090073520436 -12924,15958,29095,-9,29098,29099,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.293935526987,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,718.2,1093889.824443155,124710.3543226887,678244.6014692571,0,2077.18507053792 -12924,15958,29096,-9,29098,29099,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.055706565829,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,718.2,1093889.824443155,124710.3543226887,678244.6014692571,0,2077.18507053792 -12924,15958,29097,-9,29098,29099,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1133.431192362313,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,3,1,718.2,1093889.824443155,124710.3543226887,678244.6014692571,0,2077.18507053792 -12924,15958,29098,29099,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,8.203919488602946,8.266930311747846,0,19,1,71.88306917223636,0,1,1,2019,8,0,52,48,1,0,0,12.57525317886646,12.57525317886646,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.27,56.95,8.333333333333334,1,1,0,0,12,10,3,1,718.2,1093889.824443155,124710.3543226887,678244.6014692571,0,2077.18507053792 -12924,15958,29099,29098,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,0,0,0,19,-1,8.315902706564204,0,2,1,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,6.52211125181566,0,49.27,56.95,54.2,57.49,8.333333333333334,1,1,1,0,11,10,3,1,718.2,1093889.824443155,124710.3543226887,678244.6014692571,0,2077.18507053792 -12925,15959,29100,29101,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.692150653365766,7.779840857084221,54,1,127.8056207939178,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.594749626286218,7.861979172130154,58.32,50.22,60.45,38.55,8.333333333333334,1,1,0,0,3,1,3,1,308.5,664518.0646973469,368329.216824427,201705.7601390969,0,2273.33280133167 -12925,15959,29101,29100,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.897864845515936,6.029580847404067,54,-1,-95.4003799484621,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.639788967626256,0,0,1,1,0,4.284400713466419,6.268844256975085,60.45,38.55,58.32,50.22,8.333333333333334,1,1,0,0,0,1,3,1,308.5,664518.0646973469,368329.216824427,201705.7601390969,0,2273.33280133167 -12926,15960,29102,29103,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.528829428185308,7.51249910899434,9,2,-27.35443035872151,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.774962025653955,57.16,56.15,62.2,18.64,8.333333333333334,1,1,0,0,0,5,3,1,754.5,644032.8497323042,532767.7599859114,103515.9614016641,0,2523.315890568806 -12926,15960,29103,29102,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,9,-2,-73.95629109059067,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,15.77181432020135,0,0,1,1,0,0,0,62.2,18.64,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,754.5,644032.8497323042,532767.7599859114,103515.9614016641,0,2523.315890568806 -12927,15961,29104,29105,-9,-9,1,0,31,0,2,0,1,1,0,0,4,0,0,0,9,-8,-91.14326219895453,-9,1,1,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.55,57.07,50.23,52.59,6.666666666666667,4,5,0,0,0,11,2,0,1026.75,73831.32619289486,83010.72098783517,0,0,1789.809250146031 -12927,15961,29105,29104,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,7.689815069803458,7.803256414037276,0,9,8,-73.18036684256383,0,2,2,2019,13,3,25,24,1,3,0,10.99831482345973,10.99831482345973,0,0,0,0,0,1,1,0,0,0,50.23,52.59,31.55,57.07,8.333333333333334,4,5,0,1,6,11,2,0,1026.75,73831.32619289486,83010.72098783517,0,0,1789.809250146031 -12927,15961,29106,-9,29104,29105,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.721848812562,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,11,2,0,1026.75,73831.32619289486,83010.72098783517,0,0,1789.809250146031 -12927,15961,29107,-9,29104,29105,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.5700279034015,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,11,2,0,1026.75,73831.32619289486,83010.72098783517,0,0,1789.809250146031 -12928,15962,29108,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.555908619272561,8.618193393396048,0,0,0,-982.85513907465,0,2,2,2019,10,3,43,44,1,3,0,13.57939035105853,13.57939035105853,0,0,0,0,0,1,1,0,3.928890788971233,0,55.14,44.89,-9,-9,8.333333333333334,1,1,0,0,12,12,5,0,909,188438.3124964801,93908.48466197438,0,0,1935.748884929197 -12929,15963,29109,-9,29112,29111,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-860.6682600222769,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,1257,630126.4086188935,533836.3930358767,139948.8080995781,84050.2024079508,3618.896992916919 -12929,15963,29110,-9,29112,29111,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.780709766507,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1257,630126.4086188935,533836.3930358767,139948.8080995781,84050.2024079508,3618.896992916919 -12929,15963,29111,29112,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.516253747681843,8.399020906853483,0,8,-2,-36.49585900063363,0,3,3,2019,6,0,44,39,1,0,0,12.95646219286203,12.95646219286203,0,0,0,0,0,1,1,0,.9791996579666101,0,56.52,48.31,54.96,53.17,8.333333333333334,1,1,0,0,8,1,4,1,1257,630126.4086188935,533836.3930358767,139948.8080995781,84050.2024079508,3618.896992916919 -12929,15963,29112,29111,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.320456473196323,8.484984951315472,0,8,2,-133.7354229033363,0,3,3,2019,4,0,35,35,1,0,0,15.48508893247847,15.48508893247847,0,0,0,0,0,1,1,0,2.0602340578801,0,54.96,53.17,56.52,48.31,8.333333333333334,1,1,0,0,8,1,4,1,1257,630126.4086188935,533836.3930358767,139948.8080995781,84050.2024079508,3618.896992916919 -12930,15964,29113,29114,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.302671184399763,5.549789855915587,7,4,-26.08877572265585,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.788758546449175,5.663794564521964,60.29,52.11,51.98,49.17,10,1,1,0,0,9,2,2,1,609,848313.4490307127,84368.68819859879,587873.2224919295,0,798.0732017498156 -12930,15964,29114,29113,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,56,-4,-74.54681839772138,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.625460336418641,0,51.98,49.17,60.29,52.11,8.333333333333334,1,1,0,0,4,2,2,1,609,848313.4490307127,84368.68819859879,587873.2224919295,0,798.0732017498156 -12931,15965,29115,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1082.973959572539,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,8.333333333333334,1,1,0,0,5,11,1,0,931,-102744.8574284218,0,0,0,964.0069050840249 -12932,15966,29116,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.67369332848077,8.81257937778601,0,0,0,-1100.937602129815,-9,2,-9,2019,14,4,40,0,1,4,0,14.10875989969025,14.10875989969025,0,0,0,0,0,0,0,0,0,0,45.3,44.14,-9,-9,6.666666666666667,1,1,0,0,9,12,5,0,589,193762.0360344867,30352.29606890069,26876.08345447807,69330.5038423995,1859.78318886581 -12933,15967,29117,-9,29119,29118,1,0,25,0,0,0,2,2,-9,0,3,8.578220184234684,8.844820624240883,0,0,0,-948.1715359649128,0,2,2,2019,8,0,45,35,1,0,1,15.72964578024491,15.72964578024491,0,0,0,0,0,1,1,0,0,0,40.18,55.92,-9,-9,8.333333333333334,1,1,0,0,7,6,5,0,467,155456.7545552888,-148302.0250708037,0,0,2169.847719629425 -12933,15968,29118,29119,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.804316766310892,8.448461830491166,0,4,2,-16.08452039292968,0,-9,-9,2019,6,0,55,49,1,0,0,13.63741451688751,13.63741451688751,0,0,0,0,0,1,1,0,5.796204900468923,0,52.82,53.97,8.970000000000001,40.98,8.333333333333334,1,1,0,0,8,6,4,0,1659.5,1011102.286495788,995519.1740026686,101539.1562788239,0,2898.705854966174 -12933,15968,29119,29118,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,4,-2,-118.8207521541772,0,3,3,2019,32,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,8.970000000000001,40.98,52.82,53.97,3.333333333333333,1,1,0,0,3,6,4,0,1659.5,1011102.286495788,995519.1740026686,101539.1562788239,0,2898.705854966174 -12934,15969,29120,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.416357020365784,7.183598752714071,0,0,0,-1095.409177463933,-9,3,2,2019,10,0,21,0,1,0,0,8.660046677014096,8.660046677014096,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,324.5,455194.5640928422,189143.7922093258,390354.0873759088,79284.85287153897,1846.781901717991 -12934,15969,29121,-9,29120,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-901.5362517678215,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,2,0,324.5,455194.5640928422,189143.7922093258,390354.0873759088,79284.85287153897,1846.781901717991 -12934,15970,29122,-9,29120,-9,1,1,18,0,1,0,2,2,-9,0,5,7.427631997456429,7.506220646194179,0,0,0,-965.8576023240993,-9,2,-9,2019,5,0,40,0,1,0,1,5.33110405240977,5.33110405240977,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,268,60889.59008296274,0,0,0,830.8036422944474 -12935,15971,29123,29124,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.545923213149788,8.359674459932995,0,6,0,-25.40472850782311,0,2,2,2019,8,1,41,39,1,1,0,11.3381762994392,11.3381762994392,0,0,0,0,0,1,1,0,4.812694775949476,0,45.91,59.89,43.12,58.55,8.333333333333334,1,1,0,0,7,9,4,1,345.25,162221.7297721737,95668.17143392545,142484.8446869924,104381.5150867223,3668.522371837336 -12935,15971,29124,29123,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.754141546249665,8.227466103244769,0,6,0,-51.27091191510468,0,-9,-9,2019,15,3,37,37,1,3,0,15.86686077821575,15.86686077821575,0,0,0,0,0,1,1,0,4.452322630344777,0,43.12,58.55,45.91,59.89,5,1,1,0,0,7,9,4,1,345.25,162221.7297721737,95668.17143392545,142484.8446869924,104381.5150867223,3668.522371837336 -12935,15971,29125,-9,29123,29124,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.397052857523,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,345.25,162221.7297721737,95668.17143392545,142484.8446869924,104381.5150867223,3668.522371837336 -12935,15971,29126,-9,29123,29124,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.235447532757,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,345.25,162221.7297721737,95668.17143392545,142484.8446869924,104381.5150867223,3668.522371837336 -12936,15972,29127,-9,-9,-9,1,0,22,2,3,0,2,2,-9,1,2,0,0,0,0,0,-1000.967806423109,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,36.6,54.12,-9,-9,5,1,1,0,1,0,12,1,0,481.75,39697.44838434942,0,0,0,1488.752531839009 -12936,15972,29128,-9,29127,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.49618932569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,1,0,481.75,39697.44838434942,0,0,0,1488.752531839009 -12936,15972,29129,-9,29127,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.301468214875,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,1,0,481.75,39697.44838434942,0,0,0,1488.752531839009 -12936,15972,29130,-9,29127,-9,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.1560091157,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,481.75,39697.44838434942,0,0,0,1488.752531839009 -12937,15973,29131,29132,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.905500781141327,7.161562659973313,45,3,-53.33070926581865,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.373217940211737,6.959496345279518,58.56,46.45,57.09,46.7,10,1,1,0,0,0,10,2,1,1240.5,775958.719611577,244299.6728829769,402592.7434006277,0,2352.415961443227 -12937,15973,29132,29131,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.229729138846653,6.291705472351139,47,-3,-39.84642580170513,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.875530697759435,6.513697441403362,57.09,46.7,58.56,46.45,8.333333333333334,1,1,0,0,2,10,2,1,1240.5,775958.719611577,244299.6728829769,402592.7434006277,0,2352.415961443227 -12938,15974,29133,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.447483431190121,6.20120759656384,0,0,-920.0667567727089,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,2.631799082369042,0,26.70850189496823,0,1,1,0,5.890069369733551,6.421029126925072,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,2,0,1832,204417.6400967755,0,172907.5809169153,0,1502.958735523638 -12939,15975,29134,-9,29135,29136,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.664331853121,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,691.75,356908.3092751136,132583.0567739238,326743.9270380742,188602.8985167997,3713.871842389813 -12939,15975,29135,29136,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,7.792110989354052,7.2602976169549,0,7,-1,8.577883803407042,0,2,1,2019,6,0,12,20,1,0,0,15.53035306098587,15.53035306098587,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,10,1,1,0,0,9,6,4,1,691.75,356908.3092751136,132583.0567739238,326743.9270380742,188602.8985167997,3713.871842389813 -12939,15975,29136,29135,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,9.036157532366802,8.683080764912374,0,7,1,-72.5772979832681,0,2,2,2019,7,0,45,50,1,0,0,21.37087206627423,21.37087206627423,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,12,6,4,1,691.75,356908.3092751136,132583.0567739238,326743.9270380742,188602.8985167997,3713.871842389813 -12939,15975,29137,-9,29135,29136,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.820957215165,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,691.75,356908.3092751136,132583.0567739238,326743.9270380742,188602.8985167997,3713.871842389813 -12940,15976,29138,-9,29140,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.7243612123184,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,2,1,493,265836.1774624352,9962.618699304878,239875.0518322924,20349.88767435176,1915.63801906668 -12940,15976,29139,-9,29140,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.2140041644261,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,2,1,493,265836.1774624352,9962.618699304878,239875.0518322924,20349.88767435176,1915.63801906668 -12940,15976,29140,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,7.295723243364043,7.887810209157805,7.055167759447048,0,0,-977.541754611615,0,3,3,2019,11,0,20,20,1,0,0,11.28189532254879,11.28189532254879,0,0,0,0,0,1,1,0,6.375665193910121,5.715428009689052,60.59,54.8,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,493,265836.1774624352,9962.618699304878,239875.0518322924,20349.88767435176,1915.63801906668 -12941,15977,29141,29142,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.91151436537657,6.833616942588809,0,33,-1,-18.22662145864427,0,2,2,2019,9,0,50,50,1,0,0,2.611774754941987,2.611774754941987,0,0,0,0,2,0,0,0,0,0,58.32,50.22,39.48,53.35,8.333333333333334,1,1,0,0,9,7,4,1,836.5,702312.3470720639,46600.76541670765,721577.1934295059,42496.17572999471,1906.395160247641 -12941,15977,29142,29141,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.270486634325776,8.371256183333259,0,33,1,126.2430927545445,0,-9,2,2019,19,7,38,39,1,7,0,13.3119561288763,13.3119561288763,0,0,0,0,14.5,0,0,0,5.891713520557023,0,39.48,53.35,58.32,50.22,8.333333333333334,1,1,0,0,6,7,4,1,836.5,702312.3470720639,46600.76541670765,721577.1934295059,42496.17572999471,1906.395160247641 -12942,15978,29143,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.473043969425133,8.679533044284574,0,0,-918.8833656373666,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.691912214891916,8.079221496199397,53,47,-9,-9,7,2,3,0,0,5,8,5,1,1107,1390639.881326369,751887.6191622805,678192.8146074408,0,3589.448755334992 -12943,15979,29144,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,2,0,0,0,0,0,-971.3206239343644,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,36.59,38.99,-9,-9,8.333333333333334,1,1,1,0,4,10,1,0,1048,240748.6788579533,61689.28953752291,0,0,440.0591016757095 -12944,15980,29145,29146,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,3.985735964370897,3.76431508841731,9,-11,43.23989308458189,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.26500872848381,54.2,57.49,63.26,42.53,8.333333333333334,1,1,0,0,2,13,3,1,429.5,842373.8707003221,199215.8132860525,424705.6636503446,0,2265.696473827615 -12944,15980,29146,29145,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.6552617800328,7.378542326527072,9,11,-164.018694319899,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.326014174783047,63.26,42.53,54.2,57.49,10,1,1,0,0,2,13,3,1,429.5,842373.8707003221,199215.8132860525,424705.6636503446,0,2265.696473827615 -12945,15981,29147,-9,29149,29150,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-915.202301328536,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,4,0,794.5,437070.3910366502,181830.0089635018,230423.8926949403,0,2903.092493711682 -12945,15981,29148,-9,29149,29150,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-949.2488186565892,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,0,794.5,437070.3910366502,181830.0089635018,230423.8926949403,0,2903.092493711682 -12945,15981,29149,29150,-9,-9,1,0,38,0,2,0,2,2,-9,0,1,8.39858978055668,8.420839201124119,0,20,-12,81.87483542557395,0,2,2,2019,24,12,40,45,1,12,0,10.04654224078836,10.04654224078836,0,0,0,0,0,1,1,0,0,0,39.28,29.55,53.61,52.37,3.333333333333333,1,1,0,0,4,1,4,0,794.5,437070.3910366502,181830.0089635018,230423.8926949403,0,2903.092493711682 -12945,15981,29150,29149,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.080936500026333,7.965376151141403,0,19,12,-73.51935727363755,0,1,1,2019,11,0,37,37,1,0,0,9.747484802544665,9.747484802544665,0,0,0,0,0,1,1,0,0,0,53.61,52.37,39.28,29.55,6.666666666666667,1,1,0,0,9,1,4,0,794.5,437070.3910366502,181830.0089635018,230423.8926949403,0,2903.092493711682 -12946,15982,29151,29152,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.399249718992251,7.319818275833206,16,8,-59.83761632995704,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.82529759389972,7.09390610318609,61.11,48.86,46.39,60.99,8.333333333333334,1,1,0,0,0,2,3,0,1035,2193202.009358836,327287.7681968409,743461.624820355,0,1605.403463495296 -12946,15982,29152,29151,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.796596680532188,6.642252109950667,16,-8,-102.2662816172364,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.392985378167473,6.918334466719034,46.39,60.99,61.11,48.86,8.333333333333334,1,1,0,0,8,2,3,0,1035,2193202.009358836,327287.7681968409,743461.624820355,0,1605.403463495296 -12946,15983,29153,-9,29152,29151,1,1,34,0,0,0,1,1,1,0,5,0,0,0,0,0,-1069.447586945446,-9,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,-9,-9,3.333333333333333,4,2,1,0,1,2,1,0,445,280053.7824876944,184323.2717439441,177346.0010222224,64738.60160601507,209.2527376491957 -12947,15984,29154,29155,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.961457427574848,9.242514614867119,0,9,0,-84.44432231521763,0,-9,-9,2019,8,0,41,40,1,0,0,21.51280340846584,21.51280340846584,0,0,0,0,0,0,0,0,1.197014016203336,0,54.67,57.49,50,55,6.666666666666667,2,3,0,0,11,9,5,1,946.5,806493.3958472253,457346.0998314282,424458.6458330953,145416.9381302686,3328.638642977641 -12947,15984,29155,29154,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,33,0,24.03629548655481,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.67,57.49,8,2,3,0,0,0,9,5,1,946.5,806493.3958472253,457346.0998314282,424458.6458330953,145416.9381302686,3328.638642977641 -12948,15985,29156,29159,-9,-9,1,0,43,0,3,0,3,3,-9,0,5,0,0,0,6,-8,-89.1487486859628,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,32.4,61.08,36.05,42.89,5,2,3,0,0,0,6,4,1,615.5,847751.7429732025,821529.9417457645,96832.71858974255,-597.6439671009812,4017.002898506148 -12948,15985,29157,-9,29156,29159,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.364075646114,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,615.5,847751.7429732025,821529.9417457645,96832.71858974255,-597.6439671009812,4017.002898506148 -12948,15985,29158,-9,29156,29159,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.806077272407,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,4,1,615.5,847751.7429732025,821529.9417457645,96832.71858974255,-597.6439671009812,4017.002898506148 -12948,15985,29159,29156,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,9.20491660347972,9.120065636985512,0,6,8,17.09172378229099,0,3,3,2019,20,8,36,50,1,8,0,35.02326179298173,35.02326179298173,0,0,0,0,2,1,1,0,0,0,36.05,42.89,32.4,61.08,5,2,3,0,0,7,6,4,1,615.5,847751.7429732025,821529.9417457645,96832.71858974255,-597.6439671009812,4017.002898506148 -12948,15986,29160,-9,29156,29159,1,0,24,0,3,0,1,1,-9,0,4,6.917788543749245,6.873516170680674,0,0,0,-940.3515123673286,0,3,2,2019,16,5,38,0,1,5,1,3.688937264241618,3.688937264241618,0,0,0,0,0,1,1,0,0,0,33.33,58.87,-9,-9,5,2,3,0,0,1,6,2,1,348,-86986.1195043679,0,0,0,1321.264058628072 -12948,15987,29161,-9,29156,29159,1,0,23,0,3,1,2,0,0,0,4,0,0,0,0,0,-1079.762414198272,-9,3,2,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,55.76,52.64,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,1123,-176981.0541542797,0,0,0,0 -12948,15988,29162,-9,29156,29159,1,1,21,0,3,0,2,2,-9,0,4,8.828035427888786,8.739105339938787,0,0,0,-1081.735659957995,0,3,2,2019,10,0,40,0,1,1,1,20.74587894671792,20.74587894671792,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,5,1,625,12380.29807025429,131184.5825208607,0,0,2776.592637080071 -12948,15989,29163,-9,29156,29159,1,0,19,0,3,1,2,0,0,0,2,0,0,0,0,0,-1046.992738957828,-9,3,2,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,33.36,32.21,-9,-9,10,2,3,0,0,0,6,2,1,777,158335.4194692663,0,0,0,0 -12949,15990,29164,29165,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.156239596299097,7.072775433360091,8,1,51.81458597565716,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.492920400169355,6.720627693248696,58.88,29.86,45.8,54.59,8.333333333333334,1,1,0,0,9,12,2,1,880,929887.6554336399,427921.8699526172,254885.9191241336,0,1553.879251999079 -12949,15990,29165,29164,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,8,-1,86.18366320698675,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.8,54.59,58.88,29.86,10,1,1,0,0,0,12,2,1,880,929887.6554336399,427921.8699526172,254885.9191241336,0,1553.879251999079 -12950,15991,29166,29167,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,39,-6,-26.15543712707937,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,3.877619449009681,0,55.19,54.26,48.87,58.55,8.333333333333334,1,1,0,0,0,9,3,1,300,1355946.349439977,822824.3087954952,380889.2281349505,0,1354.939991466008 -12950,15991,29167,29166,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.962737219644295,7.946939569515294,39,6,76.71602287754233,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.245472665187825,8.142508538880907,48.87,58.55,55.19,54.26,8.333333333333334,1,1,0,0,1,9,3,1,300,1355946.349439977,822824.3087954952,380889.2281349505,0,1354.939991466008 -12951,15992,29168,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.181553900117324,6.716122607963852,0,0,-1061.370252576688,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.383141882915569,7.315087228667608,45.58,47.97,-9,-9,1.666666666666667,2,3,0,0,0,9,2,1,870,892828.7810858311,141729.8765240537,441568.5817884305,0,779.2135428977568 -12952,15993,29169,29170,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.372853333561476,8.127489494662251,50,-1,57.44280200648928,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.655981464206864,8.194620717027895,59.26,51.02,61.43,43.34,10,1,1,0,0,0,6,4,1,298.5,1125933.281057248,786864.488664371,328114.537002715,0,3358.790983932575 -12952,15993,29170,29169,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.750694015088921,6.860925214351975,50,1,-46.30258043642775,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.797959179955674,7.082634082886377,61.43,43.34,59.26,51.02,8.333333333333334,1,1,0,0,4,6,4,1,298.5,1125933.281057248,786864.488664371,328114.537002715,0,3358.790983932575 -12953,15994,29171,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.905722058244761,7.694549583003069,0,0,-853.8822491513577,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.096080054482882,7.815146132498902,63.26,45.23,-9,-9,10,1,1,0,0,8,11,3,1,411,1025474.265945277,425244.3713831046,81375.97561105039,0,1007.070199763963 -12953,15995,29172,-9,-9,29171,1,1,24,0,0,0,1,1,-9,0,4,8.175919861506648,7.854788375311999,0,0,0,-934.6664738511129,0,3,2,2019,6,1,47,40,1,1,0,7.856594631759378,7.856594631759378,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,10,1,1,0,0,7,11,4,1,1229,13021.76163294225,0,0,0,1435.575453381541 -12954,15996,29173,-9,29175,29174,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.6860282319717,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,372,412410.9351348795,255199.0586629052,279697.1653562285,113895.3558173239,3153.97297216566 -12954,15996,29174,29175,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.095806063056147,8.10710756762332,0,6,13,134.0952394821607,0,-9,-9,2019,6,0,46,45,1,0,0,8.162281407779325,8.162281407779325,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,9,4,4,0,372,412410.9351348795,255199.0586629052,279697.1653562285,113895.3558173239,3153.97297216566 -12954,15996,29175,29174,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,8.295565477971264,8.514193147901718,0,6,-13,-39.04672358257719,0,2,2,2019,10,1,50,31,1,1,0,9.304467141867894,9.304467141867894,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,4,0,372,412410.9351348795,255199.0586629052,279697.1653562285,113895.3558173239,3153.97297216566 -12954,15996,29176,-9,29175,29174,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.314327355771,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,372,412410.9351348795,255199.0586629052,279697.1653562285,113895.3558173239,3153.97297216566 -12955,15997,29177,-9,29179,29178,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.093858149291,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,1,1256.75,-159227.000671225,0,0,0,2542.524873733872 -12955,15997,29178,29179,29181,-9,1,1,49,0,3,0,1,1,-9,0,2,8.077008611831825,8.112589362811351,0,28,6,-42.58045255386688,0,3,3,2019,36,12,30,30,1,12,0,11.13017865535898,11.13017865535898,0,0,0,0,14.5,1,1,0,0,0,44,40,47.03,40.18,1.666666666666667,2,3,0,0,12,7,2,1,1256.75,-159227.000671225,0,0,0,2542.524873733872 -12955,15997,29179,29178,-9,-9,1,0,43,0,3,0,3,3,-9,0,3,0,0,0,28,-6,13.22884673282292,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,47.03,40.18,44,40,3.333333333333333,2,3,0,0,0,7,2,1,1256.75,-159227.000671225,0,0,0,2542.524873733872 -12955,15997,29180,-9,29179,29178,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.3541334391941,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,1,1256.75,-159227.000671225,0,0,0,2542.524873733872 -12955,15998,29181,-9,-9,-9,1,0,81,0,3,0,2,2,-9,0,1,0,0,0,0,0,-982.6343564379824,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,3.333333333333333,2,3,0,0,0,7,1,1,147,-70670.86051614523,0,0,0,652.2337620170603 -12955,15999,29182,-9,29179,29178,1,0,21,0,3,1,2,0,-9,0,3,0,0,0,0,0,-924.9389089750787,-9,3,1,2019,14,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,37.9,50.3,-9,-9,5,2,3,0,0,0,7,1,1,418,-30355.65692204099,0,0,0,0 -12955,16000,29183,-9,29179,29178,1,1,19,0,3,0,2,2,1,0,3,6.510018981634127,6.454499934037612,0,0,0,-944.8676280354441,-9,3,1,2019,12,0,24,0,1,0,1,3.100029946090215,3.100029946090215,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,3.333333333333333,2,3,0,0,0,7,2,1,818,142572.1252761635,0,0,0,189.8674137288798 -12955,16001,29184,-9,29179,29178,1,0,18,0,3,1,3,0,0,0,3,0,0,0,0,0,-985.7053247162102,-9,3,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.22,43.31,-9,-9,5,2,3,0,0,0,7,1,1,838,47971.43212948372,0,0,0,0 -12956,16002,29185,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.852776195837187,8.582262290537484,0,0,0,-898.6354095878268,0,-9,-9,2019,11,1,38,38,1,1,0,19.40847121751183,19.40847121751183,0,0,0,0,0,0,0,0,3.422436701136849,0,38.95,52.39,-9,-9,8.333333333333334,1,1,0,0,4,12,5,0,488,-7186.931609127278,6587.752850805731,0,0,2709.285121161642 -12957,16003,29186,-9,29187,29188,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.661131326594,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,371,167938.6058467534,124981.5520461155,0,0,2359.208873504659 -12957,16003,29187,29188,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.227297384614451,8.762983044271619,0,16,-14,69.47632042612099,0,2,2,2019,25,11,41,42,1,11,0,12.29330847141552,12.29330847141552,0,0,0,0,71.5,1,1,0,0,0,40.65,57.36,20.81,24.55,5,1,1,0,1,10,2,3,1,371,167938.6058467534,124981.5520461155,0,0,2359.208873504659 -12957,16003,29188,29187,-9,-9,1,1,61,0,1,0,2,2,-9,1,1,0,3.500719011277681,3.339334735101092,15,14,-97.6136342188578,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,3.135815328923302,20.81,24.55,40.65,57.36,3.333333333333333,1,1,0,0,0,2,3,1,371,167938.6058467534,124981.5520461155,0,0,2359.208873504659 -12958,16004,29189,-9,29191,29194,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1113.4217570598,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12958,16004,29190,-9,29191,29194,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.468291440983,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12958,16004,29191,29194,-9,-9,1,0,34,0,4,0,2,2,-9,0,4,5.950742991945463,6.084632497434958,0,8,-2,17.09210582034056,0,2,2,2019,7,0,18,8,1,0,0,2.753016172617042,2.753016172617042,0,0,0,0,0,1,0,1,5.047814436842888,0,57.16,56.15,47.33,53.7,5,1,1,0,0,2,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12958,16004,29192,-9,29191,29194,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-964.2340261520138,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12958,16004,29193,-9,29191,29194,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-990.099637017126,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12958,16004,29194,29191,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.786104523596367,8.107524553349821,0,8,2,35.14425199562406,0,-9,-9,2019,7,0,39,39,1,0,0,8.928186053471908,8.928186053471908,0,0,0,0,0,1,0,1,0,0,47.33,53.7,57.16,56.15,10,1,1,0,0,10,12,2,1,608.1666666666666,12704.79061787429,17051.54306736352,0,0,2247.931759176854 -12959,16005,29195,29196,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.450175999408037,8.588807444199201,5.497399832388791,1,4,89.16999166993557,-9,-9,-9,2019,11,1,56,0,1,1,0,9.629250537551037,9.629250537551037,0,0,0,0,0,0,0,0,6.473816480570689,0,43.63,61.31,35.63,62.19,6.666666666666667,1,1,0,0,1,8,5,0,402.5,-135226.8208444062,69943.8252064987,0,0,5599.486235478322 -12959,16005,29196,29195,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,9.109597930308516,9.360937362705469,0,1,-4,-1.92285166692434,0,-9,-9,2019,19,7,55,48,1,7,0,19.88667583189535,19.88667583189535,0,0,0,0,0,0,0,0,.872689247307601,0,35.63,62.19,43.63,61.31,6.666666666666667,1,1,0,0,4,8,5,0,402.5,-135226.8208444062,69943.8252064987,0,0,5599.486235478322 -12960,16006,29197,29198,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,9.795575984410856,9.751088509501679,0,21,3,-47.47731500047439,0,2,3,2019,11,0,35,45,1,0,0,51.51817937398983,51.51817937398983,0,0,0,0,0,1,1,0,0,0,59.19,51.29,15,48.45,8.333333333333334,2,3,0,0,8,4,5,1,1776.5,353878.6478104797,244170.5329725373,268805.4746704237,57228.51448650932,8378.369424033113 -12960,16006,29198,29197,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.961123033362686,8.732601388506364,0,21,-3,112.9388319292928,0,3,3,2019,28,10,60,43,1,10,0,13.34814515471638,13.34814515471638,0,0,0,0,2,1,1,0,0,0,15,48.45,59.19,51.29,6.666666666666667,2,3,0,0,6,4,5,1,1776.5,353878.6478104797,244170.5329725373,268805.4746704237,57228.51448650932,8378.369424033113 -12961,16007,29199,29200,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,5.50915293433054,5.727158102545095,0,6,1,29.77405635653052,0,3,3,2019,12,3,5,0,1,3,0,5.487464228079476,5.487464228079476,0,0,0,0,120,1,1,0,0,0,43.2,59.97,42.49,14.43,8.333333333333334,1,1,0,0,1,4,2,0,960.5,42622.91316576212,13717.36815140257,96495.56857219609,0,1969.203113697951 -12961,16007,29200,29199,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,6,-1,-26.17949060582257,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.49,14.43,43.2,59.97,3.333333333333333,1,1,0,1,0,4,2,0,960.5,42622.91316576212,13717.36815140257,96495.56857219609,0,1969.203113697951 -12962,16008,29201,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.508886995024653,8.652733208795977,0,0,0,-993.6930012356784,0,3,2,2019,8,0,12,40,1,0,0,35.55870458005623,35.55870458005623,0,0,0,0,7,1,1,0,3.208205179927207,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,5,0,2150,-113351.3901018955,0,0,0,980.8305607811601 -12963,16009,29202,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,9.098988648395734,9.15143861573449,7.552098585664968,0,0,-1061.681354586043,0,-9,-9,2019,12,0,60,58,1,0,0,14.4609812093596,14.4609812093596,0,0,0,0,0,1,1,0,5.867905266589058,7.087796158985146,56.18,45.61,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,1267,69470.33149812567,53.40089533449463,104828.1236602387,29668.6345331984,3927.019073293896 -12963,16009,29203,-9,29202,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.3895894048989,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,1267,69470.33149812567,53.40089533449463,104828.1236602387,29668.6345331984,3927.019073293896 -12964,16010,29204,-9,-9,-9,1,1,24,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1011.648093662107,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,698,0,0,0,0,0 -12964,16011,29205,-9,29207,29206,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.584055671493,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,1188.666666666667,445904.9020981015,0,572902.7407464735,350262.0911575984,1539.992582314918 -12964,16011,29206,29207,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,7.924191430492049,8.163776033320909,0,4,15,-29.21738417777805,0,-9,-9,2019,24,12,40,0,1,12,0,8.73052098311323,8.73052098311323,0,0,0,0,0,1,1,0,0,0,32.27,52.38,36.14,59.14,3.333333333333333,1,1,0,1,0,8,3,0,1188.666666666667,445904.9020981015,0,572902.7407464735,350262.0911575984,1539.992582314918 -12964,16011,29207,29206,-9,-9,1,0,31,0,1,0,2,2,0,0,3,0,0,0,4,-15,-25.69025356657022,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,36.14,59.14,32.27,52.38,3.333333333333333,1,1,0,1,0,8,3,0,1188.666666666667,445904.9020981015,0,572902.7407464735,350262.0911575984,1539.992582314918 -12965,16012,29208,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.38928697025437,8.583244089255054,0,0,0,-892.4773469245201,0,-9,2,2019,15,3,40,40,1,3,0,14.13799958114808,14.13799958114808,0,0,0,0,0,0,0,0,2.623150897699374,0,43.83,55.87,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,2250,126255.4892720947,0,0,0,1218.813933205255 -12966,16013,29209,-9,-9,-9,1,1,50,0,0,0,1,1,-9,1,1,8.711761159602734,8.818979216919129,0,0,0,-954.1374031785161,0,3,3,2019,27,11,37,37,1,11,0,21.04024938976308,21.04024938976308,0,0,0,0,0,1,1,0,2.107709606852306,0,22.66,25.09,-9,-9,0,1,1,0,0,13,9,5,0,431,1295474.58782784,164500.4545973626,85577.03850707519,0,2242.006371617902 -12967,16014,29210,29211,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.082777405933399,8.139088149967968,0,3,-10,0,0,2,2,2019,9,0,38,37,1,0,0,10.12619234539845,10.12619234539845,0,0,0,0,0,1,1,0,0,0,46.88,60.96,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,383,420754.259508592,72463.17502489962,341541.5683402349,139827.6694330302,3284.351610899843 -12967,16014,29211,29210,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.032189074220419,8.278319758412199,0,3,10,0,0,-9,-9,2019,7,0,40,40,1,0,0,11.37140545722247,11.37140545722247,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,60.96,8.333333333333334,1,1,0,0,8,7,4,1,383,420754.259508592,72463.17502489962,341541.5683402349,139827.6694330302,3284.351610899843 -12968,16015,29212,29213,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.011421222250714,6.934257534221331,32,3,-146.1705680914872,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,1.948497997083361,0,0,0,0,0,7.032730847627136,36.63,38.64,55.96,49.93,8.333333333333334,1,1,0,0,11,12,5,1,261,274886.7683564939,207576.5650818695,221866.7431632509,75467.06252355258,3540.254655465169 -12968,16015,29213,29212,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.632374402181913,8.970315812433425,7.771023441610006,32,-3,70.37945488307102,0,3,-9,2019,6,0,35,35,1,0,0,13.90805083624125,13.90805083624125,0,0,0,0,0,0,0,0,0,7.801771453115284,55.96,49.93,36.63,38.64,8.333333333333334,1,1,0,0,13,12,5,1,261,274886.7683564939,207576.5650818695,221866.7431632509,75467.06252355258,3540.254655465169 -12968,16016,29214,-9,29212,29213,1,1,26,0,0,0,2,2,-9,0,2,7.735439853017782,7.829116392418686,0,0,0,-971.4586433319579,0,2,2,2019,18,6,34,38,1,6,1,6.799662378985998,6.799662378985998,0,0,0,0,0,0,0,0,0,0,34.44,48.18,-9,-9,5,1,1,0,1,10,12,3,1,458,82821.29558611983,87554.63208229012,120943.7367152263,36932.97726944819,586.1043859980352 -12969,16017,29215,29216,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,9.086749741548362,8.77033367108597,45,2,35.38485134242514,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.42264932072804,8.837236228324905,44.67,52.97,60.21,34.28,6.666666666666667,1,1,0,0,0,9,5,1,634,2167061.702542799,1356519.29371073,472557.555701688,0,4719.950436831919 -12969,16017,29216,29215,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,45,-2,46.62731028464609,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,4.090212729705463,0,60.21,34.28,44.67,52.97,8.333333333333334,1,1,0,0,8,9,5,1,634,2167061.702542799,1356519.29371073,472557.555701688,0,4719.950436831919 -12970,16018,29217,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,6.928481999245779,6.891140170806195,0,0,0,-1051.876956173324,0,-9,-9,2019,4,0,20,20,1,0,0,5.105742793958122,5.105742793958122,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,8.333333333333334,1,1,0,0,7,12,2,1,399,37072.49611130521,65491.24311849272,0,0,481.2001856883371 -12971,16019,29218,29219,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,6.907264361414343,6.95475303024812,41,1,91.66566983232323,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.752299389857871,7.190171653821103,60.7,23.72,54.35,51.96,8.333333333333334,1,1,0,0,0,5,2,1,1988.5,641506.768612104,183461.7027521727,309767.1037354444,0,2394.538444815671 -12971,16019,29219,29218,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,5.51433844047571,5.400746625110578,41,-1,-118.963838136541,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,.3104172912397143,14.5,1,1,0,6.38189710853254,5.568653421148072,54.35,51.96,60.7,23.72,10,1,1,0,0,0,5,2,1,1988.5,641506.768612104,183461.7027521727,309767.1037354444,0,2394.538444815671 -12972,16020,29220,29222,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.225029240048062,9.297731718622195,0,20,-8,-98.61002059606152,0,-9,-9,2019,18,7,44,47,1,7,0,22.05800807543536,22.05800807543536,0,0,0,0,0,1,1,0,.0968257979468312,0,44.49,61.79,36.35,55.39,8.333333333333334,1,1,0,0,11,9,5,1,964,1196611.822000108,548077.4477633617,708384.8962398729,53569.01443299417,3814.302429742374 -12972,16020,29221,-9,29220,29222,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.676810618142,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,964,1196611.822000108,548077.4477633617,708384.8962398729,53569.01443299417,3814.302429742374 -12972,16020,29222,29220,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,7.502502518711912,7.593734951375789,0,20,8,50.98814802929709,0,3,3,2019,14,3,5,5,1,3,0,59.60001075108261,59.60001075108261,0,0,0,0,0,1,1,0,1.124989590635052,0,36.35,55.39,44.49,61.79,3.333333333333333,3,4,0,0,2,9,5,1,964,1196611.822000108,548077.4477633617,708384.8962398729,53569.01443299417,3814.302429742374 -12972,16020,29223,-9,29220,29222,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.2282616567327,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,964,1196611.822000108,548077.4477633617,708384.8962398729,53569.01443299417,3814.302429742374 -12973,16021,29224,29225,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.584331612356142,7.259607837553859,21,5,130.37162465053,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,3.628569256639541,7.602282485878767,52.19,19.15,26.54,47.6,8.333333333333334,4,2,0,0,0,10,4,1,421,835876.960006272,472046.0655679045,278096.5012671056,0,3754.584802080869 -12973,16021,29225,29224,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.803421374656883,7.977487161122053,22,-5,81.36949570020784,0,2,2,2019,29,12,0,0,4,12,0,0,0,1,0,0,0,2,1,1,0,5.811923220861104,8.001517154460162,26.54,47.6,52.19,19.15,3.333333333333333,1,1,0,0,0,10,4,1,421,835876.960006272,472046.0655679045,278096.5012671056,0,3754.584802080869 -12974,16022,29226,29227,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.91428889390638,5.809174478093432,10,-11,-37.63098561571265,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.768999316485657,57.16,56.15,56.89,50.73,10,1,1,0,0,0,11,2,1,883.5,539445.600086434,204539.199360377,245807.5795688875,0,1161.76471929146 -12974,16022,29227,29226,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.896350588207231,6.96268837700485,10,11,23.69880379374108,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.731697811270532,6.665497773256409,56.89,50.73,57.16,56.15,10,1,1,0,0,0,11,2,1,883.5,539445.600086434,204539.199360377,245807.5795688875,0,1161.76471929146 -12975,16023,29228,29230,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.51352898568474,8.678650513102349,0,9,2,17.72130146794642,0,1,2,2019,11,1,38,38,1,1,0,15.80298181564612,15.80298181564612,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.75,55.66,6.666666666666667,1,1,0,0,10,7,5,1,818.5,733971.456758773,292883.5146891429,655461.9817529724,256667.2935824717,3935.350352355949 -12975,16023,29229,-9,29228,29230,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1181.250374267552,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,818.5,733971.456758773,292883.5146891429,655461.9817529724,256667.2935824717,3935.350352355949 -12975,16023,29230,29228,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.426006870083665,8.271709789505506,0,9,-2,-77.43272384688871,-9,-9,-9,2019,13,1,39,0,1,1,0,13.24688595937791,13.24688595937791,0,0,0,0,0,1,1,0,0,0,38.75,55.66,45.91,59.89,5,1,1,0,0,8,7,5,1,818.5,733971.456758773,292883.5146891429,655461.9817529724,256667.2935824717,3935.350352355949 -12975,16023,29231,-9,29228,29230,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.8168450021697,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,818.5,733971.456758773,292883.5146891429,655461.9817529724,256667.2935824717,3935.350352355949 -12976,16024,29232,29233,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.037668654212998,3.998542980474674,52,-3,22.46131368170806,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.953765780675426,53.88,33.91,48.29,47.89,5,1,1,0,0,0,6,2,1,2482.5,334365.7061211985,29805.10110987649,216784.5627415359,0,1655.258481635741 -12976,16024,29233,29232,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.482917605869775,6.227405371215567,52,3,9.072946193633062,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.313355948908374,48.29,47.89,53.88,33.91,6.666666666666667,1,1,0,0,4,6,2,1,2482.5,334365.7061211985,29805.10110987649,216784.5627415359,0,1655.258481635741 -12977,16025,29234,29235,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.93830549972504,8.079817755467761,0,3,-8,64.09137790555418,0,-9,-9,2019,11,1,35,35,1,1,0,8.82573457443619,8.82573457443619,0,0,0,.0924331522130633,0,0,0,0,7.400206788614638,0,46.98,59.35,45.35,29.55,10,1,1,0,0,7,10,4,0,243.5,948667.0152285348,587432.310757176,381841.4252860354,0,3536.178274585755 -12977,16025,29235,29234,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.128724147622558,8.033597087590346,0,3,8,85.55003743471195,0,3,3,2019,20,8,55,53,1,8,0,6.908135803372876,6.908135803372876,0,0,0,0,2,0,0,0,0,0,45.35,29.55,46.98,59.35,3.333333333333333,1,1,0,0,10,10,4,0,243.5,948667.0152285348,587432.310757176,381841.4252860354,0,3536.178274585755 -12978,16026,29236,29237,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.283648008579242,8.295315802309856,0,9,-1,-50.76533741979412,0,1,1,2019,6,0,36,36,1,0,0,12.91403520531283,12.91403520531283,0,0,0,0,0,0,0,0,3.572829251226461,0,57.06,57.76,60.3,46.58,8.333333333333334,1,1,0,0,10,9,5,1,205.5,8548725.688326161,2701666.115296262,919241.3823912633,359661.2537379941,4984.937723607469 -12978,16026,29237,29236,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.291847480893585,9.754221657486422,0,9,1,-42.51507136532756,0,3,2,2019,7,0,57,53,1,0,0,31.76122332635306,31.76122332635306,0,0,0,0,2,0,0,0,3.529926284547914,0,60.3,46.58,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,205.5,8548725.688326161,2701666.115296262,919241.3823912633,359661.2537379941,4984.937723607469 -12979,16027,29238,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-895.5448542239162,-9,1,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,1076,20170.05776393836,0,0,0,175.4213585719728 -12980,16028,29239,-9,29240,-9,1,1,51,0,0,0,2,2,-9,1,4,0,0,0,0,0,-947.7136516079403,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,3,4,0,0,0,7,1,1,240,7384.398875614492,0,0,0,-203.6591705179092 -12980,16029,29240,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,5.985533021107093,6.205499113256469,0,0,-969.2197601811989,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,32.32968958534561,0,0,1,1,0,0,5.899306614505798,52.41,18.24,-9,-9,6.666666666666667,3,4,0,0,0,7,2,1,233,529785.9196532187,39554.34565540489,377678.2210862961,0,1098.164839143929 -12981,16030,29241,29242,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,5.931212081526446,5.962116651324084,0,26,9,33.43480033417118,0,3,2,2019,9,0,5,5,1,0,0,9.989111008045466,9.989111008045466,0,0,0,0,0,1,1,0,0,0,46.86,35,45,39.06,6.666666666666667,1,1,0,0,10,5,2,0,1037,396708.9799648354,-41784.88375358712,292976.8613254701,16937.18390783822,1043.650166029603 -12981,16030,29242,29241,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.024684365703267,6.917187964721052,0,26,0,41.1092487937638,0,2,2,2019,10,1,24,25,1,1,0,6.284338453465582,6.284338453465582,0,0,0,0,0,1,1,0,0,0,45,39.06,46.86,35,6.666666666666667,1,1,0,0,11,5,2,0,1037,396708.9799648354,-41784.88375358712,292976.8613254701,16937.18390783822,1043.650166029603 -12981,16031,29243,-9,29241,29242,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1003.959969191827,1,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49.13,46.23,-9,-9,8.333333333333334,1,1,0,0,2,5,1,0,680,203981.0747817044,0,0,0,-22.99619950204286 -12982,16032,29244,29245,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.36330761351706,6.604676052948105,37,7,38.00249789882671,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.660753952260499,6.502044171393212,54.37,54.8,50.4,55.04,8.333333333333334,1,1,0,0,7,12,2,0,886.5,262736.2084101487,149488.3084076166,181629.4230540767,0,992.7704311697776 -12982,16032,29245,29244,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.220566343825446,5.20836082597453,38,-7,61.31561566122826,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,2.225587629283035,0,1,1,0,0,5.272199111909138,50.4,55.04,54.37,54.8,8.333333333333334,1,1,0,0,9,12,2,0,886.5,262736.2084101487,149488.3084076166,181629.4230540767,0,992.7704311697776 -12983,16033,29246,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-892.3922577642053,0,1,1,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,1,9,12,1,1,807,-107354.130088656,0,0,0,0 -12984,16034,29247,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.223678431226559,7.570731169019894,0,0,-1036.36869779139,0,3,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.439216327700903,6.85097556659184,48.37,49.31,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,832,207401.8344925849,168429.9684378989,165647.342693008,0,1378.360805320475 -12985,16035,29248,29249,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.872652381760746,7.087488040965161,0,39,0,17.60243714604068,0,3,3,2019,7,0,15,10,1,0,0,7.828440639843535,7.828440639843535,0,0,0,0,0,0,0,0,0,0,55.79,52.62,60.12,54.8,8.333333333333334,1,1,0,0,9,4,4,1,204.5,21100.5947407978,0,0,0,2044.926098657041 -12985,16035,29249,29248,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.456670210614377,8.506045588800182,4.834922419573284,39,0,165.5227520487307,0,3,3,2019,6,0,55,56,1,0,0,8.290299992779707,8.290299992779707,0,0,0,0,0,0,0,0,4.686649461161148,5.432373130301837,60.12,54.8,55.79,52.62,6.666666666666667,1,1,0,0,9,4,4,1,204.5,21100.5947407978,0,0,0,2044.926098657041 -12985,16036,29250,-9,29248,29249,1,0,30,0,0,0,1,1,-9,0,4,8.411501790065319,8.405298999047167,0,0,0,-1044.496131292906,0,2,3,2019,11,0,40,38,1,2,1,8.994196265671038,8.994196265671038,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,4,4,1,381,-23387.8339391824,0,0,0,1805.037272898664 -12986,16037,29251,-9,29253,29252,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-1026.735369986102,-9,1,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,11,5,1,519.3333333333334,980643.0823560655,975742.2381809921,56719.53432759259,87357.45868851068,3535.999156324735 -12986,16037,29252,29253,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.21879105386745,8.465171871355933,0,8,0,71.87881573918253,0,3,3,2019,12,3,37,37,1,3,0,11.77296983654095,11.77296983654095,0,0,0,0,0,1,1,0,2.382465458899952,0,46.39,60.99,61.23,23.45,8.333333333333334,1,1,0,0,9,11,5,1,519.3333333333334,980643.0823560655,975742.2381809921,56719.53432759259,87357.45868851068,3535.999156324735 -12986,16037,29253,29252,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.68842575437192,8.865636078975184,0,8,0,-9.698886043273543,0,3,3,2019,7,0,38,38,1,0,0,17.13386953451323,17.13386953451323,0,0,0,0,2,1,1,0,3.861827607256019,0,61.23,23.45,46.39,60.99,8.333333333333334,1,1,0,0,9,11,5,1,519.3333333333334,980643.0823560655,975742.2381809921,56719.53432759259,87357.45868851068,3535.999156324735 -12987,16038,29254,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,5.718850612212584,5.781914885581776,4.918225862708346,0,0,-1064.519666368783,0,3,3,2019,15,3,19,22,1,3,0,1.37809932272284,1.37809932272284,0,0,0,0,0,1,1,0,5.229919937770539,5.386013869263014,46.26,42.16,-9,-9,3.333333333333333,1,1,0,0,10,6,2,1,362,877315.7403679194,200451.0677107942,533608.2658832211,0,34.27233967752113 -12988,16039,29255,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.266876249325317,7.569420779740966,0,0,0,-919.8546892309772,0,-9,-9,2019,9,0,35,40,1,0,0,5.488801909099194,5.488801909099194,0,0,0,0,2,0,0,0,0,0,50.17,51.22,-9,-9,6.666666666666667,2,3,0,0,4,8,3,0,499,0,0,0,0,1065.114689680724 -12989,16040,29256,29257,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,8.548169265852547,9.023547215271639,0,6,4,62.83065063781606,0,-9,-9,2019,24,11,49,55,1,11,0,11.90922181560124,11.90922181560124,0,0,0,0,0,1,1,0,0,0,41.81,47.19,54.2,57.49,1.666666666666667,1,1,0,1,12,4,5,1,459.5,651905.6578991364,319344.304301498,250059.102644767,41012.37204577633,4542.699717290232 -12989,16040,29257,29256,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.828445237260242,8.964269101678742,0,6,-4,-35.74259274815631,0,1,2,2019,7,1,43,44,1,1,0,17.66980634853102,17.66980634853102,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.81,47.19,8.333333333333334,1,1,0,0,10,4,5,1,459.5,651905.6578991364,319344.304301498,250059.102644767,41012.37204577633,4542.699717290232 -12989,16040,29258,-9,29257,29256,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.70362827624,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,459.5,651905.6578991364,319344.304301498,250059.102644767,41012.37204577633,4542.699717290232 -12989,16040,29259,-9,29257,29256,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.2015145451417,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,459.5,651905.6578991364,319344.304301498,250059.102644767,41012.37204577633,4542.699717290232 -12990,16041,29260,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.62614876828729,7.327858508004182,0,0,0,-999.8448630696116,0,3,3,2019,14,3,30,35,1,3,0,7.600275076228003,7.600275076228003,0,0,0,0,0,0,0,0,0,0,44.58,41.27,-9,-9,3.333333333333333,3,4,0,0,8,6,3,0,3129,297848.5778181477,0,98904.64597099493,49367.82468172508,1059.804676482517 -12990,16042,29261,-9,29260,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-986.8881396253307,1,2,-9,2019,12,0,0,35,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,-9,-9,3.333333333333333,4,2,0,0,1,6,1,0,1453,0,0,0,0,0 -12990,16043,29262,-9,29260,-9,1,1,22,0,0,0,2,2,-9,0,4,7.993893839558675,7.859413839190781,0,0,0,-1013.444618088608,0,2,-9,2019,10,0,42,55,1,1,1,8.212157552342088,8.212157552342088,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,2,0,0,3,6,4,0,749,-145278.5182149513,-43595.09648547856,0,0,599.900971038582 -12991,16044,29263,29266,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.487503411691138,7.188510044503939,0,1,2,5.179880330795751,-9,-9,-9,2019,11,1,20,0,1,1,0,8.267808032072665,8.267808032072665,0,0,0,0,0,1,1,0,0,0,43.35,50.18,51,56,8.333333333333334,1,1,0,0,2,12,3,0,751.5,151722.2824447567,71463.50518090698,172477.6711728339,114576.6805218632,2685.99068322124 -12991,16044,29264,-9,29263,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-901.4802182460409,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,751.5,151722.2824447567,71463.50518090698,172477.6711728339,114576.6805218632,2685.99068322124 -12991,16044,29265,-9,29263,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1122.746175535442,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,0,12,3,0,751.5,151722.2824447567,71463.50518090698,172477.6711728339,114576.6805218632,2685.99068322124 -12991,16044,29266,29263,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.255208381494242,8.382514558296124,0,1,-2,22.66227357120767,-9,-9,-9,2019,10,0,40,0,1,1,0,14.10727922378765,14.10727922378765,0,0,0,0,0,1,1,0,0,0,51,56,43.35,50.18,7,4,1,0,0,1,12,3,0,751.5,151722.2824447567,71463.50518090698,172477.6711728339,114576.6805218632,2685.99068322124 -12992,16045,29267,29268,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,43,1,-54.13470721132122,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,28.93589256317495,0,0,1,1,0,0,0,61.8,21.86,60.29,52.11,6.666666666666667,1,1,0,0,6,7,2,1,839.5,156372.8639843143,203133.2918267101,0,0,1772.959408348423 -12992,16045,29268,29267,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.036014283796669,7.084461054220295,11,-1,-92.75950317279532,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.591414755136992,6.80154707387788,60.29,52.11,61.8,21.86,8.333333333333334,1,1,0,0,0,7,2,1,839.5,156372.8639843143,203133.2918267101,0,0,1772.959408348423 -12993,16046,29269,29270,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,7,-3,57.29042350848837,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,57.31,45.44,8,1,1,0,0,0,10,2,1,1626,69254.27143154445,34617.65020569559,0,0,1710.15335637167 -12993,16046,29270,29269,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.943811366239729,6.65508833952501,43,3,-4.772244794035337,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.415353074553592,6.864423615547125,57.31,45.44,53,46,5,1,1,0,0,0,10,2,1,1626,69254.27143154445,34617.65020569559,0,0,1710.15335637167 -12994,16047,29271,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-913.3630310154354,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,2.160686383241493,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,2,1,604,110325.371903784,0,23228.14478908522,0,860.5864094472852 -12994,16048,29272,-9,-9,29271,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1105.958170964228,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,68.34,24.19,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,614,-19501.83365655493,0,0,0,414.665024362291 -12995,16049,29273,29274,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.897374046859987,6.65739127320172,9,3,-85.66680405415498,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.976636067574788,7.177576940789606,54.2,57.49,40.58,43.59,10,1,1,0,0,0,13,3,1,351.5,803045.4126274337,305166.5520684435,270364.3554443812,0,2262.667748046822 -12995,16049,29274,29273,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.000177444918837,7.056278872820692,9,-3,114.564299991767,0,2,2,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,5.134372086224534,7.205286649053091,40.58,43.59,54.2,57.49,5,1,1,0,0,0,13,3,1,351.5,803045.4126274337,305166.5520684435,270364.3554443812,0,2262.667748046822 -12996,16050,29275,29277,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.819156637176238,8.579110916125641,0,18,3,74.03400207440838,0,3,3,2019,7,0,39,40,1,0,0,19.02247673795799,19.02247673795799,0,0,0,0,0,1,1,0,4.968677624105682,0,57.33,53.46,41.11,43.52,8.333333333333334,1,1,0,0,8,10,5,1,652.3333333333334,1309334.230350531,250748.9499632879,760661.1253026794,0,3670.411786918273 -12996,16050,29276,-9,29277,29275,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-941.0373731249498,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,652.3333333333334,1309334.230350531,250748.9499632879,760661.1253026794,0,3670.411786918273 -12996,16050,29277,29275,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,8.26276277221444,8.221725073334266,0,6,-3,-210.3350701772706,0,-9,-9,2019,10,0,35,35,1,0,0,13.05310404768069,13.05310404768069,0,0,0,0,0,1,1,0,0,0,41.11,43.52,57.33,53.46,6.666666666666667,1,1,0,0,9,10,5,1,652.3333333333334,1309334.230350531,250748.9499632879,760661.1253026794,0,3670.411786918273 -12997,16051,29278,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.855941237217833,8.020804270964437,0,0,-1045.295493500022,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.822215825201532,7.912073984911147,62.43,34.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1159,865780.7658403055,341351.4225298653,245294.6469724638,0,2405.67392152508 -12998,16052,29279,-9,29280,29281,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.952473405546,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,560.5,7899.714255641327,65160.82605098117,102219.5736920656,45955.68691640854,1671.982038509839 -12998,16052,29280,29281,-9,-9,1,0,42,1,2,0,2,2,-9,0,3,8.182813725735549,8.117627965941795,0,7,3,-53.25889830474874,0,2,2,2019,14,3,35,28,1,3,0,12.14813144474484,12.14813144474484,0,0,0,0,0,1,1,0,0,0,44.7,53.68,49.52,56.95,3.333333333333333,1,1,0,1,10,1,3,1,560.5,7899.714255641327,65160.82605098117,102219.5736920656,45955.68691640854,1671.982038509839 -12998,16052,29281,29280,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,0,0,0,7,-3,-171.305004671888,0,2,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,44.7,53.68,6.666666666666667,1,1,0,1,3,1,3,1,560.5,7899.714255641327,65160.82605098117,102219.5736920656,45955.68691640854,1671.982038509839 -12998,16052,29282,-9,29280,29281,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.932074455213,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,560.5,7899.714255641327,65160.82605098117,102219.5736920656,45955.68691640854,1671.982038509839 -12999,16053,29283,29284,-9,-9,1,0,47,0,0,0,2,2,-9,0,1,7.927144473900007,7.703008115399739,0,6,-2,28.33843095700781,0,3,-9,2019,30,12,40,37,1,12,0,4.748009319642257,4.748009319642257,0,0,0,0,0,0,0,0,0,0,23.54,24.46,53,55,1.666666666666667,1,1,0,0,3,11,5,1,499.5,295601.512666975,138500.5293812114,289492.9634188109,41924.77668290128,3014.882295866664 -12999,16053,29284,29283,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.482794704847453,8.721951992137065,0,6,2,139.9391460997835,-9,-9,-9,2019,9,0,40,0,1,1,0,15.55800853821733,15.55800853821733,0,0,0,0,0,0,0,0,1.347770290001543,0,53,55,23.54,24.46,8,4,1,0,0,1,11,5,1,499.5,295601.512666975,138500.5293812114,289492.9634188109,41924.77668290128,3014.882295866664 -12999,16054,29285,-9,29283,29284,1,1,22,0,0,0,2,2,-9,0,4,8.075096885495531,8.282493489979066,0,0,0,-935.2339844196805,-9,2,-9,2019,10,0,30,0,1,1,1,12.33721837579136,12.33721837579136,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,4,1,157,138988.020946397,45018.24168969521,0,0,1444.721657951612 -13000,16055,29286,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.743328678403437,8.130219971720603,0,0,0,-1000.072495614641,-9,2,3,2019,12,0,38,0,1,0,0,8.589596430111108,8.589596430111108,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,1083,70114.00725757916,31138.9878576166,102362.2928028362,24872.5314124848,1260.822020313718 -13000,16056,29287,-9,29286,-9,1,0,23,0,0,0,2,2,-9,0,4,6.9786212069667,6.679443851915507,0,0,0,-1102.831555922562,-9,2,-9,2019,9,0,50,0,1,0,1,2.450923471718879,2.450923471718879,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,1,2,1,688,107499.3783105514,0,0,0,530.6238602009946 -13001,16057,29288,29289,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.019249774163397,8.295791801819336,0,24,3,39.57787803669698,0,2,2,2019,7,0,38,42,1,0,0,10.20673262080746,10.20673262080746,0,0,0,0,2,1,1,0,0,0,63.09,47.92,51,54,8.333333333333334,1,1,0,0,8,10,5,1,1650,752994.0249852047,402642.8090446384,453944.1495537762,161643.7147790611,4230.951177728221 -13001,16057,29289,29288,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.916122789436807,9.029527988028473,0,24,-3,-21.92834311563382,0,2,2,2019,10,0,38,38,1,1,0,21.66568739344687,21.66568739344687,0,0,0,0,0,1,1,0,0,0,51,54,63.09,47.92,8,1,1,0,0,8,10,5,1,1650,752994.0249852047,402642.8090446384,453944.1495537762,161643.7147790611,4230.951177728221 -13002,16058,29290,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.894817106051012,7.543796416320768,0,0,0,-1071.903156495564,0,2,-9,2019,6,0,37,37,1,0,0,9.218747730309383,9.218747730309383,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,13,10,3,1,674,99464.88098200907,-63356.94866938754,0,0,791.1043384789432 -13002,16059,29291,-9,29290,-9,1,1,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-935.0634638067767,-9,2,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,2.955399579177493,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,4,10,1,1,753,-29452.1100641526,0,0,0,-408.3326140912687 -13002,16060,29292,-9,29290,-9,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-930.9473432829164,-9,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1.925212126850976,0,55.19,54.26,-9,-9,0,1,1,1,0,0,10,1,1,1103,-87529.44637628406,0,0,0,400.5500827790709 -13003,16061,29293,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.448991841974942,7.668984771458267,0,0,-1017.174765040023,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.142950081636199,7.309392460674129,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,982,503769.2923160981,452814.7887201392,0,0,5144.919945165198 -13004,16062,29294,-9,29297,29299,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.748488994196,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16062,29295,-9,29297,29299,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-941.6040326301114,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16062,29296,-9,29297,29299,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.9245961591397,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16062,29297,29299,-9,-9,1,0,35,1,4,0,2,2,-9,0,4,7.912496811656239,8.028345294410604,0,11,-3,47.64608206382408,0,3,3,2019,6,0,45,41,1,0,0,7.507921979263558,7.507921979263558,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,6.666666666666667,3,4,0,0,9,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16062,29298,-9,29297,29299,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.2642090182995,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16062,29299,29297,-9,-9,1,1,38,1,4,0,1,1,0,0,4,0,0,0,8,3,119.6207779947626,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,3,4,0,0,0,4,2,0,607.1666666666666,1847.191851516732,0,151036.2547232512,132950.2914112272,1207.594647849981 -13004,16063,29300,-9,29297,29299,1,1,19,1,4,1,2,0,0,0,5,0,0,0,0,0,-1021.665556472332,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,3,4,0,0,1,4,1,0,1209,0,0,0,0,0 -13005,16064,29301,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-801.0473054362199,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,28.45,-9,-9,5,1,1,0,0,0,13,1,0,1325,211202.0191084272,0,267701.4065593292,0,1476.415824644477 -13006,16065,29302,-9,29303,29304,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.017888842505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,5,0,908.3333333333334,226078.3025034147,94747.18771477738,319034.9830884354,225537.4396414896,3558.857004260699 -13006,16065,29303,29304,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.189269030863164,8.38416683446915,0,5,-3,22.03461131051933,0,3,3,2019,19,7,37,0,1,7,0,10.71253606578006,10.71253606578006,0,0,0,0,0,1,1,0,0,0,40.48,60.05,46.1,59.99,6.666666666666667,1,1,0,0,2,4,5,0,908.3333333333334,226078.3025034147,94747.18771477738,319034.9830884354,225537.4396414896,3558.857004260699 -13006,16065,29304,29303,-9,-9,1,1,31,0,1,0,1,1,-9,0,4,8.340112252576731,8.489685100398871,0,5,3,-123.0802404442654,0,3,3,2019,11,0,38,39,1,0,0,19.57177962854361,19.57177962854361,0,0,0,0,0,1,1,0,5.45453156262153,0,46.1,59.99,40.48,60.05,5,1,1,0,0,5,4,5,0,908.3333333333334,226078.3025034147,94747.18771477738,319034.9830884354,225537.4396414896,3558.857004260699 -13007,16066,29305,-9,29307,29308,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.2907272553011,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,627.5,538377.5168164187,337966.5076832272,564715.5694354065,336956.6885240182,3706.20753595081 -13007,16066,29306,-9,29307,29308,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.5053045556638,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,627.5,538377.5168164187,337966.5076832272,564715.5694354065,336956.6885240182,3706.20753595081 -13007,16066,29307,29308,-9,-9,1,0,48,0,2,0,1,1,-9,0,2,0,0,0,31,-2,31.14040737653576,0,2,1,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,5.133592600415027,0,46.56,37.03,49.35,59.64,5,1,1,0,0,10,8,5,1,627.5,538377.5168164187,337966.5076832272,564715.5694354065,336956.6885240182,3706.20753595081 -13007,16066,29308,29307,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.35733631241224,9.092694436040382,0,31,2,55.53800596872581,0,3,1,2019,16,6,43,44,1,6,0,29.35441688151983,29.35441688151983,0,0,0,0,0,0,0,0,1.703173398994348,0,49.35,59.64,46.56,37.03,6.666666666666667,1,1,0,0,12,8,5,1,627.5,538377.5168164187,337966.5076832272,564715.5694354065,336956.6885240182,3706.20753595081 -13008,16067,29309,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,6.036445197511208,6.305284084994453,0,0,-937.9244708931361,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.045301744647207,6.302558908493655,60.19,32.12,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,340,112584.600712171,-19720.12369586377,72781.21313403599,0,1210.288721451085 -13009,16068,29310,29311,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,9,-3,13.61242209849225,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.93,48.77,42.86,42.72,8.333333333333334,1,1,0,0,0,2,3,1,620.75,77927.79203393577,-38696.09904880917,82180.34206628546,19586.73122394548,2893.950093147138 -13009,16068,29311,29310,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.199745105831477,8.047545481380173,0,9,3,6.614728364088005,0,2,2,2019,11,1,21,23,1,1,0,18.12427089787141,18.12427089787141,0,0,0,0,0,1,1,0,0,0,42.86,42.72,46.93,48.77,6.666666666666667,1,1,0,0,11,2,3,1,620.75,77927.79203393577,-38696.09904880917,82180.34206628546,19586.73122394548,2893.950093147138 -13009,16068,29312,-9,29310,29311,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.8688613486797,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,620.75,77927.79203393577,-38696.09904880917,82180.34206628546,19586.73122394548,2893.950093147138 -13009,16068,29313,-9,29310,29311,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.068247946783,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,620.75,77927.79203393577,-38696.09904880917,82180.34206628546,19586.73122394548,2893.950093147138 -13010,16069,29314,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.50161103833,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.372573173859312,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,7,4,2,1,341,50497.55906471175,0,0,0,1143.816217077586 -13011,16070,29315,29316,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,5.039446750323467,4.796833553918833,50,-5,-63.34779264231279,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,27,1,1,0,3.073894011307393,5.420288082608219,49.92,34.09,24.75,28.18,6.666666666666667,1,1,0,0,5,2,2,1,1595.5,252889.1538052991,54823.62742609018,65297.2747607814,0,1638.139243638346 -13011,16070,29316,29315,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.58334869662015,5.832336929940978,49,5,79.45017501582481,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.855333799979879,5.587243016525433,24.75,28.18,49.92,34.09,3.333333333333333,1,1,0,0,0,2,2,1,1595.5,252889.1538052991,54823.62742609018,65297.2747607814,0,1638.139243638346 -13012,16071,29317,29318,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,8.261311354099719,8.069701470465832,52,-1,-4.933710372237377,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.040059800994335,8.394578543146405,54.2,57.49,51.25,50.81,8.333333333333334,1,1,0,0,0,9,5,1,427.5,2210851.622293915,1119317.767469734,680901.0710930591,0,5131.514950230197 -13012,16071,29318,29317,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.285815204329797,8.398570522346487,52,1,-16.41035943283161,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.031285686085504,8.49102249677042,51.25,50.81,54.2,57.49,8.333333333333334,1,1,0,0,0,9,5,1,427.5,2210851.622293915,1119317.767469734,680901.0710930591,0,5131.514950230197 -13013,16072,29319,29320,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,0,0,46,1,-65.18135748442423,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.968650276858175,0,52.77,55.33,48.77,60.16,8.333333333333334,1,1,0,0,6,10,5,1,163.5,2281549.007097702,1669679.1211315,220879.0504624245,0,2887.886768203904 -13013,16072,29320,29319,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,9.043836950717672,8.994197097616892,0,46,-1,-140.9325001833912,0,3,2,2019,5,0,20,37,1,0,0,33.28632644358088,33.28632644358088,0,0,0,0,0,0,0,0,3.321909116493931,0,48.77,60.16,52.77,55.33,8.333333333333334,1,1,0,0,9,10,5,1,163.5,2281549.007097702,1669679.1211315,220879.0504624245,0,2887.886768203904 -13014,16073,29321,29323,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.265969134274039,7.911343095638609,0,15,9,-97.70787841868226,0,2,1,2019,3,0,54,45,1,0,0,8.163377164346832,8.163377164346832,0,0,0,0,0,1,1,0,3.338626777933312,0,63.63,51.86,51.77,58.57,8.333333333333334,3,4,0,0,8,8,5,1,228.3333333333333,1477543.667346215,1160272.269313287,225970.5953496799,17650.06510895931,4434.033221831011 -13014,16073,29322,-9,29323,29321,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.5239496027,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,228.3333333333333,1477543.667346215,1160272.269313287,225970.5953496799,17650.06510895931,4434.033221831011 -13014,16073,29323,29321,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.963013286826838,9.273109008378791,0,15,0,3.592932539476715,0,2,2,2019,9,0,46,51,1,0,0,22.29033042690612,22.29033042690612,0,0,0,0,0,1,1,0,0,0,51.77,58.57,63.63,51.86,8.333333333333334,3,4,0,0,8,8,5,1,228.3333333333333,1477543.667346215,1160272.269313287,225970.5953496799,17650.06510895931,4434.033221831011 -13014,16074,29324,-9,29323,29321,1,0,20,0,1,0,2,2,-9,0,4,7.814729264341825,8.0161957790007,0,0,0,-995.0502419228811,0,1,1,2019,11,0,30,37,1,2,1,8.406271607570886,8.406271607570886,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,1,1798,-222474.2522756661,0,0,0,376.6847635283161 -13015,16075,29325,29326,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.529716404654768,7.714528771853601,5.06813436676988,34,-3,31.05806809582629,0,2,2,2019,16,4,27,29,1,4,0,7.653477291071436,7.653477291071436,0,0,0,0,0,0,0,0,2.824995335414532,5.159335562143731,32.93,57.8,45.57,45.47,5,1,1,0,0,10,9,4,1,1317,2062992.98807465,1092386.581359877,575422.5932332996,0,3171.141240268116 -13015,16075,29326,29325,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.399474513182222,8.483036202548814,34,3,-139.5734327928689,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.642889002999883,8.515290624980562,45.57,45.47,32.93,57.8,5,1,1,0,0,5,9,4,1,1317,2062992.98807465,1092386.581359877,575422.5932332996,0,3171.141240268116 -13015,16076,29327,-9,29325,29326,1,1,27,0,0,0,2,2,-9,0,3,8.650597224280864,8.79437043236593,0,0,0,-1098.369810587565,0,2,2,2019,5,0,48,48,1,0,1,15.80921154013038,15.80921154013038,0,0,0,0,0,0,0,0,3.409704813168503,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,870,35238.59139025908,0,0,0,1874.1360115348 -13016,16077,29328,29330,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,6.115370769839287,5.858227666780964,0,20,-1,5.490069268793844,0,3,3,2019,7,0,7,0,1,0,0,7.992423149007358,7.992423149007358,0,0,0,0,0,0,0,0,.6165196194851995,0,57.16,56.15,45.54,57.19,8.333333333333334,1,1,0,0,1,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16077,29329,-9,29328,29330,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.8736288867309,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16077,29330,29328,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.406677234434101,9.307179574289307,0,20,1,-127.331521820539,0,-9,2,2019,7,0,50,50,1,0,0,33.25567445867831,33.25567445867831,0,0,0,0,0,0,0,0,0,0,45.54,57.19,57.16,56.15,8.333333333333334,1,1,0,0,8,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16077,29331,-9,29328,29330,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1057.858725755976,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16077,29332,-9,29328,29330,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.1901721747737,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16077,29333,-9,29328,29330,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.7598688785276,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,347.8333333333333,193590.2406509394,14233.70216190183,310748.3087985973,175610.806521445,6272.570299557256 -13016,16078,29334,-9,29328,29330,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1081.835645062877,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.5599431712879966,0,54.69,57.47,-9,-9,10,1,1,0,0,3,6,1,1,1048,-22591.02576181457,0,0,0,-681.5356159262005 -13017,16079,29335,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.676777506629531,8.400921910543401,0,0,0,-933.837701353674,0,2,2,2019,5,0,37,37,1,0,0,16.61892121486115,16.61892121486115,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,215,121491.2954170163,190550.6606040046,287168.756416988,112867.5889477121,2423.823781962999 -13018,16080,29336,29337,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,8.090194428925841,7.912386592717552,0,37,1,-72.88090379054265,0,2,2,2019,10,1,40,40,1,1,0,7.622620734739786,7.622620734739786,0,0,0,0,0,0,0,0,0,0,62.81,30.81,55.77,42.25,3.333333333333333,1,1,0,0,8,1,5,1,837.5,793261.3303749547,659571.565077065,152159.9301533138,0,3340.00564412995 -13018,16080,29337,29336,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.763067464226824,8.790456068785037,4.418043459334207,37,-1,-117.2450907609556,0,3,2,2019,8,0,40,29,1,0,0,18.73161091761383,18.73161091761383,0,0,0,0,7,0,0,0,0,4.782718687870311,55.77,42.25,62.81,30.81,8.333333333333334,1,1,0,0,6,1,5,1,837.5,793261.3303749547,659571.565077065,152159.9301533138,0,3340.00564412995 -13018,16081,29338,-9,29337,29336,1,1,30,0,0,0,2,2,-9,0,3,8.25180455211968,8.307714166461032,0,0,0,-986.4583609145614,0,2,2,2019,8,0,37,41,1,0,1,12.84758804194765,12.84758804194765,0,0,0,0,0,0,0,0,5.557466282319255,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,5,1,4,1,102,100084.8862100609,58269.53678211416,166565.9298455167,67027.29952770374,1499.435707027863 -13019,16082,29339,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.529510200970025,6.878942842616136,0,0,-995.7186978780837,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.157650172244555,6.550902206888633,57.33,53.46,-9,-9,10,1,1,0,0,0,2,2,1,2100,604015.7819008651,193286.3781950217,123377.8340536559,0,1850.442778713411 -13020,16083,29340,-9,29344,29341,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-972.8519029774935,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,874.6,1307604.736867321,687646.9899993441,621171.9703967627,177831.7251628667,11193.24882848996 -13020,16083,29341,29344,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.488235181892369,10.01138761827976,0,26,2,-102.1016133006439,0,2,3,2019,12,0,70,70,1,0,0,28.03314207388407,28.03314207388407,0,0,0,0,0,0,0,0,3.242754942809492,0,53.22,52.37,28.71,34.46,3.333333333333333,1,1,0,0,7,9,5,1,874.6,1307604.736867321,687646.9899993441,621171.9703967627,177831.7251628667,11193.24882848996 -13020,16083,29342,-9,29344,29341,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-946.4606040294343,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,874.6,1307604.736867321,687646.9899993441,621171.9703967627,177831.7251628667,11193.24882848996 -13020,16083,29343,-9,29344,29341,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.405591031549,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,874.6,1307604.736867321,687646.9899993441,621171.9703967627,177831.7251628667,11193.24882848996 -13020,16083,29344,29341,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,0,0,0,26,-2,6.267750506777832,0,2,2,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,120,0,0,0,2.130315835965509,0,28.71,34.46,53.22,52.37,5,1,1,0,0,2,9,5,1,874.6,1307604.736867321,687646.9899993441,621171.9703967627,177831.7251628667,11193.24882848996 -13021,16084,29345,29348,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.189879733565098,8.294026381546113,0,18,1,-102.9999313248393,0,2,2,2019,11,0,40,43,1,0,0,11.27035330316832,11.27035330316832,0,0,0,0,0,1,1,0,0,0,50.48,56.4,51.83,57.2,6.666666666666667,1,1,0,0,8,13,3,1,1116.75,-27310.40790374266,7459.195602203481,0,0,1597.187137803421 -13021,16084,29346,-9,29348,29345,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.412509936331,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1116.75,-27310.40790374266,7459.195602203481,0,0,1597.187137803421 -13021,16084,29347,-9,29348,29345,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.857778311446,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1116.75,-27310.40790374266,7459.195602203481,0,0,1597.187137803421 -13021,16084,29348,29345,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,4.210547982988217,4.167428396125785,0,18,-1,7.104964235303655,0,3,3,2019,5,0,20,20,1,0,0,.368501661374418,.368501661374418,0,0,0,0,7,1,1,0,0,0,51.83,57.2,50.48,56.4,8.333333333333334,1,1,0,0,7,13,3,1,1116.75,-27310.40790374266,7459.195602203481,0,0,1597.187137803421 -13022,16085,29349,29350,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.088557613990595,7.573868740764842,0,15,1,49.08025424870969,0,3,3,2019,9,0,34,33,1,0,0,11.75613336744325,11.75613336744325,0,0,0,.4778760010594905,0,0,0,0,0,0,53,56,54.2,57.49,6.666666666666667,1,1,0,0,13,6,5,1,500,114759.6244651662,63320.66167965813,209459.0713717134,127580.1792161527,3303.08279915546 -13022,16085,29350,29349,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.745512965410942,8.492691821234578,0,15,-1,-166.2708417309935,0,2,2,2019,10,1,45,44,1,1,0,10.89617770605656,10.89617770605656,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53,56,8.333333333333334,1,1,0,0,12,6,5,1,500,114759.6244651662,63320.66167965813,209459.0713717134,127580.1792161527,3303.08279915546 -13023,16086,29351,29353,29354,-9,1,0,55,0,1,0,1,1,-9,0,2,6.953965245292619,6.706565180022701,0,7,5,-44.25486099150346,0,2,2,2019,17,5,8,16,1,5,0,15.08687308997978,15.08687308997978,0,0,0,.2943439134244556,2,1,1,0,0,0,43.89,45.02,38.26,50.17,8.333333333333334,1,1,0,0,8,7,5,1,2124.666666666667,1825463.814068368,498701.3118148922,1003479.20572494,149354.4206255551,7479.825638055972 -13023,16086,29352,-9,29351,29353,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.019653606325,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,7,5,1,2124.666666666667,1825463.814068368,498701.3118148922,1003479.20572494,149354.4206255551,7479.825638055972 -13023,16086,29353,29351,-9,-9,1,1,50,0,1,0,1,1,-9,0,2,9.907504759931443,9.747602350836944,0,21,-5,78.60715946571321,0,3,1,2019,13,5,42,60,1,5,0,52.12664745964609,52.12664745964609,0,0,0,0,2,1,1,0,2.592293113004932,0,38.26,50.17,43.89,45.02,3.333333333333333,1,1,0,1,9,7,5,1,2124.666666666667,1825463.814068368,498701.3118148922,1003479.20572494,149354.4206255551,7479.825638055972 -13023,16087,29354,-9,-9,-9,1,0,82,0,1,0,3,3,-9,0,3,0,5.557904200800694,5.707346747164705,0,0,-982.2576863910776,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.440275193522929,53,45,-9,-9,8,1,1,0,0,0,7,2,1,182,243226.270875867,48325.17188886079,12715.80104080156,0,880.7788845639367 -13024,16088,29355,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,6.183686892036016,6.872994287807867,6.132599754716179,0,0,-1070.116163945329,0,3,3,2019,7,0,8,30,1,0,0,6.95020404204921,6.95020404204921,0,0,0,0,2,1,1,0,1.712848589597661,6.039891529009965,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,2,2,1,309,-38001.10992423192,8108.321895967259,0,0,1613.629460631191 -13025,16089,29356,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.417910532849247,8.084066751175754,0,0,0,-908.655707729474,0,2,2,2019,11,1,60,60,1,1,0,10.63500265808108,10.63500265808108,0,0,0,0,0,1,1,0,5.136099234106305,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,1513,481026.050916792,274314.1399007442,0,0,1733.269925673288 -13026,16090,29357,29358,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,3.169848458210502,3.465671291444563,55,-4,15.01364540451412,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.486273568564723,59.53,56.44,60.29,52.11,8.333333333333334,1,1,0,0,0,1,2,1,1405.5,296427.4450009011,89074.31814836348,236409.8221116987,0,2055.380804541302 -13026,16090,29358,29357,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.652953903920842,6.700933149502161,55,4,25.42479592080392,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.727108407474423,6.593963185929609,60.29,52.11,59.53,56.44,8.333333333333334,1,1,0,0,0,1,2,1,1405.5,296427.4450009011,89074.31814836348,236409.8221116987,0,2055.380804541302 -13027,16091,29359,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.66988127621207,7.824462799691548,0,0,0,-969.4831544270777,0,2,2,2019,9,0,31,31,1,0,0,9.196063808558995,9.196063808558995,0,0,0,0,0,1,1,0,0,0,45.32,54.77,-9,-9,5,1,1,0,1,11,12,3,1,75,-57387.95729847573,0,0,0,980.8527692108144 -13028,16092,29360,-9,29361,29362,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.3874165002607,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,515,4476702.560519669,2486134.546561157,762542.5034371763,0,6843.212629533161 -13028,16092,29361,29362,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,8.569515157619772,8.692432099228837,26,-12,57.35260712965752,0,2,1,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,2,1,1,0,7.219565320031434,8.452560358915628,49.86,55.31,61.01,53.18,8.333333333333334,1,1,0,0,12,9,5,1,515,4476702.560519669,2486134.546561157,762542.5034371763,0,6843.212629533161 -13028,16092,29362,29361,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,9.022049257446149,8.710566750432514,0,10,12,49.10036061900644,0,-9,-9,2019,5,0,40,10,1,0,0,25.11148607027138,25.11148607027138,0,0,0,0,0,1,1,0,3.367756895954117,0,61.01,53.18,49.86,55.31,8.333333333333334,1,1,0,0,9,9,5,1,515,4476702.560519669,2486134.546561157,762542.5034371763,0,6843.212629533161 -13029,16093,29363,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.505933785382,-9,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52.97,30.03,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,581,65123.43414637697,0,0,0,1361.489112864577 -13030,16094,29364,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.299385672681507,6.551857553538532,0,0,-988.8408717275148,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.445284231439999,6.142968700582621,41.86,45.61,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,149,591047.4485596783,-49219.45844145386,403895.5314117708,0,1680.133600374346 -13031,16095,29365,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.277392105220473,9.377308584035898,0,0,0,-1059.964397940866,0,2,2,2019,14,3,47,50,1,3,0,26.32944617212093,26.32944617212093,0,0,0,0,0,0,0,0,2.78477042018822,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,229,1236693.537607225,1052925.659522941,118282.2747365653,99024.80582106733,4916.889475344306 -13031,16096,29366,-9,-9,29365,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-993.1957371339042,-9,-9,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,2,0,0,0,0,0,28.73,61.03,-9,-9,5,1,1,0,0,0,9,1,0,211,0,0,0,0,0 -13032,16097,29367,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-943.3392426395965,0,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,37,21.48,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,574,-229376.3791014869,0,0,0,522.2397411108468 -13033,16098,29368,29369,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,10,0,70.69008105196183,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.79,42.63,37.85,15.67,8.333333333333334,2,3,0,0,0,2,2,0,765.5,444508.1631105314,179760.983502956,265799.0888277204,0,2898.151763538559 -13033,16098,29369,29368,-9,-9,1,1,86,0,0,0,3,3,-9,0,1,0,7.351016934685882,7.470000400296843,10,9,-32.50650951256744,0,2,2,2019,21,8,0,0,4,8,0,0,0,1,0,79.12698635157365,0,0,1,1,0,7.525625696586316,7.198045174861813,37.85,15.67,45.79,42.63,5,2,3,0,0,0,2,2,0,765.5,444508.1631105314,179760.983502956,265799.0888277204,0,2898.151763538559 -13034,16099,29370,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1049.089515145549,0,2,2,2019,20,9,0,38,3,9,0,0,0,0,0,0,0,2,0,0,0,0,0,44.26,59.43,-9,-9,3.333333333333333,4,5,1,0,5,2,1,1,276,256296.7941029859,95842.71672348546,216042.3643647376,94415.9385714275,0 -13035,16100,29371,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,7.31214100090622,7.84410461365655,0,0,-908.5322692074685,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.437365290114863,0,20.19055327010254,0,1,1,0,2.765546969540994,7.708982612049772,40.85,35.85,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,886,884683.5622479033,313591.5654420232,518581.8663853012,0,1534.388187548906 -13036,16101,29372,29373,-9,-9,1,1,50,0,1,0,2,2,-9,0,1,9.60084741998382,9.227830148147763,0,10,-1,-219.9285795573864,0,3,1,2019,10,0,47,53,1,0,0,25.44303717417655,25.44303717417655,0,0,0,0,0,0,0,0,0,0,48.72,43.01,52,54.51,6.666666666666667,1,1,0,0,11,6,5,1,1277.5,2176946.068195553,1665019.537823231,353773.3437254796,41425.51403076113,4612.792375353109 -13036,16101,29373,29372,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.102955004418627,8.020888189402754,0,10,1,-64.50112978477196,-9,2,2,2019,7,0,37,0,1,0,0,11.22069864848107,11.22069864848107,0,0,0,0,0,0,0,0,0,0,52,54.51,48.72,43.01,6.666666666666667,1,1,0,0,11,6,5,1,1277.5,2176946.068195553,1665019.537823231,353773.3437254796,41425.51403076113,4612.792375353109 -13036,16102,29374,-9,29373,29372,1,0,23,0,1,0,1,1,-9,0,4,7.673503463121811,7.561369392509112,0,0,0,-987.5708926605552,0,1,2,2019,11,1,75,90,1,1,1,2.969202290887327,2.969202290887327,0,0,0,0,0,0,0,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,956,-224537.1649065104,0,0,0,1227.66557537696 -13036,16103,29375,-9,29373,29372,1,0,21,0,1,0,1,1,1,0,3,0,0,0,0,0,-1009.135434154682,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,1,0,7,6,2,1,1159,54717.83797516268,88973.18787283893,0,0,0 -13037,16104,29376,29377,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,4.700880850304719,5.102576603591216,10,-3,-38.80052638991585,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,4.790391331416139,53.29,40.21,41.13,40.8,6.666666666666667,1,1,0,0,0,4,2,1,2202,87600.45269297031,175069.0012559584,63618.45522891835,0,1883.299148583395 -13037,16104,29377,29376,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.05782502719412,6.929211669991018,51,3,-68.03786849501169,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.587448629481958,7.110298816896319,41.13,40.8,53.29,40.21,8.333333333333334,1,1,0,0,0,4,2,1,2202,87600.45269297031,175069.0012559584,63618.45522891835,0,1883.299148583395 -13038,16105,29378,29379,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.608483134331518,9.593217706110956,0,27,-2,-1.898861625239813,0,2,2,2019,7,0,38,43,1,0,0,43.65239745857274,43.65239745857274,0,0,0,0,0,0,0,0,5.445554088462964,0,49.29,54.59,49.53,48.56,8.333333333333334,1,1,0,0,10,7,5,1,719,2948376.772131891,2218948.380421774,670989.7760708951,0,5041.645757802124 -13038,16105,29379,29378,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.431896911839917,7.591248919075036,0,7,2,118.2148817855723,0,2,2,2019,14,3,22,31,1,3,0,9.924594138909274,9.924594138909274,0,0,0,0,7,0,0,0,5.278773647092001,0,49.53,48.56,49.29,54.59,8.333333333333334,1,1,0,0,10,7,5,1,719,2948376.772131891,2218948.380421774,670989.7760708951,0,5041.645757802124 -13038,16106,29380,-9,29379,29378,1,1,22,0,0,0,1,1,1,0,4,0,6.066881476877085,6.412026302862861,0,0,-898.3430520973877,-9,1,1,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,6.236567318351097,0,45.81,58.99,-9,-9,3.333333333333333,1,1,1,0,3,7,2,1,254,64428.26014434682,0,0,0,65.74810674227319 -13038,16107,29381,-9,29379,29378,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.471747804432,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.6061178511131007,0,57.16,56.15,-9,-9,10,1,1,0,0,1,7,2,1,468,-10485.18775101382,0,0,0,-79.27934280983351 -13039,16108,29382,29383,-9,-9,1,0,53,0,0,0,1,1,-9,0,1,8.975875603752673,8.611854487936327,0,26,-4,11.82926541890139,0,3,3,2019,12,1,45,50,1,1,0,20.26332061881654,20.26332061881654,0,0,0,0,0,1,1,0,0,0,37.9,28.86,51.62,42.99,6.666666666666667,1,1,0,0,12,2,5,1,347.5,1961395.955655978,1692039.614130902,207116.4254848932,0,4296.037200827572 -13039,16108,29383,29382,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.570857328670087,8.361917464583135,0,26,4,75.79804466746295,0,2,2,2019,10,0,41,38,1,0,0,11.47370882116175,11.47370882116175,0,0,0,0,0,1,1,0,1.898868487333983,0,51.62,42.99,37.9,28.86,8.333333333333334,1,1,0,0,12,2,5,1,347.5,1961395.955655978,1692039.614130902,207116.4254848932,0,4296.037200827572 -13039,16109,29384,-9,29382,29383,1,0,18,0,0,0,2,2,0,0,2,0,0,0,0,0,-1036.377973770203,-9,1,1,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,2,1,1,0,0,0,30.73,55.32,-9,-9,5,1,1,0,0,0,2,1,1,1412,-48948.1826238032,0,0,0,0 -13040,16110,29385,29386,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.083306432039943,7.718202919750748,6.681499165076952,3,7,28.21599373892622,0,3,3,2019,22,10,23,20,1,10,0,5.898606860383136,5.898606860383136,0,0,0,0,0,0,0,0,6.902938686667838,0,35.53,54.66,52,56,3.333333333333333,1,1,0,0,9,2,4,0,312.5,224992.7925610904,37203.59796668155,82716.60660283439,0,2644.832067798605 -13040,16110,29386,29385,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.64151751136751,8.488353734959425,0,3,-7,28.337009677701,0,-9,-9,2019,9,0,50,50,1,1,0,12.00752667171534,12.00752667171534,0,0,0,0,0,0,0,0,0,0,52,56,35.53,54.66,8,1,1,0,0,1,2,4,0,312.5,224992.7925610904,37203.59796668155,82716.60660283439,0,2644.832067798605 -13041,16111,29387,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1078.681360861375,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.9,28.21,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,238,16409.92438790299,0,0,0,104.2983348580776 -13042,16112,29388,29389,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.030674246405518,8.158575343208204,0,9,0,16.78164004743517,0,-9,-9,2019,8,0,15,30,1,0,0,18.52623865892295,18.52623865892295,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.86,38.41,8.333333333333334,1,1,0,0,10,12,3,1,266,458740.2914335725,211154.3898819395,249256.3083804692,0,1753.892110337875 -13042,16112,29389,29388,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,5.542818371344923,5.681573864836206,0,9,9,41.51132766951449,0,1,1,2019,19,9,3,10,1,9,0,8.683015004336495,8.683015004336495,0,0,0,0,7,1,1,0,0,0,41.86,38.41,48.87,58.55,1.666666666666667,1,1,0,1,10,12,3,1,266,458740.2914335725,211154.3898819395,249256.3083804692,0,1753.892110337875 -13043,16113,29390,29391,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,10,-1,39.06853668940493,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.27,56.95,42.1,37.58,5,1,1,0,0,0,11,2,1,345.5,79404.82163024387,0,0,0,790.212184714233 -13043,16113,29391,29390,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,2.361118702854181,2.191650888837297,10,1,77.13127424414324,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.020543657135025,2.264842449854888,42.1,37.58,49.27,56.95,5,1,1,0,0,8,11,2,1,345.5,79404.82163024387,0,0,0,790.212184714233 -13044,16114,29392,29393,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.006553309347832,7.042304649875506,6,-2,9.878383536477539,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.988686815696747,57.33,53.46,43.42,62.33,8.333333333333334,1,1,0,0,5,13,3,1,618.5,984715.2213779199,563910.3486338521,166312.0826639198,0,3233.646376809451 -13044,16114,29393,29392,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.028228654560115,7.836427785126586,6,2,-122.4815175727918,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.959346968901256,7.340102821330003,43.42,62.33,57.33,53.46,10,1,1,0,0,0,13,3,1,618.5,984715.2213779199,563910.3486338521,166312.0826639198,0,3233.646376809451 -13045,16115,29394,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.160321105684774,7.39701104783166,0,0,-990.5011977444633,0,3,3,2019,20,10,0,0,4,10,0,0,0,1,0,7.2710008253803,0,0,1,1,0,.3945520220128442,7.085658137675029,40.72,43.47,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1774,716580.1682520116,191166.6766670552,462954.0784962646,0,904.8874709759402 -13045,16116,29395,-9,29394,-9,1,0,31,0,0,0,2,2,-9,0,4,7.832100227561241,7.622763967942359,0,0,0,-1000.398737616672,0,3,-9,2019,8,0,35,35,1,0,0,6.646934704005846,6.646934704005846,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,1866,247621.2450921593,2304.616497612379,0,0,902.8935293001663 -13046,16117,29396,29398,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.395216752070121,8.629294173177136,0,2,1,-27.75017714200703,0,2,2,2019,9,0,55,58,1,0,0,10.6127451995667,10.6127451995667,0,0,0,0,0,1,1,0,0,0,56.58,49.75,48.87,58.55,6.666666666666667,1,1,0,0,10,11,4,1,745.75,217880.9888578623,131889.8195437104,164461.4881817901,45096.15883945303,3336.60915270035 -13046,16117,29397,-9,29398,29396,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.019163684188,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,745.75,217880.9888578623,131889.8195437104,164461.4881817901,45096.15883945303,3336.60915270035 -13046,16117,29398,29396,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.909901899093049,7.971428907746017,0,2,-1,-54.79969802129001,0,2,3,2019,8,0,42,39,1,0,0,9.0265235599876,9.0265235599876,0,0,0,0,2,1,1,0,0,0,48.87,58.55,56.58,49.75,8.333333333333334,1,1,0,0,9,11,4,1,745.75,217880.9888578623,131889.8195437104,164461.4881817901,45096.15883945303,3336.60915270035 -13046,16117,29399,-9,29398,29396,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1062.805618097724,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,4,1,745.75,217880.9888578623,131889.8195437104,164461.4881817901,45096.15883945303,3336.60915270035 -13047,16118,29400,29401,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.707192609689567,7.697017692949717,60,1,160.5015779825209,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,2.3634662078942,4.321057197642844,0,0,1,1,0,0,8.006065358136466,54,46,52,45,8,1,1,0,0,0,7,3,1,1027,210943.3240247201,-48636.47392881472,426866.6023658739,0,1482.785979183166 -13047,16118,29401,29400,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.039311488547345,4.868201034156331,60,-1,105.4819554383025,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.070711723300481,4.902600491179607,52,45,54,46,8,1,1,0,0,0,7,3,1,1027,210943.3240247201,-48636.47392881472,426866.6023658739,0,1482.785979183166 -13047,16119,29402,-9,29401,29400,1,1,56,0,0,0,1,1,-9,0,4,7.225037773666708,7.055722343385774,0,0,0,-1105.393457171559,0,2,1,2019,9,0,40,40,1,0,0,3.890909307145573,3.890909307145573,0,0,0,0,0,1,1,0,2.16465015344397,0,54,54,-9,-9,8,1,1,0,0,1,7,3,1,243,151713.5301537431,51940.3569115335,0,0,638.5954305424445 -13047,16120,29403,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.203428171391131,7.631669215050803,0,0,0,-966.3384739279065,0,-9,-9,2019,11,0,40,40,1,2,0,4.294964948753479,4.294964948753479,0,0,0,0,0,1,1,0,2.892050232054697,0,50,47,-9,-9,7,1,1,0,0,1,7,3,1,5043,144613.8334015489,0,0,0,709.612038027655 -13048,16121,29404,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.192631294746267,7.884625771204029,7.018294124870581,0,0,-957.1592756069792,0,1,2,2019,6,0,20,20,1,0,0,8.462112651779503,8.462112651779503,0,0,0,0,0,1,1,0,7.176470564239502,0,41.23,59.35,-9,-9,5,1,1,0,0,8,4,3,1,664.6666666666666,-14902.59003097595,-9187.960628314424,0,0,2536.153699904483 -13048,16121,29405,-9,29404,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.9398282299097,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,664.6666666666666,-14902.59003097595,-9187.960628314424,0,0,2536.153699904483 -13048,16121,29406,-9,29404,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.0405997150708,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,664.6666666666666,-14902.59003097595,-9187.960628314424,0,0,2536.153699904483 -13049,16122,29407,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.414096553459391,8.414589698650248,0,0,0,-1038.892131969888,0,3,3,2019,9,0,37,16,1,0,0,16.06023057353635,16.06023057353635,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,10,3,4,0,0,8,8,3,0,545,-160653.027046609,0,0,0,2664.028431330665 -13050,16123,29408,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,5.418688189813634,5.429908824205473,0,0,-1018.282788604308,0,2,3,2019,13,1,0,40,3,1,0,0,0,0,0,0,0,27,1,0,1,5.861493717207749,0,42.33,27.31,-9,-9,3.333333333333333,1,1,0,0,10,11,2,0,581,76327.46874234917,42332.54539405702,76256.74660372805,28631.08983204343,1478.675775115418 -13050,16123,29409,-9,29408,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.96773836513,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,581,76327.46874234917,42332.54539405702,76256.74660372805,28631.08983204343,1478.675775115418 -13050,16123,29410,-9,29408,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.91107169785,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,2,0,581,76327.46874234917,42332.54539405702,76256.74660372805,28631.08983204343,1478.675775115418 -13051,16124,29411,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.472909020895779,8.37071169371249,0,0,0,-1068.408926242549,0,2,2,2019,13,4,38,37,1,4,0,13.0911106936905,13.0911106936905,0,0,0,0,0,0,0,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,2748,-220717.1688696599,-106153.5505825266,0,0,1557.266064100882 -13052,16125,29412,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.298745202923747,8.375264569911055,0,0,-943.8793658560928,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.519299310185252,57.73,51.86,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,435,842993.2211579339,750215.6405288652,197926.1129734543,0,2049.326569898551 -13053,16126,29413,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,8.227006915153785,7.975372120200768,0,0,-930.7603501538018,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.522256229930854,8.293984034319497,51.43,45.6,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1576,202131.6586225833,107575.2661941516,89885.63345347048,0,2615.135428353085 -13054,16127,29414,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.930606439034715,8.174483958340296,0,8,-10,-30.29074504118918,0,-9,2,2019,12,0,37,37,1,0,0,7.07979333335553,7.07979333335553,0,0,0,0,0,0,0,0,3.163162423571312,0,46.48,50.4,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,1187,-101678.9196962849,-31619.89612807213,0,0,2072.632634513218 -13054,16128,29415,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.063435105825008,8.001742182220381,0,8,10,-82.71400490751276,0,3,2,2019,9,0,41,42,1,0,0,9.387074882386795,9.387074882386795,0,0,0,0,7,0,0,0,3.509310744102277,0,57.06,57.76,46.48,50.4,10,1,1,0,0,9,5,4,1,946,-50314.34501960447,36934.84792220703,130696.2298208677,95384.63006840841,1203.089707333472 -13055,16129,29416,29417,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.169292148705885,8.89658258494245,0,7,-10,-41.71635192767749,0,2,2,2019,9,0,20,20,1,0,0,50.48036648185776,50.48036648185776,0,0,0,0,0,0,0,0,3.05526753004816,0,49.44,56.93,59.29,49.68,8.333333333333334,1,1,0,0,10,1,5,1,344,439585.8055725438,471859.5231759341,152686.5673432448,107961.9508727612,5743.931822937875 -13055,16129,29417,29416,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.439133358180559,8.348258842676788,0,7,10,-127.0302094225399,0,3,3,2019,7,0,40,55,1,0,0,16.24642466879606,16.24642466879606,0,0,0,0,0,0,0,0,4.487556181564279,0,59.29,49.68,49.44,56.93,8.333333333333334,1,1,0,0,9,1,5,1,344,439585.8055725438,471859.5231759341,152686.5673432448,107961.9508727612,5743.931822937875 -13055,16130,29418,-9,29417,29416,1,1,20,0,0,1,2,0,0,0,4,0,5.502204298314774,5.274486925373433,0,0,-1010.3400826743,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.397556464855903,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,218,10111.62232370423,0,0,0,103.6439324603838 -13056,16131,29419,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.26566000904908,8.288547563098197,0,0,0,-1012.330736621336,0,2,2,2019,3,0,40,50,1,0,0,12.55235555461898,12.55235555461898,0,0,0,0,0,1,1,0,.4395566092785889,0,62.39,56.71,-9,-9,10,1,1,0,0,12,2,4,1,591,-57626.17778654168,56045.28803432453,0,0,1451.738202113936 -13057,16132,29420,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-906.900714372716,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.927842987105286,2.355194531957711,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,13,1,1,148,-9532.023507271291,0,0,0,1038.693134997165 -13058,16133,29421,-9,29422,29423,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-939.5019732306831,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,765.75,2057985.539826973,1137743.055513208,731781.4630765134,0,3089.614478707112 -13058,16133,29422,29423,-9,-9,1,0,36,2,2,0,1,1,-9,0,4,0,0,0,9,-14,-13.75614675104772,0,-9,-9,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,45.27,55.36,51.57,8.333333333333334,1,1,0,0,6,9,4,1,765.75,2057985.539826973,1137743.055513208,731781.4630765134,0,3089.614478707112 -13058,16133,29423,29422,-9,-9,1,1,50,2,2,0,2,2,-9,0,3,8.627844596551848,8.867650151447439,7.046136042329901,9,14,116.6432351569044,0,2,2,2019,8,1,39,40,1,1,0,20.42327863360417,20.42327863360417,0,0,0,0,0,1,1,0,0,7.141520783614594,55.36,51.57,43.15,45.27,8.333333333333334,1,1,0,0,11,9,4,1,765.75,2057985.539826973,1137743.055513208,731781.4630765134,0,3089.614478707112 -13058,16133,29424,-9,29422,29423,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.837460106231,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,765.75,2057985.539826973,1137743.055513208,731781.4630765134,0,3089.614478707112 -13059,16134,29425,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.182494230093267,8.116930369260283,0,0,0,-1025.236944125935,0,2,2,2019,12,0,40,40,1,0,0,14.44335965867595,14.44335965867595,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,3,13,4,0,299,77884.19179754943,-69573.46942995416,111984.3308652472,97466.97937327204,1249.175235405066 -13060,16135,29426,29427,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,6.83899341985407,7.133594704870981,45,-2,21.224466878044,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,.4841296486385023,0,0,0,0,8.313356941662208,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,433.5,1333419.583778414,1185450.650985918,238279.3212037246,0,3657.159990662551 -13060,16135,29427,29426,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.224522859950691,8.103267204005169,45,2,-82.54708822667644,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.089186602419558,8.383330820099447,57.16,56.15,57.06,57.76,10,1,1,0,0,4,1,4,1,433.5,1333419.583778414,1185450.650985918,238279.3212037246,0,3657.159990662551 -13061,16136,29428,-9,29430,29431,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.931981049241,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,451.75,177125.1649248959,162255.2431873654,183429.5859870067,108766.9766676654,3384.261282366773 -13061,16136,29429,-9,29430,29431,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.6094741231494,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,451.75,177125.1649248959,162255.2431873654,183429.5859870067,108766.9766676654,3384.261282366773 -13061,16136,29430,29431,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.191438099718065,8.155329538642839,0,7,-8,77.17055100748053,-9,3,3,2019,25,12,30,0,1,12,0,17.78027733871345,17.78027733871345,0,0,0,0,0,1,1,0,0,0,18.76,52.45,55.19,54.26,3.333333333333333,1,1,0,1,9,12,4,1,451.75,177125.1649248959,162255.2431873654,183429.5859870067,108766.9766676654,3384.261282366773 -13061,16136,29431,29430,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.657578935010584,8.600903722906983,0,5,8,-14.10656957084748,-9,2,1,2019,10,0,38,0,1,0,0,19.62347050216115,19.62347050216115,0,0,0,0,0,1,1,0,0,0,55.19,54.26,18.76,52.45,6.666666666666667,1,1,0,1,10,12,4,1,451.75,177125.1649248959,162255.2431873654,183429.5859870067,108766.9766676654,3384.261282366773 -13062,16137,29432,29433,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.97658265276432,9.078810377048811,0,40,1,96.67385783327933,0,2,3,2019,16,5,46,45,1,5,0,19.824496472287,19.824496472287,0,0,0,0,0,1,1,0,4.011156404907461,0,47.3,51.13,49.04,55.86,6.666666666666667,1,1,0,0,10,12,5,1,270.5,2312744.276416604,1684809.146248457,406006.3163114715,0,2369.970137898527 -13062,16137,29433,29432,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,40,-1,-46.2727642030026,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9275852805742445,0,49.04,55.86,47.3,51.13,8.333333333333334,1,1,0,0,0,12,5,1,270.5,2312744.276416604,1684809.146248457,406006.3163114715,0,2369.970137898527 -13063,16138,29434,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.917546582153252,8.039576056626343,0,0,-977.0103592131903,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.370605558294938,37.56,31.56,-9,-9,3.333333333333333,1,1,0,0,3,9,3,1,1422,764150.1226443406,222611.7720217718,302681.3708295965,0,1686.994794458418 -13064,16139,29435,29436,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,0,7.388736624453808,7.432335416890704,46,-1,-80.84651278754036,0,2,2,2019,20,6,0,0,4,6,0,0,0,1,0,15.44698688496736,0,0,1,1,0,0,7.577539465779043,46.93,15.34,52.65,51.64,3.333333333333333,1,1,0,0,4,1,4,1,2344.5,2860550.404442016,1661470.010428922,672625.2823543041,0,3393.77245476584 -13064,16139,29436,29435,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.700904145175977,7.589784791086064,46,1,-52.94132487077211,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.751358147883694,52.65,51.64,46.93,15.34,8.333333333333334,1,1,0,0,7,1,4,1,2344.5,2860550.404442016,1661470.010428922,672625.2823543041,0,3393.77245476584 -13065,16140,29437,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.794039512652,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,4,1,0,1181,60910.86842571952,0,0,0,1475.491987525656 -13066,16141,29438,29439,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.643831235483473,8.840666776687311,0,8,-3,-43.25327783985723,0,2,3,2019,8,0,38,38,1,0,0,16.28013073781802,16.28013073781802,0,0,0,0,0,0,0,0,0,0,55.53,51.55,48.6,49.46,6.666666666666667,1,1,0,0,9,12,5,1,709,757073.4424709082,529666.2551346906,234068.8972682874,0,3729.140320578354 -13066,16141,29439,29438,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.969342090456081,8.310819934058378,0,8,3,-120.030384027608,0,3,3,2019,9,0,40,42,1,0,0,19.8232631980202,19.8232631980202,0,0,0,0,0,0,0,0,0,0,48.6,49.46,55.53,51.55,5,1,1,0,0,9,12,5,1,709,757073.4424709082,529666.2551346906,234068.8972682874,0,3729.140320578354 -13067,16142,29440,-9,29442,29443,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-986.8923729033532,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,57.75,-9,-9,10,1,1,0,0,0,9,4,1,839.25,374245.1707909633,98354.01554546756,351777.4423319493,154807.4888677423,2735.486135949581 -13067,16142,29441,-9,29442,29443,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.7500218020886,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,839.25,374245.1707909633,98354.01554546756,351777.4423319493,154807.4888677423,2735.486135949581 -13067,16142,29442,29443,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.580069894904105,7.498510414042128,0,5,-2,-192.1887991463166,-9,-9,2,2019,13,1,28,0,1,1,0,8.225587260480619,8.225587260480619,0,0,0,0,0,1,1,0,2.85352746188364,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,6,9,4,1,839.25,374245.1707909633,98354.01554546756,351777.4423319493,154807.4888677423,2735.486135949581 -13067,16142,29443,29442,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.467227561034854,8.650342956958438,0,5,2,-65.94203178930593,-9,-9,-9,2019,11,0,43,0,1,0,0,13.3784604524258,13.3784604524258,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.24,58.84,10,1,1,0,0,10,9,4,1,839.25,374245.1707909633,98354.01554546756,351777.4423319493,154807.4888677423,2735.486135949581 -13068,16143,29444,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.082338460991777,7.265937086779449,0,0,-992.2920259950391,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.313559352103152,7.387328974815429,59.71,45.35,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,4123,819991.3871739054,281137.9720425304,102274.6831602041,0,921.3676046145775 -13069,16144,29445,29446,-9,-9,1,0,40,0,1,0,3,3,-9,0,3,7.738107114218558,7.911307213534503,0,16,1,29.54689396572942,0,2,2,2019,13,0,38,28,1,2,0,6.818786871578374,6.818786871578374,0,0,0,0,0,1,1,0,0,0,45,51,43.19,42.16,1.666666666666667,1,1,0,0,8,9,5,1,419.3333333333333,429492.3573965684,87032.02043758152,546671.1057567658,184217.9444768477,4268.780793458264 -13069,16144,29446,29445,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,9.010422598778927,9.040973742976925,0,16,-1,-21.32069636230499,0,2,2,2019,12,2,45,45,1,2,0,22.46106685938146,22.46106685938146,0,0,0,0,0,1,1,0,0,0,43.19,42.16,45,51,5,1,1,0,0,12,9,5,1,419.3333333333333,429492.3573965684,87032.02043758152,546671.1057567658,184217.9444768477,4268.780793458264 -13069,16144,29447,-9,29445,29446,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.359192772048,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.3333333333333,429492.3573965684,87032.02043758152,546671.1057567658,184217.9444768477,4268.780793458264 -13070,16145,29448,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.830332406928379,8.83020327139462,0,0,0,-1045.086380882368,0,3,3,2019,6,0,41,40,1,0,0,24.32535288457443,24.32535288457443,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,9,4,5,1,1951,387098.2829538681,164662.0750915546,47278.6328278775,37857.84260212161,1810.922093966098 -13071,16146,29449,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.669411449912104,8.278012363103343,6.921100310905234,0,0,-1113.918556763579,0,2,2,2019,14,2,30,20,1,2,0,7.899011254866196,7.899011254866196,0,0,0,0,0,0,0,0,6.63042938796334,0,37.59,54.15,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,469,-42694.69829783979,0,0,0,1804.455013305609 -13072,16147,29450,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.4286923398439,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.09,37.13,-9,-9,10,1,1,0,0,0,4,1,1,1994,6002.029435024081,0,0,0,853.0311925081576 -13073,16148,29451,29452,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.880383600926308,5.894828739318034,8,-5,13.64249698613713,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.465424033760298,6.184180665997679,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,7,2,3,1,416.5,961719.3159906422,986189.593713699,0,0,3399.188600592532 -13073,16148,29452,29451,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.032782655739769,8.000388866784359,8,5,-44.82450116914474,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.921958047032913,8.080598180728837,59.43,58.05,54.2,57.49,10,1,1,0,0,8,2,3,1,416.5,961719.3159906422,986189.593713699,0,0,3399.188600592532 -13074,16149,29453,29454,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,6.790762869525962,6.509166913130777,0,9,-3,-33.76760906643592,-9,2,3,2019,10,2,35,0,1,2,0,2.334168650639246,2.334168650639246,0,0,0,0,0,1,1,0,0,0,35.75,66.17,52,56,6.666666666666667,1,1,0,0,4,7,4,1,1351.75,257196.0431487418,122604.3088120621,154442.4017086546,30126.35055132119,5698.559290237567 -13074,16149,29454,29453,-9,-9,1,1,46,0,3,0,2,2,-9,0,4,8.695653730196915,9.2039209405373,0,3,3,-98.94001092753027,-9,2,2,2019,9,0,40,0,1,1,0,19.50004939182205,19.50004939182205,0,0,0,0,0,1,1,0,6.228453680442829,0,52,56,35.75,66.17,8,1,1,0,0,1,7,4,1,1351.75,257196.0431487418,122604.3088120621,154442.4017086546,30126.35055132119,5698.559290237567 -13074,16149,29455,-9,29453,29454,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-915.5042126638053,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1351.75,257196.0431487418,122604.3088120621,154442.4017086546,30126.35055132119,5698.559290237567 -13074,16149,29456,-9,29453,29454,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.445978440871,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1351.75,257196.0431487418,122604.3088120621,154442.4017086546,30126.35055132119,5698.559290237567 -13075,16150,29457,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.463869600572041,6.231346662215992,0,0,-916.466875783153,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.187029408302902,6.496824767461996,62.5,36.48,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,313,468992.0901325366,145821.5867269969,313329.2632788179,0,910.1661340232084 -13076,16151,29458,29459,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,54,-1,-20.39112615868514,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.309525326115818,0,28.83,48.24,50.09,54.06,8.333333333333334,1,1,0,0,4,10,3,1,553.5,591047.888300501,0,463499.4774471498,0,1957.082129281398 -13076,16151,29459,29458,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.797782122297609,7.638773714229688,54,1,14.55291771281439,0,1,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.703653264664222,7.704775273364706,50.09,54.06,28.83,48.24,10,1,1,0,0,2,10,3,1,553.5,591047.888300501,0,463499.4774471498,0,1957.082129281398 -13077,16152,29460,-9,29461,29462,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.7545965544097,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,5,1,346.5,172702.2255768293,172553.9718607339,0,0,7517.29936387211 -13077,16152,29461,29462,-9,-9,1,0,36,1,2,0,1,1,-9,0,2,0,0,0,14,-5,60.93328540539485,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,48.98,57.16,56.15,6.666666666666667,2,3,1,0,0,9,5,1,346.5,172702.2255768293,172553.9718607339,0,0,7517.29936387211 -13077,16152,29462,29461,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.202825666652236,9.425000141294657,0,14,5,-.0872839055656112,0,1,1,2019,7,0,41,41,1,0,0,30.32157044985661,30.32157044985661,0,0,0,0,0,1,1,0,9.162805471849593,0,57.16,56.15,35.79,48.98,8.333333333333334,2,3,0,0,11,9,5,1,346.5,172702.2255768293,172553.9718607339,0,0,7517.29936387211 -13077,16152,29463,-9,29461,29462,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.9508718645453,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,346.5,172702.2255768293,172553.9718607339,0,0,7517.29936387211 -13078,16153,29464,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,6.420838869166716,6.504548967167686,0,0,-969.8026559468431,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,2.553286138305039,5.613962519469062,0,0,1,1,0,0,6.476656908156197,37.79,31.68,-9,-9,8.333333333333334,3,4,0,0,0,4,2,1,771,479568.5009711056,52076.09489564047,252052.8782674642,0,1448.708936806638 -13079,16154,29465,29466,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.173623785418087,8.17782434562687,0,1,-5,-18.08526604873066,-9,-9,-9,2019,15,4,37,0,1,4,0,9.039397191794626,9.039397191794626,0,0,0,0,0,0,0,0,0,0,40.48,50.79,50.33,52.79,6.666666666666667,1,1,0,0,8,13,4,0,593,-10026.22426906495,68443.87727349279,0,0,2868.558554357887 -13079,16154,29466,29465,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.399198396968414,7.968093725148685,0,1,5,25.85520999059986,-9,2,3,2019,9,0,37,0,1,0,0,12.0023337356547,12.0023337356547,0,0,0,0,0,0,0,0,0,0,50.33,52.79,40.48,50.79,8.333333333333334,1,1,0,0,10,13,4,0,593,-10026.22426906495,68443.87727349279,0,0,2868.558554357887 -13080,16155,29467,29468,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.958373229428515,8.011481686260582,0,2,0,54.73906495684784,0,-9,-9,2019,11,0,42,42,1,0,0,8.228895281493879,8.228895281493879,0,0,0,0,14.5,1,1,0,0,0,43.25,38.75,37.4,44.13,3.333333333333333,1,1,0,0,12,6,3,0,494,237207.5029527459,72042.16959368868,116738.6588133426,0,2157.844308630991 -13080,16155,29468,29467,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.781040142840263,6.490749411845938,35,0,81.3187238167807,0,3,3,2019,18,6,0,39,3,6,0,0,0,0,0,0,0,0,1,1,0,5.803860968403456,0,37.4,44.13,43.25,38.75,6.666666666666667,1,1,0,0,11,6,3,0,494,237207.5029527459,72042.16959368868,116738.6588133426,0,2157.844308630991 -13081,16156,29469,29472,-9,-9,1,0,34,1,3,0,2,2,-9,0,5,8.337264507500455,8.11620161829827,0,16,-6,-40.27954272282756,0,3,2,2019,8,0,41,45,1,0,0,13.35265706824132,13.35265706824132,0,0,0,0,0,1,1,0,0,0,45.22,63.14,41.07,60.93,10,3,4,0,0,7,6,4,1,905.6,18418.55162134759,-18842.24403879365,134403.0729214922,52288.71275270922,2990.494170886665 -13081,16156,29470,-9,29469,29472,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.0475589549111,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,905.6,18418.55162134759,-18842.24403879365,134403.0729214922,52288.71275270922,2990.494170886665 -13081,16156,29471,-9,29469,29472,1,1,13,1,3,1,3,0,-9,0,3,0,0,0,0,0,-961.807094909769,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,4,2,-9,0,0,6,4,1,905.6,18418.55162134759,-18842.24403879365,134403.0729214922,52288.71275270922,2990.494170886665 -13081,16156,29472,29469,-9,-9,1,1,40,1,3,0,2,2,-9,0,5,8.04423144492652,8.016028811420512,0,6,6,-108.7638473096813,0,-9,-9,2019,9,0,39,39,1,0,0,8.940648406894947,8.940648406894947,0,0,0,0,0,1,1,0,0,0,41.07,60.93,45.22,63.14,1.666666666666667,1,1,0,0,8,6,4,1,905.6,18418.55162134759,-18842.24403879365,134403.0729214922,52288.71275270922,2990.494170886665 -13081,16156,29473,-9,29469,29472,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.703789001493,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,6,4,1,905.6,18418.55162134759,-18842.24403879365,134403.0729214922,52288.71275270922,2990.494170886665 -13082,16157,29474,29475,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.20599665429539,7.264968905145927,22,-3,79.48082881273127,0,1,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.312671649675138,7.350068496315953,46.41,42.57,49.81,51.82,8.333333333333334,1,1,0,0,6,10,3,1,2970.5,212211.5554853382,161062.9482491174,0,0,2529.266865227619 -13082,16157,29475,29474,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.58858026008566,7.329197801142553,15,3,14.85034974752467,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.230001707313589,7.893688309049611,49.81,51.82,46.41,42.57,8.333333333333334,1,1,0,0,0,10,3,1,2970.5,212211.5554853382,161062.9482491174,0,0,2529.266865227619 -13083,16158,29476,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.345862197415174,8.548469587063288,5.662245838181592,0,0,-1005.895038184867,0,-9,-9,2019,11,1,35,35,1,1,0,13.60400499771136,13.60400499771136,1,0,0,0,0,1,1,0,6.322622005241788,5.653427373531871,50.27,46.95,-9,-9,8.333333333333334,1,1,0,0,13,10,5,1,593,216922.0741612078,42292.32016534613,0,0,3300.226243097458 -13084,16159,29477,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.276787767942608,8.360633876289915,0,0,0,-906.6948376375581,0,-9,-9,2019,6,0,48,48,1,0,0,12.41738309351862,12.41738309351862,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,782,-2593.187040179702,-44402.78502307866,0,0,1567.898597013671 -13085,16160,29478,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1095.298441251301,0,3,3,2019,18,0,0,0,4,5,0,0,0,1,0,4.05057371053296,0,0,1,1,0,0,0,44.5,24.45,-9,-9,6.666666666666667,2,3,0,1,0,1,1,1,509,77143.40917978832,0,0,0,610.7045882602641 -13086,16161,29479,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.907117178398603,8.147413844513075,0,0,0,-1065.156384599864,0,3,3,2019,12,1,30,16,1,1,0,12.57059795867208,12.57059795867208,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,3,4,0,0,7,6,3,0,636,200587.0369183446,63488.05358255236,109670.0248279108,64025.24714797981,1325.366107549055 -13087,16162,29480,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.530574633814284,4.58329480877549,0,0,-1009.885205174678,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.422250590131317,4.710552179228745,49.44,43.52,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,234,358694.0268924456,43600.7058190752,334279.3208150743,0,1600.991526485397 -13088,16163,29481,29482,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.134291765892611,8.040057063402681,0,7,4,26.10221203250604,0,-9,-9,2019,4,0,28,17,1,0,0,10.26339191601349,10.26339191601349,0,0,0,0,0,1,0,1,0,0,62.49,55.09,35.86,58.14,6.666666666666667,1,1,0,0,12,7,3,0,2885.5,63266.12973578577,0,212801.2056584446,58059.65196205574,2702.33405646529 -13088,16163,29482,29481,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,6.495079400401719,6.476145052587786,0,18,-4,112.4827400329594,0,-9,-9,2019,20,6,10,10,1,6,0,9.704918040100567,9.704918040100567,0,0,0,0,0,1,0,1,0,0,35.86,58.14,62.49,55.09,5,1,1,0,1,8,7,3,0,2885.5,63266.12973578577,0,212801.2056584446,58059.65196205574,2702.33405646529 -13088,16164,29483,-9,29482,29481,1,0,21,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1007.089968446408,0,2,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,1,0,1,7,1,0,423,-45277.78431154026,0,0,0,128.4857694096356 -13088,16164,29484,-9,29483,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.0167535777738,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,0,423,-45277.78431154026,0,0,0,128.4857694096356 -13089,16165,29485,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.313507290786131,8.711164673181308,0,0,0,-905.7979673220972,0,-9,-9,2019,16,4,50,50,1,4,0,11.16533057527683,11.16533057527683,0,0,0,0,74.5,0,0,0,0,0,42.11,57.44,-9,-9,3.333333333333333,1,1,0,0,10,5,5,1,1295,105918.4615501196,-19869.72128056515,96549.58104986642,53091.42592068092,1915.421716808011 -13090,16166,29486,29487,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.675561447613254,7.75746613606834,0,39,-7,-82.88289456226759,0,2,3,2019,7,0,40,37,1,0,0,6.663340923691507,6.663340923691507,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52.03,39.57,5,1,1,0,0,11,1,3,1,785,327447.5814412085,29540.76674948811,230453.9498682093,0,1522.517204694234 -13090,16166,29487,29486,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,38,7,-104.3867999637094,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.15865276376394,0,52.03,39.57,54.96,53.17,6.666666666666667,1,1,0,0,11,1,3,1,785,327447.5814412085,29540.76674948811,230453.9498682093,0,1522.517204694234 -13091,16167,29488,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.862052800247313,7.944313553545213,0,0,-1026.183456270247,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.673790731108387,7.736419156217262,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,1,3,1,1446,661682.1869078396,513163.7534735394,287494.3530881839,0,2715.689108800172 -13092,16168,29489,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-860.6703672252606,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.42280050396535,0,0,1,1,0,0,0,68.48999999999999,18.65,-9,-9,10,1,1,0,0,0,12,1,1,258,-87667.87989540565,0,0,0,509.0532633305485 -13093,16169,29490,-9,29492,29495,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.917507273289,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13093,16169,29491,-9,29492,29495,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.4976550846596,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13093,16169,29492,29495,-9,-9,1,0,36,1,4,0,1,1,-9,0,1,0,0,0,12,-5,-174.3155029922216,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.93,31.73,47.78,36.16,3.333333333333333,2,3,0,0,0,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13093,16169,29493,-9,29492,29495,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-833.5024784139661,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13093,16169,29494,-9,29492,29495,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-841.8245829502039,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13093,16169,29495,29492,-9,-9,1,1,41,1,4,0,3,3,-9,0,2,7.287658336325073,7.417935088367457,0,8,5,-119.0138662377297,-9,-9,-9,2019,9,0,35,0,1,0,0,6.142674685087073,6.142674685087073,0,0,0,0,0,1,1,0,0,0,47.78,36.16,49.93,31.73,5,2,3,0,0,1,12,2,1,382.3333333333333,56495.84962134879,83049.04930863091,0,0,1694.928375883615 -13094,16170,29496,29498,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.28544848932049,8.207501047616779,0,10,0,39.68054895580465,0,3,3,2019,5,0,23,23,1,0,0,15.71420314466616,15.71420314466616,0,0,0,0,0,1,1,0,.0489362120193119,0,57.06,57.76,51.94,55.88,8.333333333333334,1,1,0,0,11,12,5,1,1069.5,215726.2463926073,33701.677129417,132133.4678644729,250.5879623339979,4132.235368404185 -13094,16170,29497,-9,29496,29498,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.454151600149,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1069.5,215726.2463926073,33701.677129417,132133.4678644729,250.5879623339979,4132.235368404185 -13094,16170,29498,29496,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.758552422763662,8.931934679330064,0,10,0,-82.1530589908035,0,-9,-9,2019,12,0,46,52,1,0,0,18.23976344849787,18.23976344849787,0,0,0,0,0,1,1,0,0,0,51.94,55.88,57.06,57.76,6.666666666666667,1,1,0,0,11,12,5,1,1069.5,215726.2463926073,33701.677129417,132133.4678644729,250.5879623339979,4132.235368404185 -13094,16170,29499,-9,29496,29498,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.059557028052,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1069.5,215726.2463926073,33701.677129417,132133.4678644729,250.5879623339979,4132.235368404185 -13095,16171,29500,29501,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.428202820029409,7.565801024554439,0,8,0,38.53714596600078,0,3,3,2019,13,3,28,24,1,3,0,7.429698568903984,7.429698568903984,0,0,0,0,7,1,1,0,0,0,48.82,47.62,59.07,37.52,8.333333333333334,1,1,0,0,8,1,3,1,1089,786141.0231123716,432770.6821843875,206868.8600882997,0,1682.137902538194 -13095,16171,29501,29500,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.026360107439693,7.281719014060054,8,9,159.1861787391531,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.204712291798344,7.297381657571988,59.07,37.52,48.82,47.62,5,1,1,0,0,0,1,3,1,1089,786141.0231123716,432770.6821843875,206868.8600882997,0,1682.137902538194 -13096,16172,29502,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.471115483082,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1025,60601.58405342036,0,0,0,1015.551448441716 -13096,16173,29503,-9,29502,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1017.224412319618,0,3,-9,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,62.91,21.31,-9,-9,5,1,1,0,0,0,4,1,1,506,177327.7320942527,0,151367.0127802842,0,1152.818314084895 -13097,16174,29504,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.398755702565683,6.140919804433119,0,0,-1139.712168029313,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.7630668096854,0,0,1,1,0,0,6.156052934254951,63.81,35.6,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,3293,-61217.75668000069,117481.3224503357,95434.04420614519,0,1103.064636810761 -13098,16175,29505,29508,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.12917217360031,9.158139730263928,0,5,-3,16.25636056763025,0,2,3,2019,8,0,48,70,1,0,0,28.39894314779098,28.39894314779098,0,0,0,0,0,1,1,0,0,0,51.83,57.2,61.19,42.1,8.333333333333334,1,1,0,0,8,9,5,1,487.75,719117.2939558814,492628.447880242,413008.7045049688,249995.8528341102,5037.111512897641 -13098,16175,29506,-9,29508,29505,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.7436020030848,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,9,5,1,487.75,719117.2939558814,492628.447880242,413008.7045049688,249995.8528341102,5037.111512897641 -13098,16175,29507,-9,29508,29505,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.1041079909352,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,9,5,1,487.75,719117.2939558814,492628.447880242,413008.7045049688,249995.8528341102,5037.111512897641 -13098,16175,29508,29505,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.633541407372565,7.849478727693577,0,5,3,-11.76210835291936,0,1,2,2019,5,0,22,17,1,0,0,16.26718974716446,16.26718974716446,0,0,0,0,0,1,1,0,1.92784081741205,0,61.19,42.1,51.83,57.2,8.333333333333334,1,1,0,0,6,9,5,1,487.75,719117.2939558814,492628.447880242,413008.7045049688,249995.8528341102,5037.111512897641 -13099,16176,29509,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-855.4083586941979,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.52,41.95,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,578,184759.6744954162,0,157399.4342876255,0,605.3772800954503 -13100,16177,29510,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1166.233922458983,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.7,39.97,-9,-9,8.333333333333334,1,1,0,0,2,13,1,0,2787,0,0,0,0,1184.789163003271 -13101,16178,29511,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.905886660838117,8.73970750535155,0,0,0,-1058.422948314563,0,1,2,2019,5,0,43,43,1,0,0,12.83367620925859,12.83367620925859,0,0,0,0,0,0,0,0,4.491242488714838,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,2100,125714.2499628318,172463.9632543962,0,0,1526.398657113266 -13102,16179,29512,29515,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.697621574205729,8.168667719721615,0,4,0,163.141899202507,0,3,3,2019,12,1,70,70,1,1,0,4.595559273599206,4.595559273599206,0,0,0,0,0,0,0,0,.5075308720045765,0,31.3,51.93,37.52,52.14,6.666666666666667,1,1,0,0,12,6,3,1,1222.25,-75843.87662668561,30683.55876999096,0,0,2949.922296184684 -13102,16179,29513,-9,29515,29512,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.103128184468,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,3,1,1222.25,-75843.87662668561,30683.55876999096,0,0,2949.922296184684 -13102,16179,29514,-9,29515,29512,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.3057308976425,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,3,1,1222.25,-75843.87662668561,30683.55876999096,0,0,2949.922296184684 -13102,16179,29515,29512,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,0,0,0,4,0,72.11627842311145,0,1,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.954139908211294,0,37.52,52.14,31.3,51.93,8.333333333333334,2,3,0,0,0,6,3,1,1222.25,-75843.87662668561,30683.55876999096,0,0,2949.922296184684 -13103,16180,29516,29517,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,9.079482960633406,9.018855887671208,0,8,4,-105.3845261125367,0,-9,-9,2019,11,3,41,38,1,3,0,22.47503922975832,22.47503922975832,0,0,0,0,0,1,1,0,0,0,51.83,57.2,35.79,44.37,8.333333333333334,1,1,0,0,6,12,5,1,400.6666666666667,138375.7598480198,191672.7670025292,199297.8726644568,142018.582093156,2471.46138899833 -13103,16180,29517,29516,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,5.913262880273314,5.917756862221331,0,8,-4,57.48372084677505,0,2,2,2019,20,8,4,6,1,8,0,11.30688733433868,11.30688733433868,0,0,0,0,0,1,1,0,0,0,35.79,44.37,51.83,57.2,8.333333333333334,1,1,0,0,9,12,5,1,400.6666666666667,138375.7598480198,191672.7670025292,199297.8726644568,142018.582093156,2471.46138899833 -13103,16180,29518,-9,29517,29516,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1139.823424625959,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,400.6666666666667,138375.7598480198,191672.7670025292,199297.8726644568,142018.582093156,2471.46138899833 -13104,16181,29519,29520,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,0,0,0,20,-1,8.306133872760675,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.6,49.26,54.1,59.11,1.666666666666667,1,1,0,0,1,2,5,1,1014.25,597316.5169516343,372958.2806707644,462374.820580006,298543.3507201315,4990.327968544457 -13104,16181,29520,29519,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.552465411025738,9.513629682126082,0,20,1,30.55112198205636,0,2,3,2019,3,1,55,60,1,1,0,27.78218604597931,27.78218604597931,0,0,0,0,0,0,0,0,0,0,54.1,59.11,60.6,49.26,8.333333333333334,1,1,0,0,10,2,5,1,1014.25,597316.5169516343,372958.2806707644,462374.820580006,298543.3507201315,4990.327968544457 -13104,16181,29521,-9,29519,29520,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.00249067517,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,5,1,1014.25,597316.5169516343,372958.2806707644,462374.820580006,298543.3507201315,4990.327968544457 -13104,16181,29522,-9,29519,29520,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.151453208729,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1014.25,597316.5169516343,372958.2806707644,462374.820580006,298543.3507201315,4990.327968544457 -13105,16182,29523,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,7.186463528206568,7.162602552628874,6.518651562121055,0,0,-941.6741326204351,0,3,-9,2019,18,6,24,21,1,6,0,4.697676583747072,4.697676583747072,0,0,0,0,0,1,1,0,6.700996695961368,6.646215781182475,46.33,30.41,-9,-9,5,1,1,0,0,13,10,3,1,487,130423.4550460474,23523.83462224343,0,0,859.4916151752961 -13106,16183,29524,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,0,0,-988.4124663857627,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,-9,-9,7,2,3,1,0,0,8,1,1,620,-100174.5955820209,0,0,0,471.8644692702283 -13107,16184,29525,-9,29531,29530,1,0,15,1,5,1,3,0,-9,0,4,0,0,0,0,0,-918.3683821212226,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29526,-9,29531,29530,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-964.6016722922731,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29527,-9,29531,29530,1,0,17,1,5,1,2,0,0,0,1,0,0,0,0,0,-994.9612941984759,-9,2,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,31.19,45.59,-9,-9,10,2,3,0,0,1,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29528,-9,29531,29530,1,0,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-865.7226551442932,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29529,-9,29531,29530,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1107.579383161585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29530,29531,-9,-9,1,1,42,1,5,0,2,2,-9,0,2,7.711320014189293,7.315496796390719,0,23,4,109.6655622959196,-9,-9,-9,2019,10,1,48,0,1,1,0,5.814744742898482,5.814744742898482,0,0,0,0,0,1,0,1,0,0,40.33,47.18,49,56,3.333333333333333,2,3,0,0,4,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13107,16184,29531,29530,-9,-9,1,0,38,1,5,0,2,2,-9,0,4,0,0,0,7,-4,-24.95535913050958,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,56,40.33,47.18,7,2,3,0,0,0,4,2,1,741.8571428571429,10697.72323502995,2680.922826710076,143752.2067256733,86033.09653335565,2223.037490635086 -13108,16185,29532,29533,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.726916913371291,8.92340380034733,0,5,-4,-75.25385590939017,0,2,2,2019,12,0,50,92,1,0,0,16.77899646106038,16.77899646106038,0,0,0,0,0,0,0,0,0,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,0,1275,196688.4121232049,177265.3227123063,264153.6989078283,142033.8338744733,4138.917885652787 -13108,16185,29533,29532,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.260720758655182,8.017862593875094,0,5,4,136.7603586963055,0,-9,-9,2019,6,0,40,42,1,0,0,8.135780808513621,8.135780808513621,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,11,12,5,0,1275,196688.4121232049,177265.3227123063,264153.6989078283,142033.8338744733,4138.917885652787 -13109,16186,29534,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,9.050257631057644,9.22814504734518,0,0,0,-1018.919081905861,0,2,2,2019,15,3,50,96,1,3,0,19.02651570145045,19.02651570145045,0,0,0,0,0,0,0,0,3.828241460890267,0,41.46,51.97,-9,-9,6.666666666666667,1,1,0,0,11,2,5,0,243,365536.6254870007,300446.8882106016,0,0,2407.22976364062 -13110,16187,29535,29537,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.184729332238078,8.120303619420564,0,7,4,38.01565344106691,0,-9,-9,2019,9,0,39,51,1,0,0,9.391964275799205,9.391964275799205,0,0,0,0,0,1,1,0,0,0,63.38,50.77,46.16,58.62,8.333333333333334,1,1,0,0,9,4,3,0,318.3333333333333,15413.63601444384,44776.04776365657,0,0,1667.603316489967 -13110,16187,29536,-9,29537,29535,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.9882243271015,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,318.3333333333333,15413.63601444384,44776.04776365657,0,0,1667.603316489967 -13110,16187,29537,29535,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,6.888390709297806,6.804247619212387,0,7,-4,104.3218550116603,0,3,3,2019,12,0,16,0,1,0,0,6.25171697060241,6.25171697060241,0,0,0,0,0,1,1,0,0,0,46.16,58.62,63.38,50.77,8.333333333333334,1,1,0,0,9,4,3,0,318.3333333333333,15413.63601444384,44776.04776365657,0,0,1667.603316489967 -13111,16188,29538,29539,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.192259333431509,7.155458105759098,0,10,0,73.20732264898702,0,-9,-9,2019,10,0,12,12,1,0,0,11.10416979318314,11.10416979318314,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.79,50.48,5,1,1,0,0,5,4,4,0,809.5,298752.5995734319,165884.1503968772,119622.9507595173,64680.02234155082,2028.347186047743 -13111,16188,29539,29538,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.347418680279112,8.396495769335274,0,28,0,-100.270043346126,0,3,2,2019,7,0,40,-9,1,0,0,11.78051685356148,11.78051685356148,0,0,0,0,0,0,0,0,0,0,51.79,50.48,49.04,55.86,6.666666666666667,1,1,0,0,10,4,4,0,809.5,298752.5995734319,165884.1503968772,119622.9507595173,64680.02234155082,2028.347186047743 -13111,16189,29540,-9,29538,29539,1,0,21,0,0,0,2,2,1,0,4,7.501974057054209,7.538242052862481,0,0,0,-1018.518108312025,-9,2,3,2019,10,0,35,0,1,0,1,6.70421451866129,6.70421451866129,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,4,4,3,0,3254,-33383.40026157294,0,0,0,1202.874611528757 -13112,16190,29541,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.697871537330104,7.905757654935928,0,0,-1008.992900958668,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.312690254314764,7.614737255678921,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,113,651664.5228756851,374347.6076621709,232241.1233761925,0,2549.529917653043 -13113,16191,29542,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.121644665566533,8.016625624684099,0,0,0,-966.6363881960407,0,2,3,2019,7,0,38,36,1,0,0,8.734504548217888,8.734504548217888,0,0,0,0,27,0,0,0,0,0,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,956,164908.840350374,95429.30669142689,0,0,1791.362720981802 -13114,16192,29543,-9,29545,29544,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.811566314264,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,10,4,0,960.6666666666666,293516.0021685965,167029.5850292672,412439.4906060991,188908.030238789,2187.881236147939 -13114,16192,29544,29545,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.541402215659511,8.04271495956243,0,4,2,-97.84922224734035,0,-9,-9,2019,4,0,58,40,1,0,0,8.436012350234805,8.436012350234805,0,0,0,0,0,1,1,0,0,0,48.45,57.21,46.63,59.72,8.333333333333334,1,1,0,0,8,10,4,0,960.6666666666666,293516.0021685965,167029.5850292672,412439.4906060991,188908.030238789,2187.881236147939 -13114,16192,29545,29544,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,7.503497541689337,7.575222423108691,0,4,-2,215.2155648605905,0,2,1,2019,9,0,29,28,1,0,0,6.667344546073821,6.667344546073821,0,0,0,0,0,1,1,0,0,0,46.63,59.72,48.45,57.21,8.333333333333334,1,1,0,0,6,10,4,0,960.6666666666666,293516.0021685965,167029.5850292672,412439.4906060991,188908.030238789,2187.881236147939 -13115,16193,29546,-9,29548,29547,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.780492215451,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,684.25,207187.080428229,2142.662299378626,258130.091602191,132878.8863833211,2180.567236507314 -13115,16193,29547,29548,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,8.409717433831961,8.476602759237467,0,15,2,-34.23272376598527,0,2,2,2019,18,6,50,50,1,6,0,10.37863785963934,10.37863785963934,0,0,0,0,0,1,1,0,0,0,44.19,56.73,33.91,54.77,6.666666666666667,1,1,0,0,10,6,3,0,684.25,207187.080428229,2142.662299378626,258130.091602191,132878.8863833211,2180.567236507314 -13115,16193,29548,29547,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,0,0,0,15,-2,-132.0207985731383,0,2,2,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.91,54.77,44.19,56.73,8.333333333333334,1,1,1,0,0,6,3,0,684.25,207187.080428229,2142.662299378626,258130.091602191,132878.8863833211,2180.567236507314 -13115,16193,29549,-9,29548,29547,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.1567397352463,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,684.25,207187.080428229,2142.662299378626,258130.091602191,132878.8863833211,2180.567236507314 -13116,16194,29550,-9,29553,29551,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.962287736655,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,305,709279.3352050174,137579.8120925597,670587.3904266322,117314.3743114785,3949.225532179653 -13116,16194,29551,29553,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.953384482714053,8.807130213032837,0,16,4,-4.706019127172326,0,2,2,2019,7,0,46,45,1,0,0,17.0309248764192,17.0309248764192,0,0,0,0,0,1,1,0,0,0,54.72,46.41,57.33,53.46,6.666666666666667,1,1,0,0,13,9,5,1,305,709279.3352050174,137579.8120925597,670587.3904266322,117314.3743114785,3949.225532179653 -13116,16194,29552,-9,29553,29551,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6456084928539,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,305,709279.3352050174,137579.8120925597,670587.3904266322,117314.3743114785,3949.225532179653 -13116,16194,29553,29551,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.153946768932574,8.407988582566995,2.799707535621007,16,-4,34.42611029141194,0,1,2,2019,5,0,47,48,1,0,0,9.583416946028601,9.583416946028601,0,0,0,0,0,1,1,0,3.122080642034838,0,57.33,53.46,54.72,46.41,8.333333333333334,1,1,0,0,13,9,5,1,305,709279.3352050174,137579.8120925597,670587.3904266322,117314.3743114785,3949.225532179653 -13117,16195,29554,29555,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.524844940925142,8.194913823290639,0,6,0,-134.2794012774469,0,-9,-9,2019,9,0,37,37,1,0,0,13.92637702206898,13.92637702206898,0,0,0,0,0,0,0,0,0,0,57.33,53.46,31.52,49.14,8.333333333333334,1,1,0,0,7,13,5,1,1150.5,48245.65880951144,-33551.91258908738,0,0,3629.179926863161 -13117,16195,29555,29554,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.443466534649851,8.307794463397357,0,6,0,-20.79560292647579,0,2,2,2019,13,2,38,38,1,2,0,14.42057765063924,14.42057765063924,0,0,0,0,0,0,0,0,2.175396718155302,0,31.52,49.14,57.33,53.46,8.333333333333334,1,1,0,0,11,13,5,1,1150.5,48245.65880951144,-33551.91258908738,0,0,3629.179926863161 -13118,16196,29556,29557,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,7.783455691109927,7.430975977362461,3,0,-6.874163928347969,-9,-9,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.130335973704132,7.170357782893699,60.13,49.27,52.18,48.96,8.333333333333334,1,1,0,0,8,12,4,1,793.5,1297725.812784646,1162288.663471369,135615.118062794,0,2022.440456005683 -13118,16196,29557,29556,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.454222797507994,7.858025825770646,7.146860718499644,37,0,67.00768699322545,0,2,2,2019,10,1,23,23,1,1,0,8.722440148662868,8.722440148662868,0,0,0,0,0,0,0,0,2.874702635567544,7.194052534631417,52.18,48.96,60.13,49.27,6.666666666666667,1,1,0,0,10,12,4,1,793.5,1297725.812784646,1162288.663471369,135615.118062794,0,2022.440456005683 -13119,16197,29558,29559,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,7,0,-187.8851353240966,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.68,56.78,49,48,5,1,1,1,0,8,13,3,1,713.5,468538.8422064468,314995.3364446554,145391.897173739,1553.504165246357,1625.591717944312 -13119,16197,29559,29558,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.700291099327742,8.016973829870784,0,7,0,98.90232315672792,0,2,2,2019,11,0,40,40,1,2,0,7.779566643459383,7.779566643459383,0,0,0,0,0,1,1,0,0,0,49,48,59.68,56.78,7,1,1,0,0,1,13,3,1,713.5,468538.8422064468,314995.3364446554,145391.897173739,1553.504165246357,1625.591717944312 -13120,16198,29560,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.929896311166685,8.584802451405491,0,0,0,-1061.299988315775,0,3,3,2019,6,0,40,40,1,0,0,13.39443236515854,13.39443236515854,0,0,0,0,0,1,1,0,7.279972978102872,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,2,5,1,2114,139119.0277397613,6257.453639375402,101228.7335110979,104636.1224963557,2919.874095986264 -13120,16198,29561,-9,29560,-9,1,1,16,0,0,1,2,0,-9,0,4,0,7.157679851187878,7.218643339196252,0,0,-1041.923582549603,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,6.734141033859575,0,43.92,59.79,-9,-9,8.333333333333334,2,3,0,0,0,2,5,1,2114,139119.0277397613,6257.453639375402,101228.7335110979,104636.1224963557,2919.874095986264 -13120,16199,29562,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-968.2407976844174,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,2692,-152665.5905837831,0,0,0,0 -13120,16200,29563,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,5.965039640296292,6.113791140191332,0,0,-1002.903343726516,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.386388263969131,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,1062,264920.955506998,-48923.99009182875,0,0,-418.9619808153296 -13121,16201,29564,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.700943828943794,8.600517534544997,0,0,0,-1030.859558361195,0,2,2,2019,16,5,30,0,1,5,0,28.63648136911387,28.63648136911387,0,0,0,0,0,0,0,0,5.020086711539003,0,30.67,65.95,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,669,710026.395417903,33025.62543231864,594760.326149429,0,3223.154475595104 -13122,16202,29565,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.349463159995871,7.453885354517704,0,0,0,-790.4014706422336,0,-9,-9,2019,12,0,30,30,1,0,0,8.73559754566978,8.73559754566978,0,0,0,0,0,1,1,0,0,0,41.08,58.41,-9,-9,3.333333333333333,1,1,0,0,10,10,3,0,251,113652.6493856189,173668.0338087502,72419.22123284957,0,664.2400383951267 -13123,16203,29566,29567,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,17,7,0,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.61,50.91,60.69,53.18,0,1,1,0,0,8,11,1,1,309.5,3188.705400175597,0,115874.9761563283,28836.37172515812,0 -13123,16203,29567,29566,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,0,0,17,-7,0,-9,2,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,0,0,60.69,53.18,62.61,50.91,6.666666666666667,1,1,0,0,8,11,1,1,309.5,3188.705400175597,0,115874.9761563283,28836.37172515812,0 -13123,16204,29568,-9,29566,29567,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-999.9815018949788,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,305,-67320.35957243701,0,0,0,852.6748846662356 -13124,16205,29569,-9,-9,-9,1,0,61,0,0,0,1,1,-9,1,2,0,0,0,0,0,-906.7605137086543,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.45,27.09,-9,-9,3.333333333333333,4,2,0,0,0,4,1,0,1728,540411.3843146204,197061.6167042459,392452.7097488273,34926.61236428656,849.6960829532555 -13125,16206,29570,-9,-9,-9,1,0,40,0,0,0,3,3,-9,1,2,0,0,0,0,0,-931.2890812990004,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,31.75,35.6,-9,-9,3.333333333333333,1,1,1,1,0,5,1,0,770,-47618.50749815243,0,0,0,771.7478734650474 -13126,16207,29571,-9,29572,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1192.752773747915,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,1654,40572.35968119487,13611.82966683343,0,0,3729.292591439227 -13126,16207,29572,29573,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,7.122153907792809,7.124456079820709,5.615274252482493,2,-2,-7.8217837016938,-9,-9,-9,2019,7,0,20,0,1,0,0,5.494854554224191,5.494854554224191,0,0,0,0,0,1,1,0,5.320198116659106,0,44.93,52.93,48.87,58.55,10,1,1,0,0,0,7,4,0,1654,40572.35968119487,13611.82966683343,0,0,3729.292591439227 -13126,16207,29573,29572,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.665371503775175,8.639832103233335,0,2,2,-67.53417072356709,0,2,2,2019,6,0,48,48,1,0,0,11.48224287882303,11.48224287882303,0,0,0,0,0,1,1,0,4.008237667839789,0,48.87,58.55,44.93,52.93,6.666666666666667,1,1,0,0,10,7,4,0,1654,40572.35968119487,13611.82966683343,0,0,3729.292591439227 -13127,16208,29574,29575,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.327368298083919,7.02866719180329,8,-2,147.285800045331,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.665048901408233,50.21,47.07,68.48999999999999,18.65,8.333333333333334,1,1,0,0,4,13,3,1,707.5,1012795.160605845,488580.8781164419,398156.0650616683,0,2282.124022112492 -13127,16208,29575,29574,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.049379063910505,7.210191720293186,8,2,-118.9476467952294,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.822394071577738,7.18166798638824,68.48999999999999,18.65,50.21,47.07,8.333333333333334,1,1,0,0,0,13,3,1,707.5,1012795.160605845,488580.8781164419,398156.0650616683,0,2282.124022112492 -13128,16209,29576,-9,29577,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.711024823996,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,492,83495.15862151363,0,114048.0800453978,83060.83097595723,1603.045995838198 -13128,16209,29577,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.847049663984181,7.770618007349221,0,0,0,-866.1213705576101,0,2,2,2019,6,0,30,42,1,0,0,10.12834313628424,10.12834313628424,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,492,83495.15862151363,0,114048.0800453978,83060.83097595723,1603.045995838198 -13128,16209,29578,-9,29577,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.979518056881,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,492,83495.15862151363,0,114048.0800453978,83060.83097595723,1603.045995838198 -13129,16210,29579,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,7.27589941444335,7.077223834777062,0,0,-1092.78200488001,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.193136090122138,7.089544808221673,54.39,15.72,-9,-9,5,1,1,0,0,0,11,3,1,2275,422469.3887540262,195433.2455904899,252564.3402065673,0,1831.323137774727 -13130,16211,29580,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.198502224120995,8.17388725537425,0,0,0,-908.3248297871986,0,-9,-9,2019,22,10,37,41,1,10,0,11.61448084739229,11.61448084739229,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,6,7,4,0,1493,113830.9712153617,0,0,0,887.1327540902583 -13131,16212,29581,-9,29582,29583,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.7000480768095,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,436.5,37466.72577379431,59329.03766003856,0,0,3451.632648289978 -13131,16212,29582,29583,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.070781768400459,6.195198972985696,0,5,-2,-40.25843398416954,0,2,2,2019,10,0,10,0,1,0,0,4.163843962641311,4.163843962641311,0,0,0,0,0,1,1,0,0,0,59.29,49.68,50.05,55.41,6.666666666666667,1,1,0,0,4,9,3,0,436.5,37466.72577379431,59329.03766003856,0,0,3451.632648289978 -13131,16212,29583,29582,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.275230969403841,8.316040144851101,0,5,2,38.26288912734846,0,-9,-9,2019,10,0,40,37,1,0,0,15.30704586127569,15.30704586127569,0,0,0,0,0,1,1,0,8.419136788830018,0,50.05,55.41,59.29,49.68,8.333333333333334,1,1,0,0,5,9,3,0,436.5,37466.72577379431,59329.03766003856,0,0,3451.632648289978 -13131,16212,29584,-9,29582,29583,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.291664810106,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,436.5,37466.72577379431,59329.03766003856,0,0,3451.632648289978 -13132,16213,29585,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.553254250084954,7.763453501933089,0,0,-983.3307506571239,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,0,0,0,0,7.587993761147377,54.21,45.2,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,316,-35267.26557338277,-74258.61425456051,0,0,971.122093618448 -13133,16214,29586,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.984039729083714,8.036890957438022,0,0,0,-1110.017387137905,0,-9,-9,2019,11,4,40,40,1,4,0,11.00377342066323,11.00377342066323,0,0,0,0,0,0,0,0,6.894189053099567,0,50.44,56.66,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,45,-75774.31127064768,0,0,0,2129.165362361751 -13133,16215,29587,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.498712823705292,8.313180158038511,0,0,0,-1018.255447578784,0,-9,-9,2019,5,1,45,48,1,1,0,9.809587804480698,9.809587804480698,0,0,0,0,0,0,0,0,1.130366288449681,0,45.06,60.17,-9,-9,8.333333333333334,1,1,0,0,4,4,4,1,634,212707.7640950333,0,0,0,2052.116984692166 -13134,16216,29588,29589,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.081033022647212,8.130567904153889,0,10,-18,90.55159297489578,0,3,2,2019,8,0,20,20,1,0,0,22.5337469833862,22.5337469833862,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,48,37,8.333333333333334,1,1,0,0,11,13,3,1,340,1147641.967429033,688183.277256016,371808.1058785182,0,2159.79718177936 -13134,16216,29589,29588,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,10,18,-36.3583333974593,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.026140806907791,0,48,37,57.06,57.76,6,1,1,0,0,0,13,3,1,340,1147641.967429033,688183.277256016,371808.1058785182,0,2159.79718177936 -13135,16217,29590,29591,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.49158115981119,8.532179417751982,0,9,-6,114.3861061706167,0,3,3,2019,6,0,42,40,1,0,0,14.67070006277586,14.67070006277586,0,0,0,0,0,0,0,0,0,0,33.79,61.63,58.32,50.22,8.333333333333334,1,1,0,0,10,2,5,1,708,256642.3972723833,91354.37538959872,218983.3286136007,73420.92877314481,3148.312543677353 -13135,16217,29591,29590,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.116044919280963,8.219279503499676,0,9,6,51.1602098186229,0,3,2,2019,8,0,39,39,1,0,0,11.63063143772219,11.63063143772219,0,0,0,0,0,0,0,0,0,0,58.32,50.22,33.79,61.63,6.666666666666667,1,1,0,0,10,2,5,1,708,256642.3972723833,91354.37538959872,218983.3286136007,73420.92877314481,3148.312543677353 -13135,16218,29592,-9,29590,29591,1,0,24,0,0,0,1,1,-9,0,4,7.675055579181714,7.736318906112181,0,0,0,-1012.277612007806,0,1,2,2019,20,9,24,20,1,9,1,8.018454358459701,8.018454358459701,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,8.333333333333334,1,1,0,0,1,2,3,1,538,29192.57226442447,-78601.13961211829,0,0,1498.191350786221 -13135,16219,29593,-9,29590,29591,1,0,23,0,0,1,1,0,0,0,5,0,6.579504182074494,6.577251274434564,0,0,-1020.544696960321,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.031892908012384,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,837,-65745.90254321607,0,0,0,266.4925740847745 -13136,16220,29594,-9,29597,29595,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.186327762623,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,710.25,105424.7654005066,38375.42923787847,0,0,2726.788609101056 -13136,16220,29595,29597,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,6.745764303686288,6.82546052462968,0,2,5,16.37107134589205,-9,-9,-9,2019,11,0,16,0,1,0,0,7.114806022584028,7.114806022584028,0,0,0,0,0,1,1,0,0,0,46.15,53.24,45.17,56.33,10,1,1,0,0,6,9,3,0,710.25,105424.7654005066,38375.42923787847,0,0,2726.788609101056 -13136,16220,29596,-9,29597,29595,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.8720258801089,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,710.25,105424.7654005066,38375.42923787847,0,0,2726.788609101056 -13136,16220,29597,29595,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.422090141218134,7.883211878159172,0,2,-5,-68.94334046725771,0,-9,-9,2019,12,0,16,22,1,0,0,18.43216952457078,18.43216952457078,0,0,0,0,0,1,1,0,0,0,45.17,56.33,46.15,53.24,5,1,1,0,0,8,9,3,0,710.25,105424.7654005066,38375.42923787847,0,0,2726.788609101056 -13137,16221,29598,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-995.7300203195471,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,25.7,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,678,-11881.47484072018,0,0,0,2797.943225136498 -13138,16222,29599,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.298118929009594,7.204070713414554,0,0,0,-896.9106551460477,0,3,3,2019,6,0,50,25,1,0,0,4.284505655459892,4.284505655459892,0,0,0,0,0,0,0,0,0,0,50.45,57.75,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,382,427514.786557096,0,332878.8353547188,5434.706710106319,812.9835658882209 -13139,16223,29600,29602,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.019114515570019,8.34232273675055,0,4,1,-108.6010859137463,0,-9,-9,2019,6,0,42,52,1,0,0,9.631932677398428,9.631932677398428,0,0,0,0,0,1,1,0,0,0,52.08,55.93,54.37,54.8,8.333333333333334,1,1,0,0,10,12,3,0,2089.5,-2350.76461120716,59020.00355649114,0,0,1760.306858792635 -13139,16223,29601,-9,29602,29600,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.1245138785041,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,2089.5,-2350.76461120716,59020.00355649114,0,0,1760.306858792635 -13139,16223,29602,29600,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,3.839758525524837,5.048038130974404,4.1678967115796,4,-1,-45.05759420978531,0,3,2,2019,8,0,1,1,1,0,0,7.186712705093838,7.186712705093838,0,0,0,0,0,1,1,0,4.596895179841576,0,54.37,54.8,52.08,55.93,8.333333333333334,1,1,0,0,2,12,3,0,2089.5,-2350.76461120716,59020.00355649114,0,0,1760.306858792635 -13139,16223,29603,-9,29602,29600,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-805.1455543181735,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,2089.5,-2350.76461120716,59020.00355649114,0,0,1760.306858792635 -13140,16224,29604,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.340747374361629,7.158566345763998,0,0,-991.6699945415601,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.492060136893224,0,21.14771294953628,0,1,1,0,5.954969028045695,7.370960498238353,57.8,36.71,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,777,150031.6935748822,75149.37299059037,0,0,1741.097401045105 -13141,16225,29605,29606,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,1,68.07147383386901,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.03490717175598,0,58.15,52.91,61.58,43.34,10,1,1,0,0,0,4,4,1,419.5,1849192.483662417,977417.1076318978,526167.1497308798,0,3496.38257037672 -13141,16225,29606,29605,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.53740786288795,8.378879020970492,52,-1,-10.77631532864397,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.814939787683458,8.256812352188875,61.58,43.34,58.15,52.91,8.333333333333334,1,1,0,0,0,4,4,1,419.5,1849192.483662417,977417.1076318978,526167.1497308798,0,3496.38257037672 -13142,16226,29607,29610,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.766016228922695,8.634413205430535,0,14,0,88.00465352107507,-9,1,1,2019,10,0,40,0,1,1,0,15.03114214826986,15.03114214826986,0,0,0,0,0,1,1,0,3.401472817666611,0,51,57,44.41,56.75,7,2,3,0,0,1,2,5,1,369,243120.1254593108,30058.15451271303,287206.8517680453,97387.29548783442,4475.250401221219 -13142,16226,29608,-9,29610,29607,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.4416591815331,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,5,1,369,243120.1254593108,30058.15451271303,287206.8517680453,97387.29548783442,4475.250401221219 -13142,16226,29609,-9,29610,29607,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1207.81817582424,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,369,243120.1254593108,30058.15451271303,287206.8517680453,97387.29548783442,4475.250401221219 -13142,16226,29610,29607,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.740803822570133,8.560058990826954,0,14,0,88.34633099604652,0,2,1,2019,12,1,38,20,1,1,0,21.19384272898019,21.19384272898019,0,0,0,0,0,1,1,0,4.537874621015384,0,44.41,56.75,51,57,6.666666666666667,2,3,0,0,9,2,5,1,369,243120.1254593108,30058.15451271303,287206.8517680453,97387.29548783442,4475.250401221219 -13143,16227,29611,29613,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,8.833922806068413,8.88930686398197,0,8,1,-25.90991135317779,0,1,2,2019,16,4,80,120,1,4,0,9.329265449054056,9.329265449054056,0,0,0,0,0,1,1,0,8.443781502670184,0,34.24,57.44,44.32,42.87,1.666666666666667,4,2,0,0,11,7,5,0,478.6666666666667,-887.6530155525543,0,0,0,7521.713279693672 -13143,16227,29612,-9,29611,29613,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.0608631941933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,478.6666666666667,-887.6530155525543,0,0,0,7521.713279693672 -13143,16227,29613,29611,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.950050355771923,8.955974915891137,0,8,-1,58.14716336081254,0,1,2,2019,10,0,45,45,1,0,0,21.29023615539191,21.29023615539191,0,0,0,0,0,1,1,0,0,0,44.32,42.87,34.24,57.44,6.666666666666667,4,2,0,0,10,7,5,0,478.6666666666667,-887.6530155525543,0,0,0,7521.713279693672 -13144,16228,29614,-9,29615,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.417623631688,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,5,1,428.6666666666667,1168113.253708628,633250.6984185521,374196.8577292787,32815.11926016841,6536.489758429426 -13144,16228,29615,29616,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.786829448436126,8.948556541586582,0,6,-3,49.39142628620115,0,3,3,2019,9,0,60,60,1,0,0,12.18318172949314,12.18318172949314,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,10,1,1,0,0,9,2,5,1,428.6666666666667,1168113.253708628,633250.6984185521,374196.8577292787,32815.11926016841,6536.489758429426 -13144,16228,29616,29615,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.525275203824663,9.472201041519648,0,6,3,-49.71345042026004,0,3,3,2019,8,0,50,37,1,0,0,28.83298116642385,28.83298116642385,0,0,0,0,0,1,1,0,7.414910303816228,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,5,2,5,1,428.6666666666667,1168113.253708628,633250.6984185521,374196.8577292787,32815.11926016841,6536.489758429426 -13145,16229,29617,29619,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.899457846061144,7.498998711385156,0,6,0,-29.81489928193535,0,-9,-9,2019,9,0,60,50,1,1,0,4.730151178589266,4.730151178589266,0,0,0,0,0,1,1,0,1.555617827982948,0,51,56,35.19,41.01,8,4,1,0,0,1,13,2,1,1808.333333333333,7794.871659845109,0,0,0,3004.1541415923 -13145,16229,29618,-9,29619,29617,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.6456823554573,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,1808.333333333333,7794.871659845109,0,0,0,3004.1541415923 -13145,16229,29619,29617,-9,-9,1,0,41,0,2,0,2,2,-9,1,2,0,0,0,6,0,-8.103385167909197,0,2,2,2019,17,5,0,16,3,5,0,0,0,0,0,0,0,71.5,1,1,0,1.55736697685576,0,35.19,41.01,51,56,5,1,1,0,0,6,13,2,1,1808.333333333333,7794.871659845109,0,0,0,3004.1541415923 -13146,16230,29620,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.621412312777956,8.172515544320838,6.225033170303192,0,0,-1021.571693208458,0,-9,-9,2019,9,0,20,18,1,0,0,10.49741499391893,10.49741499391893,0,0,0,0,0,1,1,0,0,6.181768143546069,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,679,39145.72843878149,0,124685.0592193439,0,1813.719185797489 -13147,16231,29621,-9,29622,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.90242373109,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.5367867003768847,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,1,0,931.3333333333334,18182.25612365709,0,0,0,1864.571284966182 -13147,16231,29622,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1053.247636884441,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.6,46.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,931.3333333333334,18182.25612365709,0,0,0,1864.571284966182 -13147,16231,29623,-9,29622,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.900678354853,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,931.3333333333334,18182.25612365709,0,0,0,1864.571284966182 -13148,16232,29624,29626,-9,-9,1,1,24,1,1,0,2,2,-9,0,5,8.692247924211765,8.466276949341262,0,1,4,29.80399222417884,-9,-9,-9,2019,9,0,50,0,1,1,0,8.197907116948283,8.197907116948283,0,0,0,0,0,1,1,0,0,0,52,60,49.02,58.89,10,1,1,0,0,7,7,4,1,1308.333333333333,42361.52602942149,61666.38295188998,88700.36545332673,62991.34640209961,3380.920581268016 -13148,16232,29625,-9,29626,29624,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.840749129841,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,1308.333333333333,42361.52602942149,61666.38295188998,88700.36545332673,62991.34640209961,3380.920581268016 -13148,16232,29626,29624,-9,-9,1,0,20,1,1,0,2,2,-9,0,5,8.073800518159937,7.743777094652933,0,1,-4,23.26691712428295,0,2,2,2019,10,0,40,37,1,0,0,8.539571669999566,8.539571669999566,0,0,0,1.533662921640133,0,1,1,0,0,0,49.02,58.89,52,60,10,1,1,0,0,3,7,4,1,1308.333333333333,42361.52602942149,61666.38295188998,88700.36545332673,62991.34640209961,3380.920581268016 -13149,16233,29627,-9,-9,-9,1,0,20,1,3,0,2,2,0,0,4,0,0,0,0,0,-1120.86100977358,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,3,2,1,0,441,0,0,0,0,1516.699113306203 -13149,16234,29628,-9,-9,-9,1,0,18,1,3,0,2,2,1,0,3,0,0,0,0,0,-1144.5521436508,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,48.93,50.55,-9,-9,8.333333333333334,1,1,1,0,2,2,1,0,1701,-82832.82639464166,0,0,0,0 -13150,16235,29629,29630,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,6.533570787885505,6.475925291987776,35,4,-84.54830040384772,0,3,3,2019,18,6,0,22,4,6,0,0,0,0,0,0,0,0,0,0,0,3.50787358439454,5.938542521355041,40.93,53.95,57.33,53.46,6.666666666666667,1,1,0,0,12,10,5,1,1212,746949.0631661712,474870.3012583609,196087.3115409276,0,2913.349990179555 -13150,16235,29630,29629,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.843588012528995,9.091850796886334,0,35,-4,-76.51395916977215,0,2,3,2019,7,0,45,39,1,0,0,17.91084313330359,17.91084313330359,0,0,0,0,0,0,0,0,4.9508381753262,0,57.33,53.46,40.93,53.95,8.333333333333334,1,1,0,0,11,10,5,1,1212,746949.0631661712,474870.3012583609,196087.3115409276,0,2913.349990179555 -13151,16236,29631,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.669570450933797,7.518975208227623,0,0,0,-976.4739525775308,-9,-9,-9,2019,5,0,30,0,1,0,0,8.478673684593563,8.478673684593563,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,195,71174.5142334562,16063.95407982822,0,0,816.6691103349303 -13152,16237,29632,-9,29634,29633,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1007.734491347984,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,702.5,405062.3856892114,130802.5021001483,281593.293778759,103816.8795597026,3500.562842847594 -13152,16237,29633,29634,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,7.185726191828756,7.41002160308931,0,6,4,-88.48727682565097,0,2,1,2019,12,0,70,40,1,0,0,2.486771049776709,2.486771049776709,0,0,0,0,2,1,1,0,4.221845475850995,0,56.92,46.68,50.74,49.6,8.333333333333334,1,1,0,0,8,9,4,1,702.5,405062.3856892114,130802.5021001483,281593.293778759,103816.8795597026,3500.562842847594 -13152,16237,29634,29633,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.860678726247444,8.466933182835447,0,23,-4,48.61342583013098,0,3,2,2019,10,1,20,25,1,1,0,31.837899796449,31.837899796449,0,0,0,0,27,1,1,0,2.8664328486771,0,50.74,49.6,56.92,46.68,3.333333333333333,1,1,0,0,8,9,4,1,702.5,405062.3856892114,130802.5021001483,281593.293778759,103816.8795597026,3500.562842847594 -13152,16237,29635,-9,29634,29633,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-889.8308083223864,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,702.5,405062.3856892114,130802.5021001483,281593.293778759,103816.8795597026,3500.562842847594 -13153,16238,29636,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.666640531854867,8.917859369134879,0,0,0,-1093.202382425639,0,2,2,2019,12,0,77,42,1,0,0,8.469025115750107,8.469025115750107,0,0,0,0,0,0,0,0,0,0,55.11,37.11,-9,-9,5,1,1,0,0,10,12,5,1,80,1547818.526995124,1459777.276729871,318848.5624758889,127479.9000751865,2504.459339935693 -13154,16239,29637,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,7.502415490453056,7.519083422232566,0,0,-1010.456059755951,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.28624568046828,7.536762439537199,65.23999999999999,20.33,-9,-9,5,1,1,0,0,0,9,3,0,1270,409429.2358816331,163637.742547785,166266.622052043,0,1692.907222590458 -13155,16240,29638,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.080964086338749,7.116766337119692,0,0,-1013.029836471753,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.792693179132253,7.004678922984383,63.8,46.31,-9,-9,10,1,1,0,0,0,10,2,1,177,976267.2035433633,135415.0212698053,457215.4283693908,0,908.7175865422917 -13156,16241,29639,29641,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.276341445464663,9.316677383337595,0,17,3,95.25900072520136,0,2,1,2019,13,3,48,0,1,3,0,30.37883259893785,30.37883259893785,0,0,0,0,0,1,1,0,0,0,46.83,42.54,51.1,52.08,3.333333333333333,1,1,0,0,10,2,5,0,856.75,1922807.883043884,1839576.540204502,172063.266589284,91153.49914495071,5633.781541655105 -13156,16241,29640,-9,29641,29639,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.4661936140499,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,856.75,1922807.883043884,1839576.540204502,172063.266589284,91153.49914495071,5633.781541655105 -13156,16241,29641,29639,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.627306357441404,8.53737697448879,0,17,-3,-112.0232103818539,0,2,2,2019,10,1,28,28,1,1,0,19.10069925154537,19.10069925154537,0,0,0,0,0,1,1,0,.8326760387547509,0,51.1,52.08,46.83,42.54,8.333333333333334,1,1,0,0,12,2,5,0,856.75,1922807.883043884,1839576.540204502,172063.266589284,91153.49914495071,5633.781541655105 -13156,16241,29642,-9,29641,29639,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-989.6275855654997,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,0,856.75,1922807.883043884,1839576.540204502,172063.266589284,91153.49914495071,5633.781541655105 -13157,16242,29643,29644,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.143622726795748,7.060855365568441,10,3,91.80458590376509,0,3,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1.481033683873229,6.878246440571671,50.35,47.07,43.79,54.07,6.666666666666667,1,1,0,0,10,11,2,1,575,853199.7289547171,436841.0142251521,353517.5740700056,0,1930.047617245328 -13157,16242,29644,29643,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,6.586989724642847,6.85228930115808,10,-3,87.84013927766057,0,2,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,7.369310610480261,6.381939672298524,43.79,54.07,50.35,47.07,3.333333333333333,1,1,0,0,10,11,2,1,575,853199.7289547171,436841.0142251521,353517.5740700056,0,1930.047617245328 -13157,16243,29645,-9,29643,29644,1,0,25,0,0,0,2,2,-9,0,3,8.001600036888457,8.079566838817273,0,0,0,-956.6284411565905,0,2,2,2019,12,0,40,40,1,0,0,6.863069210471481,6.863069210471481,0,0,0,0,0,0,0,0,0,0,42.02,48.45,-9,-9,5,1,1,0,0,9,11,4,1,556,78242.98161639937,-27910.95552465574,0,0,1512.270354883193 -13158,16244,29646,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.611863885897712,8.577147748025419,0,0,0,-955.0603374492454,0,3,3,2019,12,1,36,41,1,1,0,15.64578237932449,15.64578237932449,0,0,0,0,0,0,0,0,0,0,44.95,52.41,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,875,157397.5767787241,-97153.96491374291,0,0,1867.649019107437 -13159,16245,29647,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.473485695078738,7.363372530991954,0,0,-997.0305290894797,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.150026913248904,7.688409664026533,57.8,50.59,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,454,253718.2076146278,11939.31357739902,283493.0477754125,0,2296.742951664167 -13160,16246,29648,29649,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.495548586280226,7.156598479046919,35,-6,104.5219593276182,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,6.894543295333664,7.695760930214155,46.5,38.4,62.42,32.41,8.333333333333334,1,1,0,0,0,2,2,1,905,671661.913030475,483793.0229065139,101307.344732698,0,2063.921452922403 -13160,16246,29649,29648,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,35,6,80.99108542179881,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.631531756061109,0,62.42,32.41,46.5,38.4,8.333333333333334,1,1,0,0,7,2,2,1,905,671661.913030475,483793.0229065139,101307.344732698,0,2063.921452922403 -13161,16247,29650,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.636589582446349,7.447038023776371,0,0,0,-974.0286434948158,0,2,2,2019,17,5,29,32,1,5,0,7.921740056760849,7.921740056760849,0,0,0,0,0,0,0,0,0,0,28.83,55.81,-9,-9,0,1,1,0,1,11,2,3,1,1480,-12813.78631957718,102049.3390097653,0,0,866.4176035784537 -13161,16248,29651,-9,29650,-9,1,0,22,0,0,0,2,2,-9,0,3,7.048208901479538,7.287290539829371,0,0,0,-1004.084675034139,0,3,-9,2019,6,0,20,0,1,0,1,8.857252625215191,8.857252625215191,0,0,0,0,0,0,0,0,.4165976776288756,0,52,54.51,-9,-9,5,1,1,0,0,1,2,3,1,642,52070.37408836833,0,0,0,591.7908042528113 -13162,16249,29652,-9,29654,29653,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1045.466376800218,-9,2,1,2019,31,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,20.82,56.49,-9,-9,1.666666666666667,2,3,0,0,0,6,4,0,363.75,993715.8259564207,745887.6408049157,309440.7085199903,59988.98658546321,3453.00222528284 -13162,16249,29653,29654,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.526093475007592,9.080637074814438,0,18,4,2.494948250738879,0,3,3,2019,3,0,40,40,1,0,0,18.95995355229983,18.95995355229983,0,0,0,0,0,0,0,0,0,0,46.83,61,59.7,53.75,10,2,3,0,0,8,6,4,0,363.75,993715.8259564207,745887.6408049157,309440.7085199903,59988.98658546321,3453.00222528284 -13162,16249,29654,29653,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.506446634491112,7.862210978440637,0,18,-4,27.6362921660528,0,2,2,2019,6,0,24,30,1,0,0,9.17559798855272,9.17559798855272,0,0,0,0,0,0,0,0,0,0,59.7,53.75,46.83,61,10,2,3,0,0,5,6,4,0,363.75,993715.8259564207,745887.6408049157,309440.7085199903,59988.98658546321,3453.00222528284 -13162,16249,29655,-9,29654,29653,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.565011058978,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,0,363.75,993715.8259564207,745887.6408049157,309440.7085199903,59988.98658546321,3453.00222528284 -13163,16250,29656,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.181191835460453,8.192946960228547,5.856527111686858,27,0,-21.24355324309236,0,3,3,2019,7,0,98,98,1,0,0,5.176293898376993,5.176293898376993,0,0,0,0,28,1,1,0,0,5.566634657971528,53.39,44.47,48,48,8.333333333333334,1,1,0,0,11,9,4,1,1586,694387.8637840961,427156.2233467491,425289.7333977504,53530.37544410947,3282.322232010181 -13164,16251,29657,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,6.782731282579991,7.065463988032101,0,0,-1059.388386019059,0,2,1,2019,8,0,0,44,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.69245391848774,30.42,67.22,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,672,333741.4219053718,83286.22117970575,0,0,1133.479758939976 -13165,16252,29658,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.077041912383148,7.098366508353473,0,0,-1012.942874975734,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.898070338993883,6.86826527578372,44.69,42.62,-9,-9,8.333333333333334,4,2,0,0,8,8,3,0,293,245110.902134234,300746.1908117526,0,0,1291.222055039147 -13166,16253,29659,-9,29660,29662,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.9273167380939,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,5,1,442.25,392230.2479206078,248242.6152137982,255369.3843323925,130359.8960707835,4769.349466454439 -13166,16253,29660,29662,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.649651694134384,8.348233319902874,0,9,-4,-70.55329066138756,0,1,1,2019,7,0,42,22,1,0,0,14.46616800211597,14.46616800211597,0,0,0,0,0,1,1,0,1.606721717373381,0,57.36,36.98,39.77,49.15,8.333333333333334,2,3,0,0,10,2,5,1,442.25,392230.2479206078,248242.6152137982,255369.3843323925,130359.8960707835,4769.349466454439 -13166,16253,29661,-9,29660,29662,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.984961756028,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,442.25,392230.2479206078,248242.6152137982,255369.3843323925,130359.8960707835,4769.349466454439 -13166,16253,29662,29660,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.877752083571709,8.767879743875366,0,9,4,-222.3167157809071,0,2,2,2019,8,0,45,48,1,0,0,21.99934828087507,21.99934828087507,0,0,0,0,0,1,1,0,0,0,39.77,49.15,57.36,36.98,5,2,3,0,0,12,2,5,1,442.25,392230.2479206078,248242.6152137982,255369.3843323925,130359.8960707835,4769.349466454439 -13167,16254,29663,-9,29665,29666,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.1114769528449,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,907.2,423984.0271872681,180514.2804775758,362449.0771134999,141825.2596726309,3437.253074703644 -13167,16254,29664,-9,29665,29666,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-934.3630790955779,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,1,907.2,423984.0271872681,180514.2804775758,362449.0771134999,141825.2596726309,3437.253074703644 -13167,16254,29665,29666,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,6.685411066453293,6.812610359798965,0,7,5,-29.14256992576966,0,-9,3,2019,9,0,16,14,1,0,0,6.257447086399128,6.257447086399128,0,0,0,0,0,1,1,0,0,0,50.51,53.71,51,56,8.333333333333334,1,1,0,0,4,11,3,1,907.2,423984.0271872681,180514.2804775758,362449.0771134999,141825.2596726309,3437.253074703644 -13167,16254,29666,29665,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,8.834056519984928,8.478280247385211,0,7,-5,9.178543425076089,0,-9,-9,2019,9,0,60,40,1,1,0,12.82505230830216,12.82505230830216,0,0,0,0,0,1,1,0,6.787192632358504,0,51,56,50.51,53.71,8,1,1,0,0,1,11,3,1,907.2,423984.0271872681,180514.2804775758,362449.0771134999,141825.2596726309,3437.253074703644 -13167,16254,29667,-9,29665,29666,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.8546865710452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,907.2,423984.0271872681,180514.2804775758,362449.0771134999,141825.2596726309,3437.253074703644 -13168,16255,29668,-9,29669,29670,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.178404896652,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,656.5,14818900.65419194,1571890.939089299,5980382.053839462,258612.3085931104,4707.817058177396 -13168,16255,29669,29670,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,11,-1,-32.67290088258066,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.420572618987483,0,50.34,56.4,57.16,56.15,8.333333333333334,2,3,0,0,2,9,5,1,656.5,14818900.65419194,1571890.939089299,5980382.053839462,258612.3085931104,4707.817058177396 -13168,16255,29670,29669,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.549574859372111,9.618360814040754,0,11,1,178.1431846196633,0,2,1,2019,11,0,45,85,1,0,0,35.29576825157515,35.29576825157515,0,0,0,0,0,0,0,0,6.180617383812531,0,57.16,56.15,50.34,56.4,6.666666666666667,2,3,0,0,8,9,5,1,656.5,14818900.65419194,1571890.939089299,5980382.053839462,258612.3085931104,4707.817058177396 -13168,16255,29671,-9,29669,29670,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.6509162093038,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,9,5,1,656.5,14818900.65419194,1571890.939089299,5980382.053839462,258612.3085931104,4707.817058177396 -13169,16256,29672,29673,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.716010844970974,6.236940986516355,51,1,-35.24655282306053,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.774628088311817,6.104635329227877,52.46,52.76,66.37,38.36,8.333333333333334,1,1,0,0,0,5,4,1,505,1477674.234645122,521969.9957154192,472967.2232382017,0,3236.539053499276 -13169,16256,29673,29672,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.308199238167571,8.322854485908259,51,-1,-35.80865185396635,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.957574144412974,8.35695495145958,66.37,38.36,52.46,52.76,8.333333333333334,1,1,0,0,5,5,4,1,505,1477674.234645122,521969.9957154192,472967.2232382017,0,3236.539053499276 -13170,16257,29674,-9,-9,-9,1,0,42,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1124.24148065658,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,155.5,-22244.82566611088,0,103468.7340966933,19644.48633408715,1704.275712051354 -13170,16257,29675,-9,29674,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.099103264457,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,1,0,155.5,-22244.82566611088,0,103468.7340966933,19644.48633408715,1704.275712051354 -13170,16258,29676,-9,29674,-9,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-922.3211168640498,-9,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,1,0,0,8,1,0,1222,-178396.1119490318,0,0,0,0 -13170,16259,29677,-9,29674,-9,1,1,19,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.875492912811,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,0,1397,-97719.12286794535,0,0,0,124.3116276517058 -13171,16260,29678,29679,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.231994221861468,8.18618527192749,0,1,1,-41.9993497065908,-9,-9,-9,2019,13,1,39,0,1,1,0,8.004198246851809,8.004198246851809,0,0,0,0,0,0,0,0,1.673429530588564,0,55.32,41.98,40.31,50.81,3.333333333333333,1,1,0,0,2,9,5,0,561,130574.7517215512,53959.67229465004,453124.9089909757,361427.2635267987,2573.955838628478 -13171,16260,29679,29678,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.50942640202268,8.368532790875316,0,1,-1,2.670284723105042,-9,-9,-9,2019,13,2,37,0,1,2,0,15.14975761114449,15.14975761114449,0,0,0,0,0,0,0,0,1.506839018236174,0,40.31,50.81,55.32,41.98,8.333333333333334,1,1,0,0,7,9,5,0,561,130574.7517215512,53959.67229465004,453124.9089909757,361427.2635267987,2573.955838628478 -13172,16261,29680,29681,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,56,4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,.3060347362343734,0,1,1,0,2.804740529452223,0,48,37,51.83,57.2,6.666666666666667,1,1,0,0,5,7,1,1,415.5,117225.7676727036,0,0,0,1566.840960399128 -13172,16261,29681,29680,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,56,-4,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.961543819928168,0,51.83,57.2,48,37,10,1,1,0,0,10,7,1,1,415.5,117225.7676727036,0,0,0,1566.840960399128 -13173,16262,29682,-9,29685,29684,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1074.194865368751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,4,1,472.25,102645.0628781444,85211.08345907039,87151.81159315525,54673.82949199874,3394.849740116101 -13173,16262,29683,-9,29685,29684,1,0,17,0,1,0,2,2,1,0,2,0,0,0,0,0,-1072.426345531547,-9,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.501885662728132,0,42.02,46.15,-9,-9,5,1,1,0,0,1,13,4,1,472.25,102645.0628781444,85211.08345907039,87151.81159315525,54673.82949199874,3394.849740116101 -13173,16262,29684,29685,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.119356499688248,7.92143760745069,0,8,-3,-29.11862490359103,0,2,3,2019,6,0,36,38,1,0,0,10.22904582385552,10.22904582385552,0,0,0,0,0,1,1,0,0,0,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,8,13,4,1,472.25,102645.0628781444,85211.08345907039,87151.81159315525,54673.82949199874,3394.849740116101 -13173,16262,29685,29684,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.095245087149761,8.192813450496779,0,8,3,65.87761270139906,0,2,3,2019,8,0,39,39,1,0,0,12.85768764163247,12.85768764163247,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.96,53.17,6.666666666666667,1,1,0,0,8,13,4,1,472.25,102645.0628781444,85211.08345907039,87151.81159315525,54673.82949199874,3394.849740116101 -13174,16263,29686,-9,29688,29687,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1048.335295876019,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,5,1,446.6666666666667,242334.2002337384,126982.2538135201,121516.3968161008,0,4177.188571114016 -13174,16263,29687,29688,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,8.916261595982958,8.861005231598925,0,30,0,141.3825376734246,0,2,2,2019,6,0,48,48,1,0,0,17.56705246318998,17.56705246318998,0,0,0,0,2,1,1,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,446.6666666666667,242334.2002337384,126982.2538135201,121516.3968161008,0,4177.188571114016 -13174,16263,29688,29687,-9,-9,1,0,51,0,1,0,3,3,-9,0,4,7.37576649860856,7.70718551588421,0,30,0,-51.32838678431899,0,3,3,2019,10,0,25,25,1,0,0,5.883926833190618,5.883926833190618,0,0,0,0,7,1,1,0,8.096961801840058,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,7,6,5,1,446.6666666666667,242334.2002337384,126982.2538135201,121516.3968161008,0,4177.188571114016 -13175,16264,29689,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.147193132273,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,5,4,1,0,1523,31862.20059137214,0,0,0,467.5105028241844 -13175,16265,29690,-9,29689,-9,1,0,25,0,0,0,3,3,-9,1,3,0,0,0,0,0,-942.8597325059518,0,3,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,120,1,1,0,0,0,37.25,55.92,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,758,0,0,0,0,862.5099618985648 -13175,16266,29691,-9,29689,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1031.94279065919,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,-9,-9,5,1,1,1,0,0,4,1,0,713.5,0,0,0,0,821.7242776112548 -13175,16266,29692,-9,29691,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1012.817723811149,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,1,0,713.5,0,0,0,0,821.7242776112548 -13176,16267,29693,29694,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.345896529136743,6.706921494596263,8,3,.4995393904235621,0,3,3,2019,22,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.305955990427383,6.381442840106698,58.4,34.15,55.77,47.78,6.666666666666667,1,1,0,0,0,13,2,1,1734.5,161730.0081413825,161263.5540840109,0,0,1659.033361797159 -13176,16267,29694,29693,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.781229704871733,4.735800607053684,8,-3,-71.17052350872973,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,5.243382943490261,4.811135704378148,55.77,47.78,58.4,34.15,6.666666666666667,1,1,0,0,0,13,2,1,1734.5,161730.0081413825,161263.5540840109,0,0,1659.033361797159 -13177,16268,29695,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.089473071845615,7.460702829116103,0,0,-984.0923000997585,-9,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,4.880037759168336,6.999233501640178,53,45,-9,-9,8,1,1,0,0,0,10,3,1,251,408021.2467396632,80961.22898124589,283276.6718854532,0,1683.673323284091 -13178,16269,29696,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.853789135838532,8.129767823949768,6.824327590132531,0,0,-959.5793550051006,-9,2,1,2019,5,0,20,0,1,0,0,18.29906344679413,18.29906344679413,0,0,0,0,0,0,0,0,0,7.574649658764034,59.43,58.05,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,736,-172463.3678610178,36084.15031819359,0,0,2006.692840537646 -13179,16270,29697,29698,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,6.605043231534252,6.780681994339949,32,0,83.06804233776822,0,1,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,6.305950642420431,0,25.83,22.39,43.06,18.67,0,2,3,0,0,0,12,2,0,1071.333333333333,29263.91258314903,-12068.27691372047,0,0,2469.068927239519 -13179,16270,29698,29697,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,32,9,-16.17284435575205,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,18.67,25.83,22.39,1.666666666666667,1,1,0,0,8,12,2,0,1071.333333333333,29263.91258314903,-12068.27691372047,0,0,2469.068927239519 -13179,16270,29699,-9,29697,29698,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1084.260695636479,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,1071.333333333333,29263.91258314903,-12068.27691372047,0,0,2469.068927239519 -13180,16271,29700,-9,29701,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.4168153800238,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,386,12612.8424629178,1237.127925951609,0,0,3623.388066272863 -13180,16271,29701,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.940469543807705,9.244281257602946,5.884465260853026,0,0,-1092.368470808907,0,2,2,2019,8,0,40,40,1,0,0,21.30899327475233,21.30899327475233,0,0,0,0,0,1,1,0,6.791729984157654,0,49.27,55.11,-9,-9,5,3,4,0,0,6,8,5,1,386,12612.8424629178,1237.127925951609,0,0,3623.388066272863 -13181,16272,29702,29703,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.946511088409068,7.247732976391074,55,2,-174.5356085821587,0,-9,2,2019,11,2,0,0,4,2,0,0,0,1,0,15.22271173313834,0,27,1,1,0,0,7.115000279410486,31.33,24.93,37.26,22.24,3.333333333333333,1,1,0,0,0,12,2,1,567,560941.1158389773,363624.8931369798,139825.8919671318,0,1947.443164404689 -13181,16272,29703,29702,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,4.662277644899787,4.449902258560802,55,-2,50.36986804271656,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,21.89910790354821,0,42,1,1,0,4.235544648574134,4.535658634827796,37.26,22.24,31.33,24.93,8.333333333333334,1,1,0,0,5,12,2,1,567,560941.1158389773,363624.8931369798,139825.8919671318,0,1947.443164404689 -13182,16273,29704,29705,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.021112280581115,6.835050838854055,0,10,6,-41.82932748364988,0,-9,-9,2019,6,0,15,25,1,0,0,9.507982778075583,9.507982778075583,0,0,0,0,0,1,1,0,2.73331738826802,0,55.26,42.1,61.61,37.79,8.333333333333334,1,1,0,0,12,2,3,1,259.5,655644.7376619121,231625.8511300521,158863.0821386885,0,1575.519758944476 -13182,16273,29705,29704,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.747503258962921,6.845571828181182,27,-6,-93.90986658181964,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.093582016285507,6.688734244103401,61.61,37.79,55.26,42.1,8.333333333333334,1,1,0,0,10,2,3,1,259.5,655644.7376619121,231625.8511300521,158863.0821386885,0,1575.519758944476 -13183,16274,29706,-9,29709,-9,1,0,27,0,1,0,2,2,-9,0,4,8.140015426465991,8.139396381714358,0,0,0,-791.1933121348745,0,3,3,2019,11,0,40,40,1,2,1,11.50892913929039,11.50892913929039,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,4,5,0,0,5,8,4,0,563,193957.776908552,-31767.8202223828,0,0,1772.734655630783 -13183,16275,29707,29709,-9,-9,1,1,62,0,1,0,3,3,-9,0,3,7.419784264172246,7.081145746613736,0,8,12,91.01210489109887,0,-9,-9,2019,10,0,20,25,1,1,0,8.464272474106002,8.464272474106002,0,0,0,0,0,1,1,0,0,0,51,49,47,50,7,1,1,0,0,8,8,2,0,838.6666666666666,1848525.014821686,637442.9716288309,352796.5888718797,0,1008.394343318417 -13183,16275,29708,-9,29709,29707,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-962.2912177799163,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,8,2,0,838.6666666666666,1848525.014821686,637442.9716288309,352796.5888718797,0,1008.394343318417 -13183,16275,29709,29707,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.095080244155249,6.961886525553546,0,8,-12,-63.67115562937936,0,3,3,2019,12,0,15,0,1,2,0,6.973158823800432,6.973158823800432,0,0,0,0,0,1,1,0,0,0,47,50,51,49,7,4,5,0,0,0,8,2,0,838.6666666666666,1848525.014821686,637442.9716288309,352796.5888718797,0,1008.394343318417 -13184,16276,29710,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.69749228578597,8.078935767971144,6.064623824190025,0,0,-1158.988975944146,-9,-9,2,2019,27,11,41,0,1,11,0,6.860635718939974,6.860635718939974,0,0,0,0,0,1,0,1,5.583843474537225,0,16.98,65.47,-9,-9,3.333333333333333,1,1,0,0,11,4,3,0,633.3333333333334,-19044.26105504315,11186.49641700635,0,0,1601.724960744889 -13184,16276,29711,-9,29710,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.935320329661,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,633.3333333333334,-19044.26105504315,11186.49641700635,0,0,1601.724960744889 -13184,16276,29712,-9,29710,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.936393775581,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,633.3333333333334,-19044.26105504315,11186.49641700635,0,0,1601.724960744889 -13185,16277,29713,29714,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,3.395338188080444,3.59502988738093,50,2,-167.323791648263,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.133741108860284,3.704675763403944,51.95,54.55,46.28,51.64,10,1,1,0,0,0,5,2,1,1071,389142.5131560112,171756.5003881518,223495.3660908518,0,2389.934566985611 -13185,16277,29714,29713,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.926400188510871,7.13262006761151,50,-2,-20.60169134063194,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.921040226852489,7.091038965747068,46.28,51.64,51.95,54.55,8.333333333333334,1,1,0,0,0,5,2,1,1071,389142.5131560112,171756.5003881518,223495.3660908518,0,2389.934566985611 -13186,16278,29715,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.955855104316082,6.589782855666035,0,0,-912.780051201575,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.124593154517859,6.150345368012458,49.35,48.91,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,584,-197856.9970145195,10396.40988485986,0,0,951.3551591252456 -13187,16279,29716,29717,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.459567090954355,8.745417446743899,0,6,-1,44.23749254861458,0,3,2,2019,9,0,40,30,1,1,0,13.07700283105576,13.07700283105576,0,0,0,0,0,0,0,0,0,0,53,54,54.1,59.11,8,1,1,0,0,7,13,5,1,677.5,239103.2843145798,105730.908708776,188775.6845578373,58859.21121910921,3125.98434404844 -13187,16279,29717,29716,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.017625658029468,7.560202731838538,0,6,1,33.5023383270172,0,3,3,2019,11,0,22,23,1,0,0,14.43566660614271,14.43566660614271,0,0,0,0,0,0,0,0,0,0,54.1,59.11,53,54,8.333333333333334,1,1,0,0,7,13,5,1,677.5,239103.2843145798,105730.908708776,188775.6845578373,58859.21121910921,3125.98434404844 -13187,16280,29718,-9,29717,29716,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-984.9943541469216,1,3,2,2019,10,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,1,2,13,1,1,1342,-317645.5510525436,0,0,0,0 -13188,16281,29719,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1069.834042057204,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,27.33222737684331,34.62604301148388,251.4671912085792,0,1,1,0,3.836670166628338,0,45.83,19.9,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,357,-30424.70896643662,0,0,0,543.1132290949535 -13189,16282,29720,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1104.655691467023,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.023138636450806,0,40.44,33.06,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,4562,-107334.0068740093,0,0,0,1383.689083236074 -13190,16283,29721,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,4.10119898005667,4.003919438264976,0,0,-1010.492193599468,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,4.553778499166588,3.918604472543872,35.73,21.8,-9,-9,5,1,1,1,0,0,10,2,1,953,-27333.5101890941,-146107.1224977777,0,0,797.8807298081847 -13191,16284,29722,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1122.138012070586,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,120,1,0,1,.4808411183604684,0,30.94,55.79,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,164,0,0,0,0,602.5543658574767 -13191,16285,29723,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,4.801162578761136,4.616289296470454,0,0,-934.1098806629991,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.797009568563183,0,0,1,0,1,0,4.335728066379132,64.33,13.78,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,70,307991.2098935038,0,331987.1060661057,0,846.0440034212218 -13192,16286,29724,-9,29726,29725,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.9787231085074,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,583.75,55648.94269199959,108379.0041358274,113717.9194532878,58912.42094354452,2931.89385461055 -13192,16286,29725,29726,-9,-9,1,1,34,1,2,0,2,2,-9,0,5,7.801035289404512,7.745179907817301,0,5,5,-61.67001209851416,0,2,-9,2019,6,0,40,35,1,0,0,6.737809089999467,6.737809089999467,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.73,58.82,10,1,1,0,0,6,5,4,1,583.75,55648.94269199959,108379.0041358274,113717.9194532878,58912.42094354452,2931.89385461055 -13192,16286,29726,29725,-9,-9,1,0,29,1,2,0,2,2,-9,0,5,8.515508654648475,8.685846840722357,0,5,-5,-42.72490685105041,0,2,3,2019,7,0,35,30,1,0,0,19.09205857066067,19.09205857066067,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,6,5,4,1,583.75,55648.94269199959,108379.0041358274,113717.9194532878,58912.42094354452,2931.89385461055 -13192,16286,29727,-9,29726,29725,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.8188983329472,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,583.75,55648.94269199959,108379.0041358274,113717.9194532878,58912.42094354452,2931.89385461055 -13193,16287,29728,29731,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.384123407689071,8.725343216873522,0,7,4,-71.63708601014132,0,-9,-9,2019,10,0,40,58,1,0,0,16.2288381919003,16.2288381919003,0,0,0,0,0,1,1,0,2.507925149917763,0,44.09,58.35,35.46,16.38,5,1,1,0,0,6,4,3,1,1390.25,23315.46881378836,0,0,0,2988.266065969753 -13193,16287,29729,-9,29731,29728,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.553403889647,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1390.25,23315.46881378836,0,0,0,2988.266065969753 -13193,16287,29730,-9,29731,29728,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.912986707874,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,1390.25,23315.46881378836,0,0,0,2988.266065969753 -13193,16287,29731,29728,-9,-9,1,0,32,0,2,0,2,2,-9,1,1,0,0,0,13,-4,-2.721752168936229,0,2,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,.6155047683342616,0,1,1,0,1.737045796084399,0,35.46,16.38,44.09,58.35,5,1,1,0,0,0,4,3,1,1390.25,23315.46881378836,0,0,0,2988.266065969753 -13194,16288,29732,-9,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,0,0,0,0,-857.592999560219,0,1,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,603,-41788.43195930251,0,0,0,724.4808845401294 -13194,16288,29733,-9,29732,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.501877170427,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,603,-41788.43195930251,0,0,0,724.4808845401294 -13195,16289,29734,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.142508555849322,7.284708947109104,0,0,0,-971.0010306171824,0,-9,-9,2019,9,0,21,28,1,0,0,7.296170279851129,7.296170279851129,0,0,0,0,0,1,0,1,0,0,47.4,55.39,-9,-9,1.666666666666667,1,1,0,0,4,2,2,0,302,30461.82299324558,27610.55692811736,0,0,1428.051088495255 -13195,16289,29735,-9,29734,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.77451602092,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,302,30461.82299324558,27610.55692811736,0,0,1428.051088495255 -13196,16290,29736,29737,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,48.28994613193376,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.89,44.94,57.92,51.82,10,1,1,0,0,0,13,2,0,444.5,208852.9388393232,102042.26671129,134472.2027580587,0,913.3341638076206 -13196,16290,29737,29736,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.203426376534814,5.863778505867238,10,1,-17.94140440854784,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.323675377784555,57.92,51.82,60.89,44.94,10,1,1,0,0,3,13,2,0,444.5,208852.9388393232,102042.26671129,134472.2027580587,0,913.3341638076206 -13197,16291,29738,29739,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.535728766774756,8.344920968643704,43,6,17.89864826534901,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.707647777303201,8.276800602773889,48.76,53.24,52.83,45.94,8.333333333333334,1,1,0,0,0,13,4,1,623,1924105.145385857,1420777.396120327,226174.9413181031,0,4139.752366681787 -13197,16291,29739,29738,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,43,-6,25.07743917549686,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.271298829387275,0,52.83,45.94,48.76,53.24,8.333333333333334,1,1,0,0,0,13,4,1,623,1924105.145385857,1420777.396120327,226174.9413181031,0,4139.752366681787 -13198,16292,29740,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.728188693920034,8.660419291771731,0,0,0,-976.2074578728697,0,3,3,2019,12,0,39,38,1,0,0,14.28563367015501,14.28563367015501,0,0,0,0,0,0,0,0,4.094237852505635,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,378,-72981.13007205701,20414.37382117784,0,0,1989.973578544564 -13198,16293,29741,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.470907074306655,8.801130137000925,0,0,0,-1034.894527594919,0,-9,3,2019,5,0,43,45,1,0,0,16.82432797624281,16.82432797624281,0,0,0,0,0,0,0,0,.1729988073737556,0,57.71,54.89,-9,-9,10,1,1,0,0,9,8,5,1,857,533256.3552737635,411899.1434988969,0,0,1508.799963438799 -13199,16294,29742,29743,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.978047320261267,6.779696682884434,3,2,-85.34157983424592,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,2.535028253923739,6.615500402793304,63.16,38.47,52.38,55.6,6.666666666666667,1,1,0,0,0,11,2,1,864,456331.852393561,323251.8169559867,183092.6254873533,0,617.1333640250599 -13199,16294,29743,29742,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,32,-2,-87.61832266786375,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.38,55.6,63.16,38.47,6.666666666666667,1,1,0,0,3,11,2,1,864,456331.852393561,323251.8169559867,183092.6254873533,0,617.1333640250599 -13200,16295,29744,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,7.831653502904532,8.476776182533492,7.254492988061587,0,0,-876.4238193244711,0,2,1,2019,9,2,25,23,1,2,0,10.38971035337892,10.38971035337892,0,0,0,0,0,1,1,0,0,7.364750524558654,57.57,44.16,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,105,743434.8224589005,807176.4526030775,315691.9504886368,57055.59069047176,2233.195250773772 -13201,16296,29745,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,2,0,0,0,0,0,-991.4897544371212,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,19.27,42.79,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,576.5,98142.25933733904,0,0,0,389.9135996707121 -13201,16296,29746,-9,29745,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1003.119812006937,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,5,-9,0,0,11,2,0,576.5,98142.25933733904,0,0,0,389.9135996707121 -13202,16297,29747,29748,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,6.852493589445147,6.948162946404707,0,9,13,-35.90141236679389,0,3,3,2019,23,7,25,28,1,7,0,4.035717270191554,4.035717270191554,0,0,0,0,0,1,1,0,0,0,32.74,16.46,43.17,31.1,0,1,1,0,1,9,6,3,0,384,-66010.0781788562,-54933.80453248342,0,0,1417.815283884184 -13202,16297,29748,29747,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,7.414246739699639,7.168566122661164,0,8,-13,17.00384924226179,0,3,3,2019,2,0,35,35,1,0,0,5.174370839839304,5.174370839839304,0,0,0,0,14.5,1,1,0,0,0,43.17,31.1,32.74,16.46,0,3,4,0,0,10,6,3,0,384,-66010.0781788562,-54933.80453248342,0,0,1417.815283884184 -13203,16298,29749,-9,29751,29752,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.290200658404,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,1045.25,46059.33955317688,-52260.68067819829,0,0,3036.569316780684 -13203,16298,29750,-9,29751,29752,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.1136131399481,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,1045.25,46059.33955317688,-52260.68067819829,0,0,3036.569316780684 -13203,16298,29751,29752,-9,-9,1,0,31,1,2,0,2,2,-9,1,3,6.664990808162091,6.666102427996529,0,12,1,58.61360949682324,0,3,2,2019,14,3,14,14,1,3,0,6.248874856013857,6.248874856013857,0,0,0,0,0,1,1,0,0,0,29.46,59.39,44.12,45.99,6.666666666666667,2,3,0,0,4,2,3,1,1045.25,46059.33955317688,-52260.68067819829,0,0,3036.569316780684 -13203,16298,29752,29751,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.040187366562369,8.099227820209434,0,12,-1,100.7048426439687,0,3,2,2019,11,0,70,70,1,0,0,4.215059754079038,4.215059754079038,0,0,0,0,0,1,1,0,0,0,44.12,45.99,29.46,59.39,8.333333333333334,2,3,0,0,7,2,3,1,1045.25,46059.33955317688,-52260.68067819829,0,0,3036.569316780684 -13204,16299,29753,29754,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.411566692638741,7.731232230753839,10,5,-7.503254293717053,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.887414926089059,7.19954288070673,35.08,50.19,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,1,662.5,1498842.827812843,648761.1787617077,673703.5249938448,0,3148.007129609896 -13204,16299,29754,29753,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.988346411800054,7.132140132788487,49,-5,-120.6733075864673,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.37112955517502,6.737798234824441,57.06,57.76,35.08,50.19,8.333333333333334,1,1,0,0,7,7,3,1,662.5,1498842.827812843,648761.1787617077,673703.5249938448,0,3148.007129609896 -13205,16300,29755,29756,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.837172835837965,7.794566601519898,0,6,11,26.11056675955024,0,2,1,2019,18,6,30,37,1,6,0,9.551346903604585,9.551346903604585,0,0,0,0,0,0,0,0,0,0,46.67,37.6,51,56,3.333333333333333,1,1,0,0,7,6,5,1,1452.5,154398.9555628185,89750.66146257619,77583.48429087948,66343.52865044946,2852.848442609845 -13205,16300,29756,29755,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.564188391063013,9.003641183566506,0,6,-11,-54.72069951580427,0,2,1,2019,9,0,37,37,1,1,0,10.85398832820433,10.85398832820433,0,0,0,0,0,0,0,0,.6912459755050058,0,51,56,46.67,37.6,8,1,1,0,0,1,6,5,1,1452.5,154398.9555628185,89750.66146257619,77583.48429087948,66343.52865044946,2852.848442609845 -13206,16301,29757,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.741579324084839,8.944113819420032,6.171654468344443,0,0,-941.3801604391906,0,2,2,2019,6,0,36,36,1,0,0,20.40383896397622,20.40383896397622,0,0,0,0,0,1,1,0,6.44667488239102,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,705,173293.2561860601,199724.8406191814,245939.3111642282,190585.78763289,2375.896289353408 -13206,16301,29758,-9,29757,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.651396408752,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,705,173293.2561860601,199724.8406191814,245939.3111642282,190585.78763289,2375.896289353408 -13206,16301,29759,-9,29757,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.4047455909518,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,705,173293.2561860601,199724.8406191814,245939.3111642282,190585.78763289,2375.896289353408 -13207,16302,29760,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,9.572874147732369,9.706888683772723,5.040519198736845,34,2,-5.540159151535738,0,3,3,2019,13,2,35,35,1,2,0,48.78534487731643,48.78534487731643,0,0,0,0,0,1,1,0,6.207611692164159,5.090550410050318,49.35,59.64,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,2447,1522819.865467979,1200079.047944551,337519.3269079396,0,9136.546840334684 -13207,16303,29761,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.904208809058956,7.815170798248995,34,-2,32.49184642396632,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9953527402871292,8.060202912284813,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,8,9,5,1,1173,1865304.280225127,524891.7048457692,560433.6871444798,0,1974.342087655647 -13208,16304,29762,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.1739087734762,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.7005634205651656,0,35.52,21.44,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,2073,-11381.61721690763,0,0,0,1352.660174465157 -13209,16305,29763,29764,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.926297895623201,7.378103799609946,55,-2,16.08121069710318,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,8.012033298968525,43.33,38.61,52.23,55.6,8.333333333333334,1,1,0,0,0,6,3,1,673.5,706972.7955967276,494564.927981769,117828.2330599273,0,2545.573995294743 -13209,16305,29764,29763,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,55,2,48.34982740381523,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,43.33,38.61,8.333333333333334,1,1,0,0,0,6,3,1,673.5,706972.7955967276,494564.927981769,117828.2330599273,0,2545.573995294743 -13210,16306,29765,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1054.610889611585,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,10,1,0,250,95430.50484873072,108504.7412381068,0,0,457.371321944281 -13211,16307,29766,-9,29768,-9,1,0,16,0,1,1,2,0,-9,0,5,0,4.626534974011467,4.948675175501598,0,0,-997.9094682056187,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.570299491577045,0,52.13,57.22,-9,-9,10,1,1,0,0,0,4,3,0,409.6666666666667,5131.38767639502,104911.2297427494,146851.4258650145,52564.74766647474,1280.752168571221 -13211,16307,29767,-9,29768,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.428835399725,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,409.6666666666667,5131.38767639502,104911.2297427494,146851.4258650145,52564.74766647474,1280.752168571221 -13211,16307,29768,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.818142141029698,7.687453280752471,0,0,0,-952.0847370167487,-9,-9,-9,2019,29,11,39,0,1,11,0,6.653347756023982,6.653347756023982,0,0,0,0,0,1,1,0,0,0,21.29,63.31,-9,-9,3.333333333333333,1,1,0,1,8,4,3,0,409.6666666666667,5131.38767639502,104911.2297427494,146851.4258650145,52564.74766647474,1280.752168571221 -13212,16308,29769,29770,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,0,0,0,8,11,-92.39035759504512,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,33.91,48.45,35.9,60.41,5,1,1,0,0,0,9,5,1,585,88889.71754013888,-5410.004874306159,0,0,8364.871625139245 -13212,16308,29770,29769,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.572000461001229,9.615756833875004,0,8,-11,-68.34247120459921,0,2,1,2019,16,4,40,9,1,4,0,51.39448567058651,51.39448567058651,0,0,0,0,0,1,1,0,5.723609265286473,0,35.9,60.41,33.91,48.45,6.666666666666667,1,1,0,0,9,9,5,1,585,88889.71754013888,-5410.004874306159,0,0,8364.871625139245 -13212,16308,29771,-9,29769,29770,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1035.273974696054,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,585,88889.71754013888,-5410.004874306159,0,0,8364.871625139245 -13213,16309,29772,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.818665807816303,6.981692038878657,0,0,-1043.124349926553,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.953140916322126,6.947655567313694,51.89,35.98,-9,-9,5,1,1,0,0,5,5,2,0,156,38642.74501949556,126751.6002183757,0,0,1975.952365676451 -13214,16310,29773,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.71904982232359,7.846606010287687,0,0,-1037.796490451779,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.187214690754121,7.738008250673414,38.18,47.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,2082,850974.5175307022,832852.0847358953,0,0,2049.023262922316 -13215,16311,29774,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-955.3785381677043,0,3,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.44,35.13,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,755,-166300.8420415216,0,0,0,578.3945054978662 -13216,16312,29775,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.741012646920137,9.452384625891062,0,0,0,-1097.123967951274,0,2,2,2019,6,0,48,53,1,0,0,30.08249855064518,30.08249855064518,0,0,0,0,0,0,0,0,5.622343965953815,0,57.06,57.76,-9,-9,10,1,1,0,0,12,6,5,1,826,114719.8200193095,75631.79886469232,0,0,5100.918798323278 -13217,16313,29776,29777,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.116639582735786,8.388655409170969,0,3,2,75.95421061040925,0,-9,-9,2019,10,0,41,45,1,0,0,8.316071832214128,8.316071832214128,0,0,0,0,0,0,0,0,0,0,46.63,59.72,53.46,53.93,8.333333333333334,1,1,0,0,6,10,4,0,1822,-103084.1678476858,63320.61918621197,0,0,2356.243769728167 -13217,16313,29777,29776,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.436741763929844,7.872896729826146,0,3,-2,55.15322544088579,0,-9,-9,2019,10,1,37,42,1,1,0,7.30086276309242,7.30086276309242,0,0,0,0,0,0,0,0,0,0,53.46,53.93,46.63,59.72,8.333333333333334,1,1,0,0,3,10,4,0,1822,-103084.1678476858,63320.61918621197,0,0,2356.243769728167 -13218,16314,29778,29779,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,5.930729117457267,6.08980487575455,0,45,-3,-89.55605024853205,0,2,-9,2019,14,2,20,18,1,2,0,3.115643912380088,3.115643912380088,0,0,0,0,0,1,1,0,0,0,49.25,61.25,56.47,59.4,5,1,1,0,0,8,10,2,1,560.5,1207449.191986583,709946.363832448,361085.8853028399,0,1623.731430856286 -13218,16314,29779,29778,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,7.099786234120025,6.928722596403953,0,45,3,87.94775178474201,0,3,2,2019,7,0,60,60,1,0,0,2.083658871336074,2.083658871336074,0,0,0,0,0,1,1,0,0,0,56.47,59.4,49.25,61.25,3.333333333333333,1,1,0,0,8,10,2,1,560.5,1207449.191986583,709946.363832448,361085.8853028399,0,1623.731430856286 -13219,16315,29780,-9,29782,29783,1,0,25,0,0,0,2,2,-9,0,4,7.51247004507902,7.746614777906821,0,0,0,-943.3451291836342,0,2,2,2019,12,2,30,0,1,2,1,7.179269601618188,7.179269601618188,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,5,4,3,1,752,108037.150184966,110235.3451776383,0,0,384.9581669505482 -13219,16316,29781,-9,29782,29783,1,1,19,0,0,0,2,2,-9,0,4,7.594129609168263,7.876726443058461,0,0,0,-1020.225904629279,0,2,2,2019,10,0,20,20,1,0,1,9.90228827549709,9.90228827549709,0,0,0,0,0,0,0,0,0,0,58.06,43.45,-9,-9,0,1,1,0,0,3,4,3,1,150,-55881.88487711608,0,0,0,601.5215506324648 -13219,16317,29782,29783,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,9.217226526580749,9.377528518799924,0,4,-2,78.32377139354814,0,-9,-9,2019,9,0,24,24,1,0,0,48.38423732793699,48.38423732793699,0,0,0,0,0,0,0,0,0,0,54.35,57.84,57.16,56.15,10,1,1,0,0,8,4,5,1,642,112685.603223767,44354.08860709015,152883.0082180214,75088.49876810939,6253.528444690823 -13219,16317,29783,29782,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.872212651097833,9.332621751931157,0,4,2,-87.20656191833869,0,-9,-9,2019,8,0,40,37,1,0,0,31.34339806550192,31.34339806550192,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.35,57.84,8.333333333333334,1,1,0,0,8,4,5,1,642,112685.603223767,44354.08860709015,152883.0082180214,75088.49876810939,6253.528444690823 -13220,16318,29784,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1145.916319471775,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,3.336939229777979,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,1,0,2,1,0,756,0,0,0,0,1435.105189892239 -13221,16319,29785,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-959.3066273759156,0,3,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,34,36.36,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,100,110445.9672787688,0,0,0,344.2242768256691 -13222,16320,29786,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.043214373700962,8.476271560460964,7.531422056268469,0,0,-902.3992920188855,0,-9,-9,2019,11,3,13,29,1,3,0,30.16917538261911,30.16917538261911,0,0,0,0,0,0,0,0,6.3107829568401,7.71186189623146,57.59,30.59,-9,-9,8.333333333333334,1,1,0,0,9,1,5,0,726,1053905.053037586,716240.6970335357,283205.8589337049,51955.03754135882,2604.721872110303 -13223,16321,29787,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.6673761883097,5.714737530934298,0,0,-1049.14306572231,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.592501121975022,5.834994449511568,35.8,41.54,-9,-9,5,1,1,0,0,0,2,2,1,1167,58644.27313432822,0,254254.9287721454,0,289.7659977183613 -13224,16322,29788,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.996364530693373,5.045173158691481,0,0,-979.6246087215241,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,16.50870894839455,0,0,1,1,0,0,4.72549384515505,52,46,-9,-9,8,1,1,0,0,0,11,2,0,2425,151535.2636708872,0,189430.5116999599,0,1446.536566500962 -13225,16323,29789,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,7.557727582458171,7.562273772438057,0,0,0,-985.1106142682033,0,3,3,2019,25,10,19,0,1,10,1,10.80964080498824,10.80964080498824,0,0,0,0,0,1,1,0,0,0,42.98,34.24,-9,-9,3.333333333333333,3,4,0,1,4,4,3,0,906,134982.1751527745,126502.4095661816,0,0,1115.057429702511 -13226,16324,29790,29791,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,0,0,8,-3,0,0,-9,-9,2019,7,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58,54,62.39,56.71,10,1,1,0,0,8,12,1,1,545,352926.7614216765,0,200502.3806276091,0,1160.091189712092 -13226,16324,29791,29790,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,8,3,0,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.39,56.71,58,54,10,1,1,0,0,8,12,1,1,545,352926.7614216765,0,200502.3806276091,0,1160.091189712092 -13227,16325,29792,29793,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,7.30314422317236,7.144750111314505,9,11,-151.3974943616522,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.369222504670412,41.37,21.72,57.16,56.15,10,1,1,0,0,0,12,3,1,843.5,427097.0030609346,214530.5544692137,155883.8442710608,0,2074.929560372258 -13227,16325,29793,29792,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.520843192775681,6.798382736136762,9,-11,15.21443420973242,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.388566001502225,7.114295690748371,57.16,56.15,41.37,21.72,10,1,1,0,0,2,12,3,1,843.5,427097.0030609346,214530.5544692137,155883.8442710608,0,2074.929560372258 -13228,16326,29794,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1050.665088150684,0,2,3,2019,15,4,0,0,4,4,0,0,0,1,.7654484072211358,1.092688223537059,22.77745768841902,0,1,1,0,0,0,54.87,8.779999999999999,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,2624,-15312.68129524839,109160.7056826028,0,0,996.3347713941356 -13229,16327,29795,29796,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,7,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,42.07,54.79,55.86,6.666666666666667,1,1,0,0,5,6,1,1,1149.5,-67280.282199104,0,0,0,713.790515349042 -13229,16327,29796,29795,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,7,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.5,42.07,10,1,1,0,0,0,6,1,1,1149.5,-67280.282199104,0,0,0,713.790515349042 -13230,16328,29797,-9,29799,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.7348977280125,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,903.6666666666666,630439.8355869864,29046.69785740029,621211.8615620402,103329.466978326,1567.591774654944 -13230,16328,29798,-9,29799,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-996.4806747216721,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,3,4,-9,0,0,8,3,0,903.6666666666666,630439.8355869864,29046.69785740029,621211.8615620402,103329.466978326,1567.591774654944 -13230,16328,29799,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.19080016202388,8.255687637022046,0,0,0,-799.3934040648455,-9,3,3,2019,15,6,38,0,1,6,0,12.71007647836888,12.71007647836888,0,0,0,0,0,1,1,0,0,0,44.56,49.36,-9,-9,8.333333333333334,3,4,0,0,10,8,3,0,903.6666666666666,630439.8355869864,29046.69785740029,621211.8615620402,103329.466978326,1567.591774654944 -13231,16329,29800,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.030415863055689,7.835120119378735,0,0,-1072.226795580355,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.966264191870637,7.847726263109998,51.08,52.1,-9,-9,10,1,1,0,0,0,5,4,1,435,906328.8889584125,575897.3052086578,0,0,1419.082955344311 -13232,16330,29801,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.833843834460788,8.909972594940102,0,0,0,-994.7333253534263,-9,2,2,2019,15,3,68,0,1,3,0,14.95479287154151,14.95479287154151,0,0,0,0,0,0,0,0,7.278735633160831,0,40.29,22.13,-9,-9,1.666666666666667,1,1,0,0,11,10,5,1,270,471670.8052830803,287207.4913935512,135898.5127365429,96921.65805002212,3243.534543621652 -13233,16331,29802,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.373297798809089,5.462424779262014,0,0,-1104.210098734433,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,4.429750128071538,0,0,1,1,0,7.131737576339284,5.260684226887482,52,45,-9,-9,8,1,1,0,0,0,11,2,0,921,490316.0532228689,1264.019102782031,212404.5205970579,0,1477.02854302192 -13234,16332,29803,29804,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.219973860288942,7.77738445295393,4,11,12.09520380470178,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.961994608891146,7.97380612158068,62,47.26,39.71,53.21,10,1,1,0,0,0,10,4,1,2127.5,2643369.068554464,595243.3242109143,615656.1173764835,0,3026.701121778204 -13234,16332,29804,29803,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.098356933290968,7.317149540134593,4,-11,131.3184166083244,0,2,2,2019,16,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.160801312215017,7.471728331569536,39.71,53.21,62,47.26,8.333333333333334,1,1,0,0,0,10,4,1,2127.5,2643369.068554464,595243.3242109143,615656.1173764835,0,3026.701121778204 -13235,16333,29805,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,5.502281273964919,5.777996115604162,0,0,-955.2079667162503,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.597654244538838,5.618814759436321,55.94,47.09,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,29,86012.91689498715,0,0,0,781.3344094382858 -13236,16334,29806,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.994908472320041,8.064477009944474,0,0,0,-1128.916574891754,-9,-9,-9,2019,13,1,53,0,1,1,0,7.143961295127951,7.143961295127951,0,0,0,0,0,0,0,0,0,0,38.93,54.2,-9,-9,6.666666666666667,2,3,0,0,6,6,4,0,303,230035.3056799441,128659.5845085616,105120.4536594208,0,979.3860784922899 -13236,16335,29807,29808,-9,-9,1,1,26,0,0,0,2,2,-9,0,2,6.525789395732083,6.829775304050626,0,1,-2,-139.1611249621833,-9,-9,-9,2019,23,10,20,0,1,10,0,4.966946706429039,4.966946706429039,0,0,0,0,0,0,0,0,0,0,34.79,47.81,31.25,53.29,3.333333333333333,2,3,0,0,2,6,4,0,377,-84075.17377316435,0,0,0,1802.773353792221 -13236,16335,29808,29807,29806,-9,1,0,28,0,0,0,2,2,-9,0,3,8.199735361522579,7.966142160610939,0,1,2,71.37862214279981,0,2,-9,2019,13,1,48,38,1,1,0,8.806087225814894,8.806087225814894,0,0,0,0,0,0,0,0,0,0,31.25,53.29,34.79,47.81,5,2,3,0,0,6,6,4,0,377,-84075.17377316435,0,0,0,1802.773353792221 -13236,16336,29809,-9,29806,-9,1,0,25,0,0,0,2,2,-9,0,4,8.117746548539419,8.106635430173654,0,0,0,-1106.472709402967,-9,2,-9,2019,13,1,60,0,1,1,1,7.218039258907642,7.218039258907642,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,6.666666666666667,2,3,0,0,6,6,4,0,1388,33536.57781503089,6871.696134079837,0,0,1201.436833572921 -13236,16337,29810,29811,-9,-9,1,0,19,0,0,1,2,0,-9,0,5,0,0,0,1,-1,1.447834308711821,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,48.06,51.06,0,2,3,0,0,1,6,3,0,1658.5,6029.591012395604,0,0,0,1233.364087297475 -13236,16337,29811,29810,29806,-9,1,1,20,0,0,0,2,2,-9,0,3,8.386886616448823,8.029244143931853,0,1,1,74.2191891004578,0,2,-9,2019,7,0,43,40,1,0,0,8.096692562933111,8.096692562933111,0,0,0,0,0,0,0,0,3.412070524029128,0,48.06,51.06,51.67,60.18,8.333333333333334,2,3,0,0,3,6,3,0,1658.5,6029.591012395604,0,0,0,1233.364087297475 -13236,16338,29812,-9,29806,-9,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1044.761390320683,1,2,-9,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,2,6,2,0,723,0,0,0,0,-475.6396841979456 -13237,16339,29813,29816,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.811040785946618,8.950456002723506,0,7,-1,-1.804971313320384,0,1,2,2019,19,7,48,42,1,7,0,18.44637107904244,18.44637107904244,0,0,0,0,0,1,1,0,1.086815484981416,0,35.81,64.81,41.08,58.41,8.333333333333334,1,1,0,0,10,9,5,1,823.75,192169.3759984691,-20637.49649960258,293992.1558475819,69248.92507108068,5897.178352675139 -13237,16339,29814,-9,29813,29816,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.7393614552353,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,823.75,192169.3759984691,-20637.49649960258,293992.1558475819,69248.92507108068,5897.178352675139 -13237,16339,29815,-9,29813,29816,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.4687404614715,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,823.75,192169.3759984691,-20637.49649960258,293992.1558475819,69248.92507108068,5897.178352675139 -13237,16339,29816,29813,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.358284653641192,9.254424137766378,0,7,1,-119.6486992104939,0,2,2,2019,7,0,77,42,1,0,0,12.46371082221743,12.46371082221743,0,0,0,0,0,1,1,0,3.034460844748908,0,41.08,58.41,35.81,64.81,8.333333333333334,1,1,0,0,11,9,5,1,823.75,192169.3759984691,-20637.49649960258,293992.1558475819,69248.92507108068,5897.178352675139 -13238,16340,29817,29818,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,7,-1,-29.37573950826017,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,16.85,54.45,56.22,6.666666666666667,1,1,0,0,0,5,2,0,1154,122142.9485717837,17226.74732096137,49955.10936015452,0,1986.177758898664 -13238,16340,29818,29817,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,6.47661439205069,6.779241897985057,0,7,1,105.634469073993,0,3,3,2019,10,1,12,18,1,1,0,7.246026951344301,7.246026951344301,0,0,0,0,42,1,1,0,0,0,54.45,56.22,42.86,16.85,10,1,1,0,0,8,5,2,0,1154,122142.9485717837,17226.74732096137,49955.10936015452,0,1986.177758898664 -13239,16341,29819,29820,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.352974900030302,9.055095595733405,8.189207344239978,32,5,39.78800075910664,0,3,3,2019,12,0,37,38,1,0,0,13.98209967883322,13.98209967883322,0,0,0,0,0,0,0,0,4.834292401729243,8.363112822127171,46.18,52.88,47.91,44.34,5,1,1,0,0,11,6,5,1,650,825084.3722456247,638477.9201746345,242210.154663948,0,3532.373604081686 -13239,16341,29820,29819,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,32,-5,13.1344960048639,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.91,44.34,46.18,52.88,5,1,1,0,0,12,6,5,1,650,825084.3722456247,638477.9201746345,242210.154663948,0,3532.373604081686 -13240,16342,29821,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.90305314063305,9.159577657708304,0,0,0,-1006.882857776477,0,2,2,2019,9,0,53,38,1,0,0,12.84213395275004,12.84213395275004,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,1801,762335.6002464801,73779.23401999552,449560.9467300946,0,3062.355209536472 -13241,16343,29822,-9,29823,29824,1,1,19,0,0,0,2,2,-9,0,3,6.578028674832622,6.683172032562995,0,0,0,-1089.133682312189,0,2,1,2019,17,5,25,0,1,5,1,3.218987788248752,3.218987788248752,0,0,0,0,0,1,1,0,0,0,18.5,61.97,-9,-9,6.666666666666667,1,1,0,0,1,10,2,0,336,220911.3237312885,-12762.71159107419,0,0,596.0136485007743 -13241,16344,29823,29824,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,9,2,-36.92327301053465,0,-9,-9,2019,21,7,0,2,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.14,17.65,49.98,45.95,3.333333333333333,4,5,0,1,2,10,2,0,812.5,1643328.381457921,338058.3979996465,717731.1130053425,0,947.9866431224158 -13241,16344,29824,29823,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,5.730370678124657,5.795045875980074,0,9,-2,35.60391036813307,0,2,2,2019,11,1,50,50,1,1,0,.7296094038230688,.7296094038230688,0,0,0,0,7,1,1,0,0,0,49.98,45.95,38.14,17.65,8.333333333333334,4,2,0,1,10,10,2,0,812.5,1643328.381457921,338058.3979996465,717731.1130053425,0,947.9866431224158 -13242,16345,29825,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.922064686663815,5.838671173265177,0,0,-1015.701563272359,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.113364544600142,5.666156330826167,59.84,28.88,-9,-9,10,1,1,0,0,0,7,2,1,2062,604499.1565029896,79009.35736827132,415013.7489760056,0,676.2316087672856 -13243,16346,29826,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.609791931943496,7.562936100258713,0,0,0,-1040.108583232576,0,3,-9,2019,8,0,30,30,1,0,0,9.484968038523736,9.484968038523736,0,0,0,0,0,0,0,0,0,0,59.46,36.46,-9,-9,10,1,1,0,0,6,9,3,1,1129,-89672.15001714544,74406.89420181389,51635.03000387317,0,1451.039370081607 -13244,16347,29827,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.883237595954654,7.751938923375568,0,0,-1067.578992057525,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.489204244291689,7.674388169879999,54.45,34,-9,-9,10,1,1,0,0,0,9,3,1,962,687087.8438801664,311531.0330726269,358679.0102429535,0,1620.03707923564 -13245,16348,29828,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,3,7.224427353273729,7.486251539635298,0,0,0,-976.3501479101143,0,2,2,2019,13,1,16,30,1,1,0,11.7859611946055,11.7859611946055,0,0,0,0,0,1,1,0,0,0,60,41.18,-9,-9,5,1,1,0,0,12,12,3,1,379,121221.2755976704,-47974.42806841969,0,0,704.0163351852972 -13246,16349,29829,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.470199355534321,6.569611360636618,0,0,0,-944.4150616239968,0,2,2,2019,7,0,16,16,1,0,0,5.764585951623745,5.764585951623745,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,4,2,0,0,5,9,2,0,1055,-137902.4259469313,0,0,0,149.3268909185508 -13247,16350,29830,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.534058090086536,7.615053911719158,0,0,-1010.250146297941,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.001255433741214,7.166933794160345,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,249,254041.53618601,88393.29650624073,153313.6350903962,61648.25529399931,2377.211913942826 -13248,16351,29831,29832,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.4382570235134,7.799926100824114,0,6,-15,95.19220244655364,0,2,2,2019,17,5,28,21,1,5,0,6.143924348463075,6.143924348463075,0,0,0,0,7,0,0,0,2.383478578014074,0,29.87,44.23,46.08,57.2,6.666666666666667,1,1,0,0,8,12,4,0,857,75178.17910426084,4849.781913764491,0,0,2133.277811631104 -13248,16351,29832,29831,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.188227586871932,8.163197431317945,0,6,15,18.53074523749743,0,-9,-9,2019,11,0,32,0,1,0,0,11.26140829043046,11.26140829043046,0,0,0,0,0,0,0,0,0,0,46.08,57.2,29.87,44.23,5,1,1,0,0,2,12,4,0,857,75178.17910426084,4849.781913764491,0,0,2133.277811631104 -13249,16352,29833,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.421946028018794,8.030150064979738,0,0,-1063.923476353461,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,2.049027972670765,0,0,1,1,0,4.500640717869745,7.943696704290057,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,290,196149.2786919549,138851.1504263638,0,0,1608.917573619918 -13250,16353,29834,-9,-9,-9,1,0,35,0,1,0,3,3,-9,1,1,0,0,0,0,0,-938.9499628350704,0,3,3,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.7,35.59,-9,-9,5,2,3,0,0,0,6,1,0,510,9287.20796625326,0,0,0,1085.93657298386 -13250,16353,29835,-9,29834,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.387913261456,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,0,510,9287.20796625326,0,0,0,1085.93657298386 -13251,16354,29836,29837,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.055240641094511,7.303572859176678,9,-1,-100.4909620680276,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.70113205056609,6.978841854919581,58.08,40.76,39.38,22.52,8.333333333333334,1,1,0,0,0,7,2,1,1041,710955.4370656719,296457.8946594343,431188.0247760058,0,3106.258319152063 -13251,16354,29837,29836,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,3.309272083068677,3.304165865902109,9,1,-59.52744442013873,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,5.886070670104758,0,0,1,1,0,7.302822169290581,3.3774528252963,39.38,22.52,58.08,40.76,5,1,1,0,0,0,7,2,1,1041,710955.4370656719,296457.8946594343,431188.0247760058,0,3106.258319152063 -13252,16355,29838,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.992980744453681,7.795941174667762,0,0,0,-998.4235761069663,0,-9,-9,2019,5,0,46,40,1,0,0,7.686069463501696,7.686069463501696,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,204,0,0,0,0,1326.655431385481 -13253,16356,29839,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.043664618025794,6.895599177120115,0,0,-1137.712463888707,0,2,2,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,4.732969608382652,6.871359986019944,58.1,31.46,-9,-9,6.666666666666667,1,1,0,0,11,13,2,1,603,547299.9866535258,302613.5863366805,146211.8921377305,0,1021.336046900052 -13254,16357,29840,29841,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.014619558934427,6.216818749324757,45,-2,-13.14212098122464,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.831540259977176,6.148979982866575,57.48,47.92,49.29,49.06,8.333333333333334,1,1,0,0,6,5,3,1,1012.5,1214333.526107721,930518.246643933,222730.8923904666,0,3290.634529277992 -13254,16357,29841,29840,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.100058440281723,7.858089412851002,45,2,41.23542917990083,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.911092493952669,49.29,49.06,57.48,47.92,8.333333333333334,1,1,0,0,0,5,3,1,1012.5,1214333.526107721,930518.246643933,222730.8923904666,0,3290.634529277992 -13255,16358,29842,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.73786984398396,6.799908153885659,0,0,-990.8462907108533,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,.222417846534448,6.862347814034468,50.53,42.77,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,83,18575.29786831005,238182.9090590667,0,0,1021.667330155254 -13256,16359,29843,29844,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.852630294608458,8.148374689399391,27,10,60.8261470777237,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.146307321319522,52,47,46.56,50.26,8.333333333333334,1,1,0,0,0,2,4,1,261.5,1315087.437297643,761834.4625701921,498090.9916590378,0,2800.578431177902 -13256,16359,29844,29843,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.450497852217671,7.222135481036908,27,-10,63.00847209087655,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.219013599003331,46.56,50.26,52,47,8.333333333333334,1,1,0,0,0,2,4,1,261.5,1315087.437297643,761834.4625701921,498090.9916590378,0,2800.578431177902 -13257,16360,29845,29846,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.835433279500517,9.083439172247425,0,21,3,-75.43835935066436,0,2,3,2019,6,0,37,37,1,0,0,20.36388424732836,20.36388424732836,0,0,0,0,2,1,1,0,8.497961014479774,0,62.49,55.09,47.58,56.39,8.333333333333334,1,1,0,0,9,8,4,1,625.5,2122784.958706336,1084777.40682739,431791.6478973609,0,4764.624983931068 -13257,16360,29846,29845,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.676090905812978,7.568355457794408,0,21,-3,11.78523179931157,0,1,1,2019,11,2,25,25,1,2,0,11.02663846094778,11.02663846094778,0,0,0,0,0,1,1,0,3.158616440214936,0,47.58,56.39,62.49,55.09,8.333333333333334,1,1,0,0,9,8,4,1,625.5,2122784.958706336,1084777.40682739,431791.6478973609,0,4764.624983931068 -13258,16361,29847,29848,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.71186660320023,8.569970817770534,7.127479408875535,33,3,30.14237795310873,0,2,3,2019,7,0,44,44,1,0,0,14.34956334279708,14.34956334279708,0,0,0,0,0,0,0,0,0,7.712436166624359,42.5,51.45,46.08,57.2,6.666666666666667,1,1,0,0,11,9,5,1,367,3062145.400967744,1867494.579679042,420253.7276648317,0,5399.339806997394 -13258,16361,29848,29847,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.252226573714921,8.564468173050624,7.865515953543983,31,-3,-13.28083756923758,0,2,3,2019,16,5,15,0,1,5,0,33.05534441165468,33.05534441165468,0,0,0,0,0,0,0,0,0,7.87210356324679,46.08,57.2,42.5,51.45,6.666666666666667,1,1,0,0,11,9,5,1,367,3062145.400967744,1867494.579679042,420253.7276648317,0,5399.339806997394 -13259,16362,29849,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,6.455297546300616,6.701318004566318,0,0,0,-960.4112343470686,0,2,2,2019,13,2,12,45,1,2,0,6.151527841171029,6.151527841171029,0,0,0,0,0,1,1,0,0,0,30.61,37.27,-9,-9,8.333333333333334,1,1,0,0,9,5,2,0,445,-72601.10274532647,26397.01099172174,0,0,404.6415206125334 -13260,16363,29850,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.126955577432737,6.909434025691277,0,0,-925.3077906571546,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,7.244085477553065,6.860549977433029,48.32,40.29,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,520,460900.6215810248,89218.0830339239,397971.5770168766,0,1877.001837982681 -13261,16364,29851,-9,29852,29853,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.667116405572,-9,2,1,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,18.37,66.92,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,256.3333333333333,1274075.161488973,424107.5052161751,1169136.13109595,558460.770637055,4311.553290923501 -13261,16364,29852,29853,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,27,4,-7.102229044102564,0,3,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,53.39,44.47,57.33,53.46,5,1,1,0,0,5,9,5,1,256.3333333333333,1274075.161488973,424107.5052161751,1169136.13109595,558460.770637055,4311.553290923501 -13261,16364,29853,29852,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.643240575606971,9.496053657081799,0,29,-4,135.3135004091424,0,2,2,2019,8,0,48,56,1,0,0,38.70227837028649,38.70227837028649,0,0,0,0,0,1,1,0,2.135807472179351,0,57.33,53.46,53.39,44.47,8.333333333333334,1,1,0,0,12,9,5,1,256.3333333333333,1274075.161488973,424107.5052161751,1169136.13109595,558460.770637055,4311.553290923501 -13262,16365,29854,-9,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,6.346312092577856,6.161946533082702,0,0,0,-977.7404111728052,0,3,3,2019,8,1,12,40,1,1,1,4.213919994849315,4.213919994849315,0,0,0,0,0,1,1,0,.0736725233932209,0,57.03,45.36,-9,-9,6.666666666666667,2,3,0,0,5,4,2,1,82,158506.1174678059,-128587.3574692014,0,0,217.4950140210437 -13263,16366,29855,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.082883483305718,7.900973443633118,0,0,-1080.856693401063,0,3,2,2019,5,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.209855979607219,61.97,43.07,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,678,829647.4558384727,570997.6543257952,164662.4351427921,0,1006.322740345297 -13264,16367,29856,-9,29857,29858,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.115479900462,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,0,801,299624.312407542,43563.94553840083,352270.278042756,172072.4468151461,3837.969405203688 -13264,16367,29857,29858,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.41513006798254,7.733838404447595,5.114664204645368,2,-3,26.70050208924856,0,-9,-9,2019,12,0,30,30,1,0,0,6.291567923716371,6.291567923716371,0,0,0,0,0,1,1,0,5.565384639987334,0,29.35,54.09,35.19,51.54,8.333333333333334,1,1,0,0,5,5,5,0,801,299624.312407542,43563.94553840083,352270.278042756,172072.4468151461,3837.969405203688 -13264,16367,29858,29857,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.815114555193135,9.164060771608346,0,2,3,84.98381460527021,-9,-9,-9,2019,12,0,48,0,1,0,0,18.82629526372608,18.82629526372608,0,0,0,0,0,1,1,0,0,0,35.19,51.54,29.35,54.09,6.666666666666667,1,1,0,0,11,5,5,0,801,299624.312407542,43563.94553840083,352270.278042756,172072.4468151461,3837.969405203688 -13265,16368,29859,-9,29860,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.946777743311,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,942.5,88118.55203293246,79014.15833582604,127360.7561473194,52316.41597842113,1362.96090362767 -13265,16368,29860,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,3,8.066437570664375,8.363404571852449,0,6,2,-18.60972571732359,0,-9,-9,2019,20,9,40,40,1,9,0,11.58599632243103,11.58599632243103,0,0,0,0,0,1,1,0,3.584276580552914,0,29.46,59.39,33.44,64.52,8.333333333333334,1,1,0,0,7,6,5,1,942.5,88118.55203293246,79014.15833582604,127360.7561473194,52316.41597842113,1362.96090362767 -13265,16369,29861,-9,-9,-9,1,0,29,0,1,0,1,1,-9,0,5,8.6783533473548,8.909241404443376,0,6,-2,50.20001801845697,0,-9,-9,2019,16,5,58,55,1,5,0,13.15324800779153,13.15324800779153,0,0,0,0,0,1,1,0,0,0,33.44,64.52,29.46,59.39,6.666666666666667,1,1,0,0,5,6,5,1,665,29296.49248007454,20202.0146970856,193931.2956055804,103034.52293372,2694.953131047646 -13266,16370,29862,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,4.630765383558106,6.209799837748845,5.576454332307528,0,0,-1121.162509454774,0,-9,-9,2019,14,2,38,35,1,2,0,.4043047735592686,.4043047735592686,0,0,0,0,0,1,1,0,5.546841269188259,5.450572335110163,51.58,50.6,-9,-9,8.333333333333334,1,1,0,0,10,8,2,1,181,89248.09741625372,0,0,0,438.3510073066981 -13267,16371,29863,-9,29865,29864,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1085.916649444615,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,5,1,1072.666666666667,287123.7641616635,86504.63394039623,252178.5267997781,43968.7263742022,4455.98907138955 -13267,16371,29864,29865,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.546151554920252,8.537173140390511,0,27,1,-92.30946757318868,0,2,3,2019,9,0,40,56,1,0,0,15.38506204052699,15.38506204052699,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.26,56.73,8.333333333333334,1,1,0,0,8,2,5,1,1072.666666666667,287123.7641616635,86504.63394039623,252178.5267997781,43968.7263742022,4455.98907138955 -13267,16371,29865,29864,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.265924187291645,9.031473328077364,0,28,-1,-108.7283695982617,0,1,2,2019,9,0,60,40,1,0,0,20.72107035693278,20.72107035693278,0,0,0,0,0,0,0,0,0,0,47.26,56.73,51.83,57.2,8.333333333333334,1,1,0,0,8,2,5,1,1072.666666666667,287123.7641616635,86504.63394039623,252178.5267997781,43968.7263742022,4455.98907138955 -13267,16372,29866,-9,29865,29864,1,1,18,0,1,0,2,2,-9,0,3,6.22723913207458,6.702835368170872,0,0,0,-958.6233319347276,0,1,1,2019,12,1,4,0,1,1,1,16.50545774924281,16.50545774924281,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,10,1,1,0,0,2,2,2,1,243,-35373.38548613904,0,0,0,-55.36936294269151 -13268,16373,29867,29868,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.695085821227861,8.541938993082335,0,9,1,-29.55824673230234,0,-9,-9,2019,8,0,55,53,1,0,0,14.43699115892172,14.43699115892172,0,0,0,0,0,0,0,0,2.921735775544314,0,54.45,56.22,58.15,52.91,8.333333333333334,1,1,0,0,7,5,5,1,1548.5,510479.8883830131,214788.0658210203,158908.2921927078,0,3905.723954909048 -13268,16373,29868,29867,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.824216737396197,8.642682813240635,0,30,-1,-86.59128015734728,0,2,2,2019,8,1,47,49,1,1,0,14.71969941351076,14.71969941351076,0,0,0,0,0,0,0,0,3.352416852459941,0,58.15,52.91,54.45,56.22,8.333333333333334,1,1,0,0,10,5,5,1,1548.5,510479.8883830131,214788.0658210203,158908.2921927078,0,3905.723954909048 -13268,16374,29869,-9,29867,29868,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.075421863805,1,1,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1019,67512.20270809306,0,0,0,0 -13269,16375,29870,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.550733008840229,8.57804792555077,0,0,0,-1096.319422344797,0,2,2,2019,8,0,44,39,1,0,0,11.29721081037657,11.29721081037657,0,0,0,0,0,0,0,0,0,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,13,5,5,1,1128,1149081.143676129,821509.0415180733,197254.927783775,14664.49104929724,2163.740607160224 -13270,16376,29871,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1032.322813679114,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,24.82,40.04,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,1654,395813.5114175645,83358.66458631979,222428.8967016512,0,1473.053320773133 -13271,16377,29872,29873,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.567367599451311,8.396213402268547,0,4,0,-6.808749862814411,0,-9,-9,2019,13,2,50,65,1,2,0,9.349068424138684,9.349068424138684,0,0,0,0,0,1,1,0,0,0,43.12,58.55,48.06,53.4,8.333333333333334,1,1,0,0,7,10,5,0,249.6666666666667,294419.9550530235,91221.8654512972,393201.847392705,227019.9769367306,3589.445009391829 -13271,16377,29873,29872,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.85603079802415,8.537301809524214,0,4,0,-34.73049083907752,0,-9,-9,2019,9,0,60,60,1,0,0,10.60219254842622,10.60219254842622,0,0,0,0,0,1,1,0,0,0,48.06,53.4,43.12,58.55,6.666666666666667,1,1,0,0,10,10,5,0,249.6666666666667,294419.9550530235,91221.8654512972,393201.847392705,227019.9769367306,3589.445009391829 -13271,16377,29874,-9,29872,29873,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-868.6046252377849,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,249.6666666666667,294419.9550530235,91221.8654512972,393201.847392705,227019.9769367306,3589.445009391829 -13272,16378,29875,29876,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.3563806197015,7.380851437700947,21,-2,59.93032561863474,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.518614316590889,7.247249556349553,60.02,56.42,58.72,51.29,10,1,1,0,0,10,11,2,1,348,408295.4913075661,438098.0424899449,0,0,2700.146560826942 -13272,16378,29876,29875,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.71950244096077,5.903169155868577,9,2,-37.30190390515089,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.476213941122291,58.72,51.29,60.02,56.42,8.333333333333334,1,1,0,0,6,11,2,1,348,408295.4913075661,438098.0424899449,0,0,2700.146560826942 -13273,16379,29877,29878,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.33080644938461,5.975598587480172,6,-1,21.5994623461392,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.142848243615473,57.63,34.57,60.2,21.05,5,1,1,0,0,0,13,2,1,960,89411.60614152196,44927.43041218378,137435.3352873678,0,1435.066326352106 -13273,16379,29878,29877,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,6,1,-.6705249007792791,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,36.53275997069856,0,0,1,1,0,1.655308659820387,0,60.2,21.05,57.63,34.57,10,1,1,0,0,0,13,2,1,960,89411.60614152196,44927.43041218378,137435.3352873678,0,1435.066326352106 -13274,16380,29879,-9,29881,29880,1,0,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-996.1846128955827,-9,2,2,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,31.06,-9,-9,8.333333333333334,1,1,0,0,0,2,4,0,422.6,1229937.491974646,443192.5386826858,295779.2920091104,0,4501.057968739166 -13274,16380,29880,29881,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.264436253012015,9.051724544789723,0,7,4,45.21784071499486,0,2,3,2019,8,0,35,0,1,0,0,34.30136348147595,34.30136348147595,0,0,0,0,0,1,1,0,0,0,53.57,46.8,30.7,62.92,3.333333333333333,1,1,0,0,8,2,4,0,422.6,1229937.491974646,443192.5386826858,295779.2920091104,0,4501.057968739166 -13274,16380,29881,29880,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.911618259143074,7.78359999900094,0,7,-4,30.46467254050314,0,3,3,2019,11,0,37,39,1,0,0,9.076259291760456,9.076259291760456,0,0,0,0,0,1,1,0,0,0,30.7,62.92,53.57,46.8,6.666666666666667,1,1,0,0,8,2,4,0,422.6,1229937.491974646,443192.5386826858,295779.2920091104,0,4501.057968739166 -13274,16380,29882,-9,29881,29880,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.766421313572,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,422.6,1229937.491974646,443192.5386826858,295779.2920091104,0,4501.057968739166 -13274,16380,29883,-9,29881,29880,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.8608097372218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,422.6,1229937.491974646,443192.5386826858,295779.2920091104,0,4501.057968739166 -13275,16381,29884,-9,-9,-9,1,1,82,0,3,0,3,3,-9,0,2,0,0,0,0,0,-972.0602559002435,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,10.56575265937958,0,0,1,1,0,0,0,65.38,31.06,-9,-9,10,1,1,0,0,5,13,1,1,4500,2495.669113013344,0,0,0,1270.513683337845 -13275,16382,29885,-9,29886,29889,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.747107778989,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,879.4,161253.3485946252,83178.58793991458,0,0,2437.356984751641 -13275,16382,29886,29889,-9,-9,1,0,44,0,3,0,3,3,-9,0,5,7.81353565068056,7.966794760654208,0,17,-4,-60.05973095527928,0,3,3,2019,9,0,27,27,1,0,0,9.525634434774982,9.525634434774982,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.59,54.8,8.333333333333334,1,1,0,0,9,13,3,1,879.4,161253.3485946252,83178.58793991458,0,0,2437.356984751641 -13275,16382,29887,-9,29886,29889,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.2742413416153,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,879.4,161253.3485946252,83178.58793991458,0,0,2437.356984751641 -13275,16382,29888,-9,29886,29889,1,0,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-967.1042123226495,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,3,1,879.4,161253.3485946252,83178.58793991458,0,0,2437.356984751641 -13275,16382,29889,29886,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,7.603691836566024,7.759255122340226,0,17,4,-25.50583092302521,0,3,3,2019,12,0,40,40,1,0,0,6.244276015018142,6.244276015018142,0,0,0,0,0,1,1,0,0,0,60.59,54.8,60.02,56.42,5,1,1,0,0,11,13,3,1,879.4,161253.3485946252,83178.58793991458,0,0,2437.356984751641 -13276,16383,29890,29891,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.256905926102156,8.15722505391364,0,8,0,-86.05653852239865,0,3,3,2019,9,0,49,54,1,0,0,7.668346292181008,7.668346292181008,0,0,0,0,2,0,0,0,0,0,50.99,53.41,42.11,40.08,8.333333333333334,1,1,0,0,8,5,5,1,1349,1015277.14475783,1046350.968697995,103669.5109156695,0,2988.880480594479 -13276,16383,29891,29890,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.153293210552802,8.11571788230569,0,8,0,147.2510014196957,0,2,2,2019,16,4,44,39,1,4,0,9.776033550705172,9.776033550705172,0,0,0,0,2,0,0,0,0,0,42.11,40.08,50.99,53.41,8.333333333333334,1,1,0,0,9,5,5,1,1349,1015277.14475783,1046350.968697995,103669.5109156695,0,2988.880480594479 -13277,16384,29892,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.779369583864185,8.631142225327277,0,0,0,-999.6958534784098,0,1,1,2019,1,0,47,63,1,0,0,14.93339482678391,14.93339482678391,0,0,0,0,0,0,0,0,2.177341128523801,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,7,9,5,1,500,-104636.602762374,71692.45152022468,0,0,1780.653006037459 -13278,16385,29893,29894,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.840260917148059,8.007952873399867,6,2,-46.09173939875086,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.033883050001422,8.238897012337533,55,45,60.53,23.2,8,1,1,0,0,0,11,5,1,1620,1752382.207963287,1040677.502603189,477030.0141515689,86290.96683387313,6460.730285865222 -13278,16385,29894,29893,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,9.29666423574772,9.244097326630301,6,-2,-139.2198951362033,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,8.761759530519441,60.53,23.2,55,45,3.333333333333333,1,1,0,0,0,11,5,1,1620,1752382.207963287,1040677.502603189,477030.0141515689,86290.96683387313,6460.730285865222 -13279,16386,29895,29896,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,7.795934659169168,7.807766749366301,0,10,4,55.75007970713449,0,2,2,2019,11,1,40,0,1,1,0,6.5720999506827,6.5720999506827,0,0,0,0,0,1,1,0,0,0,39.49,48.49,38.92,51.7,8.333333333333334,1,1,0,0,5,11,3,0,1300,353375.2584903245,195371.9070136559,150941.8481210865,57638.8406671165,1969.493572703194 -13279,16386,29896,29895,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.575502482921626,7.706587519876162,0,10,-4,174.4024294032236,0,3,-9,2019,12,2,29,35,1,2,0,7.762799906559361,7.762799906559361,0,0,0,0,0,1,1,0,0,0,38.92,51.7,39.49,48.49,3.333333333333333,4,2,0,0,8,11,3,0,1300,353375.2584903245,195371.9070136559,150941.8481210865,57638.8406671165,1969.493572703194 -13280,16387,29897,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1013.975276606867,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,32.48,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,483,-33753.25550599249,0,0,0,317.8569880358271 -13280,16388,29898,29899,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,6.989807856503339,7.012621217501474,0,3,-10,-154.6077659115788,0,-9,-9,2019,20,8,50,35,1,8,0,1.727116232383062,1.727116232383062,0,0,0,0,0,1,1,0,0,0,33.07,57.08,32.26,60.74,1.666666666666667,1,1,0,1,3,1,2,1,1470,26244.28188741527,-52151.44208770792,0,0,1262.876341752797 -13280,16388,29899,29898,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,6.785444982983276,6.649452034644602,0,3,10,13.0083619901311,0,-9,-9,2019,11,1,20,35,1,1,0,4.06764818119296,4.06764818119296,0,0,0,0,0,1,1,0,6.670403777762651,0,32.26,60.74,33.07,57.08,6.666666666666667,1,1,0,1,4,1,2,1,1470,26244.28188741527,-52151.44208770792,0,0,1262.876341752797 -13281,16389,29900,29901,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,35,1,-36.26860701214881,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,35.69,60.83,6.666666666666667,1,1,1,0,7,10,4,1,1179.5,1807829.360155636,1037603.238638654,702217.4527647132,35430.90608644084,2189.28131365284 -13281,16389,29901,29900,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.82365971467086,8.947192526722192,0,35,-1,.5066869422036167,-9,2,2,2019,13,3,18,0,1,3,0,46.31550921989667,46.31550921989667,0,0,0,0,0,0,0,0,3.135104134229544,0,35.69,60.83,43.67,61.06,3.333333333333333,1,1,0,0,9,10,4,1,1179.5,1807829.360155636,1037603.238638654,702217.4527647132,35430.90608644084,2189.28131365284 -13282,16390,29902,-9,29904,29903,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.1408451428538,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,477,67688.61064704414,0,0,0,3036.293346628466 -13282,16390,29903,29904,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.202378667348166,8.08170229128025,0,7,-2,-100.294742178188,0,-9,-9,2019,11,0,40,40,1,0,0,8.344793972305117,8.344793972305117,0,0,0,0,86,1,1,0,2.976413017231854,0,55.19,54.26,44.02,60.7,5,1,1,0,0,6,4,3,1,477,67688.61064704414,0,0,0,3036.293346628466 -13282,16390,29904,29903,-9,-9,1,0,40,0,2,0,1,1,-9,1,4,0,0,0,7,2,-72.84510353130645,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,1.610072022672733,0,44.02,60.7,55.19,54.26,6.666666666666667,1,1,0,0,9,4,3,1,477,67688.61064704414,0,0,0,3036.293346628466 -13282,16390,29905,-9,29904,29903,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.849275282177,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,477,67688.61064704414,0,0,0,3036.293346628466 -13283,16391,29906,-9,-9,-9,1,0,33,0,0,0,1,1,1,0,5,8.034881669197786,8.683806578362764,0,0,0,-1004.862603753143,-9,2,2,2019,6,0,47,0,1,0,0,8.796334399654977,8.796334399654977,0,0,0,0,0,0,0,0,3.352753084219137,0,51.73,58.82,-9,-9,10,1,1,0,0,4,1,4,0,190,47417.23423520628,-140888.2239668302,0,0,1468.084170947602 -13284,16392,29907,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.986880169353546,8.397085737766639,0,0,0,-908.6367784670645,0,3,3,2019,6,0,70,70,1,0,0,5.262682118067365,5.262682118067365,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,11,10,4,0,438,-159254.6108957626,-37475.11013724226,0,0,2720.201609408074 -13285,16393,29908,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,2,8.546860867001415,8.49834496983576,0,0,0,-924.1938747830178,0,-9,3,2019,13,3,26,24,1,3,0,14.65377797108589,14.65377797108589,0,0,0,0,0,1,1,0,2.186209593907176,0,44.48,39.77,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,278,904865.9958208764,815925.130468447,74986.94997506248,79025.31185876179,2584.560118186918 -13286,16394,29909,-9,29910,-9,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-869.6710419179676,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,10,2,0,319,-44830.39724792635,0,0,0,1819.638026562588 -13286,16394,29910,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,6.942395043536778,6.938199707262753,0,0,0,-1000.115606906865,0,-9,2,2019,12,1,16,16,1,1,0,7.61343516267917,7.61343516267917,0,0,0,0,2,1,1,0,0,0,41.05,58.43,-9,-9,8.333333333333334,1,1,0,0,11,10,2,0,319,-44830.39724792635,0,0,0,1819.638026562588 -13287,16395,29911,29912,-9,-9,1,1,30,1,2,0,2,2,-9,0,2,8.51616429300848,8.665438131108409,0,5,2,106.1823245360309,0,-9,-9,2019,12,3,38,37,1,3,0,16.58027939471432,16.58027939471432,0,0,0,0,0,1,1,0,0,0,36.83,39.98,46.51,52.73,3.333333333333333,1,1,0,0,9,12,5,1,886,294073.6620665564,201564.9671675764,271557.618882357,162217.9271617899,5048.958832788352 -13287,16395,29912,29911,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,8.369888007552566,8.509819484693192,0,5,-2,-125.3045048216647,0,2,2,2019,10,0,7,7,1,0,0,68.0876963781308,68.0876963781308,0,0,0,0,0,1,1,0,1.615946442620356,0,46.51,52.73,36.83,39.98,8.333333333333334,1,1,0,0,9,12,5,1,886,294073.6620665564,201564.9671675764,271557.618882357,162217.9271617899,5048.958832788352 -13287,16395,29913,-9,29912,29911,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.99505311098,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,886,294073.6620665564,201564.9671675764,271557.618882357,162217.9271617899,5048.958832788352 -13287,16395,29914,-9,29912,29911,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.288012831176,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,886,294073.6620665564,201564.9671675764,271557.618882357,162217.9271617899,5048.958832788352 -13288,16396,29915,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.859983461063176,8.060652730439717,0,0,-1037.732986580125,0,2,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,2.846379055394674,7.943102412201012,53.5,53.7,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,455,808667.9673464032,484393.9861799469,225238.9258865471,0,2382.097683158089 -13289,16397,29916,29917,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.236487977995825,8.867310967163563,0,14,7,-95.14535003747358,0,1,1,2019,12,0,45,45,1,0,0,23.35815662239112,23.35815662239112,0,0,0,0,0,0,0,0,2.191257823509059,0,54.31,38.2,49.88,47.22,3.333333333333333,4,5,0,0,10,8,5,1,203.5,430084.8326223767,143698.217353625,0,0,6886.92865094455 -13289,16397,29917,29916,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.424651726419164,9.341583999597919,0,14,-7,24.98169011811243,0,3,2,2019,14,3,60,60,1,3,0,21.93000387489221,21.93000387489221,0,0,0,0,2,0,0,0,0,0,49.88,47.22,54.31,38.2,6.666666666666667,1,1,0,0,9,8,5,1,203.5,430084.8326223767,143698.217353625,0,0,6886.92865094455 -13290,16398,29918,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.541236969032646,8.642802960832656,7.569471965226756,0,0,-1033.008707053048,0,2,2,2019,12,0,36,36,1,0,0,13.50591640207036,13.50591640207036,0,0,0,0,0,1,1,0,0,7.315735862294726,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,118,498067.455659846,53805.86104227448,342344.0643591461,0,2919.850372332683 -13291,16399,29919,29920,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.605678600409838,6.851827266333829,48,-8,-36.88216814706055,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.961195030408074,6.471399746044816,54.2,57.49,59.14,52.5,10,1,1,0,0,0,9,3,1,396,1070633.612559787,510344.2779229592,237467.5221455623,0,2526.421000107264 -13291,16399,29920,29919,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.250570956172149,7.523687239355683,48,8,-59.82326029907179,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.758113275263093,7.661626741379434,59.14,52.5,54.2,57.49,10,1,1,0,0,0,9,3,1,396,1070633.612559787,510344.2779229592,237467.5221455623,0,2526.421000107264 -13292,16400,29921,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.855176193678853,8.467938149626155,0,0,0,-968.4640704989448,0,-9,-9,2019,11,0,37,35,1,2,0,17.51664276185377,17.51664276185377,0,0,0,0,0,0,0,0,2.39951572154901,0,48,57,-9,-9,7,1,1,0,0,12,4,5,0,366,-31692.69902683956,117549.3084802246,0,0,2999.070105573165 -13293,16401,29922,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.936025573619724,8.05205912109226,0,0,0,-883.156174821613,0,2,3,2019,9,0,50,40,1,0,0,6.259296971427118,6.259296971427118,0,0,0,0,0,1,1,0,0,0,57.75,38.61,-9,-9,5,1,1,0,0,12,12,4,1,788,822253.5089181974,569148.5849422013,190388.2291436008,0,1573.180918502858 -13294,16402,29923,29926,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,0,0,0,6,-20,-148.0009187868829,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,3.459594987808314,0,1,1,0,4.026085814495588,0,49,55,54.2,57.49,8,2,3,0,0,0,8,4,1,572.5,1170891.871476799,522590.4048155624,604182.7291893945,29549.47665632585,4838.254314056043 -13294,16402,29924,-9,29923,29926,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.474164444997,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,4,1,572.5,1170891.871476799,522590.4048155624,604182.7291893945,29549.47665632585,4838.254314056043 -13294,16402,29925,-9,29923,29926,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.8592407053394,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,1,572.5,1170891.871476799,522590.4048155624,604182.7291893945,29549.47665632585,4838.254314056043 -13294,16402,29926,29923,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,9.097276435682408,9.02809967238661,0,6,20,-60.27963803908026,0,2,2,2019,10,0,42,56,1,0,0,25.61052011124544,25.61052011124544,0,0,0,0,0,1,1,0,8.501122681170415,0,54.2,57.49,49,55,6.666666666666667,1,1,0,0,7,8,4,1,572.5,1170891.871476799,522590.4048155624,604182.7291893945,29549.47665632585,4838.254314056043 -13295,16403,29927,29928,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.682193117820725,8.065010558124669,0,21,4,24.0847093146037,0,3,3,2019,11,0,39,39,1,0,0,11.96832014544576,11.96832014544576,0,0,0,0,0,0,0,0,0,0,54.97,31.57,41.49,52.34,5,1,1,0,0,13,2,4,1,1035,247592.1276068792,140500.7284563293,293059.6780746038,98217.12771483877,2931.069988393857 -13295,16403,29928,29927,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.654689443459037,7.696049518554689,0,21,-4,-178.4177525122632,0,3,2,2019,9,0,25,25,1,0,0,10.00179458298683,10.00179458298683,0,0,0,0,0,0,0,0,0,0,41.49,52.34,54.97,31.57,8.333333333333334,1,1,0,0,13,2,4,1,1035,247592.1276068792,140500.7284563293,293059.6780746038,98217.12771483877,2931.069988393857 -13296,16404,29929,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1061.338544776349,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,48.69,35.56,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,859,116097.5143061918,0,0,0,998.2067844229687 -13296,16404,29930,-9,29929,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.786104962231,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,859,116097.5143061918,0,0,0,998.2067844229687 -13297,16405,29931,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.415513588556093,8.352518701028215,0,0,0,-1069.377206858741,0,2,2,2019,7,0,35,35,1,0,0,13.13591304251661,13.13591304251661,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,1002,129330.680449114,-1688.004374359291,200553.3758510056,17375.77345206495,1421.877408856296 -13298,16406,29932,29933,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.979230676301849,9.02246670712112,10,1,153.3692221263777,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.471075528159912,8.744581245005554,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,4,9,5,1,438.5,4421642.249249026,3624702.307062226,541611.2788114026,0,6085.505254045881 -13298,16406,29933,29932,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.943978655185687,8.833570080135967,0,10,-1,-57.32812171382893,0,2,2,2019,11,0,39,40,1,0,0,21.02704968915258,21.02704968915258,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,9,5,1,438.5,4421642.249249026,3624702.307062226,541611.2788114026,0,6085.505254045881 -13298,16407,29934,-9,29932,29933,1,0,18,0,0,0,2,2,-9,0,5,7.501389698431118,7.725617377413579,0,0,0,-1066.922469033803,0,2,1,2019,4,0,38,0,1,0,1,5.896315813474783,5.896315813474783,0,0,0,0,0,0,0,0,0,0,47.83,62.16,-9,-9,10,1,1,0,0,2,9,3,1,499,160981.412269306,-114299.0810225753,0,0,1166.096638597029 -13299,16408,29935,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,9.394337640495694,9.332784150808996,0,0,0,-921.2104202274213,0,1,1,2019,10,2,63,57,1,2,0,19.30337763655275,19.30337763655275,0,0,0,0,0,0,0,0,5.279434143226633,0,45.71,60.6,-9,-9,6.666666666666667,2,3,0,0,11,8,5,0,916,-87279.58357867162,-23620.46369973486,0,0,3936.217376194616 -13300,16409,29936,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,0,0,0,0,0,-907.1894104904114,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,1,2,1,0,289,62789.49617647896,0,0,0,554.7118069552598 -13301,16410,29937,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.086735015818094,6.512523745163666,0,0,0,-1081.536356340848,0,-9,-9,2019,8,0,16,20,1,0,0,6.203699313482019,6.203699313482019,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,6,13,2,0,358,-87730.71650976362,0,0,0,1543.168334725876 -13302,16411,29938,29939,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.907933245749261,7.782016019805146,0,10,0,-34.78090419292853,0,3,3,2019,6,0,43,38,1,0,0,6.651570801885716,6.651570801885716,0,0,0,0,0,0,0,0,0,0,58.32,50.22,49.55,55.6,1.666666666666667,1,1,0,0,8,11,4,0,557,146049.6894758363,283.9524736028761,0,0,1969.729506609528 -13302,16411,29939,29938,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.305806433099014,7.359919214568832,0,33,0,-25.82351837612632,0,-9,1,2019,10,0,25,35,1,0,0,7.139445358672013,7.139445358672013,0,0,0,0,0,0,0,0,0,0,49.55,55.6,58.32,50.22,6.666666666666667,1,1,0,0,6,11,4,0,557,146049.6894758363,283.9524736028761,0,0,1969.729506609528 -13302,16412,29940,-9,29939,29938,1,1,24,0,0,0,2,2,-9,0,2,7.774257529210811,7.942958957777392,0,0,0,-868.0260698076244,0,3,3,2019,8,0,36,38,1,0,1,8.207983319987854,8.207983319987854,0,0,0,0,0,0,0,0,0,0,48.43,52.37,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,320,0,0,0,0,1545.706065520644 -13302,16413,29941,-9,29939,29938,1,0,26,0,0,0,2,2,-9,0,3,7.570077204022455,7.953288665867214,0,2,-5,-81.63102281343018,0,3,3,2019,12,0,40,39,1,0,0,5.988692243609806,5.988692243609806,0,0,0,0,0,0,0,0,0,0,44.6,50.07,17.28,63.4,5,1,1,0,0,7,11,4,0,741,-19353.24068415376,32132.0682856269,0,0,822.5496595893051 -13302,16414,29942,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.683652968457555,7.36525002322054,0,2,5,-1.802821350690172,0,-9,-9,2019,31,12,35,0,1,12,0,6.476059711432402,6.476059711432402,0,0,0,0,0,0,0,0,0,0,17.28,63.4,44.6,50.07,3.333333333333333,1,1,0,0,1,11,4,0,664,-71711.52036315185,-17391.46786142776,0,0,957.2925309846348 -13303,16415,29943,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,8.224693694608732,8.119295145823106,0,0,0,-1009.490515657413,0,2,2,2019,19,8,40,39,1,8,0,11.10929725576002,11.10929725576002,0,0,0,0,0,1,1,0,0,0,34.97,34.06,-9,-9,1.666666666666667,1,1,0,1,9,6,4,0,198,114349.0141714164,60255.17420650665,196947.7022824032,121446.7647565673,1451.937579303856 -13304,16416,29944,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1003.993745053556,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.95,31.99,-9,-9,5,1,1,0,0,3,10,1,0,816,-69257.58412742638,0,0,0,371.4076603694735 -13305,16417,29945,-9,29947,29948,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.1091878101123,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,950,143008.5501768401,90932.03911845123,183784.2082048079,133555.7771263625,3456.296792701126 -13305,16417,29946,-9,29947,29948,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.718320450121,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,4,1,950,143008.5501768401,90932.03911845123,183784.2082048079,133555.7771263625,3456.296792701126 -13305,16417,29947,29948,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.564379573232169,7.862082551082218,0,11,0,46.24676836381446,0,3,3,2019,13,3,45,25,1,3,0,6.786064391116597,6.786064391116597,0,0,0,0,2,1,1,0,3.539421470700326,0,46.56,57.02,51,56,6.666666666666667,2,3,0,0,9,5,4,1,950,143008.5501768401,90932.03911845123,183784.2082048079,133555.7771263625,3456.296792701126 -13305,16417,29948,29947,29949,29950,1,1,35,0,2,0,2,2,-9,0,4,8.619910223440723,8.447651248301037,0,6,0,86.1333743128214,0,2,2,2019,10,0,40,37,1,1,0,16.17183132002545,16.17183132002545,0,0,0,0,0,1,1,0,0,0,51,56,46.56,57.02,7,2,3,0,0,1,5,4,1,950,143008.5501768401,90932.03911845123,183784.2082048079,133555.7771263625,3456.296792701126 -13305,16418,29949,29950,-9,-9,1,0,59,0,2,0,2,2,-9,0,4,0,0,0,42,-1,9.781610330668663,0,3,3,2019,20,7,0,38,3,7,0,0,0,0,0,0,0,27,1,1,0,3.756688140760983,0,45.88,51.75,55,53,6.666666666666667,2,3,1,0,9,5,3,1,766,101125.7957714801,0,181534.4350783966,29969.37123394728,3594.994792451056 -13305,16418,29950,29949,29951,-9,1,1,60,0,2,0,2,2,-9,0,4,8.339235516025473,8.402787792844107,0,6,1,-3.965954805993519,0,3,-9,2019,8,0,37,38,1,0,0,11.88665414512957,11.88665414512957,0,0,0,0,0,1,1,0,0,0,55,53,45.88,51.75,8,2,3,0,0,1,5,3,1,766,101125.7957714801,0,181534.4350783966,29969.37123394728,3594.994792451056 -13305,16419,29951,-9,-9,-9,1,0,79,0,2,0,3,3,-9,0,3,0,5.620286570680008,5.665441569678119,0,0,-984.6805046427584,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.85340283023129,5.759247497242633,53,45,-9,-9,8,2,3,0,0,0,5,2,1,1532,139491.004843522,61088.1199421755,0,0,902.1896845226811 -13306,16420,29952,-9,29955,29954,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.744409328634,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,1013.25,76488.55882391761,36736.77094473963,133235.3822477622,95232.05871572498,2428.422845043788 -13306,16420,29953,-9,29955,29954,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.2044944861526,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1013.25,76488.55882391761,36736.77094473963,133235.3822477622,95232.05871572498,2428.422845043788 -13306,16420,29954,29955,-9,-9,1,1,26,0,2,0,3,3,-9,0,3,7.334079085125044,7.347924150472534,0,7,-6,54.95758572915771,0,-9,-9,2019,12,0,30,25,1,0,0,6.034324221378502,6.034324221378502,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.58,55.59,6.666666666666667,1,1,0,0,6,11,3,0,1013.25,76488.55882391761,36736.77094473963,133235.3822477622,95232.05871572498,2428.422845043788 -13306,16420,29955,29954,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.895504569895359,8.180812884910067,0,7,6,-29.16169850553765,0,3,3,2019,12,1,38,14,1,1,0,10.02532690699664,10.02532690699664,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.33,53.46,8.333333333333334,1,1,0,0,5,11,3,0,1013.25,76488.55882391761,36736.77094473963,133235.3822477622,95232.05871572498,2428.422845043788 -13307,16421,29956,29957,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,9,-6,-50.96163489265511,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,43.01,61.52,45.11,10,1,1,0,0,0,13,2,1,1293.5,547445.5265405171,246381.6970487142,268628.1276375772,0,2504.607801169719 -13307,16421,29957,29956,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.744490702516705,6.68218914925042,9,6,141.2203322348094,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.815135598498931,61.52,45.11,59.7,43.01,8.333333333333334,1,1,0,0,3,13,2,1,1293.5,547445.5265405171,246381.6970487142,268628.1276375772,0,2504.607801169719 -13307,16422,29958,-9,29956,29957,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1063.788202432326,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,13,1,1,676,0,0,0,0,465.2500126900412 -13308,16423,29959,29963,-9,-9,1,1,37,3,4,0,1,1,-9,0,5,8.506694522939817,8.537182246133925,0,11,10,34.33610688271192,0,2,1,2019,7,0,37,36,1,0,0,20.52689552048821,20.52689552048821,0,0,0,0,0,1,1,0,.8167774215434708,0,51.73,58.82,33.46,47.78,8.333333333333334,4,2,0,0,8,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13308,16423,29960,-9,29963,29959,1,0,4,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1107.354284861351,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13308,16423,29961,-9,29963,29959,1,1,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.723850863712,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13308,16423,29962,-9,29963,29959,1,0,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1144.64913016197,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13308,16423,29963,29959,-9,-9,1,0,27,3,4,0,2,2,-9,0,4,6.686979052641179,7.12049826165935,0,11,-10,10.10378567789107,0,2,2,2019,10,1,16,25,1,1,0,8.619788439756189,8.619788439756189,0,0,0,0,0,1,1,0,0,0,33.46,47.78,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13308,16423,29964,-9,29963,29959,1,1,1,3,4,1,3,0,-9,0,4,0,0,0,0,0,-927.4612948661556,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,904.3333333333334,297508.9893507573,272126.5071135352,96795.31110514094,84102.0508524996,3411.040127640439 -13309,16424,29965,-9,29971,29969,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-978.2606358215929,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29966,-9,29971,29969,1,0,12,2,6,1,3,0,-9,0,5,0,0,0,0,0,-954.4901397845197,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29967,-9,29971,29969,1,1,10,2,6,1,3,0,-9,0,2,0,0,0,0,0,-952.7405632554708,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29968,-9,29971,29969,1,0,1,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1015.43997230569,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29969,29971,-9,-9,1,1,34,2,6,0,2,2,-9,0,4,7.869795458884225,8.088356379954726,0,16,0,-41.06484128971417,0,3,3,2019,6,0,40,55,1,0,0,7.089156279549316,7.089156279549316,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.17,59.31,8.333333333333334,2,3,0,0,8,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29970,-9,29971,29969,1,0,6,2,6,1,3,0,-9,0,4,0,0,0,0,0,-907.4438622620326,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29971,29969,-9,-9,1,0,34,2,6,0,3,3,-9,0,4,0,0,0,6,0,12.3166570969345,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,57.16,56.15,10,2,3,0,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13309,16424,29972,-9,29971,29969,1,0,14,2,6,1,3,0,-9,0,3,0,0,0,0,0,-1034.820888941398,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,2,2,1,810.25,-11079.93730325381,-9005.949163446443,0,0,1508.737587360103 -13310,16425,29973,-9,29975,29974,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.4882967642399,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,702,114439.7201205522,129070.9749345488,90203.53991406799,66594.84721152765,3713.289711720689 -13310,16425,29974,29975,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.683670038883157,8.561393218929128,0,6,-1,40.31859669234046,0,3,2,2019,11,0,43,45,1,0,0,16.38294557888854,16.38294557888854,0,0,0,0,27,1,1,0,.0089325697541124,0,39.17,55.1,30.47,60.56,8.333333333333334,1,1,0,0,7,11,3,0,702,114439.7201205522,129070.9749345488,90203.53991406799,66594.84721152765,3713.289711720689 -13310,16425,29975,29974,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,0,0,0,6,1,-38.29251701122222,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,30.47,60.56,39.17,55.1,6.666666666666667,1,1,0,0,0,11,3,0,702,114439.7201205522,129070.9749345488,90203.53991406799,66594.84721152765,3713.289711720689 -13310,16426,29976,-9,29975,29974,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1065.915818563558,1,2,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.6760925293001526,0,48,59,-9,-9,7,1,1,0,0,0,11,1,0,2428,81500.06928424608,0,0,0,-83.39350980085246 -13311,16427,29977,29978,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,6.226423400492249,6.006463068122097,0,40,-5,-12.13439947773305,0,1,-9,2019,14,2,25,40,1,2,0,1.96062396045521,1.96062396045521,0,0,0,0,0,1,1,0,0,0,50.33,28.86,47.28,34.15,8.333333333333334,1,1,0,0,11,6,2,1,905,126683.5388802269,-92853.37238969753,0,0,1217.300110987489 -13311,16427,29978,29977,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,4.702764664339438,4.367135016313545,39,5,-1.109571060094291,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.609021235522935,4.5154759964876,47.28,34.15,50.33,28.86,8.333333333333334,1,1,0,0,7,6,2,1,905,126683.5388802269,-92853.37238969753,0,0,1217.300110987489 -13312,16428,29979,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.14668630503094,9.057292566700504,0,0,0,-970.6640916763389,0,2,-9,2019,9,0,36,37,1,0,0,28.31354231620761,28.31354231620761,0,0,0,0,0,0,0,0,1.745600539738377,0,35.93,55.1,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,945,637219.0839492826,409762.5510512579,0,0,2397.265233064644 -13313,16429,29980,-9,29982,29981,1,1,16,1,2,1,2,0,-9,0,4,0,0,0,0,0,-949.2697150230132,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.13,53.53,-9,-9,8.333333333333334,2,3,0,1,0,2,1,0,698.3333333333334,37697.89715757548,40514.99463759068,0,0,3376.023910518456 -13313,16429,29981,29982,-9,-9,1,1,56,1,2,0,3,3,-9,0,2,0,0,0,33,6,0,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,37.13,42.67,37.07,33.43,5,2,3,1,1,1,2,1,0,698.3333333333334,37697.89715757548,40514.99463759068,0,0,3376.023910518456 -13313,16429,29982,29981,-9,-9,1,0,50,1,2,0,3,3,-9,1,2,0,0,0,33,-6,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,37.07,33.43,37.13,42.67,3.333333333333333,2,3,0,1,0,2,1,0,698.3333333333334,37697.89715757548,40514.99463759068,0,0,3376.023910518456 -13313,16430,29983,29984,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,6.34522336047439,6.352509147499294,0,2,-2,110.4054555851262,0,-9,-9,2019,11,1,10,10,1,1,0,6.760598641706435,6.760598641706435,0,0,0,0,0,1,0,1,0,0,50.53,50.08,47.24,45.68,10,2,3,0,0,3,2,2,0,356,22952.14743192614,0,0,0,619.1189010287726 -13313,16430,29984,29983,29982,29981,1,1,24,1,2,0,2,2,-9,1,4,0,0,0,2,2,16.39828950713974,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,47.24,45.68,50.53,50.08,6.666666666666667,2,3,1,0,2,2,2,0,356,22952.14743192614,0,0,0,619.1189010287726 -13313,16430,29985,-9,29983,29984,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.099371633443,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,0,356,22952.14743192614,0,0,0,619.1189010287726 -13314,16431,29986,-9,29987,-9,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-958.5643922252352,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,1,0,1704.5,-157459.5515563611,0,0,0,1511.661267918768 -13314,16431,29987,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1003.806774272545,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,53.22,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1704.5,-157459.5515563611,0,0,0,1511.661267918768 -13314,16432,29988,-9,29987,-9,1,1,21,0,1,0,2,2,1,0,3,0,0,0,0,0,-1025.723970588011,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1426,0,0,0,0,0 -13315,16433,29989,-9,-9,-9,1,1,40,0,0,0,1,1,-9,1,1,7.255148658786026,7.452736285530306,0,0,0,-960.1422131086415,0,2,2,2019,33,11,15,25,1,11,0,12.08420704214614,12.08420704214614,0,0,0,0,7,1,1,0,0,0,18.23,42.35,-9,-9,1.666666666666667,1,1,0,0,10,9,3,1,1901,0,0,0,0,1405.644332785964 -13316,16434,29990,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.464005792823231,7.486410761125464,0,0,-1007.086495507183,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,2.078975448150076,0,24.29744626340845,0,1,1,0,3.002237794772779,7.452666506939755,62.62,21.31,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,391,245257.1578283929,93330.85290521392,167632.0230859332,0,1657.761329566871 -13317,16435,29991,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.790550865624508,7.362343239195718,0,0,-906.8005324801616,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.500011711276447,5.757662503007365,40.62,39.74,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,535,494440.0679227146,234857.0528878929,115715.8349526839,0,2165.962377766412 -13318,16436,29992,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.155067636270461,7.950958723641514,0,0,0,-940.9788839570209,0,3,2,2019,10,1,35,35,1,1,0,9.972145967188004,9.972145967188004,0,0,0,0,7,1,1,0,0,0,43.96,62.06,-9,-9,5,1,1,0,0,10,11,4,1,129,728900.1971918517,253644.0900353933,151742.4182041555,0,1627.04853106531 -13319,16437,29993,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,5.169552462164886,5.232048070481732,0,0,-968.8384044594367,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6463800704234525,5.538738279798455,50.73,41.81,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,64,133461.3787757109,123788.3033546173,274711.8446563443,0,742.5545985156821 -13320,16438,29994,29995,-9,-9,1,0,42,0,1,0,1,1,-9,1,2,0,0,0,22,-1,.9954116356161524,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,1.465281890484367,0,56.83,13.81,46.08,57.2,8.333333333333334,1,1,0,0,0,10,4,1,458.3333333333333,753571.200891663,456385.6716195631,335400.085036584,136406.321290923,3315.612464507434 -13320,16438,29995,29994,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.054573811471805,8.97542525056012,0,10,1,-51.08673137617021,0,-9,-9,2019,10,1,40,40,1,1,0,24.01571759581555,24.01571759581555,0,0,0,0,7,1,1,0,.2748810523830813,0,46.08,57.2,56.83,13.81,6.666666666666667,1,1,0,0,12,10,4,1,458.3333333333333,753571.200891663,456385.6716195631,335400.085036584,136406.321290923,3315.612464507434 -13320,16438,29996,-9,29994,29995,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1082.352338691944,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,1.234929810821413,0,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,458.3333333333333,753571.200891663,456385.6716195631,335400.085036584,136406.321290923,3315.612464507434 -13321,16439,29997,-9,30000,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.988337586293,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,350.5,-13141.54231778192,-42514.56177238436,0,0,2241.518455598374 -13321,16439,29998,-9,30000,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.146172669156,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,350.5,-13141.54231778192,-42514.56177238436,0,0,2241.518455598374 -13321,16439,29999,-9,30000,-9,1,0,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1042.616387073668,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,3,0,350.5,-13141.54231778192,-42514.56177238436,0,0,2241.518455598374 -13321,16439,30000,-9,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,8.327185637428448,7.799139989057934,0,0,0,-1051.621211460093,0,2,2,2019,8,0,38,25,1,0,0,8.589837702184441,8.589837702184441,0,0,0,0,0,1,1,0,0,0,53.04,51.28,-9,-9,5,4,2,0,1,8,8,3,0,350.5,-13141.54231778192,-42514.56177238436,0,0,2241.518455598374 -13322,16440,30001,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.816113961319858,5.923328797959081,0,0,-1093.024693470612,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.978903691742332,5.907764637558386,56.47,59.4,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,220,439554.8713717395,128567.8111696738,327887.8221465995,0,1008.649927134449 -13323,16441,30002,30005,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,7.058264989396663,6.794771560032067,0,8,3,-97.172413009582,-9,-9,-9,2019,4,0,15,0,1,0,0,8.691353512296832,8.691353512296832,0,0,0,0,0,1,1,0,0,0,61.52,42.41,44.86,24.37,10,1,1,0,0,10,13,3,1,2539.5,153342.5542269049,15365.8364312163,236055.0882380567,14449.52111140736,2203.868515361034 -13323,16441,30003,-9,30002,30005,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.5903009031352,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,2539.5,153342.5542269049,15365.8364312163,236055.0882380567,14449.52111140736,2203.868515361034 -13323,16441,30004,-9,30002,30005,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1055.913201349256,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,2539.5,153342.5542269049,15365.8364312163,236055.0882380567,14449.52111140736,2203.868515361034 -13323,16441,30005,30002,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.047970879188835,7.857772403123664,0,18,-3,-.0721548367395397,0,3,2,2019,12,1,42,37,1,1,0,10.15099579879478,10.15099579879478,0,0,0,0,0,1,1,0,0,0,44.86,24.37,61.52,42.41,6.666666666666667,1,1,0,0,10,13,3,1,2539.5,153342.5542269049,15365.8364312163,236055.0882380567,14449.52111140736,2203.868515361034 -13324,16442,30006,-9,30008,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.346025022152,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,461.6666666666667,-23043.44734077241,0,0,0,1410.547431665967 -13324,16442,30007,-9,30008,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.3644447670673,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,461.6666666666667,-23043.44734077241,0,0,0,1410.547431665967 -13324,16442,30008,-9,-9,-9,1,0,28,0,2,0,3,3,-9,0,5,0,5.358691159087527,5.728510836518736,0,0,-952.8201183093978,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.200299299943899,0,48.44,52.16,-9,-9,3.333333333333333,1,1,0,1,2,11,2,0,461.6666666666667,-23043.44734077241,0,0,0,1410.547431665967 -13325,16443,30009,30010,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.360824825934827,7.12426844282159,47,-4,56.17250273695845,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1428360815433728,7.295864789063169,66.06,38.34,58.15,52.91,8.333333333333334,1,1,0,0,0,7,3,1,736,895662.588697423,274772.0239311558,511309.4396415864,0,2404.337673358361 -13325,16443,30010,30009,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.362210383965284,5.966318459545631,47,4,-118.1415982561909,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.996314330601334,58.15,52.91,66.06,38.34,8.333333333333334,1,1,0,0,0,7,3,1,736,895662.588697423,274772.0239311558,511309.4396415864,0,2404.337673358361 -13326,16444,30011,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,4,7.974274754631915,7.979911983413666,1.91502751382702,0,0,-1022.151238618616,0,2,2,2019,34,12,50,-9,1,12,0,7.988593241892683,7.988593241892683,0,0,0,0,0,1,1,0,1.96027892794418,0,40.84,44.66,-9,-9,5,2,3,0,1,11,6,4,1,344,-2200.076402700084,-32804.85196807215,0,0,1755.100721717808 -13327,16445,30012,-9,30014,30015,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.762141721744,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,5,0,1780.75,35835.33845631457,44633.79140616965,201085.0249021737,151546.9123205748,4904.472911633823 -13327,16445,30013,-9,30014,30015,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.8163594152236,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,5,0,1780.75,35835.33845631457,44633.79140616965,201085.0249021737,151546.9123205748,4904.472911633823 -13327,16445,30014,30015,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,9.32209532163732,9.374254901620775,0,8,-1,95.51658387149907,0,2,3,2019,0,0,60,48,1,0,0,18.88100920389529,18.88100920389529,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,0,2,3,0,0,8,13,5,0,1780.75,35835.33845631457,44633.79140616965,201085.0249021737,151546.9123205748,4904.472911633823 -13327,16445,30015,30014,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.469629361407024,7.621243524644291,0,7,1,-25.83475656994312,0,-9,-9,2019,0,0,36,84,1,0,0,4.358212039514465,4.358212039514465,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,13,5,0,1780.75,35835.33845631457,44633.79140616965,201085.0249021737,151546.9123205748,4904.472911633823 -13328,16446,30016,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,10.21740130554237,10.43499586458291,9.142007193083064,21,-7,63.05691856378798,0,-9,-9,2019,11,0,22,65,1,0,0,131.2567136100378,131.2567136100378,0,0,0,0,7,1,1,0,6.186055791842206,9.653722340233573,52.38,47.57,52,54.51,8.333333333333334,1,1,0,0,12,6,5,1,388,789397.9881383136,692628.9197148718,171290.5914600983,58515.48323822023,11945.60370925206 -13328,16447,30017,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.585753932859282,7.475033276650646,20,7,72.1840356519179,0,1,1,2019,11,1,0,0,4,1,0,0,0,1,.8552940104900455,0,28.04723840251794,0,1,1,0,5.64788633812974,7.962223996850478,52,54.51,52.38,47.57,8.333333333333334,1,1,0,0,8,6,5,1,410,938872.1359190678,318003.1597590365,241173.3651821753,0,1483.44013220262 -13329,16448,30018,-9,-9,-9,1,1,82,0,1,0,2,2,-9,0,3,0,7.33239203168381,7.150441960530205,0,0,-1001.221435251943,0,3,1,2019,9,0,0,0,4,1,0,0,0,1,0,7.564068003851709,0,0,1,1,0,7.284624625642203,7.392141623544144,54,46,-9,-9,8,1,1,0,0,0,7,2,1,871,3537.646130990746,-36292.77275507365,0,0,1671.244190561149 -13329,16449,30019,-9,30022,30020,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-902.0546421925935,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,3,7,4,1,1969.25,628274.7969561275,355957.0162779016,358991.5443925508,54516.38465557611,4343.805202812954 -13329,16449,30020,30022,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.377185747614183,8.139585373394437,0,2,13,1.898309249063581,-9,-9,-9,2019,7,1,50,0,1,1,0,7.517979310915586,7.517979310915586,0,0,0,0,0,1,1,0,0,0,42.29,58.81,45.91,59.89,6.666666666666667,1,1,0,0,11,7,4,1,1969.25,628274.7969561275,355957.0162779016,358991.5443925508,54516.38465557611,4343.805202812954 -13329,16449,30021,-9,30022,30020,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.252750783868,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,1969.25,628274.7969561275,355957.0162779016,358991.5443925508,54516.38465557611,4343.805202812954 -13329,16449,30022,30020,-9,30018,1,0,39,0,1,0,2,2,-9,0,4,8.323591549424615,8.436203719302283,0,2,-13,55.91674274635299,0,-9,2,2019,15,3,60,60,1,3,0,8.168135218651155,8.168135218651155,0,0,0,0,2,1,1,0,0,0,45.91,59.89,42.29,58.81,6.666666666666667,1,1,0,1,7,7,4,1,1969.25,628274.7969561275,355957.0162779016,358991.5443925508,54516.38465557611,4343.805202812954 -13330,16450,30023,30024,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,29,0,0,0,3,3,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37,15.95,22.94,26.43,0,1,1,0,0,0,9,1,0,442.5,-121255.8199920728,0,0,0,2622.963153942536 -13330,16450,30024,30023,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,0,0,24,9,0,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,22.94,26.43,37,15.95,3.333333333333333,1,1,0,0,0,9,1,0,442.5,-121255.8199920728,0,0,0,2622.963153942536 -13330,16451,30025,-9,30023,30024,1,1,22,0,0,0,2,2,-9,1,4,0,0,0,0,0,-816.8864338418961,0,2,3,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,42,1,1,0,0,0,49.21,58.31,-9,-9,6.666666666666667,1,1,1,0,0,9,1,0,951,36799.38532838402,0,0,0,413.4920945390493 -13331,16452,30026,30027,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.120982780110435,8.518401385639553,7.427356261075291,5,0,-67.70373038928747,0,3,3,2019,12,0,24,27,1,0,0,14.47755046392405,14.47755046392405,0,0,0,0,0,1,1,0,7.36017474369661,7.533246473216813,57.06,57.76,32.74,16.46,10,1,1,0,0,7,2,5,1,942,1014247.98090726,900578.4260427353,128241.3871262246,11098.88732490732,8813.834276115718 -13331,16452,30027,30026,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,9.194776418198458,9.093924400211987,0,5,0,-17.89926167168035,-9,3,3,2019,25,12,45,0,1,12,0,22.37797093312556,22.37797093312556,0,0,0,0,0,1,1,0,4.66033377417421,0,32.74,16.46,57.06,57.76,3.333333333333333,1,1,0,0,8,2,5,1,942,1014247.98090726,900578.4260427353,128241.3871262246,11098.88732490732,8813.834276115718 -13332,16453,30028,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.715360476337133,7.966800884065058,0,0,0,-978.7219557369842,0,-9,-9,2019,6,0,38,36,1,0,0,7.920165943637673,7.920165943637673,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,306,11057.09060732643,2486.001203422784,0,0,1683.666950500849 -13333,16454,30029,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.802100632519759,6.943617222218968,0,0,-976.4796020616387,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.955647886239539,6.84934788533886,45.76,54.84,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,540,-34603.23327757897,0,0,0,2153.971919618948 -13334,16455,30030,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.280689416997751,7.168785112088378,0,0,-1022.682184933202,0,2,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,2.608828138715833,6.999707288319785,44.9,43.04,-9,-9,5,1,1,0,0,7,1,2,1,1371,306895.0669153059,89841.41494012138,109758.1114616437,0,510.855863667092 -13335,16456,30031,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.074445020933849,8.768053201251979,0,0,0,-972.3334996581086,0,3,-9,2019,9,0,50,46,1,1,0,20.36470109190832,20.36470109190832,0,0,0,0,0,0,0,0,7.103596466591579,0,53,54,-9,-9,8,2,3,0,0,8,8,5,0,1327,207699.5715986235,24233.33467301633,138850.4541302013,81690.61053940874,2919.405742345735 -13335,16457,30032,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.364147497823241,8.544710162473937,0,0,0,-1097.987432797159,0,2,2,2019,9,0,46,46,1,1,0,9.789091561332377,9.789091561332377,0,0,0,0,0,0,0,0,0,0,53,54,-9,-9,8,2,3,0,0,8,8,4,0,894,-139507.0898300519,0,155340.275838155,52898.70911493641,1930.098257424104 -13335,16458,30033,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.855164183531222,8.917950113848741,0,0,0,-927.7868535114231,0,3,3,2019,9,0,46,46,1,1,0,13.43304103754593,13.43304103754593,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,7,2,3,0,0,8,8,5,0,234,186199.6090700057,69836.62027443686,0,0,1917.117608369342 -13335,16459,30034,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.822968780775158,8.829720215331433,0,0,0,-989.2800272245485,0,2,2,2019,9,0,46,48,1,1,0,17.29038172617899,17.29038172617899,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,7,2,3,0,0,7,8,5,0,1431,224000.2723284805,122387.2749190639,0,0,2915.840371130651 -13336,16460,30035,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.165230097283928,8.195331907883746,0,0,0,-1223.981111760966,0,1,1,2019,11,0,41,0,1,2,0,10.77411228394886,10.77411228394886,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,8,4,0,144,71955.42101416099,0,0,0,1795.147459605326 -13337,16461,30036,30037,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,31,-2,-209.467831545372,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,0,0,40.36,55.57,49.28,50.19,6.666666666666667,1,1,0,0,3,11,2,1,343,638646.9401948313,481035.1748322003,52659.59990251801,0,657.3001241647938 -13337,16461,30037,30036,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.239959478779528,7.290914477235722,2,2,-86.30943079074308,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.362879276888131,49.28,50.19,40.36,55.57,8.333333333333334,1,1,0,0,0,11,2,1,343,638646.9401948313,481035.1748322003,52659.59990251801,0,657.3001241647938 -13338,16462,30038,30039,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.67674337886751,9.568796113285906,0,6,0,-33.43245874031774,0,2,1,2019,9,0,37,40,1,1,0,50.90043953114019,50.90043953114019,0,0,0,0,0,0,0,0,1.109386536080358,0,53,54,55.19,54.26,8,1,1,0,0,1,7,5,1,1199.5,1845049.396476853,814413.5838593452,293249.0966205994,231500.1766126041,11716.0226345487 -13338,16462,30039,30038,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.478372039300003,8.61133945858367,0,6,0,-116.221594471516,0,1,2,2019,7,1,42,42,1,1,0,15.43746454054102,15.43746454054102,0,0,0,0,0,0,0,0,8.541758102920651,0,55.19,54.26,53,54,8.333333333333334,1,1,0,0,7,7,5,1,1199.5,1845049.396476853,814413.5838593452,293249.0966205994,231500.1766126041,11716.0226345487 -13338,16463,30040,-9,30039,30038,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-853.5236079737159,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,1705,46656.66542963968,0,0,0,-100.1437382490354 -13339,16464,30041,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1057.146968937607,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,10,1,1,0,0,2,12,1,0,568,-30102.23181398235,0,0,0,.0909712461773324 -13340,16465,30042,-9,30043,30044,1,1,36,0,0,0,3,3,-9,0,5,8.120440189383197,7.76107550519646,0,0,0,-941.9874144778738,0,2,1,2019,9,0,50,55,1,0,0,7.00272520223915,7.00272520223915,0,0,0,0,0,1,1,0,0,0,51.62,53.51,-9,-9,6.666666666666667,1,1,0,1,6,6,4,1,1454,-67552.1806996176,81887.7850753439,0,0,1305.301261240069 -13340,16466,30043,30044,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.697203720839185,7.748844233728685,0,5,-3,-75.19481717717223,0,-9,-9,2019,6,0,17,21,1,0,0,17.73434398903871,17.73434398903871,0,0,0,0,0,1,1,0,0,0,58.3,52.91,53,47,8.333333333333334,1,1,0,0,8,6,4,1,490.5,958094.7095118788,488374.7599308008,459806.6786946412,92489.14864150452,6538.527692789847 -13340,16466,30044,30043,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.096889256396281,8.34790002168522,0,5,3,10.28437000852058,-9,-9,-9,2019,10,0,37,0,1,1,0,9.428019948738614,9.428019948738614,1,0,0,0,0,1,1,0,9.613184989341359,0,53,47,58.3,52.91,7,4,1,0,0,1,6,4,1,490.5,958094.7095118788,488374.7599308008,459806.6786946412,92489.14864150452,6538.527692789847 -13341,16467,30045,-9,30046,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-922.6868188248563,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,13,1,1,555,10231.99822663307,0,0,0,428.9797707446157 -13341,16468,30046,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1061.963096843569,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.16,41.93,-9,-9,10,1,1,0,0,0,13,1,1,587,-113836.8764530342,0,0,0,1235.816939954685 -13342,16469,30047,30048,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.379444473157811,8.329635487942882,0,12,13,75.43916154461246,0,2,2,2019,11,1,38,38,1,1,0,12.41407297757797,12.41407297757797,0,0,0,0,0,0,0,0,0,0,34.86,30.51,54.79,55.86,8.333333333333334,1,1,0,0,10,5,5,1,641,517882.7196741987,61002.82323389807,56265.55666553309,59943.68748546487,4153.398775901785 -13342,16469,30048,30047,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.997819088642446,9.038764471105559,0,12,-13,-50.50352372929808,0,2,2,2019,2,1,39,40,1,1,0,23.74218545844005,23.74218545844005,0,0,0,0,0,0,0,0,3.509310916630906,0,54.79,55.86,34.86,30.51,8.333333333333334,1,1,0,0,12,5,5,1,641,517882.7196741987,61002.82323389807,56265.55666553309,59943.68748546487,4153.398775901785 -13343,16470,30049,30050,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.019456536151165,6.375467031463801,3.204738402799602,24,-2,115.2144124375949,0,-9,-9,2019,6,0,20,20,1,0,0,2.563249702433871,2.563249702433871,0,0,0,0,0,1,1,0,3.437107988384823,3.704080553275758,63.41,39.7,58.47,50.22,10,1,1,0,0,8,7,2,1,2011.5,42278.80081402166,0,0,0,1665.225379263965 -13343,16470,30050,30049,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.65221479633519,6.669787032638967,25,2,-30.54802668980151,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.470552636381853,6.305177717035273,58.47,50.22,63.41,39.7,8.333333333333334,1,1,0,0,6,7,2,1,2011.5,42278.80081402166,0,0,0,1665.225379263965 -13344,16471,30051,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,.044727425849438,.0724367257719848,0,0,0,-992.0058952140788,0,3,3,2019,7,0,40,65,1,0,0,.0004663433547926,.0004663433547926,0,0,0,0,0,0,0,0,3.494404066242947,0,49.27,56.95,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,403,564452.173583272,223275.4210893816,238234.1490927834,0,-286.3515574806877 -13345,16472,30052,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.096506989766489,7.828412958969343,0,0,0,-1126.042974254818,0,2,1,2019,23,11,40,35,1,11,0,7.580686557576195,7.580686557576195,0,0,0,0,0,0,0,0,1.05215303951358,0,36.94,49.35,-9,-9,1.666666666666667,1,1,0,0,10,9,4,1,304,548215.3415858867,-22572.87324819178,477360.7579315181,110904.1870196678,1037.688311284178 -13346,16473,30053,-9,30054,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.969131904449,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.7678969680332237,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,1096,-60095.50407505211,-63220.2653850916,0,0,1444.914906407467 -13346,16473,30054,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.480840571599254,7.638193053632398,0,0,0,-1029.671386028772,0,-9,-9,2019,7,0,28,26,1,0,0,7.804774301491441,7.804774301491441,0,0,0,0,0,1,1,0,0,0,52.62,44.4,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,1096,-60095.50407505211,-63220.2653850916,0,0,1444.914906407467 -13346,16474,30055,-9,30054,-9,1,1,19,0,1,0,2,2,-9,0,3,6.56023165546188,6.760125796007211,0,0,0,-946.1782448075927,0,2,-9,2019,7,0,15,15,1,0,1,5.111639202867637,5.111639202867637,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,3.333333333333333,1,1,0,0,2,2,2,0,2136,138738.9714547781,-47840.99090460553,0,0,408.3373330025403 -13347,16475,30056,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,7.132346996588332,7.003069860518996,0,0,-1134.289710429596,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,.4632412613143906,0,1,1,0,0,7.097499303599378,43.53,35.87,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,682,466740.4282039806,184659.277824285,207679.7453990862,0,891.5275807306775 -13348,16476,30057,30058,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,7.746979294363056,7.216082697888598,49,-8,81.06454583887991,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.402226751250587,7.378727597086929,50.54,62.09,61.28,48.88,8.333333333333334,1,1,0,0,0,1,3,1,326.5,817363.6266713287,196440.9308015558,187314.7515370712,0,2582.17982180886 -13348,16476,30058,30057,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,49,8,-44.4573027157025,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.494285719207459,0,61.28,48.88,50.54,62.09,10,1,1,0,0,0,1,3,1,326.5,817363.6266713287,196440.9308015558,187314.7515370712,0,2582.17982180886 -13349,16477,30059,30062,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,.7335691601144457,.4888598823030426,0,5,3,-63.25315704395993,0,2,3,2019,10,0,90,55,1,0,0,.0020794683293428,.0020794683293428,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.58,51.2,8.333333333333334,1,1,0,0,9,13,3,1,790,-45077.02758070983,-35328.17760879741,0,0,1542.209529013309 -13349,16477,30060,-9,30062,30059,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-996.3344239207986,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,790,-45077.02758070983,-35328.17760879741,0,0,1542.209529013309 -13349,16477,30061,-9,30062,30059,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.2434300198682,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,790,-45077.02758070983,-35328.17760879741,0,0,1542.209529013309 -13349,16477,30062,30059,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,7.874821075382754,8.368736558459196,4.723350539839949,5,-3,79.9990805817089,0,-9,-9,2019,12,1,35,30,1,1,0,9.27523702106657,9.27523702106657,0,0,0,0,0,1,1,0,5.143994484536977,0,44.58,51.2,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,790,-45077.02758070983,-35328.17760879741,0,0,1542.209529013309 -13350,16478,30063,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.90489330370833,8.342791861978524,5.65540026367688,0,0,-1010.321822183808,0,3,3,2019,14,2,38,37,1,2,0,12.85628730212834,12.85628730212834,0,0,0,0,0,0,0,0,0,6.200071358562656,45.2,51.14,-9,-9,5,1,1,0,0,11,1,4,1,1675,140070.7866044488,-76224.93514352446,0,0,1056.702764940981 -13351,16479,30064,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.229132312229587,5.505645178985151,0,0,-832.8498145026517,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,6.315892526311295,2.646808080668453,0,0,1,1,0,4.323151778697904,5.494084035225884,54,44,-9,-9,8,1,1,0,0,0,5,2,1,2317,-71339.87571333318,-95538.36094107876,0,0,580.6663704090707 -13352,16480,30065,-9,30066,30067,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-822.5776298842618,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,838.6666666666666,220693.7389716691,3780.58251372515,377854.8902999315,160674.7331462734,3025.775939377717 -13352,16480,30066,30067,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.156271276425763,8.026074861628027,0,8,13,-23.16852057777522,0,2,3,2019,14,4,37,37,1,4,0,9.167298774750746,9.167298774750746,0,0,0,0,14.5,1,1,0,0,0,49.56,49.91,43.2,59.97,8.333333333333334,1,1,0,0,13,5,4,1,838.6666666666666,220693.7389716691,3780.58251372515,377854.8902999315,160674.7331462734,3025.775939377717 -13352,16480,30067,30066,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.366964283803547,8.315786393056461,0,8,-13,19.5697323864865,0,-9,-9,2019,12,0,44,48,1,0,0,10.44075094261925,10.44075094261925,0,0,0,0,2,1,1,0,0,0,43.2,59.97,49.56,49.91,8.333333333333334,1,1,0,0,10,5,4,1,838.6666666666666,220693.7389716691,3780.58251372515,377854.8902999315,160674.7331462734,3025.775939377717 -13353,16481,30068,30069,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.3702686763113,7.212832656572682,9,-1,7.815711530076934,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.250021051895638,7.003694756611218,56.47,46.82,55.24,40.62,8.333333333333334,1,1,0,0,6,7,3,1,596.5,2587588.469178965,755446.9882057746,330542.7026247093,0,3713.307390395355 -13353,16481,30069,30068,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.852506052301425,8.135982851704146,9,1,-37.4003379168182,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.921312712193747,7.476878781061512,55.24,40.62,56.47,46.82,8.333333333333334,1,1,0,0,1,7,3,1,596.5,2587588.469178965,755446.9882057746,330542.7026247093,0,3713.307390395355 -13354,16482,30070,30072,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,8.508448034535611,8.543486264114103,0,6,1,-34.48449494326171,0,3,3,2019,23,11,35,0,1,11,0,12.72498823830443,12.72498823830443,0,0,0,0,2,1,1,0,4.784180474104771,0,40.48,45.26,57.06,57.76,3.333333333333333,1,1,0,0,6,10,5,1,847,334263.0939555917,186769.6242049773,228536.8460864542,123637.5865339775,3646.695609153662 -13354,16482,30071,-9,30070,30072,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.8394208397,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,847,334263.0939555917,186769.6242049773,228536.8460864542,123637.5865339775,3646.695609153662 -13354,16482,30072,30070,-9,-9,1,1,44,0,1,0,2,2,-9,0,5,8.475070723864253,8.504764787539816,0,6,-1,-80.75860607110283,0,2,1,2019,7,0,43,41,1,0,0,11.95503772988051,11.95503772988051,0,0,0,0,0,1,1,0,0,0,57.06,57.76,40.48,45.26,8.333333333333334,1,1,0,0,7,10,5,1,847,334263.0939555917,186769.6242049773,228536.8460864542,123637.5865339775,3646.695609153662 -13355,16483,30073,30074,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.572780555700412,8.800857467692071,0,9,0,50.30506141795269,0,3,2,2019,8,0,50,48,1,0,0,10.88878019936234,10.88878019936234,0,0,0,0,0,0,0,0,0,0,54.96,53.17,48.53,50.88,6.666666666666667,1,1,0,0,10,4,5,1,778,436210.8683587909,52708.30538871859,325099.6252212914,0,2518.917111231979 -13355,16483,30074,30073,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.339377481585389,7.612926240377221,0,9,9,22.14009352957162,0,3,-9,2019,14,2,28,27,1,2,0,6.509362849622228,6.509362849622228,0,0,0,0,0,0,0,0,0,0,48.53,50.88,54.96,53.17,8.333333333333334,4,2,0,0,9,4,5,1,778,436210.8683587909,52708.30538871859,325099.6252212914,0,2518.917111231979 -13356,16484,30075,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,5,0,6.27339127288756,6.608280887953847,0,0,-959.7961080610529,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.96919354129207,6.411100228020554,64.66,50.23,-9,-9,10,1,1,0,0,0,1,2,1,1335,-49331.32134907262,149400.6479447667,139559.5715879835,0,1165.722279057235 -13357,16485,30076,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1164.140308827275,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,9,1,0,2107,34095.98375190659,0,0,0,1815.649600854364 -13358,16486,30077,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.762754093957456,7.621333467379242,0,0,-964.1745636929703,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.041287735714473,7.369824410170586,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,108,687074.964228739,535068.8627996093,138274.9896540801,0,1259.491448720185 -13359,16487,30078,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.740966864633092,7.975594348833663,6.947521949169085,0,0,-906.3556001280294,0,3,3,2019,6,0,21,22,1,0,0,16.52710942968428,16.52710942968428,0,0,0,0,0,1,1,0,1.083354753256144,7.301250966161468,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,659,673815.1751305023,38649.84790594057,325378.8085364758,99296.22031127618,2120.498340568964 -13360,16488,30079,30081,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.415074423724532,8.411428833948795,0,23,-3,-68.05200388075595,0,1,1,2019,14,2,40,45,1,2,0,13.26396152101155,13.26396152101155,0,0,0,0,0,0,0,0,5.323680348227287,0,44.71,42.94,51.66,54.88,8.333333333333334,1,1,0,0,9,12,5,1,430,890435.4096329182,396539.9783315973,252921.764868047,118242.7192000908,6897.211091669668 -13360,16488,30080,-9,30079,30081,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-957.8057334163937,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,47.86,-9,-9,5,1,1,0,0,0,12,5,1,430,890435.4096329182,396539.9783315973,252921.764868047,118242.7192000908,6897.211091669668 -13360,16488,30081,30079,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.396217398294491,9.635035106080736,0,23,3,97.76594943759694,0,1,1,2019,12,0,40,60,1,0,0,46.36227810806232,46.36227810806232,0,0,0,0,0,0,0,0,0,0,51.66,54.88,44.71,42.94,8.333333333333334,1,1,0,0,10,12,5,1,430,890435.4096329182,396539.9783315973,252921.764868047,118242.7192000908,6897.211091669668 -13360,16488,30082,-9,30079,30081,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.2322667892255,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,430,890435.4096329182,396539.9783315973,252921.764868047,118242.7192000908,6897.211091669668 -13361,16489,30083,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.831985478429992,7.819282663815144,0,0,-934.2212734783864,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.670615708045841,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,685,691073.9359125146,398643.7458837013,211108.371539381,35194.61340022524,1305.333064171271 -13362,16490,30084,30085,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.499342293090206,7.130993119818785,34,6,98.31574433024622,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.633624090491046,54.79,55.86,47.15,37.9,8.333333333333334,1,1,0,0,0,1,2,1,1012,459723.2218884983,264182.7328257178,178202.742099292,0,1604.295830201814 -13362,16490,30085,30084,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,34,-6,15.88436897291459,0,-9,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.6862228836461545,0,47.15,37.9,54.79,55.86,3.333333333333333,1,1,0,0,0,1,2,1,1012,459723.2218884983,264182.7328257178,178202.742099292,0,1604.295830201814 -13362,16491,30086,-9,30085,30084,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-983.4382817007739,0,2,2,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,1,0,0,1,1,1,610,173099.5138099947,0,0,0,0 -13362,16492,30087,-9,30085,30084,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1053.022600825243,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,0,1,1,1,264,28160.38066211871,0,0,0,0 -13363,16493,30088,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,9.303331548782237,10.10832125388597,8.322511666916141,0,0,-1092.91449387398,0,2,2,2019,12,0,20,15,1,0,0,73.35160588029458,73.35160588029458,0,0,0,0,0,0,0,0,7.448424268403993,8.354299007138202,50.01,55.31,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,299,1110832.266504837,834447.4645427564,404434.8060458272,149390.2379498052,7407.406804652032 -13364,16494,30089,30090,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,5.421616788275908,5.293392334883693,0,5,5,-30.25171438061731,0,1,2,2019,8,0,34,28,1,0,0,.8237143957238653,.8237143957238653,0,0,0,0,0,0,0,0,7.170630558274341,0,54.1,59.11,48.9,53.24,8.333333333333334,1,1,0,0,9,9,3,0,242.5,266919.3332355884,162241.7202413498,222129.0873359537,97767.11104226859,1894.632488256653 -13364,16494,30090,30089,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.965301933771964,8.300730432232395,0,5,-5,105.8269168236502,0,-9,-9,2019,11,0,45,43,1,0,0,10.57166114605311,10.57166114605311,0,0,0,0,0,0,0,0,0,0,48.9,53.24,54.1,59.11,8.333333333333334,1,1,0,0,5,9,3,0,242.5,266919.3332355884,162241.7202413498,222129.0873359537,97767.11104226859,1894.632488256653 -13365,16495,30091,30092,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.123038869324361,8.170466012396551,0,4,-2,46.76980451610358,0,-9,-9,2019,12,1,40,38,1,1,0,10.52742081103938,10.52742081103938,0,0,0,0,0,0,0,0,.7295295326137341,0,51.77,58.57,57.16,56.15,10,1,1,0,0,3,10,5,1,509.5,113806.939519592,14567.37303161029,139991.52312409,121049.0003994265,3696.716794813842 -13365,16495,30092,30091,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.52912102738811,8.445555900716936,0,4,2,55.79339377741627,0,1,2,2019,6,0,40,48,1,0,0,15.39081248768305,15.39081248768305,0,0,0,0,0,0,0,0,.8299297667153689,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,8,10,5,1,509.5,113806.939519592,14567.37303161029,139991.52312409,121049.0003994265,3696.716794813842 -13366,16496,30093,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,7.06451153388164,6.978946338581618,0,0,0,-804.9384549775307,0,2,2,2019,6,0,20,38,1,0,1,6.923116199446516,6.923116199446516,0,0,0,0,0,1,1,0,0,0,55.66,46.03,-9,-9,5,2,3,0,0,6,8,3,1,445,-97269.47355861811,76688.61396275542,0,0,718.2632635955244 -13366,16497,30094,-9,-9,-9,1,1,22,0,1,1,2,0,0,0,2,0,0,0,0,0,-1053.559784353365,-9,2,2,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,12.74,58.19,-9,-9,5,2,3,0,1,1,8,2,1,747,0,0,0,0,404.3961052528195 -13367,16498,30095,30096,-9,-9,1,0,28,0,0,0,3,3,-9,0,3,8.742318341997164,8.676350937771376,0,5,-2,-45.68010088153164,-9,-9,-9,2019,18,6,37,0,1,6,0,16.95454794599274,16.95454794599274,0,0,0,0,0,0,0,0,0,0,30.9,57.35,37.62,55.66,3.333333333333333,1,1,0,0,6,10,5,0,837.5,174385.4253945573,235612.9544672793,133529.3596574478,118730.780207858,3229.059529927536 -13367,16498,30096,30095,-9,-9,1,1,30,0,0,0,3,3,-9,0,3,8.048395850979563,8.312135144694016,0,5,2,-21.00742196639467,0,-9,-9,2019,12,0,37,37,1,0,0,9.634421143682987,9.634421143682987,0,0,0,0,0,0,0,0,0,0,37.62,55.66,30.9,57.35,5,1,1,0,0,9,10,5,0,837.5,174385.4253945573,235612.9544672793,133529.3596574478,118730.780207858,3229.059529927536 -13368,16499,30097,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.435533545051245,7.09122209608743,0,0,-975.0037336424725,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.347437801998509,47.79,53.79,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1344,669756.8274796981,301504.8947667951,148371.3066714296,0,1142.416801552724 -13369,16500,30098,-9,30100,30101,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.831649113167,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,758.75,-37179.08641815796,0,0,0,2819.123916957084 -13369,16500,30099,-9,30100,30101,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.520039679681,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,758.75,-37179.08641815796,0,0,0,2819.123916957084 -13369,16500,30100,30101,-9,-9,1,0,37,0,2,0,2,2,-9,1,1,0,0,0,5,-7,80.99481401753913,0,-9,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.63,38.01,59.43,58.05,1.666666666666667,1,1,1,0,1,4,3,0,758.75,-37179.08641815796,0,0,0,2819.123916957084 -13369,16500,30101,30100,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.518813895573725,8.125344591728934,0,5,7,-137.3758355946958,0,-9,-9,2019,6,1,70,97,1,1,0,9.235591570400864,9.235591570400864,0,0,0,0,0,1,1,0,0,0,59.43,58.05,23.63,38.01,6.666666666666667,1,1,0,0,1,4,3,0,758.75,-37179.08641815796,0,0,0,2819.123916957084 -13370,16501,30102,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-848.857559375821,-9,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,0,0,38.39,48.48,-9,-9,5,1,1,1,0,11,2,1,0,1080,19147.61877707821,0,0,0,0 -13371,16502,30103,-9,30104,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1065.17140879225,-9,2,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,457,-77617.86599939789,0,0,0,1810.559604490754 -13371,16502,30104,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,0,0,0,0,0,-925.77931619745,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.74,51.07,-9,-9,8.333333333333334,2,3,0,1,0,8,1,0,457,-77617.86599939789,0,0,0,1810.559604490754 -13371,16502,30105,-9,30104,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.104275512936,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,457,-77617.86599939789,0,0,0,1810.559604490754 -13372,16503,30106,30107,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.808515144630546,7.998284237190053,48,-3,106.6976944893891,0,3,3,2019,19,9,0,0,4,9,0,0,0,1,0,127.6437183974505,0,0,1,1,0,3.657108309131682,7.602660804352315,47.83,24.52,36.54,41.81,8.333333333333334,1,1,0,0,0,2,3,1,245.5,571186.9657876196,258710.8445095057,246998.3119071749,0,2583.078639413051 -13372,16503,30107,30106,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.266914617222213,6.448464131305322,48,3,-106.4804542367414,0,2,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,3.430010589336967,6.130397296788035,36.54,41.81,47.83,24.52,3.333333333333333,1,1,0,0,0,2,3,1,245.5,571186.9657876196,258710.8445095057,246998.3119071749,0,2583.078639413051 -13373,16504,30108,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,.9052261819405178,.4966259691448205,0,0,0,-874.6853788073481,0,-9,-9,2019,21,7,10,-9,1,7,0,.0190497415100252,.0190497415100252,0,0,0,0,0,1,1,0,0,0,36.35,49.87,-9,-9,5,3,4,0,1,2,8,2,0,599,23839.9506885081,20459.73469084416,0,0,1259.703338006991 -13373,16505,30109,-9,30108,-9,1,1,22,0,1,0,2,2,1,0,5,7.875658579018692,7.69909479615281,0,0,0,-917.9597171109837,-9,2,-9,2019,5,1,35,0,1,1,1,8.119155883829475,8.119155883829475,0,0,0,0,0,1,1,0,0,0,53.75,59.47,-9,-9,10,3,4,0,0,4,8,4,0,658,-94926.80077624138,0,0,0,1755.910762476276 -13374,16506,30110,-9,30111,30112,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.925845370929,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,780.25,592899.094580726,321038.234501616,275443.448146222,12143.35581215563,2137.550976938971 -13374,16506,30111,30112,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.309461735940701,8.092741703961426,0,6,-3,-136.7602493145624,0,1,1,2019,21,9,30,29,1,9,0,12.80085468235391,12.80085468235391,0,0,0,0,0,1,1,0,0,0,23.89,59.55,50.81,47.25,1.666666666666667,1,1,0,0,7,12,3,1,780.25,592899.094580726,321038.234501616,275443.448146222,12143.35581215563,2137.550976938971 -13374,16506,30112,30111,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,7.027903128953343,7.045553509870083,0,6,3,21.57405918753125,0,2,2,2019,11,0,70,55,1,0,0,1.678154184139351,1.678154184139351,0,0,0,0,0,1,1,0,5.316900703591453,0,50.81,47.25,23.89,59.55,5,1,1,0,0,7,12,3,1,780.25,592899.094580726,321038.234501616,275443.448146222,12143.35581215563,2137.550976938971 -13374,16506,30113,-9,30111,30112,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-939.5399077887068,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,780.25,592899.094580726,321038.234501616,275443.448146222,12143.35581215563,2137.550976938971 -13375,16507,30114,30115,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.396831452025227,7.577175594561671,0,42,2,102.3736849710762,0,3,3,2019,23,11,37,37,1,11,0,6.289215927982958,6.289215927982958,0,0,0,0,0,0,0,0,0,0,38.81,54.3,44.64,55.04,6.666666666666667,1,1,0,0,8,7,4,0,2483,2394702.719308033,1183153.630782507,356789.7005619445,0,3218.845946246761 -13375,16507,30115,30114,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.387007655005878,8.643446761840904,0,42,-2,7.430465579984741,0,3,3,2019,12,1,43,43,1,1,0,13.55698361689508,13.55698361689508,0,0,0,0,0,0,0,0,1.720298218833792,0,44.64,55.04,38.81,54.3,8.333333333333334,1,1,0,0,8,7,4,0,2483,2394702.719308033,1183153.630782507,356789.7005619445,0,3218.845946246761 -13375,16508,30116,-9,30115,30114,1,1,34,0,0,0,2,2,-9,0,3,8.035280354944696,7.833676884410547,0,0,0,-1009.841263049017,0,2,3,2019,3,0,52,52,1,0,1,6.984184715735069,6.984184715735069,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,601,82849.43599543642,14322.174187764,0,0,1258.104406957077 -13376,16509,30117,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.279462506720483,8.954940013603757,0,0,0,-1025.222605306095,0,2,2,2019,11,3,48,48,1,3,0,25.80876251562276,25.80876251562276,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,2866,1934224.298154712,1179323.182572829,234031.6264341109,0,3539.760496986674 -13377,16510,30118,30119,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,4.779550640175725,4.670726284259755,21,7,-30.90526615709005,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.510956182673461,4.85175488181253,59.43,58.05,61.58,33.61,8.333333333333334,1,1,0,0,5,8,2,0,840,1113770.860725354,461444.2395698108,419101.2665068117,0,1717.730645394518 -13377,16510,30119,30118,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,28,-7,-109.0742140536995,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.298472900245899,0,61.58,33.61,59.43,58.05,10,1,1,0,0,3,8,2,0,840,1113770.860725354,461444.2395698108,419101.2665068117,0,1717.730645394518 -13377,16511,30120,-9,30119,30118,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-913.8023535301212,-9,3,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.41,59.45,-9,-9,3.333333333333333,1,1,0,1,1,8,1,0,1154,-147835.2099633684,0,0,0,0 -13378,16512,30121,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.497937051157142,8.296252826772678,7.243542665260469,0,0,-1149.064865171767,0,3,2,2019,6,0,35,35,1,0,0,5.704738513793985,5.704738513793985,0,0,0,0,0,1,1,0,6.065350965395002,6.894985640921352,49.84,44.96,-9,-9,0,1,1,0,0,11,9,4,1,181,609716.4063566773,338797.339262927,224093.9011913058,0,2554.702003658771 -13379,16513,30122,-9,30124,30123,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.820745543698,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,637.6666666666666,93370.35190807347,76547.91923508915,93640.83324992534,60599.12783000089,2744.712577450179 -13379,16513,30123,30124,-9,-9,1,1,24,1,1,0,2,2,-9,0,5,8.84141771634331,8.709415857431239,0,4,-1,-56.02610709986255,0,-9,-9,2019,6,0,35,39,1,0,0,19.19469681238023,19.19469681238023,0,0,0,0,0,1,1,0,0,0,57.06,57.76,30.25,57.85,8.333333333333334,1,1,0,0,9,2,4,0,637.6666666666666,93370.35190807347,76547.91923508915,93640.83324992534,60599.12783000089,2744.712577450179 -13379,16513,30124,30123,-9,-9,1,0,25,1,1,0,1,1,-9,0,3,6.551207648084678,7.142029216189074,0,4,1,136.0651025236146,0,-9,-9,2019,17,5,16,16,1,5,0,6.829472042608957,6.829472042608957,0,0,0,0,0,1,1,0,0,0,30.25,57.85,57.06,57.76,1.666666666666667,1,1,0,0,3,2,4,0,637.6666666666666,93370.35190807347,76547.91923508915,93640.83324992534,60599.12783000089,2744.712577450179 -13380,16514,30125,30126,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.207710055334932,8.265934997697315,0,32,2,-96.17501828623784,0,2,3,2019,6,0,36,37,1,0,0,10.73435516073373,10.73435516073373,0,0,0,0,0,0,0,0,2.185767614556793,0,55.79,52.62,54.79,55.86,6.666666666666667,1,1,0,0,8,9,5,1,225.5,1366782.057856494,673457.966664276,457178.936518945,0,4530.090533712048 -13380,16514,30126,30125,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.365886920822005,9.025874565720928,0,32,-2,3.014086446255295,0,2,2,2019,6,0,42,40,1,0,0,34.77864216303691,34.77864216303691,0,0,0,1.015108049208065,0,0,0,0,4.39753810019066,0,54.79,55.86,55.79,52.62,6.666666666666667,1,1,0,0,11,9,5,1,225.5,1366782.057856494,673457.966664276,457178.936518945,0,4530.090533712048 -13381,16515,30127,30128,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.717925221022448,7.797289841540668,43,-2,5.417930231448812,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.959057402016633,7.47437990825544,51.24,58.84,55.76,44.76,8.333333333333334,1,1,0,0,8,9,4,1,395.5,1157521.420643085,673664.1167353089,483198.8566232953,0,4159.680109652255 -13381,16515,30128,30127,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.063365993432864,7.811790445860606,43,2,159.5534693884109,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.386029137673066,8.140004360109717,55.76,44.76,51.24,58.84,10,1,1,0,0,8,9,4,1,395.5,1157521.420643085,673664.1167353089,483198.8566232953,0,4159.680109652255 -13382,16516,30129,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.790395158537,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39,24,-9,-9,5,1,1,0,0,0,9,1,0,266,0,0,0,0,1483.273917952115 -13383,16517,30130,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1098.504580321094,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.534107285409019,0,0,1,1,0,0,0,37.66,34.5,-9,-9,10,4,5,0,0,2,9,1,0,467,-118099.4049194656,0,0,0,661.6420924315757 -13384,16518,30131,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,8.279684849812783,8.730679213248592,0,0,-954.5663286832342,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.39835344382336,8.193099585214586,50.91,30.85,-9,-9,3.333333333333333,1,1,0,0,7,4,4,0,344,27316.715574142,-86675.53707870128,0,0,3044.298896064114 -13385,16519,30132,30133,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,0,0,0,27,0,-77.12682943048519,0,3,2,2019,16,3,0,6,3,3,0,0,0,0,0,0,0,27,0,0,0,0,0,41.45,58.1,48.28,60.18,8.333333333333334,1,1,0,0,3,10,5,1,379.5,2627708.675429203,1843635.216941211,419453.2011023714,0,3352.896043068184 -13385,16519,30133,30132,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.056281197027365,9.339864995266554,0,27,0,12.72257292833232,0,2,1,2019,9,0,46,53,1,0,0,22.93074104247516,22.93074104247516,0,0,0,0,2,0,0,0,1.636965289438177,0,48.28,60.18,41.45,58.1,8.333333333333334,1,1,0,0,10,10,5,1,379.5,2627708.675429203,1843635.216941211,419453.2011023714,0,3352.896043068184 -13385,16520,30134,-9,30132,30133,1,0,22,0,0,0,1,1,1,0,2,7.159828601268074,7.346490893536273,0,0,0,-932.4064424560297,-9,1,1,2019,11,2,22,0,1,2,1,7.077639716832824,7.077639716832824,0,0,0,0,2,0,0,0,0,0,42.6,52.35,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,263,-99849.16492704052,-38041.57528638796,0,0,655.2727662594893 -13385,16521,30135,-9,30132,30133,1,1,20,0,0,1,2,0,0,0,4,0,5.166884134703815,5.595851743861854,0,0,-954.7577768861754,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,5.434497157458279,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,398,-118635.9172224046,0,0,0,287.1267321856344 -13386,16522,30136,30137,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,8,-5,0,0,2,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,42,40,31.44,38.78,0,1,1,0,1,1,12,1,1,285,-55047.74834138466,0,0,0,1053.452677702046 -13386,16522,30137,30136,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,8,5,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,38.78,42,40,3.333333333333333,1,1,0,0,0,12,1,1,285,-55047.74834138466,0,0,0,1053.452677702046 -13387,16523,30138,30139,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.906465010814273,8.530927265043575,0,30,2,123.5474387416046,0,3,3,2019,12,1,41,41,1,1,0,16.94982695245391,16.94982695245391,0,0,0,0,0,0,0,0,0,0,52.34,56.95,57.46,40.91,8.333333333333334,1,1,0,0,10,4,5,0,984.5,1003219.618732815,631109.6740769262,335294.6356665848,53970.79466170978,3114.592790672928 -13387,16523,30139,30138,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.079093311147806,8.319501465023391,0,30,-2,-9.21502400954817,0,2,2,2019,16,5,35,35,1,5,0,12.0168998330955,12.0168998330955,0,0,0,0,0,0,0,0,0,0,57.46,40.91,52.34,56.95,8.333333333333334,1,1,0,0,10,4,5,0,984.5,1003219.618732815,631109.6740769262,335294.6356665848,53970.79466170978,3114.592790672928 -13388,16524,30140,-9,30142,30141,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.964044112933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1317.75,245182.9056045622,29342.93543666735,289277.5253212962,93602.73556236511,4496.987536168895 -13388,16524,30141,30142,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,9.243246062313217,9.143697679829218,0,7,7,13.65920467560979,0,-9,-9,2019,9,0,50,38,1,1,0,25.39927797949662,25.39927797949662,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,9,5,1,1317.75,245182.9056045622,29342.93543666735,289277.5253212962,93602.73556236511,4496.987536168895 -13388,16524,30142,30141,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.436891894817084,7.353213112926364,0,21,-7,23.91777734300916,0,2,2,2019,6,0,24,28,1,0,0,8.405283420177115,8.405283420177115,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52,55,8.333333333333334,1,1,0,0,8,9,5,1,1317.75,245182.9056045622,29342.93543666735,289277.5253212962,93602.73556236511,4496.987536168895 -13388,16524,30143,-9,30142,30141,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.495494492,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1317.75,245182.9056045622,29342.93543666735,289277.5253212962,93602.73556236511,4496.987536168895 -13389,16525,30144,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.593045392748051,8.178061376821224,0,0,0,-1109.166485287762,0,2,2,2019,12,1,36,36,1,1,0,18.57473300294517,18.57473300294517,0,0,0,0,0,1,1,0,5.469924172661876,0,45.57,53.5,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,366,839401.2645913053,41566.40559324624,614054.2675559439,0,1626.848552133016 -13390,16526,30145,-9,30146,30148,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.61490425461,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,685.6,111746.6748456296,2367.451784281038,104377.5982820917,29121.71508241797,2845.232025910369 -13390,16526,30146,30148,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,7.674027184003412,7.682699021992142,6.433216770004857,2,0,109.7748206263406,0,3,3,2019,11,0,20,30,1,0,0,11.10501337573614,11.10501337573614,0,0,0,0,2,1,1,0,6.559639104035574,0,54.2,57.49,47.62,56.48,8.333333333333334,1,1,0,0,8,2,3,0,685.6,111746.6748456296,2367.451784281038,104377.5982820917,29121.71508241797,2845.232025910369 -13390,16526,30147,-9,30146,30148,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-826.926689331725,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,685.6,111746.6748456296,2367.451784281038,104377.5982820917,29121.71508241797,2845.232025910369 -13390,16526,30148,30146,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,7.623782416266302,7.692963991088114,0,2,9,71.43118394545147,-9,-9,-9,2019,11,0,40,0,1,0,0,5.354728986674029,5.354728986674029,0,0,0,0,0,1,1,0,0,0,47.62,56.48,54.2,57.49,6.666666666666667,1,1,0,0,11,2,3,0,685.6,111746.6748456296,2367.451784281038,104377.5982820917,29121.71508241797,2845.232025910369 -13390,16526,30149,-9,30146,30148,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1191.038769132334,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,3,0,685.6,111746.6748456296,2367.451784281038,104377.5982820917,29121.71508241797,2845.232025910369 -13391,16527,30150,-9,30154,30155,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1108.778019310615,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13391,16527,30151,-9,30154,30155,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-923.4902884352882,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13391,16527,30152,-9,30154,30155,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.25857779728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13391,16527,30153,-9,30154,30155,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-813.3462366918088,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13391,16527,30154,30155,-9,-9,1,0,31,0,4,0,2,2,-9,0,3,7.556387803759509,7.474258979795212,0,9,-1,-86.81191006182688,0,2,2,2019,17,5,32,0,1,5,0,5.608318656993461,5.608318656993461,0,0,0,0,0,1,1,0,0,0,33.83,57.61,32.92,55.3,5,1,1,0,0,3,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13391,16527,30155,30154,-9,-9,1,1,32,0,4,0,2,2,-9,0,2,8.31732246201779,8.0719936341088,0,9,1,-35.6291063191341,0,-9,-9,2019,19,7,55,50,1,7,0,7.301048594961398,7.301048594961398,0,0,0,0,0,1,1,0,0,0,32.92,55.3,33.83,57.61,1.666666666666667,1,1,0,0,5,9,3,0,880.5,125573.747531368,-3977.135486513465,0,0,2684.745945791048 -13392,16528,30156,30157,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,8.170485807548427,8.413240167736356,54,-3,-106.5535840994599,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.938837331383108,8.290040154988921,54.79,55.86,58.89,48.6,8.333333333333334,1,1,0,0,0,7,5,1,4639,1825806.554029056,861950.200040516,380930.6614828456,0,5108.017918098388 -13392,16528,30157,30156,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.353868283346523,8.227725508365994,53,3,-8.467240615192827,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.542738288934874,8.227494037142774,58.89,48.6,54.79,55.86,8.333333333333334,1,1,0,0,0,7,5,1,4639,1825806.554029056,861950.200040516,380930.6614828456,0,5108.017918098388 -13393,16529,30158,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.563607612380135,7.534122880423576,0,0,-895.9766406373207,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.863094412725947,7.273177094236035,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,671,315025.1115257577,141311.4845837282,226329.5095766243,0,1066.072224012451 -13394,16530,30159,30160,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.964499894222089,7.917977984850256,6,7,88.79422076095561,0,-9,-9,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,7.610410912451218,30.4,33.56,57.76,48.98,3.333333333333333,1,1,0,0,0,2,3,1,510.5,760222.31284199,44187.83287215684,597695.3791323362,0,3551.511893172496 -13394,16530,30160,30159,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.38040664327017,7.154976973043033,56,-7,85.37153289764088,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.624894908846178,7.007594825598903,57.76,48.98,30.4,33.56,8.333333333333334,1,1,0,0,0,2,3,1,510.5,760222.31284199,44187.83287215684,597695.3791323362,0,3551.511893172496 -13395,16531,30161,30162,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.272519341224722,7.896244720080733,6,-10,-13.03921967501481,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.907173375440463,50,47,54,46,7,1,1,0,0,0,7,4,1,1048,2677283.603418662,1173208.064390841,935042.8138090704,0,4222.772246036005 -13395,16531,30162,30161,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.331514174871973,7.777710826693296,6,10,-51.38044913438151,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.291523485605633,7.626366277398223,54,46,50,47,8,1,1,0,0,1,7,4,1,1048,2677283.603418662,1173208.064390841,935042.8138090704,0,4222.772246036005 -13396,16532,30163,30164,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.628170782228324,8.461452573895654,0,8,8,-62.64343625962434,0,3,3,2019,12,2,39,39,1,2,0,13.82167660788149,13.82167660788149,0,0,0,0,0,0,0,0,0,0,48.54,46.62,57.31,46.41,8.333333333333334,1,1,0,0,10,8,5,1,395,804961.3661121093,329016.7381524512,464460.4210061665,0,3369.477062303504 -13396,16532,30164,30163,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.066679035179499,8.065554817532398,0,8,-8,-31.54597973721573,0,3,3,2019,8,0,37,38,1,0,0,10.63928625860336,10.63928625860336,0,0,0,0,0,0,0,0,0,0,57.31,46.41,48.54,46.62,6.666666666666667,1,1,0,0,10,8,5,1,395,804961.3661121093,329016.7381524512,464460.4210061665,0,3369.477062303504 -13396,16533,30165,-9,30164,30163,1,1,28,0,0,0,2,2,-9,0,4,7.028670265741707,7.364935865722958,5.071118800237802,0,0,-988.7253995414403,0,1,2,2019,7,0,22,16,1,0,1,5.194877349334138,5.194877349334138,0,0,0,0,0,0,0,0,5.188471745957115,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,8,3,1,1032,32727.25286315929,-67301.28054166515,0,0,-128.6855719432026 -13396,16534,30166,-9,30164,30163,1,0,19,0,0,0,2,2,-9,0,4,4.608681938178067,6.810754514539473,6.911662302061592,0,0,-1053.451349642626,0,1,2,2019,14,3,5,5,1,3,1,2.479423466346349,2.479423466346349,0,0,0,0,0,0,0,0,6.455842178581941,0,35.53,56.43,-9,-9,6.666666666666667,1,1,0,1,2,8,2,1,64,-42367.56533847574,0,0,0,860.743139022836 -13397,16535,30167,30170,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,8.292789125957952,8.399962481242257,0,8,7,-16.74145776896905,0,3,2,2019,6,0,37,37,1,0,0,16.45237892741967,16.45237892741967,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,53.4,41.64,8.333333333333334,1,1,0,0,9,5,3,0,751.4,79471.11757186537,54466.49895210977,0,0,3432.490387876361 -13397,16535,30168,-9,30170,30167,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.19063035533,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,751.4,79471.11757186537,54466.49895210977,0,0,3432.490387876361 -13397,16535,30169,-9,30170,30167,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1147.45421344905,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,751.4,79471.11757186537,54466.49895210977,0,0,3432.490387876361 -13397,16535,30170,30167,-9,-9,1,0,29,0,4,0,2,2,-9,1,3,0,0,0,8,-7,-144.954054858269,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.4,41.64,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,0,751.4,79471.11757186537,54466.49895210977,0,0,3432.490387876361 -13397,16535,30171,-9,30170,30167,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.774235488165,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,751.4,79471.11757186537,54466.49895210977,0,0,3432.490387876361 -13398,16536,30172,30173,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.468588352370542,8.870694115972874,56,2,-117.2818463544324,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.33310305066753,8.456128354321429,57.16,56.15,65.3,26.47,10,1,1,0,0,0,5,4,1,698,2357683.880397386,791949.8202782848,241372.5491260756,0,4166.448025036443 -13398,16536,30173,30172,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,56,-2,-43.98381743651288,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.136017951667344,0,65.3,26.47,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,698,2357683.880397386,791949.8202782848,241372.5491260756,0,4166.448025036443 -13399,16537,30174,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.185908291362047,8.039499615877823,0,0,0,-977.1300818907098,0,-9,3,2019,4,0,85,74,1,0,0,5.209264650769487,5.209264650769487,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,921,-24915.05502856832,0,0,0,1323.107478449014 -13400,16538,30175,30176,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.193285527403711,8.143851100217489,0,4,-2,42.15466309644377,0,-9,-9,2019,10,0,48,45,1,0,0,10.16665590685907,10.16665590685907,0,0,0,0,0,1,1,0,0,0,44.53,56.37,28.57,61.36,6.666666666666667,1,1,0,0,3,4,4,1,731,32914.26563138987,30454.06747585993,133264.9916384066,77546.65261919398,2541.160481055233 -13400,16538,30176,30175,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.433932200425719,8.07317776018866,0,4,2,.3795581753619557,0,3,3,2019,28,12,36,31,1,12,0,9.24772480172353,9.24772480172353,0,0,0,0,0,1,1,0,0,0,28.57,61.36,44.53,56.37,3.333333333333333,1,1,0,0,8,4,4,1,731,32914.26563138987,30454.06747585993,133264.9916384066,77546.65261919398,2541.160481055233 -13400,16538,30177,-9,30176,30175,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.810869919996,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,731,32914.26563138987,30454.06747585993,133264.9916384066,77546.65261919398,2541.160481055233 -13400,16538,30178,-9,30176,30175,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.036590383578,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,731,32914.26563138987,30454.06747585993,133264.9916384066,77546.65261919398,2541.160481055233 -13401,16539,30179,-9,30182,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-824.5274153162292,1,1,-9,2019,11,0,0,14,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,673,64504.42073614374,0,0,0,0 -13401,16540,30180,-9,30182,-9,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.631828258592,1,1,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.02,58.57,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,404,75152.72659965574,0,0,0,0 -13401,16541,30181,30182,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,9.030752543654986,9.096225246997756,0,3,-8,66.66512076080618,0,-9,-9,2019,10,0,45,50,1,1,0,25.73464809251044,25.73464809251044,0,0,0,0,0,0,0,0,0,0,51,49,57.33,53.46,7,1,1,0,0,1,7,5,1,730,2176388.88426873,105233.6663085099,1060945.036961803,0,3202.139912996022 -13401,16541,30182,30181,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,5.94725808850152,6.417720018043439,3,8,122.8502738011672,1,-9,-9,2019,4,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,5.76453486397341,0,57.33,53.46,51,49,6.666666666666667,1,1,0,0,4,7,5,1,730,2176388.88426873,105233.6663085099,1060945.036961803,0,3202.139912996022 -13402,16542,30183,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.46269948284047,8.047429961418354,0,0,0,-1093.766449072096,0,2,3,2019,10,0,38,39,1,1,0,7.008760394328231,7.008760394328231,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,12,3,0,504,-31815.42612421604,104627.0340776271,0,0,1422.074347675351 -13403,16543,30184,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.2900824905894,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,1,187,-97057.88172150617,0,0,0,1136.422419670833 -13404,16544,30185,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,8.505222181132652,7.981390250067506,0,0,-1060.382421093596,0,3,3,2019,11,4,0,0,4,4,0,0,0,1,0,7.098976790678211,0,0,1,1,0,7.230888994145369,8.290427933929339,49.24,32.89,-9,-9,10,1,1,0,0,0,10,4,1,483,920570.8685722899,339271.4237423177,295544.401776743,0,2494.107527872382 -13405,16545,30186,30187,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.610474275060421,9.279321882886391,0,9,0,-24.24293368245574,0,2,2,2019,6,0,70,72,1,0,0,23.0050818806588,23.0050818806588,0,0,0,0,0,0,0,0,0,0,60.12,54.8,47.01,58,6.666666666666667,1,1,0,0,10,5,5,0,608,862018.3498396885,645868.4981982156,303410.3172587535,237534.3430072696,6056.973841745203 -13405,16545,30187,30186,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.293296501638295,7.706365863319492,0,9,0,-66.1858391190415,0,1,2,2019,11,2,28,40,1,2,0,12.69016387293147,12.69016387293147,0,0,0,0,0,0,0,0,0,0,47.01,58,60.12,54.8,8.333333333333334,1,1,0,0,10,5,5,0,608,862018.3498396885,645868.4981982156,303410.3172587535,237534.3430072696,6056.973841745203 -13406,16546,30188,30189,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.088014186664619,7.98289917352517,48,1,2.020403137458523,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.096326780917258,8.119342112582803,57.31,50.61,56.57,57.78,8.333333333333334,1,1,0,0,0,1,4,1,1891,1814747.722488455,813399.3533711456,248601.2182301579,0,3549.085701234343 -13406,16546,30189,30188,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.267991082506732,7.700438669159737,50,-1,16.177333135173,0,1,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.779810046324683,7.180502229810064,56.57,57.78,57.31,50.61,8.333333333333334,1,1,0,0,5,1,4,1,1891,1814747.722488455,813399.3533711456,248601.2182301579,0,3549.085701234343 -13407,16547,30190,-9,-9,-9,1,1,46,0,2,0,2,2,-9,1,5,0,0,0,0,0,-908.6810188731827,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,6,8,1,1,1458.333333333333,-50053.39115669192,0,0,0,1298.610188927089 -13407,16547,30191,-9,-9,30190,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.284539088048,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,1,1,1458.333333333333,-50053.39115669192,0,0,0,1298.610188927089 -13407,16547,30192,-9,-9,30190,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.574974237324,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,1,1,1458.333333333333,-50053.39115669192,0,0,0,1298.610188927089 -13408,16548,30193,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.064823080904567,7.863959719375332,0,0,0,-978.5934938871525,0,2,2,2019,9,0,30,34,1,0,0,11.21426659325126,11.21426659325126,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,750,-32675.18300475603,-74140.52214554582,0,0,952.3872615545216 -13408,16549,30194,-9,30193,-9,1,0,22,0,0,0,2,2,-9,0,4,8.449221598735985,8.519737805499547,0,0,0,-942.5972258181397,0,2,-9,2019,11,0,40,0,1,0,1,15.33056263707428,15.33056263707428,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,3,5,5,1,517,14844.84205348209,14331.12833365389,0,0,2341.324994176795 -13409,16550,30195,30196,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.210150535497323,7.159849606775738,7,10,-62.7398959559527,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.621022257732453,7.234487587974942,57.16,56.15,20.36,30.35,3.333333333333333,1,1,0,0,3,10,3,1,975.5,998303.2876488287,569723.6367577245,354999.8609662096,49860.25294322377,2285.974900665691 -13409,16550,30196,30195,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,0,7.700573302615334,7.912004834007919,27,-10,-28.2075319326905,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,2.356721591411624,7.925824794641402,20.36,30.35,57.16,56.15,1.666666666666667,1,1,0,1,0,10,3,1,975.5,998303.2876488287,569723.6367577245,354999.8609662096,49860.25294322377,2285.974900665691 -13410,16551,30197,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-984.1913500057512,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.51,22.42,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,573,299600.6133326313,0,359637.2460456796,0,1448.674101673493 -13411,16552,30198,-9,30199,30200,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.121819982857,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,716.5,597412.380066319,307991.0775810331,339419.455257312,159949.6885594476,2769.57912442531 -13411,16552,30199,30200,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.623291248000161,6.526377831349251,0,18,-1,-83.99653964757107,0,2,1,2019,17,6,10,10,1,6,0,7.706718705965549,7.706718705965549,0,0,0,0,0,1,1,0,3.06541113241227,0,40.08,47.45,40.98,52.59,6.666666666666667,1,1,0,0,6,10,4,1,716.5,597412.380066319,307991.0775810331,339419.455257312,159949.6885594476,2769.57912442531 -13411,16552,30200,30199,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.735741383150573,8.772635691645695,5.253361069846205,18,1,-111.0237331797794,0,2,2,2019,12,1,39,40,1,1,0,19.74514733553614,19.74514733553614,0,0,0,0,0,1,1,0,5.35865164100247,0,40.98,52.59,40.08,47.45,5,1,1,0,0,12,10,4,1,716.5,597412.380066319,307991.0775810331,339419.455257312,159949.6885594476,2769.57912442531 -13411,16552,30201,-9,30199,30200,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.180679621582,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,716.5,597412.380066319,307991.0775810331,339419.455257312,159949.6885594476,2769.57912442531 -13412,16553,30202,-9,30204,30203,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.6483436734005,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,588.5,410890.6449010565,0,352365.0512125838,17205.47878497379,1876.000277110145 -13412,16553,30203,30204,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.82536520352821,7.670310798422876,0,6,5,-14.15740856516901,0,-9,-9,2019,7,0,45,45,1,0,0,5.453378708777103,5.453378708777103,0,0,0,0,0,1,1,0,0,0,59.88,48.2,62.39,56.71,8.333333333333334,3,4,0,1,3,8,2,0,588.5,410890.6449010565,0,352365.0512125838,17205.47878497379,1876.000277110145 -13412,16553,30204,30203,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,6,-5,-101.0035434263151,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.88,48.2,0,3,4,0,0,4,8,2,0,588.5,410890.6449010565,0,352365.0512125838,17205.47878497379,1876.000277110145 -13412,16553,30205,-9,30204,30203,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.3604613858182,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,588.5,410890.6449010565,0,352365.0512125838,17205.47878497379,1876.000277110145 -13413,16554,30206,30207,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,7.932847956804681,8.294389128628387,0,9,3,13.30522377352342,0,-9,-9,2019,7,0,50,40,1,0,0,8.665563297777052,8.665563297777052,0,0,0,0,2,1,1,0,6.184270276706008,0,55.77,55.6,55.14,42.08,8.333333333333334,1,1,0,0,10,2,4,0,1308,1168336.957057348,478181.2208787174,573003.6110233346,0,3398.357072579413 -13413,16554,30207,30206,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.024274476967816,5.778546487363436,9,-3,-48.08665853852746,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.07110225868817,6.189002612904188,55.14,42.08,55.77,55.6,8.333333333333334,1,1,0,0,5,2,4,0,1308,1168336.957057348,478181.2208787174,573003.6110233346,0,3398.357072579413 -13414,16555,30208,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-857.2495375312992,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,5.547140564306486,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,817,22994.0736603841,0,0,0,1306.762573741024 -13415,16556,30209,30210,-9,-9,1,1,64,0,1,0,3,3,-9,0,2,0,6.740652796698995,7.078176745952062,21,8,137.1809180257389,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,6.044940316045826,7.075437647909052,43.29,31.87,31.68,17,1.666666666666667,1,1,0,0,7,4,2,0,1022,174427.0142516912,-2680.662300141386,136475.1559246476,5210.856279804176,2575.591791359227 -13415,16556,30210,30209,-9,-9,1,0,56,0,1,0,2,2,-9,0,1,0,5.598429163028668,5.505886615135002,21,-8,59.36685507190893,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,5.780970615415177,31.68,17,43.29,31.87,0,1,1,0,1,0,4,2,0,1022,174427.0142516912,-2680.662300141386,136475.1559246476,5210.856279804176,2575.591791359227 -13416,16557,30211,30212,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.152797734655461,8.441088425440613,0,9,-3,15.87201325861063,0,2,2,2019,6,0,37,39,1,0,0,14.32289475184406,14.32289475184406,0,0,0,0,0,0,0,0,0,0,45.12,62.24,53.45,49.53,3.333333333333333,1,1,0,0,11,4,5,1,315.5,388244.5467025008,232906.4915494979,118290.4124905095,29735.95099511896,3333.129970453001 -13416,16557,30212,30211,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.299768998449435,8.445035871196508,0,9,3,-22.6815498052096,0,-9,-9,2019,11,0,47,37,1,0,0,10.01540086114683,10.01540086114683,0,0,0,0,0,0,0,0,0,0,53.45,49.53,45.12,62.24,8.333333333333334,1,1,0,0,11,4,5,1,315.5,388244.5467025008,232906.4915494979,118290.4124905095,29735.95099511896,3333.129970453001 -13417,16558,30213,30214,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.78458714623779,8.445696315057045,0,8,1,29.23620420275092,0,2,1,2019,12,0,40,35,1,0,0,16.78757724585144,16.78757724585144,0,0,0,0,0,0,0,0,5.501512111273735,0,49.63,54.22,50,57,6.666666666666667,1,1,0,0,10,9,5,1,648.3333333333334,501851.8060057143,251573.4555610093,0,0,4790.828759123501 -13417,16558,30214,30213,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,9.451725844021883,9.016846419635536,0,8,-1,-9.195798559216504,0,-9,-9,2019,10,0,37,38,1,1,0,26.79892993302681,26.79892993302681,0,0,0,0,0,0,0,0,0,0,50,57,49.63,54.22,7,1,1,0,0,1,9,5,1,648.3333333333334,501851.8060057143,251573.4555610093,0,0,4790.828759123501 -13417,16558,30215,-9,30213,30214,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-916.4665870089083,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,648.3333333333334,501851.8060057143,251573.4555610093,0,0,4790.828759123501 -13418,16559,30216,30217,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.76710705887464,8.641807820631023,0,7,3,59.68484644407178,0,2,2,2019,7,0,79,40,1,0,0,6.580256346037565,6.580256346037565,0,0,0,0,0,0,0,0,1.521191156033985,0,57.16,56.15,53.34,56.67,10,1,1,0,0,8,2,5,1,381,28418.50879462938,97285.9100311153,367857.5766807618,331999.9952094371,4394.753480386982 -13418,16559,30217,30216,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.704952098759639,8.658453942488157,0,7,-3,49.32412834839774,0,-9,-9,2019,9,0,50,45,1,0,0,14.85712893555848,14.85712893555848,0,0,0,0,0,0,0,0,0,0,53.34,56.67,57.16,56.15,10,1,1,0,0,6,2,5,1,381,28418.50879462938,97285.9100311153,367857.5766807618,331999.9952094371,4394.753480386982 -13419,16560,30218,30219,-9,-9,1,0,47,1,1,0,1,1,-9,0,5,8.694894554181168,8.350277659966155,0,3,-5,35.7954539349269,0,-9,-9,2019,25,12,45,43,1,12,0,12.67077277969933,12.67077277969933,0,0,0,0,0,1,1,0,.5984360586808595,0,40.31,58.62,53.42,52.33,3.333333333333333,1,1,0,0,8,12,4,1,357.6666666666667,948552.7198762456,367098.7782454223,329342.4708379288,0,3264.242172299189 -13419,16560,30219,30218,-9,-9,1,1,52,1,1,0,1,1,-9,0,4,0,0,0,3,5,32.54351167071754,0,2,2,2019,8,0,0,36,4,0,0,0,0,0,0,0,0,0,1,1,0,7.521720588847889,0,53.42,52.33,40.31,58.62,10,1,1,0,0,7,12,4,1,357.6666666666667,948552.7198762456,367098.7782454223,329342.4708379288,0,3264.242172299189 -13419,16560,30220,-9,30218,30219,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.6584330312312,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,12,4,1,357.6666666666667,948552.7198762456,367098.7782454223,329342.4708379288,0,3264.242172299189 -13420,16561,30221,30222,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.466695439410557,8.56783840519172,0,32,1,92.1573303231406,0,3,3,2019,17,5,60,70,1,5,0,11.46108244175547,11.46108244175547,0,0,0,0,0,1,1,0,0,0,43.13,35.47,45.47,23.9,3.333333333333333,1,1,0,1,13,8,5,1,586.5,2441465.235829251,906483.2780849312,1388336.739337546,0,10433.82894727097 -13420,16561,30222,30221,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,9.344932742808478,9.308257845966596,0,32,-1,35.25390719431493,0,2,2,2019,19,7,27,-9,1,7,0,55.48539283110054,55.48539283110054,0,0,0,0,2,1,1,0,8.60199233511929,0,45.47,23.9,43.13,35.47,3.333333333333333,2,3,0,1,12,8,5,1,586.5,2441465.235829251,906483.2780849312,1388336.739337546,0,10433.82894727097 -13420,16562,30223,-9,30222,30221,1,1,23,0,0,0,1,1,-9,0,5,8.377912296150159,8.262842972040351,0,0,0,-916.7589366786134,0,2,1,2019,6,0,60,40,1,0,1,7.681901121983729,7.681901121983729,0,0,0,0,0,1,1,0,1.976680197184478,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,3,8,5,1,469,122.5499922612798,-30599.38664154404,0,0,1476.571418550647 -13421,16563,30224,30225,-9,-9,1,0,25,0,0,0,1,1,1,0,4,8.281416915142847,8.477043904706884,0,1,1,-19.30988803835864,-9,-9,-9,2019,12,0,46,0,1,0,0,11.47005412529631,11.47005412529631,0,0,0,0,0,0,0,0,0,0,58.3,47.38,44.95,58.82,8.333333333333334,1,1,0,0,3,4,5,1,3979,-46430.03222719788,0,0,0,3371.349875065502 -13421,16563,30225,30224,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.31234266410747,8.346246773375603,0,1,-1,58.36677436514279,-9,-9,-9,2019,14,2,47,0,1,2,0,12.78217912230066,12.78217912230066,0,0,0,0,0,0,0,0,2.523774295834849,0,44.95,58.82,58.3,47.38,5,1,1,0,0,2,4,5,1,3979,-46430.03222719788,0,0,0,3371.349875065502 -13422,16564,30226,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,2,6.209584571755047,6.117233082090807,0,0,0,-1038.820122933675,0,3,3,2019,14,3,18,17,1,3,0,3.673176971650713,3.673176971650713,0,0,0,0,0,1,1,0,0,0,44.44,35.14,-9,-9,1.666666666666667,4,2,0,1,3,8,2,0,629.6666666666666,-5840.015779265144,35042.9863973676,0,0,1862.031355797339 -13422,16564,30227,-9,30226,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.9099149359931,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,2,0,629.6666666666666,-5840.015779265144,35042.9863973676,0,0,1862.031355797339 -13422,16564,30228,-9,30226,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1092.822262726987,-9,3,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.7152931413833686,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,1,8,2,0,629.6666666666666,-5840.015779265144,35042.9863973676,0,0,1862.031355797339 -13423,16565,30229,30231,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.505929540083772,9.008614595989622,0,6,-2,-182.0294918502104,0,2,2,2019,6,0,28,56,1,0,0,44.75623189282366,44.75623189282366,0,0,0,0,0,0,0,0,0,0,52.81,41.69,44.17,26.06,8.333333333333334,4,2,0,0,7,10,5,0,669,1144131.092359581,867557.6505535127,302189.2012622012,97783.4736077328,3552.55943357599 -13423,16565,30230,-9,30231,30229,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1099.093007933603,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,10,5,0,669,1144131.092359581,867557.6505535127,302189.2012622012,97783.4736077328,3552.55943357599 -13423,16565,30231,30229,-9,-9,1,0,53,0,1,0,2,2,-9,0,1,0,0,0,6,2,10.97955046764673,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,26.06,52.81,41.69,8.333333333333334,4,5,0,0,0,10,5,0,669,1144131.092359581,867557.6505535127,302189.2012622012,97783.4736077328,3552.55943357599 -13424,16566,30232,30233,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.941768217779993,7.917033522677117,24,4,189.1112832446121,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.005439388554044,8.191976991440214,54.44,41.09,46.28,62.6,8.333333333333334,1,1,0,0,11,2,4,1,179.5,1767017.143795225,1351817.807603309,275759.8969349122,0,2499.14989121278 -13424,16566,30233,30232,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,7.05069608510929,6.777173943171515,10,-4,-92.00105030080837,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.179365806677028,7.248207456394931,46.28,62.6,54.44,41.09,8.333333333333334,1,1,0,0,5,2,4,1,179.5,1767017.143795225,1351817.807603309,275759.8969349122,0,2499.14989121278 -13425,16567,30234,30235,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,7.443176573136073,7.991951489590702,0,6,-7,-33.49514660483573,-9,2,2,2019,12,0,23,0,1,0,0,9.037971297977817,9.037971297977817,0,0,0,0,0,1,1,0,.4117326481451737,0,40.4,58.62,54.2,57.49,6.666666666666667,1,1,0,0,10,7,4,1,1091.333333333333,42399.19246042475,143731.2230207095,0,0,2431.916291696973 -13425,16567,30235,30234,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.448472651071301,8.245441283687491,0,6,7,60.76895179230638,0,-9,-9,2019,11,0,43,41,1,0,0,13.25049057084242,13.25049057084242,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.4,58.62,8.333333333333334,1,1,0,0,4,7,4,1,1091.333333333333,42399.19246042475,143731.2230207095,0,0,2431.916291696973 -13425,16567,30236,-9,30234,30235,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-963.7214637570675,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,1091.333333333333,42399.19246042475,143731.2230207095,0,0,2431.916291696973 -13426,16568,30237,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,6.752159124036198,6.49638556459895,0,0,-913.9543099011207,0,2,3,2019,15,4,0,0,4,4,0,0,0,1,1.883567059830516,0,18.28328981725492,0,1,1,0,3.473776743675358,6.645808574436268,49.73,20.59,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,843,146390.481413732,-38945.15103720529,203749.170181244,0,1099.033051002119 -13427,16569,30238,-9,30239,-9,1,0,29,0,0,0,1,1,-9,0,4,8.185762164055026,7.805697019030549,0,0,0,-882.0672115078335,-9,2,2,2019,12,0,37,0,1,0,1,10.3962315799191,10.3962315799191,0,0,0,0,0,0,0,0,0,0,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,9,11,4,0,303,-67556.13595994032,73565.19210743104,0,0,919.4695729042527 -13427,16570,30239,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-889.1755177516047,-9,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,29.29,20.34,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,317,138316.0304919934,0,0,0,0 -13428,16571,30240,30241,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,8.627773937094711,8.67067600665848,50,1,-88.58192496066427,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.825442422344114,8.378222642751142,54.28,36.25,37.36,53.06,10,1,1,0,0,0,8,5,1,463.5,2106402.184428654,1193476.742012307,487020.6447171384,0,6244.814627194143 -13428,16571,30241,30240,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.667622491485815,8.497160007626238,50,-1,-66.90141948378839,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,5.410683656370792,8.441705373859902,37.36,53.06,54.28,36.25,8.333333333333334,1,1,0,0,0,8,5,1,463.5,2106402.184428654,1193476.742012307,487020.6447171384,0,6244.814627194143 -13429,16572,30242,-9,-9,-9,1,1,32,0,0,0,1,1,-9,1,1,0,0,0,0,0,-969.4841563434571,-9,2,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,11.64,52.2,-9,-9,0,1,1,0,1,8,9,1,0,1347,27327.98912913678,0,0,0,976.2465976777854 -13430,16573,30243,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.417037480186903,5.501023731803321,0,0,-1017.301729166653,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.453651014613116,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,690,345917.6754500252,0,204701.1456494884,0,1550.09968000325 -13431,16574,30244,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,6.763016968099747,6.659916827215313,0,0,0,-922.9075447844015,0,2,2,2019,19,7,17,17,1,7,0,5.110056135118886,5.110056135118886,0,0,0,0,0,1,1,0,0,0,24.44,56.36,-9,-9,3.333333333333333,1,1,0,0,4,9,2,0,324.25,418768.5126144423,44092.66436268893,199862.5650423346,0,2396.831569630248 -13431,16574,30245,-9,30244,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1165.152330074729,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,324.25,418768.5126144423,44092.66436268893,199862.5650423346,0,2396.831569630248 -13431,16574,30246,-9,30244,-9,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.081548784759,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,324.25,418768.5126144423,44092.66436268893,199862.5650423346,0,2396.831569630248 -13431,16574,30247,-9,30244,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.2901710426175,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,324.25,418768.5126144423,44092.66436268893,199862.5650423346,0,2396.831569630248 -13432,16575,30248,30249,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,26,-1,-38.60110153101829,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,42.73,21.19,8.333333333333334,1,1,0,0,1,5,2,1,445,0,0,0,0,1507.437190216397 -13432,16575,30249,30248,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,4.191630271975095,4.719911988574399,26,1,13.018435632488,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.863147669014354,42.73,21.19,49.04,55.86,6.666666666666667,1,1,0,0,0,5,2,1,445,0,0,0,0,1507.437190216397 -13432,16576,30250,-9,30248,30249,1,1,22,0,0,0,2,2,-9,0,4,4.773794180550905,4.670923982871559,0,0,0,-969.3063547460468,0,3,3,2019,6,0,42,42,1,0,1,.254491314778077,.254491314778077,0,0,0,0,5.48,1,1,0,0,0,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,282,36136.73285048126,0,0,0,230.29589601886 -13433,16577,30251,30252,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.7938663546715,7.041575812756768,44,-2,-8.392171210080885,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.609457296144654,6.791000955232557,60.13,49.27,57.16,56.15,10,1,1,0,0,0,9,3,1,2206,1337145.972123477,797177.6894786232,229907.4786778863,0,2621.201949340037 -13433,16577,30252,30251,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,8.232798555297896,7.826179351308429,44,2,-124.0992237283536,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.177901058108843,7.519018112433043,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,0,9,3,1,2206,1337145.972123477,797177.6894786232,229907.4786778863,0,2621.201949340037 -13434,16578,30253,30254,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,0,0,0,5,-1,-55.11875056541466,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.990429826476902,0,57.16,56.15,44.19,58.01,8.333333333333334,1,1,0,0,6,1,4,1,714.5,303871.3897932253,15404.6012556567,361331.1932106869,90407.66289239028,3927.629486408589 -13434,16578,30254,30253,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,9.028847009865411,9.109002570323241,0,5,1,140.1085765814864,0,2,2,2019,12,1,79,42,1,1,0,11.08616976488611,11.08616976488611,0,0,0,0,5.48,1,1,0,.9215985617859233,0,44.19,58.01,57.16,56.15,8.333333333333334,1,1,0,0,8,1,4,1,714.5,303871.3897932253,15404.6012556567,361331.1932106869,90407.66289239028,3927.629486408589 -13434,16578,30255,-9,30253,30254,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.242636501418,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,714.5,303871.3897932253,15404.6012556567,361331.1932106869,90407.66289239028,3927.629486408589 -13434,16578,30256,-9,30253,30254,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.791123592032,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,714.5,303871.3897932253,15404.6012556567,361331.1932106869,90407.66289239028,3927.629486408589 -13435,16579,30257,30258,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.323840776160454,8.520518772407137,0,23,2,114.044233832068,0,2,2,2019,9,1,41,45,1,1,0,13.89002039314271,13.89002039314271,0,0,0,0,0,0,0,0,1.455332589551027,0,51.83,57.2,32.48,55.57,8.333333333333334,1,1,0,0,9,9,4,1,701.5,272890.9277433227,235147.378911386,146440.1671475608,54207.12785852576,2444.033754706048 -13435,16579,30258,30257,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.553613472364959,7.735311539760313,0,23,-2,74.50844643668424,0,2,2,2019,25,11,25,42,1,11,0,11.60024564857669,11.60024564857669,0,0,0,0,0,0,0,0,2.445083068500949,0,32.48,55.57,51.83,57.2,5,1,1,0,0,7,9,4,1,701.5,272890.9277433227,235147.378911386,146440.1671475608,54207.12785852576,2444.033754706048 -13435,16580,30259,-9,30258,30257,1,0,20,0,0,0,2,2,-9,0,4,7.187697921175558,7.175959889210724,0,0,0,-986.7546509002622,0,2,2,2019,11,0,20,8,1,2,1,4.929031740122991,4.929031740122991,0,0,0,0,0,0,0,0,3.817721054303707,0,47,58,-9,-9,7,1,1,0,0,1,9,2,1,1096,-47378.76497713766,-22283.4910205268,0,0,212.8064456128852 -13435,16581,30260,-9,30258,30257,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.2600574471074,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,213,204929.6559155087,0,0,0,-111.9192972117836 -13436,16582,30261,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.1217793503092,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.95,21.87,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,1341,222323.4082163444,0,0,0,854.4153827441409 -13437,16583,30262,30264,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.175228017588841,8.071618007568492,0,6,0,3.301414322861019,0,2,3,2019,7,0,37,38,1,0,0,10.55095607491301,10.55095607491301,0,0,0,0,0,1,1,0,2.566912756020499,0,52.62,54.68,57.16,56.15,8.333333333333334,1,1,0,0,9,6,4,1,303,243803.4802527997,50090.55210225113,121357.8600924104,44622.7217912389,2470.229019587388 -13437,16583,30263,-9,30264,30262,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.786312497265,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,303,243803.4802527997,50090.55210225113,121357.8600924104,44622.7217912389,2470.229019587388 -13437,16583,30264,30262,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.756127542424217,7.642636342615146,0,6,0,-71.13885348368905,0,-9,-9,2019,7,0,20,20,1,0,0,10.65601930463187,10.65601930463187,0,0,0,0,0,1,1,0,2.158551205371444,0,57.16,56.15,52.62,54.68,8.333333333333334,1,1,0,0,10,6,4,1,303,243803.4802527997,50090.55210225113,121357.8600924104,44622.7217912389,2470.229019587388 -13438,16584,30265,30266,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,9,-4,0,0,3,3,2019,20,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,0,0,31.74,49.14,57.33,53.46,6.666666666666667,1,1,0,0,0,12,1,0,997,93266.78563464037,0,129506.4467649579,0,1409.255341283148 -13438,16584,30266,30265,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,9,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,31.74,49.14,8.333333333333334,1,1,0,0,1,12,1,0,997,93266.78563464037,0,129506.4467649579,0,1409.255341283148 -13439,16585,30267,30268,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,7.958672142996178,8.090089162256172,0,8,16,148.7946325977902,0,-9,-9,2019,10,1,60,45,1,1,0,6.015027611548344,6.015027611548344,0,0,0,0,0,1,1,0,0,0,54.4,28.02,31.13,70.68000000000001,3.333333333333333,1,1,0,0,13,11,4,1,440.5,201202.8462904897,102177.7744461452,0,0,2325.04923261856 -13439,16585,30268,30267,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,7.875131370627691,8.01810136128911,0,8,-16,100.5155575647957,0,-9,-9,2019,8,0,36,0,1,0,0,8.829180733139593,8.829180733139593,0,0,0,0,0,1,1,0,0,0,31.13,70.68000000000001,54.4,28.02,8.333333333333334,1,1,0,0,5,11,4,1,440.5,201202.8462904897,102177.7744461452,0,0,2325.04923261856 -13440,16586,30269,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1053.352898425281,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.02,29.73,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,211,-233575.4747191652,0,0,0,1020.794086459932 -13440,16587,30270,-9,30269,-9,1,1,25,0,0,0,2,2,-9,0,3,6.837439225481048,7.076150794629561,0,0,0,-1061.864136166454,0,2,-9,2019,10,1,15,15,1,1,0,8.007856804473114,8.007856804473114,0,0,0,0,2,1,1,0,0,0,48,52.43,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,536,-146222.3080465671,79998.73035708594,0,0,1347.80647086569 -13441,16588,30271,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-974.5241837414729,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,-9,-9,8,2,3,1,1,0,5,1,1,1344,75936.79632318953,0,0,0,24.92705239110154 -13442,16589,30272,30273,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.508222832408277,6.319557700449746,28,2,69.31283058649566,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.919230730424347,6.452302678539692,44.53,56.37,55.77,27.12,10,1,1,0,0,0,9,3,1,719,1014345.310326041,623144.1451783781,461772.0121677271,140913.0903290703,2509.370367391494 -13442,16589,30273,30272,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.608375765124434,7.168165228935014,28,-2,86.32905997981918,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.870032639170629,7.400202019901815,55.77,27.12,44.53,56.37,8.333333333333334,1,1,0,0,0,9,3,1,719,1014345.310326041,623144.1451783781,461772.0121677271,140913.0903290703,2509.370367391494 -13443,16590,30274,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.43891791887186,7.73404135298328,0,0,0,-919.6159338336977,0,2,2,2019,7,0,34,0,1,0,1,5.817525959814013,5.817525959814013,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,3,9,3,0,472,27676.27930185354,0,0,0,555.6507676095149 -13444,16591,30275,-9,-9,30276,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.5480537191831,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,827,69641.05654902504,113359.7578477114,57332.07878699416,24041.5372577815,1905.031545833491 -13444,16591,30276,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.028294057570843,8.150988536117033,0,0,0,-940.904526732257,0,2,2,2019,7,0,37,37,1,0,0,11.90953304198901,11.90953304198901,0,0,0,0,0,1,1,0,0,0,39.5,50.45,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,827,69641.05654902504,113359.7578477114,57332.07878699416,24041.5372577815,1905.031545833491 -13445,16592,30277,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,2,0,0,0,0,0,-964.9629854094095,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.19,43.16,-9,-9,3.333333333333333,1,1,1,1,0,1,2,0,143,0,0,0,0,1320.681163303078 -13446,16593,30278,30279,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,4.970760545685502,4.797527157854387,41,-6,-89.71490596639265,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.161499734433256,5.173487782849383,57.98,32.03,60.29,52.11,10,1,1,0,0,4,11,3,1,2040.5,504936.9127025548,238653.1517312501,79852.22829785669,0,2656.978258439788 -13446,16593,30279,30278,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.747444416084001,7.438723369767642,41,6,-35.7520779761766,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.302494459802098,7.60305284643357,60.29,52.11,57.98,32.03,10,1,1,0,0,7,11,3,1,2040.5,504936.9127025548,238653.1517312501,79852.22829785669,0,2656.978258439788 -13447,16594,30280,30281,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,4.56078591380755,4.798916642301523,10,0,38.21353646162373,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.465614432147161,5.094309171483492,49.35,59.64,56.1,49.93,8.333333333333334,1,1,0,0,0,7,3,1,311,876225.0809108524,340691.5592531338,452973.6877559926,0,3175.464761284612 -13447,16594,30281,30280,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.450892193844869,7.40581343183013,10,0,-84.39598131788898,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.671858482710056,7.411713036529484,56.1,49.93,49.35,59.64,8.333333333333334,1,1,0,0,0,7,3,1,311,876225.0809108524,340691.5592531338,452973.6877559926,0,3175.464761284612 -13448,16595,30282,30283,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,0,0,30,-18,-25.94877433746331,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,54.22,44.61,8.333333333333334,1,1,0,0,3,9,2,1,1495.5,663094.937965614,275068.4377363984,458784.5640894878,0,3261.515813836581 -13448,16595,30283,30282,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.946602978700931,6.982438080233644,30,18,96.21622854768971,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.436907257890921,6.902133467016827,54.22,44.61,57.06,57.76,8.333333333333334,1,1,0,0,0,9,2,1,1495.5,663094.937965614,275068.4377363984,458784.5640894878,0,3261.515813836581 -13449,16596,30284,-9,30286,30285,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.111823710212,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,575,238125.1705750971,280602.5770593284,77021.24654535834,58249.64206218141,2550.911242967603 -13449,16596,30285,30286,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.703625027836574,7.743799468445729,0,10,7,-55.03670398094069,-9,2,-9,2019,12,2,35,0,1,2,0,6.882087319495878,6.882087319495878,0,0,0,0,0,1,1,0,0,0,42.98,56.93,44.59,59.08,5,1,1,0,0,9,4,3,0,575,238125.1705750971,280602.5770593284,77021.24654535834,58249.64206218141,2550.911242967603 -13449,16596,30286,30285,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.740330083797662,7.568424906427833,0,17,-7,114.7477205768353,0,-9,2,2019,12,0,20,25,1,0,0,10.10037773674491,10.10037773674491,0,0,0,0,0,1,1,0,0,0,44.59,59.08,42.98,56.93,8.333333333333334,1,1,0,0,9,4,3,0,575,238125.1705750971,280602.5770593284,77021.24654535834,58249.64206218141,2550.911242967603 -13450,16597,30287,-9,-9,-9,1,0,51,0,1,0,3,3,-9,1,4,0,0,0,0,0,-899.8222961514469,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,33.33,56.25,-9,-9,8.333333333333334,1,1,1,1,0,5,1,0,543,86037.90586644402,0,0,0,1368.423289713071 -13450,16597,30288,-9,30287,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.351402762295,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,1,0,543,86037.90586644402,0,0,0,1368.423289713071 -13451,16598,30289,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1060.985646010097,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,13.52055207522506,0,0,1,1,0,0,0,58.15,18.08,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1961,110399.1680514498,0,0,0,1028.602451541916 -13452,16599,30290,30291,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.861085225575053,8.751450996106641,7.672211965524831,28,2,-170.9577170029552,0,3,2,2019,10,0,25,25,1,0,0,12.61053611010759,12.61053611010759,0,0,0,0,0,0,0,0,0,7.575228597016688,62.37,48.35,54.1,59.11,8.333333333333334,1,1,0,0,13,6,5,1,766.5,475710.5068930489,412824.1464355317,302882.4556624549,77758.130045385,3913.31485721085 -13452,16599,30291,30290,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.024087410966109,8.152974740424145,0,28,-2,-93.87236984597617,0,3,3,2019,9,0,23,24,1,0,0,15.19171244507336,15.19171244507336,0,0,0,0,0,0,0,0,0,0,54.1,59.11,62.37,48.35,8.333333333333334,1,1,0,0,13,6,5,1,766.5,475710.5068930489,412824.1464355317,302882.4556624549,77758.130045385,3913.31485721085 -13453,16600,30292,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.948995504682648,8.123038895043143,0,0,-1101.560640546875,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,2.704858839709767,0,21.93459106610865,0,1,1,0,4.976041693595722,8.20804221210804,51.58,32.63,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,190,1097346.893321517,265745.7923032536,463412.4390512157,0,2129.903227063186 -13454,16601,30293,30294,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,10,-3,-36.5861207155082,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,3.298847441053351,0,45.91,59.89,45.61,54.5,8.333333333333334,1,1,0,0,8,12,4,1,1088,161878.3913919044,25714.89572336843,91065.79246525928,0,2699.192135483538 -13454,16601,30294,30293,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.493741053872823,8.851044858125276,10,3,-47.51181376246246,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.651537208287046,8.608527985475941,45.61,54.5,45.91,59.89,8.333333333333334,1,1,0,0,8,12,4,1,1088,161878.3913919044,25714.89572336843,91065.79246525928,0,2699.192135483538 -13455,16602,30295,30298,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,0,0,0,35,-3,15.68181485224082,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,46.29,49,50,6.666666666666667,2,3,0,0,0,10,2,1,542.5,-42355.48655721421,0,0,0,647.6065839851701 -13455,16602,30296,-9,30295,30298,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-839.9994337004071,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,10,2,1,542.5,-42355.48655721421,0,0,0,647.6065839851701 -13455,16602,30297,-9,30295,30298,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1069.318925754717,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,1,10,2,1,542.5,-42355.48655721421,0,0,0,647.6065839851701 -13455,16602,30298,30295,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,1.880079710497307,2.340757028973005,0,35,3,-22.99078532368252,0,-9,-9,2019,10,0,42,30,1,0,0,.0227201059423942,.0227201059423942,0,0,0,0,0,1,1,0,0,0,49,50,57.93,46.29,8.333333333333334,2,3,0,0,12,10,2,1,542.5,-42355.48655721421,0,0,0,647.6065839851701 -13455,16603,30299,-9,30295,30298,1,1,26,0,1,0,1,1,-9,0,3,8.413390538095287,8.4938052319029,0,0,0,-969.0407058973469,0,3,2,2019,8,0,35,38,1,0,1,13.31231890424321,13.31231890424321,0,0,0,0,0,1,1,0,0,0,65.64,42.69,-9,-9,8.333333333333334,2,3,0,0,10,10,5,1,1107,-16435.56269034373,-34989.43893587865,0,0,1690.699952770123 -13455,16604,30300,-9,30295,30298,1,0,18,0,1,0,2,2,1,0,4,5.50131708036439,5.368480662190471,0,0,0,-942.7004287195936,-9,3,2,2019,11,2,8,0,1,2,1,3.488776083077286,3.488776083077286,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,2,3,0,0,2,10,2,1,3884,101786.1554812712,0,0,0,203.8138497922527 -13456,16605,30301,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,0,0,-936.9008637957438,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,10.59404514323692,0,0,1,1,0,0,0,42.82,25.26,-9,-9,10,1,1,0,0,0,1,1,0,1465,-108918.0776956151,0,0,0,1251.306390151586 -13457,16606,30302,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.366785252882311,9.519873537395002,3.346881618745318,0,0,-940.2515153550875,0,2,3,2019,6,0,30,30,1,0,0,48.1911895598548,48.1911895598548,0,0,0,0,0,0,0,0,7.894077718469233,3.634450988519296,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,143,2199999.239710841,1233307.08741023,506888.626489765,0,4264.648915541688 -13458,16607,30303,-9,30304,-9,1,0,24,0,1,0,2,2,-9,0,4,8.028795413347243,7.935514059259066,0,0,0,-1083.603260292258,0,3,3,2019,5,0,40,39,1,0,1,7.122454571419699,7.122454571419699,0,0,0,0,0,1,1,0,0,0,48.43,58.01,-9,-9,6.666666666666667,4,5,0,0,2,8,4,0,184,117055.5743649326,0,0,0,1382.088100532002 -13458,16608,30304,30305,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,5,-12,38.01641438655633,0,3,3,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,40.17,47.54,5,4,5,0,0,0,8,2,0,677,183227.6732558653,0,283140.1203935248,166671.5008087268,1648.007413959141 -13458,16608,30305,30304,-9,-9,1,1,59,0,1,0,3,3,-9,0,4,6.899691899367679,7.167648796491075,0,5,12,-164.4333203866662,0,-9,-9,2019,12,1,15,25,1,1,0,7.546835662546798,7.546835662546798,0,0,0,0,0,1,1,0,0,0,40.17,47.54,61.04,39.41,6.666666666666667,1,1,0,0,5,8,2,0,677,183227.6732558653,0,283140.1203935248,166671.5008087268,1648.007413959141 -13459,16609,30306,30307,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,53,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,62.58,37.25,34.88,41.49,10,1,1,0,0,5,4,1,1,543.5,191816.7709566532,137379.4864797444,144080.3245677822,0,1039.293130510015 -13459,16609,30307,30306,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,53,-1,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,11.00550607525115,0,0,1,1,0,0,0,34.88,41.49,62.58,37.25,8.333333333333334,1,1,0,0,0,4,1,1,543.5,191816.7709566532,137379.4864797444,144080.3245677822,0,1039.293130510015 -13459,16610,30308,-9,30306,30307,1,1,47,0,0,0,2,2,-9,0,3,8.295906398813065,8.305639758986899,0,0,0,-903.9423007518885,-9,3,3,2019,8,0,35,0,1,0,0,16.31962468196101,16.31962468196101,0,0,0,0,2,1,1,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,837,119661.3673580365,-127166.0214725946,0,0,1636.249528187468 -13460,16611,30309,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,7.281963923891318,7.584302496702797,6.392808940544284,0,0,-955.3801502202658,0,3,3,2019,7,0,20,20,1,0,0,8.700351649432742,8.700351649432742,0,0,0,0,0,1,1,0,0,6.617746127056663,60.3,49.25,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,462,1354423.116453794,607054.7808644787,450117.7762759754,0,2334.359495968436 -13461,16612,30310,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.21660840945392,8.838533567969808,0,0,0,-1031.541321797326,0,1,3,2019,6,0,38,38,1,0,0,29.54169846798738,29.54169846798738,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,1797,-56402.68356859847,0,0,0,2896.011153217404 -13462,16613,30311,30312,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.408077971858404,8.254340032829743,4.322604329212035,8,1,15.72243378157727,0,3,3,2019,8,0,51,50,1,0,0,8.752197117476234,8.752197117476234,0,0,0,0,0,0,0,0,0,4.391374613721608,46.56,47.56,44.62,28.13,8.333333333333334,1,1,0,0,9,9,4,1,246,1718351.416242647,639569.9624475702,704053.2272690542,0,2558.784917121902 -13462,16613,30312,30311,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,7.623917001980212,7.74623576000729,0,8,-1,96.31258764987831,0,3,2,2019,22,10,29,27,1,10,0,7.312951941937532,7.312951941937532,0,0,0,0,0,0,0,0,0,0,44.62,28.13,46.56,47.56,8.333333333333334,1,1,0,0,9,9,4,1,246,1718351.416242647,639569.9624475702,704053.2272690542,0,2558.784917121902 -13463,16614,30313,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-892.1224372267128,0,3,-9,2019,12,4,0,0,4,4,0,0,0,1,0,8.030213483350737,0,0,1,1,0,0,0,46.7,20.01,-9,-9,3.333333333333333,1,1,0,0,6,2,1,0,600,166164.1169744378,0,-23095.52055079611,0,1236.60114843535 -13464,16615,30314,30315,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,9.116241184703519,8.682222000344201,7,-3,125.7070349124835,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.631436329290678,8.855157765811972,62.49,55.09,30.31,39.1,8.333333333333334,1,1,0,0,7,4,5,1,225,2096263.112588367,1484285.520750861,474244.1068834736,0,4876.053694172466 -13464,16615,30315,30314,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.664231420336583,6.974953017988861,0,7,3,-41.99801103715819,0,1,2,2019,22,10,8,8,1,10,0,14.2508209509432,14.2508209509432,0,0,0,0,0,0,0,0,2.775146240410833,0,30.31,39.1,62.49,55.09,6.666666666666667,1,1,0,0,2,4,5,1,225,2096263.112588367,1484285.520750861,474244.1068834736,0,4876.053694172466 -13465,16616,30316,30319,-9,-9,1,0,40,0,4,0,1,1,-9,0,2,0,0,0,23,3,-59.01051519933104,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.9,36.73,60.12,54.8,8.333333333333334,2,3,0,1,0,4,2,1,456,120949.6263411613,-26654.07406049194,0,0,3132.612272057125 -13465,16616,30317,-9,30316,30319,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-908.5759973011127,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,456,120949.6263411613,-26654.07406049194,0,0,3132.612272057125 -13465,16616,30318,-9,30316,30319,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1080.472852264926,-9,1,2,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,456,120949.6263411613,-26654.07406049194,0,0,3132.612272057125 -13465,16616,30319,30316,-9,-9,1,1,37,0,4,0,2,2,-9,0,4,8.063215308274767,7.825441246603124,0,9,-3,-100.4072861613443,0,-9,-9,2019,3,0,44,40,1,0,0,7.188722051010513,7.188722051010513,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.9,36.73,8.333333333333334,2,3,0,0,12,4,2,1,456,120949.6263411613,-26654.07406049194,0,0,3132.612272057125 -13466,16617,30320,30321,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,32,-1,0,0,1,1,2019,5,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,7.784552195849991,0,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,12,7,1,1,643,1322131.117293984,90120.95149776347,460830.5421751274,0,4356.424396271209 -13466,16617,30321,30320,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,32,1,0,0,2,2,2019,4,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,9.406717545283733,0,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,7,1,1,643,1322131.117293984,90120.95149776347,460830.5421751274,0,4356.424396271209 -13466,16618,30322,-9,30320,30321,1,0,20,0,0,0,1,1,1,0,4,8.271866552022097,8.085043202011649,0,0,0,-1086.380159131385,-9,1,1,2019,7,1,38,0,1,1,0,10.40381266720174,10.40381266720174,0,0,0,0,0,0,0,0,4.903745228822905,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,484,72732.62508720813,160238.1820427344,0,0,1573.269670976641 -13466,16619,30323,-9,30320,30321,1,1,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-969.7898644711158,-9,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.728515396414692,0,37.07,46.74,-9,-9,5,1,1,1,0,0,7,1,1,146,-24191.87543835933,0,0,0,-337.8225586520819 -13467,16620,30324,-9,30325,30326,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.333919882392,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,0,1297,193151.9994577628,87308.64378191765,217460.6873260335,168456.0985115856,5080.575617585562 -13467,16620,30325,30326,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.426085702869786,8.450030501576075,0,3,-2,74.88725698142461,0,-9,-9,2019,13,1,43,43,1,1,0,16.05755073512308,16.05755073512308,0,0,0,0,0,1,1,0,8.404147751957378,0,46.08,57.2,47,52,6.666666666666667,1,1,0,0,5,11,5,0,1297,193151.9994577628,87308.64378191765,217460.6873260335,168456.0985115856,5080.575617585562 -13467,16620,30326,30325,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.2118635831473,8.204440450824249,0,3,2,8.982827124872724,0,1,1,2019,6,0,40,40,1,0,0,11.91252662702312,11.91252662702312,0,0,0,0,0,1,1,0,0,0,47,52,46.08,57.2,8.333333333333334,1,1,0,0,7,11,5,0,1297,193151.9994577628,87308.64378191765,217460.6873260335,168456.0985115856,5080.575617585562 -13468,16621,30327,30328,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.623638933993041,7.306516091532171,41,4,-95.10566641154519,0,2,2,2019,10,2,0,35,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.476468626653237,48.28,60.18,49.58,50.05,8.333333333333334,1,1,0,0,8,12,3,1,585,245460.3842693265,134931.3497477472,107438.1602768889,0,856.4174188595057 -13468,16621,30328,30327,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.082050767014448,6.242906406301532,0,41,-4,5.868222907855668,0,2,2,2019,12,0,25,25,1,0,0,2.545975022631043,2.545975022631043,0,0,0,0,2,0,0,0,0,0,49.58,50.05,48.28,60.18,1.666666666666667,1,1,0,0,9,12,3,1,585,245460.3842693265,134931.3497477472,107438.1602768889,0,856.4174188595057 -13469,16622,30329,30330,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,7.745465304196542,7.937873638885385,0,6,2,12.97238454817897,0,1,1,2019,13,3,38,37,1,3,0,9.153385339230221,9.153385339230221,0,0,0,0,0,0,0,0,1.892846794358864,0,51.73,58.82,51.24,58.84,8.333333333333334,1,1,0,0,7,5,5,1,1384,15264.26723911797,96291.27110879991,132233.691145416,67845.94492955344,3207.691312198584 -13469,16622,30330,30329,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.424654594209597,8.553197938773708,0,6,-2,92.53944332718289,0,-9,-9,2019,5,1,50,50,1,1,0,11.82181116099705,11.82181116099705,0,0,0,0,0,0,0,0,1.846136516210496,0,51.24,58.84,51.73,58.82,6.666666666666667,1,1,0,0,7,5,5,1,1384,15264.26723911797,96291.27110879991,132233.691145416,67845.94492955344,3207.691312198584 -13470,16623,30331,30332,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.48831330829227,6.495089088433403,47,-7,5.739380522718988,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.758023824944502,54.2,57.49,55.2,49.4,8.333333333333334,3,4,0,0,10,8,2,0,237,752512.1495397158,237862.2261799708,424795.636678881,0,1731.734921063149 -13470,16623,30332,30331,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.974344993488069,6.565182570362328,9,7,-44.68126847269437,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.246023370703883,55.2,49.4,54.2,57.49,8.333333333333334,3,4,0,0,0,8,2,0,237,752512.1495397158,237862.2261799708,424795.636678881,0,1731.734921063149 -13471,16624,30333,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.7708155725031,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.589164161744721,0,59.27,31.95,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,358,169905.621984479,0,0,0,1129.672184858605 -13472,16625,30334,30335,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.353435393103431,5.734449254956087,9,-1,-118.2265066818872,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,5.811035619693143,0,0,1,1,0,0,5.897438285041787,37.02,37.37,53.41,34.52,6.666666666666667,1,1,0,0,5,13,2,1,1255,55685.59773725201,0,0,0,2426.03888283579 -13472,16625,30335,30334,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.54228321317951,6.669569484744473,9,1,93.16197019086857,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,6.534607413352288,6.857584325422456,53.41,34.52,37.02,37.37,8.333333333333334,1,1,0,0,3,13,2,1,1255,55685.59773725201,0,0,0,2426.03888283579 -13473,16626,30336,30337,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.26603089832072,9.242776568718014,0,28,0,-163.7991421103652,0,2,1,2019,11,2,54,48,1,2,0,21.27644436361226,21.27644436361226,0,0,0,0,0,0,0,0,0,0,51.01,41.69,61.12,51.57,8.333333333333334,1,1,0,0,12,13,5,1,1083,925251.0559013585,423862.1712254212,535383.4373432493,162450.7055601497,7607.164041734056 -13473,16626,30337,30336,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.478971896114746,9.500262148819463,0,28,0,-111.5561609042179,0,1,2,2019,6,0,42,50,1,0,0,33.32688373919808,33.32688373919808,0,0,0,0,0,0,0,0,0,0,61.12,51.57,51.01,41.69,10,1,1,0,0,12,13,5,1,1083,925251.0559013585,423862.1712254212,535383.4373432493,162450.7055601497,7607.164041734056 -13474,16627,30338,30339,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.654053913147072,8.423282498727737,0,2,0,-13.89556564648959,0,1,1,2019,12,1,50,52,1,1,0,8.933817232417018,8.933817232417018,0,0,0,0,0,0,0,0,6.401856445263654,0,25.22,69.73999999999999,52.4,55.58,6.666666666666667,1,1,0,0,10,8,5,1,167.5,82404.77723942879,75762.8243549965,0,0,4638.085242261659 -13474,16627,30339,30338,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.902216790575142,8.852660865244754,0,2,0,-137.0353954976983,0,-9,-9,2019,3,1,65,37,1,1,0,13.93649891326946,13.93649891326946,0,0,0,0,0,0,0,0,0,0,52.4,55.58,25.22,69.73999999999999,8.333333333333334,4,2,0,0,0,8,5,1,167.5,82404.77723942879,75762.8243549965,0,0,4638.085242261659 -13475,16628,30340,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-901.4922211104446,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,.2297326621123812,0,1,1,0,0,0,35.33,31.27,-9,-9,5,1,1,0,0,0,9,1,0,2152,-59097.85342246992,7444.228971863508,0,0,1975.661898362647 -13475,16629,30341,-9,30340,-9,1,0,21,0,0,0,1,1,-9,0,3,8.14441007602206,8.326681323322825,0,0,0,-1060.112167326088,0,2,-9,2019,17,6,54,45,1,6,1,9.130669348151901,9.130669348151901,0,0,0,0,0,1,1,0,0,0,37.48,55.54,-9,-9,6.666666666666667,1,1,0,0,3,9,4,0,1220,-135451.2041877427,46801.08091085084,0,0,1110.63909693212 -13476,16630,30342,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.770163603482491,8.031818220985423,0,0,0,-878.7332947041668,0,3,3,2019,23,11,33,28,1,11,0,10.40707788344391,10.40707788344391,0,0,0,0,0,1,1,0,4.404596312107933,0,43.65,58.28,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,4459,279051.7076253803,113942.2898316649,0,0,1109.097354520619 -13477,16631,30343,30344,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,3,7,0,-9,3,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,15.74,35.05,51.62,15.83,0,1,1,0,0,0,9,1,0,550.5,133451.0637384953,-63003.90117998931,0,0,2088.335574933611 -13477,16631,30344,30343,-9,-9,1,1,32,0,0,0,2,2,-9,1,1,0,0,0,3,-7,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,51.62,15.83,15.74,35.05,5,1,1,0,0,0,9,1,0,550.5,133451.0637384953,-63003.90117998931,0,0,2088.335574933611 -13478,16632,30345,30346,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.325416764413442,8.627829585944038,0,16,-1,97.87792266509769,0,2,3,2019,8,0,25,17,1,0,0,23.21101462481135,23.21101462481135,0,0,0,0,0,0,0,0,2.695766722518051,0,51.24,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,6,5,1,483.5,179750.0033781671,84979.3763168326,361061.0311201977,293877.5848119234,6559.3340130631 -13478,16632,30346,30345,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.603817682815325,9.613425828224392,0,16,1,42.56717818290348,0,2,2,2019,7,0,46,47,1,0,0,33.51334589333771,33.51334589333771,0,0,0,0,0,0,0,0,4.52406630569724,0,51.24,58.84,51.24,58.84,6.666666666666667,1,1,0,0,8,6,5,1,483.5,179750.0033781671,84979.3763168326,361061.0311201977,293877.5848119234,6559.3340130631 -13478,16632,30347,-9,30345,30346,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-843.170650339571,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,483.5,179750.0033781671,84979.3763168326,361061.0311201977,293877.5848119234,6559.3340130631 -13478,16632,30348,-9,30345,30346,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.1136483599378,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,483.5,179750.0033781671,84979.3763168326,361061.0311201977,293877.5848119234,6559.3340130631 -13479,16633,30349,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,4.863953506872553,5.025989029937548,0,0,0,-1008.763726743762,0,3,3,2019,10,0,40,40,1,1,0,.3978773610570954,.3978773610570954,0,0,0,0,0,1,1,0,3.142901751185299,0,51,53,-9,-9,8,3,4,0,0,1,8,2,0,796,8127.110932383337,144004.0577930954,0,0,-763.8196988678856 -13479,16634,30350,-9,30349,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-945.2366831206391,-9,1,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,2022,203218.6918298992,0,0,0,1150.465845096912 -13479,16634,30351,-9,-9,30350,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-923.8196014011614,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,1,0,2022,203218.6918298992,0,0,0,1150.465845096912 -13479,16635,30352,-9,30349,-9,1,0,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-971.5128567701937,-9,1,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,1,0,2,8,1,0,1277,-51233.3553145015,0,0,0,0 -13479,16636,30353,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,4,0,0,0,0,0,-1041.579371056538,-9,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,1,0,3,8,1,0,587,47487.56889072045,0,0,0,0 -13480,16637,30354,-9,30355,30357,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.071950469669,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,571,589893.7793043402,312972.5580628313,525703.2626585485,224738.1242333623,5086.53835326236 -13480,16637,30355,30357,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.123893283048398,7.953354962683802,0,17,2,21.58735210436324,0,3,3,2019,11,1,31,31,1,1,0,14.74777373534925,14.74777373534925,0,0,0,2.896317887560958,0,1,1,0,0,0,38.76,58.16,57.73,54.53,6.666666666666667,1,1,0,0,12,10,5,1,571,589893.7793043402,312972.5580628313,525703.2626585485,224738.1242333623,5086.53835326236 -13480,16637,30356,-9,30355,30357,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.8731861879635,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,5,1,571,589893.7793043402,312972.5580628313,525703.2626585485,224738.1242333623,5086.53835326236 -13480,16637,30357,30355,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.160821604296101,9.059005286531187,0,3,-2,-139.5100330629305,0,2,3,2019,5,2,42,45,1,2,0,28.82101826255492,28.82101826255492,0,0,0,0,0,1,1,0,.9605555821935803,0,57.73,54.53,38.76,58.16,6.666666666666667,1,1,0,0,12,10,5,1,571,589893.7793043402,312972.5580628313,525703.2626585485,224738.1242333623,5086.53835326236 -13481,16638,30358,-9,30360,30359,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1165.431377336695,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,569,622208.7088559166,490505.1745649536,172736.1356866826,0,2392.054810794379 -13481,16638,30359,30360,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.073973019232403,8.534084767452807,0,8,-3,59.65037724525958,0,-9,-9,2019,9,0,60,40,1,1,0,8.642842018328261,8.642842018328261,0,0,0,0,0,1,1,0,2.862398284862145,0,53,55,57.16,56.15,8,1,1,0,0,1,4,3,1,569,622208.7088559166,490505.1745649536,172736.1356866826,0,2392.054810794379 -13481,16638,30360,30359,-9,-9,1,0,54,0,1,0,3,3,-9,0,4,7.232495700689475,7.199720328343981,0,19,3,6.828652838712404,0,3,3,2019,7,0,24,26,1,0,0,4.559805069823142,4.559805069823142,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,1,1,0,0,9,4,3,1,569,622208.7088559166,490505.1745649536,172736.1356866826,0,2392.054810794379 -13482,16639,30361,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,7.598288792560216,7.599174427060223,0,0,0,-1128.961480264373,0,3,2,2019,10,0,40,37,1,0,0,5.256087588345784,5.256087588345784,0,0,0,0,0,0,0,0,0,0,54.61,51.04,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,461,114652.0655788662,0,0,0,612.2084183561037 -13483,16640,30362,30363,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.942751792997752,7.285314189800877,0,7,-4,114.7571464634621,0,2,2,2019,10,1,50,42,1,1,0,2.585916428913727,2.585916428913727,0,0,0,0,0,0,0,0,1.665289579742567,0,58.87,45.76,50.63,50.99,6.666666666666667,1,1,0,0,8,11,4,1,375,194860.3261705312,21249.48448272368,209416.7536271152,0,2310.055384318998 -13483,16640,30363,30362,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.811671588838207,8.332119043979388,6.9339031651969,7,4,-28.34581648873353,0,3,3,2019,9,0,43,41,1,0,0,9.344688762181958,9.344688762181958,0,0,0,0,0,0,0,0,2.955486172173317,6.885807080803445,50.63,50.99,58.87,45.76,6.666666666666667,1,1,0,0,8,11,4,1,375,194860.3261705312,21249.48448272368,209416.7536271152,0,2310.055384318998 -13484,16641,30364,30366,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.083316818426217,8.568612389416153,0,12,-1,-34.99342799879295,0,2,2,2019,11,2,35,35,1,2,0,12.21565291840412,12.21565291840412,0,0,0,0,0,1,1,0,0,0,54.18,57.51,50,55,8.333333333333334,2,3,0,0,6,8,3,0,1049.2,37513.50336190609,362.1491534897185,259659.8630154928,161774.5535583087,2225.978245540669 -13484,16641,30365,-9,30366,30364,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.60868262846,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,1049.2,37513.50336190609,362.1491534897185,259659.8630154928,161774.5535583087,2225.978245540669 -13484,16641,30366,30364,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,0,0,0,6,1,80.09505694190348,0,2,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54.18,57.51,7,2,3,1,0,0,8,3,0,1049.2,37513.50336190609,362.1491534897185,259659.8630154928,161774.5535583087,2225.978245540669 -13484,16641,30367,-9,30366,30364,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.459315515703,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,1049.2,37513.50336190609,362.1491534897185,259659.8630154928,161774.5535583087,2225.978245540669 -13484,16641,30368,-9,30366,30364,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.3384841414093,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,1049.2,37513.50336190609,362.1491534897185,259659.8630154928,161774.5535583087,2225.978245540669 -13485,16642,30369,30370,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,0,6.638711502037322,7.011239854751374,26,-3,57.06333211380487,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.924195451238671,54,54,50.78,12.03,8,1,1,0,0,0,4,2,1,1680,483829.4818958843,284534.4320945221,207605.2143499877,0,1808.106550193601 -13485,16642,30370,30369,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,26,3,70.67646318597308,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.78,12.03,54,54,5,1,1,0,1,0,4,2,1,1680,483829.4818958843,284534.4320945221,207605.2143499877,0,1808.106550193601 -13486,16643,30371,-9,30372,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1137.043550377439,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,4,2,-9,0,0,6,2,0,567,72912.40181514031,36061.23382836616,178534.4533007625,63831.19178570135,2482.776403575137 -13486,16643,30372,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.956005460567096,6.965160166192582,0,0,0,-952.2044225021857,0,2,-9,2019,23,11,16,16,1,11,0,6.030116166242927,6.030116166242927,0,0,0,0,0,1,1,0,0,0,25.86,61.44,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,567,72912.40181514031,36061.23382836616,178534.4533007625,63831.19178570135,2482.776403575137 -13486,16643,30373,-9,30372,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-964.423426623095,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,6,2,0,567,72912.40181514031,36061.23382836616,178534.4533007625,63831.19178570135,2482.776403575137 -13486,16644,30374,-9,30372,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-1024.224899990931,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.21,49.76,-9,-9,6.666666666666667,4,2,0,0,3,6,1,0,551,0,0,0,0,0 -13486,16645,30375,-9,30372,-9,1,1,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1005.018616204438,-9,2,-9,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.32,40.9,-9,-9,5,4,2,0,1,0,6,1,0,624,239474.1266198744,0,0,0,0 -13487,16646,30376,-9,-9,-9,1,0,43,0,3,0,3,3,-9,1,1,0,0,0,0,0,-950.650519571056,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,25.91,-9,-9,8.333333333333334,4,2,0,1,0,6,1,0,462.75,-108831.2936546413,0,0,0,2590.635544188031 -13487,16646,30377,-9,30376,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-907.9624429240924,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,4,2,-9,0,0,6,1,0,462.75,-108831.2936546413,0,0,0,2590.635544188031 -13487,16646,30378,-9,30376,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-849.1263012394243,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,6,1,0,462.75,-108831.2936546413,0,0,0,2590.635544188031 -13487,16646,30379,-9,30376,-9,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-906.3318621596869,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,1,0,462.75,-108831.2936546413,0,0,0,2590.635544188031 -13487,16647,30380,-9,30376,-9,1,1,22,0,3,0,2,2,0,1,1,0,0,0,0,0,-1106.66221970551,-9,3,-9,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,55.14,18.28,-9,-9,1.666666666666667,4,2,0,0,0,6,1,0,1902,51135.15058959415,0,0,0,-438.5008706331778 -13488,16648,30381,-9,30382,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1076.646334320646,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,4,1,0,840,36284.36360944613,0,0,0,1345.339364186677 -13488,16648,30382,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1003.438567141498,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,13.07,39.1,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,840,36284.36360944613,0,0,0,1345.339364186677 -13489,16649,30383,30384,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.214157521588639,8.469334279608191,3,8,-57.47081711023704,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.444649179561975,8.294046111703341,48.35,46.53,35.07,45.2,8.333333333333334,1,1,0,0,0,1,5,1,167.5,822161.1646836498,656940.587025803,120050.7827911414,53417.90595302393,2615.052135312381 -13489,16649,30384,30383,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.175982678038908,8.163633169709895,0,3,-8,75.18696602927129,0,-9,-9,2019,15,4,30,39,1,4,0,13.82476804396907,13.82476804396907,0,0,0,0,0,0,0,0,1.463795302246943,0,35.07,45.2,48.35,46.53,3.333333333333333,1,1,0,0,3,1,5,1,167.5,822161.1646836498,656940.587025803,120050.7827911414,53417.90595302393,2615.052135312381 -13490,16650,30385,-9,30387,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1190.13086735425,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,0,1206.333333333333,-172717.8557153436,115358.3034746738,0,0,1865.829623210741 -13490,16650,30386,-9,30387,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.0614687382656,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1206.333333333333,-172717.8557153436,115358.3034746738,0,0,1865.829623210741 -13490,16650,30387,-9,-9,-9,1,0,36,0,2,0,1,1,1,0,5,8.232624284929448,8.33168653546173,0,0,0,-986.8637855780997,-9,2,1,2019,7,0,45,0,1,0,0,11.73425050271562,11.73425050271562,0,0,0,0,0,1,1,0,1.139497338101923,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,1206.333333333333,-172717.8557153436,115358.3034746738,0,0,1865.829623210741 -13491,16651,30388,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1028.972098959037,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,40.98,52.59,-9,-9,5,1,1,0,0,0,11,2,0,438,-88072.42391114464,0,125170.5730962096,0,597.0861068298294 -13491,16652,30389,-9,30388,-9,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1101.601951472147,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,4827,-82414.3934769122,0,0,0,513.8704154055963 -13491,16653,30390,-9,30388,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1127.873350622655,0,2,-9,2019,26,11,0,0,3,11,1,0,0,0,0,0,0,71.5,1,1,0,0,0,43,53,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,539,0,0,0,0,0 -13492,16654,30391,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.803901807251068,5.865370151355717,0,0,-917.2851814508757,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.804923851684596,6.038606568501381,47.55,44.33,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,2908,1063365.114999775,162204.5423304988,772712.1647659705,79422.91290808018,921.9505565091006 -13493,16655,30392,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1030.443931028452,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.65,35.25,-9,-9,10,1,1,0,0,0,7,1,0,908,-236990.3673989786,0,0,0,1706.183630734908 -13494,16656,30393,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.090937352298522,7.109805985884064,0,0,-1039.954407994773,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.348126492660259,.3271616163822757,26.49449331639157,0,1,1,0,0,7.170432634758609,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,253,699398.1607363276,339883.0945877435,25311.54618536084,0,1478.049952022152 -13495,16657,30394,30395,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,7,13,0,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,11.1,34.51,50,57,0,1,1,0,1,0,9,1,0,249,-1329.514903194435,0,0,0,959.6611001924432 -13495,16657,30395,30394,-9,-9,1,1,35,0,0,0,3,3,-9,0,4,0,0,0,7,-13,0,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,11.1,34.51,7,1,1,0,0,0,9,1,0,249,-1329.514903194435,0,0,0,959.6611001924432 -13496,16658,30396,-9,30398,30397,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.486902319675,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1628.333333333333,64573.96483901574,33879.80566631615,230145.7937549384,151265.4434824481,2775.423087162788 -13496,16658,30397,30398,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.473887775989075,8.579182608415348,0,7,0,65.76935818863831,0,-9,-9,2019,6,1,40,40,1,1,0,16.31370564268799,16.31370564268799,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.71,52.35,1.666666666666667,1,1,0,0,7,13,4,1,1628.333333333333,64573.96483901574,33879.80566631615,230145.7937549384,151265.4434824481,2775.423087162788 -13496,16658,30398,30397,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.833147861339108,8.016750820823352,0,7,0,-118.4395930954013,0,-9,-9,2019,13,1,37,37,1,1,0,8.435379557114139,8.435379557114139,0,0,0,0,0,1,1,0,0,0,50.71,52.35,51.24,58.84,8.333333333333334,1,1,0,0,7,13,4,1,1628.333333333333,64573.96483901574,33879.80566631615,230145.7937549384,151265.4434824481,2775.423087162788 -13497,16659,30399,30400,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.501750036442473,7.37288301181809,0,8,-2,-18.31075985800501,0,-9,-9,2019,11,0,25,30,1,2,0,9.1378446223198,9.1378446223198,0,0,0,0,0,0,0,0,0,0,49,48,33.83,41.55,7,1,1,0,0,1,10,4,1,636,65344.83569352006,-14235.01896584928,0,0,2444.060890643402 -13497,16659,30400,30399,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.18582651255058,8.442915686149945,7.088238058658692,19,2,-136.0708466074119,0,3,2,2019,23,9,37,37,1,9,0,10.45917664895796,10.45917664895796,0,0,0,0,0,0,0,0,7.087456619017446,0,33.83,41.55,49,48,6.666666666666667,1,1,0,0,9,10,4,1,636,65344.83569352006,-14235.01896584928,0,0,2444.060890643402 -13498,16660,30401,-9,-9,-9,1,0,37,0,3,0,3,3,-9,1,1,0,4.74374886267181,4.401029534318609,0,0,-919.7376601578475,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,4.719622791041987,0,40.3,22.27,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,348.6,-23218.05241918876,42978.56183279818,0,0,2430.843431889347 -13498,16660,30402,-9,30401,-9,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-943.4773102495283,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,2,0,348.6,-23218.05241918876,42978.56183279818,0,0,2430.843431889347 -13498,16660,30403,-9,30401,-9,1,1,17,0,3,0,2,2,1,0,4,0,0,0,0,0,-894.9727837794569,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,1,0,0,5,2,0,348.6,-23218.05241918876,42978.56183279818,0,0,2430.843431889347 -13498,16660,30404,-9,30401,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.563771264265,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,348.6,-23218.05241918876,42978.56183279818,0,0,2430.843431889347 -13498,16660,30405,-9,30401,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.2979975655642,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,348.6,-23218.05241918876,42978.56183279818,0,0,2430.843431889347 -13499,16661,30406,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-844.1889351518172,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.586571145089057,0,61.28,48.88,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,717,152.4830495472785,0,0,0,1559.852592232209 -13500,16662,30407,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.637879297400329,8.109370474084844,6.669947897454623,0,0,-930.3427129449458,0,3,3,2019,26,11,50,-9,1,11,0,4.938768356775182,4.938768356775182,0,0,0,0,0,0,0,0,7.223179397446246,6.97036888763466,25.46,55.01,-9,-9,0,1,1,0,0,8,8,4,1,359,891780.623009811,125059.7360447197,744985.0083412403,32455.55876185871,1815.636640775122 -13501,16663,30408,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.480237169737979,8.345813165776145,0,0,0,-1095.685536647704,0,2,2,2019,11,0,8,6,1,0,0,60.01687556717948,60.01687556717948,0,0,0,0,2,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,555,218252.4193480606,157015.9762831667,256081.3554060798,0,2401.537818098906 -13502,16664,30409,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.727646447885693,7.973946644627297,0,0,0,-952.8626785855009,0,2,2,2019,7,0,37,38,1,0,0,8.669301296477689,8.669301296477689,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,1127,-42722.32676253718,4853.3785637267,0,0,265.7255636575401 -13503,16665,30410,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,3,0,7.47018035096213,7.574977329099305,0,0,-863.4899551479034,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.551863073178797,46.1,44.8,-9,-9,1.666666666666667,1,1,0,0,4,4,2,1,502,406236.1804927752,161571.5239668418,0,0,762.3945121828897 -13503,16666,30411,-9,30413,30412,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.422707648424,-9,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,1.710346595405523,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1253,2211239.490013354,1843287.099146288,348799.491348817,57533.40102610551,3946.410271759323 -13503,16666,30412,30413,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,8.165014477577614,8.697693480483791,7.314558855909455,8,3,-30.84675469127705,0,-9,-9,2019,24,12,45,40,1,12,0,9.286066057636914,9.286066057636914,0,0,0,0,0,1,1,0,0,7.60249273648038,37.65,57.34,49.06,58.64,6.666666666666667,1,1,0,0,10,4,4,1,1253,2211239.490013354,1843287.099146288,348799.491348817,57533.40102610551,3946.410271759323 -13503,16666,30413,30412,-9,30410,1,0,42,0,3,0,2,2,-9,0,4,7.715708281358828,7.880176119621379,0,8,-3,-78.05707570314928,0,3,3,2019,13,2,39,0,1,2,0,6.452730015678093,6.452730015678093,0,0,0,0,0,1,1,0,0,0,49.06,58.64,37.65,57.34,8.333333333333334,1,1,0,0,5,4,4,1,1253,2211239.490013354,1843287.099146288,348799.491348817,57533.40102610551,3946.410271759323 -13503,16666,30414,-9,30413,30412,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-980.5752802391908,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,.2207505466521376,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,1253,2211239.490013354,1843287.099146288,348799.491348817,57533.40102610551,3946.410271759323 -13503,16666,30415,-9,30413,30412,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1076.737552859676,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,1253,2211239.490013354,1843287.099146288,348799.491348817,57533.40102610551,3946.410271759323 -13504,16667,30416,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1007.979436093374,0,2,2,2019,15,5,0,15,4,5,0,0,0,0,0,0,0,0,1,1,0,3.164884174273107,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,541,114024.650944203,213090.2555809826,118313.588670228,0,54.56115272167062 -13505,16668,30417,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,4,8.146066591937123,8.0553860821705,4.107640830919532,1,-3,-.0483510574318712,-9,-9,-9,2019,18,6,40,0,1,6,0,7.025420458194701,7.025420458194701,0,0,0,0,0,0,0,0,4.204548214615143,0,38,62.48,54.37,54.8,6.666666666666667,1,1,0,0,4,7,4,0,653,-5383.725633441594,-47516.6006222526,0,0,1234.093846719494 -13505,16669,30418,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.54066020087978,7.974889163246294,4.743996522621437,1,3,-13.47251098617445,-9,-9,-9,2019,8,0,28,0,1,0,0,7.698495018593744,7.698495018593744,0,0,0,0,0,0,0,0,4.724595286706246,0,54.37,54.8,38,62.48,8.333333333333334,1,1,0,0,1,7,4,0,2357,-154860.4737015183,0,0,0,1215.925787751021 -13506,16670,30419,30420,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.555925371535295,9.993554163425024,8.570131066574655,43,5,33.60018926294686,0,2,2,2019,8,0,45,47,1,0,0,47.49685845060515,47.49685845060515,0,0,0,0,0,0,0,0,3.193619402961577,8.659129694749629,54.33,50.48,59.3,39.29,8.333333333333334,1,1,0,0,11,6,5,1,680.5,1052598.558925445,733668.8560319697,307445.9969367184,0,6220.805973738636 -13506,16670,30420,30419,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,43,-5,52.0412012430996,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.586167499706091,0,59.3,39.29,54.33,50.48,8.333333333333334,1,1,0,0,0,6,5,1,680.5,1052598.558925445,733668.8560319697,307445.9969367184,0,6220.805973738636 -13506,16671,30421,-9,30420,30419,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.6924525887501,-9,2,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.18,55.57,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,632,-67043.05032792948,0,0,0,0 -13507,16672,30422,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.810711661043271,9.291610751247687,0,0,0,-936.5206308112422,-9,1,3,2019,1,0,21,0,1,0,0,40.96956124638623,40.96956124638623,0,0,0,0,2,0,0,0,0,0,58.39,41.27,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,1276,1033275.176776811,213641.4026772709,974696.7018245514,0,2910.745814756747 -13508,16673,30423,30428,-9,-9,1,0,40,1,5,0,3,3,-9,0,4,0,0,0,24,-5,-53.50214297775747,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,43.81,44.71,7,2,3,0,0,0,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16673,30424,-9,30423,30428,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-956.9631523799266,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16673,30425,-9,30423,30428,1,1,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1054.597897065672,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16673,30426,-9,30423,30428,1,0,14,1,5,1,3,0,-9,0,2,0,0,0,0,0,-958.7422471227488,-9,3,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16673,30427,-9,30423,30428,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-943.4096419106073,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16673,30428,30423,30429,-9,1,1,45,1,5,0,1,1,-9,0,3,8.569060695811997,8.935740152997305,0,24,5,-81.80039039263973,0,3,3,2019,14,2,40,20,1,2,0,18.97515659113785,18.97515659113785,0,0,0,0,14.5,1,1,0,0,0,43.81,44.71,50,55,8.333333333333334,2,3,0,0,8,7,3,1,798,469998.3670020775,350016.7394616616,323327.400817703,143683.197962131,2215.469764279192 -13508,16674,30429,-9,-9,-9,1,0,77,1,5,0,2,2,-9,0,3,0,0,0,0,0,-1036.71363389895,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,499,0,0,0,0,1301.873435303607 -13508,16675,30430,-9,30423,30428,1,1,19,1,5,1,2,0,0,0,4,0,0,0,0,0,-878.4446575990939,-9,3,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,288,0,0,0,0,448.5692450987314 -13508,16676,30431,-9,30423,30428,1,0,18,1,5,1,3,0,0,0,4,0,0,0,0,0,-891.434609981024,-9,3,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,1350,32947.68184606122,0,0,0,377.7961369806283 -13509,16677,30432,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.38660156984173,8.040334602611583,0,0,0,-987.3369340805638,0,-9,-9,2019,11,1,73,90,1,1,0,5.722659724413089,5.722659724413089,0,0,0,0,0,0,0,0,0,0,41.07,59.81,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,481,-19311.71351102923,36095.25863248258,0,0,1556.491821183725 -13509,16678,30433,-9,30432,-9,1,1,19,0,0,1,2,0,0,0,4,0,3.702077775206415,3.821966709490137,0,0,-1039.264400438107,-9,1,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.695588757602497,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,10,7,2,0,914,-166992.5202616045,0,0,0,35.73606522978412 -13510,16679,30434,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1022.890207311948,0,2,2,2019,15,2,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,1.68131581753994,0,39.48,21.25,-9,-9,6.666666666666667,1,1,0,0,9,4,1,0,141,159471.7356495298,0,0,0,411.7115015292112 -13511,16680,30435,30436,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.246250486931952,7.296079200555376,0,5,-7,117.7588967180675,0,3,2,2019,14,2,20,20,1,2,0,9.852664084907227,9.852664084907227,0,0,0,0,14.5,0,0,0,0,0,54.78,34.44,49.39,47.46,8.333333333333334,1,1,0,0,7,6,4,1,222,678439.7486288201,549679.6817926775,152405.7972149607,83796.36438159912,2683.389037864319 -13511,16680,30436,30435,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.423078993840637,8.694627943104241,3.112656583820218,5,7,83.51095578096701,0,-9,-9,2019,12,1,48,48,1,1,0,13.22342126836612,13.22342126836612,0,0,0,0,0,0,0,0,6.831848717459017,0,49.39,47.46,54.78,34.44,6.666666666666667,1,1,0,0,5,6,4,1,222,678439.7486288201,549679.6817926775,152405.7972149607,83796.36438159912,2683.389037864319 -13512,16681,30437,30438,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.889169484820766,4.987581604782455,46,-6,133.2338041629792,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.121660077939281,45.9,47.62,46.61,56.93,3.333333333333333,1,1,0,0,1,7,3,1,425.5,2754754.764279686,1735527.23704556,891050.8182479744,0,3304.774137274209 -13512,16681,30438,30437,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.209579337092205,8.135889652138516,46,6,-42.82511240272952,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.51930987964937,46.61,56.93,45.9,47.62,8.333333333333334,1,1,0,0,8,7,3,1,425.5,2754754.764279686,1735527.23704556,891050.8182479744,0,3304.774137274209 -13512,16682,30439,-9,30437,30438,1,1,36,0,0,0,1,1,-9,0,3,8.966571721338669,9.210713390436798,7.73418914133947,0,0,-964.2930246721495,-9,2,1,2019,11,1,60,0,1,1,0,13.87544645365602,13.87544645365602,0,0,0,0,0,1,1,0,0,8.228718607654983,48.11,53.44,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,812,378249.5593810179,-41950.53159723188,233942.5394110999,140676.5934982558,4819.923502901272 -13513,16683,30440,-9,30441,30442,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1168.425455372501,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1490,208666.4320501125,104674.1854475857,360210.988683962,161795.8259580957,3550.357399881452 -13513,16683,30441,30442,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.944053984652915,7.762096770508714,0,22,-3,144.7759187468776,0,2,2,2019,12,0,55,50,1,0,0,8.081515708531111,8.081515708531111,0,0,0,0,2,1,1,0,0,0,43.71,56.91,51.83,57.2,6.666666666666667,1,1,0,0,11,12,5,1,1490,208666.4320501125,104674.1854475857,360210.988683962,161795.8259580957,3550.357399881452 -13513,16683,30442,30441,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.693685109595584,8.776782933165398,0,22,3,25.23276068791911,0,2,1,2019,8,0,38,38,1,0,0,18.55338545013525,18.55338545013525,0,0,0,0,0,1,1,0,2.992319485552295,0,51.83,57.2,43.71,56.91,8.333333333333334,1,1,0,0,11,12,5,1,1490,208666.4320501125,104674.1854475857,360210.988683962,161795.8259580957,3550.357399881452 -13514,16684,30443,30444,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.962622914171952,9.121606267629781,0,6,-10,-111.0288714135998,0,-9,-9,2019,10,0,38,30,1,1,0,26.00103173305736,26.00103173305736,0,0,0,0,0,1,1,0,4.874162157268785,0,52,53,70.79000000000001,9.49,8,1,1,0,0,1,9,5,0,2165.5,2206053.527561836,1259058.85830703,755939.8288953518,0,5264.805736504761 -13514,16684,30444,30443,-9,-9,1,1,65,0,0,0,1,1,-9,0,1,0,3.204569159110213,3.482179818220688,27,10,17.94341852228528,0,3,3,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.748121817685447,3.150093793411765,70.79000000000001,9.49,52,53,10,1,1,0,0,2,9,5,0,2165.5,2206053.527561836,1259058.85830703,755939.8288953518,0,5264.805736504761 -13515,16685,30445,-9,30447,30448,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-961.2938971984286,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.66,56.94,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1044.25,405002.6121367476,129826.0048041309,262642.873345229,194333.2313006422,3227.551202693526 -13515,16685,30446,-9,30447,30448,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.5128804809989,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,4,1,1044.25,405002.6121367476,129826.0048041309,262642.873345229,194333.2313006422,3227.551202693526 -13515,16685,30447,30448,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,7.705504398334845,7.733886077701607,0,18,-6,-24.53152377221081,0,2,2,2019,15,3,26,27,1,3,0,9.176933227752977,9.176933227752977,0,0,0,0,2,1,1,0,0,0,37.01,42.9,54.61,43.6,6.666666666666667,1,1,0,1,10,10,4,1,1044.25,405002.6121367476,129826.0048041309,262642.873345229,194333.2313006422,3227.551202693526 -13515,16685,30448,30447,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.860891066720519,8.202055680541626,0,2,6,53.02749620453101,-9,-9,-9,2019,12,1,60,0,1,1,0,8.993213662439841,8.993213662439841,0,0,0,0,2,1,1,0,0,0,54.61,43.6,37.01,42.9,8.333333333333334,1,1,0,0,10,10,4,1,1044.25,405002.6121367476,129826.0048041309,262642.873345229,194333.2313006422,3227.551202693526 -13515,16686,30449,-9,30447,30448,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-975.1516948900389,-9,2,2,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,.3971275983155878,0,33.98,61.23,-9,-9,8.333333333333334,1,1,1,0,0,10,1,1,363,0,0,0,0,6.31481353257857 -13516,16687,30450,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.314442875885369,8.335507367864777,0,0,0,-1043.445122003445,0,3,3,2019,6,0,37,37,1,0,0,14.28951790120473,14.28951790120473,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,337,608299.4849005404,410211.1788838279,311668.6827794428,70779.17271249703,1652.602518430908 -13517,16688,30451,-9,30452,30454,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.5832922681999,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,861.25,285050.3828089656,56329.80113312295,382851.9473644321,186774.6300053802,4118.798470506528 -13517,16688,30452,30454,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.743098086961361,7.801837506039195,0,16,-2,-74.63082755692621,0,1,1,2019,12,2,57,38,1,2,0,4.771912772164399,4.771912772164399,0,0,0,0,0,1,1,0,0,0,41.17,59.31,50.65,60.47,10,1,1,0,0,12,4,5,1,861.25,285050.3828089656,56329.80113312295,382851.9473644321,186774.6300053802,4118.798470506528 -13517,16688,30453,-9,30452,30454,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.9274415498102,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,861.25,285050.3828089656,56329.80113312295,382851.9473644321,186774.6300053802,4118.798470506528 -13517,16688,30454,30452,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.999884791762261,8.777319909289236,0,16,2,31.07874154592255,0,3,3,2019,7,0,60,55,1,0,0,15.18694248616738,15.18694248616738,0,0,0,0,0,1,1,0,0,0,50.65,60.47,41.17,59.31,10,1,1,0,0,12,4,5,1,861.25,285050.3828089656,56329.80113312295,382851.9473644321,186774.6300053802,4118.798470506528 -13518,16689,30455,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.321626977149996,6.227459061661237,0,0,-1063.222958384251,0,3,-9,2019,19,9,0,0,4,9,0,0,0,1,0,1.528640678363313,0,0,1,1,0,0,5.947069553846531,27.05,21.51,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,360,482874.1144636604,182699.1352736928,265686.2290081363,0,2510.960476439162 -13519,16690,30456,30457,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.697552536194591,8.386219480801952,0,1,9,83.49650867274775,0,-9,-9,2019,32,12,37,42,1,12,0,18.76950914680564,18.76950914680564,0,0,0,0,0,0,0,0,0,0,14.67,70.23999999999999,48.77,60.16,3.333333333333333,1,1,0,0,5,10,5,1,369.5,326401.2623456984,48116.61219459378,305673.0031944108,130664.6697163994,3718.801718475934 -13519,16690,30457,30456,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.711649896949869,8.716211674369003,0,1,0,1.314874932385921,-9,-9,-9,2019,9,1,43,0,1,1,0,12.15880212104435,12.15880212104435,0,0,0,0,0,0,0,0,0,0,48.77,60.16,14.67,70.23999999999999,8.333333333333334,1,1,0,0,1,10,5,1,369.5,326401.2623456984,48116.61219459378,305673.0031944108,130664.6697163994,3718.801718475934 -13520,16691,30458,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.010373677704752,6.522575796861164,0,0,0,-901.0184359319192,-9,-9,-9,2019,10,0,60,0,1,0,0,1.95906829400452,1.95906829400452,0,0,0,0,0,1,1,0,0,0,41.28,57.99,-9,-9,6.666666666666667,1,1,0,0,11,7,2,0,3656,106119.0490134277,0,0,0,1210.288238197345 -13521,16692,30459,-9,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,8.317850671355441,8.120623697826051,0,0,0,-1162.050072044754,0,3,3,2019,10,0,35,32,1,0,0,11.15941174462935,11.15941174462935,0,0,0,0,0,1,1,0,0,0,55.05,42.09,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,359,14046.22722890642,-50314.62375919006,0,0,2282.945069795723 -13521,16692,30460,-9,30459,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1002.964258416768,-9,3,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.08,38.06,-9,-9,8.333333333333334,1,1,0,0,1,8,3,0,359,14046.22722890642,-50314.62375919006,0,0,2282.945069795723 -13521,16692,30461,-9,30459,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.545696958852,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,3,0,359,14046.22722890642,-50314.62375919006,0,0,2282.945069795723 -13521,16693,30462,-9,30459,-9,1,0,21,0,1,0,2,2,-9,0,4,8.02064409941025,8.145510418699114,0,0,0,-1076.079926497643,0,2,2,2019,11,1,40,38,1,1,1,9.181906893694951,9.181906893694951,0,0,0,0,0,1,1,0,0,0,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,513,-140276.8853629033,0,0,0,943.7985048839755 -13521,16694,30463,-9,30459,-9,1,1,25,0,1,0,1,1,-9,0,5,7.997564625264248,8.178371615355951,0,0,0,-864.4795640266536,0,2,-9,2019,11,0,48,40,1,0,1,8.38002965855733,8.38002965855733,0,0,0,0,0,1,1,0,.8847597368090634,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,4,8,4,0,1043,35885.41358475556,-62044.13313547484,0,0,943.6453465950444 -13522,16695,30464,-9,30465,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.585103100665,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,3,1,290,77862.70968185083,13201.37171601151,0,0,1450.960419754966 -13522,16695,30465,-9,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.114182507838855,7.274335364240304,6.490499043729416,0,0,-950.0315437175724,0,2,2,2019,19,7,16,16,1,7,0,7.767802397798802,7.767802397798802,0,0,0,0,0,1,1,0,6.462651446086958,0,33.47,56.25,-9,-9,6.666666666666667,1,1,0,0,12,1,3,1,290,77862.70968185083,13201.37171601151,0,0,1450.960419754966 -13523,16696,30466,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.992905621265532,9.195619009754669,0,0,0,-994.9413649278242,0,2,2,2019,7,0,51,46,1,0,0,18.62845284577507,18.62845284577507,0,0,0,0,0,0,0,0,6.585719970831195,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,852,613683.009059623,276662.0156827601,165734.1137951831,0,2528.429450877658 -13524,16697,30467,30468,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,0,0,50,-5,47.00541817773349,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.639371554846802,0,54.2,57.49,62.42,42.94,10,1,1,0,0,0,9,2,1,401.5,772355.050889808,98519.49657619849,371940.6052096735,0,1783.516171676419 -13524,16697,30468,30467,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.077227766694151,7.082336832985456,50,5,8.026371735599216,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.146954254560961,7.233559263326709,62.42,42.94,54.2,57.49,10,1,1,0,0,0,9,2,1,401.5,772355.050889808,98519.49657619849,371940.6052096735,0,1783.516171676419 -13525,16698,30469,30470,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,9.89161020103597,9.821896769131158,0,6,-2,-56.90389134227981,0,-9,-9,2019,6,0,42,48,1,0,0,69.38292307295089,69.38292307295089,0,0,0,0,0,0,0,0,1.579475995398446,0,57.06,57.76,58.15,52.91,10,1,1,0,0,10,7,5,1,244.5,636210.0324535681,434506.1551922883,205399.3674852145,65424.56651733911,24468.85037658695 -13525,16698,30470,30469,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,6.10106410742669,6.300643796670184,0,6,2,-46.84994302319427,0,3,3,2019,6,0,45,60,1,0,0,1.624692954208601,1.624692954208601,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,244.5,636210.0324535681,434506.1551922883,205399.3674852145,65424.56651733911,24468.85037658695 -13526,16699,30471,30472,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.857718377013253,7.679247657680822,10,-6,-90.86462297358639,0,3,3,2019,5,1,0,0,4,1,0,0,0,1,0,4.96817633633145,0,0,1,1,0,2.991873150586407,7.827009624037088,54.64,13.18,35.11,34.11,8.333333333333334,1,1,0,0,3,11,3,1,587.5,548986.2581644068,303237.9484767939,188506.7976496531,0,3112.861105046371 -13526,16699,30472,30471,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.412522302879746,7.28579049847127,10,6,-14.72247744587189,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,2.676324293472508,0,0,1,1,0,7.39986761818503,7.535581061347419,35.11,34.11,54.64,13.18,8.333333333333334,1,1,0,0,1,11,3,1,587.5,548986.2581644068,303237.9484767939,188506.7976496531,0,3112.861105046371 -13527,16700,30473,30474,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.644532704939744,8.57166472165189,0,3,3,-95.60226075406612,0,1,2,2019,12,1,50,45,1,1,0,14.01421187213991,14.01421187213991,0,0,0,0,0,0,0,0,2.600801629319932,0,47.44,56.39,49.95,56.68,8.333333333333334,1,1,0,0,6,1,5,1,541,71696.71476639874,115870.9596962377,52814.70489195856,119816.9433119857,3684.935744582665 -13527,16700,30474,30473,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.251407580419587,8.384495872952677,0,3,-3,66.89386586287551,0,-9,-9,2019,11,0,38,42,1,0,0,12.21042145107144,12.21042145107144,0,0,0,0,0,0,0,0,2.120409112710677,0,49.95,56.68,47.44,56.39,10,1,1,0,0,2,1,5,1,541,71696.71476639874,115870.9596962377,52814.70489195856,119816.9433119857,3684.935744582665 -13528,16701,30475,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.522092003844552,8.853617503352449,0,0,0,-941.6914784608134,0,1,2,2019,17,5,42,40,1,5,0,18.43762057496136,18.43762057496136,0,0,0,0,0,1,1,0,4.980767832702587,0,19.77,66.82000000000001,-9,-9,1.666666666666667,1,1,0,0,10,8,5,1,761,471936.8767029432,96851.31349650747,519152.6536567475,351910.7867424465,2548.161240462804 -13529,16702,30476,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,7.179365967181799,6.735692282434907,0,0,-1138.026532187623,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.087247551369686,54.45,41.44,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,492,428451.559104937,209479.7097735223,307407.1495767159,0,1394.216378708372 -13530,16703,30477,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.926575322355566,6.109414615662121,0,0,-1099.702246050098,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,1.897636755937758,5.888243921636146,46.66,49.9,-9,-9,5,1,1,0,0,4,11,2,1,409,271373.858177864,126697.5368625119,222878.9796017239,0,819.3001138186612 -13531,16704,30478,30479,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.761080115868154,7.302961094311133,7,-1,-90.85870733352969,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,2.565426596554027,0,0,1,1,0,4.162278508871054,7.417835407247104,64.02,27.56,46.96,45.96,8.333333333333334,1,1,0,0,2,12,2,1,460.5,460077.1510462767,169215.2805470999,140269.7503208864,0,2479.432040106564 -13531,16704,30479,30478,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,7,1,-47.42185243227462,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,15.20051978764416,0,0,1,1,0,2.095861228207946,0,46.96,45.96,64.02,27.56,6.666666666666667,1,1,0,0,0,12,2,1,460.5,460077.1510462767,169215.2805470999,140269.7503208864,0,2479.432040106564 -13532,16705,30480,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.958170948676,-9,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,7.361126519972281,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,11,1,0,275,-24980.44862092963,0,0,0,1228.799662215327 -13533,16706,30481,-9,-9,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1022.446133630384,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,-9,-9,5,3,4,0,0,0,8,1,0,379,0,0,0,0,0 -13534,16707,30482,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.083961638832989,8.161410819338418,0,0,0,-998.3863464989812,-9,3,3,2019,8,0,47,0,1,0,0,8.472925131177044,8.472925131177044,0,0,0,0,0,1,1,0,0,0,29,53.27,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,355,76381.33148262228,-89683.85085051635,50890.04194795733,14264.93280837972,1745.194286675224 -13534,16708,30483,-9,-9,30482,1,1,23,0,0,0,2,2,-9,0,4,5.822687521004288,5.915233348056529,0,0,0,-1002.335052986987,-9,-9,2,2019,10,0,40,0,1,1,1,.8927810028275885,.8927810028275885,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,11,2,0,511,0,0,0,0,116.2589902236475 -13535,16709,30484,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-989.7407281344252,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.22,33.34,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,171,-199936.1513368631,0,0,0,1080.435152656009 -13536,16710,30485,-9,-9,-9,1,0,44,0,1,0,3,3,-9,1,2,0,0,0,0,0,-904.9636781786674,0,3,1,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43,39,-9,-9,6,3,4,1,1,0,8,1,0,664.5,79332.9237277389,0,0,0,954.3511419603079 -13536,16710,30486,-9,30485,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.155669068024,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,1,0,664.5,79332.9237277389,0,0,0,954.3511419603079 -13537,16711,30487,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.462492551725087,7.434643813190479,0,0,0,-986.2655985138705,0,3,3,2019,14,4,35,37,1,4,0,6.730286763659281,6.730286763659281,0,0,0,0,0,1,1,0,3.602931586523761,0,37.29,40.88,-9,-9,3.333333333333333,2,3,0,0,8,5,3,1,1930,80597.13079584995,-20864.15917928911,76265.21498109792,19403.35371192724,1224.382547091445 -13537,16712,30488,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.424637388963303,7.819482673278884,0,0,0,-1035.7730739714,0,2,2,2019,18,6,38,38,1,6,0,7.500357889264937,7.500357889264937,0,0,0,0,0,1,1,0,0,0,46.23,44.17,-9,-9,1.666666666666667,2,3,0,1,8,5,3,1,145,-68448.20774655146,203788.5633761019,-42381.11732028805,8296.040767504406,869.4586835550247 -13538,16713,30489,30490,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.0598864607391,7.207869863208748,6,-2,146.4613016188874,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.970417451175546,53,44,55,45,8,1,1,0,0,0,7,3,1,655.5,782469.0665291825,122652.7964300687,605020.131048666,0,2387.746598245533 -13538,16713,30490,30489,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.857739713121234,7.938180569016311,6,2,164.0110247165741,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,2.266002434322908,7.518566867735387,55,45,53,44,8.333333333333334,1,1,0,0,0,7,3,1,655.5,782469.0665291825,122652.7964300687,605020.131048666,0,2387.746598245533 -13539,16714,30491,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1001.396918307966,0,3,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.41,24.28,-9,-9,0,1,1,0,1,0,2,1,0,313,-116863.6933521019,0,0,0,813.1953702143983 -13539,16715,30492,-9,30491,-9,1,0,31,0,0,0,3,3,-9,1,1,0,0,0,0,0,-999.9109337088892,0,2,2,2019,24,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,15.44,31.16,-9,-9,0,1,1,0,1,0,2,2,0,1746,-73281.89061963136,0,0,0,583.3226751544803 -13540,16716,30493,30494,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,35,0,-46.39587653262356,0,3,3,2019,11,0,0,37,3,2,0,0,0,0,0,0,0,0,0,0,0,8.750206713742735,0,49,48,54,54,7,1,1,1,0,4,1,5,1,453.5,466274.724299927,182889.4786414535,164991.6586829254,0,5315.367204901191 -13540,16716,30494,30493,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.172050064123887,9.150559458657915,0,35,0,15.87638394132034,0,-9,-9,2019,9,0,42,42,1,1,0,29.78655034753893,29.78655034753893,0,0,0,0,0,0,0,0,1.629473732972178,0,54,54,49,48,8,1,1,0,0,1,1,5,1,453.5,466274.724299927,182889.4786414535,164991.6586829254,0,5315.367204901191 -13540,16717,30495,-9,30493,30494,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.359100306903,-9,2,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,1,1,1,463,47525.29941605681,0,0,0,0 -13541,16718,30496,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,5,0,6.430852443506995,6.863022060362771,0,0,-997.6041587742963,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.126003238146162,6.382311116170515,60.02,56.42,-9,-9,0,1,1,0,0,0,1,2,1,1150,168196.6323169253,74143.06908239923,59829.40293080737,0,1237.705243000591 -13542,16719,30497,30498,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.013786271519502,8.943497920700368,0,6,-8,142.1091540223471,0,-9,-9,2019,9,0,40,40,1,1,0,23.00411400305893,23.00411400305893,0,0,0,0,0,0,0,0,0,0,54,54,41.23,59.35,8,1,1,0,0,1,7,5,1,350.5,672368.5600181536,112646.5676585778,568681.7686549169,65340.16030999906,3344.322633307721 -13542,16719,30498,30497,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.380231379955141,7.631617717368072,0,34,8,88.99131704827366,0,2,2,2019,11,3,32,27,1,3,0,5.470832367661601,5.470832367661601,0,0,0,0,0,0,0,0,0,0,41.23,59.35,54,54,8.333333333333334,1,1,0,0,8,7,5,1,350.5,672368.5600181536,112646.5676585778,568681.7686549169,65340.16030999906,3344.322633307721 -13543,16720,30499,-9,30502,30503,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.2442205199258,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,766.8,1506522.443988073,1157418.904729914,217211.3116361396,3884.57646487986,3094.83892186779 -13543,16720,30500,-9,30502,30503,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.8882570999814,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,2,1,766.8,1506522.443988073,1157418.904729914,217211.3116361396,3884.57646487986,3094.83892186779 -13543,16720,30501,-9,30502,30503,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.0649784447066,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,766.8,1506522.443988073,1157418.904729914,217211.3116361396,3884.57646487986,3094.83892186779 -13543,16720,30502,30503,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,7.701375843942491,7.882687446969943,0,14,-8,55.11728299791073,0,3,3,2019,5,0,35,10,1,0,0,6.653809496518904,6.653809496518904,0,0,0,0,7,1,0,1,6.744952572996124,0,57.06,57.76,52.65,51.64,10,1,1,0,0,11,13,2,1,766.8,1506522.443988073,1157418.904729914,217211.3116361396,3884.57646487986,3094.83892186779 -13543,16720,30503,30502,-9,-9,1,1,55,0,3,0,3,3,-9,0,3,6.615314525161947,6.61150786003446,0,9,8,100.8096380487904,-9,-9,-9,2019,13,1,49,0,1,1,0,2.007609064282285,2.007609064282285,0,0,0,.3823784233476157,0,1,0,1,1.331079561511145,0,52.65,51.64,57.06,57.76,6.666666666666667,1,1,0,1,11,13,2,1,766.8,1506522.443988073,1157418.904729914,217211.3116361396,3884.57646487986,3094.83892186779 -13543,16721,30504,-9,30502,30503,1,0,19,0,3,0,2,2,-9,0,5,0,5.37456267639523,5.511895954548124,0,0,-879.4278823377281,1,1,3,2019,10,3,0,15,2,3,1,0,0,0,0,0,0,0,1,0,1,5.462405687750781,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,1067,-240011.6691576255,0,0,0,994.5450990616212 -13544,16722,30505,30506,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.954605023020193,4.725879096057005,6,4,-56.05465203434298,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.843498445108835,62.9,48.63,67.89,25.82,8.333333333333334,1,1,0,0,0,13,2,0,835.5,402995.8001754865,258544.8901659795,233685.8263594391,0,3394.178990220227 -13544,16722,30506,30505,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,6,-4,-80.6230376795792,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,2.723573173019913,0,0,1,1,0,0,0,67.89,25.82,62.9,48.63,8.333333333333334,1,1,0,0,0,13,2,0,835.5,402995.8001754865,258544.8901659795,233685.8263594391,0,3394.178990220227 -13545,16723,30507,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-982.8307690741264,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.569703342372555,0,20.23941654921584,0,1,1,0,7.002394314110051,0,61.45,24.58,-9,-9,5,1,1,0,0,0,9,1,0,225,-147284.8856454285,0,0,0,1301.996660042105 -13546,16724,30508,30509,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,34,5,76.01748024910768,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,0,9,3,1,1250,1127617.66976937,580425.2198821915,440188.0428492113,0,1684.174041095579 -13546,16724,30509,30508,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.638751784316314,8.050924758863029,7.099711534403684,34,-5,-1.536060319244396,0,3,2,2019,6,0,24,24,1,0,0,7.490657186653378,7.490657186653378,0,0,0,0,0,1,1,0,0,7.035555864245914,54.37,54.8,57.33,53.46,10,1,1,0,0,12,9,3,1,1250,1127617.66976937,580425.2198821915,440188.0428492113,0,1684.174041095579 -13547,16725,30510,30511,-9,-9,1,1,49,0,1,0,2,2,-9,1,3,0,0,0,29,-4,105.8453211833394,0,-9,-9,2019,14,5,0,22,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.83,48.78,54.45,56.22,6.666666666666667,1,1,0,0,12,8,3,1,517,384996.794251462,139264.2047164193,233487.8227188046,19953.08963029043,1877.897961628173 -13547,16725,30511,30510,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.14191621673171,8.383012176361753,0,10,4,104.9914627762002,0,-9,-9,2019,9,0,55,20,1,0,0,7.019039808953296,7.019039808953296,0,0,0,0,0,1,1,0,0,0,54.45,56.22,49.83,48.78,8.333333333333334,2,3,0,0,12,8,3,1,517,384996.794251462,139264.2047164193,233487.8227188046,19953.08963029043,1877.897961628173 -13547,16726,30512,-9,30511,30510,1,0,19,0,1,1,3,0,0,0,3,0,6.233892518582025,6.6606438290683,0,0,-1098.113635681894,-9,2,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,2,1,1,0,6.88387505278769,0,40.64,52.96,-9,-9,8.333333333333334,4,2,0,0,0,8,2,1,342,-21653.23702061029,118326.9604437483,0,0,1460.723373350112 -13548,16727,30513,30514,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.028808600690006,7.791273403754107,51,3,-91.98986970309254,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.104567959344364,7.870966893536861,58.65,39.14,53.64,46.82,10,1,1,0,0,0,10,3,1,346,711583.47986279,424816.9084677721,217438.82786648,0,3056.464669006771 -13548,16727,30514,30513,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.250920145874405,5.995481374298581,51,-3,-101.8738734069068,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.527377438813289,6.209559827303377,53.64,46.82,58.65,39.14,8.333333333333334,1,1,0,0,0,10,3,1,346,711583.47986279,424816.9084677721,217438.82786648,0,3056.464669006771 -13549,16728,30515,30517,-9,-9,1,0,37,1,2,0,2,2,-9,1,3,7.243121680994694,7.12198055155017,0,16,-10,80.97932198556128,0,3,-9,2019,10,0,22,21,1,0,0,6.602991593294091,6.602991593294091,0,0,0,0,27,1,1,0,0,0,44.08,41.97,57.16,56.15,8.333333333333334,1,1,0,0,9,4,3,1,772.75,198560.9199103398,74032.33421193142,100258.4750844422,15587.42391085551,3076.58057094375 -13549,16728,30516,-9,30515,30517,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.7838442860407,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,772.75,198560.9199103398,74032.33421193142,100258.4750844422,15587.42391085551,3076.58057094375 -13549,16728,30517,30515,-9,-9,1,1,47,1,2,0,2,2,-9,0,4,8.176550986840923,8.232319270135051,0,15,10,-58.92955383280091,0,2,2,2019,4,0,48,44,1,0,0,9.650181970855611,9.650181970855611,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,44.08,41.97,10,1,1,0,0,9,4,3,1,772.75,198560.9199103398,74032.33421193142,100258.4750844422,15587.42391085551,3076.58057094375 -13549,16728,30518,-9,30515,30517,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.5833552397922,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,772.75,198560.9199103398,74032.33421193142,100258.4750844422,15587.42391085551,3076.58057094375 -13550,16729,30519,30520,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.897650433927939,7.951921879030688,39,4,-33.42396459409339,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.284319061407208,8.095609246639716,56.35,51.16,36.73,60.3,8.333333333333334,1,1,0,0,7,9,4,1,955.5,2172629.865114523,1358348.323865825,549974.1826555069,0,3670.820890143766 -13550,16729,30520,30519,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.534423525934999,7.701303824053583,39,-4,-149.2157903432471,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.658191901150988,7.702550365622998,36.73,60.3,56.35,51.16,8.333333333333334,1,1,0,0,0,9,4,1,955.5,2172629.865114523,1358348.323865825,549974.1826555069,0,3670.820890143766 -13551,16730,30521,-9,30524,30522,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-965.3238633914535,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,428,213145.4199024269,231012.640025415,118389.6475596552,81084.52844978444,2852.085889960304 -13551,16730,30522,30524,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.311352024834521,8.400152902341182,0,9,2,-22.82477279173079,0,2,2,2019,11,0,37,48,1,0,0,13.2495383442168,13.2495383442168,0,0,0,0,0,1,1,0,0,0,47.75,53.7,50.73,32.11,1.666666666666667,1,1,0,0,10,12,4,1,428,213145.4199024269,231012.640025415,118389.6475596552,81084.52844978444,2852.085889960304 -13551,16730,30523,-9,30524,30522,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-986.9352493418971,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,1,428,213145.4199024269,231012.640025415,118389.6475596552,81084.52844978444,2852.085889960304 -13551,16730,30524,30522,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.121310410564504,7.833746617569715,0,9,-2,15.59421105697087,0,3,2,2019,6,0,40,40,1,0,0,9.994315736302481,9.994315736302481,0,0,0,0,0,1,1,0,0,0,50.73,32.11,47.75,53.7,8.333333333333334,1,1,0,0,10,12,4,1,428,213145.4199024269,231012.640025415,118389.6475596552,81084.52844978444,2852.085889960304 -13552,16731,30525,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.823100685715302,7.116499525009024,0,0,-1115.592802705196,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.197478486545858,6.847827563416875,61.43,43.34,-9,-9,10,1,1,0,0,0,10,2,1,577,684571.8577132784,210512.9973661356,167188.3157719666,0,525.8528387584621 -13553,16732,30526,-9,30527,30528,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.056236695364,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,1037,2231.65527016166,21404.89795551006,0,0,2626.330499385015 -13553,16732,30527,30528,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,9,-13,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.05,42.65,51,56,8.333333333333334,2,3,0,0,0,8,1,0,1037,2231.65527016166,21404.89795551006,0,0,2626.330499385015 -13553,16732,30528,30527,-9,-9,1,1,43,0,2,0,2,2,-9,1,4,0,0,0,9,13,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,60.05,42.65,7,2,3,0,0,0,8,1,0,1037,2231.65527016166,21404.89795551006,0,0,2626.330499385015 -13554,16733,30529,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.6621852644226,0,2,3,2019,11,0,0,0,4,2,0,0,0,1,5.815291028886472,3.471526271258153,45.1000756105491,0,1,1,0,0,0,49,47,-9,-9,7,1,1,0,0,0,2,1,1,324,425824.0383112353,0,344389.9285076719,0,1586.780884444016 -13555,16734,30530,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.82853985598139,7.206462022289367,5.610839580002351,0,0,-1001.853619938534,0,2,1,2019,22,8,16,16,1,8,0,6.221924584364207,6.221924584364207,0,0,0,0,0,1,1,0,5.054190560053164,0,51.04,35.74,-9,-9,5,1,1,0,0,3,5,2,1,1068.5,111559.2705154846,44982.66442489911,0,0,2000.100510267394 -13555,16734,30531,-9,30530,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-942.7353023034983,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,2,1,1068.5,111559.2705154846,44982.66442489911,0,0,2000.100510267394 -13556,16735,30532,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.77848422716545,7.797307522684061,0,0,0,-959.3472008002277,0,2,2,2019,14,2,36,32,1,2,0,9.498904657053837,9.498904657053837,0,0,0,0,0,1,1,0,0,0,25,67.38,-9,-9,3.333333333333333,2,3,0,0,3,8,3,0,2703,517205.7825900931,0,140092.9396590643,80860.71503518497,2529.486622800645 -13556,16735,30533,-9,30532,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.8926211030572,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,2703,517205.7825900931,0,140092.9396590643,80860.71503518497,2529.486622800645 -13556,16735,30534,-9,30532,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.329143125914,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,3,0,2703,517205.7825900931,0,140092.9396590643,80860.71503518497,2529.486622800645 -13557,16736,30535,30538,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.068280915064207,8.155592115579818,0,11,-4,-77.64595394744069,0,3,1,2019,9,1,41,0,1,1,0,9.929924925458474,9.929924925458474,0,0,0,0,0,1,1,0,0,0,52.65,51.64,44.81,58.17,6.666666666666667,3,4,0,1,3,7,3,0,591.4,-30463.82875817011,22587.66285544137,0,0,2396.589312237907 -13557,16736,30536,-9,30535,30538,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.148553306537,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,591.4,-30463.82875817011,22587.66285544137,0,0,2396.589312237907 -13557,16736,30537,-9,30535,30538,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.7224899883196,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.535259019910937,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,3,0,591.4,-30463.82875817011,22587.66285544137,0,0,2396.589312237907 -13557,16736,30538,30535,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,0,0,0,11,4,87.4250591009704,0,-9,2,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.81,58.17,52.65,51.64,6.666666666666667,3,4,0,0,3,7,3,0,591.4,-30463.82875817011,22587.66285544137,0,0,2396.589312237907 -13557,16736,30539,-9,30535,30538,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.524194605956,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,591.4,-30463.82875817011,22587.66285544137,0,0,2396.589312237907 -13558,16737,30540,30541,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,7.727710027515018,8.292381133187906,7.2557231127021,49,1,-55.91920382920405,0,2,3,2019,6,0,25,30,1,0,0,11.0339908860407,11.0339908860407,0,0,0,0,0,1,1,0,6.5218763629582,7.20937796146457,51.41,56.15,42.24,58.9,8.333333333333334,1,1,0,0,9,9,4,1,963.5,1583373.173767759,866014.0738642234,617906.8140858674,105044.014391841,4569.555850427663 -13558,16737,30541,30540,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.693665285275782,8.197994832662181,7.308732686843355,49,-1,-25.35024934806551,0,2,1,2019,18,7,15,25,1,7,0,14.96614874129835,14.96614874129835,0,0,0,0,0,1,1,0,4.530446105614314,7.341323962091187,42.24,58.9,51.41,56.15,8.333333333333334,1,1,0,0,7,9,4,1,963.5,1583373.173767759,866014.0738642234,617906.8140858674,105044.014391841,4569.555850427663 -13559,16738,30542,30543,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.748587231496526,7.112047565536619,33,3,-156.5506975924163,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.944227066615407,33.46,45.88,64.87,23.42,0,1,1,0,0,3,10,2,0,689,1008035.576976331,332862.8838189799,341226.6877324235,0,1903.006926440761 -13559,16738,30543,30542,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.784854545580641,5.763641150390979,33,-3,51.04440549169595,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.059815139447479,64.87,23.42,33.46,45.88,10,1,1,0,0,0,10,2,0,689,1008035.576976331,332862.8838189799,341226.6877324235,0,1903.006926440761 -13560,16739,30544,30545,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,9.256232431427872,9.052118291402651,32,-12,-94.81064864539253,0,3,1,2019,22,10,0,18,3,10,0,0,0,0,0,0,0,0,1,1,0,9.904637183504541,7.898918382614171,43.31,40.68,52.93,52.64,8.333333333333334,1,1,0,0,10,8,5,1,860.5,3042302.347756041,1176614.363369925,1412455.165123198,0,22217.10968273975 -13560,16739,30545,30544,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,9.634328982573699,9.599840929450403,7.927455867031272,9,12,29.44391605032655,0,-9,-9,2019,12,0,20,25,1,0,0,86.42976174336276,86.42976174336276,0,0,0,0,0,1,1,0,6.907493071981121,7.481953161998549,52.93,52.64,43.31,40.68,1.666666666666667,1,1,0,0,10,8,5,1,860.5,3042302.347756041,1176614.363369925,1412455.165123198,0,22217.10968273975 -13560,16740,30546,-9,30544,30545,1,1,24,0,0,0,1,1,-9,0,5,8.48558634011316,8.392671505075437,0,0,0,-1201.284390001475,0,2,1,2019,12,0,41,38,1,0,1,13.19275063653028,13.19275063653028,0,0,0,0,0,1,1,0,4.223547420388624,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,2,8,5,1,719,-188627.1171627242,53378.1738642698,0,0,1847.447018795498 -13561,16741,30547,-9,30549,30548,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.2798116544643,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,6,2,1,564,257179.309057146,97752.6540095058,99877.1179137695,73066.60592769049,853.6732999040047 -13561,16741,30548,30549,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,0,0,0,18,7,-12.22495434325061,0,3,3,2019,6,1,0,50,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.63,53.72,44.17,49.99,6.666666666666667,2,3,1,1,9,6,2,1,564,257179.309057146,97752.6540095058,99877.1179137695,73066.60592769049,853.6732999040047 -13561,16741,30549,30548,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.438865041763903,7.515509526637596,0,18,-7,1.240097923226394,0,3,3,2019,13,1,28,28,1,1,0,8.980167868289268,8.980167868289268,0,0,0,0,0,1,1,0,0,0,44.17,49.99,56.63,53.72,6.666666666666667,2,3,0,0,13,6,2,1,564,257179.309057146,97752.6540095058,99877.1179137695,73066.60592769049,853.6732999040047 -13562,16742,30550,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.734361548659932,9.626614495898723,0,0,0,-1144.316467421889,0,2,2,2019,5,0,50,50,1,0,0,31.04445937275489,31.04445937275489,0,0,0,0,0,0,0,0,3.429390322949676,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,113,75916.41844533978,0,390500.8214545598,201137.6895201351,4780.221616406458 -13563,16743,30551,30552,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.645968473887722,7.080616270631205,0,31,-3,11.76590064893624,0,3,3,2019,21,8,14,30,1,8,0,8.08388459972303,8.08388459972303,0,0,0,0,27,1,1,0,0,0,26.78,32.79,35.52,21.44,1.666666666666667,1,1,0,0,11,11,2,1,548,-16224.14802381509,0,119291.5468067559,15277.21467319606,1321.597564963347 -13563,16743,30552,30551,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,3,33.17722143974909,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.52,21.44,26.78,32.79,5,1,1,0,0,7,11,2,1,548,-16224.14802381509,0,119291.5468067559,15277.21467319606,1321.597564963347 -13564,16744,30553,30556,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.556408416336831,9.809107316750623,0,17,1,24.78348307167203,0,2,3,2019,4,0,60,60,1,0,0,30.28873573416167,30.28873573416167,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.47,51.38,8.333333333333334,1,1,0,0,7,2,5,1,1066,804137.8660236862,363707.0174071487,661183.4624563868,296943.4228482272,3960.562508248906 -13564,16744,30554,-9,30556,30553,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.867578225882,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1066,804137.8660236862,363707.0174071487,661183.4624563868,296943.4228482272,3960.562508248906 -13564,16744,30555,-9,30556,30553,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.888862039376,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1066,804137.8660236862,363707.0174071487,661183.4624563868,296943.4228482272,3960.562508248906 -13564,16744,30556,30553,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,0,0,0,17,-1,127.6608333460962,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.874146051437476,0,49.47,51.38,51.24,58.84,8.333333333333334,1,1,0,0,1,2,5,1,1066,804137.8660236862,363707.0174071487,661183.4624563868,296943.4228482272,3960.562508248906 -13565,16745,30557,30558,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.943985093559796,9.676252520633602,0,25,1,70.88927447068804,0,2,2,2019,6,0,50,50,1,0,0,36.45622047800661,36.45622047800661,0,0,0,0,0,1,1,0,1.791692813803932,0,62.49,55.09,62.39,56.71,8.333333333333334,1,1,0,0,8,10,5,1,787.5,611703.4552154317,434777.9121078777,157997.4500658417,87773.85985239845,8254.477685581922 -13565,16745,30558,30557,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.107634825331871,8.149962678145711,0,25,-1,-39.90713420418788,0,3,2,2019,6,0,32,31,1,0,0,9.956489201796211,9.956489201796211,0,0,0,0,0,1,1,0,1.300667507174767,0,62.39,56.71,62.49,55.09,10,1,1,0,0,9,10,5,1,787.5,611703.4552154317,434777.9121078777,157997.4500658417,87773.85985239845,8254.477685581922 -13565,16746,30559,-9,30558,30557,1,1,19,0,1,0,2,2,-9,0,5,8.484035361222597,8.597242799057609,0,0,0,-1080.666793656787,0,2,2,2019,6,0,58,40,1,0,1,11.67861704128002,11.67861704128002,0,0,0,0,0,1,1,0,3.108320005685166,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,4,10,5,1,2745,-145293.949848918,0,0,0,2303.961861512532 -13565,16747,30560,-9,30558,30557,1,0,19,0,1,0,2,2,-9,0,5,7.751922912230216,7.915577217951064,0,0,0,-1074.579639579433,0,2,2,2019,8,0,35,37,1,0,1,7.803974472060652,7.803974472060652,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,163,-9446.270679504552,110618.9537723302,0,0,1179.170956629984 -13566,16748,30561,30562,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.32295349293738,9.464410847717637,0,10,-1,107.1674551248213,0,2,2,2019,18,6,43,80,1,6,0,20.80890200018744,20.80890200018744,0,0,0,0,0,0,0,0,2.388091009950625,0,43.94,58,36.91,53.54,6.666666666666667,1,1,0,0,12,9,5,1,969.5,333624.2780297459,-6140.065404294017,307948.9408516539,228456.4244008457,4135.2787367717 -13566,16748,30562,30561,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,10,1,117.6154112174388,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,3.697327796815027,0,36.91,53.54,43.94,58,6.666666666666667,1,1,0,0,8,9,5,1,969.5,333624.2780297459,-6140.065404294017,307948.9408516539,228456.4244008457,4135.2787367717 -13566,16748,30563,-9,30562,30561,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.231482310452,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,969.5,333624.2780297459,-6140.065404294017,307948.9408516539,228456.4244008457,4135.2787367717 -13566,16748,30564,-9,30562,30561,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.875250990041,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,969.5,333624.2780297459,-6140.065404294017,307948.9408516539,228456.4244008457,4135.2787367717 -13567,16749,30565,30566,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.621152792276763,7.596451871485616,0,33,-1,-70.36764378575862,0,2,2,2019,16,6,21,21,1,6,0,10.39782045282654,10.39782045282654,0,0,0,0,0,0,0,0,3.457338677619024,0,51.24,58.84,54,54,6.666666666666667,4,2,0,0,7,8,5,1,157,444869.3364540977,309669.6132244642,231883.5544569221,88037.59365383876,4406.305895798012 -13567,16749,30566,30565,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.964362222344516,8.516754887711022,0,6,1,-83.18638933602246,-9,-9,-9,2019,9,0,30,0,1,1,0,23.97998708865361,23.97998708865361,0,0,0,0,0,0,0,0,7.552857383298533,0,54,54,51.24,58.84,8,1,1,0,0,1,8,5,1,157,444869.3364540977,309669.6132244642,231883.5544569221,88037.59365383876,4406.305895798012 -13568,16750,30567,30568,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.701117856944182,7.601503193999065,0,45,0,9.386860171912758,0,3,2,2019,9,0,30,20,1,0,0,8.931937557779341,8.931937557779341,0,0,0,0,0,0,0,0,0,0,53.81,48.39,54.9,54.53,8.333333333333334,1,1,0,0,12,12,4,1,454,343610.8131078805,288188.5623513832,78643.20888064158,0,1706.472372472743 -13568,16750,30568,30567,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.030155731404516,7.664431713816029,0,45,0,124.0641743933765,0,3,3,2019,7,0,39,39,1,0,0,8.588933733087936,8.588933733087936,0,0,0,0,0,0,0,0,4.549271729351091,0,54.9,54.53,53.81,48.39,10,1,1,0,0,12,12,4,1,454,343610.8131078805,288188.5623513832,78643.20888064158,0,1706.472372472743 -13569,16751,30569,30570,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,7.759037646203085,7.750335693266591,0,3,0,-171.5772345263031,0,-9,-9,2019,12,1,38,38,1,1,0,8.57348038927964,8.57348038927964,0,0,0,0,0,0,0,0,0,0,47.84,49.93,40.16,53.19,8.333333333333334,1,1,0,0,4,7,5,1,1274,54736.06363500278,-4481.56536557955,328892.3653948767,169416.9700568395,3658.377647701109 -13569,16751,30570,30569,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.897779321021909,8.696702895738484,0,3,0,-17.35374371451259,0,2,1,2019,8,0,57,55,1,0,0,19.01255123348684,19.01255123348684,0,0,0,0,0,0,0,0,1.9472235183085,0,40.16,53.19,47.84,49.93,8.333333333333334,1,1,0,0,5,7,5,1,1274,54736.06363500278,-4481.56536557955,328892.3653948767,169416.9700568395,3658.377647701109 -13570,16752,30571,-9,30572,30576,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.785350289209,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13570,16752,30572,30576,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,6.880932440209042,7.029503901303384,0,16,1,-79.46237340249839,0,2,2,2019,7,0,20,20,1,0,0,7.256721654415742,7.256721654415742,0,0,0,0,0,1,1,0,0,0,48.58,53.59,51,56,8.333333333333334,1,1,0,0,4,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13570,16752,30573,-9,30572,30576,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.665774248152,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13570,16752,30574,-9,30572,30576,1,1,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1038.467379101766,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13570,16752,30575,-9,30572,30576,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-904.960602049867,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13570,16752,30576,30572,-9,-9,1,1,34,0,4,0,1,1,-9,0,4,9.004439806464749,8.899937901809677,0,6,-1,-17.88864523423259,0,-9,-9,2019,10,0,40,40,1,1,0,21.79804921867823,21.79804921867823,0,0,0,0,0,1,1,0,0,0,51,56,48.58,53.59,7,1,1,0,0,1,2,4,1,604.8333333333334,9667.414645584191,49944.57206279768,145290.9445443739,105093.4277633462,3793.861183924726 -13571,16753,30577,30578,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.396409490953652,7.468044724466574,40,1,-87.50366922578532,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.963165833748878,7.560920656016387,51.64,50.48,35.63,62.19,8.333333333333334,1,1,0,0,0,10,3,1,825,1092981.934709271,650681.8386740219,368209.9262538959,0,1888.142649512112 -13571,16753,30578,30577,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.033878322696068,6.978764163733145,40,-1,-16.37992838516427,0,3,3,2019,20,8,0,21,4,8,0,0,0,0,0,0,0,7,0,0,0,5.989506541072676,7.21303809244785,35.63,62.19,51.64,50.48,8.333333333333334,1,1,0,0,12,10,3,1,825,1092981.934709271,650681.8386740219,368209.9262538959,0,1888.142649512112 -13572,16754,30579,30580,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.201466055819468,8.27508467853721,38,8,6.606535914391432,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.487065924765747,8.118143682514821,54.2,57.49,46.32,16.87,8.333333333333334,1,1,0,0,0,7,3,1,375.5,1886856.474445675,827003.2016038583,914621.0013155383,69091.34668926755,2159.325698935563 -13572,16754,30580,30579,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,0,0,38,-8,-145.430098397065,0,3,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,2.256608350611218,0,46.32,16.87,54.2,57.49,5,1,1,1,0,2,7,3,1,375.5,1886856.474445675,827003.2016038583,914621.0013155383,69091.34668926755,2159.325698935563 -13573,16755,30581,30582,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.772239451372167,9.07798503177383,7,0,-83.83256749695133,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.531155720408526,9.157707110104253,58.72,51.29,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,591.5,2017858.225658138,1722655.086829657,208272.1433908283,0,6616.501178455785 -13573,16755,30582,30581,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.760020185923622,8.379496128360856,7,0,-23.76378063349736,0,1,1,2019,7,0,0,30,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.892391464736987,7.784918453961871,57.06,57.76,58.72,51.29,8.333333333333334,1,1,0,0,7,7,5,1,591.5,2017858.225658138,1722655.086829657,208272.1433908283,0,6616.501178455785 -13573,16756,30583,-9,30582,30581,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1107.770590576215,0,1,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,2.950950816700901,0,21.66,51.23,-9,-9,0,1,1,1,1,4,7,1,1,290,90385.186482306,0,0,0,376.8796308082497 -13574,16757,30584,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.607077025483,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,51,-9,-9,1.666666666666667,1,1,0,0,3,1,1,0,508,172532.3531817443,0,99887.4448456284,0,903.1390343176801 -13575,16758,30585,30587,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,7.971348018962239,7.899020788441502,0,10,0,-17.08046622965392,0,3,3,2019,10,0,23,45,1,0,0,11.30572737480755,11.30572737480755,0,0,0,0,0,1,1,0,7.964537611060679,0,47.79,40.56,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,440,785132.8917916602,573014.721228071,269034.4577876783,66062.37060818459,4539.232926863006 -13575,16758,30586,-9,30585,30587,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.591856598803,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,440,785132.8917916602,573014.721228071,269034.4577876783,66062.37060818459,4539.232926863006 -13575,16758,30587,30585,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.855135205609976,8.721056162705935,0,10,0,-8.796049234932763,0,-9,-9,2019,9,0,74,41,1,0,0,9.779661118095854,9.779661118095854,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.79,40.56,10,1,1,0,0,11,13,5,1,440,785132.8917916602,573014.721228071,269034.4577876783,66062.37060818459,4539.232926863006 -13576,16759,30588,30589,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.255277395501875,6.517510313085904,7,2,-121.0272173424363,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.460519311523704,6.403515740355763,50,47,44.31,40.35,7,1,1,0,0,0,13,2,1,423.5,688673.587955041,534504.5445171318,87793.04833026635,0,3639.757086160406 -13576,16759,30589,30588,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,6.369683786682033,6.197168800878251,7,-2,33.84767925210639,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,2.1747740783003,5.925039101222187,44.31,40.35,50,47,3.333333333333333,1,1,0,0,7,13,2,1,423.5,688673.587955041,534504.5445171318,87793.04833026635,0,3639.757086160406 -13576,16760,30590,-9,30588,30589,1,1,34,0,0,0,2,2,-9,1,5,0,0,0,0,0,-1033.988345615701,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,1606,54891.65343848933,0,0,0,192.4712290956245 -13577,16761,30591,-9,-9,-9,1,0,42,2,2,0,2,2,-9,0,4,7.409761504175109,7.88320764246128,0,0,0,-1026.052217479796,0,3,2,2019,12,0,45,40,1,0,0,4.818788680635399,4.818788680635399,0,0,0,0,14.5,1,0,1,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,1,7,9,2,0,1022,1092.415416799789,0,144670.9973841812,171761.5149641153,1605.948241345273 -13577,16762,30592,-9,30594,-9,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.447099362064,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,300.6666666666667,74302.25222586295,0,0,0,604.0519289275027 -13577,16762,30593,-9,30594,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-926.0871485889055,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,1,0,300.6666666666667,74302.25222586295,0,0,0,604.0519289275027 -13577,16762,30594,-9,30591,-9,1,0,24,2,2,0,2,2,-9,0,4,0,0,0,0,0,-907.3838163357,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,56.02,48.45,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,300.6666666666667,74302.25222586295,0,0,0,604.0519289275027 -13577,16763,30595,-9,30591,-9,1,0,18,2,2,0,2,2,-9,1,2,7.349088604116727,6.974893590131937,0,0,0,-942.4312902721209,-9,2,-9,2019,20,7,38,0,1,7,1,5.044214076454232,5.044214076454232,0,0,0,0,0,1,0,1,0,0,37.42,30.57,-9,-9,1.666666666666667,1,1,0,0,2,9,3,0,388,85354.17635378546,93666.7019407865,0,0,486.3301390026303 -13578,16764,30596,30597,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.036007940532819,8.035575861269058,0,41,-2,50.54817362406962,0,2,2,2019,8,0,37,35,1,0,0,9.460760555270822,9.460760555270822,0,0,0,0,0,0,0,0,0,0,49.41,58.28,55,53,5,1,1,0,0,7,10,5,1,851.5,296465.0513523133,173322.1006301594,0,0,3225.677820482189 -13578,16764,30597,30596,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.165798854335602,8.291250795511138,0,6,2,-28.90225352355085,0,3,3,2019,8,0,40,40,1,0,0,13.09775383842397,13.09775383842397,0,0,0,0,0,0,0,0,0,0,55,53,49.41,58.28,8,1,1,0,0,8,10,5,1,851.5,296465.0513523133,173322.1006301594,0,0,3225.677820482189 -13579,16765,30598,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.691903918525719,7.953099392783217,0,0,-1067.210962225242,0,3,3,2019,30,11,0,0,4,11,0,0,0,0,0,0,0,7,1,1,0,0,7.721498933900425,23.71,41.73,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,792,418744.4125107084,145632.8548192996,263790.5355288072,0,1856.49472472787 -13580,16766,30599,30600,-9,-9,1,1,29,0,0,0,3,3,-9,0,4,8.877018078242822,9.209246651803458,0,2,1,141.8517920584309,0,-9,-9,2019,8,0,126,126,1,0,0,8.048240567688831,8.048240567688831,0,0,0,0,0,0,0,0,0,0,48.87,58.55,50.51,56.39,10,1,1,0,0,5,9,5,1,455,138721.4079575588,8049.713623767515,309245.8346664699,153358.3116549306,3887.304664683005 -13580,16766,30600,30599,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.676880542428709,7.475739621394344,0,2,-1,-93.37367691971075,0,2,2,2019,12,1,33,30,1,1,0,5.679339850057146,5.679339850057146,0,0,0,0,0,0,0,0,0,0,50.51,56.39,48.87,58.55,8.333333333333334,1,1,0,0,11,9,5,1,455,138721.4079575588,8049.713623767515,309245.8346664699,153358.3116549306,3887.304664683005 -13581,16767,30601,30602,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.540648988530774,7.679929898517504,0,34,0,-85.67696938694291,0,2,2,2019,11,0,30,30,1,0,0,7.048798837928406,7.048798837928406,0,0,0,0,2,0,0,0,0,0,43.35,57.8,54.2,57.49,10,1,1,0,0,11,9,5,1,181.5,482824.1868985246,55212.56392923293,323026.0098762061,0,4461.374406749097 -13581,16767,30602,30601,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.697833952862714,8.459450291580055,0,3,0,-38.53359833610711,0,-9,-9,2019,12,1,45,48,1,1,0,15.98646780968483,15.98646780968483,0,0,0,0,2,0,0,0,7.199352500563215,0,54.2,57.49,43.35,57.8,8.333333333333334,1,1,0,0,11,9,5,1,181.5,482824.1868985246,55212.56392923293,323026.0098762061,0,4461.374406749097 -13582,16768,30603,30604,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.196650127142737,7.370548386026698,55,3,-82.11544185431133,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.377875818314632,7.371060648467744,62.49,55.09,58.15,52.91,8.333333333333334,1,1,0,0,0,11,2,1,782,446608.1976153468,277308.2054816481,258851.8099835617,0,1646.038487514078 -13582,16768,30604,30603,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.319993392626625,5.580601122943693,55,-3,-74.3342969868046,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.676553278479236,5.499988502996637,58.15,52.91,62.49,55.09,10,1,1,0,0,0,11,2,1,782,446608.1976153468,277308.2054816481,258851.8099835617,0,1646.038487514078 -13583,16769,30605,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.312189542897816,7.314243252703523,0,0,-848.6017672605171,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.626914735324959,7.028281704798279,54.92,45.17,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,338,521708.9645098476,331886.0509872307,164640.6106769289,0,413.7386681322781 -13584,16770,30606,30607,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,3,1,31.23893612282776,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.949308383969983,0,51,46,60.67,42.47,8,1,1,0,0,0,11,3,1,1134,470217.5054846825,191822.6588566459,222917.4137422185,0,2074.363352968972 -13584,16770,30607,30606,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.562046669738647,7.686633039668795,3,-1,-30.7628921297096,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.438804156468851,7.497135578249549,60.67,42.47,51,46,8.333333333333334,1,1,0,0,0,11,3,1,1134,470217.5054846825,191822.6588566459,222917.4137422185,0,2074.363352968972 -13585,16771,30608,-9,30611,30609,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.879237451875,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,930.5,119027.2604359152,65562.75415959042,180782.3149743404,151600.2513297024,2216.384969344951 -13585,16771,30609,30611,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.210207863583188,8.38707048619874,0,7,0,-51.75342326499052,0,2,3,2019,7,0,37,42,1,0,0,12.65077302026685,12.65077302026685,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.19,54.26,8.333333333333334,3,4,0,0,10,6,4,1,930.5,119027.2604359152,65562.75415959042,180782.3149743404,151600.2513297024,2216.384969344951 -13585,16771,30610,-9,30611,30609,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.8516910550751,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,930.5,119027.2604359152,65562.75415959042,180782.3149743404,151600.2513297024,2216.384969344951 -13585,16771,30611,30609,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.588161554833011,9.061140447433056,0,7,0,-17.2180202876201,0,2,2,2019,9,0,52,53,1,0,0,14.06950961002981,14.06950961002981,0,0,0,0,0,1,1,0,0,0,55.19,54.26,51.83,57.2,8.333333333333334,4,2,0,0,10,6,4,1,930.5,119027.2604359152,65562.75415959042,180782.3149743404,151600.2513297024,2216.384969344951 -13586,16772,30612,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,6.31063374526744,6.301780531935555,0,0,-937.3978229625338,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.403715491238075,0,22.61113511546316,0,1,1,0,0,6.425582325510092,40.47,46.24,-9,-9,10,1,1,0,0,0,6,2,1,593,53884.7685899854,13366.93831545169,0,0,496.6444158758461 -13587,16773,30613,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.483399359962709,7.796447346509425,0,0,-895.9993056998228,0,3,2,2019,12,0,0,38,4,0,0,0,0,0,0,0,.2430322982622499,0,0,0,0,3.737996283922286,7.701782422786737,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,536,209744.2521755617,173451.2669943877,164268.2264855976,0,1434.869934588754 -13588,16774,30614,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.005212364290201,7.008680909015179,0,0,-1031.12511212813,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.186660387376551,47.2,34.16,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,1218,806350.8390985384,238210.9301986498,287738.3699358612,0,1033.913060405577 -13589,16775,30615,30616,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,7.390021017921954,7.386392311714173,0,7,2,-75.01551556849752,0,3,3,2019,6,0,28,28,1,0,0,7.39494520674097,7.39494520674097,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.28,38.76,8.333333333333334,1,1,0,0,7,11,4,1,558.5,558389.4287386298,578732.4150109908,88737.55098990447,103903.5948168447,3225.939847769074 -13589,16775,30616,30615,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,8.621235999970786,8.428338004108181,0,7,-2,-142.1007910482658,0,3,3,2019,12,1,38,37,1,1,0,16.4801649910198,16.4801649910198,0,0,0,0,0,0,0,0,0,0,43.28,38.76,57.06,57.76,6.666666666666667,1,1,0,0,8,11,4,1,558.5,558389.4287386298,578732.4150109908,88737.55098990447,103903.5948168447,3225.939847769074 -13590,16776,30617,30618,-9,-9,1,0,42,0,5,0,2,2,-9,0,3,6.974089853698795,6.637506061613391,0,9,3,108.116139608602,0,2,2,2019,10,2,16,16,1,2,0,6.451670284447336,6.451670284447336,0,0,0,0,2,1,0,1,1.863464878205694,0,34.74,51.67,54.77,31.94,6.666666666666667,2,3,0,0,11,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30618,30617,-9,-9,1,1,39,0,5,0,3,3,-9,1,2,6.701211428140632,6.699872169679786,0,2,-3,-26.92594369441322,0,3,3,2019,9,0,30,0,1,0,0,3.122013259672947,3.122013259672947,0,0,0,0,0,1,0,1,1.40095506646475,0,54.77,31.94,34.74,51.67,8.333333333333334,2,3,0,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30619,-9,30617,30618,1,0,11,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1101.735075486762,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,2,3,-9,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30620,-9,30617,30618,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-908.9670147009642,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30621,-9,30617,30618,1,0,13,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1069.810159002758,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30622,-9,30617,30618,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1029.523574183928,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13590,16776,30623,-9,30617,30618,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1048.651222608813,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,1,949.4285714285714,0,0,0,0,2392.391290774196 -13591,16777,30624,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.516036746842873,7.451527821484288,0,0,0,-1055.452086141847,0,2,3,2019,8,0,40,48,1,0,0,6.174872870264184,6.174872870264184,0,0,0,0,7,0,0,0,0,0,50.52,47.59,-9,-9,6.666666666666667,1,1,0,1,11,9,3,0,189,-54372.55153290159,0,178812.0695854733,0,1085.971027825486 -13591,16778,30625,-9,-9,30624,1,1,25,0,0,0,2,2,-9,0,3,7.834493829462297,7.683208661149506,0,0,0,-959.1336656418365,0,3,2,2019,11,0,39,37,1,0,1,7.656567431214907,7.656567431214907,0,0,0,0,0,0,0,0,1.969404431388237,0,56.67,48.31,-9,-9,6.666666666666667,1,1,0,0,5,9,4,0,407,9690.440715832778,42610.136920106,0,0,1164.991104970857 -13592,16779,30626,30627,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,6.993913994336371,6.8001694362743,8,1,-51.37892248343496,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.534479204322284,6.945193482202264,56.94,49.53,49,48,8.333333333333334,1,1,0,0,7,6,2,1,584,482236.6602416822,356370.3514497787,117476.6136742361,0,1009.513747059416 -13592,16779,30627,30626,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,8,-1,-111.3788605372985,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.357342811767817,0,49,48,56.94,49.53,7,1,1,0,0,0,6,2,1,584,482236.6602416822,356370.3514497787,117476.6136742361,0,1009.513747059416 -13593,16780,30628,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.817461597544315,5.813620791754607,0,0,-982.3421353656427,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.98675709193217,5.83977882920777,64.02,27.68,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,176,168531.0564970903,152589.585205584,0,0,350.0687217240613 -13594,16781,30629,-9,30630,30631,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.9288683566953,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,538.5,321590.0313283378,132004.9211220517,0,0,3261.038775869921 -13594,16781,30630,30631,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.232191090850273,7.903820979437642,0,8,5,61.31746524749294,0,-9,-9,2019,8,1,24,26,1,1,0,18.11668436864373,18.11668436864373,0,0,0,0,0,1,1,0,0,0,48.97,46.36,57.33,53.46,8.333333333333334,1,1,0,0,11,2,4,1,538.5,321590.0313283378,132004.9211220517,0,0,3261.038775869921 -13594,16781,30631,30630,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,7.796621251621925,8.022170165611133,0,8,-5,-58.98416962886476,0,-9,-9,2019,7,0,38,40,1,0,0,7.832047126611016,7.832047126611016,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.97,46.36,6.666666666666667,3,4,0,0,11,2,4,1,538.5,321590.0313283378,132004.9211220517,0,0,3261.038775869921 -13594,16781,30632,-9,30630,30631,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.1888089008705,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,538.5,321590.0313283378,132004.9211220517,0,0,3261.038775869921 -13595,16782,30633,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.3802107307688,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,46.2,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,2780,-81407.55783234104,0,0,0,409.7435361755556 -13596,16783,30634,30635,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.009709572919488,6.99684390441128,63,3,101.281618868521,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.521254476512793,7.20754764105358,51.02,49.72,53.14,51.28,5,1,1,0,0,0,6,2,1,629,115826.6052629761,23725.46349155792,63422.5432515811,0,2532.76834218527 -13596,16783,30635,30634,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,63,-3,14.71775354898098,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.151653454159017,0,53.14,51.28,51.02,49.72,8.333333333333334,1,1,0,0,0,6,2,1,629,115826.6052629761,23725.46349155792,63422.5432515811,0,2532.76834218527 -13597,16784,30636,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.7269810238502,1,2,2,2019,21,9,0,11,2,9,0,0,0,0,0,0,0,0,1,1,0,.7578533612112917,0,54.17,35.93,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,303,0,0,0,0,125.036829532845 -13598,16785,30637,30638,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,0,0,42,-1,-64.87016460226336,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,13.2383586391338,0,0,1,1,0,0,0,60.12,19.97,32.09,30.06,10,1,1,0,0,0,10,4,1,1016.5,1587984.004150394,744047.3283307009,783950.4140971093,0,3589.109621158394 -13598,16785,30638,30637,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,8.45468984393333,8.511007803479544,42,1,-23.56469315948071,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,14.5,1,1,0,2.955425744762668,8.505250632433237,32.09,30.06,60.12,19.97,3.333333333333333,1,1,0,0,0,10,4,1,1016.5,1587984.004150394,744047.3283307009,783950.4140971093,0,3589.109621158394 -13599,16786,30639,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.963618488727345,9.105497563212086,0,0,0,-786.3004003233746,0,-9,-9,2019,6,0,47,48,1,0,0,19.39363399732284,19.39363399732284,0,0,0,0,0,1,1,0,.2349701038814659,0,60.02,56.42,-9,-9,0,1,1,0,0,9,12,5,1,57,128718.911553396,-5967.091960821053,180425.3453972505,61846.28930081331,3632.256400109513 -13600,16787,30640,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-946.3850213385305,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,562,-61357.7586912478,0,0,0,1116.32902369628 -13601,16788,30641,30642,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,7.212491747563826,7.912717283701777,6.914159685761845,9,18,132.5940893882291,0,3,3,2019,17,5,23,24,1,5,0,8.042205596098601,8.042205596098601,0,0,0,0,0,1,1,0,6.911665837161551,6.955808010315046,31.17,42.75,57.18,45.76,6.666666666666667,1,1,0,0,11,7,4,0,1079,1130825.007609558,826984.43237038,324559.8997336363,0,2472.615361636302 -13601,16788,30642,30641,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.887649337587315,7.751692601737377,0,9,-18,-31.12133563314553,0,3,3,2019,12,0,38,38,1,0,0,5.758811309478546,5.758811309478546,0,0,0,0,2,1,1,0,0,0,57.18,45.76,31.17,42.75,6.666666666666667,1,1,0,0,11,7,4,0,1079,1130825.007609558,826984.43237038,324559.8997336363,0,2472.615361636302 -13602,16789,30643,30644,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,5.323129146370978,5.186106076887702,10,7,18.5506032284579,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.153638414376631,50.48,56.4,45.01,57.46,6.666666666666667,1,1,0,0,11,12,3,1,1405,868449.412155529,673331.1238005847,336453.9821136137,119658.2608314009,2419.455502075679 -13602,16789,30644,30643,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.031272172212399,7.818107282353841,10,-7,-170.5249720381182,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,7.262344930167577,7.79381270814261,45.01,57.46,50.48,56.4,6.666666666666667,1,1,0,0,5,12,3,1,1405,868449.412155529,673331.1238005847,336453.9821136137,119658.2608314009,2419.455502075679 -13603,16790,30645,30646,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,5.259388652659203,5.517092625805148,34,-6,78.46120746939926,0,3,3,2019,16,4,0,20,3,4,0,0,0,0,0,0,0,0,1,1,0,4.583794045655583,5.652684292791625,49.41,58.28,54.79,55.86,3.333333333333333,1,1,0,0,10,9,2,1,615.5,553156.5219805532,205655.4084606596,275590.3616694408,0,468.3144059304797 -13603,16790,30646,30645,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.369827330310097,7.01329357508237,29,6,-85.32728466922916,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.042662818181254,7.126304621389432,54.79,55.86,49.41,58.28,8.333333333333334,1,1,0,0,8,9,2,1,615.5,553156.5219805532,205655.4084606596,275590.3616694408,0,468.3144059304797 -13604,16791,30647,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1089.201042601278,0,2,2,2019,16,5,0,22,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.09,25.35,-9,-9,1.666666666666667,4,5,0,1,7,8,1,0,1463,124822.0774146787,0,0,0,1018.655959291142 -13604,16791,30648,-9,30647,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.066538301318,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,1,0,1463,124822.0774146787,0,0,0,1018.655959291142 -13605,16792,30649,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,2,7.656002605908715,7.600764126366451,5.330244104248278,0,0,-1115.497742650539,0,-9,-9,2019,12,0,38,35,1,0,0,7.278159220089973,7.278159220089973,0,0,0,0,0,1,1,0,5.52982143329623,0,42.38,44.45,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,809,-107345.063872794,-8850.081082595134,0,0,2106.907005948646 -13605,16792,30650,-9,30649,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.201178012291,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,809,-107345.063872794,-8850.081082595134,0,0,2106.907005948646 -13605,16793,30651,-9,30649,-9,1,0,24,0,2,0,2,2,-9,0,3,7.414204942214397,7.41892215212784,0,0,0,-899.5471311738339,0,2,-9,2019,7,0,25,25,1,0,1,6.448500895932129,6.448500895932129,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,300.5,-20968.96089099334,-7786.178600310033,0,0,1395.376365452365 -13605,16793,30652,-9,30651,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.171648887407,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.1930114734477755,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,300.5,-20968.96089099334,-7786.178600310033,0,0,1395.376365452365 -13606,16794,30653,30654,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.324827054702733,6.410609002002712,6,-4,-46.10849025464681,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,47.80748077450967,0,0,1,1,0,6.750101689930447,6.346000010891644,54.33,21.34,57.16,56.15,8.333333333333334,1,1,0,0,2,5,3,1,926.5,559427.2093615779,448950.6227212917,133909.7597665822,0,3040.103249789929 -13606,16794,30654,30653,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.668150575163426,7.253386968350285,6,4,-101.3395599302581,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.924530139579825,7.911878216402746,57.16,56.15,54.33,21.34,8.333333333333334,1,1,0,0,0,5,3,1,926.5,559427.2093615779,448950.6227212917,133909.7597665822,0,3040.103249789929 -13607,16795,30655,30656,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.318819196743775,8.981124485768001,0,38,-1,1.904971658233483,0,3,2,2019,11,2,60,50,1,2,0,19.68343048077424,19.68343048077424,0,0,0,0,0,0,0,0,0,0,44.59,59.08,33.48,53.45,8.333333333333334,1,1,0,0,11,9,5,1,1608,911515.180882595,-38238.07361012166,835990.8379237754,0,4772.775571235209 -13607,16795,30656,30655,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.775326178967866,7.691156182567719,0,38,1,58.57464645005221,0,2,2,2019,20,8,22,0,1,8,0,12.62349221388297,12.62349221388297,0,0,0,0,0,0,0,0,.6778303770342854,0,33.48,53.45,44.59,59.08,3.333333333333333,1,1,0,0,11,9,5,1,1608,911515.180882595,-38238.07361012166,835990.8379237754,0,4772.775571235209 -13607,16796,30657,-9,30656,30655,1,1,25,0,0,0,1,1,-9,0,4,8.375569168039403,8.536791421709658,0,0,0,-811.6256834419157,0,1,2,2019,9,1,44,43,1,1,1,11.01232204937308,11.01232204937308,0,0,0,0,2,0,0,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,91,-111123.1164169944,-62779.78796131605,143610.0628083766,91215.06047675508,1748.333328404486 -13607,16797,30658,-9,30656,30655,1,0,19,0,0,0,2,2,-9,0,3,7.893553985368702,7.851658589520868,0,0,0,-949.2777351943184,0,1,2,2019,12,0,38,75,1,0,1,9.00617451805844,9.00617451805844,0,0,0,0,0,0,0,0,2.858301154446222,0,33.47,48.38,-9,-9,6.666666666666667,1,1,0,0,12,9,4,1,370,135653.9096643449,0,0,0,1526.623450308824 -13608,16798,30659,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,5.322121402934499,4.841241110745792,0,0,-943.3459381625669,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.4865580149473321,5.171482453293755,29.24,54.65,-9,-9,1.666666666666667,1,1,1,0,10,7,2,1,567,53271.96697517099,75545.22709470869,0,0,615.6073454674528 -13609,16799,30660,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,6.644884721181907,6.747370651901803,0,0,0,-1069.038115634671,0,-9,-9,2019,1,0,12,10,1,0,0,7.133950945863161,7.133950945863161,0,0,0,0,0,1,1,0,0,0,51,58,-9,-9,10,1,1,0,0,13,10,2,1,1394,156418.6794332232,0,0,0,317.9097133953266 -13610,16800,30661,30662,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.195639674877355,6.779709439511087,49,-2,82.0483558981947,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.482262021653125,6.065575422473974,59,31.19,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,3002,538428.9998658318,0,425983.2503021461,0,2510.367523942619 -13610,16800,30662,30661,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,6.52883074229474,6.628556063866864,49,2,84.88753894846184,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.088396943367744,6.644360865536879,57.16,56.15,59,31.19,6.666666666666667,1,1,0,0,0,2,2,1,3002,538428.9998658318,0,425983.2503021461,0,2510.367523942619 -13611,16801,30663,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,8.578750757596476,8.76273288233774,0,0,0,-964.5548885285868,0,3,3,2019,5,0,45,45,1,0,1,17.58606016885881,17.58606016885881,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,1950,-250913.7912818498,-21124.31673224151,0,0,3007.04527606108 -13612,16802,30664,30665,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,7.419192228970841,7.964679157692261,7.19821281272056,51,-2,-76.51160114732043,0,2,1,2019,17,7,15,15,1,7,0,15.3075514698952,15.3075514698952,1,2.5250371139992,4.56720926822274,21.6562699112571,0,1,1,0,6.220428947722996,7.256929027478004,38.21,40.68,57.16,56.15,3.333333333333333,1,1,0,0,9,9,4,1,367.5,1733825.256391393,401539.3555537822,507645.7055585147,0,4713.139918366207 -13612,16802,30665,30664,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.541720942246872,8.154486145734417,7.246348396593475,51,2,-36.30749824298464,0,2,3,2019,6,0,20,20,1,0,0,12.77586048629416,12.77586048629416,0,0,0,0,0,1,1,0,6.423829975346179,7.173409394568583,57.16,56.15,38.21,40.68,8.333333333333334,1,1,0,0,11,9,4,1,367.5,1733825.256391393,401539.3555537822,507645.7055585147,0,4713.139918366207 -13613,16803,30666,30667,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.457431363795195,6.573677371844818,0,30,-1,-88.61862194416325,0,2,2,2019,11,0,10,11,1,0,0,7.080177225227795,7.080177225227795,0,0,0,0,14.5,0,0,0,0,0,60.87,42.1,58.32,50.22,8.333333333333334,1,1,0,0,10,6,5,1,1144,549025.5037394285,0,560484.1488627637,0,2557.727631762501 -13613,16803,30667,30666,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.659592374674483,8.743992569779145,0,30,1,87.34903625302547,0,3,3,2019,7,0,42,42,1,0,0,18.05705452009708,18.05705452009708,0,0,0,0,0,0,0,0,5.326819346462369,0,58.32,50.22,60.87,42.1,8.333333333333334,1,1,0,0,10,6,5,1,1144,549025.5037394285,0,560484.1488627637,0,2557.727631762501 -13614,16804,30668,30669,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.636780792285583,7.444894952012247,0,23,-19,-20.44681366886729,0,2,2,2019,9,0,31,31,1,0,0,6.971048436147009,6.971048436147009,0,0,0,0,2,1,1,0,4.311648267690353,0,57.16,56.15,59.04,48.6,6.666666666666667,1,1,0,0,11,7,4,1,863,1583894.0321923,1150538.012701228,432455.5700089905,0,2669.025506105475 -13614,16804,30669,30668,-9,-9,1,1,63,0,2,0,3,3,-9,0,3,8.486301282057543,8.036641774416099,0,23,19,12.05286334150924,0,3,3,2019,7,1,40,41,1,1,0,13.39861888671395,13.39861888671395,0,0,0,0,7,1,1,0,0,0,59.04,48.6,57.16,56.15,8.333333333333334,1,1,0,0,11,7,4,1,863,1583894.0321923,1150538.012701228,432455.5700089905,0,2669.025506105475 -13614,16804,30670,-9,30668,30669,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.05269993716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,863,1583894.0321923,1150538.012701228,432455.5700089905,0,2669.025506105475 -13614,16804,30671,-9,30668,30669,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1035.866934598885,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,52.2,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,863,1583894.0321923,1150538.012701228,432455.5700089905,0,2669.025506105475 -13615,16805,30672,30673,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.063197146121386,8.179070011639237,0,26,3,-57.21790457852384,0,2,2,2019,8,1,25,29,1,1,0,16.3220499833255,16.3220499833255,0,0,0,0,2,1,1,0,2.740311359209697,0,54.1,59.11,53.08,52.64,8.333333333333334,1,1,0,0,10,10,5,1,665.5,1923108.102795302,1642324.200049086,261719.2769592408,73762.96934248609,4602.135479471595 -13615,16805,30673,30672,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.369256665835042,8.906810159361747,0,26,-3,39.98312900121022,0,3,3,2019,11,0,48,60,1,0,0,23.54173723702894,23.54173723702894,0,0,0,0,0,1,1,0,2.599503445659955,0,53.08,52.64,54.1,59.11,6.666666666666667,1,1,0,0,10,10,5,1,665.5,1923108.102795302,1642324.200049086,261719.2769592408,73762.96934248609,4602.135479471595 -13615,16806,30674,-9,30672,30673,1,0,21,0,0,1,2,0,0,0,4,0,5.873198168850681,6.274407326441798,0,0,-972.1263274846776,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,5.708708670886136,0,46,58,-9,-9,7,1,1,0,0,5,10,2,1,1478,20777.93346455973,83375.37481362307,0,0,527.2627301346046 -13615,16807,30675,-9,30672,30673,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1058.086248090214,-9,2,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,1.457191120896886,0,47.55,43.97,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,337,-151626.6442859748,0,0,0,-489.1454173631065 -13616,16808,30676,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-944.6843560596997,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.47,30.19,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,545,172221.2908528712,0,0,0,629.3161906275579 -13617,16809,30677,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.680531322046591,8.913224398158814,0,0,0,-929.7638030466197,-9,2,1,2019,19,7,40,0,1,7,0,19.80075532684099,19.80075532684099,0,0,0,0,0,0,0,0,0,0,36.49,58.77,-9,-9,3.333333333333333,1,1,0,0,11,2,5,1,145,-65141.31187910553,-46498.28406244978,0,0,1891.717907265632 -13618,16810,30678,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.924764108754475,7.361710882427655,0,0,0,-1049.720676039724,0,3,3,2019,13,2,20,23,1,2,0,6.951911149488569,6.951911149488569,0,0,0,0,14.5,1,1,0,0,0,43.78,53.93,-9,-9,8.333333333333334,4,2,0,0,5,5,2,0,1766,215067.3921401551,108687.0548438121,0,0,422.3773885263113 -13619,16811,30679,30680,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,7.765855535540143,7.87208694199988,0,4,-7,-57.61484224933746,0,-9,-9,2019,7,0,38,39,1,0,0,7.642527397314488,7.642527397314488,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44,50.01,10,1,1,0,0,7,4,5,1,1398.5,-21794.34624889589,0,0,0,3307.370395135123 -13619,16811,30680,30679,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.686201511107484,8.865600192128278,0,4,7,-32.75881386216454,0,2,2,2019,16,4,67,60,1,4,0,10.76963700373731,10.76963700373731,0,0,0,.0837261255891466,0,0,0,0,4.403146075424268,0,44,50.01,57.06,57.76,6.666666666666667,1,1,0,0,9,4,5,1,1398.5,-21794.34624889589,0,0,0,3307.370395135123 -13620,16812,30681,30682,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.604356263393994,8.789713373231136,6.280117110837866,10,1,7.280511087389137,0,3,3,2019,6,0,44,44,1,0,0,12.81724307248927,12.81724307248927,0,0,0,0,0,0,0,0,0,6.914033600256528,57.16,56.15,40.73,41.31,8.333333333333334,1,1,0,0,12,6,5,1,1060.5,200200.4505174066,110027.1661994115,212754.0528929955,50068.28035766276,2998.604789713161 -13620,16812,30682,30681,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,7.360299030471688,7.403560184839755,0,10,-1,127.9697927392746,0,3,3,2019,13,2,28,26,1,2,0,8.523547030992839,8.523547030992839,0,0,0,0,0,0,0,0,0,0,40.73,41.31,57.16,56.15,1.666666666666667,1,1,0,0,12,6,5,1,1060.5,200200.4505174066,110027.1661994115,212754.0528929955,50068.28035766276,2998.604789713161 -13620,16813,30683,-9,30682,30681,1,0,19,0,0,0,2,2,-9,0,2,7.421818074687059,7.563093570552997,0,0,0,-1039.78343949227,-9,3,3,2019,33,12,45,0,1,12,1,4.166338015531832,4.166338015531832,0,0,0,0,0,0,0,0,0,0,16.31,56.57,-9,-9,1.666666666666667,1,1,0,0,2,6,3,1,1248,14672.0495467804,64512.37869094823,0,0,751.458478782312 -13621,16814,30684,-9,30687,30685,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.86292538878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1064,956.8204648933415,0,0,0,1907.277191493901 -13621,16814,30685,30687,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,0,0,0,3,5,31.77562347478226,0,3,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,2.387541585954478,0,26.6,49.54,33.79,45.73,3.333333333333333,1,1,1,1,8,12,2,0,1064,956.8204648933415,0,0,0,1907.277191493901 -13621,16814,30686,-9,30687,30685,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.101864544946,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1064,956.8204648933415,0,0,0,1907.277191493901 -13621,16814,30687,30685,-9,-9,1,0,24,1,2,0,2,2,-9,0,2,6.093832467068708,6.553525467724032,0,3,-5,87.36803507515307,0,-9,-9,2019,23,8,16,0,1,8,0,4.378916370224318,4.378916370224318,0,0,0,0,0,1,1,0,0,0,33.79,45.73,26.6,49.54,3.333333333333333,1,1,0,0,0,12,2,0,1064,956.8204648933415,0,0,0,1907.277191493901 -13622,16815,30688,30689,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.957177079113787,9.14598275197668,0,31,0,75.94713041373866,0,2,2,2019,10,2,53,47,1,2,0,15.15703681892856,15.15703681892856,0,0,0,0,7,0,0,0,0,0,57.93,46.29,42.69,56.27,8.333333333333334,1,1,0,0,13,2,5,1,815,1430627.942847257,704218.557687635,402773.8954489701,65389.99907476235,4562.560690674574 -13622,16815,30689,30688,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.309790145352457,8.157276003429594,5.490273131475431,31,0,28.29491759515614,0,2,2,2019,14,3,47,39,1,3,0,12.44720568621367,12.44720568621367,0,0,0,0,2,0,0,0,5.889448977495644,0,42.69,56.27,57.93,46.29,8.333333333333334,1,1,0,0,13,2,5,1,815,1430627.942847257,704218.557687635,402773.8954489701,65389.99907476235,4562.560690674574 -13622,16816,30690,-9,30689,30688,1,1,25,0,0,0,1,1,-9,0,4,8.4688360870193,8.309211870768724,0,0,0,-926.4316310790068,0,1,1,2019,11,1,48,0,1,1,1,8.141694704986511,8.141694704986511,0,0,0,0,0,0,0,0,0,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,267,-37918.51339507826,-53092.92702937874,0,0,1400.187353620057 -13622,16817,30691,-9,30689,30688,1,0,23,0,0,1,2,0,0,0,4,0,4.995321945221299,4.841661673138209,0,0,-998.276094386427,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.215059333760273,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,1868,-61066.68214167825,0,0,0,227.5482562963666 -13622,16818,30692,-9,30689,30688,1,0,20,0,0,1,2,0,0,0,4,0,7.100797401676957,6.864379727701617,0,0,-1025.002595736683,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.426535456529667,0,53.44,55.06,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,529,55690.22133820438,102431.668020937,0,0,988.2366834771303 -13623,16819,30693,30694,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,4.201834031081991,4.700314626806221,4,10,55.51641019666035,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,4.457711882897183,40.87,34.06,19.01,22.64,1.666666666666667,1,1,0,1,5,5,2,0,432.5,0,0,0,0,1138.119286100029 -13623,16819,30694,30693,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,4,-10,56.82255664448203,0,-9,-9,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,40.87,34.06,3.333333333333333,1,1,0,1,3,5,2,0,432.5,0,0,0,0,1138.119286100029 -13623,16820,30695,-9,30693,30694,1,0,30,0,0,0,3,3,-9,0,4,7.258896950338065,7.011899928123275,0,0,0,-1048.615384285413,-9,2,2,2019,7,1,27,0,1,1,1,5.647439135486771,5.647439135486771,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,1377,123019.0044898621,125937.1675553679,0,0,375.7272494038231 -13624,16821,30696,-9,30699,30698,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.742837366714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1464.25,635187.4899596606,603390.8435351901,101132.8593167072,39251.16656548753,2100.887799774883 -13624,16821,30697,-9,30699,30698,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.253952061566,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,1464.25,635187.4899596606,603390.8435351901,101132.8593167072,39251.16656548753,2100.887799774883 -13624,16821,30698,30699,-9,-9,1,1,51,0,2,0,2,2,-9,1,3,0,0,0,3,14,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,47.48,36.42,47.3,45.59,8.333333333333334,1,1,1,0,0,2,1,0,1464.25,635187.4899596606,603390.8435351901,101132.8593167072,39251.16656548753,2100.887799774883 -13624,16821,30699,30698,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,3,-14,0,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,47.3,45.59,47.48,36.42,5,1,1,0,0,0,2,1,0,1464.25,635187.4899596606,603390.8435351901,101132.8593167072,39251.16656548753,2100.887799774883 -13625,16822,30700,-9,30702,30703,1,1,32,0,0,0,2,2,-9,0,4,9.590818372065195,9.263962038267268,0,0,0,-1094.902338808662,0,2,2,2019,10,0,40,40,1,1,1,29.94689924212483,29.94689924212483,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,4,13,5,1,909,-103012.1184470135,-15510.54057625931,0,0,4326.168973890185 -13625,16823,30701,-9,30702,30703,1,0,31,0,0,0,2,2,-9,0,5,7.995296358117702,7.927668210986758,0,0,0,-853.4690035667882,0,2,3,2019,7,0,40,40,1,0,1,7.30960552031806,7.30960552031806,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,13,3,1,906,170135.3106483014,77437.69582167246,0,0,1430.637531954301 -13625,16824,30702,30703,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.132759652738203,6.876814324673737,0,7,-6,119.7322845153186,0,3,3,2019,11,0,19,19,1,2,0,7.234223006270113,7.234223006270113,0,0,0,0,0,1,1,0,0,0,49,48,52,48,7,1,1,0,0,8,13,2,1,694.5,92780.13990747565,62065.65916063723,91372.18197541284,0,984.6385690680438 -13625,16824,30703,30702,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,6,-87.58699495843854,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49,48,7,1,1,0,0,3,13,2,1,694.5,92780.13990747565,62065.65916063723,91372.18197541284,0,984.6385690680438 -13625,16825,30704,-9,30702,30703,1,1,29,0,0,0,2,2,-9,0,5,7.965873526784079,8.132663737572329,0,0,0,-1023.073174950796,0,2,2,2019,6,0,40,40,1,0,1,9.654774535311979,9.654774535311979,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,13,4,1,981,56966.86541499793,0,0,0,1101.080561081406 -13625,16826,30705,-9,30702,30703,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1111.044097510619,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,1.666666666666667,1,1,0,1,0,13,1,1,123,-113743.228182544,0,0,0,682.5322146843864 -13626,16827,30706,30707,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,68,-1,-24.17555831331742,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.81,53.56,50.46,21.87,8.333333333333334,1,1,0,0,0,1,2,1,668.5,235615.5211597706,115379.3111688899,217511.6830147249,0,1630.672297700027 -13626,16827,30707,30706,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,6.80450685669199,6.745780357357624,68,1,-13.96510923967553,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,5.405517608784153,0,0,1,1,0,0,7.075436561832547,50.46,21.87,53.81,53.56,6.666666666666667,1,1,0,0,0,1,2,1,668.5,235615.5211597706,115379.3111688899,217511.6830147249,0,1630.672297700027 -13627,16828,30708,-9,-9,-9,1,0,64,0,1,0,2,2,-9,0,3,0,5.935299565117799,6.117319903256754,0,0,-966.5717628475262,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.761901568143814,56.75,41.53,-9,-9,10,1,1,0,0,7,2,2,1,384,366880.8952867537,291258.0895130583,181818.6686115681,0,578.090473208916 -13627,16829,30709,-9,30708,-9,1,0,38,0,1,0,1,1,-9,0,4,0,0,0,0,0,-922.2541113205283,-9,2,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,0,2,1,1,669.5,6173.251191347823,22914.38100822661,0,0,845.1026784847559 -13627,16829,30710,-9,30709,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1111.999916773692,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,669.5,6173.251191347823,22914.38100822661,0,0,845.1026784847559 -13628,16830,30711,-9,30712,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.5376928460648,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,3,1,955.3333333333334,51136.09043966894,0,0,0,1909.433847664672 -13628,16830,30712,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.55333836568794,7.648225558231498,7.078481728132003,0,0,-930.7112368679369,0,2,2,2019,10,0,16,16,1,0,0,10.89111088687188,10.89111088687188,0,0,0,0,7,1,1,0,7.3465313675838,0,47.65,44.32,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,955.3333333333334,51136.09043966894,0,0,0,1909.433847664672 -13628,16830,30713,-9,30712,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.060198243229,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.73,52.62,-9,-9,5,1,1,0,0,1,4,3,1,955.3333333333334,51136.09043966894,0,0,0,1909.433847664672 -13628,16831,30714,-9,30712,-9,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-991.3197737034341,1,2,-9,2019,11,0,0,14,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,2,4,1,1,316,42461.41802438945,0,0,0,0 -13629,16832,30715,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.866195383138002,5.827657162875392,0,0,-971.0012587347628,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.066403281926206,47.24,48.29,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1257,-153364.3199545195,105919.0926485833,0,0,1351.965093306661 -13630,16833,30716,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.614617383920317,6.992665506589655,0,0,-934.4312461344556,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,1.846821408150653,7.246606977039662,51,46,-9,-9,7,2,3,0,0,0,8,2,1,257,342345.669276986,132885.1798773634,327372.1386266907,0,1455.760912177755 -13631,16834,30717,30718,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.656803757352,6.328111334590036,39,8,-41.27432741983998,0,2,2,2019,20,9,0,22,4,9,0,0,0,0,0,0,0,0,1,1,0,.2334519209790716,6.654261133726836,32.1,51.95,58.32,50.22,3.333333333333333,1,1,0,0,11,11,4,1,2199.5,417228.296791476,155138.6514734105,251053.6658698785,0,4171.613317564568 -13631,16834,30718,30717,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.606354378999215,8.680236347428965,8.168844254937044,39,-8,50.65228501188682,0,3,2,2019,10,0,25,30,1,0,0,8.809773574394301,8.809773574394301,0,0,0,0,0,1,1,0,0,7.910415200435276,58.32,50.22,32.1,51.95,8.333333333333334,1,1,0,0,12,11,4,1,2199.5,417228.296791476,155138.6514734105,251053.6658698785,0,4171.613317564568 -13632,16835,30719,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,6.496545308176136,8.163350812716269,7.753032911996641,0,0,-1055.994463594148,0,3,3,2019,6,0,8,8,1,0,0,10.24456550699323,10.24456550699323,0,0,0,0,0,1,1,0,4.842817984849872,7.532412324646716,60.46,33.02,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,170,526797.9322782371,219985.9986835177,199848.7055073222,0,1893.079833341716 -13633,16836,30720,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.349779871581598,8.270208192920977,0,0,0,-965.1377445592378,0,3,3,2019,20,7,37,42,1,7,0,12.34505560962991,12.34505560962991,0,0,0,0,2,0,0,0,3.202292796088333,0,34.06,51.94,-9,-9,3.333333333333333,3,4,0,0,8,5,4,1,105,-22057.2863647698,0,-28988.84019507925,28742.38845264193,1602.330467571518 -13634,16837,30721,30722,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,28,1,80.50318025702778,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,41.17,59.31,8.333333333333334,4,2,0,0,0,5,3,1,505.5,255495.156029105,56639.31660876803,163051.7862461106,-1808.381268033694,2062.619394451014 -13634,16837,30722,30721,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.097255525394804,8.005014740586441,0,27,-1,-55.05291438481054,0,3,2,2019,8,0,37,37,1,0,0,9.591215078767929,9.591215078767929,0,0,0,0,27,1,1,0,0,0,41.17,59.31,47,50,5,2,3,0,0,11,5,3,1,505.5,255495.156029105,56639.31660876803,163051.7862461106,-1808.381268033694,2062.619394451014 -13634,16838,30723,-9,30721,30722,1,1,22,0,0,0,2,2,-9,0,4,8.264802196207384,7.638019065556825,0,0,0,-991.7105228748234,0,2,2,2019,6,0,40,40,1,0,1,7.724096869679556,7.724096869679556,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,4,2,0,0,3,5,4,1,1534,-24914.06934121903,48523.09093768745,0,0,735.4983778547859 -13635,16839,30724,30725,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,7,0,72.99276112641601,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,1.96696890485727,0,37.26,18.29,54.2,57.49,3.333333333333333,1,1,0,0,8,2,4,1,687,197242.053269365,70801.57402394974,120745.826858786,0,2940.325624311777 -13635,16839,30725,30724,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.198353615555076,8.810423658886227,7.341937268061412,7,0,-19.4794754608053,0,3,3,2019,12,0,20,20,1,0,0,18.08675563076919,18.08675563076919,0,0,0,0,7,1,1,0,2.572614926945429,8.059989680519186,54.2,57.49,37.26,18.29,8.333333333333334,1,1,0,0,9,2,4,1,687,197242.053269365,70801.57402394974,120745.826858786,0,2940.325624311777 -13636,16840,30726,30727,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.727914265154061,9.290231086185964,7.262001151503607,43,1,-78.06235472968939,0,2,2,2019,6,0,37,37,1,0,0,20.76142631831293,20.76142631831293,0,0,0,0,0,0,0,0,3.822547522558913,7.783429333582996,57.06,57.76,55.44,52.99,10,1,1,0,0,8,10,5,1,1068.5,864567.013790275,702483.2937114163,0,0,3858.724279442246 -13636,16840,30727,30726,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.900207188451436,7.636927727234411,0,42,-1,49.92358245728499,0,2,3,2019,7,0,29,27,1,0,0,6.666741911669873,6.666741911669873,0,0,0,0,2,0,0,0,.8265982000513609,0,55.44,52.99,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,1068.5,864567.013790275,702483.2937114163,0,0,3858.724279442246 -13637,16841,30728,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.877476882557311,6.426901940077292,0,0,-964.5987523209646,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.919801677183495,6.334839616427893,51.19,50.58,-9,-9,10,1,1,0,0,10,12,2,1,396,0,0,0,0,469.12631342423 -13638,16842,30729,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1013.775526748416,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,7.982796205494982,70.8808915294989,0,0,1,1,0,2.880189860752766,0,42.2,14.42,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,567,-235480.2574559048,0,0,0,320.2620578793406 -13639,16843,30730,-9,30731,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.682690263804,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,739.5,-11368.58078963008,97299.42915839877,0,0,1712.304992538353 -13639,16843,30731,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.429451490863679,7.350048918793162,0,0,0,-980.2080506650344,0,2,2,2019,13,1,36,29,1,1,0,5.699271403616872,5.699271403616872,0,0,0,0,0,1,1,0,0,0,37.61,50.02,-9,-9,5,1,1,0,0,10,12,2,1,739.5,-11368.58078963008,97299.42915839877,0,0,1712.304992538353 -13640,16844,30732,-9,30734,30733,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.1600510973434,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,461.5,897866.297484436,156794.5265409392,605591.0697054365,191877.0591423468,6991.879860917084 -13640,16844,30733,30734,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.463809013348003,9.233398748557381,0,12,4,154.918700155735,0,2,1,2019,26,11,70,70,1,11,0,13.68036402923838,13.68036402923838,0,0,0,0,0,1,1,0,0,0,32.14,59.39,51.14,60.45,3.333333333333333,1,1,0,0,11,9,5,0,461.5,897866.297484436,156794.5265409392,605591.0697054365,191877.0591423468,6991.879860917084 -13640,16844,30734,30733,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,7.973685513793731,8.168161813324211,0,12,-4,13.16586267283915,0,-9,-9,2019,10,1,16,16,1,1,0,22.6674383646782,22.6674383646782,0,0,0,0,0,1,1,0,7.298078705560931,0,51.14,60.45,32.14,59.39,8.333333333333334,1,1,0,0,11,9,5,0,461.5,897866.297484436,156794.5265409392,605591.0697054365,191877.0591423468,6991.879860917084 -13640,16844,30735,-9,30734,30733,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.0528209840131,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,461.5,897866.297484436,156794.5265409392,605591.0697054365,191877.0591423468,6991.879860917084 -13641,16845,30736,30737,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.663396717667501,8.70797787364199,0,4,1,-2.141929271196679,0,3,-9,2019,13,1,39,38,1,1,0,20.66606787701348,20.66606787701348,0,0,0,0,0,0,0,0,0,0,47.36,43.44,27.73,46.3,6.666666666666667,1,1,0,0,10,9,5,1,964.5,654156.5513064521,0,990414.805485556,561614.9857418019,4134.339752651797 -13641,16845,30737,30736,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.608001753771202,8.782492316716739,0,4,-1,-8.341830337309156,0,2,-9,2019,26,11,70,60,1,11,0,11.00998635579635,11.00998635579635,0,0,0,0,0,0,0,0,1.317035579408987,0,27.73,46.3,47.36,43.44,3.333333333333333,1,1,0,0,10,9,5,1,964.5,654156.5513064521,0,990414.805485556,561614.9857418019,4134.339752651797 -13642,16846,30738,30739,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.236978074912367,7.263972981716685,0,14,-3,-101.7180956554579,0,2,2,2019,10,0,16,16,1,1,0,9.64224571080122,9.64224571080122,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,1,1,0,0,3,7,3,1,1381.5,505559.8575153137,66626.61684360288,418599.7209501144,150283.9546622338,2262.446332976016 -13642,16846,30739,30738,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,7.342347847794712,7.421146697332182,0,12,3,17.7851269575558,-9,2,2,2019,9,0,40,0,1,1,0,6.560883430549312,6.560883430549312,0,0,0,0,0,1,1,0,4.592579167086755,0,54,54,51,54,8,1,1,0,0,1,7,3,1,1381.5,505559.8575153137,66626.61684360288,418599.7209501144,150283.9546622338,2262.446332976016 -13643,16847,30740,-9,30742,30743,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.4933634845117,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,702.25,5294.461461505605,0,0,0,2452.702591970253 -13643,16847,30741,-9,30742,30743,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.478118891644,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,702.25,5294.461461505605,0,0,0,2452.702591970253 -13643,16847,30742,30743,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.393947224047153,7.053812497108349,0,6,-3,-131.6479614162689,-9,3,-9,2019,15,3,24,0,1,3,0,6.18935134168584,6.18935134168584,0,0,0,0,0,1,1,0,6.023525836580167,0,30.4,46.79,50,57,6.666666666666667,2,3,0,0,5,2,2,1,702.25,5294.461461505605,0,0,0,2452.702591970253 -13643,16847,30743,30742,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,6.555806749549703,6.585650890163127,0,2,3,-136.6586800993952,-9,-9,-9,2019,10,0,16,0,1,1,0,5.314249663239547,5.314249663239547,0,0,0,0,0,1,1,0,0,0,50,57,30.4,46.79,7,2,3,0,0,1,2,2,1,702.25,5294.461461505605,0,0,0,2452.702591970253 -13644,16848,30744,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,1,8.15917074955853,8.121168191017208,6.679763639096794,0,0,-1100.203562509036,0,2,-9,2019,20,7,30,27,1,7,0,12.18830000800357,12.18830000800357,0,0,0,0,0,1,1,0,6.00083314275893,0,34.51,37.02,-9,-9,1.666666666666667,3,4,0,0,12,9,4,0,614,178230.7285153037,28310.68087166605,327502.466735081,211346.987977388,2105.357251009714 -13644,16848,30745,-9,30744,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.4020117213104,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,0,614,178230.7285153037,28310.68087166605,327502.466735081,211346.987977388,2105.357251009714 -13645,16849,30746,30747,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.676222990533197,7.88537516847997,0,11,-2,42.54871797199247,0,3,2,2019,8,0,24,22,1,0,0,11.28630363040804,11.28630363040804,0,0,0,0,0,0,0,0,0,0,59.29,49.68,60.53,48.35,8.333333333333334,1,1,0,0,10,11,4,0,1646.5,565379.9244116214,308756.2003051677,236968.5437904507,0,1972.706268868362 -13645,16849,30747,30746,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.94000917830353,8.012404723962234,6.65468849190913,18,2,-49.69221827550547,0,3,3,2019,7,1,27,26,1,1,0,9.155416193724973,9.155416193724973,0,0,0,0,0,0,0,0,0,6.525749986649036,60.53,48.35,59.29,49.68,8.333333333333334,1,1,0,0,10,11,4,0,1646.5,565379.9244116214,308756.2003051677,236968.5437904507,0,1972.706268868362 -13646,16850,30748,30750,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,9.044131724753923,9.079864861313668,0,9,1,-71.02004925806435,0,2,-9,2019,13,4,37,50,1,4,0,29.48769823109462,29.48769823109462,0,0,0,0,0,1,1,0,0,0,50.28,51.35,57.33,53.46,8.333333333333334,1,1,0,0,11,2,5,1,644.75,356246.0882779225,212237.8584614144,375674.9695446218,216612.3505123424,4453.98756283301 -13646,16850,30749,-9,30750,30748,1,1,11,0,4,1,3,0,-9,0,1,0,0,0,0,0,-1099.417893828677,-9,2,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,2,5,1,644.75,356246.0882779225,212237.8584614144,375674.9695446218,216612.3505123424,4453.98756283301 -13646,16850,30750,30748,-9,-9,1,0,40,0,4,0,2,2,-9,0,3,8.718166377892713,8.68743680665524,0,9,-1,1.342457595008984,0,2,2,2019,10,0,42,47,1,0,0,15.03009477479743,15.03009477479743,0,0,0,0,0,1,1,0,4.232954966301785,0,57.33,53.46,50.28,51.35,10,1,1,0,0,9,2,5,1,644.75,356246.0882779225,212237.8584614144,375674.9695446218,216612.3505123424,4453.98756283301 -13646,16850,30751,-9,30750,30748,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.987241608663,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,644.75,356246.0882779225,212237.8584614144,375674.9695446218,216612.3505123424,4453.98756283301 -13647,16851,30752,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-968.3698246861095,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.35,46.53,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1227,142081.3892040311,0,0,0,477.5824377109626 -13648,16852,30753,30754,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,0,0,0,16,-12,-75.58144539403635,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,1.787812078670327,0,46.08,57.2,51.73,58.82,8.333333333333334,1,1,0,0,0,8,5,0,275.5,3547269.963097074,1681318.064577905,1474881.463316794,0,4654.124289361253 -13648,16852,30754,30753,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,9.072420934482592,9.058817501485608,16,12,26.34834640467005,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,7.984290758244471,9.220168139896399,51.73,58.82,46.08,57.2,6.666666666666667,1,1,0,0,0,8,5,0,275.5,3547269.963097074,1681318.064577905,1474881.463316794,0,4654.124289361253 -13649,16853,30755,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,1.721550045995021,1.566740924515182,0,0,-1022.231778570159,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,1.432600858974554,0,17.8691813893242,0,1,1,0,0,2.110410884705928,54.29,14.81,-9,-9,5,3,4,0,0,0,8,2,0,417,749511.9551642953,53393.18201450499,748702.2867961162,0,838.3254781948923 -13650,16854,30756,30757,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,7.194168310877307,7.697609980221188,5.630952814411234,10,0,-63.41541953095901,0,3,3,2019,6,0,17,20,1,0,0,11.72619174673459,11.72619174673459,0,0,0,0,0,0,0,0,0,5.236568107694687,56.47,59.4,57.06,57.76,10,1,1,0,0,13,9,3,1,335,406828.2196687395,94675.82142685902,219129.272549065,0,4036.222753404838 -13650,16854,30757,30756,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.901150707637622,7.646697356739092,0,10,0,49.48387314490702,0,3,3,2019,6,0,9,40,1,0,0,28.42133345486974,28.42133345486974,0,0,0,0,0,0,0,0,9.03217471251647,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,13,9,3,1,335,406828.2196687395,94675.82142685902,219129.272549065,0,4036.222753404838 -13651,16855,30758,30759,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.753431168022526,7.759226843330048,0,2,2,21.64228154028445,0,-9,-9,2019,17,6,39,39,1,6,0,6.963037766367241,6.963037766367241,0,0,0,0,0,0,0,0,0,0,26.76,61.81,26.22,39.42,3.333333333333333,1,1,0,0,2,2,4,1,510,171352.571695919,40271.39470452645,127141.7647666658,49798.36661589019,2643.945513923889 -13651,16855,30759,30758,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,7.686115075911059,7.891171354696923,0,2,-2,6.256077337033333,0,2,3,2019,20,8,60,60,1,8,0,5.684686527953141,5.684686527953141,0,0,0,0,0,0,0,0,0,0,26.22,39.42,26.76,61.81,3.333333333333333,1,1,0,0,5,2,4,1,510,171352.571695919,40271.39470452645,127141.7647666658,49798.36661589019,2643.945513923889 -13652,16856,30760,-9,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.046333320755565,8.074866137352076,0,0,0,-1047.928783841199,0,-9,-9,2019,12,0,60,38,1,0,0,6.036748642373249,6.036748642373249,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,986,77070.74574404613,0,0,0,1619.072740343379 -13652,16856,30761,-9,-9,30760,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.495853493565,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,986,77070.74574404613,0,0,0,1619.072740343379 -13653,16857,30762,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.23383693888559,9.451526953826237,0,0,0,-937.8240104639772,0,2,1,2019,10,0,70,50,1,0,0,18.70308143187845,18.70308143187845,0,0,0,0,0,0,0,0,.0771578616816753,0,52.09,39.82,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,239,2168973.619307914,807529.5567768323,775180.4205466044,90329.69347789582,3321.052549972195 -13654,16858,30763,30764,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.506511705159355,7.411639461633245,0,40,-5,86.29800881089353,0,2,2,2019,14,1,29,29,1,1,0,8.587865452202095,8.587865452202095,0,0,0,0,0,0,0,0,4.236491957637926,0,37.42,48.97,54.97,47.63,3.333333333333333,1,1,0,0,11,6,4,1,223,856218.6600120771,712440.4321582583,155071.317397314,29330.86732494733,3090.519761985983 -13654,16858,30764,30763,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.575479434994866,8.46684857884075,40,5,4.520660813594201,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.844436861985316,8.567049361258341,54.97,47.63,37.42,48.97,3.333333333333333,1,1,0,0,0,6,4,1,223,856218.6600120771,712440.4321582583,155071.317397314,29330.86732494733,3090.519761985983 -13655,16859,30765,30767,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.670397685056777,8.544747456676072,0,10,4,15.07909345939838,0,-9,-9,2019,13,1,39,41,1,1,0,13.77783855997049,13.77783855997049,0,0,0,0,14.5,1,1,0,0,0,48.45,57.49,54.2,57.49,5,1,1,0,0,11,12,4,1,468.75,412295.6416688195,257902.0321131234,232286.9932582725,73300.91632251427,2783.389868318397 -13655,16859,30766,-9,30767,30765,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.2330061700394,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,468.75,412295.6416688195,257902.0321131234,232286.9932582725,73300.91632251427,2783.389868318397 -13655,16859,30767,30765,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.656767864951794,7.713943451071189,0,10,-4,-62.20182758230391,-9,2,2,2019,7,0,27,0,1,0,0,10.15461843914198,10.15461843914198,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.45,57.49,5,1,1,0,0,6,12,4,1,468.75,412295.6416688195,257902.0321131234,232286.9932582725,73300.91632251427,2783.389868318397 -13655,16859,30768,-9,30767,30765,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-757.6152063337197,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,468.75,412295.6416688195,257902.0321131234,232286.9932582725,73300.91632251427,2783.389868318397 -13656,16860,30769,-9,30772,30770,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-942.0063453626531,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,4,1,750.25,536498.1223071576,415785.8798010885,202924.3539940962,79970.53321436934,3818.397643147495 -13656,16860,30770,30772,-9,-9,1,1,46,0,2,0,1,1,-9,1,4,8.395411784420205,8.407294434713178,0,21,2,-28.17704423086244,0,2,1,2019,9,0,37,38,1,0,0,13.98693770282648,13.98693770282648,0,0,0,0,0,1,1,0,3.423721804657437,0,54.79,55.86,50.1,46.94,8.333333333333334,1,1,0,0,11,13,4,1,750.25,536498.1223071576,415785.8798010885,202924.3539940962,79970.53321436934,3818.397643147495 -13656,16860,30771,-9,30772,30770,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.7638280310169,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,750.25,536498.1223071576,415785.8798010885,202924.3539940962,79970.53321436934,3818.397643147495 -13656,16860,30772,30770,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.449972497894208,8.404600976285263,0,21,-2,47.97764143123172,0,2,2,2019,8,0,22,22,1,0,0,23.18102503128055,23.18102503128055,0,0,0,0,14.5,1,1,0,0,0,50.1,46.94,54.79,55.86,8.333333333333334,1,1,0,0,10,13,4,1,750.25,536498.1223071576,415785.8798010885,202924.3539940962,79970.53321436934,3818.397643147495 -13657,16861,30773,30774,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.080088921320536,8.08530542703032,10,2,-7.242802737510209,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.713600912741127,7.9828555610844,57.33,53.46,38.99,39.26,6.666666666666667,1,1,0,0,8,12,4,1,272.5,1622197.698347997,966901.9109157471,377790.1516339554,0,3594.667589637386 -13657,16861,30774,30773,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.66529799771904,8.110683754916828,10,-2,-11.26687707800704,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.011609180973888,38.99,39.26,57.33,53.46,3.333333333333333,1,1,0,0,9,12,4,1,272.5,1622197.698347997,966901.9109157471,377790.1516339554,0,3594.667589637386 -13658,16862,30775,-9,30777,30778,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.173119219857,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,409.75,478268.450110507,243229.4440028812,343997.904658699,217025.2619573606,6052.594926661812 -13658,16862,30776,-9,30777,30778,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.200239572902,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,409.75,478268.450110507,243229.4440028812,343997.904658699,217025.2619573606,6052.594926661812 -13658,16862,30777,30778,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.237723539738146,7.000127893202505,0,15,-3,-4.076291003871342,0,2,2,2019,11,0,2,5,1,0,0,87.07668552659658,87.07668552659658,0,0,0,0,0,1,1,0,3.409385233294779,0,52.11,44.65,54.79,55.86,8.333333333333334,1,1,0,0,5,2,5,1,409.75,478268.450110507,243229.4440028812,343997.904658699,217025.2619573606,6052.594926661812 -13658,16862,30778,30777,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.454054780983217,9.513855131976781,0,15,3,4.635252945339618,0,2,2,2019,7,0,45,40,1,0,0,51.00078709755942,51.00078709755942,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.11,44.65,10,1,1,0,0,9,2,5,1,409.75,478268.450110507,243229.4440028812,343997.904658699,217025.2619573606,6052.594926661812 -13659,16863,30779,30780,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.113181593866795,9.426059600316901,0,26,-12,27.11635007475812,0,2,2,2019,13,2,39,45,1,2,0,25.96369961087304,25.96369961087304,0,0,0,0,0,0,0,0,0,0,32.08,58.42,46.16,58.62,8.333333333333334,1,1,0,0,10,12,5,1,113,1979525.466998413,1368235.144895729,328230.9448252519,22234.854188401,7508.565062359588 -13659,16863,30780,30779,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.160295938773,9.375675276540617,0,26,12,-75.20767512538085,0,3,2,2019,9,0,44,44,1,0,0,32.07486310750689,32.07486310750689,0,0,0,0,0,0,0,0,6.288501978882719,0,46.16,58.62,32.08,58.42,8.333333333333334,1,1,0,0,10,12,5,1,113,1979525.466998413,1368235.144895729,328230.9448252519,22234.854188401,7508.565062359588 -13660,16864,30781,30782,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,8.721075153244453,9.068647921694742,0,3,8,-16.06397696819904,0,1,1,2019,11,0,37,50,1,0,0,25.82679926960171,25.82679926960171,0,0,0,0,0,1,1,0,0,0,46.08,57.2,47,57,6.666666666666667,3,4,0,0,9,9,5,1,381.3333333333333,542103.8084856137,180596.5783285947,388446.3371499626,152812.4549534871,4417.446643884804 -13660,16864,30782,30781,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.386944346785874,8.7562382985267,0,3,-8,-147.4934330356946,0,-9,-9,2019,11,0,35,57,1,2,0,16.38540912528446,16.38540912528446,0,0,0,0,0,1,1,0,2.048879224046916,0,47,57,46.08,57.2,7,2,3,0,0,1,9,5,1,381.3333333333333,542103.8084856137,180596.5783285947,388446.3371499626,152812.4549534871,4417.446643884804 -13660,16864,30783,-9,30782,30781,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.843058630547,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,9,5,1,381.3333333333333,542103.8084856137,180596.5783285947,388446.3371499626,152812.4549534871,4417.446643884804 -13661,16865,30784,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1031.454926832182,0,-9,3,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,-9,-9,0,1,1,1,1,0,8,1,0,623,100457.8658066043,0,0,0,2017.068440733934 -13661,16866,30785,-9,30784,-9,1,0,19,0,0,0,2,2,-9,0,5,7.452954832079438,7.794849936865677,0,0,0,-1031.068098084216,0,3,-9,2019,6,0,40,40,1,0,1,4.921333727091554,4.921333727091554,0,0,0,0,7,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,284,119790.2028009976,0,0,0,1100.24106339707 -13662,16867,30786,-9,30787,30788,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.291775924873,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,611.6666666666666,-75994.19297489444,-22752.73418059715,0,0,1725.376329058036 -13662,16867,30787,30788,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,6.815802393114539,6.421981305784794,0,10,-2,-29.93726851360607,0,2,2,2019,6,0,15,18,1,0,0,6.831515799187994,6.831515799187994,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,12,3,0,611.6666666666666,-75994.19297489444,-22752.73418059715,0,0,1725.376329058036 -13662,16867,30788,30787,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.113941183657024,8.13567441754245,0,10,2,-157.9164181738119,0,2,2,2019,6,0,40,37,1,0,0,7.604844309745065,7.604844309745065,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,12,3,0,611.6666666666666,-75994.19297489444,-22752.73418059715,0,0,1725.376329058036 -13663,16868,30789,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,7.875903742640231,7.971856283395184,0,0,-930.5263665976727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.49513091441652,8.219863011591105,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,952,437361.3740717446,77933.1233526032,420353.9682836692,144530.1299941176,1331.536960825156 -13664,16869,30790,30791,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.422792839706938,8.502762069710426,0,22,-7,8.326850598949971,0,3,2,2019,12,0,45,44,1,0,0,10.66719367168017,10.66719367168017,0,0,0,0,0,0,0,0,3.744766797037101,0,51.4,42.44,59.04,48.6,6.666666666666667,1,1,0,0,11,4,5,1,625.5,1542466.208146293,946037.1416141599,418168.7924181878,0,3525.236470998411 -13664,16869,30791,30790,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.53421370774466,8.71177089899138,0,32,7,-60.94236443264879,0,2,2,2019,7,0,50,100,1,0,0,12.8838343177477,12.8838343177477,0,0,0,0,2,0,0,0,3.405865721029607,0,59.04,48.6,51.4,42.44,8.333333333333334,1,1,0,0,11,4,5,1,625.5,1542466.208146293,946037.1416141599,418168.7924181878,0,3525.236470998411 -13664,16870,30792,-9,30790,30791,1,1,26,0,0,0,1,1,-9,0,3,8.141489559986193,8.025775545198943,0,0,0,-978.2096226294043,0,2,2,2019,6,0,41,40,1,0,1,8.171147880692743,8.171147880692743,0,0,0,0,0,0,0,0,2.103647958590004,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,8,4,4,1,335,0,0,0,0,933.8386954834107 -13665,16871,30793,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,7.739596688713023,7.855745051511784,0,0,0,-1033.804632661138,0,3,1,2019,5,0,42,30,1,0,0,5.972340616358186,5.972340616358186,0,0,0,0,0,1,1,0,0,0,53.84,29.64,-9,-9,8.333333333333334,3,4,0,1,5,8,3,0,465,203599.4925321614,0,0,0,1072.771894516077 -13666,16872,30794,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1080.283047765787,-9,2,2,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47.76,47.23,-9,-9,5,1,1,1,1,10,1,2,0,426,-200409.4366802308,0,0,0,-23.94220057240832 -13667,16873,30795,30796,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.163058370982348,8.986871815154894,0,8,-4,-65.62654580297725,0,1,1,2019,9,0,50,40,1,0,0,26.14373501580156,26.14373501580156,0,0,0,0,0,1,1,0,5.935022912967963,0,49.35,59.64,43.52,52.86,8.333333333333334,1,1,0,0,10,12,5,1,1819,2397056.533008198,897610.7316632328,955558.9712643074,386898.2041405038,12055.21894029365 -13667,16873,30796,30795,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,9.897501172173667,9.655836690793802,0,8,4,-51.64320044565446,0,2,2,2019,12,0,5,5,1,0,0,366.4748477694484,366.4748477694484,0,0,0,0,0,1,1,0,0,0,43.52,52.86,49.35,59.64,5,1,1,0,0,6,12,5,1,1819,2397056.533008198,897610.7316632328,955558.9712643074,386898.2041405038,12055.21894029365 -13667,16873,30797,-9,30796,30795,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-973.4556203203546,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.1800268190027066,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,1819,2397056.533008198,897610.7316632328,955558.9712643074,386898.2041405038,12055.21894029365 -13667,16874,30798,-9,30796,30795,1,0,20,0,1,0,2,2,0,0,2,0,0,0,0,0,-985.594009930313,-9,2,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.485868319061241,0,38.3,50.6,-9,-9,6.666666666666667,1,1,0,0,2,12,1,1,340,45789.96112587446,0,0,0,269.8024495621828 -13668,16875,30799,30800,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.899538410488661,8.914951731872115,0,6,1,-4.974233215105659,0,2,2,2019,12,1,42,47,1,1,0,22.35067974227192,22.35067974227192,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.77,55.87,8.333333333333334,1,1,0,0,9,6,5,1,1725.25,966345.4503714332,26568.89188527066,681448.7268900649,0,4225.945048028428 -13668,16875,30800,30799,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.929292258641493,7.850806465090553,0,6,-1,-117.1504028371509,0,-9,-9,2019,7,0,24,24,1,0,0,15.50842845546049,15.50842845546049,0,0,0,0,0,1,1,0,1.603193962423484,0,54.77,55.87,54.37,54.8,8.333333333333334,1,1,0,0,9,6,5,1,1725.25,966345.4503714332,26568.89188527066,681448.7268900649,0,4225.945048028428 -13668,16875,30801,-9,30800,30799,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.0878765297346,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1725.25,966345.4503714332,26568.89188527066,681448.7268900649,0,4225.945048028428 -13668,16875,30802,-9,30800,30799,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.5716008896454,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,1725.25,966345.4503714332,26568.89188527066,681448.7268900649,0,4225.945048028428 -13669,16876,30803,30804,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,9.352984119931174,9.345823180315579,0,29,5,22.570907389089,0,2,2,2019,17,4,48,48,1,4,0,30.23127888149586,30.23127888149586,0,0,0,0,0,0,0,0,4.438098958375564,0,58.51,17.88,40.58,60.95,3.333333333333333,1,1,0,0,7,6,5,1,793.5,4153329.164975973,2478174.032703927,558029.0168483709,0,5530.416689459804 -13669,16876,30804,30803,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.19652944155237,8.264749096115303,0,29,-5,54.28010498842882,0,2,2,2019,16,4,43,40,1,4,0,10.86948953612954,10.86948953612954,0,0,0,0,7,0,0,0,0,0,40.58,60.95,58.51,17.88,6.666666666666667,1,1,0,0,9,6,5,1,793.5,4153329.164975973,2478174.032703927,558029.0168483709,0,5530.416689459804 -13670,16877,30805,30808,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.958563869313418,8.356895135069498,0,1,-6,-20.21664338615406,0,2,2,2019,9,0,16,17,1,0,0,20.17551137185586,20.17551137185586,0,0,0,0,0,0,0,0,7.626048619462161,0,52.72,55.58,53,54,8.333333333333334,1,1,0,0,8,7,5,1,447,192468.6988537645,90235.56573112059,0,0,5243.030882067809 -13670,16877,30806,-9,30805,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.20333491525,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,447,192468.6988537645,90235.56573112059,0,0,5243.030882067809 -13670,16877,30807,-9,30805,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.211093543194,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,447,192468.6988537645,90235.56573112059,0,0,5243.030882067809 -13670,16877,30808,30805,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.112906322812076,9.135756079554167,0,1,6,-152.8095626331651,-9,-9,-9,2019,9,0,40,0,1,1,0,27.28773792069027,27.28773792069027,0,0,0,0,0,0,0,0,0,0,53,54,52.72,55.58,8,4,1,0,0,1,7,5,1,447,192468.6988537645,90235.56573112059,0,0,5243.030882067809 -13671,16878,30809,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.192103343651052,8.259537134336464,0,0,0,-1078.841392875997,0,3,2,2019,10,1,22,23,1,1,0,17.50833330634502,17.50833330634502,0,0,0,0,0,0,0,0,3.265038831443511,0,48.11,55.02,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,202,423392.9188400328,129687.2349290935,228241.5637076222,0,1518.315577295514 -13672,16879,30810,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1037.97851074475,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,61.37,34.18,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,266,81527.1303594253,0,119327.6129867012,0,93.88162634683692 -13673,16880,30811,30812,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,9.475441704413219,9.534341743818002,0,7,-7,-39.87719669748107,0,-9,-9,2019,16,5,50,55,1,5,0,28.91888492621763,28.91888492621763,0,0,0,0,0,0,0,0,0,0,36.62,60.23,45.43,53.5,3.333333333333333,1,1,0,0,9,9,5,1,709,727520.1993985809,250190.5083732963,493097.2591335725,205596.274807839,3753.01905720327 -13673,16880,30812,30811,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.169365022278558,7.06760574391816,0,7,7,33.9927935643341,0,3,1,2019,11,0,16,16,1,0,0,8.760250145019464,8.760250145019464,0,0,0,0,0,0,0,0,0,0,45.43,53.5,36.62,60.23,8.333333333333334,1,1,0,0,8,9,5,1,709,727520.1993985809,250190.5083732963,493097.2591335725,205596.274807839,3753.01905720327 -13673,16880,30813,-9,30812,30811,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.1403194043448,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,709,727520.1993985809,250190.5083732963,493097.2591335725,205596.274807839,3753.01905720327 -13674,16881,30814,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,7.715335480192638,7.870921728561997,0,0,0,-1027.664726292926,0,1,3,2019,15,3,27,37,1,3,0,9.659674130110099,9.659674130110099,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,1.666666666666667,1,1,0,1,8,2,3,0,433,-17775.91010728072,-5095.139350693233,0,0,1361.336685706681 -13674,16882,30815,-9,30814,-9,1,0,22,0,0,0,2,2,-9,0,3,7.095177528804484,7.112186086975749,0,0,0,-892.0906391946411,-9,3,-9,2019,20,8,22,0,1,8,1,8.680092779210716,8.680092779210716,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,5,1,1,0,0,3,2,3,0,1085,228342.9319760996,0,0,0,734.9417996871557 -13674,16883,30816,-9,30814,-9,1,1,27,0,0,0,2,2,-9,0,2,8.707380596815389,8.68423700753762,0,0,0,-1150.533249068872,0,3,-9,2019,8,0,60,40,1,0,1,10.03139539412349,10.03139539412349,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,3.333333333333333,1,1,0,0,5,2,5,0,143,131727.5120904405,128619.8006985302,0,0,1692.255163411066 -13675,16884,30817,30818,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.122697893268558,8.877608827838003,0,39,-1,-167.6817362154967,0,2,1,2019,11,0,36,36,1,0,0,30.42595716115835,30.42595716115835,0,0,0,0,0,0,0,0,4.41877700598067,0,53.07,52.7,62.39,56.71,8.333333333333334,1,1,0,0,11,7,5,1,866.5,2668366.564301912,883717.7420004387,796666.00561707,54685.70641675941,4902.744966769551 -13675,16884,30818,30817,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.261728360167854,8.378516200567978,0,39,1,107.807325289454,0,2,2,2019,10,1,18,26,1,1,0,24.6230803963266,24.6230803963266,0,0,0,0,27,0,0,0,0,0,62.39,56.71,53.07,52.7,10,1,1,0,0,11,7,5,1,866.5,2668366.564301912,883717.7420004387,796666.00561707,54685.70641675941,4902.744966769551 -13676,16885,30819,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.376152261165393,6.547424517104819,0,0,-1103.809033466216,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.279726668160259,42.61,49.31,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,844,491531.9378902218,124257.925820998,152406.613864165,0,804.9959465681798 -13677,16886,30820,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,8.129746571484086,8.017082827294562,0,0,0,-915.6810201235996,0,2,2,2019,34,12,36,36,1,12,0,9.285243382160214,9.285243382160214,0,0,0,0,27,1,1,0,0,0,30.26,18.9,-9,-9,0,1,1,0,0,6,12,4,0,551,663072.0891314492,71202.50849092162,263079.6273546328,0,1857.226169648857 -13678,16887,30821,30822,-9,-9,1,1,49,0,1,0,2,2,-9,0,1,0,0,0,7,0,99.93996887160186,-9,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,.3098089066458388,0,16.84,49.69,46,50,1.666666666666667,1,1,1,0,9,4,3,1,441,236396.920724042,351902.5412211874,92772.80858798436,60240.28181730845,1042.605791785029 -13678,16887,30822,30821,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.362414712982652,8.08424132501918,0,7,0,-1.269275499384255,0,-9,-9,2019,12,0,37,37,1,2,0,12.0944903436641,12.0944903436641,0,0,0,0,0,0,0,0,2.936564230662,0,46,50,16.84,49.69,7,1,1,0,0,10,4,3,1,441,236396.920724042,351902.5412211874,92772.80858798436,60240.28181730845,1042.605791785029 -13679,16888,30823,-9,30824,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.20396543185,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,446.6666666666667,56460.75972240393,-86580.81265845463,0,0,2199.671631913621 -13679,16888,30824,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,1,0,5.881958666160671,5.959958306658678,0,0,-1156.885185501674,0,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,6.120791235235443,0,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,446.6666666666667,56460.75972240393,-86580.81265845463,0,0,2199.671631913621 -13679,16888,30825,-9,30824,-9,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1122.208093922965,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,31,33,-9,-9,3,1,1,-9,0,0,10,2,0,446.6666666666667,56460.75972240393,-86580.81265845463,0,0,2199.671631913621 -13680,16889,30826,30828,-9,-9,1,1,43,0,1,0,3,3,-9,1,3,0,0,0,15,4,0,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,32.11,57.07,8.333333333333334,1,1,1,0,0,13,1,0,961,0,0,0,0,1476.768827337288 -13680,16889,30827,-9,30828,30826,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.3725302130775,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,961,0,0,0,0,1476.768827337288 -13680,16889,30828,30826,-9,-9,1,0,39,0,1,0,2,2,-9,1,3,0,0,0,15,-4,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.11,57.07,57.33,53.46,5,1,1,0,0,0,13,1,0,961,0,0,0,0,1476.768827337288 -13680,16890,30829,-9,30828,30826,1,1,19,0,1,1,2,0,0,1,3,0,0,0,0,0,-939.8236523538319,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.24,55.72,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,470,127578.3772989108,0,0,0,-67.50616812187127 -13681,16891,30830,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.285478631367896,8.7011378040489,0,0,0,-953.8623308607944,0,2,3,2019,8,0,37,37,1,0,0,16.93527847961095,16.93527847961095,0,0,0,0,0,0,0,0,5.035285256626246,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,289,244100.2288474649,136547.2078434617,79631.37196045512,62965.3575015448,2434.953174038526 -13682,16892,30831,-9,30833,30832,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1166.260135072055,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13682,16892,30832,30833,-9,-9,1,1,49,0,4,0,1,1,-9,0,5,9.717477676965714,9.551152185995072,0,25,2,34.07989506330885,0,2,3,2019,11,1,70,70,1,1,0,28.67315884072238,28.67315884072238,0,0,0,0,0,1,1,0,2.601237345332351,0,46.4,59.87,25.8,54.33,3.333333333333333,1,1,0,0,7,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13682,16892,30833,30832,-9,-9,1,0,47,0,4,0,1,1,-9,0,3,0,0,0,25,-2,-100.6139264407156,0,2,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,25.8,54.33,46.4,59.87,5,1,1,0,0,2,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13682,16892,30834,-9,30833,30832,1,0,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-990.4853605406582,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,.857210193428688,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13682,16892,30835,-9,30833,30832,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-922.1375172316739,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13682,16892,30836,-9,30833,30832,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1104.216342916768,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,829.1666666666666,411356.9860567988,108483.0600298641,429032.2569948381,135823.2595515743,12074.69556429461 -13683,16893,30837,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,8.319378346809534,8.436455980268585,0,0,0,-1020.543463568346,-9,2,2,2019,9,0,48,0,1,0,0,7.636899100605222,7.636899100605222,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,6,4,0,71,82868.4058313382,56292.93026614532,0,0,1283.817014477215 -13684,16894,30838,-9,30839,30840,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.2533043594339,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,344.3333333333333,873812.6642444413,360610.5586225219,225922.4028435918,0,2813.968757749916 -13684,16894,30839,30840,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.432246042578854,7.148166953501921,0,6,1,-147.8467249576897,0,2,3,2019,10,0,40,30,1,0,0,4.27598421099295,4.27598421099295,0,0,0,0,2,1,1,0,4.698760063433156,0,54.9,54.53,50.34,56.4,8.333333333333334,1,1,0,0,8,4,4,1,344.3333333333333,873812.6642444413,360610.5586225219,225922.4028435918,0,2813.968757749916 -13684,16894,30840,30839,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.63684740520085,8.606805631918798,0,6,-1,-45.71776514158849,0,2,3,2019,11,2,39,40,1,2,0,16.21216483567659,16.21216483567659,0,0,0,0,2,1,1,0,5.404686625774893,0,50.34,56.4,54.9,54.53,8.333333333333334,1,1,0,0,6,4,4,1,344.3333333333333,873812.6642444413,360610.5586225219,225922.4028435918,0,2813.968757749916 -13685,16895,30841,30842,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.029492266556956,7.185273491161987,44,3,1.12271346827068,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.822294867839003,46.51,35.36,40.14,24.96,6.666666666666667,4,2,0,0,0,7,2,1,1227.5,445831.5904060507,147187.7737217461,182374.1394886436,0,1441.290093986916 -13685,16895,30842,30841,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.295771627332289,5.382932338846018,43,-3,-111.1006300357019,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.573805851137711,5.563449577614588,40.14,24.96,46.51,35.36,3.333333333333333,1,1,0,0,0,7,2,1,1227.5,445831.5904060507,147187.7737217461,182374.1394886436,0,1441.290093986916 -13686,16896,30843,30845,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,8,5,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.96,42.08,52,54.51,8.333333333333334,1,1,0,0,0,13,1,0,712.3333333333334,180884.2514810053,0,162641.3095588776,0,2608.440578755717 -13686,16896,30844,-9,30845,30843,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-994.6175825807235,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,1,0,712.3333333333334,180884.2514810053,0,162641.3095588776,0,2608.440578755717 -13686,16896,30845,30843,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,8,-5,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,49.96,42.08,8.333333333333334,1,1,0,0,0,13,1,0,712.3333333333334,180884.2514810053,0,162641.3095588776,0,2608.440578755717 -13686,16897,30846,-9,30845,30843,1,0,22,0,0,0,3,3,-9,0,4,7.740756895502622,7.577152528507412,0,0,0,-1041.66392681927,0,3,3,2019,6,0,38,36,1,0,1,6.919026010924295,6.919026010924295,0,0,0,0,0,1,1,0,0,0,46.65,56.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,113,48948.12219966893,0,0,0,904.0891938132752 -13686,16898,30847,-9,30845,30843,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1042.930129636094,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,13,1,0,1011,-80167.5335865019,0,0,0,0 -13687,16899,30848,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,5.813230665055131,5.413359198866767,0,0,-1032.439988010932,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.048408639064418,0,26.2703033422859,0,1,1,0,0,5.297257183971848,61.28,46.17,-9,-9,0,1,1,0,0,0,4,2,0,541,84335.44909434923,1525.524693828418,0,0,1005.828937053087 -13688,16900,30849,-9,30852,30851,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.6003986085079,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,909,218257.6709010288,42731.63962939534,419133.4673467142,283189.8256546301,5846.415344778865 -13688,16900,30850,-9,30852,30851,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.28776446753,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,909,218257.6709010288,42731.63962939534,419133.4673467142,283189.8256546301,5846.415344778865 -13688,16900,30851,30852,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,8.764985344648842,8.70409973532195,0,16,1,134.1581077976147,0,2,1,2019,13,1,55,55,1,1,0,10.90522889570261,10.90522889570261,0,0,0,0,0,1,1,0,3.750018444064174,0,57.15,46.69,39.15,58.79,6.666666666666667,1,1,0,0,12,6,5,1,909,218257.6709010288,42731.63962939534,419133.4673467142,283189.8256546301,5846.415344778865 -13688,16900,30852,30851,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,9.193607441246368,9.464253426052814,0,16,-1,68.3012059742332,0,2,2,2019,19,8,48,46,1,8,0,20.14041590474595,20.14041590474595,0,0,0,0,0,1,1,0,3.746118500349547,0,39.15,58.79,57.15,46.69,6.666666666666667,1,1,0,0,12,6,5,1,909,218257.6709010288,42731.63962939534,419133.4673467142,283189.8256546301,5846.415344778865 -13689,16901,30853,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.549234818316583,7.565979921780716,0,0,0,-1050.63525604744,0,-9,-9,2019,11,2,30,27,1,2,0,7.804795460693799,7.804795460693799,0,0,0,0,0,1,0,1,0,0,42.18,55.06,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,475,47150.67140531054,62139.10757368582,0,0,1470.249456870447 -13689,16901,30854,-9,30853,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.059094830159,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,475,47150.67140531054,62139.10757368582,0,0,1470.249456870447 -13690,16902,30855,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.750319160116307,7.912567725101009,0,0,-949.3430556229747,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.334535422101311,7.940499714669148,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,361,920436.9785327403,594281.3260171459,187663.6856535148,0,1672.429220038728 -13691,16903,30856,-9,30858,30857,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-956.787513918593,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.33,51.29,-9,-9,8.333333333333334,3,4,0,0,2,8,5,0,236,-11320.49355435152,106710.7810033772,0,0,3164.866943777318 -13691,16903,30857,30858,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.717230726162073,7.659557897001297,0,25,0,95.46239956353328,0,2,2,2019,11,0,20,20,1,2,0,12.77341819969209,12.77341819969209,0,0,0,0,0,1,1,0,0,0,58.94,51.31,56.78,41.51,8.333333333333334,3,4,0,0,8,8,5,0,236,-11320.49355435152,106710.7810033772,0,0,3164.866943777318 -13691,16903,30858,30857,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.536193917394248,8.617601505546183,0,23,0,7.846757090166535,0,3,3,2019,3,0,7,39,1,0,0,100.7124997109459,100.7124997109459,0,0,0,0,0,1,1,0,0,0,56.78,41.51,58.94,51.31,8.333333333333334,3,4,0,1,9,8,5,0,236,-11320.49355435152,106710.7810033772,0,0,3164.866943777318 -13692,16904,30859,-9,30861,30860,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1142.469145354362,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,900,569857.3905748419,180122.7885145844,264259.1009635837,-1114.567640426976,2479.768859094709 -13692,16904,30860,30861,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.695076529871594,8.844767154477639,0,8,7,68.32165676894235,0,-9,-9,2019,7,0,50,47,1,0,0,16.27727558850517,16.27727558850517,0,0,0,0,0,1,1,0,3.276810285532961,0,56.11,44.4,54.2,57.49,8.333333333333334,1,1,0,0,8,7,4,1,900,569857.3905748419,180122.7885145844,264259.1009635837,-1114.567640426976,2479.768859094709 -13692,16904,30861,30860,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.445326261684071,6.179400437006236,0,8,-7,-80.24885133011097,0,-9,-9,2019,8,0,7,7,1,0,0,10.13319590057067,10.13319590057067,0,0,0,0,0,1,1,0,1.28424261888115,0,54.2,57.49,56.11,44.4,8.333333333333334,1,1,0,0,8,7,4,1,900,569857.3905748419,180122.7885145844,264259.1009635837,-1114.567640426976,2479.768859094709 -13693,16905,30862,30863,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,49,-7,58.09437557034425,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.010122775203691,0,61.68,47.24,58.15,52.91,8.333333333333334,1,1,0,0,8,6,2,1,1026,379440.3095618549,185582.9294391253,195203.4260827337,0,1521.566940170619 -13693,16905,30863,30862,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.95433142541649,6.074597664369221,9,7,58.70631794818473,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.922351620521839,6.070324220696104,58.15,52.91,61.68,47.24,8.333333333333334,1,1,0,0,4,6,2,1,1026,379440.3095618549,185582.9294391253,195203.4260827337,0,1521.566940170619 -13694,16906,30864,30865,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.211348339503374,8.477032696338554,0,10,2,5.576105383780269,0,3,3,2019,9,0,41,41,1,0,0,10.19458113611424,10.19458113611424,0,0,0,0,0,0,0,0,0,0,43.72,55.3,23.53,54.52,1.666666666666667,1,1,0,0,11,11,5,1,287.5,176962.9228083761,170024.1191695088,155300.0457504776,105719.3689458713,3418.063569577233 -13694,16906,30865,30864,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.392057119388154,8.536953274085183,0,10,-2,7.275796590969462,0,3,3,2019,16,4,30,0,1,4,0,17.93148172868882,17.93148172868882,0,0,0,0,0,0,0,0,0,0,23.53,54.52,43.72,55.3,8.333333333333334,1,1,0,0,9,11,5,1,287.5,176962.9228083761,170024.1191695088,155300.0457504776,105719.3689458713,3418.063569577233 -13694,16907,30866,-9,30865,30864,1,1,20,0,0,0,2,2,-9,0,5,7.489423970976042,6.968161163217452,0,0,0,-906.1168058338076,0,2,3,2019,12,0,25,0,1,0,1,7.609021804810012,7.609021804810012,0,0,0,0,0,0,0,0,0,0,47.67,58.09,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,574,-31047.13738476848,56457.07768221504,0,0,881.6195937605426 -13694,16908,30867,-9,30865,30864,1,0,19,0,0,0,3,3,1,0,5,6.182029562803385,6.134030860752918,0,0,0,-984.5952518755194,-9,2,3,2019,6,0,3,0,1,0,1,14.46423020072425,14.46423020072425,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,11,2,1,8066,-103047.9015634424,0,0,0,69.07395196492379 -13695,16909,30868,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,5.434667695002302,5.574532403430704,0,0,-974.6512533212721,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.591923104015751,5.425582689343461,38.19,41.26,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,368,341584.2366278333,35406.07385528953,181475.9270218028,0,1094.311141383425 -13696,16910,30869,30870,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.365966605262313,6.888969695494193,55,2,-38.12411125340446,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.535610801722009,58.15,52.91,57.92,51.82,10,1,1,0,0,0,4,2,1,144.5,292043.3941415644,144385.7435806062,0,0,2204.321055145613 -13696,16910,30870,30869,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.033152898169784,5.35877688817186,55,-2,107.402925275338,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.233126075185543,57.92,51.82,58.15,52.91,10,1,1,0,0,0,4,2,1,144.5,292043.3941415644,144385.7435806062,0,0,2204.321055145613 -13697,16911,30871,-9,30874,30876,1,1,16,1,4,1,2,0,-9,0,3,0,0,0,0,0,-1005.721849019014,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13697,16911,30872,-9,30874,30876,1,1,11,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1035.761140814562,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13697,16911,30873,-9,30874,30876,1,1,14,1,4,1,3,0,-9,0,2,0,0,0,0,0,-919.5841406076686,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13697,16911,30874,30876,-9,-9,1,0,43,1,4,0,3,3,-9,0,3,0,0,0,20,-2,-24.25149575378193,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,46.3,54.96,53.17,8.333333333333334,2,3,0,0,0,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13697,16911,30875,-9,30874,30876,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-959.9785290281894,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13697,16911,30876,30874,-9,-9,1,1,45,1,4,0,2,2,-9,0,3,7.334946341160077,7.393361853897911,0,20,2,-77.95490367340211,0,3,3,2019,10,0,30,28,1,0,0,5.386451818619863,5.386451818619863,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,46.3,8.333333333333334,2,3,0,1,6,2,2,1,672.5,-38453.95629010962,-26285.79159633089,0,0,2007.737351670922 -13698,16912,30877,-9,30879,30878,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.016294138601,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,811.5,903987.5780562873,628570.7260874148,259968.7118535677,92360.1666351008,6445.955006479036 -13698,16912,30878,30879,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.498475915395467,9.741404878272595,0,7,0,-84.34366995292544,0,-9,-9,2019,10,0,43,48,1,0,0,31.72214700315359,31.72214700315359,0,0,0,0,0,0,0,0,6.611903988175873,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,3,10,5,1,811.5,903987.5780562873,628570.7260874148,259968.7118535677,92360.1666351008,6445.955006479036 -13698,16912,30879,30878,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.291814287180113,8.345394780220765,0,14,0,-21.14424832111487,0,1,1,2019,8,0,38,38,1,0,0,11.79584426677409,11.79584426677409,0,0,0,0,0,0,0,0,2.333293651833358,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,6,10,5,1,811.5,903987.5780562873,628570.7260874148,259968.7118535677,92360.1666351008,6445.955006479036 -13698,16912,30880,-9,30879,30878,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.5763426402769,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,811.5,903987.5780562873,628570.7260874148,259968.7118535677,92360.1666351008,6445.955006479036 -13699,16913,30881,30882,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.441663029446188,8.560737501112378,0,7,-2,74.76891369149878,0,2,2,2019,7,0,45,37,1,0,0,12.71223704668016,12.71223704668016,0,0,0,0,0,0,0,0,2.725097430067309,0,54.69,57.47,52.48,54.33,8.333333333333334,1,1,0,0,7,2,5,1,1277.5,367797.8431939741,45343.30280681965,359003.9917877814,35843.45868879573,3042.342622380901 -13699,16913,30882,30881,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.115670873506772,8.103842097628288,0,7,2,18.08192382242972,0,3,2,2019,7,0,42,43,1,0,0,9.279393077121554,9.279393077121554,0,0,0,0,0,0,0,0,0,0,52.48,54.33,54.69,57.47,8.333333333333334,1,1,0,0,7,2,5,1,1277.5,367797.8431939741,45343.30280681965,359003.9917877814,35843.45868879573,3042.342622380901 -13700,16914,30883,30884,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.586066526400174,7.859403296627323,8,1,52.35563814805984,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.656117956446573,7.773166416995945,54.38,41.24,59.56,40.31,0,2,3,0,0,4,9,3,1,536.5,1427596.310334538,730915.1982691702,650667.9822080726,-7691.516734874353,1334.168656239374 -13700,16914,30884,30883,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.545312340035931,7.22485037707789,0,39,-1,24.21210871934258,0,2,2,2019,11,0,33,33,1,0,0,5.601520581470599,5.601520581470599,0,0,0,0,0,0,0,0,0,0,59.56,40.31,54.38,41.24,1.666666666666667,2,3,0,0,11,9,3,1,536.5,1427596.310334538,730915.1982691702,650667.9822080726,-7691.516734874353,1334.168656239374 -13701,16915,30885,30886,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.915585558915978,7.606283921431439,48,2,76.14323959908555,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.859045425073775,54.79,55.86,42.36,56.12,8.333333333333334,1,1,0,0,0,5,3,1,595.5,611008.3891671279,314222.4520287741,109214.0809936392,0,2428.451971649753 -13701,16915,30886,30885,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.896813502113368,4.837850508386959,48,-2,140.4037956404501,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.866360230932666,4.786408083990682,42.36,56.12,54.79,55.86,6.666666666666667,1,1,0,0,8,5,3,1,595.5,611008.3891671279,314222.4520287741,109214.0809936392,0,2428.451971649753 -13702,16916,30887,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,0,0,0,0,0,-899.3582293834505,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.73,48.21,-9,-9,10,4,2,1,0,0,6,1,0,635,-102661.025548489,101817.1320845,0,0,829.8149829579269 -13703,16917,30888,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1073.4039417414,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,14.5,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1288,159669.220882107,0,133640.764145888,0,727.4888305008993 -13703,16918,30889,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-952.6870366485168,0,-9,-9,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.45,29.24,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,580,118331.8409205822,0,0,0,743.9490273992667 -13704,16919,30890,30891,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,7.357326898937492,7.540471459806041,0,9,-1,21.22830313984761,0,2,2,2019,7,1,32,32,1,1,0,4.656141740375791,4.656141740375791,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,4,1,4,0,859.6666666666666,343643.3025658829,163194.4216105613,104675.3963237699,19934.16273757184,2681.498452542732 -13704,16919,30891,30890,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.523255729696643,8.424962572487621,0,9,1,17.8990411647174,0,2,1,2019,6,0,52,56,1,0,0,10.10612344116314,10.10612344116314,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.14,60.45,6.666666666666667,1,1,0,0,6,1,4,0,859.6666666666666,343643.3025658829,163194.4216105613,104675.3963237699,19934.16273757184,2681.498452542732 -13704,16919,30892,-9,30890,30891,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-846.7223031668676,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,4,0,859.6666666666666,343643.3025658829,163194.4216105613,104675.3963237699,19934.16273757184,2681.498452542732 -13705,16920,30893,30894,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.338470166433019,8.289339320318215,51,2,-185.2842794094789,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.89026381132881,8.240930544023662,52.91,55.33,58.5,44.67,8.333333333333334,1,1,0,0,0,12,4,1,423,2167184.512771252,1082497.545745651,293122.0880844237,0,5275.535666646348 -13705,16920,30894,30893,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.449439575593411,8.150081519192009,51,-2,-79.55905772066095,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.407596779601533,8.072583319192137,58.5,44.67,52.91,55.33,8.333333333333334,1,1,0,0,0,12,4,1,423,2167184.512771252,1082497.545745651,293122.0880844237,0,5275.535666646348 -13706,16921,30895,30896,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,5.94111537907885,5.992608758826742,38,-2,-35.07609193900607,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,5.803784169082723,5.767319092521813,49.02,56.38,50,47,8.333333333333334,1,1,0,0,0,1,2,0,254,331048.6729226855,123723.1727113914,101434.0880159147,0,1824.539561247619 -13706,16921,30896,30895,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,38,2,71.1526952751901,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,49.02,56.38,7,1,1,0,0,0,1,2,0,254,331048.6729226855,123723.1727113914,101434.0880159147,0,1824.539561247619 -13707,16922,30897,30898,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-39.68626569009533,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.86,38.87,60.29,52.11,6.666666666666667,1,1,0,1,0,11,2,1,751.5,240180.0971970928,176758.2306931508,181238.84786808,0,1149.459976355794 -13707,16922,30898,30897,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.32054173629066,5.81092480619729,6,3,42.26243871236854,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,14.31389453576059,0,0,1,1,0,0,6.044542770268567,60.29,52.11,61.86,38.87,8.333333333333334,1,1,0,1,0,11,2,1,751.5,240180.0971970928,176758.2306931508,181238.84786808,0,1149.459976355794 -13708,16923,30899,30903,-9,-9,1,1,27,1,3,0,2,2,-9,0,4,7.939830064412437,7.96056001620021,0,2,-5,-22.23081170256566,0,-9,-9,2019,11,0,52,37,1,0,0,5.569245087092209,5.569245087092209,0,0,0,0,0,1,1,0,0,0,35.38,63.46,54.77,55.87,8.333333333333334,4,2,0,0,2,6,2,0,688.2,-68146.26112298264,0,0,0,2292.739901636332 -13708,16923,30900,-9,30903,30899,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.911927206177,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,688.2,-68146.26112298264,0,0,0,2292.739901636332 -13708,16923,30901,-9,30903,30899,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.6790869793077,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,688.2,-68146.26112298264,0,0,0,2292.739901636332 -13708,16923,30902,-9,30903,30899,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-912.3820976756826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,6,2,0,688.2,-68146.26112298264,0,0,0,2292.739901636332 -13708,16923,30903,30899,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,0,0,0,2,5,105.6210373114822,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.594504792644408,0,54.77,55.87,35.38,63.46,8.333333333333334,1,1,0,0,7,6,2,0,688.2,-68146.26112298264,0,0,0,2292.739901636332 -13709,16924,30904,30905,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.539133749665362,8.592586145365271,0,8,0,113.5651550298753,0,2,-9,2019,10,0,40,40,1,0,0,15.35270040343374,15.35270040343374,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,11,5,4,1,808.5,754357.0287870031,397771.9072151248,292846.2241513137,23787.86796326768,3160.423619763983 -13709,16924,30905,30904,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.860805585840174,7.841949339044635,0,8,0,42.12457783462183,0,2,2,2019,11,0,44,38,1,0,0,5.56929550786149,5.56929550786149,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,5,1,1,0,1,2,5,4,1,808.5,754357.0287870031,397771.9072151248,292846.2241513137,23787.86796326768,3160.423619763983 -13710,16925,30906,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.898922222812881,7.833154225617634,0,0,0,-1052.33119212816,0,-9,-9,2019,22,10,38,33,1,10,0,8.519322681610427,8.519322681610427,0,0,0,0,2,1,1,0,0,0,23.18,45.35,-9,-9,1.666666666666667,1,1,0,0,7,6,3,1,8195,178836.2156652657,76140.93485860131,0,0,1094.205449706819 -13711,16926,30907,30908,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.715447227740614,7.515210611897984,4.925295494656444,34,-1,-93.83380482246281,0,3,3,2019,11,0,40,40,1,0,0,5.58332127915791,5.58332127915791,0,0,0,0,0,1,1,0,8.639662042231551,4.926986419474501,59.24,37.5,45.88,39.92,8.333333333333334,1,1,0,0,8,7,3,1,539.5,2084348.563648521,1075286.189389272,478351.0808948122,0,9957.688063430449 -13711,16926,30908,30907,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,7.194089192621688,7.474267353746821,5.267558420164351,34,1,103.9578358670442,0,2,2,2019,19,7,15,15,1,7,0,10.5883049455969,10.5883049455969,0,0,0,0,0,1,1,0,9.840096479912606,5.313203823368114,45.88,39.92,59.24,37.5,3.333333333333333,1,1,0,0,8,7,3,1,539.5,2084348.563648521,1075286.189389272,478351.0808948122,0,9957.688063430449 -13712,16927,30909,30910,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.43003666854486,8.413584839358645,0,24,0,82.03774265508113,0,3,3,2019,9,1,30,28,1,1,0,21.87112345685402,21.87112345685402,0,0,0,0,0,0,0,0,2.564954577065601,0,59.04,48.6,24.44,64.23,8.333333333333334,1,1,0,0,10,9,5,1,710.3333333333334,41819.22693128036,27189.95545599867,0,0,7218.739413675989 -13712,16927,30910,30909,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,9.800613666443589,10.16804350869022,0,24,0,-43.26330818950287,0,2,2,2019,20,8,50,53,1,8,0,36.90785924668096,36.90785924668096,0,0,0,0,0,0,0,0,3.511453541301795,0,24.44,64.23,59.04,48.6,6.666666666666667,1,1,0,0,8,9,5,1,710.3333333333334,41819.22693128036,27189.95545599867,0,0,7218.739413675989 -13712,16927,30911,-9,30909,30910,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-893.2079724877553,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.629442973136516,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,710.3333333333334,41819.22693128036,27189.95545599867,0,0,7218.739413675989 -13712,16928,30912,-9,30909,30910,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-949.7720547255766,1,2,2,2019,9,0,0,8,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,286,16546.16233270744,0,0,0,0 -13713,16929,30913,30915,-9,-9,1,1,43,0,1,0,2,2,-9,0,5,9.089263185815867,8.647249117535974,0,7,3,-156.6343964837488,0,-9,-9,2019,8,0,52,80,1,0,0,19.98876143601175,19.98876143601175,0,0,0,0,0,1,1,0,0,0,51.73,58.82,60.12,54.8,8.333333333333334,1,1,0,0,5,13,4,1,477.25,1979021.364401488,1574696.950247177,294039.713577359,0,4025.262802287042 -13713,16929,30914,-9,30915,30913,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.597946926866,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,477.25,1979021.364401488,1574696.950247177,294039.713577359,0,4025.262802287042 -13713,16929,30915,30913,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.632690791061395,7.362890746974544,0,21,-3,-54.77608058185621,0,3,3,2019,6,0,24,24,1,0,0,8.850365415907754,8.850365415907754,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.73,58.82,10,1,1,0,0,7,13,4,1,477.25,1979021.364401488,1574696.950247177,294039.713577359,0,4025.262802287042 -13713,16929,30916,-9,30915,30913,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1018.864316336989,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,13,4,1,477.25,1979021.364401488,1574696.950247177,294039.713577359,0,4025.262802287042 -13714,16930,30917,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,7.435656847643823,7.470693264000945,0,0,0,-1083.672292215399,0,-9,-9,2019,23,9,20,16,1,9,0,11.79715858405462,11.79715858405462,0,0,0,0,0,1,1,0,0,0,46.57,54.66,-9,-9,6.666666666666667,1,1,0,1,5,8,3,0,378,-36229.28833630712,0,0,0,1350.887272767738 -13715,16931,30918,30919,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.843305870706532,8.257730617324654,0,7,10,-43.88261646572039,0,2,2,2019,13,1,35,50,1,1,0,12.85418672048394,12.85418672048394,0,0,0,0,0,0,0,0,0,0,54.15,50.83,58.48,35.17,8.333333333333334,1,1,0,0,8,8,5,0,1919,1072856.667504711,692907.891798455,586234.4174150655,48230.32934231596,4216.080450968846 -13715,16931,30919,30918,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.588122553894593,8.935237150509419,0,7,-10,15.48228046501211,0,2,2,2019,7,0,35,38,1,0,0,16.23200654813159,16.23200654813159,0,0,0,0,0,0,0,0,0,0,58.48,35.17,54.15,50.83,8.333333333333334,1,1,0,0,8,8,5,0,1919,1072856.667504711,692907.891798455,586234.4174150655,48230.32934231596,4216.080450968846 -13715,16932,30920,-9,30918,30919,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-861.6886079559815,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49.59,58.37,-9,-9,6.666666666666667,1,1,0,0,1,8,1,0,825,95456.55643604511,0,0,0,620.9651384856286 -13716,16933,30921,30922,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,41,5,98.30960384346756,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.215962988710862,0,54.72,49.21,62.42,45.64,8.333333333333334,1,1,0,0,0,10,4,1,269.5,839647.4938470817,562276.0857831134,224949.9937353994,0,4652.025053025771 -13716,16933,30922,30921,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.209869434015829,8.420794620263706,6.930292152827736,9,-5,162.1933247580682,0,3,3,2019,6,0,16,35,1,0,0,21.89927358119548,21.89927358119548,0,0,0,0,0,1,1,0,2.499120875225437,6.621480877526342,62.42,45.64,54.72,49.21,8.333333333333334,1,1,0,0,11,10,4,1,269.5,839647.4938470817,562276.0857831134,224949.9937353994,0,4652.025053025771 -13717,16934,30923,-9,30924,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.6452849788137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,898,48193.9722552438,40997.65482113836,0,0,2804.094234862681 -13717,16934,30924,-9,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,7.693678943483758,7.604717715600757,0,0,0,-900.8365620987414,-9,-9,-9,2019,8,0,35,0,1,0,0,6.071403825956882,6.071403825956882,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,2,3,0,898,48193.9722552438,40997.65482113836,0,0,2804.094234862681 -13718,16935,30925,30926,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,52,-1,-61.08795472231026,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,48.04,43.96,37.71,36.96,8.333333333333334,1,1,0,0,7,11,2,1,3437,258011.2989647003,294732.212932023,0,0,1506.059657437501 -13718,16935,30926,30925,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.567429177691484,6.731484879725079,52,1,-53.36744955540669,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.104953068741239,37.71,36.96,48.04,43.96,3.333333333333333,1,1,0,0,0,11,2,1,3437,258011.2989647003,294732.212932023,0,0,1506.059657437501 -13719,16936,30927,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.512682317590748,8.430774763276485,0,0,0,-1037.76210632467,-9,2,2,2019,14,2,37,0,1,2,0,11.02084304160169,11.02084304160169,0,0,0,0,0,0,0,0,0,0,37.69,58.7,-9,-9,3.333333333333333,1,1,0,0,11,13,4,0,301,105435.8100413488,-35324.43556564724,211414.5458598278,0,1959.524800375024 -13720,16937,30928,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.120509905151811,7.234264505261209,0,0,-1051.99603388632,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1376394018301,7.183097774364088,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,576,917557.8553720977,198018.8140574831,685356.7032781602,0,1237.460765675268 -13721,16938,30929,-9,-9,-9,1,0,26,1,1,0,3,3,-9,0,3,0,0,0,0,0,-958.2677849818698,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,1,0,3,9,1,0,173,98997.99875145731,0,0,0,1045.486823663642 -13721,16938,30930,-9,30929,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.5898045975487,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,1,0,173,98997.99875145731,0,0,0,1045.486823663642 -13722,16939,30931,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.73642768209133,9.631900144309173,0,0,0,-977.3282716008669,0,2,3,2019,4,0,60,60,1,0,0,26.49870674399373,26.49870674399373,0,0,0,0,0,0,0,0,2.516622587094704,0,54.69,57.47,-9,-9,10,1,1,0,0,9,5,5,1,574,7315864.615013814,6992422.320019254,231241.2049753582,0,5575.863230616809 -13723,16940,30932,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.706158856479625,8.760971059256221,0,0,0,-1022.139641753159,0,3,2,2019,12,1,43,43,1,1,0,13.37526043463936,13.37526043463936,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1618,102248.2228020958,161212.1974432975,170238.13444072,99111.39791736148,1746.899801533966 -13724,16941,30933,30934,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.734652622389153,7.722903356564767,50,-3,-2.504681673468073,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.644361349159606,7.613863376362585,48.77,60.16,54.1,59.11,10,4,5,0,0,0,8,3,1,605,1348173.907978901,413144.6228832109,501448.5038102171,0,2742.420806654251 -13724,16941,30934,30933,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.623839591885175,7.254450652983428,50,3,46.22391507577663,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.421189043785597,7.384581776261036,54.1,59.11,48.77,60.16,10,4,5,0,0,0,8,3,1,605,1348173.907978901,413144.6228832109,501448.5038102171,0,2742.420806654251 -13724,16942,30935,-9,30933,30934,1,0,38,0,0,0,1,1,-9,0,4,7.727961831158972,7.388993634002055,0,0,0,-1084.892116557973,-9,1,1,2019,16,4,23,0,1,4,0,11.08270263468953,11.08270263468953,0,0,0,0,0,1,1,0,0,0,25.5,64.03,-9,-9,3.333333333333333,4,5,0,1,10,8,3,1,711,-177924.6216707393,0,0,0,719.2535483976432 -13725,16943,30936,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,6.827974611964937,6.745221996420868,0,0,-1048.132530292545,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.725482986844088,6.870309717268626,58.32,50.22,-9,-9,10,1,1,0,0,0,9,2,1,520,406468.4618566894,112362.3280282216,186634.4504182787,0,851.5265860599624 -13726,16944,30937,30938,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.66018894780895,7.720140992244176,0,6,8,76.60996375614108,0,1,2,2019,7,0,40,35,1,0,0,6.851582845221382,6.851582845221382,0,0,0,0,2,0,0,0,0,0,51.77,58.57,51.14,60.45,6.666666666666667,1,1,0,0,8,4,5,1,202,1194140.763475942,882674.4061937148,220666.9435638828,81852.40923841755,5327.516486116847 -13726,16944,30938,30937,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,9.108303630367574,8.997089255278475,0,6,-8,89.59277768814157,0,-9,-9,2019,12,0,47,45,1,0,0,16.85017913352487,16.85017913352487,0,0,0,0,0,0,0,0,7.941360333576132,0,51.14,60.45,51.77,58.57,6.666666666666667,1,1,0,0,4,4,5,1,202,1194140.763475942,882674.4061937148,220666.9435638828,81852.40923841755,5327.516486116847 -13727,16945,30939,30940,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.951567932296829,8.749777913509019,0,6,1,-31.42798441818217,-9,-9,-9,2019,10,0,55,0,1,1,0,16.06485303950265,16.06485303950265,0,0,0,0,0,0,0,0,0,0,50,57,51.77,58.57,7,1,1,0,0,1,9,5,1,465.5,509769.687340071,57135.92349391751,438955.0399131805,114154.6878899766,4285.349707830375 -13727,16945,30940,30939,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.091016134573044,7.978551629689501,0,6,-1,7.028974118504975,0,2,2,2019,10,1,38,37,1,1,0,9.508882155556714,9.508882155556714,0,0,0,0,0,0,0,0,.2448286215598555,0,51.77,58.57,50,57,8.333333333333334,1,1,0,0,7,9,5,1,465.5,509769.687340071,57135.92349391751,438955.0399131805,114154.6878899766,4285.349707830375 -13728,16946,30941,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.654111256758533,8.564043420851732,0,0,0,-956.1142169670239,0,2,3,2019,11,0,30,29,1,0,0,16.29745439335927,16.29745439335927,0,0,0,0,0,0,0,0,0,0,63.18,27.41,-9,-9,6.666666666666667,1,1,0,0,8,10,5,1,340,430094.3481071068,617467.9455802783,32090.26296686907,124011.7569233221,1891.566118175253 -13729,16947,30942,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.224107042219035,5.393753418664135,0,0,-1059.564878753961,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.368403145951467,42.25,48.11,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,31,205524.273954515,-20665.16053430451,0,0,809.9696011879232 -13730,16948,30943,-9,30945,30944,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.362091346643,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,1594.666666666667,-47373.20655239675,0,0,0,1106.811710887247 -13730,16948,30944,30945,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,0,0,0,3,5,-9.326527982648663,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.56,54.55,47,57,10,1,1,1,0,1,8,2,0,1594.666666666667,-47373.20655239675,0,0,0,1106.811710887247 -13730,16948,30945,30944,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.161063104974166,7.173430652856152,0,3,-5,102.4456767496166,0,-9,-9,2019,11,0,20,0,1,2,0,7.324267842654925,7.324267842654925,0,0,0,0,0,1,1,0,0,0,47,57,57.56,54.55,7,1,1,0,0,1,8,2,0,1594.666666666667,-47373.20655239675,0,0,0,1106.811710887247 -13731,16949,30946,30947,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,7.798076733203279,7.872657068083526,0,5,-11,38.68737878012318,0,3,2,2019,10,0,37,36,1,0,0,6.20816494921754,6.20816494921754,0,0,0,0,14.5,1,1,0,0,0,48.39,48.33,53.23,42.9,8.333333333333334,1,1,0,0,12,7,3,1,1870,457351.2827189421,-13661.62179548434,378845.66826015,0,2252.988917891251 -13731,16949,30947,30946,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,6.997246363099829,6.93440805715769,0,5,11,-64.75553533434295,0,2,3,2019,11,1,21,21,1,1,0,5.834273059398321,5.834273059398321,0,0,0,0,0,1,1,0,0,0,53.23,42.9,48.39,48.33,8.333333333333334,1,1,0,0,11,7,3,1,1870,457351.2827189421,-13661.62179548434,378845.66826015,0,2252.988917891251 -13732,16950,30948,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.446308312980301,8.144436795684079,0,0,-1079.813392771079,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.999098925086306,8.007610014726543,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1696,509946.462651295,558680.5260355759,0,0,1125.642379993835 -13733,16951,30949,30950,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.05352068769243,8.016602475315482,0,2,3,-37.39284755626745,0,2,3,2019,10,1,55,55,1,1,0,8.419615171540624,8.419615171540624,0,0,0,0,0,0,0,0,0,0,54.2,57.49,28.16,31.9,8.333333333333334,1,1,0,0,8,9,4,0,628,88427.83223776967,0,0,0,2441.775063345847 -13733,16951,30950,30949,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.623061223017516,7.452011424643898,0,2,-3,52.05376748815732,0,-9,-9,2019,15,2,32,30,1,2,0,7.742861682600085,7.742861682600085,0,0,0,0,0,0,0,0,0,0,28.16,31.9,54.2,57.49,5,1,1,0,0,1,9,4,0,628,88427.83223776967,0,0,0,2441.775063345847 -13734,16952,30951,30952,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.559047498091116,6.046574833594868,6,-1,-50.22258176884377,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.265336257649661,6.629974256413153,53.61,59.13,62.57,40.11,10,1,1,0,0,0,4,3,1,532.5,691122.9119266288,416688.6509487579,267743.2387143596,0,2522.981556764434 -13734,16952,30952,30951,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.937551604532049,7.879338060795041,6,1,87.78922487479146,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.15833779184555,7.428350978487133,62.57,40.11,53.61,59.13,0,1,1,0,0,0,4,3,1,532.5,691122.9119266288,416688.6509487579,267743.2387143596,0,2522.981556764434 -13735,16953,30953,-9,30954,30955,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.746342451102,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,4,0,1043.333333333333,364091.3112134865,355442.0083725529,75083.21830519644,6941.457020687137,2778.672799951846 -13735,16953,30954,30955,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.252508311341497,8.168090162330568,0,6,-6,-74.60389903547211,-9,2,2,2019,11,0,35,0,1,2,0,11.39678458116257,11.39678458116257,0,0,0,0,0,1,1,0,.8905804046258663,0,48,57,56.35,51.16,7,1,1,0,0,5,4,4,0,1043.333333333333,364091.3112134865,355442.0083725529,75083.21830519644,6941.457020687137,2778.672799951846 -13735,16953,30955,30954,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.009554167938562,8.039506854063148,0,6,6,-115.398672639554,-9,3,-9,2019,10,0,35,0,1,0,0,8.423985170375385,8.423985170375385,0,0,0,0,0,1,1,0,0,0,56.35,51.16,48,57,6.666666666666667,4,2,0,0,7,4,4,0,1043.333333333333,364091.3112134865,355442.0083725529,75083.21830519644,6941.457020687137,2778.672799951846 -13736,16954,30956,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.166193917872,0,3,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,42.75,34.71,-9,-9,5,1,1,1,1,2,4,1,0,1138,-107175.3506408712,0,0,0,1093.346024079477 -13736,16955,30957,-9,30956,-9,1,1,26,0,0,0,3,3,-9,0,4,0,0,0,0,0,-857.642407185669,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,0,4,1,0,1590,-52503.56225118075,0,0,0,579.4908567843779 -13736,16955,30958,-9,-9,30957,1,0,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-979.1680373530285,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,1,0,1590,-52503.56225118075,0,0,0,579.4908567843779 -13736,16955,30959,-9,-9,30957,1,1,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1068.541755038758,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1590,-52503.56225118075,0,0,0,579.4908567843779 -13736,16955,30960,-9,-9,30957,1,0,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1009.385716497948,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,1,0,1590,-52503.56225118075,0,0,0,579.4908567843779 -13737,16956,30961,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.576938637439192,7.26257730811697,0,0,-990.5158408795295,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.776989921147083,7.43018300751941,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,225,514627.3208330496,212376.8426372917,282958.6222490561,0,1188.414086807964 -13738,16957,30962,30963,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,46,-5,-83.06610073959399,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,66.09999999999999,42.66,58.72,51.29,10,1,1,0,0,4,7,2,1,880,710305.8806331067,145794.6982303372,214097.2535941239,0,2223.684137259027 -13738,16957,30963,30962,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.183736639971921,7.158957821983821,46,5,-209.0107769501641,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.706157256826973,7.356554661553895,58.72,51.29,66.09999999999999,42.66,8.333333333333334,1,1,0,0,0,7,2,1,880,710305.8806331067,145794.6982303372,214097.2535941239,0,2223.684137259027 -13739,16958,30964,30965,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.793144373421617,8.671585000776496,0,33,1,-112.1006053404635,0,3,3,2019,13,1,58,50,1,1,0,12.03571999785603,12.03571999785603,0,0,0,0,0,0,0,0,0,0,45.35,50.81,50,54,5,1,1,0,0,12,6,4,1,772.5,654955.5360849332,564175.1742570448,199710.3414645923,72934.84942932455,2505.318979599202 -13739,16958,30965,30964,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,3.124724990833162,3.344931203283071,0,33,-1,101.8113370678645,0,3,3,2019,9,0,37,41,1,0,0,.0876494514376645,.0876494514376645,0,0,0,0,2,0,0,0,0,0,50,54,45.35,50.81,10,1,1,0,0,12,6,4,1,772.5,654955.5360849332,564175.1742570448,199710.3414645923,72934.84942932455,2505.318979599202 -13740,16959,30966,-9,30968,30967,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.8011134724896,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,457,699191.1553866258,232494.294008968,371272.3631551813,141242.1517353448,4801.905761116474 -13740,16959,30967,30968,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,9.252896842705717,9.3100037895664,0,15,0,116.8825087811059,0,-9,-9,2019,7,0,60,50,1,0,0,16.01980932505957,16.01980932505957,0,0,0,0,0,0,0,0,2.590826933661406,0,45.84,50.44,57.06,57.76,5,1,1,0,0,9,2,5,1,457,699191.1553866258,232494.294008968,371272.3631551813,141242.1517353448,4801.905761116474 -13740,16959,30968,30967,-9,-9,1,0,43,0,3,0,2,2,-9,0,5,8.204173266368162,7.973438283742889,0,15,0,79.8839223916343,0,2,1,2019,7,0,20,0,1,0,0,15.02454928072637,15.02454928072637,0,0,0,0,0,0,0,0,6.571664590875088,0,57.06,57.76,45.84,50.44,8.333333333333334,1,1,0,0,6,2,5,1,457,699191.1553866258,232494.294008968,371272.3631551813,141242.1517353448,4801.905761116474 -13740,16959,30969,-9,30968,30967,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.0099349945255,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,457,699191.1553866258,232494.294008968,371272.3631551813,141242.1517353448,4801.905761116474 -13741,16960,30970,30971,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.565878313904728,8.486455092689612,0,9,-2,1.981589759546811,0,-9,-9,2019,12,0,35,40,1,0,0,24.75716995782067,24.75716995782067,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,8,5,1,454.5,2606626.169047477,1281671.626268146,992986.9154199495,0,4851.965973814065 -13741,16960,30971,30970,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.896489012778659,8.999245660211187,6.565190718902702,9,2,49.82679057189581,0,-9,-9,2019,6,0,50,100,1,0,0,18.46523821522936,18.46523821522936,0,0,0,0,0,0,0,0,6.863231507937997,7.026735743706402,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,12,8,5,1,454.5,2606626.169047477,1281671.626268146,992986.9154199495,0,4851.965973814065 -13742,16961,30972,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.146465488921841,7.781792440683637,0,0,-993.6317854619845,0,-9,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.087152163119891,8.044602141462832,52.24,43.31,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,411,646967.6034937166,153864.8545404782,290253.2741162067,0,2213.995601906689 -13743,16962,30973,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,6.897780941586786,6.968145447928813,0,0,-979.4809005923563,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.068047265949294,60.42,45.07,-9,-9,10,1,1,0,0,0,13,2,1,675,399831.0250711112,63712.29784959988,198192.5388080628,0,1227.55036328497 -13744,16963,30974,30975,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,8.094790515935673,7.946935390199025,0,4,10,30.86345706710242,0,3,3,2019,9,0,39,39,1,0,0,7.652775128065016,7.652775128065016,0,0,0,0,0,1,1,0,0,0,52.92,55.55,46.92,54.3,0,1,1,0,0,9,12,4,0,363.6666666666667,5324.912646702379,-284.1416759752368,132261.384809119,106160.1922760996,2407.685397528292 -13744,16963,30975,30974,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.735170134300873,8.427942166892636,0,4,-10,65.40310648289467,0,3,2,2019,12,0,42,42,1,0,0,7.202401791418584,7.202401791418584,0,0,0,0,0,1,1,0,0,0,46.92,54.3,52.92,55.55,5,1,1,0,1,11,12,4,0,363.6666666666667,5324.912646702379,-284.1416759752368,132261.384809119,106160.1922760996,2407.685397528292 -13744,16963,30976,-9,30975,30974,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.398995956808,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,363.6666666666667,5324.912646702379,-284.1416759752368,132261.384809119,106160.1922760996,2407.685397528292 -13745,16964,30977,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.22209868411889,7.910180832278156,0,0,0,-1050.774729644261,0,2,2,2019,10,0,50,46,1,0,0,6.178769847218256,6.178769847218256,0,0,0,0,0,0,0,0,2.650747898063631,0,42.94,55.94,-9,-9,5,1,1,0,0,11,7,4,0,303,74236.02479737587,196995.4198691946,-11564.91017577155,3524.570651626349,1744.851034551228 -13746,16965,30978,30979,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.675671736443203,7.918991554583503,0,11,-1,-128.4771805567364,0,2,2,2019,10,0,40,40,1,0,0,6.154647542070461,6.154647542070461,0,0,0,0,0,0,0,0,.6383992412223577,0,54.2,57.49,26.61,59.47,8.333333333333334,1,1,0,0,7,2,5,1,814,3270238.311115155,177732.2497108563,731516.6689963946,0,3829.021287696401 -13746,16965,30979,30978,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.791580698333346,8.909710004912597,0,8,1,-93.64511883180077,0,2,2,2019,19,6,42,41,1,6,0,18.23923020885792,18.23923020885792,0,0,0,0,2,0,0,0,7.82181353437889,0,26.61,59.47,54.2,57.49,6.666666666666667,1,1,0,0,10,2,5,1,814,3270238.311115155,177732.2497108563,731516.6689963946,0,3829.021287696401 -13747,16966,30980,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,8.444235543379692,8.474549839196067,0,0,0,-939.1449786496328,0,-9,-9,2019,11,0,82,84,1,0,0,7.427928344151043,7.427928344151043,0,0,0,0,0,0,0,0,.6771326277090828,0,47.95,42.13,-9,-9,6.666666666666667,1,1,0,0,10,12,5,0,642,112956.6521069877,44656.14687411128,91489.29435567622,76718.22255064322,2348.025189109058 -13748,16967,30981,30982,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,62,-5,0,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.12458169499234,0,58.3,52.91,54,45,8.333333333333334,1,1,0,0,0,9,2,1,1197.5,192992.1039846041,40373.04207250683,203910.9997316461,0,901.0814542205511 -13748,16967,30982,30981,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45,58.3,52.91,8,1,1,0,0,0,9,2,1,1197.5,192992.1039846041,40373.04207250683,203910.9997316461,0,901.0814542205511 -13749,16968,30983,30985,-9,-9,1,1,28,2,4,0,3,3,-9,0,4,7.24747496459842,7.522493646595838,0,6,-3,-32.58846263772065,-9,-9,-9,2019,10,0,30,0,1,1,0,5.718029222133802,5.718029222133802,0,0,0,0,0,1,1,0,0,0,49,58,48,57,7,2,3,0,0,1,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13749,16968,30984,-9,30985,30983,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1160.18115958822,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13749,16968,30985,30983,-9,-9,1,0,31,2,4,0,2,2,-9,1,4,7.883364084573752,8.431122436489527,0,6,3,206.8672380395977,0,3,3,2019,11,0,50,50,1,2,0,7.666407444657596,7.666407444657596,0,0,0,0,14.5,1,1,0,0,0,48,57,49,58,7,2,3,0,0,4,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13749,16968,30986,-9,30985,30983,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-947.7125702500344,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13749,16968,30987,-9,30985,30983,1,1,12,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.390641770801,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13749,16968,30988,-9,30985,30983,1,0,10,2,4,1,3,0,-9,0,4,0,0,0,0,0,-993.5333519726331,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,9,3,0,617.3333333333334,44492.32737595009,0,0,0,3747.942988308319 -13750,16969,30989,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1067.72273560349,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,6.524748628236959,21.07445060873764,57.51764541259587,0,1,0,1,0,0,48.6,22.54,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,529.5,-27613.49108997813,0,0,0,3103.759793343687 -13750,16969,30990,-9,-9,30989,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1013.93384671867,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,1,0,529.5,-27613.49108997813,0,0,0,3103.759793343687 -13751,16970,30991,-9,30992,30994,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-830.9786272132517,-9,1,1,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,10,1,1,0,0,0,1,4,1,720.25,1093777.428351038,443343.7622607839,560482.5486583207,-196.580537256395,4216.355094206165 -13751,16970,30992,30994,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.734036473084918,8.298406498116766,0,6,-2,84.62902825907962,0,2,2,2019,13,1,35,33,1,1,0,18.64013704511094,18.64013704511094,0,0,0,0,0,1,1,0,0,0,45.91,59.89,60.12,54.8,8.333333333333334,1,1,0,0,7,1,4,1,720.25,1093777.428351038,443343.7622607839,560482.5486583207,-196.580537256395,4216.355094206165 -13751,16970,30993,-9,30992,30994,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.677756062035,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,720.25,1093777.428351038,443343.7622607839,560482.5486583207,-196.580537256395,4216.355094206165 -13751,16970,30994,30992,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.549009570392828,8.818430243840236,0,6,2,88.94087953012189,0,2,1,2019,8,0,47,50,1,0,0,16.78989618351905,16.78989618351905,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.91,59.89,1.666666666666667,1,1,0,0,7,1,4,1,720.25,1093777.428351038,443343.7622607839,560482.5486583207,-196.580537256395,4216.355094206165 -13752,16971,30995,30996,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.69107411519825,8.312448885846626,6,5,2.402473221162503,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.834343703590316,7.914983161397394,54.85,34.63,52,46,6.666666666666667,1,1,0,0,0,5,3,1,860.5,338339.0311320238,73363.34154371146,261693.5294486257,0,2647.939009239272 -13752,16971,30996,30995,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,6,-5,-119.1399315559845,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,54.85,34.63,8,1,1,0,0,0,5,3,1,860.5,338339.0311320238,73363.34154371146,261693.5294486257,0,2647.939009239272 -13753,16972,30997,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.416706840168716,8.132239834080206,0,0,-1064.440556491711,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.933954113510982,8.414456409239991,57.5,37.06,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,684,775645.9071580244,312108.4657619202,211973.5482449206,0,3560.205613629078 -13754,16973,30998,-9,30999,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.4232008745682,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,932.3333333333334,236296.0088540371,57292.48034778336,425554.147811472,261552.5272622123,2974.608409612343 -13754,16973,30999,31000,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.802070549147943,7.846004736223594,0,1,-3,.8031493521356963,-9,-9,-9,2019,19,7,30,0,1,7,0,8.620814936127275,8.620814936127275,0,0,0,0,0,1,1,0,1.510008034739676,0,40.24,53.28,39.42,57.44,8.333333333333334,1,1,0,0,3,7,4,0,932.3333333333334,236296.0088540371,57292.48034778336,425554.147811472,261552.5272622123,2974.608409612343 -13754,16973,31000,30999,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.068115581806451,8.315696021814048,0,1,3,-51.86744980818829,0,2,2,2019,9,0,38,37,1,0,0,12.49767772221336,12.49767772221336,0,0,0,0,0,1,1,0,0,0,39.42,57.44,40.24,53.28,6.666666666666667,1,1,0,0,9,7,4,0,932.3333333333334,236296.0088540371,57292.48034778336,425554.147811472,261552.5272622123,2974.608409612343 -13755,16974,31001,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.517280686043776,8.514910449047914,0,0,0,-990.1960344411384,0,2,-9,2019,12,0,59,52,1,0,0,10.938880241132,10.938880241132,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,400,210461.7793428353,67009.83212523758,114374.745589606,45352.14895546325,1799.685537865558 -13756,16975,31002,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.111668048828331,7.110023066324157,0,0,0,-1106.614275005574,0,3,3,2019,20,8,19,40,1,8,0,7.245473746108549,7.245473746108549,0,0,0,0,0,1,1,0,0,0,40.19,34.33,-9,-9,3.333333333333333,1,1,0,0,11,6,3,0,396,425510.7503287211,283881.1210113738,141728.4008569387,0,194.1266887536981 -13757,16976,31003,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.487617995251615,7.679075019310603,0,0,-1027.207930524477,-9,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.734414633705701,7.376041716778321,41.52,38.85,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,273,723705.965051104,148255.7426077989,391127.3625521875,0,1329.467672751994 -13758,16977,31004,31005,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,9.289075736754015,8.800095380342388,40,3,.4204131223168263,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.515592450343465,8.957541378416575,60.42,54.81,54.2,57.49,8.333333333333334,1,1,0,0,9,9,5,1,244,13353860.56699821,2060176.399515818,942130.6794454088,0,8393.629846202672 -13758,16977,31005,31004,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.546513085087533,8.553116162591904,40,-3,-82.57484659561663,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.428499230326746,8.591269464517801,54.2,57.49,60.42,54.81,8.333333333333334,1,1,0,0,5,9,5,1,244,13353860.56699821,2060176.399515818,942130.6794454088,0,8393.629846202672 -13759,16978,31006,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.820901062543795,8.774171670563433,0,0,0,-1083.280079638028,0,1,1,2019,7,0,42,42,1,0,0,16.89897050978603,16.89897050978603,0,0,0,0,0,0,0,0,3.274239770272132,0,35.22,56.72,-9,-9,5,1,1,0,0,10,4,5,1,579,72006.50472325378,16692.90043904177,179265.7995287844,25542.6897524773,2531.973261783126 -13760,16979,31007,31008,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.439485973589806,7.584316098908706,34,13,58.34141687240606,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.236032881449209,7.363611769253587,53.14,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1613.5,947167.6215055108,551605.8507628452,448102.695512863,0,2957.876347273816 -13760,16979,31008,31007,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.795552535199578,6.992019188535013,34,-13,111.1297378921701,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.633078106213055,57.16,56.15,53.14,51.28,8.333333333333334,1,1,0,0,6,10,3,1,1613.5,947167.6215055108,551605.8507628452,448102.695512863,0,2957.876347273816 -13761,16980,31009,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.573674685226099,8.827609212570941,0,0,-1012.299587457722,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.231010773053857,8.418019146614762,52,54.51,-9,-9,10,1,1,0,0,0,4,5,1,1363,1797410.452056596,704243.6865134763,485279.9875650117,0,3263.988753981056 -13762,16981,31010,31011,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.078805071450578,7.88597449893859,17,1,-3.226852243689452,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.624303613159892,7.880238916391195,58.47,44.69,55,53,10,1,1,0,0,7,10,5,1,1165.5,1412408.993432628,961549.5801810047,337060.9968070677,6576.762655599025,3361.989736526199 -13762,16981,31011,31010,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.655879132709261,9.022690798844629,17,-1,-57.49525293199564,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.443025677115227,55,53,58.47,44.69,8,1,1,0,0,0,10,5,1,1165.5,1412408.993432628,961549.5801810047,337060.9968070677,6576.762655599025,3361.989736526199 -13763,16982,31012,31013,-9,-9,1,0,64,1,3,0,3,3,-9,0,3,0,0,0,9,-2,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,18.01,25.88,7,2,3,0,0,0,4,1,1,537,97611.7465193883,0,0,0,168.3322395425861 -13763,16982,31013,31012,-9,-9,1,1,66,1,3,0,3,3,-9,0,1,0,0,0,45,2,0,0,3,3,2019,17,0,0,0,4,5,0,0,0,1,0,202.1380351790766,0,0,1,1,0,0,0,18.01,25.88,49,48,8.333333333333334,2,3,0,0,0,4,1,1,537,97611.7465193883,0,0,0,168.3322395425861 -13763,16983,31014,-9,31015,31018,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.7990352191208,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,874,24143.60684083291,0,124506.1392371854,65313.33718247835,2437.398173474355 -13763,16983,31015,31018,-9,-9,1,0,36,1,3,0,2,2,-9,0,5,0,0,0,6,4,-52.54706591520821,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,52.32,57.18,50,58,10,2,3,0,0,0,4,2,1,874,24143.60684083291,0,124506.1392371854,65313.33718247835,2437.398173474355 -13763,16983,31016,-9,31015,31018,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.511780675124,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,2,1,874,24143.60684083291,0,124506.1392371854,65313.33718247835,2437.398173474355 -13763,16983,31017,-9,31015,31018,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-920.780404420385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,874,24143.60684083291,0,124506.1392371854,65313.33718247835,2437.398173474355 -13763,16983,31018,31015,31012,31013,1,1,32,1,3,0,1,1,-9,0,4,7.958914151747676,7.815607946430232,0,6,-4,91.34434206015061,0,3,3,2019,10,0,12,50,1,1,0,28.1549473443962,28.1549473443962,0,0,0,0,5.48,1,1,0,0,0,50,58,52.32,57.18,7,2,3,0,0,12,4,2,1,874,24143.60684083291,0,124506.1392371854,65313.33718247835,2437.398173474355 -13764,16984,31019,-9,31020,31022,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1043.390986224462,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,706.5,57759.84376146647,28628.31308111534,73655.15473605576,19072.46856130828,1157.262221159278 -13764,16984,31020,31022,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,7.31266466380217,7.439597843061614,0,15,-1,64.33705694865519,0,3,3,2019,24,11,20,24,1,11,0,10.9408563644158,10.9408563644158,0,0,0,0,0,1,0,1,0,0,23.62,51.22,51.24,58.84,3.333333333333333,2,3,0,0,6,2,2,1,706.5,57759.84376146647,28628.31308111534,73655.15473605576,19072.46856130828,1157.262221159278 -13764,16984,31021,-9,31020,31022,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.790541256849,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,706.5,57759.84376146647,28628.31308111534,73655.15473605576,19072.46856130828,1157.262221159278 -13764,16984,31022,31020,-9,-9,1,1,34,0,2,0,3,3,-9,0,4,5.874665884583721,5.757698607285098,0,15,1,48.39351723947835,0,3,3,2019,10,0,24,24,1,0,0,2.035896692167093,2.035896692167093,0,0,0,0,0,1,0,1,0,0,51.24,58.84,23.62,51.22,6.666666666666667,2,3,0,0,13,2,2,1,706.5,57759.84376146647,28628.31308111534,73655.15473605576,19072.46856130828,1157.262221159278 -13765,16985,31023,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.138161067397771,7.776345735195572,0,0,0,-974.8894377262712,0,2,3,2019,15,3,38,38,1,3,0,8.047849098967854,8.047849098967854,0,0,0,0,0,0,0,0,0,0,48.57,53.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,1778,118291.1616027308,-42671.10258039137,0,0,776.2025190775047 -13765,16986,31024,-9,31023,-9,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1070.655392362048,-9,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,27.28,65.96000000000001,-9,-9,1.666666666666667,1,1,0,0,3,2,1,1,959,26788.45925341345,0,0,0,28.2161017101611 -13766,16987,31025,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1080.293742404316,0,3,3,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,-9,-9,5,1,1,0,1,1,1,1,0,1058.666666666667,-55371.23558992706,0,0,0,1303.527476095196 -13766,16987,31026,-9,31025,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.0902504751748,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,1058.666666666667,-55371.23558992706,0,0,0,1303.527476095196 -13766,16987,31027,-9,31025,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.03796495895,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,1,0,1058.666666666667,-55371.23558992706,0,0,0,1303.527476095196 -13767,16988,31028,-9,31030,31029,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.4866710210044,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,1164,548238.6333575197,118408.8873323703,437058.6924474798,112022.413136421,3355.297064602261 -13767,16988,31029,31030,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,9.199559762439863,9.48636407240924,0,9,1,128.7275590593686,-9,1,1,2019,6,0,35,0,1,0,0,29.62135067610744,29.62135067610744,0,0,0,0,0,0,0,0,0,0,57.06,57.76,63.63,51.86,8.333333333333334,2,3,0,0,11,8,5,1,1164,548238.6333575197,118408.8873323703,437058.6924474798,112022.413136421,3355.297064602261 -13767,16988,31030,31029,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,0,0,0,8,-1,-119.8663443611277,-9,1,1,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.63,51.86,57.06,57.76,10,2,3,0,0,3,8,5,1,1164,548238.6333575197,118408.8873323703,437058.6924474798,112022.413136421,3355.297064602261 -13768,16989,31031,31032,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,8.253582520698648,8.516981312914044,41,4,-87.35584812002922,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.477106898603118,8.725382328781899,59.64,35.87,48.85,58.56,8.333333333333334,1,1,0,0,0,10,4,1,319,1007927.228981029,241493.9049314479,490599.4665819769,0,4360.899743757242 -13768,16989,31032,31031,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.196763240622285,6.453294570653434,6,-4,57.6841338852718,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.359786933546332,6.136559105712702,48.85,58.56,59.64,35.87,8.333333333333334,1,1,0,0,0,10,4,1,319,1007927.228981029,241493.9049314479,490599.4665819769,0,4360.899743757242 -13769,16990,31033,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.785428953477521,8.119909998583124,0,0,-890.4397135885512,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,2.675491254183496,0,15.50663534748878,0,1,1,0,5.390219695046603,8.069734917911061,60.7,18.52,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1243,665321.2855797817,433447.7807356152,247920.4412874765,0,2616.035158249416 -13770,16991,31034,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,6.852274932632833,7.169531565177961,0,0,-1070.971081940362,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.837554380688241,7.201637547052829,58,52,-9,-9,10,1,1,0,0,5,6,3,1,2414,553743.830092744,126700.5722206135,222146.2383421882,0,1331.120049681173 -13771,16992,31035,31036,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,6.555552319495155,6.398233062994717,10,13,-62.11434164682543,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.873355558537678,0,0,1,1,0,6.0630853343774,6.412723459254087,61.69,15.28,49.42,19.32,8.333333333333334,1,1,0,0,0,1,2,0,495,1111518.721839383,76495.42430309166,487005.6455136569,0,2994.580758677107 -13771,16992,31036,31035,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.162290995284536,6.622056763387025,10,-13,19.55361838194651,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,9.898010105089149,0,0,1,1,0,3.878319043341074,5.843170798720611,49.42,19.32,61.69,15.28,8.333333333333334,1,1,0,0,0,1,2,0,495,1111518.721839383,76495.42430309166,487005.6455136569,0,2994.580758677107 -13772,16993,31037,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.398648090709484,7.261973350490655,0,0,-979.0518739895817,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.190077283495148,0,66.37,38.36,-9,-9,10,1,1,0,0,8,2,3,1,872,619438.9267284259,265545.5622383359,111834.7081936344,0,2126.011612810641 -13773,16994,31038,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.340994339784586,8.03917180358272,0,0,0,-1041.177773228794,0,1,1,2019,10,0,37,44,1,0,0,12.94468140028359,12.94468140028359,0,0,0,0,0,0,0,0,0,0,45.79,42.63,-9,-9,5,1,1,0,0,5,12,4,1,248,36892.27399972775,-71678.87539889973,0,0,1824.875973336496 -13774,16995,31039,31040,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.04174216715287,4.854830754406026,8,-2,-52.70988875085027,0,-9,-9,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,14.5,1,1,0,.9647480528661965,5.279671289586678,36.21,18.82,62.25,32.43,3.333333333333333,1,1,0,0,0,2,2,1,771.5,785962.9328462608,101297.7101769777,185227.8028895183,0,1767.448887625951 -13774,16995,31040,31039,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.21614599553569,6.919967532573363,57,2,-20.63997689199032,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.237233325550515,6.98063371798368,62.25,32.43,36.21,18.82,8.333333333333334,1,1,0,1,0,2,2,1,771.5,785962.9328462608,101297.7101769777,185227.8028895183,0,1767.448887625951 -13775,16996,31041,31042,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.168647149684352,8.103138646172338,0,7,-2,-121.2959103402958,0,3,2,2019,10,0,35,35,1,0,0,11.75380715483725,11.75380715483725,0,0,0,0,0,0,0,0,6.859995403648695,0,53.56,49.66,53.98,50.87,8.333333333333334,1,1,0,0,8,11,4,1,540,1130662.987334934,690147.4314189248,273871.0152679335,0,2679.174137987439 -13775,16996,31042,31041,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.933836770079187,7.235414426788278,7,2,-39.13459018101402,0,3,2,2019,11,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,7.009457191724429,6.926820090744989,53.98,50.87,53.56,49.66,8.333333333333334,1,1,0,0,8,11,4,1,540,1130662.987334934,690147.4314189248,273871.0152679335,0,2679.174137987439 -13776,16997,31043,-9,31044,31046,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1054.028005483204,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1493.5,1506860.218988001,576821.0834003576,590000.5889686001,0,8686.391822172647 -13776,16997,31044,31046,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.4801424236964,9.015973092208169,0,33,0,-86.54565418061414,0,2,2,2019,11,0,10,8,1,0,0,126.489381168339,126.489381168339,0,0,0,1.207852357373286,0,0,0,0,3.681844496355996,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,1493.5,1506860.218988001,576821.0834003576,590000.5889686001,0,8686.391822172647 -13776,16997,31045,-9,31044,31046,1,1,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-972.3538961195915,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1493.5,1506860.218988001,576821.0834003576,590000.5889686001,0,8686.391822172647 -13776,16997,31046,31044,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.495039057972736,9.428310723745252,0,33,0,-44.30208982951621,0,2,2,2019,11,0,20,25,1,0,0,62.37391558672881,62.37391558672881,0,0,0,0,0,0,0,0,4.028304656089747,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,10,4,5,1,1493.5,1506860.218988001,576821.0834003576,590000.5889686001,0,8686.391822172647 -13777,16998,31047,31048,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.437885760680529,7.7136956377137,0,7,-7,-20.50790441327995,0,2,3,2019,7,0,18,18,1,0,0,10.05784814857101,10.05784814857101,0,0,0,0,0,0,0,0,0,0,52.67,48.57,55.96,49.93,8.333333333333334,1,1,0,0,9,4,5,0,440.5,518693.3907435209,299217.4617687183,228840.5379070081,5100.838768228271,3401.449642859273 -13777,16998,31048,31047,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,8.6955804414286,8.908553876130705,0,7,7,-23.25322190912114,0,-9,-9,2019,6,0,40,40,1,0,0,22.39407671862476,22.39407671862476,0,0,0,0,0,0,0,0,0,0,55.96,49.93,52.67,48.57,6.666666666666667,1,1,0,0,8,4,5,0,440.5,518693.3907435209,299217.4617687183,228840.5379070081,5100.838768228271,3401.449642859273 -13777,16999,31049,-9,31047,31048,1,0,21,0,0,0,2,2,-9,0,4,7.932123369805582,7.323523455257158,0,0,0,-1094.275978411355,0,2,2,2019,11,0,40,37,1,2,1,4.671102920736225,4.671102920736225,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,3,0,1304,3555.407866042779,0,0,0,1299.446950210657 -13778,17000,31050,31051,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,8,-3,-58.98082344859704,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.183360034188137,0,62.4,42.8,62,41.73,1.666666666666667,1,1,0,0,0,12,2,1,1202.5,636763.4620768861,465041.1621949392,154113.3953312063,0,1647.464110611196 -13778,17000,31051,31050,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.272750366973883,7.028602093822898,8,3,-26.62606171682965,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.452045246801759,6.930476211781313,62,41.73,62.4,42.8,8.333333333333334,1,1,0,0,0,12,2,1,1202.5,636763.4620768861,465041.1621949392,154113.3953312063,0,1647.464110611196 -13779,17001,31052,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.028017028320967,8.671853722143018,7.531401203021296,0,0,-971.883196423611,0,-9,-9,2019,13,2,40,39,1,2,0,10.51495812221169,10.51495812221169,0,0,0,0,0,0,0,0,6.028742737723126,7.62195157917849,46.17,50.26,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,11134,1872272.303562378,1056759.045874236,238527.4649831647,0,2307.629572632008 -13780,17002,31053,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,6.072512312255739,6.436024560221944,0,0,-946.9279679226105,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.273918008577575,51,49.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,90,1033823.85144906,154170.7120897443,394894.5060956432,0,1396.833703482843 -13781,17003,31054,31055,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,50,1,-64.98850175570315,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,43.21,60.71,37.26,6.666666666666667,1,1,0,0,6,1,2,1,1514.5,1371771.607379995,-6982.421647199655,507118.6871147599,0,2311.06438141308 -13781,17003,31055,31054,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,7.030331076299673,7.159364173851182,0,50,-1,16.08857041558855,0,3,-9,2019,8,0,24,24,1,0,0,5.738119748489884,5.738119748489884,0,0,0,0,0,1,1,0,0,0,60.71,37.26,53.63,43.21,6.666666666666667,1,1,0,0,12,1,2,1,1514.5,1371771.607379995,-6982.421647199655,507118.6871147599,0,2311.06438141308 -13782,17004,31056,31057,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.970098046367269,8.851220859637779,0,6,6,42.88664404736018,0,2,2,2019,12,3,40,40,1,3,0,17.95277796479284,17.95277796479284,0,0,0,0,0,1,1,0,4.452730388856151,0,35.78,30.26,54.74,57.22,3.333333333333333,1,1,0,0,13,10,5,1,810.3333333333334,513825.1490260998,152835.423975055,348377.3214216938,50789.74752726473,3933.539952872226 -13782,17004,31057,31056,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.363133233960109,8.120478380818977,7.417091643758623,6,-6,-57.65554081719834,0,-9,-9,2019,10,1,26,23,1,1,0,8.551878285895338,8.551878285895338,0,0,0,0,0,1,1,0,0,7.182178141029425,54.74,57.22,35.78,30.26,8.333333333333334,1,1,0,0,4,10,5,1,810.3333333333334,513825.1490260998,152835.423975055,348377.3214216938,50789.74752726473,3933.539952872226 -13782,17004,31058,-9,31057,31056,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.0527442462926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,810.3333333333334,513825.1490260998,152835.423975055,348377.3214216938,50789.74752726473,3933.539952872226 -13783,17005,31059,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.984931137600408,7.106111415470745,0,0,-1075.629879318677,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.954115467061883,6.977355823839611,46.38,34.71,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,859,791338.7585681498,480991.9443776031,111913.8729362145,0,1017.783203002045 -13784,17006,31060,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,7.476083564614777,7.036894638046853,0,0,-998.1500005134114,0,2,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,3.439605077257471,6.914318445605318,18.99,33.71,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1647,398859.9934692093,224547.0315095063,164070.255128444,0,426.6595804122695 -13785,17007,31061,31062,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,7.53298735034599,8.029587622650711,6.494167117383263,41,0,63.70504113510285,0,2,2,2019,10,0,25,30,1,0,0,10.74225154898931,10.74225154898931,0,0,0,0,0,0,0,0,1.076568844198834,6.805102655843687,43.32,63.94,61.27,46.03,8.333333333333334,1,1,0,0,9,11,3,1,1025.5,360670.6473247679,7015.650063747198,275298.526503174,0,1305.841689339393 -13785,17007,31062,31061,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.412027558445169,6.743738597668323,41,9,-15.83795095304227,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.750104241357786,0,0,0,0,0,1.316553074109459,6.771180802450301,61.27,46.03,43.32,63.94,10,1,1,0,0,10,11,3,1,1025.5,360670.6473247679,7015.650063747198,275298.526503174,0,1305.841689339393 -13786,17008,31063,31065,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,7,-5,-128.3372621336212,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.3447997325691055,0,53.16,51.26,53.38,47.51,0,1,1,0,0,1,4,2,1,690,299861.9492125739,55744.8434392338,165678.9006869094,53021.12564245785,1474.315270656522 -13786,17008,31064,-9,31063,31065,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0890870449713,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,690,299861.9492125739,55744.8434392338,165678.9006869094,53021.12564245785,1474.315270656522 -13786,17008,31065,31063,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,7.127874033973603,7.289899013080222,0,7,5,-21.97802287205803,0,2,2,2019,9,0,50,52,1,0,0,2.456495189873485,2.456495189873485,0,0,0,0,0,1,1,0,5.800636459551299,0,53.38,47.51,53.16,51.26,6.666666666666667,1,1,0,0,8,4,2,1,690,299861.9492125739,55744.8434392338,165678.9006869094,53021.12564245785,1474.315270656522 -13786,17008,31066,-9,31063,31065,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.745852460166,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,690,299861.9492125739,55744.8434392338,165678.9006869094,53021.12564245785,1474.315270656522 -13786,17009,31067,-9,31063,31065,1,1,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-844.1010376419672,-9,2,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,184,0,0,0,0,-75.95538932453715 -13787,17010,31068,31069,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.359935433535704,6.051865799825853,47,5,63.90547705934974,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.062223110598751,6.289684676656071,63.01,25.24,57.16,56.15,10,1,1,0,0,0,2,2,1,799,963285.1902457275,527539.2392442168,516099.5262267835,0,579.9810986847815 -13787,17010,31069,31068,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,47,-5,-68.56568802884965,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,63.01,25.24,10,1,1,0,0,6,2,2,1,799,963285.1902457275,527539.2392442168,516099.5262267835,0,579.9810986847815 -13788,17011,31070,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.428093914793592,8.430280775935126,0,0,0,-940.8473826872882,0,-9,-9,2019,7,0,50,40,1,0,0,10.99707683710763,10.99707683710763,0,0,0,0,0,0,0,0,2.011331308001036,0,54.38,51.94,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,1090,150953.7804743978,-77273.00902081422,0,0,1974.477180815843 -13789,17012,31071,31072,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.32203815966067,8.489900274103451,0,3,1,-13.86238114654695,0,-9,-9,2019,9,0,45,40,1,1,0,11.88128733239634,11.88128733239634,0,0,0,0,0,0,0,0,0,0,53,54,51,54,7,3,4,0,0,1,8,4,0,1883.5,188836.2856750473,264959.4828236522,0,0,2582.92141903778 -13789,17012,31072,31071,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.370067812108648,7.41343670876037,0,26,-1,34.28524805058738,0,-9,-9,2019,10,0,35,37,1,1,0,4.662090034349192,4.662090034349192,0,0,0,0,0,0,0,0,0,0,51,54,53,54,7,3,4,0,0,1,8,4,0,1883.5,188836.2856750473,264959.4828236522,0,0,2582.92141903778 -13789,17013,31073,-9,31072,31071,1,1,19,0,0,0,2,2,1,0,4,8.366661601290502,8.274170218637988,0,0,0,-922.8858549803028,-9,2,2,2019,11,0,100,0,1,2,1,4.024477226995558,4.024477226995558,0,0,0,0,7,0,0,0,0,0,48,58,-9,-9,7,3,4,0,0,3,8,4,0,336,162584.7882148885,0,0,0,1963.174947196343 -13790,17014,31074,-9,31075,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.067587178309,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,185,0,0,0,0,2547.312374435054 -13790,17014,31075,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-970.8211113763219,1,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,59.17,-9,-9,8.333333333333334,4,2,0,1,0,7,1,0,185,0,0,0,0,2547.312374435054 -13790,17014,31076,-9,31075,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.448750379486,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,185,0,0,0,0,2547.312374435054 -13791,17015,31077,31078,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,7.16199891058434,7.136842068410116,4.080069669947662,5,-6,166.5377506103678,0,3,2,2019,24,12,10,10,1,12,0,13.16610512717197,13.16610512717197,1,0,0,0,0,1,1,0,4.199489464860521,4.082210030575324,27.08,41.8,53,46,3.333333333333333,1,1,0,0,7,7,2,1,360.5,583497.2358601675,226978.5821092065,255991.4091203735,0,1310.24999661383 -13791,17015,31078,31077,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,5,6,45.12065936758407,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.9085965127272745,0,53,46,27.08,41.8,8,1,1,0,0,0,7,2,1,360.5,583497.2358601675,226978.5821092065,255991.4091203735,0,1310.24999661383 -13792,17016,31079,31080,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.59281787819522,9.125569636460854,0,16,-2,37.04297953992236,0,3,2,2019,21,9,55,60,1,9,0,15.77265624210082,15.77265624210082,0,0,0,0,0,1,1,0,1.352141066202442,0,42.64,50.88,41.34,52.45,8.333333333333334,2,3,0,0,12,6,5,1,564.25,324137.8087129843,18178.32874214936,0,0,3651.705070674973 -13792,17016,31080,31079,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.148242965104762,7.903607935069513,0,16,2,93.40553980807847,0,3,2,2019,36,12,47,40,1,12,0,9.067325492962407,9.067325492962407,0,0,0,0,0,1,1,0,0,0,41.34,52.45,42.64,50.88,10,2,3,0,0,12,6,5,1,564.25,324137.8087129843,18178.32874214936,0,0,3651.705070674973 -13792,17016,31081,-9,31079,31080,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.7318069736851,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,564.25,324137.8087129843,18178.32874214936,0,0,3651.705070674973 -13792,17016,31082,-9,31079,31080,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.5814628535852,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,564.25,324137.8087129843,18178.32874214936,0,0,3651.705070674973 -13793,17017,31083,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1125.158062871256,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,123.2278112534616,0,0,1,1,0,0,0,68.42,9.200000000000001,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,391,49999.19072221934,0,0,0,917.4465242506973 -13793,17018,31084,-9,31083,-9,1,1,33,0,0,0,1,1,-9,0,3,8.538482513749132,8.430536699852007,0,0,0,-950.2975622473671,0,2,2,2019,23,7,50,70,1,7,0,11.21377959279606,11.21377959279606,0,0,0,0,5.48,1,1,0,0,0,41.34,56.62,-9,-9,10,3,4,0,0,5,8,5,0,820,56735.77439446468,-15952.76376464766,0,0,1806.658420256571 -13793,17018,31085,-9,-9,31084,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-942.9719857890267,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,5,0,820,56735.77439446468,-15952.76376464766,0,0,1806.658420256571 -13794,17019,31086,-9,-9,-9,1,0,99,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1067.454510706547,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,21.11547571146273,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,4,2,1,312,-209905.8803670162,0,0,0,581.986069997299 -13794,17020,31087,-9,31086,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.49070628199086,7.730412914152074,0,0,-992.7982730193572,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,3.019782361799364,7.551637994862379,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,370,1065657.791919527,570863.7508076894,160706.8698162985,0,1296.396105047331 -13795,17021,31088,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,6.932829444308067,6.852512604713312,0,0,-1080.573868808674,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.975767209765769,26.42,28.78,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,1934,131910.2329145198,0,0,0,1381.444293166444 -13796,17022,31089,-9,31090,31091,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.8978702951784,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,516.6666666666666,179479.6880386808,14868.78449290969,259181.7531432341,104361.7860259455,2741.123919927069 -13796,17022,31090,31091,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.927217508091053,7.704755635080858,0,7,-3,83.36334676339999,0,2,2,2019,13,1,38,38,1,1,0,7.842392629138107,7.842392629138107,0,0,0,0,0,1,1,0,0,0,43.6,51.61,46.11,51.9,3.333333333333333,1,1,0,1,7,2,4,0,516.6666666666666,179479.6880386808,14868.78449290969,259181.7531432341,104361.7860259455,2741.123919927069 -13796,17022,31091,31090,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.370767916912445,8.144180198399123,0,7,3,61.41838408391403,0,2,2,2019,11,1,49,40,1,1,0,10.34420134591849,10.34420134591849,0,0,0,0,0,1,1,0,0,0,46.11,51.9,43.6,51.61,8.333333333333334,1,1,0,0,6,2,4,0,516.6666666666666,179479.6880386808,14868.78449290969,259181.7531432341,104361.7860259455,2741.123919927069 -13797,17023,31092,-9,31093,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.0266229940123,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,679.4,107994.2866390879,0,0,0,1458.495531861838 -13797,17023,31093,31094,-9,-9,1,0,27,1,3,0,2,2,-9,0,1,0,3.133269519132961,3.067327130533675,3,5,18.33336463476433,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.583768865861773,0,53.61,24.23,58.76,52.91,8.333333333333334,1,1,0,0,1,2,2,0,679.4,107994.2866390879,0,0,0,1458.495531861838 -13797,17023,31094,31093,-9,-9,1,1,22,1,3,0,2,2,-9,0,5,0,0,0,3,-5,-151.4553022963374,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,2.267898005603991,0,1,1,0,0,0,58.76,52.91,53.61,24.23,8.333333333333334,1,1,1,0,4,2,2,0,679.4,107994.2866390879,0,0,0,1458.495531861838 -13797,17023,31095,-9,31093,31094,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.03807650064,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,679.4,107994.2866390879,0,0,0,1458.495531861838 -13797,17023,31096,-9,31093,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.3478055983643,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,679.4,107994.2866390879,0,0,0,1458.495531861838 -13798,17024,31097,31098,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,5.023739475958698,4.910127054783029,46,-3,55.49239033119105,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.194812586269064,4.58005148491084,45.91,59.89,55.37,40.83,8.333333333333334,1,1,0,0,1,7,2,1,920,1149751.013867436,543475.1266099998,574070.4048125771,0,552.5106234496818 -13798,17024,31098,31097,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.055875044836761,6.764905584792743,46,3,-168.2813922915972,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.046734098299389,6.901028777919414,55.37,40.83,45.91,59.89,5,1,1,0,0,6,7,2,1,920,1149751.013867436,543475.1266099998,574070.4048125771,0,552.5106234496818 -13799,17025,31099,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,4,0,5.940559907571546,5.737416993367938,0,0,-927.8251279316318,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,4.958401054462187,0,35.86,56.52,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,511,714106.9312605271,-30754.22699172721,456978.6443219201,0,2249.599306259469 -13799,17025,31100,-9,31099,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.726419504721,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,511,714106.9312605271,-30754.22699172721,456978.6443219201,0,2249.599306259469 -13799,17025,31101,-9,31099,-9,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-984.8241681347879,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,2,1,511,714106.9312605271,-30754.22699172721,456978.6443219201,0,2249.599306259469 -13800,17026,31102,31105,-9,-9,1,1,32,1,3,0,2,2,-9,0,3,8.229136636817472,8.47214596373167,0,13,1,-25.2852277332728,0,-9,-9,2019,12,1,40,44,1,1,0,14.14424325331928,14.14424325331928,0,0,0,0,0,1,1,0,3.841485277678675,0,47,52,48,57,6.666666666666667,2,3,0,0,8,1,3,1,492,131509.4010816479,40933.01133446959,186981.0496334698,107652.5072967261,1841.992170202123 -13800,17026,31103,-9,31105,31102,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-935.5448740726613,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,1,3,1,492,131509.4010816479,40933.01133446959,186981.0496334698,107652.5072967261,1841.992170202123 -13800,17026,31104,-9,31105,31102,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.6230365425462,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,3,1,492,131509.4010816479,40933.01133446959,186981.0496334698,107652.5072967261,1841.992170202123 -13800,17026,31105,31102,-9,-9,1,0,31,1,3,0,3,3,-9,0,4,0,0,0,6,-1,-7.223518904665895,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,47,52,7,2,3,0,0,0,1,3,1,492,131509.4010816479,40933.01133446959,186981.0496334698,107652.5072967261,1841.992170202123 -13800,17026,31106,-9,31105,31102,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.966537882671,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,1,3,1,492,131509.4010816479,40933.01133446959,186981.0496334698,107652.5072967261,1841.992170202123 -13801,17027,31107,31108,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.687030215300114,8.927342608032186,0,22,0,-34.4148399206676,0,2,2,2019,10,1,50,60,1,1,0,11.56807341890518,11.56807341890518,0,0,0,0,0,0,0,0,3.340711526455032,0,53.64,48.41,54.62,37.47,6.666666666666667,1,1,0,0,10,4,5,1,585,215609.8407761249,168633.9042661513,124062.5412782826,87177.38564929785,3255.162505417703 -13801,17027,31108,31107,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.157359021320261,6.907142997352981,0,20,0,-33.15388711804155,0,2,2,2019,11,0,10,10,1,0,0,12.77522571836223,12.77522571836223,0,0,0,0,0,0,0,0,6.684103008279578,0,54.62,37.47,53.64,48.41,8.333333333333334,1,1,0,0,10,4,5,1,585,215609.8407761249,168633.9042661513,124062.5412782826,87177.38564929785,3255.162505417703 -13802,17028,31109,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1143.385205950641,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.120033929451904,0,54.53,41.24,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1196,110841.5229881076,0,0,0,546.1768406160514 -13803,17029,31110,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.707484270736154,7.560560380993286,0,0,0,-1126.605548361568,0,1,1,2019,6,2,27,24,1,2,0,10.81748043021717,10.81748043021717,0,0,0,0,0,1,1,0,0,0,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,387,68922.47963713207,100194.5579399023,0,0,1243.326339985026 -13803,17030,31111,-9,31110,-9,1,1,22,0,0,0,2,2,-9,0,4,7.695215986141019,8.127402013686128,0,0,0,-925.3847917516777,0,2,-9,2019,10,0,35,42,1,0,1,8.320015982317496,8.320015982317496,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,970,181816.0430139099,79587.28943986259,0,0,1518.108914813166 -13803,17031,31112,-9,31110,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.8986960146657,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,4.46168102783492,0,47,59,-9,-9,7,1,1,0,0,0,8,1,0,446,0,0,0,0,-522.4358834305438 -13804,17032,31113,31114,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,7.901038434084817,7.867021626273312,0,9,1,-61.33527702512446,0,2,2,2019,25,12,39,39,1,12,0,9.276591281238282,9.276591281238282,0,0,0,0,0,1,1,0,0,0,29.47,29.93,56.17,46.18,6.666666666666667,1,1,0,0,10,1,5,1,878,1155020.150470466,494723.0261174562,494084.9041870255,0,3117.919815388816 -13804,17032,31114,31113,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.54547969726087,8.797853213317879,0,9,-1,-15.9423384523347,0,-9,-9,2019,9,0,43,43,1,0,0,12.50201196768337,12.50201196768337,0,0,0,0,2,1,1,0,0,0,56.17,46.18,29.47,29.93,8.333333333333334,1,1,0,0,12,1,5,1,878,1155020.150470466,494723.0261174562,494084.9041870255,0,3117.919815388816 -13805,17033,31115,31116,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.561738599328667,8.691975140032584,0,2,-6,-101.8421120414957,0,1,1,2019,5,0,50,52,1,0,0,13.36330353931183,13.36330353931183,0,0,0,0,0,0,0,0,7.882833120332454,0,56.5,48.33,61.29,46.02,8.333333333333334,1,1,0,0,8,10,5,0,580,855688.1450581134,258826.1913514182,331305.9486080044,42061.39120859203,5197.989283025269 -13805,17033,31116,31115,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.959471088102749,8.672208108707411,0,2,6,35.74922233286627,0,-9,-9,2019,5,0,60,37,1,0,0,15.88258202052543,15.88258202052543,0,0,0,0,0,0,0,0,3.46922282561469,0,61.29,46.02,56.5,48.33,8.333333333333334,1,1,0,0,1,10,5,0,580,855688.1450581134,258826.1913514182,331305.9486080044,42061.39120859203,5197.989283025269 -13806,17034,31117,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-1015.838437600833,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.018927006810715,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,2314,135653.0300490366,0,0,0,1550.600011849069 -13807,17035,31118,31119,-9,-9,1,1,28,0,1,0,2,2,-9,1,4,8.165147295790023,8.561756342967437,0,7,-2,11.26164026754388,0,-9,-9,2019,14,3,45,45,1,3,0,9.903070060646748,9.903070060646748,0,0,0,0,0,1,1,0,0,0,38.59,60.85,30.76,28.13,5,1,1,0,0,9,5,3,0,596,72230.08582195462,-8062.346265837284,112823.6916100758,80057.32999819447,1903.981108678393 -13807,17035,31119,31118,-9,-9,1,0,30,0,1,0,2,2,-9,0,1,0,0,0,7,2,-57.98980779917755,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,30.76,28.13,38.59,60.85,3.333333333333333,1,1,0,0,2,5,3,0,596,72230.08582195462,-8062.346265837284,112823.6916100758,80057.32999819447,1903.981108678393 -13807,17035,31120,-9,31119,31118,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.899099440464,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,596,72230.08582195462,-8062.346265837284,112823.6916100758,80057.32999819447,1903.981108678393 -13808,17036,31121,31123,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.284982311427338,8.389767423532364,0,15,-1,-22.35976751151085,0,2,1,2019,15,3,46,44,1,3,0,12.28698141790444,12.28698141790444,0,0,0,0,0,1,1,0,0,0,38.34,62.12,24.24,59.18,6.666666666666667,1,1,0,0,12,7,3,1,853.75,323710.5381230576,101400.9257941506,366097.6420504904,109941.0247011002,2136.262597097184 -13808,17036,31122,-9,31121,31123,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.229497652074,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,853.75,323710.5381230576,101400.9257941506,366097.6420504904,109941.0247011002,2136.262597097184 -13808,17036,31123,31121,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,6.862213717868837,7.016220859910047,0,15,1,80.48337910299568,0,2,3,2019,14,2,45,54,1,2,0,1.918242197371,1.918242197371,0,0,0,0,0,1,1,0,0,0,24.24,59.18,38.34,62.12,5,1,1,0,0,11,7,3,1,853.75,323710.5381230576,101400.9257941506,366097.6420504904,109941.0247011002,2136.262597097184 -13808,17036,31124,-9,31121,31123,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.465973078408,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,1,853.75,323710.5381230576,101400.9257941506,366097.6420504904,109941.0247011002,2136.262597097184 -13809,17037,31125,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.137800113026037,8.171293920456346,0,0,0,-1177.351661604296,0,-9,2,2019,13,1,50,48,1,1,0,8.121767856900609,8.121767856900609,0,0,0,0,0,1,0,1,0,0,45.1,31.97,-9,-9,3.333333333333333,1,1,0,0,10,11,4,1,1114,80249.54269153727,-23842.10334324698,0,0,1479.723148987847 -13809,17038,31126,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.893572135948448,9.372576050320296,0,0,0,-1046.007942291075,0,-9,-9,2019,9,0,69,96,1,0,0,14.39464845722324,14.39464845722324,0,0,0,0,0,1,0,1,0,0,53.52,46.83,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,848,-73377.47120344368,-39531.08333831593,27418.08345032264,59081.0404092941,3270.825472573613 -13809,17039,31127,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.058703635248962,7.729242669566696,0,0,0,-950.0992186120524,0,-9,-9,2019,17,6,36,36,1,6,0,8.737826325630699,8.737826325630699,0,0,0,0,0,1,0,1,0,0,43.44,58.7,-9,-9,5,1,1,0,1,2,11,4,1,476,159670.0203979729,55096.55248784873,0,0,1968.360993583166 -13810,17040,31128,31129,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.369087102731426,7.441232705776453,5.208478040684104,8,0,-127.4118417764494,0,3,3,2019,7,0,22,21,1,0,0,9.092226027941578,9.092226027941578,0,0,0,0,0,0,0,0,2.007710647411509,5.40008009930169,56.57,57.78,57.06,57.76,10,1,1,0,0,11,9,4,1,374,862202.1745981477,99112.67063743205,500846.8416769475,0,3644.370652008503 -13810,17040,31129,31128,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.010680573727265,7.854819016175734,0,8,0,-41.42021707760266,0,3,3,2019,7,0,9,9,1,0,0,34.37629572969232,34.37629572969232,0,0,0,0,0,0,0,0,8.194004316464673,0,57.06,57.76,56.57,57.78,10,1,1,0,0,11,9,4,1,374,862202.1745981477,99112.67063743205,500846.8416769475,0,3644.370652008503 -13811,17041,31130,31131,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.060325702703581,9.027327782922955,0,36,0,160.1006965121948,0,2,2,2019,9,1,41,41,1,1,0,26.06706509614531,26.06706509614531,0,0,0,0,0,0,0,0,6.861161237212898,0,54.2,57.49,52.64,49.14,8.333333333333334,1,1,0,0,9,4,5,1,712.5,1159886.701961792,728341.4189848115,204291.9107908012,0,5255.352315054566 -13811,17041,31131,31130,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.284070277678756,8.356343330091262,0,36,0,75.47701172067612,0,2,2,2019,11,0,33,37,1,0,0,16.02924416507364,16.02924416507364,0,0,0,0,0,0,0,0,4.220528120590695,0,52.64,49.14,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,712.5,1159886.701961792,728341.4189848115,204291.9107908012,0,5255.352315054566 -13812,17042,31132,31134,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.749424160221646,8.061571673917552,6.534194762439315,3,1,160.9778296293702,0,3,2,2019,17,5,35,28,1,5,0,8.2281457403346,8.2281457403346,0,0,0,0,0,1,1,0,6.000115240419117,0,43.34,24.99,46.31,58.29,8.333333333333334,1,1,0,0,8,4,5,1,529,2004199.116939598,1687929.594327259,212582.1618178006,163.4065944681909,3351.559099005215 -13812,17042,31133,-9,31132,31134,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.1081501557796,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,529,2004199.116939598,1687929.594327259,212582.1618178006,163.4065944681909,3351.559099005215 -13812,17042,31134,31132,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.635397230886117,8.432637961949796,4.713061392362555,3,-1,16.07059075337473,0,-9,-9,2019,9,0,45,57,1,0,0,12.7110490872028,12.7110490872028,0,0,0,0,0,1,1,0,0,5.014795776383147,46.31,58.29,43.34,24.99,10,1,1,0,0,10,4,5,1,529,2004199.116939598,1687929.594327259,212582.1618178006,163.4065944681909,3351.559099005215 -13813,17043,31135,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1007.835374653112,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,27.71,-9,-9,10,1,1,0,1,0,11,1,0,321,-193425.1761930863,0,0,0,1030.529851585171 -13814,17044,31136,31137,-9,-9,1,0,54,0,0,0,3,3,-9,1,4,0,0,0,8,0,-12.60792822049279,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.15,52.91,40.73,31.8,8.333333333333334,1,1,0,1,6,13,3,1,573.5,1096656.783655462,748899.9084199254,166593.5091826867,0,2013.068146743902 -13814,17044,31137,31136,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,7.783405769629139,7.195498912972615,8,9,114.2487299016614,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.858396707908372,40.73,31.8,58.15,52.91,8.333333333333334,1,1,0,0,0,13,3,1,573.5,1096656.783655462,748899.9084199254,166593.5091826867,0,2013.068146743902 -13815,17045,31138,31140,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,8.381266693265554,8.698993751552994,0,1,-12,66.69586198108861,-9,-9,-9,2019,11,0,40,0,1,2,0,15.90478601589797,15.90478601589797,0,0,0,0,0,1,1,0,2.398661640262874,0,49,56,54.96,53.17,7,1,1,0,0,1,4,5,1,1209,205801.1356762761,203493.4848715637,180137.2194167625,57753.47548996106,4672.453779750585 -13815,17045,31139,-9,31138,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.7086345490342,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,1209,205801.1356762761,203493.4848715637,180137.2194167625,57753.47548996106,4672.453779750585 -13815,17045,31140,31138,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.494374777454855,8.423516668771676,0,1,12,27.3143494320122,0,2,2,2019,6,0,40,45,1,0,0,9.530591800903535,9.530591800903535,0,0,0,0,0,1,1,0,0,0,54.96,53.17,49,56,10,1,1,0,0,7,4,5,1,1209,205801.1356762761,203493.4848715637,180137.2194167625,57753.47548996106,4672.453779750585 -13816,17046,31141,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.328935512002809,7.067578702031265,0,0,-963.6402584432167,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.353740596211471,58.54,34.27,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,2365,873881.5792007975,80483.50906385311,431961.177132997,0,1269.390807328052 -13817,17047,31142,31143,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,7.230663822645237,7.630984414865949,0,3,0,50.72579268486986,0,-9,-9,2019,17,5,30,40,1,5,0,8.453560157508738,8.453560157508738,0,0,0,0,0,0,0,0,0,0,31.84,22.06,43.97,49.77,3.333333333333333,1,1,0,0,12,12,5,1,516,1816942.090276902,1272791.443711577,283071.5673142436,0,3711.443838532828 -13817,17047,31143,31142,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.686173453359979,9.052869789050085,0,3,0,-51.95835583327901,0,3,3,2019,9,1,37,76,1,1,0,19.1253739266697,19.1253739266697,0,0,0,0,0,0,0,0,7.917695407242671,0,43.97,49.77,31.84,22.06,5,1,1,0,0,12,12,5,1,516,1816942.090276902,1272791.443711577,283071.5673142436,0,3711.443838532828 -13818,17048,31144,-9,31145,31146,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-942.7456875708122,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,528,70693.71256654106,137561.013379827,0,0,4319.245570261773 -13818,17048,31145,31146,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.144444211404926,8.298757380658909,0,4,1,-32.72201225336671,0,3,2,2019,6,0,38,42,1,0,0,10.51730147530263,10.51730147530263,0,0,0,0,0,1,1,0,.3907788494318058,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,12,4,5,1,528,70693.71256654106,137561.013379827,0,0,4319.245570261773 -13818,17048,31146,31145,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.91680185801944,8.775415502566831,0,4,-1,-119.3720183134469,0,-9,-9,2019,11,0,30,24,1,0,0,29.91205660281518,29.91205660281518,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48.87,58.55,6.666666666666667,1,1,0,0,4,4,5,1,528,70693.71256654106,137561.013379827,0,0,4319.245570261773 -13819,17049,31147,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.802277104171087,7.743775839585067,0,0,0,-961.6982571133158,0,-9,-9,2019,36,12,24,28,1,12,0,10.15688366653217,10.15688366653217,0,0,0,0,0,1,1,0,0,0,23.28,38.38,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,2447,261218.0573802623,33777.38280395797,0,0,857.2010179785037 -13820,17050,31148,31149,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,0,0,2,3,-61.79991722468117,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,42.22,56.11,7,1,1,0,0,0,5,2,1,515.5,1023967.797515108,133058.7780127761,519479.1362756853,33824.13016105885,1367.914931919866 -13820,17050,31149,31148,-9,-9,1,0,64,0,1,0,2,2,-9,0,3,0,7.583698721302518,7.341195741975057,2,-3,16.2074526474006,0,3,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.688494202529111,7.347041623199923,42.22,56.11,51,48,1.666666666666667,1,1,0,0,1,5,2,1,515.5,1023967.797515108,133058.7780127761,519479.1362756853,33824.13016105885,1367.914931919866 -13820,17051,31150,-9,31151,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.8393799497571,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1066,175838.6618584719,72442.43150700686,294463.9936697652,123364.3352029372,1756.924182957689 -13820,17051,31151,-9,31149,31148,1,0,32,0,1,0,2,2,-9,0,4,8.031536728485147,8.345693829471577,5.462517346561323,0,0,-1030.638211081359,0,2,2,2019,11,0,43,43,1,0,0,8.921795378767598,8.921795378767598,0,0,0,0,2,1,1,0,6.13304381258746,0,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,1066,175838.6618584719,72442.43150700686,294463.9936697652,123364.3352029372,1756.924182957689 -13821,17052,31152,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.106746537702526,6.617857772742813,0,0,-1042.070541511506,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.7969590431385097,7.053710346497361,54.85,29.1,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,248,428540.177163757,155971.4018073466,305315.3159405013,0,1084.850271705385 -13822,17053,31153,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1006.108953628415,0,3,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.79,46.82,-9,-9,5,4,2,0,1,0,8,1,0,668,0,0,0,0,1204.218606807806 -13823,17054,31154,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.414875182970194,7.696630375293727,0,0,0,-983.3944699568027,-9,1,1,2019,12,0,36,0,1,0,0,9.437358307925061,9.437358307925061,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,3976,-126018.0835078636,0,114520.8176088561,4226.993028264453,1010.110386735762 -13824,17055,31155,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.387286770925281,7.073356499491266,0,0,-1024.208551426592,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.41663408727096,6.97303253158639,55,45,-9,-9,8,1,1,0,0,0,5,2,1,619,259330.6970057052,138039.797781144,121495.5379709557,0,820.7629516920217 -13824,17056,31156,-9,-9,31155,1,1,52,0,0,0,3,3,-9,0,2,7.798821493013718,7.691423948832353,0,0,0,-946.4508520306414,0,3,3,2019,8,0,37,40,1,0,0,6.322902539981592,6.322902539981592,0,0,0,0,7,1,1,0,0,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,770,164666.1691483158,0,97707.56388698646,0,1141.044591267313 -13825,17057,31157,31158,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.316728954973762,8.856097703578467,0,43,-8,145.9011572492849,0,2,2,2019,14,4,40,36,1,4,0,15.82507442792069,15.82507442792069,0,0,0,0,0,1,1,0,6.794831266809104,0,44.44,51.2,49.25,52.88,8.333333333333334,1,1,0,0,8,8,4,1,1130,922913.9403802999,763476.5234799518,154198.5872169377,35622.81093492464,3371.259991597847 -13825,17057,31158,31157,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.005596983374846,6.15105787459416,43,8,74.96166995520603,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.365981673589878,5.877323383045637,49.25,52.88,44.44,51.2,1.666666666666667,1,1,0,0,3,8,4,1,1130,922913.9403802999,763476.5234799518,154198.5872169377,35622.81093492464,3371.259991597847 -13825,17058,31159,-9,31157,31158,1,0,35,0,0,0,2,2,-9,0,3,8.281304937679099,8.489910222402047,0,0,0,-908.9408839374433,0,2,2,2019,13,2,43,41,1,2,1,10.70705111025773,10.70705111025773,0,0,0,0,0,1,1,0,0,0,35.21,41.59,-9,-9,6.666666666666667,4,5,0,0,8,8,5,1,205,121403.2428222142,52868.53921332886,0,0,2291.480702318308 -13826,17059,31160,31161,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.721531331339076,8.355507409854612,0,7,-5,-66.71540385396047,0,-9,-9,2019,11,0,30,15,1,2,0,19.92546068734989,19.92546068734989,0,0,0,0,0,1,1,0,4.720163901850094,0,50,48,55.19,54.26,7,1,1,0,0,1,7,5,1,425,673112.5781689667,157441.2201846117,536957.6291452626,203500.1034148717,4530.701585290393 -13826,17059,31161,31160,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.073301392198239,8.050408324221188,41,5,3.436395466964892,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.7185828917322775,8.135478470116114,55.19,54.26,50,48,8.333333333333334,1,1,0,0,0,7,5,1,425,673112.5781689667,157441.2201846117,536957.6291452626,203500.1034148717,4530.701585290393 -13827,17060,31162,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.80314739308769,5.952371966700928,0,0,-1040.948524678289,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.416553783368365,6.570589238549677,25.37308452881947,0,1,1,0,5.746177467975356,6.025044700167489,58.11,23.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,821,214511.2222282147,-9271.784680088153,169599.5454185795,0,1332.438884662813 -13828,17061,31163,-9,31164,31165,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-965.1793277999678,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,2,1,595.6666666666666,406089.3319986723,236260.0907875286,173720.5598333029,60360.44688538596,2307.551795717152 -13828,17061,31164,31165,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,8,2,-37.5469119091295,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,61.67,18.91,52,55,5,1,1,0,0,0,10,2,1,595.6666666666666,406089.3319986723,236260.0907875286,173720.5598333029,60360.44688538596,2307.551795717152 -13828,17061,31165,31164,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.447646115883868,7.68558241398799,0,8,-2,14.02030310293781,0,-9,-9,2019,9,0,40,35,1,1,0,5.81720065668745,5.81720065668745,0,0,0,0,0,1,1,0,0,0,52,55,61.67,18.91,8,1,1,0,0,1,10,2,1,595.6666666666666,406089.3319986723,236260.0907875286,173720.5598333029,60360.44688538596,2307.551795717152 -13828,17062,31166,-9,31164,31165,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-951.041048641874,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,10,1,1,2325,-99736.98176343703,0,0,0,0 -13829,17063,31167,-9,31168,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.504274732141001,7.671901903967917,0,0,-1040.098648605806,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.997655923871593,7.620333374539144,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,1273,724984.0188138504,425909.2011136549,0,0,448.8539136430894 -13829,17064,31168,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.075483682363968,6.759492331862103,0,0,-976.4580484718196,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.675749876814668,2.232771461965755,53.44970648687071,0,1,1,0,4.064145189612376,6.242002447369766,60.95,27.77,-9,-9,10,1,1,0,0,0,11,2,1,164,650733.6422314872,118871.4168602314,243507.8989076731,0,1038.41120280998 -13830,17065,31169,31170,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,43,-4,-105.5145794276045,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.15,41.01,44.33,20.38,10,1,1,0,0,0,2,2,1,1835,399816.5164581491,5690.488165635546,153276.1345509346,0,2445.034726046612 -13830,17065,31170,31169,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.136889771594361,6.048821108055534,43,4,122.3062798580578,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,122.6284408929874,0,0,1,1,0,0,6.088960452274321,44.33,20.38,57.15,41.01,6.666666666666667,1,1,0,0,0,2,2,1,1835,399816.5164581491,5690.488165635546,153276.1345509346,0,2445.034726046612 -13831,17066,31171,31172,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,9,-3,28.30287755045594,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.370254490302401,0,59.14,52.5,52.32,38.44,8.333333333333334,1,1,0,0,0,8,3,1,766.5,783785.7977279058,458653.4609331508,272489.4382354361,0,2965.185365778189 -13831,17066,31172,31171,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.176475727456294,8.468628680605237,52,3,-23.66037001477359,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,0,3.305647263658462,0,0,1,1,0,0,8.197677707892165,52.32,38.44,59.14,52.5,8.333333333333334,1,1,0,0,3,8,3,1,766.5,783785.7977279058,458653.4609331508,272489.4382354361,0,2965.185365778189 -13832,17067,31173,-9,31175,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-903.3061698454534,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,928,-40678.36059406736,0,0,0,2578.797330614829 -13832,17067,31174,-9,31175,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-997.1128360304145,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,55.32,-9,-9,10,1,1,0,0,0,4,3,0,928,-40678.36059406736,0,0,0,2578.797330614829 -13832,17067,31175,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.498936200729516,7.761729657642789,7.367102651094553,0,0,-1007.614423870723,-9,2,3,2019,7,0,36,0,1,0,0,5.401075077407389,5.401075077407389,0,0,0,0,0,1,1,0,7.359249253014459,0,54.69,57.47,-9,-9,10,1,1,0,0,6,4,3,0,928,-40678.36059406736,0,0,0,2578.797330614829 -13832,17067,31176,-9,31175,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.638885423795,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,928,-40678.36059406736,0,0,0,2578.797330614829 -13833,17068,31177,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.741110710587245,6.436428478041205,0,0,-1174.979961270125,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,6.467065215652807,67.45,28.65,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,265,475305.3237922834,107030.9958463908,349664.6417753663,0,1105.876718532651 -13834,17069,31178,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.952582774308627,6.775517906028803,0,0,-1008.63729018975,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.412514053954143,53,45,-9,-9,8,1,1,0,0,0,8,2,1,436,400517.3524365517,62510.49721762917,282811.1625392035,0,1405.030809539857 -13835,17070,31179,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.119757845884675,7.481450643420583,0,0,-1042.396054276796,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.186949714836956,62.6,24.03,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,17,416486.9039944006,122827.5134063001,304000.9628035157,0,1612.5129101839 -13836,17071,31180,-9,31182,31183,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.091018812431,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,589.5,58529.98826033704,0,162867.1726050101,0,1976.004450486925 -13836,17071,31181,-9,31182,31183,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.0543706694413,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,589.5,58529.98826033704,0,162867.1726050101,0,1976.004450486925 -13836,17071,31182,31183,-9,-9,1,0,43,0,2,0,2,2,-9,0,1,7.53691003330167,7.329652685284411,0,17,-1,109.401899880526,0,-9,-9,2019,29,12,24,20,1,12,0,8.612664047800068,8.612664047800068,0,0,0,0,14.5,1,1,0,0,0,42.96,24.1,65.46000000000001,39.98,3.333333333333333,2,3,0,0,9,6,3,1,589.5,58529.98826033704,0,162867.1726050101,0,1976.004450486925 -13836,17071,31183,31182,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.527727005704445,7.448923366273009,0,17,1,-89.68690033906211,0,3,3,2019,5,2,48,37,1,2,0,5.017412504288708,5.017412504288708,0,0,0,0,2,1,1,0,0,0,65.46000000000001,39.98,42.96,24.1,6.666666666666667,2,3,0,0,9,6,3,1,589.5,58529.98826033704,0,162867.1726050101,0,1976.004450486925 -13837,17072,31184,-9,31186,31187,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.048940961883,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,.5642440610872086,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,667.25,127594.0177666398,163850.8584551685,62207.46001597374,56164.05032958534,1920.5308207795 -13837,17072,31185,-9,31186,31187,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.0454073540958,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,3,1,667.25,127594.0177666398,163850.8584551685,62207.46001597374,56164.05032958534,1920.5308207795 -13837,17072,31186,31187,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.341044386168594,8.316713979460022,0,10,-6,-6.717775139092939,0,2,1,2019,12,0,50,44,1,0,0,11.25222395541436,11.25222395541436,0,0,0,0,7,1,1,0,0,0,37.92,53.03,30.12,25.47,3.333333333333333,1,1,0,0,10,6,3,1,667.25,127594.0177666398,163850.8584551685,62207.46001597374,56164.05032958534,1920.5308207795 -13837,17072,31187,31186,-9,-9,1,1,47,0,2,0,3,3,-9,1,1,0,0,0,10,6,-68.61802878088803,0,2,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,25.47,37.92,53.03,0,1,1,0,1,8,6,3,1,667.25,127594.0177666398,163850.8584551685,62207.46001597374,56164.05032958534,1920.5308207795 -13838,17073,31188,-9,31190,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.265481372855,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,750,15693.5035702117,-15426.44106535326,0,0,2116.78291367208 -13838,17073,31189,-9,31190,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.410125450718,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,1,0,750,15693.5035702117,-15426.44106535326,0,0,2116.78291367208 -13838,17073,31190,-9,-9,-9,1,0,32,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1027.296744462676,0,2,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,31.36,20.96,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,750,15693.5035702117,-15426.44106535326,0,0,2116.78291367208 -13839,17074,31191,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.020896511680679,6.492797361284453,0,0,-1045.329686455986,0,-9,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.790366864263951,6.522184801013368,49.17,50.19,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,430,-26464.01607323295,0,0,0,1021.415511157213 -13839,17075,31192,-9,31191,-9,1,1,37,0,0,0,2,2,-9,0,4,9.360310187407618,9.171969439445336,0,0,0,-1077.636223382872,0,1,2,2019,10,0,68,68,1,1,0,17.00400946803552,17.00400946803552,0,0,0,0,0,1,1,0,2.961857727243038,0,51,56,-9,-9,7,1,1,0,0,1,9,5,1,557,395055.1326953402,0,203645.0310093429,107302.9612182505,3211.323340423947 -13840,17076,31193,31194,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.400343760268933,7.488172371055271,0,7,0,19.55825263517433,0,-9,-9,2019,23,11,40,40,1,11,0,5.228989750320871,5.228989750320871,0,0,0,0,0,0,0,0,1.806833679515191,0,40.88,49.19,58.32,50.22,6.666666666666667,1,1,0,0,8,4,4,1,1244.5,850057.9930627053,841123.9558857796,0,0,2245.284129856529 -13840,17076,31194,31193,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.252224390071278,8.648241208942318,0,38,0,63.82067171323323,0,2,2,2019,6,0,43,44,1,0,0,9.593781148164361,9.593781148164361,0,0,0,0,0,0,0,0,2.321213077556021,0,58.32,50.22,40.88,49.19,8.333333333333334,1,1,0,0,8,4,4,1,1244.5,850057.9930627053,841123.9558857796,0,0,2245.284129856529 -13840,17077,31195,-9,31193,31194,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1041.145884565341,-9,3,3,2019,24,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,1329,95461.47198938274,0,0,0,618.0105006357218 -13841,17078,31196,-9,31198,31199,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.8156157583353,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,613,519026.1266861353,397322.6441940154,220475.7340508843,79189.71593078038,2504.802835630329 -13841,17078,31197,-9,31198,31199,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.2679219832348,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,613,519026.1266861353,397322.6441940154,220475.7340508843,79189.71593078038,2504.802835630329 -13841,17078,31198,31199,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.294139883651342,7.165603257644153,0,21,-6,-32.63243516348073,0,3,2,2019,6,0,30,30,1,0,0,5.654494615696506,5.654494615696506,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.59,61.77,8.333333333333334,1,1,0,0,13,2,4,1,613,519026.1266861353,397322.6441940154,220475.7340508843,79189.71593078038,2504.802835630329 -13841,17078,31199,31198,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.611376948586308,8.202899346777103,0,23,6,-16.03559509979486,0,3,3,2019,12,1,48,47,1,1,0,8.229538990858645,8.229538990858645,0,0,0,0,0,1,1,0,0,0,41.59,61.77,57.06,57.76,3.333333333333333,1,1,0,0,13,2,4,1,613,519026.1266861353,397322.6441940154,220475.7340508843,79189.71593078038,2504.802835630329 -13842,17079,31200,-9,31201,31202,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.8065603883996,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.7058929223661199,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,923.25,432261.9855107687,114328.3817764462,171892.927298732,90586.6325212736,4184.81101700318 -13842,17079,31201,31202,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.67377811147959,7.58363396139057,0,7,-6,82.52859802608347,0,-9,-9,2019,21,9,29,29,1,9,0,8.775293921750084,8.775293921750084,0,0,0,0,2,1,1,0,5.398402355114901,0,28.57,61.36,38.09,63.39,6.666666666666667,1,1,0,0,8,2,4,1,923.25,432261.9855107687,114328.3817764462,171892.927298732,90586.6325212736,4184.81101700318 -13842,17079,31202,31201,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.664270382185245,8.98679696936412,0,7,6,-7.335730143905421,0,3,3,2019,14,2,42,50,1,2,0,23.43749119176105,23.43749119176105,0,0,0,0,0,1,1,0,6.177002338993279,0,38.09,63.39,28.57,61.36,8.333333333333334,1,1,0,0,8,2,4,1,923.25,432261.9855107687,114328.3817764462,171892.927298732,90586.6325212736,4184.81101700318 -13842,17079,31203,-9,31201,31202,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.617011890267,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.5020604814625038,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,923.25,432261.9855107687,114328.3817764462,171892.927298732,90586.6325212736,4184.81101700318 -13843,17080,31204,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.057163562930123,6.144210545411273,0,0,-988.4920879683423,0,2,1,2019,18,7,0,23,3,7,0,0,0,0,0,0,0,0,0,0,0,6.792010982065288,6.219094966530504,34.65,58.34,-9,-9,5,1,1,1,0,10,9,2,1,245,735186.6725445136,6457.085977877039,477434.1706594839,0,512.5752086517512 -13843,17081,31205,-9,31204,-9,1,0,27,0,0,0,1,1,-9,0,4,8.607177886042459,8.534384800474516,0,0,0,-989.6774334480705,0,2,-9,2019,16,4,40,63,1,4,1,16.07260317503043,16.07260317503043,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,789,-174936.5395521386,-38120.51708936247,127258.2659716112,146177.6469483907,2010.930246976847 -13844,17082,31206,31207,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,43,-3,92.07197862438217,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.113623926179853,0,57.33,53.46,43.55,42.24,8.333333333333334,1,1,0,0,10,5,3,1,1629.5,848452.174906902,538190.3072149637,280685.315317705,-7751.189816697221,1319.529650829566 -13844,17082,31207,31206,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.843941948942951,7.666569451508134,43,3,82.97149831791891,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,4.111147792758627,0,0,1,1,0,2.966459421497072,7.84426620386809,43.55,42.24,57.33,53.46,8.333333333333334,1,1,0,0,8,5,3,1,1629.5,848452.174906902,538190.3072149637,280685.315317705,-7751.189816697221,1319.529650829566 -13844,17083,31208,-9,31206,31207,1,1,33,0,0,0,2,2,-9,0,3,6.839516481851401,7.222813872243881,0,0,0,-997.6259744562844,0,2,2,2019,5,0,22,30,1,0,0,5.89923477657106,5.89923477657106,0,0,0,0,0,1,1,0,4.608084503096308,0,57.33,53.46,-9,-9,10,1,1,0,0,10,5,3,1,869,-18915.4949708737,61174.44311502721,51257.25632476634,72885.07676526136,546.5051992022892 -13845,17084,31209,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1070.161485396194,0,3,3,2019,30,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,29.88,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,253,-40122.07366657417,91451.0209406435,0,0,1164.846909721653 -13846,17085,31210,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,6.839145958372027,6.856560441529004,0,0,-1062.098567279483,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.866763565652165,61.06,46.42,-9,-9,10,3,4,0,0,4,8,2,0,497,-45682.47200278868,137143.8283819961,301814.2064099661,252820.1524038837,1039.812017134259 -13847,17086,31211,31212,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,7.559464605077163,7.473828467430353,9,6,7.912706167348023,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.935115639640479,7.345864433408005,53,55,57.33,53.46,8,1,1,0,0,0,10,3,1,1640.5,650351.5624986166,359138.3591795633,281288.3474922674,0,1933.654970956699 -13847,17086,31212,31211,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,7.005370142978322,6.864790962381688,0,21,-6,-197.4948788120698,0,2,2,2019,12,0,10,14,1,0,0,10.92971260098834,10.92971260098834,0,0,0,0,116,1,1,0,0,0,57.33,53.46,53,55,8.333333333333334,1,1,0,0,2,10,3,1,1640.5,650351.5624986166,359138.3591795633,281288.3474922674,0,1933.654970956699 -13848,17087,31213,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.131288053272766,7.416352170882833,0,0,-938.3960358541874,-9,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.283675881665039,62.1,51.16,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,279,481975.2165195858,182725.5491834586,316668.9485534581,0,575.826779233763 -13849,17088,31214,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.847374129295435,8.687317135027785,0,0,0,-939.2084611895566,0,-9,-9,2019,9,1,39,39,1,1,0,21.6879734060969,21.6879734060969,0,0,0,0,0,0,0,0,3.495631168085179,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,408,262502.4567006332,51224.7891026604,127057.9511578269,84619.4073468073,1687.469479292762 -13850,17089,31215,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.251716042439538,8.31650842343039,0,0,0,-944.8176423227538,0,2,2,2019,4,0,20,50,1,0,0,27.5938986922492,27.5938986922492,0,0,0,0,0,0,0,0,1.537987294732349,0,58.17,31.79,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,578,25471.63891296037,82627.36020820957,0,0,1824.65884994047 -13851,17090,31216,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.417110679929985,7.481809079592436,0,0,-894.3693679170226,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.061614928954682,7.422134716061317,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,567,731925.3018897609,294248.9268552269,218212.7881902315,0,1696.543199421918 -13852,17091,31217,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,5.718092380473688,5.677184135055479,0,0,-973.6070848315129,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,7.515748373924877,0,63.4297604841528,0,1,1,0,3.876007502850343,5.496599458989819,52.91,44.6,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1123,197665.8172065869,176904.5188995166,159650.9853520504,0,1071.772132270765 -13853,17092,31218,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-939.7545225304908,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.05,22.33,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,275,-21172.59878032532,0,0,0,946.93114906267 -13854,17093,31219,31220,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.08044075521202,9.218732985717219,0,8,3,21.65930566560753,0,-9,-9,2019,17,5,67,59,1,5,0,14.70843537201015,14.70843537201015,0,0,0,0,0,0,0,0,7.833183183978535,0,17.8,66.2,52,54.51,3.333333333333333,1,1,0,0,10,5,5,1,907,419543.7125134525,2442.436185317907,581341.2977088054,367502.3544008912,5476.207968579722 -13854,17093,31220,31219,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.858297882314009,8.813684106049408,0,8,-3,-63.69759382066346,0,2,3,2019,7,0,38,37,1,0,0,16.30589858698452,16.30589858698452,0,0,0,0,0,0,0,0,6.991577574367893,0,52,54.51,17.8,66.2,8.333333333333334,1,1,0,0,11,5,5,1,907,419543.7125134525,2442.436185317907,581341.2977088054,367502.3544008912,5476.207968579722 -13855,17094,31221,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.400241850290163,8.469493863953895,6.454849199774863,0,0,-864.0674419775492,0,2,2,2019,12,0,40,47,1,0,0,12.71981879364799,12.71981879364799,0,0,0,0,0,1,1,0,6.313912729331939,5.126995885573091,40.49,55.78,-9,-9,6.666666666666667,1,1,0,0,13,10,5,0,1342,154964.1974499168,148230.4955599184,0,0,2640.049368278956 -13855,17095,31222,-9,31221,-9,1,0,28,0,0,0,1,1,-9,0,2,8.214659215909464,7.885725907045416,4.759291251253773,0,0,-917.4600799262125,0,2,2,2019,25,11,40,45,1,11,0,7.815697995832417,7.815697995832417,0,0,0,0,0,1,1,0,4.838916478954816,0,20.56,46.66,-9,-9,3.333333333333333,1,1,0,0,6,10,4,0,834,-24673.00430999278,-83006.43771034588,0,0,1231.65677634031 -13855,17096,31223,-9,31221,-9,1,0,25,0,0,0,2,2,-9,0,2,8.101250662307974,8.202708167840184,0,0,0,-949.7276032841802,0,2,2,2019,15,3,37,37,1,3,0,11.19129631302343,11.19129631302343,0,0,0,0,2,1,1,0,1.085320314778992,0,26.39,57.34,-9,-9,3.333333333333333,1,1,0,0,7,10,4,0,238,45915.67096911714,0,0,0,2374.937646218176 -13856,17097,31224,31225,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.864586915931918,6.623198684465123,55,-6,-40.30538619670996,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,.6300317717650786,6.587296538413525,49.94,58.01,60.87,18.53,8.333333333333334,1,1,0,0,0,13,3,1,669.5,695287.7816391402,404305.3832759951,319898.639306359,0,2820.936660770196 -13856,17097,31225,31224,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.358353404371864,7.354881009459993,55,6,-9.118114065684978,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,133.520886817406,0,0,1,1,0,.56692033677114,7.434058824669953,60.87,18.53,49.94,58.01,8.333333333333334,1,1,0,0,0,13,3,1,669.5,695287.7816391402,404305.3832759951,319898.639306359,0,2820.936660770196 -13857,17098,31226,31227,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,9,14,0,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,1.583810153606163,5.146754262755456,24.15496913706804,0,1,1,0,0,0,47.72,29.84,59.63,41.44,6.666666666666667,1,1,0,0,0,4,1,0,1843,77591.49505413994,-50696.85928384451,78065.1776828828,0,3574.845619173561 -13857,17098,31227,31226,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,21,-14,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.8714581633112419,0,59.63,41.44,47.72,29.84,6.666666666666667,1,1,0,0,0,4,1,0,1843,77591.49505413994,-50696.85928384451,78065.1776828828,0,3574.845619173561 -13858,17099,31228,31229,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,38,3,0,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,120,1,1,0,0,0,23.94,23.19,36.04,22.78,0,1,1,0,1,0,13,1,0,851.5,158186.1196950814,0,0,0,1572.208796892317 -13858,17099,31229,31228,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,38,-3,0,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.04,22.78,23.94,23.19,1.666666666666667,1,1,0,0,0,13,1,0,851.5,158186.1196950814,0,0,0,1572.208796892317 -13859,17100,31230,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.937273011402429,8.240812624708832,0,0,0,-821.8035243816511,0,1,2,2019,21,9,22,21,1,9,0,14.07597709476846,14.07597709476846,0,0,0,0,7,1,1,0,3.819956270550613,0,41.27,49.97,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,991,164408.4942542246,-72096.17830500747,185340.7391190772,47539.87582270542,1308.943554587058 -13859,17100,31231,-9,31230,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.3073106223402,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,991,164408.4942542246,-72096.17830500747,185340.7391190772,47539.87582270542,1308.943554587058 -13860,17101,31232,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,5,0,0,0,0,0,-946.1396832518391,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.32,53.95,-9,-9,10,1,1,0,0,5,5,1,0,276,-29437.60091288278,26556.83074647198,0,0,420.6786715464272 -13860,17102,31233,-9,31232,-9,1,0,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-965.2609144033163,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,5,1,0,328,147294.9160959387,0,0,0,241.8031576753006 -13861,17103,31234,-9,31235,31236,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1000.800646860187,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1149.333333333333,2247240.428775014,1905262.393910103,283331.8292601111,42234.90696528223,5846.400965597255 -13861,17103,31235,31236,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.355600028202304,8.221537088204888,0,27,-6,15.21069475262315,0,2,2,2019,2,0,48,50,1,0,0,10.98544342210848,10.98544342210848,0,0,0,0,0,0,0,0,5.02694001395201,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,2,5,1,1149.333333333333,2247240.428775014,1905262.393910103,283331.8292601111,42234.90696528223,5846.400965597255 -13861,17103,31236,31235,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.982637527484895,9.196281170073732,0,27,6,23.64690260298487,0,-9,-9,2019,9,0,45,40,1,0,0,32.06658982424485,32.06658982424485,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1149.333333333333,2247240.428775014,1905262.393910103,283331.8292601111,42234.90696528223,5846.400965597255 -13861,17104,31237,-9,31235,31236,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1049.630858314113,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,256,-33232.74292673427,0,0,0,0 -13862,17105,31238,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.708372378442172,7.163425245282209,0,0,-1033.880674693178,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,14.38513703855974,0,0,1,1,0,0,7.024523361538431,65.52,21.33,-9,-9,10,1,1,0,0,0,13,2,1,1024,10283.27218538126,12912.49418364911,0,0,2221.81147615752 -13863,17106,31239,-9,-9,31241,1,0,30,0,0,0,2,2,-9,0,5,8.197024637333648,8.165419535394534,0,0,0,-969.0042281050033,0,3,1,2019,12,0,34,-9,1,0,1,9.967830637053238,9.967830637053238,0,0,0,0,0,0,0,0,2.597413770162599,0,38.37,59.33,-9,-9,10,1,1,0,0,12,10,4,1,533,130302.4875108772,0,0,0,1147.132621959115 -13863,17107,31240,-9,-9,31241,1,0,30,0,0,0,2,2,-9,0,5,7.693829834411438,7.602549926965499,0,0,0,-869.9520780896918,0,2,2,2019,6,0,40,38,1,0,1,6.020503572341389,6.020503572341389,0,0,0,0,0,0,0,0,1.416281246612451,0,41.07,60.93,-9,-9,5,1,1,0,0,11,10,3,1,531,82979.52921765222,-23444.29061353616,0,0,854.1169901714085 -13863,17108,31241,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.391173370532356,7.87185572450502,0,0,0,-1048.916324177503,0,2,2,2019,11,0,60,-9,1,0,0,3.976720893883214,3.976720893883214,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,1148,428567.8574692362,-14848.70359270764,232650.7043037886,0,1109.913223908842 -13864,17109,31242,31243,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.209823610720203,8.455115744935895,57,2,-47.02145540669841,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.255353598077108,8.559652775043043,52,54.51,50.51,42.98,8.333333333333334,1,1,0,0,0,6,3,1,681,1042727.72094589,819266.6275840746,179615.2858984381,0,3163.797944532592 -13864,17109,31243,31242,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-2,109.4468553799087,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50.51,42.98,52,54.51,8.333333333333334,1,1,0,0,0,6,3,1,681,1042727.72094589,819266.6275840746,179615.2858984381,0,3163.797944532592 -13865,17110,31244,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,5.420987519011299,5.550779787830419,0,0,-1073.43904326838,0,-9,-9,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.544365675292172,62.57,51.16,-9,-9,10,1,1,0,0,9,10,2,0,986,323931.0235689864,67817.32027114337,0,0,1070.692524190927 -13866,17111,31245,31249,-9,-9,1,0,55,1,3,0,2,2,-9,0,2,0,0,0,5,1,-9.221290047958943,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,57.88,50.43,51.02,6.666666666666667,1,1,0,0,5,11,2,0,456,337404.5701172029,175098.2945223467,125761.0889062856,18862.85475788427,3330.603721309737 -13866,17111,31246,-9,31245,31249,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.580560727498,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,456,337404.5701172029,175098.2945223467,125761.0889062856,18862.85475788427,3330.603721309737 -13866,17111,31247,-9,31245,31249,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.152047520773,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,2,0,456,337404.5701172029,175098.2945223467,125761.0889062856,18862.85475788427,3330.603721309737 -13866,17111,31248,-9,31245,31249,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.364282356773,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,456,337404.5701172029,175098.2945223467,125761.0889062856,18862.85475788427,3330.603721309737 -13866,17111,31249,31245,-9,-9,1,1,54,1,3,0,2,2,-9,0,3,7.681982702593352,7.869479431147629,0,5,-1,-136.5279098234006,0,-9,-9,2019,11,0,47,47,1,0,0,5.688374372188195,5.688374372188195,0,0,0,0,0,1,1,0,0,0,50.43,51.02,31.18,57.88,6.666666666666667,1,1,0,0,6,11,2,0,456,337404.5701172029,175098.2945223467,125761.0889062856,18862.85475788427,3330.603721309737 -13867,17112,31250,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-909.261981265641,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.21,52.55,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,702,153292.2221965206,0,0,0,438.903351185406 -13868,17113,31251,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.409514179151348,9.077796987342305,0,0,0,-946.702342499806,0,2,2,2019,8,0,37,75,1,0,0,28.21444969206943,28.21444969206943,0,0,0,0,0,1,1,0,4.425558539724207,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,161,1705773.706799997,1510607.386141905,277108.9634646366,97299.8819521759,2159.759573146493 -13869,17114,31252,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.434540744977484,9.775127099663418,0,0,0,-1066.139887857585,0,2,3,2019,22,9,50,50,1,9,0,31.63071416010762,31.63071416010762,0,0,0,0,0,0,0,0,0,0,34.92,47.25,-9,-9,1.666666666666667,4,5,0,0,5,8,5,0,3072,1682459.7172033,38208.19305203815,1804565.708844899,427161.2126573782,10874.80565064074 -13870,17115,31253,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.935562216904791,8.198788643130385,7.810133776683979,0,0,-861.7057102211063,0,3,3,2019,13,1,40,50,1,1,0,7.087073699653835,7.087073699653835,0,0,0,0,7,0,0,0,7.564034553888829,7.768431679572975,59.76,35.92,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,3704,938654.1203467045,650824.6345537176,348382.8575337778,0,3447.057512807415 -13871,17116,31254,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.445605825357106,8.311021122567492,0,0,0,-987.4129753127741,0,-9,-9,2019,5,0,41,40,1,0,0,11.30048808383159,11.30048808383159,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,838,72782.34293894932,165343.5443356043,0,0,1121.968952118034 -13872,17117,31255,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.987485951053836,6.649639813474147,0,0,-1120.20203238815,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.7817116244960352,6.504819597786059,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,397,489782.0431068367,230989.5348916382,317815.9875757825,253065.3398809995,1585.949330512591 -13873,17118,31256,31257,-9,-9,1,1,55,0,0,0,3,3,-9,1,4,0,4.529688435728097,4.360265399314377,21,11,119.1896175965477,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.396033204504997,4.423772013825231,54,54,19.99,33.18,8,1,1,0,0,0,6,2,0,1325,-32307.53164949355,0,0,0,2788.704833494203 -13873,17118,31257,31256,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,21,-11,15.39772928656537,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,19.99,33.18,54,54,1.666666666666667,1,1,0,0,0,6,2,0,1325,-32307.53164949355,0,0,0,2788.704833494203 -13874,17119,31258,31260,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,7.808887661038497,7.732646641350829,0,17,4,125.8781813058053,0,3,2,2019,7,0,40,50,1,0,0,7.534085166402353,7.534085166402353,0,0,0,0,0,1,0,1,0,0,57.16,56.15,43.35,57.8,8.333333333333334,1,1,0,0,10,4,3,1,629,465915.585941017,304582.0148248038,83651.59496194657,59227.85625188501,3490.267425164678 -13874,17119,31259,-9,31260,31258,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.161923303377,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,629,465915.585941017,304582.0148248038,83651.59496194657,59227.85625188501,3490.267425164678 -13874,17119,31260,31258,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.754075455267487,7.915343893553543,0,17,-4,100.9858645509589,0,2,2,2019,8,0,18,22,1,0,0,14.11034799023606,14.11034799023606,0,0,0,0,0,1,0,1,0,0,43.35,57.8,57.16,56.15,8.333333333333334,1,1,0,0,11,4,3,1,629,465915.585941017,304582.0148248038,83651.59496194657,59227.85625188501,3490.267425164678 -13874,17119,31261,-9,31260,31258,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1146.456445532755,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,629,465915.585941017,304582.0148248038,83651.59496194657,59227.85625188501,3490.267425164678 -13874,17119,31262,-9,31260,31258,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.030903415349,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,3,1,629,465915.585941017,304582.0148248038,83651.59496194657,59227.85625188501,3490.267425164678 -13875,17120,31263,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.319881390067565,7.205192438139986,0,0,-783.6200033502712,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.002811578055462,7.22967551609789,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,586,455807.5994388534,207516.0227864341,167126.373310722,8696.020501783691,1283.926893201314 -13876,17121,31264,31265,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.740102536004748,9.76588275469504,0,5,-4,31.75299149812033,0,-9,-9,2019,16,4,50,56,1,4,0,32.19884158330228,32.19884158330228,0,0,0,0,2,0,0,0,7.094577560151833,0,43.44,50.04,55.93,49.95,3.333333333333333,2,3,0,0,12,7,5,1,420,12824891.4650898,445370.9927492676,3980374.673943218,0,6981.726136354372 -13876,17121,31265,31264,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.924158017884981,7.943402024994927,0,5,4,-33.62124959538338,0,2,2,2019,11,0,30,30,1,0,0,8.866554312230065,8.866554312230065,0,0,0,0,0,0,0,0,6.66858331649187,0,55.93,49.95,43.44,50.04,3.333333333333333,2,3,0,0,11,7,5,1,420,12824891.4650898,445370.9927492676,3980374.673943218,0,6981.726136354372 -13877,17122,31266,31267,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.787244671248763,9.539906314123105,0,27,0,-45.53611329839116,0,2,2,2019,13,1,50,46,1,1,0,35.52292807924239,35.52292807924239,0,0,0,0,0,0,0,0,0,0,28.29,66.78,59.14,52.5,6.666666666666667,1,1,0,0,11,9,5,1,664.5,436887.9415212293,165164.6358218587,383681.7156884318,76148.95132661966,6675.631622369304 -13877,17122,31267,31266,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.583223211125196,8.374319535183588,0,27,0,154.63783630944,0,3,3,2019,7,0,31,58,1,0,0,18.10131173480231,18.10131173480231,0,0,0,0,0,0,0,0,1.668726878776703,0,59.14,52.5,28.29,66.78,10,1,1,0,0,12,9,5,1,664.5,436887.9415212293,165164.6358218587,383681.7156884318,76148.95132661966,6675.631622369304 -13877,17123,31268,-9,31267,31266,1,1,23,0,0,0,2,2,1,0,4,7.95423226480238,8.015157630575532,0,0,0,-915.8124533041359,-9,2,2,2019,11,0,38,0,1,0,1,8.078024942831268,8.078024942831268,0,0,0,0,0,0,0,0,.7371276296696188,0,47,59,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,470,79842.98430738902,0,0,0,1143.136635234454 -13877,17124,31269,-9,31267,31266,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-882.5359440579674,-9,2,2,2019,23,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,.8335084568865097,0,23.13,65.14,-9,-9,6.666666666666667,1,1,0,1,2,9,1,1,373,-34303.92960625413,0,0,0,-380.0336487563079 -13878,17125,31270,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.769259506067884,8.84143467196445,0,0,0,-1028.538015005075,0,2,1,2019,6,0,18,18,1,0,0,35.34076313676723,35.34076313676723,0,0,0,0,0,1,1,0,0,0,68.61,42.95,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,1200,433352.8637979978,305463.6340890898,286738.3771921758,-5376.167583144344,3321.33548095876 -13878,17125,31271,-9,31270,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1049.761545561586,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,4,1,1200,433352.8637979978,305463.6340890898,286738.3771921758,-5376.167583144344,3321.33548095876 -13878,17126,31272,-9,31270,-9,1,0,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-1000.296645842432,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.37,53.06,-9,-9,10,4,2,0,0,2,8,1,1,443,28916.97492931162,0,0,0,332.7906689965459 -13879,17127,31273,31274,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.888892771660254,6.799185242159481,53,0,6.904609103900638,0,2,2,2019,7,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,4.356276727368677,7.152652663221185,54.79,55.86,53,46,8.333333333333334,1,1,0,0,8,4,3,1,1457.5,533725.023115829,393062.6576611815,192165.7160229595,0,2085.070813656167 -13879,17127,31274,31273,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.743211186843927,6.455984643781225,53,9,43.2508772151501,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.323243933556506,6.582928078976288,53,46,54.79,55.86,8,1,1,0,0,0,4,3,1,1457.5,533725.023115829,393062.6576611815,192165.7160229595,0,2085.070813656167 -13880,17128,31275,31276,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.421071341683039,6.398178395298779,53,-1,85.09588030616821,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,3.664748422094982,0,120,1,1,0,6.036441658467355,6.2578925879151,42.58,26.73,37.17,47.9,6.666666666666667,1,1,0,0,0,4,2,1,520.5,54245.95884055937,75910.93109580033,0,0,1711.248182511259 -13880,17128,31276,31275,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,53,1,1.427088803451841,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.17,47.9,42.58,26.73,8.333333333333334,1,1,0,0,6,4,2,1,520.5,54245.95884055937,75910.93109580033,0,0,1711.248182511259 -13881,17129,31277,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,7.679942863326077,7.679394404629807,0,0,-893.5032683580854,0,2,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.826519036881812,7.702213270070994,57.17,37.38,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,332,486833.4225023541,234907.2217461749,236177.2587924379,0,1624.053104550252 -13882,17130,31278,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-934.2446620405739,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,13.57230412199229,0,0,1,1,0,0,0,51.06,25.63,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,471,270737.5389073808,0,201179.5399926644,0,2369.170098499796 -13883,17131,31279,-9,31280,-9,1,0,10,0,4,1,3,0,-9,0,1,0,0,0,0,0,-1021.872141288054,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,32,-9,-9,3,1,1,-9,0,0,2,1,0,1250.5,41607.85268976349,0,0,0,1646.161248054028 -13883,17131,31280,-9,-9,-9,1,0,44,0,4,0,2,2,-9,1,1,0,0,0,0,0,-1037.167260639705,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.75,18.55,-9,-9,5,1,1,0,1,0,2,1,0,1250.5,41607.85268976349,0,0,0,1646.161248054028 -13884,17132,31281,31282,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,0,0,0,21,-7,-5.745517976244117,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.730194032269258,0,56,32.97,57.16,56.15,8.333333333333334,1,1,0,0,11,11,3,1,201.5,525560.8459746664,300109.4522445175,280784.4839275843,75155.58096647305,2274.442542981292 -13884,17132,31282,31281,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.050984127403067,8.082764831138766,0,21,7,-83.81744589885021,0,1,3,2019,8,0,60,80,1,0,0,4.489970995077291,4.489970995077291,0,0,0,0,0,0,0,0,6.588929208321449,0,57.16,56.15,56,32.97,8.333333333333334,1,1,0,0,12,11,3,1,201.5,525560.8459746664,300109.4522445175,280784.4839275843,75155.58096647305,2274.442542981292 -13885,17133,31283,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.945896314643514,7.591062996505846,0,0,0,-956.6446218122284,0,2,1,2019,6,0,25,25,1,0,0,10.81247128777416,10.81247128777416,0,0,0,0,0,0,0,0,4.588831215140564,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,1197,-64995.15506854003,-17643.83695240722,0,0,1428.078112228484 -13886,17134,31284,-9,31285,31286,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.600790455556,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,737.5,548364.590875136,119577.7485020689,247886.0571648969,18462.41252707905,2289.643820297174 -13886,17134,31285,31286,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,5,-3,5.024576613186261,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23,51.67,47.47,52.37,6.666666666666667,1,1,0,0,4,7,3,0,737.5,548364.590875136,119577.7485020689,247886.0571648969,18462.41252707905,2289.643820297174 -13886,17134,31286,31285,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.554432738247375,8.681035243884702,0,5,3,-54.94139206391262,0,-9,-9,2019,17,7,47,49,1,7,0,11.43369701137879,11.43369701137879,0,0,0,0,0,1,1,0,0,0,47.47,52.37,46.23,51.67,3.333333333333333,1,1,0,0,4,7,3,0,737.5,548364.590875136,119577.7485020689,247886.0571648969,18462.41252707905,2289.643820297174 -13886,17134,31287,-9,31285,31286,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.5195311402133,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,737.5,548364.590875136,119577.7485020689,247886.0571648969,18462.41252707905,2289.643820297174 -13887,17135,31288,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1134.842876457489,0,-9,-9,2019,30,12,0,40,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.22,53.08,-9,-9,6.666666666666667,1,1,0,1,2,4,1,0,1779,304409.5825522567,0,0,0,872.565046191404 -13888,17136,31289,31290,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.947163095926451,7.948052852355272,0,7,4,39.23555829943477,0,-9,-9,2019,12,0,39,49,1,0,0,10.21431474527135,10.21431474527135,0,0,0,0,42,1,1,0,0,0,53.81,53.56,54.2,57.49,8.333333333333334,1,1,0,0,9,6,3,1,624.5,416445.1003385945,392063.5142375572,134184.6054679696,47528.64239867747,1483.008510278959 -13888,17136,31290,31289,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,0,6.366684488991974,6.27462156396535,7,-4,84.23135876714505,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,3.209262586526134,5.991516427569852,54.2,57.49,53.81,53.56,8.333333333333334,1,1,0,0,6,6,3,1,624.5,416445.1003385945,392063.5142375572,134184.6054679696,47528.64239867747,1483.008510278959 -13889,17137,31291,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,7.143117821747007,7.245841263344128,0,0,-1028.764777365262,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.98781066515957,7.229738871424525,57.06,57.76,-9,-9,10,1,1,0,0,4,7,2,1,202,759486.307755714,67062.70473771554,364009.1736878143,0,1637.172429042894 -13890,17138,31292,31293,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,7.870048882772882,7.895341158963213,6.550839211645147,27,5,7.03406248505613,0,3,3,2019,14,2,55,50,1,2,0,5.902063320739551,5.902063320739551,0,0,0,0,0,1,1,0,5.226049107677429,7.001452820383556,49.21,38.32,52.65,51.64,5,1,1,0,0,8,1,4,0,2114,229641.9910605109,115802.5818758512,213828.9632566051,0,2502.030416573643 -13890,17138,31293,31292,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.174531576209809,7.052392292905179,0,24,-5,-97.90940339056516,0,3,3,2019,7,0,34,34,1,0,0,4.939836145959942,4.939836145959942,0,0,0,0,0,1,1,0,0,0,52.65,51.64,49.21,38.32,8.333333333333334,1,1,0,0,9,1,4,0,2114,229641.9910605109,115802.5818758512,213828.9632566051,0,2502.030416573643 -13891,17139,31294,31295,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.961916495744912,7.824045785273194,0,32,-6,40.73668689867169,0,3,3,2019,12,0,54,48,1,0,0,5.190996374438691,5.190996374438691,0,0,0,0,71.5,1,1,0,0,0,43.44,61.22,52.15,48.98,8.333333333333334,1,1,0,0,11,1,4,0,1039,605199.7252516401,238770.087221303,107810.6006371362,72908.41363505114,1980.333068607743 -13891,17139,31295,31294,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.740204659561579,8.034595338609105,0,32,6,39.71338214620536,0,2,2,2019,14,2,44,39,1,2,0,8.463612588418544,8.463612588418544,0,0,0,0,71.5,1,1,0,0,0,52.15,48.98,43.44,61.22,8.333333333333334,1,1,0,0,10,1,4,0,1039,605199.7252516401,238770.087221303,107810.6006371362,72908.41363505114,1980.333068607743 -13891,17140,31296,-9,31294,31295,1,1,29,0,0,0,2,2,-9,1,3,8.21302061599456,8.236589418322193,0,0,0,-1040.772163519406,-9,2,2,2019,8,0,52,0,1,0,1,7.847074692276673,7.847074692276673,0,0,0,0,0,1,1,0,5.107126706753227,0,46.59,46.3,-9,-9,8.333333333333334,1,1,0,0,5,1,4,0,400,-143389.8739626449,3627.487000595862,0,0,1930.33291598647 -13891,17141,31297,-9,31294,31295,1,1,28,0,0,0,2,2,-9,0,3,8.171343919585707,8.199451736347523,0,0,0,-868.6630451121174,-9,2,2,2019,6,0,45,0,1,0,1,8.25660895104879,8.25660895104879,0,0,0,0,0,1,1,0,0,0,46,53,-9,-9,10,1,1,0,0,10,1,4,0,1009,19295.24480356253,-25312.52463458137,0,0,1268.742296879806 -13891,17142,31298,-9,31294,31295,1,1,24,0,0,0,2,2,-9,0,5,7.63993108252854,7.649877017204341,0,0,0,-1068.121593330077,-9,3,2,2019,6,0,52,0,1,0,1,5.957617229635709,5.957617229635709,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,10,1,1,0,0,5,1,3,0,724,24451.1253320081,0,0,0,1036.480177014475 -13891,17143,31299,-9,31294,31295,1,1,20,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1107.62005411674,-9,2,2,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,31.42,62.74,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,485,-36901.84681365697,0,0,0,-122.8644939422675 -13892,17144,31300,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.537041309558566,7.455983051201446,0,0,-960.7930597476384,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.090207948055324,7.35612010137085,46,37,-9,-9,5,1,1,0,0,0,12,3,1,155,322058.580857728,243473.2189946328,290680.3155555641,0,1792.378773515358 -13893,17145,31301,31303,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.921613742277358,9.778439033141042,0,21,2,-51.21878687179463,0,2,3,2019,10,1,50,48,1,1,0,37.8176992222214,37.8176992222214,0,0,0,0,0,0,0,0,7.155819238524932,0,41.15,59.33,48.87,58.55,6.666666666666667,1,1,0,0,8,10,5,1,719.6666666666666,2367538.388910913,1463782.813664592,803976.6527447089,0,5998.631987023037 -13893,17145,31302,-9,31303,31301,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.3149288564725,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,719.6666666666666,2367538.388910913,1463782.813664592,803976.6527447089,0,5998.631987023037 -13893,17145,31303,31301,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,21,-2,-66.95765178067766,0,2,2,2019,8,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,7.390064075800375,0,48.87,58.55,41.15,59.33,8.333333333333334,1,1,0,0,1,10,5,1,719.6666666666666,2367538.388910913,1463782.813664592,803976.6527447089,0,5998.631987023037 -13894,17146,31304,31305,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.083054741244862,4.670120158093853,54,-2,-28.68086803231798,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,.0192798748694698,0,0,1,1,0,.6266880022280414,5.137144387894745,49.68,32.32,56.69,46.84,5,1,1,0,0,0,6,3,1,1463,861424.8643530228,688271.3456709061,229052.1250824106,0,2644.197013252818 -13894,17146,31305,31304,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.011289023520535,7.917580829611106,54,2,88.57736312639429,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.456304677556536,8.242507310340532,56.69,46.84,49.68,32.32,8.333333333333334,1,1,0,0,0,6,3,1,1463,861424.8643530228,688271.3456709061,229052.1250824106,0,2644.197013252818 -13895,17147,31306,31307,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,8.702115634528512,8.695119444650292,0,28,-4,-.9419260156672602,0,3,3,2019,11,0,35,0,1,0,0,14.15101387046862,14.15101387046862,0,0,0,0,7,1,1,0,0,0,55.6,47.8,63.05,25.14,10,1,1,0,0,1,5,5,1,786,462925.7852532287,276584.5968938168,129400.2081551022,0,3075.533375076228 -13895,17147,31307,31306,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,8.132516399565032,8.192929632646075,0,28,4,-42.22853911134477,0,3,2,2019,11,0,42,43,1,0,0,10.35822313529459,10.35822313529459,0,0,0,0,7,1,1,0,0,0,63.05,25.14,55.6,47.8,8.333333333333334,1,1,0,0,7,5,5,1,786,462925.7852532287,276584.5968938168,129400.2081551022,0,3075.533375076228 -13896,17148,31308,31309,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.757447857572988,8.722156832490148,0,23,-18,-41.50148490867397,-9,2,2,2019,9,0,40,0,1,0,0,16.98543598525957,16.98543598525957,0,0,0,0,0,1,1,0,3.038120225478214,0,57.16,56.15,42.33,51.93,8.333333333333334,1,1,0,0,12,10,5,1,731.5,31432.48528121695,-21791.1138972703,246551.6764960994,74816.24925048082,3804.228032909794 -13896,17148,31309,31308,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.46676783673403,7.41131667778353,23,18,-75.89716164532413,-9,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.47335927675016,7.178597022001451,42.33,51.93,57.16,56.15,8.333333333333334,1,1,0,0,12,10,5,1,731.5,31432.48528121695,-21791.1138972703,246551.6764960994,74816.24925048082,3804.228032909794 -13897,17149,31310,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1129.703957632672,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.772060223174088,0,49,48,-9,-9,7,2,3,0,0,0,7,1,0,4090,0,0,0,0,2082.689864362193 -13897,17150,31311,-9,31310,-9,1,1,31,0,0,0,1,1,-9,0,3,8.625916039525421,8.581331538601464,0,0,0,-920.8754334745292,0,3,-9,2019,18,6,45,49,1,6,0,15.2118362975242,15.2118362975242,0,0,0,0,0,0,0,0,0,0,39.15,41.42,-9,-9,5,2,3,0,0,8,7,5,0,78,62495.53650357649,0,0,0,2277.405371091295 -13898,17151,31312,31313,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.051769209601304,7.724918494414738,5.909143456395021,13,-8,37.75761615318829,0,2,3,2019,10,0,23,19,1,0,0,13.92439918859487,13.92439918859487,0,0,0,0,0,1,1,0,6.094364015147598,0,50.51,56.39,54.1,59.11,10,1,1,0,0,9,5,4,1,891.3333333333334,190427.9547938725,63303.19191641168,221766.9427898816,37390.44682762949,2835.965906228834 -13898,17151,31313,31312,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,8.301848344663295,8.421645648981505,5.993725883945513,13,8,77.05325388695229,0,2,2,2019,9,0,30,30,1,0,0,15.05205872845541,15.05205872845541,0,0,0,0,0,1,1,0,6.656009755557786,0,54.1,59.11,50.51,56.39,8.333333333333334,1,1,0,0,12,5,4,1,891.3333333333334,190427.9547938725,63303.19191641168,221766.9427898816,37390.44682762949,2835.965906228834 -13898,17151,31314,-9,31312,31313,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.563164693859,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,891.3333333333334,190427.9547938725,63303.19191641168,221766.9427898816,37390.44682762949,2835.965906228834 -13899,17152,31315,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.177140441121796,5.81849312104598,0,0,-1001.867498177206,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.404366459978339,6.421009570308014,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,390,881677.3546862231,200649.4776966746,425832.453143431,0,1475.917179589985 -13900,17153,31316,31317,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,20,-7,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,57.33,53.46,7,2,3,0,0,0,8,1,0,624.4,-11103.61357714177,0,0,0,770.631651211964 -13900,17153,31317,31316,31321,-9,1,1,43,0,3,0,2,2,-9,0,3,0,0,0,6,7,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,49,56,8.333333333333334,2,3,1,0,2,8,1,0,624.4,-11103.61357714177,0,0,0,770.631651211964 -13900,17153,31318,-9,31316,31317,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.0680461408547,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,624.4,-11103.61357714177,0,0,0,770.631651211964 -13900,17153,31319,-9,31316,31317,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.801674602352,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,624.4,-11103.61357714177,0,0,0,770.631651211964 -13900,17153,31320,-9,31316,31317,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1042.04893051412,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,55.18,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,624.4,-11103.61357714177,0,0,0,770.631651211964 -13900,17154,31321,-9,-9,-9,1,0,78,0,3,0,3,3,-9,0,3,0,0,0,0,0,-847.2815732805107,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,605,0,0,0,0,1200.663180325632 -13901,17155,31322,31323,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.75114931328628,8.483687612105175,10,-3,61.34387422114061,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.787565394776808,8.579845793741162,56.11,44.4,50,46,8.333333333333334,1,1,0,0,0,8,4,1,558.5,3105038.894561145,1253268.622711161,777363.9466705984,0,6625.65280221142 -13901,17155,31323,31322,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.707498692156247,6.954721987557112,10,3,.752381442354082,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.33119183638378,6.934334924730816,50,46,56.11,44.4,7,1,1,0,0,0,8,4,1,558.5,3105038.894561145,1253268.622711161,777363.9466705984,0,6625.65280221142 -13902,17156,31324,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.052446794190306,7.874644168275405,7.595577879289043,0,0,-1047.697817614592,0,-9,-9,2019,16,4,10,10,1,4,0,10.07435906522521,10.07435906522521,0,0,0,0,0,1,1,0,8.504141456289755,0,28.16,65.32000000000001,-9,-9,3.333333333333333,1,1,0,0,9,8,3,0,807.3333333333334,41110.54902100773,0,0,0,2442.834180393308 -13902,17156,31325,-9,31324,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.1255620942007,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,0,807.3333333333334,41110.54902100773,0,0,0,2442.834180393308 -13902,17156,31326,-9,31324,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.620906461604,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,0,807.3333333333334,41110.54902100773,0,0,0,2442.834180393308 -13903,17157,31327,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.408579890967109,8.446518704462283,0,0,0,-1088.94419632458,0,2,2,2019,21,9,30,37,1,9,0,17.04817730044973,17.04817730044973,0,0,0,0,0,0,0,0,3.445234756328611,0,36.14,59.14,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,96,391849.3905617212,379397.3484684353,97172.04071167979,74758.00069421344,1844.132338807018 -13904,17158,31328,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.400203281630914,8.061451730754026,0,0,0,-877.702751070527,0,2,1,2019,14,3,48,48,1,3,0,9.632294471224192,9.632294471224192,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,496,85622.0354983068,0,0,0,1056.485992738322 -13905,17159,31329,31330,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,7,11,-81.36593569166124,0,3,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,4.752824879189467,0,54.79,55.86,58.32,50.22,8.333333333333334,1,1,0,0,7,6,4,1,997.5,-57880.10969089974,40530.00032236084,0,0,2163.384269818851 -13905,17159,31330,31329,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.543206770090544,8.32921389076091,0,7,-11,-34.74312291731398,0,2,1,2019,6,0,60,53,1,0,0,9.072874287722147,9.072874287722147,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,7,6,4,1,997.5,-57880.10969089974,40530.00032236084,0,0,2163.384269818851 -13906,17160,31331,-9,31334,31332,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1134.052683596726,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,0,640.75,667023.6430289674,243340.1829867627,486556.6657591375,85361.86432559151,5617.317493750808 -13906,17160,31332,31334,-9,-9,1,1,59,0,1,0,2,2,-9,0,5,8.588652594013812,8.636519877120758,0,6,3,29.51886042605894,0,1,1,2019,8,0,40,50,1,0,0,13.89929879807616,13.89929879807616,0,0,0,0,0,0,0,0,7.659509036509019,0,51.73,58.82,49,48,8.333333333333334,1,1,0,0,7,1,5,0,640.75,667023.6430289674,243340.1829867627,486556.6657591375,85361.86432559151,5617.317493750808 -13906,17160,31333,-9,31334,31332,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-994.011572524081,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.04,48.05,-9,-9,6.666666666666667,1,1,0,0,9,1,5,0,640.75,667023.6430289674,243340.1829867627,486556.6657591375,85361.86432559151,5617.317493750808 -13906,17160,31334,31332,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,8.797872823358812,9.493392020695376,0,6,-3,83.66197876797433,0,2,2,2019,11,0,32,29,1,2,0,28.44020865137784,28.44020865137784,0,0,0,0,0,0,0,0,0,0,49,48,51.73,58.82,7,1,1,0,0,1,1,5,0,640.75,667023.6430289674,243340.1829867627,486556.6657591375,85361.86432559151,5617.317493750808 -13907,17161,31335,31336,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.654973625834866,7.490592975839506,0,26,-1,83.19286140125156,-9,-9,3,2019,6,0,39,0,1,0,0,8.076928091518772,8.076928091518772,0,0,0,0,0,0,0,0,4.249586446526473,0,47.15,56.66,33.08,33.73,5,1,1,0,0,8,7,5,1,192.5,1390958.354976881,613662.0174690373,729536.7885300117,0,2622.954671721262 -13907,17161,31336,31335,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.468327507037962,8.433914738163443,0,26,1,7.33531966979839,-9,3,-9,2019,20,4,45,0,1,4,0,14.9182627296823,14.9182627296823,0,0,0,0,0,0,0,0,3.273504302632786,0,33.08,33.73,47.15,56.66,5,1,1,0,0,5,7,5,1,192.5,1390958.354976881,613662.0174690373,729536.7885300117,0,2622.954671721262 -13908,17162,31337,-9,31338,31339,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.17632061206,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,343.5,82867.72330660574,29248.31954448114,0,0,2892.77721226055 -13908,17162,31338,31339,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.399506593047233,8.314475761488438,0,14,11,50.97308400202481,0,2,2,2019,12,0,43,40,1,0,0,14.29012026581682,14.29012026581682,0,0,0,0,0,1,1,0,0,0,43.11,31.31,48.87,58.55,8.333333333333334,1,1,0,0,10,12,4,1,343.5,82867.72330660574,29248.31954448114,0,0,2892.77721226055 -13908,17162,31339,31338,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.141396346155091,8.056360393340064,0,14,-11,-38.46460022353713,0,-9,2,2019,14,2,45,34,1,2,0,6.658153262196206,6.658153262196206,0,0,0,0,7,1,1,0,0,0,48.87,58.55,43.11,31.31,6.666666666666667,1,1,0,0,12,12,4,1,343.5,82867.72330660574,29248.31954448114,0,0,2892.77721226055 -13908,17162,31340,-9,31338,31339,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.4860181870291,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,343.5,82867.72330660574,29248.31954448114,0,0,2892.77721226055 -13909,17163,31341,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,1.327806676868986,1.370037702929765,0,0,-980.9151114416878,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.453780180005413,1.38477068884332,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,119,179026.2410088172,5701.940295059185,174389.6751491452,0,812.5010858805167 -13910,17164,31342,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.119844086087333,7.850848240212767,0,0,0,-1034.371777063169,0,2,2,2019,12,0,35,39,1,0,0,10.77212035657616,10.77212035657616,0,0,0,0,0,0,0,0,0,0,36.22,60.56,-9,-9,6.666666666666667,1,1,0,0,13,4,4,1,1484,5449.248958988246,-14335.39706115825,106080.2167791277,0,1551.87087601791 -13911,17165,31343,31344,-9,-9,1,0,43,1,1,0,1,1,-9,0,3,6.963455831898212,6.831346223535962,0,9,9,94.86500731542496,0,2,2,2019,6,0,8,7,1,0,0,14.58414505055561,14.58414505055561,0,0,0,0,0,1,1,0,1.719726607105683,0,54.37,54.8,54.2,57.49,6.666666666666667,1,1,0,0,11,7,4,0,1001,131956.4498607983,165936.722691926,235925.0366856356,77281.35887220954,2741.968272073599 -13911,17165,31344,31343,-9,-9,1,1,34,1,1,0,1,1,1,0,4,8.820893565911417,8.634749922905593,0,9,0,42.88330008188789,-9,1,2,2019,9,1,42,0,1,1,0,16.20292109102011,16.20292109102011,0,0,0,0,0,1,1,0,2.893604586848987,0,54.2,57.49,54.37,54.8,6.666666666666667,1,1,0,0,6,7,4,0,1001,131956.4498607983,165936.722691926,235925.0366856356,77281.35887220954,2741.968272073599 -13911,17165,31345,-9,31343,31344,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.6204285053001,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1001,131956.4498607983,165936.722691926,235925.0366856356,77281.35887220954,2741.968272073599 -13912,17166,31346,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.151706780516044,8.349153057277874,0,4,2,-74.7221244624199,0,1,2,2019,6,0,54,50,1,0,0,6.727250815229019,6.727250815229019,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.77,56.48,8.333333333333334,1,1,0,0,3,2,4,0,212,14304.71885398013,34361.8075479687,62767.90319741219,43153.01804086482,1023.427824710782 -13912,17167,31347,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.124026225849073,7.998367959424391,0,4,-2,-81.59797479826706,0,-9,-9,2019,12,0,37,40,1,0,0,6.610528221175428,6.610528221175428,0,0,0,0,0,0,0,0,0,0,47.77,56.48,51.83,57.2,8.333333333333334,1,1,0,0,2,2,4,0,271,-31267.46323012667,-41901.20946555335,0,0,983.1782337011625 -13913,17168,31348,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,2.977847622544503,2.966997607907203,0,0,-974.8572712368679,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,4.141292855380724,0,0,1,1,0,0,3.333675213435202,44.84,44.4,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,615,174474.7751794964,45258.86719311734,88049.56362158741,0,1396.375175875158 -13914,17169,31349,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.031912266762683,7.497451608345409,0,0,-867.4361618916491,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,14.5,1,1,0,0,7.057410945332928,56.23,26.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,403,394220.9856060346,67359.37318458561,278306.3270408253,28711.4248024183,1138.893267617289 -13915,17170,31350,31353,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.037316106829243,8.125277463875948,0,16,8,-38.88749837714404,0,2,2,2019,6,0,35,37,1,0,0,13.86118404008912,13.86118404008912,0,0,0,0,0,1,1,0,0,0,55.96,49.93,44.54,59.33,8.333333333333334,1,1,0,0,6,9,4,1,894,2305429.39362737,1213300.614307815,1408921.268998935,399701.2452506528,4823.265329209459 -13915,17170,31351,-9,31353,31350,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.7167419607146,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,9,4,1,894,2305429.39362737,1213300.614307815,1408921.268998935,399701.2452506528,4823.265329209459 -13915,17170,31352,-9,31353,31350,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1087.610322680638,-9,1,2,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,12.12,67.62,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,894,2305429.39362737,1213300.614307815,1408921.268998935,399701.2452506528,4823.265329209459 -13915,17170,31353,31350,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.818621346315616,8.48277029590948,0,16,-8,18.77058535679107,0,2,2,2019,8,0,60,53,1,0,0,17.1624390023114,17.1624390023114,0,0,0,0,0,1,1,0,0,0,44.54,59.33,55.96,49.93,6.666666666666667,1,1,0,0,9,9,4,1,894,2305429.39362737,1213300.614307815,1408921.268998935,399701.2452506528,4823.265329209459 -13916,17171,31354,-9,31355,31356,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-959.5705764358466,-9,3,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1042.666666666667,2429809.737320933,1750308.600720066,507095.1733476624,71302.87817789598,14371.12185870514 -13916,17171,31355,31356,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,9.681659732209649,9.701263949019459,0,6,6,-69.80467774295407,0,2,3,2019,9,1,56,52,1,1,0,34.83167695398404,34.83167695398404,0,0,0,0,0,1,1,0,6.506527462118631,0,67.03,30.27,61.68,49.95,8.333333333333334,1,1,0,0,7,9,5,1,1042.666666666667,2429809.737320933,1750308.600720066,507095.1733476624,71302.87817789598,14371.12185870514 -13916,17171,31356,31355,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.520252173721989,9.349672081282678,0,6,-6,152.1219807397937,0,2,2,2019,6,0,39,39,1,0,0,29.42721695736573,29.42721695736573,0,0,0,0,0,1,1,0,0,0,61.68,49.95,67.03,30.27,8.333333333333334,1,1,0,0,7,9,5,1,1042.666666666667,2429809.737320933,1750308.600720066,507095.1733476624,71302.87817789598,14371.12185870514 -13917,17172,31357,31358,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,49,0,134.9588071236442,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.630676425393894,0,58.32,50.22,51.64,50.48,10,1,1,0,0,3,1,2,1,543,758659.6393496067,281886.2794116235,332043.8789333315,0,2108.590166592209 -13917,17172,31358,31357,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.054529547879738,7.176102712403279,50,9,-68.29075758602532,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.746058715068609,6.880132925444644,51.64,50.48,58.32,50.22,6.666666666666667,1,1,0,0,0,1,2,1,543,758659.6393496067,281886.2794116235,332043.8789333315,0,2108.590166592209 -13918,17173,31359,31361,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,0,0,0,24,-5,62.65117459737009,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,49,50,7,2,3,0,0,0,8,4,1,459,403871.4112884109,184243.4866053376,263522.0050763353,95572.57323285138,2505.84064279403 -13918,17173,31360,-9,31359,31361,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.735836882894,-9,2,1,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.99,56.77,-9,-9,8.333333333333334,2,3,0,0,0,8,4,1,459,403871.4112884109,184243.4866053376,263522.0050763353,95572.57323285138,2505.84064279403 -13918,17173,31361,31359,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.813428553549203,8.781246853922912,0,24,5,-13.87096392306023,0,3,2,2019,11,0,40,40,1,1,0,20.78926826633746,20.78926826633746,0,0,0,0,0,1,1,0,0,0,49,50,46,50,7,2,3,0,0,12,8,4,1,459,403871.4112884109,184243.4866053376,263522.0050763353,95572.57323285138,2505.84064279403 -13918,17174,31362,-9,31359,31361,1,0,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-1160.75552649219,-9,2,1,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,2,8,1,1,3002,208488.2782000283,0,0,0,82.6691650032497 -13918,17175,31363,-9,31359,31361,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-946.1656935190485,-9,2,1,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,38.1,56.63,-9,-9,5,2,3,0,0,0,8,1,1,209,50376.35353636607,0,0,0,0 -13919,17176,31364,31365,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.459671150827707,7.180662876139261,49,5,76.88049377778468,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.472588232853391,7.361266075936578,57.16,56.15,53.06,42.92,10,2,3,0,0,1,8,3,1,209,1198782.215215341,336015.941091864,425401.2913201284,0,3474.673552293963 -13919,17176,31365,31364,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.276520828225147,7.232602566861007,49,-5,-25.91917884014283,0,3,1,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.907962818387768,7.468020025901118,53.06,42.92,57.16,56.15,8.333333333333334,2,3,0,0,0,8,3,1,209,1198782.215215341,336015.941091864,425401.2913201284,0,3474.673552293963 -13920,17177,31366,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.714557610215496,6.620915259974263,0,0,-986.4939223911192,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.554605890918582,6.976235467497595,60.03,50.88,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,254,570469.8553778848,334195.0038914434,113500.2322035099,0,693.461830161267 -13921,17178,31367,31368,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,9.771987866857724,9.58913742926965,0,7,16,-99.90593367086234,0,-9,-9,2019,3,0,45,50,1,0,0,36.78814661754189,36.78814661754189,0,0,0,0,0,0,0,0,0,0,62.39,56.71,59.43,58.05,10,1,1,0,0,8,8,5,0,391.6666666666667,494878.1446269949,73209.33330213808,586353.0852844632,148542.0567512055,16568.97624028822 -13921,17178,31368,31367,-9,-9,1,0,34,0,1,0,1,1,-9,0,5,8.793490308735173,8.436963431934583,5.224991825140296,7,-16,-7.689143321394686,0,1,3,2019,1,0,38,50,1,0,0,20.72026591121357,20.72026591121357,0,0,0,0,0,0,0,0,5.843814961442436,0,59.43,58.05,62.39,56.71,8.333333333333334,3,4,0,0,5,8,5,0,391.6666666666667,494878.1446269949,73209.33330213808,586353.0852844632,148542.0567512055,16568.97624028822 -13921,17178,31369,-9,31368,31367,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.888844755728,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,0,391.6666666666667,494878.1446269949,73209.33330213808,586353.0852844632,148542.0567512055,16568.97624028822 -13922,17179,31370,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,8.106497218774093,8.030927893364012,0,0,0,-886.348379933249,0,2,2,2019,16,4,50,52,1,4,0,6.092784785051442,6.092784785051442,0,0,0,0,0,0,0,0,0,0,43.09,61.58,-9,-9,5,1,1,0,0,8,9,4,1,353,108661.11867177,0,0,0,1106.647312464033 -13922,17180,31371,-9,31370,-9,1,0,27,0,0,0,2,2,-9,0,5,7.968431923010027,7.748855034539139,0,0,0,-911.4875663049182,0,2,3,2019,7,0,41,35,1,0,1,6.79538724654352,6.79538724654352,0,0,0,0,0,0,0,0,.6158374280335238,0,62.39,56.71,-9,-9,10,1,1,0,0,8,9,3,1,276,-121244.9307143104,0,0,0,1330.271680999661 -13922,17181,31372,-9,31370,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7023922799019,7.626982706306933,0,0,0,-1010.125343762319,0,2,3,2019,14,2,40,41,1,2,1,5.708571701027747,5.708571701027747,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,3.333333333333333,1,1,0,1,6,9,3,1,90,69643.05023522108,0,0,0,1057.071288185324 -13923,17182,31373,31374,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,8,0,0,0,3,3,2019,9,0,0,35,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.95,49.07,50.76,46.32,8.333333333333334,1,1,0,0,9,12,1,1,1399,257408.0063338697,0,185370.8500587481,0,968.0547599765166 -13923,17182,31374,31373,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,47,0,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.76,46.32,57.95,49.07,8.333333333333334,1,1,0,0,0,12,1,1,1399,257408.0063338697,0,185370.8500587481,0,968.0547599765166 -13924,17183,31375,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.8637055200293,0,3,3,2019,17,7,0,0,4,7,0,0,0,0,15.41352438526764,9.805882724731285,0,0,1,1,0,4.458649440908129,0,55.93,39.42,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1476,-80815.3776706271,0,0,0,787.7079183191244 -13925,17184,31376,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.332263933554016,8.137919165956887,0,0,0,-981.9574287450287,0,1,3,2019,8,0,37,37,1,0,0,14.70110169133932,14.70110169133932,0,0,0,0,0,0,0,0,0,0,57.17,50.61,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,533,302131.4361099136,-61880.72195707669,214222.856646234,108207.9769495095,1561.426952650274 -13926,17185,31377,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.56466397833619,7.332861420608324,0,0,0,-912.8499099213609,0,3,2,2019,12,0,48,48,1,0,0,5.937878647373544,5.937878647373544,0,0,0,0,71.5,1,1,0,0,0,34.13,61.39,-9,-9,6.666666666666667,1,1,0,0,7,1,3,0,406,-83377.85329634062,11687.65173220463,-27903.38873780255,0,1080.547301439873 -13926,17186,31378,-9,31377,-9,1,1,31,0,0,0,3,3,-9,1,3,0,0,0,0,0,-989.6962906175744,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,-9,-9,5,1,1,0,0,0,1,1,0,250,39139.30159901689,-134984.0094978668,0,0,342.1977367311703 -13927,17187,31379,31380,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,8.525995795932968,8.612405439096118,0,6,-2,80.14192559678121,0,2,2,2019,12,0,40,45,1,0,0,16.31777274352239,16.31777274352239,0,0,0,0,0,0,0,0,0,0,54.1,59.11,36.96,59.86,8.333333333333334,1,1,0,0,7,9,5,1,485.5,664838.6134244942,416813.8115121563,412900.3623743367,108862.4239605519,3573.596462334464 -13927,17187,31380,31379,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.801603829949233,7.617723192372448,0,6,2,14.10231714063566,0,3,3,2019,13,1,38,38,1,1,0,8.471279601439051,8.471279601439051,0,0,0,0,2,0,0,0,0,0,36.96,59.86,54.1,59.11,6.666666666666667,1,1,0,0,7,9,5,1,485.5,664838.6134244942,416813.8115121563,412900.3623743367,108862.4239605519,3573.596462334464 -13928,17188,31381,31382,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,7,2,-33.42539536571437,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.830690968340714,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,0,9,3,1,771.5,1061724.954100047,443414.0862558124,263427.1401838951,0,2252.199246626127 -13928,17188,31382,31381,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,8.131526104576785,7.952570959675272,7,-2,-196.6333069088717,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.728673286965682,7.83380986632911,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,0,9,3,1,771.5,1061724.954100047,443414.0862558124,263427.1401838951,0,2252.199246626127 -13929,17189,31383,31385,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.641610110068624,8.575308676986387,0,10,3,-30.89610155897072,0,1,2,2019,9,1,50,50,1,1,0,11.34976782823094,11.34976782823094,0,0,0,0,0,1,1,0,0,0,50.01,55.31,19.27,55.03,8.333333333333334,1,1,0,0,12,1,4,1,820.3333333333334,1050863.948042467,978301.3253302177,149944.2295683199,59371.59119028309,2765.507932047426 -13929,17189,31384,-9,31385,31383,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.9423947210322,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,820.3333333333334,1050863.948042467,978301.3253302177,149944.2295683199,59371.59119028309,2765.507932047426 -13929,17189,31385,31383,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.342136477399779,6.994111702132939,0,10,-3,52.69998446139273,0,1,1,2019,12,0,27,27,1,0,0,5.136247349172513,5.136247349172513,0,0,0,0,0,1,1,0,0,0,19.27,55.03,50.01,55.31,6.666666666666667,1,1,0,0,11,1,4,1,820.3333333333334,1050863.948042467,978301.3253302177,149944.2295683199,59371.59119028309,2765.507932047426 -13930,17190,31386,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.894184064951562,5.719943267113867,0,0,-962.6719709722327,0,3,-9,2019,7,1,0,0,4,1,0,0,0,1,0,8.755808189634942,0,0,1,1,0,0,5.998415060348425,63.59,7.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,290,510390.224838624,64880.70037417403,195029.7164167127,0,1499.004149580113 -13931,17191,31387,31388,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.123449383562113,9.232339917255334,0,1,0,10.94796560720668,-9,-9,-9,2019,8,0,105,0,1,0,0,9.215138088637961,9.215138088637961,0,0,0,0,0,0,0,0,.370174959160093,0,43.12,58.55,59.29,49.68,8.333333333333334,1,1,0,0,6,9,5,1,1211.666666666667,2214641.521800895,1587100.810389392,523520.4435796587,134059.222952094,4302.654896454919 -13931,17191,31388,31387,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.273548687339994,7.760694466125221,5.978228934654511,1,0,137.4918415748361,0,-9,-9,2019,8,0,20,20,1,0,0,9.775154974595043,9.775154974595043,0,0,0,0,0,0,0,0,6.069686628105667,0,59.29,49.68,43.12,58.55,10,1,1,0,0,8,9,5,1,1211.666666666667,2214641.521800895,1587100.810389392,523520.4435796587,134059.222952094,4302.654896454919 -13931,17191,31389,-9,31388,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.7874915463,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1211.666666666667,2214641.521800895,1587100.810389392,523520.4435796587,134059.222952094,4302.654896454919 -13932,17192,31390,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1029.994139313569,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,34.42,25.38,-9,-9,6.666666666666667,1,1,0,0,3,9,1,0,260,120387.9875518477,0,0,0,1420.347299103385 -13933,17193,31391,-9,31395,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.312412442859,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,959.8,338.1228568053019,0,0,0,3407.236138596584 -13933,17193,31392,-9,31395,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-923.4838090210142,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,959.8,338.1228568053019,0,0,0,3407.236138596584 -13933,17193,31393,-9,31395,-9,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-973.6936112429862,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,959.8,338.1228568053019,0,0,0,3407.236138596584 -13933,17193,31394,-9,31395,-9,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-898.8886395855612,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,959.8,338.1228568053019,0,0,0,3407.236138596584 -13933,17193,31395,-9,-9,-9,1,0,27,1,4,0,2,2,-9,1,3,0,7.232365939804845,6.927004238164246,0,0,-1006.368112830964,0,1,1,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,7.211257523671837,0,34.25,59.94,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,959.8,338.1228568053019,0,0,0,3407.236138596584 -13934,17194,31396,31397,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,8.944423999671343,8.753323996240207,0,35,-7,24.64308019251638,0,1,2,2019,7,0,30,40,1,0,0,31.32761359514613,31.32761359514613,0,0,0,0,0,1,1,0,8.221094788277215,0,60.7,47.65,51,48,8.333333333333334,1,1,0,0,11,10,5,1,371,929999.3413326207,279178.9783773324,446709.9217607316,0,9033.782063857012 -13934,17194,31397,31396,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.678783744095599,9.775579802503845,0,10,7,27.62521506081906,0,2,1,2019,10,0,84,97,1,1,0,24.07691658965307,24.07691658965307,0,0,0,0,0,1,1,0,1.45611657877046,0,51,48,60.7,47.65,7,1,1,0,0,1,10,5,1,371,929999.3413326207,279178.9783773324,446709.9217607316,0,9033.782063857012 -13934,17195,31398,-9,31396,31397,1,1,18,0,0,0,2,2,1,0,3,8.007879719564842,7.789489967123559,0,0,0,-1002.185854825182,-9,2,1,2019,27,12,40,0,1,12,1,6.771425852647091,6.771425852647091,0,0,0,0,0,1,1,0,0,0,28.82,54.36,-9,-9,5,1,1,0,0,0,10,3,1,2257,-665.0170675061795,0,0,0,1533.182976488378 -13935,17196,31399,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.566715686684166,8.610528075744851,0,0,0,-998.2380216674105,0,3,3,2019,13,1,41,42,1,1,0,13.3504632273912,13.3504632273912,0,0,0,0,7,0,0,0,2.041990456654398,0,54.21,46.79,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,117,356185.1263658307,0,417651.6913053218,-10225.54629419857,1482.513291279391 -13935,17197,31400,-9,31399,-9,1,1,25,0,0,0,1,1,-9,0,3,7.996826645769998,7.712948595263883,0,0,0,-953.1254532772763,0,2,2,2019,13,1,45,36,1,1,1,8.803758087854174,8.803758087854174,0,0,0,0,2,0,0,0,0,0,40.24,54.56,-9,-9,5,1,1,0,0,1,7,4,1,316,-18349.26516661185,0,0,0,845.3772946553233 -13936,17198,31401,31404,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.486553431204659,7.403748524500426,0,7,0,-14.67784611282514,0,2,1,2019,17,6,15,15,1,6,0,14.37322844975272,14.37322844975272,0,0,0,0,0,1,1,0,8.137328463325559,0,43.46,48.75,48.28,60.18,3.333333333333333,1,1,0,0,10,7,5,1,794,1215665.774526096,-4287.381047520059,1493035.088861065,246886.649628312,11259.90476648652 -13936,17198,31402,-9,31401,31404,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.5944907680073,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,794,1215665.774526096,-4287.381047520059,1493035.088861065,246886.649628312,11259.90476648652 -13936,17198,31403,-9,31401,31404,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.559697876462,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,794,1215665.774526096,-4287.381047520059,1493035.088861065,246886.649628312,11259.90476648652 -13936,17198,31404,31401,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.624004359913268,9.79033093221825,0,7,0,-131.017237297389,0,-9,-9,2019,11,3,100,20,1,3,0,18.28779370869989,18.28779370869989,0,0,0,0,0,1,1,0,8.097878851131961,0,48.28,60.18,43.46,48.75,8.333333333333334,1,1,0,0,11,7,5,1,794,1215665.774526096,-4287.381047520059,1493035.088861065,246886.649628312,11259.90476648652 -13937,17199,31405,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,7.283540797191101,7.676432137986239,0,0,-1009.294960937907,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.831141480134291,7.538426024881845,56.82,51,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1724,548595.9307892432,393383.8135048787,273679.3450201044,0,2264.401717187328 -13938,17200,31406,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-929.6476403988532,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,-9,-9,6.666666666666667,1,1,0,0,7,2,1,1,171,-39349.23531531337,0,0,0,764.1687809937744 -13939,17201,31407,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.976257740499491,9.245783762499268,0,0,0,-1062.865311490491,0,3,2,2019,8,0,54,55,1,0,0,18.63871361828595,18.63871361828595,0,0,0,0,7,1,1,0,2.934592057916197,0,62.26,42.8,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,265,535714.4018946774,136561.0342322159,0,0,3079.489946811051 -13940,17202,31408,31409,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.947164255691047,7.858876397990168,0,6,-7,-79.01933637727016,0,3,3,2019,16,4,37,33,1,4,0,9.047557866849864,9.047557866849864,0,0,0,0,14.5,1,1,0,0,0,33.82,42.48,54,53,3.333333333333333,2,3,0,0,9,6,3,1,1799.5,300478.45403714,65572.34349002305,198075.5729165424,-10455.18054218054,2109.321905986395 -13940,17202,31409,31408,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,5.141224507230898,5.086656188471507,32,7,94.94504628200933,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,5.478118350599906,54,53,33.82,42.48,8,2,3,0,0,0,6,3,1,1799.5,300478.45403714,65572.34349002305,198075.5729165424,-10455.18054218054,2109.321905986395 -13940,17203,31410,-9,31408,31409,1,0,31,0,0,0,2,2,-9,0,4,7.963740917850107,7.926011242491668,0,0,0,-1024.286747232545,0,2,2,2019,16,5,47,43,1,5,1,8.711422100087884,8.711422100087884,0,0,0,0,7,1,1,0,0,0,38.34,62.12,-9,-9,3.333333333333333,2,3,0,0,6,6,4,1,332,173903.9621194474,-41024.96734569853,0,0,1432.142935151032 -13940,17204,31411,-9,31408,31409,1,0,29,0,0,0,1,1,-9,0,5,7.826411967181444,7.928165147528875,0,0,0,-964.2510125626096,0,2,3,2019,1,0,42,0,1,0,1,7.642913157501199,7.642913157501199,0,0,0,0,7,1,1,0,.4967317795885204,0,49.25,61.25,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,129,202356.8788130745,-77668.08348053227,0,0,1283.330291567428 -13940,17205,31412,-9,31408,31409,1,1,26,0,0,0,1,1,-9,0,5,8.083291072356538,7.568646847319191,0,0,0,-1079.771454999194,0,2,2,2019,6,0,37,40,1,0,1,10.14688683783223,10.14688683783223,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,3,6,3,1,6124,93082.61293864266,0,0,0,1235.60184048378 -13940,17206,31413,-9,31408,31409,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-878.4551190110765,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,1,1,549,0,0,0,0,0 -13941,17207,31414,31415,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.688069885722044,7.446483448627207,0,32,-1,85.26805495752212,0,3,3,2019,22,8,34,28,1,8,0,6.508694028696236,6.508694028696236,0,0,0,0,0,0,0,0,0,0,32.24,62.48,52,55,5,1,1,0,0,9,13,4,1,298,54756.96973537116,0,155289.6360583116,122907.213784024,3034.122074146437 -13941,17207,31415,31414,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,7.793784595574055,7.843609378672007,0,8,1,-27.5753830839693,-9,-9,-9,2019,9,0,60,0,1,1,0,6.142137718042743,6.142137718042743,0,0,0,0,0,0,0,0,6.500507431447854,0,52,55,32.24,62.48,8,4,1,0,0,1,13,4,1,298,54756.96973537116,0,155289.6360583116,122907.213784024,3034.122074146437 -13942,17208,31416,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.04700421853315,6.973661026902424,0,0,-1006.336570292459,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.552065338598277,6.688562652863422,64.40000000000001,15.2,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,343,1948430.058934317,2132995.623340039,0,0,1564.593386543784 -13943,17209,31417,-9,31420,-9,1,1,23,0,0,0,3,3,-9,0,4,8.165991621789949,8.234042319724839,0,0,0,-897.1382386284899,0,2,2,2019,8,0,40,8,1,0,1,12.18288021390819,12.18288021390819,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,528,129476.0016564439,-25324.49369464125,0,0,1103.545533611875 -13943,17210,31418,-9,31420,-9,1,0,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-927.0857242821378,0,2,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,413,0,0,0,0,565.6958768760081 -13943,17211,31419,31420,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.663669345092726,6.408778148777746,0,3,7,-46.54770435837157,0,-9,-9,2019,9,0,60,60,1,0,0,1.535992968683985,1.535992968683985,0,0,0,0,0,1,1,0,0,0,51.15,24.98,41.45,29.4,8.333333333333334,1,1,0,0,8,7,2,1,586,129911.1927810336,36461.97031746758,230983.5741882552,53008.82925257938,1577.724066680053 -13943,17211,31420,31419,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,3,-7,58.71296006393462,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.45,29.4,51.15,24.98,3.333333333333333,1,1,0,1,1,7,2,1,586,129911.1927810336,36461.97031746758,230983.5741882552,53008.82925257938,1577.724066680053 -13944,17212,31421,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.12296561543039,7.483254241623829,0,0,-1168.869502726364,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.932463700082401,7.339103300654676,58.74,30.17,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,623,242820.1354723217,319815.4704668216,0,0,2174.318022198388 -13945,17213,31422,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-948.7129141853094,-9,-9,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.5124258101864589,0,40.96,61.14,-9,-9,8.333333333333334,1,1,0,0,7,12,1,0,482,74403.03114241734,0,0,0,33.30859317090708 -13946,17214,31423,31424,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.093122680454915,8.05689286569158,0,27,1,-12.32775494296855,0,2,2,2019,5,0,25,36,1,0,0,15.37116306009048,15.37116306009048,0,0,0,0,0,0,0,0,2.625136253002123,0,57.33,53.46,49.63,54.22,8.333333333333334,1,1,0,0,10,9,5,1,908.5,1076078.359579785,645457.4551399725,422332.2640897273,0,4183.970060498674 -13946,17214,31424,31423,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.648263565951584,8.848270616993737,0,27,-1,-10.14682067034199,0,1,1,2019,14,3,45,39,1,3,0,14.78155992624694,14.78155992624694,0,0,0,0,0,0,0,0,3.815230635205367,0,49.63,54.22,57.33,53.46,5,1,1,0,0,10,9,5,1,908.5,1076078.359579785,645457.4551399725,422332.2640897273,0,4183.970060498674 -13947,17215,31425,31426,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.226021613310687,8.382526263957054,0,1,2,-60.26108222775385,-9,-9,-9,2019,17,5,38,0,1,5,0,12.14708325455207,12.14708325455207,0,0,0,0,0,0,0,0,0,0,25.14,68.03,50,57,8.333333333333334,1,1,0,0,6,7,5,0,613.5,1354415.320134501,154829.7349278844,963421.3779431814,0,4215.911731361804 -13947,17215,31426,31425,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.801773255113094,8.787228607551617,0,1,-2,37.34559777297507,-9,-9,-9,2019,10,0,38,0,1,1,0,24.66914862213259,24.66914862213259,0,0,0,0,0,0,0,0,0,0,50,57,25.14,68.03,7,1,1,0,0,1,7,5,0,613.5,1354415.320134501,154829.7349278844,963421.3779431814,0,4215.911731361804 -13948,17216,31427,-9,31429,-9,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1032.74075711628,-9,2,-9,2019,24,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,44.16,54.41,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,226,-8377.104083959613,0,0,0,0 -13948,17217,31428,-9,31429,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-997.6683011048417,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,3,4,-9,0,0,8,3,0,939.5,457488.4831419488,245758.4862623571,191091.2265720329,0,1361.066636043199 -13948,17217,31429,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,8.193826796604057,8.518115343598884,0,0,0,-875.2783313163551,-9,-9,-9,2019,8,2,48,0,1,2,0,10.28475222908166,10.28475222908166,0,0,0,0,0,1,1,0,0,0,59.15,44.14,-9,-9,1.666666666666667,3,4,0,0,9,8,3,0,939.5,457488.4831419488,245758.4862623571,191091.2265720329,0,1361.066636043199 -13949,17218,31430,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.835795479495077,8.434192907048457,0,0,0,-1015.2284412434,0,3,2,2019,17,6,60,60,1,6,0,11.15990223823565,11.15990223823565,0,0,0,0,0,1,1,0,0,0,41.48,51.95,-9,-9,1.666666666666667,1,1,0,0,13,5,5,1,1685,305999.8574118775,106963.6163728873,221610.3859169331,0,2670.124268004285 -13950,17219,31431,31432,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.688058479599649,9.999074650327964,7.959778902772271,8,-6,-34.00914659983871,-9,-9,-9,2019,9,1,67,0,1,1,0,29.77331355056599,29.77331355056599,0,0,0,0,7,0,0,0,2.757089586562088,8.383005753130229,48.85,51.81,61.26,51.57,8.333333333333334,1,1,0,0,8,2,5,1,942.5,2745988.353323415,2338008.496890528,660114.6823540127,183463.0095412955,11005.86408310223 -13950,17219,31432,31431,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.58800563826793,9.037266020154437,8.006813559210018,8,6,8.394054281035336,0,3,3,2019,7,0,38,37,1,0,0,17.90138821653154,17.90138821653154,0,0,0,0,0,0,0,0,5.080617854133521,7.851411417262003,61.26,51.57,48.85,51.81,10,1,1,0,0,13,2,5,1,942.5,2745988.353323415,2338008.496890528,660114.6823540127,183463.0095412955,11005.86408310223 -13950,17220,31433,-9,31431,31432,1,0,28,0,0,0,1,1,-9,0,3,8.398457845885462,8.341190770015411,0,0,0,-1085.762767948509,0,1,1,2019,12,0,41,39,1,0,1,10.44439357308769,10.44439357308769,0,0,0,0,71.5,0,0,0,3.374728332990173,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,450,27477.76302409755,-16598.37030534332,0,0,1073.120470743919 -13951,17221,31434,31435,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.602207206075987,7.655835054240225,0,26,-8,-89.82404453690434,0,2,2,2019,12,0,35,41,1,0,0,8.101297670525728,8.101297670525728,0,0,0,0,91,1,1,0,0,0,46.16,58.62,40.6,15.23,5,1,1,0,0,11,1,4,1,3679.5,258176.4496227326,-39380.88119960609,239379.1553635347,3209.267971268029,2098.617525359537 -13951,17221,31435,31434,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,7.575453263630849,7.592879063132375,23,8,149.5312407534902,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,8.048014355097742,7.330647174841674,40.6,15.23,46.16,58.62,6.666666666666667,1,1,0,0,10,1,4,1,3679.5,258176.4496227326,-39380.88119960609,239379.1553635347,3209.267971268029,2098.617525359537 -13951,17222,31436,-9,31434,31435,1,0,19,0,0,1,2,0,0,0,4,0,6.187402185751427,6.143858096992222,0,0,-1003.20542943889,-9,2,2,2019,24,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,6.680954993115973,0,44.55,60.42,-9,-9,6.666666666666667,1,1,0,0,3,1,2,1,498,8271.516268853706,0,0,0,914.3314574973331 -13952,17223,31437,31438,-9,-9,1,1,44,0,2,0,2,2,-9,1,2,0,5.292508451865899,5.488450527025397,21,3,-9.70342117894949,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,5.621629603029179,13.91,43.87,64.55,36.47,1.666666666666667,1,1,0,0,7,1,2,1,267.5,210877.75783939,111536.7490782481,127016.9129216356,69428.81068450127,1666.71856295823 -13952,17223,31438,31437,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.797307814788796,7.445745016371192,0,6,-3,26.11452762770354,0,2,2,2019,6,0,18,18,1,0,0,11.73919383091904,11.73919383091904,0,0,0,0,14.5,1,1,0,0,0,64.55,36.47,13.91,43.87,8.333333333333334,1,1,0,0,9,1,2,1,267.5,210877.75783939,111536.7490782481,127016.9129216356,69428.81068450127,1666.71856295823 -13953,17224,31439,31440,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,0,0,52,3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.797511340988251,0,50.54,62.09,49.08,40.82,10,2,3,0,0,3,8,1,1,789.5,986475.9810483368,0,283308.0573011481,0,8966.896387820711 -13953,17224,31440,31439,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,52,-3,0,0,3,1,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,9.060654390614655,0,49.08,40.82,50.54,62.09,6.666666666666667,2,3,0,0,0,8,1,1,789.5,986475.9810483368,0,283308.0573011481,0,8966.896387820711 -13954,17225,31441,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.34608961045509,8.782800270607751,0,0,0,-1118.423394179364,0,1,1,2019,15,4,37,37,1,4,0,16.33628786396197,16.33628786396197,0,0,0,0,0,1,1,0,0,0,34.13,61.39,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,743.3333333333334,1426808.64533178,105621.5323072032,1192527.429892834,-6760.441489316133,3716.355846648382 -13954,17225,31442,-9,31441,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.45182624495,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,743.3333333333334,1426808.64533178,105621.5323072032,1192527.429892834,-6760.441489316133,3716.355846648382 -13954,17225,31443,-9,31441,-9,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1019.562354145127,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,52.55,37.86,-9,-9,10,3,4,0,0,0,8,3,0,743.3333333333334,1426808.64533178,105621.5323072032,1192527.429892834,-6760.441489316133,3716.355846648382 -13954,17226,31444,-9,31441,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-964.850371225095,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,10,3,4,0,0,0,8,1,0,354,-35677.34228341257,0,0,0,0 -13955,17227,31445,31447,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,8.201497944308032,8.504973329486267,0,2,-2,-108.2809371618815,0,-9,-9,2019,11,0,30,28,1,2,0,15.96466102306618,15.96466102306618,0,0,0,0,0,1,1,0,0,0,47,58,34.41,51.58,7,1,1,0,0,1,11,4,1,430.6666666666667,258513.5370384627,105212.973772428,298969.8998234183,167480.4414260114,2693.192826469453 -13955,17227,31446,-9,31445,31447,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.528988857066,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,430.6666666666667,258513.5370384627,105212.973772428,298969.8998234183,167480.4414260114,2693.192826469453 -13955,17227,31447,31445,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,7.817594122689588,7.999730209892276,0,2,2,45.41065311044741,0,2,2,2019,13,2,50,50,1,2,0,6.748954987764414,6.748954987764414,0,0,0,0,0,1,1,0,0,0,34.41,51.58,47,58,6.666666666666667,1,1,0,0,5,11,4,1,430.6666666666667,258513.5370384627,105212.973772428,298969.8998234183,167480.4414260114,2693.192826469453 -13956,17228,31448,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.701051479482945,8.753336249339844,0,0,0,-921.7841486505127,0,1,1,2019,10,0,52,40,1,1,0,16.54211833954477,16.54211833954477,0,0,0,0,0,0,0,0,6.739379677462203,0,50,49,-9,-9,7,1,1,0,0,13,10,5,0,274,754804.7010041601,85672.66618632223,520268.6497417585,0,2361.399409852175 -13957,17229,31449,31450,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,31,-3,33.76489198590706,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.76,30.28,58.89,48.6,1.666666666666667,1,1,0,0,0,12,5,0,1142.5,1511337.880275611,1091907.298498903,256041.4770085053,0,3324.923816572602 -13957,17229,31450,31449,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.430182208191567,9.436287463535111,0,31,3,116.9653541705624,0,2,2,2019,7,0,40,39,1,0,0,31.30189243987127,31.30189243987127,0,0,0,0,2,1,1,0,0,0,58.89,48.6,39.76,30.28,8.333333333333334,1,1,0,0,11,12,5,0,1142.5,1511337.880275611,1091907.298498903,256041.4770085053,0,3324.923816572602 -13957,17230,31451,-9,31450,31449,1,1,25,0,0,0,1,1,-9,0,4,8.14161921544774,8.760399400642351,0,0,0,-1011.080334605037,0,2,3,2019,9,1,38,37,1,1,1,9.553190179343366,9.553190179343366,0,0,0,0,0,1,1,0,2.809628513040612,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,12,4,0,461,-168609.5964491104,66633.42809964922,0,0,1395.691124739931 -13958,17231,31452,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.998666952411162,9.141270422260904,0,0,0,-1033.863692932334,-9,2,1,2019,24,12,40,0,1,12,0,23.62636943999608,23.62636943999608,0,0,0,0,0,0,0,0,0,0,32.9,57.87,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,324,-47071.70417701211,81715.99733547858,117281.0310201526,43838.35617374525,2936.076739488246 -13959,17232,31453,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.670908138186551,6.484814152366716,0,0,-1046.480096283943,0,2,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.293418049784977,6.635720248889523,52.01,38.25,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,710,168673.9515864432,-75841.60062788983,77852.98846450789,0,1499.291084015162 -13960,17233,31454,31455,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.23880493373176,8.283914373418197,0,13,9,-69.31697458568819,0,3,3,2019,11,0,38,37,1,0,0,12.14049659862269,12.14049659862269,0,0,0,0,0,1,1,0,0,0,52,54.51,52.75,41.81,1.666666666666667,1,1,0,0,7,1,4,1,1662.333333333333,190905.6351130197,90412.68546852794,216867.5655589468,43155.95644386709,2788.697108083612 -13960,17233,31455,31454,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,8.113079869023419,8.005459518899753,0,12,0,39.91778661791474,0,2,3,2019,9,0,38,45,1,0,0,6.929240411398958,6.929240411398958,0,0,0,0,0,1,1,0,0,0,52.75,41.81,52,54.51,8.333333333333334,1,1,0,0,7,1,4,1,1662.333333333333,190905.6351130197,90412.68546852794,216867.5655589468,43155.95644386709,2788.697108083612 -13960,17233,31456,-9,31455,31454,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.5727369335639,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1662.333333333333,190905.6351130197,90412.68546852794,216867.5655589468,43155.95644386709,2788.697108083612 -13961,17234,31457,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.347135769287913,8.14655901142131,0,0,0,-978.9756904517373,0,-9,-9,2019,8,1,30,46,1,1,0,12.16729728908389,12.16729728908389,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,126,-193649.4362963348,0,0,0,1538.535938605975 -13962,17235,31458,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,4.621101766315987,4.485043215221783,0,0,-889.674268088565,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,.0504852280081849,0,1,1,0,1.39307906399919,4.937832484196954,39.72,46.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2547,262776.9437058581,0,338937.6310678928,0,1014.142389130271 -13963,17236,31459,31460,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,6.042557033511645,6.29099950342995,10,3,-62.12153347472002,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.256572246923699,39,26,42.5,25.25,5,1,1,0,0,4,12,2,0,590,82835.39800746874,42541.04876782282,0,0,2118.471863297487 -13963,17236,31460,31459,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,10,-3,26.50599940432703,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,71.5,1,1,0,0,0,42.5,25.25,39,26,5,1,1,0,0,1,12,2,0,590,82835.39800746874,42541.04876782282,0,0,2118.471863297487 -13964,17237,31461,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.156836286409712,6.514737728079509,0,0,-1016.381418989257,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.358446026428856,53,46,-9,-9,8,2,3,0,0,0,6,2,1,625,557243.8117000381,133301.7784382117,361886.9094521628,0,1530.261089133039 -13965,17238,31462,31463,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.835038974725414,7.759794189275435,0,6,16,5.375704816699346,0,-9,-9,2019,6,0,27,24,1,0,0,9.695792705561258,9.695792705561258,0,0,0,0,0,1,1,0,0,0,53.2,42.64,61.41,48.88,10,1,1,0,0,7,1,3,1,401.75,218422.6585394964,-9285.57964653134,145306.3330642058,17781.8930027465,2440.067812399924 -13965,17238,31463,31462,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.419924927272721,7.477070772948459,0,6,-16,94.96509091106712,0,-9,-9,2019,8,1,37,37,1,1,0,4.618044886995361,4.618044886995361,0,0,0,0,0,1,1,0,0,0,61.41,48.88,53.2,42.64,10,1,1,0,0,12,1,3,1,401.75,218422.6585394964,-9285.57964653134,145306.3330642058,17781.8930027465,2440.067812399924 -13965,17238,31464,-9,31463,31462,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1132.490257029088,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,3,1,401.75,218422.6585394964,-9285.57964653134,145306.3330642058,17781.8930027465,2440.067812399924 -13965,17238,31465,-9,31463,31462,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.341613841219,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,401.75,218422.6585394964,-9285.57964653134,145306.3330642058,17781.8930027465,2440.067812399924 -13966,17239,31466,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,7.639335432357928,7.753695759799348,0,0,-1015.913398806189,0,2,1,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,7.104733042271937,7.592202941557754,41.44,47.57,-9,-9,6.666666666666667,1,1,0,0,4,8,3,1,1425,1223657.533767105,-37001.11706958832,500455.8481363649,0,1472.72677952077 -13966,17240,31467,-9,31466,-9,1,0,50,0,0,0,1,1,-9,0,4,6.87310511061802,6.790078230486042,0,8,-10,92.15463730631723,0,1,2,2019,6,0,6,6,1,0,0,17.96081918786929,17.96081918786929,0,0,0,0,0,1,1,0,0,0,51.19,52.17,58.3,52.91,6.666666666666667,1,1,0,1,12,8,4,1,2168,-28001.2817061434,0,0,0,728.0093517898836 -13966,17241,31468,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.340538524404051,8.745783959645442,0,8,10,-42.20055700701081,0,3,2,2019,12,0,50,50,1,0,0,15.14002335845781,15.14002335845781,0,0,0,0,0,1,1,0,0,0,58.3,52.91,51.19,52.17,6.666666666666667,1,1,0,0,12,8,5,1,891,344322.7722793999,0,133189.1344145463,109121.6019580476,3014.09549984214 -13967,17242,31469,31470,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,7.481022953886412,7.459931191857767,5,3,-105.4301528091059,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.794533879481296,7.419145287094469,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,8,12,4,1,476.5,2021784.731586699,1006889.74145982,764771.6328493963,0,2445.210389694825 -13967,17242,31470,31469,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.180355921203571,8.302254771328705,3.843292685980767,5,-3,38.97627783198649,0,3,3,2019,8,0,37,37,1,0,0,14.02467090493024,14.02467090493024,0,0,0,0,2,0,0,0,3.930157733694239,4.077511278320918,60.13,49.27,57.16,56.15,3.333333333333333,1,1,0,0,8,12,4,1,476.5,2021784.731586699,1006889.74145982,764771.6328493963,0,2445.210389694825 -13968,17243,31471,31472,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.043152231596427,6.679876261587695,0,7,-5,11.28568843761439,0,3,3,2019,10,0,24,24,1,1,0,4.3201317967755,4.3201317967755,0,0,0,0,0,1,1,0,0,0,51,54,55.19,54.26,8,1,1,0,0,1,4,5,1,709.5,825818.8980540307,595668.4217347919,153875.1946487265,29378.13323901704,4162.442789341832 -13968,17243,31472,31471,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.869705272044422,8.808867888421046,0,31,5,108.7394802487272,0,2,2,2019,8,0,45,45,1,0,0,19.02973726367198,19.02973726367198,0,0,0,0,0,1,1,0,6.589028855440283,0,55.19,54.26,51,54,8.333333333333334,1,1,0,0,10,4,5,1,709.5,825818.8980540307,595668.4217347919,153875.1946487265,29378.13323901704,4162.442789341832 -13968,17244,31473,-9,31471,31472,1,1,18,0,0,0,2,2,1,0,5,7.354191294125037,7.586836841643985,0,0,0,-954.1145600801217,-9,2,2,2019,4,0,37,0,1,0,1,5.191001973098754,5.191001973098754,0,0,0,0,2,1,1,0,.9731537090866214,0,55.24,55.87,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,1092,-138479.8767325346,0,0,0,385.3776387359883 -13969,17245,31474,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,6.202272259567495,6.208070025696525,0,0,0,-874.6722889301013,0,1,2,2019,8,0,37,37,1,0,0,1.686091427551977,1.686091427551977,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,232,222597.4629027125,0,193549.7450362795,0,247.2412250499483 -13970,17246,31475,-9,31478,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.163949143809,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,812.25,5516.575338749302,0,0,0,1556.685322274212 -13970,17246,31476,-9,31478,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-944.0007297860125,-9,3,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,48.06,44.3,-9,-9,10,1,1,0,0,0,2,1,0,812.25,5516.575338749302,0,0,0,1556.685322274212 -13970,17246,31477,-9,31478,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.167690226113,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,812.25,5516.575338749302,0,0,0,1556.685322274212 -13970,17246,31478,-9,-9,-9,1,0,33,0,3,0,3,3,-9,1,1,0,0,0,0,0,-902.1143833829988,-9,3,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.73,42.83,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,812.25,5516.575338749302,0,0,0,1556.685322274212 -13971,17247,31479,31480,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,0,0,50,1,43.20612505183887,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,55.26,55.85,8.333333333333334,1,1,0,0,0,6,3,1,1130.5,857372.2070658583,476571.0487353358,315288.476684737,0,2577.394749851519 -13971,17247,31480,31479,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,8.241103974791708,7.845056575039059,50,-1,-32.52773548559193,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.272143326989527,8.096153813877853,55.26,55.85,54.69,57.47,8.333333333333334,1,1,0,0,13,6,3,1,1130.5,857372.2070658583,476571.0487353358,315288.476684737,0,2577.394749851519 -13972,17248,31481,31482,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,8.064689645132749,8.464024089798661,0,17,-8,25.91246750310273,0,2,2,2019,11,0,50,40,1,0,0,10.05361482900241,10.05361482900241,0,0,0,0,0,1,1,0,0,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,1034,1254706.905433692,1040527.616190933,261986.8173229486,99423.46305743384,3673.129780018959 -13972,17248,31482,31481,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.759953017106856,8.769379068327291,0,17,8,129.0873244832246,0,2,2,2019,9,0,44,43,1,0,0,13.40529407832432,13.40529407832432,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,13,2,5,1,1034,1254706.905433692,1040527.616190933,261986.8173229486,99423.46305743384,3673.129780018959 -13972,17248,31483,-9,31481,31482,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1053.624806717029,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,5,1,1034,1254706.905433692,1040527.616190933,261986.8173229486,99423.46305743384,3673.129780018959 -13973,17249,31484,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,8.360498831198845,8.249423698949657,0,0,-1035.709960856145,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.058012685556196,8.540361415941218,58.65,28.61,-9,-9,5,1,1,0,0,7,2,4,1,251,778464.2108332516,299726.4423880149,228661.8731799778,0,2798.820473124443 -13973,17250,31485,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.080406818308907,8.062609505483973,0,0,0,-920.3025975687358,0,-9,-9,2019,10,1,38,40,1,1,0,11.12677681334691,11.12677681334691,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,893,-183343.706499085,-65660.6108966719,0,0,1795.436163353559 -13974,17251,31486,-9,31487,31488,1,1,20,0,0,0,2,2,-9,0,3,7.81585117901001,7.727611405062797,0,0,0,-908.3318975772503,0,2,3,2019,19,8,43,38,1,8,1,5.847820201483736,5.847820201483736,0,0,0,0,0,0,0,0,.6983337320169285,0,35.84,53.74,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,1437,56655.7098056133,0,0,0,1052.444683668868 -13974,17252,31487,31488,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.951339644113636,7.803348484561206,0,4,4,-52.7545481588545,0,-9,-9,2019,11,0,24,24,1,2,0,16.81303020078352,16.81303020078352,0,0,0,0,0,0,0,0,5.90709455567752,0,49,48,54,54,7,1,1,0,0,1,5,5,1,1376,158981.1632835743,172866.2012661991,178967.8652729975,136652.8296878315,3464.606054940562 -13974,17252,31488,31487,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.520354806109472,8.737346529567272,0,4,-4,40.69397166134933,0,3,3,2019,9,0,40,42,1,1,0,16.52939419197605,16.52939419197605,0,0,0,0,0,0,0,0,4.74597890070282,0,54,54,49,48,8,1,1,0,0,1,5,5,1,1376,158981.1632835743,172866.2012661991,178967.8652729975,136652.8296878315,3464.606054940562 -13975,17253,31489,31490,-9,-9,1,1,23,0,0,0,2,2,1,0,4,6.903278329899807,7.34708961153812,6.513905113100246,1,0,17.34423397844511,-9,1,1,2019,10,1,17,0,1,1,0,5.646377713130138,5.646377713130138,0,0,0,0,0,0,0,0,6.859292523296392,0,51.83,57.2,33.66,61.57,8.333333333333334,1,1,0,0,6,10,3,0,360,22629.37359617169,0,0,0,1746.483113188782 -13975,17253,31490,31489,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.645763419751407,7.44032449487699,5.486741362797908,1,0,44.58886975911943,-9,-9,-9,2019,15,3,36,0,1,3,0,5.114643620495784,5.114643620495784,0,0,0,0,0,0,0,0,5.063221291120135,0,33.66,61.57,51.83,57.2,8.333333333333334,1,1,0,0,1,10,3,0,360,22629.37359617169,0,0,0,1746.483113188782 -13976,17254,31491,-9,31492,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.032436559575,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,632.3333333333334,25712.75727036908,0,0,0,194.2316336433775 -13976,17254,31492,-9,-9,-9,1,0,29,0,2,0,2,2,0,0,3,0,0,0,0,0,-974.1595290066632,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,5,13,1,0,632.3333333333334,25712.75727036908,0,0,0,194.2316336433775 -13976,17254,31493,-9,31492,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.112805615516,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,632.3333333333334,25712.75727036908,0,0,0,194.2316336433775 -13977,17255,31494,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.326714217733308,7.35025076413858,0,0,-1094.583287630995,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.729653921800757,7.523661260839996,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,698,263257.8375892288,168972.1654199059,179403.6894073012,0,1655.663705240528 -13978,17256,31495,31496,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.245705821875893,7.384110108203611,49,3,-67.08020431545116,0,3,3,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.809909272444851,7.865741546628047,45.22,53.87,61.3,32.61,8.333333333333334,1,1,0,0,11,11,2,1,738.5,567577.1335228739,420869.1984301331,89181.87102709146,0,175.5610124466834 -13978,17256,31496,31495,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,49,-3,-55.8813979500983,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,39.11506063674453,0,0,1,1,0,4.764763385636604,0,61.3,32.61,45.22,53.87,8.333333333333334,1,1,0,0,2,11,2,1,738.5,567577.1335228739,420869.1984301331,89181.87102709146,0,175.5610124466834 -13979,17257,31497,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.902142999607857,9.134412135714054,0,0,0,-1010.594392533169,0,3,3,2019,7,1,40,43,1,1,0,22.99477037226974,22.99477037226974,0,0,0,0,0,0,0,0,1.676138172067201,0,46.99,58.37,-9,-9,8.333333333333334,4,5,0,0,7,8,5,0,1099,115499.5573853026,60564.84460070305,0,0,3626.083185332579 -13980,17258,31498,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,7.266114427368207,7.453454405857144,0,0,-963.9406988737793,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.705556223124075,7.783383474646115,38.15,32.7,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,229,962739.9357903046,80741.2387803116,498694.7814329353,0,1141.223901373473 -13981,17259,31499,31500,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.144317433246036,8.938574641934824,0,10,3,-18.14892113399511,0,3,3,2019,11,2,39,41,1,2,0,18.51154084700777,18.51154084700777,0,0,0,0,0,0,0,0,5.531994487528228,0,49.04,55.86,39.33,60.15,8.333333333333334,1,1,0,0,11,12,5,1,366.5,1858452.354055382,1589371.282668223,310697.6039985556,49188.00908320311,3293.551227150681 -13981,17259,31500,31499,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.643807558162552,8.470777260887196,0,10,-3,42.59334255913451,0,2,3,2019,19,7,38,39,1,7,0,12.3821236293413,12.3821236293413,0,0,0,0,0,0,0,0,0,0,39.33,60.15,49.04,55.86,3.333333333333333,1,1,0,0,11,12,5,1,366.5,1858452.354055382,1589371.282668223,310697.6039985556,49188.00908320311,3293.551227150681 -13982,17260,31501,-9,31504,31502,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.694675161044,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,310.5,2205211.453515904,75101.3485166133,1244228.744787944,0,10897.66536721191 -13982,17260,31502,31504,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.66722997936238,10.01566627432501,0,9,-2,-.8269486557571877,0,2,2,2019,12,0,56,52,1,0,0,37.06300410442152,37.06300410442152,0,0,0,0,0,0,0,0,5.660591236151145,0,46.5,58.26,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,310.5,2205211.453515904,75101.3485166133,1244228.744787944,0,10897.66536721191 -13982,17260,31503,-9,31504,31502,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.2537497398445,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,310.5,2205211.453515904,75101.3485166133,1244228.744787944,0,10897.66536721191 -13982,17260,31504,31502,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,9.548834462523349,9.464326637733782,0,9,2,-62.62341559798034,0,2,3,2019,23,11,24,24,1,11,0,83.59859782995836,83.59859782995836,0,0,0,0,0,0,0,0,3.297481929658554,0,54.2,57.49,46.5,58.26,6.666666666666667,1,1,0,0,9,2,5,1,310.5,2205211.453515904,75101.3485166133,1244228.744787944,0,10897.66536721191 -13983,17261,31505,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.229846449653694,8.07135398576618,0,0,0,-957.6036677967313,0,2,3,2019,11,0,39,39,1,0,0,12.21680675201246,12.21680675201246,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,3.333333333333333,1,1,0,0,7,11,4,1,1644,444179.5284209031,384288.8806473376,177861.4846860441,112669.4918616744,1986.1855365839 -13984,17262,31506,31507,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.900339985083686,8.933832180221465,0,4,-4,-28.274099025064,0,1,1,2019,8,0,12,12,1,0,0,48.54360046963649,48.54360046963649,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,853,232969.8407590745,16108.29183599171,711344.9328153583,548567.0237389947,4270.652094013807 -13984,17262,31507,31506,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.103963609712123,8.801499926059009,0,4,4,-7.911115836273481,0,-9,-9,2019,8,0,47,45,1,0,0,17.72434657067381,17.72434657067381,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,6,7,5,1,853,232969.8407590745,16108.29183599171,711344.9328153583,548567.0237389947,4270.652094013807 -13985,17263,31508,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.127934798114413,5.63735132474358,0,0,-1135.127390771313,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.338568802629347,51.24,50.96,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,966,384144.4785650251,7108.480816000899,253371.1620955263,206552.9528356709,1669.660469368892 -13986,17264,31509,31510,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,6.703071333694252,6.550734878275668,0,11,9,-32.40600526561891,0,3,-9,2019,10,0,30,30,1,0,0,3.56598221689239,3.56598221689239,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,2,3,0,0,4,8,2,0,814.25,16623.10876579949,0,0,0,1264.153184594244 -13986,17264,31510,31509,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,0,0,0,11,0,27.06968888031962,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,2,3,0,0,5,8,2,0,814.25,16623.10876579949,0,0,0,1264.153184594244 -13986,17264,31511,-9,31510,31509,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.9967308608085,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,814.25,16623.10876579949,0,0,0,1264.153184594244 -13986,17264,31512,-9,31510,31509,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4126800847845,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,814.25,16623.10876579949,0,0,0,1264.153184594244 -13987,17265,31513,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,0,0,-997.1307867665151,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.26,36.14,-9,-9,5,1,1,0,0,0,5,1,0,745,-23012.44221926175,0,0,0,1248.583562580356 -13988,17266,31514,31515,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.37915324658912,7.303749505164384,8,2,9.617066035149307,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,7.937598012082807,7.504185846314997,51.14,60.45,56.58,14.3,5,1,1,0,0,8,10,2,1,798,501739.4453932461,337732.4939060708,166583.7049604309,0,2455.312109069925 -13988,17266,31515,31514,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,8,-2,95.43618299253674,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,14.46302686318181,24.1855836665523,130.4683614118223,0,1,1,0,0,0,56.58,14.3,51.14,60.45,3.333333333333333,1,1,0,0,4,10,2,1,798,501739.4453932461,337732.4939060708,166583.7049604309,0,2455.312109069925 -13988,17267,31516,-9,31515,31514,1,1,28,0,0,0,2,2,-9,0,3,8.011967268870562,7.799545602233703,0,0,0,-1079.703129918865,0,3,2,2019,12,1,40,42,1,1,0,7.489046090644322,7.489046090644322,0,0,0,0,2,1,1,0,0,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,1202,9181.097789002724,91389.3095539096,0,0,838.0965056786742 -13989,17268,31517,31518,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.407985184111782,8.446326454271983,0,3,2,-128.2037853723666,0,-9,-9,2019,12,1,45,40,1,1,0,10.68949072665832,10.68949072665832,0,0,0,0,0,0,0,0,0,0,55.92,25.67,35.69,46.04,8.333333333333334,1,1,0,0,9,9,5,1,658.5,717744.2497901208,351610.7642867137,230223.7849230446,33214.27475741931,3340.711006200421 -13989,17268,31518,31517,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.063110445855438,8.455441374953862,0,3,-2,-73.39630567188689,0,2,2,2019,16,5,39,42,1,5,0,12.00516391226938,12.00516391226938,0,0,0,0,0,0,0,0,0,0,35.69,46.04,55.92,25.67,3.333333333333333,1,1,0,1,9,9,5,1,658.5,717744.2497901208,351610.7642867137,230223.7849230446,33214.27475741931,3340.711006200421 -13990,17269,31519,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.303476304687,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.37,44.87,-9,-9,5,1,1,0,1,0,4,1,0,2050,-138106.7354362119,0,0,0,522.32820378205 -13991,17270,31520,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.553279408262726,8.04663887133907,0,0,-979.9320562549817,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.299518320668051,7.504278971893639,53.14,51.28,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1144,60840.31497316698,0,0,0,2168.798505081242 -13992,17271,31521,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-907.6553973884905,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.08,27.24,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,762,85443.55067851181,0,0,0,1939.516565349424 -13993,17272,31522,-9,31523,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.246946040979,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1036.5,-19455.43231781945,39422.69679871893,0,0,1900.756537435775 -13993,17272,31523,31524,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,5.833762152973944,5.831369502767452,0,1,0,141.5615672973329,-9,-9,-9,2019,11,0,7,0,1,2,0,7.033823559379926,7.033823559379926,0,0,0,0,0,1,0,1,0,0,47,57,32.6,54.09,7,1,1,0,0,5,11,2,0,1036.5,-19455.43231781945,39422.69679871893,0,0,1900.756537435775 -13993,17272,31524,31523,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,5.844324355215517,5.991951316492838,0,1,0,34.64350498251339,0,-9,-9,2019,12,0,5,0,1,0,0,7.091761885584475,7.091761885584475,0,0,0,0,0,1,0,1,0,0,32.6,54.09,47,57,5,1,1,0,0,3,11,2,0,1036.5,-19455.43231781945,39422.69679871893,0,0,1900.756537435775 -13993,17272,31525,-9,31523,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.727686404934,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,1036.5,-19455.43231781945,39422.69679871893,0,0,1900.756537435775 -13994,17273,31526,-9,31528,31527,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.7088835275962,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,761.6,91389.29375875293,0,118514.6720677068,89728.68625085197,2423.093797389617 -13994,17273,31527,31528,-9,-9,1,1,36,0,3,0,3,3,-9,0,3,8.217131480783777,8.322358404282099,0,12,0,-57.83787776583918,0,2,2,2019,13,2,40,48,1,2,0,11.76927744528449,11.76927744528449,0,0,0,0,0,1,1,0,0,0,32.97,56.45,51.41,50.61,3.333333333333333,1,1,0,0,7,6,3,0,761.6,91389.29375875293,0,118514.6720677068,89728.68625085197,2423.093797389617 -13994,17273,31528,31527,-9,-9,1,0,36,0,3,0,1,1,-9,0,3,7.473151162331821,7.197089660076246,0,12,0,-55.12849208050357,0,2,2,2019,8,4,28,31,1,4,0,6.622203439120526,6.622203439120526,0,0,0,0,0,1,1,0,0,0,51.41,50.61,32.97,56.45,1.666666666666667,1,1,0,0,7,6,3,0,761.6,91389.29375875293,0,118514.6720677068,89728.68625085197,2423.093797389617 -13994,17273,31529,-9,31528,31527,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-974.6464452153341,-9,1,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,48.3,-9,-9,8.333333333333334,1,1,0,0,0,6,3,0,761.6,91389.29375875293,0,118514.6720677068,89728.68625085197,2423.093797389617 -13994,17273,31530,-9,31528,31527,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.2241047240635,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,761.6,91389.29375875293,0,118514.6720677068,89728.68625085197,2423.093797389617 -13995,17274,31531,31532,-9,-9,1,1,24,0,0,0,1,1,1,0,4,0,0,0,1,-3,24.69142352419848,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.06,58.64,8.333333333333334,1,1,1,0,8,12,4,0,861.5,-121450.5867472024,-91763.30845958373,58851.11114896562,81199.19039275078,1700.95797762462 -13995,17274,31532,31531,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.226884325969948,8.56880605013116,6.468081499482367,1,3,108.0816841498495,-9,-9,-9,2019,10,0,37,0,1,0,0,14.01710271325525,14.01710271325525,0,0,0,0,0,0,0,0,6.469994139741824,0,49.06,58.64,51.83,57.2,8.333333333333334,4,5,0,0,1,12,4,0,861.5,-121450.5867472024,-91763.30845958373,58851.11114896562,81199.19039275078,1700.95797762462 -13996,17275,31533,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1147.014097131565,-9,-9,-9,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.97,56.54,-9,-9,5,1,1,0,1,0,7,1,0,1045,43349.67111516713,0,0,0,997.0186623839045 -13997,17276,31534,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-866.2849295398408,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.320776865628924,0,50.24,58.02,-9,-9,1.666666666666667,1,1,0,0,2,9,1,0,156,0,0,0,0,-138.3671747139645 -13998,17277,31535,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1057.900535262776,0,2,2,2019,30,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,1,2,1,0,1586,-470235.238447981,0,0,0,1694.44371512185 -13999,17278,31536,31537,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.944619443380547,7.684112833362067,0,9,-2,83.47138931698194,0,2,2,2019,7,0,29,37,1,0,0,12.39870548282955,12.39870548282955,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.22,55.19,8.333333333333334,1,1,0,0,10,12,5,1,527,667511.4019489202,441933.2668787932,255367.4393209397,122132.6726978598,3517.692509889419 -13999,17278,31537,31536,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.544346194066454,8.867383358447741,0,9,2,5.30898728997177,0,2,2,2019,18,7,42,40,1,7,0,16.37268105040162,16.37268105040162,0,0,0,0,0,1,1,0,1.954257673559514,0,39.22,55.19,57.16,56.15,5,1,1,0,0,10,12,5,1,527,667511.4019489202,441933.2668787932,255367.4393209397,122132.6726978598,3517.692509889419 -13999,17279,31538,-9,31536,31537,1,1,21,0,0,0,2,2,-9,0,3,8.09161164509241,8.089669889743382,0,0,0,-1127.639624905551,0,1,2,2019,13,1,27,35,1,1,1,12.66549367701765,12.66549367701765,0,0,0,0,0,1,1,0,0,0,32.45,54.09,-9,-9,1.666666666666667,1,1,0,0,4,12,4,1,2778,93874.95931708434,35620.40558351327,0,0,1068.072825325675 -13999,17280,31539,-9,31536,31537,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1050.215377145228,-9,1,2,2019,21,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,.7401810523337435,0,31.06,46.94,-9,-9,3.333333333333333,1,1,0,0,1,12,1,1,774,75803.29126399796,0,0,0,-117.5750762623929 -14000,17281,31540,31541,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.891188041670358,7.728818098717767,0,13,0,-7.161942053670303,-9,3,3,2019,13,3,35,0,1,3,0,8.872570340331336,8.872570340331336,0,0,0,0,14.5,1,1,0,0,0,47.91,55.05,42.15,41.88,5,1,1,0,0,4,1,3,1,440,171857.0706175965,82696.68203517114,131672.3146563486,0,1260.694110979054 -14000,17281,31541,31540,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,0,0,0,28,0,-97.15648603201251,-9,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.15,41.88,47.91,55.05,5,1,1,1,1,0,1,3,1,440,171857.0706175965,82696.68203517114,131672.3146563486,0,1260.694110979054 -14000,17282,31542,-9,31540,31541,1,1,30,0,0,0,2,2,-9,0,5,8.070990804835823,7.944568429031746,0,0,0,-1012.705139214921,-9,2,3,2019,11,0,45,0,1,0,1,6.968316126504982,6.968316126504982,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,10,1,4,1,342,554229.4392827111,0,326909.5950810839,0,1280.782035071333 -14001,17283,31543,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.576213411947515,8.69906842289913,0,0,0,-1064.227622946922,0,2,2,2019,8,0,54,49,1,0,0,12.72576371886647,12.72576371886647,0,0,0,0,0,1,1,0,5.355854182619717,0,52.62,54.33,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,295,105673.5434991889,180370.4938287771,134290.5108738139,44189.78297996299,1847.586651856468 -14002,17284,31544,-9,31547,31545,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.718113579976,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,479.75,283604.5140163013,165799.9010092059,267294.8451448209,230484.1075296837,3732.401064299656 -14002,17284,31545,31547,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,8.681354154541403,8.707163466318862,0,4,2,-111.4544395062681,0,2,2,2019,9,0,47,52,1,0,0,18.33241303296914,18.33241303296914,0,0,0,0,0,1,1,0,0,0,15.12,55.12,58.15,52.91,6.666666666666667,1,1,0,0,9,13,4,1,479.75,283604.5140163013,165799.9010092059,267294.8451448209,230484.1075296837,3732.401064299656 -14002,17284,31546,-9,31547,31545,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.1783890125257,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,479.75,283604.5140163013,165799.9010092059,267294.8451448209,230484.1075296837,3732.401064299656 -14002,17284,31547,31545,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,7.616199994858095,7.272825577894553,0,4,-2,38.00040481076731,0,-9,-9,2019,7,0,36,32,1,0,0,5.623478344910756,5.623478344910756,0,0,0,0,7,1,1,0,0,0,58.15,52.91,15.12,55.12,8.333333333333334,1,1,0,0,12,13,4,1,479.75,283604.5140163013,165799.9010092059,267294.8451448209,230484.1075296837,3732.401064299656 -14003,17285,31548,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.173311711050751,9.119218370327935,0,10,-7,-43.74428880983353,0,1,2,2019,7,0,42,38,1,0,0,26.04096140392923,26.04096140392923,0,0,0,0,0,0,0,0,5.060528913870568,0,48.87,58.55,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,236,408503.7776782385,26841.28653341786,0,0,3457.547397111161 -14003,17286,31549,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.854898013407368,8.658238496710922,0,10,7,.8788893015190262,0,2,2,2019,8,0,78,39,1,0,0,7.604563075343084,7.604563075343084,0,0,0,0,0,0,0,0,4.77252511504128,0,46.16,58.62,48.87,58.55,8.333333333333334,1,1,0,0,11,6,5,1,1119,-111411.0203895898,-72341.20365238757,0,0,2461.272953087411 -14004,17287,31550,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,8.35835959431231,8.719148910675671,0,0,-930.7385705271736,0,2,1,2019,11,1,0,0,4,1,0,0,0,1,0,2.548249260999969,0,0,1,1,0,7.269019131024389,8.714308967403495,50.82,22.61,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,171,1055100.52518914,499062.9938071409,115405.5998069741,0,2960.431898178227 -14005,17288,31551,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.788501064644647,8.257007136261878,0,0,0,-960.6169204039253,0,2,2,2019,8,0,26,26,1,0,0,25.12286967963886,25.12286967963886,0,0,0,0,0,0,0,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,314,728140.0259658569,603459.972380072,217920.4644824722,0,2306.130074330757 -14006,17289,31552,31553,-9,-9,1,0,24,0,0,0,2,2,0,1,2,0,0,0,2,-3,-52.92375816090954,-9,1,3,2019,34,12,0,0,2,12,0,0,0,0,0,0,0,2,1,1,0,0,0,26.73,24.53,51.83,57.2,3.333333333333333,1,1,0,1,6,12,3,0,136,-9419.42382931857,-36039.02292782371,0,0,1933.659946925165 -14006,17289,31553,31552,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.104719977594209,8.358794453583242,0,2,3,-85.50183534182793,0,-9,-9,2019,11,1,45,45,1,1,0,8.442676248596179,8.442676248596179,0,0,0,0,0,1,1,0,0,0,51.83,57.2,26.73,24.53,6.666666666666667,1,1,0,0,1,12,3,0,136,-9419.42382931857,-36039.02292782371,0,0,1933.659946925165 -14007,17290,31554,31555,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.093261533997868,8.497962634411147,0,2,13,68.51020088891288,0,-9,-9,2019,15,3,35,35,1,3,0,15.39627853943782,15.39627853943782,0,0,0,0,0,0,0,0,0,0,32.83,48.42,48.53,58.91,6.666666666666667,1,1,0,0,12,4,5,1,512.5,102955.6325035852,78892.55239778853,138745.1270750433,131295.9890812676,3642.28220197677 -14007,17290,31555,31554,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.60104007126049,8.422807934591628,0,2,-13,-76.04150761083341,0,-9,-9,2019,11,0,35,35,1,0,0,15.74662623619819,15.74662623619819,0,0,0,0,0,0,0,0,.800888520774242,0,48.53,58.91,32.83,48.42,8.333333333333334,1,1,0,0,9,4,5,1,512.5,102955.6325035852,78892.55239778853,138745.1270750433,131295.9890812676,3642.28220197677 -14008,17291,31556,-9,31557,31560,1,0,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1119.521555467989,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,3,0,341.2,61916.42826607762,22756.73618311518,0,0,3186.798631095456 -14008,17291,31557,31560,-9,-9,1,0,37,1,3,0,2,2,-9,0,3,0,0,0,13,-1,-2.916721871055137,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,25.86,61.44,41.76,45.98,5,1,1,0,0,0,7,3,0,341.2,61916.42826607762,22756.73618311518,0,0,3186.798631095456 -14008,17291,31558,-9,31557,31560,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.3152096840299,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,0,341.2,61916.42826607762,22756.73618311518,0,0,3186.798631095456 -14008,17291,31559,-9,31557,31560,1,1,12,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1093.800760355211,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,3,0,341.2,61916.42826607762,22756.73618311518,0,0,3186.798631095456 -14008,17291,31560,31557,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,8.048914002327134,7.996627234273216,0,13,1,-142.1505039636068,0,2,2,2019,10,0,39,39,1,0,0,9.815153610559902,9.815153610559902,0,0,0,0,0,1,1,0,0,0,41.76,45.98,25.86,61.44,8.333333333333334,1,1,0,0,9,7,3,0,341.2,61916.42826607762,22756.73618311518,0,0,3186.798631095456 -14008,17292,31561,-9,31557,31560,1,1,19,1,3,1,2,0,0,0,4,0,0,0,0,0,-956.3355997100728,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,0,7,1,0,209,0,0,0,0,0 -14009,17293,31562,31563,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.352563044503466,8.823952004510119,0,1,2,-29.38208638632356,-9,-9,-9,2019,9,0,38,0,1,1,0,38.84120494376859,38.84120494376859,0,0,0,0,0,0,0,0,7.953555767613877,0,53,55,34.19,60.03,8,4,1,0,0,1,10,5,1,275,1390970.169638216,771669.138874189,385297.936785484,245130.5844191433,7063.072992681302 -14009,17293,31563,31562,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.996407158688953,9.089755419265291,0,1,-2,-143.7812904973688,-9,3,2,2019,15,5,42,0,1,5,0,19.76919513243167,19.76919513243167,0,0,0,0,0,0,0,0,4.410677186857747,0,34.19,60.03,53,55,6.666666666666667,1,1,0,0,10,10,5,1,275,1390970.169638216,771669.138874189,385297.936785484,245130.5844191433,7063.072992681302 -14010,17294,31564,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.80726550090505,7.751175557295304,0,0,-931.4569455496869,0,3,3,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.700979391172914,4.01,54.19,-9,-9,0,1,1,0,0,6,11,3,1,207,680165.3736664113,371279.8352580269,124444.2716309675,0,996.8151434542179 -14011,17295,31565,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.803812203427137,8.556195400145086,0,0,0,-985.3783713227946,0,2,2,2019,8,0,40,40,1,0,0,14.00303775943555,14.00303775943555,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,11,4,5,1,376,389168.7485385506,435149.9570932443,195100.9056754357,79131.13539025516,1961.430858466472 -14012,17296,31566,31567,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.700741529788965,6.512635559416251,6,5,-32.39429748040838,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,7.249365104625243,0,7,1,1,0,0,6.741853095292766,60.12,54.8,39.74,47.82,8.333333333333334,1,1,0,0,0,12,2,0,871,310868.0447110462,106095.1995138535,240585.1276168115,28360.02055326923,1570.097351885126 -14012,17296,31567,31566,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.705133177435076,4.63652725662081,6,-5,-118.480786925002,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,4.273073903889223,0,0,1,1,0,0,4.493223578799461,39.74,47.82,60.12,54.8,5,1,1,0,1,0,12,2,0,871,310868.0447110462,106095.1995138535,240585.1276168115,28360.02055326923,1570.097351885126 -14013,17297,31568,31569,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.972667238923018,7.626703166630402,0,7,-8,-68.8372416926176,0,-9,-9,2019,9,0,46,50,1,0,0,5.224049936938068,5.224049936938068,0,0,0,0,0,0,0,0,0,0,44.19,58.01,53.51,60.74,6.666666666666667,1,1,0,0,8,6,4,0,614,-133345.5676784644,-69894.8382985862,0,0,1897.526789479896 -14013,17297,31569,31568,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.833805483769026,7.981953270438027,0,7,8,-18.68662812189947,0,2,2,2019,12,3,40,47,1,3,0,8.280454818347886,8.280454818347886,0,0,0,0,0,0,0,0,0,0,53.51,60.74,44.19,58.01,10,1,1,0,0,8,6,4,0,614,-133345.5676784644,-69894.8382985862,0,0,1897.526789479896 -14014,17298,31570,-9,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.273958814137034,9.494911326420755,0,0,0,-980.7788313321372,0,2,1,2019,9,0,45,40,1,0,0,25.1545318880339,25.1545318880339,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,310,192978.3797480886,0,252257.6804239166,123563.50404059,3369.96924276318 -14014,17299,31571,-9,-9,31570,1,0,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1109.147302395076,-9,-9,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,1,0,0,8,1,1,661,-215074.3637170354,0,0,0,545.730651216207 -14015,17300,31572,31573,-9,-9,1,0,35,0,3,0,3,3,-9,0,3,0,0,0,19,-12,86.17300812739977,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,51,55,7,2,3,0,0,0,4,2,1,1077,138434.4822798918,-19828.46428416502,117300.341731327,112441.3684729322,481.9148270659416 -14015,17300,31573,31572,-9,-9,1,1,47,0,3,0,3,3,-9,0,4,7.095016511158287,6.980149994987926,0,10,12,-41.67241562532621,0,-9,-9,2019,9,0,40,-9,1,1,0,3.639537275802399,3.639537275802399,0,0,0,0,0,1,1,0,0,0,51,55,44,52,8,2,3,0,0,1,4,2,1,1077,138434.4822798918,-19828.46428416502,117300.341731327,112441.3684729322,481.9148270659416 -14016,17301,31574,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,6.955297883469552,7.068920446221203,0,0,-984.400111028624,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,6.162059035446342,0,0,1,1,0,0,7.058943168435784,52.83,19.3,-9,-9,5,1,1,0,0,0,4,2,1,1814,-15382.01239568333,-56458.64507098453,53914.7484883795,0,830.5108421556504 -14017,17302,31575,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,7.27920172035938,6.913550575898111,0,0,0,-1143.540556778119,0,2,3,2019,25,12,25,0,1,12,0,5.726206634401006,5.726206634401006,0,0,0,0,2,0,0,0,0,0,38.33,53.33,-9,-9,3.333333333333333,1,1,0,0,7,12,3,0,853,-3914.612087031514,0,0,0,609.089255577347 -14018,17303,31576,31577,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.647212730896769,8.2676762482676,6,-1,205.7152718810636,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.391591536658634,8.157421692593992,60.12,54.8,49.45,41.03,8.333333333333334,1,1,0,0,0,2,3,1,1408,1138074.439771609,641118.6107650725,165627.1203400182,0,5310.570511989574 -14018,17303,31577,31576,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,3.824605546942014,4.229373457817693,6,1,30.17391254953531,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.587745928349167,3.751652718506136,49.45,41.03,60.12,54.8,8.333333333333334,1,1,0,0,0,2,3,1,1408,1138074.439771609,641118.6107650725,165627.1203400182,0,5310.570511989574 -14019,17304,31578,31579,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.006909363655409,5.887103573679981,48,-1,-22.33723338767924,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.099390485718245,60.12,54.8,47.55,57.73,10,1,1,0,0,9,5,3,1,356,855574.0370141772,558155.2842685533,199951.8666987522,0,2395.002764260099 -14019,17304,31579,31578,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.410453568132752,7.343736220994688,48,1,1.164863740390638,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5087392073792122,7.171786597635221,47.55,57.73,60.12,54.8,8.333333333333334,1,1,0,1,11,5,3,1,356,855574.0370141772,558155.2842685533,199951.8666987522,0,2395.002764260099 -14020,17305,31580,-9,31581,-9,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1062.455707581668,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14020,17305,31581,31583,-9,-9,1,0,39,1,4,0,1,1,1,0,4,7.828771542878031,8.147981653642184,6.146123623636875,3,-3,-77.27734467857815,-9,-9,-9,2019,16,4,37,0,1,4,0,9.494700926174458,9.494700926174458,0,0,0,0,0,1,1,0,6.673636077260078,0,43.54,59.6,45.56,45.03,5,1,1,0,0,13,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14020,17305,31582,-9,31581,-9,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-992.4664698568898,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14020,17305,31583,31581,-9,-9,1,1,42,1,4,0,2,2,-9,0,3,8.170322357754687,8.00925196587974,0,3,3,-48.87346932871501,0,2,2,2019,13,2,28,20,1,2,0,16.62485185075495,16.62485185075495,0,0,0,0,2,1,1,0,0,0,45.56,45.03,43.54,59.6,8.333333333333334,1,1,0,0,12,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14020,17305,31584,-9,31581,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.817667606021,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14020,17305,31585,-9,31581,31583,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.22884256568,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,726.6666666666666,549420.582195145,156040.1504031881,521634.3174300657,34432.4312758876,4401.411605818925 -14021,17306,31586,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.774739788544458,8.084347690580845,0,0,-969.7196091071964,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.365496770403651,66.37,38.36,-9,-9,10,1,1,0,0,0,13,3,1,626,618142.6872302962,221253.2293542348,286558.4305816813,0,2497.988610053923 -14022,17307,31587,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.301263224382002,5.86398095707127,0,0,0,-853.6026641985294,0,3,3,2019,24,11,25,0,1,11,0,2.243452841432892,2.243452841432892,0,0,0,0,0,1,1,0,6.33054030595695,0,23.95,40.66,-9,-9,3.333333333333333,1,1,0,0,9,2,2,1,316,209621.0056569088,84110.13989387843,0,0,420.4815895696995 -14022,17308,31588,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-983.4637554362066,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,40.06,-9,-9,3.333333333333333,1,1,0,1,2,2,1,1,1317,168574.048689174,25023.40061712574,0,0,1532.533147950308 -14023,17309,31589,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.019427763489142,8.046568655576676,2.335120457658824,0,0,-1001.061363877223,0,3,3,2019,20,8,42,37,1,8,0,8.378623814436327,8.378623814436327,0,0,0,0,7,0,0,0,3.347845096911992,0,22.89,60.29,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,677,321738.0142948995,307228.414457507,0,0,1335.408699331898 -14024,17310,31590,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.167735151140739,8.237479389093901,0,0,0,-1240.228701923068,0,-9,-9,2019,31,12,30,38,1,12,0,13.95342090853678,13.95342090853678,0,0,0,0,0,1,1,0,3.335688122141209,0,25.51,60.03,-9,-9,3.333333333333333,1,1,0,0,5,4,4,0,386,102941.5679186412,-47018.71196538363,0,0,862.1884300450085 -14024,17311,31591,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-990.2152407277316,1,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,6,0,0,0,4,1,0,3894,-197575.5311836976,0,0,0,128.8543540424502 -14024,17312,31592,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.681098225711532,8.607843055388697,0,0,0,-1212.531703919978,0,-9,-9,2019,11,0,40,40,1,2,0,21.33608006818696,21.33608006818696,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,6,0,0,1,4,5,0,1469,0,0,0,0,2042.846605874915 -14025,17313,31593,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.73082078122,1,3,3,2019,12,0,0,48,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,1,5,8,1,0,2122,-158133.6325092301,-46349.54982465133,0,0,0 -14025,17314,31594,-9,31593,-9,1,0,25,0,0,0,1,1,-9,0,3,7.433803666254455,7.515307052497281,0,0,0,-1017.859304496155,0,2,-9,2019,17,6,34,14,1,6,1,6.017894316551013,6.017894316551013,0,0,0,0,0,0,0,0,0,0,31.08,51.72,-9,-9,5,3,4,0,0,6,8,3,0,1796,-88010.69918001151,0,0,0,857.187645525277 -14025,17315,31595,-9,31593,-9,1,1,21,0,0,0,2,2,-9,0,4,7.635435534853861,7.818174241317772,0,0,0,-968.5140377112814,-9,2,-9,2019,11,0,35,0,1,2,1,7.499043414369853,7.499043414369853,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,3,4,0,0,1,8,3,0,55,-2771.478762666271,0,0,0,1581.245565896021 -14026,17316,31596,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.743232124901685,6.887652449072071,0,0,-1036.839211772242,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.693129866181,6.565599463551891,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,7,2,0,280,754004.3395603022,0,551065.0851605582,0,859.7128320327572 -14027,17317,31597,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.7725795259099,-9,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38,28,-9,-9,6.666666666666667,1,1,1,0,0,10,2,0,2581,-9302.190214221351,68649.78300519616,0,0,1998.767790176036 -14028,17318,31598,31599,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.364834453589505,7.582596651572055,38,-2,-53.52257936587416,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.547382224078948,7.430951688499668,60.02,56.42,60.12,54.8,10,1,1,0,0,0,10,4,1,1469,1856097.592128917,892520.6386565072,708092.2981410563,0,4394.576469434757 -14028,17318,31599,31598,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.393276044525887,8.800020781212604,38,2,11.21576550156718,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.240064592668181,8.639858714562818,60.12,54.8,60.02,56.42,10,1,1,0,0,0,10,4,1,1469,1856097.592128917,892520.6386565072,708092.2981410563,0,4394.576469434757 -14029,17319,31600,31601,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,8.300209374919865,7.794643758319275,39,-1,69.61726664053464,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.10247409250456,8.157139701931024,60.02,56.42,63.24,42.39,10,1,1,0,0,12,6,3,1,387,3021471.542482224,960682.5428384743,322126.9700597246,0,2075.003299452369 -14029,17319,31601,31600,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,6.957892451935691,6.717078687265833,39,1,34.40685267935219,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,6.975637061867313,63.24,42.39,60.02,56.42,10,1,1,0,0,0,6,3,1,387,3021471.542482224,960682.5428384743,322126.9700597246,0,2075.003299452369 -14030,17320,31602,31603,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.10531571299143,8.557397015518564,7.620258847798109,22,-1,112.9393849588856,0,3,3,2019,9,0,70,70,1,0,0,7.591064733118206,7.591064733118206,0,0,0,0,27,0,0,0,8.217114946514512,7.084023388004756,58.55,46.11,68.08,27.97,8.333333333333334,1,1,0,0,11,6,5,1,1010.5,1158381.36014291,779554.2761099965,390096.1703692144,0,4158.170155812999 -14030,17320,31603,31602,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.723103441199055,7.991373355819671,0,22,1,-4.741504977893521,0,3,3,2019,8,0,30,44,1,0,0,8.808460518408978,8.808460518408978,0,0,0,0,14.5,0,0,0,0,0,68.08,27.97,58.55,46.11,8.333333333333334,1,1,0,0,11,6,5,1,1010.5,1158381.36014291,779554.2761099965,390096.1703692144,0,4158.170155812999 -14031,17321,31604,31605,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.515686413159006,8.381784847521336,0,2,0,77.98628786090489,0,2,2,2019,6,0,39,49,1,0,0,12.67127901325608,12.67127901325608,0,0,0,0,0,0,0,0,0,0,46.35,53.19,50.35,47.07,8.333333333333334,1,1,0,0,9,12,5,1,576,26153.78114068951,83682.88966189386,203976.1552428962,110151.9054617893,4007.118714607123 -14031,17321,31605,31604,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.756806059641814,8.758199768573993,0,2,0,-65.6681895987092,0,-9,-9,2019,12,1,40,40,1,1,0,18.993948448616,18.993948448616,0,0,0,0,0,0,0,0,0,0,50.35,47.07,46.35,53.19,8.333333333333334,1,1,0,0,5,12,5,1,576,26153.78114068951,83682.88966189386,203976.1552428962,110151.9054617893,4007.118714607123 -14032,17322,31606,31607,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.220694694235863,5.842450833290881,60,2,-4.230061942597866,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.051965099336644,60.29,52.11,57.33,53.46,10,1,1,0,0,0,7,2,0,573.5,710554.3482506142,162371.7796413644,334141.739172496,0,1641.353810325957 -14032,17322,31607,31606,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,60,-2,58.88849717291699,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,1.666666666666667,1,1,0,0,0,7,2,0,573.5,710554.3482506142,162371.7796413644,334141.739172496,0,1641.353810325957 -14033,17323,31608,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.604904189790938,4.882291860114309,0,0,-864.0991467883689,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.650580189735975,58.32,50.22,-9,-9,10,1,1,0,0,0,10,2,0,469,461420.9479639388,15026.18678805889,310426.7301510386,0,696.193327398568 -14034,17324,31609,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.575676971723514,8.733305658316818,0,0,0,-1125.794970811109,0,2,2,2019,11,0,40,38,1,0,0,13.86487083461923,13.86487083461923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,7,4,5,0,267,182219.863546919,306482.0848119127,108184.3039339614,73751.89605055119,1499.435104163324 -14035,17325,31610,31611,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.490229338698338,8.530713679023531,0,7,4,-79.33718060219132,0,3,2,2019,6,0,41,37,1,0,0,12.31616987667127,12.31616987667127,0,0,0,0,0,0,0,0,3.361855468608712,0,51.24,58.84,44.66,57.83,8.333333333333334,1,1,0,0,8,12,5,1,775.5,1528404.428575567,1404025.141604505,175915.4420017893,102980.7993041766,4060.347223492391 -14035,17325,31611,31610,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.348030175366459,8.394128952142866,0,7,-4,45.71605853766945,0,-9,3,2019,13,1,37,37,1,1,0,19.72390292538856,19.72390292538856,0,0,0,0,0,0,0,0,0,0,44.66,57.83,51.24,58.84,6.666666666666667,1,1,0,0,8,12,5,1,775.5,1528404.428575567,1404025.141604505,175915.4420017893,102980.7993041766,4060.347223492391 -14036,17326,31612,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.021757980949643,6.835955072158103,0,0,-903.4597427508319,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.085831283051066,7.575526261316452,48.53,45.51,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,967,259338.6117796774,226075.4046340773,286165.8019946618,0,1205.71829345206 -14037,17327,31613,31614,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.911364434900293,5.438747213143997,23,1,-43.21671539379378,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.265169752311496,58.15,52.91,55.93,49.95,8.333333333333334,1,1,0,0,5,9,2,1,792.5,727701.7414171589,242932.8119634145,464440.6560446065,0,1800.013253609272 -14037,17327,31614,31613,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.013802529342117,7.346505134342503,23,-1,105.0404329970914,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,77.57994947469898,0,0,1,1,0,7.189743034581406,6.756373520419502,55.93,49.95,58.15,52.91,8.333333333333334,1,1,0,0,5,9,2,1,792.5,727701.7414171589,242932.8119634145,464440.6560446065,0,1800.013253609272 -14038,17328,31615,31616,-9,-9,1,0,34,2,3,0,2,2,-9,0,3,7.17009612816449,7.130307326903555,0,4,-2,169.7464657384253,0,-9,-9,2019,24,11,16,16,1,11,0,8.445056488993648,8.445056488993648,0,0,0,0,0,1,1,0,0,0,30.74,53.54,34.81,39.24,6.666666666666667,1,1,0,1,3,12,3,0,884.2,-59482.06962247798,0,0,0,1630.739741449093 -14038,17328,31616,31615,-9,-9,1,1,36,2,3,0,2,2,-9,0,3,7.09658361019209,7.630207169033107,0,4,2,15.30302013945312,0,-9,-9,2019,34,12,30,0,1,12,0,5.563510537736167,5.563510537736167,0,0,0,0,0,1,1,0,0,0,34.81,39.24,30.74,53.54,3.333333333333333,1,1,0,1,10,12,3,0,884.2,-59482.06962247798,0,0,0,1630.739741449093 -14038,17328,31617,-9,31615,31616,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.970967063709,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,884.2,-59482.06962247798,0,0,0,1630.739741449093 -14038,17328,31618,-9,31615,31616,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-964.8741313127645,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,884.2,-59482.06962247798,0,0,0,1630.739741449093 -14038,17328,31619,-9,31615,31616,1,1,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.004313713288,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,884.2,-59482.06962247798,0,0,0,1630.739741449093 -14039,17329,31620,31621,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.622498159784401,8.250158215194947,0,4,-5,79.0214846660099,0,3,3,2019,9,0,32,32,1,0,0,18.09130962030264,18.09130962030264,0,0,0,0,0,0,0,0,1.841172391308965,0,52.4,52.91,54.2,57.49,6.666666666666667,1,1,0,0,9,4,5,1,429,185891.2968314132,26814.17729111979,173540.7736525066,93897.4545488013,4509.549051596463 -14039,17329,31621,31620,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.802333135168142,8.609480295980511,0,4,5,163.0748522371027,0,-9,-9,2019,10,0,42,42,1,0,0,16.51404565910855,16.51404565910855,0,0,0,0,0,0,0,0,6.543966125292842,0,54.2,57.49,52.4,52.91,8.333333333333334,1,1,0,0,9,4,5,1,429,185891.2968314132,26814.17729111979,173540.7736525066,93897.4545488013,4509.549051596463 -14040,17330,31622,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.156957879479745,7.782967332420802,7.100779109913395,0,0,-981.3729457512329,0,-9,-9,2019,10,0,19,36,1,0,0,9.975199145450656,9.975199145450656,0,0,0,0,0,0,0,0,3.115110840707836,7.379689695120381,45.72,45.67,-9,-9,6.666666666666667,1,1,0,0,9,7,3,1,411,129859.4394144719,28274.79191776868,0,0,947.5983252583051 -14041,17331,31623,31624,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.360541325059113,7.009180971232654,0,30,2,46.58053737860099,0,3,3,2019,9,0,24,24,1,1,0,5.05401868741621,5.05401868741621,0,0,0,0,14.5,1,1,0,0,0,53,54,50,54,7,2,3,0,0,8,8,2,0,667.6666666666666,240970.0228798483,13077.91702230746,194714.3597722427,73184.59741045012,872.3994418019161 -14041,17331,31624,31623,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,0,0,0,30,-2,-147.8455158025981,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,7,2,3,0,0,0,8,2,0,667.6666666666666,240970.0228798483,13077.91702230746,194714.3597722427,73184.59741045012,872.3994418019161 -14041,17331,31625,-9,31624,31623,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1062.955840634297,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,667.6666666666666,240970.0228798483,13077.91702230746,194714.3597722427,73184.59741045012,872.3994418019161 -14041,17332,31626,-9,31624,31623,1,1,28,0,1,0,1,1,-9,0,4,8.146697033701978,8.192123775937153,0,0,0,-1083.148652081526,0,3,2,2019,10,0,45,40,1,1,1,9.832801151941958,9.832801151941958,0,0,0,0,2,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,1,8,4,0,1421,85484.68088279349,7509.827377966348,0,0,1282.620001832205 -14041,17333,31627,-9,31624,31623,1,0,25,0,1,0,1,1,-9,0,4,7.567986618891304,7.267797924783536,0,0,0,-1045.611561029291,0,3,2,2019,11,0,38,37,1,2,1,5.925096132551206,5.925096132551206,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,721,-76646.58442972478,-64249.42478821844,0,0,1192.77350340911 -14042,17334,31628,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.989061857927401,8.017337689971491,0,0,0,-940.1901510999406,0,2,2,2019,16,5,44,50,1,5,0,9.114049803722724,9.114049803722724,0,0,0,0,0,0,0,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,6,10,4,0,565,65404.65279206727,14601.72293582457,0,0,1210.124776219744 -14043,17335,31629,-9,31631,31632,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1061.535711606392,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,0,10,3,0,669.75,41982.59459476232,-37420.47350568979,165697.3268725615,106174.087914225,5084.027515560103 -14043,17335,31630,-9,31631,31632,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.5228450757895,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,59,-9,-9,7,1,1,-9,0,0,10,3,0,669.75,41982.59459476232,-37420.47350568979,165697.3268725615,106174.087914225,5084.027515560103 -14043,17335,31631,31632,-9,-9,1,0,45,0,1,0,3,3,-9,1,1,8.251417951957787,8.341839947830721,0,6,11,96.17004754131902,0,3,3,2019,19,7,43,0,1,7,0,9.133156596583039,9.133156596583039,0,0,0,.0936395936097654,0,1,0,1,0,0,46.89,15.25,51,56,1.666666666666667,1,1,0,1,5,10,3,0,669.75,41982.59459476232,-37420.47350568979,165697.3268725615,106174.087914225,5084.027515560103 -14043,17335,31632,31631,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.321425828717791,7.690054558180178,0,6,-11,53.84597560530695,0,-9,-9,2019,10,0,24,0,1,1,0,7.21774449743978,7.21774449743978,0,0,0,0,0,1,0,1,0,0,51,56,46.89,15.25,7,1,1,0,0,1,10,3,0,669.75,41982.59459476232,-37420.47350568979,165697.3268725615,106174.087914225,5084.027515560103 -14044,17336,31633,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1044.109010536386,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,-9,-9,5,1,1,0,0,0,9,1,0,775,16727.06891217817,21878.47274596336,0,0,550.5892441213792 -14045,17337,31634,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.597219923786872,7.89070965729664,0,0,-902.7182186194926,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.97576694456679,7.843887226380807,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1363,637168.158258635,229721.417803248,204490.3674133298,85913.38402206532,2009.900795272747 -14045,17338,31635,-9,31634,-9,1,1,47,0,0,0,1,1,-9,0,2,0,0,0,0,0,-995.669499119547,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.23,45.42,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,572,-114970.1619064617,0,0,0,0 -14046,17339,31636,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.472825390860004,8.414542563790491,0,0,-1016.347899373502,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,5.170446538897854,8.133233125291893,48.88,51.79,-9,-9,10,1,1,0,0,0,12,4,1,634,733046.1853739782,594882.3471742959,145030.5149926543,0,3254.555841493521 -14047,17340,31637,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.973027586204172,8.104845502168756,5.842056220530405,0,0,-994.2845711281086,-9,2,2,2019,20,8,35,0,1,8,0,8.999395406713544,8.999395406713544,0,0,0,0,0,1,1,0,5.208093876728452,0,27.38,44.3,-9,-9,5,1,1,0,0,3,7,3,0,1051.5,59025.60505416576,0,0,0,2195.993136123003 -14047,17340,31638,-9,31637,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.829903557311,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1051.5,59025.60505416576,0,0,0,2195.993136123003 -14048,17341,31639,-9,31641,31642,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.2060435723461,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,604.5,260922.6872958015,3609.432941319214,228454.3456194341,65527.6918076843,3607.409153381087 -14048,17341,31640,-9,31641,31642,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.3258528273025,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,604.5,260922.6872958015,3609.432941319214,228454.3456194341,65527.6918076843,3607.409153381087 -14048,17341,31641,31642,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.170018878643535,8.006757549303797,0,9,-11,-39.51740877223747,0,2,3,2019,8,0,21,27,1,0,0,20.5651910253107,20.5651910253107,0,0,0,0,0,1,1,0,6.957917069972334,0,43.21,55.55,54.2,57.49,8.333333333333334,1,1,0,0,9,12,4,1,604.5,260922.6872958015,3609.432941319214,228454.3456194341,65527.6918076843,3607.409153381087 -14048,17341,31642,31641,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,8.476252441738035,8.392435819997557,0,9,11,32.30632269642386,0,-9,-9,2019,14,3,55,60,1,3,0,9.798860173400239,9.798860173400239,0,0,0,0,0,1,1,0,2.573316743047696,0,54.2,57.49,43.21,55.55,8.333333333333334,1,1,0,0,11,12,4,1,604.5,260922.6872958015,3609.432941319214,228454.3456194341,65527.6918076843,3607.409153381087 -14049,17342,31643,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,4.09050405627683,3.708936081280725,0,0,-942.9818583681991,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,14.5,1,1,0,0,3.747202020848972,31.09,30.78,-9,-9,6.666666666666667,1,1,0,1,0,13,2,0,1086,-31515.84481523296,0,0,0,1099.160444855446 -14050,17343,31644,31645,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,6.444444521176484,6.495442658221767,8,1,-80.08771534612592,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.517452887964895,6.565563654671755,53.97,19.68,45.42,40.27,6.666666666666667,1,1,0,0,0,12,4,1,631.5,1052104.126228614,520529.756590937,181924.8965005295,0,2332.284489387571 -14050,17343,31645,31644,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.140257145243943,8.048351267224,0,8,-1,119.9658933102504,0,3,3,2019,12,0,39,40,1,0,0,11.60788492850226,11.60788492850226,0,0,0,0,7,1,1,0,.3768893557472806,0,45.42,40.27,53.97,19.68,5,1,1,0,0,8,12,4,1,631.5,1052104.126228614,520529.756590937,181924.8965005295,0,2332.284489387571 -14051,17344,31646,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.7474742796093,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.90000000000001,29.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,158,558725.312559964,0,166766.2792218094,0,1439.459954834789 -14052,17345,31647,31648,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.553527410237148,8.066958307502247,0,31,-1,27.11900952148082,0,3,-9,2019,8,0,21,26,1,0,0,11.37375182357837,11.37375182357837,0,0,0,0,0,0,0,0,7.058641504029856,0,50.03,52.62,42.77,58.91,8.333333333333334,1,1,0,0,9,6,5,1,215,301507.7328640969,236429.7434099779,88154.65805298137,44577.55180574313,4211.155436006693 -14052,17345,31648,31647,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.619877569040067,8.895264126178049,0,31,1,60.30061666329016,0,2,2,2019,13,2,60,53,1,2,0,11.60338079883403,11.60338079883403,0,0,0,0,0,0,0,0,7.468716693267156,0,42.77,58.91,50.03,52.62,6.666666666666667,1,1,0,0,9,6,5,1,215,301507.7328640969,236429.7434099779,88154.65805298137,44577.55180574313,4211.155436006693 -14052,17346,31649,-9,31647,31648,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1039.824894296243,0,2,2,2019,10,0,0,12,3,0,1,0,0,0,0,0,0,0,0,0,0,2.973879276132259,0,43.2,59.97,-9,-9,10,1,1,0,0,6,6,1,1,340,-30551.75535768869,0,0,0,142.4672030153764 -14053,17347,31650,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,7.703218183235334,8.383432980889413,5.889469233014602,0,0,-981.4214601488079,0,3,3,2019,5,0,24,36,1,0,0,13.40091778074669,13.40091778074669,0,0,0,0,0,0,0,0,1.896285238245242,5.856070549014404,57.06,57.76,-9,-9,10,1,1,0,0,12,11,4,0,223,420200.9212439324,315955.6819494548,195401.5758358556,0,1287.142317424699 -14054,17348,31651,31652,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,10,2,90.38335161348624,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,12.72532987259135,0,0,1,1,0,0,0,53.81,53.56,46.61,42.71,10,1,1,0,0,3,11,4,1,386.5,1486696.111010783,1185462.875207758,234624.6223854798,0,2728.057007575762 -14054,17348,31652,31651,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.21751461735615,8.252117941941005,10,-2,-20.0029208646803,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.377946076573112,46.61,42.71,53.81,53.56,10,1,1,0,0,0,11,4,1,386.5,1486696.111010783,1185462.875207758,234624.6223854798,0,2728.057007575762 -14055,17349,31653,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.844202102306941,8.509806067572873,8.006237494382489,0,0,-1031.019437610724,0,2,2,2019,6,0,16,18,1,0,0,5.710069368222086,5.710069368222086,0,0,0,0,27,0,0,0,0,8.144798493638115,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,618,120304.5539643986,0,0,0,1564.121437905524 -14056,17350,31654,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.546077674320186,8.407540648205922,0,0,0,-1049.244812230278,0,2,2,2019,11,0,36,40,1,0,0,16.87006026035255,16.87006026035255,0,0,0,0,0,1,1,0,0,0,42.07,56.45,-9,-9,8.333333333333334,1,1,0,0,9,7,5,0,84,123824.6428526073,-31153.29525293575,0,0,1361.460629281826 -14057,17351,31655,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,7.502458315047924,7.629566473799716,0,0,-1022.058063292962,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.183327404350141,0,0,1,1,0,0,7.831034222466674,41,22,-9,-9,5,1,1,0,0,0,1,3,1,309,579517.1680393105,134153.0562422815,238437.0472120854,0,3641.993343879645 -14058,17352,31656,31657,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.652188429991239,7.598537573878684,0,7,1,-21.92763224490903,0,3,2,2019,8,0,20,0,1,0,0,13.71710321621254,13.71710321621254,0,0,0,0,0,0,0,0,0,0,54.37,54.8,52,55,8.333333333333334,1,1,0,0,3,5,5,1,669.5,442800.0287859974,166105.8126259142,213886.4918636917,93974.60957632656,3438.654559841406 -14058,17352,31657,31656,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.909140971241849,9.029494633331524,0,7,-1,11.13997029488587,-9,2,3,2019,9,0,60,0,1,1,0,12.46937705487666,12.46937705487666,0,0,0,0,0,0,0,0,0,0,52,55,54.37,54.8,8,1,1,0,0,1,5,5,1,669.5,442800.0287859974,166105.8126259142,213886.4918636917,93974.60957632656,3438.654559841406 -14059,17353,31658,31659,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.332685984872077,8.437053606785357,0,10,2,-70.7795204595037,0,1,2,2019,8,0,36,37,1,0,0,17.76607819954102,17.76607819954102,0,0,0,0,0,1,1,0,3.128105972003754,0,49.46,56.91,50.43,53.69,8.333333333333334,1,1,0,0,10,4,4,1,1406.333333333333,226741.3128508702,64003.56333393943,111738.7791068144,91077.85271868313,3149.75979789273 -14059,17353,31659,31658,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.318391399882787,7.935172886540032,0,10,-2,-64.04400114426279,0,1,1,2019,6,0,25,22,1,0,0,14.86244621357141,14.86244621357141,0,0,0,0,0,1,1,0,2.480441410434534,0,50.43,53.69,49.46,56.91,8.333333333333334,1,1,0,0,8,4,4,1,1406.333333333333,226741.3128508702,64003.56333393943,111738.7791068144,91077.85271868313,3149.75979789273 -14059,17353,31660,-9,31659,31658,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.343651446944,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1406.333333333333,226741.3128508702,64003.56333393943,111738.7791068144,91077.85271868313,3149.75979789273 -14060,17354,31661,31662,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.682352714299565,8.776785903194449,0,5,3,-20.06980247200438,0,-9,-9,2019,9,1,55,55,1,1,0,15.44411911855586,15.44411911855586,0,0,0,0,0,0,0,0,7.40545722313975,0,54.96,53.17,49.52,55.68,8.333333333333334,1,1,0,0,5,8,5,0,1437.5,255769.1018898927,146971.8185130451,452204.3764808374,285098.6881292122,5491.00356245526 -14060,17354,31662,31661,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.028133305698475,9.164563693894806,0,5,-3,-67.49300471574466,0,-9,-9,2019,12,0,80,43,1,0,0,11.10447422710883,11.10447422710883,0,0,0,0,0,0,0,0,0,0,49.52,55.68,54.96,53.17,8.333333333333334,1,1,0,0,9,8,5,0,1437.5,255769.1018898927,146971.8185130451,452204.3764808374,285098.6881292122,5491.00356245526 -14061,17355,31663,-9,31664,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.268605985592,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,143,-45956.70081801584,0,0,0,2044.376251878812 -14061,17355,31664,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.996957117077244,7.910491837143725,5.071132149886945,0,0,-976.0820771096904,0,2,1,2019,14,4,39,43,1,4,0,8.124539701212674,8.124539701212674,0,0,0,0,0,1,1,0,5.279903319226483,0,43.97,53.97,-9,-9,5,3,4,0,1,8,7,3,0,143,-45956.70081801584,0,0,0,2044.376251878812 -14062,17356,31665,-9,-9,-9,1,0,37,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1053.848213650907,0,2,3,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,1333.666666666667,-8223.021500612953,0,0,0,1060.614375736857 -14062,17356,31666,-9,31665,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.5243677856774,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1333.666666666667,-8223.021500612953,0,0,0,1060.614375736857 -14062,17356,31667,-9,31665,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.54607323911,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,1333.666666666667,-8223.021500612953,0,0,0,1060.614375736857 -14063,17357,31668,31669,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.353807001218096,8.358334567397092,0,3,-3,-38.88783482126478,0,2,2,2019,7,0,47,43,1,0,0,8.91561988619288,8.91561988619288,0,0,0,0,2,0,0,0,7.018109104135874,0,54.94,53.18,42.78,45.32,8.333333333333334,1,1,0,0,9,10,4,0,257,582013.007635711,-58678.3107238806,116897.5965759275,0,3091.073984428502 -14063,17357,31669,31668,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.038693866578916,8.011623959178808,0,3,3,84.07614559358197,-9,-9,-9,2019,10,2,47,0,1,2,0,6.692082387581401,6.692082387581401,0,0,0,0,0,0,0,0,0,0,42.78,45.32,54.94,53.18,8.333333333333334,1,1,0,0,1,10,4,0,257,582013.007635711,-58678.3107238806,116897.5965759275,0,3091.073984428502 -14064,17358,31670,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.551084926899202,8.148255350306513,6.455824316489663,0,0,-1015.669162148114,-9,2,2,2019,10,0,35,0,1,1,0,7.596625934743781,7.596625934743781,0,0,0,0,0,1,1,0,0,6.242831218037301,52,53,-9,-9,8,1,1,0,0,1,4,4,1,209,184860.1372510393,67003.94060551311,63741.68238704441,0,1445.062296084097 -14064,17359,31671,-9,31670,-9,1,1,30,0,0,0,2,2,-9,1,3,0,0,0,0,0,-838.6584534820861,0,2,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,41.19,57.08,-9,-9,5,4,2,1,0,0,4,2,1,100,0,0,0,0,677.7123082146941 -14065,17360,31672,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.023710231207755,7.295858393203312,0,0,0,-960.9945017669465,0,2,2,2019,12,1,18,18,1,1,0,9.45825180064152,9.45825180064152,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,1008.333333333333,74155.04786047344,27929.94992724785,0,0,1920.190267640629 -14065,17360,31673,-9,31672,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.1212046218998,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1008.333333333333,74155.04786047344,27929.94992724785,0,0,1920.190267640629 -14065,17360,31674,-9,31672,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.188248981725,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1008.333333333333,74155.04786047344,27929.94992724785,0,0,1920.190267640629 -14066,17361,31675,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.939727678156427,5.934270988557997,0,0,-953.3542363162841,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.325539425494394,6.120455379003618,53.23,47.51,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1900,310838.1384021856,34044.95978575508,87515.4475594134,0,1637.199643303349 -14067,17362,31676,31677,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.602089311018961,7.342455022227099,57,3,-23.49517889512482,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,3.078259711911906,0,0,1,1,0,2.521684645283554,7.302417253055393,58.89,38.08,59.08,29.49,10,1,1,0,0,0,5,3,1,928.5,1556699.770998566,473628.7652520806,709226.4105440029,0,2715.399316735278 -14067,17362,31677,31676,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.276290984478982,7.314036056224365,57,-3,131.580698578866,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0821351706658,6.770250567745851,59.08,29.49,58.89,38.08,8.333333333333334,1,1,0,0,0,5,3,1,928.5,1556699.770998566,473628.7652520806,709226.4105440029,0,2715.399316735278 -14068,17363,31678,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-933.2076116760209,0,-9,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,47.87,22.4,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,211,777780.6700968548,210164.2195508289,329062.9215637395,20602.4026033663,1447.589709119085 -14069,17364,31679,31682,-9,-9,1,1,56,0,2,0,3,3,-9,0,4,8.409438762691874,8.400544830932269,0,21,9,46.75581444122697,0,3,3,2019,9,0,55,56,1,1,0,7.607560162059082,7.607560162059082,0,0,0,0,0,1,1,0,0,0,53,54,35.37,50.59,8,1,1,0,0,11,9,4,1,518.25,122250.5318748928,44920.41399303313,0,0,2783.545265458202 -14069,17364,31680,-9,31682,31679,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.004378389888,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,518.25,122250.5318748928,44920.41399303313,0,0,2783.545265458202 -14069,17364,31681,-9,31682,31679,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.672936191899,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,1,518.25,122250.5318748928,44920.41399303313,0,0,2783.545265458202 -14069,17364,31682,31679,-9,-9,1,0,47,0,2,0,2,2,-9,1,2,7.220110275905836,7.417238318732965,0,21,0,30.00606880318546,0,1,1,2019,13,2,16,20,1,2,0,9.758312198914448,9.758312198914448,0,0,0,0,0,1,1,0,0,0,35.37,50.59,53,54,6.666666666666667,4,2,0,0,8,9,4,1,518.25,122250.5318748928,44920.41399303313,0,0,2783.545265458202 -14070,17365,31683,31684,-9,-9,1,1,67,0,1,0,1,1,-9,0,3,8.839230846134576,9.352120404488778,7.995924009478095,9,2,-87.17746622365274,0,2,2,2019,23,11,37,37,1,11,0,20.63232120882475,20.63232120882475,0,0,0,0,7,1,1,0,0,8.752546899016757,34.17,57.25,59.07,43.05,3.333333333333333,1,1,0,0,10,4,5,1,989,517029.8295071924,77673.65019342114,419621.238417711,17211.27117205543,3523.961619124595 -14070,17365,31684,31683,-9,-9,1,0,65,0,1,0,2,2,-9,0,3,0,0,0,9,-2,-143.9758638966947,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.594531113354668,0,59.07,43.05,34.17,57.25,8.333333333333334,1,1,0,0,3,4,5,1,989,517029.8295071924,77673.65019342114,419621.238417711,17211.27117205543,3523.961619124595 -14071,17366,31685,31686,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,8.200952969544993,8.62870751459169,0,2,6,128.013058819028,0,-9,-9,2019,30,12,46,65,1,12,0,11.3277737230853,11.3277737230853,0,0,0,0,2,1,1,0,0,0,29.27,54.23,52.33,44.08,1.666666666666667,2,3,0,1,8,6,3,1,492.5,183834.5241406264,56520.90179180185,0,0,2070.79099321495 -14071,17366,31686,31685,-9,-9,1,0,33,0,3,0,2,2,-9,0,2,0,0,0,2,-6,16.94934886756287,0,-9,-9,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.33,44.08,29.27,54.23,8.333333333333334,2,3,0,0,1,6,3,1,492.5,183834.5241406264,56520.90179180185,0,0,2070.79099321495 -14071,17366,31687,-9,31686,31685,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.402453251612,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,492.5,183834.5241406264,56520.90179180185,0,0,2070.79099321495 -14071,17366,31688,-9,31686,31685,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.9659990016022,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,492.5,183834.5241406264,56520.90179180185,0,0,2070.79099321495 -14072,17367,31689,31690,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.729943688140497,7.67373550582639,51,0,-53.66073122002229,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5003561120485,7.6031842475218,63.41,39.7,51.01,23.72,8.333333333333334,1,1,0,0,2,9,3,1,402.5,1211869.646079897,692942.4541402956,355541.512951992,0,2308.257138402674 -14072,17367,31690,31689,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,51,0,-92.1947966635868,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,3.282978739554236,0,21.5313472743128,0,1,1,0,3.909139122168342,0,51.01,23.72,63.41,39.7,3.333333333333333,1,1,0,0,0,9,3,1,402.5,1211869.646079897,692942.4541402956,355541.512951992,0,2308.257138402674 -14073,17368,31691,-9,31692,31693,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.9755966656185,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,0,836.6666666666666,-21131.80397839098,107369.0763060694,0,0,2142.298883214523 -14073,17368,31692,31693,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,7.515406871103356,7.513525056428978,0,11,-22,-80.28827134671164,0,3,3,2019,6,0,26,15,1,0,0,6.791307780043425,6.791307780043425,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,3,6,3,0,836.6666666666666,-21131.80397839098,107369.0763060694,0,0,2142.298883214523 -14073,17368,31693,31692,-9,-9,1,1,64,0,1,0,3,3,-9,0,4,8.205329315678433,8.105238487578593,0,7,22,88.12094971062265,0,-9,-9,2019,8,0,50,56,1,0,0,7.637835246761309,7.637835246761309,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,6,3,0,836.6666666666666,-21131.80397839098,107369.0763060694,0,0,2142.298883214523 -14074,17369,31694,31695,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.631884234040863,9.07522286425422,54,-1,-73.10038238580566,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.872396729734084,9.064179223968923,38.15,42.16,44.76,50.85,3.333333333333333,1,1,0,0,0,10,5,1,2863.5,1915292.813646291,823873.1586131847,689038.635635752,0,7080.93521909171 -14074,17369,31695,31694,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.075386015842852,8.173208870313507,54,1,-91.82714398825713,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,3.623967805424854,0,1,1,0,7.184974466748146,8.132393264206959,44.76,50.85,38.15,42.16,6.666666666666667,1,1,0,0,0,10,5,1,2863.5,1915292.813646291,823873.1586131847,689038.635635752,0,7080.93521909171 -14075,17370,31696,31697,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,4.013262543228733,4.155720504848908,42,5,89.64380204650608,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.043435011612718,4.609686134240303,52,47,58.15,52.91,7,1,1,0,0,0,10,2,1,375,655809.7153304273,152766.3481823512,372007.1746956947,0,2825.505935412184 -14075,17370,31697,31696,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.115122739471232,6.107561646157731,42,-5,-125.2740687732711,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,1.283701937660548,6.056075022133617,58.15,52.91,52,47,8.333333333333334,1,1,0,0,4,10,2,1,375,655809.7153304273,152766.3481823512,372007.1746956947,0,2825.505935412184 -14075,17371,31698,-9,31697,31696,1,1,39,0,0,0,2,2,-9,0,4,8.343520398354,8.571968786953637,0,0,0,-1071.748263155552,-9,2,2,2019,10,0,34,0,1,1,0,13.42575519695847,13.42575519695847,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,10,4,1,578,64007.11744793747,0,0,0,2157.976593539327 -14076,17372,31699,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1080.250927794849,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,55.74,-9,-9,5,1,1,0,0,4,2,1,0,690,97324.18972358285,0,0,0,976.2924227261296 -14076,17372,31700,-9,31699,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.0242723897225,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,690,97324.18972358285,0,0,0,976.2924227261296 -14077,17373,31701,31702,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.904502468500827,7.05860032394102,2,6,137.6455891328777,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,2.401400889970448,0,26.31451304299701,42,1,1,0,1.714485842879979,7.41457270037716,55.11,34.4,30.85,17.26,8.333333333333334,1,1,0,0,0,11,2,1,297,338755.261406369,212688.9964687282,160567.8254621116,0,2653.707816393387 -14077,17373,31702,31701,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,6.532314429249121,6.306276736790727,2,-6,55.62968451898995,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,38.88412201924182,0,0,1,1,0,0,6.202359456961384,30.85,17.26,55.11,34.4,6.666666666666667,1,1,0,0,0,11,2,1,297,338755.261406369,212688.9964687282,160567.8254621116,0,2653.707816393387 -14078,17374,31703,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.4955773499836,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.98,22.06,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,534,51954.71523220577,0,0,0,1305.199721797237 -14079,17375,31704,31705,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,9.47770375596764,9.539121234595433,37,6,46.52325359239479,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.457032550973643,9.195610736212595,54.67,57.49,53.39,44.47,8.333333333333334,1,1,0,0,10,7,5,1,2088.5,3417083.311487285,2052113.731932751,1304272.712969804,0,6169.884822330701 -14079,17375,31705,31704,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.948870754480929,5.817123591109773,37,-6,31.13407803011138,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.169078201521024,5.801915788953298,53.39,44.47,54.67,57.49,1.666666666666667,1,1,0,0,0,7,5,1,2088.5,3417083.311487285,2052113.731932751,1304272.712969804,0,6169.884822330701 -14080,17376,31706,31707,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.961506724827185,7.630705366057063,44,4,71.8470474024688,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.669142028882521,57.92,51.82,36.77,35.02,6.666666666666667,1,1,0,0,7,9,3,1,1362,803790.2278987364,665596.1427879957,253305.941450572,0,2339.041110490725 -14080,17376,31707,31706,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,7.129484540354597,7.187319516924803,0,44,-4,114.7986428138123,0,3,2,2019,26,12,56,98,1,12,0,1.897359298556824,1.897359298556824,0,0,0,0,0,1,1,0,2.288935083526893,0,36.77,35.02,57.92,51.82,1.666666666666667,1,1,0,0,11,9,3,1,1362,803790.2278987364,665596.1427879957,253305.941450572,0,2339.041110490725 -14081,17377,31708,31709,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.776263284911839,5.000178363048651,8,-3,126.7773577901689,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.171875689656652,53.64,43.21,42.05,43.34,6.666666666666667,1,1,0,0,0,12,2,1,846,-33910.15927378083,4752.547989013005,0,0,1149.447859510049 -14081,17377,31709,31708,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,3,-18.59622324729733,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,43.34,53.64,43.21,6.666666666666667,1,1,0,0,7,12,2,1,846,-33910.15927378083,4752.547989013005,0,0,1149.447859510049 -14082,17378,31710,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1150.929799074716,-9,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12,19.99,-9,-9,10,1,1,0,0,0,12,1,0,678,-74616.02867632992,0,0,0,1199.804668996474 -14083,17379,31711,-9,31712,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-858.4000215869316,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,809.6666666666666,-122976.6274946814,0,0,0,835.851553061157 -14083,17379,31712,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-945.2446908942716,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,27.9,40.31,-9,-9,0,1,1,0,1,0,11,1,0,809.6666666666666,-122976.6274946814,0,0,0,835.851553061157 -14083,17379,31713,-9,31712,-9,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-896.672795336633,-9,2,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,120,1,1,0,0,0,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,809.6666666666666,-122976.6274946814,0,0,0,835.851553061157 -14084,17380,31714,31715,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,6.463755319944553,6.677244563920103,0,7,8,-129.2631469161992,0,-9,-9,2019,9,0,25,25,1,0,0,3.489610924097751,3.489610924097751,0,0,0,0,0,1,1,0,0,0,49.32,38.51,31.01,49.22,6.666666666666667,1,1,0,0,6,13,3,0,444,33941.13702582131,-9681.522208728495,153024.5240542212,99041.3928574786,1898.142107807073 -14084,17380,31715,31714,-9,-9,1,0,39,0,1,0,2,2,-9,1,3,7.259299487185463,7.388187398898411,0,7,-8,40.73693237892329,0,2,3,2019,22,7,37,20,1,7,0,7.612363048236271,7.612363048236271,0,0,0,0,0,1,1,0,0,0,31.01,49.22,49.32,38.51,5,1,1,0,0,7,13,3,0,444,33941.13702582131,-9681.522208728495,153024.5240542212,99041.3928574786,1898.142107807073 -14084,17380,31716,-9,31715,31714,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.9270743345646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,444,33941.13702582131,-9681.522208728495,153024.5240542212,99041.3928574786,1898.142107807073 -14085,17381,31717,31719,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,5,-10,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.86,21.48,46.34,38.2,5,1,1,0,0,0,2,1,0,626,211361.380182994,198353.0261883516,52946.25040863403,29738.17288073432,2932.606211479229 -14085,17381,31718,-9,31717,31719,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1082.326423784978,1,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,626,211361.380182994,198353.0261883516,52946.25040863403,29738.17288073432,2932.606211479229 -14085,17381,31719,31717,-9,-9,1,1,47,0,1,0,3,3,-9,1,5,0,0,0,5,10,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,46.34,38.2,58.86,21.48,5,1,1,1,0,0,2,1,0,626,211361.380182994,198353.0261883516,52946.25040863403,29738.17288073432,2932.606211479229 -14085,17381,31720,-9,31717,31719,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1060.766077336804,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,626,211361.380182994,198353.0261883516,52946.25040863403,29738.17288073432,2932.606211479229 -14086,17382,31721,31725,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,15,-2,25.58595469050817,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,43.81,52.15,45.02,3.333333333333333,2,3,0,0,0,2,2,1,373.4,178831.8320324695,59084.4694949398,109894.2821791376,71048.34859132553,2047.030609910784 -14086,17382,31722,-9,31721,31725,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-850.5280412177118,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.4,178831.8320324695,59084.4694949398,109894.2821791376,71048.34859132553,2047.030609910784 -14086,17382,31723,-9,31721,31725,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.4051439504209,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.4,178831.8320324695,59084.4694949398,109894.2821791376,71048.34859132553,2047.030609910784 -14086,17382,31724,-9,31721,31725,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.2277374567425,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,373.4,178831.8320324695,59084.4694949398,109894.2821791376,71048.34859132553,2047.030609910784 -14086,17382,31725,31721,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,7.847896290046071,7.601516210069766,0,15,2,9.827335346701545,0,-9,2,2019,12,0,40,42,1,0,0,8.192922569835764,8.192922569835764,0,0,0,0,0,1,1,0,0,0,52.15,45.02,43.15,43.81,3.333333333333333,2,3,0,0,9,2,2,1,373.4,178831.8320324695,59084.4694949398,109894.2821791376,71048.34859132553,2047.030609910784 -14087,17383,31726,31727,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.822102869347972,7.549489278230313,39,-1,76.98853122027558,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.302251154750962,7.603589868237985,51.79,55.99,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,372,1439691.850112596,1132414.955358242,291313.2315289546,107734.5887259402,4233.164873641745 -14087,17383,31727,31726,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.644686152000379,7.861513701803032,39,1,-51.4713689049319,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.78747569856498,7.538320361467676,57.16,56.15,51.79,55.99,10,1,1,0,0,0,4,4,1,372,1439691.850112596,1132414.955358242,291313.2315289546,107734.5887259402,4233.164873641745 -14088,17384,31728,31729,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.191755516222512,8.914558485039919,0,30,2,6.682792981319461,0,2,2,2019,9,0,40,47,1,1,0,22.51782889957754,22.51782889957754,0,0,0,0,0,1,1,0,0,0,53,54,29.21,30.16,8,1,1,0,0,1,5,4,1,652.5,401762.9259056936,340426.4738124413,176809.1148965483,0,2890.786748996217 -14088,17384,31729,31728,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,30,-2,-45.04099244306306,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.21,30.16,53,54,6.666666666666667,1,1,0,0,0,5,4,1,652.5,401762.9259056936,340426.4738124413,176809.1148965483,0,2890.786748996217 -14088,17385,31730,-9,31729,31728,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.208931137033,0,3,2,2019,10,0,0,36,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,5,1,1,1186,-132039.418015791,0,0,0,0 -14088,17386,31731,-9,31729,31728,1,1,18,0,0,0,2,2,-9,0,4,7.843713811702789,7.920204870689788,0,0,0,-819.0798365162312,0,3,2,2019,11,0,37,0,1,2,1,12.47289091430017,12.47289091430017,0,0,0,0,0,1,1,0,.5784915906559424,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,329,25595.08285709241,-83568.4107050957,0,0,736.647864908402 -14089,17387,31732,31733,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.960496363346157,7.301822690334744,0,8,-2,67.17924429822207,-9,-9,-9,2019,7,0,37,0,1,0,0,7.775680108673098,7.775680108673098,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49.04,55.86,8.333333333333334,1,1,0,0,11,2,3,1,1799,27152.3327251617,-13698.61732275477,0,0,3524.006692506276 -14089,17387,31733,31732,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.016923918376994,6.953222173959368,0,8,2,79.71457127457732,0,-9,-9,2019,10,0,63,64,1,0,0,2.314219730806349,2.314219730806349,0,0,0,0,0,0,0,0,0,0,49.04,55.86,46.63,59.72,6.666666666666667,1,1,0,0,9,2,3,1,1799,27152.3327251617,-13698.61732275477,0,0,3524.006692506276 -14090,17388,31734,31735,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,21,-11,143.7364271466741,0,2,3,2019,9,0,0,15,3,0,0,0,0,0,0,0,0,2,1,1,0,4.705244470573138,0,60.04,39.68,57.91,46.15,8.333333333333334,1,1,0,0,10,9,3,1,666.5,731478.8612382093,176093.5119991195,448583.2525628072,0,4003.192383396515 -14090,17388,31735,31734,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,7.565802364676938,7.629062034999937,5.713450218752462,21,11,40.48921662391083,0,3,2,2019,7,0,30,30,1,0,0,7.468014190748447,7.468014190748447,0,0,0,0,0,1,1,0,8.631060081068821,6.175415753061158,57.91,46.15,60.04,39.68,8.333333333333334,1,1,0,0,11,9,3,1,666.5,731478.8612382093,176093.5119991195,448583.2525628072,0,4003.192383396515 -14090,17389,31736,-9,31734,31735,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-915.3994537939278,-9,1,1,2019,5,0,0,0,3,0,1,0,0,0,0,0,.0525912072500851,0,1,1,0,2.623258067085517,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,576,0,0,0,0,1839.902321412658 -14091,17390,31737,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-950.8805385044038,0,2,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,2.875873477135762,0,1,1,0,0,0,39.43,26.82,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,660,0,0,0,0,1181.124503663141 -14092,17391,31738,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.271823298059381,8.648515164059985,0,0,0,-932.0792040775095,-9,1,2,2019,8,1,37,0,1,1,0,12.64899787205136,12.64899787205136,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,787,378295.3163652188,-9256.218631819094,174725.9285229495,13694.91311536954,1704.609601308467 -14093,17392,31739,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.915510586926111,5.95926675268039,0,0,-967.8334327874809,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,3.192719045980373,6.016260164429609,45.37,28.07,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,3137,161319.6268843155,47315.1090506491,204437.3156067979,0,848.4861033519252 -14094,17393,31740,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.091699413831758,7.770832844114339,0,0,0,-961.9182008543012,0,-9,-9,2019,7,0,40,37,1,0,0,10.76542480284395,10.76542480284395,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,179,27910.99474603308,63611.52153972212,0,0,292.2509533592472 -14095,17394,31741,31742,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.840511730773706,7.049535783623526,32,9,-80.96754142383217,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.584012315522498,6.637714091131658,61.12,51.57,44.29,40.27,8.333333333333334,1,1,0,0,7,5,4,1,395,914804.8112738385,614355.6792540477,178005.455718284,0,3067.488560071064 -14095,17394,31742,31741,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.453853131977468,8.296314885443177,0,28,0,-14.19217993128993,0,-9,-9,2019,13,1,44,42,1,1,0,16.76361764129814,16.76361764129814,0,0,0,.1464130577023166,0,1,1,0,2.787267030507632,0,44.29,40.27,61.12,51.57,8.333333333333334,1,1,0,0,11,5,4,1,395,914804.8112738385,614355.6792540477,178005.455718284,0,3067.488560071064 -14095,17395,31743,-9,31742,31741,1,0,25,0,0,0,1,1,-9,0,4,8.312433819564097,8.361641562353407,0,0,0,-916.8469807087516,0,2,2,2019,5,0,33,58,1,0,1,13.75373417636658,13.75373417636658,0,0,0,0,0,1,1,0,2.517581605727658,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,263,-104915.3983316574,-84011.52183350088,0,0,1324.63138587261 -14096,17396,31744,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.316871925301307,8.011843053163773,0,0,0,-1139.127246555214,0,2,2,2019,10,0,38,37,1,0,0,14.85642955710558,14.85642955710558,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,11,1,4,1,814,13624.05203109367,85510.40035673056,119887.7672599778,52038.03487119655,1229.516869804523 -14097,17397,31745,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,7.520579220653477,7.481538664735603,0,0,-923.7095467082371,0,1,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.076387220767453,7.718975758089747,40.9,56.64,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,4025,647908.8423927277,200364.624824659,242231.7862117911,0,3172.271713249352 -14098,17398,31746,31747,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.208708967299555,6.003628728975059,6,0,30.17697338524336,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.871007806283911,48,35,37.6,14.31,5,1,1,0,0,0,10,2,1,483,329842.883770782,60434.80974064972,314393.2844870685,0,1350.773601442815 -14098,17398,31747,31746,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,4.469834303476258,3.948682905749133,6,0,89.07690486803237,0,3,3,2019,28,12,0,0,4,12,0,0,0,1,125.326655545941,128.5530423702676,0,0,1,1,0,0,4.507482023403293,37.6,14.31,48,35,0,1,1,0,0,0,10,2,1,483,329842.883770782,60434.80974064972,314393.2844870685,0,1350.773601442815 -14099,17399,31748,31749,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.291929405585318,8.176263782272507,0,6,2,56.22722391659538,0,2,-9,2019,8,0,50,45,1,0,0,7.711137383104262,7.711137383104262,0,0,0,0,0,0,0,0,0,0,54.1,59.11,53.44,55.06,10,1,1,0,0,7,10,5,1,990,252507.4341239886,214856.0492681396,242766.0152175486,126111.3395412845,3148.315806826965 -14099,17399,31749,31748,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.177670826017694,8.109815078504941,0,6,-2,35.78658905457703,0,3,-9,2019,9,0,43,41,1,0,0,9.97601055062392,9.97601055062392,0,0,0,0,0,0,0,0,2.013102898957963,0,53.44,55.06,54.1,59.11,1.666666666666667,1,1,0,0,7,10,5,1,990,252507.4341239886,214856.0492681396,242766.0152175486,126111.3395412845,3148.315806826965 -14100,17400,31750,31751,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.017324379908949,9.070739672753081,0,7,-4,37.04950112648748,-9,-9,-9,2019,9,0,50,0,1,1,0,14.47784657312082,14.47784657312082,0,0,0,0,0,0,0,0,6.723245332138356,0,53,55,62.42,42.94,8,1,1,0,0,1,6,5,1,342,1123596.891776754,829436.5186268731,235885.5720552488,0,3450.405244742895 -14100,17400,31751,31750,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.734083698823436,7.924512561208841,0,7,4,44.9998658141373,0,3,3,2019,7,0,6,10,1,0,0,37.89896278295587,37.89896278295587,0,0,0,0,0,0,0,0,0,0,62.42,42.94,53,55,10,1,1,0,0,9,6,5,1,342,1123596.891776754,829436.5186268731,235885.5720552488,0,3450.405244742895 -14101,17401,31752,31753,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.863587085479566,6.970031369133293,7,0,94.79647323237097,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.884307674690277,7.117481713816713,57.33,53.46,61.7,34.03,1.666666666666667,1,1,0,0,0,4,2,1,1738.5,690789.3559789329,129511.3360518418,167138.7797493057,0,2378.032861938292 -14101,17401,31753,31752,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.77155991734401,5.884970156935661,7,0,82.92696784027329,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.421696598845199,5.604320220186763,61.7,34.03,57.33,53.46,5,1,1,0,0,0,4,2,1,1738.5,690789.3559789329,129511.3360518418,167138.7797493057,0,2378.032861938292 -14102,17402,31754,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.56751047363292,8.468789404484312,0,0,0,-1022.053651560974,0,2,2,2019,11,1,60,57,1,1,0,8.31019570026106,8.31019570026106,0,0,0,0,0,0,0,0,0,0,42.36,56.12,-9,-9,6.666666666666667,1,1,0,0,5,13,5,1,622,-82924.44637135965,0,0,0,1879.603173766729 -14103,17403,31755,31756,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.508750651782261,7.108170181980656,0,9,-7,162.152014625201,0,-9,-9,2019,9,0,16,40,1,0,0,12.9744929100985,12.9744929100985,0,0,0,0,0,1,1,0,0,0,47.15,56.66,57.33,53.46,5,1,1,0,0,9,10,3,1,59.5,980504.021720284,398275.6829298692,437510.4777293288,6535.559335499302,2204.152735724204 -14103,17403,31756,31755,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.496574424767716,7.034051944748671,9,7,109.1591591443693,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.941148168457061,57.33,53.46,47.15,56.66,6.666666666666667,1,1,0,0,3,10,3,1,59.5,980504.021720284,398275.6829298692,437510.4777293288,6535.559335499302,2204.152735724204 -14104,17404,31757,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.640815201037267,7.509534752999969,0,0,0,-1144.373919208969,0,2,2,2019,13,1,40,42,1,1,0,6.957373770686282,6.957373770686282,0,0,0,0,0,1,1,0,0,0,32.03,59.32,-9,-9,5,1,1,0,0,7,9,3,1,720,288910.9711344412,-39708.62992570199,0,0,1501.072910742005 -14105,17405,31758,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.209179792674453,8.147453763016497,0,0,0,-1064.835814807527,0,-9,-9,2019,1,0,45,40,1,0,0,12.13453606923512,12.13453606923512,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,6,12,5,1,469,120853.860978443,14957.53269017453,0,0,1259.416502593004 -14106,17406,31759,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.773542405866296,8.604618618338387,0,0,-943.0017639153921,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.643952125087403,8.300958860755822,45.26,56.13,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,287,1328827.11307953,955516.4345175888,200001.4738255687,0,3321.800595800321 -14107,17407,31760,-9,31761,31762,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-847.6176328636597,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,354,372473.4027843759,29201.09478594272,275217.4882047006,47285.6820295334,5716.88647509614 -14107,17407,31761,31762,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.758872948600546,8.948711470014356,0,3,0,20.69043472747056,0,2,2,2019,17,6,50,50,1,6,0,13.110821945078,13.110821945078,0,0,0,0,0,1,1,0,2.15524835310107,0,22.73,65.47,50,57,8.333333333333334,1,1,0,0,9,2,5,1,354,372473.4027843759,29201.09478594272,275217.4882047006,47285.6820295334,5716.88647509614 -14107,17407,31762,31761,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.340135592247918,8.493738456700671,0,3,0,51.30363102452193,-9,-9,-9,2019,10,0,55,0,1,1,0,9.101892851456792,9.101892851456792,0,0,0,0,0,1,1,0,7.990252298445125,0,50,57,22.73,65.47,7,4,1,0,0,1,2,5,1,354,372473.4027843759,29201.09478594272,275217.4882047006,47285.6820295334,5716.88647509614 -14108,17408,31763,31764,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.39603652472527,8.513991008149503,0,5,-5,8.014598063851111,0,3,3,2019,12,1,37,37,1,1,0,12.66831042708194,12.66831042708194,0,0,0,0,0,0,0,0,4.808458480555422,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,1,565.5,1355923.834141981,1220252.537913618,190626.6484507592,52460.49281947799,3098.048134546441 -14108,17408,31764,31763,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.373456621998283,8.124612651599344,0,5,5,116.1865255708449,0,3,2,2019,7,0,53,51,1,0,0,9.472118821312236,9.472118821312236,0,0,0,0,0,0,0,0,4.748310127153426,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,6,6,5,1,565.5,1355923.834141981,1220252.537913618,190626.6484507592,52460.49281947799,3098.048134546441 -14108,17409,31765,-9,31763,31764,1,1,22,0,0,0,2,2,-9,0,3,6.725795552133726,6.818547247097984,0,0,0,-1208.147632850976,0,2,2,2019,10,1,18,15,1,1,1,5.99724641985717,5.99724641985717,0,0,0,0,0,0,0,0,0,0,45.49,58.84,-9,-9,8.333333333333334,1,1,0,0,6,6,2,1,576,-17365.05300334671,0,0,0,859.4332355152824 -14109,17410,31766,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.610671517523308,8.093948360064948,0,0,-1149.64821604774,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.786762632984907,43.66,29.92,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,266,436556.0244750235,258134.9196953209,342973.2210662032,0,1596.171575525299 -14110,17411,31767,31768,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.570266637686725,8.560228279173344,0,11,-12,128.4353145014202,0,2,3,2019,12,0,65,0,1,0,0,8.712856088874574,8.712856088874574,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.04,55.86,5,1,1,0,0,9,7,5,1,1126,631747.0381417517,103381.5597773222,740540.5228740793,231230.6533356297,4218.186507302639 -14110,17411,31768,31767,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.472332418697889,8.528154923338734,0,10,12,-7.866817478153918,0,2,2,2019,7,0,66,66,1,0,0,9.968277857810357,9.968277857810357,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,1126,631747.0381417517,103381.5597773222,740540.5228740793,231230.6533356297,4218.186507302639 -14111,17412,31769,-9,31770,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1041.163978000495,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,2,1,887.6666666666666,-69771.29325046447,0,0,0,1604.418427322598 -14111,17412,31770,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,0,6.936738065588704,7.311323408516679,0,0,-1025.694866445546,0,-9,-9,2019,24,12,0,21,3,12,0,0,0,0,0,0,0,120,1,0,1,6.953907034698836,0,24.28,42.81,-9,-9,5,1,1,0,0,10,7,2,1,887.6666666666666,-69771.29325046447,0,0,0,1604.418427322598 -14111,17412,31771,-9,31770,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.8149390148803,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,887.6666666666666,-69771.29325046447,0,0,0,1604.418427322598 -14112,17413,31772,31773,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.401309912135931,7.391002516759063,28,-12,-122.0612107395199,0,2,2,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,42,1,1,0,7.115993183915877,7.499810626643635,28.13,26.27,57.5,35.92,5,1,1,0,0,0,2,4,1,1097,2749741.690495214,2177423.916107042,299142.0502022662,0,4028.98212994761 -14112,17413,31773,31772,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,8.0847267618517,8.377224312075642,28,12,103.881483998296,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.561465379824082,8.577544823119634,57.5,35.92,28.13,26.27,8.333333333333334,1,1,0,0,0,2,4,1,1097,2749741.690495214,2177423.916107042,299142.0502022662,0,4028.98212994761 -14113,17414,31774,31775,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.016340012198672,7.864256266043453,0,45,0,112.7686096948146,0,3,1,2019,12,1,20,22,1,1,0,16.58802635050304,16.58802635050304,0,0,0,0,0,1,1,0,0,0,53.14,45.74,41.84,49.92,6.666666666666667,1,1,0,0,11,2,3,1,431.5,1029734.814670863,322965.2962303177,463560.5558155918,0,4339.195036873961 -14113,17414,31775,31774,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,6.521594309963054,6.612384154015721,10,0,53.35690839275739,0,-9,-9,2019,13,2,0,34,4,2,0,0,0,0,0,0,0,0,1,1,0,8.408375635095233,6.952857419032091,41.84,49.92,53.14,45.74,6.666666666666667,1,1,0,0,11,2,3,1,431.5,1029734.814670863,322965.2962303177,463560.5558155918,0,4339.195036873961 -14114,17415,31776,-9,31778,31779,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.243020334081,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,1071.5,44147.12800830096,7251.029298977637,58604.54230776404,90044.50334717898,2495.738133613523 -14114,17415,31777,-9,31778,31779,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.5359619365281,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,1071.5,44147.12800830096,7251.029298977637,58604.54230776404,90044.50334717898,2495.738133613523 -14114,17415,31778,31779,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.883226064981466,7.898936858597778,0,10,-1,-97.72980512148027,0,2,2,2019,6,0,38,38,1,0,0,6.856766154657637,6.856766154657637,0,0,0,0,0,1,1,0,0,0,54.13,48.04,40.64,52.96,6.666666666666667,1,1,0,0,9,1,3,0,1071.5,44147.12800830096,7251.029298977637,58604.54230776404,90044.50334717898,2495.738133613523 -14114,17415,31779,31778,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.803820051185234,7.817271080921021,0,10,1,-156.6747999178635,0,3,2,2019,12,0,38,38,1,0,0,6.622791985648835,6.622791985648835,0,0,0,0,0,1,1,0,0,0,40.64,52.96,54.13,48.04,0,2,3,0,0,9,1,3,0,1071.5,44147.12800830096,7251.029298977637,58604.54230776404,90044.50334717898,2495.738133613523 -14115,17416,31780,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.1874785444319,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,32.73,33.95,-9,-9,0,3,4,0,0,0,8,1,0,671,201440.9940926086,0,0,0,1383.58597251538 -14116,17417,31781,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.669467667115221,8.978073539386237,0,0,0,-913.7468958606383,0,2,2,2019,6,0,35,35,1,0,0,26.83501084115385,26.83501084115385,0,0,0,0,0,0,0,0,4.264412953695643,0,60.02,56.42,-9,-9,10,1,1,0,0,7,8,5,1,872,528494.3722927457,42886.78061493548,156736.2824455728,75183.73412921716,3024.914338976585 -14116,17418,31782,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.176814575500437,8.15938797397369,0,0,0,-1017.783935759018,0,2,2,2019,11,0,30,35,1,0,0,13.77086068024418,13.77086068024418,0,0,0,0,0,0,0,0,.8064634800679853,0,39.47,49.63,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,700,-34773.20831565566,-30919.16930965337,116835.1639018946,34548.77387213241,1624.058668396374 -14117,17419,31783,-9,31785,31784,1,0,16,0,1,1,2,0,-9,0,2,0,0,0,0,0,-966.9143858268973,-9,3,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,71.5,1,1,0,3.505706016686024,0,31.14,49.89,-9,-9,6.666666666666667,2,3,0,0,0,1,1,1,663.3333333333334,149074.8415402188,24825.39485633066,119292.3912794816,19260.57982671756,1816.13636351912 -14117,17419,31784,31785,-9,-9,1,1,53,0,1,0,2,2,-9,1,4,0,0,0,31,2,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.4,46.79,45.72,37.22,5,2,3,1,0,0,1,1,1,663.3333333333334,149074.8415402188,24825.39485633066,119292.3912794816,19260.57982671756,1816.13636351912 -14117,17419,31785,31784,-9,-9,1,0,51,0,1,0,3,3,-9,1,1,0,0,0,31,-2,0,0,3,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,45.72,37.22,44.4,46.79,3.333333333333333,2,3,1,1,0,1,1,1,663.3333333333334,149074.8415402188,24825.39485633066,119292.3912794816,19260.57982671756,1816.13636351912 -14117,17420,31786,-9,31785,31784,1,0,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-900.0569691573753,-9,3,2,2019,17,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,55.27,34.6,-9,-9,3.333333333333333,2,3,0,1,0,1,1,1,1557,213800.3808172211,0,0,0,0 -14118,17421,31787,-9,31788,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.751908749887,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,314.5,27391.27248544287,3670.117025613479,0,0,2069.75786109466 -14118,17421,31788,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.807350296488213,8.118219304407917,0,0,0,-1122.056049293323,0,-9,-9,2019,5,0,20,18,1,0,0,11.77885873140737,11.77885873140737,0,0,0,0,2,1,1,0,0,0,54.8,50.32,-9,-9,10,1,1,0,0,2,5,3,0,314.5,27391.27248544287,3670.117025613479,0,0,2069.75786109466 -14119,17422,31789,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1070.337010193374,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.01,36.82,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,420,21605.43162756885,0,0,0,850.5840747446132 -14120,17423,31790,31791,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.236304891202952,6.825415515821036,0,6,-8,-2.788677020593541,0,2,2,2019,16,4,21,25,1,4,0,6.934897409358999,6.934897409358999,0,0,0,0,2,1,1,0,.0968063488455983,0,37.28,55.9,52.41,42.18,6.666666666666667,1,1,0,0,11,6,3,1,552,114503.2201238345,89874.05255078615,232642.3894027639,0,1261.596925305189 -14120,17423,31791,31790,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.665070841974988,7.000322406830151,6,8,-4.132668996046811,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.917938219141624,52.41,42.18,37.28,55.9,6.666666666666667,2,3,0,0,11,6,3,1,552,114503.2201238345,89874.05255078615,232642.3894027639,0,1261.596925305189 -14121,17424,31792,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,7.202636966842977,6.987600837700114,0,0,-969.0221781568383,0,2,3,2019,6,1,0,0,4,1,0,0,0,1,2.818048857435645,0,21.14717824343327,0,1,1,0,5.325573411572385,7.374640768205606,51.79,43.42,-9,-9,10,1,1,0,0,0,9,2,1,388,171502.8076669169,107431.3011156898,253211.0598654174,0,952.0675551662555 -14122,17425,31793,-9,31795,31794,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.1919332982524,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,835,406781.2603275118,99775.08559126954,316660.7000057067,0,4246.315079484422 -14122,17425,31794,31795,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.791290661715104,9.067491158569696,0,7,4,112.9812118440624,0,2,2,2019,8,0,40,40,1,0,0,23.48756649355557,23.48756649355557,0,0,0,0,0,1,1,0,0,0,55.19,54.26,62.39,56.71,8.333333333333334,1,1,0,0,8,9,5,1,835,406781.2603275118,99775.08559126954,316660.7000057067,0,4246.315079484422 -14122,17425,31795,31794,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.653403811315794,8.463337755973688,0,7,-4,-90.75973485642209,0,2,1,2019,7,0,32,32,1,0,0,17.2322464148512,17.2322464148512,0,0,0,0,0,1,1,0,0,0,62.39,56.71,55.19,54.26,10,1,1,0,0,8,9,5,1,835,406781.2603275118,99775.08559126954,316660.7000057067,0,4246.315079484422 -14122,17425,31796,-9,31795,31794,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.8125821251361,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,835,406781.2603275118,99775.08559126954,316660.7000057067,0,4246.315079484422 -14123,17426,31797,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.762449797816192,8.732649304219001,0,0,0,-1034.86226055464,0,2,3,2019,14,2,41,38,1,2,0,22.55115155070375,22.55115155070375,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,3.333333333333333,1,1,0,0,11,9,5,0,391,735322.516831332,597395.812455804,313631.0088622761,193966.032905606,2871.452382586965 -14124,17427,31798,-9,31799,31801,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-947.1038172525539,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,9,5,1,1126.75,444971.011887024,267979.9278961578,0,0,3604.268542546122 -14124,17427,31799,31801,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,17,-2,-97.61039166887451,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,1,1126.75,444971.011887024,267979.9278961578,0,0,3604.268542546122 -14124,17427,31800,-9,31799,31801,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.1872152521071,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,1126.75,444971.011887024,267979.9278961578,0,0,3604.268542546122 -14124,17427,31801,31799,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.108198430325587,9.381236187107428,0,17,2,18.29846301956559,0,2,2,2019,6,0,72,36,1,0,0,19.21948655019881,19.21948655019881,0,0,0,0,0,0,0,0,4.741752675162162,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,1126.75,444971.011887024,267979.9278961578,0,0,3604.268542546122 -14125,17428,31802,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1052.814912291812,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,32.91,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,3159,55440.67665778611,0,0,0,1548.861195499085 -14126,17429,31803,31804,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.665353008367612,8.678629778222199,0,8,1,-65.44866044561994,0,-9,-9,2019,12,1,53,60,1,1,0,13.44393075385879,13.44393075385879,0,0,0,0,0,0,0,0,1.845028345834032,0,43.43,54.3,57.16,56.15,8.333333333333334,1,1,0,0,6,5,5,1,1049,271668.4988724291,147661.0162621532,259015.8681767331,142233.4347106184,4591.084709215827 -14126,17429,31804,31803,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.836246490561278,8.772632158037709,0,29,-1,-1.053076309759852,0,2,2,2019,7,0,49,49,1,0,0,14.10959030316691,14.10959030316691,0,0,0,0,0,0,0,0,2.257287323206199,0,57.16,56.15,43.43,54.3,8.333333333333334,1,1,0,0,9,5,5,1,1049,271668.4988724291,147661.0162621532,259015.8681767331,142233.4347106184,4591.084709215827 -14126,17430,31805,-9,31803,31804,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1033.27657567422,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.1006272266698,0,46.4,59.87,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,253,-130399.6881422598,0,0,0,-725.5126391790345 -14126,17431,31806,-9,31803,31804,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-931.902341225818,-9,1,1,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1.34556505659373,0,41.84,60.5,-9,-9,8.333333333333334,1,1,1,0,1,5,1,1,562,12453.12357277972,0,0,0,-172.4000496979896 -14127,17432,31807,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.474608383727738,8.290181216389577,0,0,0,-1070.472216437844,0,2,2,2019,15,3,40,45,1,3,0,15.18999740184712,15.18999740184712,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,943,569407.8212027159,0,375686.2000489258,-14407.41770872038,2255.178026351462 -14127,17433,31808,-9,31807,-9,1,1,24,0,0,0,1,1,-9,0,4,8.209796109522935,8.218713538176926,0,0,0,-1068.740420829941,0,2,2,2019,10,0,44,50,1,1,0,11.13562794973823,11.13562794973823,0,0,0,0,0,0,0,0,.7247868806435962,0,49,58,-9,-9,7,1,1,0,0,1,8,4,1,749,232575.4808473669,98319.36451687367,0,0,850.9116999176421 -14128,17434,31809,31810,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,40,0,89.12883581356719,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,52,48,7,1,1,0,0,0,8,2,0,1117,771271.1979349891,317717.8806248392,399563.807622684,0,2449.57162155227 -14128,17434,31810,31809,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.334465937185786,7.811968802160312,40,0,-95.49009800286586,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,1.191738896737742,0,0,1,1,0,0,7.24129288187311,52,48,50,47,7,1,1,0,0,0,8,2,0,1117,771271.1979349891,317717.8806248392,399563.807622684,0,2449.57162155227 -14129,17435,31811,31812,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.068946955274843,7.919826531338519,0,6,3,121.7359481585777,-9,-9,-9,2019,7,0,36,0,1,0,0,12.78823153774028,12.78823153774028,0,0,0,0,0,1,1,0,0,0,48.45,57.49,39.2,61.5,8.333333333333334,1,1,0,0,10,12,4,1,808,21420.51561547127,24097.87558455181,0,0,2415.366399872531 -14129,17435,31812,31811,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.836598959034046,8.030236301527971,0,22,-3,-41.9004322432879,0,3,2,2019,12,0,38,38,1,0,0,9.546644042156506,9.546644042156506,0,0,0,0,0,1,1,0,0,0,39.2,61.5,48.45,57.49,6.666666666666667,1,1,0,0,9,12,4,1,808,21420.51561547127,24097.87558455181,0,0,2415.366399872531 -14129,17436,31813,-9,31812,31811,1,1,20,0,1,0,2,2,-9,0,5,8.058257244445889,8.290406878031297,0,0,0,-981.4353125466038,0,2,2,2019,6,0,38,38,1,0,1,8.275651246125408,8.275651246125408,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1496,210497.8184751419,-167860.137167909,0,0,502.360895314504 -14130,17437,31814,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,8.638527333260772,8.730317892786394,0,0,-851.3309761532536,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.886591869256928,8.502829072379093,57.16,56.15,-9,-9,10,1,1,0,0,0,4,5,1,879,1130408.798257256,179907.6115658199,513862.1743086394,0,3388.07860106875 -14131,17438,31815,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.983522505740388,5.45973591810001,0,0,-1106.130530608351,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.658244838844515,64.01000000000001,32.53,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,92,589030.132638757,118117.9081729974,342106.1751068413,0,554.4255745775661 -14132,17439,31816,31817,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.356124722499914,7.147570894433917,7,10,-53.86810983939286,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.349129781065806,0,20.09678156231756,14.5,1,1,0,0,7.510767839442868,55,45,52.14,38.32,8,1,1,0,0,3,13,3,1,2185.5,727728.6239447771,462558.9997907065,148579.8925968873,0,2512.807910730826 -14132,17439,31817,31816,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.998847025140338,6.996096747308128,7,-10,15.05071904879753,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.647909701046843,0,19.67837134502869,0,1,1,0,0,7.055516205407937,52.14,38.32,55,45,6.666666666666667,1,1,0,0,0,13,3,1,2185.5,727728.6239447771,462558.9997907065,148579.8925968873,0,2512.807910730826 -14133,17440,31818,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-944.5593856124373,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.992431037533695,0,50.65,15.15,-9,-9,6.666666666666667,2,3,0,0,0,6,1,0,258,-122129.8990051856,0,0,0,-229.2706795636333 -14134,17441,31819,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.561267041909282,7.297083524811299,0,0,-831.2534189015967,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.319113771385322,7.409453725900469,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1982,1364535.365833221,284814.5794373393,722823.9124802356,0,1272.558881849181 -14135,17442,31820,-9,31822,31823,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.982585887273,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,4.267653337751808,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,392.2,346066.1100640847,138604.4993744993,207426.3718794164,0,1145.856766088941 -14135,17442,31821,-9,31822,31823,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.451154854255,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,392.2,346066.1100640847,138604.4993744993,207426.3718794164,0,1145.856766088941 -14135,17442,31822,31823,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,24,-25,0,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.95,52.41,57.33,53.46,10,2,3,0,0,0,7,1,0,392.2,346066.1100640847,138604.4993744993,207426.3718794164,0,1145.856766088941 -14135,17442,31823,31822,-9,-9,1,1,67,0,3,0,2,2,-9,0,3,0,0,0,24,25,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.95,52.41,6.666666666666667,2,3,0,0,4,7,1,0,392.2,346066.1100640847,138604.4993744993,207426.3718794164,0,1145.856766088941 -14135,17442,31824,-9,31822,31823,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.4459362768396,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,392.2,346066.1100640847,138604.4993744993,207426.3718794164,0,1145.856766088941 -14135,17443,31825,-9,31822,31823,1,1,20,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1030.785450227038,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,10,2,3,1,0,0,7,1,0,426,56476.28388308235,0,0,0,0 -14135,17444,31826,-9,31822,31823,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-971.8929090460091,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,39.64,57.52,-9,-9,6.666666666666667,2,3,0,0,0,7,1,0,106,-144597.8704256017,0,0,0,0 -14136,17445,31827,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,2,8.024821954687472,8.127699606330808,0,0,0,-898.1655551678926,-9,1,1,2019,9,0,42,0,1,0,0,8.946571174730588,8.946571174730588,0,0,0,0,0,0,0,0,.2033480940338572,0,49.85,50.47,-9,-9,6.666666666666667,1,1,0,0,3,8,4,1,633,35654.19453540606,-6473.30899834029,0,0,1425.007304072915 -14136,17446,31828,31829,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.691061586374365,8.734703606589212,0,1,3,58.63445312675508,-9,-9,-9,2019,12,0,42,0,1,0,0,16.5944138150204,16.5944138150204,0,0,0,0,0,0,0,0,0,0,47.21,52.57,54.2,57.49,8.333333333333334,1,1,0,0,0,8,5,1,181,408628.3477081843,61193.17320656239,478974.4007364525,303342.2003388565,4282.956588101111 -14136,17446,31829,31828,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.618741861324576,8.844475596600848,0,1,-3,-5.028711333376455,-9,-9,-9,2019,6,0,39,0,1,0,0,20.24633898533306,20.24633898533306,0,0,0,0,0,0,0,0,.0712442732574391,0,54.2,57.49,47.21,52.57,10,1,1,0,0,4,8,5,1,181,408628.3477081843,61193.17320656239,478974.4007364525,303342.2003388565,4282.956588101111 -14137,17447,31830,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,7.773515308251421,7.917446736055281,0,0,0,-950.5753359634878,0,2,3,2019,19,7,47,37,1,7,0,6.39111773361461,6.39111773361461,0,0,0,0,0,0,0,0,0,0,42.63,36.19,-9,-9,3.333333333333333,3,4,0,0,9,8,3,0,1825,871845.2476964456,311633.7384563143,160265.7216484328,0,1205.810551728587 -14138,17448,31831,31833,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,0,0,0,10,2,-39.13432330109682,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.437249151418399,0,46.08,57.2,48.87,58.55,5,1,1,1,0,9,2,3,1,467.25,391752.3132285643,19017.19332538301,240526.7707507408,0,2373.883288654137 -14138,17448,31832,-9,31833,31831,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-978.8234028764509,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,3,1,467.25,391752.3132285643,19017.19332538301,240526.7707507408,0,2373.883288654137 -14138,17448,31833,31831,-9,-9,1,0,53,0,2,0,1,1,-9,0,4,8.681123662896939,8.655078922921939,0,10,-2,-40.80282827870963,0,2,2,2019,14,1,32,40,1,1,0,26.7538559753138,26.7538559753138,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.08,57.2,3.333333333333333,3,4,0,0,9,2,3,1,467.25,391752.3132285643,19017.19332538301,240526.7707507408,0,2373.883288654137 -14138,17448,31834,-9,31833,31831,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.6389978745997,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,467.25,391752.3132285643,19017.19332538301,240526.7707507408,0,2373.883288654137 -14139,17449,31835,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,9.041145724408079,9.110909526776439,0,0,0,-1075.203958965631,-9,1,1,2019,24,10,35,0,1,10,0,24.87032774900525,24.87032774900525,0,0,0,0,0,0,0,0,0,0,35.71,47.21,-9,-9,6.666666666666667,1,1,0,0,5,7,5,1,255,-115634.2373361246,0,0,0,3642.075874625241 -14140,17450,31836,-9,31838,31837,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.367678901278,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1731.666666666667,578587.1258244977,79835.87762547265,655119.2232655348,266463.931561565,7097.307801510905 -14140,17450,31837,31838,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.479475672222691,9.700438633937466,0,4,1,-105.7461236430387,0,-9,-9,2019,12,2,60,50,1,2,0,24.33459392396605,24.33459392396605,0,0,0,0,0,1,1,0,8.527856567493094,0,54.37,54.8,48,56,8.333333333333334,1,1,0,0,8,10,5,1,1731.666666666667,578587.1258244977,79835.87762547265,655119.2232655348,266463.931561565,7097.307801510905 -14140,17450,31838,31837,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.271902200519337,7.571015723798514,0,4,-1,70.45020747634352,0,-9,-9,2019,11,0,32,32,1,2,0,7.388499667575929,7.388499667575929,0,0,0,0,0,1,1,0,0,0,48,56,54.37,54.8,7,4,1,0,0,1,10,5,1,1731.666666666667,578587.1258244977,79835.87762547265,655119.2232655348,266463.931561565,7097.307801510905 -14141,17451,31839,31840,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.867532534894233,7.154524014964704,9,1,29.15068528990634,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.83761431791646,57.16,56.15,58.31,42.52,10,1,1,0,0,8,11,2,0,696.5,437892.306955883,297272.4630416983,134434.8598169082,0,1233.022472753961 -14141,17451,31840,31839,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-63.1321585006981,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,0,696.5,437892.306955883,297272.4630416983,134434.8598169082,0,1233.022472753961 -14142,17452,31841,31842,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.643594874695767,7.860596610055309,7.435309281837016,6,-8,90.13331414043209,-9,-9,-9,2019,11,0,24,0,1,2,0,7.842878722237734,7.842878722237734,0,0,0,0,0,1,1,0,4.33423811318537,7.364469685214728,50,47,57.16,56.15,7,1,1,0,0,1,1,5,1,844,1314143.149055645,760153.6717986258,446120.9699056495,0,4460.283647656714 -14142,17452,31842,31841,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.416526517936896,8.607797814760227,30,8,17.95545720600851,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.980974384363632,57.16,56.15,50,47,10,1,1,0,0,0,1,5,1,844,1314143.149055645,760153.6717986258,446120.9699056495,0,4460.283647656714 -14143,17453,31843,31844,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.421457778217976,5.367082893186198,50,-1,-145.3405041431496,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.820936567682116,5.176854229668026,59.14,52.5,60.29,52.11,8.333333333333334,1,1,0,0,0,9,2,1,565,676908.8815159979,301486.8352763889,322636.413632458,0,2424.22579813429 -14143,17453,31844,31843,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.87656951970554,6.925641029454478,50,1,56.35070192849157,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.380759078505724,7.027313415932518,60.29,52.11,59.14,52.5,8.333333333333334,1,1,0,0,0,9,2,1,565,676908.8815159979,301486.8352763889,322636.413632458,0,2424.22579813429 -14144,17454,31845,31846,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,6.394212592894023,6.716954403069572,0,9,1,-133.5560520379177,0,-9,-9,2019,8,0,8,8,1,0,0,9.864745218511807,9.864745218511807,0,0,0,0,0,1,1,0,0,0,52.99,51.28,57.16,56.15,5,1,1,0,0,8,11,4,0,616.5,485007.058616919,315454.1633509983,96222.17479410548,46765.76749190591,2617.386807342009 -14144,17454,31846,31845,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.841720468374236,8.889356739872037,0,9,-1,153.0696457752954,0,-9,-9,2019,7,0,50,50,1,0,0,13.46762776571635,13.46762776571635,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.99,51.28,6.666666666666667,1,1,0,0,12,11,4,0,616.5,485007.058616919,315454.1633509983,96222.17479410548,46765.76749190591,2617.386807342009 -14144,17455,31847,-9,31845,31846,1,0,19,0,0,0,2,2,1,0,4,6.88584781794988,6.349159903108155,0,0,0,-1027.599884521173,-9,3,3,2019,10,0,16,0,1,0,1,6.000504176059794,6.000504176059794,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,11,2,0,949,15982.36209568876,-5078.131237259446,0,0,516.9733585863493 -14145,17456,31848,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.519390695475233,7.627574277248717,0,0,-948.2282408727796,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.553185630834553,7.855859470307712,48.66,46.48,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,196,703770.9525616601,417411.8514323446,0,0,2161.955944375354 -14146,17457,31849,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,2.802457185166973,2.969746098464723,0,0,-878.8846762983482,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.973715496298992,2.883089635928043,66.76000000000001,29.06,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,558,255197.9580599972,23981.962354043,209223.3786008049,0,881.4145807966377 -14147,17458,31850,-9,-9,31851,1,0,35,0,0,0,2,2,-9,0,4,7.778065798343014,8.077886334032764,0,0,0,-1114.21378909845,0,1,1,2019,14,2,25,25,1,2,1,13.6552269177825,13.6552269177825,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1324,-130186.5491833178,-9614.545101606245,0,0,1437.657151992346 -14147,17459,31851,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.356529968462139,8.448388485826783,3.955391322468981,0,0,-919.3013771033688,0,2,2,2019,7,0,25,15,1,0,0,24.81066016152888,24.81066016152888,0,0,0,0,0,0,0,0,3.332988032188859,4.431816484049834,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,1275,730790.2290546778,561878.136718972,221676.0691546831,33281.88209101884,2412.614973827809 -14148,17460,31852,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.689732711228421,7.498857430696808,0,0,-941.4862722164497,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.745866919508904,7.120709833999728,58.33,39.49,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,406,563806.6939252772,164244.1719062813,332188.1041963295,0,1520.642446397759 -14149,17461,31853,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.542319235070991,6.364876189386263,0,0,-1084.091092322904,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.281083884724119,56.6,23.1,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,281,5069.918487545161,-17605.74790215639,73487.26897284656,0,2031.155148183441 -14150,17462,31854,31855,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,0,0,25,-2,-14.59329248429992,1,2,2,2019,6,0,0,14,2,0,0,0,0,0,0,0,0,0,0,0,0,8.390937622405062,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,913,645084.8154483375,465456.6983247863,390233.0041012183,97373.29001710974,4667.441873836907 -14150,17462,31855,31854,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.034634674926203,9.170954919541403,0,25,2,-76.62610727364125,0,2,3,2019,6,0,30,30,1,0,0,29.24725446289663,29.24725446289663,0,0,0,0,2,0,0,0,3.786744393676745,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,13,9,5,1,913,645084.8154483375,465456.6983247863,390233.0041012183,97373.29001710974,4667.441873836907 -14151,17463,31856,31857,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.065600492134916,7.103769482458451,57,-1,15.11529783311284,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.095859737621849,7.395674362043261,60.12,54.8,63.25,34.36,10,1,1,0,0,0,2,3,1,1564,860453.9604998884,657753.5175413662,187670.740570578,0,3100.166192023996 -14151,17463,31857,31856,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.93601383666627,7.167969475708153,57,1,42.80372432736151,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.257680544516472,63.25,34.36,60.12,54.8,8.333333333333334,1,1,0,0,2,2,3,1,1564,860453.9604998884,657753.5175413662,187670.740570578,0,3100.166192023996 -14152,17464,31858,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.617695044837224,5.467315843747777,0,0,-1050.840537278588,0,2,2,2019,23,10,0,0,4,10,0,0,0,1,5.973429683482903,17.65328741384217,60.22331342372387,27,1,1,0,2.501255500937928,5.803282709398664,40.36,20.9,-9,-9,3.333333333333333,1,1,0,0,8,10,2,0,690,204882.0255797469,0,184905.9709944995,37918.03190811216,1217.271773402426 -14153,17465,31859,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.227045088729851,6.902492239174568,0,0,-1016.61212363336,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.308508416354283,58.5,12.36,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,458,204541.0069314726,116017.5265082886,0,0,1129.060074270874 -14154,17466,31860,31861,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.707141062497239,5.213617621000171,6,2,-201.2071589420019,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.686425666778091,5.629665346080603,59.84,49.54,53,45,8.333333333333334,1,1,0,0,0,12,2,1,2015.5,294636.8154722115,-31835.95143241192,239344.7429670571,0,1539.560869706639 -14154,17466,31861,31860,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-7.042076879397857,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.810515247554698,0,53,45,59.84,49.54,8,1,1,0,0,2,12,2,1,2015.5,294636.8154722115,-31835.95143241192,239344.7429670571,0,1539.560869706639 -14155,17467,31862,31863,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,6.375766403764965,6.501252432065223,0,4,-8,-108.0075816532845,0,-9,-9,2019,17,5,8,0,1,5,0,8.127089713397167,8.127089713397167,0,0,0,0,0,1,1,0,0,0,33.58,43.15,51.26,45.62,3.333333333333333,1,1,0,0,1,12,3,0,1357.5,413666.3183614229,89819.41398011052,311721.1897585739,7021.091829735042,2274.189955496513 -14155,17467,31863,31862,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,7.94961835188013,8.076046140249222,0,4,8,104.126233173571,0,-9,-9,2019,11,1,39,40,1,1,0,7.380321691732243,7.380321691732243,0,0,0,0,0,1,1,0,0,0,51.26,45.62,33.58,43.15,3.333333333333333,1,1,0,0,13,12,3,0,1357.5,413666.3183614229,89819.41398011052,311721.1897585739,7021.091829735042,2274.189955496513 -14155,17467,31864,-9,31862,31863,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.527552910121,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1357.5,413666.3183614229,89819.41398011052,311721.1897585739,7021.091829735042,2274.189955496513 -14155,17467,31865,-9,31862,31863,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.793368322014,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,0,1357.5,413666.3183614229,89819.41398011052,311721.1897585739,7021.091829735042,2274.189955496513 -14156,17468,31866,31867,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,6.662976310506217,6.352498928605095,0,9,9,25.30652839294523,-9,-9,-9,2019,10,0,40,0,1,1,0,1.904750439577138,1.904750439577138,0,0,0,0,0,1,1,0,0,0,50,49,52.09,39.82,7,4,1,0,0,1,7,3,0,112.5,899794.7304176079,0,682436.9109565784,0,1456.239817810025 -14156,17468,31867,31866,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.836531482030926,7.709210260729289,0,9,0,104.0449264399257,0,2,2,2019,11,0,25,35,1,0,0,11.70441492028006,11.70441492028006,0,0,0,0,0,1,1,0,0,0,52.09,39.82,50,49,1.666666666666667,1,1,0,0,9,7,3,0,112.5,899794.7304176079,0,682436.9109565784,0,1456.239817810025 -14157,17469,31868,-9,31869,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1047.967660827446,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1652,105164.9869641356,-20139.63363616081,0,0,1395.103365294753 -14157,17469,31869,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-892.2360164729834,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.07,39.47,-9,-9,5,1,1,0,0,0,13,1,0,1652,105164.9869641356,-20139.63363616081,0,0,1395.103365294753 -14158,17470,31870,31871,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.800168828843457,7.87984848808669,52,-5,-20.23084986861955,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.874926851111692,7.86856404642893,51.83,57.2,54.43,43.95,8.333333333333334,1,1,0,0,0,2,5,1,1922,3213914.440849649,867432.3702967983,792361.5703681337,0,5853.735013815448 -14158,17470,31871,31870,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.083260459189178,8.186135790292855,52,5,-37.69212601200982,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.983920733721486,8.414890345337627,54.43,43.95,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1922,3213914.440849649,867432.3702967983,792361.5703681337,0,5853.735013815448 -14159,17471,31872,31875,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,9.205683096814042,8.877088752208472,0,19,-2,-8.216331067686045,0,3,3,2019,10,0,5,5,1,0,0,177.6708704588843,177.6708704588843,0,0,0,0,2,1,1,0,4.505915373013479,0,40.31,50.81,53,55,5,1,1,0,1,9,12,5,1,749,863047.5006461174,515274.6196595915,343150.3835669131,114490.7252897014,18324.73159899144 -14159,17471,31873,-9,31872,31875,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.9323737912455,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,749,863047.5006461174,515274.6196595915,343150.3835669131,114490.7252897014,18324.73159899144 -14159,17471,31874,-9,31872,31875,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.4929653824437,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,749,863047.5006461174,515274.6196595915,343150.3835669131,114490.7252897014,18324.73159899144 -14159,17471,31875,31872,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.849438579763055,9.765929249430343,0,2,2,43.22480649404582,0,-9,-9,2019,9,0,37,-9,1,1,0,44.10359447388226,44.10359447388226,0,0,0,0,0,1,1,0,5.602152291225335,0,53,55,40.31,50.81,8,1,1,0,0,1,12,5,1,749,863047.5006461174,515274.6196595915,343150.3835669131,114490.7252897014,18324.73159899144 -14160,17472,31876,31877,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.117532712900595,7.355871817916321,48,-3,-4.524068237686138,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.636628157935873,7.087682727487441,55.19,54.26,55.51,46.03,10,1,1,0,0,0,2,3,1,443,2325921.298527608,281714.8486203908,736304.2012552361,0,2533.876331913374 -14160,17472,31877,31876,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.762389898158943,7.4882695599857,6,3,-5.075699942894849,-9,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,.7958057543836423,0,7,1,1,0,4.361840263046978,7.425215050941005,55.51,46.03,55.19,54.26,8.333333333333334,1,1,0,0,5,2,3,1,443,2325921.298527608,281714.8486203908,736304.2012552361,0,2533.876331913374 -14161,17473,31878,31880,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,8.000813883938994,8.130164150599263,0,6,2,-222.2921602678629,-9,3,3,2019,11,0,37,0,1,2,0,11.42494204969393,11.42494204969393,0,0,0,0,0,1,1,0,0,0,49,48,58.05,54.52,7,1,1,0,0,1,2,3,1,566,277147.9868810555,153570.1413957817,72034.51554974627,28928.39964089185,2663.141124044794 -14161,17473,31879,-9,31878,31880,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-935.5768642835652,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,2,3,1,566,277147.9868810555,153570.1413957817,72034.51554974627,28928.39964089185,2663.141124044794 -14161,17473,31880,31878,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,6.714852009520439,6.750629004658188,0,6,-2,82.5063593287512,0,2,1,2019,9,0,40,50,1,0,0,2.722605171666644,2.722605171666644,0,0,0,0,14.5,1,1,0,5.871105767921388,0,58.05,54.52,49,48,10,1,1,0,0,9,2,3,1,566,277147.9868810555,153570.1413957817,72034.51554974627,28928.39964089185,2663.141124044794 -14162,17474,31881,31882,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,5.828128619710948,5.865879086333979,9,3,116.6193052019868,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.127030319881696,5.518241596349513,62.39,56.71,46.8,36.36,10,1,1,0,0,0,11,2,0,246.5,343756.3863456475,19566.71592813617,117947.257897303,0,1042.376167251624 -14162,17474,31882,31881,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-87.99880446714852,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,102.3003281961004,0,0,1,1,0,0,0,46.8,36.36,62.39,56.71,6.666666666666667,1,1,0,0,0,11,2,0,246.5,343756.3863456475,19566.71592813617,117947.257897303,0,1042.376167251624 -14163,17475,31883,31884,-9,-9,1,1,43,0,2,0,3,3,-9,0,3,8.347781007670719,8.508886377412798,0,24,1,83.30659541843892,0,2,2,2019,24,12,40,36,1,12,0,13.72772516432495,13.72772516432495,0,0,0,0,2,1,1,0,.3993283498471055,0,34.73,61.03,49,56,8.333333333333334,2,3,0,0,8,8,4,1,380,1169280.5862999,712566.7998410994,528310.1316750183,0,3871.545399238488 -14163,17475,31884,31883,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.633785712504341,8.749493000466936,0,9,-1,-100.7567388294792,0,3,3,2019,11,0,27,27,1,1,0,21.05040900445836,21.05040900445836,0,0,0,0,7,1,1,0,0,0,49,56,34.73,61.03,7,1,1,0,0,12,8,4,1,380,1169280.5862999,712566.7998410994,528310.1316750183,0,3871.545399238488 -14164,17476,31885,31886,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.203160928576124,7.12068698616722,0,7,7,119.7234424110399,0,3,3,2019,8,0,24,30,1,0,0,6.074104762438884,6.074104762438884,0,0,0,0,14.5,0,0,0,7.194133971018469,0,58.15,52.91,59.53,56.44,8.333333333333334,1,1,0,0,9,10,3,1,412.5,282861.4494942789,122154.0909854923,211100.6129488287,0,1678.063826235909 -14164,17476,31886,31885,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.094231690940747,6.779086732100668,0,7,-7,-130.8910698462324,-9,-9,-9,2019,7,0,30,0,1,0,0,4.350199542199001,4.350199542199001,0,0,0,0,0,0,0,0,0,0,59.53,56.44,58.15,52.91,8.333333333333334,1,1,0,0,9,10,3,1,412.5,282861.4494942789,122154.0909854923,211100.6129488287,0,1678.063826235909 -14165,17477,31887,31888,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,52,-4,-50.49789502058748,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.756759090159812,0,52.73,53.06,60.87,44.96,10,1,1,0,0,0,2,4,1,1130.5,875212.3191666808,579642.8519127073,163143.025410572,48754.95411780156,2997.998480354635 -14165,17477,31888,31887,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.535669734401308,8.485911597866439,52,4,-70.08011401440135,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.020460872441753,8.371741040426546,60.87,44.96,52.73,53.06,8.333333333333334,1,1,0,0,0,2,4,1,1130.5,875212.3191666808,579642.8519127073,163143.025410572,48754.95411780156,2997.998480354635 -14166,17478,31889,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,7.169512454499168,7.44705153578418,0,0,-1166.156643404628,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.371228835275665,7.512338299333178,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,240,569385.2417429837,230298.3733315395,199431.5933545654,0,1749.887519491149 -14167,17479,31890,31891,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.412055581918298,6.376318422312724,49,1,-27.19187236591248,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.601781263679087,6.197250511982818,62.39,56.71,57.18,48.06,8.333333333333334,1,1,0,0,6,9,2,1,1180.5,586252.7730410197,175631.2656790721,299973.6470637181,0,1616.577923229812 -14167,17479,31891,31890,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.560491062008599,6.697547750180957,0,49,-1,-32.89518402868242,0,-9,-9,2019,9,0,13,18,1,0,0,5.679028542502676,5.679028542502676,0,0,8.699066821764241,0,0,1,1,0,0,0,57.18,48.06,62.39,56.71,8.333333333333334,1,1,0,0,8,9,2,1,1180.5,586252.7730410197,175631.2656790721,299973.6470637181,0,1616.577923229812 -14168,17480,31892,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.574202810343753,8.673199155979669,0,0,0,-1057.528381307242,0,3,3,2019,5,0,36,36,1,0,0,16.35581580449642,16.35581580449642,0,0,0,2.286484844128328,0,0,0,0,4.012572387605366,0,62.57,40.11,-9,-9,5,1,1,0,0,7,13,5,1,164,-33354.22455778891,54483.37778709659,88007.43802009281,87426.26759861645,1931.855670278977 -14169,17481,31893,31896,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,8.27807037973569,8.324537498316655,0,1,3,49.26417304735445,-9,3,1,2019,10,0,56,0,1,1,0,7.796650140562758,7.796650140562758,0,0,0,0,0,1,1,0,0,0,50,57,33.18,60.48,7,2,3,0,0,1,9,3,1,621,-3484.882940900521,-25326.83209620148,0,0,2011.628877779449 -14169,17481,31894,-9,31896,31893,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.923890016621,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,621,-3484.882940900521,-25326.83209620148,0,0,2011.628877779449 -14169,17481,31895,-9,31896,31893,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.01546169047,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,621,-3484.882940900521,-25326.83209620148,0,0,2011.628877779449 -14169,17481,31896,31893,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,1,-3,-164.2786495175194,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,33.18,60.48,50,57,6.666666666666667,2,3,0,0,2,9,3,1,621,-3484.882940900521,-25326.83209620148,0,0,2011.628877779449 -14169,17481,31897,-9,31896,31893,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.3684912631569,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,621,-3484.882940900521,-25326.83209620148,0,0,2011.628877779449 -14170,17482,31898,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,7.977045750980909,8.470769998294465,0,0,0,-1145.022971319766,0,2,3,2019,12,0,33,30,1,0,0,12.79198838356302,12.79198838356302,0,0,0,0,0,0,0,0,5.768010890087456,0,50.48,38.44,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,1370,432810.4843764347,345279.1916488415,151963.8920862847,15473.19425559087,1656.549024606327 -14171,17483,31899,31900,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.105021840240171,8.838785952824836,8.487217226597568,42,-7,.7557994985213485,0,2,2,2019,6,1,35,50,1,1,0,4.283034283259589,4.283034283259589,0,0,0,0,2,0,0,0,9.175646541073784,8.492950750319361,54.69,57.47,61.16,47.65,8.333333333333334,1,1,0,0,9,9,5,1,537,3392177.337485488,2654581.711853372,630806.3719505565,0,9086.084170420108 -14171,17483,31900,31899,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,7.159331523827166,6.959382882362821,0,42,7,-2.340119058846067,0,1,1,2019,2,0,1,1,1,0,0,162.1774009296077,162.1774009296077,0,0,0,0,2,0,0,0,8.60343656788006,0,61.16,47.65,54.69,57.47,10,1,1,0,0,6,9,5,1,537,3392177.337485488,2654581.711853372,630806.3719505565,0,9086.084170420108 -14172,17484,31901,31902,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,4.151271519250918,4.200437379553631,46,-4,3.200437648134128,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.309955137192159,4.407275336323504,57.16,56.15,57.16,56.15,10,1,1,0,0,0,9,4,1,267,1665383.388561755,696757.3694849457,648035.9734940275,0,6061.826277205992 -14172,17484,31902,31901,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.744256504589725,8.537233205256397,46,4,5.132845871385731,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.138456447470795,8.357450512905089,57.16,56.15,57.16,56.15,10,1,1,0,0,0,9,4,1,267,1665383.388561755,696757.3694849457,648035.9734940275,0,6061.826277205992 -14173,17485,31903,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.2432547535867,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.6,14.31,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,165,-16241.53852548068,-113019.1416091108,0,0,856.8507607549698 -14173,17486,31904,-9,31903,-9,1,0,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-1129.924473689667,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,497,0,0,0,0,0 -14173,17487,31905,-9,31903,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1050.997488454755,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,0,233,-122782.0424798412,0,0,0,0 -14174,17488,31906,31907,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,43,-14,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.804148163487904,0,51.24,58.84,53.09,40.29,10,1,1,0,0,0,11,1,1,363,91743.70001367848,-900.0431955181848,128922.0837429374,0,1645.905025577151 -14174,17488,31907,31906,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,43,14,0,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.656817183447342,0,0,1,1,0,4.638097543257078,0,53.09,40.29,51.24,58.84,1.666666666666667,1,1,0,0,0,11,1,1,363,91743.70001367848,-900.0431955181848,128922.0837429374,0,1645.905025577151 -14175,17489,31908,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.803805692771724,7.859743534717819,0,0,-979.3868980917837,0,2,-9,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,2.538274437878602,7.640556483843144,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,13,4,3,0,328,941445.7449092928,715305.3551387272,184606.1720339438,0,705.6751187617069 -14176,17490,31909,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.456685924888625,8.977230186860009,0,0,0,-1046.316088351555,-9,1,1,2019,11,0,40,0,1,0,0,25.98960033059053,25.98960033059053,0,0,0,0,0,0,0,0,7.484777077665953,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,353,184212.6924656463,231277.3841459973,87519.94466488826,43280.30333079687,3216.113989871534 -14177,17491,31910,31911,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,5.958278600348539,6.109002346526906,6,-3,-73.10942925094228,0,-9,-9,2019,14,3,0,45,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.07949400061753,52.3,47.48,43.68,56.8,6.666666666666667,1,1,0,0,0,8,4,1,346.5,1059021.572938177,682043.1694266309,420068.0643367278,0,2859.310602280396 -14177,17491,31911,31910,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,8.095937280120777,8.549246143732878,39,3,50.81740973760193,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,8.169413498867588,8.549213897712438,43.68,56.8,52.3,47.48,8.333333333333334,1,1,0,0,0,8,4,1,346.5,1059021.572938177,682043.1694266309,420068.0643367278,0,2859.310602280396 -14178,17492,31912,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.374509185811908,8.27829156036824,0,0,0,-1025.723593915237,0,2,2,2019,13,1,37,37,1,1,0,12.66120158911957,12.66120158911957,0,0,0,0,14.5,0,0,0,0,0,44.03,59.58,-9,-9,3.333333333333333,1,1,0,1,10,12,4,1,508,150780.705344788,110207.8653331545,263821.9735307777,75592.38423197821,1764.906532846312 -14179,17493,31913,-9,31916,31917,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.9342604361483,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,654.6,3412312.4340763,2043048.777864657,1094099.680741165,311122.2034122035,7845.364171703623 -14179,17493,31914,-9,31916,31917,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-809.9059756870902,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,654.6,3412312.4340763,2043048.777864657,1094099.680741165,311122.2034122035,7845.364171703623 -14179,17493,31915,-9,31916,31917,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.9157221481676,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,654.6,3412312.4340763,2043048.777864657,1094099.680741165,311122.2034122035,7845.364171703623 -14179,17493,31916,31917,-9,-9,1,0,39,1,3,0,1,1,-9,0,3,8.824460473114909,8.55807232331917,0,6,-2,-11.75527528020619,0,-9,1,2019,9,0,12,5,1,0,0,73.28718930914685,73.28718930914685,0,0,0,0,2,0,0,0,1.550539613247569,0,50.18,47.09,44.85,48.15,8.333333333333334,1,1,0,0,8,9,5,1,654.6,3412312.4340763,2043048.777864657,1094099.680741165,311122.2034122035,7845.364171703623 -14179,17493,31917,31916,-9,-9,1,1,41,1,3,0,1,1,-9,0,3,9.389387753317893,9.465887117931759,0,6,2,153.6807449842072,0,2,2,2019,11,0,50,45,1,0,0,30.75556943264241,30.75556943264241,0,0,0,0,2,0,0,0,0,0,44.85,48.15,50.18,47.09,6.666666666666667,1,1,0,0,8,9,5,1,654.6,3412312.4340763,2043048.777864657,1094099.680741165,311122.2034122035,7845.364171703623 -14180,17494,31918,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.575406178820254,8.304163161944834,0,0,0,-999.0499809733411,0,-9,-9,2019,12,0,32,40,1,0,0,15.49254444052571,15.49254444052571,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,76,614934.4873159585,397284.2917609768,201408.7747985249,0,1982.664748174688 -14181,17495,31919,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.048545982806315,7.308973542693756,0,0,-999.3432621884996,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.178661891856544,50.52,28.16,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,317,523610.0342316912,154259.37188146,368348.3779214795,0,1750.85245218956 -14182,17496,31920,31921,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.234084300547464,7.314335574905352,0,3,-3,3.462933169665364,0,2,2,2019,12,0,22,20,1,0,0,7.530734864501986,7.530734864501986,0,0,0,0,2,0,0,0,0,0,43.43,54.3,54.1,59.11,1.666666666666667,1,1,0,0,11,13,5,1,166.5,927596.1044264843,578521.2710176916,351895.8139709904,78584.39103191608,3709.074475552686 -14182,17496,31921,31920,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.199448710259489,8.79597129775752,0,3,3,50.52608273301286,0,2,3,2019,8,0,43,42,1,0,0,22.98057966423668,22.98057966423668,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.43,54.3,8.333333333333334,1,1,0,0,11,13,5,1,166.5,927596.1044264843,578521.2710176916,351895.8139709904,78584.39103191608,3709.074475552686 -14182,17497,31922,-9,31920,31921,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1041.54733811403,1,2,1,2019,6,1,0,13,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,218,-110794.0477501179,0,0,0,0 -14183,17498,31923,-9,31924,-9,1,1,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1101.113591250835,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,673,-62748.55865521818,0,0,0,1613.947069114842 -14183,17498,31924,-9,-9,-9,1,0,54,0,3,0,1,1,-9,0,5,0,0,0,0,0,-929.3738800117084,0,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.93000000000001,43.76,-9,-9,6.666666666666667,1,1,1,0,1,12,1,0,673,-62748.55865521818,0,0,0,1613.947069114842 -14183,17498,31925,-9,31924,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-910.8302906594911,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,1,0,673,-62748.55865521818,0,0,0,1613.947069114842 -14183,17498,31926,-9,31924,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-917.3795003629932,-9,1,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,0,12,1,0,673,-62748.55865521818,0,0,0,1613.947069114842 -14183,17499,31927,-9,31924,-9,1,0,20,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1099.414213985307,0,1,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,237,143759.1482047517,0,0,0,0 -14184,17500,31928,-9,31929,31930,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.153523734709,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1473.25,367662.5880154151,282182.1949534295,206581.789104697,128963.0703760432,4651.456534601495 -14184,17500,31929,31930,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.490199937981531,8.365624435518273,0,4,-5,-86.47548537582898,0,1,2,2019,11,0,35,43,1,2,0,17.94704555863355,17.94704555863355,0,0,0,0,0,1,1,0,1.408485087514358,0,49,56,33.41,62.84,7,1,1,0,0,1,4,5,1,1473.25,367662.5880154151,282182.1949534295,206581.789104697,128963.0703760432,4651.456534601495 -14184,17500,31930,31929,-9,-9,1,1,43,1,2,0,1,1,-9,0,3,8.841155462920463,8.826038808020046,0,4,5,54.70494042777518,0,-9,-9,2019,13,1,50,49,1,1,0,14.73905770504155,14.73905770504155,0,0,0,0,0,1,1,0,0,0,33.41,62.84,49,56,3.333333333333333,1,1,0,0,10,4,5,1,1473.25,367662.5880154151,282182.1949534295,206581.789104697,128963.0703760432,4651.456534601495 -14184,17500,31931,-9,31929,31930,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.4594317904101,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,1473.25,367662.5880154151,282182.1949534295,206581.789104697,128963.0703760432,4651.456534601495 -14185,17501,31932,-9,31935,31933,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.169977155211,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,624.25,301320.0295922686,65756.57838711963,186475.340121867,0,2275.132510504734 -14185,17501,31933,31935,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,0,0,0,15,5,-25.5653352916002,0,3,2,2019,6,0,0,25,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,49.81,57.33,53.46,8.333333333333334,2,3,0,0,10,6,2,1,624.25,301320.0295922686,65756.57838711963,186475.340121867,0,2275.132510504734 -14185,17501,31934,-9,31935,31933,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.4926323228793,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,624.25,301320.0295922686,65756.57838711963,186475.340121867,0,2275.132510504734 -14185,17501,31935,31933,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.699281861825794,7.946648428912328,0,15,-5,-3.992817331180222,0,2,2,2019,7,0,32,34,1,0,0,9.32567291846021,9.32567291846021,0,0,0,0,0,1,1,0,0,0,57.33,53.46,59.31,49.81,8.333333333333334,2,3,0,0,11,6,2,1,624.25,301320.0295922686,65756.57838711963,186475.340121867,0,2275.132510504734 -14186,17502,31936,31937,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,35,-8,-32.02616119506246,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.34,11.36,58.02,44.82,8.333333333333334,1,1,0,0,0,4,2,1,770,318876.5704599279,161635.7889156857,95855.29030429566,0,1729.523442128784 -14186,17502,31937,31936,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.503251097672493,6.332631710896404,35,8,5.576302207263215,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.073003716259823,6.183334684997988,58.02,44.82,50.34,11.36,8.333333333333334,1,1,0,0,0,4,2,1,770,318876.5704599279,161635.7889156857,95855.29030429566,0,1729.523442128784 -14187,17503,31938,31940,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.292722279147781,7.165769002018146,0,10,-7,41.53823895742416,0,3,2,2019,12,1,19,19,1,1,0,12.7205837488486,12.7205837488486,0,0,0,0,0,0,0,0,0,0,47.75,53.7,51.41,56.15,6.666666666666667,1,1,0,0,11,6,5,1,1143,1655751.810174891,1347205.610596608,244809.7474621477,57837.49622126896,4143.17362804064 -14187,17503,31939,-9,31938,31940,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.79995204182,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1143,1655751.810174891,1347205.610596608,244809.7474621477,57837.49622126896,4143.17362804064 -14187,17503,31940,31938,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.961104880310748,8.978731554673002,0,10,7,29.04550198496312,0,-9,-9,2019,12,1,75,70,1,1,0,15.7081956815937,15.7081956815937,0,0,0,0,0,0,0,0,2.574028688488392,0,51.41,56.15,47.75,53.7,6.666666666666667,1,1,0,0,11,6,5,1,1143,1655751.810174891,1347205.610596608,244809.7474621477,57837.49622126896,4143.17362804064 -14188,17504,31941,31942,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.197045939254979,7.460366512761924,0,34,7,22.910229473704,0,3,3,2019,11,0,24,24,1,0,0,6.334226966288137,6.334226966288137,0,0,0,0,0,1,1,0,0,0,52.97,49.09,51,54,8.333333333333334,2,3,0,0,8,8,2,1,1440,259328.1803400169,110818.9857177343,246682.6992395698,61040.50300547464,1877.87753544166 -14188,17504,31942,31941,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,34,-7,-155.4485668543369,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,52.97,49.09,8,2,3,0,0,0,8,2,1,1440,259328.1803400169,110818.9857177343,246682.6992395698,61040.50300547464,1877.87753544166 -14188,17504,31943,-9,31942,31941,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.5722561387233,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.681891918712077,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,1440,259328.1803400169,110818.9857177343,246682.6992395698,61040.50300547464,1877.87753544166 -14188,17505,31944,-9,31942,31941,1,0,23,0,1,0,2,2,-9,0,3,8.500507340804482,8.119235322737001,0,0,0,-898.581357372206,0,3,3,2019,11,2,48,40,1,2,1,11.98291401610292,11.98291401610292,0,0,0,0,0,1,1,0,0,0,31.64,59.59,-9,-9,5,2,3,0,0,5,8,5,1,881,-33093.25917961141,0,0,0,1024.124279991486 -14188,17506,31945,-9,31942,31941,1,0,29,0,1,0,1,1,-9,0,5,7.702885646600657,7.665400724347643,0,0,0,-1123.906641519044,-9,3,3,2019,12,3,22,0,1,3,1,9.098255313710368,9.098255313710368,0,0,0,0,0,1,1,0,0,0,39.88,61.57,-9,-9,8.333333333333334,2,3,0,0,9,8,3,1,214,53900.87916309881,-129921.4523801536,0,0,950.5565139541617 -14189,17507,31946,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,5.211813616109898,4.898453025273473,0,0,0,-1058.910625399134,0,3,3,2019,12,0,16,16,1,0,0,1.129463975983295,1.129463975983295,0,0,0,0,2,1,1,0,0,0,34.25,58.67,-9,-9,6.666666666666667,3,4,0,1,3,6,2,0,276.3333333333333,-26508.53312085446,0,0,0,994.942418326854 -14189,17507,31947,-9,31946,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.537748445461,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,2,0,276.3333333333333,-26508.53312085446,0,0,0,994.942418326854 -14189,17507,31948,-9,31946,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-804.7099749849642,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,2,0,276.3333333333333,-26508.53312085446,0,0,0,994.942418326854 -14190,17508,31949,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.561286778119417,7.491225711875142,0,0,0,-939.2069537515709,-9,3,3,2019,11,2,30,0,1,2,0,7.393982478250908,7.393982478250908,0,0,0,0,0,1,1,0,0,0,34.89,58.63,-9,-9,8.333333333333334,2,3,0,0,5,6,3,1,2764,-110683.1439482048,149852.9290169257,0,0,982.316019729609 -14190,17509,31950,-9,31949,-9,1,0,19,0,1,0,2,2,-9,0,3,6.901149866440248,6.657593809948886,0,0,0,-958.9742733618718,-9,2,-9,2019,7,0,20,0,1,0,1,5.478633778216639,5.478633778216639,0,0,0,0,0,1,1,0,0,0,58.02,42.12,-9,-9,10,2,3,0,0,0,6,2,1,145,95240.10094277636,-70619.85614295785,0,0,922.7562292319516 -14191,17510,31951,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,9.154672928853564,8.865979407987322,0,4,-7,-58.02994319269079,-9,-9,-9,2019,29,11,53,0,1,11,0,13.74414868172953,13.74414868172953,0,0,0,0,0,0,0,0,4.204263129615426,0,19.98,58.36,46.42,59.64,1.666666666666667,1,1,0,0,7,12,5,1,154,20120.20977563907,34377.65743909832,111813.2438753821,72764.84029220516,2704.591080124368 -14191,17511,31952,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.821233563578351,9.20128527131344,0,4,7,-19.52761702906545,-9,1,1,2019,9,2,55,0,1,2,0,21.47599054995844,21.47599054995844,0,0,0,0,0,0,0,0,2.013219386294914,0,46.42,59.64,19.98,58.36,8.333333333333334,1,1,0,0,7,12,5,1,1266,592986.2812597409,336427.5134064935,182607.704449243,106039.4733665805,2639.565067934755 -14192,17512,31953,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.419385496805161,8.334594665578329,5.618399058558865,0,0,-1027.899543023569,0,2,2,2019,18,6,37,40,1,6,0,19.00736594241823,19.00736594241823,0,0,0,0,0,0,0,0,0,5.882395662247601,43.83,43.24,-9,-9,3.333333333333333,1,1,0,0,10,6,5,1,440,1251470.773567387,599582.557542638,222894.0831216109,0,1699.047024372154 -14193,17513,31954,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,0,0,0,0,0,-851.2689033221541,0,3,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,14.5,1,1,0,0,0,13.43,58.84,-9,-9,3.333333333333333,1,1,1,1,3,7,1,0,297,-133124.2479460887,0,0,0,345.4850211075835 -14194,17514,31955,31956,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,3.152099327600356,3.45885087206993,62,6,-28.15794983904905,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.746909947858343,3.178707065499824,43.65,28.86,37.24,36.12,8.333333333333334,1,1,0,0,0,9,2,1,1183.5,282782.6040100395,-3618.875718079356,313235.2262773647,0,691.2853398181381 -14194,17514,31956,31955,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,0,0,62,-6,120.9123840739669,0,3,1,2019,11,1,0,0,4,1,0,0,0,1,0,5.460852028573717,0,0,1,1,0,1.501089538770128,0,37.24,36.12,43.65,28.86,5,1,1,0,0,0,9,2,1,1183.5,282782.6040100395,-3618.875718079356,313235.2262773647,0,691.2853398181381 -14195,17515,31957,31958,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.091512291834688,8.826887595302194,0,5,2,-111.0526004968311,0,-9,-9,2019,11,0,35,45,1,2,0,29.97522002873647,29.97522002873647,0,0,0,0,0,0,0,0,4.666574329988598,0,48,57,51.83,57.2,7,1,1,0,0,1,2,5,1,1239.5,347020.4678996245,48569.3021951627,201371.4749146177,154032.3415152803,4577.138217479151 -14195,17515,31958,31957,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.533297836385639,8.572531148148162,0,5,-2,-119.9836722058529,0,1,1,2019,12,0,58,48,1,0,0,10.63951608407895,10.63951608407895,0,0,0,0,0,0,0,0,1.459379655421702,0,51.83,57.2,48,57,8.333333333333334,1,1,0,0,9,2,5,1,1239.5,347020.4678996245,48569.3021951627,201371.4749146177,154032.3415152803,4577.138217479151 -14196,17516,31959,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.010618428520343,4.879955722453259,0,0,-990.0860139334424,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.505897562073,5.030808291155173,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,365,46973.26294454058,98400.65674187991,0,0,648.9952403608629 -14197,17517,31960,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.162325839304762,9.49050422771302,7.864172900399399,0,0,-960.9563642523835,-9,-9,-9,2019,21,7,46,0,1,7,0,21.84410933170952,21.84410933170952,0,0,0,0,0,0,0,0,8.713997929737811,0,31.48,60.11,-9,-9,6.666666666666667,1,1,0,0,10,6,5,0,2636,131284.4213075145,35196.49322473502,153133.385525571,115937.237242626,7076.873057215973 -14198,17518,31961,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,7.114076874668852,6.931294925814292,19,12,-32.38143593793446,0,-9,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,3.10097466407592,6.871045553529607,11.96,51.7,45.98,45.77,0,1,1,1,1,8,6,2,1,814,120292.7157893257,-102743.8344762452,106327.4827489165,0,1360.479258622723 -14198,17519,31962,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,6.28503686661597,6.593423333650914,0,9,-12,-47.95925901602102,-9,-9,-9,2019,9,0,10,0,1,0,0,7.438498498408436,7.438498498408436,0,0,0,0,0,1,1,0,0,0,45.98,45.77,11.96,51.7,5,1,1,0,0,8,6,2,1,1089,-69956.84674587412,-23090.13382247519,0,0,100.3879028952255 -14199,17520,31963,31964,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.595563133700713,8.337962000774322,0,34,1,93.2637560207546,-9,-9,-9,2019,6,0,38,0,1,0,0,16.46320908526082,16.46320908526082,0,0,0,0,88,1,1,0,0,0,62.39,56.71,48.45,23.16,8.333333333333334,1,1,0,0,7,2,4,0,544,1224960.977475055,961514.6921733882,341580.2615491328,0,2840.72768355166 -14199,17520,31964,31963,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,0,6.671434210031216,6.955329797793572,34,-1,52.42414482161116,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.138886661289076,48.45,23.16,62.39,56.71,6.666666666666667,1,1,0,0,6,2,4,0,544,1224960.977475055,961514.6921733882,341580.2615491328,0,2840.72768355166 -14200,17521,31965,31966,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.640823516339966,7.273922248650697,0,1,4,-12.4679533729293,-9,-9,-9,2019,12,1,26,0,1,1,0,7.235604300817373,7.235604300817373,0,0,0,0,0,0,0,0,0,0,33.28,49.5,48.77,60.16,8.333333333333334,1,1,0,0,3,2,4,0,814.5,23530.68014247837,-19457.06914628727,171884.4387321543,83804.39769401745,2244.617466179552 -14200,17521,31966,31965,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.22610015892187,8.4967466088283,0,1,-4,7.459460150204881,0,1,1,2019,8,2,68,65,1,2,0,7.911735408563437,7.911735408563437,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.28,49.5,8.333333333333334,1,1,0,0,8,2,4,0,814.5,23530.68014247837,-19457.06914628727,171884.4387321543,83804.39769401745,2244.617466179552 -14201,17522,31967,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-982.2002584232439,0,3,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.01,54.29,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,2644,-59974.18302086393,0,0,0,808.2373624455786 -14202,17523,31968,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,0,0,0,0,0,-878.2586927612928,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,2,3,1,0,0,5,1,0,482.3333333333333,-39416.85417341183,0,0,0,1386.185732357541 -14202,17523,31969,-9,31968,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.1235398755684,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,482.3333333333333,-39416.85417341183,0,0,0,1386.185732357541 -14202,17523,31970,-9,31968,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.343843198672,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,482.3333333333333,-39416.85417341183,0,0,0,1386.185732357541 -14203,17524,31971,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,7.074478629178886,6.735577750189392,0,0,0,-1061.10419830056,0,3,2,2019,13,2,20,30,1,2,0,9.054562824131928,9.054562824131928,0,0,0,0,0,1,0,1,0,0,38.86,25.64,-9,-9,5,1,1,0,0,13,2,3,0,841,106571.2824312257,-156.9994457686644,0,0,693.4627083201071 -14204,17525,31972,31973,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,7,-2,-107.8914409723784,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.488283208209581,0,53.26,55.31,55.09,55.87,8.333333333333334,1,1,0,0,3,9,3,1,938,1451705.891585366,569230.1474407788,733587.038750167,0,2356.368103105074 -14204,17525,31973,31972,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.938756930536859,8.05844840841454,7,2,48.83106824304046,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.889717515025963,8.13361660860936,55.09,55.87,53.26,55.31,8.333333333333334,1,1,0,0,1,9,3,1,938,1451705.891585366,569230.1474407788,733587.038750167,0,2356.368103105074 -14205,17526,31974,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.644091295295612,7.605031875411524,5.359609948359262,0,0,-1027.839115500171,-9,-9,-9,2019,20,7,20,0,1,7,0,13.31073566228612,13.31073566228612,0,0,0,0,2,0,0,0,6.231639890417457,0,39.42,60.24,-9,-9,3.333333333333333,1,1,0,0,2,8,3,0,950,64364.63982919447,0,0,0,1248.536285001165 -14206,17527,31975,-9,31977,31976,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.312805121551,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,725.4,138239.0307917913,112174.3473976169,247852.587068729,172031.7822805108,2362.193528927448 -14206,17527,31976,31977,-9,-9,1,1,34,0,3,0,2,2,-9,0,2,8.159793301466326,8.043662121669788,0,14,1,-.5087611704507289,0,2,2,2019,8,0,39,39,1,0,0,9.630838019243175,9.630838019243175,0,0,0,0,0,1,1,0,0,0,56.28,42,14.25,61.15,5,1,1,0,0,5,7,3,0,725.4,138239.0307917913,112174.3473976169,247852.587068729,172031.7822805108,2362.193528927448 -14206,17527,31977,31976,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,14,-1,-38.04204713841054,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,14.25,61.15,56.28,42,6.666666666666667,1,1,0,0,0,7,3,0,725.4,138239.0307917913,112174.3473976169,247852.587068729,172031.7822805108,2362.193528927448 -14206,17527,31978,-9,31977,31976,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.596572754751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,725.4,138239.0307917913,112174.3473976169,247852.587068729,172031.7822805108,2362.193528927448 -14206,17527,31979,-9,31977,31976,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1078.177809108001,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,3,0,725.4,138239.0307917913,112174.3473976169,247852.587068729,172031.7822805108,2362.193528927448 -14207,17528,31980,-9,31981,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.5742403760491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,2,3,0,614.5,2688.451213570763,76894.2541326858,104196.64403538,39969.48412047028,1772.670924991678 -14207,17528,31981,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.819919851057005,8.111663381258852,0,0,0,-980.6724924404687,0,-9,-9,2019,9,0,35,34,1,0,0,8.896918855682815,8.896918855682815,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,7,2,3,0,614.5,2688.451213570763,76894.2541326858,104196.64403538,39969.48412047028,1772.670924991678 -14208,17529,31982,-9,31985,31986,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.1886447972507,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,1,718.2,73202.89107087832,84651.05331916211,0,0,2148.035739388645 -14208,17529,31983,-9,31985,31986,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1047.702516362461,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,1,1,718.2,73202.89107087832,84651.05331916211,0,0,2148.035739388645 -14208,17529,31984,-9,31985,31986,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.973838482043,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,1,718.2,73202.89107087832,84651.05331916211,0,0,2148.035739388645 -14208,17529,31985,31986,-9,-9,1,0,43,0,2,0,2,2,-9,1,2,0,0,0,27,-1,0,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.54,30.54,49.04,55.86,8.333333333333334,1,1,0,0,7,12,1,1,718.2,73202.89107087832,84651.05331916211,0,0,2148.035739388645 -14208,17529,31986,31985,-9,-9,1,1,44,0,2,0,1,1,1,1,3,0,0,0,27,1,0,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,58.54,30.54,6.666666666666667,1,1,1,0,6,12,1,1,718.2,73202.89107087832,84651.05331916211,0,0,2148.035739388645 -14209,17530,31987,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.549430145941975,7.44892382467515,0,0,0,-1005.631087731755,0,-9,-9,2019,12,0,23,24,1,0,0,7.044737301745937,7.044737301745937,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,832,-109398.1012455498,0,0,0,1780.964967753907 -14210,17531,31988,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1007.490956446654,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,106,83703.59646574412,0,0,0,1453.900703705397 -14211,17532,31989,31990,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.151393193495561,8.064098401852648,0,6,2,6.538145544711539,0,1,1,2019,10,0,41,45,1,0,0,8.238247292043276,8.238247292043276,0,0,0,0,0,1,1,0,3.197068300288791,0,62.39,56.71,42.82,54.37,6.666666666666667,1,1,0,0,12,9,4,1,536.5,-68600.64180567188,-8969.612607956331,0,0,3110.640451159415 -14211,17532,31990,31989,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.007327421575283,7.746564312537178,0,6,-2,21.26343397458073,0,-9,-9,2019,8,0,36,36,1,0,0,7.020191525785162,7.020191525785162,0,0,0,0,0,1,1,0,0,0,42.82,54.37,62.39,56.71,5,2,3,0,0,7,9,4,1,536.5,-68600.64180567188,-8969.612607956331,0,0,3110.640451159415 -14212,17533,31991,-9,31993,31994,1,0,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-867.3751494282556,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.0989184077506576,0,64.89,36.63,-9,-9,5,2,3,0,0,0,8,3,1,494,400339.1128088746,186768.9219975205,223390.7132555094,0,2529.370085493506 -14212,17533,31992,-9,31993,31994,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.252941171113,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,494,400339.1128088746,186768.9219975205,223390.7132555094,0,2529.370085493506 -14212,17533,31993,31994,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,6.544486357728505,6.344269106128003,0,17,-12,-90.25301301872322,0,3,3,2019,10,0,15,14,1,0,0,6.159641270699864,6.159641270699864,0,0,0,0,0,1,1,0,0,0,62.8,41.2,54,54,8.333333333333334,2,3,0,0,9,8,3,1,494,400339.1128088746,186768.9219975205,223390.7132555094,0,2529.370085493506 -14212,17533,31994,31993,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.332874964141137,8.254986435781431,0,17,12,19.80215671520636,-9,3,3,2019,9,0,74,0,1,1,0,5.136389594308581,5.136389594308581,0,0,0,0,0,1,1,0,6.378643714264946,0,54,54,62.8,41.2,8,2,3,0,0,1,8,3,1,494,400339.1128088746,186768.9219975205,223390.7132555094,0,2529.370085493506 -14212,17534,31995,-9,31993,31994,1,0,19,0,3,0,2,2,1,0,4,0,0,0,0,0,-1029.728690870029,-9,2,2,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,39.17,50.87,-9,-9,6.666666666666667,2,3,1,0,0,8,2,1,271,105111.2873726015,0,0,0,0 -14213,17535,31996,31997,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.238700922759485,7.421712798158438,51,-2,58.60325714850326,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.079978644068713,7.189233407271508,44.66,57.83,31.5,20.97,8.333333333333334,1,1,0,0,8,2,3,1,932.5,650913.3830582427,514649.648088093,158192.9844776769,0,2114.684746834835 -14213,17535,31997,31996,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.003455521779322,6.965831563357272,9,2,23.88838638372402,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,16.70161836227619,0,0,1,1,0,4.695417005609746,7.058343480496355,31.5,20.97,44.66,57.83,3.333333333333333,1,1,0,0,0,2,3,1,932.5,650913.3830582427,514649.648088093,158192.9844776769,0,2114.684746834835 -14213,17536,31998,-9,-9,-9,1,1,19,0,0,0,2,2,1,0,5,7.273055333080114,6.933411738901864,0,0,0,-958.2178797222912,-9,-9,-9,2019,11,0,24,0,1,0,0,6.414031097724442,6.414031097724442,0,0,0,0,0,1,1,0,5.044219456481967,0,56.72,58.13,-9,-9,10,1,1,0,0,3,2,3,1,534,-103457.9463932667,0,0,0,565.3355852342066 -14214,17537,31999,32000,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.959349601287681,9.038049582952503,0,10,-3,133.3833720701329,0,2,2,2019,11,0,35,35,1,0,0,27.19709928465599,27.19709928465599,0,0,0,0,0,1,1,0,0,0,53.5,51.02,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,3638,2483073.627810462,1759749.032714186,473612.9792386456,0,4701.572544697061 -14214,17537,32000,31999,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.022286243840579,7.594242625208082,10,3,36.67734332276349,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.387940566264087,8.240548819691561,57.16,56.15,53.5,51.02,10,1,1,0,0,4,9,5,1,3638,2483073.627810462,1759749.032714186,473612.9792386456,0,4701.572544697061 -14215,17538,32001,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,2,0,0,0,0,0,-960.7490557357968,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.79,32.94,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,2203.333333333333,0,0,0,0,1557.552820657438 -14215,17538,32002,-9,32001,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.1853269654922,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,2203.333333333333,0,0,0,0,1557.552820657438 -14215,17538,32003,-9,32001,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.631989576384,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,2203.333333333333,0,0,0,0,1557.552820657438 -14216,17539,32004,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.352729157401593,7.229205048641841,0,0,-1052.315628532249,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,3.648715010658136,8.601626952987372,48.99968745535113,0,1,1,0,0,7.624431214185817,42.4,32.25,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,470,457098.4136121908,-878.454549778382,171665.6974421942,0,2385.091551464081 -14217,17540,32005,-9,32006,-9,1,0,41,0,0,0,1,1,-9,0,3,8.019820124545246,8.060404873632027,0,0,0,-890.5780762518176,0,1,1,2019,6,0,37,38,1,0,0,9.307760222122063,9.307760222122063,0,0,0,0,2,1,1,0,0,0,64.15000000000001,38.07,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,491,166791.9602595658,0,0,0,1107.03505393229 -14217,17541,32006,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,8.214690774634992,8.368734932469264,0,0,-1133.415514825956,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.562143394747334,8.439972075050239,60,42.68,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,299,781831.5630730621,142495.484585496,249343.6049219556,0,3152.15269326414 -14218,17542,32007,-9,32008,32009,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-909.9993862272141,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,4,4,1,2591.5,333880.4729132822,254602.3667788095,186994.4405554577,78020.71786210788,4366.019671751403 -14218,17542,32008,32009,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.398492148080223,8.525613724230706,0,6,-5,114.5108555988042,0,2,3,2019,17,5,32,40,1,5,0,11.70141008334737,11.70141008334737,0,0,0,0,2,1,1,0,3.192741655936945,0,38.74,40.53,57.06,57.76,8.333333333333334,1,1,0,0,8,4,4,1,2591.5,333880.4729132822,254602.3667788095,186994.4405554577,78020.71786210788,4366.019671751403 -14218,17542,32009,32008,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.410330403232788,8.737197298179456,0,6,5,-61.34474908687194,0,2,2,2019,11,0,42,40,1,0,0,12.2580883738128,12.2580883738128,0,0,0,0,0,1,1,0,4.2266624389467,0,57.06,57.76,38.74,40.53,8.333333333333334,1,1,0,0,8,4,4,1,2591.5,333880.4729132822,254602.3667788095,186994.4405554577,78020.71786210788,4366.019671751403 -14218,17542,32010,-9,32008,32009,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.131325610576,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,2591.5,333880.4729132822,254602.3667788095,186994.4405554577,78020.71786210788,4366.019671751403 -14219,17543,32011,32013,-9,-9,1,1,50,0,3,0,2,2,-9,1,1,0,0,0,8,12,0,0,3,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.56,17.19,30.2,52.76,8.333333333333334,1,1,0,0,3,13,1,0,855.3333333333334,-148066.6124289204,0,0,0,2130.582423124919 -14219,17543,32012,-9,32013,32011,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.6909731275491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,855.3333333333334,-148066.6124289204,0,0,0,2130.582423124919 -14219,17543,32013,32011,-9,-9,1,0,38,0,3,0,2,2,-9,0,2,0,0,0,8,-12,0,0,2,2,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,.8495855192336825,0,30.2,52.76,33.56,17.19,8.333333333333334,1,1,1,0,2,13,1,0,855.3333333333334,-148066.6124289204,0,0,0,2130.582423124919 -14220,17544,32014,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.843629913557155,8.857864206221162,0,0,0,-1035.592804818911,0,1,-9,2019,8,0,50,50,1,0,0,15.07270979270641,15.07270979270641,0,0,0,0,0,1,1,0,7.437162452237366,0,60.15,35.65,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,938,260232.8608343785,199271.8104879039,158887.4492028552,0,3293.839738731645 -14221,17545,32015,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,8.033397582853311,7.765282731963685,4.846908503255376,0,0,-974.3448625808683,0,2,2,2019,6,0,40,40,1,0,0,6.826957791885503,6.826957791885503,0,0,0,0,0,0,0,0,0,4.938380967575704,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,429,501295.1099078641,558570.6050371911,0,0,1100.60411394509 -14221,17546,32016,-9,32015,-9,1,1,29,0,0,0,2,2,-9,0,4,8.434530126564303,8.193293595605864,0,0,0,-1041.982970166765,0,3,-9,2019,9,0,50,40,1,0,1,8.168667345525192,8.168667345525192,0,0,0,0,2,0,0,0,0,0,40.82,55.28,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1035,-70663.20706451824,0,0,0,1327.567596814339 -14222,17547,32017,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-876.9440618713959,0,3,3,2019,17,3,0,0,4,3,0,0,0,1,0,3.769273586897719,0,0,1,1,0,0,0,25.38,30.76,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,2448,299135.171555443,0,0,0,400.3370617922415 -14223,17548,32018,-9,-9,-9,1,0,18,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1136.866198258027,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,5,1,1,0,0,0,11,1,0,305,-59383.91998832559,0,0,0,1028.931809330913 -14223,17548,32019,-9,32018,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1142.013458452486,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,305,-59383.91998832559,0,0,0,1028.931809330913 -14224,17549,32020,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.920197547702432,8.126736177060035,0,0,-922.1436336648287,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.149819551129086,7.988341782707013,54.69,57.47,-9,-9,10,1,1,0,0,0,7,4,1,393,1162450.510503496,334028.5850268729,689753.5490294675,0,2352.236768950524 -14225,17550,32021,32022,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.933855260131218,5.857116075522542,8,4,-35.79938871963416,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.78211425818245,5.93401991167079,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,9,10,4,1,443,931667.2669218453,617772.9678244209,308563.5398583468,0,2568.91157624217 -14225,17550,32022,32021,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.270796251862395,8.379183445982928,5.154293269349814,37,-4,-13.5250610530408,0,2,3,2019,6,0,38,37,1,0,0,15.99891860544253,15.99891860544253,0,0,0,0,7,1,1,0,3.392746056767041,5.702292816018467,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,11,10,4,1,443,931667.2669218453,617772.9678244209,308563.5398583468,0,2568.91157624217 -14226,17551,32023,32024,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.981092126782759,9.230106854446193,8.066818936498656,22,1,-102.9692507779838,0,2,2,2019,12,0,25,36,1,0,0,38.24297547014195,38.24297547014195,0,0,0,0,0,0,0,0,7.966269038510521,0,38.89,60.86,40.82,46.81,6.666666666666667,1,1,0,0,10,8,5,1,737,1328857.454642469,764096.196392506,505528.5921623211,172790.0896527718,8507.994241673319 -14226,17551,32024,32023,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,9.247055198239073,9.412232160279583,0,7,-1,-112.2732259972774,0,-9,-9,2019,23,11,60,60,1,11,0,23.2474497564082,23.2474497564082,0,0,0,0,0,0,0,0,6.236348191093635,0,40.82,46.81,38.89,60.86,6.666666666666667,1,1,0,0,10,8,5,1,737,1328857.454642469,764096.196392506,505528.5921623211,172790.0896527718,8507.994241673319 -14226,17552,32025,-9,32023,32024,1,0,19,0,0,1,2,0,0,0,4,0,6.483108009194754,6.572581212189281,0,0,-822.3577774245479,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,6.827387769347567,0,45.47,53.5,-9,-9,3.333333333333333,1,1,0,0,1,8,2,1,1960,-61193.03120251091,0,0,0,194.635751986887 -14227,17553,32026,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-905.3914739303348,0,-9,-9,2019,18,7,0,55,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.81,62.99,-9,-9,3.333333333333333,1,1,1,1,6,1,1,0,186,16546.84540343178,0,0,0,-164.3182633879696 -14228,17554,32027,32028,-9,32029,1,1,33,0,0,0,1,1,-9,0,3,8.136080055033629,8.301998388713693,0,5,5,10.37772632800629,0,3,3,2019,12,0,37,40,1,0,0,7.756809988544608,7.756809988544608,0,0,0,0,0,1,1,0,0,0,36.79,56.27,45.73,34.4,5,2,3,0,0,7,6,3,1,960.5,314760.7178329285,114440.4179202358,264341.7769569964,104139.7297737397,1647.871475880765 -14228,17554,32028,32027,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,5,-5,-169.2987070998328,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,34.4,36.79,56.27,1.666666666666667,2,3,1,0,1,6,3,1,960.5,314760.7178329285,114440.4179202358,264341.7769569964,104139.7297737397,1647.871475880765 -14228,17555,32029,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1084.07415936263,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,666,-216073.2324696222,0,0,0,674.7698127133319 -14229,17556,32030,32031,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.023298753381837,8.80403521731259,0,29,-2,-41.44854600533175,0,2,2,2019,15,5,45,45,1,5,0,17.20801774662409,17.20801774662409,0,0,0,0,0,0,0,0,6.051446687764812,0,56.33,48.32,50.82,49.75,8.333333333333334,1,1,0,0,11,5,5,1,400,210950.9407885483,197594.4196084211,60874.99682627856,0,5937.837943096105 -14229,17556,32031,32030,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.964227611973071,8.89636761856937,0,29,2,12.23644369380307,0,2,2,2019,10,0,44,49,1,0,0,19.15396209757226,19.15396209757226,0,0,0,0,0,0,0,0,8.21850552169589,0,50.82,49.75,56.33,48.32,8.333333333333334,1,1,0,0,11,5,5,1,400,210950.9407885483,197594.4196084211,60874.99682627856,0,5937.837943096105 -14230,17557,32032,32033,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.619553898623169,8.509995843915812,0,4,-1,166.6430289836169,0,-9,-9,2019,10,0,38,37,1,1,0,13.33623860472957,13.33623860472957,0,0,0,0,0,0,0,0,0,0,49,58,57.06,57.76,7,4,1,0,0,1,11,5,0,1212.5,218980.4825715791,124410.3149916939,265443.8817253368,95036.78095970411,4155.880978025074 -14230,17557,32033,32032,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.40893008093882,8.551335542359769,0,4,1,-174.0159044422444,0,2,2,2019,6,0,38,38,1,0,0,18.17762541919466,18.17762541919466,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49,58,8.333333333333334,1,1,0,0,9,11,5,0,1212.5,218980.4825715791,124410.3149916939,265443.8817253368,95036.78095970411,4155.880978025074 -14231,17558,32034,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.729556721033449,7.572228995395182,0,0,-980.6026291937643,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.761418779405401,7.963636942256955,61.86,39.02,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,2254,493941.5511053746,232051.1415330534,101250.7557253983,0,2375.591382793649 -14232,17559,32035,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.70117672139717,8.345751227393286,0,0,0,-1001.147161309596,0,3,3,2019,10,1,46,46,1,1,0,13.24380003266083,13.24380003266083,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,1901,169338.124090775,1342.571226488893,124442.356241002,82165.67718426745,1247.851630896421 -14233,17560,32036,-9,32037,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.369291766875,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,807.6666666666666,6720.158606701186,18529.93793382068,0,0,2360.55084515974 -14233,17560,32037,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,7.244059512238495,7.767718990638629,5.949593500641104,0,0,-1109.836707171827,0,2,2,2019,23,11,18,0,1,11,0,10.24471971103489,10.24471971103489,0,0,0,0,42,1,1,0,6.119952392268792,0,30.94,61.65,-9,-9,6.666666666666667,1,1,0,0,12,12,2,0,807.6666666666666,6720.158606701186,18529.93793382068,0,0,2360.55084515974 -14233,17560,32038,-9,32037,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.9444433861228,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,2,0,807.6666666666666,6720.158606701186,18529.93793382068,0,0,2360.55084515974 -14234,17561,32039,-9,-9,-9,1,1,25,0,2,0,1,1,-9,0,4,0,0,0,0,0,-994.2362544508676,1,2,3,2019,5,0,0,22,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,1,0,383,-166898.9592361462,0,0,0,270.5828663876089 -14234,17562,32040,-9,-9,-9,1,1,19,0,2,1,1,0,-9,0,5,0,0,0,0,0,-1039.13633054353,-9,2,-9,2019,3,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,70.29000000000001,42.14,-9,-9,0,1,1,0,0,3,7,2,0,347,121772.5702590144,0,0,0,-322.7685607251397 -14235,17563,32041,32042,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.543887323644231,8.458149041716208,0,4,1,-137.8200846534987,0,-9,-9,2019,10,0,40,40,1,1,0,12.50997976557965,12.50997976557965,0,0,0,0,0,0,0,0,3.758357888488465,0,51,49,48.87,58.55,7,1,1,0,0,1,5,4,1,445.5,1109277.524969261,421221.4735300484,342356.3194283627,0,2263.982233011016 -14235,17563,32042,32041,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,3.496920365639899,3.411322333771191,38,-1,30.9196524483524,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,3.56571918009474,48.87,58.55,51,49,5,1,1,0,0,4,5,4,1,445.5,1109277.524969261,421221.4735300484,342356.3194283627,0,2263.982233011016 -14236,17564,32043,32044,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.58951472431357,7.774480566855063,41,-1,-18.76949876690325,0,-9,-9,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.659075223560927,60.29,52.11,60.83,46.31,8.333333333333334,1,1,0,0,12,8,3,1,1204,944027.5335525658,557861.5755567915,385047.7807552733,0,1487.752225864506 -14236,17564,32044,32043,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.530952672342066,6.022993377655592,41,1,-47.81903599870803,0,3,3,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.15308165853437,60.83,46.31,60.29,52.11,8.333333333333334,1,1,0,0,11,8,3,1,1204,944027.5335525658,557861.5755567915,385047.7807552733,0,1487.752225864506 -14237,17565,32045,32046,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.462886065451451,6.60053963345812,8,11,47.35764832977802,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.55935803452163,57.16,56.15,50.85,49.73,10,1,1,0,0,0,7,2,1,785.5,496010.4716653897,174198.2721174517,405948.5604259496,0,1809.965518773108 -14237,17565,32046,32045,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,8,-11,4.873350186422816,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.85,49.73,57.16,56.15,6.666666666666667,1,1,0,0,0,7,2,1,785.5,496010.4716653897,174198.2721174517,405948.5604259496,0,1809.965518773108 -14238,17566,32047,32048,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.92337250352106,7.875403753937915,0,31,11,-45.95597701865378,0,2,2,2019,7,0,40,37,1,0,0,5.673615681754312,5.673615681754312,0,0,0,0,2,0,0,0,0,0,60.12,54.8,52,53,10,2,3,0,0,9,5,5,1,1356,1678851.576700671,1125265.175548536,402610.7066954226,0,3571.394165248784 -14238,17566,32048,32047,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.660354443362012,8.666414972379686,0,6,-11,95.03273440021327,-9,-9,-9,2019,10,0,40,0,1,1,0,23.58945675616204,23.58945675616204,0,0,0,0,0,0,0,0,0,0,52,53,60.12,54.8,8,2,3,0,0,1,5,5,1,1356,1678851.576700671,1125265.175548536,402610.7066954226,0,3571.394165248784 -14238,17567,32049,-9,32048,32047,1,1,24,0,0,0,1,1,-9,0,4,6.316183101030855,6.62473892024249,0,0,0,-949.9835965585366,0,1,1,2019,18,6,20,0,1,6,1,3.969298259364208,3.969298259364208,0,0,0,0,0,0,0,0,0,0,31.83,45.98,-9,-9,8.333333333333334,2,3,0,0,2,5,2,1,457,-27858.34442156984,0,0,0,760.2960874001602 -14239,17568,32050,32051,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.429737559688405,7.038987800377415,0,3,0,-12.38076285896277,0,3,3,2019,6,0,20,30,1,0,0,9.179461578309255,9.179461578309255,0,0,0,0,0,0,0,0,0,0,60.12,54.8,41.07,60.93,8.333333333333334,1,1,0,0,11,12,3,1,811.5,397848.8209403214,259456.7639408343,232151.1841484351,0,1011.126588295628 -14239,17568,32051,32050,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,7.034831848137444,7.10235670612341,0,3,0,74.16782705620552,0,-9,-9,2019,6,0,20,20,1,0,0,7.351886621228894,7.351886621228894,0,0,0,0,0,0,0,0,0,0,41.07,60.93,60.12,54.8,8.333333333333334,1,1,0,0,2,12,3,1,811.5,397848.8209403214,259456.7639408343,232151.1841484351,0,1011.126588295628 -14240,17569,32052,-9,32054,32053,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.289690660429,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,747.3333333333334,163565.1708083279,82972.14606882379,263335.5158165225,116104.7187650034,2619.272573747143 -14240,17569,32053,32054,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.069307602335609,8.188890653399955,0,11,-13,74.51986694275034,0,-9,-9,2019,9,0,45,43,1,0,0,9.506911175363632,9.506911175363632,0,0,0,0,2,1,1,0,.2739671814092995,0,57.16,56.15,53.38,41.98,8.333333333333334,1,1,0,0,11,10,4,1,747.3333333333334,163565.1708083279,82972.14606882379,263335.5158165225,116104.7187650034,2619.272573747143 -14240,17569,32054,32053,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,7.751773676920211,7.434022849311568,0,9,13,-20.12529916911536,0,-9,-9,2019,10,0,22,27,1,0,0,10.84207016240588,10.84207016240588,0,0,0,0,2,1,1,0,0,0,53.38,41.98,57.16,56.15,6.666666666666667,1,1,0,0,11,10,4,1,747.3333333333334,163565.1708083279,82972.14606882379,263335.5158165225,116104.7187650034,2619.272573747143 -14240,17570,32055,-9,32054,32053,1,0,24,0,1,0,2,2,-9,0,4,7.957360525750917,8.0519118830716,0,0,0,-1034.370323651751,0,2,3,2019,19,7,54,40,1,7,1,5.263686688618828,5.263686688618828,0,0,0,0,0,1,1,0,0,0,26.48,57.9,-9,-9,0,1,1,0,0,6,10,4,1,651,-92327.09640132367,59168.66794933169,0,0,2031.715220066676 -14241,17571,32056,32057,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.024834911802998,8.232402502742236,25,0,-63.17383446388592,0,3,3,2019,8,1,0,40,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.799878445279039,57.16,56.15,36.79,62.55,8.333333333333334,1,1,0,0,9,9,3,1,446.3333333333333,1033833.728334002,823422.7572153631,381852.5535367523,0,1992.541539211565 -14241,17571,32057,32056,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,5.897598985571417,5.920795293211432,25,0,-23.45883429963594,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,7.634662735399454,6.25852539531205,36.79,62.55,57.16,56.15,8.333333333333334,1,1,0,0,9,9,3,1,446.3333333333333,1033833.728334002,823422.7572153631,381852.5535367523,0,1992.541539211565 -14241,17571,32058,-9,32057,32056,1,1,11,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1120.649200649656,-9,-9,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,446.3333333333333,1033833.728334002,823422.7572153631,381852.5535367523,0,1992.541539211565 -14242,17572,32059,-9,32060,32063,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.0794692890586,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,355.2,218275.8834663568,89838.74643285628,309008.861520068,192619.3605125145,6253.804116459783 -14242,17572,32060,32063,-9,-9,1,0,37,1,3,0,2,2,-9,0,2,7.064615153379723,7.06812892788409,0,9,0,-28.67670818594484,0,-9,-9,2019,10,0,20,20,1,0,0,5.231462390114511,5.231462390114511,0,0,0,0,0,1,1,0,.9287118024792447,0,50.18,36.56,54.61,47.86,8.333333333333334,1,1,0,0,10,1,5,0,355.2,218275.8834663568,89838.74643285628,309008.861520068,192619.3605125145,6253.804116459783 -14242,17572,32061,-9,32060,32063,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.8113624372571,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,355.2,218275.8834663568,89838.74643285628,309008.861520068,192619.3605125145,6253.804116459783 -14242,17572,32062,-9,32060,32063,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.9308558660244,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,0,355.2,218275.8834663568,89838.74643285628,309008.861520068,192619.3605125145,6253.804116459783 -14242,17572,32063,32060,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,9.640417318188923,9.747114173589717,0,9,0,-154.4284706052775,0,3,3,2019,8,0,40,30,1,0,0,50.24167984720669,50.24167984720669,0,0,0,0,0,1,1,0,1.836334114676028,0,54.61,47.86,50.18,36.56,8.333333333333334,1,1,0,0,9,1,5,0,355.2,218275.8834663568,89838.74643285628,309008.861520068,192619.3605125145,6253.804116459783 -14243,17573,32064,32065,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,0,67.25843350821546,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,3.617106020391079,0,34.91,41.69,60.3,49.25,8.333333333333334,1,1,0,0,0,4,3,1,454.5,484199.4662213153,321123.316549523,92392.08874821092,0,1743.917228352022 -14243,17573,32065,32064,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.853706277442508,7.744576559849008,56,0,-55.58711779800463,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.353131452623824,7.968471090522719,60.3,49.25,34.91,41.69,10,1,1,0,0,0,4,3,1,454.5,484199.4662213153,321123.316549523,92392.08874821092,0,1743.917228352022 -14244,17574,32066,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.313502826779678,6.898258451537512,0,0,-1047.811436053206,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.806434639535139,7.425685060913852,57.35,29.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,392,565341.0665282608,145904.9071825678,326424.7774803386,0,1630.116034768961 -14245,17575,32067,-9,-9,32070,1,0,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-903.416511430783,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,4,2,-9,0,0,7,3,0,531,86903.50187343382,55000.40656480014,0,0,1349.404318170966 -14245,17575,32068,-9,-9,32070,1,1,17,1,2,0,3,3,1,0,5,0,0,0,0,0,-930.0889148293386,-9,-9,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.04,39.82,-9,-9,3.333333333333333,4,2,1,0,0,7,3,0,531,86903.50187343382,55000.40656480014,0,0,1349.404318170966 -14245,17575,32069,-9,-9,32070,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.966069001652,-9,-9,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,7,3,0,531,86903.50187343382,55000.40656480014,0,0,1349.404318170966 -14245,17575,32070,-9,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,7.356292010765004,7.51549346094462,0,0,0,-980.589091745759,0,3,3,2019,17,5,42,75,1,5,1,4.455339570391197,4.455339570391197,0,0,0,0,7,1,1,0,0,0,43.6,51.61,-9,-9,3.333333333333333,3,4,0,0,5,7,3,0,531,86903.50187343382,55000.40656480014,0,0,1349.404318170966 -14246,17576,32071,32074,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.470431670554182,8.715731054474636,0,19,2,8.574040642811619,0,2,2,2019,6,0,38,39,1,0,0,15.30741249301356,15.30741249301356,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.79,58.33,8.333333333333334,1,1,0,0,8,9,5,1,1373,403876.1440187332,224612.1739276619,318307.4960169264,134273.1909133741,3962.289646421052 -14246,17576,32072,-9,32074,32071,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.449070401598,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1373,403876.1440187332,224612.1739276619,318307.4960169264,134273.1909133741,3962.289646421052 -14246,17576,32073,-9,32074,32071,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.692345968306,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1373,403876.1440187332,224612.1739276619,318307.4960169264,134273.1909133741,3962.289646421052 -14246,17576,32074,32071,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.373443271117189,8.569074665299288,0,19,-2,11.54020819877991,0,2,3,2019,13,4,47,37,1,4,0,13.13617773306249,13.13617773306249,0,0,0,0,0,1,1,0,0,0,43.79,58.33,58.15,52.91,1.666666666666667,1,1,0,0,9,9,5,1,1373,403876.1440187332,224612.1739276619,318307.4960169264,134273.1909133741,3962.289646421052 -14247,17577,32075,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.216905724798197,7.511639453608925,0,0,-1012.271856687815,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,.6913582186571563,7.266347165490022,45.4,32.26,-9,-9,5,1,1,0,0,0,12,3,1,705,519491.4858454611,402052.8807411661,210330.0848779249,54722.06434560305,627.9140357116645 -14248,17578,32076,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.51910428313915,5.157344632665846,0,0,-945.6589768299229,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.490628750768736,57.16,56.15,-9,-9,10,1,1,0,0,6,1,2,1,1506,351655.9234575301,25198.74671023344,138625.5728699589,0,823.58431381128 -14249,17579,32077,32078,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.869483574394431,7.785493704727305,0,33,0,87.18089839851608,0,3,2,2019,6,0,35,39,1,0,0,6.848237393812451,6.848237393812451,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,10,1,1,0,0,9,1,5,1,2125.5,221716.4501042154,76089.23550462048,168846.2304297287,63529.40048368613,3463.068220237316 -14249,17579,32078,32077,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.323059986421633,8.558039923988638,7.168291048432131,33,0,-59.52951276249012,0,2,2,2019,10,0,55,50,1,0,0,7.918372600733777,7.918372600733777,0,0,0,0,0,0,0,0,0,7.437997521798162,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,1,5,1,2125.5,221716.4501042154,76089.23550462048,168846.2304297287,63529.40048368613,3463.068220237316 -14249,17580,32079,-9,32077,32078,1,0,28,0,0,0,2,2,-9,0,3,7.622884986802172,7.714695504003052,0,0,0,-1107.860261542545,0,2,2,2019,9,1,48,39,1,1,1,5.366018343722529,5.366018343722529,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,234,-173443.3723493183,0,0,0,1131.869674426648 -14250,17581,32080,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,3.003277988072576,3.435234024608403,0,0,-826.5971268155106,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,2.946051128185189,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,303,180155.4261272044,0,0,0,819.4693750185254 -14251,17582,32081,32082,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.878771817656498,6.7100969017473,6,-3,-112.0671269066786,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.584370888555567,7.094870920573407,57.33,53.46,58.37,33.26,10,1,1,0,0,0,10,2,1,302,543114.5109643897,222052.3532537396,322844.8134096937,0,2291.599134342376 -14251,17582,32082,32081,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.621496514803901,6.599137854044053,6,3,139.2976603521212,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.325696270563667,58.37,33.26,57.33,53.46,6.666666666666667,1,1,0,0,4,10,2,1,302,543114.5109643897,222052.3532537396,322844.8134096937,0,2291.599134342376 -14252,17583,32083,32084,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,61,4,70.8300459539938,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.65,34.01,62.66,39.17,8.333333333333334,1,1,0,0,0,9,2,0,472,596707.1389571675,55554.41327125498,445681.405309613,0,1074.58532796462 -14252,17583,32084,32083,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.900742129451182,4.939073539209213,62,-4,-19.65883777709478,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.353528963086306,62.66,39.17,54.65,34.01,10,1,1,0,0,0,9,2,0,472,596707.1389571675,55554.41327125498,445681.405309613,0,1074.58532796462 -14253,17584,32085,-9,-9,-9,1,1,73,0,1,0,3,3,-9,0,1,0,6.176502670811403,6.238344545884162,0,0,-1063.05394688857,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.362145837428126,33.48,28.06,-9,-9,10,1,1,0,0,0,12,2,1,1430,116025.1782613693,148700.2037475362,0,0,955.4520601051472 -14253,17585,32086,-9,32087,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1000.236823098972,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,12,3,1,243,7974.697452633856,0,0,0,1538.126457952073 -14253,17585,32087,-9,-9,32085,1,0,33,0,1,0,2,2,-9,0,4,7.686196594500262,7.886973482979881,0,0,0,-1000.716924627499,0,3,3,2019,12,0,35,37,1,0,0,8.701061268081721,8.701061268081721,0,0,0,0,0,1,1,0,0,0,35.53,41.78,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,243,7974.697452633856,0,0,0,1538.126457952073 -14254,17586,32088,-9,32089,32091,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.0462046980343,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,784.25,124931.589448944,0,248300.37331933,151075.1995883425,2139.863100566314 -14254,17586,32089,32091,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,11,2,-6.822202282220322,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,5,12,4,1,784.25,124931.589448944,0,248300.37331933,151075.1995883425,2139.863100566314 -14254,17586,32090,-9,32089,32091,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.622771387409,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,784.25,124931.589448944,0,248300.37331933,151075.1995883425,2139.863100566314 -14254,17586,32091,32089,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.504694534293703,8.720788884303689,0,11,-2,-73.11092908900068,0,3,3,2019,11,1,45,48,1,1,0,17.23275452038443,17.23275452038443,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,12,12,4,1,784.25,124931.589448944,0,248300.37331933,151075.1995883425,2139.863100566314 -14255,17587,32092,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-990.3753697361487,-9,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1.314703206388111,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,3,7,2,0,630,-100973.7425896646,0,0,0,-280.3864393960669 -14256,17588,32093,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,0,0,-946.2975712816964,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,44.71,-9,-9,6.666666666666667,2,3,0,0,7,2,1,0,1200,-45524.08445467383,0,0,0,994.6846624445382 -14256,17589,32094,-9,32093,-9,1,0,28,0,1,0,1,1,-9,0,3,8.382248546946798,8.363793896023585,0,0,0,-1047.219518953021,0,2,-9,2019,8,0,38,38,1,0,1,9.277724748194304,9.277724748194304,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,0,0,7,2,4,0,1269,-195992.6213095004,-52148.23446980272,0,0,1362.661807002788 -14256,17590,32095,-9,32093,-9,1,1,24,0,1,0,1,1,-9,0,2,9.149339518685609,9.327787545825627,0,0,0,-907.6441498651492,0,2,-9,2019,21,9,38,40,1,9,1,32.23995835550512,32.23995835550512,0,0,0,0,0,1,1,0,9.53192620280176,0,22.73,54.89,-9,-9,5,2,3,0,0,8,2,5,0,1009,-62270.31444903213,32160.28191969947,0,0,5997.9262671455 -14257,17591,32096,32097,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.998453556493631,8.228719649767218,44,2,-77.85625349592232,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.23518115300293,8.273422781541855,51,48,64.98,31.99,7,1,1,0,0,0,13,5,1,584,2766224.827091547,1708545.888806084,686805.0703805453,0,5888.273913718393 -14257,17591,32097,32096,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.104526649188092,8.163378713431312,44,-2,-35.68728110043213,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.338776352382309,8.18153699547315,64.98,31.99,51,48,1.666666666666667,1,1,0,0,4,13,5,1,584,2766224.827091547,1708545.888806084,686805.0703805453,0,5888.273913718393 -14258,17592,32098,-9,32099,32100,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.417504818226,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1381.25,97734.46448397804,91507.96403801721,0,0,2435.714453532165 -14258,17592,32099,32100,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.846544338688978,7.92768770195404,0,7,-2,-1.65930455375291,0,2,-9,2019,10,0,68,30,1,0,0,4.205120359091898,4.205120359091898,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,3,1,1381.25,97734.46448397804,91507.96403801721,0,0,2435.714453532165 -14258,17592,32100,32099,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,7.503007343959252,7.524228541531835,0,7,2,-115.938499398879,0,-9,-9,2019,10,0,60,50,1,0,0,3.722820502238751,3.722820502238751,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,8,12,3,1,1381.25,97734.46448397804,91507.96403801721,0,0,2435.714453532165 -14258,17592,32101,-9,32099,32100,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-981.0571949338849,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.182466795781419,0,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,1381.25,97734.46448397804,91507.96403801721,0,0,2435.714453532165 -14259,17593,32102,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.386296643477479,8.363021790904986,0,0,0,-933.9883949450102,0,3,3,2019,12,1,37,40,1,1,0,14.20012476427201,14.20012476427201,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,775,-79950.1328158736,0,0,0,1232.874596615635 -14260,17594,32103,32104,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.39548797369738,7.928946284954836,0,34,-3,89.68369524390764,0,3,2,2019,11,1,30,32,1,1,0,11.22663630884863,11.22663630884863,0,0,0,0,0,0,0,0,8.724734204926211,0,53.66,35.16,57.16,56.15,6.666666666666667,3,4,0,0,6,8,3,1,1934.5,1153775.540471444,496862.5848664914,440394.0941103412,162956.7304214525,2649.78437370414 -14260,17594,32104,32103,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,5.459031945618167,4.958780311801988,0,34,3,-20.88379204200903,0,3,2,2019,9,0,50,25,1,0,0,.4621927117623068,.4621927117623068,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.66,35.16,8.333333333333334,1,1,0,0,10,8,3,1,1934.5,1153775.540471444,496862.5848664914,440394.0941103412,162956.7304214525,2649.78437370414 -14261,17595,32105,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.951812072405398,5.939213251457858,0,0,-971.5650084730769,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.418828477624524,6.042685412270036,33.52,47.81,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,253,166388.5231510038,51520.39468167382,219612.6935428006,0,221.0574497614624 -14262,17596,32106,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.763042183713107,7.178611115736306,0,0,-952.0661662859595,0,2,1,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,3.381615058624257,7.152505436163162,40.64,42.22,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,168,190833.7209875237,210793.2789842565,348275.6240672941,224164.387652396,1055.89788508215 -14263,17597,32107,32108,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.897453312328011,7.689811231749015,0,2,0,0,0,2,2,2019,27,12,37,45,1,12,0,10.16987826149327,10.16987826149327,0,0,0,0,2,0,0,0,1.155623277574604,0,30.22,61.83,61.28,48.88,1.666666666666667,1,1,0,0,8,6,4,1,450.5,279869.3326177564,167242.8675099767,106881.0013427784,0,2599.177966306245 -14263,17597,32108,32107,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.953249170805149,7.991928070479291,0,2,9,0,0,3,3,2019,7,0,38,38,1,0,0,10.04448156921393,10.04448156921393,0,0,0,0,2,0,0,0,.2803878364129794,0,61.28,48.88,30.22,61.83,8.333333333333334,1,1,0,0,8,6,4,1,450.5,279869.3326177564,167242.8675099767,106881.0013427784,0,2599.177966306245 -14264,17598,32109,32110,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.438142764446162,7.379161452239425,0,34,5,154.9474399834353,0,2,2,2019,6,0,30,7,1,0,0,6.79594820584248,6.79594820584248,0,0,0,0,0,1,1,0,0,0,46.53,47.58,57.65,56.13,6.666666666666667,2,3,0,0,6,8,3,0,658.5,635947.6607806119,468203.3337252659,230336.1704113323,0,1297.882814572774 -14264,17598,32110,32109,-9,-9,1,1,57,0,0,0,1,1,1,0,5,6.83674941262236,6.703473091830608,0,34,-5,-33.09559159866758,-9,-9,1,2019,6,0,10,0,1,0,0,7.657149591350528,7.657149591350528,0,0,0,0,0,1,1,0,0,0,57.65,56.13,46.53,47.58,10,1,1,0,0,2,8,3,0,658.5,635947.6607806119,468203.3337252659,230336.1704113323,0,1297.882814572774 -14264,17599,32111,-9,32109,32110,1,1,28,0,0,0,1,1,-9,0,3,8.052934425226979,7.896468387920473,0,0,0,-878.9139645577116,0,2,1,2019,18,7,38,35,1,7,1,7.857069776944888,7.857069776944888,0,0,0,0,0,1,1,0,0,0,37.32,56,-9,-9,6.666666666666667,4,2,0,0,6,8,3,0,520,106039.5601294747,-707.9276711713261,0,0,1216.35709764187 -14265,17600,32112,32113,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.154250200244507,8.075623210919805,0,7,-8,17.77098790164829,0,3,3,2019,7,0,38,7,1,0,0,9.648660875819806,9.648660875819806,0,0,0,0,0,1,1,0,0,0,60.63,38.2,46.14,46.35,6.666666666666667,1,1,0,0,9,8,5,1,740.5,1679644.174881496,1421779.169987288,260965.8249704629,61247.8811847946,4039.526826028095 -14265,17600,32113,32112,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.954856214422577,9.11257372361646,0,7,8,8.707567396275802,0,3,3,2019,12,3,39,36,1,3,0,20.4005068862371,20.4005068862371,0,0,0,0,0,1,1,0,2.448233048883378,0,46.14,46.35,60.63,38.2,8.333333333333334,1,1,0,0,9,8,5,1,740.5,1679644.174881496,1421779.169987288,260965.8249704629,61247.8811847946,4039.526826028095 -14265,17601,32114,-9,32112,32113,1,1,26,0,0,0,2,2,-9,0,3,7.05469302547903,6.620923706435234,0,0,0,-961.1175574716982,0,1,2,2019,4,0,16,16,1,0,1,9.792797681848525,9.792797681848525,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,401,-123100.0701976108,0,0,0,178.4695556213425 -14265,17602,32115,-9,32112,32113,1,0,23,0,0,0,1,1,1,0,3,7.465083850903428,7.237585595493053,0,0,0,-1087.286037841046,-9,1,2,2019,11,1,35,0,1,1,1,6.648255108676878,6.648255108676878,0,0,0,0,0,1,1,0,0,0,49.23,55.95,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,2925,-112137.591451441,0,0,0,1303.256488476133 -14265,17603,32116,-9,32112,32113,1,0,18,0,0,0,2,2,1,0,4,5.345755355274004,5.665507841947041,0,0,0,-1126.098570565568,-9,1,2,2019,17,7,5,0,1,7,1,3.886415718835514,3.886415718835514,0,0,0,0,0,1,1,0,0,0,37.47,58.34,-9,-9,8.333333333333334,1,1,0,0,1,8,2,1,358,-44036.61218493684,0,0,0,546.1640867949977 -14266,17604,32117,-9,32119,32118,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-973.063306640488,-9,1,1,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,688.6666666666666,968048.3002801427,645095.1458624406,553335.2475368112,240589.4976880774,10888.49720956122 -14266,17604,32118,32119,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.451567492650112,9.597617010434025,0,24,-2,0,0,2,2,2019,8,0,40,40,1,0,0,42.06876399721396,42.06876399721396,0,0,0,0,0,1,1,0,3.948501158734914,0,54.96,53.17,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,688.6666666666666,968048.3002801427,645095.1458624406,553335.2475368112,240589.4976880774,10888.49720956122 -14266,17604,32119,32118,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.796579179262585,9.485134286496365,0,24,2,0,0,-9,-9,2019,8,1,60,55,1,1,0,30.06022447348174,30.06022447348174,0,0,0,0,0,1,1,0,1.148010952098778,0,57.06,57.76,54.96,53.17,6.666666666666667,1,1,0,0,8,8,5,1,688.6666666666666,968048.3002801427,645095.1458624406,553335.2475368112,240589.4976880774,10888.49720956122 -14266,17605,32120,-9,32119,32118,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.2698136488042,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,1077,165324.4042451951,0,0,0,289.4633333190683 -14267,17606,32121,32122,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,9.514158994403973,9.518275726528156,0,37,0,27.25018277647403,0,2,2,2019,11,0,42,43,1,0,0,26.22994912538316,26.22994912538316,0,0,0,0,0,1,1,0,0,0,44.05,40.95,37.17,31.84,8.333333333333334,1,1,0,0,12,8,5,1,1207.5,627384.5916695736,149188.8639231723,229321.9198854137,74388.37204533591,4921.583456700409 -14267,17606,32122,32121,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,6.663153445454638,6.689055332715168,0,37,0,-167.952337084484,0,2,2,2019,14,2,7,7,1,2,0,12.4240586536942,12.4240586536942,0,0,0,0,27,1,1,0,0,0,37.17,31.84,44.05,40.95,6.666666666666667,1,1,0,0,12,8,5,1,1207.5,627384.5916695736,149188.8639231723,229321.9198854137,74388.37204533591,4921.583456700409 -14267,17607,32123,-9,32122,32121,1,1,26,0,0,0,1,1,-9,0,4,9.472663059021464,9.632042621719823,0,0,0,-985.451323106506,0,2,2,2019,12,1,25,-9,1,1,1,70.43809000335963,70.43809000335963,0,0,0,0,0,1,1,0,0,0,36.97,58.59,-9,-9,8.333333333333334,1,1,0,0,5,8,5,1,156,91940.75843080203,-13126.65438594453,0,0,5295.678264202903 -14268,17608,32124,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.728412417250102,7.452479258092115,0,0,0,-1000.413083483607,0,-9,-9,2019,8,0,25,20,1,0,0,10.06452147433897,10.06452147433897,0,0,0,0,0,0,0,0,0,0,49.67,51.42,-9,-9,5,1,1,0,0,5,11,3,0,37,-54757.43509075855,-217559.9074948915,0,0,769.2193595837929 -14268,17609,32125,-9,32124,-9,1,1,26,0,0,0,2,2,-9,0,4,7.223625616799535,7.155390496564135,0,0,0,-948.5392996591848,0,3,-9,2019,10,0,40,0,1,1,1,3.163647267371173,3.163647267371173,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,11,2,0,930,78257.72293979349,0,0,0,24.49718120923308 -14269,17610,32126,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.142332955240347,8.274168137017817,0,0,0,-1150.294656841226,0,2,3,2019,10,0,43,41,1,0,0,10.6759294509121,10.6759294509121,0,0,0,0,2,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,1,12,9,4,1,662,61089.52834425231,-79160.56630838929,0,0,1029.137015799035 -14270,17611,32127,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,7.307065218004033,7.023686732235774,0,0,-1132.016151878118,0,3,-9,2019,27,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,7.607572287739391,30.21,25.33,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,223,114088.052693011,162702.3119223649,33293.3701135895,0,3245.041291370284 -14271,17612,32128,32129,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,6.53563527007942,6.451432131714032,0,9,-8,-161.3382015092052,0,3,2,2019,12,0,30,30,1,0,0,2.691670911292321,2.691670911292321,0,0,0,0,42,1,1,0,0,0,42.35,33.61,27.41,25.55,6.666666666666667,1,1,0,0,10,12,2,1,742,142092.7073480266,36024.66187828612,280882.6500686402,41860.71494413844,800.3506446019474 -14271,17612,32129,32128,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,0,0,9,8,-14.23028721450004,0,3,3,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,27.41,25.55,42.35,33.61,6.666666666666667,1,1,0,0,0,12,2,1,742,142092.7073480266,36024.66187828612,280882.6500686402,41860.71494413844,800.3506446019474 -14271,17613,32130,-9,32129,32128,1,1,40,0,0,0,1,1,-9,0,2,8.184961821265745,8.064338314045758,0,0,0,-999.6719096851178,0,3,3,2019,33,12,50,50,1,12,1,8.062668464363847,8.062668464363847,0,0,0,.2510014259880666,2,1,1,0,0,0,27.8,37.35,-9,-9,3.333333333333333,1,1,0,0,10,12,4,1,633,216704.5592712629,196516.275149053,168507.6203649646,0,2309.728314788684 -14271,17614,32131,-9,32129,32128,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-962.367102493772,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,12,1,1,359,12757.86517053283,0,0,0,1295.17096881571 -14271,17615,32132,-9,32129,32128,1,0,23,0,0,0,1,1,1,0,3,6.215284912736768,6.412815054214145,0,0,0,-1068.766993481037,-9,3,2,2019,10,0,20,0,1,0,1,2.924494583118258,2.924494583118258,0,0,0,0,2,1,1,0,0,0,40.9,56.09,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,1778,161165.4209684008,0,0,0,1215.86942216652 -14272,17616,32133,32134,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,6.459061389792699,6.467564821221702,0,15,0,4.437553863241955,0,1,1,2019,8,0,27,14,1,0,0,2.971462069286963,2.971462069286963,0,0,0,0,0,1,1,0,0,0,50.82,52.43,43.6,51.61,8.333333333333334,1,1,0,0,12,6,4,1,986.25,551944.5960584068,281237.3834705151,335394.7304852034,168944.8907974125,4386.762241045841 -14272,17616,32134,32133,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.296957744750937,9.056521724618921,7.840797734980005,14,0,-17.36920999062971,0,2,2,2019,11,1,52,80,1,1,0,10.3451288972597,10.3451288972597,0,0,0,0,0,1,1,0,6.602136481288067,8.544573982966114,43.6,51.61,50.82,52.43,3.333333333333333,1,1,0,0,12,6,4,1,986.25,551944.5960584068,281237.3834705151,335394.7304852034,168944.8907974125,4386.762241045841 -14272,17616,32135,-9,32133,32134,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.5031057126316,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,986.25,551944.5960584068,281237.3834705151,335394.7304852034,168944.8907974125,4386.762241045841 -14272,17616,32136,-9,32133,32134,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.492143170622,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,986.25,551944.5960584068,281237.3834705151,335394.7304852034,168944.8907974125,4386.762241045841 -14273,17617,32137,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.9598978605914,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,4.467037269542879,0,25.05916184540358,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,0,466,0,0,0,0,1037.567499867165 -14274,17618,32138,32139,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.499446432514944,8.067238666993685,0,4,0,62.69737123598311,0,-9,-9,2019,15,6,45,40,1,6,0,12.39354890621354,12.39354890621354,0,0,0,0,0,0,0,0,3.898517969033272,0,46.9,56.66,48.77,60.16,8.333333333333334,1,1,0,0,9,2,5,1,1152,497682.8683600085,48076.78511233222,480735.4728703798,246702.0724116491,4336.792531414874 -14274,17618,32139,32138,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.231112189798319,8.856051733446289,0,4,0,-6.00562343359643,-9,-9,-9,2019,10,1,60,0,1,1,0,15.6503754350162,15.6503754350162,0,0,0,0,0,0,0,0,3.519634360241785,0,48.77,60.16,46.9,56.66,8.333333333333334,1,1,0,0,9,2,5,1,1152,497682.8683600085,48076.78511233222,480735.4728703798,246702.0724116491,4336.792531414874 -14275,17619,32140,32141,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.897699163176991,9.27273792420644,0,25,8,89.8516457009909,0,2,2,2019,12,0,37,37,1,0,0,22.67005183496267,22.67005183496267,0,0,0,0,0,0,0,0,7.157159176673243,0,44.02,60.7,56.18,53.85,8.333333333333334,1,1,0,0,9,9,5,1,582.5,2592919.603541283,1771971.864202804,509637.4360595291,0,4079.83798932743 -14275,17619,32141,32140,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.232090750337886,8.235919663246667,0,6,-8,25.56816548188188,0,3,2,2019,8,0,37,52,1,0,0,11.86320437967096,11.86320437967096,0,0,0,0,0,0,0,0,0,0,56.18,53.85,44.02,60.7,8.333333333333334,3,4,0,0,9,9,5,1,582.5,2592919.603541283,1771971.864202804,509637.4360595291,0,4079.83798932743 -14275,17620,32142,-9,32141,32140,1,1,21,0,0,0,1,1,1,0,4,8.190370048786743,8.206146316582126,0,0,0,-962.1954334686675,-9,1,1,2019,13,3,38,0,1,3,1,10.88527892636401,10.88527892636401,0,0,0,0,0,0,0,0,0,0,45.01,57.46,-9,-9,8.333333333333334,4,2,0,0,1,9,4,1,1377,55752.08541623246,57992.95852677651,0,0,1469.669462569249 -14275,17621,32143,-9,32141,32140,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-971.0061469445012,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.972101409491111,0,45.29,56.12,-9,-9,8.333333333333334,4,2,0,0,2,9,1,1,1143,74205.59570992734,0,0,0,-24.99259942124381 -14276,17622,32144,32145,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.286144640437807,4.747053754842318,27,1,-115.0893227224855,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.755133463854373,4.856532306510959,54.77,42.67,37.32,62.1,8.333333333333334,1,1,0,0,0,10,2,1,215,360833.8427737381,321650.5951387745,169289.3001332635,0,2036.167434533485 -14276,17622,32145,32144,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,6.562489704629119,6.533010505116014,27,-1,-29.52319535125944,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,6.94615353428678,6.670001652831958,37.32,62.1,54.77,42.67,10,1,1,0,0,5,10,2,1,215,360833.8427737381,321650.5951387745,169289.3001332635,0,2036.167434533485 -14277,17623,32146,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,4.150662834806104,4.02290727355059,0,0,-1008.953692829643,0,-9,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.157235122469393,4.250510289191845,36.13,22.87,-9,-9,1.666666666666667,1,1,1,1,8,2,2,0,170,264209.175302577,0,66854.55329089917,0,614.1814757959374 -14277,17624,32147,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.388205566262292,6.217420539779599,0,0,-1075.847624922093,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,6.253990350049468,35.39,40.97,-9,-9,5,1,1,0,1,0,2,2,0,2716,190108.1762891118,86514.05573000955,0,0,703.4085631452718 -14278,17625,32148,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.528065645229782,9.629759590064959,0,0,0,-1001.55130699177,0,2,2,2019,17,5,40,41,1,5,0,29.65856087310683,29.65856087310683,0,0,0,0,0,1,1,0,0,0,39.4,57.46,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,561,299016.3415173863,238161.053035599,237555.4812138099,144840.8018401183,3244.855359461772 -14279,17626,32149,32150,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,3.951260449198437,4.189913256268848,44,-2,-109.9569465323281,0,3,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,2.281832916276588,3.958807393431055,29.53,19.07,55.71,46,1.666666666666667,4,2,0,1,7,9,3,1,483,1488640.297911962,839369.3293632076,704113.0120568774,0,2275.985691663664 -14279,17626,32150,32149,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.982336565377505,7.923575731446233,44,2,9.035096492627025,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.054318023333086,8.048060236003192,55.71,46,29.53,19.07,5,1,1,0,0,11,9,3,1,483,1488640.297911962,839369.3293632076,704113.0120568774,0,2275.985691663664 -14280,17627,32151,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.481877330279934,6.31422439606031,0,0,-896.3921517783631,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.986213952806768,6.538780245292388,44.34,49.64,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1159,244175.7378389191,258076.1081925463,111396.6566082966,48525.89875680472,417.2157815647023 -14281,17628,32152,32153,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.005440824510309,6.736373348146684,58,-5,-29.8733876243103,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.786102891764478,52,45,59.04,54.12,8,1,1,0,0,0,13,5,1,322,0,0,0,0,5898.766498725081 -14281,17628,32153,32152,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,8.820540930659568,8.867956302099788,58,5,82.15106583063657,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.624299428031307,8.85923727400437,59.04,54.12,52,45,8.333333333333334,1,1,0,0,7,13,5,1,322,0,0,0,0,5898.766498725081 -14282,17629,32154,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,5,0,7.494227816934496,8.021176162388555,0,0,-1001.613485630473,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.581157865872944,7.84567566769179,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,878,868644.5848084273,197650.7052256323,644410.6842629083,0,1371.31013148587 -14283,17630,32155,-9,-9,-9,1,0,70,1,1,0,3,3,-9,0,2,0,7.19286592304473,7.678704732524453,0,0,-1019.981721617384,0,2,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.225406419706514,57.74,11.83,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,433,405004.2964335411,166297.3953395516,0,0,1382.163629890659 -14283,17631,32156,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1014.888022035122,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.69,58.35,-9,-9,10,1,1,1,0,0,11,1,1,358.5,0,0,0,0,805.5096208981904 -14283,17631,32157,-9,32156,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.095249084151,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,358.5,0,0,0,0,805.5096208981904 -14284,17632,32158,32159,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,9.105493712180005,9.157733907276407,0,34,0,204.7665893606,0,2,3,2019,6,0,45,50,1,0,0,27.09518178482962,27.09518178482962,0,0,0,0,2,1,1,0,9.035469215045172,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,9,9,5,1,270,2109156.165138253,1368674.05003439,948614.2661905978,233617.8473241808,11042.71408649127 -14284,17632,32159,32158,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,8.844040171072997,8.991027435953704,0,35,9,-9.599476893067257,0,2,2,2019,6,0,20,20,1,0,0,58.6806933298963,58.6806933298963,0,0,0,0,0,1,1,0,0,0,60.02,56.42,54.1,59.11,10,1,1,0,0,9,9,5,1,270,2109156.165138253,1368674.05003439,948614.2661905978,233617.8473241808,11042.71408649127 -14284,17633,32160,32161,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.89908313909738,8.980550366741234,0,1,-1,-.7889853163932128,-9,-9,-9,2019,5,0,50,0,1,0,0,17.25020261499753,17.25020261499753,0,0,0,0,0,1,1,0,0,0,57.07,49.39,47.32,52.7,8.333333333333334,1,1,0,0,1,9,5,1,2405.5,179670.4970106699,-34306.04470329889,256720.3401347733,187826.1571280729,2964.018091751558 -14284,17633,32161,32160,32158,32159,1,1,30,0,0,0,1,1,-9,0,3,7.449086583466891,7.436540403429026,0,1,1,10.98045712795289,0,2,2,2019,12,0,40,69,1,0,0,5.431416279215555,5.431416279215555,0,0,0,0,0,1,1,0,0,0,47.32,52.7,57.07,49.39,8.333333333333334,1,1,0,0,6,9,5,1,2405.5,179670.4970106699,-34306.04470329889,256720.3401347733,187826.1571280729,2964.018091751558 -14285,17634,32162,32163,-9,-9,1,1,37,2,2,0,1,1,-9,0,4,9.833642065255491,9.644845522738365,0,6,0,-112.1775739079054,0,-9,-9,2019,5,0,40,60,1,0,0,37.12114955477219,37.12114955477219,0,0,0,0,0,1,1,0,9.497434874941558,0,55.19,54.26,48,56,0,1,1,0,0,10,10,5,1,432.5,437491.6624715587,372048.8022013183,270697.3779618345,198418.1775160544,12724.54048104397 -14285,17634,32163,32162,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.142036416227343,8.321405421387619,0,6,0,-26.48373107703649,-9,-9,-9,2019,11,0,24,0,1,2,0,17.385601135569,17.385601135569,0,0,0,0,0,1,1,0,8.361915501921374,0,48,56,55.19,54.26,7,4,1,0,0,1,10,5,1,432.5,437491.6624715587,372048.8022013183,270697.3779618345,198418.1775160544,12724.54048104397 -14285,17634,32164,-9,32163,32162,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-898.1486064781877,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,432.5,437491.6624715587,372048.8022013183,270697.3779618345,198418.1775160544,12724.54048104397 -14285,17634,32165,-9,32163,32162,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.190359144492,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,432.5,437491.6624715587,372048.8022013183,270697.3779618345,198418.1775160544,12724.54048104397 -14286,17635,32166,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.572913637524271,8.341410960724717,0,0,0,-1135.895141931604,0,3,3,2019,10,0,38,38,1,0,0,9.886140368610361,9.886140368610361,0,0,0,0,0,1,1,0,1.672407929634596,0,45.81,58.99,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,421.5,557128.1452671904,360153.3557107301,225059.8185288834,60505.23143635862,1484.949040900509 -14286,17635,32167,-9,32166,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1085.625231196893,-9,3,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,2,4,1,421.5,557128.1452671904,360153.3557107301,225059.8185288834,60505.23143635862,1484.949040900509 -14286,17636,32168,-9,32166,-9,1,0,21,0,0,0,2,2,-9,0,3,6.926058163721322,6.845576310660634,0,0,0,-1098.938184852004,0,3,-9,2019,7,0,25,0,1,0,1,3.639443400508849,3.639443400508849,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,307,0,0,0,0,179.1793606658775 -14287,17637,32169,32170,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.010061104862189,7.75900445485205,0,10,-1,-21.6853791841554,0,-9,-9,2019,7,0,30,0,1,0,0,9.826508798347119,9.826508798347119,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.3,46.58,8.333333333333334,1,1,0,0,9,10,5,1,500.5,857068.8602765977,569063.2969162314,236794.0879711795,0,3201.865044208501 -14287,17637,32170,32169,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.326329476999078,8.706403905903398,0,36,1,-40.17771124882585,0,2,-9,2019,11,0,48,48,1,0,0,10.38239473852112,10.38239473852112,0,0,0,0,0,1,1,0,0,0,60.3,46.58,54.2,57.49,8.333333333333334,1,1,0,0,13,10,5,1,500.5,857068.8602765977,569063.2969162314,236794.0879711795,0,3201.865044208501 -14288,17638,32171,-9,32172,32173,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.948139916103,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,0,1418,-9413.827083582084,-3472.905839715895,111436.9668091209,29182.50529452722,2873.376920538383 -14288,17638,32172,32173,-9,-9,1,0,25,1,3,0,2,2,-9,0,3,7.509578440831835,7.67846278539451,0,2,-1,3.979791623926727,0,-9,-9,2019,12,0,22,0,1,0,0,9.339645227657348,9.339645227657348,0,0,0,0,0,1,1,0,0,0,44,53,43.71,56.91,8.333333333333334,1,1,0,0,1,5,4,0,1418,-9413.827083582084,-3472.905839715895,111436.9668091209,29182.50529452722,2873.376920538383 -14288,17638,32173,32172,-9,-9,1,1,26,1,3,0,2,2,-9,0,3,8.559024787274922,8.584884226966349,0,2,1,27.18128802503093,0,-9,-9,2019,13,3,78,78,1,3,0,7.983912370269528,7.983912370269528,0,0,0,0,0,1,1,0,0,0,43.71,56.91,44,53,8.333333333333334,1,1,0,0,8,5,4,0,1418,-9413.827083582084,-3472.905839715895,111436.9668091209,29182.50529452722,2873.376920538383 -14288,17638,32174,-9,32172,32173,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-843.053617434795,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,1418,-9413.827083582084,-3472.905839715895,111436.9668091209,29182.50529452722,2873.376920538383 -14288,17638,32175,-9,32172,32173,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.788782716493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,1418,-9413.827083582084,-3472.905839715895,111436.9668091209,29182.50529452722,2873.376920538383 -14289,17639,32176,32177,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.827889947126253,6.830513939680763,50,2,-.04800471346579,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.55874970573103,6.866609805081644,48.53,58.91,28.24,43.11,8.333333333333334,1,1,0,0,0,10,2,1,806.5,115547.1876542637,139472.5502250064,0,0,2241.551998601144 -14289,17639,32177,32176,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,6.419689818002471,7.02068419237132,50,-2,-205.4636385231533,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.549165071123924,6.807734991296533,28.24,43.11,48.53,58.91,6.666666666666667,1,1,0,0,0,10,2,1,806.5,115547.1876542637,139472.5502250064,0,0,2241.551998601144 -14290,17640,32178,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1073.188264535908,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.88,12.59,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1473,116756.1516319121,0,0,0,578.1426353666609 -14291,17641,32179,32180,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.373072360278863,8.343984254506557,0,9,-3,102.3565266827916,0,2,3,2019,19,8,35,35,1,8,0,14.71584722225341,14.71584722225341,0,0,0,0,0,0,0,0,8.175395578035163,0,34.23,62.3,35.93,55.1,3.333333333333333,2,3,0,0,9,8,5,1,422,358511.4755459132,38401.50389718307,402624.7875272984,235890.3700067838,4859.615064721076 -14291,17641,32180,32179,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.261810801811825,8.705966794974294,0,9,3,74.49609758415804,0,2,2,2019,12,0,38,38,1,0,0,15.44850482105419,15.44850482105419,0,0,0,0,0,0,0,0,4.405418292415051,0,35.93,55.1,34.23,62.3,6.666666666666667,1,1,0,0,12,8,5,1,422,358511.4755459132,38401.50389718307,402624.7875272984,235890.3700067838,4859.615064721076 -14292,17642,32181,32182,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.997279350858216,9.057354883803674,0,4,9,-86.9164166199194,0,2,2,2019,13,3,82,70,1,3,0,9.176546873924572,9.176546873924572,0,0,0,0,0,0,0,0,0,0,51,56,47,57,8.333333333333334,1,1,0,0,11,12,5,1,787.75,600023.8021068063,180385.0672056471,334702.9460027181,102673.9097500031,3774.63060727065 -14292,17642,32182,32181,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.895409408096984,8.105855440776303,0,4,0,57.96588947649599,0,-9,-9,2019,11,0,25,33,1,2,0,16.02636775023785,16.02636775023785,0,0,0,0,27,0,0,0,0,0,47,57,51,56,7,1,1,0,0,9,12,5,1,787.75,600023.8021068063,180385.0672056471,334702.9460027181,102673.9097500031,3774.63060727065 -14292,17642,32183,-9,32182,32181,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.6512047741711,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,787.75,600023.8021068063,180385.0672056471,334702.9460027181,102673.9097500031,3774.63060727065 -14292,17642,32184,-9,32182,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.50403944397,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,787.75,600023.8021068063,180385.0672056471,334702.9460027181,102673.9097500031,3774.63060727065 -14293,17643,32185,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-973.0722871510452,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.42,35.16,-9,-9,8.333333333333334,4,5,0,0,0,8,1,1,243,-69835.16578341876,0,0,0,86.84241905676561 -14294,17644,32186,32187,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.478157167516581,8.418780991219666,0,6,-8,-7.461829858379537,0,-9,-9,2019,11,0,36,37,1,1,0,16.24867378483677,16.24867378483677,0,0,0,0,0,0,0,0,4.334867826643494,0,49,56,46.06,57.72,7,1,1,0,0,1,12,5,1,462.5,492514.2699555461,194280.7530842612,338812.8325570296,159390.5694134019,4474.37283659909 -14294,17644,32187,32186,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.565518223834227,8.615900051027761,0,6,8,-40.79575319664528,0,3,3,2019,9,0,45,35,1,0,0,16.73136781340874,16.73136781340874,0,0,0,0,0,0,0,0,4.578739078870548,0,46.06,57.72,49,56,8.333333333333334,1,1,0,0,9,12,5,1,462.5,492514.2699555461,194280.7530842612,338812.8325570296,159390.5694134019,4474.37283659909 -14295,17645,32188,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.23829493137449,7.980015614481301,0,0,0,-1003.968721317834,0,3,2,2019,10,1,38,38,1,1,0,12.1648538439958,12.1648538439958,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,8,2,4,1,101,50882.59078045676,75957.65711641121,-6933.548662706198,35969.43872553794,968.1398004730889 -14296,17646,32189,32190,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,4.665015110829684,4.601190883830861,0,9,4,91.54012261777328,0,1,1,2019,8,0,1,1,1,0,0,12.2178707984557,12.2178707984557,0,0,0,0,7,0,0,0,2.522958074780132,0,48.81,59.91,57.06,57.76,10,1,1,0,0,12,12,5,1,937,-65595.74639166436,121647.110028309,161232.5515943212,145713.5141078369,3558.282607794655 -14296,17646,32190,32189,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.518578941581261,8.680906656124915,0,9,-4,142.0675945760576,0,-9,-9,2019,6,0,50,49,1,0,0,22.48788998828659,22.48788998828659,0,0,0,0,2,0,0,0,8.159026459837182,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,11,12,5,1,937,-65595.74639166436,121647.110028309,161232.5515943212,145713.5141078369,3558.282607794655 -14296,17647,32191,-9,32189,32190,1,0,18,0,0,0,2,2,-9,0,5,7.574036061564279,7.45228589337606,0,0,0,-1040.657213914666,0,1,1,2019,14,4,38,0,1,4,1,6.047623493797089,6.047623493797089,0,0,0,0,0,0,0,0,2.262997604519186,0,40.07,64.29000000000001,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,495,20264.99452922418,0,0,0,930.0471079637861 -14297,17648,32192,32193,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,8,12,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.62,44.11,45.8,21.51,5,1,1,0,0,0,10,1,0,1618,1856496.315470946,0,915931.5674844424,0,659.1432195806935 -14297,17648,32193,32192,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,8,-12,0,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,45.8,21.51,45.62,44.11,8.333333333333334,1,1,0,0,0,10,1,0,1618,1856496.315470946,0,915931.5674844424,0,659.1432195806935 -14298,17649,32194,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.182701918994768,7.852990135659285,0,0,0,-1071.310302491498,-9,2,2,2019,11,0,48,0,1,0,0,10.22805700963098,10.22805700963098,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,5,4,4,1,669,169168.6296546207,99695.62077018236,0,0,1472.705829591279 -14299,17650,32195,-9,-9,-9,1,1,56,0,0,0,1,1,-9,1,2,0,6.843838925746184,7.075270692989118,0,0,-1132.431473195678,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,8.183504882394894,0,48.14,36.37,-9,-9,1.666666666666667,3,4,0,1,4,8,2,1,2163,843251.4850548989,820829.8510876873,0,0,1530.344957348342 -14300,17651,32196,32197,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,7.29713310372337,7.279595513820899,0,9,-10,3.299146102771416,0,3,3,2019,8,0,24,24,1,0,0,8.704629770841994,8.704629770841994,0,0,0,0,2,1,1,0,0,0,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,11,5,4,1,1678,503904.2737542161,412860.11702439,0,0,3109.239493661248 -14300,17651,32197,32196,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.614875454677597,8.032686013233064,9,10,72.65444857501352,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.34789504650827,8.08174867841254,60.12,54.8,54.1,59.11,10,1,1,0,0,11,5,4,1,1678,503904.2737542161,412860.11702439,0,0,3109.239493661248 -14301,17652,32198,32199,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.467706556539412,5.761256131209438,3,-7,-94.61214941319317,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.703207577952708,31.28,25.02,36.03,35.07,6.666666666666667,2,3,0,0,0,6,3,1,524.5,533186.8409364298,396203.8302272304,151132.0811623221,0,2352.229811860399 -14301,17652,32199,32198,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.497643597685757,7.421839886258082,3,7,-77.68004128043965,0,3,1,2019,18,9,0,0,4,9,0,0,0,1,0,11.88586379841589,0,0,1,1,0,4.320881182429344,7.493452582422236,36.03,35.07,31.28,25.02,6.666666666666667,2,3,0,0,0,6,3,1,524.5,533186.8409364298,396203.8302272304,151132.0811623221,0,2352.229811860399 -14302,17653,32200,32201,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.205954719901179,8.026904519757483,44,7,22.9959120885873,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.899411155513214,8.123783272128973,36.35,56.16,57.9,51.84,8.333333333333334,1,1,0,0,0,6,5,1,493.5,1985880.539626874,315440.2573980887,366116.8008329697,0,5251.3942856335 -14302,17653,32201,32200,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.390739308305459,7.835096903299535,39,-7,-78.3754055976998,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.437553910798998,8.31164057256075,57.9,51.84,36.35,56.16,8.333333333333334,1,1,0,0,0,6,5,1,493.5,1985880.539626874,315440.2573980887,366116.8008329697,0,5251.3942856335 -14303,17654,32202,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1053.060184247872,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,44.34,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,442,51844.32836512084,11742.55724564318,0,0,450.3624824346822 -14304,17655,32203,32204,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,-18.48628352171609,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,58.2,54.53,10,1,1,0,0,11,12,2,0,592,316499.2101277272,137865.0169540668,171648.8092352442,0,919.450242223391 -14304,17655,32204,32203,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.343294090070735,6.781754399208393,10,2,-70.81396728034804,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.524655080866428,58.2,54.53,57.33,53.46,8.333333333333334,1,1,0,0,3,12,2,0,592,316499.2101277272,137865.0169540668,171648.8092352442,0,919.450242223391 -14305,17656,32205,32206,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.156042236690414,8.410632951199178,0,6,-1,-18.76258070303378,0,2,2,2019,11,0,37,37,1,0,0,11.70967398180784,11.70967398180784,0,0,0,0,0,0,0,0,0,0,55.79,52.62,53.63,40.71,1.666666666666667,1,1,0,0,11,11,4,1,640,886598.6157440781,338585.4096953826,297832.9388762543,0,3583.169955409514 -14305,17656,32206,32205,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,5.924276828311866,5.683390452689366,6,1,-8.023912166228644,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.224320552480451,5.866197297431794,53.63,40.71,55.79,52.62,6.666666666666667,1,1,0,0,10,11,4,1,640,886598.6157440781,338585.4096953826,297832.9388762543,0,3583.169955409514 -14306,17657,32207,-9,32208,32211,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.771526095058,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14306,17657,32208,32211,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,8.753507817422724,8.342053361032365,0,7,0,-6.226646293249895,0,2,3,2019,10,0,47,33,1,0,0,13.96882111774981,13.96882111774981,0,0,0,0,0,1,1,0,1.606702460574628,0,54.2,57.49,51.65,39.74,8.333333333333334,1,1,0,0,7,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14306,17657,32209,-9,32208,32211,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-896.5634351854242,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14306,17657,32210,-9,32208,32211,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-975.6428246356703,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14306,17657,32211,32208,-9,-9,1,1,44,0,4,0,2,2,-9,0,3,8.524315792919294,8.983797165126834,0,7,0,16.642314189827,0,2,3,2019,12,0,46,50,1,0,0,12.18987619773128,12.18987619773128,0,0,0,0,0,1,1,0,3.50074070005256,0,51.65,39.74,54.2,57.49,6.666666666666667,1,1,0,0,7,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14306,17657,32212,-9,32208,32211,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.4554882146788,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,525.8333333333334,519340.4838363244,290471.0369956087,273471.0052417686,38364.06942868949,4066.376200907669 -14307,17658,32213,-9,32214,-9,1,0,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1151.02128686126,0,1,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,2.43,60.26,-9,-9,5,1,1,0,1,1,5,5,1,816.5,1078830.224134495,891453.9571263483,178764.2604637989,0,3738.755792608241 -14307,17658,32214,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,9.040419639170286,9.051556692856012,5.902463130650043,0,0,-1008.155882827368,0,2,2,2019,19,8,53,41,1,8,0,18.51323478893479,18.51323478893479,0,0,0,0,2,1,1,0,7.904777207188167,0,20.97,63.16,-9,-9,1.666666666666667,1,1,0,0,12,5,5,1,816.5,1078830.224134495,891453.9571263483,178764.2604637989,0,3738.755792608241 -14308,17659,32215,32216,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.593073460039435,8.641929992230672,0,7,-2,72.77902220756496,0,-9,-9,2019,11,0,37,40,1,2,0,14.28121605895856,14.28121605895856,0,0,0,0,0,1,1,0,0,0,48,57,57.06,57.76,7,1,1,0,0,1,13,5,1,587.6666666666666,228078.8332023555,109690.6796926905,224285.7594716522,163766.9951687996,4643.929027570101 -14308,17659,32216,32215,-9,-9,1,1,33,0,1,0,1,1,-9,0,5,8.631834512921063,8.855130678708264,0,7,2,-60.79731701969424,0,2,2,2019,9,0,36,40,1,0,0,23.54178850060489,23.54178850060489,0,0,0,0,0,1,1,0,.3011559184894693,0,57.06,57.76,48,57,10,1,1,0,0,8,13,5,1,587.6666666666666,228078.8332023555,109690.6796926905,224285.7594716522,163766.9951687996,4643.929027570101 -14308,17659,32217,-9,32215,32216,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.154867569998,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,587.6666666666666,228078.8332023555,109690.6796926905,224285.7594716522,163766.9951687996,4643.929027570101 -14309,17660,32218,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.571524328518112,7.23831055983788,0,0,0,-1105.088594171139,0,3,3,2019,5,0,30,32,1,0,0,6.284398655612405,6.284398655612405,0,0,0,0,0,0,0,0,.7411611653242711,0,57.16,56.15,-9,-9,10,1,1,0,0,8,11,3,0,708,424687.7462663655,24141.73453526282,258756.0829139685,0,644.5932235690909 -14310,17661,32219,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.003798581610587,8.177485595305404,0,0,0,-861.5513705957345,0,1,1,2019,6,0,35,45,1,0,0,10.62849658936072,10.62849658936072,0,0,0,0,0,0,0,0,1.282819873600249,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,10,8,4,0,208,-184568.2130246533,0,0,0,1140.732673394391 -14311,17662,32220,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.566290544933254,8.557950959694208,4.642209172262824,0,0,-1045.692899221372,0,-9,-9,2019,15,3,45,39,1,3,0,9.54290386825515,9.54290386825515,0,0,0,0,0,0,0,0,0,4.888299908864759,36.95,51.85,-9,-9,1.666666666666667,1,1,0,0,12,4,5,1,355,276883.9619927033,14410.81955983595,82056.54989735657,15009.6443431668,1471.709203422405 -14312,17663,32221,-9,32222,32223,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.935520628503,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1108.333333333333,347439.7356998575,71741.06238238765,329731.2379670441,94443.29438542,6623.453917004775 -14312,17663,32222,32223,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.580790793554636,8.151391900349546,0,7,1,58.68876860804857,0,-9,-9,2019,13,3,40,40,1,3,0,14.44214756877035,14.44214756877035,0,0,0,0,0,1,1,0,6.326264671802067,0,44.02,60.7,54.79,55.86,8.333333333333334,1,1,0,0,5,7,5,1,1108.333333333333,347439.7356998575,71741.06238238765,329731.2379670441,94443.29438542,6623.453917004775 -14312,17663,32223,32222,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.902692210509082,8.627403783835712,0,7,-1,-60.4709435752263,0,2,2,2019,10,1,44,42,1,1,0,14.54170822348527,14.54170822348527,0,0,0,0,0,1,1,0,7.102635903600181,0,54.79,55.86,44.02,60.7,5,1,1,0,0,10,7,5,1,1108.333333333333,347439.7356998575,71741.06238238765,329731.2379670441,94443.29438542,6623.453917004775 -14313,17664,32224,32225,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.846878119637115,8.787910850221106,0,3,8,113.3717023088231,0,-9,-9,2019,10,0,45,40,1,1,0,17.58184224149099,17.58184224149099,0,0,0,0,0,0,0,0,5.859743688957567,0,50,57,47,58,7,2,3,0,0,6,8,5,1,599.5,143444.1938951179,13601.15905439998,0,0,3402.561257095854 -14313,17664,32225,32224,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.513884072918503,7.867787457857622,0,3,-8,76.88691186138726,0,-9,-9,2019,11,0,40,35,1,2,0,5.729176150055616,5.729176150055616,0,0,0,0,0,0,0,0,0,0,47,58,50,57,7,2,3,0,0,1,8,5,1,599.5,143444.1938951179,13601.15905439998,0,0,3402.561257095854 -14314,17665,32226,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,6.964323437548672,6.784952745589228,0,0,-1059.495758427453,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.698712704598555,6.71624930591889,54,43,-9,-9,8,1,1,0,0,0,6,2,0,206,555554.525218964,90394.21577145066,255078.1485834583,0,1150.352808254906 -14315,17666,32227,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,5.454460537467153,5.362564708671782,0,0,-1023.772773068033,0,3,-9,2019,20,5,0,0,4,5,0,0,0,1,0,11.00244938717589,0,0,1,1,0,5.500540962373445,5.555068508370687,52.13,19.86,-9,-9,5,1,1,0,0,0,1,2,0,2663,150004.119897256,31735.50052898216,-26363.64572519122,0,631.5361002452164 -14316,17667,32228,-9,-9,-9,1,0,83,0,1,0,3,3,-9,0,3,0,0,0,0,0,-916.5329317813388,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,64.73,28.09,-9,-9,5,1,1,0,0,0,12,1,0,169,21662.79163272774,0,0,0,917.7678852947015 -14316,17668,32229,-9,32230,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.1803877830864,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1108,158381.8995298288,0,0,0,752.4483147695407 -14316,17668,32230,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.99110177286927,6.991285950458598,0,0,0,-969.0030854885938,0,2,-9,2019,7,0,16,0,1,0,0,7.187184907593239,7.187184907593239,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1108,158381.8995298288,0,0,0,752.4483147695407 -14317,17669,32231,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.68150277642118,5.543247081145211,0,0,-970.9737851223955,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.199824643030422,6.087201255838464,27.04498850813708,0,1,1,0,3.841115344978825,5.818871327297857,53.31,45.73,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,540,607893.4926229825,124159.0529783536,312381.831257907,0,1058.968177721728 -14318,17670,32232,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.879729902840864,8.989758135012691,0,0,0,-952.6460339715391,0,-9,-9,2019,12,0,38,38,1,0,0,24.02205675970282,24.02205675970282,0,0,0,0,0,0,0,0,7.12218571100887,0,38.36,51.73,-9,-9,6.666666666666667,1,1,0,0,5,12,5,1,216,172942.9428371867,134980.1056800479,53881.83905464307,77449.93562301142,3474.109881450049 -14319,17671,32233,32234,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.602409239501849,8.749064642825248,0,4,-14,26.03067473351816,0,3,2,2019,9,1,27,20,1,1,0,31.88752919601689,31.88752919601689,0,0,0,0,0,0,0,0,2.312188266571388,0,57.73,54.53,52.06,51.69,8.333333333333334,1,1,0,0,9,8,5,1,1157.5,838525.6828984343,447314.3321511477,308502.0386659022,0,7930.21561194836 -14319,17671,32234,32233,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,9.411549621568598,10.0657290601039,0,4,14,95.96713776953668,0,-9,-9,2019,13,2,59,43,1,2,0,28.24999742298613,28.24999742298613,0,0,0,0,0,0,0,0,8.142248017384215,0,52.06,51.69,57.73,54.53,5,1,1,0,0,7,8,5,1,1157.5,838525.6828984343,447314.3321511477,308502.0386659022,0,7930.21561194836 -14320,17672,32235,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.396007741413277,8.427145103190451,2.490238159584981,0,0,-928.6823523409458,0,3,3,2019,12,2,38,37,1,2,0,12.37502618034395,12.37502618034395,0,0,0,0,0,0,0,0,3.013634286240026,3.006329521514719,45.49,50.81,-9,-9,6.666666666666667,1,1,0,1,10,12,4,1,631,-5002.846933387635,-7850.157539428801,116939.3869476306,27375.46292410645,1827.237656494948 -14320,17673,32236,-9,32235,-9,1,0,18,0,0,0,2,2,-9,0,2,0,6.015441925553872,6.186840928662551,0,0,-973.4483644703275,1,2,-9,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,6.189028501487217,0,48.49,45.47,-9,-9,3.333333333333333,1,1,0,0,2,12,2,1,349,29686.94159578636,0,0,0,641.7956660898403 -14321,17674,32237,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.282746501722036,8.24436265783179,0,0,0,-995.0036798631309,0,-9,3,2019,7,0,39,39,1,0,0,12.56068963802288,12.56068963802288,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,1221,409002.9838661182,358000.0348218681,226353.3707981998,64729.32570210682,1933.784842719389 -14322,17675,32238,32239,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,8.804257571435203,8.714347140748435,0,25,-2,9.129752638898774,0,2,2,2019,10,0,37,37,1,0,0,17.01970445839932,17.01970445839932,0,0,0,0,0,1,1,0,0,0,47.15,31.45,54.2,57.49,6.666666666666667,1,1,0,0,11,9,5,1,389,1099212.395427301,664702.2604067915,374479.6644478458,0,3382.438922244096 -14322,17675,32239,32238,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.900490961696325,8.0526835684794,0,25,2,-2.772508185208701,0,2,1,2019,6,0,40,40,1,0,0,9.475309960771927,9.475309960771927,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.15,31.45,6.666666666666667,1,1,0,0,11,9,5,1,389,1099212.395427301,664702.2604067915,374479.6644478458,0,3382.438922244096 -14322,17676,32240,-9,32238,32239,1,1,19,0,0,0,2,2,-9,0,4,7.923522853862539,7.997824031520553,0,0,0,-1153.989307550611,0,2,2,2019,12,1,43,40,1,1,1,7.962496680175153,7.962496680175153,0,0,0,0,0,1,1,0,1.985820077851816,0,47.68,61.82,-9,-9,5,1,1,0,0,2,9,4,1,575,10844.58594097089,86959.81825189567,0,0,953.4242491376223 -14323,17677,32241,-9,32242,32244,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.355318817852,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,866.75,172963.8211508195,80849.78465382456,301970.8956890492,231692.3962230404,7038.760110672478 -14323,17677,32242,32244,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.205286178618701,9.365256944674689,0,7,-2,3.087003260930415,0,2,1,2019,8,0,42,42,1,0,0,28.98541195181847,28.98541195181847,0,0,0,0,0,1,1,0,3.40202629987478,0,40.95,63.66,41.51,52.78,5,1,1,0,0,8,6,5,1,866.75,172963.8211508195,80849.78465382456,301970.8956890492,231692.3962230404,7038.760110672478 -14323,17677,32243,-9,32242,32244,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.87527683261,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,866.75,172963.8211508195,80849.78465382456,301970.8956890492,231692.3962230404,7038.760110672478 -14323,17677,32244,32242,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,7.61484332463927,7.657719178667436,0,7,2,-34.43975321462947,0,2,2,2019,12,1,30,15,1,1,0,7.837403102059929,7.837403102059929,0,0,0,0,0,1,1,0,8.495621032976652,0,41.51,52.78,40.95,63.66,8.333333333333334,1,1,0,0,6,6,5,1,866.75,172963.8211508195,80849.78465382456,301970.8956890492,231692.3962230404,7038.760110672478 -14324,17678,32245,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.015803882137008,7.294545700711761,0,0,-1053.87550630586,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.897605693762268,63.58,23.62,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,370,282428.3143360831,370259.5918917407,98298.38627352478,0,1449.444918823231 -14325,17679,32246,32247,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.194448524074151,7.12408708444134,45,0,68.47356951457463,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.20747329232943,7.49773028622495,57.16,56.15,24.45,26.89,8.333333333333334,1,1,0,0,6,12,2,1,377,1131074.54000774,505473.63637956,411989.8668384112,0,3329.599418494945 -14325,17679,32247,32246,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,40,9,145.2115016914734,0,2,2,2019,24,9,0,0,4,9,0,0,0,1,0,14.15377644458217,0,74.5,1,1,0,0,0,24.45,26.89,57.16,56.15,3.333333333333333,1,1,0,0,0,12,2,1,377,1131074.54000774,505473.63637956,411989.8668384112,0,3329.599418494945 -14325,17680,32248,-9,32247,32246,1,0,55,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1072.383801766323,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,1,1,0,0,0,12,1,1,455,-113699.1915169991,0,0,0,0 -14325,17681,32249,-9,32247,32246,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,0,0,-993.2417080814832,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,1.503229478767121,0,1,1,0,0,0,51,53,-9,-9,8,1,1,0,0,0,12,1,1,2830,-55101.59214155826,0,0,0,0 -14326,17682,32250,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.943694374598973,8.9918501595647,0,0,0,-906.6712909537355,0,2,2,2019,15,6,45,45,1,6,0,20.92804079353331,20.92804079353331,0,0,0,.7359075267518556,0,0,0,0,0,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1073,875946.0225067259,720467.5464075441,143218.2656114139,0,3036.561102041601 -14327,17683,32251,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.724831237425,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,1,13,1,1,461,351168.36691333,0,199407.3585344103,0,303.6365380017699 -14327,17684,32252,-9,-9,32251,1,0,25,0,0,0,2,2,-9,0,4,7.707670435237602,7.527644628220092,0,0,0,-1061.093432339953,0,2,2,2019,13,1,30,30,1,1,0,7.022623277315446,7.022623277315446,0,0,0,0,0,1,1,0,0,0,46.52,49.9,-9,-9,5,1,1,0,1,8,13,3,1,226,5953.665421182042,160205.7737388776,0,0,461.3663078954902 -14328,17685,32253,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-930.4958902048099,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,0,1,.6272584301255907,0,39.79,57.19,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,248,-114380.420841153,0,0,0,1403.434532445441 -14328,17686,32254,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.050550424890017,4.644142046936298,0,0,-913.5070060502587,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,4.911762948079471,54.39,15.72,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1404,10708.64561867938,0,0,0,1285.847861301986 -14329,17687,32255,-9,32256,32257,1,1,34,0,0,0,2,2,-9,0,4,7.889448949194311,7.9561305922634,0,0,0,-806.2684714097819,-9,2,2,2019,10,0,38,0,1,1,0,8.784695715502011,8.784695715502011,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,3,1,154,239532.8393077559,40932.77639169757,0,0,1016.633304224835 -14329,17688,32256,32257,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,-2,-52.14415495030507,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.58,52.86,60.12,54.8,10,1,1,0,0,2,13,4,1,97.5,1418160.209756027,622626.1063277674,193127.5683863435,0,3259.873039487439 -14329,17688,32257,32256,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,8.72952790278266,8.671078532707611,0,6,2,-31.82033529311974,0,3,3,2019,6,0,37,37,1,0,0,20.20395251916057,20.20395251916057,0,0,0,0,2,1,1,0,0,0,60.12,54.8,41.58,52.86,8.333333333333334,1,1,0,0,7,13,4,1,97.5,1418160.209756027,622626.1063277674,193127.5683863435,0,3259.873039487439 -14330,17689,32258,32259,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,0,0,10,0,68.32660557811533,0,3,2,2019,29,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,26.79,20.5,57.06,57.76,8.333333333333334,1,1,0,0,6,13,4,1,679,900173.4581793388,814086.8844213116,85034.65856165369,31484.48062501341,2585.90990137925 -14330,17689,32259,32258,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.65054893390769,8.888735917826569,0,10,0,-202.3094356438447,0,2,2,2019,10,0,37,38,1,0,0,19.78276291121811,19.78276291121811,0,0,0,0,7,0,0,0,0,0,57.06,57.76,26.79,20.5,8.333333333333334,1,1,0,0,11,13,4,1,679,900173.4581793388,814086.8844213116,85034.65856165369,31484.48062501341,2585.90990137925 -14330,17690,32260,-9,32258,32259,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1054.2942650219,-9,2,1,2019,34,12,0,0,2,12,1,0,0,0,0,0,0,7,0,0,0,0,0,10.28,64.56,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,386,-60885.21056276028,0,0,0,0 -14331,17691,32261,32262,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.589814650803249,7.975808539849541,46,-7,-20.25174854189572,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.606111432301216,7.596467735226064,60.71,37.26,48.53,44.13,10,1,1,0,0,3,8,5,1,1326,2644006.683383496,1095397.946639152,1010070.71562194,0,4613.978905910279 -14331,17691,32262,32261,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.763723072081717,8.62400878361205,46,7,-53.68914799186044,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.487821356950599,48.53,44.13,60.71,37.26,8.333333333333334,1,1,0,0,0,8,5,1,1326,2644006.683383496,1095397.946639152,1010070.71562194,0,4613.978905910279 -14332,17692,32263,32264,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,48,1,43.72878697866742,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,34.9,30.14,63.71,0,1,1,0,0,0,11,2,1,571.5,471980.6620317451,276082.782325278,206924.8222831556,0,795.2163414496392 -14332,17692,32264,32263,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,6.537237767646773,6.766503964600514,0,48,-1,22.98902712119641,0,-9,-9,2019,7,0,15,16,1,0,0,6.393711826560088,6.393711826560088,0,0,0,0,0,1,1,0,0,0,30.14,63.71,51.24,34.9,6.666666666666667,1,1,0,0,13,11,2,1,571.5,471980.6620317451,276082.782325278,206924.8222831556,0,795.2163414496392 -14333,17693,32265,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,7.78598567187084,8.356266437686509,6.882321324389236,0,0,-1031.575843935089,0,2,3,2019,9,0,25,35,1,0,0,11.79093588661315,11.79093588661315,0,0,0,0,0,1,1,0,0,6.954383764396868,39.15,30.9,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,251,16904.45827486508,-18954.07551069664,0,0,2630.733361612747 -14334,17694,32266,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,9.515166703971664,9.465375658598045,0,10,1,-12.5778900879794,0,2,2,2019,18,7,40,42,1,7,0,39.2733701179577,39.2733701179577,0,0,0,0,0,0,0,0,4.283987961395396,0,50.05,39.06,41.72,51.08,8.333333333333334,1,1,0,0,9,8,5,1,2816,313485.0776115753,-124575.1004602083,478741.2821619115,0,3049.178759485664 -14334,17695,32267,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.439795704144601,8.547879490928441,0,10,-1,-179.1939617622333,0,-9,-9,2019,12,2,44,44,1,2,0,14.67897293794159,14.67897293794159,0,0,0,0,0,0,0,0,8.651671768783222,0,41.72,51.08,50.05,39.06,8.333333333333334,2,3,0,0,13,8,5,1,590,-162541.7820591173,0,0,0,3539.020265842694 -14335,17696,32268,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.77370407710091,7.369670712124418,0,0,-868.6314561345896,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.581778551412392,7.725360501910095,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,3299,677411.2938529849,290813.9911840517,225818.3021103461,0,1732.460414657343 -14336,17697,32269,32270,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.866774805369652,7.784243135299501,0,16,0,194.3464722775502,0,3,2,2019,12,0,30,30,1,0,0,9.546094979891826,9.546094979891826,0,0,0,0,0,1,1,0,1.248137392311701,0,46.08,57.2,45.91,59.89,8.333333333333334,2,3,0,0,9,2,4,1,257.5,116199.2619003296,103692.1874072459,0,0,2753.31172133602 -14336,17697,32270,32269,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.143159066782909,8.091988159141103,0,16,0,-24.32647486126536,0,3,2,2019,10,0,58,45,1,0,0,6.204930926678268,6.204930926678268,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,6.666666666666667,2,3,0,0,9,2,4,1,257.5,116199.2619003296,103692.1874072459,0,0,2753.31172133602 -14337,17698,32271,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.041038845212864,8.157832748673904,0,0,0,-998.8999932074064,0,2,2,2019,6,0,38,40,1,0,0,9.773940400097722,9.773940400097722,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1184,755984.2614491459,-79842.49984167976,487619.8050580824,0,2048.378903877554 -14338,17699,32272,-9,32273,32275,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.3295273617574,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,392.75,313958.317681599,210016.2991539561,0,0,3213.520723719956 -14338,17699,32273,32275,-9,-9,1,0,32,2,2,0,2,2,-9,0,4,7.797354423039811,7.630744834578067,0,8,-1,-6.395714593309159,0,2,3,2019,8,0,23,23,1,0,0,12.51939671287271,12.51939671287271,0,0,0,0,2,1,1,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,11,13,4,1,392.75,313958.317681599,210016.2991539561,0,0,3213.520723719956 -14338,17699,32274,-9,32273,32275,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-892.6447737236641,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,392.75,313958.317681599,210016.2991539561,0,0,3213.520723719956 -14338,17699,32275,32273,-9,-9,1,1,33,2,2,0,2,2,-9,0,5,8.002857434287625,7.969220154359445,0,8,1,-63.93298525701865,0,-9,-9,2019,7,0,45,43,1,0,0,6.283479610362543,6.283479610362543,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,12,13,4,1,392.75,313958.317681599,210016.2991539561,0,0,3213.520723719956 -14339,17700,32276,-9,-9,-9,1,1,70,0,1,0,1,1,-9,0,4,9.585640932989529,9.526487088008576,6.328788129164266,0,0,-1046.871749536915,0,2,2,2019,7,0,20,10,1,0,0,87.75575614583525,87.75575614583525,0,0,0,0,0,1,1,0,6.720757384432209,6.508917302929778,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,783.5,1843698.95843097,1285495.251637227,218969.6665342917,0,5552.541249966336 -14339,17700,32277,-9,-9,32276,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.718094096532,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,783.5,1843698.95843097,1285495.251637227,218969.6665342917,0,5552.541249966336 -14340,17701,32278,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.000857903825992,9.027479545536199,0,0,0,-945.9156568823469,0,1,3,2019,6,0,38,40,1,0,0,19.10026332337618,19.10026332337618,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,7,2,5,1,339,-99470.66365914358,0,0,0,2421.437265083645 -14341,17702,32279,-9,32283,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-976.7876136533573,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,604.4,-38861.16846744427,0,0,0,817.1075249819982 -14341,17702,32280,-9,32283,-9,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-889.8444578707273,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,604.4,-38861.16846744427,0,0,0,817.1075249819982 -14341,17702,32281,-9,32283,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.724889987096,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,604.4,-38861.16846744427,0,0,0,817.1075249819982 -14341,17702,32282,-9,32283,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1054.709706915037,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,.4765787938732338,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,1,0,604.4,-38861.16846744427,0,0,0,817.1075249819982 -14341,17702,32283,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1059.301809136863,-9,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,5,1,1,1,0,5,12,1,0,604.4,-38861.16846744427,0,0,0,817.1075249819982 -14342,17703,32284,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.046557083690361,7.868553148821515,0,0,0,-821.6111811328349,0,3,3,2019,7,0,38,0,1,0,0,8.048347016151803,8.048347016151803,0,0,0,0,0,1,1,0,0,0,47.29,55.39,-9,-9,8.333333333333334,2,3,0,0,1,6,3,1,3038,216016.5102976722,13418.47557935441,135395.090933646,99317.09953697678,1577.217431433594 -14343,17704,32285,32286,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.342025593183235,7.206139534795362,0,39,-2,-17.26591510529227,0,3,3,2019,11,2,22,21,1,2,0,7.158785997500427,7.158785997500427,0,0,0,0,0,0,0,0,5.496864465017512,0,57.33,53.46,56.43,49.75,10,1,1,0,0,8,8,2,1,530.5,437838.3917812918,204358.1519503742,155700.8750601308,0,923.2249607657245 -14343,17704,32286,32285,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,39,2,80.131575106555,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.559301371754707,0,56.43,49.75,57.33,53.46,10,1,1,1,0,7,8,2,1,530.5,437838.3917812918,204358.1519503742,155700.8750601308,0,923.2249607657245 -14344,17705,32287,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,2,0,5.048452589888874,5.048800853089933,0,0,-862.6735331075242,0,2,2,2019,16,4,0,16,3,4,0,0,0,0,0,0,0,0,1,1,0,5.583797900510411,0,31.73,48.25,-9,-9,5,1,1,1,0,8,4,2,0,193,-105306.8191130265,0,0,0,1554.707522598648 -14345,17706,32288,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.096679627123926,8.012959269907963,0,0,0,-964.6554234310213,0,2,2,2019,10,0,35,39,1,0,0,10.00222471088236,10.00222471088236,0,0,0,0,0,0,0,0,0,0,52.4,55.58,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,164,865938.0355100961,453739.1105567096,485750.1637069998,33696.44437439271,1943.381890661083 -14346,17707,32289,32290,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.936179593367938,7.894563442644632,0,7,1,-13.89955094639522,0,-9,-9,2019,7,0,25,30,1,0,0,10.90826552954917,10.90826552954917,0,0,0,0,0,0,0,0,4.150658848169823,0,58.4,51.64,41.64,54.12,10,1,1,0,0,9,10,4,1,759.5,-2283.439783866881,-59781.83720931063,163642.9231169872,141856.6527885851,2423.270839620917 -14346,17707,32290,32289,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.857669604707927,7.65194407014365,0,7,-1,-41.95602124389178,0,2,2,2019,12,2,32,45,1,2,0,11.67853513834496,11.67853513834496,0,0,0,0,0,0,0,0,3.417274975824649,0,41.64,54.12,58.4,51.64,8.333333333333334,1,1,0,0,9,10,4,1,759.5,-2283.439783866881,-59781.83720931063,163642.9231169872,141856.6527885851,2423.270839620917 -14347,17708,32291,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1164.442573129247,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,2.125535743615482,0,21.47055179169148,0,1,1,0,2.629228288363148,0,60.31,19.78,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,170,-21207.5085058987,0,74717.5051249511,0,933.560018521651 -14348,17709,32292,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,7.868607105942354,7.858187386210501,0,0,-1029.284036051681,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.253428944824396,7.633088782196683,54.72,43.7,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,431,526072.4066804815,110930.4997145669,332874.8574116256,0,1566.303009370932 -14349,17710,32293,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.069337273996812,7.868224105274023,0,0,0,-961.0160570662858,0,3,3,2019,11,0,38,38,1,0,0,10.72979238033938,10.72979238033938,0,0,0,0,0,0,0,0,0,0,52.95,43.28,-9,-9,5,1,1,0,0,11,4,4,1,189,40112.3606930641,127480.0104270286,110835.6030277643,101577.329206392,1723.948717760079 -14349,17711,32294,-9,-9,32293,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-965.0294110677457,-9,-9,3,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,374,22256.92589652423,0,0,0,595.1587530934464 -14350,17712,32295,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.923461912937968,8.153749869547919,0,1,-10,-94.75664761951157,0,2,3,2019,30,12,39,38,1,12,0,8.485745751099527,8.485745751099527,0,0,0,0,2,1,1,0,0,0,16.21,57.37,52.64,25.98,3.333333333333333,1,1,0,0,8,7,3,0,415,626372.1648174505,67110.1322526134,453858.4270560381,0,963.413015893939 -14350,17713,32296,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,3.722576008579745,3.73189666541318,1,10,44.33498343068642,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,3.781715928306245,52.64,25.98,16.21,57.37,6.666666666666667,1,1,0,0,0,7,3,0,3031,8130.911751494039,-5008.350609616273,0,0,652.3966673742126 -14351,17714,32297,32298,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.2222203184014,7.455456464379184,55,8,53.46794986345493,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.803654000941127,7.105320016984978,60.45,43.75,57.16,56.15,6.666666666666667,1,1,0,0,0,10,2,1,357,682161.2621228572,60203.05623323903,359215.5670130578,0,2235.347136743409 -14351,17714,32298,32297,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,.6756894128983459,.6921792472164122,55,-8,5.684201148326064,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,3.454746503520221,.8092337380971781,57.16,56.15,60.45,43.75,10,1,1,0,0,0,10,2,1,357,682161.2621228572,60203.05623323903,359215.5670130578,0,2235.347136743409 -14352,17715,32299,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.388718677900009,7.49854397954273,0,0,-864.093045718904,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.024386730235338,7.521542531417071,57,32.35,-9,-9,6.666666666666667,3,4,0,0,0,8,3,1,688,327904.1326495373,138521.381646724,179922.7233448473,0,2030.495852771494 -14353,17716,32300,32301,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.316999593609714,7.862763783684148,48,-3,-101.9084448764595,0,2,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,.694896954330418,7.247775722436614,46,37,61.28,48.88,8.333333333333334,1,1,0,0,0,12,4,1,850.5,1150951.32123276,695463.2048012988,213965.1553108235,0,4000.383892572794 -14353,17716,32301,32300,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.316691217352243,8.237199976041003,48,3,-150.1181997393556,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.020626548705168,8.209781948786862,61.28,48.88,46,37,8.333333333333334,1,1,0,0,0,12,4,1,850.5,1150951.32123276,695463.2048012988,213965.1553108235,0,4000.383892572794 -14354,17717,32302,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.840035635673013,8.803311468007534,0,0,0,-1075.153930830356,0,2,3,2019,19,6,47,47,1,6,0,12.54070839127724,12.54070839127724,0,0,0,0,0,0,0,0,0,0,44.21,60.79,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,4733,298291.8759224764,234934.4242927756,247599.1717344021,52457.92034784603,2365.097814235237 -14355,17718,32303,32304,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,0,0,0,1,-5,0,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,33.5,56.18,10,1,1,1,0,0,2,1,0,344.5,65490.82597975114,0,0,0,683.1031647946478 -14355,17718,32304,32303,32305,-9,1,0,28,0,0,0,3,3,-9,0,3,0,0,0,1,5,0,-9,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.5,56.18,62.39,56.71,6.666666666666667,1,1,1,0,0,2,1,0,344.5,65490.82597975114,0,0,0,683.1031647946478 -14355,17719,32305,32306,-9,-9,1,0,50,0,0,0,3,3,-9,0,1,0,0,0,1,-4,0,0,-9,-9,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,5.708513875837155,0,41.95,45.9,34.81,44.78,0,1,1,1,0,0,2,1,0,442,126438.7793513496,69339.56717867186,28710.94845748597,45368.52409485588,1199.157610988189 -14355,17719,32306,32305,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,1,4,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.81,44.78,41.95,45.9,3.333333333333333,1,1,0,1,0,2,1,0,442,126438.7793513496,69339.56717867186,28710.94845748597,45368.52409485588,1199.157610988189 -14355,17720,32307,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1123.540093846931,-9,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,19.75,46.88,-9,-9,0,1,1,1,1,0,2,1,0,1251,48974.48383229204,0,0,0,415.1800501343675 -14356,17721,32308,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-888.9516109042429,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1.66895787577176,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,752,0,0,0,0,451.7384735425206 -14357,17722,32309,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,5,7.845977911452,7.465481019075931,0,0,0,-912.0482138071069,0,1,1,2019,8,0,35,0,1,0,0,6.036574011751809,6.036574011751809,0,0,0,0,0,1,0,1,0,0,44.56,59.44,-9,-9,10,1,1,0,1,9,10,3,0,476,118186.5675861428,0,0,0,1632.129097553483 -14357,17723,32310,-9,32309,-9,1,1,22,0,0,0,1,1,1,0,3,0,5.256146214104984,5.192996993599974,0,0,-1077.743221372339,-9,1,1,2019,16,5,0,0,3,5,1,0,0,0,0,0,0,0,1,0,1,5.552793037639541,0,44.72,57.73,-9,-9,1.666666666666667,1,1,1,0,0,10,2,0,750,223163.946135429,-1852.623645434272,91031.05378062726,0,831.8597726466321 -14358,17724,32311,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.558250423158915,6.607230375519328,0,0,-1018.521098836033,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.707500425063033,6.880181681254424,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,1524,473212.8912124619,56586.78243671309,285564.7074895411,0,595.1186005661293 -14359,17725,32312,-9,32315,32316,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.572404390286,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,631.2,600133.1936860012,406070.6183508461,306764.2641692966,92689.79821236742,3804.170598575756 -14359,17725,32313,-9,32315,32316,1,0,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-959.126390339606,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,631.2,600133.1936860012,406070.6183508461,306764.2641692966,92689.79821236742,3804.170598575756 -14359,17725,32314,-9,32315,32316,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.834770387477,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,631.2,600133.1936860012,406070.6183508461,306764.2641692966,92689.79821236742,3804.170598575756 -14359,17725,32315,32316,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,0,0,0,10,-2,80.87065921829877,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.15,52.91,6.666666666666667,1,1,0,0,7,11,5,1,631.2,600133.1936860012,406070.6183508461,306764.2641692966,92689.79821236742,3804.170598575756 -14359,17725,32316,32315,-9,-9,1,1,40,2,3,0,1,1,-9,0,4,9.685695125733192,9.885581152121144,0,10,2,-66.91084972824352,0,-9,-9,2019,8,0,50,50,1,0,0,35.59809737575885,35.59809737575885,0,0,0,0,0,0,0,0,0,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,11,5,1,631.2,600133.1936860012,406070.6183508461,306764.2641692966,92689.79821236742,3804.170598575756 -14360,17726,32317,-9,32321,32318,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.7673254342978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,694,104114.7229869992,25916.06577189694,217391.2364756186,107927.2769991717,3076.672695417544 -14360,17726,32318,32321,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,9.027938694904691,8.403524507506592,0,5,3,-14.71127509741256,0,-9,-9,2019,10,0,55,30,1,1,0,15.25264003982849,15.25264003982849,0,0,0,0,0,1,1,0,0,0,51,57,51.05,52.04,7,1,1,0,0,1,9,3,0,694,104114.7229869992,25916.06577189694,217391.2364756186,107927.2769991717,3076.672695417544 -14360,17726,32319,-9,32321,32318,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.938441039849,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,694,104114.7229869992,25916.06577189694,217391.2364756186,107927.2769991717,3076.672695417544 -14360,17726,32320,-9,32321,32318,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.8030845677637,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,694,104114.7229869992,25916.06577189694,217391.2364756186,107927.2769991717,3076.672695417544 -14360,17726,32321,32318,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,0,0,0,5,-3,37.69549021705419,0,2,3,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.05,52.04,51,57,5,1,1,0,1,0,9,3,0,694,104114.7229869992,25916.06577189694,217391.2364756186,107927.2769991717,3076.672695417544 -14361,17727,32322,32323,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.996709560830188,8.738137010091839,6.716506811702422,10,3,-70.04164573915297,-9,-9,-9,2019,10,0,32,0,1,1,0,12.7013773712922,12.7013773712922,0,0,0,0,0,1,1,0,.8486149119014991,6.732422634050318,51,48,39.89,41.72,7,1,1,0,0,1,4,4,1,4370,185175.316486246,85884.51629371999,0,0,2642.586044894672 -14361,17727,32323,32322,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,6.454539599505033,6.293441414099463,0,43,-3,18.20329503863544,0,2,2,2019,23,10,5,10,1,10,0,10.14028703104864,10.14028703104864,0,0,0,0,0,1,1,0,0,0,39.89,41.72,51,48,6.666666666666667,1,1,0,0,12,4,4,1,4370,185175.316486246,85884.51629371999,0,0,2642.586044894672 -14361,17728,32324,-9,32323,32322,1,1,38,0,0,0,2,2,-9,0,4,7.915594824705374,7.840168675219618,0,0,0,-970.7287817675674,-9,2,3,2019,10,0,50,0,1,1,0,5.930336985712547,5.930336985712547,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,885,313815.5129398271,51853.30195072472,133602.2973341127,42007.66377678452,1710.875372374659 -14362,17729,32325,32326,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.772843264206781,8.665389129067869,32,3,173.7433405688458,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,12.96186772692216,0,0,1,1,0,0,8.449960315165294,52.62,54.33,64.15000000000001,32.53,10,1,1,0,0,0,5,4,1,2073,1593933.648899439,1069900.895400032,227655.1250385325,0,3676.334241890035 -14362,17729,32326,32325,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.03434997297314,6.583899936280178,15,-3,26.6774053250371,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.431370610070593,64.15000000000001,32.53,52.62,54.33,10,1,1,0,0,0,5,4,1,2073,1593933.648899439,1069900.895400032,227655.1250385325,0,3676.334241890035 -14363,17730,32327,-9,32330,32328,1,1,27,0,0,0,2,2,-9,0,4,8.286313336055979,8.193289159681553,0,0,0,-1120.491871893397,0,2,2,2019,11,0,40,41,1,0,1,11.58022241930514,11.58022241930514,0,0,0,0,0,1,1,0,0,0,44.72,56.46,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,555,215158.7762266271,0,0,0,2062.361393848763 -14363,17731,32328,32330,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.729163739696617,8.616199450778414,0,5,0,-162.5379517248434,0,3,2,2019,8,0,45,45,1,0,0,17.24565130370183,17.24565130370183,0,0,0,0,0,1,1,0,0,0,54.97,47.63,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,518.6666666666666,166599.733205173,31430.2525665963,128628.9768524788,52128.28305934494,3038.44825198497 -14363,17731,32329,-9,32330,32328,1,1,17,0,0,1,3,0,0,0,3,0,0,0,0,0,-985.6818663676826,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.47,56,-9,-9,5,1,1,0,0,12,10,5,1,518.6666666666666,166599.733205173,31430.2525665963,128628.9768524788,52128.28305934494,3038.44825198497 -14363,17731,32330,32328,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.586320599908431,7.885371817262366,0,5,0,27.03390963803168,0,3,3,2019,10,0,30,28,1,0,0,7.893942551040416,7.893942551040416,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.97,47.63,8.333333333333334,1,1,0,0,11,10,5,1,518.6666666666666,166599.733205173,31430.2525665963,128628.9768524788,52128.28305934494,3038.44825198497 -14364,17732,32331,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.530286877548418,7.388454495388027,0,0,0,-1014.808321965362,0,3,3,2019,11,1,28,27,1,1,0,7.83346957796492,7.83346957796492,0,0,0,0,0,1,1,0,0,0,50.53,50.08,-9,-9,6.666666666666667,3,4,0,0,6,2,3,0,940,-43686.60867419327,87696.60378140614,0,0,1083.724459443035 -14364,17733,32332,-9,32331,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-998.0177412230773,-9,3,-9,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,50.41,48.86,-9,-9,8.333333333333334,3,4,0,0,2,2,1,0,825,139790.6252943085,0,0,0,-216.2952670938132 -14365,17734,32333,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.673404789711602,7.550639021837307,0,0,0,-981.0157951110738,0,3,2,2019,7,0,50,50,1,0,0,5.15933315262415,5.15933315262415,0,0,0,0,0,0,0,0,3.414942458821757,0,57.33,53.46,-9,-9,10,1,1,0,0,13,6,3,1,922,-17162.25065189952,141042.2536930814,0,0,1350.995796106487 -14366,17735,32334,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.628697803374251,7.766553115068144,0,0,0,-1007.931467713205,0,3,2,2019,8,0,21,21,1,0,0,14.00886471710357,14.00886471710357,0,0,0,0,0,1,1,0,0,0,42.46,49.11,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,523,-19116.48845067652,12175.28310471232,88836.15120489166,0,828.6912249313689 -14367,17736,32335,-9,32337,32336,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.507160375387,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2240.666666666667,412531.9062626173,278484.3680647567,442010.3881825796,349671.9250737801,5354.528399111715 -14367,17736,32336,32337,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,8.959832687743887,9.283733876164543,0,3,8,-30.88096130976089,0,-9,-9,2019,11,0,45,40,1,0,0,24.73054463332817,24.73054463332817,0,0,0,0,0,1,1,0,0,0,41.76,59.08,46.29,54.22,8.333333333333334,1,1,0,0,3,5,5,1,2240.666666666667,412531.9062626173,278484.3680647567,442010.3881825796,349671.9250737801,5354.528399111715 -14367,17736,32337,32336,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.33791060648092,8.493655447237483,0,3,-8,-83.01025150644274,0,2,2,2019,13,2,60,46,1,2,0,7.802303004267116,7.802303004267116,0,0,0,0,0,1,1,0,0,0,46.29,54.22,41.76,59.08,8.333333333333334,1,1,0,1,11,5,5,1,2240.666666666667,412531.9062626173,278484.3680647567,442010.3881825796,349671.9250737801,5354.528399111715 -14368,17737,32338,32339,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,59,-1,-150.914544414258,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.46,33.39,38.24,25.76,10,1,1,0,0,0,13,2,1,595,413776.8287787628,266707.4583867999,183708.371784042,0,2001.767034963277 -14368,17737,32339,32338,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.046692954714309,4.840086033243034,59,1,-90.61605871858907,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,5.085675167834729,38.24,25.76,51.46,33.39,6.666666666666667,1,1,0,0,0,13,2,1,595,413776.8287787628,266707.4583867999,183708.371784042,0,2001.767034963277 -14369,17738,32340,-9,32341,32342,1,1,16,0,1,0,3,3,-9,1,3,0,0,0,0,0,-892.9794327778541,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,3.333333333333333,1,1,1,0,0,10,5,1,357.3333333333333,6953029.381354359,5499988.241246454,783512.9435958333,0,6265.495926131157 -14369,17738,32341,32342,-9,-9,1,0,47,0,1,0,1,1,-9,1,3,8.457843894259859,8.356680034051308,0,19,-5,65.8910721503141,0,3,3,2019,13,1,45,60,1,1,0,10.09952628898661,10.09952628898661,0,0,0,0,0,1,1,0,1.35016507188734,0,31.23,62.65,29.2,40.86,5,1,1,0,0,10,10,5,1,357.3333333333333,6953029.381354359,5499988.241246454,783512.9435958333,0,6265.495926131157 -14369,17738,32342,32341,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.372230127118875,9.327481049537294,0,20,5,-10.57637948531887,0,1,1,2019,28,11,40,39,1,11,0,33.16734463889596,33.16734463889596,0,0,0,0,2,1,1,0,0,0,29.2,40.86,31.23,62.65,3.333333333333333,1,1,0,0,12,10,5,1,357.3333333333333,6953029.381354359,5499988.241246454,783512.9435958333,0,6265.495926131157 -14369,17739,32343,-9,32341,32342,1,1,20,0,1,0,2,2,-9,0,4,7.593826031743354,7.459798018705312,0,0,0,-1002.184500785781,0,1,1,2019,11,0,29,12,1,2,1,6.413189162286171,6.413189162286171,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,5,10,3,1,3570,-144340.2215203083,-34247.22986127528,0,0,128.105960465988 -14370,17740,32344,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1073.964379424423,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.791648030395166,0,62.85,38.46,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,366,105730.1703308262,0,0,0,940.7417521013663 -14371,17741,32345,-9,-9,-9,1,0,38,1,1,0,3,3,-9,0,3,8.332720300062839,7.980989268638099,0,0,0,-1094.793112707804,-9,-9,-9,2019,14,2,36,0,1,2,0,12.93670686349938,12.93670686349938,0,0,0,0,0,1,1,0,0,0,51.08,42.95,-9,-9,6.666666666666667,1,1,0,0,7,12,3,1,780,7389.229567479968,47091.42884393632,0,0,1321.049826150137 -14371,17742,32346,-9,32347,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-990.3233798402518,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,368.5,56095.75514246681,65954.28970241237,99433.50735394543,53113.40798535193,1799.61144923012 -14371,17742,32347,-9,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.669918195648052,8.428779863351101,0,0,0,-968.8775716630843,-9,-9,-9,2019,12,0,37,0,1,2,0,15.32869192559674,15.32869192559674,0,0,0,0,0,1,1,0,0,0,45,52,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,368.5,56095.75514246681,65954.28970241237,99433.50735394543,53113.40798535193,1799.61144923012 -14372,17743,32348,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.842207035284627,9.062231540970263,0,18,-4,-55.10123878582769,0,2,3,2019,16,5,50,58,1,5,0,14.08203129832386,14.08203129832386,0,0,0,0,7,0,0,0,4.232320220743856,0,37.73,52.81,49.32,50.19,5,1,1,0,0,13,4,5,1,249,364024.1721284111,206704.0409187709,197296.411904245,79907.4264513392,1732.146740743002 -14372,17744,32349,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.268082353492733,8.129506587168521,0,18,4,72.69708137409273,0,-9,-9,2019,22,9,44,58,1,9,0,8.547956277716054,8.547956277716054,0,0,0,0,2,0,0,0,2.453008409690733,0,49.32,50.19,37.73,52.81,5,1,1,0,0,11,4,5,1,213,399420.6891134556,411239.6468708757,0,0,1901.655517662052 -14373,17745,32350,32351,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,55,1,-101.4193085196187,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,60.2,39.82,8,1,1,0,0,0,4,2,1,709,2248594.194745875,0,876840.4908075511,0,2373.135376641047 -14373,17745,32351,32350,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.447826917616169,7.742142027365287,55,-1,-20.37047245051057,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.589762086107325,7.534424470410551,60.2,39.82,53,45,8.333333333333334,1,1,0,0,0,4,2,1,709,2248594.194745875,0,876840.4908075511,0,2373.135376641047 -14374,17746,32352,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.94555844749751,8.217391268738632,0,0,-1065.125402388886,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.18241659547214,8.099336058478299,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,575,248927.6948112132,304798.4861842919,0,0,2066.121979081416 -14375,17747,32353,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,1,0,0,0,0,0,-961.5181682738183,0,2,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,21.97,21.3,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,795,7946.614693330168,0,0,0,2481.207513747936 -14375,17748,32354,-9,32353,-9,1,1,19,0,2,1,1,0,0,0,4,0,0,0,0,0,-1067.679474276875,-9,2,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.14,58.86,-9,-9,10,1,1,0,0,0,11,1,0,1717,-8583.408745175844,0,0,0,1553.00801427789 -14376,17749,32355,32356,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.641620116226699,7.83538088939116,7,3,95.40869424749039,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,5.401808566078346,7.883925181891583,57.16,56.15,41.21,16.67,8.333333333333334,1,1,0,0,0,2,3,0,554.5,1031249.466618083,463299.3840373476,496646.850478683,0,3563.928366299781 -14376,17749,32356,32355,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,0,0,7,-3,-29.8558158736183,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,6.299732767391325,0,65.89253301864365,0,1,1,0,.2333080189787123,0,41.21,16.67,57.16,56.15,5,1,1,0,0,0,2,3,0,554.5,1031249.466618083,463299.3840373476,496646.850478683,0,3563.928366299781 -14377,17750,32357,32359,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.544607202553115,8.673516978822484,0,6,2,156.0283083202044,-9,2,2,2019,10,0,45,0,1,1,0,14.28870990290743,14.28870990290743,0,0,0,0,0,1,1,0,0,0,51,56,48.77,60.16,7,1,1,0,0,1,9,4,1,287.75,139527.9665367173,15879.88990598686,287071.7575407308,169271.9554037066,4195.578496943504 -14377,17750,32358,-9,32359,32357,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-877.4685563485812,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,287.75,139527.9665367173,15879.88990598686,287071.7575407308,169271.9554037066,4195.578496943504 -14377,17750,32359,32357,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.377026187545587,8.658794150981421,0,6,-2,57.24620444029837,-9,2,2,2019,12,1,34,0,1,1,0,18.15907205546502,18.15907205546502,0,0,0,0,0,1,1,0,3.180571563464697,0,48.77,60.16,51,56,8.333333333333334,1,1,0,0,8,9,4,1,287.75,139527.9665367173,15879.88990598686,287071.7575407308,169271.9554037066,4195.578496943504 -14377,17750,32360,-9,32359,32357,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.61090424211,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,4,1,287.75,139527.9665367173,15879.88990598686,287071.7575407308,169271.9554037066,4195.578496943504 -14378,17751,32361,32362,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.26389102300387,6.060297927966166,57,2,-27.06824032401381,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.088790610946643,60.29,52.11,63.83,43.62,10,1,1,0,0,0,4,2,1,407,443773.361927221,145705.9146422204,255033.5683597624,0,1654.129217451451 -14378,17751,32362,32361,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.512463765586889,5.662086987269427,57,-2,-18.1248479512702,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.822339513076582,63.83,43.62,60.29,52.11,10,1,1,0,0,0,4,2,1,407,443773.361927221,145705.9146422204,255033.5683597624,0,1654.129217451451 -14379,17752,32363,-9,32364,32365,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.036313557692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,738.3333333333334,115508.3986816165,39366.9590343346,311248.283236778,185297.4286090065,4242.011772060377 -14379,17752,32364,32365,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.660340363055813,7.432292639567668,0,8,-4,-103.642255602594,0,3,2,2019,12,0,19,25,1,0,0,9.734650762667609,9.734650762667609,0,0,0,0,2,1,1,0,0,0,48.06,45.53,51,56,6.666666666666667,1,1,0,0,10,7,4,1,738.3333333333334,115508.3986816165,39366.9590343346,311248.283236778,185297.4286090065,4242.011772060377 -14379,17752,32365,32364,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.62684838602253,8.656119035659252,0,8,4,18.320463513427,0,-9,-9,2019,9,0,40,40,1,1,0,16.50186508923122,16.50186508923122,0,0,0,0,0,1,1,0,5.218326765671657,0,51,56,48.06,45.53,8,1,1,0,0,1,7,4,1,738.3333333333334,115508.3986816165,39366.9590343346,311248.283236778,185297.4286090065,4242.011772060377 -14380,17753,32366,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.159398127199399,7.600006802439595,0,0,-994.5564373256532,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.315173389240473,8.065558935141453,57.16,56.15,-9,-9,10,1,1,0,0,6,13,3,1,972,790631.005711969,307683.9407391048,183081.0123833618,0,2122.113924005178 -14381,17754,32367,32368,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,9,-10,39.47192786105691,0,3,2,2019,20,6,0,0,4,6,0,0,0,1,0,25.10411923243473,0,0,1,1,0,1.416836643524903,0,39.61,30.9,64.28,40.77,5,2,3,0,0,0,8,2,1,1524,218571.5390870099,56416.37263751056,106836.946215339,0,1505.623210979297 -14381,17754,32368,32367,-9,-9,1,1,83,0,0,0,3,3,-9,0,5,0,6.521604515382332,6.544703018650035,9,10,46.89522235764307,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.12533160380207,64.28,40.77,39.61,30.9,8.333333333333334,2,3,0,0,0,8,2,1,1524,218571.5390870099,56416.37263751056,106836.946215339,0,1505.623210979297 -14381,17755,32369,-9,32371,32370,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1063.639826224574,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,1.346178068085595,0,26.38,58.67,-9,-9,6.666666666666667,2,3,0,0,0,8,5,1,422,1181796.805580488,266072.1880207002,497856.9140230697,0,3425.826470305008 -14381,17755,32370,32371,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.536747522209096,8.372262292374442,0,9,7,-46.35446914318759,0,2,2,2019,12,2,58,55,1,2,0,10.66454723950231,10.66454723950231,0,0,0,0,0,1,1,0,4.184188800430976,0,41.4,34.04,45.18,44.04,6.666666666666667,2,3,0,0,10,8,5,1,422,1181796.805580488,266072.1880207002,497856.9140230697,0,3425.826470305008 -14381,17755,32371,32370,32367,32368,1,0,48,0,0,0,2,2,-9,0,3,8.225707825058846,8.539766274790209,0,9,-7,25.8985737581096,0,3,3,2019,13,1,41,40,1,1,0,9.505750104487573,9.505750104487573,0,0,0,0,0,1,1,0,3.42891180084115,0,45.18,44.04,41.4,34.04,6.666666666666667,2,3,0,0,10,8,5,1,422,1181796.805580488,266072.1880207002,497856.9140230697,0,3425.826470305008 -14381,17756,32372,-9,32371,32370,1,1,23,0,0,0,1,1,-9,0,3,8.090321130547379,8.129664332984087,0,0,0,-971.8216187811094,0,2,2,2019,12,0,40,40,1,2,1,9.908774447376013,9.908774447376013,0,0,0,0,0,1,1,0,0,0,37.44,59.97,-9,-9,8.333333333333334,4,2,0,0,4,8,4,1,922,63239.35769101836,26819.15627729461,0,0,2197.573661398503 -14382,17757,32373,-9,32374,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.729966202652,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,1,1,299,-82352.13455981256,0,0,0,1088.780599955341 -14382,17757,32374,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1065.895242791266,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.260217066276083,0,63.38,53.47,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,299,-82352.13455981256,0,0,0,1088.780599955341 -14383,17758,32375,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-968.4752390300033,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.52,47.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,1839,21425.59825522397,0,0,0,1748.517927337863 -14384,17759,32376,32377,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.120241285996948,7.352609467601657,0,41,0,54.1285424841163,0,2,2,2019,7,0,21,21,1,0,0,6.315124222870132,6.315124222870132,0,0,0,0,0,1,1,0,0,0,63,27.76,51.42,48.12,8.333333333333334,1,1,0,1,9,10,3,1,2380,1241064.685737594,220372.5793285591,565339.8195567391,0,1385.455390611442 -14384,17759,32377,32376,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,6.935421413453038,6.782160931246859,0,41,0,-14.08339632781498,0,2,2,2019,9,0,35,41,1,0,0,3.058267796483591,3.058267796483591,0,0,0,0,0,1,1,0,0,0,51.42,48.12,63,27.76,5,1,1,0,1,9,10,3,1,2380,1241064.685737594,220372.5793285591,565339.8195567391,0,1385.455390611442 -14385,17760,32378,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-998.6138011852996,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,31.47,-9,-9,5,1,1,0,1,0,13,1,0,887,11784.50764920608,0,96226.47207541589,0,1014.127799549258 -14386,17761,32379,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.62179277107071,6.53332986652356,0,0,-951.8828779385673,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,8.454246491522021,1.539873157849156,0,0,1,1,0,4.826233608270273,6.364274181917288,38.63,47.21,-9,-9,5,1,1,0,0,0,4,2,0,316,299494.374362215,170574.6399102933,106952.7091441749,0,795.8751066448434 -14387,17762,32380,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.639889334210998,6.852358874101871,0,0,0,-935.4446915274511,0,-9,2,2019,8,0,9,9,1,0,0,19.93819999015258,19.93819999015258,0,0,0,0,0,1,1,0,0,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,7,5,3,0,200,100514.3873401657,0,135930.369626209,143915.0343552864,561.7334720737877 -14388,17763,32381,32382,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,5.650618339398206,5.516484534344446,9,14,-16.59585711429373,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.650692817489064,64.78,32.7,63.41,29.17,10,1,1,0,0,0,4,2,1,704.5,75018.58546409951,10186.8746984131,0,0,1297.21917027148 -14388,17763,32382,32381,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,5.321239882204226,4.579719265778934,9,-14,59.44255657777136,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,8.841553368318801,0,0,1,1,0,0,4.93759986185492,63.41,29.17,64.78,32.7,10,1,1,0,0,0,4,2,1,704.5,75018.58546409951,10186.8746984131,0,0,1297.21917027148 -14389,17764,32383,-9,32385,32384,1,1,32,0,0,0,1,1,-9,0,3,8.801531345119797,9.07987627781308,0,0,0,-925.4332169744683,0,2,1,2019,13,2,40,-9,1,2,0,19.43589962697691,19.43589962697691,0,0,0,0,0,1,1,0,0,0,43.62,50.48,-9,-9,5,2,3,0,0,9,7,5,1,278,245342.3894533161,46198.21917612916,387130.397530122,105523.7918554177,3339.813267700702 -14389,17765,32384,32385,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,9,-5,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.446047326941999,13.2995190424658,67.4550235013358,0,1,1,0,0,0,64.23999999999999,44.83,21.47,39.3,10,2,3,0,0,10,7,1,1,602,920323.818091687,12482.09738321313,791849.718398921,0,839.6071324936844 -14389,17765,32385,32384,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,9,5,0,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.47,39.3,64.23999999999999,44.83,3.333333333333333,2,3,0,1,0,7,1,1,602,920323.818091687,12482.09738321313,791849.718398921,0,839.6071324936844 -14390,17766,32386,32387,-9,-9,1,1,65,0,0,0,3,3,-9,1,3,8.041497366620467,8.079712193078654,0,36,3,53.63539056561651,0,2,3,2019,20,8,37,37,1,8,0,9.000123691457146,9.000123691457146,1,0,6.951535426433128,0,0,1,1,0,0,0,40.64,52.96,47.96,34.69,8.333333333333334,1,1,0,0,10,12,3,1,1376,823673.6570863987,626827.9796213116,196518.3015927486,0,2692.972624267841 -14390,17766,32387,32386,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,36,-3,-12.39468687539639,0,2,3,2019,13,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,7.717859759929029,0,47.96,34.69,40.64,52.96,6.666666666666667,1,1,0,0,10,12,3,1,1376,823673.6570863987,626827.9796213116,196518.3015927486,0,2692.972624267841 -14391,17767,32388,32389,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.764040178098247,7.63268308383595,0,14,3,-72.05435749867283,0,3,3,2019,11,0,40,40,1,0,0,8.138633242114764,8.138633242114764,0,0,0,0,0,0,0,0,0,0,52.65,51.64,57.16,56.15,10,1,1,0,0,10,2,4,1,328,254413.4173022372,80022.76464946565,133116.544121942,4832.839812319857,1798.722009398826 -14391,17767,32389,32388,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.632973360533331,7.731770046534118,0,14,-3,-103.6257912830466,0,3,3,2019,8,0,32,32,1,0,0,6.978706304408342,6.978706304408342,0,0,0,0,0,0,0,0,6.194502214210508,0,57.16,56.15,52.65,51.64,10,1,1,0,0,10,2,4,1,328,254413.4173022372,80022.76464946565,133116.544121942,4832.839812319857,1798.722009398826 -14392,17768,32390,-9,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,8.311843990188299,8.535964657399873,0,0,0,-878.5161646572654,0,-9,-9,2019,14,3,38,70,1,3,0,11.60851516929438,11.60851516929438,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,10,1,1,0,1,7,9,3,0,483,666405.0206559714,338982.1127580326,477333.2945732173,35681.26721704482,1439.923665580326 -14393,17769,32391,32392,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.200563226377344,7.918657301322765,46,4,-36.74640807330431,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.630320889130596,8.237351733889366,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,469.5,1553816.089935089,776647.5819995764,304513.1030388558,0,2868.265766859792 -14393,17769,32392,32391,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,46,-4,14.88098433440173,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.347244097588325,0,57.16,56.15,60.02,56.42,10,1,1,0,0,0,2,3,1,469.5,1553816.089935089,776647.5819995764,304513.1030388558,0,2868.265766859792 -14394,17770,32393,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.573039352509225,8.719253020895362,0,0,0,-953.5131415491442,0,-9,-9,2019,8,0,38,44,1,0,0,16.22289970428662,16.22289970428662,0,0,0,0,2,0,0,0,0,0,55.29,42.09,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,126,661113.2678087414,397256.6168369906,317585.3583312836,0,1730.009172306599 -14394,17771,32394,-9,32393,-9,1,0,25,0,0,0,2,2,-9,0,4,7.702823804109275,7.940156959354133,0,0,0,-1052.239156313284,0,2,-9,2019,12,0,40,45,1,0,1,8.094380539563099,8.094380539563099,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,12,4,0,288,-66461.77080032445,0,0,0,1094.215168940391 -14395,17772,32395,32396,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,9.457615737529901,9.257585071265886,0,10,4,-39.99511868754184,0,-9,-9,2019,10,2,38,43,1,2,0,30.41869782421064,30.41869782421064,0,0,0,0,0,0,0,0,0,0,55.36,48.86,55.19,54.26,8.333333333333334,1,1,0,0,10,12,5,1,980,1193114.476076974,176840.7368925663,631575.2624954899,-273.581014664026,4597.618041886853 -14395,17772,32396,32395,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.01547820347227,7.994807814427042,0,10,-4,60.75590887798715,0,-9,-9,2019,8,0,35,40,1,0,0,9.558900856106387,9.558900856106387,0,0,0,0,0,0,0,0,0,0,55.19,54.26,55.36,48.86,5,1,1,0,0,11,12,5,1,980,1193114.476076974,176840.7368925663,631575.2624954899,-273.581014664026,4597.618041886853 -14396,17773,32397,32398,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.46615869397878,5.302454705375858,38,4,55.32151028218374,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.558141938309232,51.49,49.54,54.96,53.17,8.333333333333334,1,1,0,0,8,10,4,1,525.5,493225.4295683347,111934.6668486466,410709.4783784256,0,2806.767246011915 -14396,17773,32398,32397,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.687464944928911,8.53545484284186,0,41,-4,96.04952189875121,0,3,3,2019,6,0,38,41,1,0,0,13.1127908347962,13.1127908347962,0,0,0,0,0,1,1,0,.4632242496352382,0,54.96,53.17,51.49,49.54,8.333333333333334,1,1,0,0,11,10,4,1,525.5,493225.4295683347,111934.6668486466,410709.4783784256,0,2806.767246011915 -14397,17774,32399,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.356449020814408,8.563528598682579,0,4,6,-113.6236785597359,0,-9,-9,2019,18,6,82,44,1,6,0,8.355750689486289,8.355750689486289,0,0,0,0,0,0,0,0,7.403323805702642,0,35.37,59.06,46.67,55.57,6.666666666666667,1,1,0,0,9,11,5,1,1180,390466.6772621776,358892.2233032248,164481.3272318569,96848.8183950956,3337.660243901757 -14397,17775,32400,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.561862179482139,8.530981412187412,0,4,-6,-21.72055374572653,0,-9,-9,2019,7,0,41,40,1,0,0,15.61852451819727,15.61852451819727,0,0,0,0,0,0,0,0,0,0,46.67,55.57,35.37,59.06,8.333333333333334,1,1,0,0,11,11,5,1,1006,114047.740916072,94302.16592557044,0,0,2115.20340323963 -14398,17776,32401,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.999747495571462,7.93979421801111,0,0,-965.2406560598321,0,3,3,2019,32,11,0,0,4,11,0,0,0,1,0,0,.5249323721004693,0,1,1,0,6.434412343417689,8.065498798552511,18.47,22.91,-9,-9,1.666666666666667,1,1,0,0,0,2,3,0,1121,905814.1945707642,467009.9512979903,145113.5473841394,0,2659.618904024222 -14399,17777,32402,32403,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,6.991529617282971,6.918198721562155,0,10,13,88.47496688393802,0,3,3,2019,17,6,20,25,1,6,0,5.166348520303192,5.166348520303192,0,0,0,0,0,1,1,0,0,0,19.01,22.64,43.31,35.92,5,1,1,0,1,10,6,3,0,785,-2762.365413243431,-15972.67890365524,0,0,1102.10920221986 -14399,17777,32403,32402,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,7.482028576273988,7.605600606647065,0,9,-13,-138.4573564041906,0,3,3,2019,8,0,35,35,1,0,0,5.786141230920284,5.786141230920284,0,0,0,0,14.5,1,1,0,0,0,43.31,35.92,19.01,22.64,8.333333333333334,3,4,0,1,11,6,3,0,785,-2762.365413243431,-15972.67890365524,0,0,1102.10920221986 -14400,17778,32404,32405,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.859978451070827,8.159703735447442,0,7,0,62.17841999082103,-9,-9,-9,2019,9,0,30,0,1,1,0,9.195812925681246,9.195812925681246,0,0,0,0,0,1,1,0,0,0,53,47,50.6,53.68,8,1,1,0,0,1,13,3,1,315.5,541782.1291381175,159478.3719598411,344108.3240885015,0,2187.615234575832 -14400,17778,32405,32404,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,50,0,66.84566646889905,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.248862249416073,0,50.6,53.68,53,47,8.333333333333334,1,1,0,0,0,13,3,1,315.5,541782.1291381175,159478.3719598411,344108.3240885015,0,2187.615234575832 -14401,17779,32406,32408,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.559341107386894,8.792478587639815,0,26,0,115.9941331480994,0,-9,2,2019,12,3,37,37,1,3,0,18.59982245988181,18.59982245988181,0,0,0,0,0,1,1,0,0,0,45.13,54.73,52.62,45.08,3.333333333333333,1,1,0,0,9,4,4,0,781,119646.0193753956,61610.44197176804,118340.372716137,77518.95442609271,3267.833025956008 -14401,17779,32407,-9,32408,32406,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.986967328374,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,781,119646.0193753956,61610.44197176804,118340.372716137,77518.95442609271,3267.833025956008 -14401,17779,32408,32406,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.835619015725052,8.012817735044614,0,26,0,52.77276642855907,0,3,3,2019,14,4,23,23,1,4,0,11.25390187533035,11.25390187533035,0,0,0,0,0,1,1,0,4.637261733808192,0,52.62,45.08,45.13,54.73,8.333333333333334,1,1,0,0,10,4,4,0,781,119646.0193753956,61610.44197176804,118340.372716137,77518.95442609271,3267.833025956008 -14401,17780,32409,-9,32408,32406,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-952.0846608903895,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.19,40.02,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,482,0,0,0,0,-455.0342944023832 -14402,17781,32410,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.883460842644991,8.050126053946078,0,0,-1012.487082770323,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.534824266076768,7.848577636599536,46.56,50.26,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,424,595928.0832620532,242769.7822888123,179627.7572495229,0,1326.941038430294 -14403,17782,32411,32412,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,6.672646196637798,7.244106535660045,6,7,-35.28687655022901,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.582420082203733,6.980342348649407,40.83,26.26,43.34,30.37,8.333333333333334,1,1,0,0,0,9,2,1,688,856017.0795404931,81308.03706605331,518456.4571121286,0,1850.376952736835 -14403,17782,32412,32411,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,6,-7,25.56819222363407,0,2,-9,2019,11,0,0,0,4,0,0,0,0,1,0,4.308419836181137,0,0,1,1,0,3.65770516752967,0,43.34,30.37,40.83,26.26,1.666666666666667,1,1,0,0,0,9,2,1,688,856017.0795404931,81308.03706605331,518456.4571121286,0,1850.376952736835 -14404,17783,32413,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.998728900066,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,1,1,0,0,0,2,1,1,710,-1168.259466781414,0,0,0,1037.995606747719 -14405,17784,32414,-9,32415,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.7944500009434,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1448,181884.269669489,36366.92500318301,0,0,3071.131353723853 -14405,17784,32415,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.961261699859611,9.088752469504445,6.176232537213991,0,0,-1060.813621714732,-9,2,3,2019,7,1,38,0,1,1,0,29.33705133108473,29.33705133108473,0,0,0,0,0,0,0,0,6.834297980151412,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,1448,181884.269669489,36366.92500318301,0,0,3071.131353723853 -14406,17785,32416,32417,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.617185458194158,6.343207865734785,9,-2,63.09367374875527,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.185671464675611,60.12,54.8,52.05,37.55,8.333333333333334,1,1,0,0,6,11,4,1,830,1478854.291479228,941062.2118260675,308497.1666045129,0,2975.425181479361 -14406,17785,32417,32416,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.183093000354964,8.349573714357149,9,2,-61.06661549339854,0,2,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.620715347400638,8.31133148557582,52.05,37.55,60.12,54.8,10,1,1,0,0,2,11,4,1,830,1478854.291479228,941062.2118260675,308497.1666045129,0,2975.425181479361 -14407,17786,32418,32419,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,10,0,-49.63510310039537,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.684010588287344,0,42.61,38.79,48.74,50.46,6.666666666666667,1,1,0,0,8,10,2,1,277.5,577774.5173063667,210769.974409663,288152.961240689,0,439.8907259284126 -14407,17786,32419,32418,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.909865538635639,5.675815967319696,10,9,44.76928183852042,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.527142514346864,5.556680359223074,48.74,50.46,42.61,38.79,8.333333333333334,1,1,0,0,12,10,2,1,277.5,577774.5173063667,210769.974409663,288152.961240689,0,439.8907259284126 -14408,17787,32420,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.946426320221662,7.865943487153139,0,0,-955.6021037310103,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.586053503412447,7.786157253284148,55.12,42.1,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,292,872714.8641652045,456719.3426864471,329060.2115360863,0,1919.067222445551 -14409,17788,32421,32422,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.40433678324379,7.984298579302526,0,11,1,-81.67539677986311,-9,3,3,2019,12,1,25,0,1,1,0,10.50560818331184,10.50560818331184,0,0,0,0,0,0,0,0,0,0,50.52,47.59,62.49,55.09,3.333333333333333,1,1,0,0,12,2,4,1,1110,224078.857022764,54714.38442686966,148082.9234895235,75698.12558283018,2680.282043111425 -14409,17788,32422,32421,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.332205329008058,8.321221486678994,0,1,-1,-82.66408418798673,-9,-9,-9,2019,12,0,49,0,1,0,0,10.14499494969497,10.14499494969497,0,0,0,0,0,0,0,0,0,0,62.49,55.09,50.52,47.59,6.666666666666667,1,1,0,0,1,2,4,1,1110,224078.857022764,54714.38442686966,148082.9234895235,75698.12558283018,2680.282043111425 -14410,17789,32423,32424,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,8.349459701218482,8.110817991927636,0,33,9,5.210461055293282,0,1,-9,2019,7,0,20,20,1,0,0,29.65361112738938,29.65361112738938,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,6,4,1,260,1144914.670627835,355611.9524149111,317012.6606348577,0,2319.225758686584 -14410,17789,32424,32423,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.757096473884472,7.076497524999912,5.48556268193049,33,0,41.67618784710812,0,3,-9,2019,6,0,10,15,1,0,0,11.91958467918617,11.91958467918617,0,0,0,0,0,0,0,0,2.452882319252598,4.981254643787022,57.16,56.15,57.16,56.15,10,1,1,0,0,7,6,4,1,260,1144914.670627835,355611.9524149111,317012.6606348577,0,2319.225758686584 -14411,17790,32425,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.969981248709121,4.98869995495317,0,0,-930.9529211094111,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.269562088547956,46.56,22.69,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,542,102613.7952885014,-14514.36156046732,0,0,1831.535287721634 -14412,17791,32426,-9,32428,32427,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1205.738515870632,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,0,363.6666666666667,1227990.613318301,665116.8388417867,390482.4870011716,0,4200.101893120823 -14412,17791,32427,32428,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,8.694250335147547,8.790167983885299,6.544061043539719,7,10,-113.0077243766166,0,3,3,2019,6,0,38,38,1,0,0,17.47252936863294,17.47252936863294,0,0,0,0,0,1,1,0,3.266317231424159,7.060203051743579,58.15,52.91,41.42,49.15,1.666666666666667,1,1,0,0,9,9,4,0,363.6666666666667,1227990.613318301,665116.8388417867,390482.4870011716,0,4200.101893120823 -14412,17791,32428,32427,-9,-9,1,0,51,0,1,0,3,3,-9,1,4,6.867108100886509,6.830981329269224,0,7,-10,-40.85755196141962,0,3,3,2019,14,4,15,15,1,4,0,6.704003018834194,6.704003018834194,0,0,0,0,111,1,1,0,0,0,41.42,49.15,58.15,52.91,5,1,1,0,0,6,9,4,0,363.6666666666667,1227990.613318301,665116.8388417867,390482.4870011716,0,4200.101893120823 -14413,17792,32429,32430,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,4.448045628512568,4.127121412179876,0,21,-4,10.53441765606113,0,3,2,2019,16,4,60,55,1,4,0,.1163187657534996,.1163187657534996,0,0,0,0,0,1,1,0,6.688253724933278,0,42.27,49.68,47.62,56.48,8.333333333333334,1,1,0,0,10,5,3,1,317,274960.1333323966,49340.91594388468,145373.2704214358,0,1666.564965882027 -14413,17792,32430,32429,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.015493682043859,7.868042687487256,0,21,4,14.08254735323151,0,2,2,2019,14,2,50,53,1,2,0,7.025362208034227,7.025362208034227,0,0,0,0,0,1,1,0,0,0,47.62,56.48,42.27,49.68,6.666666666666667,1,1,0,0,11,5,3,1,317,274960.1333323966,49340.91594388468,145373.2704214358,0,1666.564965882027 -14414,17793,32431,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.885113413440346,9.04210457504302,0,0,0,-1082.38668144003,0,2,2,2019,12,0,42,38,1,0,0,14.62398595837336,14.62398595837336,0,0,0,0,0,0,0,0,0,0,39.15,48.86,-9,-9,5,2,3,0,0,10,9,5,1,265,52849.05031188985,0,0,0,2049.854644297131 -14415,17794,32432,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.580843109358787,7.821420774445935,0,0,-939.0584156807998,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.303354307398878,7.551307309997084,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,104,407420.168059783,467872.077967823,0,0,1480.033218657861 -14416,17795,32433,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.5144756125792,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,3.157263138495179,0,0,0,1,1,0,0,0,57.04,29.74,-9,-9,5,3,4,0,1,0,6,1,0,347,-29157.29739194825,0,0,0,538.7562131037253 -14417,17796,32434,32436,32439,32438,1,1,19,0,0,0,2,2,-9,0,3,6.756736471508873,6.849801672479756,0,1,0,-6.851187093886051,0,2,3,2019,9,0,20,0,1,0,0,3.786502685080877,3.786502685080877,0,0,0,0,7,1,1,0,0,0,52.57,52.89,40.86,34.03,6.666666666666667,1,1,0,0,1,11,3,1,611.75,-45065.03491463186,52044.75746202005,0,0,1804.788121243087 -14417,17796,32435,-9,32436,32434,1,1,12,0,0,1,3,0,-9,0,3,0,0,0,0,0,-999.8645623881068,-9,-9,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,3,1,611.75,-45065.03491463186,52044.75746202005,0,0,1804.788121243087 -14417,17796,32436,32434,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.801729839181611,7.575868699450933,0,1,0,-29.3734275617536,-9,-9,-9,2019,8,1,40,0,1,1,0,7.425883765812554,7.425883765812554,0,0,0,0,0,1,1,0,.1484047280251398,0,40.86,34.03,52.57,52.89,8.333333333333334,1,1,0,0,1,11,3,1,611.75,-45065.03491463186,52044.75746202005,0,0,1804.788121243087 -14417,17796,32437,-9,32436,32434,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-905.664398596821,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,611.75,-45065.03491463186,52044.75746202005,0,0,1804.788121243087 -14417,17797,32438,32439,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,2.521757410163278,2.360801568965763,0,7,0,-70.21116425761535,0,2,3,2019,7,0,35,40,1,0,0,.0421831431499923,.0421831431499923,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.49,47.79,10,1,1,0,0,8,11,3,1,717.5,525714.5931805682,241250.9671958792,179981.7744894802,0,3687.559322149005 -14417,17797,32439,32438,32440,32441,1,0,51,0,0,0,2,2,-9,0,3,7.934157766028648,7.879151902162592,0,7,0,-133.404529959842,0,2,1,2019,8,0,35,35,1,0,0,7.819562826496049,7.819562826496049,0,0,0,0,14.5,1,1,0,0,0,54.49,47.79,57.06,57.76,8.333333333333334,1,1,0,0,8,11,3,1,717.5,525714.5931805682,241250.9671958792,179981.7744894802,0,3687.559322149005 -14417,17798,32440,32441,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,4.525419796631367,4.870346341405203,7,-3,71.97017086618163,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,8.645205326230059,0,0,1,1,0,.4994589100673663,4.455011680464584,40.63,33.15,61.41,32.83,8.333333333333334,1,1,0,0,0,11,4,1,699.5,1019289.428210094,189373.849211167,402304.6241089042,0,3932.769677935329 -14417,17798,32441,32440,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.431614733853531,8.320301103671913,7,3,31.12861536309877,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.504475616130636,61.41,32.83,40.63,33.15,10,1,1,0,0,8,11,4,1,699.5,1019289.428210094,189373.849211167,402304.6241089042,0,3932.769677935329 -14418,17799,32442,32443,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.572580116920848,8.205704773583332,33,0,149.4072432442975,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.566461688234616,8.190348462574097,57.9,51.84,57.16,56.15,10,1,1,0,0,6,12,4,1,1600,1049826.401129989,531573.2792123848,204590.8474839233,0,3495.661253440963 -14418,17799,32443,32442,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.521360264613416,4.636889549241229,33,0,-24.26664008623713,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.660005088538848,4.87733810798566,57.16,56.15,57.9,51.84,10,1,1,0,0,0,12,4,1,1600,1049826.401129989,531573.2792123848,204590.8474839233,0,3495.661253440963 -14419,17800,32444,-9,-9,-9,1,1,26,0,0,0,1,1,0,0,3,0,0,0,0,0,-1056.070449104365,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.907725337558702,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,1,0,2162,-87751.16304970326,0,0,0,1284.862021732101 -14420,17801,32445,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.223740393213744,8.314616963409613,0,0,0,-980.88848360021,0,2,1,2019,8,1,40,47,1,1,0,12.32183123782642,12.32183123782642,0,0,0,0,2,0,0,0,.5829977736422293,0,42.35,36.31,-9,-9,1.666666666666667,3,4,0,0,7,8,4,0,630,86470.48859380854,70235.67645162696,0,0,1717.459797747311 -14421,17802,32446,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.621117927605289,6.845471861403647,0,0,-995.4471393750935,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.854522626297652,6.812121060949873,58.68,41.71,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,688,322189.7879540087,111974.8907761282,183466.6453584553,0,443.7445316018129 -14422,17803,32447,32448,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.689997609023738,8.539032642618283,8.21094789811926,6,0,24.1941306003245,0,2,2,2019,8,0,22,24,1,0,0,14.63169780353785,14.63169780353785,0,0,0,0,0,0,0,0,5.298024805807092,8.220493764199997,54.2,57.49,59.07,43.05,8.333333333333334,1,1,0,0,8,2,5,1,127,2473664.39084483,1420211.340463365,489848.6174458639,0,20744.22705305534 -14422,17803,32448,32447,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.72662807371894,9.748884745746464,6.880890762927049,39,0,-89.654789862581,0,2,2,2019,5,0,20,20,1,0,0,100.6973791964172,100.6973791964172,0,0,0,0,0,0,0,0,6.317004449575855,6.661603560913684,59.07,43.05,54.2,57.49,10,1,1,0,0,8,2,5,1,127,2473664.39084483,1420211.340463365,489848.6174458639,0,20744.22705305534 -14423,17804,32449,32450,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.314352590367543,8.075553479226429,0,6,-2,21.53935001513597,0,2,2,2019,6,0,39,38,1,0,0,14.04764383305478,14.04764383305478,0,0,0,0,0,0,0,0,.3635517940679227,0,46.44,59.62,51.83,57.2,8.333333333333334,1,1,0,0,7,10,5,1,404,481539.482308344,148899.435544711,510308.0478170433,338817.3694351175,4852.23343238214 -14423,17804,32450,32449,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,9.231554328678273,9.209918074356827,0,6,2,-110.2887527801633,0,-9,-9,2019,14,3,35,42,1,3,0,40.06862350537435,40.06862350537435,0,0,0,0,0,0,0,0,4.223828932129028,0,51.83,57.2,46.44,59.62,5,1,1,0,0,9,10,5,1,404,481539.482308344,148899.435544711,510308.0478170433,338817.3694351175,4852.23343238214 -14424,17805,32451,32454,-9,-9,1,0,24,1,2,0,2,2,-9,0,2,0,0,0,2,-1,62.78035407878475,0,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.06,22.89,57.16,56.15,10,4,3,0,0,0,4,2,0,957.75,-61097.3710899048,0,0,0,1740.152580728164 -14424,17805,32452,-9,32451,32454,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.981711016696,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,0,957.75,-61097.3710899048,0,0,0,1740.152580728164 -14424,17805,32453,-9,32451,32454,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-877.9083693449555,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,957.75,-61097.3710899048,0,0,0,1740.152580728164 -14424,17805,32454,32451,-9,-9,1,1,25,1,2,0,2,2,-9,0,4,7.515150553138399,7.483602881171597,0,2,1,86.24818312415209,0,-9,-9,2019,6,0,35,24,1,0,0,5.572176795758542,5.572176795758542,0,0,0,0,0,1,1,0,5.715802881023349,0,57.16,56.15,69.06,22.89,8.333333333333334,2,3,0,0,6,4,2,0,957.75,-61097.3710899048,0,0,0,1740.152580728164 -14425,17806,32455,-9,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.44831321893175,8.39795885774763,0,0,0,-1015.632349710483,0,2,2,2019,14,3,37,37,1,3,0,12.52645535140221,12.52645535140221,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,1008,35067.05006885294,131704.712384402,203685.2025350646,149822.2063464995,2319.67148351672 -14425,17806,32456,-9,32455,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.00559181757,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,1008,35067.05006885294,131704.712384402,203685.2025350646,149822.2063464995,2319.67148351672 -14426,17807,32457,32458,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,60,-4,55.2999203782452,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.729963385875592,0,60.12,54.8,43.41,51.52,10,1,1,0,0,0,7,2,1,962,96342.94990308621,59669.56256344762,85784.54039684623,0,1776.677166117521 -14426,17807,32458,32457,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.730921509201448,6.764424756776733,60,4,32.50429985401823,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.926567446366608,6.45555250131424,43.41,51.52,60.12,54.8,8.333333333333334,1,1,0,0,0,7,2,1,962,96342.94990308621,59669.56256344762,85784.54039684623,0,1776.677166117521 -14427,17808,32459,-9,32461,32460,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.701145319304,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,2102.5,222674.264071545,98902.34639133814,271869.8565636723,144761.6392801792,3213.197114365994 -14427,17808,32460,32461,-9,-9,1,1,45,1,2,0,1,1,-9,0,2,8.68754532619065,8.83917261490015,0,9,7,-14.98617780705629,0,2,2,2019,12,0,38,37,1,0,0,18.93329151295576,18.93329151295576,0,0,0,0,0,0,0,0,6.612136473462535,0,45.41,45.8,52,54.51,6.666666666666667,1,1,0,0,10,10,4,1,2102.5,222674.264071545,98902.34639133814,271869.8565636723,144761.6392801792,3213.197114365994 -14427,17808,32461,32460,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,7.02028926224687,6.961731636601903,0,9,-7,97.89538003979271,0,1,1,2019,8,0,24,24,1,0,0,5.129275611568497,5.129275611568497,0,0,0,0,0,0,0,0,0,0,52,54.51,45.41,45.8,6.666666666666667,1,1,0,0,8,10,4,1,2102.5,222674.264071545,98902.34639133814,271869.8565636723,144761.6392801792,3213.197114365994 -14427,17808,32462,-9,32461,32460,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-885.6518895926287,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,2102.5,222674.264071545,98902.34639133814,271869.8565636723,144761.6392801792,3213.197114365994 -14428,17809,32463,32464,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.875369869506044,8.056247133040788,0,27,7,-140.7066683448274,0,2,2,2019,8,0,35,35,1,0,0,12.08669498835376,12.08669498835376,0,0,0,0,0,0,0,0,0,0,47.79,46.79,44.08,45.93,8.333333333333334,2,3,0,1,12,8,4,0,695,257147.1277919527,169028.1819261592,116523.2079202816,71383.21019499656,2571.609026433719 -14428,17809,32464,32463,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.673801622023038,7.870792871819789,0,27,-7,-211.3588520409528,0,2,2,2019,11,4,30,20,1,4,0,9.718332356377603,9.718332356377603,0,0,0,0,0,0,0,0,0,0,44.08,45.93,47.79,46.79,8.333333333333334,2,3,0,0,11,8,4,0,695,257147.1277919527,169028.1819261592,116523.2079202816,71383.21019499656,2571.609026433719 -14428,17810,32465,-9,32464,32463,1,1,23,0,0,0,1,1,-9,0,5,9.358428090669547,9.35033445145946,0,0,0,-1062.147044749848,-9,3,3,2019,7,0,27,0,1,0,1,58.06311355359284,58.06311355359284,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,8,5,0,493,-34120.01043910594,78005.21631015853,0,0,4568.829062095123 -14429,17811,32466,32467,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.817859223744938,5.961906138902813,46,-1,-154.1976430000447,0,3,-9,2019,21,8,0,0,4,8,0,0,0,1,0,22.91129515016628,0,0,1,1,0,2.569335532264795,5.766970188837667,46.61,32.5,53.5,53.7,6.666666666666667,1,1,0,0,0,10,3,1,471.5,1200873.508540661,686083.0480643017,477459.4042459662,0,2435.92418808978 -14429,17811,32467,32466,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.061158138284464,7.774128017398708,46,1,10.26423020215123,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.449245988538898,7.809547357706655,53.5,53.7,46.61,32.5,8.333333333333334,1,1,0,0,0,10,3,1,471.5,1200873.508540661,686083.0480643017,477459.4042459662,0,2435.92418808978 -14430,17812,32468,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.251417007026632,6.556789588875401,0,0,-930.0176370239305,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.589278396506269,5.985235907928534,53.74,44.11,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,1321,5439765.225715131,4026572.005485103,1487695.745054843,0,1265.852913280121 -14431,17813,32469,32471,-9,-9,1,0,41,0,2,0,1,1,-9,0,1,9.013590552013438,9.087027268703574,0,7,-1,-27.03044753959563,-9,-9,-9,2019,29,12,37,0,1,12,0,24.5636109625001,24.5636109625001,0,0,0,0,0,0,0,0,0,0,27.06,25.91,48.87,58.55,3.333333333333333,1,1,0,0,8,4,5,1,282.75,930569.9332078074,468437.2513239193,461333.8490225648,118866.9701532613,5200.343008297681 -14431,17813,32470,-9,32469,32471,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-819.6240532092213,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,282.75,930569.9332078074,468437.2513239193,461333.8490225648,118866.9701532613,5200.343008297681 -14431,17813,32471,32469,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.800603209608362,8.519117263043727,0,1,1,85.84967849293889,-9,-9,-9,2019,12,1,45,0,1,1,0,17.66594507968875,17.66594507968875,0,0,0,0,0,0,0,0,0,0,48.87,58.55,27.06,25.91,6.666666666666667,1,1,0,0,9,4,5,1,282.75,930569.9332078074,468437.2513239193,461333.8490225648,118866.9701532613,5200.343008297681 -14431,17813,32472,-9,32469,32471,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.9739231144347,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,282.75,930569.9332078074,468437.2513239193,461333.8490225648,118866.9701532613,5200.343008297681 -14432,17814,32473,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1053.959842302939,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,38.24,25.76,-9,-9,5,1,1,0,0,0,4,1,0,1225.5,173664.3037619396,0,81851.18886639406,0,1606.457246004546 -14432,17814,32474,-9,-9,32473,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-878.3222757295455,-9,-9,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,23.43,62.51,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,1225.5,173664.3037619396,0,81851.18886639406,0,1606.457246004546 -14433,17815,32475,32476,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,8.632930851472496,8.67052356362947,7.97596764015154,44,3,59.53655678375608,0,3,3,2019,7,0,37,45,1,0,0,13.07766333339232,13.07766333339232,0,0,0,0,71.5,1,1,0,0,7.864995873458523,57.54,26.3,48.79,18.56,8.333333333333334,1,1,0,1,11,13,5,1,647,1229391.520250887,890372.8018113167,150683.8837341903,0,3903.335908194815 -14433,17815,32476,32475,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.539998993274914,5.286020759910176,44,-3,-10.14957243661911,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.639012368719723,48.79,18.56,57.54,26.3,8.333333333333334,1,1,0,0,8,13,5,1,647,1229391.520250887,890372.8018113167,150683.8837341903,0,3903.335908194815 -14434,17816,32477,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,0,0,-973.9648691102119,0,3,3,2019,3,0,0,6,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,0,0,7,2,1,1,873,75656.85736697148,0,0,0,0 -14434,17817,32478,-9,32477,-9,1,1,28,0,0,0,2,2,-9,0,4,7.57883587528084,7.698554206904484,0,0,0,-969.8683842710174,0,3,-9,2019,12,0,37,30,1,0,1,6.442055294911691,6.442055294911691,0,0,0,0,0,1,1,0,0,0,39.18,59.21,-9,-9,5,1,1,0,0,6,2,3,1,201,-129440.1838566543,0,0,0,1393.69620379108 -14435,17818,32479,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,9.207361177433452,9.311701337791558,0,0,0,-1034.061275184623,0,2,2,2019,9,0,43,41,1,0,0,22.28528066010254,22.28528066010254,0,0,0,0,0,0,0,0,5.146343216544386,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,801,127028.7241021994,2947.680774777895,0,0,3045.922490274998 -14436,17819,32480,32481,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,49,2,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,55.05,29.79,37.82,20.93,5,1,1,0,0,0,2,1,1,508,244233.9986931139,15320.05097653288,107728.5677317759,0,1396.704275691942 -14436,17819,32481,32480,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,49,-2,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,0,37.82,20.93,55.05,29.79,6.666666666666667,1,1,0,0,0,2,1,1,508,244233.9986931139,15320.05097653288,107728.5677317759,0,1396.704275691942 -14437,17820,32482,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,3,0,0,0,0,0,-980.2114061037585,0,3,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,25.27,63.07,-9,-9,8.333333333333334,1,1,0,0,2,10,1,0,275,-42320.09473649292,-5127.181902911547,0,0,800.9201871287114 -14437,17820,32483,-9,32482,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1066.127299571096,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,10,1,0,275,-42320.09473649292,-5127.181902911547,0,0,800.9201871287114 -14438,17821,32484,32485,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,4.072226234723538,4.042483916827898,6,2,-30.7739884890478,0,-9,-9,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,4.520053774301011,4.020589526496908,55.34,54.26,44.56,25.76,8.333333333333334,1,1,0,0,6,10,2,1,1028,80048.48994006529,0,187679.7104741869,0,1248.976799511508 -14438,17821,32485,32484,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,6,-2,41.57879583574693,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,44.56,25.76,55.34,54.26,1.666666666666667,1,1,0,0,3,10,2,1,1028,80048.48994006529,0,187679.7104741869,0,1248.976799511508 -14439,17822,32486,32487,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,0,0,0,7,-8,-2.554958563606815,0,2,2,2019,10,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.94,58.01,8.333333333333334,1,1,0,0,8,4,5,1,881.6666666666666,632968.6003076062,256600.9845628516,314633.1196061975,0,3033.438040483702 -14439,17822,32487,32486,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,9.189958600066454,9.023550274190164,6.635779667326738,7,8,80.26235165161279,0,2,2,2019,9,0,48,43,1,0,0,20.96412434023531,20.96412434023531,0,0,0,0,0,0,0,0,6.242480848349915,6.61407228643492,49.94,58.01,57.16,56.15,1.666666666666667,1,1,0,0,8,4,5,1,881.6666666666666,632968.6003076062,256600.9845628516,314633.1196061975,0,3033.438040483702 -14439,17822,32488,-9,32486,32487,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1048.559850090369,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,5,1,881.6666666666666,632968.6003076062,256600.9845628516,314633.1196061975,0,3033.438040483702 -14439,17823,32489,-9,32486,32487,1,1,21,0,1,1,1,0,0,0,4,0,5.364838240502405,5.370450595891405,0,0,-932.8502669884699,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,5.637924368006994,0,43.44,58.7,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,770,11871.54097643614,0,0,0,1115.33819860988 -14440,17824,32490,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.022295022318541,7.61337557499591,0,0,0,-858.7997681327504,-9,2,2,2019,14,2,35,0,1,2,0,7.661381359010636,7.661381359010636,0,0,0,0,0,1,1,0,0,0,35.56,54.64,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,530,-84882.5987876439,0,0,0,849.3825277812905 -14441,17825,32491,32492,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.667628062274884,10.00445822733171,9.600087291841874,43,1,-57.79498974773051,0,2,1,2019,6,0,2,6,1,0,0,378.5756708971296,378.5756708971296,0,0,0,0,7,1,1,0,6.505408422204121,9.988405718616431,60.7,47.65,63.98,38.08,10,1,1,0,0,9,12,5,1,320.5,3079363.892642511,2187543.175188454,646582.2490371617,0,9883.349746069181 -14441,17825,32492,32491,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,43,-1,11.87136711208307,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.98,38.08,60.7,47.65,8.333333333333334,1,1,0,0,0,12,5,1,320.5,3079363.892642511,2187543.175188454,646582.2490371617,0,9883.349746069181 -14442,17826,32493,32494,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,6.802989076658895,7.07631852053956,0,36,-1,-34.39941687636638,0,2,3,2019,12,0,18,16,1,0,0,6.46246131778864,6.46246131778864,0,0,0,0,0,0,0,0,3.383534349614156,0,48.81,59.91,55.34,54.26,8.333333333333334,1,1,0,0,11,2,3,1,826.5,290837.3109863302,260416.3337370097,82718.77067954451,0,1641.455196094102 -14442,17826,32494,32493,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.757073367431974,7.613671748040765,0,8,1,94.48228944663745,0,2,1,2019,6,0,40,40,1,0,0,6.605107770470065,6.605107770470065,0,0,0,0,0,0,0,0,3.009290004542341,0,55.34,54.26,48.81,59.91,8.333333333333334,1,1,0,0,11,2,3,1,826.5,290837.3109863302,260416.3337370097,82718.77067954451,0,1641.455196094102 -14443,17827,32495,-9,32498,-9,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-942.475054793493,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,2,0,812.25,75129.76128867255,0,0,0,2469.264394671049 -14443,17827,32496,-9,32498,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.45345025715,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,812.25,75129.76128867255,0,0,0,2469.264394671049 -14443,17827,32497,-9,32498,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-893.1046453482886,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,10,2,0,812.25,75129.76128867255,0,0,0,2469.264394671049 -14443,17827,32498,-9,-9,-9,1,0,31,0,3,0,3,3,-9,1,2,0,6.332361985471958,6.226076987295418,0,0,-963.474717568607,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,6.00059717128255,0,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,812.25,75129.76128867255,0,0,0,2469.264394671049 -14444,17828,32499,32500,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.470619558309316,8.864951192552539,0,28,0,-10.21146934143284,0,2,2,2019,10,0,37,40,1,1,0,17.99899261360109,17.99899261360109,0,0,0,0,0,0,0,0,0,0,51,54,57.06,57.76,8,1,1,0,0,1,4,5,1,163,363236.4204231713,168362.2395384449,244978.0027050973,80355.20090671501,4048.114291199407 -14444,17828,32500,32499,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.299121612416597,8.547278774105376,0,27,0,71.72880454113606,0,2,3,2019,6,0,37,38,1,0,0,16.67629812994187,16.67629812994187,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51,54,10,1,1,0,0,7,4,5,1,163,363236.4204231713,168362.2395384449,244978.0027050973,80355.20090671501,4048.114291199407 -14444,17829,32501,-9,32499,32500,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1083.149325609086,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,2105,300734.6379699107,207915.2887182713,0,0,438.5118810975483 -14444,17830,32502,-9,32499,32500,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-935.324585477998,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,2208,-69817.63072517417,0,0,0,0 -14445,17831,32503,-9,32506,32504,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.8812017407294,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,807.25,501003.7611144318,7592.430967933024,494610.4151454382,0,3626.148912195808 -14445,17831,32504,32506,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,8.341910402023974,8.367905569804744,0,9,7,-100.4980652502004,0,3,3,2019,6,0,42,41,1,0,0,11.54878165194542,11.54878165194542,0,0,0,0,0,1,1,0,0,0,57.22,39.68,56.11,17.61,8.333333333333334,1,1,0,0,9,7,4,1,807.25,501003.7611144318,7592.430967933024,494610.4151454382,0,3626.148912195808 -14445,17831,32505,-9,32506,32504,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.747437742052,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,807.25,501003.7611144318,7592.430967933024,494610.4151454382,0,3626.148912195808 -14445,17831,32506,32504,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,8.653864526146226,8.633153325292373,0,10,-7,38.3106766460968,0,2,2,2019,10,1,30,31,1,1,0,21.66788166435203,21.66788166435203,0,0,0,0,0,1,1,0,0,0,56.11,17.61,57.22,39.68,8.333333333333334,1,1,0,0,10,7,4,1,807.25,501003.7611144318,7592.430967933024,494610.4151454382,0,3626.148912195808 -14445,17832,32507,-9,32506,32504,1,0,18,0,2,0,2,2,-9,0,3,7.61656702334461,7.777008827837128,0,0,0,-968.2577670232015,-9,1,2,2019,14,2,8,0,1,2,1,31.47015468208986,31.47015468208986,0,0,0,0,0,1,1,0,0,0,47.54,30.78,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,370,45882.28580423831,98742.85986027186,0,0,951.0573790352848 -14446,17833,32508,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.4040009141587,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8284513163878435,0,53.76,49.63,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,2472,-55322.01256182754,0,0,0,612.5844973711479 -14447,17834,32509,32510,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.828906010669614,8.99236568468819,0,6,0,84.32119318788682,0,2,2,2019,11,1,41,40,1,1,0,21.17579585554934,21.17579585554934,0,0,0,0,0,0,0,0,2.183646604153984,0,51.94,55.88,59.04,51.29,8.333333333333334,1,1,0,0,7,12,5,1,1753,1537554.789181216,806675.7072318096,261227.3450060184,0,4530.848810946464 -14447,17834,32510,32509,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.734488539445673,8.479833626384846,0,6,0,62.15000351511393,0,-9,-9,2019,6,0,37,37,1,0,0,18.4330462909774,18.4330462909774,0,0,0,0,0,0,0,0,0,0,59.04,51.29,51.94,55.88,8.333333333333334,1,1,0,0,8,12,5,1,1753,1537554.789181216,806675.7072318096,261227.3450060184,0,4530.848810946464 -14448,17835,32511,32512,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,0,0,0,9,0,23.40626053688898,0,-9,-9,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.12,54.8,53.83,22.98,8.333333333333334,1,1,0,0,10,13,2,1,2760,478589.5842298544,52836.89707980855,224746.0678034731,165891.0074538719,1013.367668128047 -14448,17835,32512,32511,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,6.541611776945029,6.801452072191005,0,9,0,-29.45402091483722,0,3,3,2019,10,1,4,25,1,1,0,17.39041003015745,17.39041003015745,0,0,0,0,0,1,1,0,0,0,53.83,22.98,60.12,54.8,6.666666666666667,1,1,0,0,9,13,2,1,2760,478589.5842298544,52836.89707980855,224746.0678034731,165891.0074538719,1013.367668128047 -14449,17836,32513,32514,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.817156125722896,7.578335745320626,49,4,-110.9176977372798,0,2,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.676741865585044,8.222692567180625,54.96,53.17,60.29,52.11,10,1,1,0,0,0,9,3,0,614,1091208.007602043,220349.6613869116,675344.2817909524,0,2324.232172589693 -14449,17836,32514,32513,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,49,-4,-17.38804878465012,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.96,53.17,8.333333333333334,1,1,0,0,9,9,3,0,614,1091208.007602043,220349.6613869116,675344.2817909524,0,2324.232172589693 -14450,17837,32515,32516,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,0,0,6,1,-104.2087757356272,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.101010912683172,0,56.53,45.45,60.02,56.42,10,1,1,0,0,0,12,2,1,514,247962.9045474331,152897.687135546,176146.0944685391,0,1300.312932070498 -14450,17837,32516,32515,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,6.96016911643902,6.860748923220664,6,-1,78.6153931405461,0,2,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.674759118805145,6.853265632466589,60.02,56.42,56.53,45.45,10,1,1,0,0,0,12,2,1,514,247962.9045474331,152897.687135546,176146.0944685391,0,1300.312932070498 -14451,17838,32517,32518,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.457979215678954,8.501466034575111,0,25,2,29.71161321977261,0,3,3,2019,8,0,42,40,1,0,0,14.40419122572709,14.40419122572709,0,0,0,0,0,1,1,0,3.533243852609998,0,55.79,52.62,46.44,59.62,8.333333333333334,1,1,0,0,8,2,4,1,559.6666666666666,538997.7109201264,590895.2268019664,65891.78212181454,53963.97609564903,3086.078777883613 -14451,17838,32518,32517,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.819799521102898,7.882766429690009,0,25,-2,10.83733214382515,0,3,3,2019,8,0,21,28,1,0,0,11.41421278925164,11.41421278925164,0,0,0,0,0,1,1,0,.1840010594906919,0,46.44,59.62,55.79,52.62,1.666666666666667,1,1,0,0,8,2,4,1,559.6666666666666,538997.7109201264,590895.2268019664,65891.78212181454,53963.97609564903,3086.078777883613 -14451,17838,32519,-9,32518,32517,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.0192866959557,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,559.6666666666666,538997.7109201264,590895.2268019664,65891.78212181454,53963.97609564903,3086.078777883613 -14452,17839,32520,-9,32523,-9,1,1,25,0,0,0,1,1,-9,0,4,8.438002663588737,8.405770411879521,0,0,0,-920.650275567627,0,2,2,2019,5,0,43,50,1,0,1,12.29635813992726,12.29635813992726,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,2,3,0,0,9,9,4,1,1427,-53881.52280932017,-104941.6079931734,143469.3257227945,111812.7705798628,1982.440721421367 -14452,17840,32521,-9,32523,-9,1,1,22,0,0,0,2,2,-9,0,5,8.123751166359201,8.279163448650083,0,0,0,-1098.658669873659,0,3,-9,2019,19,6,30,30,1,6,1,14.51048542940334,14.51048542940334,0,0,0,0,0,0,0,0,0,0,49.41,44.66,-9,-9,1.666666666666667,2,3,0,0,3,9,4,1,1276,-89098.01187499127,0,0,0,1745.922988450754 -14452,17841,32522,32523,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.513968344814234,8.51429328803343,0,2,1,59.82448799372634,0,-9,-9,2019,5,0,37,35,1,0,0,15.71734012453551,15.71734012453551,0,0,0,0,0,0,0,0,0,0,66.34,49.42,54.02,40.03,10,2,3,0,0,3,9,5,1,629.5,256974.190755843,199901.8791819519,238716.1105656716,91108.30687112958,3054.300214288188 -14452,17841,32523,32522,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.742787041033614,7.592357279093728,4.729911702242719,2,-1,-13.10046883312732,0,3,2,2019,11,2,26,23,1,2,0,9.549850444358894,9.549850444358894,0,0,0,0,0,0,0,0,4.327518450376466,5.051118471170425,54.02,40.03,66.34,49.42,10,2,3,0,0,9,9,5,1,629.5,256974.190755843,199901.8791819519,238716.1105656716,91108.30687112958,3054.300214288188 -14453,17842,32524,-9,32526,32525,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.208467479102,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,754,183897.7475454168,85118.02678392195,159452.8818466098,0,3291.040804529247 -14453,17842,32525,32526,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.226171991707751,8.270978134279545,0,16,8,178.5652951421503,0,2,2,2019,9,0,45,47,1,0,0,9.542338989714127,9.542338989714127,0,0,0,0,0,1,1,0,0,0,58.06,43.48,64.96000000000001,43.19,8.333333333333334,1,1,0,0,10,1,4,1,754,183897.7475454168,85118.02678392195,159452.8818466098,0,3291.040804529247 -14453,17842,32526,32525,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.141739412279916,8.583026456622793,0,15,-8,30.13234624331022,0,3,3,2019,7,0,39,37,1,0,0,9.905225391024903,9.905225391024903,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,58.06,43.48,6.666666666666667,1,1,0,0,10,1,4,1,754,183897.7475454168,85118.02678392195,159452.8818466098,0,3291.040804529247 -14454,17843,32527,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.978481819265031,7.213070995974648,0,0,0,-1119.941671718959,0,-9,-9,2019,10,0,16,16,1,0,0,6.351806047164881,6.351806047164881,0,0,0,0,0,1,1,0,0,0,55.61,50.3,-9,-9,6.666666666666667,1,1,0,0,7,13,2,0,48,23646.27687721443,0,0,0,1565.220085191591 -14455,17844,32528,-9,32530,32529,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.755326457234,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,10,2,1,247,3959.098969862209,0,0,0,1525.628763648572 -14455,17844,32529,32530,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,0,0,0,4,-4,-30.52092709016178,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,64.22,47.55,59.29,49.68,5,3,4,1,1,0,10,2,1,247,3959.098969862209,0,0,0,1525.628763648572 -14455,17844,32530,32529,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,5.790367200058546,5.493032210909576,0,4,4,102.1799055070243,0,1,3,2019,9,1,20,16,1,1,0,1.700889259951552,1.700889259951552,0,0,0,0,0,1,1,0,6.71234385867074,0,59.29,49.68,64.22,47.55,8.333333333333334,1,1,0,1,9,10,2,1,247,3959.098969862209,0,0,0,1525.628763648572 -14456,17845,32531,32532,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,7.427000754902206,7.033173523541856,64,4,-42.44097459347008,0,3,3,2019,27,11,0,0,4,11,0,0,0,1,0,1.788035294288082,0,0,1,1,0,2.697053407103696,7.059439274366007,29.61,21.77,47.31,39.47,1.666666666666667,1,1,0,0,0,9,2,0,777.5,577911.7959450796,251361.4254964845,239320.014074589,0,2120.112226446512 -14456,17845,32532,32531,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,64,-4,-25.04958474275234,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,5.568226088547132,0,47.31,39.47,29.61,21.77,6.666666666666667,1,1,0,0,0,9,2,0,777.5,577911.7959450796,251361.4254964845,239320.014074589,0,2120.112226446512 -14457,17846,32533,-9,-9,-9,1,1,30,0,0,0,1,1,1,0,4,8.514893686039256,8.714848475410998,0,0,0,-966.769052053659,-9,1,1,2019,15,4,38,0,1,4,0,13.33425377289811,13.33425377289811,0,0,0,0,0,0,0,0,.6478951187773521,0,24.75,66.13,-9,-9,8.333333333333334,1,1,0,0,1,9,5,0,293,274784.6153788855,165184.920794461,240365.4362706947,123862.7606277356,1965.30914138428 -14458,17847,32534,32535,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.478697302075386,6.712244251646378,0,8,-2,72.33187344927015,0,3,3,2019,9,0,13,10,1,0,0,5.63865820801334,5.63865820801334,0,0,0,0,7,1,1,0,0,0,50.04,41.89,27.89,18.61,6.666666666666667,1,1,0,0,9,6,2,1,2133,188841.3614625757,94056.47634848428,236683.9987991298,0,1631.173144192684 -14458,17847,32535,32534,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,8,2,-43.03429991286941,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,11.71935604914288,0,0,1,1,0,0,0,27.89,18.61,50.04,41.89,0,1,1,0,1,0,6,2,1,2133,188841.3614625757,94056.47634848428,236683.9987991298,0,1631.173144192684 -14459,17848,32536,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,7.454773284751605,7.485034445263713,0,0,-1034.516520388538,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,6.815974750876985,7.30055943348195,55.61,29.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,141,452848.2409609524,229512.4076714622,359435.7087894958,0,1680.366280409236 -14460,17849,32537,-9,32538,32539,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.2932879742361,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1089.5,306359.1043549909,120989.8314453779,312211.4900200582,233985.0210147444,4850.279386239963 -14460,17849,32538,32539,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.866387618862234,9.325305430698691,0,7,0,44.68293988880944,0,2,2,2019,7,0,47,42,1,0,0,17.77394526944096,17.77394526944096,0,0,0,0,0,1,1,0,3.634393356446251,0,53.81,51.06,51.81,57.22,8.333333333333334,1,1,0,0,7,11,5,1,1089.5,306359.1043549909,120989.8314453779,312211.4900200582,233985.0210147444,4850.279386239963 -14460,17849,32539,32538,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.669103617386225,8.090333124704371,0,7,0,81.38515996747972,0,2,2,2019,12,0,36,39,1,0,0,14.28681183278036,14.28681183278036,0,0,0,0,0,1,1,0,4.924545709843336,0,51.81,57.22,53.81,51.06,1.666666666666667,1,1,0,0,8,11,5,1,1089.5,306359.1043549909,120989.8314453779,312211.4900200582,233985.0210147444,4850.279386239963 -14460,17849,32540,-9,32538,32539,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.8997998746847,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1089.5,306359.1043549909,120989.8314453779,312211.4900200582,233985.0210147444,4850.279386239963 -14461,17850,32541,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.358168393654136,6.432140851120786,0,0,-1056.348505059702,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.340718414435255,35.61,55.45,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,190,559412.0939008313,189126.2626750315,303117.8534217345,41181.46749622453,1069.910345565637 -14461,17851,32542,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-968.8471308602197,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,12,1,0,203,9538.372280014879,0,0,0,64.80318368338686 -14462,17852,32543,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.620246652554695,7.353851396346937,0,0,0,-911.029181466919,0,3,3,2019,6,0,30,30,1,0,0,8.50558710182851,8.50558710182851,0,0,0,0,0,1,1,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,1240,559285.8656168492,82736.88288275692,536965.2642536343,0,715.4958306892947 -14463,17853,32544,32545,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.27199977826683,7.952690101160927,0,32,-3,38.64007393106534,0,2,-9,2019,10,0,37,38,1,0,0,13.04653787883596,13.04653787883596,0,0,0,0,0,0,0,0,0,0,55.96,49.93,56.35,51.16,8.333333333333334,1,1,0,0,10,13,5,1,2382,1056138.869260916,517178.6818446033,356254.8667504209,0,3590.501684728167 -14463,17853,32545,32544,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.519893245189623,8.499968681614771,0,31,3,-75.93204301127128,0,3,3,2019,10,0,37,37,1,0,0,19.06177435570075,19.06177435570075,0,0,0,0,2,0,0,0,1.683014735591351,0,56.35,51.16,55.96,49.93,8.333333333333334,1,1,0,0,10,13,5,1,2382,1056138.869260916,517178.6818446033,356254.8667504209,0,3590.501684728167 -14463,17854,32546,-9,32544,32545,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.369431752822,1,2,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.649143763567134,0,55.61,50.3,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,609,-33308.68832042331,0,0,0,80.71116200465987 -14464,17855,32547,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-907.6255703035902,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.318910928194469,0,16.1582885595305,0,1,1,0,0,0,18.01,25.88,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,1461,173946.1874578209,0,0,0,823.499112529449 -14465,17856,32548,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,0,0,0,0,-957.7071812015852,0,1,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8337841418648,0,63.69,38.05,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,543,13870.37409934675,0,0,0,624.7791894566546 -14466,17857,32549,32550,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.085261440259389,9.038009282620029,0,22,-2,118.8846068374581,0,2,2,2019,15,4,44,43,1,4,0,23.00823938138442,23.00823938138442,0,0,0,0,0,0,0,0,5.684692700964275,0,54.45,56.22,48.19,38.51,6.666666666666667,1,1,0,0,9,2,5,1,1455.5,855417.669160312,866841.4195977969,187581.101857989,50011.89600279562,4938.3215724198 -14466,17857,32550,32549,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.404029388893548,8.633644920800869,0,23,2,5.109009327245806,0,2,3,2019,14,4,31,36,1,4,0,17.29165633396845,17.29165633396845,0,0,0,0,0,0,0,0,3.5032763672328,0,48.19,38.51,54.45,56.22,8.333333333333334,1,1,0,0,9,2,5,1,1455.5,855417.669160312,866841.4195977969,187581.101857989,50011.89600279562,4938.3215724198 -14467,17858,32551,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1044.46312345956,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,7.195943107670751,0,0,1,1,0,0,0,40.14,16.93,-9,-9,5,1,1,0,0,0,7,1,1,1281,0,0,0,0,314.6687464951272 -14468,17859,32552,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,5.265322076529654,5.353771291156584,0,0,-856.6783007188071,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.401469300742253,66.64,46.59,-9,-9,10,1,1,0,0,0,2,2,1,502,-126068.0719099043,0,0,0,1204.299058589519 -14469,17860,32553,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.951237799342368,6.320780935062649,0,0,-891.3062765928755,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.205811023644069,6.408056281499339,62.58,23.84,-9,-9,8.333333333333334,1,1,0,0,10,5,2,1,1925,1088630.579475285,99534.69845998446,983711.8977077318,0,1560.259677874491 -14470,17861,32554,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1025.90385602415,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,-9,-9,8,2,3,0,0,1,12,1,0,631,0,0,0,0,67.73462227998309 -14471,17862,32555,32556,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.409928513774268,8.402429678395443,47,2,24.11524240167018,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.243487096233094,8.457443394197712,57.73,41.12,54.2,57.49,10,1,1,0,0,0,6,5,1,813.5,2106801.525790391,1457145.886425538,424300.7912622212,0,5756.63491633288 -14471,17862,32556,32555,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.574664339219183,8.141806700099014,47,-2,1.430179513641465,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.648830194554291,8.47855483747078,54.2,57.49,57.73,41.12,10,1,1,0,0,5,6,5,1,813.5,2106801.525790391,1457145.886425538,424300.7912622212,0,5756.63491633288 -14472,17863,32557,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,7.547631294862603,7.85408607422189,0,0,0,-1001.219641908359,0,3,2,2019,8,0,30,30,1,0,0,7.441081840176258,7.441081840176258,0,0,0,0,14.5,0,0,0,0,0,60.69,29.25,-9,-9,8.333333333333334,1,1,0,1,5,12,3,0,1091,33676.09143569141,-70828.38848749356,0,0,1286.679689403712 -14472,17864,32558,-9,32557,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1036.397548605444,0,1,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,2,12,1,0,438,0,0,0,0,0 -14473,17865,32559,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.476477010012178,7.412643668890917,0,0,-1068.140299858056,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,3.130431594896546,4.234661210693695,24.27775391879523,0,1,1,0,6.439200687001153,7.484811353687864,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,284,653137.4197914458,155837.0599469052,394013.4891215098,0,2399.757688357595 -14474,17866,32560,-9,32561,32562,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1027.390224420497,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,0,5,5,1,605.75,762774.2672926981,506291.0608518481,276207.3064206557,94160.45269314664,4798.360856883126 -14474,17866,32561,32562,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.428780295243085,7.458773230235042,0,6,-6,-33.64472874457716,0,2,2,2019,5,0,30,17,1,0,0,8.128716662329941,8.128716662329941,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,4,2,0,0,6,5,5,1,605.75,762774.2672926981,506291.0608518481,276207.3064206557,94160.45269314664,4798.360856883126 -14474,17866,32562,32561,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.366411746821724,9.363793232376869,0,6,6,-78.26020788936199,0,-9,-9,2019,6,1,37,39,1,1,0,36.59915738405701,36.59915738405701,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,5,5,1,605.75,762774.2672926981,506291.0608518481,276207.3064206557,94160.45269314664,4798.360856883126 -14474,17866,32563,-9,32561,32562,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.5094519217266,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,605.75,762774.2672926981,506291.0608518481,276207.3064206557,94160.45269314664,4798.360856883126 -14474,17867,32564,-9,32561,32562,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-885.5986143938964,-9,2,1,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,349,76964.98037178512,0,0,0,0 -14475,17868,32565,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,5,0,7.572084007029224,7.502709340479465,0,0,-1056.833141647406,-9,1,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,7.458108319678685,0,35.53,63.81,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,869,125610.1090710925,0,0,0,2061.81968613069 -14476,17869,32566,32568,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.475826738147362,8.192839088720092,0,5,0,-127.3247350579155,0,1,1,2019,13,2,38,38,1,2,0,17.11986284686997,17.11986284686997,0,0,0,0,0,1,1,0,2.9618004322495,0,54.67,57.49,56.33,51.02,8.333333333333334,1,1,0,0,11,2,5,1,628,344012.1246843023,225960.534675822,0,0,4035.454933521732 -14476,17869,32567,-9,32566,32568,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.4294004608104,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,628,344012.1246843023,225960.534675822,0,0,4035.454933521732 -14476,17869,32568,32566,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.03439860787884,8.689383086057209,0,5,0,49.44493959715024,0,-9,-9,2019,11,0,38,37,1,0,0,25.20461886896834,25.20461886896834,0,0,0,0,0,1,1,0,4.198141031456982,0,56.33,51.02,54.67,57.49,8.333333333333334,1,1,0,0,9,2,5,1,628,344012.1246843023,225960.534675822,0,0,4035.454933521732 -14477,17870,32569,32570,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.662280325983005,8.919748410275625,35,-3,-43.70195470739509,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.304343437527436,8.798466478893774,55.3,55.6,52.26,47.71,8.333333333333334,1,1,0,0,6,4,5,1,720,2176709.748205026,1420766.209588475,369738.3469315664,0,5811.927438080148 -14477,17870,32570,32569,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.814446168220972,7.953512850629057,35,3,-28.11118322328149,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.291095957919902,7.81065959818537,52.26,47.71,55.3,55.6,8.333333333333334,1,1,0,0,8,4,5,1,720,2176709.748205026,1420766.209588475,369738.3469315664,0,5811.927438080148 -14478,17871,32571,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,6.988078437849475,6.582104040175691,0,0,-957.0044499666253,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,1.206972201208678,0,29.66849710576635,0,1,1,0,5.62968852746567,6.360861542415009,49.37,50.15,-9,-9,5,1,1,0,0,0,4,2,1,545,359081.0904901951,0,372036.8101782865,0,1267.132975034155 -14479,17872,32572,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.673369135690133,5.345748532090792,0,0,-1062.640866252695,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,2.611697106994042,0,23.76277745523761,0,1,1,0,0,5.723185315430026,58.67,28.59,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,1001,50849.02424939268,30223.05011889682,100957.2774274171,0,1463.413049955034 -14480,17873,32573,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.214221417888346,5.931376516293729,0,0,-1013.808708530937,0,2,-9,2019,9,1,0,0,4,1,0,0,0,1,0,70.2726407793062,0,0,1,1,0,0,6.075719148760789,54.2,30.07,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,225,332932.6959466579,85974.74743159933,313215.6069905196,0,868.3807817494169 -14481,17874,32574,32575,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.063432759342998,9.157771631569199,0,9,1,23.03729969992322,0,-9,-9,2019,5,0,41,42,1,0,0,22.82277562435392,22.82277562435392,0,0,0,0,0,0,0,0,2.932780680615817,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,533.5,409408.3402705621,45421.5023863984,290576.7843417482,244447.7412214637,4469.970605773804 -14481,17874,32575,32574,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.678026061223898,8.467235721712306,0,9,-1,57.8384020071365,0,2,2,2019,10,0,47,47,1,0,0,15.79514814580804,15.79514814580804,0,0,0,0,0,0,0,0,2.359558274784051,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,533.5,409408.3402705621,45421.5023863984,290576.7843417482,244447.7412214637,4469.970605773804 -14481,17875,32576,-9,32575,32574,1,1,21,0,0,0,2,2,0,0,5,0,5.806438609692314,5.777398874292251,0,0,-1003.571390762025,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.78213906890818,0,57.06,57.76,-9,-9,10,1,1,0,0,2,6,2,1,3982,-72606.48216341407,0,0,0,446.2175793954015 -14482,17876,32577,32579,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.387599919712674,8.603151887433421,0,9,-3,.9033806305275154,0,3,1,2019,6,0,44,40,1,0,0,13.30254042570701,13.30254042570701,0,0,0,0,0,1,1,0,0,0,62.15,49.94,58.05,54.52,10,1,1,0,0,10,10,5,1,659,106640.4128967282,70457.08183910395,209954.2066560855,123210.070189185,5815.581596502985 -14482,17876,32578,-9,32577,32579,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.6263373250169,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,659,106640.4128967282,70457.08183910395,209954.2066560855,123210.070189185,5815.581596502985 -14482,17876,32579,32577,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,9.265857681483748,9.209872650595161,0,9,3,7.14212813190717,0,-9,-9,2019,7,0,45,45,1,0,0,21.37852868177794,21.37852868177794,0,0,0,0,2,1,1,0,6.973779662978563,0,58.05,54.52,62.15,49.94,10,1,1,0,0,11,10,5,1,659,106640.4128967282,70457.08183910395,209954.2066560855,123210.070189185,5815.581596502985 -14482,17876,32580,-9,32577,32579,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.066694582454,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,659,106640.4128967282,70457.08183910395,209954.2066560855,123210.070189185,5815.581596502985 -14483,17877,32581,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.665298633188832,7.952313355077573,0,0,0,-1062.076222700047,0,-9,-9,2019,17,5,29,29,1,5,0,9.617973526669266,9.617973526669266,0,0,0,0,0,0,0,0,0,0,31.91,61.11,-9,-9,5,1,1,0,0,11,13,3,1,644,788307.8419067929,703128.8077610787,197733.9338683801,34045.30741992502,1067.280726029741 -14484,17878,32582,-9,32584,32583,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4259709757946,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,863,414601.6831885017,215306.0880236697,332855.3395053229,180928.9415677035,6813.495795220884 -14484,17878,32583,32584,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.077601071038304,8.903066375805706,0,19,2,-47.7165475336159,0,2,2,2019,11,0,78,42,1,0,0,12.38549732966202,12.38549732966202,0,0,0,0,0,0,0,0,4.965954750880432,0,44.17,49.99,53.27,45.95,6.666666666666667,1,1,0,0,12,12,5,1,863,414601.6831885017,215306.0880236697,332855.3395053229,180928.9415677035,6813.495795220884 -14484,17878,32584,32583,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.410823730543454,9.296891034239483,0,19,-2,20.80958463747811,0,2,2,2019,9,2,38,40,1,2,0,32.08588094315788,32.08588094315788,0,0,0,0,0,0,0,0,6.906093189046915,0,53.27,45.95,44.17,49.99,8.333333333333334,1,1,0,0,12,12,5,1,863,414601.6831885017,215306.0880236697,332855.3395053229,180928.9415677035,6813.495795220884 -14484,17878,32585,-9,32584,32583,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-826.2994713305307,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,863,414601.6831885017,215306.0880236697,332855.3395053229,180928.9415677035,6813.495795220884 -14485,17879,32586,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.157290184129706,5.597442266400677,0,0,-924.2942294727861,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.558448379934344,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1522,270113.121875792,73463.75629288141,212261.8376666741,0,804.1185737464383 -14486,17880,32587,32589,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.478301741556571,8.742419352977915,0,6,-2,-121.7959671535662,0,2,2,2019,6,0,30,22,1,0,0,24.75039266356203,24.75039266356203,0,0,0,0,2,1,1,0,0,0,57.73,54.53,43.9,57.01,8.333333333333334,1,1,0,0,8,9,5,1,1205.666666666667,1254018.386359932,1109410.877364984,410269.7440238991,287488.4444277186,3853.676613196251 -14486,17880,32588,-9,32587,32589,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-874.3603443995337,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1205.666666666667,1254018.386359932,1109410.877364984,410269.7440238991,287488.4444277186,3853.676613196251 -14486,17880,32589,32587,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,8.310483305111896,8.76611528949989,0,6,2,-142.271739176668,0,-9,-9,2019,10,0,37,37,1,0,0,16.77690855980513,16.77690855980513,0,0,0,0,0,1,1,0,0,0,43.9,57.01,57.73,54.53,5,1,1,0,0,10,9,5,1,1205.666666666667,1254018.386359932,1109410.877364984,410269.7440238991,287488.4444277186,3853.676613196251 -14487,17881,32590,32591,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,4.953641584439577,4.837957379320514,8,4,73.44324200056896,-9,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.2407072744502141,4.914526335031436,45.53,47.41,57.16,56.15,3.333333333333333,1,1,0,0,0,4,2,1,248.5,240607.2751644723,98564.85803717395,0,0,1009.959429268549 -14487,17881,32591,32590,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,-4,109.3565948416379,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.162766051098878,0,57.16,56.15,45.53,47.41,10,1,1,0,0,0,4,2,1,248.5,240607.2751644723,98564.85803717395,0,0,1009.959429268549 -14488,17882,32592,-9,32594,32595,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.585139476867,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.9617851569453126,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,968.25,2800048.751077655,2073915.554189262,368399.4406658851,0,6158.616012422299 -14488,17882,32593,-9,32594,32595,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.122461917025,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,968.25,2800048.751077655,2073915.554189262,368399.4406658851,0,6158.616012422299 -14488,17882,32594,32595,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.896469328904029,8.975514994257059,0,20,-1,169.3895579979935,0,1,1,2019,11,3,80,30,1,3,0,11.17938786832805,11.17938786832805,0,0,0,0,0,0,0,0,0,0,46.53,61.33,55.61,50.3,10,1,1,0,0,5,5,5,1,968.25,2800048.751077655,2073915.554189262,368399.4406658851,0,6158.616012422299 -14488,17882,32595,32594,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.04946916039099,9.084595937124323,0,10,1,-16.78658241528982,0,-9,-9,2019,7,0,60,50,1,0,0,15.89997229102113,15.89997229102113,0,0,0,0,0,0,0,0,3.228418123099296,0,55.61,50.3,46.53,61.33,8.333333333333334,1,1,0,0,4,5,5,1,968.25,2800048.751077655,2073915.554189262,368399.4406658851,0,6158.616012422299 -14489,17883,32596,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1006.492408619431,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,0,1,0,0,49,55,-9,-9,7,2,3,0,1,6,6,1,0,1199,-57846.84519771551,0,0,0,290.1037077972121 -14489,17883,32597,-9,32596,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.139402007549,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,0,1199,-57846.84519771551,0,0,0,290.1037077972121 -14490,17884,32598,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.076771105524646,8.595868287167017,6.714970383716446,0,0,-1023.99747607183,0,2,2,2019,10,1,19,26,1,1,0,21.01878835564919,21.01878835564919,0,0,0,0,7,1,1,0,7.7193488672743,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,526.3333333333334,482754.6325241107,445998.0102050431,66049.40558250032,2045.322916290286,2085.905588313197 -14490,17884,32599,-9,32598,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.384397937984,-9,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,0,0,0,13,3,1,526.3333333333334,482754.6325241107,445998.0102050431,66049.40558250032,2045.322916290286,2085.905588313197 -14490,17884,32600,-9,32598,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-897.4376732667165,-9,1,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,3,1,526.3333333333334,482754.6325241107,445998.0102050431,66049.40558250032,2045.322916290286,2085.905588313197 -14491,17885,32601,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,5.210159687122935,5.126613698837509,0,0,-984.581362669717,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,5.047444369278827,54.28,14.37,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,128,-5619.547961027194,32505.29594405312,0,0,811.9458266827176 -14492,17886,32602,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.827676443786089,8.433011291415603,0,0,0,-907.4855508323465,0,1,-9,2019,11,2,61,62,1,2,0,11.01417770808788,11.01417770808788,0,0,0,0,7,0,0,0,0,0,43.65,58.28,-9,-9,6.666666666666667,1,1,0,0,6,2,5,0,259,71246.14705189428,-551.3052058103276,78427.23092085755,64659.07448530325,2490.615423897369 -14493,17887,32603,32604,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,5.866712209718663,6.242878106933841,0,9,-5,59.86737458347138,0,2,2,2019,13,2,12,20,1,2,0,4.29291988752878,4.29291988752878,0,0,0,0,0,0,0,0,1.651246570735924,0,31.86,51.64,58.62,52.91,3.333333333333333,1,1,0,0,3,12,4,1,199,569447.1489711854,334267.8458163349,274253.8332302436,71263.31774280312,2862.326565390974 -14493,17887,32604,32603,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.638739777224233,8.465082480736857,0,33,5,-64.758617043847,0,2,2,2019,11,0,65,60,1,0,0,9.351655223673689,9.351655223673689,0,0,0,0,0,0,0,0,0,0,58.62,52.91,31.86,51.64,0,1,1,0,0,8,12,4,1,199,569447.1489711854,334267.8458163349,274253.8332302436,71263.31774280312,2862.326565390974 -14494,17888,32605,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,4.775757917955994,4.938942876042024,0,0,-951.1676925053073,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,.0072951590063526,0,0,1,1,0,3.912876269637947,4.867123519804998,47.63,23.4,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,320,-78501.58093709896,-10429.89569333574,0,0,723.2660191283776 -14495,17889,32606,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,7.21104136246967,7.310924101590367,0,0,-957.4534493388485,0,3,3,2019,23,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.224318773452083,7.366046286443945,40.31,14.24,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,190,380306.4730842037,282406.7096474851,133475.5776615051,22146.36632713935,940.6446534278473 -14496,17890,32607,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.030862781148526,7.81879217858687,0,0,0,-1025.282917749132,0,2,3,2019,6,0,35,40,1,0,0,10.37946536754672,10.37946536754672,0,0,0,0,0,0,0,0,0,0,58.75,48.57,-9,-9,1.666666666666667,1,1,0,0,7,4,4,1,1982,512959.8062052282,256989.9620463549,130490.190489278,44958.22808215283,1501.804227298631 -14496,17891,32608,-9,32607,-9,1,1,36,0,0,0,2,2,-9,0,2,8.50116108596546,8.639538181091224,0,0,0,-978.7176671374957,0,2,2,2019,11,0,65,55,1,0,1,9.050462627635577,9.050462627635577,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,3.333333333333333,1,1,0,0,6,4,5,1,994,319057.0566430804,265596.4474440775,93086.19456740354,86648.26956984014,1560.071983931334 -14496,17892,32609,-9,32607,-9,1,1,32,0,0,0,2,2,-9,0,3,7.612082770058334,7.406302072405005,0,0,0,-912.9453392342203,0,2,-9,2019,5,0,47,40,1,0,1,6.534153555175582,6.534153555175582,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,4,3,1,662,34973.63083738825,0,0,0,724.4273448209331 -14497,17893,32610,32611,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,8.099969209320701,8.014709758192087,59,0,15.75547636708617,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.650336168282653,7.995998091240587,62.83,33.62,59.43,58.05,10,1,1,0,0,0,10,4,1,458,856059.6338686089,179543.3978649403,532521.9560847249,0,3865.203637171815 -14497,17893,32611,32610,-9,-9,1,1,81,0,0,0,1,1,-9,0,5,0,7.897331828540203,7.833473104733516,59,0,6.894190722698306,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.432760365354275,7.775456078084326,59.43,58.05,62.83,33.62,10,1,1,0,0,0,10,4,1,458,856059.6338686089,179543.3978649403,532521.9560847249,0,3865.203637171815 -14498,17894,32612,32614,-9,-9,1,1,26,1,1,0,3,3,-9,1,2,7.451446148072208,7.5346249449444,0,3,1,102.5432776482699,0,-9,-9,2019,22,7,42,42,1,7,0,5.319266108577968,5.319266108577968,0,0,0,0,0,1,1,0,0,0,23.41,45.01,29.94,38.14,5,1,1,0,0,1,11,2,0,849,-97318.78897993192,0,0,0,2177.998995798471 -14498,17894,32613,-9,32614,32612,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.767514271244,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,849,-97318.78897993192,0,0,0,2177.998995798471 -14498,17894,32614,32612,-9,-9,1,0,25,1,1,0,2,2,-9,0,1,0,0,0,3,-1,24.79143667876559,0,-9,-9,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,38.14,23.41,45.01,6.666666666666667,1,1,0,1,6,11,2,0,849,-97318.78897993192,0,0,0,2177.998995798471 -14499,17895,32615,-9,32616,32617,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.114790729588,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,833.6666666666666,692783.1490932989,640033.7674186717,184965.2647999219,100445.1795019507,2857.667872301835 -14499,17895,32616,32617,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,7.486862415027932,7.67670926469877,0,10,-3,-110.3005579484188,0,3,3,2019,12,0,20,20,1,0,0,11.49564524974555,11.49564524974555,0,0,0,0,0,1,1,0,0,0,40.67,27.39,62.39,56.71,6.666666666666667,1,1,0,0,13,5,4,1,833.6666666666666,692783.1490932989,640033.7674186717,184965.2647999219,100445.1795019507,2857.667872301835 -14499,17895,32617,32616,-9,-9,1,1,50,0,1,0,3,3,-9,0,5,8.281928761076241,8.28125679642064,0,10,3,8.790977396463514,0,-9,-9,2019,4,0,38,43,1,0,0,11.32341112247718,11.32341112247718,0,0,0,0,0,1,1,0,0,0,62.39,56.71,40.67,27.39,0,1,1,0,0,13,5,4,1,833.6666666666666,692783.1490932989,640033.7674186717,184965.2647999219,100445.1795019507,2857.667872301835 -14500,17896,32618,32619,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.698543487556234,8.771470688085723,0,28,-1,48.03897652881856,0,2,2,2019,7,0,42,46,1,0,0,18.45749173976367,18.45749173976367,0,0,0,0,0,0,0,0,1.197554477490192,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,818,200437.3293392778,113336.2702202913,186746.7209789249,55877.34982738715,7502.968753984779 -14500,17896,32619,32618,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.998850264882183,9.639491488753864,0,28,1,74.38799285308508,0,2,2,2019,8,0,55,60,1,0,0,29.11585053259118,29.11585053259118,0,0,0,0,0,0,0,0,5.100299740440736,0,57.16,56.15,62.39,56.71,10,1,1,0,0,11,5,5,1,818,200437.3293392778,113336.2702202913,186746.7209789249,55877.34982738715,7502.968753984779 -14500,17897,32620,-9,32618,32619,1,0,24,0,0,0,1,1,-9,0,4,8.460264803997189,8.474827641171109,0,0,0,-1009.51243971471,0,2,2,2019,12,2,40,40,1,2,1,13.82816324743032,13.82816324743032,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,1025,99188.19441874517,-185574.854112184,0,0,1904.739799298054 -14500,17898,32621,-9,32618,32619,1,1,19,0,0,1,2,0,0,0,5,0,6.322027384741809,6.466420800178607,0,0,-984.1428320168819,-9,2,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,6.350031675830457,0,34.8,63.98,-9,-9,10,1,1,0,0,2,5,2,1,1140,-4523.089498676349,0,0,0,-35.99014918939525 -14501,17899,32622,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-933.0843816984017,0,2,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1096,89995.58335233536,0,0,0,1520.786487203448 -14502,17900,32623,32624,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.477428695196034,8.563423189735145,0,30,-1,44.23082798445542,0,3,3,2019,12,0,40,36,1,0,0,23.36645836819187,23.36645836819187,0,0,0,0,14.5,0,0,0,0,0,35.54,59.05,42.62,46.82,6.666666666666667,1,1,0,0,10,8,5,1,197.5,2005682.123216715,1253423.957296568,642888.618684609,0,3358.792311363271 -14502,17900,32624,32623,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.593532990547155,8.795024707001977,0,8,1,-103.9583431109031,0,3,2,2019,12,0,42,43,1,0,0,13.5700849874786,13.5700849874786,0,0,0,0,42,0,0,0,.2353410704432556,0,42.62,46.82,35.54,59.05,6.666666666666667,1,1,0,0,9,8,5,1,197.5,2005682.123216715,1253423.957296568,642888.618684609,0,3358.792311363271 -14503,17901,32625,32628,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.728646784783024,8.535101354129866,0,26,0,-72.33137469766388,0,2,2,2019,7,0,39,38,1,0,0,20.5962732197816,20.5962732197816,0,0,0,0,0,1,1,0,0,0,59.14,52.5,49.46,56.91,8.333333333333334,1,1,0,0,9,1,3,1,777.25,1603693.475010377,1215582.316835164,309514.0482609322,272641.4004172067,2433.519918148426 -14503,17901,32626,-9,32625,32628,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.2238565945167,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,1,3,1,777.25,1603693.475010377,1215582.316835164,309514.0482609322,272641.4004172067,2433.519918148426 -14503,17901,32627,-9,32625,32628,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1017.163853159028,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,1,3,1,777.25,1603693.475010377,1215582.316835164,309514.0482609322,272641.4004172067,2433.519918148426 -14503,17901,32628,32625,-9,-9,1,1,53,0,2,0,3,3,-9,0,4,0,0,0,36,9,-17.20751959047658,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,59.14,52.5,6.666666666666667,1,1,0,0,0,1,3,1,777.25,1603693.475010377,1215582.316835164,309514.0482609322,272641.4004172067,2433.519918148426 -14504,17902,32629,-9,-9,-9,1,0,27,0,0,0,1,1,1,0,5,8.32479602254624,8.776268725680197,6.789730076203898,0,0,-958.3767186619375,-9,1,1,2019,8,1,57,0,1,1,0,10.54370281216097,10.54370281216097,0,0,0,0,0,0,0,0,6.96350669444563,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,436,0,0,0,0,2693.871392821302 -14505,17903,32630,-9,-9,32632,1,1,26,0,0,0,2,2,-9,0,4,7.926431430475041,8.097279072216439,0,0,0,-948.1600819226118,0,-9,2,2019,10,0,38,39,1,0,1,10.08437997082024,10.08437997082024,0,0,0,0,0,0,0,0,0,0,45.34,57.55,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,94,117251.9670099277,0,0,0,967.7579565640156 -14505,17904,32631,-9,-9,32632,1,0,22,0,0,0,2,2,-9,0,4,7.693183099575642,7.788077994818154,0,0,0,-1013.097151452168,-9,-9,2,2019,11,0,16,0,1,2,1,24.82731249580019,24.82731249580019,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,4,1,722,156645.3872189335,0,0,0,1533.949943984239 -14505,17905,32632,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.512073772413096,8.111903247962141,0,0,0,-948.6670170520979,-9,-9,-9,2019,9,0,38,0,1,1,0,8.758084994491911,8.758084994491911,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,8,4,6,0,0,1,12,4,1,462,165157.8148769561,62349.89304430862,0,0,1935.098712096014 -14506,17906,32633,32634,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,4.794621441745146,5.028896541541712,43,-3,15.80320775678027,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.710879814488817,5.07016733224794,58.89,48.6,60.12,54.8,10,1,1,0,0,6,7,2,1,577.5,751899.7898115495,40346.81177628868,416499.9204666243,0,1776.05343685713 -14506,17906,32634,32633,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.135976715052638,4.571491669694788,43,3,97.00166423600103,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.508573508680867,4.4706346791277,60.12,54.8,58.89,48.6,8.333333333333334,1,1,0,0,4,7,2,1,577.5,751899.7898115495,40346.81177628868,416499.9204666243,0,1776.05343685713 -14507,17907,32635,32636,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,6.128783356815748,6.02140806733988,30,6,33.50391430646506,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.302525219451327,0,51.58,50.6,42.88,43.76,8.333333333333334,1,1,0,0,0,2,4,1,1205,1159674.722648656,692265.0873608226,404721.2298096154,0,4612.556309852082 -14507,17907,32636,32635,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,8.561761310122934,8.658409823643408,30,-6,-62.18706371635748,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,14.5,0,0,0,8.071866685123195,8.654448643285477,42.88,43.76,51.58,50.6,6.666666666666667,1,1,0,0,0,2,4,1,1205,1159674.722648656,692265.0873608226,404721.2298096154,0,4612.556309852082 -14508,17908,32637,32638,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.959760042484149,7.941570083707957,6.756080645524339,8,-2,99.8099209179627,0,-9,-9,2019,11,0,15,7,1,2,0,23.33147407389128,23.33147407389128,0,0,0,0,0,0,0,0,7.234684051275128,6.500032029828416,49,48,57.06,57.76,7,1,1,0,0,10,2,4,1,666.5,2423522.755246308,1691366.053280796,414071.5240228928,0,2940.802729454725 -14508,17908,32638,32637,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.066144659440297,7.205715426829672,0,36,2,-79.46018250992702,0,3,3,2019,5,0,30,30,1,0,0,4.54666159487055,4.54666159487055,0,0,0,0,0,0,0,0,6.261043157327475,0,57.06,57.76,49,48,8.333333333333334,1,1,0,0,10,2,4,1,666.5,2423522.755246308,1691366.053280796,414071.5240228928,0,2940.802729454725 -14509,17909,32639,32640,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,7,-4,-158.7628962978437,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.961829126208732,0,49.35,59.64,58.15,52.91,8.333333333333334,1,1,0,0,5,2,3,1,950,1300338.932961488,729488.3308669368,294323.2880191781,0,2429.489775641952 -14509,17909,32640,32639,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.370062034983432,8.356024903532235,21,4,26.32814962675733,0,2,2,2019,7,1,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,6.886054558630895,7.986963129410919,58.15,52.91,49.35,59.64,8.333333333333334,1,1,0,0,9,2,3,1,950,1300338.932961488,729488.3308669368,294323.2880191781,0,2429.489775641952 -14510,17910,32641,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.316701105370447,8.772418794362668,8.320455530225853,0,0,-920.1599762877383,0,3,3,2019,11,0,38,40,1,0,0,11.43876764346352,11.43876764346352,0,0,0,0,2,0,0,0,7.700681767276895,8.48667361621751,59.28,37.4,-9,-9,5,1,1,0,0,12,1,5,1,168,939059.0997739681,720846.0271406056,128218.5163634879,83163.48039869001,4024.622518781911 -14511,17911,32642,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-947.9156444157366,0,3,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,16.08,39.11,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,624,294539.8985050742,0,0,0,532.591426018624 -14511,17912,32643,-9,32642,-9,1,1,21,0,0,0,2,2,-9,0,4,7.679735320136599,7.650779741245743,0,0,0,-937.8016784083886,0,3,-9,2019,11,0,40,25,1,2,1,5.925087830419405,5.925087830419405,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,0,892,166170.1429870102,43809.09502438658,0,0,885.7927006812833 -14512,17913,32644,-9,32646,32645,1,1,21,0,0,0,2,2,1,0,5,7.788502433198549,7.827634509141351,0,0,0,-951.6337756037143,-9,2,2,2019,12,1,39,0,1,1,1,7.846414884873486,7.846414884873486,0,0,0,0,0,0,0,0,3.298592876934173,0,47.58,56.73,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,1864,-83189.39624361051,0,0,0,1366.604253920969 -14512,17914,32645,32646,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.912149817277212,8.637298078660447,0,30,-1,-30.36877467265387,0,3,3,2019,7,0,37,40,1,0,0,20.26884754007888,20.26884754007888,0,0,0,0,0,0,0,0,4.350527297754352,0,57.16,56.15,46.98,59.35,1.666666666666667,1,1,0,0,8,4,5,1,369,819145.3399773201,539959.4448176026,149193.2509653267,0,3109.644485956632 -14512,17914,32646,32645,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.723988505229997,7.546264406377581,0,30,1,26.27135193098682,0,3,3,2019,12,2,18,18,1,2,0,13.34167489032308,13.34167489032308,0,0,0,0,0,0,0,0,5.055194049114159,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,369,819145.3399773201,539959.4448176026,149193.2509653267,0,3109.644485956632 -14513,17915,32647,32648,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.833475841278913,7.632289285710133,0,6,-6,13.58305817893554,0,-9,-9,2019,6,1,41,40,1,1,0,6.596289899017932,6.596289899017932,0,0,0,0,0,0,0,0,0,0,41.3,60.77,39.41,61.57,10,1,1,0,0,9,9,4,1,1451,-152839.973852353,-26904.67198669892,0,0,2859.301560801789 -14513,17915,32648,32647,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.435593648872571,8.430526690945122,0,6,6,20.12281140525349,0,-9,-9,2019,13,1,38,38,1,1,0,13.09899073212523,13.09899073212523,0,0,0,0,0,0,0,0,0,0,39.41,61.57,41.3,60.77,6.666666666666667,1,1,0,0,5,9,4,1,1451,-152839.973852353,-26904.67198669892,0,0,2859.301560801789 -14514,17916,32649,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.915740351733,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,543,-79683.97241372707,0,0,0,744.961152773777 -14515,17917,32650,-9,32652,32653,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.378314140155,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14515,17917,32651,-9,32652,32653,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.913476832975,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14515,17917,32652,32653,-9,-9,1,0,38,0,4,0,1,1,-9,0,4,6.722082286998525,6.636530990743654,0,16,-1,-93.59472627089966,0,3,3,2019,11,0,24,0,1,0,0,3.218178463043189,3.218178463043189,0,0,0,0,0,1,1,0,0,0,51.49,57.57,35.66,56.89,6.666666666666667,2,3,0,0,5,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14515,17917,32653,32652,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,8.98563665209293,9.003390202458585,0,17,1,101.7930778289189,0,3,3,2019,16,5,44,37,1,5,0,19.45022939798116,19.45022939798116,0,0,0,0,0,1,1,0,7.043120111976608,0,35.66,56.89,51.49,57.57,5,2,3,0,0,9,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14515,17917,32654,-9,32652,32653,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-919.7652538978123,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14515,17917,32655,-9,32652,32653,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.464377475157,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,1,794,568922.1601694211,380795.9702107189,237520.8143347022,63743.70929399845,3618.544705781909 -14516,17918,32656,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.458868686002153,5.641586220545444,0,0,-940.365460213147,0,3,2,2019,14,4,0,0,4,4,0,0,0,1,3.633588085147828,2.193506281997153,41.65700619333851,0,1,1,0,.2076850439101623,5.588461130855499,51.85,11.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,582,132406.883373139,107275.1347307594,0,0,1695.421983450551 -14517,17919,32657,-9,-9,-9,1,1,52,0,0,0,1,1,1,0,3,8.37731519203267,8.417316993144613,0,0,0,-939.5920515507635,-9,2,2,2019,7,0,51,0,1,0,0,9.361480593876625,9.361480593876625,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,561,949571.1657072477,532653.1802701229,318287.4333491667,0,1779.223225938007 -14518,17920,32658,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.671521583168,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.5,50.17,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,446,673865.4349292155,0,510235.7922863872,0,1190.926050970265 -14519,17921,32659,32662,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.432401814571298,6.819373711095963,0,7,-1,134.6941337251865,0,2,3,2019,8,0,30,20,1,0,0,4.496028222054445,4.496028222054445,0,0,0,0,0,1,1,0,0,0,47.66,52.33,46.5,58.26,8.333333333333334,1,1,0,0,8,12,4,1,415.75,395907.1470996704,329448.7639574261,158331.6285079618,64424.1802368381,3061.614425772051 -14519,17921,32660,-9,32659,32662,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.592579678711,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,415.75,395907.1470996704,329448.7639574261,158331.6285079618,64424.1802368381,3061.614425772051 -14519,17921,32661,-9,32659,32662,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.8571556056581,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,415.75,395907.1470996704,329448.7639574261,158331.6285079618,64424.1802368381,3061.614425772051 -14519,17921,32662,32659,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.46025807844541,8.652620872754468,0,7,1,60.66907089237855,0,2,2,2019,6,0,40,42,1,0,0,14.76467886185778,14.76467886185778,0,0,0,0,0,1,1,0,0,0,46.5,58.26,47.66,52.33,8.333333333333334,1,1,0,0,9,12,4,1,415.75,395907.1470996704,329448.7639574261,158331.6285079618,64424.1802368381,3061.614425772051 -14520,17922,32663,32664,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.680972385431235,8.918890685777423,8.781485884152019,33,6,-58.68086292888387,0,2,2,2019,5,0,4,35,1,0,0,28.43063204818441,28.43063204818441,0,0,0,0,0,0,0,0,6.572976142400068,8.775556954236828,60.02,56.42,57.06,57.76,10,1,1,0,0,10,5,5,1,1003,979903.5854272195,445039.4325351192,217784.5628654513,0,6297.860882754392 -14520,17922,32664,32663,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.656194603349965,8.83849018525688,0,34,-6,-.824185491493361,0,3,3,2019,7,0,37,37,1,0,0,16.41258273552234,16.41258273552234,0,0,0,0,0,0,0,0,.8222965851549837,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,5,5,1,1003,979903.5854272195,445039.4325351192,217784.5628654513,0,6297.860882754392 -14521,17923,32665,32668,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.788148328333351,8.259366388539595,0,8,0,11.67141141726492,0,-9,-9,2019,6,0,40,40,1,0,0,16.56988842481536,16.56988842481536,0,0,0,0,0,1,1,0,0,0,52.25,59.66,51.77,58.57,8.333333333333334,1,1,0,0,9,13,4,1,751,407356.5292347341,303657.0217416326,213812.2175148329,117027.9657603508,3682.884497518614 -14521,17923,32666,-9,32668,32665,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4780796615,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,751,407356.5292347341,303657.0217416326,213812.2175148329,117027.9657603508,3682.884497518614 -14521,17923,32667,-9,32668,32665,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-899.7666966689369,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,4,1,751,407356.5292347341,303657.0217416326,213812.2175148329,117027.9657603508,3682.884497518614 -14521,17923,32668,32665,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.39179448923638,8.134886911794357,0,19,0,-30.04723396659753,0,3,3,2019,8,0,30,32,1,0,0,14.46458396957893,14.46458396957893,0,0,0,0,0,1,1,0,0,0,51.77,58.57,52.25,59.66,8.333333333333334,1,1,0,0,9,13,4,1,751,407356.5292347341,303657.0217416326,213812.2175148329,117027.9657603508,3682.884497518614 -14522,17924,32669,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.068611218123015,7.103465331736116,0,0,-1047.101583461219,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.254804743027577,7.118499117447801,42.24,48.17,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,510,448211.9172530008,237159.0652398606,125784.6383853597,0,2047.922615871426 -14523,17925,32670,32671,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.667860277536352,9.81128668385286,0,8,-3,59.68178426926297,0,1,1,2019,9,0,45,43,1,0,0,40.46931609054652,40.46931609054652,0,0,0,0,0,0,0,0,0,0,52.77,55.33,56.47,51.37,8.333333333333334,1,1,0,0,9,8,5,1,439.5,66825.05921646197,52539.28330162374,277688.9146392549,228862.5323491424,9035.450020973238 -14523,17925,32671,32670,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.249923203488311,9.069791764659573,0,8,3,15.32751037333545,0,2,3,2019,5,0,52,50,1,0,0,24.10207576978956,24.10207576978956,0,0,0,0,0,0,0,0,3.551104909501095,0,56.47,51.37,52.77,55.33,8.333333333333334,1,1,0,0,10,8,5,1,439.5,66825.05921646197,52539.28330162374,277688.9146392549,228862.5323491424,9035.450020973238 -14524,17926,32672,32673,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.341014313082486,7.147459809534832,0,34,-8,4.178028537785108,0,3,3,2019,7,0,24,24,1,0,0,8.357872728932504,8.357872728932504,0,0,0,0,0,0,0,0,0,0,57.33,53.46,61.52,45.11,6.666666666666667,1,1,0,0,11,12,5,1,1323,302366.9598514852,174736.7662235321,89391.71375193501,38748.42281078325,11255.96295901952 -14524,17926,32673,32672,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.718542109548945,10.26907225449223,10.04151897977228,34,8,8.619225428992635,0,3,3,2019,6,0,32,32,1,0,0,26.15928683774971,26.15928683774971,0,0,0,0,0,0,0,0,9.723191275042376,9.765749849898528,61.52,45.11,57.33,53.46,8.333333333333334,1,1,0,0,11,12,5,1,1323,302366.9598514852,174736.7662235321,89391.71375193501,38748.42281078325,11255.96295901952 -14525,17927,32674,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1005.291979783284,0,-9,-9,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,30.1,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,417,64081.25299782809,0,0,0,2749.105584996766 -14526,17928,32675,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.615144851993751,7.09636768823087,0,0,-989.1404302331933,0,3,3,2019,21,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,2.877522243263154,6.764282356932515,32.89,33.48,-9,-9,5,1,1,0,0,0,11,2,1,961,457647.6275893803,113568.2862606402,227573.427874441,0,2256.699790192053 -14527,17929,32676,-9,-9,-9,1,0,64,0,1,0,2,2,-9,0,3,0,6.042226274089154,6.008186789237761,0,0,-1050.694864601182,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,0,5.921174257077385,38.17,59.79,-9,-9,8.333333333333334,1,1,0,1,7,2,2,1,245,148177.5047853463,79039.56891406648,112649.6839238213,47717.2732542977,596.0789187119047 -14527,17930,32677,-9,32676,-9,1,0,39,0,1,0,1,1,-9,1,1,0,6.440602023205988,6.359665119240969,0,0,-1019.959947511018,0,2,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,6.795994783867793,0,24.08,28.39,-9,-9,8.333333333333334,1,1,0,1,0,2,2,1,734,16470.50757817256,49340.92757929159,0,0,862.2316593642195 -14527,17930,32678,-9,32677,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.147913077872,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,734,16470.50757817256,49340.92757929159,0,0,862.2316593642195 -14528,17931,32679,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,8.3359000588245,8.359737607009034,0,0,0,-914.2114940152604,0,2,3,2019,15,4,34,30,1,4,0,14.01861090278099,14.01861090278099,0,0,0,0,0,1,1,0,0,0,28.22,59.23,-9,-9,3.333333333333333,1,1,0,1,9,9,3,1,416,341480.6420516885,111190.021785384,315679.5897029963,13442.01157197811,1793.604774775338 -14529,17932,32680,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.820930964175611,6.521934937772238,0,0,-965.5104371993144,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.970493492622915,7.060987912666738,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,578,388386.5136150427,102226.2048013278,301445.3024544006,50417.18129331675,764.8727632637359 -14530,17933,32681,-9,32682,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.314344258163,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,890.3333333333334,131402.137290149,0,0,0,1486.238427362832 -14530,17933,32682,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1065.612599261208,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,890.3333333333334,131402.137290149,0,0,0,1486.238427362832 -14530,17933,32683,-9,32682,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.3680823852986,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,890.3333333333334,131402.137290149,0,0,0,1486.238427362832 -14531,17934,32684,-9,32685,-9,1,1,46,0,0,0,1,1,-9,0,2,7.637280407995877,7.697094373655696,0,0,0,-1095.74274396664,0,2,-9,2019,4,0,30,30,1,0,0,7.660987899360699,7.660987899360699,0,0,0,0,2,1,1,0,4.166352430035741,0,55.2,49.4,-9,-9,8.333333333333334,4,2,0,0,9,7,3,0,1302,-107622.0981704974,0,0,0,978.5562344005518 -14531,17935,32685,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-969.0101867390949,0,-9,-9,2019,25,10,0,0,4,10,0,0,0,1,0,7.020618496196279,0,0,1,1,0,0,0,31.45,40.14,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,370,391148.7221888375,0,358079.5720967371,0,130.0100038473638 -14532,17936,32686,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.208014063154566,8.52788904231239,0,0,0,-970.8340618567845,0,2,3,2019,12,3,40,50,1,3,0,9.27108583252579,9.27108583252579,0,0,0,0,0,0,0,0,0,0,43.01,55.15,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,815,1618451.085099633,1149611.298221913,382630.6244765385,0,1814.411016686717 -14533,17937,32687,-9,32689,32688,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.964236289833,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,870,682908.2979673315,488145.9415876619,246925.427477846,90896.03447014926,4062.226858956295 -14533,17937,32688,32689,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.58655789464934,8.439151527425693,0,7,2,-57.34327397415976,0,2,2,2019,12,2,37,40,1,2,0,14.7467105316266,14.7467105316266,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.71,61.53,3.333333333333333,1,1,0,0,9,2,4,1,870,682908.2979673315,488145.9415876619,246925.427477846,90896.03447014926,4062.226858956295 -14533,17937,32689,32688,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.5773356952838,8.466688864456801,0,7,-2,-31.46290828763818,0,2,2,2019,9,0,38,41,1,0,0,15.78573070288955,15.78573070288955,0,0,0,0,0,1,1,0,0,0,48.71,61.53,45.56,60.26,8.333333333333334,1,1,0,0,8,2,4,1,870,682908.2979673315,488145.9415876619,246925.427477846,90896.03447014926,4062.226858956295 -14533,17937,32690,-9,32689,32688,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-840.8147644309504,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,870,682908.2979673315,488145.9415876619,246925.427477846,90896.03447014926,4062.226858956295 -14534,17938,32691,-9,32694,32692,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.95870520778,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,0,1737.5,197141.0720239786,26446.93754410052,161960.3961558796,131939.854610682,2784.61525977017 -14534,17938,32692,32694,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.591996764900552,8.596513827591467,0,9,0,9.212505041884409,0,1,1,2019,13,1,37,45,1,1,0,16.38784005579481,16.38784005579481,0,0,0,0,0,1,1,0,2.305942102093203,0,36.2,60.58,31.97,59.74,8.333333333333334,1,1,0,0,9,13,4,0,1737.5,197141.0720239786,26446.93754410052,161960.3961558796,131939.854610682,2784.61525977017 -14534,17938,32693,-9,32694,32692,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.854573143341,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,1737.5,197141.0720239786,26446.93754410052,161960.3961558796,131939.854610682,2784.61525977017 -14534,17938,32694,32692,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,7.07083963421069,7.128680132104694,0,9,0,63.82470358689011,0,-9,-9,2019,18,6,15,15,1,6,0,9.639159297939727,9.639159297939727,0,0,0,0,0,1,1,0,2.094350626819411,0,31.97,59.74,36.2,60.58,6.666666666666667,1,1,0,0,3,13,4,0,1737.5,197141.0720239786,26446.93754410052,161960.3961558796,131939.854610682,2784.61525977017 -14535,17939,32695,32696,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.047029684389361,8.276439029781843,0,1,-1,88.616925855055,-9,3,3,2019,9,1,30,0,1,1,0,9.65768479154994,9.65768479154994,0,0,0,0,0,1,1,0,0,0,51.33,24.03,38.51,48.9,5,1,1,0,0,3,13,3,1,699.5,309278.5235206976,282443.1417761311,0,0,1127.046483810108 -14535,17939,32696,32695,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,1,1,2.447797023374916,-9,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,48.9,51.33,24.03,6.666666666666667,1,1,0,0,0,13,3,1,699.5,309278.5235206976,282443.1417761311,0,0,1127.046483810108 -14535,17940,32697,-9,32696,32695,1,1,18,0,0,1,3,0,-9,0,4,0,0,0,0,0,-954.8598367672562,-9,2,3,2019,15,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,126,20976.76181863247,0,0,0,-345.2083607836485 -14536,17941,32698,-9,32699,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1012.905808636884,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,10,3,1,1647,104125.3280259006,16851.8958445663,185849.7658633532,83184.76997475776,1357.259319336856 -14536,17941,32699,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.064085515881059,7.993345337071774,0,0,0,-1047.273776638453,0,2,2,2019,12,0,38,23,1,0,0,10.57906139273416,10.57906139273416,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,1647,104125.3280259006,16851.8958445663,185849.7658633532,83184.76997475776,1357.259319336856 -14537,17942,32700,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,7.550026653447682,7.715396902225162,5.566172639350556,0,0,-904.2908642725203,0,3,-9,2019,16,4,21,23,1,4,0,9.870226236037375,9.870226236037375,0,0,0,0,0,1,1,0,5.786870486624703,5.334378197578264,47.8,28.27,-9,-9,5,1,1,0,0,11,10,3,1,518,33661.82345264724,-61242.80743123276,0,0,1506.414758057803 -14538,17943,32701,32702,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,6.048265072388169,5.904027163817141,59,3,178.149468167162,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.465856845738667,6.320380362263592,51.83,57.2,52,45,10,1,1,0,0,0,10,2,1,331.5,384668.1991398428,64906.11603230795,179207.1105429641,0,1331.528416042485 -14538,17943,32702,32701,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.192098662726668,5.04393225063596,59,-3,-10.71479557825402,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,5.577853381023224,0,0,1,1,0,0,5.213535990234592,52,45,51.83,57.2,8,1,1,0,0,0,10,2,1,331.5,384668.1991398428,64906.11603230795,179207.1105429641,0,1331.528416042485 -14539,17944,32703,32704,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.166465984099767,7.012541355047698,51,2,-46.36252916300842,0,3,2,2019,20,9,0,0,4,9,0,0,0,0,14.8043418453699,0,0,0,1,1,0,7.428316608202888,7.337184653120193,42.19,35.2,57.16,56.15,3.333333333333333,1,1,0,0,0,5,2,1,571,637586.7065092463,107983.2222846351,173587.0837959861,0,1732.90909218528 -14539,17944,32704,32703,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-2,-11.70306754792268,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.19,35.2,8.333333333333334,1,1,0,0,0,5,2,1,571,637586.7065092463,107983.2222846351,173587.0837959861,0,1732.90909218528 -14540,17945,32705,-9,32709,32708,1,0,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1244.510841252969,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32706,-9,32709,32708,1,0,17,2,6,1,2,0,-9,0,4,0,0,0,0,0,-874.8816391801527,-9,2,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.44,56.99,-9,-9,1.666666666666667,2,3,0,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32707,-9,32709,32708,1,1,13,2,6,1,3,0,-9,0,4,0,0,0,0,0,-933.341253315574,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32708,32709,-9,-9,1,1,44,2,6,0,1,1,-9,0,4,8.557766353269422,8.688855082772582,0,12,12,-17.91399270445469,0,2,3,2019,6,0,22,23,1,0,0,24.61229092827917,24.61229092827917,0,0,0,0,0,1,1,0,3.306386528719645,0,57.16,56.15,57.06,57.76,8.333333333333334,2,3,0,0,10,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32709,32708,-9,-9,1,0,32,2,6,0,2,2,-9,0,5,0,0,0,9,-12,-26.72751352242379,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,2,3,0,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32710,-9,32709,32708,1,0,7,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1144.385492415277,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32711,-9,32709,32708,1,1,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1134.647257370759,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32712,-9,32709,32708,1,0,5,2,6,1,3,0,-9,0,4,0,0,0,0,0,-949.531833017806,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17945,32713,-9,32709,32708,1,1,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-991.1261828709448,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,3,1,566.8888888888889,329924.5744137538,337132.8568886804,0,0,3248.195634380033 -14540,17946,32714,-9,32709,32708,1,0,19,2,6,0,2,2,-9,0,4,0,0,0,0,0,-1112.39337366292,1,2,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.6,59.47,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,582,92254.52056671782,0,0,0,527.260112792784 -14541,17947,32715,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-880.2243786709719,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.09,40.47,-9,-9,5,1,1,0,0,0,5,1,0,1035,0,0,0,0,395.8957694883658 -14542,17948,32716,32717,-9,-9,1,0,46,0,3,0,3,3,-9,0,4,0,0,0,29,-4,0,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.2,52.92,47.4,54.12,6.666666666666667,3,4,0,0,0,8,1,0,1078.25,-19650.6131620646,0,0,0,946.8044495153921 -14542,17948,32717,32716,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,0,0,0,29,4,0,0,3,3,2019,10,0,0,18,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.4,54.12,37.2,52.92,8.333333333333334,3,4,1,0,1,8,1,0,1078.25,-19650.6131620646,0,0,0,946.8044495153921 -14542,17948,32718,-9,32716,32717,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.424772736198,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,1078.25,-19650.6131620646,0,0,0,946.8044495153921 -14542,17948,32719,-9,32716,32717,1,0,16,0,3,0,2,2,-9,0,1,0,0,0,0,0,-943.9962085785572,-9,3,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,19.76,-9,-9,10,3,4,0,0,1,8,1,0,1078.25,-19650.6131620646,0,0,0,946.8044495153921 -14542,17949,32720,-9,32716,32717,1,1,18,0,3,0,2,2,1,0,5,7.019356669292791,7.128913450053915,0,0,0,-1093.71301801445,-9,3,2,2019,6,0,39,0,1,0,1,3.510377684279935,3.510377684279935,0,0,0,0,0,1,1,0,0,0,58.05,51.82,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,134,2525.083117917064,0,0,0,992.2072275652074 -14542,17950,32721,-9,32716,32717,1,1,25,0,3,0,2,2,-9,0,4,6.507576384562834,6.354265403231548,0,0,0,-1103.708294247336,0,3,2,2019,10,0,40,40,1,1,1,2.169342601559748,2.169342601559748,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,2,0,151,6465.702108691677,38613.4695289671,0,0,35.52226341626192 -14543,17951,32722,32723,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,10,-5,0,0,3,3,2019,21,10,0,0,4,10,0,0,0,1,0,0,0,14.5,1,1,0,0,0,41.11,40.82,46,36,3.333333333333333,1,1,0,0,0,13,2,1,410.5,36477.23590663684,62024.53403058161,0,0,1603.698379889707 -14543,17951,32723,32722,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,3,3,2019,27,11,0,0,4,11,0,0,0,1,0,27.79847456927028,0,0,1,1,0,0,0,46,36,41.11,40.82,5,1,1,0,0,0,13,2,1,410.5,36477.23590663684,62024.53403058161,0,0,1603.698379889707 -14544,17952,32724,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.83602557938729,8.090167642176809,0,0,0,-970.8143443397298,-9,3,3,2019,19,7,44,0,1,7,0,6.401685259310965,6.401685259310965,0,0,0,0,2,1,1,0,0,0,34.79,57.07,-9,-9,6.666666666666667,1,1,0,0,11,11,4,0,821,652190.8905362173,544976.4261993369,0,0,594.0071765475826 -14545,17953,32725,32726,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.858933752177828,8.869261585288386,0,15,-7,-36.76241963645272,0,-9,3,2019,6,0,42,43,1,0,0,19.01334578002426,19.01334578002426,0,0,0,0,0,0,0,0,0,0,54.77,55.87,46.37,42.27,8.333333333333334,1,1,0,0,8,5,5,0,452,256440.992563331,232983.7493294901,236351.0198670138,166269.8350324109,3731.147909797613 -14545,17953,32726,32725,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.260451820286093,8.249396586665828,0,12,7,-97.15099292378436,0,-9,-9,2019,11,0,46,44,1,0,0,11.9156724840969,11.9156724840969,0,0,0,0,7,0,0,0,0,0,46.37,42.27,54.77,55.87,8.333333333333334,1,1,0,0,7,5,5,0,452,256440.992563331,232983.7493294901,236351.0198670138,166269.8350324109,3731.147909797613 -14546,17954,32727,32728,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.076363611580605,7.961477859432965,0,6,-6,25.5656046669161,0,-9,-9,2019,10,0,37,40,1,1,0,11.87486928297534,11.87486928297534,0,0,0,0,0,0,0,0,7.46527944953837,0,50,55,46.92,60.71,8,1,1,0,0,1,5,5,1,921,1241872.352836011,916185.3471272332,331447.9877154726,70783.5525236644,4818.028491363317 -14546,17954,32728,32727,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.880880249953242,8.695484901038389,0,6,6,-33.80839496977609,0,2,2,2019,12,3,57,60,1,3,0,15.63317781406865,15.63317781406865,0,0,0,0,0,0,0,0,6.548181557442134,0,46.92,60.71,50,55,8.333333333333334,1,1,0,0,7,5,5,1,921,1241872.352836011,916185.3471272332,331447.9877154726,70783.5525236644,4818.028491363317 -14547,17955,32729,32731,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,6.978960181322103,7.175107349933049,0,30,-4,-83.73394917041587,-9,1,1,2019,6,0,24,0,1,0,0,7.901111035530456,7.901111035530456,0,0,0,0,0,0,0,0,7.523326755590442,0,65.86,39.05,62.39,56.71,8.333333333333334,2,3,0,0,11,10,5,1,430,325762.5720840776,183640.8069347519,213926.2362296845,109615.5476578068,4041.249692755206 -14547,17955,32730,-9,32729,32731,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-937.7264036017684,-9,1,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,33.49,64.26000000000001,-9,-9,8.333333333333334,2,3,0,0,0,10,5,1,430,325762.5720840776,183640.8069347519,213926.2362296845,109615.5476578068,4041.249692755206 -14547,17955,32731,32729,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.846429781691876,8.752302564789275,0,30,4,54.8573095283038,-9,1,1,2019,6,0,40,0,1,0,0,21.61685321062561,21.61685321062561,0,0,0,0,0,0,0,0,2.700042416039202,0,62.39,56.71,65.86,39.05,10,2,3,0,0,10,10,5,1,430,325762.5720840776,183640.8069347519,213926.2362296845,109615.5476578068,4041.249692755206 -14547,17956,32732,-9,32729,32731,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1002.225666282489,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,2,10,1,1,150,-28885.64449525979,0,0,0,1205.646217290115 -14548,17957,32733,32734,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,6.580426950703315,6.724619984364815,0,6,-3,10.26301783337327,0,3,3,2019,9,0,34,35,1,0,0,2.559071605511364,2.559071605511364,0,0,0,0,0,0,0,0,2.571242674657757,0,55.6,42.6,45.91,59.89,6.666666666666667,1,1,0,0,8,8,3,0,308.5,271985.2049554468,260948.9481540475,0,0,1828.65146407749 -14548,17957,32734,32733,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.010060477439071,8.11654992876602,0,6,3,-22.9724848236509,0,-9,-9,2019,12,2,28,28,1,2,0,12.95349963896728,12.95349963896728,0,0,0,0,0,0,0,0,0,0,45.91,59.89,55.6,42.6,3.333333333333333,1,1,0,1,8,8,3,0,308.5,271985.2049554468,260948.9481540475,0,0,1828.65146407749 -14549,17958,32735,32736,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,0,0,0,10,-20,17.24723386352541,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.236979755095116,0,49.38,58.29,48.81,59.91,8.333333333333334,2,3,0,0,1,8,3,1,4204.666666666667,678790.4251083138,337518.4530560474,552516.1880384586,225597.1342858649,4341.608092999461 -14549,17958,32736,32735,-9,-9,1,1,65,0,1,0,1,1,-9,0,4,0,8.48584226326329,7.994270816115482,10,20,-132.0230005011034,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.204355867990051,8.298847632407838,48.81,59.91,49.38,58.29,8.333333333333334,1,1,0,0,8,8,3,1,4204.666666666667,678790.4251083138,337518.4530560474,552516.1880384586,225597.1342858649,4341.608092999461 -14549,17958,32737,-9,32735,32736,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1007.92677904959,-9,-9,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,4,2,-9,0,0,8,3,1,4204.666666666667,678790.4251083138,337518.4530560474,552516.1880384586,225597.1342858649,4341.608092999461 -14549,17959,32738,-9,32735,32736,1,1,19,0,1,0,2,2,1,0,3,7.3351966403739,7.358182162490343,0,0,0,-968.3447426635724,-9,-9,1,2019,12,3,34,0,1,3,1,5.738291644069421,5.738291644069421,0,0,0,0,0,1,1,0,.2835057476343864,0,52.76,52.99,-9,-9,3.333333333333333,4,2,0,1,1,8,3,1,454,-183253.3852036439,0,0,0,321.8168220054563 -14550,17960,32739,32740,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.18721868266378,6.418476945951372,55,5,-22.58775625809673,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.687311267709666,38.38,57.97,62.39,56.71,8.333333333333334,1,1,0,0,0,6,2,1,492,111529.3880896855,162963.356259238,10566.87553230614,19733.21933100829,2037.926783392495 -14550,17960,32740,32739,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,55,-5,-21.93032834376603,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.38,57.97,10,1,1,0,0,0,6,2,1,492,111529.3880896855,162963.356259238,10566.87553230614,19733.21933100829,2037.926783392495 -14551,17961,32741,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.546728183159726,7.390868720415736,0,0,-1058.135565279735,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.97451670606889,7.400161918079251,50.58,19.03,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,755,289110.3772137632,203921.0944129312,288004.4679239838,166436.7147646627,2086.229466019691 -14552,17962,32742,-9,32744,32743,1,0,20,0,0,0,2,2,1,1,2,0,0,0,0,0,-1021.682593975858,-9,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,42,1,0,1,0,0,28.77,49.6,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,2085,-91514.96225547006,0,0,0,641.9873373722994 -14552,17963,32743,32744,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,3,1,-10.88215463043552,0,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,21.97,21.3,55.52,20.23,0,1,1,0,0,0,12,3,0,493.5,510634.3103923424,424367.4566149522,339624.7244734527,99120.27127112474,2888.141425530589 -14552,17963,32744,32743,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.792283884597904,7.972955007795043,0,39,-1,53.62765300599905,0,-9,-9,2019,14,1,80,40,1,1,0,3.591921934817309,3.591921934817309,0,0,0,0,0,1,0,1,0,0,55.52,20.23,21.97,21.3,3.333333333333333,1,1,0,0,11,12,3,0,493.5,510634.3103923424,424367.4566149522,339624.7244734527,99120.27127112474,2888.141425530589 -14553,17964,32745,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.01119357806,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.770305984840951,8.334617996817682,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,249,0,0,0,0,1415.969819487565 -14554,17965,32746,32747,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.807004162942303,7.88149422269665,40,-1,-83.29934709806979,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.365712448181158,8.036929594542253,58.15,52.91,58.89,48.6,8.333333333333334,1,1,0,0,6,5,4,1,174.5,1169504.364414478,603373.4040155506,173443.1431742309,0,3470.768080874215 -14554,17965,32747,32746,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.981350278047335,7.957985502550524,7.266128344605283,40,1,-21.38753544023369,0,3,3,2019,7,0,22,23,1,0,0,4.931917616586976,4.931917616586976,0,0,0,0,0,0,0,0,.6643774424392846,7.429485843667857,58.89,48.6,58.15,52.91,10,1,1,0,0,8,5,4,1,174.5,1169504.364414478,603373.4040155506,173443.1431742309,0,3470.768080874215 -14555,17966,32748,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-926.264150913267,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.606572701317694,.0834794837366513,0,1,1,0,0,0,46,36,-9,-9,10,1,1,0,0,0,11,1,0,1096,31646.35955400319,0,0,0,1568.624445870518 -14556,17967,32749,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.249871919359638,7.302450374711841,0,0,-992.1456977596491,0,3,3,2019,10,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,2.640793698558875,7.084694649979876,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,1128,601031.7521856559,241520.7824021587,125575.9307017044,0,1363.392546431986 -14557,17968,32750,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.132895386003542,8.11589832471094,5.790803566834207,0,0,-914.2997599375168,0,-9,-9,2019,8,0,42,40,1,0,0,9.756746855976019,9.756746855976019,0,0,0,0,0,0,0,0,6.976544925886397,6.386325907934771,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,342,324873.6745986762,206462.0760383229,282578.5381500191,0,1496.258212856791 -14558,17969,32751,32752,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,13,-6,23.74304653627054,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,57.16,56.15,8.333333333333334,2,3,0,0,1,8,2,0,660.5,-11436.65622320968,0,0,0,1759.304957074432 -14558,17969,32752,32751,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.11372582168026,7.008817213010484,0,13,6,-75.4134788266027,0,3,3,2019,9,0,40,40,1,0,0,3.625396483211038,3.625396483211038,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.29,54.59,8.333333333333334,2,3,0,0,11,8,2,0,660.5,-11436.65622320968,0,0,0,1759.304957074432 -14558,17969,32753,-9,32751,32752,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-842.6376282794216,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,660.5,-11436.65622320968,0,0,0,1759.304957074432 -14558,17969,32754,-9,32751,32752,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.055080073002,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,660.5,-11436.65622320968,0,0,0,1759.304957074432 -14559,17970,32755,-9,32758,32757,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.780954472099,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,846,508330.7452506447,516138.3053020795,168325.3143425389,90231.9636196174,4033.173341703856 -14559,17970,32756,-9,32758,32757,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.744590426159,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,846,508330.7452506447,516138.3053020795,168325.3143425389,90231.9636196174,4033.173341703856 -14559,17970,32757,32758,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.126655350489006,8.2662222213785,0,13,3,35.41101404670471,0,3,-9,2019,7,0,37,37,1,0,0,10.57521249619765,10.57521249619765,0,0,0,0,0,1,1,0,0,0,50.14,53.97,47.42,51.55,10,1,1,0,0,9,1,4,1,846,508330.7452506447,516138.3053020795,168325.3143425389,90231.9636196174,4033.173341703856 -14559,17970,32758,32757,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.758504300496329,8.973710455895594,0,13,-3,-58.77227631782131,0,2,2,2019,11,2,50,60,1,2,0,16.93663265342201,16.93663265342201,0,0,0,0,0,1,1,0,0,0,47.42,51.55,50.14,53.97,8.333333333333334,1,1,0,0,10,1,4,1,846,508330.7452506447,516138.3053020795,168325.3143425389,90231.9636196174,4033.173341703856 -14560,17971,32759,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.175836558408915,6.259077479152678,0,0,-981.6161153694131,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,2.81359869483647,1.088904955162392,22.57740664838946,0,1,1,0,7.051001911300766,6.186067170613142,65.98999999999999,31.59,-9,-9,10,1,1,0,0,0,2,2,1,434,50372.86103154947,-90570.16004826162,0,0,627.9947877887462 -14561,17972,32760,-9,32762,32761,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.9811808716763,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,4,0,1022.666666666667,69910.68263673763,-18905.54004345055,0,0,2876.244040932389 -14561,17972,32761,32762,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,7.962120037114492,7.988364693578821,0,9,2,-82.92098395926155,0,2,2,2019,13,3,39,37,1,3,0,8.260591682781055,8.260591682781055,0,0,0,0,2,1,1,0,0,0,60.93,32.84,49.35,59.64,8.333333333333334,4,5,0,0,7,2,4,0,1022.666666666667,69910.68263673763,-18905.54004345055,0,0,2876.244040932389 -14561,17972,32762,32761,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.896219939106611,7.875145932179213,0,9,-2,-52.43725337634253,0,3,2,2019,2,0,34,30,1,0,0,9.921642585165481,9.921642585165481,0,0,0,0,0,1,1,0,0,0,49.35,59.64,60.93,32.84,8.333333333333334,1,1,0,0,10,2,4,0,1022.666666666667,69910.68263673763,-18905.54004345055,0,0,2876.244040932389 -14562,17973,32763,-9,32765,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.900499346968,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,455.3333333333333,-37616.61790397819,0,0,0,1959.494877609999 -14562,17973,32764,-9,32765,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.253254999482,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,455.3333333333333,-37616.61790397819,0,0,0,1959.494877609999 -14562,17973,32765,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,0,0,0,0,-972.1975181794949,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,1,0,455.3333333333333,-37616.61790397819,0,0,0,1959.494877609999 -14563,17974,32766,32767,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,4.326267981243151,4.405692465236191,68,4,-46.56058194554856,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,28.11343723834338,20.99801401907812,0,120,1,1,0,0,4.628318921682393,57.91,9.140000000000001,32.82,19.15,3.333333333333333,1,1,0,0,0,5,2,1,480,-158109.2283024501,0,0,0,2120.560999676378 -14563,17974,32767,32766,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,68,-4,31.45141697828311,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,18.17146881667966,0,27,1,1,0,0,0,32.82,19.15,57.91,9.140000000000001,10,1,1,0,0,0,5,2,1,480,-158109.2283024501,0,0,0,2120.560999676378 -14564,17975,32768,32769,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.883537065288117,8.836524989074002,0,6,7,61.75627448936399,0,2,2,2019,13,1,60,67,1,1,0,13.80781582541113,13.80781582541113,0,0,0,0,0,0,0,0,3.278974785047426,0,56.56,40.29,48.77,60.16,6.666666666666667,1,1,0,0,11,4,5,1,1054.5,153268.3590690245,44607.27331564995,183123.6509001554,135735.991924174,3694.766958798077 -14564,17975,32769,32768,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.33983429263345,8.011760931444257,0,6,-7,24.80846101615082,0,-9,-9,2019,9,0,41,38,1,0,0,8.779659848847681,8.779659848847681,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.56,40.29,10,1,1,0,0,9,4,5,1,1054.5,153268.3590690245,44607.27331564995,183123.6509001554,135735.991924174,3694.766958798077 -14565,17976,32770,32772,-9,-9,1,1,49,0,1,0,1,1,-9,1,2,0,0,0,26,6,45.03020869068826,0,2,1,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,57.15,45.78,49,55,8.333333333333334,2,3,0,0,0,8,2,0,227.6666666666667,351724.1512126924,163462.1845332258,0,0,3102.524953307753 -14565,17976,32771,-9,32772,32770,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.6080973249663,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,227.6666666666667,351724.1512126924,163462.1845332258,0,0,3102.524953307753 -14565,17976,32772,32770,-9,-9,1,0,43,0,1,0,2,2,-9,1,4,6.806665873459937,6.984959926563388,0,26,-6,12.98342460063247,0,2,2,2019,11,0,16,15,1,1,0,6.351156842570891,6.351156842570891,0,0,0,0,0,1,1,0,0,0,49,55,57.15,45.78,7,2,3,0,0,6,8,2,0,227.6666666666667,351724.1512126924,163462.1845332258,0,0,3102.524953307753 -14565,17977,32773,-9,32772,32770,1,1,21,0,1,0,2,2,1,0,4,8.437048917748704,8.573912660845012,0,0,0,-1068.136224851988,-9,2,1,2019,11,2,40,0,1,2,1,9.518556374307229,9.518556374307229,0,0,0,0,2,1,1,0,0,0,55.19,54.26,-9,-9,10,2,3,0,0,1,8,4,0,510,126907.4774517357,0,342760.4674114647,132294.2323695695,1716.628088059037 -14566,17978,32774,32775,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.503853675094513,8.266173400991759,38,-2,-7.391844657789841,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,8.579494339741407,55.19,54.26,54.04,47.89,8.333333333333334,1,1,0,0,10,6,4,1,261.5,1233175.481798888,736570.9711755301,202280.7291801847,0,1770.474898786539 -14566,17978,32775,32774,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,38,2,-57.31958068207096,0,2,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,4.157600612899338,0,54.04,47.89,55.19,54.26,10,1,1,0,0,9,6,4,1,261.5,1233175.481798888,736570.9711755301,202280.7291801847,0,1770.474898786539 -14566,17979,32776,-9,32774,32775,1,0,28,0,0,0,2,2,-9,0,4,7.202728827245583,6.761320891331995,0,0,0,-1053.328270248295,0,1,1,2019,8,0,18,19,1,0,0,6.578969353583212,6.578969353583212,0,0,0,0,2,0,0,0,2.026420870679804,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,1784,-8565.572593242965,0,0,0,826.1157986792548 -14566,17980,32777,-9,32774,32775,1,1,26,0,0,0,1,1,-9,0,3,8.466011497797705,8.794298751523419,0,0,0,-998.8309997927516,0,1,1,2019,10,2,44,44,1,2,0,12.39784897502563,12.39784897502563,0,0,0,0,0,0,0,0,0,0,46.06,49.19,-9,-9,3.333333333333333,1,1,0,0,5,6,5,1,169,-80562.51195977716,129697.7600250385,0,0,1631.652326033295 -14566,17981,32778,-9,32774,32775,1,1,26,0,0,0,1,1,-9,0,5,7.231416291729711,7.171376994319962,0,0,0,-865.6839066532889,0,1,1,2019,6,1,17,17,1,1,0,7.96864248568291,7.96864248568291,0,0,0,0,0,0,0,0,.2834570048374953,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,1,5,6,3,1,163,-42636.98647432012,0,0,0,127.220812112172 -14567,17982,32779,32780,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,9.096250316535576,9.237068932359346,0,24,2,-16.90765003634171,0,2,2,2019,10,0,58,58,1,0,0,17.15340526722012,17.15340526722012,0,0,0,0,0,1,1,0,7.552838218969561,0,47.32,52.7,50.23,47.03,8.333333333333334,1,1,0,1,10,6,5,1,224,170433.3655117844,53880.35408885252,189220.7687402986,20227.95617580912,4803.611713953213 -14567,17982,32780,32779,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.367714767460901,8.202488299514911,0,24,-2,100.4411104642256,0,2,2,2019,17,5,30,22,1,5,0,14.82311765611338,14.82311765611338,0,0,0,0,7,1,1,0,0,0,50.23,47.03,47.32,52.7,8.333333333333334,1,1,0,0,6,6,5,1,224,170433.3655117844,53880.35408885252,189220.7687402986,20227.95617580912,4803.611713953213 -14568,17983,32781,32782,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.619070875447185,7.338996787661742,7,0,15.04001714101607,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.806744847062064,47.91,57.48,38,25,0,4,2,0,0,8,8,3,1,518,718898.0664310472,5105.736500723569,647231.1054899624,0,1735.885028333322 -14568,17983,32782,32781,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,7,0,22.93609833037981,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,14.41668582865433,13.29155648230145,135.5487034605323,0,1,1,0,0,0,38,25,47.91,57.48,8.333333333333334,3,4,0,1,0,8,3,1,518,718898.0664310472,5105.736500723569,647231.1054899624,0,1735.885028333322 -14569,17984,32783,-9,32784,-9,1,1,27,0,0,0,2,2,-9,0,3,7.610690130886606,7.895957826714894,0,0,0,-959.4060249804746,-9,3,2,2019,16,5,38,0,1,5,0,6.62424133177617,6.62424133177617,0,0,0,0,2,1,1,0,2.963272037453746,0,24.81,52.28,-9,-9,6.666666666666667,3,4,0,0,6,8,3,0,203,-113279.2807537734,0,0,0,1078.969121414922 -14569,17985,32784,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.962956198822,-9,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,26.75434712770067,0,0,1,1,0,0,0,58.08,24.7,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,1458,-221905.8005332942,0,0,0,1109.288719061642 -14569,17986,32785,-9,32784,-9,1,1,25,0,0,0,1,1,-9,0,3,8.167163385685837,8.62167900287554,0,0,0,-826.2237659011737,-9,3,-9,2019,9,0,36,0,1,0,0,11.55463008674588,11.55463008674588,0,0,0,0,0,1,1,0,3.112231907970434,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,1,8,4,0,360,67356.77986653418,0,0,0,1463.586457835421 -14570,17987,32786,32787,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,1,4,-101.4365892069722,-9,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.333367219153185,0,50,47,51,48,7,1,1,0,0,0,13,3,1,312,1025972.392506185,565330.74839123,240761.1078787458,0,4621.270645923692 -14570,17987,32787,32786,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.187873485338434,7.917847891890526,0,1,-4,69.37659149233882,-9,3,3,2019,10,0,40,0,1,1,0,9.72667655309726,9.72667655309726,0,0,0,0,0,1,1,0,4.341794868563222,0,51,48,50,47,7,1,1,0,0,1,13,3,1,312,1025972.392506185,565330.74839123,240761.1078787458,0,4621.270645923692 -14570,17988,32788,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,4.881585503095045,4.659333701669016,0,0,0,-972.9090409981666,0,3,3,2019,7,0,8,8,1,0,0,1.801462326335776,1.801462326335776,0,0,0,0,0,1,1,0,2.273125930705045,0,44.36,55.6,-9,-9,10,1,1,0,0,6,13,2,1,624,122964.8315747313,0,122445.8820666401,0,826.9225716825895 -14571,17989,32789,32790,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.504279145073498,8.369103225601746,0,8,-5,-99.51717292209555,0,-9,-9,2019,12,0,46,43,1,0,0,11.24099856050683,11.24099856050683,0,0,0,0,0,0,0,0,0,0,49.92,44.62,48.28,60.18,6.666666666666667,1,1,0,0,10,9,5,1,620.5,361829.3696371015,166719.9141934365,316228.3252028887,188120.2482890988,4213.517938153534 -14571,17989,32790,32789,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.748588769285988,8.705642545367613,0,8,5,-162.2377016556584,0,2,2,2019,12,0,50,55,1,0,0,17.63504946112666,17.63504946112666,0,0,0,1.802463231540337,0,0,0,0,0,0,48.28,60.18,49.92,44.62,8.333333333333334,1,1,0,0,9,9,5,1,620.5,361829.3696371015,166719.9141934365,316228.3252028887,188120.2482890988,4213.517938153534 -14572,17990,32791,32792,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.812217292918482,6.339613947840149,7,4,55.26390477297857,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.136212283792148,6.65805133297488,52,47,57.16,56.15,7,1,1,0,0,0,7,2,1,590.5,446064.4474298012,359946.0939660421,189709.9173492799,0,3041.295947620159 -14572,17990,32792,32791,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.862796456851616,5.694004912362821,7,-4,-217.9744969172725,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.308645816464583,6.025523664575022,57.16,56.15,52,47,10,1,1,0,0,0,7,2,1,590.5,446064.4474298012,359946.0939660421,189709.9173492799,0,3041.295947620159 -14573,17991,32793,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.317912008454694,8.423111077505396,5.671737704886048,0,0,-1027.050799680374,0,3,-9,2019,10,0,45,50,1,0,0,12.36881784899291,12.36881784899291,0,0,0,0,0,0,0,0,6.122251835583844,6.363126228043975,52.89,46.29,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,1344,617287.8468477509,162796.6783555663,154983.7266332967,0,2255.705860858572 -14574,17992,32794,32795,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.699085640035833,7.568861173427996,40,4,-164.1787779242551,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.577219630102206,7.553041154700804,63.41,39.7,34.68,59.67,8.333333333333334,1,1,0,0,7,9,4,1,735.5,2262628.476857346,1117990.344561968,653528.0068160391,0,3766.447971942772 -14574,17992,32795,32794,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,8.035035392561671,7.744912857771525,40,-4,120.0050890240095,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.598257390217702,7.723146493112067,34.68,59.67,63.41,39.7,8.333333333333334,1,1,0,0,0,9,4,1,735.5,2262628.476857346,1117990.344561968,653528.0068160391,0,3766.447971942772 -14575,17993,32796,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,3,8.178649395317064,7.939960780223325,0,0,0,-988.8741633047647,-9,-9,-9,2019,7,0,50,0,1,0,0,8.233758380365133,8.233758380365133,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,264,140004.4067795035,45393.33391272341,0,0,1668.928106965624 -14576,17994,32797,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.619592623643,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,2.296881631455863,0,0,1,1,0,.8247350591078014,0,48.19,15.79,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,273,55815.55225833404,0,0,0,2153.997196571944 -14577,17995,32798,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,6.818662821989135,7.017804398203401,4.017691228158705,0,0,-1117.356972189754,0,2,2,2019,11,0,16,16,1,0,0,7.659425404914394,7.659425404914394,1,0,0,0,0,1,1,0,0,4.012847103528457,52.24,24.55,-9,-9,5,1,1,0,1,5,9,2,0,406,1699014.041047078,306718.1327716312,1241601.725712208,0,1103.989728533917 -14578,17996,32799,-9,32800,32802,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.608255465133,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,632.25,481121.1619670172,484902.3999867886,280492.5985754653,89360.53953840391,4364.35947665612 -14578,17996,32800,32802,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,8.137439303500479,7.780624346676563,0,12,-1,-57.32931802061461,0,2,2,2019,6,0,23,23,1,0,0,16.68418589929441,16.68418589929441,0,0,0,0,0,1,1,0,2.346600958194565,0,49.46,56.91,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,632.25,481121.1619670172,484902.3999867886,280492.5985754653,89360.53953840391,4364.35947665612 -14578,17996,32801,-9,32800,32802,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.607081135935,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,632.25,481121.1619670172,484902.3999867886,280492.5985754653,89360.53953840391,4364.35947665612 -14578,17996,32802,32800,-9,-9,1,1,33,1,2,0,2,2,-9,0,3,9.078757515247645,9.013293797003561,0,12,1,12.81840409761446,0,2,2,2019,8,0,43,40,1,0,0,23.39212672345753,23.39212672345753,0,0,0,0,0,1,1,0,3.985905036373232,0,54.96,53.17,49.46,56.91,8.333333333333334,1,1,0,0,8,2,5,1,632.25,481121.1619670172,484902.3999867886,280492.5985754653,89360.53953840391,4364.35947665612 -14579,17997,32803,32804,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.391047297537082,9.705226083753137,0,31,-1,-156.111989660059,0,2,3,2019,7,0,75,75,1,0,0,20.32205824674838,20.32205824674838,0,0,0,0,0,0,0,0,0,0,53.51,60.74,57.16,56.15,10,1,1,0,0,12,12,5,1,1163,1128383.824660412,703393.8097607496,216813.6515589378,0,9594.99679150695 -14579,17997,32804,32803,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.376036262211423,8.604517588056385,0,31,1,27.06175308734619,0,2,2,2019,9,0,41,37,1,0,0,13.99993956086362,13.99993956086362,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,60.74,8.333333333333334,1,1,0,0,10,12,5,1,1163,1128383.824660412,703393.8097607496,216813.6515589378,0,9594.99679150695 -14579,17998,32805,-9,32804,32803,1,0,25,0,0,0,2,2,-9,0,4,7.97070099967061,7.809498684082602,0,0,0,-880.2258420421949,0,1,2,2019,7,0,40,20,1,0,1,9.613937752647546,9.613937752647546,0,0,0,0,0,0,0,0,0,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,337,-83386.43834838334,73073.94410604514,0,0,1744.393999887413 -14579,17999,32806,-9,32804,32803,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-1016.583281014623,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,813,-156095.65235612,0,0,0,0 -14580,18000,32807,32808,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,6.917536441545434,6.554391493904594,0,29,-7,10.11399736122941,0,3,3,2019,11,0,8,48,1,0,0,15.38283172967348,15.38283172967348,0,0,0,0,0,1,1,0,0,0,41.34,36.76,63.48,51.85,6.666666666666667,1,1,0,0,11,9,3,1,1475,484946.107292971,72967.38027517499,437255.7884607078,69718.22167873636,883.8918720669773 -14580,18000,32808,32807,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.567514811272618,6.644737907558615,0,28,7,-28.25879723976427,0,3,3,2019,8,0,40,48,1,0,0,2.067654519293636,2.067654519293636,0,0,0,0,0,1,1,0,0,0,63.48,51.85,41.34,36.76,10,2,3,0,1,11,9,3,1,1475,484946.107292971,72967.38027517499,437255.7884607078,69718.22167873636,883.8918720669773 -14581,18001,32809,32810,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,0,0,0,21,4,4.301240323376736,0,1,2,2019,10,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,.4324355893575679,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,1,0,10,10,2,1,714.4,103564.4885969866,66064.04163754787,0,0,4782.131120370414 -14581,18001,32810,32809,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.00092456873503,8.103174053959144,0,22,-4,72.91021937900507,0,2,2,2019,9,0,35,35,1,0,0,9.933499765891174,9.933499765891174,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,1.666666666666667,1,1,0,0,11,10,2,1,714.4,103564.4885969866,66064.04163754787,0,0,4782.131120370414 -14581,18001,32811,-9,32810,32809,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.256208453626,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,714.4,103564.4885969866,66064.04163754787,0,0,4782.131120370414 -14581,18001,32812,-9,32810,32809,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1037.251154878012,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,10,2,1,714.4,103564.4885969866,66064.04163754787,0,0,4782.131120370414 -14581,18001,32813,-9,32810,32809,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.5362277632036,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,2,1,714.4,103564.4885969866,66064.04163754787,0,0,4782.131120370414 -14582,18002,32814,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.630474535863875,8.852265852948154,0,0,0,-1032.178231654009,0,3,-9,2019,11,2,43,11,1,2,0,17.83004220833181,17.83004220833181,0,0,0,0,0,0,0,0,0,0,56.61,44.14,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,100,-84995.80629699149,-36132.51760367736,0,0,2535.334441393442 -14583,18003,32815,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.901215806304863,8.128812632789614,0,0,0,-1098.427221545383,0,3,3,2019,7,0,40,40,1,0,0,7.533317023521539,7.533317023521539,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,12,2,4,0,706,65064.2182333017,0,97354.87890228473,0,1840.409510276805 -14584,18004,32816,32817,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,8.190993126310735,8.241181580568359,0,2,-8,-29.92858104928141,0,-9,-9,2019,10,1,24,55,1,1,0,15.01612490663629,15.01612490663629,0,0,0,0,0,1,1,0,0,0,45.88,59.91,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,0,548.3333333333334,247881.8270603874,76788.44121340424,420466.2360865265,214541.9644746876,2463.046604103712 -14584,18004,32817,32816,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.151583318955598,7.841588675272706,0,2,8,76.20939295889448,0,-9,-9,2019,9,0,55,52,1,0,0,5.729231586922174,5.729231586922174,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.88,59.91,8.333333333333334,3,4,0,0,3,9,4,0,548.3333333333334,247881.8270603874,76788.44121340424,420466.2360865265,214541.9644746876,2463.046604103712 -14584,18004,32818,-9,32816,32817,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9495496767568,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,0,548.3333333333334,247881.8270603874,76788.44121340424,420466.2360865265,214541.9644746876,2463.046604103712 -14585,18005,32819,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,9.584787505376315,9.878786175933836,0,0,0,-930.0674013264976,0,1,1,2019,3,0,72,36,1,0,0,28.59353820559016,28.59353820559016,0,0,0,0,0,0,0,0,6.515006089783503,0,62.39,56.71,-9,-9,10,1,1,0,0,8,12,5,1,2266,977985.1279534475,647119.3478863726,228078.4143004518,12005.84313224582,5622.189871150737 -14586,18006,32820,32821,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,8.293604103718538,8.579117816598075,6.213992715120595,39,6,-11.98271362713204,0,2,3,2019,18,6,44,40,1,6,0,9.274050699556739,9.274050699556739,0,0,0,0,2,1,1,0,6.385518517033874,5.991074325754688,43.76,42.45,55.36,51.57,5,1,1,0,0,9,7,4,1,536.5,943491.0127791534,519895.3493857253,270997.5261691707,0,2957.325185396071 -14586,18006,32821,32820,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.0752165390386,7.098449760871777,0,41,-6,33.81279169778443,0,3,3,2019,7,0,28,17,1,0,0,4.8677539104481,4.8677539104481,0,0,0,0,2,1,1,0,0,0,55.36,51.57,43.76,42.45,10,1,1,0,0,7,7,4,1,536.5,943491.0127791534,519895.3493857253,270997.5261691707,0,2957.325185396071 -14587,18007,32822,32824,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.418945356823029,8.38504403621652,0,15,2,-38.55210401275367,0,-9,-9,2019,10,0,60,80,1,1,0,8.037278994001845,8.037278994001845,0,0,0,0,0,1,1,0,6.54821303650808,0,52,55,51.41,56.15,7,3,4,0,0,1,5,3,1,765.75,110783.2186401044,80912.43877213253,218600.14900561,88900.73836839962,3685.30944138496 -14587,18007,32823,-9,32824,32822,1,1,17,1,2,1,3,0,0,0,4,0,0,0,0,0,-1003.534751057909,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,3,1,765.75,110783.2186401044,80912.43877213253,218600.14900561,88900.73836839962,3685.30944138496 -14587,18007,32824,32822,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,7.691244002415206,7.727325075664719,0,16,-2,16.8491283514639,0,3,2,2019,6,0,45,10,1,0,0,8.180731625863535,8.180731625863535,0,0,0,0,0,1,1,0,0,0,51.41,56.15,52,55,8.333333333333334,3,4,0,0,8,5,3,1,765.75,110783.2186401044,80912.43877213253,218600.14900561,88900.73836839962,3685.30944138496 -14587,18007,32825,-9,32824,32822,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.559425214181,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,3,4,-9,0,0,5,3,1,765.75,110783.2186401044,80912.43877213253,218600.14900561,88900.73836839962,3685.30944138496 -14588,18008,32826,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-916.917731698646,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,9.346348636855744,0,0,1,1,0,0,0,32.44,41.78,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,401,147997.9781659812,0,0,0,786.5860291116613 -14589,18009,32827,-9,-9,-9,1,0,26,1,2,0,1,1,-9,0,4,7.5915445019438,7.94297614437455,0,0,0,-997.5121967924971,0,1,2,2019,17,6,42,15,1,6,0,6.539119884571944,6.539119884571944,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,1177.666666666667,119070.4811063793,-85138.06529701833,0,0,2599.035837360518 -14589,18009,32828,-9,32827,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.4625917268843,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1177.666666666667,119070.4811063793,-85138.06529701833,0,0,2599.035837360518 -14589,18009,32829,-9,32827,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.0145820939797,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1177.666666666667,119070.4811063793,-85138.06529701833,0,0,2599.035837360518 -14590,18010,32830,32831,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.596822130283591,4.533004962999446,46,0,-11.35105029098484,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.176087582376793,4.734867685256682,57.16,56.15,55.86,43.17,8.333333333333334,1,1,0,0,0,5,4,1,308,475204.3999298263,106809.0076481912,260485.5803372435,0,2374.662160294834 -14590,18010,32831,32830,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.607216648495719,8.915614631825408,6.619932959080066,36,0,-7.126558729761289,0,-9,2,2019,8,0,37,37,1,0,0,17.67086332759177,17.67086332759177,0,0,0,0,0,0,0,0,6.581000015398361,6.900755679729152,55.86,43.17,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,308,475204.3999298263,106809.0076481912,260485.5803372435,0,2374.662160294834 -14591,18011,32832,32833,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,5.965835447979977,5.956198984228704,60,2,66.58562244037282,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.224149699471935,5.935269491154209,40.15,32.06,49.78,23.3,8.333333333333334,1,1,0,0,0,7,2,0,841,82761.28916525521,57859.78433670594,117996.0094354005,0,2235.071446992545 -14591,18011,32833,32832,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,0,0,60,-2,18.18281485267459,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,29.76779678953583,0,0,1,1,0,0,0,49.78,23.3,40.15,32.06,3.333333333333333,1,1,0,0,0,7,2,0,841,82761.28916525521,57859.78433670594,117996.0094354005,0,2235.071446992545 -14592,18012,32834,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.853910216806221,7.0720243073169,0,0,-972.6650358927219,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.072062397662574,44.19,56.73,-9,-9,6.666666666666667,3,4,0,0,9,6,2,1,212,850009.654737791,258813.2803083566,120134.2775544516,0,329.114842193266 -14593,18013,32835,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1043.111020703581,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,211,-25313.79957234638,0,0,0,1681.512373256123 -14594,18014,32836,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.478241178582849,8.61755367261719,0,0,0,-961.3610526492536,0,-9,-9,2019,20,8,4,5,1,8,0,148.537669758081,148.537669758081,0,0,0,0,0,0,0,0,9.499404336011484,0,51.9,43.68,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,502,453156.339646807,235877.5658323985,0,0,9576.465461159887 -14595,18015,32837,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.39835960127057,7.933279369255353,0,0,0,-1150.985492763583,0,3,3,2019,8,0,35,32,1,0,0,12.21896078502624,12.21896078502624,0,0,0,0,27,0,0,0,.3551724009725071,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,210,95531.77088216219,115263.2465629082,0,0,1526.045065394427 -14596,18016,32838,32839,-9,-9,1,1,65,0,2,0,3,3,-9,0,3,0,0,0,46,7,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,26.87,42.28,26.86,8.333333333333334,2,3,0,0,1,8,1,0,1158,167413.9446944223,0,0,0,1072.808364793214 -14596,18016,32839,32838,-9,-9,1,0,58,0,2,0,3,3,-9,0,1,0,0,0,9,-7,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.28,26.86,53.12,26.87,5,2,3,0,0,0,8,1,0,1158,167413.9446944223,0,0,0,1072.808364793214 -14596,18017,32840,32842,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.28754314433642,7.270149670266727,0,23,7,-28.59008115787986,0,3,3,2019,14,3,34,24,1,3,0,6.560827405378469,6.560827405378469,0,0,0,0,0,1,1,0,0,0,40.54,31.39,40.24,27.89,3.333333333333333,2,3,0,0,8,8,2,0,422.5,-43546.84682594052,0,0,0,1971.852774771475 -14596,18017,32841,-9,32842,32840,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.8566903823792,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,422.5,-43546.84682594052,0,0,0,1971.852774771475 -14596,18017,32842,32840,32839,32838,1,0,40,0,2,0,2,2,0,0,2,0,0,0,23,-7,109.1362216851953,-9,3,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,27.89,40.54,31.39,3.333333333333333,2,3,0,0,0,8,2,0,422.5,-43546.84682594052,0,0,0,1971.852774771475 -14596,18017,32843,-9,32842,32840,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.167623584763,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,2,0,422.5,-43546.84682594052,0,0,0,1971.852774771475 -14596,18018,32844,-9,32842,32840,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-950.3943881992693,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.09,39.69,-9,-9,10,2,3,0,1,0,8,1,0,318,104951.1281336153,0,0,0,0 -14597,18019,32845,32846,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,7.621536227298821,7.683882131706498,0,1,-12,-137.6776558394193,-9,-9,-9,2019,10,0,38,0,1,1,0,7.241763324930882,7.241763324930882,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,7,4,2,0,0,1,4,4,1,241,172806.1216396512,190134.5620869085,0,0,2083.977017308572 -14597,18019,32846,32845,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.841464263882499,8.307608520280629,0,1,12,109.9724289328266,0,3,-9,2019,3,0,38,38,1,0,0,10.49728992535995,10.49728992535995,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,10,1,1,0,0,6,4,4,1,241,172806.1216396512,190134.5620869085,0,0,2083.977017308572 -14598,18020,32847,-9,32849,32848,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-913.4406203076627,-9,1,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,385,32245.73636219734,-32906.73519091461,109725.1567570068,60119.71404815716,2005.801831629725 -14598,18020,32848,32849,-9,-9,1,1,53,0,2,0,3,3,-9,0,3,7.699511693097914,8.008647090167088,0,22,9,21.85219833109445,0,-9,-9,2019,12,0,40,44,1,0,0,7.568355826253391,7.568355826253391,0,0,0,0,0,1,1,0,0,0,38.16,44.66,37.86,41.16,5,2,3,0,0,9,6,2,1,385,32245.73636219734,-32906.73519091461,109725.1567570068,60119.71404815716,2005.801831629725 -14598,18020,32849,32848,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,0,0,0,22,0,58.40166240473152,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,41.16,38.16,44.66,5,2,3,1,0,1,6,2,1,385,32245.73636219734,-32906.73519091461,109725.1567570068,60119.71404815716,2005.801831629725 -14598,18020,32850,-9,32849,32848,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.0943688594705,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,385,32245.73636219734,-32906.73519091461,109725.1567570068,60119.71404815716,2005.801831629725 -14598,18021,32851,-9,32849,32848,1,0,19,0,2,0,2,2,-9,0,3,0,5.629771128015601,5.430283532054723,0,0,-1162.811106185099,1,1,3,2019,10,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,5.16788894002281,0,46.08,57.2,-9,-9,1.666666666666667,2,3,0,0,2,6,2,1,1059,-36578.87874353933,0,0,0,-256.0438025134291 -14599,18022,32852,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.397258236338848,7.148689121054036,0,0,-1018.696796723999,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.88629976573292,7.498109486517566,35.43,47.77,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,416,262582.5434384034,242368.0325333419,292878.4221011294,145603.4614945328,592.3875188725572 -14600,18023,32853,32854,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,8,-10,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,45.2,42.85,60.33,8.333333333333334,2,3,0,0,2,7,1,0,678,28379.8041025082,-48192.33742844786,128095.5083157504,95802.59652869117,1825.102946538032 -14600,18023,32854,32853,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,0,0,0,8,10,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,43.09,45.2,8.333333333333334,2,3,1,0,4,7,1,0,678,28379.8041025082,-48192.33742844786,128095.5083157504,95802.59652869117,1825.102946538032 -14600,18023,32855,-9,32853,32854,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.974284537942,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,1,0,678,28379.8041025082,-48192.33742844786,128095.5083157504,95802.59652869117,1825.102946538032 -14600,18023,32856,-9,32853,32854,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.804562795761,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,678,28379.8041025082,-48192.33742844786,128095.5083157504,95802.59652869117,1825.102946538032 -14600,18023,32857,-9,32853,32854,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.5680710830353,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,678,28379.8041025082,-48192.33742844786,128095.5083157504,95802.59652869117,1825.102946538032 -14601,18024,32858,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,0,0,-958.3942948387144,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.25450569599104,0,48.03,29.36,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,239,-29970.74038441345,0,0,0,995.622461108082 -14602,18025,32859,32860,-9,-9,1,1,85,1,2,0,2,2,-9,0,3,0,0,0,10,17,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,8.374997111155334,0,0,1,1,0,0,0,54,45,49,47,8,2,3,0,0,0,5,1,1,189.5,-50808.57928110964,4419.559734163013,0,0,917.489821143009 -14602,18025,32860,32859,-9,-9,1,0,68,1,2,0,3,3,-9,0,3,0,0,0,10,-17,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,49,47,54,45,7,2,3,0,0,0,5,1,1,189.5,-50808.57928110964,4419.559734163013,0,0,917.489821143009 -14602,18026,32861,32863,32860,32859,1,1,48,1,2,0,2,2,-9,0,2,7.260683023444861,7.234961062680921,0,28,-2,-36.54014948214686,0,2,2,2019,10,1,22,22,1,1,0,6.793706680766888,6.793706680766888,0,0,0,0,0,1,1,0,6.820047989294824,0,56.12,27.19,60.02,56.42,8.333333333333334,2,3,0,0,11,5,2,1,786,248816.4451448642,1892.41746910562,164350.5686443256,17140.71852796507,2076.65268548753 -14602,18026,32862,-9,32863,32861,1,0,17,1,2,1,2,0,0,0,3,0,0,0,0,0,-956.8182630571059,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,54.77,-9,-9,5,2,3,0,0,0,5,2,1,786,248816.4451448642,1892.41746910562,164350.5686443256,17140.71852796507,2076.65268548753 -14602,18026,32863,32861,-9,-9,1,0,50,1,2,0,1,1,-9,0,5,6.374261325142112,6.215248747715016,0,10,2,50.05665772257051,0,-9,-9,2019,9,0,12,12,1,0,0,7.245451410859518,7.245451410859518,0,0,0,0,0,1,1,0,0,0,60.02,56.42,56.12,27.19,8.333333333333334,2,3,0,0,5,5,2,1,786,248816.4451448642,1892.41746910562,164350.5686443256,17140.71852796507,2076.65268548753 -14602,18027,32864,-9,32866,32865,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.2113311718791,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,432.75,6349.271193424043,39353.00656715809,0,0,2409.844408736294 -14602,18027,32865,32866,32860,32859,1,1,38,1,2,0,2,2,-9,0,4,8.209884613869376,8.148571681865057,0,10,1,-126.643041187104,0,3,2,2019,10,0,39,25,1,1,0,10.65009028902004,10.65009028902004,0,0,0,0,0,1,1,0,7.643394301233153,0,50,57,48,56,7,2,3,0,0,1,5,3,1,432.75,6349.271193424043,39353.00656715809,0,0,2409.844408736294 -14602,18027,32866,32865,-9,-9,1,0,37,1,2,0,3,3,-9,0,4,0,0,0,10,-1,-52.56500482186773,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,2,3,0,0,0,5,3,1,432.75,6349.271193424043,39353.00656715809,0,0,2409.844408736294 -14602,18027,32867,-9,32866,32865,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.070678323848,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,5,3,1,432.75,6349.271193424043,39353.00656715809,0,0,2409.844408736294 -14602,18028,32868,-9,32863,32861,1,0,22,1,2,1,2,0,0,0,2,0,0,0,0,0,-960.1249525898827,-9,1,2,2019,36,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,5.66,56.1,-9,-9,0,2,3,0,0,0,5,1,1,211,58156.27337696461,0,0,0,0 -14603,18029,32869,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.109485357609197,7.27823175920175,0,0,-1010.980955949642,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.262933551522263,6.820109392275874,41.46,53.68,-9,-9,5,1,1,0,0,8,10,2,1,979,405110.3834652459,157317.596340604,274576.4866363409,0,1156.105790450659 -14604,18030,32870,-9,-9,-9,1,1,101,0,0,0,1,1,-9,0,5,0,7.974009118768456,8.397536788571569,0,0,-952.6714200893628,0,3,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.508688872050174,8.220400255114438,56.26,44.59,-9,-9,10,1,1,0,0,0,5,4,1,564,728609.8334262593,285137.7514981964,332742.6958272757,0,4253.234497525032 -14605,18031,32871,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.899274465791496,5.867289860363847,0,0,-961.6738194371521,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.605270129434567,5.880787021939638,46.76,49.87,-9,-9,10,1,1,0,0,0,4,2,0,117,-20383.3632379359,137400.4096260684,0,0,812.8702291184156 -14606,18032,32872,-9,32874,32873,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1191.613531180459,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,648.6666666666666,1106.354796722687,36618.05580480705,0,0,2545.274410323218 -14606,18032,32873,32874,-9,-9,1,1,60,0,1,0,2,2,-9,1,2,0,0,0,5,4,-20.48438056340281,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,28.13,41.07,60.93,10,1,1,1,0,5,9,2,0,648.6666666666666,1106.354796722687,36618.05580480705,0,0,2545.274410323218 -14606,18032,32874,32873,-9,-9,1,0,56,0,1,0,3,3,-9,1,5,6.747239751193454,7.187862842376681,0,5,-4,-5.14808887052245,-9,2,2,2019,7,1,16,0,1,1,0,7.708231822633862,7.708231822633862,0,0,0,0,0,1,1,0,0,0,41.07,60.93,47.78,28.13,10,1,1,0,0,7,9,2,0,648.6666666666666,1106.354796722687,36618.05580480705,0,0,2545.274410323218 -14606,18033,32875,-9,32874,32873,1,1,23,0,1,0,2,2,-9,0,4,0,0,0,0,0,-921.4945870336281,-9,3,2,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,10,1,1,1,0,6,9,2,0,285,145539.2598983545,0,0,0,0 -14607,18034,32876,32877,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.306558205399485,7.467741973898624,0,30,5,11.72564253960417,0,-9,-9,2019,12,0,33,43,1,0,0,5.019851070423717,5.019851070423717,0,0,0,0,0,0,0,0,0,0,52.03,51.76,46.5,58.26,10,1,1,0,0,9,8,4,1,889,336221.6363594818,-48374.32040764276,234713.2037172285,66401.35665638761,2438.893399116485 -14607,18034,32877,32876,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.164421974049809,8.027115280498812,0,30,-5,38.69321565549913,0,2,2,2019,7,0,40,48,1,0,0,9.07410584164921,9.07410584164921,0,0,0,0,0,0,0,0,0,0,46.5,58.26,52.03,51.76,5,1,1,0,0,9,8,4,1,889,336221.6363594818,-48374.32040764276,234713.2037172285,66401.35665638761,2438.893399116485 -14608,18035,32878,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-904.7467756281222,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,20.73524448037943,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,768,-106406.2874972223,0,0,0,1965.865471246797 -14608,18036,32879,-9,32878,-9,1,0,51,0,0,0,1,1,-9,0,3,8.289316232058097,8.315249048616291,0,0,0,-945.4102359261924,0,3,3,2019,11,1,37,37,1,1,0,15.40527675292519,15.40527675292519,0,0,0,0,14.5,1,1,0,0,0,44.08,41.97,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,443,541847.0966036763,431589.8145698225,278907.0180648232,151492.7136829286,1791.093261133786 -14608,18037,32880,-9,32879,-9,1,0,23,0,0,0,1,1,-9,1,2,8.31369423338599,8.151135656190219,0,0,0,-968.8463558206615,0,1,-9,2019,21,8,38,39,1,8,1,13.07156187858953,13.07156187858953,0,0,0,0,7,1,1,0,2.258499891364384,0,34.32,27.49,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,399,160856.2989188929,63982.03755212459,0,0,1862.583093394055 -14609,18038,32881,32883,-9,-9,1,0,49,0,2,0,2,2,-9,1,4,7.31953235425222,6.948647750438517,0,7,-19,37.28572477054682,0,2,-9,2019,11,0,22,22,1,0,0,7.279324092374182,7.279324092374182,0,0,0,0,7,1,1,0,.2457628319245545,0,62.11,45.63,57.33,53.46,8.333333333333334,1,1,0,0,7,12,3,1,475,1250674.472495036,262824.6127526499,442131.1687626468,9153.387806413011,4446.009584826485 -14609,18038,32882,-9,32881,32883,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.5400096360693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,475,1250674.472495036,262824.6127526499,442131.1687626468,9153.387806413011,4446.009584826485 -14609,18038,32883,32881,-9,-9,1,1,68,0,2,0,2,2,-9,0,3,5.438530357084749,8.391987038384642,8.36373300471084,7,19,-67.07410129697216,0,2,3,2019,7,0,42,44,1,0,0,.5343342520313792,.5343342520313792,0,0,0,0,0,1,1,0,8.229622579631181,8.191743647179441,57.33,53.46,62.11,45.63,5,1,1,0,0,7,12,3,1,475,1250674.472495036,262824.6127526499,442131.1687626468,9153.387806413011,4446.009584826485 -14609,18038,32884,-9,32881,32883,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-962.2454093980125,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,3,1,475,1250674.472495036,262824.6127526499,442131.1687626468,9153.387806413011,4446.009584826485 -14610,18039,32885,32886,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.290931817806031,6.446125834320958,63,2,-42.74670179794188,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,33.97040655928657,0,0,1,1,0,0,6.470479639784933,50.71,42.61,57.63,29.16,10,1,1,0,0,0,6,2,1,1089.5,333108.3389512671,137605.9978120407,191954.9331507713,0,1995.658900829868 -14610,18039,32886,32885,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.65345432268481,5.313348222355875,63,-2,-71.4040602996326,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,21.93627361733608,0,0,1,1,0,0,5.417373761090011,57.63,29.16,50.71,42.61,6.666666666666667,1,1,0,0,0,6,2,1,1089.5,333108.3389512671,137605.9978120407,191954.9331507713,0,1995.658900829868 -14611,18040,32887,32888,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,36,-1,0,0,2,2,2019,18,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,36.42,33.8,60.12,54.8,1.666666666666667,1,1,0,0,2,8,1,0,396.5,-34089.97218655029,0,0,0,1422.034189321295 -14611,18040,32888,32887,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,36,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.588847263676273,0,60.12,54.8,36.42,33.8,1.666666666666667,1,1,0,0,8,8,1,0,396.5,-34089.97218655029,0,0,0,1422.034189321295 -14612,18041,32889,-9,-9,-9,1,0,40,0,1,0,3,3,-9,1,1,0,5.553196376687215,5.646598224262286,0,0,-1070.00365990532,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,5.589037663254736,39.53,37.44,-9,-9,0,1,1,0,0,6,11,2,1,173,-68475.01472127886,18082.14985850986,0,0,1145.203649664117 -14612,18042,32890,-9,32889,-9,1,0,23,0,1,0,3,3,-9,0,5,7.487285643961706,7.271184803806424,0,0,0,-979.7239859233332,0,3,3,2019,7,0,30,16,1,0,1,6.358755726839489,6.358755726839489,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,47,989.0785310854101,0,0,0,1357.261979088437 -14612,18043,32891,-9,32889,-9,1,0,19,0,1,0,2,2,-9,0,5,7.228394702501773,7.047834939422945,0,0,0,-948.564394152915,0,3,-9,2019,10,1,21,12,1,1,1,6.051073451167436,6.051073451167436,0,0,0,0,105,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,3,11,2,1,1498,65404.70415033274,-124289.9922572104,0,0,41.55910783881222 -14613,18044,32892,-9,32893,32896,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.1944336544365,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,403,1799927.428066328,531538.747814642,890623.018112227,0,6503.810447960266 -14613,18044,32893,32896,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.879682325765383,8.937139453283592,0,20,0,35.42688007605237,0,2,2,2019,7,0,42,52,1,0,0,16.33116639685499,16.33116639685499,0,0,0,0,0,0,0,0,0,0,51.24,58.84,55.76,44.76,1.666666666666667,1,1,0,0,10,7,5,1,403,1799927.428066328,531538.747814642,890623.018112227,0,6503.810447960266 -14613,18044,32894,-9,32893,32896,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1046.241928750033,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,403,1799927.428066328,531538.747814642,890623.018112227,0,6503.810447960266 -14613,18044,32895,-9,32893,32896,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-928.3851939941632,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,403,1799927.428066328,531538.747814642,890623.018112227,0,6503.810447960266 -14613,18044,32896,32893,-9,-9,1,1,41,0,3,0,1,1,-9,0,3,9.234573887055443,9.378451932184676,0,9,0,74.03993161633487,0,-9,-9,2019,4,1,44,48,1,1,0,38.65840474721368,38.65840474721368,0,0,0,0,0,0,0,0,0,0,55.76,44.76,51.24,58.84,10,1,1,0,0,6,7,5,1,403,1799927.428066328,531538.747814642,890623.018112227,0,6503.810447960266 -14614,18045,32897,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.719302728836768,8.360041185789601,8.036468881581275,0,0,-932.9968446685,0,2,2,2019,25,10,10,2,1,10,0,29.76320850097428,29.76320850097428,0,0,0,0,0,1,1,0,0,7.675821204736211,26.42,59.38,-9,-9,1.666666666666667,1,1,0,0,10,11,5,1,1104,1561467.603076886,1062858.241812603,212411.1303176086,0,2143.364913703125 -14615,18046,32898,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.928360534584707,6.79269936951892,0,0,-1054.453165021233,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.874402493783226,6.965251099375825,50.08,40.99,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,361,254212.138394736,87709.29092207886,229953.7064846526,0,1830.960605110663 -14616,18047,32899,32901,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,0,0,0,7,-10,46.16901212032956,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,43.04,18.56,7,1,1,0,0,0,1,2,0,475.75,104829.0738809939,25644.41446538173,0,0,1961.834039654298 -14616,18047,32900,-9,32901,32899,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.0818209875349,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,475.75,104829.0738809939,25644.41446538173,0,0,1961.834039654298 -14616,18047,32901,32899,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,2.48464585246137,2.300204043230343,7,10,6.614742654141594,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.884478549300211,0,43.04,18.56,50,57,3.333333333333333,1,1,0,0,4,1,2,0,475.75,104829.0738809939,25644.41446538173,0,0,1961.834039654298 -14616,18047,32902,-9,32901,32899,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.9455623995972,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,475.75,104829.0738809939,25644.41446538173,0,0,1961.834039654298 -14617,18048,32903,32904,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.446181760301776,7.505548669172419,10,4,-77.12982729479876,0,-9,2,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,0,7.467697075287997,35.7,23.15,40.3,22.27,8.333333333333334,1,1,0,0,0,6,2,1,359.5,615204.2388588631,374198.6154618912,227823.2464190948,0,2112.752183428619 -14617,18048,32904,32903,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,10,-4,-97.45248248434784,0,-9,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,22.27,35.7,23.15,3.333333333333333,1,1,0,0,0,6,2,1,359.5,615204.2388588631,374198.6154618912,227823.2464190948,0,2112.752183428619 -14618,18049,32905,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.4164104635088,0,2,3,2019,5,0,0,82,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,8,10,1,0,479,-259814.681889284,0,0,0,-367.1580778338931 -14619,18050,32906,32907,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,13,-1,153.3785116064712,0,2,2,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,54.79,55.86,8.333333333333334,1,1,0,0,5,1,2,1,419.3333333333333,-84154.19357604442,10737.57074686172,0,0,1629.116475627504 -14619,18050,32907,32906,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,7.709982150960229,7.701973417785284,0,13,1,-100.0168260742267,0,2,2,2019,10,0,38,37,1,0,0,5.699878288674932,5.699878288674932,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.94,49.53,8.333333333333334,1,1,0,0,11,1,2,1,419.3333333333333,-84154.19357604442,10737.57074686172,0,0,1629.116475627504 -14619,18050,32908,-9,32906,32907,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-882.1317782785535,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,1,419.3333333333333,-84154.19357604442,10737.57074686172,0,0,1629.116475627504 -14620,18051,32909,-9,32913,32911,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-839.0262957633254,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1438,42114.07862557739,0,0,0,2370.160859261769 -14620,18051,32910,-9,32913,32911,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.6476092146145,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1438,42114.07862557739,0,0,0,2370.160859261769 -14620,18051,32911,32913,-9,-9,1,1,48,0,3,0,2,2,-9,1,2,0,0,0,13,13,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.84,25.91,46.2,43.53,5,1,1,0,0,0,10,1,0,1438,42114.07862557739,0,0,0,2370.160859261769 -14620,18051,32912,-9,32913,32911,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.8119264205463,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1438,42114.07862557739,0,0,0,2370.160859261769 -14620,18051,32913,32911,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,14,-13,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.2,43.53,53.84,25.91,5,1,1,0,0,2,10,1,0,1438,42114.07862557739,0,0,0,2370.160859261769 -14621,18052,32914,32915,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.161034811033985,4.894608623070193,7,-5,61.78133572284638,0,3,3,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.917479380993707,5.057653698856988,34.23,62.58,44.97,34.68,8.333333333333334,1,1,0,0,1,7,2,1,335.5,518457.7492316726,143347.8032386025,394330.8800836557,0,1331.427035906402 -14621,18052,32915,32914,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.526929761427382,6.261617432992503,7,5,14.81658734473362,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.141588240997042,6.258372182643317,44.97,34.68,34.23,62.58,5,1,1,0,0,0,7,2,1,335.5,518457.7492316726,143347.8032386025,394330.8800836557,0,1331.427035906402 -14622,18053,32916,-9,32917,-9,1,1,47,0,0,0,3,3,-9,0,3,0,0,0,0,0,-969.3597501848961,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.63,59.14,-9,-9,5,1,1,1,0,2,12,1,0,729,-16244.56440218386,0,0,0,-4.167444271427087 -14622,18054,32917,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.646988995234381,6.769702280997205,0,0,-1073.713306942659,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,.7029854398765962,0,0,1,1,0,0,6.704767403252556,47.58,27.91,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,308,300075.8408631304,108941.4847598987,133337.2681840289,0,1710.475545018189 -14623,18055,32918,32919,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.350025072562804,7.413326590578502,0,20,-3,29.02920143252441,0,3,3,2019,6,0,38,37,1,0,0,5.425724756977354,5.425724756977354,0,0,0,0,0,1,1,0,0,0,55.96,49.93,56.35,48.33,8.333333333333334,1,1,0,0,10,2,2,1,1066,1116580.422680807,117422.7641628808,378897.8217602505,0,1132.151373805694 -14623,18055,32919,32918,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,4.8685357056464,4.773216157531349,0,20,3,10.40679988376682,0,3,3,2019,6,0,25,30,1,0,0,.5897106112749788,.5897106112749788,0,0,0,.1545377319803958,0,1,1,0,0,0,56.35,48.33,55.96,49.93,8.333333333333334,1,1,0,0,10,2,2,1,1066,1116580.422680807,117422.7641628808,378897.8217602505,0,1132.151373805694 -14624,18056,32920,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.320461589205172,6.036143919821894,0,0,-937.0818289426137,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,25.92937204997567,0,0,1,1,0,0,6.076714678872861,55,45,-9,-9,8,1,1,0,0,0,2,2,1,715,159939.2761911112,153147.2735416907,220186.2916938036,0,557.2371696685864 -14625,18057,32921,32922,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,9.228251133719496,9.105417835169387,0,41,1,-29.46303321918153,0,2,2,2019,13,2,40,40,1,2,0,28.31913511875234,28.31913511875234,0,0,0,0,0,0,0,0,2.352426307445818,0,51.47,53.17,63.65,35.93,6.666666666666667,1,1,0,0,9,6,5,1,507,473029.1968678377,18144.51400744887,378397.123444026,0,6075.860913030842 -14625,18057,32922,32921,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.774088034928303,9.124092863904254,0,41,-1,-31.20291969031862,0,3,3,2019,8,1,42,43,1,1,0,20.06849769897858,20.06849769897858,0,0,0,0,0,0,0,0,2.724225377103895,0,63.65,35.93,51.47,53.17,6.666666666666667,1,1,0,0,9,6,5,1,507,473029.1968678377,18144.51400744887,378397.123444026,0,6075.860913030842 -14626,18058,32923,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.791095556300895,7.737910756774807,0,0,0,-1042.227600232905,0,3,-9,2019,10,1,44,33,1,1,0,6.209081477141789,6.209081477141789,0,0,0,0,0,1,1,0,0,0,52.25,37.18,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,368,51393.80677035944,-38038.5544352197,0,0,1211.967378096834 -14626,18059,32924,-9,32923,-9,1,1,29,0,0,0,2,2,-9,0,4,7.873596392478472,7.783532810892384,0,0,0,-1141.694719297685,0,2,-9,2019,10,0,37,40,1,1,1,8.535791822482222,8.535791822482222,0,0,0,0,0,1,1,0,.8803464777160961,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,659,42685.57336002143,-22863.05675684031,0,0,1319.252270056039 -14626,18060,32925,-9,32923,-9,1,0,20,0,0,0,2,2,-9,0,3,7.510840990031542,7.385819220217329,0,0,0,-1095.264106998736,0,2,-9,2019,11,1,39,25,1,1,1,4.53949404666023,4.53949404666023,0,0,0,0,0,1,1,0,0,0,44.36,54.04,-9,-9,3.333333333333333,1,1,0,0,3,2,3,1,181,-74091.01454678117,0,0,0,905.2884935915106 -14627,18061,32926,-9,32928,32927,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.695245534057,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,0,2211.333333333333,507098.0440000912,253701.5659579015,454944.288926597,240786.5576907847,4087.717181000266 -14627,18061,32927,32928,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.365049298974208,7.987681929828559,0,6,-1,-33.96708244276088,0,2,-9,2019,5,0,26,35,1,0,0,17.41643689116459,17.41643689116459,0,0,0,0,0,0,0,0,5.217956065601161,0,67.36,35.12,48.77,60.16,10,1,1,0,0,5,8,5,0,2211.333333333333,507098.0440000912,253701.5659579015,454944.288926597,240786.5576907847,4087.717181000266 -14627,18061,32928,32927,-9,-9,1,0,36,1,1,0,3,3,-9,0,5,9.154638714326774,9.022106245011109,0,6,1,8.413351151065381,0,-9,-9,2019,10,1,42,36,1,1,0,25.09401783892876,25.09401783892876,0,0,0,0,0,0,0,0,4.860215190231481,0,48.77,60.16,67.36,35.12,8.333333333333334,1,1,0,0,7,8,5,0,2211.333333333333,507098.0440000912,253701.5659579015,454944.288926597,240786.5576907847,4087.717181000266 -14628,18062,32929,32930,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,8.790095441845486,8.636056494529026,0,16,3,1.878148905085584,0,2,2,2019,6,0,49,49,1,0,0,16.84674128185284,16.84674128185284,0,0,0,0,0,1,1,0,1.025815382203201,0,44.71,49.38,43.6,51.61,1.666666666666667,2,3,0,0,13,10,5,1,776,1088318.989053399,1005145.711389039,260247.7288216048,143033.015977482,3815.064430843576 -14628,18062,32930,32929,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.147225545911532,8.012194836497763,0,16,-3,42.03886233191301,0,1,1,2019,11,0,48,48,1,0,0,8.931979897145279,8.931979897145279,0,0,0,0,0,1,1,0,0,0,43.6,51.61,44.71,49.38,8.333333333333334,2,3,0,0,13,10,5,1,776,1088318.989053399,1005145.711389039,260247.7288216048,143033.015977482,3815.064430843576 -14628,18062,32931,-9,32929,32930,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.5287282313255,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,10,5,1,776,1088318.989053399,1005145.711389039,260247.7288216048,143033.015977482,3815.064430843576 -14629,18063,32932,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.0017853076889,9.22294694182686,0,0,0,-1015.797029805496,-9,3,3,2019,20,9,50,0,1,9,0,18.02809991781091,18.02809991781091,0,0,0,0,0,0,0,0,0,0,50,50,-9,-9,5,1,1,0,0,11,12,5,1,577,-76771.54570989993,0,79700.20877104107,82468.92043585087,2752.563292834676 -14630,18064,32933,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.192240384751161,7.130027009365138,0,0,-1059.538990463286,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.05922458164855,7.035116764869217,50.27,44.25,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,111,1186171.909789173,382297.3129718048,663450.9539577552,0,1605.825684883308 -14631,18065,32934,32935,-9,-9,1,0,33,0,4,0,2,2,-9,0,5,0,0,0,2,2,-16.24704070000047,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.42,54.81,10,3,4,0,0,0,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14631,18065,32935,32934,-9,-9,1,1,31,0,4,0,3,3,-9,0,5,6.758636535090961,6.997347328883703,0,2,-2,-21.21287745608736,0,-9,-9,2019,7,0,25,25,1,0,0,4.606300585531817,4.606300585531817,0,0,0,0,0,1,1,0,0,0,60.42,54.81,62.39,56.71,10,2,3,0,1,1,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14631,18065,32936,-9,32934,32935,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1097.506003224054,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14631,18065,32937,-9,32934,32935,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1022.560649058412,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14631,18065,32938,-9,32934,32935,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-933.5438544813167,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14631,18065,32939,-9,32934,32935,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1139.237001024483,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,585.8333333333334,17924.78354027644,0,0,0,1674.507365759633 -14632,18066,32940,32941,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.851982361168197,8.85642149961676,0,10,1,3.314998909585887,0,2,2,2019,9,0,37,37,1,0,0,18.20846331663212,18.20846331663212,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49.46,56.91,8.333333333333334,1,1,0,0,12,11,5,1,142,546975.8376781307,259341.6780722162,238322.4866894964,2384.510009455133,4925.949105269839 -14632,18066,32941,32940,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.879318238386119,8.727891732031528,0,10,-1,-127.1081087145038,0,-9,-9,2019,8,0,37,37,1,0,0,16.43117065534033,16.43117065534033,0,0,0,0,0,0,0,0,0,0,49.46,56.91,51.77,58.57,8.333333333333334,1,1,0,0,12,11,5,1,142,546975.8376781307,259341.6780722162,238322.4866894964,2384.510009455133,4925.949105269839 -14633,18067,32942,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.266538763615143,8.228832445034296,0,0,0,-1111.912852886447,0,3,-9,2019,14,2,76,44,1,2,0,6.322216130985712,6.322216130985712,0,0,0,0,0,0,0,0,0,0,47.56,39.68,-9,-9,5,1,1,0,0,10,1,4,1,914,328935.8015238656,40509.88713303271,151289.4998482269,97199.8562704338,1980.058318098821 -14633,18068,32943,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.515311080889502,10.01360532397832,0,0,0,-932.3940933264471,0,-9,-9,2019,7,0,60,60,1,0,0,27.80530701500039,27.80530701500039,0,0,0,0,0,0,0,0,5.83280040597855,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,346,-65819.03561038656,30277.57792794452,0,0,7615.641754002911 -14634,18069,32944,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.685327284925564,7.154042105000833,0,0,-935.0741234866163,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.808826780203189,0,21.97950602896673,0,1,1,0,3.031124151320949,7.453770700426813,59.79,18.14,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,447,578691.160158964,390422.4355797911,369589.7183600461,0,3129.646186349055 -14635,18070,32945,-9,32946,32947,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.3251782938579,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,5,0,398.75,353997.4044379445,281217.0412785275,186377.5910061582,106832.6949489562,5495.057416658236 -14635,18070,32946,32947,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,0,0,0,18,-5,-4.210384455944082,0,3,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,58.15,52.91,45.29,49.34,8.333333333333334,1,1,0,0,0,4,5,0,398.75,353997.4044379445,281217.0412785275,186377.5910061582,106832.6949489562,5495.057416658236 -14635,18070,32947,32946,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.184790186446092,9.91789839618958,0,18,5,147.9274225736314,0,-9,-9,2019,7,1,50,25,1,1,0,24.91882818697185,24.91882818697185,0,0,0,0,0,1,0,1,0,0,45.29,49.34,58.15,52.91,5,1,1,0,0,8,4,5,0,398.75,353997.4044379445,281217.0412785275,186377.5910061582,106832.6949489562,5495.057416658236 -14635,18070,32948,-9,32946,32947,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-935.1362652948415,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,0,398.75,353997.4044379445,281217.0412785275,186377.5910061582,106832.6949489562,5495.057416658236 -14636,18071,32949,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.393348048009088,8.538543516108064,6.965114667432938,0,0,-977.3713627140949,0,2,2,2019,25,8,37,37,1,8,0,11.69565226312794,11.69565226312794,0,0,0,0,0,1,1,0,7.593611282171037,0,23.55,55.96,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,864.5,469638.8495101804,134526.9854693414,310116.4286226584,0,2450.12463314043 -14636,18071,32950,-9,32949,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-950.1637469053514,-9,1,-9,2019,25,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.36,52.53,-9,-9,3.333333333333333,1,1,0,0,0,10,5,1,864.5,469638.8495101804,134526.9854693414,310116.4286226584,0,2450.12463314043 -14636,18072,32951,-9,32949,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-781.8023602960909,-9,1,-9,2019,30,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,15.49,56.76,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,939,-13830.0814126409,0,0,0,0 -14637,18073,32952,-9,32953,32955,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.52898109055,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.0208137927264094,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,419.25,116117.6995616256,56263.66543616934,138671.2488379956,84003.18491073776,2472.554050407057 -14637,18073,32953,32955,-9,-9,1,0,27,0,2,0,2,2,1,0,3,0,0,0,2,1,-2.078580768392196,-9,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.29,58.81,49,58,8.333333333333334,1,1,0,0,3,12,3,0,419.25,116117.6995616256,56263.66543616934,138671.2488379956,84003.18491073776,2472.554050407057 -14637,18073,32954,-9,32953,32955,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.430435564708,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,419.25,116117.6995616256,56263.66543616934,138671.2488379956,84003.18491073776,2472.554050407057 -14637,18073,32955,32953,-9,-9,1,1,26,0,2,0,2,2,-9,0,4,8.045123025532295,8.187532025038843,0,2,-1,-34.7792635467192,-9,-9,-9,2019,10,0,39,0,1,1,0,8.543895212041498,8.543895212041498,0,0,0,0,0,1,1,0,0,0,49,58,42.29,58.81,7,1,1,0,0,1,12,3,0,419.25,116117.6995616256,56263.66543616934,138671.2488379956,84003.18491073776,2472.554050407057 -14638,18074,32956,32957,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.215813916947162,8.02385046033538,44,4,10.47068952157108,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.46402910669663,7.917918702515025,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,4,6,3,1,350.5,958367.425350155,442794.5293249135,274629.9317110901,0,2857.640027306227 -14638,18074,32957,32956,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.344956726990961,6.484288976930587,8,-4,100.5540843585197,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.655081526280515,6.57126049236806,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,350.5,958367.425350155,442794.5293249135,274629.9317110901,0,2857.640027306227 -14639,18075,32958,32959,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.416639504719154,8.069779754302136,0,4,-8,-102.2118140454564,0,1,1,2019,11,0,38,41,1,2,0,12.03062948054875,12.03062948054875,0,0,0,0,0,0,0,0,0,0,46,57,50,57,7,2,3,0,0,5,8,5,1,1653,200442.7009528497,-4220.273943481276,190761.4850785173,86005.67673980421,3537.198850565309 -14639,18075,32959,32958,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.684046032391267,8.909990989982578,0,4,8,-95.96559989595821,0,-9,-9,2019,10,0,46,48,1,1,0,12.55085634625247,12.55085634625247,0,0,0,0,0,0,0,0,.216464472212105,0,50,57,46,57,7,2,3,0,0,3,8,5,1,1653,200442.7009528497,-4220.273943481276,190761.4850785173,86005.67673980421,3537.198850565309 -14640,18076,32960,32961,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.379206744453811,7.951703380170338,0,6,1,80.01386312857045,0,-9,-9,2019,7,0,46,45,1,0,0,8.691959363928753,8.691959363928753,0,0,0,0,0,0,0,0,0,0,46.67,41.34,54.79,55.86,8.333333333333334,1,1,0,0,9,1,5,1,972.5,55572.58482313553,5971.694606897028,0,0,2951.270579448276 -14640,18076,32961,32960,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.161254641514978,8.395834111659791,0,6,-1,-224.1009501088541,0,-9,-9,2019,6,0,43,47,1,0,0,9.980142205212557,9.980142205212557,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.67,41.34,10,1,1,0,0,4,1,5,1,972.5,55572.58482313553,5971.694606897028,0,0,2951.270579448276 -14641,18077,32962,32963,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.144781574078289,8.482590466536884,0,31,5,-47.48102780594971,0,3,2,2019,13,1,44,39,1,1,0,8.858696190968962,8.858696190968962,0,0,0,0,0,0,0,0,2.316823616734142,0,41.23,53.22,48.87,58.55,6.666666666666667,1,1,0,0,11,10,5,1,1568.5,505247.4759924352,306901.4064764216,191138.1265592778,97334.18976048198,3235.879875626488 -14641,18077,32963,32962,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.099288464405461,8.353332500574234,0,31,-5,-63.4008331193841,0,1,1,2019,10,0,50,45,1,0,0,7.840458057883881,7.840458057883881,0,0,0,0,0,0,0,0,.9933772482193522,0,48.87,58.55,41.23,53.22,8.333333333333334,1,1,0,0,11,10,5,1,1568.5,505247.4759924352,306901.4064764216,191138.1265592778,97334.18976048198,3235.879875626488 -14642,18078,32964,32965,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.095521805085252,8.153426176519,0,8,-1,-81.01259912385024,0,2,2,2019,9,1,28,28,1,1,0,16.50984218013297,16.50984218013297,0,0,0,0,2,1,1,0,0,0,57.06,57.76,42.81,54.48,8.333333333333334,1,1,0,0,9,12,5,1,1694,863864.7457870418,527454.7929872308,261347.8603746702,74865.55129077629,3898.206264740728 -14642,18078,32965,32964,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.869787114227581,8.676002260256855,0,8,1,-32.53370837579339,0,2,3,2019,12,0,44,40,1,0,0,17.27760826412871,17.27760826412871,0,0,0,0,0,1,1,0,4.23312404316174,0,42.81,54.48,57.06,57.76,6.666666666666667,1,1,0,0,9,12,5,1,1694,863864.7457870418,527454.7929872308,261347.8603746702,74865.55129077629,3898.206264740728 -14642,18078,32966,-9,32964,32965,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-838.8455378206968,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,5,1,1694,863864.7457870418,527454.7929872308,261347.8603746702,74865.55129077629,3898.206264740728 -14643,18079,32967,32968,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.554252037687069,7.366921668879538,3,-10,35.93749612132422,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,.9925413988449971,5.594995881650513,21.76479561213191,0,1,1,0,3.825386612013721,7.712442085994336,57.4,12.2,51.15,24.98,10,1,1,0,0,0,11,4,1,499.5,1474267.266581018,686744.2510347408,384184.2843235383,0,3044.648203600189 -14643,18079,32968,32967,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.024183578950646,7.650988511310678,3,10,88.29021194927029,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,2.013344676176004,15.08121224269327,21.97254832863042,0,1,1,0,5.483707448725812,8.000095739932602,51.15,24.98,57.4,12.2,8.333333333333334,1,1,0,0,0,11,4,1,499.5,1474267.266581018,686744.2510347408,384184.2843235383,0,3044.648203600189 -14644,18080,32969,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.065760277134805,7.939931115415881,6,0,-41.51858204696352,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.583479173536545,7.745549056114768,53.37,41.63,52.43,42.16,8.333333333333334,1,1,0,0,0,4,3,1,482,948057.3377571662,606819.1898450955,231031.941989357,0,1607.933825604658 -14644,18081,32970,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.335524259141248,7.448868613262001,6,0,99.58898085603093,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.738724725936439,7.362624293626294,52.43,42.16,53.37,41.63,8.333333333333334,1,1,0,0,7,4,3,1,296,606726.4907296852,166862.6957188728,139398.0982419379,0,77.68353144943035 -14645,18082,32971,32972,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.439559542066235,8.701537411565907,0,2,-7,8.558862427753599,-9,-9,-9,2019,19,7,45,0,1,7,0,16.50153949392914,16.50153949392914,0,0,0,0,0,0,0,0,0,0,50.03,52.62,46,51,6.666666666666667,1,1,0,0,5,1,5,0,691.5,269072.3456626342,222557.5363213542,196389.5522659796,73503.2173897184,3563.285641954647 -14645,18082,32972,32971,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,7.943203755824573,8.041143830434198,0,2,7,79.94326696088801,0,-9,-9,2019,13,1,42,38,1,1,0,7.341338091111748,7.341338091111748,0,0,0,0,0,0,0,0,0,0,46,51,50.03,52.62,6.666666666666667,1,1,0,0,6,1,5,0,691.5,269072.3456626342,222557.5363213542,196389.5522659796,73503.2173897184,3563.285641954647 -14646,18083,32973,32974,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.372257464477499,6.996904242400335,52,10,-57.88450302566894,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.297010433070294,6.478508404029068,67.94,30.64,50.78,35.96,8.333333333333334,1,1,0,0,0,7,4,1,901.5,3315820.692686399,666598.902509016,2474237.153101549,87061.45372227076,4259.158403781888 -14646,18083,32974,32973,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.828515028279062,8.776766621320514,52,-10,-36.76884383675767,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.43772544112081,8.429756698918167,50.78,35.96,67.94,30.64,8.333333333333334,1,1,0,0,13,7,4,1,901.5,3315820.692686399,666598.902509016,2474237.153101549,87061.45372227076,4259.158403781888 -14647,18084,32975,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.803244759019966,7.654888513165627,0,0,0,-943.3534099043611,-9,2,2,2019,13,0,36,0,1,3,0,6.024934769025498,6.024934769025498,0,0,0,0,0,0,0,0,0,0,44,53,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,131,43637.02548817839,0,0,0,895.0888801740803 -14648,18085,32976,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.522908500196007,8.426237831518419,0,0,0,-869.8951808369695,0,3,3,2019,11,0,45,45,1,0,0,12.08725341844651,12.08725341844651,0,0,0,0,0,0,0,0,4.253376820931917,0,44.43,56.74,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,868,319387.0030082657,111970.1596487245,408057.2915381043,0,1810.891258842082 -14649,18086,32977,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,4.31242178148492,4.433616071509141,0,0,-941.3514657824663,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,6.65112498206509,4.684035940312019,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,422,603689.5407654791,220160.9499138377,269301.9260430334,0,908.6442734782756 -14650,18087,32978,32979,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.48557228771599,7.214783340657829,8,8,44.50172793830564,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.5965326989567563,6.841410052726838,62.84,46.85,54.37,54.8,8.333333333333334,1,1,0,0,0,7,5,1,418.5,1710560.999249618,669367.4434192707,402782.4584692291,0,4432.24547054942 -14650,18087,32979,32978,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.890928761356768,8.704907159902186,8,-8,-212.3690505326055,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.256568341521314,8.915848142179955,54.37,54.8,62.84,46.85,8.333333333333334,1,1,0,0,0,7,5,1,418.5,1710560.999249618,669367.4434192707,402782.4584692291,0,4432.24547054942 -14651,18088,32980,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1068.305244439587,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,41.58,20.37,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,811,-9062.24450044168,0,285353.7240120193,149086.8357330929,128.7940987788635 -14652,18089,32981,32982,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.374744013624019,8.705818550809482,0,10,1,-157.9570521587834,0,-9,-9,2019,9,0,40,52,1,1,0,14.52417808620833,14.52417808620833,0,0,0,0,0,1,1,0,3.062032880454549,0,53,54,52.01,43.78,8,1,1,0,0,1,6,4,1,794.5,466943.7010666698,341512.020018958,112358.8208662461,47004.41420507646,1793.315910496721 -14652,18089,32982,32981,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,11,-1,123.7639705134137,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.844007499132148,0,52.01,43.78,53,54,1.666666666666667,1,1,0,0,2,6,4,1,794.5,466943.7010666698,341512.020018958,112358.8208662461,47004.41420507646,1793.315910496721 -14652,18090,32983,-9,32982,32981,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1093.937336186038,0,2,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,0,6,1,1,625,-7092.240068555629,0,0,0,485.6046696391437 -14653,18091,32984,32985,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,0,0,0,26,3,137.0627086963459,0,3,3,2019,14,3,0,37,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,53.77,39.85,45.09,8.333333333333334,1,1,0,0,9,1,2,1,412.3333333333333,536709.3883920059,166778.6210329204,229677.722300353,0,628.5522045975753 -14653,18091,32985,32984,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.568186356016835,7.572713852763312,0,26,-3,10.33880791239319,0,3,3,2019,21,9,25,24,1,9,0,6.66646687580531,6.66646687580531,0,0,0,0,7,0,0,0,0,0,39.85,45.09,44.94,53.77,3.333333333333333,1,1,0,0,6,1,2,1,412.3333333333333,536709.3883920059,166778.6210329204,229677.722300353,0,628.5522045975753 -14653,18091,32986,-9,32985,32984,1,1,17,0,0,0,3,3,1,0,3,0,0,0,0,0,-886.5153802024979,-9,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,1,0,0,1,2,1,412.3333333333333,536709.3883920059,166778.6210329204,229677.722300353,0,628.5522045975753 -14653,18092,32987,-9,32985,32984,1,1,21,0,0,0,1,1,1,0,4,4.054021259419461,4.107654921709551,0,0,0,-945.577975290313,-9,2,3,2019,10,0,35,0,1,0,1,.2348176048307589,.2348176048307589,0,0,0,0,2,0,0,0,0,0,40.47,55.65,-9,-9,6.666666666666667,1,1,0,0,1,1,2,1,301,74777.94529393672,0,0,0,1154.735013719602 -14654,18093,32988,32989,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.905792158229666,7.096205962947534,46,3,-95.61855989357365,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,27,1,1,0,6.735103109615893,7.034965388544974,54.04,23.96,25.35,23.87,8.333333333333334,1,1,0,0,4,7,3,1,1751,859858.3508997124,0,607888.8235534669,0,2855.349597716123 -14654,18093,32989,32988,-9,-9,1,1,62,0,0,0,1,1,-9,1,1,0,7.508524919278442,7.14075683065234,46,-3,41.6602060256161,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,7.119236121365261,25.35,23.87,54.04,23.96,1.666666666666667,1,1,0,0,1,7,3,1,1751,859858.3508997124,0,607888.8235534669,0,2855.349597716123 -14655,18094,32990,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.740487179931031,5.543750978107271,0,0,-1157.952957039366,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.211563330842152,5.773411525094225,49,36.54,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,327,525057.7873553652,111008.494699494,440271.2707222949,0,696.8499833012684 -14656,18095,32991,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.4663789174449,0,2,2,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,0,64.44,-9,-9,0,1,1,0,1,0,8,1,1,350,-44035.78668601817,0,0,0,548.9146649766617 -14657,18096,32992,32993,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.121389381073685,8.526526449479697,5,2,-132.5686420082139,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.86078392455886,8.5198250667185,59.53,56.44,60.52,53.2,10,1,1,0,0,0,10,4,1,394.5,1232621.81754789,588890.9652943176,714146.6736281982,0,3259.701746012092 -14657,18096,32993,32992,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.685740100915205,5.997963085241363,5,-2,-1.013121637767473,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.351737098456204,6.08006356294408,60.52,53.2,59.53,56.44,10,1,1,0,0,5,10,4,1,394.5,1232621.81754789,588890.9652943176,714146.6736281982,0,3259.701746012092 -14658,18097,32994,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.54481334958801,8.42131290736716,0,0,0,-959.8947651547767,0,2,1,2019,11,0,44,38,1,0,0,16.34252568139349,16.34252568139349,0,0,0,0,0,0,0,0,1.406989959536061,0,45.78,51.81,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,1696,-84770.50404732082,-124751.2730810401,0,0,2395.459237972116 -14659,18098,32995,32996,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,8.434463275158246,8.151922828001638,34,2,8.511174465771358,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.811563464488818,8.209261018377088,55.19,54.26,52,53,8.333333333333334,1,1,0,0,0,10,3,1,869,203849.5217926967,109616.3376857023,0,0,1693.027498811799 -14659,18098,32996,32995,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,0,0,0,6,-2,29.02363309387356,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,55.19,54.26,8,1,1,1,0,0,10,3,1,869,203849.5217926967,109616.3376857023,0,0,1693.027498811799 -14660,18099,32997,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.361723672363502,6.994620235180388,0,0,0,-950.9015646105224,0,3,3,2019,8,0,24,32,1,0,0,7.550279613025753,7.550279613025753,0,0,0,0,0,0,0,0,3.362619916863224,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,7,8,3,1,810,-591.2780413548462,94168.33103933814,159841.2820767574,-305.4171508184359,795.291856489714 -14661,18100,32998,32999,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.778368117002548,7.4714819177698,0,1,0,-73.35328758583553,-9,2,2,2019,14,2,38,0,1,2,0,6.458829413535538,6.458829413535538,0,0,0,0,0,0,0,0,0,0,26.69,60.83,30.42,42.03,8.333333333333334,1,1,0,0,3,13,4,0,554.5,128103.2940455888,18422.10083786808,188276.2620377956,116340.0547001863,2149.330484145937 -14661,18100,32999,32998,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,7.735338645065311,7.588266238632593,0,1,0,-59.613427095913,-9,-9,-9,2019,26,10,40,0,1,10,0,6.310646834897895,6.310646834897895,0,0,0,0,0,0,0,0,0,0,30.42,42.03,26.69,60.83,3.333333333333333,4,2,0,0,0,13,4,0,554.5,128103.2940455888,18422.10083786808,188276.2620377956,116340.0547001863,2149.330484145937 -14662,18101,33000,-9,33001,33002,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.1914881258987,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,1165.5,-84494.18645613609,-33190.68056026417,0,0,2279.797605712206 -14662,18101,33001,33002,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,6,-11,131.5540318924554,0,-9,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,.5778067747539382,0,1,1,0,0,0,32.84,60.85,48.14,53.42,6.666666666666667,1,1,0,0,2,5,3,1,1165.5,-84494.18645613609,-33190.68056026417,0,0,2279.797605712206 -14662,18101,33002,33001,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.371800753957775,8.446895567772026,0,6,11,127.6087793291762,0,-9,-9,2019,10,0,53,50,1,0,0,8.982613677106006,8.982613677106006,0,0,0,0,0,1,1,0,0,0,48.14,53.42,32.84,60.85,6.666666666666667,1,1,0,0,2,5,3,1,1165.5,-84494.18645613609,-33190.68056026417,0,0,2279.797605712206 -14662,18101,33003,-9,33001,33002,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.7552545366209,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1165.5,-84494.18645613609,-33190.68056026417,0,0,2279.797605712206 -14663,18102,33004,33005,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.918975912486209,7.912247668314846,0,8,4,-88.91929613435718,0,3,3,2019,8,0,30,32,1,0,0,11.71673366307763,11.71673366307763,0,0,0,0,0,0,0,0,0,0,53.75,54.92,62.49,55.09,10,1,1,0,0,9,4,5,1,1547,1521110.642367998,1228032.643861901,153418.1617476024,0,24014.10457126593 -14663,18102,33005,33004,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.801405114164304,9.504861703049707,0,8,-4,-22.7810039198074,0,2,2,2019,0,0,70,60,1,0,0,25.89769413579483,25.89769413579483,0,0,0,0,0,0,0,0,5.803018264826252,0,62.49,55.09,53.75,54.92,10,1,1,0,0,9,4,5,1,1547,1521110.642367998,1228032.643861901,153418.1617476024,0,24014.10457126593 -14664,18103,33006,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.242672710711815,8.194352380447093,0,0,0,-1032.179007739397,0,3,2,2019,18,6,36,27,1,6,0,13.1826707175879,13.1826707175879,0,0,0,0,2,1,1,0,6.325302918187602,0,33.82,42.48,-9,-9,3.333333333333333,1,1,0,0,8,7,4,1,127,324325.9934891419,225261.8813505955,444194.0392015044,0,1501.623761998718 -14665,18104,33007,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1100.764907445282,0,3,1,2019,18,7,0,50,3,7,0,0,0,0,0,0,0,0,1,1,0,7.611945665214259,0,41.17,52.68,-9,-9,3.333333333333333,2,3,1,0,8,8,1,1,2275,-153548.0794937525,0,0,0,1302.709413361871 -14666,18105,33008,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.708367401486533,7.772100477569722,0,0,0,-938.7025306737406,0,-9,-9,2019,2,0,42,40,1,0,0,6.251862573921644,6.251862573921644,0,0,0,0,0,0,0,0,0,0,61.99,37.62,-9,-9,10,3,4,0,0,2,5,3,0,298,-123060.2362242401,0,0,0,945.6200157284383 -14667,18106,33009,33010,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.194273851231783,9.501222145222386,0,24,1,-65.27128863165484,0,-9,-9,2019,24,11,44,44,1,11,0,24.52162425652872,24.52162425652872,0,0,0,0,0,0,0,0,2.243272991549204,0,23.48,59.25,49.35,59.64,3.333333333333333,1,1,0,0,9,4,5,1,534.5,882904.7508880307,549449.59088444,139910.7760359608,0,3710.145802750088 -14667,18106,33010,33009,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,0,0,0,6,-1,-88.94223556346793,0,-9,-9,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,3.764445429735156,0,49.35,59.64,23.48,59.25,6.666666666666667,1,1,1,0,3,4,5,1,534.5,882904.7508880307,549449.59088444,139910.7760359608,0,3710.145802750088 -14668,18107,33011,-9,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,7.824968814595307,7.573738979215298,0,0,0,-880.7148607480053,0,2,2,2019,12,1,28,30,1,1,1,9.749035665153313,9.749035665153313,0,0,0,0,0,1,1,0,0,0,44.36,54.04,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,167.5,7945.441829080768,19213.10516848188,97545.06962013709,30736.59472982862,1262.791445356394 -14668,18107,33012,-9,-9,33011,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.962626959909,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,167.5,7945.441829080768,19213.10516848188,97545.06962013709,30736.59472982862,1262.791445356394 -14669,18108,33013,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.391705896525309,8.299152769167776,0,0,0,-855.0253535722643,0,3,3,2019,8,0,43,45,1,0,0,13.20772361381589,13.20772361381589,0,0,0,0,7,0,0,0,0,0,45.22,63.14,-9,-9,8.333333333333334,3,4,0,0,8,8,4,0,94,185203.122714119,104690.799097515,0,0,1736.122754998029 -14670,18109,33014,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-863.6696440665953,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,24.07,63.14,-9,-9,6.666666666666667,4,5,0,0,0,10,2,0,4106,130360.9678028338,0,0,0,1438.657262707881 -14671,18110,33015,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.652831389044009,7.466923558454856,0,0,0,-1042.939388402472,0,3,3,2019,12,0,39,37,1,2,0,6.356533340815491,6.356533340815491,0,0,0,0,2,0,0,0,0,0,48,49,-9,-9,7,3,4,0,1,8,4,3,0,211,479295.2422243342,120248.7699336818,177180.9397242689,0,1699.97332987333 -14672,18111,33016,33017,-9,-9,1,1,31,1,1,0,1,1,-9,0,3,8.203635853241511,8.084243057810234,0,8,0,102.6875404217759,0,1,1,2019,11,0,27,27,1,0,0,12.07570276193337,12.07570276193337,0,0,0,0,0,1,1,0,.2342954632597147,0,62.66,52.4,47.46,52.7,8.333333333333334,1,1,0,0,8,2,5,1,571.6666666666666,224125.7335256592,-11156.49483074791,342508.1080124147,75383.11565583761,3234.385974765182 -14672,18111,33017,33016,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,8.698378648593248,8.782944454262113,0,8,0,34.2231004935134,0,-9,-9,2019,10,0,58,60,1,0,0,11.09969316455241,11.09969316455241,0,0,0,0,0,1,1,0,.7443182357781339,0,47.46,52.7,62.66,52.4,6.666666666666667,1,1,0,0,7,2,5,1,571.6666666666666,224125.7335256592,-11156.49483074791,342508.1080124147,75383.11565583761,3234.385974765182 -14672,18111,33018,-9,33017,33016,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-899.375323509631,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,571.6666666666666,224125.7335256592,-11156.49483074791,342508.1080124147,75383.11565583761,3234.385974765182 -14673,18112,33019,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.79232114174304,8.296136198903847,0,0,0,-981.3168535565458,0,2,2,2019,13,1,36,-9,1,1,0,16.06754671990837,16.06754671990837,0,0,0,0,0,0,0,0,4.509589058597459,0,42.73,54.46,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,703,61425.43239022249,6466.735007001162,0,0,2207.621739121615 -14674,18113,33020,33021,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.491613909162217,8.894595654764164,0,33,2,33.22659064230381,0,3,3,2019,7,0,50,50,1,0,0,9.973705118478691,9.973705118478691,0,0,0,0,0,1,0,1,0,0,46.98,59.35,46.04,45.32,6.666666666666667,1,1,0,0,10,7,5,1,1130,1001245.733781623,752997.442266818,396346.0988552579,0,2560.279949336137 -14674,18113,33021,33020,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.703346575079105,7.651147669733266,0,33,-2,-24.13750877863626,0,3,2,2019,15,4,24,24,1,4,0,9.013125522735479,9.013125522735479,0,0,0,0,0,1,0,1,0,0,46.04,45.32,46.98,59.35,3.333333333333333,1,1,0,0,10,7,5,1,1130,1001245.733781623,752997.442266818,396346.0988552579,0,2560.279949336137 -14674,18114,33022,-9,33021,33020,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1051.466569782842,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,10,1,1,1,0,2,7,1,1,394,-303052.508237166,0,0,0,515.4997408093866 -14674,18115,33023,-9,33021,33020,1,1,21,0,0,0,2,2,-9,0,2,7.993387355356901,7.445973158609767,0,0,0,-1015.185132424327,0,2,2,2019,15,4,40,0,1,4,1,5.590216503041158,5.590216503041158,0,0,0,0,0,1,0,1,0,0,58.22,32.93,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,4549,28666.49351385669,-7333.783652528957,0,0,1094.198170606092 -14675,18116,33024,33025,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,35,3,-39.00367442594559,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,4.000733956239795,0,31.93,58.41,43.6,27.68,3.333333333333333,1,1,0,0,0,13,3,1,201.5,70477.7392904826,20667.86237946156,0,0,2568.777454654351 -14675,18116,33025,33024,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,8.276049873781202,8.234740976995475,35,-3,163.367939809737,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.959044945703964,8.621195363792145,43.6,27.68,31.93,58.41,3.333333333333333,1,1,0,0,10,13,3,1,201.5,70477.7392904826,20667.86237946156,0,0,2568.777454654351 -14675,18117,33026,-9,33024,33025,1,1,28,0,0,0,1,1,-9,0,5,8.619223055395217,8.69074305862882,0,0,0,-924.1886557044219,0,3,2,2019,12,2,48,40,1,2,0,13.6403680232176,13.6403680232176,0,0,0,0,0,0,0,0,4.476834393495152,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,3601,-536.8478383223774,-10641.12184985932,0,0,2294.120533301471 -14676,18118,33027,33028,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.433901920013092,6.296814589799456,58,1,-104.2526589627168,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,1.299848915109354,0,0,1,1,0,5.271181010187333,6.008020789086916,58.15,12.73,50.26,51.87,8.333333333333334,1,1,0,0,0,10,4,1,1073,988185.3665964069,575523.6255291088,523994.5301681298,0,4042.18770252793 -14676,18118,33028,33027,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.208798332972881,7.957362014155075,58,-1,15.91884557949935,0,-9,3,2019,4,0,0,0,4,0,0,0,0,1,0,2.674541127503009,0,14.5,1,1,0,7.062795117675218,8.176012199206363,50.26,51.87,58.15,12.73,10,1,1,0,0,0,10,4,1,1073,988185.3665964069,575523.6255291088,523994.5301681298,0,4042.18770252793 -14677,18119,33029,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1094.341697152615,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.72,27.41,-9,-9,6.666666666666667,1,1,0,0,8,6,2,0,916,199847.0957329398,0,0,0,1169.915963169417 -14678,18120,33030,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.759822670174,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.71000000000001,27.4,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,1170,137734.9820959619,0,0,0,1285.988244756272 -14679,18121,33031,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1039.497367355199,0,1,1,2019,9,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,4.145356809859432,0,48.77,60.16,-9,-9,6.666666666666667,1,1,1,0,8,8,1,1,281,-12506.60307758191,0,0,0,-402.916082058644 -14680,18122,33032,33035,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.49623693206193,8.017946976641824,0,1,-2,40.51548909264865,0,2,2,2019,22,10,37,37,1,10,0,14.59103590169085,14.59103590169085,0,0,0,.5659910704158424,0,1,1,0,0,0,30.18,65.98,45.22,63.14,6.666666666666667,1,1,0,0,11,6,4,0,1813,219057.8720745607,-7147.506004549461,117513.0258429777,0,3482.423495324022 -14680,18122,33033,-9,33032,33035,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-951.4580025931741,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,0,1813,219057.8720745607,-7147.506004549461,117513.0258429777,0,3482.423495324022 -14680,18122,33034,-9,33032,33035,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-997.9292939804543,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,6,4,0,1813,219057.8720745607,-7147.506004549461,117513.0258429777,0,3482.423495324022 -14680,18122,33035,33032,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.387098489710723,8.503001750935038,0,1,2,-67.68982496633301,-9,-9,-9,2019,10,0,37,0,1,0,0,14.37151924239589,14.37151924239589,0,0,0,0,0,1,1,0,0,0,45.22,63.14,30.18,65.98,6.666666666666667,1,1,0,0,0,6,4,0,1813,219057.8720745607,-7147.506004549461,117513.0258429777,0,3482.423495324022 -14681,18123,33036,33037,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.253301313106222,8.147729365312175,0,1,2,-4.896748174944221,-9,2,2,2019,6,0,40,0,1,0,0,11.03233825228931,11.03233825228931,0,0,0,0,0,0,0,0,0,0,42.29,51.8,62.27,42.94,8.333333333333334,1,1,0,0,10,2,5,1,328.5,661635.1357968597,503622.111884333,150097.0113631883,0,3138.965773868952 -14681,18123,33037,33036,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.113620442286003,7.852949759732177,0,1,-2,-105.6636227066338,-9,3,3,2019,11,0,60,0,1,0,0,6.812443618972523,6.812443618972523,0,0,0,0,0,0,0,0,0,0,62.27,42.94,42.29,51.8,8.333333333333334,1,1,0,0,7,2,5,1,328.5,661635.1357968597,503622.111884333,150097.0113631883,0,3138.965773868952 -14682,18124,33038,33039,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.779951390228295,9.05048938927143,7.981840003316788,8,-1,71.10684250004928,0,-9,-9,2019,9,0,50,50,1,1,0,13.36948095302825,13.36948095302825,0,0,0,0,0,1,1,0,0,8.490231956669476,53,54,49.86,55.31,8,1,1,0,0,1,8,5,1,797.3333333333334,1353722.253348998,829995.6160308406,380318.9731105454,21790.87871228014,4532.209794400857 -14682,18124,33039,33038,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,6.054390440304632,5.883996960046437,0,8,1,29.63019924655771,0,1,1,2019,10,0,18,18,1,0,0,2.289400903892671,2.289400903892671,0,0,0,0,27,1,1,0,3.016531128869822,0,49.86,55.31,53,54,8.333333333333334,4,2,0,0,7,8,5,1,797.3333333333334,1353722.253348998,829995.6160308406,380318.9731105454,21790.87871228014,4532.209794400857 -14682,18124,33040,-9,33039,33038,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-989.0465369312029,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,5,1,797.3333333333334,1353722.253348998,829995.6160308406,380318.9731105454,21790.87871228014,4532.209794400857 -14683,18125,33041,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,5.234454533508287,4.945426090479243,0,0,-1026.915414895966,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.779292781888972,4.995213614878182,61.35,39.93,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,333,616451.7868347988,72115.91068680183,260642.2441740513,0,962.6302217837564 -14684,18126,33042,-9,33045,33043,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.8058808919891,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,571,-71872.21242123688,61823.46956545319,0,0,1564.009520687257 -14684,18126,33043,33045,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.054906018251049,7.175363546288938,0,8,4,76.47621652269959,0,-9,-9,2019,9,0,50,50,1,0,0,2.433113530845011,2.433113530845011,0,0,0,0,0,1,1,0,1.53476757722614,0,38.64,60.6,44.02,60.7,6.666666666666667,1,1,0,0,8,9,3,1,571,-71872.21242123688,61823.46956545319,0,0,1564.009520687257 -14684,18126,33044,-9,33045,33043,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.711235160845,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,571,-71872.21242123688,61823.46956545319,0,0,1564.009520687257 -14684,18126,33045,33043,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.348784395334816,7.706326047365958,0,8,-4,31.76115043027865,0,-9,-9,2019,9,0,25,28,1,0,0,8.249603816890643,8.249603816890643,0,0,0,0,0,1,1,0,0,0,44.02,60.7,38.64,60.6,8.333333333333334,1,1,0,0,8,9,3,1,571,-71872.21242123688,61823.46956545319,0,0,1564.009520687257 -14685,18127,33046,33047,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,5.552386547349144,7.122738724424908,6.905388742413996,10,-4,-121.1418473011725,0,-9,2,2019,7,0,5,5,1,0,0,6.136108767528052,6.136108767528052,0,0,0,0,2,1,1,0,0,6.680792348085783,54.79,55.86,25.35,55.96,8.333333333333334,1,1,0,0,11,7,5,1,574,1114416.033277291,538927.0011055568,659859.2905913973,133546.0502011823,5015.756355535682 -14685,18127,33047,33046,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.330979931089578,9.556921928482854,7.362488403331791,10,4,-67.94614204947041,0,3,2,2019,21,9,37,42,1,9,0,39.62755965709604,39.62755965709604,0,0,0,0,0,1,1,0,5.518638237985343,7.804678279304592,25.35,55.96,54.79,55.86,5,1,1,0,0,11,7,5,1,574,1114416.033277291,538927.0011055568,659859.2905913973,133546.0502011823,5015.756355535682 -14685,18127,33048,-9,33046,33047,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-954.4377058247067,-9,2,1,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,574,1114416.033277291,538927.0011055568,659859.2905913973,133546.0502011823,5015.756355535682 -14686,18128,33049,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1052.183037214178,0,3,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.81,27.22,-9,-9,0,1,1,0,0,0,13,1,0,519,-162317.99329896,0,0,0,1248.823207602088 -14687,18129,33050,-9,33053,33052,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-941.872019346402,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,716.75,495363.3492874166,216274.4291462883,342188.9748205625,104446.5005465963,3736.550329767685 -14687,18129,33051,-9,33053,33052,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.0724952809447,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,716.75,495363.3492874166,216274.4291462883,342188.9748205625,104446.5005465963,3736.550329767685 -14687,18129,33052,33053,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.422069114010299,8.713125819960942,0,9,6,40.78772894913352,0,-9,-9,2019,5,0,38,40,1,0,0,16.13529796982653,16.13529796982653,0,0,0,0,0,1,1,0,0,0,55.19,54.26,45,55.12,8.333333333333334,1,1,0,0,10,5,5,1,716.75,495363.3492874166,216274.4291462883,342188.9748205625,104446.5005465963,3736.550329767685 -14687,18129,33053,33052,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.737278569689664,8.723309905540075,0,9,-6,78.08094393373742,0,2,1,2019,15,5,38,38,1,5,0,13.23087789431178,13.23087789431178,0,0,0,0,0,1,1,0,0,0,45,55.12,55.19,54.26,8.333333333333334,1,1,0,0,10,5,5,1,716.75,495363.3492874166,216274.4291462883,342188.9748205625,104446.5005465963,3736.550329767685 -14688,18130,33054,33056,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,7.307401894066716,7.572163148883369,0,7,8,-60.9514594972815,0,2,3,2019,14,4,17,17,1,4,0,14.42693593747063,14.42693593747063,0,0,0,0,74.5,1,1,0,0,0,48.44,45.06,35.8,59.5,3.333333333333333,1,1,0,0,12,5,4,1,573.25,27217.34241478315,-64590.79581763119,139693.4146665936,106600.3549355485,3408.063363354277 -14688,18130,33055,-9,33054,33056,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.755608202357,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,573.25,27217.34241478315,-64590.79581763119,139693.4146665936,106600.3549355485,3408.063363354277 -14688,18130,33056,33054,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,8.391637927748102,8.293131114906247,0,7,-8,6.687117786246952,0,-9,-9,2019,12,0,45,50,1,0,0,11.25706832409579,11.25706832409579,0,0,0,0,2,1,1,0,0,0,35.8,59.5,48.44,45.06,5,1,1,0,0,12,5,4,1,573.25,27217.34241478315,-64590.79581763119,139693.4146665936,106600.3549355485,3408.063363354277 -14688,18130,33057,-9,33054,33056,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.267547541153,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,1,573.25,27217.34241478315,-64590.79581763119,139693.4146665936,106600.3549355485,3408.063363354277 -14689,18131,33058,33059,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.92455062881582,8.307865546677213,0,33,3,55.01419967056087,0,3,3,2019,11,0,40,40,1,0,0,12.55167044051218,12.55167044051218,0,0,0,0,0,0,0,0,0,0,39.18,46.92,59.6,46.99,5,1,1,0,0,11,6,4,0,502,148847.1845253551,16918.62261350352,70140.7537327093,23942.39969752271,2250.80563461062 -14689,18131,33059,33058,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.465180565043142,7.606613650637191,0,33,-3,50.3786632325812,0,3,-9,2019,9,0,37,0,1,0,0,6.634352882980763,6.634352882980763,0,0,0,0,0,0,0,0,.4453837035273143,0,59.6,46.99,39.18,46.92,8.333333333333334,1,1,0,0,10,6,4,0,502,148847.1845253551,16918.62261350352,70140.7537327093,23942.39969752271,2250.80563461062 -14690,18132,33060,33061,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.882797938269765,6.615534071730619,6,-7,36.4701171776766,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.007705937063672,6.63833738041597,55.09,44.69,55.68,19.59,8.333333333333334,1,1,0,0,0,12,3,1,1020.5,417619.7870436073,353420.866841828,0,0,2780.053771042789 -14690,18132,33061,33060,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.421645995991714,7.638463161140283,6,7,28.28302135654355,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,1.862524316449028,0,0,1,1,0,2.758805416661448,7.468826054760139,55.68,19.59,55.09,44.69,6.666666666666667,1,1,0,0,0,12,3,1,1020.5,417619.7870436073,353420.866841828,0,0,2780.053771042789 -14691,18133,33062,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1047.436815432071,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.3380390094482431,0,42.85,62.85,-9,-9,5,2,3,0,0,0,5,1,0,1706,153616.6250707661,0,0,0,241.4004457237247 -14691,18134,33063,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-989.4875245337437,-9,-9,-9,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,2,3,0,0,0,5,1,0,231,94941.45229940121,0,0,0,512.8880799090259 -14692,18135,33064,33065,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.75304870751874,9.196547770029397,8,6,71.31847731740845,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.85417597906331,8.945731644187827,58.15,52.91,61.12,51.57,8.333333333333334,1,1,0,0,4,11,5,1,282.5,1830028.609739762,1205672.60919032,427954.3241061604,0,4964.010957832049 -14692,18135,33065,33064,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.970538654402546,6.013884032271304,8,-6,48.7989305426108,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.306745537397864,61.12,51.57,58.15,52.91,8.333333333333334,1,1,0,0,5,11,5,1,282.5,1830028.609739762,1205672.60919032,427954.3241061604,0,4964.010957832049 -14693,18136,33066,33067,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.86054637609142,7.846713234435605,48,-3,76.19504321882799,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.278036262799014,7.742917427784618,48.87,58.55,57.16,56.15,10,4,5,0,0,0,8,4,1,950,778789.790278813,0,545535.6310301754,0,3734.42811396461 -14693,18136,33067,33066,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.332482818185907,8.317336083479484,48,3,-55.11949109689605,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.635132496962764,7.885359730847872,57.16,56.15,48.87,58.55,10,4,5,0,0,0,8,4,1,950,778789.790278813,0,545535.6310301754,0,3734.42811396461 -14694,18137,33068,33069,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.190977897120267,6.425263160872212,6,0,-43.75000402403912,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.785359253150433,6.779263627543624,58.73,32.69,53,44,8.333333333333334,1,1,0,0,0,11,2,1,597.5,541628.6210889611,39588.0779454861,514226.1279020763,0,1561.858654475014 -14694,18137,33069,33068,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,6,0,59.64883971096472,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,58.73,32.69,8,1,1,0,0,0,11,2,1,597.5,541628.6210889611,39588.0779454861,514226.1279020763,0,1561.858654475014 -14695,18138,33070,33071,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,44,-2,-45.12737304992893,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.11360862875719,0,57.48,47.92,59.43,58.05,10,1,1,0,0,0,11,3,1,431,303394.9421238217,293771.4302165049,162665.4693105301,0,2971.213725995026 -14695,18138,33071,33070,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.796323037312604,7.726762413051839,44,2,-26.39816988229831,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.677516774885127,7.679567101419459,59.43,58.05,57.48,47.92,10,1,1,0,0,0,11,3,1,431,303394.9421238217,293771.4302165049,162665.4693105301,0,2971.213725995026 -14696,18139,33072,-9,33073,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.6286884006061,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,820.5,40439.48105868631,0,0,0,1442.59736804106 -14696,18139,33073,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,6.909490564908412,7.043408369975642,0,0,0,-1092.282174880434,0,-9,-9,2019,9,0,20,0,1,0,0,6.639359942978615,6.639359942978615,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,820.5,40439.48105868631,0,0,0,1442.59736804106 -14697,18140,33074,-9,33076,33077,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1011.834008020295,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,3,1,508.6,117448.6667835642,67471.91977778093,0,0,2406.516498883913 -14697,18140,33075,-9,33076,33077,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.0536427626835,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,1,508.6,117448.6667835642,67471.91977778093,0,0,2406.516498883913 -14697,18140,33076,33077,-9,-9,1,0,51,0,2,0,2,2,-9,1,1,0,0,0,17,5,-122.7211795191884,0,3,2,2019,29,12,0,22,3,12,0,0,0,0,0,0,0,2,1,0,1,0,0,19.59,29.04,50.84,47.24,0,1,1,0,1,8,8,3,1,508.6,117448.6667835642,67471.91977778093,0,0,2406.516498883913 -14697,18140,33077,33076,-9,-9,1,1,46,0,2,0,3,3,-9,0,2,8.010178414576378,8.257964668534559,0,17,-5,30.31716383957544,0,3,3,2019,8,0,38,48,1,0,0,10.45321105346198,10.45321105346198,0,0,0,0,0,1,0,1,0,0,50.84,47.24,19.59,29.04,5,3,4,0,0,9,8,3,1,508.6,117448.6667835642,67471.91977778093,0,0,2406.516498883913 -14697,18140,33078,-9,33076,33077,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1004.980388177597,-9,2,3,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,0,1,.9545544920879226,0,20.34,62.53,-9,-9,3.333333333333333,4,2,0,0,1,8,3,1,508.6,117448.6667835642,67471.91977778093,0,0,2406.516498883913 -14698,18141,33079,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,9.015466728561726,9.009100548683348,7.124138500298677,0,0,-898.0986502143128,0,3,3,2019,28,10,85,85,1,10,0,8.791356544512686,8.791356544512686,0,0,0,0,0,0,0,0,7.101531392848678,6.896612573863585,30.63,54.1,-9,-9,1.666666666666667,1,1,0,0,11,8,5,1,801,1069276.688182329,58166.22202678317,1009758.5790596,48450.84044168122,3056.019435208974 -14699,18142,33080,33081,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.013401709420912,6.619041762529222,56,1,-33.89170780667888,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.72273897609805,6.300588845621953,62.42,32.41,41.86,41.35,8.333333333333334,1,1,0,0,0,11,2,1,453.5,283652.5313137971,161280.275525232,129867.6558443313,0,1399.775417930628 -14699,18142,33081,33080,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-1,-73.09446521402995,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.19356241357097,0,41.86,41.35,62.42,32.41,8.333333333333334,1,1,0,0,0,11,2,1,453.5,283652.5313137971,161280.275525232,129867.6558443313,0,1399.775417930628 -14700,18143,33082,33083,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,45,-4,-18.34552989309418,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.16225813991788,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,0,5,5,1,274,1520285.067508999,752769.8929335986,293159.2868753576,0,4192.593899798225 -14700,18143,33083,33082,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.698334648115678,9.12520833108818,45,4,25.55397612658727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.651430519316579,8.746615198793183,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,0,5,5,1,274,1520285.067508999,752769.8929335986,293159.2868753576,0,4192.593899798225 -14701,18144,33084,-9,33087,33085,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1058.213490292153,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,5,1,693.25,427504.5176512494,275241.03386413,143982.3196062033,0,7087.503791086338 -14701,18144,33085,33087,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,8.497923132186893,8.505843119345894,0,7,2,-162.4461225946723,0,3,3,2019,9,0,40,40,1,1,0,19.9331495293005,19.9331495293005,0,0,0,0,0,1,1,0,0,0,52,56,33.07,55.18,8,1,1,0,0,1,11,5,1,693.25,427504.5176512494,275241.03386413,143982.3196062033,0,7087.503791086338 -14701,18144,33086,-9,33087,33085,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1034.233980987572,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,5,1,693.25,427504.5176512494,275241.03386413,143982.3196062033,0,7087.503791086338 -14701,18144,33087,33085,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,9.677284062515943,9.591602533302771,0,7,-2,28.47071735183576,0,3,3,2019,22,10,50,40,1,10,0,31.00245747264288,31.00245747264288,0,0,0,0,14.5,1,1,0,0,0,33.07,55.18,52,56,6.666666666666667,1,1,0,0,8,11,5,1,693.25,427504.5176512494,275241.03386413,143982.3196062033,0,7087.503791086338 -14702,18145,33088,-9,33089,-9,1,1,63,0,0,0,2,2,-9,1,1,0,6.375609071250857,5.93566805343675,0,0,-1068.663759517015,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.746935493963008,6.309423607209693,46.29,16.88,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,1169,593676.6282016682,252981.5661056055,225864.4115814443,0,1393.412344622937 -14702,18146,33089,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.749045127874186,6.517256360074682,0,0,-1008.754058152531,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.428193019738371,6.686971137765871,50.27,8.67,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,337,387945.6740650629,0,326671.5484389568,0,1811.640787701254 -14703,18147,33090,-9,33092,33093,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.191385433794,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,2619,274646.7460871318,221002.1909527575,226860.9206924734,96821.65387694037,3932.722402499796 -14703,18147,33091,-9,33092,33093,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.279773639851,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,2619,274646.7460871318,221002.1909527575,226860.9206924734,96821.65387694037,3932.722402499796 -14703,18147,33092,33093,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,0,0,0,11,-3,47.31570401424449,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,56.43,53.06,42.33,5,1,1,0,1,11,4,5,1,2619,274646.7460871318,221002.1909527575,226860.9206924734,96821.65387694037,3932.722402499796 -14703,18147,33093,33092,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,9.436501182863013,9.256270944390284,0,11,3,-33.72090171808529,0,2,2,2019,11,0,45,78,1,0,0,27.86665968060525,27.86665968060525,0,0,0,0,0,0,0,0,2.415939639793095,0,53.06,42.33,60,56.43,6.666666666666667,1,1,0,0,13,4,5,1,2619,274646.7460871318,221002.1909527575,226860.9206924734,96821.65387694037,3932.722402499796 -14704,18148,33094,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.02780529738363,8.122753364552983,0,0,0,-1068.871570570195,0,1,3,2019,1,0,26,32,1,0,0,15.45728252550206,15.45728252550206,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,193,-94793.24879877799,81917.98740757097,124853.0782943325,-6639.247503322491,1390.246120609063 -14705,18149,33095,33096,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.620082296476587,9.527714750499745,0,24,2,-10.28433575171717,0,3,2,2019,18,6,47,53,1,6,0,33.82684000455874,33.82684000455874,0,0,0,0,0,0,0,0,0,0,49.28,59.91,56.35,51,10,1,1,0,0,6,2,5,1,1058.5,3164665.849114149,2267612.929833582,495850.5639682326,0,7520.771126259147 -14705,18149,33096,33095,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.280401525371955,9.013593412090913,0,23,-2,-43.56886465964806,0,2,2,2019,8,0,50,50,1,0,0,30.03922372117948,30.03922372117948,0,0,0,0,0,0,0,0,5.084868491710745,0,56.35,51,49.28,59.91,8.333333333333334,1,1,0,0,9,2,5,1,1058.5,3164665.849114149,2267612.929833582,495850.5639682326,0,7520.771126259147 -14705,18150,33097,-9,33095,33096,1,1,20,0,0,0,2,2,-9,0,4,8.575092244157744,8.757433136420005,0,0,0,-981.6791285836601,0,1,1,2019,9,0,58,55,1,0,1,9.028124092465998,9.028124092465998,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,1035,-161696.5386175248,54776.70749803132,0,0,2653.449341869784 -14706,18151,33098,-9,33099,-9,1,0,15,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1029.438008403499,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,0,1,0,0,31,32,-9,-9,4,1,1,-9,0,0,10,2,0,1724.5,236657.3552094941,11327.80939580693,262731.8089163973,53280.21602274475,1351.218075347797 -14706,18151,33099,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.085229985179528,7.431921959012949,5.534287817208162,0,0,-1032.499689732843,0,2,2,2019,26,11,18,20,1,11,0,7.545368328909905,7.545368328909905,0,0,0,0,2,1,0,1,5.365372413388907,0,22.53,30.38,-9,-9,0,1,1,0,0,5,10,2,0,1724.5,236657.3552094941,11327.80939580693,262731.8089163973,53280.21602274475,1351.218075347797 -14707,18152,33100,-9,33101,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1067.386617135732,-9,3,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,-9,-9,10,2,3,0,0,0,5,3,1,558,20909.32219539493,-56328.61787200478,0,0,1560.140902662186 -14707,18152,33101,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,7.623382089729329,7.563559111639741,0,0,0,-998.9109511250558,0,2,2,2019,27,10,25,20,1,10,0,6.773304897388276,6.773304897388276,0,0,0,0,0,1,1,0,0,0,48.06,39.75,-9,-9,3.333333333333333,2,3,0,1,9,5,3,1,558,20909.32219539493,-56328.61787200478,0,0,1560.140902662186 -14708,18153,33102,33103,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.917757181203964,8.036473648973775,10,1,-25.9305104586591,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,9.278077585880105,7.775939635761962,55,52,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,999.5,858619.2300696236,347921.0968813544,278400.2496978136,0,4610.645934490369 -14708,18153,33103,33102,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.386077250163683,4.818717586824678,10,-1,55.76655714177343,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.051972579702125,4.817762348603508,57.16,56.15,55,52,8.333333333333334,1,1,0,0,0,11,3,1,999.5,858619.2300696236,347921.0968813544,278400.2496978136,0,4610.645934490369 -14709,18154,33104,-9,33105,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.7236398552961,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,1449,198614.1231312504,0,0,0,1240.285129670373 -14709,18154,33105,-9,-9,-9,1,0,28,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1054.831485898075,0,-9,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,39.63,-9,-9,0,1,1,0,0,0,1,1,0,1449,198614.1231312504,0,0,0,1240.285129670373 -14710,18155,33106,33107,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.586475896579117,7.47017152541511,51,5,38.93074288211186,0,3,1,2019,14,2,0,0,4,2,0,0,0,0,0,9.490434624182472,0,0,1,1,0,0,7.613876822041271,51,35,43.97,30.09,5,2,3,0,0,0,8,3,1,469.5,172141.3486177428,102499.9009037758,0,0,3034.705647193581 -14710,18155,33107,33106,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,7.073752999279299,6.834834169288449,51,-5,31.92902677944421,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.749472156029701,43.97,30.09,51,35,1.666666666666667,2,3,0,0,0,8,3,1,469.5,172141.3486177428,102499.9009037758,0,0,3034.705647193581 -14711,18156,33108,33109,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.587808892165118,8.344855388954912,0,7,-1,-18.29243556690073,0,-9,-9,2019,12,0,38,37,1,0,0,17.96459953223292,17.96459953223292,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47.07,53.97,10,1,1,0,0,9,12,5,1,1245,830993.9747378848,568923.1363458785,274695.6558634465,104211.5387254416,4416.60337964706 -14711,18156,33109,33108,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.965393196248156,8.991170455124667,0,7,1,47.8250371967312,0,2,2,2019,11,0,40,41,1,0,0,21.92426851099589,21.92426851099589,0,0,0,0,0,0,0,0,2.615908931524602,0,47.07,53.97,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,1245,830993.9747378848,568923.1363458785,274695.6558634465,104211.5387254416,4416.60337964706 -14712,18157,33110,-9,33113,33111,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.4662834492295,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,594,549573.0134750108,316441.7911322505,385126.0848362152,146436.0156617775,4663.945554093116 -14712,18157,33111,33113,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,8.912194766954004,9.021127778876581,0,8,0,-58.7865379004912,0,1,1,2019,12,0,39,42,1,0,0,25.13957035137342,25.13957035137342,0,0,0,0,0,0,0,0,5.00319315523942,0,42.7,51.08,45.11,57.69,8.333333333333334,1,1,0,0,9,9,5,1,594,549573.0134750108,316441.7911322505,385126.0848362152,146436.0156617775,4663.945554093116 -14712,18157,33112,-9,33113,33111,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.215383349146,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,594,549573.0134750108,316441.7911322505,385126.0848362152,146436.0156617775,4663.945554093116 -14712,18157,33113,33111,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.411240285646112,8.208393367727705,0,8,0,21.56184222402769,0,-9,-9,2019,10,0,25,25,1,0,0,16.55872337296343,16.55872337296343,0,0,0,0,0,0,0,0,0,0,45.11,57.69,42.7,51.08,6.666666666666667,4,2,0,0,8,9,5,1,594,549573.0134750108,316441.7911322505,385126.0848362152,146436.0156617775,4663.945554093116 -14713,18158,33114,33115,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,7.385476229421246,7.049618280552345,9,0,-36.34626042686482,0,3,3,2019,17,6,0,24,3,6,0,0,0,0,0,0,0,0,1,1,0,6.148824124240401,7.265501198038527,25.72,30.19,56.41,48.18,5,1,1,0,0,10,5,3,1,1505,1021590.446457061,863961.5115805792,95049.09641407781,0,1693.628705815783 -14713,18158,33115,33114,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.929631104582856,6.752946679011723,9,0,-121.6467367603676,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.227620661332397,7.284142526467231,56.41,48.18,25.72,30.19,10,1,1,0,0,8,5,3,1,1505,1021590.446457061,863961.5115805792,95049.09641407781,0,1693.628705815783 -14714,18159,33116,33117,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,35,-3,-13.56132496786557,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,49,54,54,7,2,3,0,1,0,5,2,1,412,62119.64417805854,-18159.73282993378,0,0,1233.511179120705 -14714,18159,33117,33116,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.622496486608936,7.298069784049891,0,35,3,37.68439174840307,0,3,3,2019,9,0,40,30,1,0,0,4.896380525058131,4.896380525058131,0,0,0,0,0,1,1,0,0,0,54,54,48,49,8,2,3,0,1,8,5,2,1,412,62119.64417805854,-18159.73282993378,0,0,1233.511179120705 -14714,18160,33118,-9,33116,33117,1,0,31,0,0,0,2,2,-9,0,3,7.611565808306477,7.365397545274889,0,0,0,-849.0810340951891,-9,2,2,2019,22,9,23,0,1,9,1,9.46049672001331,9.46049672001331,0,0,0,0,0,1,1,0,0,0,38.53,43.03,-9,-9,3.333333333333333,2,3,0,0,1,5,3,1,1582,99021.38789713741,0,0,0,1084.454520719666 -14715,18161,33119,33120,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.804085456239205,5.951198052147929,8,-1,124.5959406661665,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.00017682169682,51,46,62,44.4,7,1,1,0,0,4,8,2,0,585,373617.5216160709,0,401072.5971470704,0,998.5727875065007 -14715,18161,33120,33119,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,4.960719748100494,5.108401282826781,8,1,104.3244183217556,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,3.879887781545039,0,2,1,1,0,4.931545610827083,5.174674298543743,62,44.4,51,46,3.333333333333333,1,1,0,0,0,8,2,0,585,373617.5216160709,0,401072.5971470704,0,998.5727875065007 -14716,18162,33121,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.454299197246536,8.555279233615522,0,0,0,-982.9928848042372,0,3,3,2019,12,0,46,41,1,0,0,12.00350144833633,12.00350144833633,0,0,0,0,7,0,0,0,2.218768351244448,0,53.9,44.22,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,553,221805.7890028862,0,249074.0543430285,99587.56487713716,1889.355628978185 -14717,18163,33122,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.433859812912424,8.82764150567848,0,0,0,-957.6720872584684,0,3,3,2019,4,0,47,40,1,0,0,9.847692784085018,9.847692784085018,0,0,0,0,2,0,0,0,6.069325010506325,0,50.11,55.32,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,282,138987.9539539782,8240.621782410317,0,0,2735.961392150754 -14718,18164,33123,33124,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.352697418296941,8.261765042518109,0,9,-2,69.43861080083036,0,3,3,2019,18,6,34,34,1,6,0,12.6863849572714,12.6863849572714,0,0,0,0,2,0,0,0,7.227162874621914,0,40.61,64.02,58.2,54.53,8.333333333333334,1,1,0,0,10,4,5,1,158,1577300.54420172,888563.5500682886,161660.5921753841,0,4052.250235432793 -14718,18164,33124,33123,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,8.491691053296025,8.535903604560863,9,2,-114.0092641769984,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.344079639377717,8.252613000608454,58.2,54.53,40.61,64.02,8.333333333333334,1,1,0,0,8,4,5,1,158,1577300.54420172,888563.5500682886,161660.5921753841,0,4052.250235432793 -14719,18165,33125,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.471556558959055,8.297678650928546,0,0,0,-1085.391524935638,0,2,2,2019,6,0,35,36,1,0,1,15.52840466541931,15.52840466541931,0,0,0,0,0,0,0,0,3.084150209660601,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,8,4,1,713,-130037.1832143101,0,0,0,1821.35291513887 -14720,18166,33126,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.062085384020598,8.075741641556368,0,0,0,-980.3833495560384,0,2,2,2019,11,0,36,36,1,0,0,11.65458354352408,11.65458354352408,0,0,0,0,0,0,0,0,0,0,46.31,51.53,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,618,-34661.2224387833,-20026.34016675678,0,0,1345.080938422972 -14720,18167,33127,-9,-9,33126,1,0,24,0,0,0,2,2,-9,0,4,7.945527885570269,7.925704331153662,0,0,0,-1011.657279525666,0,2,2,2019,11,0,35,35,1,0,1,6.784990284072181,6.784990284072181,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,233,118423.7931734813,-114809.0983438237,0,0,1252.242620475866 -14721,18168,33128,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.943530127705423,7.074413157823685,0,0,-1003.490001720577,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.755263615223815,37.05,59.96,-9,-9,8.333333333333334,1,1,0,0,8,8,2,1,225,347336.8832240138,168785.4287939915,344443.857926653,251884.9744323292,1577.177016567789 -14722,18169,33129,-9,33130,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1113.519660678777,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,.0749939005512203,0,34.6,61.39,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,1388.333333333333,328343.5437200454,214903.0713629949,0,0,2074.916438038697 -14722,18169,33130,33131,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.314649317044246,8.597129162146675,6.916466808137467,4,4,81.99096738279162,0,3,3,2019,15,3,37,37,1,3,0,14.94738130248723,14.94738130248723,0,0,0,0,0,1,1,0,0,6.773837332092,38.18,34.11,62.9,48.63,3.333333333333333,1,1,0,1,7,4,4,1,1388.333333333333,328343.5437200454,214903.0713629949,0,0,2074.916438038697 -14722,18169,33131,33130,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,0,0,4,-4,-17.66126206882785,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.9,48.63,38.18,34.11,5,1,1,1,1,2,4,4,1,1388.333333333333,328343.5437200454,214903.0713629949,0,0,2074.916438038697 -14723,18170,33132,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.959728367444022,9.087284813407756,6.193285408892664,0,0,-1107.392955464275,0,2,3,2019,12,0,55,40,1,0,0,18.17560558756034,18.17560558756034,0,0,0,0,0,1,1,0,6.875363427091484,0,32.08,58.42,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,360.5,25075.28638365232,117682.0524929535,0,0,3290.352573378408 -14723,18170,33133,-9,33132,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.668021247849,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,360.5,25075.28638365232,117682.0524929535,0,0,3290.352573378408 -14724,18171,33134,-9,33136,33135,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.6948017010909,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,437,253662.148117249,78451.07483374039,251097.0214364977,135932.1617028908,10103.69499394406 -14724,18171,33135,33136,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,9.604363824980595,9.403722560301242,0,4,0,3.178044814931106,0,2,2,2019,9,0,12,10,1,0,0,126.3431271581525,126.3431271581525,0,0,0,0,0,1,1,0,8.666997937106803,0,39.86,50.54,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,437,253662.148117249,78451.07483374039,251097.0214364977,135932.1617028908,10103.69499394406 -14724,18171,33136,33135,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.248295824534435,7.35115231882718,0,4,0,-38.47840895351148,0,-9,-9,2019,10,0,21,42,1,0,0,8.589181179601123,8.589181179601123,0,0,0,0,0,1,1,0,2.311543110417671,0,57.16,56.15,39.86,50.54,8.333333333333334,1,1,0,0,5,6,5,1,437,253662.148117249,78451.07483374039,251097.0214364977,135932.1617028908,10103.69499394406 -14725,18172,33137,33139,-9,-9,1,0,31,0,1,0,1,1,-9,0,3,7.596786425922831,7.508057919651437,0,2,0,81.79584313035869,0,2,2,2019,15,3,24,24,1,3,0,7.877157491918571,7.877157491918571,0,0,0,0,0,1,1,0,0,0,46.08,57.2,59.26,49.69,6.666666666666667,1,1,0,0,8,2,4,0,656.6666666666666,140762.3451576787,13515.32633344555,220433.8570724195,88304.77613091799,2349.443018641772 -14725,18172,33138,-9,33137,33139,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.3073560109544,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,656.6666666666666,140762.3451576787,13515.32633344555,220433.8570724195,88304.77613091799,2349.443018641772 -14725,18172,33139,33137,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,7.967781826135724,7.934283870027713,0,2,0,105.4021868442529,0,-9,-9,2019,7,0,40,60,1,0,0,9.114747117550108,9.114747117550108,0,0,0,.4242340662723549,0,1,1,0,0,0,59.26,49.69,46.08,57.2,6.666666666666667,1,1,0,0,7,2,4,0,656.6666666666666,140762.3451576787,13515.32633344555,220433.8570724195,88304.77613091799,2349.443018641772 -14726,18173,33140,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,6.554556744602706,6.797807543200396,0,0,-1095.75232557117,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,6.295007825104564,0,45.58,47.97,-9,-9,5,1,1,0,0,4,2,2,1,387,-48284.46549840168,-7735.469680247999,0,0,212.946598043361 -14727,18174,33141,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,4.923146939512566,4.599223245693423,0,0,0,-920.2830336742376,0,3,3,2019,20,7,2,0,1,7,0,7.136807590016641,7.136807590016641,0,0,0,0,0,1,1,0,0,0,26.17,42.01,-9,-9,1.666666666666667,1,1,0,1,1,13,2,0,403,-111624.2921971173,-9815.746425645697,0,0,320.067202064044 -14727,18175,33142,-9,33144,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.043822274651,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,667,-106925.5004581213,0,0,0,601.7546193376908 -14727,18175,33143,-9,33144,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.39259108205,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,667,-106925.5004581213,0,0,0,601.7546193376908 -14727,18175,33144,-9,33141,-9,1,0,24,0,2,0,3,3,-9,0,4,0,0,0,0,0,-941.8069295043035,-9,3,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,10,1,1,1,0,0,13,1,0,667,-106925.5004581213,0,0,0,601.7546193376908 -14727,18176,33145,-9,33141,-9,1,1,22,0,2,0,3,3,-9,0,4,0,0,0,0,0,-902.1680075052109,0,3,-9,2019,32,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,39.64,62.95,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,1832,164556.5589901196,0,0,0,210.3716445575766 -14727,18177,33146,-9,33141,-9,1,1,25,0,2,0,2,2,-9,0,3,0,0,0,0,0,-995.9816929167798,0,3,-9,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.74,51.69,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,815,44861.28559323373,0,0,0,729.7018395028615 -14728,18178,33147,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,6.880212038756813,6.705173456512246,0,0,-935.8167884138229,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.700995166859107,6.881334271043674,57.06,57.76,-9,-9,10,1,1,0,0,0,10,2,1,745,213128.8699377485,0,298766.2833677746,0,1317.702457716364 -14729,18179,33148,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.448084535801528,7.515246348071855,0,0,-916.4981122163852,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.535975499517365,7.362218059929556,46.08,57.2,-9,-9,5,1,1,0,0,0,5,3,1,1766,13276.32117498689,287831.920528926,0,0,1639.785545237315 -14730,18180,33149,-9,33151,33150,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.022567512231,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,5,1,2034,358418.3190002208,90659.39092449134,0,0,4044.811579621628 -14730,18180,33150,33151,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.290094392224194,9.119497506763437,0,9,3,-110.7952683363485,0,1,1,2019,12,1,40,40,1,1,0,26.22439836466068,26.22439836466068,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.14,59.14,8.333333333333334,1,1,0,0,8,8,5,1,2034,358418.3190002208,90659.39092449134,0,0,4044.811579621628 -14730,18180,33151,33150,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.896584608385017,8.120477466941168,0,9,-3,-103.0722167091192,0,2,1,2019,12,0,23,23,1,0,0,14.79401284709819,14.79401284709819,0,0,0,0,0,1,1,0,0,0,36.14,59.14,54.2,57.49,6.666666666666667,1,1,0,0,11,8,5,1,2034,358418.3190002208,90659.39092449134,0,0,4044.811579621628 -14731,18181,33152,33153,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.114300166332141,8.863740149387548,0,20,6,113.4953432639173,0,-9,2,2019,10,0,45,45,1,0,0,20.42959379213068,20.42959379213068,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.57,53.15,8.333333333333334,1,1,0,0,12,10,5,0,216.5,607307.8588085528,473182.0591581631,296971.8159907244,235037.801318206,4079.565528979881 -14731,18181,33153,33152,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.536961917564536,8.372270684469047,0,20,-6,32.1571199268158,0,2,2,2019,5,0,45,55,1,0,0,12.26035226632378,12.26035226632378,0,0,0,0,0,0,0,0,0,0,48.57,53.15,58.15,52.91,8.333333333333334,1,1,0,0,5,10,5,0,216.5,607307.8588085528,473182.0591581631,296971.8159907244,235037.801318206,4079.565528979881 -14732,18182,33154,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.895178537801647,4.484179989515821,0,0,-882.3898807553048,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.770441008996764,4.541577805447399,51,46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,367,94704.02206337081,100642.560458617,121034.9138117526,0,1247.887709648183 -14732,18183,33155,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.643346593769013,6.565972199311701,0,0,-890.733229963684,-9,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.361233221612246,53,46,-9,-9,7,1,1,0,0,0,5,2,0,818,385702.1839519761,113528.9097387278,190134.4907793808,0,1705.466124655726 -14733,18184,33156,33157,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.140829364409491,7.841195719561828,0,6,-10,119.5729162422329,0,1,1,2019,13,1,35,35,1,1,0,11.27263276344189,11.27263276344189,0,0,0,0,0,0,0,0,0,0,42.85,60.33,50.03,52.62,6.666666666666667,1,1,0,0,11,10,5,1,474.5,148130.0870344132,120137.545752676,243872.6070644474,125232.8120246585,2987.332724962959 -14733,18184,33157,33156,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.51902935086154,8.267407069219045,0,6,10,44.41117990969691,0,-9,-9,2019,12,0,38,38,1,0,0,11.26541642020711,11.26541642020711,0,0,0,0,0,0,0,0,0,0,50.03,52.62,42.85,60.33,8.333333333333334,4,2,0,0,12,10,5,1,474.5,148130.0870344132,120137.545752676,243872.6070644474,125232.8120246585,2987.332724962959 -14734,18185,33158,33159,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.096948280613612,7.975997307011147,27,0,-119.5870255206233,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.424414681743128,48.67,59.26,36.55,51.41,8.333333333333334,1,1,0,0,9,9,4,1,1157.5,1961804.335998929,1373013.025816785,566333.8220366931,0,2109.98045679532 -14734,18185,33159,33158,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.777440829909795,7.552723577348301,27,0,43.15519991494929,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,71.5,1,1,0,5.836175080413607,7.900276422989461,36.55,51.41,48.67,59.26,5,1,1,0,0,9,9,4,1,1157.5,1961804.335998929,1373013.025816785,566333.8220366931,0,2109.98045679532 -14735,18186,33160,33161,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,9.363682037176158,9.125894432651695,0,48,3,-54.59381551134843,0,3,3,2019,11,2,70,85,1,2,0,17.12490527855752,17.12490527855752,0,0,0,0,0,1,1,0,3.894822159401594,0,52.24,50.75,43.34,43.6,6.666666666666667,1,1,0,0,11,2,5,1,319.5,2615669.904017081,1418834.55661043,139423.1077410554,0,5047.033590614316 -14735,18186,33161,33160,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,48,-3,-77.35457261648216,0,2,2,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,.8494789466303168,0,43.34,43.6,52.24,50.75,3.333333333333333,1,1,0,0,7,2,5,1,319.5,2615669.904017081,1418834.55661043,139423.1077410554,0,5047.033590614316 -14736,18187,33162,-9,-9,-9,1,1,34,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.466904643044,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,192,42661.15138779482,0,0,0,1207.242033973909 -14737,18188,33163,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.450138206735463,7.396272479526411,0,0,0,-904.7913720213511,0,3,3,2019,12,0,38,31,1,0,0,6.404536440834413,6.404536440834413,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,5,1,1,0,1,6,4,3,0,842,150985.3166305647,144165.2402118655,175130.71266944,81666.45387044629,1008.189589015929 -14738,18189,33164,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.325160790521764,9.313106650413303,0,0,0,-842.2980421307744,0,2,2,2019,11,0,58,53,1,0,0,25.21358883416072,25.21358883416072,0,0,0,0,7,0,0,0,6.956699417715879,0,44.44,55.46,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,82,603413.380481376,77289.46119221636,0,0,3907.825709508548 -14739,18190,33165,33166,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.645893031366784,7.617501049075969,10,2,-144.8479153901441,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.428905164263228,7.848602500284404,56.33,51.02,59.14,52.5,8.333333333333334,1,1,0,0,1,10,3,1,520,978766.383570501,627416.519841313,430939.298040907,0,2769.706772894147 -14739,18190,33166,33165,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,10,-2,22.02828301763057,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.463991227766351,0,59.14,52.5,56.33,51.02,8.333333333333334,1,1,0,0,0,10,3,1,520,978766.383570501,627416.519841313,430939.298040907,0,2769.706772894147 -14740,18191,33167,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1041.42780205578,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,1,0,8,1,0,612,347751.7640744204,0,305608.3020237479,0,1489.858474193059 -14741,18192,33168,-9,33169,-9,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1058.958680025146,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,3,4,-9,0,0,8,3,0,1100.25,163405.3519532583,-24307.08373070666,146195.7322613296,22062.40647922579,2434.849594497862 -14741,18192,33169,-9,-9,-9,1,0,35,0,3,0,1,1,-9,0,2,8.592149885788265,8.484434047892751,0,0,0,-1043.742921457786,0,1,-9,2019,23,11,37,38,1,11,0,20.31574948093451,20.31574948093451,0,0,0,0,0,1,1,0,0,0,30.69,60.42,-9,-9,1.666666666666667,3,4,0,0,6,8,3,0,1100.25,163405.3519532583,-24307.08373070666,146195.7322613296,22062.40647922579,2434.849594497862 -14741,18192,33170,-9,33169,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.794843753041,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.333784840703361,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,3,0,1100.25,163405.3519532583,-24307.08373070666,146195.7322613296,22062.40647922579,2434.849594497862 -14741,18192,33171,-9,33169,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.5026871040202,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,3,0,1100.25,163405.3519532583,-24307.08373070666,146195.7322613296,22062.40647922579,2434.849594497862 -14742,18193,33172,33173,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,9,-6,4.24337669728125,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,2,2,0,2607,360518.9582605563,128616.3432337099,228616.7946584608,0,2578.772245846083 -14742,18193,33173,33172,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,6.155607892785031,6.203154820499233,66,6,-70.19170916221222,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.281219209048016,5.944255381038621,55,45,52,45,8,1,1,0,0,6,2,2,0,2607,360518.9582605563,128616.3432337099,228616.7946584608,0,2578.772245846083 -14743,18194,33174,-9,33176,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.6770323289635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,1021.666666666667,69022.38263655409,0,0,0,1069.261306849772 -14743,18194,33175,-9,33176,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.473147903447,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,1021.666666666667,69022.38263655409,0,0,0,1069.261306849772 -14743,18194,33176,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1085.250681953268,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.51,54.26,-9,-9,6.666666666666667,2,3,0,0,0,5,1,0,1021.666666666667,69022.38263655409,0,0,0,1069.261306849772 -14744,18195,33177,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.2587903100906,7.999129447247489,0,0,0,-1080.985939174803,0,-9,-9,2019,11,0,45,50,1,0,0,10.87489047173708,10.87489047173708,0,0,0,0,7,0,0,0,0,0,40.58,54.22,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,264,275064.4116853032,311116.8618324542,102567.4333818762,0,1154.113590220314 -14745,18196,33178,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.457495820872882,8.208895186732493,0,0,0,-1031.072849552975,0,2,3,2019,12,0,80,60,1,0,0,7.203901221015901,7.203901221015901,0,0,0,0,0,0,0,0,0,0,53.42,52.33,-9,-9,5,1,1,0,0,4,11,4,0,1186,18643.7694322743,136548.1568319658,0,0,1922.052708737431 -14746,18197,33179,33180,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.924629417951348,7.558675408293537,50,-1,141.4649007096169,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.420470604879288,0,0,1,1,0,0,7.652561387699909,39.24,39.96,40.14,38.19,10,1,1,0,0,7,7,3,0,822.5,872283.6899705222,561955.9006966653,328382.043619214,0,2519.436900640122 -14746,18197,33180,33179,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.855093448994475,7.332206928835132,50,1,23.68957554832903,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,6.972407717996888,40.14,38.19,39.24,39.96,5,1,1,0,0,7,7,3,0,822.5,872283.6899705222,561955.9006966653,328382.043619214,0,2519.436900640122 -14746,18198,33181,-9,33180,33179,1,1,45,0,0,0,2,2,-9,0,4,8.365009104014304,7.9499441003909,0,0,0,-981.97711578194,0,3,3,2019,10,0,46,60,1,1,0,10.42174305684138,10.42174305684138,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,7,4,0,559,30158.86434507692,-143343.4939155548,0,0,946.1414122545715 -14747,18199,33182,33183,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.470045511663536,7.379046901695832,0,2,0,16.84426540900527,0,-9,-9,2019,8,0,15,20,1,0,0,14.73248143691782,14.73248143691782,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.44,40.48,8.333333333333334,1,1,0,0,7,2,4,1,7531.5,-55784.13198231904,53249.998051149,80692.50758011916,49003.45255484901,3143.211724324083 -14747,18199,33183,33182,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.508662555961386,8.219080626952465,0,2,0,-30.47295685531504,0,2,2,2019,6,0,45,40,1,0,0,12.10589068598629,12.10589068598629,0,0,0,0,0,0,0,0,3.141977374619418,0,61.44,40.48,57.16,56.15,10,1,1,0,0,7,2,4,1,7531.5,-55784.13198231904,53249.998051149,80692.50758011916,49003.45255484901,3143.211724324083 -14748,18200,33184,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.245299247490894,7.699639530555198,5.6932440502742,0,0,-975.054906413547,0,3,3,2019,9,0,16,20,1,0,0,11.94399364758405,11.94399364758405,0,0,0,0,0,1,1,0,3.813074362003344,6.122962603555658,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,1,3,1,1129,614158.254339968,-71659.50401417243,301282.3388863287,0,626.7528476909779 -14748,18201,33185,-9,33184,-9,1,1,31,0,0,0,2,2,-9,0,5,8.550375389904527,8.648774717456117,0,0,0,-967.3387636060144,0,3,3,2019,13,2,70,50,1,2,1,7.392538994378959,7.392538994378959,0,0,0,0,0,1,1,0,0,0,46.4,59.87,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,907,-75052.44955229662,37859.08763438924,93027.6786209618,60507.82952861064,1936.875467281011 -14748,18202,33186,-9,33184,-9,1,1,29,0,0,0,1,1,-9,0,2,7.825925049327654,8.189149167454133,0,0,0,-1044.655455178996,0,2,-9,2019,16,4,32,39,1,4,1,11.44014120483984,11.44014120483984,0,0,0,0,14.5,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,90,-188279.1542510124,0,0,0,1130.475866773794 -14749,18203,33187,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.129238623681244,7.255096868578592,0,0,0,-1008.499929737298,0,2,2,2019,19,6,24,24,1,6,0,7.296893787926192,7.296893787926192,0,0,0,0,0,1,1,0,0,0,41.17,39.45,-9,-9,6.666666666666667,1,1,0,0,6,9,2,0,335,-116903.030599966,0,0,0,1980.923142228022 -14749,18203,33188,-9,33187,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.6268132939363,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,335,-116903.030599966,0,0,0,1980.923142228022 -14749,18203,33189,-9,33187,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.6322469191244,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,9,2,0,335,-116903.030599966,0,0,0,1980.923142228022 -14750,18204,33190,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.284529276194554,8.100058116065922,0,0,0,-980.2094460010493,0,2,2,2019,11,0,50,48,1,0,0,9.463352379099705,9.463352379099705,0,0,0,0,0,1,1,0,0,0,39.76,59.88,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,2001,-12795.46605184312,-31252.27831236802,0,0,1418.203926346924 -14751,18205,33191,33192,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,0,0,0,28,2,49.69519643231322,0,2,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,4.647763886948719,0,15.67,62.14,51.49,57.57,1.666666666666667,1,1,0,0,0,12,4,1,1281.333333333333,236632.5571041051,84323.67045417913,218736.5163578386,152893.7831630964,2209.597202974167 -14751,18205,33192,33191,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.076571630784793,8.822343858506629,0,25,-2,82.822636466978,0,2,1,2019,10,0,35,35,1,0,0,19.64708185670506,19.64708185670506,0,0,0,0,0,1,1,0,0,0,51.49,57.57,15.67,62.14,8.333333333333334,1,1,0,0,12,12,4,1,1281.333333333333,236632.5571041051,84323.67045417913,218736.5163578386,152893.7831630964,2209.597202974167 -14751,18205,33193,-9,33191,33192,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-945.8640000080757,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,4,1,1281.333333333333,236632.5571041051,84323.67045417913,218736.5163578386,152893.7831630964,2209.597202974167 -14751,18206,33194,-9,33191,33192,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-966.6407131347743,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1389,35419.03254652464,0,0,0,0 -14752,18207,33195,33196,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,0,0,0,3,7,0,0,-9,-9,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,60.07,32.67,30.31,40.35,5,3,4,1,1,1,8,2,0,317.5,318062.3682094769,0,0,0,596.8915522761357 -14752,18207,33196,33195,-9,-9,1,0,29,0,1,0,2,2,-9,1,3,0,0,0,3,-7,0,0,3,-9,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,42,1,0,1,0,0,30.31,40.35,60.07,32.67,5,3,4,1,0,1,8,2,0,317.5,318062.3682094769,0,0,0,596.8915522761357 -14753,18208,33197,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.804105491548965,5.8666890710955,0,0,-1058.915367636437,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.950667579470792,56.6,33.83,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,116,274219.8004825289,35399.57111149839,118614.0821395868,0,934.9944546968012 -14754,18209,33198,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.864348026847362,6.379280671129651,0,0,-1120.143175094108,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,9.596102117692864,0,0,1,1,0,0,6.608999517530949,43.72,19.29,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,681,131926.8413507077,175706.6600354968,194135.0354698794,0,1386.885710154982 -14755,18210,33199,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.060400120209598,7.977707475761545,5.605531733806556,0,0,-979.19882723687,0,-9,-9,2019,10,0,39,42,1,0,0,9.709801879831225,9.709801879831225,0,0,0,0,0,1,1,0,6.407330118152225,5.967480800656578,51.41,50.61,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,1211,167864.2232678082,61562.64936080151,0,0,1259.683573638365 -14756,18211,33200,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.678366102756242,7.396480721219556,0,0,-904.5466593398299,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.991725209449791,61.4,54.41,-9,-9,8.333333333333334,3,4,0,0,10,6,3,1,598,379948.8234277867,141066.6236514861,128688.3513709449,0,1650.21970775515 -14757,18212,33201,33202,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,7.860298574091277,8.177117933910178,0,27,2,41.42218637417886,0,2,2,2019,11,0,20,15,1,0,0,19.40974619420483,19.40974619420483,0,0,0,0,0,0,0,0,1.812400915459463,0,47.26,56.73,46.4,57.35,8.333333333333334,1,1,0,0,9,9,5,1,434.5,1608120.320249677,1253678.53044771,437094.988436625,23213.81298960703,2819.480453171321 -14757,18212,33202,33201,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.442083945034174,8.227270137830352,0,27,-2,77.93013223360417,0,2,1,2019,12,0,12,14,1,0,0,38.82793863315921,38.82793863315921,0,0,0,0,0,0,0,0,3.785030083590753,0,46.4,57.35,47.26,56.73,8.333333333333334,1,1,0,0,11,9,5,1,434.5,1608120.320249677,1253678.53044771,437094.988436625,23213.81298960703,2819.480453171321 -14757,18213,33203,-9,33202,33201,1,0,24,0,0,0,1,1,-9,0,4,7.870750349447992,7.882288086436986,0,0,0,-886.282172273827,0,2,1,2019,13,2,37,37,1,2,1,10.99853767998982,10.99853767998982,0,0,0,0,0,0,0,0,0,0,44.53,56.37,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1172,0,0,0,0,1324.713763098347 -14758,18214,33204,33205,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,7.946337383513498,8.033818987408814,0,1,14,-40.34221173835412,0,2,2,2019,8,0,30,30,1,0,0,11.59833517995827,11.59833517995827,0,0,0,0,2,0,0,0,6.360328708717851,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,12,6,5,1,854.5,531755.0312837167,285083.9160131655,297395.3586808649,0,3706.945035464979 -14758,18214,33205,33204,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.639818740287504,8.475672939776976,0,1,-14,-57.46500686656788,-9,-9,-9,2019,8,0,40,0,1,0,0,13.68808760513248,13.68808760513248,0,0,0,0,0,0,0,0,2.669355899682356,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,11,6,5,1,854.5,531755.0312837167,285083.9160131655,297395.3586808649,0,3706.945035464979 -14759,18215,33206,33207,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.094831989416372,8.4979765872447,0,3,-1,50.97167626030969,0,-9,-9,2019,13,2,42,77,1,2,0,10.81847313275765,10.81847313275765,0,0,0,0,0,0,0,0,3.410955455913935,0,50.65,53.71,49.35,59.64,8.333333333333334,1,1,0,0,2,7,5,1,699,201336.4497761327,50969.87000409731,274789.4783460879,103728.8897689757,3133.269405900947 -14759,18215,33207,33206,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.200820406319185,8.23123766932224,0,3,1,69.27201375627581,0,2,2,2019,11,0,38,40,1,0,0,12.3070725554764,12.3070725554764,0,0,0,0,0,0,0,0,0,0,49.35,59.64,50.65,53.71,8.333333333333334,1,1,0,0,4,7,5,1,699,201336.4497761327,50969.87000409731,274789.4783460879,103728.8897689757,3133.269405900947 -14760,18216,33208,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1080.004671378569,0,3,3,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,0,0,0,0,6.651625871852616,0,42.17,22.65,-9,-9,1.666666666666667,1,1,1,1,8,9,1,1,177,-116427.7315662066,0,0,0,274.2781689066003 -14761,18217,33209,33211,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.57935752718296,7.637014512008004,0,8,-1,-25.26560648529708,0,2,2,2019,10,0,35,26,1,0,0,5.940555075060139,5.940555075060139,0,0,0,0,0,1,1,0,2.092419489179102,0,35.22,45.99,54.79,55.86,8.333333333333334,1,1,0,0,8,5,3,1,923,229250.0924594343,154047.6830810957,0,0,2694.233037754741 -14761,18217,33210,-9,33209,33211,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-899.2640874042839,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,1,923,229250.0924594343,154047.6830810957,0,0,2694.233037754741 -14761,18217,33211,33209,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.674004222653963,8.078640495785008,0,8,1,-32.22145200777512,0,2,2,2019,12,0,60,126,1,0,0,8.158878678637338,8.158878678637338,0,0,0,0,0,1,1,0,6.480373449253213,0,54.79,55.86,35.22,45.99,8.333333333333334,1,1,0,0,6,5,3,1,923,229250.0924594343,154047.6830810957,0,0,2694.233037754741 -14761,18217,33212,-9,33209,33211,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.6064880675337,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,923,229250.0924594343,154047.6830810957,0,0,2694.233037754741 -14761,18217,33213,-9,33209,33211,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.8029346732046,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,923,229250.0924594343,154047.6830810957,0,0,2694.233037754741 -14762,18218,33214,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.795506517671881,8.020346408001929,0,0,-1066.655419236296,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,7.697869435123533,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1312,535088.9579342317,325603.3088431013,227299.2369442861,0,905.2298021753592 -14763,18219,33215,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1126.591144430506,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.5,51.97,-9,-9,10,2,3,0,0,2,8,1,0,796,0,0,0,0,651.8345233391019 -14764,18220,33216,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.754936838566,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,21.23828444344525,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,1,0,11,1,0,502,42936.25918947964,0,0,0,880.7593528526015 -14765,18221,33217,33218,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.254147297700607,6.462257964645758,7,-5,28.13614961216494,-9,-9,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.878299764724256,6.529939546687292,50,47,57.06,57.76,7,1,1,0,0,0,10,2,1,566.5,666030.6151568335,201242.0991949697,246366.2214012552,0,3314.158212898812 -14765,18221,33218,33217,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,6.522733001464428,6.666229389853,7,5,4.150793856417447,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.621601481005814,6.69364572487965,57.06,57.76,50,47,8.333333333333334,1,1,0,0,5,10,2,1,566.5,666030.6151568335,201242.0991949697,246366.2214012552,0,3314.158212898812 -14766,18222,33219,33220,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,2.345965927194385,2.064250508539496,10,3,70.66316175559649,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.856867412543092,1.869973939404869,68.3,21.52,39.14,38.93,8.333333333333334,1,1,0,0,4,2,5,1,300.5,877091.8829943064,125149.9757737557,462665.5337388145,0,3591.408517502187 -14766,18222,33220,33219,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.964243840129951,9.083669093708647,7.467031868486191,10,-3,33.6469779005556,0,3,3,2019,17,5,39,39,1,5,0,21.91109530114539,21.91109530114539,0,0,0,0,0,1,1,0,0,7.666032563287322,39.14,38.93,68.3,21.52,3.333333333333333,1,1,0,0,12,2,5,1,300.5,877091.8829943064,125149.9757737557,462665.5337388145,0,3591.408517502187 -14767,18223,33221,33222,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.492434452395692,8.339660503252441,0,6,-3,-7.963921514317885,0,2,1,2019,6,0,60,53,1,0,0,7.934883674293943,7.934883674293943,0,0,0,0,2,0,0,0,0,0,59.14,52.5,54.37,54.8,8.333333333333334,1,1,0,0,8,9,5,0,629,543031.6481257575,226009.516370919,206687.4444973664,16225.39871525842,2444.183943744166 -14767,18223,33222,33221,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.241507153222766,7.973569518987938,0,6,3,96.95609251354719,0,2,2,2019,11,0,42,37,1,0,0,8.685544581893826,8.685544581893826,0,0,0,0,0,0,0,0,0,0,54.37,54.8,59.14,52.5,5,1,1,0,0,6,9,5,0,629,543031.6481257575,226009.516370919,206687.4444973664,16225.39871525842,2444.183943744166 -14767,18224,33223,-9,33222,33221,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1098.755099382101,-9,2,1,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,35.36,56.72,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,51,-62529.24468796991,0,0,0,0 -14768,18225,33224,33225,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.592416217706145,8.588527996415998,42,4,44.03517414512467,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.612388705108779,8.984397905894781,58.15,52.91,58.46,44.55,10,1,1,0,0,0,10,5,1,206.5,3039902.319948237,1491897.452867678,445544.4092310641,0,4208.580502531617 -14768,18225,33225,33224,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.259229883572409,7.324813551470458,42,-4,-62.64414272975111,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.82166856429129,7.459705165354565,58.46,44.55,58.15,52.91,8.333333333333334,1,1,0,0,0,10,5,1,206.5,3039902.319948237,1491897.452867678,445544.4092310641,0,4208.580502531617 -14769,18226,33226,33227,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.003488606915504,7.25935182399134,7,4,31.85980071433286,0,3,3,2019,9,0,0,22,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.696821656977881,57.16,56.15,47.78,52.35,8.333333333333334,1,1,0,0,8,9,3,1,334.5,570528.658467821,483009.7687079408,308935.2837556433,31289.35792789224,1917.093940478294 -14769,18226,33227,33226,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.305728920426932,7.402423368321531,6.560669765297373,7,-4,5.10920931624092,0,3,3,2019,15,3,18,0,1,3,0,3.856755740165096,3.856755740165096,0,0,0,0,14.5,1,1,0,0,6.331234549285886,47.78,52.35,57.16,56.15,1.666666666666667,1,1,0,0,8,9,3,1,334.5,570528.658467821,483009.7687079408,308935.2837556433,31289.35792789224,1917.093940478294 -14770,18227,33228,33229,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.307926681187222,8.283238714963227,0,30,1,52.34326779431225,-9,2,3,2019,20,9,42,0,1,9,0,10.74857892190891,10.74857892190891,0,0,0,0,0,0,0,0,6.510952229147306,0,44.46,52.89,31.46,57.32,3.333333333333333,3,4,0,0,11,5,5,1,780.5,1474128.118907206,1242728.403964316,113444.9049326255,0,6031.254584826869 -14770,18227,33229,33228,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.518806251713574,9.693345755941104,0,32,-1,21.70431196143127,0,2,2,2019,19,7,50,50,1,7,0,35.12423731217871,35.12423731217871,0,0,0,0,2,0,0,0,3.187156643239746,0,31.46,57.32,44.46,52.89,1.666666666666667,1,1,0,0,11,5,5,1,780.5,1474128.118907206,1242728.403964316,113444.9049326255,0,6031.254584826869 -14770,18228,33230,-9,33229,33228,1,1,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-997.9242215555865,-9,1,1,2019,21,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,.7918876395043671,0,35.32,58.41,-9,-9,1.666666666666667,4,2,0,1,4,5,1,1,271,-28881.03321428167,-160949.6788162483,0,0,420.3720029789974 -14771,18229,33231,-9,33232,33233,1,1,32,0,0,0,2,2,-9,0,5,0,0,0,0,0,-905.6062768764641,-9,2,3,2019,17,4,0,0,3,4,1,0,0,0,0,0,0,2,1,0,1,0,0,42.85,62.85,-9,-9,5,1,1,1,1,0,12,1,0,149,0,0,0,0,129.7428746382792 -14771,18230,33232,33233,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,9,-11,0,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,55.75,37.07,48.92,38.65,6.666666666666667,1,1,0,1,2,12,1,0,394.5,256794.1819405034,0,211343.9202636214,0,656.5975086539211 -14771,18230,33233,33232,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,9,11,0,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,1,0,8.656051969616602,0,0,1,0,1,0,0,48.92,38.65,55.75,37.07,8.333333333333334,1,1,0,1,0,12,1,0,394.5,256794.1819405034,0,211343.9202636214,0,656.5975086539211 -14772,18231,33234,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.77419393844867,8.92653953435782,0,0,0,-976.1356700863598,0,1,1,2019,17,6,41,42,1,6,0,21.39945897235799,21.39945897235799,0,0,0,0,0,0,0,0,7.859571136469607,0,34.36,60.01,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,1298,68653.01355650241,47413.12461688103,0,0,4109.692640799242 -14773,18232,33235,33236,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.257867872093229,7.22366262410635,3,-4,-120.295167206997,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.24683904926023,57.63,56.14,41.62,36.82,8.333333333333334,1,1,0,0,7,12,3,1,783,990989.8618895872,757436.6115526825,227898.3862169467,0,2784.857179369174 -14773,18232,33236,33235,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.556104405755254,7.777657679826173,3,4,-95.15004738612915,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.278513909900283,41.62,36.82,57.63,56.14,6.666666666666667,1,1,0,0,4,12,3,1,783,990989.8618895872,757436.6115526825,227898.3862169467,0,2784.857179369174 -14774,18233,33237,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-976.6488219825136,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,34.32,19.62,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1269,56075.57975145091,0,0,0,1245.06662927492 -14775,18234,33238,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.175377080987449,7.833995843242729,0,0,-880.4043268262586,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.060498051301535,8.325993561140251,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,178,1289776.974687973,750432.9846828148,349620.6313676087,0,1790.412997673588 -14776,18235,33239,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.425222569834515,8.382683502423475,0,0,0,-869.9274049470247,0,1,1,2019,6,1,42,44,1,1,0,15.52549583884433,15.52549583884433,0,0,0,0,0,0,0,0,3.869392067050672,0,63.95,51.85,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,191,7691.337062011764,12784.87751009777,0,0,1282.592341389869 -14777,18236,33240,33241,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.848705753205914,9.326728083213908,0,30,3,64.38358049173326,0,-9,-9,2019,8,0,37,37,1,0,0,24.16847689276817,24.16847689276817,0,0,0,0,0,1,1,0,0,0,42.73,46.59,46.92,54.3,6.666666666666667,1,1,0,0,8,7,5,1,1010.5,3454490.928418674,137942.6529880682,2013885.955579154,729558.7248991777,5437.547909614992 -14777,18236,33241,33240,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.42907068353384,9.10229876812733,0,29,-3,-54.65002515235766,0,3,3,2019,9,0,40,44,1,0,0,16.20208593539615,16.20208593539615,0,0,0,0,0,1,1,0,0,0,46.92,54.3,42.73,46.59,5,1,1,0,0,8,7,5,1,1010.5,3454490.928418674,137942.6529880682,2013885.955579154,729558.7248991777,5437.547909614992 -14778,18237,33242,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,6.63795211607733,6.911383503154258,0,0,0,-1071.014766272529,0,2,2,2019,7,0,15,20,1,0,0,6.631224635701229,6.631224635701229,0,0,0,0,0,0,0,0,2.734012771074026,0,57.16,56.15,-9,-9,10,1,1,0,0,11,9,2,0,563,372510.1968042207,98635.72468384018,361995.3747081085,0,62.75682153621244 -14779,18238,33243,33244,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,8.168284242555858,8.588546375312406,5,0,1.795810005790186,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.283480518186295,40.71,47.62,46.41,42.57,8.333333333333334,1,1,0,0,2,7,3,1,1036,1189042.399089726,1109588.842697431,355782.6453956403,0,2107.180572400222 -14779,18238,33244,33243,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,5,0,-116.5756998888635,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46.41,42.57,40.71,47.62,8.333333333333334,1,1,0,0,7,7,3,1,1036,1189042.399089726,1109588.842697431,355782.6453956403,0,2107.180572400222 -14780,18239,33245,33246,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.201733284181737,6.414411772731087,25,1,-5.83837373978166,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.043145222395939,6.174938972186651,67.53,19.2,51.64,31.71,8.333333333333334,1,1,0,0,0,4,2,1,788.5,320073.5284334859,-67038.16759630953,260443.8678724336,0,4121.530427361615 -14780,18239,33246,33245,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.620529350216663,6.084955176154158,24,-1,-28.43730850951652,0,3,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,.2689691402616923,0,1,1,0,6.811217502756115,5.840241559469391,51.64,31.71,67.53,19.2,6.666666666666667,1,1,0,0,0,4,2,1,788.5,320073.5284334859,-67038.16759630953,260443.8678724336,0,4121.530427361615 -14781,18240,33247,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.603854813733042,9.2000396615739,5.411331179557989,0,0,-1151.454033827287,0,2,2,2019,9,0,41,45,1,0,0,19.00864900275495,19.00864900275495,0,0,0,0,0,1,1,0,5.411398363562753,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,1936,231690.0540045805,217580.6929651244,93201.15965675394,96470.44786171502,2883.569890546511 -14781,18240,33248,-9,33247,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.0131838695704,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1936,231690.0540045805,217580.6929651244,93201.15965675394,96470.44786171502,2883.569890546511 -14782,18241,33249,33250,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.376158706977394,8.313489069757333,0,5,-10,30.59451013057939,0,-9,-9,2019,16,3,51,44,1,3,0,10.26936660077436,10.26936660077436,0,0,0,0,0,0,0,0,2.816475670340215,0,47.05,56.66,54.33,53.44,8.333333333333334,1,1,0,0,8,4,4,1,337,246351.8582209578,172337.9766330499,0,0,2111.494664808561 -14782,18241,33250,33249,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,6.329225588242474,6.54046814763999,0,5,10,-81.62990824025715,0,2,2,2019,9,0,40,30,1,0,0,1.08547228668782,1.08547228668782,0,0,0,0,0,0,0,0,3.845009173346791,0,54.33,53.44,47.05,56.66,8.333333333333334,1,1,0,0,8,4,4,1,337,246351.8582209578,172337.9766330499,0,0,2111.494664808561 -14783,18242,33251,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.602471107177636,6.441656142519739,0,0,-1027.04428711286,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,17.60854569157241,247.2762846130044,166.0105399190046,0,1,1,0,6.02846389098159,6.803839950276123,50.28,51.35,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,336,276622.0155332859,107245.3716775611,206078.3230010102,0,1588.459481908843 -14784,18243,33252,33253,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.124827016076164,9.777602274503648,8.40305354549047,32,1,-13.49081126305867,0,3,2,2019,6,0,35,35,1,0,0,29.8623044267819,29.8623044267819,0,0,0,0,0,0,0,0,5.576730342153745,8.306053610921273,56.35,51,44.16,61.04,8.333333333333334,1,1,0,0,5,1,5,1,497,941654.5658749477,491848.8799547377,319804.2293054465,101780.7855264184,4968.116823646642 -14784,18243,33253,33252,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,0,0,32,-1,-31.52891011504978,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,4.398462093022895,0,44.16,61.04,56.35,51,10,1,1,0,0,4,1,5,1,497,941654.5658749477,491848.8799547377,319804.2293054465,101780.7855264184,4968.116823646642 -14784,18244,33254,-9,33253,33252,1,0,22,0,0,0,1,1,1,0,5,7.116700436895568,7.294834895273164,4.496255415732073,0,0,-948.5609191952271,-9,2,2,2019,7,1,30,0,1,1,1,4.569861785479123,4.569861785479123,0,0,0,0,0,0,0,0,4.238809148441971,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,253,-266059.558619664,0,0,0,895.7491152374751 -14785,18245,33255,33257,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.523469365102462,8.221378493690327,3.704615807594483,8,-11,16.34054627021296,0,-9,-9,2019,8,0,60,60,1,0,0,8.575890526121064,8.575890526121064,0,0,0,0,0,1,1,0,0,3.788166094769427,60.12,54.8,53.47,51.1,10,1,1,0,0,8,13,4,1,660.5,285015.1056035137,-78986.31882989645,83342.78427252977,48154.31949441237,3294.973785648231 -14785,18245,33256,-9,33257,33255,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.947568180516,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,660.5,285015.1056035137,-78986.31882989645,83342.78427252977,48154.31949441237,3294.973785648231 -14785,18245,33257,33255,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.589973565183877,7.203030066947874,5.772887183749272,8,11,-59.00111963644387,0,-9,-9,2019,11,0,24,24,1,0,0,7.435073977207936,7.435073977207936,0,0,0,0,0,1,1,0,4.912866399891618,0,53.47,51.1,60.12,54.8,8.333333333333334,1,1,0,0,7,13,4,1,660.5,285015.1056035137,-78986.31882989645,83342.78427252977,48154.31949441237,3294.973785648231 -14785,18245,33258,-9,33257,33255,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.1898914625663,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,4,1,660.5,285015.1056035137,-78986.31882989645,83342.78427252977,48154.31949441237,3294.973785648231 -14786,18246,33259,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-992.9760940075299,0,3,2,2019,24,11,0,0,4,11,0,0,0,1,0,20.11106262468623,0,0,1,1,0,0,0,34.33,24.02,-9,-9,0,1,1,0,1,2,1,1,1,990,0,0,0,0,684.8776871154148 -14786,18247,33260,-9,33259,-9,1,0,27,0,0,0,2,2,-9,0,4,7.762169172277738,8.068099332583142,0,0,0,-884.6945036416653,0,3,3,2019,10,0,42,42,1,0,0,9.643362085603293,9.643362085603293,0,0,0,0,27,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,590,-136847.7185014335,101482.8613776341,0,0,1242.455146402235 -14787,18248,33261,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-966.0728730721643,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.76,14.74,-9,-9,6.666666666666667,2,3,0,1,3,12,1,0,337,-9197.935489469864,0,0,0,1472.597732572627 -14788,18249,33262,-9,33266,33268,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-840.4663819931128,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33263,-9,33266,33268,1,0,4,2,5,1,3,0,-9,0,4,0,0,0,0,0,-884.1668953257365,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33264,-9,33266,33268,1,1,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-941.7987880066792,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33265,-9,33266,33268,1,0,8,2,5,1,3,0,-9,0,4,0,0,0,0,0,-968.8400489085332,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33266,33268,-9,-9,1,0,28,2,5,0,3,3,-9,0,2,0,0,0,3,-2,0,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.51,35.75,45.85,42.95,3.333333333333333,1,1,0,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33267,-9,33266,33268,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.080842004836,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14788,18249,33268,33266,-9,-9,1,1,30,2,5,0,2,2,-9,0,4,0,0,0,3,2,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,42.95,34.51,35.75,8.333333333333334,1,1,1,0,0,4,1,0,435.7142857142857,23148.68732769637,0,0,0,1860.709720271974 -14789,18250,33269,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,7.768601744288336,7.831692594012764,0,0,0,-968.830463038556,0,-9,-9,2019,2,0,30,20,1,0,0,8.417720973977641,8.417720973977641,0,0,0,0,0,0,0,0,0,0,49.74,52.84,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,286,-127711.9367043107,0,0,0,267.3529547036867 -14790,18251,33270,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.417651343938157,8.265588022667851,0,0,0,-936.3327551216883,0,1,1,2019,7,0,38,35,1,0,0,12.97407333167754,12.97407333167754,0,0,0,0,0,1,1,0,2.76072472729385,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,298,289358.2636489318,121556.8717328354,0,0,2019.512283804533 -14791,18252,33271,-9,33273,33272,1,1,16,0,4,1,3,0,-9,0,5,0,0,0,0,0,-893.6420934151184,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.95,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,460.25,167353.676257362,106616.5397950767,164214.619825399,169353.9383396476,3068.92823894799 -14791,18252,33272,33273,-9,-9,1,1,38,0,4,0,1,1,-9,0,4,8.42361065323542,8.616274942543617,0,18,-3,23.68391655865566,0,2,2,2019,12,0,37,39,1,0,0,16.76075509613507,16.76075509613507,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.45,46.95,8.333333333333334,1,1,0,0,8,13,3,1,460.25,167353.676257362,106616.5397950767,164214.619825399,169353.9383396476,3068.92823894799 -14791,18252,33273,33272,-9,-9,1,0,41,0,4,0,1,1,-9,0,4,6.342155417072387,6.123377393613823,0,18,3,92.13796703674966,0,1,1,2019,6,0,16,0,1,0,0,3.476439143089902,3.476439143089902,0,0,0,0,0,1,1,0,0,0,50.45,46.95,54.2,57.49,6.666666666666667,1,1,0,0,1,13,3,1,460.25,167353.676257362,106616.5397950767,164214.619825399,169353.9383396476,3068.92823894799 -14791,18252,33274,-9,33273,33272,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1082.185274720308,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,460.25,167353.676257362,106616.5397950767,164214.619825399,169353.9383396476,3068.92823894799 -14792,18253,33275,33278,-9,-9,1,1,41,1,3,0,2,2,-9,0,4,8.112290047409328,8.032789878085941,0,14,8,71.56278236089338,0,2,2,2019,8,0,44,50,1,0,0,9.869426149980733,9.869426149980733,0,0,0,.6372000162697855,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,10,9,4,1,805.2,98632.69975738061,106518.7110941839,0,0,3253.254150307531 -14792,18253,33276,-9,33278,33275,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.955286799923,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,805.2,98632.69975738061,106518.7110941839,0,0,3253.254150307531 -14792,18253,33277,-9,33278,33275,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.931995700136,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,805.2,98632.69975738061,106518.7110941839,0,0,3253.254150307531 -14792,18253,33278,33275,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,8.103059291450345,8.206740670511664,0,14,-8,-101.0452821596923,0,2,2,2019,7,0,40,30,1,0,0,7.524289447616134,7.524289447616134,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,6.666666666666667,1,1,0,0,10,9,4,1,805.2,98632.69975738061,106518.7110941839,0,0,3253.254150307531 -14792,18253,33279,-9,33278,33275,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.166519106976,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,805.2,98632.69975738061,106518.7110941839,0,0,3253.254150307531 -14793,18254,33280,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.657561706848223,6.196110215642448,0,0,-949.150955574618,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.295394057383231,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,2725,164052.0498479116,172842.8996463662,176100.293377978,0,911.8588543108432 -14794,18255,33281,33282,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,8,-3,74.31015562776918,0,-9,-9,2019,11,0,0,29,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.01,27.43,46.06,42.93,5,2,3,0,0,10,8,4,1,390,422046.0897193688,341151.0552571977,220216.4778673615,87589.45712059314,1360.746706885598 -14794,18255,33282,33281,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.375267874142459,8.570031724651312,0,8,3,-123.8127525780905,0,3,3,2019,12,2,37,40,1,2,0,12.66985520849708,12.66985520849708,0,0,0,0,0,0,0,0,1.699282250760066,0,46.06,42.93,56.01,27.43,8.333333333333334,2,3,0,0,8,8,4,1,390,422046.0897193688,341151.0552571977,220216.4778673615,87589.45712059314,1360.746706885598 -14794,18256,33283,-9,33281,33282,1,1,29,0,0,0,1,1,-9,0,4,8.380898987149495,8.364030405293079,0,0,0,-972.1432288005597,0,2,2,2019,11,0,38,35,1,0,1,17.87665594279034,17.87665594279034,0,0,0,0,0,0,0,0,3.622779177351035,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,0,3,8,5,1,2170,196919.7851922555,-34667.15652584532,0,0,1273.175971119614 -14795,18257,33284,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,4.770654270182176,4.770557082498515,0,0,-1044.964519943772,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,2.036815317586551,0,20.35188800472363,2,1,1,0,.2757312403772558,4.620462280424832,62.4,10.99,-9,-9,5,1,1,0,0,7,7,2,1,5106,0,0,0,0,1450.969569691541 -14796,18258,33285,33286,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.188530494583164,6.391809937553951,41,18,-37.38148346216099,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.267566943904392,55.27,44.81,51.71,58.83,8.333333333333334,1,1,0,0,9,6,2,1,1201.5,-7441.053449864583,0,0,0,4110.791524750863 -14796,18258,33286,33285,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.706005549953085,6.656725864239565,0,41,-18,-216.9912144416919,0,3,-9,2019,12,0,84,77,1,0,0,1.024766713619824,1.024766713619824,0,0,0,0,0,1,1,0,0,0,51.71,58.83,55.27,44.81,6.666666666666667,1,1,0,0,12,6,2,1,1201.5,-7441.053449864583,0,0,0,4110.791524750863 -14796,18259,33287,-9,33288,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.537157434484,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,46.82,-9,-9,5,1,1,0,0,0,6,3,1,794.6666666666666,-56046.30685819828,0,0,0,710.4382735869953 -14796,18259,33288,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.520065448006286,7.623796626080077,0,0,0,-955.2984276559916,0,-9,-9,2019,12,0,37,37,1,0,0,5.015886064521307,5.015886064521307,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,10,6,3,1,794.6666666666666,-56046.30685819828,0,0,0,710.4382735869953 -14796,18259,33289,-9,33288,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-906.1482255936955,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,794.6666666666666,-56046.30685819828,0,0,0,710.4382735869953 -14797,18260,33290,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,4.628815045503047,4.45300287460097,0,0,-960.7003244270657,0,-9,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,2,1,1,0,4.563748527282446,4.73626944439088,42.35,30.78,-9,-9,3.333333333333333,1,1,0,1,3,10,2,0,268,21873.38260681444,105049.2402355213,0,0,1078.635291208701 -14797,18261,33291,-9,-9,33290,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-971.8386685268891,0,-9,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.12,44.31,-9,-9,1.666666666666667,1,1,1,0,0,10,1,0,1404,43982.53694830976,0,0,0,-98.87376130712568 -14797,18262,33292,-9,-9,33290,1,0,23,0,0,0,3,3,-9,1,3,6.822651267530706,7.042147363403422,0,5,-11,67.09863912827129,-9,-9,3,2019,12,0,3,0,1,0,0,44.60029818284451,44.60029818284451,0,0,0,0,7,1,1,0,0,0,46.08,57.2,47,57,6.666666666666667,1,1,0,0,4,10,2,0,705,-63972.59975178321,0,0,0,932.50260960147 -14798,18263,33293,-9,-9,-9,1,0,72,0,1,0,3,3,-9,0,1,0,5.764465881828177,5.801657370431431,0,0,-964.2413905330441,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,5.665528347685107,16.04,23.99,-9,-9,0,1,1,0,0,0,1,2,1,645,316197.6246154754,-6422.726226027808,189755.1667099062,0,686.8768271279857 -14799,18264,33294,33295,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,7,4,19.45211163810513,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,27.8,54.45,56.22,3.333333333333333,1,1,0,0,7,7,4,1,501.5,574858.9548650102,334625.2803041484,166622.3635453874,13163.24111901431,2702.322121245831 -14799,18264,33295,33294,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.783111790917255,8.887574876355146,0,29,-4,37.43044013975268,0,2,3,2019,7,0,45,42,1,0,0,16.27765129199533,16.27765129199533,0,0,0,0,0,1,1,0,0,0,54.45,56.22,40.15,27.8,8.333333333333334,1,1,0,0,10,7,4,1,501.5,574858.9548650102,334625.2803041484,166622.3635453874,13163.24111901431,2702.322121245831 -14800,18265,33296,-9,-9,33297,1,0,36,0,0,0,2,2,-9,0,3,7.929392121252938,7.787553452288065,0,0,0,-1124.102477585947,0,2,2,2019,17,5,51,45,1,5,0,7.094830919217188,7.094830919217188,0,0,0,0,0,1,1,0,0,0,37.78,53.03,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,862,-80245.30260244962,0,0,0,1069.489846694009 -14800,18266,33297,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.582856562798401,8.63645021591849,5.671851159003017,0,0,-973.6838046377424,0,2,3,2019,10,1,60,75,1,1,0,9.322614002109386,9.322614002109386,0,0,0,0,7,1,1,0,0,5.617880471727142,49.22,47.48,-9,-9,5,1,1,0,0,9,2,5,1,1104,644034.3754923427,67659.43413602948,195396.699205154,0,3306.359575501181 -14801,18267,33298,33299,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.390499779087682,9.293180219077806,0,12,-2,-96.15174931177467,0,2,3,2019,7,0,50,60,1,0,0,25.77010033577602,25.77010033577602,0,0,0,0,0,0,0,0,7.581586411992641,0,57.63,56.14,50,54,8.333333333333334,1,1,0,0,11,11,5,1,429.5,2016924.830942839,1986784.02747187,104195.9912347326,54545.86464334775,5311.700354323457 -14801,18267,33299,33298,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.807332922894568,7.752960256485824,0,12,2,-40.04893483261112,0,-9,-9,2019,10,0,30,30,1,1,0,10.20436424324144,10.20436424324144,0,0,0,0,0,0,0,0,0,0,50,54,57.63,56.14,8,1,1,0,0,1,11,5,1,429.5,2016924.830942839,1986784.02747187,104195.9912347326,54545.86464334775,5311.700354323457 -14802,18268,33300,33301,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.542204177600827,7.719061253323257,0,9,-2,-38.54524046291475,0,3,3,2019,8,0,60,50,1,0,0,3.621035946229722,3.621035946229722,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,10,11,3,1,282.5,484395.8905265806,236409.7284642266,152013.7285171028,0,1276.024104913112 -14802,18268,33301,33300,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.616492009053847,6.777136045940695,0,9,2,-58.8070754702694,0,3,3,2019,6,0,60,77,1,0,0,1.1971639803879,1.1971639803879,0,0,0,0,0,0,0,0,.4150308713613141,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,10,11,3,1,282.5,484395.8905265806,236409.7284642266,152013.7285171028,0,1276.024104913112 -14802,18269,33302,-9,33300,33301,1,0,28,0,0,0,1,1,-9,0,4,8.631296001281349,8.514276849070546,0,0,0,-1070.106691263979,0,2,2,2019,15,3,47,45,1,3,1,15.04667388854979,15.04667388854979,0,0,0,0,0,0,0,0,3.396250283461112,0,49.69,55.66,-9,-9,6.666666666666667,1,1,0,0,6,11,5,1,1989,88271.73446667331,8182.674894982651,0,0,2101.352150425231 -14802,18270,33303,-9,33300,33301,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-959.9747776323097,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,0,0,0,11,2,1,1183,-17814.66249778249,0,0,0,0 -14803,18271,33304,33305,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.472393080979336,8.249431631719689,0,32,-6,-61.95069331956395,0,2,2,2019,8,0,36,36,1,0,0,11.36708690510366,11.36708690510366,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,13,5,5,0,420,331426.8550464325,74776.2937233822,169788.9369591887,75778.13099661269,3386.782608321786 -14803,18271,33305,33304,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.19861225045047,8.3886700926362,5.053489549108714,32,6,-133.1971701842561,0,3,3,2019,6,0,38,37,1,0,0,11.60053864183959,11.60053864183959,0,0,0,0,0,0,0,0,5.419784175521124,5.399037956604208,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,13,5,5,0,420,331426.8550464325,74776.2937233822,169788.9369591887,75778.13099661269,3386.782608321786 -14804,18272,33306,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1064.479518435205,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,6.085689810662082,0,0,1,1,0,0,0,55.45,10.29,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,857,237873.5678311237,0,0,0,2206.956792227882 -14805,18273,33307,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.526851742405483,8.28151693517432,3.993915235786327,0,0,-1094.759740924904,0,2,2,2019,23,11,40,37,1,11,0,14.20027718404726,14.20027718404726,0,0,0,0,0,0,0,0,5.568716265632636,4.417614101827551,42.11,41.98,-9,-9,5,1,1,0,0,9,6,5,1,499,1033770.040177372,599065.9401794936,157671.761142732,0,1961.670322110773 -14806,18274,33308,33310,-9,-9,1,0,35,2,2,0,2,2,-9,0,3,8.143036971197708,8.264775747186725,0,6,-2,-107.9285478620476,0,2,2,2019,12,1,25,25,1,1,0,17.28418974199514,17.28418974199514,0,0,0,0,0,1,1,0,3.070167862471525,0,44.19,58.01,51,56,8.333333333333334,1,1,0,0,8,2,4,0,688,13164.15931516124,12102.08437819566,181242.7129543393,129999.1698957052,4091.400543814044 -14806,18274,33309,-9,33308,33310,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-890.0410856952601,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,688,13164.15931516124,12102.08437819566,181242.7129543393,129999.1698957052,4091.400543814044 -14806,18274,33310,33308,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,8.733960587434851,8.661138123089545,0,6,2,60.71910731792287,0,-9,-9,2019,10,0,38,40,1,1,0,13.42113127017923,13.42113127017923,0,0,0,0,0,1,1,0,0,0,51,56,44.19,58.01,7,4,1,0,0,1,2,4,0,688,13164.15931516124,12102.08437819566,181242.7129543393,129999.1698957052,4091.400543814044 -14806,18274,33311,-9,33308,33310,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-988.2110877250635,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,688,13164.15931516124,12102.08437819566,181242.7129543393,129999.1698957052,4091.400543814044 -14807,18275,33312,33315,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.724325807939229,8.338453694511241,0,24,1,35.90244711523907,0,3,3,2019,12,0,46,45,1,0,0,14.22925631626939,14.22925631626939,0,0,0,0,0,1,1,0,0,0,29.71,64.88,40.49,47.75,6.666666666666667,1,1,0,0,9,2,4,0,370.5,466218.5360626703,212701.0602325383,403027.8373364724,251418.1093572351,3968.902171887141 -14807,18275,33313,-9,33315,33312,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.210348739017,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,370.5,466218.5360626703,212701.0602325383,403027.8373364724,251418.1093572351,3968.902171887141 -14807,18275,33314,-9,33315,33312,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.13651769513,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,370.5,466218.5360626703,212701.0602325383,403027.8373364724,251418.1093572351,3968.902171887141 -14807,18275,33315,33312,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.420181533359086,8.265634638369677,0,26,-1,67.08548083542168,0,1,3,2019,5,0,37,37,1,0,0,11.04491996081333,11.04491996081333,0,0,0,0,0,1,1,0,0,0,40.49,47.75,29.71,64.88,8.333333333333334,1,1,0,0,7,2,4,0,370.5,466218.5360626703,212701.0602325383,403027.8373364724,251418.1093572351,3968.902171887141 -14807,18276,33316,-9,33315,33312,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-929.5606080707942,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,272,0,0,0,0,0 -14807,18277,33317,-9,33315,33312,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1016.972618580285,-9,2,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.65,44.85,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,173,0,0,0,0,-827.349075792498 -14808,18278,33318,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.549054681304276,7.425039465095658,0,0,0,-937.689110191003,0,1,1,2019,14,3,30,15,1,3,0,7.348270582076806,7.348270582076806,0,0,0,0,0,1,1,0,0,0,43.43,54.3,-9,-9,6.666666666666667,4,2,0,0,9,11,3,1,320,97366.62565733551,157579.4772474845,67978.98489040864,0,844.5679969315244 -14809,18279,33319,33320,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.17989029166265,8.426548815284768,0,36,-4,24.46562430741067,0,2,2,2019,6,0,37,37,1,0,0,12.15321640465208,12.15321640465208,0,0,0,0,0,0,0,0,0,0,41.06,62.04,48.67,56.74,5,1,1,0,0,10,5,5,1,530.5,952982.4336947543,58338.01017956334,144266.7465202355,138549.367517787,3411.214569198223 -14809,18279,33320,33319,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.57903950520557,8.775791840256488,0,36,4,68.50316636529082,0,3,3,2019,5,0,55,40,1,0,0,12.22471779819396,12.22471779819396,0,0,0,0,0,0,0,0,0,0,48.67,56.74,41.06,62.04,8.333333333333334,1,1,0,0,10,5,5,1,530.5,952982.4336947543,58338.01017956334,144266.7465202355,138549.367517787,3411.214569198223 -14810,18280,33321,33322,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,51,8,71.23150248612492,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.139841949430401,0,0,1,1,0,3.120162090229219,0,50.01,52.64,57.06,57.76,6.666666666666667,1,1,0,0,0,1,2,1,645,1154018.84513607,244368.5780342995,457813.5709156349,0,2164.436994852128 -14810,18280,33322,33321,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.3664564850559,7.529652837732624,51,-8,17.27062964923091,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.893434757293863,7.668860347981624,57.06,57.76,50.01,52.64,10,1,1,0,0,0,1,2,1,645,1154018.84513607,244368.5780342995,457813.5709156349,0,2164.436994852128 -14811,18281,33323,33324,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,7.684824335211799,7.873047268867857,31,0,3.900925208988131,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.433273371760407,8.170826832466505,64,24.84,46.78,39.4,8.333333333333334,1,1,0,0,0,2,4,1,295.5,2393482.306642015,636594.7680709518,341703.3666835638,0,3780.721631687079 -14811,18281,33324,33323,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.911230680325113,7.956168209730673,31,0,-103.0631859567629,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,4.82086385410049,0,52.98286061683233,0,1,1,0,5.785300228073655,7.734476892751913,46.78,39.4,64,24.84,8.333333333333334,1,1,0,0,0,2,4,1,295.5,2393482.306642015,636594.7680709518,341703.3666835638,0,3780.721631687079 -14812,18282,33325,-9,33327,33326,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.0767288284102,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,324,402797.3695621416,150834.4473773678,375249.5370588403,317600.1933886903,8451.533064736701 -14812,18282,33326,33327,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.340683482156988,9.3586536859786,0,10,-8,66.13741079333872,0,2,2,2019,14,4,60,56,1,4,0,22.30001629454802,22.30001629454802,0,0,0,0,0,0,0,0,.9764535784453137,0,36.6,62.59,50.09,49.8,3.333333333333333,1,1,0,0,9,9,5,1,324,402797.3695621416,150834.4473773678,375249.5370588403,317600.1933886903,8451.533064736701 -14812,18282,33327,33326,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.621828075037374,9.248274528160023,0,10,8,-121.3400902030857,0,-9,-9,2019,10,0,67,55,1,0,0,25.62373330691267,25.62373330691267,0,0,0,0,0,0,0,0,7.365785756954609,0,50.09,49.8,36.6,62.59,6.666666666666667,1,1,0,0,11,9,5,1,324,402797.3695621416,150834.4473773678,375249.5370588403,317600.1933886903,8451.533064736701 -14813,18283,33328,33329,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.667174343764787,8.84723648622716,0,5,1,-24.33235796442956,0,-9,-9,2019,10,0,41,41,1,1,0,16.5767950889184,16.5767950889184,0,0,0,0,0,0,0,0,0,0,49,58,44.55,60.42,7,2,3,0,0,8,4,5,1,829,116429.2785948762,28819.69555653123,113132.4759319017,18867.69012247054,3176.480743797896 -14813,18283,33329,33328,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.985266010649395,8.269232533457288,0,5,-1,-120.435473600897,0,2,-9,2019,10,0,35,37,1,0,0,9.959236059386033,9.959236059386033,0,0,0,0,0,0,0,0,0,0,44.55,60.42,49,58,5,1,1,0,0,8,4,5,1,829,116429.2785948762,28819.69555653123,113132.4759319017,18867.69012247054,3176.480743797896 -14814,18284,33330,33331,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,6.985332614625111,7.760999311949589,9,8,187.5798572824353,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.694643634039962,7.148033779678655,53.53,29.67,60.44,36.05,5,1,1,0,0,0,12,2,1,414,661369.0924668824,435893.0140745168,179419.1346786772,0,1842.642574110594 -14814,18284,33331,33330,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,9,-8,21.90499460102983,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.2570323091857927,0,60.44,36.05,53.53,29.67,1.666666666666667,1,1,0,0,0,12,2,1,414,661369.0924668824,435893.0140745168,179419.1346786772,0,1842.642574110594 -14815,18285,33332,-9,-9,-9,1,0,48,1,1,0,3,3,-9,0,3,7.429605040298068,7.609343331257214,0,0,0,-1035.336619846917,0,3,3,2019,12,1,30,30,1,1,0,6.776731642177666,6.776731642177666,0,0,0,0,7,1,0,1,0,0,37.92,53.03,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,1320,254830.7029525733,151312.5374144308,0,0,1305.763699581254 -14815,18286,33333,-9,33334,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.751742182344,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,0,223,-34134.80364543493,13996.50611404424,0,0,2323.958321366123 -14815,18286,33334,-9,33332,-9,1,0,24,1,1,0,2,2,-9,0,4,8.270194988969431,8.397886385940041,0,0,0,-936.9180851640222,0,3,-9,2019,18,6,49,36,1,6,1,10.04462391372455,10.04462391372455,0,0,0,0,0,1,0,1,0,0,47.52,57.75,-9,-9,5,1,1,0,0,6,13,5,0,223,-34134.80364543493,13996.50611404424,0,0,2323.958321366123 -14816,18287,33335,-9,33338,-9,1,0,37,1,1,0,2,2,-9,1,1,0,0,0,0,0,-1026.382429866649,0,3,2,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,2,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,0,0,0,6,1,1,786,-48899.05495283983,0,144941.2165334655,87518.42041403441,1931.923420698562 -14816,18287,33336,-9,33335,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1145.684732732389,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,786,-48899.05495283983,0,144941.2165334655,87518.42041403441,1931.923420698562 -14816,18287,33337,-9,33335,-9,1,0,17,1,1,1,2,0,0,0,2,0,0,0,0,0,-1066.883095525177,-9,2,-9,2019,24,12,0,0,2,12,0,0,0,0,0,0,0,120,1,1,0,0,0,27.77,42.9,-9,-9,3.333333333333333,2,3,0,0,0,6,1,1,786,-48899.05495283983,0,144941.2165334655,87518.42041403441,1931.923420698562 -14816,18288,33338,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,3,0,0,0,0,0,-1088.218059910046,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,6,1,1,411,-46745.07017562801,0,0,0,322.833820184454 -14817,18289,33339,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.987989701620913,8.736990831019996,0,0,0,-923.0916353618794,0,2,3,2019,20,7,55,55,1,7,0,16.57651154926852,16.57651154926852,0,0,0,0,7,0,0,0,0,0,31.15,45.61,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,2337,717411.7889575823,357704.8042040362,170491.3376277263,0,2672.59169347746 -14817,18290,33340,-9,33339,-9,1,0,23,0,0,0,2,2,-9,0,4,8.228573330789665,7.9976890728839,0,0,0,-944.578836784382,0,1,-9,2019,15,3,40,8,1,3,1,10.66697579259283,10.66697579259283,0,0,0,0,2,0,0,0,0,0,45.26,50.66,-9,-9,1.666666666666667,1,1,0,0,7,11,4,1,1518,-150952.4268501174,26678.30015772454,0,0,1296.690378666826 -14818,18291,33341,33342,-9,33345,1,0,46,0,1,0,1,1,-9,0,5,8.619226213625508,8.613539142655991,0,23,-2,91.89612341087445,0,2,2,2019,17,6,57,50,1,6,0,10.74764487229795,10.74764487229795,0,0,0,0,14.5,1,1,0,0,0,38.77,63.46,46.63,59.72,5,1,1,0,0,9,5,5,1,1185.666666666667,200165.3437738402,115524.6647249865,501130.5433482214,403843.9309370212,5774.894033329896 -14818,18291,33342,33341,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.335947037864381,9.375416394603404,0,9,2,-56.80583674296557,0,2,1,2019,10,3,24,36,1,3,0,53.02991572783008,53.02991572783008,0,0,0,0,14.5,1,1,0,0,0,46.63,59.72,38.77,63.46,8.333333333333334,1,1,0,0,11,5,5,1,1185.666666666667,200165.3437738402,115524.6647249865,501130.5433482214,403843.9309370212,5774.894033329896 -14818,18291,33343,-9,33341,33342,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.4046776461392,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,1185.666666666667,200165.3437738402,115524.6647249865,501130.5433482214,403843.9309370212,5774.894033329896 -14818,18292,33344,-9,33341,33342,1,0,18,0,1,0,2,2,-9,0,2,7.639755010403831,7.788214853895879,0,0,0,-1004.339615300913,0,1,1,2019,14,2,43,0,1,2,1,5.676134910579867,5.676134910579867,0,0,0,0,7,1,1,0,0,0,32.81,50.34,-9,-9,3.333333333333333,1,1,0,0,2,5,3,1,418,191101.5769252346,-140253.1474546054,0,0,1239.281740254863 -14818,18293,33345,-9,-9,-9,1,1,90,0,1,0,3,3,-9,0,3,0,5.979112975696683,5.966779473981136,0,0,-900.4380878980402,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,6.964992794046212,75.36654053002933,61.94920350526043,0,1,1,0,7.093193311630059,6.072310620968427,55,45,-9,-9,8,1,1,0,0,0,5,2,1,616,209489.0176007398,276759.8404567186,19301.68194285975,0,1981.405586409968 -14819,18294,33346,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.34783873372564,3.918569602924891,0,0,-1058.847960067054,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,4.670548322991522,4.507155200982583,56.85,31.7,-9,-9,10,1,1,0,0,0,2,2,1,256,200084.312951382,0,293222.7108662868,0,1033.170378351458 -14820,18295,33347,-9,33349,33348,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.89071415083,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,833.25,60999.76065399066,74433.23777904786,0,0,5983.811215276639 -14820,18295,33348,33349,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.120662726509266,9.265201962174986,0,17,2,-54.21864657348699,0,2,2,2019,9,0,41,38,1,0,0,26.17949904654813,26.17949904654813,0,0,0,0,0,0,0,0,0,0,52.25,42.38,54.69,57.47,8.333333333333334,1,1,0,0,10,12,5,1,833.25,60999.76065399066,74433.23777904786,0,0,5983.811215276639 -14820,18295,33349,33348,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.43086438804731,9.181691486634456,0,17,-2,35.26873474620538,0,2,2,2019,6,0,38,38,1,0,0,27.90359527498072,27.90359527498072,0,0,0,0,0,0,0,0,6.298345300452783,0,54.69,57.47,52.25,42.38,10,1,1,0,0,10,12,5,1,833.25,60999.76065399066,74433.23777904786,0,0,5983.811215276639 -14820,18295,33350,-9,33349,33348,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.0159529395734,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,833.25,60999.76065399066,74433.23777904786,0,0,5983.811215276639 -14821,18296,33351,33354,-9,-9,1,0,31,0,2,0,1,1,-9,1,2,8.217718210872187,8.540435150777208,0,9,-3,-119.397636149031,0,1,1,2019,12,1,28,29,1,1,0,16.17448684263344,16.17448684263344,0,0,0,0,74.5,1,1,0,0,0,39.74,50.84,41.56,43.39,6.666666666666667,1,1,0,0,9,5,5,1,634.75,289144.0996438498,49235.52518424718,184090.0848164978,89894.61690218007,4970.340433731788 -14821,18296,33352,-9,33351,33354,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.068868118188,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,5,1,634.75,289144.0996438498,49235.52518424718,184090.0848164978,89894.61690218007,4970.340433731788 -14821,18296,33353,-9,33351,33354,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8330824817,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,634.75,289144.0996438498,49235.52518424718,184090.0848164978,89894.61690218007,4970.340433731788 -14821,18296,33354,33351,-9,-9,1,1,34,0,2,0,1,1,-9,0,2,9.055045028870465,8.85591363412907,0,9,3,-126.0304052399056,0,-9,-9,2019,14,2,40,38,1,2,0,16.80769251148368,16.80769251148368,0,0,0,0,0,1,1,0,0,0,41.56,43.39,39.74,50.84,6.666666666666667,1,1,0,0,9,5,5,1,634.75,289144.0996438498,49235.52518424718,184090.0848164978,89894.61690218007,4970.340433731788 -14822,18297,33355,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.636176653111085,7.534888797497912,0,0,0,-1010.146018589625,-9,3,3,2019,15,3,30,0,1,3,0,5.906620371265713,5.906620371265713,0,0,0,0,0,1,1,0,0,0,32.84,60.85,-9,-9,5,1,1,0,0,12,12,2,0,975.5,-81166.50788025255,0,57472.08307110713,15486.83056553682,1489.145082705159 -14822,18297,33356,-9,33355,-9,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-918.7291521604985,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,2,0,975.5,-81166.50788025255,0,57472.08307110713,15486.83056553682,1489.145082705159 -14822,18298,33357,-9,33355,-9,1,0,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-1073.526588829758,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.59,61.77,-9,-9,6.666666666666667,1,1,0,0,5,12,1,0,1514,-143431.3740594388,0,0,0,0 -14823,18299,33358,33359,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.983696084812064,6.930302218403769,55,0,33.52795827311076,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.212827015561591,57.51,47.91,59.53,56.44,10,1,1,0,0,0,10,3,1,281.5,1193840.363144959,536454.9303042999,185421.8695356908,0,3262.648051192421 -14823,18299,33359,33358,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.887902614150152,7.817542945527794,55,0,-45.02027725325775,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.041900868728015,7.712481742224743,59.53,56.44,57.51,47.91,10,1,1,0,0,0,10,3,1,281.5,1193840.363144959,536454.9303042999,185421.8695356908,0,3262.648051192421 -14824,18300,33360,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.812301638535136,9.03574108671731,0,0,0,-903.4806120353255,-9,2,2,2019,7,0,55,0,1,0,0,18.65575878376497,18.65575878376497,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,6,7,5,1,399,415924.4568888268,89797.68578723018,0,0,3246.85148807863 -14825,18301,33361,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,7.773834773335553,7.679834677510772,0,0,0,-873.4561385001396,-9,3,3,2019,14,3,38,0,1,3,0,6.63605943921312,6.63605943921312,0,0,0,0,0,0,0,0,0,0,47.57,52.99,-9,-9,5,1,1,0,0,12,13,3,1,1343,76387.12239604013,6771.54322458111,0,0,1045.672350591782 -14826,18302,33362,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.034748404778536,6.117571113497098,0,0,-1004.30563144175,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.038882223338069,51.84,19.52,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,92,587341.2861482294,43504.91120618498,341203.9028856684,0,1292.52427868318 -14827,18303,33363,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.76663274902134,7.970318447034845,0,0,0,-908.0586436717463,0,3,3,2019,22,9,36,32,1,9,0,8.255385131145628,8.255385131145628,0,0,0,0,2,1,1,0,1.755317253153343,0,43.28,52.87,-9,-9,3.333333333333333,1,1,0,0,13,7,4,1,204,3507.533473703842,68640.03389955012,0,0,1346.009368592147 -14828,18304,33364,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.596852207559486,8.702937303818212,0,0,-1019.83867431092,0,3,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.362265642462649,8.588080582162339,57.16,56.15,-9,-9,10,1,1,0,0,12,9,5,1,739,1605629.256925539,573457.8958645358,655292.5066971486,0,2827.272397919698 -14829,18305,33365,33366,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,4.884087068666575,4.701660342540594,0,7,-2,-11.5566153199142,0,2,1,2019,10,0,55,55,1,1,0,.2182454109585064,.2182454109585064,1,0,0,0,2,1,1,0,0,0,52,48,50,47,7,1,1,0,1,8,9,3,1,580.5,1138595.095850658,762822.0030598886,314347.035667807,0,2162.375341682555 -14829,18305,33366,33365,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.655752818257127,7.338416691140859,7,2,-8.985488230322938,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.321837002750828,7.584449138290853,50,47,52,48,7,1,1,0,0,8,9,3,1,580.5,1138595.095850658,762822.0030598886,314347.035667807,0,2162.375341682555 -14830,18306,33367,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.686563680558391,7.439958830700431,0,0,-1002.353793938254,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.448786538397774,7.576825510038578,57.49,34.36,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1188,1325106.965719899,344185.1369666784,921707.9527407135,0,1656.245105159666 -14831,18307,33368,33369,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,9.448237408146374,9.613139726136737,10,1,-94.28594760990873,0,2,2,2019,6,0,0,31,4,0,0,0,0,0,0,0,0,0,0,0,0,10.02007648128981,8.532286918577727,59.86,48.06,50.85,47.03,8.333333333333334,1,1,0,0,11,11,5,1,729,1361931.773674229,67545.6017745539,998893.7597260119,0,22604.67192772879 -14831,18307,33369,33368,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,4.90753328570973,4.834258122318293,10,-1,-37.11224840496326,0,3,3,2019,19,7,0,15,4,7,0,0,0,0,0,0,0,14.5,0,0,0,4.882394437952732,5.159393606511633,50.85,47.03,59.86,48.06,6.666666666666667,1,1,0,0,10,11,5,1,729,1361931.773674229,67545.6017745539,998893.7597260119,0,22604.67192772879 -14832,18308,33370,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,8.721003237132031,8.550085287915135,6.921415893383498,0,0,-848.1247815206167,0,3,3,2019,6,0,25,30,1,0,0,33.31301820130792,33.31301820130792,0,0,0,0,0,1,1,0,2.132615273272852,6.874196454156955,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,390,282268.110581178,53355.07622977421,272571.4428396744,0,3437.506512782209 -14833,18309,33371,33372,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.496962090989422,7.312798358763328,47,4,-124.7802026816529,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.569966753040458,7.49839033928017,56.78,49.38,35.9,31.24,8.333333333333334,1,1,0,0,0,2,2,1,4172.5,377925.6337086895,335292.6939759731,151678.4830099723,0,1713.126452093955 -14833,18309,33372,33371,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,47,-4,25.93113877776936,0,3,3,2019,28,11,0,0,4,11,0,0,0,1,0,7.744181645389101,0,0,1,1,0,5.640450051620886,0,35.9,31.24,56.78,49.38,5,1,1,0,1,3,2,2,1,4172.5,377925.6337086895,335292.6939759731,151678.4830099723,0,1713.126452093955 -14834,18310,33373,33375,-9,-9,1,1,54,0,1,0,2,2,-9,0,1,8.253340223386125,7.914044026774617,0,30,5,51.94164646282998,0,2,2,2019,8,1,40,40,1,1,0,9.720708310488295,9.720708310488295,0,0,0,0,7,1,1,0,3.855132808321767,0,60.78,27.81,38.79,39.29,5,1,1,0,0,10,6,4,1,849.6666666666666,75236.15382117413,105987.3733459191,0,0,3268.435892988103 -14834,18310,33374,-9,33375,33373,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.6023658900452,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,6,4,1,849.6666666666666,75236.15382117413,105987.3733459191,0,0,3268.435892988103 -14834,18310,33375,33373,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,0,7.708743125830739,7.707073744480121,30,-5,-43.68025976119873,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,8.068936997275522,0,38.79,39.29,60.78,27.81,3.333333333333333,1,1,0,0,5,6,4,1,849.6666666666666,75236.15382117413,105987.3733459191,0,0,3268.435892988103 -14835,18311,33376,-9,33379,-9,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1162.349930844843,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,2,0,1195.6,-46115.8853695861,0,0,0,2682.042492240213 -14835,18311,33377,-9,33379,-9,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-806.1489990253094,-9,3,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,8,2,0,1195.6,-46115.8853695861,0,0,0,2682.042492240213 -14835,18311,33378,-9,33379,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.3912447726825,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,1195.6,-46115.8853695861,0,0,0,2682.042492240213 -14835,18311,33379,-9,-9,-9,1,0,41,0,3,0,3,3,-9,0,4,7.715458699273847,7.420993625439444,0,0,0,-1058.312596016069,0,-9,-9,2019,2,0,25,23,1,0,0,9.596998175233498,9.596998175233498,0,0,0,0,0,1,1,0,0,0,51.64,55.4,-9,-9,10,3,4,0,0,2,8,2,0,1195.6,-46115.8853695861,0,0,0,2682.042492240213 -14835,18311,33380,-9,33379,-9,1,1,17,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.9119648967934,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,1195.6,-46115.8853695861,0,0,0,2682.042492240213 -14836,18312,33381,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,0,0,0,0,-841.6728735090617,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,17.16177011118867,0,0,1,1,0,0,0,42.85,30.62,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1381,-20641.69913552703,0,0,0,1465.965117612674 -14837,18313,33382,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.075688668919668,8.256246618551529,0,0,0,-963.222160643038,0,2,3,2019,14,2,55,55,1,2,0,6.626093470375073,6.626093470375073,0,0,0,0,0,1,1,0,0,0,43.15,49.04,-9,-9,8.333333333333334,1,1,0,0,8,11,4,0,637,707348.7796377356,527717.5576630473,52880.71881675811,15960.56002161332,1209.148039623576 -14838,18314,33383,-9,33384,33385,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-954.7888360414192,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,6,5,1,1086,696300.2798056619,679477.3924047459,218768.3590730253,353826.9121342284,5708.071936167141 -14838,18314,33384,33385,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.212373735976707,8.079515487667573,0,23,-2,.2388309412653125,0,2,2,2019,11,1,22,30,1,1,0,15.78547176069381,15.78547176069381,0,0,0,0,7,1,1,0,8.076334076944915,0,49.25,61.25,50.41,48.86,10,1,1,0,0,5,6,5,1,1086,696300.2798056619,679477.3924047459,218768.3590730253,353826.9121342284,5708.071936167141 -14838,18314,33385,33384,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,8.921685797876938,9.610008671889792,0,23,2,-16.737873821735,0,2,2,2019,10,0,58,60,1,0,0,17.28401592608505,17.28401592608505,0,0,0,0,2,1,1,0,0,0,50.41,48.86,49.25,61.25,6.666666666666667,1,1,0,0,9,6,5,1,1086,696300.2798056619,679477.3924047459,218768.3590730253,353826.9121342284,5708.071936167141 -14839,18315,33386,-9,33388,33387,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.4534306596196,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,459,319265.3221174702,-79595.23211368154,318353.037466487,0,2404.839399129631 -14839,18315,33387,33388,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,6.79010003277909,6.556390518004185,0,25,3,-115.4376486547046,0,-9,3,2019,8,0,60,60,1,0,0,1.726359598059763,1.726359598059763,0,0,0,0,0,1,1,0,0,0,57.17,50.61,37.73,52.99,6.666666666666667,3,4,0,0,10,8,3,0,459,319265.3221174702,-79595.23211368154,318353.037466487,0,2404.839399129631 -14839,18315,33388,33387,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.885153981374321,7.535650635870812,0,25,-3,92.65054215016752,0,3,3,2019,6,0,37,0,1,0,0,7.221710041023139,7.221710041023139,0,0,0,0,0,1,1,0,0,0,37.73,52.99,57.17,50.61,8.333333333333334,3,4,0,0,1,8,3,0,459,319265.3221174702,-79595.23211368154,318353.037466487,0,2404.839399129631 -14839,18316,33389,-9,33388,33387,1,1,22,0,1,0,2,2,1,0,4,8.876382439247134,9.042824358886135,0,0,0,-1032.151523245137,-9,1,2,2019,3,0,45,0,1,0,1,16.17638015322488,16.17638015322488,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,3,4,0,0,4,8,5,0,1751,-47515.43129308036,0,323060.7187338547,118679.4797394562,4313.819016583951 -14840,18317,33390,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.134367242461233,8.290660461736774,0,0,0,-1002.086872074389,-9,-9,-9,2019,10,0,45,0,1,0,0,9.978773371434929,9.978773371434929,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,390,-133777.9717966917,0,0,0,915.3174522138396 -14840,18318,33391,33392,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.768091820191149,8.815489163599564,0,7,-3,-10.17698924597846,0,2,2,2019,11,0,37,38,1,0,0,19.69136244359159,19.69136244359159,0,0,0,0,0,0,0,0,3.947994353944059,0,52,54.51,41.47,56.81,6.666666666666667,1,1,0,0,12,10,4,1,300,47351.74912716923,-6937.721923734232,245319.0302654076,232007.47371602,2238.924759743609 -14840,18318,33392,33391,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,7,3,-230.6948391270522,0,-9,-9,2019,17,7,0,28,3,7,0,0,0,0,0,0,0,0,0,0,0,6.969537669973817,0,41.47,56.81,52,54.51,3.333333333333333,1,1,0,0,6,10,4,1,300,47351.74912716923,-6937.721923734232,245319.0302654076,232007.47371602,2238.924759743609 -14841,18319,33393,33394,33396,-9,1,1,33,0,1,0,1,1,-9,0,4,8.822984418924634,8.513440263954292,0,1,3,-171.895247134629,-9,3,-9,2019,10,0,35,0,1,1,0,22.39672543104126,22.39672543104126,0,0,0,0,2,1,1,0,0,0,49,57,47,57,7,2,3,0,0,11,8,5,1,396,809253.5907260956,156028.5281229706,635504.6839990239,463306.3145636306,5024.142949700512 -14841,18319,33394,33393,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.982849354861184,8.769855162725097,0,1,-3,-42.17282815929615,-9,-9,-9,2019,11,0,35,0,1,2,0,20.15880633041498,20.15880633041498,0,0,0,0,0,1,1,0,0,0,47,57,49,57,7,2,3,0,0,8,8,5,1,396,809253.5907260956,156028.5281229706,635504.6839990239,463306.3145636306,5024.142949700512 -14841,18319,33395,-9,33394,33393,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.7028337398638,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,396,809253.5907260956,156028.5281229706,635504.6839990239,463306.3145636306,5024.142949700512 -14841,18320,33396,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,3,0,3.413800808654234,3.458769189476074,0,0,-988.0875424025387,-9,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,3.196023513653696,47,49,-9,-9,7,2,3,0,0,0,8,2,1,2509,507585.0382371476,28499.89990320741,236656.4570448509,0,2615.427835627692 -14842,18321,33397,33398,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.985722674482579,9.21057130078494,0,19,-10,-102.4937297103371,0,1,1,2019,14,4,35,38,1,4,0,26.52549154499349,26.52549154499349,0,0,0,0,0,1,1,0,6.899265361707887,0,56.59,28.63,47.46,52.7,8.333333333333334,1,1,0,0,13,4,5,1,1574,1263760.156409057,789710.0087284786,423514.088698804,184602.7899314973,4738.19121560159 -14842,18321,33398,33397,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.223047401088685,8.563824632047886,0,20,10,-29.70598097086267,0,2,2,2019,10,0,45,45,1,0,0,10.57546383417023,10.57546383417023,0,0,0,0,14.5,1,1,0,3.842112648069233,0,47.46,52.7,56.59,28.63,8.333333333333334,1,1,0,0,13,4,5,1,1574,1263760.156409057,789710.0087284786,423514.088698804,184602.7899314973,4738.19121560159 -14843,18322,33399,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,2,6.177358610036038,5.958616348679337,0,0,0,-1093.445166956302,0,3,2,2019,25,11,4,2,1,11,0,10.87110851280596,10.87110851280596,0,0,0,0,14.5,1,1,0,0,0,15.5,37.67,-9,-9,1.666666666666667,1,1,0,0,2,7,2,0,986.6666666666666,36066.84855919646,10606.07111869237,0,0,2716.168390444129 -14843,18322,33400,-9,33399,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.4735469889433,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,986.6666666666666,36066.84855919646,10606.07111869237,0,0,2716.168390444129 -14843,18322,33401,-9,33399,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.219431377706,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,2,0,986.6666666666666,36066.84855919646,10606.07111869237,0,0,2716.168390444129 -14844,18323,33402,33403,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,15,9,-34.41247871124993,0,-9,-9,2019,12,3,0,16,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,61.98,31.01,54.2,57.49,5,1,1,1,0,5,4,3,1,411.3333333333333,23129.38831460053,0,0,0,1929.686565900651 -14844,18323,33403,33402,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.583258959691058,8.338437316518581,0,15,0,-42.63981065493459,0,2,2,2019,6,0,45,40,1,0,0,10.71377092612851,10.71377092612851,0,0,0,0,0,1,1,0,0,0,54.2,57.49,61.98,31.01,8.333333333333334,1,1,0,0,9,4,3,1,411.3333333333333,23129.38831460053,0,0,0,1929.686565900651 -14844,18323,33404,-9,33402,33403,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1031.735941957754,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,411.3333333333333,23129.38831460053,0,0,0,1929.686565900651 -14844,18324,33405,-9,33402,33403,1,1,20,0,1,0,2,2,1,0,4,8.01280387295443,7.82177837222583,0,0,0,-1135.546196812665,-9,2,2,2019,6,0,38,0,1,0,1,8.456482322020774,8.456482322020774,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,473,11042.77200305289,-51313.6481559011,0,0,1315.698270566161 -14845,18325,33406,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.24223966969797,7.094580423983365,0,0,-1016.146795168788,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.977380153994582,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,441,595549.2809284539,272645.61668032,258105.2952357001,0,1750.877758887074 -14846,18326,33407,33408,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.155944930860901,8.073315880326495,0,3,2,9.245991359705894,0,-9,-9,2019,11,1,38,37,1,1,0,7.976269994808964,7.976269994808964,0,0,0,0,0,0,0,0,2.90154060146306,0,43.37,49.25,59.9,48.18,8.333333333333334,1,1,0,0,8,5,4,0,334,-154860.9689862231,-57879.41267992376,0,0,2449.753061315698 -14846,18326,33408,33407,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.71549241446465,7.89157321060391,0,3,-2,53.65598423338492,0,-9,-9,2019,4,0,40,40,1,0,0,6.354825958627917,6.354825958627917,0,0,0,0,0,0,0,0,0,0,59.9,48.18,43.37,49.25,10,1,1,0,0,4,5,4,0,334,-154860.9689862231,-57879.41267992376,0,0,2449.753061315698 -14847,18327,33409,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.615516014812665,7.643820663200211,0,0,-935.6443211053497,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.644686412268543,7.928195467203091,54.47,40.3,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,877,652736.986580665,490375.990631405,203648.9190424451,0,1559.949515897401 -14848,18328,33410,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-888.4851083953911,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,3,4,0,0,0,8,1,0,1077,0,0,0,0,1628.59455122691 -14849,18329,33411,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.768394830427884,7.652857778691112,0,0,-1096.984151373536,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.622616013652918,7.576859866713066,55,45,-9,-9,8,1,1,0,0,0,11,3,1,628,618607.4487758263,229200.8311243279,178709.9769143758,0,2035.919614614814 -14850,18330,33412,33413,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.033166515717776,4.18978748402809,53,-1,-9.829823050463913,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.665147590719691,3.636963698516263,44.73,56.4,59.14,52.5,8.333333333333334,1,1,0,0,3,2,4,1,600,1632960.762890659,696578.582777363,316835.9796633841,0,3644.994576809605 -14850,18330,33413,33412,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.404153764504468,8.645940534223223,53,1,10.85497509988562,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.456295520449141,8.465075248453987,59.14,52.5,44.73,56.4,8.333333333333334,1,1,0,0,0,2,4,1,600,1632960.762890659,696578.582777363,316835.9796633841,0,3644.994576809605 -14851,18331,33414,33415,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.482577355556396,8.711171264376159,0,5,2,-95.17189381794371,0,2,1,2019,7,0,41,38,1,0,0,13.98892438770247,13.98892438770247,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,835.5,62073.71680940745,-946.9209816036637,0,0,3252.839039898759 -14851,18331,33415,33414,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.855023356606665,8.31741833580719,0,5,-2,-13.4410504309561,0,-9,-9,2019,9,0,35,35,1,0,0,10.10849727488745,10.10849727488745,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,0,4,4,5,1,835.5,62073.71680940745,-946.9209816036637,0,0,3252.839039898759 -14852,18332,33416,-9,33418,33419,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.578855402165,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,552,-34989.16230143391,131764.6430727756,0,0,3081.623085629716 -14852,18332,33417,-9,33418,33419,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.4925370453121,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,552,-34989.16230143391,131764.6430727756,0,0,3081.623085629716 -14852,18332,33418,33419,-9,-9,1,0,23,1,2,0,2,2,-9,0,4,7.482067847556456,7.769372345765104,0,6,-2,4.277817073108684,0,-9,-9,2019,9,0,30,40,1,0,0,7.67015477609228,7.67015477609228,0,0,0,0,0,1,1,0,0,0,46.65,56.09,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,0,552,-34989.16230143391,131764.6430727756,0,0,3081.623085629716 -14852,18332,33419,33418,-9,-9,1,1,25,1,2,0,3,3,-9,0,4,8.827943540096738,8.309017901574444,0,6,2,-116.2061128947974,0,2,2,2019,6,0,45,40,1,0,0,14.88962237868314,14.88962237868314,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.65,56.09,10,1,1,0,0,7,2,4,0,552,-34989.16230143391,131764.6430727756,0,0,3081.623085629716 -14853,18333,33420,33422,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.314330717911891,7.339609242615581,0,22,-3,-63.14511258345141,0,3,3,2019,6,0,22,24,1,0,0,6.198896391307858,6.198896391307858,0,0,0,0,2,1,1,0,0,0,60.29,52.11,52.99,51.28,8.333333333333334,1,1,0,0,8,13,4,1,2422.333333333333,510239.2371522449,370003.592517746,267405.4368299642,62117.5311038123,3583.649602647402 -14853,18333,33421,-9,33420,33422,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-993.6786335243354,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,4,1,2422.333333333333,510239.2371522449,370003.592517746,267405.4368299642,62117.5311038123,3583.649602647402 -14853,18333,33422,33420,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.147973398154239,9.210220388908429,0,8,3,123.5179027146489,0,-9,-9,2019,7,0,40,52,1,0,0,24.22373276412682,24.22373276412682,0,0,0,0,0,1,1,0,0,0,52.99,51.28,60.29,52.11,6.666666666666667,1,1,0,0,6,13,4,1,2422.333333333333,510239.2371522449,370003.592517746,267405.4368299642,62117.5311038123,3583.649602647402 -14853,18334,33423,-9,33420,33422,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-881.0926643700802,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,0,1,1,1,0,0,13,1,1,232,32245.47292375788,0,0,0,0 -14854,18335,33424,33425,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.276721810932414,5.210627757847353,61,-3,3.452404630070681,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.165937547824902,52,45,51.48,42.44,8,1,1,0,0,0,10,2,1,754,963553.4390755557,0,221127.1966084195,0,1800.361410208717 -14854,18335,33425,33424,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.275327457195595,6.5945412389025,61,3,-72.37103888775334,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.864038974376269,6.125284669816566,51.48,42.44,52,45,10,1,1,0,0,0,10,2,1,754,963553.4390755557,0,221127.1966084195,0,1800.361410208717 -14855,18336,33426,33427,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.917632665633558,8.104287887155147,9,3,68.79937931624146,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.399614862184585,59.46,46.99,58.15,52.91,6.666666666666667,1,1,0,0,9,9,3,1,349,1506405.605911137,1094793.957872346,550991.2630139303,0,2627.319502409071 -14855,18336,33427,33426,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,9,-3,-84.70812319176321,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,3.26290687464127,0,58.15,52.91,59.46,46.99,6.666666666666667,1,1,0,0,4,9,3,1,349,1506405.605911137,1094793.957872346,550991.2630139303,0,2627.319502409071 -14856,18337,33428,33429,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.802130805887154,6.911774682242561,19,-1,49.53877528658082,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.669133091705981,6.747001707005187,61.43,43.34,57.16,56.15,8.333333333333334,1,1,0,0,5,9,2,1,500,847646.598577738,167755.0696021806,556338.9015089454,0,3221.994244094225 -14856,18337,33429,33428,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.430596794354531,5.473895793709628,19,1,-115.340776382721,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.092001305558215,57.16,56.15,61.43,43.34,10,1,1,0,0,5,9,2,1,500,847646.598577738,167755.0696021806,556338.9015089454,0,3221.994244094225 -14857,18338,33430,33431,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,7.844608068235715,7.649671715021862,0,3,-2,39.97728436901006,0,-9,-9,2019,10,0,45,0,1,0,0,5.463280362376107,5.463280362376107,0,0,0,0,0,0,0,0,0,0,52,54.51,58.76,27.28,1.666666666666667,1,1,0,0,2,9,4,0,757,80300.30119599347,72841.65291452137,0,0,1653.966977183699 -14857,18338,33431,33430,-9,-9,1,1,21,0,0,0,2,2,-9,0,1,7.587213736736051,8.06895168328513,0,3,2,94.75645296767743,0,-9,-9,2019,7,0,40,41,1,0,0,5.720524229224277,5.720524229224277,0,0,0,0,0,0,0,0,0,0,58.76,27.28,52,54.51,8.333333333333334,1,1,0,0,3,9,4,0,757,80300.30119599347,72841.65291452137,0,0,1653.966977183699 -14858,18339,33432,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1040.970253478989,0,2,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,36.15,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,463,56271.72850670109,0,0,0,1324.652686986863 -14858,18339,33433,-9,33432,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.4454121035444,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,463,56271.72850670109,0,0,0,1324.652686986863 -14859,18340,33434,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,6.458869550440726,6.476049344564758,0,0,-928.7641499678978,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.355176940764626,55.87,21.58,-9,-9,10,1,1,0,0,0,12,2,1,159,-45275.06458332343,249902.8344856479,0,0,1096.452286278565 -14860,18341,33435,33436,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.184256691665678,7.116067830387851,57,3,-148.6823268788689,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.624279722298636,7.03779043701519,38.49,24.49,51.39,56.66,5,1,1,0,0,0,6,2,1,766,729113.0649705862,165919.1711942698,173773.4170820426,0,2040.234597713767 -14860,18341,33436,33435,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.61673955149712,6.079698419156758,57,-3,11.45805795179986,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.196903415935866,0,0,1,1,0,4.212934910151866,5.806514346094023,51.39,56.66,38.49,24.49,8.333333333333334,1,1,0,0,0,6,2,1,766,729113.0649705862,165919.1711942698,173773.4170820426,0,2040.234597713767 -14861,18342,33437,33438,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,5.465125850959251,5.445708639743872,43,-3,-99.11265957198339,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.636792993244442,5.170242316192437,57.06,57.76,53.95,48.39,8.333333333333334,1,1,0,0,0,8,4,1,815,1123130.348622259,837590.4288798895,274289.5323819669,0,3655.807810093829 -14861,18342,33438,33437,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.445605225225414,8.4463008976137,43,3,54.08657393472052,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.407931018131587,8.304598916074809,53.95,48.39,57.06,57.76,8.333333333333334,1,1,0,0,0,8,4,1,815,1123130.348622259,837590.4288798895,274289.5323819669,0,3655.807810093829 -14862,18343,33439,33440,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.103298904611878,8.427372048285857,0,2,-1,-49.0855002748404,0,2,2,2019,10,0,40,40,1,0,0,12.50276937247027,12.50276937247027,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.18,39.7,8.333333333333334,1,1,0,0,7,4,5,1,911,539171.3987141307,285557.3025093933,158826.1190881964,4567.243279848637,2998.239823144748 -14862,18343,33440,33439,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.418187814035546,8.799534871260679,0,2,1,107.0029221623629,0,-9,-9,2019,9,0,39,38,1,0,0,13.66508878305193,13.66508878305193,0,0,0,0,0,0,0,0,0,0,52.18,39.7,57.16,56.15,6.666666666666667,1,1,0,0,7,4,5,1,911,539171.3987141307,285557.3025093933,158826.1190881964,4567.243279848637,2998.239823144748 -14862,18344,33441,-9,33440,33439,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-986.1811879254326,-9,2,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.21,41.27,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,95,-74849.75820221585,0,0,0,-192.5976269571765 -14863,18345,33442,-9,33443,-9,1,1,26,0,0,0,2,2,-9,0,4,8.094416093297761,8.365245011236274,0,0,0,-976.0407659097215,0,2,2,2019,10,0,40,40,1,1,0,8.298154452475984,8.298154452475984,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,0,624,71485.47186214141,-26186.19659594777,0,0,967.9249161467144 -14863,18346,33443,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.379330967585,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,3,4,0,1,0,8,1,0,436,126435.8478966226,0,327567.9639639357,0,0 -14864,18347,33444,33445,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,9.361217319638683,9.228126628388399,0,7,-4,-119.2620584804682,0,-9,-9,2019,10,0,43,47,1,0,0,34.1288383629682,34.1288383629682,0,0,0,0,0,1,1,0,7.541514336316796,0,46.44,59.62,52.99,51.28,8.333333333333334,1,1,0,0,8,8,5,1,399.5,1570654.232077302,939244.880468881,401611.4321136868,0,5444.039954555148 -14864,18347,33445,33444,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.432245758001708,8.077226582047114,0,7,4,-43.8096761878076,0,1,2,2019,10,0,40,40,1,0,0,11.5705286816537,11.5705286816537,0,0,0,0,0,1,1,0,2.316835505102012,0,52.99,51.28,46.44,59.62,8.333333333333334,1,1,0,0,8,8,5,1,399.5,1570654.232077302,939244.880468881,401611.4321136868,0,5444.039954555148 -14865,18348,33446,33447,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.248305226563461,4.129769847991271,51,3,-89.76435793628069,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,14.41591524860839,0,0,1,1,0,4.146016537258033,4.336679107581705,32.17,28.78,55.96,49.93,3.333333333333333,1,1,0,0,0,12,2,0,641,250705.0542581294,0,263163.5871905517,0,2471.210402786345 -14865,18348,33447,33446,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,51,-3,105.2565689209562,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.96,49.93,32.17,28.78,10,1,1,0,0,0,12,2,0,641,250705.0542581294,0,263163.5871905517,0,2471.210402786345 -14866,18349,33448,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.878316975431566,5.867118643905106,0,0,-1008.621524726763,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,2.432262692279609,0,16.94897111067236,0,1,1,0,4.981568459843619,5.93634040730319,41.56,24.5,-9,-9,5,1,1,0,0,0,6,2,1,597,145591.3705349202,-42756.95358326419,0,0,841.8100987195128 -14867,18350,33449,33450,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.623510343980866,5.631477595107436,46,-1,-141.0729417103074,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,.2361775966132544,2,0,0,0,5.115039393666976,5.697565853429146,56.33,51.02,60.29,52.11,8.333333333333334,1,1,0,0,0,9,3,1,1320.5,1667201.201448048,866897.5034045005,745384.6997536912,0,1617.761488101779 -14867,18350,33450,33449,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.581033026307055,8.026320256385231,8,1,118.1736940443712,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.519980519746934,7.942412532680995,60.29,52.11,56.33,51.02,8.333333333333334,1,1,0,0,7,9,3,1,1320.5,1667201.201448048,866897.5034045005,745384.6997536912,0,1617.761488101779 -14868,18351,33451,-9,33452,-9,1,0,17,1,1,0,2,2,1,0,2,0,5.575112974612864,5.415298584429692,0,0,-984.5351576483554,-9,2,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,5.423772809940112,0,27.83,55.3,-9,-9,5,1,1,0,1,0,9,3,0,2515.5,479082.1969138386,284572.0170368919,354879.8011486857,0,1616.569706468085 -14868,18351,33452,-9,-9,-9,1,0,50,1,1,0,2,2,-9,0,5,7.242067834953526,7.617058771571262,0,0,0,-966.0297923349065,0,3,3,2019,20,9,27,26,1,9,0,7.077709339416674,7.077709339416674,0,0,0,.4608263157961829,0,1,1,0,0,0,25.88,66.73999999999999,-9,-9,3.333333333333333,1,1,0,1,7,9,3,0,2515.5,479082.1969138386,284572.0170368919,354879.8011486857,0,1616.569706468085 -14868,18352,33453,-9,33452,-9,1,0,25,1,1,0,2,2,-9,0,4,7.887804789559533,7.78450427050338,0,0,0,-995.9788783111634,0,2,-9,2019,7,0,42,43,1,0,1,7.162623592267152,7.162623592267152,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,863,-22445.54463173451,29631.05280229765,0,0,1164.440088238539 -14868,18353,33454,-9,33452,-9,1,1,24,1,1,0,2,2,-9,0,5,0,0,0,0,0,-949.7978499033453,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,2.250742414373688,0,53.51,60.74,-9,-9,6.666666666666667,1,1,1,0,7,9,2,0,838,0,0,0,0,172.9487715368525 -14869,18354,33455,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,6.830065694965583,6.678341689563796,0,0,-899.1123045209015,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,7.034272247388356,33.88,26.99,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,1597,-154936.3351064073,0,0,0,3042.471280509955 -14870,18355,33456,33457,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,56,-1,-119.4425938661422,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.222849248614009,0,58.9,35.04,42.18,46.53,8.333333333333334,1,1,0,0,0,1,3,1,1005.5,1050982.993904513,555152.3939873972,307053.0917726583,0,2390.650163603092 -14870,18355,33457,33456,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.974920835759311,8.183484514750379,56,1,20.46759519438971,0,3,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.053027093605634,42.18,46.53,58.9,35.04,8.333333333333334,1,1,0,0,0,1,3,1,1005.5,1050982.993904513,555152.3939873972,307053.0917726583,0,2390.650163603092 -14871,18356,33458,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.702674650073144,7.951270043744165,0,0,0,-918.8984137726356,0,1,2,2019,11,0,39,38,1,0,0,6.713809512866757,6.713809512866757,0,0,0,0,0,0,0,0,.6586429909146948,0,33.43,41.25,-9,-9,6.666666666666667,1,1,0,1,8,11,3,1,97,24145.88019991976,-30030.29334928552,0,0,1249.382442223195 -14872,18357,33459,33461,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.517602584443619,9.613307974383112,0,16,3,-37.38883735082254,0,2,2,2019,11,0,45,45,1,0,0,25.91682114673883,25.91682114673883,0,0,0,0,0,0,0,0,2.301607732237459,0,51.73,58.82,55.36,54.24,8.333333333333334,1,1,0,0,11,12,5,1,402,229149.6029916805,100048.4824597759,471286.7864468187,308214.51048609,6032.012969438023 -14872,18357,33460,-9,33461,33459,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.82943670233,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,402,229149.6029916805,100048.4824597759,471286.7864468187,308214.51048609,6032.012969438023 -14872,18357,33461,33459,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.543808579795135,8.393571664107441,0,16,-3,11.81683196804926,0,1,1,2019,8,0,20,16,1,0,0,28.53035806528465,28.53035806528465,0,0,0,0,0,0,0,0,7.03165235125078,0,55.36,54.24,51.73,58.82,8.333333333333334,1,1,0,0,9,12,5,1,402,229149.6029916805,100048.4824597759,471286.7864468187,308214.51048609,6032.012969438023 -14872,18357,33462,-9,33461,33459,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.339690157205,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,402,229149.6029916805,100048.4824597759,471286.7864468187,308214.51048609,6032.012969438023 -14873,18358,33463,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.683431356557643,8.250759054100294,0,0,0,-884.5771678104145,0,2,2,2019,27,11,40,37,1,11,0,8.791568591424298,8.791568591424298,0,0,0,0,5.48,0,0,0,0,0,34.75,43.28,-9,-9,3.333333333333333,1,1,0,1,12,5,4,1,2452,33994.33068172318,40182.20922261834,0,0,1874.189608143654 -14874,18359,33464,-9,-9,33465,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.6510560384163,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,939.6666666666666,9170.879138631857,-20522.47541898052,0,0,-20.646211574305 -14874,18359,33465,-9,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,2.021971634210364,2.315633085629014,0,0,0,-1055.057171608161,0,2,3,2019,11,1,40,40,1,1,0,.0270699591468646,.0270699591468646,0,0,0,0,0,0,0,0,0,0,43.78,46.06,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,939.6666666666666,9170.879138631857,-20522.47541898052,0,0,-20.646211574305 -14874,18359,33466,-9,-9,33465,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.3352789420529,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,939.6666666666666,9170.879138631857,-20522.47541898052,0,0,-20.646211574305 -14875,18360,33467,-9,33470,33469,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.730974130492,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1229.5,1296044.560284281,865254.7159020934,487398.7071956858,164952.9084862303,5611.945426092794 -14875,18360,33468,-9,33470,33469,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.1347467623181,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1229.5,1296044.560284281,865254.7159020934,487398.7071956858,164952.9084862303,5611.945426092794 -14875,18360,33469,33470,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.919953263281224,9.190478404936393,0,8,-2,81.13869001572881,0,3,3,2019,8,0,43,40,1,0,0,20.08371279988249,20.08371279988249,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,1229.5,1296044.560284281,865254.7159020934,487398.7071956858,164952.9084862303,5611.945426092794 -14875,18360,33470,33469,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.678806601377401,8.568617064829935,6.332073567844312,8,2,-60.61170449911322,0,3,3,2019,12,0,43,42,1,0,0,19.43005809721809,19.43005809721809,0,0,0,0,0,1,1,0,5.914407533141684,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,1229.5,1296044.560284281,865254.7159020934,487398.7071956858,164952.9084862303,5611.945426092794 -14876,18361,33471,33472,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.568934112402821,7.448511761809794,11,1,-80.98039458562731,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.574546799161939,7.758497159554598,57.51,47.91,46.27,36.04,8.333333333333334,1,1,0,0,9,1,3,1,312.5,497713.7886145148,192536.9386784755,144189.5802352655,0,3897.169655148075 -14876,18361,33472,33471,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-1,-88.6261462943277,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,6.300308863685666,0,0,1,1,0,8.165915790367979,0,46.27,36.04,57.51,47.91,8.333333333333334,1,1,0,0,0,1,3,1,312.5,497713.7886145148,192536.9386784755,144189.5802352655,0,3897.169655148075 -14877,18362,33473,33475,-9,-9,1,0,23,1,1,0,2,2,-9,0,5,7.288781608637107,7.312919567967893,0,5,0,5.93158934719728,0,2,-9,2019,16,5,20,18,1,5,0,9.644867992893014,9.644867992893014,0,0,0,0,2,1,1,0,0,0,33.39,65.88,51.14,60.45,8.333333333333334,1,1,0,0,7,4,5,1,1749,7120.924293828856,75330.18289878134,149770.8984372478,128986.5366475149,3850.963138187608 -14877,18362,33474,-9,33473,33475,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.1147499048949,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1749,7120.924293828856,75330.18289878134,149770.8984372478,128986.5366475149,3850.963138187608 -14877,18362,33475,33473,-9,-9,1,1,23,1,1,0,2,2,-9,0,5,8.999171462484501,8.797580176779382,0,5,0,-23.08852919010294,0,-9,-9,2019,6,0,60,55,1,0,0,14.59863810418011,14.59863810418011,0,0,0,0,2,1,1,0,0,0,51.14,60.45,33.39,65.88,10,1,1,0,0,5,4,5,1,1749,7120.924293828856,75330.18289878134,149770.8984372478,128986.5366475149,3850.963138187608 -14878,18363,33476,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,7.276632877020179,7.668576990298059,4.159890509671961,0,0,-1061.746452428059,0,-9,-9,2019,6,0,21,36,1,0,0,9.044006635776643,9.044006635776643,0,0,0,0,0,1,1,0,6.919188872408945,4.401217925491362,62.39,56.71,-9,-9,10,1,1,0,0,12,7,3,1,4103,-205326.4837509557,0,0,0,1882.885529250481 -14879,18364,33477,33478,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.60490901371382,5.807101381881684,56,3,-49.45908052134391,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.89986970042899,0,17.72140264960433,0,1,1,0,5.837139933999776,5.74662616328369,57.93,46.29,56.35,43.13,8.333333333333334,1,1,0,0,0,4,2,1,984.5,277645.0065567164,204527.4069735505,179088.9205187802,0,2334.262607819893 -14879,18364,33478,33477,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.895020082134163,6.921834025752059,56,-3,-71.892155386124,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.565208132423091,6.600537131643247,56.35,43.13,57.93,46.29,8.333333333333334,1,1,0,0,3,4,2,1,984.5,277645.0065567164,204527.4069735505,179088.9205187802,0,2334.262607819893 -14880,18365,33479,33480,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.878141492002133,9.118541480079047,0,9,4,59.48691074863947,0,-9,-9,2019,9,0,70,65,1,0,0,11.86416786932158,11.86416786932158,0,0,0,0,0,0,0,0,0,0,56.58,45.49,52.11,38.34,8.333333333333334,1,1,0,0,11,5,5,1,446.5,2464084.522205863,1780045.637364982,414164.3477140865,0,3273.06424723073 -14880,18365,33480,33479,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,43,-4,-92.81309164601085,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52.11,38.34,56.58,45.49,8.333333333333334,1,1,0,0,7,5,5,1,446.5,2464084.522205863,1780045.637364982,414164.3477140865,0,3273.06424723073 -14881,18366,33481,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.191046527854814,7.994996720137486,0,0,0,-1070.828157294973,0,2,2,2019,11,0,78,40,1,0,0,4.355143495561061,4.355143495561061,0,0,0,0,2,0,0,0,0,0,47.42,51.55,-9,-9,5,1,1,0,0,10,4,4,1,155,198806.6834815316,215853.3894286267,0,0,1178.441367212694 -14882,18367,33482,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.896340038155508,8.651369791980887,0,0,0,-1023.06886074014,0,2,1,2019,11,0,60,57,1,0,0,16.65707669580589,16.65707669580589,0,0,0,0,0,0,0,0,3.600421941992015,0,48.93,50.55,-9,-9,8.333333333333334,1,1,0,0,7,10,5,0,939,800895.8969394229,305878.4383393044,220987.642831374,0,2574.201401980147 -14883,18368,33483,33484,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.514335016582402,8.248137783910268,0,28,-6,-112.8909627539179,0,2,2,2019,6,0,50,48,1,0,0,15.67150350255392,15.67150350255392,0,0,0,0,0,0,0,0,3.334263559167349,0,57.63,56.14,54.79,55.86,8.333333333333334,1,1,0,0,13,2,5,1,233.5,1996093.477888551,1327731.394769701,501967.4648385181,0,6162.109328030543 -14883,18368,33484,33483,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.666965463327388,9.548587762440519,0,28,6,-75.75641366837671,0,-9,-9,2019,8,0,100,45,1,0,0,18.36606390977105,18.36606390977105,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.63,56.14,8.333333333333334,1,1,0,0,9,2,5,1,233.5,1996093.477888551,1327731.394769701,501967.4648385181,0,6162.109328030543 -14883,18369,33485,-9,33483,33484,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1083.391898429227,-9,2,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,456,0,0,0,0,-221.0200945386166 -14883,18370,33486,-9,33483,33484,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-985.0197039774064,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,89,212347.8643242402,0,0,0,-485.5491053936958 -14884,18371,33487,33488,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,50,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,22.59,51.62,47.75,8.333333333333334,1,1,0,0,0,13,1,1,1115,365953.3658825021,0,286670.7315632837,0,1922.176268262672 -14884,18371,33488,33487,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,50,3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.62,47.75,51.72,22.59,8.333333333333334,1,1,0,0,8,13,1,1,1115,365953.3658825021,0,286670.7315632837,0,1922.176268262672 -14885,18372,33489,-9,33491,33490,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.262502498452,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,527.3333333333334,10735.36373056458,39356.36500066688,89488.62695321545,54921.93350110762,2495.966638410695 -14885,18372,33490,33491,-9,-9,1,1,23,0,1,0,2,2,-9,0,4,8.125345568317831,8.268083026506027,0,5,-2,-42.52137736401228,0,-9,-9,2019,10,0,43,56,1,1,0,8.625681862145493,8.625681862145493,0,0,0,0,2,1,1,0,0,0,48,59,44.12,48.5,7,1,1,0,0,5,2,4,0,527.3333333333334,10735.36373056458,39356.36500066688,89488.62695321545,54921.93350110762,2495.966638410695 -14885,18372,33491,33490,-9,-9,1,0,25,0,1,0,1,1,-9,0,4,7.79062578854773,7.842783083050706,0,5,2,-21.40947209737567,0,2,2,2019,12,0,24,35,1,0,0,11.47576932021137,11.47576932021137,0,0,0,0,0,1,1,0,2.534859468038021,0,44.12,48.5,48,59,8.333333333333334,1,1,0,0,8,2,4,0,527.3333333333334,10735.36373056458,39356.36500066688,89488.62695321545,54921.93350110762,2495.966638410695 -14886,18373,33492,33493,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.138400386623082,6.904341210304629,0,30,-6,-20.27673450321784,0,3,3,2019,12,0,30,30,1,0,0,3.491807513113876,3.491807513113876,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,44.68,33.71,5,1,1,0,0,7,11,2,1,622,397239.384672478,92482.53432684756,233973.2202638988,0,1362.932394340031 -14886,18373,33493,33492,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,30,6,-143.6049356438829,0,3,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,44.68,33.71,36.27,60.6,5,1,1,0,0,0,11,2,1,622,397239.384672478,92482.53432684756,233973.2202638988,0,1362.932394340031 -14887,18374,33494,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.576777874614196,8.629503639760095,0,0,0,-1080.844534812162,0,2,2,2019,20,8,47,48,1,8,0,17.05024966759431,17.05024966759431,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,8,8,4,1,943,90639.86367704316,-89782.50150680523,0,0,3317.680419187292 -14887,18375,33495,-9,33494,-9,1,1,23,0,1,0,2,2,-9,0,3,7.794492546850652,7.507950990159237,0,0,0,-1018.663163149323,0,2,-9,2019,19,5,35,35,1,5,1,6.513834200652159,6.513834200652159,0,0,0,0,0,1,1,0,0,0,29.2,62.12,-9,-9,3.333333333333333,4,2,0,0,4,8,3,1,163,-156199.8756267475,0,0,0,1202.021914295887 -14887,18376,33496,-9,33494,33497,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1204.721104440639,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,312.5,1391720.243768722,280268.6280780719,751282.5184377588,0,4202.438172418328 -14887,18376,33497,-9,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.701754791548755,9.245732305691945,0,0,0,-950.8967907488924,0,-9,-9,2019,9,0,36,36,1,1,0,43.24092691131713,43.24092691131713,0,0,0,0,0,1,1,0,3.785335951947931,0,53,55,-9,-9,8,3,4,0,0,1,8,5,1,312.5,1391720.243768722,280268.6280780719,751282.5184377588,0,4202.438172418328 -14888,18377,33498,33499,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.856526998451887,8.818194851265787,0,3,11,-5.884189013230441,0,1,2,2019,8,0,50,55,1,0,0,13.45276066540265,13.45276066540265,0,0,0,0,0,0,0,0,2.467375688548969,0,46.16,58.62,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,2219,117964.2415179365,120790.005186225,132844.4777504852,108863.8095917165,3384.55115423217 -14888,18377,33499,33498,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.497050792760286,7.703276472609177,0,3,-11,135.705597856074,0,-9,-9,2019,7,0,20,30,1,0,0,10.65257592811347,10.65257592811347,0,0,0,0,0,0,0,0,2.152280019199178,0,57.06,57.76,46.16,58.62,8.333333333333334,1,1,0,0,6,6,5,1,2219,117964.2415179365,120790.005186225,132844.4777504852,108863.8095917165,3384.55115423217 -14889,18378,33500,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.703264965914238,5.771131454612197,0,0,-1118.868182763117,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.573526835790624,5.413922472703618,51.15,38.67,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,190,558206.7036496033,61679.58896973482,273403.544343565,0,824.7363349616687 -14890,18379,33501,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1016.357530214564,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,10.24733468279365,0,0,1,1,0,0,0,37.42,27.89,-9,-9,3.333333333333333,2,3,0,0,0,8,2,1,308,-15171.32711513887,0,0,0,1458.609835133928 -14891,18380,33502,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,6.813555870013198,7.05506782216816,0,0,-1052.222222101471,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,15.35378310855853,4.519644288058329,136.0011051680389,0,1,1,0,0,6.848611709759394,47.63,14.27,-9,-9,0,1,1,0,0,0,8,2,0,712,503545.0528942333,275884.5295654453,207993.7282934249,0,1636.423496103653 -14892,18381,33503,-9,33504,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.5743000471051,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,0,632.6666666666666,1146248.776298398,504849.2669122568,601678.7482306528,59144.27212512284,6749.970163542147 -14892,18381,33504,-9,-9,-9,1,0,43,1,2,0,1,1,-9,0,5,9.74687960193592,9.863880988540133,0,0,0,-980.2069330947081,0,3,3,2019,8,0,30,40,1,0,0,62.07831109844042,62.07831109844042,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,8,5,0,632.6666666666666,1146248.776298398,504849.2669122568,601678.7482306528,59144.27212512284,6749.970163542147 -14892,18381,33505,-9,33504,-9,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.17236492883,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,0,632.6666666666666,1146248.776298398,504849.2669122568,601678.7482306528,59144.27212512284,6749.970163542147 -14893,18382,33506,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.464606971421508,8.222327464391869,0,0,0,-1118.852429879126,0,1,2,2019,15,4,26,39,1,4,0,27.70333612725428,27.70333612725428,0,0,0,0,0,0,0,0,3.710454905392972,0,38.74,61.79,-9,-9,3.333333333333333,1,1,0,0,9,5,5,1,2292,197362.7049631504,157037.6473282028,0,0,2189.213977477146 -14894,18383,33507,33508,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,7.061086293396945,7.161278080855581,0,3,-1,53.54135606427644,0,-9,-9,2019,10,0,25,0,1,0,0,6.324057223438137,6.324057223438137,0,0,0,0,0,0,0,0,0,0,41.4,55.39,52.23,55.6,5,1,1,0,0,2,12,4,1,897.5,171365.4869482456,-22228.94597229539,121341.3378148708,66157.42599868245,1911.658688503328 -14894,18383,33508,33507,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,8.072357731916727,8.297466659405044,0,3,1,-49.78948697492812,0,-9,-9,2019,5,0,45,70,1,0,0,9.566782892201791,9.566782892201791,0,0,0,0,0,0,0,0,0,0,52.23,55.6,41.4,55.39,6.666666666666667,1,1,0,0,2,12,4,1,897.5,171365.4869482456,-22228.94597229539,121341.3378148708,66157.42599868245,1911.658688503328 -14895,18384,33509,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.4405030624649,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,4.175696224241174,0,0,1,1,0,0,0,35.9,60.41,-9,-9,5,1,1,0,0,0,1,1,1,1545,-18474.01398735635,0,0,0,1149.471482301118 -14895,18385,33510,-9,33509,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-970.6574573259917,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.638002895104632,0,50,49,-9,-9,7,1,1,0,0,0,1,2,1,835,170550.2595096465,80529.97659001146,0,0,489.5905537502032 -14895,18386,33511,-9,33509,-9,1,1,56,0,0,0,2,2,-9,0,3,8.03884669831753,8.468025140144391,0,0,0,-964.656128201786,0,3,-9,2019,11,0,36,40,1,1,0,11.26824976143971,11.26824976143971,0,0,0,0,0,1,1,0,5.836247970088566,0,50,49,-9,-9,7,1,1,0,0,1,1,4,1,294,628971.3985706518,402095.8175046095,214233.4243737143,0,1860.556149264987 -14896,18387,33512,33513,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,34,-11,-30.06168943000393,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52,45,56,44,8,1,1,0,0,0,5,2,1,1072,62511.26111361387,-8344.904941509396,169317.0483226853,0,1227.027275241738 -14896,18387,33513,33512,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,6.254119863788825,6.127496425312666,34,11,87.41170121561717,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.154772599719283,0,0,1,1,0,0,6.645378350976358,56,44,52,45,8,1,1,0,0,0,5,2,1,1072,62511.26111361387,-8344.904941509396,169317.0483226853,0,1227.027275241738 -14897,18388,33514,33516,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.901808668100836,8.720531149914533,0,5,-5,-62.49263303140998,0,2,2,2019,8,0,55,53,1,0,0,13.69862052815685,13.69862052815685,0,0,0,0,2,0,0,0,7.040774914987241,0,55.36,51.57,14.48,39.07,6.666666666666667,1,1,0,0,9,1,5,1,1315,936457.9820822022,181201.0194789779,587096.3765721613,0,4456.178527253454 -14897,18388,33515,-9,33514,33516,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-940.467008921884,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.83644079596265,0,53.33,37.66,-9,-9,6.666666666666667,1,1,0,0,1,1,5,1,1315,936457.9820822022,181201.0194789779,587096.3765721613,0,4456.178527253454 -14897,18388,33516,33514,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.453993503382122,8.287582573154848,0,5,5,-29.75649084395091,0,2,2,2019,30,11,32,32,1,11,0,17.83377649557193,17.83377649557193,0,0,0,0,2,0,0,0,0,0,14.48,39.07,55.36,51.57,1.666666666666667,1,1,0,0,9,1,5,1,1315,936457.9820822022,181201.0194789779,587096.3765721613,0,4456.178527253454 -14897,18389,33517,-9,33514,33516,1,0,19,0,0,1,2,0,0,0,4,0,5.519973645838279,5.288671323351054,0,0,-948.4715016700925,-9,1,1,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,5.463684952137375,0,22.6,62.56,-9,-9,3.333333333333333,1,1,0,0,2,1,2,1,354,12552.68226251926,0,0,0,-134.0648737344549 -14898,18390,33518,33519,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,-16,-16.66495824373677,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,58.53,55.62,10,1,1,1,0,4,11,3,1,1194,287614.4325666098,111522.4661932193,0,0,1050.853660071778 -14898,18390,33519,33518,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.012403554397343,8.146297319952758,0,7,16,108.5932794901639,0,-9,-9,2019,5,0,45,60,1,0,0,6.91833457636899,6.91833457636899,0,0,0,0,0,0,0,0,0,0,58.53,55.62,41.17,59.31,0,1,1,0,1,12,11,3,1,1194,287614.4325666098,111522.4661932193,0,0,1050.853660071778 -14899,18391,33520,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,5.419437803909411,5.367804885199979,0,0,-974.6723159425618,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.961866469770983,5.444149110058911,57.06,57.76,-9,-9,10,1,1,0,0,0,13,2,1,390,-86796.46419663212,-74613.74735351595,46617.2902055719,0,1632.242019195278 -14900,18392,33521,33522,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,8.042182878020265,8.33128094005332,60,-1,43.84062117731953,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,7.809766888877845,9.091099927173431,68.47834800141371,0,1,1,0,1.335677666687431,8.056710343126722,53.08,42.9,60.69,50.51,8.333333333333334,1,1,0,0,0,10,4,1,362,1418331.375400392,808688.0565684712,534105.3409274488,0,3605.563813150191 -14900,18392,33522,33521,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.126598132782879,6.522112663416754,60,1,-105.1609495305406,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.498839783593278,6.35400335433308,60.69,50.51,53.08,42.9,10,1,1,0,0,4,10,4,1,362,1418331.375400392,808688.0565684712,534105.3409274488,0,3605.563813150191 -14901,18393,33523,33527,-9,-9,1,1,51,0,3,0,3,3,-9,1,2,0,0,0,16,13,0,0,-9,-9,2019,23,11,0,24,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,40.71,41.11,40.82,1.666666666666667,2,3,0,1,2,2,1,1,702.4,-648.4772132288141,0,0,0,1175.988697539649 -14901,18393,33524,-9,33527,33523,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-847.9507579396704,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,1,702.4,-648.4772132288141,0,0,0,1175.988697539649 -14901,18393,33525,-9,33527,33523,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1094.164184787436,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,2,3,-9,0,0,2,1,1,702.4,-648.4772132288141,0,0,0,1175.988697539649 -14901,18393,33526,-9,33527,33523,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-976.7283938637734,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,1,1,702.4,-648.4772132288141,0,0,0,1175.988697539649 -14901,18393,33527,33523,-9,-9,1,0,38,0,3,0,3,3,-9,0,2,0,0,0,16,-13,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,41.11,40.82,33.12,40.71,8.333333333333334,2,3,0,1,0,2,1,1,702.4,-648.4772132288141,0,0,0,1175.988697539649 -14901,18394,33528,-9,33527,33523,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1079.784515053438,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,2,3,0,0,0,2,1,1,442,90324.8791605742,0,0,0,0 -14902,18395,33529,33530,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.436093344160774,6.222242267403525,49,-3,-.7752884128396774,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.894576753336571,6.464654771473282,48.76,53.24,52.41,44.88,8.333333333333334,1,1,0,0,0,12,2,1,1085.5,524083.9590043708,183840.0381257179,288562.6539863271,0,1908.701293083235 -14902,18395,33530,33529,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.804612231180518,6.77174728048466,49,3,86.26090689477256,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.192174796176932,7.109485662087134,52.41,44.88,48.76,53.24,8.333333333333334,1,1,0,0,0,12,2,1,1085.5,524083.9590043708,183840.0381257179,288562.6539863271,0,1908.701293083235 -14903,18396,33531,33532,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.256178623513303,7.11655811813939,0,7,-6,108.6908473649956,0,3,3,2019,11,0,21,21,1,0,0,8.009342431705411,8.009342431705411,0,0,0,0,0,1,1,0,0,0,55.47,52.91,54.61,49.13,1.666666666666667,1,1,0,0,8,12,3,1,916,164687.4420641824,126288.5279027575,168520.7602083262,0,2707.707504224402 -14903,18396,33532,33531,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.598153760827693,6.737861918417098,7,6,21.05260874750546,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2153566973192,6.091894264975114,54.61,49.13,55.47,52.91,10,1,1,0,0,7,12,3,1,916,164687.4420641824,126288.5279027575,168520.7602083262,0,2707.707504224402 -14904,18397,33533,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.447984409018421,5.472714636585524,0,0,-1071.360099797627,0,3,-9,2019,12,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,3.745551064795163,5.447032198472304,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,8,1,2,1,929,319108.2039418389,1354.822919370265,0,0,1112.906459960094 -14905,18398,33534,33535,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.450501755302433,7.118392209696345,9,3,77.51010196020955,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.256527980614362,7.342048824920443,57.76,54.51,54.37,54.8,10,1,1,0,0,2,10,2,1,386,452128.3765178863,225997.2883407531,276242.4992223413,0,2334.167816033626 -14905,18398,33535,33534,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.823046768923106,4.659959028350275,9,-3,-14.09023592899211,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.995833505177932,4.777524703309594,54.37,54.8,57.76,54.51,8.333333333333334,1,1,0,0,2,10,2,1,386,452128.3765178863,225997.2883407531,276242.4992223413,0,2334.167816033626 -14906,18399,33536,-9,33537,33538,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1156.524912087455,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,5,5,1,279.3333333333333,2097986.797451606,1515336.392556445,317225.059702072,0,8723.680696309426 -14906,18399,33537,33538,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.738816955903417,9.734844660028564,0,10,-1,26.9960060706561,-9,-9,-9,2019,26,9,42,0,1,9,0,41.75083676838861,41.75083676838861,0,0,0,0,0,0,0,0,0,0,35.36,56.72,50.65,53.71,3.333333333333333,1,1,0,0,11,5,5,1,279.3333333333333,2097986.797451606,1515336.392556445,317225.059702072,0,8723.680696309426 -14906,18399,33538,33537,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.42657336303411,7.187655650266955,0,10,1,-69.16612873883719,0,2,1,2019,9,0,40,40,1,0,0,3.366251373536514,3.366251373536514,0,0,0,0,0,0,0,0,9.340018155332976,0,50.65,53.71,35.36,56.72,8.333333333333334,1,1,0,0,11,5,5,1,279.3333333333333,2097986.797451606,1515336.392556445,317225.059702072,0,8723.680696309426 -14907,18400,33539,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.180544551414159,5.185140569212452,0,0,-1162.27551566481,-9,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,5.387809895405492,45.33,49.24,-9,-9,6.666666666666667,1,1,0,0,10,7,2,0,549,73788.92045627559,30298.54188476334,0,0,1641.88225328859 -14908,18401,33540,33541,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.93476403713848,7.814678983760514,0,6,10,-1.077670734255172,0,3,3,2019,5,0,36,33,1,0,0,7.62900331312052,7.62900331312052,0,0,0,0,0,0,0,0,2.231476384272868,0,48.54,54.5,51.24,58.84,8.333333333333334,1,1,0,0,7,9,5,1,1015,1119342.163214431,954190.3737534035,345926.1056444735,147842.907598213,3644.410259876409 -14908,18401,33541,33540,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.833788630243612,8.859004394360271,0,6,-10,63.64652317519745,0,2,2,2019,7,0,48,45,1,0,0,14.68764741889155,14.68764741889155,0,0,0,0,0,0,0,0,2.987354344153385,0,51.24,58.84,48.54,54.5,6.666666666666667,1,1,0,0,7,9,5,1,1015,1119342.163214431,954190.3737534035,345926.1056444735,147842.907598213,3644.410259876409 -14909,18402,33542,33543,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.274840734878367,8.619192905473762,0,38,2,40.4236269162508,0,-9,-9,2019,14,2,39,53,1,2,0,13.91115535268943,13.91115535268943,0,0,0,0,0,1,1,0,0,0,40.38,34.42,52,53,5,1,1,0,0,9,7,4,0,863.5,1387506.043456071,1133377.915426746,476358.0818005698,0,2626.88003953884 -14909,18402,33543,33542,-9,-9,1,0,56,0,0,0,3,3,-9,1,4,0,0,0,38,-2,-39.74677844934201,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,40.38,34.42,8,1,1,0,0,0,7,4,0,863.5,1387506.043456071,1133377.915426746,476358.0818005698,0,2626.88003953884 -14909,18403,33544,-9,33543,33542,1,1,29,0,0,0,3,3,-9,0,4,7.20430643260785,7.272398804498453,0,0,0,-1003.773672175153,0,3,2,2019,10,0,30,31,1,1,1,5.602897609647974,5.602897609647974,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,9,7,3,0,216,8915.289829610267,0,0,0,705.9274043806224 -14909,18404,33545,-9,33543,33542,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1099.579773826402,0,3,3,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,3.93557793612337,0,53.24,33.73,-9,-9,5,1,1,1,0,0,7,1,0,581,-75382.28526622939,0,0,0,-28.07287768820458 -14910,18405,33546,33547,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.761334975275624,8.606114898768039,0,2,5,1.668239288040011,0,2,2,2019,20,8,45,40,1,8,0,13.84931551609023,13.84931551609023,0,0,0,0,0,0,0,0,7.881346525474608,0,20,62.76,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,421.5,413543.8505220011,371044.4067450042,312465.8595140366,149041.7252197117,5000.737783325878 -14910,18405,33547,33546,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.520831478138836,8.177041735335921,0,2,-5,111.9669064613423,0,-9,-9,2019,8,0,45,40,1,0,0,12.88231977028405,12.88231977028405,0,0,0,0,0,0,0,0,7.948285454194005,0,48.87,58.55,20,62.76,1.666666666666667,1,1,0,0,4,9,5,1,421.5,413543.8505220011,371044.4067450042,312465.8595140366,149041.7252197117,5000.737783325878 -14911,18406,33548,-9,-9,-9,1,0,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-989.7227237941976,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,13,1,0,141,-107207.2446481006,0,0,0,1147.362203730787 -14911,18407,33549,-9,33548,-9,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1059.776213426644,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,1,13,1,0,393,208651.3305118385,0,0,0,-169.9722147142123 -14911,18408,33550,-9,33548,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1088.135655645215,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,1,0,13,1,0,1190,0,0,0,0,67.77348066304648 -14912,18409,33551,-9,-9,-9,1,0,36,1,3,0,3,3,-9,0,4,0,5.585269864624272,5.323323261404168,0,0,-970.7825325269923,0,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.174788499005816,0,48,56,-9,-9,7,3,4,0,0,0,8,2,0,697.75,-77799.25743513111,0,0,0,1873.775191929246 -14912,18409,33552,-9,33551,-9,1,1,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.5158390446716,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,697.75,-77799.25743513111,0,0,0,1873.775191929246 -14912,18409,33553,-9,33551,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-978.2033730214072,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,697.75,-77799.25743513111,0,0,0,1873.775191929246 -14912,18409,33554,-9,33551,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.254937825607,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,697.75,-77799.25743513111,0,0,0,1873.775191929246 -14913,18410,33555,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.597854830662557,7.730766607308024,0,0,0,-1036.503183557459,0,-9,-9,2019,13,3,33,37,1,3,0,7.090902612917659,7.090902612917659,0,0,0,0,0,1,1,0,5.949836812550496,0,38.95,52.39,-9,-9,5,1,1,0,0,12,6,3,1,421,1575.00941530375,-173873.8240528867,130389.8838249969,47866.66144277785,1204.913370662108 -14914,18411,33556,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,6.856122086138742,7.056823928100906,0,0,-972.3138935196247,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.09738983428216,7.050364889867564,55,45,-9,-9,8,1,1,0,0,0,2,2,1,1776,174909.3245851087,69755.25318710116,0,0,2430.596623762501 -14915,18412,33557,33558,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.719076211974816,8.332867288580038,0,6,-1,-123.6493056995723,-9,-9,-9,2019,16,4,37,0,1,4,0,17.51477931241953,17.51477931241953,0,0,0,0,0,1,1,0,0,0,33.92,51.94,57.16,56.15,5,1,1,0,0,6,1,5,0,1305,214832.2370474834,-22239.1776192111,217996.4941076149,147936.3217910526,3677.648567446434 -14915,18412,33558,33557,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,8.105777405814397,8.352768185309696,0,6,1,-60.40183638100212,-9,-9,2,2019,4,0,50,0,1,0,0,7.741117341452676,7.741117341452676,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.92,51.94,1.666666666666667,1,1,0,0,11,1,5,0,1305,214832.2370474834,-22239.1776192111,217996.4941076149,147936.3217910526,3677.648567446434 -14915,18413,33559,-9,33557,33558,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-929.0389242727142,-9,1,3,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,934,22190.92293712722,0,0,0,-265.3961091748108 -14916,18414,33560,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,6.316045427521083,6.123719427854821,0,0,-996.0786010309366,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,14.45189192229014,16.39624026831409,0,0,1,1,0,2.644316321906905,5.959820134752929,43.35,47.68,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1919,669538.5554647271,-38257.48833560398,228116.7886271495,0,1454.4332667567 -14917,18415,33561,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.781458532516241,6.381525402196378,0,0,-994.150859962707,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.279997552634206,6.673436187574596,41.91,51.05,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,558.5,1007409.984117558,226275.7085915325,338671.2811481422,0,1539.205344468937 -14917,18415,33562,-9,-9,33561,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-894.499723571449,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,1,558.5,1007409.984117558,226275.7085915325,338671.2811481422,0,1539.205344468937 -14918,18416,33563,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.457286066236884,8.198222636922679,0,0,-1000.19557663552,0,1,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.105880464640432,8.160636954192785,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,528,2674549.807724066,1039121.967146815,515406.006439151,0,1713.515221089673 -14919,18417,33564,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.704670850406499,6.91140139721387,0,0,-1069.933135686035,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.7458877158454912,6.544126503206111,44.9,25.52,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,396,994045.9711972335,208275.568775202,660914.5928418959,0,1302.250753030851 -14919,18418,33565,-9,33564,-9,1,0,19,0,0,1,2,0,0,0,3,0,4.201464680986174,4.042515524512455,0,0,-982.3810554652131,-9,2,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,3.938783595889835,46.86,55.66,-9,-9,8.333333333333334,4,2,0,0,2,8,2,1,65,41251.11979288088,0,0,0,281.9965599749562 -14920,18419,33566,33568,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.799114965884932,9.043107445365788,0,5,-3,4.306718913528137,0,2,2,2019,24,11,42,42,1,11,0,21.14781590613917,21.14781590613917,0,0,0,0,2,1,1,0,3.166850973480029,0,35.17,21.8,47.89,56.25,3.333333333333333,1,1,0,0,11,4,4,1,783.25,573383.8450910868,503656.5283944121,115947.2238824013,68611.28052566035,3142.609145492727 -14920,18419,33567,-9,33568,33566,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.4186359052478,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,783.25,573383.8450910868,503656.5283944121,115947.2238824013,68611.28052566035,3142.609145492727 -14920,18419,33568,33566,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,7.075052531045602,7.032677500542629,4.906861254875249,5,3,-40.30921463405121,0,-9,-9,2019,12,1,40,20,1,1,0,4.060212236892852,4.060212236892852,0,0,0,0,2,1,1,0,5.822858295964396,0,47.89,56.25,35.17,21.8,10,1,1,0,0,5,4,4,1,783.25,573383.8450910868,503656.5283944121,115947.2238824013,68611.28052566035,3142.609145492727 -14920,18419,33569,-9,33568,33566,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.1679927355353,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,783.25,573383.8450910868,503656.5283944121,115947.2238824013,68611.28052566035,3142.609145492727 -14921,18420,33570,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.020049610958853,8.579690027237188,0,0,0,-986.1023183037715,0,2,2,2019,11,0,43,46,1,0,0,22.05577341926366,22.05577341926366,0,0,0,0,0,1,1,0,2.837630838347962,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,446,-65192.28375988858,-7957.767472272644,125483.3900156502,90884.57727558928,2677.215978174743 -14922,18421,33571,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.692761418730571,8.035093516492193,0,0,-981.8290957417619,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.671113239967946,7.411722898142325,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,406,637391.9676419548,466386.9924536307,69103.76422949121,106305.7429762594,1698.977633146725 -14923,18422,33572,33573,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.188105203104053,8.087903401154962,0,8,0,130.0329135052482,0,-9,-9,2019,10,0,40,40,1,1,0,8.937855656423595,8.937855656423595,0,0,0,0,0,1,1,0,0,0,51,49,52.64,43.94,7,3,4,0,0,1,8,3,0,257.5,1282361.195076021,674265.5653900926,621400.7908983803,0,1839.010994075909 -14923,18422,33573,33572,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,5.802080861819453,5.583061355614554,27,9,-48.44789924659656,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.070086617231691,52.64,43.94,51,49,5,3,4,0,0,9,8,3,0,257.5,1282361.195076021,674265.5653900926,621400.7908983803,0,1839.010994075909 -14924,18423,33574,33575,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.920134873689337,7.686779655111547,0,1,4,-59.41778432578396,-9,-9,-9,2019,7,0,34,0,1,0,0,9.898454040121692,9.898454040121692,0,0,0,0,0,1,1,0,2.855110907116553,0,45.7,47.83,51.83,57.2,8.333333333333334,1,1,0,0,5,7,4,1,441,92484.09123432878,-27445.14351438653,125080.1886297476,21292.83070504988,2166.083680223674 -14924,18423,33575,33574,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,7.567918588718675,7.269414692538579,0,1,-4,57.39018501995825,-9,2,2,2019,4,0,35,0,1,0,0,5.533846764387858,5.533846764387858,0,0,0,.0395723809029871,0,1,1,0,2.379683136611711,0,51.83,57.2,45.7,47.83,8.333333333333334,1,1,0,0,9,7,4,1,441,92484.09123432878,-27445.14351438653,125080.1886297476,21292.83070504988,2166.083680223674 -14925,18424,33576,33577,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.481076810849853,8.65431158459851,5.439423222766099,10,-5,-57.86051297967102,0,3,2,2019,8,0,45,48,1,0,0,13.40017992659348,13.40017992659348,0,0,0,0,0,1,1,0,0,6.034926907128799,57.09,46.7,52.34,23.61,10,1,1,0,0,11,12,4,1,971.5,1141164.14621041,961179.1917308818,247257.6434105497,0,2843.894471636146 -14925,18424,33577,33576,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.690348443210496,4.790526088444425,10,5,-149.5389813560041,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,27.5476713922009,0,0,1,1,0,0,4.68534631983793,52.34,23.61,57.09,46.7,8.333333333333334,1,1,0,0,7,12,4,1,971.5,1141164.14621041,961179.1917308818,247257.6434105497,0,2843.894471636146 -14926,18425,33578,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.325132761489251,6.820576562060918,0,0,-981.0000506465234,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,42.93928884155777,0,0,0,1,1,0,2.056165792166776,7.007789250739162,60.85,26.21,-9,-9,10,1,1,0,0,0,5,2,1,233,304686.3768188882,123526.0997555193,221379.3645475474,0,967.1327759489368 -14927,18426,33579,33580,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,10,-7,-80.57575583710057,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,45.45,36.65,8.333333333333334,1,1,0,0,0,4,2,0,779.5,184148.4325431093,13503.75386974246,226908.9910268508,0,1604.020879082726 -14927,18426,33580,33579,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,4.540082110664367,4.641716435188137,10,7,8.672696543159491,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,5.912507470857094,0,0,1,1,0,4.589352939932105,4.36961861384352,45.45,36.65,51.83,57.2,10,1,1,0,0,0,4,2,0,779.5,184148.4325431093,13503.75386974246,226908.9910268508,0,1604.020879082726 -14928,18427,33581,-9,33582,33583,1,0,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1034.780616227142,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,436,-46543.3923564943,0,0,0,0 -14928,18428,33582,33583,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,6,-5,71.78451921473216,-9,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,22.93,53,55,6.666666666666667,1,1,0,0,0,12,3,1,479.3333333333333,1655362.839206888,192410.2555523521,1179659.318669469,793303.0507426647,2550.243511138909 -14928,18428,33583,33582,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.36431374149535,8.498554561216686,0,6,5,111.2104592234074,-9,2,2,2019,9,0,40,0,1,1,0,16.96250791839967,16.96250791839967,0,0,0,0,0,1,1,0,6.738155522456003,0,53,55,41.88,22.93,8,1,1,0,0,1,12,3,1,479.3333333333333,1655362.839206888,192410.2555523521,1179659.318669469,793303.0507426647,2550.243511138909 -14928,18428,33584,-9,33582,33583,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.5821188222808,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,479.3333333333333,1655362.839206888,192410.2555523521,1179659.318669469,793303.0507426647,2550.243511138909 -14929,18429,33585,33586,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.777611262291083,8.622206957364716,0,11,9,-16.91576563323205,0,2,2,2019,9,1,45,45,1,1,0,12.22517975135273,12.22517975135273,0,0,0,0,0,1,1,0,0,0,46.08,57.2,56.92,46.68,8.333333333333334,1,1,0,0,11,9,5,1,723.3333333333334,845379.5273869162,-26711.85213973504,749634.4092607308,0,4860.253135969941 -14929,18429,33586,33585,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.79345439430641,9.183657813658749,5.196114965967291,11,0,-10.71255742051236,0,3,2,2019,6,0,32,32,1,0,0,27.37507040613572,27.37507040613572,0,0,0,0,0,1,1,0,5.804029126791375,0,56.92,46.68,46.08,57.2,8.333333333333334,1,1,0,0,13,9,5,1,723.3333333333334,845379.5273869162,-26711.85213973504,749634.4092607308,0,4860.253135969941 -14929,18429,33587,-9,33586,33585,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.336083662314,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,723.3333333333334,845379.5273869162,-26711.85213973504,749634.4092607308,0,4860.253135969941 -14930,18430,33588,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-880.6317977327984,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,40.49058874455953,0,0,1,1,0,0,0,35.82,28.89,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,428,-75007.35745021554,0,0,0,2262.641796805968 -14931,18431,33589,33590,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.156239437561258,8.072085125213246,0,1,-3,-41.17418173747891,-9,-9,-9,2019,9,0,50,0,1,1,0,7.174480421123801,7.174480421123801,0,0,0,0,0,0,0,0,3.666568517736316,0,52,55,44.69,43.61,8,1,1,0,0,1,6,5,1,577,1429721.601617953,1153003.12837455,195798.0603191677,119261.963162974,3910.721303028744 -14931,18431,33590,33589,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.818392609152799,8.941845435268199,0,1,3,5.185511241970386,0,2,1,2019,10,0,42,38,1,0,0,20.61459179010847,20.61459179010847,0,0,0,0,0,0,0,0,0,0,44.69,43.61,52,55,6.666666666666667,1,1,0,0,10,6,5,1,577,1429721.601617953,1153003.12837455,195798.0603191677,119261.963162974,3910.721303028744 -14931,18432,33591,-9,33590,33589,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1136.734479113853,-9,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,33.18,60.48,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,854,-90015.16505728182,0,0,0,0 -14932,18433,33592,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.133433616409194,9.201897863562525,0,0,0,-948.1985653618531,0,1,1,2019,6,0,50,-9,1,0,0,31.79485580854363,31.79485580854363,0,0,0,0,0,1,1,0,7.356788367920641,0,62.49,55.09,-9,-9,10,2,3,0,0,9,8,5,0,506,691306.7034624401,39633.60986496317,921985.4029047592,379850.0725287398,4115.472822775119 -14933,18434,33593,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,6.044954007485462,5.647278671183147,0,0,-1018.004467155982,0,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.714735585686038,0,51.49,33.63,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,361,-110036.1617532272,54792.64882917749,0,0,695.2539680599991 -14933,18435,33594,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.674510200116379,6.964185655295826,0,0,0,-1037.083140651133,0,-9,-9,2019,23,7,35,20,1,7,0,5.345505678214511,5.345505678214511,0,0,0,0,0,1,1,0,0,0,24.54,63.25,-9,-9,1.666666666666667,1,1,0,0,1,6,3,0,376,102800.6326766398,0,0,0,1182.920867592051 -14934,18436,33595,33598,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.809263488634624,9.010351567066586,0,6,-1,-2.451221600757208,0,-9,-9,2019,7,0,35,35,1,0,0,22.58589250326311,22.58589250326311,0,0,0,0,0,1,1,0,0,0,37.4,59.59,43.95,36.56,8.333333333333334,1,1,0,0,12,7,4,1,535.5,302614.7570934637,-15.91009644844598,494632.3639700129,211320.3610116966,3310.138842690294 -14934,18436,33596,-9,33598,33595,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.638735543272,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,535.5,302614.7570934637,-15.91009644844598,494632.3639700129,211320.3610116966,3310.138842690294 -14934,18436,33597,-9,33598,33595,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.653227075198,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,1.38200323205813,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,535.5,302614.7570934637,-15.91009644844598,494632.3639700129,211320.3610116966,3310.138842690294 -14934,18436,33598,33595,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,6.802422949047022,6.665972758816475,0,6,1,67.75954918878161,0,2,2,2019,15,3,12,12,1,3,0,6.255379553800814,6.255379553800814,0,0,0,0,0,1,1,0,0,0,43.95,36.56,37.4,59.59,6.666666666666667,1,1,0,0,10,7,4,1,535.5,302614.7570934637,-15.91009644844598,494632.3639700129,211320.3610116966,3310.138842690294 -14935,18437,33599,33600,-9,-9,1,1,28,0,0,0,1,1,-9,0,1,8.26109411725259,8.420941935009823,0,4,2,-92.75973985771307,0,-9,-9,2019,18,6,46,45,1,6,0,9.652938519244529,9.652938519244529,0,0,0,0,2,0,0,0,0,0,29.99,45.92,34.62,26.72,1.666666666666667,1,1,0,1,6,4,4,0,346,77771.63422824803,-20550.69418184542,0,0,2084.28359752165 -14935,18437,33600,33599,-9,-9,1,0,26,0,0,0,2,2,-9,1,1,0,0,0,4,-2,34.7070224627999,0,1,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,34.62,26.72,29.99,45.92,1.666666666666667,4,2,0,1,2,4,4,0,346,77771.63422824803,-20550.69418184542,0,0,2084.28359752165 -14936,18438,33601,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-947.0223310211271,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.87328985973185,4.439066473738388,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,1,566,-108906.6461486741,0,0,0,847.4304730877088 -14937,18439,33602,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.336639508137248,7.187578438012852,0,0,0,-964.78043987393,-9,3,2,2019,11,2,30,0,1,2,0,5.134221378748116,5.134221378748116,0,0,0,0,7,0,0,0,0,0,36.39,45.88,-9,-9,5,1,1,0,0,5,4,3,0,493,-232491.533607285,0,0,0,779.3441522071905 -14938,18440,33603,33606,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,4.359754553036678,4.082238300094844,0,11,6,-43.62889943359686,0,2,1,2019,10,0,40,38,1,0,0,.1876357021341185,.1876357021341185,0,0,0,0,0,1,1,0,.7504471594380678,0,54.2,57.49,42.1,37.58,8.333333333333334,2,3,0,0,8,8,4,0,635.25,508564.551080238,125698.1329619304,516667.5159938187,186950.1813024262,2335.109459689289 -14938,18440,33604,-9,33606,33603,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.4679538984867,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,635.25,508564.551080238,125698.1329619304,516667.5159938187,186950.1813024262,2335.109459689289 -14938,18440,33605,-9,33606,33603,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-829.3670728648427,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,635.25,508564.551080238,125698.1329619304,516667.5159938187,186950.1813024262,2335.109459689289 -14938,18440,33606,33603,-9,-9,1,0,33,0,2,0,1,1,-9,0,2,8.791937282523497,8.624591293968034,0,11,-6,-9.464682161144252,0,-9,-9,2019,11,2,5,0,1,2,0,131.7622058185705,131.7622058185705,0,0,0,0,0,1,1,0,1.813139050430118,0,42.1,37.58,54.2,57.49,5,2,3,0,0,1,8,4,0,635.25,508564.551080238,125698.1329619304,516667.5159938187,186950.1813024262,2335.109459689289 -14939,18441,33607,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,5,0,4.045277586128126,4.065491988998703,0,0,-1140.361242329959,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,4.085793964021492,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,314,143544.4011578169,0,0,0,202.6336563013891 -14940,18442,33608,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.7231967401621,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,9,13,1,1,485,310716.1851226952,0,149663.1619055411,0,1019.036365104366 -14941,18443,33609,33610,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.714745420668949,9.09875485085273,0,9,-1,87.06886724681036,0,2,2,2019,6,0,39,38,1,0,0,17.63381233091925,17.63381233091925,0,0,0,0,0,0,0,0,1.638044059578098,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,8,1,5,0,1758.5,750190.705175041,498786.0795091665,457658.7418910845,315201.8919359769,4838.177934633526 -14941,18443,33610,33609,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.944065835823318,8.889715058761075,0,9,1,-142.6603123835199,0,2,2,2019,7,0,45,50,1,0,0,19.76699033749684,19.76699033749684,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,6,1,5,0,1758.5,750190.705175041,498786.0795091665,457658.7418910845,315201.8919359769,4838.177934633526 -14942,18444,33611,33612,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.783612597847329,8.764109624071896,0,28,3,-299.6302597007455,0,3,3,2019,4,0,39,37,1,0,0,22.70223282331469,22.70223282331469,0,0,0,0,0,1,1,0,3.716519414590809,0,60.02,56.42,50.73,55.14,10,1,1,0,0,8,13,5,1,1117,1272720.152954036,811468.8662475374,404716.7461682887,61828.66343160576,4974.356767356071 -14942,18444,33612,33611,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.566700774510251,8.791380748920668,0,28,-3,-88.02732427726849,0,1,3,2019,10,0,43,45,1,0,0,15.163237521219,15.163237521219,0,0,0,0,14.5,1,1,0,0,0,50.73,55.14,60.02,56.42,8.333333333333334,1,1,0,0,8,13,5,1,1117,1272720.152954036,811468.8662475374,404716.7461682887,61828.66343160576,4974.356767356071 -14942,18444,33613,-9,33612,33611,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1006.404955085261,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,.7821665653577131,0,55.09,55.87,-9,-9,6.666666666666667,1,1,0,0,1,13,5,1,1117,1272720.152954036,811468.8662475374,404716.7461682887,61828.66343160576,4974.356767356071 -14942,18445,33614,-9,33612,33611,1,1,24,0,0,0,1,1,1,0,5,8.414329426368338,8.200091861966493,0,0,0,-1102.524206812518,-9,1,1,2019,4,0,45,0,1,0,1,8.944214251777327,8.944214251777327,0,0,0,0,0,1,1,0,.6225200150595303,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,746,52289.75719454987,59689.88604259453,185536.5326990882,80319.59369358138,1326.993968323987 -14942,18446,33615,-9,33612,33611,1,1,23,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1071.793956140879,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,769,240306.0939709867,0,0,0,0 -14943,18447,33616,-9,33619,33618,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-934.2492410068583,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,628.5,141831.1317039249,7096.930166652229,225142.8538614226,137384.8766510235,3163.960992808155 -14943,18447,33617,-9,33619,33618,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-943.8123235685573,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,628.5,141831.1317039249,7096.930166652229,225142.8538614226,137384.8766510235,3163.960992808155 -14943,18447,33618,33619,-9,-9,1,1,29,2,2,0,2,2,-9,0,3,8.180204676598555,8.285564011491118,0,4,2,28.19677271123435,0,-9,-9,2019,10,0,37,38,1,0,0,13.657059801063,13.657059801063,0,0,0,0,0,1,1,0,3.66712517930739,0,47.66,52.33,30.3,63.25,6.666666666666667,1,1,0,0,8,12,4,1,628.5,141831.1317039249,7096.930166652229,225142.8538614226,137384.8766510235,3163.960992808155 -14943,18447,33619,33618,-9,-9,1,0,27,2,2,0,2,2,-9,0,4,8.221964052158816,7.929938357771931,0,4,-2,-25.17183479130609,0,2,2,2019,12,1,7,14,1,1,0,43.32855105478767,43.32855105478767,0,0,0,0,0,1,1,0,1.080290877354404,0,30.3,63.25,47.66,52.33,8.333333333333334,1,1,0,0,8,12,4,1,628.5,141831.1317039249,7096.930166652229,225142.8538614226,137384.8766510235,3163.960992808155 -14944,18448,33620,33621,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,5.807283086314465,6.105221981244221,0,9,3,-5.489391993536187,0,2,2,2019,6,0,40,50,1,0,0,.9833325559356084,.9833325559356084,0,0,0,0,0,0,0,0,0,0,62.81,36.34,54.74,57.22,8.333333333333334,1,1,0,0,10,11,2,1,737.5,363298.5473751511,0,176467.7081845229,0,444.7622897579024 -14944,18448,33621,33620,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,-20.48002145221864,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,62.81,36.34,8.333333333333334,1,1,0,0,0,11,2,1,737.5,363298.5473751511,0,176467.7081845229,0,444.7622897579024 -14944,18449,33622,-9,33621,33620,1,1,33,0,0,0,2,2,-9,0,4,4.941873270673831,4.955717460631599,0,0,0,-1030.371729379091,0,2,2,2019,6,0,60,50,1,0,1,.3250251183440119,.3250251183440119,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,11,2,1,316,-29867.27784109324,-2970.378273686386,0,0,-188.178030261939 -14945,18450,33623,33624,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.70580835926107,7.722756091157126,7,1,-33.50139932152143,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.062614847725313,7.752974904412441,59.88,42.66,42.36,56.12,6.666666666666667,1,1,0,0,4,12,3,1,847,1112226.919731746,516391.9479932393,245643.0200224062,0,3241.657815329241 -14945,18450,33624,33623,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.116382505196357,7.378064647310178,7,-1,-95.55454631404791,0,1,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.561200798877837,42.36,56.12,59.88,42.66,8.333333333333334,1,1,0,0,0,12,3,1,847,1112226.919731746,516391.9479932393,245643.0200224062,0,3241.657815329241 -14946,18451,33625,33626,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,17,-7,99.42400903932121,0,2,3,2019,11,1,0,50,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.97,35.1,34.81,44.78,10,1,1,0,0,6,5,3,1,894.2,617962.997662509,439378.1241501441,163730.2301311791,65563.80423705542,2821.831192434805 -14946,18451,33626,33625,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,8.855915534425787,8.591319414653935,0,17,7,38.18571301040248,0,3,3,2019,25,11,53,47,1,11,0,13.40749581186021,13.40749581186021,0,0,0,0,0,1,1,0,0,0,34.81,44.78,46.97,35.1,5,1,1,0,0,8,5,3,1,894.2,617962.997662509,439378.1241501441,163730.2301311791,65563.80423705542,2821.831192434805 -14946,18451,33627,-9,33625,33626,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.6982706565781,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,894.2,617962.997662509,439378.1241501441,163730.2301311791,65563.80423705542,2821.831192434805 -14946,18451,33628,-9,33625,33626,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1002.808309378766,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,5,3,1,894.2,617962.997662509,439378.1241501441,163730.2301311791,65563.80423705542,2821.831192434805 -14946,18451,33629,-9,33625,33626,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.067165034088,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,894.2,617962.997662509,439378.1241501441,163730.2301311791,65563.80423705542,2821.831192434805 -14947,18452,33630,33631,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.315785841384742,7.343026361813509,0,29,1,14.48360494058025,0,3,3,2019,15,3,10,5,1,3,0,20.07477840463131,20.07477840463131,0,0,0,0,7,0,0,0,0,0,36.37,32.34,55.53,51.55,3.333333333333333,2,3,0,0,3,5,5,1,1968.5,485136.2617624319,89200.59875563052,318630.7347691486,0,5801.642022590559 -14947,18452,33631,33630,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.348910931214366,9.886538748242614,0,29,-1,55.12031989374036,0,3,3,2019,10,0,50,50,1,0,0,37.92762546398451,37.92762546398451,0,0,0,0,0,0,0,0,6.66215506080642,0,55.53,51.55,36.37,32.34,8.333333333333334,1,1,0,0,8,5,5,1,1968.5,485136.2617624319,89200.59875563052,318630.7347691486,0,5801.642022590559 -14948,18453,33632,33633,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,8,3,0,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.98,41.56,35.68,43.02,0,1,1,0,1,0,4,1,0,458,100541.2938924498,0,0,0,2064.470018670221 -14948,18453,33633,33632,-9,-9,1,1,45,0,0,0,3,3,-9,1,3,0,0,0,8,-3,0,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,35.68,43.02,25.98,41.56,5,1,1,0,1,0,4,1,0,458,100541.2938924498,0,0,0,2064.470018670221 -14949,18454,33634,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-898.0373940426521,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.52,35.3,-9,-9,5,1,1,1,0,7,1,1,1,142,0,0,0,0,270.1173995077501 -14950,18455,33635,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.152623200465222,6.89386546120151,0,0,-903.3198028116425,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.061124404502053,56.16,21.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,289,2036284.053835748,2091278.875971473,0,0,1102.567728004235 -14951,18456,33636,33637,-9,-9,1,0,62,0,0,0,2,2,0,0,4,0,0,0,10,-1,172.8224490109782,-9,3,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,24.26,51.38,8.333333333333334,1,1,0,0,9,11,4,1,450,1036485.193597318,709183.851842805,226067.2539035647,0,2199.001092641417 -14951,18456,33637,33636,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.521165818866828,8.478175017825192,6.744525978155631,10,1,62.69937293079511,0,3,3,2019,20,8,37,37,1,8,0,13.97617598267459,13.97617598267459,0,0,0,0,0,0,0,0,0,7.243399785367101,24.26,51.38,55.19,54.26,3.333333333333333,1,1,0,0,11,11,4,1,450,1036485.193597318,709183.851842805,226067.2539035647,0,2199.001092641417 -14952,18457,33638,33639,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.221967089605143,8.106105377217146,7.382449020329769,7,10,-120.1760500758649,0,2,3,2019,11,0,13,15,1,0,0,10.86460331435841,10.86460331435841,0,0,0,0,2,1,1,0,7.649942227488867,6.591014325425223,57.16,56.15,52,53,8.333333333333334,1,1,0,0,5,9,4,1,567.5,180654.2220401789,65527.8898191707,184847.6650095581,66804.30558765869,3480.075912885181 -14952,18457,33639,33638,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.363664242708066,7.469617334103546,0,7,-10,.747758445126903,0,-9,-9,2019,10,0,20,20,1,1,0,11.08967074624779,11.08967074624779,0,0,0,0,0,1,1,0,0,0,52,53,57.16,56.15,8,1,1,0,0,1,9,4,1,567.5,180654.2220401789,65527.8898191707,184847.6650095581,66804.30558765869,3480.075912885181 -14953,18458,33640,33641,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.958063278088822,8.225996052090526,32,5,129.6670404307943,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,8.073972052734224,67.19,37.81,43.87,22.69,6.666666666666667,1,1,0,0,7,8,4,1,603.5,1442002.312642911,703965.0089377653,661900.4222316605,0,2684.813999825083 -14953,18458,33641,33640,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,7.811790787728996,7.86008512370719,0,32,-5,-7.497908874359754,0,3,-9,2019,14,4,27,28,1,4,0,10.46066187470368,10.46066187470368,0,0,0,0,0,1,1,0,0,0,43.87,22.69,67.19,37.81,6.666666666666667,1,1,0,0,9,8,4,1,603.5,1442002.312642911,703965.0089377653,661900.4222316605,0,2684.813999825083 -14953,18459,33642,-9,33641,33640,1,0,28,0,0,0,2,2,-9,0,4,8.428667263837015,8.242535539110733,0,0,0,-1021.218173981623,0,3,2,2019,18,6,40,40,1,6,1,13.0692166033366,13.0692166033366,0,0,0,0,14.5,1,1,0,0,0,48.25,53.5,-9,-9,3.333333333333333,1,1,0,0,6,8,4,1,308,-18351.54243467639,34473.53537881788,0,0,1427.035096739812 -14953,18460,33643,-9,33641,33640,1,1,25,0,0,0,2,2,-9,0,4,8.75352564978213,8.44668597815842,0,0,0,-961.8273227111284,0,2,2,2019,7,0,38,34,1,0,1,18.52353237165665,18.52353237165665,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,375,77602.44485950359,-38881.62535447581,0,0,2257.154365529055 -14954,18461,33644,33645,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.248077879551781,8.993013767700798,0,1,-2,44.31024367331217,-9,-9,-9,2019,10,0,40,0,1,1,0,23.65223153139334,23.65223153139334,0,0,0,0,0,1,1,0,0,0,52,48,46.79,41.89,7,2,3,0,0,9,8,5,1,638,738400.9259496916,394501.7529921641,368497.7843577692,0,4173.343825120308 -14954,18461,33645,33644,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.286681820834882,5.323056261074132,1,2,60.30905082367418,-9,3,2,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.818154201772004,5.509817534996446,46.79,41.89,52,48,6.666666666666667,2,3,0,0,0,8,5,1,638,738400.9259496916,394501.7529921641,368497.7843577692,0,4173.343825120308 -14955,18462,33646,33647,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.083689188899307,6.906438623263458,9,3,-32.22224260181516,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.337575504200413,6.991412822308674,54.61,49.13,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,510.5,1091257.334333038,362761.5596588614,405082.8948906269,0,3138.084106078476 -14955,18462,33647,33646,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.135586268356995,7.339853737583315,9,-3,-114.9681121163549,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.12358635023556,7.210885190047516,54.2,57.49,54.61,49.13,8.333333333333334,1,1,0,0,2,9,3,1,510.5,1091257.334333038,362761.5596588614,405082.8948906269,0,3138.084106078476 -14956,18463,33648,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.697619404594152,7.044843626707421,0,0,-1148.47733137043,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,1.633079662276884,0,0,1,1,0,0,7.01221311681978,61.82,39.58,-9,-9,10,1,1,0,0,0,12,2,1,268,67354.11417876788,142113.1321332488,-21716.08784674543,0,1083.922441657147 -14957,18464,33649,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,2.919795040715682,2.859699976461943,0,0,-982.7226426978209,0,2,2,2019,8,1,0,31,3,1,0,0,0,0,0,0,0,0,1,0,1,2.322001487045837,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,1,8,2,2,0,1090,148540.7529042876,57215.07883029551,0,0,490.4210340668065 -14958,18465,33650,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.24963469555124,7.924109520168228,0,0,0,-905.2975741710904,0,2,2,2019,11,0,40,51,1,0,0,8.910873339243199,8.910873339243199,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,6,2,4,1,678,165768.1105454749,293127.3235982199,0,0,1172.747154059957 -14959,18466,33651,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.168689933768666,8.419054087292951,0,0,0,-1038.073934436444,-9,-9,-9,2019,8,0,50,0,1,0,0,6.342449760774596,6.342449760774596,0,0,0,0,0,0,0,0,0,0,57.63,45.09,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,405,38331.94414375094,0,0,0,1051.218985727033 -14960,18467,33652,33653,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.878510101254821,7.866046014765312,35,3,103.5233255533837,0,3,3,2019,6,0,0,36,4,0,0,0,0,0,0,0,0,74.5,1,1,0,5.883211444931174,7.81091936021811,62.49,55.09,43.93,28.74,6.666666666666667,1,1,0,0,11,13,4,1,287.5,4614365.279921029,3502035.768549243,544195.7325956221,0,3358.047743871245 -14960,18467,33653,33652,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,0,7.572914450455132,7.76921928696285,10,-3,-47.94295860803402,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.716135234021212,8.008365522966427,43.93,28.74,62.49,55.09,5,1,1,0,0,0,13,4,1,287.5,4614365.279921029,3502035.768549243,544195.7325956221,0,3358.047743871245 -14960,18468,33654,-9,33653,33652,1,1,29,0,0,0,2,2,-9,0,3,8.628996975916033,8.362644769781275,0,0,0,-952.0722802517496,0,1,1,2019,12,0,38,38,1,0,1,16.81318666727047,16.81318666727047,0,0,0,0,2,1,1,0,8.265109482060771,0,51.56,48.12,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,535,-83527.73101414154,99996.33602488654,0,0,3841.787820993085 -14960,18469,33655,-9,33653,33652,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1042.527858836418,-9,1,1,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.779946933043849,0,57.06,57.76,-9,-9,10,1,1,0,0,2,13,1,1,1123,-170059.9809222968,0,0,0,-48.69414743900992 -14961,18470,33656,33657,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.511452439156924,6.280717512294366,8,6,-202.1057346510724,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.729924167769394,6.703674195823986,57.06,57.76,43.14,37.06,8.333333333333334,1,1,0,0,0,7,2,1,1118.5,133327.3862064107,57940.32785481919,37964.14146650468,9897.466690832103,881.4116438546254 -14961,18470,33657,33656,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.113359255803911,4.044836560478839,8,-6,156.6504813217742,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,124.6643029790381,0,1166.193582280448,0,1,1,0,4.129729205414448,4.014250522610785,43.14,37.06,57.06,57.76,6.666666666666667,1,1,0,0,7,7,2,1,1118.5,133327.3862064107,57940.32785481919,37964.14146650468,9897.466690832103,881.4116438546254 -14962,18471,33658,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.886704856616932,8.639799969919325,0,0,0,-940.4890870766925,0,2,3,2019,17,6,40,55,1,6,0,17.47056086876383,17.47056086876383,0,0,0,0,0,0,0,0,4.058893991122912,0,37.25,41.19,-9,-9,3.333333333333333,1,1,0,0,10,11,5,1,238,-128583.1434067787,48550.95582605935,139388.4393274428,75875.15095692799,2393.514195897173 -14962,18472,33659,-9,33658,-9,1,0,25,0,0,0,2,2,-9,0,4,8.193725700873028,8.064691773152294,0,0,0,-1034.575221237371,0,1,-9,2019,20,7,41,40,1,7,1,10.30619450201964,10.30619450201964,0,0,0,0,0,0,0,0,0,0,46.05,55.69,-9,-9,3.333333333333333,1,1,0,0,8,11,4,1,221,57722.29696942116,-130893.7640817722,0,0,903.5430632831619 -14963,18473,33660,33661,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.943260012766856,7.639689128261008,57,0,-7.358126108299683,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,3.429168231525482,0,0,1,1,0,7.674213848197041,7.928153602824049,52.82,21.81,61.01,53.18,8.333333333333334,1,1,0,0,0,10,4,1,515.5,1167486.843126215,990219.479839384,95114.77279585459,0,5166.443338354758 -14963,18473,33661,33660,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,7.711034696201593,7.971377736686854,57,0,32.16228707353905,0,-9,3,2019,3,0,0,0,4,0,0,0,0,1,0,3.321968383122913,0,2,1,1,0,2.454807928857694,7.81415919287347,61.01,53.18,52.82,21.81,10,1,1,0,0,0,10,4,1,515.5,1167486.843126215,990219.479839384,95114.77279585459,0,5166.443338354758 -14964,18474,33662,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.115020156152241,7.94111544808805,0,0,0,-1003.210280965562,0,-9,-9,2019,12,0,38,35,1,0,0,9.039265723780918,9.039265723780918,0,0,0,0,0,0,0,0,2.546258783670547,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,520,423199.2242776909,0,0,0,900.1385546435383 -14965,18475,33663,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.304233196913177,8.187175087290408,0,0,-1048.808136507035,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.385301649713353,8.074993865723073,59.55,38.61,-9,-9,6.666666666666667,1,1,0,0,2,13,4,0,461,406961.9432210248,91769.6422962332,118517.6444917981,0,1228.826723964587 -14966,18476,33664,33665,-9,-9,1,1,37,0,1,0,1,1,-9,0,2,8.454477847380543,8.235021536198616,0,11,4,98.34013232702561,0,3,1,2019,16,4,39,39,1,4,0,13.31551438333606,13.31551438333606,0,0,0,0,0,1,1,0,0,0,36.76,49.7,50.11,54.04,6.666666666666667,2,3,0,0,9,8,3,0,931.3333333333334,128978.9213177947,6277.106826160797,0,0,2683.04557800043 -14966,18476,33665,33664,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,6.267438638969679,6.211935728253001,0,11,-4,172.6074832084046,0,3,2,2019,13,1,8,8,1,1,0,8.890244337566488,8.890244337566488,0,0,0,0,0,1,1,0,0,0,50.11,54.04,36.76,49.7,8.333333333333334,2,3,0,0,9,8,3,0,931.3333333333334,128978.9213177947,6277.106826160797,0,0,2683.04557800043 -14966,18476,33666,-9,33665,33664,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.7086948206015,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,931.3333333333334,128978.9213177947,6277.106826160797,0,0,2683.04557800043 -14967,18477,33667,33668,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.168889218611886,7.401697812250065,0,6,2,-58.63058603852578,0,3,2,2019,12,0,27,25,1,0,0,6.045521935467597,6.045521935467597,0,0,0,0,0,1,1,0,0,0,50.58,52.43,61.26,51.57,1.666666666666667,1,1,0,0,7,9,4,0,233.3333333333333,127808.1680603591,0,214895.9902121957,115280.7443899217,2483.455569529242 -14967,18477,33668,33667,-9,-9,1,1,37,0,1,0,3,3,-9,0,4,8.526413966300575,8.439848070258943,0,6,-2,162.9611881836889,0,-9,-9,2019,9,0,42,48,1,0,0,16.16451046172606,16.16451046172606,0,0,0,0,0,1,1,0,0,0,61.26,51.57,50.58,52.43,8.333333333333334,1,1,0,0,8,9,4,0,233.3333333333333,127808.1680603591,0,214895.9902121957,115280.7443899217,2483.455569529242 -14967,18477,33669,-9,33667,33668,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.1774165567906,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,233.3333333333333,127808.1680603591,0,214895.9902121957,115280.7443899217,2483.455569529242 -14968,18478,33670,-9,33672,33671,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.958740107831,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,1180,388535.8540168729,325793.5109711342,609059.3971354746,470466.5731359255,6946.844885199949 -14968,18478,33671,33672,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.571998478847435,9.629304171052597,0,9,0,-203.327952243471,0,2,2,2019,7,0,40,40,1,0,0,43.67079271626461,43.67079271626461,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,1180,388535.8540168729,325793.5109711342,609059.3971354746,470466.5731359255,6946.844885199949 -14968,18478,33672,33671,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.925457098818631,8.549162150204804,0,9,0,57.70892100810954,0,1,1,2019,6,0,35,35,1,0,0,21.35683978625569,21.35683978625569,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,10,12,5,1,1180,388535.8540168729,325793.5109711342,609059.3971354746,470466.5731359255,6946.844885199949 -14968,18478,33673,-9,33672,33671,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.3731441607723,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,5,1,1180,388535.8540168729,325793.5109711342,609059.3971354746,470466.5731359255,6946.844885199949 -14969,18479,33674,33675,-9,-9,1,0,27,1,4,0,3,3,-9,0,4,0,0,0,6,-3,0,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,48,58,7,1,1,1,1,0,4,1,0,1352.4,25986.7618586285,0,0,0,2003.563647811964 -14969,18479,33675,33674,-9,-9,1,1,30,1,4,0,3,3,-9,0,4,0,0,0,6,3,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,46,58,7,1,1,1,1,3,4,1,0,1352.4,25986.7618586285,0,0,0,2003.563647811964 -14969,18479,33676,-9,33674,33675,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-812.9770752557999,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,1352.4,25986.7618586285,0,0,0,2003.563647811964 -14969,18479,33677,-9,33674,33675,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.1594796666029,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,1352.4,25986.7618586285,0,0,0,2003.563647811964 -14969,18479,33678,-9,33674,33675,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-885.5296466268761,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,1,0,1352.4,25986.7618586285,0,0,0,2003.563647811964 -14970,18480,33679,33680,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.661065654737971,8.524832565138063,5.108103021462871,8,0,39.19643830708702,0,-9,-9,2019,12,1,30,20,1,1,0,17.65652571690093,17.65652571690093,0,0,0,0,0,0,0,0,8.200015286100767,5.500934815093732,50.44,48.84,48.87,58.55,6.666666666666667,1,1,0,0,9,2,5,1,690.5,994660.8411323922,872272.3774431155,124425.6196953549,0,3755.630425308538 -14970,18480,33680,33679,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.915309852444618,7.877274957619478,0,43,0,-63.20445148511208,0,3,1,2019,18,6,20,20,1,6,0,14.96865405722049,14.96865405722049,0,0,0,0,0,0,0,0,6.130666316571316,0,48.87,58.55,50.44,48.84,6.666666666666667,1,1,0,0,9,2,5,1,690.5,994660.8411323922,872272.3774431155,124425.6196953549,0,3755.630425308538 -14971,18481,33681,33682,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.663776488873552,9.822775268729085,0,7,0,84.22197251305796,0,2,2,2019,7,0,37,40,1,0,0,43.99283799433336,43.99283799433336,0,0,0,0,0,1,1,0,2.20295069457954,0,57.16,56.15,64.28,43.47,8.333333333333334,1,1,0,0,8,5,5,1,1114.5,7647375.048384283,1117051.281159193,1068320.508324855,0,10910.78137911638 -14971,18481,33682,33681,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,8.857346571914318,8.879417193776883,7,9,-54.33554640493085,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.134568821886039,8.881450466309104,64.28,43.47,57.16,56.15,8.333333333333334,1,1,0,0,6,5,5,1,1114.5,7647375.048384283,1117051.281159193,1068320.508324855,0,10910.78137911638 -14971,18482,33683,-9,33681,33682,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-935.1567070713052,1,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.4278476202600972,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,1,1,235,60898.65555019366,0,0,0,-89.05933776785164 -14972,18483,33684,-9,33685,-9,1,1,36,0,0,0,2,2,-9,0,4,0,0,0,0,0,-920.4891436743295,0,3,-9,2019,27,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,51,57,-9,-9,1.666666666666667,3,4,1,1,1,8,1,0,287,-117919.5444816958,0,0,0,478.2563453915737 -14972,18484,33685,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,0,0,-897.8415042714905,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.24,36.49,-9,-9,6.666666666666667,3,4,1,1,0,8,1,0,2274,61390.23799776459,0,0,0,-189.8204432816891 -14973,18485,33686,33687,-9,-9,1,0,31,0,1,0,2,2,-9,0,2,7.510928714600564,7.229395034581461,0,2,-8,79.6597115122342,0,-9,-9,2019,13,3,30,30,1,3,0,6.806718344486614,6.806718344486614,0,0,0,0,0,1,1,0,0,0,36.25,37.85,54.1,59.11,1.666666666666667,1,1,0,0,5,1,5,1,651.6666666666666,28542.60295192659,-17640.39242819204,127621.0036109616,101021.0157314072,4182.289665765795 -14973,18485,33687,33686,-9,-9,1,1,39,0,1,0,1,1,-9,0,5,9.142408810143143,9.182398748592925,0,2,8,53.89194835213158,0,3,3,2019,6,0,38,42,1,0,0,21.52705256789957,21.52705256789957,0,0,0,0,0,1,1,0,6.605750940530252,0,54.1,59.11,36.25,37.85,6.666666666666667,1,1,0,0,8,1,5,1,651.6666666666666,28542.60295192659,-17640.39242819204,127621.0036109616,101021.0157314072,4182.289665765795 -14973,18485,33688,-9,33686,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.864831313917,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,1,5,1,651.6666666666666,28542.60295192659,-17640.39242819204,127621.0036109616,101021.0157314072,4182.289665765795 -14974,18486,33689,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.043939075535212,8.138282378944421,0,0,0,-913.6247557117999,0,2,3,2019,8,0,48,48,1,0,0,7.593956211719327,7.593956211719327,0,0,0,.6890905112569303,0,0,0,0,6.386919310336784,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,13,4,1,1001,249060.9329680256,104638.7241274538,179842.7958169729,0,1718.80086144164 -14975,18487,33690,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.31825825502467,6.273766620246838,0,0,-903.6590864396628,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.339988630417231,6.659944531832917,44.32,40.91,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,900,420653.3364212431,4551.303461330048,0,0,921.0802259734501 -14976,18488,33691,33692,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.441550848757941,7.533745430669235,0,7,-8,83.02213294159957,0,-9,-9,2019,8,0,34,35,1,0,0,7.598297625939731,7.598297625939731,0,0,0,0,2,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,997,1762918.195285138,735175.6264928172,655692.7600617458,0,2714.255910225333 -14976,18488,33692,33691,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.535235553993267,8.617995446056446,4.64594034155488,7,8,-49.84047890247445,0,3,3,2019,8,0,38,43,1,0,0,11.88989412394551,11.88989412394551,0,0,0,0,0,0,0,0,3.668611167812864,4.590275070971765,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,8,9,4,1,997,1762918.195285138,735175.6264928172,655692.7600617458,0,2714.255910225333 -14976,18489,33693,-9,33691,33692,1,1,27,0,0,0,1,1,-9,0,4,8.202037373692141,8.285452412751518,0,0,0,-1046.461528745013,0,3,3,2019,11,0,39,0,1,0,1,10.35030776557502,10.35030776557502,0,0,0,0,0,0,0,0,4.535455407294479,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,850,77990.6410466394,4173.858827199785,0,0,778.8964339941062 -14976,18490,33694,-9,33691,33692,1,1,25,0,0,0,1,1,-9,0,3,7.722790709153753,7.332977059751238,0,0,0,-975.7975614834755,0,2,2,2019,15,4,33,12,1,4,1,5.131886650052246,5.131886650052246,0,0,0,0,0,0,0,0,0,0,24.09,61.92,-9,-9,5,1,1,0,0,1,9,3,1,99,-205479.5015337459,0,0,0,997.1966043832148 -14977,18491,33695,33696,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.390162998976658,8.432431080888087,0,6,9,48.14581542025201,0,2,2,2019,15,4,41,41,1,4,0,15.01300439004584,15.01300439004584,0,0,0,0,7,0,0,0,0,0,31.87,43.4,47.75,53.7,3.333333333333333,1,1,0,0,8,4,4,1,790,288764.8191452334,36651.08241222643,84631.50834966097,0,2110.688779957738 -14977,18491,33696,33695,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.213149782001445,6.021050641601567,0,6,0,-40.64407791368442,0,1,1,2019,11,0,60,60,1,0,0,.8333732873601502,.8333732873601502,0,0,0,0,0,0,0,0,0,0,47.75,53.7,31.87,43.4,3.333333333333333,1,1,0,0,6,4,4,1,790,288764.8191452334,36651.08241222643,84631.50834966097,0,2110.688779957738 -14978,18492,33697,-9,-9,33698,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.6274262690529,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,582.5,305046.1562216211,127019.9742299357,294162.9750420956,0,1003.555570403666 -14978,18492,33698,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.243137841633835,7.307566952093921,0,0,0,-988.9675798664923,0,3,3,2019,9,0,60,50,1,0,0,3.048230781870124,3.048230781870124,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,4,2,1,582.5,305046.1562216211,127019.9742299357,294162.9750420956,0,1003.555570403666 -14979,18493,33699,-9,33701,33702,1,1,22,0,1,0,2,2,-9,0,4,8.033007551388973,7.876348789310457,0,0,0,-906.1016860884837,-9,2,2,2019,9,0,39,0,1,0,1,7.458054642275808,7.458054642275808,0,0,0,0,0,1,1,0,0,0,43.96,62.06,-9,-9,10,1,1,0,0,1,2,4,1,538,115369.2532413075,42691.53730580663,0,0,374.0758985019303 -14979,18494,33700,-9,33701,33702,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-1090.070387571882,-9,2,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,1.945540178764267,0,28.28,54.63,-9,-9,3.333333333333333,1,1,0,1,4,2,1,1,634,206019.5146069457,0,0,0,-425.8598849131969 -14979,18495,33701,33702,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.998452389118172,7.888013312577287,0,7,11,-85.57625851752982,0,-9,-9,2019,15,3,25,32,1,3,0,12.42019368110099,12.42019368110099,0,0,0,0,0,1,1,0,0,0,45.56,60.26,44.67,43.17,8.333333333333334,1,1,0,0,12,2,4,1,983.3333333333334,115894.2385246233,105782.8154425091,111588.3745176781,82149.8685756167,2689.788816428101 -14979,18495,33702,33701,-9,-9,1,1,35,0,1,0,2,2,-9,0,2,8.082827787212404,7.862225351821532,0,7,-11,-60.89103936678966,0,2,-9,2019,12,0,45,45,1,0,0,9.84429967375657,9.84429967375657,0,0,0,0,0,1,1,0,0,0,44.67,43.17,45.56,60.26,1.666666666666667,1,1,0,0,10,2,4,1,983.3333333333334,115894.2385246233,105782.8154425091,111588.3745176781,82149.8685756167,2689.788816428101 -14979,18495,33703,-9,33701,33702,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1024.441078626027,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,4,1,983.3333333333334,115894.2385246233,105782.8154425091,111588.3745176781,82149.8685756167,2689.788816428101 -14980,18496,33704,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,4.470666765743971,4.422320105486726,0,0,-1142.185295254164,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.374819395483266,43.39,45.28,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,1140,-44969.81906828735,37111.03766382913,0,0,883.6231515008959 -14981,18497,33705,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.692544197915192,5.518135506075152,0,0,-1070.273878361606,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.003485140826792,5.279166953718745,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,160,669635.7556961941,150518.1723109084,441594.0932010957,0,1315.111175527837 -14982,18498,33706,33707,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.845816099718674,6.621691164645817,55,3,-24.2167663941985,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.426503499747267,6.468622321070822,57.17,48.12,59.88,48.04,8.333333333333334,1,1,0,1,0,5,2,1,333,141460.1255583323,227197.7502868845,75203.65155901777,0,1498.820214271208 -14982,18498,33707,33706,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,55,-3,97.27122416247596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.560891298195641,0,59.88,48.04,57.17,48.12,8.333333333333334,1,1,0,0,0,5,2,1,333,141460.1255583323,227197.7502868845,75203.65155901777,0,1498.820214271208 -14983,18499,33708,33709,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,8.483819696882685,8.60315869256033,0,3,2,5.570410917406022,0,-9,-9,2019,21,8,50,50,1,8,0,11.50535794512774,11.50535794512774,0,0,0,0,0,1,1,0,0,0,35.22,56.72,46.16,36.4,3.333333333333333,1,1,0,0,2,5,4,1,1051.666666666667,62497.4509277838,-12825.64056135332,127554.2608446399,112533.2960367584,2631.922304497324 -14983,18499,33709,33708,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,5.933828895300485,5.790353027702627,0,3,-2,66.15823133806524,0,2,1,2019,18,5,20,0,1,5,0,2.466830939777185,2.466830939777185,0,0,0,0,0,1,1,0,0,0,46.16,36.4,35.22,56.72,8.333333333333334,1,1,0,0,7,5,4,1,1051.666666666667,62497.4509277838,-12825.64056135332,127554.2608446399,112533.2960367584,2631.922304497324 -14983,18499,33710,-9,33709,33708,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.92276832792,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1051.666666666667,62497.4509277838,-12825.64056135332,127554.2608446399,112533.2960367584,2631.922304497324 -14984,18500,33711,33712,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.68303240419301,7.70779100429067,47,-2,179.6548709120534,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,7.659803406483582,58.58,22.16,60.12,54.8,8.333333333333334,1,1,0,0,0,7,3,1,201.5,1113571.617258222,374077.7998203946,383462.82666128,0,2589.572286201913 -14984,18500,33712,33711,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.998547316324746,7.192203833976381,47,2,51.59135032200189,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.851126094414648,7.223107531063099,60.12,54.8,58.58,22.16,8.333333333333334,1,1,0,0,7,7,3,1,201.5,1113571.617258222,374077.7998203946,383462.82666128,0,2589.572286201913 -14985,18501,33713,-9,33714,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.935032544709,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,384,68800.02323821792,24940.76134453723,356220.736741853,185875.3912661677,1380.4016924994 -14985,18501,33714,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,8.255769961107468,8.049929647817519,0,0,0,-1026.453866248697,-9,2,2,2019,12,2,30,0,1,2,0,11.98626285938543,11.98626285938543,0,0,0,0,0,1,1,0,.5505920156903995,0,37.59,51.65,-9,-9,1.666666666666667,1,1,0,0,9,9,3,1,384,68800.02323821792,24940.76134453723,356220.736741853,185875.3912661677,1380.4016924994 -14986,18502,33715,33716,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.074500709004257,7.740020891601668,0,6,-4,4.994209142792441,0,2,3,2019,8,0,35,32,1,0,0,8.392557063525141,8.392557063525141,0,0,0,0,0,1,1,0,0,0,51.33,53.17,51.77,58.57,8.333333333333334,1,1,0,0,6,13,4,1,386,357301.995625872,161475.8370178289,160928.2300602397,0,3269.51079410053 -14986,18502,33716,33715,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.112691913649533,7.644987190822485,6,4,-65.46737519851307,0,3,3,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,.8698342873977325,7.85110885765,51.77,58.57,51.33,53.17,8.333333333333334,1,1,0,0,5,13,4,1,386,357301.995625872,161475.8370178289,160928.2300602397,0,3269.51079410053 -14987,18503,33717,33719,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.508741249772248,7.73841623638083,0,9,0,195.619642477482,0,2,3,2019,10,0,20,50,1,0,0,10.35548478811675,10.35548478811675,0,0,0,0,0,1,1,0,0,0,57.9,51.84,30.35,42.82,6.666666666666667,1,1,0,0,8,9,2,1,651,1385.149188901842,87763.48469282886,0,0,2487.430528833803 -14987,18503,33718,-9,33717,33719,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1104.941733539597,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,2,1,651,1385.149188901842,87763.48469282886,0,0,2487.430528833803 -14987,18503,33719,33717,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,6.830527376093727,7.159877465962918,0,9,0,94.32163811302919,0,-9,3,2019,16,5,40,45,1,5,0,3.035583654052686,3.035583654052686,0,0,0,0,0,1,1,0,7.906528318506814,0,30.35,42.82,57.9,51.84,8.333333333333334,1,1,0,0,11,9,2,1,651,1385.149188901842,87763.48469282886,0,0,2487.430528833803 -14987,18503,33720,-9,33717,33719,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1110.529362224978,-9,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,1,0,1,9,2,1,651,1385.149188901842,87763.48469282886,0,0,2487.430528833803 -14988,18504,33721,33722,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,9.01650893710346,9.129998065960566,0,7,-4,-46.66791773917054,0,1,2,2019,20,8,38,37,1,8,0,23.64365891550953,23.64365891550953,0,0,0,0,7,0,0,0,2.973029132117073,0,29.56,44.89,31.98,58.41,3.333333333333333,1,1,0,1,6,9,5,1,709.5,2311945.672140851,1153817.070999356,684057.7590268783,0,2845.204894349662 -14988,18504,33722,33721,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.394364370058723,7.493719195817692,0,7,4,24.48699604337776,0,3,3,2019,24,9,54,60,1,9,0,3.37841992978526,3.37841992978526,0,0,0,0,0,0,0,0,0,0,31.98,58.41,29.56,44.89,3.333333333333333,1,1,0,1,9,9,5,1,709.5,2311945.672140851,1153817.070999356,684057.7590268783,0,2845.204894349662 -14989,18505,33723,33724,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,47,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.94,41.95,33.92,37.38,10,1,1,0,0,0,9,1,0,590.5,-153015.5207803824,0,0,0,1141.528780138223 -14989,18505,33724,33723,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,.5100918886448262,0,1,1,0,0,0,33.92,37.38,59.94,41.95,1.666666666666667,1,1,0,0,0,9,1,0,590.5,-153015.5207803824,0,0,0,1141.528780138223 -14990,18506,33725,33728,-9,-9,1,1,33,0,2,0,2,2,-9,1,3,8.2457396573841,8.352390077180095,0,6,1,-49.45683375606556,0,3,2,2019,14,2,43,38,1,2,0,10.07127084892261,10.07127084892261,0,0,0,0,0,1,1,0,0,0,38.51,59.43,33.07,57.08,6.666666666666667,1,1,0,0,7,5,4,1,503.25,-50676.00417064281,0,166100.2755522188,126262.7561581425,3398.166029843973 -14990,18506,33726,-9,33728,33725,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.327818933944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,503.25,-50676.00417064281,0,166100.2755522188,126262.7561581425,3398.166029843973 -14990,18506,33727,-9,33728,33725,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.7612693429542,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,503.25,-50676.00417064281,0,166100.2755522188,126262.7561581425,3398.166029843973 -14990,18506,33728,33725,-9,-9,1,0,32,0,2,0,2,2,-9,1,2,7.631206957918051,7.594607260520021,0,6,-1,66.86032139932981,0,-9,-9,2019,23,11,32,15,1,11,0,8.099989116855646,8.099989116855646,0,0,0,0,0,1,1,0,0,0,33.07,57.08,38.51,59.43,5,1,1,0,0,7,5,4,1,503.25,-50676.00417064281,0,166100.2755522188,126262.7561581425,3398.166029843973 -14991,18507,33729,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.489583716610611,8.401922937484638,0,0,0,-999.3621284986012,-9,-9,-9,2019,10,1,26,0,1,1,0,22.21123983419579,22.21123983419579,0,0,0,0,0,0,0,0,.5961973208553224,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,13,12,5,0,1037,85435.43133442185,194189.0094889993,0,0,1792.984216732209 -14992,18508,33730,33731,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.288661654993609,8.111165811272441,0,7,-2,114.4208537879801,0,2,2,2019,14,5,43,45,1,5,0,7.307540097700651,7.307540097700651,0,0,0,0,0,0,0,0,0,0,43.26,55.59,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,0,173,14462.81335889133,-49633.76948817607,233323.7745877726,156111.9286805756,3472.943958921474 -14992,18508,33731,33730,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.900001262728229,8.158415136935064,0,7,2,-47.44344925093802,0,2,-9,2019,1,0,40,43,1,0,0,9.709390980992612,9.709390980992612,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.26,55.59,8.333333333333334,1,1,0,0,6,9,4,0,173,14462.81335889133,-49633.76948817607,233323.7745877726,156111.9286805756,3472.943958921474 -14993,18509,33732,33733,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.82705460759545,9.004831006352486,0,41,3,15.43327503799809,0,3,3,2019,13,1,24,40,1,1,0,51.36101274302033,51.36101274302033,0,0,0,0,0,0,0,0,0,0,46.49,47.89,47.95,56.13,6.666666666666667,1,1,0,0,11,10,5,1,1095.5,2112834.254560876,1665245.591307802,248936.4781721364,0,2716.548189133421 -14993,18509,33733,33732,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,41,-3,35.13249670227622,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.95,56.13,46.49,47.89,8.333333333333334,1,1,1,0,8,10,5,1,1095.5,2112834.254560876,1665245.591307802,248936.4781721364,0,2716.548189133421 -14994,18510,33734,33735,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.286546588370586,7.071572330001257,5.210089105910511,39,7,-25.1829573428186,0,2,3,2019,12,0,24,24,1,0,0,8.065690293455557,8.065690293455557,0,0,0,0,2,1,1,0,4.840866001543064,5.219639820287996,57.24,41.16,54.2,57.49,8.333333333333334,1,1,0,0,9,6,4,1,748.5,604375.057614177,614033.2672274292,59065.34887229939,53962.47047184524,2559.976821765484 -14994,18510,33735,33734,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.895337920141,7.686371137454696,6.089926569099054,39,-7,-108.4412536893813,0,2,2,2019,12,0,24,24,1,0,0,12.01210315370746,12.01210315370746,0,0,0,0,2,1,1,0,4.318261749155522,6.621025040713405,54.2,57.49,57.24,41.16,8.333333333333334,1,1,0,0,9,6,4,1,748.5,604375.057614177,614033.2672274292,59065.34887229939,53962.47047184524,2559.976821765484 -14995,18511,33736,33737,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,7.133731583851831,6.922198400502504,0,31,5,66.09467731790903,0,2,2,2019,22,7,22,23,1,7,0,6.937890767144879,6.937890767144879,0,0,0,0,0,0,0,0,0,0,42.45,12.16,54.22,41.57,1.666666666666667,1,1,0,1,8,10,4,1,441,198824.7886634759,63202.79393973757,319113.4129400408,0,2310.837378432248 -14995,18511,33737,33736,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.364143074213503,8.144738457988705,0,31,-5,37.07347563526763,0,2,2,2019,15,3,38,42,1,3,0,11.48773936894214,11.48773936894214,0,0,0,0,27,0,0,0,0,0,54.22,41.57,42.45,12.16,3.333333333333333,1,1,0,1,9,10,4,1,441,198824.7886634759,63202.79393973757,319113.4129400408,0,2310.837378432248 -14996,18512,33738,33739,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-145.5322216788047,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,62.03,41.71,8,1,1,0,0,0,7,3,1,1172.5,1060628.158307249,191018.9635895542,699163.4621361056,0,3754.928629394263 -14996,18512,33739,33738,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,8.595045333945032,8.178623664059003,67,2,41.2675122421301,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.267015705521138,8.214449539986516,62.03,41.71,53,44,8.333333333333334,1,1,0,0,6,7,3,1,1172.5,1060628.158307249,191018.9635895542,699163.4621361056,0,3754.928629394263 -14996,18513,33740,-9,33738,33739,1,1,62,0,0,0,2,2,-9,0,3,8.739244175740852,8.158370276205645,0,0,0,-1059.638611571727,0,2,3,2019,10,0,40,55,1,1,0,12.48702856255468,12.48702856255468,0,0,0,0,0,1,1,0,2.802647820619718,0,51,48,-9,-9,7,1,1,0,0,1,7,4,1,653,208192.7347380514,112755.7661500952,94417.70023934649,0,1704.0337352498 -14997,18514,33741,-9,33742,33744,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.928893897938,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,516,217559.6621802123,167673.5645700316,209262.8344968786,152667.7622685792,4413.368140629984 -14997,18514,33742,33744,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.53998133682919,7.550361557790337,0,7,1,-42.81572533800323,0,3,2,2019,12,0,15,14,1,0,0,16.92117080155437,16.92117080155437,0,0,0,0,0,0,0,0,2.593121434374574,0,54.2,57.49,45.18,52.07,8.333333333333334,1,1,0,0,8,8,5,1,516,217559.6621802123,167673.5645700316,209262.8344968786,152667.7622685792,4413.368140629984 -14997,18514,33743,-9,33742,33744,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.9901700945031,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,516,217559.6621802123,167673.5645700316,209262.8344968786,152667.7622685792,4413.368140629984 -14997,18514,33744,33742,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,9.421813445599168,9.52129504644247,0,7,-1,182.2471033034454,0,2,1,2019,12,0,38,50,1,0,0,42.07243360671845,42.07243360671845,0,0,0,0,0,0,0,0,4.469240459429305,0,45.18,52.07,54.2,57.49,5,1,1,0,0,8,8,5,1,516,217559.6621802123,167673.5645700316,209262.8344968786,152667.7622685792,4413.368140629984 -14998,18515,33745,33746,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.811530509937043,8.719526919334241,0,8,3,119.0599531805094,0,2,1,2019,9,0,48,42,1,0,0,13.83835011124184,13.83835011124184,0,0,0,0,0,0,0,0,0,0,54.37,54.8,22.99,61.19,8.333333333333334,1,1,0,0,9,4,5,1,880,232519.699699625,42617.83590536057,158589.8505519953,36636.25938736427,3655.273832280586 -14998,18515,33746,33745,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.275091168268405,8.31049014367149,0,8,-3,-56.80325215198383,0,1,2,2019,27,11,42,42,1,11,0,11.47752197485855,11.47752197485855,0,0,0,0,0,0,0,0,.5270518769515842,0,22.99,61.19,54.37,54.8,6.666666666666667,1,1,0,0,9,4,5,1,880,232519.699699625,42617.83590536057,158589.8505519953,36636.25938736427,3655.273832280586 -14999,18516,33747,33748,-9,-9,1,1,60,1,1,0,2,2,-9,0,4,8.723007327953464,9.133676877555182,7.013934266476145,8,22,-123.0111176362064,0,3,3,2019,8,0,55,39,1,0,0,16.77084848823136,16.77084848823136,0,0,0,0,0,1,1,0,0,7.168494330589658,46.4,57.35,38.75,19.09,8.333333333333334,1,1,0,0,12,6,5,1,643,1483641.342560004,1236884.224661682,226426.4064500103,0,1933.588733109068 -14999,18516,33748,33747,-9,-9,1,0,38,1,1,0,2,2,-9,1,1,5.370650086438471,4.749642098874874,0,8,-22,-108.0646161355538,0,-9,-9,2019,17,3,6,12,1,3,0,2.547056675612403,2.547056675612403,0,0,0,0,0,1,1,0,0,0,38.75,19.09,46.4,57.35,0,1,1,0,0,7,6,5,1,643,1483641.342560004,1236884.224661682,226426.4064500103,0,1933.588733109068 -15000,18517,33749,33750,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,7.855000541616291,8.063138591579861,0,15,0,-16.59814242998459,0,3,3,2019,9,0,23,19,1,0,0,12.9044596307681,12.9044596307681,0,0,0,0,0,1,1,0,4.686151349496466,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,12,12,4,1,732.5,726654.9006506493,635223.359054447,189233.2665762558,99364.2901692976,3378.418249904459 -15000,18517,33750,33749,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.704451406878132,8.834761461137791,0,15,0,-131.3600583264517,0,2,2,2019,6,0,45,60,1,0,0,21.61754895999371,21.61754895999371,0,0,0,0,0,1,1,0,3.85570829501303,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,12,12,4,1,732.5,726654.9006506493,635223.359054447,189233.2665762558,99364.2901692976,3378.418249904459 -15000,18517,33751,-9,33749,33750,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.2085527096621,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,732.5,726654.9006506493,635223.359054447,189233.2665762558,99364.2901692976,3378.418249904459 -15000,18517,33752,-9,33749,33750,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.435978209851,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,732.5,726654.9006506493,635223.359054447,189233.2665762558,99364.2901692976,3378.418249904459 -15001,18518,33753,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,8.318446616368885,8.159027354576425,4.655087741680715,4,-1,-12.05493078653122,0,2,2,2019,14,2,37,37,1,2,0,10.78623586238068,10.78623586238068,0,0,0,0,0,1,1,0,5.464736220861779,0,32.14,57.05,40.73,61.29,8.333333333333334,1,1,0,0,6,5,4,0,519.5,969.0616926437942,148216.4201792831,0,0,1139.637461174368 -15001,18518,33754,-9,33753,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.23621521911,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,0,519.5,969.0616926437942,148216.4201792831,0,0,1139.637461174368 -15001,18519,33755,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,8.17000437269102,8.170995778375678,0,4,1,177.2789987831151,0,-9,-9,2019,24,12,42,43,1,12,0,9.126576303243695,9.126576303243695,0,0,0,0,0,1,1,0,0,0,40.73,61.29,32.14,57.05,5,1,1,0,0,5,5,4,0,1882,114756.1661836876,65531.3563342577,154725.6117232616,109082.7816209754,1398.945039004376 -15002,18520,33756,33757,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.890996853654358,6.899173170563616,49,-1,30.71539709459809,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.786574094030237,6.742056340788661,61.85,47.26,44.67,32.3,10,1,1,0,0,6,1,2,1,361.5,83517.83045724322,214386.4950591549,0,0,1830.926647147276 -15002,18520,33757,33756,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,49,1,-116.5700961962001,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,3.332306062073298,0,0,1,1,0,0,0,44.67,32.3,61.85,47.26,6.666666666666667,1,1,0,0,3,1,2,1,361.5,83517.83045724322,214386.4950591549,0,0,1830.926647147276 -15003,18521,33758,33759,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,7.708297190396989,7.857725730255547,0,2,-3,.5129069706843051,0,2,2,2019,7,0,23,20,1,0,0,12.74598393782466,12.74598393782466,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,6.666666666666667,1,1,0,0,7,4,3,0,373,-70160.26302528303,-57837.77729848052,0,0,2026.112712833028 -15003,18521,33759,33758,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.270642915658208,7.239610676500022,0,2,3,-17.68963122201478,0,-9,-9,2019,9,0,45,0,1,0,0,3.658518172997372,3.658518172997372,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,3.333333333333333,2,3,0,0,1,4,3,0,373,-70160.26302528303,-57837.77729848052,0,0,2026.112712833028 -15004,18522,33760,-9,33762,33761,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.223432269535,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,781.5,802024.6703312183,523432.9522429139,406465.8024773537,29726.77040433894,2265.981641684029 -15004,18522,33761,33762,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.875330416328325,8.062434003808988,0,8,1,73.11744046930566,0,2,2,2019,9,0,40,40,1,1,0,6.003804460293452,6.003804460293452,0,0,0,0,0,1,1,0,0,0,51,56,49.93,56.91,8,1,1,0,0,1,2,3,0,781.5,802024.6703312183,523432.9522429139,406465.8024773537,29726.77040433894,2265.981641684029 -15004,18522,33762,33761,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,6.401339319306182,6.735722761301981,0,8,-1,61.69079356029358,0,3,2,2019,10,2,8,6,1,2,0,13.63821941617957,13.63821941617957,0,0,0,0,0,1,1,0,0,0,49.93,56.91,51,56,8.333333333333334,1,1,0,0,5,2,3,0,781.5,802024.6703312183,523432.9522429139,406465.8024773537,29726.77040433894,2265.981641684029 -15004,18522,33763,-9,33762,33761,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.340369921998,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,781.5,802024.6703312183,523432.9522429139,406465.8024773537,29726.77040433894,2265.981641684029 -15005,18523,33764,-9,33767,33768,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.3688730866874,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,522.6,58217.28672759594,87741.83113466279,171432.1637905065,90519.6476599584,3048.933250027035 -15005,18523,33765,-9,33767,33768,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-886.4307761315918,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,522.6,58217.28672759594,87741.83113466279,171432.1637905065,90519.6476599584,3048.933250027035 -15005,18523,33766,-9,33767,33768,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.756017658147,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,522.6,58217.28672759594,87741.83113466279,171432.1637905065,90519.6476599584,3048.933250027035 -15005,18523,33767,33768,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,7.481555789975799,7.479318680744299,0,11,-1,-54.68782571554946,0,2,2,2019,8,1,13,17,1,1,0,17.10239477289517,17.10239477289517,0,0,0,0,0,1,1,0,0,0,56.72,49.75,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,522.6,58217.28672759594,87741.83113466279,171432.1637905065,90519.6476599584,3048.933250027035 -15005,18523,33768,33767,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.616575175775392,8.881217170913578,0,11,1,7.58575207200525,0,2,2,2019,10,0,42,42,1,0,0,16.21786600230371,16.21786600230371,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.72,49.75,8.333333333333334,1,1,0,0,11,13,4,1,522.6,58217.28672759594,87741.83113466279,171432.1637905065,90519.6476599584,3048.933250027035 -15006,18524,33769,-9,33770,33771,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1083.601297921633,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,5,1,635.75,1801564.587117885,913114.4590188318,736552.521347774,124122.5724998612,6316.081859533565 -15006,18524,33770,33771,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.437921531182326,8.484225632061714,0,23,3,.9837279214052637,0,2,3,2019,9,0,39,40,1,0,0,14.89046423443218,14.89046423443218,0,0,0,0,0,0,0,0,5.097981977981046,0,49.69,52.99,54.1,59.11,8.333333333333334,1,1,0,0,9,8,5,1,635.75,1801564.587117885,913114.4590188318,736552.521347774,124122.5724998612,6316.081859533565 -15006,18524,33771,33770,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.542207887194387,9.507155841507467,0,23,-3,41.53625509543841,0,2,2,2019,8,0,35,50,1,0,0,39.80740339784867,39.80740339784867,0,0,0,0,0,0,0,0,5.822899649228305,0,54.1,59.11,49.69,52.99,8.333333333333334,1,1,0,0,9,8,5,1,635.75,1801564.587117885,913114.4590188318,736552.521347774,124122.5724998612,6316.081859533565 -15006,18524,33772,-9,33770,33771,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.904105891272,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,8,5,1,635.75,1801564.587117885,913114.4590188318,736552.521347774,124122.5724998612,6316.081859533565 -15006,18525,33773,-9,33770,33771,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1046.427947058543,-9,2,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,288,-189190.7548235567,0,0,0,0 -15007,18526,33774,-9,33776,33775,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.149788543979,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,12,4,0,920,277649.1966674464,57011.69526779385,77232.03701575141,41177.57957234322,2666.963680385031 -15007,18526,33775,33776,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.589944086923671,8.476135794920921,0,9,0,58.33175540562799,0,2,-9,2019,15,3,37,37,1,3,0,15.33468626008889,15.33468626008889,0,0,0,0,0,1,1,0,0,0,36.17,51.34,60.84,43.45,3.333333333333333,1,1,0,0,10,12,4,0,920,277649.1966674464,57011.69526779385,77232.03701575141,41177.57957234322,2666.963680385031 -15007,18526,33776,33775,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.039346000608669,8.114676511284763,0,9,0,30.52910983235572,0,2,-9,2019,6,1,20,30,1,1,0,15.21084281755077,15.21084281755077,0,0,0,0,0,1,1,0,0,0,60.84,43.45,36.17,51.34,10,4,2,0,0,10,12,4,0,920,277649.1966674464,57011.69526779385,77232.03701575141,41177.57957234322,2666.963680385031 -15007,18526,33777,-9,33776,33775,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.0457046788031,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,2,-9,0,0,12,4,0,920,277649.1966674464,57011.69526779385,77232.03701575141,41177.57957234322,2666.963680385031 -15008,18527,33778,33779,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,0,0,56,1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.029661521507494,0,54.66,50.44,57.16,56.15,8.333333333333334,1,1,0,0,0,4,1,0,1147,185837.793155036,0,276141.9297592402,0,1418.692991009781 -15008,18527,33779,33778,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,0,0,56,-1,0,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.66,50.44,8.333333333333334,1,1,0,0,0,4,1,0,1147,185837.793155036,0,276141.9297592402,0,1418.692991009781 -15009,18528,33780,33781,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,5.974560133846325,5.675558164419873,0,26,1,-10.99052513173143,0,-9,-9,2019,7,0,40,35,1,0,0,.8117777234897507,.8117777234897507,0,0,0,0,0,0,0,0,0,0,58.15,52.91,60.12,54.8,10,1,1,0,0,10,7,2,1,2426,299009.8626694031,32637.19751587729,211144.9922206902,50742.72455184199,-347.3879193983939 -15009,18528,33781,33780,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,26,-1,-26.41469354163973,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.15,52.91,10,1,1,0,0,7,7,2,1,2426,299009.8626694031,32637.19751587729,211144.9922206902,50742.72455184199,-347.3879193983939 -15010,18529,33782,33783,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,7,1,-17.71273366486871,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,60.05,42.65,10,4,1,0,0,7,13,2,1,819,448633.7443962572,290522.806528262,138790.1029296666,0,1918.626709505338 -15010,18529,33783,33782,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.163685110847749,6.887221828933125,7,-1,-86.94991311973837,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.806346770382302,7.091007938400652,60.05,42.65,57.9,51.84,8.333333333333334,1,1,0,0,8,13,2,1,819,448633.7443962572,290522.806528262,138790.1029296666,0,1918.626709505338 -15011,18530,33784,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.552505724594668,7.588110110433871,0,0,0,-897.9720494560755,0,3,-9,2019,5,0,38,30,1,0,0,4.589272485410688,4.589272485410688,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,3,0,1147,74754.15451335419,0,0,0,599.9178836109839 -15012,18531,33785,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.22015191083077,6.428177929334447,0,0,-1003.832033135918,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.226921040941034,63.5,41.47,-9,-9,6.666666666666667,1,1,0,0,6,10,2,1,3726,771050.8575982548,118379.0947345534,646954.4458456562,0,297.2057052306538 -15013,18532,33786,-9,33787,33788,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.320419002191,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,5,1,467.5,377164.4838246254,177677.6067738446,265042.9848412292,62187.71159816975,4769.05548969197 -15013,18532,33787,33788,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.601370145034824,8.68969003485593,0,6,-8,67.52623951146998,0,3,2,2019,9,0,41,60,1,0,0,17.27574562731002,17.27574562731002,0,0,0,0,0,1,1,0,1.488160120348227,0,42.17,56.08,60.12,54.8,8.333333333333334,1,1,0,0,7,11,5,1,467.5,377164.4838246254,177677.6067738446,265042.9848412292,62187.71159816975,4769.05548969197 -15013,18532,33788,33787,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,9.113695857916488,8.710358429436129,0,6,8,-119.5707214143418,0,2,2,2019,7,0,50,55,1,0,0,14.61695877497462,14.61695877497462,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.17,56.08,8.333333333333334,1,1,0,0,7,11,5,1,467.5,377164.4838246254,177677.6067738446,265042.9848412292,62187.71159816975,4769.05548969197 -15013,18532,33789,-9,33787,33788,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1079.406685646293,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,11,5,1,467.5,377164.4838246254,177677.6067738446,265042.9848412292,62187.71159816975,4769.05548969197 -15014,18533,33790,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.522772023934611,7.443107167920743,4.946100642614233,0,0,-1090.003769782253,-9,-9,-9,2019,10,0,20,0,1,0,0,12.18492102343073,12.18492102343073,0,0,0,0,0,0,0,0,5.617773661247927,0,44.36,54.04,-9,-9,3.333333333333333,1,1,0,0,3,7,3,0,374,81645.7973997121,-87739.53507705468,0,0,1692.949300134484 -15015,18534,33791,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.841889733425948,6.836399116869726,0,0,-1162.487939640308,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.016287311925322,6.52895789677495,56.57,57.78,-9,-9,10,1,1,0,0,5,6,2,1,268,113666.0896621296,154184.0895612495,214157.7040487418,0,1479.997353055971 -15016,18535,33792,33793,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.351042524229559,8.187483458129947,0,26,-5,64.94210972554683,0,3,3,2019,11,0,38,40,1,0,0,15.23767113993915,15.23767113993915,0,0,0,0,0,1,1,0,1.02535563539928,0,56.03,35.45,56.59,49.89,8.333333333333334,1,1,0,0,11,4,5,1,288,555909.8260397963,367150.5094894714,159222.1905202349,63190.58399796818,4082.441945657076 -15016,18535,33793,33792,-9,-9,1,1,57,0,0,0,2,2,-9,1,3,8.018060784632352,8.173495353717087,0,26,5,36.82956611385731,0,3,2,2019,8,0,39,39,1,0,0,8.600867092082883,8.600867092082883,0,0,0,0,0,1,1,0,1.933284504963248,0,56.59,49.89,56.03,35.45,8.333333333333334,1,1,0,0,12,4,5,1,288,555909.8260397963,367150.5094894714,159222.1905202349,63190.58399796818,4082.441945657076 -15017,18536,33794,-9,33796,33795,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.484800837435,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,568.75,388736.0370585526,34416.93051268209,523159.8138677364,164183.3534356386,4107.703277216824 -15017,18536,33795,33796,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,6.455155116210536,6.74371494890946,0,13,-1,-26.96324508760383,0,2,2,2019,15,4,20,20,1,4,0,4.48767402725549,4.48767402725549,0,0,0,0,0,1,1,0,6.135098805116566,0,26.75,48.94,50.18,52.62,5,1,1,0,0,8,9,5,1,568.75,388736.0370585526,34416.93051268209,523159.8138677364,164183.3534356386,4107.703277216824 -15017,18536,33796,33795,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,9.230873107688305,9.325029326224263,0,13,1,68.60334148481087,0,2,2,2019,11,2,40,42,1,2,0,30.82357660432529,30.82357660432529,0,0,0,0,0,1,1,0,0,0,50.18,52.62,26.75,48.94,8.333333333333334,1,1,0,0,10,9,5,1,568.75,388736.0370585526,34416.93051268209,523159.8138677364,164183.3534356386,4107.703277216824 -15017,18536,33797,-9,33796,33795,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.5365577850404,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,568.75,388736.0370585526,34416.93051268209,523159.8138677364,164183.3534356386,4107.703277216824 -15018,18537,33798,33799,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.137338252605043,7.2766070862332,41,10,-61.43436073320248,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,.3580493249989178,0,0,120,1,1,0,6.015160276499625,7.134459035503628,48.89,36.77,52,46,5,1,1,0,0,0,9,2,1,435,732868.8533232848,374192.8328809011,348571.893436615,0,3036.543238531412 -15018,18537,33799,33798,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.849000773668881,5.645757760818521,41,-10,66.76228871903349,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.867153637954313,6.04352441704395,52,46,48.89,36.77,8,1,1,0,0,0,9,2,1,435,732868.8533232848,374192.8328809011,348571.893436615,0,3036.543238531412 -15019,18538,33800,33801,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,0,0,0,3,-31,34.27063766151717,0,-9,-9,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.63,57.91,44.58,43.94,10,2,3,0,0,0,11,2,1,3915.5,1060645.175591778,583463.2185481301,294985.5093615521,0,2330.409343438266 -15019,18538,33801,33800,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,6.312672538227191,6.034826840780905,3,31,-52.30993982490184,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,3.481550991468217,0,0,1,1,0,8.200794671540903,6.471989156597183,44.58,43.94,51.63,57.91,5,1,1,0,0,12,11,2,1,3915.5,1060645.175591778,583463.2185481301,294985.5093615521,0,2330.409343438266 -15020,18539,33802,33803,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.862027897766922,5.025397575321868,2,-8,-41.55214491951961,-9,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,10.94187265827263,0,0,1,1,0,0,4.998678045422819,51,46,45.65,34.6,8,1,1,0,0,0,11,3,1,633,541800.0834716924,217813.5877807348,210510.3042829708,0,2087.013192918571 -15020,18539,33803,33802,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.29257636813819,7.746948500650159,2,8,-4.80029670688225,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,7.061022137478359,0,2,1,1,0,0,7.110133184291139,45.65,34.6,51,46,8.333333333333334,1,1,0,0,0,11,3,1,633,541800.0834716924,217813.5877807348,210510.3042829708,0,2087.013192918571 -15021,18540,33804,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.868334699585617,5.081616797994577,0,0,-959.180521667947,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.45966166803582,5.192476629078357,58.98,29.7,-9,-9,6.666666666666667,1,1,0,0,9,9,2,0,1180,159.4844918146591,115029.0543376672,0,0,1199.672193472318 -15022,18541,33805,33806,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.670104453189836,8.482596791855229,0,7,4,60.26987272015996,0,3,3,2019,12,0,40,41,1,0,0,14.04490138353499,14.04490138353499,0,0,0,0,0,0,0,0,0,0,49.04,55.86,45.82,29.18,6.666666666666667,1,1,0,0,8,11,5,1,269,1563416.263136948,1268785.934269111,346824.942970486,15087.85756585686,3483.490781354826 -15022,18541,33806,33805,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.628527544949874,8.204660597362848,0,7,-4,-30.82693524865757,0,2,3,2019,10,2,12,30,1,2,0,46.8845049506362,46.8845049506362,0,0,0,0,0,0,0,0,4.132280899985068,0,45.82,29.18,49.04,55.86,8.333333333333334,1,1,0,0,8,11,5,1,269,1563416.263136948,1268785.934269111,346824.942970486,15087.85756585686,3483.490781354826 -15023,18542,33807,33810,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.646134963605453,8.541274632354583,0,8,-6,34.64588380654246,0,2,2,2019,14,2,40,40,1,2,0,18.15860419529874,18.15860419529874,0,0,0,0,0,1,1,0,.0727565313242231,0,33.67,45.31,51.83,57.2,6.666666666666667,1,1,0,0,10,10,4,1,200.25,214282.0455580326,79676.37339654876,0,0,3972.40000041896 -15023,18542,33808,-9,33810,33807,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.258512570909,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,200.25,214282.0455580326,79676.37339654876,0,0,3972.40000041896 -15023,18542,33809,-9,33810,33807,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.886771082917,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,200.25,214282.0455580326,79676.37339654876,0,0,3972.40000041896 -15023,18542,33810,33807,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.655965356143593,7.694973051179077,0,8,6,-30.28698189763072,0,2,-9,2019,9,0,25,25,1,0,0,10.14524855115943,10.14524855115943,0,0,0,0,0,1,1,0,0,0,51.83,57.2,33.67,45.31,6.666666666666667,1,1,0,0,8,10,4,1,200.25,214282.0455580326,79676.37339654876,0,0,3972.40000041896 -15024,18543,33811,33812,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.859304962779157,7.942711030708368,3.809808306616536,47,-3,99.0390618359087,0,2,2,2019,6,0,25,30,1,0,0,10.20131501979376,10.20131501979376,0,0,0,0,0,1,1,0,5.413417370686413,3.786900568516612,62.25,45.63,60.44,46.58,10,1,1,0,0,10,2,4,1,822,684304.2405981976,459782.1102824819,163665.4864400097,0,2929.633583450857 -15024,18543,33812,33811,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.430453472582882,7.306484558871368,47,3,-12.88753048545845,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.243415332879898,7.427246999724924,60.44,46.58,62.25,45.63,8.333333333333334,1,1,0,0,0,2,4,1,822,684304.2405981976,459782.1102824819,163665.4864400097,0,2929.633583450857 -15025,18544,33813,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3327810719724,7.380663294412438,4.267063239368756,0,0,-941.5672069898719,0,3,3,2019,6,0,30,30,1,0,0,5.424212753156375,5.424212753156375,0,0,0,0,0,1,1,0,4.331743522300288,4.220672706867282,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,264,310364.438798752,249078.6469194569,163615.7639329211,0,1288.430454555235 -15026,18545,33814,-9,33817,33816,1,1,17,0,1,1,3,0,0,0,2,0,0,0,0,0,-1013.326123312455,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,45.91,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,1210.25,119310.3825158974,35442.68221123258,0,0,3335.970202796149 -15026,18545,33815,-9,33817,33816,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.467410518539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.8605058224629651,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,1210.25,119310.3825158974,35442.68221123258,0,0,3335.970202796149 -15026,18545,33816,33817,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.556365530396477,8.505716786538823,0,7,2,55.31559065125299,0,3,3,2019,10,0,37,37,1,0,0,20.41849733859082,20.41849733859082,0,0,0,0,0,1,1,0,0,0,50.03,52.62,43.12,58.55,8.333333333333334,1,1,0,0,8,8,4,1,1210.25,119310.3825158974,35442.68221123258,0,0,3335.970202796149 -15026,18545,33817,33816,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.645095089155086,7.80807086438343,0,7,-2,-214.9449867417767,0,3,3,2019,17,6,7,30,1,6,0,37.90346873777418,37.90346873777418,0,0,0,0,42,1,1,0,0,0,43.12,58.55,50.03,52.62,8.333333333333334,1,1,0,1,8,8,4,1,1210.25,119310.3825158974,35442.68221123258,0,0,3335.970202796149 -15026,18546,33818,-9,33817,33816,1,0,22,0,1,0,1,1,-9,0,5,6.039232710344401,5.925576176601046,0,0,0,-1020.354860081085,0,2,2,2019,7,0,6,6,1,0,1,10.12136710449435,10.12136710449435,0,0,0,0,0,1,1,0,.1245664631353442,0,57.06,57.76,-9,-9,10,1,1,0,0,5,8,2,1,188,74107.98264794235,-59426.53948746045,0,0,473.1530474284049 -15026,18547,33819,-9,33817,33816,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1013.479555261469,0,2,3,2019,8,0,0,7,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,0,1,1,0,0,4,8,1,1,614,62921.38782424376,0,0,0,0 -15027,18548,33820,-9,-9,-9,1,0,40,1,3,0,2,2,-9,0,4,8.166086049407753,7.904261931192195,0,0,0,-1111.535716045736,0,-9,-9,2019,11,0,23,27,1,1,0,11.14045960266427,11.14045960266427,0,0,0,1.877830047347306,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,1,9,8,3,0,2244.5,-51948.38083229294,-19643.91440096757,0,0,3274.365793004905 -15027,18548,33821,-9,33820,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.2145842981,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,2244.5,-51948.38083229294,-19643.91440096757,0,0,3274.365793004905 -15028,18549,33822,-9,33823,33825,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.065101536078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,561.75,-23015.2255157683,0,0,0,2203.169470117102 -15028,18549,33823,33825,-9,-9,1,0,29,0,2,0,2,2,-9,0,2,0,0,0,2,1,-88.86800548516887,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,40.58,38.26,54.42,44.16,6.666666666666667,1,1,0,1,0,11,2,0,561.75,-23015.2255157683,0,0,0,2203.169470117102 -15028,18549,33824,-9,33823,33825,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.9476179738106,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,561.75,-23015.2255157683,0,0,0,2203.169470117102 -15028,18549,33825,33823,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,7.781854200232766,7.665128817508551,0,2,-1,83.67431163258294,0,-9,-9,2019,7,2,43,37,1,2,0,5.935834014831024,5.935834014831024,0,0,0,0,0,1,1,0,0,0,54.42,44.16,40.58,38.26,8.333333333333334,1,1,0,0,10,11,2,0,561.75,-23015.2255157683,0,0,0,2203.169470117102 -15029,18550,33826,33827,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,9.39586997191244,9.218783472662098,0,2,0,-105.640750721867,0,1,1,2019,8,0,35,30,1,0,0,38.56724342813865,38.56724342813865,0,0,0,0,0,0,0,0,0,0,62.49,55.09,49.35,59.64,8.333333333333334,1,1,0,0,5,10,5,0,668,-100256.6359607181,80397.78613199916,0,0,5533.543724296069 -15029,18550,33827,33826,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.789486608057018,7.856891313866106,4.562627780756565,2,0,88.59534685024417,0,-9,-9,2019,8,0,30,15,1,0,0,7.916898042749806,7.916898042749806,0,0,0,0,0,0,0,0,4.491867185263056,0,49.35,59.64,62.49,55.09,8.333333333333334,1,1,0,0,1,10,5,0,668,-100256.6359607181,80397.78613199916,0,0,5533.543724296069 -15029,18551,33828,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,7.330727814424706,7.162425019162376,0,0,-854.0015304480094,-9,-9,-9,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,7.490942150617668,0,41.41,59.45,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,944,-70.88858424112004,0,0,0,857.0494944125332 -15030,18552,33829,33830,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.541264799636711,7.665480896301387,40,8,-23.98881336061305,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,.2357800765158728,0,1,1,0,4.665284623768856,7.832592137566882,57.16,56.15,45.85,61.26,8.333333333333334,1,1,0,0,7,11,3,1,713.5,137330.710611151,0,227223.0573743984,113197.7618989707,2361.430826718384 -15030,18552,33830,33829,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.789855820917567,7.512022143757227,0,40,-8,-117.7041192288272,0,2,2,2019,15,3,28,26,1,3,0,8.105645432414189,8.105645432414189,0,0,0,0,0,1,1,0,3.611969940835366,0,45.85,61.26,57.16,56.15,8.333333333333334,1,1,0,0,9,11,3,1,713.5,137330.710611151,0,227223.0573743984,113197.7618989707,2361.430826718384 -15031,18553,33831,33832,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,5,3,0,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,0,43.99,36.78,52.06,34.72,3.333333333333333,1,1,0,0,0,5,1,1,2391,167603.469862764,0,0,0,1420.686247877408 -15031,18553,33832,33831,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,5,-3,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.25787336509142,0,52.06,34.72,43.99,36.78,8.333333333333334,1,1,0,0,0,5,1,1,2391,167603.469862764,0,0,0,1420.686247877408 -15032,18554,33833,33834,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.413807293692681,8.526941492329769,0,4,-7,-1.69735170672086,0,2,2,2019,11,2,43,49,1,2,0,13.4674725669502,13.4674725669502,0,0,0,0,0,0,0,0,0,0,46.5,58.26,51.77,58.57,8.333333333333334,1,1,0,0,9,7,5,1,943,141947.3889772864,121316.2526319187,0,0,3227.631177504713 -15032,18554,33834,33833,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.428629554601599,8.527533073136908,0,4,7,5.523854864287406,0,-9,-9,2019,10,1,42,50,1,1,0,11.73954722774847,11.73954722774847,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.5,58.26,8.333333333333334,1,1,0,0,2,7,5,1,943,141947.3889772864,121316.2526319187,0,0,3227.631177504713 -15033,18555,33835,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.232957420965041,8.628197636921826,0,0,0,-1052.465609866343,0,3,3,2019,11,0,97,97,1,0,0,4.800727971601147,4.800727971601147,0,0,0,0,29,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,3,4,0,0,10,5,4,0,489,259718.3110055217,-19342.47049407921,237486.7563099027,97841.66631890256,1944.507749108962 -15034,18556,33836,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.543180630821464,8.997761777852881,5.954944654138492,0,0,-1011.377818321326,0,2,3,2019,13,4,50,57,1,4,0,12.06259309071518,12.06259309071518,0,0,0,0,0,0,0,0,5.616543451308427,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,2,8,5,0,1261,100005.6186853432,10033.32591414438,0,0,2428.154801579787 -15035,18557,33837,33838,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.122752972441642,5.314470873331782,53,-2,-105.4294390045137,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,7,1,1,0,1.591128616918407,5.495214925228932,41.37,25.98,51.01,39.19,8.333333333333334,1,1,0,0,0,1,2,1,298.5,864383.6268245456,325755.0658438235,499324.3403325966,0,1785.803754775611 -15035,18557,33838,33837,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.577195740341355,7.149071762142253,53,2,134.8798150897558,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.367015521642646,6.879882148808936,51.01,39.19,41.37,25.98,6.666666666666667,1,1,0,0,0,1,2,1,298.5,864383.6268245456,325755.0658438235,499324.3403325966,0,1785.803754775611 -15036,18558,33839,33842,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.326119412819892,8.373646390177868,0,11,0,-53.68703500756845,0,2,2,2019,10,0,20,20,1,0,0,35.04045962848563,35.04045962848563,0,0,0,0,0,0,0,0,8.313197530539323,0,57.33,53.46,51,56,6.666666666666667,1,1,0,0,7,10,4,1,1260.25,734772.6776653208,654233.1363696058,291962.5018123867,60350.09383942287,3056.045256534417 -15036,18558,33840,-9,33839,33842,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.68521437457,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1260.25,734772.6776653208,654233.1363696058,291962.5018123867,60350.09383942287,3056.045256534417 -15036,18558,33841,-9,33839,33842,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.5664462233178,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1260.25,734772.6776653208,654233.1363696058,291962.5018123867,60350.09383942287,3056.045256534417 -15036,18558,33842,33839,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.320707386765356,7.313991758128259,0,2,0,-27.6699915092451,0,-9,-9,2019,9,0,60,50,1,1,0,2.962220125695068,2.962220125695068,0,0,0,0,0,0,0,0,1.066790177595466,0,51,56,57.33,53.46,8,1,1,0,0,1,10,4,1,1260.25,734772.6776653208,654233.1363696058,291962.5018123867,60350.09383942287,3056.045256534417 -15037,18559,33843,33844,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,1,75.70223237492704,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,46.8,55.75,8,1,1,0,0,0,11,2,1,233,461193.5762053817,56342.60151256911,217858.8038182292,0,1408.111441303842 -15037,18559,33844,33843,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.289702514441289,7.125271955915032,61,-1,-154.5221750667232,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.789215701648514,7.26223003971285,46.8,55.75,52,45,8.333333333333334,1,1,0,0,10,11,2,1,233,461193.5762053817,56342.60151256911,217858.8038182292,0,1408.111441303842 -15038,18560,33845,33846,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,9,-6,-17.810712738921,0,3,1,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.4,32.32,37.62,41.38,3.333333333333333,2,3,0,0,6,6,3,1,211.5,1184347.039640448,1033486.567153416,155520.7992021732,0,1772.618748827243 -15038,18560,33846,33845,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.120481503325687,7.942360004642266,9,6,87.57629087672866,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.21129547150296,8.086135233407916,37.62,41.38,36.4,32.32,3.333333333333333,3,4,0,0,1,6,3,1,211.5,1184347.039640448,1033486.567153416,155520.7992021732,0,1772.618748827243 -15039,18561,33847,33849,-9,-9,1,1,32,0,1,0,2,2,-9,0,2,8.747066235200972,8.621424297246936,0,2,-1,72.86303662273511,0,3,-9,2019,22,10,44,42,1,10,0,12.13794642913209,12.13794642913209,0,0,0,0,0,1,1,0,0,0,35.11,38.32,48.89,48.16,3.333333333333333,1,1,0,0,10,5,4,1,689.3333333333334,63584.72288693429,32274.82918508139,127747.4701678891,108988.4265052971,2589.356146555112 -15039,18561,33848,-9,33849,33847,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.2414674958677,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,689.3333333333334,63584.72288693429,32274.82918508139,127747.4701678891,108988.4265052971,2589.356146555112 -15039,18561,33849,33847,-9,-9,1,0,33,0,1,0,2,2,-9,0,2,7.110134054609655,7.042073053245153,0,2,1,24.01226029409476,0,2,2,2019,11,0,14,20,1,0,0,7.268957559313232,7.268957559313232,0,0,0,0,0,1,1,0,0,0,48.89,48.16,35.11,38.32,6.666666666666667,1,1,0,0,9,5,4,1,689.3333333333334,63584.72288693429,32274.82918508139,127747.4701678891,108988.4265052971,2589.356146555112 -15040,18562,33850,-9,33852,33851,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.5634407362433,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,654,370548.1160638256,30647.85599251001,417795.7071169736,202587.1031665476,2160.474731272231 -15040,18562,33851,33852,-9,-9,1,1,36,0,1,0,3,3,-9,0,3,8.240657688776405,7.987713098160964,0,9,4,-126.561837621618,0,2,3,2019,7,0,37,40,1,0,0,9.313826036268253,9.313826036268253,0,0,0,0,0,1,1,0,0,0,52,54.51,54.96,53.17,8.333333333333334,1,1,0,0,9,9,4,1,654,370548.1160638256,30647.85599251001,417795.7071169736,202587.1031665476,2160.474731272231 -15040,18562,33852,33851,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.524344112216762,7.511499028709546,0,9,-4,5.008554883119968,0,2,2,2019,7,0,23,23,1,0,0,9.156632037359776,9.156632037359776,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52,54.51,8.333333333333334,1,1,0,0,11,9,4,1,654,370548.1160638256,30647.85599251001,417795.7071169736,202587.1031665476,2160.474731272231 -15041,18563,33853,33854,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.949471614224265,8.14386431387933,0,6,13,-63.72420190264741,0,-9,-9,2019,6,0,37,37,1,0,0,20.4688110379331,20.4688110379331,0,0,0,0,71.5,1,1,0,0,0,61.07,39.39,17.41,35.88,8.333333333333334,1,1,0,0,7,10,4,1,812,997670.5400449031,760495.8378167257,295364.0764636807,0,3689.546379252442 -15041,18563,33854,33853,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,6,-13,-1.371279375393041,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.41,35.88,61.07,39.39,0,1,1,0,1,0,10,4,1,812,997670.5400449031,760495.8378167257,295364.0764636807,0,3689.546379252442 -15042,18564,33855,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,7.145894852355927,7.186593981675687,0,0,0,-1051.783267230655,0,2,3,2019,15,4,24,30,1,4,0,5.167264831622047,5.167264831622047,0,0,0,0,0,1,1,0,0,0,47.95,32.2,-9,-9,8.333333333333334,1,1,0,0,7,2,2,0,420,-29032.71629319928,-23264.05434932125,0,0,1088.655470739023 -15043,18565,33856,33857,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.39911356851076,8.155736229615226,58,-2,-38.61210699802798,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,7.363722555765418,8.200588271507115,55,45,53,44,8,1,1,0,0,0,8,3,1,168.5,1025576.450841474,712105.2904845674,104526.0078278793,0,2995.797718488629 -15043,18565,33857,33856,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,58,2,47.90134158358376,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,121.3453469320816,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,3,1,168.5,1025576.450841474,712105.2904845674,104526.0078278793,0,2995.797718488629 -15044,18566,33858,33859,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.877290258811248,9.848522870412948,0,2,4,-28.94441525072672,0,1,1,2019,8,0,40,40,1,0,0,42.92214706540909,42.92214706540909,0,0,0,0,0,0,0,0,8.590377409612412,0,47.62,56.48,51.98,57.55,8.333333333333334,1,1,0,0,10,8,5,1,982.5,236437.1471410314,194447.0269483552,558682.3617578098,394325.8762038301,12995.05492813437 -15044,18566,33859,33858,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,7.916739574019369,8.261377952860407,0,2,-4,-72.6968734531705,0,2,2,2019,5,0,40,40,1,0,0,8.749656559963295,8.749656559963295,0,0,0,0,0,0,0,0,7.93088630467698,0,51.98,57.55,47.62,56.48,8.333333333333334,1,1,0,0,7,8,5,1,982.5,236437.1471410314,194447.0269483552,558682.3617578098,394325.8762038301,12995.05492813437 -15045,18567,33860,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.559398730850059,6.764458623827257,0,0,-850.9735692187521,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,27.8705747541233,0,0,0,1,1,0,0,6.676734610147729,53,44,-9,-9,8,3,4,0,0,0,8,2,0,380,240392.1301513949,65470.45838723911,0,0,1549.520383771674 -15046,18568,33861,33862,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.742335244493162,7.840031104666288,10,0,26.4162377501466,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.516792217833155,7.63961439095147,69.88,25.67,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,192,1766880.881309158,808748.9078440903,566513.9753845521,0,3137.824213038135 -15046,18568,33862,33861,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.592377368561783,7.66727715422181,10,0,40.46269377493684,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.975762456213908,7.445491805644263,57.16,56.15,69.88,25.67,10,1,1,0,0,0,9,4,1,192,1766880.881309158,808748.9078440903,566513.9753845521,0,3137.824213038135 -15047,18569,33863,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.546003271930356,8.450230490851547,0,0,0,-996.5592767600131,0,3,2,2019,21,9,39,39,1,9,0,10.31484722065823,10.31484722065823,0,0,0,0,0,0,0,0,0,0,21.04,51.71,-9,-9,1.666666666666667,1,1,0,0,9,7,4,0,273,53430.67818419458,61188.78831797978,0,0,1702.717320328609 -15048,18570,33864,33865,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.59705831370565,8.57895663215186,0,4,-5,37.16729473261525,0,-9,-9,2019,18,5,65,62,1,5,0,11.22281665100626,11.22281665100626,0,0,0,0,0,0,0,0,0,0,28.36,57.33,32.38,55.82,6.666666666666667,2,3,0,0,6,6,5,0,410,2475.337707284823,-12504.17882289595,0,0,2903.695126123955 -15048,18570,33865,33864,-9,-9,1,1,35,0,0,0,3,3,-9,0,5,7.522842651091861,7.729889250116826,0,4,5,-64.86330464758221,0,-9,-9,2019,6,0,40,60,1,0,0,5.209715595120726,5.209715595120726,0,0,0,0,0,0,0,0,0,0,32.38,55.82,28.36,57.33,3.333333333333333,2,3,0,0,3,6,5,0,410,2475.337707284823,-12504.17882289595,0,0,2903.695126123955 -15049,18571,33866,33867,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.304100263459821,8.578524980142404,0,32,-1,46.1216763627987,0,2,2,2019,11,0,37,37,1,0,0,15.01599265315996,15.01599265315996,0,0,0,0,2,1,1,0,0,0,46.08,57.2,29.19,19.44,8.333333333333334,1,1,0,0,10,12,4,1,1023.5,697395.3440711598,187553.3123398535,364873.8761488236,0,2337.826823520401 -15049,18571,33867,33866,-9,-9,1,1,55,0,0,0,3,3,-9,0,1,0,6.321960000323537,6.511792326454646,32,1,-56.33713602218448,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,5.637507373376282,6.147623112691619,29.19,19.44,46.08,57.2,3.333333333333333,1,1,0,0,0,12,4,1,1023.5,697395.3440711598,187553.3123398535,364873.8761488236,0,2337.826823520401 -15050,18572,33868,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.480376768365253,6.693491016391755,0,0,-1082.434112226251,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,14.64738436082395,0,2,1,1,0,.5352340136159009,6.477894429725257,66.03,17.46,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,221,-100545.7320807952,106470.003688778,0,0,2056.313817060331 -15051,18573,33869,33870,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,4.830815157566407,4.711222161727275,9,1,-17.80318355591635,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,3.012876192789157,0,0,1,1,0,4.984333739025645,4.931038198230945,36.35,40.14,47.96,34.1,5,1,1,0,0,0,8,2,0,449,622243.8096361945,75133.98630506446,592170.0673917631,0,2106.306842112636 -15051,18573,33870,33869,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.910304956291824,5.830197367507747,9,-1,-18.22186080505462,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.784641193557148,47.96,34.1,36.35,40.14,6.666666666666667,1,1,0,0,4,8,2,0,449,622243.8096361945,75133.98630506446,592170.0673917631,0,2106.306842112636 -15052,18574,33871,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,2,7.517784762253914,7.414535253626438,0,0,0,-910.5397951185248,0,2,2,2019,14,2,18,18,1,2,0,10.72057581547864,10.72057581547864,0,0,0,0,71.5,1,0,1,0,0,34.2,49.45,-9,-9,3.333333333333333,1,1,0,0,11,4,2,1,459,85997.41352037003,0,171272.8442444788,96324.559456431,1502.129842321738 -15053,18575,33872,33873,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,9.051930872289276,9.240988137678222,0,1,0,-25.21261039390302,-9,-9,-9,2019,17,5,50,0,1,5,0,13.07725385506789,13.07725385506789,0,0,0,0,0,0,0,0,2.874504730448088,0,49.22,47.48,55.37,48.71,8.333333333333334,1,1,0,0,8,12,5,1,610,1523195.60057449,1191247.562353688,353193.2207449056,45868.62606109295,3404.110398646205 -15053,18575,33873,33872,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.618333736840369,7.745081491767702,7.020597939017118,35,0,8.326434136221923,-9,2,2,2019,12,1,24,0,1,1,0,8.154074327760986,8.154074327760986,0,0,0,0,0,0,0,0,2.691195190907048,7.068286444045842,55.37,48.71,49.22,47.48,6.666666666666667,1,1,0,1,8,12,5,1,610,1523195.60057449,1191247.562353688,353193.2207449056,45868.62606109295,3404.110398646205 -15054,18576,33874,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1057.985218582833,0,1,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,22.4,61.36,-9,-9,5,1,1,1,1,1,2,1,1,286,-72061.58737375903,0,0,0,0 -15055,18577,33875,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.063650131160847,8.050879073424792,0,0,0,-961.5118962896033,0,3,3,2019,8,0,25,20,1,0,0,17.30716229396187,17.30716229396187,0,0,0,0,0,0,0,0,4.207632036712792,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,602,32943.25324592644,58759.76958622093,0,0,1553.364726957064 -15055,18578,33876,-9,33875,-9,1,1,25,0,0,0,1,1,-9,0,3,8.564404863395087,8.321480474410631,0,0,0,-1119.429718140964,0,1,1,2019,15,4,52,41,1,4,1,10.0423363965847,10.0423363965847,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,3,13,5,1,1220,512.4049621698541,0,0,0,1573.570367640559 -15055,18579,33877,-9,33875,-9,1,1,24,0,0,0,1,1,-9,0,5,7.916808015933667,8.002445844498213,0,0,0,-898.1226659823467,0,1,1,2019,6,0,43,41,1,0,1,7.98083656159919,7.98083656159919,0,0,0,0,0,0,0,0,1.499426722880007,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,738,33120.99169014036,0,0,0,1393.880018713543 -15055,18580,33878,-9,33875,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1041.828701348966,0,1,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,2.202624116864264,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,550,-106421.0498819033,23384.07999464191,0,0,76.61192371170387 -15055,18581,33879,-9,33875,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1124.673787365305,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.270516586465043,0,47.58,63.43,-9,-9,10,1,1,0,0,3,13,1,1,159,-312239.1013701595,0,0,0,264.5155847563761 -15056,18582,33880,33881,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.41827499408797,7.88651571973958,44,3,22.55311176348503,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,4.655244978433348,7.865628682050425,62.25,45.63,60.12,54.8,8.333333333333334,1,1,0,0,6,1,3,1,1244,731920.5755644193,423340.4496305218,179766.2808186737,0,1809.360287874548 -15056,18582,33881,33880,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.268586214203525,7.710612119189418,4.438114327724517,42,-3,-36.66953107709837,0,3,3,2019,6,0,22,22,1,0,0,8.106452494662825,8.106452494662825,0,0,0,0,0,0,0,0,5.482705116329424,4.58009485029831,60.12,54.8,62.25,45.63,8.333333333333334,1,1,0,0,9,1,3,1,1244,731920.5755644193,423340.4496305218,179766.2808186737,0,1809.360287874548 -15056,18583,33882,-9,33881,33880,1,0,26,0,0,0,1,1,-9,0,4,8.514381231858717,8.365537515493399,0,0,0,-942.4288580075608,-9,3,2,2019,16,5,37,0,1,5,0,10.99955337386421,10.99955337386421,0,0,0,0,0,0,0,0,0,0,36.91,59.95,-9,-9,5,1,1,0,0,9,1,4,1,153,140124.3344707339,1291.535322884698,0,0,2002.239069201375 -15057,18584,33883,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.111140971453672,9.079048007184262,0,0,0,-992.7045045361104,0,2,2,2019,11,2,39,38,1,2,0,27.06752961509015,27.06752961509015,0,0,0,0,0,0,0,0,2.911365404646465,0,46.35,58.72,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,294,590770.5929276707,27180.90162821302,594084.4395781684,98556.40595942791,3466.070690051748 -15058,18585,33884,33885,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.245432173348561,7.753965510536943,0,30,-2,-13.16664764894434,0,3,2,2019,13,1,61,49,1,1,0,6.040115731206622,6.040115731206622,0,0,0,0,0,1,1,0,0,0,47.37,42.62,55,52,6.666666666666667,1,1,0,0,9,10,5,1,617.5,866969.3278843203,733028.3677743666,0,0,4163.465070494558 -15058,18585,33885,33884,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.806191055203241,8.779238811479404,0,3,2,91.30061052244194,0,3,3,2019,8,0,37,55,1,0,0,21.13973247698193,21.13973247698193,0,0,0,0,0,1,1,0,6.806796690913655,0,55,52,47.37,42.62,8,1,1,0,0,1,10,5,1,617.5,866969.3278843203,733028.3677743666,0,0,4163.465070494558 -15058,18586,33886,-9,33884,33885,1,1,31,0,0,0,2,2,-9,0,4,7.3901303979135,7.197135201873096,0,0,0,-900.6965226240903,0,2,1,2019,10,0,50,50,1,1,1,3.183957100743608,3.183957100743608,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,10,3,1,4620,-237106.5407208806,0,0,0,289.9105477679749 -15059,18587,33887,33888,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,9.470413579774815,9.158905237563433,0,5,1,-110.1326970027492,0,2,1,2019,7,0,68,90,1,0,0,21.98979256254237,21.98979256254237,0,0,0,0,0,0,0,0,4.658280242386757,0,59.43,58.05,57.33,53.46,8.333333333333334,1,1,0,0,5,8,5,1,915.5,702694.0226944329,55870.47234002876,695756.0683204005,125425.7570784939,7184.216625682978 -15059,18587,33888,33887,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.969624308593334,9.090345509231399,0,5,-1,212.0894466576561,0,1,1,2019,7,0,46,40,1,0,0,18.83303046827529,18.83303046827529,0,0,0,0,0,0,0,0,3.863607604620571,0,57.33,53.46,59.43,58.05,10,1,1,0,0,4,8,5,1,915.5,702694.0226944329,55870.47234002876,695756.0683204005,125425.7570784939,7184.216625682978 -15060,18588,33889,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.394693393605619,7.407001132318512,0,0,-1089.981960891707,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.569098809943529,7.421689090275776,35.4,40.44,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,601,340479.9421334771,108620.557668527,120116.6195836285,0,1626.217120829085 -15061,18589,33890,33891,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.674406555391385,7.617850734988789,5.068039559883373,3,5,47.64188326628948,0,2,2,2019,7,0,40,45,1,0,0,5.668421497247277,5.668421497247277,0,0,0,0,14.5,1,1,0,7.116985949734038,5.207356669279204,62.26,42.8,50.66,21.39,10,1,1,0,0,9,5,3,1,843,90190.38932468847,32069.98879616149,0,0,1421.803556663539 -15061,18589,33891,33890,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,0,0,0,3,-5,-6.612595408811362,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.66,21.39,62.26,42.8,8.333333333333334,1,1,0,0,1,5,3,1,843,90190.38932468847,32069.98879616149,0,0,1421.803556663539 -15061,18589,33892,-9,33891,33890,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1103.87304826183,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,843,90190.38932468847,32069.98879616149,0,0,1421.803556663539 -15061,18590,33893,-9,33891,33890,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.84792489454,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.56,57.02,-9,-9,0,1,1,1,0,3,5,1,1,264,33158.5994131158,0,0,0,0 -15062,18591,33894,33895,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.407177323104925,8.46088826799946,0,10,4,117.3085353752386,0,-9,-9,2019,6,2,45,52,1,2,0,11.90305341834779,11.90305341834779,0,0,0,0,0,1,1,0,0,0,29.98,66.69,41.2,47.04,10,1,1,0,0,12,8,5,1,1075.5,887701.3502761348,864650.1335615305,0,0,3818.245108248348 -15062,18591,33895,33894,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.022167448872924,8.244375354356979,6.614630636958998,10,-4,-14.76011339359118,0,2,1,2019,24,12,60,40,1,12,0,5.776272904665256,5.776272904665256,0,0,0,0,0,1,1,0,5.847138822963649,6.704951425952681,41.2,47.04,29.98,66.69,5,1,1,0,0,8,8,5,1,1075.5,887701.3502761348,864650.1335615305,0,0,3818.245108248348 -15063,18592,33896,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-975.7670014606807,-9,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,1,1,0,7,1,0,263,220789.9017512562,0,0,0,0 -15064,18593,33897,-9,33900,33898,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.3469884167349,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,8,5,1,622.5,888711.3279095998,409669.9669717401,578477.4671946644,201417.7988374027,4882.224177441188 -15064,18593,33898,33900,-9,-9,1,1,46,1,2,0,1,1,-9,0,4,8.621482675838006,9.213755935860995,0,5,5,-81.78902614117666,0,-9,-9,2019,6,0,35,35,1,0,0,27.63189648175737,27.63189648175737,0,0,0,0,0,1,1,0,2.984366808215023,0,62.49,55.09,54.1,59.11,8.333333333333334,4,2,0,0,11,8,5,1,622.5,888711.3279095998,409669.9669717401,578477.4671946644,201417.7988374027,4882.224177441188 -15064,18593,33899,-9,33900,33898,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.0960159115215,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,5,1,622.5,888711.3279095998,409669.9669717401,578477.4671946644,201417.7988374027,4882.224177441188 -15064,18593,33900,33898,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,8.255298332825669,8.567608530082673,0,5,-5,128.4631486176181,0,2,2,2019,7,1,24,22,1,1,0,22.15743013461106,22.15743013461106,0,0,0,0,0,1,1,0,6.948245559857916,0,54.1,59.11,62.49,55.09,10,4,2,0,0,11,8,5,1,622.5,888711.3279095998,409669.9669717401,578477.4671946644,201417.7988374027,4882.224177441188 -15065,18594,33901,33902,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,7.819330096419601,8.420291479525408,7.132163596275604,53,2,20.87788573996923,0,3,3,2019,11,1,20,40,1,1,0,16.12857780109722,16.12857780109722,0,0,0,0,0,1,1,0,8.16545126489671,6.975727595693488,55.44,52.99,52.48,54.33,8.333333333333334,1,1,0,0,8,5,4,1,432,862033.6731970992,594349.746658926,309201.1548927214,0,6467.530624546698 -15065,18594,33902,33901,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.06669748012713,7.221414358857967,53,-2,.6392421845742846,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.850810327825442,6.952735406156291,52.48,54.33,55.44,52.99,8.333333333333334,1,1,0,0,5,5,4,1,432,862033.6731970992,594349.746658926,309201.1548927214,0,6467.530624546698 -15066,18595,33903,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,9.538260837831471,9.617125289756883,0,0,-952.9888169950869,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,2.319821352814909,0,19.21233181222813,0,1,1,0,5.485297014788327,9.789057581838962,59.54,25.38,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,197,665524.8780380684,263366.8332220925,0,0,9058.802207443227 -15067,18596,33904,33906,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.896335960462549,8.886257136307158,0,8,-4,71.46933743911151,0,2,2,2019,6,0,45,42,1,0,0,15.71463080278909,15.71463080278909,0,0,0,0,0,1,1,0,0,0,58.72,51.29,52.04,27.62,8.333333333333334,1,1,0,0,8,12,4,1,1365.666666666667,142162.5487791261,37622.59469249388,0,0,3643.157495637336 -15067,18596,33905,-9,33906,33904,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-899.3877863091501,-9,1,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,12,4,1,1365.666666666667,142162.5487791261,37622.59469249388,0,0,3643.157495637336 -15067,18596,33906,33904,-9,-9,1,0,52,0,0,0,1,1,-9,1,2,0,0,0,8,4,-156.329141289588,0,2,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.425169651275641,0,52.04,27.62,58.72,51.29,8.333333333333334,1,1,0,0,0,12,4,1,1365.666666666667,142162.5487791261,37622.59469249388,0,0,3643.157495637336 -15067,18597,33907,-9,33906,33904,1,0,20,0,0,0,2,2,-9,0,4,6.599237371939561,6.387748440830388,0,0,0,-939.4456169196079,0,1,2,2019,8,0,20,16,1,0,1,4.842269786861354,4.842269786861354,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,259,0,0,0,0,870.3305704753586 -15068,18598,33908,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1086.414013380308,0,2,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,7.248932833005671,0,35.86,64.55,-9,-9,3.333333333333333,4,2,1,1,9,8,1,1,654,1209678.867744229,872607.4011193819,250207.5765156306,0,498.0642861072927 -15069,18599,33909,33910,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.248587326269575,7.29273186922679,6,2,-55.30222642477765,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.824682711707394,7.265354361443329,55,45,53,44,8,1,1,0,0,0,11,3,1,770,1109651.583899045,121103.0568660685,660639.3343974072,0,2000.47208223545 -15069,18599,33910,33909,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.788748430817615,7.098650629883821,6,-2,-3.383167507115793,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.930834924750161,7.01523879558784,53,44,55,45,8,1,1,0,0,0,11,3,1,770,1109651.583899045,121103.0568660685,660639.3343974072,0,2000.47208223545 -15070,18600,33911,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,3.476871584800038,3.45543337233867,0,0,-1019.715111260126,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.219364486756233,3.478843612020212,60.78,44.81,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,326,-36331.29559120009,190844.0944873918,0,0,1148.807526188802 -15071,18601,33912,33914,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.15726207561792,7.947157627083196,0,1,0,-33.70682733531574,-9,3,3,2019,21,9,30,0,1,9,0,16.37489964157052,16.37489964157052,0,0,0,0,0,1,1,0,.7312883730000697,0,45.8,51.89,56.5,48.33,8.333333333333334,1,1,0,0,4,4,5,1,2348.75,181579.2512967635,148698.7589350122,185070.4149726853,158198.0311256362,4573.732653647899 -15071,18601,33913,-9,33912,33914,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-865.5631576651225,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,2348.75,181579.2512967635,148698.7589350122,185070.4149726853,158198.0311256362,4573.732653647899 -15071,18601,33914,33912,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.993849996111784,9.167845277152004,0,1,0,57.81609810605908,-9,2,2,2019,10,0,53,0,1,0,0,19.5800914106245,19.5800914106245,0,0,0,0,0,1,1,0,0,0,56.5,48.33,45.8,51.89,6.666666666666667,1,1,0,0,6,4,5,1,2348.75,181579.2512967635,148698.7589350122,185070.4149726853,158198.0311256362,4573.732653647899 -15071,18601,33915,-9,33912,33914,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.328793617306,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,2348.75,181579.2512967635,148698.7589350122,185070.4149726853,158198.0311256362,4573.732653647899 -15072,18602,33916,33917,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,8.120795708922335,7.703408989509309,21,12,-98.67795774932824,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.707849123026954,7.958552689297623,60.02,56.42,58.62,52.91,10,1,1,0,0,0,4,5,1,645.5,822387.9011093652,555098.543706313,631542.1717181655,257214.6082832207,6210.961624517715 -15072,18602,33917,33916,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,8.910509349070699,8.855221654766591,21,-12,168.7694050318277,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.970479610535354,8.776796723826537,58.62,52.91,60.02,56.42,10,1,1,0,0,6,4,5,1,645.5,822387.9011093652,555098.543706313,631542.1717181655,257214.6082832207,6210.961624517715 -15073,18603,33918,33919,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,6,3,-117.212775168501,0,2,3,2019,23,10,0,0,4,10,0,0,0,1,0,9.540294402319326,0,0,1,1,0,0,0,26.73,24.53,41.54,44.86,1.666666666666667,1,1,0,0,0,6,2,1,1328,154380.8022107771,0,0,0,1780.623625751092 -15073,18603,33919,33918,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,4.769780433435445,4.743441263225054,6,-3,-52.6348523584455,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,4.478255332689403,41.54,44.86,26.73,24.53,8.333333333333334,1,1,0,0,2,6,2,1,1328,154380.8022107771,0,0,0,1780.623625751092 -15074,18604,33920,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.58927789130234,6.235322828352936,0,0,-949.5516188880647,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.532374044894766,5.981548328739672,43.25,51.98,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,198,430950.1438114928,150035.7139161749,428054.3840955133,0,655.72688718876 -15075,18605,33921,33924,-9,-9,1,0,42,1,2,0,2,2,-9,0,4,8.326655765890937,8.330968051094938,0,5,1,-15.71925621010983,0,2,3,2019,11,0,30,30,1,1,0,15.32523263325545,15.32523263325545,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,8,13,4,1,386,-31918.24121685202,0,0,0,3661.60285113615 -15075,18605,33922,-9,33921,33924,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.6110624028724,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,386,-31918.24121685202,0,0,0,3661.60285113615 -15075,18605,33923,-9,33921,33924,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.7603782549807,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,386,-31918.24121685202,0,0,0,3661.60285113615 -15075,18605,33924,33921,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.068234942874726,7.843559433757331,0,5,-1,-105.9820583946771,0,-9,-9,2019,10,0,40,37,1,1,0,7.782153350412731,7.782153350412731,0,0,0,0,0,1,1,0,0,0,51,56,49,56,7,1,1,0,0,11,13,4,1,386,-31918.24121685202,0,0,0,3661.60285113615 -15076,18606,33925,33926,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.043862203678284,7.47225740664815,0,29,-3,74.22067167537598,0,3,2,2019,10,2,40,30,1,2,0,4.27399921227827,4.27399921227827,0,0,0,0,0,0,0,0,0,0,39.73,57.61,58.05,54.52,8.333333333333334,1,1,0,0,12,13,4,1,832.5,39297.57558721704,23688.01500911098,8282.862226351346,43256.98359434107,1978.617946280735 -15076,18606,33926,33925,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,8.059174357974541,8.064946011224693,0,29,3,10.28583864638794,0,2,2,2019,4,0,45,40,1,0,0,8.036229395200049,8.036229395200049,0,0,0,0,0,0,0,0,0,0,58.05,54.52,39.73,57.61,8.333333333333334,1,1,0,0,11,13,4,1,832.5,39297.57558721704,23688.01500911098,8282.862226351346,43256.98359434107,1978.617946280735 -15076,18607,33927,-9,33925,33926,1,1,23,0,0,0,2,2,-9,0,4,7.73437270193544,7.891342124272428,0,0,0,-924.5844931271622,0,2,3,2019,8,0,42,15,1,0,1,6.671108963490039,6.671108963490039,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,399,103854.8785536636,25502.21303955567,0,0,885.4296356744724 -15076,18608,33928,-9,33925,33926,1,1,19,0,0,0,3,3,-9,0,4,7.80954437216319,8.120811551077674,0,0,0,-961.243535393371,0,2,3,2019,11,0,54,0,1,0,1,6.146443841349758,6.146443841349758,0,0,0,0,0,0,0,0,0,0,38.98,44.11,-9,-9,6.666666666666667,1,1,0,1,1,13,3,1,173,-173034.1504439852,33608.17445308986,0,0,920.0807358993447 -15077,18609,33929,33930,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.113574016229562,8.68109694103908,0,7,-6,42.22826145045237,0,2,2,2019,8,1,38,38,1,1,0,12.02478778002857,12.02478778002857,0,0,0,0,0,0,0,0,7.312028029009735,0,62.39,56.71,52,55,10,1,1,0,0,8,13,5,1,1125,2527905.631067306,2210503.279654031,499020.1965431163,274369.0058532662,4804.958643254809 -15077,18609,33930,33929,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.905280471825483,8.807508587003024,0,7,6,126.67613965587,0,2,2,2019,9,0,38,39,1,1,0,21.34130533056656,21.34130533056656,0,0,0,0,0,0,0,0,0,0,52,55,62.39,56.71,8,1,1,0,0,8,13,5,1,1125,2527905.631067306,2210503.279654031,499020.1965431163,274369.0058532662,4804.958643254809 -15077,18609,33931,-9,33929,33930,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-962.3244816799613,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,1125,2527905.631067306,2210503.279654031,499020.1965431163,274369.0058532662,4804.958643254809 -15077,18610,33932,-9,33929,33930,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1089.530145591619,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,462,0,0,0,0,-66.11144450069422 -15078,18611,33933,-9,33935,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.7440959828468,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,891.6666666666666,57709.32318533951,63691.0209697328,0,0,2487.194445998367 -15078,18611,33934,-9,33935,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1002.513437127658,-9,2,-9,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,.2823035501423081,0,40.21,58.24,-9,-9,10,1,1,0,0,1,4,2,1,891.6666666666666,57709.32318533951,63691.0209697328,0,0,2487.194445998367 -15078,18611,33935,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,6.954379406252865,7.901526598725962,7.566060084012564,0,0,-1120.543816493192,0,1,1,2019,11,0,16,16,1,0,0,7.560222459105559,7.560222459105559,0,0,0,0,2,1,1,0,7.516670607323295,0,43.17,27.89,-9,-9,5,1,1,0,0,2,4,2,1,891.6666666666666,57709.32318533951,63691.0209697328,0,0,2487.194445998367 -15079,18612,33936,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.739611369397467,7.611589965091373,0,0,0,-982.4777098949062,0,3,3,2019,11,0,25,25,1,0,0,9.467572855085669,9.467572855085669,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,102,-224655.9396773228,36788.16390355009,0,0,914.2177438904941 -15080,18613,33937,33938,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,0,0,0,2,8,-121.6478246063126,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,42.67,49.16,7,4,1,0,0,0,7,2,0,1097,49726.73023875235,68874.96556305408,0,0,2525.688895894591 -15080,18613,33938,33937,-9,-9,1,0,29,1,3,0,3,3,-9,0,4,7.028523270969186,7.066263850350696,0,2,-8,52.80621068824075,0,3,3,2019,10,1,23,23,1,1,0,5.542321754354017,5.542321754354017,0,0,0,0,0,1,0,1,0,0,42.67,49.16,50,57,0,1,1,0,0,3,7,2,0,1097,49726.73023875235,68874.96556305408,0,0,2525.688895894591 -15080,18613,33939,-9,33938,33937,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.886959102096,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1097,49726.73023875235,68874.96556305408,0,0,2525.688895894591 -15080,18613,33940,-9,33938,33937,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.815354635298,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1097,49726.73023875235,68874.96556305408,0,0,2525.688895894591 -15081,18614,33941,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,4,7.623232981357253,7.56751373678825,6.256720476291581,0,0,-1032.405595714248,0,-9,-9,2019,13,1,33,27,1,1,0,6.068718324650791,6.068718324650791,0,0,0,0,0,1,1,0,5.872458381745754,0,40.18,62.68,-9,-9,3.333333333333333,4,2,0,0,2,4,3,0,562.3333333333334,5685.776005935778,17495.72138001061,0,0,1856.603739783928 -15081,18614,33942,-9,33941,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.9872096265816,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,3,0,562.3333333333334,5685.776005935778,17495.72138001061,0,0,1856.603739783928 -15081,18614,33943,-9,33941,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.8216114377836,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,3.606110137700279,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,3,0,562.3333333333334,5685.776005935778,17495.72138001061,0,0,1856.603739783928 -15082,18615,33944,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.458179898049892,7.29923112998038,0,0,0,-1110.797280503584,-9,-9,2,2019,20,8,36,0,1,8,0,6.025546773178974,6.025546773178974,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,3.333333333333333,1,1,0,1,8,12,3,1,481,343962.8545103158,61183.36225300079,133597.5820488406,0,779.7422082744147 -15082,18616,33945,-9,33944,-9,1,0,23,0,0,0,2,2,-9,0,3,7.218163610623899,7.04319750577208,0,0,0,-1247.590511001174,-9,2,2,2019,23,8,16,0,1,8,1,8.155498804513938,8.155498804513938,0,0,0,0,0,1,1,0,0,0,23.2,54.42,-9,-9,6.666666666666667,1,1,0,0,2,12,2,1,207,-51767.08376387885,0,0,0,1818.756061586274 -15083,18617,33946,-9,33949,33947,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1011.154553974529,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,9,4,1,607.75,949904.0605988253,563612.0227169468,482653.9999551976,98038.28681852906,3399.445114024003 -15083,18617,33947,33949,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.077049618517812,8.835503299164998,0,4,9,-6.138293628059166,0,3,3,2019,11,0,40,48,1,0,0,17.79223192143649,17.79223192143649,0,0,0,0,0,1,1,0,0,0,46.08,57.2,57.16,56.15,6.666666666666667,1,1,0,0,6,9,4,1,607.75,949904.0605988253,563612.0227169468,482653.9999551976,98038.28681852906,3399.445114024003 -15083,18617,33948,-9,33949,33947,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.7585680177493,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,607.75,949904.0605988253,563612.0227169468,482653.9999551976,98038.28681852906,3399.445114024003 -15083,18617,33949,33947,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.285194041455005,6.88214216787085,0,4,0,41.76548066811383,0,2,1,2019,7,0,20,20,1,0,0,8.951906455329157,8.951906455329157,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.08,57.2,0,1,1,0,0,6,9,4,1,607.75,949904.0605988253,563612.0227169468,482653.9999551976,98038.28681852906,3399.445114024003 -15084,18618,33950,33951,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.112582648685644,8.11726243505333,0,4,-3,-91.24124082282333,0,1,1,2019,14,2,38,38,1,2,0,10.50359169757471,10.50359169757471,0,0,0,0,0,0,0,0,0,0,39.58,57.61,53,55,6.666666666666667,1,1,0,0,7,11,5,1,568.5,1536507.672356298,569479.5275434048,689056.9718252695,0,10701.86481032502 -15084,18618,33951,33950,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.635169311547795,9.615634835929496,0,4,3,6.84553690512004,0,2,2,2019,9,0,70,55,1,1,0,26.3610915840703,26.3610915840703,0,0,0,0,0,0,0,0,7.576715397591113,0,53,55,39.58,57.61,8,1,1,0,0,1,11,5,1,568.5,1536507.672356298,569479.5275434048,689056.9718252695,0,10701.86481032502 -15084,18619,33952,-9,33950,33951,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-964.4762473260672,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.23,46.77,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,440,75385.3541167346,0,0,0,0 -15085,18620,33953,-9,-9,-9,1,1,28,0,0,1,1,0,0,0,3,0,5.203036384064039,5.447085463446683,0,0,-932.8048206892493,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,7.134147720056217,0,44.38,58.1,-9,-9,6.666666666666667,1,1,0,0,3,9,2,0,322,26925.12775674505,0,0,0,517.2301000040278 -15086,18621,33954,33955,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.449400526419127,7.324735762704273,0,34,-4,68.4343622110983,0,-9,-9,2019,12,0,24,24,1,0,0,7.234671627016459,7.234671627016459,0,0,0,0,0,0,0,0,0,0,41.82,56.44,39.89,46.89,5,2,3,0,0,12,8,5,1,513.5,2247080.857966079,142445.3928214441,1099129.445768792,0,3930.222028408152 -15086,18621,33955,33954,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.908450399099383,8.699643668217515,7.228852831745149,34,4,-88.16769034136934,0,2,2,2019,19,7,40,40,1,7,0,22.72459547894043,22.72459547894043,0,0,0,0,0,0,0,0,0,7.844817182818999,39.89,46.89,41.82,56.44,6.666666666666667,2,3,0,0,12,8,5,1,513.5,2247080.857966079,142445.3928214441,1099129.445768792,0,3930.222028408152 -15087,18622,33956,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.916155533727645,7.82314430292778,0,0,0,-1025.936458289757,0,-9,2,2019,10,0,39,39,1,0,0,8.249237849699728,8.249237849699728,0,0,0,0,0,0,0,0,0,0,62.03,39.01,-9,-9,5,1,1,0,0,7,7,3,1,489,664845.6159626972,205457.3775800959,277188.194620468,0,1450.42485428731 -15087,18623,33957,-9,33956,-9,1,1,18,0,0,0,2,2,1,0,3,6.277856327534725,6.900582291747953,5.559579464019242,0,0,-952.289051784936,-9,2,-9,2019,13,1,25,0,1,1,1,2.791778210597898,2.791778210597898,0,0,0,0,0,0,0,0,6.155399522222906,0,39.15,41.42,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,435,125710.5374431333,0,0,0,80.82438887067934 -15088,18624,33958,33960,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.316600442670863,8.282862670277611,0,5,-3,66.30429292906416,0,3,2,2019,14,2,35,35,1,2,0,12.54817543840943,12.54817543840943,0,0,0,0,0,1,1,0,0,0,42.52,57.56,43.15,40.86,3.333333333333333,3,4,0,1,9,8,3,0,649.5,390696.9890489239,26454.00895731046,377508.8904359837,37398.01995759959,2440.467086637633 -15088,18624,33959,-9,33958,33960,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.4063840125359,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,649.5,390696.9890489239,26454.00895731046,377508.8904359837,37398.01995759959,2440.467086637633 -15088,18624,33960,33958,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,0,0,0,5,3,36.31353928240308,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,40.86,42.52,57.56,8.333333333333334,3,4,1,1,0,8,3,0,649.5,390696.9890489239,26454.00895731046,377508.8904359837,37398.01995759959,2440.467086637633 -15088,18624,33961,-9,33958,33960,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.1020128939467,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,649.5,390696.9890489239,26454.00895731046,377508.8904359837,37398.01995759959,2440.467086637633 -15089,18625,33962,33963,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.341390152437285,6.658898798929135,0,31,4,-83.34035330068143,0,3,3,2019,10,0,10,13,1,0,0,5.475548116596709,5.475548116596709,0,0,0,0,0,0,0,0,4.051930032137659,0,57.16,56.15,50.01,52.64,6.666666666666667,1,1,0,0,12,9,5,1,261,678967.0588465587,163210.2221986493,426998.7330847348,72575.7748376486,4530.363969665455 -15089,18625,33963,33962,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.322137641445183,9.494720835233915,7.157986035839288,9,-4,-16.42188836507055,0,-9,-9,2019,12,0,37,37,1,0,0,34.72751117316118,34.72751117316118,0,0,0,0,0,0,0,0,3.348833675983053,7.268290156681696,50.01,52.64,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,261,678967.0588465587,163210.2221986493,426998.7330847348,72575.7748376486,4530.363969665455 -15089,18626,33964,-9,33962,33963,1,1,23,0,0,0,2,2,-9,0,4,7.550723875503051,7.6752215101388,0,0,0,-930.7216304685177,0,2,1,2019,6,0,44,54,1,0,1,6.376417438004885,6.376417438004885,0,0,0,0,0,0,0,0,1.353161190767014,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,439,41569.68686039157,51964.75527335718,0,0,900.5355842757745 -15090,18627,33965,-9,33966,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.5605828275662,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,1250,214033.8085222123,-95422.81091298044,118962.4422476307,-43.47689754866406,2508.986909296655 -15090,18627,33966,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.673549916049032,9.248623257099862,6.51282426908183,0,0,-1026.289034966614,0,2,3,2019,8,1,38,38,1,1,0,22.30197360331502,22.30197360331502,0,0,0,0,0,1,1,0,6.894136932958309,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,1250,214033.8085222123,-95422.81091298044,118962.4422476307,-43.47689754866406,2508.986909296655 -15091,18628,33967,33968,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.654107582205064,8.620203448342318,0,25,2,51.08168701443989,0,2,2,2019,8,0,36,40,1,0,0,16.40747173103539,16.40747173103539,0,0,0,0,2,0,0,0,1.252444379686967,0,50.57,52.35,52.27,58.55,8.333333333333334,1,1,0,0,9,9,5,1,823.5,1717079.942709054,1272015.511164377,311466.2172276027,89268.61840529277,4440.986326524149 -15091,18628,33968,33967,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.938185446329751,9.245044485633404,0,26,-2,-30.24590612079678,0,2,1,2019,8,0,39,42,1,0,0,19.5411083714818,19.5411083714818,0,0,0,0,0,0,0,0,0,0,52.27,58.55,50.57,52.35,8.333333333333334,1,1,0,0,10,9,5,1,823.5,1717079.942709054,1272015.511164377,311466.2172276027,89268.61840529277,4440.986326524149 -15091,18629,33969,-9,33967,33968,1,0,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1073.505782353492,-9,2,1,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,903,79137.92104966108,0,0,0,0 -15092,18630,33970,-9,33971,-9,1,1,60,0,0,0,2,2,-9,1,1,8.349442721426319,8.900069077046295,6.582831065728668,0,0,-1054.463681550891,0,3,3,2019,30,12,50,48,1,12,0,9.117871086527076,9.117871086527076,0,0,0,0,27,1,1,0,6.539537770995349,7.109724708287946,37.74,19.51,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,325,905317.8961607019,787566.7866937349,67835.35146308367,-3857.244599107304,1924.335518380096 -15092,18631,33971,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.59307636295603,6.547053663719396,0,0,-1024.475482020084,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,14.685430215754,0,0,1,1,0,4.069443727657172,6.255637806528828,48.2,20.19,-9,-9,5,1,1,0,0,0,4,2,0,1269,133344.2700603139,43321.04306763063,0,0,1216.170217946994 -15093,18632,33972,-9,-9,-9,1,1,62,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1033.547375867251,0,1,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.485128302660238,0,52.58,39.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,254,629964.670269574,-4688.582444140284,201973.6429421357,0,418.9408548635071 -15094,18633,33973,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-937.704983162565,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35.05,35.48,-9,-9,5,1,1,0,0,0,13,1,1,69,418204.6492737256,336467.6382392904,0,0,591.9017524678685 -15095,18634,33974,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.597766065177108,8.69319148569039,6.26571946413165,0,0,-934.7727096693294,0,3,3,2019,12,1,48,50,1,1,0,13.81869618356045,13.81869618356045,0,0,0,0,2,1,1,0,4.919383153868929,6.495692462842541,48.99,43.66,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,329,530714.0284005092,381532.9409623087,232122.0063927424,0,2389.288543988397 -15096,18635,33975,-9,33977,-9,1,1,26,0,1,0,2,2,-9,0,4,7.588715381163404,8.152396099074148,0,0,0,-1024.937218745372,0,2,2,2019,11,0,37,37,1,0,1,7.828394617250924,7.828394617250924,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,5,1,3,0,134,122779.2637662829,0,0,0,1584.157102305142 -15096,18636,33976,-9,33977,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-875.4251271106102,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,1,3,0,576.5,-3871.244880767888,-5323.071951518,0,0,1583.96682463874 -15096,18636,33977,-9,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,7.801129295011068,7.559030600762645,0,0,0,-1034.15998110859,0,3,-9,2019,10,1,37,37,1,1,0,7.523496471114884,7.523496471114884,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,10,1,1,0,0,10,1,3,0,576.5,-3871.244880767888,-5323.071951518,0,0,1583.96682463874 -15097,18637,33978,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.597564366612712,9.569414670545262,0,7,-3,-36.0986994640997,0,1,1,2019,4,0,38,30,1,0,0,53.28703944953219,53.28703944953219,0,0,0,0,2,0,0,0,5.766390210009397,0,57.9,51.84,51.24,58.84,8.333333333333334,1,1,0,0,7,4,5,1,2389,410118.1572268438,218164.0322422741,109302.7338779441,31270.45002638756,12947.31292212267 -15097,18638,33979,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.743136302118801,8.116170181004787,0,7,3,140.5015328859486,0,2,2,2019,11,2,40,40,1,2,0,8.15251620767738,8.15251620767738,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.9,51.84,6.666666666666667,1,1,0,0,9,4,5,1,318,251026.0629605872,221083.4040100536,0,0,1123.894631645236 -15098,18639,33980,33981,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,9.111120869217556,9.079704244099494,36,6,49.4017956960636,0,3,2,2019,17,6,0,0,4,6,0,0,0,1,0,93.5844500855481,0,0,1,1,0,8.771467178590918,8.98123584669162,33.32,33.92,51.83,57.2,5,1,1,0,0,6,4,5,1,491,740601.6367639202,413704.226468245,203248.5341485983,0,4767.212994148736 -15098,18639,33981,33980,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,37,-6,-95.18964865819868,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,2.836723891223491,0,51.83,57.2,33.32,33.92,3.333333333333333,1,1,0,0,7,4,5,1,491,740601.6367639202,413704.226468245,203248.5341485983,0,4767.212994148736 -15099,18640,33982,-9,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,8.269628492507191,7.944779013180534,0,0,0,-983.6940981271634,0,3,3,2019,11,1,38,40,1,1,0,9.808921745922065,9.808921745922065,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,8,4,3,1,925.5,97793.08781064603,-5208.725910812494,0,0,1263.341736791822 -15099,18640,33983,-9,-9,33982,1,0,16,0,1,1,2,0,-9,0,3,0,3.893875740714423,4.10082383647603,0,0,-969.054278858943,-9,-9,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.114681529113626,0,42.97,54.59,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,925.5,97793.08781064603,-5208.725910812494,0,0,1263.341736791822 -15100,18641,33984,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.3032278016609,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.496944729387505,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,747,157410.5091283019,0,97773.72794602117,0,1523.547618571154 -15100,18642,33985,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1000.64517166493,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,11,1,0,1178,-6152.807398771919,0,0,0,639.693336558501 -15101,18643,33986,33987,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,44,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.12,54.8,38.77,27.1,10,1,1,0,0,0,6,1,1,306,208269.5431956016,0,193829.4003799373,0,996.7782285593909 -15101,18643,33987,33986,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,44,3,0,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,1.58708229344791,3.097489855697364,20.97022766092151,0,1,1,0,0,0,38.77,27.1,60.12,54.8,3.333333333333333,1,1,0,0,0,6,1,1,306,208269.5431956016,0,193829.4003799373,0,996.7782285593909 -15102,18644,33988,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,7.876686242323731,7.751417864495599,0,0,0,-975.2998871056602,0,3,3,2019,8,0,21,23,1,0,0,10.39258434002671,10.39258434002671,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,866,484239.1606578578,250460.7495877767,25676.89334084206,0,1578.678952596667 -15103,18645,33989,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.216307253199124,7.219880555697483,0,0,-1022.558119196226,0,2,2,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,6.513284370043241,7.135570887440183,32.82,32.51,-9,-9,3.333333333333333,1,1,0,1,8,1,3,1,1141,491629.5384658179,287199.7441215864,197391.005819898,0,1300.56114187679 -15103,18646,33990,-9,33989,-9,1,0,31,0,0,0,1,1,-9,0,3,8.081937148817559,7.682317906980469,0,0,0,-855.1392595008163,0,1,1,2019,11,0,37,77,1,0,0,9.451579539736072,9.451579539736072,0,0,0,0,0,1,1,0,3.2660641616467,0,52.79,41.71,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,197,-194453.3355485376,46267.50316338211,0,0,1194.641790749703 -15104,18647,33991,33992,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.460564382915377,8.287128848335074,0,5,-1,-7.61681752917345,0,-9,-9,2019,10,0,36,38,1,1,0,15.91603952278982,15.91603952278982,0,0,0,0,0,1,1,0,0,0,49,58,57.06,57.76,7,4,1,0,0,1,11,5,0,586,185933.6189025226,-5186.685946452891,98511.68890657839,79432.7656890042,3490.957621094707 -15104,18647,33992,33991,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.286004552698017,8.065662778257437,0,5,1,-38.06329927661064,0,2,2,2019,6,0,37,38,1,0,0,11.87853239941282,11.87853239941282,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49,58,10,1,1,0,0,10,11,5,0,586,185933.6189025226,-5186.685946452891,98511.68890657839,79432.7656890042,3490.957621094707 -15104,18647,33993,-9,33992,33991,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-937.3751089329635,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,0,586,185933.6189025226,-5186.685946452891,98511.68890657839,79432.7656890042,3490.957621094707 -15105,18648,33994,33995,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.26807627311211,8.527886991072068,0,15,6,191.1653003353581,0,2,3,2019,11,3,48,45,1,3,0,11.73315973002339,11.73315973002339,0,0,0,0,0,0,0,0,2.287513061592672,0,48.14,53.42,51.24,58.84,6.666666666666667,1,1,0,0,10,10,5,1,622.5,1846229.643852061,1225651.581158844,471579.0882462581,0,4253.929044253958 -15105,18648,33995,33994,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.822066319633675,8.877308532168655,0,15,-6,-42.34712865627567,0,2,3,2019,11,0,41,45,1,0,0,17.55760198471922,17.55760198471922,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.14,53.42,8.333333333333334,1,1,0,0,8,10,5,1,622.5,1846229.643852061,1225651.581158844,471579.0882462581,0,4253.929044253958 -15106,18649,33996,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-977.0277554687069,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,35.78,-9,-9,5,1,1,0,0,2,13,1,0,855,77125.25659173103,0,0,0,982.4496834866484 -15107,18650,33997,33998,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,5,-11,103.7589543931355,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.53,47.65,57.33,40.23,6.666666666666667,1,1,0,1,0,13,2,0,895,157865.2117928499,0,273467.7999531082,0,1264.579325073781 -15107,18650,33998,33997,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.39937156223287,4.289245283095892,5,11,-46.44959929284526,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.891846974737529,57.33,40.23,40.53,47.65,8.333333333333334,1,1,0,1,0,13,2,0,895,157865.2117928499,0,273467.7999531082,0,1264.579325073781 -15108,18651,33999,34000,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.18905550209325,8.363654456959418,0,1,-4,61.8620240509434,-9,-9,-9,2019,13,3,35,0,1,3,0,10.63470531300785,10.63470531300785,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,3,12,4,0,436.5,36891.95190028023,-52401.79042131286,138982.7459097961,63061.32628609025,1998.046892619071 -15108,18651,34000,33999,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.099999248898907,7.11650170584391,0,1,4,-39.09463726988451,-9,2,2,2019,8,0,12,0,1,0,0,10.60347629467447,10.60347629467447,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,10,1,1,0,0,7,12,4,0,436.5,36891.95190028023,-52401.79042131286,138982.7459097961,63061.32628609025,1998.046892619071 -15109,18652,34001,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.75070732126154,6.898402933420241,0,0,-926.2689545955583,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.818323391893068,0,43.97349240199653,2,1,1,0,3.036964887447792,7.389381514592774,60.05,22.38,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,556,337639.7646232073,148349.363733891,194592.117645206,0,1940.918884368823 -15109,18653,34002,-9,34001,-9,1,0,58,0,0,0,2,2,-9,1,3,7.156125978391403,7.362336433704123,0,0,0,-884.6506322840708,0,2,2,2019,7,0,16,16,1,0,0,10.18893142696541,10.18893142696541,0,0,0,0,0,1,1,0,0,0,45.23,45.63,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,821,-357.1227591134938,153057.8845466807,0,0,550.2268828022617 -15110,18654,34003,-9,34004,34005,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.0161020229366,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,320.25,-3375.811492077213,0,110474.9435651825,40892.87117088603,1156.522845290534 -15110,18654,34004,34005,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.259734123559523,7.027162206154704,0,11,2,32.9815380926447,0,1,2,2019,14,2,22,0,1,2,0,7.232793798116835,7.232793798116835,0,0,0,0,0,1,1,0,0,0,48.21,50.73,50.03,55.3,8.333333333333334,1,1,0,0,12,4,2,1,320.25,-3375.811492077213,0,110474.9435651825,40892.87117088603,1156.522845290534 -15110,18654,34005,34004,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,5.00464629411463,5.063654510384125,0,11,-2,-46.91241724138851,0,2,2,2019,8,0,30,50,1,0,0,1.04593972156874,1.04593972156874,0,0,0,0,0,1,1,0,0,0,50.03,55.3,48.21,50.73,8.333333333333334,1,1,0,0,10,4,2,1,320.25,-3375.811492077213,0,110474.9435651825,40892.87117088603,1156.522845290534 -15110,18654,34006,-9,34004,34005,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.683895093902,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,320.25,-3375.811492077213,0,110474.9435651825,40892.87117088603,1156.522845290534 -15111,18655,34007,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.416805180153704,7.236700294683398,0,0,-931.9718484037373,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.132984745510157,55.02,50.34,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,595,562793.6157396226,521872.3855559913,0,0,193.5561477448983 -15112,18656,34008,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,4.7590916738544,5.002923266617601,0,0,-898.8372410812028,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.296098633989462,4.584774594910705,34.07,20.89,-9,-9,5,1,1,0,1,0,7,2,1,580,366145.4025697665,3391.169975566609,225570.564150646,0,1118.862358342321 -15113,18657,34009,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.263274864066825,6.626412311837472,0,0,-960.1458992969065,0,2,3,2019,18,6,0,0,4,6,0,0,0,1,0,11.53329073079809,0,0,1,1,0,4.021629918793611,6.795731051503417,51.81,26.18,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,910,418076.4845065406,81421.38459495512,103216.7759901512,0,1610.928770047035 -15114,18658,34010,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.231957392924176,6.503075336774881,0,0,-883.9951500504578,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,1.564919493465868,6.834450926846293,56.64,29.75,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,349,356429.9350165259,31140.32371182152,331243.3723748622,0,1688.708696696787 -15115,18659,34011,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.603370066944308,8.25376101089277,4.181710759851506,0,0,-1075.82125895679,0,1,1,2019,11,0,39,37,1,0,0,14.92433913840239,14.92433913840239,0,0,0,0,0,1,1,0,5.259070989886677,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,700,-12497.70273206925,8836.187479566865,0,0,1721.222761811413 -15116,18660,34012,-9,-9,-9,1,0,66,0,2,0,3,3,-9,0,1,0,0,0,0,0,-943.5579290648029,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,103.4153838062905,0,0,1,1,0,0,0,35.01,28.95,-9,-9,5,2,3,0,0,0,6,1,1,1378,0,0,0,0,1523.429031947084 -15116,18661,34013,34016,34012,-9,1,1,36,0,2,0,1,1,-9,0,4,7.859760209559547,7.964885003621515,0,7,8,-46.19585311500732,0,3,3,2019,19,8,37,37,1,8,0,9.814789577967762,9.814789577967762,0,0,0,0,42,1,1,0,0,0,28.14,57.31,36.03,53.83,6.666666666666667,2,3,0,0,13,6,3,1,578.75,-4064.44871886215,37698.34653316274,194814.6038176401,123717.5208849466,2449.012724897186 -15116,18661,34014,-9,34016,34013,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-843.7788278871934,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,578.75,-4064.44871886215,37698.34653316274,194814.6038176401,123717.5208849466,2449.012724897186 -15116,18661,34015,-9,34016,34013,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.21125677624,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,578.75,-4064.44871886215,37698.34653316274,194814.6038176401,123717.5208849466,2449.012724897186 -15116,18661,34016,34013,-9,-9,1,0,28,0,2,0,3,3,-9,1,3,0,0,0,7,-8,36.50948119352419,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,42,1,1,0,0,0,36.03,53.83,28.14,57.31,6.666666666666667,2,3,0,0,0,6,3,1,578.75,-4064.44871886215,37698.34653316274,194814.6038176401,123717.5208849466,2449.012724897186 -15117,18662,34017,34018,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.913172543933565,6.775325141572884,41,-6,116.6973575951603,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.23392867770561,7.022855709914539,57.16,56.15,53,47,8.333333333333334,1,1,0,0,0,9,3,1,1347.5,854043.6854186719,408305.7177863439,370230.5914216462,0,2590.913425638032 -15117,18662,34018,34017,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.649735528904785,8.050894648054822,7,6,54.97312146929995,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.333909913193221,7.840563448248593,53,47,57.16,56.15,8,1,1,0,0,0,9,3,1,1347.5,854043.6854186719,408305.7177863439,370230.5914216462,0,2590.913425638032 -15118,18663,34019,34020,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.369095497557762,5.106065223837985,6,-5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.61788474560876,58.11,40.74,39.6,49.52,10,1,1,0,0,0,9,2,1,1343,78577.29677961499,130826.8292674018,0,0,1317.485947135684 -15118,18663,34020,34019,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.673882625580397,4.42757188755342,6,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.690515245251919,39.6,49.52,58.11,40.74,6.666666666666667,1,1,0,0,0,9,2,1,1343,78577.29677961499,130826.8292674018,0,0,1317.485947135684 -15119,18664,34021,34022,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,9.29943432561117,9.284688942774748,0,27,4,-45.49945553784904,0,3,2,2019,6,0,50,65,1,0,0,34.84962073021399,34.84962073021399,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,54.51,6.666666666666667,2,3,0,0,11,4,5,1,237,2072331.043328767,1493706.626306465,456358.8725840403,70221.07208204191,6258.106830982062 -15119,18664,34022,34021,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.118695919517494,8.105681206628626,0,27,-4,55.32342000773016,0,3,2,2019,7,0,39,40,1,0,0,10.10133462283977,10.10133462283977,0,0,0,0,0,0,0,0,6.842504704961915,0,52,54.51,54.2,57.49,5,2,3,0,0,9,4,5,1,237,2072331.043328767,1493706.626306465,456358.8725840403,70221.07208204191,6258.106830982062 -15119,18665,34023,-9,34022,34021,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-939.2629021651888,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,10,2,3,0,1,4,4,1,1,392,0,0,0,0,426.4266137578759 -15119,18666,34024,-9,34022,34021,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1194.677676527696,-9,2,3,2019,8,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,1,4,1,1,313,-162324.3506383694,0,0,0,0 -15120,18667,34025,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.392937075856,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,14.44694860744221,0,135.7601786117255,0,1,1,0,5.647589651266943,0,54,44,-9,-9,8,1,1,0,0,0,13,1,0,435,179173.5756498751,0,0,0,156.730874594783 -15121,18668,34026,-9,34029,34027,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1212.649615339958,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,347.5,249889.9558422392,46643.1983502178,293933.3101396891,135799.4849298888,2775.560936348796 -15121,18668,34027,34029,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.162612491616771,8.702894947950314,0,4,10,84.11585878151149,0,1,2,2019,19,7,53,50,1,7,0,15.25207217625202,15.25207217625202,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.16,56.15,5,1,1,0,0,10,7,4,0,347.5,249889.9558422392,46643.1983502178,293933.3101396891,135799.4849298888,2775.560936348796 -15121,18668,34028,-9,34029,34027,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.3223446296639,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,347.5,249889.9558422392,46643.1983502178,293933.3101396891,135799.4849298888,2775.560936348796 -15121,18668,34029,34027,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,6.633216113825882,6.726657072054989,0,4,-10,11.89128799388891,0,2,1,2019,9,0,10,12,1,0,0,8.447740366842639,8.447740366842639,0,0,0,0,0,1,1,0,.8551607804322935,0,57.16,56.15,44.19,58.01,10,1,1,0,0,7,7,4,0,347.5,249889.9558422392,46643.1983502178,293933.3101396891,135799.4849298888,2775.560936348796 -15122,18669,34030,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1016.742539535743,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.08,18.64,-9,-9,5,1,1,0,0,0,5,1,0,309,23875.75013934256,0,0,0,1861.874401061369 -15123,18670,34031,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,6.209209680732418,5.794218644241817,0,0,-1019.903630902856,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.345369807177435,6.048325401256846,55.36,38.34,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,359,467913.3838885685,261146.0507508646,0,0,321.8969063787194 -15124,18671,34032,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.514352078791478,7.726703493760874,0,0,-1029.97325831785,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.585098347173119,7.542236080649218,60.29,52.11,-9,-9,10,1,1,0,0,0,4,3,1,550,217149.3365587381,174683.4498961479,0,0,2098.086110170364 -15125,18672,34033,34034,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,7.02124161689116,7.138932915484286,6,0,103.7956577114508,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,3.637980815422005,0,0,1,1,0,6.567162355181811,7.119011792902306,54.53,26.45,52.3,57.2,6.666666666666667,1,1,0,0,0,7,3,1,744,1163193.967797261,526780.7894595945,368702.859169007,0,3903.303948461557 -15125,18672,34034,34033,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.222537331585215,7.869460476698531,36,0,99.68178826079645,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.82158468014427,7.742843348787474,52.3,57.2,54.53,26.45,8.333333333333334,1,1,0,0,0,7,3,1,744,1163193.967797261,526780.7894595945,368702.859169007,0,3903.303948461557 -15126,18673,34035,-9,34036,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.396074805658,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,0,444,0,0,0,0,1770.960336986829 -15126,18673,34036,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1004.305545359383,0,-9,-9,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,5,2,3,1,0,0,6,1,0,444,0,0,0,0,1770.960336986829 -15127,18674,34037,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.430432388628057,8.640990877135154,0,0,0,-1022.045621231987,0,1,2,2019,1,0,37,52,1,0,0,14.1105052200797,14.1105052200797,0,0,0,0,0,0,0,0,3.440861870027749,0,58.15,52.91,-9,-9,10,1,1,0,0,7,8,4,0,758,-31512.7543794871,-86200.55605202052,0,0,1974.873476315489 -15127,18675,34038,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.534971761489329,8.509270647361241,0,0,0,-989.347362654121,-9,-9,-9,2019,1,0,30,0,1,0,0,19.54371843034034,19.54371843034034,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,8,5,0,546,7373.407187324798,-12366.16662968011,0,0,1873.458034761135 -15127,18676,34039,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.840832615453849,7.512924910254522,0,0,0,-983.720123629131,-9,-9,-9,2019,10,0,40,0,1,1,0,6.557625236964882,6.557625236964882,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,3,0,198,-8233.178230029964,0,0,0,1285.446434842317 -15127,18677,34040,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.295411520510624,8.241611799899824,0,0,0,-1055.010044680829,-9,-9,-9,2019,10,0,40,0,1,1,0,10.70325037574151,10.70325037574151,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,4,0,551,136621.2157964438,0,0,0,1575.272703116681 -15128,18678,34041,34042,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.897133725177437,6.873145403738645,0,30,-5,22.78124813029227,0,2,-9,2019,9,0,24,18,1,0,0,5.615408316109656,5.615408316109656,0,0,0,0,0,0,0,0,0,0,44.09,49.97,50.18,44.59,8.333333333333334,1,1,0,0,9,8,5,1,329,875681.3020379116,499284.7121528041,183957.0841303638,80194.25405504864,3474.697845534496 -15128,18678,34042,34041,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.122775467711829,9.045438869770127,0,30,5,-121.9798841256031,0,-9,-9,2019,15,3,40,40,1,3,0,27.00391096543161,27.00391096543161,0,0,0,0,0,0,0,0,4.527093163688222,0,50.18,44.59,44.09,49.97,6.666666666666667,1,1,0,0,9,8,5,1,329,875681.3020379116,499284.7121528041,183957.0841303638,80194.25405504864,3474.697845534496 -15128,18679,34043,-9,34041,34042,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-988.4617756060409,-9,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.96,62.06,-9,-9,8.333333333333334,1,1,1,0,0,8,1,1,48,-13641.41684849486,0,0,0,0 -15128,18680,34044,-9,34041,34042,1,0,19,0,0,0,2,2,-9,0,4,8.176033130110698,8.211074031304637,0,0,0,-928.4939975146277,0,2,2,2019,12,3,40,8,1,3,1,11.31850841092592,11.31850841092592,0,0,0,0,0,0,0,0,0,0,41.36,59.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,1750,-227600.635241,0,0,0,1685.746513321618 -15129,18681,34045,34046,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.658342586099622,5.620508114123353,9,9,77.261011068049,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.735813224644325,47.77,50.95,47.45,60.44,8.333333333333334,1,1,0,0,7,9,3,1,648.5,805507.5449018632,456856.2488446003,358979.5333348163,0,2273.308415696689 -15129,18681,34046,34045,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.233061146354222,8.304907935460136,0,9,0,-115.2222649799081,0,-9,-9,2019,9,0,9,38,1,0,0,38.05834384109424,38.05834384109424,0,0,0,0,0,1,1,0,0,0,47.45,60.44,47.77,50.95,10,1,1,0,0,10,9,3,1,648.5,805507.5449018632,456856.2488446003,358979.5333348163,0,2273.308415696689 -15130,18682,34047,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,6.447714750910824,5.721075141071395,0,0,-854.1423259033093,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.9922332443290633,0,0,1,1,0,0,6.073160157155514,55.2,9.220000000000001,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,1584,49038.19726402622,30727.18420083875,0,0,779.0837758401974 -15131,18683,34048,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.826016724091,0,3,3,2019,18,3,0,0,4,3,0,0,0,1,0,21.58706812744873,0,0,1,1,0,0,0,38.49,24.49,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,523,-54146.27646546059,0,0,0,1025.146944398242 -15132,18684,34049,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,6.848135782702879,6.79847285831964,0,0,0,-783.2433298769311,0,3,3,2019,7,0,18,18,1,0,0,5.28313188323239,5.28313188323239,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,5,2,0,93,82643.2471544899,20781.04204623725,0,0,1498.751034928279 -15133,18685,34050,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.406045394592521,8.62127505671385,0,0,0,-1052.512144920841,0,3,3,2019,11,3,36,36,1,3,0,18.5568205187767,18.5568205187767,0,0,0,0,0,0,0,0,0,0,55.14,50.76,-9,-9,5,1,1,0,0,11,13,5,1,281,1086185.159137965,983299.1188213628,0,0,1741.221804718315 -15134,18686,34051,-9,34053,34052,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.489865759502,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,431,189584.5365633355,335081.1414064246,112380.250960479,72643.60697379724,2298.640354741958 -15134,18686,34052,34053,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.173426568424302,8.192271838285855,0,11,2,63.64740577613877,-9,3,3,2019,6,0,39,0,1,0,0,10.67967540588708,10.67967540588708,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,2,3,0,0,10,2,3,1,431,189584.5365633355,335081.1414064246,112380.250960479,72643.60697379724,2298.640354741958 -15134,18686,34053,34052,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,11,-2,-168.0703502192024,-9,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,51.83,57.2,6.666666666666667,2,3,1,0,5,2,3,1,431,189584.5365633355,335081.1414064246,112380.250960479,72643.60697379724,2298.640354741958 -15135,18687,34054,34055,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,6.055279638861848,6.062984912726656,0,3,2,15.75944255596437,0,3,3,2019,10,0,16,16,1,0,0,4.152290442359682,4.152290442359682,0,0,0,0,0,1,1,0,1.769636136130001,0,49.42,50.19,46.32,53.44,8.333333333333334,1,1,0,0,10,11,2,1,636,97280.07426010619,0,0,0,618.0195291960484 -15135,18687,34055,34054,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,4.959337144128733,4.78970849408522,0,3,-2,45.85304374689798,0,-9,-9,2019,10,0,50,50,1,0,0,.3418033377733143,.3418033377733143,0,0,0,0,0,1,1,0,0,0,46.32,53.44,49.42,50.19,8.333333333333334,1,1,0,0,12,11,2,1,636,97280.07426010619,0,0,0,618.0195291960484 -15135,18687,34056,-9,34054,34055,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-898.1933003825028,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,0,11,2,1,636,97280.07426010619,0,0,0,618.0195291960484 -15136,18688,34057,34058,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.704843217327527,7.956140386468332,0,8,0,3.650639627607619,0,-9,-9,2019,6,0,36,36,1,0,0,9.159039480029595,9.159039480029595,0,0,0,0,0,0,0,0,0,0,59.53,56.44,55.96,49.93,8.333333333333334,1,1,0,0,6,11,3,1,746.5,1329319.566919309,0,1480337.512953909,453987.8930975211,1402.721220274795 -15136,18688,34058,34057,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,1.267534258116865,1.471149885661832,0,8,0,36.85839903758246,0,-9,-9,2019,10,0,45,40,1,0,0,.0077127055734012,.0077127055734012,0,0,0,0,0,0,0,0,0,0,55.96,49.93,59.53,56.44,6.666666666666667,1,1,0,0,9,11,3,1,746.5,1329319.566919309,0,1480337.512953909,453987.8930975211,1402.721220274795 -15137,18689,34059,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.594939811606409,6.439465948684195,0,0,-986.5916924915138,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.787929341553563,6.543680964536414,63.26,37,-9,-9,1.666666666666667,1,1,0,0,0,10,2,0,367,353028.7607580152,151798.0209889863,171360.6583883117,0,1230.470143954688 -15138,18690,34060,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.470830123255217,7.231918739570883,0,0,-1009.891932671587,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.740170702859963,6.803265380923448,52,45,-9,-9,8,1,1,0,0,0,4,2,1,509,382272.0724263407,154153.0267982731,344166.8245040223,0,969.4073837159784 -15139,18691,34061,34063,-9,-9,1,1,36,0,1,0,3,3,-9,0,4,8.563983463119589,8.490344126558659,0,2,3,32.07130671123878,-9,-9,-9,2019,10,0,40,0,1,1,0,19.64065416849047,19.64065416849047,0,0,0,0,0,1,1,0,3.834578407168626,0,50,57,16.67,52.38,7,4,3,0,0,1,5,4,1,620.3333333333334,196016.7784220948,59658.65891233618,180300.1158243716,95999.67147051287,3302.494055842241 -15139,18691,34062,-9,34063,34061,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.3507070161218,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,4,1,620.3333333333334,196016.7784220948,59658.65891233618,180300.1158243716,95999.67147051287,3302.494055842241 -15139,18691,34063,34061,-9,-9,1,0,33,0,1,0,1,1,-9,0,2,7.811563405057489,7.660383153473774,0,2,-3,-29.42880910525219,0,-9,-9,2019,20,8,37,0,1,8,0,6.689854863306481,6.689854863306481,0,0,0,0,0,1,1,0,0,0,16.67,52.38,50,57,1.666666666666667,2,3,0,0,4,5,4,1,620.3333333333334,196016.7784220948,59658.65891233618,180300.1158243716,95999.67147051287,3302.494055842241 -15140,18692,34064,-9,34065,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-989.4695029022432,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,8,5,1,861,20328.17126914114,-19282.83050924783,0,0,3499.712919605149 -15140,18692,34065,-9,-9,-9,1,0,52,0,2,0,2,2,-9,1,3,9.099711468366046,9.393190902690282,5.693376954650577,0,0,-813.7006215509376,0,2,-9,2019,10,0,36,37,1,0,0,30.67810041883893,30.67810041883893,0,0,0,0,2,1,1,0,6.194646424203708,0,64.79000000000001,45.93,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,861,20328.17126914114,-19282.83050924783,0,0,3499.712919605149 -15140,18692,34066,-9,34065,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.021565325206,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,861,20328.17126914114,-19282.83050924783,0,0,3499.712919605149 -15141,18693,34067,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.686461592848794,7.734130860664362,5.423390088103663,0,0,-990.6832089088333,0,3,3,2019,8,0,35,37,1,0,0,8.291648981227642,8.291648981227642,0,0,0,0,0,1,1,0,5.284107842530136,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,836,44750.91761813867,15574.03038325015,23035.01508791194,101451.2390254675,2044.197646010125 -15141,18693,34068,-9,34067,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.0648933273668,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,836,44750.91761813867,15574.03038325015,23035.01508791194,101451.2390254675,2044.197646010125 -15142,18694,34069,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.07669259042272,9.249261285047384,0,0,0,-966.021652588634,0,3,3,2019,9,0,40,40,1,0,0,24.61313939119761,24.61313939119761,0,0,0,0,0,0,0,0,.8821878053396974,0,53.33,53.71,-9,-9,3.333333333333333,1,1,0,0,8,4,5,1,726,68551.27314324839,236200.249610957,94284.46567535029,85358.06887854471,3234.946256711296 -15142,18695,34070,-9,-9,34069,1,0,23,0,0,0,2,2,-9,0,4,7.805799870148706,7.866062901163899,0,0,0,-1068.237823990233,0,2,2,2019,7,0,47,47,1,0,1,7.787713375000139,7.787713375000139,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,316,-63802.09082667119,697.7153582643077,0,0,1101.069354354674 -15143,18696,34071,-9,34073,34072,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.430001144166,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,536.6666666666666,61197.71455665699,9193.633394190161,0,0,4438.970641681735 -15143,18696,34072,34073,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.131430555936381,8.035002213197869,0,6,10,26.58764737162042,0,3,3,2019,12,0,39,-9,1,0,0,7.618998039888332,7.618998039888332,0,0,0,0,0,1,1,0,2.640906738645902,0,62.66,52.4,45.5,49.22,10,1,1,0,0,11,12,4,0,536.6666666666666,61197.71455665699,9193.633394190161,0,0,4438.970641681735 -15143,18696,34073,34072,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,8.291373714550982,8.132938494824113,0,6,-10,-51.1262059254975,0,3,2,2019,10,0,45,44,1,0,0,10.11690040807276,10.11690040807276,0,0,0,0,0,1,1,0,0,0,45.5,49.22,62.66,52.4,8.333333333333334,1,1,0,0,13,12,4,0,536.6666666666666,61197.71455665699,9193.633394190161,0,0,4438.970641681735 -15144,18697,34074,34075,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.203585201286424,8.461736604569388,0,5,-1,-13.02432729806793,0,-9,-9,2019,12,1,37,37,1,1,0,12.79965025934263,12.79965025934263,0,0,0,0,0,0,0,0,0,0,45.02,47.07,46.08,57.2,6.666666666666667,1,1,0,0,8,1,4,1,1207.5,184662.6798065963,51339.64292338131,0,0,2682.944110092122 -15144,18697,34075,34074,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.0709886715031,7.688201653720738,0,5,1,-78.86162273191225,0,3,2,2019,12,0,38,38,1,0,0,6.925043354812097,6.925043354812097,0,0,0,0,0,0,0,0,0,0,46.08,57.2,45.02,47.07,5,1,1,0,0,10,1,4,1,1207.5,184662.6798065963,51339.64292338131,0,0,2682.944110092122 -15145,18698,34076,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,2,0,0,0,0,0,-968.4186951311945,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,10.23,60.39,-9,-9,3.333333333333333,1,1,0,1,2,6,1,0,2493,20897.25700069773,0,0,0,0 -15146,18699,34077,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.736616683284359,4.775139461363498,0,0,-894.4422207122008,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.065520149494739,64.23999999999999,44.83,-9,-9,8.333333333333334,1,1,0,0,3,6,2,1,1779,-29632.2771055371,-118353.0737276965,164805.0155526533,0,731.406588479109 -15147,18700,34078,-9,34079,34081,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.2389019714037,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,512.2,147325.4989441546,-33091.43179679908,297148.7034143485,195409.4051283156,3505.319156142561 -15147,18700,34079,34081,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,8.243244303684197,8.381677276763236,0,6,0,-18.47910104828095,0,-9,-9,2019,7,0,32,30,1,0,0,14.01294492495407,14.01294492495407,0,0,0,0,0,1,1,0,0,0,57.02,42.66,46.31,58.29,8.333333333333334,1,1,0,0,5,2,4,0,512.2,147325.4989441546,-33091.43179679908,297148.7034143485,195409.4051283156,3505.319156142561 -15147,18700,34080,-9,34079,34081,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.4147562003744,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,512.2,147325.4989441546,-33091.43179679908,297148.7034143485,195409.4051283156,3505.319156142561 -15147,18700,34081,34079,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,8.050837243087614,7.787727367876385,0,6,0,13.91281476217268,0,2,2,2019,11,0,39,40,1,0,0,7.79420706644099,7.79420706644099,0,0,0,0,0,1,1,0,0,0,46.31,58.29,57.02,42.66,8.333333333333334,1,1,0,0,11,2,4,0,512.2,147325.4989441546,-33091.43179679908,297148.7034143485,195409.4051283156,3505.319156142561 -15147,18700,34082,-9,34079,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.9746031192142,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,512.2,147325.4989441546,-33091.43179679908,297148.7034143485,195409.4051283156,3505.319156142561 -15148,18701,34083,34084,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.890683558933648,8.398580587268119,0,5,-3,12.61046831688976,0,-9,-9,2019,15,4,46,40,1,4,0,10.78503334614957,10.78503334614957,0,0,0,0,0,0,0,0,2.656152827855219,0,44.02,60.7,42.01,57.81,6.666666666666667,1,1,0,0,6,7,5,1,843,1211654.699138188,121810.8805069198,995359.8336591746,0,3489.277384798524 -15148,18701,34084,34083,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.126452153542848,8.67398663843383,0,5,3,125.3207550167281,0,2,2,2019,12,0,48,50,1,0,0,18.79268715829328,18.79268715829328,0,0,0,0,0,0,0,0,2.821417127937827,0,42.01,57.81,44.02,60.7,8.333333333333334,1,1,0,0,11,7,5,1,843,1211654.699138188,121810.8805069198,995359.8336591746,0,3489.277384798524 -15149,18702,34085,34087,-9,-9,1,1,33,1,3,0,1,1,-9,0,5,7.716900766170072,7.843077735966829,0,4,0,-11.9921828694443,0,-9,-9,2019,7,0,50,50,1,0,0,6.433476761491589,6.433476761491589,0,0,0,0,0,1,1,0,0,0,51.07,29.37,41.42,48.37,6.666666666666667,2,3,0,0,4,8,3,0,512,21063.29171354746,65290.43623763501,57255.54869934059,46079.9793230842,2255.889682208545 -15149,18702,34086,-9,34087,34085,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-960.9510640785147,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,0,512,21063.29171354746,65290.43623763501,57255.54869934059,46079.9793230842,2255.889682208545 -15149,18702,34087,34085,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,7.580654349099312,7.810231197450642,0,4,0,117.0697113526876,0,3,3,2019,6,0,47,35,1,0,0,3.813700698274226,3.813700698274226,0,0,0,1.085915566158027,0,1,1,0,0,0,41.42,48.37,51.07,29.37,10,2,3,0,0,5,8,3,0,512,21063.29171354746,65290.43623763501,57255.54869934059,46079.9793230842,2255.889682208545 -15150,18703,34088,-9,34091,34090,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.6128477012946,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1117.75,289317.2399069906,250467.9568449625,308755.3338627133,245379.4621093229,3950.737791850947 -15150,18703,34089,-9,34091,34090,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.5848771751736,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,1117.75,289317.2399069906,250467.9568449625,308755.3338627133,245379.4621093229,3950.737791850947 -15150,18703,34090,34091,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,9.501417763472208,9.096351420655099,0,15,0,-3.24975601040029,0,2,1,2019,11,1,50,60,1,1,0,25.0787604363838,25.0787604363838,0,0,0,0,0,0,0,0,0,0,43.67,61.06,41.47,58.08,8.333333333333334,1,1,0,0,11,7,5,1,1117.75,289317.2399069906,250467.9568449625,308755.3338627133,245379.4621093229,3950.737791850947 -15150,18703,34091,34090,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,7.234254664976097,7.283231321593248,0,15,0,-76.83897716408619,0,2,3,2019,22,10,15,15,1,10,0,10.08590442148674,10.08590442148674,0,0,0,0,0,0,0,0,0,0,41.47,58.08,43.67,61.06,6.666666666666667,1,1,0,0,11,7,5,1,1117.75,289317.2399069906,250467.9568449625,308755.3338627133,245379.4621093229,3950.737791850947 -15151,18704,34092,34093,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,45,-1,43.56936554548852,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,54.94,50.33,10,1,1,0,0,6,5,2,1,716.5,476943.3346771461,163778.7760602885,143652.6977620688,0,1580.659929366783 -15151,18704,34093,34092,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.467756700805291,6.38120934919124,45,1,4.669773994362282,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.190086741827773,5.361114811768459,54.94,50.33,51.83,57.2,10,1,1,0,0,7,5,2,1,716.5,476943.3346771461,163778.7760602885,143652.6977620688,0,1580.659929366783 -15152,18705,34094,34095,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.580307930584322,8.530579559786144,0,5,-7,-29.59613780861696,0,2,2,2019,17,4,46,54,1,4,0,17.44765562171779,17.44765562171779,0,0,0,0,0,1,1,0,0,0,45.49,58.84,61.3,40.51,6.666666666666667,1,1,0,0,7,12,4,1,412,178976.0045322574,101505.7950673896,0,0,3038.38174227027 -15152,18705,34095,34094,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.964398240055751,7.825472772967116,0,5,7,150.3061208230506,0,-9,-9,2019,7,0,39,37,1,0,0,8.169738618105733,8.169738618105733,0,0,0,0,0,1,1,0,0,0,61.3,40.51,45.49,58.84,8.333333333333334,1,1,0,0,8,12,4,1,412,178976.0045322574,101505.7950673896,0,0,3038.38174227027 -15153,18706,34096,34097,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.567402570145413,8.310641388761006,0,7,7,175.1801423790128,0,3,2,2019,7,0,40,40,1,0,0,14.93212621624092,14.93212621624092,0,0,0,0,2,0,0,0,0,0,54.96,53.17,49.03,30.52,5,1,1,0,0,10,6,5,0,971,699230.3566401564,650484.8224189037,176662.4617109677,353679.25529843,4212.333608070347 -15153,18706,34097,34096,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.764025773031884,8.954116030362741,0,7,-7,77.48508899644807,0,2,1,2019,14,4,45,47,1,4,0,15.6880540227786,15.6880540227786,0,0,0,0,2,0,0,0,3.799325773345233,0,49.03,30.52,54.96,53.17,8.333333333333334,1,1,0,0,9,6,5,0,971,699230.3566401564,650484.8224189037,176662.4617109677,353679.25529843,4212.333608070347 -15154,18707,34098,34099,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,9,3,2.23185590046657,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.02,25.48,41.6,53.68,5,1,1,0,0,0,11,3,1,809,213772.7356541123,199693.2551517962,210695.497325052,38026.97797272407,1527.6317185324 -15154,18707,34099,34098,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.204584676752827,8.221308099591507,0,9,-3,-37.79350876665676,0,2,2,2019,11,0,52,58,1,1,0,6.050683772041806,6.050683772041806,0,0,0,0,0,0,0,0,0,0,41.6,53.68,42.02,25.48,5,1,1,0,0,10,11,3,1,809,213772.7356541123,199693.2551517962,210695.497325052,38026.97797272407,1527.6317185324 -15155,18708,34100,-9,34102,34103,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.0387405269267,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,354,259498.1605130974,0,0,0,5771.474004357697 -15155,18708,34101,-9,34102,34103,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1064.414050307056,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,0,354,259498.1605130974,0,0,0,5771.474004357697 -15155,18708,34102,34103,-9,-9,1,0,40,0,2,0,2,2,1,0,4,7.944788777268452,7.75736106767935,0,7,1,102.9937797022569,-9,2,2,2019,7,0,37,0,1,0,0,8.659569455959609,8.659569455959609,0,0,0,0,2,1,1,0,0,0,54.2,57.49,40.38,61.66,8.333333333333334,1,1,0,0,3,10,4,0,354,259498.1605130974,0,0,0,5771.474004357697 -15155,18708,34103,34102,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.117293429893117,8.741200142882006,0,7,-1,-44.11004730466117,0,2,2,2019,18,5,53,53,1,5,0,15.4864136147846,15.4864136147846,0,0,0,0,2,1,1,0,0,0,40.38,61.66,54.2,57.49,8.333333333333334,1,1,0,0,8,10,4,0,354,259498.1605130974,0,0,0,5771.474004357697 -15155,18709,34104,-9,34102,34103,1,0,19,0,2,0,2,2,1,0,3,7.7718785855702,7.74458328744443,0,0,0,-919.4883495027382,-9,2,1,2019,10,0,44,0,1,0,1,5.493502496171424,5.493502496171424,0,0,0,0,0,1,1,0,0,0,57.18,42.53,-9,-9,8.333333333333334,1,1,0,0,2,10,3,0,324,4539.825360798566,-115341.0502489775,0,0,731.9972931085197 -15156,18710,34105,-9,34106,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.5918177647726,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,841.6666666666666,57640.82627914052,-16870.67993560245,0,0,1937.936582821986 -15156,18710,34106,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,6.635030475645249,6.496595619337966,0,0,-1040.612616130388,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.06371030467932,0,43.42,18.09,-9,-9,0,1,1,0,0,0,4,2,0,841.6666666666666,57640.82627914052,-16870.67993560245,0,0,1937.936582821986 -15156,18710,34107,-9,34106,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.271735052945,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,841.6666666666666,57640.82627914052,-16870.67993560245,0,0,1937.936582821986 -15157,18711,34108,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.281247342048129,4.596032129614349,0,0,-1043.110497003299,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.726300663881741,4.136529981142886,49,48,-9,-9,7,2,3,0,0,0,7,2,1,1194,268762.2149117598,0,0,0,155.6037777807029 -15157,18712,34109,-9,34108,-9,1,0,30,0,0,0,2,2,-9,0,2,7.802817484817016,7.953664363303624,0,0,0,-1078.39089982815,0,3,-9,2019,12,5,37,37,1,5,0,8.950251497350632,8.950251497350632,0,0,0,0,0,1,1,0,0,0,32.47,46.29,-9,-9,6.666666666666667,2,3,0,0,10,7,4,1,154,82848.40150959423,-76771.2433241765,0,0,1055.079024385868 -15157,18713,34110,-9,34108,-9,1,0,28,0,0,0,2,2,-9,0,4,7.990712898807954,8.265180616569861,0,0,0,-881.5988344041026,0,3,-9,2019,19,7,37,37,1,7,0,10.37869397715962,10.37869397715962,0,0,0,0,0,1,1,0,0,0,33.72,66.63,-9,-9,8.333333333333334,2,3,0,0,7,7,4,1,256,-132271.0209476524,0,0,0,1088.272879044 -15157,18714,34111,-9,34108,-9,1,0,28,0,0,0,2,2,-9,0,4,8.381347810458731,8.297435828777649,0,0,0,-1041.14226424726,0,3,-9,2019,12,0,37,40,1,2,0,12.01092396142818,12.01092396142818,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,7,4,1,1275,78005.21594342413,164420.5086629797,0,0,1667.351789686692 -15157,18715,34112,-9,34108,-9,1,0,26,0,0,0,2,2,-9,0,4,7.924410632857691,7.776524813459117,0,0,0,-998.1722077579883,0,3,-9,2019,11,0,39,38,1,0,0,9.038501761072629,9.038501761072629,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,7,3,1,1557,-165527.6056438633,-24615.55285233662,0,0,908.6735526355208 -15158,18716,34113,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.4768230694863,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,1,10.23498679049254,0,87.44981107329551,0,1,1,0,0,0,35.17,15.39,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,643,181505.0501011031,0,234547.8383753111,0,415.0495616911861 -15159,18717,34114,34115,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.672340665852088,5.388153277109826,51,0,-108.486281596727,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.634701894508692,5.91107047792608,50.1,32.62,51.64,53.15,5,1,1,0,0,5,7,2,1,388,1411759.650125471,0,955656.8590138045,0,1554.698796210845 -15159,18717,34115,34114,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.735029116495161,5.068409467380501,50,0,168.6912457224553,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.656630030043435,4.890075805611956,51.64,53.15,50.1,32.62,8.333333333333334,1,1,0,0,4,7,2,1,388,1411759.650125471,0,955656.8590138045,0,1554.698796210845 -15160,18718,34116,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.510093457782824,8.772310422659395,0,0,-928.6993583694182,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,8.704360067941996,57.24,38.46,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,550,666334.2563763978,0,439375.4569397252,0,3363.057692980321 -15161,18719,34117,34118,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.046894194609884,7.987829795343864,27,1,-3.932888043004088,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.58365467150746,7.742692844295355,51.24,58.84,47,47.63,8.333333333333334,1,1,0,0,5,8,4,1,907.5,2280449.93374526,727103.0309650183,1005007.980063537,0,3722.609516494569 -15161,18719,34118,34117,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,7.166616418206011,7.006015296292215,27,-1,-35.20735951919632,0,1,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.002860042158659,7.366746928939994,47,47.63,51.24,58.84,6.666666666666667,1,1,0,0,10,8,4,1,907.5,2280449.93374526,727103.0309650183,1005007.980063537,0,3722.609516494569 -15162,18720,34119,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.854823623202812,7.186629622545929,0,0,-937.8675817732287,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.944237800930063,7.21035519106725,63.01,28.07,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,392,572321.2841010962,276129.5632617636,64983.63570019499,0,1269.244579719497 -15163,18721,34120,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-942.0603221170053,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,1.654990301479152,0,0,0,1,1,0,0,0,57.14,37.56,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,274,245404.5790885644,0,120187.4078136374,0,1425.726479445332 -15164,18722,34121,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.711597299370139,8.892798895625672,5.943739560678765,0,0,-1020.335365407101,0,2,2,2019,12,1,40,38,1,1,0,22.24395510306254,22.24395510306254,0,0,0,0,0,0,0,0,6.250049093888057,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,303,410201.9437324944,367487.3038491443,67536.17002766641,12726.1772789666,2310.71339754102 -15164,18723,34122,-9,34121,-9,1,0,23,0,0,0,1,1,-9,0,5,7.602314646952558,7.60845444270338,0,0,0,-1152.27924671512,0,1,-9,2019,10,0,32,31,1,0,1,6.651373456858485,6.651373456858485,0,0,0,0,0,0,0,0,0,0,49.81,59.64,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,937,22898.291022712,-118744.4335083501,0,0,1064.44955472083 -15165,18724,34123,34124,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.327205126234304,8.141810880578181,0,21,0,31.77399279492787,0,3,2,2019,11,0,6,4,1,2,0,78.49211547636338,78.49211547636338,0,0,0,0,0,0,0,0,0,0,48,48,55.51,43.54,7,2,3,0,0,10,8,5,1,735.5,1137751.798287824,675593.9165535307,474947.7634653588,25975.11027688918,6543.087598497297 -15165,18724,34124,34123,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.144185798953497,9.102133138908359,0,7,0,-138.6571997833493,0,-9,-9,2019,10,1,44,40,1,1,0,31.90583402110703,31.90583402110703,0,0,0,0,2,0,0,0,7.371566079552784,0,55.51,43.54,48,48,6.666666666666667,1,1,0,0,11,8,5,1,735.5,1137751.798287824,675593.9165535307,474947.7634653588,25975.11027688918,6543.087598497297 -15165,18725,34125,-9,34123,34124,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-931.7176770557144,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,4,2,0,0,3,8,1,1,162,-69626.98528236857,0,0,0,0 -15165,18726,34126,-9,34123,34124,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-939.6146750376057,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,4,2,0,0,5,8,1,1,2118,0,0,0,0,-136.1865238530847 -15166,18727,34127,34128,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.676914632288735,8.504313709868125,0,25,0,60.77579246671466,-9,3,3,2019,12,1,74,0,1,1,0,6.104251143334816,6.104251143334816,0,0,0,0,0,1,1,0,2.346318549234427,0,51.24,58.84,58.07,46.16,3.333333333333333,1,1,0,0,9,10,4,1,372,1905126.830579503,624668.0249592831,837323.0041466682,72143.4207822832,3003.434466958378 -15166,18727,34128,34127,-9,-9,1,0,53,0,1,0,2,2,-9,0,5,7.392642311169087,7.013061779378837,0,22,0,-115.8741772508178,-9,2,2,2019,7,0,36,0,1,0,0,4.308324700776681,4.308324700776681,0,0,0,0,7,1,1,0,7.219845880550943,0,58.07,46.16,51.24,58.84,8.333333333333334,1,1,0,0,9,10,4,1,372,1905126.830579503,624668.0249592831,837323.0041466682,72143.4207822832,3003.434466958378 -15166,18727,34129,-9,34128,34127,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-847.5226287696968,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.41966513027635,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,372,1905126.830579503,624668.0249592831,837323.0041466682,72143.4207822832,3003.434466958378 -15167,18728,34130,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.588376081807805,9.008577937390051,0,12,-2,-6.759421526922625,0,2,2,2019,11,0,48,45,1,0,0,15.208950038091,15.208950038091,0,0,0,0,0,0,0,0,3.810753272417783,0,58.15,52.91,58.05,54.52,10,1,1,0,0,11,2,5,1,694,360697.5831253446,109062.4548411042,119283.1449068864,102614.684454497,2228.237595626497 -15167,18729,34131,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,9.193519630565628,9.135083855161037,0,12,2,-71.44987376506145,0,3,3,2019,6,0,40,40,1,0,0,33.04791323630706,33.04791323630706,0,0,0,0,0,0,0,0,6.470949660786196,0,58.05,54.52,58.15,52.91,1.666666666666667,1,1,0,0,10,2,5,1,1090,874710.3571176596,631499.6524511044,325284.3670818525,186644.9659022783,4381.124604620553 -15168,18730,34132,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,8.172717521705788,8.385378033604194,0,0,0,-890.3000895225709,0,-9,3,2019,19,7,40,42,1,7,0,9.576901335151197,9.576901335151197,0,0,0,0,0,1,1,0,0,0,34.81,44.78,-9,-9,5,1,1,0,1,9,8,3,0,1021,32096.1318443702,-33738.15492860854,0,0,1837.185801870115 -15168,18731,34133,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,7.910777552331409,7.953752559996484,0,0,0,-1107.950435649606,0,-9,2,2019,18,6,33,33,1,6,0,7.498387481236208,7.498387481236208,0,0,0,0,0,1,1,0,0,0,31.11,50.43,-9,-9,3.333333333333333,1,1,0,0,9,8,3,0,619.3333333333334,-3971.323071387121,0,0,0,2245.631522203887 -15168,18731,34134,-9,34133,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.750532138677,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,619.3333333333334,-3971.323071387121,0,0,0,2245.631522203887 -15168,18731,34135,-9,34133,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.5206552664,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,619.3333333333334,-3971.323071387121,0,0,0,2245.631522203887 -15169,18732,34136,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.698878779768672,6.67191840813234,0,0,-1102.119086873317,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8218220354371,50.51,42.98,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1170,147765.968521917,52979.89679648977,125060.4344987772,0,904.9569229837624 -15170,18733,34137,-9,34138,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.007718241917,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,3,1,479,138429.7155593975,183717.6818554468,0,0,1577.645670132621 -15170,18733,34138,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.391957826205803,7.379234389336926,3.518755592920942,0,0,-1080.034624142472,0,2,-9,2019,7,0,35,35,1,0,0,6.423658101191246,6.423658101191246,0,0,0,0,0,1,1,0,3.394470193323547,0,55.96,49.93,-9,-9,6.666666666666667,3,4,0,0,5,9,3,1,479,138429.7155593975,183717.6818554468,0,0,1577.645670132621 -15171,18734,34139,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.900995033067993,5.936518129230048,0,0,-980.5623532406623,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,12.78183354135707,8.67273801100303,0,0,1,0,1,0,6.198599742039078,52,48,-9,-9,7,1,1,0,0,0,8,2,1,853,1991445.560414684,1420428.750408671,398749.4871953795,69798.2668146755,2641.070319129939 -15172,18735,34140,-9,34141,34142,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1006.290495489184,-9,1,1,2019,24,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,15.66,67,-9,-9,1.666666666666667,1,1,0,0,1,2,5,1,903,1238191.771311292,748633.9906213378,387396.2280093306,12596.31096263106,4452.596135583067 -15172,18735,34141,34142,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.174757311598967,8.320946846388642,0,31,-1,-56.14905842543633,0,2,1,2019,9,1,41,40,1,1,0,9.964013413203622,9.964013413203622,0,0,0,0,0,1,1,0,6.806458624601397,0,48.74,60.18,53.48,53.71,8.333333333333334,1,1,0,0,9,2,5,1,903,1238191.771311292,748633.9906213378,387396.2280093306,12596.31096263106,4452.596135583067 -15172,18735,34142,34141,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.163791480355979,9.314987154077409,0,27,1,-60.32603828882306,0,2,1,2019,10,0,42,42,1,0,0,23.41319940425156,23.41319940425156,0,0,0,0,0,1,1,0,0,0,53.48,53.71,48.74,60.18,8.333333333333334,1,1,0,0,10,2,5,1,903,1238191.771311292,748633.9906213378,387396.2280093306,12596.31096263106,4452.596135583067 -15172,18736,34143,-9,34141,34142,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1028.650937644665,1,1,1,2019,10,1,0,47,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,144,121904.6217738147,0,0,0,0 -15173,18737,34144,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.935900790575612,7.092985737971592,0,0,-983.2704694804644,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.61110977226678,12.43063661430666,140.8361744195206,0,1,1,0,0,6.859710110177295,53,47,-9,-9,7,1,1,0,0,0,13,2,1,550,505582.4379388045,293036.4355265377,217681.0617888992,0,1463.764948232219 -15174,18738,34145,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.764575342212684,8.030338611117646,0,0,0,-875.612223156166,-9,-9,-9,2019,9,0,50,0,1,0,0,6.796729123301664,6.796729123301664,0,0,0,0,0,0,0,0,0,0,47.11,52.59,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,784,61623.6580311391,50632.43076541436,48574.31407824351,37868.54520704869,1321.404557424555 -15175,18739,34146,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-967.8528973571642,0,3,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,36.19,-9,-9,3.333333333333333,1,1,1,0,6,4,1,0,132,0,0,0,0,-465.8079150105232 -15176,18740,34147,34148,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,5.700458134861958,5.861564157358981,22,-2,69.52727908936282,0,3,3,2019,21,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.48426803677879,31.52,23.75,54.02,42.74,1.666666666666667,1,1,0,0,10,1,3,1,1116.5,489811.2731759899,432969.4248112056,205576.045790105,0,1973.917918195124 -15176,18740,34148,34147,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.466443361813863,7.325228921873877,8,2,39.83165001204308,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.813968919790658,7.159508473675822,54.02,42.74,31.52,23.75,8.333333333333334,1,1,0,0,0,1,3,1,1116.5,489811.2731759899,432969.4248112056,205576.045790105,0,1973.917918195124 -15177,18741,34149,34150,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.299680870469729,8.072370903776797,0,7,3,-40.87233991811986,0,3,3,2019,13,1,42,47,1,1,0,12.40349700404327,12.40349700404327,0,0,0,0,0,0,0,0,0,0,45.17,39.64,39.86,38.75,5,1,1,0,0,8,9,4,1,474.5,1574226.737155776,1351428.965135945,347102.5814732438,123630.4631394718,2654.440757369391 -15177,18741,34150,34149,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.771280547533023,7.709548634028914,0,7,-3,-53.51545726618643,0,2,3,2019,17,5,38,35,1,5,0,7.788892344965512,7.788892344965512,0,0,0,0,0,0,0,0,0,0,39.86,38.75,45.17,39.64,1.666666666666667,1,1,0,0,8,9,4,1,474.5,1574226.737155776,1351428.965135945,347102.5814732438,123630.4631394718,2654.440757369391 -15177,18742,34151,-9,34150,34149,1,0,22,0,0,0,2,2,-9,0,4,7.558148023326987,8.396406244376491,8.160514735995612,0,0,-1081.535864470805,0,3,2,2019,10,1,38,18,1,1,1,6.039980253005686,6.039980253005686,0,0,0,0,0,0,0,0,8.43865191036147,0,40.13,59.62,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,4274,-113842.9791498083,65346.07469201176,0,0,2066.677871918628 -15178,18743,34152,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.532672268684375,8.051107166075273,0,0,0,-1065.222484730813,0,-9,-9,2019,15,4,63,15,1,4,0,4.793281228067922,4.793281228067922,0,0,0,0,0,1,1,0,0,0,33.95,54.89,-9,-9,5,1,1,0,1,11,11,3,0,950,239407.7814362162,0,0,0,872.0198810512208 -15179,18744,34153,34154,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.778499874982479,9.220430289748753,6.284368614322972,23,-2,-38.22912974341034,0,2,2,2019,7,0,24,24,1,0,0,31.08222754201102,31.08222754201102,0,0,0,0,0,1,1,0,0,6.398696540455802,60.54,32.08,58.07,46.29,8.333333333333334,1,1,0,0,10,8,5,1,356,1868056.349775453,368859.1188249689,872836.258981254,0,6509.136762812801 -15179,18744,34154,34153,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.604589804557246,8.526580286401469,23,2,-66.5349207707408,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.117918773165007,8.739011712862478,58.07,46.29,60.54,32.08,8.333333333333334,1,1,0,0,6,8,5,1,356,1868056.349775453,368859.1188249689,872836.258981254,0,6509.136762812801 -15180,18745,34155,-9,34157,34156,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-833.2285939803729,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,1395,110205.1363702681,23079.27402375569,215614.1362943459,131343.9287216722,3616.236082503123 -15180,18745,34156,34157,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.352042005703453,8.74585842189499,0,10,0,-60.28963821790148,0,2,2,2019,8,0,43,45,1,0,0,12.32539135488236,12.32539135488236,0,0,0,0,7,1,1,0,0,0,47.77,56.48,51.28,50.73,1.666666666666667,1,1,0,0,10,13,5,1,1395,110205.1363702681,23079.27402375569,215614.1362943459,131343.9287216722,3616.236082503123 -15180,18745,34157,34156,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.918162848785707,7.942334451323767,0,10,0,98.63649973645137,0,-9,-9,2019,11,1,30,30,1,1,0,14.29082817367323,14.29082817367323,0,0,0,0,0,1,1,0,5.81562117972129,0,51.28,50.73,47.77,56.48,8.333333333333334,1,1,0,0,10,13,5,1,1395,110205.1363702681,23079.27402375569,215614.1362943459,131343.9287216722,3616.236082503123 -15181,18746,34158,34159,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,6.77989833109403,6.712654809143674,0,10,7,41.89400365737323,0,3,3,2019,7,0,40,40,1,0,0,2.537693990199312,2.537693990199312,1,0,0,0,0,1,1,0,2.521314968255626,0,57.33,53.46,55.29,44.79,8.333333333333334,1,1,0,0,11,9,4,1,901,278409.347902122,31021.10095558858,225688.6601020991,4642.273458607595,2960.903792336068 -15181,18746,34159,34158,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.189051271141297,8.326513665766127,0,10,-7,155.0216364157707,0,-9,-9,2019,10,1,40,40,1,1,0,10.10774613735074,10.10774613735074,0,0,0,0,0,1,1,0,1.96704069840315,0,55.29,44.79,57.33,53.46,8.333333333333334,1,1,0,0,11,9,4,1,901,278409.347902122,31021.10095558858,225688.6601020991,4642.273458607595,2960.903792336068 -15182,18747,34160,-9,34163,34162,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.6552792400895,-9,1,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,64.81,-9,-9,5,2,3,0,0,0,2,4,0,441.75,1075350.21944261,838432.7086569102,368921.4659216486,166874.3455367154,4770.793924533804 -15182,18747,34161,-9,34163,34162,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.514302610621,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,4,0,441.75,1075350.21944261,838432.7086569102,368921.4659216486,166874.3455367154,4770.793924533804 -15182,18747,34162,34163,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.067947804642406,8.929387765216207,0,19,5,92.46455961061324,0,3,1,2019,21,9,70,52,1,9,0,18.11403904267975,18.11403904267975,0,0,0,0,0,1,1,0,.3477337754019342,0,36.39,36.74,43.36,46.75,1.666666666666667,2,3,0,0,12,2,4,0,441.75,1075350.21944261,838432.7086569102,368921.4659216486,166874.3455367154,4770.793924533804 -15182,18747,34163,34162,-9,-9,1,0,40,0,3,0,1,1,-9,0,2,7.653831770571003,7.201963901291399,0,18,-5,-15.67380835993531,0,3,1,2019,12,0,13,0,1,0,0,20.61549915674314,20.61549915674314,0,0,0,0,0,1,1,0,0,0,43.36,46.75,36.39,36.74,5,2,3,0,0,1,2,4,0,441.75,1075350.21944261,838432.7086569102,368921.4659216486,166874.3455367154,4770.793924533804 -15183,18748,34164,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.207492238320711,8.06385384404631,0,0,0,-993.7362255382669,0,2,3,2019,16,4,42,43,1,4,0,9.487889012403501,9.487889012403501,0,0,0,0,0,0,0,0,0,0,43.49,43.6,-9,-9,3.333333333333333,3,4,0,0,6,8,4,0,136,177636.7787858779,56180.71144571815,0,0,1458.511310965562 -15184,18749,34165,34166,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.595741558469146,6.368750278905251,47,1,-19.20733657782609,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,6.487530559088667,35.04,36.4,35.28,40.86,3.333333333333333,1,1,0,0,7,7,4,0,1087.5,1476425.749535114,814055.6675137957,482651.6611654314,0,3549.459762351096 -15184,18749,34166,34165,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.325964209350214,8.261292908579996,47,-1,-121.1512830426104,0,3,3,2019,17,8,0,0,4,8,0,0,0,1,0,12.43688534009522,0,0,1,1,0,4.332431150753162,7.955056373918763,35.28,40.86,35.04,36.4,8.333333333333334,1,1,0,0,7,7,4,0,1087.5,1476425.749535114,814055.6675137957,482651.6611654314,0,3549.459762351096 -15185,18750,34167,34168,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,7.409997312015919,6.751929408059217,51,1,-119.606393073301,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.65142089410231,7.164816327602122,29.78,25.84,55.36,51.57,3.333333333333333,1,1,0,0,0,4,2,0,771,347972.7291246334,322284.0343660381,86871.56795447019,20269.7309365449,2016.195557670425 -15185,18750,34168,34167,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,51,-1,45.07239997401649,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.36,51.57,29.78,25.84,8.333333333333334,1,1,0,0,0,4,2,0,771,347972.7291246334,322284.0343660381,86871.56795447019,20269.7309365449,2016.195557670425 -15186,18751,34169,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.219840244685271,7.190495793930597,0,0,-912.0843401123811,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.172891959804045,7.194649612021063,62.03,25.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,460,239032.2258868557,22359.29813128497,125289.8995039077,0,1072.858498488794 -15187,18752,34170,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,1.720760663029819,1.707851967005938,0,0,-870.6877091010659,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,1.894212662105383,44.24,35.51,-9,-9,5,1,1,0,0,0,9,2,0,525,133020.3672837886,-3033.01684768976,275588.5086475555,0,631.2543014032424 -15187,18753,34171,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1066.99332846869,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,35.65,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1364,-8019.808589815675,0,0,0,1251.773271267969 -15188,18754,34172,-9,34177,-9,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1052.119896971639,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15188,18754,34173,-9,34177,-9,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1073.326712362017,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15188,18754,34174,-9,34177,-9,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.373598719568,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15188,18754,34175,-9,34177,-9,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-874.6982299267884,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15188,18754,34176,-9,34177,-9,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-982.1508000597778,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15188,18754,34177,-9,-9,-9,1,0,39,0,5,0,2,2,-9,0,4,0,7.431500044349445,6.994964664120913,0,0,-980.926777885758,0,3,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.435447223628892,0,48.65,55.84,-9,-9,10,2,3,0,0,3,2,2,0,1379.5,133764.9285653165,11833.05142945193,114963.5079117124,56713.82583012129,2834.767416318768 -15189,18755,34178,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.068694662281724,7.034417620451933,0,0,0,-993.1864968169971,0,1,1,2019,3,1,24,20,1,1,0,5.315907493590251,5.315907493590251,0,0,0,0,0,1,1,0,0,0,61.11,48.86,-9,-9,6.666666666666667,1,1,0,0,6,8,2,0,678,-94349.21752326743,191819.2776012255,0,0,1536.115468177464 -15189,18756,34179,-9,34178,-9,1,1,21,0,0,0,2,2,-9,0,4,7.738538547019048,7.750925435238288,0,0,0,-897.8041648190093,0,2,-9,2019,8,0,42,30,1,0,1,5.994933355161805,5.994933355161805,0,0,0,0,0,1,1,0,2.247129085186903,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,2,8,3,0,84,23521.7516534266,130068.0985476282,0,0,1208.560285556748 -15189,18757,34180,-9,34178,-9,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1054.962658049058,-9,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,62.01,41.71,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,950,0,0,0,0,0 -15190,18758,34181,-9,34183,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-947.8535248853751,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,2,0,236.6666666666667,86525.05428103761,90780.69407899254,0,0,2307.494643668444 -15190,18758,34182,-9,34183,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-935.0069676271653,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,0,236.6666666666667,86525.05428103761,90780.69407899254,0,0,2307.494643668444 -15190,18758,34183,-9,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,7.276431032658564,7.292571579925583,0,0,0,-1035.480956885081,0,2,2,2019,12,0,25,26,1,0,0,8.463813017503767,8.463813017503767,0,0,0,0,0,1,1,0,0,0,31.94,50.38,-9,-9,1.666666666666667,1,1,0,0,11,12,2,0,236.6666666666667,86525.05428103761,90780.69407899254,0,0,2307.494643668444 -15190,18759,34184,-9,34183,-9,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-964.4937047010429,-9,3,-9,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,25.98,65.13,-9,-9,1.666666666666667,1,1,0,0,2,12,1,0,512,24808.81682726743,0,0,0,471.0838762173435 -15191,18760,34185,-9,-9,34186,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.8372432533579,-9,-9,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,2025,-8282.065919086752,0,0,0,1602.164472748232 -15191,18760,34186,-9,-9,-9,1,1,39,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1097.203846914885,-9,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50.05,28.97,-9,-9,6.666666666666667,1,1,0,0,6,10,1,0,2025,-8282.065919086752,0,0,0,1602.164472748232 -15192,18761,34187,34190,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,7.570021259342147,7.067429957207809,0,3,-2,55.47982594162854,0,-9,-9,2019,17,6,37,37,1,6,0,6.203126504314933,6.203126504314933,0,0,0,0,0,1,1,0,0,0,30.44,60.58,59.7,43.22,6.666666666666667,1,1,0,0,9,4,3,0,849.5,416468.0754841681,100928.6276517375,249484.8335384574,60564.9390846703,2613.285198512181 -15192,18761,34188,-9,34187,34190,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.6439683971253,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,849.5,416468.0754841681,100928.6276517375,249484.8335384574,60564.9390846703,2613.285198512181 -15192,18761,34189,-9,34187,34190,1,1,17,0,3,1,2,0,-9,0,4,0,0,0,0,0,-983.2673702969518,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.45,55.24,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,849.5,416468.0754841681,100928.6276517375,249484.8335384574,60564.9390846703,2613.285198512181 -15192,18761,34190,34187,-9,-9,1,1,44,0,3,0,2,2,-9,0,2,7.906856565487216,8.354265889627944,0,3,2,-99.15853074916193,-9,-9,-9,2019,9,2,41,0,1,2,0,9.902393003217522,9.902393003217522,0,0,0,0,0,1,1,0,0,0,59.7,43.22,30.44,60.58,8.333333333333334,1,1,0,0,9,4,3,0,849.5,416468.0754841681,100928.6276517375,249484.8335384574,60564.9390846703,2613.285198512181 -15193,18762,34191,34192,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.606142414743047,8.945720730264853,0,4,4,120.9016775181716,0,2,2,2019,9,0,60,55,1,0,0,11.44862338325757,11.44862338325757,0,0,0,0,2,0,0,0,5.404982786964051,0,54.77,55.87,51.08,41.36,8.333333333333334,1,1,0,0,5,4,5,1,194,226719.3126401301,9107.359920885905,168283.6381457575,137712.9372334533,3445.17838464607 -15193,18762,34192,34191,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.375868354987885,8.397534007225556,0,4,-4,68.17673640017772,0,-9,-9,2019,10,1,38,40,1,1,0,13.3514850016303,13.3514850016303,0,0,0,0,0,0,0,0,3.140528686434831,0,51.08,41.36,54.77,55.87,8.333333333333334,1,1,0,0,5,4,5,1,194,226719.3126401301,9107.359920885905,168283.6381457575,137712.9372334533,3445.17838464607 -15194,18763,34193,34194,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.869431883050109,7.636246178996227,0,9,-2,116.3494374055596,0,2,2,2019,12,0,32,38,1,0,0,13.50426472943026,13.50426472943026,0,0,0,0,2,0,0,0,0,0,50.71,52.35,54.34,15.75,6.666666666666667,1,1,0,0,10,7,4,1,871,797727.4871717107,-60840.93148001379,414100.462281936,85911.97060258902,3044.248506651096 -15194,18763,34194,34193,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,8.304803837767293,8.197447653506918,0,9,2,-70.20239118617705,0,2,2,2019,16,4,50,48,1,4,0,8.587217146944463,8.587217146944463,0,0,0,0,7,0,0,0,0,0,54.34,15.75,50.71,52.35,5,1,1,0,0,12,7,4,1,871,797727.4871717107,-60840.93148001379,414100.462281936,85911.97060258902,3044.248506651096 -15195,18764,34195,34196,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.273707959944944,7.265210127715547,8,0,3.412491592762942,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.682495020558636,7.302329509815515,50.4,51.87,55.95,36.7,0,1,1,0,0,0,7,3,1,2349,952177.9490468603,467757.3057319224,305364.2116120026,0,2779.522020494624 -15195,18764,34196,34195,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.260358771485477,7.218147682868967,8,0,37.90551298984372,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,12.76094394467482,0,0,1,1,0,3.83089498680892,7.502629874362786,55.95,36.7,50.4,51.87,5,1,1,0,0,8,7,3,1,2349,952177.9490468603,467757.3057319224,305364.2116120026,0,2779.522020494624 -15196,18765,34197,34198,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.723337988912251,8.860031848182276,0,10,0,44.90656794552494,0,-9,-9,2019,6,0,40,40,1,0,0,20.99277141109487,20.99277141109487,0,0,0,0,0,0,0,0,7.416491845424022,0,62.1,51.16,32.11,62.58,8.333333333333334,1,1,0,0,12,12,5,1,983.5,1359582.62616023,1221543.372059054,269749.898449231,85169.92776563377,3442.092856428198 -15196,18765,34198,34197,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.901221016342276,8.150129270888472,0,10,0,73.89217942094341,0,2,3,2019,27,11,35,35,1,11,0,9.402727569174617,9.402727569174617,0,0,0,0,0,0,0,0,0,0,32.11,62.58,62.1,51.16,8.333333333333334,1,1,0,0,11,12,5,1,983.5,1359582.62616023,1221543.372059054,269749.898449231,85169.92776563377,3442.092856428198 -15197,18766,34199,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1055.274580237997,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,46,37,-9,-9,10,1,1,0,0,0,11,2,0,1260,14246.03794321331,0,0,0,1840.6669247865 -15198,18767,34200,-9,34203,34202,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.8194689449583,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,278.5,45253.66161042317,22913.03050504375,0,0,2800.850575130751 -15198,18767,34201,-9,34203,34202,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.598927205811,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,278.5,45253.66161042317,22913.03050504375,0,0,2800.850575130751 -15198,18767,34202,34203,34204,-9,1,1,48,1,2,0,3,3,-9,0,4,7.212942300301773,7.005557284556502,0,18,11,115.4311646618267,0,3,-9,2019,9,0,24,24,1,1,0,7.065715486491708,7.065715486491708,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,4,8,2,0,278.5,45253.66161042317,22913.03050504375,0,0,2800.850575130751 -15198,18767,34203,34202,-9,-9,1,0,37,1,2,0,3,3,-9,0,4,0,0,0,18,-11,1.697743883729275,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,278.5,45253.66161042317,22913.03050504375,0,0,2800.850575130751 -15198,18768,34204,-9,-9,-9,1,0,69,1,2,0,3,3,-9,0,3,0,0,0,0,0,-850.4543709755532,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,-9,-9,7,2,3,0,0,0,8,2,0,146,73877.70825211299,0,0,0,1226.177437387541 -15199,18769,34205,34206,-9,-9,1,0,42,1,1,0,2,2,-9,0,3,0,0,0,9,3,20.47682835462744,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,57.16,56.15,10,1,1,1,0,8,12,4,0,863,237493.9392864454,111684.0093111551,269651.3983828889,213604.1077300711,1983.548041630314 -15199,18769,34206,34205,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.643761715958496,8.384280732224378,0,7,-3,61.30836274701843,0,2,2,2019,8,0,70,70,1,0,0,9.392533505311718,9.392533505311718,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.4,52.91,10,1,1,0,0,6,12,4,0,863,237493.9392864454,111684.0093111551,269651.3983828889,213604.1077300711,1983.548041630314 -15199,18769,34207,-9,34205,34206,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.424129190291,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,863,237493.9392864454,111684.0093111551,269651.3983828889,213604.1077300711,1983.548041630314 -15200,18770,34208,34209,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.628738916912711,6.800435664181951,46,1,15.40888208989587,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.772982532548138,6.937061004564509,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,187,542043.4624069778,334725.9108781822,207238.3313850053,0,1142.912713086808 -15200,18770,34209,34208,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.870828064008026,6.59917657005369,7,-1,50.96021704740998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.997569126969037,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,6,12,2,1,187,542043.4624069778,334725.9108781822,207238.3313850053,0,1142.912713086808 -15201,18771,34210,-9,34211,-9,1,1,12,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1081.28590125874,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,1,1,-9,0,0,12,3,0,1038.666666666667,200380.4336698984,52594.12876626593,141291.3311422351,91771.74893134607,2685.246813806394 -15201,18771,34211,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.517892988434037,8.380920580315681,0,0,0,-977.8086541389936,0,2,2,2019,5,0,42,25,1,0,0,11.01029244711203,11.01029244711203,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,1038.666666666667,200380.4336698984,52594.12876626593,141291.3311422351,91771.74893134607,2685.246813806394 -15201,18771,34212,-9,34211,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-862.963094401136,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,12,3,0,1038.666666666667,200380.4336698984,52594.12876626593,141291.3311422351,91771.74893134607,2685.246813806394 -15202,18772,34213,34214,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,6.618440684554297,7.223584915788437,6.763021748203538,10,-1,27.69144999572802,0,3,3,2019,7,0,11,11,1,0,0,7.782488293502663,7.782488293502663,0,0,0,0,0,1,1,0,0,6.61198744326843,59.04,54.12,54.5,37.05,8.333333333333334,1,1,0,0,11,10,4,1,412.5,1163870.635249035,180826.6464306654,830903.6602794892,0,2986.184117720596 -15202,18772,34214,34213,-9,-9,1,1,70,0,0,0,2,2,-9,1,3,8.127292943045854,8.338438844511931,0,10,1,66.49806343777873,0,-9,-9,2019,9,1,40,40,1,1,0,13.17129843679076,13.17129843679076,1,0,2.879019140203271,0,0,1,1,0,4.469162362277498,0,54.5,37.05,59.04,54.12,8.333333333333334,1,1,0,0,11,10,4,1,412.5,1163870.635249035,180826.6464306654,830903.6602794892,0,2986.184117720596 -15203,18773,34215,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.915450013588488,9.074222736740134,0,0,0,-1014.928853673302,0,2,3,2019,12,0,55,60,1,0,0,15.85334016970065,15.85334016970065,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,3.333333333333333,1,1,0,0,7,7,5,1,363,1286180.506847,524965.7985776085,403597.112549346,0,2511.564763663267 -15204,18774,34216,34220,-9,-9,1,1,54,0,4,0,2,2,-9,0,4,7.065784319627829,6.86491431988713,0,1,21,59.11586044177665,-9,3,3,2019,9,0,8,0,1,1,0,16.28263293802267,16.28263293802267,0,0,0,0,0,1,1,0,0,0,53,54,52.83,49.11,8,2,3,0,0,1,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34217,-9,34220,34216,1,0,17,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1023.733953271836,-9,3,2,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41,56.99,-9,-9,5,2,3,0,0,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34218,-9,34220,34216,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1060.896388379922,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34219,-9,34220,34216,1,0,13,0,4,1,3,0,-9,0,1,0,0,0,0,0,-815.4551107546852,-9,3,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,2,3,-9,0,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34220,34216,-9,-9,1,0,33,0,4,0,3,3,-9,0,2,0,0,0,1,-21,-25.81905915486904,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.83,49.11,53,54,6.666666666666667,2,3,0,1,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34221,-9,34220,34216,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-908.5107282218004,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15204,18774,34222,-9,34220,34216,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.161793453964,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,7,2,0,762,-37348.58922732912,0,0,0,3965.725414868751 -15205,18775,34223,-9,34224,34226,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.4890048685393,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,646.5,436576.3939490328,63871.19608012996,288600.9879688387,0,3621.034418005468 -15205,18775,34224,34226,-9,-9,1,0,42,0,2,0,3,3,-9,0,3,8.101951118383896,8.172189772570333,0,7,9,89.58542112036797,0,-9,-9,2019,6,0,49,45,1,0,0,9.61843581213838,9.61843581213838,0,0,0,0,0,1,1,0,0,0,61.47,37.79,60.02,56.42,6.666666666666667,1,1,0,0,6,1,4,0,646.5,436576.3939490328,63871.19608012996,288600.9879688387,0,3621.034418005468 -15205,18775,34225,-9,34224,34226,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.2660001427679,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,0,646.5,436576.3939490328,63871.19608012996,288600.9879688387,0,3621.034418005468 -15205,18775,34226,34224,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.341133844986445,8.377890441478543,0,7,0,29.69396045369053,0,-9,-9,2019,6,0,44,44,1,0,0,9.132349993451189,9.132349993451189,0,0,0,0,0,1,1,0,0,0,60.02,56.42,61.47,37.79,8.333333333333334,1,1,0,0,13,1,4,0,646.5,436576.3939490328,63871.19608012996,288600.9879688387,0,3621.034418005468 -15206,18776,34227,34228,-9,-9,1,1,32,0,0,0,3,3,-9,0,4,8.245993421410382,8.374193449885984,0,5,0,14.83379924895726,0,2,2,2019,11,0,40,48,1,0,0,14.5868128497064,14.5868128497064,0,0,0,0,0,0,0,0,0,0,47.62,56.48,54.2,57.49,6.666666666666667,1,1,0,0,10,6,4,0,289,192381.1285436107,26794.1023413601,83000.80451818001,93994.94693822347,2302.350261982789 -15206,18776,34228,34227,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.823625397608607,7.560505263770938,0,5,0,63.44192519978548,0,-9,-9,2019,4,0,40,40,1,0,0,7.511379349483104,7.511379349483104,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.62,56.48,8.333333333333334,1,1,0,0,5,6,4,0,289,192381.1285436107,26794.1023413601,83000.80451818001,93994.94693822347,2302.350261982789 -15207,18777,34229,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-917.2543497367427,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9244392274076603,0,56.18,48.32,-9,-9,0,1,1,0,0,0,9,1,0,123,-185301.042195867,0,0,0,1134.069235979277 -15208,18778,34230,34231,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,6.578863914544845,6.063391148242768,43,3,-162.2185627894439,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.22331254413547,6.672950122792131,50.52,47.59,55.79,52.62,8.333333333333334,1,1,0,0,10,1,3,1,1493,808591.0800988749,490672.5725899821,170164.5691148899,0,865.9776218198191 -15208,18778,34231,34230,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.457079668092951,7.549931473500366,43,-3,225.1844896243208,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.789352430838164,7.479265993608632,55.79,52.62,50.52,47.59,8.333333333333334,1,1,0,0,6,1,3,1,1493,808591.0800988749,490672.5725899821,170164.5691148899,0,865.9776218198191 -15209,18779,34232,34233,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,37,-6,31.01627941490199,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.88,33.47,59.29,49.68,8.333333333333334,1,1,0,0,6,5,3,1,422.5,495763.2683803516,161143.5589361833,82602.98300286171,0,2835.6434750644 -15209,18779,34233,34232,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.545175388012096,7.347531497385354,32,6,-57.84045200619094,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.023984470957734,59.29,49.68,58.88,33.47,1.666666666666667,1,1,0,0,5,5,3,1,422.5,495763.2683803516,161143.5589361833,82602.98300286171,0,2835.6434750644 -15210,18780,34234,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.791952213500795,6.042776488252688,0,0,-1126.521394463614,0,3,3,2019,25,9,0,0,4,9,0,0,0,1,2.407527449824907,0,15.7855981000801,0,1,1,0,2.248145009075655,6.071364773190118,20.64,49.88,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,776,304309.8609706745,102578.7620346001,0,0,1091.038208644064 -15211,18781,34235,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.663400676821817,6.718850904394754,0,0,-1000.389692130438,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.191666249234332,6.515287224390418,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,631,152532.8016060825,272541.4281302916,0,0,495.1704813157747 -15212,18782,34236,-9,34237,34240,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.33368843999,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,841.2,25417.38763043744,0,0,0,1938.814889404253 -15212,18782,34237,34240,-9,-9,1,0,44,0,3,0,3,3,-9,1,3,0,0,0,19,0,0,0,3,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,47.64,38.66,53,54,6.666666666666667,2,3,0,0,0,8,1,0,841.2,25417.38763043744,0,0,0,1938.814889404253 -15212,18782,34238,-9,34237,34240,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.775629688084,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,841.2,25417.38763043744,0,0,0,1938.814889404253 -15212,18782,34239,-9,34237,34240,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-856.1090999700505,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,841.2,25417.38763043744,0,0,0,1938.814889404253 -15212,18782,34240,34237,-9,-9,1,1,53,0,3,0,3,3,-9,0,4,0,0,0,19,9,0,0,2,2,2019,9,0,0,24,3,1,0,0,0,0,0,0,0,0,1,1,0,1.795162930675726,0,53,54,47.64,38.66,8,2,3,1,0,0,8,1,0,841.2,25417.38763043744,0,0,0,1938.814889404253 -15212,18783,34241,-9,34237,34240,1,1,25,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1063.326959549113,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,841,0,0,0,0,333.4819948825338 -15213,18784,34242,34243,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.975892708739544,7.727890450245139,0,2,-3,-88.93326405922616,0,-9,-9,2019,22,7,37,37,1,7,0,7.150874799473101,7.150874799473101,0,0,0,0,0,0,0,0,0,0,40.49,55.78,57.16,56.15,5,1,1,0,0,3,10,5,1,1482.5,19504.79624244427,27720.99909637227,0,0,3040.598228517897 -15213,18784,34243,34242,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.31317872361309,8.326997043140345,0,2,3,11.2901666941609,0,-9,-9,2019,8,0,45,40,1,0,0,15.02087281700673,15.02087281700673,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.49,55.78,8.333333333333334,1,1,0,0,10,10,5,1,1482.5,19504.79624244427,27720.99909637227,0,0,3040.598228517897 -15214,18785,34244,-9,-9,-9,1,1,91,0,0,0,1,1,-9,0,3,0,8.854639633507526,9.290733488819413,0,0,-999.8420475776217,0,3,3,2019,21,6,0,0,4,6,0,0,0,1,12.91903559217957,14.40205813161706,139.1356883723263,0,1,1,0,0,9.034908402556471,44.34,23.78,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1743,1417738.998976651,312697.1511374228,366020.3502240488,0,5857.345474612956 -15215,18786,34245,34246,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.389372274375422,8.742849868377309,7.3979301298568,33,-4,-54.1628316521769,0,2,3,2019,13,1,25,25,1,1,0,24.49691934205275,24.49691934205275,0,0,0,0,0,0,0,0,6.140794848118961,7.814449714967632,44.14,50.07,54.69,57.47,8.333333333333334,1,1,0,0,13,11,5,1,2638.5,1018510.754811438,753200.6547107555,221438.3512192102,31320.1594790836,7576.721294865471 -15215,18786,34246,34245,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.559487462403979,7.801358881708523,33,4,-28.35856396022582,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.336858818216774,7.577998261418711,54.69,57.47,44.14,50.07,8.333333333333334,1,1,0,0,10,11,5,1,2638.5,1018510.754811438,753200.6547107555,221438.3512192102,31320.1594790836,7576.721294865471 -15216,18787,34247,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1023.397309512593,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.28,45.81,-9,-9,8.333333333333334,2,3,1,0,0,7,2,0,717.5,68020.97473525938,0,0,0,1417.443877390351 -15216,18787,34248,-9,34247,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.1761130628025,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,717.5,68020.97473525938,0,0,0,1417.443877390351 -15216,18788,34249,-9,34247,-9,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1042.368668829707,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.67,53.55,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,1257,0,0,0,0,0 -15217,18789,34250,34252,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.976575007711874,9.18200041140075,0,9,1,-18.98207384696255,0,1,2,2019,30,12,46,48,1,12,0,17.86408262708278,17.86408262708278,0,0,0,0,0,0,0,0,2.568352695659534,0,23.02,52.71,38.86,57.79,6.666666666666667,1,1,0,0,9,8,5,0,692.6666666666666,77143.55314406367,117199.8075814447,0,0,3946.613748919121 -15217,18789,34251,-9,34252,34250,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.3672967865757,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,0,692.6666666666666,77143.55314406367,117199.8075814447,0,0,3946.613748919121 -15217,18789,34252,34250,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.207386314822083,7.900909282292004,0,9,-1,112.8875184919721,0,2,3,2019,15,4,44,44,1,4,0,7.501084010357541,7.501084010357541,0,0,0,0,0,0,0,0,0,0,38.86,57.79,23.02,52.71,5,1,1,0,0,9,8,5,0,692.6666666666666,77143.55314406367,117199.8075814447,0,0,3946.613748919121 -15218,18790,34253,34254,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.164170790221097,7.155022881151125,7,3,52.22002501043285,0,2,1,2019,0,0,0,34,4,0,0,0,0,0,0,0,0,7,1,1,0,7.14404822090698,7.144599742476278,41.23,59.35,59.15,49.67,8.333333333333334,1,1,0,0,8,7,4,1,620,1399027.445779926,768111.8000093871,288826.5157408203,0,3178.84168799479 -15218,18790,34254,34253,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.150800260524973,8.305859466605765,6.946775724138584,7,-3,-155.8978338911265,0,3,3,2019,9,0,50,49,1,0,0,7.643900503931703,7.643900503931703,0,0,0,0,0,1,1,0,7.065926278326286,6.964226118888582,59.15,49.67,41.23,59.35,8.333333333333334,1,1,0,0,8,7,4,1,620,1399027.445779926,768111.8000093871,288826.5157408203,0,3178.84168799479 -15219,18791,34255,34256,-9,-9,1,1,43,0,0,0,1,1,-9,1,3,8.470793785980595,8.349978870543861,0,21,-8,233.0064548598509,0,1,1,2019,13,2,46,0,1,2,0,11.92562414456173,11.92562414456173,0,0,0,0,0,1,1,0,8.276458592086959,0,51.41,56.15,39.74,52.42,5,1,1,0,0,11,10,5,1,1847,176026.3972655709,59530.15141051813,359423.51221981,251102.5875312812,7370.228510941592 -15219,18791,34256,34255,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.496336147556331,8.370245093849098,0,21,8,-9.457788299158841,0,2,1,2019,15,4,42,38,1,4,0,14.50491728095355,14.50491728095355,0,0,0,0,0,1,1,0,3.511565047794245,0,39.74,52.42,51.41,56.15,3.333333333333333,2,3,0,0,11,10,5,1,1847,176026.3972655709,59530.15141051813,359423.51221981,251102.5875312812,7370.228510941592 -15220,18792,34257,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.168987801571084,7.313699014026157,0,0,-1026.744449636135,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.15062227974526,50.99,44.07,-9,-9,10,1,1,0,0,0,10,3,1,269,652800.4915741836,129552.6766574337,458655.7749253566,0,1313.903819177456 -15221,18793,34258,34259,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.204137064274196,8.50859129269077,0,45,-4,-79.50117853049929,0,3,3,2019,11,1,24,28,1,1,0,21.66356154889641,21.66356154889641,0,0,0,0,14.5,1,1,0,2.020062098119193,0,55.96,49.93,42.78,57.17,8.333333333333334,1,1,0,0,11,9,5,1,567.5,1676145.675119603,1088859.47254298,541497.6807571023,0,4769.883239600797 -15221,18793,34259,34258,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,8.369435370664698,8.183198914046153,0,45,4,-83.915439433496,0,3,3,2019,8,0,41,40,1,0,0,13.17902728567528,13.17902728567528,0,0,0,0,2,1,1,0,3.057421379050492,0,42.78,57.17,55.96,49.93,6.666666666666667,1,1,0,0,11,9,5,1,567.5,1676145.675119603,1088859.47254298,541497.6807571023,0,4769.883239600797 -15221,18794,34260,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1037.140734187012,1,-9,-9,2019,24,9,0,38,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.4,62.08,-9,-9,5,2,3,0,0,1,9,1,1,407,-16746.80141500939,0,0,0,0 -15222,18795,34261,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.546366199026186,6.400507978204265,0,0,-1029.570610113304,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,2.729011128949387,0,20.46346660167723,0,1,1,0,0,6.385845434937633,47.91,28.34,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,938,317196.474754106,212748.4624125341,0,0,1281.141363989157 -15223,18796,34262,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.294408853202882,8.041507953791095,7.291208514129425,0,0,-991.7990140495896,0,-9,3,2019,11,3,26,25,1,3,0,7.540006197640876,7.540006197640876,0,0,0,0,7,1,1,0,6.856591593546029,0,40.88,59.72,-9,-9,5,1,1,0,0,4,5,3,0,713.6666666666666,-83740.62594706741,-8607.156051745171,0,0,2481.267743833409 -15223,18796,34263,-9,34262,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.975508017645,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,713.6666666666666,-83740.62594706741,-8607.156051745171,0,0,2481.267743833409 -15223,18796,34264,-9,34262,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.6481319152062,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,713.6666666666666,-83740.62594706741,-8607.156051745171,0,0,2481.267743833409 -15224,18797,34265,-9,34266,34268,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.2355822905495,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1782.75,484083.7471190456,395634.8504610896,252529.254792941,66886.30329568335,2741.496652757666 -15224,18797,34266,34268,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.29462510688866,8.305100224575856,0,15,-7,42.32137118883925,0,2,2,2019,9,0,29,25,1,0,0,15.7648217159025,15.7648217159025,0,0,0,0,0,1,0,1,0,0,56.77,52.22,54.74,57.22,6.666666666666667,1,1,0,0,9,7,3,1,1782.75,484083.7471190456,395634.8504610896,252529.254792941,66886.30329568335,2741.496652757666 -15224,18797,34267,-9,34266,34268,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.51952898368,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1782.75,484083.7471190456,395634.8504610896,252529.254792941,66886.30329568335,2741.496652757666 -15224,18797,34268,34266,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,6.568674041144713,6.832872769871421,0,14,7,27.6190037730189,0,2,2,2019,7,0,37,26,1,0,0,3.277045619093841,3.277045619093841,0,0,0,.7486769264604298,7,1,0,1,0,0,54.74,57.22,56.77,52.22,8.333333333333334,1,1,0,0,9,7,3,1,1782.75,484083.7471190456,395634.8504610896,252529.254792941,66886.30329568335,2741.496652757666 -15225,18798,34269,34270,-9,-9,1,1,33,0,0,0,1,1,0,0,5,0,6.726509641620828,7.163055785656386,6,2,-85.13048370749327,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,6.795059058533725,0,48.18,61.8,40.61,64.02,8.333333333333334,1,1,0,0,4,1,5,0,1713,171030.3549515011,123869.8335466114,99799.1037439503,92548.97290831085,3110.897576644174 -15225,18798,34270,34269,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.49020516387959,8.595821956660581,0,6,-2,103.2327165638218,0,2,2,2019,11,1,38,38,1,1,0,21.74055881482959,21.74055881482959,0,0,0,0,0,0,0,0,0,0,40.61,64.02,48.18,61.8,8.333333333333334,1,1,0,0,5,1,5,0,1713,171030.3549515011,123869.8335466114,99799.1037439503,92548.97290831085,3110.897576644174 -15226,18799,34271,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,7.294197989407674,7.228409994026451,0,0,-1051.673072517324,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.875538415622983,7.003403077460979,62.39,56.71,-9,-9,10,1,1,0,0,0,10,3,1,757,243255.7318501715,262524.3808575339,0,0,1378.418991776348 -15227,18800,34272,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.409358306759627,8.111976832126714,0,0,0,-1096.496914890829,0,-9,-9,2019,7,0,48,38,1,0,0,9.876333205406535,9.876333205406535,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,1125,793362.9351808429,512207.9374206578,157031.2912148724,67081.7645273488,1212.83115365129 -15228,18801,34273,34274,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,7.519349459603702,7.568756240989523,0,13,-6,101.5562807555065,0,2,2,2019,8,1,50,40,1,1,0,5.168704233282529,5.168704233282529,0,0,0,0,5.48,0,0,0,.8286968138087741,0,50.03,52.62,34.06,51.94,6.666666666666667,1,1,0,0,8,8,4,0,539.5,27878.88541674731,84481.42246997546,0,0,1747.080129793146 -15228,18801,34274,34273,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,7.860588885039203,7.631238633079914,0,13,6,-157.6642293490936,0,2,2,2019,14,3,50,45,1,3,0,4.379375503698309,4.379375503698309,0,0,0,0,0,0,0,0,0,0,34.06,51.94,50.03,52.62,3.333333333333333,1,1,0,0,8,8,4,0,539.5,27878.88541674731,84481.42246997546,0,0,1747.080129793146 -15229,18802,34275,34276,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.35290010223845,6.591003748444847,5,17,-54.11261260271379,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.10710599107712,6.48852852737425,51.14,52.42,24.16,52.5,8.333333333333334,1,1,0,0,7,4,2,1,365.5,465690.1376949507,297403.6170901721,216203.2719716514,0,914.1701133181344 -15229,18802,34276,34275,-9,-9,1,0,50,0,0,0,1,1,-9,1,4,0,0,0,5,-17,-142.3903150158853,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.6077558810489346,0,24.16,52.5,51.14,52.42,3.333333333333333,1,1,0,0,0,4,2,1,365.5,465690.1376949507,297403.6170901721,216203.2719716514,0,914.1701133181344 -15230,18803,34277,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.995899768222452,7.733952337033534,0,0,-980.4374666532548,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,5.393248485701117,7.494957262477313,44.24,35.51,-9,-9,3.333333333333333,1,1,0,0,7,5,3,1,291,1123452.504487458,478574.9189914195,450370.6264185383,0,1288.11390565348 -15231,18804,34278,34279,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,0,0,0,13,-6,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.168774015160897,0,51.83,57.2,37.34,60.95,8.333333333333334,1,1,0,0,10,4,1,1,631.3333333333334,-97855.88491174125,0,0,0,675.6034170282347 -15231,18804,34279,34278,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,0,0,0,13,6,0,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,51.83,57.2,6.666666666666667,1,1,0,0,7,4,1,1,631.3333333333334,-97855.88491174125,0,0,0,675.6034170282347 -15231,18804,34280,-9,34278,34279,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.4790146783237,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,1,1,631.3333333333334,-97855.88491174125,0,0,0,675.6034170282347 -15232,18805,34281,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-904.5400557190163,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.44582379695422,0,59.14,52.5,-9,-9,10,1,1,0,0,0,2,1,1,774,430466.6053360874,0,0,0,218.7348288977114 -15233,18806,34282,34285,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.192165332201087,8.339002330068324,0,20,5,157.3401732218395,0,2,2,2019,9,0,45,45,1,0,0,9.686261711576121,9.686261711576121,0,0,0,0,0,1,1,0,0,0,49.87,50.46,46.98,59.35,5,1,1,0,0,7,6,4,1,873.5,344359.6231620926,0,391714.7013668788,0,2455.924049815746 -15233,18806,34283,-9,34285,34282,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.956650018802,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,873.5,344359.6231620926,0,391714.7013668788,0,2455.924049815746 -15233,18806,34284,-9,34285,34282,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1090.517510048082,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,873.5,344359.6231620926,0,391714.7013668788,0,2455.924049815746 -15233,18806,34285,34282,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.372823392410464,8.2448120144737,0,20,-5,-24.13900269556675,0,3,3,2019,8,0,40,43,1,0,0,9.533807466386923,9.533807466386923,0,0,0,0,2,1,1,0,0,0,46.98,59.35,49.87,50.46,10,1,1,0,0,7,6,4,1,873.5,344359.6231620926,0,391714.7013668788,0,2455.924049815746 -15234,18807,34286,34287,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,46,1,-68.0446761496069,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,32.21,41.17,59.31,8.333333333333334,1,1,0,0,0,11,2,1,327,847645.2440414943,188132.3706122648,139174.7519761288,0,2124.910070241239 -15234,18807,34287,34286,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.384925405834261,7.275473268780818,4.300372295285313,46,-1,-13.26074288664901,0,-9,-9,2019,6,0,16,40,1,0,0,9.930613400739498,9.930613400739498,0,0,0,0,0,1,1,0,4.643800894717575,4.402325500390757,41.17,59.31,57.16,32.21,1.666666666666667,1,1,0,0,11,11,2,1,327,847645.2440414943,188132.3706122648,139174.7519761288,0,2124.910070241239 -15235,18808,34288,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.667471043404619,8.846564300103214,0,0,0,-1078.536900347014,0,1,1,2019,10,0,50,55,1,0,0,16.05211722109369,16.05211722109369,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,372,117742.6836963325,136719.5054059494,0,0,1648.655184911646 -15236,18809,34289,-9,34290,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1039.368300844351,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,3,0,1138,-152431.2645710414,-25762.37211729228,0,0,1320.592684350896 -15236,18809,34290,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.481577552159008,7.484936165588118,5.303833458807742,0,0,-967.3478108019881,0,2,2,2019,8,0,20,20,1,0,0,9.98197347271957,9.98197347271957,0,0,0,0,14.5,1,1,0,5.348103618482788,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,8,3,0,1138,-152431.2645710414,-25762.37211729228,0,0,1320.592684350896 -15237,18810,34291,34292,-9,-9,1,0,33,1,4,0,3,3,-9,0,4,0,0,0,1,-23,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,50,49,7,1,1,0,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15237,18810,34292,34291,-9,-9,1,1,56,1,4,0,3,3,-9,1,3,0,0,0,1,23,0,-9,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48,57,7,1,1,0,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15237,18810,34293,-9,34291,34292,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-988.3903608320977,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15237,18810,34294,-9,34291,34292,1,1,14,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1029.931234848652,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15237,18810,34295,-9,34291,34292,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.7859102864428,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15237,18810,34296,-9,34291,34292,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.81653652415,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,1,580,226918.4217525321,58936.76190490933,216042.5361505961,66730.63234575441,1968.251213476257 -15238,18811,34297,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,0,8.565851227110745,8.196198592038927,0,0,-917.1493519754673,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.156322966043815,46,39,-9,-9,5,1,1,0,0,7,2,5,1,255,-71612.2950131385,0,0,0,2327.744539423932 -15239,18812,34298,-9,34300,34299,1,0,16,0,1,0,2,2,-9,0,3,0,4.237265660717826,4.26875800026095,0,0,-980.0908487170308,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.538688571432326,0,44.7,53.68,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,392.5,358221.9596387653,132404.1183814628,342937.0146025197,159626.1705185376,3275.775751408763 -15239,18812,34299,34300,-9,-9,1,1,47,0,1,0,3,3,-9,0,5,8.845585782455778,8.824620086708169,0,25,2,-1.281225576888341,0,2,2,2019,10,0,40,45,1,0,0,18.40580881529371,18.40580881529371,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,392.5,358221.9596387653,132404.1183814628,342937.0146025197,159626.1705185376,3275.775751408763 -15239,18812,34300,34299,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.597244636581124,7.82977032564163,0,25,-2,261.8152588441666,0,2,2,2019,8,0,29,24,1,0,0,7.690346510290739,7.690346510290739,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.1,59.11,8.333333333333334,1,1,0,0,8,9,4,1,392.5,358221.9596387653,132404.1183814628,342937.0146025197,159626.1705185376,3275.775751408763 -15239,18812,34301,-9,34300,34299,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.7885875413996,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,392.5,358221.9596387653,132404.1183814628,342937.0146025197,159626.1705185376,3275.775751408763 -15240,18813,34302,-9,34303,34305,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.3086490522752,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,556.75,73499.43424875992,719.5368724598234,0,0,2532.783031157403 -15240,18813,34303,34305,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.630101683186887,7.617141872779714,0,7,5,-7.871967710640894,0,-9,-9,2019,6,0,25,25,1,0,0,9.204724261309646,9.204724261309646,0,0,0,0,0,1,1,0,0,0,58.15,52.91,47.07,50.01,8.333333333333334,1,1,0,0,8,11,3,0,556.75,73499.43424875992,719.5368724598234,0,0,2532.783031157403 -15240,18813,34304,-9,34303,34305,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.3212895048764,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,556.75,73499.43424875992,719.5368724598234,0,0,2532.783031157403 -15240,18813,34305,34303,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.262915951485532,8.381008318785131,0,7,-5,70.36724183262092,0,-9,-9,2019,12,1,47,44,1,1,0,7.863467934999671,7.863467934999671,0,0,0,0,0,1,1,0,0,0,47.07,50.01,58.15,52.91,5,1,1,0,0,8,11,3,0,556.75,73499.43424875992,719.5368724598234,0,0,2532.783031157403 -15241,18814,34306,-9,34308,34309,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.5713509852842,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,3012.4,106184.6424823818,49145.85349820923,240968.1549119005,169029.8413539632,4410.261971629297 -15241,18814,34307,-9,34308,34309,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.500971735932,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,3012.4,106184.6424823818,49145.85349820923,240968.1549119005,169029.8413539632,4410.261971629297 -15241,18814,34308,34309,-9,-9,1,0,37,0,3,0,1,1,-9,0,4,7.385924716178421,7.406939692343096,0,16,-1,-135.9348653151635,0,3,3,2019,24,9,20,20,1,9,0,9.842272930966164,9.842272930966164,0,0,0,0,0,0,0,0,0,0,42.85,60.33,52,54.51,6.666666666666667,1,1,0,0,12,6,5,1,3012.4,106184.6424823818,49145.85349820923,240968.1549119005,169029.8413539632,4410.261971629297 -15241,18814,34309,34308,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,9.307019377488544,8.900544963584165,0,11,1,-22.14835247243327,0,-9,-9,2019,11,0,46,46,1,0,0,28.21373272867554,28.21373272867554,0,0,0,0,0,0,0,0,0,0,52,54.51,42.85,60.33,6.666666666666667,1,1,0,0,7,6,5,1,3012.4,106184.6424823818,49145.85349820923,240968.1549119005,169029.8413539632,4410.261971629297 -15241,18814,34310,-9,34308,34309,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1126.754640913797,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,5,1,3012.4,106184.6424823818,49145.85349820923,240968.1549119005,169029.8413539632,4410.261971629297 -15242,18815,34311,-9,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-985.9882191791509,0,3,3,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,545,167213.0124626407,0,0,0,1183.918388515883 -15243,18816,34312,34313,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.560460434249263,8.308972816341655,5.822587439783275,1,-1,53.09961411662725,-9,-9,-9,2019,6,0,37,0,1,0,0,15.28202245871325,15.28202245871325,0,0,0,0,0,0,0,0,6.543997824310306,0,54.2,57.49,46.33,55.93,8.333333333333334,1,1,0,0,3,4,5,0,1243,54293.32926302971,27699.54972080822,113244.897130019,60814.52878306188,4088.381141732447 -15243,18816,34313,34312,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.162560931886592,8.210744100901117,0,1,1,-52.58556999936498,-9,-9,-9,2019,14,3,37,0,1,3,0,11.80351506716319,11.80351506716319,0,0,0,0,0,0,0,0,2.609246767189975,0,46.33,55.93,54.2,57.49,3.333333333333333,1,1,0,0,0,4,5,0,1243,54293.32926302971,27699.54972080822,113244.897130019,60814.52878306188,4088.381141732447 -15244,18817,34314,34316,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.78485574494445,8.193076568885981,0,11,-1,-1.899222999941017,0,3,2,2019,8,1,70,66,1,1,0,4.750575304631269,4.750575304631269,0,0,0,0,0,1,1,0,0,0,51.49,57.57,40.77,61.04,5,2,3,0,0,7,2,3,1,772.75,217185.7306292247,0,173582.7514763738,86999.8165599881,2556.807569150964 -15244,18817,34315,-9,34316,34314,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.7861158780751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,772.75,217185.7306292247,0,173582.7514763738,86999.8165599881,2556.807569150964 -15244,18817,34316,34314,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.914012302226246,6.676822943990401,0,11,1,21.7592826133768,0,3,2,2019,13,1,14,22,1,1,0,8.354886317291598,8.354886317291598,0,0,0,0,0,1,1,0,0,0,40.77,61.04,51.49,57.57,6.666666666666667,2,3,0,0,3,2,3,1,772.75,217185.7306292247,0,173582.7514763738,86999.8165599881,2556.807569150964 -15244,18817,34317,-9,34316,34314,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.353707976485,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,772.75,217185.7306292247,0,173582.7514763738,86999.8165599881,2556.807569150964 -15245,18818,34318,-9,34323,34321,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.6347569245248,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15245,18818,34319,-9,34323,34321,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.1688703743516,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15245,18818,34320,-9,34323,34321,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1003.971361580812,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15245,18818,34321,34323,-9,-9,1,1,46,0,4,0,2,2,-9,0,4,7.920709545617566,7.752624243424748,0,24,-1,-29.26882749860295,0,2,2,2019,4,0,39,40,1,0,0,6.915731495669812,6.915731495669812,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,6.666666666666667,1,1,0,0,13,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15245,18818,34322,-9,34323,34321,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-814.8754659104744,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.3773825463158254,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15245,18818,34323,34321,-9,-9,1,0,47,0,4,0,1,1,-9,0,5,0,0,0,22,1,-18.02712191870856,1,2,2,2019,10,2,0,13,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,8,9,2,1,1794.666666666667,54917.97694157277,79055.20814373042,0,0,1886.672290371849 -15246,18819,34324,-9,34326,34325,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1023.123267281982,-9,3,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.88,54.55,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,626.6666666666666,7700.941742100006,0,0,0,2328.554291536726 -15246,18819,34325,34326,-9,-9,1,1,55,0,1,0,2,2,-9,1,1,0,0,0,9,0,0,0,3,3,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,41.15,18.03,48,49,3.333333333333333,1,1,0,0,0,5,1,0,626.6666666666666,7700.941742100006,0,0,0,2328.554291536726 -15246,18819,34326,34325,-9,-9,1,0,55,0,1,0,3,3,-9,1,3,0,0,0,9,0,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,41.15,18.03,7,1,1,0,1,0,5,1,0,626.6666666666666,7700.941742100006,0,0,0,2328.554291536726 -15246,18820,34327,-9,34326,34325,1,1,30,0,1,0,2,2,-9,0,4,6.824385356583906,6.975704420582707,0,0,0,-1041.980443183888,0,3,2,2019,9,1,19,0,1,1,1,5.192838966086788,5.192838966086788,0,0,0,0,2,1,1,0,0,0,35.69,55.54,-9,-9,6.666666666666667,1,1,0,0,1,5,2,0,1996,166538.8789256067,0,0,0,-104.9348557115218 -15247,18821,34328,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.732077306216022,7.722427810905479,0,0,-939.9050112673521,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.152446102533305,7.833792710062436,44.99,41.57,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,28,532493.9672333843,142454.3170530841,242736.4039528766,0,1768.441517887504 -15248,18822,34329,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1098.336595731559,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.01701079772707,0,67.05,35.11,-9,-9,8.333333333333334,1,1,0,0,8,7,1,1,396,223195.3022952452,0,290017.4870959767,0,557.0928182143073 -15249,18823,34330,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-917.5337774600958,-9,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,6.99,47.45,-9,-9,0,1,1,0,1,8,7,1,0,334,-191535.5314659137,0,0,0,597.7672618566447 -15250,18824,34331,-9,34334,34332,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.7998659271796,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,463.5,650162.244513968,458679.9976372891,282861.5590494818,85738.91454386606,4170.243938662255 -15250,18824,34332,34334,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.387236695930945,8.329053211096346,0,15,-1,25.50722010856916,0,2,2,2019,8,1,36,40,1,1,0,11.89652497778632,11.89652497778632,0,0,0,0,2,1,1,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,8,2,5,1,463.5,650162.244513968,458679.9976372891,282861.5590494818,85738.91454386606,4170.243938662255 -15250,18824,34333,-9,34334,34332,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.378843107924,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,463.5,650162.244513968,458679.9976372891,282861.5590494818,85738.91454386606,4170.243938662255 -15250,18824,34334,34332,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.616997806618309,8.609031441164307,0,15,1,-79.62888705241642,0,1,2,2019,8,0,40,37,1,0,0,21.530771562195,21.530771562195,0,0,0,0,2,1,1,0,0,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,463.5,650162.244513968,458679.9976372891,282861.5590494818,85738.91454386606,4170.243938662255 -15251,18825,34335,34336,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.593904357346951,4.553262932308744,7,-8,11.67232587214946,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.438985951728387,4.555833294185249,52.84,42.9,52.35,46.12,6.666666666666667,1,1,0,0,4,2,2,1,658,154846.6096470321,0,104018.1193999143,0,1089.564230113851 -15251,18825,34336,34335,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,-54.50514698687679,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.35,46.12,52.84,42.9,8.333333333333334,1,1,0,0,0,2,2,1,658,154846.6096470321,0,104018.1193999143,0,1089.564230113851 -15252,18826,34337,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.2163915633,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,14.92651156686215,1.339536094050565,143.1710007761705,0,1,1,0,0,0,40.06,40.43,-9,-9,5,3,4,0,0,0,8,1,1,261,172273.1972624665,0,0,0,1390.791788479974 -15253,18827,34338,34339,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.039595871623964,8.350354381098358,0,2,-6,-24.30547872510243,0,-9,-9,2019,2,0,40,40,1,0,0,9.927724734416891,9.927724734416891,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.83,57.2,10,1,1,0,0,5,8,5,1,355.6666666666667,629174.4944721942,141452.9386062756,422705.4582021104,214683.6856310293,4309.818178785848 -15253,18827,34339,34338,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.751489906409049,8.611342169054895,0,2,6,-93.94680002562365,0,-9,-9,2019,6,0,45,45,1,0,0,18.65220696859938,18.65220696859938,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,4,8,5,1,355.6666666666667,629174.4944721942,141452.9386062756,422705.4582021104,214683.6856310293,4309.818178785848 -15253,18827,34340,-9,34338,34339,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.746672545558,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,355.6666666666667,629174.4944721942,141452.9386062756,422705.4582021104,214683.6856310293,4309.818178785848 -15254,18828,34341,34342,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.206912916994987,7.885421036484195,35,-5,-80.54825693236145,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.179543009210181,8.276865358499373,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,4,6,3,1,589.5,1631260.987667929,604030.830858574,309520.5545457626,0,2804.60939938022 -15254,18828,34342,34341,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,5.329890599120964,4.975741692432489,34,5,33.92978838100322,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.903919738500014,5.439626688130632,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,0,6,3,1,589.5,1631260.987667929,604030.830858574,309520.5545457626,0,2804.60939938022 -15255,18829,34343,34344,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,8.663789537512352,8.56502706382471,3,-1,-54.5752291315446,0,-9,-9,2019,11,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,8.701460164687649,8.386748017467841,51.41,56.15,56.76,31.14,1.666666666666667,1,1,0,0,7,9,5,0,857.5,1518058.138559159,808094.3978179921,675377.5963868484,69082.96607941992,4271.362944799209 -15255,18829,34344,34343,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.681969691786375,7.597891473350197,0,3,1,-131.4892914523282,0,-9,-9,2019,7,1,32,30,1,1,0,7.120859963847723,7.120859963847723,0,0,0,0,7,0,0,0,7.180280301783604,0,56.76,31.14,51.41,56.15,10,1,1,0,0,9,9,5,0,857.5,1518058.138559159,808094.3978179921,675377.5963868484,69082.96607941992,4271.362944799209 -15256,18830,34345,-9,34347,34348,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-848.7225930007135,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,778.25,673223.7148222903,515673.4837919328,320888.0010184158,181041.4374328688,4509.968149240526 -15256,18830,34346,-9,34347,34348,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.1180249144846,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,778.25,673223.7148222903,515673.4837919328,320888.0010184158,181041.4374328688,4509.968149240526 -15256,18830,34347,34348,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.499518622610768,8.27861020421626,0,6,-1,-108.3438544810064,0,1,3,2019,8,0,40,52,1,0,0,14.28167373382747,14.28167373382747,0,0,0,0,0,1,1,0,.4517950226640103,0,58.33,39.49,52.23,55.6,6.666666666666667,1,1,0,0,7,13,5,1,778.25,673223.7148222903,515673.4837919328,320888.0010184158,181041.4374328688,4509.968149240526 -15256,18830,34348,34347,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.835401300758923,9.116354990961872,0,6,1,-53.43429040422272,0,-9,-9,2019,11,0,38,40,1,0,0,24.48827921856233,24.48827921856233,0,0,0,0,0,1,1,0,2.796017970689302,0,52.23,55.6,58.33,39.49,8.333333333333334,1,1,0,0,7,13,5,1,778.25,673223.7148222903,515673.4837919328,320888.0010184158,181041.4374328688,4509.968149240526 -15257,18831,34349,34351,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.88896671638601,9.845716274110908,0,4,3,-91.42586829516625,0,2,1,2019,7,0,40,42,1,0,0,44.8644862486243,44.8644862486243,0,0,0,0,0,1,1,0,3.678214178715942,0,57.16,56.15,49,56,8.333333333333334,1,1,0,0,7,12,5,1,729.3333333333334,586929.3562746259,502670.0646687189,299934.5318479899,195882.3001167787,8524.559474508078 -15257,18831,34350,-9,34351,34349,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.7321475662883,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,729.3333333333334,586929.3562746259,502670.0646687189,299934.5318479899,195882.3001167787,8524.559474508078 -15257,18831,34351,34349,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,0,0,0,4,-3,-52.84496855853104,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,57.16,56.15,8,1,1,1,0,0,12,5,1,729.3333333333334,586929.3562746259,502670.0646687189,299934.5318479899,195882.3001167787,8524.559474508078 -15258,18832,34352,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,7.186428588439298,7.894951391370271,7.203038506213416,0,0,-968.7023197627358,0,3,3,2019,18,6,15,21,1,6,0,13.45399212135383,13.45399212135383,0,0,0,0,0,1,1,0,0,7.59301446745526,46.14,22.42,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,845,67274.8311104341,92337.30946493734,0,0,1618.148443351179 -15259,18833,34353,34354,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.557942600703496,7.851557204630567,0,25,4,-1.513032807868423,0,3,3,2019,13,1,20,42,1,1,0,13.27781379602677,13.27781379602677,0,0,0,0,0,1,1,0,0,0,37.69,58.7,31.77,61.39,1.666666666666667,2,3,0,1,9,2,2,0,563.8,398993.7272832801,306258.3400866686,74041.87183330253,13773.53006077496,2002.822056131338 -15259,18833,34354,34353,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,25,-4,69.6914462504256,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.39,37.69,58.7,3.333333333333333,2,3,0,1,0,2,2,0,563.8,398993.7272832801,306258.3400866686,74041.87183330253,13773.53006077496,2002.822056131338 -15259,18833,34355,-9,34354,34353,1,1,17,0,2,1,3,0,0,0,4,0,0,0,0,0,-1026.557356564284,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,1.666666666666667,2,3,0,1,0,2,2,0,563.8,398993.7272832801,306258.3400866686,74041.87183330253,13773.53006077496,2002.822056131338 -15259,18833,34356,-9,34354,34353,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1004.452938370553,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,2,3,-9,0,0,2,2,0,563.8,398993.7272832801,306258.3400866686,74041.87183330253,13773.53006077496,2002.822056131338 -15259,18833,34357,-9,34354,34353,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-995.6431681348764,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,563.8,398993.7272832801,306258.3400866686,74041.87183330253,13773.53006077496,2002.822056131338 -15259,18834,34358,-9,34354,34353,1,1,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-990.3684225646642,-9,2,3,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,9.85,60.39,-9,-9,5,2,3,0,0,0,2,1,0,409,108413.7744008532,0,97323.82000125216,0,1027.744433688812 -15260,18835,34359,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.66095515344706,7.105770401066908,0,0,0,-1022.230603059197,0,3,3,2019,12,0,16,16,1,0,0,6.461676676332655,6.461676676332655,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,972.3333333333334,-4910.651431206735,0,0,0,1901.135231244847 -15260,18835,34360,-9,34359,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.8452743759822,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,972.3333333333334,-4910.651431206735,0,0,0,1901.135231244847 -15260,18835,34361,-9,34359,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.1087138764244,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,972.3333333333334,-4910.651431206735,0,0,0,1901.135231244847 -15261,18836,34362,34363,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.028982455597209,8.36275570189868,0,9,8,-108.6904794415189,0,2,2,2019,10,2,44,39,1,2,0,8.140535832772422,8.140535832772422,0,0,0,0,0,0,0,0,0,0,52.97,51.29,39.8,43.63,10,1,1,0,0,10,6,4,0,1580,69099.3564798322,58138.9834736012,142124.5019439491,86338.92166400841,2583.754544604276 -15261,18836,34363,34362,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.343426752229449,8.004987176776908,0,9,-8,61.00338592968343,0,-9,-9,2019,19,7,42,39,1,7,0,8.43455647971037,8.43455647971037,0,0,0,0,0,0,0,0,0,0,39.8,43.63,52.97,51.29,8.333333333333334,1,1,0,0,10,6,4,0,1580,69099.3564798322,58138.9834736012,142124.5019439491,86338.92166400841,2583.754544604276 -15262,18837,34364,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.93234886465978,9.24909989059906,0,0,0,-1076.747937968286,0,2,2,2019,20,8,40,40,1,8,0,19.71379523736557,19.71379523736557,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,3993,1853201.583881676,0,1365027.257927997,0,3462.600197543466 -15263,18838,34365,34366,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,2.702674180329096,2.608423367141805,6,-2,66.38357137754033,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.558391197076833,2.344000192900657,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,1,9,2,1,1365,138810.8833929052,164106.9046996138,0,0,1394.980276256258 -15263,18838,34366,34365,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.926828957701297,5.906305873804473,6,2,142.6264283803883,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.560574416646892,5.841771695068847,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,1365,138810.8833929052,164106.9046996138,0,0,1394.980276256258 -15264,18839,34367,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.179166073339131,7.319361336900167,0,0,-965.9487043733266,0,2,1,2019,9,1,0,0,4,1,0,0,0,1,1.5623067777549,0,19.24267487640213,0,1,1,0,0,7.326331009393161,63.07,10.78,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,869,129405.4723410657,45628.18705116263,99504.14217415349,0,1731.070751189525 -15265,18840,34368,-9,34369,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.1949470573368,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,652,3637.500129727152,28329.31244144203,0,0,1961.257861387927 -15265,18840,34369,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,7.844645470227638,7.701135817020362,0,0,0,-966.6054698518886,0,3,1,2019,19,7,25,33,1,7,0,10.33251056511271,10.33251056511271,0,0,0,0,0,1,1,0,0,0,31.35,53.92,-9,-9,5,1,1,0,1,7,4,3,0,652,3637.500129727152,28329.31244144203,0,0,1961.257861387927 -15266,18841,34370,34371,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,3.018235366899101,2.847390084395251,6,4,55.04349602610246,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.172444226832586,50.73,43.06,56.94,49.53,10,1,1,0,0,0,5,2,0,783,421788.0376218461,0,353191.0513558647,0,1710.388117187103 -15266,18841,34371,34370,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,6,-4,-2.471210297602634,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,49.53,50.73,43.06,3.333333333333333,1,1,0,0,0,5,2,0,783,421788.0376218461,0,353191.0513558647,0,1710.388117187103 -15267,18842,34372,34373,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.722358758523981,7.419851754352868,8,-2,78.55583396303226,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.193831553758965,8.033337810062914,58.32,50.22,58.72,43.42,8.333333333333334,1,1,0,0,7,2,5,1,421.5,1588205.632007186,754243.0197648177,230526.8058737232,0,5567.052222233237 -15267,18842,34373,34372,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,9.181268313264326,9.271389526060412,8,2,96.75635011143207,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.368230331582077,9.231624656941619,58.72,43.42,58.32,50.22,6.666666666666667,1,1,0,0,11,2,5,1,421.5,1588205.632007186,754243.0197648177,230526.8058737232,0,5567.052222233237 -15268,18843,34374,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1034.852952840153,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,1,0,2,9,2,0,391.6666666666667,-22163.54412393786,0,0,0,1246.831338283076 -15268,18843,34375,-9,34374,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.1364942109452,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,391.6666666666667,-22163.54412393786,0,0,0,1246.831338283076 -15268,18843,34376,-9,34374,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.4741556061658,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,391.6666666666667,-22163.54412393786,0,0,0,1246.831338283076 -15269,18844,34377,34378,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.743814132181662,7.43145966886255,28,8,113.0299371605293,0,2,2,2019,12,1,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,7.279052449454777,7.378086322349961,49.41,58.28,48.81,59.91,8.333333333333334,1,1,0,0,12,9,4,1,491,2490608.090364085,1562458.832347889,588888.7656416623,0,4055.442561870934 -15269,18844,34378,34377,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.260587344039656,8.370959493244708,0,9,-8,77.52188865271592,0,3,2,2019,9,0,43,38,1,0,0,9.830861525403803,9.830861525403803,0,0,0,0,0,1,1,0,0,0,48.81,59.91,49.41,58.28,6.666666666666667,3,4,0,0,12,9,4,1,491,2490608.090364085,1562458.832347889,588888.7656416623,0,4055.442561870934 -15269,18845,34379,-9,34378,34377,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1047.105881565587,0,1,1,2019,12,3,0,7,3,3,1,0,0,0,0,0,0,0,1,1,0,2.151749246453503,0,43.67,61.06,-9,-9,6.666666666666667,4,2,1,0,4,9,1,1,140,-200435.4356962628,83300.21962802323,0,0,216.5851609159113 -15270,18846,34380,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,7.133136896367427,7.355199769461675,0,0,-991.9076994971323,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,7.427781449487725,31.34,20.98,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,585,134772.970703604,-9975.786005052567,177685.2885725408,88652.04324647044,1889.19549690367 -15271,18847,34381,-9,34383,34382,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.3533068316099,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,4,1,425,679322.9995219737,528380.2268653837,176909.4918463165,13360.10474345882,2628.695366667758 -15271,18847,34382,34383,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.512057606241262,8.380497720904124,0,27,2,-12.89427924586903,0,3,2,2019,14,2,39,40,1,2,0,15.30528189522605,15.30528189522605,0,0,0,0,0,1,1,0,4.198097923830653,0,37.96,44.77,56.5,51,6.666666666666667,1,1,0,0,12,2,4,1,425,679322.9995219737,528380.2268653837,176909.4918463165,13360.10474345882,2628.695366667758 -15271,18847,34383,34382,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.593016629157063,7.534215314232177,0,27,-2,46.26151730082942,0,3,3,2019,11,0,25,25,1,0,0,8.734752220401568,8.734752220401568,0,0,0,0,7,1,1,0,0,0,56.5,51,37.96,44.77,8.333333333333334,1,1,0,0,10,2,4,1,425,679322.9995219737,528380.2268653837,176909.4918463165,13360.10474345882,2628.695366667758 -15271,18848,34384,-9,34383,34382,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-959.2924775180443,-9,2,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,26.74,66.23,-9,-9,3.333333333333333,1,1,0,0,1,2,2,1,702,0,0,0,0,0 -15272,18849,34385,34387,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.929256149358052,8.635562850249091,0,3,6,56.54742634807547,0,-9,-9,2019,6,0,42,45,1,0,0,20.81557451521978,20.81557451521978,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,5,8,5,1,887,639918.887812516,121875.5637724462,390196.712680647,208108.5748579865,3851.248408931313 -15272,18849,34386,-9,34387,34385,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.728626265559,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,887,639918.887812516,121875.5637724462,390196.712680647,208108.5748579865,3851.248408931313 -15272,18849,34387,34385,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.151234878970246,8.433819499901494,0,3,-6,-140.8663818991119,0,-9,-9,2019,6,0,26,40,1,0,0,18.74226356948433,18.74226356948433,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,1,6,8,5,1,887,639918.887812516,121875.5637724462,390196.712680647,208108.5748579865,3851.248408931313 -15273,18850,34388,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.533262011763184,6.379316369622789,0,0,-1142.217978288205,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.185749849046149,6.617084703688079,41.96,32.38,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,332,265672.1867317049,44111.32929203458,76633.62897456011,0,1110.860266438278 -15274,18851,34389,34390,-9,-9,1,1,27,1,3,0,2,2,-9,0,5,8.26601390427972,8.209783369275883,0,8,-12,-80.11699378068067,0,2,3,2019,10,0,40,40,1,0,0,12.35494096732098,12.35494096732098,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.73,58.82,5,1,1,0,0,10,2,3,0,696.6,-31227.9283214651,22106.58210187578,113957.3669639074,91998.25947725579,3368.688828852851 -15274,18851,34390,34389,-9,-9,1,0,39,1,3,0,2,2,-9,0,5,7.473818569972074,7.910119304546274,6.265188193293173,8,12,-18.4504438545072,0,-9,-9,2019,7,0,21,0,1,0,0,9.338429405752528,9.338429405752528,0,0,0,0,0,1,1,0,6.428695954351982,0,51.73,58.82,54.1,59.11,10,1,1,0,0,7,2,3,0,696.6,-31227.9283214651,22106.58210187578,113957.3669639074,91998.25947725579,3368.688828852851 -15274,18851,34391,-9,34390,34389,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-876.8058136710147,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,696.6,-31227.9283214651,22106.58210187578,113957.3669639074,91998.25947725579,3368.688828852851 -15274,18851,34392,-9,34390,34389,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-874.1495320734815,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,696.6,-31227.9283214651,22106.58210187578,113957.3669639074,91998.25947725579,3368.688828852851 -15274,18851,34393,-9,34390,-9,1,0,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-917.0567557254353,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,3,0,696.6,-31227.9283214651,22106.58210187578,113957.3669639074,91998.25947725579,3368.688828852851 -15275,18852,34394,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.993235501705882,7.991140688439938,0,0,-1037.577218542189,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,2.532401966667011,0,32.32272882517751,0,1,1,0,5.197103505360873,8.065468634226461,42.02,25.48,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,335,557579.830056505,345376.0572192591,0,0,2046.361699702216 -15276,18853,34395,34396,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.556463104613931,8.366971911316998,0,4,-2,22.86041999868391,-9,-9,-9,2019,6,0,38,0,1,0,0,17.2582779118097,17.2582779118097,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.16,58.62,8.333333333333334,1,1,0,0,6,5,4,1,1011.666666666667,-14825.74001793176,0,225711.0587723339,206332.9707655195,3131.124821215895 -15276,18853,34396,34395,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.684088579065393,7.889202192209422,0,4,2,-68.49701541143577,0,-9,-9,2019,14,3,33,33,1,3,0,10.68268551147334,10.68268551147334,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.33,53.46,8.333333333333334,1,1,0,0,4,5,4,1,1011.666666666667,-14825.74001793176,0,225711.0587723339,206332.9707655195,3131.124821215895 -15276,18853,34397,-9,34396,34395,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.1394432492102,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,1011.666666666667,-14825.74001793176,0,225711.0587723339,206332.9707655195,3131.124821215895 -15277,18854,34398,34400,-9,-9,1,1,38,0,3,0,3,3,-9,1,4,0,0,0,9,4,0,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.28,60.18,38.5,26.21,10,1,1,1,0,0,7,1,0,1005,554073.845199361,0,849174.0347675215,328038.4905994168,2899.454344151965 -15277,18854,34399,-9,34400,34398,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-987.5832060055797,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,1005,554073.845199361,0,849174.0347675215,328038.4905994168,2899.454344151965 -15277,18854,34400,34398,-9,-9,1,0,34,0,3,0,2,2,-9,1,2,0,0,0,9,-4,0,0,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,38.5,26.21,48.28,60.18,10,1,1,0,0,0,7,1,0,1005,554073.845199361,0,849174.0347675215,328038.4905994168,2899.454344151965 -15277,18854,34401,-9,34400,34398,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1027.814518866035,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,1,0,1005,554073.845199361,0,849174.0347675215,328038.4905994168,2899.454344151965 -15277,18854,34402,-9,34400,34398,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1104.046385755854,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,1,0,1005,554073.845199361,0,849174.0347675215,328038.4905994168,2899.454344151965 -15278,18855,34403,34406,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.301552735530729,8.436288234475668,0,10,1,-27.3646282224903,0,3,3,2019,9,0,33,32,1,0,0,12.66209507636732,12.66209507636732,0,0,0,0,0,1,1,0,0,0,49.63,51.49,51.14,52.08,8.333333333333334,1,1,0,0,11,9,5,1,781.5,691016.8715396277,284512.0457614823,546389.968699777,155494.045579439,4239.376105601806 -15278,18855,34404,-9,34403,34406,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.07923743528,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,781.5,691016.8715396277,284512.0457614823,546389.968699777,155494.045579439,4239.376105601806 -15278,18855,34405,-9,34403,34406,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.6779747713761,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,781.5,691016.8715396277,284512.0457614823,546389.968699777,155494.045579439,4239.376105601806 -15278,18855,34406,34403,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.727830588982627,8.954632165449562,0,10,-1,101.3609102276733,0,-9,-9,2019,10,0,42,40,1,0,0,18.16179995798691,18.16179995798691,0,0,0,0,0,1,1,0,.4382053610680183,0,51.14,52.08,49.63,51.49,8.333333333333334,1,1,0,0,11,9,5,1,781.5,691016.8715396277,284512.0457614823,546389.968699777,155494.045579439,4239.376105601806 -15279,18856,34407,-9,34409,34410,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1096.461966044757,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,2,1,920.5,-99547.28958958284,-8378.996365009782,0,0,2748.425825888212 -15279,18856,34408,-9,34409,34410,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.764688101539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,1,920.5,-99547.28958958284,-8378.996365009782,0,0,2748.425825888212 -15279,18856,34409,34410,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,0,0,0,6,-11,73.68860024113224,0,3,3,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,53.75,41.28,46.82,45.62,6.666666666666667,1,1,0,0,0,6,2,1,920.5,-99547.28958958284,-8378.996365009782,0,0,2748.425825888212 -15279,18856,34410,34409,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.803164060341405,7.6063650280821,0,6,11,-90.5143689570353,0,3,3,2019,10,1,35,32,1,1,0,7.830848933231113,7.830848933231113,0,0,0,0,0,1,1,0,0,0,46.82,45.62,53.75,41.28,10,1,1,0,0,9,6,2,1,920.5,-99547.28958958284,-8378.996365009782,0,0,2748.425825888212 -15280,18857,34411,34412,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-28.85566817280022,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,62.84,46.85,8,1,1,0,0,0,4,2,1,1316.5,767507.6715948154,178123.4723000157,263874.9603983653,0,2210.834296290562 -15280,18857,34412,34411,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.455895500049762,7.375671534083453,60,1,100.0539844984077,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.720834943318291,0,0,1,1,0,5.205055875189329,7.119403327055759,62.84,46.85,52,46,8.333333333333334,1,1,0,0,0,4,2,1,1316.5,767507.6715948154,178123.4723000157,263874.9603983653,0,2210.834296290562 -15281,18858,34413,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1065.683807054288,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,3.176373908858052,0,19.05654688044979,0,1,1,0,0,0,40.38,23.69,-9,-9,1.666666666666667,2,3,0,0,5,8,1,0,1258,-29924.95448424617,0,0,0,1072.514532115632 -15282,18859,34414,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-999.0700830686905,0,2,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,1.666666666666667,1,1,1,0,0,5,1,0,407,-6429.446857696414,0,0,0,1062.203322329019 -15283,18860,34415,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.609091307350163,6.767063553535438,0,0,-1005.310775508232,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,1,5.733168230061287,1.486577464626253,39.16063938607423,7,1,0,1,.7160815151431914,6.33664066575127,66.62,24.29,-9,-9,10,1,1,0,0,0,10,2,0,156,177208.6086497487,120316.1718959407,170184.7420096496,0,2535.968163604555 -15284,18861,34416,-9,34417,34419,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.6148665088779,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,13,5,1,320.75,632712.6884779097,383908.763842889,336702.6226332803,197784.5090902178,4596.904550451663 -15284,18861,34417,34419,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.627264662853289,7.765623143661089,0,13,-2,-87.63241774742239,0,2,3,2019,7,0,35,14,1,0,0,7.263905594785214,7.263905594785214,0,0,0,0,0,1,1,0,2.691936591604329,0,49.04,55.86,44.26,59.43,8.333333333333334,4,2,0,0,6,13,5,1,320.75,632712.6884779097,383908.763842889,336702.6226332803,197784.5090902178,4596.904550451663 -15284,18861,34418,-9,34417,34419,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.662756900494,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,13,5,1,320.75,632712.6884779097,383908.763842889,336702.6226332803,197784.5090902178,4596.904550451663 -15284,18861,34419,34417,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.137039660977809,8.877006279369017,0,14,2,59.65169427648197,0,2,2,2019,11,0,50,48,1,0,0,18.37750442424042,18.37750442424042,0,0,0,0,0,1,1,0,3.479493744791544,0,44.26,59.43,49.04,55.86,6.666666666666667,1,1,0,0,11,13,5,1,320.75,632712.6884779097,383908.763842889,336702.6226332803,197784.5090902178,4596.904550451663 -15285,18862,34420,-9,34421,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.604127069612,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,102.5,75766.76658300005,12566.11011022044,0,0,1090.497728440208 -15285,18862,34421,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.348500448497635,6.76716355741086,5.530520804010957,0,0,-1050.909816355005,0,3,3,2019,8,0,37,35,1,0,0,2.073102321072134,2.073102321072134,0,0,0,0,0,1,1,0,5.545324963214592,0,50.12,53.99,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,102.5,75766.76658300005,12566.11011022044,0,0,1090.497728440208 -15286,18863,34422,34423,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,6.002604646504079,5.994621000695997,6,-1,-96.36500422281216,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.638136997345189,5.794015432153953,57.06,57.76,61.27,46.03,10,1,1,0,0,0,12,3,1,544.5,961460.4661773838,677774.5080987627,231744.0692431603,28737.43256096054,4364.951148095981 -15286,18863,34423,34422,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.794447594925999,7.937482257875287,6,1,100.8033367903173,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.124692541321441,7.900002661038592,61.27,46.03,57.06,57.76,8.333333333333334,1,1,0,0,0,12,3,1,544.5,961460.4661773838,677774.5080987627,231744.0692431603,28737.43256096054,4364.951148095981 -15287,18864,34424,34425,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.835054462516636,7.809887042225276,0,5,5,-15.44782516146456,0,2,2,2019,16,5,38,38,1,5,0,9.117253818087317,9.117253818087317,0,0,0,0,0,0,0,0,0,0,49.58,55.59,58.47,50.22,8.333333333333334,1,1,0,0,11,2,5,1,2504.5,319694.579479335,55493.97450277185,490334.5791126462,244554.1990797352,3496.950299241453 -15287,18864,34425,34424,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.68722080577483,8.766799227283668,0,5,-5,24.27785705310487,0,-9,-9,2019,7,0,35,35,1,0,0,21.38642345183689,21.38642345183689,0,0,0,0,0,0,0,0,3.607319527020028,0,58.47,50.22,49.58,55.59,5,1,1,0,0,5,2,5,1,2504.5,319694.579479335,55493.97450277185,490334.5791126462,244554.1990797352,3496.950299241453 -15287,18865,34426,-9,34424,34425,1,1,19,0,0,0,2,2,-9,0,3,6.524108952366588,7.221893515686276,0,0,0,-1082.738552862399,0,2,1,2019,9,0,14,16,1,0,1,6.260441628079779,6.260441628079779,0,0,0,0,0,0,0,0,0,0,55.14,47.62,-9,-9,8.333333333333334,1,1,0,1,3,2,2,1,827,0,0,0,0,451.4394890793389 -15288,18866,34427,34428,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.368623773409169,9.716038981583232,0,7,4,80.14443672543862,0,1,1,2019,12,0,48,43,1,0,0,26.42625804312293,26.42625804312293,0,0,0,0,0,0,0,0,0,0,38.51,59.43,54.79,55.86,5,1,1,0,0,7,12,5,1,585.5,1283757.313390076,941784.4934681589,207865.7085970187,0,6218.104517458841 -15288,18866,34428,34427,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.856491239342038,8.970374268931739,0,7,-4,34.97192162900658,0,-9,-9,2019,12,0,45,65,1,0,0,17.1709066160927,17.1709066160927,0,0,0,0,0,0,0,0,3.720126847401864,0,54.79,55.86,38.51,59.43,8.333333333333334,1,1,0,0,8,12,5,1,585.5,1283757.313390076,941784.4934681589,207865.7085970187,0,6218.104517458841 -15289,18867,34429,-9,34430,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.181086513478,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,5,0,414.5,511490.4911776751,321014.5066039574,263433.3118825949,27771.59059254922,2358.870638620874 -15289,18867,34430,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.786688738272865,8.864180967916859,0,0,0,-991.8840091209695,-9,2,2,2019,11,0,42,0,1,1,0,19.13901390259391,19.13901390259391,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,0,13,8,5,0,414.5,511490.4911776751,321014.5066039574,263433.3118825949,27771.59059254922,2358.870638620874 -15290,18868,34431,34432,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.27970280911584,8.340936412166608,0,31,-4,-116.1722874737821,0,2,2,2019,6,0,38,36,1,0,0,9.064990454729925,9.064990454729925,0,0,0,0,0,0,0,0,3.217782615444852,0,61.11,48.86,54,54,8.333333333333334,2,3,0,0,8,9,4,0,727,515412.2937288466,273641.1757684674,210939.1749877703,12228.42741937294,2771.913613246335 -15290,18868,34432,34431,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.893652675263152,7.990308569855317,0,31,4,21.9586002814816,0,3,2,2019,9,0,38,38,1,1,0,9.769938387450599,9.769938387450599,0,0,0,0,0,0,0,0,0,0,54,54,61.11,48.86,8,2,3,0,1,8,9,4,0,727,515412.2937288466,273641.1757684674,210939.1749877703,12228.42741937294,2771.913613246335 -15291,18869,34433,34434,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.566382309825705,8.467119736055876,0,2,-2,-129.6842479399652,0,-9,-9,2019,10,0,40,40,1,1,0,12.27216592116411,12.27216592116411,0,0,0,0,0,1,1,0,0,0,50,57,47.15,56.66,7,4,1,0,0,1,8,5,1,559.5,684033.5959852603,0,537223.7999256658,0,7043.375526012538 -15291,18869,34434,34433,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.499965266608697,8.787180434909228,0,2,2,-68.68296028137456,0,2,2,2019,13,1,40,20,1,1,0,15.69270054366786,15.69270054366786,0,0,0,0,0,1,1,0,0,0,47.15,56.66,50,57,8.333333333333334,1,1,0,0,10,8,5,1,559.5,684033.5959852603,0,537223.7999256658,0,7043.375526012538 -15292,18870,34435,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,8.157627351889271,7.896816398002059,0,0,0,-1021.29880322954,0,2,2,2019,6,0,45,50,1,0,0,7.81993733664978,7.81993733664978,0,0,0,3.342588783916707,0,0,0,0,0,0,60.02,56.42,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,649,698395.1769224725,100322.0408951673,404316.7312032284,0,975.1205062904207 -15293,18871,34436,34437,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,9,-2,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,3.092042176632427,0,42.01,57.81,50,49,6.666666666666667,1,1,0,0,9,2,1,1,912,258090.4169576581,0,163658.9015097675,0,-155.5986396220254 -15293,18871,34437,34436,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,9,2,0,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,42.01,57.81,7,1,1,0,0,12,2,1,1,912,258090.4169576581,0,163658.9015097675,0,-155.5986396220254 -15294,18872,34438,-9,34440,34439,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.530173772931,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,2.223208742585854,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,580,-17734.4391273045,0,0,0,2599.432216146024 -15294,18872,34439,34440,-9,-9,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,8,1,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.77,48.63,28.94,20.71,5,1,1,0,0,1,10,1,0,580,-17734.4391273045,0,0,0,2599.432216146024 -15294,18872,34440,34439,-9,-9,1,0,26,0,1,0,2,2,-9,1,1,0,0,0,8,-1,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.94,20.71,37.77,48.63,1.666666666666667,1,1,0,0,1,10,1,0,580,-17734.4391273045,0,0,0,2599.432216146024 -15295,18873,34441,34442,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.56198493106039,8.602417647016022,0,9,-6,87.8629406194713,0,-9,-9,2019,6,0,45,45,1,0,0,12.57098615814858,12.57098615814858,0,0,0,0,0,0,0,0,3.018012998923521,0,52.54,54.24,57.06,57.76,6.666666666666667,1,1,0,0,13,6,5,1,1731,747899.0957889517,786999.0822436817,102172.5829450591,78966.71731334069,5958.781905951393 -15295,18873,34442,34441,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,9.021099576596292,8.999365762075209,0,9,6,163.36141292828,0,-9,-9,2019,0,0,41,20,1,0,0,23.45987869438757,23.45987869438757,0,0,0,0,0,0,0,0,4.342332030598516,0,57.06,57.76,52.54,54.24,10,1,1,0,0,10,6,5,1,1731,747899.0957889517,786999.0822436817,102172.5829450591,78966.71731334069,5958.781905951393 -15296,18874,34443,34444,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.102319541037012,8.309324330525268,0,8,-1,46.25809227923848,0,3,3,2019,6,0,37,37,1,0,0,10.70692998210982,10.70692998210982,0,0,0,0,0,0,0,0,1.899465147441151,0,41.17,59.31,54.2,57.49,8.333333333333334,1,1,0,0,9,11,4,1,453.5,359779.3339822012,189980.7750925322,140862.041314938,92169.44985716647,2958.158819451281 -15296,18874,34444,34443,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.079956501946988,7.903393981020959,0,8,1,16.81408856662883,0,-9,-9,2019,6,0,45,35,1,0,0,8.367273787518478,8.367273787518478,0,0,0,0,2,0,0,0,0,0,54.2,57.49,41.17,59.31,8.333333333333334,1,1,0,0,9,11,4,1,453.5,359779.3339822012,189980.7750925322,140862.041314938,92169.44985716647,2958.158819451281 -15297,18875,34445,34446,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.968010747036339,8.134327857164589,0,6,2,50.34618415669033,0,-9,-9,2019,11,0,38,38,1,0,0,8.60467619559992,8.60467619559992,0,0,0,0,0,0,0,0,5.813220041151689,0,55.19,54.26,47.32,49.99,8.333333333333334,1,1,0,0,9,7,4,1,364.5,348116.7809084737,390708.2742073176,132508.0981040963,174085.3596278259,2527.175357214498 -15297,18875,34446,34445,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.391906216492035,7.459524472348043,0,35,-2,-170.6386233227336,0,3,2,2019,16,4,27,27,1,4,0,8.018673723540241,8.018673723540241,0,0,0,0,0,0,0,0,4.056924926014381,0,47.32,49.99,55.19,54.26,6.666666666666667,1,1,0,0,9,7,4,1,364.5,348116.7809084737,390708.2742073176,132508.0981040963,174085.3596278259,2527.175357214498 -15298,18876,34447,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.769001964024781,8.869535377030651,0,0,0,-1082.35375534879,0,2,2,2019,19,6,60,66,1,6,0,12.63478221892785,12.63478221892785,0,0,0,0,0,0,0,0,0,0,62.35,44.36,-9,-9,1.666666666666667,2,3,0,0,11,7,5,1,469,730495.7204540577,0,625281.8623401305,0,2030.858224055407 -15299,18877,34448,-9,34449,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-948.7360469592055,-9,1,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.48657489501569,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,4,1,909.5,196262.0913533042,146504.0237196812,88745.13297528603,41546.97642179931,2180.86144879644 -15299,18877,34449,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.588862128825806,8.482094837513502,0,0,0,-877.1621204582752,0,3,2,2019,26,10,37,37,1,10,0,17.47700083802147,17.47700083802147,0,0,0,0,0,1,1,0,0,0,32.45,54.09,-9,-9,1.666666666666667,1,1,0,0,7,12,4,1,909.5,196262.0913533042,146504.0237196812,88745.13297528603,41546.97642179931,2180.86144879644 -15300,18878,34450,34451,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,7.684072395008814,7.800245561166134,14,-5,28.49571968690958,0,2,2,2019,13,1,0,43,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.449157897238204,32.56,32.71,40.21,32.85,5,1,1,0,0,9,4,4,1,709,1141067.980301184,186330.0284685242,405994.1239869439,0,2515.533763043453 -15300,18878,34451,34450,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,7.793216253029632,8.049330179723333,14,5,3.146165474633733,0,2,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.597167628132125,40.21,32.85,32.56,32.71,0,1,1,0,0,0,4,4,1,709,1141067.980301184,186330.0284685242,405994.1239869439,0,2515.533763043453 -15301,18879,34452,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,4,0,7.27043055692115,7.163290668386026,0,0,-1150.718763904199,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.275226129764235,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1425,679914.3566297954,219846.1006862471,568945.8604512641,0,1400.283382757559 -15301,18880,34453,-9,34452,-9,1,1,61,0,0,0,3,3,-9,0,3,7.721290703666438,7.74517842527772,0,0,0,-936.5316922211043,0,3,2,2019,19,7,39,39,1,7,0,7.600694408300775,7.600694408300775,0,0,0,0,7,1,1,0,.6840811241383509,0,39.37,58.81,-9,-9,3.333333333333333,1,1,0,0,10,9,3,1,1125,417911.7149161585,276978.1359619328,0,0,1200.791360458011 -15302,18881,34454,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.895608800415816,8.855642310561711,0,6,17,49.69394123107454,0,3,3,2019,6,0,49,39,1,0,0,13.59441976094309,13.59441976094309,0,0,0,0,0,0,0,0,6.132490664563284,0,57.16,56.15,54.79,28.9,10,1,1,0,0,7,11,5,1,631,784207.7385696259,210996.6556464124,650006.214266378,0,2211.20794424062 -15302,18882,34455,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.467615047168163,8.112008056137537,0,6,-17,99.64167504945205,0,-9,-9,2019,10,1,38,40,1,1,0,12.6640136457906,12.6640136457906,0,0,0,0,0,0,0,0,.8771166375850591,0,54.79,28.9,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,600,-94967.63062658795,-74338.53493734876,70135.0922603918,58600.18106629026,2169.237511617904 -15302,18883,34456,-9,-9,34455,1,1,22,0,0,0,2,2,-9,0,3,7.936659912410473,7.670849092592736,0,0,0,-964.4771049123269,-9,-9,2,2019,8,0,43,0,1,0,1,7.815361829399193,7.815361829399193,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,975,-146778.3802825345,0,0,0,977.073699835787 -15303,18884,34457,34458,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.710149779300027,9.037382734425121,5.572272814730173,34,3,121.8699618210884,0,2,-9,2019,8,0,45,44,1,0,0,12.06705013184634,12.06705013184634,0,0,0,0,0,1,1,0,5.610258126739845,5.749977924680683,57.16,56.15,42.82,38.21,6.666666666666667,1,1,0,0,11,6,4,1,1615,394085.0902905937,120133.0593175536,295315.7985755947,39687.23542802986,2941.284075774597 -15303,18884,34458,34457,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,6.16590122365654,6.167130741491414,0,33,-3,79.68009270250795,0,3,2,2019,12,0,8,8,1,0,0,7.37975804712574,7.37975804712574,0,0,0,0,71.5,1,1,0,0,0,42.82,38.21,57.16,56.15,3.333333333333333,1,1,0,0,12,6,4,1,1615,394085.0902905937,120133.0593175536,295315.7985755947,39687.23542802986,2941.284075774597 -15303,18885,34459,-9,34458,34457,1,1,24,0,0,0,2,2,-9,0,3,7.961673441998538,7.718673483418892,0,0,0,-1030.464359173794,0,2,2,2019,16,4,47,47,1,4,1,6.816807360710858,6.816807360710858,0,0,0,0,0,1,1,0,0,0,39.28,53.83,-9,-9,5,1,1,0,0,4,6,4,1,377,-24232.54306393029,6279.730385770166,0,0,1899.064976547261 -15304,18886,34460,-9,34461,34463,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.937814561189,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,610.75,376141.8788943675,154540.5020686729,257828.103941432,124224.8757754611,3367.117124293566 -15304,18886,34461,34463,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,6.488470447305882,6.706682831985038,0,7,-5,72.98062833453783,0,2,2,2019,9,0,9,8,1,0,0,9.341901545300953,9.341901545300953,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.34,56.4,8.333333333333334,1,1,0,0,8,5,4,1,610.75,376141.8788943675,154540.5020686729,257828.103941432,124224.8757754611,3367.117124293566 -15304,18886,34462,-9,34461,34463,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.533304690116,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,610.75,376141.8788943675,154540.5020686729,257828.103941432,124224.8757754611,3367.117124293566 -15304,18886,34463,34461,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.840921321007043,9.097523601401361,0,7,5,43.34147442331835,0,1,1,2019,9,1,56,62,1,1,0,14.0738600737482,14.0738600737482,0,0,0,0,0,1,1,0,7.09776781307034,0,50.34,56.4,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,610.75,376141.8788943675,154540.5020686729,257828.103941432,124224.8757754611,3367.117124293566 -15305,18887,34464,-9,34465,34467,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.9022530816709,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1261.75,408285.4998841124,42405.44564329789,344478.5475625605,112242.6109373602,3489.13211661267 -15305,18887,34465,34467,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.780167815253432,6.776335614263722,0,12,1,-87.11222030040581,0,2,1,2019,10,0,5,0,1,0,0,19.78149652600947,19.78149652600947,0,0,0,0,0,0,0,0,4.205990438965436,0,54.96,53.17,59.29,49.68,8.333333333333334,1,1,0,0,4,7,5,1,1261.75,408285.4998841124,42405.44564329789,344478.5475625605,112242.6109373602,3489.13211661267 -15305,18887,34466,-9,34465,34467,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.418733092526,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1261.75,408285.4998841124,42405.44564329789,344478.5475625605,112242.6109373602,3489.13211661267 -15305,18887,34467,34465,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.185718840301789,9.387449889097821,0,12,-1,24.67342130258264,0,2,1,2019,10,0,49,55,1,0,0,20.88830333840858,20.88830333840858,0,0,0,0,0,0,0,0,4.273772710183194,0,59.29,49.68,54.96,53.17,8.333333333333334,1,1,0,0,9,7,5,1,1261.75,408285.4998841124,42405.44564329789,344478.5475625605,112242.6109373602,3489.13211661267 -15306,18888,34468,34469,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,0,0,36,1,30.72117329624773,0,3,3,2019,16,5,0,46,3,5,0,0,0,0,0,0,0,2,0,0,0,1.615404550264541,0,40.27,49.45,57.16,56.15,3.333333333333333,1,1,1,1,12,12,2,1,234,45226.26831346504,0,0,0,-2088.487517692212 -15306,18888,34469,34468,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.239054708001675,7.25145863669032,0,36,-1,-2.907277877231061,0,2,2,2019,6,0,22,32,1,0,0,7.614264243791356,7.614264243791356,0,0,0,0,2,0,0,0,0,0,57.16,56.15,40.27,49.45,10,1,1,0,0,11,12,2,1,234,45226.26831346504,0,0,0,-2088.487517692212 -15306,18889,34470,-9,34469,34468,1,1,22,0,0,0,1,1,1,0,4,8.383829311476012,8.091575289734399,0,0,0,-986.9535329696217,-9,2,1,2019,11,0,37,0,1,0,1,11.57125148693282,11.57125148693282,0,0,0,0,0,0,0,0,1.689147106853683,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,3,12,4,1,1421,-20216.7185638967,33145.50306326621,0,0,1273.047145645676 -15307,18890,34471,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.475903957639815,7.650874579569082,6.18305982548527,0,0,-944.5204083521214,0,2,2,2019,12,1,22,24,1,1,0,9.463477416769351,9.463477416769351,0,0,0,0,0,1,1,0,5.751835505452253,0,39.88,50.52,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,441,70373.54778954387,59011.21445271843,0,0,1612.613063592163 -15307,18890,34472,-9,34471,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.2489209054146,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,0,441,70373.54778954387,59011.21445271843,0,0,1612.613063592163 -15308,18891,34473,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.760158772826893,6.657994434170216,0,0,-1003.279909518375,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.35755149123595,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,209,496675.8155680822,159061.8680872934,246465.3528089527,0,1201.302989023042 -15309,18892,34474,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1040.302154619139,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,12.02037308303781,0,0,1,1,0,0,0,62.18,36.18,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,394,-12976.97392661211,0,0,0,1878.267928310119 -15310,18893,34475,34476,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.290120552499202,8.432093387403501,0,7,2,17.39434553578772,0,2,2,2019,11,0,36,36,1,0,0,16.35118792472315,16.35118792472315,0,0,0,0,0,1,1,0,.634106196454933,0,46.5,58.26,41.4,58.06,6.666666666666667,1,1,0,0,8,1,3,1,554.25,365500.4131930377,51107.2320629555,231836.6698574242,17994.33532935055,2561.151927811991 -15310,18893,34476,34475,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.970294278998204,6.620793425462038,0,7,-2,-122.8221102507347,0,2,2,2019,14,3,28,26,1,3,0,4.281680625122362,4.281680625122362,0,0,0,0,0,1,1,0,0,0,41.4,58.06,46.5,58.26,8.333333333333334,1,1,0,0,8,1,3,1,554.25,365500.4131930377,51107.2320629555,231836.6698574242,17994.33532935055,2561.151927811991 -15310,18893,34477,-9,34476,34475,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.6689971450411,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,554.25,365500.4131930377,51107.2320629555,231836.6698574242,17994.33532935055,2561.151927811991 -15310,18893,34478,-9,34476,34475,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.71219957075,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,554.25,365500.4131930377,51107.2320629555,231836.6698574242,17994.33532935055,2561.151927811991 -15311,18894,34479,34480,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.37104758835696,6.606391598015713,37,9,-26.26197892791675,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.485533687717026,44.39,45.63,59.14,23.4,8.333333333333334,2,3,0,1,0,8,2,0,1017,331187.1989273493,148890.2502370705,197415.0257770923,0,2011.663450244872 -15311,18894,34480,34479,-9,-9,1,0,54,0,0,0,1,1,-9,0,1,0,0,0,37,0,-47.76232258045188,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,59.14,23.4,44.39,45.63,6.666666666666667,2,3,0,0,0,8,2,0,1017,331187.1989273493,148890.2502370705,197415.0257770923,0,2011.663450244872 -15311,18895,34481,-9,34480,34479,1,0,24,0,0,0,1,1,-9,0,4,8.640054691102693,8.796757150772143,0,0,0,-1055.833213018364,0,1,1,2019,11,0,40,37,1,2,1,16.24358775930287,16.24358775930287,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,1,8,5,0,1928,38534.41572869408,-62645.25710260008,0,0,2036.01149834023 -15311,18896,34482,-9,34480,34479,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.4112640077233,-9,1,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.58,54.91,-9,-9,5,2,3,0,0,0,8,1,0,455,-81112.53662528319,0,0,0,-230.8841041875381 -15312,18897,34483,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.643917264533338,8.677418696188797,0,0,0,-1051.806486880086,0,2,1,2019,7,1,40,40,1,1,0,14.57877285786839,14.57877285786839,0,0,0,0,0,0,0,0,2.501929961423217,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,5,0,354,13390.35344655955,-81898.03964570523,0,0,1247.069316635031 -15313,18898,34484,-9,-9,34485,1,0,20,0,0,0,2,2,-9,0,4,6.533661695822079,6.461920138954157,0,0,0,-926.3357689425857,0,-9,2,2019,11,0,30,30,1,0,0,3.589886474339203,3.589886474339203,0,0,0,0,0,1,1,0,0,0,19.46,60.3,-9,-9,6.666666666666667,1,1,0,0,1,4,2,0,845,76293.61162057557,75612.60169383226,0,0,584.9379359390243 -15313,18899,34485,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-974.7372379880379,-9,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,2.807381000712845,0,0,1,1,0,0,0,35.42,24.49,-9,-9,5,1,1,0,0,0,4,1,0,325,225993.3184633662,0,0,0,209.3362135675764 -15314,18900,34486,34487,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.129250694994345,6.001696080610434,38,2,25.33679446308059,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.040966819324545,6.350614079510429,0,42,1,1,0,0,5.788971590706062,55,45,52,45,8,1,1,0,0,0,7,2,0,860.5,213249.8336541806,38506.33360361864,93112.41997179308,0,1742.985677428512 -15314,18900,34487,34486,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,38,-2,-108.6832357253867,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.683116988546982,0,52,45,55,45,8,1,1,0,0,0,7,2,0,860.5,213249.8336541806,38506.33360361864,93112.41997179308,0,1742.985677428512 -15315,18901,34488,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.141480900053764,7.572606152419854,0,0,-992.4701541287374,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,2.657541440716479,0,0,1,1,0,0,7.513635305054106,58.32,50.22,-9,-9,1.666666666666667,3,4,0,0,6,8,3,1,916.5,806998.4664140361,428940.2922985057,320897.6191272613,0,1726.058257104046 -15315,18901,34489,-9,34488,-9,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-905.4092580392892,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,3,1,916.5,806998.4664140361,428940.2922985057,320897.6191272613,0,1726.058257104046 -15316,18902,34490,34491,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.964966399266112,5.35445006640745,8,8,45.25190376390845,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.936377351338002,5.348910706051409,58.32,50.22,32.57,20.42,10,1,1,0,0,4,12,2,0,875,209055.2466353812,32138.98928943252,251184.6763993376,0,1843.038561565159 -15316,18902,34491,34490,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,8,-8,-9.107946659318769,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,15.94928108999146,0,0,1,1,0,0,0,32.57,20.42,58.32,50.22,8.333333333333334,1,1,0,0,0,12,2,0,875,209055.2466353812,32138.98928943252,251184.6763993376,0,1843.038561565159 -15317,18903,34492,34493,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.138673520157913,5.816906523787751,30,21,-136.4715696997521,0,2,3,2019,12,2,0,0,4,2,0,0,0,1,0,1.334265650080517,0,0,1,1,0,5.932682447743538,5.893163485154124,47.38,37.76,32.97,32.23,8.333333333333334,1,1,0,0,0,4,2,1,1554.5,377860.8902478917,224204.0624821912,324516.4447226774,0,144.6299016989217 -15317,18903,34493,34492,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-21,123.6795040177133,0,3,2,2019,20,8,0,32,4,8,0,0,0,0,0,0,0,71.5,1,1,0,.3593765488040199,0,32.97,32.23,47.38,37.76,1.666666666666667,1,1,0,0,6,4,2,1,1554.5,377860.8902478917,224204.0624821912,324516.4447226774,0,144.6299016989217 -15318,18904,34494,34495,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.811969396871252,7.658758374208499,0,8,-8,-17.00604123520318,0,2,2,2019,16,4,45,45,1,4,0,6.780248439892706,6.780248439892706,0,0,0,0,0,0,0,0,0,0,29.12,51.73,49.04,45.33,6.666666666666667,1,1,0,0,9,5,5,1,773.5,516655.5454624726,88145.71223608828,129154.0159196533,109760.28122017,3111.917951945208 -15318,18904,34495,34494,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,8.482969734927851,8.39984138104659,0,8,8,-18.93633074309155,0,2,1,2019,16,5,37,37,1,5,0,12.48352233362321,12.48352233362321,0,0,0,0,0,0,0,0,0,0,49.04,45.33,29.12,51.73,6.666666666666667,1,1,0,0,9,5,5,1,773.5,516655.5454624726,88145.71223608828,129154.0159196533,109760.28122017,3111.917951945208 -15319,18905,34496,34497,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.863862175304047,6.826814095104785,6,-4,8.486172905091641,0,2,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.283261567057719,7.140667152062507,34.36,60.01,55.52,35.3,3.333333333333333,1,1,0,0,1,2,3,0,476.5,523264.7029077969,188071.2506914382,184759.5015870611,0,2679.685166401835 -15319,18905,34497,34496,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.890353311949591,7.39713089350724,6,4,-123.1557384621278,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.707789912690333,6.945203292927387,55.52,35.3,34.36,60.01,6.666666666666667,1,1,0,0,10,2,3,0,476.5,523264.7029077969,188071.2506914382,184759.5015870611,0,2679.685166401835 -15320,18906,34498,34499,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,50,-3,-57.22764182967961,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,61.04,39.41,53.45,31.12,10,1,1,0,0,4,10,2,0,1495.5,404007.9611744002,190562.5345091965,311100.6215285675,0,1768.741390456749 -15320,18906,34499,34498,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.213425390033993,6.331408469355592,50,3,-30.51996571611406,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,26.10699854092975,0,0,1,1,0,0,6.324153161524759,53.45,31.12,61.04,39.41,10,1,1,0,0,0,10,2,0,1495.5,404007.9611744002,190562.5345091965,311100.6215285675,0,1768.741390456749 -15321,18907,34500,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.93374032298371,7.761258474898332,0,0,0,-830.9294917164106,0,2,2,2019,23,11,35,35,1,11,0,10.56787153753421,10.56787153753421,0,0,0,0,0,1,1,0,0,0,32.46,56.7,-9,-9,3.333333333333333,1,1,0,1,10,6,4,1,91,187030.2406541542,26751.92446677163,263051.2480776967,185649.9336355628,1824.082382768097 -15322,18908,34501,34502,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.944826878128413,6.582192334542476,10,2,-74.99433713748901,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.180308933899774,7.011402096005173,56.18,45.61,57.16,56.15,1.666666666666667,1,1,0,0,0,9,2,1,227,2341315.072800009,204607.2017305543,1061850.360077752,0,1191.383736062995 -15322,18908,34502,34501,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.975339809318208,6.312611342077675,48,-2,-13.56252471939188,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.935951197137615,57.16,56.15,56.18,45.61,8.333333333333334,1,1,0,0,5,9,2,1,227,2341315.072800009,204607.2017305543,1061850.360077752,0,1191.383736062995 -15323,18909,34503,34504,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.04918291562405,7.702084525871312,0,2,2,-238.5067100309965,0,-9,-9,2019,9,1,31,38,1,1,0,10.11513864888317,10.11513864888317,0,0,0,0,0,0,0,0,0,0,41.17,52.68,46.24,37.38,5,1,1,0,0,2,11,3,0,882.5,185124.9972815836,-71091.23825043812,0,0,1668.238890503798 -15323,18909,34504,34503,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,6.759612963295324,6.765582387357624,0,2,-2,32.26991918917471,0,-9,-9,2019,8,0,12,12,1,0,0,7.093712621372834,7.093712621372834,0,0,0,0,7,0,0,0,0,0,46.24,37.38,41.17,52.68,8.333333333333334,1,1,0,0,3,11,3,0,882.5,185124.9972815836,-71091.23825043812,0,0,1668.238890503798 -15324,18910,34505,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-917.4138855089333,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.0203411650950454,0,56,39.41,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,4448,-67567.82790545652,0,0,0,652.850710074484 -15325,18911,34506,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1018.229898066179,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.95,47.23,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,334,26230.60124915011,0,40910.92850565905,0,233.156819962216 -15325,18912,34507,-9,34506,-9,1,0,45,0,0,0,3,3,-9,0,4,8.434223313253309,8.166213062310835,0,0,0,-904.9290787134618,0,3,3,2019,6,0,60,60,1,0,0,8.120798111718095,8.120798111718095,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,8,13,4,1,339,275053.0132440332,38570.73990599476,96706.26875667277,29454.62358811901,1836.76038394987 -15326,18913,34508,34509,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,5.416789680865574,5.317268285624729,49,-2,-44.77429214657247,0,-9,-9,2019,14,1,0,0,4,1,0,0,0,1,0,12.29584344632923,0,0,1,1,0,4.568103574847902,5.773766322486373,30.26,18.9,63.24,42.39,6.666666666666667,1,1,0,0,0,4,2,1,133.5,1007072.435840093,369598.5411404907,447744.7100023883,0,2409.255170213935 -15326,18913,34509,34508,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.249469944186699,7.362357515092405,49,2,-85.30380635872618,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.074401411985641,7.145026604881457,63.24,42.39,30.26,18.9,8.333333333333334,1,1,0,0,0,4,2,1,133.5,1007072.435840093,369598.5411404907,447744.7100023883,0,2409.255170213935 -15327,18914,34510,34511,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,8.264930813022216,8.455877495389171,37,9,75.35402403901701,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.420615149504435,8.396379143059331,54.95,47.49,46.8,46.5,10,1,1,0,0,0,9,5,1,1647,1213237.697417343,151280.7600858722,642098.6740042263,0,5249.581083661356 -15327,18914,34511,34510,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,8.01837209132808,8.096749294918219,37,0,27.29597518702975,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.992116701356777,8.018889542873758,46.8,46.5,54.95,47.49,6.666666666666667,1,1,0,0,0,9,5,1,1647,1213237.697417343,151280.7600858722,642098.6740042263,0,5249.581083661356 -15328,18915,34512,34513,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.760983080072167,9.423992579811404,0,20,-1,-249.2547974429197,0,2,1,2019,8,0,80,50,1,0,0,19.070073951072,19.070073951072,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.72,55.58,5,1,1,0,0,12,6,5,1,317,921872.2187479046,258642.3561474062,807493.0654524905,159770.8101440377,10587.66304434841 -15328,18915,34513,34512,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.699740290358815,9.636462879297687,6.747182309839726,20,1,34.42850140421377,0,3,2,2019,7,0,30,30,1,0,0,62.11240325976571,62.11240325976571,0,0,0,1.076704541209271,0,0,0,0,6.737737100965868,6.944143502001981,52.72,55.58,51.83,57.2,8.333333333333334,1,1,0,0,11,6,5,1,317,921872.2187479046,258642.3561474062,807493.0654524905,159770.8101440377,10587.66304434841 -15329,18916,34514,-9,-9,-9,1,0,39,0,0,0,1,1,-9,1,2,7.885705082028172,8.113808008218676,0,0,0,-898.8809458303072,0,2,1,2019,25,9,37,0,1,9,0,10.41705983593716,10.41705983593716,0,0,0,0,0,1,1,0,0,0,19.32,50.05,-9,-9,3.333333333333333,1,1,0,1,5,4,4,0,1114,123524.2184509914,-17629.36409277167,0,0,1765.248205711521 -15330,18917,34515,-9,34516,34517,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.2407491501513,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,255.3333333333333,-76753.36291890588,-41344.69867977892,0,0,3486.916517243133 -15330,18917,34516,34517,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.125559845596126,7.502371570750071,5.504075706521748,1,-1,48.61083831281321,0,1,1,2019,12,0,28,37,1,0,0,5.844141416647031,5.844141416647031,0,0,0,0,0,1,1,0,5.081361379574846,0,47.2,58.1,57.06,57.76,8.333333333333334,1,1,0,0,3,2,3,0,255.3333333333333,-76753.36291890588,-41344.69867977892,0,0,3486.916517243133 -15330,18917,34517,34516,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,7.728592162869544,7.875222867573248,0,1,1,56.04226009195377,-9,-9,-9,2019,3,0,38,0,1,0,0,8.42426542072195,8.42426542072195,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.2,58.1,8.333333333333334,1,1,0,0,1,2,3,0,255.3333333333333,-76753.36291890588,-41344.69867977892,0,0,3486.916517243133 -15331,18918,34518,-9,34520,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.5335514161509,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,576,-30379.73923925237,0,0,0,1051.86425926677 -15331,18918,34519,-9,34520,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.359018064854,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,576,-30379.73923925237,0,0,0,1051.86425926677 -15331,18918,34520,-9,-9,-9,1,0,29,0,3,0,3,3,-9,0,4,0,3.840419853590415,4.084876573757706,0,0,-1058.032296385242,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,3.675725146199614,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,576,-30379.73923925237,0,0,0,1051.86425926677 -15331,18918,34521,-9,34520,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.285669598974,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,576,-30379.73923925237,0,0,0,1051.86425926677 -15331,18918,34522,-9,34520,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-970.2659700088751,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,576,-30379.73923925237,0,0,0,1051.86425926677 -15332,18919,34523,34524,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.678099094155947,7.678097492280901,0,33,-6,-147.9706669086677,0,2,2,2019,13,2,36,36,1,2,0,6.725349054554042,6.725349054554042,0,0,0,0,0,0,0,0,5.215112212249545,0,51.14,60.45,57.33,53.46,10,1,1,0,0,11,8,5,1,559.5,5848422.874802206,923871.3357227352,3536021.65723806,0,4126.334216158293 -15332,18919,34524,34523,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.933193520170954,8.615742076426791,0,33,6,-30.93518689936304,0,3,3,2019,11,0,35,55,1,0,0,27.46915060059611,27.46915060059611,0,0,0,0,0,0,0,0,.1138361998683464,0,57.33,53.46,51.14,60.45,5,1,1,0,0,12,8,5,1,559.5,5848422.874802206,923871.3357227352,3536021.65723806,0,4126.334216158293 -15333,18920,34525,-9,34527,34526,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.9699753017427,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,2060.25,381936.865175346,49404.4091058611,292854.3609394066,72714.20860897882,3946.280590820069 -15333,18920,34526,34527,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,8.419362572071568,8.622542621710178,0,8,7,30.76218430733626,0,-9,-9,2019,11,0,37,41,1,0,0,14.4920526414619,14.4920526414619,0,0,0,0,89,1,1,0,0,0,43.86,55.3,36.76,43.82,6.666666666666667,1,1,0,0,9,1,4,1,2060.25,381936.865175346,49404.4091058611,292854.3609394066,72714.20860897882,3946.280590820069 -15333,18920,34527,34526,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.529546768903777,7.778344255125938,0,16,-7,-77.18184496888277,0,2,3,2019,23,10,37,37,1,10,0,7.265462715663759,7.265462715663759,0,0,0,0,89,1,1,0,0,0,36.76,43.82,43.86,55.3,3.333333333333333,1,1,0,0,9,1,4,1,2060.25,381936.865175346,49404.4091058611,292854.3609394066,72714.20860897882,3946.280590820069 -15333,18920,34528,-9,34527,34526,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.9878105350696,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,2060.25,381936.865175346,49404.4091058611,292854.3609394066,72714.20860897882,3946.280590820069 -15334,18921,34529,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.4193013602032,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.8,34.66,-9,-9,5,1,1,0,1,0,13,1,0,690.5,-130698.0411169734,0,0,0,673.1385330520613 -15334,18921,34530,-9,34529,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1109.91487350962,-9,3,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,58.34,-9,-9,5,1,1,0,0,1,13,1,0,690.5,-130698.0411169734,0,0,0,673.1385330520613 -15334,18922,34531,-9,34529,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.813228554411,-9,3,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,1,0,13,1,0,626,73722.20792106632,0,0,0,0 -15335,18923,34532,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.393449929919494,6.271505769182082,0,0,-1118.169238509035,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.639862672626841,6.454740001484432,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1035,-17403.61658291822,9658.606352966061,0,0,1005.137927054789 -15336,18924,34533,34534,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,0,0,29,2,0,0,3,3,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,62.36,33.77,1.666666666666667,2,3,0,0,0,8,1,0,667.5,188340.5618188563,0,0,0,1470.922168158189 -15336,18924,34534,34533,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,29,-2,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.36,33.77,24.68,21.22,8.333333333333334,2,3,0,0,0,8,1,0,667.5,188340.5618188563,0,0,0,1470.922168158189 -15336,18925,34535,-9,34534,34533,1,1,26,0,0,0,1,1,-9,0,4,7.814756328021996,7.701414736232156,0,0,0,-888.0788956711633,0,2,2,2019,12,0,42,42,1,0,1,6.384430991668319,6.384430991668319,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,1085,-191689.4200387002,0,0,0,1299.475716183064 -15336,18926,34536,-9,34534,34533,1,1,24,0,0,0,2,2,-9,0,5,7.931644592380909,8.103973568508174,0,0,0,-1060.319073806192,0,2,2,2019,8,0,30,16,1,0,1,9.72275039758207,9.72275039758207,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,6,8,3,0,699,-60156.38151154721,0,0,0,120.4689080950425 -15336,18927,34537,-9,34534,34533,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.4550942713685,1,2,2,2019,11,0,0,56,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,397,197939.5834152944,0,0,0,-102.6846869434829 -15337,18928,34538,-9,34539,34540,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.787627633801,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1184,149351.3635261042,50286.17516535486,0,0,2557.260854678818 -15337,18928,34539,34540,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.033367463675519,7.968087338285437,0,18,-1,-23.1193691026473,0,2,2,2019,10,0,23,23,1,0,0,13.8902917375295,13.8902917375295,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.44,46.58,8.333333333333334,1,1,0,0,8,9,4,1,1184,149351.3635261042,50286.17516535486,0,0,2557.260854678818 -15337,18928,34540,34539,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.216443839379219,8.252120317033462,0,19,1,-2.704774107415635,0,2,2,2019,7,0,41,40,1,0,0,11.32805331103649,11.32805331103649,0,0,0,0,0,1,1,0,0,0,60.44,46.58,57.16,56.15,8.333333333333334,1,1,0,0,10,9,4,1,1184,149351.3635261042,50286.17516535486,0,0,2557.260854678818 -15338,18929,34541,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,6.393574795891774,6.865482886617479,0,0,-901.1701649253067,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,6.892979969096046,0,27.82,60.15,-9,-9,3.333333333333333,1,1,1,0,0,8,2,1,994,2676440.789267554,51428.94091702891,2333358.73854909,674399.1817145885,1004.119241626901 -15338,18929,34542,-9,34541,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.429149170988,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,994,2676440.789267554,51428.94091702891,2333358.73854909,674399.1817145885,1004.119241626901 -15339,18930,34543,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,8.06078605083199,8.211824999016217,0,0,-1003.070970676806,0,2,2,2019,27,11,0,0,4,11,0,0,0,1,0,0,0,7,1,1,0,2.113831214159147,7.863444307753397,23.52,27.15,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,551,1025269.252807798,471868.9347478318,164562.2995647971,0,2773.978983229292 -15340,18931,34544,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.430966449486668,8.711572799508595,5.110552467341354,0,0,-887.7162579986721,0,1,1,2019,13,1,40,40,1,1,0,19.65062884708404,19.65062884708404,0,0,0,0,7,0,0,0,3.301826612853902,5.592974028338633,38.15,58.07,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,149,95640.59705047707,6240.818366595904,0,0,1735.425832838509 -15341,18932,34545,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-938.4427936219713,0,2,1,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.97,23.38,-9,-9,5,4,2,0,1,0,8,1,0,611,15206.89353691808,0,0,0,510.7776991567493 -15342,18933,34546,-9,34548,34549,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-802.4464791961755,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1818,165529.1392905573,63652.45519119518,155744.3872141913,68084.3908173199,2139.216513029717 -15342,18933,34547,-9,34548,34549,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.9852036914767,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,3,1,1818,165529.1392905573,63652.45519119518,155744.3872141913,68084.3908173199,2139.216513029717 -15342,18933,34548,34549,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,7.199639636314677,7.727755754123521,0,20,-3,116.6743838410684,0,2,3,2019,20,8,20,20,1,8,0,9.106146499202751,9.106146499202751,0,0,0,0,0,1,1,0,2.241753729469183,0,41.85,51.14,57.16,56.15,8.333333333333334,1,1,0,0,10,6,3,1,1818,165529.1392905573,63652.45519119518,155744.3872141913,68084.3908173199,2139.216513029717 -15342,18933,34549,34548,-9,-9,1,1,46,1,2,0,1,1,-9,0,4,8.034756019102842,8.109221267343186,0,20,3,-43.94155238825239,0,2,3,2019,4,0,28,25,1,0,0,10.23394463644537,10.23394463644537,0,0,0,0,0,1,1,0,3.783197564636568,0,57.16,56.15,41.85,51.14,8.333333333333334,1,1,0,0,12,6,3,1,1818,165529.1392905573,63652.45519119518,155744.3872141913,68084.3908173199,2139.216513029717 -15343,18934,34550,34551,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.252622877453939,7.865579913361232,0,10,1,36.90994156322608,0,3,3,2019,12,0,38,44,1,0,0,12.27139238051003,12.27139238051003,0,0,0,0,0,0,0,0,1.991483272317394,0,57.16,56.15,44.76,50.85,8.333333333333334,1,1,0,0,10,13,4,1,1384.5,914983.1462473177,501178.9697869701,318589.9991729414,9594.028522832992,2725.787766515046 -15343,18934,34551,34550,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.177547713592231,8.275417575396817,0,10,-1,-77.79907971939059,0,2,2,2019,12,0,37,37,1,0,0,9.406185470312863,9.406185470312863,0,0,0,0,0,0,0,0,.0571129512459881,0,44.76,50.85,57.16,56.15,6.666666666666667,1,1,0,0,11,13,4,1,1384.5,914983.1462473177,501178.9697869701,318589.9991729414,9594.028522832992,2725.787766515046 -15343,18935,34552,-9,34551,34550,1,0,23,0,0,0,2,2,-9,0,4,8.002251654199441,7.761572978282329,0,0,0,-1014.046417691509,0,1,2,2019,19,7,40,37,1,7,1,8.109612689959278,8.109612689959278,0,0,0,0,0,0,0,0,0,0,18.9,63.04,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,384,-54177.14759900927,0,0,0,1261.133130532829 -15344,18936,34553,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.743243119956456,7.233082500750666,0,0,-1091.60851571213,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.643631312347522,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,558,744714.1979233432,64554.50528361797,487054.2938500157,0,619.4631254411848 -15345,18937,34554,34555,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.261535029021529,6.545457643292457,48,0,16.55541536900557,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.935739139753917,6.133276283163491,55.06,43.47,54.2,57.49,8.333333333333334,1,1,0,0,4,9,2,1,993.5,781798.6254562226,-19044.64730357105,753721.9211751749,0,2391.83815469503 -15345,18937,34555,34554,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.352594399208124,7.299852616524086,48,0,35.69493560533152,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.946681495831077,6.706363647483511,54.2,57.49,55.06,43.47,5,1,1,0,0,3,9,2,1,993.5,781798.6254562226,-19044.64730357105,753721.9211751749,0,2391.83815469503 -15346,18938,34556,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.02350380456253,8.385043239126198,0,0,-1031.632462811555,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.845130426092379,8.335770924161288,40.38,57.11,-9,-9,8.333333333333334,1,1,0,0,3,10,4,1,369,415720.9568115594,44622.89414945774,0,0,2761.888122815563 -15347,18939,34557,-9,34559,34558,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-968.1918203428587,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,682.6666666666666,422341.8756502787,194543.2575346207,360862.1458370893,259807.6323845628,5726.33584253858 -15347,18939,34558,34559,-9,-9,1,1,45,1,1,0,1,1,-9,0,4,8.773004874658669,9.060781056644217,0,6,11,-2.653897457709103,0,1,2,2019,13,4,40,40,1,4,0,20.05034898314457,20.05034898314457,0,0,0,0,0,1,1,0,.5951785698976255,0,51.77,58.57,54.1,59.11,10,1,1,0,0,5,9,5,1,682.6666666666666,422341.8756502787,194543.2575346207,360862.1458370893,259807.6323845628,5726.33584253858 -15347,18939,34559,34558,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.941527790999565,8.998634814227696,0,6,-11,-156.7126587784018,0,2,2,2019,12,0,56,56,1,0,0,14.71984528971377,14.71984528971377,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.77,58.57,8.333333333333334,1,1,0,0,6,9,5,1,682.6666666666666,422341.8756502787,194543.2575346207,360862.1458370893,259807.6323845628,5726.33584253858 -15348,18940,34560,34561,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,5,-2,0,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,40.27,41.64,54.12,5,1,1,1,0,9,12,1,0,738,-49439.3177533117,-6034.17008105676,0,0,730.274276078526 -15348,18940,34561,34560,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,0,0,0,5,2,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.64,54.12,45.42,40.27,5,1,1,1,1,2,12,1,0,738,-49439.3177533117,-6034.17008105676,0,0,730.274276078526 -15349,18941,34562,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.95251141834097,8.736731983396009,0,0,0,-1047.004828157352,-9,2,2,2019,13,1,50,0,1,1,0,14.13375763671713,14.13375763671713,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,135,30842.91707260138,88419.47487405423,0,0,3055.498726190335 -15350,18942,34563,-9,34565,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.5940712080735,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,768,40098.28374491243,0,0,0,2108.915799679707 -15350,18942,34564,-9,34565,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.8597979060446,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,768,40098.28374491243,0,0,0,2108.915799679707 -15350,18942,34565,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,7.580197748205058,7.65281174768274,0,0,0,-1023.270709114212,0,2,2,2019,11,0,26,18,1,0,0,7.897018821019896,7.897018821019896,0,0,0,0,2,1,1,0,0,0,42.32,44.11,-9,-9,1.666666666666667,1,1,0,0,10,12,2,0,768,40098.28374491243,0,0,0,2108.915799679707 -15350,18943,34566,-9,34565,-9,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1124.495292041638,-9,3,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,.9378844356536796,0,25.61,62.71,-9,-9,3.333333333333333,1,1,0,0,1,12,1,0,1157,-55887.52193559215,0,0,0,411.0010893111914 -15351,18944,34567,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,8.248974991144465,8.151782334184794,0,0,0,-1000.831028245625,0,2,2,2019,12,0,38,38,1,0,0,11.51825247450792,11.51825247450792,0,0,0,0,7,0,0,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,9,12,4,1,232,856528.3946981956,638171.9897828193,102301.5883207043,14461.61793527351,1234.096635179599 -15352,18945,34568,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,4,7.991178754255975,7.725444846347604,0,0,0,-914.6856146289485,0,3,3,2019,6,0,30,0,1,0,0,10.40855252332078,10.40855252332078,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,6,8,3,0,199,-108366.9870916727,0,0,0,1318.881005182242 -15352,18946,34569,-9,-9,-9,1,1,35,0,0,0,3,3,-9,0,4,0,0,0,0,0,-930.6896846805021,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,2,3,1,0,0,8,1,0,1541,83923.46791479996,63744.75007774884,5114.977096432587,49908.57458470837,0 -15353,18947,34570,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-997.5673797326779,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,25.01,25.27,-9,-9,6.666666666666667,1,1,0,1,0,6,1,0,306,0,0,0,0,1827.066656821504 -15353,18948,34571,-9,34570,-9,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1081.738523757624,1,3,-9,2019,9,2,0,17,2,2,1,0,0,0,0,0,0,27,1,1,0,0,0,39.34,36.06,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,467,123741.3853960082,0,0,0,139.3977791021225 -15353,18949,34572,-9,34570,-9,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.242594423112,0,3,-9,2019,24,9,0,0,3,9,1,0,0,0,0,0,0,14.5,1,1,0,0,0,26.23,39.19,-9,-9,1.666666666666667,1,1,1,1,2,6,1,0,257,-157295.5486588845,0,0,0,0 -15354,18950,34573,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.298522464751361,7.708658787161276,10,-1,51.93090881431714,0,3,3,2019,3,1,0,47,4,1,0,0,0,0,0,0,0,0,0,0,0,6.718151683859844,6.954563716171815,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,2,3,1,393,630948.474701592,321399.5913772722,129139.6722021419,0,1235.456927458254 -15354,18951,34574,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.157916426790359,6.336280778594567,0,10,1,-7.045276193661335,0,-9,-9,2019,5,0,5,20,1,0,0,13.10970450988186,13.10970450988186,0,0,0,0,0,0,0,0,6.862496115170495,0,57.06,57.76,57.16,56.15,10,1,1,0,0,10,2,3,1,3045,36486.90019209743,0,151175.7648694698,0,371.2725784388398 -15355,18952,34575,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,6.54906363416743,6.735380465252928,0,0,-1157.045704701849,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.753019789436832,6.721993216298348,49.97,32.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,479,296664.4730811323,136683.878955838,75067.59064438097,0,1680.749944365648 -15356,18953,34576,34577,-9,-9,1,1,43,2,2,0,2,2,-9,0,3,8.695673132750766,8.86315613205436,0,4,10,109.0399441139734,0,1,1,2019,10,1,77,77,1,1,0,8.73668269202728,8.73668269202728,0,0,0,0,0,0,0,0,0,0,53.93,49.4,57.06,57.76,8.333333333333334,4,5,0,0,12,5,4,1,672,114273.2777089168,75666.61952453494,0,0,4645.222248030032 -15356,18953,34577,34576,-9,-9,1,0,33,2,2,0,1,1,-9,0,5,0,0,0,4,-10,-48.53461789505182,0,-9,-9,2019,7,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,8.398597855126976,0,57.06,57.76,53.93,49.4,10,4,2,0,0,2,5,4,1,672,114273.2777089168,75666.61952453494,0,0,4645.222248030032 -15356,18953,34578,-9,34577,34576,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.932565433165,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,5,4,1,672,114273.2777089168,75666.61952453494,0,0,4645.222248030032 -15356,18953,34579,-9,34577,34576,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.874982231834,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,4,1,672,114273.2777089168,75666.61952453494,0,0,4645.222248030032 -15357,18954,34580,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-994.9744582394952,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,60.2,-9,-9,5,2,3,0,1,0,8,1,1,525,-116611.2989594326,0,0,0,0 -15357,18955,34581,-9,34580,-9,1,1,23,0,0,0,2,2,-9,0,3,8.50370834729433,8.328669918820264,0,0,0,-983.4728388596952,0,3,-9,2019,17,5,38,39,1,5,1,13.59972171867171,13.59972171867171,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,6.666666666666667,2,3,0,0,6,8,5,1,72,-60016.10821176163,30301.90600386195,0,0,2043.770488319118 -15358,18956,34582,34584,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.527408708126714,8.68758645932235,0,7,6,-79.44783128847946,0,-9,-9,2019,9,0,40,50,1,1,0,15.9300113278385,15.9300113278385,0,0,0,0,0,1,1,0,0,0,53,55,34.25,59.94,8,1,1,0,0,1,9,3,1,1165.4,586515.6872431157,252160.6387913053,338030.4584060209,0,2878.428426542832 -15358,18956,34583,-9,34584,34582,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.469419117005,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1165.4,586515.6872431157,252160.6387913053,338030.4584060209,0,2878.428426542832 -15358,18956,34584,34582,-9,-9,1,0,43,0,3,0,1,1,-9,1,3,6.45001942284103,6.636067125166656,0,20,-6,113.3324647844449,0,2,2,2019,10,0,15,15,1,0,0,6.823751883109035,6.823751883109035,0,0,0,0,27,1,1,0,0,0,34.25,59.94,53,55,8.333333333333334,1,1,0,0,5,9,3,1,1165.4,586515.6872431157,252160.6387913053,338030.4584060209,0,2878.428426542832 -15358,18956,34585,-9,34584,34582,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.521591865824,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1165.4,586515.6872431157,252160.6387913053,338030.4584060209,0,2878.428426542832 -15358,18956,34586,-9,34584,34582,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.8032181052637,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1165.4,586515.6872431157,252160.6387913053,338030.4584060209,0,2878.428426542832 -15359,18957,34587,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.829357526907137,8.097325707225645,5.285877990716361,0,0,-1128.960390127811,0,2,1,2019,9,0,23,23,1,0,0,12.39532445642305,12.39532445642305,0,0,0,0,2,1,1,0,5.790209462846225,0,50.43,53.69,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,608.6666666666666,331731.0227607301,9859.465536417751,248640.2930682886,11553.23531937161,1899.539064649449 -15359,18957,34588,-9,34587,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1100.397416793147,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,608.6666666666666,331731.0227607301,9859.465536417751,248640.2930682886,11553.23531937161,1899.539064649449 -15359,18957,34589,-9,34587,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.7877489031699,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,608.6666666666666,331731.0227607301,9859.465536417751,248640.2930682886,11553.23531937161,1899.539064649449 -15360,18958,34590,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.45548657047045,6.331666058520792,0,0,-938.7594201830118,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.673462142880034,6.602336135021952,66.13,28.89,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1279,533540.1537544918,82022.54310702829,225099.0330383352,0,593.1728642084238 -15361,18959,34591,34592,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,40,-6,38.12186929412658,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.663534345114722,0,47.81,49.37,39.52,27.84,8.333333333333334,1,1,0,0,7,4,3,1,428,579608.2666067015,478319.457425331,166683.3392831589,0,1835.785780603263 -15361,18959,34592,34591,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,8.054578154794292,7.577241581336461,39,6,-50.15229120773662,0,3,2,2019,16,6,0,0,4,6,0,0,0,1,125.3461137909184,123.4929657352879,1172.26880613199,0,1,1,0,5.930885495010562,7.828913047749885,39.52,27.84,47.81,49.37,6.666666666666667,1,1,0,0,6,4,3,1,428,579608.2666067015,478319.457425331,166683.3392831589,0,1835.785780603263 -15362,18960,34593,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,9.10809914779658,9.239365862546896,0,0,0,-1020.787469771039,0,1,1,2019,7,0,86,49,1,0,0,11.07695604837623,11.07695604837623,0,0,0,0,0,0,0,0,2.902237191310397,0,54.37,54.8,-9,-9,10,1,1,0,0,9,8,5,0,464,1985661.324032861,456165.1901657917,1517255.786372338,386043.6055655656,3229.891498890108 -15362,18961,34594,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.029422469496687,9.037437340631779,0,0,0,-1030.001505147339,0,-9,-9,2019,12,0,40,42,1,0,0,26.0088505298098,26.0088505298098,0,0,0,0,0,0,0,0,3.105153663752547,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,2,8,5,0,136,141311.6795112274,39489.74002245584,610012.8244933418,245353.6252244519,2387.732084251901 -15363,18962,34595,34596,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,0,0,1,-3,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,20.83447062422845,0,120,1,1,0,2.891784786567318,0,54,44,56,44,8,1,1,0,0,0,11,1,1,856.5,32347.97496991344,89530.28284943332,0,0,1482.189712957629 -15363,18962,34596,34595,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,0,0,1,3,0,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.254362141277001,0,56,44,54,44,8,1,1,0,0,0,11,1,1,856.5,32347.97496991344,89530.28284943332,0,0,1482.189712957629 -15364,18963,34597,-9,34600,34599,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.996498362856,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,4,1,1319,462020.6359784774,163449.170880946,424974.9022860026,142668.1229873639,4578.496677032685 -15364,18963,34598,-9,34600,34599,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.305730120167,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,1319,462020.6359784774,163449.170880946,424974.9022860026,142668.1229873639,4578.496677032685 -15364,18963,34599,34600,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.264175910451671,8.287869887599703,0,13,-1,-120.2828067631606,0,2,1,2019,10,0,35,50,1,1,0,16.10391955526898,16.10391955526898,0,0,0,0,0,1,1,0,0,0,50,56,43.65,58.28,7,2,3,0,0,1,9,4,1,1319,462020.6359784774,163449.170880946,424974.9022860026,142668.1229873639,4578.496677032685 -15364,18963,34600,34599,-9,-9,1,0,41,0,2,0,1,1,-9,1,3,8.497434896382227,8.306712577143786,0,13,1,7.937211540394872,0,3,3,2019,9,0,42,0,1,0,0,10.34558570686687,10.34558570686687,0,0,0,0,2,1,1,0,0,0,43.65,58.28,50,56,6.666666666666667,2,3,0,0,5,9,4,1,1319,462020.6359784774,163449.170880946,424974.9022860026,142668.1229873639,4578.496677032685 -15365,18964,34601,-9,34604,34602,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-863.9572429030287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,337.25,269134.7388115696,223282.9074855965,281955.9822651768,211613.4240788826,3491.042287610236 -15365,18964,34602,34604,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.76800685136347,8.493056259125995,0,7,3,-61.02354888384297,0,3,2,2019,5,0,45,40,1,0,0,15.53396317996271,15.53396317996271,0,0,0,0,0,1,1,0,.9983572833929435,0,57.06,57.76,65.06,41.58,8.333333333333334,1,1,0,0,8,9,4,1,337.25,269134.7388115696,223282.9074855965,281955.9822651768,211613.4240788826,3491.042287610236 -15365,18964,34603,-9,34604,34602,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1189.963335020966,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,337.25,269134.7388115696,223282.9074855965,281955.9822651768,211613.4240788826,3491.042287610236 -15365,18964,34604,34602,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.817256270519849,8.047946741542228,0,7,-3,123.7550983519301,0,-9,-9,2019,7,0,19,19,1,0,0,16.34964467077829,16.34964467077829,0,0,0,0,0,1,1,0,.5220554385794185,0,65.06,41.58,57.06,57.76,1.666666666666667,1,1,0,0,8,9,4,1,337.25,269134.7388115696,223282.9074855965,281955.9822651768,211613.4240788826,3491.042287610236 -15366,18965,34605,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-883.6216891382161,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.79,29.29,-9,-9,6.666666666666667,1,1,0,0,3,5,1,1,1129,-23414.79148501585,0,0,0,601.8236475268803 -15367,18966,34606,34607,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.89101684192069,8.709298584239816,0,9,-5,63.45765113964049,0,-9,-9,2019,11,0,48,48,1,0,0,16.71318200587552,16.71318200587552,0,0,0,0,0,0,0,0,0,0,43.6,51.61,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,2020,328330.0271670902,347370.7641065323,0,0,3065.077740212124 -15367,18966,34607,34606,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.606468715394288,7.924424118746011,0,9,5,-39.33340957434378,0,2,2,2019,6,0,25,26,1,0,0,8.854918391620764,8.854918391620764,0,0,0,0,7,0,0,0,0,0,57.16,56.15,43.6,51.61,8.333333333333334,1,1,0,0,12,2,5,1,2020,328330.0271670902,347370.7641065323,0,0,3065.077740212124 -15367,18966,34608,-9,34607,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1030.712648034686,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,5,1,2020,328330.0271670902,347370.7641065323,0,0,3065.077740212124 -15368,18967,34609,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,8.825702320169796,8.433207942289945,0,0,-1021.335849290769,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.849860451617364,8.189984960437988,60.02,56.42,-9,-9,10,1,1,0,0,0,11,4,1,399,307181.0162314983,-40275.60526915155,152556.3916220152,0,2705.04558354809 -15369,18968,34610,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.152972867928476,8.298336090689558,0,0,0,-1088.526973636397,0,2,2,2019,13,2,30,35,1,2,0,17.17448157047375,17.17448157047375,0,0,0,0,0,1,1,0,3.96444431320259,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,602,461710.9930799445,183883.7127005326,0,0,1369.712706399373 -15370,18969,34611,34612,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.165312320747554,4.918160783480732,42,0,-103.9786919235326,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,14.88543228975585,0,14.5,1,1,0,5.830279321304419,5.338724636575569,37.08,22.6,24.39,48.92,1.666666666666667,1,1,0,0,4,6,3,1,607.5,1165813.562140192,985211.7042009778,247580.1090626101,0,3513.500248618998 -15370,18969,34612,34611,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,8.215630458808359,8.241724516319538,44,0,17.57181141530739,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,5.48,1,1,0,5.086929319993811,8.169932950723496,24.39,48.92,37.08,22.6,3.333333333333333,1,1,0,0,0,6,3,1,607.5,1165813.562140192,985211.7042009778,247580.1090626101,0,3513.500248618998 -15371,18970,34613,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.177827177797182,8.221236811817906,0,0,0,-1024.617807207624,0,-9,-9,2019,12,0,35,35,1,0,0,10.02892841107511,10.02892841107511,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,240,60282.09083163334,47171.74532703743,0,0,2003.082949272723 -15372,18971,34614,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.828134147819039,6.749292531489786,0,0,0,-1023.017921054597,0,2,2,2019,10,1,22,40,1,1,0,4.016315269438951,4.016315269438951,0,0,0,0,27,1,1,0,0,0,51.46,39.65,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,278,-27541.79373426363,0,0,0,1220.820764666511 -15373,18972,34615,-9,34617,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.2590129028251,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,848.6666666666666,-47000.1283064971,22011.50211931446,0,0,1377.086385757448 -15373,18972,34616,-9,34617,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.438960095741,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,848.6666666666666,-47000.1283064971,22011.50211931446,0,0,1377.086385757448 -15373,18972,34617,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,0,4.882282803649568,4.784625215096082,0,0,-1005.326878666755,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.614170220721149,0,44.96,53.97,-9,-9,5,1,1,0,0,0,10,2,0,848.6666666666666,-47000.1283064971,22011.50211931446,0,0,1377.086385757448 -15374,18973,34618,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.533897413763503,8.74036791132287,0,0,0,-1027.322229805275,0,-9,2,2019,6,0,50,60,1,0,0,11.15876973112349,11.15876973112349,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,998,51365.29528724535,-2276.764527499869,131194.3228120109,92933.45061877553,2477.99738330795 -15375,18974,34619,34620,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.740774720094571,8.522106235765817,0,2,3,-4.338883456383829,-9,-9,-9,2019,13,1,42,0,1,1,0,13.89749561908893,13.89749561908893,0,0,0,0,0,0,0,0,2.731469457669857,0,39.14,38.93,42.46,41.62,3.333333333333333,1,1,0,0,9,2,5,1,1162,-23193.74665401236,55923.86262526707,145043.8360352837,126541.5126256849,3268.512760070356 -15375,18974,34620,34619,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.029118968325177,8.096401355797372,0,33,-3,70.80064405249399,0,3,3,2019,12,0,20,28,1,0,0,14.25908339204033,14.25908339204033,0,0,0,0,0,0,0,0,0,0,42.46,41.62,39.14,38.93,6.666666666666667,1,1,0,0,9,2,5,1,1162,-23193.74665401236,55923.86262526707,145043.8360352837,126541.5126256849,3268.512760070356 -15376,18975,34621,-9,34622,-9,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1040.220310924055,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,10,4,1,525.5,45835.48472492563,14653.31582587377,0,0,2157.985386218144 -15376,18975,34622,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.255876104444559,7.839690878834571,5.555878968197084,0,0,-1089.388458989491,0,3,3,2019,9,0,42,57,1,0,0,8.929818082210295,8.929818082210295,0,0,0,0,2,1,1,0,6.307104849717236,0,51.83,57.2,-9,-9,5,1,1,0,0,8,10,4,1,525.5,45835.48472492563,14653.31582587377,0,0,2157.985386218144 -15376,18976,34623,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,3,7.434665306767569,7.827329840792061,7.681546417872849,0,0,-1055.00806632054,0,-9,-9,2019,6,0,25,30,1,0,0,8.212398383111646,8.212398383111646,0,0,0,0,0,1,1,0,8.135103341551314,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,165,-41029.64719580919,0,0,0,1648.435217877718 -15377,18977,34624,34627,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,7.564234498759915,7.750576936797983,0,27,2,-27.75480387624891,0,3,3,2019,12,0,42,42,1,0,0,7.090036632574421,7.090036632574421,0,0,0,0,14.5,1,1,0,0,0,60.28,46.44,55.09,55.87,6.666666666666667,1,1,0,0,8,13,3,1,1043.5,348812.3356805932,262197.7080790455,108725.3193611673,0,2185.391020182467 -15377,18977,34625,-9,34627,34624,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.809384470562,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,1043.5,348812.3356805932,262197.7080790455,108725.3193611673,0,2185.391020182467 -15377,18977,34626,-9,34627,34624,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-959.1765987126986,-9,2,3,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,50.36,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1043.5,348812.3356805932,262197.7080790455,108725.3193611673,0,2185.391020182467 -15377,18977,34627,34624,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.817207227393085,7.749483386761255,0,27,-2,33.05934167699935,0,3,3,2019,14,2,48,45,1,2,0,4.969446231892418,4.969446231892418,0,0,0,0,27,1,1,0,0,0,55.09,55.87,60.28,46.44,6.666666666666667,1,1,0,0,8,13,3,1,1043.5,348812.3356805932,262197.7080790455,108725.3193611673,0,2185.391020182467 -15377,18978,34628,-9,34627,34624,1,1,23,0,1,0,2,2,-9,1,3,8.206664727752154,8.211138014009741,0,0,0,-951.1835224490148,0,2,3,2019,9,1,12,40,1,1,1,47.04411610875482,47.04411610875482,0,0,0,0,0,1,1,0,0,0,52.98,38.97,-9,-9,8.333333333333334,1,1,0,1,8,13,4,1,213,39175.44916069429,64382.28273010947,0,0,2475.070518396014 -15377,18979,34629,-9,34627,34624,1,1,21,0,1,0,2,2,-9,0,4,7.404917825328114,7.49577484280944,0,0,0,-1024.017939992136,0,2,3,2019,6,0,47,39,1,0,1,3.649962203810183,3.649962203810183,0,0,0,.7529670200706473,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,1440,137923.1141132946,0,0,0,830.1181066961739 -15378,18980,34630,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.538967218729256,7.317016629274175,0,0,-989.5619282747044,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,7.271749069465542,48.04,46.66,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,365,674602.471191566,380227.9473495068,114465.3871453136,0,743.7949314789921 -15379,18981,34631,-9,34632,34633,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.5994055158656,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,887.5,841120.9298805874,578523.9025859075,216857.4473349592,94711.15775424008,3543.581019076151 -15379,18981,34632,34633,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.774196597845175,7.942537309038922,0,12,-1,118.1487908567267,0,2,2,2019,12,1,29,29,1,1,0,10.25683677107303,10.25683677107303,0,0,0,0,0,1,1,0,0,0,38.3,52.65,33.76,54.45,6.666666666666667,1,1,0,0,12,13,4,1,887.5,841120.9298805874,578523.9025859075,216857.4473349592,94711.15775424008,3543.581019076151 -15379,18981,34633,34632,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.762334205921237,8.540060426401995,0,12,1,108.851383995545,0,2,2,2019,14,3,37,37,1,3,0,16.26722300583918,16.26722300583918,0,0,0,0,0,1,1,0,.782407717020407,0,33.76,54.45,38.3,52.65,8.333333333333334,1,1,0,0,12,13,4,1,887.5,841120.9298805874,578523.9025859075,216857.4473349592,94711.15775424008,3543.581019076151 -15379,18981,34634,-9,34632,34633,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.54553531877,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,887.5,841120.9298805874,578523.9025859075,216857.4473349592,94711.15775424008,3543.581019076151 -15380,18982,34635,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.752066443902148,9.546433568784945,0,0,0,-921.4134928643688,0,3,2,2019,7,0,45,40,1,0,0,40.98965924394945,40.98965924394945,0,0,0,0,0,1,1,0,3.086639231103851,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,308,1809768.130873616,1239314.110775522,747852.2849191774,0,8199.160961342392 -15381,18983,34636,34639,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.429714889627975,7.507624490810501,0,21,-8,96.09933516717648,0,2,2,2019,6,0,20,15,1,0,0,11.66357994086233,11.66357994086233,0,0,0,0,0,1,1,0,1.154087762847446,0,50.22,55.39,44.25,56.64,6.666666666666667,2,3,0,0,7,8,4,1,831.25,2030485.383814185,1012543.974938844,455957.399566229,0,3471.000209187885 -15381,18983,34637,-9,34636,34639,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.6619014024677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,1,831.25,2030485.383814185,1012543.974938844,455957.399566229,0,3471.000209187885 -15381,18983,34638,-9,34636,34639,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.7925766690792,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,831.25,2030485.383814185,1012543.974938844,455957.399566229,0,3471.000209187885 -15381,18983,34639,34636,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.673583903689831,8.684046778971089,0,20,8,51.26769457484047,0,2,2,2019,10,0,40,40,1,0,0,20.28114274461218,20.28114274461218,0,0,0,0,0,1,1,0,3.04251227719475,0,44.25,56.64,50.22,55.39,3.333333333333333,2,3,0,0,10,8,4,1,831.25,2030485.383814185,1012543.974938844,455957.399566229,0,3471.000209187885 -15382,18984,34640,34641,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.658761165397067,6.530151017244257,52,0,-39.4248016523691,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,2.661188752092358,0,20.86639744555914,0,1,1,0,3.548013169389909,6.268834776513073,37.83,42.51,40.53,47.65,5,1,1,0,0,0,9,3,0,301,629422.9446807839,21779.37762777582,457196.8864623812,0,2249.712101579271 -15382,18984,34641,34640,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.319668277061705,7.407645749973279,52,9,-76.44796509516651,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.00828261510608,7.253536107948365,40.53,47.65,37.83,42.51,6.666666666666667,1,1,0,0,0,9,3,0,301,629422.9446807839,21779.37762777582,457196.8864623812,0,2249.712101579271 -15383,18985,34642,-9,34646,-9,1,1,19,0,1,1,2,0,0,0,3,0,4.962578054561978,5.162646663909512,0,0,-913.9980690136429,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.32645566409523,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,8,2,0,700,49071.74412483175,22621.91024990564,0,0,333.4966729664845 -15383,18986,34643,-9,34646,-9,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1043.552860902764,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,1.693085798035226,0,41.1,58.46,-9,-9,8.333333333333334,1,1,1,1,0,8,1,0,978,-139167.630820015,0,0,0,471.4305846764314 -15383,18987,34644,34646,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.426732204779482,8.37991856723912,0,1,4,21.65138157502767,-9,-9,-9,2019,9,0,40,0,1,1,0,12.67144811179361,12.67144811179361,0,0,0,0,0,1,1,0,2.837961527265742,0,52,55,33.22,49.65,7,1,1,0,0,1,8,3,0,1113,345967.6586662045,46449.87870639524,284678.0153502892,89415.80282561398,3657.823780165745 -15383,18987,34645,-9,34646,34644,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.7992555928247,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,0,1113,345967.6586662045,46449.87870639524,284678.0153502892,89415.80282561398,3657.823780165745 -15383,18987,34646,34644,-9,-9,1,0,39,0,1,0,2,2,-9,1,3,0,6.823278369646849,6.602767224216464,1,-4,32.80313642985097,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,5.48,1,1,0,7.139865097663222,0,33.22,49.65,52,55,5,1,1,0,0,0,8,3,0,1113,345967.6586662045,46449.87870639524,284678.0153502892,89415.80282561398,3657.823780165745 -15384,18988,34647,34648,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.666138550091394,7.71155973061496,19,4,-49.1929070070131,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.394541804641675,57.76,54.51,49.63,54.22,10,1,1,0,0,4,9,3,1,291,755902.2030451931,438468.6710487508,353882.7736920606,0,2207.858991061424 -15384,18988,34648,34647,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.389766297090947,5.38838490579039,19,-4,-21.38757991243667,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.677606689557964,5.252920791584808,49.63,54.22,57.76,54.51,8.333333333333334,1,1,0,0,0,9,3,1,291,755902.2030451931,438468.6710487508,353882.7736920606,0,2207.858991061424 -15385,18989,34649,34650,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.911036246297241,7.838007888493268,50,-4,-52.05463792832114,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.882119650697081,8.005135443627751,50,46,53,47,7,1,1,0,0,9,8,4,1,651,953232.4429992212,423794.9318804623,543480.7199813878,0,3707.221162912526 -15385,18989,34650,34649,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.629437359545674,8.042500403323517,10,4,146.5898248927711,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.925287086925856,8.076873535030995,53,47,50,46,7,1,1,0,0,0,8,4,1,651,953232.4429992212,423794.9318804623,543480.7199813878,0,3707.221162912526 -15386,18990,34651,34653,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.196560854553445,8.382159495701073,0,4,8,57.35383396928346,0,2,2,2019,7,0,34,30,1,0,0,13.5328229915924,13.5328229915924,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,820,368712.3554727591,228288.6073769178,0,0,3474.49196751858 -15386,18990,34652,-9,34651,34653,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.876907767717,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,.4000058620716143,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,820,368712.3554727591,228288.6073769178,0,0,3474.49196751858 -15386,18990,34653,34651,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,8.67233166955989,8.909472546340361,0,4,-8,-35.06220948747416,0,-9,-9,2019,6,0,39,35,1,0,0,19.8728119289886,19.8728119289886,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,7,2,5,1,820,368712.3554727591,228288.6073769178,0,0,3474.49196751858 -15386,18991,34654,-9,34651,34653,1,0,20,0,1,0,2,2,1,0,4,6.645516688100443,6.526862235183915,0,0,0,-1092.639891482194,-9,2,1,2019,6,0,26,0,1,0,1,3.414747593621892,3.414747593621892,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,282,117760.761009804,0,0,0,556.7464230666976 -15387,18992,34655,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.044149529403595,6.970385192770068,0,0,-1086.344271175776,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,8.555522688096419,0,0,1,1,0,7.264303802605981,7.205873760127536,54.62,32.87,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,477,56608.539648789,0,137521.0756869036,0,1696.813022389426 -15388,18993,34656,34658,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,7.543295410818101,7.352007801531784,0,8,3,96.13755112051246,0,2,2,2019,9,0,23,25,1,0,0,10.80330401263475,10.80330401263475,0,0,0,0,0,1,1,0,0,0,47.32,52.7,37.68,54.3,8.333333333333334,1,1,0,0,10,2,2,1,1650,240500.5402608756,0,246872.1971294738,0,1795.423269125226 -15388,18993,34657,-9,34658,34656,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.430518007891,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,1650,240500.5402608756,0,246872.1971294738,0,1795.423269125226 -15388,18993,34658,34656,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,0,0,0,8,-3,-90.52061065062982,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.663877699476473,0,37.68,54.3,47.32,52.7,8.333333333333334,1,1,0,0,0,2,2,1,1650,240500.5402608756,0,246872.1971294738,0,1795.423269125226 -15388,18993,34659,-9,34658,34656,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.506125598999,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,1650,240500.5402608756,0,246872.1971294738,0,1795.423269125226 -15389,18994,34660,34661,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,43,-8,80.19968574645263,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.62,38.36,58.15,52.91,6.666666666666667,1,1,0,0,3,4,2,1,429.5,519285.8944556953,129164.0396513298,194037.9799678019,0,1359.994060032556 -15389,18994,34661,34660,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.55968274958264,5.59198041414619,43,8,31.4956958824446,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.558729481544031,5.514275653739539,58.15,52.91,43.62,38.36,8.333333333333334,1,1,0,0,6,4,2,1,429.5,519285.8944556953,129164.0396513298,194037.9799678019,0,1359.994060032556 -15390,18995,34662,34663,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,7.596211424357159,7.506381815105805,0,8,4,-216.9454132566856,0,2,2,2019,8,0,50,50,1,0,0,4.203885422544389,4.203885422544389,0,0,0,0,0,0,0,0,0,0,52.83,49.11,59.43,58.05,1.666666666666667,1,1,0,0,10,10,3,0,173.5,4864.50449827587,30039.94039093523,154434.4697561864,0,1487.368845192307 -15390,18995,34663,34662,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.666917944129266,7.479749354004405,0,32,-4,-62.42974797675661,0,2,2,2019,1,0,37,43,1,0,0,7.137704089542185,7.137704089542185,0,0,0,0,2,0,0,0,0,0,59.43,58.05,52.83,49.11,8.333333333333334,1,1,0,0,10,10,3,0,173.5,4864.50449827587,30039.94039093523,154434.4697561864,0,1487.368845192307 -15391,18996,34664,34665,-9,-9,1,0,52,0,0,0,1,1,-9,0,1,0,0,0,17,0,52.90112094354814,0,2,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,27.36,57.06,57.76,0,1,1,0,0,0,1,3,1,710,338801.48922704,251953.4728191333,203853.5882067998,122202.6604017484,1324.136187496294 -15391,18996,34665,34664,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.138114518171014,8.420093233050867,0,17,0,-29.92997094668189,0,2,2,2019,6,0,40,40,1,0,0,12.67407078719445,12.67407078719445,0,0,0,0,0,0,0,0,0,0,57.06,57.76,32.09,27.36,8.333333333333334,1,1,0,0,11,1,3,1,710,338801.48922704,251953.4728191333,203853.5882067998,122202.6604017484,1324.136187496294 -15391,18997,34666,-9,34664,34665,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1020.698671548805,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.94,56.26,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,5234,0,0,0,0,0 -15392,18998,34667,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.305330306616076,8.291666562527487,0,0,0,-977.3444953136091,0,3,3,2019,21,7,31,31,1,7,0,13.56940444906625,13.56940444906625,0,0,0,0,0,0,0,0,2.06264994589326,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,107,272821.7043404494,134649.8077619253,296142.1520645666,0,1332.86100065429 -15393,18999,34668,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.562185498318384,6.913537658974311,0,0,-978.1631483461947,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,84.23566247790417,3.061621279507564,776.7957753900338,0,1,1,0,0,6.819154590735208,42.45,12.16,-9,-9,5,1,1,0,0,0,1,2,1,1477,801434.4051247936,588607.6754166761,282349.0066456405,0,1272.287078384601 -15394,19000,34669,34671,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,8.889615400868184,9.073366440452219,0,18,-3,-48.86234909724767,0,3,3,2019,9,0,38,38,1,0,0,17.07445443819748,17.07445443819748,0,0,0,0,0,1,1,0,0,0,52.24,50.75,52.7,32.17,8.333333333333334,2,3,0,0,8,9,5,1,662.2,262607.0776873048,17284.89635123389,492758.2337421689,259843.9125042188,5368.043581621159 -15394,19000,34670,-9,34669,34671,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.341423720383,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,5,1,662.2,262607.0776873048,17284.89635123389,492758.2337421689,259843.9125042188,5368.043581621159 -15394,19000,34671,34669,-9,34674,1,1,48,0,3,0,1,1,-9,0,4,8.88165087120607,8.793001535823441,0,18,3,95.52056194021318,0,3,2,2019,18,7,40,40,1,7,0,20.78873259485825,20.78873259485825,0,0,0,0,0,1,1,0,6.875479259901859,0,52.7,32.17,52.24,50.75,8.333333333333334,2,3,0,1,7,9,5,1,662.2,262607.0776873048,17284.89635123389,492758.2337421689,259843.9125042188,5368.043581621159 -15394,19000,34672,-9,34669,34671,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1056.073935672529,-9,1,1,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,5,1,662.2,262607.0776873048,17284.89635123389,492758.2337421689,259843.9125042188,5368.043581621159 -15394,19000,34673,-9,34669,34671,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.351818450532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,662.2,262607.0776873048,17284.89635123389,492758.2337421689,259843.9125042188,5368.043581621159 -15394,19001,34674,-9,-9,-9,1,1,85,0,3,0,3,3,-9,0,3,0,0,0,0,0,-956.285801721174,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.302483385394648,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,98,105984.8428438504,0,0,0,1281.989618852176 -15395,19002,34675,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1009.5953752913,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.35,42.21,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,631,55314.02036208151,0,0,0,548.1291105721518 -15396,19003,34676,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.149997974051231,6.325294682355292,0,0,-883.0559478282139,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.412291351072282,45.33,47.74,-9,-9,5,1,1,0,0,0,10,2,1,467,249759.8052105035,11497.06789574924,145861.6716723824,0,585.9529466412309 -15397,19004,34677,-9,34679,-9,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.983435898288,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,3,0,674.6666666666666,-64559.60668627483,20837.39376513595,0,0,3016.996343225439 -15397,19004,34678,-9,34679,-9,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.780177183163,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.91,58.63,-9,-9,8.333333333333334,4,2,0,0,0,4,3,0,674.6666666666666,-64559.60668627483,20837.39376513595,0,0,3016.996343225439 -15397,19004,34679,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,7.610237453865675,8.140316380325901,6.073436213151393,0,0,-977.939219637761,0,2,2,2019,9,0,45,36,1,0,0,6.076198181776515,6.076198181776515,0,0,0,0,7,1,1,0,5.584394095598125,0,49.82,37.91,-9,-9,5,1,1,0,0,6,4,3,0,674.6666666666666,-64559.60668627483,20837.39376513595,0,0,3016.996343225439 -15397,19005,34680,-9,34679,-9,1,1,18,0,2,0,2,2,-9,0,4,8.004238510140766,7.828998114063389,0,0,0,-769.886651413201,0,2,3,2019,11,0,40,0,1,0,1,7.055230005757195,7.055230005757195,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,1,4,4,0,634,-73590.70864436071,92326.23883562912,0,0,1440.689726613672 -15398,19006,34681,-9,34683,34684,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-888.9833581220793,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,814.25,335121.6742785294,26912.57926197345,299053.4104711721,111236.4150250209,2312.570059207593 -15398,19006,34682,-9,34683,34684,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.0342931671381,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,3,1,814.25,335121.6742785294,26912.57926197345,299053.4104711721,111236.4150250209,2312.570059207593 -15398,19006,34683,34684,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.323717393123152,8.409360344144922,0,8,-1,159.7672517874163,0,2,2,2019,9,0,22,37,1,0,0,16.63593692092007,16.63593692092007,0,0,0,0,0,1,1,0,.7593558762539527,0,54.2,57.49,51.41,56.15,1.666666666666667,1,1,0,0,8,5,3,1,814.25,335121.6742785294,26912.57926197345,299053.4104711721,111236.4150250209,2312.570059207593 -15398,19006,34684,34683,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.529924773620768,7.702513855771652,4.792338376116578,8,1,19.02013026623682,0,2,3,2019,6,0,35,30,1,0,0,6.662097672955279,6.662097672955279,0,0,0,0,0,1,1,0,5.277880675433868,0,51.41,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,5,3,1,814.25,335121.6742785294,26912.57926197345,299053.4104711721,111236.4150250209,2312.570059207593 -15399,19007,34685,34687,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.653462532813725,8.717695266925698,6.604084108552192,10,3,42.14175176240698,0,-9,-9,2019,6,0,40,48,1,0,0,14.03240965898329,14.03240965898329,0,0,0,0,0,1,1,0,6.157722256349989,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,524.5,711704.5565189971,436620.9660550191,344136.0118281749,59915.36808378376,4990.906274014979 -15399,19007,34686,-9,34687,34685,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.74125749302,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,524.5,711704.5565189971,436620.9660550191,344136.0118281749,59915.36808378376,4990.906274014979 -15399,19007,34687,34685,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.749562860441833,8.808178140640775,5.163265575251722,28,-3,-29.63147247628044,0,2,2,2019,7,0,30,30,1,0,0,26.31016463419328,26.31016463419328,0,0,0,0,0,1,1,0,4.889008036101229,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,12,4,5,1,524.5,711704.5565189971,436620.9660550191,344136.0118281749,59915.36808378376,4990.906274014979 -15399,19007,34688,-9,34687,34685,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-937.598274213144,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,524.5,711704.5565189971,436620.9660550191,344136.0118281749,59915.36808378376,4990.906274014979 -15400,19008,34689,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,0,0,0,0,0,-983.0660166740784,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,0,4,1,0,147,-85674.41142685838,0,0,0,0 -15400,19009,34690,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.008761942897737,8.271788109855862,0,0,0,-1000.457534133049,0,-9,-9,2019,6,0,46,39,1,0,0,7.705122952119382,7.705122952119382,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,5,4,4,0,971,101723.4037090774,156087.7313718138,245255.961360647,0,1286.320366119855 -15401,19010,34691,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.188865372713877,7.929808680628896,0,0,0,-962.2959072450167,0,2,2,2019,3,0,30,32,1,0,0,9.893119376445229,9.893119376445229,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,842,203568.9213163768,110043.6957097246,0,0,1390.447775025027 -15401,19011,34692,-9,34691,-9,1,1,22,0,0,0,2,2,-9,0,4,7.941816049247108,7.88482898852293,0,0,0,-1089.262008961897,0,2,-9,2019,24,8,44,39,1,8,1,7.564101392696525,7.564101392696525,0,0,0,0,0,0,0,0,3.863078662004776,0,39.82,58.52,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,1640,27488.31466574911,0,0,0,1193.530811212844 -15401,19012,34693,-9,34691,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1055.181722339721,-9,2,-9,2019,24,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,23.24,62.54,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,218,-34141.67905025948,0,0,0,0 -15402,19013,34694,34695,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.63633354828489,8.426842049215676,0,6,0,-70.93667651664782,0,-9,-9,2019,12,0,37,42,1,0,0,16.47737794521706,16.47737794521706,0,0,0,0,2,0,0,0,0,0,55.11,47.63,53.92,52.23,6.666666666666667,1,1,0,0,11,11,5,1,1199,94534.28935131125,124966.0474083599,155462.8360088687,76489.42959036081,3590.684353116124 -15402,19013,34695,34694,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.553135531527964,8.675662921679065,0,6,0,25.3628250092124,0,2,2,2019,8,0,42,42,1,0,0,15.08467261404243,15.08467261404243,0,0,0,0,2,0,0,0,5.991098082108621,0,53.92,52.23,55.11,47.63,8.333333333333334,1,1,0,0,8,11,5,1,1199,94534.28935131125,124966.0474083599,155462.8360088687,76489.42959036081,3590.684353116124 -15403,19014,34696,34697,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.525118791906495,8.423339439216987,0,8,0,-3.878485912977313,0,2,2,2019,12,3,44,42,1,3,0,15.68981831167326,15.68981831167326,0,0,0,0,7,1,1,0,3.436579985615299,0,51.21,52.15,45.4,56.19,8.333333333333334,1,1,0,0,8,13,4,1,573.6666666666666,624357.5494164714,483223.9346469144,183889.6831731017,51624.85356008128,3289.72458282648 -15403,19014,34697,34696,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.083988692416773,8.093290713777158,0,8,0,40.49005919071084,0,-9,-9,2019,9,0,30,30,1,0,0,10.59444215937687,10.59444215937687,0,0,0,0,0,1,1,0,0,0,45.4,56.19,51.21,52.15,8.333333333333334,1,1,0,0,8,13,4,1,573.6666666666666,624357.5494164714,483223.9346469144,183889.6831731017,51624.85356008128,3289.72458282648 -15403,19014,34698,-9,34697,34696,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.7628984085925,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,573.6666666666666,624357.5494164714,483223.9346469144,183889.6831731017,51624.85356008128,3289.72458282648 -15404,19015,34699,34700,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.015110001818076,7.708026574322687,0,3,-4,-22.35888385864207,0,2,2,2019,9,0,40,40,1,1,0,7.891171104127744,7.891171104127744,0,0,0,0,0,1,1,0,0,0,52,55,38.61,51.18,8,1,1,0,0,1,11,3,1,448.6666666666667,-12741.81762381228,0,0,0,3464.796595855697 -15404,19015,34700,34699,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,7.693162419952473,7.730799333728745,0,3,4,-22.64876553044137,0,3,2,2019,12,1,40,35,1,1,0,7.781675554825883,7.781675554825883,0,0,0,0,7,1,1,0,0,0,38.61,51.18,52,55,5,1,1,0,0,8,11,3,1,448.6666666666667,-12741.81762381228,0,0,0,3464.796595855697 -15404,19015,34701,-9,34700,34699,1,0,10,0,1,1,3,0,-9,0,2,0,0,0,0,0,-943.3910692727375,-9,3,2,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,11,3,1,448.6666666666667,-12741.81762381228,0,0,0,3464.796595855697 -15405,19016,34702,34703,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.314380517370902,7.806196983583345,39,13,-36.59649186220565,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,2.446115413633438,7.519497882395274,38.77,31.36,59.53,56.44,3.333333333333333,1,1,0,0,0,10,3,1,2051,961090.0812704226,266615.245837583,298086.48689635,0,2854.943257073143 -15405,19016,34703,34702,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.017660187672581,7.439700735790019,39,-13,-72.38161078708659,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.329220886523863,59.53,56.44,38.77,31.36,8.333333333333334,1,1,0,0,6,10,3,1,2051,961090.0812704226,266615.245837583,298086.48689635,0,2854.943257073143 -15406,19017,34704,34705,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,4.672774995896718,5.076532319565716,43,-5,-42.13238541032403,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.996597769512047,5.245337067371922,57.16,56.15,50.23,52.59,8.333333333333334,1,1,0,0,3,7,4,1,171,2032131.950624131,1007694.814989546,509177.6321308572,0,2914.086105280608 -15406,19017,34705,34704,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.413011821920431,8.45808854496704,43,5,4.775411666122897,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.289279453209655,8.610057098796368,50.23,52.59,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,171,2032131.950624131,1007694.814989546,509177.6321308572,0,2914.086105280608 -15407,19018,34706,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.73612251254027,8.834581563101514,0,0,0,-1011.843826526454,0,2,2,2019,11,0,38,37,1,0,0,16.52245042131537,16.52245042131537,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,559,7062.697925877714,-8787.103999250325,71669.77026256922,20073.21974267683,2454.461163672221 -15408,19019,34707,34708,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,4.963080391607949,6.373117364002916,5.79285148982249,11,-3,-46.60497745586945,0,3,3,2019,14,3,2,5,1,3,0,9.710859914733641,9.710859914733641,0,0,0,0,0,1,1,0,5.576369322320843,5.724779004549631,54.07,36.17,57.16,56.15,5,1,1,0,0,13,5,4,1,525.5,1396535.680581872,821414.018823958,443734.2723275357,0,2455.407050600815 -15408,19019,34708,34707,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.496792631264896,8.514699419583962,37,3,35.31980491154386,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.185341075630095,57.16,56.15,54.07,36.17,8.333333333333334,1,1,0,0,0,5,4,1,525.5,1396535.680581872,821414.018823958,443734.2723275357,0,2455.407050600815 -15408,19020,34709,-9,34707,34708,1,0,26,0,0,0,2,2,-9,0,4,7.930089992811178,7.725931775897137,0,0,0,-939.9420828121141,0,1,1,2019,6,0,40,35,1,0,0,6.451635517749576,6.451635517749576,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,2227,10273.53862831136,0,0,0,1318.441638816449 -15409,19021,34710,34711,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,9,-5,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.49,48.71,29.36,51.92,5,1,1,1,0,1,12,1,1,719,-128713.2767548457,70372.95363824243,0,0,417.7276458374662 -15409,19021,34711,34710,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,0,0,0,9,5,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.36,51.92,35.49,48.71,3.333333333333333,1,1,0,0,0,12,1,1,719,-128713.2767548457,70372.95363824243,0,0,417.7276458374662 -15410,19022,34712,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1096.151635872845,-9,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,4.435917773673996,6.117561191474202,0,1,1,0,0,0,54.95,10.49,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,1214,-121133.7800929042,0,70631.06550199536,0,373.6613619062838 -15411,19023,34713,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.151618613359084,8.205338533534828,0,0,0,-946.1857329851454,0,2,1,2019,12,0,50,45,1,0,0,8.573377458874312,8.573377458874312,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,1,9,8,4,0,508,343825.77698759,0,0,0,1390.372523179438 -15412,19024,34714,34715,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,6.068425370926075,5.997009593969471,7,-5,4.379463644131626,0,2,1,2019,7,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,5.956674144908383,6.464822019315148,51.73,58.82,57.16,56.15,10,1,1,0,0,7,2,3,1,1017,1116384.215154436,835850.8007069561,259222.5317067648,0,2882.644886035641 -15412,19024,34715,34714,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.265327298152034,8.015081919934198,7,5,-4.90218442700675,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.034027491981862,7.857768871503549,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,1017,1116384.215154436,835850.8007069561,259222.5317067648,0,2882.644886035641 -15413,19025,34716,34717,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.373826056346587,8.531300640788354,6,11,54.34698913559872,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.699754634009395,8.540935655054481,51.33,42,53.22,44.49,6.666666666666667,1,1,0,0,6,2,4,1,691,1904009.330536778,1542854.448698875,227289.9257275211,43175.4546756051,2852.797513871724 -15413,19025,34717,34716,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,6,-11,-116.4900917286489,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,6.31103754277289,0,53.22,44.49,51.33,42,8.333333333333334,1,1,0,0,6,2,4,1,691,1904009.330536778,1542854.448698875,227289.9257275211,43175.4546756051,2852.797513871724 -15414,19026,34718,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-995.15453871802,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,450,-51983.03927002542,0,77343.41116551933,0,951.75345856886 -15415,19027,34719,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,6.668015099753044,6.98315910603621,0,0,-826.5766696154329,0,2,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,6.494810691988918,7.196354947650358,27.18,29.6,-9,-9,5,1,1,0,0,0,2,2,1,752,780688.8790536685,355744.4378105944,210870.6642345404,0,1495.446464066272 -15416,19028,34720,34721,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.710964256558938,7.582394914778968,0,24,-1,60.21556423925149,0,3,3,2019,12,3,20,20,1,3,0,11.01931445765132,11.01931445765132,0,0,0,0,2,0,0,0,2.578466170803055,0,37.53,56.97,50,49,8.333333333333334,1,1,0,0,11,4,3,1,246.5,152779.2343925233,-51399.5173583576,138788.7957232938,3145.511017799103,1733.610324391587 -15416,19028,34721,34720,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.243382877806193,7.192356227667323,0,10,1,-151.8565612499471,0,-9,-9,2019,10,0,45,48,1,1,0,3.977177436312318,3.977177436312318,0,0,0,0,0,0,0,0,.5845859522830842,0,50,49,37.53,56.97,7,1,1,0,0,1,4,3,1,246.5,152779.2343925233,-51399.5173583576,138788.7957232938,3145.511017799103,1733.610324391587 -15416,19029,34722,-9,34720,34721,1,1,22,0,0,0,2,2,-9,0,3,7.423644388159158,7.495374640227702,0,0,0,-1059.721689275494,0,3,2,2019,14,2,40,40,1,2,1,4.088981737587082,4.088981737587082,0,0,0,0,0,0,0,0,3.121018697032514,0,53.38,52.51,-9,-9,5,1,1,0,0,8,4,3,1,1050,985.5104582953577,136558.4891986224,0,0,1175.723496196458 -15417,19030,34723,34724,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.303266582438933,8.371220295596077,0,7,-1,107.8069240304468,0,2,2,2019,10,0,39,37,1,0,0,11.59637865945427,11.59637865945427,0,0,0,0,0,0,0,0,0,0,46.86,55.66,42.87,45.21,6.666666666666667,1,1,0,0,9,6,5,1,471,230761.9329468342,-46933.14150793498,137773.2519925219,97569.80770751591,3333.070279626097 -15417,19030,34724,34723,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.03108441344515,8.088064258916104,0,7,1,-14.9843546982088,0,2,3,2019,11,1,41,39,1,1,0,9.506003528267602,9.506003528267602,0,0,0,0,0,0,0,0,0,0,42.87,45.21,46.86,55.66,6.666666666666667,1,1,0,0,9,6,5,1,471,230761.9329468342,-46933.14150793498,137773.2519925219,97569.80770751591,3333.070279626097 -15418,19031,34725,-9,34727,34728,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.297989079211,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,476,263474.2731273841,97920.26366226313,320736.5944572226,167725.8870511835,4924.750704263983 -15418,19031,34726,-9,34727,34728,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1079.633016527174,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,476,263474.2731273841,97920.26366226313,320736.5944572226,167725.8870511835,4924.750704263983 -15418,19031,34727,34728,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.466062972382879,6.659875932034345,0,14,4,31.06200828537499,0,2,2,2019,10,0,6,10,1,0,0,12.38566654486981,12.38566654486981,0,0,0,0,0,0,0,0,7.500274006424142,0,46.44,59.62,45.91,59.89,8.333333333333334,1,1,0,0,11,9,4,1,476,263474.2731273841,97920.26366226313,320736.5944572226,167725.8870511835,4924.750704263983 -15418,19031,34728,34727,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.930430971680511,8.906425747166027,0,11,-4,-39.46230000284973,0,-9,-9,2019,12,1,46,45,1,1,0,21.06479046842513,21.06479046842513,0,0,0,0,0,0,0,0,8.037952846848018,0,45.91,59.89,46.44,59.62,6.666666666666667,1,1,0,0,13,9,4,1,476,263474.2731273841,97920.26366226313,320736.5944572226,167725.8870511835,4924.750704263983 -15419,19032,34729,34730,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.737547410747169,8.452753514344598,0,8,0,-67.35527804389558,0,2,2,2019,8,0,42,41,1,0,0,14.504385605834,14.504385605834,0,0,0,0,7,0,0,0,4.660897264521551,0,53.88,43.05,55.58,52.99,8.333333333333334,1,1,0,0,10,11,5,1,276,709239.7196228667,226513.6122843662,165887.1410289588,0,4024.623897022337 -15419,19032,34730,34729,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.458314620623881,8.381538735359491,0,8,0,-102.7538505290624,0,-9,-9,2019,12,0,41,47,1,0,0,10.85198833826634,10.85198833826634,0,0,0,0,14.5,0,0,0,0,0,55.58,52.99,53.88,43.05,6.666666666666667,1,1,0,0,12,11,5,1,276,709239.7196228667,226513.6122843662,165887.1410289588,0,4024.623897022337 -15420,19033,34731,34732,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,7.33482405859407,7.274383191313651,0,17,8,-201.030666229359,0,2,2,2019,10,0,45,40,1,1,0,4.67209272969763,4.67209272969763,0,0,0,0,0,1,1,0,0,0,48.63,42.45,43.17,47.91,5,2,3,0,0,11,6,2,1,769.25,-8710.84454724858,32424.70293274191,0,0,1072.54173518362 -15420,19033,34732,34731,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,0,0,0,17,-8,-60.00855681964656,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.17,47.91,48.63,42.45,3.333333333333333,2,3,0,0,3,6,2,1,769.25,-8710.84454724858,32424.70293274191,0,0,1072.54173518362 -15420,19033,34733,-9,34732,34731,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.9688710668106,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,769.25,-8710.84454724858,32424.70293274191,0,0,1072.54173518362 -15420,19033,34734,-9,34732,34731,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.613672618922,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,769.25,-8710.84454724858,32424.70293274191,0,0,1072.54173518362 -15421,19034,34735,34737,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.129690869747765,8.279719909216874,0,8,1,-8.611767451435737,0,2,2,2019,12,2,35,37,1,2,0,11.51494545082903,11.51494545082903,0,0,0,0,0,1,1,0,0,0,48.54,46.62,63.81,35.6,8.333333333333334,1,1,0,0,9,13,5,1,650,1195843.138954056,1172430.787461952,238939.35671569,118387.6685574353,3675.225123183067 -15421,19034,34736,-9,34735,34737,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1076.599102226675,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,1,0,0,13,5,1,650,1195843.138954056,1172430.787461952,238939.35671569,118387.6685574353,3675.225123183067 -15421,19034,34737,34735,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.436420310324337,8.575711242402814,0,8,-1,-37.71205963487432,0,3,2,2019,8,0,40,40,1,0,0,14.50128100597707,14.50128100597707,0,0,0,0,0,1,1,0,0,0,63.81,35.6,48.54,46.62,1.666666666666667,1,1,0,0,9,13,5,1,650,1195843.138954056,1172430.787461952,238939.35671569,118387.6685574353,3675.225123183067 -15422,19035,34738,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.525957039172356,7.403724476368366,0,0,0,-954.8356592468572,0,-9,2,2019,8,0,14,9,1,0,0,14.53045449127014,14.53045449127014,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,8,5,3,0,314,-141647.8121262691,-134047.642055172,0,0,1229.40073525488 -15423,19036,34739,34740,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,8.395239958896379,8.227587472513326,33,3,-108.485362337461,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.895409952276188,8.255056614206074,57.06,57.76,55.09,55.87,8.333333333333334,1,1,0,0,0,5,4,1,510,1332409.821370735,941506.1488610879,471816.6125311699,0,3048.116184605361 -15423,19036,34740,34739,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,6.646276449690409,6.979859930654661,6.231385279987722,7,-3,58.20832520462351,0,3,3,2019,7,0,12,8,1,0,0,8.362913619249731,8.362913619249731,0,0,0,0,0,1,1,0,0,6.3794858125796,55.09,55.87,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,510,1332409.821370735,941506.1488610879,471816.6125311699,0,3048.116184605361 -15423,19037,34741,-9,34740,34739,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1045.079697449607,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,884,87894.28859962847,0,0,0,0 -15424,19038,34742,34743,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.79882362677751,6.641368813072935,10,-13,-41.99914775596945,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.835639899200518,51.02,46.68,60.94,49.24,10,1,1,0,0,0,13,2,1,308,572319.3845637741,152880.9162676848,187725.536623603,0,3059.054074117085 -15424,19038,34743,34742,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.040492567737532,6.903891770525144,10,13,-10.20803986876968,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.056733167863354,7.128375715726365,60.94,49.24,51.02,46.68,10,1,1,0,0,0,13,2,1,308,572319.3845637741,152880.9162676848,187725.536623603,0,3059.054074117085 -15425,19039,34744,34745,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,8,14,-.6912545554086265,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,62.66,52.4,6.666666666666667,1,1,0,0,0,10,2,0,1321,404179.1963782644,110727.2269194966,317764.0057048647,0,1464.509896001644 -15425,19039,34745,34744,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,5.964741944604572,5.760591692425669,0,42,-14,67.31568829407456,0,-9,-9,2019,0,0,6,8,1,0,0,6.974817701432366,6.974817701432366,0,0,0,0,0,1,1,0,1.729014007472724,0,62.66,52.4,49.87,50.46,0,1,1,0,0,10,10,2,0,1321,404179.1963782644,110727.2269194966,317764.0057048647,0,1464.509896001644 -15426,19040,34746,34748,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.309437742070812,7.365311151182806,0,20,2,-95.8453038834143,0,3,2,2019,12,0,30,30,1,0,0,7.057414068273248,7.057414068273248,0,0,0,0,2,1,1,0,0,0,60.14,43.99,57.16,56.15,3.333333333333333,1,1,0,0,10,10,4,1,564.25,443934.3686278517,-25778.54719766182,581810.4635487576,225826.2479150475,2592.639290360815 -15426,19040,34747,-9,34746,34748,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.995183275388,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,564.25,443934.3686278517,-25778.54719766182,581810.4635487576,225826.2479150475,2592.639290360815 -15426,19040,34748,34746,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.600577234594528,8.494992271887057,0,8,-2,44.24206101297965,0,2,2,2019,10,0,40,44,1,0,0,14.08815266039404,14.08815266039404,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.14,43.99,8.333333333333334,1,1,0,0,10,10,4,1,564.25,443934.3686278517,-25778.54719766182,581810.4635487576,225826.2479150475,2592.639290360815 -15426,19040,34749,-9,34746,34748,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.589329321293,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,564.25,443934.3686278517,-25778.54719766182,581810.4635487576,225826.2479150475,2592.639290360815 -15427,19041,34750,34751,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.196723764233257,8.301953535543312,0,36,0,-.9019048417508841,0,3,3,2019,11,0,24,24,1,2,0,16.9740048123983,16.9740048123983,0,0,0,0,0,0,0,0,0,0,49,48,57.73,41.33,7,3,4,0,1,12,4,5,0,996.5,261304.406098948,102013.6979565434,110623.7764501928,0,2938.916150381499 -15427,19041,34751,34750,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.16780303668269,7.852613368022377,0,11,0,-16.40463141992021,0,3,3,2019,11,1,60,48,1,1,0,5.450734878603746,5.450734878603746,0,0,0,0,2,0,0,0,0,0,57.73,41.33,49,48,5,3,4,0,0,13,4,5,0,996.5,261304.406098948,102013.6979565434,110623.7764501928,0,2938.916150381499 -15427,19042,34752,-9,34750,34751,1,1,29,0,0,0,2,2,-9,0,2,8.398942083354958,8.057207596152784,0,0,0,-978.2661389918622,0,3,3,2019,19,7,54,50,1,7,0,7.957423554915887,7.957423554915887,0,0,0,0,0,0,0,0,0,0,19.54,54.87,-9,-9,3.333333333333333,3,4,0,1,6,4,4,0,447,169404.494154112,0,0,0,1850.918587051378 -15428,19043,34753,-9,34756,34754,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.214074638965,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,5,1,622.75,1137436.363022875,665939.0852553801,305102.3351592795,96926.03050249977,4566.06321541212 -15428,19043,34754,34756,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.951704496935136,8.749986384007221,0,20,0,132.0139764652763,0,2,1,2019,10,2,44,41,1,2,0,21.75940795765037,21.75940795765037,0,0,0,0,0,1,1,0,5.635282077685228,0,40.07,57.25,54.2,57.49,6.666666666666667,1,1,0,0,12,10,5,1,622.75,1137436.363022875,665939.0852553801,305102.3351592795,96926.03050249977,4566.06321541212 -15428,19043,34755,-9,34756,34754,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.2319251732455,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,622.75,1137436.363022875,665939.0852553801,305102.3351592795,96926.03050249977,4566.06321541212 -15428,19043,34756,34754,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.365812916524996,8.292108553252151,0,21,0,-58.81074260551537,0,3,2,2019,5,1,23,19,1,1,0,20.08730831038035,20.08730831038035,0,0,0,0,2,1,1,0,6.070628193710729,0,54.2,57.49,40.07,57.25,8.333333333333334,1,1,0,0,12,10,5,1,622.75,1137436.363022875,665939.0852553801,305102.3351592795,96926.03050249977,4566.06321541212 -15429,19044,34757,34758,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.690271369807578,7.068355677539358,52,9,110.0562906621374,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,15.63693123615606,0,0,1,1,0,5.948389917326959,7.257950128809196,65.89,22.13,59.04,54.12,8.333333333333334,1,1,0,0,0,5,2,1,544,420755.01423109,229508.1256728939,185205.3030076721,0,2360.395559366922 -15429,19044,34758,34757,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.332303032594739,6.322972075734224,52,0,-36.06252586389699,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.364350022673816,6.585018995160508,59.04,54.12,65.89,22.13,10,1,1,0,0,0,5,2,1,544,420755.01423109,229508.1256728939,185205.3030076721,0,2360.395559366922 -15430,19045,34759,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.914452433238994,6.93100335156563,0,0,-1028.323875975308,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.958323433813114,52,45,-9,-9,8,1,1,0,0,0,4,2,1,198,248531.1786407494,181343.4714507195,0,0,1521.464678353208 -15431,19046,34760,34761,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,7,-5,0,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,3.778766071898089,0,0,1,1,0,0,0,58.45,19.24,60.03,45.37,8.333333333333334,1,1,0,1,0,13,1,1,510,107317.9741790631,0,101531.2540405643,0,1127.666078014416 -15431,19046,34761,34760,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.03,45.37,58.45,19.24,5,1,1,0,0,0,13,1,1,510,107317.9741790631,0,101531.2540405643,0,1127.666078014416 -15432,19047,34762,34763,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,6.894694084298938,6.773892699228302,0,11,-7,103.0802676734446,0,2,3,2019,12,0,40,40,1,0,0,2.326342775045331,2.326342775045331,0,0,0,0,5.48,1,1,0,4.914273840148658,0,51.8,38.82,38.41,23.07,8.333333333333334,1,1,0,0,8,6,2,1,1335.5,117319.6411484487,42957.47072340813,0,0,582.1601430900687 -15432,19047,34763,34762,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,11,7,-161.0273846249515,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.41,23.07,51.8,38.82,5,1,1,0,0,0,6,2,1,1335.5,117319.6411484487,42957.47072340813,0,0,582.1601430900687 -15432,19048,34764,-9,34763,-9,1,0,38,0,0,0,1,1,-9,0,4,8.547858901587619,8.199319665195599,0,0,0,-811.4538907415283,0,2,2,2019,10,0,40,40,1,0,0,13.05622098449732,13.05622098449732,0,0,0,0,14.5,1,1,0,0,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,1226,50620.22255825543,-66393.24590954601,0,0,1658.007499575779 -15433,19049,34765,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1198.040786109502,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.352458766980535,0,55.39,54.22,-9,-9,1.666666666666667,1,1,0,0,3,1,1,0,767,-53707.32946594687,0,0,0,1596.606315461578 -15434,19050,34766,34767,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,8,-20,58.31582897080423,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,35,40.55,54,54,1.666666666666667,3,4,0,0,3,9,2,0,537.25,1151230.857268232,687599.6271636104,490100.8567492772,0,1690.03541159659 -15434,19050,34767,34766,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,7.303920558862733,7.668783006735585,0,12,20,58.521054619523,0,3,2,2019,9,0,35,7,1,0,0,4.28128825419607,4.28128825419607,0,0,0,0,0,1,1,0,0,0,54,54,35,40.55,8,3,4,0,0,1,9,2,0,537.25,1151230.857268232,687599.6271636104,490100.8567492772,0,1690.03541159659 -15434,19050,34768,-9,34766,34767,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.4134587532576,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,9,2,0,537.25,1151230.857268232,687599.6271636104,490100.8567492772,0,1690.03541159659 -15434,19050,34769,-9,34766,34767,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.3191128236025,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,537.25,1151230.857268232,687599.6271636104,490100.8567492772,0,1690.03541159659 -15435,19051,34770,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1018.542851741993,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,1,1,473,0,0,0,0,499.5419153833632 -15436,19052,34771,34772,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.70637865904712,8.420768181516609,0,7,-8,92.09254564638701,0,-9,-9,2019,9,0,40,40,1,1,0,12.09779201735627,12.09779201735627,0,0,0,0,0,0,0,0,0,0,53,54,59.68,44,8,1,1,0,0,1,7,4,1,309,437707.3163975032,150636.087223825,320415.4190828934,12512.58210367079,2374.441283801434 -15436,19052,34772,34771,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.521778859612281,7.507089927165615,0,35,8,148.6759668892414,0,2,2,2019,6,1,30,32,1,1,0,7.171777539792738,7.171777539792738,0,0,0,0,0,0,0,0,0,0,59.68,44,53,54,10,1,1,0,0,9,7,4,1,309,437707.3163975032,150636.087223825,320415.4190828934,12512.58210367079,2374.441283801434 -15437,19053,34773,34774,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.696709935326606,8.647260610711472,0,24,1,-44.81507045886828,0,2,2,2019,4,0,40,39,1,0,0,17.44750439624283,17.44750439624283,0,0,0,0,0,1,1,0,0,0,50.27,56.67,55.19,54.26,10,1,1,0,0,13,6,5,1,219,294874.2011984874,126273.6732884589,290413.2038847358,251789.8906301648,4734.82814297502 -15437,19053,34774,34773,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.389034310710146,8.043562311197441,0,26,-1,-79.5933923215398,0,2,2,2019,8,0,50,49,1,0,0,9.348300602288418,9.348300602288418,0,0,0,0,0,1,1,0,6.341696447927491,0,55.19,54.26,50.27,56.67,8.333333333333334,1,1,0,0,13,6,5,1,219,294874.2011984874,126273.6732884589,290413.2038847358,251789.8906301648,4734.82814297502 -15437,19054,34775,-9,34774,34773,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1069.91351385521,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,0,6,1,1,695,0,0,0,0,0 -15438,19055,34776,34777,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.614437946341798,8.631236632591509,0,25,-8,-130.2325876227478,0,3,3,2019,14,2,37,37,1,2,0,17.83537870654632,17.83537870654632,0,0,0,0,0,0,0,0,0,0,44.19,32.8,60.54,39.98,5,1,1,0,0,9,2,5,1,775.5,707614.6684445385,500563.2475288524,222286.5893446548,0,2762.749298868539 -15438,19055,34777,34776,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.99373511458279,8.094261332468074,0,23,8,-77.68011896671693,0,3,3,2019,7,0,47,57,1,0,0,8.054177258114876,8.054177258114876,0,0,0,0,0,0,0,0,0,0,60.54,39.98,44.19,32.8,8.333333333333334,1,1,0,0,9,2,5,1,775.5,707614.6684445385,500563.2475288524,222286.5893446548,0,2762.749298868539 -15438,19056,34778,-9,34776,34777,1,1,20,0,0,0,2,2,-9,0,3,7.697958678826905,7.484241856839886,0,0,0,-969.4834474255722,0,2,2,2019,21,8,33,32,1,8,1,7.732275580848256,7.732275580848256,0,0,0,0,0,0,0,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,2,2,3,1,3298,105007.0212280841,0,0,0,391.56692738717 -15439,19057,34779,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.927295253820613,6.975069064651222,0,0,0,-961.5335947822241,0,3,3,2019,7,0,20,20,1,0,0,5.364051625768138,5.364051625768138,0,0,0,0,0,1,1,0,0,0,58.45,43.18,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,41,-25317.4143421292,0,108200.2928789414,0,918.7259517269181 -15439,19058,34780,-9,34779,-9,1,1,25,0,0,0,2,2,-9,0,4,8.417451006072989,8.538263308826767,0,0,0,-994.1166642266946,0,3,2,2019,10,0,50,0,1,1,0,9.10266422107455,9.10266422107455,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,0,491,-69938.40663162246,-79563.37818340761,0,0,1679.501567511459 -15440,19059,34781,-9,34784,34782,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.8428879279797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1152,598281.477394511,471000.4384240536,198082.3681427726,111713.1130510428,3326.496715391198 -15440,19059,34782,34784,-9,-9,1,1,54,0,2,0,1,1,-9,0,2,7.332679426254553,7.461004527237908,0,24,1,-39.34350741716767,0,2,2,2019,13,1,28,28,1,1,0,6.023300607864067,6.023300607864067,0,0,0,0,0,1,1,0,4.39606880964366,0,51.07,38.87,46.5,58.26,5,1,1,0,0,8,1,4,1,1152,598281.477394511,471000.4384240536,198082.3681427726,111713.1130510428,3326.496715391198 -15440,19059,34783,-9,34784,34782,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.5964335334633,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1152,598281.477394511,471000.4384240536,198082.3681427726,111713.1130510428,3326.496715391198 -15440,19059,34784,34782,-9,-9,1,0,53,0,2,0,1,1,-9,0,4,8.850563421839251,8.626357427081983,0,23,-1,-34.8237455202576,0,2,3,2019,8,0,40,40,1,0,0,20.70161538240874,20.70161538240874,0,0,0,0,0,1,1,0,3.728070898511123,0,46.5,58.26,51.07,38.87,5,1,1,0,0,8,1,4,1,1152,598281.477394511,471000.4384240536,198082.3681427726,111713.1130510428,3326.496715391198 -15441,19060,34785,34786,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.026844765415003,7.330028003342799,43,8,21.26636170829611,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,5.699530110325916,0,2,1,1,0,8.203587143554692,6.77759189002853,60.14,38.88,57.06,57.76,10,1,1,0,0,0,2,2,1,634,637353.290748846,138026.7421757155,223763.7213184466,0,3273.145465622513 -15441,19060,34786,34785,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,3.665721051879903,3.945788160258593,43,-8,73.04604096171659,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.838471662375027,3.816239351270258,57.06,57.76,60.14,38.88,8.333333333333334,1,1,0,0,5,2,2,1,634,637353.290748846,138026.7421757155,223763.7213184466,0,3273.145465622513 -15441,19061,34787,-9,34786,34785,1,0,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1022.523264360666,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,1,0,0,2,1,1,1655,55756.20785315752,11856.16737723096,178524.047596044,124464.8148116466,933.816665256609 -15442,19062,34788,34789,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.459050531798489,8.169239275036322,0,28,-7,-43.58659670781817,0,2,2,2019,6,0,47,46,1,0,0,10.07580607794208,10.07580607794208,0,0,0,0,0,0,0,0,0,0,62.11,28.51,57.17,37.2,6.666666666666667,2,3,0,0,8,9,5,1,391,519534.7274147153,283209.3121247626,264450.2169458862,94069.55222305396,3143.218323436022 -15442,19062,34789,34788,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.201391716646706,8.221138597841623,0,28,7,19.21041576694149,0,2,2,2019,6,1,49,38,1,1,0,9.511454606398873,9.511454606398873,0,0,0,0,0,0,0,0,0,0,57.17,37.2,62.11,28.51,8.333333333333334,2,3,0,0,7,9,5,1,391,519534.7274147153,283209.3121247626,264450.2169458862,94069.55222305396,3143.218323436022 -15442,19063,34790,-9,34788,34789,1,1,24,0,0,0,1,1,1,0,3,0,0,0,0,0,-980.7682114370273,-9,3,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,35.45,59.87,-9,-9,3.333333333333333,2,3,1,0,0,9,1,1,4357,76477.48088217434,0,0,0,0 -15443,19064,34791,34792,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,8,-1,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.61,41.07,51,46,6.666666666666667,1,1,0,0,3,13,2,0,643.5,210565.1732082204,0,90650.87362600528,0,1615.021656495975 -15443,19064,34792,34791,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,1,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,48.61,41.07,7,1,1,0,0,0,13,2,0,643.5,210565.1732082204,0,90650.87362600528,0,1615.021656495975 -15444,19065,34793,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,1,0,5.01724918590739,5.010270711390342,0,0,-977.4403233347258,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,2.110316909872835,0,23.38842612873536,0,1,1,0,1.55510934986047,4.902186135327205,28.87,23.73,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,398,566684.7466636859,169205.3768983216,484795.4761599696,0,765.6263778255724 -15445,19066,34794,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.059814519541371,8.364170861598929,0,0,0,-1054.450352894077,-9,2,2,2019,8,1,39,0,1,1,0,9.240020980541169,9.240020980541169,0,0,0,0,0,0,0,0,3.78380632169208,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,615,118482.1980557944,3506.319543954309,0,0,771.9348955000314 -15446,19067,34795,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-911.7174038035974,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.29,19.42,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,607,-24503.86044862822,0,0,0,1617.549657033915 -15447,19068,34796,34797,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,8.650299499114752,8.86362889902782,0,7,8,61.0705033154261,0,3,2,2019,10,0,25,30,1,1,0,30.75114262159217,30.75114262159217,0,0,0,0,0,1,1,0,0,0,53,47,57.16,56.15,7,1,1,0,0,9,10,5,0,281,1452368.103562709,655602.692381523,433198.3110343784,78724.21769691273,4462.202054613643 -15447,19068,34797,34796,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.069720748280348,7.021234124840394,0,7,-8,-28.05204940213181,0,2,1,2019,6,0,30,15,1,0,0,5.42755605118484,5.42755605118484,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,47,8.333333333333334,1,1,0,0,9,10,5,0,281,1452368.103562709,655602.692381523,433198.3110343784,78724.21769691273,4462.202054613643 -15448,19069,34798,-9,34801,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.030266066462,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,471.75,144353.1884185398,102374.9526385113,152605.6329962568,105342.5177797808,2886.271751450029 -15448,19069,34799,-9,34801,-9,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-982.2345478506154,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,3,1,471.75,144353.1884185398,102374.9526385113,152605.6329962568,105342.5177797808,2886.271751450029 -15448,19069,34800,-9,34801,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-890.4728561541556,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,471.75,144353.1884185398,102374.9526385113,152605.6329962568,105342.5177797808,2886.271751450029 -15448,19069,34801,-9,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.603184269999241,7.901215482046995,6.840666081445177,0,0,-1099.218116354067,0,2,2,2019,13,1,20,22,1,1,0,10.8516642521511,10.8516642521511,0,0,0,0,0,1,1,0,7.717080148907545,0,39.48,58.88,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,471.75,144353.1884185398,102374.9526385113,152605.6329962568,105342.5177797808,2886.271751450029 -15449,19070,34802,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.085502594557797,8.10907655026775,2.315712681504374,0,0,-1135.518770077342,0,3,3,2019,15,4,39,39,1,4,0,8.289007211239985,8.289007211239985,0,0,0,0,0,0,0,0,2.834438985809395,2.42299003680244,45.65,57.42,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1822,85713.23274517704,212277.011281809,0,0,1029.957634078699 -15449,19071,34803,-9,-9,34802,1,1,29,0,0,0,2,2,-9,0,3,7.674188488382686,7.812899597460751,0,0,0,-1008.062971732316,0,-9,3,2019,6,0,39,39,1,0,1,7.516852096584515,7.516852096584515,0,0,0,0,0,0,0,0,0,0,44.53,54.03,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,516,8114.158566403938,28442.39423129935,0,0,1277.315431329543 -15450,19072,34804,34805,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.079208974001599,8.207414183673489,0,8,0,122.6251108086038,0,-9,-9,2019,10,0,45,45,1,0,0,8.432155943703536,8.432155943703536,0,0,0,0,0,0,0,0,0,0,43.47,50.15,40.52,37.12,6.666666666666667,1,1,0,0,10,12,4,1,637,213742.5913274052,182488.6761657597,102397.0245003017,5929.895850898424,2220.87182091539 -15450,19072,34805,34804,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.788150127543183,7.79176765359207,0,8,0,72.12555616118989,0,3,-9,2019,14,3,30,30,1,3,0,7.392913629774088,7.392913629774088,0,0,0,0,0,0,0,0,0,0,40.52,37.12,43.47,50.15,5,1,1,0,0,9,12,4,1,637,213742.5913274052,182488.6761657597,102397.0245003017,5929.895850898424,2220.87182091539 -15450,19073,34806,-9,-9,34804,1,1,20,0,0,0,2,2,-9,0,3,7.789794160083755,8.318806041456082,0,0,0,-942.4013556180196,-9,-9,2,2019,7,2,40,0,1,2,1,7.249500831507239,7.249500831507239,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,10,1,1,0,0,3,12,4,1,1436,45813.3414148436,-81880.03002478836,0,0,1548.077678211529 -15451,19074,34807,-9,34809,34808,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-947.802671069771,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34808,34809,-9,-9,1,1,38,1,5,0,2,2,-9,0,2,0,0,0,10,-2,0,0,2,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.6,49.35,49.36,58.53,6.666666666666667,1,1,1,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34809,34808,-9,-9,1,0,40,1,5,0,3,3,-9,1,5,0,0,0,10,2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,22.6,49.35,8.333333333333334,1,1,0,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34810,-9,34809,34808,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-984.2525575416224,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34811,-9,34809,34808,1,1,13,1,5,1,3,0,-9,0,4,0,0,0,0,0,-999.7763679253167,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34812,-9,34809,34808,1,1,11,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1125.680438583393,-9,3,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19074,34813,-9,34809,34808,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-929.0437564607894,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,1,0,995.4285714285714,61291.28900399415,0,0,0,2462.176312602928 -15451,19075,34814,-9,34809,-9,1,0,18,1,5,1,2,0,0,0,3,0,0,0,0,0,-1030.82407731655,-9,3,-9,2019,14,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,6.666666666666667,1,1,0,0,2,2,1,0,1825,140727.298418816,0,0,0,0 -15452,19076,34815,34816,-9,34818,1,0,42,0,1,0,2,2,-9,1,2,0,0,0,16,1,-24.50388700753189,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.79,33.24,48.87,58.55,6.666666666666667,1,1,0,0,2,2,4,1,999.6666666666666,695490.6071276453,460632.4718948891,198474.2456303898,4754.310472015619,2524.226878878473 -15452,19076,34816,34815,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.166715188396212,8.752968704593396,0,7,-1,57.90895166546085,0,-9,-9,2019,8,0,42,45,1,0,0,16.78557348902236,16.78557348902236,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.79,33.24,6.666666666666667,1,1,0,0,11,2,4,1,999.6666666666666,695490.6071276453,460632.4718948891,198474.2456303898,4754.310472015619,2524.226878878473 -15452,19076,34817,-9,34815,34816,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.746648102294,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,999.6666666666666,695490.6071276453,460632.4718948891,198474.2456303898,4754.310472015619,2524.226878878473 -15452,19077,34818,-9,-9,-9,1,1,67,0,1,0,1,1,-9,0,1,0,8.540693902216612,8.129909728217806,0,0,-1000.784549346942,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,13.38844938382137,0,0,1,1,0,0,8.459906385801768,41.38,13.69,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,142,647971.8093180634,596598.8590789257,220383.0693777335,0,3493.191589066763 -15453,19078,34819,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.916426144129417,7.543524959201155,0,0,0,-1093.418644698848,0,2,1,2019,17,5,43,48,1,5,0,6.055663846970102,6.055663846970102,0,0,0,0,0,0,0,0,0,0,44.02,49.99,-9,-9,3.333333333333333,1,1,0,0,6,12,3,0,1090,-213219.63885046,0,0,0,434.9924483936128 -15454,19079,34820,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,3,0,7.150926898783324,7.159382206332962,0,0,-1016.581139927728,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,3.748555295737479,0,22.73128607468568,0,1,1,0,0,6.953861925490486,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,226,535264.2466502069,158056.4000834453,158056.070559699,41881.43663810474,809.7876844769685 -15455,19080,34821,34822,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.356406936279824,7.822655812418454,58,5,40.53196034423549,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.181567888788017,7.61326599365217,48.89,38.67,46.85,27.3,6.666666666666667,1,1,0,0,0,7,3,1,887,809336.9431384907,88462.00037204273,499784.2283165338,0,3292.111420494852 -15455,19080,34822,34821,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.73128188928207,6.417728564232339,58,-5,56.49233444164712,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,8.889947855512212,0,0,1,1,0,3.884773223364165,6.580752866898245,46.85,27.3,48.89,38.67,5,1,1,0,0,0,7,3,1,887,809336.9431384907,88462.00037204273,499784.2283165338,0,3292.111420494852 -15456,19081,34823,-9,34825,34824,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.3397389895053,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,476,109695.9928703704,-32040.82469325775,146309.4374553159,108116.433354929,1814.649590216563 -15456,19081,34824,34825,-9,-9,1,1,22,1,1,0,2,2,-9,0,3,8.108454071182235,7.957896029720278,0,2,1,-117.6559860220069,0,-9,-9,2019,10,1,55,50,1,1,0,6.931166678454285,6.931166678454285,0,0,0,0,0,1,1,0,0,0,49.58,55.59,43.54,59.6,8.333333333333334,1,1,0,0,3,9,3,0,476,109695.9928703704,-32040.82469325775,146309.4374553159,108116.433354929,1814.649590216563 -15456,19081,34825,34824,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.882023278441483,6.397856806246936,0,2,-1,18.72743803107288,0,-9,-9,2019,11,0,22,30,1,0,0,4.218322779287224,4.218322779287224,0,0,0,0,0,1,1,0,0,0,43.54,59.6,49.58,55.59,8.333333333333334,1,1,0,0,5,9,3,0,476,109695.9928703704,-32040.82469325775,146309.4374553159,108116.433354929,1814.649590216563 -15457,19082,34826,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.425896527803,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,6,1,1,583,-180630.8449469745,0,0,0,1610.753500813385 -15457,19083,34827,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.210208708550278,8.563931320486324,0,0,0,-1014.960013281035,0,2,1,2019,6,0,95,52,1,0,0,4.211015285517451,4.211015285517451,0,0,0,0,0,1,1,0,.164715985495256,0,43.44,61.22,-9,-9,10,1,1,0,0,8,6,4,1,327,-15278.93708353992,-110322.5697568159,0,0,1629.779077607238 -15458,19084,34828,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,5,0,0,0,0,0,-936.0460506311983,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.447606463035995,0,54.1,59.11,-9,-9,10,1,1,0,0,0,4,1,1,256,-252736.9326482911,0,0,0,-384.7453053231412 -15459,19085,34829,34830,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.303511822850986,8.336304733240416,0,5,-17,-76.55462021838169,0,2,3,2019,13,3,55,60,1,3,0,9.05820910745582,9.05820910745582,0,0,0,0,0,0,0,0,0,0,45.15,57.46,42.75,61.95,10,1,1,0,0,8,7,4,0,1457,941694.5636391159,451002.4802053324,398985.4096838621,69207.47461419174,2150.321737079573 -15459,19085,34830,34829,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,7.008547638034888,6.885942902292848,0,5,17,-145.906055314943,0,-9,-9,2019,17,7,10,15,1,7,0,10.85539843283243,10.85539843283243,0,0,0,0,0,0,0,0,0,0,42.75,61.95,45.15,57.46,1.666666666666667,1,1,0,0,4,7,4,0,1457,941694.5636391159,451002.4802053324,398985.4096838621,69207.47461419174,2150.321737079573 -15460,19086,34831,34832,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,4.285694765707268,4.725302903722257,46,3,42.9056892155039,0,2,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.812943366856183,4.594874036341887,47.31,50.2,57.16,56.15,5,1,1,0,0,9,4,4,1,2713,1924877.377328512,951432.6450155978,321546.0785538936,0,3540.374706034701 -15460,19086,34832,34831,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.454780040041026,8.431237307092186,8,-3,6.102393775625696,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.839332775859839,8.527683373293289,57.16,56.15,47.31,50.2,8.333333333333334,1,1,0,0,0,4,4,1,2713,1924877.377328512,951432.6450155978,321546.0785538936,0,3540.374706034701 -15461,19087,34833,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,5.088607433734214,4.953215222159168,0,0,-862.3895295882207,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.203871478500999,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,357,265192.4753730369,236198.1122006926,271279.7755003533,0,772.6923620905817 -15462,19088,34834,-9,34836,34837,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.3959964707095,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,442,551850.7708629961,135876.3093815413,273485.2730547399,0,3635.149072556263 -15462,19088,34835,-9,34836,34837,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.612221175523,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,442,551850.7708629961,135876.3093815413,273485.2730547399,0,3635.149072556263 -15462,19088,34836,34837,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.445181439561296,8.651335270707255,0,18,-1,70.71586476743312,0,3,2,2019,8,0,24,28,1,0,0,28.76882451456351,28.76882451456351,0,0,0,0,0,1,1,0,0,0,55.37,40.83,48.87,58.55,8.333333333333334,1,1,0,0,9,2,4,1,442,551850.7708629961,135876.3093815413,273485.2730547399,0,3635.149072556263 -15462,19088,34837,34836,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.215614240437658,8.353181407612132,0,18,1,-133.2182522561351,0,1,2,2019,8,0,39,39,1,0,0,11.99124141432345,11.99124141432345,0,0,0,0,0,1,1,0,5.697656606974587,0,48.87,58.55,55.37,40.83,8.333333333333334,1,1,0,0,8,2,4,1,442,551850.7708629961,135876.3093815413,273485.2730547399,0,3635.149072556263 -15463,19089,34838,34842,-9,-9,1,0,30,1,4,0,2,2,-9,0,3,0,0,0,5,0,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,36.28,39.51,44.18,5,1,1,1,0,1,1,1,0,835.4,-72008.25937595192,0,0,0,1988.054065361718 -15463,19089,34839,-9,34838,34842,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-967.3954414719954,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,835.4,-72008.25937595192,0,0,0,1988.054065361718 -15463,19089,34840,-9,34838,34842,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-999.738765002994,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,835.4,-72008.25937595192,0,0,0,1988.054065361718 -15463,19089,34841,-9,34838,34842,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.43103983267,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,1,0,835.4,-72008.25937595192,0,0,0,1988.054065361718 -15463,19089,34842,34838,-9,-9,1,1,30,1,4,0,2,2,-9,0,4,0,0,0,5,0,0,0,2,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,39.51,44.18,38.34,36.28,6.666666666666667,1,1,1,0,1,1,1,0,835.4,-72008.25937595192,0,0,0,1988.054065361718 -15464,19090,34843,-9,34844,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-964.5309795025016,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,3,1,243.5,183839.7589798514,17779.11873398567,151351.5084317874,94614.64814684572,1841.748178060524 -15464,19090,34844,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,2,7.712826026294982,7.71212306096412,0,0,0,-917.440699983818,0,3,3,2019,9,1,18,18,1,1,0,16.16826879917568,16.16826879917568,0,0,0,0,0,1,1,0,0,0,54.6,35.9,-9,-9,8.333333333333334,2,3,0,0,12,6,3,1,243.5,183839.7589798514,17779.11873398567,151351.5084317874,94614.64814684572,1841.748178060524 -15464,19091,34845,-9,34844,-9,1,0,21,0,1,1,1,0,-9,0,3,0,0,0,0,0,-977.3458560379279,-9,3,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.73,43.04,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,927,-134719.2628077072,0,0,0,0 -15464,19092,34846,-9,34844,-9,1,1,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-930.8862030652908,-9,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,6,1,1,428,-211879.6051527382,0,0,0,0 -15465,19093,34847,34848,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.823962479503308,6.988202079580626,55,-3,49.3961194664839,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.626686121647017,7.017393002825236,33.91,54.77,53,46,6.666666666666667,1,1,0,0,11,4,2,1,427.5,514269.2315573597,162847.1597966642,236331.0829944115,0,2115.021391702528 -15465,19093,34848,34847,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.636369836714785,6.631121881039767,55,3,-27.89185142485527,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.229380612566437,53,46,33.91,54.77,8,1,1,0,0,0,4,2,1,427.5,514269.2315573597,162847.1597966642,236331.0829944115,0,2115.021391702528 -15466,19094,34849,34850,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,8.009858381952059,8.186129165695549,7,6,54.73626344657205,0,2,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.447497106442078,8.038523358869298,49.44,54.26,49.05,54.24,8.333333333333334,1,1,0,0,6,7,4,1,1936.5,84154.99978745106,90073.17609433705,0,0,2977.057384037178 -15466,19094,34850,34849,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,7.915838006020458,7.728985834958467,7,-6,-53.14726034569194,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.133052567973879,7.82220972196789,49.05,54.24,49.44,54.26,8.333333333333334,3,4,0,0,6,7,4,1,1936.5,84154.99978745106,90073.17609433705,0,0,2977.057384037178 -15466,19095,34851,-9,34850,34849,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-927.3931900253274,1,3,1,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.99,62.58,-9,-9,10,1,1,0,0,4,7,1,1,510,107983.4988379493,0,0,0,1782.333714659065 -15467,19096,34852,34855,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.385902304862132,8.341656158157365,0,9,-2,-42.47773946677368,0,2,3,2019,10,1,28,30,1,1,0,18.1472702372336,18.1472702372336,0,0,0,0,0,1,1,0,0,0,45.12,58.81,58.7,46.46,8.333333333333334,1,1,0,0,7,6,4,1,997,198548.2326851377,7391.408171058932,123366.9861310034,80216.79226735976,3047.170788451786 -15467,19096,34853,-9,34852,34855,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.0962509291469,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,997,198548.2326851377,7391.408171058932,123366.9861310034,80216.79226735976,3047.170788451786 -15467,19096,34854,-9,34852,34855,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.359526932813,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,997,198548.2326851377,7391.408171058932,123366.9861310034,80216.79226735976,3047.170788451786 -15467,19096,34855,34852,-9,-9,1,1,38,1,2,0,1,1,-9,0,2,8.29988545597309,8.503375118783614,0,9,2,-49.46657799880615,0,2,2,2019,8,0,46,53,1,0,0,10.21801262714229,10.21801262714229,0,0,0,0,0,1,1,0,0,0,58.7,46.46,45.12,58.81,8.333333333333334,1,1,0,0,10,6,4,1,997,198548.2326851377,7391.408171058932,123366.9861310034,80216.79226735976,3047.170788451786 -15468,19097,34856,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.282606119564384,6.504998764448875,0,0,-1027.318670278533,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.607653104118819,6.621563005147551,70.37,24.31,-9,-9,10,1,1,0,0,0,10,2,1,564,56174.45712441469,136291.9392360478,0,0,1376.109940386624 -15469,19098,34857,-9,34858,34859,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1067.88191275207,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,4,1,1142.666666666667,266507.1989511867,230650.5790508554,54652.32319653741,63194.50074084872,3698.001495153757 -15469,19098,34858,34859,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.363400785759055,8.508040266935453,0,8,1,-112.0725171989137,0,3,3,2019,17,6,42,35,1,6,0,11.38851825934419,11.38851825934419,0,0,0,0,0,1,1,0,3.552867624169256,0,47.9,40.01,61.12,51.57,6.666666666666667,1,1,0,0,8,10,4,1,1142.666666666667,266507.1989511867,230650.5790508554,54652.32319653741,63194.50074084872,3698.001495153757 -15469,19098,34859,34858,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.529053910743817,8.662425089324124,0,8,-1,111.2667018170633,0,2,1,2019,7,0,38,37,1,0,0,18.00145532248828,18.00145532248828,0,0,0,0,0,1,1,0,0,0,61.12,51.57,47.9,40.01,8.333333333333334,1,1,0,0,9,10,4,1,1142.666666666667,266507.1989511867,230650.5790508554,54652.32319653741,63194.50074084872,3698.001495153757 -15469,19099,34860,-9,34858,34859,1,1,27,0,1,0,2,2,-9,0,5,7.900400474702592,8.210521808073024,0,0,0,-998.6585952586564,-9,2,2,2019,4,0,38,0,1,0,1,10.04895193741025,10.04895193741025,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,222,42003.52147798867,11179.68748792486,0,0,1328.667839944091 -15470,19100,34861,34862,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.084838081965287,7.923222358844332,0,20,1,90.12751273028388,0,3,2,2019,7,0,19,2,1,0,0,15.86290587197016,15.86290587197016,0,0,0,0,7,0,0,0,6.934415977857421,0,44.72,52.79,46.89,54.32,3.333333333333333,1,1,0,0,9,9,3,1,634.5,184.0059331165103,-89034.84804589051,0,0,1639.24967386293 -15470,19100,34862,34861,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,20,-1,11.35368829374742,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,54.32,44.72,52.79,6.666666666666667,1,1,0,0,5,9,3,1,634.5,184.0059331165103,-89034.84804589051,0,0,1639.24967386293 -15471,19101,34863,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.741853770879088,7.068370738296007,0,0,-1102.146785272372,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.009906157484633,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,4972,380890.7621851747,2670.792382747364,222929.8582740342,0,513.5311227243874 -15472,19102,34864,34865,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.051191393648596,7.999671905450763,0,35,-1,48.18898152284599,0,3,3,2019,9,2,49,37,1,2,0,8.743005462059683,8.743005462059683,0,0,0,.3566804284573131,2,0,0,0,.1159110197163652,0,51.24,58.84,57.06,57.76,10,1,1,0,0,11,2,5,1,483,353657.4469676026,163108.0972103082,140755.7667728408,0,3660.781305236652 -15472,19102,34865,34864,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,7.706393306553755,8.285947181029629,7.724943044272389,35,1,144.6188857376535,0,2,1,2019,8,0,30,32,1,0,0,7.218788773481317,7.218788773481317,0,0,0,0,2,0,0,0,0,8.006659087685147,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,483,353657.4469676026,163108.0972103082,140755.7667728408,0,3660.781305236652 -15472,19103,34866,-9,34864,34865,1,1,20,0,0,0,2,2,-9,0,5,7.655191661973543,7.411404938915042,0,0,0,-1023.979930533361,0,3,1,2019,8,0,35,39,1,0,1,5.80626506273537,5.80626506273537,0,0,0,0,0,0,0,0,2.208202556862671,0,60.02,56.42,-9,-9,10,1,1,0,0,2,2,3,1,481,3273.687875735573,-44836.05859740204,0,0,804.6367940378032 -15473,19104,34867,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.29771395864795,9.46657128459359,0,0,0,-1083.303468585996,0,3,2,2019,11,0,50,60,1,0,0,30.91992156763029,30.91992156763029,0,0,0,0,0,0,0,0,6.89649268677475,0,60.54,42.61,-9,-9,8.333333333333334,2,3,0,0,9,9,5,1,1529,2629324.318614229,1587556.628189338,645951.2415697331,20715.31311806288,4223.087763883909 -15474,19105,34868,34869,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,18,-1,-118.073840729839,0,2,-9,2019,25,7,0,40,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,14.37,55.75,50.3,1.666666666666667,1,1,0,0,8,13,5,1,278.5,74123.50485947527,-112259.8146042718,327519.5683271611,181219.1546600815,4045.899894855954 -15474,19105,34869,34868,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.118531338433458,8.890585748674102,6.106613331959965,21,1,-51.55133522788005,0,3,3,2019,6,0,48,37,1,0,0,22.09184754245308,22.09184754245308,0,0,0,0,0,1,1,0,6.581797284858131,6.078879476615563,55.75,50.3,48.11,14.37,8.333333333333334,1,1,0,0,9,13,5,1,278.5,74123.50485947527,-112259.8146042718,327519.5683271611,181219.1546600815,4045.899894855954 -15475,19106,34870,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-972.4276124537701,-9,2,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.126878928610686,0,62.39,56.71,-9,-9,10,1,1,1,0,8,10,1,1,764,9884.02520591324,0,0,0,189.7271022000928 -15476,19107,34871,34872,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.220533483526003,8.235370274775057,48,5,-4.331827882869418,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.16724368974872,7.85734567266484,56.69,53.6,51.87,47.64,10,2,3,0,0,1,8,4,1,686,1116330.55929355,543590.3709542835,465296.235102607,0,20395.16607012715 -15476,19107,34872,34871,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.495969659174763,7.56624663687013,48,-5,-1.524543865865061,0,3,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.647055714093058,51.87,47.64,56.69,53.6,8.333333333333334,2,3,0,0,0,8,4,1,686,1116330.55929355,543590.3709542835,465296.235102607,0,20395.16607012715 -15477,19108,34873,-9,34875,34876,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.104436953913,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,414.5,-1501.049683974303,43439.91292415375,0,0,1815.445590047942 -15477,19108,34874,-9,34875,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.14618154205,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.5429385879190818,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,414.5,-1501.049683974303,43439.91292415375,0,0,1815.445590047942 -15477,19108,34875,34876,-9,-9,1,0,27,0,2,0,3,3,-9,0,1,0,0,0,4,-10,-7.029641287689803,0,3,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,17.93,28.72,56.74,55.09,8.333333333333334,1,1,0,0,0,13,2,0,414.5,-1501.049683974303,43439.91292415375,0,0,1815.445590047942 -15477,19108,34876,34875,-9,-9,1,1,37,0,2,0,3,3,-9,0,3,6.432755525073757,6.96385336628481,0,4,10,-18.47680644263708,0,-9,-9,2019,6,0,15,0,1,0,0,5.558643085421004,5.558643085421004,0,0,0,0,0,1,1,0,0,0,56.74,55.09,17.93,28.72,8.333333333333334,1,1,0,0,1,13,2,0,414.5,-1501.049683974303,43439.91292415375,0,0,1815.445590047942 -15478,19109,34877,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.863211489713534,7.735183567540616,0,0,0,-1056.870902987012,0,3,3,2019,7,0,22,22,1,0,0,12.39426843625837,12.39426843625837,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,1376,-176589.6931046641,-256.5814340381403,0,0,734.4233128843227 -15478,19110,34878,-9,34877,-9,1,1,19,0,0,0,2,2,-9,0,4,7.644336125867961,7.457256689986666,0,0,0,-1040.365081228092,0,2,-9,2019,7,0,40,37,1,0,1,4.522986507880296,4.522986507880296,0,0,0,0,0,0,0,0,1.48562672568134,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,2,11,3,0,354,46379.55705637523,60221.3343321037,0,0,474.898793566079 -15479,19111,34879,34881,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,7.200746314669845,7.209170885350873,0,8,0,17.7778250960506,0,-9,3,2019,24,11,45,50,1,11,0,2.805068135269287,2.805068135269287,0,0,0,0,0,1,1,0,8.783355729820713,0,50.11,46.17,55.93,49.95,5,1,1,0,0,10,9,3,1,894,40011.79366180748,-3760.051848971673,270829.6885849049,168299.3809512764,4080.649746823261 -15479,19111,34880,-9,34881,34879,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1020.086507405087,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,9,3,1,894,40011.79366180748,-3760.051848971673,270829.6885849049,168299.3809512764,4080.649746823261 -15479,19111,34881,34879,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.84673580647319,8.07303081681914,0,8,0,105.8880586905083,0,2,3,2019,9,0,50,24,1,0,0,6.769098690943841,6.769098690943841,0,0,0,0,0,1,1,0,0,0,55.93,49.95,50.11,46.17,10,1,1,0,0,7,9,3,1,894,40011.79366180748,-3760.051848971673,270829.6885849049,168299.3809512764,4080.649746823261 -15480,19112,34882,34883,34884,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.445151894118,7.644653359124034,43,0,47.10879276777524,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.725246202945485,7.730561111071716,54.77,55.87,54.2,57.49,8.333333333333334,1,1,0,0,3,4,4,1,1362,1246079.70831327,773355.6928906464,464544.2843199426,0,3199.462026266571 -15480,19112,34883,34882,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.14014446948149,8.08066803378083,43,0,-66.92788923782105,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.755065240030753,8.33374592393384,54.2,57.49,54.77,55.87,8.333333333333334,1,1,0,0,3,4,4,1,1362,1246079.70831327,773355.6928906464,464544.2843199426,0,3199.462026266571 -15480,19113,34884,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,8.477055669243866,8.409623025934319,0,0,-980.5947227288467,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.013527975288602,8.458710662882138,55,43,-9,-9,8,1,1,0,0,0,4,4,1,1073,402096.0741542483,342790.0039046013,216562.6689749709,0,2305.612147609175 -15481,19114,34885,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1032.218988391669,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,10.87942034589428,0,47.48,58,-9,-9,8.333333333333334,1,1,0,0,9,2,1,1,2260,0,0,0,0,10661.80912224245 -15482,19115,34886,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.150121925329929,8.197211689340142,0,0,0,-1165.456401594278,-9,3,2,2019,6,0,64,0,1,0,0,5.576708399433506,5.576708399433506,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,642,-61870.93113601652,-21599.46870989296,0,0,1209.30200216689 -15483,19116,34887,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,4.993014400382592,4.786542762638615,0,0,-1073.485381315281,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.864844278625949,61.61,37.79,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,574,69236.35775948074,0,163203.9966052778,0,40.70171726216461 -15484,19117,34888,-9,-9,-9,1,1,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-917.2101519906483,0,-9,-9,2019,24,9,0,45,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,31.88,-9,-9,1.666666666666667,3,4,0,1,4,8,1,1,180,81554.08522983747,-126926.8129296592,203082.9389121234,57469.09361183952,47.73328452572486 -15485,19118,34889,34890,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,7.491342341073786,7.548247394968909,5.620566907200299,43,7,-67.77040775765344,0,2,3,2019,7,0,45,45,1,0,0,4.694054903493594,4.694054903493594,1,0,0,0,2,1,1,0,0,5.707241523263492,57.33,53.46,42.96,27.81,8.333333333333334,1,1,0,0,11,9,3,1,1002.5,607731.1720760147,298133.1244279598,486176.8884515719,0,1211.576214766138 -15485,19118,34890,34889,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,9,-7,-42.30743992189766,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.96,27.81,57.33,53.46,3.333333333333333,1,1,0,0,0,9,3,1,1002.5,607731.1720760147,298133.1244279598,486176.8884515719,0,1211.576214766138 -15486,19119,34891,34892,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,8.028045274274691,7.728979580978289,6,0,-21.71291077804646,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.51496521037158,7.962647002233693,59.46,46.99,50.82,57.78,8.333333333333334,1,1,0,0,0,2,3,1,1535,1480757.440475215,954514.4089635159,221652.0723162073,0,2542.825660851509 -15486,19119,34892,34891,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,5.149959317126498,4.971883876906302,6,0,-91.33661003065154,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.103556148777637,5.413091495747448,50.82,57.78,59.46,46.99,8.333333333333334,1,1,0,0,6,2,3,1,1535,1480757.440475215,954514.4089635159,221652.0723162073,0,2542.825660851509 -15487,19120,34893,34894,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.401801490070778,7.518598661459722,49,2,-30.87651487127854,-9,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.531820716647083,7.336015654879812,53,46,51,46,7,3,4,0,0,0,7,3,1,772,1279223.98915445,546240.6101311572,393231.3384932058,0,3937.556571437421 -15487,19120,34894,34893,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.731628693512627,7.625408730063291,9,-2,-37.49656176293274,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.535181171305871,51,46,53,46,7,3,4,0,0,0,7,3,1,772,1279223.98915445,546240.6101311572,393231.3384932058,0,3937.556571437421 -15488,19121,34895,34896,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-138.5674133213537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.74,43.82,52,48,8.333333333333334,1,1,0,0,0,13,2,1,337.5,840950.8901457815,219757.6766095241,319962.5392567441,0,1439.724971635847 -15488,19121,34896,34895,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.091400412604075,6.815257158170214,0,7,3,-87.26343033781519,0,3,-9,2019,10,0,72,84,1,1,0,1.928788538153748,1.928788538153748,0,0,0,0,0,0,0,0,6.821097123701876,0,52,48,57.74,43.82,7,1,1,0,0,1,13,2,1,337.5,840950.8901457815,219757.6766095241,319962.5392567441,0,1439.724971635847 -15489,19122,34897,-9,34898,34899,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.657076892134,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.6,-9,-9,8.333333333333334,3,4,0,0,1,8,4,0,578.3333333333334,259898.6776352748,187206.4276534311,0,0,2842.45986321892 -15489,19122,34898,34899,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.385477784857017,8.310184218193728,0,22,0,-83.71730349540343,0,3,3,2019,8,0,39,37,1,0,0,18.41210893728136,18.41210893728136,0,0,0,0,0,1,1,0,0,0,46.95,51.49,46.07,50.63,1.666666666666667,3,4,0,1,8,8,4,0,578.3333333333334,259898.6776352748,187206.4276534311,0,0,2842.45986321892 -15489,19122,34899,34898,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.832549847526427,7.970564490700692,0,24,0,-27.91151804981054,0,2,2,2019,14,4,20,20,1,4,0,11.15121817395007,11.15121817395007,0,0,0,0,7,1,1,0,0,0,46.07,50.63,46.95,51.49,5,3,4,0,1,7,8,4,0,578.3333333333334,259898.6776352748,187206.4276534311,0,0,2842.45986321892 -15490,19123,34900,34901,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,9.1600260561766,8.877194896862449,0,2,-4,81.20643521608682,0,1,2,2019,12,0,38,38,1,0,0,24.70316537692216,24.70316537692216,0,0,0,0,0,0,0,0,0,0,42.06,57.69,48,56,6.666666666666667,1,1,0,0,6,4,5,1,520.5,-18208.51117502336,4191.694298547623,0,0,4197.83427278926 -15490,19123,34901,34900,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.043914277319949,8.159630182266453,0,2,4,-39.58742614354068,0,-9,-9,2019,11,0,16,16,1,2,0,22.09724377953716,22.09724377953716,0,0,0,0,0,0,0,0,.037416280902162,0,48,56,42.06,57.69,7,1,1,0,0,1,4,5,1,520.5,-18208.51117502336,4191.694298547623,0,0,4197.83427278926 -15491,19124,34902,34903,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.738995316011177,7.741582595540286,37,14,-49.82386759944747,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.708433563688756,40.04,49.39,50.03,52.62,8.333333333333334,1,1,0,0,8,12,3,1,343.5,968831.1347808915,671696.1212406609,410453.6469560182,0,2385.062491614917 -15491,19124,34903,34902,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.144139586386114,6.972748877764024,10,-14,-161.8550185722938,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.995212848485158,50.03,52.62,40.04,49.39,5,4,2,0,0,8,12,3,1,343.5,968831.1347808915,671696.1212406609,410453.6469560182,0,2385.062491614917 -15492,19125,34904,34905,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,42,-2,-66.07459421851632,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.111716437080096,0,52,45,55,45,8,1,1,0,0,0,8,2,1,474,784155.5257780096,271027.8551790115,612579.0862478493,0,1447.106464395193 -15492,19125,34905,34904,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.06436870758864,5.949832833022496,42,2,118.2730043818469,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,5.683406910244184,55,45,52,45,8,1,1,0,0,0,8,2,1,474,784155.5257780096,271027.8551790115,612579.0862478493,0,1447.106464395193 -15492,19126,34906,-9,34904,34905,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-930.9996556943966,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,1,1,0,0,0,8,1,1,815,40587.30502337145,0,0,0,1653.549499208584 -15493,19127,34907,34908,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,45,6,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,.9718546299551427,122.9443514528539,25.71979618451634,0,1,1,0,0,0,51,46,51.65,39.74,7,1,1,0,0,0,13,1,1,672.5,369930.5875365278,31267.31992916588,354253.8277051557,0,1299.921655229633 -15493,19127,34908,34907,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,45,-6,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,51.65,39.74,51,46,6.666666666666667,1,1,0,0,5,13,1,1,672.5,369930.5875365278,31267.31992916588,354253.8277051557,0,1299.921655229633 -15494,19128,34909,-9,34911,34910,1,1,20,0,0,0,2,2,-9,0,4,8.660371627386196,8.342824057180193,0,0,0,-1036.472065377147,0,2,2,2019,9,1,104,84,1,1,1,6.941278865232549,6.941278865232549,0,0,0,0,14.5,0,0,0,3.102217345581055,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,4,5,1,803,122554.9674492495,-37412.06705332863,0,0,1998.095562510138 -15494,19129,34910,34911,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.857167058412189,8.767122348996269,0,3,3,10.75814529713918,0,-9,-9,2019,8,0,47,60,1,0,0,16.11348363406184,16.11348363406184,0,0,0,0,42,0,0,0,0,0,54.2,57.49,56.68,32.05,10,1,1,0,0,12,4,5,1,844,88921.74982751782,23618.79658251174,0,0,2401.79497417016 -15494,19129,34911,34910,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,3,-3,50.68055565947874,0,-9,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,56.68,32.05,54.2,57.49,8.333333333333334,1,1,0,0,0,4,5,1,844,88921.74982751782,23618.79658251174,0,0,2401.79497417016 -15495,19130,34912,34913,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,9.192396615215594,9.011394506689753,0,1,-1,119.1301163026574,-9,-9,-9,2019,10,0,40,0,1,1,0,24.72716371669515,24.72716371669515,0,0,0,0,0,0,0,0,0,0,50,57,59.11,24.38,7,4,1,0,0,1,11,5,0,873,232170.241052566,112767.9010980274,121664.4915989633,111838.3078694519,4532.51788723513 -15495,19130,34913,34912,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,7.733526520014053,7.995981337363889,0,1,1,24.4082171976065,0,2,-9,2019,10,0,38,40,1,0,0,6.198244084262098,6.198244084262098,0,0,0,0,0,0,0,0,0,0,59.11,24.38,50,57,5,1,1,0,0,8,11,5,0,873,232170.241052566,112767.9010980274,121664.4915989633,111838.3078694519,4532.51788723513 -15496,19131,34914,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.435806557422046,8.44680098910011,5.539692294678276,0,0,-905.2340171565896,0,1,1,2019,6,0,45,43,1,0,0,10.85999466473963,10.85999466473963,0,0,0,0,0,0,0,0,5.790659281252052,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,11,10,5,1,790,-241739.2583157262,-37144.42725290247,0,0,1841.676404644547 -15497,19132,34915,34916,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,7.618395198358929,7.826957465255918,4.02251989434738,10,-8,97.43882670582701,0,2,3,2019,15,3,28,23,1,3,0,9.48685085431142,9.48685085431142,0,0,0,0,0,1,1,0,3.43112585410037,0,29.12,59.76,41.47,56.81,6.666666666666667,1,1,0,0,6,10,3,0,1278.2,15122.00690932596,-4303.774267863087,0,0,3047.771375974554 -15497,19132,34916,34915,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.145322766626988,8.387824855245775,0,10,8,53.52092446895301,0,-9,-9,2019,11,0,38,38,1,0,0,10.53203744574997,10.53203744574997,0,0,0,0,0,1,1,0,2.258451637937646,0,41.47,56.81,29.12,59.76,8.333333333333334,1,1,0,0,13,10,3,0,1278.2,15122.00690932596,-4303.774267863087,0,0,3047.771375974554 -15497,19132,34917,-9,34915,34916,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.559183256423,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1278.2,15122.00690932596,-4303.774267863087,0,0,3047.771375974554 -15497,19132,34918,-9,34915,34916,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-911.5277345230628,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,3,0,1278.2,15122.00690932596,-4303.774267863087,0,0,3047.771375974554 -15497,19132,34919,-9,34915,34916,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.9001488755472,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,1278.2,15122.00690932596,-4303.774267863087,0,0,3047.771375974554 -15498,19133,34920,34921,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,3,22,18.47845073401393,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.841869927723559,0,52.82,30.39,57.73,51.86,8.333333333333334,1,1,0,0,1,9,3,1,367,1480196.363924659,523064.3142617727,744484.7780391388,0,2728.304932593438 -15498,19133,34921,34920,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.05021649017648,8.078391432975003,0,3,-22,75.9222171851807,-9,-9,-9,2019,9,1,50,0,1,1,0,6.791889864342721,6.791889864342721,0,0,0,0,14.5,1,1,0,0,0,57.73,51.86,52.82,30.39,8.333333333333334,2,3,0,0,2,9,3,1,367,1480196.363924659,523064.3142617727,744484.7780391388,0,2728.304932593438 -15499,19134,34922,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.499017768589797,8.520031524703489,4.149122790071904,0,0,-894.167941286346,0,2,1,2019,12,2,35,38,1,2,0,11.3065714878944,11.3065714878944,0,0,0,0,0,0,0,0,4.536521174469859,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,809,68091.68789811106,-71838.86607304776,0,0,1659.542100628975 -15500,19135,34923,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,7.929544411476129,7.84334583727267,4.113863301393073,0,0,-1013.363515645473,-9,-9,-9,2019,3,0,47,0,1,0,0,7.697756515201705,7.697756515201705,0,0,0,0,0,0,0,0,3.677526530769062,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,103,-954.3265961772049,-41160.2183176539,0,0,670.0297442276928 -15501,19136,34924,34925,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.386361749869423,8.008228473885753,0,23,12,2.61016634150537,0,-9,-9,2019,12,0,40,47,1,0,0,14.52132213689781,14.52132213689781,0,0,0,0,2,1,1,0,1.213873692434775,0,47.9,46.66,51.65,38.47,6.666666666666667,1,1,0,0,10,5,4,1,551.5,538906.9215939005,333222.9158715423,84730.42375391224,43674.49578663729,1723.732897572319 -15501,19136,34925,34924,-9,-9,1,0,43,0,0,0,2,2,-9,1,4,0,0,0,23,-12,11.36416265840127,0,2,-9,2019,17,6,0,42,3,6,0,0,0,0,0,0,0,2,1,1,0,1.229507885512622,0,51.65,38.47,47.9,46.66,6.666666666666667,1,1,0,0,10,5,4,1,551.5,538906.9215939005,333222.9158715423,84730.42375391224,43674.49578663729,1723.732897572319 -15501,19137,34926,-9,34925,34924,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1038.753942753502,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,.873709008058301,0,54.61,51.04,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,408,0,0,0,0,-193.8082834640641 -15502,19138,34927,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,5.629550870077969,5.626165464851975,0,0,-891.3185690345161,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.649103699351339,5.41961024694634,56.7,26.7,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,900,146707.088389679,0,0,0,904.6923952327772 -15503,19139,34928,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.063555537851,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.02,30.67,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,251,55759.09617233881,0,0,0,4232.340275959986 -15503,19140,34929,-9,-9,34931,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-993.7418927560445,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,6,-9,0,0,8,3,0,662.3333333333334,86354.45920343576,0,0,0,980.6922978727594 -15503,19140,34930,-9,-9,34931,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1012.671393290288,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,8,3,0,662.3333333333334,86354.45920343576,0,0,0,980.6922978727594 -15503,19140,34931,-9,34928,-9,1,1,20,0,0,0,2,2,-9,0,4,7.032466454224623,7.195579020797964,0,0,0,-848.0740347554174,0,3,-9,2019,10,0,40,21,1,1,1,4.324688439226045,4.324688439226045,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,3,0,662.3333333333334,86354.45920343576,0,0,0,980.6922978727594 -15504,19141,34932,34933,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.266100711415094,7.122104186443575,44,-1,-108.7261701167739,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.602905852218036,7.231743894773948,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,7,3,1,676.5,1118874.259043233,755031.7315038175,269680.8046501103,0,2869.455403569629 -15504,19141,34933,34932,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.431219949880284,7.506975083401691,44,1,88.07776436891484,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.504726457448661,7.702129780296413,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,676.5,1118874.259043233,755031.7315038175,269680.8046501103,0,2869.455403569629 -15505,19142,34934,34935,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.335251053502766,8.496204611305116,0,3,-3,-125.1848948526002,0,-9,-9,2019,10,1,43,33,1,1,0,13.74269544630379,13.74269544630379,0,0,0,0,0,0,0,0,0,0,51.41,56.15,51.83,57.2,8.333333333333334,1,1,0,0,2,7,5,1,789.5,145942.7853565991,107453.0518732756,329378.4485776827,154488.6122232696,4704.829109716107 -15505,19142,34935,34934,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.991644248440311,8.869711314946931,0,3,3,-7.340240031011907,0,1,1,2019,8,0,46,45,1,0,0,18.221568300493,18.221568300493,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.41,56.15,1.666666666666667,1,1,0,0,7,7,5,1,789.5,145942.7853565991,107453.0518732756,329378.4485776827,154488.6122232696,4704.829109716107 -15506,19143,34936,34937,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.923719162286543,7.886400173151482,5.757800886147718,7,1,29.86715370394234,0,3,3,2019,14,2,41,40,1,2,0,10.13434821959641,10.13434821959641,0,0,0,5.218553397298228,0,0,0,0,4.98315492827152,6.211164282989908,45.01,57.46,54,53,6.666666666666667,1,1,0,0,8,10,5,1,468,394340.6276049856,227545.0752355483,489490.249430247,178996.2138434647,4475.395268350112 -15506,19143,34937,34936,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.284232882341406,8.928073444690606,7.644844589492906,7,-1,-24.97903288364863,0,3,2,2019,6,0,40,38,1,0,0,11.21556909392582,11.21556909392582,0,0,0,0,0,0,0,0,0,7.462070243507021,54,53,45.01,57.46,8.333333333333334,1,1,0,0,8,10,5,1,468,394340.6276049856,227545.0752355483,489490.249430247,178996.2138434647,4475.395268350112 -15507,19144,34938,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.510402473449803,7.817845144372478,6.034228919660698,0,0,-973.2170342976883,-9,3,3,2019,29,11,33,0,1,11,0,7.439396127666094,7.439396127666094,0,0,0,0,0,0,0,0,7.030285841712245,6.218051922652754,7.77,61.04,-9,-9,3.333333333333333,1,1,0,0,10,7,3,1,273,118293.6713205072,0,99416.38967305465,3316.115253171059,1719.925780154944 -15508,19145,34939,34940,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.02274774329413,7.189484866944679,0,45,-2,44.55518157749506,0,3,3,2019,11,0,30,25,1,0,0,4.635014035962866,4.635014035962866,0,0,0,0,0,1,1,0,0,0,44.11,55.31,51,48,8.333333333333334,1,1,0,0,9,4,3,1,546.5,874495.7559810706,564786.4073373275,160400.8995275563,0,3507.736556368208 -15508,19145,34940,34939,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.099300999175426,7.138335317009723,0,8,2,45.95820058167784,0,3,2,2019,10,0,60,50,1,1,0,2.869088509455525,2.869088509455525,0,0,0,0,0,1,1,0,8.343172511971092,0,51,48,44.11,55.31,7,1,1,0,0,1,4,3,1,546.5,874495.7559810706,564786.4073373275,160400.8995275563,0,3507.736556368208 -15509,19146,34941,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.029155938387378,9.240210785609653,0,0,0,-981.8961115903397,0,1,2,2019,9,0,35,40,1,0,0,22.25579513819395,22.25579513819395,0,0,0,0,0,0,0,0,.6546195929361862,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,8,8,5,1,398,96583.54450952527,84970.24465686493,620700.8861970857,317685.9194725868,2918.961723630852 -15510,19147,34942,-9,34943,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.62808551961,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,1,0,277.3333333333333,86121.61520868605,0,0,0,2159.803827306015 -15510,19147,34943,-9,-9,-9,1,0,46,0,2,0,1,1,-9,1,1,0,0,0,0,0,-972.9206472750302,0,2,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,37.34,-9,-9,0,2,3,0,0,0,5,1,0,277.3333333333333,86121.61520868605,0,0,0,2159.803827306015 -15510,19147,34944,-9,34943,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.8252651584211,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,1,0,277.3333333333333,86121.61520868605,0,0,0,2159.803827306015 -15511,19148,34945,34946,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,44,-4,75.41843690702372,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,52.75,55.89,45.9,8.333333333333334,1,1,0,0,7,5,2,1,1070,-72301.99317168523,68561.08026906486,0,0,507.6851953721402 -15511,19148,34946,34945,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.038089191202587,6.120647139035129,0,10,4,11.0165956565318,0,-9,-9,2019,10,0,70,70,1,0,0,.8100159585561324,.8100159585561324,1,0,0,0,0,0,0,0,3.830120665238239,0,55.89,45.9,43.34,52.75,8.333333333333334,1,1,0,0,12,5,2,1,1070,-72301.99317168523,68561.08026906486,0,0,507.6851953721402 -15512,19149,34947,34948,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.038099545615482,6.819765393432208,7,0,-18.06075435669348,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.981134702271865,7.109950849039479,54.79,55.86,50.9,35.27,10,1,1,0,0,0,2,2,1,1198.5,627806.6182860442,262854.373168534,338076.3951404474,0,1919.335281507322 -15512,19149,34948,34947,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.609128051397205,5.478126721104317,57,0,8.126497599889134,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.110382184429477,5.554357718509822,50.9,35.27,54.79,55.86,10,1,1,0,0,0,2,2,1,1198.5,627806.6182860442,262854.373168534,338076.3951404474,0,1919.335281507322 -15513,19150,34949,34950,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.321516894959609,7.668283960076097,6,2,-89.27428034493119,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.083867914721892,7.595082995746519,61.86,44.4,53.4,30.91,8.333333333333334,1,1,0,0,0,10,3,1,289,1306954.517574047,75400.94993717893,558511.0395598256,0,2565.643344566239 -15513,19150,34950,34949,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.884068511808038,6.188452589980217,6,-2,13.24285453704333,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.541554016771807,5.711331822762218,53.4,30.91,61.86,44.4,8.333333333333334,1,1,0,0,0,10,3,1,289,1306954.517574047,75400.94993717893,558511.0395598256,0,2565.643344566239 -15514,19151,34951,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.944873742698643,7.980556077420363,0,0,0,-980.8109517396475,0,2,3,2019,24,11,37,38,1,11,0,9.105640549387445,9.105640549387445,0,0,0,0,0,0,0,0,0,0,34.87,41.03,-9,-9,3.333333333333333,1,1,0,0,4,12,4,1,131,16415.90416597239,42526.78476913285,0,0,1469.938553117453 -15515,19152,34952,34953,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,4,-8,-82.77456877092246,0,-9,-9,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.43,46.41,57.91,46.31,1.666666666666667,4,2,0,1,9,2,3,1,2412,1275362.952140803,1062644.602661804,119921.1481394448,0,2481.356423145868 -15515,19152,34953,34952,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.997888611208327,8.258414924568415,4,8,-55.36958716529381,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.650456546721447,8.168665069037408,57.91,46.31,31.43,46.41,8.333333333333334,1,1,0,0,4,2,3,1,2412,1275362.952140803,1062644.602661804,119921.1481394448,0,2481.356423145868 -15516,19153,34954,34955,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,6.408088955196226,6.429611710071378,0,21,-2,-55.94232047409357,-9,2,2,2019,6,0,28,0,1,0,0,3.041732857930129,3.041732857930129,0,0,0,0,0,0,0,0,0,0,57.1,57.51,43.95,48.07,8.333333333333334,1,1,0,0,11,12,5,1,586,354918.7201932093,392918.7179816326,207696.470791083,193053.9934080983,2835.805029507748 -15516,19153,34955,34954,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.055244618702897,8.932317933532168,0,1,2,-7.213229670709182,-9,-9,-9,2019,9,1,41,0,1,1,0,27.25520190502108,27.25520190502108,0,0,0,0,0,0,0,0,0,0,43.95,48.07,57.1,57.51,6.666666666666667,1,1,0,0,11,12,5,1,586,354918.7201932093,392918.7179816326,207696.470791083,193053.9934080983,2835.805029507748 -15516,19154,34956,-9,34954,34955,1,0,21,0,0,0,2,2,-9,0,3,7.693554818388894,7.722703589787881,0,0,0,-995.4396432598443,-9,2,1,2019,10,0,35,0,1,0,1,10.76304429241178,10.76304429241178,0,0,0,0,0,0,0,0,0,0,53.71,49.66,-9,-9,5,1,1,0,0,0,12,3,1,978,113037.6560013543,35269.57395846099,0,0,888.1705284888153 -15516,19155,34957,-9,34954,34955,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1076.83098594827,-9,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.95,54.53,-9,-9,5,1,1,1,1,0,12,2,1,314,12945.293684523,-5357.408126080014,0,0,0 -15516,19156,34958,-9,34954,34955,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-898.1137960294477,-9,2,1,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,37.69,58.7,-9,-9,6.666666666666667,1,1,1,0,0,12,1,1,113,193153.8217843329,0,0,0,0 -15517,19157,34959,-9,34961,34963,1,0,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1065.723395180913,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,4,1,0,656.6,28476.34127764343,0,0,0,933.5533597047852 -15517,19157,34960,-9,34961,34963,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.1514036155828,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,656.6,28476.34127764343,0,0,0,933.5533597047852 -15517,19157,34961,34963,-9,-9,1,0,44,0,3,0,2,2,1,0,3,0,0,0,2,13,0,-9,2,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,49.93,51.72,5,1,1,0,0,0,4,1,0,656.6,28476.34127764343,0,0,0,933.5533597047852 -15517,19157,34962,-9,34961,34963,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.036510005595,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,1,0,656.6,28476.34127764343,0,0,0,933.5533597047852 -15517,19157,34963,34961,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,0,0,0,2,-13,0,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.93,51.72,46,50,6.666666666666667,1,1,1,0,12,4,1,0,656.6,28476.34127764343,0,0,0,933.5533597047852 -15518,19158,34964,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.908941224053221,6.723391379469049,0,0,0,-1109.856932386743,0,2,2,2019,9,0,16,16,1,0,0,6.317956594243978,6.317956594243978,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,13,2,0,987,-77892.74279818115,0,0,0,1493.488305498037 -15518,19158,34965,-9,34964,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.7650850304716,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,987,-77892.74279818115,0,0,0,1493.488305498037 -15518,19158,34966,-9,34964,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.131089145701,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,987,-77892.74279818115,0,0,0,1493.488305498037 -15519,19159,34967,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,6.687771422944838,6.837442393929995,0,0,0,-1037.649608070758,0,-9,-9,2019,3,0,40,40,1,0,0,2.637079175999136,2.637079175999136,0,0,0,0,0,1,1,0,4.228979567267755,0,60.6,38.89,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,670,51304.75508702559,108596.9620769451,0,0,1554.105224709193 -15520,19160,34968,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.046602184215068,6.456688236514516,0,0,-958.9281787089845,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.439933825255075,59.3,39.29,-9,-9,10,1,1,0,0,0,11,2,0,266,226041.2394411055,-50237.85220929042,228650.2591067567,0,1115.953803673758 -15520,19161,34969,-9,-9,-9,1,0,34,0,0,0,3,3,-9,0,4,7.867764474486905,8.007737845673507,0,0,0,-1187.823261974125,-9,-9,-9,2019,11,0,37,0,1,2,0,9.078879865485341,9.078879865485341,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,4,6,0,0,1,11,3,0,470,129256.27593816,54808.96813791627,0,0,849.8869890312455 -15521,19162,34970,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.506669467686951,9.434393811842561,0,0,0,-932.0168868472443,0,2,2,2019,6,0,45,50,1,0,0,42.83116218870938,42.83116218870938,0,0,0,0,0,0,0,0,8.813894573753354,0,57.06,57.76,-9,-9,10,2,3,0,0,9,9,5,1,2509,1288737.382548433,629241.224498242,265391.6968275385,0,6589.495014930249 -15522,19163,34971,34972,-9,-9,1,1,67,0,1,0,1,1,-9,0,3,0,4.875429949395609,5.115178877141448,18,19,-21.21860926598021,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.732928737397343,0,46.65,52.63,45.53,35.77,6.666666666666667,2,3,0,0,5,8,2,0,546.3333333333334,139367.0307685343,0,0,0,3020.466995401741 -15522,19163,34972,34971,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,7,-19,63.24334645824551,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,.6808856327659802,0,45.53,35.77,46.65,52.63,8.333333333333334,2,3,0,1,0,8,2,0,546.3333333333334,139367.0307685343,0,0,0,3020.466995401741 -15522,19163,34973,-9,34972,34971,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.981499171282,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,546.3333333333334,139367.0307685343,0,0,0,3020.466995401741 -15523,19164,34974,34975,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,7.937924109746399,7.763257425885859,8,15,-153.3126669166633,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.018179965823902,8.014999945792168,62.39,56.71,61.04,39.41,0,1,1,0,0,6,7,3,1,567.5,758116.143297171,459945.0022023674,287768.2440613472,0,2083.990112314994 -15523,19164,34975,34974,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.263930632888883,6.13293009058926,8,-15,-54.07002513886025,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.398226293969741,0,61.04,39.41,62.39,56.71,8.333333333333334,1,1,0,0,3,7,3,1,567.5,758116.143297171,459945.0022023674,287768.2440613472,0,2083.990112314994 -15524,19165,34976,34977,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.82708620539266,4.57535115038452,8,-12,39.95808291248148,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.095202816092271,4.639507431908484,52.23,55.6,57.06,57.76,8.333333333333334,1,1,0,0,7,12,2,1,617.5,555568.4063064673,236508.197615833,174657.881585806,-2644.107551931868,1738.481271266015 -15524,19165,34977,34976,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.766198804425362,6.712671597110031,8,12,150.4504346009722,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.515741816307144,7.293985431753342,57.06,57.76,52.23,55.6,10,1,1,0,0,0,12,2,1,617.5,555568.4063064673,236508.197615833,174657.881585806,-2644.107551931868,1738.481271266015 -15525,19166,34978,34979,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.911594054167301,7.925475642049911,26,-2,78.78940762122105,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.908374717987192,7.931906316604416,57.16,56.15,58.07,46.16,8.333333333333334,1,1,0,0,0,7,3,1,524,966226.351381406,535548.8314112974,392285.7055477316,0,2276.028704639264 -15525,19166,34979,34978,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,30,2,42.80104604697458,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.201177133751568,0,58.07,46.16,57.16,56.15,10,1,1,0,0,0,7,3,1,524,966226.351381406,535548.8314112974,392285.7055477316,0,2276.028704639264 -15526,19167,34980,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.925177242077361,5.846025023116236,0,0,-931.9852351553646,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.273091160661122,53,44,-9,-9,8,1,1,0,0,0,6,2,1,333,44926.78723517136,-37111.21405707089,194331.3376349501,0,351.0852947844554 -15527,19168,34981,34983,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.049552061403194,8.164972740446913,0,9,1,-119.0187275411075,0,-9,-9,2019,11,0,42,40,1,0,0,8.195499881892829,8.195499881892829,0,0,0,0,0,1,1,0,3.947622374263327,0,51.83,57.2,48.18,61.8,3.333333333333333,1,1,0,0,11,4,4,1,1064.75,82815.5167972792,-5340.98899310036,118726.049527364,72365.54656146375,3780.033058047539 -15527,19168,34982,-9,34983,34981,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.814807662457,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1064.75,82815.5167972792,-5340.98899310036,118726.049527364,72365.54656146375,3780.033058047539 -15527,19168,34983,34981,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,8.366681930572765,7.976553835883501,0,9,-1,64.12403650074511,0,2,1,2019,12,0,44,42,1,0,0,12.2900386008172,12.2900386008172,0,0,0,0,0,1,1,0,5.925214551042528,0,48.18,61.8,51.83,57.2,6.666666666666667,1,1,0,0,9,4,4,1,1064.75,82815.5167972792,-5340.98899310036,118726.049527364,72365.54656146375,3780.033058047539 -15527,19168,34984,-9,34983,34981,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.3877138462836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1064.75,82815.5167972792,-5340.98899310036,118726.049527364,72365.54656146375,3780.033058047539 -15528,19169,34985,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-978.4762452256509,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,53.5,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1235,83237.58227617027,0,0,0,1317.863932396332 -15529,19170,34986,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.149001061795028,7.98460600466775,0,0,0,-1097.941934160504,0,2,2,2019,7,0,38,46,1,0,0,9.134214081883481,9.134214081883481,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,10,1,1,0,0,9,12,4,0,413,230720.6458514172,41667.69065661611,125006.9893643904,4774.549601920575,967.1252462172685 -15529,19171,34987,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.145223665133807,7.883691401962278,0,0,0,-1001.694981737288,0,2,2,2019,10,0,50,55,1,0,0,7.492434338001396,7.492434338001396,0,0,0,0,0,0,0,0,0,0,56.35,48.33,-9,-9,6.666666666666667,1,1,0,0,10,12,4,0,904,236792.3727817296,155028.462165714,0,0,950.4639870229012 -15530,19172,34988,-9,34989,34990,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.085942472843,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,1,1458.333333333333,-23565.33976276626,0,0,0,1190.130209840364 -15530,19172,34989,34990,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,13,1,0,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,21.15,55.96,49.93,8.333333333333334,2,3,0,0,0,2,1,1,1458.333333333333,-23565.33976276626,0,0,0,1190.130209840364 -15530,19172,34990,34989,-9,-9,1,1,40,0,2,0,2,2,-9,1,3,0,0,0,13,-1,0,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,27.39,21.15,8.333333333333334,2,3,0,0,1,2,1,1,1458.333333333333,-23565.33976276626,0,0,0,1190.130209840364 -15531,19173,34991,34992,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.304598143709846,6.705480458255037,0,42,1,1.977464937612543,0,-9,-9,2019,11,0,15,16,1,0,0,4.850435418694486,4.850435418694486,0,0,0,0,0,0,0,0,4.565188382982711,0,54.07,49.4,57.33,53.46,8.333333333333334,1,1,0,0,13,10,2,1,364,386719.9830763981,184873.1740680836,167566.0470595338,0,349.4496342397898 -15531,19173,34992,34991,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,42,-1,-41.77344030804384,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.890861895003774,0,57.33,53.46,54.07,49.4,8.333333333333334,1,1,0,0,7,10,2,1,364,386719.9830763981,184873.1740680836,167566.0470595338,0,349.4496342397898 -15532,19174,34993,34994,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.750361550910055,8.627649145076623,0,7,15,57.73317374062584,0,3,2,2019,9,0,46,48,1,0,0,16.25255679065779,16.25255679065779,0,0,0,0,0,1,1,0,0,0,44.35,51.55,52.79,41.12,8.333333333333334,1,1,0,0,8,9,4,1,1330.333333333333,144702.528017881,92687.92592658217,0,0,2428.911284357112 -15532,19174,34994,34993,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,0,0,0,7,-15,40.38424121666914,0,-9,-9,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,2.305329783956976,0,52.79,41.12,44.35,51.55,6.666666666666667,1,1,0,0,4,9,4,1,1330.333333333333,144702.528017881,92687.92592658217,0,0,2428.911284357112 -15532,19174,34995,-9,34994,34993,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.922406645833,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1330.333333333333,144702.528017881,92687.92592658217,0,0,2428.911284357112 -15533,19175,34996,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.888024526176926,8.567142699585094,0,0,-1032.602604288933,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.578436640242462,8.600620364612078,63.81,40.77,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,2201,539231.2190586056,264335.9352270838,137771.1548800396,0,3216.413605465614 -15534,19176,34997,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.137270909243567,8.234264064264664,0,0,0,-926.5099362302444,0,3,3,2019,6,0,37,28,1,0,0,14.26305429611233,14.26305429611233,0,0,0,0,0,1,1,0,2.117093080718286,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,775,691286.3602727088,700498.2893268811,158276.0308264874,23225.21564018358,1355.693745715298 -15534,19177,34998,-9,34997,-9,1,1,19,0,0,0,2,2,1,0,4,6.747345681730633,6.772608939357617,3.918873059361359,0,0,-1057.524357117148,-9,2,-9,2019,6,1,24,0,1,1,1,3.706995131135542,3.706995131135542,0,0,0,0,0,1,1,0,3.540550051565491,0,49.17,56.04,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,343,-26765.30905465898,0,0,0,714.1421131663731 -15535,19178,34999,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.899530601969998,8.649262732842447,0,0,0,-1189.69643735914,0,-9,-9,2019,8,1,41,41,1,1,0,21.02812061691725,21.02812061691725,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,6,9,5,1,4401,41768.79110798924,23077.05183695898,0,0,2259.829501160157 -15536,19179,35000,35001,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.584032196186357,9.333911973414423,0,9,-2,-106.9154329605947,0,2,2,2019,18,6,87,45,1,6,0,17.3627312904554,17.3627312904554,0,0,0,0,0,1,1,0,2.770718237164893,0,42.27,57.55,54.05,52.09,5,1,1,0,0,10,5,5,1,717.5,681543.2717130673,182309.2980579413,607793.2777454458,61318.95959737705,6620.020224780064 -15536,19179,35001,35000,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.647142389326833,8.360116690095671,0,9,2,18.99839044347964,0,2,2,2019,9,1,45,45,1,1,0,14.97668773385093,14.97668773385093,0,0,0,0,0,1,1,0,0,0,54.05,52.09,42.27,57.55,8.333333333333334,1,1,0,0,10,5,5,1,717.5,681543.2717130673,182309.2980579413,607793.2777454458,61318.95959737705,6620.020224780064 -15537,19180,35002,35003,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.147505739019691,8.507988509377908,0,5,-7,-35.39879525786858,0,-9,-9,2019,13,2,38,42,1,2,0,11.02032935503926,11.02032935503926,0,0,0,0,0,0,0,0,0,0,48.97,37.29,54.96,53.17,8.333333333333334,1,1,0,0,6,9,5,1,1423.5,1179100.50091954,915626.7419633833,413683.6203405817,234030.6645071411,4144.369093569979 -15537,19180,35003,35002,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.840888506352707,8.482166450774512,0,5,7,-84.17214240697352,0,3,3,2019,7,0,39,40,1,0,0,17.90606804826862,17.90606804826862,0,0,0,0,0,0,0,0,0,0,54.96,53.17,48.97,37.29,10,1,1,0,0,6,9,5,1,1423.5,1179100.50091954,915626.7419633833,413683.6203405817,234030.6645071411,4144.369093569979 -15537,19181,35004,-9,35002,35003,1,0,25,0,0,0,1,1,-9,0,3,8.175409048681848,8.153023857100832,0,0,0,-1073.771559033358,0,2,2,2019,7,0,41,40,1,0,1,11.08721604936561,11.08721604936561,0,0,0,0,0,0,0,0,0,0,47.21,55.3,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,124,-67391.57667095926,0,0,0,1593.233799114234 -15538,19182,35005,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.769605724928871,8.509677146722577,0,0,0,-999.7895951001562,0,-9,-9,2019,20,6,58,58,1,6,0,9.913857179429526,9.913857179429526,0,0,0,0,0,0,0,0,0,0,41.72,58.06,-9,-9,3.333333333333333,4,2,0,0,9,10,5,1,3026,164265.9067601784,-28620.26328997715,159568.7262722197,89707.17050807572,1711.815495070603 -15539,19183,35006,35007,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.057908577243242,5.005945152825755,54,-4,6.090335995989261,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,5.662591114592407,0,0,1,1,0,0,5.141661985482588,30.79,38.29,46.57,43.14,5,1,1,0,0,0,4,3,1,477,544818.8824936247,109872.3514941514,170708.2463388382,0,1586.921935604484 -15539,19183,35007,35006,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.194571308368802,7.36044169393227,54,4,33.28799271873059,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.483871131437017,46.57,43.14,30.79,38.29,6.666666666666667,1,1,0,0,0,4,3,1,477,544818.8824936247,109872.3514941514,170708.2463388382,0,1586.921935604484 -15540,19184,35008,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,6.911123561758604,6.762976744557652,0,0,-959.0022325040675,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.18874806430109,57.49,34.36,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1856,833514.7198209325,191067.1714298323,395062.87753456,0,906.4426200307238 -15541,19185,35009,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.365319599673546,8.586013888056268,0,0,0,-1023.332776209373,0,2,1,2019,22,11,32,32,1,11,0,16.44969732520567,16.44969732520567,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,5,1,1,0,0,6,8,5,1,531,-143611.9896639679,75351.71645925377,141166.9269160864,0,2224.687672794502 -15542,19186,35010,35012,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,9.257569709938775,9.28335750790238,0,8,0,83.89938606547676,0,3,3,2019,7,0,30,40,1,0,0,34.05443948718678,34.05443948718678,0,0,0,0,0,1,1,0,0,0,47.15,55.39,48.8,49.1,8.333333333333334,1,1,0,0,8,1,4,0,299,70148.75390218261,11412.31147106514,112293.7922569338,73035.60511874176,4620.587696412063 -15542,19186,35011,-9,35012,35010,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.671610279475,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,0,299,70148.75390218261,11412.31147106514,112293.7922569338,73035.60511874176,4620.587696412063 -15542,19186,35012,35010,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,6.860717508995586,6.808994643679529,0,8,0,-48.42411508880917,0,-9,-9,2019,12,1,20,16,1,1,0,5.368078300172125,5.368078300172125,0,0,0,0,0,1,1,0,0,0,48.8,49.1,47.15,55.39,8.333333333333334,1,1,0,0,9,1,4,0,299,70148.75390218261,11412.31147106514,112293.7922569338,73035.60511874176,4620.587696412063 -15542,19186,35013,-9,35012,35010,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-923.8556451474467,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,299,70148.75390218261,11412.31147106514,112293.7922569338,73035.60511874176,4620.587696412063 -15542,19186,35014,-9,35012,35010,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.2992155006201,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,299,70148.75390218261,11412.31147106514,112293.7922569338,73035.60511874176,4620.587696412063 -15543,19187,35015,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.238522007257817,6.880279472169457,0,0,-1091.057035190167,0,-9,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.082573282729578,61.98,31.01,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,227,573354.6370885558,162870.4468395789,183421.8747485075,0,1771.138214013162 -15544,19188,35016,35017,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,0,0,6,-2,-39.73887276214688,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.196962755819488,0,54.79,55.86,50.13,47.52,8.333333333333334,1,1,0,0,0,6,2,1,1451,356246.551340568,285996.2517945356,119762.1471607589,0,1818.446628988882 -15544,19188,35017,35016,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.504074011535211,7.318773346154381,6,2,23.43470971172512,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.036405700569604,7.377175640478962,50.13,47.52,54.79,55.86,10,1,1,0,0,0,6,2,1,1451,356246.551340568,285996.2517945356,119762.1471607589,0,1818.446628988882 -15545,19189,35018,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.693351066772313,7.65217832301223,0,0,0,-1095.181143864324,0,2,2,2019,12,0,40,10,1,0,0,5.831163236949879,5.831163236949879,0,0,0,0,0,0,0,0,0,0,48.56,48.19,-9,-9,6.666666666666667,4,2,0,0,10,8,3,1,1048,-9866.148468218023,0,0,0,1232.415395777787 -15546,19190,35019,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.78532351954026,7.474370146473803,0,0,-954.5773627751811,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.786111521703925,8.103035963305304,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,624,644101.2507633113,120722.8052124552,440923.7353892145,0,1609.329036448618 -15547,19191,35020,35021,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.305809535013733,8.262501679989665,0,3,-2,190.5636362190371,0,-9,-9,2019,6,0,24,7,1,0,0,20.29971545488027,20.29971545488027,0,0,0,0,0,1,1,0,3.255559148919139,0,54.2,57.49,51.67,60.18,10,1,1,0,0,7,11,5,1,476.25,2836572.836477919,253251.7867258066,312846.4818582587,193284.0227590278,4277.344824489042 -15547,19191,35021,35020,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.00179193786388,8.928081555854288,0,3,2,49.4451216844484,0,1,1,2019,18,7,37,37,1,7,0,27.29501077800304,27.29501077800304,0,0,0,0,0,1,1,0,2.430469879409696,0,51.67,60.18,54.2,57.49,8.333333333333334,1,1,0,0,11,11,5,1,476.25,2836572.836477919,253251.7867258066,312846.4818582587,193284.0227590278,4277.344824489042 -15547,19191,35022,-9,35020,35021,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.974273090711,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,5,1,476.25,2836572.836477919,253251.7867258066,312846.4818582587,193284.0227590278,4277.344824489042 -15547,19191,35023,-9,35020,35021,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-807.1404570873411,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,476.25,2836572.836477919,253251.7867258066,312846.4818582587,193284.0227590278,4277.344824489042 -15548,19192,35024,35025,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.514255305806312,8.269788071915663,0,9,2,-.0551689293298068,0,2,3,2019,6,0,33,30,1,0,0,17.33875200368258,17.33875200368258,0,0,0,0,0,0,0,0,3.777099700334728,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,9,4,1,2150,492588.6285544415,285414.1050006283,214951.2272504506,0,4337.732001754752 -15548,19192,35025,35024,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.28524829212435,7.195218181505156,0,9,-2,52.20904986764121,0,2,2,2019,8,2,35,40,1,2,0,6.009641230702369,6.009641230702369,0,0,0,0,0,0,0,0,8.379144125638895,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,9,4,1,2150,492588.6285544415,285414.1050006283,214951.2272504506,0,4337.732001754752 -15549,19193,35026,-9,35027,35028,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.024013380796,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,485.6666666666667,297442.8245590599,229719.9568375904,200378.1390600619,128370.103751849,3539.344956926827 -15549,19193,35027,35028,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,8.072043148082345,8.229077211869356,0,5,-6,132.0306874010486,0,2,2,2019,8,2,42,42,1,2,0,8.183253807470237,8.183253807470237,0,0,0,0,0,1,1,0,0,0,41.7,59.17,54.79,55.86,6.666666666666667,1,1,0,0,6,10,4,1,485.6666666666667,297442.8245590599,229719.9568375904,200378.1390600619,128370.103751849,3539.344956926827 -15549,19193,35028,35027,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.395776855214248,8.19194806933255,0,5,6,-11.00701395360226,0,-9,-9,2019,6,0,42,41,1,0,0,10.48114884716313,10.48114884716313,0,0,0,0,0,1,1,0,.6213471461158103,0,54.79,55.86,41.7,59.17,5,1,1,0,0,5,10,4,1,485.6666666666667,297442.8245590599,229719.9568375904,200378.1390600619,128370.103751849,3539.344956926827 -15550,19194,35029,35030,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.695662549857252,8.483671985831458,53,1,84.64520589463076,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.627891068003049,8.712217768864905,58.32,52.89,58.75,51.28,8.333333333333334,1,1,0,0,0,2,5,1,108.5,3186427.663939198,848779.902819382,753710.1595086465,0,5210.517446773998 -15550,19194,35030,35029,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.84144289967599,7.509176893405181,53,-1,-5.683732120559978,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.962083769817187,0,20.07470535132791,0,1,1,0,6.359912773177157,7.575311487177098,58.75,51.28,58.32,52.89,10,1,1,0,0,0,2,5,1,108.5,3186427.663939198,848779.902819382,753710.1595086465,0,5210.517446773998 -15551,19195,35031,35032,-9,-9,1,0,41,0,3,0,1,1,-9,1,4,0,0,0,21,0,50.56233928207016,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.83,57.2,48.37,61.89,8.333333333333334,1,1,0,0,0,12,3,1,974,-138214.900884763,0,0,0,3066.569086080876 -15551,19195,35032,35031,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,7.918927659046383,8.430148490321928,0,21,0,-24.60722699336114,0,3,-9,2019,12,0,50,65,1,0,0,7.010989643233665,7.010989643233665,0,0,0,0,0,1,1,0,0,0,48.37,61.89,51.83,57.2,10,1,1,0,0,11,12,3,1,974,-138214.900884763,0,0,0,3066.569086080876 -15551,19195,35033,-9,35031,35032,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.224565164318,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,974,-138214.900884763,0,0,0,3066.569086080876 -15552,19196,35034,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1008.039420432491,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.28,27.1,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,7057,-112963.7979325136,0,0,0,1558.026226151297 -15553,19197,35035,35036,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.811347242483462,9.232836193762251,0,7,12,65.70528873944129,0,3,3,2019,7,0,50,55,1,0,0,16.91069086384487,16.91069086384487,0,0,0,0,0,1,1,0,0,0,56.47,59.4,59.15,49.67,8.333333333333334,1,1,0,0,10,9,5,1,314,1377644.327641071,841356.854992258,516519.9062590734,100528.1967280124,3779.894632293119 -15553,19197,35036,35035,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,7.913739929152515,7.794461965923588,0,7,-12,60.36289071725967,0,3,3,2019,6,1,15,16,1,1,0,21.03059050476933,21.03059050476933,0,0,0,0,0,1,1,0,3.019098478604959,0,59.15,49.67,56.47,59.4,8.333333333333334,1,1,0,0,10,9,5,1,314,1377644.327641071,841356.854992258,516519.9062590734,100528.1967280124,3779.894632293119 -15553,19197,35037,-9,35036,35035,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.8323595530197,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,314,1377644.327641071,841356.854992258,516519.9062590734,100528.1967280124,3779.894632293119 -15554,19198,35038,-9,35042,35041,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.4507139067956,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,431.4,320794.2581161452,145353.3306559591,327230.3904273025,202666.8559928825,4699.718021913968 -15554,19198,35039,-9,35042,35041,1,1,16,0,3,1,2,0,-9,0,5,0,4.614205699808482,4.911661863914711,0,0,-946.8586900880101,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.996058600779153,0,51.73,58.82,-9,-9,10,1,1,0,0,0,12,4,1,431.4,320794.2581161452,145353.3306559591,327230.3904273025,202666.8559928825,4699.718021913968 -15554,19198,35040,-9,35042,35041,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-900.5444260879474,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,431.4,320794.2581161452,145353.3306559591,327230.3904273025,202666.8559928825,4699.718021913968 -15554,19198,35041,35042,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.751519400036926,8.925040535810485,0,7,5,-162.9608903803238,0,2,2,2019,3,0,36,35,1,0,0,19.11071821159294,19.11071821159294,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,8,12,4,1,431.4,320794.2581161452,145353.3306559591,327230.3904273025,202666.8559928825,4699.718021913968 -15554,19198,35042,35041,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,8.29922929479711,8.464782221664695,7.025855029839593,7,-5,-62.02797168226971,0,-9,-9,2019,6,0,19,18,1,0,0,23.11406031869452,23.11406031869452,0,0,0,0,0,1,1,0,7.893973770583112,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,431.4,320794.2581161452,145353.3306559591,327230.3904273025,202666.8559928825,4699.718021913968 -15555,19199,35043,35045,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.424760032093404,7.215094429579527,0,7,0,16.66479636394807,0,3,2,2019,9,0,42,50,1,0,0,5.161669536328704,5.161669536328704,0,0,0,0,0,1,1,0,0,0,51.19,49.37,44.02,60.7,3.333333333333333,1,1,0,0,8,7,3,1,816.6666666666666,196156.8222517394,29926.76294920588,0,0,1814.519944521841 -15555,19199,35044,-9,35043,35045,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.7773283388719,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,816.6666666666666,196156.8222517394,29926.76294920588,0,0,1814.519944521841 -15555,19199,35045,35043,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.253734721419105,7.612897331639488,0,7,0,48.2409311759381,0,2,3,2019,9,0,50,60,1,0,0,3.873186494758976,3.873186494758976,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.19,49.37,6.666666666666667,1,1,0,0,8,7,3,1,816.6666666666666,196156.8222517394,29926.76294920588,0,0,1814.519944521841 -15555,19200,35046,-9,35043,35045,1,0,20,0,1,0,2,2,-9,0,4,7.987624758698042,7.951394066087966,0,0,0,-965.7710904004847,0,2,2,2019,11,0,56,40,1,0,1,8.106772034801025,8.106772034801025,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,144,154216.0773563462,29999.43451074991,0,0,1286.773525475698 -15556,19201,35047,-9,35048,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.604317609221,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,360.5,-29556.57702178748,0,0,0,2186.551887301011 -15556,19201,35048,-9,-9,-9,1,0,39,0,1,0,2,2,0,0,2,0,0,0,0,0,-960.8514436485128,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.14,38.88,-9,-9,8.333333333333334,1,1,0,0,8,9,1,0,360.5,-29556.57702178748,0,0,0,2186.551887301011 -15557,19202,35049,35050,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.532917970294216,8.600455843001575,0,25,-8,-20.93880084879257,0,-9,1,2019,12,0,50,55,1,0,0,12.8130946566433,12.8130946566433,0,0,0,0,0,0,0,0,0,0,53.05,52.71,60.42,54.81,3.333333333333333,1,1,0,0,11,9,5,1,332,6640366.035645968,4385133.531815673,1007599.354939101,0,7893.133034730065 -15557,19202,35050,35049,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.34870819496768,9.382492913891037,0,25,8,21.39461565976887,0,1,1,2019,8,0,53,60,1,0,0,33.4749293872074,33.4749293872074,0,0,0,0,0,0,0,0,7.130992896990601,0,60.42,54.81,53.05,52.71,1.666666666666667,1,1,0,0,9,9,5,1,332,6640366.035645968,4385133.531815673,1007599.354939101,0,7893.133034730065 -15557,19203,35051,-9,35049,35050,1,0,18,0,0,0,2,2,-9,0,5,7.648807446678315,7.280655176192236,0,0,0,-909.6984658296254,0,1,1,2019,8,0,28,0,1,0,1,7.339972466657648,7.339972466657648,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,2,9,3,1,883,-123144.8925174007,-713.9182576277551,0,0,500.3099594408108 -15558,19204,35052,35053,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.155277492608304,4.943647771105881,49,-1,57.37455812535718,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.156741174987846,5.183304306987489,58.72,51.29,64.40000000000001,25.94,1.666666666666667,1,1,0,0,0,5,2,1,419.5,72334.01085167612,832.349103407767,58661.78304079631,0,1248.140482649412 -15558,19204,35053,35052,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,49,1,90.68396879749679,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.474964516976446,0,64.40000000000001,25.94,58.72,51.29,8.333333333333334,1,1,0,0,0,5,2,1,419.5,72334.01085167612,832.349103407767,58661.78304079631,0,1248.140482649412 -15559,19205,35054,-9,35055,35056,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.1329299586761,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,672.5,95672.03420891389,66132.83673461068,57709.79050510214,0,1654.329713763156 -15559,19205,35055,35056,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,1,0,-118.434483582711,-9,-9,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.69,58.7,8.333333333333334,1,1,0,0,0,11,2,1,672.5,95672.03420891389,66132.83673461068,57709.79050510214,0,1654.329713763156 -15559,19205,35056,35055,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.469753979086242,7.359145717704485,0,1,0,58.77114378101184,-9,3,3,2019,19,7,16,0,1,7,0,12.26970984745271,12.26970984745271,0,0,0,0,0,1,1,0,0,0,37.69,58.7,51.24,58.84,5,1,1,0,0,6,11,2,1,672.5,95672.03420891389,66132.83673461068,57709.79050510214,0,1654.329713763156 -15559,19205,35057,-9,35055,35056,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-918.2123254215293,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,2,1,672.5,95672.03420891389,66132.83673461068,57709.79050510214,0,1654.329713763156 -15560,19206,35058,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.877763401047724,7.742050940681152,0,0,0,-1063.914437816182,0,2,2,2019,13,3,45,0,1,3,0,7.283191387144963,7.283191387144963,0,0,0,0,0,1,1,0,0,0,37.91,45.93,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,200,29783.34001247353,-3570.041305143988,0,0,2514.544549482817 -15561,19207,35059,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,1,6.715015619655794,6.618992094554728,0,0,0,-981.1526449028369,0,2,1,2019,8,3,51,51,1,3,0,1.748323598341909,1.748323598341909,0,0,0,0,75,0,0,0,0,0,45.82,38.7,-9,-9,8.333333333333334,1,1,0,0,10,4,2,0,1083,-110321.1479113633,0,0,0,399.4152562469692 -15562,19208,35060,35061,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.85965020126501,8.229330328718419,38,0,-17.79887398836891,-9,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.248543991459702,71.85000000000001,15.71,50.23,30.13,10,1,1,0,0,0,13,4,1,277.5,312855.9965463961,56634.44656043329,139599.8252791823,0,2748.160379555227 -15562,19208,35061,35060,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.223443599812458,7.410184181860449,1,0,13.61496907760217,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.757225284846151,50.23,30.13,71.85000000000001,15.71,5,1,1,0,0,0,13,4,1,277.5,312855.9965463961,56634.44656043329,139599.8252791823,0,2748.160379555227 -15562,19209,35062,-9,35060,35061,1,1,26,0,0,0,2,2,-9,0,4,9.130311546954823,9.1263657011219,0,0,0,-1088.181700513208,-9,2,2,2019,10,0,40,0,1,1,0,20.70718789349319,20.70718789349319,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,1390,-86455.90964079315,66878.18361547281,0,0,2458.105602807026 -15563,19210,35063,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.474695733275393,8.435722649322226,0,0,0,-1038.744107441683,0,2,1,2019,8,0,10,15,1,0,0,60.19397409712912,60.19397409712912,0,0,0,0,0,0,0,0,5.501440937894337,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,2943,295273.5099397982,196728.6345921864,0,0,1900.136901521518 -15564,19211,35064,35065,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.107216664261749,8.292221141980193,36,3,-2.105831769123947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.68358767023099,8.625328328968148,57.16,56.15,54.42,36.85,8.333333333333334,1,1,0,0,11,13,4,1,288.5,2767548.666129246,1777190.358316667,402388.8583050195,0,5844.819072023069 -15564,19211,35065,35064,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,0,7.711112740498413,7.626555594828328,11,-3,69.42924611470109,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,7.564987547666311,54.42,36.85,57.16,56.15,6.666666666666667,1,1,0,0,0,13,4,1,288.5,2767548.666129246,1777190.358316667,402388.8583050195,0,5844.819072023069 -15564,19212,35066,-9,35065,35064,1,1,30,0,0,0,2,2,-9,0,5,7.321522236378868,7.54420355067636,0,0,0,-1065.417997790006,0,1,1,2019,12,0,38,38,1,0,1,4.205653187244433,4.205653187244433,0,0,0,0,2,1,1,0,7.922256649317648,0,52.87,55.58,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,1119,-35420.96202075075,25273.95615904686,0,0,2298.508404293665 -15564,19213,35067,-9,35065,35064,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1069.121246628259,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,3,13,1,1,324,-50415.79266203891,0,0,0,0 -15565,19214,35068,35070,-9,-9,1,0,24,0,1,0,1,1,1,0,4,6.045876625948854,6.009236640090048,0,4,2,8.694510922327225,-9,2,2,2019,13,1,35,0,1,1,0,1.388649752324261,1.388649752324261,0,0,0,0,0,1,1,0,0,0,46.69,58.35,54.1,59.11,8.333333333333334,1,1,0,0,7,2,3,0,1558,12616.39900246449,-10963.73561312955,106038.0885470852,53993.10954129087,2109.283348305804 -15565,19214,35069,-9,35068,35070,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.328082326257,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1558,12616.39900246449,-10963.73561312955,106038.0885470852,53993.10954129087,2109.283348305804 -15565,19214,35070,35068,-9,-9,1,1,22,0,1,0,2,2,-9,0,5,8.369977907834356,8.133953863868935,0,4,-2,47.47820553767079,0,-9,-9,2019,7,0,56,40,1,0,0,8.438093432783949,8.438093432783949,0,0,0,0,2,1,1,0,0,0,54.1,59.11,46.69,58.35,8.333333333333334,1,1,0,0,4,2,3,0,1558,12616.39900246449,-10963.73561312955,106038.0885470852,53993.10954129087,2109.283348305804 -15566,19215,35071,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,8.011338702764517,8.248209961463939,0,0,0,-941.3578728413413,0,2,-9,2019,10,0,40,40,1,0,0,10.75448781194143,10.75448781194143,0,0,0,0,0,0,0,0,0,0,52.83,14.13,-9,-9,3.333333333333333,3,4,0,0,11,8,4,0,572,462291.3983581078,5176.58302920268,410426.7841526874,26124.22662111729,883.2819678061294 -15566,19216,35072,-9,35071,-9,1,1,28,0,0,0,1,1,-9,0,5,8.541262141865957,8.535303275218089,0,0,0,-898.3508038426884,0,2,-9,2019,6,0,51,40,1,0,1,10.35812152745217,10.35812152745217,0,0,0,0,0,0,0,0,0,0,45.22,63.14,-9,-9,3.333333333333333,3,4,0,0,6,8,5,0,1431,-78777.24346691174,-69460.64375202326,0,0,1825.660531374946 -15567,19217,35073,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-973.957077109603,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,14.74324768229984,128.8019329257622,137.9261012294418,7,1,1,0,0,0,30.84,27.65,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,427,35753.82971024807,0,0,0,1621.18714689374 -15567,19218,35074,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,5.208126620460638,5.217190470932625,0,0,0,-925.7121312488465,0,-9,-9,2019,10,0,60,40,1,1,0,.4288881953405755,.4288881953405755,0,0,0,0,0,1,1,0,2.975023485600182,0,51,49,-9,-9,7,1,1,0,0,1,4,2,0,1237,77150.73086628044,9056.340690440658,68983.26624620374,56605.2598375949,277.9975005237014 -15568,19219,35075,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-940.4865534591457,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.29,46.02,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,534,319705.5085262295,82694.32777765821,159070.422996701,0,1093.157123833158 -15569,19220,35076,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.27508235941511,7.998254678690079,0,0,0,-1143.330834487505,0,2,2,2019,6,0,31,30,1,0,0,13.73717026613565,13.73717026613565,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,297,490917.1985446935,281215.5383677072,0,0,978.3432571529299 -15569,19221,35077,-9,35076,-9,1,0,22,0,0,0,1,1,1,0,4,7.741301591301577,7.865453203708352,0,0,0,-993.7192129489497,-9,2,-9,2019,11,2,40,0,1,2,1,8.428171274080867,8.428171274080867,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,693,0,0,0,0,1233.143349612176 -15570,19222,35078,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.770791435512629,6.080226633428427,0,0,-853.3197852697149,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.893597372272323,66.61,23.54,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,925,40391.34844362966,34676.52955822528,0,0,1741.796543344428 -15571,19223,35079,35080,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.341616648139087,7.175967017365367,0,7,1,-28.81390744765579,0,-9,-9,2019,11,0,24,22,1,2,0,6.879744257308023,6.879744257308023,0,0,0,0,0,0,0,0,0,0,48,49,56.47,51.02,7,1,1,0,0,1,6,4,1,853,517338.8781054146,320251.9465321896,252885.2900332454,90983.61402064675,2721.71673463705 -15571,19223,35080,35079,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.473585048630699,8.30211797408103,0,29,-1,40.05560315774385,0,3,3,2019,11,0,42,45,1,0,0,11.99232156818562,11.99232156818562,0,0,0,0,2,0,0,0,0,0,56.47,51.02,48,49,8.333333333333334,1,1,0,0,10,6,4,1,853,517338.8781054146,320251.9465321896,252885.2900332454,90983.61402064675,2721.71673463705 -15571,19224,35081,-9,35079,35080,1,1,23,0,0,0,2,2,-9,0,4,8.715966857251265,8.495095837025158,0,0,0,-1066.024012322253,0,2,3,2019,10,0,36,36,1,1,1,17.02159165144466,17.02159165144466,0,0,0,2.384254236822555,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,5,1,863,189694.4730525475,-12144.72047426613,156945.0967290509,95269.99427845862,1799.592289026031 -15572,19225,35082,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.643236844180073,8.726134766510725,0,0,0,-1048.461808483484,0,1,2,2019,12,3,43,43,1,3,0,15.10048253326032,15.10048253326032,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,12,5,5,1,625,417422.346441668,325977.6619080355,0,0,2543.351568257139 -15573,19226,35083,35084,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.826136932432775,7.92976945644569,40,7,64.43239037184898,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.274211545613289,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,1,1011.5,1414813.62364907,819660.4287691647,234058.5866830334,0,1792.863906598906 -15573,19226,35084,35083,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,40,-7,-17.87314419300991,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,1011.5,1414813.62364907,819660.4287691647,234058.5866830334,0,1792.863906598906 -15574,19227,35085,35087,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.668499264428082,8.49217715693548,0,9,-2,-11.66384868885201,0,3,3,2019,8,0,37,37,1,0,0,18.41056747347758,18.41056747347758,0,0,0,0,0,1,1,0,0,0,59.14,52.5,54.2,57.49,8.333333333333334,1,1,0,0,8,13,5,1,563.6666666666666,165021.1314383615,96882.52800115077,254301.3913341576,168516.4657784111,4391.194952423381 -15574,19227,35086,-9,35085,35087,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-887.488967103087,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,563.6666666666666,165021.1314383615,96882.52800115077,254301.3913341576,168516.4657784111,4391.194952423381 -15574,19227,35087,35085,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.867672851826972,8.604081894612795,0,9,2,87.68652511756225,0,2,1,2019,4,0,41,44,1,0,0,17.34213838998197,17.34213838998197,0,0,0,0,0,1,1,0,3.286403696032241,0,54.2,57.49,59.14,52.5,8.333333333333334,1,1,0,0,7,13,5,1,563.6666666666666,165021.1314383615,96882.52800115077,254301.3913341576,168516.4657784111,4391.194952423381 -15575,19228,35088,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.806028513710927,7.9448590569351,0,0,0,-1064.555541290817,-9,3,3,2019,13,4,39,0,1,4,1,6.122284441557464,6.122284441557464,0,0,0,0,0,1,1,0,0,0,36.76,58.96,-9,-9,8.333333333333334,1,1,0,1,4,8,3,0,59,-63700.04709628013,0,0,0,600.2558473867065 -15576,19229,35089,-9,35092,35090,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-969.4873844472852,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,537.25,10165.51944370349,112365.1300896492,0,0,1694.365993697303 -15576,19229,35090,35092,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.36966050381578,7.301434859965254,0,26,5,-7.478590246973582,0,3,3,2019,26,9,22,20,1,9,0,9.749540647798726,9.749540647798726,0,0,0,0,0,1,1,0,0,0,44.08,58,3.59,61.21,0,2,3,0,1,10,2,2,0,537.25,10165.51944370349,112365.1300896492,0,0,1694.365993697303 -15576,19229,35091,-9,35092,35090,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-998.2125344337322,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,2,3,-9,0,0,2,2,0,537.25,10165.51944370349,112365.1300896492,0,0,1694.365993697303 -15576,19229,35092,35090,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,0,0,0,26,-5,14.48684947919165,0,3,3,2019,34,11,0,0,3,11,0,0,0,0,0,0,1.280387602142714,0,1,1,0,0,0,3.59,61.21,44.08,58,0,2,3,1,1,0,2,2,0,537.25,10165.51944370349,112365.1300896492,0,0,1694.365993697303 -15576,19230,35093,-9,35092,35090,1,1,22,0,2,0,1,1,1,0,4,0,0,0,0,0,-985.5648789403501,-9,2,3,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,37.87,61.03,-9,-9,6.666666666666667,2,3,1,0,0,2,1,0,280,-53949.71746338014,0,0,0,0 -15576,19231,35094,-9,35092,35090,1,1,18,0,2,1,3,0,0,0,4,0,0,0,0,0,-1065.169373953503,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,1.666666666666667,2,3,0,1,0,2,1,0,515,0,0,0,0,0 -15577,19232,35095,35096,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,26,2,-13.44593140975153,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,0,56.57,51.02,59.31,49.81,10,1,1,0,0,7,2,5,1,994.5,283652.1463209328,66704.09989837842,67941.73417330338,51970.3609420909,2709.118832913628 -15577,19232,35096,35095,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.827711206102919,8.739785650012839,0,26,-2,-18.05183914826833,0,2,1,2019,8,0,55,55,1,0,0,16.03522358766729,16.03522358766729,0,0,0,0,2,0,0,0,0,0,59.31,49.81,56.57,51.02,10,1,1,0,0,11,2,5,1,994.5,283652.1463209328,66704.09989837842,67941.73417330338,51970.3609420909,2709.118832913628 -15578,19233,35097,-9,35103,35099,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-960.3816171008225,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35098,-9,35103,35099,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-969.1764929469575,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35099,35103,-9,-9,1,1,42,0,5,0,3,3,-9,0,2,7.345030764541709,7.117291890031092,0,19,2,14.25249997435525,0,3,3,2019,16,3,24,24,1,3,0,6.140854365161584,6.140854365161584,0,0,0,0,14.5,1,1,0,0,0,38.39,40.89,54.79,55.86,8.333333333333334,2,3,0,1,12,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35100,-9,35103,35099,1,0,15,0,5,1,3,0,-9,0,2,0,0,0,0,0,-980.9552334315537,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35101,-9,35103,35099,1,1,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1034.632589001362,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35102,-9,35103,35099,1,0,16,0,5,1,2,0,-9,0,3,0,0,0,0,0,-992.2615873824275,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19233,35103,35099,-9,-9,1,0,40,0,5,0,3,3,-9,0,4,0,0,0,19,-2,-77.4002924647513,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,38.39,40.89,6.666666666666667,2,3,0,0,0,2,2,0,579.4285714285714,1462063.316972957,1095776.391619133,235265.3775283426,0,2534.424210745854 -15578,19234,35104,-9,35103,35099,1,0,21,0,5,0,2,2,-9,0,3,7.983612691965269,7.832785723716916,0,0,0,-995.1022225535085,0,3,3,2019,20,6,37,0,1,6,1,8.184339498116683,8.184339498116683,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6.666666666666667,2,3,0,0,1,2,4,0,278,134492.8487737467,0,0,0,1440.967821258531 -15579,19235,35105,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.018872071484571,7.97456646956235,0,0,0,-974.8610268360294,0,2,2,2019,5,0,38,42,1,0,0,9.35271968142505,9.35271968142505,0,0,0,0,0,0,0,0,0,0,51.1,50.81,-9,-9,8.333333333333334,1,1,0,1,7,9,4,0,503,38963.19638559061,0,0,0,1826.385275934782 -15580,19236,35106,35107,-9,-9,1,1,89,0,0,0,3,3,-9,0,5,0,5.586386171823382,5.385306254844203,10,0,-35.92822377309999,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.282914981997731,5.385962436583548,58.05,54.52,53,45,10,1,1,0,0,0,11,2,1,162.5,445207.0077185716,-9406.843294604805,263754.1188819723,0,1520.554426603271 -15580,19236,35107,35106,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,10,0,-37.49835823016555,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.2348567365950585,0,53,45,58.05,54.52,8,1,1,0,0,0,11,2,1,162.5,445207.0077185716,-9406.843294604805,263754.1188819723,0,1520.554426603271 -15581,19237,35108,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,5,0,0,0,0,0,-881.1514175855041,0,3,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.61,30.18,-9,-9,5,1,1,0,0,0,13,1,0,301,121246.3506335234,0,0,0,1513.776641542961 -15581,19238,35109,-9,35108,-9,1,0,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1032.62945032275,0,2,-9,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,71.5,1,1,0,0,0,18.84,57.99,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,827,35839.40515588625,0,0,0,504.7536210951227 -15582,19239,35110,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.747031952253,0,1,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.24,19.06,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,447,0,0,0,0,665.1696055278669 -15583,19240,35111,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.021806391616174,8.199652598230852,0,0,0,-1003.902191854708,-9,3,-9,2019,33,12,44,0,1,12,0,7.557891434312586,7.557891434312586,0,0,0,0,0,1,1,0,0,0,5.07,65.52,-9,-9,1.666666666666667,1,1,0,0,11,12,4,0,404,184395.9993630568,0,0,0,1061.521366571477 -15584,19241,35112,-9,35115,35114,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.8995135904615,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,735.5,670816.854514976,14603.4341934733,728928.375804406,30819.15282364297,3696.375478177144 -15584,19241,35113,-9,35115,35114,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.545363664656,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,735.5,670816.854514976,14603.4341934733,728928.375804406,30819.15282364297,3696.375478177144 -15584,19241,35114,35115,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.457713404386809,8.423135381260774,0,15,2,54.91204031849767,0,3,3,2019,3,1,50,50,1,1,0,11.70909632899417,11.70909632899417,0,0,0,0,0,1,1,0,0,0,64.96000000000001,41.87,41.23,59.35,10,2,3,0,0,11,8,3,1,735.5,670816.854514976,14603.4341934733,728928.375804406,30819.15282364297,3696.375478177144 -15584,19241,35115,35114,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,6.102859241416704,6.077574511979305,0,15,-2,-3.068212453276835,0,2,1,2019,17,5,20,20,1,5,0,3.287593986124354,3.287593986124354,0,0,0,0,0,1,1,0,7.915797465847825,0,41.23,59.35,64.96000000000001,41.87,5,2,3,0,0,11,8,3,1,735.5,670816.854514976,14603.4341934733,728928.375804406,30819.15282364297,3696.375478177144 -15585,19242,35116,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,7.060182450897564,7.802766394525092,6.39341359955298,0,0,-1011.216557573653,0,1,1,2019,9,2,9,13,1,2,0,12.6715920787406,12.6715920787406,1,0,0,0,0,1,1,0,0,6.407872056417746,54.63,58.83,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,689,475205.5203927649,234460.9272920601,228825.37892869,0,1839.609560183979 -15586,19243,35117,35118,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,8.055260643968381,8.117351175964197,49,1,21.5114977217707,0,-9,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.875606941892471,8.151192254472447,62.39,56.71,63.66,46.31,10,1,1,0,0,0,8,3,1,230.5,1111866.238661426,622340.6523791924,168586.5188827097,0,4922.33896412841 -15586,19243,35118,35117,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.003464846940797,5.682750482705957,49,-1,-43.20440397043721,0,-9,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.377388351632558,5.373429093253255,63.66,46.31,62.39,56.71,10,1,1,0,0,0,8,3,1,230.5,1111866.238661426,622340.6523791924,168586.5188827097,0,4922.33896412841 -15587,19244,35119,35120,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.380800191722166,8.235083745935597,0,14,-10,66.20668162043148,0,2,3,2019,11,0,80,80,1,0,0,5.593441086113198,5.593441086113198,0,0,0,0,2,0,0,0,3.242512086956576,0,54.1,59.11,52,54.51,8.333333333333334,1,1,0,0,9,10,5,1,2753.5,51297.6002961261,142105.5397050079,0,0,2594.542494781082 -15587,19244,35120,35119,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.281942650095059,8.281921721702208,0,13,10,2.452976101257657,0,2,2,2019,7,0,25,25,1,0,0,16.99303500782394,16.99303500782394,0,0,0,0,0,0,0,0,5.761289018653492,0,52,54.51,54.1,59.11,8.333333333333334,1,1,0,0,9,10,5,1,2753.5,51297.6002961261,142105.5397050079,0,0,2594.542494781082 -15588,19245,35121,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.952369075395458,7.928759370240795,0,0,0,-1016.681100933039,0,2,-9,2019,14,3,60,54,1,3,0,5.194048995593091,5.194048995593091,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,1,5,11,4,0,294,327340.6413401413,249811.6727580989,0,0,1669.538251717453 -15588,19246,35122,-9,35121,-9,1,1,23,0,0,0,2,2,-9,0,4,8.23249222420713,7.920106044604596,0,0,0,-1000.222072040233,0,2,-9,2019,11,1,40,40,1,1,1,10.23966155043479,10.23966155043479,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,1,11,4,0,1331,67115.31640599616,26829.73163133655,0,0,1269.854131562985 -15588,19247,35123,-9,35121,-9,1,0,22,0,0,0,2,2,-9,0,4,7.952460267388036,8.025208395782512,0,0,0,-912.5768775095222,0,3,-9,2019,20,8,50,50,1,8,1,6.874593139199063,6.874593139199063,0,0,0,0,0,0,0,0,.1911216854230109,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,6,11,4,0,562,-104846.9087882205,0,0,0,1378.716989348511 -15589,19248,35124,35126,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.921575229637321,8.004650017049082,0,7,-2,2.145238638501245,0,2,2,2019,11,0,30,32,1,2,0,13.57985633529975,13.57985633529975,0,0,0,0,0,1,1,0,.2592397000582669,0,47,57,49.91,50.15,7,1,1,0,0,8,13,4,1,569.6666666666666,99081.31842604424,63300.53704257045,149704.6566271775,107367.4329470908,2022.760068298065 -15589,19248,35125,-9,35124,35126,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-983.6901300770936,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,569.6666666666666,99081.31842604424,63300.53704257045,149704.6566271775,107367.4329470908,2022.760068298065 -15589,19248,35126,35124,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,7.917865748894402,7.706612488717708,0,7,2,92.85315443727558,0,-9,-9,2019,12,2,37,40,1,2,0,8.583955202669234,8.583955202669234,0,0,0,0,0,1,1,0,0,0,49.91,50.15,47,57,6.666666666666667,1,1,0,0,9,13,4,1,569.6666666666666,99081.31842604424,63300.53704257045,149704.6566271775,107367.4329470908,2022.760068298065 -15590,19249,35127,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.293907243334704,8.56790267257834,0,0,0,-936.8474105125531,0,2,2,2019,11,0,65,12,1,0,0,8.701514904459714,8.701514904459714,0,0,0,0,0,1,1,0,0,0,43.03,53.23,-9,-9,5,4,2,0,0,9,6,4,1,449,100323.2978975986,119626.521427691,202622.5541432052,64019.24315255721,1692.721687830581 -15590,19249,35128,-9,35127,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.086876119023,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,4,1,449,100323.2978975986,119626.521427691,202622.5541432052,64019.24315255721,1692.721687830581 -15591,19250,35129,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.102057052287535,7.971362108217646,0,0,0,-995.8933905641592,0,2,2,2019,5,0,40,40,1,0,0,8.545964074063633,8.545964074063633,0,0,0,0,2,1,1,0,0,0,54.39,39.65,-9,-9,10,1,1,0,0,9,7,4,1,174,139119.0933425171,130475.9556261622,0,0,1226.944099704707 -15592,19251,35130,-9,35132,35131,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.992545118276,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,487.3333333333333,2248239.699486381,1626783.497088583,596070.1248192791,122954.8936833766,3126.617551798092 -15592,19251,35131,35132,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,0,0,0,23,10,117.908381585446,0,3,3,2019,12,3,0,20,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.85,49.12,63.56,36.87,3.333333333333333,1,1,0,1,12,10,5,1,487.3333333333333,2248239.699486381,1626783.497088583,596070.1248192791,122954.8936833766,3126.617551798092 -15592,19251,35132,35131,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.057279675084207,9.266046342425456,0,10,-10,-126.0787109256485,0,2,1,2019,7,0,44,44,1,0,0,25.86309064012842,25.86309064012842,0,0,0,0,0,1,1,0,0,0,63.56,36.87,51.85,49.12,8.333333333333334,1,1,0,0,12,10,5,1,487.3333333333333,2248239.699486381,1626783.497088583,596070.1248192791,122954.8936833766,3126.617551798092 -15593,19252,35133,35134,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.66126922284572,8.869801530045006,0,4,6,74.02121537805232,0,2,2,2019,7,0,42,45,1,0,0,17.35733095352001,17.35733095352001,0,0,0,0,0,0,0,0,0,0,52.99,51.28,50.08,55.33,6.666666666666667,1,1,0,0,11,9,5,1,487,134796.0596301069,58593.60611521886,385811.1242643592,300213.9480953102,5298.094184803373 -15593,19252,35134,35133,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.940757108426252,8.916891633372705,0,4,-6,-29.78543620157982,0,2,2,2019,10,0,40,42,1,0,0,21.601452134231,21.601452134231,0,0,0,0,0,0,0,0,0,0,50.08,55.33,52.99,51.28,8.333333333333334,1,1,0,0,11,9,5,1,487,134796.0596301069,58593.60611521886,385811.1242643592,300213.9480953102,5298.094184803373 -15594,19253,35135,-9,35136,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.188132595744,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,3,1,356.25,38221.43057816164,-17681.83379160035,0,0,1899.925294131253 -15594,19253,35136,35138,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,6.742986962061901,6.923875515801356,0,6,-1,-104.0683536696582,0,3,3,2019,12,0,25,40,1,0,0,4.571678959491009,4.571678959491009,0,0,0,0,0,1,1,0,0,0,46.08,57.2,41.34,56.62,5,2,3,0,0,9,4,3,1,356.25,38221.43057816164,-17681.83379160035,0,0,1899.925294131253 -15594,19253,35137,-9,35136,35138,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.492399150058,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,356.25,38221.43057816164,-17681.83379160035,0,0,1899.925294131253 -15594,19253,35138,35136,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,7.722597470904636,7.887709186178244,0,6,1,-13.16212029117414,0,-9,-9,2019,12,0,35,50,1,0,0,7.700606967634157,7.700606967634157,0,0,0,0,0,1,1,0,0,0,41.34,56.62,46.08,57.2,5,2,3,0,0,5,4,3,1,356.25,38221.43057816164,-17681.83379160035,0,0,1899.925294131253 -15595,19254,35139,35140,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.179143730184823,7.251428256837487,0,41,3,61.36724869854834,0,3,2,2019,6,0,30,24,1,0,0,5.2336913164329,5.2336913164329,0,0,0,0,0,1,1,0,0,0,54.69,42.32,64.34,32.63,8.333333333333334,2,3,0,0,8,6,2,0,447.3333333333333,130840.4570531009,0,0,0,1643.126518203046 -15595,19254,35140,35139,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,0,0,0,21,-3,-65.55960793039785,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.34,32.63,54.69,42.32,8.333333333333334,2,3,0,1,0,6,2,0,447.3333333333333,130840.4570531009,0,0,0,1643.126518203046 -15595,19254,35141,-9,35140,35139,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.180244294374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,447.3333333333333,130840.4570531009,0,0,0,1643.126518203046 -15596,19255,35142,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.734553901514785,8.654486595151438,0,0,0,-960.108772228795,0,2,1,2019,6,0,37,50,1,0,0,13.4800321981413,13.4800321981413,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,1060,19770.14846120906,92389.97483451333,256955.1574780936,166018.9854245291,1685.538633608044 -15597,19256,35143,-9,35145,35144,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.969537775218,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,12,5,1,452.3333333333333,329015.5353109444,182209.717042981,410336.0618192971,290106.8509313685,8446.117415236185 -15597,19256,35144,35145,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.869454105396818,9.833410803917127,0,19,0,-38.92646485459317,-9,-9,-9,2019,8,0,90,0,1,0,0,24.30326530321801,24.30326530321801,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,7,12,5,1,452.3333333333333,329015.5353109444,182209.717042981,410336.0618192971,290106.8509313685,8446.117415236185 -15597,19256,35145,35144,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,0,0,0,21,0,-100.2920836658849,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,57.16,56.15,10,4,2,0,0,0,12,5,1,452.3333333333333,329015.5353109444,182209.717042981,410336.0618192971,290106.8509313685,8446.117415236185 -15598,19257,35146,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,0,0,0,0,0,-992.7536379220822,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,1,0,0,9,1,0,597,53514.79539040896,0,0,0,829.3926812180317 -15598,19257,35147,-9,35146,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.1853364255296,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,597,53514.79539040896,0,0,0,829.3926812180317 -15598,19257,35148,-9,35146,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.666829147576,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,597,53514.79539040896,0,0,0,829.3926812180317 -15599,19258,35149,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.467795197094064,8.158902075198544,0,0,0,-983.3822015286337,0,2,2,2019,7,0,42,37,1,0,0,13.24312871066227,13.24312871066227,0,0,0,0,0,1,1,0,4.916499470306697,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,1407,2213797.089240361,1406035.764724103,476853.7426439383,0,1905.511471679988 -15600,19259,35150,35152,-9,-9,1,0,49,0,3,0,1,1,-9,0,3,8.327726109606379,8.336989764140228,0,10,-1,19.19119256514143,0,2,2,2019,11,0,36,36,1,0,0,15.14075817448605,15.14075817448605,0,0,0,0,0,1,1,0,6.517729606539842,0,57.09,46.7,57.16,56.15,6.666666666666667,1,1,0,0,11,13,4,1,768.6,712592.7102850706,523326.1277451344,187098.4350325087,51418.78450897156,4521.647370043775 -15600,19259,35151,-9,35150,35152,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1211.773048672979,-9,1,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.77,67.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,768.6,712592.7102850706,523326.1277451344,187098.4350325087,51418.78450897156,4521.647370043775 -15600,19259,35152,35150,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,8.371716202796362,8.597688410105375,0,10,1,150.055036919541,0,2,3,2019,6,0,41,40,1,0,0,14.79339698250183,14.79339698250183,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,11,13,4,1,768.6,712592.7102850706,523326.1277451344,187098.4350325087,51418.78450897156,4521.647370043775 -15600,19259,35153,-9,35150,35152,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-790.6065396959179,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,768.6,712592.7102850706,523326.1277451344,187098.4350325087,51418.78450897156,4521.647370043775 -15600,19259,35154,-9,35150,35152,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.4744695523683,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,768.6,712592.7102850706,523326.1277451344,187098.4350325087,51418.78450897156,4521.647370043775 -15601,19260,35155,35156,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,9.113720378432205,8.740097837645589,0,8,-3,-75.19291489862896,0,2,-9,2019,7,0,38,38,1,0,0,23.70387478726736,23.70387478726736,0,0,0,0,0,1,1,0,4.509401596321011,0,57.15,45.78,36.92,51.87,8.333333333333334,1,1,0,0,9,12,5,1,402,1034313.330746148,910860.3023870862,165647.3588586889,10977.57142903847,3185.730578836663 -15601,19260,35156,35155,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,8,3,-134.0989395142129,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,36.92,51.87,57.15,45.78,8.333333333333334,1,1,0,0,0,12,5,1,402,1034313.330746148,910860.3023870862,165647.3588586889,10977.57142903847,3185.730578836663 -15601,19261,35157,-9,35155,35156,1,0,19,0,0,0,2,2,-9,0,4,6.331541348035699,6.418789657893528,0,0,0,-962.8251563496947,0,1,2,2019,12,0,12,0,1,2,1,4.293099259905997,4.293099259905997,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,12,2,1,2622,173995.5291278417,0,0,0,127.069559478374 -15602,19262,35158,35159,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.675484262119739,7.552849493340377,46,-1,-56.22727169882138,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.540316382150736,7.536509678922859,57.17,50.61,58.46,39.69,3.333333333333333,1,1,0,0,4,6,3,0,1835.5,493492.8789048719,0,375777.2011091204,0,2708.416838920254 -15602,19262,35159,35158,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,6.685450040515763,6.263893642660626,46,1,136.8643119387947,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.337841742883995,6.717740178976536,58.46,39.69,57.17,50.61,8.333333333333334,1,1,0,0,0,6,3,0,1835.5,493492.8789048719,0,375777.2011091204,0,2708.416838920254 -15603,19263,35160,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.004207465774059,5.577215368381321,0,0,-922.1360338849422,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,5.592862150566745,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,548,886021.377373111,239196.9808473765,417337.1500836933,0,-25.31011829183637 -15604,19264,35161,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.096085262597898,9.013313153214083,0,0,0,-1088.525838139979,0,3,3,2019,6,0,38,37,1,0,0,20.43340652194882,20.43340652194882,0,0,0,0,2,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,12,4,5,1,317,341211.143938977,-34986.47488295224,162995.7522819109,92031.96003203488,3009.844747034845 -15605,19265,35162,35163,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.733190048374944,7.907141073286836,0,8,0,4.365131265836867,0,1,2,2019,13,1,37,38,1,1,0,8.267090794051787,8.267090794051787,0,0,0,0,0,1,1,0,0,0,34.16,44.91,42.26,34.55,8.333333333333334,1,1,0,0,7,2,3,0,541.5,102982.5186431464,66727.0791464471,0,0,1784.312695032428 -15605,19265,35163,35162,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.146225019393079,7.054643213041436,0,8,0,-7.775522023438771,0,3,3,2019,14,1,38,39,1,1,0,3.845385205527307,3.845385205527307,0,0,0,0,0,1,1,0,0,0,42.26,34.55,34.16,44.91,6.666666666666667,1,1,0,0,7,2,3,0,541.5,102982.5186431464,66727.0791464471,0,0,1784.312695032428 -15605,19266,35164,-9,35163,35162,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.906339881637,0,2,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.49,43.86,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,273,-17453.70715259035,0,0,0,208.8016701694146 -15606,19267,35165,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,8.317487992770815,8.095320243106251,5.811105181865368,0,0,-980.5277849659765,0,3,2,2019,21,9,40,40,1,9,0,9.366119497559852,9.366119497559852,0,0,0,0,0,0,0,0,4.406899521879351,5.705120086046993,29.35,38.19,-9,-9,6.666666666666667,1,1,0,0,10,8,4,0,777,-51771.93771408449,120584.5750023206,0,0,1645.924748496082 -15607,19268,35166,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-948.2192288309993,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,78.45015021944725,0,0,1,1,0,0,0,40.03,40.79,-9,-9,10,1,1,0,0,0,13,1,0,270,-148759.8774647496,0,0,0,1354.040535714978 -15608,19269,35167,35168,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.554939180605329,8.846899615883446,7.04754156994223,44,1,47.26682268476265,0,2,2,2019,6,0,37,37,1,0,0,19.82941147783,19.82941147783,0,0,0,0,0,0,0,0,1.409618355058175,7.68224682514179,57.16,56.15,54.57,60.2,10,1,1,0,0,9,10,5,1,440.5,2190782.852090998,1951860.946814553,231510.8920867284,0,3862.770204234041 -15608,19269,35168,35167,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.785590118484959,7.937728166215669,0,43,-1,75.64049238526566,0,2,3,2019,10,1,27,29,1,1,0,11.46155326091754,11.46155326091754,0,0,0,0,2,0,0,0,0,0,54.57,60.2,57.16,56.15,10,1,1,0,0,10,10,5,1,440.5,2190782.852090998,1951860.946814553,231510.8920867284,0,3862.770204234041 -15609,19270,35169,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.757984527232712,5.821308710911081,0,0,-1143.261558029937,0,3,3,2019,8,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.564132358576345,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,9,1,2,0,741,241157.7610820237,151449.7170106821,0,0,1244.933119665595 -15610,19271,35170,-9,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.475750094064567,8.244054535904585,0,8,2,94.44441597435892,0,-9,-9,2019,13,1,42,42,1,1,0,11.74869421603278,11.74869421603278,0,0,0,0,0,1,1,0,0,0,41.74,55.02,52.37,56.93,6.666666666666667,1,1,0,0,9,12,5,1,252,61432.17250301391,48749.15494927398,0,0,1292.00735682298 -15611,19272,35171,35172,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-2,-136.5911216087317,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.9138879942393185,0,52.76,37.52,56.35,29.9,8.333333333333334,1,1,0,0,0,6,3,1,293,377691.9460073091,174647.7332481517,145560.2946085611,0,2482.412194405221 -15611,19272,35172,35171,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.359690708782066,7.555890622116593,49,2,34.63580298068538,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.317298052030003,7.742258273090755,56.35,29.9,52.76,37.52,8.333333333333334,1,1,0,0,0,6,3,1,293,377691.9460073091,174647.7332481517,145560.2946085611,0,2482.412194405221 -15612,19273,35173,35174,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,53,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,21.89372097010875,0,0,1,1,0,0,0,52,48,45.52,22.54,7,1,1,0,0,0,13,1,0,725.5,330952.0339493442,-51172.96486117129,239056.4554063922,0,3101.771577674755 -15612,19273,35174,35173,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,27,1,1,0,0,0,45.52,22.54,52,48,6.666666666666667,1,1,0,0,0,13,1,0,725.5,330952.0339493442,-51172.96486117129,239056.4554063922,0,3101.771577674755 -15613,19274,35175,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,0,0,-982.3339540637934,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,43.59,-9,-9,6.666666666666667,3,4,0,0,11,8,1,1,1146,12852.29161147632,0,0,0,-390.9980152168816 -15613,19275,35176,-9,35175,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-940.2795118999884,-9,1,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.19,59.22,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,1635,-103181.5762438119,0,0,0,-376.1588335823816 -15614,19276,35177,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.7299366389079,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,988,-4271.243638187325,0,0,0,568.2455591553399 -15615,19277,35178,35179,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.822415612362754,5.017101360913288,4,2,69.31409423278764,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.755674006971047,4.822492241418482,40.02,47.88,16.04,23.99,5,1,1,0,0,0,4,2,1,1151,41877.864234784,-38184.11589302576,0,0,988.0278141060519 -15615,19277,35179,35178,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,4,-2,17.84563591554828,0,3,3,2019,36,12,0,0,4,12,0,0,0,1,1.924267524383243,5.734591758698876,30.64392460218128,5.48,1,1,0,0,0,16.04,23.99,40.02,47.88,0,1,1,0,1,0,4,2,1,1151,41877.864234784,-38184.11589302576,0,0,988.0278141060519 -15616,19278,35180,-9,-9,-9,1,0,57,0,1,0,2,2,-9,0,2,7.652220255061741,7.389163056387546,0,0,0,-936.4591915944063,0,-9,2,2019,15,4,48,43,1,4,0,4.644525177230232,4.644525177230232,0,0,0,0,0,1,1,0,0,0,33.48,45.86,-9,-9,3.333333333333333,1,1,0,0,12,12,3,0,433,49537.55839413599,-29182.90494402453,105152.8401609945,0,1096.45042244298 -15616,19279,35181,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.450523521778493,8.221401990506084,0,0,0,-1046.157177924015,0,2,2,2019,13,1,38,20,1,1,0,11.18628227103301,11.18628227103301,0,0,0,0,0,1,1,0,0,0,34.47,48.16,-9,-9,5,1,1,0,1,12,12,3,0,300,344468.582293985,109870.5852698655,283491.3589031646,116782.1159141103,1484.902029567988 -15617,19280,35182,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.247213136360685,8.223012260063856,0,0,0,-1038.240127163481,0,2,2,2019,7,0,37,42,1,0,0,13.42202512808902,13.42202512808902,0,0,0,0,0,0,0,0,0,0,40.44,51.49,-9,-9,8.333333333333334,3,4,0,0,3,10,4,0,1453,-9771.171200482619,98341.47992256579,0,0,1107.384198349837 -15618,19281,35183,-9,35185,35184,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.174826900463,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,575.75,135931.6523942532,-51530.19753670925,244324.9367006362,101341.8594276933,3996.61894462489 -15618,19281,35184,35185,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.950283791577061,9.055694020858576,0,20,6,3.270770438411111,0,2,2,2019,17,5,45,45,1,5,0,22.3839452568977,22.3839452568977,0,0,0,0,0,0,0,0,4.714833929770179,0,41.23,59.35,32.25,47.54,5,1,1,0,0,11,2,5,1,575.75,135931.6523942532,-51530.19753670925,244324.9367006362,101341.8594276933,3996.61894462489 -15618,19281,35185,35184,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.742402755626447,7.64876084492485,0,20,-6,59.98752703312073,0,-9,2,2019,21,9,30,20,1,9,0,8.296488832712452,8.296488832712452,0,0,0,0,0,0,0,0,0,0,32.25,47.54,41.23,59.35,6.666666666666667,1,1,0,0,11,2,5,1,575.75,135931.6523942532,-51530.19753670925,244324.9367006362,101341.8594276933,3996.61894462489 -15618,19281,35186,-9,35185,35184,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.708585470123,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,575.75,135931.6523942532,-51530.19753670925,244324.9367006362,101341.8594276933,3996.61894462489 -15619,19282,35187,35188,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.877383476100754,6.783106885717359,9,2,76.31192403741571,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.207883854497916,6.855301720511617,43.85,34.28,50.15,44.48,8.333333333333334,1,1,0,0,4,7,3,1,1083.5,847532.6872347537,233676.8495638923,472461.2561735648,0,1801.78574472629 -15619,19282,35188,35187,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.990761292919057,7.350818791419298,9,-2,48.25640864149126,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.656774416819791,7.296709927892305,50.15,44.48,43.85,34.28,8.333333333333334,1,1,0,0,3,7,3,1,1083.5,847532.6872347537,233676.8495638923,472461.2561735648,0,1801.78574472629 -15620,19283,35189,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.537940264570285,8.942900299470727,0,0,0,-1003.913992754487,0,2,2,2019,11,0,35,40,1,0,0,18.94171425089468,18.94171425089468,0,0,0,0,0,0,0,0,0,0,42.61,54.85,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,789,47037.42689496736,9542.356501654602,0,0,1698.170811862391 -15621,19284,35190,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.454558014976195,8.531766920247666,0,0,0,-1031.956374506298,0,-9,-9,2019,7,0,66,104,1,0,0,11.9497319001502,11.9497319001502,0,0,0,0,0,0,0,0,5.990308223253011,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,4,4,5,1,1388,-96373.98606133224,116141.3849266787,0,0,2098.841297206839 -15622,19285,35191,35193,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.383001436938088,9.338351442041356,0,9,1,-56.61175337784947,0,1,1,2019,8,0,40,40,1,0,0,34.30636690843039,34.30636690843039,0,0,0,0,0,0,0,0,3.941322548195588,0,58.74,48.72,45.95,31.45,8.333333333333334,2,3,0,0,9,8,5,1,867.25,156658.1987359516,192468.3017361574,0,0,9396.106409473703 -15622,19285,35192,-9,35193,35191,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-844.5038997076745,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,867.25,156658.1987359516,192468.3017361574,0,0,9396.106409473703 -15622,19285,35193,35191,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,9.049983484094948,9.021517909224029,0,9,-1,-51.84381510407923,0,3,3,2019,12,2,72,0,1,2,0,16.44930802955377,16.44930802955377,0,0,0,0,0,0,0,0,0,0,45.95,31.45,58.74,48.72,8.333333333333334,2,3,0,0,0,8,5,1,867.25,156658.1987359516,192468.3017361574,0,0,9396.106409473703 -15622,19285,35194,-9,35193,35191,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.748110596015,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,867.25,156658.1987359516,192468.3017361574,0,0,9396.106409473703 -15623,19286,35195,-9,-9,-9,1,0,34,0,1,0,3,3,-9,1,2,0,5.887322420626319,5.896250924445974,0,0,-968.543524650882,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,5.69002115069093,0,42.27,39.15,-9,-9,3.333333333333333,1,1,0,0,2,4,2,0,361,-161265.185005181,34979.30634898604,0,0,1972.19359956763 -15624,19287,35196,-9,35199,35197,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.296981555056,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1234.25,281058.6515143384,171255.0988189969,398350.7523387967,283967.9165482598,3353.41893372432 -15624,19287,35197,35199,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.633943844047087,8.531227852807548,0,7,1,52.01895452946132,0,2,2,2019,6,0,37,41,1,0,0,11.98905340400072,11.98905340400072,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.35,59.64,6.666666666666667,1,1,0,0,11,13,4,1,1234.25,281058.6515143384,171255.0988189969,398350.7523387967,283967.9165482598,3353.41893372432 -15624,19287,35198,-9,35199,35197,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.919137785236,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1234.25,281058.6515143384,171255.0988189969,398350.7523387967,283967.9165482598,3353.41893372432 -15624,19287,35199,35197,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,8.446393502540687,8.711326583039458,0,7,-1,16.24080414269208,0,-9,-9,2019,12,2,37,37,1,2,0,14.7921291309227,14.7921291309227,0,0,0,0,0,1,1,0,0,0,49.35,59.64,49.12,57.28,8.333333333333334,1,1,0,0,10,13,4,1,1234.25,281058.6515143384,171255.0988189969,398350.7523387967,283967.9165482598,3353.41893372432 -15625,19288,35200,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.108388616089997,7.905374920953141,0,0,0,-1060.899360034308,0,2,3,2019,10,1,37,40,1,1,0,8.113412010682325,8.113412010682325,0,0,0,0,0,0,0,0,0,0,44.83,40.32,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,197,157510.0385823824,121591.9402453212,0,0,1184.390516483743 -15626,19289,35201,-9,35203,35202,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.8448114141115,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,12,3,1,768.6666666666666,1211593.152271134,874218.4495737191,300168.1328993228,68969.10447195354,3329.255266860375 -15626,19289,35202,35203,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,8.342673386870127,8.407240950846818,0,6,8,-10.82458725555471,0,2,2,2019,6,0,47,0,1,0,0,10.50834054322636,10.50834054322636,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.77,60.16,10,1,1,0,0,6,12,3,1,768.6666666666666,1211593.152271134,874218.4495737191,300168.1328993228,68969.10447195354,3329.255266860375 -15626,19289,35203,35202,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,7.661934693988153,7.822664873301627,0,6,-8,97.13468109229881,0,2,2,2019,7,0,42,18,1,0,0,5.741248755022538,5.741248755022538,0,0,0,0,0,1,1,0,0,0,48.77,60.16,60.02,56.42,8.333333333333334,1,1,0,0,6,12,3,1,768.6666666666666,1211593.152271134,874218.4495737191,300168.1328993228,68969.10447195354,3329.255266860375 -15627,19290,35204,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.762589936549651,7.905288585118437,0,0,0,-1029.315510791612,0,2,2,2019,7,0,40,40,1,0,0,6.858737262905255,6.858737262905255,0,0,0,0,0,0,0,0,0,0,52.66,24.85,-9,-9,1.666666666666667,4,2,0,0,11,5,3,0,412,361812.8678596604,-39850.34137531933,0,0,1368.743916437101 -15628,19291,35205,35206,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.675048556552951,6.95998143518916,49,1,77.19434041844508,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,9.065358883033618,0,2,1,1,0,0,6.985730651275108,38.73,31.46,53.22,55.2,8.333333333333334,1,1,0,0,0,11,2,1,1331.5,493419.6856525713,172215.1986071745,189489.3424513087,0,1083.493246798241 -15628,19291,35206,35205,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,49,-1,44.34506143759407,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,53.22,55.2,38.73,31.46,10,1,1,0,0,7,11,2,1,1331.5,493419.6856525713,172215.1986071745,189489.3424513087,0,1083.493246798241 -15629,19292,35207,35208,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,41,1,-6.091660559619326,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,3.418647605769582,0,0,1,1,0,0,0,52.16,23.46,57.33,53.46,6.666666666666667,1,1,0,0,6,7,2,1,777,720624.445893121,224983.8513370185,660494.2617804667,0,2087.766775962687 -15629,19292,35208,35207,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.359622057673294,6.60442511071885,9,-1,35.45728906045019,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.684678446892129,57.33,53.46,52.16,23.46,8.333333333333334,1,1,0,0,0,7,2,1,777,720624.445893121,224983.8513370185,660494.2617804667,0,2087.766775962687 -15630,19293,35209,35210,-9,-9,1,1,42,0,5,0,2,2,-9,0,3,8.455307977949593,8.643474109054962,0,1,13,104.3567304784457,-9,-9,-9,2019,14,2,40,0,1,2,0,11.24105073547244,11.24105073547244,0,0,0,0,0,1,1,0,0,0,45.81,39.6,62.49,55.09,6.666666666666667,1,1,0,0,13,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15630,19293,35210,35209,-9,-9,1,0,29,0,5,0,2,2,-9,0,4,0,0,0,1,-13,34.10552748150754,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,45.81,39.6,8.333333333333334,1,1,0,0,0,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15630,19293,35211,-9,35210,35209,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-917.7059585731055,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15630,19293,35212,-9,35210,35209,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-958.8764463577779,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15630,19293,35213,-9,35210,35209,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.5651779242882,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15630,19293,35214,-9,35210,35209,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-984.1566194098612,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,842.3333333333334,170207.5773812172,0,293426.6407161634,118958.8786460865,3179.278714290395 -15631,19294,35215,-9,35216,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.8627260034101,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,625.3333333333334,-71175.95698355844,0,0,0,2454.675191509568 -15631,19294,35216,-9,-9,-9,1,0,51,0,2,0,3,3,-9,1,2,0,0,0,0,0,-947.3866776462448,0,2,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,24.33,-9,-9,5,1,1,1,0,1,11,1,0,625.3333333333334,-71175.95698355844,0,0,0,2454.675191509568 -15631,19294,35217,-9,35216,-9,1,0,17,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1112.476387395394,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.58,46.97,-9,-9,10,1,1,1,0,0,11,1,0,625.3333333333334,-71175.95698355844,0,0,0,2454.675191509568 -15632,19295,35218,35224,-9,-9,1,0,39,1,4,0,2,2,-9,0,3,0,0,0,2,4,-9.078012413292004,0,2,-9,2019,14,2,0,17,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.29,61.29,50,57,5,4,2,0,0,5,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35219,-9,35218,35224,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1136.238697513602,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35220,-9,35218,35224,1,1,17,1,4,0,2,2,1,0,4,0,0,0,0,0,-1046.467672259017,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.1528606556905364,0,47,59,-9,-9,7,4,2,0,0,0,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35221,-9,35218,35224,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1103.514072538247,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35222,-9,35218,35224,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.2512703887827,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35223,-9,35218,35224,1,0,13,1,4,1,3,0,-9,0,1,0,0,0,0,0,-1106.996076299014,-9,2,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,4,2,-9,0,0,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15632,19295,35224,35218,-9,-9,1,1,35,1,4,0,2,2,-9,0,4,8.576504534660602,8.412750051327802,0,2,-4,-17.26600463405236,0,-9,-9,2019,10,0,40,37,1,1,0,12.91056666326776,12.91056666326776,0,0,0,0,0,1,1,0,0,0,50,57,31.29,61.29,7,1,1,0,0,1,9,3,0,759.1428571428571,60493.90476537393,0,0,0,3111.234875952113 -15633,19296,35225,35226,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,7.26015608274471,7.12242446384887,0,8,4,104.9181470962265,0,-9,-9,2019,8,0,16,0,1,0,0,6.396322823710022,6.396322823710022,0,0,0,0,110,1,1,0,0,0,54.96,53.17,42.94,31.97,8.333333333333334,1,1,0,0,2,13,2,0,1131.5,226277.0011984018,146318.585322052,128852.7844694974,0,2215.481510332461 -15633,19296,35226,35225,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,8,-4,-116.0568980183338,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.94,31.97,54.96,53.17,6.666666666666667,1,1,0,0,0,13,2,0,1131.5,226277.0011984018,146318.585322052,128852.7844694974,0,2215.481510332461 -15634,19297,35227,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.891414542109803,7.487376081720603,0,0,-1006.078574435755,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.861425797334596,7.669958250129041,54.63,47.91,-9,-9,10,1,1,0,0,0,13,3,1,308,397791.7990953132,286562.1893404383,175486.4764843633,69653.15952053075,1792.199376136798 -15635,19298,35228,35229,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.611641916826327,6.804150778447155,7,4,-11.705723377033,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.551430933266771,6.787379214430363,54.2,57.49,60.42,54.81,8.333333333333334,1,1,0,0,4,11,5,1,695.5,579613.9634020736,786560.8613449924,0,0,9438.04883987143 -15635,19298,35229,35228,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.771812045782053,9.449509862871151,4.229922654278764,7,-4,-71.762839567087,0,3,3,2019,7,0,48,52,1,0,0,41.90083545053037,41.90083545053037,0,0,0,0,0,1,1,0,4.555225283685241,4.318369440899245,60.42,54.81,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,695.5,579613.9634020736,786560.8613449924,0,0,9438.04883987143 -15636,19299,35230,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.3197841179827,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,14.35976397266021,0,0,1,1,0,0,0,25.79,46.88,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,459,-199663.2097376187,0,63453.77641350895,0,1830.879248860045 -15637,19300,35231,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.737460659080277,7.745886788861816,0,0,0,-1121.296052221235,0,2,3,2019,11,0,37,37,1,0,0,8.353646474921636,8.353646474921636,0,0,0,0,0,1,1,0,0,0,39.88,47.82,-9,-9,6.666666666666667,1,1,0,0,12,7,3,0,445,114691.0228732483,0,0,0,1345.126896417707 -15638,19301,35232,35235,-9,-9,1,0,29,2,4,0,2,2,-9,0,4,0,0,0,13,-10,8.007944318235062,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.66,38.31,39.1,39.93,8.333333333333334,1,1,0,0,8,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15638,19301,35233,-9,35232,35235,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1129.763512502332,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15638,19301,35234,-9,35232,35235,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-955.386813132846,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15638,19301,35235,35232,-9,-9,1,1,39,2,4,0,1,1,-9,0,4,8.697597999254807,8.664000351134456,0,13,10,61.15163047487135,0,2,1,2019,14,2,38,39,1,2,0,14.49222587528277,14.49222587528277,0,0,0,0,0,1,1,0,0,0,39.1,39.93,39.66,38.31,8.333333333333334,4,2,0,0,10,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15638,19301,35236,-9,35232,35235,1,1,3,2,4,1,3,0,-9,0,4,0,0,0,0,0,-977.5572050561776,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15638,19301,35237,-9,35232,35235,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1067.557667495358,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,1146.166666666667,56298.59286826876,-20790.76791535611,0,0,3164.130715717886 -15639,19302,35238,35239,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.235547860569946,7.293968386096398,0,10,0,144.2991979804428,0,-9,-9,2019,13,1,23,23,1,1,0,7.755214449414565,7.755214449414565,0,0,0,0,0,0,0,0,0,0,47.81,46.8,46.5,58.26,6.666666666666667,1,1,0,0,11,4,4,1,775.5,284094.9872179271,267411.0692775076,0,0,2477.812714845433 -15639,19302,35239,35238,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.330783803520699,8.211800338883824,0,10,0,33.41646890869131,0,-9,-9,2019,11,0,38,39,1,0,0,12.19099691018082,12.19099691018082,0,0,0,0,0,0,0,0,0,0,46.5,58.26,47.81,46.8,6.666666666666667,1,1,0,0,11,4,4,1,775.5,284094.9872179271,267411.0692775076,0,0,2477.812714845433 -15639,19303,35240,-9,35238,35239,1,0,26,0,0,0,2,2,-9,0,5,6.549631491769123,6.793782753781521,0,0,0,-1060.344540467681,0,2,3,2019,8,0,12,12,1,0,1,8.155177395321461,8.155177395321461,0,0,0,0,0,0,0,0,0,0,46.59,59.97,-9,-9,6.666666666666667,1,1,0,0,5,4,2,1,1184,74782.62131148641,0,0,0,89.50141675140958 -15640,19304,35241,35242,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.598898788460961,7.437391925749661,36,-3,-66.27677199703005,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.944275977003085,58.32,50.22,24.17,24.28,8.333333333333334,1,1,0,0,9,2,3,1,896.5,898645.6796331592,640507.477747008,196659.3398931979,0,2715.359611150429 -15640,19304,35242,35241,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,5.497861906314216,5.244959690423676,36,3,111.8973610635892,0,3,2,2019,32,12,0,0,4,12,0,0,0,1,0,28.88190865454928,0,0,1,1,0,2.301197002353638,5.346395698930191,24.17,24.28,58.32,50.22,3.333333333333333,1,1,0,0,6,2,3,1,896.5,898645.6796331592,640507.477747008,196659.3398931979,0,2715.359611150429 -15641,19305,35243,35244,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,1.547806447141187,1.366450222252436,52,-1,-119.7390725728151,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,15.00592505519427,0,0,1,1,0,1.401538504888238,1.194845665140369,38.21,39.47,50.2,52.61,3.333333333333333,1,1,0,0,0,1,3,1,556,280975.8266378448,246123.3885967873,205580.5841889833,0,2504.450240114364 -15641,19305,35244,35243,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.573636757549166,7.881598447526413,10,1,-151.2491905800682,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.716913831031922,7.572137776050877,50.2,52.61,38.21,39.47,8.333333333333334,1,1,0,0,9,1,3,1,556,280975.8266378448,246123.3885967873,205580.5841889833,0,2504.450240114364 -15642,19306,35245,-9,35247,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.8961613936727,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,5,1,514.6666666666666,542794.5099726372,331793.0928158112,463913.5126673183,256102.0440847805,4164.688674539027 -15642,19306,35246,-9,35247,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.412155985303,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,514.6666666666666,542794.5099726372,331793.0928158112,463913.5126673183,256102.0440847805,4164.688674539027 -15642,19306,35247,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,9.110980580942037,9.069849414886633,0,0,0,-1012.449864006781,0,2,-9,2019,15,4,48,40,1,4,0,24.51772356552957,24.51772356552957,0,0,0,0,27,1,1,0,0,0,38.53,64.73,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,514.6666666666666,542794.5099726372,331793.0928158112,463913.5126673183,256102.0440847805,4164.688674539027 -15643,19307,35248,35249,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.108903366555294,7.867255702348964,0,5,-4,87.61959790569618,0,2,2,2019,9,2,24,25,1,2,0,16.23028375442175,16.23028375442175,0,0,0,0,7,0,0,0,.8990388689525269,0,50.67,36.38,55,53,8.333333333333334,4,2,0,0,9,4,5,1,358.5,2054589.071201689,1669264.936273389,188852.7543754897,0,3763.720879136091 -15643,19307,35249,35248,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.491657850456839,8.508682712112586,0,5,4,-95.14415488760586,0,-9,-9,2019,8,0,35,35,1,0,0,19.23985525162053,19.23985525162053,0,0,0,0,0,0,0,0,3.702979154399797,0,55,53,50.67,36.38,8,1,1,0,0,1,4,5,1,358.5,2054589.071201689,1669264.936273389,188852.7543754897,0,3763.720879136091 -15644,19308,35250,35251,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.215674030344161,6.245445329077792,7,0,-119.1524507606091,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.00466007957993,34.75,46.14,31.92,23.76,5,1,1,0,0,0,10,2,1,460.5,212979.4088884217,81405.70531010779,272008.2363211047,0,1234.977929933146 -15644,19308,35251,35250,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,3.832903206415831,3.972848165427425,7,0,33.83620408427586,0,3,3,2019,20,10,0,0,4,10,0,0,0,1,0,17.27676962626894,0,0,1,1,0,0,3.88808748903771,31.92,23.76,34.75,46.14,3.333333333333333,1,1,0,0,0,10,2,1,460.5,212979.4088884217,81405.70531010779,272008.2363211047,0,1234.977929933146 -15645,19309,35252,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.727671363841028,5.787632272700802,0,0,-962.1801869122564,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.820011294522932,5.654719826415723,39.47,54.48,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,434,100778.1179737491,93498.32749293983,132813.7407146316,34673.6496009456,1443.919530515868 -15646,19310,35253,35254,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.666141907218978,7.829617670882982,49,-3,12.50612992270565,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.167956504805948,7.781611898213065,53.98,50.87,51.49,57.57,8.333333333333334,1,1,0,0,0,12,4,1,717.5,3075387.9385202,2306839.828414817,449773.6600307876,0,6021.721104150569 -15646,19310,35254,35253,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.356986513726461,8.448612530080647,49,3,48.48562989610878,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.026665140051118,8.572964904439919,51.49,57.57,53.98,50.87,8.333333333333334,1,1,0,0,0,12,4,1,717.5,3075387.9385202,2306839.828414817,449773.6600307876,0,6021.721104150569 -15647,19311,35255,35256,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,65,-4,-112.6361300559171,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,20.31987295631748,0,0,1,1,0,1.913166446702818,0,54,44,57.33,32.2,8,1,1,0,0,0,7,4,1,1075.5,1370212.440037073,305381.5150638982,961709.8851733109,0,3123.689759519838 -15647,19311,35256,35255,-9,-9,1,1,89,0,0,0,1,1,-9,0,2,0,8.731073937619742,8.309523113826874,65,4,-33.70827296310994,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,13.97933233855167,3.103266379748478,0,0,1,1,0,6.719461777708357,8.523550494156961,57.33,32.2,54,44,8.333333333333334,1,1,0,0,0,7,4,1,1075.5,1370212.440037073,305381.5150638982,961709.8851733109,0,3123.689759519838 -15648,19312,35257,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.80167448319875,6.154896493848232,0,0,-929.7916034278728,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.836127193128427,54.96,53.17,-9,-9,10,1,1,0,0,0,7,2,1,313,98165.60785825382,14554.7197752465,0,0,613.595329703527 -15648,19313,35258,-9,35257,-9,1,1,44,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1154.262691982629,-9,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,1,0,0,7,1,1,866,-92695.110676232,0,0,0,0 -15649,19314,35259,35260,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.414098195313101,4.115529914308244,49,-2,-104.0719368529214,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.135883912608781,4.102146800198621,56.94,49.53,54.36,42.37,8.333333333333334,1,1,0,0,0,6,2,1,838,87739.10741260012,-30956.23048142456,208202.2873906144,1552.915777517187,1360.666484631616 -15649,19314,35260,35259,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.844823184886214,5.049191176503079,49,2,-95.59296207522797,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.571732662334014,4.94233223535927,54.36,42.37,56.94,49.53,8.333333333333334,1,1,0,0,4,6,2,1,838,87739.10741260012,-30956.23048142456,208202.2873906144,1552.915777517187,1360.666484631616 -15650,19315,35261,35262,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.101392549401266,6.763450055384203,0,30,0,37.37360029299526,0,3,2,2019,6,0,30,36,1,0,0,4.741300282773766,4.741300282773766,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,2,3,0,0,8,4,3,1,841,524235.9673028633,-15661.21962116632,317263.6632642851,0,1240.612938143111 -15650,19315,35262,35261,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.814352913051889,7.627879258074079,0,31,0,39.64212269551638,0,3,3,2019,6,0,45,30,1,0,0,5.061962548339894,5.061962548339894,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.32,50.22,8.333333333333334,2,3,0,0,8,4,3,1,841,524235.9673028633,-15661.21962116632,317263.6632642851,0,1240.612938143111 -15650,19316,35263,-9,35262,35261,1,0,23,0,0,0,2,2,-9,0,4,7.991080394316533,8.108905685485462,0,0,0,-1017.819357334175,0,3,2,2019,8,0,38,37,1,0,1,8.859048336586122,8.859048336586122,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,858,63526.98899738699,0,0,0,1199.879636924229 -15650,19317,35264,-9,35262,35261,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.8873890231698,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,2,3,0,0,2,4,1,1,297,166585.5293784591,0,0,0,0 -15651,19318,35265,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.408952024321162,6.732293788422074,0,0,-1093.531484565764,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.624314471145815,0,47.15,26.85,-9,-9,5,1,1,1,1,6,9,2,0,1121,198064.723177732,0,0,0,1239.358272740629 -15652,19319,35266,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,7.369653643189455,7.060472940642065,0,0,-979.4876896687117,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.978525436170508,6.905846563342737,48.45,49.46,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,813,338779.8877774755,154926.1475876366,166815.687247596,0,1294.615918920312 -15653,19320,35267,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.19889500969049,5.938618608850053,0,0,0,-1162.790970734963,0,2,-9,2019,7,0,10,70,1,0,0,4.530760195524545,4.530760195524545,0,0,0,0,2,0,0,0,7.294028817161795,0,42.33,53.39,-9,-9,5,1,1,0,0,10,5,2,1,263,491469.6175231395,103093.4440411546,244735.4579375027,0,1454.082735081302 -15654,19321,35268,35269,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,0,0,33,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.49,55.09,45.66,34.4,8.333333333333334,1,1,0,0,4,13,1,0,1538.5,120010.5774557506,0,0,0,1417.075501218836 -15654,19321,35269,35268,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,33,-3,0,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.66,34.4,62.49,55.09,10,1,1,0,0,0,13,1,0,1538.5,120010.5774557506,0,0,0,1417.075501218836 -15655,19322,35270,-9,35271,35272,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1079.34619964937,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,4,1,325.25,305689.7633542747,226938.6446809874,0,0,2866.186389038573 -15655,19322,35271,35272,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.593160220925507,7.769070105046743,0,8,7,34.8023766127392,0,2,2,2019,15,4,24,24,1,4,0,9.604961826792898,9.604961826792898,0,0,0,0,0,1,0,1,1.641883858181406,0,25.44,65.40000000000001,42.73,54.62,3.333333333333333,1,1,0,0,9,5,4,1,325.25,305689.7633542747,226938.6446809874,0,0,2866.186389038573 -15655,19322,35272,35271,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.463170681289013,8.310961159878188,0,8,-7,-117.8760040463156,0,2,1,2019,16,4,41,43,1,4,0,11.76245792489908,11.76245792489908,0,0,0,0,0,1,0,1,1.944374405880208,0,42.73,54.62,25.44,65.40000000000001,3.333333333333333,1,1,0,0,10,5,4,1,325.25,305689.7633542747,226938.6446809874,0,0,2866.186389038573 -15655,19322,35273,-9,35271,35272,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.12745014701,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,325.25,305689.7633542747,226938.6446809874,0,0,2866.186389038573 -15656,19323,35274,35275,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.149183523026466,6.5562736288082,51,3,-51.97599911636635,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.513702539822661,53.93,42.87,44.39,16.65,8.333333333333334,1,1,0,0,0,2,2,1,510.5,280678.2811321686,75833.19873007032,148917.4127782331,0,1374.392071151371 -15656,19323,35275,35274,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,51,-3,10.0970322724949,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,.611571696643331,0,44.39,16.65,53.93,42.87,0,1,1,0,0,0,2,2,1,510.5,280678.2811321686,75833.19873007032,148917.4127782331,0,1374.392071151371 -15656,19324,35276,-9,35275,35274,1,1,45,0,0,0,3,3,-9,1,3,0,0,0,0,0,-957.2636097696203,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,51,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,541,3855.951085556069,100023.391246209,0,0,738.5804599460503 -15657,19325,35277,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.393985392543025,8.47501142891007,0,0,0,-930.9043773904799,0,-9,-9,2019,6,0,8,40,1,0,0,76.90854051991545,76.90854051991545,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,4,5,0,1118,59572.32853883786,103220.5884107949,163505.0203168102,74522.60316717753,1918.185060089653 -15657,19326,35278,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.238133943116832,8.213155746942174,0,0,0,-861.9415237410865,0,-9,-9,2019,6,0,50,43,1,0,0,7.121682428872442,7.121682428872442,0,0,0,0,0,0,0,0,1.469359545665372,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,1147,216251.487943755,87698.49825800267,0,0,1721.027978079569 -15658,19327,35279,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,0,6.227096386226241,6.398359288886001,0,0,-973.7023405503943,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,5.939838317666436,40.55,21,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,622,250605.5222860782,157211.324698784,188670.7056170538,0,219.4029717161167 -15658,19328,35280,-9,35279,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1007.36771335365,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,36.2,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,522,-103153.726237238,0,0,0,729.7109239923872 -15659,19329,35281,35282,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.728503301898748,8.94838656757533,0,1,0,64.55828263948712,-9,-9,-9,2019,6,0,36,0,1,0,0,19.87700551321424,19.87700551321424,0,0,0,0,0,0,0,0,.7656694756847564,0,58.2,54.53,57.16,56.15,8.333333333333334,1,1,0,0,1,7,5,0,755.5,318221.3954483111,167447.0589284683,0,0,4511.284121552328 -15659,19329,35282,35281,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.706201216361716,8.547255204810121,0,1,0,65.63980794234968,0,1,1,2019,5,0,45,37,1,0,0,12.22784351774509,12.22784351774509,0,0,0,0,0,0,0,0,4.456682098220369,0,57.16,56.15,58.2,54.53,8.333333333333334,1,1,0,0,9,7,5,0,755.5,318221.3954483111,167447.0589284683,0,0,4511.284121552328 -15660,19330,35283,35284,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.554678328254115,5.643250809632502,38,9,39.39781021884751,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.07722663355047,6.096369106312834,63.39,42.39,62.39,56.71,8.333333333333334,1,1,0,0,0,2,2,1,367.5,585053.7312979635,342313.1403552842,329103.6259682779,0,1736.916649438356 -15660,19330,35284,35283,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.361371966824954,7.04773351525747,38,0,-33.37440476461016,0,2,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.08454660377187,6.82453523452704,62.39,56.71,63.39,42.39,10,1,1,0,0,0,2,2,1,367.5,585053.7312979635,342313.1403552842,329103.6259682779,0,1736.916649438356 -15661,19331,35285,35288,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.435237779811725,8.341918314653226,0,18,5,41.37651856068904,0,2,2,2019,7,0,53,47,1,0,0,8.130833421739611,8.130833421739611,0,0,0,0,0,1,1,0,.3379852318369577,0,57.33,53.46,46.98,59.35,8.333333333333334,1,1,0,0,12,1,5,1,1200.25,31314.08196386364,19394.85454015916,249111.6731385753,128543.1623963966,4057.924128276712 -15661,19331,35286,-9,35288,35285,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.2720655204938,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,1200.25,31314.08196386364,19394.85454015916,249111.6731385753,128543.1623963966,4057.924128276712 -15661,19331,35287,-9,35288,35285,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.3225535025907,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,1200.25,31314.08196386364,19394.85454015916,249111.6731385753,128543.1623963966,4057.924128276712 -15661,19331,35288,35285,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.882167742847326,8.726811214384119,0,20,-5,-45.96009914730142,0,2,3,2019,14,3,53,48,1,3,0,12.5134841225325,12.5134841225325,0,0,0,0,0,1,1,0,3.173429545429301,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,12,1,5,1,1200.25,31314.08196386364,19394.85454015916,249111.6731385753,128543.1623963966,4057.924128276712 -15662,19332,35289,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1106.958254467378,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,1,0,7,1,0,522,-196863.2625495717,0,0,0,601.1764439144822 -15663,19333,35290,35292,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,9.21143223947028,9.311686372379119,0,23,-3,-30.5777039446032,0,2,1,2019,7,0,37,40,1,0,0,30.50111197727163,30.50111197727163,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,12,12,5,0,1332.333333333333,1669969.824698349,87532.11570353695,480659.0332256879,322040.0190989127,6856.998594393299 -15663,19333,35291,-9,35292,35290,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1108.976328478917,-9,1,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,-9,-9,8.333333333333334,1,1,0,0,12,12,5,0,1332.333333333333,1669969.824698349,87532.11570353695,480659.0332256879,322040.0190989127,6856.998594393299 -15663,19333,35292,35290,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.946900376805221,9.250349379228181,0,23,3,-16.78297963839993,0,1,2,2019,7,0,37,43,1,0,0,33.78944619702712,33.78944619702712,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,11,12,5,0,1332.333333333333,1669969.824698349,87532.11570353695,480659.0332256879,322040.0190989127,6856.998594393299 -15664,19334,35293,35294,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,50,-4,104.9306352234454,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,3.985374800419893,61.51208562755281,29.50714948268473,0,1,1,0,0,0,33.56,17.19,48.98,32.35,3.333333333333333,1,1,0,0,0,2,3,1,224.5,594955.1460594726,435448.80004237,249442.6640548719,0,12427.64721018242 -15664,19334,35294,35293,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.40749861952366,7.932638183284078,50,4,-37.94443031092085,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,2.845928894377129,0,19.29851329611214,120,1,1,0,10.27184916778669,7.869627323086808,48.98,32.35,33.56,17.19,8.333333333333334,1,1,0,0,0,2,3,1,224.5,594955.1460594726,435448.80004237,249442.6640548719,0,12427.64721018242 -15665,19335,35295,-9,35296,-9,1,1,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1078.096477860701,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,.0311708103305719,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,0,8,1,1,392,-44025.6489442379,0,0,0,432.8660616687885 -15665,19336,35296,35297,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.343873252269313,6.514550769306252,0,8,-3,60.90049431594668,0,2,2,2019,11,0,30,30,1,2,0,2.261635701334545,2.261635701334545,0,0,0,0,96,1,1,0,0,0,49,48,51,48,7,3,4,0,0,9,8,5,1,1748.5,569860.8334434475,180483.8526916042,373583.1027614105,54405.74934357192,2672.247556887545 -15665,19336,35297,35296,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.864913351759556,8.640065232229015,0,8,3,-142.1881121316343,0,-9,-9,2019,10,0,36,-9,1,1,0,19.74876931131325,19.74876931131325,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,3,4,0,0,1,8,5,1,1748.5,569860.8334434475,180483.8526916042,373583.1027614105,54405.74934357192,2672.247556887545 -15666,19337,35298,35299,-9,-9,1,0,24,0,0,0,3,3,-9,1,2,0,0,0,1,-1,-58.62387399330019,-9,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.85,55.9,51.49,57.57,0,1,1,1,0,0,1,2,0,479.5,98607.8258837412,0,137441.4130505732,89839.56572886647,1982.793648468599 -15666,19337,35299,35298,-9,-9,1,1,25,0,0,0,3,3,-9,0,4,7.208742395438447,7.223790589113103,0,1,1,-153.0450147223532,0,2,3,2019,7,0,35,35,1,0,0,3.370283859583053,3.370283859583053,0,0,0,0,0,1,1,0,0,0,51.49,57.57,22.85,55.9,6.666666666666667,1,1,0,0,2,1,2,0,479.5,98607.8258837412,0,137441.4130505732,89839.56572886647,1982.793648468599 -15667,19338,35300,35301,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,7.4032399652045,7.516447510876281,0,8,6,26.34609210376589,0,2,2,2019,8,0,34,46,1,0,0,5.5679715398705,5.5679715398705,0,0,0,0,0,1,1,0,0,0,56.29,33.32,43.23,44.05,5,1,1,0,0,9,1,3,1,501.6666666666667,120743.2523952083,108588.2860578045,0,0,2939.782020473078 -15667,19338,35301,35300,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.894525286103693,8.237410250356849,0,8,-6,-46.79273166493595,0,2,3,2019,17,6,37,40,1,6,0,9.142340310624521,9.142340310624521,0,0,0,0,2,1,1,0,0,0,43.23,44.05,56.29,33.32,6.666666666666667,1,1,0,0,9,1,3,1,501.6666666666667,120743.2523952083,108588.2860578045,0,0,2939.782020473078 -15667,19338,35302,-9,35301,35300,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1006.298889338449,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,38.56,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,501.6666666666667,120743.2523952083,108588.2860578045,0,0,2939.782020473078 -15668,19339,35303,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.142326814215647,7.537228610926243,0,0,-1046.276628553458,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.26403275065015,51.57,15.79,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,427,247533.1200378763,57070.90834546643,90286.22551628842,14767.25573346553,704.1526665369563 -15669,19340,35304,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,7.223724210709364,7.417916898176209,0,0,-1026.72773898008,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.3600050138383,47.13,24.71,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,641,415939.1627203388,428172.3300822747,70414.38272789543,0,1635.538379442675 -15670,19341,35305,-9,35306,35307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.906322133484,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,13,4,0,465.6666666666667,360345.8642197563,126291.7347791279,83344.05832274609,64741.91707228255,3423.029421038225 -15670,19341,35306,35307,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.749724321696657,8.869171634782864,0,16,1,-54.05967141681592,0,3,3,2019,0,0,44,38,1,0,0,16.64214357165377,16.64214357165377,0,0,0,0,0,1,1,0,0,0,62.39,56.71,43.08,63.68,10,2,3,0,0,9,13,4,0,465.6666666666667,360345.8642197563,126291.7347791279,83344.05832274609,64741.91707228255,3423.029421038225 -15670,19341,35307,35306,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,7.39369253418724,7.445739394168122,0,16,-1,102.2120164316012,0,2,2,2019,1,0,40,30,1,0,0,6.756753686013154,6.756753686013154,0,0,0,0,0,1,1,0,0,0,43.08,63.68,62.39,56.71,10,2,3,0,0,7,13,4,0,465.6666666666667,360345.8642197563,126291.7347791279,83344.05832274609,64741.91707228255,3423.029421038225 -15671,19342,35308,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,7.893280372915701,7.91186348044551,0,0,0,-1041.320811423068,0,-9,-9,2019,31,11,43,41,1,11,0,8.524589552900677,8.524589552900677,0,0,0,0,2,0,0,0,0,0,20.5,60.8,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,443,8257.958380241391,-34471.01814869704,0,0,1531.791560994677 -15672,19343,35309,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.931361152829339,6.896044495791489,0,0,0,-1032.951212669498,0,-9,-9,2019,7,0,16,16,1,0,0,6.638048082347476,6.638048082347476,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,2,4,2,0,453,-101667.5170529768,0,0,0,1325.025623941631 -15672,19343,35310,-9,35309,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-860.7307412320586,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,453,-101667.5170529768,0,0,0,1325.025623941631 -15673,19344,35311,35312,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.387827512565447,7.414270189196181,42,7,6.79781898105816,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,33.8442087983989,0,0,1,1,0,4.877812461900807,7.522634490119133,49.45,26.24,57.06,57.76,6.666666666666667,1,1,0,0,2,12,4,1,591.5,1786947.006867851,872181.8610155525,441239.0706488988,0,4613.411842893092 -15673,19344,35312,35311,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.122302607997575,8.289522939253544,42,-7,-65.34717705184491,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.986104106310783,8.684881249006581,57.06,57.76,49.45,26.24,10,1,1,0,0,7,12,4,1,591.5,1786947.006867851,872181.8610155525,441239.0706488988,0,4613.411842893092 -15674,19345,35313,-9,35316,35315,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.7914430393178,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,730.25,222167.1017430832,123771.3316429826,221515.3107153653,77735.22368725919,4420.40281962529 -15674,19345,35314,-9,35316,35315,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.0832743213259,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,730.25,222167.1017430832,123771.3316429826,221515.3107153653,77735.22368725919,4420.40281962529 -15674,19345,35315,35316,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.709882108877132,8.827860699385591,0,10,-2,-77.89548253225367,0,-9,-9,2019,12,2,40,40,1,2,0,19.68284133995004,19.68284133995004,0,0,0,0,0,1,1,0,0,0,56.77,52.22,52.8,53.98,6.666666666666667,1,1,0,0,11,13,5,1,730.25,222167.1017430832,123771.3316429826,221515.3107153653,77735.22368725919,4420.40281962529 -15674,19345,35316,35315,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.699480570842111,8.440154781429255,0,14,2,20.12798700433019,0,-9,-9,2019,9,0,48,40,1,0,0,14.58660072079399,14.58660072079399,0,0,0,0,0,1,1,0,7.463932408452556,0,52.8,53.98,56.77,52.22,6.666666666666667,1,1,0,0,11,13,5,1,730.25,222167.1017430832,123771.3316429826,221515.3107153653,77735.22368725919,4420.40281962529 -15675,19346,35317,35318,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,32,0,0,0,3,2,2019,19,8,0,53,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,32.74,16.46,1.666666666666667,1,1,1,0,7,6,2,0,1769.5,-7705.333629793895,0,0,0,820.6214043566163 -15675,19346,35318,35317,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,31,0,0,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,41.23,59.35,3.333333333333333,1,1,0,1,0,6,2,0,1769.5,-7705.333629793895,0,0,0,820.6214043566163 -15676,19347,35319,35320,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.997154011983469,8.731134203172902,0,6,4,71.83629985491612,0,3,3,2019,10,0,39,39,1,1,0,19.67547205666765,19.67547205666765,0,0,0,0,0,0,0,0,0,0,52,48,48.76,29.31,7,1,1,0,0,1,1,5,1,446.5,1156899.019811534,366127.8009282397,382932.3591204092,0,4918.24600991218 -15676,19347,35320,35319,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.986304625477331,8.304275858539851,36,-4,-30.12428124525287,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,7.456745546338905,7.990845244817931,48.76,29.31,52,48,6.666666666666667,1,1,0,0,0,1,5,1,446.5,1156899.019811534,366127.8009282397,382932.3591204092,0,4918.24600991218 -15677,19348,35321,35322,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.061370280837735,7.19815962866314,10,3,22.38482970530952,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6533776430819191,7.176155832777854,42.31,47.15,64.40000000000001,42,6.666666666666667,1,1,0,0,1,5,3,1,820,1381446.549230151,500838.952718796,424126.0108578468,0,2377.062442282237 -15677,19348,35322,35321,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.864542671712345,6.472235317193569,10,-3,-19.32922779550926,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.972335580176693,6.896996811214853,64.40000000000001,42,42.31,47.15,8.333333333333334,1,1,0,0,1,5,3,1,820,1381446.549230151,500838.952718796,424126.0108578468,0,2377.062442282237 -15678,19349,35323,-9,35324,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.4128914569885,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,0,334.5,-82061.99109278903,0,0,0,2643.827073728792 -15678,19349,35324,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,8.125397656505601,7.722087291097889,0,0,0,-1045.87672718957,0,3,3,2019,13,2,46,37,1,2,0,6.954332566115649,6.954332566115649,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,3.333333333333333,1,1,0,0,2,8,3,0,334.5,-82061.99109278903,0,0,0,2643.827073728792 -15679,19350,35325,35326,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,9.029634315990078,8.48017994243602,0,8,-4,-15.95349698409824,0,3,3,2019,6,0,60,50,1,0,0,14.37328557997071,14.37328557997071,0,0,0,0,0,0,0,0,0,0,60.12,54.8,49.68,37.85,8.333333333333334,1,1,0,0,9,9,4,1,1412,323224.8903491125,440898.2057184548,0,0,2686.674388141033 -15679,19350,35326,35325,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,8,4,-21.99062143330897,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.852704409732916,0,49.68,37.85,60.12,54.8,1.666666666666667,1,1,0,0,0,9,4,1,1412,323224.8903491125,440898.2057184548,0,0,2686.674388141033 -15679,19351,35327,-9,35326,35325,1,1,28,0,0,0,2,2,-9,0,3,7.560327562630357,7.839357116945043,0,0,0,-1000.824346895722,0,3,3,2019,10,0,40,39,1,0,1,5.176527491716776,5.176527491716776,0,0,0,0,0,0,0,0,.0535816264908289,0,54.27,48.04,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,636,23351.80863229547,-79746.57152702507,0,0,1510.555249183955 -15680,19352,35328,-9,35331,35330,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.408732673574,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,992.5,59372.49113902936,39963.47054328975,141975.2916296019,85586.71894019969,2943.655659739728 -15680,19352,35329,-9,35331,35330,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.7221634841351,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,992.5,59372.49113902936,39963.47054328975,141975.2916296019,85586.71894019969,2943.655659739728 -15680,19352,35330,35331,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.27017060762655,8.258359608212031,0,6,0,-14.54972742631253,0,3,3,2019,7,0,40,40,1,0,0,14.36082469344044,14.36082469344044,0,0,0,0,0,1,1,0,0,0,53.34,56.67,53.12,53.98,8.333333333333334,1,1,0,0,7,2,4,1,992.5,59372.49113902936,39963.47054328975,141975.2916296019,85586.71894019969,2943.655659739728 -15680,19352,35331,35330,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.397610121523243,8.126136560494864,0,6,0,42.75377245261429,0,-9,-9,2019,11,0,26,24,1,0,0,15.75094888362615,15.75094888362615,0,0,0,0,0,1,1,0,1.630036695882143,0,53.12,53.98,53.34,56.67,8.333333333333334,1,1,0,0,7,2,4,1,992.5,59372.49113902936,39963.47054328975,141975.2916296019,85586.71894019969,2943.655659739728 -15681,19353,35332,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.046364567979047,6.018249547935778,0,0,-996.2579961479395,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.859850706750143,55.51,40.83,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,385,-192404.9959157713,118013.3489260115,0,0,1101.663924069631 -15682,19354,35333,-9,35335,-9,1,0,17,0,1,0,3,3,1,0,3,0,0,0,0,0,-1063.33125435566,-9,2,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,30.7,62.92,-9,-9,8.333333333333334,1,1,0,0,1,2,1,0,1246.25,6309.086399149295,0,0,0,1423.878057977463 -15682,19354,35334,-9,35335,-9,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1159.876201278151,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,1,0,2,1,0,1246.25,6309.086399149295,0,0,0,1423.878057977463 -15682,19354,35335,-9,-9,-9,1,0,49,0,1,0,2,2,1,0,4,0,0,0,0,0,-1021.876543669035,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,1,1,0,0,0,2,1,0,1246.25,6309.086399149295,0,0,0,1423.878057977463 -15682,19354,35336,-9,35335,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.2199658291648,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,1246.25,6309.086399149295,0,0,0,1423.878057977463 -15683,19355,35337,35338,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.1361941418825,4.162571390263244,43,0,5.691335293411221,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,2.529218238579873,4.204100539669336,55.79,52.62,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,930.5,1258015.51315737,1079922.357367805,179153.9121565757,0,2335.534386532 -15683,19355,35338,35337,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,8.358115509683921,8.237416979581296,43,0,27.16438441542385,0,3,3,2019,9,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1.027535236210521,8.380803850878852,52,54.51,55.79,52.62,8.333333333333334,1,1,0,0,12,5,4,1,930.5,1258015.51315737,1079922.357367805,179153.9121565757,0,2335.534386532 -15684,19356,35339,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.399728429479177,8.333167791428071,0,0,0,-1054.610387164963,0,-9,-9,2019,10,0,38,38,1,0,0,14.47403438727148,14.47403438727148,0,0,0,0,0,0,0,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1343,-100354.8183280271,152643.5847515843,0,0,1843.784758893996 -15685,19357,35340,35341,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,9.281556492219382,9.241626763347275,10,4,-9.971542877092855,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.435327716252692,9.411347627751731,55.93,49.95,57.16,56.15,6.666666666666667,1,1,0,0,8,9,5,1,379.5,1614058.412382593,932727.0456078425,486283.5899241782,0,6209.824219520047 -15685,19357,35341,35340,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.612136312294382,7.560781539955101,0,10,-4,139.0010083680165,0,2,2,2019,6,0,28,28,1,0,0,6.353524250432277,6.353524250432277,0,0,0,0,0,1,1,0,5.034442748415832,0,57.16,56.15,55.93,49.95,6.666666666666667,1,1,0,0,11,9,5,1,379.5,1614058.412382593,932727.0456078425,486283.5899241782,0,6209.824219520047 -15685,19358,35342,-9,35341,35340,1,0,20,0,0,0,2,2,0,0,4,0,5.175219749503594,5.05630258476435,0,0,-999.0378292021798,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.152331774890039,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,165,-1294.379184692026,0,0,0,59.51911519301956 -15685,19359,35343,-9,35341,35340,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.6859372697181,1,2,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,2,1,1,0,.5166645401510922,0,39.61,56.27,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,999,-132878.0489638671,0,0,0,-305.4676731107434 -15686,19360,35344,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1082.712167079957,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,6.690562338209043,0,0,1,1,0,0,0,60.47,17.43,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,529,69008.60528956362,0,0,0,2450.769480491913 -15687,19361,35345,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.423891449315281,8.38948804594191,0,0,0,-1033.619284726113,0,2,2,2019,11,0,32,36,1,0,0,17.99792859012796,17.99792859012796,0,0,0,0,0,1,1,0,0,0,40.92,43.43,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,711.5,183243.8681718321,-8757.117563834305,88491.67269265819,57082.95696675789,1848.31005302412 -15687,19361,35346,-9,35345,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.244969716272,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,711.5,183243.8681718321,-8757.117563834305,88491.67269265819,57082.95696675789,1848.31005302412 -15688,19362,35347,35348,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.184988985620071,9.056747628613936,0,12,1,35.01893375015665,0,3,2,2019,9,0,40,40,1,0,0,29.93283510985439,29.93283510985439,0,0,0,0,0,0,0,0,0,0,47.49,55.02,46.4,59.87,8.333333333333334,1,1,0,0,7,7,5,1,866.75,319706.4128867468,-5594.153571069059,624751.3172463141,374315.4837236512,4394.392857383528 -15688,19362,35348,35347,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,8.151096257531002,8.434626674518167,0,13,-1,13.01150157335223,0,1,1,2019,7,0,25,23,1,0,0,15.96657231290973,15.96657231290973,0,0,0,0,0,0,0,0,0,0,46.4,59.87,47.49,55.02,8.333333333333334,1,1,0,0,9,7,5,1,866.75,319706.4128867468,-5594.153571069059,624751.3172463141,374315.4837236512,4394.392857383528 -15688,19362,35349,-9,35348,35347,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.3227938456382,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,866.75,319706.4128867468,-5594.153571069059,624751.3172463141,374315.4837236512,4394.392857383528 -15688,19362,35350,-9,35348,35347,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.4882400122508,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,866.75,319706.4128867468,-5594.153571069059,624751.3172463141,374315.4837236512,4394.392857383528 -15689,19363,35351,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.139314966320404,7.323805063926695,5.357205100052026,0,0,-948.4380814821461,0,3,3,2019,11,0,15,16,1,0,0,8.446920361276424,8.446920361276424,0,0,0,0,0,1,1,0,0,5.860075136807896,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,307,185167.5899983482,-22310.89761454416,-24748.43910163103,0,1045.041324169202 -15690,19364,35352,35355,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.602735412010112,9.38269249250377,0,10,0,2.840879424947258,0,2,2,2019,8,0,50,50,1,0,0,31.71614842775126,31.71614842775126,0,0,0,0,0,0,0,0,0,0,53.56,49.66,52.31,58.29,8.333333333333334,1,1,0,0,11,8,5,1,986.75,2449942.00377579,1526448.883905971,1194327.117443279,200116.9308546801,10634.01802749966 -15690,19364,35353,-9,35355,35352,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.7824061648217,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,986.75,2449942.00377579,1526448.883905971,1194327.117443279,200116.9308546801,10634.01802749966 -15690,19364,35354,-9,35355,35352,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1000.601744009661,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,986.75,2449942.00377579,1526448.883905971,1194327.117443279,200116.9308546801,10634.01802749966 -15690,19364,35355,35352,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,7.382019988256987,7.315331122620179,0,10,0,82.35202409179499,0,2,2,2019,8,0,15,15,1,0,0,11.29909542378003,11.29909542378003,0,0,0,0,0,0,0,0,2.798049448295795,0,52.31,58.29,53.56,49.66,8.333333333333334,1,1,0,0,11,8,5,1,986.75,2449942.00377579,1526448.883905971,1194327.117443279,200116.9308546801,10634.01802749966 -15690,19365,35356,-9,35355,35352,1,0,19,0,1,0,2,2,0,0,2,0,0,0,0,0,-1036.32923945888,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.6,47.8,-9,-9,8.333333333333334,1,1,0,0,5,8,1,1,847,-112197.6550024964,0,0,0,0 -15691,19366,35357,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.419713295094905,8.76299077291498,0,0,0,-980.060353449417,-9,3,3,2019,12,1,35,0,1,1,0,13.21985141581461,13.21985141581461,0,0,0,0,0,1,1,0,0,0,48.54,30.56,-9,-9,6.666666666666667,1,1,0,0,11,2,4,0,839,39963.87568097509,-39304.94872428631,0,0,1292.644666341511 -15691,19367,35358,-9,35357,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1125.982292858137,-9,2,-9,2019,14,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,0,0,1,2,1,0,2175,-64898.45860590224,0,0,0,0 -15692,19368,35359,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.201041572254509,7.823916652500905,0,0,-805.5897980496493,0,2,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.092524978759741,7.563002900236008,24.68,21.22,-9,-9,1.666666666666667,1,1,0,0,5,2,3,1,1103,922603.2227829561,722831.3278215536,152662.70057586,0,1964.37365313245 -15693,19369,35360,35361,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.391355561224201,7.796141599227919,39,3,-47.56488958174369,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.673305017978814,7.199709527144888,61.28,48.88,54.2,57.49,8.333333333333334,1,1,0,0,7,11,2,1,707.5,427359.8190896518,280379.4338133285,108338.288094054,0,1264.629698998774 -15693,19369,35361,35360,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,39,-3,85.58327419291967,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.115916268598899,0,54.2,57.49,61.28,48.88,8.333333333333334,1,1,0,0,9,11,2,1,707.5,427359.8190896518,280379.4338133285,108338.288094054,0,1264.629698998774 -15694,19370,35362,35363,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,6.561591465524926,6.969870382861175,8,3,128.3324665274572,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.40510512610196,7.146839155203974,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,1644,888897.4330056156,422327.2654403347,271140.4717607072,0,2484.803212892736 -15694,19370,35363,35362,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,-3,42.08531256512981,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.886015679858541,0,57.33,53.46,62.49,55.09,10,1,1,0,0,3,2,2,1,1644,888897.4330056156,422327.2654403347,271140.4717607072,0,2484.803212892736 -15695,19371,35364,35365,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.704962367531536,7.527888963442583,49,2,-111.5296187664265,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.647149221249036,7.763617127390762,59.06,48.59,42.33,57.46,8.333333333333334,1,1,0,0,0,6,4,1,1367,1516428.640253845,583912.810866134,674330.6334738629,0,3954.918495712151 -15695,19371,35365,35364,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.566030683939984,7.48975955333598,49,-2,-136.0123896606274,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.302366890723661,7.874657781499613,42.33,57.46,59.06,48.59,8.333333333333334,1,1,0,0,0,6,4,1,1367,1516428.640253845,583912.810866134,674330.6334738629,0,3954.918495712151 -15696,19372,35366,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1019.319544918155,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,8,1,0,325,204685.3127355125,0,321562.0170606157,0,1469.120538108991 -15697,19373,35367,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,2,0,5.240438170933149,5.521182085738468,0,0,-1071.488114956011,-9,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,5.446526427991009,47.14,25.47,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,262,88046.81946523525,-9215.064357945113,0,0,1393.336117756955 -15697,19374,35368,-9,35367,-9,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,0,0,-948.3950012508759,-9,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,1,0,0,2,1,0,337.5,40350.59789367008,0,0,0,204.487780632545 -15697,19374,35369,-9,35368,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.900207139602,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,337.5,40350.59789367008,0,0,0,204.487780632545 -15698,19375,35370,35371,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.854943243587994,8.107902445005829,0,29,-1,189.7412449887522,0,-9,3,2019,10,0,28,28,1,0,0,12.91868250340032,12.91868250340032,0,0,0,0,0,0,0,0,0,0,60.43,46.44,53,54,8.333333333333334,1,1,0,0,8,13,5,1,353,2483451.800695817,2262104.070478141,223036.5280931098,0,3660.344809996658 -15698,19375,35371,35370,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.687579414031191,8.692031486275898,0,2,1,34.825317895447,-9,-9,-9,2019,9,0,40,0,1,1,0,16.13059907555073,16.13059907555073,0,0,0,0,0,0,0,0,0,0,53,54,60.43,46.44,8,4,1,0,0,1,13,5,1,353,2483451.800695817,2262104.070478141,223036.5280931098,0,3660.344809996658 -15698,19376,35372,-9,35370,35371,1,0,26,0,0,0,2,2,-9,0,4,7.825668287054735,7.818373379362966,0,0,0,-936.8223023586538,-9,2,1,2019,11,0,40,0,1,2,1,7.065544949030574,7.065544949030574,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,13,3,1,236,15493.37653039688,0,0,0,1539.892205672227 -15699,19377,35373,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1077.415309025912,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,19.68,45.59,-9,-9,1.666666666666667,3,4,0,0,3,2,2,0,829,-65328.36489343883,0,0,0,2038.36925500956 -15700,19378,35374,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.436913820304452,8.497785664758361,0,0,0,-939.4359102691229,-9,1,1,2019,2,0,38,0,1,0,0,16.68676439489948,16.68676439489948,0,0,0,0,0,0,0,0,1.458430988163496,0,62.39,56.71,-9,-9,10,1,1,0,0,6,5,5,0,133,-18747.33789119536,-100813.3752764062,0,0,1577.624379603914 -15701,19379,35375,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.196902275174,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.97,38.57,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,229,104285.752824933,0,0,0,1063.371775954759 -15702,19380,35376,-9,35379,35380,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.153030197037,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15702,19380,35377,-9,35379,35380,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-960.5138408839001,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15702,19380,35378,-9,35379,35380,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-996.0015716770014,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15702,19380,35379,35380,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,8.998923117513739,9.067421093010882,0,13,-5,-26.63477524880837,0,3,1,2019,6,0,38,30,1,0,0,24.55622664249859,24.55622664249859,0,0,0,0,0,1,1,0,3.017453598938187,0,59.53,56.44,52,56,8.333333333333334,1,1,0,0,9,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15702,19380,35380,35379,-9,-9,1,1,44,0,4,0,3,3,-9,0,4,8.429011571193051,8.884295315686419,0,13,5,-62.93184764104825,0,2,3,2019,9,0,40,45,1,1,0,16.15258363460594,16.15258363460594,0,0,0,0,0,1,1,0,0,0,52,56,59.53,56.44,8,1,1,0,0,1,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15702,19380,35381,-9,35379,35380,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-875.0784984464186,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,872.5,4524998.045992724,1034120.724856063,915656.8610091707,56558.15384124953,6004.37670728231 -15703,19381,35382,35383,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.693341838186853,5.877960405208467,43,5,16.5968394684176,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.553910776719645,59.46,36.25,55.9,40.56,10,1,1,0,0,0,6,3,1,1062,48713.63165746788,0,97641.16909247424,0,1387.632929222931 -15703,19381,35383,35382,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.494084857375507,7.80577744909484,0,43,-5,-82.8468663023778,0,-9,-9,2019,11,0,32,28,1,0,0,6.9413249586515,6.9413249586515,0,0,0,0,0,0,0,0,0,0,55.9,40.56,59.46,36.25,3.333333333333333,1,1,0,0,9,6,3,1,1062,48713.63165746788,0,97641.16909247424,0,1387.632929222931 -15704,19382,35384,35385,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.341215574411201,7.271129996200036,56,0,76.54249504397664,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.949339512651906,7.603757633995195,64.55,36.47,55.88,38.99,6.666666666666667,1,1,0,0,0,13,3,1,352.5,433600.6828998724,51357.63147305837,166134.8147827513,0,3212.431556263208 -15704,19382,35385,35384,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.342116772452839,6.407557687598916,56,0,-46.58307396078456,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.366292433252038,5.976328658011664,55.88,38.99,64.55,36.47,8.333333333333334,1,1,0,0,0,13,3,1,352.5,433600.6828998724,51357.63147305837,166134.8147827513,0,3212.431556263208 -15705,19383,35386,35388,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,8.026712969371005,8.010111326121864,10,-6,-76.65995758768831,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0318160645876,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,4,13,4,1,831.3333333333334,1012082.776161819,580620.2049169197,425475.2959805625,0,3709.225225576724 -15705,19383,35387,-9,35386,35388,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-971.0228310633267,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.35,62.06,-9,-9,8.333333333333334,4,2,0,0,0,13,4,1,831.3333333333334,1012082.776161819,580620.2049169197,425475.2959805625,0,3709.225225576724 -15705,19383,35388,35386,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.783976860777503,7.600897429606843,10,6,-108.1461384424138,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.970423017400039,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,13,4,1,831.3333333333334,1012082.776161819,580620.2049169197,425475.2959805625,0,3709.225225576724 -15706,19384,35389,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,4.205062222463696,4.255119292013069,0,0,-1102.355006557335,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,7.625205785323847,14.33816091867663,62.18815984982737,0,1,1,0,0,4.099026521138957,53.87,18.77,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,325,205109.3511726854,-41920.26620621409,109101.8154811999,0,972.3090770851561 -15707,19385,35390,35391,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,131.9023699301671,0,0,1,1,0,2.522372984748408,0,54,46,56.64,28.07,8,1,1,0,0,0,5,1,1,2126.5,138087.4533569895,0,151367.9951908222,0,1503.83566696938 -15707,19385,35391,35390,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,56,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,56.64,28.07,54,46,6.666666666666667,1,1,0,0,3,5,1,1,2126.5,138087.4533569895,0,151367.9951908222,0,1503.83566696938 -15708,19386,35392,35393,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.452005176385077,9.460650135786636,8.28618503361082,20,21,-10.32620830795967,0,3,2,2019,5,0,24,24,1,0,0,48.59347837754927,48.59347837754927,0,0,0,0,0,1,1,0,7.594515535460091,8.550176751093007,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,10,9,5,1,600.5,544199.0777394805,260283.2122276759,415606.768432138,140759.0277468881,12111.20866723703 -15708,19386,35393,35392,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.670389899600575,9.28175336843219,0,20,-21,12.27817800772888,0,2,2,2019,10,0,43,45,1,0,0,46.35956133737685,46.35956133737685,0,0,0,0,0,1,1,0,4.250084058784418,0,51.77,58.57,57.33,53.46,1.666666666666667,1,1,0,0,10,9,5,1,600.5,544199.0777394805,260283.2122276759,415606.768432138,140759.0277468881,12111.20866723703 -15709,19387,35394,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.905843859194154,7.761519238039975,0,0,0,-1088.706062319623,0,-9,2,2019,5,0,43,45,1,0,0,5.703458225166776,5.703458225166776,0,0,0,0,0,1,1,0,0,0,54.13,48.04,-9,-9,6.666666666666667,1,1,0,0,8,4,3,0,310,250210.2731193678,170000.6750525457,0,0,1393.954341251733 -15709,19388,35395,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,6.658808439106219,6.512181742867512,0,0,0,-952.6209789928391,0,-9,-9,2019,9,0,55,40,1,0,0,1.616626859142825,1.616626859142825,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,968,-33387.54375270629,0,0,0,897.760103963545 -15710,19389,35396,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.815202598215993,7.998342650047875,0,0,-1180.578522813319,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.613294604726493,8.394824934772229,56,51,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,180,1152183.216208285,445239.8140956741,317126.5921410484,0,2209.170369786355 -15711,19390,35397,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,2,0,0,0,0,0,-1106.167873414072,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,38.3,53.09,-9,-9,5,1,1,0,0,1,12,1,0,259,-108765.5806288618,0,0,0,1182.595185170695 -15712,19391,35398,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.781864814098784,6.24891359886847,0,0,-1084.591486795961,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.297496490502751,58.15,52.91,-9,-9,10,1,1,0,0,0,12,2,0,843,284742.1595657174,-32396.77987776233,0,0,1117.783270153674 -15713,19392,35399,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.656227554665237,4.450571315949127,0,0,-1047.860261697581,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.588205694355491,51,46,-9,-9,7,1,1,0,0,0,1,2,0,405,175120.167079319,41155.79786762186,151771.1384709833,0,1231.177369999203 -15714,19393,35400,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.430172867954214,8.132423444405589,0,0,0,-1052.910929637884,0,1,1,2019,13,1,55,55,1,1,0,11.16835098000027,11.16835098000027,0,0,0,0,0,0,0,0,2.210851245274006,0,42.07,50.91,-9,-9,5,1,1,0,0,9,9,4,1,1257,337772.8652807361,-54827.76157643157,226117.4278023942,35246.14121028534,1717.132036466647 -15715,19394,35401,35402,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,8.949128806157487,9.015116433035901,0,21,-8,-65.993344686594,0,3,2,2019,11,0,45,57,1,0,0,17.98598632718548,17.98598632718548,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,55,6.666666666666667,1,1,0,0,10,12,5,0,1803.5,398332.8603445623,87198.70007698622,388641.8327655074,153670.1896176615,3983.921166665215 -15715,19394,35402,35401,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.09432988475244,7.928400785114012,0,23,8,-78.71131337753829,0,-9,-9,2019,9,0,35,37,1,1,0,11.37332370006657,11.37332370006657,0,0,0,0,0,1,1,0,0,0,52,55,54.69,57.47,8,1,1,0,0,1,12,5,0,1803.5,398332.8603445623,87198.70007698622,388641.8327655074,153670.1896176615,3983.921166665215 -15715,19395,35403,-9,35401,35402,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-947.6818787869248,1,2,1,2019,16,5,0,0,2,5,1,0,0,0,0,0,.5851220098491243,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,1254,89614.16586958266,0,0,0,-208.8250630679291 -15716,19396,35404,-9,-9,-9,1,0,46,0,0,0,1,1,-9,1,2,0,0,0,0,0,-901.3114161766182,-9,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.21,41.04,-9,-9,3.333333333333333,4,2,0,0,0,8,1,1,524,-315638.9875028842,0,0,0,1114.792620432437 -15717,19397,35405,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,5.515031072394991,5.911631417558596,0,0,-1066.915328569482,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,2.587150324780533,0,0,0,1,1,0,0,5.805689135845652,55.6,27.13,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1531,346132.8155813449,-176476.084048965,30995.50312257817,0,949.6186853362899 -15718,19398,35406,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.550743400526635,6.087824622194914,0,0,-1192.44694483538,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.325633983063748,66.13,21.07,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,2212,296988.0571863761,209686.6271445314,97860.00214709208,0,802.1703385204214 -15719,19399,35407,35410,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.067264787904744,8.038527376463465,0,10,2,-5.452259637543848,0,2,2,2019,12,1,21,21,1,1,0,18.48078567679788,18.48078567679788,0,0,0,1.809923663693509,0,1,1,0,0,0,46.98,59.35,45.91,59.89,8.333333333333334,1,1,0,0,3,8,5,1,885,1630300.34349346,323637.8813910481,829167.6015758506,272175.2162041935,4792.94139962796 -15719,19399,35408,-9,35407,35410,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.357147727136,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,885,1630300.34349346,323637.8813910481,829167.6015758506,272175.2162041935,4792.94139962796 -15719,19399,35409,-9,35407,35410,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.565747812417,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,885,1630300.34349346,323637.8813910481,829167.6015758506,272175.2162041935,4792.94139962796 -15719,19399,35410,35407,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.07438137519917,9.350249042794607,0,10,-2,-114.8127367744135,0,1,1,2019,7,1,55,56,1,1,0,19.08307472124205,19.08307472124205,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.98,59.35,8.333333333333334,1,1,0,0,8,8,5,1,885,1630300.34349346,323637.8813910481,829167.6015758506,272175.2162041935,4792.94139962796 -15720,19400,35411,35412,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.808666104265845,7.739559538359448,10,-4,-43.8758779519175,-9,-9,-9,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,7.518830278214378,7.996173294245882,35.72,56.81,42.75,23.98,6.666666666666667,1,1,0,0,6,13,3,1,2235.5,941000.0744133731,723249.355509805,234735.0464385924,0,2958.101996217955 -15720,19400,35412,35411,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,10,4,-41.98674747401654,-9,3,3,2019,18,5,0,0,4,5,0,0,0,1,15.76267473095567,48.08674314066504,136.8376801692549,0,1,1,0,0,0,42.75,23.98,35.72,56.81,8.333333333333334,1,1,0,0,0,13,3,1,2235.5,941000.0744133731,723249.355509805,234735.0464385924,0,2958.101996217955 -15721,19401,35413,-9,-9,35415,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.227948410993,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,605.3333333333334,0,0,0,0,1881.443710764555 -15721,19401,35414,-9,-9,35415,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.562078492592,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,605.3333333333334,0,0,0,0,1881.443710764555 -15721,19401,35415,-9,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.523531112923467,7.552429051904222,0,0,0,-1038.262296934143,0,1,2,2019,13,1,7,30,1,1,0,34.47270955564053,34.47270955564053,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,605.3333333333334,0,0,0,0,1881.443710764555 -15722,19402,35416,-9,35417,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-872.3443394568864,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,1,260,38414.96395891777,0,0,0,2574.464525932035 -15722,19402,35417,-9,35418,-9,1,0,48,0,1,0,2,2,-9,1,4,7.419080582413074,8.345842270390381,7.048062200672964,0,0,-1047.91484546098,0,3,2,2019,5,0,26,28,1,0,0,7.430250722485211,7.430250722485211,0,0,0,0,2,1,1,0,8.022823267027634,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,5,10,3,1,260,38414.96395891777,0,0,0,2574.464525932035 -15722,19403,35418,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1126.64803660631,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,1.480366036303946,0,0,0,1,1,0,.0732767576393883,0,50,33,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,452,11926.00369537418,0,0,0,161.8230543086931 -15723,19404,35419,35420,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.979953452129337,7.975351085299486,4.659588945685321,2,0,-4.595713801066625,0,-9,-9,2019,4,0,50,50,1,0,0,7.60680757952153,7.60680757952153,0,0,0,0,0,0,0,0,4.543194880375972,5.338059901283179,57.16,56.15,52.23,55.6,10,1,1,0,0,6,5,5,1,1019.5,3062883.34216244,2593532.626615944,441835.1658200363,0,5718.249448572089 -15723,19404,35420,35419,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.761899256775644,9.471210020260292,8.781198498148122,2,0,166.6352726565458,0,1,1,2019,9,1,42,0,1,1,0,15.75591728787135,15.75591728787135,0,0,0,0,7,0,0,0,4.703698294824481,9.054618014109694,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,3,5,5,1,1019.5,3062883.34216244,2593532.626615944,441835.1658200363,0,5718.249448572089 -15724,19405,35421,35422,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,8.416937240818386,8.540361890164421,6,-1,-48.00406616551785,0,3,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,7.180915362512481,8.529026273996234,37.24,40.06,48.21,37.94,6.666666666666667,1,1,0,0,0,7,4,1,655,2119549.354194781,1458021.293120174,260947.8845468315,0,5168.447197497087 -15724,19405,35422,35421,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.21328851773496,7.425749082426861,6,1,26.48584732312165,0,2,2,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,6.996377833023203,7.419446657409631,48.21,37.94,37.24,40.06,3.333333333333333,1,1,0,0,2,7,4,1,655,2119549.354194781,1458021.293120174,260947.8845468315,0,5168.447197497087 -15725,19406,35423,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,3,0,0,0,0,0,-911.8079083054225,0,-9,-9,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,19.77,62.56,-9,-9,1.666666666666667,1,1,0,0,0,8,1,1,2103,-46690.69508011053,0,0,0,516.5067210031007 -15725,19406,35424,-9,35423,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1228.623430400213,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,1,1,2103,-46690.69508011053,0,0,0,516.5067210031007 -15726,19407,35425,-9,35428,35427,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-962.1600355581656,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,706,77424.19424760379,0,0,0,3267.274379874524 -15726,19407,35426,-9,35428,35427,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1031.417732716574,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,706,77424.19424760379,0,0,0,3267.274379874524 -15726,19407,35427,35428,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,0,0,0,29,1,0,0,-9,-9,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.94,49.1,49.8,56.68,5,1,1,0,0,10,2,2,1,706,77424.19424760379,0,0,0,3267.274379874524 -15726,19407,35428,35427,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,30,-1,0,0,3,-9,2019,20,8,0,35,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,49.8,56.68,48.94,49.1,8.333333333333334,1,1,0,0,6,2,2,1,706,77424.19424760379,0,0,0,3267.274379874524 -15726,19408,35429,-9,35428,35427,1,0,20,0,2,0,2,2,0,0,3,0,0,0,0,0,-1024.119865894468,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,27.32,61.81,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,795,30804.06379504318,0,0,0,0 -15727,19409,35430,-9,35432,35431,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.0813205555188,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,3,1,674.6666666666666,213407.685480501,118047.4831993348,186499.8193089114,68919.81436240859,3122.118925922616 -15727,19409,35431,35432,-9,-9,1,1,56,0,1,0,1,1,-9,0,5,8.723281017915838,8.581612203547996,0,7,0,-.7551325905226474,0,2,2,2019,10,0,37,37,1,0,0,19.53021957371642,19.53021957371642,0,0,0,0,0,1,1,0,6.49996309415058,0,55.09,55.87,52,53,10,1,1,0,0,8,13,3,1,674.6666666666666,213407.685480501,118047.4831993348,186499.8193089114,68919.81436240859,3122.118925922616 -15727,19409,35432,35431,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,0,0,7,0,-36.42028557433427,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.09,55.87,5,1,1,0,0,6,13,3,1,674.6666666666666,213407.685480501,118047.4831993348,186499.8193089114,68919.81436240859,3122.118925922616 -15728,19410,35433,35434,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.284011724246533,7.873914111110212,0,13,0,39.95485371762068,0,2,3,2019,10,1,43,41,1,1,0,8.416970394531219,8.416970394531219,0,0,0,0,0,0,0,0,0,0,42.98,53.19,57.06,57.76,8.333333333333334,1,1,0,0,6,7,5,1,1212,231066.994788099,69108.21078897291,417682.5656951733,201079.7441990232,3208.254761924522 -15728,19410,35434,35433,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.388352198808606,8.50287913046845,0,13,0,-4.935228685772663,0,2,2,2019,8,0,43,48,1,0,0,12.34030047982309,12.34030047982309,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.98,53.19,10,1,1,0,0,7,7,5,1,1212,231066.994788099,69108.21078897291,417682.5656951733,201079.7441990232,3208.254761924522 -15729,19411,35435,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.730052042061915,8.959115913142927,0,0,-925.1600897257968,0,2,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.572772207414641,8.609365626458715,61.19,33.88,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,460,2161471.131658042,475116.607997777,449418.1217608739,0,5660.144085602374 -15730,19412,35436,35437,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.936423347012572,7.98033845153997,7.381537566265116,9,0,34.81811369948933,0,3,3,2019,10,0,30,30,1,0,0,10.41423880545893,10.41423880545893,0,0,0,0,7,0,0,0,0,7.218125414500005,55.92,34.81,53.38,40.07,8.333333333333334,1,1,0,0,10,2,5,1,949.5,387639.78385735,96165.04488327974,209767.0901115314,28800.7374939103,3415.531900570555 -15730,19412,35437,35436,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.202732937121905,8.477265968594811,6.137119732490218,9,0,-62.45047764347826,0,2,3,2019,7,0,35,35,1,0,0,11.81091012031651,11.81091012031651,0,0,0,0,7,0,0,0,3.297641605982093,6.344887286486873,53.38,40.07,55.92,34.81,8.333333333333334,1,1,0,0,10,2,5,1,949.5,387639.78385735,96165.04488327974,209767.0901115314,28800.7374939103,3415.531900570555 -15731,19413,35438,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.818804336501348,6.179836579247169,0,0,-967.4437987775867,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.484308615563658,5.73824466931962,37.42,35.77,-9,-9,6.666666666666667,4,2,0,0,0,9,2,0,564,422375.7940616424,121381.3354860232,196591.8176855325,37882.11817327311,1542.877550904814 -15732,19414,35439,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.121668462671977,7.901910251404002,0,0,-1068.084634921639,0,3,1,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.774071081809297,8.085072556532413,53.29,45.74,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,632,599129.4363680675,262375.4928668051,204423.9460010598,0,3061.90284345498 -15733,19415,35440,35441,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.178805890035308,7.268298474205744,0,32,-1,-9.143481112411903,0,3,-9,2019,8,0,20,20,1,0,0,8.772024083099872,8.772024083099872,0,0,0,0,27,0,0,0,4.003098966172971,0,46.56,50.26,42.46,54.85,5,1,1,0,0,9,5,4,0,1003,32143.44635518776,-13988.17987116906,0,0,2031.081723390905 -15733,19415,35441,35440,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.329660330200721,8.142810872529921,0,32,1,60.11813254739451,0,3,2,2019,12,0,45,45,1,0,0,7.746783043364545,7.746783043364545,0,0,0,0,7,0,0,0,4.000315455506497,0,42.46,54.85,46.56,50.26,5,1,1,0,0,9,5,4,0,1003,32143.44635518776,-13988.17987116906,0,0,2031.081723390905 -15733,19416,35442,-9,35440,35441,1,1,18,0,0,0,2,2,1,0,3,7.135571561908431,6.973348184501035,0,0,0,-968.7935673126557,-9,2,2,2019,11,0,38,0,1,0,1,4.664689116634611,4.664689116634611,0,0,0,0,0,0,0,0,3.173668153677703,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,1,5,3,0,932,220025.0400960115,0,0,0,282.6716083250232 -15734,19417,35443,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.299646906799753,7.28593378772689,0,0,-1124.485256753747,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.38281002862551,31.12,50.57,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,683,291750.2356610416,198183.1457863265,0,0,1445.762647593249 -15735,19418,35444,35445,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.099324296814284,8.130833753407625,0,8,-5,118.0259795018924,0,2,2,2019,8,0,51,48,1,0,0,9.465545128046843,9.465545128046843,0,0,0,0,0,0,0,0,0,0,41.11,54.05,60.69,53.18,10,1,1,0,0,10,2,5,1,555,388203.5412832198,140752.8686826941,228686.9366638901,97329.47096688239,4541.186957001853 -15735,19418,35445,35444,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.206840092621368,9.158909249145879,0,8,5,57.260009887901,0,3,3,2019,7,0,45,39,1,0,0,23.55239691378235,23.55239691378235,0,0,0,0,0,0,0,0,0,0,60.69,53.18,41.11,54.05,8.333333333333334,1,1,0,0,10,2,5,1,555,388203.5412832198,140752.8686826941,228686.9366638901,97329.47096688239,4541.186957001853 -15735,19419,35446,-9,35444,35445,1,0,23,0,0,0,1,1,-9,0,3,7.261218317720964,7.284333733788267,0,0,0,-959.8539622413549,0,2,2,2019,12,0,28,31,1,0,1,6.475782535237044,6.475782535237044,0,0,0,0,0,0,0,0,1.204857190178294,0,36.08,60.5,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,1234,-51384.40153481761,0,0,0,1150.541133010969 -15736,19420,35447,35448,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,47,3,15.8081931054341,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.13,44.68,45.67,53.13,8.333333333333334,1,1,0,0,2,4,2,1,492,315644.617450735,433659.1985465492,0,0,1218.701782029873 -15736,19420,35448,35447,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,6.804010238276521,6.442752961547339,0,49,-3,-98.62265239995853,0,3,3,2019,13,2,12,12,1,2,0,7.631004217323956,7.631004217323956,0,0,0,0,0,1,1,0,0,0,45.67,53.13,44.13,44.68,8.333333333333334,1,1,0,0,5,4,2,1,492,315644.617450735,433659.1985465492,0,0,1218.701782029873 -15737,19421,35449,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.817462022408166,7.740448357630947,0,0,-1001.451780797872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.747675460487049,57.16,56.15,-9,-9,10,1,1,0,0,0,1,3,1,604,471276.3304682423,258951.8596574453,226139.2461567734,0,2534.594171195794 -15738,19422,35450,35451,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,30,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3597820743121,0,52.99,51.28,43.6,51.61,10,1,1,0,0,9,13,1,1,456,288304.0423682861,-20284.61722287322,266915.548454854,0,791.3660268591178 -15738,19422,35451,35450,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,30,-2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,52.99,51.28,6.666666666666667,1,1,0,0,11,13,1,1,456,288304.0423682861,-20284.61722287322,266915.548454854,0,791.3660268591178 -15739,19423,35452,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.152933667005852,8.051451360420925,0,0,0,-811.2819107234767,0,1,1,2019,11,0,39,42,1,0,0,10.36183900847327,10.36183900847327,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1199,172984.8277336141,0,227755.854421802,74746.61134624836,1120.667230180585 -15740,19424,35453,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.1118714741262,9.441469912197835,0,0,0,-1055.95562673047,0,2,2,2019,12,2,38,40,1,2,0,28.26599228027511,28.26599228027511,0,0,0,0,0,1,1,0,3.219802261504399,0,43.04,62.95,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,222,1002813.729167075,239303.0201110757,765842.2991578844,133893.4468109073,3905.607644260572 -15741,19425,35454,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.941552322982099,6.908035398430819,0,0,-967.2701581942297,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.716224959761096,6.739328216915317,57.06,57.76,-9,-9,10,1,1,0,0,0,7,2,0,1051,734727.6987813897,494593.2430877025,300644.480742133,0,1547.498657610753 -15742,19426,35455,35456,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.908278271600356,6.578500390582215,59,6,-114.2147803966412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.083157623345357,6.762049753918786,50.74,44.75,44.23,20.38,8.333333333333334,1,1,0,0,0,7,2,1,1618.5,609253.8463711223,218427.5920107899,200945.567327227,0,1513.560597548601 -15742,19426,35456,35455,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,3.753662666503137,4.01525752727374,49,-6,148.3774600228255,0,3,3,2019,20,10,0,0,4,10,0,0,0,1,0,34.96338207429221,0,0,1,1,0,.7726912819047187,3.90989284082058,44.23,20.38,50.74,44.75,8.333333333333334,1,1,0,0,0,7,2,1,1618.5,609253.8463711223,218427.5920107899,200945.567327227,0,1513.560597548601 -15743,19427,35457,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,0,0,0,0,0,-973.0741631238992,0,3,3,2019,9,0,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,3.439631627535332,0,53,54,-9,-9,8,1,1,0,0,7,2,1,1,201,344185.9001864048,244076.7106731187,0,0,-40.52163556724335 -15744,19428,35458,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,6.321008155035325,6.061819384800304,0,0,-962.191348126306,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.327907950542076,6.106446657509104,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,0,2955,264137.7808014078,156166.6151823461,83972.67573279706,0,1010.507916058057 -15745,19429,35459,35460,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.680285303901107,8.541456082123817,0,28,0,-24.04619738427441,0,-9,-9,2019,14,3,41,45,1,3,0,14.88989931384958,14.88989931384958,0,0,0,0,2,0,0,0,0,0,38.09,63.39,52.54,54.24,8.333333333333334,1,1,0,0,10,2,5,1,469.5,-23944.72865749761,-35250.56526091538,158041.1392058835,4410.127160303235,4230.926050299442 -15745,19429,35460,35459,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.372714512570347,8.660556701183618,0,28,0,41.94611961597086,0,-9,-9,2019,6,0,40,40,1,0,0,16.03726220362497,16.03726220362497,0,0,0,0,0,0,0,0,0,0,52.54,54.24,38.09,63.39,8.333333333333334,1,1,0,0,10,2,5,1,469.5,-23944.72865749761,-35250.56526091538,158041.1392058835,4410.127160303235,4230.926050299442 -15746,19430,35461,35462,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,48,-2,-4.189999107136046,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,14.5,1,1,0,4.806754104500546,0,49.27,47.49,52.41,43.29,8.333333333333334,1,1,0,0,0,9,4,1,642,2302737.037214935,1168529.242604126,405929.8321921985,0,3998.708469298992 -15746,19430,35462,35461,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.831746232881873,9.117176389470792,48,2,-14.40131428158695,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.890684428811946,52.41,43.29,49.27,47.49,8.333333333333334,1,1,0,0,0,9,4,1,642,2302737.037214935,1168529.242604126,405929.8321921985,0,3998.708469298992 -15747,19431,35463,35464,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.537797619385161,6.888363231861827,0,7,10,-24.96883122652675,-9,-9,-9,2019,10,0,40,0,1,0,0,2.466227560599851,2.466227560599851,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,7,10,5,1,1041.5,1343058.317785392,966098.6831220739,419965.1979391319,26967.29718074781,4104.162822899209 -15747,19431,35464,35463,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,9.608307519070822,10.03432274837851,0,7,-10,-18.27828435649356,0,2,2,2019,7,0,45,43,1,0,0,42.22313485437962,42.22313485437962,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,1041.5,1343058.317785392,966098.6831220739,419965.1979391319,26967.29718074781,4104.162822899209 -15748,19432,35465,-9,35467,35468,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.6428865688046,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,799,56688.56108447821,25470.60372440201,171205.589871775,106223.2924855099,3159.74246490147 -15748,19432,35466,-9,35467,35468,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.960537406096,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,799,56688.56108447821,25470.60372440201,171205.589871775,106223.2924855099,3159.74246490147 -15748,19432,35467,35468,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,6.967252199862131,7.15353449321808,0,9,-1,27.53702845541556,0,3,3,2019,9,0,18,10,1,0,0,8.291541401308486,8.291541401308486,0,0,0,0,0,1,1,0,0,0,61.07,40.89,35.67,48.56,5,1,1,0,0,6,11,4,1,799,56688.56108447821,25470.60372440201,171205.589871775,106223.2924855099,3159.74246490147 -15748,19432,35468,35467,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.444578297345659,8.434571794425228,0,9,1,-32.57422929076112,0,-9,-9,2019,12,0,50,50,1,0,0,10.75080637335628,10.75080637335628,0,0,0,0,0,1,1,0,0,0,35.67,48.56,61.07,40.89,6.666666666666667,1,1,0,0,10,11,4,1,799,56688.56108447821,25470.60372440201,171205.589871775,106223.2924855099,3159.74246490147 -15749,19433,35469,35470,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.612771873281702,8.706136262348354,0,4,4,-1.340160838436088,0,2,2,2019,12,0,43,24,1,0,0,13.5007374438793,13.5007374438793,0,0,0,0,0,0,0,0,4.894013140659645,0,41.36,45.21,62.39,56.71,6.666666666666667,1,1,0,0,8,6,5,1,539,1332137.702145583,1117063.207375123,299239.6185322768,24580.17577825852,10351.32653268962 -15749,19433,35470,35469,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,9.81753003300439,9.496477918018931,0,4,-4,-73.5709598366728,0,-9,-9,2019,8,0,60,48,1,0,0,28.33138004578847,28.33138004578847,0,0,0,0,0,0,0,0,6.106773014443919,0,62.39,56.71,41.36,45.21,10,1,1,0,0,10,6,5,1,539,1332137.702145583,1117063.207375123,299239.6185322768,24580.17577825852,10351.32653268962 -15750,19434,35471,35472,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.157808107702501,7.643023198693273,0,9,5,25.08817779527702,0,-9,-9,2019,10,0,26,26,1,0,0,6.128479103558691,6.128479103558691,0,0,0,0,0,0,0,0,4.706597343057397,0,60.45,30.52,60.26,29.52,8.333333333333334,1,1,0,0,10,10,4,1,333.5,611595.672806249,481111.3190620078,166039.671021872,44509.46347351642,2207.172786879941 -15750,19434,35472,35471,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,7.89500505114681,8.363867360752996,0,9,-5,54.80161982084843,0,2,2,2019,11,1,42,42,1,1,0,11.59000006363659,11.59000006363659,0,0,0,0,0,0,0,0,0,0,60.26,29.52,60.45,30.52,5,1,1,0,0,10,10,4,1,333.5,611595.672806249,481111.3190620078,166039.671021872,44509.46347351642,2207.172786879941 -15751,19435,35473,-9,35475,35474,1,1,41,0,0,0,1,1,-9,0,5,9.052442427705925,8.682002646732032,0,0,0,-889.7446602139223,0,3,3,2019,12,0,50,50,1,0,1,17.89304881963774,17.89304881963774,0,0,0,0,0,1,1,0,3.375626346480309,0,43.24,59.41,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,115,138110.0532599319,228059.5332549803,174755.2339446495,45037.60312460614,2884.477361388754 -15751,19436,35474,35475,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.098086384286374,7.878043779896284,0,2,-1,-57.80827376604424,0,-9,-9,2019,6,0,41,39,1,0,0,7.502059528922852,7.502059528922852,0,0,0,0,0,1,1,0,1.468607011062847,0,58.32,50.22,44.83,53.86,8.333333333333334,1,1,0,0,9,2,3,1,523,298126.3936474905,23335.8722808363,179236.243974556,0,1092.030132335561 -15751,19436,35475,35474,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,2,1,22.42958137502825,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.83,53.86,58.32,50.22,8.333333333333334,1,1,0,0,0,2,3,1,523,298126.3936474905,23335.8722808363,179236.243974556,0,1092.030132335561 -15752,19437,35476,-9,35477,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-971.7278477758605,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,42,1,1,0,0,0,44.83,55.13,-9,-9,10,1,1,0,0,0,12,1,0,865,0,0,0,0,1020.975108783653 -15752,19437,35477,-9,-9,-9,1,0,33,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1090.696964383662,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,24.13,27.24,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,865,0,0,0,0,1020.975108783653 -15753,19438,35478,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-969.3328161840975,0,3,2,2019,32,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,26.82,19.15,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,1097,639.9863531449246,-1698.11147486886,0,0,925.6248833500777 -15754,19439,35479,35480,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.473969223047412,8.190688229778093,0,9,-3,-132.4666017803867,0,2,3,2019,24,12,39,38,1,12,0,14.23089427528512,14.23089427528512,0,0,0,0,0,0,0,0,0,0,37.85,54.28,46.08,57.2,3.333333333333333,1,1,0,0,10,12,5,1,262.5,1155014.25968987,916781.1903566741,155550.9413112816,0,4093.33361071987 -15754,19439,35480,35479,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.42899741587016,8.656997052453004,0,9,3,25.44846357491678,0,3,3,2019,12,0,41,40,1,0,0,17.96956936021217,17.96956936021217,0,0,0,0,0,0,0,0,0,0,46.08,57.2,37.85,54.28,8.333333333333334,1,1,0,0,10,12,5,1,262.5,1155014.25968987,916781.1903566741,155550.9413112816,0,4093.33361071987 -15755,19440,35481,-9,35484,35483,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.133880994419,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,1092.5,802764.4772993169,468414.0366206211,204561.9510409317,1395.149425203072,3438.736640846492 -15755,19440,35482,-9,35484,35483,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.745791813353,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1092.5,802764.4772993169,468414.0366206211,204561.9510409317,1395.149425203072,3438.736640846492 -15755,19440,35483,35484,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.275775826119228,8.496846412116003,0,24,1,-34.52886943772198,0,-9,-9,2019,24,12,38,38,1,12,0,15.38251183835616,15.38251183835616,0,0,0,0,0,1,1,0,0,0,31.29,60.01,51.14,60.45,3.333333333333333,1,1,0,0,13,4,4,1,1092.5,802764.4772993169,468414.0366206211,204561.9510409317,1395.149425203072,3438.736640846492 -15755,19440,35484,35483,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.879526064591841,8.282760703215773,0,25,-1,31.0448055137301,0,2,2,2019,6,0,29,32,1,0,0,10.81036383157253,10.81036383157253,0,0,0,0,0,1,1,0,0,0,51.14,60.45,31.29,60.01,8.333333333333334,1,1,0,0,13,4,4,1,1092.5,802764.4772993169,468414.0366206211,204561.9510409317,1395.149425203072,3438.736640846492 -15756,19441,35485,-9,35487,35488,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-945.8493409250228,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,1,788,270552.5149153471,137874.8706418016,185123.4607542276,82625.10497185179,3462.522694726174 -15756,19441,35486,-9,35487,35488,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-985.1981095484167,-9,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.21000000000001,40.6,-9,-9,10,1,1,0,0,1,1,4,1,788,270552.5149153471,137874.8706418016,185123.4607542276,82625.10497185179,3462.522694726174 -15756,19441,35487,35488,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,7.662792616544262,7.427833149561231,0,1,2,50.91389201714956,-9,3,2,2019,12,0,45,0,1,0,0,4.817489215061785,4.817489215061785,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.74,50.46,6.666666666666667,1,1,0,0,11,1,4,1,788,270552.5149153471,137874.8706418016,185123.4607542276,82625.10497185179,3462.522694726174 -15756,19441,35488,35487,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.606252847562295,8.49002581792127,0,1,-2,15.17561897668722,-9,-9,-9,2019,12,0,45,0,1,0,0,14.39201205231497,14.39201205231497,0,0,0,0,0,1,1,0,0,0,48.74,50.46,51.83,57.2,6.666666666666667,1,1,0,0,12,1,4,1,788,270552.5149153471,137874.8706418016,185123.4607542276,82625.10497185179,3462.522694726174 -15757,19442,35489,35490,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,28,0,57.29158791894161,0,1,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.41,56.15,8.333333333333334,1,1,0,0,0,10,5,1,606,4104482.914534901,1634108.232782998,998169.5515134447,0,6461.147156166006 -15757,19442,35490,35489,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.56368951454076,9.723353501811509,7.957110258070363,26,9,27.80533833285147,0,2,2,2019,6,0,52,45,1,0,0,36.12352148721025,36.12352148721025,0,0,0,0,0,0,0,0,3.14173396938689,8.17601391972905,51.41,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,606,4104482.914534901,1634108.232782998,998169.5515134447,0,6461.147156166006 -15757,19443,35491,-9,35489,35490,1,1,23,0,0,0,1,1,-9,0,4,8.309577695142186,8.303363907496275,0,0,0,-963.9856205370123,0,1,2,2019,4,0,35,0,1,0,1,14.85568959493369,14.85568959493369,0,0,0,0,0,0,0,0,2.724285602366271,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1027,104729.2766461031,-11739.87108432161,0,0,2033.170515654714 -15757,19444,35492,-9,35489,35490,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1019.156049747643,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.0351238570179272,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,537,247033.3269274107,0,0,0,-505.3096006879305 -15758,19445,35493,35494,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.193346249369681,7.077984977581296,56,2,-45.16914630549913,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.584463628980753,7.278920441512154,59.34,46.94,51,46,10,1,1,0,0,0,7,2,1,296,520507.3149823656,199700.1184810622,268756.4398103396,37216.33170535327,2159.865821863384 -15758,19445,35494,35493,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.84295613089853,5.436375052275322,7,-2,158.0224325044549,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.963600684893327,51,46,59.34,46.94,8,1,1,0,0,0,7,2,1,296,520507.3149823656,199700.1184810622,268756.4398103396,37216.33170535327,2159.865821863384 -15759,19446,35495,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.335347722263247,7.093149198909159,0,0,-884.5148662189695,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.274160841015993,6.97717688801585,58.26,29.98,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,3118,100831.4089331715,43826.56531627604,147419.9861078722,0,1124.840784212141 -15759,19447,35496,35497,35495,-9,1,0,50,0,0,0,1,1,-9,0,3,9.398537731805737,9.543246354164904,0,15,-6,-52.08974397185399,0,2,-9,2019,8,0,40,40,1,0,0,32.49286995357797,32.49286995357797,0,0,0,0,0,1,1,0,5.739648193347961,0,40.89,51.69,57.16,56.15,6.666666666666667,1,1,0,0,9,8,5,1,434,1471438.830027809,0,1487620.353911591,33324.20871965731,3335.543585457265 -15759,19447,35497,35496,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.374951967350182,8.540919951904016,0,15,6,4.942246889978199,0,2,2,2019,6,0,37,35,1,0,0,15.82757929670814,15.82757929670814,0,0,0,0,0,1,1,0,5.312172256326869,0,57.16,56.15,40.89,51.69,8.333333333333334,4,2,0,0,7,8,5,1,434,1471438.830027809,0,1487620.353911591,33324.20871965731,3335.543585457265 -15760,19448,35498,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,6.743598176748969,6.893102582597596,0,0,0,-1056.639552593929,0,-9,-9,2019,25,9,20,20,1,9,0,5.519309622929637,5.519309622929637,0,0,0,0,0,1,1,0,0,0,24.2,63.61,-9,-9,1.666666666666667,1,1,0,1,3,1,2,0,420,325384.6206885416,0,116274.4477456668,31951.44019549542,1405.228947353634 -15761,19449,35499,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.9027284425678,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,35.25,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,263,32315.12627751797,6913.859137027935,0,0,1047.586206322601 -15762,19450,35500,-9,35501,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.750276216645,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,1158.5,-55860.87811394274,0,0,0,2142.359983708722 -15762,19450,35501,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,7.88051201913057,7.617607970265105,0,0,0,-1031.503712380697,0,2,3,2019,8,2,36,45,1,2,0,6.444318638404889,6.444318638404889,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,1158.5,-55860.87811394274,0,0,0,2142.359983708722 -15763,19451,35502,-9,35504,35503,1,1,52,0,0,0,2,2,-9,0,5,7.8107604853783,7.449730981771482,0,0,0,-1143.045662128549,0,3,3,2019,11,0,37,38,1,0,0,7.855539100249669,7.855539100249669,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,5,1,1,0,0,5,12,3,0,288,-49522.63027649304,8115.270293341285,0,0,1546.938148580904 -15763,19452,35503,35504,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,8.179800114956587,8.633688036886658,6,0,13.50980593824783,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,7.900041851671255,8.423590868609054,49.27,55.11,51,46,10,1,1,0,0,0,12,4,0,343,999211.4390702576,695617.1000530795,174799.4145620061,0,4296.986079344526 -15763,19452,35504,35503,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,6,0,63.98948903415964,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,49.27,55.11,7,1,1,0,0,0,12,4,0,343,999211.4390702576,695617.1000530795,174799.4145620061,0,4296.986079344526 -15764,19453,35505,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.399128502434619,7.78656331308025,0,0,-973.5632127665511,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.872463840880932,7.047411492001973,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,1011,270535.9701814217,301173.5873095182,119385.5710337656,0,1627.254073090518 -15765,19454,35506,35508,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.751028799338195,7.865535420087,0,5,3,-21.02793566622816,0,-9,-9,2019,11,1,28,27,1,1,0,11.53280027477048,11.53280027477048,0,0,0,0,0,1,1,0,0,0,54.74,57.22,34.51,57.34,6.666666666666667,1,1,0,0,9,12,5,1,611.6666666666666,384987.3644836757,45340.71342318921,309868.4959329267,231742.1673020996,3179.397786795487 -15765,19454,35507,-9,35506,35508,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.121716433947,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,611.6666666666666,384987.3644836757,45340.71342318921,309868.4959329267,231742.1673020996,3179.397786795487 -15765,19454,35508,35506,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.910540010713039,8.578633356817061,0,5,-3,-35.86369992273075,0,2,2,2019,12,0,41,45,1,0,0,17.90099676848714,17.90099676848714,0,0,0,0,0,1,1,0,0,0,34.51,57.34,54.74,57.22,5,1,1,0,0,5,12,5,1,611.6666666666666,384987.3644836757,45340.71342318921,309868.4959329267,231742.1673020996,3179.397786795487 -15766,19455,35509,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.665217716825957,8.398482528558917,0,0,0,-960.4039249653506,0,1,1,2019,6,0,55,45,1,0,0,12.30261981091669,12.30261981091669,0,0,0,0,0,1,1,0,2.824105436817022,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,731,87748.06691590228,-12877.71417242636,0,0,1757.921178921298 -15767,19456,35510,35511,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.995552313188215,8.675672872824217,0,10,-11,186.3977388066501,0,2,2,2019,11,4,38,38,1,4,0,16.70695466494485,16.70695466494485,0,0,0,0,0,0,0,0,5.387830944223007,0,54.23,25.51,58.87,51.29,6.666666666666667,1,1,0,0,11,4,5,1,310.5,398064.2093140168,250894.8519345091,176407.5814209345,45631.88828228234,5192.387913654014 -15767,19456,35511,35510,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.443796331442183,8.507770384151963,0,10,11,28.37068015121627,0,2,2,2019,8,0,24,24,1,0,0,28.07956446501039,28.07956446501039,0,0,0,0,0,0,0,0,5.159977517925756,0,58.87,51.29,54.23,25.51,8.333333333333334,1,1,0,0,11,4,5,1,310.5,398064.2093140168,250894.8519345091,176407.5814209345,45631.88828228234,5192.387913654014 -15768,19457,35512,-9,-9,35513,1,0,20,0,0,0,2,2,-9,0,3,7.748057059542022,7.407234190139695,0,0,0,-997.6686193308357,0,-9,1,2019,23,11,35,8,1,11,1,6.728194019785578,6.728194019785578,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,3,9,3,1,708,227348.5633262401,0,0,0,972.8579945407675 -15768,19458,35513,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.089445658175578,8.163210167851945,5.437688454497339,0,0,-909.9227554562278,0,-9,-9,2019,11,0,50,21,1,0,0,9.899901670688601,9.899901670688601,0,0,0,0,0,1,1,0,0,5.954144550513776,52.01,48.98,-9,-9,5,1,1,0,0,4,9,4,1,380,1427603.163789116,1152757.692897078,0,0,1373.580979957972 -15769,19459,35514,35516,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,10,5,-41.82682941111752,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,41.34,56.62,6.666666666666667,1,1,0,0,1,9,3,0,760.25,162096.8418000811,139563.2494284693,0,0,1.547296998636796 -15769,19459,35515,-9,35516,35514,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-925.8439791072212,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1.097263764792007,0,44,59,-9,-9,7,1,1,0,0,0,9,3,0,760.25,162096.8418000811,139563.2494284693,0,0,1.547296998636796 -15769,19459,35516,35514,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.181677723088766,8.056349808830715,0,25,-5,168.7566023362543,0,2,2,2019,14,2,46,50,1,2,0,8.195706393507372,8.195706393507372,0,0,0,0,0,0,0,0,0,0,41.34,56.62,62.66,52.4,5,1,1,0,0,13,9,3,0,760.25,162096.8418000811,139563.2494284693,0,0,1.547296998636796 -15769,19459,35517,-9,35516,35514,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-837.7686486950392,-9,1,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,760.25,162096.8418000811,139563.2494284693,0,0,1.547296998636796 -15769,19460,35518,-9,35516,35514,1,0,21,0,0,0,1,1,1,0,3,6.961397687175801,6.87646877179627,0,0,0,-1025.577497623166,-9,1,2,2019,20,8,18,0,1,8,1,6.120168617966383,6.120168617966383,0,0,0,0,0,0,0,0,0,0,32.38,58.28,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,1202,-170903.2247221892,0,0,0,842.6050704690222 -15769,19461,35519,-9,35516,35514,1,0,20,0,0,0,2,2,-9,0,3,5.006664071772938,5.233535745838223,0,0,0,-999.7246297875523,0,1,2,2019,12,3,32,32,1,3,1,.7808546760659245,.7808546760659245,0,0,0,0,0,0,0,0,7.917303760634325,0,39.03,49.56,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,654,42502.23282366716,0,0,0,739.0468711930343 -15769,19462,35520,-9,35516,35514,1,0,20,0,0,0,2,2,-9,0,4,7.881785765106005,7.665479626860223,0,0,0,-992.0733834332043,0,1,2,2019,12,0,40,0,1,0,1,6.712110448267332,6.712110448267332,0,0,0,.8476281807133681,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,1028,216161.7484417668,-136608.1122069058,0,0,1264.416104713143 -15770,19463,35521,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.106215801110981,7.96438066565281,0,0,0,-1014.453058150189,0,3,-9,2019,12,0,58,50,1,0,0,6.157909718515619,6.157909718515619,0,0,0,0,0,1,1,0,6.543142813106027,0,46.32,53.44,-9,-9,5,1,1,0,0,8,10,4,1,355,156183.9383184585,-11420.3137006638,233083.1844562775,12131.99547686938,2268.819828827256 -15770,19464,35522,-9,-9,-9,1,1,21,0,0,0,2,2,-9,1,2,8.300675686155653,8.048126918457655,0,0,0,-1067.816783041591,-9,-9,-9,2019,33,12,45,0,1,12,0,10.25405945230711,10.25405945230711,0,0,0,0,42,1,1,0,0,0,20.6,44.98,-9,-9,0,1,1,0,1,1,10,4,1,760,185186.3082535019,-99317.39106212865,0,0,1961.002936007381 -15771,19465,35523,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,8.354606211800588,8.335182931062995,0,0,0,-1103.123827129927,0,1,2,2019,6,0,45,55,1,0,1,12.77304500806854,12.77304500806854,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,572,101004.5924477023,7591.094312663364,0,0,1807.297007326761 -15772,19466,35524,-9,-9,-9,1,0,84,0,1,0,3,3,-9,0,2,0,0,0,0,0,-884.1518829355227,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.65,19.47,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,927,37434.18136797783,0,0,0,846.3838929198513 -15772,19467,35525,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.787596553960494,6.510126647865579,0,0,0,-1160.709547184488,0,2,-9,2019,11,0,12,16,1,0,0,6.53576233238076,6.53576233238076,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,396,-32021.72643599944,0,0,0,596.5362634012463 -15772,19467,35526,-9,35525,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.4622075999824,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,396,-32021.72643599944,0,0,0,596.5362634012463 -15773,19468,35527,-9,-9,-9,1,0,55,0,1,0,2,2,-9,1,1,0,0,0,0,0,-904.0468169333293,0,1,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,40.31,14.24,-9,-9,1.666666666666667,1,1,0,1,7,8,1,0,4279,0,0,0,0,403.0061184078958 -15773,19469,35528,-9,35527,-9,1,1,23,0,1,0,2,2,-9,1,4,7.796707822441387,7.503891664667186,0,0,0,-942.0967191799508,0,2,-9,2019,8,0,35,40,1,0,1,8.316934380305771,8.316934380305771,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,130,-339372.4266236984,0,0,0,1127.91372099004 -15773,19470,35529,-9,35527,-9,1,0,26,0,1,0,2,2,-9,0,5,0,6.094330354809265,6.667432395599391,0,0,-1087.736267682287,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,6.199252173332023,0,49.84,59.62,-9,-9,10,1,1,0,0,6,8,2,0,481.5,8451.937832352705,0,0,0,1065.491692946378 -15773,19470,35530,-9,35529,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.396172024818,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,481.5,8451.937832352705,0,0,0,1065.491692946378 -15774,19471,35531,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.974288228224175,7.925098552723004,0,0,0,-1060.984132559615,0,-9,-9,2019,18,7,49,65,1,7,0,7.199080176627471,7.199080176627471,0,0,0,0,0,0,0,0,2.286444157777075,0,35.22,48.69,-9,-9,5,1,1,0,0,11,7,4,1,149,97411.19406065121,0,0,0,1062.678398128321 -15775,19472,35532,35533,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.214789958546093,7.403490132313994,2,6,-1.237944757711212,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.430438510229512,7.533427275556029,42.6,50.45,57.7,55.88,8.333333333333334,1,1,0,0,0,2,3,1,672.5,899202.4545869618,362034.19549473,362708.2555103448,0,2728.746535710538 -15775,19472,35533,35532,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.248655946672911,6.442340358422101,2,-6,-44.72035996411703,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,1.111700772825706,0,1,1,0,2.838921255595828,6.195868045635568,57.7,55.88,42.6,50.45,8.333333333333334,1,1,0,0,0,2,3,1,672.5,899202.4545869618,362034.19549473,362708.2555103448,0,2728.746535710538 -15776,19473,35534,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.279666635382037,7.452783963306187,0,0,0,-1073.995466633802,0,2,1,2019,19,6,18,38,1,6,0,7.205591976949226,7.205591976949226,0,0,0,0,71.5,1,0,1,.6201700690015033,0,31.79,36.16,-9,-9,3.333333333333333,1,1,0,1,13,10,3,0,54,564668.6561854657,469293.2670280889,0,0,935.5419679325212 -15777,19474,35535,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.913795618631949,8.00898122084174,0,0,-1010.352200893131,-9,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.871022905660323,7.955918066925892,39.5,41.06,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,941,395656.5542602317,0,0,0,1307.803951272433 -15778,19475,35536,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.287469614297383,7.353741969694798,0,0,0,-1028.230722899521,-9,3,3,2019,24,12,20,0,1,12,0,10.04103693958725,10.04103693958725,0,0,0,0,0,0,0,0,5.066181417580393,0,50.32,21.75,-9,-9,3.333333333333333,1,1,0,0,7,9,3,1,4666,256024.4349780609,42128.23709726153,0,0,1390.932202603576 -15779,19476,35537,35538,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.442591024980822,7.249202211853264,0,39,2,64.64737683962085,0,2,2,2019,10,0,24,24,1,0,0,6.663697373140555,6.663697373140555,0,0,0,0,0,0,0,0,0,0,55.11,47.63,57.33,53.46,8.333333333333334,1,1,0,0,9,9,4,1,393,274475.6555195487,111952.4796836997,286089.465562715,124862.1894604543,2362.855766298965 -15779,19476,35538,35537,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.243116216061704,8.22184840202724,0,39,-2,-15.67645391974572,0,3,2,2019,7,0,60,50,1,0,0,8.193193265841449,8.193193265841449,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.11,47.63,8.333333333333334,1,1,0,0,9,9,4,1,393,274475.6555195487,111952.4796836997,286089.465562715,124862.1894604543,2362.855766298965 -15780,19477,35539,-9,35540,35541,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1110.274443116113,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,32.35,55.36,-9,-9,5,1,1,1,0,0,2,1,0,413,81909.80478688833,0,0,0,516.4753883671684 -15780,19478,35540,35541,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,4,-5,0,0,-9,-9,2019,29,12,0,10,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.19,19.44,39.49,51.79,0,1,1,0,1,1,2,1,0,685.5,238328.6403120247,0,257137.5681991673,0,41.79992702823725 -15780,19478,35541,35540,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,4,5,0,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,39.49,51.79,29.19,19.44,5,1,1,0,0,0,2,1,0,685.5,238328.6403120247,0,257137.5681991673,0,41.79992702823725 -15781,19479,35542,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.569478280054932,8.099721469018224,5.782205904119775,0,0,-1039.198974365553,0,1,2,2019,10,0,16,17,1,0,0,19.64340344123556,19.64340344123556,0,0,0,0,2,1,1,0,5.487772188734573,0,48.2,44.16,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,764.3333333333334,89450.5737972745,10105.90279689348,0,0,1597.423159090817 -15781,19479,35543,-9,35542,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.621462010298,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,764.3333333333334,89450.5737972745,10105.90279689348,0,0,1597.423159090817 -15781,19479,35544,-9,35542,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.208776584488,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.0886560173271267,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,0,764.3333333333334,89450.5737972745,10105.90279689348,0,0,1597.423159090817 -15782,19480,35545,-9,-9,-9,1,0,65,0,0,0,2,2,-9,1,2,7.649936150109278,8.084026193084402,0,0,0,-1080.841287539221,0,3,3,2019,10,0,30,30,1,0,0,10.43192439387274,10.43192439387274,1,0,5.313518224410645,0,0,1,1,0,0,0,64.64,21.97,-9,-9,5,1,1,0,0,10,12,4,0,946,850917.1104164938,439784.5023460643,214746.8497945345,0,2024.844664402937 -15783,19481,35546,35547,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,8,2,-12.31491775217956,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,.9113392896700798,2,1,1,0,3.515566231992176,0,62.28,34.91,61.12,51.57,10,2,3,0,0,0,6,2,1,252,1056404.229265706,196916.8647083727,667346.6482911113,0,1227.935116283343 -15783,19481,35547,35546,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.21151023203076,7.110067392121,5.570834440168555,44,-2,-30.85852038669518,0,3,3,2019,6,0,30,30,1,0,0,5.342986940159465,5.342986940159465,0,0,0,0,2,1,1,0,5.910339142492353,6.065199263087837,61.12,51.57,62.28,34.91,10,2,3,0,0,9,6,2,1,252,1056404.229265706,196916.8647083727,667346.6482911113,0,1227.935116283343 -15783,19482,35548,-9,35546,35547,1,0,36,0,0,0,1,1,-9,0,3,8.253994005828034,8.232445527053757,0,0,0,-1044.625544606049,0,3,2,2019,13,1,50,38,1,1,1,7.521873891275042,7.521873891275042,0,0,0,0,2,1,1,0,1.566326394407364,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,6,4,1,390,243864.4604906567,60314.8939326783,228638.2408332905,150395.6622534425,895.3284777226552 -15783,19483,35549,-9,35546,35547,1,1,30,0,0,0,2,2,-9,0,3,7.99430687670976,7.978839427649898,0,0,0,-1022.146512126822,0,3,2,2019,12,1,42,40,1,1,1,10.24549992971431,10.24549992971431,0,0,0,0,0,1,1,0,1.260283502694751,0,40.91,58.37,-9,-9,6.666666666666667,2,3,0,0,2,6,4,1,248,14369.84754923155,122387.1127929816,0,0,1864.3846762533 -15784,19484,35550,35551,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.241005027423045,9.123649868195791,0,22,-4,-37.19006000390436,0,1,1,2019,17,5,38,40,1,5,0,30.07355631811803,30.07355631811803,0,0,0,0,7,1,1,0,8.138100053881413,0,49.06,58.64,43.42,62.33,8.333333333333334,1,1,0,0,10,9,5,1,1223,1666730.239992811,999043.3719745101,361949.9484743669,17428.57792683907,7026.767408928055 -15784,19484,35551,35550,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,4.156706216361604,6.524447747927876,6.13567084405045,22,4,104.0093359513873,0,3,3,2019,10,0,24,32,1,0,0,.3826621836384367,.3826621836384367,0,0,0,0,2,1,1,0,9.048081351916512,6.722373086432055,43.42,62.33,49.06,58.64,8.333333333333334,1,1,0,0,10,9,5,1,1223,1666730.239992811,999043.3719745101,361949.9484743669,17428.57792683907,7026.767408928055 -15785,19485,35552,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,8.167001073883823,8.058724843226846,0,0,0,-868.9489911924859,0,3,3,2019,11,0,32,37,1,0,0,11.21117708536045,11.21117708536045,0,0,0,0,2,1,1,0,1.335526250509175,0,39.06,54.74,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,717,86323.85164682887,294059.0942405002,118855.2749637716,23825.02576221841,1664.886848173589 -15785,19486,35553,-9,35552,-9,1,1,26,0,1,0,2,2,-9,0,3,7.350873252971033,7.462342334975707,0,0,0,-1034.873443199196,0,2,2,2019,13,2,25,20,1,2,1,9.221197809835992,9.221197809835992,0,0,0,0,0,1,1,0,2.71920059093662,0,51.85,49.12,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,885,70474.20024409742,0,0,0,341.2844675565603 -15785,19487,35554,-9,35552,-9,1,0,23,0,1,0,2,2,-9,0,4,6.78194442856291,6.746244368080256,0,0,0,-916.0829831449121,0,2,-9,2019,7,0,24,20,1,0,1,3.957369924091119,3.957369924091119,0,0,0,0,0,1,1,0,0,0,59.14,44.27,-9,-9,6.666666666666667,1,1,0,0,3,13,2,1,2879,-109973.5933972936,0,0,0,893.5119278062687 -15785,19487,35555,-9,35554,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.503799194073,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,2879,-109973.5933972936,0,0,0,893.5119278062687 -15785,19488,35556,-9,35552,-9,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-952.7733507227113,1,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,13,1,1,226,366424.2547529541,0,0,0,-89.53334669439704 -15786,19489,35557,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.118269347833499,7.987323428518868,0,0,0,-1016.346789943113,0,2,1,2019,7,0,20,10,1,0,0,14.84236517118102,14.84236517118102,0,0,0,0,0,0,0,0,5.233661943949848,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,673,221336.6168867565,178331.3858541342,33204.67816554459,0,1986.280036924286 -15787,19490,35558,-9,35560,35561,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.0414704361199,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,616.5,588210.6386119458,166733.2875394722,394964.0943993686,129343.6569773775,4438.683516256287 -15787,19490,35559,-9,35560,35561,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.5568025020883,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,616.5,588210.6386119458,166733.2875394722,394964.0943993686,129343.6569773775,4438.683516256287 -15787,19490,35560,35561,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.553039729385084,7.369388261060268,0,11,-2,-85.49817569699701,0,3,3,2019,8,1,20,0,1,1,0,9.503817222700313,9.503817222700313,0,0,0,0,0,1,1,0,0,0,54.03,44.43,57.86,40.98,8.333333333333334,2,3,0,0,1,8,4,1,616.5,588210.6386119458,166733.2875394722,394964.0943993686,129343.6569773775,4438.683516256287 -15787,19490,35561,35560,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.841616859039311,8.904061334766322,0,11,2,-9.932033128615016,0,1,1,2019,7,0,40,37,1,0,0,20.37561965878022,20.37561965878022,0,0,0,0,0,1,1,0,3.269199745184493,0,57.86,40.98,54.03,44.43,8.333333333333334,2,3,0,0,11,8,4,1,616.5,588210.6386119458,166733.2875394722,394964.0943993686,129343.6569773775,4438.683516256287 -15788,19491,35562,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.895073633937481,6.969425807228124,0,0,0,-1093.796134366276,0,2,2,2019,12,0,12,18,1,0,0,10.48720095299086,10.48720095299086,0,0,0,0,0,0,0,0,3.328682516826527,0,57.56,54.55,-9,-9,5,1,1,0,0,7,9,2,0,684,87607.14449740255,3961.313665018555,0,0,964.9480653016917 -15789,19492,35563,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,9.112578851041786,9.080063919990119,0,0,0,-1012.752408392595,0,-9,-9,2019,10,0,50,50,1,0,0,22.85452210217209,22.85452210217209,0,0,0,1.261700083829313,0,1,1,0,2.992121659642714,0,48.09,56.48,-9,-9,8.333333333333334,2,3,0,0,12,8,5,1,268,56155.81474578938,61334.63514551575,0,0,2700.359215262994 -15790,19493,35564,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.214276931275597,6.154491394044748,0,0,-1075.848478016373,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.298316583458317,30.97,45.17,-9,-9,3.333333333333333,1,1,0,0,6,10,2,0,201,454041.3160604386,102368.2997188654,294034.2962651552,0,933.5207472325442 -15791,19494,35565,35566,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.341254901076395,7.220187702347577,41,-3,-28.33993255127653,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.430462827163497,7.189030498390687,57.16,56.15,57.06,57.76,10,1,1,0,0,0,9,4,1,564,1529302.209320819,1045184.729887458,408406.6849744456,83307.39117496046,4494.198380041713 -15791,19494,35566,35565,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.985421362960902,8.069060326878954,41,3,11.88728595747447,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.886603598872305,8.210424375824894,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,564,1529302.209320819,1045184.729887458,408406.6849744456,83307.39117496046,4494.198380041713 -15792,19495,35567,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.599385991940689,6.765846177268749,0,0,-1006.543368613927,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,2.183826722098226,0,0,2,1,1,0,0,6.488968273581692,42.95,29.14,-9,-9,6.666666666666667,1,1,0,1,0,5,2,0,997,100665.7485995019,158079.0848750795,109074.3454499153,0,1073.915160102718 -15793,19496,35568,35569,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.628071852825345,8.478469190986955,4.284297201274674,19,-15,112.8474551561054,0,2,2,2019,11,0,48,95,1,0,0,15.94832720090302,15.94832720090302,0,0,0,0,2,1,1,0,5.473235214502406,5.024146231438736,54.22,39.07,56.86,48.05,6.666666666666667,1,1,0,0,8,7,4,1,477.5,2581259.179931421,1039185.862702732,1370312.980085205,0,2417.85039042997 -15793,19496,35569,35568,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.324013911082426,4.285292932462638,19,15,27.0862438659444,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.446997148234996,4.552001757466477,56.86,48.05,54.22,39.07,10,1,1,0,0,0,7,4,1,477.5,2581259.179931421,1039185.862702732,1370312.980085205,0,2417.85039042997 -15794,19497,35570,35571,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.825164271428413,8.39903470402944,7.022679414962497,10,0,-21.00945348998215,0,3,3,2019,6,0,30,30,1,0,0,9.766685996620676,9.766685996620676,0,0,0,0,0,0,0,0,3.236872113974802,7.004088199945747,57.92,51.82,60.3,46.58,8.333333333333334,1,1,0,0,11,2,4,1,2196.5,133651.3310720806,22732.25384555854,24264.72780925533,17553.88986931641,2575.069584654102 -15794,19497,35571,35570,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.805919526474394,7.111992614016245,10,0,-82.86784847431555,0,2,3,2019,5,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,3.780235192292851,7.264396581422653,60.3,46.58,57.92,51.82,8.333333333333334,1,1,0,0,11,2,4,1,2196.5,133651.3310720806,22732.25384555854,24264.72780925533,17553.88986931641,2575.069584654102 -15795,19498,35572,35574,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.269018229214426,8.385904888800072,0,3,3,173.7683190248734,0,2,2,2019,10,1,42,42,1,1,0,10.69851108522828,10.69851108522828,0,0,0,0,0,1,1,0,7.692853538962585,0,42.05,58.8,54.79,55.86,8.333333333333334,1,1,0,0,4,2,4,1,313.3333333333333,139024.9820726888,102018.2404740068,106348.0762528576,73408.19803991144,4219.082525908892 -15795,19498,35573,-9,35574,35572,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-963.8321886370925,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,313.3333333333333,139024.9820726888,102018.2404740068,106348.0762528576,73408.19803991144,4219.082525908892 -15795,19498,35574,35572,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.346187171002043,8.248998245747755,0,3,-3,-116.9154204149263,0,-9,-9,2019,9,1,39,39,1,1,0,10.78696944476686,10.78696944476686,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.05,58.8,8.333333333333334,1,1,0,0,2,2,4,1,313.3333333333333,139024.9820726888,102018.2404740068,106348.0762528576,73408.19803991144,4219.082525908892 -15796,19499,35575,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.151969130094725,8.19233064267358,0,0,0,-1011.834532829769,0,-9,-9,2019,11,0,41,0,1,1,0,12.20361204837758,12.20361204837758,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,2,8,4,0,162,159107.6802202562,-67595.73104683527,0,0,1562.555303936944 -15797,19500,35576,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.572996869023953,7.788960143744508,0,0,0,-1082.24246323125,0,3,3,2019,14,3,43,40,1,3,0,5.974017384980463,5.974017384980463,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,8.333333333333334,1,1,0,1,9,8,3,0,328,-82221.76964917372,-65215.45233845804,0,0,943.2801941697521 -15798,19501,35577,35578,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,6,-11,0,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.13,32.56,55.18,31.25,8.333333333333334,1,1,1,0,2,12,1,0,549,322227.3509094808,0,283033.0486488305,0,586.7242153637374 -15798,19501,35578,35577,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,6,11,0,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,55.18,31.25,57.13,32.56,6.666666666666667,1,1,1,1,0,12,1,0,549,322227.3509094808,0,283033.0486488305,0,586.7242153637374 -15799,19502,35579,35580,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.602956162888008,9.233833738504474,0,25,-4,18.77802026821004,0,1,1,2019,9,0,50,50,1,0,0,29.79921159023309,29.79921159023309,0,0,0,0,0,0,0,0,4.570734384353878,0,54.37,54.8,54.79,55.86,6.666666666666667,1,1,0,0,7,8,5,1,557.5,1766809.435019374,1674408.933238353,370490.0751740295,95798.3765004813,10093.02869647984 -15799,19502,35580,35579,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.405028419172332,9.315846008193533,8.368943670552117,32,4,-100.473071037934,0,3,3,2019,7,0,42,42,1,0,0,35.70957002998225,35.70957002998225,0,0,0,0,0,0,0,0,5.962103309103072,8.701737547569303,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,7,8,5,1,557.5,1766809.435019374,1674408.933238353,370490.0751740295,95798.3765004813,10093.02869647984 -15799,19503,35581,-9,35579,35580,1,0,19,0,0,0,2,2,-9,0,4,0,5.452696390665299,5.43711242515336,0,0,-1089.455292452528,1,1,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,5.530006082246588,0,44.87,56.46,-9,-9,6.666666666666667,1,1,0,0,3,8,2,1,372,46923.26372035575,0,0,0,466.0727815203316 -15800,19504,35582,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,7.103897635188265,7.004741097725288,0,0,0,-1039.912050392145,0,2,2,2019,28,10,40,42,1,10,0,3.459030814974049,3.459030814974049,0,0,0,0,0,0,0,0,0,0,10.73,56.53,-9,-9,0,4,2,0,1,3,12,3,0,281,-77056.97414510614,0,0,0,1253.946875105986 -15801,19505,35583,35584,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.336730161425024,8.358764800193791,0,28,0,43.51825541923441,0,2,1,2019,12,0,40,39,1,0,0,13.37476326582021,13.37476326582021,0,0,0,0,7,1,1,0,0,0,48.53,58.91,45.01,29.57,5,1,1,0,0,7,10,4,1,492.5,125701.7145562837,168349.9789037421,142843.7299012705,90520.48871498762,2887.392008741866 -15801,19505,35584,35583,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,27,0,-50.98520811707522,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,29.57,48.53,58.91,3.333333333333333,1,1,0,0,0,10,4,1,492.5,125701.7145562837,168349.9789037421,142843.7299012705,90520.48871498762,2887.392008741866 -15801,19506,35585,-9,35583,35584,1,1,24,0,0,0,2,2,-9,0,4,7.633613552670043,7.924475006423996,0,0,0,-963.9944564279913,0,1,2,2019,7,1,51,41,1,1,1,5.348258031474934,5.348258031474934,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,0,0,7,10,3,1,2008,-124027.0573189859,0,0,0,1158.213192192864 -15801,19507,35586,-9,35583,35584,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.486808563632,1,1,2,2019,6,0,0,30,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,2439,82342.7634997429,0,0,0,-163.9536994518342 -15802,19508,35587,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.977855789315393,7.070262169634979,0,0,-1011.148798093521,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9001069944367,7.379839673997494,60.12,54.8,-9,-9,10,1,1,0,0,0,8,2,1,203,531138.2142401309,156251.5981308707,300704.0467921876,0,1276.914646044671 -15803,19509,35588,35589,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.345537153978406,4.512376487893495,57,-5,-59.13202491539474,0,3,3,2019,13,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,1.303689983722,4.272486142869369,48.55,51.02,43.78,38.47,5,1,1,0,0,0,7,3,1,1300.5,801904.8448000331,130424.1995527728,564759.8894179002,0,2118.897168718542 -15803,19509,35589,35588,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.799071570268109,7.985673403898065,57,5,-33.15919131991244,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,6.377344408223285,7.62176908639619,43.78,38.47,48.55,51.02,8.333333333333334,1,1,0,0,0,7,3,1,1300.5,801904.8448000331,130424.1995527728,564759.8894179002,0,2118.897168718542 -15804,19510,35590,35591,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.039547039421015,8.824949739193423,0,8,-4,63.0270347066642,0,1,2,2019,20,8,40,38,1,8,0,22.82689311873721,22.82689311873721,0,0,0,0,7,0,0,0,3.300919536958116,0,42.33,32.25,18.23,61.2,6.666666666666667,1,1,0,1,7,9,5,1,792.5,3121920.600446758,2845767.207456445,281732.8698666157,0,3735.167236126995 -15804,19510,35591,35590,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.638191653230418,7.750458237818961,0,8,4,-37.21232708488982,0,3,3,2019,27,11,65,54,1,11,0,3.325094975917368,3.325094975917368,0,0,0,0,0,0,0,0,0,0,18.23,61.2,42.33,32.25,1.666666666666667,1,1,0,1,10,9,5,1,792.5,3121920.600446758,2845767.207456445,281732.8698666157,0,3735.167236126995 -15805,19511,35592,35593,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,32,-7,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.37,30.32,34.32,19.62,6.666666666666667,1,1,1,0,0,12,1,0,1154,93671.00588320268,0,0,0,1748.974377156184 -15805,19511,35593,35592,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,32,7,0,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.32,19.62,52.37,30.32,6.666666666666667,1,1,0,0,0,12,1,0,1154,93671.00588320268,0,0,0,1748.974377156184 -15806,19512,35594,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,7.820479717882873,7.870339194525981,0,0,0,-1019.209192870383,0,1,1,2019,7,0,30,37,1,0,0,11.90350317014354,11.90350317014354,0,0,0,0,0,1,1,0,0,0,41.39,62.48,-9,-9,10,3,4,0,0,9,7,3,1,2040,66933.97248808012,21894.84129883135,0,0,1626.843534856643 -15806,19513,35595,-9,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,9.034619817649954,8.827846812677441,0,0,0,-945.6114266798887,0,2,2,2019,8,0,37,-9,1,0,0,21.93174583916693,21.93174583916693,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,3,4,0,0,12,7,4,1,376,408534.0669285129,490566.806427065,0,0,3967.961269037553 -15807,19514,35596,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.097758067047344,8.726380006993081,0,0,0,-1121.832199921431,0,2,1,2019,9,0,38,37,1,0,0,10.35232701502385,10.35232701502385,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,633,-1241.593678911042,12394.23665314083,0,0,1825.045190602576 -15807,19515,35597,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.645928390806651,8.576464759823148,0,0,0,-1130.210880802449,0,-9,-9,2019,6,0,35,38,1,0,0,16.09747408943042,16.09747408943042,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,3,8,4,0,707,-125267.5692451085,0,0,0,1673.137589208678 -15808,19516,35598,-9,35601,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.256847395699,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,2,1,930.75,21073.47539948443,-20297.42823630385,0,0,1133.398375416042 -15808,19516,35599,-9,35601,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.601950666362,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,2,1,930.75,21073.47539948443,-20297.42823630385,0,0,1133.398375416042 -15808,19516,35600,-9,35601,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.5979718221952,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,2,1,930.75,21073.47539948443,-20297.42823630385,0,0,1133.398375416042 -15808,19516,35601,-9,-9,-9,1,0,49,0,3,0,2,2,-9,0,4,0,7.015825528651371,6.933369492711001,0,0,-903.5233054090968,-9,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,7.155240852330342,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,930.75,21073.47539948443,-20297.42823630385,0,0,1133.398375416042 -15809,19517,35602,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.640921516571867,8.517255556242903,0,0,0,-1037.923620549551,0,2,-9,2019,6,0,40,35,1,0,0,17.38684619677813,17.38684619677813,0,0,0,0,0,1,1,0,4.226076748938107,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,1182,118745.906346492,0,0,0,2362.100717651123 -15810,19518,35603,35604,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.045457631676453,5.772842421181499,6,2,32.1235088656577,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.751463666897796,59.21,26.99,52,47,8.333333333333334,1,1,0,0,0,13,2,1,1065.5,634739.8509450767,380430.3891429781,137313.955260015,0,1683.918636806979 -15810,19518,35604,35603,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.526044755897688,6.813062098472131,6,-2,-20.76696934985405,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.930288762830184,52,47,59.21,26.99,7,1,1,0,0,4,13,2,1,1065.5,634739.8509450767,380430.3891429781,137313.955260015,0,1683.918636806979 -15811,19519,35605,35606,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.347796585886059,8.132877429870314,0,1,-5,-14.3838125139008,-9,3,3,2019,11,0,40,0,1,0,0,10.12091902167658,10.12091902167658,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,0,621.5,884959.720459538,796180.380904811,140205.2788641775,25488.91166295055,3087.391879865472 -15811,19519,35606,35605,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.210777973154286,8.019706201748118,0,1,5,-4.45864499576232,-9,3,2,2019,10,0,56,0,1,0,0,7.763238029915124,7.763238029915124,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,0,621.5,884959.720459538,796180.380904811,140205.2788641775,25488.91166295055,3087.391879865472 -15811,19520,35607,-9,35605,35606,1,1,24,0,0,0,2,2,-9,0,5,6.599491261204262,6.142771166775844,0,0,0,-1011.519278713621,-9,2,2,2019,10,0,15,0,1,0,1,5.751621912093605,5.751621912093605,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,1,8,6,2,0,324,57393.42788169404,0,0,0,139.3412133343114 -15812,19521,35608,-9,35610,35609,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.720047547464,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,852,-253.6051919291009,25766.25878449693,0,0,2951.569733588454 -15812,19521,35609,35610,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.489792533342831,8.394404904643258,0,8,0,-136.7498984837434,0,-9,-9,2019,10,0,40,40,1,1,0,13.46539725565111,13.46539725565111,0,0,0,0,0,1,1,0,2.201647175515314,0,51,56,57.06,57.76,7,1,1,0,0,1,7,4,0,852,-253.6051919291009,25766.25878449693,0,0,2951.569733588454 -15812,19521,35610,35609,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.126036741836393,7.065862106453073,0,18,0,-14.20912673139618,0,-9,-9,2019,6,0,20,0,1,0,0,6.800420539858377,6.800420539858377,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51,56,10,1,1,0,0,1,7,4,0,852,-253.6051919291009,25766.25878449693,0,0,2951.569733588454 -15813,19522,35611,-9,35613,35612,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.673772877333,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1029,110154.5831491615,112515.6539076782,0,0,2975.435145313971 -15813,19522,35612,35613,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,6.998663178580021,7.937044057171193,7.511526071637461,10,2,8.50901352666186,0,3,2,2019,11,0,10,40,1,0,0,8.939226182325978,8.939226182325978,0,0,0,0,0,1,1,0,0,7.701753114752045,59.22,37.52,48.28,60.18,6.666666666666667,1,1,0,0,8,13,3,1,1029,110154.5831491615,112515.6539076782,0,0,2975.435145313971 -15813,19522,35613,35612,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,7.623942527992945,8.064964714450328,0,10,-2,-85.34458888153232,0,2,2,2019,8,0,35,24,1,0,0,6.733700012571178,6.733700012571178,0,0,0,0,0,1,1,0,0,0,48.28,60.18,59.22,37.52,5,1,1,0,0,7,13,3,1,1029,110154.5831491615,112515.6539076782,0,0,2975.435145313971 -15813,19522,35614,-9,35613,35612,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.3957756618472,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,1029,110154.5831491615,112515.6539076782,0,0,2975.435145313971 -15814,19523,35615,35616,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.940824618022688,6.586128267620355,57,-3,-7.029892421975276,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.092247904026797,41.17,59.31,41.34,56.62,10,1,1,0,0,0,1,3,1,2107.5,782077.6795303873,397917.4471713064,295724.5465964803,0,1964.340042543152 -15814,19523,35616,35615,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.157938038811415,7.153877827112108,57,3,7.853897911547404,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.567972015850045,7.158440137052221,41.34,56.62,41.17,59.31,10,1,1,0,0,0,1,3,1,2107.5,782077.6795303873,397917.4471713064,295724.5465964803,0,1964.340042543152 -15815,19524,35617,35618,-9,-9,1,1,40,0,2,0,1,1,-9,0,1,9.185188658840131,9.024216453502548,0,17,1,89.40938261298409,0,1,3,2019,31,12,35,50,1,12,0,27.38153941925377,27.38153941925377,0,0,0,0,0,1,1,0,0,0,17.92,40.78,43.2,59.97,1.666666666666667,1,1,0,0,9,1,5,1,455.5,624562.6108125744,272443.5868624116,414651.3709765535,0,4514.653572832185 -15815,19524,35618,35617,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.787233208009015,8.007115696877445,0,16,-1,134.0322101225718,0,3,3,2019,12,0,34,35,1,0,0,7.87813365444146,7.87813365444146,0,0,0,0,0,1,1,0,0,0,43.2,59.97,17.92,40.78,5,1,1,0,0,8,1,5,1,455.5,624562.6108125744,272443.5868624116,414651.3709765535,0,4514.653572832185 -15816,19525,35619,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1108.701283552535,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,212,22720.50264735845,0,0,0,390.3280460426975 -15817,19526,35620,35621,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,21.29238402725672,0,0,1,1,0,2.705464353420792,0,63.11,26.8,47.62,50.74,6.666666666666667,1,1,0,0,0,5,1,1,893,17474.74227633726,0,115340.5156452427,0,618.2773076142919 -15817,19526,35621,35620,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,3,2,2019,7,2,0,0,4,2,0,0,0,1,0,0,0,27,1,1,0,0,0,47.62,50.74,63.11,26.8,10,1,1,0,0,0,5,1,1,893,17474.74227633726,0,115340.5156452427,0,618.2773076142919 -15818,19527,35622,35623,-9,-9,1,0,33,0,0,0,2,2,1,0,2,0,4.890314094333886,4.722895038233396,7,-6,9.83426947774729,-9,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,4.468667580246932,0,25.32,29.06,42.64,50.88,0,4,5,0,1,0,10,3,0,1091.5,128504.525583321,-21908.6272775273,161506.2045114358,143494.6104809802,1356.377047707315 -15818,19527,35623,35622,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.100400577207576,7.924600077458835,0,7,6,9.359800811097282,-9,2,1,2019,11,1,43,0,1,1,0,8.995477053063581,8.995477053063581,0,0,0,0,0,0,0,0,0,0,42.64,50.88,25.32,29.06,6.666666666666667,1,1,0,0,11,10,3,0,1091.5,128504.525583321,-21908.6272775273,161506.2045114358,143494.6104809802,1356.377047707315 -15819,19528,35624,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.725121476741997,7.585442075890467,0,0,-964.5221056362864,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.372514390033984,7.686106972371921,41.72,56.81,-9,-9,1.666666666666667,1,1,0,0,0,8,3,1,867,617710.0043565264,549501.1455723762,0,0,2242.55965160608 -15820,19529,35625,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1066.180629756975,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,12,2,0,251,-20256.61248683318,0,0,0,683.7195958720961 -15821,19530,35626,-9,35627,-9,1,0,16,0,2,1,2,0,-9,0,3,0,3.948967095229111,3.695419476193492,0,0,-913.7780320316106,-9,2,-9,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,3.64916899109207,0,32.76,58.15,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1894.666666666667,36231.06259334448,44436.83676417915,0,0,2076.467218116755 -15821,19530,35627,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,1,0,0,0,0,0,-969.1542567741325,0,2,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.51,51.38,-9,-9,1.666666666666667,1,1,1,0,0,11,1,0,1894.666666666667,36231.06259334448,44436.83676417915,0,0,2076.467218116755 -15821,19530,35628,-9,35627,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-844.8550427378115,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,1,0,1894.666666666667,36231.06259334448,44436.83676417915,0,0,2076.467218116755 -15821,19531,35629,-9,35627,-9,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-936.1345157487405,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,193,-53385.16485670361,0,0,0,0 -15822,19532,35630,35633,-9,-9,1,1,47,0,4,0,2,2,-9,0,4,7.701369321755957,7.850176645479351,0,6,2,-59.00021788404641,0,3,3,2019,5,0,41,42,1,0,0,6.764341650100762,6.764341650100762,0,0,0,0,2,1,1,0,0,0,53.6,43.08,58.73,35.39,6.666666666666667,2,3,0,0,4,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15822,19532,35631,-9,35633,35630,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.0267349926862,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15822,19532,35632,-9,35633,35630,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.9941432962519,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15822,19532,35633,35630,-9,-9,1,0,45,0,4,0,3,3,-9,0,3,0,0,0,27,-2,20.55289418949121,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.73,35.39,53.6,43.08,10,2,3,0,0,0,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15822,19532,35634,-9,35633,35630,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1045.646959174188,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15822,19532,35635,-9,35633,35630,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1116.810528662446,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,881.8333333333334,4595.962955841336,32023.92777449734,0,0,2386.461896914096 -15823,19533,35636,-9,-9,-9,1,1,23,1,2,0,1,1,-9,0,4,0,0,0,0,0,-970.0552412249453,1,3,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,.8328656207444692,0,53.13,49.87,-9,-9,5,3,4,0,1,0,8,1,0,496,33178.13160269333,0,0,0,147.073656155854 -15824,19534,35637,-9,35638,35639,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.122860811677,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,957.6666666666666,4175.824961035726,82528.85425844901,279330.0542666735,221576.4748532927,4524.737835785882 -15824,19534,35638,35639,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,0,0,0,9,-8,-3.569692953879575,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,54.64,47.79,10,2,3,0,0,0,11,5,1,957.6666666666666,4175.824961035726,82528.85425844901,279330.0542666735,221576.4748532927,4524.737835785882 -15824,19534,35639,35638,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.033054038817943,9.426919547089584,0,14,8,-36.56099933122904,0,-9,-9,2019,9,0,38,38,1,0,0,25.87144339045809,25.87144339045809,0,0,0,0,0,1,1,0,2.705619107506179,0,54.64,47.79,46.63,59.72,8.333333333333334,2,3,0,0,11,11,5,1,957.6666666666666,4175.824961035726,82528.85425844901,279330.0542666735,221576.4748532927,4524.737835785882 -15825,19535,35640,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.327917877904925,7.255387974715163,0,0,-1068.299233516146,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.635772442797479,6.98867324716902,42.75,23.98,-9,-9,5,1,1,0,0,0,9,3,0,556,425558.4009987804,28973.54145976476,192601.5160530793,0,1540.395423033116 -15826,19536,35641,-9,35644,35643,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-858.909535618732,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15826,19536,35642,-9,35644,35643,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-957.1897433507883,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15826,19536,35643,35644,-9,-9,1,1,49,0,4,0,1,1,-9,0,2,6.892386345765665,6.790393059129353,0,8,8,31.69483951238609,-9,3,1,2019,13,2,20,0,1,2,0,7.197568456078443,7.197568456078443,0,0,0,0,0,1,1,0,0,0,45.66,49.73,56.98,43.29,6.666666666666667,4,5,0,0,9,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15826,19536,35644,35643,-9,-9,1,0,41,0,4,0,2,2,-9,0,2,0,0,0,8,-8,-81.16751665696603,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.98,43.29,45.66,49.73,8.333333333333334,4,5,1,0,0,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15826,19536,35645,-9,35644,35643,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1124.084833386209,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15826,19536,35646,-9,35644,35643,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.200612473258,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,5,-9,0,0,8,2,1,789.6666666666666,336366.9527061329,238991.7757534095,0,0,1816.516069102054 -15827,19537,35647,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-932.000452524353,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,0,38.57,64.48,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,239,0,0,0,0,1283.619895264834 -15828,19538,35648,35649,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.575956609439366,8.483931688822176,0,3,-1,-65.36430525169084,0,-9,-9,2019,7,0,46,39,1,0,0,13.44090465398273,13.44090465398273,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.33,53.46,8.333333333333334,1,1,0,0,8,4,4,1,746,92944.8410542175,-22121.37096656387,201804.676668226,111844.8817262123,2921.001616656482 -15828,19538,35649,35648,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.687077638577644,7.555650719603168,0,3,1,42.47599459102351,0,-9,-9,2019,8,0,31,42,1,0,0,8.844796728611325,8.844796728611325,0,0,0,.192977199831013,0,0,0,0,0,0,57.33,53.46,60.02,56.42,10,1,1,0,0,8,4,4,1,746,92944.8410542175,-22121.37096656387,201804.676668226,111844.8817262123,2921.001616656482 -15829,19539,35650,-9,35651,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.7208267810147,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,626.5,0,0,0,0,1199.724968375429 -15829,19539,35651,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.901317083517587,6.832879313332413,0,0,0,-967.4875089851786,0,-9,-9,2019,13,1,21,16,1,1,0,6.177998883908834,6.177998883908834,0,0,0,0,0,1,1,0,0,0,41.21,51.34,-9,-9,5,4,2,0,0,3,6,2,0,626.5,0,0,0,0,1199.724968375429 -15830,19540,35652,35653,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.333677911792752,6.483329706404236,7,3,-7.548838824754323,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,2.312746667525994,0,1,1,0,5.101757158700119,6.3092968368721,50.57,52.35,51.48,39.17,8.333333333333334,1,1,0,0,0,12,2,1,918.5,380223.2339004294,124760.6504269536,98076.8147039341,0,1272.365614615955 -15830,19540,35653,35652,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.57770472232215,5.296151210773131,7,-3,71.8644185137822,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.314944089344678,0,0,1,1,0,5.919544478682829,5.511654315709396,51.48,39.17,50.57,52.35,6.666666666666667,1,1,0,0,0,12,2,1,918.5,380223.2339004294,124760.6504269536,98076.8147039341,0,1272.365614615955 -15831,19541,35654,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-900.0205696328912,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.9,20.63,-9,-9,5,1,1,0,0,0,13,1,0,476,62833.26116567994,0,69204.19604188166,15827.14721765703,2305.193885764889 -15832,19542,35655,35656,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.321709224216431,7.13127017667543,0,9,4,86.24195144583726,0,-9,-9,2019,17,5,24,24,1,5,0,7.441252445027096,7.441252445027096,0,0,0,0,0,0,0,0,0,0,43.51,27.53,58.75,51.28,8.333333333333334,1,1,0,0,10,10,4,1,354.5,487911.6568966475,342386.6742366442,244056.4074282144,0,2243.637254138283 -15832,19542,35656,35655,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.515214601177178,8.435889773911914,0,9,-4,119.4330203320081,0,3,-9,2019,7,0,45,44,1,0,0,11.64662954873059,11.64662954873059,0,0,0,0,0,0,0,0,0,0,58.75,51.28,43.51,27.53,8.333333333333334,1,1,0,0,10,10,4,1,354.5,487911.6568966475,342386.6742366442,244056.4074282144,0,2243.637254138283 -15833,19543,35657,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.322117684188649,8.332315056633892,0,0,0,-993.2952354669152,0,2,3,2019,11,0,44,44,1,0,0,10.82520827791181,10.82520827791181,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,873,383792.1158410094,39202.13239774943,319564.1230592903,124989.1848633813,1924.269870256325 -15834,19544,35658,35659,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.625369372242529,7.610705598162032,55,0,-56.99075911506652,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.01369335749404,7.664349970129088,43.59,49.11,42.52,28.09,8.333333333333334,1,1,0,0,0,2,3,1,336.5,803401.8861238671,544658.9748459101,413061.9938609416,0,1934.494994554416 -15834,19544,35659,35658,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,54,0,153.0024628415451,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,4.987412550722512,13.38688525421695,70.66651927625803,0,1,1,0,0,0,42.52,28.09,43.59,49.11,6.666666666666667,1,1,0,0,0,2,3,1,336.5,803401.8861238671,544658.9748459101,413061.9938609416,0,1934.494994554416 -15835,19545,35660,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-919.8099749964927,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.74,13.16,-9,-9,10,1,1,0,1,0,11,1,0,467,0,0,0,0,1202.293811853257 -15836,19546,35661,35662,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.433927226302122,7.62900600475372,6,0,-42.84692694179869,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.070065988064024,7.749790987731701,59.07,43.05,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,521.5,821259.2714485934,573588.2542138897,125281.7900267694,0,4027.041508371717 -15836,19546,35662,35661,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.804936893251055,5.904384301798753,6,0,-1.041028029982806,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.307600088341077,6.105823173201503,57.06,57.76,59.07,43.05,10,1,1,0,0,0,11,3,1,521.5,821259.2714485934,573588.2542138897,125281.7900267694,0,4027.041508371717 -15837,19547,35663,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-932.4932909982331,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,11,1,0,162,7360.062035692317,24755.8757446943,26605.43698018754,0,777.5081301152289 -15838,19548,35664,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.509347662721945,8.735018568308687,0,0,0,-1162.902767564815,0,1,1,2019,9,0,36,40,1,0,0,19.823939903725,19.823939903725,0,0,0,0,0,1,1,0,5.218700504291146,0,35.9,60.41,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,1802,-47276.96875199239,-77946.37774841138,0,0,2489.062285703671 -15838,19549,35665,-9,-9,35664,1,1,25,0,0,0,1,1,-9,0,4,8.098997420392001,8.022095428946962,0,0,0,-914.0740745779698,0,-9,2,2019,11,0,52,50,1,0,1,6.211805799543565,6.211805799543565,0,0,0,0,0,1,1,0,6.919658148033239,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,283,-10950.2263415781,131371.8271271515,0,0,1984.331916644213 -15839,19550,35666,35667,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.380283348939148,7.941810601743363,0,10,-6,48.72526523488114,0,2,-9,2019,9,0,23,21,1,0,0,19.81251009321904,19.81251009321904,0,0,0,0,0,0,0,0,1.247984222567968,0,60.67,53.2,60.12,54.8,6.666666666666667,1,1,0,0,11,12,5,1,156,907783.8312148987,61714.02678311527,584884.6521086176,71710.08509581829,3890.603255565297 -15839,19550,35667,35666,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.91613291406064,8.868550862182738,0,10,6,-35.64874569212184,0,3,3,2019,7,0,48,104,1,0,0,20.42735575376971,20.42735575376971,0,0,0,0,0,0,0,0,0,0,60.12,54.8,60.67,53.2,8.333333333333334,1,1,0,0,11,12,5,1,156,907783.8312148987,61714.02678311527,584884.6521086176,71710.08509581829,3890.603255565297 -15839,19551,35668,-9,35666,35667,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1053.087529635799,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,133,-8544.391873306005,0,0,0,0 -15840,19552,35669,-9,35673,35671,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-915.9137630125385,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,727.8,565303.9390914207,68985.62169606959,795539.5543032816,423410.5982930516,8177.228727676906 -15840,19552,35670,-9,35673,35671,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.1783997799198,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,727.8,565303.9390914207,68985.62169606959,795539.5543032816,423410.5982930516,8177.228727676906 -15840,19552,35671,35673,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.306572310615609,9.540170356161237,0,23,5,-11.33316373387554,0,2,2,2019,12,0,40,40,1,0,0,34.13052776297378,34.13052776297378,0,0,0,0,0,0,0,0,6.263050631809103,0,39.9,57.26,41,56.99,6.666666666666667,1,1,0,0,8,8,5,1,727.8,565303.9390914207,68985.62169606959,795539.5543032816,423410.5982930516,8177.228727676906 -15840,19552,35672,-9,35673,35671,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.483114468763,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,727.8,565303.9390914207,68985.62169606959,795539.5543032816,423410.5982930516,8177.228727676906 -15840,19552,35673,35671,-9,-9,1,0,40,0,3,0,1,1,-9,0,3,9.108828746811962,9.072294269022144,0,23,-5,-63.61802812672926,0,3,2,2019,15,4,36,32,1,4,0,26.3859487422459,26.3859487422459,0,0,0,0,0,0,0,0,3.88715145393092,0,41,56.99,39.9,57.26,5,1,1,0,0,8,8,5,1,727.8,565303.9390914207,68985.62169606959,795539.5543032816,423410.5982930516,8177.228727676906 -15841,19553,35674,35675,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.990966133241054,6.100474604136657,10,3,4.666747513286377,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.783692928385138,6.040584813560207,55.55,30.99,53.39,46.97,5,1,1,0,0,11,7,2,1,362.5,1229514.139967298,30934.88487430743,1000364.256265456,0,1448.338245473382 -15841,19553,35675,35674,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.673293727560729,5.197131293262343,10,-3,91.33608834281171,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.620117555133487,5.280554427680617,53.39,46.97,55.55,30.99,5,1,1,0,0,4,7,2,1,362.5,1229514.139967298,30934.88487430743,1000364.256265456,0,1448.338245473382 -15842,19554,35676,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.661806570300975,8.972140140002482,0,0,0,-1002.57846458594,0,-9,-9,2019,21,9,60,60,1,9,0,10.83282317287015,10.83282317287015,0,0,0,0,0,1,1,0,0,0,37.62,55.66,-9,-9,6.666666666666667,1,1,0,0,10,4,5,0,460,-99142.96340563029,-25524.4349074303,0,0,1618.407692976101 -15843,19555,35677,35678,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,2,-3,-139.0084389041155,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,21.37,22.93,62.66,52.4,5,1,1,0,0,7,12,2,0,518,456884.4319833923,285973.9126137774,0,0,2267.000173020526 -15843,19555,35678,35677,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.252275785100034,7.601436764885689,0,2,3,-3.298914236268455,-9,-9,-9,2019,11,0,30,0,1,2,0,6.712899273672996,6.712899273672996,0,0,0,0,96,1,1,0,0,0,62.66,52.4,21.37,22.93,10,1,1,0,0,2,12,2,0,518,456884.4319833923,285973.9126137774,0,0,2267.000173020526 -15844,19556,35679,35680,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.136616085042492,7.621284028755878,0,12,-3,5.868880143810522,0,3,2,2019,11,0,48,58,1,0,0,6.464889698569745,6.464889698569745,0,0,0,0,0,0,0,0,0,0,38.92,49.8,64.23,44.69,8.333333333333334,3,4,0,0,9,5,4,1,318.5,235927.2934225842,28356.62703662708,147249.4484030411,0,2845.900228702608 -15844,19556,35680,35679,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.131293922725012,8.16607960285903,0,12,3,-13.67758427787493,0,-9,-9,2019,11,0,48,46,1,0,0,10.44368125762318,10.44368125762318,0,0,0,0,0,0,0,0,0,0,64.23,44.69,38.92,49.8,0,3,4,0,0,9,5,4,1,318.5,235927.2934225842,28356.62703662708,147249.4484030411,0,2845.900228702608 -15844,19557,35681,-9,35679,35680,1,0,21,0,0,0,2,2,-9,0,3,7.75183881603463,7.843290881181597,0,0,0,-1157.772443051651,0,2,2,2019,12,1,46,66,1,1,1,5.435787632813737,5.435787632813737,0,0,0,0,0,0,0,0,0,0,39.75,54.92,-9,-9,3.333333333333333,3,4,0,0,4,5,3,1,499,115807.8451348846,0,0,0,652.9658726334319 -15845,19558,35682,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.369931079620804,8.486549104629098,0,0,0,-930.7605990908228,0,1,1,2019,6,0,40,48,1,0,0,12.92176185316482,12.92176185316482,0,0,0,0,0,0,0,0,4.263339968587664,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,5,4,1,767,537241.9026669506,0,321304.3108391379,9265.889969859219,1408.09718805532 -15846,19559,35683,35684,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,9,-1,-32.29944854210865,0,2,1,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.626066630554363,0,44.88,46.67,56.33,51.02,8.333333333333334,1,1,0,0,3,9,3,1,964.5,1800298.563679895,732161.2126292533,613187.3448787981,0,4079.144918013357 -15846,19559,35684,35683,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.176187605045881,8.080985193022654,9,1,-55.79639641068997,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.154186705316171,8.056353478973481,56.33,51.02,44.88,46.67,8.333333333333334,1,1,0,0,1,9,3,1,964.5,1800298.563679895,732161.2126292533,613187.3448787981,0,4079.144918013357 -15847,19560,35685,35686,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.03134318943558,7.749141055428169,0,6,-3,64.7283675727991,0,2,2,2019,9,1,37,26,1,1,0,8.192294809967322,8.192294809967322,0,0,0,0,2,0,0,0,1.506356701662101,0,58.32,50.22,46.08,57.2,8.333333333333334,1,1,0,0,7,6,5,1,797.5,202787.9465452397,0,117693.6892846876,10493.86897453754,2589.380939313183 -15847,19560,35686,35685,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.327122619979129,8.844137468337289,0,6,3,34.379473129823,0,3,2,2019,12,0,58,53,1,0,0,9.527357396158209,9.527357396158209,0,0,0,0,7,0,0,0,0,0,46.08,57.2,58.32,50.22,6.666666666666667,1,1,0,0,9,6,5,1,797.5,202787.9465452397,0,117693.6892846876,10493.86897453754,2589.380939313183 -15848,19561,35687,35688,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,41,0,-37.99315694388302,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,1.881402981027602,0,54.12,28.24,48,49,1.666666666666667,1,1,0,0,10,12,3,1,570.5,343251.1428647785,213115.9481568008,0,0,1902.162091257876 -15848,19561,35688,35687,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.627144261983099,7.519224147986211,0,11,0,-41.98718572699637,0,-9,-9,2019,12,0,15,15,1,2,0,20.32355326648129,20.32355326648129,0,0,0,0,0,1,1,0,0,0,48,49,54.12,28.24,7,1,1,0,0,1,12,3,1,570.5,343251.1428647785,213115.9481568008,0,0,1902.162091257876 -15848,19562,35689,-9,35688,35687,1,1,36,0,0,0,1,1,-9,0,4,8.421732233376519,8.39132353599252,0,0,0,-1117.097541567047,0,-9,2,2019,10,0,40,40,1,1,1,15.73085832635195,15.73085832635195,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,1,12,5,1,3025,310490.4203740892,38063.0639061451,0,0,2621.972697249104 -15849,19563,35690,35691,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.41167065272473,7.969668514184604,0,29,0,-61.02233156755631,0,2,2,2019,0,0,38,0,1,0,0,14.19313849675848,14.19313849675848,0,0,0,0,0,0,0,0,6.357689312203381,0,56.68,21.84,62.49,55.09,8.333333333333334,1,1,0,0,9,2,4,1,560,2116019.256794102,1503546.601015416,157619.381516789,0,2732.123226027655 -15849,19563,35691,35690,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.112817969624428,8.02373004839985,0,29,0,-3.424926844495329,0,3,3,2019,3,0,43,44,1,0,0,7.203669496804677,7.203669496804677,0,0,0,0,0,0,0,0,0,0,62.49,55.09,56.68,21.84,8.333333333333334,1,1,0,0,5,2,4,1,560,2116019.256794102,1503546.601015416,157619.381516789,0,2732.123226027655 -15850,19564,35692,35693,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.612812305104011,8.563422544957094,0,9,6,-59.63105393302115,0,3,3,2019,11,0,35,40,1,0,0,18.40590363893375,18.40590363893375,0,0,0,0,0,1,1,0,1.685383892353139,0,41.47,58.08,55.96,49.93,8.333333333333334,1,1,0,0,11,1,5,1,772,230638.2991433755,21132.93347727279,86757.50952445599,4669.294022082485,4663.211671760671 -15850,19564,35693,35692,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.799344866332861,8.477195045163118,0,9,-6,6.61472996856638,0,3,2,2019,8,0,45,45,1,0,0,16.96319731069324,16.96319731069324,0,0,0,0,0,1,1,0,0,0,55.96,49.93,41.47,58.08,8.333333333333334,1,1,0,0,11,1,5,1,772,230638.2991433755,21132.93347727279,86757.50952445599,4669.294022082485,4663.211671760671 -15850,19565,35694,-9,35692,35693,1,1,22,0,0,0,2,2,-9,0,4,8.060963976929603,7.62910135998236,0,0,0,-1138.214866044902,0,2,2,2019,10,0,37,40,1,0,1,8.154791367188695,8.154791367188695,0,0,0,0,0,1,1,0,0,0,44.7,56.48,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,574,-154189.1596959862,83503.77845259153,0,0,1326.545046173565 -15850,19566,35695,-9,35692,35693,1,0,18,0,0,0,2,2,1,0,3,7.113736618958121,6.908526603957561,0,0,0,-1016.96351170767,-9,2,2,2019,10,0,20,0,1,0,1,6.342663066565812,6.342663066565812,0,0,0,0,0,1,1,0,6.338099678056691,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,1,1,2,1,524,130458.2599159896,0,0,0,1456.008019608462 -15851,19567,35696,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1015.382871704927,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,10.52574165684049,0,0,1,1,0,0,0,52.05,16.88,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,175,622.365978065849,0,157255.7054681843,0,915.6042077319019 -15852,19568,35697,35699,-9,-9,1,1,45,1,1,0,2,2,-9,0,4,8.402308367267603,8.472123662131548,0,1,14,-171.2306045137146,-9,-9,-9,2019,9,0,55,0,1,0,0,10.27227425287075,10.27227425287075,0,0,0,0,0,1,1,0,1.276334587666271,0,49.86,55.31,60.02,56.42,8.333333333333334,1,1,0,0,7,4,4,1,540,216597.2089337611,-53989.96379982141,197337.461645211,103914.9995531725,3130.564578758454 -15852,19568,35698,-9,35699,35697,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.327097025639,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,540,216597.2089337611,-53989.96379982141,197337.461645211,103914.9995531725,3130.564578758454 -15852,19568,35699,35697,-9,-9,1,0,31,1,1,0,2,2,-9,0,5,7.737618608097047,7.556614861873763,0,1,-14,-57.32365268988821,-9,2,2,2019,6,0,35,0,1,0,0,8.542421939553307,8.542421939553307,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49.86,55.31,10,1,1,0,0,7,4,4,1,540,216597.2089337611,-53989.96379982141,197337.461645211,103914.9995531725,3130.564578758454 -15853,19569,35700,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-903.8476317603267,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,29.0562058553607,16.60894676204764,277.7820867844316,0,1,1,0,0,0,43.57,24.7,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,832,-163307.2538952726,0,0,0,1236.392144135449 -15854,19570,35701,-9,35702,35704,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.959049299217,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,516,1262300.244713814,387549.8082735228,659564.347753494,362613.0355450375,8581.764098898573 -15854,19570,35702,35704,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,9.563263959647214,9.345292051243316,0,8,-2,-91.18624868830608,0,3,2,2019,7,0,21,21,1,0,0,61.38552591183616,61.38552591183616,0,0,0,0,0,1,1,0,7.447042467921103,0,56.35,51.16,61.71,43.2,8.333333333333334,1,1,0,0,8,2,5,1,516,1262300.244713814,387549.8082735228,659564.347753494,362613.0355450375,8581.764098898573 -15854,19570,35703,-9,35702,35704,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.1121623128306,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,516,1262300.244713814,387549.8082735228,659564.347753494,362613.0355450375,8581.764098898573 -15854,19570,35704,35702,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.024633612196322,8.780716113711893,0,8,2,23.53912395588445,-9,2,2,2019,10,0,44,0,1,0,0,18.55824874174829,18.55824874174829,0,0,0,0,0,1,1,0,8.155339180307344,0,61.71,43.2,56.35,51.16,10,1,1,0,0,8,2,5,1,516,1262300.244713814,387549.8082735228,659564.347753494,362613.0355450375,8581.764098898573 -15855,19571,35705,35707,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.670497112961591,8.671541904038678,0,12,-3,-38.13383024510712,0,2,3,2019,11,0,34,34,1,0,0,22.3642506841462,22.3642506841462,0,0,0,0,0,1,1,0,4.159223176751255,0,50.03,52.62,49.35,59.64,3.333333333333333,1,1,0,0,9,6,5,1,551.75,429136.3034139814,443924.8966018993,179505.1685162415,107063.1054911209,4250.887086834816 -15855,19571,35706,-9,35705,35707,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.0359388781901,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,551.75,429136.3034139814,443924.8966018993,179505.1685162415,107063.1054911209,4250.887086834816 -15855,19571,35707,35705,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.696089423364723,8.595914593140108,0,12,3,96.32304102863894,0,2,3,2019,10,1,42,43,1,1,0,15.98132360004154,15.98132360004154,0,0,0,0,0,1,1,0,3.629059885115664,0,49.35,59.64,50.03,52.62,6.666666666666667,1,1,0,0,9,6,5,1,551.75,429136.3034139814,443924.8966018993,179505.1685162415,107063.1054911209,4250.887086834816 -15855,19571,35708,-9,35705,35707,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.627343724126,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,551.75,429136.3034139814,443924.8966018993,179505.1685162415,107063.1054911209,4250.887086834816 -15856,19572,35709,35710,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.354361090256775,7.587552843331677,0,8,-1,-10.32735976490667,0,-9,-9,2019,6,0,40,40,1,0,0,4.780689241646933,4.780689241646933,0,0,0,0,0,1,1,0,0,0,60.69,37.28,57.78,35.36,8.333333333333334,1,1,0,0,9,10,2,1,496,1177322.50272964,672785.5380203086,342609.5965092942,0,1958.401051692542 -15856,19572,35710,35709,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,37,1,-124.3065532836957,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,57.78,35.36,60.69,37.28,8.333333333333334,1,1,0,0,4,10,2,1,496,1177322.50272964,672785.5380203086,342609.5965092942,0,1958.401051692542 -15857,19573,35711,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,0,0,0,0,-980.5571807752383,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,2.910919014189793,0,0,1,1,0,0,0,55.22,30.22,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,200,-58487.57948121385,0,0,0,1083.278443940187 -15858,19574,35712,-9,35713,35715,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.541243243521,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,350.75,-1351.605517897762,88869.01239896871,0,0,1966.435644932687 -15858,19574,35713,35715,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.123958988170363,7.374014318259231,0,2,1,-41.77710771773891,0,-9,-9,2019,16,5,15,12,1,5,0,9.786986455894995,9.786986455894995,0,0,0,1.886822103893243,0,1,1,0,0,0,48.3,37.13,57.85,31.17,5,1,1,0,0,4,5,2,0,350.75,-1351.605517897762,88869.01239896871,0,0,1966.435644932687 -15858,19574,35714,-9,35713,35715,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.422464109171,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,350.75,-1351.605517897762,88869.01239896871,0,0,1966.435644932687 -15858,19574,35715,35713,-9,-9,1,1,24,1,2,0,2,2,-9,0,3,0,0,0,2,-1,-26.69594480904618,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,57.85,31.17,48.3,37.13,10,1,1,0,0,0,5,2,0,350.75,-1351.605517897762,88869.01239896871,0,0,1966.435644932687 -15859,19575,35716,35717,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.581241420762201,8.284942034769054,7.609753416844777,10,0,72.94387272359717,0,2,3,2019,6,0,48,29,1,0,0,4.637196963299166,4.637196963299166,0,0,0,0,0,0,0,0,3.25723319032776,7.915099889706094,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,10,13,4,1,664.5,1198348.653233211,583418.3790668789,402041.0587093176,0,1725.215941187473 -15859,19575,35717,35716,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,10,0,33.77108134302416,0,2,2,2019,7,0,0,6,3,0,0,0,0,0,0,0,0,0,0,0,0,1.544939417171715,0,62.39,56.71,57.33,53.46,8.333333333333334,1,1,0,0,10,13,4,1,664.5,1198348.653233211,583418.3790668789,402041.0587093176,0,1725.215941187473 -15859,19576,35718,-9,35717,35716,1,0,26,0,0,0,1,1,-9,0,4,8.442299741834278,8.197268765058016,0,0,0,-922.6048083605681,0,1,2,2019,13,4,38,39,1,4,1,12.91804723625778,12.91804723625778,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,10,13,4,1,490,39780.27122527269,-61013.33608346838,0,0,1713.480989373852 -15859,19577,35719,-9,35717,35716,1,1,23,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1039.250732933883,0,1,2,2019,11,3,0,40,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,54.43,39.68,-9,-9,6.666666666666667,1,1,1,0,4,13,1,1,897,128183.1472870338,0,0,0,0 -15859,19578,35720,-9,35717,35716,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1007.699698301279,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,13,1,1,251,216818.9212047356,0,0,0,387.7179286282213 -15860,19579,35721,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.730491156955008,5.805955219891303,0,0,-988.0750486698511,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,2.649996854666542,8.521139387175399,26.00883867372339,0,1,1,0,0,5.776869829774672,44.35,23.51,-9,-9,5,1,1,0,0,0,5,2,1,1943,-19925.64483371229,72800.99781173011,70797.60058436541,0,1211.627848365544 -15861,19580,35722,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,6.395828916026029,6.503496837120718,0,0,-1017.50125059,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.349485744861395,54.2,57.49,-9,-9,5,3,4,0,0,0,7,2,1,944,760930.9902368509,297325.1935024073,311612.3727241148,0,-357.4648839798314 -15862,19581,35723,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.665901192109274,8.748765449752472,0,0,0,-1049.818002731835,0,2,2,2019,9,0,40,70,1,0,0,22.8651590683649,22.8651590683649,0,0,0,0,0,1,1,0,2.317627321828913,0,50.99,55.25,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,377,220025.1380414206,14425.08884675787,141069.2671636195,2241.167451628666,3132.165693443635 -15863,19582,35724,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,7.374864107434303,7.326447410865863,0,0,0,-940.6396880241384,0,2,3,2019,10,1,43,38,1,1,0,4.129492055837244,4.129492055837244,0,0,0,0,0,0,0,0,1.491860195823866,0,48.03,37.39,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,562,258555.635344433,206536.189843237,209674.3609376861,0,1363.217276091009 -15864,19583,35725,35726,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-39.24513299126804,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.51719417627427,0,54.2,57.49,54.38,46.77,8.333333333333334,1,1,0,0,7,12,2,1,500.5,362248.0280775118,92976.84479594506,162389.2416447251,0,1197.388538255708 -15864,19583,35726,35725,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,.9245525881558788,.6979228291801052,0,8,4,-54.48907729043017,0,3,3,2019,9,0,30,20,1,0,0,.0066742293220163,.0066742293220163,1,0,11.6209346535991,0,0,1,1,0,1.0559753040497,0,54.38,46.77,54.2,57.49,8.333333333333334,1,1,0,0,9,12,2,1,500.5,362248.0280775118,92976.84479594506,162389.2416447251,0,1197.388538255708 -15865,19584,35727,35729,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.559184725950674,8.300722918299856,0,7,2,-34.62093245777149,0,3,3,2019,9,0,38,38,1,1,0,14.68695666388686,14.68695666388686,0,0,0,0,0,1,1,0,0,0,53,55,53.5,51.02,8,1,1,0,0,1,8,4,1,938,1284673.89994304,801744.515942776,462777.3339188777,0,4572.453658892347 -15865,19584,35728,-9,35729,35727,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.264274509726,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,938,1284673.89994304,801744.515942776,462777.3339188777,0,4572.453658892347 -15865,19584,35729,35727,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.276915489245269,8.192314409373807,0,28,-2,-46.75302342999311,0,2,2,2019,15,4,35,36,1,4,0,13.49306062971608,13.49306062971608,0,0,0,0,2,1,1,0,2.611562555123285,0,53.5,51.02,53,55,8.333333333333334,1,1,0,0,9,8,4,1,938,1284673.89994304,801744.515942776,462777.3339188777,0,4572.453658892347 -15865,19585,35730,-9,35729,35727,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-984.3134385988405,-9,2,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,388,26331.15309772484,0,0,0,185.7284287320226 -15866,19586,35731,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.231531310854203,8.227628249645287,0,0,0,-877.4266069705336,0,3,3,2019,6,0,38,37,1,0,0,9.91849257474828,9.91849257474828,0,0,0,0,0,0,0,0,0,0,62.1,51.16,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,625,498236.2477150845,451683.1871588052,215402.2504253238,113999.169165193,940.2951986922919 -15866,19587,35732,-9,35731,-9,1,1,23,0,0,0,2,2,-9,0,3,8.065518859424273,8.400405402543104,0,0,0,-1045.096327045401,0,3,-9,2019,10,0,51,50,1,0,1,7.386655243824254,7.386655243824254,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,10,4,0,307,-100903.2941099701,0,0,0,1218.321925781738 -15867,19588,35733,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.618796072852,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.831310506556281,0,49,47,-9,-9,7,2,3,0,0,0,8,1,0,748,-106882.0312334692,0,0,0,1318.344101107722 -15867,19589,35734,-9,35733,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1024.129970263527,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,2217,-99060.5864037213,0,0,0,0 -15868,19590,35735,-9,35738,35736,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.6186902077905,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,841,1844383.770606142,696375.2582418621,694524.6955463112,216887.3465893786,6396.895240007321 -15868,19590,35736,35738,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.37757207183345,9.458828397756623,0,2,3,49.4955637264237,0,3,3,2019,10,0,43,44,1,1,0,27.6860130007229,27.6860130007229,0,0,0,0,0,0,0,0,5.495625613288008,0,50.11,47.32,57.33,53.46,8.333333333333334,1,1,0,0,9,11,5,1,841,1844383.770606142,696375.2582418621,694524.6955463112,216887.3465893786,6396.895240007321 -15868,19590,35737,-9,35738,35736,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.4675989506138,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,841,1844383.770606142,696375.2582418621,694524.6955463112,216887.3465893786,6396.895240007321 -15868,19590,35738,35736,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,9.145439680658818,8.814249340180194,0,2,-3,-40.29335727932611,0,2,2,2019,7,0,38,38,1,0,0,22.441480631719,22.441480631719,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.11,47.32,8.333333333333334,1,1,0,0,9,11,5,1,841,1844383.770606142,696375.2582418621,694524.6955463112,216887.3465893786,6396.895240007321 -15869,19591,35739,35740,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.43578377348665,8.564247955725847,6.349316433925519,37,1,-37.42611487977113,0,3,2,2019,9,1,30,40,1,1,0,12.77578560093904,12.77578560093904,0,0,0,0,0,1,1,0,6.58789330866233,6.326880280018745,55.73,48.45,49.8,54.33,10,1,1,0,0,9,8,3,1,1054,192561.1079365999,43505.99151345744,0,0,2209.743122304553 -15869,19591,35740,35739,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.691410284434201,4.814970662682282,37,-1,-80.43619177942328,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.467587652248667,49.8,54.33,55.73,48.45,10,1,1,0,0,0,8,3,1,1054,192561.1079365999,43505.99151345744,0,0,2209.743122304553 -15870,19592,35741,35742,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.755159948228886,7.570276598214172,0,23,1,-59.4898925829994,-9,-9,-9,2019,8,0,38,0,1,0,0,8.312153523994438,8.312153523994438,0,0,0,0,0,0,0,0,.539726273609102,0,53.07,52.7,52.58,29.13,8.333333333333334,1,1,0,0,9,10,5,1,1252,1258106.793477238,1175607.592551645,192308.3734223326,164331.9298196277,4189.502218668807 -15870,19592,35742,35741,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.900763777797957,8.977655005765879,0,23,-1,-25.92111512557334,0,-9,-9,2019,10,2,40,40,1,2,0,21.52865977139594,21.52865977139594,0,0,0,0,0,0,0,0,3.060370944088045,0,52.58,29.13,53.07,52.7,8.333333333333334,1,1,0,0,8,10,5,1,1252,1258106.793477238,1175607.592551645,192308.3734223326,164331.9298196277,4189.502218668807 -15871,19593,35743,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1007.114269834928,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.49,21.39,-9,-9,6.666666666666667,1,1,0,1,1,5,1,0,520,-67479.94649383979,0,0,0,568.4288369777749 -15871,19594,35744,-9,35743,-9,1,1,37,0,0,0,2,2,-9,0,4,9.159789475418592,9.385585335505965,6.122951774403413,0,0,-1037.689390573337,0,3,3,2019,7,0,47,45,1,0,1,23.93250451555273,23.93250451555273,0,0,0,0,0,1,1,0,6.392163879067,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,9,5,5,0,888,519910.2499984684,0,234309.461482196,95972.1339558669,3913.264625036818 -15872,19595,35745,35746,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,54,-6,-55.59946569712592,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.560115210774584,0,59.33,28.22,62.28,24.29,6.666666666666667,1,1,0,0,0,12,2,1,1175,90053.15680444016,104696.9225139662,153951.5111474125,0,1767.7168392377 -15872,19595,35746,35745,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,5.516828009433181,5.422572881359224,54,6,-92.05828619761419,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.64154769296816,5.275417424781097,62.28,24.29,59.33,28.22,6.666666666666667,1,1,0,0,0,12,2,1,1175,90053.15680444016,104696.9225139662,153951.5111474125,0,1767.7168392377 -15873,19596,35747,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.746243189791063,8.120146621754936,0,0,0,-1083.58041217387,0,3,2,2019,11,0,40,40,1,0,0,9.477921384081412,9.477921384081412,0,0,0,0,0,1,1,0,4.636493485337926,0,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,297,986000.7325124082,1083535.197890307,108508.7812025121,56635.54896455589,1745.857065036698 -15874,19597,35748,35749,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.843075502466093,8.824963181301358,0,12,-2,-75.79412776877879,0,-9,-9,2019,9,0,40,38,1,1,0,17.83848197461878,17.83848197461878,0,0,0,0,0,1,0,1,0,0,52,55,41.17,52.68,7,1,1,0,0,1,7,5,1,687.6666666666666,68416.56974158074,121790.24738021,352202.7165463794,294841.8838520338,4910.286230937045 -15874,19597,35749,35748,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.634384895265418,8.978847722307721,0,12,2,-35.07160334177155,0,2,1,2019,17,5,42,48,1,5,0,15.78762198220978,15.78762198220978,0,0,0,0,2,1,0,1,0,0,41.17,52.68,52,55,3.333333333333333,1,1,0,0,8,7,5,1,687.6666666666666,68416.56974158074,121790.24738021,352202.7165463794,294841.8838520338,4910.286230937045 -15874,19597,35750,-9,35749,35748,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1142.443563070299,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,687.6666666666666,68416.56974158074,121790.24738021,352202.7165463794,294841.8838520338,4910.286230937045 -15875,19598,35751,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,9.415984301314992,9.776743362831395,0,0,-1069.620113047648,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.48274566165041,9.896834702700783,49.28,50.19,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,747,1967756.637527855,1319552.479765726,375388.860844269,0,8895.7985553528 -15876,19599,35752,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,6.913292370906625,7.404323503113777,6.20694356426133,0,0,-797.4682856836748,0,3,2,2019,11,0,17,0,1,0,0,7.53967109265272,7.53967109265272,0,0,0,0,0,1,0,1,6.142079991094335,0,47.69,50.26,-9,-9,5,1,1,0,0,4,12,2,0,545,3793.018822222339,-22897.87577673877,0,0,1910.484412824236 -15876,19599,35753,-9,35752,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.8812098232657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,545,3793.018822222339,-22897.87577673877,0,0,1910.484412824236 -15876,19599,35754,-9,35752,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-960.2431733853791,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,2,0,545,3793.018822222339,-22897.87577673877,0,0,1910.484412824236 -15877,19600,35755,35756,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.584582211990485,8.677664825713954,0,13,0,25.89179528606518,0,2,2,2019,16,4,37,38,1,4,0,16.93474025971271,16.93474025971271,0,0,0,0,7,0,0,0,2.380896665167946,0,42.55,52.01,46.55,58.3,6.666666666666667,1,1,0,0,11,6,5,1,536,206819.757500454,57960.16286195036,170078.6177707816,151075.7060414393,3845.187882591553 -15877,19600,35756,35755,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.80365677334223,8.456364269896133,0,13,0,197.923547866985,0,2,2,2019,9,0,37,38,1,0,0,16.96929262266271,16.96929262266271,0,0,0,0,7,0,0,0,0,0,46.55,58.3,42.55,52.01,8.333333333333334,1,1,0,0,8,6,5,1,536,206819.757500454,57960.16286195036,170078.6177707816,151075.7060414393,3845.187882591553 -15878,19601,35757,35758,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,31,0,-105.0327563060471,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.6126654824666717,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,588,3155235.220843908,1842642.053005709,744280.4903496257,0,2226.920209704099 -15878,19601,35758,35757,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.886834498376555,8.808677132419467,0,31,0,60.03316831787445,0,-9,-9,2019,8,0,45,43,1,0,0,16.42436209727221,16.42436209727221,0,0,0,0,0,0,0,0,1.319779224207137,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,10,10,4,1,588,3155235.220843908,1842642.053005709,744280.4903496257,0,2226.920209704099 -15879,19602,35759,35760,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,7.467191672740721,7.116490066514451,55,10,120.3606683264158,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.279096468474356,48.1,47.33,47.07,53.97,8.333333333333334,1,1,0,0,0,9,3,0,180,561488.0584233961,207970.5432813904,254655.6932435951,0,2669.385178772524 -15879,19602,35760,35759,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.692615181661435,6.638397167825624,55,-10,40.54651902579671,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.620236229417347,47.07,53.97,48.1,47.33,8.333333333333334,1,1,0,0,0,9,3,0,180,561488.0584233961,207970.5432813904,254655.6932435951,0,2669.385178772524 -15880,19603,35761,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,0,0,-902.394054673687,0,3,2,2019,11,0,0,0,4,2,0,0,0,1,0,108.7481112938167,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,993,64632.07197707939,0,0,0,966.3888370212627 -15880,19604,35762,-9,35763,35764,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.366280442733,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1396.5,-17691.7484396569,-21000.35124088733,0,0,2713.594785317096 -15880,19604,35763,35764,-9,-9,1,0,27,0,2,0,3,3,-9,0,3,0,0,0,6,-8,-52.99431943791852,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.14,54.03,37.28,55.9,6.666666666666667,2,3,1,1,0,6,3,1,1396.5,-17691.7484396569,-21000.35124088733,0,0,2713.594785317096 -15880,19604,35764,35763,35761,-9,1,1,35,0,2,0,1,1,-9,0,3,8.112388276324587,8.325904798945068,0,6,8,78.83797357919111,0,3,3,2019,17,5,37,37,1,5,0,12.44502718609912,12.44502718609912,0,0,0,0,71.5,1,1,0,0,0,37.28,55.9,41.14,54.03,5,2,3,0,0,12,6,3,1,1396.5,-17691.7484396569,-21000.35124088733,0,0,2713.594785317096 -15880,19604,35765,-9,35763,35764,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.3962172826425,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1396.5,-17691.7484396569,-21000.35124088733,0,0,2713.594785317096 -15881,19605,35766,35768,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,9.117850550060536,8.892882074959553,0,3,-2,60.4487641064682,0,2,-9,2019,17,5,42,37,1,5,0,19.09987086968614,19.09987086968614,0,0,0,0,2,1,1,0,1.209959202394535,0,35.63,62.19,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,727.5,186906.6829994583,56914.01893935671,168954.0354616544,125002.441962275,4214.443572113914 -15881,19605,35767,-9,35766,35768,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.74111924795,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,727.5,186906.6829994583,56914.01893935671,168954.0354616544,125002.441962275,4214.443572113914 -15881,19605,35768,35766,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.439629149876026,8.545906510846679,0,3,2,15.00185503612578,0,3,2,2019,8,0,54,50,1,0,0,8.457308367191962,8.457308367191962,0,0,0,0,0,1,1,0,0,0,57.16,56.15,35.63,62.19,8.333333333333334,1,1,0,0,8,11,5,1,727.5,186906.6829994583,56914.01893935671,168954.0354616544,125002.441962275,4214.443572113914 -15881,19605,35769,-9,35766,35768,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.995268227084,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,727.5,186906.6829994583,56914.01893935671,168954.0354616544,125002.441962275,4214.443572113914 -15882,19606,35770,35772,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.794699466584376,8.876331189666713,0,16,2,-92.79788803182596,-9,2,2,2019,12,0,43,0,1,0,0,17.77763963512598,17.77763963512598,0,0,0,0,0,1,0,1,0,0,38.16,44.66,40.87,44.58,6.666666666666667,2,3,0,0,7,8,4,0,722.6666666666666,683868.11318491,153545.0508802724,510130.4045723721,0,4750.794082146164 -15882,19606,35771,-9,35772,35770,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.243132766739,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,0,722.6666666666666,683868.11318491,153545.0508802724,510130.4045723721,0,4750.794082146164 -15882,19606,35772,35770,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,7.212651408433965,7.026967146520774,0,16,-2,-24.46718907147907,0,2,1,2019,13,2,3,3,1,2,0,40.43519654191734,40.43519654191734,0,0,0,0,0,1,0,1,0,0,40.87,44.58,38.16,44.66,6.666666666666667,2,3,0,0,6,8,4,0,722.6666666666666,683868.11318491,153545.0508802724,510130.4045723721,0,4750.794082146164 -15882,19607,35773,-9,35772,35770,1,0,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-901.4081302615127,-9,3,3,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,1,0,1,0,0,36.16,48.16,-9,-9,5,2,3,0,0,4,8,1,0,192,0,0,0,0,0 -15883,19608,35774,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,3,8.19656168321195,8.141301947158583,0,0,0,-1112.343693404263,0,2,-9,2019,9,0,45,47,1,0,0,8.037355701431741,8.037355701431741,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,12,8,4,0,281,-177964.8379710987,15609.99744606429,0,0,963.9859472070749 -15884,19609,35775,35776,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.776798910632471,7.647055371396606,0,1,0,-40.01653597749053,-9,2,2,2019,8,0,30,0,1,0,0,9.093093885790463,9.093093885790463,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.48,55.86,8.333333333333334,1,1,0,0,8,11,4,1,396.5,150507.5004427518,91969.67656653348,250066.4101494093,83404.63657248316,2143.513869412144 -15884,19609,35776,35775,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.854465895583255,8.183774373864679,0,1,0,-6.729594776929852,-9,2,2,2019,9,0,50,0,1,0,0,5.73179957283503,5.73179957283503,0,0,0,0,0,0,0,0,0,0,48.48,55.86,54.2,57.49,6.666666666666667,1,1,0,0,10,11,4,1,396.5,150507.5004427518,91969.67656653348,250066.4101494093,83404.63657248316,2143.513869412144 -15884,19610,35777,-9,35775,35776,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.348411409279,-9,1,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,1,0,0,11,1,1,523,-26226.06804961285,0,0,0,308.5567134728082 -15885,19611,35778,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.456654368822878,6.239824591232392,0,0,0,-1052.777993025884,0,2,2,2019,17,5,60,60,1,5,0,1.433417254442382,1.433417254442382,0,0,0,0,0,1,1,0,2.054977983729196,0,45.58,47.97,-9,-9,6.666666666666667,1,1,0,0,8,12,2,0,680,431132.1617520016,86958.12279493076,313688.8369298516,0,981.7121948377503 -15886,19612,35779,35780,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,0,0,0,4,-4,-177.757566761496,0,-9,-9,2019,10,0,0,43,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,54.2,57.49,8,1,1,1,0,0,12,5,1,283.5,595897.5542121434,533413.0030295233,195976.5635863104,0,3634.839725794975 -15886,19612,35780,35779,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.24857952882549,9.320442420239232,0,4,4,-121.6886107045818,0,2,1,2019,10,0,43,43,1,0,0,34.54055108463329,34.54055108463329,0,0,0,0,2,0,0,0,6.502843968787826,0,54.2,57.49,51,54,8.333333333333334,1,1,0,0,7,12,5,1,283.5,595897.5542121434,533413.0030295233,195976.5635863104,0,3634.839725794975 -15887,19613,35781,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.170089866915427,8.381798408873561,0,0,0,-1110.278461221964,0,1,2,2019,19,7,38,43,1,7,0,11.2113708341987,11.2113708341987,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,1.666666666666667,1,1,0,1,12,2,4,1,398,-52715.83511538282,2338.993744332824,0,0,1548.542753820559 -15888,19614,35782,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.525877383190564,6.866940531977412,0,0,-1069.820000157944,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.978053707818651,0,28.92367494528628,0,1,1,0,3.779080984337867,6.843054942397528,42.93,27.57,-9,-9,5,1,1,0,0,0,11,2,0,641,-107191.6541272837,86817.92464623776,0,0,1469.189179226499 -15889,19615,35783,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-956.557782532214,0,2,2,2019,27,12,0,0,4,12,0,0,0,1,5.647964947691042,11.32795235435898,45.41616718472559,2,1,1,0,0,0,36.53,15.84,-9,-9,5,1,1,0,0,0,9,1,0,55,-226016.7939457543,0,0,0,2399.174758760312 -15890,19616,35784,35786,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.577552079727896,8.501503199938657,0,20,-5,.8841923679878275,0,3,2,2019,8,2,35,73,1,2,0,18.49329903558171,18.49329903558171,0,0,0,0,0,1,1,0,0,0,43.2,59.97,57.06,57.76,6.666666666666667,1,1,0,0,11,12,4,1,745.3333333333334,225979.5310023722,103397.1814857533,310728.5660407377,160802.8948368695,3417.243994203725 -15890,19616,35785,-9,35786,35784,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.14281000874,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,745.3333333333334,225979.5310023722,103397.1814857533,310728.5660407377,160802.8948368695,3417.243994203725 -15890,19616,35786,35784,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,8.07103219490485,8.024911486469668,0,20,5,-31.31553955097559,0,2,1,2019,11,0,27,43,1,0,0,14.08032055938264,14.08032055938264,0,0,0,0,0,1,1,0,0,0,57.06,57.76,43.2,59.97,5,1,1,0,0,11,12,4,1,745.3333333333334,225979.5310023722,103397.1814857533,310728.5660407377,160802.8948368695,3417.243994203725 -15891,19617,35787,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.68446075801713,7.292808058055924,0,0,-882.8587671509353,0,-9,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.66762550093079,7.708186396671392,62.82,33.31,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,747,405744.7715681735,97891.85487803657,387210.8919496518,0,1861.695867912379 -15892,19618,35788,-9,35789,35790,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.705207203253,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,1,1254.8,217550.2812598075,40268.8846071389,64836.15288844077,97023.55219631581,2080.560514999617 -15892,19618,35789,35790,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,10,-1,56.77012082500298,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.60102301458119,0,41.53,56.72,60.29,52.11,8.333333333333334,1,1,0,0,5,1,2,1,1254.8,217550.2812598075,40268.8846071389,64836.15288844077,97023.55219631581,2080.560514999617 -15892,19618,35790,35789,-9,-9,1,1,30,0,3,0,2,2,-9,0,3,7.979944605894313,7.866746244368625,0,10,1,20.27275234921693,0,2,2,2019,8,1,39,39,1,1,0,8.027284241093177,8.027284241093177,0,0,0,0,0,1,1,0,2.579696900451582,0,60.29,52.11,41.53,56.72,8.333333333333334,1,1,0,0,8,1,2,1,1254.8,217550.2812598075,40268.8846071389,64836.15288844077,97023.55219631581,2080.560514999617 -15892,19618,35791,-9,35789,35790,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.8336989142806,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,1254.8,217550.2812598075,40268.8846071389,64836.15288844077,97023.55219631581,2080.560514999617 -15892,19618,35792,-9,35789,35790,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.8480555369894,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,1254.8,217550.2812598075,40268.8846071389,64836.15288844077,97023.55219631581,2080.560514999617 -15893,19619,35793,35794,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.538029782349137,7.51960157179796,59,5,-62.39022453520137,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.312378170224166,7.938438704043903,53.71,37.87,44.47,27.14,8.333333333333334,1,1,0,0,0,7,3,1,330,1260406.574645287,368093.4196479436,597825.561913972,0,2406.946538423801 -15893,19619,35794,35793,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3006213864581,5.756151742878955,59,-5,106.5272116632523,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,1.585380003932878,.5572434060474292,21.81248497469275,2,1,1,0,2.31798822396541,6.047764707831794,44.47,27.14,53.71,37.87,5,1,1,0,0,0,7,3,1,330,1260406.574645287,368093.4196479436,597825.561913972,0,2406.946538423801 -15894,19620,35795,35796,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.747209181197285,7.533356733576328,0,5,1,-54.77996633973091,0,2,3,2019,7,0,24,24,1,0,0,9.757216513148057,9.757216513148057,0,0,0,0,0,0,0,0,2.769079665064303,0,62.66,52.4,54,54,8.333333333333334,1,1,0,0,7,13,3,0,376,179861.4084851086,0,330686.7409255739,164437.6699635852,1419.217344992964 -15894,19620,35796,35795,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,6.8472146857034,6.948951027005376,0,5,-1,41.88411719085317,0,-9,-9,2019,9,0,45,50,1,0,0,2.030244074558533,2.030244074558533,0,0,0,0,0,0,0,0,2.102683249348974,0,54,54,62.66,52.4,8,4,1,0,0,1,13,3,0,376,179861.4084851086,0,330686.7409255739,164437.6699635852,1419.217344992964 -15895,19621,35797,-9,35798,35799,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-989.3544780388346,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.657212664220185,0,51.49,57.57,-9,-9,10,1,1,0,0,0,12,5,1,703.3333333333334,864064.6979128484,534834.8010297553,285142.4480579267,168690.4095825844,4151.203151026589 -15895,19621,35798,35799,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.75572879216969,6.681207428911768,0,39,-1,-18.80820181263227,0,2,2,2019,12,0,20,0,1,0,0,5.933059006418652,5.933059006418652,0,0,0,0,2,1,1,0,0,0,26.69,50.31,54.79,55.86,3.333333333333333,1,1,0,0,1,12,5,1,703.3333333333334,864064.6979128484,534834.8010297553,285142.4480579267,168690.4095825844,4151.203151026589 -15895,19621,35799,35798,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.012265662207083,9.28471823904942,7.580992057121114,11,1,58.26196927108764,0,-9,-9,2019,8,0,45,0,1,0,0,17.08050179789999,17.08050179789999,0,0,0,0,2,1,1,0,7.823502936239596,7.832114855363815,54.79,55.86,26.69,50.31,8.333333333333334,1,1,0,0,0,12,5,1,703.3333333333334,864064.6979128484,534834.8010297553,285142.4480579267,168690.4095825844,4151.203151026589 -15896,19622,35800,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.181293569272,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,14.76881514763991,0,133.0017070288719,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,1,0,6,2,0,2864,190425.2354791754,0,26345.91128839552,0,1587.841310551652 -15897,19623,35801,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.035154037216079,7.709302595911651,0,0,-983.5236695553004,0,2,-9,2019,8,0,0,38,4,0,0,0,0,0,0,0,0,14.5,0,0,0,7.885903106737664,7.546792076097642,59.62,35.92,-9,-9,8.333333333333334,1,1,0,0,11,1,3,1,807,1400209.19503482,208968.3119497873,416461.4719390383,0,688.587883456581 -15898,19624,35802,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.0384765458306,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.74,43.75,-9,-9,10,1,1,0,0,0,2,1,1,1156,218161.4516705103,0,0,0,858.1223766692889 -15899,19625,35803,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.435769932793018,8.429693430817029,0,0,0,-912.6041160738793,0,2,2,2019,10,0,42,45,1,0,0,17.18115256397192,17.18115256397192,0,0,0,0,0,1,1,0,4.659848230711614,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,222,45428.21987876669,58385.67153791038,231005.6083698152,14202.70343874298,2493.982807365721 -15900,19626,35804,-9,35806,35805,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.153998265903,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,0,502.3333333333333,214705.8133161948,-14324.48756234514,331227.4821299837,106450.9919972564,3896.771605220762 -15900,19626,35805,35806,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,8.697551656712523,8.538891058138242,0,6,3,18.12275594502164,0,3,3,2019,10,2,42,38,1,2,0,20.01998618166852,20.01998618166852,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.7,56.22,8.333333333333334,1,1,0,0,6,4,5,0,502.3333333333333,214705.8133161948,-14324.48756234514,331227.4821299837,106450.9919972564,3896.771605220762 -15900,19626,35806,35805,-9,-9,1,0,29,0,1,0,1,1,-9,0,3,8.211017774426043,8.408928935605649,0,6,-3,38.32053242681534,0,3,3,2019,11,0,41,37,1,0,0,10.24322773632027,10.24322773632027,0,0,0,0,0,1,1,0,5.57826069818985,0,48.7,56.22,57.06,57.76,8.333333333333334,1,1,0,0,3,4,5,0,502.3333333333333,214705.8133161948,-14324.48756234514,331227.4821299837,106450.9919972564,3896.771605220762 -15901,19627,35807,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.859187211600042,7.783336450730471,0,0,0,-883.7419882826828,0,3,3,2019,9,0,42,40,1,0,0,5.532997434528091,5.532997434528091,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,202,-87735.99213792635,4147.984662660794,0,0,1196.849588024518 -15902,19628,35808,35809,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.480577885907858,7.163454845693044,8,5,98.58490230690929,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.311550750613324,7.70314199358875,38.33,49.84,30.6,56.16,5,1,1,0,0,0,7,3,1,1092.5,864733.6063363532,423258.10779362,256380.1130319893,0,2260.279250397206 -15902,19628,35809,35808,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.048185391078491,4.956442611095093,8,-5,119.9821728063586,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.818225313006525,4.868613322066754,30.6,56.16,38.33,49.84,5,1,1,0,0,4,7,3,1,1092.5,864733.6063363532,423258.10779362,256380.1130319893,0,2260.279250397206 -15903,19629,35810,35811,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.203849074638755,6.78675635129833,0,1,-1,-72.08418061585886,0,3,-9,2019,6,0,23,0,1,0,0,5.583544538521334,5.583544538521334,0,0,0,0,0,0,0,0,0,0,56.19,46.16,52,55,10,1,1,0,0,1,11,3,0,139.5,441464.1106111851,232808.6166931962,89134.16245360655,0,1236.404918677956 -15903,19629,35811,35810,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.775513159288049,7.847660510152599,0,1,1,16.13417016404209,-9,-9,-9,2019,9,0,40,0,1,1,0,5.393156016223581,5.393156016223581,0,0,0,0,0,0,0,0,0,0,52,55,56.19,46.16,8,4,1,0,0,1,11,3,0,139.5,441464.1106111851,232808.6166931962,89134.16245360655,0,1236.404918677956 -15904,19630,35812,35813,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.30839595445681,7.372798752723019,37,5,48.62884964659776,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.918231207103664,7.277864395713173,61.12,51.57,49.97,40.31,8.333333333333334,1,1,0,0,11,10,5,1,506,2522021.463688353,2007154.75154723,400036.0464387042,0,2619.472590187529 -15904,19630,35813,35812,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.606504187606408,8.706559762614519,0,36,-5,110.2509579256112,0,2,-9,2019,10,1,40,42,1,1,0,16.30992269229563,16.30992269229563,0,0,0,0,0,0,0,0,4.356061639141559,0,49.97,40.31,61.12,51.57,6.666666666666667,1,1,0,0,13,10,5,1,506,2522021.463688353,2007154.75154723,400036.0464387042,0,2619.472590187529 -15905,19631,35814,35815,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.276626029315667,8.520834917978547,0,37,-4,-33.93542593352264,0,-9,-9,2019,11,0,47,45,1,2,0,11.2815548618504,11.2815548618504,0,0,0,0,0,0,0,0,2.418622111982188,0,49,48,55.36,51.57,7,1,1,0,0,11,8,5,0,735,2433340.78151678,1800860.185163688,489510.8714239991,0,4890.766509884947 -15905,19631,35815,35814,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.958542442588003,9.096660696705589,5.250392603469382,5,4,-196.9883860447866,0,-9,-9,2019,3,0,46,38,1,0,0,16.60681683764625,16.60681683764625,0,0,0,0,0,0,0,0,0,5.380789897635186,55.36,51.57,49,48,6.666666666666667,3,4,0,0,11,8,5,0,735,2433340.78151678,1800860.185163688,489510.8714239991,0,4890.766509884947 -15906,19632,35816,35817,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.613912997476758,8.468487057226596,0,31,3,26.54127971631393,0,3,3,2019,7,1,48,40,1,1,0,12.18746884307145,12.18746884307145,0,0,0,0,0,0,0,0,8.182139373855673,0,49,49,46.23,43.51,8.333333333333334,2,3,0,0,11,8,5,1,1530,1597654.740103308,1009815.506147011,521254.0163523969,0,4890.115379912384 -15906,19632,35817,35816,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.833532054187906,8.176901894734758,0,10,-3,41.11813891452687,0,-9,-9,2019,6,0,37,37,1,0,0,9.923288799517605,9.923288799517605,0,0,0,0,0,0,0,0,0,0,46.23,43.51,49,49,8.333333333333334,2,3,0,0,5,8,5,1,1530,1597654.740103308,1009815.506147011,521254.0163523969,0,4890.115379912384 -15906,19633,35818,-9,35817,35816,1,1,27,0,0,0,2,2,-9,0,3,8.741716522325348,8.796632158301197,0,0,0,-929.0083136137022,0,1,2,2019,12,0,40,40,1,2,1,17.18240644824912,17.18240644824912,0,0,0,0,0,0,0,0,0,0,51.79,50.48,-9,-9,5,2,3,0,0,7,8,5,1,1021,17233.5265625223,0,0,0,1934.407334794433 -15907,19634,35819,35820,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.024433875894053,8.138053373581641,0,34,1,-83.44858733290766,0,3,2,2019,12,0,45,45,1,0,0,8.575172019974575,8.575172019974575,0,0,0,0,7,0,0,0,3.754932026217934,0,52.41,42.18,46.56,50.26,5,1,1,0,0,11,5,4,0,1237,124868.1956409067,36370.34377011668,94979.33795865162,3427.863665101899,1593.385880410161 -15907,19634,35820,35819,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.994532270892591,6.896950711166028,0,34,-1,-26.20193712290944,0,3,-9,2019,11,0,26,20,1,0,0,5.592023255946455,5.592023255946455,0,0,0,0,14.5,0,0,0,4.207106875837015,0,46.56,50.26,52.41,42.18,3.333333333333333,1,1,0,0,11,5,4,0,1237,124868.1956409067,36370.34377011668,94979.33795865162,3427.863665101899,1593.385880410161 -15908,19635,35821,35824,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,8.380634231979029,8.405386543332474,0,15,3,-169.0816112716863,0,2,2,2019,17,5,32,28,1,5,0,15.1907627621766,15.1907627621766,0,0,0,0,2,1,1,0,0,0,32.26,23.4,49.16,42.18,6.666666666666667,1,1,0,0,9,5,4,1,747.5,393464.9222729756,209559.4699450647,194004.6679521329,31550.73804968712,3174.134254423864 -15908,19635,35822,-9,35821,35824,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.16934197608,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,747.5,393464.9222729756,209559.4699450647,194004.6679521329,31550.73804968712,3174.134254423864 -15908,19635,35823,-9,35821,35824,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.8777093497071,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,747.5,393464.9222729756,209559.4699450647,194004.6679521329,31550.73804968712,3174.134254423864 -15908,19635,35824,35821,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.277573518082033,8.126853992939749,0,15,-3,30.22673183986559,0,2,2,2019,13,1,39,39,1,1,0,11.18443785876719,11.18443785876719,0,0,0,0,14.5,1,1,0,0,0,49.16,42.18,32.26,23.4,6.666666666666667,1,1,0,0,9,5,4,1,747.5,393464.9222729756,209559.4699450647,194004.6679521329,31550.73804968712,3174.134254423864 -15909,19636,35825,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.71824648934475,8.974606489951709,6.949650621073825,0,0,-1065.316164055873,0,2,2,2019,26,11,35,50,1,11,0,22.69682157083369,22.69682157083369,0,0,0,0,0,1,1,0,6.797357567961844,0,23.02,66.47,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,1835.666666666667,320893.8433685718,68894.79885616718,270856.0610395697,122486.9890943046,2757.475317306992 -15909,19636,35826,-9,35825,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.127867091485,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1835.666666666667,320893.8433685718,68894.79885616718,270856.0610395697,122486.9890943046,2757.475317306992 -15909,19636,35827,-9,35825,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.9946925998232,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1835.666666666667,320893.8433685718,68894.79885616718,270856.0610395697,122486.9890943046,2757.475317306992 -15910,19637,35828,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.870964924033821,8.436701033648841,0,0,0,-963.5576001786674,0,-9,-9,2019,13,2,57,40,1,2,0,10.63124535469549,10.63124535469549,0,0,0,0,0,0,0,0,.6812846242655333,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,11,5,0,494,139945.2871385408,-11021.18487359802,115722.0531581963,92707.44571445476,2109.186788403297 -15911,19638,35829,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,5,9.496438899932002,9.874565355274546,0,0,0,-988.7604814946098,0,1,1,2019,12,2,40,40,1,2,0,36.07062532110751,36.07062532110751,0,0,0,0,0,1,1,0,0,0,44.39,63.4,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,1604,897139.6277527015,59151.98377950181,852114.4180907996,384187.7957659806,6572.31582191502 -15912,19639,35830,35831,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.162049658955727,6.801732923824936,49,0,41.5879246335677,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.807856500545934,6.917291642083807,48.28,60.18,53.44,42.91,8.333333333333334,1,1,0,0,6,7,2,1,1495.5,548846.2760495385,423374.8148176651,196200.6833240679,0,1064.869861478681 -15912,19639,35831,35830,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,49,0,-47.29487602589778,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.024592150046105,0,53.44,42.91,48.28,60.18,8.333333333333334,1,1,0,0,7,7,2,1,1495.5,548846.2760495385,423374.8148176651,196200.6833240679,0,1064.869861478681 -15913,19640,35832,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-831.548428866646,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,15.39337443425462,0,0,1,1,0,0,0,51,46,-9,-9,7,3,4,0,1,0,6,1,0,191,274639.8729406804,0,211814.9971039902,0,1425.603274245374 -15914,19641,35833,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.110180204199639,7.471625807634766,0,0,-879.2700432689966,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.836559016528536,61.75,25.69,-9,-9,10,4,2,0,0,0,10,3,1,89,732140.4880001219,83287.32573985802,369667.3367575093,0,676.881775475843 -15915,19642,35834,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1110.170333952245,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,1.506960929248429,0,19.01,22.64,-9,-9,10,1,1,0,0,5,4,1,0,424,-21842.13857211679,0,0,0,1695.688723529401 -15916,19643,35835,35836,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.505803440330514,8.697220083793137,0,17,1,86.82243379948983,0,-9,3,2019,11,0,38,0,1,0,0,20.29767964875657,20.29767964875657,0,0,0,0,0,0,0,0,3.447266409496808,0,46.08,57.2,45.91,59.89,5,1,1,0,0,11,9,5,1,570,265779.2112943321,167691.6388699,122911.0180642291,100644.9350298741,3962.09345700683 -15916,19643,35836,35835,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.403442956870469,8.329802392606387,0,18,-1,39.81357590474913,0,2,2,2019,10,0,29,28,1,0,0,19.66589515537109,19.66589515537109,0,0,0,0,0,0,0,0,.3429047188039951,0,45.91,59.89,46.08,57.2,8.333333333333334,1,1,0,0,9,9,5,1,570,265779.2112943321,167691.6388699,122911.0180642291,100644.9350298741,3962.09345700683 -15916,19643,35837,-9,35836,35835,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.839471941561,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,570,265779.2112943321,167691.6388699,122911.0180642291,100644.9350298741,3962.09345700683 -15917,19644,35838,35839,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.444042991901961,8.541812711438054,0,8,-1,118.5181926279072,0,2,2,2019,7,0,38,38,1,0,0,14.62578857637021,14.62578857637021,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.36,51.57,8.333333333333334,1,1,0,0,9,2,4,1,376.5,1525032.584230397,1066059.523336154,354423.0520630595,59203.44300776743,3814.699929014585 -15917,19644,35839,35838,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.689464313747804,8.100491127340421,7.539879411557553,8,1,67.10840994528309,0,3,3,2019,12,0,25,25,1,0,0,12.76956434363333,12.76956434363333,0,0,0,0,0,1,1,0,2.013746777249277,7.192420278563519,55.36,51.57,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,376.5,1525032.584230397,1066059.523336154,354423.0520630595,59203.44300776743,3814.699929014585 -15917,19645,35840,-9,35841,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.38064827007,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,794,45123.26399623435,15233.44881150827,115497.3083500187,106475.0652180052,1686.11252040386 -15917,19645,35841,-9,35839,-9,1,0,35,0,1,0,2,2,-9,0,4,7.759157566157813,7.615394458343298,0,0,0,-916.5114449577126,-9,3,-9,2019,11,0,35,0,1,2,1,9.509269903615172,9.509269903615172,0,0,0,0,0,1,1,0,6.144492635440826,0,48,57,-9,-9,7,1,1,0,0,1,2,3,1,794,45123.26399623435,15233.44881150827,115497.3083500187,106475.0652180052,1686.11252040386 -15917,19646,35842,-9,35839,-9,1,1,25,0,1,0,2,2,-9,0,4,8.25973796987763,7.853994281943256,0,0,0,-1008.715789016578,-9,3,-9,2019,10,0,40,0,1,1,1,12.139723412064,12.139723412064,0,0,0,0,0,1,1,0,.7175539797130038,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,661,-8247.749000673044,-21020.99373303974,0,0,1171.580945292057 -15918,19647,35843,35844,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.004509176446597,7.054183994924027,38,3,35.27823771737057,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,2.95972492831932,4.585114030739681,25.93228201240991,0,1,1,0,0,7.010709331078996,41.12,43.31,40.78,48.75,8.333333333333334,1,1,0,0,0,6,5,1,684,870885.9459619834,619927.803805535,240593.5556747233,21293.48665887172,4584.59732500569 -15918,19647,35844,35843,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.347474925912246,8.834979357693875,7.382808088394368,38,-3,-97.68569266432291,0,-9,2,2019,10,0,24,32,1,0,0,23.4564488805089,23.4564488805089,0,0,0,0,0,1,1,0,7.435652275392377,7.348307179862708,40.78,48.75,41.12,43.31,6.666666666666667,1,1,0,0,9,6,5,1,684,870885.9459619834,619927.803805535,240593.5556747233,21293.48665887172,4584.59732500569 -15919,19648,35845,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.663657996389888,6.871144158467221,0,0,-991.6499954342912,0,3,3,2019,14,3,0,37,4,3,0,0,0,1,0,0,0,0,1,1,0,3.5999140301102,6.775173325871389,43.29,28.78,-9,-9,3.333333333333333,4,2,0,0,8,10,2,1,617,553208.2947187704,338719.1867670566,404202.7151868476,51797.98279064931,1350.110279042184 -15920,19649,35846,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.389474090013,0,3,3,2019,17,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.605390627680801,0,45.28,26.51,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,364,67073.51731930449,0,0,0,1258.968781825165 -15921,19650,35847,-9,35850,35848,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.0247888957041,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,845.5,1369125.721045418,975747.2228843182,388675.2735251058,0,5667.667661688448 -15921,19650,35848,35850,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.938487941913852,8.55903302285941,0,15,1,-63.43415962417751,0,2,1,2019,7,0,43,47,1,0,0,15.96180754784912,15.96180754784912,0,0,0,0,0,1,1,0,3.585413129719047,0,54.77,55.87,52.31,58.29,10,1,1,0,0,8,12,5,1,845.5,1369125.721045418,975747.2228843182,388675.2735251058,0,5667.667661688448 -15921,19650,35849,-9,35850,35848,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.862111012759,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,845.5,1369125.721045418,975747.2228843182,388675.2735251058,0,5667.667661688448 -15921,19650,35850,35848,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.814018750130941,9.017572264185059,0,15,-1,-50.89117026144476,0,1,1,2019,6,0,35,34,1,0,0,26.17040426228711,26.17040426228711,0,0,0,0,0,1,1,0,6.690980486956477,0,52.31,58.29,54.77,55.87,8.333333333333334,1,1,0,0,7,12,5,1,845.5,1369125.721045418,975747.2228843182,388675.2735251058,0,5667.667661688448 -15922,19651,35851,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,6.476641064759737,6.301867555274652,0,0,0,-1038.068136077217,0,-9,-9,2019,8,0,45,45,1,0,0,1.47735638443436,1.47735638443436,0,0,0,0,7,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,5,2,0,734,337586.4991860057,0,203268.2362989442,0,132.5038079464341 -15923,19652,35852,35853,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,8.414218827072061,8.182249857179894,48,-1,117.110550994576,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.712487555916702,60.69,50.51,57.06,57.76,1.666666666666667,1,1,0,0,0,11,5,1,265.5,1686320.534383461,696012.2822438526,388586.2402062386,0,5141.819474203469 -15923,19652,35853,35852,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,8.042284037692841,7.68110417652289,48,1,-8.813513884075741,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.190901832198623,57.06,57.76,60.69,50.51,10,1,1,0,0,0,11,5,1,265.5,1686320.534383461,696012.2822438526,388586.2402062386,0,5141.819474203469 -15924,19653,35854,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.011575641745935,8.344425066976079,0,0,0,-964.3608104718035,0,-9,-9,2019,14,4,37,37,1,4,0,11.15143575423921,11.15143575423921,0,0,0,0,0,0,0,0,1.711225843284923,0,59.62,38.62,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,1392,125301.9780520358,0,0,0,1387.794289980731 -15925,19654,35855,35856,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,6,-13,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,4.576920508662715,0,0,1,1,0,0,0,50.68,28.49,53.56,25.72,8.333333333333334,2,3,0,1,0,12,1,1,1139,-143027.6575965898,0,0,0,1143.597922292529 -15925,19654,35856,35855,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,6,13,0,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53.56,25.72,50.68,28.49,8.333333333333334,2,3,0,0,0,12,1,1,1139,-143027.6575965898,0,0,0,1143.597922292529 -15925,19655,35857,35858,35855,35856,1,1,44,0,0,0,2,2,-9,0,3,8.859562561117373,8.790816415794131,0,6,-2,-58.8293390412417,0,3,3,2019,16,4,37,42,1,4,0,16.96271631836349,16.96271631836349,0,0,0,0,7,1,1,0,0,0,35.5,54.11,46.44,39.76,6.666666666666667,2,3,0,0,7,12,4,1,749,-25272.78447158177,79071.55906007478,0,0,2909.067280841304 -15925,19655,35858,35857,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.22175407478798,7.593555233638745,0,6,2,45.75419165294787,0,2,2,2019,22,10,50,20,1,10,0,3.167739565284568,3.167739565284568,0,0,0,0,2,1,1,0,0,0,46.44,39.76,35.5,54.11,5,2,3,0,0,7,12,4,1,749,-25272.78447158177,79071.55906007478,0,0,2909.067280841304 -15925,19655,35859,-9,35858,35857,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.6277879693745,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,12,4,1,749,-25272.78447158177,79071.55906007478,0,0,2909.067280841304 -15925,19656,35860,-9,35858,35857,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1079.585660687569,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,2,3,0,0,2,12,1,1,421,32556.64425511412,0,0,0,0 -15926,19657,35861,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.070570269277925,7.320447987509843,0,0,-964.1396854782585,0,1,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,6.191574439848687,7.323620976676226,32.05,44.76,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,662,549103.2569705078,176059.86483418,301388.7377808594,66856.14095860298,1066.802835880566 -15927,19658,35862,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,7.666264859309583,7.541534163274717,0,0,0,-985.59945895117,0,-9,-9,2019,14,2,35,35,1,2,0,8.043807946205199,8.043807946205199,1,0,0,0,2,1,1,0,0,0,29.53,27.1,-9,-9,1.666666666666667,1,1,0,1,10,12,3,0,1270,4392.742955606863,0,0,0,1571.217686177814 -15928,19659,35863,-9,35865,35866,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.1772392061115,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,557.5,279371.2193801512,83390.30842220775,189820.2419857201,62900.93308109324,3959.307499737639 -15928,19659,35864,-9,35865,35866,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.1786622187818,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,557.5,279371.2193801512,83390.30842220775,189820.2419857201,62900.93308109324,3959.307499737639 -15928,19659,35865,35866,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.523600896423721,8.537014068891189,0,6,-4,-201.8825996357176,0,2,2,2019,23,11,33,32,1,11,0,15.84916443632406,15.84916443632406,0,0,0,0,0,1,1,0,0,0,27.81,65.69,51.67,60.18,8.333333333333334,1,1,0,0,7,4,4,1,557.5,279371.2193801512,83390.30842220775,189820.2419857201,62900.93308109324,3959.307499737639 -15928,19659,35866,35865,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.303977867429252,8.599751631378821,0,6,4,-58.54013858489078,0,3,3,2019,11,0,39,39,1,0,0,11.07838502108134,11.07838502108134,0,0,0,0,0,1,1,0,0,0,51.67,60.18,27.81,65.69,8.333333333333334,1,1,0,0,7,4,4,1,557.5,279371.2193801512,83390.30842220775,189820.2419857201,62900.93308109324,3959.307499737639 -15929,19660,35867,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.106815216042246,7.724323326633018,0,0,0,-901.5793179037347,0,-9,-9,2019,7,1,39,39,1,1,0,9.057803695445328,9.057803695445328,0,0,0,0,2,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,1,4,1,183,-105565.4285215794,-46494.23721740414,0,0,1299.484720351373 -15930,19661,35868,35869,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,3,4,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.04,22.78,38.71,16.04,5,1,1,0,0,0,13,1,0,947,92254.33675180456,-32258.37584405996,109801.090949528,40811.29897380095,2961.213773340813 -15930,19661,35869,35868,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,3,-4,0,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.71,16.04,36.04,22.78,5,1,1,0,0,0,13,1,0,947,92254.33675180456,-32258.37584405996,109801.090949528,40811.29897380095,2961.213773340813 -15931,19662,35870,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1070.98443090686,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1.693612750547248,0,20.91,67.2,-9,-9,5,1,1,0,0,7,7,1,0,490,-100670.0609400438,24614.51473159471,0,0,935.4291437084821 -15932,19663,35871,-9,35874,35873,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.49835522227,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,1959.75,99945.64587628009,95698.2338750721,0,0,1656.212674019934 -15932,19663,35872,-9,35874,35873,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.7770650183422,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,1959.75,99945.64587628009,95698.2338750721,0,0,1656.212674019934 -15932,19663,35873,35874,-9,-9,1,1,29,1,2,0,1,1,-9,0,3,8.510755241816826,8.483370272609983,0,1,2,-120.2523414563658,-9,-9,-9,2019,9,0,45,0,1,0,0,12.93602548906398,12.93602548906398,0,0,0,0,0,1,1,0,0,0,56.52,45.61,39.05,59.16,8.333333333333334,2,3,0,0,5,9,3,0,1959.75,99945.64587628009,95698.2338750721,0,0,1656.212674019934 -15932,19663,35874,35873,-9,-9,1,0,27,1,2,0,1,1,-9,0,3,0,0,0,1,-2,-52.09399371263876,-9,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.05,59.16,56.52,45.61,5,2,3,0,0,3,9,3,0,1959.75,99945.64587628009,95698.2338750721,0,0,1656.212674019934 -15933,19664,35875,35876,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.453830697070289,7.783169740896805,6.472380543326969,2,-2,63.75129355977952,0,2,-9,2019,22,10,30,23,1,10,0,9.462957948355466,9.462957948355466,0,0,0,0,0,1,1,0,5.947423111721152,0,28.65,61.01,52,55,3.333333333333333,1,1,0,0,11,10,4,1,970.5,1645085.541796322,648027.3754974494,582470.0099722834,0,3529.720943191148 -15933,19664,35876,35875,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.428490342306068,8.440737849019653,0,2,2,138.0144900713833,-9,-9,-9,2019,9,0,39,0,1,1,0,15.03743867806932,15.03743867806932,0,0,0,0,0,1,1,0,0,0,52,55,28.65,61.01,8,4,1,0,0,1,10,4,1,970.5,1645085.541796322,648027.3754974494,582470.0099722834,0,3529.720943191148 -15933,19664,35877,-9,35875,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.50211542684,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,4,1,970.5,1645085.541796322,648027.3754974494,582470.0099722834,0,3529.720943191148 -15933,19664,35878,-9,35875,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.9595534007282,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,970.5,1645085.541796322,648027.3754974494,582470.0099722834,0,3529.720943191148 -15934,19665,35879,-9,-9,-9,1,1,54,0,0,0,1,1,-9,1,3,0,5.625017911770241,5.553295337479169,0,0,-977.2053135541976,0,3,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,4.96661808602245,0,32.99,53.81,-9,-9,1.666666666666667,3,4,0,1,1,9,2,0,263,810057.9626403864,287347.4467396964,446606.4717052703,0,1256.447377363575 -15935,19666,35880,35881,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.85898756444128,8.932686493180064,0,9,-4,97.9193012806363,0,2,2,2019,9,0,45,52,1,0,0,23.24434091744907,23.24434091744907,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.55,36.11,8.333333333333334,1,1,0,0,8,2,5,1,977,917002.2872287696,834245.5296665085,143439.0705290137,0,5030.522618603529 -15935,19666,35881,35880,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,6.755450747350611,7.336637145062348,6.592277528275756,9,4,47.72628329428227,0,3,3,2019,17,6,30,30,1,6,0,3.037731758137673,3.037731758137673,0,0,0,0,0,1,1,0,0,6.640616206536247,53.55,36.11,58.32,50.22,5,1,1,0,0,10,2,5,1,977,917002.2872287696,834245.5296665085,143439.0705290137,0,5030.522618603529 -15936,19667,35882,35883,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.202912795995402,8.302586698250515,0,20,1,-2.025961733929387,0,2,2,2019,8,0,37,37,1,0,0,12.36644224438672,12.36644224438672,0,0,0,0,0,1,1,0,3.822351895819432,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,11,2,5,1,418,612955.6115565193,295922.7755869911,297617.0643995324,38176.37435547436,3437.726809532802 -15936,19667,35883,35882,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.184644821317917,8.379860768494796,0,20,-1,-25.79843195479173,0,2,2,2019,14,2,36,34,1,2,0,12.38570554756545,12.38570554756545,0,0,0,0,0,1,1,0,1.804640020340065,0,51.83,57.2,54.79,55.86,6.666666666666667,1,1,0,0,11,2,5,1,418,612955.6115565193,295922.7755869911,297617.0643995324,38176.37435547436,3437.726809532802 -15936,19667,35884,-9,35883,35882,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-904.3690436311635,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,5,1,418,612955.6115565193,295922.7755869911,297617.0643995324,38176.37435547436,3437.726809532802 -15937,19668,35885,35886,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.979198456494502,8.14435857843227,58,1,-63.50465314550212,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.018130558646746,7.947424297594679,62.25,48.33,56.79,38.59,8.333333333333334,1,1,0,0,0,9,4,1,1737.5,967497.2368934202,543488.7722339281,278850.6031703049,0,3189.110874274812 -15937,19668,35886,35885,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,6.954324711070148,7.157828470397258,58,-1,18.47652833962053,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.819737865133784,56.79,38.59,62.25,48.33,8.333333333333334,1,1,0,0,0,9,4,1,1737.5,967497.2368934202,543488.7722339281,278850.6031703049,0,3189.110874274812 -15938,19669,35887,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.335734856136549,7.761528466390839,0,0,0,-1055.87130094386,0,2,2,2019,9,0,43,36,1,0,0,9.584433976451423,9.584433976451423,0,0,0,0,0,1,1,0,3.033997110581197,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,244,24813.51839152554,34388.51154292507,0,0,1035.301104656511 -15938,19670,35888,-9,35887,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1155.101039401145,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1138,80963.41077890653,0,0,0,672.1570899964993 -15939,19671,35889,35890,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.665205500093094,8.430419272766034,7,-2,10.47449448395013,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.974975062947681,8.611575975768703,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,577,1899763.392742477,867993.9489804972,439132.22682347,0,4109.475529345965 -15939,19671,35890,35889,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.525323894317064,5.807660821265857,44,2,49.05297961839779,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.070431345669767,6.200859575900634,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,10,4,1,577,1899763.392742477,867993.9489804972,439132.22682347,0,4109.475529345965 -15940,19672,35891,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.6197094397036,0,2,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,48.55,19.9,-9,-9,5,1,1,0,0,0,12,1,0,586,238195.6134999939,37695.01582485874,124875.5156085537,28568.2578998319,834.2531484556154 -15941,19673,35892,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,5.804051546116385,5.824472101087427,0,0,0,-936.3247234900815,0,2,-9,2019,20,7,1,1,1,7,0,47.03581921440993,47.03581921440993,0,0,0,0,0,1,0,1,0,0,40.38,34.42,-9,-9,1.666666666666667,4,2,0,1,2,8,2,0,2098,0,0,0,0,882.9415931305999 -15941,19674,35893,-9,35892,-9,1,1,29,0,0,0,2,2,-9,0,4,7.581416112377677,7.488598012564656,0,0,0,-969.041995868023,0,2,-9,2019,10,0,20,-9,1,1,1,11.71867964745647,11.71867964745647,0,0,0,0,0,1,0,1,0,0,48,58,-9,-9,7,3,4,0,0,1,8,3,0,952,19997.66940308971,0,0,0,1010.695556344997 -15942,19675,35894,35895,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.424947741017184,5.741793832906565,28,-4,122.45036740262,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,5.577487463665304,50.34,32.47,46.37,51.39,5,1,1,0,0,0,9,2,1,557,359140.1661742983,194349.0607601874,35956.63234905234,0,2358.300666541133 -15942,19675,35895,35894,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.401136012291933,7.542847990199593,28,4,-56.74011959479463,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,7.73734326552457,0,0,1,1,0,0,7.204749156962532,46.37,51.39,50.34,32.47,8.333333333333334,1,1,0,0,0,9,2,1,557,359140.1661742983,194349.0607601874,35956.63234905234,0,2358.300666541133 -15943,19676,35896,35897,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.854125814803187,8.022766133957726,43,-1,-8.996022814450914,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.15344056988025,7.794426557890148,46.64,45.06,59.54,42.87,6.666666666666667,1,1,0,0,0,10,3,1,437.5,1197152.269641615,525499.6935574919,342786.638077295,0,3964.625021138388 -15943,19676,35897,35896,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,43,1,91.06432014536099,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.258823489855125,0,59.54,42.87,46.64,45.06,8.333333333333334,1,1,0,0,0,10,3,1,437.5,1197152.269641615,525499.6935574919,342786.638077295,0,3964.625021138388 -15944,19677,35898,35899,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.683049068901624,6.687893787168524,5,-1,80.13484501434772,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.635618515509315,57.73,54.53,54.63,58.83,8.333333333333334,1,1,0,0,0,9,3,1,314.5,1429629.272295434,472007.3997119376,541074.3563057168,27764.15246442157,1628.395695988681 -15944,19677,35899,35898,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.626334550383114,7.125526286205366,52,1,49.49400275074546,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.036629779966955,7.134121261097392,54.63,58.83,57.73,54.53,8.333333333333334,1,1,0,0,0,9,3,1,314.5,1429629.272295434,472007.3997119376,541074.3563057168,27764.15246442157,1628.395695988681 -15945,19678,35900,35903,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.22486446610456,9.065278223142121,0,9,-1,129.7069033627998,-9,2,2,2019,7,0,80,0,1,0,0,13.16532657784325,13.16532657784325,0,0,0,0,0,0,0,0,3.353498718668083,0,40.52,62.31,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,721.25,617252.7594303566,404612.2655067911,339105.9257518532,143330.1676663982,3808.639412786355 -15945,19678,35901,-9,35903,35900,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.514071461397,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,721.25,617252.7594303566,404612.2655067911,339105.9257518532,143330.1676663982,3808.639412786355 -15945,19678,35902,-9,35903,35900,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.137155772517,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,721.25,617252.7594303566,404612.2655067911,339105.9257518532,143330.1676663982,3808.639412786355 -15945,19678,35903,35900,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,9,1,12.70945788957269,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,40.52,62.31,6.666666666666667,1,1,0,0,8,9,5,1,721.25,617252.7594303566,404612.2655067911,339105.9257518532,143330.1676663982,3808.639412786355 -15946,19679,35904,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.025858748508846,6.237072934937044,0,0,-980.3076922707903,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,6.140214720679634,26.02,43.58,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,475,173765.7718074668,124295.5106024937,133899.1841306143,0,1393.766629183669 -15947,19680,35905,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.171221547946619,8.194902959780913,0,0,0,-904.9230941011152,0,-9,-9,2019,12,0,38,38,1,0,0,9.595249889358003,9.595249889358003,0,0,0,0,0,0,0,0,1.070593296708134,0,39.19,43.1,-9,-9,5,1,1,0,0,9,8,4,0,988,310468.2524136403,170726.0110817881,0,0,1390.968791172901 -15947,19681,35906,-9,35905,-9,1,1,27,0,0,0,2,2,-9,0,4,7.69389731839796,7.714649580561955,0,0,0,-961.2633443879888,0,2,-9,2019,6,0,40,9,1,0,1,7.229118485639904,7.229118485639904,0,0,0,0,0,0,0,0,3.329403920878447,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,4738,-98695.39902281428,0,0,0,1312.418361539021 -15948,19682,35907,35908,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.07882680349613,7.230001500062007,0,32,10,85.34971370002251,0,3,2,2019,16,4,21,23,1,4,0,9.383809748702111,9.383809748702111,0,0,0,0,0,1,1,0,6.826192893295868,0,42.19,58.81,60.45,41.05,8.333333333333334,1,1,0,0,10,10,4,1,437.5,181164.2102449305,-32780.51741741008,268491.712018522,120713.4753428555,3590.740962640733 -15948,19682,35908,35907,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.364907495473183,8.268518065593888,0,32,-10,11.46440756908784,0,2,3,2019,10,0,45,60,1,0,0,10.0070831281839,10.0070831281839,0,0,0,0,0,1,1,0,4.988404466666345,0,60.45,41.05,42.19,58.81,8.333333333333334,1,1,0,0,10,10,4,1,437.5,181164.2102449305,-32780.51741741008,268491.712018522,120713.4753428555,3590.740962640733 -15949,19683,35909,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,5.984087914075143,6.192564702595477,0,0,-1018.071139961804,0,3,3,2019,20,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.087056910950851,31.93,19.35,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,630,87838.44647016168,-60433.80255257325,83355.25455778328,0,891.9171914537155 -15950,19684,35910,35911,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,.6650094986116241,.5992413979898362,6,-3,-101.6889544465861,0,3,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,.735110660142654,.5263631101557176,70.48999999999999,17.85,30.2,26.89,1.666666666666667,1,1,0,0,0,5,2,0,878.5,3863.319990894808,43703.08697247648,-31839.17059582688,0,3510.615335241951 -15950,19684,35911,35910,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,4.395724039985962,4.092229734887275,6,3,36.89978084998592,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.310749081392652,4.624664781191845,30.2,26.89,70.48999999999999,17.85,8.333333333333334,1,1,0,0,0,5,2,0,878.5,3863.319990894808,43703.08697247648,-31839.17059582688,0,3510.615335241951 -15950,19685,35912,-9,35910,35911,1,0,23,0,0,0,2,2,-9,0,3,7.390147207785946,7.661673143699211,0,0,0,-1087.154396848061,0,2,3,2019,13,1,37,60,1,1,1,6.075779796085429,6.075779796085429,0,0,0,0,0,1,1,0,1.293969256994732,0,43.37,47.79,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,130,61502.28071372058,0,0,0,14.811217863313 -15951,19686,35913,-9,35916,35914,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-926.0147950358613,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,2,4,1,723.75,435075.799127258,224361.4144432598,133888.2009322557,68438.08766371332,3390.952632339657 -15951,19686,35914,35916,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.809121668818728,7.4148369289872,0,20,6,139.7989484338707,0,3,3,2019,9,0,30,36,1,0,0,6.68180008732176,6.68180008732176,0,0,0,0,0,1,1,0,0,0,42.94,55.94,52.32,48.93,5,2,3,0,0,11,2,4,1,723.75,435075.799127258,224361.4144432598,133888.2009322557,68438.08766371332,3390.952632339657 -15951,19686,35915,-9,35916,35914,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.3252504879753,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.8211166287715255,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,723.75,435075.799127258,224361.4144432598,133888.2009322557,68438.08766371332,3390.952632339657 -15951,19686,35916,35914,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.952514293321135,8.830769870086698,0,20,-6,-70.3165196920032,0,2,2,2019,9,0,46,48,1,0,0,17.09841417242785,17.09841417242785,0,0,0,0,0,1,1,0,0,0,52.32,48.93,42.94,55.94,8.333333333333334,2,3,0,0,11,2,4,1,723.75,435075.799127258,224361.4144432598,133888.2009322557,68438.08766371332,3390.952632339657 -15952,19687,35917,35918,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.903030457923478,7.997494737661303,0,7,-11,-107.1346533884154,0,-9,-9,2019,15,5,20,38,1,5,0,15.39841251619886,15.39841251619886,0,0,0,0,7,1,1,0,0,0,56.47,51.02,56.18,48.68,8.333333333333334,1,1,0,0,10,12,5,1,810.5,40873.6183615367,-46837.72874720217,88448.27500045692,23417.09205336381,3915.002171056814 -15952,19687,35918,35917,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.833427031619959,8.890397799102455,0,7,11,24.40090150652301,0,-9,-9,2019,7,0,38,41,1,0,0,25.79873993028298,25.79873993028298,0,0,0,0,2,1,1,0,0,0,56.18,48.68,56.47,51.02,6.666666666666667,1,1,0,0,9,12,5,1,810.5,40873.6183615367,-46837.72874720217,88448.27500045692,23417.09205336381,3915.002171056814 -15953,19688,35919,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-976.0649685267334,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,3915,-105345.3628644007,0,0,0,1559.572941673975 -15954,19689,35920,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.476226158693301,4.331599689614846,0,0,-954.644978877923,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.36920557264243,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,482,149483.4872065839,13289.13588070329,0,0,1170.989463454428 -15955,19690,35921,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.552099412588358,8.438707083430472,0,0,0,-1028.362324919406,-9,-9,-9,2019,7,1,46,0,1,1,0,15.02848453157481,15.02848453157481,0,0,0,0,7,0,0,0,0,0,57.73,54.53,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,526,196095.1583911456,137092.7883713456,209775.5100472415,200085.4860841631,1851.194743458157 -15956,19691,35922,35923,-9,-9,1,0,54,0,0,0,2,2,-9,1,3,0,0,0,13,-5,0,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.7,28.45,62.49,55.09,6.666666666666667,4,2,0,0,8,9,1,0,750.5,311491.0171983907,0,236501.50991953,0,1416.707220784481 -15956,19691,35923,35922,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,0,0,7,5,0,0,-9,-9,2019,10,1,0,50,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.7,28.45,5,1,1,1,0,4,9,1,0,750.5,311491.0171983907,0,236501.50991953,0,1416.707220784481 -15957,19692,35924,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,5.607960669631177,5.441145865268052,0,0,-1052.607915263174,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,6.109323548881292,0,34.23,22.11,-9,-9,0,1,1,0,1,0,13,2,0,332,178699.3493784603,88811.55970233356,0,0,1486.677333077554 -15958,19693,35925,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.050211833675428,7.873819671341848,0,0,0,-1027.922370275978,0,2,3,2019,4,0,40,38,1,0,0,7.035727888444104,7.035727888444104,0,0,0,0,0,0,0,0,0,0,58.1,47.76,-9,-9,8.333333333333334,1,1,0,0,7,2,3,0,1539,191744.0353851228,172429.0260099029,79617.96593877337,-14738.84190155405,1380.382889921869 -15959,19694,35926,35927,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,0,0,0,3,8,5.326246940405351,0,3,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,24.37,28.12,49.04,55.86,3.333333333333333,1,1,1,1,10,8,4,0,352.5,30815.70809808714,-51855.60506765704,236402.2449448994,131289.4611757844,2640.04848945401 -15959,19694,35927,35926,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.70784017334066,8.964572645387149,0,3,-8,-38.25951200614014,0,-9,-9,2019,8,1,45,42,1,1,0,16.28241821323796,16.28241821323796,0,0,0,0,0,0,0,0,0,0,49.04,55.86,24.37,28.12,8.333333333333334,4,2,0,0,8,8,4,0,352.5,30815.70809808714,-51855.60506765704,236402.2449448994,131289.4611757844,2640.04848945401 -15960,19695,35928,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.685827003329926,4.915100911547398,0,0,-1007.538011401958,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,26.03515187215107,0,251.7067203927286,0,1,1,0,0,5.274414133748479,24.22,22.91,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,1084,83655.63889172518,-32560.13520403783,0,0,1421.546834029728 -15961,19696,35929,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.287315081949522,8.432964223041713,0,0,0,-1065.505341643541,0,2,3,2019,16,4,45,46,1,4,0,8.987319726660756,8.987319726660756,0,0,0,0,0,0,0,0,0,0,46.45,51.59,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,1268,-73840.42244028641,-37294.14593264351,0,0,1261.791729314629 -15962,19697,35930,-9,-9,-9,1,0,62,0,2,0,3,3,-9,1,5,7.651426852743005,7.254441334345457,0,0,0,-1043.543271199497,0,3,3,2019,12,0,60,60,1,0,0,3.24064937186203,3.24064937186203,0,0,0,0,66,1,1,0,0,0,62.99,49.54,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,229,80456.63441268068,85478.49273174701,167928.3332846802,0,4646.213765915481 -15962,19698,35931,-9,35930,-9,1,1,38,0,2,0,2,2,-9,0,4,8.452693063472632,8.393951279730604,6.325745402388992,0,0,-1082.026133661506,0,3,-9,2019,10,0,20,16,1,1,1,31.33790590578324,31.33790590578324,0,0,0,0,0,1,1,0,8.755503706485191,6.69850573444792,51,56,-9,-9,7,1,1,0,0,1,2,5,1,235,-101049.8459466757,-92628.1439172164,0,0,6152.319012482293 -15963,19699,35932,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.190278769859752,5.724466809515874,0,0,-847.8747229681278,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.927067015047391,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,849,465934.2167865584,38483.33801539263,79956.23420269998,0,509.8776890712421 -15964,19700,35933,35935,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,9.006920113349116,8.951347274250098,0,9,0,-17.63154964177853,0,2,3,2019,6,0,50,50,1,0,0,18.41437262660082,18.41437262660082,0,0,0,0,0,1,1,0,0,0,48.68,51.88,43.31,58.64,8.333333333333334,1,1,0,0,10,7,5,1,435.3333333333333,-27757.95022227124,33852.65878753134,0,0,5304.362688049773 -15964,19700,35934,-9,35933,35935,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1086.709644428387,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,435.3333333333333,-27757.95022227124,33852.65878753134,0,0,5304.362688049773 -15964,19700,35935,35933,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,9.008648424632565,8.934447517154759,0,9,0,-120.2780892429355,0,2,2,2019,19,8,53,59,1,8,0,12.89304655095573,12.89304655095573,0,0,0,0,0,1,1,0,0,0,43.31,58.64,48.68,51.88,3.333333333333333,1,1,0,1,10,7,5,1,435.3333333333333,-27757.95022227124,33852.65878753134,0,0,5304.362688049773 -15965,19701,35936,35937,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,4,0,-97.72698032150275,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.677954106450804,0,54.37,54.8,60.05,42.65,10,1,1,0,0,6,8,4,1,419,3494895.368835512,787526.180155457,1799269.182001654,0,3779.854958941993 -15965,19701,35937,35936,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.42332473336252,8.424433394567609,4,9,77.33758251578287,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.187278615647522,8.402401005637799,60.05,42.65,54.37,54.8,10,1,1,0,0,0,8,4,1,419,3494895.368835512,787526.180155457,1799269.182001654,0,3779.854958941993 -15966,19702,35938,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,6.71360726514719,7.038065203436612,0,0,-983.9282638435056,1,-9,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,7.041151464601936,0,51.83,57.2,-9,-9,5,1,1,0,1,3,1,2,0,541,100637.3382183957,0,0,0,-30.85491431708874 -15967,19703,35939,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,7.662655641419842,7.766973788193061,0,0,0,-963.3065367138482,-9,2,2,2019,16,4,42,0,1,4,1,6.417780362447433,6.417780362447433,0,0,0,.7706285754744471,0,1,1,0,0,0,43.2,59.97,-9,-9,6.666666666666667,1,1,0,0,1,4,3,1,511,-42958.34522721582,-67336.77599951909,0,0,696.0989638266371 -15968,19704,35940,35941,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,4,5,48.1592514760823,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,66.76000000000001,23.52,5,1,1,0,0,0,12,2,0,823.5,265121.018034668,-33708.15626896422,248123.1148239176,29145.51930403888,643.0254784466082 -15968,19704,35941,35940,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,6.397468260163635,6.382318667308415,0,8,-5,-2.142136613162248,0,-9,-9,2019,10,1,42,40,1,1,0,1.428222243664322,1.428222243664322,0,0,0,0,0,1,1,0,0,0,66.76000000000001,23.52,64.40000000000001,36.46,3.333333333333333,1,1,0,0,13,12,2,0,823.5,265121.018034668,-33708.15626896422,248123.1148239176,29145.51930403888,643.0254784466082 -15969,19705,35942,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-974.4488533930262,0,3,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,661,-34698.95160461149,0,0,0,1039.564885549689 -15970,19706,35943,35944,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.36612527157534,5.559102121184784,38,1,-122.9986189995355,0,3,2,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.494619587408423,5.269951659485078,62.9,48.63,57.16,56.15,10,3,4,0,0,0,8,2,1,763.5,287715.3422182155,158878.578769672,74863.14562549644,0,1462.078049391493 -15970,19706,35944,35943,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,39,-1,98.23971250693501,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.038547666083998,0,57.16,56.15,62.9,48.63,8.333333333333334,1,1,0,0,0,8,2,1,763.5,287715.3422182155,158878.578769672,74863.14562549644,0,1462.078049391493 -15971,19707,35945,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,6.753370371017143,6.79857891656289,0,0,-891.7103171932733,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,6.983699238990767,44.64,27.15,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,197,548224.9761258021,154062.4834904417,202120.8976486737,0,1477.795457968537 -15972,19708,35946,35947,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.580966449221976,7.632623548199064,0,2,0,-30.98104978297648,0,3,3,2019,15,3,13,13,1,3,0,16.00707619200774,16.00707619200774,0,0,0,0,0,0,0,0,0,0,42.75,58.52,52.77,55.33,8.333333333333334,1,1,0,0,11,6,5,1,694,536295.3514974255,144083.0917475762,431931.5469195445,49273.79548797091,5138.845255949977 -15972,19708,35947,35946,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.295264847109145,9.384362511696009,0,2,0,5.309394260068387,-9,-9,-9,2019,7,0,40,0,1,0,0,30.55207703275417,30.55207703275417,0,0,0,0,0,0,0,0,2.815542955144827,0,52.77,55.33,42.75,58.52,10,1,1,0,0,11,6,5,1,694,536295.3514974255,144083.0917475762,431931.5469195445,49273.79548797091,5138.845255949977 -15973,19709,35948,35949,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.678343186739045,8.503681166622014,0,27,5,31.54551295518244,0,2,2,2019,24,12,36,36,1,12,0,22.65801191163883,22.65801191163883,0,0,0,0,0,0,0,0,0,0,45.51,38.8,52.23,55.6,6.666666666666667,1,1,0,0,9,8,5,1,533,1500234.278563685,833856.9828992302,829556.4325597961,0,4627.070720226058 -15973,19709,35949,35948,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.772522589556043,8.616591273964698,0,26,-5,57.57180879951636,-9,-9,2,2019,15,5,40,0,1,5,0,14.67835810883829,14.67835810883829,0,0,0,0,0,0,0,0,5.639542179134137,0,52.23,55.6,45.51,38.8,6.666666666666667,3,4,0,0,6,8,5,1,533,1500234.278563685,833856.9828992302,829556.4325597961,0,4627.070720226058 -15973,19710,35950,-9,35949,35948,1,1,26,0,0,0,2,2,-9,0,4,7.856972088091051,7.827964516104322,0,0,0,-1036.578414120158,0,2,2,2019,11,1,48,56,1,1,1,6.551027524329961,6.551027524329961,0,0,0,0,0,0,0,0,0,0,51.47,53.17,-9,-9,6.666666666666667,4,2,0,0,5,8,4,1,1330,-11956.85754819584,0,0,0,1410.806631538489 -15973,19711,35951,-9,35949,35948,1,0,24,0,0,0,2,2,-9,0,4,8.814069179229033,8.619059013628078,0,0,0,-960.2548395457196,-9,2,3,2019,11,0,40,0,1,2,1,19.46788310173057,19.46788310173057,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,1,8,5,1,1395,136930.1962720148,-2952.342757744214,0,0,2489.906037967562 -15974,19712,35952,35953,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,9,2,59.448130554497,0,1,1,2019,4,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,10,5,2,1,578,852895.9023117275,620149.195936038,231687.2889550456,0,1456.175281874413 -15974,19712,35953,35952,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.281054647321941,7.20516653511671,9,-2,55.37253479976349,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.610712150955178,7.323167065526103,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,7,5,2,1,578,852895.9023117275,620149.195936038,231687.2889550456,0,1456.175281874413 -15974,19713,35954,-9,35953,35952,1,1,23,0,0,0,1,1,1,0,5,0,0,0,0,0,-944.5391998227831,-9,1,1,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,59.91,-9,-9,8.333333333333334,1,1,1,0,4,5,1,1,868,-158855.2180722146,0,0,0,11.91759349223949 -15975,19714,35955,-9,35957,35956,1,1,20,0,0,0,2,2,-9,0,2,7.020199909714048,7.075347314320965,0,0,0,-975.3682512392188,0,2,1,2019,30,12,28,25,1,12,1,5.456598730720764,5.456598730720764,0,0,0,0,0,1,1,0,0,0,19.71,46.95,-9,-9,1.666666666666667,1,1,0,0,2,10,3,0,624,-60921.80714495301,0,0,0,396.6691344569568 -15975,19715,35956,35957,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,6.420334678105118,6.365706762857921,0,10,-2,-84.28046469570069,0,2,2,2019,7,0,50,50,1,0,0,1.10423015537114,1.10423015537114,0,0,0,0,2,1,1,0,0,0,57.69,39.53,32,23.63,8.333333333333334,4,2,0,0,11,10,2,0,1131.5,258391.4829537698,0,265041.1186536415,0,1263.82182315344 -15975,19715,35957,35956,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,6.081754959149491,6.166281159390227,0,10,2,-102.1272494294711,0,-9,-9,2019,16,4,10,0,1,4,0,5.690090613678941,5.690090613678941,0,0,0,0,2,1,1,0,0,0,32,23.63,57.69,39.53,5,4,5,0,0,3,10,2,0,1131.5,258391.4829537698,0,265041.1186536415,0,1263.82182315344 -15976,19716,35958,35960,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.27606453098994,8.247186701060997,0,8,2,-22.63648025203107,0,-9,-9,2019,9,0,37,37,1,0,0,13.903506776741,13.903506776741,0,0,0,0,2,1,1,0,0,0,57.16,56.15,46.33,55.93,8.333333333333334,1,1,0,0,11,4,5,1,628.6666666666666,482848.238072823,295549.535948847,141950.725258126,60771.8991633972,3943.851311061073 -15976,19716,35959,-9,35960,35958,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-970.5622571028283,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,628.6666666666666,482848.238072823,295549.535948847,141950.725258126,60771.8991633972,3943.851311061073 -15976,19716,35960,35958,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.352827793655999,8.49317302193152,0,22,-2,42.18466944064688,0,2,2,2019,12,2,40,42,1,2,0,16.46578961273363,16.46578961273363,0,0,0,0,0,1,1,0,2.111478224809871,0,46.33,55.93,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,628.6666666666666,482848.238072823,295549.535948847,141950.725258126,60771.8991633972,3943.851311061073 -15976,19717,35961,-9,35960,35958,1,0,18,0,1,0,2,2,1,0,5,7.356155919646353,7.076173414508048,0,0,0,-964.5367947703202,-9,1,2,2019,9,0,28,0,1,0,1,5.877385265234866,5.877385265234866,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,4,3,1,437,175730.1091541396,-419.1286094534607,0,0,526.8646179399821 -15977,19718,35962,35963,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.348143107963633,8.739738574706232,54,0,-7.670026856951201,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,26.43506851762587,0,0,1,1,0,8.657428502634055,8.573211137923556,56.11,28.34,57.33,53.46,5,1,1,0,0,0,8,4,1,214.5,1013638.812357361,0,786222.9977742517,0,4632.742891790685 -15977,19718,35963,35962,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.534206887342516,6.818843393883497,54,0,-48.36663887190797,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.305204365922521,6.5218585831824,57.33,53.46,56.11,28.34,8.333333333333334,1,1,0,0,0,8,4,1,214.5,1013638.812357361,0,786222.9977742517,0,4632.742891790685 -15978,19719,35964,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.426377780999389,5.545340777381977,0,0,-973.3581811910142,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.839114430684195,5.625094708266074,60.73,18.88,-9,-9,10,1,1,0,0,0,12,2,1,1874,42.13868611544603,49581.62538716738,75894.44238101895,0,437.0104526267764 -15979,19720,35965,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,1,0,0,0,0,0,-937.8110563806697,0,3,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,2,6,1,0,1510,-58898.15368733869,0,0,0,1233.595998434023 -15980,19721,35966,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,3.929760859346618,3.514871088054985,0,0,-1082.14130094586,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.182021781031704,3.819264603851932,48.18,23.82,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,598,-574.0018546416395,0,0,0,2006.13379549065 -15981,19722,35967,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,2,8.694970459767516,8.975921715378114,0,0,0,-885.3621425064173,0,2,2,2019,21,8,70,40,1,8,0,10.1233742149336,10.1233742149336,0,0,0,0,0,1,1,0,1.321891125111274,0,14.85,61.42,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,359,3269.416316791825,0,0,0,2665.116369163845 -15982,19723,35968,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,7.283199191397609,8.353662186157226,7.461014979993636,0,0,-940.5579631930535,0,3,3,2019,10,0,15,16,1,0,0,13.76175740898059,13.76175740898059,0,0,0,0,2,1,1,0,6.338320246731297,7.254915342983767,57.06,57.76,-9,-9,10,1,1,0,0,8,13,4,1,752,839373.9439306351,674947.6793825568,145622.0285000103,0,2193.443001264214 -15983,19724,35969,35970,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.620342168075771,8.551334496284186,0,3,-1,131.3903022713554,0,-9,-9,2019,11,0,45,45,1,0,0,14.30533185627294,14.30533185627294,0,0,0,0,0,0,0,0,0,0,46.35,55.7,42.61,49.31,6.666666666666667,1,1,0,0,4,8,5,1,400,520430.2619125258,343029.9441344909,417414.9981496974,226513.3098863255,4878.188899214605 -15983,19724,35970,35969,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,9.142656284737281,9.227646543601653,0,3,1,5.368853444800521,0,-9,-9,2019,12,0,57,57,1,0,0,16.19290939917376,16.19290939917376,0,0,0,0,0,0,0,0,0,0,42.61,49.31,46.35,55.7,3.333333333333333,1,1,0,0,12,8,5,1,400,520430.2619125258,343029.9441344909,417414.9981496974,226513.3098863255,4878.188899214605 -15984,19725,35971,35972,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.987903063340092,7.807681844069087,59,2,22.65887155300904,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.930763028046103,53,46,46.73,57.01,7,1,1,0,0,0,9,3,1,190,1210625.298269147,689469.4775675817,415213.3298960492,0,2984.20204216092 -15984,19725,35972,35971,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.264530003592455,7.072743295389026,59,-2,-8.025640727284554,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.319557970166542,46.73,57.01,53,46,6.666666666666667,1,1,0,0,0,9,3,1,190,1210625.298269147,689469.4775675817,415213.3298960492,0,2984.20204216092 -15985,19726,35973,-9,35974,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.396465591591,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,1,0,702.5,-69980.63181217719,0,0,0,585.0182184222094 -15985,19726,35974,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-931.4084429068271,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,56,-9,-9,7,1,1,1,1,0,8,1,0,702.5,-69980.63181217719,0,0,0,585.0182184222094 -15986,19727,35975,35977,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.576228751319064,8.658921637935093,0,8,-6,-33.03382068013663,0,2,2,2019,9,1,37,40,1,1,0,14.31306645216761,14.31306645216761,0,0,0,0,0,1,1,0,0,0,56.01,27.43,35.54,56.37,8.333333333333334,1,1,0,0,7,4,4,0,804.3333333333334,625409.1272274939,185772.5706422993,163442.1221249347,89327.01975935331,3017.654949571936 -15986,19727,35976,-9,35975,35977,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.860786452557,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,4,0,804.3333333333334,625409.1272274939,185772.5706422993,163442.1221249347,89327.01975935331,3017.654949571936 -15986,19727,35977,35975,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.25912118407658,8.265711075019246,0,8,6,73.65265700183454,0,3,-9,2019,11,2,45,40,1,2,0,9.806754731040648,9.806754731040648,0,0,0,0,0,1,1,0,0,0,35.54,56.37,56.01,27.43,6.666666666666667,4,2,0,0,9,4,4,0,804.3333333333334,625409.1272274939,185772.5706422993,163442.1221249347,89327.01975935331,3017.654949571936 -15987,19728,35978,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.997991622349126,8.722637094896943,0,0,0,-980.4642090599026,0,2,2,2019,8,0,40,50,1,0,0,28.07662138327518,28.07662138327518,0,0,0,0,0,0,0,0,0,0,53.62,46.84,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,154,32332.09294067054,24700.16401982801,0,0,3468.996691706462 -15988,19729,35979,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.031416243771648,8.576080215328203,0,0,0,-1052.227421773879,0,-9,-9,2019,9,0,36,40,1,0,0,15.80003302832968,15.80003302832968,0,0,0,0,0,0,0,0,0,0,50.23,54.06,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,466,351712.6221328637,171122.6065201344,96111.23064837841,17885.14260728781,1639.986035109887 -15989,19730,35980,35982,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,9.643229693190969,9.670601381670982,0,7,0,-67.94970185470294,0,1,1,2019,11,0,52,46,1,0,0,35.11196806163939,35.11196806163939,0,0,0,0,0,0,0,0,0,0,46.06,60.24,46.44,59.62,8.333333333333334,1,1,0,0,9,8,5,1,1213.4,506629.8929157142,81801.16070105128,839886.8134055354,419765.3587741454,7901.812083934814 -15989,19730,35981,-9,35982,35980,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-877.4011710218606,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1213.4,506629.8929157142,81801.16070105128,839886.8134055354,419765.3587741454,7901.812083934814 -15989,19730,35982,35980,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,8.513589438675686,8.518739761202001,0,17,0,18.40366302393342,0,2,1,2019,10,0,21,20,1,0,0,27.01432293482651,27.01432293482651,0,0,0,0,0,0,0,0,.7294064224604734,0,46.44,59.62,46.06,60.24,8.333333333333334,1,1,0,0,6,8,5,1,1213.4,506629.8929157142,81801.16070105128,839886.8134055354,419765.3587741454,7901.812083934814 -15989,19730,35983,-9,35982,35980,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.1586419716193,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1213.4,506629.8929157142,81801.16070105128,839886.8134055354,419765.3587741454,7901.812083934814 -15989,19730,35984,-9,35982,35980,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.5887781720633,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1213.4,506629.8929157142,81801.16070105128,839886.8134055354,419765.3587741454,7901.812083934814 -15990,19731,35985,35986,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.709158549636729,8.61700740380569,0,1,-1,96.0930082290357,-9,3,2,2019,10,0,35,0,1,1,0,17.14463641241998,17.14463641241998,0,0,0,0,0,1,1,0,0,0,49,58,40.64,52.96,7,2,3,0,0,8,8,4,0,2027,69543.93339151669,-8969.32487030304,0,0,2125.38236499698 -15990,19731,35986,35985,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,6.116635409373451,6.274796313327515,0,1,1,-10.16597033794031,-9,-9,-9,2019,12,4,10,0,1,4,0,5.583718526236614,5.583718526236614,0,0,0,0,0,1,1,0,0,0,40.64,52.96,49,58,6.666666666666667,2,3,0,0,9,8,4,0,2027,69543.93339151669,-8969.32487030304,0,0,2125.38236499698 -15990,19731,35987,-9,35986,35985,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.790038636761,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,2027,69543.93339151669,-8969.32487030304,0,0,2125.38236499698 -15991,19732,35988,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.367538226252023,8.318961365860238,0,0,-1025.548573216762,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.463506674088134,8.387897688777565,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,927,376595.4192400108,610338.6943761981,0,0,1893.703098433393 -15992,19733,35989,35990,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.329434591352161,6.1655824564279,47,-1,90.11023664861747,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.177666366408006,57.16,56.15,44.78,56.37,8.333333333333334,1,1,0,0,9,5,3,1,688.5,1071437.870594925,490481.8963066934,442081.8619051453,0,2583.678466122509 -15992,19733,35990,35989,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.915506037347549,7.692296162106538,47,1,-52.86843577494011,0,3,2,2019,9,0,0,60,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.195691961481916,44.78,56.37,57.16,56.15,8.333333333333334,1,1,0,1,11,5,3,1,688.5,1071437.870594925,490481.8963066934,442081.8619051453,0,2583.678466122509 -15993,19734,35991,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.658631088877957,7.587846991772035,0,0,-1030.898610377331,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.866859113389843,7.710006298827023,35.62,57.79,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,415,628803.4083087934,196686.7218146152,180819.8531308021,0,1438.394021260703 -15994,19735,35992,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,9.102487477764022,8.99747673829568,4.69141908598261,0,0,-864.5323845687253,0,2,2,2019,10,0,25,24,1,0,0,42.93664108141966,42.93664108141966,0,0,0,0,0,1,0,1,5.19018181451097,5.043331080218478,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,126,609705.9584601584,88263.54862062595,441746.6021245773,55078.25855631309,4237.45152336532 -15994,19736,35993,-9,35992,-9,1,0,22,0,0,0,2,2,-9,0,4,7.620277062562047,7.641252400915879,0,0,0,-981.6967615154192,0,2,-9,2019,11,0,37,39,1,0,1,7.110108455424286,7.110108455424286,0,0,0,0,0,1,0,1,.5806177505402136,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,2272,135364.9491351397,0,0,0,902.5260697732491 -15994,19737,35994,-9,35992,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.1390979461595,-9,2,-9,2019,13,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,4.203883812955511,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,1192,0,0,0,0,-495.2948905207743 -15995,19738,35995,35996,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.845080987294102,8.872900891481251,0,9,-2,65.78703700519583,0,3,2,2019,13,3,70,110,1,3,0,10.41242276275552,10.41242276275552,0,0,0,0,0,1,1,0,0,0,45.32,54.77,36.07,54.39,6.666666666666667,1,1,0,0,10,11,5,1,610,575796.7486268333,392997.1147161026,265456.3293093672,19746.95042310236,4773.624599581675 -15995,19738,35996,35995,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,8.954874021770983,8.861885171599573,0,9,2,123.4094551647012,0,2,2,2019,14,4,43,40,1,4,0,15.91157815632571,15.91157815632571,0,0,0,0,0,1,1,0,0,0,36.07,54.39,45.32,54.77,5,1,1,0,0,10,11,5,1,610,575796.7486268333,392997.1147161026,265456.3293093672,19746.95042310236,4773.624599581675 -15995,19739,35997,-9,35995,35996,1,0,32,0,0,0,1,1,-9,0,3,4.841720736099918,5.181837179503728,0,0,0,-1034.251974857387,0,2,2,2019,14,3,12,20,1,3,1,1.715621691044879,1.715621691044879,0,0,0,0,0,1,1,0,0,0,36.33,59.23,-9,-9,6.666666666666667,1,1,0,1,4,11,2,1,203,-11785.83649932264,-30377.1995420475,0,0,504.8439089103875 -15996,19740,35998,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.969733839464054,8.069133648072778,5.733102016601452,0,0,-995.189521172985,0,3,3,2019,32,11,50,-9,1,11,0,6.717612137321716,6.717612137321716,0,0,0,0,0,0,0,0,7.126572830061352,5.990800129568874,12.36,63.85,-9,-9,10,1,1,0,0,9,8,4,1,443,1255392.641311622,607364.0644775926,449881.5714408408,21063.05857799469,1545.038365978367 -15997,19741,35999,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.83584728588977,7.798606839199731,5.916340878408787,0,0,-1021.503909718843,0,-9,-9,2019,6,0,39,37,1,0,0,5.426468820607334,5.426468820607334,0,0,0,0,0,0,0,0,5.966674527547132,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,1187,-39801.35946491642,-101326.4003970559,0,0,1629.060182040532 -15998,19742,36000,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.59340919924843,8.604624383072274,0,0,0,-1004.04434295919,0,-9,-9,2019,19,7,55,57,1,7,0,8.825182512242005,8.825182512242005,0,0,0,0,0,0,0,0,0,0,29.65,59.83,-9,-9,3.333333333333333,1,1,0,0,9,11,5,0,1129,-15292.22755045418,-100769.3238300598,76984.26492856842,82855.17841601123,1913.524076345305 -15999,19743,36001,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.094167435832635,7.69224675980326,0,0,0,-968.518684758543,0,3,2,2019,8,0,48,60,1,0,0,8.541520270467588,8.541520270467588,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,5,1,1,0,0,9,11,4,1,1337,238671.1030994975,42166.27221717668,47003.6982963194,11293.0430877518,1247.392032187384 -16000,19744,36002,36003,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.132195055066093,8.623282446534152,16,2,5.788743434436577,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.600844089784763,8.244412769484724,59.04,43.07,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,912,3869053.801089509,3155316.329529111,582501.4853445396,0,5544.251365339149 -16000,19744,36003,36002,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.484966039186319,7.505254521408349,16,-2,121.1356891897096,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.462220854052362,8.145997925676003,57.16,56.15,59.04,43.07,8.333333333333334,1,1,0,0,0,2,5,1,912,3869053.801089509,3155316.329529111,582501.4853445396,0,5544.251365339149 -16001,19745,36004,36007,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.17300097908053,8.468360020572984,0,7,3,-70.91741728574465,0,-9,-9,2019,6,0,44,44,1,0,0,8.161127836353062,8.161127836353062,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.48,52.94,8.333333333333334,1,1,0,0,9,12,3,1,1601,-78588.29711361518,62427.97084979156,71854.11089864025,57884.10156771667,2384.076061123867 -16001,19745,36005,-9,36007,36004,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.468603381974,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,1601,-78588.29711361518,62427.97084979156,71854.11089864025,57884.10156771667,2384.076061123867 -16001,19745,36006,-9,36007,36004,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1070.331233086004,1,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.09,58.82,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,1601,-78588.29711361518,62427.97084979156,71854.11089864025,57884.10156771667,2384.076061123867 -16001,19745,36007,36004,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.071199530128573,6.755658618594658,0,7,-3,-95.90171549169543,0,-9,-9,2019,12,1,20,16,1,1,0,6.333168274078282,6.333168274078282,0,0,0,0,0,1,1,0,0,0,35.48,52.94,54.2,57.49,5,1,1,0,0,2,12,3,1,1601,-78588.29711361518,62427.97084979156,71854.11089864025,57884.10156771667,2384.076061123867 -16002,19746,36008,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.632044703592543,5.334379121640181,0,0,-774.6029670737773,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.38450171414713,5.536076979031746,62.49,55.09,-9,-9,10,1,1,0,0,0,4,2,0,497,0,0,0,0,705.4361448335156 -16003,19747,36009,36010,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,6,3,-19.28516463499329,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,8,6,4,1,325,771484.571920603,678287.5188447314,258125.5139079947,0,3163.918879803253 -16003,19747,36010,36009,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.587574866842704,8.678621004072294,5.871069818907042,6,-3,-111.2240912613081,-9,-9,-9,2019,10,0,50,0,1,1,0,12.49955404455529,12.49955404455529,0,0,0,0,0,1,1,0,0,6.042615939918985,52,48,57.16,56.15,7,1,1,0,0,1,6,4,1,325,771484.571920603,678287.5188447314,258125.5139079947,0,3163.918879803253 -16004,19748,36011,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,3,0,6.172884171184841,6.579513189688771,0,0,-944.5475015295566,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,13.32322601744486,17.83615678636001,140.5116757151546,0,1,1,0,0,6.164514464056769,56,44,-9,-9,8,1,1,0,0,0,10,2,1,483,774121.7035409433,-9151.869358786331,301404.7890150558,0,95.85850045411985 -16005,19749,36012,36013,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.487936494342375,7.333522552306273,45,3,-216.197655377468,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.383326523759121,7.428079914729299,53,47,57.16,56.15,7,1,1,0,0,0,5,3,1,347,1045286.625754878,401227.3991209777,269548.7353626547,0,1997.796499650152 -16005,19749,36013,36012,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.395350999159408,6.462880233756141,45,-3,28.66281139532472,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.117474809136541,6.254165625510012,57.16,56.15,53,47,8.333333333333334,1,1,0,0,6,5,3,1,347,1045286.625754878,401227.3991209777,269548.7353626547,0,1997.796499650152 -16006,19750,36014,36015,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.476252625969918,6.397269552296868,33,5,-19.00531563561365,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.496873053117016,62.96,55.09,62.39,56.71,10,1,1,0,0,0,4,2,1,312.5,640795.3971770492,195298.4746254247,384904.7305262526,0,1739.222263964475 -16006,19750,36015,36014,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,32,-5,-156.696171836483,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,62.96,55.09,10,2,3,0,0,5,4,2,1,312.5,640795.3971770492,195298.4746254247,384904.7305262526,0,1739.222263964475 -16007,19751,36016,36017,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,0,0,10,-7,65.62492486690165,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.545678911825161,0,56.23,52.63,62.66,52.4,8.333333333333334,1,1,0,0,0,12,3,1,294,1286498.79861221,428600.7719791478,425799.6549453092,0,1771.168061104945 -16007,19751,36017,36016,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.742476291325573,7.862218582051461,10,7,3.751670469381488,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.352558275257286,7.795154127696826,62.66,52.4,56.23,52.63,10,1,1,0,0,0,12,3,1,294,1286498.79861221,428600.7719791478,425799.6549453092,0,1771.168061104945 -16008,19752,36018,36019,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.445377011522989,9.164930541555181,0,6,-1,5.138151693137051,0,2,2,2019,18,6,41,42,1,6,0,31.69354560653456,31.69354560653456,0,0,0,0,0,0,0,0,3.385712054036338,0,38.34,62.12,33.66,61.57,5,1,1,0,0,9,8,5,1,682,372515.8585936041,-24874.95066860536,639172.9747437492,374568.128806501,5977.419443364403 -16008,19752,36019,36018,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.92979786837396,8.982651212619055,0,6,1,34.16896341281075,0,2,1,2019,24,11,43,40,1,11,0,17.93282947311495,17.93282947311495,0,0,0,0,0,0,0,0,0,0,33.66,61.57,38.34,62.12,3.333333333333333,1,1,0,0,6,8,5,1,682,372515.8585936041,-24874.95066860536,639172.9747437492,374568.128806501,5977.419443364403 -16009,19753,36020,36021,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.360416623749037,7.864067767196481,0,4,-15,47.55462441708419,0,2,2,2019,7,0,43,44,1,0,0,8.375803937704223,8.375803937704223,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.14,53.42,8.333333333333334,1,1,0,0,5,6,4,0,447.5,-5647.118583996773,40156.67135670541,0,0,2429.838089984826 -16009,19753,36021,36020,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.906901165921736,7.69574123122614,0,4,15,-74.61675708544544,0,-9,-9,2019,8,1,38,32,1,1,0,8.416299653491437,8.416299653491437,0,0,0,0,2,0,0,0,0,0,48.14,53.42,57.16,56.15,8.333333333333334,1,1,0,0,10,6,4,0,447.5,-5647.118583996773,40156.67135670541,0,0,2429.838089984826 -16010,19754,36022,36023,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.08748952528867,5.440281097560798,51,5,57.4465005083449,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.794161912148359,5.010715079208733,53.46,42.77,54.37,54.8,8.333333333333334,1,1,0,0,7,7,2,0,175,113066.6616146133,162030.3349866861,56981.35324507,0,1111.411648921492 -16010,19754,36023,36022,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-5,48.17676429594388,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.375270918666697,0,54.37,54.8,53.46,42.77,10,1,1,0,0,0,7,2,0,175,113066.6616146133,162030.3349866861,56981.35324507,0,1111.411648921492 -16011,19755,36024,36025,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.661608450313146,8.586653092636233,10,-5,-13.60225446189773,0,-9,-9,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.945857646008215,8.417718375678742,58.72,51.29,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,806,1151388.312738005,662475.4266175667,327042.689940481,0,3904.800861319388 -16011,19755,36025,36024,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.756881436709739,7.499964585635754,7.060126956185529,32,5,-70.12219660936985,0,3,3,2019,11,0,10,10,1,0,0,7.944797032727802,7.944797032727802,0,0,0,0,0,0,0,0,4.133506533375828,7.110880524922546,54.77,55.87,58.72,51.29,8.333333333333334,1,1,0,0,13,9,5,1,806,1151388.312738005,662475.4266175667,327042.689940481,0,3904.800861319388 -16011,19756,36026,-9,36025,36024,1,1,24,0,0,0,2,2,-9,0,4,8.078404512972483,7.783918689209307,0,0,0,-928.3885491827222,0,2,1,2019,5,0,42,44,1,0,1,7.3883386771287,7.3883386771287,0,0,0,0,0,0,0,0,3.041393191552378,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,566,168622.9197398212,0,0,0,1707.198457831064 -16012,19757,36027,36028,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,4.231318128361982,4.21337576116686,0,33,3,32.56330592653808,0,3,3,2019,13,2,45,45,1,2,0,.2061768287840525,.2061768287840525,0,0,0,0,0,0,0,0,0,0,46.73,54.33,24.52,39.05,8.333333333333334,2,3,0,0,10,8,3,1,235.5,460297.5414184076,105027.3565733353,214589.6056197056,0,858.190890021295 -16012,19757,36028,36027,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.300247052896442,7.772529371016009,33,-3,197.2513888412354,0,3,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,4.021090626177988,7.750544544686995,24.52,39.05,46.73,54.33,3.333333333333333,2,3,0,0,0,8,3,1,235.5,460297.5414184076,105027.3565733353,214589.6056197056,0,858.190890021295 -16013,19758,36029,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1083.883057152119,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,375,-1884.342492120808,0,0,0,1047.365033170142 -16014,19759,36030,36031,-9,-9,1,0,21,0,0,0,2,2,1,0,1,7.147334472495255,7.451663480172535,6.340431239772741,3,-3,3.791889941318328,-9,-9,-9,2019,19,7,23,0,1,7,0,8.008349150358697,8.008349150358697,0,0,0,0,0,0,0,0,6.349430148794184,0,26.83,37.9,35.87,53.72,6.666666666666667,1,1,0,0,2,5,4,0,1438.5,73345.30190376341,-63512.35031964209,0,0,2108.649175923573 -16014,19759,36031,36030,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.971883212386245,7.668091866139642,0,3,3,54.30751836376251,0,-9,-9,2019,16,4,40,48,1,4,0,7.329634187799535,7.329634187799535,0,0,0,0,0,0,0,0,0,0,35.87,53.72,26.83,37.9,5,1,1,0,0,6,5,4,0,1438.5,73345.30190376341,-63512.35031964209,0,0,2108.649175923573 -16015,19760,36032,-9,36033,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.020290504809836,8.003022965172367,0,0,-938.0678482196543,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,7.023279073036821,8.196544715699666,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1691,1816132.541182979,1428041.123433166,212007.2110976772,0,2080.166791624021 -16015,19761,36033,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,6.409504166293562,6.197831028792244,0,0,-964.8399022831758,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.276294514780169,55,43,-9,-9,8,1,1,0,0,0,12,2,1,567,145265.9299322603,-40657.59937662639,201805.4659038833,0,1304.967873215023 -16016,19762,36034,36035,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.262338914588375,8.341375054348983,0,23,1,-80.53866622025177,0,2,-9,2019,15,2,30,40,1,2,0,15.3100703735385,15.3100703735385,0,0,0,0,2,1,1,0,0,0,44.08,28.55,52.23,55.6,8.333333333333334,1,1,0,0,8,1,4,1,1025.5,180760.9981145688,-28384.88870231983,176621.6426374164,35230.46077905367,4635.124596974412 -16016,19762,36035,36034,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.401660365757282,7.765008774119614,0,7,-1,88.58528314838586,0,2,2,2019,8,0,50,55,1,0,0,3.487892844941023,3.487892844941023,0,0,0,0,2,1,1,0,0,0,52.23,55.6,44.08,28.55,8.333333333333334,1,1,0,0,9,1,4,1,1025.5,180760.9981145688,-28384.88870231983,176621.6426374164,35230.46077905367,4635.124596974412 -16017,19763,36036,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.325063702826526,9.103747888408449,0,0,0,-969.4680230793175,-9,2,1,2019,16,3,43,0,1,3,0,27.79263410683285,27.79263410683285,0,0,0,0,0,0,0,0,0,0,29.2,36.46,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,907,242138.9360882741,166998.8814484814,145417.0480936887,50581.31516756513,2452.379946605988 -16017,19764,36037,-9,-9,36036,1,0,21,0,0,0,2,2,1,0,4,7.85844512756228,7.922617587475289,0,0,0,-1044.878980821228,-9,-9,1,2019,9,0,43,0,1,0,1,7.96289356731198,7.96289356731198,0,0,0,0,0,0,0,0,5.569716349115249,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,7,3,1,403,-116702.6234164872,-73351.72259250317,0,0,1348.49189842056 -16018,19765,36038,-9,-9,-9,1,0,21,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1004.268488396866,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,294.6666666666667,0,0,0,0,1047.934054704911 -16018,19765,36039,-9,36038,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.4603851199606,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,294.6666666666667,0,0,0,0,1047.934054704911 -16018,19765,36040,-9,36038,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.744007919815,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,294.6666666666667,0,0,0,0,1047.934054704911 -16019,19766,36041,-9,36043,36044,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-891.3937771208452,-9,2,3,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,1763,170705.170802325,147815.8472590962,181765.0352957647,67875.68826273983,3809.357562373418 -16019,19766,36042,-9,36043,36044,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.4276007767809,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1763,170705.170802325,147815.8472590962,181765.0352957647,67875.68826273983,3809.357562373418 -16019,19766,36043,36044,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.656949503695106,7.651865500530299,0,23,-1,99.82390471937663,0,2,2,2019,9,0,21,21,1,0,0,11.98128702018104,11.98128702018104,0,0,0,0,0,1,1,0,0,0,51.24,58.84,59.14,52.5,8.333333333333334,1,1,0,0,9,2,4,1,1763,170705.170802325,147815.8472590962,181765.0352957647,67875.68826273983,3809.357562373418 -16019,19766,36044,36043,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.962246625218679,8.789432209713491,0,23,1,-6.661739794702852,0,3,2,2019,10,0,44,45,1,0,0,17.35053909050776,17.35053909050776,0,0,0,0,0,1,1,0,7.790183735083154,0,59.14,52.5,51.24,58.84,6.666666666666667,1,1,0,0,9,2,4,1,1763,170705.170802325,147815.8472590962,181765.0352957647,67875.68826273983,3809.357562373418 -16020,19767,36045,36046,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.957064783067207,9.037545399371302,0,6,4,29.09386673329548,0,3,3,2019,8,2,30,60,1,2,0,32.87199793999307,32.87199793999307,0,0,0,0,0,0,0,0,0,0,43.16,32.77,49.86,55.31,8.333333333333334,1,1,0,0,7,11,5,1,668.5,1480890.618490631,138242.2189797293,253401.7282299107,0,4159.949050470435 -16020,19767,36046,36045,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.998728743581351,8.037520147664171,0,6,-4,-5.048461881117272,0,3,3,2019,9,0,36,32,1,0,0,8.921299928597167,8.921299928597167,0,0,0,0,0,0,0,0,0,0,49.86,55.31,43.16,32.77,8.333333333333334,1,1,0,0,7,11,5,1,668.5,1480890.618490631,138242.2189797293,253401.7282299107,0,4159.949050470435 -16021,19768,36047,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.49693678156453,8.278589124419881,0,0,0,-1047.372001286515,0,3,3,2019,7,0,47,35,1,0,0,10.84295297150428,10.84295297150428,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,1277,268260.0712666364,171583.4118288907,98748.33214845831,-20730.68429272991,1974.390378453785 -16022,19769,36048,36049,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.74624760258258,9.012319083764284,0,6,-4,68.66944371202997,0,2,2,2019,4,0,38,38,1,0,0,22.3376400133241,22.3376400133241,0,0,0,0,0,1,1,0,0,0,53.44,55.06,42.12,55.21,8.333333333333334,1,1,0,0,12,13,5,1,1570,446260.6067477056,192127.0420999734,329677.6618085036,129534.3511990838,4235.872856952703 -16022,19769,36049,36048,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,8.144496609630604,8.298200256979667,0,6,4,113.5193890743233,0,-9,-9,2019,8,0,48,23,1,0,0,8.25349882791016,8.25349882791016,0,0,0,0,0,1,1,0,1.242126540053816,0,42.12,55.21,53.44,55.06,8.333333333333334,1,1,0,0,6,13,5,1,1570,446260.6067477056,192127.0420999734,329677.6618085036,129534.3511990838,4235.872856952703 -16022,19769,36050,-9,36048,36049,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.6843530560325,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,1570,446260.6067477056,192127.0420999734,329677.6618085036,129534.3511990838,4235.872856952703 -16022,19769,36051,-9,36048,36049,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.294187515895,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,1570,446260.6067477056,192127.0420999734,329677.6618085036,129534.3511990838,4235.872856952703 -16023,19770,36052,36053,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.935700973125859,7.818599398814729,56,-1,43.54580163777794,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3745021722959,7.76416496376887,57.9,51.84,52,46,8.333333333333334,1,1,0,0,0,4,3,1,485,662557.5334969637,537433.3461831508,185999.8246774749,0,2686.328103397571 -16023,19770,36053,36052,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,56,1,-9.486500752047357,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.230348480920793,0,52,46,57.9,51.84,8,1,1,0,0,0,4,3,1,485,662557.5334969637,537433.3461831508,185999.8246774749,0,2686.328103397571 -16024,19771,36054,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.688284108160685,7.300221536003416,0,0,-956.7102466218034,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,.7916917978726996,2,0,0,0,5.743973706637314,7.316048755714967,46.08,57.2,-9,-9,6.666666666666667,3,4,0,0,10,8,3,1,190,781582.008623397,218473.6549494717,435934.8300767023,0,566.59919555631 -16025,19772,36055,36057,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,7.913806471972627,8.088937226967126,0,9,6,-50.2441649517139,0,2,1,2019,12,0,40,40,1,0,0,8.202173737757537,8.202173737757537,0,0,0,0,0,1,1,0,0,0,40.65,57.36,44.19,56.73,3.333333333333333,2,3,0,1,10,8,3,1,335.5,42214.94315309974,0,0,0,2340.889213698487 -16025,19772,36056,-9,36057,36055,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.113664226667,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,335.5,42214.94315309974,0,0,0,2340.889213698487 -16025,19772,36057,36055,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,7.367515429986288,7.314625582583663,0,19,-6,-137.70028251728,0,2,2,2019,12,0,20,20,1,0,0,6.38265613850908,6.38265613850908,0,0,0,0,0,1,1,0,0,0,44.19,56.73,40.65,57.36,8.333333333333334,2,3,0,1,11,8,3,1,335.5,42214.94315309974,0,0,0,2340.889213698487 -16025,19772,36058,-9,36057,36055,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.5143841221343,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,335.5,42214.94315309974,0,0,0,2340.889213698487 -16026,19773,36059,36060,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.549462378707423,8.498842434675664,0,35,-1,22.9002392697213,0,3,3,2019,5,0,30,30,1,0,0,16.21498623731625,16.21498623731625,0,0,0,0,7,0,0,0,5.618195158684506,0,59.29,49.68,51.14,60.45,10,1,1,0,0,11,12,5,1,1083.5,906532.5112199928,592686.6646307815,345602.0615262891,87491.54200421777,4755.456777466798 -16026,19773,36060,36059,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.089015000806775,9.198303214404376,0,9,1,51.7025838589679,0,-9,-9,2019,10,0,46,85,1,0,0,23.3439482959656,23.3439482959656,0,0,0,0,0,0,0,0,4.010138910060769,0,51.14,60.45,59.29,49.68,8.333333333333334,1,1,0,0,6,12,5,1,1083.5,906532.5112199928,592686.6646307815,345602.0615262891,87491.54200421777,4755.456777466798 -16027,19774,36061,-9,36065,36064,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-933.875145147023,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16027,19774,36062,-9,36065,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-964.1052761765239,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16027,19774,36063,-9,36065,36064,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.189395152552,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16027,19774,36064,36065,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.441767711230361,7.557777168767372,0,3,2,-27.78977937154997,0,-9,-9,2019,9,0,40,40,1,0,0,5.23874029446592,5.23874029446592,0,0,0,0,42,1,1,0,0,0,49.39,52.76,48.7,56.22,6.666666666666667,1,1,0,0,5,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16027,19774,36065,36064,-9,-9,1,0,34,0,4,0,2,2,-9,1,3,6.047890643521859,6.206199847730364,0,3,-2,-22.00030336734767,0,2,2,2019,15,3,10,10,1,3,0,6.532830556837436,6.532830556837436,0,0,0,0,74.5,1,1,0,0,0,48.7,56.22,49.39,52.76,5,1,1,0,0,2,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16027,19774,36066,-9,36065,-9,1,0,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1099.222359540154,-9,2,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,4,2,0,1025,29389.0634114516,38891.42316253774,0,0,2721.102825976776 -16028,19775,36067,36068,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,7.763335150770621,7.832385685256223,9,1,-45.85020559398146,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,7.923912126582896,48.73,30.66,57.06,57.76,8.333333333333334,1,1,0,0,2,12,3,1,2036,957110.1104193071,915908.6052584986,0,0,3604.284974540927 -16028,19775,36068,36067,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.434886114295091,7.297604262915406,0,9,-1,26.5369636833222,0,2,2,2019,7,0,18,40,1,0,0,9.404152656501605,9.404152656501605,0,0,0,0,2,1,1,0,0,0,57.06,57.76,48.73,30.66,8.333333333333334,1,1,0,0,9,12,3,1,2036,957110.1104193071,915908.6052584986,0,0,3604.284974540927 -16028,19776,36069,-9,36068,36067,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-959.9684222242308,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,2,1,1,0,0,0,38,55.72,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,161,-57300.57181271237,0,0,0,-512.625841775902 -16029,19777,36070,36071,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.23520225127398,7.100549834024075,10,-7,17.1032595517198,0,1,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.030325289971588,6.753314097402557,47.98,48.03,59.46,46.99,8.333333333333334,1,1,0,0,9,7,3,1,594.5,1766808.353595539,880492.4053297146,431784.7308374778,0,2295.665998988382 -16029,19777,36071,36070,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.61811814025447,7.712212447199013,10,7,-13.36530424706995,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.876143283025737,7.61367657017764,59.46,46.99,47.98,48.03,10,1,1,0,0,0,7,3,1,594.5,1766808.353595539,880492.4053297146,431784.7308374778,0,2295.665998988382 -16030,19778,36072,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.087350805409297,8.331199289784195,0,0,0,-1007.785597928751,0,2,1,2019,11,2,72,35,1,2,0,6.978152405960167,6.978152405960167,0,0,0,0,0,0,0,0,7.540071935828284,0,41.23,59.35,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,971,897087.9217212264,439466.6569916271,595920.5096445675,119097.6744378488,2502.171618102551 -16031,19779,36073,-9,36076,36077,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.914644754645,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16031,19779,36074,-9,36076,36077,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-783.6858504670817,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16031,19779,36075,-9,36076,36077,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-959.299488205036,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16031,19779,36076,36077,-9,-9,1,0,45,0,4,0,2,2,-9,0,3,7.386446941512027,7.357032684189505,0,7,0,-69.62038817021431,0,2,2,2019,7,0,30,30,1,0,0,6.641684261342342,6.641684261342342,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.1,59.11,8.333333333333334,1,1,0,0,7,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16031,19779,36077,36076,-9,-9,1,1,45,0,4,0,1,1,-9,0,5,8.839187152603538,8.993916949826222,0,18,0,72.26300444435014,0,2,2,2019,11,1,50,50,1,1,0,16.31345629926561,16.31345629926561,0,0,0,0,0,1,1,0,3.333608642030564,0,54.1,59.11,60.29,52.11,8.333333333333334,1,1,0,0,9,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16031,19779,36078,-9,36076,36077,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-923.7480929539254,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,943,309376.8470166064,144737.4905958702,302508.5886357116,180390.6642972343,3533.467763338693 -16032,19780,36079,-9,36080,36081,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.6682636104317,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,1,949.6666666666666,-58388.90885090829,0,0,0,1032.430087896593 -16032,19780,36080,36081,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,0,0,0,11,-5,24.60426271070629,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.66,38.05,48,51,5,4,5,0,0,0,6,2,1,949.6666666666666,-58388.90885090829,0,0,0,1032.430087896593 -16032,19780,36081,36080,-9,-9,1,1,45,0,3,0,3,3,-9,0,3,7.579545909318362,7.26312017236116,0,22,5,55.6744602098847,0,3,3,2019,12,0,55,40,1,0,0,3.343366973853504,3.343366973853504,0,0,0,0,0,1,1,0,1.223585446649425,0,48,51,43.66,38.05,6.666666666666667,1,1,0,0,10,6,2,1,949.6666666666666,-58388.90885090829,0,0,0,1032.430087896593 -16033,19781,36082,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,4.872015964619596,4.983022635197615,0,0,-1042.260155347022,0,3,3,2019,8,0,0,30,4,0,0,0,0,1,0,0,0,0,1,1,0,4.642382516772722,5.17832785710748,50.43,35.29,-9,-9,8.333333333333334,1,1,0,0,6,2,2,0,108,51400.70065896998,-46429.77096407082,0,0,307.7146122127187 -16034,19782,36083,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.525249963162119,8.487025487532129,0,0,0,-870.3702536934578,0,3,3,2019,6,0,40,40,1,0,0,12.90640940229044,12.90640940229044,0,0,0,0,0,0,0,0,3.634094188727079,0,62.49,55.09,-9,-9,10,1,1,0,0,10,12,5,0,1213,283723.7712715934,0,204155.2455487967,24274.25371780467,2032.446205403142 -16035,19783,36084,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.490180371780358,8.899211164244258,0,0,0,-1011.513222855843,-9,2,1,2019,8,0,40,0,1,0,0,19.00859558826775,19.00859558826775,0,0,0,0,0,0,0,0,0,0,46.44,59.62,-9,-9,8.333333333333334,2,3,0,0,4,8,5,0,844,93461.48630482299,693.3846912385673,0,0,1818.029826455676 -16036,19784,36085,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-1059.440219550114,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.799981666838408,0,54.1,59.11,-9,-9,10,1,1,0,0,4,11,1,0,578,71980.09412095408,0,0,0,73.53249247268428 -16037,19785,36086,36089,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.965184526476735,9.157925025436791,0,8,5,80.90387145984828,0,2,2,2019,7,0,45,45,1,0,0,24.22851489591503,24.22851489591503,0,0,0,0,0,1,1,0,3.969037106748346,0,44.7,53.68,48,56,5,1,1,0,0,9,2,5,1,282.5,687336.4181871766,440344.3153364134,258097.0684801069,141960.530328543,3315.134512037761 -16037,19785,36087,-9,36089,36086,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.502110109396,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,5,1,282.5,687336.4181871766,440344.3153364134,258097.0684801069,141960.530328543,3315.134512037761 -16037,19785,36088,-9,36089,36086,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.1297994740783,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,282.5,687336.4181871766,440344.3153364134,258097.0684801069,141960.530328543,3315.134512037761 -16037,19785,36089,36086,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.459673040509047,7.585656415787737,0,8,-5,44.57990847022738,-9,-9,-9,2019,11,0,65,0,1,2,0,4.249757281361325,4.249757281361325,0,0,0,0,0,1,1,0,0,0,48,56,44.7,53.68,7,1,1,0,0,1,2,5,1,282.5,687336.4181871766,440344.3153364134,258097.0684801069,141960.530328543,3315.134512037761 -16038,19786,36090,-9,36095,36094,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.609540598694,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16038,19786,36091,-9,36095,36094,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.663508157789,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16038,19786,36092,-9,36095,36094,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-928.1665163622131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16038,19786,36093,-9,36095,36094,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-852.2727665404175,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16038,19786,36094,36095,-9,-9,1,1,33,0,4,0,2,2,-9,0,4,7.808099090545528,7.81831936644915,0,7,-3,94.63711457729845,0,-9,-9,2019,10,0,40,10,1,1,0,6.341204012602688,6.341204012602688,0,0,0,0,0,1,1,0,0,0,50,57,55.2,49.4,7,2,3,0,0,1,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16038,19786,36095,36094,-9,-9,1,0,36,0,4,0,2,2,-9,0,2,0,0,0,18,3,-22.72916432731124,0,3,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,50,57,10,2,3,0,0,0,7,2,1,1644.166666666667,-60047.92797594179,0,0,0,1483.136261959635 -16039,19787,36096,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1046.178955193514,0,3,-9,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.3,20.24,-9,-9,1.666666666666667,4,2,0,1,0,9,1,0,317,130504.1062700751,0,0,0,2503.80616429937 -16040,19788,36097,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-925.3129585736488,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,582,25057.10941249386,0,0,0,166.0171843744994 -16041,19789,36098,36099,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,33,10,0,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,7.759353335185774,0,56.92,49.39,57.06,57.76,10,1,1,0,0,0,2,1,1,528.5,316095.8827286402,41205.20349231269,308598.1164837752,0,1407.757327772741 -16041,19789,36099,36098,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,7,-10,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,56.92,49.39,8.333333333333334,1,1,0,0,9,2,1,1,528.5,316095.8827286402,41205.20349231269,308598.1164837752,0,1407.757327772741 -16041,19790,36100,-9,36099,36098,1,0,28,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1033.340107262489,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.4,51.17,-9,-9,10,1,1,0,0,0,2,1,1,372,149290.8400368574,0,0,0,289.6716133003733 -16042,19791,36101,-9,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,6.651066046193131,6.286865372453722,0,0,0,-909.5913232005059,0,3,2,2019,9,0,37,37,1,0,0,2.500436378736048,2.500436378736048,0,0,0,0,0,0,0,0,4.924605306109872,0,62.39,56.71,-9,-9,10,1,1,0,0,6,9,2,1,402.5,495775.6477599013,9491.017530142875,354276.2665944171,0,449.0302450896572 -16042,19791,36102,-9,-9,36101,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-933.0025585924818,-9,-9,1,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,32.28,64.75,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,402.5,495775.6477599013,9491.017530142875,354276.2665944171,0,449.0302450896572 -16043,19792,36103,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,5.445438119688411,5.571955082963555,0,0,-1077.35390362841,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.831314150173455,5.824878434499549,52.82,46.09,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,662,138593.5123254015,112218.0120866348,21007.15519394831,0,862.3624440536913 -16044,19793,36104,36105,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,0,0,0,10,-17,0,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.04,53.42,50,47,6.666666666666667,1,1,0,1,0,13,1,0,299,-25618.56104549526,0,0,0,960.1696973525538 -16044,19793,36105,36104,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,17,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,14.01523170282869,47.28177897524345,140.1311371031956,0,1,1,0,0,0,50,47,54.04,53.42,7,1,1,0,1,0,13,1,0,299,-25618.56104549526,0,0,0,960.1696973525538 -16045,19794,36106,-9,-9,36108,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1000.716777541229,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,763.6666666666666,-45586.64883297878,46259.91342610819,0,0,3225.060559553315 -16045,19794,36107,-9,-9,36108,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.021992589633,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,763.6666666666666,-45586.64883297878,46259.91342610819,0,0,3225.060559553315 -16045,19794,36108,-9,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.000731422650656,9.093290894690213,0,0,0,-944.6877513152592,0,3,3,2019,6,0,40,45,1,0,0,24.20212467080835,24.20212467080835,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,763.6666666666666,-45586.64883297878,46259.91342610819,0,0,3225.060559553315 -16046,19795,36109,36110,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.25174520063813,8.273683996958511,0,8,-3,47.50703356166154,0,2,2,2019,12,0,37,39,1,0,0,9.747839667237985,9.747839667237985,0,0,0,0,0,0,0,0,4.541611917922804,0,39.88,47.82,46.61,56.93,5,1,1,0,0,9,6,5,1,214.5,1190473.65744762,604696.6339130263,366884.9852641312,72872.77739052898,3765.633268415776 -16046,19795,36110,36109,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.67539436719783,8.625446000131904,0,8,3,-141.8271936741913,0,3,3,2019,12,0,39,39,1,0,0,15.81207999878178,15.81207999878178,0,0,0,0,0,0,0,0,0,0,46.61,56.93,39.88,47.82,6.666666666666667,1,1,0,0,9,6,5,1,214.5,1190473.65744762,604696.6339130263,366884.9852641312,72872.77739052898,3765.633268415776 -16047,19796,36111,36112,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.159191799191115,4.992221281062961,20,1,65.26186314921949,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.483465143092703,57.16,56.15,65.63,29.46,8.333333333333334,1,1,0,0,5,9,2,1,1462.5,933394.3366127224,262698.002480037,472621.7562136668,0,1145.497830002587 -16047,19796,36112,36111,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.895695303983165,6.840655555052661,20,-1,46.38071930747802,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.781042932351583,6.975111865031941,65.63,29.46,57.16,56.15,8.333333333333334,1,1,0,0,5,9,2,1,1462.5,933394.3366127224,262698.002480037,472621.7562136668,0,1145.497830002587 -16048,19797,36113,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.628875951562677,8.703948374585947,0,0,-975.9507665461504,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,1.30402091747562,0,1,1,0,6.751489625976133,8.510223143129284,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,374,1020468.79494941,0,537230.6729583538,0,2934.320318740341 -16049,19798,36114,36115,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.248823654905605,8.015894898316345,0,1,16,-110.6105776118615,0,2,2,2019,6,0,45,38,1,0,0,7.616603494139047,7.616603494139047,0,0,0,0,0,0,0,0,0,0,57.33,53.46,39.1,57.79,8.333333333333334,1,1,0,0,9,4,4,0,724,499254.7069964661,524277.404627025,134662.2071450326,43530.82575665472,2748.118047184537 -16049,19798,36115,36114,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.39348454357621,7.29750133283235,0,1,-16,71.52482983213515,-9,-9,-9,2019,14,2,40,0,1,2,0,4.956507041782521,4.956507041782521,0,0,0,0,0,0,0,0,0,0,39.1,57.79,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,0,724,499254.7069964661,524277.404627025,134662.2071450326,43530.82575665472,2748.118047184537 -16050,19799,36116,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1033.935182308666,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,16.03,32.35,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,544,90013.46934688216,0,0,0,906.368146226562 -16051,19800,36117,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-962.3580424123318,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,11,1,1,930,-72197.01477842666,0,43220.36826279225,0,193.4331522463438 -16052,19801,36118,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1072.724471484382,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,30.2587479075972,0,279.3462292433773,0,1,1,0,0,0,46.18,30.19,-9,-9,0,1,1,0,0,0,9,1,0,367,80414.40661922203,0,0,0,1551.072691937193 -16053,19802,36119,-9,36120,36122,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4552710405043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,928.75,8580.257553483405,133715.0089316447,0,0,3171.715942042383 -16053,19802,36120,36122,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,7.31525808882803,6.928551899987973,0,7,-2,-76.21927016492472,0,2,-9,2019,19,7,30,18,1,7,0,5.785496458527558,5.785496458527558,0,0,0,0,0,1,1,0,0,0,33.21,55.18,44.45,48.37,5,1,1,0,0,4,9,4,0,928.75,8580.257553483405,133715.0089316447,0,0,3171.715942042383 -16053,19802,36121,-9,36120,36122,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.786664870148,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,928.75,8580.257553483405,133715.0089316447,0,0,3171.715942042383 -16053,19802,36122,36120,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.548117384254054,8.587943650017603,0,7,2,-52.78485310308063,0,-9,-9,2019,12,1,50,50,1,1,0,10.45228356884341,10.45228356884341,0,0,0,0,0,1,1,0,0,0,44.45,48.37,33.21,55.18,5,1,1,0,0,8,9,4,0,928.75,8580.257553483405,133715.0089316447,0,0,3171.715942042383 -16054,19803,36123,36124,-9,-9,1,1,66,0,0,0,3,3,-9,1,3,5.284920005262941,7.196362241770079,7.359364502867376,39,-1,-34.07999865772905,-9,3,3,2019,6,0,40,0,1,0,0,.6585312167942623,.6585312167942623,0,0,0,0,0,1,1,0,7.48553068397043,7.190977084337574,65.38,41.59,50,47,8.333333333333334,1,1,0,0,10,10,2,0,910,370476.8579332362,80409.27597268167,135040.0313833112,0,1796.169029380434 -16054,19803,36124,36123,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,39,1,-26.38582406590788,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.485217882104542,0,50,47,65.38,41.59,7,1,1,0,0,0,10,2,0,910,370476.8579332362,80409.27597268167,135040.0313833112,0,1796.169029380434 -16055,19804,36125,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-931.6038161793922,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.36,26.6,-9,-9,5,1,1,0,0,0,9,1,1,353,-97256.98620362129,0,0,0,-139.8634807124691 -16056,19805,36126,36127,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.868824254296859,9.842996416611047,0,9,-3,161.4419477481875,0,2,3,2019,17,5,50,50,1,5,0,30.66516905138726,30.66516905138726,0,0,0,0,0,0,0,0,0,0,45.27,52.06,62.66,52.4,6.666666666666667,1,1,0,0,10,9,5,1,538.5,3720999.373495075,251770.3611616673,2775839.986561521,640558.1085461003,6620.139398777525 -16056,19805,36127,36126,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.817216127515011,7.7905833207932,0,9,3,76.30180857015011,0,3,3,2019,12,0,27,30,1,0,0,8.979654911425971,8.979654911425971,0,0,0,0,0,0,0,0,4.220399814632765,0,62.66,52.4,45.27,52.06,8.333333333333334,1,1,0,0,10,9,5,1,538.5,3720999.373495075,251770.3611616673,2775839.986561521,640558.1085461003,6620.139398777525 -16057,19806,36128,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.143582128314776,8.181381786270521,0,0,0,-908.7852215712102,0,2,2,2019,8,0,40,40,1,0,0,8.747641556380508,8.747641556380508,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,1,4,1,363,-45564.56231338127,-20236.7543373702,0,0,1499.900128298891 -16058,19807,36129,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,8.856442581766814,8.586691538143262,0,0,0,-908.0289617189915,0,2,2,2019,6,0,35,35,1,0,0,22.96349106525412,22.96349106525412,0,0,0,0,0,1,1,0,7.220022097067779,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,889,54321.29148637151,189194.9470214255,0,0,4719.163532909122 -16059,19808,36130,-9,36131,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.607670690534,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,711,18674.93134012073,0,0,0,2755.51590712434 -16059,19808,36131,-9,-9,-9,1,0,28,0,3,0,3,3,-9,1,2,0,0,0,0,0,-1135.853463294825,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,29.72,36.53,-9,-9,0,1,1,0,1,0,9,1,0,711,18674.93134012073,0,0,0,2755.51590712434 -16059,19808,36132,-9,36131,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.471044049159,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,711,18674.93134012073,0,0,0,2755.51590712434 -16059,19808,36133,-9,36131,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-986.9245888526184,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,1,0,711,18674.93134012073,0,0,0,2755.51590712434 -16060,19809,36134,-9,36135,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1079.210169090097,-9,2,-9,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,50.12,51.13,-9,-9,5,3,4,0,0,0,11,1,0,1142.5,39649.39673982338,0,0,0,959.4463115552962 -16060,19809,36135,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1109.509660636675,0,2,1,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,1,0,0,11,1,0,1142.5,39649.39673982338,0,0,0,959.4463115552962 -16061,19810,36136,36138,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.184496504441572,6.985080242519593,0,8,-2,-137.7844230791134,0,2,1,2019,10,0,13,50,1,0,0,10.0248702879399,10.0248702879399,0,0,0,0,0,0,0,0,4.157647953581425,0,57.16,56.15,54.2,57.49,10,1,1,0,0,8,7,5,1,818.3333333333334,444121.0584627109,487639.6612506334,0,0,5898.725398709023 -16061,19810,36137,-9,36136,36138,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-983.1532451465381,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,818.3333333333334,444121.0584627109,487639.6612506334,0,0,5898.725398709023 -16061,19810,36138,36136,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.669628649425373,9.993351306493242,0,8,2,63.59491299500937,0,2,2,2019,4,0,60,54,1,0,0,29.16299566669477,29.16299566669477,0,0,0,0,0,0,0,0,3.36855671275334,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,818.3333333333334,444121.0584627109,487639.6612506334,0,0,5898.725398709023 -16062,19811,36139,36142,-9,-9,1,1,37,1,3,0,1,1,-9,0,4,9.440899479485546,9.399279658890809,0,15,0,-65.73112940292768,0,2,2,2019,2,0,46,42,1,0,0,36.06395355017543,36.06395355017543,0,0,0,0,0,1,1,0,7.723960785824421,0,55.79,52.62,42.22,56.11,8.333333333333334,2,3,0,0,7,8,5,1,692.6,1318170.999197601,252534.8791783063,830138.2495371666,268621.7665467814,7137.062267715754 -16062,19811,36140,-9,36142,36139,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.6363963508302,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,692.6,1318170.999197601,252534.8791783063,830138.2495371666,268621.7665467814,7137.062267715754 -16062,19811,36141,-9,36142,36139,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.6823433191563,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,692.6,1318170.999197601,252534.8791783063,830138.2495371666,268621.7665467814,7137.062267715754 -16062,19811,36142,36139,-9,-9,1,0,37,1,3,0,1,1,-9,0,3,7.289601463988669,7.208991774086945,0,15,0,26.45778178778522,0,2,2,2019,9,1,13,16,1,1,0,16.57936451619322,16.57936451619322,0,0,0,0,0,1,1,0,0,0,42.22,56.11,55.79,52.62,5,2,3,0,0,5,8,5,1,692.6,1318170.999197601,252534.8791783063,830138.2495371666,268621.7665467814,7137.062267715754 -16062,19811,36143,-9,36142,36139,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.2193989662917,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,692.6,1318170.999197601,252534.8791783063,830138.2495371666,268621.7665467814,7137.062267715754 -16063,19812,36144,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.771823407490975,6.738486180269083,0,0,-940.1719078566147,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.038993784052988,6.560576955841359,45.49,50.81,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,456,250037.3217125566,71445.51169913067,0,0,1125.78356991036 -16064,19813,36145,-9,-9,-9,1,0,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-1037.995481339669,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,2,0,591,-23089.79989996309,0,0,0,492.8588532131063 -16065,19814,36146,36147,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.361512373453124,8.783607901633495,7.304547673923572,7,1,-5.68122193349113,0,2,3,2019,9,0,50,13,1,0,0,8.574946454140349,8.574946454140349,0,0,0,0,0,0,0,0,2.257709333033038,7.109878750358485,55.96,49.93,55.79,52.62,8.333333333333334,1,1,0,0,8,11,5,0,1701.5,811619.6652275142,288883.8421338301,344650.0104797788,27883.80312688643,4202.865235156309 -16065,19814,36147,36146,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.267216915959375,8.225991962997858,0,7,-1,-72.82128366841218,0,1,2,2019,7,0,30,38,1,0,0,14.53159215341386,14.53159215341386,0,0,0,0,0,0,0,0,0,0,55.79,52.62,55.96,49.93,8.333333333333334,1,1,0,0,8,11,5,0,1701.5,811619.6652275142,288883.8421338301,344650.0104797788,27883.80312688643,4202.865235156309 -16066,19815,36148,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1064.309749346683,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.76,51.4,-9,-9,10,1,1,0,0,0,5,1,0,815,0,0,0,0,1316.357698873339 -16067,19816,36149,-9,36153,36150,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.6054122316075,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,500.6,-78959.88184366573,13956.27479633325,0,0,1792.533751677874 -16067,19816,36150,36153,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,0,0,0,2,0,-4.859164791079744,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,41.17,59.31,8.333333333333334,1,1,0,0,0,13,2,0,500.6,-78959.88184366573,13956.27479633325,0,0,1792.533751677874 -16067,19816,36151,-9,36153,36150,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.770743817838,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,500.6,-78959.88184366573,13956.27479633325,0,0,1792.533751677874 -16067,19816,36152,-9,36153,36150,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.6894496122281,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,2,0,500.6,-78959.88184366573,13956.27479633325,0,0,1792.533751677874 -16067,19816,36153,36150,-9,-9,1,0,33,1,3,0,3,3,-9,0,4,7.178776501553226,7.080948707365948,0,2,0,-87.57090465427814,0,3,3,2019,8,0,24,16,1,0,0,8.890886146657232,8.890886146657232,0,0,0,0,0,1,1,0,0,0,41.17,59.31,54.96,53.17,10,1,1,0,0,3,13,2,0,500.6,-78959.88184366573,13956.27479633325,0,0,1792.533751677874 -16068,19817,36154,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-947.6819290149879,0,3,2,2019,28,11,0,0,4,11,0,0,0,1,2.221320608418655,24.05113063221675,17.21371073873074,0,1,1,0,0,0,27.89,18.61,-9,-9,5,1,1,0,0,0,6,1,1,827,-183000.7792846842,0,0,0,1850.935525023475 -16069,19818,36155,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.672497111001696,7.318855980648949,0,0,0,-879.9558441399704,0,-9,-9,2019,13,1,37,30,1,1,0,7.705857629865066,7.705857629865066,0,0,0,0,14.5,1,1,0,0,0,44.77,48,-9,-9,10,1,1,0,0,10,11,3,1,449,51871.56516252663,60292.29423827797,114561.2158168874,66529.2698881814,849.4953365484396 -16070,19819,36156,-9,36158,36157,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-896.2634339308952,-9,1,1,2019,28,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,20.55,56.75,-9,-9,6.666666666666667,1,1,0,0,3,10,2,1,571,-1218.335182951795,0,0,0,0 -16070,19820,36157,36158,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.42546777090697,9.778796832802685,0,8,1,-57.6114135049982,0,-9,-9,2019,7,0,48,48,1,0,0,29.03852727875321,29.03852727875321,0,0,0,0,0,0,0,0,1.932531946724294,0,54.18,49.48,57.74,43.82,8.333333333333334,1,1,0,0,9,10,5,1,861.5,2228711.060502303,1420750.081546648,646551.7088355231,83050.26016502443,6714.029613625238 -16070,19820,36158,36157,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.784987667160864,8.691691763942625,0,8,-1,-89.26890018935229,0,2,2,2019,11,1,80,65,1,1,0,9.561662157860784,9.561662157860784,0,0,0,0,0,0,0,0,2.326355880786687,0,57.74,43.82,54.18,49.48,6.666666666666667,1,1,0,0,8,10,5,1,861.5,2228711.060502303,1420750.081546648,646551.7088355231,83050.26016502443,6714.029613625238 -16071,19821,36159,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.831746820340392,8.660198009189438,0,0,0,-923.1723870358895,0,2,2,2019,11,1,55,45,1,1,0,11.04853159418734,11.04853159418734,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,5,1,1,0,0,9,8,5,0,405,156300.1000128353,83064.30482589004,148356.6243438835,84657.14529548933,2207.696937318733 -16072,19822,36160,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.178267753191144,7.024151195082563,0,0,-963.5996665433972,-9,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.123860270471968,7.210891443860917,52,45,-9,-9,8,1,1,0,0,0,1,2,1,252,384076.1364841513,241253.6885265748,171070.3623060847,0,500.8731000206653 -16073,19823,36161,36162,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.380893658018874,8.06591320061316,0,30,4,48.60443253313541,0,-9,-9,2019,9,0,40,39,1,1,0,12.28108027885473,12.28108027885473,0,0,0,0,2,1,1,0,4.673816122956559,0,53,54,47.63,30.28,7,1,1,0,0,1,1,3,0,952,490841.1491583072,532730.7287771163,0,0,1470.822172403898 -16073,19823,36162,36161,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,28,-4,16.19994366077672,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,47.63,30.28,53,54,1.666666666666667,1,1,0,0,0,1,3,0,952,490841.1491583072,532730.7287771163,0,0,1470.822172403898 -16074,19824,36163,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,9.68267247300124,9.270380862900241,0,0,0,-1064.074844835741,0,1,1,2019,24,11,40,40,1,11,0,47.56819673118743,47.56819673118743,0,0,0,1.235941742630056,2,0,0,0,3.995066022101375,0,26.97,42.16,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,946,2548569.140152507,2237510.516153091,299775.6198899046,230915.3063215321,4907.624990041342 -16075,19825,36164,36165,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.44555384288817,5.201227242096558,55,-3,61.46980170576091,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,7.257665906607108,0,0,1,1,0,9.41160468095522,5.706252232248444,50.54,49.66,57,29.53,8.333333333333334,1,1,0,0,0,2,2,1,464.5,374887.859059331,140529.6903300197,173220.6642870338,0,10222.07868740062 -16075,19825,36165,36164,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.250759098586706,7.035969950194775,55,3,-139.7570392879876,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,23.81416762360856,0,0,1,1,0,4.648979115302668,7.480302720341458,57,29.53,50.54,49.66,6.666666666666667,1,1,0,0,0,2,2,1,464.5,374887.859059331,140529.6903300197,173220.6642870338,0,10222.07868740062 -16076,19826,36166,-9,36168,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.2231680922938,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,955,-67269.4215516939,95978.82378750143,0,0,1927.353595311678 -16076,19826,36167,-9,36168,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.111858376822,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,2,1,955,-67269.4215516939,95978.82378750143,0,0,1927.353595311678 -16076,19826,36168,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,5.786384421944916,7.445176107150921,7.081525386681605,0,0,-1027.66566079363,0,1,2,2019,12,0,20,20,1,0,0,1.65929436122364,1.65929436122364,0,0,0,0,0,1,1,0,7.049239153307391,0,34.69,66.71000000000001,-9,-9,6.666666666666667,1,1,0,0,3,2,2,1,955,-67269.4215516939,95978.82378750143,0,0,1927.353595311678 -16077,19827,36169,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,0,0,-867.7402779101124,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.83544845091692,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1619,179378.916271783,32638.23283867557,0,0,362.8415218706449 -16078,19828,36170,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,6.263516083742104,7.287505121467232,7.384196166807748,0,0,-933.9670784009701,0,3,3,2019,9,1,6,18,1,1,0,8.285281016218985,8.285281016218985,0,0,0,0,0,1,1,0,6.903108743011427,6.581768487118286,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,13,9,3,1,1005,125338.2011087082,86138.51041983452,0,0,1222.346655595165 -16079,19829,36171,36172,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,7.188139567274287,7.316658011505385,0,6,1,-32.5549043247993,0,2,2,2019,11,2,14,20,1,2,0,12.4818212701805,12.4818212701805,0,0,0,0,0,1,1,0,0,0,34.13,61.39,37.76,55.72,8.333333333333334,1,1,0,1,4,10,4,1,304.25,-13756.76928442825,18409.87028010382,121777.5807721071,83456.20474174411,2774.325548259019 -16079,19829,36172,36171,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.548063716852679,8.378911150393078,0,6,-1,-2.651358317147834,0,2,-9,2019,13,2,65,60,1,2,0,11.06690941605526,11.06690941605526,0,0,0,0,0,1,1,0,0,0,37.76,55.72,34.13,61.39,8.333333333333334,1,1,0,0,7,10,4,1,304.25,-13756.76928442825,18409.87028010382,121777.5807721071,83456.20474174411,2774.325548259019 -16079,19829,36173,-9,36171,36172,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.772625060757,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,304.25,-13756.76928442825,18409.87028010382,121777.5807721071,83456.20474174411,2774.325548259019 -16079,19829,36174,-9,36171,36172,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.305540894994,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,304.25,-13756.76928442825,18409.87028010382,121777.5807721071,83456.20474174411,2774.325548259019 -16080,19830,36175,36176,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.335945667503111,7.94885932809815,7.039777186114291,6,5,45.6693900191609,0,3,3,2019,8,1,30,30,1,1,0,7.374848120233514,7.374848120233514,0,0,0,0,0,1,1,0,0,7.075333135902594,50.53,32.12,58.15,52.91,8.333333333333334,1,1,0,0,7,2,5,1,966.5,308989.9480673965,3741.769707545896,248548.1346722538,42050.51650979406,3854.960010451308 -16080,19830,36176,36175,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.80743765908962,8.661482425043431,0,6,-5,1.083099745744782,0,2,2,2019,5,0,48,47,1,0,0,17.86435078797982,17.86435078797982,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50.53,32.12,8.333333333333334,1,1,0,0,6,2,5,1,966.5,308989.9480673965,3741.769707545896,248548.1346722538,42050.51650979406,3854.960010451308 -16081,19831,36177,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,3.651022301877403,3.84384924855991,0,0,-889.5642849607111,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.111134866653701,3.773058021022454,50.78,41.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,623,239340.075355531,188395.6466142409,112216.3478117061,0,1265.172924191311 -16082,19832,36178,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.772100736747341,4.577877743576226,0,0,-1059.528447563689,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.940462495016412,4.797466946720814,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,587,266250.6194406387,-43214.78568991782,74809.77903101353,0,137.792191972964 -16083,19833,36179,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,7.889602869038276,8.211942262290652,0,0,0,-905.4380023270362,-9,3,3,2019,8,0,37,0,1,0,0,9.516704021707152,9.516704021707152,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,3467,972503.6730080928,906595.2635160114,56949.15210106927,7684.267120762601,1347.943378116403 -16083,19834,36180,-9,36179,-9,1,0,25,0,1,0,2,2,-9,0,3,7.284563743467241,7.44989382251062,0,0,0,-1039.65537937058,-9,2,-9,2019,12,0,40,0,1,0,1,4.905848716426382,4.905848716426382,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,5,1,1,0,0,4,5,3,1,348,-69825.85819086309,-43894.57237604731,0,0,56.06120442043755 -16083,19835,36181,-9,36182,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.520528323689,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,1,1324,-133433.0717473258,0,0,0,976.3305335275837 -16083,19835,36182,-9,36179,-9,1,0,22,0,1,0,3,3,-9,1,3,0,0,0,0,0,-905.9751713696116,-9,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,1,1,1,0,0,5,1,1,1324,-133433.0717473258,0,0,0,976.3305335275837 -16084,19836,36183,36184,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.81506496175525,7.787671232373865,0,6,-3,67.91257454759553,0,2,2,2019,8,0,31,32,1,0,0,7.995717983673068,7.995717983673068,0,0,0,0,0,0,0,0,3.594781928947039,0,55.2,49.4,49.41,50.25,8.333333333333334,1,1,0,0,9,10,4,1,242.5,109106.9097034477,89621.41896157237,166504.4732620468,26346.05351300273,2840.720609188519 -16084,19836,36184,36183,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.317099467227589,8.446856678105998,0,6,3,-188.6471713308275,0,3,3,2019,8,0,40,40,1,0,0,11.06100995790615,11.06100995790615,0,0,0,0,0,0,0,0,4.238671446335884,0,49.41,50.25,55.2,49.4,8.333333333333334,1,1,0,0,9,10,4,1,242.5,109106.9097034477,89621.41896157237,166504.4732620468,26346.05351300273,2840.720609188519 -16084,19837,36185,-9,36183,-9,1,1,21,0,0,0,2,2,-9,0,5,8.439151577041603,8.445185753180045,0,0,0,-1033.90359332542,0,2,2,2019,6,0,46,50,1,0,1,12.04368711901224,12.04368711901224,0,0,0,0,0,0,0,0,0,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,456,8114.45295031261,26087.72286670075,86532.45647756604,157062.7674663563,1250.990985544157 -16084,19838,36186,-9,36183,-9,1,0,23,0,0,0,2,2,-9,0,4,8.23873639420391,8.148822717590269,0,0,0,-847.7438180255172,0,2,2,2019,8,0,41,41,1,0,1,9.466681326465515,9.466681326465515,0,0,0,0,0,0,0,0,2.366845887729069,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,866,185927.2223096874,12725.20562078898,131107.8919508808,109709.592447445,1431.200992793099 -16085,19839,36187,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.963789999060973,7.837829864986793,0,0,0,-1066.314234809405,-9,3,2,2019,11,1,37,0,1,1,0,9.251036861984563,9.251036861984563,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,1.666666666666667,1,1,0,0,12,9,4,1,11195,-160051.4470145682,46801.04652051769,0,0,980.0976656252335 -16086,19840,36188,36189,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,46,-1,34.68066709480703,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,8.30373605787554,2,1,1,0,0,0,41.58,52.86,53,47,1.666666666666667,1,1,0,0,8,4,2,0,449.5,161525.4337299939,24429.77990854498,0,0,1504.348809391076 -16086,19840,36189,36188,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.014953023833966,5.042261387733423,46,1,76.14793572047093,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.128051054493982,53,47,41.58,52.86,8,1,1,0,0,0,4,2,0,449.5,161525.4337299939,24429.77990854498,0,0,1504.348809391076 -16087,19841,36190,-9,36193,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.1475538109255,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,1078.75,-351.990690473358,0,0,0,1318.870374170897 -16087,19841,36191,-9,36193,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.166970828734,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,1,0,1078.75,-351.990690473358,0,0,0,1318.870374170897 -16087,19841,36192,-9,36193,-9,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.7941624553274,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,1078.75,-351.990690473358,0,0,0,1318.870374170897 -16087,19841,36193,-9,-9,-9,1,0,41,1,3,0,2,2,-9,1,3,0,0,0,0,0,-1063.454674456851,-9,1,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.13,50.73,-9,-9,8.333333333333334,1,1,0,0,1,1,1,0,1078.75,-351.990690473358,0,0,0,1318.870374170897 -16087,19842,36194,-9,36193,-9,1,1,18,1,3,0,2,2,-9,0,3,0,0,0,0,0,-930.8728928790454,-9,2,-9,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,30,-240241.0359976173,0,0,0,0 -16088,19843,36195,36196,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.384373747636547,8.324603357849057,0,3,-5,46.58992465712871,0,2,1,2019,12,3,42,39,1,3,0,12.12442727564894,12.12442727564894,0,0,0,0,0,0,0,0,0,0,54.1,59.11,47.44,56.39,8.333333333333334,4,2,0,0,6,2,5,1,441,332285.4321687957,66804.24347144077,133432.1210795672,0,3756.105309434321 -16088,19843,36196,36195,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.811040329823172,8.809831461916714,0,3,5,83.92618294538093,0,-9,-9,2019,12,1,60,45,1,1,0,11.077121127067,11.077121127067,0,0,0,0,0,0,0,0,0,0,47.44,56.39,54.1,59.11,6.666666666666667,1,1,0,0,2,2,5,1,441,332285.4321687957,66804.24347144077,133432.1210795672,0,3756.105309434321 -16089,19844,36197,36199,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,8.898611599055428,8.945929311695846,6.657449450606654,2,-1,-32.64966972299693,0,-9,-9,2019,11,1,57,57,1,1,0,10.94620377418037,10.94620377418037,0,0,0,0,0,1,1,0,4.265632348230959,7.206461165234548,45.22,63.14,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,668.6666666666666,1618059.387214569,1307886.176409125,332295.9071336419,95290.6783478529,3989.497238499291 -16089,19844,36198,-9,36199,36197,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.4837061371572,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,5,1,668.6666666666666,1618059.387214569,1307886.176409125,332295.9071336419,95290.6783478529,3989.497238499291 -16089,19844,36199,36197,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,7.984005170550659,7.915171653819183,5.984771526185939,2,1,112.2739198977438,0,3,2,2019,7,0,28,28,1,0,0,12.65080098617478,12.65080098617478,0,0,0,0,0,1,1,0,6.689199363946317,0,57.06,57.76,45.22,63.14,10,1,1,0,0,6,4,5,1,668.6666666666666,1618059.387214569,1307886.176409125,332295.9071336419,95290.6783478529,3989.497238499291 -16089,19845,36200,-9,36199,36197,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.40882833262,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,4,1,1,1079,-130386.391776434,0,0,0,0 -16090,19846,36201,36202,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,3.064979422135544,2.857946483479129,35,-4,-56.03250650459227,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,27,1,1,0,0,2.946822199751127,38.42,36.93,54.62,26.74,3.333333333333333,1,1,0,0,8,10,2,1,638.5,493967.6196744589,188351.9246251574,307442.7617356422,0,2173.485812048557 -16090,19846,36202,36201,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.512924169875212,7.440788405620453,7,4,3.069727038674157,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,2.667290673913257,7.441827613224619,54.62,26.74,38.42,36.93,8.333333333333334,1,1,0,0,0,10,2,1,638.5,493967.6196744589,188351.9246251574,307442.7617356422,0,2173.485812048557 -16091,19847,36203,36204,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-33.60738865022282,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.143041717439265,0,62.56,45.64,57.16,56.15,10,1,1,0,0,0,2,3,1,1397,2435574.966018143,924549.9066724931,510880.0728634115,0,2796.955562746864 -16091,19847,36204,36203,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.002034812786082,7.670199241402053,10,2,-.1683662041099234,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.716403079598726,7.902481307595052,57.16,56.15,62.56,45.64,8.333333333333334,1,1,0,0,0,2,3,1,1397,2435574.966018143,924549.9066724931,510880.0728634115,0,2796.955562746864 -16092,19848,36205,36206,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.322596365862689,6.840524872545142,50,0,56.00409786849836,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.675495570501479,6.32027976911592,56.99,21.83,54.85,12.75,3.333333333333333,1,1,0,0,6,2,2,1,539.5,444813.4911505688,294571.690836645,132178.6196563149,0,1882.926892781907 -16092,19848,36206,36205,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,50,0,-94.51134557607469,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.422579322911439,0,54.85,12.75,56.99,21.83,8.333333333333334,1,1,0,0,0,2,2,1,539.5,444813.4911505688,294571.690836645,132178.6196563149,0,1882.926892781907 -16093,19849,36207,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1034.212697925734,0,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.78,33.04,-9,-9,3.333333333333333,1,1,1,0,0,8,1,0,1115,0,0,0,0,43.10383942689347 -16094,19850,36208,36209,-9,-9,1,1,52,0,0,0,2,2,-9,1,4,0,0,0,30,-7,-20.80420235410266,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,47.51,39.22,8,1,1,0,0,0,13,3,1,708,254968.145633472,125878.0440006477,221812.5926323582,125652.0765089449,1785.826519683992 -16094,19850,36209,36208,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.758927801803802,7.494167132761479,0,30,7,125.6436658427406,0,3,3,2019,6,0,30,30,1,0,0,6.915030554926295,6.915030554926295,0,0,0,0,96,1,1,0,0,0,47.51,39.22,52,55,8.333333333333334,1,1,0,0,11,13,3,1,708,254968.145633472,125878.0440006477,221812.5926323582,125652.0765089449,1785.826519683992 -16094,19851,36210,-9,36209,36208,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-948.9874576176379,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,13,1,1,134,-88872.82196268465,0,0,0,0 -16095,19852,36211,-9,36213,-9,1,1,37,0,0,0,1,1,-9,0,4,8.389396741077686,8.280449484629234,0,0,0,-999.0792419495234,0,3,-9,2019,11,0,39,-9,1,0,0,10.77998316867329,10.77998316867329,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,225,147838.7284397403,82703.89686704967,0,0,2267.496975131894 -16095,19853,36212,-9,36213,-9,1,0,41,0,0,0,2,2,-9,0,4,8.69036357051962,8.555636939362726,0,0,0,-1104.757676091318,0,3,-9,2019,11,0,38,38,1,1,0,18.85714905663857,18.85714905663857,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,4,5,1,178,-136252.5136460033,15932.73862262472,141959.3799112979,53545.19986176922,2406.391885214754 -16095,19854,36213,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.8293057495648,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,1,0,120.6422548361811,0,0,1,1,0,0,0,21.31,31.29,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,289,34578.40053258823,0,165387.1543119496,0,1158.203663136083 -16096,19855,36214,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,8.267673124400115,7.988324052944879,6.793714469060312,0,0,-887.8586458141283,0,2,2,2019,19,7,32,34,1,7,0,12.39166136049949,12.39166136049949,0,0,0,0,0,1,1,0,6.809259178366347,0,44.84,26.44,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,458,18871.9976354194,35054.4174519103,32832.73261764339,81444.96352849764,2951.266730467388 -16096,19856,36215,-9,36214,-9,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1050.062428628282,1,2,1,2019,10,0,0,24,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,4,5,0,0,5,2,1,1,156,173479.2386759964,0,0,0,0 -16097,19857,36216,-9,-9,-9,1,0,63,0,1,0,2,2,-9,1,2,7.674460118467382,7.551686389050415,0,0,0,-1037.352253468811,0,3,3,2019,8,0,24,20,1,0,0,8.199425098128305,8.199425098128305,0,0,0,0,0,1,0,1,0,0,60.53,18.53,-9,-9,8.333333333333334,4,2,0,1,11,8,3,0,287,316037.2709259251,390423.4714690916,0,0,1504.169855255034 -16097,19858,36217,-9,36216,-9,1,0,27,0,1,0,2,2,-9,0,4,6.440007883934723,6.450750495827621,0,0,0,-1076.33545186806,0,2,-9,2019,15,4,16,16,1,4,1,4.156702436591774,4.156702436591774,0,0,0,0,0,1,0,1,0,0,45.46,57.33,-9,-9,5,2,3,0,0,7,8,2,0,369,0,0,0,0,758.00965092396 -16097,19858,36218,-9,36217,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.650268709058,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,369,0,0,0,0,758.00965092396 -16098,19859,36219,36220,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.322453668485722,7.702158794441815,0,20,4,34.17463430525997,0,2,2,2019,6,0,20,18,1,0,0,11.74731695089007,11.74731695089007,0,0,0,0,0,0,0,0,7.73496302275804,0,54.2,57.49,46.98,59.35,8.333333333333334,1,1,0,0,2,9,5,1,804,1350810.629167125,608338.1297234384,457199.9992748042,0,5233.787297082205 -16098,19859,36220,36219,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.520902319087767,9.943252340594254,0,20,-4,31.56691959090179,0,2,2,2019,12,0,40,50,1,0,0,32.07584500681924,32.07584500681924,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,804,1350810.629167125,608338.1297234384,457199.9992748042,0,5233.787297082205 -16098,19859,36221,-9,36219,36220,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.90419357889,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,804,1350810.629167125,608338.1297234384,457199.9992748042,0,5233.787297082205 -16099,19860,36222,36223,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.964203301409653,8.02744812114962,0,2,-1,-22.99193596903313,-9,-9,-9,2019,7,0,25,0,1,0,0,12.37258292494909,12.37258292494909,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,11,9,5,1,942.5,658428.4981483151,113845.8401232477,571542.1236059391,88139.28905979407,2924.948400491755 -16099,19860,36223,36222,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.483729581628792,8.419837375104125,0,2,1,-184.7151195593943,0,2,2,2019,8,1,66,62,1,1,0,7.960531707984188,7.960531707984188,0,0,0,0,0,0,0,0,2.589764271545189,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,942.5,658428.4981483151,113845.8401232477,571542.1236059391,88139.28905979407,2924.948400491755 -16100,19861,36224,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-968.6998475083333,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.569483325579241,0,0,1,1,0,0,0,17.77,27.15,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,535,-55819.35074563188,0,0,0,1292.846042884356 -16101,19862,36225,36227,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,7.971862934939335,7.917231223213371,0,14,2,-69.53200788912829,0,1,3,2019,10,1,30,30,1,1,0,13.37839235852009,13.37839235852009,0,0,0,0,0,1,1,0,1.618056908076291,0,43.6,53.51,48.87,58.55,6.666666666666667,1,1,0,0,9,9,4,0,763.5,152143.2123159465,0,203715.0458823111,122636.3696276554,3210.090493252263 -16101,19862,36226,-9,36227,36225,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.224124400482,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,763.5,152143.2123159465,0,203715.0458823111,122636.3696276554,3210.090493252263 -16101,19862,36227,36225,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.146530054047878,7.771235995890377,0,15,-2,-37.3508938007982,0,2,2,2019,7,0,38,38,1,0,0,8.036041186980393,8.036041186980393,0,0,0,0,0,1,1,0,1.172103883840483,0,48.87,58.55,43.6,53.51,6.666666666666667,1,1,0,1,7,9,4,0,763.5,152143.2123159465,0,203715.0458823111,122636.3696276554,3210.090493252263 -16101,19862,36228,-9,36227,36225,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1197.052492412928,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,763.5,152143.2123159465,0,203715.0458823111,122636.3696276554,3210.090493252263 -16102,19863,36229,36230,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,2,-71.25286974709041,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,0,43.9,57.01,52,48,6.666666666666667,1,1,0,0,0,7,3,1,804,850351.5929159936,547398.2308315928,371356.1031490187,0,1872.706992930132 -16102,19863,36230,36229,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.332767810677104,7.900456006803344,7,-2,35.37685051380632,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.63672975081015,7.460100282697542,52,48,43.9,57.01,7,4,1,0,0,0,7,3,1,804,850351.5929159936,547398.2308315928,371356.1031490187,0,1872.706992930132 -16103,19864,36231,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.746928430536484,5.190681698611535,0,0,-969.6434277712074,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.45412836962752,5.172310042184436,54.2,57.49,-9,-9,5,1,1,0,0,6,10,2,1,710,468762.8146962786,84283.94098212555,341506.3860759963,93017.05135882777,832.1106995257495 -16104,19865,36232,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,7.11296885650095,7.144834367058641,0,0,-1100.520246031463,-9,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.164169227967777,39.57,16.2,-9,-9,1.666666666666667,1,1,0,1,4,12,2,1,647,379242.811729131,86040.68225039149,96553.25503218957,0,1553.850597381351 -16105,19866,36233,36234,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,30,0,0,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.48,31.86,41.24,20.39,5,1,1,0,0,0,13,1,0,435,169191.8578277584,-1096.811629754342,72382.76111882112,0,1940.088962099839 -16105,19866,36234,36233,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,34,0,0,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.24,20.39,57.48,31.86,3.333333333333333,1,1,0,0,0,13,1,0,435,169191.8578277584,-1096.811629754342,72382.76111882112,0,1940.088962099839 -16105,19867,36235,-9,36234,36233,1,1,25,0,0,0,2,2,-9,0,4,8.029962409820991,8.138141237036171,0,0,0,-927.782978858303,0,2,2,2019,9,0,40,14,1,0,1,8.939306236973646,8.939306236973646,0,0,0,0,0,1,1,0,0,0,56.18,51.02,-9,-9,6.666666666666667,1,1,0,0,5,13,3,0,827,0,0,0,0,1223.503535860632 -16106,19868,36236,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.838261322277652,8.333258426757347,0,0,-884.2322006284805,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.101131808778055,7.892317928342847,57.73,54.53,-9,-9,10,1,1,0,0,0,5,3,1,1666,658120.9099813926,309555.9986670382,133767.5479108944,0,1800.404062725855 -16107,19869,36237,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.821444938459639,5.976040034675283,0,0,-973.0149424639742,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.930554633011154,37.79,55.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1684,184437.5934445878,105296.2721927503,68101.69313177763,0,783.6836670822206 -16108,19870,36238,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.02312073330112,8.299284571152278,4.716411099910923,0,0,-870.3388420577803,0,3,2,2019,7,0,36,36,1,0,0,8.533782245183735,8.533782245183735,0,0,0,0,0,0,0,0,0,5.14466865810788,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,1226,306793.4464747087,396135.492332905,3286.376233026771,0,613.619522295861 -16109,19871,36239,-9,36241,36240,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.542692586978,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,5,1,747.3333333333334,491485.2111075179,366815.3040856621,277397.3361972375,6869.321601827436,4320.716522451424 -16109,19871,36240,36241,-9,-9,1,1,59,0,1,0,3,3,-9,0,5,8.576093005293474,8.925496118912505,0,20,11,59.37991658327504,0,3,2,2019,6,0,35,35,1,0,0,25.77819043432889,25.77819043432889,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.36,56.12,10,1,1,0,0,9,10,5,1,747.3333333333334,491485.2111075179,366815.3040856621,277397.3361972375,6869.321601827436,4320.716522451424 -16109,19871,36241,36240,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.405657957708778,8.448448030790509,0,20,-11,-145.9023480654197,0,3,2,2019,12,2,17,21,1,2,0,36.37530355861109,36.37530355861109,0,0,0,0,0,1,1,0,5.2076439190259,0,42.36,56.12,57.06,57.76,6.666666666666667,1,1,0,0,9,10,5,1,747.3333333333334,491485.2111075179,366815.3040856621,277397.3361972375,6869.321601827436,4320.716522451424 -16110,19872,36242,36243,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.394247799577206,8.822554700595418,0,1,0,-5.011902028308755,-9,1,1,2019,16,4,52,0,1,4,0,8.732087967513124,8.732087967513124,0,0,0,0,0,0,0,0,4.425158491945707,0,19.46,69.45,50,57,6.666666666666667,1,1,0,0,9,8,5,1,448.5,214564.988660817,119872.4440254629,477604.9265100204,290321.8022150102,4394.242725073482 -16110,19872,36243,36242,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.933473624115299,8.874400464004538,0,1,0,-61.06303314820654,-9,-9,-9,2019,10,0,37,0,1,1,0,19.04851537802091,19.04851537802091,0,0,0,0,0,0,0,0,.6264890232944913,0,50,57,19.46,69.45,7,4,2,0,0,1,8,5,1,448.5,214564.988660817,119872.4440254629,477604.9265100204,290321.8022150102,4394.242725073482 -16111,19873,36244,36245,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.19978036729008,8.599488438153296,42,-6,-22.1549933634724,0,3,3,2019,5,0,0,47,4,0,0,0,0,0,0,0,0,2,1,1,0,2.919059174220271,8.530367334983662,57.16,56.15,50.6,51,8.333333333333334,1,1,0,0,10,8,5,1,403.5,3046396.072083639,1911137.373549037,919529.9607435621,0,4603.867542751937 -16111,19873,36245,36244,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.172576159094625,8.218344552342357,35,6,45.87595361319341,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.945468493135234,8.47407816909543,50.6,51,57.16,56.15,10,1,1,0,0,4,8,5,1,403.5,3046396.072083639,1911137.373549037,919529.9607435621,0,4603.867542751937 -16112,19874,36246,36247,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.149212263939015,4.276821112143435,52,-2,-122.6238280243808,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2093561945728,58.33,39.49,53,47,8.333333333333334,1,1,0,0,0,4,2,1,393.5,264213.577327169,182003.3286596786,0,0,2229.558972385522 -16112,19874,36247,36246,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.214814504171517,6.960871877871423,8,2,-106.6849287374584,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.8514562000423946,7.041531960553445,53,47,58.33,39.49,7,1,1,0,0,0,4,2,1,393.5,264213.577327169,182003.3286596786,0,0,2229.558972385522 -16113,19875,36248,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1027.655599689382,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.511260355147383,0,20.55,36.73,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,353,209148.71458991,0,124148.3163356574,0,1255.11026894427 -16114,19876,36249,36250,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.192245945637861,8.413157092923223,0,17,9,19.92164555938179,0,3,2,2019,6,0,40,38,1,0,0,11.59429135780416,11.59429135780416,0,0,0,0,0,0,0,0,0,0,56.57,57.78,45.91,42.53,8.333333333333334,2,3,0,0,13,8,3,0,307.6666666666667,193629.1912443553,79609.41678409697,179324.1152578911,56047.26854388158,1763.712705822032 -16114,19876,36250,36249,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,0,0,0,17,0,-2.263648839975854,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,42.53,56.57,57.78,8.333333333333334,2,3,0,0,0,8,3,0,307.6666666666667,193629.1912443553,79609.41678409697,179324.1152578911,56047.26854388158,1763.712705822032 -16114,19876,36251,-9,36250,36249,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.137869151411,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,0,307.6666666666667,193629.1912443553,79609.41678409697,179324.1152578911,56047.26854388158,1763.712705822032 -16114,19877,36252,-9,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,7.539286504135104,7.672218485317803,0,0,0,-917.1550604318101,0,-9,-9,2019,12,0,20,48,1,0,0,10.90850100239757,10.90850100239757,0,0,0,0,0,0,0,0,0,0,37,47.76,-9,-9,5,2,3,0,0,13,8,3,0,273,-166485.8242620312,75859.53732150685,0,0,1150.849767657586 -16115,19878,36253,36255,-9,-9,1,0,26,1,1,0,1,1,-9,0,3,8.475454881531416,8.525499326993266,0,3,-1,41.34969872139946,0,1,1,2019,9,0,37,38,1,0,0,14.08860971735143,14.08860971735143,0,0,0,0,0,1,1,0,1.443865523349352,0,50.03,52.62,46,53,8.333333333333334,1,1,0,0,4,6,5,1,873.6666666666666,1794.951237925144,-51.67334762993172,0,0,3979.692140233164 -16115,19878,36254,-9,36253,36255,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.113820874835,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,873.6666666666666,1794.951237925144,-51.67334762993172,0,0,3979.692140233164 -16115,19878,36255,36253,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.259179154322918,8.614867591231954,0,3,1,-161.6310614621821,0,-9,-9,2019,12,0,40,40,1,2,0,14.92870792800909,14.92870792800909,0,0,0,0,0,1,1,0,3.208291656030259,0,46,53,50.03,52.62,6,1,1,0,0,3,6,5,1,873.6666666666666,1794.951237925144,-51.67334762993172,0,0,3979.692140233164 -16116,19879,36256,-9,-9,-9,1,0,20,0,1,0,2,2,0,0,5,0,0,0,0,0,-959.8264768104741,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.4195268524623174,0,49.84,59.62,-9,-9,10,1,1,0,0,2,2,1,1,228,40188.72645091157,0,0,0,-686.4221259250941 -16117,19880,36257,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-957.8824925778061,0,3,2,2019,9,0,0,48,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,-9,-9,8.333333333333334,1,1,0,0,11,9,1,1,973,328374.285136051,0,327408.6805670505,0,949.9759451694601 -16118,19881,36258,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.38554851332121,8.535234537191336,0,0,0,-1078.392234901952,0,2,2,2019,11,0,45,50,1,0,0,9.386068653429211,9.386068653429211,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,5,1,1,0,0,8,7,4,1,434,377447.907013615,319719.698050504,0,0,1132.090198749362 -16119,19882,36259,-9,36261,36260,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.1116555892069,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,2313,263032.2661518106,188917.0881555305,168615.4480944802,65743.28802836667,2544.43396957008 -16119,19882,36260,36261,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.049836346075695,8.186402634957274,0,10,4,13.68268532475011,0,3,3,2019,11,0,37,37,1,0,0,8.710324363984457,8.710324363984457,0,0,0,0,0,1,1,0,0,0,55.61,50.3,45.95,40,3.333333333333333,1,1,0,0,11,11,3,1,2313,263032.2661518106,188917.0881555305,168615.4480944802,65743.28802836667,2544.43396957008 -16119,19882,36261,36260,-9,-9,1,0,38,0,2,0,2,2,-9,1,2,7.640315285460127,8.004354809515711,0,10,-4,-68.34905822641406,0,3,3,2019,7,0,17,0,1,0,0,13.10138931326912,13.10138931326912,0,0,0,0,0,1,1,0,0,0,45.95,40,55.61,50.3,8.333333333333334,1,1,0,0,11,11,3,1,2313,263032.2661518106,188917.0881555305,168615.4480944802,65743.28802836667,2544.43396957008 -16120,19883,36262,36266,-9,-9,1,1,37,2,3,0,2,2,-9,0,3,8.210314503294939,8.172428608395457,0,4,-1,60.11135447743426,0,-9,-9,2019,11,1,38,38,1,1,0,10.17021365391894,10.17021365391894,0,0,0,.1100225960195296,0,1,1,0,0,0,42.28,54.75,29.17,58.45,8.333333333333334,1,1,0,0,2,4,3,0,809.8,65108.76999196335,-51625.09127925722,0,0,4094.40614282672 -16120,19883,36263,-9,36266,36262,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.51595338243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,809.8,65108.76999196335,-51625.09127925722,0,0,4094.40614282672 -16120,19883,36264,-9,36266,36262,1,0,10,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.419652673886,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,0,809.8,65108.76999196335,-51625.09127925722,0,0,4094.40614282672 -16120,19883,36265,-9,36266,36262,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.270609256826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,809.8,65108.76999196335,-51625.09127925722,0,0,4094.40614282672 -16120,19883,36266,36262,-9,-9,1,0,38,2,3,0,2,2,-9,0,4,7.373556004460195,7.924173173622372,6.184622645918573,4,1,-80.25396036887712,0,2,2,2019,14,2,24,0,1,2,0,8.84679319734116,8.84679319734116,0,0,0,0,0,1,1,0,6.08958929662812,0,29.17,58.45,42.28,54.75,6.666666666666667,1,1,0,0,8,4,3,0,809.8,65108.76999196335,-51625.09127925722,0,0,4094.40614282672 -16121,19884,36267,36268,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.850984972032402,7.333198262452315,42,6,-1.809207888677207,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.029367951556933,7.623468922744792,53.71,46.8,54.52,49.27,5,1,1,0,0,0,7,3,1,824,1471572.966134444,580067.6396279354,628314.4440384971,0,1858.03334291256 -16121,19884,36268,36267,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.95813603063162,6.684546679988753,42,-6,-8.292980411426583,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.773582007135795,7.054356166414824,54.52,49.27,53.71,46.8,5,1,1,0,0,6,7,3,1,824,1471572.966134444,580067.6396279354,628314.4440384971,0,1858.03334291256 -16122,19885,36269,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,6.878053589395742,6.898844074464516,0,0,0,-1047.322436092587,0,2,1,2019,3,0,9,9,1,0,0,12.63036472431582,12.63036472431582,0,0,0,0,7,1,1,0,0,0,53.34,48.86,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,645,-199334.3464975917,35667.43699439631,0,0,635.2139422651139 -16123,19886,36270,36271,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.062203766035271,7.743584341188618,0,8,-3,-24.9801736990565,0,-9,-9,2019,25,11,50,50,1,11,0,6.029025735879195,6.029025735879195,0,0,0,0,0,0,0,0,0,0,31.84,54.15,29.15,63.36,3.333333333333333,1,1,0,1,7,11,4,0,311,-3889.665888967378,16702.18421244436,0,0,2104.466670428284 -16123,19886,36271,36270,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.776246379495237,8.031834601548528,0,8,3,-42.33239621235327,0,2,3,2019,14,2,66,59,1,2,0,4.900966285875635,4.900966285875635,0,0,0,0,0,0,0,0,0,0,29.15,63.36,31.84,54.15,5,1,1,0,1,12,11,4,0,311,-3889.665888967378,16702.18421244436,0,0,2104.466670428284 -16124,19887,36272,-9,36274,36273,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.2680641562761,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1400.25,1604333.987788618,624396.6157364704,1196032.45865742,453258.194321228,8601.64433286532 -16124,19887,36273,36274,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,9.039093718802373,8.917679720965147,0,20,0,102.141394688029,0,2,2,2019,26,9,50,50,1,9,0,29.8914793529526,29.8914793529526,0,0,0,0,0,0,0,0,4.554619906964026,0,38.93,63.13,43.48,60.97,3.333333333333333,1,1,0,0,9,9,5,1,1400.25,1604333.987788618,624396.6157364704,1196032.45865742,453258.194321228,8601.64433286532 -16124,19887,36274,36273,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.443181339926815,9.184741807171568,0,20,0,48.19529922976388,0,2,1,2019,20,7,42,40,1,7,0,32.5549752756958,32.5549752756958,0,0,0,0,0,0,0,0,0,0,43.48,60.97,38.93,63.13,3.333333333333333,1,1,0,0,9,9,5,1,1400.25,1604333.987788618,624396.6157364704,1196032.45865742,453258.194321228,8601.64433286532 -16124,19887,36275,-9,36274,36273,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.9619500156015,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1400.25,1604333.987788618,624396.6157364704,1196032.45865742,453258.194321228,8601.64433286532 -16125,19888,36276,36277,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.581636959575312,7.797696392874614,23,6,-96.716522877179,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.171920587778283,7.805148075109991,57.33,53.46,39.63,48.18,8.333333333333334,1,1,0,0,9,9,4,1,788,1728859.674359923,1055976.296413354,600186.0397531118,8821.096615042081,3099.257981082634 -16125,19888,36277,36276,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.228924000778383,8.132118155533385,4.841588947185692,23,-6,-101.9898821196751,0,2,1,2019,9,0,20,30,1,0,0,25.99861450338423,25.99861450338423,0,0,0,0,0,0,0,0,4.973972677589692,5.099629628556007,39.63,48.18,57.33,53.46,6.666666666666667,1,1,0,0,11,9,4,1,788,1728859.674359923,1055976.296413354,600186.0397531118,8821.096615042081,3099.257981082634 -16126,19889,36278,-9,36279,-9,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-995.8759219264655,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,46.38,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,363.5,157680.5741251496,-6770.505510445359,0,0,2373.723585905941 -16126,19889,36279,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.85209547052839,7.635683228262099,4.891531212918314,0,0,-975.9592218252591,-9,3,3,2019,11,1,39,0,1,1,0,8.629462229224035,8.629462229224035,0,0,0,0,0,1,1,0,5.797567532152449,0,52,43.31,-9,-9,6.666666666666667,1,1,0,0,4,13,3,0,363.5,157680.5741251496,-6770.505510445359,0,0,2373.723585905941 -16127,19890,36280,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1050.389597924257,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,9.599710775826312,0,0,1,1,0,0,0,43,15.95,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,382,-29991.13999700411,0,0,0,2535.267846266383 -16128,19891,36281,36282,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.774743435127091,6.76977525127441,8,-4,-52.68249169736797,0,2,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,6.165282265948583,6.907573649566581,58.98,25.23,54,46,6.666666666666667,1,1,0,0,0,12,3,1,1035.5,1237570.079409827,320858.7667268491,224266.2414012278,0,3257.273230585203 -16128,19891,36282,36281,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.633208808247867,7.795307795167436,8,4,-20.76901203258614,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.14188963955141,7.693934297486998,54,46,58.98,25.23,8,1,1,0,0,0,12,3,1,1035.5,1237570.079409827,320858.7667268491,224266.2414012278,0,3257.273230585203 -16129,19892,36283,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,5.49085844676389,5.802028913394464,0,0,0,-997.125349683221,0,3,3,2019,13,1,5,10,1,1,0,7.776799661013149,7.776799661013149,0,0,0,0,0,1,1,0,0,0,38.04,36.86,-9,-9,1.666666666666667,2,3,0,0,7,6,2,1,1104,51062.68899616782,0,0,0,982.5041721036023 -16129,19893,36284,-9,36283,-9,1,0,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1056.81680163198,0,3,-9,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,35.97,41.97,-9,-9,3.333333333333333,2,3,1,1,1,6,1,1,203,-265856.0476084307,0,0,0,4.507487522158499 -16129,19894,36285,-9,36283,-9,1,1,27,0,0,0,3,3,-9,0,3,7.751164484226122,7.996927545719478,0,0,0,-915.5296080311994,0,3,3,2019,10,1,58,0,1,1,1,4.532516314945367,4.532516314945367,0,0,0,0,0,1,1,0,0,0,41.58,53.7,-9,-9,8.333333333333334,2,3,0,0,1,6,3,1,651,-76465.61566712899,0,0,0,624.5160948161238 -16129,19895,36286,-9,36283,-9,1,0,24,0,0,0,2,2,-9,0,3,7.903038933096675,7.643283902060605,0,0,0,-927.7961933102076,0,2,-9,2019,17,5,30,40,1,5,1,7.770720313115479,7.770720313115479,0,0,0,0,0,1,1,0,0,0,33.87,45.19,-9,-9,1.666666666666667,2,3,0,1,2,6,3,1,152,37376.89367849487,0,0,0,791.8061918402809 -16129,19896,36287,-9,36283,-9,1,1,21,0,0,0,2,2,1,0,3,0,0,0,0,0,-1016.325042709644,-9,2,-9,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,42.09,42.55,-9,-9,8.333333333333334,2,3,1,0,1,6,1,1,191,0,0,0,0,249.1272884374743 -16129,19897,36288,-9,36283,-9,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1043.043468571445,-9,3,-9,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.55,57.01,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,8730,104543.2734658601,0,0,0,-60.92155001910612 -16130,19898,36289,36290,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,8.475061994073009,8.207656338913488,45,0,-9.926854734374997,0,-9,-9,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.197027830631858,8.220586530082493,34.86,26.05,52,48,3.333333333333333,1,1,0,0,0,5,4,1,879,431317.0638141449,206024.0829200174,172362.0996473657,53015.42078071231,3798.050981653914 -16130,19898,36290,36289,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.976038234819695,8.234916827559285,0,7,0,56.76708136219811,0,-9,-9,2019,10,0,60,97,1,1,0,6.553843119847227,6.553843119847227,0,0,0,0,0,1,1,0,4.227770082404873,0,52,48,34.86,26.05,7,1,1,0,0,1,5,4,1,879,431317.0638141449,206024.0829200174,172362.0996473657,53015.42078071231,3798.050981653914 -16131,19899,36291,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1025.816549990032,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,17.02,31.82,-9,-9,0,1,1,0,1,0,9,1,0,682,200699.0702147402,0,189411.7171604991,13024.54623729554,863.9503080580272 -16131,19900,36292,-9,36291,-9,1,1,33,0,0,0,2,2,-9,0,3,8.256269358312254,8.228073546138658,0,0,0,-891.3336287171123,0,2,2,2019,15,5,66,40,1,5,0,6.455958308458375,6.455958308458375,0,0,0,0,7,1,1,0,0,0,29.46,59.39,-9,-9,3.333333333333333,1,1,0,0,8,9,4,0,240,-75452.90562457011,0,0,0,1717.359698259251 -16132,19901,36293,36294,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.448602803533655,8.524142089814298,0,12,-1,-63.53387232840906,0,2,2,2019,10,0,50,46,1,0,0,13.93749890484438,13.93749890484438,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,6,4,1,1972.5,267579.3394940556,123294.1814574401,311903.5224810446,183708.7338194132,2478.838150703053 -16132,19901,36294,36293,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.613610223084309,7.584059456617273,0,12,1,11.90990670317196,0,3,3,2019,7,0,28,28,1,0,0,9.180440870755938,9.180440870755938,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,6,4,1,1972.5,267579.3394940556,123294.1814574401,311903.5224810446,183708.7338194132,2478.838150703053 -16132,19902,36295,-9,36294,36293,1,0,25,0,0,0,1,1,-9,0,4,8.072533276425617,7.964933684023007,0,0,0,-1042.471255814498,0,2,2,2019,6,0,38,38,1,0,1,11.55083317187797,11.55083317187797,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,6,4,1,1305,15336.94505145042,27880.53752918307,0,0,1062.086541274651 -16133,19903,36296,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1036.253582482664,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1655,-50574.38692437927,0,0,0,0 -16134,19904,36297,36298,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.512137607419228,7.537319567460931,0,7,-3,-180.492173029167,0,3,3,2019,7,0,34,35,1,0,0,7.330170118708997,7.330170118708997,0,0,0,0,0,0,0,0,3.459736476691928,0,57.16,56.15,55.8,42.23,10,1,1,0,0,11,5,4,1,858,311957.5032553716,151889.7182129682,187716.8366612486,5113.081197740298,2321.068328261304 -16134,19904,36298,36297,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.567150269800945,7.47805526572095,3.520140614213427,7,3,-18.08725315960622,0,-9,-9,2019,8,0,40,50,1,0,0,6.419946768401848,6.419946768401848,0,0,0,0,0,0,0,0,0,3.490012505577467,55.8,42.23,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,858,311957.5032553716,151889.7182129682,187716.8366612486,5113.081197740298,2321.068328261304 -16135,19905,36299,-9,36300,-9,1,0,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-936.6000906480552,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36300,36302,-9,-9,1,0,39,2,5,0,2,2,-9,0,4,0,5.834377394467259,6.095077464285025,3,-7,-69.05615349886628,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.376141592712671,0,54.79,55.86,53,55,6.666666666666667,1,1,0,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36301,-9,36300,36302,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1059.647285051222,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36302,36300,-9,-9,1,1,46,2,5,0,2,2,-9,0,4,7.820028747279831,8.308286101176273,0,3,7,30.14027132942988,-9,-9,-9,2019,9,0,40,0,1,1,0,8.022596813029169,8.022596813029169,0,0,0,0,0,1,0,1,4.437950472180746,0,53,55,54.79,55.86,8,1,1,0,0,1,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36303,-9,36300,-9,1,0,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-910.9317112740281,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36304,-9,36300,36302,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-966.9392604552298,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16135,19905,36305,-9,36300,-9,1,0,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-971.1354263745707,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,2,0,372,403194.1600055986,304039.7939670118,176573.6471056863,41410.47384971867,3361.204253372826 -16136,19906,36306,36307,-9,-9,1,0,29,1,1,0,2,2,-9,0,2,6.914908134472185,6.851021277756131,0,7,-1,23.00441812512309,0,2,2,2019,17,5,18,16,1,5,0,6.187973955522967,6.187973955522967,0,0,0,0,0,1,1,0,3.942545898878042,0,49.44,33,51.24,58.84,8.333333333333334,1,1,0,0,8,10,3,0,1380,109992.5786951697,-23753.13031670164,209295.7075910757,180079.3349326998,1778.748567000451 -16136,19906,36307,36306,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,7.967275127752178,7.837736176906515,0,7,1,-26.44137797198668,0,-9,-9,2019,15,4,44,49,1,4,0,7.341898644480851,7.341898644480851,0,0,0,0,0,1,1,0,2.505446943644109,0,51.24,58.84,49.44,33,8.333333333333334,1,1,0,0,10,10,3,0,1380,109992.5786951697,-23753.13031670164,209295.7075910757,180079.3349326998,1778.748567000451 -16136,19906,36308,-9,36306,36307,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.321751539394,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1380,109992.5786951697,-23753.13031670164,209295.7075910757,180079.3349326998,1778.748567000451 -16137,19907,36309,-9,36310,36311,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.189033642414,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,979.3333333333334,110221.2211444509,124995.6387341271,116873.38997819,98597.34906910524,2684.386692922597 -16137,19907,36310,36311,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.686732677627171,8.84984516933797,0,6,-6,60.65746446764751,0,2,1,2019,26,10,45,48,1,10,0,13.76577912764544,13.76577912764544,0,0,0,0,0,1,1,0,3.010775603119699,0,28.33,62.63,48.81,59.91,5,1,1,0,0,7,5,4,1,979.3333333333334,110221.2211444509,124995.6387341271,116873.38997819,98597.34906910524,2684.386692922597 -16137,19907,36311,36310,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,7.641614259829933,7.667424303352512,0,6,6,-31.32067669077865,0,-9,-9,2019,9,0,45,41,1,0,0,4.835392495428197,4.835392495428197,0,0,0,0,0,1,1,0,1.303151410310028,0,48.81,59.91,28.33,62.63,8.333333333333334,1,1,0,0,7,5,4,1,979.3333333333334,110221.2211444509,124995.6387341271,116873.38997819,98597.34906910524,2684.386692922597 -16138,19908,36312,-9,36313,36315,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.241241534199,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,795,552803.8766907534,538111.490697904,186849.0407338904,93922.98326594521,5151.854017068007 -16138,19908,36313,36315,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,9.136450121829482,8.975638232250896,0,8,1,64.14091338232818,0,2,1,2019,15,4,35,35,1,4,0,19.05584229239078,19.05584229239078,0,0,0,0,0,1,1,0,2.304310704108806,0,43.37,57.28,51.24,58.84,6.666666666666667,1,1,0,0,8,2,5,1,795,552803.8766907534,538111.490697904,186849.0407338904,93922.98326594521,5151.854017068007 -16138,19908,36314,-9,36313,36315,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.7488622552574,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,795,552803.8766907534,538111.490697904,186849.0407338904,93922.98326594521,5151.854017068007 -16138,19908,36315,36313,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.83381827233945,8.867693993370395,0,8,-1,-33.85326491076543,0,2,1,2019,9,1,38,37,1,1,0,22.19186958670491,22.19186958670491,0,0,0,0,0,1,1,0,3.580209268524765,0,51.24,58.84,43.37,57.28,6.666666666666667,1,1,0,0,9,2,5,1,795,552803.8766907534,538111.490697904,186849.0407338904,93922.98326594521,5151.854017068007 -16139,19909,36316,-9,36317,36318,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.0709083146636,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,1829.666666666667,1772.531080690557,0,0,0,1980.648304485567 -16139,19909,36317,36318,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,0,0,0,6,-10,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,42,1,1,0,0,0,30.5,28.34,45.69,52.9,5,1,1,0,1,0,2,1,0,1829.666666666667,1772.531080690557,0,0,0,1980.648304485567 -16139,19909,36318,36317,-9,-9,1,1,48,0,1,0,3,3,-9,1,4,0,0,0,6,10,0,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,45.69,52.9,30.5,28.34,8.333333333333334,1,1,0,1,0,2,1,0,1829.666666666667,1772.531080690557,0,0,0,1980.648304485567 -16139,19910,36319,-9,36317,36318,1,0,18,0,1,0,2,2,1,1,2,0,0,0,0,0,-988.7839706289091,-9,2,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,20.73,54.34,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,2280,137174.3426209143,0,0,0,299.5939023058842 -16140,19911,36320,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,3,0,5.446473212363283,5.449554212252501,0,0,-970.7843635884559,0,2,2,2019,32,12,0,39,3,12,0,0,0,0,0,0,0,0,1,1,0,5.721796082357947,5.354298063848207,32.47,38.98,-9,-9,1.666666666666667,1,1,1,0,7,12,2,0,419,-77535.33658958352,0,0,0,276.9456011828736 -16140,19912,36321,-9,36320,-9,1,1,21,0,0,0,2,2,-9,0,5,7.708618635054724,7.971641405671463,0,0,0,-960.6405688163783,0,3,-9,2019,3,0,9,0,1,0,1,33.59282818516685,33.59282818516685,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,4,12,3,0,413,-19548.14547288634,-78948.58655469723,0,0,508.6574534359917 -16141,19913,36322,-9,36323,36325,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.293725639369,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,675,80405.51909386026,0,0,0,2049.947801499196 -16141,19913,36323,36325,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,0,0,0,26,-11,-70.54362015181472,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54,54,8,2,3,0,0,0,8,2,0,675,80405.51909386026,0,0,0,2049.947801499196 -16141,19913,36324,-9,36323,36325,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.8517029079087,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,675,80405.51909386026,0,0,0,2049.947801499196 -16141,19913,36325,36323,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,2.634926617316077,3.094702523844505,0,6,11,63.73564874384265,0,3,3,2019,9,0,40,40,1,1,0,.0568337296500246,.0568337296500246,0,0,0,0,0,1,1,0,0,0,54,54,50,55,8,2,3,0,0,2,8,2,0,675,80405.51909386026,0,0,0,2049.947801499196 -16141,19914,36326,-9,36323,36325,1,0,22,0,2,0,2,2,-9,0,4,7.937176109362033,7.443612203628171,0,0,0,-959.6620813252723,0,3,2,2019,11,0,35,24,1,2,1,6.913685842992446,6.913685842992446,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,2044,-42637.0354377976,216280.7045560068,0,0,890.4054396323111 -16141,19915,36327,-9,36323,36325,1,1,18,0,2,0,2,2,1,0,5,0,0,0,0,0,-945.3101881371377,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,1,0,0,8,1,0,241,-87513.65439277266,0,0,0,0 -16142,19916,36328,36329,-9,-9,1,0,26,0,0,0,3,3,-9,0,2,8.005798346169186,8.064099390085042,0,3,-2,-53.84117334952238,-9,-9,-9,2019,12,0,37,0,1,0,0,7.977499816575048,7.977499816575048,0,0,0,0,0,0,0,0,0,0,33.17,45.88,29.81,61.06,5,1,1,0,0,4,10,4,0,554,127224.6253905073,79883.72527304172,0,0,2702.443927868042 -16142,19916,36329,36328,-9,-9,1,1,28,0,0,0,3,3,-9,0,2,7.987297856533362,7.834704279503903,0,3,2,22.72756033588906,0,-9,-9,2019,13,1,53,38,1,1,0,4.984728657012131,4.984728657012131,0,0,0,0,0,0,0,0,0,0,29.81,61.06,33.17,45.88,6.666666666666667,1,1,0,0,7,10,4,0,554,127224.6253905073,79883.72527304172,0,0,2702.443927868042 -16143,19917,36330,36331,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.5097834795344,8.017083671886031,0,25,-1,-35.71183738099931,0,3,3,2019,11,0,40,37,1,0,0,14.40722614929529,14.40722614929529,0,0,0,0,0,0,0,0,0,0,36.45,62.92,53,55,6.666666666666667,1,1,0,0,9,13,5,1,530,731228.9096501898,304040.576067492,296891.7304432765,0,5535.476470015751 -16143,19917,36331,36330,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.08599891363885,9.258936906734558,0,25,1,118.8608183102349,0,3,3,2019,9,0,38,50,1,1,0,28.41934204230159,28.41934204230159,0,0,0,0,0,0,0,0,6.950002786297397,0,53,55,36.45,62.92,8,1,1,0,0,1,13,5,1,530,731228.9096501898,304040.576067492,296891.7304432765,0,5535.476470015751 -16143,19918,36332,-9,36330,36331,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-904.2301987338727,-9,1,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,878,145473.7570595013,0,0,0,0 -16143,19919,36333,-9,36330,36331,1,0,20,0,0,0,2,2,-9,0,4,7.782395694922196,7.899416079798477,0,0,0,-997.1185356360876,-9,1,1,2019,8,1,40,0,1,1,1,8.454400909140237,8.454400909140237,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,450,107534.8964818902,0,0,0,1132.653535222154 -16144,19920,36334,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,7.582738657363733,7.737441656305003,0,0,0,-1077.275211486249,0,3,3,2019,12,0,27,29,1,0,0,9.692573613598059,9.692573613598059,0,0,0,1.233535480885962,0,1,1,0,2.760991374594826,0,56.25,32.61,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,237,233456.3855905612,299919.4301794734,99904.12964395045,0,993.2030452106684 -16145,19921,36335,36336,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.628239046976484,6.645599898245409,6,-10,68.09331745643732,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.234212225458982,6.680912141431482,51.68,49.13,62.39,56.71,10,1,1,0,0,2,11,2,1,472,397308.6859604541,53490.58271325682,0,0,6333.283477976746 -16145,19921,36336,36335,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,0,0,6,10,16.93198148100224,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,.3179506131748102,0,1,1,0,9.044459342812653,0,62.39,56.71,51.68,49.13,0,1,1,0,0,0,11,2,1,472,397308.6859604541,53490.58271325682,0,0,6333.283477976746 -16146,19922,36337,36338,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,5.208663932649587,5.021658086111015,48,2,-84.71212179666361,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.530682313939375,5.342664086246074,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,2,10,2,1,193,417380.6393041399,44196.25302941725,208896.3440628945,0,1408.223330484346 -16146,19922,36338,36337,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,48,-2,-42.00590536567847,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.436208589225694,0,57.16,56.15,60.12,54.8,10,1,1,0,0,4,10,2,1,193,417380.6393041399,44196.25302941725,208896.3440628945,0,1408.223330484346 -16147,19923,36339,36340,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.999431182392255,8.182006211685012,0,37,-3,90.85059511229279,0,-9,-9,2019,13,2,37,37,1,2,0,7.973921761845284,7.973921761845284,0,0,0,0,7,0,0,0,3.657252281095383,0,29.91,57.76,57.33,53.46,1.666666666666667,1,1,0,0,13,12,4,1,635,98975.12925032486,86919.44062468479,0,0,3014.338578392899 -16147,19923,36340,36339,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.017096845191114,7.845298766109321,35,3,25.01757855359059,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.778042990095401,8.150465621982073,57.33,53.46,29.91,57.76,8.333333333333334,1,1,0,0,10,12,4,1,635,98975.12925032486,86919.44062468479,0,0,3014.338578392899 -16148,19924,36341,36342,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.94,48.62,54,46,10,1,1,0,0,0,2,1,0,491.5,205429.5278452045,20814.16178160696,106504.4184726795,0,1300.154902797312 -16148,19924,36342,36341,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,60,-1,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,61.94,48.62,5,1,1,0,0,0,2,1,0,491.5,205429.5278452045,20814.16178160696,106504.4184726795,0,1300.154902797312 -16149,19925,36343,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.603164986462322,7.50286199230674,0,0,-950.4841143801922,0,3,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,7.936933264315803,37.6,43.76,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,330,487202.4975569152,202652.1426145624,406258.228211484,0,1593.854904574149 -16150,19926,36344,36345,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.079798518806918,7.789396221132523,0,3,2,61.28154929990945,0,-9,-9,2019,11,0,37,38,1,0,0,8.966769508835164,8.966769508835164,0,0,0,0,0,0,0,0,0,0,36.87,49.16,42.46,54.85,5,1,1,0,0,7,5,4,1,290.5,-706.6323660816852,60830.17442378715,108409.5830553745,61915.24254708306,2780.275746361018 -16150,19926,36345,36344,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.257285915501267,8.025053118395551,0,3,-2,162.759713138722,0,-9,-9,2019,12,1,41,38,1,1,0,9.574293747836158,9.574293747836158,0,0,0,0,0,0,0,0,0,0,42.46,54.85,36.87,49.16,6.666666666666667,1,1,0,0,7,5,4,1,290.5,-706.6323660816852,60830.17442378715,108409.5830553745,61915.24254708306,2780.275746361018 -16151,19927,36346,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.503591366216148,7.448371593496109,0,0,0,-1035.275692220746,0,3,-9,2019,11,0,27,32,1,0,0,7.847974165868031,7.847974165868031,0,0,0,0,0,1,1,0,0,0,54.21,49.46,-9,-9,5,1,1,0,0,10,6,3,0,1100,18806.12144876408,-5198.211321657191,0,0,1406.755487856553 -16152,19928,36347,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1026.034646080897,0,2,2,2019,29,12,0,3,3,12,0,0,0,0,0,0,0,0,0,0,0,6.821926890702759,0,19.34,37.27,-9,-9,0,1,1,0,0,7,7,1,1,500,0,0,0,0,442.3464304448435 -16153,19929,36348,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-856.8095394222238,0,3,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.01,30.81,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,280,108552.1778917739,0,0,0,1274.310990023954 -16154,19930,36349,-9,36351,36353,1,1,20,0,1,0,2,2,0,0,2,0,0,0,0,0,-856.2975777010462,-9,2,2,2019,24,9,0,0,2,9,1,0,0,0,0,0,0,0,1,0,1,0,0,23.4,60.03,-9,-9,1.666666666666667,4,2,0,0,0,8,2,0,120,0,0,0,0,-95.02213572502703 -16154,19931,36350,-9,36351,36353,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1136.190101446174,-9,2,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,43.76,55.68,-9,-9,6.666666666666667,4,2,1,0,0,8,1,0,175,0,0,0,0,0 -16154,19932,36351,36353,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,0,0,0,8,-1,-8.783733162218592,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,0,1,0,0,39.27,60.24,24.15,60.56,3.333333333333333,3,4,0,1,0,8,3,0,538.6666666666666,448791.4536636692,-15156.41124014286,389707.502726747,0,2863.164174070124 -16154,19932,36352,-9,36351,36353,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.748305888356,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,538.6666666666666,448791.4536636692,-15156.41124014286,389707.502726747,0,2863.164174070124 -16154,19932,36353,36351,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,7.836747465571681,7.990873017274398,0,8,1,178.9256624678403,0,-9,-9,2019,20,8,18,24,1,8,0,17.5943932662338,17.5943932662338,0,0,0,0,7,1,0,1,0,0,24.15,60.56,39.27,60.24,5,1,1,0,1,13,8,3,0,538.6666666666666,448791.4536636692,-15156.41124014286,389707.502726747,0,2863.164174070124 -16155,19933,36354,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.233543175439962,8.231894591580881,0,0,0,-1085.636415759832,-9,2,-9,2019,28,12,36,0,1,12,0,13.41672031146543,13.41672031146543,0,0,0,0,0,0,0,0,3.954186030558047,0,28.57,61.36,-9,-9,3.333333333333333,1,1,0,1,7,8,4,0,1750,0,0,0,0,1891.625187313727 -16156,19934,36355,36358,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,0,3.611364554602342,3.324533783051324,4,1,6.633829190810282,0,2,2,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,4.680497277016536,0,19.49,58.73,40.48,60.05,3.333333333333333,1,1,0,0,2,9,3,0,292.5,12823.20324226287,0,0,0,1682.104820449219 -16156,19934,36356,-9,36355,36358,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.232203111776,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,292.5,12823.20324226287,0,0,0,1682.104820449219 -16156,19934,36357,-9,36355,36358,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.9473954041464,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,292.5,12823.20324226287,0,0,0,1682.104820449219 -16156,19934,36358,36355,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.030909512211519,7.957207993263733,0,4,-1,-29.62578296917651,0,-9,-9,2019,12,0,43,42,1,0,0,7.649356555192829,7.649356555192829,0,0,0,0,0,1,1,0,0,0,40.48,60.05,19.49,58.73,8.333333333333334,1,1,0,0,10,9,3,0,292.5,12823.20324226287,0,0,0,1682.104820449219 -16157,19935,36359,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.742065697818541,7.585892675535871,0,0,0,-1093.624506746724,0,3,3,2019,11,0,50,45,1,1,0,4.786068790138719,4.786068790138719,0,0,0,0,42,0,0,0,0,0,49,50,-9,-9,7,1,1,0,0,10,13,3,1,436,171229.9601918049,31458.82965264221,96595.09263843382,0,518.9275330851322 -16158,19936,36360,36361,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.610340435430695,7.960995901512065,0,6,0,-19.57565712686008,0,-9,-9,2019,7,0,35,39,1,0,0,8.503630395461746,8.503630395461746,0,0,0,0,0,0,0,0,0,0,54.57,49.24,44.49,61.79,8.333333333333334,1,1,0,0,7,12,4,0,277.5,273176.8838353133,372024.6759972853,190213.3582362541,47996.47509057775,2453.369587332691 -16158,19936,36361,36360,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.146692857462185,8.3227855659668,0,6,0,13.4937333935025,0,3,3,2019,6,0,38,43,1,0,0,8.852489700396029,8.852489700396029,0,0,0,0,0,0,0,0,0,0,44.49,61.79,54.57,49.24,3.333333333333333,1,1,0,0,6,12,4,0,277.5,273176.8838353133,372024.6759972853,190213.3582362541,47996.47509057775,2453.369587332691 -16158,19937,36362,-9,36360,36361,1,1,23,0,0,0,2,2,-9,0,3,7.997565962902404,7.741576247563434,0,0,0,-975.8027801623404,0,2,3,2019,7,0,27,32,1,0,1,11.29793441065019,11.29793441065019,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,12,3,0,654,33461.46853316479,0,0,0,1047.115654703028 -16158,19938,36363,-9,36360,36361,1,0,21,0,0,0,2,2,-9,0,3,7.935215825245322,7.712691959957346,0,0,0,-990.6263189552761,0,2,3,2019,10,1,35,35,1,1,1,7.380490231697229,7.380490231697229,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,3,0,437,19686.1278309869,0,0,0,698.2513671082792 -16158,19939,36364,-9,36360,36361,1,0,19,0,0,0,2,2,-9,0,3,6.72368193842633,6.582856205316522,0,0,0,-1057.137383273471,0,2,3,2019,12,0,28,40,1,0,1,2.66120884768306,2.66120884768306,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,157,192952.8711512227,0,0,0,690.426894677689 -16159,19940,36365,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,9.178452990538718,9.256911644162862,6.779233443843204,0,0,-804.219396120772,0,2,3,2019,23,8,45,46,1,8,0,29.88010019536257,29.88010019536257,0,0,0,0,0,0,0,0,6.992675195734371,0,29.71,64.88,-9,-9,3.333333333333333,1,1,0,1,5,4,5,1,538.3333333333334,139411.0829440119,15041.90440006059,185813.0107830405,57661.69113459458,3853.223196793684 -16159,19940,36366,-9,36365,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.8189480761127,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,5,1,538.3333333333334,139411.0829440119,15041.90440006059,185813.0107830405,57661.69113459458,3853.223196793684 -16159,19940,36367,-9,36365,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.303121171324,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,5,1,538.3333333333334,139411.0829440119,15041.90440006059,185813.0107830405,57661.69113459458,3853.223196793684 -16160,19941,36368,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.305541881543451,5.963508892101999,0,0,-964.6085949778327,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.972246693259304,5.835942558580701,56.45,31.13,-9,-9,5,1,1,0,0,0,9,2,1,424,190552.9183804132,182925.54280292,0,0,870.9785052495981 -16161,19942,36369,36370,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.103824800869186,7.153566638254372,54,-2,42.74535050269186,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.352022658082443,7.256029694260969,56.25,43.34,55.1,42.64,8.333333333333334,1,1,0,0,1,6,2,1,293.5,540301.6112204083,435152.103038108,179015.8876296573,0,1725.012008839527 -16161,19942,36370,36369,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.742466023170023,5.778168852482772,54,2,-18.15228406322409,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.318797624310736,55.1,42.64,56.25,43.34,10,1,1,0,0,0,6,2,1,293.5,540301.6112204083,435152.103038108,179015.8876296573,0,1725.012008839527 -16162,19943,36371,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.452803825954121,7.258252618754216,0,0,0,-990.8075564139456,0,3,3,2019,19,8,17,12,1,8,0,10.64243749466322,10.64243749466322,0,0,0,0,0,1,1,0,3.413328111232537,0,25.01,66.57000000000001,-9,-9,3.333333333333333,1,1,0,0,11,2,3,1,384,960642.4479754523,48431.82446215095,379230.6394628909,0,1256.463536249857 -16163,19944,36372,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,5.469309947179916,5.262157024190416,0,0,0,-1039.828146739844,-9,2,3,2019,18,7,50,0,1,7,0,.4977008572340045,.4977008572340045,0,0,0,0,0,1,1,0,0,0,54.61,40.3,-9,-9,5,1,1,0,1,8,7,2,1,616,-28617.26101543567,-91450.70517108843,0,0,85.30948685527392 -16163,19945,36373,-9,-9,36372,1,1,20,0,0,0,2,2,-9,0,4,7.556406849366075,7.486635911526443,0,0,0,-1096.101169505162,-9,-9,1,2019,11,0,30,0,1,2,1,8.20497683276073,8.20497683276073,0,0,0,0,0,1,1,0,1.325060069612671,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,927,-182585.1474397703,62198.54907571971,0,0,771.0403864055942 -16164,19946,36374,36375,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,9.107670669115645,8.767446930700743,0,4,-1,-49.63777882186297,0,2,2,2019,11,1,83,44,1,1,0,11.44376883944896,11.44376883944896,0,0,0,0,0,0,0,0,2.936697307245685,0,36.54,57.54,59.43,49.68,6.666666666666667,1,1,0,0,9,11,5,1,472,1022026.305523705,309862.720144158,406351.3128681617,135191.6345763014,5546.639257927221 -16164,19946,36375,36374,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.155524556682259,8.790717733337386,0,4,1,61.51478965329391,-9,-9,-9,2019,8,0,80,0,1,0,0,11.8647972465758,11.8647972465758,0,0,0,0,0,0,0,0,7.431092431571376,0,59.43,49.68,36.54,57.54,8.333333333333334,1,1,0,0,6,11,5,1,472,1022026.305523705,309862.720144158,406351.3128681617,135191.6345763014,5546.639257927221 -16165,19947,36376,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1000.145017069087,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,13.5834016637542,41.28603935742054,130.3111007773543,74.5,1,0,1,0,0,37.96,18.13,-9,-9,6.666666666666667,1,1,0,1,0,11,1,1,97,-106384.4133800128,0,0,0,1374.850888678146 -16165,19948,36377,-9,36376,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-984.8551583114278,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,3.339454982189837,0,48.12,18.77,-9,-9,0,1,1,0,0,0,11,1,1,279,49223.82225948852,5139.587673185306,0,0,1177.238607057529 -16166,19949,36378,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.379544536789034,7.373702798341935,0,0,-962.9906233855216,0,2,2,2019,7,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,7.100234444952912,7.336573188976686,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,139,268687.355666063,244091.4213065969,106471.0194535239,0,2408.116964023586 -16167,19950,36379,36380,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.572845739136568,6.479060593099004,0,4,-18,-18.49967403955911,0,3,2,2019,7,0,14,14,1,0,0,7.067511874038216,7.067511874038216,0,0,0,0,0,1,0,1,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,7,8,2,0,2332,53093.96653287406,0,0,0,1922.245152978583 -16167,19950,36380,36379,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,0,0,0,4,18,14.70414460242628,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,1,0,0,8,2,0,2332,53093.96653287406,0,0,0,1922.245152978583 -16167,19950,36381,-9,36379,36380,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.0372482983184,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,2332,53093.96653287406,0,0,0,1922.245152978583 -16168,19951,36382,-9,36383,-9,1,0,33,0,0,0,2,2,-9,0,3,7.897769348758279,7.949562164850311,0,0,0,-987.2940201596826,0,2,2,2019,12,3,41,38,1,3,1,7.537322686602781,7.537322686602781,0,0,0,0,7,1,0,1,.054132509858038,0,43.12,58.55,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,146,-109174.3844786199,0,0,0,1196.2359302547 -16168,19952,36383,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,6.066931634024447,5.937455943763145,0,0,-962.4895843952918,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,3.610293159462058,5.783330567483035,35.98,20.53,-9,-9,0,1,1,0,0,0,4,2,1,520,-39259.74520827409,174429.1981445363,0,0,662.7963491893269 -16169,19953,36384,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,8.444459725378389,8.563873525598009,0,0,0,-1067.760466870706,-9,1,1,2019,14,3,40,0,1,3,0,12.73753074435583,12.73753074435583,0,0,0,0,0,0,0,0,0,0,32.33,59.49,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,717,181405.5381289532,-61603.22586968602,0,0,2483.517577350844 -16170,19954,36385,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.557869347858818,6.648382705011507,0,0,-1091.668673029359,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,6.611333080107458,52.31,40.62,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2502,310370.8758341493,-214404.046382866,207692.8842780101,0,1030.095413041932 -16171,19955,36386,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.026660063927885,7.744739448669234,0,0,0,-954.9499645423025,0,2,3,2019,12,0,41,40,1,0,0,7.051897159894665,7.051897159894665,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,6,3,1,376,67942.78932604418,-69816.76881609284,71105.43200577301,-10002.90541278055,589.8360351562158 -16172,19956,36387,-9,36389,36390,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.3892040854834,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,499.5,641435.2204818007,352622.9541698891,128171.9393978961,32293.8956055675,2854.146355768145 -16172,19956,36388,-9,36389,36390,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.61483430328,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,499.5,641435.2204818007,352622.9541698891,128171.9393978961,32293.8956055675,2854.146355768145 -16172,19956,36389,36390,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,7.296452493801114,7.281005435365147,0,4,-8,18.3912361387857,0,-9,-9,2019,8,0,30,30,1,0,0,9.465598707389194,9.465598707389194,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.21,58.07,8.333333333333334,1,1,0,0,9,13,4,1,499.5,641435.2204818007,352622.9541698891,128171.9393978961,32293.8956055675,2854.146355768145 -16172,19956,36390,36389,-9,-9,1,1,43,1,2,0,2,2,-9,0,5,8.484591177515698,8.571304092100704,0,4,8,-34.22106985470641,0,2,2,2019,6,0,46,45,1,0,0,13.50622643246063,13.50622643246063,0,0,0,0,0,1,1,0,3.436614421593268,0,46.21,58.07,57.06,57.76,10,1,1,0,0,7,13,4,1,499.5,641435.2204818007,352622.9541698891,128171.9393978961,32293.8956055675,2854.146355768145 -16173,19957,36391,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.769646292282992,9.351203277481588,7.18392699035422,0,0,-1020.906894253033,0,1,2,2019,11,0,55,50,1,0,0,17.83296553797204,17.83296553797204,0,0,0,0,0,0,0,0,0,7.325534539823591,55.09,55.87,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,466,16849.52824834135,215897.395775971,0,0,3458.145134882998 -16174,19958,36392,36393,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,5.148556634420975,4.986091922193133,59,2,48.41669357590354,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.714585260458429,4.923042305487246,54.01,53.44,56.1,33.79,10,1,1,0,0,0,12,2,1,964.5,450476.9506174984,0,195605.5710942465,0,918.7921285920684 -16174,19958,36393,36392,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,59,-2,139.3476996923795,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,3.564180178329502,0,0,1,1,0,4.043617268521592,0,56.1,33.79,54.01,53.44,5,1,1,0,0,3,12,2,1,964.5,450476.9506174984,0,195605.5710942465,0,918.7921285920684 -16175,19959,36394,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.51375657114371,7.344749942775409,0,0,0,-1101.051862682689,0,2,-9,2019,8,0,27,8,1,0,0,6.338513734148719,6.338513734148719,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,743,65614.44684189202,0,0,0,574.9793745042289 -16176,19960,36395,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.317659870191179,8.28667814460858,6.184981366503671,0,0,-1132.705116838368,0,3,3,2019,12,1,48,39,1,1,0,11.01165992367748,11.01165992367748,0,0,0,0,0,0,0,0,5.184258213907092,6.090118387269744,44.61,59.06,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,577,173475.0842018689,0,0,0,2856.864526962054 -16176,19961,36396,-9,36395,-9,1,0,22,0,0,0,1,1,-9,0,4,8.080561306191152,7.842186199444344,0,0,0,-955.2504695860217,0,2,2,2019,21,10,40,37,1,10,1,9.033067024507641,9.033067024507641,0,0,0,0,0,0,0,0,4.55339869890684,0,31.88,56.92,-9,-9,3.333333333333333,4,2,0,0,3,7,4,1,833,-198222.4355454873,20743.37635521784,0,0,847.2714353529518 -16177,19962,36397,36398,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.169409891953531,7.494315473484029,7,3,125.963048051975,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,28.05652626535149,0,0,1,1,0,7.414154794584716,7.433876929345767,55,45,52,45,8,1,1,0,0,0,4,2,1,1004,612955.0773560682,195666.4319349539,254625.2422845301,0,2530.520193654198 -16177,19962,36398,36397,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-37.48544829582746,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,.1607662804157659,120,1,1,0,.574312544975762,0,52,45,55,45,8,1,1,0,0,0,4,2,1,1004,612955.0773560682,195666.4319349539,254625.2422845301,0,2530.520193654198 -16178,19963,36399,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.736949487693192,5.360804619682295,0,0,-888.4687047197179,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.446967957329767,5.646486997132429,57.24,41.16,-9,-9,3.333333333333333,1,1,0,1,0,9,2,0,718,203519.6907786574,110311.1682871666,0,0,1732.546459067216 -16179,19964,36400,36401,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.918570412139479,8.070800112254952,10,2,18.89268767355754,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.795039237096383,58.72,51.29,47.55,44.33,8.333333333333334,1,1,0,0,0,5,3,1,386.5,977985.5044470187,687352.3967793123,205739.8660667166,0,2370.299591239515 -16179,19964,36401,36400,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,62.6630221509237,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,58.72,51.29,8.333333333333334,1,1,0,0,5,5,3,1,386.5,977985.5044470187,687352.3967793123,205739.8660667166,0,2370.299591239515 -16180,19965,36402,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.039265912426272,6.09917544167396,0,0,-949.6921026345527,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.447850317263288,54,46,-9,-9,7,4,6,0,0,0,11,2,0,134,531490.4821292236,74422.49506654899,254165.3723939738,0,1117.025229464861 -16180,19966,36403,36404,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,3,-5,35.74016980899149,0,2,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,38.91,47.09,57.16,56.15,3.333333333333333,1,1,0,0,1,11,3,0,527.5,818958.9434702774,431457.8201317517,282501.1205454547,0,1318.204880889718 -16180,19966,36404,36403,-9,36402,1,1,52,0,0,0,3,3,-9,0,4,7.955888128743627,8.101745915152639,0,3,5,-46.95388579531799,0,-9,3,2019,7,0,46,47,1,0,0,7.080064243311326,7.080064243311326,0,0,0,0,5.48,1,1,0,0,0,57.16,56.15,38.91,47.09,1.666666666666667,1,1,0,0,5,11,3,0,527.5,818958.9434702774,431457.8201317517,282501.1205454547,0,1318.204880889718 -16181,19967,36405,36406,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,7.629813610361885,7.573068587411933,0,9,1,-110.7256345139467,0,3,2,2019,11,0,14,14,1,0,0,18.87728247253044,18.87728247253044,0,0,0,0,0,0,0,0,0,0,52.25,53.24,49.02,48.81,10,1,1,0,0,9,8,5,1,998,-30927.71355891741,0,0,0,4474.254836589955 -16181,19967,36406,36405,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.492888992899694,9.888313164477363,0,9,-1,-27.58826690888918,0,2,1,2019,12,0,50,37,1,0,0,32.30948674136635,32.30948674136635,0,0,0,0,0,0,0,0,4.542424778668765,0,49.02,48.81,52.25,53.24,5,1,1,0,0,10,8,5,1,998,-30927.71355891741,0,0,0,4474.254836589955 -16181,19967,36407,-9,36405,36406,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.74394296421,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,998,-30927.71355891741,0,0,0,4474.254836589955 -16181,19967,36408,-9,36405,36406,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.8159151458289,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,998,-30927.71355891741,0,0,0,4474.254836589955 -16182,19968,36409,36411,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.1410836890221,7.993508549692698,0,11,-5,-11.12954696922986,0,2,2,2019,9,0,31,64,1,0,0,14.5574178104567,14.5574178104567,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.01,53.44,6.666666666666667,1,1,0,0,11,2,5,1,1344.5,384195.1889223467,249885.9257091519,242448.0204471695,123473.8245184143,4250.452621962123 -16182,19968,36410,-9,36409,36411,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.920864187668,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,1344.5,384195.1889223467,249885.9257091519,242448.0204471695,123473.8245184143,4250.452621962123 -16182,19968,36411,36409,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.595215509796212,8.855225625533011,0,11,5,41.32925940252691,0,2,2,2019,9,0,37,37,1,0,0,20.50680234144537,20.50680234144537,0,0,0,0,0,1,1,0,0,0,54.01,53.44,54.2,57.49,8.333333333333334,1,1,0,0,11,2,5,1,1344.5,384195.1889223467,249885.9257091519,242448.0204471695,123473.8245184143,4250.452621962123 -16182,19968,36412,-9,36409,36411,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.8396065358854,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1344.5,384195.1889223467,249885.9257091519,242448.0204471695,123473.8245184143,4250.452621962123 -16183,19969,36413,36415,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,9,-7,-54.39145509413417,0,-9,-9,2019,28,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.78,56.6,43.43,54.3,8.333333333333334,1,1,0,0,5,9,3,1,1010.25,37355.84752155293,17971.43231334529,343482.6732528103,205062.8224657729,1885.941397454116 -16183,19969,36414,-9,36413,36415,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.7535500922502,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,3,1,1010.25,37355.84752155293,17971.43231334529,343482.6732528103,205062.8224657729,1885.941397454116 -16183,19969,36415,36413,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.352676255964511,8.559301089484666,0,9,7,68.60589539075505,0,1,1,2019,13,2,40,43,1,2,0,15.03000049288715,15.03000049288715,0,0,0,0,7,1,1,0,0,0,43.43,54.3,30.78,56.6,6.666666666666667,3,4,0,0,10,9,3,1,1010.25,37355.84752155293,17971.43231334529,343482.6732528103,205062.8224657729,1885.941397454116 -16183,19969,36416,-9,36413,36415,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.7721018754371,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,1,1010.25,37355.84752155293,17971.43231334529,343482.6732528103,205062.8224657729,1885.941397454116 -16184,19970,36417,-9,36418,36420,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.5385288214569,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,2011.5,651088.6416479455,314458.9437090153,286482.9943419819,107674.5799510098,4096.475962576862 -16184,19970,36418,36420,-9,-9,1,0,46,0,2,0,2,2,-9,1,4,8.354395911510947,8.511101991153854,0,18,-4,48.11441991127825,0,2,2,2019,10,1,30,32,1,1,0,13.08328383825386,13.08328383825386,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,38.94,60.48,8.333333333333334,1,1,0,0,12,5,4,1,2011.5,651088.6416479455,314458.9437090153,286482.9943419819,107674.5799510098,4096.475962576862 -16184,19970,36419,-9,36418,36420,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.085465790291,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,4,1,2011.5,651088.6416479455,314458.9437090153,286482.9943419819,107674.5799510098,4096.475962576862 -16184,19970,36420,36418,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.756312207893068,8.824210680256291,0,18,4,-71.4958736625578,0,2,2,2019,6,0,60,54,1,0,0,12.20094898064346,12.20094898064346,0,0,0,0,14.5,1,1,0,0,0,38.94,60.48,57.16,56.15,6.666666666666667,1,1,0,0,12,5,4,1,2011.5,651088.6416479455,314458.9437090153,286482.9943419819,107674.5799510098,4096.475962576862 -16185,19971,36421,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.673991458453484,7.358618269757163,0,0,0,-1168.861928379394,0,1,2,2019,5,1,27,0,1,1,0,9.948670769873235,9.948670769873235,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,4,2,0,0,2,6,3,0,432.6666666666667,-49860.4852770716,-15670.76003034383,0,0,2621.994583532067 -16185,19971,36422,-9,36421,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.092130691644,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,432.6666666666667,-49860.4852770716,-15670.76003034383,0,0,2621.994583532067 -16185,19971,36423,-9,36421,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.4729459299874,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,432.6666666666667,-49860.4852770716,-15670.76003034383,0,0,2621.994583532067 -16186,19972,36424,36425,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.884779623055787,7.392747766972128,0,7,-2,87.14106466909472,0,3,3,2019,11,0,30,30,1,2,0,6.43581307001805,6.43581307001805,0,0,0,0,0,0,0,0,.4331493704769343,0,48,49,51,49,7,1,1,0,0,9,13,5,1,311,458808.0223546628,322089.2475179745,166556.0354955985,186220.0767383496,2860.25269108997 -16186,19972,36425,36424,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.640041560094373,8.541040085122619,4.053837760559668,7,2,-19.37172275055354,0,3,2,2019,10,0,35,38,1,1,0,19.50545393934114,19.50545393934114,0,0,0,0,0,0,0,0,3.220594114006257,4.07486293105148,51,49,48,49,7,1,1,0,0,9,13,5,1,311,458808.0223546628,322089.2475179745,166556.0354955985,186220.0767383496,2860.25269108997 -16186,19973,36426,-9,36424,36425,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1076.08722258862,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.026675624024737,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,1516,62214.13794612349,0,0,0,-629.4720705247256 -16187,19974,36427,36428,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,7.754045689377123,7.51657166247587,0,3,1,7.541766642716433,0,2,1,2019,22,9,6,15,1,9,0,32.70520622647192,32.70520622647192,0,0,0,0,0,0,0,0,.1294868848704588,0,23.89,46.32,54.1,59.11,6.666666666666667,1,1,0,0,9,6,4,1,494,-2920.056913292847,102724.6007289094,0,0,2421.91031140423 -16187,19974,36428,36427,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.142124689115679,8.426909315132667,0,3,-1,-39.75457765048424,0,-9,-9,2019,8,0,43,45,1,0,0,10.88789659000606,10.88789659000606,0,0,0,0,0,0,0,0,.8283756486672724,0,54.1,59.11,23.89,46.32,6.666666666666667,1,1,0,1,4,6,4,1,494,-2920.056913292847,102724.6007289094,0,0,2421.91031140423 -16188,19975,36429,36430,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.729838184332545,9.021286461011693,0,9,2,18.21879394116134,0,3,3,2019,7,0,49,49,1,0,0,17.15061824959215,17.15061824959215,0,0,0,0,0,1,1,0,0,0,51.14,60.45,46.9,56.66,8.333333333333334,1,1,0,0,11,10,5,1,1200.25,121875.8677938287,-8007.864489225054,286362.0671976903,183359.0646842392,4253.869248692803 -16188,19975,36430,36429,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.175462021933862,7.942563189264531,0,9,-2,-21.50278454342781,0,2,-9,2019,12,0,38,40,1,0,0,12.31398393119681,12.31398393119681,0,0,0,0,0,1,1,0,0,0,46.9,56.66,51.14,60.45,6.666666666666667,1,1,0,0,10,10,5,1,1200.25,121875.8677938287,-8007.864489225054,286362.0671976903,183359.0646842392,4253.869248692803 -16188,19975,36431,-9,36430,36429,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-818.9598547365574,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1200.25,121875.8677938287,-8007.864489225054,286362.0671976903,183359.0646842392,4253.869248692803 -16188,19975,36432,-9,36430,36429,1,0,16,0,1,0,2,2,-9,0,3,0,5.023172948498139,4.708413144497984,0,0,-1025.333394232524,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.695846810862887,0,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,1200.25,121875.8677938287,-8007.864489225054,286362.0671976903,183359.0646842392,4253.869248692803 -16189,19976,36433,36434,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.691511343974971,8.713014406515258,0,26,8,8.287286054901358,0,3,2,2019,10,1,40,35,1,1,0,15.95978447856387,15.95978447856387,0,0,0,0,0,0,0,0,4.246078720142251,0,47.95,56.13,44.74,48.37,6.666666666666667,1,1,0,0,7,12,5,1,212,1531810.468897948,1236938.127650139,297138.5359916593,0,3607.140698980558 -16189,19976,36434,36433,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.532213093325959,8.456532603978998,0,7,-8,-94.62440271750077,0,-9,-9,2019,13,2,45,35,1,2,0,15.79099611100976,15.79099611100976,0,0,0,0,7,0,0,0,3.943651102285797,0,44.74,48.37,47.95,56.13,8.333333333333334,1,1,0,0,9,12,5,1,212,1531810.468897948,1236938.127650139,297138.5359916593,0,3607.140698980558 -16190,19977,36435,36436,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.423431652686983,7.588630562549259,0,2,1,36.35119055586568,0,2,2,2019,10,2,75,60,1,2,0,2.46068042152932,2.46068042152932,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,1293.5,21706.92549945418,19934.28117329141,0,0,2918.622463801545 -16190,19977,36436,36435,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.643494827759849,8.92563059173926,0,2,-1,-24.70972784072864,0,-9,-9,2019,5,0,40,40,1,0,0,19.23777111684378,19.23777111684378,0,0,0,0,0,0,0,0,3.155471250023434,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,1,8,5,1,1293.5,21706.92549945418,19934.28117329141,0,0,2918.622463801545 -16191,19978,36437,36438,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,45,1,-65.3934139808301,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,22.48,44.62,21.72,8.333333333333334,1,1,0,0,0,2,2,1,650,260875.494592088,49228.42513340665,152738.4228391828,0,2699.676620493094 -16191,19978,36438,36437,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,5.505276420062287,5.629006927235339,45,-1,-54.03582517867801,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.968530739244922,44.62,21.72,54.77,22.48,6.666666666666667,1,1,0,0,0,2,2,1,650,260875.494592088,49228.42513340665,152738.4228391828,0,2699.676620493094 -16192,19979,36439,36440,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,9,2,-13.68452152957535,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,49.86,43.03,53.23,6.666666666666667,1,1,0,0,8,7,2,1,2313,1055073.283211762,486392.8908693497,250979.4726640545,0,1053.168181680053 -16192,19979,36440,36439,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.552773658026591,7.432904052470825,9,-2,-35.73824135335648,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.7150928620398872,7.4808519277735,43.03,53.23,47.55,49.86,6.666666666666667,1,1,0,0,0,7,2,1,2313,1055073.283211762,486392.8908693497,250979.4726640545,0,1053.168181680053 -16193,19980,36441,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.311457177044336,8.353953573665317,0,0,0,-994.1816923606658,0,2,2,2019,34,11,37,37,1,11,0,12.37530338492718,12.37530338492718,0,0,0,0,0,0,0,0,0,0,29.57,58.13,-9,-9,1.666666666666667,1,1,0,1,12,9,4,1,415,385364.7050380519,66584.82377264279,542712.5136706542,138140.6725126085,1553.710565811655 -16194,19981,36442,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.362497749516271,4.304441273721185,0,0,-903.1839116172177,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,0,0,0,5.47939476846256,4.434185001079125,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,4634,194111.8277828581,-37177.4053033313,116943.0780734928,0,256.5679817387393 -16195,19982,36443,36444,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,61,-5,9.42531805240008,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,12.19113110911685,0,0,1,1,0,.5811832544352095,0,45.42,32.37,53.46,44.67,8.333333333333334,1,1,0,0,0,7,3,1,130,351280.4795695935,160437.3517846757,186686.3778148447,0,1940.680005946489 -16195,19982,36444,36443,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.184300691696631,7.431131846707054,61,5,-69.8053169765048,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.581385020086397,53.46,44.67,45.42,32.37,8.333333333333334,1,1,0,0,0,7,3,1,130,351280.4795695935,160437.3517846757,186686.3778148447,0,1940.680005946489 -16196,19983,36445,36446,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,9.198442473577245,9.194252768055605,0,2,8,-16.21566876356734,0,1,1,2019,11,1,50,50,1,1,0,26.12327054772742,26.12327054772742,0,0,0,0,0,0,0,0,0,0,57.49,42.39,47,57,6.666666666666667,3,4,0,0,8,8,5,1,408,491904.7276098041,62724.97082344709,913601.1677669494,635761.1826864608,6867.131801140631 -16196,19983,36446,36445,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.827708405922351,9.070700740719866,0,2,-8,72.31004236711607,-9,-9,-9,2019,13,1,57,0,1,1,0,12.76769129254554,12.76769129254554,0,0,0,0,0,0,0,0,0,0,47,57,57.49,42.39,10,2,3,0,0,9,8,5,1,408,491904.7276098041,62724.97082344709,913601.1677669494,635761.1826864608,6867.131801140631 -16197,19984,36447,36448,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.754894157538367,6.831390963048803,0,30,5,51.08799711786423,0,2,2,2019,11,0,40,60,1,0,0,1.942572015788919,1.942572015788919,0,0,0,0,0,0,0,0,7.36096575500466,0,48.87,58.55,37.02,53.43,1.666666666666667,1,1,0,0,9,5,2,1,968.5,263288.2367911177,18659.21782714443,136262.9716295539,0,1739.913110003422 -16197,19984,36448,36447,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,4.284818722878929,4.346883399414036,0,30,-5,-69.11249059421452,0,2,2,2019,15,3,24,24,1,3,0,.3609852171590559,.3609852171590559,0,0,0,0,2,0,0,0,6.22682818326822,0,37.02,53.43,48.87,58.55,6.666666666666667,1,1,0,0,9,5,2,1,968.5,263288.2367911177,18659.21782714443,136262.9716295539,0,1739.913110003422 -16198,19985,36449,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1050.603885128086,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,.9244982510944979,0,0,1,1,0,0,0,55.92,34.79,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,834,-113598.5094675188,0,0,0,1166.247165560121 -16199,19986,36450,36451,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.686093938696478,5.655812819591836,49,0,-120.865983298253,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.01491945339776,5.440722650885967,49.04,55.86,56.74,44.56,8.333333333333334,1,1,0,0,4,5,3,1,554.5,1762398.332002416,1229088.653009417,295533.5676471394,0,3438.261017973813 -16199,19986,36451,36450,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.923469562201899,8.153536142298856,49,0,53.69560831219139,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.44448578418786,8.00896150278567,56.74,44.56,49.04,55.86,8.333333333333334,1,1,0,0,7,5,3,1,554.5,1762398.332002416,1229088.653009417,295533.5676471394,0,3438.261017973813 -16200,19987,36452,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.655721948200714,8.219247745812401,0,0,0,-934.2473475367324,0,3,3,2019,11,0,38,37,1,0,0,18.32423608987621,18.32423608987621,0,0,0,0,2,1,1,0,0,0,49.05,50.32,-9,-9,6.666666666666667,1,1,0,0,7,6,5,1,2626,667824.8591933388,415734.3572464031,71566.90306596598,0,1330.485058661473 -16201,19988,36453,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.625123616344162,8.574497173270229,0,2,-6,116.0431375139136,0,2,2,2019,7,0,48,40,1,0,0,13.73485204991741,13.73485204991741,0,0,0,0,0,0,0,0,0,0,63.25,32,50.35,46.02,8.333333333333334,1,1,0,0,11,9,5,1,980,-188305.3891029558,85645.90492249986,0,0,2888.757463014217 -16201,19989,36454,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.694854821317294,8.63637272963137,0,2,6,102.9232477378584,0,-9,-9,2019,6,0,45,45,1,0,0,13.18934689425506,13.18934689425506,0,0,0,0,0,0,0,0,.1198945057881936,0,50.35,46.02,63.25,32,6.666666666666667,1,1,0,0,2,9,5,1,528,524832.0089016678,53897.55465544976,222198.7983374544,118522.3167531607,1860.508623870136 -16202,19990,36455,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.386713517769191,9.30027417677546,0,0,0,-971.3766218973212,0,2,1,2019,21,9,43,42,1,9,0,25.69165789379895,25.69165789379895,0,0,0,0,0,0,0,0,3.390518194399628,0,43.32,63.94,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,654,988301.461624859,691944.150952451,355305.8981726952,79085.62949238274,3822.904738865003 -16203,19991,36456,-9,-9,-9,1,1,81,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1051.718932633713,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,12.85838135661579,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,158,68003.93926212529,0,0,0,526.3043208657889 -16203,19992,36457,36458,-9,-9,1,0,43,0,3,0,3,3,-9,0,3,7.658561292016608,7.823614305453593,0,16,-5,-113.3206750220351,0,3,3,2019,6,0,27,32,1,0,0,9.147859052977386,9.147859052977386,0,0,0,0,0,1,1,0,0,0,60.29,52.11,55.77,55.6,10,1,1,0,0,8,13,3,1,1528.6,3300.374716483505,-14991.68692192107,0,0,2658.914430274315 -16203,19992,36458,36457,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,7.548372200996496,7.72595027405043,0,16,5,85.33699338754319,0,3,3,2019,9,0,40,40,1,0,0,8.297547926512518,8.297547926512518,0,0,0,0,0,1,1,0,0,0,55.77,55.6,60.29,52.11,8.333333333333334,1,1,0,0,10,13,3,1,1528.6,3300.374716483505,-14991.68692192107,0,0,2658.914430274315 -16203,19992,36459,-9,36457,36458,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.17846053663,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1528.6,3300.374716483505,-14991.68692192107,0,0,2658.914430274315 -16203,19992,36460,-9,36457,36458,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.939620926293,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,1528.6,3300.374716483505,-14991.68692192107,0,0,2658.914430274315 -16203,19992,36461,-9,36457,36458,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-971.7465773417617,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,1528.6,3300.374716483505,-14991.68692192107,0,0,2658.914430274315 -16204,19993,36462,-9,36466,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.040350465362,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,1022.4,52836.67398022224,584.8484361578876,87661.68242557533,42782.29774750424,2720.423286826849 -16204,19993,36463,-9,36466,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.822400150604,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1022.4,52836.67398022224,584.8484361578876,87661.68242557533,42782.29774750424,2720.423286826849 -16204,19993,36464,-9,36466,-9,1,1,12,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.393330148588,-9,-9,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,0,1022.4,52836.67398022224,584.8484361578876,87661.68242557533,42782.29774750424,2720.423286826849 -16204,19993,36465,-9,36466,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.514110217294,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,2,0,1022.4,52836.67398022224,584.8484361578876,87661.68242557533,42782.29774750424,2720.423286826849 -16204,19993,36466,-9,-9,-9,1,0,38,1,3,0,2,2,-9,1,3,0,5.571490914051918,6.014559579196992,0,0,-945.6485339336829,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,5.846923447069508,0,33.53,50.87,-9,-9,6.666666666666667,1,1,0,1,4,2,2,0,1022.4,52836.67398022224,584.8484361578876,87661.68242557533,42782.29774750424,2720.423286826849 -16205,19994,36467,36470,36472,-9,1,1,41,0,3,0,1,1,-9,0,4,8.571085000835222,8.647056034032072,0,13,7,154.0380541270021,0,3,-9,2019,10,0,37,37,1,1,0,17.38349546674362,17.38349546674362,0,0,0,0,0,1,1,0,6.196678702101353,0,50,56,44,52,7,2,3,0,0,1,4,3,1,706.6,345175.8302874324,321102.3884418422,0,0,2704.178675499915 -16205,19994,36468,-9,36470,36467,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-839.2937784434424,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,706.6,345175.8302874324,321102.3884418422,0,0,2704.178675499915 -16205,19994,36469,-9,36470,36467,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1025.794049938144,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,706.6,345175.8302874324,321102.3884418422,0,0,2704.178675499915 -16205,19994,36470,36467,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,13,-7,-28.71824049269707,0,-9,-9,2019,5,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,50,56,10,2,3,0,0,0,4,3,1,706.6,345175.8302874324,321102.3884418422,0,0,2704.178675499915 -16205,19994,36471,-9,36470,36467,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1017.211261183982,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,3,1,706.6,345175.8302874324,321102.3884418422,0,0,2704.178675499915 -16205,19995,36472,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1018.137990850816,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,1,1,716,-17007.85084030216,0,0,0,480.2477689990985 -16206,19996,36473,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.041504396522033,8.105897471834611,0,0,0,-1058.751130837859,0,2,2,2019,10,0,46,33,1,0,0,10.28070657494902,10.28070657494902,0,0,0,0,0,0,0,0,0,0,45.86,53.23,-9,-9,6.666666666666667,4,2,0,0,9,8,4,0,681,41511.39075405327,0,0,0,2113.705206983753 -16207,19997,36474,-9,36476,36477,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-784.9191090321247,-9,2,2,2019,12,4,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37.67,62.33,-9,-9,3.333333333333333,1,1,0,0,0,4,3,0,693,82016.16668844753,157417.9634669095,62084.10816662341,77127.94585060753,2770.4266753006 -16207,19997,36475,-9,36476,36477,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.300510731169,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,693,82016.16668844753,157417.9634669095,62084.10816662341,77127.94585060753,2770.4266753006 -16207,19997,36476,36477,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,7.828748870368934,8.000734339185648,0,7,-4,-17.10494417570033,0,-9,-9,2019,9,0,40,0,1,0,0,7.674964531105791,7.674964531105791,0,0,0,0,14.5,1,0,1,0,0,40.82,45.35,54.2,57.49,10,1,1,0,0,0,4,3,0,693,82016.16668844753,157417.9634669095,62084.10816662341,77127.94585060753,2770.4266753006 -16207,19997,36477,36476,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.617793074569398,8.26935048714628,0,7,4,-80.93941500249463,0,-9,1,2019,9,0,40,40,1,0,0,13.84048909137772,13.84048909137772,0,0,0,0,0,1,0,1,0,0,54.2,57.49,40.82,45.35,6.666666666666667,4,2,0,0,9,4,3,0,693,82016.16668844753,157417.9634669095,62084.10816662341,77127.94585060753,2770.4266753006 -16207,19998,36478,-9,36476,36477,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1030.994461306133,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,444,117012.7253420285,0,0,0,-147.7241095206629 -16207,19999,36479,-9,36476,36477,1,1,19,0,2,0,2,2,-9,0,4,6.974626506295937,7.037585091401207,0,0,0,-806.3788095379598,0,2,2,2019,7,0,38,0,1,0,1,4.322790764177981,4.322790764177981,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,1762,-34274.48618007112,0,0,0,595.644448382315 -16207,20000,36480,-9,36476,36477,1,1,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-1160.834440818734,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,55.53,51.55,-9,-9,5,1,1,1,0,0,4,1,0,315,-214844.5805128909,0,0,0,0 -16207,20001,36481,-9,36476,36477,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-934.9013938350107,-9,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,51.74,50.77,-9,-9,1.666666666666667,4,2,1,0,0,4,1,0,605,69362.96405640365,0,0,0,677.5328264108313 -16208,20002,36482,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.620460702464649,7.408285332950326,0,0,0,-960.3780788135924,0,-9,-9,2019,23,10,27,26,1,10,0,7.177233426780908,7.177233426780908,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,3.333333333333333,1,1,0,0,11,10,3,0,69,207904.9898222598,-59604.88069623058,0,0,855.1591315149465 -16209,20003,36483,36484,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.209928834894725,8.50073201929955,0,10,4,9.380483918835919,0,-9,-9,2019,7,0,40,40,1,0,0,14.46313007338124,14.46313007338124,0,0,0,0,0,0,0,0,0,0,59.91,45.35,46.13,40.24,8.333333333333334,1,1,0,0,12,5,4,1,238,303433.740181352,83090.56525953251,169833.9093587182,0,2360.587918277169 -16209,20003,36484,36483,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.370615104152442,7.250521267782543,0,10,-4,43.37840361522542,0,3,3,2019,11,0,19,21,1,0,0,9.164139561042916,9.164139561042916,0,0,0,0,0,0,0,0,0,0,46.13,40.24,59.91,45.35,8.333333333333334,1,1,0,0,10,5,4,1,238,303433.740181352,83090.56525953251,169833.9093587182,0,2360.587918277169 -16210,20004,36485,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,6.098319846637746,6.16263455406947,0,0,-885.8014358070155,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.261264580287393,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,7,13,2,1,103,381471.9469785009,473899.3617838728,19985.92208151855,0,-186.4136731064496 -16210,20005,36486,-9,-9,36485,1,1,35,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1048.936891152737,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,311,0,0,0,0,-12.79934793666951 -16211,20006,36487,36488,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,9.335494260773141,9.274357760288959,0,7,0,-43.4717569738869,0,-9,-9,2019,10,0,38,38,1,1,0,30.45975471498898,30.45975471498898,0,0,0,0,0,0,0,0,0,0,50,57,52.65,30.38,7,1,1,0,0,1,9,5,1,512.3333333333334,142534.4945316294,122984.6711570553,491390.4638966355,434269.1819980723,5519.704074172502 -16211,20006,36488,36487,-9,-9,1,0,33,1,1,0,1,1,-9,0,2,8.630355436354087,8.685422685680869,0,7,0,-.6490418357119448,0,2,1,2019,13,1,35,45,1,1,0,19.03207274579625,19.03207274579625,0,0,0,0,0,0,0,0,4.070025061781813,0,52.65,30.38,50,57,8.333333333333334,1,1,0,0,9,9,5,1,512.3333333333334,142534.4945316294,122984.6711570553,491390.4638966355,434269.1819980723,5519.704074172502 -16211,20006,36489,-9,36488,36487,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-976.8604442790969,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,512.3333333333334,142534.4945316294,122984.6711570553,491390.4638966355,434269.1819980723,5519.704074172502 -16212,20007,36490,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.30217830946347,7.985523381728349,0,0,0,-944.7659076845556,0,2,2,2019,21,10,37,37,1,10,0,11.93713657366686,11.93713657366686,0,0,0,0,14.5,1,1,0,0,0,35.03,63.83,-9,-9,3.333333333333333,1,1,0,1,6,2,3,1,392.6666666666667,966296.9550385145,736185.0279815188,150940.0010468249,53465.15815034862,2228.953980271981 -16212,20007,36491,-9,36490,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.7800133104961,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,3,1,392.6666666666667,966296.9550385145,736185.0279815188,150940.0010468249,53465.15815034862,2228.953980271981 -16212,20007,36492,-9,36490,-9,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1018.108229407466,-9,2,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,53.72,-9,-9,5,1,1,0,0,1,2,3,1,392.6666666666667,966296.9550385145,736185.0279815188,150940.0010468249,53465.15815034862,2228.953980271981 -16213,20008,36493,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,6.011014583532186,6.118645038858724,0,0,-1094.977041381905,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.02959595504108,41.29,24.56,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,306,108339.3107896884,-41377.57478527493,197757.6612934824,0,1942.113507974281 -16214,20009,36494,-9,-9,-9,1,0,54,1,2,0,2,2,-9,0,2,7.600016460402946,7.419493028001319,0,0,0,-984.9315860544782,0,-9,-9,2019,14,4,20,16,1,4,0,10.94647931487141,10.94647931487141,0,0,0,.2364086414245126,0,1,1,0,0,0,39.83,48.26,-9,-9,5,1,1,0,1,7,1,2,0,319,157012.1446222029,19600.21257028438,0,0,759.916939010547 -16214,20010,36495,-9,36496,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.2256137013247,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,4,6,-9,0,0,1,3,0,378,-37355.79520883066,0,0,0,412.1805011177488 -16214,20010,36496,-9,36494,-9,1,0,25,1,2,0,2,2,-9,0,5,7.154622119444392,7.078036606446563,0,0,0,-870.4253193996859,-9,2,-9,2019,3,0,27,0,1,0,1,6.063853037211941,6.063853037211941,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,378,-37355.79520883066,0,0,0,412.1805011177488 -16215,20011,36497,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.415724380581144,7.562266874574895,0,0,0,-993.4178074680955,0,-9,-9,2019,10,0,30,28,1,0,0,8.929270735192546,8.929270735192546,0,0,0,0,0,0,0,0,1.20242571632314,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,192,713326.5948070256,89030.28934153191,0,0,641.0158481322544 -16215,20012,36498,-9,36497,-9,1,1,29,0,0,0,1,1,-9,0,4,8.013137413863708,8.112206561444598,0,0,0,-861.380882541834,0,2,-9,2019,8,0,41,42,1,0,1,8.821663507314616,8.821663507314616,0,0,0,0,0,0,0,0,4.851005911711676,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,267,4867.041040060278,0,0,0,921.8056659767451 -16216,20013,36499,36500,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,8.98650729718748,9.033901400704979,0,4,5,179.8933170106233,-9,-9,-9,2019,9,0,40,0,1,1,0,20.74132490194085,20.74132490194085,0,0,0,0,0,1,1,0,0,0,51,56,50.43,51.02,8,4,3,0,0,1,2,5,1,329.3333333333333,326489.7874846897,149990.2621686037,119425.8697310922,94786.31235244998,4418.049240960147 -16216,20013,36500,36499,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.350083623877984,8.068740636980937,0,4,-5,-8.299581776425887,0,2,2,2019,4,0,48,50,1,0,0,7.57210706364416,7.57210706364416,0,0,0,0,5.48,1,1,0,0,0,50.43,51.02,51,56,8.333333333333334,2,3,0,0,10,2,5,1,329.3333333333333,326489.7874846897,149990.2621686037,119425.8697310922,94786.31235244998,4418.049240960147 -16216,20013,36501,-9,36500,36499,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-941.5828001518126,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,329.3333333333333,326489.7874846897,149990.2621686037,119425.8697310922,94786.31235244998,4418.049240960147 -16217,20014,36502,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.827102830938551,8.120411669376521,0,0,0,-914.3146589674935,0,-9,-9,2019,11,1,38,40,1,1,0,9.224625679021369,9.224625679021369,0,0,0,0,0,0,0,0,0,0,53.5,51.02,-9,-9,8.333333333333334,3,4,0,0,9,8,3,0,567,133959.325036503,68070.62230485267,0,0,1261.561736075175 -16217,20015,36503,-9,36502,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1114.465809723822,1,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,782,-179561.6043943999,0,0,0,0 -16218,20016,36504,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.967659115487865,8.04783456423328,0,0,0,-1032.318941478328,0,-9,-9,2019,17,5,35,24,1,5,0,8.405903170102548,8.405903170102548,0,0,0,0,0,0,0,0,5.410812551864866,0,47.76,52.08,-9,-9,3.333333333333333,1,1,0,0,5,12,3,0,445,25911.95625747907,-47317.32063583311,0,0,1128.910142831935 -16219,20017,36505,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.041638866671226,9.094228659434661,0,0,0,-1023.146045484012,0,-9,-9,2019,12,2,42,43,1,2,0,26.34934390031686,26.34934390031686,0,0,0,0,0,1,1,0,3.179168608624774,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,337,524856.1195835329,191726.6817965196,290500.4533598084,187074.5653945759,3039.145449284608 -16220,20018,36506,36509,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,8.068627901611192,8.388891547598474,0,10,0,55.59534540395161,0,2,1,2019,7,0,43,45,1,0,0,9.356420945368203,9.356420945368203,0,0,0,0,0,1,1,0,0,0,51.77,58.57,54.2,57.49,8.333333333333334,3,4,0,0,11,9,4,0,615,671327.5708506748,92695.86464273369,413500.1807214449,63346.69096678459,3176.189150716089 -16220,20018,36507,-9,36506,36509,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-897.9690793560453,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,0,615,671327.5708506748,92695.86464273369,413500.1807214449,63346.69096678459,3176.189150716089 -16220,20018,36508,-9,36506,36509,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.602956048154,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,4,0,615,671327.5708506748,92695.86464273369,413500.1807214449,63346.69096678459,3176.189150716089 -16220,20018,36509,36506,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.553812826489539,8.43717005891029,0,9,0,-34.62903427343031,0,3,2,2019,12,0,40,46,1,0,0,12.76923142599317,12.76923142599317,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.77,58.57,8.333333333333334,4,2,0,0,10,9,4,0,615,671327.5708506748,92695.86464273369,413500.1807214449,63346.69096678459,3176.189150716089 -16221,20019,36510,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.919863971282435,7.650480241334301,0,0,-1093.523654805143,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.659700880069365,7.961239029915265,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,822,914146.2310636425,358625.6555444864,51685.97940488246,0,2032.422757616758 -16222,20020,36511,36512,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.798175041199432,8.525665527480284,0,5,16,48.02702696493463,0,-9,-9,2019,9,0,39,39,1,1,0,18.00936858090375,18.00936858090375,0,0,0,0,0,1,1,0,0,0,53,55,54.96,53.17,8,1,1,0,0,1,4,4,1,697.3333333333334,291657.934213337,234343.170474287,137813.9246801119,70678.34282425213,3265.470453650659 -16222,20020,36512,36511,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.337246154494505,7.393798668447793,0,5,-16,146.3180032064314,0,3,-9,2019,6,0,30,26,1,0,0,5.749102447719151,5.749102447719151,0,0,0,0,0,1,1,0,0,0,54.96,53.17,53,55,8.333333333333334,1,1,0,0,6,4,4,1,697.3333333333334,291657.934213337,234343.170474287,137813.9246801119,70678.34282425213,3265.470453650659 -16222,20020,36513,-9,36512,36511,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.7070474604426,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,697.3333333333334,291657.934213337,234343.170474287,137813.9246801119,70678.34282425213,3265.470453650659 -16223,20021,36514,36515,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.690654578355003,6.933805176761514,50,0,85.53208629754103,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.882566436687597,6.708629748840682,41,53.03,56.57,57.78,8.333333333333334,1,1,0,0,4,2,3,1,746,989900.8599659669,412336.346634931,436789.4906627459,0,3131.120320543728 -16223,20021,36515,36514,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.922100164031918,6.805120367306017,50,0,36.15536755731522,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.438733724894863,6.864199668173947,56.57,57.78,41,53.03,10,1,1,0,0,7,2,3,1,746,989900.8599659669,412336.346634931,436789.4906627459,0,3131.120320543728 -16224,20022,36516,36517,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.296079644816262,6.279689904306871,2,0,-94.3270572561493,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.443166893068575,6.433308030046885,56.2,48.66,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,0,477,1371738.604025324,440940.2244319648,440913.3107777689,0,2220.586432123988 -16224,20022,36517,36516,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,7.194289742282765,7.468135186955097,0,2,0,-42.08430969876671,0,3,3,2019,6,0,27,28,1,0,0,6.248930296212087,6.248930296212087,0,0,0,0,0,1,1,0,5.979891834533838,0,57.06,57.76,56.2,48.66,10,1,1,0,0,9,7,3,0,477,1371738.604025324,440940.2244319648,440913.3107777689,0,2220.586432123988 -16225,20023,36518,36519,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.93538046339096,8.69183438787266,0,2,1,-105.6798695816974,0,1,2,2019,5,0,40,37,1,0,0,16.56303691567355,16.56303691567355,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,9,12,5,0,1125.5,35974.05906797785,164410.0711080173,198590.1578207868,169855.0316769647,4007.434579453913 -16225,20023,36519,36518,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.727493272418792,8.639400799881169,0,2,-1,-59.50334069501865,0,-9,-9,2019,5,0,38,38,1,0,0,19.87285787343174,19.87285787343174,0,0,0,0,0,0,0,0,.2298861446478866,0,59.43,58.05,54.2,57.49,8.333333333333334,1,1,0,0,2,12,5,0,1125.5,35974.05906797785,164410.0711080173,198590.1578207868,169855.0316769647,4007.434579453913 -16226,20024,36520,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1017.218726497735,0,-9,-9,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,58.9,37.87,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,280,312628.286451378,113774.6015294955,262615.0181121358,0,1302.973067762688 -16227,20025,36521,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.090711315050553,7.473644459598606,0,0,-966.9859726994068,0,2,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.361180147954892,7.191223823627169,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,309,376708.3177519087,190310.3397865012,174886.3391373232,0,1702.053717608632 -16228,20026,36522,36523,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,5.844741832678885,5.731280088162318,0,34,8,-14.3183168002186,0,2,2,2019,7,0,60,60,1,0,0,.6809398238844149,.6809398238844149,0,0,0,0,0,0,0,0,0,0,66.53,29.99,57.16,56.15,3.333333333333333,1,1,0,0,8,12,3,1,657.5,160717.5357023823,45807.21062644159,90511.54816440675,0,1508.958996609538 -16228,20026,36523,36522,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.223076494590355,8.285910723439546,0,34,-8,89.62181455058277,0,2,3,2019,8,0,46,47,1,0,0,8.133223938762193,8.133223938762193,0,0,0,0,0,0,0,0,2.400680485933335,0,57.16,56.15,66.53,29.99,8.333333333333334,1,1,0,0,8,12,3,1,657.5,160717.5357023823,45807.21062644159,90511.54816440675,0,1508.958996609538 -16228,20027,36524,-9,36523,36522,1,0,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1108.032278542958,1,1,2,2019,4,0,0,42,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,0,12,1,1,626,-14884.08997022171,0,0,0,0 -16228,20028,36525,-9,36523,36522,1,1,22,0,0,0,2,2,-9,0,4,8.320182650582103,8.389268883220309,0,0,0,-1020.893796104317,0,2,2,2019,10,0,38,40,1,1,1,11.71972304392062,11.71972304392062,0,0,0,0,0,0,0,0,4.601871696202901,0,49,58,-9,-9,7,1,1,0,0,1,12,4,1,1833,-13288.21045483567,-52254.36192569417,0,0,1772.997363302753 -16229,20029,36526,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.2132936810764,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.83,24.53,-9,-9,0,1,1,0,1,0,9,1,1,458,109336.7037674555,25886.6969812657,0,0,1247.055289887543 -16230,20030,36527,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.163668679366444,7.130216453071777,0,0,-912.8357898767606,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.489109650847148,6.821932460053423,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,161,-144438.7246614843,-71961.39230776398,0,0,872.1314165608821 -16231,20031,36528,-9,36529,36530,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.3739414959549,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,4,1,475.6666666666667,1233657.610465095,811987.9538295064,334454.8049038853,0,3273.876371219721 -16231,20031,36529,36530,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,0,0,0,20,-7,-93.38628427906579,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.37,25.38,50.46,53.68,8.333333333333334,4,2,1,0,9,8,4,1,475.6666666666667,1233657.610465095,811987.9538295064,334454.8049038853,0,3273.876371219721 -16231,20031,36530,36529,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,9.116348471557322,9.055840554301877,0,20,7,-84.3237381106573,-9,2,2,2019,3,0,51,0,1,0,0,16.38074670995968,16.38074670995968,0,0,0,0,0,1,1,0,0,0,50.46,53.68,48.37,25.38,6.666666666666667,1,1,0,0,9,8,4,1,475.6666666666667,1233657.610465095,811987.9538295064,334454.8049038853,0,3273.876371219721 -16231,20032,36531,-9,36529,36530,1,1,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-883.7413514419816,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.72,48.62,-9,-9,8.333333333333334,4,2,0,0,0,8,1,1,1039,0,0,0,0,0 -16232,20033,36532,36533,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.882444974358569,8.948403495153524,0,6,2,-38.49691893104676,-9,3,3,2019,9,0,37,0,1,1,0,17.56810684194173,17.56810684194173,0,0,0,0,0,0,0,0,0,0,54,54,48.14,50.72,8,1,1,0,0,7,13,5,1,284.5,354301.8399733961,430164.3233255714,89997.3012556653,0,3244.107019909351 -16232,20033,36533,36532,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.428114951474189,7.494926813155312,0,6,-2,-2.956019756065262,0,3,3,2019,6,0,26,21,1,0,0,7.522428263812079,7.522428263812079,0,0,0,0,0,0,0,0,0,0,48.14,50.72,54,54,10,1,1,0,0,7,13,5,1,284.5,354301.8399733961,430164.3233255714,89997.3012556653,0,3244.107019909351 -16232,20034,36534,-9,36533,36532,1,1,24,0,0,0,1,1,-9,0,4,8.090255937749273,8.395851779568035,0,0,0,-910.1881500379264,-9,2,2,2019,10,0,37,0,1,1,1,10.8904620268504,10.8904620268504,0,0,0,0,0,0,0,0,4.337839153171429,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,979,227545.3499700945,-80304.16136646534,28095.66891761827,43565.64471482523,1662.02364314249 -16233,20035,36535,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.632545931936413,8.847605999987953,0,0,0,-1012.840851946806,0,-9,-9,2019,34,12,56,50,1,12,0,16.31156668053612,16.31156668053612,0,0,0,0,0,0,0,0,0,0,25.89,44.62,-9,-9,3.333333333333333,4,2,0,0,7,10,5,1,163,-198440.4977663012,0,0,0,2944.080293672343 -16234,20036,36536,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.434493688846546,8.833621764436218,0,0,0,-1027.069149353909,0,2,2,2019,10,0,40,37,1,0,0,14.73053686109603,14.73053686109603,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,345,295201.0010834278,77694.35582494852,247395.6304741375,71554.76722814,2125.077045880221 -16235,20037,36537,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.640423439189167,8.597843435401272,0,0,0,-1136.251104882085,0,-9,-9,2019,17,4,60,60,1,4,0,9.760342364997737,9.760342364997737,0,0,0,0,0,0,0,0,8.91592464223621,0,42.32,56.35,-9,-9,3.333333333333333,1,1,0,0,8,6,5,1,1129,195114.4085346856,60297.27350100197,94979.74550297341,0,4169.771913329548 -16236,20038,36538,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.042182680455154,7.944045878014285,0,0,-1048.481334153912,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.653144408952218,8.441546365501527,57.16,56.15,-9,-9,0,1,1,0,0,0,11,4,1,1085,1024918.947176029,607904.9656800188,163405.6378170316,0,2271.880718805027 -16237,20039,36539,36540,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,7.787956072129826,7.777118070721226,9,2,135.7271232035427,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.507565251085256,7.869331568408501,51.17,49.39,54.2,57.49,8.333333333333334,1,1,0,1,8,10,3,1,620.5,1587688.468711418,1284879.861463627,526109.9667385523,115047.3926437299,1962.020354259333 -16237,20039,36540,36539,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.01051899236875,6.849660628148789,0,9,-2,-109.6652647292046,0,1,1,2019,9,1,16,16,1,1,0,9.750818184166295,9.750818184166295,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.17,49.39,8.333333333333334,1,1,0,0,10,10,3,1,620.5,1587688.468711418,1284879.861463627,526109.9667385523,115047.3926437299,1962.020354259333 -16237,20040,36541,-9,36540,36539,1,0,28,0,0,0,1,1,-9,0,4,8.408721294087892,8.176375873625998,0,0,0,-1151.507170659306,0,1,1,2019,9,0,40,38,1,0,1,9.023392219435042,9.023392219435042,0,0,0,0,0,0,0,0,0,0,46.69,58.35,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,266,172770.1271518972,62008.83936981015,0,0,1658.626587471611 -16238,20041,36542,-9,36544,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1132.320652074532,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,829.6666666666666,19898.86958168412,12419.77360364283,0,0,3688.789923537785 -16238,20041,36543,-9,36544,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.805295706836,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,829.6666666666666,19898.86958168412,12419.77360364283,0,0,3688.789923537785 -16238,20041,36544,-9,-9,-9,1,0,37,0,3,0,1,1,-9,0,3,7.879077059211865,7.980029426364643,6.46232992212835,0,0,-1055.118933042115,0,2,2,2019,13,1,25,30,1,1,0,8.009251200842415,8.009251200842415,0,0,0,0,0,1,1,0,6.121125434994133,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,829.6666666666666,19898.86958168412,12419.77360364283,0,0,3688.789923537785 -16239,20042,36545,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.189779571024799,8.812501432905357,0,0,0,-1058.152511958934,0,3,3,2019,10,1,45,45,1,1,0,21.88386496616573,21.88386496616573,0,0,0,0,0,0,0,0,8.713237233137125,0,49.8,54.33,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,1336,2285349.402303562,1700045.566796809,659629.6894565317,236266.1628620095,4224.191890415243 -16239,20043,36546,-9,36545,-9,1,0,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1080.741933586025,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.441355423509608,0,47.4,39.33,-9,-9,10,1,1,0,0,2,10,1,0,1536,55716.92956099004,0,0,0,142.137066340278 -16240,20044,36547,36548,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.217602024929379,7.191196954590988,0,31,-2,43.93563150653907,0,2,2,2019,7,1,20,20,1,1,0,8.951778096253914,8.951778096253914,0,0,0,0,0,0,0,0,.9697157647352687,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,9,4,5,1,297.5,1531231.299867246,949720.7101035935,384881.3002261976,0,3055.582652464202 -16240,20044,36548,36547,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.769824258065512,8.843044812832309,0,31,2,-135.3605567690294,0,3,2,2019,9,0,42,44,1,0,0,18.48544846832225,18.48544846832225,0,0,0,0,0,0,0,0,2.07435094220303,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,297.5,1531231.299867246,949720.7101035935,384881.3002261976,0,3055.582652464202 -16240,20045,36549,-9,36547,36548,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-989.2016408839776,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,551,-42757.62300756694,0,0,0,0 -16241,20046,36550,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1071.109021754898,0,3,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.48,26.72,-9,-9,5,1,1,0,0,0,13,1,1,243,-184551.6731542495,0,0,0,1330.674937631117 -16242,20047,36551,36553,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,9.031450865252896,9.32181306500385,0,6,-1,58.66559437282289,0,-9,-9,2019,15,4,30,40,1,4,0,38.34966553840292,38.34966553840292,0,0,0,0,0,0,0,0,2.622682980260926,0,31.35,66.34,53.86,49.64,8.333333333333334,1,1,0,0,6,8,5,1,969,964168.5444656244,433573.7462720694,739898.0422754441,270628.3375159708,11752.87759318167 -16242,20047,36552,-9,36553,36551,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.818918537464,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,969,964168.5444656244,433573.7462720694,739898.0422754441,270628.3375159708,11752.87759318167 -16242,20047,36553,36551,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,9.43346452534905,9.54278294223216,0,6,1,31.29722269447906,0,-9,-9,2019,10,0,44,40,1,0,0,33.16007312056632,33.16007312056632,0,0,0,0,0,0,0,0,9.408966132590299,0,53.86,49.64,31.35,66.34,6.666666666666667,1,1,0,0,6,8,5,1,969,964168.5444656244,433573.7462720694,739898.0422754441,270628.3375159708,11752.87759318167 -16243,20048,36554,36555,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.867272628174701,8.166295015325806,0,23,3,65.62034474442929,0,2,2,2019,11,0,30,24,1,0,0,9.620910340401531,9.620910340401531,0,0,0,0,0,0,0,0,4.573072263629691,0,44.87,56.46,60.12,54.8,6.666666666666667,1,1,0,0,8,4,5,1,857.5,327046.5094834355,147748.086468941,113226.9522958379,28428.12010276808,2829.887333083105 -16243,20048,36555,36554,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.359748060584183,8.585580908847149,0,23,-3,101.8307765437344,0,2,-9,2019,6,0,47,42,1,0,0,16.07384854649568,16.07384854649568,0,0,0,0,0,0,0,0,0,0,60.12,54.8,44.87,56.46,6.666666666666667,1,1,0,0,8,4,5,1,857.5,327046.5094834355,147748.086468941,113226.9522958379,28428.12010276808,2829.887333083105 -16243,20049,36556,-9,36554,36555,1,1,25,0,0,0,2,2,-9,0,4,7.966347818083641,7.926366032235849,0,0,0,-913.4629701210185,0,2,2,2019,25,10,36,41,1,10,1,7.465977220058565,7.465977220058565,0,0,0,0,0,0,0,0,2.632054500504628,0,17.85,67.64,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,1529,-145492.9817187709,0,0,0,1906.33773752122 -16244,20050,36557,36558,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.676131194630305,7.743724529279317,0,27,-7,-47.30724583603809,0,2,2,2019,10,0,24,24,1,0,0,11.512272394749,11.512272394749,0,0,0,0,0,0,0,0,0,0,57.07,46.71,54.79,55.86,8.333333333333334,1,1,0,0,12,12,5,1,1593,327155.9408142096,174975.0955287302,257105.7986777471,86871.41005299422,3816.570322097615 -16244,20050,36558,36557,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.780144374409312,8.524396398239727,0,27,7,-134.4102670689312,0,2,2,2019,11,0,84,84,1,0,0,8.335486498236159,8.335486498236159,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.07,46.71,10,1,1,0,0,12,12,5,1,1593,327155.9408142096,174975.0955287302,257105.7986777471,86871.41005299422,3816.570322097615 -16245,20051,36559,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,8.093150198710275,8.303179688210795,5.205747274571604,0,0,-1030.552499772419,0,3,3,2019,11,0,34,34,1,0,0,10.97453498857248,10.97453498857248,0,0,0,0,0,1,1,0,5.482841258685793,5.184475517032115,54.77,31.94,-9,-9,6.666666666666667,1,1,0,0,9,11,4,0,1119,584516.234948835,32283.37810380587,324451.1414404009,0,3366.096595613853 -16246,20052,36560,-9,36562,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.0221242546535,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,1248.25,35144.62277720231,0,0,0,1840.116509396859 -16246,20052,36561,-9,36562,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-885.8707559066428,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,1248.25,35144.62277720231,0,0,0,1840.116509396859 -16246,20052,36562,-9,-9,-9,1,0,36,0,3,0,1,1,-9,1,4,0,0,0,0,0,-1044.550739646299,0,3,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1248.25,35144.62277720231,0,0,0,1840.116509396859 -16246,20052,36563,-9,36562,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1132.183834086,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,3,4,-9,0,0,8,1,0,1248.25,35144.62277720231,0,0,0,1840.116509396859 -16247,20053,36564,36565,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.42347275619955,6.745487588470331,57,-3,-76.24272088299192,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.779307439629985,6.540079001269534,55.6,37.07,42.7,46.47,8.333333333333334,1,1,0,0,0,9,4,1,2740,2468564.113198929,912638.4497241646,990012.7380692207,0,3513.173048322773 -16247,20053,36565,36564,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.474014491542132,8.245332650831649,57,3,99.09889829221746,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.089270222335376,8.201114084368054,42.7,46.47,55.6,37.07,8.333333333333334,1,1,0,0,4,9,4,1,2740,2468564.113198929,912638.4497241646,990012.7380692207,0,3513.173048322773 -16247,20054,36566,-9,36564,36565,1,1,31,0,0,0,2,2,-9,0,4,7.195202269098702,7.50610984153544,0,0,0,-919.9628673962085,0,2,1,2019,3,0,37,21,1,0,0,4.708683670685218,4.708683670685218,0,0,0,0,0,1,1,0,.3660285108084838,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,2784,-13887.48292011248,42260.37749628814,0,0,943.7330815314261 -16248,20055,36567,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.2031407212889,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,8,1,0,692,-46039.10120800327,0,56696.37292377449,0,1565.402441019182 -16249,20056,36568,36569,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.824292176580561,8.021968934793692,0,11,-4,27.94754516805166,0,3,2,2019,13,2,39,0,1,2,0,9.113801221858775,9.113801221858775,0,0,0,0,2,1,1,0,0,0,40.12,56.01,46.39,52.95,6.666666666666667,1,1,0,0,1,12,3,0,553.5,360426.9208581478,204707.3875736498,33992.69687993739,0,2419.188928765748 -16249,20056,36569,36568,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.605537982373415,7.551955216915372,0,11,4,63.39305706278243,0,-9,3,2019,12,0,39,36,1,0,0,5.564544193377227,5.564544193377227,0,0,0,0,0,1,1,0,0,0,46.39,52.95,40.12,56.01,8.333333333333334,1,1,0,0,9,12,3,0,553.5,360426.9208581478,204707.3875736498,33992.69687993739,0,2419.188928765748 -16249,20056,36570,-9,36568,36569,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.5447161779525,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,553.5,360426.9208581478,204707.3875736498,33992.69687993739,0,2419.188928765748 -16249,20056,36571,-9,36568,36569,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-911.2461280057817,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,0,12,3,0,553.5,360426.9208581478,204707.3875736498,33992.69687993739,0,2419.188928765748 -16250,20057,36572,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.877821561285673,8.526513005329749,0,0,0,-1057.243633895764,0,3,1,2019,12,0,43,42,1,0,0,14.63032619598521,14.63032619598521,0,0,0,0,0,0,0,0,0,0,42.46,41.62,-9,-9,8.333333333333334,1,1,0,0,13,11,5,1,792,91214.41971973359,45956.48394547788,421018.9917425461,301040.6426717678,1775.151436441517 -16251,20058,36573,-9,-9,-9,1,0,71,0,1,0,3,3,-9,0,3,0,0,0,0,0,-842.1468076685603,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,55.48,47.38,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,94,-87052.0925240849,0,0,0,858.1128593795299 -16251,20059,36574,36575,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.888368809756249,9.084373268642759,0,8,6,46.06086583716964,0,2,2,2019,7,0,48,40,1,0,0,15.60399381162756,15.60399381162756,0,0,0,0,0,1,1,0,0,0,57.16,56.15,22.38,50.85,8.333333333333334,1,1,0,0,9,10,5,1,1062,104885.7392955149,81729.71121512968,152683.587732231,96591.27225349334,4710.737715860958 -16251,20059,36575,36574,36573,-9,1,1,47,0,1,0,2,2,-9,0,2,8.810996339423243,8.782413743793541,0,8,-6,-94.13073778562129,0,2,2,2019,27,12,44,43,1,12,0,16.26100849808721,16.26100849808721,0,0,0,0,0,1,1,0,0,0,22.38,50.85,57.16,56.15,1.666666666666667,1,1,0,1,9,10,5,1,1062,104885.7392955149,81729.71121512968,152683.587732231,96591.27225349334,4710.737715860958 -16252,20060,36576,-9,-9,36578,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-942.7023511947635,-9,-9,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,0,839.3333333333334,-14490.41614875463,0,0,0,2522.916311778903 -16252,20060,36577,36578,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,0,0,0,21,-6,-54.30050981308327,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.61,55.45,41.34,56.62,5,2,3,1,0,0,2,2,0,839.3333333333334,-14490.41614875463,0,0,0,2522.916311778903 -16252,20060,36578,36577,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,6.600858816323599,6.960718327346986,0,10,6,-5.474756748992436,0,-9,-9,2019,9,0,37,37,1,0,0,2.625738865443654,2.625738865443654,0,0,0,0,0,1,1,0,0,0,41.34,56.62,35.61,55.45,1.666666666666667,2,3,0,0,13,2,2,0,839.3333333333334,-14490.41614875463,0,0,0,2522.916311778903 -16252,20061,36579,-9,36577,36578,1,1,18,0,1,1,3,0,0,0,3,0,0,0,0,0,-993.4514310609953,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,5,2,3,0,0,0,2,1,0,88,0,0,0,0,0 -16253,20062,36580,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1073.064477745559,0,2,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.14,27.03,-9,-9,0,1,1,1,1,0,11,1,1,557,-12057.55182469298,0,-4283.552427556227,21962.53305738703,677.1576754614753 -16254,20063,36581,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,7.3714405202378,7.451712292595332,0,0,0,-899.6308602900034,0,3,-9,2019,17,6,40,45,1,6,0,5.745232576295636,5.745232576295636,0,0,0,0,0,0,0,0,0,0,44.59,51.55,-9,-9,5,1,1,0,1,8,2,3,1,287,0,0,0,0,777.8645320261453 -16255,20064,36582,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.295922594791787,8.73225099247524,0,0,0,-937.9278378298122,0,1,2,2019,8,0,42,42,1,0,0,10.40989948943327,10.40989948943327,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,391,876718.0233617569,726010.3040575571,24427.68315815832,74644.29453126626,1899.068170784433 -16256,20065,36583,36584,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,8,-5,-88.91970564026215,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.847084884440955,0,58.3,52.91,48.15,33.2,10,1,1,0,0,0,5,2,1,476,447373.4321724589,135418.2854942542,129367.3055094698,0,1373.962217073569 -16256,20065,36584,36583,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.117466999495119,7.45665315176122,8,5,-86.29970457745647,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,33.57269207255644,0,0,1,1,0,6.604696106965744,7.265881265861462,48.15,33.2,58.3,52.91,6.666666666666667,1,1,0,0,0,5,2,1,476,447373.4321724589,135418.2854942542,129367.3055094698,0,1373.962217073569 -16257,20066,36585,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.249400422211985,7.388160207126999,0,0,-970.5871075281292,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,8.096280744519795,7.268732854128481,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,419,620398.3243464533,651787.3498026484,0,0,1497.818007527417 -16258,20067,36586,-9,36588,36587,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-999.4841559858965,-9,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,1,13,5,1,201.6666666666667,1927922.680876366,1499655.974637594,336733.9735041268,0,3929.471544572645 -16258,20067,36587,36588,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.483455135372132,8.822989018274843,0,5,6,-117.6927051506978,0,3,3,2019,8,0,45,45,1,0,0,13.50596011478649,13.50596011478649,0,0,0,0,2,1,1,0,0,0,55.47,52.91,51.9,53.61,8.333333333333334,1,1,0,0,10,13,5,1,201.6666666666667,1927922.680876366,1499655.974637594,336733.9735041268,0,3929.471544572645 -16258,20067,36588,36587,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.597087670826051,8.881522055155582,0,5,-6,81.11370478212008,0,2,3,2019,10,0,38,36,1,0,0,18.44784582050626,18.44784582050626,0,0,0,0,2,1,1,0,0,0,51.9,53.61,55.47,52.91,6.666666666666667,1,1,0,0,10,13,5,1,201.6666666666667,1927922.680876366,1499655.974637594,336733.9735041268,0,3929.471544572645 -16258,20068,36589,-9,36588,36587,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1032.462230405218,-9,1,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,4,13,1,1,310,-293361.2645071789,0,0,0,-932.3219531304574 -16258,20069,36590,-9,36588,36587,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-993.4553650463536,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.36836620528203,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,2909,67768.23960670385,0,0,0,1015.672821538672 -16259,20070,36591,36592,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.24946579736366,8.544139746425499,0,30,-5,28.88013542221442,0,2,-9,2019,11,0,37,38,1,0,0,16.02120680923608,16.02120680923608,0,0,0,0,0,1,1,0,0,0,52.97,48.43,63.26,29.17,8.333333333333334,1,1,0,0,8,1,5,0,444,1151134.8119138,975234.1709209025,194820.6583099696,29546.80787422536,3898.466630427707 -16259,20070,36592,36591,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.985058016897451,7.862799559263723,5.852435368734648,30,5,-64.57530702438696,0,2,2,2019,5,0,30,30,1,0,0,9.705801454898564,9.705801454898564,0,0,0,0,0,1,1,0,.776051784619591,5.825228329111057,63.26,29.17,52.97,48.43,10,1,1,0,0,10,1,5,0,444,1151134.8119138,975234.1709209025,194820.6583099696,29546.80787422536,3898.466630427707 -16260,20071,36593,36596,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.303458070793543,8.762566385685732,5.675982246345503,5,4,75.3455953291907,0,2,2,2019,10,2,31,30,1,2,0,20.51292448705971,20.51292448705971,0,0,0,0,0,1,1,0,5.577492566731807,0,57.06,57.76,47.62,56.48,8.333333333333334,1,1,0,0,10,5,5,1,846.5,149741.9825234099,31950.70255473218,255095.2567193211,176913.3686451275,4610.478198822371 -16260,20071,36594,-9,36593,36596,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.9643812861,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,846.5,149741.9825234099,31950.70255473218,255095.2567193211,176913.3686451275,4610.478198822371 -16260,20071,36595,-9,36593,36596,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.853110677749,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,846.5,149741.9825234099,31950.70255473218,255095.2567193211,176913.3686451275,4610.478198822371 -16260,20071,36596,36593,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.127769713003399,9.206989734544683,0,5,-4,98.1734048664616,0,-9,-9,2019,12,1,48,50,1,1,0,19.11782944940885,19.11782944940885,0,0,0,0,0,1,1,0,0,0,47.62,56.48,57.06,57.76,8.333333333333334,1,1,0,0,11,5,5,1,846.5,149741.9825234099,31950.70255473218,255095.2567193211,176913.3686451275,4610.478198822371 -16261,20072,36597,36598,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,35,-6,134.1883691273489,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,.4878501043428418,0,0,0,0,4.202198996999018,0,53.98,42.84,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,964.5,2086387.054109342,1183271.003766804,733137.5294544114,0,2952.159413180386 -16261,20072,36598,36597,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.49189016042965,8.361101153161949,35,6,61.54458334627543,0,3,3,2019,6,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,6.191952366165934,8.683984352088059,57.06,57.76,53.98,42.84,10,1,1,0,0,10,7,4,1,964.5,2086387.054109342,1183271.003766804,733137.5294544114,0,2952.159413180386 -16262,20073,36599,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.35908043469114,7.714538933500861,0,0,-1021.519351422864,0,1,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,6.476433701855028,7.36568787762532,40.19,42.36,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,2132,465455.3421390227,117865.6507226832,248620.5011601733,0,1578.964981021654 -16263,20074,36600,36601,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.109206094375683,8.501352084002539,0,31,-11,-37.60735155827855,0,3,1,2019,21,9,18,22,1,9,0,27.01276600424407,27.01276600424407,0,0,0,0,0,1,1,0,8.922394239029995,0,47.59,55.4,51.42,48.12,8.333333333333334,1,1,0,0,9,8,5,1,992.5,2483123.842377181,1535929.91067952,517889.6063300023,0,12998.08845056394 -16263,20074,36601,36600,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,8.997984064748307,9.385460625880725,8.28313012328487,8,11,-153.7155643482142,0,-9,-9,2019,12,1,25,42,1,1,0,45.77581095462243,45.77581095462243,0,0,0,0,0,1,1,0,9.770571726832985,8.680046187173279,51.42,48.12,47.59,55.4,8.333333333333334,1,1,0,0,9,8,5,1,992.5,2483123.842377181,1535929.91067952,517889.6063300023,0,12998.08845056394 -16263,20075,36602,-9,36600,36601,1,0,25,0,0,0,1,1,1,0,3,8.180156581594284,8.33206920940151,0,0,0,-932.8837255519909,-9,2,1,2019,6,0,38,0,1,0,1,10.84592601085296,10.84592601085296,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,1700,-25447.91287865618,-72756.94270469566,0,0,1139.072321365764 -16263,20076,36603,-9,36600,36601,1,1,23,0,0,0,1,1,-9,0,3,8.341218408929974,8.645836726287479,0,0,0,-1034.959377656883,-9,2,1,2019,5,0,38,0,1,0,1,14.29243186035749,14.29243186035749,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,84,-114450.4428426179,132386.9303858971,0,0,1930.1130332184 -16264,20077,36604,-9,36605,36606,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1019.312297813787,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,338.6666666666667,65703.46894570877,16799.99192938443,125581.1368391123,68295.67411970065,3493.326844946448 -16264,20077,36605,36606,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.720175217228077,7.879037029489265,0,29,-2,-33.02729933950056,0,3,3,2019,12,0,23,24,1,0,0,14.29341567964744,14.29341567964744,0,0,0,0,0,1,1,0,.6958014111861128,0,46.33,55.93,56.35,48.33,8.333333333333334,1,1,0,0,12,2,4,1,338.6666666666667,65703.46894570877,16799.99192938443,125581.1368391123,68295.67411970065,3493.326844946448 -16264,20077,36606,36605,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.292292725670507,8.242623404615696,0,29,2,-11.17549065746514,0,3,3,2019,12,2,46,45,1,2,0,15.21659984649031,15.21659984649031,0,0,0,0,0,1,1,0,0,0,56.35,48.33,46.33,55.93,8.333333333333334,1,1,0,0,12,2,4,1,338.6666666666667,65703.46894570877,16799.99192938443,125581.1368391123,68295.67411970065,3493.326844946448 -16265,20078,36607,36608,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,5.963960577390715,5.930523505979911,42,4,108.0995397666237,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.874425189399303,57.18,45.76,49.14,39.45,8.333333333333334,1,1,0,0,0,2,2,0,941,352400.813206145,295804.9196076907,82472.96215216571,0,2512.623033819739 -16265,20078,36608,36607,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,6,-4,20.94851942460993,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,39.45,57.18,45.76,10,1,1,0,0,0,2,2,0,941,352400.813206145,295804.9196076907,82472.96215216571,0,2512.623033819739 -16265,20079,36609,-9,36610,-9,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1007.101974508666,-9,-9,-9,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.25,56.93,-9,-9,10,1,1,0,0,0,2,4,0,1505.5,-94712.69207494099,-4647.905706471673,0,0,1698.027780676972 -16265,20079,36610,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.340974579457498,8.328442437330306,0,0,0,-1050.528915887635,-9,-9,-9,2019,12,0,40,0,1,2,0,12.68169853990624,12.68169853990624,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,4,0,1505.5,-94712.69207494099,-4647.905706471673,0,0,1698.027780676972 -16266,20080,36611,36612,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.700664321763901,8.642443728269532,0,7,7,106.0018992613567,0,-9,-9,2019,9,0,50,50,1,1,0,15.41845583717369,15.41845583717369,0,0,0,0,0,0,0,0,0,0,54,54,22.02,56.51,8,1,1,0,0,1,6,5,0,429.5,465672.357913296,209021.8622590778,77318.00032976222,31338.99358253963,3929.626802765094 -16266,20080,36612,36611,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,8.005827724964385,7.843487727105403,0,21,-7,1.854399769561097,0,-9,-9,2019,15,3,20,32,1,3,0,25.27662879667323,25.27662879667323,0,0,0,0,7,0,0,0,6.927740466564493,0,22.02,56.51,54,54,3.333333333333333,1,1,0,0,10,6,5,0,429.5,465672.357913296,209021.8622590778,77318.00032976222,31338.99358253963,3929.626802765094 -16267,20081,36613,36614,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-104.3908323950642,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,59.7,43.01,8.333333333333334,1,1,0,0,9,2,2,1,594,330817.9277797053,299385.9870406765,109151.4698879024,0,1857.87527179665 -16267,20081,36614,36613,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.421568795455548,7.291105224700232,47,2,125.7561047411235,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.768269363862397,7.397711941713649,59.7,43.01,51.94,55.88,8.333333333333334,1,1,0,0,0,2,2,1,594,330817.9277797053,299385.9870406765,109151.4698879024,0,1857.87527179665 -16268,20082,36615,36616,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.031647991535369,7.666173781388079,0,8,-7,2.578860391136091,0,2,3,2019,17,6,40,38,1,6,0,8.795607873285704,8.795607873285704,0,0,0,0,0,0,0,0,0,0,40.4,34.4,42.11,40.08,3.333333333333333,1,1,0,1,10,9,3,1,757,918639.6382285382,411538.1315131947,384774.6124003115,0,807.829323324176 -16268,20082,36616,36615,-9,-9,1,1,64,0,0,0,3,3,-9,1,3,0,0,0,8,7,-38.57014727850344,0,-9,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,42.11,40.08,40.4,34.4,5,1,1,0,0,8,9,3,1,757,918639.6382285382,411538.1315131947,384774.6124003115,0,807.829323324176 -16268,20083,36617,-9,36615,36616,1,1,29,0,0,0,2,2,-9,0,2,6.937583511425507,7.062224124114993,0,0,0,-1119.179417766193,0,2,2,2019,13,2,20,22,1,2,1,6.456548046687578,6.456548046687578,0,0,0,0,0,0,0,0,0,0,45.4,42.99,-9,-9,3.333333333333333,1,1,0,0,7,9,2,1,1155,-49759.65575496697,20263.4693234455,0,0,687.2575709045426 -16269,20084,36618,36619,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,26,0,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.4821552069483203,0,32.72,25.62,60.86,19.3,5,1,1,0,0,0,4,1,1,375,-51384.640090334,-27042.18113636299,0,0,1709.596588582728 -16269,20084,36619,36618,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,27,0,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,60.86,19.3,32.72,25.62,5,1,1,0,0,0,4,1,1,375,-51384.640090334,-27042.18113636299,0,0,1709.596588582728 -16270,20085,36620,36621,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.14569913231133,8.145055141286971,33,3,34.33460542034249,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.336305893967475,55.09,55.87,56.34,40.63,8.333333333333334,1,1,0,0,8,9,4,1,354.5,3281739.38884527,2085052.378977888,348679.3969773466,0,3694.907067825253 -16270,20085,36621,36620,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.933667371059149,7.636647860942854,7.16093701106578,35,-3,12.7047954018833,0,2,2,2019,8,1,22,6,1,1,0,6.638463304212093,6.638463304212093,0,0,0,0,0,1,1,0,2.571606342226881,7.502480954230716,56.34,40.63,55.09,55.87,8.333333333333334,1,1,0,0,12,9,4,1,354.5,3281739.38884527,2085052.378977888,348679.3969773466,0,3694.907067825253 -16271,20086,36622,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.757280731481926,5.802656076109291,0,0,-900.9052380953593,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.92183808358892,53.93,48.41,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,644,919918.0101045239,0,338039.8413181372,0,164.3301206365923 -16272,20087,36623,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.605671005311542,5.830589952852583,0,0,-1099.298793899376,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.396880263908554,5.776647515957298,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,189,484215.7725123978,225477.0785863361,285986.742155264,0,661.9681636356615 -16273,20088,36624,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-980.8927729115121,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,1,1010,225345.5183954879,0,163979.1329454333,0,758.960273957557 -16274,20089,36625,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.728970730672416,7.524718706516834,0,0,0,-1046.038146342007,0,3,2,2019,6,0,27,28,1,0,0,10.46588710566761,10.46588710566761,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,257,261688.6226728346,65521.88192342916,106569.7246548003,18083.72786024867,457.2422813685956 -16275,20090,36626,36627,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.571950031735362,5.460532767086058,40,-3,-62.34778158801104,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.429462782158136,5.991385413446481,57.1,41.16,53.83,53.69,8.333333333333334,1,1,0,0,0,5,5,1,163.5,1899580.675146155,1451856.555409584,357350.0115594633,0,7959.739906385181 -16275,20090,36627,36626,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.654926470027084,10.32899951036992,8.704842771168602,40,3,-100.6985347609784,0,2,3,2019,6,0,20,20,1,0,0,104.394663092335,104.394663092335,0,0,0,0,0,0,0,0,8.800092969808119,8.975389289574814,53.83,53.69,57.1,41.16,8.333333333333334,1,1,0,0,8,5,5,1,163.5,1899580.675146155,1451856.555409584,357350.0115594633,0,7959.739906385181 -16276,20091,36628,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1121.168918356438,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,28.72144714129328,0,283.4791137068514,0,1,1,0,0,0,50.81,22.66,-9,-9,0,1,1,0,0,0,9,1,0,1088,65240.21666470508,0,0,0,1038.341076614394 -16277,20092,36629,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.770150972201777,7.45041499102965,0,0,0,-1121.523929370302,0,-9,-9,2019,12,0,48,42,1,0,0,3.863149354948527,3.863149354948527,0,0,0,0,0,1,1,0,0,0,35.76,57.79,-9,-9,8.333333333333334,2,3,0,0,7,9,3,0,1771,-98525.18490796184,-8763.303554774,0,0,979.5879505574094 -16278,20093,36630,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,8.010083281835161,7.85909825582327,0,0,-1010.905043654023,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.909022240204076,7.67969540665788,50.07,41.19,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,812,899806.8740184467,1041184.546572373,0,0,2063.847959857154 -16279,20094,36631,36632,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.699129141496295,8.172275986183481,0,35,5,14.65938436457632,0,3,3,2019,13,1,30,28,1,1,0,9.346955959456198,9.346955959456198,0,0,0,0,2,0,0,0,1.547118371140422,0,45.56,60.26,57.16,56.15,1.666666666666667,1,1,0,0,11,8,3,1,948,274614.641133022,0,314822.994808576,31063.53236730319,1615.030244940438 -16279,20094,36632,36631,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.466341632126949,7.21388407542203,0,33,-5,-74.52048413562808,0,2,2,2019,6,0,35,16,1,0,0,4.433567038843777,4.433567038843777,0,0,0,0,2,0,0,0,3.221729493847862,0,57.16,56.15,45.56,60.26,8.333333333333334,1,1,0,0,11,8,3,1,948,274614.641133022,0,314822.994808576,31063.53236730319,1615.030244940438 -16279,20095,36633,-9,36631,36632,1,0,27,0,0,0,1,1,-9,0,4,8.073106908697046,8.368438800846336,0,0,0,-925.8056945120643,0,2,2,2019,6,1,36,40,1,1,1,12.6954427890338,12.6954427890338,0,0,0,0,0,0,0,0,3.930267643020353,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,465,218276.0754392349,-16509.99199702375,0,0,1720.407612418698 -16280,20096,36634,36635,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.295366308289779,9.678647125063856,0,19,-1,-5.277243205019151,0,3,3,2019,12,0,2,41,1,0,0,586.479987859877,586.479987859877,0,0,0,0,0,0,0,0,5.472038610177745,0,37.99,47.35,57.06,57.76,6.666666666666667,2,3,0,0,10,8,5,1,647,241194.5251536769,16462.26317329369,609321.9206522803,398555.6974010553,8196.213224990541 -16280,20096,36635,36634,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.653852317491966,9.483659108902593,0,19,1,-18.82396267181169,0,2,2,2019,2,0,40,40,1,0,0,47.2919979540786,47.2919979540786,0,0,0,0,0,0,0,0,4.820758068750871,0,57.06,57.76,37.99,47.35,8.333333333333334,1,1,0,0,9,8,5,1,647,241194.5251536769,16462.26317329369,609321.9206522803,398555.6974010553,8196.213224990541 -16281,20097,36636,36637,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.83332295357939,6.104462071242692,59,4,-25.83995882765005,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.957880439486082,53,46,51,46,7,2,3,0,0,3,8,2,1,306,89076.93036144364,175287.414401822,0,0,602.7899346897148 -16281,20097,36637,36636,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,10,-4,56.29457865232467,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,46,7,2,3,0,0,0,8,2,1,306,89076.93036144364,175287.414401822,0,0,602.7899346897148 -16282,20098,36638,36639,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,-3,55.84960728173841,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.08,41.91,54.78,26.41,8.333333333333334,1,1,0,0,6,12,2,1,651,712914.5252487924,228224.1870242531,146974.9337905949,0,847.8302245251056 -16282,20098,36639,36638,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.294870312322129,5.978126849758857,32,3,-5.436875148354432,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.085229792350947,54.78,26.41,53.08,41.91,5,1,1,0,0,7,12,2,1,651,712914.5252487924,228224.1870242531,146974.9337905949,0,847.8302245251056 -16283,20099,36640,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.565853919001,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,30.28,37.74,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,246,426137.8009785045,0,210694.179249402,0,1058.92183194114 -16284,20100,36641,36643,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,5.669749616461983,5.815773397260012,0,10,3,34.73521795076799,0,2,2,2019,11,0,15,0,1,0,0,2.006042993497366,2.006042993497366,0,0,0,0,0,1,1,0,0,0,51.34,49.37,51.77,58.57,6.666666666666667,1,1,0,0,8,12,5,1,1613.333333333333,762326.7486766611,613527.935458145,311396.7546669527,94559.92169562091,6181.444313461044 -16284,20100,36642,-9,36641,36643,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1073.730459631235,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1613.333333333333,762326.7486766611,613527.935458145,311396.7546669527,94559.92169562091,6181.444313461044 -16284,20100,36643,36641,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.646546677360631,9.756383213199353,0,10,-3,-82.99299731833642,0,1,1,2019,9,0,50,50,1,0,0,34.8572490611116,34.8572490611116,0,0,0,0,0,1,1,0,5.705894232971769,0,51.77,58.57,51.34,49.37,8.333333333333334,1,1,0,0,12,12,5,1,1613.333333333333,762326.7486766611,613527.935458145,311396.7546669527,94559.92169562091,6181.444313461044 -16284,20101,36644,-9,36641,36643,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-958.5778415159302,-9,2,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,28.16,65.32000000000001,-9,-9,6.666666666666667,1,1,0,0,1,12,2,1,310,51631.59604961264,0,0,0,0 -16285,20102,36645,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.053493160838276,8.048443407645511,0,0,0,-905.120914153742,0,3,2,2019,11,0,40,40,1,0,0,9.331888153842174,9.331888153842174,0,0,0,0,0,0,0,0,0,0,45.58,55.84,-9,-9,5,1,1,0,0,11,7,4,0,317,-51708.42394015227,9443.015545828386,0,0,1292.21658290025 -16285,20103,36646,-9,36645,-9,1,0,21,0,0,0,2,2,-9,0,4,8.186743905327704,8.232565501566979,0,0,0,-820.0684202408067,0,3,-9,2019,12,0,40,43,1,2,1,10.38446695600825,10.38446695600825,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,4,0,1021,-14033.80280110269,0,0,0,1469.991270551822 -16286,20104,36647,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1057.899112938092,0,1,2,2019,8,0,0,43,3,0,0,0,0,0,0,0,0,0,1,1,0,3.987087236439646,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,8,5,1,1,95,64691.74526712648,0,0,0,-457.9888242553496 -16287,20105,36648,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.908116085539698,7.916677702347044,0,0,0,-1028.699458836621,0,2,2,2019,6,0,10,90,1,0,0,35.71097825355098,35.71097825355098,0,0,0,0,14.5,0,0,0,7.155514467871901,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,1307,49595.19293722464,28344.99720979007,0,0,1840.581352492906 -16288,20106,36649,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.29889614567599,7.718585784702069,0,0,-874.0707610360762,0,2,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,27,0,0,0,0,7.769631783051293,33.42,54.81,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,166,827539.9554407331,670244.1627395818,128741.4616624353,0,776.5345752923156 -16289,20107,36650,-9,36651,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1081.323792236996,-9,3,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,5,2,1,709.5,-48458.27188501996,31156.65824113768,0,0,1014.340670208084 -16289,20107,36651,-9,-9,-9,1,0,40,0,1,0,3,3,-9,0,1,7.093702975075883,7.309945126662261,0,0,0,-962.8838838794229,0,2,2,2019,22,9,20,20,1,9,0,8.046045520702643,8.046045520702643,0,0,0,0,0,1,1,0,0,0,41,42.2,-9,-9,1.666666666666667,2,3,0,1,8,5,2,1,709.5,-48458.27188501996,31156.65824113768,0,0,1014.340670208084 -16290,20108,36652,-9,36654,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.875310011928,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,537.6666666666666,-60498.18350515905,-63360.25141811441,0,0,2324.374094902845 -16290,20108,36653,-9,36654,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1237.36586119365,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,537.6666666666666,-60498.18350515905,-63360.25141811441,0,0,2324.374094902845 -16290,20108,36654,-9,-9,-9,1,0,31,0,2,0,1,1,1,0,2,8.413961985273771,8.333408266132201,0,0,0,-963.4675595817519,-9,3,2,2019,24,12,40,0,1,12,0,10.72622509779096,10.72622509779096,0,0,0,0,0,1,1,0,0,0,28.81,57.6,-9,-9,3.333333333333333,1,1,0,0,6,13,3,0,537.6666666666666,-60498.18350515905,-63360.25141811441,0,0,2324.374094902845 -16291,20109,36655,36657,-9,-9,1,0,30,1,1,0,1,1,-9,0,2,7.618530026258323,7.992152774659979,0,1,-4,123.5032673523703,-9,-9,-9,2019,13,2,32,0,1,2,0,8.373968179859208,8.373968179859208,0,0,0,0,0,0,0,0,7.065791958226374,0,34.79,47.81,16.69,64.48,5,2,3,0,0,2,8,5,1,2573.666666666667,438633.3590084517,29016.38312654513,258044.2583648226,169098.4258777701,5673.455692773433 -16291,20109,36656,-9,36655,36657,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.770652817698,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,2573.666666666667,438633.3590084517,29016.38312654513,258044.2583648226,169098.4258777701,5673.455692773433 -16291,20109,36657,36655,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.23989855652127,9.448103971964828,0,1,4,-58.14785793136855,-9,-9,-9,2019,27,12,41,0,1,12,0,36.01776688980433,36.01776688980433,0,0,0,0,0,0,0,0,0,0,16.69,64.48,34.79,47.81,3.333333333333333,2,3,0,0,4,8,5,1,2573.666666666667,438633.3590084517,29016.38312654513,258044.2583648226,169098.4258777701,5673.455692773433 -16292,20110,36658,36660,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.381743603020382,7.483271764627982,0,10,-4,60.80878619316363,0,-9,3,2019,15,3,16,23,1,3,0,11.88891675597554,11.88891675597554,0,0,0,0,0,1,1,0,0,0,41,40,46.32,53.44,5,1,1,0,0,4,6,4,0,268.6666666666667,483384.4595313981,385992.3683262204,0,0,2197.066698305587 -16292,20110,36659,-9,36658,36660,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-977.0447595730726,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,6,4,0,268.6666666666667,483384.4595313981,385992.3683262204,0,0,2197.066698305587 -16292,20110,36660,36658,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.149714564671415,8.009181213365666,0,10,4,-53.97114783188072,0,2,2,2019,12,0,40,40,1,0,0,7.968850733407946,7.968850733407946,0,0,0,0,0,1,1,0,0,0,46.32,53.44,41,40,5,1,1,0,0,11,6,4,0,268.6666666666667,483384.4595313981,385992.3683262204,0,0,2197.066698305587 -16293,20111,36661,-9,36665,36663,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.938386233396,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,1,0,779,22213.03175842391,0,0,0,2885.995285696855 -16293,20111,36662,-9,36665,36663,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1059.538433761614,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,8,1,0,779,22213.03175842391,0,0,0,2885.995285696855 -16293,20111,36663,36665,-9,-9,1,1,44,0,3,0,2,2,-9,0,2,0,0,0,8,7,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.65,52.38,47.25,40.83,3.333333333333333,4,2,1,0,0,8,1,0,779,22213.03175842391,0,0,0,2885.995285696855 -16293,20111,36664,-9,36665,36663,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.717897550152,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,8,1,0,779,22213.03175842391,0,0,0,2885.995285696855 -16293,20111,36665,36663,-9,-9,1,0,37,0,3,0,2,2,-9,0,2,0,0,0,8,-7,0,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,47.25,40.83,51.65,52.38,3.333333333333333,1,1,0,1,0,8,1,0,779,22213.03175842391,0,0,0,2885.995285696855 -16294,20112,36666,36667,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.611478585935213,7.702617811820639,0,6,-2,73.42079215981629,0,2,2,2019,11,0,44,40,1,0,0,4.72926942309648,4.72926942309648,0,0,0,0,0,0,0,0,0,0,44.6,52.77,47.72,51.1,5,1,1,0,0,11,4,4,0,649,176091.1269560106,55795.61925441902,231103.6709443383,0,1759.651057852762 -16294,20112,36667,36666,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.352345391066104,7.711847498646818,0,6,2,-68.81072741903895,-9,-9,-9,2019,10,0,30,0,1,0,0,7.535245634125286,7.535245634125286,0,0,0,0,0,0,0,0,0,0,47.72,51.1,44.6,52.77,5,1,1,0,0,2,4,4,0,649,176091.1269560106,55795.61925441902,231103.6709443383,0,1759.651057852762 -16295,20113,36668,36669,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.757059085859316,8.825031565633973,49,1,-108.3192834474989,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.765596717008821,52.97,51.29,57.16,56.15,8.333333333333334,1,1,0,0,6,1,5,1,565.5,1357722.909197696,750908.1455761457,446762.1947071301,0,4887.292121208724 -16295,20113,36669,36668,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.735205449419875,6.511308010292976,49,-1,-21.27009028738987,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.661157637906252,57.16,56.15,52.97,51.29,10,1,1,0,0,5,1,5,1,565.5,1357722.909197696,750908.1455761457,446762.1947071301,0,4887.292121208724 -16296,20114,36670,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.145446294568968,8.297511777051291,0,0,0,-1019.998192154218,0,3,3,2019,6,0,20,20,1,0,0,19.26501343580795,19.26501343580795,0,0,0,0,2,0,0,0,0,0,68.32000000000001,45.78,-9,-9,1.666666666666667,2,3,0,0,8,8,4,1,97,69210.86231247782,60868.63921263122,0,0,1508.366375701476 -16297,20115,36671,36672,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,38,-3,-67.13982045974788,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,53.62,48.74,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,725,2003198.346253043,1332960.392887881,416192.6847036849,0,3837.31000059551 -16297,20115,36672,36671,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.363234589779942,9.296879189393302,0,38,3,-60.13891484731589,0,1,2,2019,3,0,45,44,1,0,0,29.69618389994517,29.69618389994517,0,0,0,0,2,1,1,0,0,0,57.06,57.76,53.62,48.74,8.333333333333334,1,1,0,0,8,9,5,1,725,2003198.346253043,1332960.392887881,416192.6847036849,0,3837.31000059551 -16298,20116,36673,-9,-9,-9,1,0,43,0,1,0,1,1,-9,1,3,7.083225720028807,7.562249009748065,6.336924826338417,0,0,-1103.562950515348,0,2,2,2019,8,0,6,0,1,0,0,22.66196224664148,22.66196224664148,0,0,0,0,120,1,1,0,6.324238264715456,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,1,2,0,522,310865.7647701082,89516.06066414704,464114.5412597757,67264.37145414193,1446.257333900118 -16298,20117,36674,-9,36673,-9,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1144.861630097024,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,43.71,39.73,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,228,87736.6023008169,0,0,0,0 -16299,20118,36675,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.608862526397251,6.446934490835882,0,0,-1010.158617533075,-9,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,2.368845968423674,2.286047467201122,26.1744588492412,0,1,1,0,.4517280044623813,6.611892910869472,40.59,22.32,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,899,377497.8999645899,7195.488641504428,179976.3448180516,0,720.261826915902 -16300,20119,36676,36677,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.970466491189297,6.064083187184149,56,1,47.25986594044652,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,9.884383291033524,0,0,1,1,0,5.898330921699824,5.804466333075633,41.3,35.38,62.28,45.64,6.666666666666667,1,1,0,0,0,10,2,1,758,703046.2270923364,168345.5251195464,487184.737201086,0,1463.978063405229 -16300,20119,36677,36676,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,56,-1,22.15274670069215,0,3,-9,2019,4,0,0,0,4,0,0,0,0,1,0,2.051171470081796,0,7,1,1,0,0,0,62.28,45.64,41.3,35.38,10,1,1,0,0,0,10,2,1,758,703046.2270923364,168345.5251195464,487184.737201086,0,1463.978063405229 -16301,20120,36678,36679,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.176629929286575,6.186713036124225,26,1,-130.3079291900443,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.829009673132603,6.133263721059398,66.94,12.8,60.05,26.59,6.666666666666667,1,1,0,0,0,4,2,1,421.5,1178250.099520742,285751.0391582091,494449.7036374666,0,3769.98625602855 -16301,20120,36679,36678,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.741335756871396,5.719576809655984,25,-1,-5.388370577922296,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.238227843424692,5.528571225870635,60.05,26.59,66.94,12.8,10,1,1,0,0,0,4,2,1,421.5,1178250.099520742,285751.0391582091,494449.7036374666,0,3769.98625602855 -16302,20121,36680,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,3,0,6.794993859425174,6.871848156565139,0,0,-982.0395401366081,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.599592058447037,0,55.12,44.8,-9,-9,8.333333333333334,1,1,1,0,0,10,2,1,607,-237089.8727900246,0,0,0,1276.941548284444 -16303,20122,36681,36682,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.733037971709517,7.754813995970277,4.174058659823336,10,0,103.3450853603722,0,-9,-9,2019,23,11,36,36,1,11,0,7.03678355606961,7.03678355606961,0,0,0,0,0,1,1,0,4.34367916337667,3.472811253762333,40.89,46.15,37.62,55.66,3.333333333333333,1,1,0,1,11,8,3,1,598.5,-50933.54912113771,46139.23186376708,0,0,1432.286352253207 -16303,20122,36682,36681,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,10,9,-139.8150606213956,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.62,55.66,40.89,46.15,3.333333333333333,1,1,0,0,0,8,3,1,598.5,-50933.54912113771,46139.23186376708,0,0,1432.286352253207 -16304,20123,36683,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.805323190253978,6.980266001148087,0,0,-1030.09777715272,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,1.502611755881751,1.25891680087876,0,1,1,0,0,7.235632095523206,45.75,22.74,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,710,79260.04769489265,0,0,0,1465.492008544932 -16305,20124,36684,-9,36686,36687,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.6222775448343,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,945,902906.3627469542,524906.3909489515,313522.4020025654,0,3245.153836373839 -16305,20124,36685,-9,36686,36687,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.953340979573,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,3,0,945,902906.3627469542,524906.3909489515,313522.4020025654,0,3245.153836373839 -16305,20124,36686,36687,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.536723849979978,7.638454274266933,0,15,-22,20.52455580837594,0,3,3,2019,11,0,10,0,1,1,0,25.75081915737092,25.75081915737092,0,0,0,0,0,1,1,0,0,0,50,55,57.33,53.46,7,2,3,0,0,1,7,3,0,945,902906.3627469542,524906.3909489515,313522.4020025654,0,3245.153836373839 -16305,20124,36687,36686,-9,-9,1,1,61,0,2,0,2,2,-9,0,3,7.483970659168195,7.856233050672083,6.781874486598123,15,22,-76.51609005959715,0,3,2,2019,9,0,29,20,1,0,0,7.629095299105024,7.629095299105024,0,0,0,0,0,1,1,0,6.162068772489778,7.075412128692236,57.33,53.46,50,55,1.666666666666667,1,1,0,0,7,7,3,0,945,902906.3627469542,524906.3909489515,313522.4020025654,0,3245.153836373839 -16306,20125,36688,-9,36689,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.167591021139,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,4,0,1029.5,-99998.96472029391,46953.60877948611,0,0,2211.836415743599 -16306,20125,36689,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.274226390421003,8.313545000512532,0,0,0,-1102.032137827796,0,2,2,2019,10,0,39,39,1,0,0,14.62662530126283,14.62662530126283,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,12,2,4,0,1029.5,-99998.96472029391,46953.60877948611,0,0,2211.836415743599 -16307,20126,36690,36691,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.862140773742333,7.961533337663478,0,6,11,58.03590381961475,-9,-9,-9,2019,10,0,39,0,1,1,0,9.688980398534529,9.688980398534529,0,0,0,0,0,1,1,0,0,0,52,48,61.12,51.57,7,1,1,0,0,1,4,4,1,775.5,1008005.707270548,630845.1254549519,272850.2513921151,0,2639.998901120653 -16307,20126,36691,36690,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.105721623348044,7.195087505162567,0,12,-11,-94.80169070925166,0,-9,-9,2019,3,0,35,40,1,0,0,4.301773563166569,4.301773563166569,0,0,0,0,7,1,1,0,0,0,61.12,51.57,52,48,10,1,1,0,0,9,4,4,1,775.5,1008005.707270548,630845.1254549519,272850.2513921151,0,2639.998901120653 -16308,20127,36692,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.203302871185324,8.413183319736126,0,0,0,-968.8682018493618,0,2,2,2019,17,3,30,22,1,3,0,12.02107471738392,12.02107471738392,0,0,0,0,0,1,1,0,0,0,34.2,40.39,-9,-9,10,3,4,0,0,9,2,3,0,1259,195537.3378727777,8955.820974707494,169477.4916386321,60170.52436390474,1621.139073252663 -16308,20127,36693,-9,36692,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1054.730689727203,-9,2,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.82,56.51,-9,-9,8.333333333333334,3,4,0,0,0,2,3,0,1259,195537.3378727777,8955.820974707494,169477.4916386321,60170.52436390474,1621.139073252663 -16308,20128,36694,-9,36692,-9,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1090.612500814421,-9,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.22,45.05,-9,-9,10,3,4,0,0,0,2,1,0,990,-138696.2089877637,0,0,0,0 -16309,20129,36695,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.81555582102532,7.418334253114717,0,0,-910.8634442304638,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.781437429453574,7.742768989300695,48.87,58.55,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,207,613259.723454622,377951.5196259919,231146.1068266435,0,624.6300086624511 -16310,20130,36696,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.243335418930711,8.194040960494256,0,0,0,-1087.658348707943,0,2,2,2019,8,0,38,38,1,0,0,13.08808853291244,13.08808853291244,0,0,0,0,0,0,0,0,.6826117958481667,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,10,8,4,1,565,470063.2010855193,123711.4940468362,513551.5898574242,0,1408.709657359244 -16310,20131,36697,-9,36696,-9,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1012.643888037827,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,2,3,0,0,0,8,1,1,172,-85587.71039014131,0,0,0,451.0220120092829 -16311,20132,36698,36699,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.567458940598916,7.27590013925566,40,2,45.93184212151912,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.088671413799931,7.420789078809096,56,32.97,60.3,46.58,3.333333333333333,1,1,0,0,0,12,2,1,471.5,608903.1629513919,241961.2323998302,333169.6535839318,0,2189.79324149775 -16311,20132,36699,36698,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.246877229712356,4.113195230978595,40,-2,50.06937236986217,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,.1325526856412242,0,1,1,0,4.817334763372213,4.333272662880935,60.3,46.58,56,32.97,8.333333333333334,1,1,0,0,0,12,2,1,471.5,608903.1629513919,241961.2323998302,333169.6535839318,0,2189.79324149775 -16312,20133,36700,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.109716123579807,7.924316640679585,0,0,0,-959.271446214728,0,2,2,2019,10,0,59,49,1,0,0,5.402923070157936,5.402923070157936,0,0,0,0,0,0,0,0,2.884327652557825,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,9,1,4,0,58,53208.19803194877,0,0,0,1095.614166231749 -16313,20134,36701,36702,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.819541641591359,8.692498754574476,3,1,-54.98256873894201,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1992139724284,8.728868772828674,58.15,52.91,59.71,50.89,8.333333333333334,1,1,0,0,7,8,5,1,1270.5,3158569.822495387,1535527.854305666,831740.647152415,0,5308.404954403984 -16313,20134,36702,36701,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.357309481748547,7.625183399566835,3,-1,42.25285784527289,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.640316025324053,7.67361049035225,59.71,50.89,58.15,52.91,10,1,1,0,0,6,8,5,1,1270.5,3158569.822495387,1535527.854305666,831740.647152415,0,5308.404954403984 -16314,20135,36703,36704,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,23,7,24.45907084362799,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.040095781992569,0,59.47,20.19,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,1128.5,580184.0136635647,126894.5458406682,112538.963417988,0,2999.687678171225 -16314,20135,36704,36703,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.811947970271829,8.809241618418666,0,23,-7,64.46976213584665,0,3,2,2019,8,0,55,55,1,0,0,14.94852477797223,14.94852477797223,0,0,0,0,2,1,1,0,3.380853481459079,0,57.16,56.15,59.47,20.19,8.333333333333334,1,1,0,0,8,13,4,1,1128.5,580184.0136635647,126894.5458406682,112538.963417988,0,2999.687678171225 -16315,20136,36705,36706,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.043167216896128,7.93304343211271,0,24,-1,-8.187610137787491,0,3,3,2019,12,0,38,38,1,0,0,13.24375842444014,13.24375842444014,0,0,0,0,0,0,0,0,0,0,36.44,56.63,61.28,48.88,5,1,1,0,0,11,5,5,0,1149.5,33024.65059716997,-52038.37923628782,0,0,2546.748782378554 -16315,20136,36706,36705,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,7.906023550866901,8.363339383131866,0,10,1,35.80922552284594,0,-9,-9,2019,11,0,47,54,1,0,0,8.629373119558034,8.629373119558034,0,0,0,0,0,0,0,0,0,0,61.28,48.88,36.44,56.63,6.666666666666667,1,1,0,0,10,5,5,0,1149.5,33024.65059716997,-52038.37923628782,0,0,2546.748782378554 -16316,20137,36707,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-979.4800616768406,0,-9,-9,2019,19,6,0,0,4,6,0,0,0,1,25.41647531467822,0,247.7912105685967,0,1,1,0,0,0,37.85,49.05,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,2310,10309.84212892505,0,0,0,-220.7098014167237 -16317,20138,36708,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.842602125824723,7.633764888835024,0,0,0,-1098.61019533915,0,2,3,2019,21,9,33,37,1,9,0,9.432173082011003,9.432173082011003,0,0,0,0,0,1,1,0,.0541687650984413,0,12.54,53.57,-9,-9,3.333333333333333,1,1,0,0,2,12,4,1,674,167210.6354653093,91805.58283160988,0,0,1489.999102864533 -16318,20139,36709,36710,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.330028376531892,9.02146497125554,0,14,1,60.08512632644252,0,2,3,2019,11,0,42,42,1,0,0,26.07603786860568,26.07603786860568,0,0,0,0,0,0,0,0,.9201151717392566,0,45.14,43.48,61.85,47.26,5,1,1,0,0,8,7,5,1,330.5,805154.7346248905,162088.1374612027,502304.1452819863,86565.36056181401,3293.262380509847 -16318,20139,36710,36709,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.406648658308207,6.44625951926131,0,14,-1,.0878490809976267,0,3,3,2019,7,0,45,45,1,0,0,1.400089886377861,1.400089886377861,0,0,0,0,0,0,0,0,.2422667866437092,0,61.85,47.26,45.14,43.48,8.333333333333334,1,1,0,0,11,7,5,1,330.5,805154.7346248905,162088.1374612027,502304.1452819863,86565.36056181401,3293.262380509847 -16319,20140,36711,-9,36712,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.1103928835788,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,467,40534.11180533608,0,0,0,3794.291883590479 -16319,20140,36712,-9,-9,-9,1,0,40,0,4,0,2,2,-9,1,1,0,0,0,0,0,-962.784074167539,0,2,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.25,20.77,-9,-9,0,1,1,0,1,3,12,1,0,467,40534.11180533608,0,0,0,3794.291883590479 -16319,20140,36713,-9,36712,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.733520476647,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,467,40534.11180533608,0,0,0,3794.291883590479 -16319,20140,36714,-9,36712,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.145702970204,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,467,40534.11180533608,0,0,0,3794.291883590479 -16320,20141,36715,36716,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.347961264357523,7.31756691534766,3.174446386081348,10,-3,113.1258181210587,0,3,3,2019,7,0,11,21,1,0,0,18.09807743707581,18.09807743707581,0,0,0,0,0,1,1,0,3.479474990709785,3.412022869835182,57.93,46.29,54.2,57.49,8.333333333333334,1,1,0,0,13,9,3,1,828.5,287649.0681841153,0,230504.3494551344,0,2617.921313194257 -16320,20141,36716,36715,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,6.412301301586087,6.534764701005738,5.740023740435886,10,3,-138.478745281161,0,3,3,2019,7,0,6,48,1,0,0,10.10145741315661,10.10145741315661,0,0,0,0,0,1,1,0,5.515494421167137,5.581208872358652,54.2,57.49,57.93,46.29,8.333333333333334,1,1,0,0,13,9,3,1,828.5,287649.0681841153,0,230504.3494551344,0,2617.921313194257 -16321,20142,36717,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.878901875897226,8.795228954532277,0,0,0,-1042.602670380595,0,2,2,2019,7,0,50,50,1,0,0,15.67237828571569,15.67237828571569,0,0,0,0,0,0,0,0,0,0,53.97,40.34,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,267,821027.9168951488,312601.8934577086,607856.6409953366,123694.1909740758,2470.356548443609 -16321,20143,36718,-9,36717,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-970.9507332659545,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,42.45,56.21,-9,-9,6.666666666666667,1,1,0,0,4,7,2,1,236,0,0,0,0,358.1835839939957 -16321,20144,36719,-9,36717,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-966.2056611052806,0,2,-9,2019,36,12,0,40,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,7.97,41.25,-9,-9,0,1,1,0,1,3,7,1,1,297,-87857.59344164855,0,0,0,-267.3236570657888 -16321,20145,36720,-9,36717,-9,1,0,33,0,0,0,1,1,-9,0,5,8.83997006423505,8.85383278264678,0,0,0,-1002.095342717022,0,2,-9,2019,16,5,40,38,1,5,1,25.21331910620345,25.21331910620345,0,0,0,0,0,0,0,0,3.727568787360365,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,5,7,5,1,971,-110885.8384704537,107693.4865457123,0,0,2644.640128814022 -16322,20146,36721,36722,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,10,-1,166.3035374050123,-9,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.512719335159048,0,42.46,39.71,58.3,52.91,8.333333333333334,1,1,0,0,0,12,3,1,1650.5,492889.8123955444,285577.8503225093,225865.0527389708,0,2317.814084585832 -16322,20146,36722,36721,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.707843078796777,7.867242373695431,10,1,66.52493038678789,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.940020441252296,7.839405573742749,58.3,52.91,42.46,39.71,8.333333333333334,1,1,0,0,0,12,3,1,1650.5,492889.8123955444,285577.8503225093,225865.0527389708,0,2317.814084585832 -16323,20147,36723,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,5,0,0,0,0,0,-1063.391802898635,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46.23,52.32,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,2676,-11777.25723630404,0,0,0,2593.089178629839 -16323,20147,36724,-9,36723,-9,1,0,17,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.386741603397,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,6,2,1,2676,-11777.25723630404,0,0,0,2593.089178629839 -16323,20147,36725,-9,36723,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.7559961504445,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,2676,-11777.25723630404,0,0,0,2593.089178629839 -16323,20147,36726,-9,36723,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.638984887166,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,2676,-11777.25723630404,0,0,0,2593.089178629839 -16324,20148,36727,-9,36728,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1017.676096717939,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,5,2,1,688.5,-119267.0677437873,10781.68798416808,0,0,1427.982131682088 -16324,20148,36728,-9,-9,-9,1,0,49,0,1,0,3,3,-9,1,2,0,3.930727808908592,4.004743492026035,0,0,-988.7967103613107,0,3,3,2019,15,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,4.133695645773097,0,43,39,-9,-9,1.666666666666667,2,3,0,1,4,5,2,1,688.5,-119267.0677437873,10781.68798416808,0,0,1427.982131682088 -16324,20149,36729,-9,36728,-9,1,1,26,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1170.634546105837,0,3,3,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,36.56,31.78,-9,-9,3.333333333333333,2,3,1,0,0,5,1,1,604,0,0,0,0,1123.380841082006 -16324,20150,36730,-9,36728,-9,1,1,20,0,1,1,2,0,0,1,1,0,0,0,0,0,-998.7558672484632,-9,3,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52.54,23.31,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,34,-104325.3883057533,0,0,0,1532.788343548266 -16325,20151,36731,36732,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.751928229169401,9.762777578388686,0,6,-11,101.7964520560166,0,2,3,2019,7,0,90,85,1,0,0,20.00170262117441,20.00170262117441,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.46,47.78,8.333333333333334,1,1,0,0,7,11,5,1,810.3333333333334,2930543.797393698,2426771.163472455,443309.4101231194,245404.6410411374,15489.93087341544 -16325,20151,36732,36731,-9,-9,1,0,61,0,1,0,2,2,-9,0,4,7.420845855299767,7.675136789688962,0,6,11,-77.28307734277314,0,3,3,2019,12,0,17,18,1,0,0,13.0675371724686,13.0675371724686,0,0,0,0,0,1,1,0,6.35304335774962,0,57.46,47.78,57.16,56.15,1.666666666666667,1,1,0,0,7,11,5,1,810.3333333333334,2930543.797393698,2426771.163472455,443309.4101231194,245404.6410411374,15489.93087341544 -16325,20151,36733,-9,36732,36731,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.9449044497456,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,810.3333333333334,2930543.797393698,2426771.163472455,443309.4101231194,245404.6410411374,15489.93087341544 -16326,20152,36734,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.432787379955351,5.385431228492353,0,0,-966.199121088115,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,1.565720398421348,5.609066081521409,53.95,40.36,-9,-9,5,1,1,0,0,11,11,2,1,1049,120361.2261991376,5415.725534794547,0,0,760.953771224434 -16327,20153,36735,36736,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.386927735456062,8.303616738285893,0,1,0,-41.83191692025058,0,-9,-9,2019,7,1,39,38,1,1,0,12.12416292980205,12.12416292980205,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37.36,59.82,8.333333333333334,1,1,0,0,5,9,5,0,370.5,312382.7853275113,0,471764.7947146863,250887.0178793454,5947.361887404439 -16327,20153,36736,36735,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,9.457688862796788,10.0033358601456,0,1,0,-13.43467655652711,-9,-9,-9,2019,10,3,38,0,1,3,0,48.49625799466141,48.49625799466141,0,0,0,0,0,0,0,0,0,0,37.36,59.82,57.33,53.46,8.333333333333334,1,1,0,0,4,9,5,0,370.5,312382.7853275113,0,471764.7947146863,250887.0178793454,5947.361887404439 -16328,20154,36737,36738,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.081018840186492,6.77228009457233,0,9,0,-6.110712432837645,0,2,2,2019,24,12,15,45,1,12,0,7.23187123656438,7.23187123656438,0,0,0,0,0,0,0,0,0,0,19.48,53.33,18.05,64.93000000000001,5,1,1,0,0,10,5,4,1,505.5,424071.0793116217,172342.0683464252,175113.8124578476,38540.32672553687,2155.902456388617 -16328,20154,36738,36737,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.172804823188535,8.450135218806258,0,9,9,27.07369609331358,0,2,1,2019,25,11,37,37,1,11,0,14.90219340688226,14.90219340688226,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,19.48,53.33,6.666666666666667,1,1,0,0,10,5,4,1,505.5,424071.0793116217,172342.0683464252,175113.8124578476,38540.32672553687,2155.902456388617 -16329,20155,36739,-9,36741,36740,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.595795066684,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,448.8,136541.3916347947,57158.57894585821,161149.2478924167,6698.18004448473,3171.124385973268 -16329,20155,36740,36741,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,6.772814652271601,6.996774706358353,0,6,6,-7.967273129035775,0,2,2,2019,12,0,26,28,1,0,0,5.44315439875413,5.44315439875413,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.23,55.6,5,1,1,0,1,7,1,3,0,448.8,136541.3916347947,57158.57894585821,161149.2478924167,6698.18004448473,3171.124385973268 -16329,20155,36741,36740,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,8.468437957348852,8.604852296126113,0,6,-6,18.71038424314642,0,1,1,2019,10,3,50,50,1,3,0,8.153610029165879,8.153610029165879,0,0,0,0,0,1,1,0,4.03239356448081,0,52.23,55.6,54.2,57.49,8.333333333333334,1,1,0,0,7,1,3,0,448.8,136541.3916347947,57158.57894585821,161149.2478924167,6698.18004448473,3171.124385973268 -16329,20155,36742,-9,36741,36740,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-921.1048811724293,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,448.8,136541.3916347947,57158.57894585821,161149.2478924167,6698.18004448473,3171.124385973268 -16329,20155,36743,-9,36741,36740,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.776880379759,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,448.8,136541.3916347947,57158.57894585821,161149.2478924167,6698.18004448473,3171.124385973268 -16330,20156,36744,36746,-9,-9,1,1,44,1,3,0,1,1,-9,0,4,9.245109236014548,8.671343226927135,0,7,5,-80.92296986419353,-9,3,2,2019,7,0,41,0,1,0,0,24.74939362317445,24.74939362317445,0,0,0,0,0,0,0,0,.9061325349185814,0,58.15,52.91,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,1,1174,1001017.947220799,194729.4640366536,849235.2300727146,370364.189017728,4781.745026924578 -16330,20156,36745,-9,36746,36744,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.696693870802,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,1174,1001017.947220799,194729.4640366536,849235.2300727146,370364.189017728,4781.745026924578 -16330,20156,36746,36744,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,8.145431841073778,8.208253167009293,0,7,-5,-86.37387374207398,-9,2,2,2019,2,0,49,0,1,0,0,8.087235673196716,8.087235673196716,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.15,52.91,10,3,4,0,0,6,8,5,1,1174,1001017.947220799,194729.4640366536,849235.2300727146,370364.189017728,4781.745026924578 -16330,20156,36747,-9,36746,36744,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-950.0557232374902,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,3.694215203064498,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,5,1,1174,1001017.947220799,194729.4640366536,849235.2300727146,370364.189017728,4781.745026924578 -16331,20157,36748,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,6.695133737170345,6.707919873388226,0,0,-983.5429601885343,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.337479840729427,0,48.22444161223999,0,1,1,0,3.040344440254407,6.635718851516072,44.52,25.33,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,677,83456.75733443658,91929.04128749049,41492.60929819781,0,702.5590146696838 -16332,20158,36749,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.571416289023075,8.328958017954335,0,0,-1053.694943466041,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.230198933168309,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,698,399152.1047286307,414595.8262058567,164846.4587936235,0,2206.131938307338 -16332,20159,36750,-9,36749,-9,1,1,27,0,0,0,2,2,-9,0,2,8.212829916920237,8.277444614390838,0,0,0,-1010.900468802776,0,1,-9,2019,13,2,45,0,1,2,0,8.377565333675314,8.377565333675314,0,0,0,0,0,0,0,0,3.03543503471288,0,40.56,50.45,-9,-9,3.333333333333333,1,1,0,0,1,2,4,1,217,-15140.08162034907,0,0,0,1172.885734637871 -16333,20160,36751,-9,36752,36753,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.142700643603,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16333,20160,36752,36753,-9,-9,1,0,41,1,4,0,2,2,-9,1,3,0,5.793310183041672,5.728363215124018,2,1,8.197158247075313,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,5.407369426501512,0,53.23,42.9,37.84,65.46000000000001,6.666666666666667,1,1,0,0,2,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16333,20160,36753,36752,-9,-9,1,1,40,1,4,0,2,2,-9,0,5,8.043646996451177,8.600067930493223,7.453731532157272,2,-1,62.4296434436733,-9,-9,-9,2019,19,6,65,0,1,6,0,5.37666633241346,5.37666633241346,0,0,0,0,2,1,1,0,0,7.809948560543688,37.84,65.46000000000001,53.23,42.9,8.333333333333334,1,1,0,1,1,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16333,20160,36754,-9,36752,36753,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-885.3955279693787,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16333,20160,36755,-9,36752,36753,1,1,16,1,4,1,2,0,-9,1,3,0,0,0,0,0,-1055.854358305257,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16333,20160,36756,-9,36752,36753,1,1,14,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.597212228969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,619.5,198476.6321005268,62106.9556226877,243336.5422370368,81591.1674147275,3815.118404471429 -16334,20161,36757,-9,36759,36760,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1039.09759233338,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,854.25,211587.9693266388,0,178264.4292568529,28833.78731119221,1395.253262329102 -16334,20161,36758,-9,36759,36760,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.480072935612,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,854.25,211587.9693266388,0,178264.4292568529,28833.78731119221,1395.253262329102 -16334,20161,36759,36760,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.723761029063267,8.11640096482988,7.264560656812503,17,2,-.0646397486862131,0,2,2,2019,12,0,36,40,1,0,0,6.440571289579334,6.440571289579334,0,0,0,0,0,1,1,0,7.497571328236119,0,52,54.51,54.96,53.17,6.666666666666667,1,1,0,1,8,7,2,1,854.25,211587.9693266388,0,178264.4292568529,28833.78731119221,1395.253262329102 -16334,20161,36760,36759,-9,-9,1,1,43,0,2,0,3,3,-9,0,3,2.187909926020665,2.167059439490421,0,17,-2,-11.36029335605322,0,2,2,2019,6,0,40,50,1,0,0,.0256570655674352,.0256570655674352,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52,54.51,8.333333333333334,1,1,0,0,10,7,2,1,854.25,211587.9693266388,0,178264.4292568529,28833.78731119221,1395.253262329102 -16335,20162,36761,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.575434462145295,7.125255788721971,0,0,-867.1881856757859,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,26.99491931536443,5.107915837539206,249.5955516759111,0,1,1,0,6.384265209579967,7.618872630469399,46.85,19.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,287,760003.0985825845,124666.2142692087,598935.7020908172,0,2644.975718126166 -16336,20163,36762,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.588878088652216,6.362476997827118,0,0,-1112.227660174893,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.075026144921808,6.709458654368044,61.28,48.88,-9,-9,10,1,1,0,0,0,10,2,1,455,201037.0202554588,64807.41093518804,0,0,1330.228796503128 -16337,20164,36763,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.744436684651569,6.939549219749951,0,0,-948.0686736473198,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.41183147131347,7.217396326413248,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,2193,364762.25896366,46663.64980249399,137658.9018665714,0,852.7067893742892 -16338,20165,36764,36765,-9,-9,1,1,84,0,1,0,2,2,-9,0,3,0,8.431411306102261,8.401557147689456,11,25,93.62193423714595,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,2.159169443104775,0,1,1,0,0,8.404017487310735,54,46,54.37,54.8,8,1,1,0,0,7,13,3,1,476,1098255.806727055,445985.5139575739,449865.4739567405,0,3697.48752402047 -16338,20165,36765,36764,-9,-9,1,0,59,0,1,0,2,2,-9,1,3,0,0,0,21,-25,-24.92255610580652,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,2.957597193155629,0,54.37,54.8,54,46,8.333333333333334,1,1,0,0,7,13,3,1,476,1098255.806727055,445985.5139575739,449865.4739567405,0,3697.48752402047 -16338,20165,36766,-9,36765,36764,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.614388907515,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,3,1,476,1098255.806727055,445985.5139575739,449865.4739567405,0,3697.48752402047 -16338,20166,36767,-9,36765,36764,1,1,25,0,1,0,2,2,-9,0,4,7.861678575860665,7.741605457993169,0,0,0,-1116.359660838198,0,2,2,2019,11,0,40,40,1,2,1,7.654157286291602,7.654157286291602,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,9,13,3,1,2913,6427.945107234356,-21570.77260493251,0,0,1333.898520618005 -16338,20167,36768,-9,36765,36764,1,1,19,0,1,0,2,2,-9,0,4,7.33321899425318,7.212437953857258,0,0,0,-1010.335645643765,0,2,2,2019,7,0,32,0,1,0,1,5.863129451209051,5.863129451209051,0,0,0,0,0,1,1,0,.1069669396679893,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,258,143875.604688427,124573.8917729132,0,0,1025.542470974515 -16339,20168,36769,36770,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,30,16,24.58928792308098,0,3,3,2019,29,12,0,0,4,12,0,0,0,1,0,28.91942932829602,0,0,1,1,0,0,0,33.62,22.58,41.36,39.55,10,1,1,0,0,0,7,2,0,532.5,282488.1693580889,0,179143.9364239011,0,1358.97581676524 -16339,20168,36770,36769,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,6.824149640003153,6.801895369696709,0,30,-16,-97.9771045760199,0,-9,-9,2019,12,0,15,15,1,0,0,5.81106974586663,5.81106974586663,0,0,0,0,27,1,1,0,0,0,41.36,39.55,33.62,22.58,5,1,1,0,0,11,7,2,0,532.5,282488.1693580889,0,179143.9364239011,0,1358.97581676524 -16340,20169,36771,36772,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.925288363344546,7.131781975886942,28,2,-49.48118060391979,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.021233428137728,6.68290920830369,52.99,51.28,55.95,36.7,8.333333333333334,1,1,0,0,6,7,2,1,385,581072.9106739212,290947.4608683111,370023.3200157409,0,1806.056658618604 -16340,20169,36772,36771,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,3.833537227387794,3.116275364500394,27,-2,-91.54135808442075,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4286374490114,3.909721187513233,55.95,36.7,52.99,51.28,10,1,1,0,0,9,7,2,1,385,581072.9106739212,290947.4608683111,370023.3200157409,0,1806.056658618604 -16341,20170,36773,36774,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,9.288497944584318,9.101914905219505,29,4,9.793566339131841,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.405934145564072,9.1044814248369,60.29,52.11,58.9,45.74,8.333333333333334,1,1,0,0,0,7,5,1,607.5,2011029.950689142,892613.6762672195,483390.9052274718,0,5715.221008843064 -16341,20170,36774,36773,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.69894933448551,6.720009870022587,0,29,-4,-6.174568134131779,0,3,2,2019,6,0,10,10,1,0,0,9.227601094683379,9.227601094683379,0,0,0,0,2,0,0,0,4.704460634992793,0,58.9,45.74,60.29,52.11,8.333333333333334,1,1,0,0,9,7,5,1,607.5,2011029.950689142,892613.6762672195,483390.9052274718,0,5715.221008843064 -16342,20171,36775,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,5.141381545041282,4.842237955688709,0,0,0,-1014.608762865228,0,3,3,2019,6,0,8,8,1,0,0,2.151342701198892,2.151342701198892,0,0,0,0,0,1,1,0,0,0,55.56,51.53,-9,-9,10,1,1,0,0,3,13,2,0,679,434991.2766376436,247999.5170558438,0,0,1075.61344786641 -16343,20172,36776,36777,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.784570760760211,9.119719129509143,0,38,5,-15.51392496338381,0,2,2,2019,11,0,57,37,1,0,0,14.98966311153557,14.98966311153557,0,0,0,5.239631323734065,2,0,0,0,0,0,47.12,56.68,48.53,50.88,6.666666666666667,1,1,0,0,9,12,5,1,1165.5,1658175.048700573,1228860.641101083,229415.2627215899,0,3285.88625203127 -16343,20172,36777,36776,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.941874625606697,7.381672877467216,0,38,-5,-73.02305603783957,0,2,2,2019,11,0,24,22,1,0,0,6.314455614521226,6.314455614521226,0,0,0,0,7,0,0,0,0,0,48.53,50.88,47.12,56.68,6.666666666666667,1,1,0,0,11,12,5,1,1165.5,1658175.048700573,1228860.641101083,229415.2627215899,0,3285.88625203127 -16344,20173,36778,-9,36781,36780,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-974.1529760114837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16344,20173,36779,-9,36781,36780,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.37446681264,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16344,20173,36780,36781,-9,-9,1,1,34,1,4,0,2,2,-9,0,2,8.669738391797726,8.503818847244808,0,13,4,40.9143075072997,0,1,2,2019,27,12,60,55,1,12,0,10.48980625344876,10.48980625344876,0,0,0,0,0,1,1,0,0,0,21.6,58.12,53.82,50.73,1.666666666666667,1,1,0,0,8,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16344,20173,36781,36780,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,6.864668991095824,7.143947639680632,0,13,-4,-3.952366789720516,0,2,-9,2019,12,2,30,10,1,2,0,3.743417355594858,3.743417355594858,0,0,0,0,0,1,1,0,0,0,53.82,50.73,21.6,58.12,6.666666666666667,1,1,0,0,2,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16344,20173,36782,-9,36781,36780,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1079.27438318754,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16344,20173,36783,-9,36781,36780,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.162768989299,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,660.6666666666666,107579.3022581905,46551.47225766555,109467.1838924668,40434.56654764636,2946.990752378424 -16345,20174,36784,36785,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.630677989426593,8.486614390057543,45,1,36.28716304666443,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.429995401198221,8.359839129547707,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,5,13,4,1,354.5,2235498.456891177,850071.0919513234,161943.7789426483,0,3194.279674749427 -16345,20174,36785,36784,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,45,-1,29.59721200568553,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.53782933100891,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,354.5,2235498.456891177,850071.0919513234,161943.7789426483,0,3194.279674749427 -16346,20175,36786,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,0,0,-850.6630302923486,0,3,3,2019,11,2,0,40,3,2,0,0,0,0,0,0,0,0,1,1,0,7.704543570314012,0,46.06,60.24,-9,-9,10,1,1,0,0,7,9,1,1,979,0,0,0,0,1063.622221498733 -16346,20176,36787,-9,36786,-9,1,1,25,0,0,0,2,2,-9,0,4,7.770383354559054,7.702435681659248,0,0,0,-1050.650464999245,0,2,-9,2019,10,0,40,40,1,1,1,7.939227509865975,7.939227509865975,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,310,-1744.124607121971,114456.3088925939,0,0,1255.372435168659 -16347,20177,36788,36789,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.152404133603349,8.315319528723823,0,4,-10,-74.51378223813151,0,2,2,2019,11,0,45,45,1,0,0,8.808285578534832,8.808285578534832,0,0,0,0,0,0,0,0,2.57654604661073,0,54.96,53.17,60.12,54.8,6.666666666666667,1,1,0,0,8,9,5,1,1122,1278547.140681344,720538.492567651,380604.9200129684,87680.88979143252,5200.460024385727 -16347,20177,36789,36788,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.367741830395909,9.511932794816451,0,4,10,-193.3305847296155,0,2,3,2019,6,0,65,65,1,0,0,19.48781023232335,19.48781023232335,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.96,53.17,10,1,1,0,0,10,9,5,1,1122,1278547.140681344,720538.492567651,380604.9200129684,87680.88979143252,5200.460024385727 -16348,20178,36790,36792,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.129095509936841,8.451075816813912,0,6,6,-107.5782428492289,0,2,2,2019,17,4,40,40,1,4,0,11.86142909999703,11.86142909999703,0,0,0,0,0,1,1,0,0,0,41.43,52.76,29.49,56.65,10,1,1,0,0,12,10,5,0,481.3333333333333,134507.3261335416,167534.1387168509,0,0,3758.818293840768 -16348,20178,36791,-9,36790,36792,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.1872547631531,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,0,481.3333333333333,134507.3261335416,167534.1387168509,0,0,3758.818293840768 -16348,20178,36792,36790,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.890832723094217,8.80613269779221,0,6,-6,147.4107699032076,0,-9,-9,2019,12,4,43,40,1,4,0,19.79955155422335,19.79955155422335,0,0,0,0,0,1,1,0,0,0,29.49,56.65,41.43,52.76,6.666666666666667,1,1,0,0,5,10,5,0,481.3333333333333,134507.3261335416,167534.1387168509,0,0,3758.818293840768 -16349,20179,36793,36794,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.124132600678442,8.36020410782986,0,11,2,-4.886599188378531,0,2,3,2019,11,0,40,40,1,1,0,8.901854277521288,8.901854277521288,0,0,0,0,0,1,1,0,0,0,49,50,59.29,49.68,7,1,1,0,0,1,13,4,1,87,92826.09515139739,-123398.037756009,163062.0568779198,78843.21290146234,2407.676681808728 -16349,20179,36794,36793,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.936173663596677,7.9223654296612,0,19,-2,55.59204645501273,0,3,3,2019,11,0,38,38,1,0,0,9.115293287611578,9.115293287611578,0,0,0,0,27,1,1,0,3.7357904028455,0,59.29,49.68,49,50,6.666666666666667,1,1,0,0,13,13,4,1,87,92826.09515139739,-123398.037756009,163062.0568779198,78843.21290146234,2407.676681808728 -16350,20180,36795,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-991.8784491924091,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1.750204209435425,0,38.99,43.23,-9,-9,5,1,1,0,0,0,10,1,0,1172,153867.6150701262,0,0,0,874.2221229175824 -16351,20181,36796,36798,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.72502786969065,8.153718915981537,0,15,2,-42.86386113757222,0,3,2,2019,10,0,33,31,1,0,0,10.71688144708823,10.71688144708823,0,0,0,0,0,1,1,0,6.593967547873162,0,46.63,59.72,35.55,60.77,6.666666666666667,2,3,0,0,10,8,5,1,979.3333333333334,77922.60287357275,83465.58207340153,0,0,3913.815968506304 -16351,20181,36797,-9,36796,36798,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.3744663391677,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,979.3333333333334,77922.60287357275,83465.58207340153,0,0,3913.815968506304 -16351,20181,36798,36796,-9,36799,1,1,44,0,1,0,1,1,-9,0,3,8.41375557946418,8.848872788536138,0,15,-2,44.0300905204739,0,3,2,2019,12,1,46,45,1,1,0,11.7701969519021,11.7701969519021,0,0,0,0,2,1,1,0,1.032928143202414,0,35.55,60.77,46.63,59.72,5,2,3,0,0,10,8,5,1,979.3333333333334,77922.60287357275,83465.58207340153,0,0,3913.815968506304 -16351,20182,36799,-9,-9,-9,1,1,79,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1007.488930963703,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,2,3,0,0,0,8,1,1,262,28799.5076450881,0,0,0,990.5118024738752 -16352,20183,36800,36801,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,0,0,9,3,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.8122482649101022,0,40.14,60.41,54.37,54.8,8.333333333333334,1,1,0,0,10,7,1,1,440,1544071.203450737,0,1620051.791522111,0,1099.321411389375 -16352,20183,36801,36800,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,9,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.158573801521515,0,54.37,54.8,40.14,60.41,8.333333333333334,1,1,0,0,0,7,1,1,440,1544071.203450737,0,1620051.791522111,0,1099.321411389375 -16353,20184,36802,-9,36803,36804,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-940.9776068446208,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,1196.333333333333,108079.9098148945,64370.49397033936,167806.0184338111,92512.50752027558,3942.345234097049 -16353,20184,36803,36804,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.646764903234473,8.620097061502177,0,3,-2,-24.14670205095715,0,2,1,2019,7,0,50,60,1,0,0,13.28534976205662,13.28534976205662,0,0,0,0,0,1,1,0,0,0,57.73,54.53,22.48,66.73999999999999,8.333333333333334,1,1,0,0,10,12,5,1,1196.333333333333,108079.9098148945,64370.49397033936,167806.0184338111,92512.50752027558,3942.345234097049 -16353,20184,36804,36803,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.481360781903145,8.268044706741648,0,3,2,-8.017093382180917,0,-9,-9,2019,14,3,43,48,1,3,0,12.27932513707383,12.27932513707383,0,0,0,.1213351700922587,0,1,1,0,0,0,22.48,66.73999999999999,57.73,54.53,5,1,1,0,0,2,12,5,1,1196.333333333333,108079.9098148945,64370.49397033936,167806.0184338111,92512.50752027558,3942.345234097049 -16354,20185,36805,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.444370515014378,7.596089326401255,0,0,-946.3496234741199,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.83549379996373,7.664374698629948,55,45,-9,-9,8,1,1,0,0,0,8,3,1,197,840017.8467930756,307306.2481129395,553539.9629362542,0,1736.93889942766 -16354,20186,36806,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.063616921826911,8.264859430821923,6.285853421445421,0,0,-981.708149821556,0,-9,-9,2019,5,0,50,54,1,0,0,7.352890428656925,7.352890428656925,0,0,0,0,0,1,1,0,7.001967227497016,6.263134617216955,42.02,48.45,-9,-9,6.666666666666667,1,1,0,0,6,8,4,1,162,598102.735657911,211134.787411043,272282.8020732868,0,1468.704720259683 -16355,20187,36807,-9,36808,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.5081491246146,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,436,37521.01804108969,0,0,0,1952.978379120373 -16355,20187,36808,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,4,7.547830832556935,7.546077305329474,0,0,0,-983.4281706425761,0,-9,-9,2019,13,3,36,0,1,3,0,6.390345964592151,6.390345964592151,0,0,0,0,0,1,1,0,0,0,40.06,58.7,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,436,37521.01804108969,0,0,0,1952.978379120373 -16356,20188,36809,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,6.92084013748648,6.79702478068857,0,0,-1103.834267154373,-9,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,5.012242996792668,0,0,1,1,0,0,6.974842185906894,57.67,36.69,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,511,316794.2705826553,140394.7976541593,285232.8248466802,0,774.2342407986466 -16357,20189,36810,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,2.551847113053637,2.90171317481856,0,0,-996.532855657087,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,3.447465058846972,0,44.6,39.54,-9,-9,8.333333333333334,1,1,0,1,2,9,2,0,1619,-72144.27526768632,14704.1071127664,0,0,781.8982174263309 -16358,20190,36811,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,1,0,7.661040760193662,7.203445965022551,0,0,-1138.354646486594,0,2,3,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,7.249204820738931,39.12,25.41,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,1751,769535.5663242438,452859.236446965,214579.3231517075,0,1954.072744016207 -16359,20191,36812,36813,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,6.828931018821817,6.721377527141369,42,8,-19.28395279537432,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.996618315691468,53,47,50,47,7,2,3,0,0,4,6,2,1,777.5,712286.0510325979,197858.9467687794,626818.2199578413,114609.7651383846,1643.642125982305 -16359,20191,36813,36812,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,42,-8,-2.097224946056411,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,2,3,0,0,0,6,2,1,777.5,712286.0510325979,197858.9467687794,626818.2199578413,114609.7651383846,1643.642125982305 -16360,20192,36814,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.363439635154344,7.466472259251737,0,0,-1177.330934071292,0,2,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,0,7.378928590555486,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,2056,344264.9993727192,400935.9732480302,0,0,503.695935046416 -16361,20193,36815,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.886288143042983,6.753005834539084,0,0,0,-1132.33699146519,0,3,-9,2019,12,1,16,16,1,1,0,6.751217608860206,6.751217608860206,0,0,0,0,71.5,1,0,1,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,10,13,2,0,356,48722.10061561421,0,0,0,662.1925656417309 -16362,20194,36816,-9,36817,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.342949144761,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,418.3333333333333,-24986.47458356601,15242.08916063464,0,0,1741.935875001415 -16362,20194,36817,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,5.587474247717847,5.798844928893301,0,0,-1048.654020504406,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.431735498617185,0,50.54,55.04,-9,-9,8.333333333333334,1,1,1,0,5,10,2,0,418.3333333333333,-24986.47458356601,15242.08916063464,0,0,1741.935875001415 -16362,20194,36818,-9,36817,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.9100332104782,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,418.3333333333333,-24986.47458356601,15242.08916063464,0,0,1741.935875001415 -16363,20195,36819,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.055510526585953,7.903339248149741,3.695697809510051,0,0,-1039.06384747106,0,3,3,2019,22,10,35,34,1,10,0,8.942604882552349,8.942604882552349,0,0,0,0,0,1,0,1,4.554229241687229,0,26.9,53.94,-9,-9,3.333333333333333,1,1,0,0,8,7,3,1,270.5,104374.6762768384,28528.1551400825,84932.22511968877,58439.24634117301,1576.670785877301 -16363,20195,36820,-9,36819,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.9013315038028,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,3,1,270.5,104374.6762768384,28528.1551400825,84932.22511968877,58439.24634117301,1576.670785877301 -16364,20196,36821,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.123983228593888,6.237694800623117,0,0,-953.0424730395965,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.069342393945976,53,46,-9,-9,8,3,4,0,0,0,4,2,0,1614,424221.4865605226,167203.1153342579,193043.1925561713,45001.87654989895,764.1787251072918 -16365,20197,36822,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,5.413130239547847,5.346250866117368,0,0,-1077.657920366335,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.157268769099574,5.314446955858656,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,183,203580.9645704441,10896.86171896085,101681.5729733214,0,813.8246913901098 -16366,20198,36823,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.922547692071263,8.047176586386922,0,0,0,-1015.528206843736,0,2,2,2019,6,0,35,35,1,0,0,10.12269060931563,10.12269060931563,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,0,10,10,4,0,1047,9515.140682429614,-20230.1481455891,0,0,1331.441127669739 -16367,20199,36824,36825,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,7.629314363581468,7.917926485832714,6,-1,148.9764400849675,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.670819927094077,7.994535116714417,55.37,40.83,49.61,54.24,8.333333333333334,1,1,0,0,7,2,3,1,1603.5,901989.754507337,330208.7656184923,276031.4851998266,0,843.4150088654205 -16367,20199,36825,36824,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,6,1,-48.03898274492619,0,3,2,2019,9,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,55.37,40.83,8.333333333333334,1,1,1,0,5,2,3,1,1603.5,901989.754507337,330208.7656184923,276031.4851998266,0,843.4150088654205 -16368,20200,36826,36828,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,6.531902850210272,6.649147219600867,0,18,-5,59.98667130899994,0,2,2,2019,11,0,10,0,1,1,0,6.391222083007927,6.391222083007927,0,0,0,0,2,1,1,0,0,0,50,55,45.06,33.53,7,2,3,0,0,1,7,3,1,1164.75,211205.0387931422,63231.30289564702,165682.6303042431,94519.58365680378,2481.367433912993 -16368,20200,36827,-9,36826,36828,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1039.184348089089,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,2,3,-9,0,0,7,3,1,1164.75,211205.0387931422,63231.30289564702,165682.6303042431,94519.58365680378,2481.367433912993 -16368,20200,36828,36826,-9,-9,1,1,44,0,2,0,3,3,-9,0,2,8.256799151363948,8.117760182906599,0,18,5,43.41747899161216,0,3,3,2019,17,5,40,40,1,5,0,12.2221684330124,12.2221684330124,0,0,0,0,7,1,1,0,0,0,45.06,33.53,50,55,6.666666666666667,2,3,0,0,8,7,3,1,1164.75,211205.0387931422,63231.30289564702,165682.6303042431,94519.58365680378,2481.367433912993 -16368,20200,36829,-9,36826,36828,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.295595681037,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1164.75,211205.0387931422,63231.30289564702,165682.6303042431,94519.58365680378,2481.367433912993 -16368,20201,36830,-9,36826,36828,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1018.147184109253,-9,3,3,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,63.26,42.53,-9,-9,8.333333333333334,2,3,0,0,1,7,1,1,1570,160797.8151288257,0,0,0,0 -16369,20202,36831,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.616651583851306,8.414221479647598,0,8,6,-2.427029192148882,0,3,3,2019,9,1,37,37,1,1,0,18.71850522143279,18.71850522143279,0,0,0,0,7,0,0,0,0,0,54.91,49,50.05,55.41,8.333333333333334,1,1,0,0,9,12,5,1,632,842287.6236659894,283200.3056106026,264003.7990455998,0,1983.203052152364 -16369,20203,36832,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.89991610353678,8.754947187988229,0,8,-6,-86.48225403159095,0,3,3,2019,14,4,48,85,1,4,0,15.33424652550759,15.33424652550759,0,0,0,0,2,0,0,0,0,0,50.05,55.41,54.91,49,8.333333333333334,1,1,0,0,9,12,5,1,546,152780.7502231211,141604.8771815718,75207.91383915009,60673.1093383277,2293.573072141106 -16370,20204,36833,-9,36835,36834,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.305233264759,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,1384,102691.1107814787,0,174357.824964482,76329.0500691583,1733.862658247189 -16370,20204,36834,36835,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.269894233149516,8.173019365141696,0,6,-7,5.665137892841466,0,1,3,2019,11,2,55,60,1,2,0,6.896300541268571,6.896300541268571,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.79,55.04,6.666666666666667,1,1,0,0,5,6,3,0,1384,102691.1107814787,0,174357.824964482,76329.0500691583,1733.862658247189 -16370,20204,36835,36834,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,6.656841721122301,6.64957462797011,0,6,7,61.04373433957706,0,2,3,2019,13,2,22,13,1,2,0,4.474576482912869,4.474576482912869,0,0,0,0,0,1,1,0,0,0,44.79,55.04,54.2,57.49,5,4,2,0,0,5,6,3,0,1384,102691.1107814787,0,174357.824964482,76329.0500691583,1733.862658247189 -16371,20205,36836,36838,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,0,0,0,17,-10,0,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,41.07,60.93,3.333333333333333,1,1,1,0,1,12,1,0,532,0,0,0,0,1058.260374665429 -16371,20205,36837,-9,36838,36836,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1011.843903054271,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,12,1,0,532,0,0,0,0,1058.260374665429 -16371,20205,36838,36836,-9,-9,1,0,57,0,1,0,3,3,-9,0,5,0,0,0,17,10,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,38.16,44.66,6.666666666666667,1,1,1,0,0,12,1,0,532,0,0,0,0,1058.260374665429 -16372,20206,36839,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,9.227164917582774,9.231335077359523,0,0,-1081.172190574035,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.41886288405645,9.384498381255105,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,545,1355091.701985935,484394.5509749966,659799.1043653733,0,5821.479763621146 -16373,20207,36840,-9,36842,36841,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.510932009612,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,1124.666666666667,166691.7797693946,-4118.712956375729,170030.8306025964,0,1571.698264757239 -16373,20207,36841,36842,-9,-9,1,1,35,1,1,0,2,2,-9,0,2,7.195725268460527,7.101607973498655,0,4,5,28.03180818366049,0,-9,-9,2019,12,0,30,20,1,0,0,5.220208124287457,5.220208124287457,0,0,0,0,0,1,1,0,0,0,38.92,51.7,39.1,57.79,6.666666666666667,1,1,0,0,4,13,3,0,1124.666666666667,166691.7797693946,-4118.712956375729,170030.8306025964,0,1571.698264757239 -16373,20207,36842,36841,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,7.155828007221296,7.305471765434021,0,4,-5,70.03509990401878,0,-9,-9,2019,11,0,23,23,1,0,0,6.769376537621978,6.769376537621978,0,0,0,0,0,1,1,0,0,0,39.1,57.79,38.92,51.7,10,1,1,0,0,8,13,3,0,1124.666666666667,166691.7797693946,-4118.712956375729,170030.8306025964,0,1571.698264757239 -16374,20208,36843,36844,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.354278152082725,8.219855912644647,7.994539892033125,7,1,-99.6494896146165,0,3,3,2019,8,1,16,20,1,1,0,10.1913637093273,10.1913637093273,0,0,0,0,0,1,1,0,0,8.04984262883899,46.07,53.3,51.83,57.2,8.333333333333334,1,1,0,0,8,11,5,1,424.5,1315842.56006152,549732.4944685458,464933.2655033981,0,6730.752364023581 -16374,20208,36844,36843,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.483004702920747,8.972870617646592,6.596071464188312,7,-1,-135.7850484920029,0,3,3,2019,6,0,44,42,1,0,0,14.28072489248515,14.28072489248515,0,0,0,0,0,1,1,0,0,6.820116408090918,51.83,57.2,46.07,53.3,8.333333333333334,1,1,0,0,8,11,5,1,424.5,1315842.56006152,549732.4944685458,464933.2655033981,0,6730.752364023581 -16375,20209,36845,-9,36847,36846,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1191.564460178757,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,493.6666666666667,472294.7198767693,26989.31262874599,370202.4050313325,161217.4660738933,3730.357555408738 -16375,20209,36846,36847,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.037086366186127,8.81328257185095,0,15,0,-83.81396275751257,0,2,2,2019,7,1,39,40,1,1,0,18.99629120057197,18.99629120057197,0,0,0,0,0,1,1,0,6.947210072190654,0,57.33,53.46,57.93,46.29,6.666666666666667,1,1,0,0,9,11,4,1,493.6666666666667,472294.7198767693,26989.31262874599,370202.4050313325,161217.4660738933,3730.357555408738 -16375,20209,36847,36846,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.259015730942606,7.850184322765557,0,18,0,17.69466892639974,0,3,3,2019,9,0,22,18,1,0,0,15.48527272322499,15.48527272322499,0,0,0,0,0,1,1,0,1.208943210170894,0,57.93,46.29,57.33,53.46,8.333333333333334,1,1,0,0,9,11,4,1,493.6666666666667,472294.7198767693,26989.31262874599,370202.4050313325,161217.4660738933,3730.357555408738 -16376,20210,36848,36849,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.725469714905124,7.893399759154438,6,6,90.54963706584137,0,2,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.844645353764523,7.5017948921097,58.3,47.38,58.32,50.22,8.333333333333334,1,1,0,0,0,10,4,1,511,1638213.302742273,695800.7076789195,416530.3943776796,0,4137.580592392531 -16376,20210,36849,36848,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.933145690541287,8.068609731258405,6,-6,128.4127017146534,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.170378284970232,8.107091217080859,58.32,50.22,58.3,47.38,8.333333333333334,1,1,0,0,0,10,4,1,511,1638213.302742273,695800.7076789195,416530.3943776796,0,4137.580592392531 -16377,20211,36850,36851,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,7.304751474122354,7.439013083815285,0,27,-1,-27.92477830309041,0,3,3,2019,7,0,26,25,1,0,0,7.579333175695703,7.579333175695703,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,9,9,3,1,1001,399835.0175279969,224942.6049784305,139677.0339704474,14184.67048822714,2489.320250450608 -16377,20211,36851,36850,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.149097552700789,8.054908502014856,0,27,1,-76.74474500381686,0,-9,-9,2019,7,0,45,40,1,0,0,10.03427385943975,10.03427385943975,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,9,9,3,1,1001,399835.0175279969,224942.6049784305,139677.0339704474,14184.67048822714,2489.320250450608 -16377,20211,36852,-9,36850,36851,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.195296544259,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,1001,399835.0175279969,224942.6049784305,139677.0339704474,14184.67048822714,2489.320250450608 -16377,20212,36853,-9,36850,36851,1,0,22,0,2,1,2,0,0,0,5,0,0,0,0,0,-1178.15422254592,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,2,3,0,0,2,9,1,1,810,45550.02960777994,0,0,0,0 -16378,20213,36854,36855,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.93410149896499,7.186890762637715,0,6,0,73.69115593536361,-9,3,2,2019,12,0,40,0,1,0,0,3.277396226971903,3.277396226971903,0,0,0,0,14.5,0,0,0,0,0,59.46,46.99,50,54,5,1,1,0,0,12,5,4,1,910,488175.519819614,258276.2210707745,141160.999393132,0,2154.343973846934 -16378,20213,36855,36854,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.628084871336064,8.142453152657186,0,6,0,-19.8727233239462,0,-9,-9,2019,12,0,36,38,1,0,0,11.08695756753147,11.08695756753147,0,0,0,0,0,0,0,0,0,0,50,54,59.46,46.99,6.666666666666667,1,1,0,0,12,5,4,1,910,488175.519819614,258276.2210707745,141160.999393132,0,2154.343973846934 -16379,20214,36856,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,4.672450313804988,4.557461729988155,0,0,-961.8373243311605,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.446614116444595,4.339228259481466,43.26,31.65,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,187,-76054.21312696185,28331.44774464486,0,0,1156.969470762345 -16380,20215,36857,36858,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.479663597185076,7.289728498814346,53,0,94.27900328197275,0,2,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,14.5,1,1,0,5.539807989959388,7.299379209174759,58.47,44.69,49,47,6.666666666666667,1,1,0,0,0,6,3,1,299,1886043.593899594,1231850.459533302,318700.4312269469,0,2611.39968827988 -16380,20215,36858,36857,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.624696949876192,6.335913730971399,52,0,-97.18892065002619,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.561110698780876,0,49,47,58.47,44.69,7,1,1,0,0,0,6,3,1,299,1886043.593899594,1231850.459533302,318700.4312269469,0,2611.39968827988 -16381,20216,36859,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,8.066241397325346,8.377415979836661,0,2,-2,136.6949326574079,-9,-9,-9,2019,16,4,80,0,1,4,0,5.750367361961874,5.750367361961874,0,0,0,0,0,0,0,0,0,0,35.4,54.19,23.49,53.12,5,1,1,0,0,3,11,4,0,678,108808.9434080882,-41094.64561145882,0,0,1365.19463971014 -16381,20217,36860,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,2,7.57128123009123,7.68754145147029,0,2,2,66.00233270826106,0,-9,-9,2019,27,12,37,37,1,12,0,7.860769733729683,7.860769733729683,0,0,0,0,0,0,0,0,0,0,23.49,53.12,35.4,54.19,3.333333333333333,1,1,0,0,2,11,4,0,1326,115085.9705212632,68123.41692847187,0,0,1284.202779988176 -16382,20218,36861,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.805022263100987,8.869638984656966,0,0,0,-965.2115589871671,0,1,1,2019,8,0,45,44,1,0,0,14.35050828031234,14.35050828031234,0,0,0,0,0,0,0,0,7.388439321532949,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,12,7,5,0,1607,714255.4373020347,53511.14364837698,412615.4679277429,0,3149.458655537275 -16383,20219,36862,36863,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.271945542233251,8.100086872921166,33,4,-120.7716558087565,0,3,3,2019,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.618833170976604,8.106172631176479,57.33,53.46,41,56.99,8.333333333333334,1,1,1,0,7,8,5,1,1994.5,1405381.911045035,907379.776500518,601247.8697954214,0,5838.978536490676 -16383,20219,36863,36862,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.522420126996332,9.839342410521205,0,26,-4,-30.16266575756993,0,1,1,2019,12,0,45,50,1,0,0,33.51639517504725,33.51639517504725,0,0,0,0,0,0,0,0,1.566069585426376,0,41,56.99,57.33,53.46,6.666666666666667,1,1,0,0,8,8,5,1,1994.5,1405381.911045035,907379.776500518,601247.8697954214,0,5838.978536490676 -16384,20220,36864,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.399455462816,0,2,-9,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.75,41.96,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,1801,-41718.46634508135,157768.995178807,0,0,320.7629987331781 -16384,20221,36865,-9,36864,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-964.0582327056929,-9,3,-9,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,1448,-215968.4349018934,0,0,0,321.6466246952241 -16385,20222,36866,-9,36867,36869,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.122205834083,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,1,421.25,352954.2881536366,52478.21151707711,452255.1779204869,205296.0700754138,4344.862887150532 -16385,20222,36867,36869,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.433684114126653,8.609091677697087,0,18,-2,68.15150421495755,0,2,-9,2019,12,1,40,74,1,1,0,12.34602432219301,12.34602432219301,0,0,0,0,0,1,1,0,0,0,50.63,50.99,62.39,56.71,3.333333333333333,3,4,0,0,7,8,4,1,421.25,352954.2881536366,52478.21151707711,452255.1779204869,205296.0700754138,4344.862887150532 -16385,20222,36868,-9,36867,36869,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.100909444737,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,1,421.25,352954.2881536366,52478.21151707711,452255.1779204869,205296.0700754138,4344.862887150532 -16385,20222,36869,36867,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.213217026589739,7.898824331787385,0,7,2,-1.392145487013149,0,-9,-9,2019,6,0,17,30,1,0,0,29.14614601489859,29.14614601489859,0,0,0,0,0,1,1,0,3.50249118296062,0,62.39,56.71,50.63,50.99,8.333333333333334,1,1,0,0,6,8,4,1,421.25,352954.2881536366,52478.21151707711,452255.1779204869,205296.0700754138,4344.862887150532 -16386,20223,36870,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,0,0,-950.3311285468922,0,3,2,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.265008531734011,0,41.43,41.93,-9,-9,3.333333333333333,1,1,0,0,5,7,1,1,1414,1160859.827955634,0,944728.5351837721,0,1566.067822208006 -16387,20224,36871,36872,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,6.663040186245361,6.512468940028006,46,-1,10.85612398039739,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.761536148738015,6.701690935520705,61.04,39.41,58.32,50.22,1.666666666666667,1,1,0,0,10,1,3,1,374,776165.2265044736,399250.0245795209,238924.1600591716,0,2154.227804652303 -16387,20224,36872,36871,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.921396680433295,8.073085432164021,46,1,28.23733241472053,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.745288783065222,7.960155970130884,58.32,50.22,61.04,39.41,6.666666666666667,1,1,0,0,5,1,3,1,374,776165.2265044736,399250.0245795209,238924.1600591716,0,2154.227804652303 -16388,20225,36873,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1049.985761210647,0,1,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.46,48.92,-9,-9,6.666666666666667,1,1,1,0,1,8,1,0,1172,-165328.2947550067,0,0,0,1403.355977385776 -16389,20226,36874,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.169382908258808,6.498304988706032,0,0,-930.2101646903004,0,2,2,2019,18,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,6.16740081878984,9.960000000000001,48.45,-9,-9,3.333333333333333,1,1,0,1,0,8,2,1,133,49394.30859063435,0,0,0,1083.72603499163 -16390,20227,36875,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-921.9683572896834,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,17.44131814214008,24.04175794734817,155.8100754604444,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,737,-131943.6331337985,0,92735.24834581011,0,923.9208222646521 -16391,20228,36876,36877,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.064954083423013,8.186475819492648,0,8,1,-105.8750157725018,0,2,3,2019,10,0,40,38,1,1,0,13.09375221441876,13.09375221441876,0,0,0,0,0,1,1,0,0,0,50,57,54.69,57.47,7,2,3,0,0,1,4,3,1,485,254635.7702066197,105076.6393502175,123604.5748315075,89486.88982301275,1908.107428543877 -16391,20228,36877,36876,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,5.406309806380887,5.633558703696266,0,8,-1,-11.28636823143746,0,2,2,2019,3,0,30,8,1,0,0,1.038668810947304,1.038668810947304,0,0,0,0,0,1,1,0,0,0,54.69,57.47,50,57,10,2,3,0,0,7,4,3,1,485,254635.7702066197,105076.6393502175,123604.5748315075,89486.88982301275,1908.107428543877 -16391,20228,36878,-9,36877,36876,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.538388161778,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,3,1,485,254635.7702066197,105076.6393502175,123604.5748315075,89486.88982301275,1908.107428543877 -16392,20229,36879,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.144248285236038,8.150969066216808,0,0,0,-1014.159854115237,0,2,2,2019,20,8,42,41,1,8,0,9.983497144142477,9.983497144142477,0,0,0,0,0,0,0,0,2.626985960571062,0,39.33,58.88,-9,-9,6.666666666666667,1,1,0,0,9,7,4,0,405,662410.3391815533,372967.3506541101,172404.9566558738,0,1484.471435633783 -16393,20230,36880,-9,36881,36882,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.8086642294013,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,524,1012645.739548498,582584.4049705071,241218.0194900225,0,3548.366910495761 -16393,20230,36881,36882,-9,-9,1,0,35,0,1,0,1,1,-9,1,3,7.98904772031735,7.809673875589855,0,17,-6,-82.63871063849543,0,3,3,2019,12,0,35,40,1,0,0,9.992307781172595,9.992307781172595,0,0,0,0,2,1,1,0,0,0,25.24,58.56,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,524,1012645.739548498,582584.4049705071,241218.0194900225,0,3548.366910495761 -16393,20230,36882,36881,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.758648662680308,8.452566927132926,0,17,6,-26.00672323411164,0,3,3,2019,7,0,42,43,1,0,0,17.14772038748359,17.14772038748359,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.24,58.56,8.333333333333334,1,1,0,0,8,2,5,1,524,1012645.739548498,582584.4049705071,241218.0194900225,0,3548.366910495761 -16394,20231,36883,36884,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,31,0,-43.0560088687289,0,2,2,2019,13,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,7.26172866514256,0,46.44,59.62,58.05,54.52,8.333333333333334,1,1,1,0,8,5,4,0,324,1678356.406557322,1034942.158843391,270663.6729206753,0,2447.379566965697 -16394,20231,36884,36883,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.593288181363434,8.706887528788686,0,31,0,14.14336298259153,0,2,3,2019,8,1,12,40,1,1,0,44.4605236607463,44.4605236607463,0,0,0,0,0,0,0,0,2.122341049714518,0,58.05,54.52,46.44,59.62,10,1,1,0,0,11,5,4,0,324,1678356.406557322,1034942.158843391,270663.6729206753,0,2447.379566965697 -16394,20232,36885,-9,36883,36884,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-893.7781690075451,0,1,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.8136812113742651,0,47.85,52.43,-9,-9,8.333333333333334,1,1,1,0,2,5,1,0,522,21976.8902193709,0,0,0,318.5037492162861 -16395,20233,36886,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-926.301435239674,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,778,33128.58343993831,-68066.26778606401,0,0,1909.813498133515 -16396,20234,36887,36888,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.385114297934029,8.322132108839346,0,3,-4,52.27022584886135,0,2,2,2019,5,0,40,40,1,0,0,11.28832611927186,11.28832611927186,0,0,0,0,0,0,0,0,1.677756985369244,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,11,2,5,1,396.5,170311.4759876885,-13628.10108160627,173500.2844515235,183269.885900612,3504.676379034746 -16396,20234,36888,36887,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.475501202251458,8.528214634780863,0,3,4,10.61271255133474,0,-9,-9,2019,7,0,40,43,1,0,0,11.06143756098317,11.06143756098317,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.33,53.46,10,1,1,0,0,11,2,5,1,396.5,170311.4759876885,-13628.10108160627,173500.2844515235,183269.885900612,3504.676379034746 -16397,20235,36889,36890,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.239171502692848,8.464257049662626,0,1,4,-79.64196591411586,-9,2,3,2019,6,0,50,0,1,0,0,10.80107134317029,10.80107134317029,0,0,0,0,0,1,1,0,7.438198908987791,0,57.16,56.15,50.84,47.24,6.666666666666667,1,1,0,0,10,5,4,1,567.5,952295.1348595042,642138.5604557918,210426.4460667556,0,2757.590232966321 -16397,20235,36890,36889,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.750344232556476,7.517914716224955,0,1,-4,102.2078030937049,-9,2,2,2019,18,6,31,0,1,6,0,7.838587042561308,7.838587042561308,0,0,0,0,7,1,1,0,0,0,50.84,47.24,57.16,56.15,5,1,1,0,0,7,5,4,1,567.5,952295.1348595042,642138.5604557918,210426.4460667556,0,2757.590232966321 -16398,20236,36891,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1055.79086532661,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.493572039105911,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,502,133584.3083645778,0,0,0,698.3435809207198 -16399,20237,36892,-9,36893,36895,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1002.020356961522,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,5,1,879.6,650984.7722103812,565150.7690792218,412615.2246664423,237673.6919486329,6749.924981984218 -16399,20237,36893,36895,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.738615830923436,8.594817177481417,0,17,0,38.4929653442883,0,2,2,2019,5,0,62,60,1,0,0,9.8915966118791,9.8915966118791,0,0,0,0,0,0,0,0,3.203561496078556,0,57.06,57.76,53.33,53.71,8.333333333333334,1,1,0,0,6,9,5,1,879.6,650984.7722103812,565150.7690792218,412615.2246664423,237673.6919486329,6749.924981984218 -16399,20237,36894,-9,36893,36895,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1023.219136280785,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,1,879.6,650984.7722103812,565150.7690792218,412615.2246664423,237673.6919486329,6749.924981984218 -16399,20237,36895,36893,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.550148351320896,9.458026365373737,0,17,0,125.3287279536709,0,2,2,2019,7,0,50,60,1,0,0,35.44446966897149,35.44446966897149,0,0,0,0,0,0,0,0,3.090603962541747,0,53.33,53.71,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,879.6,650984.7722103812,565150.7690792218,412615.2246664423,237673.6919486329,6749.924981984218 -16399,20237,36896,-9,36893,36895,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.436038291709,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,879.6,650984.7722103812,565150.7690792218,412615.2246664423,237673.6919486329,6749.924981984218 -16400,20238,36897,36898,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,8.88639772398197,8.693808246617477,0,7,-7,21.5327135033883,0,2,2,2019,12,0,38,37,1,0,0,21.15122274502942,21.15122274502942,0,0,0,0,0,0,0,0,4.792775464326204,0,36.66,52.76,51.08,36.04,6.666666666666667,1,1,0,0,10,9,5,1,1228,789705.0447519463,403874.736059679,243515.6927492608,13365.42047729513,3993.763766008309 -16400,20238,36898,36897,-9,-9,1,1,55,0,1,0,3,3,-9,0,2,7.903677232153507,7.745690897587954,0,7,7,2.805749283344121,0,-9,-9,2019,12,0,50,45,1,0,0,5.586948448056555,5.586948448056555,0,0,0,0,0,0,0,0,6.585592054306799,0,51.08,36.04,36.66,52.76,5,1,1,0,0,11,9,5,1,1228,789705.0447519463,403874.736059679,243515.6927492608,13365.42047729513,3993.763766008309 -16400,20238,36899,-9,36897,36898,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.290553788378,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1228,789705.0447519463,403874.736059679,243515.6927492608,13365.42047729513,3993.763766008309 -16401,20239,36900,36901,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.392788856770599,6.673604242715489,53,0,8.636406676076183,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,6.667154994290975,35.79,44.37,51,45,6.666666666666667,1,1,0,0,0,5,2,1,704.5,324018.1645842636,0,204456.6536300097,0,1529.144945784911 -16401,20239,36901,36900,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,3.98354616744954,3.956574266150794,53,0,44.67534008520979,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.3123952997210708,3.819488746473359,51,45,35.79,44.37,8,1,1,0,0,0,5,2,1,704.5,324018.1645842636,0,204456.6536300097,0,1529.144945784911 -16402,20240,36902,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.083045113998912,8.792518446191234,0,0,0,-1019.086404870442,0,-9,-9,2019,10,0,42,52,1,0,0,24.86192168442616,24.86192168442616,0,0,0,0,0,0,0,0,7.291591172286886,0,46.31,51.53,-9,-9,5,1,1,0,0,11,8,5,0,793,2181326.110802366,1521815.045290597,394928.211826526,0,3503.505612894635 -16403,20241,36903,36904,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.190853373217477,9.354642822913233,0,8,3,-7.751696280689297,0,-9,-9,2019,10,0,39,39,1,1,0,21.84789026217816,21.84789026217816,0,0,0,0,0,0,0,0,8.274958586172756,0,51,49,48,49,7,2,3,0,0,1,8,5,1,322.5,803925.5077161364,479812.4967942316,349519.9354072616,0,7336.849376873839 -16403,20241,36904,36903,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.178669328543373,7.331475796116226,0,34,-3,-47.09939237614802,0,3,3,2019,12,0,40,16,1,2,0,4.009016453749046,4.009016453749046,0,0,0,0,14.5,0,0,0,0,0,48,49,51,49,7,2,3,0,0,10,8,5,1,322.5,803925.5077161364,479812.4967942316,349519.9354072616,0,7336.849376873839 -16403,20242,36905,-9,36904,36903,1,0,24,0,0,0,1,1,-9,0,4,8.516577179909413,8.37526407486394,0,0,0,-1127.551928323646,0,2,2,2019,11,0,41,41,1,2,1,13.14093215019349,13.14093215019349,0,0,0,0,0,0,0,0,1.844003176483099,0,47,58,-9,-9,7,2,3,0,0,1,8,5,1,868,99286.18614408374,-48387.94545698009,208727.4338918278,165484.1755658878,1514.901330968386 -16403,20243,36906,-9,36904,36903,1,0,24,0,0,0,1,1,-9,0,4,8.199790331195768,8.393131345126486,0,0,0,-949.4820544211195,0,2,2,2019,11,0,48,48,1,2,1,10.06553187903327,10.06553187903327,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,2,3,0,0,1,8,4,1,354,29824.5237852798,-36326.26576604062,0,0,1891.513437709831 -16403,20244,36907,-9,36904,36903,1,0,18,0,0,0,2,2,1,0,4,7.295821316449958,6.806217956764304,0,0,0,-958.7320030501797,-9,2,2,2019,12,0,30,0,1,2,1,4.324410730407075,4.324410730407075,0,0,0,0,0,0,0,0,.6180420381590224,0,46,59,-9,-9,7,2,3,0,0,1,8,2,1,303,64284.94377155922,0,0,0,530.2582619681389 -16404,20245,36908,36909,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.60800131541881,7.645456767078617,0,2,1,-5.621135985294616,0,3,2,2019,7,0,46,42,1,0,0,5.837540611581741,5.837540611581741,0,0,0,0,0,1,0,1,0,0,54.79,55.86,38.72,31.6,8.333333333333334,1,1,0,1,3,5,3,1,516,28335.80034250658,-32202.79879395496,101867.3635023326,48271.55035097351,1561.722414277162 -16404,20245,36909,36908,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,0,0,0,2,-1,-112.3041521939188,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38.72,31.6,54.79,55.86,1.666666666666667,1,1,1,0,8,5,3,1,516,28335.80034250658,-32202.79879395496,101867.3635023326,48271.55035097351,1561.722414277162 -16404,20246,36910,-9,36908,36909,1,0,21,0,1,0,1,1,1,0,4,7.378960887783069,7.309540957790606,0,0,0,-1015.840109224585,-9,2,3,2019,10,0,34,0,1,0,1,5.936279146084622,5.936279146084622,0,0,0,0,0,1,0,1,2.574854181811919,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,158,31703.2177006623,2298.039898348029,0,0,1175.048389364488 -16405,20247,36911,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1091.201233199905,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.560044941783483,0,57.9,35.78,-9,-9,10,1,1,0,0,0,12,1,0,640,78955.7569699961,0,87836.59239158462,0,830.2310264884836 -16405,20248,36912,-9,36911,-9,1,1,48,0,0,0,2,2,-9,0,4,8.252181621166288,8.436916143191604,0,0,0,-1025.491818775201,0,3,-9,2019,7,0,37,37,1,0,0,11.04358940057897,11.04358940057897,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1579,107459.0971264764,353032.8581191862,0,0,1489.245383802272 -16406,20249,36913,36914,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.365838617261785,8.437921672132596,0,6,-3,66.04533978718597,0,1,1,2019,8,0,48,38,1,0,0,9.837765454172171,9.837765454172171,0,0,0,0,0,0,0,0,0,0,44.02,50.32,52,54.51,8.333333333333334,1,1,0,0,9,11,5,1,976,2077864.868102358,1669789.255191651,226399.8742373933,0,7654.351931536518 -16406,20249,36914,36913,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,10.0840997022483,9.649013997810618,0,6,3,-95.00195243905068,0,2,2,2019,10,0,50,50,1,0,0,36.20531493666782,36.20531493666782,0,0,0,0,0,0,0,0,2.52453794874927,0,52,54.51,44.02,50.32,5,1,1,0,0,9,11,5,1,976,2077864.868102358,1669789.255191651,226399.8742373933,0,7654.351931536518 -16406,20250,36915,-9,36913,36914,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-902.4302973389819,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.57,51.43,-9,-9,5,1,1,0,0,0,11,1,1,277,-90661.52826561517,0,0,0,0 -16407,20251,36916,36917,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.927580705793476,9.07410611968151,0,6,11,-4.381388529767057,0,-9,-9,2019,9,0,60,50,1,1,0,13.10714550247198,13.10714550247198,0,0,0,0,0,1,1,0,0,0,52,55,57.06,57.76,7,1,1,0,0,1,7,5,1,156,665452.0601555635,577075.9387908506,0,0,4207.185081721693 -16407,20251,36917,36916,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,7.50684831610793,8.105842687381205,0,11,-11,-4.086388261715817,0,2,3,2019,7,0,24,18,1,0,0,13.54886930613161,13.54886930613161,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,55,8.333333333333334,1,1,0,0,8,7,5,1,156,665452.0601555635,577075.9387908506,0,0,4207.185081721693 -16408,20252,36918,36920,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,0,7.0844952598786,7.073836970982361,8,3,3.185756174162329,-9,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.388175614363271,6.8624951221008,54.27,48.04,52.23,56.28,8.333333333333334,1,1,0,0,11,13,4,1,727.6666666666666,654417.9618819501,620613.3507123719,0,0,3040.07756406871 -16408,20252,36919,-9,36920,36918,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-948.6028220132093,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,727.6666666666666,654417.9618819501,620613.3507123719,0,0,3040.07756406871 -16408,20252,36920,36918,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.089085904085369,8.181078967361358,0,8,-3,-9.061767841913792,0,3,2,2019,12,0,60,40,1,0,0,6.980968508923362,6.980968508923362,0,0,0,0,0,1,1,0,2.281248731049462,0,52.23,56.28,54.27,48.04,6.666666666666667,1,1,0,0,11,13,4,1,727.6666666666666,654417.9618819501,620613.3507123719,0,0,3040.07756406871 -16408,20253,36921,-9,36920,36918,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.0897803346066,1,2,2,2019,6,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,.9049672490233482,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,533,69867.31127672156,0,0,0,231.0555753490436 -16409,20254,36922,36924,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.493109559830982,8.594016889428895,0,8,1,-45.28228881083029,0,2,2,2019,7,0,37,49,1,0,0,19.71100488186176,19.71100488186176,0,0,0,0,0,1,1,0,0,0,57.33,53.46,30.77,64.34,8.333333333333334,1,1,0,0,9,4,4,1,739.6666666666666,85297.94694764755,200061.4262869072,0,0,2362.245011671616 -16409,20254,36923,-9,36924,36922,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-843.1633839501991,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,739.6666666666666,85297.94694764755,200061.4262869072,0,0,2362.245011671616 -16409,20254,36924,36922,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,5.79239397158629,5.349530685787324,0,8,-1,54.55887975715645,0,2,1,2019,19,8,40,40,1,8,0,.8881852196222002,.8881852196222002,0,0,0,0,0,1,1,0,2.514876026619621,0,30.77,64.34,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,739.6666666666666,85297.94694764755,200061.4262869072,0,0,2362.245011671616 -16410,20255,36925,36926,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,24,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,14.16363106986041,24.97379557154496,138.9082932923682,14.5,1,1,0,0,0,56.13,32.4,32.17,54.65,8.333333333333334,1,1,0,0,0,2,1,1,365.5,5467.819699884152,32631.00811078396,73974.40123025926,0,1839.533268017744 -16410,20255,36926,36925,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,24,-8,0,0,3,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,56.13,32.4,5,1,1,0,0,0,2,1,1,365.5,5467.819699884152,32631.00811078396,73974.40123025926,0,1839.533268017744 -16411,20256,36927,-9,36928,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.157182409323,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1056,-96712.63463910059,0,0,0,1722.515047390538 -16411,20256,36928,-9,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,6.013311884461312,6.169435696602375,0,0,-885.4305746615852,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.92026490332576,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1056,-96712.63463910059,0,0,0,1722.515047390538 -16411,20256,36929,-9,36928,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-847.8688099015999,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1056,-96712.63463910059,0,0,0,1722.515047390538 -16412,20257,36930,36931,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.587171802101017,6.903198892000129,5,-6,-29.76770575648923,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.547328150223994,6.789519715928752,53.23,42.9,37.22,46.74,8.333333333333334,1,1,0,0,0,2,3,1,1225,273373.8134598634,0,246550.4873884462,0,3023.742106939932 -16412,20257,36931,36930,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.493020375822012,7.693066109893317,5,6,-23.45091175415756,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.164702750147925,7.743346372728265,37.22,46.74,53.23,42.9,6.666666666666667,1,1,0,0,0,2,3,1,1225,273373.8134598634,0,246550.4873884462,0,3023.742106939932 -16413,20258,36932,36933,36935,-9,1,1,34,0,0,0,1,1,-9,0,4,8.369643629745498,8.372190443994869,0,2,7,-134.8533248652661,0,3,-9,2019,12,0,37,35,1,0,0,14.41772406854977,14.41772406854977,0,0,0,0,0,1,1,0,.538984075941022,0,51.49,57.57,34.79,58.34,8.333333333333334,2,3,0,0,6,4,4,1,392.5,129366.2471639931,114676.4961323771,0,0,1356.187902613043 -16413,20258,36933,36932,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,0,0,0,2,-7,-25.44306652062391,0,-9,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,58.34,51.49,57.57,6.666666666666667,2,3,0,0,0,4,4,1,392.5,129366.2471639931,114676.4961323771,0,0,1356.187902613043 -16413,20259,36934,-9,36935,-9,1,0,38,0,0,0,2,2,-9,0,5,8.270228586018797,8.294466195130818,0,0,0,-1027.762663265435,0,3,-9,2019,10,0,45,46,1,0,0,10.59603548997188,10.59603548997188,0,0,0,0,0,1,1,0,0,0,72.87,27.3,-9,-9,10,2,3,0,0,10,4,4,1,630,-28847.68096406697,-69772.4863713431,185263.5709631019,99135.06261367039,1864.557380700863 -16413,20260,36935,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.178246125786,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,598,258244.2936320968,0,253781.0956755121,0,1544.518916019839 -16414,20261,36936,36937,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,0,0,40,4,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48,49,8,2,3,0,0,0,8,1,0,276,139033.7464428522,30600.35130512068,0,0,1880.312774602737 -16414,20261,36937,36936,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,39,-4,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,49,54,54,7,2,3,0,0,0,8,1,0,276,139033.7464428522,30600.35130512068,0,0,1880.312774602737 -16414,20262,36938,36939,36937,36936,1,1,30,0,0,0,1,1,-9,0,4,0,0,0,1,7,0,0,3,3,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,54.38,46,58,8.333333333333334,2,3,1,0,2,8,1,0,1150.5,124175.3101373426,197143.8407183473,0,0,0 -16414,20262,36939,36938,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,40.72,54.38,7,2,3,0,0,0,8,1,0,1150.5,124175.3101373426,197143.8407183473,0,0,0 -16414,20263,36940,-9,36937,36936,1,1,27,0,0,0,1,1,-9,0,4,7.393886063613465,7.37237903052159,0,0,0,-857.6957499164723,0,3,3,2019,10,0,14,35,1,1,1,9.879945971503883,9.879945971503883,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,6,8,3,0,136,-15796.15867123216,0,0,0,887.8809218859019 -16414,20264,36941,-9,36937,36936,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-992.2659091975987,-9,3,3,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,2,0,830,-70620.76068388234,0,0,0,86.14064659263531 -16414,20265,36942,-9,36937,36936,1,1,22,0,0,0,1,1,-9,0,3,0,0,0,0,0,-979.5870365080903,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,694,-35454.07109780687,0,0,0,0 -16414,20266,36943,-9,36937,36936,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.3838763651156,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.91,55.39,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,203,-12501.26038265534,0,0,0,175.0741612943379 -16415,20267,36944,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.710899084461528,7.04962332996711,0,0,-905.4650514435302,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.263430365495159,6.573089667268657,53,44,-9,-9,8,1,1,0,0,0,5,2,1,1123,420588.3807453685,242122.2108847829,80888.76757937879,0,1434.957794105323 -16416,20268,36945,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.257460245084008,8.088264888493953,0,0,0,-948.7457325091303,0,1,1,2019,15,3,37,37,1,3,0,10.97009063619577,10.97009063619577,0,0,0,0,0,0,0,0,3.825228696705502,0,25.79,57.16,-9,-9,3.333333333333333,1,1,0,0,6,2,4,0,105,-78921.31269090027,-42139.24051811673,0,0,1237.801609875729 -16417,20269,36946,36947,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,9,-11,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.584037143380656,0,51.55,41.42,59.3,44.82,8.333333333333334,1,1,0,0,0,10,2,1,1714.5,505789.7610101088,-53785.0324147866,309644.1147570428,0,1308.096639655142 -16417,20269,36947,36946,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,9,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,44.82,51.55,41.42,8.333333333333334,1,1,0,0,0,10,2,1,1714.5,505789.7610101088,-53785.0324147866,309644.1147570428,0,1308.096639655142 -16418,20270,36948,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.57453231047491,5.410593157789731,0,0,-921.7459549939533,-9,2,2,2019,14,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.347461337402358,5.582687523654084,47,38,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,1557,407942.5700164443,199577.655746832,133328.2982858168,0,1511.027622324488 -16419,20271,36949,36952,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,5.452902458715467,5.568286062785881,0,19,-3,-131.0098557935853,0,3,3,2019,11,0,48,32,1,1,0,.6464270969295277,.6464270969295277,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,2,4,1,457.75,464099.5186564135,276967.1828357429,135183.1085076286,85029.05111272691,2565.300420216507 -16419,20271,36950,-9,36949,36952,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.622714305059,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,457.75,464099.5186564135,276967.1828357429,135183.1085076286,85029.05111272691,2565.300420216507 -16419,20271,36951,-9,36949,36952,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.0746312981606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,457.75,464099.5186564135,276967.1828357429,135183.1085076286,85029.05111272691,2565.300420216507 -16419,20271,36952,36949,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.6105973258371,8.653691863807969,0,7,3,11.88292774992032,0,-9,-9,2019,9,0,43,42,1,1,0,16.01582453142897,16.01582453142897,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,2,4,1,457.75,464099.5186564135,276967.1828357429,135183.1085076286,85029.05111272691,2565.300420216507 -16420,20272,36953,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.846539575664154,7.118832355068502,0,0,-991.4724626328763,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.798473538735533,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1164,74692.42307678654,132650.6371176838,0,0,1498.750446499723 -16421,20273,36954,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,6.813482873133221,6.737944693000307,0,0,0,-1078.583887746695,0,-9,-9,2019,16,4,32,17,1,4,0,3.40606905685958,3.40606905685958,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,2,0,888.5,314.791013238244,517.8240608360427,0,0,1836.903961983074 -16421,20273,36955,-9,36954,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.764097276037,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,888.5,314.791013238244,517.8240608360427,0,0,1836.903961983074 -16422,20274,36956,36957,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.286824566179651,6.622024307057096,10,1,-26.63112980351686,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,2.249008838860076,6.526411924218652,21.84106128343132,7,1,1,0,1.558728161117811,6.342727696562907,42.37,21.16,48.13,10.74,6.666666666666667,1,1,0,0,0,13,2,1,201,179255.373450731,39068.87303455408,0,0,3476.427059220249 -16422,20274,36957,36956,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,10,-1,-102.9231773590207,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,13.19253895128758,0,2,1,1,0,3.539419274447017,0,48.13,10.74,42.37,21.16,8.333333333333334,1,1,0,0,0,13,2,1,201,179255.373450731,39068.87303455408,0,0,3476.427059220249 -16423,20275,36958,36959,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.304786374630777,7.354941481556626,6,4,26.01294487446572,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.539922286768835,7.406501241885617,52.77,55.33,41.98,57.83,8.333333333333334,1,1,0,0,5,11,5,1,510,97919.83688938506,0,188387.2120548362,0,7604.023590581637 -16423,20275,36959,36958,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.948356240703273,9.189696278116667,5.752847122819984,6,-4,-102.5160472688946,0,-9,-9,2019,17,5,36,-9,1,5,0,34.57142380603872,34.57142380603872,0,0,0,5.357744594897063,0,1,1,0,6.250994645158793,5.983893071551817,41.98,57.83,52.77,55.33,6.666666666666667,1,1,0,0,5,11,5,1,510,97919.83688938506,0,188387.2120548362,0,7604.023590581637 -16424,20276,36960,36961,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,8.914179825735863,8.68741756660641,53,5,-32.39444237946058,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.668445578450373,8.828565437640728,62.39,56.71,52.23,55.6,10,1,1,0,0,6,7,5,1,2158,3589101.987036283,624305.0566963924,2696987.433986792,0,5926.988366967752 -16424,20276,36961,36960,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.598497288035555,7.795034695864927,52,-5,-86.16193216979082,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.373426449007193,7.723575251647323,52.23,55.6,62.39,56.71,8.333333333333334,1,1,0,0,0,7,5,1,2158,3589101.987036283,624305.0566963924,2696987.433986792,0,5926.988366967752 -16425,20277,36962,36964,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.585773307083675,8.943892073652671,0,6,16,35.10565540963827,0,3,2,2019,16,5,48,40,1,5,0,15.51135437927737,15.51135437927737,0,0,0,0,14.5,1,1,0,0,0,43.52,52.09,41.55,48.36,8.333333333333334,1,1,0,0,7,9,4,1,591.3333333333334,3774694.362368553,2070494.835394579,1428018.022269199,0,3398.021333652783 -16425,20277,36963,-9,36964,36962,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.164200672362,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,591.3333333333334,3774694.362368553,2070494.835394579,1428018.022269199,0,3398.021333652783 -16425,20277,36964,36962,-9,-9,1,0,37,0,1,0,1,1,-9,0,1,7.51337214653551,7.102878436433734,0,6,-16,-144.4947326255924,0,-9,-9,2019,6,0,35,15,1,0,0,3.825545785548866,3.825545785548866,0,0,0,0,0,1,1,0,4.348006103769318,0,41.55,48.36,43.52,52.09,6.666666666666667,1,1,0,0,3,9,4,1,591.3333333333334,3774694.362368553,2070494.835394579,1428018.022269199,0,3398.021333652783 -16426,20278,36965,36966,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.687722216107314,8.441147227751271,8,1,-54.49694691575908,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.445940284731277,8.704441778573505,58.15,52.91,45.5,43.69,10,1,1,0,0,0,1,5,1,415.5,1266713.909105473,755606.0393369524,482478.3466532486,0,5632.695615938874 -16426,20278,36966,36965,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.384415811112099,8.436946113183343,8,-1,-20.47043320816722,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.80023686338795,8.106586398059534,45.5,43.69,58.15,52.91,8.333333333333334,1,1,0,0,0,1,5,1,415.5,1266713.909105473,755606.0393369524,482478.3466532486,0,5632.695615938874 -16427,20279,36967,36968,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,7.907104475459212,7.755203455639051,0,6,-8,-70.97077630554519,0,2,2,2019,7,0,18,22,1,0,0,13.65414536623889,13.65414536623889,0,0,0,0,0,1,1,0,0,0,54.79,55.86,53.14,51.28,10,1,1,0,0,7,10,4,1,1119.25,100486.3197527286,56041.42561552455,182063.0512448755,111338.7624103813,2932.602415156559 -16427,20279,36968,36967,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,8.693243891290777,9.319190357106615,0,6,8,72.09532318338695,0,-9,-9,2019,16,5,44,45,1,5,0,22.77630124837765,22.77630124837765,0,0,0,0,0,1,1,0,4.376578988536923,0,53.14,51.28,54.79,55.86,8.333333333333334,1,1,0,0,3,10,4,1,1119.25,100486.3197527286,56041.42561552455,182063.0512448755,111338.7624103813,2932.602415156559 -16427,20279,36969,-9,36967,36968,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.105968754386,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,1119.25,100486.3197527286,56041.42561552455,182063.0512448755,111338.7624103813,2932.602415156559 -16427,20279,36970,-9,36967,36968,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.2736667502639,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1119.25,100486.3197527286,56041.42561552455,182063.0512448755,111338.7624103813,2932.602415156559 -16428,20280,36971,36972,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,29,-3,-78.14410315843668,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,0,0,0,2.898704029925166,0,48.68,51.82,56.3,38.96,8.333333333333334,1,1,0,0,9,2,4,1,671,87127.39496904482,58243.80442912579,175155.3132911987,0,1937.793807958048 -16428,20280,36972,36971,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.207478867749042,8.54634476732515,0,5,3,194.7877837564122,0,-9,-9,2019,9,0,35,40,1,0,0,17.08446149415822,17.08446149415822,0,0,0,0,0,0,0,0,0,0,56.3,38.96,48.68,51.82,8.333333333333334,1,1,0,0,12,2,4,1,671,87127.39496904482,58243.80442912579,175155.3132911987,0,1937.793807958048 -16428,20281,36973,-9,36971,36972,1,1,30,0,0,0,1,1,-9,0,3,7.932964089897841,8.093603219373808,0,0,0,-1031.130188881436,-9,2,2,2019,15,3,38,0,1,3,1,9.461784720436379,9.461784720436379,0,0,0,0,0,0,0,0,3.648025312766383,0,22.65,64.05,-9,-9,5,1,1,0,0,2,2,4,1,165,6892.589211259063,-3677.257913489625,0,0,511.4845226015185 -16429,20282,36974,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.143356036506399,7.883849811715536,0,0,0,-1000.653321115359,0,1,3,2019,8,0,38,38,1,0,0,11.29716824784937,11.29716824784937,0,0,0,0,0,0,0,0,3.018287207039461,0,44.41,43.96,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,1107,76549.78537035917,0,0,0,1502.940226188987 -16430,20283,36975,36976,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.783343250872163,8.715078561919727,0,2,0,12.58949924391989,0,-9,-9,2019,18,6,45,48,1,6,0,18.05756271863873,18.05756271863873,0,0,0,0,2,0,0,0,0,0,35.97,61.83,54.2,57.49,8.333333333333334,1,1,0,0,5,10,5,1,811,1499675.893666576,1326938.545679068,219547.8449565804,111508.8367378247,4557.580655718501 -16430,20283,36976,36975,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.71959636547119,9.021967473514888,5.85008504898844,2,0,42.3887453931691,0,2,2,2019,9,0,37,39,1,0,0,20.22348857064867,20.22348857064867,0,0,0,0,0,0,0,0,3.805095331624507,5.619965844541079,54.2,57.49,35.97,61.83,8.333333333333334,1,1,0,0,9,10,5,1,811,1499675.893666576,1326938.545679068,219547.8449565804,111508.8367378247,4557.580655718501 -16431,20284,36977,-9,36981,36978,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.902150298686,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,604,1909354.078858292,1170947.229518228,776444.8265172172,0,4539.358951500157 -16431,20284,36978,36981,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,9.124144389583009,9.011573419291032,0,9,7,-53.52998394636526,0,-9,-9,2019,9,0,50,50,1,1,0,21.68785543727734,21.68785543727734,0,0,0,0,0,1,1,0,0,0,53,55,32.89,59.48,8,1,1,0,0,1,9,4,1,604,1909354.078858292,1170947.229518228,776444.8265172172,0,4539.358951500157 -16431,20284,36979,-9,36981,36978,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-927.7140929794602,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,604,1909354.078858292,1170947.229518228,776444.8265172172,0,4539.358951500157 -16431,20284,36980,-9,36981,36978,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.008060114857,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,604,1909354.078858292,1170947.229518228,776444.8265172172,0,4539.358951500157 -16431,20284,36981,36978,-9,-9,1,0,45,0,3,0,1,1,-9,1,3,6.708514337520956,6.602296542356256,0,22,-7,-112.2355208186905,0,2,2,2019,26,8,15,15,1,8,0,6.19838237422858,6.19838237422858,0,0,0,0,27,1,1,0,0,0,32.89,59.48,53,55,5,1,1,0,0,7,9,4,1,604,1909354.078858292,1170947.229518228,776444.8265172172,0,4539.358951500157 -16432,20285,36982,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.809282869591821,7.433786112266064,0,0,-1129.574779915235,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.96606250030216,7.882612717018577,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,679,736663.7880604247,461606.28872752,257573.7307690125,0,1742.910096126242 -16433,20286,36983,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.716481243287719,9.284457239437177,0,0,0,-1030.530278751317,0,2,2,2019,12,0,37,8,1,0,0,24.88989704234076,24.88989704234076,0,0,0,0,0,0,0,0,4.760136362463612,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,4,8,5,0,282,-37277.00280794234,51182.0813740286,0,0,1995.890380369075 -16434,20287,36984,36985,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.310581573718137,9.269352292881978,7.863696238149123,34,3,-106.684273260074,0,2,2,2019,6,0,43,37,1,0,0,21.16422673777489,21.16422673777489,0,0,0,0,0,0,0,0,.8802360237571945,7.913532477498721,51.77,58.57,52,53,8.333333333333334,1,1,0,0,8,9,5,1,1155,422714.2023931852,74234.18170839897,418719.8610894082,71534.70323505021,6712.264400749973 -16434,20287,36985,36984,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.492919822005021,8.432833435777782,0,7,-3,63.67579343600839,0,-9,-9,2019,10,0,37,37,1,1,0,19.7554715179345,19.7554715179345,0,0,0,0,0,0,0,0,6.64428354940036,0,52,53,51.77,58.57,8,1,1,0,0,1,9,5,1,1155,422714.2023931852,74234.18170839897,418719.8610894082,71534.70323505021,6712.264400749973 -16435,20288,36986,36987,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.023277858625416,8.435313098500739,51,1,26.31957301836756,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.937374239903256,8.06498304358958,57.06,57.76,60.05,42.65,10,1,1,0,0,4,9,4,1,911.5,1948719.601727406,465738.6580497838,728612.4154082129,0,3793.185703636127 -16435,20288,36987,36986,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.408464446421354,6.402864608695697,51,-1,67.66112640919981,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.989776728469101,6.195267688792863,60.05,42.65,57.06,57.76,6.666666666666667,1,1,0,0,0,9,4,1,911.5,1948719.601727406,465738.6580497838,728612.4154082129,0,3793.185703636127 -16436,20289,36988,36989,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,46,2,-45.05942506252223,0,2,2,2019,7,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,2.609985769154829,0,57.16,56.15,59.68,49.4,8.333333333333334,1,1,0,0,7,9,2,1,795.5,1155166.779282803,744139.9342182501,370876.2799220159,0,2086.476587971898 -16436,20289,36989,36988,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.741165991888979,6.992816195916209,46,-2,-17.08235401932262,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.726943706552096,7.028272765680343,59.68,49.4,57.16,56.15,10,1,1,0,0,0,9,2,1,795.5,1155166.779282803,744139.9342182501,370876.2799220159,0,2086.476587971898 -16437,20290,36990,36991,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.621366852038937,8.539903424077567,0,7,3,45.83095363684131,0,2,2,2019,12,1,37,37,1,1,0,21.07698954054813,21.07698954054813,0,0,0,0,2,0,0,0,0,0,46.27,57.3,48.92,48.06,8.333333333333334,1,1,0,0,9,1,5,1,558.3333333333334,1484845.846259601,1248144.534958674,410078.7042343921,194852.9667155983,4403.201114904036 -16437,20290,36991,36990,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.642000552526786,8.880057069328332,0,7,-3,51.99855218384581,0,2,2,2019,5,0,37,37,1,0,0,15.58651821175239,15.58651821175239,0,0,0,0,0,0,0,0,0,0,48.92,48.06,46.27,57.3,6.666666666666667,1,1,0,0,10,1,5,1,558.3333333333334,1484845.846259601,1248144.534958674,410078.7042343921,194852.9667155983,4403.201114904036 -16437,20290,36992,-9,36990,36991,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.553301678308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,558.3333333333334,1484845.846259601,1248144.534958674,410078.7042343921,194852.9667155983,4403.201114904036 -16438,20291,36993,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.768030292649591,6.9544467037986,0,0,-1052.705114765162,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.641124373835022,7.085447268609236,62.67,49.54,-9,-9,10,1,1,0,0,8,10,2,1,446,234658.9638609316,225717.3889689647,0,0,1321.078807809651 -16439,20292,36994,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1004.06624015223,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,1203,102446.8081127813,0,0,0,-225.0808139149007 -16440,20293,36995,36996,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.182745196575691,7.976188701664168,0,28,-2,95.77520633851464,0,2,2,2019,10,0,19,19,1,1,0,20.89772082855007,20.89772082855007,0,0,0,0,0,0,0,0,6.902641203143427,0,51,54,60.13,49.27,8,1,1,0,0,1,4,5,1,451,1535473.974237566,1322949.995258277,330922.9070696603,122270.7782451485,4302.93657886539 -16440,20293,36996,36995,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.059322366446768,8.804563651503216,0,30,2,39.18355593752165,0,2,2,2019,6,0,37,37,1,0,0,24.64724886651369,24.64724886651369,0,0,0,0,0,0,0,0,.5465548835041277,0,60.13,49.27,51,54,10,1,1,0,0,8,4,5,1,451,1535473.974237566,1322949.995258277,330922.9070696603,122270.7782451485,4302.93657886539 -16441,20294,36997,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.083688872176495,7.804210945856905,3.535366339140621,0,0,-1103.571125705452,0,-9,-9,2019,2,0,46,37,1,0,0,6.941553785293029,6.941553785293029,0,0,0,0,0,0,0,0,3.106629013325032,3.892863410442545,45.13,54.73,-9,-9,10,1,1,0,0,10,9,4,1,459,412589.1972429798,83226.96361399064,198013.622830824,0,1460.990693975884 -16442,20295,36998,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,3.4927428604472,4.018383000681673,0,0,-936.2414477850388,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,5.486241112803706,0,0,1,1,0,0,3.82614073571334,45.6,25.23,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1816,86343.38448439789,91906.26606302318,0,0,694.198890902471 -16443,20296,36999,37000,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.638625540805865,6.048790424412951,49,5,66.37649443416909,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.778082327094955,41.34,56.62,50,47,8.333333333333334,2,3,0,0,6,5,3,1,409.5,296393.3907836753,191902.5954927423,178014.3960866235,0,2711.656768049401 -16443,20296,37000,36999,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.510239514090549,7.600624875749767,5.932234290809293,49,-5,32.71248362327518,0,3,3,2019,11,0,30,30,1,1,0,6.044584917212317,6.044584917212317,0,0,0,0,0,1,1,0,2.499552458439982,6.071667993127064,50,47,41.34,56.62,7,2,3,0,0,1,5,3,1,409.5,296393.3907836753,191902.5954927423,178014.3960866235,0,2711.656768049401 -16444,20297,37001,37002,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,5,0,50.02661219807001,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,50,47,7,1,1,0,0,0,4,2,1,208.5,801694.9961111373,520268.1888786937,211346.1505846675,0,1253.286680837098 -16444,20297,37002,37001,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.754037099109131,6.994461982794682,39,0,-55.09638511908145,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.773715955143744,7.171137619357357,50,47,52,47,7,1,1,0,0,6,4,2,1,208.5,801694.9961111373,520268.1888786937,211346.1505846675,0,1253.286680837098 -16445,20298,37003,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.44349894097612,8.761510886836639,0,0,0,-1009.148995103278,0,2,2,2019,16,5,38,37,1,5,0,14.58571356051585,14.58571356051585,0,0,0,0,0,0,0,0,0,0,45.01,57.46,-9,-9,5,1,1,0,0,10,7,5,0,770,143105.9957976794,63906.66656718819,0,0,1381.69219345942 -16446,20299,37004,-9,-9,-9,1,1,39,0,0,0,1,1,-9,1,2,7.23623615263812,7.468912649197694,0,0,0,-1001.908940356366,0,2,2,2019,12,0,25,20,1,0,0,5.479360557649872,5.479360557649872,0,0,0,0,2,1,1,0,0,0,45.06,36.24,-9,-9,5,1,1,0,0,9,9,3,0,617,180288.1165640013,159590.7948956733,0,0,1320.134131702268 -16447,20300,37005,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,5.774727653122204,5.771224342382991,0,0,-997.0460497508683,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.731007210141317,0,33.26,57.64,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1092,1344.636827127221,0,0,0,38.89476571109685 -16448,20301,37006,-9,37007,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.2198068791783,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,712,38271.68516714117,0,0,0,2629.863143622995 -16448,20301,37007,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.931553193213227,8.109746312954961,0,0,0,-997.4033376482878,0,2,-9,2019,20,8,40,35,1,8,0,7.941337107637133,7.941337107637133,0,0,0,0,0,1,1,0,0,0,46.39,29.02,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,712,38271.68516714117,0,0,0,2629.863143622995 -16449,20302,37008,37009,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.290829049014278,8.952590776558134,0,10,2,80.7397448631947,0,3,3,2019,12,3,42,41,1,3,0,22.2904283179873,22.2904283179873,0,0,0,0,0,0,0,0,0,0,44.64,41.94,53.07,52.7,8.333333333333334,1,1,0,0,11,11,5,1,1414,-18284.73980548807,103256.6777466814,0,0,3702.28445532459 -16449,20302,37009,37008,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.241304668783576,7.214246162849873,0,10,-2,20.81356364505256,0,1,2,2019,7,0,20,29,1,0,0,9.969873955694814,9.969873955694814,0,0,0,0,7,0,0,0,0,0,53.07,52.7,44.64,41.94,8.333333333333334,1,1,0,0,11,11,5,1,1414,-18284.73980548807,103256.6777466814,0,0,3702.28445532459 -16449,20303,37010,-9,37009,37008,1,1,24,0,0,0,2,2,-9,0,2,7.423466020014589,7.142242348907198,0,0,0,-1053.312494713837,-9,2,2,2019,15,0,27,0,1,4,1,6.636964311403823,6.636964311403823,0,0,0,0,0,0,0,0,0,0,36.18,37.77,-9,-9,3.333333333333333,1,1,0,0,7,11,3,1,844,-36791.1727354429,-37396.75397673369,0,0,1025.991498670528 -16450,20304,37011,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,7.962194767352702,7.953515926423377,5.657356277930278,0,0,-903.8426645031033,0,2,2,2019,11,1,38,38,1,1,0,6.608856141051602,6.608856141051602,0,0,0,0,0,0,0,0,5.606644874932614,5.666176291537009,46.08,35.94,-9,-9,5,1,1,0,0,9,9,4,0,576,115247.9298633677,0,0,0,1083.403508073285 -16451,20305,37012,37013,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.476132291947668,7.863890650609701,57,-2,-21.11683728387715,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.75823437955188,47.2,34.16,50.01,52.35,8.333333333333334,1,1,0,0,0,6,3,1,1009.5,874813.0869554074,367259.0156054189,177613.935032937,0,2839.690298169433 -16451,20305,37013,37012,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,2,38.0695268319746,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,52.35,47.2,34.16,8.333333333333334,1,1,0,0,0,6,3,1,1009.5,874813.0869554074,367259.0156054189,177613.935032937,0,2839.690298169433 -16452,20306,37014,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.434013451603038,7.353791300801203,0,0,-1006.730433417684,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.817315099619002,7.698819343102459,61.02,39.43,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,71,265326.9804786441,163706.3840685595,0,0,1766.125333121492 -16453,20307,37015,37016,-9,-9,1,0,40,1,1,0,1,1,-9,0,4,8.652224802918346,8.459136372430367,0,8,-1,-13.34064189034464,0,2,2,2019,9,0,55,55,1,0,0,12.66477847373081,12.66477847373081,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.18,60.2,6.666666666666667,1,1,0,0,7,9,5,1,587,604719.0677053864,259190.0138160805,494557.710578895,202919.1463227813,4266.496263989447 -16453,20307,37016,37015,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.177863397180365,8.645848490349939,0,8,1,-19.40485659904255,0,1,2,2019,10,0,26,20,1,0,0,20.21805305607126,20.21805305607126,0,0,0,0,0,1,1,0,2.04209174216785,0,51.18,60.2,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,587,604719.0677053864,259190.0138160805,494557.710578895,202919.1463227813,4266.496263989447 -16453,20307,37017,-9,37015,37016,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.272803764451,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,587,604719.0677053864,259190.0138160805,494557.710578895,202919.1463227813,4266.496263989447 -16454,20308,37018,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.566716881374875,9.147386061382894,0,0,0,-1069.094345440739,0,-9,-9,2019,11,0,50,45,1,0,0,30.51337175445751,30.51337175445751,0,0,0,0,0,1,1,0,4.652709557558032,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,758,-67976.22564505285,123089.8375940407,0,0,3615.906225040165 -16455,20309,37019,-9,37022,37020,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.3924015186719,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,2,0,641.25,2217194.609826722,101438.438979523,1038425.432069534,0,3531.856178924507 -16455,20309,37020,37022,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,7.435781649720887,7.489256886623913,0,29,1,41.425576086053,0,3,3,2019,12,0,24,24,1,0,0,8.536270485651531,8.536270485651531,0,0,0,0,74.5,1,0,1,0,0,39.89,42.29,43.5,39.76,5,1,1,0,0,11,9,2,0,641.25,2217194.609826722,101438.438979523,1038425.432069534,0,3531.856178924507 -16455,20309,37021,-9,37022,37020,1,0,16,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1072.164583672869,-9,3,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.47,42.95,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,641.25,2217194.609826722,101438.438979523,1038425.432069534,0,3531.856178924507 -16455,20309,37022,37020,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,0,0,0,29,-1,-35.80621921464464,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,0,0,43.5,39.76,39.89,42.29,1.666666666666667,1,1,0,0,0,9,2,0,641.25,2217194.609826722,101438.438979523,1038425.432069534,0,3531.856178924507 -16455,20310,37023,-9,37022,37020,1,1,23,0,2,0,3,3,-9,1,2,0,0,0,0,0,-955.2904672705235,0,3,3,2019,34,11,0,0,3,11,1,0,0,0,0,0,0,7,1,0,1,4.749598529304651,0,37.03,41.77,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,115,-145358.1359288906,0,0,0,1089.437219625531 -16456,20311,37024,-9,37026,37025,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.195753217823,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,0,495,-29810.30893424369,43278.60960642996,0,0,2536.417298009788 -16456,20311,37025,37026,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,8.145126162969214,7.947229058965382,0,6,0,-26.49080085174809,0,1,-9,2019,8,0,45,44,1,0,0,7.726255002933158,7.726255002933158,0,0,0,0,0,1,1,0,0,0,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,0,495,-29810.30893424369,43278.60960642996,0,0,2536.417298009788 -16456,20311,37026,37025,-9,-9,1,0,26,0,1,0,1,1,-9,0,5,7.974045247374144,8.131678815274771,0,6,0,43.23096599780479,0,1,2,2019,6,0,40,35,1,0,0,8.654811748765059,8.654811748765059,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,2,10,4,0,495,-29810.30893424369,43278.60960642996,0,0,2536.417298009788 -16457,20312,37027,37028,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,8.758908005058871,8.889589322330968,0,42,2,94.93848302878592,0,2,2,2019,6,0,40,40,1,0,0,16.96894789247332,16.96894789247332,0,0,0,0,2,0,0,0,0,0,59.14,52.5,59.87,26.62,10,1,1,0,0,5,9,5,1,500.5,575542.9405882731,491060.988823146,203476.6164325361,0,2975.178328023601 -16457,20312,37028,37027,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.549621644595092,7.780367952293405,42,-2,-91.67341752503201,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.124369374159357,7.565793863935265,59.87,26.62,59.14,52.5,8.333333333333334,1,1,0,0,0,9,5,1,500.5,575542.9405882731,491060.988823146,203476.6164325361,0,2975.178328023601 -16458,20313,37029,-9,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.082773602447553,7.281160125433167,0,0,0,-998.3395146399246,0,-9,-9,2019,8,0,24,20,1,0,0,8.946761801983925,8.946761801983925,0,0,0,0,0,1,1,0,0,0,57.78,38.59,-9,-9,6.666666666666667,1,1,0,1,5,9,3,0,759,-53126.75789601877,54816.25102034777,85948.91685240877,16804.5180406295,682.6415695952708 -16458,20314,37030,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.608005867701005,8.601235475474404,0,0,0,-943.0905926628278,0,-9,-9,2019,23,7,60,62,1,7,0,10.8499049264317,10.8499049264317,0,0,0,0,27,1,1,0,0,0,28.73,42.47,-9,-9,5,1,1,0,1,4,9,4,0,734,-249948.712941808,-49517.91406045658,0,0,2436.209504143711 -16459,20315,37031,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.765190585501029,8.608656124012439,0,0,0,-884.4915804819466,0,-9,-9,2019,11,0,42,72,1,0,0,16.36383995613123,16.36383995613123,0,0,0,0,0,0,0,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,420,0,0,0,0,2317.29738236237 -16460,20316,37032,-9,37033,37034,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.101275610143,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,392.3333333333333,640146.3098102891,465525.9819814765,91732.8380371995,68360.99867325819,4832.772206590143 -16460,20316,37033,37034,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,7.371734562690282,7.661725634520142,0,1,-6,167.2907793340522,-9,2,2,2019,9,0,50,0,1,0,0,4.066573940889172,4.066573940889172,0,0,0,0,0,1,1,0,7.549688109771898,0,59.32,36.25,49.04,55.86,6.666666666666667,1,1,0,0,7,13,4,1,392.3333333333333,640146.3098102891,465525.9819814765,91732.8380371995,68360.99867325819,4832.772206590143 -16460,20316,37034,37033,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,8.894127941682155,9.085377564253692,0,1,6,3.722372428913422,-9,2,2,2019,12,1,20,0,1,1,0,34.20272467571356,34.20272467571356,0,0,0,0,0,1,1,0,0,0,49.04,55.86,59.32,36.25,3.333333333333333,1,1,0,0,7,13,4,1,392.3333333333333,640146.3098102891,465525.9819814765,91732.8380371995,68360.99867325819,4832.772206590143 -16461,20317,37035,-9,37037,37036,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.067957332835,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,1405.333333333333,96334.96543552123,-75174.99546791632,44482.59107548709,38755.15793855626,1922.974398560941 -16461,20317,37036,37037,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.529892445238302,8.384133724577044,0,6,-8,-42.26480958620196,0,2,2,2019,6,0,65,66,1,0,0,7.890497637485661,7.890497637485661,0,0,0,0,0,1,1,0,3.031932362290355,0,57.16,56.15,55.73,53.98,8.333333333333334,1,1,0,0,6,4,4,0,1405.333333333333,96334.96543552123,-75174.99546791632,44482.59107548709,38755.15793855626,1922.974398560941 -16461,20317,37037,37036,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.576597456225584,6.84082075359108,0,6,8,64.8806204157773,0,3,2,2019,5,0,31,15,1,0,0,2.811531738971158,2.811531738971158,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,0,1405.333333333333,96334.96543552123,-75174.99546791632,44482.59107548709,38755.15793855626,1922.974398560941 -16461,20318,37038,-9,37037,37036,1,1,21,0,1,0,2,2,-9,0,5,7.038493136771269,7.645684794242407,0,0,0,-979.11164101106,0,2,2,2019,9,0,40,45,1,0,1,5.425472287375554,5.425472287375554,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,2,4,3,0,651,-93472.44896823265,-41218.14967592614,0,0,1459.593809856749 -16462,20319,37039,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.809475858444605,5.742646295760621,0,0,-919.765381948895,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.5598099082884331,5.784912151998378,63.39,45.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,654,37900.50678216729,146952.2307567105,0,0,1001.991872414398 -16463,20320,37040,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1016.558994019133,0,-9,3,2019,7,1,0,0,4,1,0,0,0,1,1.886674174103542,0,24.02338328444042,0,1,1,0,0,0,57.45,30.06,-9,-9,10,1,1,0,0,0,2,1,0,661,-116787.3170259619,0,0,0,2168.003322761006 -16464,20321,37041,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.238258052306934,8.276127016486173,0,0,-1072.590040296865,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.210664897038568,8.136304423872431,55.12,42.1,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,185,818886.0257450345,532075.6817125983,208203.7039848264,0,2371.017260220138 -16465,20322,37042,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.9235956823644,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.99,35.86,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,771,103648.1875974213,0,0,0,1534.920804379164 -16466,20323,37043,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.323526769610176,7.737161176252161,0,0,-986.732763176052,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.042008931623587,59.29,49.68,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,125,545138.473824693,516515.3478648757,124973.5811835793,0,1261.405896392014 -16467,20324,37044,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,7.630519271550133,8.264684369978713,0,0,-1001.584495146544,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.999357700185153,54.2,57.49,-9,-9,10,1,1,0,0,6,9,4,1,225,1145161.351150974,695625.9638295179,275353.1911210067,0,1374.415683680138 -16468,20325,37045,37046,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.214321744441545,7.825058269622676,0,15,-3,33.36423642677599,0,3,2,2019,10,0,40,27,1,0,0,10.5403721092855,10.5403721092855,0,0,0,0,0,1,0,1,0,0,46.74,49.92,49.52,56.95,8.333333333333334,2,3,0,0,7,8,3,0,387.75,-24256.37394782361,-11439.32873212378,0,0,2247.747199139241 -16468,20325,37046,37045,-9,-9,1,0,38,0,2,0,2,2,-9,1,3,0,0,0,16,3,84.27950979023841,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.52,56.95,46.74,49.92,8.333333333333334,2,3,1,0,5,8,3,0,387.75,-24256.37394782361,-11439.32873212378,0,0,2247.747199139241 -16468,20325,37047,-9,37046,37045,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-876.3621440163826,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,387.75,-24256.37394782361,-11439.32873212378,0,0,2247.747199139241 -16468,20325,37048,-9,37046,37045,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.5901182380604,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,387.75,-24256.37394782361,-11439.32873212378,0,0,2247.747199139241 -16469,20326,37049,-9,37050,37051,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.5814673669,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,810.6666666666666,401288.3647137565,61292.27420370466,235312.8108302517,0,2238.97732481283 -16469,20326,37050,37051,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,31,-10,-22.07169506796818,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,41.51,49.68,37.85,5,2,3,0,0,0,8,3,1,810.6666666666666,401288.3647137565,61292.27420370466,235312.8108302517,0,2238.97732481283 -16469,20326,37051,37050,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,8.402062692964922,8.614672225341803,0,31,10,-30.917214009077,0,3,2,2019,11,0,54,54,1,0,0,11.76440346593806,11.76440346593806,0,0,0,0,0,1,1,0,0,0,49.68,37.85,50.75,41.51,6.666666666666667,2,3,0,0,9,8,3,1,810.6666666666666,401288.3647137565,61292.27420370466,235312.8108302517,0,2238.97732481283 -16469,20327,37052,-9,37050,37051,1,0,27,0,1,0,1,1,-9,0,3,7.765297867845982,7.96931143810814,0,0,0,-739.5364855989196,0,2,2,2019,10,0,38,30,1,0,1,8.954679478424541,8.954679478424541,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,6.666666666666667,2,3,0,0,5,8,3,1,435,0,0,0,0,1055.080956284707 -16469,20328,37053,-9,37050,37051,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-962.8359922158708,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,6.666666666666667,2,3,0,0,1,8,1,1,516,0,0,0,0,-359.5151388691303 -16470,20329,37054,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.2328271265427,8.350620398417012,0,0,0,-1041.227303609307,-9,2,2,2019,12,0,45,0,1,2,0,11.15979000251472,11.15979000251472,0,0,0,0,0,0,0,0,4.209919141327623,0,47,49,-9,-9,5,1,1,0,0,8,5,4,1,1816,290118.8327168945,60775.64077719155,168040.0841130996,79977.80690916895,1846.663439918051 -16471,20330,37055,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,5.742605866103045,5.797282439454419,0,0,-883.1186282679153,0,3,3,2019,10,1,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,0,5.846256496198109,48.18,61.8,-9,-9,6.666666666666667,1,1,0,1,8,5,2,1,939,-51273.44880917823,0,0,0,680.7667033893392 -16472,20331,37056,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-845.0776633220914,0,2,2,2019,19,7,0,40,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,47.64,55.02,-9,-9,3.333333333333333,1,1,1,1,9,6,1,1,1554,0,0,0,0,57.63035911656183 -16473,20332,37057,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.011126253739396,7.145656660336537,0,0,-995.5026976641931,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.938225986545207,51.05,46.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,416,134904.2890081599,165981.6490492479,0,0,608.4992821208316 -16474,20333,37058,-9,-9,-9,1,0,29,0,3,0,3,3,-9,1,3,0,0,0,0,0,-932.8141421287717,0,2,2,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.04,24.73,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,511,36193.14795946699,0,0,0,2243.033337598042 -16474,20333,37059,-9,37058,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.967232194203,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,511,36193.14795946699,0,0,0,2243.033337598042 -16474,20333,37060,-9,37058,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.299252432256,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,1,0,511,36193.14795946699,0,0,0,2243.033337598042 -16475,20334,37061,37062,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.335628292331156,5.324011110529524,45,-5,42.0610643135402,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,42,1,1,0,0,5.344639766341442,43.21,51.88,50.71,52.35,6.666666666666667,1,1,0,0,1,7,3,1,504,1662615.327502949,784229.1822870204,593333.4605643412,0,3237.940401191377 -16475,20334,37062,37061,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.433584706025602,8.256341114077257,45,5,71.0835756058671,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.188082181827594,50.71,52.35,43.21,51.88,8.333333333333334,1,1,0,0,7,7,3,1,504,1662615.327502949,784229.1822870204,593333.4605643412,0,3237.940401191377 -16476,20335,37063,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-943.6382648389209,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,57.02,-9,-9,6.666666666666667,2,3,0,0,4,8,1,0,1293,0,0,0,0,0 -16476,20336,37064,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1045.823164408333,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,2,3,0,0,0,8,1,0,808,-269274.3979555628,0,0,0,0 -16477,20337,37065,37066,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.562497069897502,8.349317735232882,39,1,-4.090439318020339,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.786483011965489,8.763764453675687,57.16,56.15,49,48,8.333333333333334,1,1,0,0,7,11,4,1,519,53049.98405284299,0,162298.243143727,54687.59094327728,3853.776403209134 -16477,20337,37066,37065,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.322732447323997,7.981353758520241,6.82155580489647,39,-1,31.75522093604248,0,3,3,2019,12,4,24,37,1,4,0,7.294264140102984,7.294264140102984,0,0,0,0,2,0,0,0,5.02854501696533,6.736152660818171,49,48,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,519,53049.98405284299,0,162298.243143727,54687.59094327728,3853.776403209134 -16478,20338,37067,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-893.0843893983974,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,.2390044036441967,0,1,1,0,0,0,38.75,18.3,-9,-9,10,1,1,0,0,0,1,1,0,881,-125411.571918571,0,0,0,2017.647884620295 -16479,20339,37068,37069,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.276037464242403,9.024447154140773,0,16,6,34.30351810961854,0,2,1,2019,8,0,40,37,1,0,0,38.61636143495044,38.61636143495044,0,0,0,0,0,0,0,0,3.854582507610311,0,57.06,57.76,49.91,58.02,8.333333333333334,2,3,0,0,7,8,5,1,869.5,393735.3768311515,262932.4050607252,436835.0811660286,185308.8210903102,3295.94268309947 -16479,20339,37069,37068,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,16,-6,38.40488094508238,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.91,58.02,57.06,57.76,8.333333333333334,2,3,1,0,2,8,5,1,869.5,393735.3768311515,262932.4050607252,436835.0811660286,185308.8210903102,3295.94268309947 -16480,20340,37070,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.036927851311091,7.772052343385605,0,0,0,-994.9047720718187,0,2,2,2019,17,7,35,40,1,7,0,10.73373469543338,10.73373469543338,0,0,0,0,0,1,1,0,5.224727906608897,0,49.86,52.61,-9,-9,3.333333333333333,1,1,0,0,5,11,4,1,249,303595.9189533819,133833.9747337171,77377.16406974892,-17144.31713538802,912.3602184486568 -16481,20341,37071,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.389629291752932,7.450969285216945,5.514421875362621,0,0,-937.2762684155074,0,3,2,2019,12,0,18,22,1,0,0,10.03118346937491,10.03118346937491,0,0,0,0,0,1,1,0,2.334346835128748,5.922767241215205,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,12,4,3,0,1433,190488.1739380055,39150.79660268397,10305.94682753996,0,731.3780638067723 -16482,20342,37072,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.091641124336451,7.370938119549992,0,0,0,-990.1911825068624,0,1,1,2019,8,1,4,4,1,1,0,39.16566112487026,39.16566112487026,0,0,0,0,0,1,1,0,0,0,38.31,49.7,-9,-9,6.666666666666667,3,4,0,0,3,12,3,1,573,-7395.223931256979,0,0,0,925.1250197127349 -16483,20343,37073,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.201112005313,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,8.099257357175007,0,0,1,1,0,0,0,45.56,49.1,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,175,128189.2551526945,0,239644.6688751438,0,175.1490850282793 -16484,20344,37074,37076,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.404484949567239,8.96400127174509,0,9,6,33.51502246244529,0,2,2,2019,9,0,40,40,1,0,0,16.66384831700857,16.66384831700857,0,0,0,0,0,1,1,0,.531889837761049,0,55.36,54.24,53.22,55.2,8.333333333333334,1,1,0,0,10,11,5,1,843.6666666666666,304606.2615694226,110789.7325317296,190861.7244842598,0,3734.524020003629 -16484,20344,37075,-9,37076,37074,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.133486486718,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,5,1,843.6666666666666,304606.2615694226,110789.7325317296,190861.7244842598,0,3734.524020003629 -16484,20344,37076,37074,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.447881556996171,8.526484519978741,0,9,-6,65.86642793346815,0,2,2,2019,6,0,35,35,1,0,0,13.3215240773913,13.3215240773913,0,0,0,0,0,1,1,0,0,0,53.22,55.2,55.36,54.24,8.333333333333334,1,1,0,0,10,11,5,1,843.6666666666666,304606.2615694226,110789.7325317296,190861.7244842598,0,3734.524020003629 -16485,20345,37077,37078,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.592370648019022,6.567636519858903,45,7,-11.38420066185379,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,2.580833044094438,6.564071495722985,33.82,45.18,30.77,64.34,8.333333333333334,1,1,0,0,9,6,2,1,418,427541.2747525106,258905.757575973,183941.2991798463,0,1577.984953138633 -16485,20345,37078,37077,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.451413503884212,6.042122458541025,45,-7,-136.9675092497832,0,3,2,2019,16,4,0,22,4,4,0,0,0,0,0,0,0,14.5,1,1,0,1.046045386934493,6.264322795700932,30.77,64.34,33.82,45.18,8.333333333333334,1,1,0,0,10,6,2,1,418,427541.2747525106,258905.757575973,183941.2991798463,0,1577.984953138633 -16486,20346,37079,37080,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.385951765958531,8.258430115696685,55,0,-26.77278973833729,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.737983743775772,8.356024779913803,57.06,57.76,54.2,57.49,8.333333333333334,4,2,0,0,0,7,5,1,706,1996009.944507562,1333769.583704504,534974.1507649393,0,6651.528440648286 -16486,20346,37080,37079,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.367488180925774,8.651441241682972,52,0,18.89429608135067,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.117377594209433,8.666373036696195,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,7,5,1,706,1996009.944507562,1333769.583704504,534974.1507649393,0,6651.528440648286 -16487,20347,37081,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,1,0,8.634157004184241,7.985161379716886,0,0,-1071.504878367845,0,2,2,2019,21,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,8.064329561451398,8.396885586456632,47.14,13.98,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,520,178759.4473018788,136102.5974808972,0,0,4768.811586152176 -16488,20348,37082,-9,37083,37084,1,0,27,1,2,0,2,2,-9,1,2,0,0,0,0,0,-987.3801327826887,0,2,3,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,120,1,1,0,0,0,28.27,45.56,-9,-9,6.666666666666667,2,3,1,0,0,6,1,0,394,-140957.2973597134,0,0,0,331.7337378909421 -16488,20349,37083,37084,-9,-9,1,0,50,1,2,0,2,2,-9,1,1,0,0,0,3,-2,0,0,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,36.09,27.08,31.2,54.25,1.666666666666667,2,3,0,0,0,6,1,0,1727,5270.799126261118,66997.09054447437,148717.3180957695,89281.32013559801,2060.732885079195 -16488,20349,37084,37083,-9,-9,1,1,52,1,2,0,3,3,-9,1,2,0,0,0,3,2,0,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,31.2,54.25,36.09,27.08,5,2,3,1,0,0,6,1,0,1727,5270.799126261118,66997.09054447437,148717.3180957695,89281.32013559801,2060.732885079195 -16488,20350,37085,37087,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,5.115922978262152,4.954656720375744,0,3,1,4.066078510174592,0,-9,-9,2019,14,1,6,24,1,1,0,2.545872018238406,2.545872018238406,0,0,0,0,0,1,1,0,0,0,39.67,55.06,43.61,56.01,6.666666666666667,2,3,0,0,10,6,2,0,2088.5,14575.75958322679,0,0,0,1139.183605037529 -16488,20350,37086,-9,37087,37085,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.9640037200459,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,0,2088.5,14575.75958322679,0,0,0,1139.183605037529 -16488,20350,37087,37085,37083,37084,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,3,-1,-49.88717950698833,0,2,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,39.67,55.06,5,2,3,0,0,0,6,2,0,2088.5,14575.75958322679,0,0,0,1139.183605037529 -16488,20350,37088,-9,37087,37085,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-849.8543950894835,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,0,2088.5,14575.75958322679,0,0,0,1139.183605037529 -16489,20351,37089,-9,37090,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.2371509043912,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,1,1,625.5,0,0,0,0,2121.069163914072 -16489,20351,37090,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,0,0,0,0,0,-1070.102734261429,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.417629029796652,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,6,6,1,1,625.5,0,0,0,0,2121.069163914072 -16490,20352,37091,37092,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.844108979418823,6.793686954717754,54,1,90.84530071830643,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,.4551045639442091,0,1,1,0,2.992687389675096,6.896094479811334,64.84,39.17,47.02,56.67,8.333333333333334,1,1,0,0,0,4,2,1,1073,410234.1428322534,53048.17456643275,185471.8639016873,0,1558.022820855485 -16490,20352,37092,37091,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.051914650090745,6.254059234052074,54,-1,14.60674838311682,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.661747407982454,47.02,56.67,64.84,39.17,8.333333333333334,1,1,0,0,0,4,2,1,1073,410234.1428322534,53048.17456643275,185471.8639016873,0,1558.022820855485 -16491,20353,37093,37094,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,8.502698896080114,8.638771848600333,0,34,3,72.37290862687897,0,3,-9,2019,13,3,40,37,1,3,0,10.16669168816806,10.16669168816806,0,0,0,0,0,1,0,1,0,0,38,27,50,55,5,1,1,0,0,11,2,5,1,477,267997.3371276276,57912.82527803151,206777.1673809364,0,3174.102195593759 -16491,20353,37094,37093,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.83239413505398,8.208431775685135,0,34,-3,125.9227282371554,0,3,2,2019,12,2,39,39,1,2,0,7.928608188591628,7.928608188591628,0,0,0,0,0,1,0,1,0,0,50,55,38,27,8.333333333333334,1,1,0,0,13,2,5,1,477,267997.3371276276,57912.82527803151,206777.1673809364,0,3174.102195593759 -16491,20354,37095,-9,37094,37093,1,0,27,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1043.135917335375,0,2,2,2019,21,6,0,36,3,6,1,0,0,0,0,0,0,0,1,0,1,0,0,28.09,40.41,-9,-9,1.666666666666667,1,1,0,1,8,2,1,1,338,255152.0049416334,0,0,0,395.475679110929 -16492,20355,37096,-9,37098,37101,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1094.57662516618,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16492,20355,37097,-9,37098,37101,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-952.8472036579599,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16492,20355,37098,37101,-9,-9,1,0,36,1,4,0,1,1,-9,0,4,7.38957620621795,7.522069827792,0,12,-2,3.504446891888677,0,2,2,2019,8,0,13,13,1,0,0,16.52483151250459,16.52483151250459,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16492,20355,37099,-9,37098,37101,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.934099170426,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16492,20355,37100,-9,37098,37101,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-897.3431377062257,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16492,20355,37101,37098,-9,-9,1,1,38,1,4,0,1,1,-9,0,4,8.540484676078142,8.695723167307152,0,12,2,38.91096604667445,0,2,2,2019,11,0,43,42,1,0,0,16.65139619642057,16.65139619642057,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,12,13,4,1,569.3333333333334,122033.9218589968,67515.01679190484,157564.7481166151,137805.2431045957,3871.926814577558 -16493,20356,37102,37103,-9,-9,1,1,37,0,1,0,1,1,-9,0,2,8.352613020343648,8.782167635380217,0,10,1,-68.33369935824281,0,-9,-9,2019,10,0,42,42,1,0,0,13.84754733969994,13.84754733969994,0,0,0,0,0,1,1,0,7.608251793262025,0,50.67,42.05,40.99,58.35,6.666666666666667,1,1,0,0,9,9,4,1,481.3333333333333,235399.5219421755,124433.5889544139,245061.5636612888,203404.8618385809,2792.065283376138 -16493,20356,37103,37102,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,6.845043705082628,6.745568415132572,0,10,-1,-43.64817642742148,0,-9,-9,2019,8,0,20,20,1,0,0,5.632796875089192,5.632796875089192,0,0,0,0,0,1,1,0,0,0,40.99,58.35,50.67,42.05,8.333333333333334,2,3,0,0,7,9,4,1,481.3333333333333,235399.5219421755,124433.5889544139,245061.5636612888,203404.8618385809,2792.065283376138 -16493,20356,37104,-9,37103,37102,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.5240252907926,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,481.3333333333333,235399.5219421755,124433.5889544139,245061.5636612888,203404.8618385809,2792.065283376138 -16494,20357,37105,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-934.7680189264187,0,1,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.179727578238189,0,39.96,42.48,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1376,118824.3764647237,0,0,0,1406.865407705585 -16495,20358,37106,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.498486895830569,8.793302042959887,0,0,0,-1013.785314246799,0,2,2,2019,18,7,37,0,1,7,0,20.99859112866079,20.99859112866079,0,0,0,0,0,0,0,0,0,0,46.85,53.17,-9,-9,6.666666666666667,3,4,0,0,9,9,5,0,203,-99959.86356060384,0,0,0,2803.461988858551 -16496,20359,37107,-9,37109,37108,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.902094434562,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1535,460919.9181918008,205627.1517779299,304846.6300764071,150022.0457526132,5700.34205340072 -16496,20359,37108,37109,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.821762115509086,8.670563775995193,0,19,1,26.64069410533976,0,2,1,2019,11,0,43,43,1,0,0,20.07049330394273,20.07049330394273,0,0,0,0,0,0,0,0,7.785319270738364,0,51.49,57.57,57.16,56.15,10,1,1,0,0,12,12,5,1,1535,460919.9181918008,205627.1517779299,304846.6300764071,150022.0457526132,5700.34205340072 -16496,20359,37109,37108,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.032923357507205,8.965639717666745,0,19,-1,-36.6112423778679,0,1,1,2019,6,0,70,34,1,0,0,11.68453899765209,11.68453899765209,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.49,57.57,8.333333333333334,1,1,0,0,11,12,5,1,1535,460919.9181918008,205627.1517779299,304846.6300764071,150022.0457526132,5700.34205340072 -16496,20359,37110,-9,37109,37108,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1019.371067411106,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,1535,460919.9181918008,205627.1517779299,304846.6300764071,150022.0457526132,5700.34205340072 -16497,20360,37111,37112,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.331756674121497,8.793339459572376,5.910668642887574,41,2,101.8789160951955,0,3,3,2019,7,0,37,38,1,0,0,13.07081163439028,13.07081163439028,0,0,0,0,0,0,0,0,8.088310067745324,6.30985444724339,63.25,39.9,54.77,55.87,10,1,1,0,0,8,7,5,1,899,1770546.57752213,1279660.412047902,430876.7196383957,0,5799.34917784829 -16497,20360,37112,37111,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.424108240346618,8.982071159002142,7.292943910598692,7,-2,79.72904682151454,0,-9,-9,2019,7,0,24,26,1,0,0,22.67171011472137,22.67171011472137,0,0,0,0,2,0,0,0,3.3993114290276,7.811436868451695,54.77,55.87,63.25,39.9,8.333333333333334,1,1,0,0,8,7,5,1,899,1770546.57752213,1279660.412047902,430876.7196383957,0,5799.34917784829 -16498,20361,37113,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,17,7,0,1,1,1,2019,11,4,0,30,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,44.34,48.7,50,54,8.333333333333334,1,1,0,0,9,11,1,1,594,1563863.86184361,707181.8306831135,197078.7093717346,0,210.2195922427087 -16499,20362,37114,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,5.134102397347923,4.816098526865348,0,0,-996.2062309777251,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.446421721104859,5.181195345763545,57,49,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1301,399532.6178088944,-40190.54657806803,240759.2874059912,0,1382.190976862648 -16500,20363,37115,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,5.290223491784126,5.207509092634647,0,0,-1003.755716369163,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.701119689313186,5.247885951889679,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,2495,484354.7526104114,0,383098.3881912143,0,683.1879730741821 -16501,20364,37116,-9,37118,-9,1,0,28,0,0,0,2,2,0,0,4,0,0,0,0,0,-1108.570269689115,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,13,1,1,683,-68954.51993190659,0,0,0,1366.881812225484 -16501,20365,37117,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,9.027153017654857,8.993825962525365,0,8,-3,46.47630624064766,0,3,3,2019,15,5,42,48,1,5,0,30.47841638902736,30.47841638902736,0,0,0,0,14.5,1,1,0,0,0,41.55,59.5,52.32,57.18,6.666666666666667,1,1,0,0,9,13,5,1,752,1165917.872514535,534881.0924980131,297016.1782065325,0,3450.606869644289 -16501,20366,37118,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,8.857739247678936,9.023648581296975,0,8,3,-16.35393575777006,0,3,3,2019,6,0,47,42,1,0,0,18.34814855315667,18.34814855315667,0,0,0,0,0,1,1,0,6.709591813888961,0,52.32,57.18,41.55,59.5,10,1,1,0,0,9,13,5,1,183,1104476.910894655,1000593.557441754,220838.0789611441,531.1448148206864,3651.883173537825 -16502,20367,37119,-9,37120,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.518133274087,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,995.5,-8891.292546286044,145201.0887012395,0,0,1459.62163647319 -16502,20367,37120,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.264859423791396,7.983141912091945,0,0,0,-1026.879087818614,0,2,2,2019,11,0,35,45,1,0,0,9.816726023559649,9.816726023559649,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,8,3,0,995.5,-8891.292546286044,145201.0887012395,0,0,1459.62163647319 -16503,20368,37121,37122,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.602665694657904,6.046238631321413,8,5,-83.66461582371173,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,16.62893223582015,0,0,1,1,0,5.115675317341999,5.704257787520876,54,46,44.6,48.69,8,1,1,0,0,0,5,2,1,691.5,422132.9155201453,25472.16899613299,176392.7767075041,0,2899.851906974631 -16503,20368,37122,37121,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.191449760671255,4.836237339850364,8,-5,-115.4255357955553,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.024401399357765,4.891876266352432,44.6,48.69,54,46,8.333333333333334,1,1,0,0,0,5,2,1,691.5,422132.9155201453,25472.16899613299,176392.7767075041,0,2899.851906974631 -16504,20369,37123,-9,37124,37125,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.0521685746721,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,.6553497205283598,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,877.75,16555.60460172915,61338.77325234068,0,0,2889.078216536497 -16504,20369,37124,37125,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.928651881591612,8.969064266297424,0,1,-1,8.986372159886198,-9,-9,-9,2019,11,0,38,0,1,2,0,19.57570090387136,19.57570090387136,0,0,0,0,0,1,1,0,0,0,49,56,51.24,58.84,7,4,1,0,0,1,13,4,0,877.75,16555.60460172915,61338.77325234068,0,0,2889.078216536497 -16504,20369,37125,37124,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,0,0,0,1,1,-70.98143235372234,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49,56,8.333333333333334,1,1,0,0,0,13,4,0,877.75,16555.60460172915,61338.77325234068,0,0,2889.078216536497 -16504,20369,37126,-9,37124,37125,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.022994249967,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,877.75,16555.60460172915,61338.77325234068,0,0,2889.078216536497 -16505,20370,37127,-9,37129,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.1051725453144,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,0,1840,31528.56406720912,-6005.206343376359,0,0,3433.082606304739 -16505,20370,37128,-9,37129,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.533872823821,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,0,1840,31528.56406720912,-6005.206343376359,0,0,3433.082606304739 -16505,20370,37129,-9,-9,-9,1,0,27,0,2,0,1,1,-9,1,4,8.196238494467364,8.073032591039096,6.163944101144913,0,0,-1015.556896944237,0,2,-9,2019,32,11,47,40,1,11,0,10.49858581172298,10.49858581172298,0,0,0,0,0,1,1,0,6.079262781904627,0,19.41,62.78,-9,-9,1.666666666666667,1,1,0,1,7,4,4,0,1840,31528.56406720912,-6005.206343376359,0,0,3433.082606304739 -16506,20371,37130,37132,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.24150481742261,8.151178105129116,0,9,8,-88.56100699631028,0,-9,-9,2019,9,0,41,41,1,0,0,13.87594984753725,13.87594984753725,0,0,0,0,0,1,1,0,0,0,55.19,54.26,33.13,53.82,6.666666666666667,1,1,0,0,12,10,4,0,1027.5,142513.2727214659,39843.20736310178,237055.2598028112,112517.566689017,2949.758410576005 -16506,20371,37131,-9,37132,37130,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.299321599118,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,0,1027.5,142513.2727214659,39843.20736310178,237055.2598028112,112517.566689017,2949.758410576005 -16506,20371,37132,37130,-9,-9,1,0,30,1,3,0,2,2,-9,0,3,7.108220184950156,7.226117531811767,3.917554873823586,9,-8,134.5132603159445,0,2,3,2019,17,5,23,23,1,5,0,7.398999295237553,7.398999295237553,0,0,0,0,0,1,1,0,4.718367759587366,0,33.13,53.82,55.19,54.26,6.666666666666667,1,1,0,0,5,10,4,0,1027.5,142513.2727214659,39843.20736310178,237055.2598028112,112517.566689017,2949.758410576005 -16506,20371,37133,-9,37132,37130,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.329110312012,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,1027.5,142513.2727214659,39843.20736310178,237055.2598028112,112517.566689017,2949.758410576005 -16507,20372,37134,37136,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.082989830282711,8.097666770169564,6.67691103582475,16,2,-145.6236092210094,0,2,2,2019,20,8,41,42,1,8,0,6.710607207076666,6.710607207076666,0,0,0,0,0,1,0,1,6.457418094923534,0,31.48,60.11,32.92,47.48,5,1,1,0,0,11,5,3,1,595,694503.5134189801,558043.3313241581,141676.9172074463,86227.98146375926,2207.219176146344 -16507,20372,37135,-9,37136,37134,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.5617079189599,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,595,694503.5134189801,558043.3313241581,141676.9172074463,86227.98146375926,2207.219176146344 -16507,20372,37136,37134,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,0,0,0,17,-2,62.34663754759587,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,27,1,0,1,1.554347146310237,0,32.92,47.48,31.48,60.11,5,1,1,0,0,4,5,3,1,595,694503.5134189801,558043.3313241581,141676.9172074463,86227.98146375926,2207.219176146344 -16507,20373,37137,-9,37136,37134,1,1,19,0,2,0,2,2,-9,0,3,7.48676513314448,7.414567681783091,0,0,0,-1065.125075598543,-9,2,2,2019,18,6,46,0,1,6,1,3.41650430825591,3.41650430825591,0,0,0,0,0,1,0,1,0,0,31.25,53.29,-9,-9,3.333333333333333,1,1,0,0,5,5,3,1,1286,-52068.79404767107,79313.83413094273,0,0,995.5887946304241 -16508,20374,37138,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,7.298229498063925,8.061699662643173,0,0,-1005.098467923873,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.722925322630843,7.620402224075008,60.53,38.21,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,685,157356.073480408,111547.3864790039,130607.014496409,0,1665.338519827682 -16509,20375,37139,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.261893420484419,8.789305585971203,0,0,0,-878.631074438448,0,2,2,2019,13,2,40,40,1,2,0,14.91758962521737,14.91758962521737,0,0,0,0,0,0,0,0,.4214973620591232,0,37.53,57.13,-9,-9,6.666666666666667,1,1,0,0,9,12,5,0,822,168870.5848439332,11481.91973199923,0,0,2593.877920581243 -16510,20376,37140,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.472443693979891,8.399078537895436,0,0,0,-1054.998615261123,0,1,1,2019,11,1,40,42,1,1,0,14.17298795711562,14.17298795711562,0,0,0,0,0,0,0,0,4.22190030984133,0,46,61.6,-9,-9,5,1,1,0,0,8,8,4,1,332,118730.0056075698,-58519.31269838398,0,0,2156.123115911703 -16511,20377,37141,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.048263947712828,7.731248648591365,0,0,0,-944.7555471139178,0,-9,-9,2019,9,1,40,48,1,1,0,7.543230920969477,7.543230920969477,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,6.666666666666667,1,1,0,1,7,1,4,0,303,32772.61348977953,0,0,0,1697.917075035911 -16512,20378,37142,-9,37144,37143,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.072548539079,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1044.333333333333,843703.4982030982,579686.9206589455,204802.5537045153,23008.52623206053,3660.377524662714 -16512,20378,37143,37144,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,7.431666762161699,7.762832696300946,0,31,-7,20.58237889338142,0,2,2,2019,8,1,55,60,1,1,0,2.97957666099808,2.97957666099808,0,0,0,0,0,1,1,0,6.688664831040352,0,58.05,54.52,38.61,37.98,8.333333333333334,1,1,0,0,9,5,4,1,1044.333333333333,843703.4982030982,579686.9206589455,204802.5537045153,23008.52623206053,3660.377524662714 -16512,20378,37144,37143,-9,-9,1,0,57,0,1,0,2,2,-9,0,1,8.842758748849143,8.750318466008407,0,7,7,-47.02459294565926,0,-9,-9,2019,26,12,68,62,1,12,0,8.587714946708234,8.587714946708234,0,0,0,0,0,1,1,0,5.811129446206044,0,38.61,37.98,58.05,54.52,0,1,1,0,0,9,5,4,1,1044.333333333333,843703.4982030982,579686.9206589455,204802.5537045153,23008.52623206053,3660.377524662714 -16512,20379,37145,-9,37144,37143,1,0,21,0,1,0,2,2,0,0,5,0,0,0,0,0,-977.6992828159931,-9,2,2,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,437,55709.85682390818,0,0,0,0 -16513,20380,37146,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.647979298680761,6.769254369166869,0,0,0,-953.5042858233793,0,-9,-9,2019,15,3,16,16,1,3,0,5.56135829244461,5.56135829244461,0,0,0,0,0,1,1,0,0,0,26.51,52.71,-9,-9,1.666666666666667,1,1,0,1,3,10,2,0,397,-19970.98500040124,18626.21418432959,0,0,704.6842565516508 -16513,20380,37147,-9,37146,-9,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-913.9345260620039,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.67,58.05,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,397,-19970.98500040124,18626.21418432959,0,0,704.6842565516508 -16514,20381,37148,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,9.024521400392233,8.852447351853803,0,0,0,-1068.457044173504,0,1,-9,2019,8,1,45,65,1,1,0,22.18823675915194,22.18823675915194,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,199,70058.04752526234,53677.33482684363,0,0,3293.345461443001 -16514,20381,37149,-9,37148,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-875.4831404048778,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,199,70058.04752526234,53677.33482684363,0,0,3293.345461443001 -16515,20382,37150,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.877376784068096,9.202596857506142,0,0,0,-926.8399992313136,0,1,3,2019,6,0,50,45,1,0,0,14.70449632326978,14.70449632326978,0,0,0,0,0,0,0,0,0,0,57.41,54.88,-9,-9,10,4,2,0,0,8,8,5,0,401,193263.934016862,0,140903.2213765533,35957.96145877944,2143.717689418147 -16516,20383,37151,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,3.643194294495007,3.563506280212055,0,0,-898.6107282736373,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.617547777020263,55.2,41.97,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,123,90206.84634065219,169103.8839672342,112318.608016056,0,661.6470355438593 -16517,20384,37152,37153,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.713294760578583,8.312887740026143,0,7,0,123.7667234999076,0,1,2,2019,10,0,38,38,1,0,0,17.24594906030681,17.24594906030681,0,0,0,0,0,0,0,0,3.536135295006881,0,50.03,52.62,46.34,61.24,8.333333333333334,1,1,0,0,8,11,5,1,504.3333333333333,1067462.858867796,766311.9461983051,305617.3979944553,0,3369.315679686388 -16517,20384,37153,37152,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.080019505995516,7.970327140010912,0,7,0,-52.37806482891853,0,2,2,2019,10,0,37,38,1,0,0,8.864721426548279,8.864721426548279,0,0,0,0,0,0,0,0,3.421741584291846,0,46.34,61.24,50.03,52.62,6.666666666666667,1,1,0,0,8,11,5,1,504.3333333333333,1067462.858867796,766311.9461983051,305617.3979944553,0,3369.315679686388 -16517,20384,37154,-9,37153,37152,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-940.4642951668344,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,11,5,1,504.3333333333333,1067462.858867796,766311.9461983051,305617.3979944553,0,3369.315679686388 -16518,20385,37155,37156,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.301414764369172,7.14528536288166,0,8,0,40.20699878151017,0,-9,-9,2019,11,1,24,20,1,1,0,5.472834878486212,5.472834878486212,0,0,0,0,0,1,1,0,6.776114425002548,0,34.9,36.53,41.23,59.35,8.333333333333334,1,1,0,0,5,11,5,1,730.25,380291.6683522578,0,533449.1278777008,159675.2044192186,17043.7557801938 -16518,20385,37156,37155,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,9.933423708747709,10.02122607058773,0,8,0,-4.03312107384403,0,1,2,2019,10,1,55,55,1,1,0,45.32475335020636,45.32475335020636,0,0,0,0,0,1,1,0,6.996631465237908,0,41.23,59.35,34.9,36.53,8.333333333333334,1,1,0,0,12,11,5,1,730.25,380291.6683522578,0,533449.1278777008,159675.2044192186,17043.7557801938 -16518,20385,37157,-9,37155,37156,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.9278402038718,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,730.25,380291.6683522578,0,533449.1278777008,159675.2044192186,17043.7557801938 -16518,20385,37158,-9,37155,37156,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.067292137566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,730.25,380291.6683522578,0,533449.1278777008,159675.2044192186,17043.7557801938 -16519,20386,37159,37160,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,9,-3,-139.854732831638,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.585465010791694,0,59.02,30.85,51,48,8.333333333333334,1,1,0,0,0,13,2,1,934.5,893195.4742198136,614991.8642744822,281381.5846007823,8047.207780589625,1517.307437982461 -16519,20386,37160,37159,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.304056072200451,6.88744951966555,9,3,31.23892303634527,0,3,-9,2019,10,0,0,84,4,1,0,0,0,0,0,0,0,0,1,1,0,4.906993838133851,6.964099247972768,51,48,59.02,30.85,7,1,1,0,0,0,13,2,1,934.5,893195.4742198136,614991.8642744822,281381.5846007823,8047.207780589625,1517.307437982461 -16520,20387,37161,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.738550305033365,7.656380195375053,0,0,-1156.665430667231,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,3.223855654998657,0,0,0,1,1,0,7.248487486446526,7.928687206263482,37.1,16.85,-9,-9,3.333333333333333,1,1,0,0,3,9,3,1,1353,434272.7027938126,239974.0299642991,218330.480322308,0,2699.556280344035 -16521,20388,37162,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.002140192814695,8.801828303780352,0,0,0,-1045.015405028543,0,1,2,2019,18,6,60,65,1,6,0,11.75989534248798,11.75989534248798,0,0,0,0,0,0,0,0,0,0,20.7,56.75,-9,-9,3.333333333333333,1,1,0,0,12,12,5,1,392,775829.8092724949,524357.6692692901,20467.6280849845,0,1584.199067079489 -16521,20389,37163,-9,37162,-9,1,0,23,0,0,0,1,1,1,0,4,8.220139829421342,8.330729910008644,0,0,0,-1086.224122453281,-9,1,-9,2019,13,1,12,0,1,1,1,43.37507533610034,43.37507533610034,0,0,0,0,0,0,0,0,7.624957253301235,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,800,-12715.03592394075,0,0,0,2446.653443719144 -16522,20390,37164,37165,-9,-9,1,1,47,0,1,0,1,1,-9,0,2,8.741481231973532,8.498432850122198,0,25,1,24.33407625456819,0,2,-9,2019,14,3,45,50,1,3,0,18.32466993457686,18.32466993457686,0,0,0,0,0,1,1,0,3.15635786548755,0,30.42,36.37,53.06,45.59,1.666666666666667,1,1,0,0,9,2,4,1,1070.666666666667,532600.9457698176,391128.8689660295,273044.503924153,96997.9763906857,3732.109694548972 -16522,20390,37165,37164,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.73838656382027,8.192906722687114,0,24,-1,39.5557057807305,0,2,2,2019,10,0,30,30,1,0,0,14.75083179629327,14.75083179629327,0,0,0,0,0,1,1,0,2.686403934890043,0,53.06,45.59,30.42,36.37,8.333333333333334,1,1,0,0,9,2,4,1,1070.666666666667,532600.9457698176,391128.8689660295,273044.503924153,96997.9763906857,3732.109694548972 -16522,20390,37166,-9,37165,37164,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.934646784261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,4,1,1070.666666666667,532600.9457698176,391128.8689660295,273044.503924153,96997.9763906857,3732.109694548972 -16523,20391,37167,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.47841290702271,8.127896051649593,7.113605008780098,0,0,-1117.487688051758,0,2,1,2019,10,1,45,52,1,1,0,4.340686248377086,4.340686248377086,0,0,0,0,0,1,1,0,7.805612125144271,6.819781919795128,51.36,54.65,-9,-9,6.666666666666667,1,1,0,0,8,8,4,1,1039,1775595.615650333,1314759.168013782,450806.2621774432,0,3868.947016643401 -16524,20392,37168,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.662992574032102,7.415373262720665,0,0,0,-1012.291981922662,0,1,1,2019,8,0,16,16,1,0,0,12.28568026278898,12.28568026278898,0,0,0,0,0,1,1,0,7.689067886502292,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,7,3,1,139,324040.4021761696,121319.147742517,676189.104962762,549079.1682340202,1910.929904081443 -16525,20393,37169,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.482544609199254,8.703955366257691,0,0,0,-1107.779528858503,0,2,2,2019,10,0,43,43,1,0,0,18.14872645671641,18.14872645671641,0,0,0,0,0,1,1,0,.1719079758227114,0,52,54.51,-9,-9,5,1,1,0,0,12,4,5,0,523,152845.8555016829,-28838.1975719708,198124.1713400862,92792.17099472777,2076.558766183518 -16526,20394,37170,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.021579683544105,7.376130079164029,0,0,-1041.794712534075,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.914802309513584,7.678714306907049,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,77,456469.5548509055,455069.1947043376,0,0,1407.906708887554 -16527,20395,37171,-9,37173,37172,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1025.119956167884,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,7,5,1,758,1392324.126989329,351231.8393276816,688376.8892532472,107336.6540976178,6181.295273553332 -16527,20395,37172,37173,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.411003013844226,9.377038379125453,0,8,-2,-3.031668492825911,0,-9,-9,2019,11,0,65,55,1,0,0,23.91998675322579,23.91998675322579,0,0,0,0,0,1,1,0,8.019419830580587,0,44.19,58.01,51.77,58.57,6.666666666666667,1,1,0,0,4,7,5,1,758,1392324.126989329,351231.8393276816,688376.8892532472,107336.6540976178,6181.295273553332 -16527,20395,37173,37172,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.254766342016802,8.466379951246118,0,28,2,-76.25768015814043,0,3,2,2019,6,1,25,25,1,1,0,23.68295415770875,23.68295415770875,0,0,0,0,0,1,1,0,1.509013454049004,0,51.77,58.57,44.19,58.01,8.333333333333334,1,1,0,0,11,7,5,1,758,1392324.126989329,351231.8393276816,688376.8892532472,107336.6540976178,6181.295273553332 -16527,20396,37174,-9,37173,37172,1,0,20,0,1,0,2,2,1,0,4,7.867265087065813,7.945861205894954,0,0,0,-880.501523365609,-9,2,2,2019,14,2,39,0,1,2,1,8.128124618546227,8.128124618546227,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,4,7,4,1,672,-119679.672091799,0,0,0,1029.498981948172 -16527,20397,37175,-9,37173,37172,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-993.150504368237,-9,1,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,5836,0,0,0,0,593.7205084720566 -16528,20398,37176,37177,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.94954442994126,7.997616559202472,0,7,-1,64.31329940571726,0,2,3,2019,11,1,18,18,1,1,0,16.32981953498957,16.32981953498957,0,0,0,0,2,0,0,0,6.19346987420965,0,58.86,44.42,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,347.5,31962.78477615049,0,0,0,3253.176457927029 -16528,20398,37177,37176,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.115746762978292,8.259460879082731,7,1,3.675610439639788,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.771188132653471,8.221080088400626,57.16,56.15,58.86,44.42,8.333333333333334,1,1,0,0,1,12,4,1,347.5,31962.78477615049,0,0,0,3253.176457927029 -16529,20399,37178,-9,-9,-9,1,0,44,1,1,0,2,2,-9,1,2,0,0,0,0,0,-991.3995528211999,0,3,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.1,40.66,-9,-9,1.666666666666667,2,3,1,1,7,6,1,1,686,13240.21901668409,0,0,0,756.0030275102943 -16529,20399,37179,-9,37178,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.672738431517,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,1,1,686,13240.21901668409,0,0,0,756.0030275102943 -16530,20400,37180,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.255380660219181,9.618351437070773,0,7,-26,26.98412518555199,0,3,2,2019,7,0,70,50,1,0,0,21.58234000561309,21.58234000561309,0,0,0,0,56,1,1,0,2.062944426957163,0,57.16,56.15,18.77,28.31,6.666666666666667,2,3,0,0,5,8,5,0,252,251583.4976887236,-56447.1239945289,551680.0658433016,359025.186791794,3630.926781708255 -16530,20401,37181,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,7,26,-11.92020133425302,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,18.77,28.31,57.16,56.15,0,1,1,0,0,0,8,5,0,554,173731.8299212327,68949.95284637838,0,0,1063.536706247357 -16531,20402,37182,-9,37184,37183,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1077.376800464276,1,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.22,45.1,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,149,-7337.356888858143,0,0,0,190.5285104314193 -16531,20403,37183,37184,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.518466760837004,8.978378427569186,0,3,6,55.37252258346503,0,-9,-9,2019,6,0,43,41,1,0,0,12.77660356322039,12.77660356322039,0,0,0,0,0,1,1,0,5.811370636197227,0,61.12,51.57,47.42,46.01,8.333333333333334,1,1,0,0,9,10,5,0,1240,285695.0404632571,113929.3272615368,190312.1064457164,61154.54338287745,3162.661653880476 -16531,20403,37184,37183,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.802108217703966,7.709849716329585,0,3,-6,-64.4481284975855,0,2,2,2019,11,2,38,40,1,2,0,7.353929673806325,7.353929673806325,0,0,0,0,27,1,1,0,0,0,47.42,46.01,61.12,51.57,6.666666666666667,1,1,0,0,5,10,5,0,1240,285695.0404632571,113929.3272615368,190312.1064457164,61154.54338287745,3162.661653880476 -16532,20404,37185,37188,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,18,-2,-57.81238388077631,0,2,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,6.850645021876285,0,54.2,57.49,51.14,60.45,8.333333333333334,2,3,0,0,9,8,5,1,703.25,1780374.788458894,564264.0905380973,912542.6384669922,0,7024.390104988368 -16532,20404,37186,-9,37185,37188,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.088258594432,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,703.25,1780374.788458894,564264.0905380973,912542.6384669922,0,7024.390104988368 -16532,20404,37187,-9,37185,37188,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.0185679579292,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,703.25,1780374.788458894,564264.0905380973,912542.6384669922,0,7024.390104988368 -16532,20404,37188,37185,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,9.493067523003855,9.651350062771055,0,18,2,33.09255345333509,0,1,1,2019,10,0,51,55,1,0,0,38.3431650208293,38.3431650208293,0,0,0,0,0,0,0,0,8.367542021619544,0,51.14,60.45,54.2,57.49,8.333333333333334,1,1,0,0,10,8,5,1,703.25,1780374.788458894,564264.0905380973,912542.6384669922,0,7024.390104988368 -16533,20405,37189,37190,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,68,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.18,32.88,62.99,49.54,8.333333333333334,1,1,0,0,0,9,1,1,510.5,231579.3323397936,0,315440.5072486734,0,2912.464627400821 -16533,20405,37190,37189,-9,-9,1,1,88,0,0,0,2,2,-9,0,5,0,0,0,68,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.335192876862553,0,62.99,49.54,43.18,32.88,10,1,1,0,0,0,9,1,1,510.5,231579.3323397936,0,315440.5072486734,0,2912.464627400821 -16534,20406,37191,-9,37192,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.837455513502,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,432.3333333333333,44930.65077368909,-27436.47891050705,0,0,3115.475204030463 -16534,20406,37192,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.661345411414727,8.390150961583547,6.302644695778167,0,0,-813.5100956142278,0,2,3,2019,12,1,24,24,1,1,0,12.22797479619859,12.22797479619859,0,0,0,0,0,1,1,0,6.371218879135402,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,432.3333333333333,44930.65077368909,-27436.47891050705,0,0,3115.475204030463 -16534,20406,37193,-9,37192,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.582949235146,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,432.3333333333333,44930.65077368909,-27436.47891050705,0,0,3115.475204030463 -16535,20407,37194,-9,37195,-9,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-886.3334767698866,-9,3,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,583,192310.6945227588,0,144517.9813944589,0,2380.842574884781 -16535,20407,37195,-9,-9,-9,1,0,33,0,3,0,3,3,-9,1,1,0,0,0,0,0,-943.2818909476895,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,583,192310.6945227588,0,144517.9813944589,0,2380.842574884781 -16535,20407,37196,-9,37195,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.792591139991,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,583,192310.6945227588,0,144517.9813944589,0,2380.842574884781 -16536,20408,37197,37198,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,5.42841257114998,5.586614288615526,7,0,-21.99624404929712,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.341805526327084,5.508542413577898,59.28,30.96,56.16,40.67,0,1,1,0,0,6,2,3,1,404,1507518.79146789,921986.7966617143,216318.001944376,0,1603.694617580903 -16536,20408,37198,37197,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,7.71297245731999,7.893095403484797,7,0,-29.33501328223983,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.984701913272103,7.928704273150665,56.16,40.67,59.28,30.96,10,1,1,0,0,0,2,3,1,404,1507518.79146789,921986.7966617143,216318.001944376,0,1603.694617580903 -16537,20409,37199,-9,37200,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.9179123406473,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.675597250088304,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,2028,-4683.798947262178,0,0,0,1392.147496484216 -16537,20409,37200,-9,-9,-9,1,0,33,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1004.490486413227,0,2,-9,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,42.68,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,2028,-4683.798947262178,0,0,0,1392.147496484216 -16538,20410,37201,37202,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,30,-11,0,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,6.724822394328762,0,54.2,57.49,59.19,51.29,10,1,1,0,0,0,1,1,1,610.5,-7035.011931232497,138523.3864716653,0,0,721.7330636026792 -16538,20410,37202,37201,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,30,11,0,0,-9,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.034701851879181,0,59.19,51.29,54.2,57.49,8.333333333333334,1,1,0,0,0,1,1,1,610.5,-7035.011931232497,138523.3864716653,0,0,721.7330636026792 -16538,20411,37203,-9,37201,37202,1,1,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1013.770109418777,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.368843217035056,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,2257,32502.14244714037,0,0,0,-151.8956845946718 -16539,20412,37204,37206,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,7.935738232839702,7.914173712428274,0,30,3,-36.990318503387,0,1,1,2019,11,0,35,45,1,0,0,11.21619611157546,11.21619611157546,0,0,0,0,0,0,0,0,0,0,54.94,53.18,57.73,54.53,8.333333333333334,1,1,0,0,13,9,4,1,1419.666666666667,579961.8540357515,0,801185.1702318675,255320.803995844,3346.103328580168 -16539,20412,37205,-9,37206,37204,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.2441955200029,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,4,1,1419.666666666667,579961.8540357515,0,801185.1702318675,255320.803995844,3346.103328580168 -16539,20412,37206,37204,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.342287887156219,8.61727407717021,0,30,-3,-105.4633641689962,0,2,2,2019,12,0,35,38,1,0,0,15.02646405837108,15.02646405837108,0,0,0,0,0,0,0,0,0,0,57.73,54.53,54.94,53.18,8.333333333333334,1,1,0,0,13,9,4,1,1419.666666666667,579961.8540357515,0,801185.1702318675,255320.803995844,3346.103328580168 -16540,20413,37207,37210,-9,-9,1,0,34,1,3,0,2,2,-9,0,5,8.063390594932876,8.381107395381544,0,9,0,-18.25634060906662,0,2,2,2019,18,6,30,27,1,6,0,13.06618083685398,13.06618083685398,0,0,0,0,0,1,1,0,0,0,43.38,62.58,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,1000.2,243633.5234933998,21589.22343057644,266572.9665827819,169223.0125632173,4298.00896824253 -16540,20413,37208,-9,37207,37210,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.495644171932,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,1000.2,243633.5234933998,21589.22343057644,266572.9665827819,169223.0125632173,4298.00896824253 -16540,20413,37209,-9,37207,37210,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.7277568147938,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1000.2,243633.5234933998,21589.22343057644,266572.9665827819,169223.0125632173,4298.00896824253 -16540,20413,37210,37207,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.863724028172754,8.883718830160271,0,9,0,113.9164336982452,0,-9,-9,2019,11,0,47,48,1,0,0,16.28156003882376,16.28156003882376,0,0,0,0,0,1,1,0,7.309809907005455,0,54.2,57.49,43.38,62.58,8.333333333333334,1,1,0,0,10,13,4,1,1000.2,243633.5234933998,21589.22343057644,266572.9665827819,169223.0125632173,4298.00896824253 -16540,20413,37211,-9,37207,37210,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.708547690114,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1000.2,243633.5234933998,21589.22343057644,266572.9665827819,169223.0125632173,4298.00896824253 -16541,20414,37212,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,9.136877854705817,9.227979738522174,0,0,0,-914.4007132453305,0,1,2,2019,3,0,40,40,1,0,0,27.90403815939954,27.90403815939954,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,8,5,0,716,85955.84213898392,-56387.55638536168,0,0,2789.585410178935 -16542,20415,37213,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.830097604520107,7.489265484709978,0,0,-1037.151701271163,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.716730482892744,7.594852076475769,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,845,393697.2802102036,34122.40086775692,104068.8540992439,0,1890.444876747945 -16543,20416,37214,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.215680059939011,8.199229312217591,0,0,0,-875.4106469905148,0,2,2,2019,11,0,35,42,1,0,0,11.1406251435571,11.1406251435571,0,0,0,0,7,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,1,8,7,4,0,1023,129976.1492639856,0,0,0,1145.191499529527 -16544,20417,37215,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.657295689594289,8.529705934402854,7.600613475302322,0,0,-946.1933644679522,0,2,2,2019,8,0,55,48,1,0,0,10.03007802978655,10.03007802978655,0,0,0,0,0,1,1,0,0,7.374627622216421,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,1217,-200090.6389537697,0,59295.48396263212,38188.1443879521,3145.27309464579 -16545,20418,37216,37217,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,7,-2,-21.90602583922657,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.756131189458631,0,57.16,56.15,53.14,45.74,8.333333333333334,1,1,0,0,0,10,3,1,968,229562.7930090818,93845.02225513125,208984.8806607827,0,2758.970807771666 -16545,20418,37217,37216,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.095812117565414,7.506363659722328,7,2,49.1623904018463,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.636660837405071,7.515330148669189,53.14,45.74,57.16,56.15,8.333333333333334,1,1,0,0,1,10,3,1,968,229562.7930090818,93845.02225513125,208984.8806607827,0,2758.970807771666 -16546,20419,37218,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.799331018705487,6.947647641004608,0,0,-1011.515476588385,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.623398414266518,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,9,8,2,1,1584,614738.2025599303,82109.33868180242,492541.1196288099,0,812.8560871385548 -16547,20420,37219,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.269043251209609,7.005284192868267,0,0,-1230.158172848554,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,.0054976167439147,0,1,1,0,0,7.12790559907892,46.97,46.92,-9,-9,6.666666666666667,1,1,0,0,0,6,3,0,1000,-169038.5419957828,90088.00431359714,0,0,1275.415254909575 -16548,20421,37220,37221,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.054284328578079,7.240364598957747,39,3,-1.385742678218438,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.617437578441841,7.322515241957764,44.66,42.69,54.74,57.22,6.666666666666667,1,1,0,0,0,12,3,1,855,286879.0214825866,166439.7240662737,162739.587655418,0,2447.84604459834 -16548,20421,37221,37220,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.825066489289656,6.704855916175902,39,-3,2.715016524129369,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.655482480487375,7.355228819571851,54.74,57.22,44.66,42.69,8.333333333333334,1,1,0,0,0,12,3,1,855,286879.0214825866,166439.7240662737,162739.587655418,0,2447.84604459834 -16549,20422,37222,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-944.1750984868089,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.14,24.96,-9,-9,5,1,1,1,0,0,2,1,0,540,-100361.3572510309,-15270.10972219943,0,0,953.5504464121444 -16549,20422,37223,-9,-9,37222,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-939.4799018386045,0,-9,2,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,61.29,43.31,-9,-9,10,1,1,1,0,0,2,1,0,540,-100361.3572510309,-15270.10972219943,0,0,953.5504464121444 -16550,20423,37224,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,4,0,0,0,0,0,-925.9494777095828,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,0,11,1,0,655,24155.20423035426,0,0,0,1556.493369835624 -16551,20424,37225,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.915993502633489,6.228455563596525,0,0,-1067.216150598503,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,4.03171989229586,0,0,1,1,0,3.106746430812717,5.961026985253239,56.85,21.17,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,848,187971.1514630303,-60528.78695769228,173258.7818001012,0,1599.456768805123 -16552,20425,37226,37227,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,69,-3,-27.01938655995686,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,7.39171201137204,0,0,1,1,0,0,0,53,44,56,44,8,1,1,0,0,0,2,2,1,1723.5,664021.1107566818,173215.6400613801,324494.0225099659,0,2603.078364205907 -16552,20425,37227,37226,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,7.53751988559894,7.124375358221006,69,3,-1.140500420623279,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.49729102516398,56,44,53,44,8,1,1,0,0,0,2,2,1,1723.5,664021.1107566818,173215.6400613801,324494.0225099659,0,2603.078364205907 -16553,20426,37228,37229,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.130839213037378,7.007161221048603,48,0,83.43767130979684,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,7.862932901858345,7.370676733367967,42.98,43.5,61.12,51.57,1.666666666666667,1,1,0,0,0,9,2,1,264.5,175775.910007494,294948.3110530654,45418.55922122642,0,2885.285066653365 -16553,20426,37229,37228,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,48,0,-128.9373743028098,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,42.98,43.5,10,1,1,0,0,0,9,2,1,264.5,175775.910007494,294948.3110530654,45418.55922122642,0,2885.285066653365 -16554,20427,37230,-9,37231,37234,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.472149417635,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,721.6,421775.8989899994,75757.52634765541,298088.830412477,0,3644.667072514263 -16554,20427,37231,37234,37235,-9,1,0,42,0,3,0,1,1,-9,0,4,0,0,0,19,0,-91.70529302983256,1,1,1,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,53.96,50.73,44.03,46.69,6.666666666666667,1,1,0,0,0,4,4,1,721.6,421775.8989899994,75757.52634765541,298088.830412477,0,3644.667072514263 -16554,20427,37232,-9,37231,37234,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.103298720428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,721.6,421775.8989899994,75757.52634765541,298088.830412477,0,3644.667072514263 -16554,20427,37233,-9,37231,37234,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.237399652582,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,721.6,421775.8989899994,75757.52634765541,298088.830412477,0,3644.667072514263 -16554,20427,37234,37231,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,9.160687176863805,9.117576361615431,0,19,0,120.7931221836653,0,2,1,2019,9,1,40,43,1,1,0,24.43038173344256,24.43038173344256,0,0,0,0,0,1,1,0,0,0,44.03,46.69,53.96,50.73,6.666666666666667,1,1,0,0,8,4,4,1,721.6,421775.8989899994,75757.52634765541,298088.830412477,0,3644.667072514263 -16554,20428,37235,-9,-9,-9,1,0,71,0,3,0,1,1,-9,0,3,0,6.65826799242661,6.773306262939954,0,0,-1095.824498946682,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.940945573487486,6.334078927727154,61.19,36.58,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,761,68675.69284725162,-21337.69403288729,125492.3601535743,0,1032.638131647498 -16555,20429,37236,37237,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.222024297562841,8.468529188781819,0,25,-3,-12.26406982350546,0,2,1,2019,10,0,30,30,1,0,0,19.54496514394488,19.54496514394488,0,0,0,0,0,0,0,0,8.414059057578481,0,48.68,54.5,45.75,55.83,6.666666666666667,1,1,0,0,7,8,4,1,708,2066355.008003111,1437075.311574024,544611.3873882741,0,3881.839836437367 -16555,20429,37237,37236,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,6.677386581622796,6.470596602690825,25,3,-52.38091004484683,0,3,2,2019,11,3,0,31,4,3,0,0,0,0,0,0,0,0,0,0,0,2.368079231786524,6.853844444739887,45.75,55.83,48.68,54.5,8.333333333333334,1,1,0,0,8,8,4,1,708,2066355.008003111,1437075.311574024,544611.3873882741,0,3881.839836437367 -16555,20430,37238,-9,37236,37237,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1120.749644156938,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,8,1,1,1184,125389.6077149335,0,0,0,754.792258834886 -16555,20431,37239,-9,37236,37237,1,1,19,0,0,0,2,2,1,0,5,6.699955689746587,6.826727543448483,0,0,0,-1012.637657048793,-9,1,1,2019,9,1,7,0,1,1,1,16.4900454771642,16.4900454771642,0,0,0,0,0,0,0,0,0,0,52.21,59.91,-9,-9,10,1,1,0,0,1,8,2,1,170,158492.3432193061,0,0,0,773.1702772796446 -16556,20432,37240,37241,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.80712403270411,5.891382092237512,46,-1,115.7059619124827,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.805718777485751,6.296527922708971,58.15,52.91,56.94,49.53,8.333333333333334,1,1,0,0,9,9,4,1,631.5,2128341.288293772,751191.4879229984,634287.4744844609,0,3840.791582043594 -16556,20432,37241,37240,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.270603959010202,8.693367747503123,7.476594558878154,46,1,121.1537429015927,0,3,3,2019,7,0,45,45,1,0,0,11.4571713079903,11.4571713079903,0,0,0,0,0,1,1,0,5.37114779318475,7.519737283378859,56.94,49.53,58.15,52.91,8.333333333333334,1,1,0,0,11,9,4,1,631.5,2128341.288293772,751191.4879229984,634287.4744844609,0,3840.791582043594 -16557,20433,37242,37243,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,14,-8,-60.38498837331046,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.07,43.44,50.79,56.27,8.333333333333334,1,1,0,0,0,7,3,0,990.5,1376093.928400768,328057.3372413421,608778.6276846149,0,1796.136205182972 -16557,20433,37243,37242,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.825563418016741,7.305654458444911,14,8,50.50091649556555,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.72935451841767,7.728719821994737,50.79,56.27,47.07,43.44,8.333333333333334,1,1,0,0,5,7,3,0,990.5,1376093.928400768,328057.3372413421,608778.6276846149,0,1796.136205182972 -16558,20434,37244,-9,37245,37247,1,1,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-993.5253190299181,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,1,0,423,-74815.85338384246,0,0,0,3287.122207370589 -16558,20434,37245,37247,-9,-9,1,0,34,1,2,0,2,2,-9,1,2,0,0,0,3,-14,0,0,2,2,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,3.480358975222172,0,29.71,42.07,40.12,27.36,1.666666666666667,1,1,0,0,0,12,1,0,423,-74815.85338384246,0,0,0,3287.122207370589 -16558,20434,37246,-9,37245,37247,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.926721052013,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,1,0,423,-74815.85338384246,0,0,0,3287.122207370589 -16558,20434,37247,37245,-9,-9,1,1,48,1,2,0,2,2,-9,1,1,0,0,0,3,14,0,0,-9,-9,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,.2828403821688137,0,40.12,27.36,29.71,42.07,8.333333333333334,1,1,1,0,0,12,1,0,423,-74815.85338384246,0,0,0,3287.122207370589 -16559,20435,37248,37249,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,4.492807371137685,4.405208495546841,10,-6,55.53031124034575,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,134.6762134749212,0,0,1,1,0,0,4.821259041894046,51.75,45.91,53.82,45.88,6.666666666666667,1,1,0,0,0,4,2,0,1300,143411.7389499995,28968.02431847107,0,0,1931.063658783063 -16559,20435,37249,37248,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.150025028223484,6.204111159970512,10,6,47.15747830195421,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.811527143085113,6.347947653883148,53.82,45.88,51.75,45.91,6.666666666666667,1,1,0,0,0,4,2,0,1300,143411.7389499995,28968.02431847107,0,0,1931.063658783063 -16560,20436,37250,37251,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,5.754497622918358,6.159010810292592,42,0,-166.2118432538419,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9230854038059143,6.086666894685278,44.4,49.49,59.64,35.9,5,1,1,0,0,0,11,3,0,1000.5,261600.9916963426,278749.290466955,0,0,1240.283302021874 -16560,20436,37251,37250,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.649187172216487,7.330435074421999,0,39,0,40.08151800363109,0,2,3,2019,11,0,30,30,1,0,0,5.433887934819018,5.433887934819018,0,0,0,0,0,1,1,0,2.125071399733482,0,59.64,35.9,44.4,49.49,8.333333333333334,1,1,0,0,9,11,3,0,1000.5,261600.9916963426,278749.290466955,0,0,1240.283302021874 -16561,20437,37252,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.228990517637911,6.965946194633638,0,0,-1075.22030209182,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.982432501436174,56.92,46.71,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,205,820635.7384100563,327992.2608779377,134120.4571811053,0,551.4024482657018 -16562,20438,37253,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.872293899168517,6.62669798517872,0,0,0,-1008.645033752265,-9,2,3,2019,24,12,16,0,1,12,0,7.225429809258316,7.225429809258316,0,0,0,0,14.5,1,1,0,0,0,23.29,35.52,-9,-9,1.666666666666667,1,1,0,0,10,10,2,0,184,-2722.671932870107,-103177.0393280686,0,0,1463.664940899886 -16562,20439,37254,-9,37253,-9,1,1,20,0,0,0,3,3,-9,1,3,0,5.261001242427022,5.184654102431629,0,0,-1000.739376111964,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,4.912304353629025,5.380486083207982,52,54.51,-9,-9,6.666666666666667,1,1,1,0,0,10,2,0,237,-101525.9994191899,0,0,0,574.4989950552692 -16563,20440,37255,37256,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.26619222793188,5.312587532574262,55,1,98.47137638899545,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.098025680345567,4.936204032114573,63.27,42.4,52.64,49.14,10,1,1,0,0,0,5,2,1,3510,443933.3043357393,108033.3726877448,193800.0090992854,0,1384.142171819291 -16563,20440,37256,37255,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.853354947612492,4.782007229599609,9,-1,34.65624331963599,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.379891527308358,5.303091873970502,52.64,49.14,63.27,42.4,3.333333333333333,1,1,0,0,0,5,2,1,3510,443933.3043357393,108033.3726877448,193800.0090992854,0,1384.142171819291 -16564,20441,37257,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-956.3598289470721,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,37,25,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,804,69764.16368947385,0,100260.6702540363,0,1689.183549855373 -16565,20442,37258,37260,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.603722691447759,8.54899611400036,0,9,17,127.8675506683246,0,3,2,2019,7,0,50,48,1,0,0,14.6072256187985,14.6072256187985,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.69,51.4,6.666666666666667,1,1,0,0,10,12,4,0,420.6666666666667,999885.7828595008,703873.6516190069,215972.2391347381,79513.43408124335,2571.936904057865 -16565,20442,37259,-9,37260,37258,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-996.8630125465324,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,4,0,420.6666666666667,999885.7828595008,703873.6516190069,215972.2391347381,79513.43408124335,2571.936904057865 -16565,20442,37260,37258,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,7.440219498734019,7.352188072577188,0,9,-17,56.0109631908833,0,2,2,2019,5,0,25,19,1,0,0,7.862251879427726,7.862251879427726,0,0,0,0,0,1,1,0,0,0,49.69,51.4,51.83,57.2,8.333333333333334,1,1,0,0,10,12,4,0,420.6666666666667,999885.7828595008,703873.6516190069,215972.2391347381,79513.43408124335,2571.936904057865 -16566,20443,37261,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.145261154546148,7.773704180534889,0,0,0,-1096.27326035272,0,2,2,2019,14,2,35,37,1,2,0,9.286097797841734,9.286097797841734,0,0,0,0,0,1,1,0,0,0,43.12,58.55,-9,-9,5,1,1,0,0,5,9,4,1,367,-44312.37086090281,43271.72732651305,0,0,983.6707204593667 -16567,20444,37262,37263,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.027971774579648,7.900530677977967,33,11,16.60812572142597,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.729470753415537,8.110931058829145,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,0,1,3,1,814,761477.2333979229,558623.9971947371,328197.1750181834,0,2175.946609229839 -16567,20444,37263,37262,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,33,-11,-74.523426338045,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.37,54.8,10,1,1,0,0,6,1,3,1,814,761477.2333979229,558623.9971947371,328197.1750181834,0,2175.946609229839 -16568,20445,37264,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.471482086612498,6.163021896789887,0,0,-1034.066809279612,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.127797916912794,5.955902211192201,60.58,42.38,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,651,148117.5326632754,41957.47520736185,177727.904407104,0,916.2611674783394 -16568,20446,37265,-9,-9,37264,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1069.237423757025,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.469597647700088,0,46.05,25.13,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,525,33731.55071891221,0,0,0,1194.84338942373 -16569,20447,37266,37267,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,6,16,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.28,26.86,40.75,58.26,6.666666666666667,1,1,0,1,4,1,1,0,615,-12794.36755331119,0,0,0,1069.839205630764 -16569,20447,37267,37266,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,0,0,0,6,-16,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,42.28,26.86,6.666666666666667,1,1,1,1,0,1,1,0,615,-12794.36755331119,0,0,0,1069.839205630764 -16570,20448,37268,37269,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.954384163852609,9.435977933280638,0,3,2,-6.69565179856387,0,-9,-9,2019,7,0,43,43,1,0,0,23.28144643843519,23.28144643843519,0,0,0,0,0,0,0,0,6.780068794173482,0,57.16,56.15,47.26,54.06,6.666666666666667,1,1,0,0,8,7,5,1,376.5,748635.9652480795,179471.0823095853,399846.3154951328,209482.0798692115,4611.824242114953 -16570,20448,37269,37268,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.786235216582007,7.659333688251729,0,3,-2,-99.68741411702841,0,3,2,2019,13,2,40,40,1,2,0,6.592848701179892,6.592848701179892,0,0,0,0,0,0,0,0,0,0,47.26,54.06,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,376.5,748635.9652480795,179471.0823095853,399846.3154951328,209482.0798692115,4611.824242114953 -16571,20449,37270,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1107.890771501706,0,3,2,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.87,26.46,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,536,-142038.5499258795,0,0,0,942.1841383043086 -16572,20450,37271,37272,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,36,-4,-21.52246035135272,0,2,3,2019,24,11,0,24,3,11,0,0,0,0,0,0,0,7,0,0,0,0,0,20.34,62.53,40.36,65.29000000000001,3.333333333333333,1,1,1,1,10,12,2,1,472,207132.7526149877,-54913.06935746168,0,0,476.2654685316579 -16572,20450,37272,37271,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.765342513986239,6.906885151331072,0,36,4,-125.4941119325285,0,3,3,2019,16,7,44,65,1,7,0,1.961645911246463,1.961645911246463,0,0,0,0,0,0,0,0,0,0,40.36,65.29000000000001,20.34,62.53,3.333333333333333,1,1,0,1,10,12,2,1,472,207132.7526149877,-54913.06935746168,0,0,476.2654685316579 -16573,20451,37273,37274,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,7,-5,0,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.176863598534389,0,60.28,38.56,55.95,36.7,10,1,1,0,0,0,10,1,1,455.5,55426.82282182787,0,0,0,2794.989703414614 -16573,20451,37274,37273,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,7,5,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.847312370628139,0,55.95,36.7,60.28,38.56,8.333333333333334,1,1,0,0,0,10,1,1,455.5,55426.82282182787,0,0,0,2794.989703414614 -16574,20452,37275,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.400872154584507,6.310341460810157,0,0,-978.4195226205264,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,4.234413484286356,6.373391693177716,41.36,34.01,-9,-9,5,1,1,0,0,0,11,2,1,350,401350.7221649631,47434.41623409092,207142.4803236708,0,950.360579331458 -16575,20453,37276,37277,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.336508891704066,6.962829627821168,53,-1,22.57958045410563,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,124.0217045511304,0,0,1,1,0,0,7.074536413670634,39.72,40.12,47.89,52.29,5,1,1,0,0,0,2,3,1,824,931046.6860029189,494970.5336565891,342894.4970646107,0,2030.007619375494 -16575,20453,37277,37276,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.369325928902545,7.757671912632024,53,1,13.62324667500459,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,6.952273636054844,7.82701832794989,47.89,52.29,39.72,40.12,8.333333333333334,1,1,0,0,4,2,3,1,824,931046.6860029189,494970.5336565891,342894.4970646107,0,2030.007619375494 -16576,20454,37278,37279,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.175473202177766,9.65951032623728,0,25,-12,3.59253707343163,0,2,2,2019,12,1,45,44,1,1,0,29.62180472324676,29.62180472324676,0,0,0,0,0,0,0,0,0,0,35.26,59.77,51.83,57.2,6.666666666666667,1,1,0,0,9,12,5,1,1152,1746297.723140758,1504802.440613645,230989.9193556114,25858.0288078076,7803.613590536137 -16576,20454,37279,37278,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.480851319945444,9.448814155158951,0,25,12,-40.64390517632098,0,3,2,2019,8,0,44,43,1,0,0,34.34477556004389,34.34477556004389,0,0,0,0,0,0,0,0,6.322727848481698,0,51.83,57.2,35.26,59.77,8.333333333333334,1,1,0,0,9,12,5,1,1152,1746297.723140758,1504802.440613645,230989.9193556114,25858.0288078076,7803.613590536137 -16577,20455,37280,37281,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.796002476637094,8.66926454168323,39,1,9.745566139683818,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.126242797747568,8.759784600815914,55.3,55.6,60.12,54.8,8.333333333333334,3,4,0,0,10,8,5,1,586.5,2799314.453019831,2233515.943793097,566511.5316919419,0,6717.743024268253 -16577,20455,37281,37280,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,9.020064373603528,8.87394754373992,39,-1,-24.30459677541594,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.935552486101841,8.729703447734376,60.12,54.8,55.3,55.6,8.333333333333334,3,4,0,0,4,8,5,1,586.5,2799314.453019831,2233515.943793097,566511.5316919419,0,6717.743024268253 -16578,20456,37282,37283,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.969700521701052,5.93624447877146,9,5,131.7703574804842,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.986653090803098,6.06883120123083,58.89,45.9,58.72,51.29,8.333333333333334,1,1,0,0,7,9,4,1,610,1465657.759220061,1224667.749325144,479508.3435785363,0,3026.550677750002 -16578,20456,37283,37282,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.717205527287915,8.563435316213765,5.298880498088171,9,-5,-44.14732797339419,0,2,2,2019,7,0,42,43,1,0,0,16.19131879483278,16.19131879483278,0,0,0,0,0,1,1,0,5.597563261385143,5.707331170302691,58.72,51.29,58.89,45.9,10,1,1,0,0,11,9,4,1,610,1465657.759220061,1224667.749325144,479508.3435785363,0,3026.550677750002 -16579,20457,37284,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.590837945967658,8.052957224529994,0,0,0,-916.0010902200628,0,2,2,2019,9,0,28,27,1,0,0,17.07393115702247,17.07393115702247,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,3.333333333333333,1,1,0,0,12,10,5,0,1056,173709.7572037641,187055.3753866715,0,0,2035.281354124197 -16580,20458,37285,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.694431225792756,7.712408452729257,0,0,-1007.610823541005,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,8.709136574431685,0,0,1,1,0,0,7.817084082998877,57.17,34.71,-9,-9,10,1,1,0,0,0,8,3,1,276,1365142.953179837,403730.205461523,972600.9684261031,0,2475.884855701508 -16581,20459,37286,37287,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.206256641776294,8.189262104925378,0,25,0,101.7050750480484,0,2,2,2019,9,0,40,38,1,0,0,8.990386435773123,8.990386435773123,0,0,0,0,0,0,0,0,6.82974684455333,0,52.99,36.14,54.96,53.17,8.333333333333334,1,1,0,0,11,10,5,1,259.5,617346.8100439293,-5514.458938507621,712446.810765877,214910.711032555,10241.12141733352 -16581,20459,37287,37286,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.852321990738194,9.869098019738136,0,2,0,57.31497129431894,0,-9,-9,2019,6,0,60,60,1,0,0,29.22404473921045,29.22404473921045,0,0,0,0,0,0,0,0,0,0,54.96,53.17,52.99,36.14,8.333333333333334,1,1,0,0,12,10,5,1,259.5,617346.8100439293,-5514.458938507621,712446.810765877,214910.711032555,10241.12141733352 -16581,20460,37288,-9,37286,37287,1,1,25,0,0,0,2,2,-9,0,5,7.745921680389853,8.030674882556845,0,0,0,-948.9709343740527,0,3,2,2019,6,0,40,45,1,0,1,9.037488996771039,9.037488996771039,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,598,-17748.4782710133,31312.96257842812,179325.1432252325,137840.5604940271,1074.855111402714 -16581,20461,37289,-9,37286,37287,1,1,24,0,0,0,2,2,-9,0,5,8.379211905490267,8.590800193074028,0,0,0,-983.008505927965,0,3,2,2019,6,0,45,45,1,0,1,11.38448538336487,11.38448538336487,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,10,4,1,59,5712.675377209634,44051.06252015173,0,0,1943.189206527384 -16582,20462,37290,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.006186834665694,8.205209708087931,0,0,0,-1060.18147745304,-9,2,2,2019,13,2,40,0,1,2,0,14.18688489435087,14.18688489435087,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,7,4,0,1180,12219.30353854475,26529.84049777139,0,0,1775.88766540078 -16582,20462,37291,-9,-9,37290,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.682168682667,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,1180,12219.30353854475,26529.84049777139,0,0,1775.88766540078 -16583,20463,37292,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,7.629650159305577,7.479073617925381,0,2,-4,-2.329283836826373,0,-9,-9,2019,13,3,20,40,1,3,0,12.70077235301363,12.70077235301363,0,0,0,0,0,1,1,0,6.561784245211974,0,42.92,30.62,56.82,51,8.333333333333334,1,1,0,0,9,11,3,1,187,-148973.4255284311,0,0,0,1315.66668884825 -16583,20464,37293,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,5,6.953687383786421,7.182057405428037,0,2,4,-4.579078306380866,0,-9,-9,2019,7,0,40,24,1,0,0,2.87854141726493,2.87854141726493,0,0,0,0,0,1,1,0,0,0,56.82,51,42.92,30.62,8.333333333333334,1,1,0,0,8,11,3,1,837,184103.4672943936,0,222153.1251298246,163021.1187727689,-39.17496089149608 -16584,20465,37294,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.481131148134743,8.365504581766178,0,0,0,-1026.032295421573,0,2,2,2019,12,2,37,0,1,2,0,14.88016019661427,14.88016019661427,0,0,0,0,0,0,0,0,2.111723977608561,0,55.1,47.5,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,156,319604.9937156349,0,341130.3542674184,0,1497.839088138812 -16585,20466,37295,37296,-9,-9,1,0,34,2,2,0,1,1,-9,0,4,9.080169792720675,8.5962261722034,0,13,1,-68.23491839317136,0,3,1,2019,10,0,25,30,1,0,0,39.49048285165915,39.49048285165915,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,10,8,5,1,885.5,433481.8729404826,177664.5627244121,0,0,8411.440208224079 -16585,20466,37296,37295,-9,-9,1,1,33,2,2,0,1,1,-9,0,5,9.511132830547709,9.752617864419147,0,13,-1,98.78834177924773,0,2,2,2019,8,0,45,55,1,0,0,45.62052751240773,45.62052751240773,0,0,0,0,0,0,0,0,3.21983465075143,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,885.5,433481.8729404826,177664.5627244121,0,0,8411.440208224079 -16585,20466,37297,-9,37295,37296,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-835.0075294404376,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,885.5,433481.8729404826,177664.5627244121,0,0,8411.440208224079 -16585,20466,37298,-9,37295,37296,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.748432098604,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,8,5,1,885.5,433481.8729404826,177664.5627244121,0,0,8411.440208224079 -16586,20467,37299,37301,-9,-9,1,0,27,0,3,0,2,2,-9,0,2,0,0,0,8,-7,-85.50552773847744,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,44.33,27.14,54.37,54.8,5,1,1,0,0,1,7,3,0,602.4,5986.074298124555,45398.3188452832,0,0,2479.806060380363 -16586,20467,37300,-9,37299,37301,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-921.2902889761016,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,602.4,5986.074298124555,45398.3188452832,0,0,2479.806060380363 -16586,20467,37301,37299,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,8.584012844502487,8.393282272277556,0,8,7,15.47176043081963,0,2,2,2019,8,0,46,47,1,0,0,11.60243311221749,11.60243311221749,0,0,0,0,2,1,1,0,0,0,54.37,54.8,44.33,27.14,5,1,1,0,0,9,7,3,0,602.4,5986.074298124555,45398.3188452832,0,0,2479.806060380363 -16586,20467,37302,-9,37299,37301,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.673992604452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,602.4,5986.074298124555,45398.3188452832,0,0,2479.806060380363 -16586,20467,37303,-9,37299,37301,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.26004361297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,602.4,5986.074298124555,45398.3188452832,0,0,2479.806060380363 -16587,20468,37304,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.995365698492792,7.20114743732,0,0,-1078.980329321332,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.298747988579092,6.824003048524108,59.29,41.8,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1026,303291.70445845,86204.58657725414,157012.7717975301,0,1791.804359409145 -16588,20469,37305,37306,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,6,13,-239.4282766375568,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.32589104817195,0,55.68,54.24,57.16,56.15,8.333333333333334,1,1,0,0,6,9,2,1,651.5,228349.2819754047,0,0,0,2923.027853803671 -16588,20469,37306,37305,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.544348941247863,7.151746347092047,0,6,-13,-34.87580450826479,0,1,1,2019,6,0,30,15,1,0,0,6.017143623310369,6.017143623310369,0,0,0,0,0,0,0,0,6.896987769037013,0,57.16,56.15,55.68,54.24,8.333333333333334,1,1,0,0,8,9,2,1,651.5,228349.2819754047,0,0,0,2923.027853803671 -16588,20470,37307,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-950.5157196378105,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,1295,50384.58992077834,0,0,0,432.3914359780483 -16589,20471,37308,-9,37309,37310,1,1,26,0,2,0,1,1,-9,0,5,8.015086823377423,8.020131163332429,0,0,0,-1058.627820306869,0,3,3,2019,9,0,37,41,1,1,1,7.635281342279278,7.635281342279278,0,0,0,0,0,0,0,0,0,0,51,60,-9,-9,8,2,3,0,0,8,1,3,0,548,-158079.6533656953,2069.555793288478,0,0,800.5759911874632 -16589,20472,37309,37310,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,0,0,0,28,-10,0,0,2,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,27.89,18.61,10,2,3,1,0,0,1,1,0,609.5,199493.9241791611,16640.25817417865,144746.0505519517,27314.98266805628,452.6684036409798 -16589,20472,37310,37309,-9,-9,1,1,54,0,2,0,3,3,-9,0,1,0,0,0,28,10,0,0,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,27.89,18.61,62.39,56.71,2,2,3,1,1,0,1,1,0,609.5,199493.9241791611,16640.25817417865,144746.0505519517,27314.98266805628,452.6684036409798 -16589,20472,37311,-9,37309,37310,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-939.6401542069472,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,1,1,0,609.5,199493.9241791611,16640.25817417865,144746.0505519517,27314.98266805628,452.6684036409798 -16589,20472,37312,-9,37309,37310,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-864.6280758747208,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,1.381432185275564,0,0,0,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,1,1,0,609.5,199493.9241791611,16640.25817417865,144746.0505519517,27314.98266805628,452.6684036409798 -16589,20473,37313,-9,37309,37310,1,1,22,0,2,1,2,0,0,0,5,0,0,0,0,0,-869.7873692257092,-9,2,3,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,8,2,3,0,0,2,1,1,0,214,104475.2491872165,0,0,0,0 -16590,20474,37314,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.004332748313324,8.007905591753794,0,0,0,-1006.990597575869,0,-9,2,2019,21,8,38,30,1,8,0,8.331192991500266,8.331192991500266,0,0,0,0,0,0,0,0,1.183295899508285,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,1051,-190323.8446208916,0,0,0,976.2280391847228 -16591,20475,37315,37316,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.083259978736548,8.168404535627124,0,10,0,-33.35834491543747,0,-9,-9,2019,10,0,38,38,1,0,0,10.07910671602094,10.07910671602094,0,0,0,0,0,1,1,0,3.716126144352637,0,49.29,54.59,25.02,53.81,5,1,1,0,0,11,7,3,0,1207,964689.3986883709,331703.5492458696,545839.0388664342,77555.01682067757,2117.279361920853 -16591,20475,37316,37315,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,10,0,-38.47008860444565,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,2.519148893636253,0,25.02,53.81,49.29,54.59,3.333333333333333,1,1,0,0,0,7,3,0,1207,964689.3986883709,331703.5492458696,545839.0388664342,77555.01682067757,2117.279361920853 -16592,20476,37317,37318,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.841602550622916,8.176465388681294,0,1,1,-10.21286343243827,0,-9,1,2019,6,0,40,38,1,0,0,7.727210395198788,7.727210395198788,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,2,3,0,0,7,2,5,1,1472.5,11435.97702693097,23855.47207638316,0,0,3911.934194611717 -16592,20476,37318,37317,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.892462697844806,8.807756009026479,0,1,-1,4.781756594260907,-9,-9,-9,2019,6,0,50,0,1,0,0,13.70542489003068,13.70542489003068,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,2,2,5,1,1472.5,11435.97702693097,23855.47207638316,0,0,3911.934194611717 -16593,20477,37319,-9,37320,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.9380936423975,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,511,139190.2948443867,33926.69170219207,0,0,2074.653769141865 -16593,20477,37320,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.814866379957641,7.391716053281761,5.950300083521186,0,0,-1104.261568585582,0,2,1,2019,7,0,17,17,1,0,0,6.769108253850135,6.769108253850135,0,0,0,0,0,1,1,0,6.468056145981521,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,511,139190.2948443867,33926.69170219207,0,0,2074.653769141865 -16594,20478,37321,-9,37322,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.382725644336,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,609.3333333333334,174924.9145303726,0,238791.5638929988,126197.0033273219,1001.393008226061 -16594,20478,37322,-9,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,0,0,-996.1833403434276,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,26.26,56.78,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,609.3333333333334,174924.9145303726,0,238791.5638929988,126197.0033273219,1001.393008226061 -16594,20478,37323,-9,37322,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.880592719457,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,609.3333333333334,174924.9145303726,0,238791.5638929988,126197.0033273219,1001.393008226061 -16595,20479,37324,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.838444535155058,8.145936862764255,5.894357307855443,0,0,-984.9178433435217,-9,3,3,2019,8,0,30,0,1,0,0,9.419757270600126,9.419757270600126,0,0,0,0,0,1,1,0,4.347370351591515,6.721644990424767,55,53,-9,-9,8,1,1,0,0,1,9,4,0,134,819174.8765389549,439953.8376525536,354996.9667352274,0,1626.111321942247 -16595,20480,37325,-9,-9,37324,1,1,39,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1066.310049560291,0,2,2,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,2,1,1,0,0,0,29.45,51.83,-9,-9,0,1,1,0,0,0,9,1,0,982,-35443.57729241781,6160.79734174049,0,0,1273.113422225951 -16596,20481,37326,37327,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,6,-3,-27.40336555717416,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,18.99,61.04,39.41,5,1,1,0,0,0,11,4,1,899.5,2435810.055841361,1226485.495540925,168080.9166238246,0,3213.47393661053 -16596,20481,37327,37326,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.693247643039209,8.59387682475476,5.037706359415758,6,3,-79.50578960952301,0,2,3,2019,7,0,49,60,1,0,0,16.76883106102517,16.76883106102517,0,0,0,0,0,1,1,0,5.543196755318453,5.370119451591854,61.04,39.41,53.2,18.99,8.333333333333334,1,1,0,0,8,11,4,1,899.5,2435810.055841361,1226485.495540925,168080.9166238246,0,3213.47393661053 -16597,20482,37328,37329,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.946840510415493,9.277112250218869,0,7,2,-43.73517444091392,0,-9,-9,2019,8,0,50,45,1,0,0,20.0447849373044,20.0447849373044,0,0,0,0,7,0,0,0,0,0,52.16,24.89,32.25,38.72,8.333333333333334,1,1,0,0,11,2,5,1,1552.5,534519.6502620934,308580.4931019532,301516.2260693514,78129.20342465102,5596.634799567599 -16597,20482,37329,37328,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.141639028677002,8.468282685560048,0,7,-2,40.72632117161672,0,2,3,2019,14,4,32,66,1,4,0,11.28278763521165,11.28278763521165,0,0,0,0,0,0,0,0,8.340370998307062,0,32.25,38.72,52.16,24.89,6.666666666666667,1,1,0,0,7,2,5,1,1552.5,534519.6502620934,308580.4931019532,301516.2260693514,78129.20342465102,5596.634799567599 -16598,20483,37330,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,7.271783002229856,7.340890182323403,0,0,-938.2100268583,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,7.318103034404192,15.32815636702861,0,0,1,1,0,0,7.700356549091326,62.46,25.63,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,731,182233.4663463521,79384.80304190851,77324.12742704211,0,1628.11875170484 -16599,20484,37331,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.575896277279929,7.436816092213854,0,0,-998.6822589434357,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.58322044150294,7.414117607643576,61.83,44.42,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1417,791000.7163504718,497778.2484476847,157933.6329495927,0,926.462419860694 -16600,20485,37332,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.899276282191,-9,-9,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,47,-9,-9,7,1,1,0,1,0,2,1,0,1552,0,0,0,0,1015.29614193373 -16601,20486,37333,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-955.3131330664273,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.88,12.01,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,540,14346.1096454072,0,0,0,1182.729094341272 -16601,20487,37334,-9,37333,-9,1,0,23,0,0,0,2,2,-9,0,5,7.368003288027058,7.177847488154394,0,0,0,-965.9976110713267,0,2,2,2019,7,0,30,17,1,0,1,6.433794160642347,6.433794160642347,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,276,97900.32264368895,0,0,0,971.6271564484598 -16601,20488,37335,-9,37333,-9,1,0,20,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1007.273155276635,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,11,2,0,67,0,0,0,0,46.97519824754732 -16602,20489,37336,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,7.345495434946184,7.541093435032658,0,0,0,-996.0407783129542,0,2,3,2019,6,0,30,34,1,0,0,7.010244520976317,7.010244520976317,0,0,0,0,0,1,1,0,2.329265974341226,0,53,40.54,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,2629,85845.30545634138,140134.7267321981,0,0,1251.928236395212 -16602,20490,37337,-9,37336,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1090.051502034441,1,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,42.2,44.8,-9,-9,3.333333333333333,1,1,0,0,2,7,1,0,2634,0,0,0,0,843.5934560704732 -16603,20491,37338,37339,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,31,-4,-8.503696491566775,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.346601253562341,0,57.16,56.15,57.92,51.82,10,1,1,0,0,0,4,3,1,1602,675797.873432196,530047.3966787381,213620.023407756,0,2867.724151712909 -16603,20491,37339,37338,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.040408568366201,8.065035278986654,31,4,170.5362217284858,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.530457983321929,8.024875322099319,57.92,51.82,57.16,56.15,8.333333333333334,1,1,0,0,0,4,3,1,1602,675797.873432196,530047.3966787381,213620.023407756,0,2867.724151712909 -16604,20492,37340,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.581583796305077,8.921946100282026,0,0,0,-984.7200570223114,0,2,1,2019,8,0,38,41,1,0,0,20.68522643079041,20.68522643079041,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,4,2,0,0,6,8,5,1,578,432152.4294478549,309937.7926971222,209430.8677507103,0,2626.294151846464 -16604,20493,37341,-9,-9,37340,1,0,23,0,0,0,2,2,-9,0,4,8.167444282782304,7.933476046209286,0,0,0,-1029.951184214327,-9,-9,2,2019,11,0,38,0,1,2,1,11.31663835082756,11.31663835082756,0,0,0,0,0,0,0,0,4.874570272837477,0,47,58,-9,-9,7,4,2,0,0,1,8,4,1,325,-78555.25578251165,0,0,0,1302.866414760232 -16605,20494,37342,37343,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.775591213518353,6.547419703418655,52,-1,14.02233378753984,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.120234140124424,6.810258306717976,48.99,43.66,34.81,46.68,8.333333333333334,1,1,0,0,5,8,4,1,1371,1755831.861703935,929335.813802239,446197.7821757715,0,2919.533354015759 -16605,20494,37343,37342,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,8.265253024130784,8.188336497384071,6.91936892840421,52,1,-48.86384349819862,0,3,3,2019,21,10,15,24,1,10,0,27.61528150865213,27.61528150865213,0,0,0,0,0,1,1,0,7.020532003008547,7.273294017335461,34.81,46.68,48.99,43.66,5,1,1,0,0,10,8,4,1,1371,1755831.861703935,929335.813802239,446197.7821757715,0,2919.533354015759 -16606,20495,37344,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.094866304153627,6.126247081097677,0,0,-879.101756395477,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,2.083531837343797,0,1,1,0,0,6.014039572976005,44.95,27.01,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,150,192268.1288909313,58914.92503534026,0,0,681.3008419349162 -16607,20496,37345,37346,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.997282982878378,8.557730569145342,0,29,-3,110.4869756332288,0,1,3,2019,18,8,43,43,1,8,0,17.57283496439311,17.57283496439311,0,0,0,0,42,0,0,0,6.363912797972002,0,44.26,59.43,60.12,54.8,8.333333333333334,1,1,0,0,9,13,5,1,951.5,210806.5026712429,80962.12389000384,118942.4938769027,-12777.86525973634,5111.939090461542 -16607,20496,37346,37345,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.757346156033808,8.912250472212438,0,29,3,-53.75014655520089,0,3,3,2019,7,0,37,39,1,0,0,19.37115573174388,19.37115573174388,0,0,0,0,0,0,0,0,5.121700564263932,0,60.12,54.8,44.26,59.43,8.333333333333334,1,1,0,0,9,13,5,1,951.5,210806.5026712429,80962.12389000384,118942.4938769027,-12777.86525973634,5111.939090461542 -16607,20497,37347,-9,37345,37346,1,1,24,0,0,1,2,0,0,0,5,0,0,0,0,0,-906.1292701790708,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,884,0,0,0,0,0 -16607,20498,37348,-9,37345,37346,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1131.010869317269,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.4602758806823378,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,2,13,2,1,218,0,0,0,0,-187.8887239683832 -16608,20499,37349,37350,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.924232896412223,7.760369369329022,5.509270583278046,28,-2,-21.88190915517715,0,3,3,2019,12,0,34,34,1,0,0,9.50467624274474,9.50467624274474,0,0,0,0,0,0,0,0,0,5.252642877939808,39.56,37.64,57.33,53.46,3.333333333333333,1,1,0,0,13,5,4,1,336.5,845726.3181242072,543910.9855469203,334779.1511596526,0,2638.421702429287 -16608,20499,37350,37349,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.319916658000677,7.878195788483406,4.711125897515367,28,2,43.51284676364575,0,-9,-9,2019,6,0,40,44,1,0,0,9.881275678833438,9.881275678833438,0,0,0,0,0,0,0,0,1.511103856906766,4.705153170875609,57.33,53.46,39.56,37.64,10,1,1,0,0,13,5,4,1,336.5,845726.3181242072,543910.9855469203,334779.1511596526,0,2638.421702429287 -16609,20500,37351,37352,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.928911614292692,6.587955792788409,38,-5,-8.095893933472379,-9,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.816250488228944,6.936786320721308,58.23,35.22,59.9,37.25,3.333333333333333,1,1,0,0,0,10,4,1,905.5,876817.9385829258,437992.8996245319,296147.6352436814,0,3323.862583438224 -16609,20500,37352,37351,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.811218046417822,8.296512046608965,38,5,91.78463007777817,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.693261484802288,7.723108914368893,59.9,37.25,58.23,35.22,5,1,1,0,0,0,10,4,1,905.5,876817.9385829258,437992.8996245319,296147.6352436814,0,3323.862583438224 -16610,20501,37353,37354,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.231980236736344,6.00161766462044,51,-3,113.2105276791741,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.695618698753923,6.308359793043437,57.24,41.16,58.23,43.46,8.333333333333334,1,1,0,0,3,5,2,1,2000.5,289670.2400702733,0,213521.3708852509,0,2310.857147427921 -16610,20501,37354,37353,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.859241260328261,6.86745662368341,51,3,70.13751135981549,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.483991066698283,6.921883589850047,58.23,43.46,57.24,41.16,8.333333333333334,1,1,0,0,2,5,2,1,2000.5,289670.2400702733,0,213521.3708852509,0,2310.857147427921 -16611,20502,37355,37356,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.606791156590493,7.418683042643917,50,8,130.3954828047039,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.499279182705048,53.4,38.94,62,41.73,1.666666666666667,1,1,0,0,0,12,3,0,1155,284062.7195010842,251218.5602034427,132072.3418404492,0,2222.236290021086 -16611,20502,37356,37355,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,50,-8,-32.61488407032915,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62,41.73,53.4,38.94,10,1,1,0,0,0,12,3,0,1155,284062.7195010842,251218.5602034427,132072.3418404492,0,2222.236290021086 -16612,20503,37357,37358,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.051903490458692,8.865759947955283,0,10,-3,-7.280727363132213,0,2,2,2019,18,7,48,53,1,7,0,18.08268020018493,18.08268020018493,0,0,0,0,14.5,0,0,0,0,0,39.03,51.14,58.23,43.46,3.333333333333333,1,1,0,0,10,2,5,0,2168,3033786.6333339,2062742.524168288,613414.3777468567,0,3953.491857212689 -16612,20503,37358,37357,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.204516524345252,7.960865641056413,4.135556757459849,10,3,-68.21481331954973,0,3,3,2019,6,1,37,38,1,1,0,8.920469776963143,8.920469776963143,0,0,0,0,2,0,0,0,0,4.478502575605832,58.23,43.46,39.03,51.14,10,1,1,0,0,10,2,5,0,2168,3033786.6333339,2062742.524168288,613414.3777468567,0,3953.491857212689 -16612,20504,37359,-9,37357,37358,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-918.3086689197324,-9,1,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,134,131071.5008657577,0,0,0,0 -16613,20505,37360,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-921.2963828083539,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,15.76091368848323,0,132.0377466352433,0,1,1,0,0,0,46.54,15.61,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,1589,-163247.6638734175,0,0,0,1949.598435955759 -16614,20506,37361,-9,37363,37362,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.4591366182256,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,833.6666666666666,582557.8982342114,283244.6263250141,185362.7706551988,96519.39064753424,3128.632140524685 -16614,20506,37362,37363,-9,-9,1,1,46,0,1,0,1,1,-9,0,2,8.634299217099072,9.045628308599621,0,22,-7,43.65849013918559,0,2,3,2019,10,0,36,35,1,0,0,19.14523252410433,19.14523252410433,0,0,0,0,0,1,1,0,4.567376583753409,0,46.9,32.72,53.61,59.13,6.666666666666667,1,1,0,0,10,4,4,1,833.6666666666666,582557.8982342114,283244.6263250141,185362.7706551988,96519.39064753424,3128.632140524685 -16614,20506,37363,37362,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,6.359581146040398,6.163097593684407,0,22,7,71.68883446747117,0,2,2,2019,5,0,10,7,1,0,0,5.444324071798708,5.444324071798708,0,0,0,0,0,1,1,0,0,0,53.61,59.13,46.9,32.72,6.666666666666667,1,1,0,0,10,4,4,1,833.6666666666666,582557.8982342114,283244.6263250141,185362.7706551988,96519.39064753424,3128.632140524685 -16615,20507,37364,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,7.046563027036783,7.30626726732194,0,0,0,-1001.050716075552,-9,-9,-9,2019,12,2,20,0,1,2,0,8.010765421036169,8.010765421036169,0,0,0,0,0,0,0,0,0,0,47.2,34.16,-9,-9,8.333333333333334,3,4,0,0,5,6,3,0,181,28570.65421109852,0,0,0,931.7368656671857 -16615,20508,37365,-9,-9,-9,1,0,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1013.592503289958,-9,-9,-9,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,50.88,-9,-9,6.666666666666667,3,4,0,0,3,6,1,0,2214,87183.3000079888,0,0,0,897.3868571235677 -16616,20509,37366,37367,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.789461767813084,4.46037779210352,47,-6,19.18867239389912,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,4.127187052460567,35.43,40.34,29.86,20.5,6.666666666666667,1,1,0,0,0,7,2,1,1373,270683.2986481342,103495.407626539,161807.1507729289,0,937.5438788219506 -16616,20509,37367,37366,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,5.777784788935483,6.030817360228517,47,6,174.9717999011372,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,2.149879153169089,0,0,1,1,0,3.724694386738591,5.892872908030542,29.86,20.5,35.43,40.34,0,1,1,0,0,0,7,2,1,1373,270683.2986481342,103495.407626539,161807.1507729289,0,937.5438788219506 -16617,20510,37368,37369,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,6.412961312362818,6.359251450754571,0,53,-6,71.31906286787947,0,-9,-9,2019,6,0,11,11,1,0,0,7.551447547450151,7.551447547450151,0,0,0,0,0,1,1,0,3.584047233659412,0,54.9,54.53,57.16,56.15,10,1,1,0,0,10,4,2,1,1478,471385.3653960841,227362.3256007338,162148.2709314221,0,1939.081995439612 -16617,20510,37369,37368,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,4.313113630270404,4.319032648392422,53,6,-1.055256377223091,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.880317092598917,4.628324207832432,57.16,56.15,54.9,54.53,10,1,1,0,0,0,4,2,1,1478,471385.3653960841,227362.3256007338,162148.2709314221,0,1939.081995439612 -16618,20511,37370,-9,37372,37371,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.3790057115401,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,416.5,-65951.7395805749,0,0,0,905.9188478290109 -16618,20511,37371,37372,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,5.208397659630492,5.244699675737327,0,7,15,-24.54137378783189,0,2,2,2019,9,1,40,40,1,1,0,.515228430776501,.515228430776501,0,0,0,0,2,1,1,0,0,0,55.12,44.8,31.64,53.02,8.333333333333334,1,1,0,1,8,12,2,0,416.5,-65951.7395805749,0,0,0,905.9188478290109 -16618,20511,37372,37371,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,7,-15,59.88010150871997,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,31.64,53.02,55.12,44.8,8.333333333333334,1,1,0,0,0,12,2,0,416.5,-65951.7395805749,0,0,0,905.9188478290109 -16618,20511,37373,-9,37372,37371,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.599599071794,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,416.5,-65951.7395805749,0,0,0,905.9188478290109 -16619,20512,37374,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,6.145005099606173,6.176704248444581,0,0,-933.0276552373997,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.516434121809525,6.000180242142775,49.74,56.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,373,42798.60189816186,14501.38373476965,0,0,826.9305954081329 -16620,20513,37375,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.65851186594164,7.716007307357704,0,0,-1070.244596319968,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.359973475863377,8.08739079208353,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,989,561552.9332141532,66998.68704413735,315942.181938904,0,2905.649998467032 -16621,20514,37376,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.530832761205065,8.667117669165908,0,0,0,-985.8950726577104,0,2,2,2019,5,0,37,41,1,0,0,18.49164849380659,18.49164849380659,0,0,0,0,0,0,0,0,0,0,49.02,56.38,-9,-9,8.333333333333334,4,2,0,0,11,2,5,0,1300,241614.2897448632,125195.6489917139,245728.3682853955,51411.93901781122,1842.019227728787 -16622,20515,37377,-9,37378,37379,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-824.0763527134427,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,661.8,949113.5964619389,328849.9930992447,351693.7796924499,0,4627.446953364891 -16622,20515,37378,37379,-9,-9,1,0,49,0,3,0,1,1,-9,0,5,7.653040004774692,7.710877955152278,0,28,-2,64.79423126738533,0,2,3,2019,9,1,25,26,1,1,0,7.732408824585609,7.732408824585609,0,0,0,0,0,1,1,0,3.325940258524059,0,47.62,55.38,46.39,60.99,8.333333333333334,1,1,0,0,4,9,4,1,661.8,949113.5964619389,328849.9930992447,351693.7796924499,0,4627.446953364891 -16622,20515,37379,37378,-9,-9,1,1,51,0,3,0,1,1,-9,0,4,9.225602622438398,9.102052522072109,0,28,2,-40.47941764841768,0,2,3,2019,17,6,47,42,1,6,0,16.74519699561191,16.74519699561191,0,0,0,0,0,1,1,0,0,0,46.39,60.99,47.62,55.38,8.333333333333334,1,1,0,0,6,9,4,1,661.8,949113.5964619389,328849.9930992447,351693.7796924499,0,4627.446953364891 -16622,20515,37380,-9,37378,37379,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.0607900244289,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,661.8,949113.5964619389,328849.9930992447,351693.7796924499,0,4627.446953364891 -16622,20515,37381,-9,37378,37379,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.9475128846721,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,661.8,949113.5964619389,328849.9930992447,351693.7796924499,0,4627.446953364891 -16623,20516,37382,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,1,0,5.30708666068302,5.470230126892223,0,0,-1008.913441467296,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,1.153398378506466,2.002028672471291,21.5188857715037,0,1,1,0,5.398982648567688,5.436620071685453,61.94,21.86,-9,-9,6.666666666666667,3,4,0,0,0,9,2,1,365,1083501.493453423,0,984761.62661249,0,1304.869869639874 -16624,20517,37383,37384,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.606034443633224,8.762186028589321,0,31,-6,-168.7464176007276,0,3,1,2019,22,9,37,37,1,9,0,15.4378235766027,15.4378235766027,0,0,0,0,0,0,0,0,0,0,28.9,49.04,56.75,31,1.666666666666667,1,1,0,0,9,11,5,1,893.5,676235.0126485003,384321.3538329225,268727.6180794499,35134.74699670957,3590.008621657556 -16624,20517,37384,37383,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.626374936272308,8.452968781503317,0,31,6,31.08951244054226,0,3,2,2019,15,4,37,37,1,4,0,12.64193945197904,12.64193945197904,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.04,3.333333333333333,1,1,0,0,10,11,5,1,893.5,676235.0126485003,384321.3538329225,268727.6180794499,35134.74699670957,3590.008621657556 -16624,20518,37385,-9,37383,37384,1,1,23,0,0,0,2,2,-9,0,5,7.305094493889543,7.398179009379061,0,0,0,-1103.8230632212,0,2,2,2019,10,0,40,37,1,0,1,3.203287026000245,3.203287026000245,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,1,4,11,3,1,368,-1166.05274811294,0,0,0,646.0498279889093 -16625,20519,37386,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.033050533358264,7.045478094431963,0,0,-1045.202922991406,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,3.127466912436696,0,0,1,1,0,0,6.944707380976125,44.25,16.75,-9,-9,10,1,1,0,0,0,6,2,0,199,208345.3424800556,157525.8344126534,104648.2825580125,0,712.0985318063139 -16626,20520,37387,37388,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.119093886227436,5.873704590743021,54,0,-39.81257405589974,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,5.301855175685945,0,0,1,1,0,5.721692029672941,6.100338355379101,33.97,33.39,51.98,54.53,5,1,1,0,0,0,1,2,1,443.5,530817.6516343466,138144.4663800397,130469.8726764621,0,1732.796299594446 -16626,20520,37388,37387,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.420763853936933,6.7626112425478,54,0,-29.8994490797838,0,3,-9,2019,10,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,6.192289418849478,51.98,54.53,33.97,33.39,8.333333333333334,1,1,0,0,0,1,2,1,443.5,530817.6516343466,138144.4663800397,130469.8726764621,0,1732.796299594446 -16627,20521,37389,37390,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.6050893314276,7.157253875024609,0,7,0,142.088830077697,0,3,3,2019,10,0,45,45,1,0,0,4.904575804347275,4.904575804347275,0,0,0,0,27,1,1,0,0,0,43.36,46.75,47.78,11.11,1.666666666666667,1,1,0,0,8,2,2,0,301.5,799903.6686508143,806840.7290042421,129492.7623566086,0,1859.863790785204 -16627,20521,37390,37389,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,7,0,-19.37569885292669,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,.7774530024265454,0,47.78,11.11,43.36,46.75,6.666666666666667,1,1,0,0,5,2,2,0,301.5,799903.6686508143,806840.7290042421,129492.7623566086,0,1859.863790785204 -16628,20522,37391,37392,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.504591829512234,9.264440715460681,0,8,-2,-57.30713343264453,0,2,2,2019,11,0,48,48,1,1,0,30.18934298294937,30.18934298294937,0,0,0,0,0,0,0,0,3.268491088476097,0,49,50,50.54,62.09,7,1,1,0,0,9,12,5,1,382.5,473321.8754345324,168841.5911972277,282427.0856189083,6481.115183240775,4657.399086582587 -16628,20522,37392,37391,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.440479682407055,7.450666116725461,0,8,2,20.56607839762458,0,2,2,2019,9,0,21,15,1,0,0,9.747878462379974,9.747878462379974,0,0,0,0,0,0,0,0,6.302987775431882,0,50.54,62.09,49,50,0,1,1,0,0,9,12,5,1,382.5,473321.8754345324,168841.5911972277,282427.0856189083,6481.115183240775,4657.399086582587 -16628,20523,37393,-9,37392,37391,1,0,23,0,0,0,2,2,-9,0,3,7.734302482403793,7.855435374834923,0,0,0,-1032.818469719564,-9,2,2,2019,13,0,42,0,1,3,1,8.475740213968701,8.475740213968701,0,0,0,0,0,0,0,0,0,0,43,53,-9,-9,6,1,1,0,0,4,12,4,1,466,-76975.99685000321,0,0,0,1109.495589109329 -16628,20524,37394,-9,37392,37391,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-984.4028513110513,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,12,1,1,495,0,0,0,0,0 -16629,20525,37395,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,4,7.287710243801671,7.617144324849641,5.590965940338437,0,0,-1048.081779438282,0,2,-9,2019,12,0,22,21,1,0,0,7.522886324772958,7.522886324772958,0,0,0,0,2,1,1,0,5.746535250443129,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,862.5,316241.6558871118,182753.5517228773,0,0,1769.910811746585 -16629,20525,37396,-9,37395,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1029.112917990259,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,2,1,862.5,316241.6558871118,182753.5517228773,0,0,1769.910811746585 -16630,20526,37397,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.374704463485452,5.538302606608093,0,0,-904.9098868895455,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.183153462304285,5.434513887505727,53.61,18.94,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,119,-40918.46955533804,0,0,0,1886.928387572387 -16631,20527,37398,-9,37399,37400,1,1,19,0,0,0,2,2,-9,0,4,8.106329067022473,7.959282465247226,0,0,0,-947.8338936855406,0,2,3,2019,7,0,37,35,1,0,1,9.796482268724175,9.796482268724175,0,0,0,0,0,0,0,0,0,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,3,4,4,1,545,241270.3730163455,44194.04258581971,0,0,1631.760637759803 -16631,20528,37399,37400,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.049221183431676,7.951808821797489,0,2,-11,-8.417988945408405,0,2,2,2019,5,0,37,38,1,0,0,9.502277295615704,9.502277295615704,0,0,0,0,2,0,0,0,5.217427253094522,0,60.02,56.42,60.05,42.65,10,1,1,0,0,10,4,4,1,726,269155.7886306639,149925.5798034963,104037.7644579304,3686.200357595098,2649.87382660057 -16631,20528,37400,37399,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.235382367284831,8.016769017526057,0,2,11,19.90209174886834,0,-9,-9,2019,7,0,45,40,1,0,0,8.297017838486386,8.297017838486386,0,0,0,0,0,0,0,0,4.034278285593125,0,60.05,42.65,60.02,56.42,10,1,1,0,0,10,4,4,1,726,269155.7886306639,149925.5798034963,104037.7644579304,3686.200357595098,2649.87382660057 -16632,20529,37401,-9,37404,37403,1,1,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-1066.183278819783,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16632,20529,37402,-9,37404,37403,1,0,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1078.933847174092,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16632,20529,37403,37404,-9,-9,1,1,46,0,4,0,1,1,-9,0,3,9.525329493842815,9.737256697776855,0,23,1,56.77045136978916,0,2,3,2019,11,0,55,41,1,0,0,29.2156683650052,29.2156683650052,0,0,0,0,0,0,0,0,2.16169068952851,0,46.56,50.26,54.1,59.11,8.333333333333334,1,1,0,0,13,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16632,20529,37404,37403,-9,-9,1,0,45,0,4,0,2,2,-9,0,5,7.009530595689231,7.261261416821053,0,23,-1,-13.02303254619754,0,1,2,2019,8,0,27,28,1,0,0,6.387477045621278,6.387477045621278,0,0,0,0,0,0,0,0,3.789384120853882,0,54.1,59.11,46.56,50.26,10,1,1,0,0,6,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16632,20529,37405,-9,37404,37403,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1048.688937516809,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16632,20529,37406,-9,37404,37403,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1033.741661332695,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,996,1060494.400949405,39830.36507610628,667082.8225910432,130110.2034953454,5309.786260028509 -16633,20530,37407,37408,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.577599163314369,8.463814129160339,6.08058227621692,21,-1,37.32441769513309,0,3,3,2019,14,2,70,55,1,2,0,6.220203867426245,6.220203867426245,0,0,0,.1777663933808622,14.5,0,0,0,6.471457331825131,5.018009698602139,44.56,59.44,59.29,49.68,8.333333333333334,1,1,0,0,10,6,5,1,838,1488304.986246339,480968.6348178834,349020.2966133709,0,3772.648503390653 -16633,20530,37408,37407,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.391777497339886,8.598402271138784,0,21,1,-69.23732378972379,0,3,3,2019,7,0,44,45,1,0,0,12.80732587656692,12.80732587656692,0,0,0,0,0,0,0,0,0,0,59.29,49.68,44.56,59.44,8.333333333333334,1,1,0,0,10,6,5,1,838,1488304.986246339,480968.6348178834,349020.2966133709,0,3772.648503390653 -16634,20531,37409,37410,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.321875892020499,7.194696956193968,47,-3,56.19927879981172,-9,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,4.265021349404067,7.155377264250318,47.06,32.86,53,46,8.333333333333334,1,1,0,0,0,9,3,1,1569,892922.0306168137,574310.9920707126,393637.0616384047,0,3090.998133839546 -16634,20531,37410,37409,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.941767684012883,7.713006088480137,47,3,-125.6109235796158,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.538153898715697,7.91940945501264,53,46,47.06,32.86,7,1,1,0,0,0,9,3,1,1569,892922.0306168137,574310.9920707126,393637.0616384047,0,3090.998133839546 -16635,20532,37411,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.197293850386684,5.016531435248874,0,0,-1088.439225237228,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.877322694288433,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,479,344841.895861221,61629.08197395372,198288.2320874695,0,566.2258403479262 -16636,20533,37412,37413,-9,-9,1,1,25,0,0,0,1,1,-9,0,2,8.377919834326686,8.324488375146119,0,4,2,-102.2417000042431,0,-9,-9,2019,10,0,35,0,1,0,0,12.58387891956459,12.58387891956459,0,0,0,0,0,0,0,0,0,0,50.94,41.68,58.96,39.65,8.333333333333334,1,1,0,0,0,11,4,0,914.5,-104746.2537116988,123827.2370908128,0,0,2659.039548889661 -16636,20533,37413,37412,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,7.857133115679312,8.254629536288984,4.428567255843453,4,-2,60.95765270322194,0,-9,-9,2019,0,0,35,10,1,0,0,10.53645355189341,10.53645355189341,0,0,0,0,0,0,0,0,4.103472161102877,0,58.96,39.65,50.94,41.68,8.333333333333334,1,1,0,0,2,11,4,0,914.5,-104746.2537116988,123827.2370908128,0,0,2659.039548889661 -16637,20534,37414,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.661899646320871,7.33099905732813,0,0,0,-1013.402402143585,0,3,3,2019,12,1,38,38,1,1,0,5.273944943062078,5.273944943062078,0,0,0,0,0,0,0,0,0,0,44.29,40.27,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,1211,19250.57675014926,0,57514.98483570398,0,689.4927881200526 -16637,20535,37415,-9,-9,37414,1,0,24,0,0,0,1,1,-9,0,3,7.896578766710561,7.895175713821384,0,0,0,-1049.143932944295,0,2,3,2019,8,0,37,37,1,0,1,8.610879113787153,8.610879113787153,0,0,0,0,0,0,0,0,0,0,38.86,59.06,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,398,168981.3001603446,-44578.06771794376,0,0,419.0668238485398 -16638,20536,37416,37417,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.539779608226827,8.646881815543818,7.538977373458959,25,4,30.82102866809347,0,2,1,2019,7,0,45,50,1,0,0,4.846480758170932,4.846480758170932,0,0,0,0,0,1,1,0,8.538580519257215,0,57.19,42.72,54.79,55.86,8.333333333333334,1,1,0,0,9,7,3,1,1334,448293.84748636,87586.24043954482,494089.1322874958,106020.4258625196,2483.659842751002 -16638,20536,37417,37416,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,25,-4,4.758247636931257,0,2,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,2,1,1,0,1.505857607732482,0,54.79,55.86,57.19,42.72,8.333333333333334,1,1,0,0,4,7,3,1,1334,448293.84748636,87586.24043954482,494089.1322874958,106020.4258625196,2483.659842751002 -16638,20537,37418,-9,37417,37416,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1085.728189988349,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,905,-96168.30509515421,0,0,0,-171.4585342101813 -16638,20538,37419,-9,37417,37416,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1102.623438955574,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.9414464691991147,0,43.31,58.64,-9,-9,6.666666666666667,1,1,0,0,1,7,1,1,290,44520.55687090598,0,0,0,-511.6758756836765 -16639,20539,37420,37421,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.387889798699231,9.284276671416347,0,26,0,9.138889268106269,0,1,1,2019,7,0,38,40,1,0,0,34.59837234291345,34.59837234291345,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.28,52.09,8.333333333333334,1,1,0,0,9,12,5,1,904.5,1456584.514251701,597573.1287019388,180290.1100858689,0,5006.760749950582 -16639,20539,37421,37420,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.562990256387284,7.780746810711729,0,26,0,19.3653109536302,0,1,1,2019,11,0,20,25,1,0,0,10.7546058625933,10.7546058625933,0,0,0,0,0,0,0,0,4.58798737744028,0,49.28,52.09,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,904.5,1456584.514251701,597573.1287019388,180290.1100858689,0,5006.760749950582 -16639,20540,37422,-9,37421,37420,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.7255260369891,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,749,92811.59143444384,0,0,0,159.0261434536849 -16640,20541,37423,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1048.335504110159,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,641,24160.9843572625,0,0,0,1029.034008429487 -16641,20542,37424,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.877444090371302,8.67250651152057,0,0,0,-967.1450786166334,0,-9,-9,2019,8,1,35,35,1,1,0,19.84039379385695,19.84039379385695,0,0,0,0,2,0,0,0,0,0,44.91,53.85,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,506,-50914.97197181062,-18216.68382866361,0,0,1888.110258990008 -16642,20543,37425,37426,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.171926112942495,8.165542242949089,8,2,49.27719121869483,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.169721412945207,7.837654627788826,58.52,47.46,58.32,50.22,8.333333333333334,1,1,0,0,6,7,4,1,814.5,1577019.354451285,1077857.093089896,459043.3166059483,0,2766.283766048113 -16642,20543,37426,37425,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.547666034099607,7.403070803314247,8,-2,-93.77445240102972,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.432759492900668,58.32,50.22,58.52,47.46,8.333333333333334,1,1,0,0,6,7,4,1,814.5,1577019.354451285,1077857.093089896,459043.3166059483,0,2766.283766048113 -16643,20544,37427,-9,-9,37428,1,1,55,0,0,0,2,2,-9,0,3,7.137592100895743,7.746726937510034,0,0,0,-947.7188431746281,0,2,2,2019,22,7,30,42,1,7,0,7.246597555273677,7.246597555273677,0,0,0,0,96,1,1,0,0,0,17.84,49.83,-9,-9,0,1,1,0,1,10,11,3,0,436,700337.3904022786,29538.50115233165,843005.9748535352,190570.4745640419,277.9808699032674 -16643,20545,37428,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.3617235047438,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,11,1,0,161,37791.57931266946,0,36616.38024770795,0,1054.418394769322 -16644,20546,37429,37430,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,6.77903725171862,6.815525242966336,0,1,3,-14.49113573156945,-9,-9,-9,2019,12,2,20,0,1,2,0,5.944263428322347,5.944263428322347,0,0,0,0,0,1,1,0,0,0,44.31,60.71,62.6,45.61,1.666666666666667,2,3,0,0,3,6,3,1,552,22266.48941098652,44179.95166622713,0,0,1351.755246805964 -16644,20546,37430,37429,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.189681095176719,6.941539558624482,0,1,-3,5.163141093796374,0,3,3,2019,5,0,30,38,1,0,0,3.803108360272811,3.803108360272811,0,0,0,0,0,1,1,0,1.983339169098229,0,62.6,45.61,44.31,60.71,10,2,3,0,0,2,6,3,1,552,22266.48941098652,44179.95166622713,0,0,1351.755246805964 -16645,20547,37431,-9,37433,37432,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1036.53748758625,0,2,2,2019,11,0,0,36,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,0,495,0,0,0,0,715.9841522339575 -16645,20548,37432,37433,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.604328478161172,9.224548101119318,0,6,4,-68.81959397741886,0,-9,-9,2019,9,1,43,45,1,1,0,20.2057199819626,20.2057199819626,0,0,0,0,0,1,1,0,.2877148625700209,0,52.77,55.33,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,0,175.5,1045463.889080807,863901.2352924196,347381.3371884385,95764.00631691534,4701.621479922957 -16645,20548,37433,37432,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.659326117773125,8.476885784391781,0,6,-4,61.53156674876675,0,3,3,2019,8,0,38,37,1,0,0,17.0131573308215,17.0131573308215,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.77,55.33,8.333333333333334,1,1,0,0,8,9,5,0,175.5,1045463.889080807,863901.2352924196,347381.3371884385,95764.00631691534,4701.621479922957 -16646,20549,37434,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.530768914336551,8.31042978966955,0,0,0,-934.8438565278034,0,1,1,2019,8,0,35,39,1,0,0,13.9636036139023,13.9636036139023,0,0,0,0,0,1,1,0,1.86147692494936,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,651,449811.6980556293,174364.2769514221,63236.20158241034,18797.30729837408,1729.219447940014 -16647,20550,37435,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.662308448609366,9.36974010936401,0,6,-26,-68.35032372474225,0,3,2,2019,0,0,50,35,1,0,0,28.17896508592863,28.17896508592863,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.01,20.17,10,2,3,0,0,4,8,5,0,207,-3844.170821714855,-10529.11183311875,567953.4214793397,361119.8327018361,4273.595347588544 -16647,20551,37436,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,6,26,9.44233338816368,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.01,20.17,57.16,56.15,6.666666666666667,1,1,0,0,0,8,5,0,677,106874.0643568813,0,0,0,2079.779862358322 -16648,20552,37437,-9,37438,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-917.9587178291838,-9,2,-9,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,57.53,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,912,424014.6272055752,268694.311070184,228237.6073787718,0,1549.038409544588 -16648,20552,37438,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.830029506167378,7.97539312041309,0,0,0,-1097.674723030731,0,3,-9,2019,7,0,16,37,1,0,0,19.6762946555474,19.6762946555474,0,0,0,0,7,1,1,0,5.636082096290526,0,55.17,42.07,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,912,424014.6272055752,268694.311070184,228237.6073787718,0,1549.038409544588 -16649,20553,37439,-9,-9,37440,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.5850034308862,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,0,742,-622.3678199898859,0,0,0,1235.32464048222 -16649,20553,37440,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.040868179716954,8.444949203980737,0,0,0,-847.1238575456121,0,-9,-9,2019,14,2,38,60,1,2,0,9.318971662444676,9.318971662444676,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,742,-622.3678199898859,0,0,0,1235.32464048222 -16650,20554,37441,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.381466179413399,7.237912160256359,0,0,0,-972.8579007625306,0,3,3,2019,11,0,24,24,1,0,0,5.719847432555503,5.719847432555503,0,0,0,0,0,0,0,0,3.626919653458624,0,47.94,53.79,-9,-9,8.333333333333334,2,3,0,0,9,12,3,1,249,221131.5128091904,1337.608504901855,78666.88940473855,32557.13176182966,525.6058222054174 -16650,20555,37442,-9,-9,37441,1,0,29,0,0,0,2,2,-9,0,4,7.715470245261529,7.859764160492591,0,0,0,-1031.802284275514,0,2,2,2019,12,0,40,30,1,0,1,7.475097696804673,7.475097696804673,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,11,12,3,1,188,36837.70863496872,0,0,0,1731.306557935216 -16651,20556,37443,37444,-9,-9,1,1,49,0,1,0,2,2,-9,1,2,0,0,0,18,9,0,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,30.83,25.15,63.48,51.85,1.666666666666667,1,1,0,0,3,8,1,0,302.6666666666667,95846.61463445319,0,0,0,1558.408863979905 -16651,20556,37444,37443,-9,-9,1,0,40,0,1,0,3,3,-9,1,4,0,0,0,18,0,0,0,1,1,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,63.48,51.85,30.83,25.15,8.333333333333334,1,1,1,0,2,8,1,0,302.6666666666667,95846.61463445319,0,0,0,1558.408863979905 -16651,20556,37445,-9,37444,37443,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.450867555907,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,1,0,302.6666666666667,95846.61463445319,0,0,0,1558.408863979905 -16652,20557,37446,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-947.4927385796512,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,320,178971.7900285395,0,121415.7336402704,0,0 -16653,20558,37447,37448,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,44,1,-46.54519834692927,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.565449714635508,0,39.26,57.46,62.43,40.11,6.666666666666667,1,1,0,0,9,10,4,1,1563,1395741.654811351,919791.2778730697,645296.5098249963,186544.2744808171,3974.302234711614 -16653,20558,37448,37447,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.601828032328084,8.622691499484251,43,-1,-25.72460684397564,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.335319114601276,9.282181908428898,62.43,40.11,39.26,57.46,8.333333333333334,1,1,0,0,2,10,4,1,1563,1395741.654811351,919791.2778730697,645296.5098249963,186544.2744808171,3974.302234711614 -16654,20559,37449,37450,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.840724392763269,9.012302922016497,0,28,5,-13.40292140203987,0,3,3,2019,9,0,46,48,1,0,0,20.80811336537109,20.80811336537109,0,0,0,0,0,1,1,0,0,0,52,54.51,42.41,50.08,8.333333333333334,1,1,0,0,10,5,4,1,404,192685.2290281826,64761.28369223248,218011.6370613958,79778.47241879211,3995.912204751819 -16654,20559,37450,37449,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.02240125450701,6.933173758785005,0,28,-5,-135.7699223315556,0,3,3,2019,12,1,24,24,1,1,0,4.861609211524526,4.861609211524526,0,0,0,0,0,1,1,0,0,0,42.41,50.08,52,54.51,5,1,1,0,0,12,5,4,1,404,192685.2290281826,64761.28369223248,218011.6370613958,79778.47241879211,3995.912204751819 -16655,20560,37451,-9,37452,37454,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.03859534321,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,3,1,668.6,396361.152528506,353309.2805589483,173057.4863209447,89864.41010098494,2818.92307060048 -16655,20560,37452,37454,-9,-9,1,0,37,0,3,0,1,1,-9,0,3,0,0,0,15,-5,-50.15588377015444,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.08,33.2,24.27,45.85,8.333333333333334,2,3,0,0,0,2,3,1,668.6,396361.152528506,353309.2805589483,173057.4863209447,89864.41010098494,2818.92307060048 -16655,20560,37453,-9,37452,37454,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.0938114386125,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,668.6,396361.152528506,353309.2805589483,173057.4863209447,89864.41010098494,2818.92307060048 -16655,20560,37454,37452,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,8.748186942778398,8.982093023904046,0,16,5,-50.69685885572713,0,3,1,2019,18,6,52,48,1,6,0,14.1713824525661,14.1713824525661,0,0,0,0,0,1,1,0,0,0,24.27,45.85,45.08,33.2,3.333333333333333,2,3,0,0,9,2,3,1,668.6,396361.152528506,353309.2805589483,173057.4863209447,89864.41010098494,2818.92307060048 -16655,20560,37455,-9,37452,37454,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.3114166371158,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,668.6,396361.152528506,353309.2805589483,173057.4863209447,89864.41010098494,2818.92307060048 -16656,20561,37456,-9,-9,-9,1,0,21,0,1,0,2,2,-9,0,4,8.358606619951368,8.102117973697673,0,0,0,-991.1781132402233,-9,2,3,2019,14,4,42,0,1,4,1,10.45229453475691,10.45229453475691,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,226,75323.20750138612,175454.5600914439,0,0,1390.013399138225 -16657,20562,37457,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.214677058167329,8.488670128645719,0,0,0,-936.0614679981427,0,3,3,2019,12,0,48,0,1,2,0,9.753555135356901,9.753555135356901,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,3,4,0,0,4,8,4,0,300,1301355.875469766,1145110.620554754,317980.6981610416,73557.65472324143,1532.102810939815 -16657,20563,37458,-9,37457,-9,1,0,24,0,0,0,1,1,-9,0,3,7.301238879338616,7.480711424184835,0,0,0,-917.9403710468274,0,2,-9,2019,13,3,14,15,1,3,1,11.43946865334622,11.43946865334622,0,0,0,0,0,1,1,0,0,0,54.97,47.63,-9,-9,8.333333333333334,3,4,0,0,5,8,3,0,596,163059.1289033722,-63037.81773139439,0,0,179.7261731869468 -16658,20564,37459,37460,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,4.880729987946012,4.558743946054687,8,-1,-53.45142198299322,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.251015666919616,5.242157463482616,48.7,38.58,44.19,58.01,5,1,1,0,0,2,11,4,1,1128.5,2038846.191961764,1383286.683989852,265502.9175956795,0,3649.197831903616 -16658,20564,37460,37459,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.419191875661431,8.737612299367246,8,1,3.214937187394671,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.971966761321798,8.300267468609089,44.19,58.01,48.7,38.58,6.666666666666667,1,1,0,0,8,11,4,1,1128.5,2038846.191961764,1383286.683989852,265502.9175956795,0,3649.197831903616 -16659,20565,37461,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-929.9598155185606,0,3,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,1.55878494870147,0,1,1,0,0,0,38.51,59.43,-9,-9,10,1,1,0,0,5,6,1,0,547,214275.4296189265,54045.14179671012,119915.0380105034,0,2281.765838352072 -16660,20566,37462,37463,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.45300567752837,8.370706750250594,0,15,4,115.0603277852055,0,-9,-9,2019,8,0,38,40,1,0,0,12.8531356577366,12.8531356577366,0,0,0,0,0,0,0,0,3.801579165362128,0,59.43,58.05,58.05,54.52,8.333333333333334,1,1,0,0,9,1,5,1,597,479695.4925363645,200284.0091289264,154465.6995821207,0,3426.517601627952 -16660,20566,37463,37462,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.280271976056934,8.199382551297145,0,15,-4,64.99926456252257,0,3,2,2019,6,0,35,32,1,0,0,14.46159592894872,14.46159592894872,0,0,0,0,0,0,0,0,0,0,58.05,54.52,59.43,58.05,8.333333333333334,1,1,0,0,6,1,5,1,597,479695.4925363645,200284.0091289264,154465.6995821207,0,3426.517601627952 -16661,20567,37464,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.792354062848058,7.118766153086123,0,0,-1022.282492618438,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.923659065643244,62.34,22.93,-9,-9,6.666666666666667,1,1,0,0,3,5,2,1,724,522052.8058341651,384077.1440300704,55785.21766220652,0,1745.546884288181 -16662,20568,37465,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-977.9009901156825,1,1,1,2019,13,2,0,45,2,2,0,0,0,0,0,0,0,0,0,0,0,3.11281333979923,0,40.9,56.09,-9,-9,6.666666666666667,4,2,0,0,8,8,1,0,215,-163449.573271681,0,0,0,156.2780390197893 -16663,20569,37466,-9,-9,-9,1,1,78,1,5,0,3,3,-9,0,3,0,6.303581887983088,5.832497814817765,0,0,-1059.915970218685,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.928018782536532,55,45,-9,-9,8,2,3,0,0,0,8,2,1,986,321017.9085318252,22035.41257753576,0,0,1704.063209474368 -16663,20570,37467,-9,37469,37468,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-829.919007192996,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,1,1,843.6666666666666,-96084.49722770475,0,0,0,1025.353813596044 -16663,20570,37468,37469,-9,37466,1,1,47,1,5,0,2,2,-9,0,4,0,0,0,6,5,0,0,-9,3,2019,9,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,2,3,1,0,0,8,1,1,843.6666666666666,-96084.49722770475,0,0,0,1025.353813596044 -16663,20570,37469,37468,-9,-9,1,0,42,1,5,0,2,2,-9,0,4,0,0,0,19,-5,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,55,53,55,8,2,3,0,1,0,8,1,1,843.6666666666666,-96084.49722770475,0,0,0,1025.353813596044 -16663,20571,37470,-9,37472,37473,1,0,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-966.09266379043,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,416.25,223110.7359538282,87945.32358252553,183091.6905270009,107207.6572307623,4753.393082595097 -16663,20571,37471,-9,37472,37473,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-936.9352800339641,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,416.25,223110.7359538282,87945.32358252553,183091.6905270009,107207.6572307623,4753.393082595097 -16663,20571,37472,37473,-9,-9,1,0,34,1,5,0,2,2,-9,0,4,0,0,0,9,-5,-26.21035030537591,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,49,56,52,56,7,2,3,0,0,0,8,3,1,416.25,223110.7359538282,87945.32358252553,183091.6905270009,107207.6572307623,4753.393082595097 -16663,20571,37473,37472,-9,37466,1,1,39,1,5,0,1,1,-9,0,4,8.658569731260341,8.434600322070601,0,6,5,-98.16343708494726,0,-9,3,2019,9,0,40,40,1,1,0,16.19255544607274,16.19255544607274,0,0,0,0,0,1,1,0,8.11286548307694,0,52,56,49,56,7,2,3,0,0,1,8,3,1,416.25,223110.7359538282,87945.32358252553,183091.6905270009,107207.6572307623,4753.393082595097 -16664,20572,37474,37475,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.258087977357862,8.360128737306566,33,12,-188.0684180020723,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.446185900986165,7.838520294338738,54.17,45.43,55.19,54.26,8.333333333333334,1,1,0,0,7,10,5,1,342,547497.6747690241,192799.5073835627,216262.1398643895,0,3575.87053758094 -16664,20572,37475,37474,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.186820026145503,8.532749358799634,0,33,-12,27.98413824334535,0,2,1,2019,12,1,25,55,1,1,0,18.4588601924352,18.4588601924352,0,0,0,0,2,0,0,0,5.319419362497058,0,55.19,54.26,54.17,45.43,8.333333333333334,1,1,0,0,11,10,5,1,342,547497.6747690241,192799.5073835627,216262.1398643895,0,3575.87053758094 -16665,20573,37476,37477,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,7.617072925703595,7.656660396304699,8,2,114.2743035608977,0,2,2,2019,6,0,0,47,4,0,0,0,0,0,0,0,0,7,0,0,0,6.0500625224055,7.8647704230673,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,8,12,5,1,352.5,936898.9670194746,241477.5469230023,454468.7248499773,174588.427969159,4737.496895470542 -16665,20573,37477,37476,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.026048858648812,8.816375605588741,0,8,-2,38.0048216347145,0,3,2,2019,8,0,37,37,1,0,0,30.78569545434154,30.78569545434154,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,352.5,936898.9670194746,241477.5469230023,454468.7248499773,174588.427969159,4737.496895470542 -16666,20574,37478,37480,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.852437963340716,7.884064822121606,6.238279246523594,10,-2,138.3179388429201,0,3,3,2019,24,10,43,36,1,10,0,7.960458265479244,7.960458265479244,0,0,0,0,0,1,1,0,0,6.175736380965289,36.88,29.34,46.99,51.26,8.333333333333334,1,1,0,1,11,8,4,1,427.3333333333333,495582.1516611806,149912.7835110537,296017.5913301222,0,3874.237722394965 -16666,20574,37479,-9,37478,37480,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-933.6868058754404,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,4,1,427.3333333333333,495582.1516611806,149912.7835110537,296017.5913301222,0,3874.237722394965 -16666,20574,37480,37478,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,8.645900187209575,8.757179602706147,0,10,2,-36.88146842481716,0,3,3,2019,10,1,37,38,1,1,0,18.78547579557919,18.78547579557919,0,0,0,0,0,1,1,0,0,0,46.99,51.26,36.88,29.34,8.333333333333334,1,1,0,1,11,8,4,1,427.3333333333333,495582.1516611806,149912.7835110537,296017.5913301222,0,3874.237722394965 -16666,20575,37481,-9,37478,37480,1,0,25,0,1,0,1,1,-9,0,5,7.859373595514818,7.867563729033488,0,0,0,-1044.815111632445,0,2,2,2019,9,1,37,40,1,1,1,9.921328856023758,9.921328856023758,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,8,4,1,674,120707.7295787228,0,0,0,1494.42180870496 -16666,20576,37482,37483,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,7.09687765929142,7.089468622703412,0,3,0,106.7511667039839,0,-9,-9,2019,8,0,12,12,1,0,0,10.62682526829903,10.62682526829903,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.74,55.09,6.666666666666667,1,1,0,0,4,8,2,1,917.5,33572.10549645337,0,0,0,783.056059707547 -16666,20576,37483,37482,37478,37480,1,1,20,0,1,1,3,0,0,0,3,0,0,0,3,0,-72.64799904147789,-9,2,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,57.33,53.46,8.333333333333334,1,1,0,0,13,8,2,1,917.5,33572.10549645337,0,0,0,783.056059707547 -16667,20577,37484,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.992658570071387,6.751284376879429,0,0,-843.8488843998045,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.704320477730521,62.39,56.71,-9,-9,10,1,1,0,0,6,12,2,1,1800,989677.1359425127,689262.0776336667,343407.7357413198,0,1441.618131601829 -16668,20578,37485,37486,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.974710231183552,8.145037591734798,0,23,2,114.6941514493843,0,-9,-9,2019,6,0,39,49,1,0,0,12.81058405334455,12.81058405334455,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.77,55.87,8.333333333333334,1,1,0,0,11,8,4,1,524.5,1974344.312182581,1469052.035343585,384728.5327423475,142267.6077263204,2966.041582599192 -16668,20578,37486,37485,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.667965595700831,7.623652071014058,0,23,-2,-114.0869994335801,0,-9,-9,2019,9,0,38,8,1,0,0,5.905945941915163,5.905945941915163,0,0,0,0,0,1,1,0,0,0,54.77,55.87,57.16,56.15,0,1,1,0,0,4,8,4,1,524.5,1974344.312182581,1469052.035343585,384728.5327423475,142267.6077263204,2966.041582599192 -16669,20579,37487,37488,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,6.860354544350034,7.162320211173737,48,2,19.94308228970244,0,3,1,2019,9,0,0,0,4,1,0,0,0,1,0,119.8955052353593,0,0,1,1,0,6.217575393020221,7.557918159508173,54,46,50.86,45.32,8,2,3,0,0,7,4,3,1,924.5,710080.7016196141,550531.6986818125,147166.1122072816,0,2651.177554307023 -16669,20579,37488,37487,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.697940742549652,7.464331471804307,48,-2,-94.29032763161985,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,3.171085399237823,0,120,1,1,0,0,7.442143599828774,50.86,45.32,54,46,8.333333333333334,1,1,0,0,0,4,3,1,924.5,710080.7016196141,550531.6986818125,147166.1122072816,0,2651.177554307023 -16670,20580,37489,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.125505528244659,8.218809474997039,6.379346172752052,0,0,-1026.576830253533,0,3,2,2019,15,2,30,10,1,2,0,11.1344632587873,11.1344632587873,0,0,0,0,0,1,1,0,0,6.840920459734036,43.91,31.46,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,361,31490.13539486715,-112638.4388720742,115739.2769434092,0,1217.452299709831 -16671,20581,37490,37491,-9,-9,1,0,57,0,5,0,3,3,-9,0,3,0,0,0,10,-5,0,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,48,7,2,3,0,0,0,5,2,1,839,67231.25080301995,0,0,0,0 -16671,20581,37491,37490,-9,-9,1,1,62,0,5,0,3,3,-9,1,3,0,0,0,10,5,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,48,48,49,7,2,3,0,1,9,5,2,1,839,67231.25080301995,0,0,0,0 -16671,20582,37492,-9,37490,37491,1,1,32,0,5,0,2,2,1,0,5,8.638268206669437,8.689062394684505,0,0,0,-991.4639436990033,-9,3,3,2019,12,0,40,0,1,0,1,26.76292001399209,26.76292001399209,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,2,3,0,0,6,5,5,1,356,-86801.12984976261,52737.38524774989,0,0,3137.133614513755 -16671,20583,37493,-9,-9,-9,1,0,24,0,5,0,1,1,-9,0,4,0,0,0,0,0,-981.6073465523315,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,5,1,1,819,123436.7990047478,0,0,0,0 -16671,20584,37494,37495,37490,37491,1,1,27,0,5,0,1,1,-9,0,4,7.901858927539497,7.8323254389275,0,1,-1,10.95618152091405,0,3,3,2019,10,0,40,40,1,1,0,8.271156098340857,8.271156098340857,0,0,0,0,0,1,1,0,0,0,48,58,46,57,7,2,3,0,0,10,5,2,1,566,120316.8167803513,16336.72969396638,0,0,593.7787594156787 -16671,20584,37495,37494,-9,-9,1,0,28,0,5,0,1,1,-9,0,4,0,0,0,1,1,169.6616529042915,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,57,48,58,7,2,3,0,0,0,5,2,1,566,120316.8167803513,16336.72969396638,0,0,593.7787594156787 -16671,20585,37496,-9,37498,37501,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-980.6752750411342,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37497,-9,37498,37501,1,1,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1047.181705366077,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37498,37501,37490,37491,1,0,33,0,5,0,1,1,-9,0,3,7.866966938303811,8.021398783980072,0,8,-3,42.13656357351465,0,2,3,2019,12,0,15,0,1,0,0,18.69800122307611,18.69800122307611,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50,57,8.333333333333334,2,3,0,0,4,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37499,-9,37498,37501,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-963.4856634268187,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37500,-9,37498,37501,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1027.894058125484,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37501,37498,-9,-9,1,1,36,0,5,0,1,1,-9,0,4,8.58486578603919,8.476954681531785,0,8,3,-21.49409436733385,0,-9,-9,2019,10,0,37,35,1,1,0,13.21777617432121,13.21777617432121,0,0,0,0,0,1,1,0,0,0,50,57,57.33,53.46,7,2,3,0,0,7,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16671,20585,37502,-9,37498,37501,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-982.4958017977957,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,402,178988.2168831591,68313.80217385406,174995.0394478927,141798.9914068051,3721.137777241924 -16672,20586,37503,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,6.883578607532468,7.191758216548298,0,0,0,-1009.427361468393,0,2,2,2019,12,0,11,12,1,0,0,10.99523422112429,10.99523422112429,0,0,0,0,0,0,0,0,2.798640274462851,0,55,55,-9,-9,5,1,1,0,0,8,9,2,0,331,124357.504385986,10822.86776242129,274335.364812442,53029.1530048633,407.7854095838776 -16673,20587,37504,37505,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.676074362730014,7.893494684422652,45,3,-48.95608887417542,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.830543484641781,61.27,46.03,60.98,40.77,8.333333333333334,1,1,0,0,0,2,4,1,1197.5,858711.8484216083,728639.8564148663,173544.3644289729,0,3929.524406461795 -16673,20587,37505,37504,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.292462142503533,8.305973594648298,3.691461612152453,45,-3,118.6106843198183,0,2,2,2019,7,0,30,30,1,0,0,16.08553381534503,16.08553381534503,0,0,0,0,0,1,1,0,0,3.540941255962141,60.98,40.77,61.27,46.03,8.333333333333334,1,1,0,0,8,2,4,1,1197.5,858711.8484216083,728639.8564148663,173544.3644289729,0,3929.524406461795 -16674,20588,37506,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.129939586377192,8.185089639864254,0,0,0,-1021.007896763227,0,2,2,2019,13,1,20,10,1,1,0,21.57755647321988,21.57755647321988,0,0,0,0,2,1,1,0,3.250492748233353,0,38.88,61.85,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,326,215608.3913041865,108481.1470929483,56670.43331615005,0,1802.123543315686 -16675,20589,37507,37508,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.363933155851752,7.998106396459183,6.114200658577021,8,3,40.3443969857592,0,3,2,2019,7,0,48,50,1,0,0,9.73995106255463,9.73995106255463,0,0,0,0,0,0,0,0,0,5.819020353442185,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,11,8,3,0,324,459947.6123508976,96733.23447105607,377809.3879196754,0,1572.999792388492 -16675,20589,37508,37507,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,8,-3,-18.36492194610518,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,44.02,60.7,51.83,57.2,8.333333333333334,1,1,0,0,6,8,3,0,324,459947.6123508976,96733.23447105607,377809.3879196754,0,1572.999792388492 -16676,20590,37509,37510,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.709334225395378,7.696376701347617,0,6,3,183.3750639992749,0,-9,-9,2019,6,0,43,42,1,0,0,5.312068950164211,5.312068950164211,0,0,0,0,0,1,1,0,6.418005510915298,0,57.16,56.15,25.62,57.17,8.333333333333334,1,1,0,0,7,9,3,0,806.5,1271768.025513764,115475.790256362,203191.1321039975,0,1448.739044125562 -16676,20590,37510,37509,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,6,-3,77.17869055312045,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.62,57.17,57.16,56.15,3.333333333333333,1,1,1,0,1,9,3,0,806.5,1271768.025513764,115475.790256362,203191.1321039975,0,1448.739044125562 -16677,20591,37511,37512,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,7.394501547906234,7.210402943016933,0,8,-3,80.36941932755526,-9,-9,-9,2019,9,0,50,0,1,0,0,2.343241695742071,2.343241695742071,0,0,0,0,0,1,1,0,3.836984412506208,0,52.24,50.75,43.28,43.93,8.333333333333334,1,1,0,0,11,4,2,1,263,51358.84897813096,0,193641.2324290906,111044.3274566223,1621.972911839162 -16677,20591,37512,37511,-9,-9,1,0,52,0,2,0,1,1,-9,0,2,7.210028604870645,6.992448156230018,0,18,3,-68.32820055519616,0,3,3,2019,19,7,24,5,1,7,0,5.26207841687038,5.26207841687038,0,0,0,0,0,1,1,0,3.812472347860111,0,43.28,43.93,52.24,50.75,8.333333333333334,1,1,0,0,11,4,2,1,263,51358.84897813096,0,193641.2324290906,111044.3274566223,1621.972911839162 -16678,20592,37513,-9,-9,-9,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.280849994144,0,3,3,2019,33,12,0,4,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33,29,-9,-9,5,1,1,1,1,3,4,1,0,163,56414.83389433369,0,0,0,433.0734809407866 -16679,20593,37514,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.897942068175199,8.310310609357886,6.890213322609969,0,0,-1069.381971321334,0,3,3,2019,32,12,50,-9,1,12,0,3.893230795854411,3.893230795854411,0,0,0,0,0,0,0,0,6.152787508239424,6.641441389008073,16.91,56.31,-9,-9,1.666666666666667,1,1,0,0,10,8,4,1,214,660572.7154890581,-22695.44467503713,750016.7807154108,42862.16314123195,2187.105449052323 -16680,20594,37515,37516,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.723574315263484,7.561530100906657,29,5,-47.14388550325561,0,3,2,2019,11,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,6.110281372514757,7.633216083372116,50.51,53.71,52.82,53.97,8.333333333333334,1,1,0,0,10,13,4,1,180.5,860265.6426164187,863097.1696310642,0,0,2753.62670783415 -16680,20594,37516,37515,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.929321968188273,8.106730866449539,0,29,-5,-33.19934820679994,0,2,2,2019,12,0,37,37,1,0,0,8.555999829503756,8.555999829503756,0,0,0,0,0,0,0,0,.8591338627133909,0,52.82,53.97,50.51,53.71,8.333333333333334,1,1,0,0,11,13,4,1,180.5,860265.6426164187,863097.1696310642,0,0,2753.62670783415 -16681,20595,37517,37518,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,6,4,60.88103622585544,0,-9,-9,2019,34,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,25.98,41.56,36.43,41.7,1.666666666666667,2,3,0,0,0,4,2,1,2655.5,241793.2920400425,0,248014.0001115716,-1606.661858155086,574.9440647704521 -16681,20595,37518,37517,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,4.666634740090585,4.898457178055974,48,-4,103.9731621632602,0,3,3,2019,24,9,0,37,3,9,0,0,0,0,0,0,0,71.5,1,1,0,6.640322306221415,4.364905104184763,36.43,41.7,25.98,41.56,6.666666666666667,2,3,0,0,8,4,2,1,2655.5,241793.2920400425,0,248014.0001115716,-1606.661858155086,574.9440647704521 -16682,20596,37519,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.476677818936074,6.079775703776239,0,0,-1044.382155406963,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.195972157981175,6.05965937923228,64.39,28.77,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1280,295308.2430166219,-47582.32512730617,222843.8424695651,0,1591.11866334441 -16683,20597,37520,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,7.852295580589594,8.021901721864316,0,0,0,-841.9333296473119,-9,-9,-9,2019,11,0,50,0,1,0,0,8.136760405065191,8.136760405065191,0,0,0,0,0,0,0,0,4.875114773068625,0,62.62,48.33,-9,-9,10,1,1,0,0,3,11,4,1,1027,-148234.356444903,0,0,0,1145.157972637905 -16684,20598,37521,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.37155904686258,7.569720745078195,6.07150273683864,0,0,-906.1806463115192,0,3,2,2019,10,0,26,27,1,0,0,7.390615175006387,7.390615175006387,0,0,0,0,0,1,1,0,2.007547101590736,5.950798297532526,52.69,43.18,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,1924,181446.6526716122,8439.172639676672,0,0,1051.30284513863 -16685,20599,37522,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.381023926237736,8.428122745058477,0,0,0,-1011.880298978793,0,2,1,2019,11,0,55,80,1,0,0,9.369325681975543,9.369325681975543,0,0,0,0,0,1,1,0,4.468205361025682,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,743,230120.3510603477,171758.9043527816,154167.1404824915,39960.37735720559,1895.425184367571 -16686,20600,37523,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.479749837031084,8.316500327503913,0,0,0,-1049.872139347266,0,1,1,2019,15,3,36,90,1,3,0,13.97619928571469,13.97619928571469,0,0,0,0,0,0,0,0,3.749336003132472,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,370,794965.1565509547,452719.24601169,335633.4223779876,0,954.86574061237 -16687,20601,37524,37525,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.985449341450209,7.515683406570442,32,6,27.77337859680922,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.843909460607242,55.94,47.09,52,53,10,1,1,0,0,9,5,3,1,1198,755579.8340892496,395199.1004667443,162498.3587891836,0,891.1513703795049 -16687,20601,37525,37524,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,6,-6,38.45529652491589,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.94,47.09,8,1,1,0,0,0,5,3,1,1198,755579.8340892496,395199.1004667443,162498.3587891836,0,891.1513703795049 -16687,20602,37526,-9,37525,37524,1,1,29,0,0,0,2,2,-9,0,4,8.02775378699592,7.9282650161345,0,0,0,-940.8295623966305,-9,2,2,2019,10,0,38,0,1,1,1,8.788603907934146,8.788603907934146,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,258,-21413.29488919238,-27760.50419819124,0,0,1151.829524994389 -16687,20603,37527,-9,37525,37524,1,1,22,0,0,0,2,2,-9,0,4,7.989974457927304,8.390326766195969,0,0,0,-1319.236335831247,-9,2,2,2019,10,0,50,0,1,1,1,7.105400158747533,7.105400158747533,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,341,-72648.37218797991,29193.29858811165,0,0,1651.569010588996 -16688,20604,37528,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-975.5046731262589,0,-9,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,1.832040236237527,0,44.59,45.67,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,657,126816.1498331041,25919.10043604769,0,0,821.3731723983919 -16689,20605,37529,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.761401627192879,6.129911982815913,0,0,-991.3526767237395,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,7.500911006152179,0,0,1,1,0,0,5.921704246362056,48.15,22.67,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2086,121771.805807002,7163.851827642473,197573.4920107162,35643.14808301348,1014.49518777532 -16690,20606,37530,-9,37533,37531,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.1950234418434,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,707.25,2758385.063799497,872275.2764886598,1323759.342657437,0,5545.914358965138 -16690,20606,37531,37533,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.92097252471704,9.28092775385076,0,8,1,70.90168272542516,0,-9,-9,2019,8,0,50,60,1,0,0,22.45029513466083,22.45029513466083,0,0,0,0,0,1,1,0,2.350119933739768,0,51.25,50.81,43.71,56.91,8.333333333333334,1,1,0,0,9,7,5,1,707.25,2758385.063799497,872275.2764886598,1323759.342657437,0,5545.914358965138 -16690,20606,37532,-9,37533,37531,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.638478166451,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,707.25,2758385.063799497,872275.2764886598,1323759.342657437,0,5545.914358965138 -16690,20606,37533,37531,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.669697376744146,8.513824323299065,0,8,-1,-24.13886914991113,0,2,-9,2019,10,0,40,46,1,0,0,16.45362595645024,16.45362595645024,0,0,0,0,2,1,1,0,2.533186212908779,0,43.71,56.91,51.25,50.81,6.666666666666667,4,2,0,0,8,7,5,1,707.25,2758385.063799497,872275.2764886598,1323759.342657437,0,5545.914358965138 -16691,20607,37534,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,8.437258441012926,8.325177577023195,0,0,0,-920.9878019336064,0,3,3,2019,8,1,45,44,1,1,0,8.404026898778447,8.404026898778447,0,0,0,0,0,0,0,0,2.622097600012844,0,59.56,32.49,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,1382,715385.1674183371,632838.3712767193,209504.461869864,165411.400166417,1463.581172520889 -16692,20608,37535,37536,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.916609822623013,8.958394024720821,0,10,7,14.83329872344101,0,3,3,2019,12,1,50,81,1,1,0,18.97194747163759,18.97194747163759,0,0,0,0,0,0,0,0,3.698888485691847,0,54.2,57.49,54.1,59.11,6.666666666666667,1,1,0,0,10,9,5,1,445,1946312.032051403,1138554.149909968,468843.1488923031,0,4943.880852576616 -16692,20608,37536,37535,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.732033804273435,8.230950280512902,0,10,-7,-38.9203085602805,0,3,2,2019,8,0,40,43,1,0,0,18.49776260371239,18.49776260371239,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,445,1946312.032051403,1138554.149909968,468843.1488923031,0,4943.880852576616 -16692,20609,37537,-9,37536,37535,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1056.533315052789,0,1,1,2019,13,3,0,43,3,3,1,0,0,0,0,0,0,0,0,0,0,3.065098262289278,0,42.29,58.81,-9,-9,8.333333333333334,1,1,0,1,4,9,1,1,844,78292.87206302138,0,0,0,46.12904786435597 -16693,20610,37538,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-984.6898991410999,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.206747019962839,0,66.21000000000001,35.51,-9,-9,10,1,1,0,0,0,7,1,1,406,89137.0835359726,0,43533.90053790255,0,1617.156878329746 -16694,20611,37539,37540,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,8.955888741520141,8.512685590282517,3,2,-5.139358446157303,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.748245431367462,60.02,56.42,49.84,59.62,10,1,1,0,0,0,10,5,1,689,1723970.603685654,933582.1127204727,694544.2863965097,0,6974.109975455007 -16694,20611,37540,37539,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,7.040708216539304,7.38137530878752,3,-2,-2.137488827556555,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.675961595551922,6.957105254687294,49.84,59.62,60.02,56.42,10,1,1,0,0,2,10,5,1,689,1723970.603685654,933582.1127204727,694544.2863965097,0,6974.109975455007 -16695,20612,37541,37542,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.09554550511704,6.354008899837787,44,-3,21.86865503220641,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1241658946651246,6.043161796204565,57.16,56.15,44.01,54.41,8.333333333333334,1,1,0,0,9,1,3,1,1040.5,641790.830002243,451786.7569491963,206957.2170237779,0,2710.19965457477 -16695,20612,37542,37541,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.125815044113006,7.360429653197366,46,3,20.56099433600689,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.052549291173937,7.495842224724031,44.01,54.41,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,1,1040.5,641790.830002243,451786.7569491963,206957.2170237779,0,2710.19965457477 -16696,20613,37543,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.973868033003185,9.333256178317139,0,0,0,-1074.646240244472,0,2,3,2019,12,1,50,55,1,1,0,21.2184820324894,21.2184820324894,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,0,8,7,5,1,638,603523.8266046273,334992.4042857243,148744.1340605603,79742.56914304134,3172.985669716556 -16697,20614,37544,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.2790626307496,8.414870484402829,0,0,0,-918.6245099563957,0,2,2,2019,10,0,37,37,1,0,0,10.22556181686597,10.22556181686597,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,6.666666666666667,3,4,0,0,12,6,4,0,334,493861.3171854593,410169.9970251752,181940.1046225476,71238.4323094984,786.9486208553724 -16698,20615,37545,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.960652459663311,8.649602185149597,0,0,0,-991.4212654689385,0,3,2,2019,11,0,55,55,1,0,0,13.68972732457503,13.68972732457503,0,0,0,0,2,0,0,0,0,0,57.04,49.4,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,1521,288461.3909154923,161095.8513110834,394669.0097248495,0,2185.032022246785 -16698,20616,37546,-9,37545,-9,1,1,27,0,0,0,2,2,-9,0,4,7.977442855576897,7.925636763535371,0,0,0,-998.1709240588223,0,2,-9,2019,12,0,7,28,1,0,1,37.5061951560733,37.5061951560733,0,0,0,0,0,0,0,0,0,0,44.91,56.56,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,91,-119057.9873235975,0,0,0,872.4240233331593 -16699,20617,37547,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,8.523385763057624,7.956954437207719,0,0,0,-1018.368242764044,0,-9,-9,2019,6,0,40,39,1,0,0,9.238748270664695,9.238748270664695,0,0,0,0,0,0,0,0,1.187453711235206,0,63.38,53.47,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,408,6883.268293034733,93722.91414002267,0,0,1896.516482692501 -16700,20618,37548,-9,37550,37549,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.943372146517,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,718,27252.36996012217,75.02291230573731,115526.1562353306,54869.32268984706,3485.32244120916 -16700,20618,37549,37550,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,7.749291981386481,7.744659794898017,0,14,5,-78.49736082029577,0,3,3,2019,7,0,37,37,1,0,0,9.991218148772587,9.991218148772587,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,8,11,2,1,718,27252.36996012217,75.02291230573731,115526.1562353306,54869.32268984706,3485.32244120916 -16700,20618,37550,37549,-9,-9,1,0,37,0,3,0,2,2,0,1,4,0,0,0,14,-5,-32.32057497207685,-9,2,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,718,27252.36996012217,75.02291230573731,115526.1562353306,54869.32268984706,3485.32244120916 -16700,20619,37551,-9,37550,37549,1,0,20,0,3,0,2,2,1,0,3,7.176539656610981,7.049353446386816,0,0,0,-924.9180629468676,-9,2,2,2019,15,4,36,0,1,4,1,4.142025366475363,4.142025366475363,0,0,0,0,0,1,1,0,1.767764311334433,0,35.31,41.82,-9,-9,3.333333333333333,1,1,0,0,4,11,3,1,317,-66003.17706069007,2433.417313164202,0,0,724.4236825978264 -16701,20620,37552,-9,37553,-9,1,1,47,0,0,0,1,1,-9,0,1,8.497659809533538,8.709767994234376,0,0,0,-1057.084249478477,0,2,-9,2019,6,0,30,30,1,0,0,23.08438499237263,23.08438499237263,0,0,0,0,2,1,0,1,2.535402090699679,0,45.22,48.57,-9,-9,8.333333333333334,4,2,0,0,10,7,5,0,821,12045.13088097039,63448.42822051737,0,0,2195.064977855427 -16701,20621,37553,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1033.997992394627,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,8.645476570468945,0,0,1,0,1,0,0,34.66,37.02,-9,-9,5,1,1,0,0,0,7,1,0,1337,0,0,0,0,792.6915664245028 -16702,20622,37554,37555,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.307637187064961,8.004240818588784,0,37,-2,15.82482644767389,0,3,3,2019,10,0,47,48,1,0,0,11.20056119291987,11.20056119291987,0,0,0,0,0,0,0,0,6.219319198045195,0,45.32,54.77,56.07,49.95,8.333333333333334,1,1,0,0,11,5,5,1,363,3955600.771069602,3043252.372891439,490357.9579150042,0,4670.496473493682 -16702,20622,37555,37554,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.503151439102261,8.591357677147915,0,37,2,-55.61823101175952,0,3,3,2019,12,0,46,90,1,0,0,14.3772279860402,14.3772279860402,0,0,0,0,0,0,0,0,0,0,56.07,49.95,45.32,54.77,6.666666666666667,4,2,0,0,13,5,5,1,363,3955600.771069602,3043252.372891439,490357.9579150042,0,4670.496473493682 -16703,20623,37556,-9,37557,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.3492637556417,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,6,5,1,361.5,111925.6293902882,6260.692607127132,145217.4903860154,70155.09508052016,3011.914846932091 -16703,20623,37557,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,9.067769136570893,9.011983340585896,6.04954854858959,0,0,-1090.527774141968,0,3,-9,2019,10,2,45,38,1,2,0,16.80450053729155,16.80450053729155,0,0,0,0,14.5,1,1,0,6.126072173011067,0,42.24,34.52,-9,-9,6.666666666666667,3,4,0,0,8,6,5,1,361.5,111925.6293902882,6260.692607127132,145217.4903860154,70155.09508052016,3011.914846932091 -16704,20624,37558,37559,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.252566016428277,9.101318275303921,0,36,-1,-15.17744230077136,0,3,2,2019,9,1,60,54,1,1,0,19.51976065065674,19.51976065065674,0,0,0,0,0,1,1,0,6.331947252485032,0,58.3,52.91,43.47,50.15,10,1,1,0,0,9,9,5,1,671,968617.6318917464,598383.2989419915,396369.8659889176,159835.4129018661,4308.278636051927 -16704,20624,37559,37558,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.326744075970015,7.290520858091097,3.744105631707807,36,1,31.38584697769166,0,2,2,2019,13,1,12,9,1,1,0,17.61417808304869,17.61417808304869,0,0,0,0,2,1,1,0,2.97411544193855,3.862803510940252,43.47,50.15,58.3,52.91,3.333333333333333,1,1,0,0,9,9,5,1,671,968617.6318917464,598383.2989419915,396369.8659889176,159835.4129018661,4308.278636051927 -16704,20624,37560,-9,37559,37558,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-884.4391877120962,-9,1,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,55.37,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,671,968617.6318917464,598383.2989419915,396369.8659889176,159835.4129018661,4308.278636051927 -16704,20625,37561,-9,37559,37558,1,0,31,0,0,0,1,1,-9,0,3,7.116255526143229,7.085371789666334,0,0,0,-878.4514561239898,0,1,2,2019,6,0,31,27,1,0,1,4.471354697232564,4.471354697232564,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,929,48722.5422018206,-800.8641806053365,124220.7500645675,72402.26213526755,1008.701249716698 -16704,20626,37562,37563,37559,37558,1,0,28,0,0,0,1,1,-9,0,2,8.232842334603825,8.410591202637159,0,8,-3,69.56021645869448,0,1,2,2019,14,4,41,43,1,4,0,11.34313214018648,11.34313214018648,0,0,0,.0742600291996229,0,1,1,0,2.864541774987143,0,40.99,54.49,25.44,65.40000000000001,5,1,1,0,0,7,9,4,1,661.5,328983.2684834755,-26812.79367635622,288604.4832376567,0,2241.861984865061 -16704,20626,37563,37562,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.366079673947781,7.323811806829052,0,8,3,26.7650177498519,0,2,2,2019,22,10,23,23,1,10,0,8.450083519272798,8.450083519272798,0,0,0,0,0,1,1,0,0,0,25.44,65.40000000000001,40.99,54.49,3.333333333333333,1,1,0,0,7,9,4,1,661.5,328983.2684834755,-26812.79367635622,288604.4832376567,0,2241.861984865061 -16705,20627,37564,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.596340390453794,7.020344686882761,0,0,-847.3829528753281,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.596822298945737,0,51,46,-9,-9,7,1,1,0,0,0,13,2,0,537,397636.2297606395,111465.6042299715,208812.5290205696,0,2630.180757066007 -16706,20628,37565,37566,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,5,-15,-32.13014780082509,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,54,46,7,2,3,0,0,0,8,2,1,2036,1031357.285128444,98397.8960874662,1041158.539049776,36818.46882119142,953.6718858004987 -16706,20628,37566,37565,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.231649051488767,6.938722190803891,5,15,161.4403388901647,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.875712992373537,54,46,49,48,8,2,3,0,0,0,8,2,1,2036,1031357.285128444,98397.8960874662,1041158.539049776,36818.46882119142,953.6718858004987 -16706,20629,37567,-9,37565,37566,1,1,33,0,0,0,1,1,-9,0,3,8.509466757170944,8.408579391358565,0,0,0,-1027.003314977852,0,3,3,2019,8,1,59,50,1,1,0,9.613215161084133,9.613215161084133,0,0,0,0,0,1,1,0,0,0,56.89,47.06,-9,-9,8.333333333333334,2,3,0,0,10,8,4,1,1695,-24162.33148601541,0,0,0,795.9052816924614 -16707,20630,37568,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,5.27822739741407,7.858621018088106,8.062633662119964,0,0,-1116.063938798647,0,2,2,2019,9,0,1,1,1,0,0,15.82324318352883,15.82324318352883,1,0,0,0,0,1,1,0,0,7.499266913816842,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,1228,69994.84348760154,73074.50248884491,168868.2655927522,0,1941.719131981031 -16708,20631,37569,-9,37570,37573,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.036350229663,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,623.6,1678903.278982071,1421435.042304775,448948.2649777679,180976.8403079097,7672.464440054256 -16708,20631,37570,37573,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,8.812808653581824,8.567557143980782,0,8,-5,-32.11658920540237,0,2,-9,2019,13,2,35,35,1,2,0,24.1612170888428,24.1612170888428,0,0,0,0,0,1,1,0,1.73197143621719,0,37.75,57.05,57.06,57.76,8.333333333333334,1,1,0,0,8,6,5,1,623.6,1678903.278982071,1421435.042304775,448948.2649777679,180976.8403079097,7672.464440054256 -16708,20631,37571,-9,37570,37573,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.7702130951654,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,623.6,1678903.278982071,1421435.042304775,448948.2649777679,180976.8403079097,7672.464440054256 -16708,20631,37572,-9,37570,37573,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.323796607734,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,623.6,1678903.278982071,1421435.042304775,448948.2649777679,180976.8403079097,7672.464440054256 -16708,20631,37573,37570,-9,-9,1,1,43,0,3,0,1,1,-9,0,5,9.653199162276268,9.520508300152704,0,8,5,-39.6855489649937,0,-9,-9,2019,0,0,35,40,1,0,0,56.63014005588759,56.63014005588759,0,0,0,0,0,1,1,0,7.527450163991356,0,57.06,57.76,37.75,57.05,8.333333333333334,1,1,0,0,10,6,5,1,623.6,1678903.278982071,1421435.042304775,448948.2649777679,180976.8403079097,7672.464440054256 -16709,20632,37574,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-982.7598714404538,0,2,2,2019,28,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.77,23.75,-9,-9,0,1,1,0,0,0,9,1,0,840,-105995.5932500414,0,0,0,1315.512329151428 -16710,20633,37575,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.638753079840214,8.844529239998613,0,0,0,-925.3265015233094,0,2,1,2019,6,0,40,38,1,0,0,24.16144447836292,24.16144447836292,0,0,0,0,0,0,0,0,3.979898965265791,0,44.43,56.74,-9,-9,6.666666666666667,4,2,0,0,7,8,5,1,160,203976.1021499406,-14365.30137196332,0,0,2279.975839046435 -16710,20634,37576,-9,-9,37575,1,0,24,0,0,0,2,2,-9,0,4,8.20231848643019,7.880255085854032,0,0,0,-883.142463024197,0,-9,2,2019,11,0,40,38,1,2,1,11.82045040373556,11.82045040373556,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,1,8,4,1,194,-97389.94145103863,0,0,0,1770.864164767471 -16711,20635,37577,-9,37580,37578,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.762102622374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,0,660,60012.40680085338,-35571.12449451748,0,0,2105.630514520289 -16711,20635,37578,37580,-9,-9,1,1,32,1,3,0,2,2,-9,0,3,7.177045979702976,7.199992037292581,0,3,5,-71.78317803289562,0,-9,-9,2019,2,0,26,32,1,0,0,7.752010929854259,7.752010929854259,0,0,0,0,14.5,1,1,0,0,0,40.05,46.56,62.01,49.94,5,1,1,0,0,5,4,2,0,660,60012.40680085338,-35571.12449451748,0,0,2105.630514520289 -16711,20635,37579,-9,37580,37578,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.6269464236796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,660,60012.40680085338,-35571.12449451748,0,0,2105.630514520289 -16711,20635,37580,37578,-9,-9,1,0,27,1,3,0,2,2,-9,0,5,0,0,0,3,-5,-44.02224696779197,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.01,49.94,40.05,46.56,10,1,1,0,0,0,4,2,0,660,60012.40680085338,-35571.12449451748,0,0,2105.630514520289 -16711,20635,37581,-9,37580,37578,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.6546021601854,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,660,60012.40680085338,-35571.12449451748,0,0,2105.630514520289 -16712,20636,37582,37583,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.175130414572868,8.20314832840212,49,-2,-16.87722952411882,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.790683700273338,8.061044744677019,60.12,54.8,63.24,37.19,10,1,1,0,0,10,5,3,1,1030.5,1189491.843010924,697180.1734389558,295053.230170048,0,3214.118532462202 -16712,20636,37583,37582,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.636397525366134,6.41879465693947,49,2,-56.62286123821979,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4973203553101054,6.500081020257045,63.24,37.19,60.12,54.8,10,1,1,0,0,0,5,3,1,1030.5,1189491.843010924,697180.1734389558,295053.230170048,0,3214.118532462202 -16713,20637,37584,37587,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,25,6,-98.16820739275656,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,3.826199447398083,0,41.86,50.84,48.87,58.55,8.333333333333334,1,1,0,0,6,6,3,1,527,233168.4249454424,55907.66108296381,123138.2448645775,0,2053.855893170121 -16713,20637,37585,-9,37584,37587,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1004.202746816573,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.3258594665428762,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,527,233168.4249454424,55907.66108296381,123138.2448645775,0,2053.855893170121 -16713,20637,37586,-9,37584,37587,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1117.448129692762,-9,2,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,.0076876422830955,0,34.08,62.63,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,527,233168.4249454424,55907.66108296381,123138.2448645775,0,2053.855893170121 -16713,20637,37587,37584,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.186619321506534,8.263067060722374,0,25,-6,-97.90536408812281,0,2,2,2019,11,0,34,34,1,0,0,13.68342307785071,13.68342307785071,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.86,50.84,8.333333333333334,1,1,0,0,9,6,3,1,527,233168.4249454424,55907.66108296381,123138.2448645775,0,2053.855893170121 -16714,20638,37588,-9,37589,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.324746570049,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,3,0,1161.5,-15329.7132706772,81141.78713357098,127350.3004766942,58907.36221364146,1829.480953088593 -16714,20638,37589,-9,-9,-9,1,0,44,0,1,0,2,2,1,0,3,7.73726574028915,7.628209139640579,0,0,0,-949.6587581409092,-9,3,2,2019,9,0,37,0,1,0,0,9.126853366206852,9.126853366206852,0,0,0,0,0,1,1,0,0,0,61.65,20.51,-9,-9,8.333333333333334,1,1,0,0,1,5,3,0,1161.5,-15329.7132706772,81141.78713357098,127350.3004766942,58907.36221364146,1829.480953088593 -16715,20639,37590,37591,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.819960792242397,6.619716490583291,52,0,15.07253701416726,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,.2449185770707505,0,0,1,1,0,3.632434415592746,6.804187157673212,60.93,6.56,60.53,48.35,10,3,4,0,0,0,8,2,0,1600.5,1638.471579907313,89929.71293203894,0,0,1116.761762877985 -16715,20639,37591,37590,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,0,0,52,0,-86.08834144190645,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.53,48.35,60.93,6.56,8.333333333333334,3,4,0,0,0,8,2,0,1600.5,1638.471579907313,89929.71293203894,0,0,1116.761762877985 -16716,20640,37592,37595,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.445889020826806,8.77578317299086,0,29,2,83.86029136597708,0,3,3,2019,8,1,40,41,1,1,0,13.55009319398277,13.55009319398277,0,0,0,0,0,1,1,0,3.550408139975092,0,56.19,46.16,58.98,7.33,6.666666666666667,1,1,0,0,10,7,4,1,408.5,446185.6910484961,0,298994.3467215067,0,3316.869847724513 -16716,20640,37593,-9,37595,37592,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1147.66969323887,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,408.5,446185.6910484961,0,298994.3467215067,0,3316.869847724513 -16716,20640,37594,-9,37595,37592,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.384871109908,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,408.5,446185.6910484961,0,298994.3467215067,0,3316.869847724513 -16716,20640,37595,37592,-9,-9,1,0,49,0,2,0,3,3,-9,0,2,7.767788663350984,8.133607283388899,0,29,-2,-57.0366900610037,0,2,2,2019,8,1,38,37,1,1,0,8.015096839962645,8.015096839962645,0,0,0,0,0,1,1,0,0,0,58.98,7.33,56.19,46.16,6.666666666666667,1,1,0,0,7,7,4,1,408.5,446185.6910484961,0,298994.3467215067,0,3316.869847724513 -16716,20641,37596,-9,37595,37592,1,1,22,0,2,0,2,2,-9,0,4,8.170494187910057,8.381571974068889,0,0,0,-1026.274401362787,0,3,3,2019,10,3,50,58,1,3,1,9.280793017485824,9.280793017485824,0,0,0,3.437568507401901,0,1,1,0,0,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,318,143554.618778879,0,382228.112467886,100937.9234714483,1588.873787379759 -16717,20642,37597,37600,-9,-9,1,1,39,1,4,0,2,2,-9,0,4,8.856036315560733,8.395714133102413,0,8,3,-115.3002041202745,0,-9,-9,2019,10,0,55,50,1,1,0,11.8763328627572,11.8763328627572,0,0,0,0,0,1,1,0,0,0,50,57,44,52,7,1,1,0,0,1,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16717,20642,37598,-9,37600,37597,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.2980690749932,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16717,20642,37599,-9,37600,37597,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-940.4163811083022,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16717,20642,37600,37597,-9,-9,1,0,36,1,4,0,2,2,-9,0,3,0,0,0,8,-3,-47.0229898321755,0,2,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44,52,50,57,5,1,1,0,1,0,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16717,20642,37601,-9,37600,37597,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-956.3280316132704,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16717,20642,37602,-9,37600,37597,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.1991669203029,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1499.833333333333,114700.6401527814,28474.10508408899,169029.1985177543,130630.6174584408,3968.375489517978 -16718,20643,37603,37604,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,45.2388789826404,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.25275182674023,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,7,3,1,1409,747227.1358421358,336535.1684335697,448643.9638714795,0,3724.600951990092 -16718,20643,37604,37603,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.456100569621006,7.487710844755664,9,1,52.33753244369681,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.084346894895093,7.433684453870848,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,7,3,1,1409,747227.1358421358,336535.1684335697,448643.9638714795,0,3724.600951990092 -16719,20644,37605,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.726192758950069,7.962924169319532,0,0,0,-1027.733959473708,0,2,2,2019,7,0,30,35,1,0,0,10.18679997411399,10.18679997411399,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,1,7,7,3,1,284,39651.96797349228,24230.88020064736,0,0,1831.883670616454 -16719,20645,37606,-9,37605,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1008.944858102886,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,7,1,1,1799,-18809.97039023393,0,0,0,0 -16720,20646,37607,37608,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,5.808051052896807,5.683190390335224,65,6,-31.93565324226669,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.087985039548306,5.919747335020993,48.18,61.8,23.67,45.32,10,1,1,0,0,6,2,2,0,338,284016.8455960548,55095.684816136,290996.4307795807,0,1835.621829018658 -16720,20646,37608,37607,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.735605534273989,5.081224622956936,8,-6,-47.11718990597483,0,-9,-9,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.603366406586228,23.67,45.32,48.18,61.8,10,1,1,0,0,0,2,2,0,338,284016.8455960548,55095.684816136,290996.4307795807,0,1835.621829018658 -16721,20647,37609,37610,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.922717103317607,9.207057612387171,0,11,9,48.76550679065299,0,-9,-9,2019,7,0,36,40,1,0,0,22.93209560061355,22.93209560061355,0,0,0,0,0,0,0,0,2.139590697106259,0,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,11,2,5,1,885,428841.7350950477,166658.567015697,412648.6749631543,89938.92230335326,5487.363300746567 -16721,20647,37610,37609,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.016689541011406,8.593377916171026,7.515961948243836,17,0,-70.94640832304485,0,3,2,2019,10,2,31,37,1,2,0,8.82439095920153,8.82439095920153,0,0,0,0,0,0,0,0,8.44863503076593,0,48.18,61.8,57.06,57.76,8.333333333333334,1,1,0,0,13,2,5,1,885,428841.7350950477,166658.567015697,412648.6749631543,89938.92230335326,5487.363300746567 -16722,20648,37611,37612,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.638220639738153,7.37359283648872,0,5,-4,-46.68306915447284,0,2,2,2019,9,0,37,37,1,0,0,8.654662327741489,8.654662327741489,0,0,0,0,0,0,0,0,0,0,48.87,58.55,50.86,47.22,8.333333333333334,1,1,0,0,11,1,5,0,2313.5,-34461.08002864165,95942.90265007035,0,0,3157.627686579233 -16722,20648,37612,37611,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.478325170985434,8.332164715510459,0,5,4,-12.72710490545659,0,-9,-9,2019,7,0,14,45,1,0,0,34.76823521684377,34.76823521684377,0,0,0,0,0,0,0,0,0,0,50.86,47.22,48.87,58.55,6.666666666666667,1,1,0,0,3,1,5,0,2313.5,-34461.08002864165,95942.90265007035,0,0,3157.627686579233 -16723,20649,37613,-9,37615,37614,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1059.542599921676,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,56.72,-9,-9,5,1,1,0,0,1,8,5,1,415,1202617.579487475,793532.4292744618,362302.7179095359,0,3631.480205652584 -16723,20649,37614,37615,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.575647817828512,8.50166014805216,0,29,6,-198.5289404532006,0,3,3,2019,8,0,42,50,1,0,0,17.22773825606955,17.22773825606955,0,0,0,0,0,1,1,0,0,0,46.67,55.57,51.24,58.84,8.333333333333334,1,1,0,0,9,8,5,1,415,1202617.579487475,793532.4292744618,362302.7179095359,0,3631.480205652584 -16723,20649,37615,37614,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.561556975466555,7.614493427691462,0,29,-6,-201.9950169479947,0,2,2,2019,13,2,24,0,1,2,0,8.310621057537348,8.310621057537348,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.67,55.57,8.333333333333334,1,1,0,0,8,8,5,1,415,1202617.579487475,793532.4292744618,362302.7179095359,0,3631.480205652584 -16723,20650,37616,-9,37615,37614,1,1,22,0,0,0,2,2,-9,0,4,8.091146038952433,8.161142724752061,0,0,0,-955.0702027249739,0,2,2,2019,9,0,42,39,1,0,1,7.875587176485322,7.875587176485322,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,1124,26227.25940825724,-158118.2612793024,0,0,1073.175170898277 -16723,20651,37617,-9,37615,37614,1,0,19,0,0,0,2,2,1,0,5,8.080933060146645,7.838642069000711,0,0,0,-944.9447727713396,-9,2,2,2019,12,0,45,0,1,0,1,7.991915165777339,7.991915165777339,0,0,0,0,0,1,1,0,0,0,40.61,53.29,-9,-9,5,1,1,0,0,2,8,4,1,650,43567.7700858256,24719.98642108,0,0,1670.887192265248 -16724,20652,37618,37619,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,8,2,-54.51826204468645,0,3,3,2019,5,1,0,15,4,1,0,0,0,0,0,0,0,0,0,0,0,5.437571960147255,0,53.98,42.84,44.02,60.7,8.333333333333334,1,1,0,0,9,2,4,1,378.5,315210.9063943953,284867.5487887412,0,0,3158.273638338671 -16724,20652,37619,37618,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.687705474268583,8.589257803307591,0,8,-2,-12.68427352957091,0,3,2,2019,12,1,30,38,1,1,0,23.31748760612271,23.31748760612271,0,0,0,0,0,0,0,0,7.059678391932651,0,44.02,60.7,53.98,42.84,8.333333333333334,1,1,0,0,9,2,4,1,378.5,315210.9063943953,284867.5487887412,0,0,3158.273638338671 -16724,20653,37620,-9,37618,37619,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1121.878609299032,-9,2,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,34.44,61.28,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1007,0,0,0,0,0 -16725,20654,37621,37622,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.302329018870442,8.24772905112313,0,7,1,96.69691308360584,0,-9,-9,2019,8,1,54,49,1,1,0,10.28416162742809,10.28416162742809,0,0,0,0,2,0,0,0,0,0,60.52,53.2,51.81,57.22,8.333333333333334,1,1,0,0,9,4,5,1,384.5,803686.8775859638,496294.8048397361,212023.5375857104,0,3186.693876282507 -16725,20654,37622,37621,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.120314627528614,8.129920926490055,0,32,-1,21.36632319976495,0,3,3,2019,12,0,32,32,1,0,0,14.49661124126662,14.49661124126662,0,0,0,0,0,0,0,0,3.338597759282658,0,51.81,57.22,60.52,53.2,6.666666666666667,1,1,0,0,9,4,5,1,384.5,803686.8775859638,496294.8048397361,212023.5375857104,0,3186.693876282507 -16726,20655,37623,37624,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,30,3,-56.65068639864495,-9,3,2,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,43,39,44.11,55.31,8.333333333333334,1,1,1,0,6,1,5,1,233.5,534318.0349766251,262011.8918145023,307875.5454884093,107147.3393255449,3188.262607516585 -16726,20655,37624,37623,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.962025748070186,9.104527056685308,0,32,-3,-64.77540109493989,-9,2,2,2019,11,2,44,0,1,2,0,30.1189700860197,30.1189700860197,0,0,0,0,0,0,0,0,5.749630260824151,0,44.11,55.31,43,39,3.333333333333333,1,1,0,0,11,1,5,1,233.5,534318.0349766251,262011.8918145023,307875.5454884093,107147.3393255449,3188.262607516585 -16727,20656,37625,37626,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.138430793588078,8.001702000559392,7,1,98.85906393702072,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,8.026539988629718,8.108744163012622,44.61,21.43,45.47,23.9,6.666666666666667,1,1,0,0,5,2,3,1,562,872602.3051228273,618674.5792029139,211581.5252686444,0,3312.984642617721 -16727,20656,37626,37625,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,7,-1,45.06510578092464,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,1.358047241886516,0,45.47,23.9,44.61,21.43,3.333333333333333,1,1,0,0,0,2,3,1,562,872602.3051228273,618674.5792029139,211581.5252686444,0,3312.984642617721 -16728,20657,37627,-9,-9,-9,1,0,26,0,0,0,1,1,1,0,4,8.489719734197124,8.721671086513675,0,0,0,-922.4962369605286,-9,2,2,2019,11,0,49,0,1,2,0,13.2578188265135,13.2578188265135,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,8,8,5,0,976,170003.4195381775,62080.48845245462,255807.9693928541,226811.9391706585,2844.933454798482 -16729,20658,37628,37629,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,0,0,0,7,-1,-188.8279133248052,0,2,2,2019,8,1,0,44,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,4,12,4,1,699.5,-57249.87373366854,19526.97157741473,0,0,1751.134100932888 -16729,20658,37629,37628,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.745889963898961,8.824506080424921,0,7,1,6.59605634428749,0,-9,-9,2019,9,0,45,37,1,0,0,14.61742991681349,14.61742991681349,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,5,12,4,1,699.5,-57249.87373366854,19526.97157741473,0,0,1751.134100932888 -16730,20659,37630,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1001.417935244608,0,2,2,2019,10,3,0,45,3,3,0,0,0,0,0,0,0,0,1,1,0,8.670742118792056,0,49.87,50.46,-9,-9,5,1,1,1,0,8,1,1,1,165,-53233.6119377856,0,0,0,3057.428559293528 -16731,20660,37631,-9,37632,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1206.315589311339,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,504.5,-25996.23997344491,-23179.62628748313,0,0,1880.091501809572 -16731,20660,37632,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.202670539747068,8.627328852162785,5.873875727164707,0,0,-926.8409316287505,0,2,2,2019,9,0,33,31,1,0,0,11.89890033895773,11.89890033895773,0,0,0,0,7,1,1,0,6.071968437179585,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,504.5,-25996.23997344491,-23179.62628748313,0,0,1880.091501809572 -16732,20661,37633,-9,37636,37637,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.045011585778,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,933,212836.3097105406,259050.530366466,137918.0149636616,64986.98868034407,2532.685060345623 -16732,20661,37634,-9,37636,37637,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-958.4788343663004,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,933,212836.3097105406,259050.530366466,137918.0149636616,64986.98868034407,2532.685060345623 -16732,20661,37635,-9,37636,37637,1,0,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1021.103715409295,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,933,212836.3097105406,259050.530366466,137918.0149636616,64986.98868034407,2532.685060345623 -16732,20661,37636,37637,-9,-9,1,0,32,1,3,0,2,2,-9,0,5,7.885185588797665,8.220857952360793,5.619943454678456,12,-4,-51.65583201711943,0,3,3,2019,11,1,37,37,1,1,0,8.814605039301091,8.814605039301091,0,0,0,0,0,1,1,0,6.101724964512053,0,40.48,62.56,19.13,33.59,5,1,1,0,0,8,4,3,1,933,212836.3097105406,259050.530366466,137918.0149636616,64986.98868034407,2532.685060345623 -16732,20661,37637,37636,-9,-9,1,1,36,1,3,0,2,2,-9,1,1,0,0,0,12,4,3.143630648477446,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.13,33.59,40.48,62.56,0,1,1,0,0,0,4,3,1,933,212836.3097105406,259050.530366466,137918.0149636616,64986.98868034407,2532.685060345623 -16733,20662,37638,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,7.037594570355979,6.834464080600226,0,0,-1007.620785655636,-9,-9,-9,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,7.600710662857449,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,171,-128317.6495098701,0,0,0,483.7388229338369 -16734,20663,37639,37640,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.904218564912677,7.641480678353036,0,27,8,-25.39680068082767,0,2,2,2019,10,0,56,49,1,0,0,3.808679398386575,3.808679398386575,0,0,0,0,0,0,0,0,8.407961027871437,0,51.66,54.88,40.23,61.31,8.333333333333334,1,1,0,0,11,7,4,1,1250,65691.38962973311,25862.86725480892,0,0,5785.760082212832 -16734,20663,37640,37639,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.271175521342384,8.467472716707757,0,27,-8,44.38216694884564,0,2,2,2019,13,2,50,57,1,2,0,8.400961991747149,8.400961991747149,0,0,0,0,0,0,0,0,0,0,40.23,61.31,51.66,54.88,6.666666666666667,4,2,0,0,7,7,4,1,1250,65691.38962973311,25862.86725480892,0,0,5785.760082212832 -16734,20664,37641,-9,37640,37639,1,1,20,0,0,0,2,2,1,0,2,7.458497077873184,7.197025874657673,0,0,0,-873.852560091887,-9,1,2,2019,6,0,20,0,1,0,1,8.858510598394044,8.858510598394044,0,0,0,0,0,0,0,0,0,0,58.14,42.54,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,2855,-14173.16030832789,0,0,0,244.0144738573201 -16735,20665,37642,37643,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.005798456372223,6.958029503918914,3,-2,22.94873422666995,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.591581242082575,6.983073026274347,58.15,52.91,47.72,55.04,8.333333333333334,1,1,0,0,4,4,3,1,992,974323.3266618163,711988.6045876185,202486.7300933294,0,1985.363472230382 -16735,20665,37643,37642,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.893904359966946,7.674545186651375,3,2,-37.73501086007976,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.855479118316936,7.799527525872856,47.72,55.04,58.15,52.91,8.333333333333334,1,1,0,0,4,4,3,1,992,974323.3266618163,711988.6045876185,202486.7300933294,0,1985.363472230382 -16736,20666,37644,37645,-9,-9,1,1,27,0,1,0,2,2,-9,0,2,8.488165328163159,8.435135960947045,0,4,3,-41.91933823822431,0,-9,-9,2019,9,0,50,55,1,0,0,9.825707744345069,9.825707744345069,0,0,0,0,0,1,1,0,0,0,56.34,46.17,37.36,58.26,6.666666666666667,1,1,0,0,6,1,4,1,1802,-4353.41645407052,-21994.27029527032,0,0,2718.35509613903 -16736,20666,37645,37644,-9,-9,1,0,24,0,1,0,1,1,-9,0,3,8.026864308100443,8.201007040865937,0,4,-3,-7.603183490541232,0,1,2,2019,14,2,38,38,1,2,0,8.946612455915355,8.946612455915355,0,0,0,0,0,1,1,0,0,0,37.36,58.26,56.34,46.17,8.333333333333334,1,1,0,0,5,1,4,1,1802,-4353.41645407052,-21994.27029527032,0,0,2718.35509613903 -16736,20666,37646,-9,37645,37644,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.686854040845,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,4,1,1802,-4353.41645407052,-21994.27029527032,0,0,2718.35509613903 -16737,20667,37647,-9,37649,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-994.2947463782937,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,377.5,54795.43847480509,0,0,0,2063.321344438825 -16737,20667,37648,-9,37649,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.029977177777,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,377.5,54795.43847480509,0,0,0,2063.321344438825 -16737,20667,37649,-9,-9,-9,1,0,29,2,3,0,2,2,-9,0,4,0,0,0,0,0,-978.5974819775448,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.76,57.81,-9,-9,8.333333333333334,1,1,0,0,3,8,1,0,377.5,54795.43847480509,0,0,0,2063.321344438825 -16737,20667,37650,-9,37649,-9,1,1,11,2,3,1,3,0,-9,0,5,0,0,0,0,0,-961.6605593040873,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,1,0,377.5,54795.43847480509,0,0,0,2063.321344438825 -16738,20668,37651,-9,37653,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-973.6051700043523,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,4,2,-9,0,0,8,2,0,1537.666666666667,201874.3626887136,-8338.682853129956,107669.8592320755,0,1727.098505989173 -16738,20668,37652,-9,37653,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-945.2017287201206,-9,2,-9,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,46.06,57.72,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,1537.666666666667,201874.3626887136,-8338.682853129956,107669.8592320755,0,1727.098505989173 -16738,20668,37653,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,6.756553816724575,7.173829040102571,6.6208136530151,0,0,-1129.3688001485,0,2,2,2019,8,0,20,0,1,0,0,5.498281558715408,5.498281558715408,0,0,0,0,14.5,1,0,1,6.677275345942404,0,49.98,43.25,-9,-9,8.333333333333334,1,1,0,1,1,8,2,0,1537.666666666667,201874.3626887136,-8338.682853129956,107669.8592320755,0,1727.098505989173 -16738,20669,37654,-9,37653,-9,1,1,31,0,1,0,2,2,-9,0,4,7.187134342375121,7.123263380236658,0,0,0,-976.5549064996568,0,2,2,2019,10,0,30,24,1,1,1,4.795715004006998,4.795715004006998,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,4,2,0,0,1,8,3,0,938,160935.4351122335,0,0,0,892.1067457185427 -16738,20670,37655,-9,37653,-9,1,0,25,0,1,0,2,2,-9,0,3,7.786420113605252,7.433746296427381,0,0,0,-956.3310212946495,0,2,-9,2019,19,6,39,38,1,6,1,6.816828702119184,6.816828702119184,0,0,0,0,2,1,0,1,0,0,36.97,58.53,-9,-9,5,4,2,0,0,7,8,3,0,766,95624.99722265603,49751.42405538182,0,0,1533.138164980185 -16739,20671,37656,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,5,0,7.659274170073441,7.652926201196406,0,0,-978.1501591548991,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.817227658636159,7.334896238942001,60.02,56.42,-9,-9,10,1,1,0,0,0,13,3,1,276,685627.4332595918,210901.7647866848,308497.9453450914,0,1313.779650878003 -16740,20672,37657,37659,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.945933391789659,7.101649321960787,0,26,-4,-40.34340703391923,0,2,3,2019,6,0,18,0,1,0,0,5.821001879085069,5.821001879085069,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,1,1,0,0,9,4,4,1,865.75,182450.3656485037,18008.03554650795,222000.2565730358,80238.90711463684,4146.701778734618 -16740,20672,37658,-9,37657,37659,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1004.683341674211,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,865.75,182450.3656485037,18008.03554650795,222000.2565730358,80238.90711463684,4146.701778734618 -16740,20672,37659,37657,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.894412382361057,9.160686637688173,0,7,4,-33.34139594641869,0,-9,-9,2019,9,0,40,40,1,1,0,23.81431162806101,23.81431162806101,0,0,0,0,0,1,1,0,0,0,53,55,57.16,56.15,8,1,1,0,0,1,4,4,1,865.75,182450.3656485037,18008.03554650795,222000.2565730358,80238.90711463684,4146.701778734618 -16740,20672,37660,-9,37657,37659,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.442052576942,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,865.75,182450.3656485037,18008.03554650795,222000.2565730358,80238.90711463684,4146.701778734618 -16741,20673,37661,37662,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.79162583283456,7.499523205498202,0,4,3,36.70413306451863,0,-9,-9,2019,10,0,45,60,1,1,0,5.81510186489532,5.81510186489532,0,0,0,0,0,0,0,0,2.944280331310836,0,49,58,48.28,60.18,7,4,1,0,0,1,5,4,0,201,-31604.94064735437,-58505.82969345026,41702.44691921301,34846.28125095499,2437.255976520903 -16741,20673,37662,37661,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.910985159537045,8.184663316451919,3.77192555569058,4,-3,13.5025635098061,0,1,1,2019,7,0,50,50,1,0,0,7.312575043926024,7.312575043926024,0,0,0,0,0,0,0,0,5.010722996310448,0,48.28,60.18,49,58,8.333333333333334,1,1,0,0,4,5,4,0,201,-31604.94064735437,-58505.82969345026,41702.44691921301,34846.28125095499,2437.255976520903 -16742,20674,37663,-9,37665,37664,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1075.600174018871,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,57.19,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,1214.25,208979.7968634871,45765.30451319763,211923.4978231847,74731.73012709586,2819.728125528134 -16742,20674,37664,37665,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.862710972800981,8.681523369940255,0,11,-2,-106.0989501759725,0,-9,-9,2019,7,0,38,36,1,0,0,22.28174884166751,22.28174884166751,0,0,0,0,0,0,0,0,0,0,58.32,50.22,48.28,60.18,8.333333333333334,1,1,0,0,12,12,4,1,1214.25,208979.7968634871,45765.30451319763,211923.4978231847,74731.73012709586,2819.728125528134 -16742,20674,37665,37664,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,23,2,74.88806020707108,0,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,2.185886380833061,0,48.28,60.18,58.32,50.22,6.666666666666667,1,1,0,0,1,12,4,1,1214.25,208979.7968634871,45765.30451319763,211923.4978231847,74731.73012709586,2819.728125528134 -16742,20674,37666,-9,37665,37664,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-964.9909656531095,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,1,1214.25,208979.7968634871,45765.30451319763,211923.4978231847,74731.73012709586,2819.728125528134 -16743,20675,37667,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.7731065991287,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.710612807059874,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,409,361336.2434931688,0,196531.2295904049,0,211.3505741599184 -16744,20676,37668,37669,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.857959829562732,9.210388955275096,0,9,-1,-100.7636524019281,0,3,3,2019,13,4,60,50,1,4,0,15.23183576438121,15.23183576438121,0,0,0,0,2,0,0,0,0,0,46.98,59.35,32.77,51.68,3.333333333333333,1,1,0,0,10,11,5,1,776.5,148822.8565474489,157287.1232236495,177379.2136459965,129872.0630928195,3777.827987268521 -16744,20676,37669,37668,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.464735789991536,7.597044995441216,0,9,1,-91.54316268088149,0,2,2,2019,24,10,24,23,1,10,0,9.070048906507157,9.070048906507157,0,0,0,0,7,0,0,0,0,0,32.77,51.68,46.98,59.35,5,1,1,0,0,10,11,5,1,776.5,148822.8565474489,157287.1232236495,177379.2136459965,129872.0630928195,3777.827987268521 -16745,20677,37670,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.673709962005825,8.54181383883231,0,0,0,-1096.553607183475,0,-9,-9,2019,8,0,39,39,1,0,0,17.17672844576744,17.17672844576744,0,0,0,0,0,0,0,0,1.931305196000856,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,313,-53994.0075590585,0,0,0,2175.166543051597 -16746,20678,37671,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1131.12155601627,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.34,60.95,-9,-9,8.333333333333334,1,1,0,0,8,9,1,1,1626,-104568.9063005913,0,0,0,1000.716549877771 -16747,20679,37672,-9,37673,37674,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1017.312861389005,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,1,1,-9,0,0,6,2,0,515,70766.26622619922,0,0,0,1582.600441297425 -16747,20679,37673,37674,-9,-9,1,0,39,0,3,0,2,2,-9,1,1,0,0,0,22,-3,135.8400739392958,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,0,1,0,0,35.7,23.15,57.06,57.76,6.666666666666667,1,1,0,0,3,6,2,0,515,70766.26622619922,0,0,0,1582.600441297425 -16747,20679,37674,37673,-9,-9,1,1,42,0,3,0,3,3,-9,0,5,6.516857426379123,6.770966840259661,0,9,3,246.0480152953679,0,-9,-9,2019,9,0,24,36,1,0,0,3.472322684510067,3.472322684510067,0,0,0,0,42,1,0,1,0,0,57.06,57.76,35.7,23.15,8.333333333333334,1,1,0,0,5,6,2,0,515,70766.26622619922,0,0,0,1582.600441297425 -16747,20679,37675,-9,37673,37674,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.2853194556211,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,515,70766.26622619922,0,0,0,1582.600441297425 -16747,20679,37676,-9,37673,37674,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1103.004602373497,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,515,70766.26622619922,0,0,0,1582.600441297425 -16747,20680,37677,-9,37673,37674,1,1,18,0,3,0,2,2,1,0,5,6.731134365766099,5.946543685155039,0,0,0,-1014.886792036481,-9,2,3,2019,6,0,30,0,1,0,1,2.140883449047323,2.140883449047323,0,0,0,0,14.5,1,0,1,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,6,2,0,772,257045.4803944518,-11404.01119836245,0,0,496.7890922848392 -16748,20681,37678,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.777601954644133,8.929051356700493,0,0,0,-917.7051173051069,0,2,1,2019,11,0,48,48,1,0,0,15.79738163079712,15.79738163079712,0,0,0,0,0,0,0,0,0,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,1,12,8,5,1,398,461136.8987338145,274797.2791762412,184936.3030087217,0,2649.237885599265 -16749,20682,37679,37680,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.430699546328214,7.281872976781329,7,1,25.92405573333223,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.415020867484925,7.33311350816513,59.29,38.94,55,45,6.666666666666667,1,1,0,0,1,9,3,1,266,1070724.546791879,18344.87214411284,590881.4929027071,0,1968.854876469123 -16749,20682,37680,37679,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.115877264227142,7.05353949398911,63,-1,85.83861040467417,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.828496628056892,55,45,59.29,38.94,8,1,1,0,0,0,9,3,1,266,1070724.546791879,18344.87214411284,590881.4929027071,0,1968.854876469123 -16750,20683,37681,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.302289667542651,8.106627006686736,0,0,0,-1054.799862807184,0,2,2,2019,6,0,37,38,1,0,0,12.0290673261978,12.0290673261978,0,0,0,0,0,0,0,0,0,0,56.59,39.36,-9,-9,6.666666666666667,1,1,0,0,11,12,4,0,1252,175388.2134366442,29227.69082774327,159559.8636658127,92543.80567612025,1594.608368826663 -16751,20684,37682,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,6.81993452259867,6.737680378398074,0,0,-978.295212740147,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.938825720871414,6.647969245486949,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,545,401246.6529621132,244282.3630634814,144599.0775852152,0,535.4179556061363 -16752,20685,37683,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,7.452595999388636,7.606341081976375,0,0,0,-973.4026116166207,0,3,3,2019,12,0,30,30,1,0,0,6.326927169392466,6.326927169392466,0,0,0,0,0,0,0,0,0,0,52.51,54.26,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,1613,0,0,0,0,799.1736297543866 -16753,20686,37684,37685,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.119801077850813,7.928886209198406,0,28,5,106.751445074228,0,-9,-9,2019,13,1,58,48,1,1,0,6.5369456296723,6.5369456296723,0,0,0,0,0,1,1,0,0,0,38.16,44.66,47.6,40.47,5,1,1,0,0,11,9,4,0,533,746223.7068217627,182482.0384152241,403129.5083684467,26012.85020908589,2282.087764125589 -16753,20686,37685,37684,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,7.298657734783204,7.252842880094102,0,28,-5,.461357424818317,0,-9,3,2019,14,2,42,37,1,2,0,3.44468129233729,3.44468129233729,0,0,0,0,0,1,1,0,0,0,47.6,40.47,38.16,44.66,5,1,1,0,0,11,9,4,0,533,746223.7068217627,182482.0384152241,403129.5083684467,26012.85020908589,2282.087764125589 -16753,20687,37686,-9,37685,37684,1,0,21,0,0,0,2,2,-9,0,3,7.959574569373635,8.061900960397262,0,0,0,-1140.775847058559,-9,3,2,2019,14,2,40,0,1,2,1,8.164813797968709,8.164813797968709,0,0,0,0,0,1,1,0,2.44667450635764,0,28.74,46.47,-9,-9,5,1,1,0,0,4,9,3,0,530,17960.96648791482,-192350.4036742681,0,0,664.6955756695331 -16754,20688,37687,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.538256224666175,7.131284292526382,0,0,0,-1125.628431098777,0,2,2,2019,4,0,31,40,1,0,0,5.358863241092215,5.358863241092215,0,0,0,0,0,1,1,0,0,0,41.46,53.68,-9,-9,5,1,1,0,0,3,9,3,0,638,95924.41351402401,-56135.96822161437,0,0,1024.295789988179 -16755,20689,37688,37689,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.646494042209568,8.625744529029394,0,27,2,25.5781187349457,0,2,2,2019,12,0,38,40,1,0,0,15.62328464485568,15.62328464485568,0,0,0,0,0,0,0,0,0,0,63.27,39.7,53.68,46.69,6.666666666666667,1,1,0,0,11,10,5,1,1799,1828033.793585707,1294185.20958495,426361.0678245036,0,6195.367862374323 -16755,20689,37689,37688,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,9.052794087124933,9.052162092793308,0,27,-2,-28.31473299731265,0,2,2,2019,12,0,38,38,1,0,0,25.40353785535947,25.40353785535947,0,0,0,0,0,0,0,0,0,0,53.68,46.69,63.27,39.7,8.333333333333334,1,1,0,0,11,10,5,1,1799,1828033.793585707,1294185.20958495,426361.0678245036,0,6195.367862374323 -16755,20690,37690,-9,37689,37688,1,0,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-950.6684901731363,-9,2,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,47.29,53.03,-9,-9,5,1,1,0,1,2,10,1,1,766,174992.590885142,0,0,0,0 -16756,20691,37691,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,9.028121020455734,9.265771348421794,0,0,0,-1056.87650284447,0,3,3,2019,12,0,41,42,1,0,0,21.95271436907335,21.95271436907335,0,0,0,0,0,0,0,0,0,0,38.64,62.13,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,466,32553.31365365157,0,0,0,3174.349842670052 -16757,20692,37692,37693,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.041232777513712,4.343072890722669,44,0,82.94070830499943,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.700239590763983,4.179833458915484,52.82,53.97,54.37,54.8,8.333333333333334,1,1,0,0,5,5,4,1,319.5,1441039.392818015,1153942.645878077,153342.9003061894,0,2648.762761346253 -16757,20692,37693,37692,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.690553624900339,9.010626844666646,44,0,-38.73694941000223,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.954593110133216,8.69966429135722,54.37,54.8,52.82,53.97,8.333333333333334,1,1,0,0,12,5,4,1,319.5,1441039.392818015,1153942.645878077,153342.9003061894,0,2648.762761346253 -16758,20693,37694,37697,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.425254830793591,7.048167107958179,0,6,-4,-16.57239709079585,0,3,2,2019,11,0,25,23,1,0,0,7.619640001551905,7.619640001551905,0,0,0,0,0,1,1,0,6.990582108178359,0,51.73,58.82,49.77,49.55,8.333333333333334,1,1,0,0,3,13,3,1,639.5,-20974.79654766554,0,291613.5868546951,297373.4862339252,3447.403835788011 -16758,20693,37695,-9,37694,37697,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.7946846932027,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,639.5,-20974.79654766554,0,291613.5868546951,297373.4862339252,3447.403835788011 -16758,20693,37696,-9,37694,37697,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.619579021254,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,639.5,-20974.79654766554,0,291613.5868546951,297373.4862339252,3447.403835788011 -16758,20693,37697,37694,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,8.150425386340984,7.795517428615428,0,6,4,-23.99879697359799,-9,3,2,2019,7,0,50,0,1,0,0,6.916268728026209,6.916268728026209,0,0,0,0,0,1,1,0,0,0,49.77,49.55,51.73,58.82,6.666666666666667,1,1,0,0,7,13,3,1,639.5,-20974.79654766554,0,291613.5868546951,297373.4862339252,3447.403835788011 -16758,20694,37698,-9,37694,37697,1,1,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-893.3226170525747,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,132,-234372.0841155642,0,0,0,443.9730270607064 -16759,20695,37699,37700,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,5.843469319348115,6.167102303337197,14,-6,24.75871317672183,0,2,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,6.043645643025127,5.886899026234477,54.43,48.21,8.140000000000001,38.56,8.333333333333334,1,1,1,0,6,4,2,0,591.5,498926.0473133647,123384.1755985644,230815.1987010028,0,1511.620163767308 -16759,20695,37700,37699,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,13,6,-37.83035479944448,0,3,2,2019,26,9,0,0,4,9,0,0,0,1,0,82.5904917149048,0,0,1,1,0,0,0,8.140000000000001,38.56,54.43,48.21,0,1,1,0,0,4,4,2,0,591.5,498926.0473133647,123384.1755985644,230815.1987010028,0,1511.620163767308 -16760,20696,37701,-9,37703,37704,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-979.8701188573096,-9,2,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,29,32,-9,-9,3,1,1,-9,0,0,7,5,1,669,2007315.814601941,570292.3331543017,1275494.512216633,365759.13950445,3965.809402290521 -16760,20696,37702,-9,37703,37704,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1017.87479723053,-9,2,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.34,52.06,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,669,2007315.814601941,570292.3331543017,1275494.512216633,365759.13950445,3965.809402290521 -16760,20696,37703,37704,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.314138678693175,7.31057766363344,0,26,1,44.4262252027663,0,3,-9,2019,10,0,21,21,1,0,0,7.826277097431762,7.826277097431762,0,0,0,0,0,0,0,0,.6577392592937901,0,57.16,56.15,36.78,53.77,8.333333333333334,1,1,0,0,10,7,5,1,669,2007315.814601941,570292.3331543017,1275494.512216633,365759.13950445,3965.809402290521 -16760,20696,37704,37703,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,9.048373316676516,9.018760664223292,0,10,-1,56.23851323844855,0,2,2,2019,20,8,40,40,1,8,0,28.42978396115409,28.42978396115409,0,0,0,0,0,0,0,0,0,0,36.78,53.77,57.16,56.15,6.666666666666667,1,1,0,1,12,7,5,1,669,2007315.814601941,570292.3331543017,1275494.512216633,365759.13950445,3965.809402290521 -16761,20697,37705,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,6.935274885435942,6.919920729455819,5.390625150354907,0,0,-1019.428856341313,0,3,3,2019,11,0,5,5,1,0,0,24.50767739604375,24.50767739604375,0,0,0,0,14.5,1,1,0,4.834445623925869,5.120723975168571,59.43,58.05,-9,-9,10,2,3,0,0,9,8,2,1,4830,149358.8195321153,-120560.9096799906,0,0,1694.109917822986 -16762,20698,37706,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,1,8.474467678507636,8.261919666385696,0,0,0,-951.3089834490245,-9,3,3,2019,26,10,52,0,1,10,0,10.70385897154025,10.70385897154025,0,0,0,0,0,1,1,0,2.848487595644317,0,19.01,22.64,-9,-9,0,1,1,0,0,9,9,4,0,676,-168126.5399960641,65972.25707968876,0,0,2092.789066772538 -16763,20699,37707,37709,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,8.749693562213404,8.850106939961291,0,20,-2,-58.07392523053707,0,3,2,2019,15,3,40,30,1,3,0,15.35326638357919,15.35326638357919,0,0,0,0,2,1,1,0,1.565743561709156,0,46.08,57.2,50.03,39.39,5,1,1,0,0,10,7,5,1,932.3333333333334,2399707.805683047,977547.5604376277,976665.1872310223,5926.363961735369,6010.94194897696 -16763,20699,37708,-9,37707,37709,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-812.165105166274,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,932.3333333333334,2399707.805683047,977547.5604376277,976665.1872310223,5926.363961735369,6010.94194897696 -16763,20699,37709,37707,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.252760874116776,9.561057175077888,0,22,2,-17.76581913403447,0,-9,2,2019,12,0,45,42,1,0,0,22.39510829127432,22.39510829127432,0,0,0,0,2,1,1,0,0,0,50.03,39.39,46.08,57.2,6.666666666666667,1,1,0,0,10,7,5,1,932.3333333333334,2399707.805683047,977547.5604376277,976665.1872310223,5926.363961735369,6010.94194897696 -16764,20700,37710,37711,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,7.459014615928525,7.132437579589764,0,4,6,81.08674568942784,0,-9,-9,2019,8,1,35,40,1,1,0,6.253532719161923,6.253532719161923,0,0,0,0,0,1,1,0,0,0,65.23,38.89,43.99,42.31,1.666666666666667,2,3,0,1,3,5,2,1,682.5,366115.5005865599,190427.0078588832,211032.6600364133,0,1702.77738886029 -16764,20700,37711,37710,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,0,0,0,4,-6,-42.90646449128384,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.99,42.31,65.23,38.89,6.666666666666667,2,3,0,1,0,5,2,1,682.5,366115.5005865599,190427.0078588832,211032.6600364133,0,1702.77738886029 -16765,20701,37712,37713,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.176572213996632,7.678272403553331,62,2,-71.48611465283062,0,3,3,2019,20,5,0,0,4,5,0,0,0,1,0,7.648560262461475,1.498637320583599,0,1,1,0,3.203789373112196,7.218425562658933,42.99,43.7,51.83,57.2,10,1,1,0,0,0,6,2,1,459,435213.1571368962,130516.8852050581,254043.9138005525,0,3353.69477351006 -16765,20701,37713,37712,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.562506201684351,5.073393827019098,62,-2,-19.20126873745366,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.849815459166651,5.531419026201907,51.83,57.2,42.99,43.7,10,1,1,0,0,0,6,2,1,459,435213.1571368962,130516.8852050581,254043.9138005525,0,3353.69477351006 -16766,20702,37714,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1111.448109065635,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.22,32.38,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,3847,38452.10948350706,0,0,0,419.9307521981212 -16767,20703,37715,37716,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,7.948731382880419,7.872920830316546,0,27,3,27.85045768953951,0,2,2,2019,11,1,50,48,1,1,0,6.99215431240386,6.99215431240386,0,0,0,0,2,1,1,0,7.53035532265569,0,54.2,57.49,53.7,16.45,6.666666666666667,1,1,0,0,8,10,3,1,445.5,433344.1276054526,493336.3185739407,50468.45320391161,24077.17901094241,2011.586377378035 -16767,20703,37716,37715,-9,-9,1,0,49,0,1,0,2,2,-9,1,1,0,0,0,27,-3,-2.204527872951211,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.7,16.45,54.2,57.49,10,1,1,0,0,0,10,3,1,445.5,433344.1276054526,493336.3185739407,50468.45320391161,24077.17901094241,2011.586377378035 -16768,20704,37717,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,5.198670489208369,4.764813839079603,0,0,-1098.778889347589,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,12.32657819792081,0,0,1,1,0,0,4.688721789095984,46.19,16.97,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,539,475485.9231899629,14291.7045076696,388143.8690799896,0,1890.827687316626 -16769,20705,37718,37719,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.267148525388116,8.17759346665534,0,36,0,53.61595868343512,0,3,3,2019,10,1,26,24,1,1,0,16.29381119946845,16.29381119946845,0,0,0,0,0,0,0,0,8.098869828837392,0,54.69,57.47,42.64,57.17,8.333333333333334,1,1,0,0,9,10,5,1,189,198510.2777824337,209384.1455503399,0,0,3556.436272655123 -16769,20705,37719,37718,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.161731163839564,8.056350469572205,0,36,0,13.61321301004208,0,3,2,2019,10,0,44,40,1,0,0,8.973359101447134,8.973359101447134,0,0,0,0,0,0,0,0,0,0,42.64,57.17,54.69,57.47,1.666666666666667,1,1,0,0,7,10,5,1,189,198510.2777824337,209384.1455503399,0,0,3556.436272655123 -16769,20706,37720,-9,37719,37718,1,1,26,0,0,0,2,2,-9,0,4,8.11032675310787,8.214693436695889,0,0,0,-1003.798524461724,0,2,1,2019,10,0,50,40,1,1,1,7.654710008334329,7.654710008334329,0,0,0,0,0,0,0,0,4.144094010347127,0,50,58,-9,-9,7,1,1,0,0,1,10,4,1,85,-40045.734055819,0,0,0,1002.699594359321 -16770,20707,37721,37722,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.399427770532201,8.461282884532039,0,9,6,-44.2194560288748,0,2,2,2019,12,0,37,37,1,0,0,13.94284066932251,13.94284066932251,0,0,0,0,0,0,0,0,4.715908590745529,0,50.4,51.37,47.9,48.57,6.666666666666667,1,1,0,0,10,2,5,1,392.5,1923993.762397376,1682776.123539471,401882.7026294518,297978.5539702001,3639.498708524063 -16770,20707,37722,37721,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.480769624178619,8.629668423641403,0,9,-6,32.1487349574548,0,3,2,2019,14,3,52,52,1,3,0,15.49157280157278,15.49157280157278,0,0,0,0,0,0,0,0,3.218180888902738,0,47.9,48.57,50.4,51.37,5,1,1,0,0,10,2,5,1,392.5,1923993.762397376,1682776.123539471,401882.7026294518,297978.5539702001,3639.498708524063 -16771,20708,37723,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.507235969052305,7.38118217758784,0,0,0,-1171.123039074303,0,-9,-9,2019,12,0,48,48,1,0,0,3.893814458816321,3.893814458816321,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,8.333333333333334,2,3,0,0,8,9,3,0,179,291697.1850678201,38237.5073132869,0,0,559.2732241880408 -16772,20709,37724,37725,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,5.677013268041373,5.711559486589771,34,4,-78.28150688429812,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.284914034363354,5.640545688005582,57.76,54.51,54.79,55.86,10,1,1,0,0,6,6,2,1,1605.5,819113.47193792,409866.3175203936,191943.9884878677,0,1288.52021801849 -16772,20709,37725,37724,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,5.118548028301499,5.098068427029011,34,-4,-33.93942708645999,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.481718754189798,54.79,55.86,57.76,54.51,1.666666666666667,1,1,0,0,8,6,2,1,1605.5,819113.47193792,409866.3175203936,191943.9884878677,0,1288.52021801849 -16772,20710,37726,-9,37725,37724,1,1,30,0,0,0,2,2,-9,0,3,7.725820902624031,7.690952496206858,0,0,0,-939.657007862506,0,3,1,2019,12,1,40,40,1,1,0,5.983399183038459,5.983399183038459,0,0,0,0,0,1,1,0,0,0,40.75,58.26,-9,-9,6.666666666666667,1,1,0,0,4,6,3,1,1179,15007.54724265034,100986.4488602921,73063.38311147592,47164.21491215036,889.8498789104924 -16773,20711,37727,-9,-9,37728,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1127.047925882904,0,3,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.45,29.59,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,729,0,0,0,0,333.5593356218369 -16773,20712,37728,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.155068400463399,5.6942237047339,0,0,-955.6634374499497,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.901825237874782,5.873291539865091,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,350,207971.8175628509,124189.3022203952,154193.9113173417,0,926.5226697515375 -16774,20713,37729,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.670851230731087,6.485777015749217,0,0,-877.681608279733,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.910265337409953,6.629257837464219,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,182,650065.6579677232,62609.39457364095,339203.8230856531,0,757.3944608509851 -16775,20714,37730,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-929.5681368426481,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.44,25.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,270,218842.7753064754,0,0,0,578.5628792930222 -16775,20715,37731,-9,37730,-9,1,1,22,0,0,0,2,2,1,0,4,7.780696297972496,7.681503503366,0,0,0,-1021.70480223493,-9,2,-9,2019,4,0,40,0,1,0,0,5.998860569561733,5.998860569561733,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,10,1,1,0,0,1,12,3,0,1206,-146477.0571426193,-80636.69159779594,0,0,1010.655141904354 -16776,20716,37732,37734,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.388627243982066,8.07665846382397,0,2,2,-13.41781617361099,-9,-9,-9,2019,8,0,55,0,1,0,0,7.822134260557673,7.822134260557673,0,0,0,0,0,1,1,0,2.726594495829028,0,54.37,54.8,49.04,55.86,6.666666666666667,1,1,0,0,9,5,4,1,377,51605.74004567613,-32549.42686136687,0,0,3111.099972714421 -16776,20716,37733,-9,37734,37732,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1046.031832620425,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,377,51605.74004567613,-32549.42686136687,0,0,3111.099972714421 -16776,20716,37734,37732,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.123336161490924,7.948506426681681,0,2,-2,-63.76519794628204,0,2,-9,2019,9,0,38,38,1,0,0,9.635616839428147,9.635616839428147,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,6.666666666666667,1,1,0,0,9,5,4,1,377,51605.74004567613,-32549.42686136687,0,0,3111.099972714421 -16777,20717,37735,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,4.468479866924474,4.348344316733098,0,0,-1028.202489100889,1,-9,-9,2019,15,3,0,49,2,3,0,0,0,0,0,0,0,0,0,0,0,4.099582058084813,0,54.45,50.69,-9,-9,8.333333333333334,1,1,0,0,6,8,2,0,5778,-26493.95385613644,0,0,0,-32.80769217847902 -16778,20718,37736,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.203029938545941,6.429728468195231,0,0,-1051.665525092831,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.228711723505797,53.16,27.86,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,786,782322.5890890274,216259.6023501196,215976.647426047,0,1093.065431772957 -16779,20719,37737,-9,-9,-9,1,0,24,0,0,1,2,0,0,0,3,0,6.167941112391643,6.256519093023819,0,0,-1044.639875684618,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,5.868821304919501,0,33.72,60.21,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,194,-39953.88616156361,0,0,0,-280.26600620555 -16780,20720,37738,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.136309068785215,5.333692814514492,0,0,-1120.713183913408,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,31.68834783359674,0,0,1,1,0,5.237482280768751,0,53,44,-9,-9,8,1,1,0,0,0,6,2,1,639,-71546.24000805686,0,0,0,391.819954778003 -16781,20721,37739,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.441545946763489,5.902273458507152,0,0,-922.3445133577108,0,2,3,2019,11,2,0,0,4,2,0,0,0,1,0,8.485658638686949,0,0,1,1,0,0,6.280705272161219,40.62,44.01,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,407,40118.43671220062,44044.05060986822,0,0,1251.258415728257 -16782,20722,37740,37741,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.149061725335006,8.680107580013516,7.221300583395088,9,-2,2.292080608905718,0,-9,-9,2019,13,1,24,0,1,1,0,13.03120565554504,13.03120565554504,0,0,0,0,2,0,0,0,5.058119788002228,7.295787522114143,45.91,59.89,41.28,57.99,8.333333333333334,1,1,0,0,9,1,5,1,153,470273.0517378309,80017.5332871829,410638.0597130129,0,4238.074598695769 -16782,20722,37741,37740,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.553916422701382,8.850375722315752,8.317957765277335,44,2,7.200651653102403,0,3,3,2019,17,6,22,20,1,6,0,26.05133212329539,26.05133212329539,0,0,0,0,0,0,0,0,5.039774718958811,8.544540262935438,41.28,57.99,45.91,59.89,6.666666666666667,1,1,0,0,9,1,5,1,153,470273.0517378309,80017.5332871829,410638.0597130129,0,4238.074598695769 -16783,20723,37742,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.30741700966578,6.47946048942911,0,0,-974.1472595451509,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.236110795168114,59.71,18.92,-9,-9,8.333333333333334,1,1,0,0,3,9,2,0,393,194927.5662830571,43977.41958203133,240947.2208426816,0,1207.077982193973 -16784,20724,37743,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,8.134290814350534,8.147042795440488,0,0,-958.2475325864776,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.103110235789559,7.817586540860426,54.79,55.86,-9,-9,10,1,1,0,0,6,9,4,1,758,1910607.454842961,424143.4011448246,828385.89590345,0,2610.910985950411 -16785,20725,37744,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1026.734359526116,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,34.01,-9,-9,5,1,1,1,0,0,13,1,0,457,-10318.77366479077,0,0,0,582.3841956159489 -16785,20726,37745,-9,37744,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-897.2278258654164,0,3,-9,2019,6,0,0,20,3,0,1,0,0,0,0,0,.3258235739020741,0,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,1,0,3,13,1,0,1398,-68272.48815628314,0,0,0,540.213302210463 -16786,20727,37746,-9,-9,-9,1,0,57,1,1,0,3,3,-9,0,2,7.323546899779584,7.574112755625865,0,0,0,-937.1334238428138,0,2,2,2019,10,0,20,20,1,0,0,8.854658356335865,8.854658356335865,0,0,0,0,0,1,1,0,0,0,41.32,50.38,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,322,377729.5769718833,186171.075393692,209044.4970600387,50746.26549836105,534.817099700728 -16786,20728,37747,-9,37749,37748,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.616798540817,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,3,1,510.3333333333333,7678.074406305852,-8628.896377654191,0,0,1936.127119449423 -16786,20728,37748,37749,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.209317705241077,8.087854952539093,0,2,-1,108.3374632065055,-9,-9,-9,2019,10,0,50,0,1,0,0,7.474945804118252,7.474945804118252,0,0,0,0,0,1,1,0,0,0,45.26,56.19,57.06,57.76,8.333333333333334,1,1,0,0,1,6,3,1,510.3333333333333,7678.074406305852,-8628.896377654191,0,0,1936.127119449423 -16786,20728,37749,37748,37746,-9,1,0,26,1,1,0,1,1,-9,0,5,6.938944332230981,6.883372761786708,0,2,1,-9.800314226847785,0,2,1,2019,3,0,20,20,1,0,0,6.014255656232683,6.014255656232683,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.26,56.19,10,1,1,0,0,6,6,3,1,510.3333333333333,7678.074406305852,-8628.896377654191,0,0,1936.127119449423 -16786,20729,37750,-9,37746,-9,1,1,24,1,1,0,2,2,0,0,4,0,0,0,0,0,-1005.668178143999,-9,3,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.381472742773624,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,6,1,1,784,-169125.1786976227,0,0,0,402.1738473880486 -16787,20730,37751,-9,37753,37752,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.203741467258,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,357.6666666666667,307938.0669383131,161287.1473414089,356599.1260864811,170078.6815961123,2398.512124058828 -16787,20730,37752,37753,-9,-9,1,1,34,1,1,0,3,3,-9,0,3,8.036070937496518,7.562579655073995,0,7,4,-2.561258975965607,0,2,3,2019,9,0,40,37,1,0,0,8.017454090738365,8.017454090738365,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.46,56.91,8.333333333333334,1,1,0,0,7,9,3,1,357.6666666666667,307938.0669383131,161287.1473414089,356599.1260864811,170078.6815961123,2398.512124058828 -16787,20730,37753,37752,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.539592991072974,7.380744753478139,0,7,-4,-7.794318247135079,0,2,2,2019,10,2,27,22,1,2,0,9.300783319808346,9.300783319808346,0,0,0,0,0,1,1,0,0,0,49.46,56.91,57.33,53.46,8.333333333333334,1,1,0,0,9,9,3,1,357.6666666666667,307938.0669383131,161287.1473414089,356599.1260864811,170078.6815961123,2398.512124058828 -16788,20731,37754,-9,37755,-9,1,1,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1058.635839409856,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,2,0,1099.25,-18307.15658676595,0,0,0,1508.719521474392 -16788,20731,37755,-9,-9,-9,1,0,30,1,3,0,2,2,-9,0,3,0,5.111890411829619,5.422629500206426,0,0,-989.3970439232199,0,2,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,5.061974530490104,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,1,3,8,2,0,1099.25,-18307.15658676595,0,0,0,1508.719521474392 -16788,20731,37756,-9,37755,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.296927747745,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,8,2,0,1099.25,-18307.15658676595,0,0,0,1508.719521474392 -16788,20731,37757,-9,37755,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.4180336372996,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,2,0,1099.25,-18307.15658676595,0,0,0,1508.719521474392 -16789,20732,37758,37759,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.05919293047052,9.410708943202927,0,41,1,-117.1137995349966,0,3,3,2019,10,0,45,-9,1,1,0,21.61093202396331,21.61093202396331,0,0,0,0,0,0,0,0,3.765381985436181,0,51,49,60.14,46.44,7,1,1,0,0,1,5,5,1,1538.5,653244.5620514937,780808.8453516297,0,0,4773.236530879779 -16789,20732,37759,37758,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.520677210828546,7.680501547386356,0,41,-1,-56.40227055098394,0,3,3,2019,8,0,32,32,1,0,0,5.924433426879269,5.924433426879269,0,0,0,0,0,0,0,0,5.196891047068226,0,60.14,46.44,51,49,10,1,1,0,0,7,5,5,1,1538.5,653244.5620514937,780808.8453516297,0,0,4773.236530879779 -16790,20733,37760,37761,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.301305236539074,8.452317714733994,6.205314910027376,8,-5,78.44048458024706,0,3,3,2019,7,0,60,69,1,0,0,7.398961076643969,7.398961076643969,0,0,0,0,0,1,1,0,0,6.319895095394003,54.42,35.57,58.57,32.89,1.666666666666667,1,1,0,0,7,6,4,0,807,427718.8277024425,283321.7352739086,107011.8111914026,50047.34586519272,2565.629341465075 -16790,20733,37761,37760,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,8,5,-15.33218100263043,0,3,3,2019,14,2,0,32,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.57,32.89,54.42,35.57,6.666666666666667,4,5,0,0,9,6,4,0,807,427718.8277024425,283321.7352739086,107011.8111914026,50047.34586519272,2565.629341465075 -16791,20734,37762,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,8.596438167949872,8.244624182885214,0,0,-1097.789459290659,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.399135415703461,8.573210512816715,53.57,46.8,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,2197,896232.711570734,449469.0716091236,349679.5057930518,0,2712.142201256159 -16792,20735,37763,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,0,0,-824.3477405870046,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,56.75,-9,-9,5,1,1,1,1,0,13,1,0,831,-6331.589497536077,-91733.54385111596,0,0,670.5669893001628 -16793,20736,37764,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.024904499874916,8.046741471194201,0,0,0,-947.4653794766391,0,-9,-9,2019,9,1,38,38,1,1,0,9.176421748133176,9.176421748133176,0,0,0,0,0,0,0,0,.686154873548273,0,59.64,38.58,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,422,672695.3032314868,426688.2009909495,165003.150173849,0,1141.908041718699 -16794,20737,37765,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.076986588975633,5.066095009917097,0,0,-1089.068457938642,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.243442749624922,50,47,-9,-9,7,1,1,0,0,0,11,2,0,561,111333.4849710065,39430.20261230401,43911.32507264183,27748.18542482439,1162.828735994574 -16795,20738,37766,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.370213571346714,5.458064910913918,0,0,-981.4044272437028,0,2,1,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.288410283605469,5.552329058786937,45.77,32,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,550,-220305.1772934563,20792.18086000363,0,0,982.9320272680516 -16795,20739,37767,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.23383335302616,8.279878924118599,0,0,0,-894.3257670872666,0,-9,-9,2019,8,0,40,37,1,0,0,10.8955257331639,10.8955257331639,0,0,0,0,0,1,1,0,0,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,365,-74881.57024014546,-47204.41863291285,0,0,1098.600289253914 -16796,20740,37768,37771,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,5.90628397099412,6.106510442648521,0,29,0,-111.9803445483904,0,-9,3,2019,7,0,9,9,1,0,0,7.012526204918001,7.012526204918001,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,3,1,407.75,441963.6196217052,153184.9912598446,225076.2066086357,63974.74606703181,1935.885234610658 -16796,20740,37769,-9,37768,37771,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.785744094426,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,407.75,441963.6196217052,153184.9912598446,225076.2066086357,63974.74606703181,1935.885234610658 -16796,20740,37770,-9,37768,37771,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.919674147544,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,407.75,441963.6196217052,153184.9912598446,225076.2066086357,63974.74606703181,1935.885234610658 -16796,20740,37771,37768,-9,-9,1,1,56,0,2,0,2,2,-9,0,4,8.357355701849665,8.515611685887874,0,29,9,-25.6872250702023,0,2,2,2019,11,1,37,37,1,1,0,11.42684246090681,11.42684246090681,0,0,0,0,2,1,1,0,.7164037664296375,0,54.2,57.49,52,54.51,6.666666666666667,1,1,0,0,12,5,3,1,407.75,441963.6196217052,153184.9912598446,225076.2066086357,63974.74606703181,1935.885234610658 -16797,20741,37772,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.832870707318,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,338,96809.07358167839,0,0,0,1213.396495769013 -16798,20742,37773,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.982396538964,0,3,-9,2019,13,1,0,0,4,1,0,0,0,1,0,2.44512532396847,0,0,1,1,0,0,0,43.61,23.36,-9,-9,5,1,1,0,0,0,9,1,1,571,-151791.8477070059,0,0,0,853.7929099273638 -16798,20743,37774,-9,37773,-9,1,0,56,0,0,0,2,2,-9,0,3,8.170762617845504,8.149184547498992,0,0,0,-1055.471168850212,0,3,-9,2019,10,1,40,50,1,1,0,9.657794564834102,9.657794564834102,0,0,0,0,0,1,1,0,0,0,55.12,44.8,-9,-9,5,1,1,0,0,2,9,4,1,472,307179.1823884606,-59906.4334909389,0,0,1540.238448870263 -16798,20744,37775,-9,37774,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1015.018989949215,-9,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,468,0,0,0,0,0 -16799,20745,37776,37777,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,5.664341430467582,6.096286876002716,45,-5,-34.96217690994096,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,6.805124896889379,0,0,1,1,0,7.058035234071955,5.646484337256174,51.24,58.84,60.45,43.75,8.333333333333334,1,1,0,0,4,12,2,0,338,85782.37074878179,82279.12891181253,119612.1310580053,0,2032.70360092358 -16799,20745,37777,37776,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.506750438530293,6.361222161672077,45,5,-132.5598245522921,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.372846956932299,60.45,43.75,51.24,58.84,8.333333333333334,1,1,0,0,0,12,2,0,338,85782.37074878179,82279.12891181253,119612.1310580053,0,2032.70360092358 -16800,20746,37778,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.406268266993,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.99,27.92,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,287,74447.44642741283,0,0,0,1723.923108512385 -16801,20747,37779,-9,37781,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.699152299783,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,861.6666666666666,43196.5103216638,0,0,0,1980.265817001961 -16801,20747,37780,-9,37781,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.8943819452239,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,861.6666666666666,43196.5103216638,0,0,0,1980.265817001961 -16801,20747,37781,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,3,6.98166493431644,7.311640413374689,0,0,0,-962.9222010693163,0,2,-9,2019,11,0,17,16,1,0,0,4.766118708412797,4.766118708412797,0,0,0,0,14.5,1,1,0,0,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,2,6,2,0,861.6666666666666,43196.5103216638,0,0,0,1980.265817001961 -16802,20748,37782,37783,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.447889035933938,8.056595447518408,0,6,-4,-20.16022639468967,-9,3,-9,2019,8,0,50,0,1,0,0,8.440036707482427,8.440036707482427,0,0,0,0,7,0,0,0,0,0,58.15,52.91,46.08,57.2,8.333333333333334,1,1,0,0,11,13,5,1,385.5,156520.3089301978,182057.6854634157,248354.2807375269,148091.13534372,4331.849574423254 -16802,20748,37783,37782,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.659371312547655,9.044680791579333,0,6,4,17.89615978139096,-9,3,3,2019,10,0,50,0,1,0,0,16.43690314779533,16.43690314779533,0,0,0,0,0,0,0,0,0,0,46.08,57.2,58.15,52.91,8.333333333333334,1,1,0,0,10,13,5,1,385.5,156520.3089301978,182057.6854634157,248354.2807375269,148091.13534372,4331.849574423254 -16803,20749,37784,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.395076479146168,8.419448127335539,0,0,-1086.555987090149,0,3,2,2019,26,11,0,0,4,11,0,0,0,1,3.172217912536097,0,.5183635427068474,0,1,1,0,5.200298004009509,8.529097014968741,36.02,37.9,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,236,416177.5642315186,458999.1227751385,0,0,2672.5746867708 -16804,20750,37785,37786,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.895402588905799,6.707733647272939,8,4,27.58319502211946,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.997861549198109,65.09,31.06,61.28,46.17,10,1,1,0,0,0,2,2,1,517.5,655626.8714804209,438486.6385556853,0,0,1213.405827442239 -16804,20750,37786,37785,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.774554326015542,5.001650022354169,43,-4,147.8200650580817,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.962569160978956,61.28,46.17,65.09,31.06,10,1,1,0,0,0,2,2,1,517.5,655626.8714804209,438486.6385556853,0,0,1213.405827442239 -16805,20751,37787,37788,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.800786849300108,8.035144302916661,59,0,33.73587412253349,0,2,3,2019,20,8,0,0,4,8,0,0,0,1,0,.4030225807022747,0,71.5,1,1,0,5.234393608993654,7.702881452592415,47.49,24.43,46.42,26.3,6.666666666666667,1,1,0,0,0,8,3,1,1563,1056380.737128942,450846.3142308134,496407.7088266605,0,2363.507423080153 -16805,20751,37788,37787,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.29658656993402,6.257312649606062,59,0,-12.37165278367687,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,72.81535927518088,0,0,1,1,0,0,6.506314662808074,46.42,26.3,47.49,24.43,8.333333333333334,1,1,0,0,0,8,3,1,1563,1056380.737128942,450846.3142308134,496407.7088266605,0,2363.507423080153 -16806,20752,37789,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.590406734252053,9.453848766092563,0,0,0,-1049.692352280293,0,3,3,2019,11,1,49,45,1,1,0,37.0580236960318,37.0580236960318,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,885,1825302.334771394,1401555.445329762,218888.812528803,0,4199.636058790815 -16807,20753,37790,-9,37791,37792,1,0,16,0,0,1,2,0,-9,0,2,0,2.192143771675123,1.926385236969399,0,0,-1131.021846377943,-9,2,2,2019,24,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,2.03277424339738,0,20.97,61.11,-9,-9,5,3,4,0,0,0,8,4,0,476.3333333333333,755405.3702353198,406961.1764463293,265142.4013463028,0,2803.189256607722 -16807,20753,37791,37792,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.952976004021506,7.095202458546697,0,31,-2,-20.02349242692214,0,2,3,2019,12,2,16,12,1,2,0,7.848997207160159,7.848997207160159,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,3,4,0,0,9,8,4,0,476.3333333333333,755405.3702353198,406961.1764463293,265142.4013463028,0,2803.189256607722 -16807,20753,37792,37791,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.718285736252367,8.960416103105397,0,32,2,36.917399898902,0,2,2,2019,7,0,35,40,1,0,0,18.71534068727063,18.71534068727063,0,0,0,0,0,1,1,0,1.896755519196388,0,57.16,56.15,57.33,53.46,8.333333333333334,4,2,0,0,9,8,4,0,476.3333333333333,755405.3702353198,406961.1764463293,265142.4013463028,0,2803.189256607722 -16807,20754,37793,-9,37791,37792,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-994.8774723083607,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.2,55.74,-9,-9,5,3,4,0,0,1,8,1,0,559,129333.4213202292,0,0,0,0 -16808,20755,37794,37795,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.724391870379632,6.858840990507842,0,28,4,79.18410645706192,0,3,2,2019,14,1,45,80,1,1,0,2.198973819050859,2.198973819050859,0,0,0,0,0,1,1,0,0,0,38.16,44.66,39.15,41.42,6.666666666666667,2,3,0,0,7,8,2,1,460.5,188035.7405154211,0,182721.8074369837,0,2544.288694701522 -16808,20755,37795,37794,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,28,-4,-18.07554267146032,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,8.236865003137467,0,39.15,41.42,38.16,44.66,5,2,3,1,0,0,8,2,1,460.5,188035.7405154211,0,182721.8074369837,0,2544.288694701522 -16808,20756,37796,-9,37795,37794,1,0,24,0,0,0,1,1,-9,0,5,7.218377674886055,7.590357194737616,0,0,0,-1012.385893950916,0,2,2,2019,4,0,40,38,1,0,1,5.169827011724651,5.169827011724651,0,0,0,0,0,1,1,0,4.599196017399681,0,52.21,59.91,-9,-9,10,2,3,0,0,8,8,3,1,299,11313.4315890115,0,0,0,1536.799328522315 -16808,20757,37797,-9,37795,37794,1,1,20,0,0,0,2,2,1,0,3,8.167652667058315,7.985311920590637,0,0,0,-1077.105281797121,-9,2,2,2019,6,0,40,0,1,0,1,8.438434236330602,8.438434236330602,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,2,3,0,0,4,8,4,1,653,129401.5458880133,85099.3581290461,0,0,1809.789740982743 -16809,20758,37798,37799,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,0,0,0,26,-4,-111.6715817814614,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,50.36,35.28,8.333333333333334,1,1,0,0,4,7,3,1,229,6661.842245085184,0,0,0,3388.754567418007 -16809,20758,37799,37798,-9,-9,1,1,55,0,1,0,2,2,-9,0,2,7.533132271700671,8.323710036066897,7.969324229178456,26,4,92.45713116896965,0,2,1,2019,8,1,40,45,1,1,0,5.507358490319398,5.507358490319398,0,0,0,0,0,1,1,0,7.641428649926327,7.168167296187018,50.36,35.28,54.96,53.17,6.666666666666667,1,1,0,0,10,7,3,1,229,6661.842245085184,0,0,0,3388.754567418007 -16809,20758,37800,-9,37798,37799,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.2456067883185,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,229,6661.842245085184,0,0,0,3388.754567418007 -16809,20759,37801,-9,37798,37799,1,0,22,0,1,0,1,1,1,0,5,8.711061708254729,8.295169191003449,0,0,0,-1063.704844156827,-9,2,2,2019,5,0,37,0,1,0,1,14.9758827404275,14.9758827404275,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,353,42783.09454076533,-4506.131585984083,0,0,1723.584743934098 -16809,20760,37802,-9,37798,37799,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1019.968755850499,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,7,1,1,368,-21744.71254418594,0,0,0,1038.767924286636 -16810,20761,37803,-9,37805,37804,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.359897905072,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,1558,-130553.0622355057,0,0,0,2260.087217103008 -16810,20761,37804,37805,-9,-9,1,1,21,2,2,0,1,1,-9,0,5,8.651610679430954,8.557320803167668,0,3,2,-48.52228333606654,0,-9,-9,2019,0,0,30,20,1,0,0,19.95937545848167,19.95937545848167,0,0,0,0,7,1,1,0,0,0,32.72,43.47,46,59,6.666666666666667,1,1,0,0,3,12,3,0,1558,-130553.0622355057,0,0,0,2260.087217103008 -16810,20761,37805,37804,-9,-9,1,0,19,2,2,0,3,3,-9,1,4,0,0,0,3,-2,-53.17504676247159,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,32.72,43.47,7,1,1,0,0,0,12,3,0,1558,-130553.0622355057,0,0,0,2260.087217103008 -16810,20761,37806,-9,37805,37804,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-918.4682553069784,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1558,-130553.0622355057,0,0,0,2260.087217103008 -16811,20762,37807,37808,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.70324133462824,8.581529342020302,45,1,147.9445391680034,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.790550487983216,9.013162929729676,50.05,55.41,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,789.5,1988794.342066933,1497530.075678871,249731.0212454174,0,5261.605643615203 -16811,20762,37808,37807,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.359801257487526,7.581038862020528,49,-1,-48.92571181700919,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.495717334928941,7.651920027012701,57.16,56.15,50.05,55.41,8.333333333333334,1,1,0,0,5,2,5,1,789.5,1988794.342066933,1497530.075678871,249731.0212454174,0,5261.605643615203 -16812,20763,37809,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,7.754650287063209,7.863679410673153,0,0,0,-1004.975290541698,0,2,2,2019,5,0,20,0,1,0,0,11.14520693281932,11.14520693281932,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,5,2,3,0,0,6,6,3,0,410,-92008.62181949537,65921.32976213162,0,0,2026.657052894976 -16813,20764,37810,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.103372315546673,6.817919785066402,0,0,-779.0961909995092,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.298917194865266,6.62139136303746,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1784,631924.5078316208,223351.0184134914,205918.4886160921,0,873.2279706238693 -16814,20765,37811,37812,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,0,0,0,14,-4,0,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.79,53.79,49.69,33,6.666666666666667,2,3,0,0,0,8,1,1,367.6666666666667,1238817.105157122,93133.911736447,1699953.651381511,1000989.980548138,1327.518703219284 -16814,20765,37812,37811,-9,-9,1,1,43,0,3,0,1,1,-9,1,1,0,0,0,15,4,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,33,47.79,53.79,6.666666666666667,2,3,1,1,5,8,1,1,367.6666666666667,1238817.105157122,93133.911736447,1699953.651381511,1000989.980548138,1327.518703219284 -16814,20765,37813,-9,37811,37812,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.5062008562503,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,1,367.6666666666667,1238817.105157122,93133.911736447,1699953.651381511,1000989.980548138,1327.518703219284 -16815,20766,37814,37815,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.834334343528134,9.061773743477382,0,10,4,92.14607850398767,0,2,3,2019,6,0,40,40,1,0,0,20.27021518690993,20.27021518690993,0,0,0,0,0,0,0,0,4.737131783002074,0,57.74,44.14,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,1010,1142761.192667775,608225.6754114607,119471.8129591447,0,4004.570691337281 -16815,20766,37815,37814,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.380090500397166,8.327772723520095,0,38,-4,29.87258614611174,0,3,3,2019,6,0,60,38,1,0,0,6.878150021849337,6.878150021849337,0,0,0,0,0,0,0,0,3.347277753434389,0,57.16,56.15,57.74,44.14,8.333333333333334,1,1,0,0,12,12,5,1,1010,1142761.192667775,608225.6754114607,119471.8129591447,0,4004.570691337281 -16816,20767,37816,-9,-9,-9,1,1,52,1,1,0,1,1,-9,0,1,8.493889507620837,8.492089069515675,0,0,0,-981.708183206634,0,2,2,2019,9,1,38,37,1,1,0,11.39625652320834,11.39625652320834,0,0,0,0,0,1,1,0,0,0,59.47,31.4,-9,-9,5,4,2,0,0,10,8,4,0,652,200464.9068452961,10716.76455758436,0,0,630.6025555526199 -16816,20768,37817,-9,37818,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1179.412876841003,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,4,0,1143,105603.427512841,0,184299.1385614853,89091.81861188271,2069.463958030904 -16816,20768,37818,-9,-9,37816,1,0,32,1,1,0,2,2,-9,0,4,8.075866868302153,8.225222619669596,0,0,0,-1035.923735667425,-9,2,1,2019,11,0,16,0,1,2,1,19.37406864571424,19.37406864571424,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,4,2,0,0,1,8,4,0,1143,105603.427512841,0,184299.1385614853,89091.81861188271,2069.463958030904 -16817,20769,37819,37820,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.729887611677537,8.757461560827888,0,31,-11,-58.32142666907382,0,2,1,2019,13,1,50,50,1,1,0,15.35487719453739,15.35487719453739,0,0,0,0,0,0,0,0,4.340450298121009,0,44.36,54.04,55.69,43.19,6.666666666666667,1,1,0,0,9,10,5,1,734.5,1005344.443419065,610521.0483810727,0,0,4060.755764696359 -16817,20769,37820,37819,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.282839917854023,8.553911536090913,31,11,88.4446617833749,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.405593251711313,8.238837595019554,55.69,43.19,44.36,54.04,8.333333333333334,1,1,0,0,7,10,5,1,734.5,1005344.443419065,610521.0483810727,0,0,4060.755764696359 -16818,20770,37821,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.170613477030535,6.357246550283864,0,0,-1037.44355010676,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.228382043860694,57.33,42.93,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,2168,222024.7480523053,125970.0225209933,0,0,1590.008693998298 -16819,20771,37822,37823,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.884870048954673,7.975154940306799,0,1,-2,120.1504903085444,-9,-9,-9,2019,14,2,42,0,1,2,0,9.388597003021673,9.388597003021673,0,0,0,0,2,0,0,0,0,0,43.42,62.33,54.1,59.11,6.666666666666667,1,1,0,1,3,5,4,1,750,15702.62755868376,0,0,0,2392.260636855166 -16819,20771,37823,37822,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.165446411675195,7.949688309239452,0,1,2,-28.46578930820047,-9,-9,-9,2019,10,2,39,0,1,2,0,8.746811298139072,8.746811298139072,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.42,62.33,8.333333333333334,1,1,0,0,3,5,4,1,750,15702.62755868376,0,0,0,2392.260636855166 +idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduHighestC4,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,scghq2_dv,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrss0to12,demAdultChildFlag,labWageHrly,labWageHrlyL1,contRateOPEe,contRateOPEr,contRatePP,careNeedFlag,careHrsFormal,careHrsInformal,careFormalX,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,wealthUnsecuredDebtLowValue,wealthUnsecuredDebtHighValue,yDispMonth +1,1,1,2,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,7.1446667,7.4427361,0,7,-5,-23.427813,0,-9,-9,2021,8,0,29,0,1,0,0,4.9598174,4.9598174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,59.91,50.77,6.666666666666667,1,1,0,0,11,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +1,1,2,1,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.3670883,8.0628557,0,7,5,39.522541,0,-9,-9,2021,12,0,37,37,1,0,0,13.023309,13.023309,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.91,50.77,52,54.51,5,1,1,0,0,8,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +1,1,3,-9,1,2,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.9696,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +2,2,4,5,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.0056987,7.3533659,46,4,9.5189924,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3828955,6.9407463,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,1048,235910.59,148402.48,0,0,0,0,2166.6978 +2,2,5,4,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.725832,6.2049422,46,-4,-71.862152,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0914321,5.7696462,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,4,12,2,1,1048,235910.59,148402.48,0,0,0,0,2166.6978 +3,3,6,7,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,6,2,0,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,1,0,867.5,79064.859,0,0,0,0,0,253.66443 +3,3,7,6,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,0,0,0,26,-2,0,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,53,55,8,2,3,0,0,0,8,1,0,867.5,79064.859,0,0,0,0,0,253.66443 +3,4,8,-9,7,6,1,1,22,0,0,0,2,2,-9,0,4,6.2687063,6.2386379,0,0,0,-1079.3403,0,2,2,2021,7,0,5,0,1,0,1,13.977149,13.977149,0,0,0,0,0,0,0,2,1,1,0,0,0,53.51,48.16,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,77,98707.297,0,0,0,0,0,508.92719 +3,5,9,-9,7,6,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-998.04761,0,3,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.048933759,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,677,33311.137,0,0,0,0,0,279.88953 +4,6,10,-9,12,13,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5566,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,11,-9,12,13,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.45105,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,12,13,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.7158332,7.7647395,0,20,1,-73.55349,0,2,3,2021,8,0,34,29,1,0,0,10.324546,10.324546,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,44.48,52.88,8.333333333333334,1,1,0,0,8,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,13,12,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.3768969,8.5276613,6.9216728,17,-1,-92.325661,0,2,2,2021,12,0,58,57,1,0,0,9.3683157,9.3683157,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3654065,44.48,52.88,51.41,56.15,5,1,1,0,0,8,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +5,7,14,15,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,34,1,-152.86072,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.6379943,0,32.87,62.52,46.42,56.97,10,1,1,0,0,12,11,2,1,1958,223228.13,178716.56,0,0,0,0,2881.5659 +5,7,15,14,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.3854151,7.5457435,0,34,-1,7.0383,0,2,2,2021,19,7,24,18,1,7,0,9.9594898,9.9594898,.05,.05,0,0,0,0,0,7,0,0,0,5.6603184,0,46.42,56.97,32.87,62.52,5,1,1,0,0,13,11,2,1,1958,223228.13,178716.56,0,0,0,0,2881.5659 +6,8,16,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.00067,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.6,48.58,-9,-9,5,1,1,0,0,10,5,2,1,372,-64442.23,0,129430.25,0,0,3278.8853,1120.8361 +7,9,17,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.9380155,8.1250563,0,0,0,-1071.3406,0,-9,-9,2021,10,0,42,38,1,0,0,7.1047163,7.1047163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.67,44.61,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,67,354018.28,9471.252,446947.97,20628.479,0,0,1637.9731 +7,10,18,-9,17,-9,1,1,29,0,0,0,1,1,-9,0,4,7.9587693,7.8341231,0,0,0,-919.37946,0,1,-9,2021,10,0,37,42,1,1,1,8.2773237,8.2773237,.05,.05,0,0,0,0,0,0,1,1,0,1.3355578,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,66,107802.98,-41618.84,0,0,0,0,2110.5061 +8,11,19,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.5054851,7.1141553,0,0,-1053.2111,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8356848,6.3311,47.87,32.33,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,426,260993.19,183487.17,272797.03,0,0,0,1030.4489 +9,12,20,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.4716129,8.2504044,0,0,-879.94287,0,3,3,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8988118,8.168849,60.95,27.12,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,431,379225.38,244084.44,8847.6689,38021.727,0,0,3251.8442 +10,13,21,22,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.0121446,7.4140167,12,0,-211.43073,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.99673396,6.9424539,38.76,38.17,57.51,47.91,3.333333333333333,1,1,0,0,6,4,2,1,330.5,507773.59,284867.78,175711.63,4619.5503,2852.814,5691.2607,1853.8816 +10,13,22,21,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.7278447,6.8806801,12,0,91.163818,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.242784,6.5591917,57.51,47.91,38.76,38.17,6.666666666666667,1,1,0,0,7,4,2,1,330.5,507773.59,284867.78,175711.63,4619.5503,2852.814,5691.2607,1853.8816 +11,14,23,25,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.6912613,8.7307568,7.6312847,5,4,133.96143,0,2,2,2021,8,1,30,38,1,1,0,20.761507,20.761507,.05,.05,0,0,0,0,0,0,1,1,0,7.8681831,0,47.21,55.3,54.1,59.11,8.333333333333334,1,1,0,0,8,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +11,14,24,-9,23,25,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-875.12421,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +11,14,25,23,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.7170544,8.5410872,0,5,-4,-17.872942,0,-9,-9,2021,7,0,38,40,1,0,0,20.023432,20.023432,.05,.05,0,0,0,0,0,0,1,1,0,3.0193622,0,54.1,59.11,47.21,55.3,8.333333333333334,1,1,0,0,6,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +12,15,26,-9,28,27,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.1299,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,15,27,28,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.3244438,8.6860323,0,9,2,-54.94878,0,-9,-9,2021,14,4,37,37,1,4,0,13.077152,13.077152,.05,.05,.05,0,0,0,0,2,1,1,0,.63304782,0,45.56,60.26,35.8,59.5,8.333333333333334,1,1,0,0,12,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,15,28,27,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.6378632,8.4472942,0,23,-2,-121.87408,0,2,2,2021,13,2,40,40,1,2,0,19.226509,19.226509,.05,.05,0,0,0,0,0,2,1,1,0,.62977451,0,35.8,59.5,45.56,60.26,8.333333333333334,1,1,0,0,12,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,16,29,-9,28,27,1,0,19,0,1,0,2,2,-9,0,4,6.9431624,7.0709333,0,0,0,-965.95819,0,1,2,2021,9,0,36,28,1,0,1,4.2052245,4.2052245,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,2649,-130189.92,0,0,0,0,0,-43.133598 +13,17,30,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1052.6726,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.86,43.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,381,85208.094,0,0,0,0,-11.706818,1176.205 +13,18,31,-9,30,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0247335,8.1987886,0,0,0,-934.93542,0,3,-9,2021,10,1,38,37,1,1,0,8.7596884,8.7596884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,-9,-9,1.666666666666667,1,1,0,0,12,12,4,0,545,53663.719,103845.7,0,0,0,0,1502.6451 +14,19,32,33,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-5,-67.717186,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,51.02,52.99,51.28,10,1,1,0,0,0,9,3,1,690,761378.75,342290.69,477587.19,0,0,0,3192.1992 +14,19,33,32,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,8.0278301,7.6154318,60,5,168.86992,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7658882,7.9376869,52.99,51.28,56.18,51.02,10,1,1,0,0,0,9,3,1,690,761378.75,342290.69,477587.19,0,0,0,3192.1992 +15,20,34,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1083.7632,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,25.47,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,318,-28211.998,0,0,0,0,0,726.33276 +16,21,35,38,-9,-9,1,0,37,2,3,0,1,1,-9,0,5,0,0,0,9,-2,-37.412472,-9,2,1,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.69,57.47,10,1,1,0,0,7,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,36,-9,35,38,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-952.88715,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,37,-9,35,38,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.009,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,38,35,-9,-9,1,1,39,2,3,0,1,1,-9,0,5,9.6255207,9.4773512,0,9,2,-63.319187,0,-9,-9,2021,9,0,50,50,1,0,0,29.618464,29.618464,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51.14,60.45,8.333333333333334,1,1,0,0,8,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,39,-9,35,38,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-923.65326,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +17,22,40,41,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.1179528,7.0292268,62,1,-13.484475,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,9.3104582,0,0,1,1,0,0,7.2005782,49.04,25.26,60.3,36.05,8.333333333333334,1,1,0,0,0,9,2,1,1570.5,1310728.5,106469.14,464698.88,0,0,0,2049.5127 +17,22,41,40,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.2051907,5.8437085,62,-1,-142.96463,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7813959,60.3,36.05,49.04,25.26,10,1,1,0,0,5,9,2,1,1570.5,1310728.5,106469.14,464698.88,0,0,0,2049.5127 +18,23,42,-9,45,43,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.439,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,43,45,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8937597,8.7860041,0,15,-2,-64.327217,0,-9,-9,2021,9,0,35,38,1,0,0,22.616468,22.616468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,10,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,44,-9,45,43,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.10974,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,45,43,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,7.6163707,7.857563,0,14,2,91.657921,0,1,1,2021,12,2,16,15,1,2,0,17.876883,17.876883,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +19,24,46,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,0,0,-983.23608,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5350826,0,61.83,36.54,-9,-9,3.333333333333333,1,1,1,1,0,2,1,1,1032,-67752.742,0,0,0,-23.377695,0,985.45667 +20,25,47,48,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.7270803,8.7776031,49,0,-13.052255,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8248873,8.7989798,48.87,58.55,42.95,54.48,10,1,1,0,0,0,9,4,1,258.5,1122095.1,744116.13,431234.06,0,0,0,3719.9995 +20,25,48,47,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,4.4758263,4.7453175,49,0,-16.327824,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3666353,42.95,54.48,48.87,58.55,8.333333333333334,1,1,0,0,0,9,4,1,258.5,1122095.1,744116.13,431234.06,0,0,0,3719.9995 +20,26,49,-9,48,47,1,1,37,0,0,0,1,1,-9,0,2,8.078887,7.922792,0,0,0,-1212.8579,0,1,1,2021,18,7,40,38,1,7,0,9.6803789,9.6803789,.05,.05,0,0,0,0,0,0,1,1,0,3.0998812,0,35.56,54.64,-9,-9,5,1,1,0,0,6,9,4,1,839,95814.602,22718.564,106150.2,50045.059,0,0,1324.2515 +21,27,50,51,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.280901,8.3641043,0,18,-2,-2.0110695,0,3,2,2021,6,0,35,2,1,0,0,14.891757,14.891757,.05,.05,0,0,0,0,0,0,1,1,0,7.8529687,0,59.46,46.99,46.88,58.45,8.333333333333334,2,3,0,0,10,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,51,50,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,6.9404769,7.1330419,0,19,2,103.53641,0,-9,-9,2021,7,0,12,5,1,0,0,12.125443,12.125443,.05,.05,0,0,0,0,0,0,1,1,0,7.6724176,0,46.88,58.45,59.46,46.99,8.333333333333334,2,3,0,0,8,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,52,-9,51,50,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-841.75171,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,53,-9,51,50,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.85284,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +22,28,54,55,-9,-9,1,0,36,0,1,0,1,1,-9,1,4,7.0805473,7.083199,0,7,-1,34.963184,0,-9,-9,2021,12,0,16,14,1,0,0,8.3153505,8.3153505,.05,.05,0,0,0,0,0,110,1,1,0,0,0,46.5,58.26,55.14,47.62,6.666666666666667,1,1,0,0,6,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +22,28,55,54,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,9.0071898,8.8334446,0,7,1,-119.11199,0,2,2,2021,8,1,38,35,1,1,0,25.635271,25.635271,.05,.05,0,0,0,0,0,0,1,1,0,7.1259265,0,55.14,47.62,46.5,58.26,6.666666666666667,1,1,0,0,9,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +22,28,56,-9,54,55,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.1571,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +23,29,57,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1028156,7.8493118,0,0,0,-965.20245,0,2,2,2021,12,0,30,30,1,0,0,12.320958,12.320958,.05,.05,0,0,0,0,0,27,1,0,1,0,0,44.46,52.89,-9,-9,6.666666666666667,1,1,0,0,15,10,4,1,905,29879.488,-62043.082,0,0,0,797.80841,1067.4572 +23,30,58,-9,57,-9,1,1,24,0,0,0,2,2,-9,0,3,7.3250103,7.34653,0,0,0,-1060.4674,0,2,-9,2021,13,1,38,0,1,1,1,6.443295,6.443295,0,0,0,0,0,0,0,0,1,0,1,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,1,1,10,3,1,437,-297875.84,0,0,0,0,0,1726.4099 +24,31,59,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,6.6734548,6.8647265,0,5,4,99.445915,0,-9,-9,2021,9,0,25,32,1,0,0,4.3046021,4.3046021,.05,.05,0,0,0,0,0,0,1,1,0,6.021524,0,52.77,55.33,48,56,6.666666666666667,1,1,0,0,12,11,2,1,257,455605.03,54427.359,140529.08,0,0,0,346.02591 +25,32,60,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.5574765,5.5474925,0,0,-965.60052,-9,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7244415,49.04,27.94,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,2535,-29451.162,92365.523,0,0,0,0,324.29214 +26,33,61,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.709764,7.8816032,0,0,0,-943.68396,0,3,3,2021,6,0,48,38,1,0,0,8.1240425,8.1240425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,11,3,0,416,-23742.748,29715.16,0,0,0,0,1331.92 +27,34,62,63,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.9186974,8.4496641,6.7808223,9,2,189.64149,0,3,3,2021,5,0,44,39,1,0,0,6.6167274,6.6167274,.05,.05,0,0,0,0,0,0,1,1,0,3.9109452,6.891468,60.29,52.11,49,48,8.333333333333334,1,1,0,0,7,6,3,1,721.5,155243.34,157809.95,0,0,0,1487.2599,2795.9585 +27,34,63,62,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-108.6721,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.230953,0,49,48,60.29,52.11,7,1,1,0,0,3,6,3,1,721.5,155243.34,157809.95,0,0,0,1487.2599,2795.9585 +28,35,64,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3428493,7.1415172,0,0,-1021.9205,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7693853,7.3564839,46.84,58.02,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,726,789464.94,179733.52,248465.8,0,0,0,2125.5396 +29,36,65,67,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.9973688,8.0571432,7,-6,53.280132,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7379446,7.5741334,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,4,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +29,36,66,-9,65,67,1,0,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1162.1625,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +29,36,67,65,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5572844,8.3992071,7,6,-33.448837,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7181797,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,0,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +30,37,68,70,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,7.6597958,7.5669527,0,22,-2,-5.2782068,0,1,1,2021,7,0,27,25,1,0,0,8.5849638,8.5849638,0,0,0,0,0,0,0,2,1,1,0,7.7162108,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +30,37,69,-9,68,70,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-928.4801,-9,1,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,0,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +30,37,70,68,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.6096191,8.8403978,0,22,2,83.90728,0,2,3,2021,6,0,37,37,1,0,0,15.13543,15.13543,.05,.05,0,0,0,0,0,0,1,1,0,2.7808855,0,62.49,55.09,57.16,56.15,5,1,1,0,0,10,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +31,38,71,72,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5677547,8.5499563,3.3672569,8,1,-44.504242,0,3,3,2021,11,0,58,47,1,0,0,10.978728,10.978728,0,0,0,0,0,0,0,0,0,0,0,3.0874586,2.6487968,38.34,62.12,57.51,47.91,8.333333333333334,1,1,0,0,9,8,5,0,817.5,2635545.5,2498312.3,323739.56,112631.55,0,0,7084.7095 +31,38,72,71,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.242589,9.4948921,0,8,-1,31.153032,0,-9,-9,2021,6,0,50,55,1,0,0,24.279535,24.279535,.05,.05,0,0,0,0,0,0,0,0,0,7.5655947,0,57.51,47.91,38.34,62.12,0,1,1,0,0,10,8,5,0,817.5,2635545.5,2498312.3,323739.56,112631.55,0,0,7084.7095 +32,39,73,74,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.6674733,6.3016033,11,4,40.177059,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993709,52,48,47.16,55.33,7,1,1,0,0,0,10,2,1,466.5,404499.75,214776.63,245450.66,0,7103.0654,0,1383.6589 +32,39,74,73,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,48,-4,90.000626,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,55.33,52,48,8.333333333333334,1,1,0,0,13,10,2,1,466.5,404499.75,214776.63,245450.66,0,7103.0654,0,1383.6589 +32,40,75,-9,74,73,1,0,33,0,0,0,2,2,-9,0,4,7.9658408,7.7218437,0,0,0,-905.36987,0,3,2,2021,11,0,40,40,1,2,0,8.2685852,8.2685852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,3,1,547,39539.035,127709.84,0,0,0,0,1296.543 +33,41,76,77,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.4131494,6.4356503,0,40,1,108.63799,0,3,3,2021,13,1,24,18,1,1,0,2.3115439,2.3115439,0,0,0,0,0,0,0,0,0,0,0,1.1695417,0,47.7,47.03,38.59,60.85,6.666666666666667,2,3,0,1,10,9,2,1,214.5,421516.13,-4865.5186,454697.38,59000.164,5427.8105,2301.2695,5968.3735 +33,41,77,76,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.5244627,6.6750507,0,40,-1,-77.700424,0,3,3,2021,8,0,50,50,1,0,0,1.783774,1.783774,.05,.05,0,0,0,0,0,0,0,0,0,8.9379358,0,38.59,60.85,47.7,47.03,8.333333333333334,1,1,0,0,11,9,2,1,214.5,421516.13,-4865.5186,454697.38,59000.164,5427.8105,2301.2695,5968.3735 +33,42,78,-9,76,77,1,1,21,0,0,0,2,2,-9,0,4,8.4150572,8.3244333,0,0,0,-1022.6503,0,2,3,2021,5,0,42,38,1,0,1,12.782836,12.782836,.05,.05,0,0,0,0,0,0,0,0,0,3.7726288,0,48.11,56.11,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,215,56765.238,10285.162,0,0,0,0,2062.446 +33,43,79,-9,76,77,1,0,28,0,0,0,1,1,-9,0,5,8.7533941,8.6430159,0,0,0,-1091.7856,0,2,3,2021,6,0,47,47,1,0,1,12.918082,12.918082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.6,44.82,-9,-9,8.333333333333334,4,2,0,0,6,9,5,1,1444,-82037.859,831.23901,0,0,50367.777,0,1749.7716 +34,44,80,-9,81,82,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.4733,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,81,82,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.8528008,7.703918,0,12,-1,-57.784622,0,2,2,2021,21,10,20,20,1,10,0,12.23604,12.23604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.83,57.6,35.79,57.01,6.666666666666667,1,1,0,0,8,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,82,81,-9,-9,1,1,35,1,2,0,2,2,-9,0,2,8.5266619,8.3689165,0,12,1,-26.55316,0,1,2,2021,21,9,43,43,1,9,0,11.812822,11.812822,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,35.79,57.01,27.83,57.6,5,1,1,0,0,11,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,83,-9,81,82,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.65808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +35,45,84,-9,86,85,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.0311,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +35,45,85,86,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.4259186,8.2643776,0,7,-2,-5.3042631,0,-9,-9,2021,13,2,2,3,1,2,0,241.06668,241.06668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,35.38,63.46,6.666666666666667,1,1,0,0,6,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +35,45,86,85,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.9809179,8.9258013,0,7,2,66.478622,0,2,3,2021,19,7,13,13,1,7,0,54.767479,54.767479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,63.46,48.87,58.55,6.666666666666667,1,1,0,0,12,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +36,46,87,88,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.7048368,5.8394685,29,0,59.51503,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.938416,6.2195396,40.55,44.93,36.18,48.3,8.333333333333334,1,1,0,0,0,7,2,0,266,370309.19,67602.398,313051.38,0,0,0,1793.9893 +36,46,88,87,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.094769,5.802453,32,0,-83.559151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1410828,36.18,48.3,40.55,44.93,8.333333333333334,1,1,0,0,0,7,2,0,266,370309.19,67602.398,313051.38,0,0,0,1793.9893 +37,47,89,90,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.4495926,7.3094325,0,6,0,68.14901,0,-9,-9,2021,11,0,54,52,1,1,0,2.6982388,2.6982388,0,0,0,0,0,0,0,0,1,1,0,5.8498645,0,51,46,62.6,34.53,7,1,1,0,0,1,7,4,1,813.5,1052940.5,334169.88,500186.94,0,0,0,2951.3828 +37,47,90,89,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.807394,7.9812474,48,9,-117.36343,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7705212,7.6236119,62.6,34.53,51,46,8.333333333333334,1,1,0,0,9,7,4,1,813.5,1052940.5,334169.88,500186.94,0,0,0,2951.3828 +38,48,91,-9,92,93,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-959.01984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,92,93,-9,-9,1,0,29,2,2,0,2,2,-9,0,4,6.8193827,6.8634911,0,4,1,-84.629066,0,2,2,2021,8,0,12,12,1,0,0,6.5294619,6.5294619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,8,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,93,92,-9,-9,1,1,28,2,2,0,2,2,-9,0,5,8.3485241,8.0840855,0,4,-1,130.92749,0,-9,-9,2021,7,0,45,35,1,0,0,11.352764,11.352764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,10,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,94,-9,92,93,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-999.34802,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +39,49,95,96,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.8102465,8.4965563,6.8126683,29,5,-26.357937,0,2,2,2021,8,0,15,10,1,0,0,40.451626,40.451626,.05,.05,0,0,0,0,0,0,0,0,0,8.4446793,6.8859606,54.77,55.87,51.81,57.22,8.333333333333334,1,1,0,0,11,1,5,1,320.5,564467.94,231070.75,104485.55,61925.688,7806.8584,6924.6953,6516.5713 +39,49,96,95,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3560066,8.4354258,0,29,-5,8.1153135,0,2,3,2021,8,0,14,20,1,0,0,31.791803,31.791803,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,57.22,54.77,55.87,1.666666666666667,1,1,0,0,7,1,5,1,320.5,564467.94,231070.75,104485.55,61925.688,7806.8584,6924.6953,6516.5713 +39,50,97,-9,96,95,1,0,25,0,0,0,1,1,-9,0,4,8.1155081,8.6317148,0,0,0,-1057.0217,0,2,2,2021,21,9,40,39,1,9,1,11.784389,11.784389,.05,.05,0,0,0,0,0,0,0,0,0,7.4200606,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,991,8783.3203,42492.484,0,0,0,0,2655.8916 +40,51,98,99,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,5.7987919,5.6936965,0,23,9,1.2963623,0,3,2,2021,8,0,5,5,1,0,0,6.3253531,6.3253531,0,0,0,0,0,0,0,0,1,1,0,0,0,60.98,30.25,39.43,48.14,8.333333333333334,1,1,0,0,7,5,2,0,384.5,-86857.602,0,0,0,1252.4497,0,1788.8602 +40,51,99,98,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.327744,7.2771239,0,23,0,-22.052811,0,2,2,2021,10,0,26,24,1,0,0,4.5333543,4.5333543,0,0,0,0,0,0,0,0,1,1,0,0,0,39.43,48.14,60.98,30.25,8.333333333333334,1,1,0,0,8,5,2,0,384.5,-86857.602,0,0,0,1252.4497,0,1788.8602 +40,52,100,-9,98,99,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1205.7,-9,2,2,2021,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,6.666666666666667,1,1,1,0,4,5,1,0,647,131038.62,0,0,0,0,0,0 +41,53,101,-9,104,102,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.514,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,102,104,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.985364,9.043148,0,8,0,-30.154591,0,-9,-9,2021,6,0,38,38,1,0,0,22.117825,22.117825,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.16,58.62,8.333333333333334,1,1,0,0,11,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,103,-9,104,102,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4517,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,104,102,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.8033562,7.7175317,0,8,0,-89.770264,0,-9,-9,2021,13,2,38,1,1,2,0,7.5734878,7.5734878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,54.79,55.86,8.333333333333334,1,1,0,0,11,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +42,54,105,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.8625412,8.8753004,0,0,-870.22394,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.1552267,8.9308395,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1094,505293.19,298213.88,293390.22,0,0,0,5047.2241 +43,55,106,107,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2995987,7.2169237,38,6,150.47977,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6361035,7.0621929,51.66,54.88,57.9,51.84,8.333333333333334,1,1,0,0,0,5,3,1,733,1047229.6,340794.19,270633.5,0,0,0,2344.1804 +43,55,107,106,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3500361,6.9913745,38,-6,6.9782305,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4963565,57.9,51.84,51.66,54.88,8.333333333333334,1,1,0,0,2,5,3,1,733,1047229.6,340794.19,270633.5,0,0,0,2344.1804 +44,56,108,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,3,8.1039104,8.3965082,0,0,0,-1043.0392,-9,-9,-9,2021,9,1,48,0,1,1,0,8.6544132,8.6544132,.05,.05,0,0,0,0,0,0,0,0,0,1.6525267,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,5,12,4,0,148,30183.381,32322.824,0,0,10920.187,0,1098.3265 +45,57,109,110,-9,-9,1,0,64,0,0,0,2,2,-9,1,3,0,5.6559892,5.8137784,11,-1,45.710644,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4919043,52.2,43.87,60.12,54.8,8.333333333333334,1,1,1,0,1,5,3,1,320.5,187533.84,121410.31,76669.828,0,0,0,2395.2427 +45,57,110,109,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8699274,7.795794,11,1,41.344475,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.13099,7.9246488,60.12,54.8,52.2,43.87,10,1,1,0,0,14,5,3,1,320.5,187533.84,121410.31,76669.828,0,0,0,2395.2427 +46,58,111,113,-9,-9,1,0,61,0,2,0,1,1,-9,0,5,8.6316786,8.8473692,0,22,7,-79.879227,0,1,1,2021,7,0,29,29,1,0,0,19.34996,19.34996,.05,.05,0,0,0,0,0,2,1,1,0,3.7959044,0,57.06,57.76,64.39,39.29,8.333333333333334,1,1,0,0,9,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,112,-9,111,113,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.12103,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,113,111,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.0196562,9.044651,0,22,-7,-22.610149,0,2,2,2021,7,0,33,60,1,0,0,31.382374,31.382374,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.39,39.29,57.06,57.76,8.333333333333334,2,3,0,0,8,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,114,-9,111,113,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7444,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +47,59,115,116,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.0570183,7.7090354,58,4,85.90918,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.21596,7.8560848,60.52,53.2,43.56,39.73,8.333333333333334,1,1,0,0,0,6,3,1,591,665504.88,342523.13,240483.58,0,0,0,2178.0339 +47,59,116,115,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.1868696,5.9068632,58,-4,48.806568,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.694355,5.7115483,43.56,39.73,60.52,53.2,8.333333333333334,1,1,0,0,0,6,3,1,591,665504.88,342523.13,240483.58,0,0,0,2178.0339 +48,60,117,118,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.8958316,7.7366848,3.7155504,7,1,35.884529,0,3,3,2021,24,11,30,30,1,11,0,9.9381199,9.9381199,0,0,.05,0,0,0,0,0,0,0,0,5.8265743,3.6000192,25.82,43.82,47.09,56.75,1.666666666666667,1,1,0,1,9,1,4,1,211.5,418660.03,197013.38,323045.19,0,8080.0571,0,2222.2266 +48,60,118,117,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.7023368,7.6964931,0,7,-1,23.174477,0,1,1,2021,15,3,25,25,1,3,0,9.3027315,9.3027315,0,0,.05,0,0,0,0,0,0,0,0,0,0,47.09,56.75,25.82,43.82,8.333333333333334,1,1,0,0,6,1,4,1,211.5,418660.03,197013.38,323045.19,0,8080.0571,0,2222.2266 +49,61,119,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.90167,0,-9,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,13.17,37.63,-9,-9,0,2,3,0,0,0,6,1,0,187,-203011.52,0,0,0,0,0,868.26239 +50,62,120,121,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.5120397,7.3701968,7.0848613,31,-6,-.6477173,0,3,3,2021,8,0,4,5,1,0,0,18.255857,18.255857,0,0,0,0,0,0,0,0,1,1,0,7.752326,6.730587,42.29,51.8,55.79,52.62,10,1,1,0,0,10,4,3,1,1477,205394.08,81486.992,212092.34,0,0,0,3357.9238 +50,62,121,120,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.5240531,7.7613454,10,6,121.4649,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4751282,55.79,52.62,42.29,51.8,10,1,1,0,0,4,4,3,1,1477,205394.08,81486.992,212092.34,0,0,0,3357.9238 +51,63,122,123,-9,-9,1,1,43,0,1,0,2,2,-9,0,1,8.6158915,8.7571154,0,7,2,-34.508427,0,3,2,2021,14,2,60,70,1,2,0,12.560628,12.560628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.1,36.97,35.28,47.77,5,1,1,0,0,10,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +51,63,123,122,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.4585109,7.4908438,0,21,-2,-37.84914,0,3,3,2021,13,2,30,23,1,2,0,7.8736005,7.8736005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.28,47.77,35.1,36.97,6.666666666666667,1,1,0,0,10,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +51,63,124,-9,123,122,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.15179,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,44.42,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +52,64,125,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,3,0,7.8630204,7.8067689,0,0,-939.58734,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2122207,0,33.66,61.57,-9,-9,5,1,1,0,0,1,10,3,0,526,177670.02,-156767.7,0,0,6367.0205,0,1005.6615 +53,65,126,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.5289,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40,30.63,-9,-9,5,1,1,0,1,4,12,1,0,619,-121247.6,0,0,0,0,0,1179.8108 +54,66,127,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1048.4063,0,2,1,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.44,23.66,-9,-9,1.666666666666667,4,2,0,1,0,8,2,0,294,83024.242,0,0,0,0,5598.2642,1541.3114 +55,67,128,-9,131,129,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-852.76508,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,129,131,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.6959715,8.6575985,0,11,6,-23.69397,0,2,2,2021,7,0,43,79,1,0,0,15.96422,15.96422,.05,.05,.05,0,0,0,0,0,1,1,0,5.4747972,0,54.2,57.49,51.14,60.45,8.333333333333334,1,1,0,0,13,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,130,-9,131,129,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.93518,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,131,129,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,7.660336,7.9297709,0,11,-6,-66.740288,0,2,2,2021,10,0,30,30,1,0,0,9.8128319,9.8128319,0,0,0,0,0,0,0,0,1,1,0,3.9051154,0,51.14,60.45,54.2,57.49,5,1,1,0,0,13,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +56,68,132,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,9.444459,9.928607,0,0,-878.35028,0,2,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.2790775,9.1610413,47.9,45.39,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,289,216742.78,0,127827.41,0,0,0,9057.498 +57,69,133,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1051.3622,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.43,41.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,648,135503.67,0,0,0,0,0,1236.587 +58,70,134,135,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7355452,8.777029,0,35,0,-11.006061,0,3,3,2021,9,0,46,46,1,0,0,14.612814,14.612814,.05,.05,0,0,0,0,0,0,0,0,0,2.5240996,0,44.75,56.39,39.33,58.88,6.666666666666667,1,1,0,0,13,13,5,1,544.5,505921.84,253303.88,187066.75,18676.699,10935.465,3946.0427,3911.4368 +58,70,135,134,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.9629474,7.7778754,0,35,0,-31.456638,0,2,3,2021,9,0,40,42,1,0,0,6.6716132,6.6716132,.05,.05,0,0,0,0,0,27,0,0,0,0,0,39.33,58.88,44.75,56.39,8.333333333333334,1,1,0,0,13,13,5,1,544.5,505921.84,253303.88,187066.75,18676.699,10935.465,3946.0427,3911.4368 +58,71,136,-9,135,134,1,1,29,0,0,0,1,1,-9,0,4,8.8331795,8.8565092,0,0,0,-967.94983,0,2,2,2021,11,0,40,38,1,0,1,20.634977,20.634977,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,42.41,54.81,-9,-9,1.666666666666667,1,1,0,0,11,13,5,1,121,304856.47,118247.41,137631.39,143480.61,50151.711,0,2582.0266 +58,72,137,-9,135,134,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-956.5932,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.78,53.03,-9,-9,3.333333333333333,1,1,0,0,9,13,1,1,3491,0,0,0,0,0,0,-684.9397 +59,73,138,140,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,5,-3,50.432392,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,139,-9,138,140,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.52216,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,140,138,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.9376755,9.0484324,0,5,3,-3.2956443,0,2,2,2021,9,0,48,40,1,0,0,20.420515,20.420515,.05,.05,0,0,0,0,0,0,1,1,0,6.5803485,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,141,-9,138,140,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.1278,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +60,74,142,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,7.7168956,7.7866821,0,0,0,-1008.2978,-9,2,-9,2021,14,2,66,0,1,2,0,4.0034504,4.0034504,0,0,0,0,0,0,0,0,1,1,0,0,0,30.91,43.27,-9,-9,5,1,1,0,0,12,9,3,1,898,101622.48,61597.855,0,0,0,0,926.79913 +60,75,143,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,8.3223276,7.7992349,0,0,-878.94061,-9,3,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,14.5,1,1,0,.36017811,8.1345625,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,599,1808583,840262.31,357775.41,0,0,0,1938.3405 +61,76,144,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.7554221,6.070528,0,0,-994.30127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.317245,3.0092053,18.869631,0,1,1,0,0,6.0864439,70.37,24.31,-9,-9,10,1,1,0,0,0,6,2,0,530,289700.22,65490.164,242197.56,0,0,0,1604.1521 +62,77,145,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.14801,1,-9,-9,2021,13,1,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7234612,0,38.52,51.4,-9,-9,5,1,1,0,0,4,12,2,1,839,117252.67,0,0,0,0,0,510.95721 +63,78,146,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1030.4498,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34,31,-9,-9,1.666666666666667,1,1,1,1,0,2,1,0,373,-75484.336,0,0,0,-375.84677,0,1238.8436 +64,79,147,-9,150,149,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.25012,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,148,-9,150,149,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.99146,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,149,150,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.3116436,8.477437,0,7,0,-17.881922,0,2,2,2021,10,0,40,38,1,1,0,13.155406,13.155406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,54.79,55.86,7,1,1,0,0,1,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,150,149,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.8010488,7.5323749,0,7,0,61.102829,0,2,2,2021,10,0,32,32,1,0,0,7.2766886,7.2766886,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49,58,3.333333333333333,1,1,0,0,9,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +65,80,151,-9,152,153,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.0775,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +65,80,152,153,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.4238024,8.7566242,2.964642,3,0,-40.116222,-9,-9,-9,2021,8,0,55,0,1,0,0,9.8084555,9.8084555,.05,.05,0,0,0,0,0,0,1,1,0,6.0648956,0,64.47,43.21,51.24,58.84,8.333333333333334,1,1,0,0,13,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +65,80,153,152,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.9266081,8.5630836,0,3,0,30.157534,0,-9,-9,2021,13,1,37,37,1,1,0,23.222372,23.222372,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,64.47,43.21,8.333333333333334,1,1,0,0,6,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +66,81,154,155,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.0804291,9.2641449,0,3,0,63.13929,0,-9,-9,2021,18,7,43,45,1,7,0,32.314926,32.314926,0,0,0,0,0,0,0,0,0,0,0,7.2691894,0,44.02,39.06,54.63,58.83,5,1,1,0,0,2,8,5,1,559,10460223,2326911.8,2022498.4,0,0,0,6457.0771 +66,81,155,154,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.2735529,9.4652681,0,3,9,-64.235352,0,2,-9,2021,7,0,40,40,1,0,0,31.410767,31.410767,0,0,0,0,0,0,0,0,0,0,0,4.1621614,0,54.63,58.83,44.02,39.06,8.333333333333334,1,1,0,0,9,8,5,1,559,10460223,2326911.8,2022498.4,0,0,0,6457.0771 +67,82,156,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1047.8198,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45,39,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,403,-245732.69,0,0,0,0,0,1009.4355 +68,83,157,158,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6474018,8.6914015,0,7,-3,-56.868137,0,2,3,2021,11,0,38,41,1,0,0,14.147161,14.147161,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.33,55.93,6.666666666666667,1,1,0,0,8,12,5,1,1054.5,779780.63,526529.38,209293.16,0,3831.0591,0,4680.9688 +68,83,158,157,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.5771284,8.9531612,0,7,3,28.283775,0,3,3,2021,11,0,42,45,1,0,0,17.956255,17.956255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,46.08,57.2,6.666666666666667,1,1,0,0,8,12,5,1,1054.5,779780.63,526529.38,209293.16,0,3831.0591,0,4680.9688 +69,84,159,160,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.1284504,8.511775,0,13,3,-79.749199,0,3,3,2021,6,0,37,37,1,0,0,11.24271,11.24271,.05,.05,0,0,0,0,0,0,0,0,0,3.7921751,0,57.16,56.15,51,52.08,8.333333333333334,1,1,0,0,10,6,5,1,162,320197.72,114831.73,181587.41,94759.75,0,2492.7356,3591.7246 +69,84,160,159,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4222727,8.5784187,0,13,-3,148.31644,0,2,2,2021,8,0,37,37,1,0,0,18.237738,18.237738,0,0,0,0,0,0,0,0,0,0,0,2.5609193,0,51,52.08,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,162,320197.72,114831.73,181587.41,94759.75,0,2492.7356,3591.7246 +70,85,161,162,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,43,1,89.53334,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,33.73592,0,0,1,1,0,0,0,61.8,21.86,60.29,52.11,6.666666666666667,1,1,0,0,6,7,2,1,918.5,153804.27,227232.09,0,0,0,0,2238.5771 +70,85,162,161,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9964728,6.7316666,11,-1,99.610199,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.1004024,6.7526078,60.29,52.11,61.8,21.86,8.333333333333334,1,1,0,0,0,7,2,1,918.5,153804.27,227232.09,0,0,0,0,2238.5771 +71,86,163,164,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.277997,8.2625074,8,0,-9.1422043,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4587271,8.3860359,51,48,60.87,44.96,7,1,1,0,0,0,9,5,1,941,3268306.5,1632559,731819.38,0,0,0,3945.5491 +71,86,164,163,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9044113,8.7156601,7.4622655,43,0,-20.488569,0,2,2,2021,9,0,14,22,1,0,0,22.216448,22.216448,0,0,0,0,0,0,0,2,1,1,0,5.6012845,7.6906281,60.87,44.96,51,48,8.333333333333334,1,1,0,0,11,9,5,1,941,3268306.5,1632559,731819.38,0,0,0,3945.5491 +71,87,165,-9,164,163,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-941.45026,0,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,2738,0,0,0,0,0,0,551.01611 +72,88,166,167,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.3737116,8.7635336,0,2,4,53.550621,0,-9,-9,2021,9,0,60,50,1,0,0,9.9069185,9.9069185,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.37,57.28,8.333333333333334,1,1,0,0,5,6,5,0,885.5,85972.344,0,0,0,18833.23,0,6273.2939 +72,88,167,166,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,9.5140028,9.5431042,0,2,-4,-5.2511463,-9,-9,-9,2021,10,0,31,0,1,0,0,47.083305,47.083305,0,0,0,0,0,0,0,0,0,0,0,3.4868083,0,43.37,57.28,54.79,55.86,6.666666666666667,1,1,0,0,3,6,5,0,885.5,85972.344,0,0,0,18833.23,0,6273.2939 +73,89,168,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1073.6722,0,2,2,2021,7,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.99,44.45,-9,-9,6.666666666666667,1,1,0,0,5,9,1,0,914,-46493.586,0,0,0,0,0,498.4743 +74,90,169,-9,170,171,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.80304,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +74,90,170,171,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.570466,8.692894,0,11,-5,-133.31566,0,1,2,2021,12,1,6,6,1,1,0,86.308464,86.308464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,40.75,58.26,6.666666666666667,1,1,0,0,10,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +74,90,171,170,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.741169,9.1711988,0,11,5,-66.21328,0,3,3,2021,11,0,38,38,1,2,0,22.910425,22.910425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,40.71,62.41,6,1,1,0,0,11,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +75,91,172,-9,175,173,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1040.1617,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,173,175,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.9568434,8.7345095,0,11,-2,1.0614092,0,-9,-9,2021,7,0,38,36,1,0,0,18.571289,18.571289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,48.28,60.18,8.333333333333334,1,1,0,0,12,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,174,-9,175,173,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1072.0439,-9,2,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,57.19,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,175,173,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,23,2,-92.953323,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.5292443,0,48.28,60.18,58.32,50.22,6.666666666666667,1,1,0,0,1,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +76,92,176,179,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,0,0,0,2,-4,20.969593,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,34.21,51.94,7,3,4,0,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,177,-9,176,179,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,178,-9,176,179,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.0579,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,179,176,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,7.8939772,7.6465111,0,2,4,220.58089,-9,3,2,2021,12,0,47,0,1,0,0,5.9175382,5.9175382,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,48,57,3.333333333333333,3,4,0,1,10,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,180,-9,176,179,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.49,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +77,93,181,182,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.6402903,7.7514482,11,-8,44.709145,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3025546,7.6855068,51.14,60.45,63.25,37.54,8.333333333333334,1,1,0,0,8,5,4,1,276,1877750.3,1039247.5,445353,0,0,0,2961.6206 +77,93,182,181,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1549978,8.3375015,11,8,2.2620695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0512691,8.1579523,63.25,37.54,51.14,60.45,8.333333333333334,1,1,0,0,0,5,4,1,276,1877750.3,1039247.5,445353,0,0,0,2961.6206 +78,94,183,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3940849,6.1837592,0,0,-1150.3248,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4737861,0,0,1,1,0,2.5746806,6.3766522,61.06,28.91,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,340,26863.836,197051.98,201982.45,0,0,0,1407.9692 +79,95,184,185,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-11.171073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.697762,0,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,6,7,2,1,960,596793.19,87013.859,485129.47,0,0,0,2445.3232 +79,95,185,184,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.1527591,6.2872767,6,1,23.756487,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.634357,6.3070822,54.2,57.49,55.96,49.93,10,1,1,0,0,4,7,2,1,960,596793.19,87013.859,485129.47,0,0,0,2445.3232 +80,96,186,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9322562,8.3427114,0,0,0,-819.96289,0,2,2,2021,9,0,40,37,1,0,0,11.49858,11.49858,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.63,50.99,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,505,85137.836,31915.822,0,0,0,0,1401.2437 +81,97,187,-9,190,189,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8685,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,188,-9,190,189,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.3346,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,189,190,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0158129,8.9571161,0,5,-4,57.442677,0,-9,-9,2021,12,1,48,50,1,1,0,20.516071,20.516071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,56.48,57.06,57.76,8.333333333333334,1,1,0,0,11,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,190,189,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.2462435,8.6598568,5.7316208,5,4,46.020844,0,2,2,2021,10,2,31,30,1,2,0,20.353191,20.353191,0,0,0,0,0,0,0,0,1,1,0,5.4673834,0,57.06,57.76,47.62,56.48,8.333333333333334,1,1,0,0,10,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +82,98,191,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9236541,8.1186085,0,0,0,-1038.557,0,-9,2,2021,12,0,32,34,1,0,0,10.185215,10.185215,0,0,0,0,0,0,0,2,0,0,0,0,0,52.31,40.62,-9,-9,6.666666666666667,1,1,0,0,15,5,3,0,808,-196411.92,0,0,0,0,0,1080.3922 +83,99,192,193,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.5105166,7.6718569,0,9,4,-75.838577,0,-9,-9,2021,9,1,25,30,1,1,0,8.9460297,8.9460297,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,43.42,62.33,8.333333333333334,1,1,0,1,13,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +83,99,193,192,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.5440025,8.6964731,0,9,-4,45.803616,0,1,1,2021,11,2,49,54,1,2,0,12.333047,12.333047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,60.29,52.11,5,2,3,0,1,11,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +83,99,194,-9,192,193,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.8679,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +84,100,195,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.587842,7.8467035,0,0,0,-963.25421,0,-9,2,2021,13,3,42,35,1,3,0,5.2806664,5.2806664,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.13,59.25,-9,-9,8.333333333333334,1,1,0,0,4,7,3,0,902,189777.94,83228.5,0,0,0,0,1068.6736 +85,101,196,-9,-9,197,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1056.0005,-9,-9,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,0,1,1,0,0,0,13,1,0,983,35524.32,0,0,0,0,0,1504.4709 +85,101,197,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5781,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,13,1,0,983,35524.32,0,0,0,0,0,1504.4709 +86,102,198,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-950.83655,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,74.110588,0,636.39301,0,1,1,0,0,0,37.75,20.27,-9,-9,5,1,1,0,0,0,1,1,1,1680,26507.73,0,0,0,0,0,913.14056 +87,103,199,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1333542,6.98879,0,0,-941.15741,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7421455,7.0751805,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,630,-3305.4966,42351.293,0,0,0,0,1012.9073 +88,104,200,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,6.8483858,6.7171974,0,0,-968.60602,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,5.496717,0,38.168068,0,1,1,0,3.1611023,6.8848772,42.44,20.53,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,664,406256.31,140906.52,123308.27,0,0,0,816.66272 +89,105,201,-9,202,203,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.98883,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,202,203,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.7532701,7.8697124,0,7,-12,22.758909,0,2,2,2021,15,5,24,24,1,5,0,13.474652,13.474652,0,0,0,0,0,0,0,2,1,1,0,0,0,46.16,58.62,54.62,53.53,6.666666666666667,1,1,0,0,8,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,203,202,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0475674,7.8565149,0,7,12,14.537699,0,-9,-9,2021,24,12,40,40,1,12,0,7.4435124,7.4435124,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.62,53.53,46.16,58.62,3.333333333333333,1,1,0,0,7,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,204,-9,202,203,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.01971,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +90,106,205,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0804958,7.7612796,0,0,0,-1069.389,-9,2,2,2021,13,1,31,0,1,1,0,12.321555,12.321555,0,0,0,0,0,0,0,0,0,0,0,0,0,30.01,47.46,-9,-9,3.333333333333333,1,1,0,1,12,10,4,1,146,234527.13,31734.5,93183.578,0,0,3553.0798,391.73257 +91,107,206,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.6999297,7.7764831,6.3118706,0,0,-1035.2887,0,-9,-9,2021,6,0,20,20,1,0,0,9.2504358,9.2504358,.05,.05,0,0,0,0,0,0,0,0,0,3.4359546,6.5950718,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,15,2,3,1,165,15604.521,5325.7988,0,0,0,0,526.89258 +92,108,207,208,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,4.6413813,4.5843678,34,-2,-7.0916166,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.732655,57.16,56.15,54.37,44.27,10,1,1,0,0,0,2,3,1,442,1580269.5,948912,410822.88,0,0,0,3324.4434 +92,108,208,207,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.0137949,8.2665691,34,2,-77.124634,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2789531,7.9038868,54.37,44.27,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,442,1580269.5,948912,410822.88,0,0,0,3324.4434 +93,109,209,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4741549,8.0977678,7.4356689,0,0,-1000.4613,0,3,3,2021,6,0,21,21,1,0,0,10.993184,10.993184,.05,.05,0,0,0,0,0,0,1,1,0,3.9462085,7.6861081,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1263,238196.89,3650.4663,0,0,-445.60321,1922.9678,3071.8662 +94,110,210,211,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.7962685,8.5858679,12,3,-31.785387,0,2,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.8064346,8.5441561,46.61,56.93,46.08,57.2,6.666666666666667,1,1,0,0,8,12,4,1,489,660784.38,212254.97,84554.953,0,0,0,3216.8635 +94,110,211,210,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,-3,28.502512,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5212698,0,46.08,57.2,46.61,56.93,8.333333333333334,1,1,0,0,8,12,4,1,489,660784.38,212254.97,84554.953,0,0,0,3216.8635 +95,111,212,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.6464825,8.7508345,0,0,0,-922.87567,0,2,2,2021,12,1,37,37,1,1,0,19.323355,19.323355,.05,.05,0,0,0,0,0,27,0,0,0,5.1388788,0,47.36,41.27,-9,-9,3.333333333333333,1,1,0,0,8,13,5,1,524.5,227576.19,131838.28,179126.78,102212.12,0,0,2618.7397 +95,111,213,-9,212,-9,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-987.66925,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,5,1,524.5,227576.19,131838.28,179126.78,102212.12,0,0,2618.7397 +96,112,214,216,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,6.5321956,6.3483658,0,7,4,7.0046067,0,2,2,2021,10,0,50,60,1,0,0,2.0018303,2.0018303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.29,49.04,36.77,36.73,5,1,1,0,0,11,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +96,112,215,-9,216,214,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.8115,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +96,112,216,214,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.8341956,6.8884015,0,7,-4,69.068428,0,-9,-9,2021,18,6,11,11,1,6,0,7.6951227,7.6951227,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,36.73,43.29,49.04,3.333333333333333,1,1,0,0,5,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +97,113,217,218,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1136599,8.190136,6,11,-67.209358,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1531746,7.9655476,54.2,57.49,40.07,57.25,8.333333333333334,1,1,0,0,0,10,5,1,606,2372661.5,1748544,514826.84,0,0,0,11852.453 +97,113,218,217,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,9.906352,9.6117554,6,-11,-43.136978,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.264351,9.884984,40.07,57.25,54.2,57.49,8.333333333333334,1,1,0,0,0,10,5,1,606,2372661.5,1748544,514826.84,0,0,0,11852.453 +98,114,219,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,4,7.4895639,7.3734832,0,0,0,-1111.5914,0,-9,-9,2021,13,3,36,0,1,3,0,5.7780218,5.7780218,0,0,0,0,0,0,0,0,1,1,0,0,0,40.06,58.7,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,503,-82415.438,0,0,0,0,0,1645.99 +98,114,220,-9,219,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.84686,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,503,-82415.438,0,0,0,0,0,1645.99 +99,115,221,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.6284599,4.7074685,0,0,-1025.979,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,12.651058,0,0,1,1,0,0,4.5665383,47.32,17.81,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,858,183042.97,0,151237.22,0,0,0,2098.5825 +100,116,222,223,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7384191,7.9641943,59,2,43.40168,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.553771,8.2209101,57.92,51.82,64.23,39.15,10,1,1,0,0,0,8,3,1,399.5,666765,490667.09,181880.14,0,-572.97113,0,2824.4419 +100,116,223,222,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.2648888,5.7237692,6,-2,147.923,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4236431,64.23,39.15,57.92,51.82,8.333333333333334,1,1,0,0,0,8,3,1,399.5,666765,490667.09,181880.14,0,-572.97113,0,2824.4419 +101,117,224,-9,225,226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8776,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,225,226,-9,-9,1,0,42,0,3,0,3,3,-9,0,5,9.1609478,9.2651768,4.9462008,4,-10,-40.093002,0,-9,-9,2021,11,0,30,37,1,0,0,32.359989,32.359989,.05,.05,0,0,0,0,0,2,1,1,0,5.5806561,0,35.05,62.72,51.74,47.77,6.666666666666667,1,1,0,0,13,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,226,225,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.1091852,8.978158,0,4,10,-110.43932,0,3,2,2021,7,0,40,43,1,0,0,22.348289,22.348289,.05,.05,.05,0,0,0,0,0,1,1,0,6.76548,0,51.74,47.77,35.05,62.72,8.333333333333334,1,1,0,0,12,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,227,-9,225,226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.3468,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +102,118,228,229,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5661588,7.5307999,7,2,-109.7329,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.3724117,7.8971815,59.29,49.68,45.46,52.15,8.333333333333334,1,1,0,0,0,2,3,1,667.5,941131.75,399452.5,178456.28,0,0,0,1144.7533 +102,118,229,228,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-20.631275,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.0056641,0,45.46,52.15,59.29,49.68,6.666666666666667,1,1,0,0,3,2,3,1,667.5,941131.75,399452.5,178456.28,0,0,0,1144.7533 +103,119,230,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.6683836,6.9282179,0,0,-1049.6118,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,1.8989476,0,19.83428,0,1,1,0,.9593516,6.9247985,64.09999999999999,17.84,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,308,383335.66,153576.56,265727.56,0,0,0,906.70972 +104,120,231,232,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.874403,6.7083611,10,-2,118.48566,0,2,2,2021,8,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6784148,6.7950287,57.16,56.15,45.8,54.59,8.333333333333334,1,1,0,0,11,12,4,1,1168,1132040.4,881523.56,0,0,-59.624359,0,2046.3203 +104,120,232,231,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.4450903,8.4819813,0,10,2,27.930904,0,-9,-9,2021,12,1,62,60,1,1,0,8.1437511,8.1437511,0,0,0,0,0,0,0,7,0,0,0,0,0,45.8,54.59,57.16,56.15,6.666666666666667,1,1,0,0,12,12,4,1,1168,1132040.4,881523.56,0,0,-59.624359,0,2046.3203 +105,121,233,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,7.3368444,7.2952757,0,0,0,-934.79553,0,3,3,2021,6,0,40,30,1,0,0,3.8513899,3.8513899,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,14,12,3,1,209,477294.47,145235.41,80150.969,0,0,0,826.58923 +106,122,234,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,8.592062,8.5388737,0,0,0,-875.82587,0,3,-9,2021,14,3,43,40,1,3,0,16.77499,16.77499,.05,.05,0,0,0,0,0,14.5,0,0,0,.94074148,0,43.63,27.66,-9,-9,1.666666666666667,1,1,0,0,9,8,5,0,325,323685.16,369804.5,177542.59,0,0,0,1864.0186 +107,123,235,236,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.281085,8.3481865,0,13,-1,-49.187977,0,2,3,2021,6,0,37,37,1,0,0,14.560739,14.560739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.87,58.55,8.333333333333334,1,1,0,0,15,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,236,235,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.3594627,8.5413122,0,13,1,53.73531,0,3,3,2021,8,0,50,47,1,0,0,11.716977,11.716977,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.87,58.55,6.666666666666667,1,1,0,0,15,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,237,-9,235,236,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1063.4503,1,2,2,2021,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7246335,0,29.99,59.47,-9,-9,5,1,1,0,0,0,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,238,-9,235,236,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.66333,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +108,124,239,240,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.1667414,8.3135118,0,7,0,51.702515,0,3,2,2021,12,4,30,32,1,4,0,13.705544,13.705544,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,55.65,62.39,56.71,3.333333333333333,1,1,0,0,8,10,4,1,296,186151.19,108507.8,108790,48008.59,10319.697,0,2120.3281 +108,124,240,239,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.342782,6.9781871,0,7,0,51.613411,0,-9,3,2021,5,0,26,22,1,0,0,7.0860424,7.0860424,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,40.47,55.65,6.666666666666667,1,1,0,0,8,10,4,1,296,186151.19,108507.8,108790,48008.59,10319.697,0,2120.3281 +108,125,241,-9,240,239,1,1,18,0,0,0,2,2,-9,0,5,7.8395066,8.1150122,0,0,0,-938.72101,0,2,3,2021,5,0,40,0,1,0,1,8.2743778,8.2743778,.05,.05,0,0,0,0,0,0,0,0,0,1.6763614,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,180,67879.813,16298.256,0,0,0,0,1549.0278 +109,126,242,243,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0037346,9.1056299,0,2,0,10.116804,-9,-9,-9,2021,10,0,40,0,1,1,0,19.106565,19.106565,.05,.05,0,0,0,0,0,0,0,0,0,.42177132,0,50,57,46.91,41.66,7,4,1,0,0,1,8,5,0,960.5,1262005.5,124920.5,1022562.3,0,0,0,4788.2661 +109,126,243,242,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.4607515,8.4419994,0,2,0,-11.940911,0,2,3,2021,13,4,40,37,1,4,0,14.801286,14.801286,0,0,0,0,0,0,0,0,0,0,0,.67134571,0,46.91,41.66,50,57,8.333333333333334,1,1,0,0,6,8,5,0,960.5,1262005.5,124920.5,1022562.3,0,0,0,4788.2661 +110,127,244,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.3100309,8.1777353,0,0,-1074.0629,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,6.2477951,0,43.256256,0,1,1,0,4.953238,8.4137793,57.83,34.46,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,1045,1168930.4,479485.72,312560.47,0,8497.79,0,2063.9768 +111,128,245,246,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.2147055,7.2593393,0,9,0,-10.659494,0,2,2,2021,15,4,16,16,1,4,0,11.291636,11.291636,.05,.05,0,0,0,0,0,2,1,1,0,.38329709,0,41.06,62.04,36.1,63.29,8.333333333333334,1,1,0,0,11,10,5,1,741,208374.03,125714.44,110521.94,17136.773,0,3953.0405,3852.9722 +111,128,246,245,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.1127729,9.1955843,0,9,0,81.89624,0,-9,-9,2021,7,0,47,43,1,0,0,20.747023,20.747023,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.1,63.29,41.06,62.04,8.333333333333334,1,1,0,0,6,10,5,1,741,208374.03,125714.44,110521.94,17136.773,0,3953.0405,3852.9722 +112,129,247,248,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5280046,8.6413794,0,5,-1,44.697681,0,-9,-9,2021,5,1,40,40,1,1,0,13.443436,13.443436,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,53.94,40.38,5,2,3,0,0,3,9,5,1,888.5,95983.375,121886.64,145780.8,79372.266,8596.5762,2119.2749,3608.8809 +112,129,248,247,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.6814432,8.1955881,0,5,1,-39.361889,0,1,1,2021,7,0,47,45,1,0,0,8.8343859,8.8343859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.94,40.38,41.17,59.31,6.666666666666667,2,3,0,0,10,9,5,1,888.5,95983.375,121886.64,145780.8,79372.266,8596.5762,2119.2749,3608.8809 +113,130,249,250,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,44,1,62.70948,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,59.55,17.35,10,1,1,0,0,2,1,3,1,913.5,1241459.5,589208.63,163041.83,0,0,0,1742.1587 +113,130,250,249,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.2046776,7.9774027,9,-1,64.618759,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3421125,8.0080538,59.55,17.35,60.3,46.58,6.666666666666667,1,1,0,0,1,1,3,1,913.5,1241459.5,589208.63,163041.83,0,0,0,1742.1587 +114,131,251,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-989.34149,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9943037,0,24.13,35.11,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,642,-20578.848,0,0,0,0,0,1191.4052 +115,132,252,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4421711,6.300827,0,0,-1064.6173,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2579288,6.4233017,43.91,31.92,-9,-9,5,1,1,0,1,0,7,2,1,335,202132.05,96260.398,82806.516,0,0,0,1113.9664 +115,133,253,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.8041778,8.2542152,0,0,-996.39429,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7937775,8.0398817,50.9,36.38,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,173,1200505.5,-128059.79,447126.84,0,0,0,1896.4355 +116,134,254,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.5530276,6.1681743,0,0,-947.0542,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5013084,6.1719809,27.49,26.97,-9,-9,5,1,1,0,0,0,11,2,1,473,275536.88,110995.09,129051.34,0,0,0,2194.6602 +117,135,255,-9,256,258,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.5901,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,256,258,-9,-9,1,0,35,0,2,0,3,3,-9,0,4,0,0,0,8,-2,30.365448,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.32,61.46,62.66,52.4,8.333333333333334,2,3,0,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,257,-9,256,258,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.6674,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,258,256,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2733593,8.5178566,0,8,2,27.605537,0,2,2,2021,7,1,75,55,1,1,0,6.6890888,6.6890888,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,36.32,61.46,0,2,3,0,0,6,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +118,136,259,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,7.0133719,7.3669209,0,0,-1006.3079,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,1.519713,0,0,1,1,0,0,7.2186456,61.04,28.88,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,2611,296506.22,32602.52,0,0,0,0,1141.4878 +119,137,260,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,0,7.3345757,6.9980149,0,0,-1059.606,1,-9,-9,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.978188,0,33.33,56.25,-9,-9,10,3,4,0,0,1,9,3,1,1188,-79296.313,25253.613,0,0,0,0,1401.2388 +119,138,261,262,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,48,-4,-36.291698,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.57,52.89,53,47,10,3,4,0,0,0,9,3,1,479,983144,424124.31,360908.5,0,0,0,2144.7412 +119,138,262,261,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5835791,7.6175609,11,4,-21.716145,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9826953,7.8142133,53,47,52.57,52.89,7,3,4,0,0,0,9,3,1,479,983144,424124.31,360908.5,0,0,0,2144.7412 +120,139,263,-9,265,267,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1056.0255,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,264,-9,265,267,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.2466,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,0,1,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,265,267,-9,-9,1,0,50,0,2,0,3,3,-9,1,4,0,0,0,28,-10,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.28,60.18,50,49,6.666666666666667,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,266,-9,265,267,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1030.2742,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,267,265,268,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,28,10,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48.28,60.18,7,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,140,268,-9,-9,-9,1,0,76,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1099.2361,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,41.980495,83.53009,395.11652,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,884,10678.209,0,93546.789,0,0,0,1544.6992 +120,141,269,-9,265,267,1,0,22,0,2,0,2,2,-9,0,4,7.6178708,7.4220915,0,0,0,-1080.0641,0,3,3,2021,12,0,35,35,1,2,1,9.1721067,9.1721067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,2,3,0,1,3,6,3,1,182,-63551.441,38950.152,0,0,4448.9819,10580.801,602.18622 +121,142,270,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.2551975,6.4758577,0,0,-943.41327,0,3,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,4.9071918,10.230532,47.71104,0,1,1,0,.86772662,6.4217343,43.61,16.94,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,500,-30621,29891.553,0,0,0,0,1191.4447 +122,143,271,-9,-9,-9,1,0,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1073.6694,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,59.93,34.85,-9,-9,5,1,1,0,0,0,13,1,0,251,-139289.14,0,0,0,0,0,767.7467 +123,144,272,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.5338087,7.6497111,0,0,0,-1126.1331,0,3,3,2021,23,10,38,38,1,10,0,7.0151715,7.0151715,0,0,0,0,0,0,0,0,0,0,0,0,0,34.01,44.48,-9,-9,3.333333333333333,1,1,0,0,7,5,3,0,538,217040.22,0,149538.63,12998.078,0,1731.2584,1393.7699 +124,145,273,274,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,37,5,-10.047707,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.5539749,0,49.35,27.68,55.36,51.57,8.333333333333334,1,1,0,0,0,1,2,1,319,882629.13,453303.06,143983.84,0,0,0,677.13708 +124,145,274,273,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.490756,6.5708737,37,-5,28.326931,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3645024,6.6256766,55.36,51.57,49.35,27.68,8.333333333333334,1,1,0,0,8,1,2,1,319,882629.13,453303.06,143983.84,0,0,0,677.13708 +125,146,275,279,-9,-9,1,1,47,0,3,0,2,2,-9,0,2,8.4243517,8.5679007,0,12,-2,-142.71588,0,3,3,2021,13,1,52,-9,1,1,0,12.401329,12.401329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.66,50.06,32.91,40.51,5,1,1,0,1,12,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,276,-9,279,275,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-953.34961,-9,1,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,277,-9,279,275,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.86487,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,278,-9,279,275,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-984.05725,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,279,275,-9,-9,1,0,49,0,3,0,1,1,-9,0,2,7.7281208,7.7451825,0,12,2,10.122446,0,-9,-9,2021,21,9,21,21,1,9,0,14.107921,14.107921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.91,40.51,39.66,50.06,3.333333333333333,1,1,0,0,12,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +126,147,280,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1073.9376,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,9.9736881,0,81.343681,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,6,4,1,1,952,-51846.844,0,0,0,0,0,1580.3627 +127,148,281,283,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.2766237,8.4278708,0,7,0,-18.57239,0,-9,-9,2021,11,0,47,55,1,0,0,8.7776299,8.7776299,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.32,50.38,52,54.51,8.333333333333334,1,1,0,0,10,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,282,-9,281,283,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.1118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,283,281,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.8053722,8.8325367,0,7,0,56.729797,0,-9,-9,2021,10,0,60,50,1,0,0,16.199409,16.199409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,41.32,50.38,8.333333333333334,1,1,0,0,13,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,284,-9,281,283,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.74353,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +128,149,285,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.1622248,7.8781147,0,0,0,-981.38104,0,2,2,2021,23,9,40,40,1,9,0,10.491093,10.491093,.05,.05,0,0,0,0,0,0,1,1,0,2.8320951,0,33.59,54.46,-9,-9,1.666666666666667,1,1,0,0,10,9,4,1,409,120800.68,123704.55,0,0,0,0,1425.4303 +129,150,286,287,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.8465171,7.0178299,55,-2,-25.236752,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6296921,54,46,50.03,49.92,8,1,1,0,0,0,10,2,0,514,110893.64,114689.51,0,0,464.08438,0,1254.5212 +129,150,287,286,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,55,2,29.318142,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,49.92,54,46,8.333333333333334,1,1,0,0,0,10,2,0,514,110893.64,114689.51,0,0,464.08438,0,1254.5212 +130,151,288,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.492342,7.3946695,0,0,0,-1060.3003,0,2,2,2021,12,0,35,35,1,0,0,5.4577327,5.4577327,.05,.05,0,0,0,0,0,0,0,0,0,1.9019505,0,41.89,46.99,-9,-9,3.333333333333333,1,1,0,0,8,1,3,1,2609,-13010.597,-80692.883,0,0,0,0,525.49561 +131,152,289,291,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.4057269,7.4068494,0,3,-1,13.789246,0,2,2,2021,18,6,25,24,1,6,0,7.3388414,7.3388414,0,0,0,0,0,0,0,0,1,1,0,0,0,43.49,45.06,48.87,58.55,10,1,1,0,0,7,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +131,152,290,-9,289,291,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0305,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +131,152,291,289,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,7.6854191,7.5823336,0,3,1,79.199989,0,-9,-9,2021,8,0,60,55,1,0,0,4.9443984,4.9443984,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,43.49,45.06,8.333333333333334,1,1,0,0,8,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +132,153,292,294,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.8162498,7.8430376,0,11,-2,-25.429409,0,2,3,2021,22,10,36,35,1,10,0,8.4131241,8.4131241,0,0,0,0,0,0,0,0,0,0,0,0,0,31.51,60.03,57.06,57.76,1.666666666666667,4,2,0,0,11,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +132,153,293,-9,292,294,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.28998,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +132,153,294,292,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,7.741508,8.078227,0,11,2,-63.2584,0,3,3,2021,6,0,35,38,1,0,0,8.9893808,8.9893808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,31.51,60.03,8.333333333333334,1,1,0,0,11,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +133,154,295,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5313215,7.6784277,6.1752353,0,0,-944.4704,0,-9,-9,2021,9,0,3,15,1,0,0,57.15099,57.15099,0,0,0,0,0,0,0,0,1,1,0,0,6.1444654,51.58,50.6,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,559,-255561.92,0,0,0,0,0,1819.2362 +133,155,296,-9,295,-9,1,1,20,0,0,0,2,2,-9,0,5,8.3473949,8.5189104,0,0,0,-1007.1749,0,2,-9,2021,16,3,60,50,1,3,1,10.731441,10.731441,0,0,0,0,0,0,0,0,1,1,0,0,0,44.09,36.67,-9,-9,3.333333333333333,1,1,0,0,3,5,5,1,2339,8568.0938,0,0,0,0,0,2977.2327 +133,156,297,-9,295,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1048.4751,-9,2,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,51.97,-9,-9,3.333333333333333,1,1,0,1,0,5,1,1,2336,-161604.27,0,0,0,0,0,0 +134,157,298,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,8.1708517,8.2818851,0,0,0,-884.60516,-9,2,1,2021,11,0,38,0,1,0,0,8.6003084,8.6003084,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,415,-60815.801,-16585.473,0,0,1025.7935,0,1444.4373 +135,158,299,-9,301,302,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2646,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,300,-9,301,302,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.89142,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,301,302,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.8816204,8.8560762,0,8,0,-6.6411204,0,-9,-9,2021,12,0,42,36,1,0,0,17.701782,17.701782,.05,.05,0,0,0,0,0,0,1,1,0,4.1806293,0,35.63,62.19,40.23,35.48,6.666666666666667,1,1,0,0,5,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,302,301,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.8327866,8.8822985,0,18,0,22.374264,0,2,2,2021,14,3,41,36,1,3,0,14.632872,14.632872,.05,.05,0,0,0,0,0,0,1,1,0,2.4850695,0,40.23,35.48,35.63,62.19,5,1,1,0,0,8,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +136,159,303,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.6576052,7.4008765,0,0,0,-1106.1243,-9,2,2,2021,12,0,35,0,1,0,0,7.3351455,7.3351455,.05,.05,0,0,0,0,0,0,0,0,0,2.8838041,0,50.05,39.37,-9,-9,1.666666666666667,1,1,0,0,9,11,3,1,1741,192462.34,133278.83,0,0,5.2162228,-377.54358,893.48181 +137,160,304,-9,-9,-9,1,0,58,0,1,0,1,1,-9,1,1,0,0,0,0,0,-928.40515,-9,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.24,30.98,-9,-9,5,2,3,0,0,0,7,1,1,286,122378.54,0,0,0,0,0,245.51204 +137,161,305,-9,307,306,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.7683,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,161,306,307,304,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2585049,8.2324123,0,2,7,114.97149,-9,3,3,2021,13,3,48,0,1,3,0,12.368058,12.368058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,62.49,55.09,10,2,3,0,0,11,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,161,307,306,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,0,0,0,2,-7,36.59417,-9,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.73,54.53,10,2,3,1,0,0,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,162,308,-9,304,-9,1,0,23,0,1,1,1,0,0,0,5,0,0,0,0,0,-1062.6797,-9,-9,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,62.56,-9,-9,10,2,3,0,0,2,7,1,1,697,11116.816,33468.406,0,0,0,0,0 +138,163,309,311,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.1291151,8.005928,0,10,0,172.15416,0,2,2,2021,14,3,45,40,1,3,0,9.5800648,9.5800648,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46,51,8.333333333333334,1,1,0,0,11,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +138,163,310,-9,311,309,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1171.9944,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +138,163,311,309,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3523664,8.5212851,0,10,0,-7.4789586,0,3,3,2021,12,0,39,38,1,2,0,14.222724,14.222724,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,54.2,57.49,7,2,3,0,0,1,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +139,164,312,-9,313,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.8693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,883,152177.58,0,249445.38,0,0,0,1720.408 +139,164,313,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.2452078,8.3383465,0,0,0,-991.85175,0,-9,-9,2021,7,0,37,37,1,0,0,14.414692,14.414692,0,0,0,0,0,0,0,0,1,1,0,7.2505546,0,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,883,152177.58,0,249445.38,0,0,0,1720.408 +140,165,314,315,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.7506595,7.6182394,0,6,2,-1.3871026,0,-9,-9,2021,11,3,25,25,1,3,0,11.128038,11.128038,.05,.05,0,0,0,0,0,0,0,0,0,2.4392688,0,39.64,62.95,27.44,30.98,8.333333333333334,1,1,0,0,9,2,4,1,722.5,545700.13,160576.56,251342.92,0,0,0,2586.3286 +140,165,315,314,-9,-9,1,0,45,0,0,0,1,1,-9,0,1,8.300909,8.0630999,0,6,-2,47.379768,0,-9,-9,2021,25,9,36,36,1,9,0,12.865793,12.865793,0,0,0,0,0,0,0,7,0,0,0,0,0,27.44,30.98,39.64,62.95,0,1,1,0,0,9,2,4,1,722.5,545700.13,160576.56,251342.92,0,0,0,2586.3286 +141,166,316,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.2415619,8.1855268,6.258975,0,0,-1019.4317,0,3,3,2021,28,12,30,38,1,12,0,14.726438,14.726438,.05,.05,0,0,0,0,0,0,1,1,0,5.745153,0,15.66,68.27,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,696,177817.48,82793.563,5605.5894,102632.05,0,0,1328.1704 +141,167,317,-9,316,-9,1,0,19,0,1,0,2,2,-9,0,3,7.8002677,7.7555456,0,0,0,-996.74249,0,2,-9,2021,11,0,38,37,1,0,1,8.3810644,8.3810644,0,0,0,0,0,0,0,0,1,1,0,2.1880248,0,41.71,49.71,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,741,-40163.703,0,0,0,0,0,1148.8541 +142,168,318,319,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,35,-10,7.0626631,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,46.4,45.84,7,1,1,0,0,0,9,2,0,153.5,288499.75,136491.81,211074.42,0,0,0,2200.3611 +142,168,319,318,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.7849121,6.711803,35,10,24.903727,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.5424929,46.4,45.84,49,48,8.333333333333334,1,1,0,0,0,9,2,0,153.5,288499.75,136491.81,211074.42,0,0,0,2200.3611 +142,169,320,-9,318,319,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.0059,0,2,3,2021,9,0,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,1,0,0,9,1,0,144,-108537.2,0,0,0,10047.764,3406.5637,0 +143,170,321,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.861124,8.6179676,0,6,6,-164.89841,0,3,3,2021,10,0,37,7,1,0,0,19.544659,19.544659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.83,48.56,44.72,57.73,10,1,1,0,0,12,2,5,1,319,188765.19,32724.363,120354.67,98262.922,0,-1322.6642,2298.4355 +143,171,322,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.7392235,8.6634007,0,6,-6,-33.668514,0,-9,-9,2021,8,0,37,37,1,0,0,14.308873,14.308873,.05,.05,0,0,0,0,0,0,0,0,0,3.4535356,0,44.72,57.73,52.83,48.56,8.333333333333334,1,1,0,0,14,2,5,1,449,135465.27,-59837.473,192373.5,131581.81,12643.447,0,2065.1221 +144,172,323,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2813654,8.2587767,0,0,0,-937.32434,-9,2,2,2021,11,2,37,0,1,2,1,11.470181,11.470181,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,63,-87174.07,79168.25,0,0,0,1521.4882,1344.3607 +145,173,324,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.687427,6.6784253,0,0,-1066.9032,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9085364,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1043,250281.55,145429.86,0,0,0,0,2706.7449 +146,174,325,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1062.6058,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,2.2842252,8.265481,24.408171,0,1,1,0,0,0,39.97,55.56,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,1532,431646.38,0,186081.77,0,0,0,1182.084 +147,175,326,327,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.6054068,8.7142239,11,-2,-23.390261,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7293024,8.901659,55.76,44.76,54.78,34.44,8.333333333333334,1,1,0,0,9,9,5,1,632.5,1627166.3,1223319,334215.25,0,6245.5977,0,4678.9463 +147,175,327,326,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.0895634,7.1879807,11,2,-116.77054,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,2.2608988,0,0,1,1,0,2.5433631,7.0186672,54.78,34.44,55.76,44.76,8.333333333333334,1,1,0,0,6,9,5,1,632.5,1627166.3,1223319,334215.25,0,6245.5977,0,4678.9463 +148,176,328,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0672903,6.1868596,0,0,-977.0719,0,2,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,.7129429,2.8964512,21.273003,0,1,1,0,0,5.9972816,33.33,22.86,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,5182,-223042.94,30108.74,0,0,0,0,-421.38678 +149,177,329,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9885416,5.6541357,0,0,-896.55798,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,5.543098,0,0,1,1,0,0,5.9087191,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,532,94155.125,120704.87,172562.94,0,0,0,539.00122 +150,178,330,331,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.0049567,6.9026089,0,29,-3,-13.462588,0,3,2,2021,7,0,20,21,1,0,0,5.7221546,5.7221546,0,0,0,0,0,0,0,0,0,0,0,6.949369,0,49.25,61.25,53,55,10,1,1,0,0,9,9,4,1,423.5,341192.41,113260.72,446391.31,119747.47,0,0,2943.0518 +150,178,331,330,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7553797,8.7655239,0,7,3,77.447662,0,-9,-9,2021,9,0,40,40,1,1,0,15.568717,15.568717,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.25,61.25,8,1,1,0,0,1,9,4,1,423.5,341192.41,113260.72,446391.31,119747.47,0,0,2943.0518 +150,179,332,-9,330,331,1,1,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-925.04895,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,337,274454,0,0,0,0,0,0 +151,180,333,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.6850996,6.9855194,0,0,-954.39166,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.4699285,0,26.432959,0,1,1,0,2.1526048,7.205195,52,47,-9,-9,7,1,1,0,0,0,6,3,0,535,489361.63,169045.45,278584.31,0,7060.2432,0,804.71295 +152,181,334,-9,-9,-9,1,0,24,0,1,0,1,1,-9,0,3,0,0,0,0,0,-974.5719,1,2,3,2021,6,0,0,47,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,1,6,2,1,428,106448.15,-139548.22,0,0,0,0,0 +153,182,335,336,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,6.9940457,7.319694,0,3,-1,116.6926,0,2,2,2021,14,3,24,40,1,3,0,5.9752684,5.9752684,0,0,0,0,0,0,0,0,0,0,0,.86157483,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,6,2,4,0,275,-121102.88,0,0,0,0,0,2801.6709 +153,182,336,335,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.3566227,8.114418,0,3,1,-85.49308,0,-9,-9,2021,6,0,48,45,1,0,0,10.865446,10.865446,0,0,0,0,0,0,0,0,0,0,0,5.912643,0,54.1,59.11,48.77,60.16,8.333333333333334,1,1,0,0,3,2,4,0,275,-121102.88,0,0,0,0,0,2801.6709 +154,183,337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-953.1947,-9,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.47,22.25,-9,-9,5,1,1,0,0,0,13,1,0,800,70496.203,0,0,0,0,-917.87579,2237.0474 +155,184,338,339,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,31,1,84.383331,0,-9,-9,2021,12,1,0,42,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,50.91,28.35,59.94,49.98,8.333333333333334,2,3,0,0,11,6,2,1,1129,610731.25,519247.75,132847.78,0,0,0,748.56818 +155,184,339,338,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.1533632,6.7682796,0,31,-1,18.886536,-9,3,3,2021,6,0,20,0,1,0,0,6.1532907,6.1532907,0,0,0,0,0,0,0,0,0,0,0,0,0,59.94,49.98,50.91,28.35,5,2,3,0,0,9,6,2,1,1129,610731.25,519247.75,132847.78,0,0,0,748.56818 +155,185,340,-9,338,339,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1128.576,0,2,2,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,-9,-9,8.333333333333334,2,3,0,1,2,6,1,1,573,228787.64,0,0,0,0,0,1298.2714 +156,186,341,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.6190448,6.4923077,0,0,-1006.2468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3233216,6.7481399,56.37,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,845,148696.55,22571.967,0,0,0,0,740.50146 +157,187,342,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.4410329,7.509768,6.0703683,0,0,-1005.6852,0,3,3,2021,7,0,22,22,1,0,0,7.9511499,7.9511499,.05,.05,0,0,0,0,0,0,0,0,0,0,6.1174412,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,625,45368.852,-125452.95,0,0,0,0,1358.9589 +158,188,343,344,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.3423104,7.634284,47,-4,11.701669,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.7298733,8.0300903,57.16,56.15,57.08,20.39,8.333333333333334,1,1,0,0,9,8,3,1,189,622281.63,168223.13,380234.31,0,0,0,2105.4023 +158,188,344,343,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,47,4,-167.95992,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,9.5727491,0,0,1,1,0,0,0,57.08,20.39,57.16,56.15,5,1,1,0,0,0,8,3,1,189,622281.63,168223.13,380234.31,0,0,0,2105.4023 +159,189,345,346,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8011894,8.4488611,0,12,0,20.517336,0,1,1,2021,8,0,10,10,1,0,0,61.298862,61.298862,.05,.05,0,0,0,0,0,0,0,0,0,6.9952893,0,57.16,56.15,50.14,53.97,10,1,1,0,0,13,8,4,1,1293,491103.63,276893.81,110259.3,0,0,0,3585.9966 +159,189,346,345,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,12,0,-18.020107,0,1,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.3506441,0,50.14,53.97,57.16,56.15,10,1,1,0,0,13,8,4,1,1293,491103.63,276893.81,110259.3,0,0,0,3585.9966 +159,190,347,-9,345,346,1,0,24,0,0,0,1,1,-9,0,3,7.6858993,7.8668394,0,0,0,-1096.0537,0,1,1,2021,7,0,16,16,1,0,1,12.946594,12.946594,.05,.05,0,0,0,0,0,0,0,0,0,2.4524336,0,48.4,50.83,-9,-9,8.333333333333334,1,1,0,0,2,8,3,1,1799,-76155.695,-15053.609,0,0,0,0,574.11725 +160,191,348,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.9460034,6.9026647,0,0,-875.23438,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1324935,7.2134504,48.53,45.51,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,390,157829.66,179648.17,169476.11,0,0,0,-26.423872 +161,192,349,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.1525459,8.4137907,6.5985379,0,0,-1129.0298,0,2,2,2021,25,11,37,37,1,11,0,15.426037,15.426037,.05,.05,0,0,0,0,0,0,1,1,0,6.101459,0,32.11,60.74,-9,-9,3.333333333333333,1,1,0,0,8,1,4,1,442,-20456.402,97768.117,46693.094,65273.199,961.8512,0,1919.6772 +161,193,350,-9,349,-9,1,1,19,0,1,0,2,2,-9,0,4,8.1787109,8.3548508,0,0,0,-899.68207,0,2,-9,2021,15,3,42,40,1,3,1,11.924803,11.924803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,3,1,4,1,342,-58224.992,18203.432,0,0,0,0,1556.9011 +162,194,351,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.2993035,7.118052,0,0,-1060.5603,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3179609,6.9270067,60.39,21.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,596,345161.44,129848.16,267251.88,0,0,0,726.08826 +163,195,352,353,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.7421236,9.4971771,0,31,-3,61.90287,0,3,1,2021,10,0,35,43,1,0,0,43.903839,43.903839,.05,.05,0,0,0,0,0,7,0,0,0,6.19561,0,57.33,53.46,60.13,49.27,8.333333333333334,4,2,0,0,6,9,5,1,401.5,3612435.5,2514615.5,488773.22,0,0,0,10403.826 +163,195,353,352,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6287937,9.6162663,0,31,3,-15.711473,0,-9,-9,2021,9,0,50,48,1,0,0,41.914066,41.914066,.05,.05,.05,0,0,0,0,0,0,0,0,8.2310877,0,60.13,49.27,57.33,53.46,10,1,1,0,0,9,9,5,1,401.5,3612435.5,2514615.5,488773.22,0,0,0,10403.826 +164,196,354,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4877615,8.3364372,0,0,0,-965.81122,0,-9,-9,2021,6,0,50,50,1,0,0,8.6375017,8.6375017,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,1930,126201.88,0,0,0,0,0,2461.083 +165,197,355,356,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.990696,8.8779716,0,7,0,-19.580505,0,-9,-9,2021,10,1,48,48,1,1,0,15.508782,15.508782,.05,.05,0,0,0,0,0,0,0,0,0,6.7027106,0,49.87,58.27,44.84,54.12,8.333333333333334,1,1,0,0,6,8,5,1,542.5,295794.72,65776.258,595912.5,400080.25,0,0,5305.7256 +165,197,356,355,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.5947866,8.4893541,0,7,0,-147.81932,0,-9,-9,2021,16,5,50,50,1,5,0,12.829994,12.829994,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.84,54.12,49.87,58.27,6.666666666666667,1,1,0,0,11,8,5,1,542.5,295794.72,65776.258,595912.5,400080.25,0,0,5305.7256 +166,198,357,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-909.65509,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.42,34.01,-9,-9,10,1,1,0,0,0,13,1,1,1915,170030.78,0,0,0,0,0,915.60748 +167,199,358,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.4584928,7.9614849,0,0,-1082.3959,0,3,3,2021,5,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9262791,8.2790251,66.46000000000001,15.66,-9,-9,8.333333333333334,4,5,0,0,10,6,3,1,8459,309524.94,278127.06,199915.66,0,0,0,1869.4941 +168,200,359,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1015.4897,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,38.59,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,535,-70451.672,0,0,0,0,0,1377.5835 +169,201,360,361,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,16,16,-33.322586,0,2,1,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.06,25.26,38.01,61.37,1.666666666666667,1,1,1,1,7,4,3,1,605,1346526,873762.75,437357.63,0,2966.3025,0,1334.814 +169,201,361,360,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.376153,8.2502213,0,16,-16,-31.15484,0,1,3,2021,15,5,44,50,1,5,0,9.0591965,9.0591965,0,0,0,0,0,0,0,0,0,0,0,7.5204453,0,38.01,61.37,33.06,25.26,6.666666666666667,1,1,0,1,10,4,3,1,605,1346526,873762.75,437357.63,0,2966.3025,0,1334.814 +170,202,362,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.5090742,6.3237348,0,0,-940.74384,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.442421,41.23,53.22,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,475,276291.81,-83753.484,16030.232,48937.387,0,0,700.14349 +171,203,363,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1132.2332,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.23,38.97,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,364,-9,363,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.52649,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,365,-9,363,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.34467,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,366,-9,363,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.35193,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +172,204,367,368,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.5635662,6.7754755,11,-4,-83.975494,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4595013,54.36,39.67,46.65,46.5,6.666666666666667,4,2,0,0,12,4,2,1,1004,1659639.8,983942.38,341850,0,0,0,1040.2712 +172,204,368,367,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.3741269,6.4461803,11,4,-54.00074,0,-9,-9,2021,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2911925,46.65,46.5,54.36,39.67,5,1,1,0,0,15,4,2,1,1004,1659639.8,983942.38,341850,0,0,0,1040.2712 +173,205,369,370,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.0169454,7.0728741,0,23,-7,59.595131,0,2,2,2021,12,0,6,8,1,2,0,21.600567,21.600567,0,0,0,0,0,0,0,0,1,0,1,0,0,47,49,50,49,7,2,3,0,0,6,8,2,1,349,720716.31,607671.13,0,0,0,0,1005.2633 +173,205,370,369,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,6.3428411,6.4890704,0,23,7,158.67294,0,3,2,2021,10,0,40,45,1,1,0,1.2423909,1.2423909,.05,.05,0,0,0,0,0,0,1,0,1,0,0,50,49,47,49,7,2,3,0,0,13,8,2,1,349,720716.31,607671.13,0,0,0,0,1005.2633 +173,206,371,-9,369,370,1,1,29,0,0,0,1,1,-9,0,4,8.4834509,8.0048761,0,0,0,-937.87042,0,2,1,2021,14,2,57,-9,1,2,1,9.3993893,9.3993893,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.58,57.61,-9,-9,3.333333333333333,2,3,0,0,5,8,5,1,144,41042.621,186904.38,199853.58,110285.44,0,0,2279.0007 +173,207,372,-9,369,370,1,0,25,0,0,0,1,1,-9,0,4,7.0144343,7.1800985,0,0,0,-939.23883,0,2,1,2021,23,9,8,3,1,9,1,17.620502,17.620502,.05,.05,0,0,0,0,0,0,1,0,1,0,0,33.19,58.87,-9,-9,5,2,3,0,1,2,8,3,1,1285,-68853.758,-80058.023,0,0,0,24.251339,475.75748 +173,208,373,-9,369,370,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.1642,0,2,1,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,1,3712,0,0,0,0,0,0,1625.3116 +173,209,374,-9,369,370,1,0,22,0,0,0,2,2,1,0,2,0,0,0,0,0,-1009.9601,-9,2,1,2021,24,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.1,32.03,-9,-9,1.666666666666667,2,3,0,0,1,8,2,1,60,0,0,0,0,0,0,0 +174,210,375,376,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,8.2718182,8.5652781,9,2,35.816025,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4841409,8.3989334,40.27,31.82,49.43,44.66,3.333333333333333,1,1,0,0,0,6,3,1,816,818314.19,536128.38,182995.44,0,0,0,2864.7876 +174,210,376,375,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,9,-2,67.351952,0,3,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,10.868595,0,0,1,1,0,0,0,49.43,44.66,40.27,31.82,8.333333333333334,1,1,0,0,0,6,3,1,816,818314.19,536128.38,182995.44,0,0,0,2864.7876 +175,211,377,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.2938261,6.2339835,0,0,-1072.8578,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.2542994,13.589895,18.586926,0,1,1,0,0,6.382566,47.55,23.07,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1069,42861.121,-43055.859,0,0,0,0,649.22656 +176,212,378,379,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.0977402,8.0233021,0,3,-6,40.591568,0,-9,-9,2021,14,3,40,60,1,3,0,7.1543174,7.1543174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.24,54.04,49.4,41.93,6.666666666666667,1,1,0,0,8,9,4,1,804,203140.08,53960.672,0,0,0,893.34717,2518.3804 +176,212,379,378,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7580233,7.6511273,0,3,6,-59.185558,0,-9,-9,2021,11,3,36,48,1,3,0,7.2426524,7.2426524,0,0,0,0,0,0,0,0,0,0,0,0,0,49.4,41.93,42.24,54.04,6.666666666666667,1,1,0,0,6,9,4,1,804,203140.08,53960.672,0,0,0,893.34717,2518.3804 +177,213,380,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6341629,8.4796228,0,0,0,-965.20099,0,2,3,2021,12,1,30,30,1,1,0,21.306662,21.306662,.05,.05,0,0,0,0,0,0,0,0,0,.82766736,0,48.56,50.81,-9,-9,5,2,3,0,0,4,8,5,0,338,173322.36,-55349.691,0,0,0,0,1932.0602 +178,214,381,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3466682,7.4196162,0,0,-1014.0855,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0716975,7.4642291,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,471,838113.19,293262.66,387576.59,0,0,0,2277.8208 +179,215,382,383,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.3642659,7.7344117,0,7,3,14.339839,0,-9,-9,2021,10,0,97,97,1,1,0,2.3857617,2.3857617,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,55.27,39.27,7,1,1,0,0,1,7,4,0,358,74888.094,0,0,0,0,0,2883.8853 +179,215,383,382,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.5482674,8.2223616,0,7,-3,102.99728,0,3,-9,2021,10,0,48,46,1,0,0,9.3912802,9.3912802,0,0,0,0,0,0,0,0,1,1,0,0,0,55.27,39.27,52,48,10,1,1,0,0,8,7,4,0,358,74888.094,0,0,0,0,0,2883.8853 +180,216,384,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3227634,8.3920479,0,0,0,-968.60236,0,1,1,2021,14,2,35,35,1,2,0,17.576996,17.576996,0,0,0,0,0,0,0,0,1,1,0,1.287555,0,43.12,58.26,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,685,-65853.68,0,0,0,0,0,1062.0186 +181,217,385,-9,386,387,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8392,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,386,387,-9,-9,1,0,29,2,2,0,3,3,-9,0,3,6.9972649,6.9944291,0,3,1,-26.769524,0,-9,-9,2021,11,1,16,16,1,1,0,9.0206594,9.0206594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,55.73,53.98,8.333333333333334,1,1,0,0,3,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,387,386,-9,-9,1,1,28,2,2,0,1,1,-9,0,4,8.5801334,8.8886728,0,3,-1,85.366104,0,-9,-9,2021,13,1,59,39,1,1,0,15.119294,15.119294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.09,46.7,6.666666666666667,1,1,0,0,5,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,388,-9,386,387,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2993,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +182,218,389,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.9769363,8.0778637,0,0,-1117.2471,0,-9,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6366615,7.9568939,45.82,31.91,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,650,331748.19,155339.36,239697.73,0,0,0,2562.7388 +183,219,390,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1082.4812,0,3,3,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,2,1,0,209,72493.594,0,0,0,0,2183.7598,1049.2107 +184,220,391,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.2938166,7.4740672,0,0,0,-889.59949,0,3,3,2021,13,3,28,23,1,3,0,7.0436325,7.0436325,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,791,-180422.48,0,0,0,0,0,665.20618 +185,221,392,393,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.0032611,6.2292032,60,7,10.447976,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9649224,57.16,56.15,64.22,34.32,6.666666666666667,1,1,0,0,0,1,2,0,336,397823,140390.17,78369.578,0,0,0,1743.2319 +185,221,393,392,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.4483333,6.5712142,11,-7,131.64342,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3385119,64.22,34.32,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,0,336,397823,140390.17,78369.578,0,0,0,1743.2319 +186,222,394,395,-9,-9,1,0,77,0,0,0,1,1,-9,0,1,0,6.4422517,6.3795462,38,2,-61.207237,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2703724,6.8038597,64.08,7.02,62.84,46.85,0,1,1,0,0,0,9,2,1,307.5,995398.25,533231.13,314947,0,0,0,2171.7839 +186,222,395,394,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.004796,5.9544535,38,-2,-15.422671,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,6.8602443,6.1506286,62.84,46.85,64.08,7.02,10,1,1,0,0,0,9,2,1,307.5,995398.25,533231.13,314947,0,0,0,2171.7839 +187,223,396,-9,397,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.76233,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1279.5,239681.97,101517.73,122163.64,0,0,0,1635.4465 +187,223,397,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.1302109,8.5444832,0,0,0,-1031.1353,0,3,2,2021,6,0,42,44,1,0,0,10.905252,10.905252,.05,.05,0,0,0,0,0,2,1,1,0,3.3930442,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,1279.5,239681.97,101517.73,122163.64,0,0,0,1635.4465 +188,224,398,399,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,8,-2,0,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.2,25.75,7,1,1,0,0,0,13,1,0,923,-73338.219,0,0,0,0,0,1804.272 +188,224,399,398,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,8,2,0,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.2,25.75,49,48,5,1,1,0,0,2,13,1,0,923,-73338.219,0,0,0,0,0,1804.272 +189,225,400,401,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,49,-4,-119.05663,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.96,53.17,8.333333333333334,1,1,0,0,9,9,3,0,340.5,1124186.4,442329.38,664486.25,0,0,0,1729.391 +189,225,401,400,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.6556158,7.933814,49,4,57.484867,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7323823,7.8430734,54.96,53.17,60.29,52.11,10,1,1,0,0,0,9,3,0,340.5,1124186.4,442329.38,664486.25,0,0,0,1729.391 +190,226,402,403,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.7059631,8.5343657,0,32,3,-155.32921,0,2,2,2021,10,0,28,40,1,0,0,21.721418,21.721418,0,0,0,0,0,0,0,0,0,0,0,0,0,52.41,42.18,55.2,57.22,6.666666666666667,1,1,0,0,10,12,5,1,915,933028.25,701409.38,489531.97,220904.73,0,0,11226.682 +190,226,403,402,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,10.506946,10.152728,0,32,-3,10.906754,0,1,2,2021,8,0,60,45,1,0,0,52.1623,52.1623,0,0,0,0,0,0,0,2,0,0,0,5.3536129,0,55.2,57.22,52.41,42.18,8.333333333333334,1,1,0,0,10,12,5,1,915,933028.25,701409.38,489531.97,220904.73,0,0,11226.682 +190,227,404,-9,403,402,1,0,21,0,0,0,1,1,1,0,3,8.2052021,7.9771452,0,0,0,-890.04657,-9,1,1,2021,9,2,80,0,1,2,1,3.9475265,3.9475265,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,96,-71080.359,0,0,0,0,0,1488.3818 +190,228,405,-9,403,402,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.35748,-9,1,1,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.91815042,0,42.31,49.45,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,310,0,0,0,0,0,0,-738.00903 +191,229,406,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6795206,8.7666807,1.6839859,0,0,-1053.7614,0,1,3,2021,2,0,37,37,1,0,0,14.684995,14.684995,.05,.05,0,0,0,0,0,0,1,1,0,2.5023172,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,467,267200.25,66704.375,0,0,0,1262.4926,1792.4808 +192,230,407,-9,-9,-9,1,0,66,0,0,0,1,1,-9,1,1,0,6.0266571,6.3017321,0,0,-878.58032,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,1,13.149866,9.754324,125.40743,0,1,1,0,0,6.3366957,49.35,22.3,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,444,323411.41,136927.11,54986.902,0,0,0,2756.8623 +193,231,408,409,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.0869274,8.0897322,0,3,1,71.678101,0,3,2,2021,9,0,30,35,1,1,0,13.277347,13.277347,.05,.05,0,0,0,0,0,0,1,1,0,4.0082617,0,54,53,45.81,61.51,8,1,1,0,0,1,10,5,1,1090,1016383,840169,160688.02,42532.238,8495.2119,0,4556.4492 +193,231,409,408,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.8796711,8.8120394,0,3,-1,7.2213755,0,1,2,2021,14,3,45,51,1,3,0,20.281509,20.281509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,54,53,6.666666666666667,1,1,0,0,9,10,5,1,1090,1016383,840169,160688.02,42532.238,8495.2119,0,4556.4492 +194,232,410,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5388784,8.1378832,0,0,0,-947.88947,0,2,2,2021,5,0,55,48,1,0,0,9.6412506,9.6412506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,4,0,1130,239766.42,143719.66,117688.62,0,0,0,1017.2776 +195,233,411,-9,412,413,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +195,233,412,413,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,8.0074711,7.833652,0,4,-14,24.551779,0,2,2,2021,6,0,35,40,1,0,0,10.498154,10.498154,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,56.29,52.37,10,1,1,0,0,10,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +195,233,413,412,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.7286873,8.4849014,0,4,14,5.0001907,0,-9,-9,2021,8,0,52,62,1,0,0,11.383448,11.383448,.05,.05,0,0,0,0,0,0,1,1,0,3.31691,0,56.29,52.37,60.12,54.8,6.666666666666667,1,1,0,0,10,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +196,234,414,415,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5166082,8.7714176,0,33,-1,41.914558,-9,3,3,2021,20,6,36,0,1,6,0,15.479805,15.479805,0,0,0,0,0,0,0,27,0,0,0,4.2050357,0,29.31,48,31.18,47.15,1.666666666666667,1,1,0,0,13,8,4,0,655,110122.57,-31666.777,0,0,-458.38162,0,2038.4746 +196,234,415,414,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,11,1,26.200008,0,3,2,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.51292032,0,31.18,47.15,29.31,48,3.333333333333333,1,1,1,0,10,8,4,0,655,110122.57,-31666.777,0,0,-458.38162,0,2038.4746 +197,235,416,417,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9983883,7.8697195,0,8,-5,45.598003,0,3,3,2021,10,0,39,39,1,0,0,7.9530306,7.9530306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,56.19,46.16,6.666666666666667,1,1,0,0,10,2,4,1,930.5,191527.39,-5814.832,133568.19,30079.34,5623.0161,0,2584.3066 +197,235,417,416,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,7.95788,7.7029881,0,8,5,-59.792122,0,-9,-9,2021,11,0,47,44,1,0,0,8.9719152,8.9719152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,44.11,55.31,8.333333333333334,1,1,0,0,8,2,4,1,930.5,191527.39,-5814.832,133568.19,30079.34,5623.0161,0,2584.3066 +198,236,418,419,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.6264977,7.7996578,0,7,-3,61.660145,0,-9,-9,2021,12,0,44,44,1,0,0,7.4602323,7.4602323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,39.32,28.21,5,1,1,0,0,6,9,4,0,650.5,-19729.688,-50049.902,205940.13,155782.56,0,0,2556.9795 +198,236,419,418,-9,-9,1,1,25,0,0,0,2,2,-9,0,1,8.2407045,8.220602,0,7,3,37.350838,0,-9,-9,2021,18,6,40,40,1,6,0,7.6196394,7.6196394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.32,28.21,45.98,56.3,6.666666666666667,1,1,0,0,7,9,4,0,650.5,-19729.688,-50049.902,205940.13,155782.56,0,0,2556.9795 +199,237,420,421,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,5.6904817,5.7753754,0,6,-4,-95.363274,0,2,2,2021,8,0,4,0,1,0,0,7.4325991,7.4325991,0,0,0,0,0,0,0,0,0,0,0,.5784086,0,47.15,50.19,58.2,54.53,8.333333333333334,1,1,0,0,1,12,4,1,1973.5,299259,119718.5,58233.824,0,7343.3525,0,1477.0173 +199,237,421,420,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.3373652,8.3412027,0,30,4,46.637627,0,2,2,2021,11,0,60,55,1,0,0,6.447608,6.447608,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.2,54.53,47.15,50.19,10,1,1,0,0,5,12,4,1,1973.5,299259,119718.5,58233.824,0,7343.3525,0,1477.0173 +200,238,422,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9984579,8.6676264,0,0,0,-1075.0782,0,-9,-9,2021,30,12,45,38,1,12,0,18.368652,18.368652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.51,64.23,-9,-9,3.333333333333333,1,1,0,0,10,7,5,0,515,28489.697,168270.73,0,0,0,0,3086.3169 +201,239,423,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.7412639,7.8811688,0,0,-953.99286,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4098268,8.28936,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,1030,3211901.5,2431344,810008.38,0,0,0,1228.5426 +201,240,424,-9,423,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-927.92358,-9,2,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615454,0,25.1,65.76000000000001,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,933,7570.7715,0,0,0,0,0,264.00354 +202,241,425,426,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,8.5830584,8.4127312,0,17,-7,11.816994,0,3,2,2021,12,0,46,48,1,0,0,12.315422,12.315422,0,0,0,0,0,0,0,0,1,0,1,2.4446487,0,42.04,56.46,45.48,21.54,5,1,1,0,0,14,5,4,1,415.5,1212727.3,899359.88,330550,0,0,632.51996,2736.4927 +202,241,426,425,-9,-9,1,1,64,1,1,0,2,2,-9,0,1,0,6.7221589,6.8599792,18,7,87.476067,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,6.3549109,45.48,21.54,42.04,56.46,8.333333333333334,1,1,0,0,10,5,4,1,415.5,1212727.3,899359.88,330550,0,0,632.51996,2736.4927 +202,242,427,-9,428,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.4695,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,2,1,504,126630.48,41375.941,0,0,0,0,441.87488 +202,242,428,-9,425,426,1,0,23,1,1,0,2,2,-9,0,5,5.3929586,5.3436761,0,0,0,-1108.5033,0,2,2,2021,10,1,10,15,1,1,1,2.2088385,2.2088385,0,0,0,0,0,0,0,0,1,0,1,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,504,126630.48,41375.941,0,0,0,0,441.87488 +203,243,429,430,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,8.569169,8.4790211,0,39,2,-37.483334,0,2,2,2021,10,0,50,44,1,1,0,12.867198,12.867198,0,0,0,0,0,0,0,0,1,1,0,4.051753,0,51,48,51.41,56.15,7,1,1,0,0,13,8,5,1,188,2786398.5,1109695.5,1108308.4,0,0,0,4375.3906 +203,243,430,429,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9913373,6.9231129,39,-2,-93.104897,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50990397,6.8896217,51.41,56.15,51,48,6.666666666666667,1,1,0,0,6,8,5,1,188,2786398.5,1109695.5,1108308.4,0,0,0,4375.3906 +204,244,431,432,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,8.2036266,8.0056801,4,-7,80.525459,0,3,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3614187,28.92,39.86,61.78,21.72,5,1,1,0,0,3,2,3,1,1509,1242303.3,875766.5,111480.09,0,0,0,2002.9202 +204,244,432,431,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,4,7,-56.757092,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,125.57046,125.92445,1199.1262,0,1,1,0,0,0,61.78,21.72,28.92,39.86,5,1,1,0,1,6,2,3,1,1509,1242303.3,875766.5,111480.09,0,0,0,2002.9202 +205,245,433,435,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.7175312,8.3403807,0,11,7,-9.224967,0,-9,-9,2021,8,1,30,30,1,1,0,16.072479,16.072479,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.91,46.15,43.03,53.23,8.333333333333334,1,1,0,0,12,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +205,245,434,-9,435,433,1,0,16,0,1,1,2,0,-9,0,3,0,3.4695528,3.6871104,0,0,-980.80475,-9,1,2,2021,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5374618,0,22.41,55.83,-9,-9,3.333333333333333,1,1,0,1,0,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +205,245,435,433,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.0667543,7.8529973,0,30,-7,-108.47939,0,2,2,2021,19,7,20,18,1,7,0,17.397318,17.397318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.03,53.23,57.91,46.15,8.333333333333334,1,1,0,0,5,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +206,246,436,-9,437,439,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.42523,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,437,439,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,0,0,0,14,0,15.045611,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9355333,0,35.74,45.58,47.05,53.05,8.333333333333334,2,3,0,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,438,-9,437,439,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.46234,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,439,437,-9,-9,1,1,33,1,3,0,3,3,-9,0,5,8.1483736,7.915462,0,14,0,55.390656,0,3,2,2021,12,1,43,43,1,1,0,8.8242626,8.8242626,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.05,53.05,35.74,45.58,10,2,3,0,0,7,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,440,-9,437,439,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.24976,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +207,247,441,443,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.8549318,8.6180534,0,7,4,-82.405174,0,3,3,2021,10,0,36,36,1,1,0,20.157848,20.157848,.05,.05,0,0,0,0,0,0,1,1,0,4.9265041,0,51,56,38.02,58.85,7,1,1,0,0,1,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,442,-9,443,441,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1123.3914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,443,441,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.4446421,5.8277745,0,7,-4,-12.514158,0,2,2,2021,14,2,6,0,1,2,0,4.8360562,4.8360562,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,51,56,3.333333333333333,1,1,0,0,6,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,444,-9,443,441,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.17773,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,445,-9,443,441,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.163,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +208,248,446,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1142.1635,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,41.63,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,703,152247.17,0,0,0,0,0,989.07184 +209,249,447,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.1010442,7.033987,0,0,0,-1027.1427,0,2,2,2021,13,1,32,32,1,1,0,7.0905066,7.0905066,0,0,0,0,0,0,0,0,1,0,1,0,0,29.38,55.98,-9,-9,1.666666666666667,1,1,0,0,10,2,3,1,1335,36232.719,186974.02,0,0,0,0,800.67566 +209,250,448,-9,447,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1110.424,0,3,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.97,46.41,-9,-9,10,1,1,1,0,0,2,1,1,257,61082.945,0,0,0,0,0,467.77286 +210,251,449,450,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4678488,5.4614558,40,1,38.432644,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3876381,54.37,54.8,54.9,54.53,8.333333333333334,3,4,0,0,0,8,2,1,1637.5,443977.84,96003.844,221725.56,0,0,0,1297.8193 +210,251,450,449,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,41,-1,66.602989,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,54.53,54.37,54.8,8.333333333333334,1,1,0,0,0,8,2,1,1637.5,443977.84,96003.844,221725.56,0,0,0,1297.8193 +211,252,451,453,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,9.0850687,9.0337906,0,19,3,-71.784576,0,3,3,2021,7,0,38,40,1,0,0,37.493317,37.493317,0,0,0,0,0,0,0,0,0,0,0,5.4157553,0,58.62,52.91,39.76,61.21,8.333333333333334,1,1,0,0,7,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,452,-9,451,453,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1034.4237,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,453,451,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4539442,9.6295662,0,19,-3,-30.464062,0,1,1,2021,16,6,38,42,1,6,0,47.496136,47.496136,.05,.05,0,0,0,0,0,0,0,0,0,6.7904229,0,39.76,61.21,58.62,52.91,8.333333333333334,1,1,0,0,12,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,454,-9,451,453,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.36938,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +212,253,455,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7655253,7.5272803,0,0,0,-884.87329,0,3,3,2021,7,0,39,23,1,0,0,6.6556826,6.6556826,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,717,292892.66,252464.84,47977.574,0,0,1596.9672,1542.8251 +213,254,456,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9645038,8.0259943,0,0,0,-1004.5349,0,1,2,2021,33,12,48,48,1,12,0,7.5928674,7.5928674,0,0,0,0,0,0,0,0,0,0,0,0,0,13.83,57.23,-9,-9,1.666666666666667,1,1,0,0,7,10,4,0,345,75083.984,0,0,0,0,0,895.07892 +214,255,457,-9,459,458,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-995.95203,-9,1,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,0,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +214,255,458,459,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0956841,8.2526798,0,24,0,-17.417803,0,1,2,2021,9,0,37,38,1,0,0,8.0741558,8.0741558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,38.76,37.49,8.333333333333334,1,1,0,0,9,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +214,255,459,458,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,8.4153023,8.3752012,0,24,0,-24.288857,0,2,3,2021,16,5,45,53,1,5,0,9.9779234,9.9779234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.76,37.49,58.33,39.49,8.333333333333334,1,1,0,0,8,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +215,256,460,461,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,9.0849714,9.322794,0,4,0,175.28096,0,-9,-9,2021,16,6,40,40,1,6,0,29.056576,29.056576,.05,.05,0,0,0,0,0,0,1,1,0,1.5487102,0,45.66,50.79,47.26,55.3,8.333333333333334,2,3,0,0,5,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +215,256,461,460,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,9.67628,9.6559067,0,4,0,-169.726,-9,-9,-9,2021,10,3,50,0,1,3,0,31.655426,31.655426,.05,.05,0,0,0,0,0,0,1,1,0,2.5594437,0,47.26,55.3,45.66,50.79,6.666666666666667,2,3,0,0,6,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +215,256,462,-9,460,461,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.2417,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +216,257,463,-9,464,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.72321,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +216,257,464,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,6.4364376,6.485436,0,0,-886.29321,0,2,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2756352,0,13.49,45.49,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +216,257,465,-9,464,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1100.067,-9,2,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.22,58.43,-9,-9,5,1,1,0,0,1,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +217,258,466,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4976482,8.5719852,0,0,0,-1031.9976,0,2,1,2021,32,12,58,63,1,12,0,10.613643,10.613643,0,0,0,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,-9,-9,3.333333333333333,1,1,0,0,4,8,5,0,168,122783.55,57762.914,0,0,0,0,1019.3575 +217,259,467,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.190547,8.3438892,0,0,0,-1074.986,0,-9,-9,2021,4,0,42,45,1,0,0,8.9267368,8.9267368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,2,8,4,0,569,-37306.59,-41362.723,0,0,0,0,1801.0857 +218,260,468,469,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.7893124,6.782023,49,-1,-52.173496,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3122628,6.8958597,48.12,42.71,57.16,56.15,6.666666666666667,1,1,0,0,3,8,2,1,311.5,773257.69,525760.06,130168.38,0,0,0,1146.3447 +218,260,469,468,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.8534451,5.8807802,49,1,12.705168,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8728533,5.7551746,57.16,56.15,48.12,42.71,8.333333333333334,1,1,0,0,0,8,2,1,311.5,773257.69,525760.06,130168.38,0,0,0,1146.3447 +219,261,470,471,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,41,-8,0,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.62,41.93,49.31,30.64,8.333333333333334,1,1,0,0,0,4,1,1,836.5,36861.789,0,68366.844,27002.65,0,3170.7412,1752.105 +219,261,471,470,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,40,8,0,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,23.278692,0,0,1,1,0,0,0,49.31,30.64,55.62,41.93,6.666666666666667,2,3,0,0,7,4,1,1,836.5,36861.789,0,68366.844,27002.65,0,3170.7412,1752.105 +219,262,472,473,470,471,1,1,25,0,0,0,1,1,-9,0,4,8.286809,8.1855335,0,1,0,-148.32748,0,3,2,2021,13,3,10,43,1,3,0,34.49218,34.49218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,63.46,46.55,58.3,6.666666666666667,4,2,0,0,2,4,4,1,1366,124334.34,102526.73,0,0,0,125.54309,2485.1777 +219,262,473,472,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.8571763,8.0811234,0,1,0,93.366928,-9,-9,-9,2021,9,0,37,0,1,0,0,8.4681215,8.4681215,.05,.05,0,0,0,0,0,0,1,1,0,3.5598435,0,46.55,58.3,35.38,63.46,6.666666666666667,4,2,0,1,1,4,4,1,1366,124334.34,102526.73,0,0,0,125.54309,2485.1777 +220,263,474,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.2026167,8.5780897,4.8731837,0,0,-882.25879,0,2,2,2021,6,0,37,37,1,0,0,13.187054,13.187054,.05,.05,0,0,0,0,0,0,1,1,0,5.2447395,5.5676794,55.81,36.7,-9,-9,5,1,1,0,0,9,6,4,1,397,510314.84,360996.72,89916.281,50429.934,0,0,1352.9354 +221,264,475,477,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.4199295,8.54356,0,7,-2,-120.08754,0,2,2,2021,9,0,38,41,1,0,0,14.811343,14.811343,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,45.56,60.26,8.333333333333334,1,1,0,0,8,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,476,-9,475,477,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.15692,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,477,475,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.4561882,8.2802401,0,7,2,26.688837,0,2,2,2021,12,2,37,40,1,2,0,16.482992,16.482992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.71,61.53,3.333333333333333,1,1,0,0,9,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,478,-9,475,477,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.7779,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +222,265,479,480,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,33,2,25.949686,0,2,2,2021,6,0,0,12,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.39,56.71,48.28,60.18,10,1,1,0,0,13,9,2,1,607.5,576357.88,251984.69,234374.69,0,0,0,1179.209 +222,265,480,479,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4885592,7.1870317,34,-2,-8.2512445,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.3112359,48.28,60.18,62.39,56.71,8.333333333333334,1,1,0,0,11,9,2,1,607.5,576357.88,251984.69,234374.69,0,0,0,1179.209 +223,266,481,483,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.4573975,7.3469558,0,8,-8,-30.013048,0,2,2,2021,12,0,23,26,1,0,0,8.0378857,8.0378857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,57.33,53.46,6.666666666666667,1,1,0,0,12,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +223,266,482,-9,481,483,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.85132,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +223,266,483,481,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.9360695,8.5764217,0,8,8,-48.72176,0,-9,-9,2021,8,0,44,45,1,0,0,18.183371,18.183371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.65,57.36,8.333333333333334,1,1,0,0,6,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +224,267,484,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9774499,8.0267029,0,0,0,-932.30762,0,2,2,2021,11,0,50,82,1,0,0,7.2525053,7.2525053,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.79,47.98,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,188,82729.891,124258.89,0,0,0,0,791.39532 +225,268,485,-9,486,-9,1,0,24,0,0,0,1,1,-9,0,5,7.92873,8.0791349,0,0,0,-957.90063,0,2,2,2021,7,0,60,30,1,0,1,6.2756867,6.2756867,.05,.05,0,0,0,0,0,0,0,0,0,2.9990733,0,52.32,57.18,-9,-9,10,1,1,0,0,5,7,4,1,666,-41695.371,13833.212,0,0,27312.744,0,1006.6237 +225,269,486,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6417356,7.4357991,0,0,0,-978.06488,0,3,3,2021,21,9,30,30,1,9,0,7.3953605,7.3953605,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,50.31,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,206,155821.16,210337.22,0,0,0,0,1358.011 +226,270,487,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,5,7.8156366,7.7432737,0,0,0,-983.99756,0,3,3,2021,12,0,37,38,1,0,0,7.7859974,7.7859974,0,0,0,0,0,0,0,0,0,0,0,0,0,62,44.54,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1005,-40236.246,0,0,0,0,4170.6328,883.41968 +227,271,488,489,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.5229445,9.9367676,7.8207369,17,10,-95.294769,0,3,3,2021,11,1,30,25,1,1,0,64.498238,64.498238,0,0,.05,0,0,0,0,0,1,1,0,7.1053543,7.7451534,44.58,51.2,41.76,57.81,1.666666666666667,1,1,0,0,11,2,5,1,357,1833604.3,665432.94,623497,0,6472.3403,0,9319.2969 +227,271,489,488,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,7.6174364,7.8922105,20,-10,-19.140352,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6867514,7.8139682,41.76,57.81,44.58,51.2,6.666666666666667,1,1,0,0,5,2,5,1,357,1833604.3,665432.94,623497,0,6472.3403,0,9319.2969 +228,272,490,491,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.2865129,7.446569,0,26,2,-132.78008,0,2,3,2021,17,5,21,18,1,5,0,9.9460535,9.9460535,.05,.05,0,0,0,0,0,0,0,0,0,4.5752797,0,35.11,50.17,57.16,56.15,5,1,1,0,0,11,2,5,1,2089.5,2203856.5,1935618.5,164276.41,74431.922,2174.9629,1327.5648,3427.1235 +228,272,491,490,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.7961693,9.2197475,0,25,-2,-22.303862,0,2,2,2021,7,0,42,44,1,0,0,19.191227,19.191227,.05,.05,0,0,0,0,0,0,0,0,0,3.1294925,0,57.16,56.15,35.11,50.17,8.333333333333334,1,1,0,0,12,2,5,1,2089.5,2203856.5,1935618.5,164276.41,74431.922,2174.9629,1327.5648,3427.1235 +229,273,492,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,7.3195381,7.5486965,0,0,-1073.4922,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3472085,7.3101859,46.15,14.39,-9,-9,10,1,1,0,0,0,4,3,1,679,1024971.4,206054.44,495344.53,0,0,0,1235.0712 +230,274,493,494,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.048542,7.9669671,0,20,4,50.314125,0,2,2,2021,4,0,38,7,1,0,0,12.32055,12.32055,.05,.05,.05,0,0,0,0,0,0,0,0,7.8750682,0,55.92,50.07,53.3,55.06,6.666666666666667,3,4,0,0,13,8,5,1,240,874087.25,62544.047,762617.5,0,4556.5933,0,6460.3926 +230,274,494,493,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7940559,9.0180626,0,20,-4,-26.659788,0,2,1,2021,8,0,36,36,1,0,0,15.1214,15.1214,0,0,0,0,0,0,0,0,0,0,0,8.4816742,0,53.3,55.06,55.92,50.07,8.333333333333334,3,4,0,0,13,8,5,1,240,874087.25,62544.047,762617.5,0,4556.5933,0,6460.3926 +231,275,495,496,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,12,7,0,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.94,52.2,39.39,37.66,5,2,3,1,0,0,4,1,0,398,27608.008,0,0,0,0,0,477.88873 +231,275,496,495,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,41,-7,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.39,37.66,41.94,52.2,8.333333333333334,2,3,1,1,0,4,1,0,398,27608.008,0,0,0,0,0,477.88873 +231,276,497,-9,496,495,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-985.79663,0,3,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.41,46.03,-9,-9,8.333333333333334,2,3,1,0,0,4,1,0,653,68357.766,0,0,0,0,0,532.19812 +231,277,498,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.4587288,7.4666915,0,0,0,-1043.5726,0,-9,-9,2021,12,0,35,28,1,0,0,5.4316282,5.4316282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.92,50.59,-9,-9,5,2,3,0,0,4,4,3,0,509,-92048.344,101444.56,0,0,42800.84,0,501.61246 +231,278,499,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8734279,7.6803293,0,0,0,-1012.6921,0,-9,-9,2021,6,0,38,38,1,0,0,7.7472267,7.7472267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,10,2,3,0,0,4,4,4,0,261,75659.805,35974.828,86978.828,71367.016,21.961908,0,1265.3429 +231,279,500,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-1097.7799,-9,-9,-9,2021,27,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4790969,0,19.12,52.53,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,443,0,0,0,0,0,0,590.02917 +231,280,501,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.67719,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,2,3,1,0,1,4,1,0,393,0,0,0,0,0,0,0 +231,281,502,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.8508849,7.5291176,0,0,0,-1020.4379,0,-9,-9,2021,10,0,38,38,1,0,0,8.2635088,8.2635088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,6.666666666666667,2,3,0,0,7,4,3,0,408,-101527.87,114769.34,0,0,0,0,1365.9307 +232,282,503,-9,509,508,1,0,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-936.85962,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,504,-9,509,508,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1015.8577,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,505,-9,509,508,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1106.4486,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,506,-9,509,508,1,1,10,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1121.8324,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,507,-9,509,508,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1059.3523,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,508,509,-9,-9,1,1,50,0,5,0,3,3,-9,0,2,7.7209864,7.2775002,0,6,5,-16.159601,0,-9,-9,2021,12,0,86,40,1,0,0,1.8062913,1.8062913,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,34.58,43.57,48.01,6.666666666666667,2,3,0,0,11,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,509,508,-9,-9,1,0,45,0,5,0,3,3,-9,0,3,0,0,0,13,-5,62.396854,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,48.01,46.27,34.58,6.666666666666667,2,3,0,0,1,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +233,283,510,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.1446896,8.2859917,0,0,-855.78558,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4153843,8.155468,52.08,40.47,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,2017,1643761.4,609559.31,795511.44,0,0,0,2542.6323 +234,284,511,512,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.2317667,7.5987639,0,14,-2,-36.544186,0,2,2,2021,9,0,26,26,1,0,0,11.782279,11.782279,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +234,284,512,511,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.2355661,9.2585735,0,14,2,33.446743,0,2,1,2021,8,0,44,42,1,0,0,21.805218,21.805218,.05,.05,.05,0,0,0,0,0,1,1,0,2.9985344,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +234,284,513,-9,511,512,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.1008,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +235,285,514,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.8362741,5.5249429,0,0,-1072.4648,-9,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2125401,5.8460288,53.07,38.72,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,693,-17395.984,151398.53,0,0,0,0,686.82214 +236,286,515,517,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.1103678,7.1241345,0,1,1,-105.57957,-9,-9,-9,2021,8,1,16,0,1,1,0,5.6673536,5.6673536,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.33,39.49,10,1,1,0,0,6,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +236,286,516,-9,517,515,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.1595,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +236,286,517,515,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,1,-1,93.517761,-9,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,52.43,55.57,5,1,1,0,1,0,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +237,287,518,-9,520,519,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1024.8702,-9,2,3,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,287,519,520,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,7.1004958,7.3437824,0,20,5,-68.073997,0,3,3,2021,12,0,20,0,1,0,0,8.3667097,8.3667097,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,51.02,52.22,49.63,54.22,6.666666666666667,1,1,0,0,10,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,287,520,519,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1068525,8.0167961,0,20,-5,37.071434,0,2,3,2021,11,0,36,36,1,0,0,8.4718103,8.4718103,0,0,0,0,0,0,0,14.5,0,0,0,1.8864163,0,49.63,54.22,51.02,52.22,6.666666666666667,1,1,0,0,10,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,288,521,-9,520,519,1,1,23,0,1,0,2,2,-9,0,4,8.1764956,7.690208,0,0,0,-879.18903,0,2,3,2021,12,0,108,32,1,0,1,2.8358636,2.8358636,.05,.05,0,0,0,0,0,2,0,0,0,4.3542113,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,259,214789.5,-135486.81,0,0,5841.1904,0,1159.2554 +238,289,522,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,6.2409267,5.8330345,0,0,-954.55865,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2314377,0,0,1,1,0,0,6.1571188,36.37,23,-9,-9,1.666666666666667,1,1,0,1,0,1,2,0,73,161987.88,60199.367,80402.922,0,0,0,1698.871 +239,290,523,-9,-9,-9,1,1,79,0,3,0,3,3,-9,0,3,0,0,0,0,0,-982.52289,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,5,13,1,1,326,115276.34,0,138373.48,0,0,0,274.66977 +239,291,524,525,-9,-9,1,0,41,0,3,0,3,3,-9,0,5,7.3318973,7.3695784,0,14,-4,-39.704346,0,3,3,2021,6,0,30,0,1,0,0,6.4015021,6.4015021,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,0,0,6,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,525,524,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,0,0,0,14,4,-148.58037,0,3,3,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,1,0,8,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,526,-9,524,525,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1206.0317,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,527,-9,524,525,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.7126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,528,-9,524,525,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6688,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +240,292,529,530,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.9059334,6.6750479,50,0,36.875305,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4270668,7.0699215,41,53.03,56.57,57.78,8.333333333333334,1,1,0,0,4,2,3,1,682,562238.38,250563.73,107461.03,0,0,0,3602.2327 +240,292,530,529,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9693255,7.0035634,50,0,85.035179,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4175506,6.9874854,56.57,57.78,41,53.03,10,1,1,0,0,7,2,3,1,682,562238.38,250563.73,107461.03,0,0,0,3602.2327 +241,293,531,532,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.1291552,8.1253605,0,10,-1,164.9024,0,-9,-9,2021,13,1,40,39,1,1,0,11.777061,11.777061,0,0,0,0,0,0,0,2,0,0,0,.98022956,0,44.31,47.69,46.88,46.3,6.666666666666667,1,1,0,0,13,1,4,1,997,123146.81,-4158.6528,0,0,4979.5913,6596.1035,2706.5679 +241,293,532,531,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.8392777,8.0259466,0,10,1,-53.323875,0,3,2,2021,13,1,38,38,1,1,0,9.9253597,9.9253597,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.88,46.3,44.31,47.69,3.333333333333333,1,1,0,0,15,1,4,1,997,123146.81,-4158.6528,0,0,4979.5913,6596.1035,2706.5679 +242,294,533,534,-9,536,1,1,33,1,1,0,2,2,-9,1,3,0,0,0,3,5,0,0,-9,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.26,47.71,55.73,45.75,5,2,3,0,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,294,534,533,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,0,0,0,3,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,5.4054651,0,55.73,45.75,52.26,47.71,6.666666666666667,2,3,1,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,294,535,-9,534,533,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.13934,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,295,536,-9,-9,-9,1,1,59,1,1,0,2,2,-9,0,1,8.8451214,8.9452677,0,0,0,-1123.0044,0,-9,-9,2021,28,11,37,37,1,11,0,21.880182,21.880182,.05,.05,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,2,3,0,0,14,8,5,1,343,198753.23,-28206.535,104636.41,38281.727,0,0,2354.0969 +243,296,537,538,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.5643053,8.4754534,48,1,144.95584,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.125246,8.2302561,57.16,56.15,57.33,53.46,10,1,1,0,0,0,5,4,1,666,975439.56,556709.5,348461.5,0,0,0,4489.0645 +243,296,538,537,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,49,-1,24.078417,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9175811,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,666,975439.56,556709.5,348461.5,0,0,0,4489.0645 +243,297,539,-9,538,537,1,1,43,0,0,0,2,2,-9,0,4,8.5412035,8.0540428,0,0,0,-1037.3219,0,2,2,2021,9,0,7,6,1,0,0,72.577271,72.577271,.05,.05,0,0,0,0,0,0,1,1,0,1.2505618,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,2002,265672.44,17904.34,0,0,-383.75247,0,1233.187 +244,298,540,541,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,10,1,109.75595,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.3998964,1.3831997,21.753927,0,1,1,0,0,0,40.73,47.26,57.09,46.7,8.333333333333334,1,1,0,0,0,12,2,1,1457,481221.53,206458.19,222583.42,0,0,0,2349.4238 +244,298,541,540,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2817664,7.1148281,10,-1,-54.697083,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2302079,57.09,46.7,40.73,47.26,5,1,1,0,0,1,12,2,1,1457,481221.53,206458.19,222583.42,0,0,0,2349.4238 +245,299,542,-9,543,544,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.22327,-9,1,1,2021,26,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.24,67.91,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,299,543,544,-9,-9,1,0,51,0,3,0,1,1,-9,0,5,0,0,0,29,-1,-122.39033,0,2,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,7.1287403,0,39.71,56.05,45.48,40.85,6.666666666666667,1,1,0,0,3,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,299,544,543,-9,-9,1,1,52,0,3,0,1,1,-9,0,4,9.7271519,9.4479837,0,29,1,-8.5192709,0,2,3,2021,11,1,50,60,1,1,0,34.556648,34.556648,.05,.05,.05,0,0,0,0,0,0,0,0,4.7193012,0,45.48,40.85,39.71,56.05,6.666666666666667,1,1,0,0,10,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,300,545,-9,543,544,1,0,20,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1055.3422,1,1,1,2021,20,7,0,20,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6218191,0,23.18,61.28,-9,-9,5,1,1,0,1,1,9,1,1,449,-204493.7,0,0,0,0,0,987.92188 +246,301,546,-9,547,548,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9134,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,547,548,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,11,-1,16.297405,0,1,1,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.2578096,0,50.34,56.4,57.16,56.15,8.333333333333334,2,3,0,0,2,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,548,547,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.8027372,9.6285782,0,11,1,.84368402,0,2,1,2021,11,0,45,85,1,0,0,38.662247,38.662247,.05,.05,0,0,0,0,0,0,0,0,0,5.6194725,0,57.16,56.15,50.34,56.4,6.666666666666667,2,3,0,0,8,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,549,-9,547,548,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +247,302,550,551,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,32,5,0,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.20402367,0,46.32,45.41,52.26,47.71,6.666666666666667,2,3,0,0,2,8,1,1,591,63074.887,0,0,0,0,0,514.5636 +247,302,551,550,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,32,-5,0,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,46.32,45.41,6.666666666666667,2,3,0,0,0,8,1,1,591,63074.887,0,0,0,0,0,514.5636 +247,303,552,-9,551,550,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.2612,-9,3,3,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,2,3,1,0,0,8,1,1,313,87091.586,0,0,0,25985.902,0,0 +247,304,553,-9,551,550,1,0,25,0,0,0,2,2,-9,0,3,7.6167712,7.5408225,0,0,0,-1069.0856,-9,3,3,2021,7,0,37,0,1,0,1,7.610496,7.610496,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,2,3,0,0,3,8,3,1,188,46454,-42752.824,0,0,0,0,308.48444 +247,305,554,-9,551,550,1,0,24,0,0,0,2,2,-9,0,3,7.301475,7.3182216,0,0,0,-861.64087,-9,3,3,2021,10,0,24,0,1,0,1,7.1582294,7.1582294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,-9,-9,8.333333333333334,2,3,0,0,2,8,3,1,193,46085.578,21284.992,0,0,0,0,532.56482 +248,306,555,557,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,17,-4,0,0,3,3,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.02,36.43,53,55,0,1,1,0,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,306,556,-9,555,557,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1082.6245,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.55,57.37,-9,-9,5,1,1,0,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,306,557,555,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,0,0,0,17,4,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,28.02,36.43,8,1,1,1,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,307,558,-9,555,557,1,1,21,0,1,0,3,3,-9,1,5,0,0,0,0,0,-982.28613,0,3,3,2021,14,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.092798553,0,35.23,47.8,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,2330,-233908.67,0,0,0,0,0,1458.7628 +249,308,559,560,-9,-9,1,0,26,0,0,0,1,1,-9,0,1,8.2577991,8.6132641,0,1,-3,1.2574894,0,2,2,2021,23,11,80,55,1,11,0,5.6810627,5.6810627,.05,.05,0,0,0,0,0,0,0,0,0,.77051967,0,30.68,48.94,60.52,53.2,3.333333333333333,1,1,0,0,9,4,4,0,1110.5,47636.492,88136.016,166136.42,101726.88,20146.539,0,2397.8799 +249,308,560,559,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.6198506,7.540894,0,1,3,-59.331085,-9,-9,-9,2021,8,0,55,0,1,0,0,4.5703788,4.5703788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,30.68,48.94,8.333333333333334,1,1,0,0,2,4,4,0,1110.5,47636.492,88136.016,166136.42,101726.88,20146.539,0,2397.8799 +250,309,561,562,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.4111605,8.04107,25,8,35.014633,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.5154972,8.3689976,50.43,53.69,51,54,8.333333333333334,1,1,0,0,3,7,4,1,611.5,2123343,224217.78,914919.69,0,0,0,3123.6689 +250,309,562,561,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8158898,8.284936,0,25,-8,40.090786,0,3,-9,2021,10,0,40,35,1,1,0,7.6204281,7.6204281,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,50.43,53.69,8,1,1,0,0,1,7,4,1,611.5,2123343,224217.78,914919.69,0,0,0,3123.6689 +250,310,563,-9,562,561,1,0,25,0,0,0,2,2,-9,0,4,7.9843788,7.8955498,0,0,0,-1002.8513,0,2,2,2021,11,0,40,35,1,2,1,7.7983351,7.7983351,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,4,1,209,118920.14,-73179.188,0,0,1445.2428,0,2132.0544 +250,311,564,-9,562,561,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.0895,-9,2,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,817,-124785.24,0,0,0,0,0,173.52748 +251,312,565,566,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,0,-54.978531,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,40.82,53.24,30.15,8.333333333333334,1,1,0,0,0,12,3,1,1451.5,1116375.5,672405.38,258425.41,0,0,0,2139.417 +251,312,566,565,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,8.1360636,8.1287708,52,0,31.019503,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2362843,53.24,30.15,41.11,40.82,3.333333333333333,1,1,0,0,0,12,3,1,1451.5,1116375.5,672405.38,258425.41,0,0,0,2139.417 +252,313,567,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-945.01801,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.08,27.24,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,585,97908.195,0,0,0,4445.1855,0,953.84637 +253,314,568,569,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.7616172,8.0674057,11,-3,-4.4921784,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8997841,0,46.23,27.45,51,48,5,1,1,0,0,0,13,4,1,355.5,1420144.5,1034332,347928.38,0,1062.4879,0,3617.3684 +253,314,569,568,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.78227,7.5850501,11,3,64.373589,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8718972,7.7371101,51,48,46.23,27.45,7,1,1,0,0,0,13,4,1,355.5,1420144.5,1034332,347928.38,0,1062.4879,0,3617.3684 +254,315,570,571,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.122592,9.159029,0,4,13,-13.196943,0,2,2,2021,7,0,39,50,1,0,0,21.403946,21.403946,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.24,50.75,8.333333333333334,1,1,0,0,7,7,5,0,704,336574.25,0,302813.44,0,1395.6895,0,4482.6543 +254,315,571,570,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.5656843,8.4725618,0,4,-13,57.476532,0,-9,-9,2021,11,1,43,48,1,1,0,11.682552,11.682552,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,57.16,56.15,8.333333333333334,1,1,0,0,4,7,5,0,704,336574.25,0,302813.44,0,1395.6895,0,4482.6543 +255,316,572,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.7392693,7.8944812,0,0,-861.06018,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8369308,6.0038676,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,770,1741931,806190.38,397773.5,0,0,0,881.35449 +255,317,573,-9,572,-9,1,1,24,0,0,0,1,1,1,0,4,0,0,0,0,0,-1110.5375,-9,2,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.41,57.01,-9,-9,1.666666666666667,1,1,1,0,2,1,1,1,343,-61201.723,0,0,0,0,0,-263.32181 +256,318,574,-9,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2768698,7.9228787,0,0,0,-978.0957,0,-9,-9,2021,8,0,50,48,1,0,0,7.4922976,7.4922976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,953,621735.63,399019.94,258503.02,26250.271,8490.0986,0,2501.9854 +257,319,575,576,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-5,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52,46,54,46,8,1,1,0,1,0,13,1,1,1573.5,41320.367,0,148336.7,0,0,0,391.90594 +257,319,576,575,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,57,5,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,116.75612,0,0,1,1,0,0,0,54,46,52,46,8,1,1,0,0,0,13,1,1,1573.5,41320.367,0,148336.7,0,0,0,391.90594 +258,320,577,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-922.37994,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.69,31.73,-9,-9,5,1,1,0,0,0,12,1,1,995,-67859.336,-64867.223,0,0,0,0,1033.825 +259,321,578,579,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7588925,7.7672372,37,-7,64.227081,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8802397,7.841074,60.03,45.37,52.4,55.58,8.333333333333334,1,1,0,0,0,6,4,1,486.5,1918403.9,1584302.3,243626.81,0,1627.2249,0,4450.3408 +259,321,579,578,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,8.3008204,7.9151626,42,7,-35.94112,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6534004,8.3399887,52.4,55.58,60.03,45.37,10,1,1,0,0,0,6,4,1,486.5,1918403.9,1584302.3,243626.81,0,1627.2249,0,4450.3408 +260,322,580,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.2216091,8.2576828,0,0,0,-1120.229,0,2,2,2021,11,2,37,37,1,2,0,17.679895,17.679895,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.98,52.59,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,781,-69024.313,122257,0,0,0,0,1575.0111 +261,323,581,582,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,0,-134.62296,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9910929,0,58.41,48.73,48.94,34.29,8.333333333333334,1,1,0,0,0,8,3,1,1296,911998.63,660154.44,242223,0,0,0,3290.7559 +261,323,582,581,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.9622145,7.8970604,8,0,21.718163,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3536351,8.0541019,48.94,34.29,58.41,48.73,6.666666666666667,1,1,0,0,0,8,3,1,1296,911998.63,660154.44,242223,0,0,0,3290.7559 +262,324,583,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1895804,7.4054914,0,0,-867.67285,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1667509,51.76,41.09,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,1811,391813.5,80753.117,117316.58,0,0,0,1878.4072 +263,325,584,585,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,22,1,47.748756,0,3,-9,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.48,34.4,49.11,41.06,3.333333333333333,1,1,0,0,0,10,3,1,2785,1287073.9,866017,356783.44,12640.365,-1666.8801,0,3160.8618 +263,325,585,584,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4660397,8.3574228,34,-1,-129.77664,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.7105203,8.1273165,49.11,41.06,37.48,34.4,3.333333333333333,1,1,0,0,4,10,3,1,2785,1287073.9,866017,356783.44,12640.365,-1666.8801,0,3160.8618 +264,326,586,-9,589,588,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.53137,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,587,-9,589,588,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-854.42059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,588,589,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.1430187,8.1927166,0,8,-1,119.82646,0,1,2,2021,13,1,42,38,1,1,0,8.9757452,8.9757452,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.17,42.52,6.666666666666667,1,1,0,0,8,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,589,588,-9,-9,1,0,32,1,2,0,2,2,-9,0,2,7.8090057,7.9920664,0,8,1,-3.9868915,0,-9,-9,2021,8,0,39,36,1,0,0,9.5850821,9.5850821,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.17,42.52,57.06,57.76,6.666666666666667,1,1,0,0,10,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +265,327,590,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.890213,8.3912516,0,0,0,-826.09064,0,3,2,2021,7,1,35,35,1,1,0,10.876809,10.876809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,55.12,-9,-9,8.333333333333334,1,1,0,0,6,2,3,0,555,-197925.06,77856.836,0,0,1740.7043,0,1388.4033 +265,327,591,-9,590,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-974.03363,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,3,0,555,-197925.06,77856.836,0,0,1740.7043,0,1388.4033 +266,328,592,593,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,0,0,0,5,-2,-43.732731,0,2,1,2021,17,6,0,45,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,57.06,57.76,5,1,1,0,0,14,12,5,1,2806.5,817851.88,546113.63,438998,19778.18,3553.7964,917.58472,5339.5488 +266,328,593,592,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.7611704,9.7473516,0,5,2,47.715969,0,1,1,2021,9,0,41,83,1,0,0,62.603714,62.603714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.46,55.58,10,1,1,0,0,15,12,5,1,2806.5,817851.88,546113.63,438998,19778.18,3553.7964,917.58472,5339.5488 +267,329,594,595,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.0547848,7.7605505,42,1,-49.883533,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3646464,7.8927612,58.07,46.29,49.66,55.68,10,1,1,0,0,0,4,4,0,634.5,1018624.1,667875.94,239572.11,0,0,0,4123.041 +267,329,595,594,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.6213083,7.7393298,42,-1,41.345192,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4406629,7.4483719,49.66,55.68,58.07,46.29,8.333333333333334,1,1,0,0,0,4,4,0,634.5,1018624.1,667875.94,239572.11,0,0,0,4123.041 +268,330,596,597,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.8543396,9.2503548,7.8569012,33,5,-22.142872,0,3,3,2021,7,0,45,45,1,0,0,13.108655,13.108655,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1229115,55.51,46.03,53.46,44.67,8.333333333333334,1,1,0,0,10,4,5,1,777,433083.5,144467.48,148034.81,49021.223,4532.7764,2358.3103,4683.1377 +268,330,597,596,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.732965,7.6957946,0,33,-5,-149.93828,0,3,3,2021,11,0,33,43,1,0,0,8.4326077,8.4326077,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.46,44.67,55.51,46.03,8.333333333333334,1,1,0,0,10,4,5,1,777,433083.5,144467.48,148034.81,49021.223,4532.7764,2358.3103,4683.1377 +268,331,598,-9,597,596,1,0,23,0,0,0,2,2,-9,0,4,7.6443586,7.9571462,0,0,0,-1075.9663,0,3,3,2021,5,0,42,42,1,0,1,6.8780746,6.8780746,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,332,13160.4,194540.89,0,0,0,0,329.02213 +268,332,599,-9,597,596,1,1,23,0,0,0,2,2,-9,0,4,7.818429,7.74196,0,0,0,-1056.0685,0,3,3,2021,10,0,44,44,1,1,1,6.382585,6.382585,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,1,1359,79181.375,0,0,0,0,0,231.7583 +269,333,600,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.9796734,5.7774072,0,0,-974.77533,0,2,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2564572,5.7475986,49.75,32.52,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1779,84752.406,-33022.742,0,0,0,538.15881,441.87466 +270,334,601,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.9144692,7.6521568,0,0,0,-1013.4504,0,-9,3,2021,17,5,37,35,1,5,0,7.5423641,7.5423641,0,0,0,0,0,0,0,0,0,0,0,0,0,38.82,41.98,-9,-9,6.666666666666667,1,1,0,0,11,6,3,0,989,134208.02,18168.932,152658.42,141543.41,0,2208.354,785.39618 +270,335,602,-9,601,-9,1,1,24,0,0,0,2,2,-9,0,3,7.9460464,8.0088291,0,0,0,-908.48157,0,2,-9,2021,12,0,38,0,1,0,1,8.3715124,8.3715124,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,5,1,1,0,0,5,6,4,0,581,-44099.68,0,0,0,0,-59.456097,1879.725 +270,336,603,-9,601,-9,1,0,22,0,0,0,2,2,-9,0,3,7.4285345,7.60042,0,0,0,-1013.7633,0,2,-9,2021,26,12,32,0,1,12,1,7.1756773,7.1756773,0,0,0,0,0,0,0,0,0,0,0,0,0,27.6,49.7,-9,-9,3.333333333333333,1,1,0,0,6,6,3,0,742,-222527.19,0,0,0,0,0,1628.035 +271,337,604,605,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.2131186,9.016326,0,8,-2,10.800611,0,2,2,2021,4,0,38,38,1,0,0,22.112831,22.112831,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,7,1,5,0,310,343516.13,385891.56,81331.141,103934.05,13062.295,0,5457.0605 +271,337,605,604,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.9081593,8.684844,0,8,2,-21.525091,0,2,2,2021,5,0,50,52,1,0,0,12.962463,12.962463,.05,.05,0,0,0,0,0,0,0,0,0,2.4496901,0,51.73,58.82,54.2,57.49,10,1,1,0,0,5,1,5,0,310,343516.13,385891.56,81331.141,103934.05,13062.295,0,5457.0605 +272,338,606,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.6759672,8.6842031,0,0,0,-1029.2961,0,2,2,2021,10,0,38,60,1,0,0,16.735498,16.735498,.05,.05,0,0,0,0,0,0,0,0,0,2.890934,0,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,746,-9881.416,59214.313,0,0,0,0,1949.6339 +273,339,607,-9,609,608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.88867,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,608,609,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.9396,8.6676273,0,15,0,-43.057552,0,2,2,2021,5,0,47,35,1,0,0,16.817005,16.817005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,55.22,46.37,10,1,1,0,0,10,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,609,608,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.6736307,6.9578838,0,15,0,1.9177951,0,2,2,2021,10,0,18,25,1,0,0,6.462296,6.462296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.22,46.37,62.27,48.47,8.333333333333334,1,1,0,0,8,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,610,-9,609,608,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.40094,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +274,340,611,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,5,7.3507495,7.3144922,0,0,0,-923.05902,-9,2,-9,2021,8,1,24,0,1,1,1,8.0185442,8.0185442,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.8,58.27,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,500,80239.234,-4282.6221,0,0,1021.1384,0,254.21825 +275,341,612,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,7.3754797,7.5325632,0,0,0,-943.48682,0,3,3,2021,10,0,30,40,1,0,0,4.1853361,4.1853361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.62,30.78,-9,-9,1.666666666666667,4,2,0,0,7,8,3,0,429,9018.7744,-33466.16,0,0,0,0,1067.8845 +275,342,613,-9,612,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.1475,0,2,-9,2021,8,0,0,29,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.52,62.31,-9,-9,6.666666666666667,2,3,0,0,4,8,1,0,2075,-102672.78,0,0,0,0,0,-299.11169 +276,343,614,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.158103,5.895442,0,0,-992.44885,0,-9,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6796799,6.0885963,49.17,50.19,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,196,318852.47,0,0,0,0,334.72501,703.71472 +276,344,615,-9,614,-9,1,1,37,0,0,0,2,2,-9,0,4,9.2807407,9.1203346,0,0,0,-939.64343,0,1,2,2021,10,0,68,68,1,1,0,22.502565,22.502565,0,0,0,0,0,0,0,0,1,1,0,3.2821584,0,51,56,-9,-9,7,1,1,0,0,1,9,5,1,486,155197.08,0,168869.97,72722.063,0,0,3159.8518 +277,345,616,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0347614,7.9847841,0,0,0,-1091.9453,0,-9,-9,2021,11,0,40,45,1,0,0,9.1806717,9.1806717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,607,236602.97,157847,0,0,0,0,1972.324 +278,346,617,618,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.6868148,4.6414528,10,-2,-89.471657,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0031719,0,57.16,42.95,57.57,49.69,8.333333333333334,1,1,0,0,5,11,3,1,303.5,969900.38,631974.38,229402.39,0,0,0,3291.1045 +278,346,618,617,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.6294527,7.9459372,50,2,-62.076294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2485762,7.9658732,57.57,49.69,57.16,42.95,8.333333333333334,1,1,0,0,0,11,3,1,303.5,969900.38,631974.38,229402.39,0,0,0,3291.1045 +279,347,619,620,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,3,-131.00056,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,44.15,60.12,54.8,8.333333333333334,1,1,0,0,0,2,2,1,1268,73766.063,76534.344,91954.445,0,0,0,1193.6145 +279,347,620,619,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.4065018,4.7316866,56,-3,61.274342,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7282147,4.9827952,60.12,54.8,59.54,44.15,10,1,1,0,0,0,2,2,1,1268,73766.063,76534.344,91954.445,0,0,0,1193.6145 +280,348,621,622,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.69485,8.651166,0,14,4,22.507164,0,2,2,2021,14,2,36,36,1,2,0,17.912674,17.912674,0,0,.05,0,0,0,0,7,1,1,0,0,0,38.91,52.63,45.19,53.94,3.333333333333333,2,3,0,0,10,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,622,621,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,0,0,0,14,-4,-74.368835,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.19,53.94,38.91,52.63,5,2,3,0,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,623,-9,622,621,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.29175,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,624,-9,622,621,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.65302,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +281,349,625,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,5.9912319,5.9301815,0,0,-1023.0388,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1422663,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,7,13,2,1,4151,471003.44,223120.41,-7517.5693,0,2536.0093,0,229.72902 +281,350,626,-9,-9,625,1,1,35,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1049.7115,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,381,82791.43,0,0,0,0,0,364.59479 +282,351,627,628,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,6,11,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9941998,0,55,45,47.46,52.7,8,1,1,0,0,0,12,1,1,695,284632.06,0,192917.78,0,0,0,1561.3125 +282,351,628,627,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-11,0,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.46,52.7,55,45,8.333333333333334,1,1,0,0,0,12,1,1,695,284632.06,0,192917.78,0,0,0,1561.3125 +283,352,629,631,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1136532,9.3265924,0,7,-5,93.052284,0,2,2,2021,11,0,40,36,1,0,0,33.01482,33.01482,.05,.05,0,0,0,0,0,0,0,0,0,3.5309391,0,48.87,58.55,48.98,57.22,8.333333333333334,1,1,0,0,8,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +283,352,630,-9,629,631,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.9833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +283,352,631,629,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.9069672,8.1902933,0,7,5,96.591377,0,3,3,2021,9,0,44,42,1,0,0,15.304834,15.304834,.05,.05,0,0,0,0,0,0,0,0,0,.99257314,0,48.98,57.22,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +284,353,632,-9,633,634,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.7728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,633,634,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.0316811,7.9277325,0,8,0,20.600416,0,2,1,2021,12,0,26,26,1,0,0,11.213729,11.213729,0,0,0,0,0,0,0,0,0,0,0,3.8648074,0,49.28,50.19,57.06,57.76,3.333333333333333,1,1,0,0,7,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,634,633,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.7738285,9.1591444,0,8,0,47.816326,0,2,2,2021,11,0,38,35,1,0,0,26.140377,26.140377,.05,.05,0,0,0,0,0,0,0,0,0,6.5811973,0,57.06,57.76,49.28,50.19,6.666666666666667,1,1,0,0,9,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,635,-9,633,634,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1109.5558,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +285,354,636,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.3523879,7.4312043,0,0,-926.34998,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.7654989,3.7566073,16.226782,0,1,1,0,0,8.0454321,58.85,29.84,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,852,463785.94,251550.52,260670.73,0,0,0,1508.0671 +286,355,637,639,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9511204,8.9771585,0,4,1,-61.443485,0,-9,-9,2021,9,0,40,40,1,1,0,20.036631,20.036631,0,0,0,0,0,0,0,0,1,1,0,6.1626763,0,53,55,45.22,63.14,8,1,1,0,0,1,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,638,-9,639,637,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.53589,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,639,637,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,5.9550209,6.04566,0,4,-1,-1.1409621,0,-9,-9,2021,12,0,4,4,1,0,0,10.327192,10.327192,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,53,55,8.333333333333334,1,1,0,0,8,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,640,-9,639,637,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.546,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +287,356,641,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.9207892,6.0846429,0,0,-1008.4622,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.4273448,6.38166,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,2135,15137.477,-32385.965,0,0,0,0,375.45804 +288,357,642,643,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,24,1,-31.797909,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47365028,0,43.71,56.91,57.16,56.15,8.333333333333334,1,1,0,0,7,6,3,1,410,313729.56,184031.81,126335.78,61384.164,0,0,2177.2754 +288,357,643,642,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2884245,8.1525507,0,8,-1,-133.42789,0,3,3,2021,7,0,41,40,1,0,0,9.5321283,9.5321283,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.71,56.91,8.333333333333334,1,1,0,0,10,6,3,1,410,313729.56,184031.81,126335.78,61384.164,0,0,2177.2754 +289,358,644,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.9138064,7.296124,0,0,0,-867.20465,0,3,3,2021,8,0,20,20,1,0,0,6.7045226,6.7045226,0,0,.05,0,0,0,0,0,1,1,0,0,0,37.93,48.71,-9,-9,3.333333333333333,1,1,0,1,9,6,2,1,314,242593.27,64403.094,114243.4,0,0,0,1466.2759 +290,359,645,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5801935,6.5624323,0,0,-1050.5909,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9410872,41.37,22.62,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,197,391221.91,130945.2,151004.55,0,0,0,940.50171 +291,360,646,649,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2365303,8.9029236,0,6,3,-.73538798,0,2,2,2021,11,1,37,39,1,1,0,25.80979,25.80979,.05,.05,0,0,0,0,0,0,1,1,0,2.9388165,0,44.02,60.7,42.95,61.24,8.333333333333334,1,1,0,0,7,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,647,-9,649,646,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.73505,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,648,-9,649,646,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.3877,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,649,646,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.2510948,9.2063875,0,6,-3,160.14191,0,2,2,2021,19,6,50,32,1,6,0,15.965476,15.965476,.05,.05,0,0,0,0,0,0,1,1,0,1.3646359,0,42.95,61.24,44.02,60.7,6.666666666666667,1,1,0,0,7,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +292,361,650,651,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,4.0507045,4.2388287,41,-2,32.120834,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4690409,4.2417989,59.46,44.28,67.09999999999999,28.38,8.333333333333334,1,1,0,0,5,2,4,1,327.5,1628794.5,1164618.3,256439.97,0,0,0,3053.2488 +292,361,651,650,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.1934214,8.4247246,41,2,-25.615276,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1356997,8.4390879,67.09999999999999,28.38,59.46,44.28,8.333333333333334,1,1,0,0,10,2,4,1,327.5,1628794.5,1164618.3,256439.97,0,0,0,3053.2488 +293,362,652,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.7954793,5.6276693,0,0,-1027.9075,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6660552,43.49,50.26,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,197,383534.03,316141.19,189671.19,0,0,0,573.42877 +294,363,653,-9,-9,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-1020.6223,-9,-9,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,4722,-21196.465,0,0,0,0,0,276.76056 +295,364,654,655,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,5.9468107,6.4267545,12,3,-31.293619,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9285736,5.9337616,41.81,36.58,57.33,53.46,5,1,1,0,0,6,8,3,1,458,542837.44,390072.72,0,0,0,0,3008.686 +295,364,655,654,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,7.1814971,8.0432186,7.5439196,12,-3,-59.441826,0,2,2,2021,10,0,5,10,1,0,0,40.020557,40.020557,0,0,0,0,0,0,0,2,1,1,0,7.0683293,7.4183578,57.33,53.46,41.81,36.58,8.333333333333334,1,1,0,0,14,8,3,1,458,542837.44,390072.72,0,0,0,0,3008.686 +296,365,656,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.2026501,8.2524834,0,0,0,-1004.9433,0,2,-9,2021,13,2,41,0,1,2,0,9.7672215,9.7672215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,629,-75929.492,127513.84,0,0,0,0,1313.9623 +297,366,657,658,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3808298,8.3611097,0,6,2,84.494026,0,2,2,2021,13,2,37,40,1,2,0,12.86449,12.86449,.05,.05,0,0,0,0,0,0,0,0,0,5.5890903,0,45.91,59.89,43.95,51.24,5,1,1,0,0,7,5,5,1,804.5,750862.25,703968,195106.66,22747.303,2828.7241,0,3810.0688 +297,366,658,657,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.2298908,8.1904783,2.4566629,6,-2,-38.005596,0,3,3,2021,13,3,37,39,1,3,0,10.327697,10.327697,.05,.05,0,0,0,0,0,2,0,0,0,6.9988546,2.691057,43.95,51.24,45.91,59.89,8.333333333333334,1,1,0,0,7,5,5,1,804.5,750862.25,703968,195106.66,22747.303,2828.7241,0,3810.0688 +297,367,659,-9,658,657,1,0,22,0,0,0,1,1,-9,0,4,6.6515489,6.5047274,0,0,0,-1159.9945,0,3,2,2021,15,3,15,15,1,3,1,7.3372688,7.3372688,0,0,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,-9,-9,1.666666666666667,1,1,0,0,7,5,2,1,1785,-66147.617,0,0,0,0,0,1490.3684 +298,368,660,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.9243383,9.048583,5.7500873,0,0,-890.77386,0,3,3,2021,10,0,45,43,1,1,0,22.20886,22.20886,0,0,0,0,0,0,0,0,0,0,0,0,5.9660182,51,48,-9,-9,7,1,1,0,0,9,4,5,1,455,600298.31,-25127.02,341568.31,0,0,0,2399.1279 +298,369,661,-9,-9,660,1,1,26,0,0,0,1,1,-9,0,4,8.0067139,8.3465891,0,0,0,-960.18787,0,2,2,2021,10,0,37,41,1,1,1,11.257908,11.257908,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,4,4,1,429,4008.6458,0,0,0,0,0,1326.66 +299,370,662,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9416561,7.9471989,0,0,0,-849.7262,0,2,2,2021,9,0,45,40,1,0,0,6.3794627,6.3794627,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,1232,412249.09,329393.53,0,0,0,0,1196.2874 +300,371,663,664,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.5015731,7.6145439,41,-5,-168.29507,0,3,3,2021,13,1,0,37,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5069294,7.4898057,52.77,55.33,52.88,56.68,5,1,1,0,0,13,5,5,1,5419,1418069.5,822268.63,296444.47,0,0,0,5314.8291 +300,371,664,663,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.7238092,9.0140266,8.886385,41,5,24.48097,0,2,3,2021,11,0,19,19,1,0,0,13.174355,13.174355,0,0,0,0,0,0,0,0,0,0,0,8.3329592,8.7481165,52.88,56.68,52.77,55.33,8.333333333333334,1,1,0,0,11,5,5,1,5419,1418069.5,822268.63,296444.47,0,0,0,5314.8291 +300,372,665,-9,663,664,1,1,27,0,0,0,1,1,-9,0,4,9.0357771,9.0189571,0,0,0,-913.68164,0,2,2,2021,13,1,56,60,1,1,1,15.231651,15.231651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,5,1,1,0,0,6,5,5,1,797,118827.61,67652.594,0,0,0,0,3018.0137 +301,373,666,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,4.9784923,4.8597765,0,0,-883.73737,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9632034,4.9479465,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,507,13231.385,-25656.121,0,0,0,0,482.37375 +302,374,667,-9,668,669,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.43408,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +302,374,668,669,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.3787746,8.2664919,0,9,-1,-82.543938,0,2,1,2021,4,0,25,25,1,0,0,14.601764,14.601764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +302,374,669,668,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.5446177,8.8421745,0,9,1,202.91507,0,2,2,2021,11,3,42,37,1,3,0,16.934519,16.934519,.05,.05,0,0,0,0,0,0,1,1,0,3.9787126,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +303,375,670,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.1362295,8.6534376,0,0,0,-931.47919,0,1,1,2021,11,2,43,42,1,2,0,10.404066,10.404066,.05,.05,0,0,0,0,0,0,0,0,0,3.2299962,0,54.67,57.49,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,1037,290964.09,97282.336,0,0,0,343.42303,2387.2805 +304,376,671,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5261912,5.7807536,0,0,-953.40063,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8046556,5.4526701,45.99,57.05,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1297,592077.88,0,578504.63,0,0,0,938.9126 +305,377,672,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8812032,7.6108346,0,0,0,-969.74341,0,3,3,2021,17,6,43,30,1,6,0,7.2177658,7.2177658,.05,.05,0,0,0,0,0,0,0,0,0,.78528166,0,38.38,56.81,-9,-9,5,1,1,0,0,8,9,3,1,338,338236.34,-69621.273,224128.11,0,0,-809.83978,1010.282 +306,378,673,-9,675,674,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-800.37628,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,674,675,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.4151096,8.589469,0,6,1,.010023809,0,2,2,2021,9,1,53,53,1,1,0,8.6223402,8.6223402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,38.89,57.72,6.666666666666667,1,1,0,0,4,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,675,674,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.4914327,7.4867487,0,6,-1,134.01942,0,2,2,2021,12,0,30,30,1,0,0,6.8069534,6.8069534,0,0,0,0,0,0,0,0,1,1,0,3.1129243,0,38.89,57.72,51.84,51.67,6.666666666666667,1,1,0,0,6,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,676,-9,675,674,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.746,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,677,-9,675,674,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.45593,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +307,379,678,679,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.0285897,6.0659275,22,1,66.534004,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8018174,49.11,31,44.32,52.33,6.666666666666667,1,1,0,0,12,9,3,1,1040,920649.88,475841.91,303049.53,0,5324.501,0,1925.5728 +307,379,679,678,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7149744,7.7686043,5.8940105,3,-1,42.251335,0,2,3,2021,20,9,32,32,1,9,0,9.3347273,9.3347273,0,0,0,0,0,0,0,2,1,1,0,0,6.3134418,44.32,52.33,49.11,31,3.333333333333333,1,1,0,0,15,9,3,1,1040,920649.88,475841.91,303049.53,0,5324.501,0,1925.5728 +308,380,680,681,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4231119,8.5018921,0,6,-3,-35.572906,0,3,3,2021,7,0,40,42,1,0,0,12.122755,12.122755,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,226.5,386733.09,387358.06,157289.19,0,0,0,2628.8447 +308,380,681,680,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.063674,8.3491812,5.3549547,6,3,154.84605,0,-9,-9,2021,6,0,40,40,1,0,0,9.6352625,9.6352625,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3307853,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,226.5,386733.09,387358.06,157289.19,0,0,0,2628.8447 +309,381,682,683,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.5613132,7.2293344,43,-1,98.546577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4625287,7.0096321,54.79,55.86,50,47,8.333333333333334,1,1,0,0,0,2,2,1,1399.5,-5629.8633,82459.414,0,0,0,0,2043.9801 +309,381,683,682,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0263219,6.3378186,43,1,-109.87916,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,6.2161555,0,0,1,1,0,4.6750112,6.5211949,50,47,54.79,55.86,8.333333333333334,1,1,0,0,0,2,2,1,1399.5,-5629.8633,82459.414,0,0,0,0,2043.9801 +310,382,684,685,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.2438231,8.1009912,34,7,25.671492,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1014395,8.3132296,43.79,54.07,54.74,57.22,8.333333333333334,1,1,0,0,6,10,4,1,981,1109576.3,601350.5,389998.53,0,0,0,3903.2002 +310,382,685,684,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,34,-7,36.33194,0,2,3,2021,6,0,0,8,3,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.9632196,0,54.74,57.22,43.79,54.07,8.333333333333334,1,1,0,0,13,10,4,1,981,1109576.3,601350.5,389998.53,0,0,0,3903.2002 +311,383,686,687,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,5,-3,-62.748943,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.45,48.91,42.59,47.74,6.666666666666667,2,3,1,0,0,9,3,1,1588,304260.63,54025.793,273648.19,0,35202.75,126.86298,1317.3193 +311,383,687,686,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.1330023,8.0698977,0,5,3,43.132778,0,-9,-9,2021,11,0,35,35,1,0,0,10.929707,10.929707,.05,.05,0,0,0,0,0,0,0,0,0,3.2571893,0,42.59,47.74,43.45,48.91,6.666666666666667,2,3,0,0,9,9,3,1,1588,304260.63,54025.793,273648.19,0,35202.75,126.86298,1317.3193 +312,384,688,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.7833743,6.8970289,0,0,-1046.4182,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5536993,6.9563189,52,45,-9,-9,8,1,1,0,0,0,11,2,1,1538,80374.641,29076.066,140700.83,0,0,0,2096.29 +313,385,689,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.7424231,8.8514681,2.2677908,0,0,-942.37402,0,2,2,2021,7,0,40,39,1,0,0,15.42311,15.42311,.05,.05,0,0,0,0,0,0,0,0,0,5.2072277,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,672,126045.22,205058.97,61201.473,40255.637,0,0,3169.5056 +314,386,690,691,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7761307,8.7032404,0,6,-12,-41.215965,0,2,2,2021,6,0,40,40,1,0,0,19.252289,19.252289,0,0,0,0,0,0,0,2,0,0,0,5.2037969,0,65.73999999999999,27.66,57.73,54.53,6.666666666666667,1,1,0,0,7,4,5,1,1092.5,2522617.8,1868061.5,240041.81,0,0,0,4272.0576 +314,386,691,690,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.750493,8.9281416,0,6,12,2.7330248,0,2,2,2021,8,0,42,44,1,0,0,18.32785,18.32785,.05,.05,0,0,0,0,0,0,0,0,0,4.7299356,0,57.73,54.53,65.73999999999999,27.66,8.333333333333334,1,1,0,0,7,4,5,1,1092.5,2522617.8,1868061.5,240041.81,0,0,0,4272.0576 +315,387,692,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,0,0,-975.61798,1,-9,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.16,24.95,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,322,337720.78,-90848.445,138565.44,0,0,0,763.20392 +316,388,693,694,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.6137953,7.6691432,0,5,-1,-110.51499,0,2,2,2021,14,2,25,25,1,2,0,13.243124,13.243124,0,0,0,0,0,0,0,0,1,1,0,0,0,35.32,36.93,33.74,54.46,1.666666666666667,1,1,0,0,13,4,3,0,1385,201653.59,0,220199.06,78213.57,0,0,1976.6416 +316,388,694,693,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,5.4071059,5.4362707,0,5,1,24.899717,0,-9,3,2021,12,0,10,10,1,0,0,3.2379632,3.2379632,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,54.46,35.32,36.93,1.666666666666667,1,1,0,0,11,4,3,0,1385,201653.59,0,220199.06,78213.57,0,0,1976.6416 +316,389,695,-9,694,693,1,0,25,0,0,0,2,2,-9,0,3,7.802155,7.7228103,0,0,0,-945.71478,0,3,3,2021,12,0,38,36,1,0,1,6.8469625,6.8469625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.4,55.59,-9,-9,1.666666666666667,1,1,0,0,13,4,3,0,1161,-34667.766,-16452.527,0,0,0,0,516.51544 +317,390,696,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9454064,8.2808647,0,0,0,-994.70367,0,3,2,2021,9,0,54,47,1,0,0,8.4290257,8.4290257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,770,181303.03,39847.219,271380,70691.563,11907.326,0,1660.5505 +317,391,697,-9,696,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1052.0687,-9,1,-9,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8765469,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,530,45616.043,0,0,0,0,0,1085.1819 +318,392,698,699,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,9.5219679,9.5109634,0,32,-1,100.43864,0,2,2,2021,19,7,27,-9,1,7,0,55.065742,55.065742,0,0,0,0,0,0,0,2,1,1,0,7.8049607,0,45.47,23.9,43.13,35.47,3.333333333333333,2,3,0,1,12,8,5,1,431.5,2164723.3,945886.38,1345317.4,0,0,0,10395.13 +318,392,699,698,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4790154,8.5593815,0,32,1,-30.325268,0,3,3,2021,17,5,60,70,1,5,0,10.029895,10.029895,0,0,0,0,0,0,0,0,1,1,0,0,0,43.13,35.47,45.47,23.9,3.333333333333333,1,1,0,1,13,8,5,1,431.5,2164723.3,945886.38,1345317.4,0,0,0,10395.13 +318,393,700,-9,698,699,1,1,23,0,0,0,1,1,-9,0,5,8.3556843,8.7298841,0,0,0,-959.91187,0,2,1,2021,6,0,60,40,1,0,1,8.5405645,8.5405645,.05,.05,0,0,0,0,0,0,1,1,0,1.3381618,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,3,8,5,1,547,116525.68,-60209.32,0,0,0,0,1488.1134 +319,394,701,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.5390258,7.8192773,0,0,0,-1044.0273,0,2,2,2021,3,0,30,25,1,0,0,7.2079363,7.2079363,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,0,2,3,0,1,3,8,3,0,537,410870.22,294619.44,0,0,0,0,1392.7035 +320,395,702,703,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.9885807,7.7487206,48,1,-134.79591,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8369074,57.06,57.76,57.16,56.15,10,1,1,0,0,0,6,3,1,894.5,2155977.3,415900.97,1179653.6,0,0,0,3234.0142 +320,395,703,702,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,6.5494552,6.4977202,48,-1,80.203323,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3583598,6.7507491,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,1,894.5,2155977.3,415900.97,1179653.6,0,0,0,3234.0142 +321,396,704,705,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1199574,6.9768219,42,-4,-63.193092,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7721236,6.8163705,61.43,43.34,54.37,54.8,8.333333333333334,1,1,0,0,4,5,4,1,1613.5,484440.56,78174.703,170807,0,0,0,3530.6584 +321,396,705,704,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.8165369,8.2577829,7.850234,42,4,-74.9515,0,-9,-9,2021,9,0,20,15,1,0,0,12.859007,12.859007,.05,.05,0,0,0,0,0,0,1,1,0,6.7862401,8.3290396,54.37,54.8,61.43,43.34,8.333333333333334,1,1,0,0,14,5,4,1,1613.5,484440.56,78174.703,170807,0,0,0,3530.6584 +322,397,706,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,7.5517201,7.0859756,0,0,-862.09766,-9,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1881695,7.7336512,62.54,11.99,-9,-9,5,1,1,0,0,0,2,3,1,1606,555249.44,395667.59,180454.72,0,0,0,1995.8643 +323,398,707,709,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.0525017,8.7850561,0,10,5,-14.233212,0,1,2,2021,14,3,46,50,1,3,0,20.14674,20.14674,.05,.05,0,0,0,0,0,0,1,1,0,5.9089637,0,51.23,40.44,47.31,50.2,5,1,1,0,1,12,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,708,-9,707,709,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.82599,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,709,707,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.870873,7.7389312,0,10,-5,-151.65488,0,2,-9,2021,8,1,48,0,1,1,0,7.0410089,7.0410089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,51.23,40.44,8.333333333333334,1,1,0,1,9,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,710,-9,707,709,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.1414,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +324,399,711,-9,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,0,7.7984438,8.0638113,0,0,-1126.5417,-9,-9,-9,2021,11,0,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1987448,7.3206229,49,48,-9,-9,7,3,4,0,0,0,8,3,0,286,672442.13,569789.69,382162.44,249756.31,16707.047,5959.2603,1436.775 +324,400,712,713,711,-9,1,0,38,0,2,0,2,2,-9,0,4,8.3210936,8.5842838,0,14,-11,-54.495483,0,2,2,2021,11,0,40,40,1,2,0,11.359395,11.359395,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,9,8,4,0,914,346476.94,87575.328,431294.84,201396.03,0,4258.0439,3370.7876 +324,400,713,712,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.4637318,8.4490681,0,9,11,-54.690922,0,-9,-9,2021,9,0,39,54,1,1,0,12.15972,12.15972,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,12,8,4,0,914,346476.94,87575.328,431294.84,201396.03,0,4258.0439,3370.7876 +325,401,714,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5772743,6.7636251,0,0,-957.57928,0,-9,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6229358,8.26,66.53,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,588,192416.33,69944.477,66365.484,0,0,0,1280.9825 +326,402,715,716,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.859457,7.4500728,0,17,6,-29.739634,0,2,3,2021,8,0,30,30,1,0,0,7.9554887,7.9554887,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,54.24,52.54,54.24,8.333333333333334,1,1,0,0,13,8,4,0,1843.5,129607.31,-7280.793,84403.773,26003.285,3346.1023,17194.969,2583.1904 +326,402,716,715,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.2580357,8.031312,0,13,-6,-24.588202,0,-9,-9,2021,9,0,48,48,1,0,0,10.790472,10.790472,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,54.24,52.54,54.24,8.333333333333334,1,1,0,0,14,8,4,0,1843.5,129607.31,-7280.793,84403.773,26003.285,3346.1023,17194.969,2583.1904 +326,403,717,-9,715,716,1,0,19,0,0,0,2,2,-9,0,3,7.6356788,7.545639,0,0,0,-842.96191,0,3,2,2021,11,1,30,40,1,1,1,8.3714466,8.3714466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,337,-50237.762,85151.203,0,0,0,0,1135.8546 +327,404,718,719,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,8,-3,78.62825,0,3,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.7396255,0,43.34,39.33,49.45,28.58,5,1,1,0,0,0,12,2,1,644.5,566075.94,163872.92,288488.13,0,0,0,3406.7471 +327,404,719,718,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,7.1961422,7.3314939,8,3,-13.213289,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,22.172794,0,0,1,1,0,8.2752094,7.1683803,49.45,28.58,43.34,39.33,6.666666666666667,1,1,0,0,0,12,2,1,644.5,566075.94,163872.92,288488.13,0,0,0,3406.7471 +328,405,720,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1961994,7.1038451,0,0,-934.25037,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5424602,7.1536822,54.2,57.49,-9,-9,10,1,1,0,0,0,9,2,1,800,587296.06,100277.96,297143.09,0,0,0,460.45306 +329,406,721,722,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,58,-1,-50.712269,0,2,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0754013,0,43.22,20.83,57.33,42.93,1.666666666666667,1,1,0,0,0,6,2,1,929,1123723,325578.97,401017.84,0,0,0,1345.2451 +329,406,722,721,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,7.1044183,7.0079474,13,1,-57.374302,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.0398889,7.0055246,57.33,42.93,43.22,20.83,8.333333333333334,1,1,0,0,0,6,2,1,929,1123723,325578.97,401017.84,0,0,0,1345.2451 +330,407,723,724,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.1276774,6.9539032,3.4309716,11,15,-59.227272,0,2,2,2021,6,0,18,25,1,0,0,9.9714928,9.9714928,0,0,0,0,0,0,0,0,1,1,0,5.3753166,2.8971419,53.45,49.53,49.09,57.3,8.333333333333334,1,1,0,0,11,7,4,0,486,518129.13,222114.03,580216,57181.492,0,0,3110.4956 +330,407,724,723,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4773655,8.282733,0,11,-15,78.308952,0,-9,-9,2021,12,0,50,40,1,0,0,9.5966406,9.5966406,.05,.05,0,0,0,0,0,0,1,1,0,5.722568,0,49.09,57.3,53.45,49.53,5,1,1,0,0,13,7,4,0,486,518129.13,222114.03,580216,57181.492,0,0,3110.4956 +331,408,725,726,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.6387153,6.7946768,62,2,-28.881388,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,13.108481,35.473003,139.33186,120,1,1,0,0,6.8031635,34.97,39.35,53.23,7.33,5,1,1,0,0,0,11,3,1,639.5,850746.38,243223.23,174285.53,0,0,0,2771.5889 +331,408,726,725,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,7.3464575,7.2957735,62,-2,46.95306,-9,3,3,2021,28,9,0,0,4,9,0,0,0,0,0,0,1,0,8.3988495,0,0,1,1,0,0,7.2941742,53.23,7.33,34.97,39.35,5,1,1,0,0,0,11,3,1,639.5,850746.38,243223.23,174285.53,0,0,0,2771.5889 +332,409,727,728,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,3.9749067,4.1140184,9,13,96.782753,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8614457,3.9922342,48.53,58.91,58.89,48.6,8.333333333333334,1,1,0,0,5,9,4,1,3025.5,639516,313183.13,312648.25,0,7749.5557,0,1684.4399 +332,409,728,727,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6587715,8.796689,0,9,-13,8.7307606,0,-9,-9,2021,7,0,40,40,1,0,0,17.0592,17.0592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,48.53,58.91,10,1,1,0,0,12,9,4,1,3025.5,639516,313183.13,312648.25,0,7749.5557,0,1684.4399 +333,410,729,730,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,0,0,0,4,9,81.574478,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.9,54.54,20.23,65.13,1.666666666666667,1,1,1,0,2,11,3,0,1100.5,-5198.7383,-21479.945,0,0,0,0,2183.116 +333,410,730,729,-9,-9,1,0,22,0,0,1,1,0,0,0,3,0,8.0162382,7.7958102,4,0,13.142918,-9,-9,-9,2021,29,12,0,0,2,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9548421,0,20.23,65.13,19.9,54.54,5,1,1,0,0,0,11,3,0,1100.5,-5198.7383,-21479.945,0,0,0,0,2183.116 +334,411,731,732,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.171792,7.9975128,0,5,-5,19.018265,0,2,3,2021,9,0,50,0,1,0,0,7.4425931,7.4425931,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.33,55.93,44.33,56.73,6.666666666666667,1,1,0,0,4,10,5,0,655.5,324946.63,158520.22,219474.44,87064.609,5252.9951,3619.2275,3661.6528 +334,411,732,731,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.6017036,8.7462673,0,5,5,24.788731,0,2,2,2021,10,0,36,36,1,0,0,24.66407,24.66407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.33,56.73,46.33,55.93,8.333333333333334,1,1,0,0,10,10,5,0,655.5,324946.63,158520.22,219474.44,87064.609,5252.9951,3619.2275,3661.6528 +335,412,733,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2917347,7.8945441,0,0,0,-1011.5997,0,-9,-9,2021,24,12,39,38,1,12,0,7.635519,7.635519,0,0,0,0,0,0,0,2,0,0,0,1.4736809,0,29.54,58.14,-9,-9,1.666666666666667,3,4,0,0,9,6,4,1,498,69816.258,46230.813,160550.56,92820.578,0,0,1155.1448 +336,413,734,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.1185036,6.728333,0,0,0,-1096.0493,0,1,1,2021,14,2,16,0,1,2,0,7.6401172,7.6401172,0,0,0,0,0,0,0,0,1,0,1,0,0,34.38,46.39,-9,-9,3.333333333333333,1,1,0,1,10,10,3,0,381,-4342.0508,0,0,0,0,0,1801.8057 +337,414,735,736,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.0633478,8.7086935,0,4,7,83.167603,0,-9,-9,2021,5,0,50,50,1,0,0,22.024027,22.024027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,8.333333333333334,1,1,0,0,5,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,736,735,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,7.1459765,7.2967949,0,4,-7,44.412601,0,-9,-9,2021,6,0,26,25,1,0,0,5.2298994,5.2298994,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,737,-9,736,735,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.99506,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,738,-9,736,735,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.3279,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +338,415,739,740,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,5.1593728,5.1375294,3,-10,37.229366,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6165752,5.5198736,30.77,22.6,34.03,26.65,1.666666666666667,1,1,0,0,0,10,2,0,838,263697.47,22784.529,149746.2,0,0,0,1993.177 +338,415,740,739,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,36,10,-46.572006,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.03,26.65,30.77,22.6,5,1,1,0,0,0,10,2,0,838,263697.47,22784.529,149746.2,0,0,0,1993.177 +339,416,741,742,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.1339436,7.3104486,6,-1,22.178988,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9566927,7.2434211,60.7,47.65,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,1385,577459.88,334786.34,167506.53,0,0,0,3921.9102 +339,416,742,741,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5631857,7.5226097,6,1,-58.476486,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3771472,7.3639889,57.33,53.46,60.7,47.65,8.333333333333334,1,1,0,0,0,2,3,1,1385,577459.88,334786.34,167506.53,0,0,0,3921.9102 +340,417,743,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.6491742,8.090889,0,0,-893.71045,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.1180534,7.9770489,58.23,35.22,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,232,1400059.8,588949.88,355753.22,0,0,0,1987.1891 +341,418,744,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.2800188,9.1522837,0,0,0,-943.02368,0,2,2,2021,10,1,43,43,1,1,0,20.122492,20.122492,.05,.05,0,0,0,0,0,0,1,1,0,3.5788209,0,51.67,60.18,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,861,219611.53,39329.535,106916.09,63760.578,0,0,3380.0286 +342,419,745,746,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.208271,7.1658735,0,1,-7,86.561325,-9,-9,-9,2021,11,0,17,0,1,2,0,7.1296344,7.1296344,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,52,55,7,4,1,0,0,1,13,3,1,555.5,276896.31,-74664,166934.52,0,2475.9502,3662.4534,711.73456 +342,419,746,745,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.5908456,6.820724,0,1,7,-184.96147,0,3,3,2021,1,0,56,70,1,0,0,2.2838748,2.2838748,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,49,56,0,1,1,0,0,11,13,3,1,555.5,276896.31,-74664,166934.52,0,2475.9502,3662.4534,711.73456 +343,420,747,748,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.3692999,6.1982236,56,-3,-32.796535,0,-9,2,2021,22,11,0,0,4,11,0,0,0,0,0,0,1,0,7.7440009,0,0,1,1,0,1.0399095,6.4985456,38.64,31.15,41.46,53.68,1.666666666666667,1,1,0,0,0,5,3,1,700,915858.5,558868.75,128759.77,0,0,0,2268.3586 +343,420,748,747,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.759654,7.2111588,56,3,-48.548153,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,1.6966677,7.3595653,41.46,53.68,38.64,31.15,7,1,1,0,0,0,5,3,1,700,915858.5,558868.75,128759.77,0,0,0,2268.3586 +344,421,749,-9,752,750,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.7341,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,750,752,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,7.6880317,7.9456019,0,11,1,-119.73423,0,2,3,2021,7,0,38,38,1,0,0,5.5011296,5.5011296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.2,56.93,46.65,58.6,8.333333333333334,2,3,0,0,12,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,751,-9,752,750,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.66168,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,752,750,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,7.3548436,7.1335645,0,11,-1,149.77271,0,2,2,2021,16,4,18,12,1,4,0,11.689738,11.689738,.05,.05,0,0,0,0,0,0,1,1,0,.11480911,0,46.65,58.6,46.2,56.93,8.333333333333334,2,3,0,1,10,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +345,422,753,754,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3728609,7.6007652,0,34,5,23.936581,0,2,2,2021,6,0,30,7,1,0,0,5.5612779,5.5612779,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,47.58,57.65,56.13,6.666666666666667,2,3,0,0,6,8,3,0,836.5,654588.88,438567.19,225735.25,0,0,0,1299.3657 +345,422,754,753,-9,-9,1,1,57,0,0,0,1,1,1,0,5,6.8546753,6.6064925,0,34,-5,167.45583,-9,-9,1,2021,6,0,10,0,1,0,0,9.6130714,9.6130714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,46.53,47.58,10,1,1,0,0,2,8,3,0,836.5,654588.88,438567.19,225735.25,0,0,0,1299.3657 +345,423,755,-9,753,754,1,1,28,0,0,0,1,1,-9,0,3,7.7581177,7.8507142,0,0,0,-1117.2866,0,2,1,2021,18,7,38,35,1,7,1,7.6663013,7.6663013,0,0,0,0,0,0,0,0,1,1,0,0,0,37.32,56,-9,-9,6.666666666666667,4,2,0,0,6,8,3,0,397,-5470.7656,43197.809,0,0,0,0,710.74646 +346,424,756,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.8010058,7.6768274,0,0,-1003.9346,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6400328,8.0008106,49.35,59.64,-9,-9,10,1,1,0,0,0,9,3,1,787,972365.38,476887.03,605136.31,0,0,0,1742.9513 +347,425,757,-9,758,761,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.7818,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,758,761,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,6,0,7.1005917,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1477408,0,49.25,61.25,57.16,56.15,10,1,1,0,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,759,-9,758,761,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1068,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,760,-9,758,761,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1017.5488,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,761,758,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.6503582,9.3269119,0,6,0,81.657341,0,2,1,2021,10,0,52,52,1,0,0,26.103228,26.103228,.05,.05,0,0,0,0,0,0,1,1,0,8.2742329,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,6,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +348,426,762,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-919.59967,0,3,2,2021,23,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.37,26.3,-9,-9,5,1,1,0,0,0,12,1,0,60,-131749.02,0,0,0,0,0,1119.4773 +349,427,763,764,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6721363,7.475287,0,37,0,-33.820816,0,2,2,2021,9,1,30,25,1,1,0,8.5928373,8.5928373,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.31,51.53,8.333333333333334,1,1,0,0,13,8,5,0,653.5,420776.81,96326,501228.38,96438.844,5248.6035,0,3310.7083 +349,427,764,763,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.6600037,8.8199701,0,37,0,34.196053,0,3,3,2021,16,5,50,55,1,5,0,14.728618,14.728618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,51.77,58.57,8.333333333333334,1,1,0,0,13,8,5,0,653.5,420776.81,96326,501228.38,96438.844,5248.6035,0,3310.7083 +350,428,765,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.4997282,9.753212,0,11,6,5.3321018,0,2,1,2021,17,5,43,43,1,5,0,37.621094,37.621094,.05,.05,0,0,0,0,0,2,0,0,0,4.1431513,0,48.28,60.18,52.82,53.97,6.666666666666667,1,1,0,0,12,9,5,1,360,406692.97,101678.23,0,0,0,0,5409.4419 +350,429,766,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0958185,9.1166639,0,11,-6,112.65994,0,1,3,2021,7,0,40,82,1,0,0,28.623396,28.623396,0,0,.05,0,0,0,0,0,0,0,0,4.7314687,0,52.82,53.97,48.28,60.18,8.333333333333334,1,1,0,0,13,9,5,1,453,456295.66,136433.19,280133.34,251649.83,0,0,2637.2886 +350,430,767,-9,765,-9,1,1,22,0,0,1,2,0,0,0,4,0,6.3023615,6.3834949,0,0,-1092.3325,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0805125,0,40.52,62.31,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,231,37232.59,68919.422,0,0,0,0,-156.72363 +351,431,768,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,9.0584917,8.4240265,0,0,0,-1091.8971,0,1,1,2021,13,1,60,60,1,1,0,14.612866,14.612866,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,55.5,-9,-9,5,1,1,0,0,12,2,5,0,156,154441.31,0,0,0,0,0,3066.1797 +352,432,769,-9,774,773,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1038.1406,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,770,-9,774,773,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.70129,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,771,-9,774,773,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.9795,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,772,-9,774,773,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1094.2615,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,773,774,-9,-9,1,1,48,1,4,0,2,2,-9,0,5,8.7680159,8.9618235,0,17,12,55.331341,0,2,2,2021,6,0,35,35,1,0,0,25.993639,25.993639,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.63,55.6,52,54.51,8.333333333333334,1,1,0,0,4,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,774,773,-9,-9,1,0,36,1,4,0,1,1,-9,0,3,7.4381685,7.0894704,0,17,-12,44.566452,0,2,2,2021,9,1,18,18,1,1,0,9.7089367,9.7089367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,55.63,55.6,10,1,1,0,0,4,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +353,433,775,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,5.5450296,5.6910243,0,0,0,-1044.3928,0,-9,-9,2021,36,12,72,72,1,12,0,.4597272,.4597272,0,0,0,0,0,0,0,0,0,0,0,7.2204599,0,14.91,68.97,-9,-9,6.666666666666667,1,1,0,0,13,9,2,1,1612,80886.875,0,0,0,0,0,370.91193 +354,434,776,777,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,9.0197382,8.5456743,9,-8,-75.124435,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1235318,8.4244041,57.33,53.46,56.76,39.94,8.333333333333334,1,1,0,0,0,7,5,1,1352.5,1544836,1010127,334029.06,0,0,0,4842.2393 +354,434,777,776,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9914517,6.9734759,9,8,-2.1055503,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.7281547,0,0,1,1,0,3.0450456,7.553503,56.76,39.94,57.33,53.46,10,1,1,0,0,0,7,5,1,1352.5,1544836,1010127,334029.06,0,0,0,4842.2393 +355,435,778,779,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,0,0,0,22,-6,-2.0102324,0,3,3,2021,7,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4771767,0,54.36,39.67,52.24,50.75,6.666666666666667,1,1,1,0,4,2,3,1,1105.5,896667.19,776987.13,186079.91,0,0,0,1643.4585 +355,435,779,778,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.7630839,7.6954193,0,22,6,-53.776398,0,2,2,2021,11,0,36,37,1,0,0,8.3255968,8.3255968,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,54.36,39.67,5,4,5,0,0,11,2,3,1,1105.5,896667.19,776987.13,186079.91,0,0,0,1643.4585 +356,436,780,781,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.9154873,9.1352453,0,10,0,42.214058,0,2,2,2021,6,0,45,40,1,0,0,24.433456,24.433456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,10,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,781,780,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.7152843,8.6335335,0,10,0,-50.232037,0,1,1,2021,6,0,45,35,1,0,0,14.294678,14.294678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,782,-9,781,780,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.66241,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,783,-9,781,780,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.9623,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +357,437,784,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.0894008,6.9420748,0,0,-885.64941,0,-9,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8607969,5.9622326,50,46,-9,-9,5,1,1,0,0,7,8,2,1,837,558848.81,63511.18,449019.38,0,0,0,1477.7029 +358,438,785,786,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.7765765,7.1908288,0,2,14,31.721195,0,2,2,2021,10,0,25,25,1,0,0,3.4260402,3.4260402,.05,.05,.05,0,0,0,0,0,0,0,0,8.2599812,0,54.37,54.8,50,54,8.333333333333334,1,1,0,0,8,2,3,1,283.5,921390.63,607544.31,190698.81,0,0,0,3970.0405 +358,438,786,785,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3107243,8.0502691,0,2,-14,28.475542,-9,-9,-9,2021,10,0,40,0,1,1,0,8.1010084,8.1010084,0,0,0,0,0,0,0,0,0,0,0,1.8039042,0,50,54,54.37,54.8,8,1,1,0,0,1,2,3,1,283.5,921390.63,607544.31,190698.81,0,0,0,3970.0405 +359,439,787,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8992062,8.7332211,0,0,0,-1009.143,0,1,2,2021,11,1,35,35,1,1,0,27.599144,27.599144,0,0,0,0,0,0,0,0,0,0,0,4.1156273,0,43.09,58.28,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,55,1305103,597828.25,589719.06,0,0,0,1989.0916 +359,440,788,-9,787,-9,1,0,30,0,0,0,1,1,-9,0,3,7.9945326,7.7779465,0,0,0,-1120.5769,0,1,-9,2021,11,0,30,30,1,0,1,10.021228,10.021228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.7,54.28,-9,-9,3.333333333333333,1,1,0,0,6,8,4,1,802,-226637.72,-37414.172,0,0,0,0,688.30951 +360,441,789,-9,791,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.6225,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +360,441,790,-9,791,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.276,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +360,441,791,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8394818,7.6031408,0,0,0,-860.64929,0,2,2,2021,12,0,25,25,1,0,0,9.8274937,9.8274937,.05,.05,0,0,0,0,0,0,1,1,0,3.5197096,0,48.45,49.46,-9,-9,10,1,1,0,0,10,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +361,442,792,793,-9,-9,1,1,67,0,1,0,1,1,-9,0,4,8.1051283,8.1580868,0,37,6,88.534081,0,3,2,2021,6,0,40,40,1,0,0,10.590122,10.590122,.05,.05,0,0,0,0,0,0,1,1,0,.46517071,0,57.16,56.15,48,54.77,8.333333333333334,2,3,0,0,14,8,3,0,470.5,299150,249713.88,0,0,0,3901.4902,2345.2495 +361,442,793,792,-9,-9,1,0,61,0,1,0,2,2,-9,0,4,0,0,0,37,-6,76.248642,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,54.77,57.16,56.15,6.666666666666667,2,3,0,1,0,8,3,0,470.5,299150,249713.88,0,0,0,3901.4902,2345.2495 +362,443,794,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,5.609611,5.9732656,5.2322865,0,0,-1015.0239,0,2,2,2021,7,0,4,0,1,0,0,8.3633986,8.3633986,0,0,0,0,0,0,0,74.5,1,1,0,0,5.6011429,56.82,30.99,-9,-9,8.333333333333334,1,1,0,0,4,2,2,0,172,146108.67,193487.28,224716.36,198042.86,0,14730.807,423.98401 +362,444,795,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-969.75848,0,2,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,943,57610.547,0,0,0,0,0,1219.3708 +363,445,796,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.905951,6.5468049,0,0,-1114.1262,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82862163,6.7077565,52,48,-9,-9,7,3,4,0,0,7,6,2,1,1539,147702.56,186914.95,0,0,0,0,426.27344 +364,446,797,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.576683,8.2033148,0,0,0,-912.69849,0,3,2,2021,15,3,80,40,1,3,0,6.6170316,6.6170316,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.15,56.66,-9,-9,6.666666666666667,1,1,0,0,14,5,4,1,37,338990.34,228114.27,187354.5,46279.398,0,1220.5275,1311.167 +365,447,798,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.0779829,8.2249422,0,0,-982.57367,0,3,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8594379,8.0427237,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,489,1070654.1,668951.13,215367.53,0,0,0,3224.5247 +366,448,799,800,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.82654,8.00982,0,8,5,-142.61058,0,3,3,2021,15,4,35,35,1,4,0,10.165937,10.165937,.05,.05,0,0,0,0,0,0,0,0,0,.55537122,0,45.15,32.61,35.25,58.05,6.666666666666667,1,1,0,0,8,12,4,1,411.5,222656.91,160179.34,77387.406,37682.508,0,1630.8188,2836.6538 +366,448,800,799,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.0617085,7.6858191,6.926734,8,-5,56.791817,0,2,2,2021,10,0,15,15,1,0,0,8.3833189,8.3833189,.05,.05,0,0,0,0,0,2,0,0,0,3.80896,6.71486,35.25,58.05,45.15,32.61,6.666666666666667,1,1,0,0,5,12,4,1,411.5,222656.91,160179.34,77387.406,37682.508,0,1630.8188,2836.6538 +367,449,801,803,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4911981,7.4445539,5.5834389,15,-3,161.9659,0,3,3,2021,12,0,16,16,1,0,0,12.210369,12.210369,.05,.05,0,0,0,0,0,0,1,1,0,5.7892346,0,30.77,64.34,48.45,49.46,5,1,1,0,0,15,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +367,449,802,-9,801,803,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-982.2019,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,51.58,-9,-9,10,1,1,0,0,0,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +367,449,803,801,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.8852725,8.2241945,0,13,3,-20.427757,0,-9,-9,2021,12,0,52,49,1,0,0,5.9497156,5.9497156,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.45,49.46,30.77,64.34,5,1,1,0,0,15,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +368,450,804,805,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.3122239,7.0446715,0,1,-1,-64.423172,-9,-9,-9,2021,11,0,53,0,1,1,0,3.4174478,3.4174478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,57.16,56.15,7,1,1,0,0,13,12,4,1,716.5,248020.09,103926.95,137891.58,0,894.44818,0,1424.2981 +368,450,805,804,807,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9745188,8.1355448,0,1,1,45.913517,-9,2,-9,2021,7,0,30,0,1,0,0,10.709898,10.709898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49,50,8.333333333333334,1,1,0,0,13,12,4,1,716.5,248020.09,103926.95,137891.58,0,894.44818,0,1424.2981 +368,451,806,-9,805,804,1,0,22,0,0,1,1,0,-9,0,4,0,6.6183333,6.8482738,0,0,-993.55377,-9,2,3,2021,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7634487,0,55.73,53.98,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,57,80696.922,0,0,0,0,0,-395.245 +368,452,807,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,7.3567262,7.3101387,0,0,-805.10773,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,129.59406,0,0,1,1,0,.12331163,7.2420163,44.93,18.74,-9,-9,10,1,1,0,0,0,12,3,1,137,462122.94,182899.45,142212.55,0,1447.4683,0,2115.9604 +369,453,808,810,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.6594687,8.3084364,0,6,-8,103.63475,0,2,2,2021,6,0,65,66,1,0,0,8.6334314,8.6334314,.05,.05,0,0,0,0,0,0,1,1,0,2.8590868,0,57.16,56.15,55.73,53.98,8.333333333333334,1,1,0,0,6,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,453,809,-9,810,808,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.6939,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,453,810,808,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.8385425,6.7996426,0,6,8,-97.457367,0,3,2,2021,5,0,31,15,1,0,0,2.7196739,2.7196739,0,0,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,454,811,-9,810,808,1,1,21,0,1,0,2,2,-9,0,5,7.505393,7.4883323,0,0,0,-1062.2305,0,2,2,2021,9,0,40,45,1,0,1,4.5119648,4.5119648,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,2,4,3,0,1142,88888.039,-115754.36,0,0,0,0,992.72931 +370,455,812,813,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,3.0598059,2.5933523,9,-1,78.203346,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0680094,2.3823974,56.13,32.19,57.7,55.88,10,4,5,0,0,0,2,2,1,151.5,212868.3,59654.363,137305.5,29763.848,0,0,1808.0038 +370,455,813,812,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,7.0747824,6.8332429,9,1,-68.466011,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.4442015,6.8150606,57.7,55.88,56.13,32.19,8.333333333333334,2,3,0,0,0,2,2,1,151.5,212868.3,59654.363,137305.5,29763.848,0,0,1808.0038 +371,456,814,-9,819,818,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1020.4844,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,815,-9,819,818,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-994.09888,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,816,-9,819,818,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.5488,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,817,-9,819,818,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.6014,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,818,819,-9,-9,1,1,48,0,4,0,2,2,-9,0,4,8.5048523,8.5732327,2.9673727,11,1,-70.77282,0,2,3,2021,12,1,50,40,1,1,0,10.471681,10.471681,.05,.05,0,0,0,0,0,0,1,1,0,2.628407,0,48.76,53.24,45.05,59.07,6.666666666666667,1,1,0,0,11,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,819,818,-9,-9,1,0,47,0,4,0,1,1,-9,0,5,8.5520077,8.5742168,0,11,-1,-94.489586,0,2,3,2021,14,3,30,40,1,3,0,21.779448,21.779448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.05,59.07,48.76,53.24,8.333333333333334,1,1,0,0,11,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +372,457,820,-9,822,821,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.463,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +372,457,821,822,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,8.0232439,7.5282774,0,5,2,-49.556213,0,-9,-9,2021,10,0,40,41,1,1,0,8.1508083,8.1508083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,7,1,1,0,0,1,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +372,457,822,821,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.5780249,7.6671109,0,5,-2,-11.326116,0,-9,2,2021,7,0,39,19,1,0,0,5.4032025,5.4032025,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,6.666666666666667,1,1,0,0,7,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +373,458,823,824,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.4634562,7.9698677,0,36,-3,-83.438416,0,3,2,2021,4,0,10,15,1,0,0,25.76129,25.76129,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.03,50.54,10,1,1,0,0,12,1,4,1,790.5,373661.06,487391.97,173611.03,0,1328.1635,0,2987.9756 +373,458,824,823,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.1797075,8.2606726,36,3,101.43305,0,3,3,2021,8,0,0,37,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.750442,0,46.03,50.54,57.06,57.76,5,1,1,0,0,12,1,4,1,790.5,373661.06,487391.97,173611.03,0,1328.1635,0,2987.9756 +374,459,825,826,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.1948524,7.4176116,8,2,76.861137,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.2724586,7.5947657,51.14,60.45,56.58,14.3,5,1,1,0,0,8,10,2,1,600,835982.75,200524.06,283880.31,0,0,-326.45853,2503.8235 +374,459,826,825,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,8,-2,-69.001907,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,12.909975,20.355494,134.90582,0,1,1,0,0,0,56.58,14.3,51.14,60.45,3.333333333333333,1,1,0,0,4,10,2,1,600,835982.75,200524.06,283880.31,0,0,-326.45853,2503.8235 +374,460,827,-9,826,825,1,1,28,0,0,0,2,2,-9,0,3,7.8814735,8.1122522,0,0,0,-993.61774,0,3,2,2021,12,1,40,42,1,1,0,10.063338,10.063338,.05,.05,0,0,0,0,0,2,1,1,0,0,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,307,2519.7603,-9186.2813,0,0,0,0,1402.1257 +375,461,828,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.9896798,6.7354918,0,0,-1019.3548,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,.50123495,0,17.761553,0,1,1,0,0,6.5233731,70.62,12.18,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,750,475577.63,45143.43,85709.023,0,0,0,1133.9728 +376,462,829,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.7588015,5.7143011,0,0,-1021.9575,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.0159078,9.441081,21.605034,0,1,1,0,5.3415122,5.9285312,58.11,23.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,803,230448.72,33124.844,238016.38,0,0,0,1236.2119 +377,463,830,831,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9616046,7.484024,0,1,3,-5.4754257,-9,-9,-9,2021,9,0,54,0,1,1,0,5.4285989,5.4285989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,50,55,8,1,1,0,0,1,8,4,0,262.5,574019.63,382776.94,473698.06,161202.58,0,0,2532.8721 +377,463,831,830,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9000368,7.771307,0,19,-3,-137.05119,-9,3,3,2021,10,0,40,0,1,1,0,9.3119669,9.3119669,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,55,52,55,8,4,5,0,1,10,8,4,0,262.5,574019.63,382776.94,473698.06,161202.58,0,0,2532.8721 +377,464,832,-9,831,830,1,0,19,0,0,0,3,3,-9,0,4,7.6839323,7.7529845,0,0,0,-939.15411,-9,2,2,2021,12,0,45,0,1,2,1,7.0930963,7.0930963,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,4,5,0,0,1,8,3,0,1868,-37300.43,0,0,0,11530.936,0,388.50949 +377,465,833,-9,831,830,1,0,21,0,0,0,2,2,-9,0,4,7.6546445,7.5758109,0,0,0,-930.27374,-9,2,2,2021,12,0,20,0,1,2,1,9.7414093,9.7414093,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,5,0,0,1,8,3,0,291,0,0,0,0,0,0,892.55737 +378,466,834,-9,835,836,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1009.0746,0,3,2,2021,19,7,0,28,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.79,62.96,-9,-9,1.666666666666667,2,3,1,0,2,8,1,1,1909,197067.64,0,0,0,0,0,0 +378,467,835,836,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.6635785,6.4987388,0,36,-8,127.65211,0,3,3,2021,12,0,10,10,1,0,0,9.6058149,9.6058149,0,0,0,0,0,0,0,0,0,0,0,1.8134726,0,37.92,53.03,40.64,52.96,8.333333333333334,1,1,0,0,9,8,3,1,748,498228.47,96025.891,360660.19,0,0,0,1825.5652 +378,467,836,835,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9560833,8.2130575,0,7,8,-39.00602,0,-9,-9,2021,12,0,39,38,1,0,0,4.8646455,4.8646455,.05,.05,0,0,0,0,0,0,0,0,0,3.0886345,0,40.64,52.96,37.92,53.03,6.666666666666667,1,1,0,0,9,8,3,1,748,498228.47,96025.891,360660.19,0,0,0,1825.5652 +379,468,837,838,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.4276628,6.5738063,48,5,-82.303909,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88532215,6.4771285,58.32,50.22,26.98,52.69,10,1,1,0,0,0,12,3,0,1288.5,1305803.5,878085.13,156537.34,0,0,0,3861.3433 +379,468,838,837,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8429995,7.8615065,48,-5,-4.6923828,0,2,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,22.443026,0,0,1,1,0,7.2561364,7.8124895,26.98,52.69,58.32,50.22,5,1,1,0,0,4,12,3,0,1288.5,1305803.5,878085.13,156537.34,0,0,0,3861.3433 +380,469,839,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.4104381,3.0737803,0,0,-906.67706,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2991424,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,119,762915.25,0,335110.47,0,3990.0354,0,633.53265 +381,470,840,841,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,0,0,0,26,3,55.885429,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,40.77,54,54,5,1,1,0,0,0,8,5,1,325.5,538207.25,183373.17,303232.56,177364.23,14397.375,4877.0566,3478.2817 +381,470,841,840,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.148612,9.3231945,0,6,-3,-.89906782,-9,-9,-9,2021,9,0,40,0,1,1,0,36.184769,36.184769,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,54,52.82,40.77,8,1,1,0,0,1,8,5,1,325.5,538207.25,183373.17,303232.56,177364.23,14397.375,4877.0566,3478.2817 +381,471,842,-9,840,841,1,1,23,0,1,0,1,1,-9,0,5,8.1419811,7.8902259,0,0,0,-965.63965,-9,2,1,2021,8,0,38,0,1,0,1,8.6553373,8.6553373,.05,.05,0,0,0,0,0,0,0,0,0,.80038011,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,487,309959.31,94981.023,0,0,0,0,1327.7582 +382,472,843,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,6.2348781,6.1348391,0,0,-935.74603,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2511792,44.34,12.35,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,390,363890.34,0,270573.28,0,0,0,1568.243 +383,473,844,845,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.5035939,7.6111679,34,-2,27.937721,0,2,-9,2021,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0582228,7.7913857,60.02,56.42,64.48999999999999,32.7,8.333333333333334,1,1,0,0,8,10,2,1,485.5,656497.19,203430.66,284644.5,0,1812.9872,0,371.52951 +383,473,845,844,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,0,0,34,2,-143.4873,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1236188,0,64.48999999999999,32.7,60.02,56.42,8.333333333333334,1,1,0,0,2,10,2,1,485.5,656497.19,203430.66,284644.5,0,1812.9872,0,371.52951 +383,474,846,-9,844,845,1,1,26,0,0,0,2,2,-9,0,5,8.3717661,8.3680525,0,0,0,-932.96759,0,2,2,2021,6,0,55,38,1,0,0,8.8925648,8.8925648,0,0,0,0,0,0,0,0,0,0,0,.64740276,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,1476,2505.4546,0,0,0,0,0,1080.5129 +384,475,847,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9889164,8.1808605,0,0,0,-981.03717,0,-9,2,2021,8,0,41,40,1,0,0,7.8489366,7.8489366,.05,.05,0,0,0,0,0,0,0,0,0,3.6686528,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1072,15546.582,-146267.97,0,0,0,0,1275.8396 +385,476,848,849,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.0230188,8.2804108,0,18,-8,64.669449,0,3,2,2021,7,0,43,42,1,0,0,10.61259,10.61259,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.43,59.21,40.77,33.15,8.333333333333334,1,1,0,0,9,1,4,1,1033.5,993080.63,258356.78,277241.56,0,0,0,1513.6235 +385,476,849,848,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,5.6209931,5.668612,18,8,-88.566139,0,-9,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,.09301737,0,0,0,0,0,5.7631273,40.77,33.15,33.43,59.21,6.666666666666667,1,1,0,0,6,1,4,1,1033.5,993080.63,258356.78,277241.56,0,0,0,1513.6235 +386,477,850,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.5876174,7.6593204,6.7375388,0,0,-1094.7336,0,1,2,2021,10,2,4,7,1,2,0,25.986221,25.986221,0,0,0,0,0,0,0,0,1,1,0,6.9346623,6.3958111,46.16,50.59,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,336,524549.06,75296.5,489322.84,24344.656,0,0,1978.4156 +387,478,851,852,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.9248033,6.7432828,59,0,-62.945518,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.465971,6.7816949,53.97,45.2,41.95,37.91,8.333333333333334,1,1,0,0,0,5,3,1,2445,495388.94,245877.94,164900.72,0,0,0,2952.7695 +387,478,852,851,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.575964,7.2285285,59,0,-20.223225,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0818596,0,0,1,1,0,5.268373,7.3661785,41.95,37.91,53.97,45.2,6.666666666666667,1,1,0,0,0,5,3,1,2445,495388.94,245877.94,164900.72,0,0,0,2952.7695 +388,479,853,854,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,8.139554,8.123394,58,-3,70.675323,0,1,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6636772,8.4280863,56.83,45.47,65.29000000000001,34.81,8.333333333333334,1,1,0,0,0,12,3,1,1057.5,1006240.1,548820.63,306380.41,0,0,0,3755.1211 +388,479,854,853,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,0,0,58,3,-40.075695,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.326386,0,65.29000000000001,34.81,56.83,45.47,8.333333333333334,1,1,0,0,0,12,3,1,1057.5,1006240.1,548820.63,306380.41,0,0,0,3755.1211 +389,480,855,858,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6659975,8.6039762,0,8,-1,.30166709,0,-9,-9,2021,7,0,30,30,1,0,0,23.538504,23.538504,.05,.05,0,0,0,0,0,0,1,1,0,5.6939459,0,48.87,58.55,40.58,60.95,8.333333333333334,1,1,0,0,9,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,856,-9,855,858,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.71179,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,857,-9,855,858,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4839,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,858,855,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,0,5.2361851,5.1737151,8,1,5.3651433,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.6686592,0,40.58,60.95,48.87,58.55,3.333333333333333,1,1,0,0,7,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +390,481,859,-9,860,861,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-954.05212,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,860,861,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,8.3769703,7.9735808,0,15,1,-58.836502,0,2,3,2021,7,0,25,22,1,0,0,19.035992,19.035992,.05,.05,0,0,0,0,0,0,1,1,0,3.2345071,0,58.13,52.93,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,861,860,-9,-9,1,1,32,2,2,0,1,1,-9,0,5,8.9299774,8.8432035,0,14,-1,214.60843,0,1,1,2021,5,0,37,37,1,0,0,25.524836,25.524836,.05,.05,0,0,0,0,0,0,1,1,0,5.3959413,0,57.06,57.76,58.13,52.93,8.333333333333334,1,1,0,0,8,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,862,-9,860,861,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96722,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +391,482,863,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.0514832,7.8242311,0,0,0,-985.80066,0,-9,-9,2021,9,0,30,30,1,0,0,11.049606,11.049606,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,391,377238.13,155612.97,0,0,0,0,1060.3962 +392,483,864,-9,866,865,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-934.21082,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +392,483,865,866,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,0,0,34,9,-30.635557,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.56,22.74,14.06,30.46,5,1,1,0,0,8,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +392,483,866,865,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,6.5490794,6.6140594,34,0,4.1276069,0,1,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.9439397,0,14.06,30.46,38.56,22.74,0,2,3,0,0,0,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +393,484,867,872,-9,-9,1,0,34,0,4,0,2,2,-9,0,3,0,0,0,17,-3,142.15384,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,57.22,59.43,58.05,8.333333333333334,2,3,0,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,868,-9,867,872,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.41473,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,869,-9,867,872,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.07092,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,870,-9,867,872,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-936.39984,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,871,-9,867,872,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1094.1865,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,872,867,-9,-9,1,1,37,0,4,0,2,2,-9,0,5,5.5608025,5.2577186,0,17,3,107.21007,0,3,3,2021,6,0,40,45,1,0,0,.74182796,.74182796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,48.98,57.22,10,2,3,0,0,9,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +394,485,873,-9,874,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.18231,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,776,-94279.984,9939.9941,0,0,0,329.98996,1828.6494 +394,485,874,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.740541,7.6264014,6.152647,0,0,-1094.3777,0,2,2,2021,12,0,24,18,1,0,0,9.1839008,9.1839008,.05,.05,0,0,0,0,0,0,1,1,0,6.2503533,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,14,10,3,0,776,-94279.984,9939.9941,0,0,0,329.98996,1828.6494 +395,486,875,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.1396461,6.5725155,0,0,-995.02179,0,3,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,2.8837864,0,0,1,1,0,6.6513972,6.2557869,33.81,15.92,-9,-9,0,1,1,0,0,10,10,2,1,759,538738.19,235593.59,129486.64,0,0,0,508.03235 +396,487,876,-9,879,877,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.2226,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,877,879,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,0,0,0,7,5,-63.475433,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,2.984482,0,43.39,42.3,46.63,59.72,6.666666666666667,1,1,1,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,878,-9,879,877,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.291,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,879,877,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1292534,7.2836251,0,7,-5,-1.4592537,0,3,3,2021,12,0,20,20,1,0,0,9.2925806,9.2925806,0,0,0,0,0,0,0,2,1,0,1,6.4170585,0,46.63,59.72,43.39,42.3,8.333333333333334,1,1,0,0,9,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +397,488,880,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,5.7708836,5.5618739,0,0,-991.19806,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6261382,51,48,-9,-9,7,1,1,0,0,4,13,2,1,2338,492264.5,48270.605,203948.52,0,0,0,1581.8231 +397,489,881,-9,-9,880,1,0,37,0,0,0,1,1,-9,0,4,8.5374222,8.238677,0,0,0,-933.06012,-9,-9,3,2021,12,3,37,0,1,3,1,13.446513,13.446513,.05,.05,0,0,0,0,0,2,1,1,0,4.6620026,0,49.52,55.68,-9,-9,5,1,1,0,0,5,13,5,1,613,-30896.848,-104063.23,0,0,0,0,3179.3567 +398,490,882,883,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-3,24.434412,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2453136,0,54.96,53.17,56.88,40.36,10,1,1,0,0,0,9,3,0,789.5,1510700.5,1219899.1,302351.5,0,0,0,2143.7588 +398,490,883,882,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,8.0125933,7.9219918,0,53,3,-59.658863,0,2,3,2021,6,0,25,26,1,0,0,13.448822,13.448822,0,0,0,1,0,0,0,0,1,1,0,0,0,56.88,40.36,54.96,53.17,8.333333333333334,1,1,0,0,11,9,3,0,789.5,1510700.5,1219899.1,302351.5,0,0,0,2143.7588 +399,491,884,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1051.884,0,-9,-9,2021,13,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,62.31,-9,-9,0,1,1,1,1,4,11,1,1,383,-68280.234,0,0,0,0,0,752.211 +399,492,885,886,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,11,0,-23.391275,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,13.847961,0,0,1,1,0,0,0,37,25,50.35,48.32,5,1,1,0,1,0,11,3,1,1469.5,1006782.9,709667.31,210331.81,0,0,0,3260.7197 +399,492,886,885,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.220686,7.9151745,11,0,29.687225,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.4914083,8.1178293,50.35,48.32,37,25,10,1,1,0,0,5,11,3,1,1469.5,1006782.9,709667.31,210331.81,0,0,0,3260.7197 +400,493,887,888,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,32,-11,0,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.0303383,0,49.69,52.99,54.1,59.11,5,1,1,0,0,0,1,1,1,596.5,299257.53,38744.996,94840.328,0,386.96893,0,200.13812 +400,493,888,887,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,0,0,32,11,0,0,-9,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3737502,0,54.1,59.11,49.69,52.99,8.333333333333334,1,1,0,0,0,1,1,1,596.5,299257.53,38744.996,94840.328,0,386.96893,0,200.13812 +401,494,889,890,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.7002463,7.7753859,47,4,54.090961,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0090299,7.9646358,33.33,27.12,35.64,58.06,8.333333333333334,1,1,0,0,0,9,3,1,310.5,1136357.8,522258.03,346745.03,0,0,0,1788.2 +401,494,890,889,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,48,-4,105.42878,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.606019,0,35.64,58.06,33.33,27.12,1.666666666666667,1,1,0,0,0,9,3,1,310.5,1136357.8,522258.03,346745.03,0,0,0,1788.2 +402,495,891,892,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8467894,8.7459021,0,10,2,14.048869,0,2,2,2021,7,0,48,48,1,0,0,16.415838,16.415838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,35.13,58.16,8.333333333333334,1,1,0,0,11,10,5,1,769.5,1269943.3,888622.31,356282.84,0,0,0,1971.2341 +402,495,892,891,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6732688,7.806776,0,10,-2,81.867142,0,2,2,2021,15,4,32,23,1,4,0,6.4577303,6.4577303,0,0,0,0,0,0,0,0,0,0,0,0,0,35.13,58.16,57.16,56.15,10,1,1,0,0,11,10,5,1,769.5,1269943.3,888622.31,356282.84,0,0,0,1971.2341 +402,496,893,-9,892,891,1,1,25,0,0,0,2,2,-9,0,2,7.8688335,7.8616366,0,0,0,-970.16479,0,2,2,2021,13,1,38,45,1,1,1,7.9531236,7.9531236,.05,.05,0,0,0,0,0,0,0,0,0,1.4140707,0,31.98,54.55,-9,-9,3.333333333333333,1,1,0,1,8,10,4,1,222,97850.75,26014.42,0,0,12513.961,76.473442,1211.0237 +403,497,894,895,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.2294683,9.3746777,0,21,-11,-.22244628,0,-9,-9,2021,6,0,49,47,1,0,0,21.844723,21.844723,0,0,0,0,0,0,0,0,0,0,0,.74498844,0,60.12,54.8,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,694.5,65663.656,0,0,0,0,0,4457.5952 +403,497,895,894,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,22,11,100.92392,0,3,3,2021,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7468195,0,60.29,52.11,60.12,54.8,8.333333333333334,1,1,1,0,8,12,5,1,694.5,65663.656,0,0,0,0,0,4457.5952 +404,498,896,898,-9,-9,1,1,26,1,1,0,3,3,-9,1,2,7.4456592,7.3042979,0,3,1,85.115814,0,-9,-9,2021,22,7,42,42,1,7,0,4.9390135,4.9390135,0,0,0,0,0,0,0,0,1,1,0,0,0,23.41,45.01,29.94,38.14,5,1,1,0,0,1,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +404,498,897,-9,898,896,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6581,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +404,498,898,896,-9,-9,1,0,25,1,1,0,2,2,-9,0,1,0,0,0,3,-1,10.023911,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,38.14,23.41,45.01,6.666666666666667,1,1,0,1,6,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +405,499,899,-9,900,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.72467,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,515.5,-62945.633,32908.715,0,0,0,934.62311,2543.4485 +405,499,900,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3578377,8.1120434,7.6702595,0,0,-1099.3051,0,-9,-9,2021,11,0,40,21,1,2,0,5.3847814,5.3847814,.05,.05,0,0,0,0,0,0,1,1,0,7.0016522,0,49,56,-9,-9,7,1,1,0,0,10,4,3,1,515.5,-62945.633,32908.715,0,0,0,934.62311,2543.4485 +406,500,901,902,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,5.2138515,6.9706092,6.6838799,11,-26,-136.28224,0,3,2,2021,18,5,10,20,1,5,0,1.9627961,1.9627961,.05,.05,0,0,0,0,0,14.5,1,0,1,6.2482123,6.6336484,36.28,49.21,61.68,49.95,5,1,1,0,0,5,11,4,0,1334,296858.84,96063.203,197979.98,114911.23,18802.594,0,2802.3428 +406,500,902,901,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.3409624,8.3894663,6.6344538,11,26,70.94149,0,-9,-9,2021,6,0,20,20,1,0,0,22.246851,22.246851,.05,.05,0,0,0,0,0,0,1,0,1,0,6.8670554,61.68,49.95,36.28,49.21,8.333333333333334,1,1,0,0,8,11,4,0,1334,296858.84,96063.203,197979.98,114911.23,18802.594,0,2802.3428 +407,501,903,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.1499,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8361169,0,0,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,0,7,1,0,307,-130456.95,0,0,0,0,0,1332.8931 +408,502,904,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.3694582,8.364296,0,0,0,-938.69714,0,3,3,2021,11,0,35,35,1,0,0,18.88155,18.88155,0,0,.05,0,0,0,0,0,0,0,0,3.2592626,0,51.95,47.85,-9,-9,6.666666666666667,2,3,0,0,8,8,4,1,445,-7745.6572,16809.223,0,0,0,0,974.57208 +409,503,905,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1027.4563,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.62,58.62,-9,-9,6.666666666666667,2,3,1,0,8,8,1,1,909,0,0,0,0,0,0,0 +410,504,906,-9,908,907,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1161.0103,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +410,504,907,908,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.2865124,8.7073107,0,5,-1,-6.6554713,0,1,1,2021,5,0,44,38,1,0,0,8.7688923,8.7688923,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.34,56.4,10,1,1,0,0,10,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +410,504,908,907,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.3367372,7.5972323,6.0015011,5,1,3.8469248,0,-9,-9,2021,13,1,18,20,1,1,0,8.4009342,8.4009342,.05,.05,0,0,0,0,0,0,1,1,0,6.3914657,0,50.34,56.4,54.2,57.49,8.333333333333334,1,1,0,0,4,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +411,505,909,910,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.8052697,7.5795879,52,9,229.45325,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.712328,7.6493034,48.02,40.42,27.99,54.97,8.333333333333334,1,1,0,0,0,9,3,1,429.5,1258463.3,-69796.516,576172.5,0,0,0,2680.2563 +411,505,910,909,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.583766,6.1285682,52,0,-132.41043,0,3,3,2021,25,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9261613,6.6586728,27.99,54.97,48.02,40.42,6.666666666666667,1,1,0,0,0,9,3,1,429.5,1258463.3,-69796.516,576172.5,0,0,0,2680.2563 +412,506,911,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.2161,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.45,43.18,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,2041,150296.09,0,0,0,0,0,1109.7927 +413,507,912,913,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.9250798,5.8751769,1,5,89.077591,-9,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,2.0715268,0,0,1,1,0,6.8932486,6.0392075,41,24,49.98,55.33,0,1,1,0,0,0,7,2,1,352,338493.19,123656.75,293395.16,0,0,0,2092.9111 +413,507,913,912,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,1,-5,-14.506332,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,49.98,55.33,41,24,8.333333333333334,1,1,0,0,0,7,2,1,352,338493.19,123656.75,293395.16,0,0,0,2092.9111 +414,508,914,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.7635427,3.9677386,0,0,-909.69653,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7615523,0,0,1,1,0,5.6685557,3.9203892,51.02,38.86,-9,-9,10,1,1,0,0,0,12,2,0,398,45852.695,120225.9,0,0,0,0,1693.5302 +415,509,915,916,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.649941,7.8072715,12,0,86.445633,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.0109019,7.5262394,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,12,3,1,931,1331947.3,886528.13,238731.14,0,0,0,2299.6128 +415,509,916,915,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.7437134,7.5071797,12,0,-8.5145254,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.0364895,7.5269756,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,12,3,1,931,1331947.3,886528.13,238731.14,0,0,0,2299.6128 +416,510,917,919,-9,-9,1,0,28,0,1,0,2,2,-9,0,2,7.1842394,7.2320232,0,5,-5,125.20722,0,2,2,2021,15,3,24,21,1,3,0,8.5408421,8.5408421,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,46.62,54.96,53.17,5,1,1,0,0,10,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +416,510,918,-9,917,919,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.96198,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +416,510,919,917,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.1339779,8.1596107,0,5,5,-46.818794,0,-9,-9,2021,9,0,42,43,1,0,0,8.572381,8.572381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.74,46.62,6.666666666666667,1,1,0,0,4,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +417,511,920,921,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6503086,8.9615631,0,10,-5,-2.119632,0,3,3,2021,23,11,37,37,1,11,0,18.467739,18.467739,0,0,0,0,0,0,0,0,0,0,0,2.5786774,0,30.77,64.34,54.67,57.49,5,1,1,0,0,15,4,5,1,737,371196.56,233279.83,616431.81,288238.5,53297.316,0,4611.2344 +417,511,921,920,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.7901239,9.0705681,0,10,5,8.3436708,0,-9,-9,2021,9,0,42,37,1,0,0,14.024442,14.024442,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.67,57.49,30.77,64.34,6.666666666666667,1,1,0,0,15,4,5,1,737,371196.56,233279.83,616431.81,288238.5,53297.316,0,4611.2344 +418,512,922,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1063.9871,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,2,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +418,512,923,-9,922,-9,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-918.41681,-9,2,-9,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,1,1,-9,0,0,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +418,512,924,-9,922,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-956.67719,-9,2,-9,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +419,513,925,926,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.8933253,7.9030385,0,7,-1,53.182907,0,-9,-9,2021,6,0,38,39,1,0,0,6.911479,6.911479,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,636.5,58610.609,65733.078,0,0,4815.5098,0,3594.2683 +419,513,926,925,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.5351877,8.0243902,0,7,1,-72.993477,0,-9,-9,2021,6,0,44,40,1,0,0,12.990227,12.990227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,4,4,1,636.5,58610.609,65733.078,0,0,4815.5098,0,3594.2683 +420,514,927,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4601498,7.8712192,5.7457013,0,0,-1072.1812,0,1,1,2021,18,5,30,30,1,5,0,7.2986088,7.2986088,.05,.05,0,0,0,0,0,0,1,0,1,5.1175528,0,42.6,61.6,-9,-9,5,1,1,0,1,8,4,3,0,1481,-22641.15,-39379.195,0,0,5098.9028,1037.9238,1733.7258 +420,514,928,-9,927,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.041,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1481,-22641.15,-39379.195,0,0,5098.9028,1037.9238,1733.7258 +421,515,929,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.6988773,8.8683357,0,0,0,-949.92694,0,1,2,2021,8,0,55,45,1,0,0,15.509277,15.509277,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,103,305465.34,-31088.141,354610.84,126042.56,0,0,2148.8992 +422,516,930,932,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.7153773,6.6936345,22,30,44.512062,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1395035,6.6505327,49.04,55.86,57.06,57.76,5,1,1,0,0,5,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +422,516,931,-9,932,930,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-919.66553,-9,2,2,2021,26,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.47,72.79000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +422,516,932,930,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.308918,8.1904078,0,22,-30,48.100147,0,3,2,2021,7,0,60,30,1,0,0,6.6455531,6.6455531,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,9,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +423,517,933,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.9302511,8.4771938,0,0,0,-962.45593,0,3,2,2021,20,6,36,0,1,6,0,22.304752,22.304752,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.35,43.93,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,342,38803.055,18837.455,0,0,2388.6091,0,2112.822 +424,518,934,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9850593,7.6163778,0,0,-863.00684,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7756777,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,1,7,3,1,403,757436.63,511572.91,0,0,0,0,2030.6075 +425,519,935,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,5.4575443,5.0126429,0,0,0,-941.02344,0,3,3,2021,18,6,3,0,1,6,0,7.9229069,7.9229069,0,0,0,0,0,0,0,0,1,1,0,0,0,44.31,41.84,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,343,50502.828,159333.33,0,0,0,0,717.4682 +425,520,936,-9,935,-9,1,0,22,0,0,0,2,2,-9,0,4,6.2044935,6.3238301,0,0,0,-951.18915,0,3,3,2021,8,0,8,0,1,0,1,6.0525031,6.0525031,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,59.43,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,419,-135637.09,0,0,0,0,0,675.17639 +426,521,937,938,939,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,43,-6,67.033592,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.05,54.17,51.14,60.45,6.666666666666667,1,1,0,0,2,7,3,1,288,875513.5,389528.72,338948.84,0,0,0,2170.7739 +426,521,938,937,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,8.0074615,7.7127891,43,6,-51.281811,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8713474,51.14,60.45,41.05,54.17,8.333333333333334,1,1,0,0,0,7,3,1,288,875513.5,389528.72,338948.84,0,0,0,2170.7739 +426,522,939,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.8067017,6.0920615,0,0,-1017.0626,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9202948,55,43,-9,-9,8,1,1,0,0,0,7,2,1,849,56849.746,39890.469,302316.59,0,0,0,1377.6746 +427,523,940,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3727751,7.0694013,0,0,-915.91071,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4254866,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,2795,216125.09,271819.09,0,0,0,0,1664.3865 +428,524,941,942,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.9694028,7.8306789,0,1,-3,35.266392,0,-9,-9,2021,8,1,43,37,1,1,0,7.397016,7.397016,.05,.05,0,0,0,0,0,0,0,0,0,.055782255,0,58.72,51.29,35.15,61.1,8.333333333333334,1,1,0,0,3,2,5,1,765,175966.56,-19044.711,116707.48,93047.672,-7.6494484,3751.1333,3287.2925 +428,524,942,941,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3376913,8.4014378,0,1,3,-25.313316,-9,-9,-9,2021,17,5,62,0,1,5,0,7.3584371,7.3584371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.15,61.1,58.72,51.29,5,1,1,0,0,1,2,5,1,765,175966.56,-19044.711,116707.48,93047.672,-7.6494484,3751.1333,3287.2925 +429,525,943,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.5789528,8.4855757,0,0,0,-1003.5833,-9,2,-9,2021,14,4,38,0,1,4,0,15.350166,15.350166,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.41,50.07,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,911,148172.25,18384.1,0,0,0,0,2012.2367 +429,526,944,-9,943,-9,1,0,21,0,0,0,2,2,-9,0,1,0,0,0,0,0,-941.13184,-9,2,-9,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.09,37.12,-9,-9,3.333333333333333,1,1,1,0,0,4,1,1,755,-4062.7278,0,0,0,0,0,0 +430,527,945,946,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.5191951,7.6557283,0,2,0,-58.183945,0,-9,-9,2021,10,0,30,38,1,0,0,5.9233918,5.9233918,0,0,0,0,0,0,0,0,0,0,0,.86713326,0,47.61,53.7,60.02,56.42,8.333333333333334,1,1,0,0,6,11,5,1,1448.5,182905,54814.895,308248.63,222404.84,4291.6372,16413.357,3320.9189 +430,527,946,945,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.9387465,8.5803204,0,2,0,-21.346766,0,2,1,2021,9,0,38,38,1,0,0,16.690228,16.690228,.05,.05,0,0,0,0,0,0,0,0,0,3.7296772,0,60.02,56.42,47.61,53.7,10,1,1,0,0,7,11,5,1,1448.5,182905,54814.895,308248.63,222404.84,4291.6372,16413.357,3320.9189 +431,528,947,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,6.8006096,7.0087276,0,0,-1036.8035,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7430401,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,944,118805.82,-5513.1777,0,0,0,0,773.37537 +432,529,948,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.9801927,7.2550669,0,0,-1041.6632,0,2,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8547931,6.9339166,18.99,33.71,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,7575,318903.59,187731,62025.926,0,0,0,853.70129 +433,530,949,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1770248,8.4979849,0,0,0,-1019.6105,0,2,3,2021,8,0,24,26,1,0,0,15.624133,15.624133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,280,663574.44,404946.13,155735,40231.789,6985.3789,0,1945.9067 +433,531,950,-9,949,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-879.9165,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,1605,204779.91,0,0,0,0,0,1.2515471 +434,532,951,-9,952,953,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1104.8702,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,952,953,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7422509,7.0452175,0,16,-3,-81.803215,0,2,3,2021,6,0,26,23,1,0,0,8.8137741,8.8137741,.05,.05,0,0,0,0,0,0,1,1,0,1.6710058,0,60.12,54.8,60.02,56.42,1.666666666666667,1,1,0,0,9,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,953,952,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.82658,9.1922216,0,16,3,-158.99625,0,-9,-9,2021,6,0,40,40,1,0,0,19.504011,19.504011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.12,54.8,8.333333333333334,1,1,0,0,9,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,954,-9,952,953,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +435,533,955,956,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.2532101,9.1015539,8.0531235,38,3,-82.802666,0,-9,-9,2021,8,0,19,37,1,0,0,24.221088,24.221088,0,0,0,0,0,0,0,0,0,0,0,7.4447351,8.4115009,60.02,56.42,57.16,56.15,1.666666666666667,1,1,0,0,10,13,5,1,524.5,1996536.5,1421341.8,491664.63,0,0,0,5399.4326 +435,533,956,955,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5317235,7.307313,0,38,-3,89.419746,0,-9,-9,2021,6,0,24,16,1,0,0,5.9743366,5.9743366,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,10,13,5,1,524.5,1996536.5,1421341.8,491664.63,0,0,0,5399.4326 +436,534,957,958,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.851759,7.881309,12,-2,5.8368659,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8269591,7.5952225,57.16,56.15,50,49,8.333333333333334,1,1,0,0,11,9,4,1,829,2439413,1466943.3,913307.38,0,0,0,4884.0664 +436,534,958,957,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.2164478,7.8175273,12,2,-24.304876,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9875941,8.0228443,50,49,57.16,56.15,7,1,1,0,0,11,9,4,1,829,2439413,1466943.3,913307.38,0,0,0,4884.0664 +437,535,959,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.6607599,8.0054398,0,0,-961.70093,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3495922,8.1658039,46.56,50.26,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,1230,302509.56,65775.586,0,0,0,0,1869.8362 +438,536,960,-9,-9,-9,1,0,35,0,2,0,3,3,-9,1,3,0,0,0,0,0,-1027.8092,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.8145986,0,33.81,45.39,-9,-9,5,1,1,1,0,0,4,1,0,252,-180708.38,0,0,0,0,0,1393.6334 +438,537,961,-9,960,962,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.16608,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +438,537,962,-9,-9,-9,1,1,54,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1044.5198,-9,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,1,1,1,0,3,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +438,537,963,-9,960,962,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4606,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +439,538,964,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.6717858,7.7372823,0,0,0,-959.20227,0,3,2,2021,6,0,24,24,1,0,0,13.170554,13.170554,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,3,4,0,0,12,8,3,1,1248,0,0,0,0,0,0,809.17133 +439,539,965,-9,964,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.844,1,2,-9,2021,12,0,0,45,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,0,0,4,8,1,1,768,0,0,0,0,0,0,0 +440,540,966,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-884.06909,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,7.9256754,10.399461,56.580967,0,1,1,0,0,0,33.08,24.12,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,555,43945.191,0,0,0,0,0,1438.9999 +441,541,967,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.5278263,8.4090052,0,0,0,-895.38745,-9,-9,-9,2021,12,0,35,0,1,0,0,12.587462,12.587462,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,550.5,166090.95,0,282267.53,223642.58,0,6700.2852,2828.4814 +441,541,968,-9,967,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0676,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,550.5,166090.95,0,282267.53,223642.58,0,6700.2852,2828.4814 +442,542,969,970,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.5608425,7.5057449,4.9134483,40,-3,-2.5262151,0,2,2,2021,9,0,43,45,1,0,0,6.9396882,6.9396882,.05,.05,0,0,0,0,0,7,1,1,0,4.7889538,0,59.43,58.05,41.2,37.99,8.333333333333334,1,1,0,0,12,2,4,1,877,923832.63,754592.19,132151.52,0,-327.3476,0,2304.1743 +442,542,970,969,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,8.1126394,8.172493,5.6218967,11,3,-28.294025,0,-9,-9,2021,11,2,45,37,1,2,0,8.5788584,8.5788584,.05,.05,0,0,0,0,0,2,1,1,0,3.764627,5.2338214,41.2,37.99,59.43,58.05,10,1,1,0,0,12,2,4,1,877,923832.63,754592.19,132151.52,0,-327.3476,0,2304.1743 +442,543,971,972,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.0496988,8.1170864,0,1,-3,132.28719,-9,-9,-9,2021,4,0,37,0,1,0,0,6.7366376,6.7366376,.05,.05,0,0,0,0,0,2,1,1,0,2.003263,0,58.15,52.91,34.07,46.41,8.333333333333334,1,1,0,0,10,2,4,1,584,43677.148,-42142.684,144129.38,132983.53,1636.7092,502.53714,2573.4912 +442,543,972,971,970,969,1,1,31,0,0,0,2,2,-9,0,3,8.3077431,8.2979565,0,1,3,22.300531,0,2,2,2021,11,3,44,47,1,3,0,8.9601622,8.9601622,.05,.05,0,0,0,0,0,2,1,1,0,.44719079,0,34.07,46.41,58.15,52.91,8.333333333333334,1,1,0,0,11,2,4,1,584,43677.148,-42142.684,144129.38,132983.53,1636.7092,502.53714,2573.4912 +443,544,973,974,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2101912,6.4019885,9,7,-79.296768,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2035975,60.7,45.66,63.11,34.3,8.333333333333334,1,1,0,0,0,13,2,1,129.5,1849.2813,66336.781,88486.625,56393.883,0,0,784.97449 +443,544,974,973,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,9,-7,-59.766083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8249724,0,63.11,34.3,60.7,45.66,10,1,1,0,0,1,13,2,1,129.5,1849.2813,66336.781,88486.625,56393.883,0,0,784.97449 +444,545,975,-9,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,7.7057371,7.8676548,0,0,0,-1030.4849,0,3,3,2021,28,8,32,30,1,8,0,8.6358356,8.6358356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.75,19.69,-9,-9,1.666666666666667,4,2,0,0,15,4,3,1,981,28815.723,-60253.051,0,0,13540.238,0,2210.6572 +444,545,976,-9,-9,975,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.4525,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,981,28815.723,-60253.051,0,0,13540.238,0,2210.6572 +445,546,977,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1101.3866,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8266246,0,47.15,56.66,-9,-9,10,1,1,0,0,11,9,2,1,477,13417.778,0,0,0,-1399.9093,0,-256.2995 +446,547,978,979,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.8358655,6.7988801,38,0,-11.379856,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8030877,6.5059485,62.39,56.71,63.39,42.39,10,1,1,0,0,0,2,2,1,2315,630329.56,410684.38,424991.59,0,0,0,2231.0593 +446,547,979,978,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.7412534,6.1547585,38,9,-31.598249,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.007915,6.0706787,63.39,42.39,62.39,56.71,8.333333333333334,1,1,0,0,0,2,2,1,2315,630329.56,410684.38,424991.59,0,0,0,2231.0593 +447,548,980,982,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.5654316,8.6536608,0,11,4,12.995522,0,2,2,2021,10,0,39,40,1,0,0,15.385715,15.385715,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.62,58.62,39.15,49.76,8.333333333333334,1,1,0,0,10,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +447,548,981,-9,982,980,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.11743,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +447,548,982,980,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.392374,8.3268604,0,7,-4,-16.552349,0,2,2,2021,17,5,27,34,1,5,0,14.389814,14.389814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.15,49.76,46.62,58.62,6.666666666666667,1,1,0,0,9,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +448,549,983,984,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.5677547,8.7158604,0,17,5,-34.777958,0,2,2,2021,6,0,40,40,1,0,0,25.091034,25.091034,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51,52.08,6.666666666666667,2,3,0,0,12,8,5,1,210,433680.31,21549.973,335538.44,100378.88,7303.4092,259.22784,3678.9961 +448,549,984,983,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.3837852,8.4242239,0,17,-5,-22.185972,0,2,3,2021,11,0,38,43,1,0,0,13.052747,13.052747,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51,52.08,54.37,54.8,8.333333333333334,2,3,0,0,12,8,5,1,210,433680.31,21549.973,335538.44,100378.88,7303.4092,259.22784,3678.9961 +449,550,985,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.2362795,7.0776024,0,0,-1158.0715,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4744401,7.1093698,51.64,37.25,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,367,395668.34,290417.66,299953.25,0,0,0,735.01367 +450,551,986,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.5162182,9.4575882,0,0,0,-896.57172,0,2,2,2021,6,0,80,80,1,0,0,17.036127,17.036127,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,79,3967408,3252456.3,172172.92,0,0,0,3804.4519 +451,552,987,988,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,10,-5,-53.487961,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.08,33.03,51,48,3.333333333333333,1,1,0,0,3,10,2,0,486.5,333191.69,39766.621,239759.28,0,0,0,1443.4912 +451,552,988,987,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,2.9612789,3.3746607,10,5,5.7868967,0,3,2,2021,10,0,0,57,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7586946,3.1015027,51,48,47.08,33.03,7,1,1,0,0,0,10,2,0,486.5,333191.69,39766.621,239759.28,0,0,0,1443.4912 +452,553,989,990,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9657292,6.7844272,9,-3,41.980949,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8411007,43.99,60.71,61.86,22.96,8.333333333333334,1,1,0,0,9,11,2,0,1151,726114.25,198858.63,199842.11,0,0,0,1419.4497 +452,553,990,989,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,3,10.224464,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,5.4828439,0,0,1,1,0,0,0,61.86,22.96,43.99,60.71,8.333333333333334,1,1,0,0,0,11,2,0,1151,726114.25,198858.63,199842.11,0,0,0,1419.4497 +453,554,991,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.3389,0,3,2,2021,6,0,0,56,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,12,10,2,0,429,106270.48,82224.711,0,0,0,0,128.53763 +454,555,992,993,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.5367384,6.5553141,60,5,46.656498,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,6.5631485,0,0,1,1,0,7.4184918,6.5698814,61.19,33.88,59.06,40.35,8.333333333333334,1,1,0,0,0,7,2,1,1854.5,242161,-30358.629,255813.66,0,0,0,1556.7866 +454,555,993,992,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.033051,4.2139969,60,-5,52.976509,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1540594,4.1511526,59.06,40.35,61.19,33.88,8.333333333333334,1,1,0,0,0,7,2,1,1854.5,242161,-30358.629,255813.66,0,0,0,1556.7866 +455,556,994,995,-9,-9,1,0,29,0,0,0,1,1,1,0,3,8.2404804,8.6301947,0,4,0,-203.07127,-9,2,2,2021,13,3,38,0,1,3,0,13.737831,13.737831,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,42.78,38.06,52.59,8.333333333333334,1,1,0,0,7,10,4,1,450,13695.125,-45664.859,0,0,2230.5322,0,2836.0366 +455,556,995,994,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.2622709,7.9150085,0,4,0,128.38722,-9,-9,-9,2021,20,8,40,0,1,8,0,9.0205564,9.0205564,0,0,0,0,0,0,0,0,0,0,0,0,0,38.06,52.59,56.67,42.78,5,1,1,0,0,9,10,4,1,450,13695.125,-45664.859,0,0,2230.5322,0,2836.0366 +456,557,996,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-944.3761,0,3,-9,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,37.23,18.31,-9,-9,5,1,1,0,0,0,10,1,0,951,82986.813,0,0,0,0,0,848.49548 +457,558,997,-9,999,998,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1195.6061,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,558,998,999,-9,-9,1,1,43,0,1,0,1,1,-9,0,2,8.4480028,8.4134064,0,10,-7,32.565437,0,-9,-9,2021,13,1,40,50,1,1,0,15.013024,15.013024,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,34.44,48.18,22.09,53.69,0,2,3,0,0,14,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,558,999,998,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.4295526,7.3906026,0,10,7,25.426468,0,3,3,2021,15,2,32,12,1,2,0,4.2943978,4.2943978,0,0,0,0,0,0,0,0,1,1,0,0,0,22.09,53.69,34.44,48.18,0,2,3,0,0,12,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,559,1000,-9,999,998,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1032.9683,-9,3,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1283264,0,52.76,47.24,-9,-9,6.666666666666667,2,3,0,0,1,9,1,1,463,129666.64,0,0,0,0,0,-301.59659 +458,560,1001,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.8766961,8.2706165,0,0,-1049.7708,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.540535,7.921844,39.61,38.46,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,908,201347.05,21319.609,347981.63,0,0,0,1853.094 +459,561,1002,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1246843,8.5489502,0,0,0,-864.56293,0,2,2,2021,8,1,38,38,1,1,0,17.853235,17.853235,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.46,52.7,-9,-9,8.333333333333334,4,2,0,0,14,2,5,0,853,286186.38,143973.2,0,0,0,0,1777.3953 +460,562,1003,1004,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5437078,5.7417822,7,8,22.234898,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8321242,5.596633,57.16,56.15,57.06,57.76,10,1,1,0,0,0,10,2,1,709.5,225285.3,24187.076,168463.78,0,0,0,552.18463 +460,562,1004,1003,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,0,5.6565342,5.6303697,7,-8,21.266132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4312654,6.0700135,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,1,10,2,1,709.5,225285.3,24187.076,168463.78,0,0,0,552.18463 +461,563,1005,1006,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.9811988,6.8918791,37,-4,-3.0834017,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1534257,7.1234121,60.06,39.82,47.33,58,8.333333333333334,1,1,0,0,4,5,5,1,492,2232781.5,1736843.1,416734.94,0,2540.7822,0,4558.7598 +461,563,1006,1005,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,8.4274292,8.6691074,7.7499604,37,4,-132.07811,0,-9,-9,2021,12,1,40,46,1,1,0,14.248457,14.248457,.05,.05,0,0,0,0,0,2,0,0,0,3.5870345,7.8553095,47.33,58,60.06,39.82,8.333333333333334,1,1,0,0,9,5,5,1,492,2232781.5,1736843.1,416734.94,0,2540.7822,0,4558.7598 +462,564,1007,-9,1009,1010,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.20325,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1008,-9,1009,1010,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.1586,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1009,1010,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5545111,8.4994841,0,18,-2,35.178257,0,1,1,2021,10,1,34,35,1,1,0,14.576028,14.576028,.05,.05,0,0,0,0,0,0,0,0,0,5.2734962,0,65.55,30.4,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1010,1009,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.5003576,9.3967934,0,18,2,-25.97887,0,2,2,2021,8,0,48,52,1,0,0,34.148823,34.148823,.05,.05,0,0,0,0,0,0,0,0,0,5.2876735,0,57.06,57.76,65.55,30.4,8.333333333333334,1,1,0,0,13,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +463,565,1011,1013,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.5533104,8.5946407,0,7,-7,-29.125368,0,2,2,2021,8,0,40,37,1,0,0,16.370556,16.370556,0,0,0,0,0,0,0,0,0,0,0,.38240358,0,41.07,60.93,49.58,55.59,3.333333333333333,1,1,0,0,8,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,565,1012,-9,1013,1011,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.92749,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,565,1013,1011,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,7.6049409,7.4194088,5.5345192,7,7,-127.03134,0,2,2,2021,4,0,45,38,1,0,0,4.2176881,4.2176881,0,0,0,0,0,0,0,42,0,0,0,5.9349055,0,49.58,55.59,41.07,60.93,8.333333333333334,1,1,0,0,7,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,566,1014,-9,1013,1011,1,1,18,0,1,0,2,2,1,0,5,8.4614983,8.3690958,0,0,0,-998.15179,-9,2,1,2021,6,0,45,0,1,0,1,12.177087,12.177087,0,0,0,0,0,0,0,0,0,0,0,2.9836295,0,54.69,57.47,-9,-9,10,1,1,0,0,1,12,4,1,1280,-107471.46,0,0,0,0,0,1120.0515 +464,567,1015,1018,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.5878878,8.123806,0,4,-3,81.077843,0,3,3,2021,20,8,49,42,1,8,0,10.304123,10.304123,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,52.72,55.58,6.666666666666667,1,1,0,0,12,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1016,-9,1015,1018,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.86359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1017,-9,1015,1018,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.63379,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1018,1015,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,7.0675864,7.2660856,0,4,3,-14.750841,0,3,3,2021,8,0,40,40,1,0,0,4.8811193,4.8811193,.05,.05,0,0,0,0,0,0,1,1,0,2.1762135,0,52.72,55.58,49.52,56.95,8.333333333333334,1,1,0,0,9,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +465,568,1019,1020,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.2191706,8.4829502,0,9,1,-131.08229,0,-9,-9,2021,10,0,38,40,1,1,0,14.36651,14.36651,0,0,0,0,0,0,0,0,0,0,0,5.6120338,0,51,49,47.07,53.97,7,1,1,0,0,1,5,4,1,1263,326129.03,172381.09,137427.91,0,0,0,2007.0049 +465,568,1020,1019,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,5.635376,5.6265211,38,-1,-46.607903,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4552021,5.2566051,47.07,53.97,51,49,8.333333333333334,1,1,1,0,0,5,4,1,1263,326129.03,172381.09,137427.91,0,0,0,2007.0049 +466,569,1021,1022,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.2823782,9.6224794,0,9,0,-23.527805,0,1,1,2021,8,1,23,45,1,1,0,55.945702,55.945702,0,0,.05,0,0,0,0,0,0,0,0,5.9306698,0,46.5,58.26,57.16,56.15,5,1,1,0,0,10,10,5,0,621.5,654481.88,32179.625,361873.13,81915.672,1404.9801,856.20013,7192.7461 +466,569,1022,1021,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.070425,9.2920799,0,9,0,126.23643,0,-9,-9,2021,8,0,38,48,1,0,0,36.150959,36.150959,0,0,.05,0,0,0,0,0,0,0,0,5.3245926,0,57.16,56.15,46.5,58.26,6.666666666666667,1,1,0,0,10,10,5,0,621.5,654481.88,32179.625,361873.13,81915.672,1404.9801,856.20013,7192.7461 +467,570,1023,1024,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.5290794,7.5420852,7,1,123.01589,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1707044,7.7100258,52,47,50,47,7,1,1,0,0,0,4,3,1,412,1060336.5,400160.38,233923.44,0,0,0,3032.9263 +467,570,1024,1023,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,-1,30.407656,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4508061,0,50,47,52,47,7,1,1,0,0,3,4,3,1,412,1060336.5,400160.38,233923.44,0,0,0,3032.9263 +467,571,1025,-9,1024,1023,1,1,42,0,0,0,3,3,-9,0,4,9.0817251,8.8603048,0,0,0,-999.0733,0,3,3,2021,8,1,40,40,1,1,0,23.663506,23.663506,0,0,0,0,0,0,0,0,1,1,0,3.6979949,0,41.17,59.31,-9,-9,1.666666666666667,1,1,0,0,9,4,5,1,1321,19267.346,96412.648,0,0,0,0,2531.4077 +468,572,1026,1028,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.1847696,7.9352078,0,1,-1,-39.399208,-9,-9,-9,2021,11,1,60,0,1,1,0,6.9645033,6.9645033,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.01,48.98,55.84,27.14,3.333333333333333,1,1,0,0,6,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1027,-9,1026,1028,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.3993,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1028,1026,-9,-9,1,1,42,0,2,0,2,2,-9,0,1,7.2482662,7.138257,0,1,1,-60.778656,-9,-9,-9,2021,7,1,30,0,1,1,0,4.4138036,4.4138036,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.84,27.14,52.01,48.98,8.333333333333334,1,1,0,1,11,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1029,-9,1026,1028,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6566,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +469,573,1030,1031,-9,-9,1,0,52,0,0,0,2,2,-9,1,4,0,0,0,31,-2,-114.67033,0,1,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,120,1,1,0,0,0,53.54,52.35,52,54.51,6.666666666666667,1,1,0,0,3,12,5,1,1154.5,1094411,636739.31,336488.22,0,0,0,3835.864 +469,573,1031,1030,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.2993355,9.4339314,0,31,2,194.45493,0,2,2,2021,8,0,40,41,1,0,0,35.276009,35.276009,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,52,54.51,53.54,52.35,8.333333333333334,1,1,0,0,12,12,5,1,1154.5,1094411,636739.31,336488.22,0,0,0,3835.864 +470,574,1032,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.7171,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,7.33,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,397,50907.793,0,0,0,0,0,876.57373 +471,575,1033,1034,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5513792,8.4701099,0,25,-11,76.582863,0,2,2,2021,11,0,47,50,1,0,0,9.9370089,9.9370089,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.26,60.7,8.333333333333334,1,1,0,0,11,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +471,575,1034,1033,-9,-9,1,1,57,0,1,0,1,1,-9,0,3,9.5887356,9.6288395,0,25,11,-41.272015,0,2,2,2021,15,5,53,45,1,5,0,33.213818,33.213818,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,38.26,60.7,57.16,56.15,3.333333333333333,1,1,0,0,14,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +471,575,1035,-9,1033,1034,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-949.45691,0,1,1,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,.31717139,0,0,0,0,1.2393956,0,22.42,68.11,-9,-9,5,1,1,0,0,1,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +472,576,1036,1037,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.4491482,8.6003027,0,10,-2,-92.192047,0,3,-9,2021,6,0,42,40,1,0,0,14.817058,14.817058,.05,.05,0,0,0,0,0,0,0,0,0,6.6852012,0,59.43,58.05,59.53,56.44,10,1,1,0,0,12,10,5,1,1122,1116756.3,857965.19,348287.22,22753.049,1859.6841,0,4715.6846 +472,576,1037,1036,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.9678802,8.2659931,6.6779418,10,2,42.850967,0,3,3,2021,7,0,19,18,1,0,0,17.166042,17.166042,.05,.05,0,0,0,0,0,0,0,0,0,7.2295265,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,12,10,5,1,1122,1116756.3,857965.19,348287.22,22753.049,1859.6841,0,4715.6846 +473,577,1038,1039,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2163467,7.5543089,36,-5,56.228306,0,3,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.184226,44.12,48.5,43.6,51.61,6.666666666666667,1,1,0,0,3,2,4,1,549,1469051.5,1133900.1,229083.63,0,0,0,3293.5793 +473,577,1039,1038,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.7649403,7.928812,11,5,62.334858,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8843751,7.6665182,43.6,51.61,44.12,48.5,8.333333333333334,1,1,0,0,0,2,4,1,549,1469051.5,1133900.1,229083.63,0,0,0,3293.5793 +474,578,1040,1041,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.6510248,9.4074183,0,10,-1,67.063393,0,2,2,2021,7,0,56,62,1,0,0,26.636536,26.636536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.34,54.26,8.333333333333334,1,1,0,0,7,8,5,1,506,644560.38,461092.66,479161.81,281525.09,1714.158,0,12522.75 +474,578,1041,1040,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.5543232,9.5168152,0,10,1,82.106476,0,3,1,2021,6,0,70,70,1,0,0,23.141512,23.141512,.05,.05,0,0,0,0,0,0,1,1,0,6.533793,0,55.34,54.26,57.06,57.76,8.333333333333334,1,1,0,0,7,8,5,1,506,644560.38,461092.66,479161.81,281525.09,1714.158,0,12522.75 +475,579,1042,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-901.3996,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9342368,0,44.6,42.84,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,596,-71697.063,0,0,0,0,0,-9.1602306 +476,580,1043,1044,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7094183,7.8084908,45,1,-4.228313,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8839545,7.6941175,57.16,56.15,60.03,50.88,8.333333333333334,1,1,0,0,3,2,3,1,387.5,1284326,779223.25,225963.2,0,0,0,3100.2993 +476,580,1044,1043,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.7005963,7.0115132,45,-1,-160.51601,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0940533,60.03,50.88,57.16,56.15,10,1,1,0,0,4,2,3,1,387.5,1284326,779223.25,225963.2,0,0,0,3100.2993 +477,581,1045,1046,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,5.7693906,4.7901587,49,23,.18387769,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.1986859,6.4897084,17.73148,0,1,1,0,3.9327571,5.2384453,53.54,34.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1785.5,3023544,251108.02,464262.44,0,0,0,2861.0156 +477,581,1046,1045,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4756885,7.591094,49,-23,79.866302,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5116532,7.8364973,57.16,56.15,53.54,34.39,8.333333333333334,1,1,0,0,0,10,3,1,1785.5,3023544,251108.02,464262.44,0,0,0,2861.0156 +478,582,1047,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.8128729,7.0440264,0,0,-947.84967,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,27,1,1,0,2.810216,6.9529204,47.95,21.46,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,306,188323.09,0,148274.45,0,0,0,756.3631 +479,583,1048,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,5,0,8.7307959,8.6184549,0,0,-1006.92,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3153176,8.3406277,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,151,621234.75,219206.25,205821.41,0,0,0,3259.2859 +480,584,1049,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7931037,8.4324932,7.0583348,0,0,-875.33929,0,2,2,2021,11,1,15,35,1,1,0,20.874115,20.874115,.05,.05,0,0,0,0,.62173563,0,0,0,0,.60527939,6.7640252,39.96,48.03,-9,-9,6.666666666666667,1,1,0,0,15,7,4,1,2090,-269139.97,153978.55,0,0,0,-526.09448,1488.8463 +481,585,1050,-9,-9,-9,1,1,66,0,0,0,2,2,-9,1,3,0,7.4905992,7.5960131,0,0,-893.04199,0,2,1,2021,27,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.649847,28.86,57.42,-9,-9,5,1,1,0,0,10,7,3,1,737,571421.94,272064.47,170250.08,0,1564.6932,0,1124.8523 +482,586,1051,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.1478281,6.0734577,0,0,0,-1064.6732,0,-9,-9,2021,13,3,7,7,1,3,0,6.6810193,6.6810193,0,0,0,0,0,0,0,0,0,0,0,0,0,47.04,32.59,-9,-9,8.333333333333334,2,3,0,0,6,5,2,1,2507,1318648.6,126891.76,207724.81,0,0,0,68.965057 +483,587,1052,-9,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.5676222,8.8001432,0,0,0,-902.53186,0,2,2,2021,8,0,37,37,1,0,0,18.833384,18.833384,.05,.05,0,0,0,0,0,0,1,1,0,3.9397614,0,52.6,52.88,-9,-9,6.666666666666667,4,2,0,0,9,6,4,1,463,530629.63,467253.41,137844.58,72208.93,956.98126,0,3038.448 +483,588,1053,-9,-9,1052,1,0,26,0,1,0,1,1,-9,0,4,7.8070278,8.0796766,6.0007882,0,0,-1048.9542,0,-9,1,2021,11,0,40,16,1,2,1,8.9472027,8.9472027,.05,.05,0,0,0,0,0,0,1,1,0,6.1810966,0,48,57,-9,-9,7,1,1,0,0,4,6,4,1,411,100921.55,12939.668,0,0,-274.83923,0,1994.5897 +483,588,1054,-9,1053,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-870.57922,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,411,100921.55,12939.668,0,0,-274.83923,0,1994.5897 +484,589,1055,1056,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3207388,8.0811882,0,26,-6,70.467308,0,3,3,2021,13,1,32,30,1,1,0,11.428999,11.428999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,54.2,57.49,5,1,1,0,0,9,4,4,1,277.5,1013155,351867.75,306059.06,34569.805,34968.227,0,3772.8232 +484,589,1056,1055,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.7152185,8.789916,0,26,6,41.941074,0,2,2,2021,7,0,45,40,1,0,0,18.749117,18.749117,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.17,49.39,8.333333333333334,1,1,0,0,9,4,4,1,277.5,1013155,351867.75,306059.06,34569.805,34968.227,0,3772.8232 +484,590,1057,-9,1055,1056,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-902.94446,-9,2,1,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.56,66.03,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,263,55476.395,0,0,0,407.94177,0,0 +485,591,1058,1059,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,55,-4,-26.925184,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.0666609,0,0,1,1,0,4.7030163,0,63.68,30.38,61.71,43.2,8.333333333333334,1,1,0,0,7,11,3,1,1144,430053.69,9048.0234,175198.59,0,0,0,2016.1301 +485,591,1059,1058,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.8529472,7.8090348,55,4,45.06847,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6642087,7.5766501,61.71,43.2,63.68,30.38,8.333333333333334,1,1,0,0,0,11,3,1,1144,430053.69,9048.0234,175198.59,0,0,0,2016.1301 +486,592,1060,1061,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.5453749,7.3743196,0,42,-1,-15.287172,0,2,3,2021,6,0,30,31,1,0,0,6.4533868,6.4533868,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,44.95,34.89,10,1,1,0,0,6,2,4,1,404.5,434066.56,241153.5,191226.72,-6975.0977,0,0,1755.2 +486,592,1061,1060,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.5614638,7.6088934,0,42,1,51.698395,0,2,2,2021,23,11,35,35,1,11,0,8.0419035,8.0419035,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.95,34.89,59.29,49.68,3.333333333333333,1,1,0,0,9,2,4,1,404.5,434066.56,241153.5,191226.72,-6975.0977,0,0,1755.2 +487,593,1062,1063,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,38,-4,-80.080292,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,46.47,51,49,8.333333333333334,2,3,0,0,0,9,4,1,545,733907.75,385376.5,332440.06,0,9844.6475,0,1581.3108 +487,593,1063,1062,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5567102,8.2171926,0,9,4,-17.678474,0,-9,-9,2021,10,0,48,40,1,1,0,10.245575,10.245575,.05,.05,0,0,0,0,0,0,0,0,0,6.246449,0,51,49,42.7,46.47,7,2,3,0,0,1,9,4,1,545,733907.75,385376.5,332440.06,0,9844.6475,0,1581.3108 +487,594,1064,-9,1062,1063,1,1,36,0,0,0,2,2,-9,0,4,8.7892647,8.9945011,0,0,0,-1024.439,0,3,2,2021,10,0,40,39,1,1,1,18.316265,18.316265,.05,.05,0,0,0,0,0,0,0,0,0,7.9731555,0,50,57,-9,-9,7,2,3,0,0,1,9,5,1,2682,286686.25,-16329.639,0,0,0,0,2705.0464 +488,595,1065,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.5956135,6.4779878,0,0,-952.92767,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3460729,7.0814185,62,47.26,-9,-9,8.333333333333334,1,1,0,0,11,8,2,0,343,577578.25,298228.81,214952.14,0,0,0,1051.4954 +489,596,1066,1069,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.642601,9.7385855,0,7,4,39.41991,0,2,2,2021,13,2,48,52,1,2,0,39.732544,39.732544,.05,.05,0,0,0,0,0,0,0,0,0,7.1306143,0,53.38,52.51,59.86,40.18,5,1,1,0,0,8,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1067,-9,1069,1066,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.4272,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1068,-9,1069,1066,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1069,1066,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.7022681,7.7871752,0,7,-4,-39.35862,0,2,3,2021,7,0,19,18,1,0,0,12.19194,12.19194,0,0,0,0,0,0,0,0,0,0,0,0,0,59.86,40.18,53.38,52.51,8.333333333333334,1,1,0,0,8,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +490,597,1070,1072,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,7.9113641,7.8556094,0,15,5,39.593315,0,2,2,2021,7,0,38,38,1,0,0,9.648715,9.648715,0,0,0,0,0,0,0,88,1,1,0,0,0,48.77,60.16,32.96,33.84,5,1,1,0,0,8,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1071,-9,1072,1070,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-916.84155,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1072,1070,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,14,-5,6.249248,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,32.96,33.84,48.77,60.16,3.333333333333333,1,1,0,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1073,-9,1072,1070,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.1584,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1074,-9,1072,1070,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.19391,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +491,598,1075,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,4,0,0,0,0,0,-965.15021,0,2,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,42.01,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,902,491132.78,0,395761.63,0,0,0,515.97766 +492,599,1076,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,8.8744135,8.6729193,0,0,-964.17346,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.23068,8.5945215,57.06,57.76,-9,-9,10,1,1,0,0,3,2,5,1,349,763424.5,473404.22,175660.42,0,0,0,2640.3193 +493,600,1077,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,1,0,0,0,0,0,-952.79236,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.17,15.47,-9,-9,0,1,1,0,0,0,4,1,1,550,-142071.45,-12944.363,0,0,0,0,1088.2687 +494,601,1078,-9,1080,1079,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.58112,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +494,601,1079,1080,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.1917315,9.1778011,0,13,0,206.42595,0,2,1,2021,11,1,55,50,1,1,0,21.578588,21.578588,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.03,53.23,50.03,52.62,5,1,1,0,0,9,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +494,601,1080,1079,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.6358442,7.6666899,0,13,0,-34.024593,0,2,3,2021,15,3,15,0,1,3,0,18.127657,18.127657,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,43.03,53.23,6.666666666666667,1,1,0,0,9,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +495,602,1081,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.6418123,7.8028789,0,0,-959.94708,0,3,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,0,0,0,3.0733721,7.5647683,47.44,56.39,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,170,235199.88,440072.13,139757.58,106465.2,0,0,1745.4554 +496,603,1082,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.6990461,8.8357649,0,0,0,-1038.2222,0,2,2,2021,8,0,32,30,1,0,0,19.675653,19.675653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,381,92174.648,133087.75,176970.97,69972.867,0,884.92328,2746.052 +497,604,1083,-9,1085,1084,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8356,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +497,604,1084,1085,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.6954441,9.0348864,0,9,-1,10.489863,0,1,1,2021,12,1,37,43,1,1,0,18.524515,18.524515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.79,62.55,25.02,64.34,8.333333333333334,1,1,0,0,9,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +497,604,1085,1084,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,9.2694845,9.7642927,0,7,1,81.548805,-9,3,2,2021,22,7,50,0,1,7,0,45.517315,45.517315,.05,.05,0,0,0,0,0,0,0,0,0,4.289762,0,25.02,64.34,36.79,62.55,3.333333333333333,1,1,0,0,9,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +498,605,1086,1087,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.2227926,9.0919008,34,4,57.512775,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6166387,9.0493984,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,7,5,1,977.5,1154808,89336.094,639501.69,0,0,0,7816.1357 +498,605,1087,1086,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,34,-4,109.81694,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9165521,0,51.83,57.2,57.16,56.15,10,1,1,0,0,10,7,5,1,977.5,1154808,89336.094,639501.69,0,0,0,7816.1357 +499,606,1088,-9,-9,-9,1,0,58,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1033.3912,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8411099,0,58.9,13.94,-9,-9,5,1,1,0,0,0,10,1,0,112,-27543.438,0,0,0,1500.8657,0,2048.2856 +499,607,1089,-9,1088,-9,1,1,36,0,2,0,2,2,-9,0,3,9.0434456,8.6694851,0,0,0,-930.76434,0,2,-9,2021,9,0,67,30,1,0,1,14.018541,14.018541,.05,.05,0,0,0,0,0,2,1,1,0,1.8239588,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +499,607,1090,-9,-9,1089,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3959,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +499,607,1091,-9,-9,1089,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-994.90302,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +500,608,1092,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.659966,7.7952533,0,0,0,-985.47491,0,3,2,2021,9,1,40,30,1,1,0,6.4779263,6.4779263,0,0,0,0,0,0,0,7,0,0,0,0,0,60.85,42.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,136,597068.44,206506.77,170160.72,0,0,0,1127.6042 +501,609,1093,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1060.7653,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.22,20.89,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,602,124089.45,0,0,0,-1711.5426,0,2580.4968 +502,610,1094,-9,1095,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.3811,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,1089.5,309762.25,107262.98,209571.41,83507.195,0,0,986.55188 +502,610,1095,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9777751,7.2952385,0,0,0,-739.56647,0,3,3,2021,19,8,20,20,1,8,0,7.5227261,7.5227261,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,4,9,2,0,1089.5,309762.25,107262.98,209571.41,83507.195,0,0,986.55188 +502,611,1096,-9,1095,-9,1,0,22,0,1,0,2,2,-9,0,4,7.8265185,7.697268,0,0,0,-1110.4086,0,2,-9,2021,8,0,43,43,1,0,1,7.3819985,7.3819985,.05,.05,0,0,0,0,0,0,1,1,0,.28195527,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,1792,-150201.81,14791.816,0,0,0,0,941.67334 +502,612,1097,-9,1095,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-959.1153,0,2,-9,2021,10,0,0,16,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,9,1,0,1844,89981.133,0,0,0,0,0,498.77124 +503,613,1098,1099,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,53,-1,-17.995996,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,35.51,57.16,56.15,5,1,1,0,0,3,10,2,1,1597.5,1036253.7,562322.06,388568.72,0,0,0,2278.0674 +503,613,1099,1098,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.1826468,7.1476426,53,1,13.552381,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2384119,7.0376196,57.16,56.15,44.49,35.51,10,1,1,0,0,7,10,2,1,1597.5,1036253.7,562322.06,388568.72,0,0,0,2278.0674 +504,614,1100,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,5.8195539,5.9510722,0,0,-1131.2212,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.8962884,5.7974501,48.38,38.92,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,923,254499,62775.332,242565.02,0,0,0,820.6684 +505,615,1101,1102,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.011301,7.2248888,8,4,147.4709,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9257531,46.01,52.88,47.12,17.61,10,1,1,0,0,3,13,2,1,614,632737.13,345712.44,200655.78,0,0,0,1834.5492 +505,615,1102,1101,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,8,-4,-7.8528929,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,17.61,46.01,52.88,3.333333333333333,1,1,0,0,0,13,2,1,614,632737.13,345712.44,200655.78,0,0,0,1834.5492 +505,616,1103,-9,1102,1101,1,1,25,0,0,0,1,1,-9,0,4,8.4339962,8.3269444,0,0,0,-1060.5945,0,3,3,2021,12,1,41,42,1,1,0,10.904174,10.904174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1085,98562.055,65933.07,196399.75,98694.07,-1325.639,2195.5498,2092.324 +506,617,1104,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6108441,7.2587671,0,0,-891.17413,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.989337,7.4531579,63.03,32.94,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,643,430175.22,237400.41,90415.195,0,627.54858,0,1844.4351 +507,618,1105,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.411499,7.4051409,0,0,-1119.5302,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4929652,7.4867616,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,4237,115463.06,151221.11,106425.85,0,0,0,3060.5742 +507,619,1106,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.9736142,7.8971705,0,0,0,-917.25946,0,3,3,2021,6,0,60,40,1,0,0,5.0138869,5.0138869,.05,.05,0,0,0,0,0,0,0,0,0,6.4442654,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,592,-132120.58,24668.158,0,0,0,0,2060.8818 +508,620,1107,-9,1109,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.79004,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,620,1108,-9,1109,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.32373,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,620,1109,-9,1111,1110,1,0,25,1,2,0,2,2,-9,0,3,7.7685537,7.6195927,0,0,0,-845.77875,-9,2,2,2021,12,3,46,0,1,3,1,5.8301539,5.8301539,0,0,0,0,0,0,0,80,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,7,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,621,1110,1111,-9,-9,1,1,49,1,2,0,2,2,-9,0,3,8.5062475,8.6913395,0,6,5,47.980553,0,-9,-9,2021,14,3,40,40,1,3,0,13.36272,13.36272,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.13,49.81,33.68,47.08,6.666666666666667,1,1,0,0,7,5,4,0,696,200640.89,60710.781,213181.97,97250.016,1385.9705,1753.7361,2676.0254 +508,621,1111,1110,-9,-9,1,0,44,1,2,0,2,2,-9,0,2,7.6764398,7.6420903,0,6,-5,-51.16222,0,2,3,2021,22,8,40,40,1,8,0,7.2347713,7.2347713,0,0,0,0,0,0,0,7,1,1,0,0,0,33.68,47.08,48.13,49.81,5,1,1,0,0,7,5,4,0,696,200640.89,60710.781,213181.97,97250.016,1385.9705,1753.7361,2676.0254 +509,622,1112,-9,1113,1115,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6565,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1113,1115,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,6.9118705,6.7643504,0,21,-1,-114.45354,0,3,3,2021,10,2,10,10,1,2,0,12.444386,12.444386,0,0,0,0,0,0,0,0,1,1,0,6.9564829,0,49.35,59.64,57.16,56.15,10,1,1,0,0,9,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1114,-9,1113,1115,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.6709,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1115,1113,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.1471205,8.6193638,0,21,1,25.413206,-9,2,2,2021,6,0,30,0,1,0,0,23.352921,23.352921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,12,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +510,623,1116,-9,1117,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.27283,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,647.5,9060.1289,0,0,0,0,0,1442.55 +510,623,1117,-9,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1086.3369,1,3,2,2021,4,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.7,31.18,-9,-9,10,3,4,0,0,4,8,1,0,647.5,9060.1289,0,0,0,0,0,1442.55 +510,624,1118,-9,1117,-9,1,0,22,0,2,1,2,0,0,0,5,0,0,0,0,0,-939.61011,-9,2,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,3,4,0,1,4,8,1,0,751,56292.992,0,0,0,0,-309.21356,-307.51721 +510,625,1119,-9,1117,-9,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-963.14545,-9,2,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,59.12,-9,-9,6.666666666666667,3,4,0,0,5,8,1,0,415,0,0,0,0,0,0,175.67804 +511,626,1120,1122,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.3868375,7.5334044,0,17,10,-22.173479,0,3,3,2021,8,0,21,21,1,0,0,11.80365,11.80365,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.1,54.82,53.76,45.56,8.333333333333334,2,3,0,0,9,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1121,-9,1122,1120,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1122,1120,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,8.187418,7.7624807,0,17,-10,-34.823948,0,3,3,2021,11,1,30,30,1,1,0,11.772608,11.772608,0,0,0,0,0,0,0,0,1,1,0,0,0,53.76,45.56,60.1,54.82,8.333333333333334,2,3,0,0,5,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1123,-9,1122,1120,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.19427,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1124,-9,1122,1120,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.70129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +512,627,1125,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-987.06921,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,1,1,0,0,3,5,1,1,650,99642.992,0,0,0,0,0,-191.0453 +513,628,1126,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.2575259,5.2334595,0,0,-1004.6155,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.394455,0,0,1,1,0,0,5.5432281,47.81,29.49,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,537,179670.66,0,67906.18,0,0,0,2327.0249 +514,629,1127,-9,1129,1128,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-914.29602,-9,2,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,-9,-9,10,1,1,0,0,0,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +514,629,1128,1129,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1258774,9.2691231,0,18,4,15.192594,0,1,1,2021,6,0,45,39,1,0,0,29.651905,29.651905,.05,.05,0,0,0,0,0,0,1,1,0,4.0475602,0,57.16,56.15,45.56,60.26,8.333333333333334,1,1,0,0,9,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +514,629,1129,1128,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.892004,6.6593723,0,18,-4,-109.99222,0,2,3,2021,13,3,12,9,1,3,0,11.291541,11.291541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,57.16,56.15,8.333333333333334,1,1,0,0,7,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +515,630,1130,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.0575609,6.7694564,0,0,0,-960.62244,-9,-9,-9,2021,6,0,7,0,1,0,0,15.492303,15.492303,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.9,48.63,-9,-9,10,1,1,0,0,5,2,2,1,324,889402.25,68181.406,443378.97,0,0,0,106.25626 +516,631,1131,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.9591,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9336567,0,25.02,64.34,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,273,0,0,0,0,0,0,648.22437 +517,632,1132,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.1808705,7.4697247,0,0,-1169.8621,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4296961,7.1327014,39.16,38.91,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,126,807088.63,408900.88,460294.75,51058.25,0,0,1174.851 +518,633,1133,-9,1134,1136,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8662,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1134,1136,-9,-9,1,0,41,0,2,0,3,3,-9,0,5,0,0,0,20,-5,-162.43408,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.89,48.96,32.16,37.61,10,2,3,0,0,2,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1135,-9,1134,1136,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.81647,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1136,1134,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,8.4206324,8.1483421,0,20,5,79.31118,0,3,3,2021,19,7,40,40,1,7,0,10.162932,10.162932,0,0,0,0,0,0,0,7,1,1,0,0,0,32.16,37.61,37.89,48.96,6.666666666666667,2,3,0,0,10,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,634,1137,-9,1134,1136,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-880.07996,-9,3,3,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.18,43.12,-9,-9,10,2,3,0,0,3,7,1,1,412,108070.47,0,0,0,0,47.303883,569.41705 +519,635,1138,1139,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.6986094,7.6595573,0,22,-1,-81.877853,0,2,2,2021,6,0,50,56,1,0,0,6.3005075,6.3005075,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.36,42.15,8.333333333333334,2,3,0,0,10,9,5,1,603.5,1254339.4,675986.44,422918.88,0,0,0,3875.4226 +519,635,1139,1138,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.9458399,8.8512621,0,22,1,-96.43924,0,2,2,2021,12,2,38,38,1,2,0,22.325342,22.325342,0,0,0,0,0,0,0,0,1,1,0,1.2311009,0,43.36,42.15,57.16,56.15,8.333333333333334,2,3,0,0,8,9,5,1,603.5,1254339.4,675986.44,422918.88,0,0,0,3875.4226 +520,636,1140,1141,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,48,-8,-101.14169,0,-9,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8715587,0,57.04,39.67,58,50,8.333333333333334,1,1,0,0,6,7,2,1,295.5,295310.78,62374.125,336725.63,0,0,0,2387.7539 +520,636,1141,1140,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,7.4716458,7.4802499,48,8,-145.90582,0,1,1,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0020905,7.2230935,58,50,57.04,39.67,10,1,1,0,0,0,7,2,1,295.5,295310.78,62374.125,336725.63,0,0,0,2387.7539 +521,637,1142,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1054.5121,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,3,8,1,0,1193,134537.55,0,0,0,0,0,1931.9041 +522,638,1143,-9,1144,1146,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4043,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1144,1146,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,0,0,0,1,-10,8.7626371,-9,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,45.81,61.51,10,1,1,0,0,3,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1145,-9,1144,1146,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.39246,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1146,1144,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.3073997,9.4962349,0,1,10,2.8438218,-9,-9,-9,2021,12,2,50,0,1,2,0,27.296999,27.296999,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.81,61.51,57.06,57.76,8.333333333333334,1,1,0,0,7,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +523,639,1147,1148,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.3718171,5.6130719,6,-4,-48.573254,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3012199,49.91,58.02,56.52,48.31,8.333333333333334,1,1,0,0,5,4,2,1,1396.5,302697.69,149922.56,118675.92,0,0,0,2191.0732 +523,639,1148,1147,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.0053821,4.4208694,6,4,-9.4694738,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0420461,4.6479597,56.52,48.31,49.91,58.02,8.333333333333334,1,1,0,0,0,4,2,1,1396.5,302697.69,149922.56,118675.92,0,0,0,2191.0732 +524,640,1149,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,7.3603139,7.4141922,0,0,0,-1087.1104,-9,1,-9,2021,11,0,37,0,1,0,0,5.4930835,5.4930835,0,0,0,0,0,0,0,0,0,0,0,.84724885,0,47.07,53.97,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,311,44296.023,0,0,0,0,0,1150.5043 +525,641,1150,1151,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.215498,7.8140411,0,17,0,40.718716,0,3,2,2021,13,3,53,55,1,3,0,7.7349477,7.7349477,0,0,0,0,0,0,0,0,0,0,0,3.1727092,0,33.37,60.58,57.33,53.46,6.666666666666667,1,1,0,0,12,1,4,1,410,320192.19,165231.59,126244.67,67143.938,14863.206,0,2940.5964 +525,641,1151,1150,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.5911942,8.0355005,6.7502937,10,0,19.215343,0,-9,-9,2021,8,0,48,42,1,0,0,4.3215499,4.3215499,.05,.05,0,0,0,0,0,0,0,0,0,5.6390181,6.3214221,57.33,53.46,33.37,60.58,10,1,1,0,0,13,1,4,1,410,320192.19,165231.59,126244.67,67143.938,14863.206,0,2940.5964 +526,642,1152,1153,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.5872121,7.4850078,20,7,-45.605652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.678905,7.283525,64.23999999999999,44.83,47.04,57.99,8.333333333333334,1,1,0,0,0,2,3,1,463.5,957617.25,417942.09,247279.38,0,0,0,2529.3584 +526,642,1153,1152,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9696245,7.4040871,20,-7,61.359131,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2434556,6.6906013,47.04,57.99,64.23999999999999,44.83,10,1,1,0,0,8,2,3,1,463.5,957617.25,417942.09,247279.38,0,0,0,2529.3584 +527,643,1154,1155,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,5.5725622,8.398778,8.3722057,12,7,59.925823,0,2,2,2021,6,0,2,4,1,0,0,14.47759,14.47759,.05,.05,0,0,0,0,0,0,0,0,0,8.174386,0,54.79,55.86,57.06,57.76,10,1,1,0,0,9,9,4,1,267,1837361.8,873235.19,565318.75,0,6192.9028,0,-296.98654 +527,643,1155,1154,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,6.6901789,6.4316592,12,-7,-24.627605,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.930099,6.7959719,57.06,57.76,54.79,55.86,0,1,1,0,0,7,9,4,1,267,1837361.8,873235.19,565318.75,0,6192.9028,0,-296.98654 +528,644,1156,1157,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.5803189,7.4846158,36,4,77.274033,0,2,2,2021,6,0,0,38,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5754514,7.8422003,63.01,41.3,57.16,56.15,10,1,1,0,0,8,12,4,1,1472.5,294648.09,57620.793,114180.58,0,5857.4668,0,2407.6396 +528,644,1157,1156,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6706395,7.8674502,0,6,-4,-122.56261,0,3,3,2021,9,0,30,30,1,0,0,10.242397,10.242397,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,63.01,41.3,8.333333333333334,1,1,0,0,8,12,4,1,1472.5,294648.09,57620.793,114180.58,0,5857.4668,0,2407.6396 +529,645,1158,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.222578,8.9910851,8.0635767,0,0,-946.0769,0,2,2,2021,23,10,35,50,1,10,0,10.671935,10.671935,.05,.05,0,0,0,0,0,27,0,0,0,8.1297283,0,26.03,54.63,-9,-9,1.666666666666667,1,1,0,1,14,9,5,1,459,932819.19,739314.56,343610.56,115643.05,0,0,3865.0701 +530,646,1159,1160,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.6818733,6.6071501,0,24,6,118.92913,0,3,3,2021,8,0,14,12,1,0,0,8.6192341,8.6192341,.05,.05,0,0,0,0,0,2,0,0,0,1.7352682,0,52,54.51,40.61,55.65,0,1,1,0,0,9,10,5,1,1159.5,1308423.9,1042552.3,253096.81,0,11350.609,0,2337.8979 +530,646,1160,1159,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.5530605,8.8994961,0,24,-6,-67.417915,0,3,3,2021,12,3,42,41,1,3,0,17.258829,17.258829,.05,.05,0,0,0,0,0,0,0,0,0,4.3134151,0,40.61,55.65,52,54.51,0,1,1,0,0,10,10,5,1,1159.5,1308423.9,1042552.3,253096.81,0,11350.609,0,2337.8979 +530,647,1161,-9,1159,1160,1,1,22,0,0,0,2,2,-9,0,5,9.379077,9.6328897,0,0,0,-1019.7317,0,2,1,2021,12,0,48,43,1,0,1,29.932457,29.932457,0,0,0,0,0,0,0,0,0,0,0,3.816834,0,38.37,59.33,-9,-9,0,1,1,0,0,6,10,5,1,337,-78517.227,0,0,0,7019.5254,2137.7461,4806.9331 +531,648,1162,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,6.6019063,6.559319,0,0,-866.6842,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,2.5449769,0,0,1,1,0,0,6.6896172,42.02,28.46,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,709,135653.55,88537.469,0,0,0,0,1034.6154 +532,649,1163,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,2,0,7.9501424,7.6950207,0,0,-957.43726,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,6.4115067,0,45.071529,0,1,1,0,5.2005358,7.660625,39.91,22.6,-9,-9,6.666666666666667,1,1,0,0,0,11,4,1,339,370750.09,348089.72,58946.566,0,0,0,2222.1855 +533,650,1164,-9,1166,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.4791,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1165,-9,1166,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.1089,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1166,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,5,7.1751499,7.3493028,0,0,0,-1106.9357,0,3,3,2021,0,0,24,24,1,0,0,7.6940312,7.6940312,0,0,0,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,2,3,0,0,8,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1167,-9,1166,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.73419,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +534,651,1168,1169,-9,-9,1,0,23,0,0,0,3,3,-9,0,4,7.2959533,7.3816657,0,1,-2,72.302864,-9,-9,-9,2021,20,6,12,0,1,6,0,13.628222,13.628222,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,59.88,52,54.51,3.333333333333333,1,1,0,0,2,12,4,1,853.5,-27866.049,44420.785,110218.28,100230.74,2972.2109,0,2526.615 +534,651,1169,1168,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.3650723,8.2075205,0,1,2,56.504639,-9,3,3,2021,10,0,70,0,1,0,0,6.2872138,6.2872138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,39.76,59.88,5,1,1,0,0,5,12,4,1,853.5,-27866.049,44420.785,110218.28,100230.74,2972.2109,0,2526.615 +535,652,1170,1171,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.9578609,8.8997059,0,9,-1,93.286415,0,-9,-9,2021,6,0,39,38,1,0,0,24.440838,24.440838,0,0,0,0,0,0,0,0,0,0,0,5.2597151,0,63.39,31.69,50.33,54.06,8.333333333333334,1,1,0,0,10,10,5,1,1385,444652.16,129252.95,328422.91,235431.53,7906.8516,0,5914.0249 +535,652,1171,1170,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.163229,8.1947937,9,1,.85299808,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,7.0920434,8.0810204,50.33,54.06,63.39,31.69,1.666666666666667,1,1,0,0,5,10,5,1,1385,444652.16,129252.95,328422.91,235431.53,7906.8516,0,5914.0249 +536,653,1172,1173,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,0,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,61.01,44.96,44.51,16.42,8.333333333333334,1,1,0,0,1,1,1,0,683,236842.41,55210.258,211958.42,0,0,0,1802.2584 +536,653,1173,1172,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,52,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,20.798153,0,0,1,1,0,0,0,44.51,16.42,61.01,44.96,6.666666666666667,1,1,0,0,0,1,1,0,683,236842.41,55210.258,211958.42,0,0,0,1802.2584 +537,654,1174,1175,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,28,-12,36.177814,0,1,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5473142,0,58.15,52.91,59.27,44.84,10,1,1,0,0,5,9,3,1,2063.5,1176830,710204.13,287671.88,0,0,0,2615.6362 +537,654,1175,1174,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.0630331,8.221633,4,12,-12.073656,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9189849,59.27,44.84,58.15,52.91,8.333333333333334,1,1,0,0,9,9,3,1,2063.5,1176830,710204.13,287671.88,0,0,0,2615.6362 +538,655,1176,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.391109,7.4594746,0,0,-1077.0432,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8705224,7.7644777,58.15,50.21,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,668,493681.59,338578.31,240702.53,0,0,0,1118.3909 +539,656,1177,-9,1178,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.8324,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,809.5,-42860.141,0,0,0,0,0,666.52258 +539,656,1178,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,0,0,0,0,0,-962.49854,0,-9,-9,2021,13,2,0,12,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,58.26,-9,-9,5,1,1,1,0,2,2,1,0,809.5,-42860.141,0,0,0,0,0,666.52258 +540,657,1179,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,0,0,-830.4588,0,-9,-9,2021,14,2,0,20,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52,54.51,-9,-9,5,1,1,1,0,13,12,2,1,107,134115.78,0,0,0,0,0,306.93869 +541,658,1180,-9,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,7.9951363,8.0780001,0,0,0,-987.75513,0,3,1,2021,6,0,36,40,1,0,0,6.9934354,6.9934354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,11,8,3,0,3328.5,338626.66,122390.83,159341.08,0,0,0,576.58508 +541,658,1181,-9,-9,1180,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.24365,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,3328.5,338626.66,122390.83,159341.08,0,0,0,576.58508 +541,659,1182,-9,-9,1180,1,1,26,0,1,0,1,1,-9,0,4,8.7383299,8.8555174,0,0,0,-1022.9828,0,-9,2,2021,11,1,41,37,1,1,1,17.738821,17.738821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,8.333333333333334,3,4,0,0,3,8,5,0,1673,141750.28,41758.879,0,0,0,0,1828.9922 +542,660,1183,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,7.9276338,8.1385403,0,0,0,-1019.7512,0,3,3,2021,22,8,32,0,1,8,0,9.678401,9.678401,0,0,0,0,0,0,0,0,1,1,0,0,0,37,15.95,-9,-9,0,3,4,0,1,1,8,4,0,824,256398.81,0,0,0,0,0,1983.4269 +543,661,1184,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.9306583,7.36164,0,0,-1073.924,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.47401,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,347,397898.66,59777.535,93816.25,0,0,0,1966.8204 +544,662,1185,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,5.6896143,5.5373945,0,0,0,-1000.1422,0,2,2,2021,22,10,6,20,1,10,0,5.6666584,5.6666584,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,28.92,-9,-9,3.333333333333333,1,1,0,0,8,6,2,0,200,73879.086,82696.586,0,0,0,0,701.78693 +545,663,1186,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2249594,6.2010674,0,0,-913.40076,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8607409,6.0577197,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,336,-47784.145,-22796.957,0,0,10826.462,0,89.47567 +546,664,1187,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.893424,8.513381,0,0,0,-1002.6205,0,2,2,2021,8,1,38,70,1,1,0,18.077143,18.077143,.05,.05,0,0,0,0,0,0,0,0,0,3.0201681,0,41.85,56.37,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,359,58468.094,37419.797,0,0,0,0,1610.1683 +547,665,1188,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.7251348,8.7137241,0,0,0,-895.88257,0,3,2,2021,6,0,47,50,1,0,0,16.918888,16.918888,0,0,0,0,0,0,0,0,0,0,0,3.9105682,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,394,72253.953,0,0,0,0,0,2994.1431 +548,666,1189,-9,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.59589,8.8268147,0,0,0,-920.02295,0,2,3,2021,15,4,36,40,1,4,0,18.061096,18.061096,.05,.05,0,0,0,0,0,2,1,1,0,0,0,26.19,64.7,-9,-9,1.666666666666667,1,1,0,0,12,13,4,1,781,132002.77,29533.869,133681.92,60115.473,1118.936,8261.4072,2626.655 +548,667,1190,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.4443922,8.429987,0,0,0,-956.69061,0,-9,-9,2021,12,0,38,40,1,0,0,18.507135,18.507135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,4,13,4,1,535.5,263481.56,144631.86,195111.94,45116.219,0,0,2289.9817 +548,667,1191,-9,1190,1189,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.54828,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,535.5,263481.56,144631.86,195111.94,45116.219,0,0,2289.9817 +549,668,1192,1193,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.1422205,8.3936167,36,12,-80.339912,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1863394,42.85,40.94,54.37,54.8,5,1,1,0,0,4,9,4,1,847,1286353.1,573778.5,433170.75,0,0,0,2713.0142 +549,668,1193,1192,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.2521968,6.1920447,37,-12,18.248764,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82446355,6.2419448,54.37,54.8,42.85,40.94,8.333333333333334,1,1,0,0,11,9,4,1,847,1286353.1,573778.5,433170.75,0,0,0,2713.0142 +550,669,1194,1195,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,0,0,0,5,-2,19.610601,0,1,1,2021,29,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,38.74,28.33,62.63,0,1,1,1,0,4,1,3,1,1267,23150.729,0,0,0,7645.9434,0,1020.0485 +550,669,1195,1194,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.310689,7.9984131,0,5,2,17.903677,0,-9,-9,2021,24,12,38,40,1,12,0,9.8545675,9.8545675,0,0,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,43.1,38.74,5,1,1,0,0,5,1,3,1,1267,23150.729,0,0,0,7645.9434,0,1020.0485 +551,670,1196,1197,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,4,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,16.986774,0,42,1,1,0,0,0,39.39,37.66,29.86,20.5,1.666666666666667,1,1,0,0,0,12,1,0,1123,869.48242,0,0,0,0,0,2406.3433 +551,670,1197,1196,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,42,-4,0,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,20.5,39.39,37.66,5,1,1,0,0,0,12,1,0,1123,869.48242,0,0,0,0,0,2406.3433 +551,671,1198,-9,1197,1196,1,1,34,0,0,0,1,1,-9,0,4,7.8396082,7.9751678,0,0,0,-980.28046,0,2,2,2021,12,0,38,40,1,0,1,9.4415426,9.4415426,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,454,-122048.59,24886.709,0,0,0,0,1842.4459 +552,672,1199,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,3,0,0,0,0,0,-981.7735,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,5,13,1,1,1314,180791.69,-43541.559,259215.17,0,0,0,406.01529 +552,673,1200,-9,1199,-9,1,0,24,0,0,0,1,1,-9,0,3,7.3400812,7.2610121,0,0,0,-1040.006,0,2,-9,2021,15,4,26,35,1,4,1,8.6545143,8.6545143,0,0,0,0,0,0,0,0,1,1,0,0,0,40.18,28.81,-9,-9,6.666666666666667,1,1,0,0,3,13,3,1,1973,-196037.86,0,0,0,0,0,490.83221 +553,674,1201,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-906.02875,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,1.285219,0,0,1,1,0,0,0,48.13,26.21,-9,-9,5,1,1,0,0,0,2,1,0,325,-106957.75,0,0,0,0,0,692.85498 +554,675,1202,1205,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6249371,8.6381197,0,12,-3,-85.017319,0,1,2,2021,5,0,39,58,1,0,0,15.146246,15.146246,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,12,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1203,-9,1202,1205,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0854,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1204,-9,1202,1205,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.27686,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1205,1202,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.2114849,9.2895203,0,12,3,-57.170841,0,2,2,2021,8,0,38,38,1,0,0,32.300259,32.300259,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,10,1,1,0,0,13,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +555,676,1206,1207,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,34,-13,-131.3633,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.638248,0,51.14,60.45,61.43,43.34,8.333333333333334,1,1,0,0,0,6,2,1,209,214116.59,-35614.477,102177.02,0,0,0,3321.3257 +555,676,1207,1206,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,5.7748795,5.50632,34,13,155.69472,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4308186,5.765337,61.43,43.34,51.14,60.45,8.333333333333334,1,1,0,0,0,6,2,1,209,214116.59,-35614.477,102177.02,0,0,0,3321.3257 +556,677,1208,-9,-9,-9,1,0,46,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1075.1356,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.86,36.9,-9,-9,3.333333333333333,1,1,1,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +556,677,1209,-9,1208,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0345,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +556,677,1210,-9,1208,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.36664,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +557,678,1211,1212,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.148982,9.1493502,0,25,3,-31.273558,0,2,2,2021,11,0,45,45,1,0,0,22.184166,22.184166,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.31,52.14,61.04,23.35,8.333333333333334,1,1,0,0,8,9,4,1,243.5,280121.13,160829.41,293651.13,130234.52,0,0,3736.269 +557,678,1212,1211,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,0,0,0,25,-3,-25.328457,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,23.35,39.31,52.14,8.333333333333334,1,1,0,0,7,9,4,1,243.5,280121.13,160829.41,293651.13,130234.52,0,0,3736.269 +557,679,1213,-9,1212,1211,1,0,18,0,1,0,2,2,1,0,3,7.8612289,7.8474469,0,0,0,-932.16089,-9,2,2,2021,11,0,16,0,1,0,1,17.131144,17.131144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,275,86971.117,71124.164,0,0,0,0,872.18787 +558,680,1214,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.893301,5.4604201,0,0,-1024.016,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,27.741177,0,0,1,1,0,0,5.7256765,68.67,13.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,3740,486597.13,159879.75,122889.93,0,0,0,2075.8274 +559,681,1215,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2033682,7.7372985,0,0,0,-954.49005,0,3,-9,2021,6,1,46,35,1,1,0,8.110136,8.110136,0,0,0,0,0,0,0,0,1,1,0,6.5598989,0,60.12,54.8,-9,-9,10,3,4,0,0,6,8,4,1,318,959656.56,337406.72,505597.97,0,0,0,1217.5105 +560,682,1216,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5650177,8.8113394,0,0,0,-954.0545,0,2,2,2021,5,0,35,38,1,0,0,17.131977,17.131977,.05,.05,0,0,0,0,0,0,1,1,0,1.3076193,0,54.69,57.47,-9,-9,8.333333333333334,4,2,0,0,15,9,5,1,205,245618.86,280743.78,116554.37,79534.313,0,3111.2383,2430.1648 +561,683,1217,1218,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.9212728,8.1555462,39,0,-80.721176,0,2,1,2021,7,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.8177142,7.8502278,59.71,48.06,51.77,58.57,10,1,1,0,0,10,6,5,1,769,3549737,1450324.8,1167636.8,0,17467.668,0,4500.1914 +561,683,1218,1217,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.49261,8.4526768,39,0,-13.960982,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.0519142,8.5492516,51.77,58.57,59.71,48.06,8.333333333333334,1,1,0,0,4,6,5,1,769,3549737,1450324.8,1167636.8,0,17467.668,0,4500.1914 +562,684,1219,1220,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3422146,8.3199596,0,9,-6,43.814617,0,-9,-9,2021,11,1,45,45,1,1,0,10.906054,10.906054,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.91,58.02,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,427.5,290919,216453.06,0,0,0,0,2718.0303 +562,684,1220,1219,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,7.9246469,7.705821,0,14,6,-90.557098,0,2,2,2021,6,0,25,25,1,0,0,11.586836,11.586836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.91,58.02,10,1,1,0,0,10,10,4,1,427.5,290919,216453.06,0,0,0,0,2718.0303 +563,685,1221,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.0025735,6.6543279,0,0,-913.68182,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2287397,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,565,133878.53,203403.06,137761.05,0,0,0,2143.6289 +564,686,1222,1223,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-1,31.086468,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8232613,0,61.04,39.41,62.66,52.4,10,1,1,0,0,0,10,4,1,429,1095427.1,172444.75,595607.88,0,0,0,5261.8745 +564,686,1223,1222,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.7892294,9.0055351,61,1,119.50776,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7926311,9.0353947,62.66,52.4,61.04,39.41,10,1,1,0,0,0,10,4,1,429,1095427.1,172444.75,595607.88,0,0,0,5261.8745 +565,687,1224,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.9536743,6.0340114,0,0,-992.89941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8229876,43.03,14.16,-9,-9,8.333333333333334,1,1,0,1,0,1,2,1,529,-27026.273,53462.715,0,0,0,0,413.46066 +566,688,1225,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.7189803,6.6603866,0,0,0,-960.68872,0,2,2,2021,11,0,16,16,1,0,0,5.5462399,5.5462399,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,2,0,165,153669.23,0,0,0,0,127.80773,785.25385 +567,689,1226,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.205843,7.4711709,0,0,0,-1029.3435,-9,-9,-9,2021,5,0,38,0,1,0,0,13.282194,13.282194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,523,15648.828,-24648.869,0,0,0,0,1304.1646 +568,690,1227,1228,1229,-9,1,0,56,0,0,0,1,1,-9,0,3,7.2174392,7.0553079,0,8,4,4.4731803,0,2,2,2021,11,1,8,8,1,1,0,17.5576,17.5576,.05,.05,0,0,0,0,0,7,1,1,0,2.7101068,0,50.65,53.71,33.72,32.32,8.333333333333334,1,1,0,0,9,7,5,1,382,1130307.5,688062.25,503818.94,28023.955,0,0,9194.7939 +568,690,1228,1227,-9,-9,1,1,52,0,0,0,1,1,-9,0,1,9.4795885,9.7117014,0,22,-4,37.515163,0,3,1,2021,23,10,42,42,1,10,0,48.697792,48.697792,.05,.05,0,0,0,0,0,2,1,1,0,2.2146602,0,33.72,32.32,50.65,53.71,3.333333333333333,1,1,0,0,10,7,5,1,382,1130307.5,688062.25,503818.94,28023.955,0,0,9194.7939 +568,691,1229,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.7538204,5.6535807,0,0,-934.20441,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6093068,5.8268995,52.22,23.45,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,865,332322.38,53502.91,442622.72,0,0,0,1140.0757 +569,692,1230,-9,1231,1233,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.81683,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1231,1233,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.2181244,8.4077072,0,6,-2,116.99123,0,-9,-9,2021,8,0,22,23,1,0,0,17.411455,17.411455,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.19,55.19,8.333333333333334,1,1,0,0,7,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1232,-9,1231,1233,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.3964,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1233,1231,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.3811636,8.467474,0,6,2,31.646383,0,-9,-9,2021,15,4,40,38,1,4,0,11.69617,11.69617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.19,55.19,51.83,57.2,8.333333333333334,1,1,0,0,7,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +570,693,1234,1235,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3801007,6.1892405,45,-6,4.6269188,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.046235,6.2923312,57.16,56.15,62.18,36.18,8.333333333333334,1,1,0,0,12,6,2,1,2204,407013.88,207017.22,179395.59,0,0,0,1083.5652 +570,693,1235,1234,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.4517026,5.1352649,45,6,60.285519,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1578956,5.6619124,62.18,36.18,57.16,56.15,8.333333333333334,1,1,0,0,12,6,2,1,2204,407013.88,207017.22,179395.59,0,0,0,1083.5652 +571,694,1236,1237,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0810714,7.10747,45,14,-56.148529,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.798424,6.9892578,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,854,762701.81,148080.5,411768.19,0,1803.4252,0,2630.1006 +571,694,1237,1236,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,11,-14,45.769485,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.3253636,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,10,7,2,1,854,762701.81,148080.5,411768.19,0,1803.4252,0,2630.1006 +572,695,1238,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,6.9797077,7.0588589,0,0,-1033.1407,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9606552,59.43,58.05,-9,-9,10,1,1,0,0,0,12,2,1,925,428972.09,301194.44,124004.53,0,0,0,799.2226 +573,696,1239,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.3088694,8.0973511,0,0,-1125.2162,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0494103,8.1690865,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1300,639346.75,332289.59,271656.31,0,0,0,2777.1802 +574,697,1240,1241,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8995447,7.9352221,7,0,-26.410929,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8607988,8.2550831,49.29,54.59,63.83,19.68,8.333333333333334,1,1,0,0,0,2,3,1,218.5,1128381.3,752038.44,268471.44,0,0,0,3646.0642 +574,697,1241,1240,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,5.6084204,5.4590845,7,0,93.456757,0,2,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,114.25893,0,0,1,1,0,4.4388289,5.3197255,63.83,19.68,49.29,54.59,6.666666666666667,1,1,0,0,4,2,3,1,218.5,1128381.3,752038.44,268471.44,0,0,0,3646.0642 +575,698,1242,1244,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.5042281,7.2950702,0,8,-6,94.345154,0,2,2,2021,7,0,32,27,1,0,0,8.2266293,8.2266293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.05,54.52,8.333333333333334,4,2,0,0,8,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,698,1243,-9,1242,1244,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-890.03369,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,698,1244,1242,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.5026741,9.1874294,0,8,6,72.184883,0,-9,-9,2021,7,0,42,45,1,0,0,39.560963,39.560963,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,699,1245,-9,1242,1244,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.64032,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,5,1,1,1178,270014.81,0,0,0,0,0,582.54156 +576,700,1246,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1084.2587,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,22.34,-9,-9,6.666666666666667,1,1,1,0,3,12,1,0,386,208159.25,93018.133,0,0,0,0,3428.9514 +577,701,1247,1248,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9269753,7.7462707,6,-2,-99.725212,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4362464,7.5103202,43.11,47.62,53,46,8.333333333333334,1,1,0,0,0,11,4,1,1168,825759.25,744260.25,83881.086,0,0,0,4272.6138 +577,701,1248,1247,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9331212,7.7098598,6,2,-58.834763,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9672127,7.3352122,53,46,43.11,47.62,8,1,1,0,0,0,11,4,1,1168,825759.25,744260.25,83881.086,0,0,0,4272.6138 +578,702,1249,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5824599,8.4024534,5.8587418,29,0,-112.86363,0,3,3,2021,20,8,37,37,1,8,0,9.0289564,9.0289564,.05,.05,0,0,0,0,0,0,0,0,0,0,6.0730243,38.51,59.43,48,49,3.333333333333333,1,1,0,0,13,9,3,1,193,643761,478118.28,214029.67,0,0,0,807.46082 +579,703,1250,1251,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.4914756,7.5100212,6,-1,106.12121,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.6924477,7.6237354,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,4,4,1,295,1324799,900187.5,198647.22,0,0,0,3315.7378 +579,703,1251,1250,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.030674,8.0459738,6,1,40.329201,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,6.6634164,8.1155853,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,4,4,1,295,1324799,900187.5,198647.22,0,0,0,3315.7378 +580,704,1252,1253,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.3569479,7.4969239,44,6,-4.2148628,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6550913,7.8081489,57.16,56.15,59.45,39.29,10,1,1,0,0,0,7,3,1,1105,767259.31,544206.56,347470.09,0,0,0,1770.5784 +580,704,1253,1252,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,44,-6,66.47834,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,39.29,57.16,56.15,8.333333333333334,1,1,0,0,2,7,3,1,1105,767259.31,544206.56,347470.09,0,0,0,1770.5784 +581,705,1254,1257,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4291534,8.5757017,0,16,2,-64.124489,0,3,3,2021,12,0,31,31,1,0,0,11.763094,11.763094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,50.37,55.06,3.333333333333333,1,1,0,0,11,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1255,-9,1254,1257,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.57471,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1256,-9,1254,1257,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5671,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1257,1254,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1990185,9.4383564,0,2,-2,-12.806432,0,2,3,2021,5,0,45,43,1,0,0,30.893154,30.893154,.05,.05,0,0,0,0,0,0,1,1,0,1.5252918,0,50.37,55.06,45.18,54.77,8.333333333333334,1,1,0,0,11,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +582,706,1258,1259,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.8542652,7.9322586,0,30,4,18.69273,0,-9,-9,2021,7,0,38,38,1,0,0,7.1299424,7.1299424,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.32,46.98,57.63,56.14,8.333333333333334,1,1,0,0,8,8,4,0,845.5,98205.336,86010.609,0,0,800.31226,2436.0649,1457.5205 +582,706,1259,1258,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.5801888,7.6272173,0,10,-4,-65.589508,0,2,2,2021,8,0,42,40,1,0,0,5.9853396,5.9853396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,59.32,46.98,8.333333333333334,1,1,0,0,12,8,4,0,845.5,98205.336,86010.609,0,0,800.31226,2436.0649,1457.5205 +582,707,1260,-9,1259,1258,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-894.22076,-9,2,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,7,8,1,0,466,-6023.2422,0,0,0,0,-784.66376,0 +582,708,1261,-9,1259,1258,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-926.39124,-9,2,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1208,-32962.895,0,0,0,0,0,0 +583,709,1262,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.2079544,6.7600398,0,0,0,-980.8576,0,2,2,2021,32,12,55,55,1,12,0,2.2401409,2.2401409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.51,52.54,-9,-9,1.666666666666667,1,1,0,0,11,6,2,1,659,98027.57,-44919.57,106047.74,0,0,1509.0721,972.95258 +584,710,1263,1264,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.345006,8.8674803,0,1,-2,-19.397146,0,2,3,2021,11,0,75,42,1,0,0,8.7815189,8.7815189,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.79,29.29,44.36,54.04,6.666666666666667,1,1,0,0,10,9,5,0,238,413050.69,269160.63,595207.13,330865.97,14565.338,0,5818.8965 +584,710,1264,1263,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.1628084,8.8477678,0,1,2,46.430119,-9,-9,-9,2021,12,0,50,0,1,0,0,19.873909,19.873909,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.36,54.04,48.79,29.29,6.666666666666667,1,1,0,0,2,9,5,0,238,413050.69,269160.63,595207.13,330865.97,14565.338,0,5818.8965 +585,711,1265,1267,-9,-9,1,0,48,0,4,0,2,2,-9,0,3,0,6.0039277,6.0561781,8,5,-21.510963,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7282581,43.12,58.55,52,56,3.333333333333333,3,4,0,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1266,-9,1265,1267,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.84,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1267,1265,-9,-9,1,1,43,0,4,0,1,1,-9,0,4,8.5273361,8.7163935,0,7,-5,197.41808,0,-9,-9,2021,9,0,45,40,1,1,0,16.297211,16.297211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,43.12,58.55,8,3,4,0,0,1,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1268,-9,1265,1267,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1171.2684,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1269,-9,1265,1267,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-903.11688,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,712,1270,-9,1265,1267,1,1,23,0,4,0,2,2,-9,0,4,7.4869022,7.5663209,0,0,0,-929.94537,0,2,2,2021,10,0,35,0,1,1,1,6.9605169,6.9605169,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,1,104,87817.453,0,0,0,0,0,1026.88 +585,713,1271,-9,1265,1267,1,0,19,0,4,0,2,2,-9,0,4,0,0,0,0,0,-978.5401,1,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,1,1,140,137674.02,0,0,0,0,0,-516.35742 +586,714,1272,1273,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.3846664,7.6393862,55,0,-84.802055,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33620363,7.8438096,40.84,43.4,58.15,52.91,10,1,1,0,0,0,11,3,1,1282,826634.69,431295.94,303473.56,0,0,0,1959.8971 +586,714,1273,1272,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,56,0,102.23926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3252568,0,58.15,52.91,40.84,43.4,8.333333333333334,1,1,0,0,0,11,3,1,1282,826634.69,431295.94,303473.56,0,0,0,1959.8971 +587,715,1274,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.2009,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.9101002,12.680929,23.095449,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,0,1611,-2073.4707,0,0,0,0,0,2016.59 +588,716,1275,-9,1277,1276,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.0743,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +588,716,1276,1277,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,9.3425179,9.3629866,0,2,3,-48.288197,0,-9,-9,2021,9,0,84,77,1,0,0,15.950174,15.950174,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,49.98,44.47,8.333333333333334,1,1,0,0,7,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +588,716,1277,1276,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.412941,7.407145,0,2,-3,-21.862358,-9,-9,-9,2021,9,0,22,0,1,0,0,7.462369,7.462369,0,0,0,0,0,0,0,0,0,0,0,5.4334812,0,49.98,44.47,35.8,59.5,6.666666666666667,1,1,0,0,0,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +589,717,1278,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,8.9727287,9.1724253,0,0,-1016.6271,0,2,1,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,3.5641277,0,7,1,1,0,6.9078164,9.0441771,23.48,58.65,-9,-9,3.333333333333333,1,1,0,0,0,1,5,1,818,1791137.1,598919.81,216434.08,0,0,0,5086.3486 +590,718,1279,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2830844,7.1469092,0,0,-948.95966,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6752672,7.3871465,54.92,45.17,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,96,548727.75,376137.91,91904.5,0,0,0,1509.724 +591,719,1280,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1000.7758,0,1,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,30.31,-9,-9,5,1,1,0,0,0,9,1,0,170,206028.95,0,0,0,0,0,1862.9615 +592,720,1281,1284,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,9.0555506,8.7269621,0,10,2,96.182426,0,1,2,2021,11,0,20,30,1,0,0,45.404938,45.404938,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,48.63,57.33,53.46,8.333333333333334,1,1,0,0,6,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1282,-9,1281,1284,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0621,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1283,-9,1281,1284,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6271,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1284,1281,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.7136564,8.5222664,0,10,-2,-65.509781,0,3,3,2021,12,0,60,50,1,0,0,18.224133,18.224133,0,0,0,0,0,0,0,0,1,1,0,5.4381113,0,57.33,53.46,38.2,48.63,8.333333333333334,1,1,0,0,11,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1285,-9,1281,1284,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-867.89648,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +593,721,1286,-9,1288,1287,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-971.81744,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.98,55.14,-9,-9,8.333333333333334,2,3,0,0,0,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,721,1287,1288,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.8235989,9.4810791,0,29,4,43.246834,0,3,3,2021,11,0,74,39,1,0,0,20.926083,20.926083,.05,.05,0,0,0,0,0,0,1,1,0,5.4335842,0,49.12,41.13,51.64,55.4,6.666666666666667,2,3,0,0,14,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,721,1288,1287,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1353149,8.1384735,0,29,-4,19.964989,0,3,3,2021,6,0,37,25,1,0,0,8.2844591,8.2844591,.05,.05,0,0,0,0,0,2,1,1,0,2.3063202,0,51.64,55.4,49.12,41.13,10,2,3,0,0,14,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,722,1289,-9,1288,1287,1,0,19,0,0,1,1,0,0,0,4,0,0,0,0,0,-866.74573,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7589526,0,54.2,57.49,-9,-9,10,2,3,0,0,3,5,1,1,3762,0,0,0,0,0,0,182.89294 +594,723,1290,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,7.6087189,7.5141306,0,0,0,-1090.6703,0,2,2,2021,12,0,32,20,1,0,0,8.6614723,8.6614723,0,0,0,0,0,0,0,0,1,1,0,0,0,37.1,55.19,-9,-9,1.666666666666667,1,1,0,0,6,2,3,0,260,226764.81,0,153708.17,84983.102,0,0,292.20703 +595,724,1291,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4688163,7.7231102,0,0,0,-1004.6216,0,-9,-9,2021,2,0,42,40,1,0,0,7.0745082,7.0745082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.99,37.62,-9,-9,10,3,4,0,0,2,5,3,0,246,-63457.535,33933.609,0,0,0,0,1700.2128 +596,725,1292,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.830586,7.6465521,0,0,0,-1052.0513,0,2,3,2021,12,1,38,38,1,1,0,5.7433004,5.7433004,0,0,0,0,0,0,0,0,1,1,0,0,0,27.68,44.37,-9,-9,1.666666666666667,1,1,0,0,8,4,3,0,628,396337.13,372835.75,109389.64,0,0,0,707.30823 +597,726,1293,1294,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,8.0611973,7.8033113,10,1,-125.84985,0,-9,-9,2021,9,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7848713,7.8610735,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,3,9,4,1,237,948163.75,488454.5,376181.38,0,0,0,2807.1978 +597,726,1294,1293,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,7.0865798,7.6489129,31,-1,-56.547668,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0773416,7.2256031,62.39,56.71,57.16,56.15,10,1,1,0,0,8,9,4,1,237,948163.75,488454.5,376181.38,0,0,0,2807.1978 +597,727,1295,-9,1294,1293,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-925.93738,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5498519,0,38.11,59.76,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,275,10171.9,0,0,0,0,0,-376.96347 +598,728,1296,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6275635,7.8334808,0,0,-990.44141,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6615323,7.9924269,46.24,43.64,-9,-9,5,1,1,0,0,0,8,3,1,1520,755127.94,551183.19,209777.44,0,0,0,1599.1271 +599,729,1297,-9,1298,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.08972,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,789.5,154045.94,0,0,0,1441.999,0,2870.7297 +599,729,1298,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.351675,8.3753109,0,0,0,-851.26678,0,3,3,2021,25,12,8,16,1,12,0,54.273132,54.273132,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,55.18,-9,-9,3.333333333333333,1,1,0,0,3,8,4,0,789.5,154045.94,0,0,0,1441.999,0,2870.7297 +600,730,1299,1300,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.7034459,6.72228,38,0,91.824821,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,6.7665372,0,0,1,1,0,1.8451464,6.6368051,57.42,49.34,58.72,43.42,8.333333333333334,1,1,0,0,1,9,3,1,2134,1026440.5,71645.047,486992.44,0,0,0,2421.9727 +600,730,1300,1299,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.5622129,7.4947581,38,0,169.76831,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.454854,7.4057326,58.72,43.42,57.42,49.34,8.333333333333334,1,1,0,0,4,9,3,1,2134,1026440.5,71645.047,486992.44,0,0,0,2421.9727 +601,731,1301,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,5.242043,5.555213,0,0,-930.07574,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.0650535,20.066856,66.419037,0,1,1,0,0,5.5929332,33.09,27.24,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2963,333594.78,-39134.516,139044.8,0,0,0,235.15469 +601,732,1302,-9,1301,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7342296,7.7576141,0,0,0,-1007.1373,0,2,2,2021,14,2,16,14,1,2,0,16.838413,16.838413,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.97,38.46,-9,-9,5,1,1,0,0,10,12,3,1,253,514088.38,344534.28,33183.855,0,3686.9629,0,1746.9647 +602,733,1303,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,0,0,-811.49194,0,3,3,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,5,13,1,0,1147,88797.227,110150.73,0,0,0,0,335.92407 +603,734,1304,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.5129795,8.6998663,0,0,0,-978.58734,0,1,-9,2021,7,2,48,40,1,2,0,13.221044,13.221044,.05,.05,0,0,0,0,0,7,1,1,0,6.9386954,0,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,181,373098.72,408883.22,0,0,40378.555,3174.3315,2656.1064 +604,735,1305,1306,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3526669,8.6605873,0,2,-3,-9.2378855,0,3,3,2021,9,0,41,41,1,0,0,15.790526,15.790526,.05,.05,0,0,0,0,0,0,0,0,0,6.9597015,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,4,5,1,400.5,676862.31,446831.5,149277.86,0,0,0,3555.1699 +604,735,1306,1305,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,8.2893648,8.3239126,0,2,3,-23.735727,0,-9,-9,2021,8,1,37,38,1,1,0,16.883247,16.883247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,400.5,676862.31,446831.5,149277.86,0,0,0,3555.1699 +605,736,1307,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6055222,8.5239811,0,0,0,-938.97656,0,3,3,2021,8,0,45,45,1,0,0,9.2525177,9.2525177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,687,256198.52,163567.3,57018.426,0,0,0,2326.6902 +606,737,1308,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2323856,8.4449034,4.6345024,0,0,-1054.1835,-9,3,-9,2021,9,0,41,0,1,0,0,8.2314873,8.2314873,0,0,0,0,0,0,0,0,0,0,0,4.8706794,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,120,-49637.629,0,0,0,0,0,1803.0095 +607,738,1309,1310,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.5431051,8.6073065,7.0701342,5,5,-70.008629,0,-9,-9,2021,6,0,50,50,1,0,0,9.3796263,9.3796263,.05,.05,0,0,0,0,0,0,0,0,0,7.2803898,0,62.39,56.71,55.09,55.87,10,1,1,0,0,5,12,5,1,780.5,777433,120923.39,390247,0,0,0,5956.8584 +607,738,1310,1309,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.915535,8.7302685,0,5,-5,-108.08276,0,-9,-9,2021,7,0,35,45,1,0,0,17.815205,17.815205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,62.39,56.71,8.333333333333334,1,1,0,0,8,12,5,1,780.5,777433,120923.39,390247,0,0,0,5956.8584 +608,739,1311,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,6.9129038,6.6934366,0,0,-967.2475,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.4926748,0,0,1,1,0,1.9506278,7.1391621,53.35,41.65,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,103,245760.94,291633.94,188990,0,0,0,1778.9464 +609,740,1312,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.716732,6.4516449,0,0,-1037.4268,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.5225186,51,47,-9,-9,7,3,4,0,0,0,8,2,0,754,177307.56,0,0,0,0,0,2086.4412 +609,741,1313,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,4,0,0,0,0,0,-955.47052,0,2,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,574,0,0,0,0,0,0,1678.0964 +610,742,1314,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,9.0877857,8.9809513,0,0,0,-1107.2521,0,2,2,2021,11,0,38,44,1,0,0,20.233477,20.233477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,863,20550.91,81439.078,454469.59,265617.31,3590.2883,7940.1694,2767.6277 +611,743,1315,1316,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,28,-5,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,48,51,48,7,1,1,0,0,0,6,1,0,1319.5,563654.75,250346.78,152386.8,0,0,0,632.32465 +611,743,1316,1315,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,4,5,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,51,48,48,48,7,1,1,0,1,0,6,1,0,1319.5,563654.75,250346.78,152386.8,0,0,0,632.32465 +612,744,1317,1318,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.2373819,8.1865892,0,19,-2,122.85955,0,3,3,2021,6,0,37,41,1,0,0,11.259467,11.259467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,10,2,3,0,0,10,8,5,1,1898,1230293,905543.25,219891.86,30733.625,1460.9072,0,2947.3142 +612,744,1318,1317,1321,-9,1,1,52,0,0,0,2,2,-9,0,5,8.5747766,8.3932247,0,2,2,-67.845909,0,3,-9,2021,6,0,36,36,1,0,0,11.81258,11.81258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.06,57.76,10,2,3,0,0,11,8,5,1,1898,1230293,905543.25,219891.86,30733.625,1460.9072,0,2947.3142 +612,745,1319,-9,1317,1318,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.3065,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,3,8,1,1,719,-107764.2,0,0,0,0,0,-137.97899 +612,746,1320,-9,1317,1318,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1002.9573,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,8,1,1,443,-63103.426,0,0,0,0,0,0 +612,747,1321,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1082.2997,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.33,64.7,-9,-9,10,2,3,0,0,0,8,1,1,419,429848.09,0,114548.11,0,0,0,0 +613,748,1322,1323,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.6989641,8.7815447,0,10,11,65.936302,0,2,2,2021,8,0,24,24,1,0,0,29.233128,29.233128,.05,.05,0,0,0,0,0,0,0,0,0,4.9285026,0,58.87,51.29,54.23,25.51,8.333333333333334,1,1,0,0,11,4,5,1,1288,2717083.5,2306137.5,323351.19,0,0,0,5098.6992 +613,748,1323,1322,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.8086281,8.8014402,0,10,-11,-9.1804037,0,2,2,2021,11,4,38,38,1,4,0,16.330173,16.330173,.05,.05,0,0,0,0,0,0,0,0,0,5.470943,0,54.23,25.51,58.87,51.29,6.666666666666667,1,1,0,0,11,4,5,1,1288,2717083.5,2306137.5,323351.19,0,0,0,5098.6992 +614,749,1324,1325,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0437479,8.4707832,7.0140862,35,8,-52.483097,0,-9,-9,2021,12,0,36,36,1,0,0,8.8545952,8.8545952,0,0,0,0,0,0,0,2,0,0,0,5.4935751,7.3196225,55.96,44.4,32.82,43.22,5,1,1,0,0,14,12,5,1,2037.5,1341430.5,873345.5,339247.03,0,0,0,3351.6101 +614,749,1325,1324,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9534593,8.2611389,0,35,-8,10.708977,0,3,3,2021,24,12,45,30,1,12,0,7.7839055,7.7839055,0,0,0,0,0,0,0,2,0,0,0,0,0,32.82,43.22,55.96,44.4,3.333333333333333,1,1,0,0,14,12,5,1,2037.5,1341430.5,873345.5,339247.03,0,0,0,3351.6101 +615,750,1326,-9,1328,1329,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1036.3418,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1327,-9,1328,1329,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.41608,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1328,1329,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-3,-5.8466024,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.65,36.7,41.86,38.64,8.333333333333334,2,3,0,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1329,1328,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,7.5821915,7.6724925,0,19,3,54.641289,0,3,1,2021,9,0,40,40,1,0,0,6.8345208,6.8345208,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.86,38.64,45.65,36.7,1.666666666666667,2,3,0,0,12,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,751,1330,-9,1328,1329,1,1,19,0,2,1,2,0,0,0,1,0,0,0,0,0,-1046.4218,-9,2,2,2021,27,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.51,49.2,-9,-9,3.333333333333333,2,3,0,0,0,8,1,0,304,31060.07,0,0,0,0,0,0 +616,752,1331,1332,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,49,-2,-17.821947,0,3,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,36.6,43.98,52.66,42.02,5,1,1,0,0,0,5,3,1,432.5,434665.84,0,395416.94,0,0,0,3603.7573 +616,752,1332,1331,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.220706,8.0117016,49,2,-155.0755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6397858,52.66,42.02,36.6,43.98,6.666666666666667,1,1,0,0,4,5,3,1,432.5,434665.84,0,395416.94,0,0,0,3603.7573 +617,753,1333,1334,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9258604,7.7383995,0,4,-17,-69.665222,0,-9,-9,2021,8,0,60,63,1,0,0,4.5218983,4.5218983,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.37,36.46,61.28,48.88,8.333333333333334,1,1,0,0,4,10,5,1,567.5,614651.25,461582.38,216156.69,64360.426,0,0,3094.1909 +617,753,1334,1333,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.6901388,8.9085798,0,4,17,-50.458164,0,3,3,2021,8,0,61,70,1,0,0,12.553619,12.553619,.05,.05,0,0,0,0,.0099897124,0,1,1,0,0,0,61.28,48.88,53.37,36.46,6.666666666666667,1,1,0,0,9,10,5,1,567.5,614651.25,461582.38,216156.69,64360.426,0,0,3094.1909 +617,754,1335,-9,1333,1334,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1047.6692,0,2,2,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.8,30.63,-9,-9,0,1,1,0,0,0,10,1,1,584,-184055.72,200398.66,0,0,-866.36725,0,668.36005 +618,755,1336,-9,1338,1337,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.45569,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +618,755,1337,1338,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,7.753026,7.583818,0,6,1,-9.3607121,0,-9,-9,2021,9,0,40,40,1,1,0,9.7273846,9.7273846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49.38,38.56,8,1,1,0,0,9,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +618,755,1338,1337,-9,-9,1,0,46,0,1,0,3,3,-9,0,5,7.654983,7.749053,0,21,-1,-24.312189,0,-9,-9,2021,11,0,29,27,1,0,0,7.928247,7.928247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.38,38.56,52,55,6.666666666666667,1,1,0,0,11,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +619,756,1339,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8737564,8.7385483,0,0,0,-1094.3496,0,1,2,2021,7,0,40,37,1,0,0,14.155306,14.155306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,1.666666666666667,2,3,0,0,12,7,5,1,782,1122171.9,823373.63,107370.88,21040.736,4627.9526,0,2122.4729 +620,757,1340,1341,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.4191866,7.4565773,35,4,-121.67958,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8953018,7.4855747,51.83,57.2,38.27,52.67,6.666666666666667,1,1,0,0,10,11,4,1,742.5,2220232,1421900.3,656367.44,-2321.5078,0,0,6396.7256 +620,757,1341,1340,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.6314974,8.6260195,0,35,-4,-22.353344,0,2,3,2021,19,7,20,25,1,7,0,34.993568,34.993568,0,0,0,0,0,0,0,0,0,0,0,0,0,38.27,52.67,51.83,57.2,8.333333333333334,1,1,0,0,15,11,4,1,742.5,2220232,1421900.3,656367.44,-2321.5078,0,0,6396.7256 +621,758,1342,1343,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.2200465,5.4459114,47,-5,7.4142537,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8272536,5.2395005,57.16,56.15,62.18,36.18,8.333333333333334,1,1,0,0,3,7,4,1,1825.5,2186350.5,1012149.3,250177.13,0,0,0,4469.5195 +621,758,1343,1342,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.5779457,8.6235962,47,5,51.954483,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5173948,8.9254589,62.18,36.18,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,1825.5,2186350.5,1012149.3,250177.13,0,0,0,4469.5195 +622,759,1344,1345,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.2198558,5.3999572,10,1,-148.16052,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3625233,5.4072413,45.02,41.4,49.97,38.26,8.333333333333334,1,1,0,0,0,2,2,1,686.5,675697,308346.31,324475.13,0,0,0,1416.0703 +622,759,1345,1344,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0742817,6.1087441,10,-1,13.408777,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4189403,6.1026359,49.97,38.26,45.02,41.4,5,1,1,0,0,0,2,2,1,686.5,675697,308346.31,324475.13,0,0,0,1416.0703 +623,760,1346,1348,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.1329765,8.5043173,0,7,3,167.9019,0,2,2,2021,10,1,62,67,1,1,0,7.7264581,7.7264581,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,49.44,54.26,3.333333333333333,1,1,0,1,9,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,760,1347,-9,1348,1346,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1048.9103,-9,2,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,0,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,760,1348,1346,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.9985957,6.9114237,0,7,-3,-8.3238001,0,3,3,2021,13,1,18,20,1,1,0,7.9508905,7.9508905,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,54.26,54.96,53.17,8.333333333333334,1,1,0,0,6,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,761,1349,-9,1348,1346,1,0,21,0,0,0,2,2,-9,0,4,7.4154372,7.7234306,0,0,0,-928.37854,0,3,3,2021,8,1,33,47,1,1,1,6.1107974,6.1107974,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,50.73,-9,-9,6.666666666666667,1,1,0,0,5,12,3,0,546,-189996.36,0,0,0,0,0,281.11499 +624,762,1350,-9,1352,1351,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.1073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1351,1352,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.4159145,8.2522411,0,5,7,6.2306147,0,-9,-9,2021,6,1,70,97,1,1,0,6.2793026,6.2793026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,23.63,38.01,6.666666666666667,1,1,0,0,1,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1352,1351,-9,-9,1,0,37,0,2,0,2,2,-9,1,1,0,0,0,5,-7,-41.498066,0,-9,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.63,38.01,59.43,58.05,1.666666666666667,1,1,1,0,1,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1353,-9,1352,1351,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.8555,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +625,763,1354,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.15076,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4.3106775,0,54,44,-9,-9,8,1,1,0,0,0,6,1,1,2001,135525.06,0,0,0,0,0,1211.3036 +626,764,1355,1356,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.8386049,8.8233528,0,20,-4,71.960724,0,2,3,2021,17,6,12,10,1,6,0,52.871593,52.871593,0,0,.05,0,0,0,0,0,1,1,0,0,0,30.77,64.34,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,764,1356,1355,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.2338762,9.4194489,0,20,4,-23.738588,0,1,1,2021,6,0,45,39,1,0,0,32.182755,32.182755,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.77,64.34,8.333333333333334,1,1,0,0,11,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,764,1357,-9,1355,1356,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-980.90271,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,765,1358,-9,1355,1356,1,1,19,0,1,0,2,2,-9,0,4,7.3604784,7.5921192,0,0,0,-929.52728,0,2,1,2021,6,0,45,45,1,0,1,4.741888,4.741888,.05,.05,0,0,0,0,0,0,1,1,0,5.7458138,0,47.83,55.12,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1097,49835.34,73871.539,0,0,6092.3818,0,291.98477 +627,766,1359,-9,1360,1361,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.55518,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1360,1361,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1232538,8.406354,0,8,-2,-2.8978503,0,-9,-9,2021,8,1,33,31,1,1,0,12.609684,12.609684,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,53.51,60.74,8.333333333333334,1,1,0,1,9,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1361,1360,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.3456187,6.9924202,0,8,2,-60.386139,0,-9,-9,2021,7,0,50,50,1,0,0,4.4342923,4.4342923,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.51,60.74,46.28,62.6,8.333333333333334,1,1,0,0,9,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1362,-9,1360,1361,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.14362,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +628,767,1363,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.92279,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,17.34,26.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,522,-106181.17,0,0,0,8020.3496,1094.7698,1998.787 +629,768,1364,-9,1366,1365,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.71045,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +629,768,1365,1366,-9,-9,1,1,53,1,1,0,2,2,-9,0,4,8.9881411,8.933773,0,6,17,44.020794,0,2,3,2021,9,0,50,49,1,0,0,14.079268,14.079268,.05,.05,0,0,0,0,0,0,1,1,0,4.9469581,0,54.04,47.89,30.18,60.46,6.666666666666667,1,1,0,0,6,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +629,768,1366,1365,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.8329763,9.1522417,0,6,-17,27.70941,0,2,1,2021,22,9,45,48,1,9,0,20.331997,20.331997,.05,.05,0,0,0,0,0,0,1,1,0,4.9773545,0,30.18,60.46,54.04,47.89,8.333333333333334,1,1,0,0,9,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +630,769,1367,1370,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,7.2467985,7.4868398,4.0440636,8,-8,101.56115,0,2,3,2021,26,11,23,22,1,11,0,7.5977006,7.5977006,0,0,0,0,0,0,0,0,1,1,0,4.4076757,0,17.34,67.89,51.24,58.84,5,1,1,0,0,4,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1368,-9,1367,1370,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.6399,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1369,-9,1367,1370,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1115.8303,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1370,1367,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,7.8602762,8.2022161,0,8,8,-.16684358,0,-9,-9,2021,9,0,41,41,1,0,0,6.839632,6.839632,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,17.34,67.89,6.666666666666667,1,1,0,0,11,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1371,-9,1367,1370,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-839.81946,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +631,770,1372,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.5465145,7.7803555,0,0,-969.90753,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1291299,7.7134986,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,367,937545.81,380647.25,0,0,0,0,976.58252 +632,771,1373,1374,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,44,3,0,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,46.92,34.11,40.03,36.06,5,2,3,0,1,0,6,1,1,393,19094.477,0,0,0,2081.6147,0,1576.679 +632,771,1374,1373,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,44,-3,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,7.8834691,0,0,1,1,0,0,0,40.03,36.06,46.92,34.11,5,2,3,0,1,0,6,1,1,393,19094.477,0,0,0,2081.6147,0,1576.679 +633,772,1375,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-932.57867,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0953836,0,52.6,47.34,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,1105,13866.436,0,99848.281,0,0,0,5659.5439 +634,773,1376,1377,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6516771,6.8871379,0,7,-8,-72.056778,0,-9,-9,2021,10,0,20,0,1,1,0,8.3624735,8.3624735,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,51,48,8,1,1,0,1,10,7,4,1,232.5,655008.81,-29599.033,496923.06,0,0,0,3072.0776 +634,773,1377,1376,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5747986,8.8358412,5.6859865,30,8,-4.1087356,0,3,3,2021,10,0,46,37,1,1,0,12.30929,12.30929,.05,.05,.05,0,0,0,0,0,1,1,0,2.3935819,6.3841763,51,48,51,54,7,1,1,0,1,10,7,4,1,232.5,655008.81,-29599.033,496923.06,0,0,0,3072.0776 +634,774,1378,-9,1376,1377,1,0,24,0,0,0,1,1,-9,0,4,6.5407338,6.4128866,0,0,0,-944.33966,0,2,2,2021,11,0,35,10,1,2,1,2.3306267,2.3306267,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,3,7,2,1,465,2536.8508,42082.09,0,0,0,0,751.47241 +634,775,1379,-9,1376,1377,1,1,22,0,0,0,2,2,-9,0,4,8.4320459,8.3795795,0,0,0,-901.72412,0,2,2,2021,10,0,40,39,1,1,1,15.382854,15.382854,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,6,7,5,1,354,-151468.75,0,0,0,0,0,1452.3213 +634,776,1380,-9,1376,1377,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.4224,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,2,7,1,1,574,88153.75,0,0,0,0,0,0 +635,777,1381,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.5377865,7.4169998,0,0,-914.09888,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5941443,62.03,39.01,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,623,1166040.3,351406.06,163168.81,0,0,0,1323.1904 +636,778,1382,1383,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,12,0,17.504358,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.16,26.89,38.14,58.28,0,1,1,0,0,1,12,3,0,1025,123223.05,0,66966.781,31809.969,5901.5977,0,1346.5488 +636,778,1383,1382,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.4623098,7.9210114,0,12,0,46.646187,0,3,3,2021,11,0,35,35,1,0,0,5.3041115,5.3041115,0,0,0,0,0,0,0,0,1,1,0,0,0,38.14,58.28,43.16,26.89,6.666666666666667,1,1,0,0,10,12,3,0,1025,123223.05,0,66966.781,31809.969,5901.5977,0,1346.5488 +637,779,1384,-9,1385,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.83801,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,890.5,383001.69,155015.94,236680.03,65880.203,2057.4651,0,1860.5413 +637,779,1385,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.0588317,7.4978194,6.8419857,0,0,-1076.6647,0,2,2,2021,10,3,25,20,1,3,0,4.6465392,4.6465392,0,0,0,0,0,0,0,0,1,0,1,6.9921746,0,47.28,59.36,-9,-9,6.666666666666667,1,1,0,0,10,10,2,1,890.5,383001.69,155015.94,236680.03,65880.203,2057.4651,0,1860.5413 +638,780,1386,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.2807279,7.3918018,5.0247011,0,0,-906.19409,0,-9,2,2021,12,0,21,21,1,0,0,11.169353,11.169353,.05,.05,0,0,0,0,0,2,1,1,0,5.4742031,0,43.5,44.85,-9,-9,5,1,1,0,0,10,12,2,0,302,378122.16,536570.44,0,0,0,0,1241.2231 +638,780,1387,-9,1386,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.677,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,302,378122.16,536570.44,0,0,0,0,1241.2231 +639,781,1388,1389,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,11,-3,-33.759819,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,56.95,59.01,44.42,8.333333333333334,1,1,0,0,0,11,3,1,595.5,991835.75,640561.63,280300.97,0,0,0,1144.1895 +639,781,1389,1388,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.5889244,7.3974161,0,11,3,-131.71768,0,2,2,2021,6,0,65,60,1,0,0,3.6954684,3.6954684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.01,44.42,49.41,56.95,8.333333333333334,1,1,0,0,12,11,3,1,595.5,991835.75,640561.63,280300.97,0,0,0,1144.1895 +639,782,1390,-9,1388,1389,1,1,35,0,0,0,2,2,-9,0,4,5.2940197,5.4527531,0,0,0,-935.45013,0,2,2,2021,6,0,60,70,1,0,1,.35540727,.35540727,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,789,-151305.06,0,0,0,0,0,-56.140217 +640,783,1391,1392,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.5821509,8.0636339,3.5878339,7,3,-6.4301128,0,-9,-9,2021,8,0,40,50,1,0,0,6.8004074,6.8004074,0,0,0,0,0,0,0,0,0,0,0,0,3.6036985,55.8,42.23,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,593.5,113666.33,30152.256,73158.664,0,7306.7861,0,1663.7085 +640,783,1392,1391,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5199938,7.5601311,0,7,-3,78.471275,0,3,3,2021,7,0,34,35,1,0,0,6.4967461,6.4967461,0,0,0,0,0,0,0,0,0,0,0,3.0315182,0,57.16,56.15,55.8,42.23,10,1,1,0,0,11,5,4,1,593.5,113666.33,30152.256,73158.664,0,7306.7861,0,1663.7085 +641,784,1393,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-881.98303,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.36,30.91,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,1049,-87266.141,0,0,0,-1976.401,0,1976.4652 +642,785,1394,1395,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.5243874,7.9177203,10,1,-16.02804,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7630582,8.1392651,55.93,52.62,49.97,38.85,10,1,1,0,0,1,12,4,1,883.5,2696675.5,775517,315744.81,0,0,0,3536.157 +642,785,1395,1394,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8671064,7.0735188,10,-1,155.26947,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3728185,49.97,38.85,55.93,52.62,8.333333333333334,1,1,0,0,2,12,4,1,883.5,2696675.5,775517,315744.81,0,0,0,3536.157 +643,786,1396,1397,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4289818,7.4200568,49,2,-78.283524,-9,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9808002,7.5069575,53,46,51,46,7,3,4,0,0,0,7,3,1,762.5,1226646.3,543379.13,422230.06,0,0,0,3032.6663 +643,786,1397,1396,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.3721018,7.5410542,9,-2,43.769215,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2948203,51,46,53,46,7,3,4,0,0,0,7,3,1,762.5,1226646.3,543379.13,422230.06,0,0,0,3032.6663 +644,787,1398,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.5098071,7.4971848,0,0,0,-995.62122,0,2,3,2021,5,0,27,34,1,0,0,8.8948317,8.8948317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,14,5,3,0,436,188404.13,86262.078,144682.81,0,2386.6418,631.94843,1296.7446 +645,788,1399,1400,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.6088343,7.7148232,7,-2,-36.038197,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0314569,7.9579377,52,48,43.9,57.01,7,4,1,0,0,0,7,3,1,512,916059.44,372458.53,343706.44,0,0,0,2002.9714 +645,788,1400,1399,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,2,-28.147411,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,43.9,57.01,52,48,6.666666666666667,1,1,0,0,0,7,3,1,512,916059.44,372458.53,343706.44,0,0,0,2002.9714 +646,789,1401,1402,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.5401773,8.8236408,0,9,3,22.072592,-9,-9,-9,2021,10,0,44,0,1,0,0,12.743396,12.743396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.18,55.31,40.01,37.94,8.333333333333334,1,1,0,0,9,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +646,789,1402,1401,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.7061987,9.0686493,0,9,-3,-41.923035,0,2,2,2021,15,4,40,40,1,4,0,14.387807,14.387807,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.01,37.94,47.18,55.31,6.666666666666667,1,1,0,0,9,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +646,789,1403,-9,1402,1401,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.4191,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +647,790,1404,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.0244522,7.9673414,0,0,0,-933.5058,0,2,2,2021,21,10,40,37,1,10,0,8.0399036,8.0399036,0,0,0,0,0,0,0,0,0,0,0,0,0,25.28,68.37,-9,-9,6.666666666666667,1,1,0,0,6,6,4,0,109,0,0,0,0,0,0,1347.576 +648,791,1405,1406,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2955327,7.7470403,12,7,47.468433,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.403718,44.81,57.83,48.65,51.93,8.333333333333334,1,1,0,0,4,13,3,1,762.5,830641.56,515893.28,103960,0,0,0,2157.8105 +648,791,1406,1405,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.0396724,6.8093047,12,-7,19.924515,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.2351904,6.8975592,48.65,51.93,44.81,57.83,8.333333333333334,1,1,0,0,6,13,3,1,762.5,830641.56,515893.28,103960,0,0,0,2157.8105 +649,792,1407,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0360727,7.9928651,0,0,0,-903.89728,0,2,2,2021,13,3,50,35,1,3,0,6.2263227,6.2263227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,1.666666666666667,1,1,0,0,7,12,3,0,975,24871.479,25741.92,0,0,0,0,2091.4998 +650,793,1408,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.3820934,8.5934696,0,0,0,-927.89386,0,2,2,2021,19,6,40,40,1,6,0,12.234681,12.234681,0,0,0,0,0,0,0,0,0,0,0,.51835251,0,40.95,63.66,-9,-9,6.666666666666667,3,4,0,0,9,9,4,1,85,-5503.5181,0,0,0,-175.0311,0,1871.1426 +651,794,1409,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.6650405,5.6156058,0,0,-1038.8021,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76504821,5.9263988,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1491,280586.13,213234.42,169369.3,0,0,0,39.857727 +652,795,1410,-9,1411,1413,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.35236,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1411,1413,-9,-9,1,0,38,1,2,0,2,2,-9,0,3,0,0,0,9,-4,-86.848831,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1758604,0,58.32,50.22,54.45,56.22,8.333333333333334,1,1,0,0,5,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1412,-9,1411,1413,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.918,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1413,1411,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.8049164,8.84165,0,10,4,-40.676163,0,2,2,2021,6,0,40,40,1,0,0,20.163279,20.163279,.05,.05,0,0,0,0,0,2,1,1,0,4.4293418,0,54.45,56.22,58.32,50.22,8.333333333333334,1,1,0,0,9,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +653,796,1414,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.3895893,7.2908883,0,0,0,-1130.4237,0,2,1,2021,9,0,30,28,1,0,0,8.0547466,8.0547466,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,5,1,1,0,0,12,2,3,1,1729,561842.25,410838.69,142615.67,0,0,0,1206.3669 +653,797,1415,-9,1414,-9,1,1,21,0,0,0,2,2,1,0,3,7.4364905,7.458457,0,0,0,-949.28491,-9,1,-9,2021,14,3,40,0,1,3,1,5.9511933,5.9511933,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,54.62,-9,-9,3.333333333333333,1,1,0,0,4,2,3,1,585,220844.14,-150403.81,0,0,0,0,314.71378 +654,798,1416,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.7870674,6.9432955,0,0,0,-1013.4766,0,3,3,2021,20,8,35,40,1,8,0,3.6654048,3.6654048,0,0,0,0,0,0,0,2,0,0,0,0,0,43.42,62.33,-9,-9,5,1,1,0,0,9,10,2,0,338,89587.961,0,0,0,-114.19176,0,247.81293 +655,799,1417,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.3795466,6.6855841,0,0,-1004.6871,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,40.78878,0,391.41962,0,1,1,0,7.0741634,0,24.93,19.95,-9,-9,0,4,2,0,1,0,10,2,0,1359,-84055,0,26329.848,0,0,0,1551.0493 +656,800,1418,1419,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,0,0,57,5,23.119204,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.31,40.07,39.39,37.66,5,2,3,0,0,0,8,2,1,704.5,476901.03,110208.91,361232.5,0,0,0,1959.293 +656,800,1419,1418,-9,-9,1,0,83,0,0,0,1,1,-9,0,2,0,6.5390487,6.1532326,57,-5,87.400391,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.659688,39.39,37.66,40.31,40.07,5,2,3,0,0,0,8,2,1,704.5,476901.03,110208.91,361232.5,0,0,0,1959.293 +657,801,1420,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6390615,5.2179136,0,0,-912.98578,0,3,3,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.5427284,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,309,130306.52,34156.863,0,0,0,0,817.75726 +658,802,1421,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-979.03333,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48,49,-9,-9,7,1,1,0,1,2,11,1,0,1397,30772.445,0,0,0,0,0,460.04669 +658,803,1422,-9,1421,-9,1,0,27,0,0,0,3,3,-9,0,5,7.8204885,7.5595331,0,0,0,-1121.4473,0,3,-9,2021,6,0,38,20,1,0,1,7.1871834,7.1871834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,11,3,0,1750,5580.1035,57651.398,0,0,0,0,536.95404 +659,804,1423,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1643047,8.3707809,0,0,0,-937.01556,0,3,3,2021,14,2,30,30,1,2,0,14.875051,14.875051,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.83,62.98,-9,-9,3.333333333333333,1,1,0,0,7,5,4,1,821,402891.38,390928.06,235399.33,115899.55,0,0,1374.8818 +660,805,1424,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.6950207,8.7488184,0,0,0,-1057.5754,0,1,-9,2021,8,0,50,50,1,0,0,12.2789,12.2789,.05,.05,0,0,0,0,0,0,1,1,0,7.7140307,0,60.15,35.65,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,415,612692.75,282870.16,0,0,0,0,2731.3782 +661,806,1425,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.3111,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,1,1,0,0,0,2,2,0,1082,-159679.53,0,0,0,0,0,1406.6976 +662,807,1426,1429,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,0,0,0,9,0,90.550354,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.7769107,0,36.86,59.86,57.16,56.15,8.333333333333334,1,1,0,0,4,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1427,-9,1426,1429,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.29944,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1428,-9,1426,1429,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.5977,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1429,1426,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7016172,8.9146414,0,9,0,48.026142,0,2,2,2021,9,0,50,52,1,0,0,15.081474,15.081474,.05,.05,0,0,0,0,0,0,1,1,0,2.0621216,0,57.16,56.15,36.86,59.86,8.333333333333334,1,1,0,0,13,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +663,808,1430,1431,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.4713993,8.7003918,0,3,0,-30.777351,0,-9,-9,2021,10,0,38,40,1,0,0,20.083771,20.083771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,10,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +663,808,1431,1430,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.737186,7.5502133,0,3,0,93.32859,0,2,2,2021,9,0,18,38,1,0,0,13.482904,13.482904,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +663,808,1432,-9,1431,1430,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.749,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +664,809,1433,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,5.4162135,5.5798607,0,0,-860.99164,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,1.1637163,0,29.234747,0,1,1,0,0,5.479845,43,19.91,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,318,51796.266,49484.086,-4387.335,0,0,0,2087.9375 +665,810,1434,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7727642,8.2193937,0,0,0,-969.55145,0,-9,-9,2021,5,0,35,40,1,0,0,10.694287,10.694287,.05,.05,0,0,0,0,0,0,1,1,0,1.1216158,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,236,459728.59,288572.72,0,0,0,0,1253.1637 +666,811,1435,1436,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3714719,7.1907911,12,10,-103.18713,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.1710262,7.3954096,61.19,42.11,58.42,27.52,10,1,1,0,0,3,13,2,1,634.5,498183.56,154118.53,224886.78,0,0,0,1932.6633 +666,811,1436,1435,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,12,-10,-53.806419,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.42,27.52,61.19,42.11,6.666666666666667,1,1,0,0,0,13,2,1,634.5,498183.56,154118.53,224886.78,0,0,0,1932.6633 +667,812,1437,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.0898046,6.7507038,0,0,-911.48474,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9370918,0,0,1,1,0,0,6.8563371,61.68,23.31,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,471,504925.25,172528.8,587247.81,0,0,0,1181.6835 +668,813,1438,1439,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-2,19.947939,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,12.105866,0,7,1,1,0,0,0,51,46,53,46,8,1,1,0,0,0,11,2,1,1649.5,618165.94,217384.84,303846.31,0,0,0,1482.8517 +668,813,1439,1438,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1787124,7.3511391,61,2,94.486282,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,9.3172522,0,14.5,1,1,0,0,7.4650455,53,46,51,46,8,1,1,0,0,0,11,2,1,1649.5,618165.94,217384.84,303846.31,0,0,0,1482.8517 +669,814,1440,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.6662998,7.6968341,0,0,0,-1018.2532,0,2,2,2021,7,0,37,38,1,0,0,7.3622499,7.3622499,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,367,-180031.63,0,70466.82,23367.865,0,0,756.30927 +670,815,1441,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-949.64294,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.36,34.37,-9,-9,3.333333333333333,1,1,0,0,3,1,2,0,201,-63309.637,0,0,0,0,0,1997.6678 +671,816,1442,1445,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.1585751,8.0945578,0,7,3,69.456528,0,-9,-9,2021,10,0,40,40,1,1,0,11.084898,11.084898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,48.7,48.19,7,1,1,0,0,1,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1443,-9,1445,1442,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3368,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1444,-9,1445,1442,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.9078,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1445,1442,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,0,0,0,7,-3,-35.001823,0,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.7,48.19,51,57,8.333333333333334,1,1,0,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +672,817,1446,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.7452707,6.5305276,0,0,-1051.6184,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0599381,6.7644634,52.02,33.36,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,383,400010.91,28380.924,191344.11,0,0,0,1376.1801 +673,818,1447,1448,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.5765858,8.6120195,0,12,-10,96.912659,0,2,2,2021,11,0,40,40,1,0,0,14.693201,14.693201,.05,.05,0,0,0,0,0,0,0,0,0,2.0116689,0,54.2,57.49,46.39,60.99,8.333333333333334,4,5,0,0,9,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +673,818,1448,1447,-9,-9,1,1,43,1,1,0,1,1,-9,0,4,9.348156,9.3325434,0,12,10,-4.546741,-9,2,2,2021,11,0,55,0,1,0,0,26.591053,26.591053,.05,.05,0,0,0,0,0,0,0,0,0,2.7272964,0,46.39,60.99,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +673,818,1449,-9,1447,1448,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1148.6219,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +674,819,1450,1451,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.0161648,8.0210066,0,12,-2,-105.21265,0,-9,-9,2021,15,4,35,55,1,4,0,9.7738905,9.7738905,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.08,37.12,56.92,49.39,8.333333333333334,1,1,0,0,15,11,5,1,1506,1008851.4,766771.5,242032.53,71196.055,0,0,3809.8555 +674,819,1451,1450,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.1455641,8.9147863,0,34,2,-45.927967,0,2,2,2021,6,0,59,38,1,0,0,18.664701,18.664701,.05,.05,0,0,0,0,0,0,0,0,0,5.4349308,0,56.92,49.39,55.08,37.12,8.333333333333334,1,1,0,0,15,11,5,1,1506,1008851.4,766771.5,242032.53,71196.055,0,0,3809.8555 +675,820,1452,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.9209709,8.1144161,0,0,0,-1002.4493,0,2,2,2021,2,0,35,35,1,0,0,10.175186,10.175186,.05,.05,0,0,0,0,0,0,0,0,0,2.2164361,0,63.56,42.4,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,286,-125018.64,58835.461,0,0,0,0,1097.3206 +676,821,1453,1454,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.785306,8.5448246,0,1,-1,-59.386799,-9,-9,-9,2021,10,0,30,0,1,1,0,25.444407,25.444407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,55.34,54.26,7,4,1,0,0,1,13,5,0,929,-168888.53,105871.92,176779.22,140710.98,7259.7217,0,3481.5085 +676,821,1454,1453,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.6629777,7.5686502,0,1,1,59.022118,0,2,2,2021,11,1,35,30,1,1,0,6.9130306,6.9130306,0,0,0,0,0,0,0,0,0,0,0,3.0398855,0,55.34,54.26,50,57,8.333333333333334,1,1,0,0,10,13,5,0,929,-168888.53,105871.92,176779.22,140710.98,7259.7217,0,3481.5085 +677,822,1455,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.1801805,6.3928485,0,0,-978.65479,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4178102,6.2780724,49.37,35.69,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,670,290462.31,199901.91,0,0,0,0,1490.2472 +678,823,1456,1457,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.5999928,8.6956673,50,5,56.943539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6736832,58.55,46.11,57.33,53.46,8.333333333333334,1,1,0,0,2,2,4,1,200,1182936.8,661010.63,313908.28,0,6088.7852,0,4327.6621 +678,823,1457,1456,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,7,-5,183.06526,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.55,46.11,8.333333333333334,1,1,0,0,5,2,4,1,200,1182936.8,661010.63,313908.28,0,6088.7852,0,4327.6621 +679,824,1458,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,0,0,0,0,0,-954.20245,0,3,-9,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,56,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,2158,-48715.77,0,0,0,0,0,917.72223 +680,825,1459,1461,-9,-9,1,1,46,1,3,0,3,3,-9,0,4,8.3155546,8.3131409,0,3,10,-55.63261,-9,-9,-9,2021,14,3,30,0,1,3,0,14.617776,14.617776,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,62.87,35.18,44.65,6.666666666666667,1,1,0,0,6,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1460,-9,1461,1459,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.8694,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1461,1459,-9,-9,1,0,36,1,3,0,1,1,-9,0,3,8.1586704,8.4039221,5.9161739,3,-10,55.201511,0,2,2,2021,20,7,37,15,1,7,0,11.700133,11.700133,0,0,0,0,0,0,0,0,1,1,0,5.4840298,0,35.18,44.65,42.36,62.87,5,1,1,0,1,6,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1462,-9,1461,1459,1,0,15,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1051.7296,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1463,-9,1461,1459,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.9072,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +681,826,1464,1465,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,0,0,0,15,11,-2.8648369,0,2,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1465,1464,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.5656986,7.3786507,0,15,-11,-72.194176,0,-9,-9,2021,6,0,27,44,1,0,0,7.4170051,7.4170051,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,9,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1466,-9,1465,1464,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-932.2276,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.66,42.38,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1467,-9,1465,1464,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.33063,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1468,-9,1465,1464,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.4384,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +682,827,1469,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.8476954,6.939002,0,0,-1096.1663,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7115993,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,2164,161058.98,57443,141634.38,0,0,0,1164.3773 +683,828,1470,1471,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.540122,8.8816872,0,29,0,-71.528236,-9,3,2,2021,7,0,42,0,1,0,0,16.962494,16.962494,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.93,52.64,8.333333333333334,1,1,0,0,11,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +683,828,1471,1470,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.2509727,7.069304,0,29,0,10.456526,-9,2,2,2021,10,0,19,0,1,0,0,7.9655952,7.9655952,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.93,52.64,57.16,56.15,6.666666666666667,1,1,0,0,11,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +683,828,1472,-9,1471,1470,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1034.796,-9,2,1,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +684,829,1473,-9,1474,1475,1,1,22,0,2,0,1,1,-9,0,4,0,6.9402251,6.7228451,0,0,-925.50153,1,1,1,2021,10,2,0,4,2,2,1,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2399912,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,6016,-192310.48,0,0,0,0,0,1216.3877 +684,830,1474,1475,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4115582,8.0776215,0,2,-4,-33.48328,-9,-9,-9,2021,10,0,30,0,1,1,0,13.925672,13.925672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,4,6,0,0,1,9,4,1,738,719655.5,536773.44,315092.69,140072.14,3750.2959,0,4697.1973 +684,830,1475,1474,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.8094263,8.9112129,0,2,4,-27.610535,-9,-9,-9,2021,9,0,50,0,1,1,0,13.079893,13.079893,.05,.05,0,0,0,0,0,0,1,1,0,4.3835497,0,54,54,51,54,8,4,6,0,0,1,9,4,1,738,719655.5,536773.44,315092.69,140072.14,3750.2959,0,4697.1973 +685,831,1476,-9,1477,1478,1,1,11,0,4,1,3,0,-9,0,1,0,0,0,0,0,-1064.1565,-9,2,2,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1477,1478,-9,-9,1,0,40,0,4,0,2,2,-9,0,3,8.8077154,8.9406586,0,9,-1,-3.6821187,0,2,2,2021,10,0,42,47,1,0,0,14.246549,14.246549,.05,.05,0,0,0,0,0,0,1,1,0,3.4411592,0,57.33,53.46,50.28,51.35,10,1,1,0,0,9,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1478,1477,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.9185705,9.0500498,0,9,1,-75.959976,0,2,-9,2021,13,4,37,50,1,4,0,20.162352,20.162352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,57.33,53.46,8.333333333333334,1,1,0,0,11,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1479,-9,1477,1478,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.6405,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +686,832,1480,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.445631,8.8550119,0,0,0,-950.73175,0,-9,-9,2021,6,0,48,45,1,0,0,14.903605,14.903605,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,10,10,5,1,120,3845950.3,3379136.8,176854.16,0,0,0,1877.8855 +686,833,1481,-9,-9,1480,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1060.0935,-9,-9,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,1,3,10,1,1,972,192259.77,0,0,0,0,0,72.852379 +687,834,1482,1483,-9,-9,1,1,81,0,0,0,1,1,-9,0,5,0,9.4528265,9.9690495,61,-1,-83.84716,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4980712,9.948596,60.56,54.81,52.77,44.6,10,1,1,0,0,0,7,5,1,450,3058768.3,2749212,316862.56,0,0,0,10205.775 +687,834,1483,1482,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.5891662,5.4861422,61,1,-22.769382,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,1.0276934,0,0,1,1,0,3.9649465,5.5264378,52.77,44.6,60.56,54.81,8.333333333333334,1,1,0,0,0,7,5,1,450,3058768.3,2749212,316862.56,0,0,0,10205.775 +688,835,1484,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2214622,8.2796745,0,8,2,25.832785,0,2,2,2021,13,4,28,40,1,4,0,15.704035,15.704035,0,0,.05,0,0,0,0,0,0,0,0,3.7660255,0,43.38,50.16,43.43,54.3,8.333333333333334,1,1,0,0,10,4,5,1,1191,381161.31,206461.45,201271.38,75923.891,0,17011.758,1907.7501 +688,836,1485,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.0754738,8.9098063,0,8,-2,7.8951726,0,2,2,2021,11,2,47,45,1,2,0,21.392349,21.392349,.05,.05,0,0,0,0,0,0,0,0,0,6.8075027,0,43.43,54.3,43.38,50.16,6.666666666666667,1,1,0,0,10,4,5,1,793,-123429.91,-29565.121,0,0,0,0,2363.4597 +689,837,1486,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1120.134,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.17,30.9,-9,-9,5,1,1,0,0,0,12,1,0,463,166280.31,0,0,0,0,0,1472.7072 +690,838,1487,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0389247,5.5093732,0,0,-1011.9411,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,6.9685998,12.474874,62.768677,0,1,1,0,0,5.7104154,69.63,25.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,732,-102613.46,241624.31,0,0,9437.2646,0,1568.0944 +691,839,1488,-9,1489,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8698707,7.9998465,0,0,0,-932.47876,0,2,2,2021,7,0,38,37,1,0,1,8.4712315,8.4712315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,1,4,0,329,-83697.406,63843.527,0,0,0,0,1383.1351 +691,840,1489,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.8551507,7.8352408,0,0,0,-1049.5038,0,3,-9,2021,6,0,38,37,1,0,0,8.8790054,8.8790054,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,51.29,-9,-9,8.333333333333334,1,1,0,0,13,1,3,0,307,195707.5,0,100660.75,0,0,0,1922.5764 +691,841,1490,-9,1489,-9,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-981.63,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,91,0,0,0,0,0,0,0 +692,842,1491,1492,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,6.7768202,6.9375567,0,46,4,86.728905,0,-9,-9,2021,7,0,16,20,1,0,0,6.7980967,6.7980967,.05,.05,.05,1,0,0,0,0,1,1,0,.78109795,0,62.39,56.71,38.16,44.66,10,2,3,0,0,10,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +692,842,1492,1491,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,46,-4,-74.501686,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,62.39,56.71,6.666666666666667,2,3,0,0,0,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +692,842,1493,-9,1492,1491,1,0,16,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1108.2345,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.64,39.59,-9,-9,5,2,3,0,0,0,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +693,843,1494,-9,1496,1497,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-798.14441,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1495,-9,1496,1497,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1173.717,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1496,1497,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.1024032,6.8042288,0,8,1,-15.569538,0,3,3,2021,15,3,16,16,1,3,0,8.9893122,8.9893122,0,0,0,0,0,0,0,0,1,1,0,0,0,30.79,35.99,50,57,8.333333333333334,1,1,0,0,9,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1497,1496,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.7099552,8.5850925,0,8,-1,-156.59958,0,-9,-9,2021,10,0,44,40,1,1,0,18.86657,18.86657,0,0,0,0,0,0,0,0,1,1,0,4.5542574,0,50,57,30.79,35.99,7,1,1,0,0,1,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +694,844,1498,1499,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5001431,7.1723018,0,6,2,-80.186287,0,2,2,2021,12,0,32,34,1,0,0,8.2603235,8.2603235,0,0,0,0,0,0,0,2,0,0,0,0,0,53.98,50.87,57.16,56.15,6.666666666666667,1,1,0,0,4,4,4,1,923,424455.69,11156.636,326473.25,0,0,0,2618.4368 +694,844,1499,1498,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.3378105,8.3924389,0,6,-2,-103.2681,0,1,2,2021,8,0,42,45,1,0,0,10.57362,10.57362,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.98,50.87,5,1,1,0,0,9,4,4,1,923,424455.69,11156.636,326473.25,0,0,0,2618.4368 +695,845,1500,1501,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.7125387,7.822258,0,10,3,45.089314,0,-9,-9,2021,8,0,38,38,1,0,0,7.15414,7.15414,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,5,1,1,0,0,10,13,4,1,621,241399.23,68895.547,120450.7,59487.984,0,676.22797,2900.3777 +695,845,1501,1500,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.4557571,8.263422,0,10,-3,-56.986645,0,1,1,2021,8,0,41,41,1,0,0,11.068313,11.068313,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,621,241399.23,68895.547,120450.7,59487.984,0,676.22797,2900.3777 +696,846,1502,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1047.3481,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.1410041,0,0,1,1,0,0,0,46.5,38.4,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,152,369251.63,22769.664,323689.31,0,0,0,1676.318 +697,847,1503,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1044.6323,0,2,3,2021,19,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,5,3,4,1,0,6,8,1,0,529,-53261.402,0,0,0,4090.5371,0,1492.5724 +698,848,1504,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8486838,7.8517971,0,0,0,-982.40192,0,3,3,2021,8,0,32,30,1,0,0,12.687366,12.687366,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,914,265913.81,138351.77,21337.098,5803.9575,0,0,1292.7805 +699,849,1505,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4398232,8.2785931,0,0,0,-956.89142,0,3,2,2021,6,0,40,45,1,0,0,13.631794,13.631794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,-9,-9,5,1,1,0,0,6,2,4,0,4217,77251.172,44857.465,88525.719,16701.27,0,0,2405.0935 +700,850,1506,1507,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.9903336,7.0753512,38,1,-29.141808,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0366883,64.05,26.3,56.35,51.16,8.333333333333334,1,1,0,0,4,10,3,1,331.5,1490984,784527.06,356084.69,0,0,0,2442.2119 +700,850,1507,1506,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.3504262,7.5637512,0,9,-1,-5.4959278,0,-9,-9,2021,9,0,35,40,1,0,0,5.9003606,5.9003606,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,64.05,26.3,5,1,1,0,0,10,10,3,1,331.5,1490984,784527.06,356084.69,0,0,0,2442.2119 +701,851,1508,1509,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.4219875,8.4234886,0,44,-2,69.020462,-9,2,2,2021,9,0,38,0,1,0,0,14.900973,14.900973,0,0,0,0,0,0,0,2,1,1,0,0,0,52.8,49.47,57.33,53.46,6.666666666666667,3,4,0,0,9,9,5,0,605.5,3448825.5,2730017.5,632658.94,0,0,0,4869.5889 +701,851,1509,1508,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.8733964,8.4760094,7.5114641,44,2,-20.781509,0,3,3,2021,6,0,38,45,1,0,0,7.4132252,7.4132252,0,0,0,0,0,0,0,0,1,1,0,0,7.4297891,57.33,53.46,52.8,49.47,8.333333333333334,3,4,0,0,8,9,5,0,605.5,3448825.5,2730017.5,632658.94,0,0,0,4869.5889 +702,852,1510,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.8651,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,25.64,-9,-9,3.333333333333333,1,1,0,0,9,6,1,1,467,-13406.764,0,0,0,0,1760.7094,903.52069 +702,853,1511,-9,-9,1510,1,1,33,0,0,0,3,3,-9,0,2,6.6534953,6.7836232,0,0,0,-1095.5907,0,-9,3,2021,6,0,30,30,1,0,0,2.5058267,2.5058267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,460,-156856.08,81830.672,0,0,0,0,703.23395 +703,854,1512,-9,1513,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.69324,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1554,-11055.773,-33108.133,0,0,-248.79312,0,1595.646 +703,854,1513,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.4748292,7.6937356,5.7825499,0,0,-1009.8947,0,2,2,2021,13,1,23,21,1,1,0,8.9343872,8.9343872,.05,.05,0,0,0,0,0,0,1,1,0,6.1220059,0,34.8,52.21,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1554,-11055.773,-33108.133,0,0,-248.79312,0,1595.646 +704,855,1514,1515,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4780426,8.403017,0,23,0,-8.4908304,0,3,3,2021,7,0,42,37,1,0,0,12.975895,12.975895,.05,.05,0,0,0,0,0,7,0,0,0,2.4366941,0,40.18,55.92,46.08,57.2,8.333333333333334,1,1,0,0,12,5,5,1,766.5,799915.06,702549.88,130479.39,8850.8828,0,0,3172.71 +704,855,1515,1514,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.094142,8.1252966,0,23,0,-20.020435,0,3,3,2021,25,11,38,38,1,11,0,7.5807409,7.5807409,.05,.05,0,0,0,0,0,0,0,0,0,3.3923042,0,46.08,57.2,40.18,55.92,3.333333333333333,1,1,0,0,13,5,5,1,766.5,799915.06,702549.88,130479.39,8850.8828,0,0,3172.71 +705,856,1516,-9,1519,1518,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.91315,0,2,2,2021,12,0,0,40,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,499,16493.33,0,0,0,0,0,597.73273 +705,857,1517,-9,1519,1518,1,0,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1031.1995,0,2,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2936945,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,156,-127485.44,0,0,0,0,0,-1469.0667 +705,858,1518,1519,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.6643901,7.5357418,0,1,1,33.347118,-9,-9,-9,2021,24,9,25,0,1,9,0,8.4589949,8.4589949,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,27.15,43,45.43,3.333333333333333,1,1,0,0,5,7,3,1,390.5,-41747.43,333.08105,0,0,0,119.02013,1060.1396 +705,858,1519,1518,-9,-9,1,0,54,0,0,0,2,2,-9,1,3,0,0,0,1,-1,20.02075,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.23953621,120,1,1,0,0,0,43,45.43,44.4,27.15,8.333333333333334,1,1,0,0,3,7,3,1,390.5,-41747.43,333.08105,0,0,0,119.02013,1060.1396 +706,859,1520,1521,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,11,11,0,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,57.57,49.69,29,38.73,8.333333333333334,1,1,0,0,9,12,1,1,339,55730.359,0,109277.84,0,0,0,899.14197 +706,859,1521,1520,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,11,-11,0,0,3,3,2021,19,5,0,19,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8452301,0,29,38.73,57.57,49.69,3.333333333333333,1,1,0,0,12,12,1,1,339,55730.359,0,109277.84,0,0,0,899.14197 +707,860,1522,1523,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.4775734,9.2696333,0,3,4,2.3291898,0,-9,-9,2021,8,0,38,38,1,0,0,41.332405,41.332405,.05,.05,0,0,0,0,0,0,0,0,0,7.2750916,0,57.16,56.15,60.02,56.42,10,1,1,0,0,8,9,5,1,446,692545.13,414337.16,465356.38,240499.05,952.62042,0,5940.6602 +707,860,1523,1522,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,7.6338019,8.0549335,0,3,-4,-55.890144,0,2,2,2021,5,0,36,38,1,0,0,8.6234913,8.6234913,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,10,1,1,0,0,6,9,5,1,446,692545.13,414337.16,465356.38,240499.05,952.62042,0,5940.6602 +708,861,1524,1525,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,45,6,0,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,38.52,45.86,24.93,19.95,5,1,1,0,0,0,10,1,0,2013.5,-87896.102,126476.39,0,0,0,0,1577.0265 +708,861,1525,1524,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,45,-6,0,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,38.52,45.86,0,1,1,0,0,0,10,1,0,2013.5,-87896.102,126476.39,0,0,0,0,1577.0265 +709,862,1526,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.9430313,5.9624496,0,0,-1012.9492,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,5.7633524,9.223855,44.076595,0,1,1,0,3.3377192,6.226737,31.2,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1753,141537.95,28855.668,87998.375,0,0,0,2550.6125 +710,863,1527,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9142833,7.6214924,0,0,0,-970.76416,0,3,2,2021,11,0,37,42,1,0,0,7.6207423,7.6207423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.12,50.58,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,499,919.11804,122487.69,0,0,7265.1968,2058.6746,-112.8999 +711,864,1528,1529,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.3573103,8.1257286,0,10,0,42.049294,0,3,-9,2021,8,0,40,40,1,0,0,13.204713,13.204713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.51,47.91,47.01,58,6.666666666666667,1,1,0,0,11,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1529,1528,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,7.9623604,7.8725066,0,24,0,36.024246,0,2,3,2021,11,0,40,43,1,0,0,8.158638,8.158638,0,0,0,0,0,0,0,0,1,1,0,0,0,47.01,58,57.51,47.91,8.333333333333334,1,1,0,0,12,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1530,-9,1529,1528,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-862.11029,-9,3,2,2021,17,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,40.54,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1531,-9,1529,1528,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.90289,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +712,865,1532,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,0,0,0,0,0,-1051.5948,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,22.01,59.02,-9,-9,3.333333333333333,1,1,1,0,0,8,1,0,655,-123017.71,-40041.203,0,0,0,0,1437.7507 +713,866,1533,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0951757,8.0491953,0,0,0,-912.51752,0,-9,-9,2021,9,1,49,52,1,1,0,7.48386,7.48386,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,255,97692.797,0,70407.797,66268.836,8453.5566,0,1589.022 +714,867,1534,1535,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.8952556,5.8481517,9,-1,-104.90878,0,3,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.1922135,0,0,1,1,0,2.4497635,6.0073357,51.83,57.2,62.49,55.09,8.333333333333334,1,1,0,0,0,11,3,1,468.5,1058404.5,2998.249,322819.75,0,0,0,3154.5989 +714,867,1535,1534,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.9078379,7.9971333,9,1,21.891855,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5814807,7.665422,62.49,55.09,51.83,57.2,8.333333333333334,1,1,0,0,1,11,3,1,468.5,1058404.5,2998.249,322819.75,0,0,0,3154.5989 +715,868,1536,1537,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3447809,8.4445229,0,31,3,-74.83242,0,3,3,2021,9,0,60,60,1,0,0,9.4465923,9.4465923,.05,.05,0,0,0,0,0,0,0,0,0,8.2141609,0,56.07,55.46,51,54,8.333333333333334,2,3,0,0,8,5,4,1,1413,1181101.4,974604.88,217813.66,0,6589.5684,0,3943.4077 +715,868,1537,1536,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7068505,7.8295631,0,7,-3,67.908287,-9,-9,-9,2021,10,0,20,0,1,1,0,17.431656,17.431656,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,56.07,55.46,8,2,3,0,0,1,5,4,1,1413,1181101.4,974604.88,217813.66,0,6589.5684,0,3943.4077 +716,869,1538,1539,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,5.8681493,6.0705957,7,-1,22.486992,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.165874,41.26,61.02,59.04,48.6,10,1,1,0,0,0,4,3,1,556.5,460600.69,233076.17,133390.8,0,0,0,2833.5801 +716,869,1539,1538,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.8804288,8.099968,7,1,-22.092686,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4443259,7.5122247,59.04,48.6,41.26,61.02,8.333333333333334,1,1,0,0,0,4,3,1,556.5,460600.69,233076.17,133390.8,0,0,0,2833.5801 +717,870,1540,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.3347,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,57.07,-9,-9,10,1,1,1,0,0,4,1,0,349,425946.88,-17943.178,220026.48,61638.875,0,0,1747.7717 +718,871,1541,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3440609,7.9568119,0,0,0,-867.38129,-9,2,2,2021,16,4,42,0,1,4,0,11.955477,11.955477,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.27,60.24,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,232,-22108.453,38410.195,0,0,14159.922,0,1554.3143 +719,872,1542,-9,1543,1544,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-962.67853,-9,1,1,2021,18,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,56.66,-9,-9,5,1,1,0,0,0,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +719,872,1543,1544,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.7591314,7.8170328,0,23,-2,59.390442,0,1,1,2021,8,0,26,27,1,0,0,8.4775267,8.4775267,0,0,0,0,0,0,0,0,1,1,0,7.9818082,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,11,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +719,872,1544,1543,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7539845,8.6097383,0,23,2,-2.3936207,0,2,3,2021,7,0,37,37,1,0,0,15.896171,15.896171,.05,.05,0,0,0,0,0,2,1,1,0,4.2385879,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +720,873,1545,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.904273,7.9118495,0,0,0,-941.24109,-9,3,-9,2021,9,0,77,0,1,0,0,3.5253572,3.5253572,.05,.05,0,0,0,0,0,0,0,0,0,.61922443,0,43,60.68,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,1419,118477.01,115276.07,0,0,0,0,1564.2145 +720,874,1546,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.3605156,9.4750767,0,0,0,-940.02283,-9,-9,-9,2021,12,1,90,0,1,1,0,16.82836,16.82836,.05,.05,0,0,0,0,0,0,0,0,0,7.1764078,0,52.23,55.6,-9,-9,5,1,1,0,0,8,1,5,1,237,324709.44,9915.9629,431155.72,0,0,0,4516.5601 +721,875,1547,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6622176,7.7205524,0,0,-1042.2584,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6088724,7.598897,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,3833,487031.31,375178.75,190565.48,0,0,0,925.07251 +722,876,1548,1550,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8297586,8.8521214,0,12,1,-69.394211,0,-9,-9,2021,11,2,39,42,1,2,0,25.769054,25.769054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,39.61,56.27,8.333333333333334,1,1,0,0,14,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +722,876,1549,-9,1550,1548,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-873.96588,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +722,876,1550,1548,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.2433882,8.5870237,0,26,-1,-10.922887,0,1,2,2021,20,8,47,57,1,8,0,14.327078,14.327078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.61,56.27,56.33,51.02,8.333333333333334,1,1,0,0,14,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +723,877,1551,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.9439197,8.3534536,0,0,0,-834.3988,0,2,2,2021,6,0,10,90,1,0,0,36.61953,36.61953,.05,.05,0,0,0,0,0,14.5,0,0,0,7.5425053,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,409,-8171.2666,-44181.391,0,0,0,0,1634.798 +724,878,1552,-9,1553,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1113.1316,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,5,2,0,889,209211.92,56015.117,113564.45,50553.781,0,0,2474.7227 +724,878,1553,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.6489501,7.7593455,0,0,0,-1008.7445,0,-9,-9,2021,13,2,30,30,1,2,0,8.0247974,8.0247974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.44,56.39,-9,-9,5,1,1,0,1,8,5,2,0,889,209211.92,56015.117,113564.45,50553.781,0,0,2474.7227 +725,879,1554,-9,1555,-9,1,1,51,0,0,0,3,3,-9,0,4,7.7442193,7.2820792,0,0,0,-997.67487,0,3,3,2021,6,0,50,56,1,0,0,5.9348307,5.9348307,0,0,.05,0,0,0,0,2,1,1,0,0,0,53.06,46.84,-9,-9,1.666666666666667,1,1,0,1,12,8,3,0,527,644933.69,168722.84,400409.31,0,0,0,1598.481 +725,880,1555,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-877.00482,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3212322,0,52,45,-9,-9,8,1,1,0,0,0,8,1,0,240,-180021.5,0,0,0,1665.3701,0,732.97449 +726,881,1556,1557,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,7.5996881,7.8213959,39,-20,109.31152,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2665977,7.540916,57.06,57.76,56.94,49.53,8.333333333333334,1,1,0,0,1,7,3,1,2705,1560930.4,227064.41,507128.56,0,0,0,2318.4373 +726,881,1557,1556,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.3852644,6.10883,37,20,17.293619,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5501113,6.4970808,56.94,49.53,57.06,57.76,10,1,1,0,0,0,7,3,1,2705,1560930.4,227064.41,507128.56,0,0,0,2318.4373 +727,882,1558,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-982.45709,-9,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,-9,-9,1.666666666666667,2,3,0,1,3,8,1,0,579,0,0,0,0,0,0,401.39481 +728,883,1559,1560,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.9682865,5.6572676,50,1,-46.102142,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7824836,5.7003593,57.41,54.88,50.04,41.89,8.333333333333334,1,1,0,0,0,8,2,1,443.5,960362.19,562474.69,316062.69,0,0,0,2068.1006 +728,883,1560,1559,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.2032933,6.880064,50,-1,101.78453,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8361764,50.04,41.89,57.41,54.88,6.666666666666667,1,1,0,0,3,8,2,1,443.5,960362.19,562474.69,316062.69,0,0,0,2068.1006 +729,884,1561,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-977.34247,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.573411,0,56.19,41.56,-9,-9,10,2,3,0,0,0,8,1,1,334,6953.0488,0,0,0,0,-2224.9592,754.3952 +730,885,1562,-9,1563,1565,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.0216,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1563,1565,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,8.1326742,8.0326128,0,10,-8,-20.658091,0,2,2,2021,12,0,23,24,1,0,0,16.976791,16.976791,0,0,0,0,0,0,0,103,1,1,0,0,0,40.58,43.59,41.06,54.01,8.333333333333334,1,1,0,0,12,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1564,-9,1563,1565,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.3158,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1565,1563,-9,-9,1,1,46,0,3,0,2,2,-9,0,4,8.65131,8.5358658,0,10,8,-56.900074,0,2,2,2021,15,4,41,41,1,4,0,15.390117,15.390117,.05,.05,0,0,0,0,0,0,1,1,0,.35615909,0,41.06,54.01,40.58,43.59,3.333333333333333,1,1,0,0,12,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1566,-9,1563,1565,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0092,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +731,886,1567,-9,1569,1568,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.39471,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1568,1569,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,7.7479577,7.7569871,0,24,0,-30.309498,0,1,3,2021,11,0,40,40,1,0,0,6.7740979,6.7740979,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.48,54.62,53.14,45.74,3.333333333333333,1,1,0,0,12,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1569,1568,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.1348352,8.0140896,0,24,0,-60.724819,0,2,1,2021,14,2,28,28,1,2,0,11.244165,11.244165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.14,45.74,48.48,54.62,5,1,1,0,0,12,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1570,-9,1569,1568,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1086.5188,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +732,887,1571,1572,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,4,5,62.394085,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,1,0,8.5954647,0,0,1,1,0,0,0,46.98,22.01,44.04,47.08,8.333333333333334,1,1,0,0,0,4,2,0,1076,500828.78,68709.82,206512.88,0,7327.6704,0,1973.6985 +732,887,1572,1571,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,7.4969826,7.4951282,2.807075,30,-5,49.818466,0,2,2,2021,15,3,40,35,1,3,0,4.2673097,4.2673097,0,0,0,0,0,0,0,27,1,1,0,0,2.7238939,44.04,47.08,46.98,22.01,8.333333333333334,1,1,0,0,13,4,2,0,1076,500828.78,68709.82,206512.88,0,7327.6704,0,1973.6985 +732,888,1573,-9,1572,1571,1,1,25,0,0,0,2,2,0,0,3,0,0,0,0,0,-886.8299,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.23,62.65,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,668,-28989.713,0,0,0,0,0,650.05627 +733,889,1574,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,9.5535011,9.907794,0,0,0,-1137.146,-9,2,2,2021,12,0,16,0,1,0,1,100.63929,100.63929,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,13,5,5,1,111,195297,214391.72,196219.66,82729.82,0,0,16163.422 +733,890,1575,-9,1574,-9,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-906.93207,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,10,1,1,0,0,2,5,1,1,451,-11398.509,0,0,0,0,0,380.39908 +734,891,1576,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,8.3285589,7.9051661,0,0,0,-1074.5208,0,2,2,2021,32,10,46,46,1,10,0,8.6600027,8.6600027,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,8,5,4,1,287,391095.53,-48370.102,133326,52679.84,0,0,1986.0892 +735,892,1577,1578,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,48,-7,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6017108,0,59.14,52.5,58.16,48.06,8.333333333333334,1,1,0,0,0,12,1,1,492.5,111318.86,0,123005.33,0,0,0,1085.5159 +735,892,1578,1577,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,48,7,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,59.14,52.5,8.333333333333334,1,1,0,0,0,12,1,1,492.5,111318.86,0,123005.33,0,0,0,1085.5159 +736,893,1579,1581,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.737505,8.7964201,0,30,0,-68.386406,0,2,1,2021,3,0,27,29,1,0,0,21.768358,21.768358,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,52,54.51,8.333333333333334,1,1,0,0,12,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1580,-9,1579,1581,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1045.4397,0,1,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.500926,0,51.02,56.13,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1581,1579,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.7082109,6.496593,0,12,0,-188.49225,0,-9,-9,2021,7,0,8,8,1,0,0,10.521678,10.521678,.05,.05,0,0,0,0,0,2,1,1,0,4.4625545,0,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,13,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1582,-9,1579,1581,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-987.99377,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +737,894,1583,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.491806,8.4664545,0,1,-6,-92.322159,-9,2,-9,2021,21,9,45,0,1,9,0,9.9789343,9.9789343,0,0,0,0,0,0,0,0,0,0,0,2.6568153,0,40.61,35.42,44.28,43.16,3.333333333333333,1,1,0,0,11,9,5,1,16235,170644.38,95957.836,338608,74718.156,8900.8828,0,1227.2712 +737,895,1584,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.6054773,8.611702,0,1,6,-89.400909,-9,-9,-9,2021,17,6,40,0,1,6,0,18.685383,18.685383,.05,.05,0,0,0,0,0,0,0,0,0,2.8697393,0,44.28,43.16,40.61,35.42,8.333333333333334,1,1,0,1,12,9,5,1,373,333008.09,289963.22,210546.77,50607.156,0,0,2082.0208 +738,896,1585,1587,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.8651161,8.8011532,0,10,1,-76.394966,0,-9,-9,2021,7,1,40,38,1,1,0,20.355143,20.355143,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,54.74,57.22,8.333333333333334,1,1,0,0,11,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,896,1586,-9,1587,1585,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.61609,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,896,1587,1585,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.1685448,8.2984972,0,26,-1,-219.74249,0,2,2,2021,10,0,40,40,1,0,0,8.7453098,8.7453098,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,55.09,55.87,8.333333333333334,1,1,0,0,11,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,897,1588,-9,1587,1585,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1020.1744,-9,2,1,2021,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,968,33076.945,0,0,0,0,0,0 +739,898,1589,-9,1590,1591,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1590,1591,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.059309,8.2590666,0,20,2,-62.519836,0,2,2,2021,11,0,24,24,1,0,0,19.022173,19.022173,.05,.05,0,0,0,0,0,2,1,1,0,.62451231,0,48.18,61.8,52,55,8.333333333333334,1,1,0,0,9,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1591,1590,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2636099,9.1755648,0,7,-2,8.8369207,0,-9,-9,2021,9,0,37,42,1,1,0,31.057398,31.057398,.05,.05,0,0,0,0,0,0,1,1,0,3.4971218,0,52,55,48.18,61.8,8,1,1,0,0,1,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1592,-9,1590,1591,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6182,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +740,899,1593,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3694544,8.7236042,0,0,0,-1055.4105,0,2,1,2021,11,0,37,38,1,2,0,13.469966,13.469966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,9,8,4,1,1739,120561.09,85631.383,0,0,0,2385.5547,1111.3942 +741,900,1594,1595,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.2509418,7.6691604,6.8818264,23,-18,-64.509995,0,3,2,2021,13,2,18,18,1,2,0,6.9946094,6.9946094,0,0,0,0,0,0,0,0,1,1,0,2.3455453,7.0614023,52.23,31.67,41.34,56.62,8.333333333333334,1,1,0,0,5,11,3,1,271.5,355853.69,202336.34,148007.13,0,0,0,2162.5093 +741,900,1595,1594,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,6.5856423,7.2700238,6.7141047,23,18,-104.02883,0,2,3,2021,10,2,13,6,1,2,0,8.3284121,8.3284121,.05,.05,0,0,0,0,0,0,1,1,0,2.2706552,6.8317323,41.34,56.62,52.23,31.67,6.666666666666667,1,1,0,0,7,11,3,1,271.5,355853.69,202336.34,148007.13,0,0,0,2162.5093 +741,901,1596,-9,1594,1595,1,1,18,0,0,0,2,2,1,0,4,6.1176729,6.3027024,0,0,0,-1075.681,-9,2,2,2021,6,0,8,0,1,0,1,7.433744,7.433744,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,533,196003.17,0,0,0,0,0,-187.83795 +742,902,1597,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.6078711,8.554718,0,0,-1057.3094,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6533799,8.276638,59.07,43.05,-9,-9,10,1,1,0,0,9,8,4,1,440,1157220,396197.69,454720.84,0,0,0,3182.7861 +743,903,1598,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9199066,8.1222076,0,0,0,-1117.4675,0,3,3,2021,11,3,45,45,1,3,0,6.7878966,6.7878966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.82,46.15,-9,-9,8.333333333333334,3,4,0,1,11,9,4,1,1204,-12856.185,-8859.4502,0,0,0,0,1654.9106 +744,904,1599,-9,1600,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.47522,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,383.5,26501.422,0,0,0,0,0,1569.6774 +744,904,1600,-9,-9,-9,1,0,48,0,3,0,2,2,-9,1,3,6.3992805,6.3123264,0,0,0,-888.16217,-9,2,1,2021,14,4,8,0,1,4,0,9.8505926,9.8505926,0,0,0,0,0,0,0,7,1,1,0,4.0369749,0,43.12,58.55,-9,-9,5,1,1,0,0,6,10,2,1,383.5,26501.422,0,0,0,0,0,1569.6774 +745,905,1601,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.8968887,4.9946074,0,0,-900.76093,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.2168391,5.1964107,56.11,44.4,-9,-9,5,1,1,0,0,0,9,2,0,195,104672.92,0,166883.39,57951.68,0,1456.349,1140.8688 +746,906,1602,1603,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6831942,8.6313572,0,21,-1,-57.153633,0,2,2,2021,6,0,36,36,1,0,0,17.525597,17.525597,.05,.05,0,0,0,0,0,0,1,1,0,1.4359846,0,62.11,48.33,57.06,57.76,8.333333333333334,3,4,0,0,15,8,5,1,1204.5,2452806,1587331.8,782602.13,0,0,0,6142.4707 +746,906,1603,1602,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.4244041,8.6366034,0,19,1,150.65395,0,2,1,2021,0,0,36,36,1,0,0,13.605341,13.605341,0,0,0,0,0,0,0,0,1,1,0,7.871645,0,57.06,57.76,62.11,48.33,10,3,4,0,0,14,8,5,1,1204.5,2452806,1587331.8,782602.13,0,0,0,6142.4707 +746,907,1604,-9,1603,1602,1,1,22,0,0,0,1,1,1,0,4,6.7272258,7.105258,0,0,0,-893.05206,-9,2,1,2021,8,0,18,0,1,0,1,6.6939435,6.6939435,0,0,0,0,0,0,0,0,1,1,0,6.8417368,0,51.83,57.2,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,373,-53898.652,0,0,0,0,0,527.08447 +746,908,1605,-9,1603,1602,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.8582,1,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,712,36922.125,0,0,0,0,0,0 +747,909,1606,1607,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2702818,8.0128527,0,1,-3,-112.70577,0,1,2,2021,12,3,38,38,1,3,0,9.4506044,9.4506044,0,0,0,0,0,0,0,0,0,0,0,4.2397385,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,4,5,1,776.5,-56454.086,-75702.359,0,0,11643.529,1072.7644,3256.8604 +747,909,1607,1606,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.0687313,8.1614704,0,1,3,-82.2817,-9,-9,-9,2021,10,0,41,0,1,0,0,10.310038,10.310038,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,2,4,5,1,776.5,-56454.086,-75702.359,0,0,11643.529,1072.7644,3256.8604 +748,910,1608,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,7.1730113,7.2633824,4.3009439,0,0,-1017.0966,0,-9,-9,2021,5,0,24,30,1,0,0,9.4174805,9.4174805,0,0,0,1,0,0,0,0,1,1,0,6.9073539,4.2353954,56,53,-9,-9,10,1,1,0,0,9,7,3,1,1113,585762.19,141720.67,318830.41,0,0,0,1137.77 +749,911,1609,1610,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.2963891,7.3902135,0,27,-3,-80.127701,0,3,3,2021,6,0,22,20,1,0,0,7.2212334,7.2212334,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,45.04,46.74,8.333333333333334,1,1,0,0,13,13,5,1,606.5,376856.84,160475.41,194215.56,78625.531,34277.297,0,4840.626 +749,911,1610,1609,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.3644962,9.5426655,0,13,3,-45.917763,0,-9,-9,2021,13,1,52,49,1,1,0,23.666822,23.666822,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.04,46.74,60.12,54.8,3.333333333333333,1,1,0,0,11,13,5,1,606.5,376856.84,160475.41,194215.56,78625.531,34277.297,0,4840.626 +749,912,1611,-9,1609,1610,1,1,22,0,0,0,1,1,1,0,3,8.1808729,8.4730368,0,0,0,-777.6228,-9,2,2,2021,18,6,40,0,1,6,1,9.9839487,9.9839487,.05,.05,0,0,0,0,0,0,0,0,0,3.4323266,0,25.71,63.61,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,193,-11515.005,16631.592,265142.28,106238.73,12778.965,0,1323.1533 +749,913,1612,-9,1609,1610,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-968.59198,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9871564,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,2165,207363.3,0,0,0,0,0,667.99426 +750,914,1613,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.696281,6.6109328,0,0,-1038.8612,0,3,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,48.039345,0,0,1,1,0,0,6.474288,25.93,53.21,-9,-9,0,1,1,0,0,0,13,2,1,1726,347295.5,87371.844,116203.05,0,0,0,948.41364 +751,915,1614,1615,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.5461884,4.8735914,39,-1,28.041328,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5854347,5.0526152,57.33,53.46,52.78,33.89,0,1,1,0,0,0,8,5,1,1420,334657.56,124085.25,165048.56,0,0,0,4611.3071 +751,915,1615,1614,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,9.1423054,9.3475332,5.7812228,39,1,-57.192448,0,3,2,2021,20,8,30,30,1,8,0,44.155136,44.155136,.05,.05,0,0,0,0,0,0,1,1,0,6.2199516,6.1941919,52.78,33.89,57.33,53.46,8.333333333333334,1,1,0,0,11,8,5,1,1420,334657.56,124085.25,165048.56,0,0,0,4611.3071 +752,916,1616,-9,1617,-9,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1008.5202,-9,1,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +752,916,1617,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.1382093,8.1347151,0,0,0,-1070.7847,0,2,-9,2021,7,0,39,37,1,0,0,8.8739347,8.8739347,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.27,47.31,-9,-9,8.333333333333334,3,4,0,0,4,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +752,916,1618,-9,1617,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2598,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +753,917,1619,1620,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.4456806,7.609056,35,0,-1.1759504,0,3,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.9461625,7.1662579,58.65,41.84,57.16,56.15,8.333333333333334,1,1,0,0,0,6,4,1,386.5,314719.81,106103.52,130691.39,0,0,0,2479.938 +753,917,1620,1619,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1948385,8.1679583,0,8,0,14.27234,0,-9,-9,2021,7,0,28,20,1,0,0,14.879072,14.879072,0,0,0,0,0,0,1.3939747,0,0,0,0,4.6261444,0,57.16,56.15,58.65,41.84,8.333333333333334,1,1,0,0,6,6,4,1,386.5,314719.81,106103.52,130691.39,0,0,0,2479.938 +754,918,1621,-9,1624,1622,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.11591,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1622,1624,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.0318842,8.6239614,0,18,-4,41.643559,0,2,2,2021,12,1,35,39,1,1,0,17.069689,17.069689,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,61.01,53.18,8.333333333333334,1,1,0,0,9,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1623,-9,1624,1622,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.068,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1624,1622,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.54004,7.5911298,0,18,4,152.94429,0,2,2,2021,9,0,10,10,1,0,0,18.940411,18.940411,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,48.18,61.8,10,1,1,0,0,9,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +755,919,1625,1626,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.3017387,9.3341494,0,8,-1,166.49583,0,2,3,2021,10,0,80,70,1,1,0,14.236087,14.236087,.05,.05,0,0,0,0,0,0,1,1,0,6.8958845,0,50,49,53.68,45.47,7,1,1,0,0,1,12,5,1,251.5,824662.81,372678,501139.25,0,0,0,6907.9746 +755,919,1626,1625,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,8,1,78.119171,0,2,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.9776754,0,53.68,45.47,50,49,6.666666666666667,1,1,0,0,0,12,5,1,251.5,824662.81,372678,501139.25,0,0,0,6907.9746 +755,920,1627,-9,1626,1625,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-977.62109,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,12,1,1,2660,161179.13,0,0,0,0,0,678.95361 +756,921,1628,-9,1629,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8629,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +756,921,1629,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-897.45447,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +756,921,1630,-9,1629,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.31201,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +757,922,1631,1632,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.863102,7.937314,0,6,-11,-30.532276,0,-9,-9,2021,9,0,39,39,1,0,0,9.3681059,9.3681059,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.13,38.05,48.99,49.19,8.333333333333334,1,1,0,0,8,5,5,0,564,1581797,1282527.3,325664.88,46540.734,41967.594,0,3233.2468 +757,922,1632,1631,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.459444,8.5034389,0,6,11,-1.8573129,0,2,2,2021,7,0,48,60,1,0,0,12.408492,12.408492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.99,49.19,58.13,38.05,8.333333333333334,1,1,0,0,12,5,5,0,564,1581797,1282527.3,325664.88,46540.734,41967.594,0,3233.2468 +758,923,1633,1634,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,7.677422,8.2509403,7.2050357,54,1,-66.288124,0,3,3,2021,34,12,20,18,1,12,0,14.79314,14.79314,0,0,0,0,0,0,0,0,1,1,0,6.0048466,6.6664391,31.41,37.37,51.95,39.61,3.333333333333333,1,1,0,0,12,8,4,1,430,2466254.5,554616.56,425217.06,0,0,0,3202.9619 +758,923,1634,1633,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.5468092,6.6483297,54,-1,-37.560425,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3241525,6.8778925,51.95,39.61,31.41,37.37,8.333333333333334,1,1,0,0,5,8,4,1,430,2466254.5,554616.56,425217.06,0,0,0,3202.9619 +759,924,1635,1636,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.8698511,8.8224974,0,22,0,83.009453,0,-9,-9,2021,9,0,49,51,1,0,0,18.980394,18.980394,.05,.05,0,0,0,0,0,0,0,0,0,7.3794689,0,58.15,52.91,58.3,52.91,8.333333333333334,3,4,0,0,10,8,5,1,915.5,1193101.1,696138.69,471130.88,54703.598,0,0,6424.4209 +759,924,1636,1635,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6283598,8.6783733,0,22,0,30.714783,0,-9,-9,2021,9,1,41,38,1,1,0,16.069445,16.069445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,58.15,52.91,8.333333333333334,3,4,0,0,12,8,5,1,915.5,1193101.1,696138.69,471130.88,54703.598,0,0,6424.4209 +759,925,1637,-9,1636,1635,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-882.96497,-9,1,1,2021,23,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.76947355,0,21.05,64.58,-9,-9,1.666666666666667,3,4,0,0,0,8,2,1,105,69848.672,0,0,0,0,0,-582.65143 +760,926,1638,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7771997,7.6424627,0,0,0,-1005.0861,0,3,-9,2021,11,0,39,39,1,0,0,9.2846861,9.2846861,.05,.05,0,0,0,0,0,0,0,0,0,5.4170179,0,39.06,49.8,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,1961,-37736.789,-24171.494,0,0,0,0,1565.7571 +761,927,1639,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.5751066,8.4298983,0,0,0,-931.61353,0,3,3,2021,20,7,45,32,1,7,0,12.034738,12.034738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,15.51,67.33,-9,-9,1.666666666666667,1,1,0,1,5,4,4,1,543,53160.93,-73015.055,79148.602,13401.951,15793.604,0,1334.5151 +762,928,1640,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,5.2270341,5.0195808,0,0,-984.59906,0,-9,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8464279,5.1341438,39.51,33.96,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2178,-231395.95,45022.844,0,0,0,0,440.98434 +763,929,1641,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.3361483,8.5127268,0,0,0,-1002.3986,0,3,2,2021,23,9,57,54,1,9,0,8.4213581,8.4213581,.05,.05,0,0,0,0,0,14.5,1,1,0,4.3303242,0,33.59,50.85,-9,-9,1.666666666666667,4,2,0,0,11,6,4,1,291,591803.63,423247.94,265695.38,0,9258.1523,0,1815.4111 +764,930,1642,1643,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.7556763,8.7642736,0,32,-1,53.885513,0,3,1,2021,12,0,40,40,1,0,0,17.94751,17.94751,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,43.91,60.12,54.8,6.666666666666667,1,1,0,0,13,11,5,1,474.5,1706715.6,1320022.4,353177.25,42961.789,0,0,4660.5283 +764,930,1643,1642,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9022341,9.1943932,0,32,1,-46.417969,0,-9,2,2021,6,0,48,0,1,0,0,21.622786,21.622786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,43.44,43.91,8.333333333333334,1,1,0,0,12,11,5,1,474.5,1706715.6,1320022.4,353177.25,42961.789,0,0,4660.5283 +764,931,1644,-9,1642,1643,1,1,38,0,0,0,1,1,-9,0,3,8.5432634,8.3051519,0,0,0,-995.57721,-9,2,2,2021,14,2,39,0,1,2,1,19.471937,19.471937,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,3.333333333333333,1,1,0,0,3,11,5,1,1382,200754.14,277054.88,100622.02,55528.906,0,4460.0537,1698.0571 +765,932,1645,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.3666983,8.5346928,0,0,0,-932.82507,0,2,2,2021,11,0,20,17,1,0,0,30.894037,30.894037,.05,.05,.05,0,0,0,0,0,1,1,0,4.7993326,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,2474,102826.09,-46994.305,114642.42,9287.6865,0,0,2097.8708 +766,933,1646,1647,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,8,4,10.195903,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.57,17.38,37.96,60.22,3.333333333333333,1,1,0,1,1,5,3,1,2104.5,16737.791,23842.797,0,0,0,0,1050.7993 +766,933,1647,1646,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9121814,7.5651889,0,8,-4,177.53322,0,-9,-9,2021,9,0,12,41,1,0,0,21.331156,21.331156,0,0,0,0,0,0,0,27,0,0,0,0,0,37.96,60.22,57.57,17.38,8.333333333333334,2,3,0,1,10,5,3,1,2104.5,16737.791,23842.797,0,0,0,0,1050.7993 +767,934,1648,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.2044816,6.4438186,0,0,-1085.5582,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.550519,0,0,1,1,0,0,6.2359791,50.33,26.15,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,12229,290653.97,-52705.469,93743.57,0,0,0,1762.8171 +768,935,1649,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,5.7866316,6.0257654,0,0,-1042.6289,0,2,3,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.858767,19.37,30.88,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,508,-176264.22,-34985.965,0,0,0,0,1873.8124 +768,936,1650,-9,1649,-9,1,1,30,0,0,0,2,2,-9,0,3,5.8112173,5.9882574,0,0,0,-985.98718,0,2,-9,2021,20,8,9,9,1,8,1,4.3550205,4.3550205,0,0,0,0,0,0,0,0,1,1,0,0,0,36.08,60.5,-9,-9,5,1,1,0,1,13,8,2,1,966,93647.18,0,0,0,0,0,306.82721 +769,937,1651,1652,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,49,-3,-54.552711,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,10,2,1,1327,782175.06,38079.383,732189.63,0,0,0,1924.1718 +769,937,1652,1651,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.6969566,5.8679457,49,3,-21.504286,0,1,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5946584,5.8174691,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,10,2,1,1327,782175.06,38079.383,732189.63,0,0,0,1924.1718 +770,938,1653,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.5476112,7.7979474,6.3169727,0,0,-936.5224,0,2,2,2021,6,0,30,30,1,0,0,8.8310671,8.8310671,.05,.05,0,0,0,0,0,0,1,1,0,5.9156704,6.1125002,61.43,43.34,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,399,148314.89,-84180.617,0,0,0,0,1862.9514 +771,939,1654,1655,-9,-9,1,1,62,0,2,0,3,3,-9,1,3,0,0,0,6,1,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,50,47,7,2,3,0,0,0,4,1,1,461,614552.31,60107.117,261075.28,0,0,0,1304.7534 +771,939,1655,1654,-9,-9,1,0,61,0,2,0,3,3,-9,1,3,0,0,0,6,-1,0,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,47,52,48,7,2,3,0,0,0,4,1,1,461,614552.31,60107.117,261075.28,0,0,0,1304.7534 +771,940,1656,-9,1658,1659,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.09021,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1657,-9,1658,1659,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9272,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1658,1659,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,6,-7,163.6376,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,56,52,56,7,2,3,0,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1659,1658,1655,1654,1,1,39,0,2,0,2,2,-9,0,4,7.5846777,7.6747108,0,6,7,-8.8330774,0,3,3,2021,9,0,60,30,1,1,0,3.2908123,3.2908123,.05,.05,0,0,0,0,0,0,1,1,0,6.2008514,0,52,56,49,56,7,2,3,0,0,1,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,941,1660,1661,1655,1654,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,5,-3,-76.154785,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2706327,0,54.38,41.24,50,57,8.333333333333334,2,3,0,0,0,4,2,1,345.5,51372.219,20074.676,0,0,1995.2781,0,2076.0994 +771,941,1661,1660,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.6070189,7.5282826,0,5,3,-69.707718,0,-9,-9,2021,10,0,36,35,1,1,0,6.9684844,6.9684844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,54.38,41.24,7,2,3,0,0,1,4,2,1,345.5,51372.219,20074.676,0,0,1995.2781,0,2076.0994 +771,942,1662,-9,1655,1654,1,0,21,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1002.4084,0,3,3,2021,23,11,0,24,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,39.27,-9,-9,1.666666666666667,2,3,0,0,2,4,2,1,725,0,0,0,0,0,0,0 +772,943,1663,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.5726643,8.2660923,0,0,0,-927.41681,0,2,2,2021,3,0,37,42,1,0,0,17.901024,17.901024,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,4,5,1,1508,472815.75,65090.359,0,0,10349.191,0,979.43597 +773,944,1664,1668,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.9993124,9.2658577,0,16,5,61.432404,0,3,2,2021,14,3,38,35,1,3,0,22.694672,22.694672,0,0,.05,0,0,0,0,0,1,1,0,0,0,30.17,57.06,50.71,52.35,6.666666666666667,1,1,0,0,15,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1665,-9,1668,1664,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.3923,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1666,-9,1668,1664,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.8165,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1667,-9,1668,1664,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-905.90033,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1668,1664,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,7.7554111,7.6916718,0,16,-5,.061617319,0,2,2,2021,9,0,35,0,1,0,0,7.5122733,7.5122733,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,30.17,57.06,8.333333333333334,1,1,0,0,14,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +774,945,1669,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.2562952,8.4170103,0,0,0,-903.82886,0,-9,2,2021,13,1,50,-9,1,1,0,8.6388216,8.6388216,.05,.05,0,0,0,0,0,0,0,0,0,6.1932707,0,39.15,41.42,-9,-9,5,1,1,0,0,12,11,4,1,217,104490.11,-86096.07,123674.37,122321.98,0,0,2213.8853 +774,946,1670,-9,-9,-9,1,0,23,0,0,1,2,0,-9,0,3,0,6.1699686,5.5248384,0,0,-936.34027,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3226352,0,32.84,60.85,-9,-9,5,1,1,0,1,3,11,2,1,2256,0,0,0,0,0,0,226.96606 +775,947,1671,1672,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1685014,5.8802853,22,1,18.728529,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,15.895892,0,0,1,1,0,0,6.0571232,41.71,33.65,55.35,36.43,8.333333333333334,1,1,0,0,7,9,2,1,788.5,469967.72,118693.69,316526.13,0,0,0,2667.5054 +775,947,1672,1671,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.252007,6.241982,22,-1,71.726593,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,6.737062,11.697206,61.332642,0,1,1,0,4.4330196,6.3452864,55.35,36.43,41.71,33.65,6.666666666666667,1,1,0,0,5,9,2,1,788.5,469967.72,118693.69,316526.13,0,0,0,2667.5054 +776,948,1673,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.2863293,8.3888121,0,0,0,-978.0918,0,3,-9,2021,7,0,116,50,1,0,0,5.5188141,5.5188141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,15,5,4,0,488,241826.77,315343.78,0,0,10010.609,2035.7355,1763.6007 +776,949,1674,-9,1673,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1120.576,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.935101,0,55.53,51.55,-9,-9,10,1,1,1,0,0,5,2,0,1108,0,0,0,0,0,0,753.01306 +777,950,1675,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.5691943,7.3423314,0,0,-833.12787,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,6.8032942,7.8498745,65.697739,0,1,1,0,4.1876149,7.4141898,46.4,32.63,-9,-9,10,1,1,0,0,0,8,3,1,958,5250.02,-14625.981,0,0,0,0,1653.359 +778,951,1676,-9,-9,1677,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.7679,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,225,-15975.883,0,0,0,0,0,1402.3064 +778,951,1677,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,5.0698104,5.1615372,0,0,0,-940.30487,0,1,2,2021,9,0,40,25,1,1,0,.44797215,.44797215,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,3,4,0,0,11,8,2,0,225,-15975.883,0,0,0,0,0,1402.3064 +779,952,1678,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.3193378,7.3713379,0,0,-1044.9091,0,3,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.162622,7.265214,39,36.43,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,2076,163891.06,-158572.72,0,0,1210.6675,0,904.96399 +780,953,1679,-9,1681,1680,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.97156,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +780,953,1680,1681,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.3903332,8.055748,0,8,4,-27.688969,0,-9,-9,2021,15,3,37,40,1,3,0,12.734181,12.734181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.26,60.03,50.61,16.34,3.333333333333333,1,1,0,1,10,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +780,953,1681,1680,-9,-9,1,0,46,0,1,0,2,2,-9,0,1,3.8836541,3.7854536,0,15,-4,-36.810558,0,-9,-9,2021,16,5,40,35,1,5,0,.16473216,.16473216,0,0,0,0,0,0,0,2,1,1,0,0,0,50.61,16.34,37.26,60.03,3.333333333333333,1,1,0,0,10,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +781,954,1682,1683,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3667488,8.4289103,0,9,4,-134.64185,0,3,2,2021,9,0,46,50,1,1,0,9.5522327,9.5522327,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,53,38.75,63.48,7,1,1,0,0,1,9,5,0,334.5,216068.56,72912.383,229104.13,164423.03,0,0,2829.4619 +781,954,1683,1682,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.1427889,8.1860628,0,9,-4,-29.900618,0,2,3,2021,16,3,46,43,1,3,0,7.9667368,7.9667368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,38.75,63.48,54,53,6.666666666666667,1,1,0,0,8,9,5,0,334.5,216068.56,72912.383,229104.13,164423.03,0,0,2829.4619 +781,955,1684,-9,1683,1682,1,1,24,0,0,0,2,2,-9,0,4,7.1094131,7.071949,0,0,0,-980.72266,0,2,2,2021,10,0,40,40,1,2,1,4.0060525,4.0060525,0,0,0,0,0,0,0,0,0,0,0,6.5864244,0,49,58,-9,-9,7,1,1,0,0,1,9,2,0,100,110451.31,0,0,0,3299.0518,0,1774.1798 +782,956,1685,1686,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,6.7489138,6.8481207,23,7,-77.980621,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3544865,7.2462416,57.76,54.51,65.22,41.45,8.333333333333334,1,1,0,0,6,4,5,1,378,2417242,1178827.5,432248.31,0,0,0,6460.1221 +782,956,1686,1685,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,9.0363798,9.2566652,23,-7,95.028435,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904521,9.3726015,65.22,41.45,57.76,54.51,10,1,1,0,0,15,4,5,1,378,2417242,1178827.5,432248.31,0,0,0,6460.1221 +783,957,1687,1688,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7928095,9.0368595,0,23,0,61.761684,0,2,2,2021,7,0,70,70,1,0,0,8.0958652,8.0958652,0,0,.05,0,0,0,0,7,0,0,0,0,0,62.66,52.4,53.86,39.89,8.333333333333334,1,1,0,0,9,11,5,1,1114.5,584886.25,293698.88,249351.69,0,5857.7578,0,3925.0659 +783,957,1688,1687,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0184755,8.2931604,6.6069741,24,9,-65.500679,0,2,2,2021,10,1,27,32,1,1,0,12.844216,12.844216,0,0,0,0,0,0,0,14.5,0,0,0,5.4461169,6.9420667,53.86,39.89,62.66,52.4,8.333333333333334,1,1,0,0,9,11,5,1,1114.5,584886.25,293698.88,249351.69,0,5857.7578,0,3925.0659 +784,958,1689,1690,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.5415335,8.5164185,0,25,2,163.80576,0,-9,-9,2021,6,0,37,-9,1,0,0,14.921141,14.921141,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,2,3,0,0,10,8,4,1,804.5,1453428,1079059.8,401773.22,0,0,0,1867.7615 +784,958,1690,1689,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,2,-2,-116.8755,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,2,3,0,0,0,8,4,1,804.5,1453428,1079059.8,401773.22,0,0,0,1867.7615 +784,959,1691,-9,1690,1689,1,1,26,0,0,0,2,2,-9,0,4,7.3803606,7.5417099,0,0,0,-1035.738,0,3,3,2021,3,0,47,0,1,0,1,3.7772038,3.7772038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,3,1,704,97324.359,-75338.219,0,0,0,0,53.40741 +785,960,1692,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-936.32941,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,0,1,1,1,293,320369.03,0,273114.06,0,0,0,-304.65436 +785,961,1693,-9,1692,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.53314,0,3,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.42,28.78,-9,-9,0,1,1,0,1,0,1,1,1,266,94607.055,-107122.66,0,0,0,0,1300.3621 +786,962,1694,-9,1695,1697,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.93799,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1695,1697,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5575752,7.6512761,0,13,-2,32.301399,0,1,3,2021,11,0,28,28,1,0,0,9.3339701,9.3339701,.05,.05,0,0,0,0,0,2,0,0,0,7.6473818,0,45.43,53.5,43.92,47.65,8.333333333333334,1,1,0,0,8,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1696,-9,1695,1697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.06958,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1697,1695,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.5709791,8.7163706,0,13,2,77.437103,0,2,2,2021,11,0,43,52,1,0,0,15.953547,15.953547,.05,.05,0,0,0,0,0,0,0,0,0,6.8312864,0,43.92,47.65,45.43,53.5,5,1,1,0,0,9,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +787,963,1698,1701,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,7.5763974,7.4322276,0,21,0,-71.893517,0,2,2,2021,12,0,15,15,1,0,0,18.362368,18.362368,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,44.28,46.63,59.72,6.666666666666667,1,1,0,0,11,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1699,-9,1698,1701,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.9661,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1700,-9,1698,1701,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-898.91168,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1701,1698,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,7.5479846,7.6060214,0,9,0,-39.171307,0,-9,-9,2021,9,0,53,0,1,0,0,3.5871451,3.5871451,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.63,59.72,43.1,44.28,6.666666666666667,1,1,0,0,10,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,964,1702,-9,1698,1701,1,1,18,0,2,1,2,0,0,0,3,0,4.1604552,3.9734027,0,0,-1104.4279,-9,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4553809,0,57.33,53.46,-9,-9,10,1,1,0,0,1,6,2,1,412,-40578.422,0,0,0,0,0,-412.20462 +788,965,1703,-9,1705,1704,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.06274,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +788,965,1704,1705,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,7.9874287,8.1283865,0,8,3,178.97408,0,2,2,2021,15,3,1,48,1,3,0,340.44891,340.44891,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37,47.76,34.13,61.39,3.333333333333333,1,1,0,0,10,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +788,965,1705,1704,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.2496824,8.2377424,0,8,-3,63.499969,0,-9,-9,2021,16,4,80,46,1,4,0,6.258667,6.258667,.05,.05,0,0,0,0,0,0,1,1,0,1.1478546,0,34.13,61.39,37,47.76,3.333333333333333,1,1,0,0,9,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +789,966,1706,1707,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6599913,8.8555965,0,5,2,-159.72647,0,2,3,2021,16,4,38,38,1,4,0,20.114914,20.114914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.88,53.56,40.57,29.01,5,1,1,0,0,12,7,4,1,511.5,48612.793,119815.48,0,0,2090.1548,1396.1941,3231.8032 +789,966,1707,1706,-9,-9,1,0,35,0,0,0,1,1,-9,1,1,0,0,0,5,-2,-66.270454,1,-9,-9,2021,15,3,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,29.01,36.88,53.56,8.333333333333334,1,1,0,0,3,7,4,1,511.5,48612.793,119815.48,0,0,2090.1548,1396.1941,3231.8032 +790,967,1708,1709,-9,-9,1,0,80,0,0,0,1,1,-9,0,5,0,6.0639343,5.9323993,60,-1,-107.52316,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2761745,6.286262,57.36,49.4,52.53,19.43,8.333333333333334,1,1,0,0,0,5,2,1,1520,572960.88,214092.06,266584.13,0,0,0,1532.5098 +790,967,1709,1708,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,6.4729052,6.9569173,60,1,14.651111,0,2,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,2.4591033,17.333391,30.099972,0,1,1,0,3.6992228,6.5570083,52.53,19.43,57.36,49.4,3.333333333333333,1,1,0,0,0,5,2,1,1520,572960.88,214092.06,266584.13,0,0,0,1532.5098 +791,968,1710,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1810741,8.6345892,0,0,0,-929.69244,0,-9,-9,2021,3,0,30,25,1,0,0,21.863173,21.863173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,462,49870.996,135696.66,0,0,2355.1372,0,1904.7051 +792,969,1711,1712,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.0322618,8.0648308,0,8,1,-159.50641,0,2,2,2021,4,0,12,25,1,0,0,39.434738,39.434738,0,0,0,0,0,0,0,0,1,1,0,0,0,55.75,50.3,61.59,32.28,8.333333333333334,1,1,0,0,9,2,3,1,403,1764088.4,457515.56,342453.31,0,0,0,2579.4502 +792,969,1712,1711,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,8,-1,-144.39275,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8730893,0,61.59,32.28,55.75,50.3,8.333333333333334,1,1,0,0,0,2,3,1,403,1764088.4,457515.56,342453.31,0,0,0,2579.4502 +793,970,1713,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.086185,6.3426495,0,0,-1091.5953,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0870228,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,286,250361.28,94516.281,72626.125,0,0,0,1037.0325 +794,971,1714,-9,1715,1716,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6085,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1715,1716,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.6714172,7.7575459,0,18,0,-143.42415,0,-9,-9,2021,7,0,24,25,1,0,0,13.278505,13.278505,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,59.05,37.51,1.666666666666667,1,1,0,0,7,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1716,1715,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.930975,8.791728,0,18,0,-82.460625,0,-9,-9,2021,6,0,45,55,1,0,0,21.533813,21.533813,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.05,37.51,52,54.51,8.333333333333334,1,1,0,0,9,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1717,-9,1715,1716,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.99707,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +795,972,1718,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1117.9417,0,-9,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,3.0802243,0,1,0,1,0,0,27.81,26.62,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,318,0,0,0,0,0,0,629.29999 +796,973,1719,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.7029681,7.6300211,5.5285316,0,0,-972.73181,0,3,3,2021,7,0,35,35,1,0,0,6.7666168,6.7666168,0,0,0,0,0,0,0,0,1,1,0,5.6092839,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,11,11,3,0,1982,109899.84,0,98152.766,75378.102,0,0,1343.353 +797,974,1720,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,4.3462167,4.5178618,0,0,-1081.908,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,6.3145761,0,66.510071,0,1,1,0,0,4.1937943,51.19,45.21,-9,-9,5,1,1,0,0,0,10,2,0,334,585886.75,0,135134.69,0,0,0,847.12915 +798,975,1721,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.975194,5.0410342,0,0,-890.84241,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,8.5384722,0,0,1,1,0,0,4.7286015,39.23,20.18,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,2835,76600.602,116985.45,56976.578,0,0,0,1827.6069 +799,976,1722,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9260373,7.7642169,0,0,0,-1115.6366,0,2,2,2021,3,0,30,32,1,0,0,14.011455,14.011455,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,1037,149474.2,59892.379,0,0,0,556.59216,2144.2917 +799,977,1723,-9,1722,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8224001,7.7241139,0,0,0,-988.39886,0,2,-9,2021,24,8,44,39,1,8,1,7.0236297,7.0236297,0,0,0,0,0,0,0,0,0,0,0,3.9117026,0,39.82,58.52,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,1877,161662.47,0,0,0,0,0,995.70953 +799,978,1724,-9,1722,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-917.61371,-9,2,-9,2021,24,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.24,62.54,-9,-9,1.666666666666667,1,1,1,0,0,13,2,0,523,0,0,0,0,0,0,0 +800,979,1725,1726,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,52,0,-36.049408,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1609254,0,50,47,36.64,42.63,1.666666666666667,1,1,0,0,0,5,2,1,661.5,545469.38,43078.297,154775.78,0,0,0,1911.9856 +800,979,1726,1725,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.7085066,6.3202219,52,0,1.9034044,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.633805,6.585196,36.64,42.63,50,47,5,1,1,0,0,4,5,2,1,661.5,545469.38,43078.297,154775.78,0,0,0,1911.9856 +801,980,1727,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.2833681,6.2914987,0,0,-975.05377,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2056823,4.1592479,31.87,65.88,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,837,303085.34,18236.697,270586.56,0,0,0,1553.3711 +802,981,1728,1729,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3550663,8.1437979,0,8,-1,141.14388,0,-9,-9,2021,18,6,45,82,1,6,0,9.8984709,9.8984709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,37.96,55.3,6.666666666666667,1,1,0,0,3,12,4,1,754.5,1472961.3,1284076.8,352764.19,46816.313,40671.074,0,3050.8477 +802,981,1729,1728,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.7191648,7.2771544,0,8,1,-12.017918,0,3,3,2021,12,2,30,28,1,2,0,8.221549,8.221549,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.96,55.3,35.97,61.83,5,1,1,0,0,12,12,4,1,754.5,1472961.3,1284076.8,352764.19,46816.313,40671.074,0,3050.8477 +803,982,1730,1731,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.7977977,7.1388187,7,5,-31.145874,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3868275,6.8147149,63.09,47.92,44.59,59.08,6.666666666666667,1,1,0,0,0,4,2,1,969.5,291078.88,196977.41,115301.59,0,0,0,1685.802 +803,982,1731,1730,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.0393462,5.5047641,7,-5,50.341537,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.4296412,44.59,59.08,63.09,47.92,8.333333333333334,1,1,0,0,8,4,2,1,969.5,291078.88,196977.41,115301.59,0,0,0,1685.802 +804,983,1732,1733,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.6858759,8.6162062,0,5,2,194.06052,0,-9,-9,2021,23,11,100,63,1,11,0,6.8715668,6.8715668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.83,51.23,38.88,60.52,3.333333333333333,1,1,0,1,6,9,5,1,2686,401177.19,93382.82,376668.63,259557.47,0,-338.85541,2729.4419 +804,983,1733,1732,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.1906414,7.9726996,0,5,-2,28.589998,0,2,-9,2021,16,4,41,41,1,4,0,9.6552086,9.6552086,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,60.52,29.83,51.23,6.666666666666667,4,2,0,0,11,9,5,1,2686,401177.19,93382.82,376668.63,259557.47,0,-338.85541,2729.4419 +805,984,1734,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-958.41217,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.6718378,0,19.120224,2,1,1,0,1.0155662,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,339,73218.938,0,82604.93,0,0,-101.75978,1601.3737 +806,985,1735,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.8708839,6.8417249,0,0,0,-1005.7641,0,-9,-9,2021,20,7,27,25,1,7,0,3.7916801,3.7916801,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.92,59.72,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,1289.5,61310.172,-9020.1318,0,0,0,0,1546.1614 +806,985,1736,-9,1735,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-861.74207,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1289.5,61310.172,-9020.1318,0,0,0,0,1546.1614 +807,986,1737,-9,-9,-9,1,0,69,0,2,0,2,2,-9,0,4,0,5.9239907,5.9360433,0,0,-965.29712,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8605633,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,799,610746.75,-46463.523,506313.81,0,0,0,1696.6617 +807,987,1738,-9,1737,-9,1,1,43,0,2,0,2,2,-9,0,4,8.0302324,7.6848345,0,0,0,-1009.6464,0,2,2,2021,4,0,37,50,1,0,0,5.973546,5.973546,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,1,9,7,3,1,418,-620.45703,-118022.75,0,0,0,0,1688.0796 +807,987,1739,-9,-9,1738,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1053.7406,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3733642,0,46,58,-9,-9,7,1,1,0,0,0,7,3,1,418,-620.45703,-118022.75,0,0,0,0,1688.0796 +808,988,1740,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.650794,7.880424,7.0369425,0,0,-1010.9048,0,3,3,2021,6,0,21,21,1,0,0,10.604041,10.604041,0,0,0,0,0,0,0,0,1,1,0,2.9321132,6.7396154,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,336,71600.617,32097.637,130895.89,29175.459,0,0,2090.7014 +809,989,1741,-9,1742,1743,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.34851,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +809,989,1742,1743,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.3298225,7.3940272,0,1,2,88.45903,0,2,2,2021,10,1,30,20,1,1,0,6.5975761,6.5975761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.14,59.39,49.04,55.86,0,1,1,0,0,2,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +809,989,1743,1742,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.5606365,8.5586777,0,1,-2,-57.276817,-9,-9,-9,2021,16,4,30,0,1,4,0,23.22525,23.22525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,32.14,59.39,5,3,4,0,1,2,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +810,990,1744,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.11303,6.7791286,0,0,-951.29309,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1429782,47.24,34.59,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1788,9704.1582,64284.473,0,0,0,828.46228,2175.4541 +810,991,1745,1746,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3055859,8.6053591,0,4,-3,91.22361,-9,-9,-9,2021,12,0,40,0,1,2,0,14.024064,14.024064,0,0,0,0,0,0,0,0,1,1,0,6.0163674,0,46,50,49,50,7,4,1,0,0,1,6,5,1,1327,-12065.217,0,91925.922,22686.104,9088.0332,27.509674,3437.6489 +810,991,1746,1745,1744,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8000288,7.9212737,0,4,3,-103.03631,-9,2,-9,2021,11,0,40,0,1,1,0,7.9532337,7.9532337,0,0,0,0,0,0,0,0,1,1,0,4.3254108,0,49,50,46,50,7,1,1,0,0,1,6,5,1,1327,-12065.217,0,91925.922,22686.104,9088.0332,27.509674,3437.6489 +810,992,1747,-9,1745,1746,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1070.8201,-9,-9,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,6,0,0,0,6,1,1,354,810.49371,0,0,0,0,0,357.43268 +811,993,1748,1749,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,8.8438644,8.55406,48,-1,60.29174,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.458087,60.69,50.51,57.06,57.76,1.666666666666667,1,1,0,0,0,11,5,1,503.5,1633922.5,754955.31,380523.69,0,0,0,4907.5229 +811,993,1749,1748,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.8931084,7.8396549,48,1,29.038893,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1592979,57.06,57.76,60.69,50.51,10,1,1,0,0,0,11,5,1,503.5,1633922.5,754955.31,380523.69,0,0,0,4907.5229 +812,994,1750,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5310993,8.3026657,0,0,0,-925.48077,0,3,3,2021,12,0,35,39,1,0,0,13.579564,13.579564,0,0,0,0,0,0,0,0,0,0,0,2.9074459,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,712,121546.69,0,176908.09,30670.145,0,0,1537.4799 +813,995,1751,1752,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.6054978,8.3529129,7.8504605,7,4,59.845196,0,2,2,2021,7,0,45,45,1,0,0,4.8438616,4.8438616,.05,.05,0,0,0,0,0,2,0,0,0,3.4747417,7.7304482,57.16,56.15,52.79,35.58,8.333333333333334,1,1,0,0,8,1,4,1,833,673831.25,723533.75,0,0,0,0,2241.4958 +813,995,1752,1751,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,7,-4,26.088896,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.79,35.58,57.16,56.15,8.333333333333334,1,1,0,0,8,1,4,1,833,673831.25,723533.75,0,0,0,0,2241.4958 +813,996,1753,-9,1752,1751,1,0,27,0,0,0,2,2,-9,0,5,7.5583081,7.4969182,0,0,0,-981.17456,0,2,2,2021,4,0,34,32,1,0,1,6.7622461,6.7622461,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,10,1,1,0,0,1,1,3,1,745,94294.203,0,0,0,0,0,1525.4453 +814,997,1754,1755,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.2709303,8.225337,0,7,1,-98.812416,0,-9,-9,2021,11,0,37,37,1,0,0,10.961997,10.961997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,58.23,43.46,8.333333333333334,1,1,0,0,12,4,5,1,850,-60583.805,-6465.9902,157648.56,62651.711,0,10776.56,2947.2476 +814,997,1755,1754,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.058732,8.0087547,0,7,-1,1.2787805,0,2,2,2021,9,0,40,44,1,0,0,8.6832199,8.6832199,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.23,43.46,54.1,59.11,1.666666666666667,1,1,0,0,12,4,5,1,850,-60583.805,-6465.9902,157648.56,62651.711,0,10776.56,2947.2476 +815,998,1756,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,6.7135205,8.1546717,7.5877914,0,0,-1042.1898,0,2,2,2021,11,0,30,30,1,0,0,3.2647898,3.2647898,.05,.05,0,0,0,0,0,0,0,0,0,6.3374162,7.7198648,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,544,483063.91,280759.22,241531.13,12049.343,0,0,1739.0745 +816,999,1757,1758,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.39081,6.0810618,11,-1,87.489418,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1678219,57.63,56.14,63.8,49.17,8.333333333333334,1,1,0,0,5,11,2,1,584,292518.75,220739.34,137201.31,0,0,0,2011.5903 +816,999,1758,1757,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4968519,6.2512231,11,1,-2.6386878,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2527976,6.4949627,63.8,49.17,57.63,56.14,8.333333333333334,1,1,0,0,5,11,2,1,584,292518.75,220739.34,137201.31,0,0,0,2011.5903 +817,1000,1759,1760,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.7751517,8.0825443,0,9,0,-70.111176,0,1,2,2021,9,0,46,80,1,0,0,7.4248004,7.4248004,.05,.05,0,0,0,0,0,0,0,0,0,5.8535371,0,53.22,50.02,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,720,-35231.973,-21722.592,0,0,0,0,1425.7662 +817,1000,1760,1759,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.4237599,7.6191382,0,9,0,66.505417,0,2,2,2021,12,2,23,20,1,2,0,8.459033,8.459033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53.22,50.02,5,1,1,0,0,10,12,4,1,720,-35231.973,-21722.592,0,0,0,0,1425.7662 +818,1001,1761,-9,1765,1764,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1071.0698,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1762,-9,1765,1764,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-986.36877,-9,1,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,2,3,0,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1763,-9,1765,1764,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.93866,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1764,1765,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.5031786,9.2568235,0,22,-3,37.648117,0,2,2,2021,10,0,40,40,1,0,0,37.052647,37.052647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,50.92,33.35,1.666666666666667,2,3,0,0,10,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1765,1764,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,0,0,0,22,3,-7.5114183,0,3,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.92,33.35,52.48,54.33,8.333333333333334,2,3,0,0,1,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1002,1766,-9,1765,1764,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1009.9499,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,0,5,1,1,326,0,0,0,0,0,0,0 +819,1003,1767,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.168705,8.2316675,0,0,0,-1080.9716,0,3,3,2021,10,0,37,37,1,0,0,7.9783106,7.9783106,0,0,0,0,0,0,0,0,0,0,0,0,0,56.37,40.21,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,227,50732.004,0,98479.094,0,0,0,1252.2457 +820,1004,1768,1769,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.6462216,6.8556175,0,39,-2,-18.806583,0,3,2,2021,8,1,15,27,1,1,0,5.3237567,5.3237567,.05,.05,0,0,0,0,0,0,0,0,0,2.6577561,0,58.87,45.76,55.93,49.95,8.333333333333334,1,1,0,0,13,7,4,1,389,112599.11,52281.148,0,0,0,1942.0802,1749.1123 +820,1004,1769,1768,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.271245,8.5441704,0,10,2,58.265301,0,-9,-9,2021,11,0,35,38,1,0,0,10.90377,10.90377,.05,.05,0,0,0,0,0,0,0,0,0,2.5287013,0,55.93,49.95,58.87,45.76,8.333333333333334,1,1,0,0,13,7,4,1,389,112599.11,52281.148,0,0,0,1942.0802,1749.1123 +821,1005,1770,1771,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,7,6,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,54,54,7,4,5,0,0,0,8,1,0,498,166821.19,54281.48,0,0,0,0,1958.4192 +821,1005,1771,1770,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,0,0,0,7,-6,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54,54,50,47,8,4,5,0,0,0,8,1,0,498,166821.19,54281.48,0,0,0,0,1958.4192 +822,1006,1772,1773,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.3696756,8.3544474,0,5,7,-36.720287,0,-9,-9,2021,17,5,40,45,1,5,0,8.9626369,8.9626369,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,34.44,48.18,5,1,1,0,0,6,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +822,1006,1773,1772,-9,-9,1,0,24,0,1,0,1,1,0,0,2,0,0,0,5,-7,117.14327,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,41.47,58.08,5,1,1,0,0,5,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +822,1006,1774,-9,1773,1772,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.30634,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +823,1007,1775,1776,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.4632998,8.611104,0,30,-1,-4.7823029,0,3,3,2021,6,0,30,30,1,0,0,21.453789,21.453789,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,62.26,40.09,49.81,59.64,8.333333333333334,1,1,0,0,13,13,4,1,339,1165716.6,750650.88,159430.52,7108.6768,0,0,1598.6375 +823,1007,1776,1775,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,0,0,30,1,17.012369,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.81,59.64,62.26,40.09,8.333333333333334,1,1,0,0,8,13,4,1,339,1165716.6,750650.88,159430.52,7108.6768,0,0,1598.6375 +823,1008,1777,-9,1776,1775,1,1,26,0,0,0,1,1,1,0,5,8.6649666,8.7067232,0,0,0,-1120.6238,-9,1,1,2021,6,1,37,0,1,1,1,11.283938,11.283938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,1890,-25807.631,-57858.555,0,0,0,0,2309.8882 +823,1009,1778,-9,1776,1775,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-894.01221,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,838,0,0,0,0,0,0,-170.95874 +823,1010,1779,-9,1776,1775,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.88019,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1234,-22979.709,0,0,0,0,0,0 +824,1011,1780,1781,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.2385406,6.4482646,55,10,6.6125493,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.090723,47.87,35.22,60.29,52.11,8.333333333333334,1,1,0,0,0,6,2,1,437.5,1665373.1,238570.56,884148.25,0,2959.4497,0,1882.4086 +824,1011,1781,1780,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.1305776,6.8930645,30,-10,12.635003,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1339753,7.154161,60.29,52.11,47.87,35.22,8.333333333333334,1,1,0,0,0,6,2,1,437.5,1665373.1,238570.56,884148.25,0,2959.4497,0,1882.4086 +825,1012,1782,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.5174656,7.4599504,0,0,0,-903.92438,0,2,2,2021,13,1,42,33,1,1,0,7.6649761,7.6649761,0,0,0,0,0,0,0,0,0,0,0,0,0,43.47,59.65,-9,-9,8.333333333333334,1,1,0,0,12,1,3,1,370,-68366.688,176605.42,268012.66,110972.8,0,0,780.84332 +826,1013,1783,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.7691288,7.4764585,0,0,0,-999.10834,0,1,2,2021,21,8,35,25,1,8,0,6.1007385,6.1007385,0,0,0,0,0,0,0,27,1,1,0,1.8579634,0,27.69,62,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,570,7678.4297,0,0,0,0,0,1210.3557 +826,1013,1784,-9,1783,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.8626,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,570,7678.4297,0,0,0,0,0,1210.3557 +827,1014,1785,1786,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.6852517,7.4510489,0,25,-2,34.456776,0,2,2,2021,7,0,60,40,1,0,0,3.8237648,3.8237648,0,0,0,0,0,0,0,0,0,0,0,0,0,57,59.12,58.23,42.4,10,3,4,0,0,8,2,2,0,1045,22427.998,20645.736,106540.44,42466.902,2837.1997,0,1207.7363 +827,1014,1786,1785,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,6.6920724,6.2153745,0,27,2,-11.540639,0,3,2,2021,7,0,60,60,1,0,0,1.429325,1.429325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.23,42.4,57,59.12,3.333333333333333,3,4,0,1,11,2,2,0,1045,22427.998,20645.736,106540.44,42466.902,2837.1997,0,1207.7363 +827,1015,1787,-9,1785,1786,1,1,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-994.06787,-9,2,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,538,0,0,0,0,0,0,0 +828,1016,1788,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,7.9701104,7.8495431,0,0,0,-1012.8718,0,3,2,2021,13,1,40,38,1,1,0,8.507,8.507,.05,.05,0,0,0,0,0,0,0,0,0,6.2801471,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,787,-141979.17,10832.814,0,0,0,0,1029.1785 +829,1017,1789,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,2,7.4188581,7.1747632,0,0,0,-1005.041,0,1,1,2021,20,8,40,40,1,8,1,3.7464135,3.7464135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.78,39.8,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,435,138653.94,-90459.875,0,0,0,0,1440.6177 +830,1018,1790,1791,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.2972841,9.3491383,0,16,-12,-215.68251,0,1,2,2021,10,1,38,38,1,1,0,27.220545,27.220545,.05,.05,0,0,0,0,0,0,0,0,0,2.1782224,0,51.83,57.2,54.74,57.22,8.333333333333334,1,1,0,0,11,8,5,1,315,2308496,913726.38,1110827.8,0,0,0,6007.1494 +830,1018,1791,1790,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.6501141,8.7633924,5.6166849,17,12,14.183782,0,1,1,2021,3,0,35,34,1,0,0,17.627562,17.627562,.05,.05,0,0,0,0,0,0,0,0,0,5.5263362,0,54.74,57.22,51.83,57.2,8.333333333333334,1,1,0,0,14,8,5,1,315,2308496,913726.38,1110827.8,0,0,0,6007.1494 +831,1019,1792,1793,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,42,1,-48.072964,0,3,3,2021,10,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.0020418,0,49.93,49.66,51.24,58.84,8.333333333333334,1,1,0,0,9,6,3,1,1030,119948.47,0,120046.9,0,0,0,1936.6846 +831,1019,1793,1792,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.8805404,7.9612803,0,42,-1,-74.349083,0,3,3,2021,12,0,38,38,1,0,0,7.4945788,7.4945788,0,0,0,0,0,0,0,7,0,0,0,4.1204414,0,51.24,58.84,49.93,49.66,6.666666666666667,1,1,0,0,10,6,3,1,1030,119948.47,0,120046.9,0,0,0,1936.6846 +832,1020,1794,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,6.7062984,6.5593987,0,0,0,-1058.8594,0,2,2,2021,15,3,28,28,1,3,0,2.5715706,2.5715706,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,1,11,9,2,0,1402.5,-94221.211,0,0,0,-566.60925,11045.695,1083.651 +832,1020,1795,-9,1794,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0012,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1402.5,-94221.211,0,0,0,-566.60925,11045.695,1083.651 +833,1021,1796,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-828.78473,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.6292992,0,48.86,40.74,-9,-9,5,1,1,0,0,1,5,1,1,240,43432.578,0,164659.86,0,0,0,2533.2065 +834,1022,1797,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.8307,0,3,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,20.808928,0,0,1,1,0,0,0,33.15,33.58,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,561,-8334.75,0,0,0,0,0,560.77386 +835,1023,1798,1799,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.6953554,8.5479679,0,37,-4,-41.012058,0,2,2,2021,6,0,48,50,1,0,0,13.659851,13.659851,0,0,0,0,0,0,0,0,0,0,0,7.6809545,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,8,9,5,1,373,1859589,1339402.3,1078538.9,450702.5,0,0,16199.473 +835,1023,1799,1798,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.7573528,9.7031298,0,37,4,38.131218,0,3,3,2021,6,0,80,70,1,0,0,27.218033,27.218033,.05,.05,0,0,0,0,0,0,0,0,0,9.4886312,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,9,5,1,373,1859589,1339402.3,1078538.9,450702.5,0,0,16199.473 +835,1024,1800,-9,1798,1799,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.97369,1,1,2,2021,22,9,0,36,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9515514,0,30.65,50.13,-9,-9,3.333333333333333,1,1,0,0,2,9,1,1,348,11862.313,0,0,0,0,0,-454.9404 +835,1025,1801,-9,1798,1799,1,0,19,0,0,0,2,2,-9,0,3,8.0321121,7.7498145,0,0,0,-1094.5845,0,1,2,2021,11,0,44,43,1,0,1,8.3138895,8.3138895,.05,.05,0,0,0,0,0,0,0,0,0,.92281055,0,52.99,51.28,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,352,-55489.262,-39220.711,0,0,0,323.63797,1834.2434 +835,1026,1802,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.8623581,8.8146114,0,0,0,-1061.601,0,-9,-9,2021,7,0,60,75,1,0,0,14.52984,14.52984,.05,.05,0,0,0,0,0,0,0,0,0,1.2772586,0,55.94,41.92,-9,-9,6.666666666666667,1,1,0,0,3,9,5,1,877,153142.36,53592.988,216664.64,110930.6,2565.5464,-1092.6031,2123.8552 +836,1027,1803,1806,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5117159,8.6728125,0,23,-2,-177.61572,0,3,2,2021,9,0,60,60,1,1,0,8.5928164,8.5928164,.05,.05,0,0,0,0,.87200928,0,1,1,0,0,0,51,56,42.86,30.55,8,1,1,0,0,1,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1804,-9,1806,1803,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.98792,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1805,-9,1806,1803,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-972.30005,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1806,1803,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,0,0,22,2,-11.087694,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,30.55,51,56,6.666666666666667,1,1,0,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +837,1028,1807,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.3087473,7.8105669,0,0,-1019.0711,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2745228,7.4013801,54.55,49.25,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,629,438984.66,241417.47,268325.59,0,0,0,1221.3031 +838,1029,1808,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.3046255,8.6183529,0,0,0,-1076.4021,0,2,2,2021,8,0,37,38,1,0,0,13.54818,13.54818,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,314,50533.469,0,0,0,0,4533.1211,1531.3137 +839,1030,1809,1810,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3770828,8.394125,0,4,-13,-21.320372,0,-9,-9,2021,10,0,35,35,1,0,0,13.380905,13.380905,.05,.05,0,0,0,0,0,0,0,0,0,.38566971,0,54.1,59.11,31.84,51.65,8.333333333333334,1,1,0,0,11,4,5,1,1005.5,213961.53,117642.61,170078.97,160087.75,9359.0303,3438.6528,3224.3545 +839,1030,1810,1809,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.4002352,8.4624481,0,4,13,-147.19542,0,-9,-9,2021,18,5,35,35,1,5,0,16.445992,16.445992,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.84,51.65,54.1,59.11,8.333333333333334,1,1,0,0,14,4,5,1,1005.5,213961.53,117642.61,170078.97,160087.75,9359.0303,3438.6528,3224.3545 +840,1031,1811,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.1494,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,56.6,-9,-9,3.333333333333333,1,1,1,0,8,12,1,1,612,-57555.703,0,0,0,0,0,-50.442818 +841,1032,1812,1813,1815,-9,1,1,56,0,1,0,2,2,-9,1,2,8.4107132,8.9332066,8.4045391,33,5,27.669537,0,3,3,2021,14,2,36,36,1,2,0,17.916433,17.916433,.05,.05,0,0,0,0,0,2,1,1,0,8.2212801,0,38.65,34.09,56.19,46.16,6.666666666666667,2,3,0,0,12,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1032,1813,1812,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.3017235,8.0928469,0,33,-5,-97.756027,0,3,3,2021,12,0,37,43,1,0,0,11.708441,11.708441,0,0,0,0,0,0,0,2,1,1,0,0,0,56.19,46.16,38.65,34.09,5,2,3,0,0,8,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1032,1814,-9,1813,1812,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-890.104,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,0,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1033,1815,-9,-9,-9,1,0,81,0,1,0,3,3,-9,0,3,0,4.6029482,4.2676258,0,0,-1164.3967,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.291749,52,45,-9,-9,8,2,3,0,0,0,8,2,1,818,317796.59,0,276144.47,0,0,0,312.79239 +842,1034,1816,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,4,0,0,0,0,0,-1044.2142,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0154268,0,51.27,20.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,608,193338.19,104374.41,0,0,2034.4053,0,310.07822 +843,1035,1817,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.414753,6.1690159,0,0,-1010.8984,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,.66051656,7.7593431,23.559818,7,1,1,0,0,5.9210238,41.63,23.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,117,265514.59,61165.086,298063.44,0,4534.1768,0,1077.2595 +844,1036,1818,1819,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.4795732,9.6265078,0,10,7,38.452267,0,2,1,2021,10,0,84,97,1,1,0,18.463848,18.463848,0,0,0,0,0,0,0,0,1,1,0,.74935293,0,51,48,60.7,47.65,7,1,1,0,0,1,10,5,1,548,4776490,3087002,929933.69,0,0,0,8820.3652 +844,1036,1819,1818,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,8.9301701,8.99687,0,35,-7,8.4658146,0,1,2,2021,7,0,30,40,1,0,0,30.796661,30.796661,0,0,0,0,0,0,0,0,1,1,0,7.7186441,0,60.7,47.65,51,48,8.333333333333334,1,1,0,0,11,10,5,1,548,4776490,3087002,929933.69,0,0,0,8820.3652 +844,1037,1820,-9,1819,1818,1,1,18,0,0,0,2,2,1,0,3,7.9346476,7.8068676,0,0,0,-943.48468,-9,2,1,2021,27,12,40,0,1,12,1,6.9048228,6.9048228,0,0,0,0,0,0,0,0,1,1,0,0,0,28.82,54.36,-9,-9,5,1,1,0,0,0,10,3,1,698,200244.3,0,0,0,0,0,1183.4039 +845,1038,1821,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,9.2207823,9.4008245,4.9684052,0,0,-1035.8058,0,2,2,2021,8,1,42,42,1,1,0,29.061113,29.061113,.05,.05,0,0,0,0,0,0,0,0,0,5.775825,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,713,1056021.4,544143.06,0,0,0,0,3829.061 +846,1039,1822,1823,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3712349,8.2633505,0,41,2,-78.881073,0,3,3,2021,10,0,35,35,1,1,0,13.118384,13.118384,.05,.05,.05,0,0,0,0,0,0,0,0,8.1682177,0,51,49,53.61,52.37,7,1,1,0,0,10,7,5,1,437.5,761717.19,79078.688,470329.19,0,0,0,4778.4229 +846,1039,1823,1822,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7809396,7.9135528,0,41,-2,-78.569794,0,2,2,2021,11,1,31,31,1,1,0,8.2800732,8.2800732,0,0,0,0,0,0,0,2,0,0,0,7.5953074,0,53.61,52.37,51,49,8.333333333333334,1,1,0,0,10,7,5,1,437.5,761717.19,79078.688,470329.19,0,0,0,4778.4229 +847,1040,1824,1825,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.4565096,7.5924902,0,11,-1,-86.094528,0,3,2,2021,6,0,24,35,1,0,0,7.493248,7.493248,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,58.32,50.22,10,1,1,0,0,12,13,4,1,903,358159.41,164346.31,119737.53,119173.82,19060.965,0,2470.9675 +847,1040,1825,1824,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.214838,8.1779642,0,11,1,-103.70992,0,3,3,2021,6,0,37,40,1,0,0,8.0346336,8.0346336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,61.28,48.88,8.333333333333334,1,1,0,0,9,13,4,1,903,358159.41,164346.31,119737.53,119173.82,19060.965,0,2470.9675 +847,1041,1826,-9,1824,1825,1,1,28,0,0,0,3,3,-9,0,5,8.521349,8.3725929,0,0,0,-963.13312,0,3,3,2021,6,0,45,40,1,0,1,14.094627,14.094627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,13,5,1,403,197823.59,163094.98,70671.461,89058.016,19506.291,1493.3126,938.62451 +848,1042,1827,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7218904,8.5270777,0,0,0,-1030.4529,0,2,3,2021,6,0,41,42,1,0,0,17.349195,17.349195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,3,4,0,0,13,6,5,1,603,-70737.797,-25171.609,204866.3,64950.477,-719.94781,0,1989.6847 +849,1043,1828,1832,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.9243498,9.1889744,0,3,9,72.673119,0,-9,-9,2021,9,0,38,37,1,1,0,22.202824,22.202824,.05,.05,0,0,0,0,0,0,1,1,0,4.5937538,0,52,56,54.69,57.47,8,3,4,0,0,1,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1829,-9,1832,1828,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.7083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1830,-9,1832,1828,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5801,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1831,-9,1832,1828,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.19708,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1832,1828,-9,-9,1,0,34,0,3,0,1,1,-9,0,5,7.9948015,7.8740392,0,9,0,116.2514,0,2,2,2021,6,0,30,30,1,0,0,11.623292,11.623292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,56,6.666666666666667,3,4,0,0,9,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +850,1044,1833,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.2673278,7.3857117,0,0,-982.99725,0,2,1,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8468242,7.3455644,57.06,57.76,-9,-9,10,1,1,0,0,0,6,3,1,549,526412.69,152041.25,116516.34,0,0,0,2605.9712 +851,1045,1834,1835,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.6846409,8.5637054,0,23,-2,-87.971741,0,3,3,2021,11,0,35,32,1,0,0,14.910807,14.910807,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,60.02,56.42,10,1,1,0,0,8,5,5,0,2051.5,684309.5,507212.41,314012.56,267608.56,0,18606.543,3479.4326 +851,1045,1835,1834,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9499903,8.3104477,0,23,2,-108.5798,0,-9,-9,2021,6,0,40,40,1,0,0,9.7345695,9.7345695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.9,51.84,8.333333333333334,1,1,0,0,8,5,5,0,2051.5,684309.5,507212.41,314012.56,267608.56,0,18606.543,3479.4326 +852,1046,1836,1837,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.2112265,7.2637753,0,18,-14,52.372635,0,3,3,2021,8,3,10,10,1,3,0,16.489489,16.489489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,51.73,58.82,8.333333333333334,1,1,0,0,9,12,3,1,985.5,413085.69,338767.44,160191.64,19937.061,0,0,1282.469 +852,1046,1837,1836,-9,-9,1,1,57,0,2,0,2,2,-9,0,5,7.4812093,7.668468,0,17,14,-153.696,0,2,1,2021,9,0,35,38,1,0,0,5.6764779,5.6764779,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,43.44,58.7,8.333333333333334,1,1,0,0,15,12,3,1,985.5,413085.69,338767.44,160191.64,19937.061,0,0,1282.469 +853,1047,1838,1839,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.9451447,9.0757599,0,36,2,60.064953,0,2,2,2021,7,0,48,38,1,0,0,16.54126,16.54126,.05,.05,0,0,0,0,0,2,0,0,0,6.1735377,0,60.29,52.11,18.65,50.11,8.333333333333334,4,2,0,0,13,4,5,1,568,1001518.4,709106.69,178738.75,27590.34,0,0,3201.8 +853,1047,1839,1838,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.2644806,7.4938755,0,36,-2,93.005737,0,3,2,2021,25,12,20,20,1,12,0,7.0503974,7.0503974,0,0,0,0,0,0,0,2,0,0,0,0,0,18.65,50.11,60.29,52.11,3.333333333333333,1,1,0,0,13,4,5,1,568,1001518.4,709106.69,178738.75,27590.34,0,0,3201.8 +853,1048,1840,-9,1839,1838,1,1,28,0,0,0,1,1,-9,0,3,7.9443693,7.9486294,0,0,0,-1004.2423,0,2,2,2021,12,0,40,40,1,0,1,7.1576047,7.1576047,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,11,4,4,1,405,-234918.23,0,0,0,0,0,1491.3392 +854,1049,1841,1842,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,23,8,0,0,1,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,9.8945837,0,0,1,1,0,0,0,40.71,25.11,19.44,55.24,8.333333333333334,1,1,0,0,0,2,2,1,724,1288039.8,244162.58,408384.63,0,0,0,2640.7002 +854,1049,1842,1841,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,23,-8,0,0,3,1,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,19.44,55.24,40.71,25.11,1.666666666666667,1,1,0,0,0,2,2,1,724,1288039.8,244162.58,408384.63,0,0,0,2640.7002 +855,1050,1843,-9,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,7.8735647,7.6711025,0,0,0,-1020.5576,0,-9,-9,2021,10,0,40,40,1,0,0,5.8927956,5.8927956,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.36,44.23,-9,-9,3.333333333333333,1,1,0,1,5,6,3,1,1891,107008.6,-218656.97,146210.89,51154.945,3642.3225,892.4364,1172.733 +855,1051,1844,1846,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.4187613,8.2492199,0,9,3,-1.880888,0,-9,-9,2021,11,0,63,65,1,0,0,7.1092429,7.1092429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,46.31,51.53,6.666666666666667,1,1,0,0,8,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +855,1051,1845,-9,1846,1844,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.5129,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +855,1051,1846,1844,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,8.7887144,8.2279482,0,9,-3,-5.7629952,0,1,2,2021,8,0,63,68,1,0,0,8.4136562,8.4136562,.05,.05,0,0,0,0,0,0,1,1,0,7.0685678,0,46.31,51.53,42.95,61.24,6.666666666666667,1,1,0,0,10,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +856,1052,1847,1848,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.7096176,7.8121548,58,1,-57.26543,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.288116,0,0,1,1,0,6.6211505,7.791708,65.14,32.13,49.28,50.19,10,1,1,0,0,0,1,4,1,595.5,1915621.6,959325,326826.66,0,0,0,4875.8345 +856,1052,1848,1847,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.0341063,8.038887,58,-1,58.798512,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.0007248,8.0328274,49.28,50.19,65.14,32.13,8.333333333333334,1,1,0,0,4,1,4,1,595.5,1915621.6,959325,326826.66,0,0,0,4875.8345 +857,1053,1849,-9,1851,1850,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.29578,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +857,1053,1850,1851,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,9.509531,9.4212399,0,10,6,102.43987,0,-9,-9,2021,14,2,25,25,1,2,0,47.93029,47.93029,0,0,0,0,0,0,0,0,1,1,0,0,0,38.92,49.8,41.88,45.75,1.666666666666667,1,1,0,0,6,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +857,1053,1851,1850,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.8140049,8.1388903,0,9,-6,-37.175472,0,-9,-9,2021,19,8,35,21,1,8,0,9.838273,9.838273,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,45.75,38.92,49.8,0,1,1,0,0,9,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +858,1054,1852,-9,1853,1854,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.7096,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +858,1054,1853,1854,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5297704,8.1412735,0,11,0,-6.7944307,0,2,2,2021,8,0,14,16,1,0,0,16.179848,16.179848,.05,.05,0,0,0,0,0,0,1,1,0,.81581885,0,57.16,56.15,62.83,41.18,8.333333333333334,1,1,0,0,13,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +858,1054,1854,1853,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.3595572,8.3979454,0,11,0,16.847198,0,1,2,2021,6,0,46,48,1,0,0,15.562449,15.562449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.83,41.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +859,1055,1855,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-941.33759,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.06,44.49,-9,-9,10,1,1,1,0,0,4,1,1,211,-269564.34,0,0,0,0,0,-651.08752 +860,1056,1856,1857,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.1071453,7.1824975,64,1,10.390838,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.909339,6.8045292,56.95,35.96,54,44,8.333333333333334,1,1,0,0,0,4,2,0,690.5,473159.94,221069.91,234642.5,0,0,0,1251.7457 +860,1056,1857,1856,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-55.940712,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,2.7990713,0,0,1,1,0,0,0,54,44,56.95,35.96,8,1,1,0,0,0,4,2,0,690.5,473159.94,221069.91,234642.5,0,0,0,1251.7457 +861,1057,1858,1859,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,7.3817186,7.1046114,9,-1,88.742378,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6166501,57.06,57.76,45.32,53.5,10,1,1,0,0,9,5,4,1,478.5,2290024.5,2271882,165232.5,32781.453,4029.0151,0,5600.0693 +861,1057,1859,1858,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0351248,8.144165,0,30,1,66.33271,0,3,2,2021,13,1,37,38,1,1,0,11.986421,11.986421,0,0,0,0,0,0,0,0,0,0,0,8.683423,0,45.32,53.5,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,478.5,2290024.5,2271882,165232.5,32781.453,4029.0151,0,5600.0693 +862,1058,1860,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.2433124,5.1373234,0,0,-1010.6916,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5579853,4.8834763,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,9,8,2,1,1039,99131.5,-65412.277,0,0,0,0,1167.9912 +863,1059,1861,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.8405595,5.9968786,0,0,-986.49658,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,7,0,0,0,5.8885355,5.7203078,20.68,62.16,-9,-9,0,1,1,0,0,4,8,2,1,679,795590.63,113011.87,364638.22,0,0,254.06555,477.40512 +864,1060,1862,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.067605,5.8636355,0,0,-965.78314,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5671258,54.94,50.33,-9,-9,10,1,1,0,0,0,7,2,0,324,433695.16,0,317521.44,0,0,0,995.41235 +865,1061,1863,-9,1864,1865,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4856,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1864,1865,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4962778,8.4941587,0,11,0,122.09446,0,2,2,2021,21,7,30,30,1,7,0,18.411173,18.411173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,51.73,58.82,8.333333333333334,1,1,0,0,9,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1865,1864,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.9200611,8.9504299,0,11,0,74.778397,0,2,2,2021,7,0,56,58,1,0,0,20.227261,20.227261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.85,60.33,10,1,1,0,0,9,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1866,-9,1864,1865,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3459,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +866,1062,1867,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.698194,5.2322373,0,0,-971.05005,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3874907,48.15,47.3,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,552,391221.06,115222.91,337957.84,0,0,0,158.85719 +867,1063,1868,1869,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.0469723,6.7285523,5,-6,-52.778576,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0631051,6.9287004,53.23,42.9,37.22,46.74,8.333333333333334,1,1,0,0,0,2,3,1,577,607412.25,203095.81,148375.52,0,0,0,3210.9326 +867,1063,1869,1868,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.3539271,7.6658835,5,6,59.37669,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5544245,7.3500309,37.22,46.74,53.23,42.9,6.666666666666667,1,1,0,0,0,2,3,1,577,607412.25,203095.81,148375.52,0,0,0,3210.9326 +868,1064,1870,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.9688597,7.9835529,0,0,0,-982.7807,0,2,2,2021,12,0,52,48,1,0,0,8.4231396,8.4231396,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,1,7,9,4,1,870,158998.14,77575.977,0,0,1217.6672,0,1954.6776 +868,1065,1871,-9,1870,-9,1,0,26,0,0,0,2,2,-9,0,5,7.2837152,7.165287,0,0,0,-1058.4028,0,2,3,2021,9,0,35,20,1,0,1,4.1067591,4.1067591,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,247,190419.17,0,0,0,0,0,321.02081 +868,1066,1872,-9,1870,-9,1,1,23,0,0,0,2,2,-9,0,5,7.6192355,7.38517,0,0,0,-1060.5571,0,2,3,2021,12,0,41,31,1,0,1,6.1953225,6.1953225,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,1.666666666666667,1,1,0,1,5,9,3,1,573,-193659.89,0,0,0,0,0,317.71701 +869,1067,1873,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,9.0085583,9.2439709,0,0,0,-1017.777,0,2,-9,2021,14,3,35,40,1,3,0,24.772808,24.772808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.97,36.8,-9,-9,3.333333333333333,1,1,0,0,5,6,5,0,797,161911.67,29145.996,109184.59,112372.24,6551.3296,0,5097.728 +870,1068,1874,1875,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8325086,7.2803545,52,-5,145.49498,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,17.759338,0,0,1,1,0,0,7.0608597,39.62,41.48,58,51,8.333333333333334,1,1,0,0,0,10,2,0,487.5,503074.25,212052.08,211735.05,0,0,0,1287.1063 +870,1068,1875,1874,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,52,5,-64.249443,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58,51,39.62,41.48,10,1,1,0,0,0,10,2,0,487.5,503074.25,212052.08,211735.05,0,0,0,1287.1063 +871,1069,1876,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.2641745,7.585743,0,0,-998.70636,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3613515,7.6672411,44.05,37.78,-9,-9,5,1,1,0,0,7,13,3,1,503,1007899.9,535758.44,118941.84,0,0,0,1508.8279 +872,1070,1877,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.7774239,9.0909615,6.7326112,0,0,-967.49512,0,2,2,2021,26,11,35,50,1,11,0,24.76055,24.76055,0,0,0,0,0,0,0,0,1,1,0,7.6258893,0,23.02,66.47,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +872,1070,1878,-9,1877,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7987,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +872,1070,1879,-9,1877,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.16992,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +873,1071,1880,-9,1882,1883,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.58533,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1881,-9,1882,1883,1,1,16,1,2,1,2,0,-9,0,4,0,0,0,0,0,-1122.662,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1882,1883,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.6887875,8.7768183,0,7,-17,-29.16662,0,1,2,2021,6,0,40,26,1,0,0,15.954715,15.954715,0,0,0,0,0,0,0,0,1,1,0,0,0,55.13,26.04,39.37,54.73,8.333333333333334,1,1,0,0,9,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1883,1882,-9,-9,1,1,52,1,2,0,2,2,-9,0,3,8.0706654,7.4866161,0,7,17,-4.8943748,0,2,3,2021,12,0,36,36,1,0,0,9.0355444,9.0355444,.05,.05,0,0,0,0,0,7,1,1,0,2.7648015,0,39.37,54.73,55.13,26.04,3.333333333333333,1,1,0,0,9,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +874,1072,1884,1885,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.3550782,7.2344732,5.4437847,2,-2,32.290962,0,3,2,2021,8,0,24,26,1,0,0,6.0261011,6.0261011,.05,.05,0,0,0,0,0,7,0,0,0,2.9953892,5.8084106,57.33,53.46,38.36,61,8.333333333333334,1,1,0,0,10,2,5,1,649,394484.97,185051.44,90357.875,37723.305,0,1590.3228,4386.937 +874,1072,1885,1884,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.1239843,9.0605917,6.8088827,2,2,45.15274,0,-9,-9,2021,4,0,16,15,1,0,0,50.470924,50.470924,.05,.05,0,0,0,0,0,2,0,0,0,7.4872494,7.1106501,38.36,61,57.33,53.46,10,1,1,0,0,5,2,5,1,649,394484.97,185051.44,90357.875,37723.305,0,1590.3228,4386.937 +875,1073,1886,1887,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,9.2405138,9.5493031,0,37,1,42.455437,0,3,3,2021,8,0,43,0,1,0,0,27.692497,27.692497,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.18,52.11,57.16,56.15,6.666666666666667,1,1,0,0,13,12,5,1,886,1387381.8,1177501.4,167877.69,37067.09,0,0,3765.9668 +875,1073,1887,1886,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,37,-1,-.029022947,0,2,2,2021,8,0,0,22,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,52.18,52.11,0,1,1,0,0,11,12,5,1,886,1387381.8,1177501.4,167877.69,37067.09,0,0,3765.9668 +876,1074,1888,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3329134,8.3028555,0,0,0,-1096.1659,0,2,2,2021,9,2,40,38,1,2,0,13.572515,13.572515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,12,10,5,1,165.5,61187.027,33814.898,0,0,0,0,1289.2256 +876,1074,1889,-9,1888,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-959.93591,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.22,59.96,-9,-9,5,1,1,0,0,1,10,5,1,165.5,61187.027,33814.898,0,0,0,0,1289.2256 +876,1075,1890,-9,1888,-9,1,1,18,0,0,0,3,3,1,0,3,5.7021723,5.3801455,0,0,0,-1190.0745,-9,2,-9,2021,8,0,10,0,1,0,1,3.5614684,3.5614684,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,2710,89998.484,0,0,0,0,0,133.12814 +877,1076,1891,1892,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.7629724,7.3635387,0,8,-2,13.409551,0,2,2,2021,6,0,23,24,1,0,0,12.816399,12.816399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.68,59.06,34.89,43.84,8.333333333333334,1,1,0,0,9,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +877,1076,1892,1891,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.5210934,9.4803162,0,8,2,94.933578,0,2,2,2021,12,0,90,60,1,0,0,14.696046,14.696046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.89,43.84,41.68,59.06,6.666666666666667,1,1,0,0,9,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +877,1076,1893,-9,1891,1892,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.6316,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +878,1077,1894,1895,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.3025389,7.8675475,0,7,-6,44.819675,0,3,3,2021,7,0,37,36,1,0,0,9.3358908,9.3358908,0,0,0,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,1756,1278788.3,357055.19,479415.56,0,0,0,2927.4763 +878,1077,1895,1894,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9380631,8.2684898,6.9660163,7,6,-26.142227,0,2,2,2021,6,0,35,30,1,0,0,10.392657,10.392657,0,0,0,0,0,0,0,14.5,0,0,0,7.4031057,6.877357,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1756,1278788.3,357055.19,479415.56,0,0,0,2927.4763 +879,1078,1896,-9,1897,-9,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1053.4353,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,661,101055.99,0,279072.09,110772.93,0,0,2366.0483 +879,1078,1897,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.4677792,8.8123188,6.4123635,0,0,-943.73279,0,2,3,2021,12,0,40,40,1,0,0,14.793831,14.793831,0,0,0,0,0,0,0,0,1,1,0,6.7850575,0,46.62,51.4,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,661,101055.99,0,279072.09,110772.93,0,0,2366.0483 +879,1079,1898,-9,1897,-9,1,0,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-879.36908,0,2,1,2021,16,4,0,20,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.86,64.84,-9,-9,0,1,1,0,0,4,2,1,1,973,0,0,0,0,0,0,-239.42545 +879,1080,1899,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5019135,7.4774537,0,0,0,-1019.3217,0,-9,-9,2021,20,8,55,70,1,8,0,4.6189036,4.6189036,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,35.73,-9,-9,1.666666666666667,1,1,0,1,5,2,3,1,119,358465.13,-115787.81,135357.38,0,0,0,600.93439 +880,1081,1900,1901,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6866245,8.6427965,0,13,-11,95.78022,-9,-9,-9,2021,6,0,49,0,1,0,0,13.817992,13.817992,.05,.05,0,0,0,0,0,0,0,0,0,5.3078227,0,57.16,56.15,58.43,51.57,1.666666666666667,1,1,0,0,12,12,4,1,952,345822.94,377465.75,165786.25,85440.063,97309.469,3055.9138,2485.8513 +880,1081,1901,1900,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.0704446,5.9631362,0,14,11,-150.22624,-9,3,3,2021,8,0,15,0,1,0,0,3.0515418,3.0515418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.43,51.57,57.16,56.15,0,1,1,0,0,10,12,4,1,952,345822.94,377465.75,165786.25,85440.063,97309.469,3055.9138,2485.8513 +881,1082,1902,1903,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,3.4331594,3.3134067,57,3,131.97174,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1475849,0,0,1,1,0,0,3.098114,43.89,49.08,40,23,8.333333333333334,1,1,0,0,0,4,2,1,386.5,197514.94,27115.938,251980.41,0,2643.1287,888.53125,3378.8242 +881,1082,1903,1902,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,57,-3,13.18551,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.5758325,0,0,1,1,0,1.1151192,0,40,23,43.89,49.08,8.333333333333334,1,1,0,0,0,4,2,1,386.5,197514.94,27115.938,251980.41,0,2643.1287,888.53125,3378.8242 +881,1083,1904,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,7.7395043,7.7535858,0,0,0,-1124.0405,0,-9,-9,2021,14,2,60,60,1,2,0,4.2908845,4.2908845,.05,.05,0,0,0,0,0,0,1,1,0,1.3630797,0,31,40.43,-9,-9,5,1,1,0,0,7,4,3,1,441,-73557.07,-108850.41,0,0,0,0,1424.9606 +881,1084,1905,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.8378401,7.0858121,0,0,0,-895.32385,0,-9,-9,2021,6,0,23,23,1,0,0,5.7890253,5.7890253,0,0,0,0,0,0,0,0,1,1,0,0,0,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1558,-149187.7,0,0,0,0,0,661.29944 +882,1085,1906,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.0598,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,24.16,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,1177,0,0,0,0,0,0,601.9458 +883,1086,1907,1908,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.6328602,7.5648046,0,9,1,113.89289,0,-9,-9,2021,6,0,50,50,1,0,0,4.6069689,4.6069689,.05,.05,0,0,0,0,0,0,0,0,0,7.8693538,0,50.28,51.35,27.81,65.69,8.333333333333334,1,1,0,0,3,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1908,1907,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3636923,8.8087482,0,19,-1,90.132751,0,1,1,2021,14,4,30,50,1,4,0,19.849173,19.849173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,50.28,51.35,8.333333333333334,1,1,0,0,4,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1909,-9,1908,1907,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.1332,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1910,-9,1908,1907,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.42249,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +884,1087,1911,1912,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3952484,8.7610264,0,35,-1,118.49878,0,3,3,2021,5,0,30,30,1,0,0,20.010752,20.010752,.05,.05,0,0,0,0,0,7,0,0,0,6.432559,0,59.29,49.68,51.14,60.45,10,1,1,0,0,11,12,5,1,753,629458.25,503054.28,146705.8,0,5506.4326,0,4889.3369 +884,1087,1912,1911,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.2326908,9.1622477,0,9,1,-33.435867,0,-9,-9,2021,10,0,46,85,1,0,0,26.095039,26.095039,.05,.05,0,0,0,0,0,0,0,0,0,4.3739519,0,51.14,60.45,59.29,49.68,8.333333333333334,1,1,0,0,6,12,5,1,753,629458.25,503054.28,146705.8,0,5506.4326,0,4889.3369 +885,1088,1913,1914,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5745516,8.1702747,0,3,0,-112.86569,0,-9,-9,2021,12,0,45,50,1,0,0,16.078009,16.078009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,48.36,42.7,6.666666666666667,1,1,0,0,12,1,5,0,293,86790.961,8907.0967,19206.232,-1126.6519,8381.7578,0,3797.3955 +885,1088,1914,1913,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.2822313,8.2283859,0,3,0,-78.419472,0,-9,-9,2021,12,2,50,53,1,2,0,7.8451967,7.8451967,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.36,42.7,38.59,60.85,10,1,1,0,0,3,1,5,0,293,86790.961,8907.0967,19206.232,-1126.6519,8381.7578,0,3797.3955 +886,1089,1915,1916,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2195387,8.0661125,0,2,-1,-.33487055,0,-9,-9,2021,6,0,48,48,1,0,0,10.258273,10.258273,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,51.08,49.24,8.333333333333334,1,1,0,0,8,4,5,0,1456.5,53298.453,118851.6,143311.77,77581.906,43297.176,2951.5786,5348.4863 +886,1089,1916,1915,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,8.7621336,8.4142056,0,2,1,5.2506156,0,3,3,2021,12,0,15,15,1,0,0,39.371456,39.371456,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.08,49.24,59.43,49.68,6.666666666666667,1,1,0,1,5,4,5,0,1456.5,53298.453,118851.6,143311.77,77581.906,43297.176,2951.5786,5348.4863 +886,1090,1917,-9,1916,1915,1,0,23,0,0,0,2,2,-9,0,3,7.7724118,7.6601067,0,0,0,-984.42206,0,3,2,2021,11,0,40,35,1,0,1,8.0551558,8.0551558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,49.86,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,506,104597.33,-465.70175,0,0,0,0,706.85101 +887,1091,1918,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.5122337,9.6909151,0,0,0,-896.52814,0,2,2,2021,8,0,90,52,1,0,0,22.528263,22.528263,.05,.05,.05,0,0,0,0,0,0,0,0,4.9973063,0,59.29,49.68,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,277,382778.44,195145.13,0,0,0,0,8033.9063 +888,1092,1919,1920,1921,-9,1,1,28,0,0,0,1,1,-9,0,3,8.1675224,8.1447124,0,1,-1,-43.271763,0,3,2,2021,12,2,45,45,1,2,0,7.4198494,7.4198494,0,0,0,0,0,0,0,0,0,0,0,3.9161334,0,53.11,47.09,45.22,63.14,6.666666666666667,2,3,0,0,3,7,3,1,636.5,401354.25,20675.652,584156,221404.91,0,0,1696.312 +888,1092,1920,1919,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,1,1,-90.016167,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,53.11,47.09,8.333333333333334,2,3,1,0,0,7,3,1,636.5,401354.25,20675.652,584156,221404.91,0,0,1696.312 +888,1093,1921,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.2672958,7.3198195,0,0,0,-986.88947,-9,-9,-9,2021,12,2,20,0,1,2,0,8.724782,8.724782,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,22.19,-9,-9,6.666666666666667,2,3,0,0,9,7,3,1,1273,-127075.98,0,0,0,0,0,739.41449 +889,1094,1922,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-926.86017,-9,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.79005474,0,33.97,57.61,-9,-9,1.666666666666667,1,1,0,0,6,7,1,1,251,-247293.28,20162.051,0,0,0,0,229.51518 +890,1095,1923,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.5714245,8.112278,0,0,0,-949.7605,-9,-9,-9,2021,7,0,39,0,1,0,0,14.460011,14.460011,.05,.05,0,0,0,0,0,2,1,1,0,2.9427068,0,55.34,54.26,-9,-9,6.666666666666667,1,1,0,0,1,8,5,1,836,-28239.914,87381.938,189603.22,204836.03,0,-407.70901,1860.7429 +891,1096,1924,1925,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.6603022,8.0029392,0,3,1,22.824064,0,-9,-9,2021,6,0,24,21,1,0,0,17.308146,17.308146,.05,.05,0,0,0,0,2.5078537,0,0,0,0,0,0,57.8,41.32,50.01,52.64,10,1,1,0,0,11,12,4,1,471,174145.86,200472.33,113926.63,104455.5,20528.395,0,2290.801 +891,1096,1925,1924,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.7775507,8.1377325,0,3,-1,1.3058003,0,3,3,2021,9,0,40,40,1,0,0,7.9231467,7.9231467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,52.64,57.8,41.32,6.666666666666667,1,1,0,0,10,12,4,1,471,174145.86,200472.33,113926.63,104455.5,20528.395,0,2290.801 +892,1097,1926,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.1615682,7.1913867,0,0,-919.84351,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3345766,7.1288052,48.52,43.78,-9,-9,6.666666666666667,1,1,0,1,0,10,3,1,1097,101155.23,89263.148,104982.51,0,0,0,1639.8624 +893,1098,1927,1928,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,5,-6,11.041874,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.5439873,2.5802612,63.177135,0,1,1,0,5.2766733,0,61.29,22.08,47.88,29.69,8.333333333333334,1,1,0,0,0,6,2,1,2281.5,136622.84,81789.633,162403.42,0,0,0,1666.8416 +893,1098,1928,1927,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.5364709,6.6687136,5,6,53.019825,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9042759,6.4764318,47.88,29.69,61.29,22.08,8.333333333333334,1,1,0,0,0,6,2,1,2281.5,136622.84,81789.633,162403.42,0,0,0,1666.8416 +894,1099,1929,1930,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,0,0,63,-2,85.21373,0,3,2,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,14.937722,0,2,1,1,0,0,0,62.22,19.21,57.76,54.51,8.333333333333334,1,1,0,0,0,2,2,1,333.5,503017.94,158692.56,256983.83,0,0,0,2600.4561 +894,1099,1930,1929,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.2265134,6.3626747,63,2,65.773026,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.7602639,6.7418475,57.76,54.51,62.22,19.21,8.333333333333334,1,1,0,0,0,2,2,1,333.5,503017.94,158692.56,256983.83,0,0,0,2600.4561 +895,1100,1931,-9,1932,1934,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-873.2392,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1932,1934,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,7.4682112,7.4976382,0,2,-14,47.745552,0,-9,-9,2021,11,1,23,22,1,1,0,12.09062,12.09062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.69,41.42,41.27,51.53,8.333333333333334,1,1,0,0,7,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1933,-9,1932,1934,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6042,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1934,1932,-9,-9,1,1,41,1,2,0,1,1,-9,0,2,8.0444555,7.6800361,0,2,14,-101.30514,0,-9,-9,2021,12,0,15,15,1,0,0,22.950001,22.950001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.27,51.53,51.69,41.42,6.666666666666667,4,5,0,0,4,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +896,1101,1935,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.1634474,8.0708714,0,0,0,-1079.6033,0,2,2,2021,6,0,50,23,1,0,0,7.9599547,7.9599547,.05,.05,0,0,0,0,0,0,0,0,0,2.8156595,0,60.02,56.42,-9,-9,10,1,1,0,0,9,7,4,0,4124,493842.41,226758.17,289289.25,0,0,0,1032.855 +897,1102,1936,1937,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.8773155,6.2618456,54,8,85.938286,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2981753,6.4769373,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,0,10,2,1,520.5,298497.66,79730.922,225500.5,0,0,0,1849.8462 +897,1102,1937,1936,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,.94578618,.60430431,54,-8,32.887566,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5706253,.66334963,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,10,2,1,520.5,298497.66,79730.922,225500.5,0,0,0,1849.8462 +898,1103,1938,-9,1940,1939,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3983,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1939,1940,-9,-9,1,1,42,1,3,0,2,2,-9,0,3,9.3265533,9.3945675,0,7,2,68.306473,0,2,1,2021,11,0,40,55,1,0,0,36.603588,36.603588,.05,.05,0,0,0,0,0,14.5,1,1,0,8.5557213,0,42.36,56.12,51.15,41.37,6.666666666666667,1,1,0,0,9,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1940,1939,-9,-9,1,0,40,1,3,0,1,1,-9,1,3,0,0,0,7,-2,-111.06726,0,1,2,2021,10,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.15,41.37,42.36,56.12,8.333333333333334,1,1,0,0,7,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1941,-9,1940,1939,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.20947,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1942,-9,1940,1939,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1127.5685,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +899,1104,1943,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.7364678,7.9889531,0,0,0,-1075.2671,0,3,2,2021,21,10,40,37,1,10,0,7.7592421,7.7592421,0,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,428,343774.03,0,124046.95,0,1307.8844,0,1430.1444 +900,1105,1944,1945,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4434376,7.308042,0,31,-3,39.415707,0,2,2,2021,8,0,18,18,1,0,0,10.684644,10.684644,0,0,0,0,0,0,0,0,0,0,0,2.8777957,0,57.16,56.15,46.55,58.3,10,1,1,0,0,9,7,3,1,1057,217323.78,234275.14,178447.56,9390.9736,1962.3643,0,1077.1464 +900,1105,1945,1944,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.5763636,6.6160731,0,31,3,27.138273,0,-9,-9,2021,11,0,40,40,1,0,0,2.6213872,2.6213872,.05,.05,0,0,0,0,0,0,0,0,0,5.8824897,0,46.55,58.3,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,1057,217323.78,234275.14,178447.56,9390.9736,1962.3643,0,1077.1464 +900,1106,1946,-9,1944,1945,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1004.8809,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7055738,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,260,0,0,0,0,0,0,33.105686 +901,1107,1947,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4898758,8.7046013,7.784554,0,0,-929.56781,0,2,2,2021,16,4,40,40,1,4,0,14.170777,14.170777,.05,.05,0,0,0,0,0,0,1,1,0,8.2187729,0,54.2,57.49,-9,-9,5,1,1,0,0,11,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +901,1107,1948,-9,1947,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8833,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +901,1107,1949,-9,1947,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.0713,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +902,1108,1950,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.381041,6.697957,0,0,-914.26367,0,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7818727,45.66,29.07,-9,-9,5,1,1,0,0,1,9,2,1,1876,599752.25,138121.98,354296.69,0,0,0,634.24347 +903,1109,1951,1952,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,6.7829185,6.9874086,0,43,-4,110.7186,0,-9,3,2021,6,0,60,35,1,0,0,1.8579068,1.8579068,0,0,0,0,0,0,0,0,1,1,0,4.1032648,0,50.65,60.47,59.43,49.68,10,1,1,0,0,8,9,2,1,505.5,380801.31,113144.63,181829.59,0,0,0,1659.4927 +903,1109,1952,1951,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.8100429,6.127965,44,4,33.162174,0,3,2,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6392057,5.8870368,59.43,49.68,50.65,60.47,10,1,1,0,0,8,9,2,1,505.5,380801.31,113144.63,181829.59,0,0,0,1659.4927 +904,1110,1953,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,5.2930889,5.3594537,0,0,-970.2251,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,6.343894,.93182361,0,1,1,0,0,5.3638883,33.7,25.22,-9,-9,3.333333333333333,1,1,0,0,7,11,2,1,4961,839224,10525.116,580884.88,0,0,0,1518.5719 +904,1111,1954,1955,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.4724474,8.6290674,0,12,6,-106.15534,0,1,3,2021,9,0,50,46,1,0,0,10.391383,10.391383,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.32,63.94,6.666666666666667,1,1,0,0,13,11,5,1,1126.5,184407.34,53554.598,202312,99704.203,8933.6895,0,3310.7488 +904,1111,1955,1954,1953,-9,1,0,37,0,0,0,3,3,-9,0,5,7.8773685,8.2744112,0,12,-6,-10.771358,0,1,3,2021,10,0,54,40,1,0,0,7.6093841,7.6093841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.32,63.94,54.37,54.8,6.666666666666667,1,1,0,0,13,11,5,1,1126.5,184407.34,53554.598,202312,99704.203,8933.6895,0,3310.7488 +905,1112,1956,1957,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.0348206,8.3550835,0,6,1,66.07988,0,2,2,2021,8,0,35,35,1,0,0,13.922023,13.922023,0,0,0,0,0,0,0,0,1,1,0,0,0,50.43,53.69,65.38,31.06,8.333333333333334,1,1,0,0,7,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +905,1112,1957,1956,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.582653,8.8171158,0,6,-1,-141.31781,0,3,2,2021,5,0,40,60,1,0,0,13.928716,13.928716,0,0,0,0,0,0,0,0,1,1,0,0,0,65.38,31.06,50.43,53.69,8.333333333333334,1,1,0,0,7,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +905,1112,1958,-9,1956,1957,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6642,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +906,1113,1959,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2426424,6.7440624,0,0,-1021.5334,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5716095,1.5065348,36.28,17.11,-9,-9,5,1,1,0,0,0,7,2,0,1784,237005.53,150276.69,250066.47,0,0,0,2155.5369 +907,1114,1960,1961,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.5567627,8.6515636,0,33,8,95.466629,0,3,3,2021,11,0,40,0,1,0,0,17.244572,17.244572,0,0,0,0,0,0,0,0,1,1,0,2.0544736,0,55.21,58.31,65.03,41.96,6.666666666666667,2,3,0,0,13,6,4,1,1120,1083575.6,739876.63,306969.25,0,0,0,4239.6445 +907,1114,1961,1960,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,9,-8,89.926643,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87972355,0,65.03,41.96,55.21,58.31,10,2,3,0,0,0,6,4,1,1120,1083575.6,739876.63,306969.25,0,0,0,4239.6445 +907,1115,1962,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,6.7594595,6.9547091,0,0,0,-1097.9906,0,-9,-9,2021,6,0,37,0,1,0,0,2.8419335,2.8419335,0,0,0,0,0,0,0,0,1,1,0,3.2744312,0,67.04000000000001,42.15,-9,-9,10,2,3,0,0,4,6,2,1,1465,-207653.34,0,0,0,0,0,532.55896 +908,1116,1963,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6058903,8.9608984,5.7887311,0,0,-1036.7618,0,2,2,2021,12,1,40,38,1,1,0,15.6273,15.6273,.05,.05,0,0,0,0,0,0,0,0,0,6.1382933,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,296,583888.31,41410.785,129580.73,0,0,0,3384.5188 +908,1117,1964,-9,1963,-9,1,0,23,0,0,0,1,1,-9,0,5,7.5287151,7.4304819,0,0,0,-931.47839,0,1,-9,2021,10,0,32,31,1,0,1,6.8216658,6.8216658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.81,59.64,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,3070,-47531.617,10594.969,0,0,0,0,718.81659 +909,1118,1965,1966,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,31,-3,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,24.7,58.15,52.91,10,1,1,0,0,0,10,1,1,692.5,1241630.5,286425.34,634458.38,0,0,0,948.4624 +909,1118,1966,1965,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,31,3,0,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,8.0032473,0,58.15,52.91,43.72,24.7,8.333333333333334,1,1,0,0,11,10,1,1,692.5,1241630.5,286425.34,634458.38,0,0,0,948.4624 +909,1119,1967,-9,1965,1966,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-939.4671,-9,2,1,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,299,0,0,0,0,0,0,0 +910,1120,1968,-9,1969,1971,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.03009,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1969,1971,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.2132845,8.3287954,0,9,-5,-66.340813,0,2,-9,2021,8,0,40,35,1,0,0,10.667058,10.667058,.05,.05,0,0,0,0,0,0,1,1,0,5.1022744,0,49.65,57.01,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1970,-9,1969,1971,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.67175,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1971,1969,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,9.4461498,9.8377142,0,9,5,-105.55489,0,-9,-9,2021,2,0,35,35,1,0,0,50.19558,50.19558,.05,.05,0,0,0,0,0,0,1,1,0,6.9047575,0,57.06,57.76,49.65,57.01,8.333333333333334,1,1,0,0,11,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1972,-9,1969,1971,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.18811,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +911,1121,1973,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.3829913,7.3224106,0,0,-1003.7956,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8705268,57.41,54.88,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,804,650629.44,333375.09,62429.672,0,0,0,1267.5679 +912,1122,1974,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8944955,8.1238947,0,0,0,-1131.0238,0,3,3,2021,7,0,40,40,1,0,0,7.6811442,7.6811442,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.38,47.51,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1419,-36349.199,-4076.2715,0,0,0,1857.9733,740.20538 +913,1123,1975,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,5.0799203,4.8820333,0,0,-836.03815,0,3,2,2021,13,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7015853,0,57.74,44.14,-9,-9,10,1,1,0,0,0,7,2,1,276,-6880.3765,-100884.11,0,0,0,0,1484.4456 +914,1124,1976,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.0564623,6.4747334,0,0,-1083.1569,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3672309,71.47,25.01,-9,-9,0,1,1,0,0,0,1,2,1,768,355474.78,113432.09,225526.13,0,0,0,1361.741 +915,1125,1977,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.8956337,8.802844,0,0,0,-1105.1997,0,2,2,2021,12,0,75,38,1,0,0,11.066278,11.066278,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,277,0,0,0,0,0,0,2064.8005 +916,1126,1978,1979,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,63,4,88.255943,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.4,45.23,42.86,53.58,10,1,1,0,0,0,9,2,0,894,188238.34,151207.59,218247.28,0,0,0,1778.0839 +916,1126,1979,1978,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,4.9410815,4.9142256,64,-4,89.571503,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1747975,42.86,53.58,63.4,45.23,8.333333333333334,1,1,0,0,0,9,2,0,894,188238.34,151207.59,218247.28,0,0,0,1778.0839 +917,1127,1980,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.9746485,8.8081036,0,0,0,-1098.9988,0,2,3,2021,9,0,52,57,1,0,0,14.092719,14.092719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1748,672978,400811.19,57659.156,0,0,0,1907.3506 +917,1128,1981,-9,1980,-9,1,1,34,0,0,0,1,1,-9,0,3,8.4686222,8.5216112,0,0,0,-1042.8859,0,2,2,2021,22,9,38,38,1,9,1,15.992308,15.992308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.2,61.24,-9,-9,5,1,1,0,0,8,11,5,1,1351,31741.738,71555.719,0,0,0,0,2126.9507 +918,1129,1982,1983,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-1,5.909709,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,55.31,53.1,52.62,8.333333333333334,1,1,0,0,6,13,4,1,322,1414301,1137127.8,271437.97,0,3589.6729,4034.4688,3269.4138 +918,1129,1983,1982,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.4847059,8.5956602,0,44,1,-53.404797,0,3,3,2021,9,0,70,60,1,0,0,7.4341197,7.4341197,.05,.05,0,1,3.1982291,11.280801,26.493948,0,1,1,0,2.451685,0,53.1,52.62,52.93,55.31,8.333333333333334,1,1,0,0,11,13,4,1,322,1414301,1137127.8,271437.97,0,3589.6729,4034.4688,3269.4138 +919,1130,1984,1985,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.9687724,7.3159738,54,0,19.006992,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8747263,7.5112233,51.92,39.36,46.54,44.72,5,1,1,0,0,0,5,2,1,586.5,504158.75,0,327032.69,0,0,0,1635.229 +919,1130,1985,1984,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,2.8079138,3.2446251,9,0,133.75523,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2071819,3.1228209,46.54,44.72,51.92,39.36,6.666666666666667,1,1,0,0,0,5,2,1,586.5,504158.75,0,327032.69,0,0,0,1635.229 +920,1131,1986,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.8628154,8.0330334,0,0,0,-1005.9919,0,2,2,2021,20,8,28,24,1,8,0,12.413692,12.413692,0,0,0,0,0,0,0,0,1,1,0,1.9030149,0,45.04,48.24,-9,-9,8.333333333333334,1,1,0,0,11,6,4,0,543,-20230.748,0,142843.97,64649.32,10297.705,0,632.32721 +921,1132,1987,1988,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.8426561,7.6252742,6.0036187,43,-5,-24.403481,0,3,3,2021,10,0,30,30,1,0,0,9.5258646,9.5258646,0,0,0,0,0,0,0,0,1,1,0,7.7008371,6.2390523,37.99,50.05,57.06,57.76,8.333333333333334,1,1,0,0,10,9,4,1,310.5,450972.63,268686.13,241838.59,-4087.022,346.03665,0,5149.4873 +921,1132,1988,1987,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,7.7478223,7.7518678,6.7427907,43,5,35.762177,0,3,3,2021,6,0,40,45,1,0,0,6.7316999,6.7316999,.05,.05,.05,0,0,0,0,0,1,1,0,7.1226749,6.7676973,57.06,57.76,37.99,50.05,8.333333333333334,1,1,0,0,10,9,4,1,310.5,450972.63,268686.13,241838.59,-4087.022,346.03665,0,5149.4873 +922,1133,1989,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9925556,7.6693048,0,0,0,-901.09772,0,-9,-9,2021,22,10,40,38,1,10,0,6.4218946,6.4218946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,15.43,65.91,-9,-9,3.333333333333333,1,1,0,0,8,13,3,0,501,235580.53,-81216.648,90139.578,66921.672,0,0,1480.3344 +923,1134,1990,1993,-9,-9,1,1,55,0,2,0,3,3,-9,1,1,0,0,0,7,27,0,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.11,20.15,34.43,35.1,8.333333333333334,1,1,0,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1991,-9,1993,1990,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.8904,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1992,-9,1993,1990,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.8786,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1993,1990,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,7,-27,0,0,-9,-9,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.43,35.1,27.11,20.15,3.333333333333333,1,1,0,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +924,1135,1994,1995,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.1604156,7.1148858,10,12,-76.289513,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2520974,7.041491,60.02,56.42,54.47,50.48,10,1,1,0,0,0,12,2,1,596,511960.5,316443.75,155001.89,0,0,0,1655.1199 +924,1135,1995,1994,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.7923622,4.7194266,10,-12,48.825375,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3497555,4.718348,54.47,50.48,60.02,56.42,10,1,1,0,0,9,12,2,1,596,511960.5,316443.75,155001.89,0,0,0,1655.1199 +925,1136,1996,1997,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.1443024,8.2953806,0,12,10,23.415133,0,3,-9,2021,12,0,38,38,1,0,0,7.8072681,7.8072681,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,44.33,41.95,5,1,1,0,0,13,2,4,1,1057,127714.48,-7807.2275,144142.53,66072.18,0,760.73889,2560.1328 +925,1136,1997,1996,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.0279083,8.0764713,0,12,-10,-96.825058,0,2,2,2021,15,3,42,42,1,3,0,10.314751,10.314751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.33,41.95,49.04,55.86,5,1,1,0,0,13,2,4,1,1057,127714.48,-7807.2275,144142.53,66072.18,0,760.73889,2560.1328 +926,1137,1998,1999,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3656826,7.6178846,12,-1,86.188843,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8287587,7.3952694,47.38,50.99,43.5,38.28,8.333333333333334,1,1,0,0,0,9,3,1,1385,1147333.5,530510.25,225533.66,0,0,0,3100.717 +926,1137,1999,1998,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,6.7816691,6.8126764,12,1,-38.18597,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,12.323346,0,0,1,1,0,7.5699558,6.9182034,43.5,38.28,47.38,50.99,8.333333333333334,1,1,0,0,0,9,3,1,1385,1147333.5,530510.25,225533.66,0,0,0,3100.717 +927,1138,2000,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.9456,0,3,3,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,37,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,696,-124464.2,0,0,0,0,0,-167.08243 +928,1139,2001,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4724779,8.6017103,0,0,0,-984.70166,-9,2,2,2021,12,0,35,0,1,0,0,15.58459,15.58459,.05,.05,0,0,0,0,0,0,0,0,0,7.8862181,0,43.65,58.28,-9,-9,5,2,3,0,0,5,8,5,0,749,31318.191,93047.563,0,0,0,0,4215.541 +929,1140,2002,2003,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.1030798,9.3074541,0,36,2,7.9287939,0,2,3,2021,7,0,47,37,1,0,0,25.844316,25.844316,0,0,0,0,0,0,0,7,0,0,0,5.0048804,0,54.96,53.17,58.3,52.91,5,1,1,0,0,12,10,5,1,198.5,3638475,1209006.9,509010.13,0,0,0,5189.6621 +929,1140,2003,2002,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.3982782,8.4636164,5.47225,36,-2,-80.238365,0,2,3,2021,6,0,30,37,1,0,0,16.661665,16.661665,0,0,0,0,0,0,0,2,0,0,0,5.9869928,6.1567297,58.3,52.91,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,198.5,3638475,1209006.9,509010.13,0,0,0,5189.6621 +930,1141,2004,2005,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,4.163722,4.3627,7,-4,-128.50954,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4.5943012,54.1,59.11,57.57,38.96,8.333333333333334,2,3,0,0,0,8,3,1,568,1011198.4,595585.75,463215.56,163638.7,867.74762,0,1752.6836 +930,1141,2005,2004,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.4861603,7.9462643,40,4,-225.93628,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5847358,8.2952957,57.57,38.96,54.1,59.11,5,2,3,0,0,0,8,3,1,568,1011198.4,595585.75,463215.56,163638.7,867.74762,0,1752.6836 +931,1142,2006,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.4037561,8.3357744,0,0,0,-972.73462,0,3,3,2021,9,0,44,45,1,0,0,12.763854,12.763854,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,6.666666666666667,3,4,0,0,7,4,5,1,2388,566545.19,241891.36,0,0,0,0,2049.3252 +932,1143,2007,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.8705,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,498,252786.86,0,229048.97,0,0,0,3141.8784 +933,1144,2008,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.9249001,6.881506,0,0,-999.87866,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8949618,6.8261266,48.25,54.77,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,79,643251.38,201595.73,144980.28,0,0,0,1400.2859 +934,1145,2009,-9,2011,2010,1,1,26,0,0,0,2,2,-9,0,3,8.16504,7.9727511,0,0,0,-938.53876,0,2,2,2021,10,0,40,40,1,0,1,8.1021538,8.1021538,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,419,-246935.86,0,0,0,0,0,1223.1783 +934,1146,2010,2011,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.4699545,8.4607897,0,11,3,-108.80736,0,2,2,2021,26,10,48,48,1,10,0,8.9511814,8.9511814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.27,50.25,47.28,59.36,6.666666666666667,1,1,0,0,11,9,5,1,1773.5,781638.88,235049.5,277529.25,0,6787.6011,0,3667.0693 +934,1146,2011,2010,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.6283112,8.0762215,0,11,-3,56.529987,0,3,3,2021,13,1,38,38,1,1,0,12.445026,12.445026,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.28,59.36,34.27,50.25,6.666666666666667,1,1,0,0,12,9,5,1,1773.5,781638.88,235049.5,277529.25,0,6787.6011,0,3667.0693 +935,1147,2012,2014,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,0,0,0,19,3,-60.057388,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.07,46.05,31.56,46,10,2,3,0,0,4,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2013,-9,2012,2014,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.0243,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2014,2012,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.8685045,8.0610647,0,19,-3,37.3167,0,3,1,2021,14,2,16,47,1,2,0,22.101278,22.101278,0,0,0,0,0,0,0,2,1,1,0,0,0,31.56,46,50.07,46.05,3.333333333333333,2,3,0,0,14,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2015,-9,2012,2014,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-914.11243,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,2,3,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2016,-9,2012,2014,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9651,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +936,1148,2017,-9,2019,2018,1,1,27,0,1,0,2,2,-9,0,4,8.1564026,7.7212133,0,0,0,-971.27124,-9,3,2,2021,22,10,40,0,1,10,1,7.3746896,7.3746896,0,0,0,0,0,0,0,0,1,1,0,0,0,38.09,56.81,-9,-9,1.666666666666667,2,3,0,0,2,8,4,0,85,6731.0254,0,0,0,0,0,1202.1479 +936,1149,2018,2019,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.0188389,7.8851666,0,1,3,-25.981926,-9,-9,-9,2021,9,0,40,0,1,1,0,8.8155479,8.8155479,0,0,.05,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,1,8,3,0,506.5,361960.5,71014.609,479922.03,83586.109,0,0,3304.8105 +936,1149,2019,2018,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,1,-3,86.238861,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,3,0,506.5,361960.5,71014.609,479922.03,83586.109,0,0,3304.8105 +937,1150,2020,2021,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,8.3576117,7.960742,0,11,-13,-12.352975,0,-9,-9,2021,4,0,38,38,1,0,0,12.780779,12.780779,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,52.4,52.91,10,2,3,0,0,13,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2021,2020,-9,-9,1,1,46,1,3,0,2,2,-9,0,3,5.0846453,5.2892861,0,11,13,26.114111,-9,-9,-9,2021,12,0,24,0,1,0,0,.78042352,.78042352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,49.35,59.64,10,2,3,0,0,7,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2022,-9,2020,2021,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.1427,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2023,-9,2020,2021,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.527,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2024,-9,2020,2021,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.87396,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +938,1151,2025,2026,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,9.2558327,8.7209911,0,20,1,87.08297,0,1,3,2021,8,0,45,45,1,0,0,25.988142,25.988142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,52.99,51.28,6.666666666666667,1,1,0,0,14,10,5,1,2189.5,117928.36,-16538.738,0,0,266.72943,0,5954.4902 +938,1151,2026,2025,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.5626359,7.8044858,0,20,-1,-1.637206,0,2,3,2021,9,0,22,22,1,0,0,9.5900879,9.5900879,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,50.4,55.04,6.666666666666667,1,1,0,0,14,10,5,1,2189.5,117928.36,-16538.738,0,0,266.72943,0,5954.4902 +939,1152,2027,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.5859013,7.6411257,0,0,-1063.0812,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9259453,7.6552768,51.77,58.57,-9,-9,10,1,1,0,0,0,9,3,1,352,274612.09,105182.31,157418.39,0,0,0,1514.0862 +940,1153,2028,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.4457884,7.7281122,7.6009011,0,0,-980.86908,0,-9,3,2021,10,2,56,30,1,2,0,3.407896,3.407896,.05,.05,.05,0,0,0,0,0,0,0,0,7.5906205,7.0310702,59.46,30.92,-9,-9,3.333333333333333,1,1,0,0,15,7,4,1,782,903818.19,451531.84,464567.53,0,0,0,1586.4185 +941,1154,2029,2030,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,8.2617197,8.1002979,48,0,24.801485,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2808726,8.1535177,62.39,56.71,39.56,32.11,8.333333333333334,1,1,0,0,4,7,4,1,1221,2402133,1622650,361681,0,0,0,3061.873 +941,1154,2030,2029,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.7157435,7.1158533,48,0,-42.221912,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.521755,7.002708,39.56,32.11,62.39,56.71,8.333333333333334,1,1,0,0,3,7,4,1,1221,2402133,1622650,361681,0,0,0,3061.873 +942,1155,2031,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6921844,8.7605228,0,0,0,-1101.0276,0,2,-9,2021,12,1,36,32,1,1,0,22.839252,22.839252,.05,.05,0,0,0,0,0,0,1,1,0,8.2451067,0,41.06,62.04,-9,-9,3.333333333333333,1,1,0,0,14,6,5,1,846,271984.47,2302.5029,0,0,0,0,4829.5371 +943,1156,2032,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.890995,7.7326798,0,0,0,-973.61829,0,2,2,2021,12,1,64,72,1,1,0,3.8488224,3.8488224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.76,40.19,-9,-9,3.333333333333333,1,1,0,0,11,7,4,0,1253,88466.656,131407.48,0,0,0,0,1152.5929 +944,1157,2033,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.1699047,8.3702116,0,0,0,-1090.1971,0,3,3,2021,21,9,8,37,1,9,0,38.311752,38.311752,.05,.05,0,0,0,0,0,7,0,0,0,0,0,24.23,51.4,-9,-9,3.333333333333333,2,3,0,1,14,8,4,1,264,-81650.406,-42634.102,0,0,0,5818.5942,915.93427 +945,1158,2034,2035,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,7,2,102.8682,0,3,3,2021,30,12,0,0,4,12,0,0,0,0,0,0,1,0,14.056623,0,0,1,1,0,0,0,35.85,20.32,47.66,52.33,0,1,1,0,0,0,6,2,1,564.5,197553.88,35579.371,291217.19,0,0,0,1597.4077 +945,1158,2035,2034,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,6.1284623,6.4345202,0,7,-2,-27.595453,0,3,3,2021,6,0,10,10,1,0,0,5.1535211,5.1535211,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,35.85,20.32,10,1,1,0,0,8,6,2,1,564.5,197553.88,35579.371,291217.19,0,0,0,1597.4077 +946,1159,2036,2037,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0053692,8.8190308,0,11,5,8.8671713,0,-9,-9,2021,11,0,45,40,1,0,0,15.811916,15.811916,.05,.05,.05,0,0,0,0,0,0,0,0,8.3482113,0,52.97,53.97,58.89,48.6,8.333333333333334,1,1,0,0,14,7,5,1,985,182577.25,154264.56,205729.19,81119.102,0,5755.7939,6671.3838 +946,1159,2037,2036,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,6.9304419,7.2031975,0,14,-5,43.581955,0,2,1,2021,11,0,30,5,1,0,0,5.9105887,5.9105887,0,0,0,0,0,0,0,2,0,0,0,8.0117998,0,58.89,48.6,52.97,53.97,0,2,3,0,0,7,7,5,1,985,182577.25,154264.56,205729.19,81119.102,0,5755.7939,6671.3838 +947,1160,2038,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,9.0590839,9.1458883,0,0,0,-1032.1437,0,2,2,2021,14,1,75,86,1,1,0,13.642204,13.642204,.05,.05,.05,0,0,0,0,0,0,0,0,1.8364042,0,59.15,42.12,-9,-9,5,2,3,0,0,4,6,5,0,503,119029.22,91196.461,0,0,0,0,3019.531 +948,1161,2039,2040,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,44,-6,0,0,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,25,36.93,56.27,5,1,1,0,1,0,10,1,0,513,170098,0,158047.42,0,0,0,2458.0469 +948,1161,2040,2039,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,44,6,0,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,36.93,56.27,38,25,6.666666666666667,1,1,0,0,0,10,1,0,513,170098,0,158047.42,0,0,0,2458.0469 +949,1162,2041,2042,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.5424118,8.7231026,0,1,2,117.59701,-9,-9,-9,2021,10,0,37,0,1,1,0,16.146299,16.146299,.05,.05,0,0,0,0,0,0,1,1,0,.60934031,0,49,58,49.36,58.53,7,1,1,0,0,1,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +949,1162,2042,2041,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,8.0319757,8.179471,0,1,-2,232.3437,0,-9,-9,2021,7,1,37,37,1,1,0,12.097062,12.097062,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,49,58,8.333333333333334,1,1,0,0,7,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +949,1162,2043,-9,2042,2041,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3031,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +950,1163,2044,2045,-9,-9,1,0,51,0,0,0,3,3,-9,0,5,6.6901617,6.9221554,0,6,2,7.5008464,-9,-9,-9,2021,6,0,20,0,1,0,0,4.458262,4.458262,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.77,47.78,6.666666666666667,1,1,0,0,1,5,3,1,662.5,291936.44,78547.266,205405.69,84512.328,0,0,1757.9415 +950,1163,2045,2044,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.7513628,8.1253605,0,6,-2,1.5890614,0,2,3,2021,5,1,50,55,1,1,0,6.9045467,6.9045467,0,0,.05,0,0,0,0,0,0,0,0,0,0,55.77,47.78,57.06,57.76,6.666666666666667,1,1,0,0,8,5,3,1,662.5,291936.44,78547.266,205405.69,84512.328,0,0,1757.9415 +951,1164,2046,-9,2048,2047,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1043.4108,-9,1,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1164,2047,2048,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4142456,8.4607649,0,8,-5,-82.078156,0,-9,-9,2021,8,0,36,36,1,0,0,16.683159,16.683159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.95,57.9,10,3,4,0,0,11,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1164,2048,2047,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7931643,9.117156,0,20,5,12.741189,0,2,-9,2021,11,1,50,70,1,1,0,17.335323,17.335323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.95,57.9,58.15,52.91,5,3,4,0,0,11,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1165,2049,-9,2048,2047,1,0,26,0,0,0,2,2,-9,0,3,8.2618294,8.2150688,0,0,0,-1049.7728,0,1,2,2021,17,5,50,30,1,5,1,9.9875908,9.9875908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,0,3,4,0,0,9,8,4,1,654,-2903.2053,55489.336,0,0,0,0,1589.6627 +952,1166,2050,-9,2051,2052,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.839,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2051,2052,-9,-9,1,0,23,0,2,0,3,3,-9,0,4,7.2858677,7.2555652,0,4,-5,85.307205,0,-9,-9,2021,8,2,30,28,1,2,0,6.2122974,6.2122974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,58.32,50.22,3.333333333333333,1,1,0,0,2,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2052,2051,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.335186,8.1449509,0,4,5,-85.833237,0,1,3,2021,1,0,50,60,1,0,0,10.20631,10.20631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,41.3,60.77,8.333333333333334,1,1,0,0,6,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2053,-9,2051,2052,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.6214,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1167,2054,-9,-9,-9,1,1,20,0,2,0,2,2,-9,0,3,7.2529101,7.3379254,0,0,0,-975.76764,0,-9,-9,2021,13,2,34,0,1,2,0,5.0858188,5.0858188,0,0,0,0,0,0,0,0,1,1,0,0,0,36.94,59.88,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,1547,0,0,0,0,0,0,1410.4207 +953,1168,2055,2056,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.004303,7.7803578,0,12,5,111.91569,0,-9,3,2021,13,1,39,39,1,1,0,9.5589104,9.5589104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.42,50.81,39.16,45.17,8.333333333333334,1,1,0,0,10,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1168,2056,2055,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1440916,8.2261696,0,12,-5,-30.45768,0,3,2,2021,13,1,42,39,1,1,0,9.25243,9.25243,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.16,45.17,48.42,50.81,6.666666666666667,1,1,0,0,2,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1168,2057,-9,2056,2055,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-890.36627,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1169,2058,-9,2056,2055,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-991.58514,-9,2,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,320,0,0,0,0,0,0,0 +954,1170,2059,2060,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.7694592,7.8791189,0,20,-1,47.170124,0,-9,-9,2021,8,0,37,40,1,0,0,8.3775063,8.3775063,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.41,44.88,10,1,1,0,0,9,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2060,2059,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.830472,8.9759617,0,22,1,-89.493294,0,-9,-9,2021,13,2,46,44,1,2,0,22.489254,22.489254,.05,.05,0,0,0,0,0,0,0,0,0,4.8092432,0,52.41,44.88,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2061,-9,2059,2060,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.00201,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2062,-9,2059,2060,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.41504,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +955,1171,2063,2064,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-5,-88.986526,0,-9,-9,2021,11,0,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,9,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +955,1171,2064,2063,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.1539679,8.474225,0,7,5,2.7579253,0,2,2,2021,10,0,40,40,1,1,0,7.7039762,7.7039762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,1,1,0,0,6,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +955,1171,2065,-9,2063,2064,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.3876,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +956,1172,2066,2067,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,0,7.4284239,6.9539237,12,1,59.343575,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1895771,43.21,47.68,44.4,55.03,8.333333333333334,1,1,1,0,11,2,4,1,926,94349.563,95853.859,0,0,0,1292.1191,2410.6873 +956,1172,2067,2066,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.2502451,8.2739706,0,12,-1,64.173721,0,2,2,2021,12,0,38,38,1,0,0,12.042628,12.042628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.4,55.03,43.21,47.68,6.666666666666667,1,1,0,0,13,2,4,1,926,94349.563,95853.859,0,0,0,1292.1191,2410.6873 +957,1173,2068,-9,-9,-9,1,1,52,0,0,0,2,2,0,0,3,0,7.6909151,7.5622029,0,0,-952.0885,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6332951,7.458406,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,117,491839.09,620347.69,0,0,0,0,2633.2019 +957,1174,2069,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8549366,7.7937298,0,0,0,-972.40448,0,-9,-9,2021,9,1,35,35,1,1,0,6.9827399,6.9827399,.05,.05,0,0,0,0,0,0,0,0,0,3.3726511,0,44.38,58.1,-9,-9,8.333333333333334,1,1,0,0,1,10,3,1,1958,-299625.19,0,0,0,0,0,847.30182 +958,1175,2070,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,5.4398718,5.428597,0,0,-1056.5272,0,3,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.6400328,0,31.75,30.43,-9,-9,5,1,1,0,0,0,12,2,0,815,207931.27,-26338.434,0,0,0,0,781.00977 +958,1176,2071,-9,2070,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1139.0026,1,3,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.89,51.11,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,1520,107319.66,0,0,0,0,0,0 +958,1177,2072,-9,2070,-9,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1048.146,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,1,0,394,0,0,0,0,0,0,642.48413 +959,1178,2073,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.6989746,7.0749841,0,0,-891.28278,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4734411,34.48,61.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,712,322519.25,178977.89,154767.94,0,0,0,228.14345 +960,1179,2074,2075,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6368275,8.2206631,0,7,-1,-176.91812,0,2,3,2021,11,0,40,40,1,0,0,12.0347,12.0347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,62.49,55.09,1.666666666666667,1,1,0,0,9,13,5,1,238,580302.25,471378.31,276337.91,112764.61,0,0,4408.6538 +960,1179,2075,2074,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.1857052,9.0748377,0,7,1,38.378281,0,2,2,2021,6,0,58,48,1,0,0,18.898371,18.898371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,43.42,62.33,6.666666666666667,1,1,0,0,9,13,5,1,238,580302.25,471378.31,276337.91,112764.61,0,0,4408.6538 +961,1180,2076,2077,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.4713631,8.2264977,0,6,-1,7.219243,0,2,2,2021,8,0,52,57,1,0,0,9.6429052,9.6429052,0,0,0,0,0,0,0,0,0,0,0,.92016405,0,46.4,59.87,51,56,8.333333333333334,1,1,0,0,7,9,5,1,1320,155689.75,43450.469,304012.5,145247.36,0,0,3110.1729 +961,1180,2077,2076,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.267519,8.4034157,0,6,1,-59.026009,0,-9,-9,2021,9,0,40,50,1,1,0,13.273065,13.273065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,46.4,59.87,8,1,1,0,0,1,9,5,1,1320,155689.75,43450.469,304012.5,145247.36,0,0,3110.1729 +962,1181,2078,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1087.587,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3353128,0,35.32,46.89,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,1720,-161884.69,0,0,0,0,0,2023.5568 +963,1182,2079,2083,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.3348904,8.233758,0,17,3,-4.950386,0,3,1,2021,11,0,40,42,1,0,0,14.166106,14.166106,.05,.05,0,0,0,0,0,0,1,1,0,4.1183958,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2080,-9,2083,2079,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.13007,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2081,-9,2083,2079,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3754,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2082,-9,2083,2079,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.79877,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2083,2079,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.451386,7.5188241,0,16,-3,-125.80962,0,1,2,2021,6,0,30,24,1,0,0,7.4153609,7.4153609,.05,.05,0,0,0,0,0,0,1,1,0,2.3880267,0,57.06,57.76,54.37,54.8,10,1,1,0,0,7,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +964,1183,2084,2087,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1442828,7.0678377,0,5,-3,-68.255936,0,-9,-9,2021,9,1,16,16,1,1,0,9.2804346,9.2804346,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.22,49.89,8.333333333333334,2,3,0,0,9,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2085,-9,2084,2087,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.09326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2086,-9,2084,2087,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.839,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2087,2084,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.8782187,8.0102882,0,5,3,-22.589216,0,-9,-9,2021,5,1,49,0,1,1,0,7.5868235,7.5868235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,49.89,48.87,58.55,10,2,3,0,0,6,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +965,1184,2088,2090,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.1038551,8.0308771,0,2,10,-37.089256,0,3,3,2021,11,0,40,40,1,0,0,7.1057281,7.1057281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,56.18,53.85,10,1,1,0,0,7,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +965,1184,2089,-9,2090,2088,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.9786,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +965,1184,2090,2088,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,8.1839867,8.2678003,0,2,-10,-3.4286101,0,3,2,2021,10,0,43,43,1,0,0,8.4068022,8.4068022,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,52,54.51,8.333333333333334,1,1,0,0,9,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +966,1185,2091,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.1412354,7.2755408,0,0,-1051.053,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95838082,7.2168441,47.55,25.92,-9,-9,5,1,1,0,0,0,12,3,1,833,528917.5,170480.36,124229.24,0,0,0,999.16504 +967,1186,2092,2093,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.144928,8.9813042,0,12,4,-102.98577,0,2,2,2021,8,0,46,45,1,0,0,19.850714,19.850714,.05,.05,0,0,0,0,0,0,1,1,0,3.2074053,0,49.41,58.28,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1186,2093,2092,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.5837708,8.4631453,0,12,-4,-36.768967,0,2,1,2021,7,0,41,42,1,0,0,18.170954,18.170954,.05,.05,0,0,0,0,0,0,1,1,0,6.2204547,0,57.16,56.15,49.41,58.28,10,1,1,0,0,13,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1186,2094,-9,2093,2092,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8496,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1187,2095,-9,2093,2092,1,1,18,0,1,0,2,2,-9,0,4,7.3287287,7.5927415,0,0,0,-1017.165,0,2,2,2021,11,0,12,0,1,0,1,20.216417,20.216417,0,0,0,0,0,0,0,0,1,1,0,7.3810973,0,38.4,56.8,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,299,36755.082,0,0,0,0,5056.3809,1828.8625 +968,1188,2096,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.9786348,6.2446804,0,0,-1045.8512,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8525338,6.1619711,52.25,34.48,-9,-9,5,1,1,0,0,0,2,2,1,279,135842.17,50388.82,99463.969,0,0,0,757.64502 +969,1189,2097,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,6.7257161,6.5781622,0,0,0,-1122.8397,0,-9,-9,2021,27,9,16,16,1,9,0,6.2858658,6.2858658,0,0,0,0,0,0,0,0,1,1,0,1.667363,0,29.96,53.03,-9,-9,0,1,1,0,1,5,10,2,0,704,-13469.594,0,0,0,0,1742.0612,1578.672 +970,1190,2098,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-950.99811,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8985562,0,57.16,56.15,-9,-9,10,1,1,0,0,11,12,1,1,183,42056.027,0,135982.22,0,0,0,1041.5608 +971,1191,2099,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-988.42029,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,-9,-9,3.333333333333333,1,1,0,0,1,5,1,1,276,195241.33,0,97559.008,0,0,0,1045.8562 +972,1192,2100,2101,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.680295,7.8133531,0,13,-2,30.280081,0,3,3,2021,11,0,10,5,1,0,0,18.960285,18.960285,.05,.05,0,0,0,0,0,0,0,0,0,7.198451,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,5,3,1,558.5,18295.006,72998.07,0,0,0,0,2015.5115 +972,1192,2101,2100,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,5.6198006,5.663466,0,13,2,80.415123,-9,3,3,2021,12,0,40,0,1,0,0,.92284036,.92284036,.05,.05,0,0,0,0,0,0,0,0,0,5.1121912,0,57.16,56.15,54.2,57.49,5,1,1,0,0,10,5,3,1,558.5,18295.006,72998.07,0,0,0,0,2015.5115 +973,1193,2102,-9,-9,-9,1,1,97,0,0,0,2,2,-9,0,3,0,6.071393,5.59583,0,0,-1034.0729,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0045156,0,0,1,1,0,0,5.9807649,45.59,23.67,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,714,305612.34,19162.922,77711.008,0,0,0,1192.3118 +974,1194,2103,-9,2106,2105,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-824.07867,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2104,-9,2106,2105,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.36676,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2105,2106,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.5311241,8.4801655,0,20,2,-43.91087,0,2,2,2021,9,1,38,38,1,1,0,13.353398,13.353398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,36.32,61.46,8.333333333333334,1,1,0,0,9,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2106,2105,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3789892,8.2116718,0,20,-2,-69.953491,0,2,3,2021,14,3,50,47,1,3,0,7.2323818,7.2323818,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.32,61.46,56.47,59.4,6.666666666666667,1,1,0,0,10,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +975,1195,2107,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.2727909,8.3294163,0,0,0,-1018.3871,0,2,2,2021,23,7,50,70,1,7,0,8.8899908,8.8899908,0,0,0,0,0,0,0,7,0,0,0,0,0,39.99,62.58,-9,-9,6.666666666666667,1,1,0,0,12,4,4,0,508,1986060.8,1145407.3,0,0,5587.0435,0,2245.814 +976,1196,2108,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1003.1758,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,34.46,56.19,-9,-9,6.666666666666667,1,1,0,0,9,7,1,0,506,81382.133,73283.797,0,0,0,0,477.91306 +976,1197,2109,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-899.21783,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,1,0,8.3874989,0,2,1,0,1,0,0,50.67,24.09,-9,-9,5,1,1,0,0,0,7,1,0,334,-278629.5,0,0,0,0,0,684.34552 +977,1198,2110,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.14172,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.74,43.61,-9,-9,5,1,1,0,0,7,11,1,1,514,106741.99,0,0,0,0,0,1024.3842 +978,1199,2111,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.7598548,7.8191843,6.1276736,0,0,-903.80713,0,-9,-9,2021,18,6,33,34,1,6,0,8.638505,8.638505,0,0,0,0,0,0,0,0,0,0,0,6.6663671,0,38.49,62.46,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,231,171855.39,-55991.461,0,0,0,0,1648.7371 +979,1200,2112,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,4.9629493,4.7722621,0,0,-1015.306,-9,2,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3927555,0,43.97,60.95,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,260,227664.2,0,0,0,0,0,629.96332 +980,1201,2113,2114,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.9660053,5.5458784,51,-1,-87.423218,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,17.489305,0,0,1,1,0,0,5.6409426,47.48,40.69,43.4,31.71,8.333333333333334,1,1,0,0,6,5,2,1,321,296851.5,73842.516,73487.766,0,0,0,1009.5612 +980,1201,2114,2113,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.6300459,5.6651244,52,1,-2.5610552,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,8.9050026,0,0,1,1,0,5.2255983,5.410933,43.4,31.71,47.48,40.69,6.666666666666667,1,1,0,0,8,5,2,1,321,296851.5,73842.516,73487.766,0,0,0,1009.5612 +981,1202,2115,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.3352218,7.2801051,0,0,0,-967.42957,0,3,3,2021,26,12,32,40,1,12,0,6.0840735,6.0840735,0,0,0,0,0,0,0,0,0,0,0,0,0,25.95,41.21,-9,-9,3.333333333333333,1,1,0,0,10,2,3,1,507,50514.094,-36476.473,0,0,0,0,1221.9995 +982,1203,2116,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6975803,8.6829071,0,0,0,-977.70532,0,3,1,2021,11,1,59,36,1,1,0,15.298935,15.298935,.05,.05,0,0,0,0,0,67,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,3,4,0,1,10,8,5,1,830,-60872.582,-53299.195,0,0,580.87988,0,2651.0747 +982,1204,2117,-9,2116,-9,1,1,31,0,0,0,1,1,-9,0,5,5.7749934,6.0108514,0,0,0,-957.99615,0,2,-9,2021,11,0,41,0,1,0,1,1.3097051,1.3097051,0,0,0,0,0,0,0,0,1,1,0,0,0,50.22,45.72,-9,-9,6.666666666666667,3,4,0,0,2,8,2,1,1042,-319765.31,0,0,0,0,0,1017.6369 +983,1205,2118,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.854938,6.6863723,0,0,0,-846.30847,0,3,3,2021,12,1,18,16,1,1,0,8.5149727,8.5149727,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,4,9,2,0,247.5,130785.2,-20189.674,0,0,805.77527,0,1398.6753 +983,1205,2119,-9,2118,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.65094,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,247.5,130785.2,-20189.674,0,0,805.77527,0,1398.6753 +984,1206,2120,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.5873299,8.2928982,0,0,0,-1058.3138,0,2,2,2021,12,0,38,37,1,0,0,14.647552,14.647552,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,367,31784.221,0,0,0,0,0,2028.9731 +985,1207,2121,2122,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.685626,8.6437654,0,17,-2,-167.98679,0,2,2,2021,9,0,37,32,1,0,0,16.747189,16.747189,.05,.05,0,0,0,0,0,0,1,1,0,6.7532563,0,54.1,59.11,58.15,52.91,8.333333333333334,1,1,0,0,7,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +985,1207,2122,2121,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.6973538,7.2875996,0,19,2,105.64539,0,2,2,2021,6,0,40,40,1,0,0,4.3235126,4.3235126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.1,59.11,8.333333333333334,1,1,0,0,11,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +985,1207,2123,-9,2121,2122,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6769,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +986,1208,2124,-9,2127,2125,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.886,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2125,2127,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.5387669,8.453311,0,7,0,-92.808823,0,1,2,2021,10,2,35,35,1,2,0,16.427765,16.427765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,42.66,51.44,53.27,6.666666666666667,1,1,0,0,9,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2126,-9,2127,2125,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.1238,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2127,2125,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.8744478,9.1032991,0,7,0,16.170774,0,-9,-9,2021,13,4,35,37,1,4,0,25.091045,25.091045,.05,.05,0,0,0,0,0,0,1,1,0,6.7712402,0,51.44,53.27,43.67,42.66,7,1,1,0,0,11,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +987,1209,2128,2131,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.2110214,7.6357155,0,16,-3,-75.845955,0,2,2,2021,10,0,2,2,1,0,0,103.10638,103.10638,.05,.05,0,0,0,0,0,0,1,1,0,2.9268289,0,46.39,52.95,45,53.85,10,1,1,0,0,6,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2129,-9,2128,2131,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.62378,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2130,-9,2128,2131,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.60022,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2131,2128,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.1540499,9.1335831,0,16,3,64.475632,0,2,2,2021,9,2,40,45,1,2,0,27.410814,27.410814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,53.85,46.39,52.95,8.333333333333334,1,1,0,0,10,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +988,1210,2132,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.9718475,6.1120343,0,0,-927.62592,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1214521,6.0287962,63.26,42.53,-9,-9,5,1,1,0,0,0,9,2,0,753,49354.102,85410.234,0,0,0,0,1578.928 +989,1211,2133,2134,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.180851,7.013381,46,14,35.02504,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9544535,47.5,37.66,41.09,60.69,8.333333333333334,1,1,0,0,9,7,2,1,940,552513.5,170703.72,236122.19,0,0,0,1937.6913 +989,1211,2134,2133,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,12,-14,-23.501383,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.2725928,0,41.09,60.69,47.5,37.66,6.666666666666667,1,1,0,0,10,7,2,1,940,552513.5,170703.72,236122.19,0,0,0,1937.6913 +990,1212,2135,2136,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.811142,9.169116,0,6,3,10.627094,0,3,3,2021,3,0,40,40,1,0,0,19.187407,19.187407,.05,.05,0,0,0,0,0,0,0,0,0,4.8849912,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,5,5,1,547.5,869940.25,517580.44,238151,0,3441.1616,0,5940.6113 +990,1212,2136,2135,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.6662645,8.6662893,0,6,-3,28.126703,0,2,2,2021,7,0,30,30,1,0,0,18.038347,18.038347,.05,.05,0,0,0,0,0,0,0,0,0,7.3703742,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,1,547.5,869940.25,517580.44,238151,0,3441.1616,0,5940.6113 +990,1213,2137,-9,2136,2135,1,1,21,0,0,1,2,0,0,0,5,0,6.8302169,7.421587,0,0,-1062.8871,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9144187,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,1355,120203.09,0,0,0,0,0,804.82349 +990,1214,2138,-9,2136,2135,1,1,20,0,0,0,2,2,-9,0,4,8.4067364,8.8600197,0,0,0,-1111.9264,0,2,1,2021,9,0,70,70,1,0,1,7.4673452,7.4673452,0,0,0,0,0,0,0,0,0,0,0,3.9870815,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,216,-40782.223,0,0,0,0,0,1240.9357 +990,1215,2139,-9,2136,2135,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.81757,-9,2,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.42676798,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,524,45573.547,0,0,0,0,0,474.43607 +991,1216,2140,2141,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.5458126,6.4691191,55,8,-58.075565,-9,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9947348,6.3530664,55,45,49.27,32.35,8,1,1,0,0,0,12,3,1,487.5,254277.59,222317.28,61236.391,0,2097.4971,0,3379.188 +991,1216,2141,2140,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.4306912,7.5250273,7,-8,10.263474,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9988956,0,0,1,1,0,5.2510457,7.3424392,49.27,32.35,55,45,8.333333333333334,1,1,0,0,0,12,3,1,487.5,254277.59,222317.28,61236.391,0,2097.4971,0,3379.188 +992,1217,2142,-9,2144,2143,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1115.0265,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1217,2143,2144,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.3590364,8.7630558,0,24,4,75.150215,0,3,2,2021,9,1,45,48,1,1,0,13.09114,13.09114,0,0,0,0,0,0,0,0,1,1,0,1.9484998,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,14,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1217,2144,2143,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.1443834,8.3672304,0,24,-4,-182.63989,0,2,2,2021,7,0,40,42,1,0,0,9.1980257,9.1980257,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,15,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1218,2145,-9,2144,2143,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-956.27271,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,686,-92333.109,0,0,0,0,0,0 +993,1219,2146,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.0061698,7.0460606,0,0,-964.6944,0,3,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.702471,6.8054047,59.71,50.89,-9,-9,10,1,1,0,0,0,10,2,1,727,799958.44,463209.53,30998.105,0,0,0,1560.0643 +994,1220,2147,2148,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6909122,8.5890942,0,5,-2,-42.258831,0,2,2,2021,22,9,36,45,1,9,0,20.55615,20.55615,.05,.05,0,0,0,0,0,0,0,0,0,3.0218072,0,32.61,64.90000000000001,40.64,52.96,6.666666666666667,1,1,0,0,8,11,5,1,756.5,175722.75,108425.59,94781.414,63537.805,-1066.4336,951.57483,2634.9622 +994,1220,2148,2147,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,7.6868272,7.4618816,0,5,2,88.681328,0,-9,-9,2021,13,1,45,50,1,1,0,5.1564956,5.1564956,.05,.05,0,0,0,0,0,0,0,0,0,.7752471,0,40.64,52.96,32.61,64.90000000000001,6.666666666666667,1,1,0,0,9,11,5,1,756.5,175722.75,108425.59,94781.414,63537.805,-1066.4336,951.57483,2634.9622 +995,1221,2149,2151,-9,-9,1,0,39,1,2,0,3,3,-9,1,5,0,0,0,5,3,107.96122,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.96,56.86,22.54,64.51000000000001,5,1,1,1,1,0,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1221,2150,-9,2149,2151,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6138,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1221,2151,2149,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,6.5609264,6.7653093,0,5,-3,-4.8098822,-9,-9,-9,2021,8,2,50,0,1,2,0,1.8708833,1.8708833,0,0,0,0,0,0,.021292517,0,1,0,1,0,0,22.54,64.51000000000001,56.96,56.86,3.333333333333333,1,1,0,0,12,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1222,2152,-9,2149,-9,1,1,18,1,2,0,2,2,-9,0,5,0,0,0,0,0,-977.55322,-9,3,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.53,57.01,-9,-9,5,1,1,1,1,0,10,1,0,327,-53944.652,0,0,0,0,0,0 +996,1223,2153,2154,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.4946256,7.6031594,0,11,1,112.07319,0,2,-9,2021,15,3,20,20,1,3,0,10.040042,10.040042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.59,48.97,51.48,48.31,6.666666666666667,1,1,0,0,12,13,5,1,656,220729.34,179138.81,242169.88,141573.31,0,6069.4888,2858.4082 +996,1223,2154,2153,-9,-9,1,1,45,0,1,0,3,3,-9,0,2,8.8691492,8.5227299,0,11,-1,33.686317,0,2,2,2021,7,0,48,48,1,0,0,14.565401,14.565401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.48,48.31,34.59,48.97,8.333333333333334,1,1,0,0,12,13,5,1,656,220729.34,179138.81,242169.88,141573.31,0,6069.4888,2858.4082 +997,1224,2155,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.1860952,7.1530075,0,0,-1031.1754,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9126649,7.1260977,62.49,55.09,-9,-9,10,1,1,0,0,0,13,2,1,1291,415222.63,167099.56,79135.555,33034.324,2987.1907,0,2111.3557 +998,1225,2156,2157,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.6040096,7.6513023,20,3,-30.269445,0,3,3,2021,6,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.881115,62.49,55.09,47.42,42,10,1,1,0,0,8,5,4,1,745,1813615.8,776842.63,448126.25,0,0,0,2829.1143 +998,1225,2157,2156,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.4217162,7.6875954,22,-3,-91.213531,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0261149,7.6120324,47.42,42,62.49,55.09,8.333333333333334,1,1,0,0,4,5,4,1,745,1813615.8,776842.63,448126.25,0,0,0,2829.1143 +999,1226,2158,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.6310825,7.4588642,0,0,-1010.2551,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.033460911,7.9851093,47.27,45.7,-9,-9,10,1,1,0,0,0,9,3,1,486,368704.91,113596.81,245521.28,0,0,0,1338.6833 +1000,1227,2159,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.4359407,7.1293554,0,0,-996.48041,-9,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0869684,7.6458921,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1671,613453.81,442957.41,122970.25,0,0,0,1168.6431 +1001,1228,2160,-9,2161,2162,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79626,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1001,1228,2161,2162,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.581109,9.2937632,0,7,-1,-104.80537,0,3,3,2021,13,3,83,43,1,3,0,17.581388,17.581388,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.91,53.27,8.333333333333334,1,1,0,0,8,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1001,1228,2162,2161,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,9.0866852,9.0266027,0,7,1,81.689522,0,2,3,2021,6,0,37,37,1,0,0,21.762733,21.762733,.05,.05,0,0,0,0,0,0,0,0,0,1.040029,0,51.91,53.27,54.1,59.11,10,1,1,0,0,8,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1002,1229,2163,2164,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,0,0,25,11,74.736992,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.5885492,0,60.6,43.75,60.29,52.11,8.333333333333334,1,1,0,0,0,7,3,1,536,130078.33,22747.801,0,0,0,0,1487.5767 +1002,1229,2164,2163,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9236889,7.8250179,0,25,-11,54.25539,0,2,2,2021,7,0,38,35,1,0,0,7.2985044,7.2985044,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.6,43.75,8.333333333333334,1,1,0,0,14,7,3,1,536,130078.33,22747.801,0,0,0,0,1487.5767 +1003,1230,2165,2166,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,49,5,47.403969,0,2,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,76.633064,0,0,1,1,0,0,0,38.97,17.84,55.2,41.97,5,1,1,0,0,0,12,2,0,174.5,1215636.5,336270.94,252720.78,0,0,0,1325.8203 +1003,1230,2166,2165,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.3478904,7.3805814,0,49,-5,46.176666,0,3,3,2021,6,0,36,32,1,0,0,6.2789674,6.2789674,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,41.97,38.97,17.84,1.666666666666667,1,1,0,0,13,12,2,0,174.5,1215636.5,336270.94,252720.78,0,0,0,1325.8203 +1004,1231,2167,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3658361,8.3773174,0,0,0,-952.1012,0,3,3,2021,5,0,37,37,1,0,0,11.85917,11.85917,.05,.05,0,0,0,0,0,0,1,1,0,4.0940027,0,45.3,52.04,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1231,62905.484,89484.039,183829.27,62262.043,1687.0387,0,2617.0972 +1005,1232,2168,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.5901818,6.7771559,0,0,-952.94891,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8300676,6.9692473,53.25,42.89,-9,-9,5,1,1,0,0,12,13,2,1,1174,278473.34,15302.328,226168.88,0,2492.2441,0,1772.0684 +1006,1233,2169,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.2866879,8.4441729,0,0,0,-994.37457,-9,3,2,2021,15,3,46,0,1,3,0,11.091758,11.091758,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.51,50.05,-9,-9,3.333333333333333,1,1,0,1,13,8,4,0,342,-107716.21,-12507.767,0,0,0,0,1746.4847 +1007,1234,2170,2171,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.7912774,7.6610579,41,-1,-65.288361,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5309508,7.8040261,49.04,55.86,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,1020.5,2953326.5,2113185,131172.39,0,0,0,6993.873 +1007,1234,2171,2170,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,9.2128935,9.1430559,41,1,43.521065,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5048933,9.1173182,54.1,59.11,49.04,55.86,8.333333333333334,1,1,0,0,11,11,5,1,1020.5,2953326.5,2113185,131172.39,0,0,0,6993.873 +1007,1235,2172,-9,2171,2170,1,0,25,0,0,0,1,1,-9,0,4,8.2068644,8.3217487,0,0,0,-975.83673,0,1,1,2021,13,3,38,41,1,3,0,12.001525,12.001525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,7,11,4,1,459,54129.41,14155.065,0,0,-3425.405,0,1520.5908 +1007,1236,2173,-9,2171,2170,1,0,24,0,0,0,1,1,-9,0,3,7.8896451,7.5277224,0,0,0,-940.22693,0,1,1,2021,16,4,38,23,1,4,0,6.8022733,6.8022733,0,0,0,0,0,0,0,0,0,0,0,0,0,20.51,66.12,-9,-9,1.666666666666667,1,1,0,1,6,11,3,1,2091,-94089.453,0,0,0,0,0,735.55591 +1008,1237,2174,-9,2175,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6866,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,511.5,130017.7,177822.08,257537.84,189354.59,207.83319,0,2687.5344 +1008,1237,2175,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.3054771,8.4929895,7.3992734,0,0,-1125.3923,0,2,2,2021,8,0,39,37,1,0,0,12.02736,12.02736,.05,.05,0,0,0,0,0,0,1,1,0,7.1036348,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,511.5,130017.7,177822.08,257537.84,189354.59,207.83319,0,2687.5344 +1009,1238,2176,2177,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.3428512,7.1455183,0,30,8,1.636059,0,2,2,2021,7,0,24,30,1,0,0,7.6202006,7.6202006,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.99,55.83,8.333333333333334,1,1,0,0,15,6,4,1,153,1148493.5,808817.5,239251.88,23780.563,0,0,3134.8601 +1009,1238,2177,2176,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0997143,8.1671667,5.603601,30,-8,-9.9308977,0,3,3,2021,10,0,54,36,1,0,0,7.3915105,7.3915105,0,0,0,0,0,0,0,0,1,1,0,.016490998,5.7183175,39.99,55.83,57.16,56.15,8.333333333333334,1,1,0,0,14,6,4,1,153,1148493.5,808817.5,239251.88,23780.563,0,0,3134.8601 +1009,1239,2178,-9,2177,2176,1,1,35,0,0,0,2,2,-9,0,4,8.6176853,8.8410149,0,0,0,-961.02045,-9,2,3,2021,7,1,49,0,1,1,1,10.281811,10.281811,0,0,0,0,0,0,0,0,1,1,0,.062061582,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,6,5,1,87,-121241.6,54461.5,0,0,0,-621.20044,2723.6199 +1010,1240,2179,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.5312853,7.9090967,0,0,0,-978.92041,0,-9,-9,2021,9,0,35,36,1,0,0,6.8495235,6.8495235,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,740,138252.88,0,0,0,0,0,1760.3033 +1011,1241,2180,2181,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,40,1,-8.4607162,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7100873,0,50,47,58.15,52.91,7,1,1,0,0,0,13,3,1,263,520710.88,488113.44,170189.67,0,0,0,3229.1489 +1011,1241,2181,2180,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.2363405,7.2621279,40,-1,32.934948,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.789762,7.7817445,58.15,52.91,50,47,8.333333333333334,1,1,0,0,0,13,3,1,263,520710.88,488113.44,170189.67,0,0,0,3229.1489 +1012,1242,2182,2183,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,10,4,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.10688934,0,53,46,32.92,29.8,7,1,1,0,0,0,7,1,0,137.5,195043.2,71718.531,69413.984,0,0,0,2617.665 +1012,1242,2183,2182,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,52,-4,0,0,2,-9,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,7,1,0,1,0,0,32.92,29.8,53,46,5,1,1,0,0,0,7,1,0,137.5,195043.2,71718.531,69413.984,0,0,0,2617.665 +1013,1243,2184,-9,-9,-9,1,0,20,0,0,0,2,2,-9,1,3,7.8089852,7.9122496,0,0,0,-1042.2759,0,-9,-9,2021,6,1,62,62,1,1,0,6.3172741,6.3172741,0,0,0,0,0,0,0,0,1,1,0,6.524529,0,32.65,56.8,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,99,13157.353,0,0,0,3413.0354,0,949.23914 +1014,1244,2185,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.795764,8.36938,0,0,0,-1019.2202,0,2,-9,2021,25,10,20,20,1,10,0,27.489298,27.489298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.96,25.37,-9,-9,0,2,3,0,0,9,5,5,0,305,232657.52,385233.81,19622.295,0,0,0,2853.8972 +1015,1245,2186,2187,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7252984,7.9874249,0,30,-11,-39.960785,0,2,-9,2021,9,0,30,31,1,0,0,8.4033556,8.4033556,0,0,.05,0,0,0,0,2,1,1,0,2.4701018,0,52.06,51.69,59.86,48.06,8.333333333333334,1,1,0,0,13,5,5,1,780,1899460.6,1089139.8,272065.34,0,0,0,4435.749 +1015,1245,2187,2186,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9465714,8.8302603,5.4137511,10,11,100.4646,0,-9,-9,2021,6,0,30,30,1,0,0,27.992687,27.992687,0,0,.05,0,0,0,0,0,1,1,0,5.5603242,5.8752751,59.86,48.06,52.06,51.69,8.333333333333334,1,1,0,1,2,5,5,1,780,1899460.6,1089139.8,272065.34,0,0,0,4435.749 +1015,1246,2188,-9,2186,2187,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1100.0974,-9,1,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3316732,0,61.85,44.55,-9,-9,10,1,1,0,0,2,5,1,1,363,85495.555,0,0,0,-566.11993,0,354.77103 +1016,1247,2189,2190,-9,-9,1,1,70,0,1,0,2,2,-9,0,2,0,6.3427024,6.4145794,8,8,-68.409157,0,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2056894,37.36,38.59,46.97,28.63,8.333333333333334,2,3,0,1,0,6,2,1,312,112073.37,0,127470.14,0,0,0,717.49011 +1016,1247,2190,2189,-9,-9,1,0,62,0,1,0,2,2,-9,0,4,0,0,0,38,-8,48.630428,0,3,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.97,28.63,37.36,38.59,3.333333333333333,2,3,0,1,0,6,2,1,312,112073.37,0,127470.14,0,0,0,717.49011 +1016,1248,2191,-9,2190,2189,1,1,32,0,1,0,2,2,-9,0,3,8.1846113,8.4747448,0,0,0,-983.17206,0,2,2,2021,23,7,35,45,1,7,1,14.286865,14.286865,.05,.05,0,0,0,0,0,0,1,1,0,1.6387513,0,42.92,50.88,-9,-9,5,2,3,0,1,10,6,4,1,1020,-50892.035,18809.225,0,0,0,0,709.06622 +1016,1249,2192,2194,2190,2189,1,1,35,0,1,0,1,1,-9,0,5,9.1758718,9.1105881,0,5,-1,-86.297424,0,2,2,2021,18,6,43,48,1,6,0,22.745358,22.745358,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.59,50.76,36.05,32.03,3.333333333333333,2,3,0,0,4,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1016,1249,2193,-9,2194,2192,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.71259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1016,1249,2194,2192,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,5,1,.78255635,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.05,32.03,33.59,50.76,1.666666666666667,4,3,0,0,0,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1017,1250,2195,2196,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7481947,6.788043,40,-3,1.2485206,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5727525,59.31,49.81,53,46,10,1,1,0,0,0,12,2,1,186.5,641675.88,285513.69,364564.56,0,0,0,1571.2111 +1017,1250,2196,2195,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.858294,6.8756747,40,3,-35.408993,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6263084,53,46,59.31,49.81,8,1,1,0,0,0,12,2,1,186.5,641675.88,285513.69,364564.56,0,0,0,1571.2111 +1018,1251,2197,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5487547,8.7852907,0,0,0,-926.20221,0,1,2,2021,11,1,43,43,1,1,0,13.488997,13.488997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,8.333333333333334,1,1,0,0,15,7,5,1,742,572671,221089.77,263799.72,104295.37,0,0,1815.9482 +1018,1252,2198,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.6102724,8.7628241,0,0,0,-959.99182,0,-9,-9,2021,9,0,60,54,1,0,0,11.413902,11.413902,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.82,45.53,-9,-9,8.333333333333334,1,1,0,0,3,7,5,1,987,634914.69,228802.08,301868.25,0,0,0,2373.1885 +1019,1253,2199,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5527411,8.1380348,0,0,0,-1013.4211,0,-9,-9,2021,17,5,38,37,1,5,0,15.811683,15.811683,.05,.05,0,0,0,0,0,0,0,0,0,2.312922,0,30.94,61.65,-9,-9,5,1,1,0,0,8,6,5,0,376,59313.355,21978.6,0,0,0,0,2285.9204 +1020,1254,2200,-9,2201,-9,1,0,36,0,0,0,2,2,-9,0,5,8.0937424,7.9736447,0,0,0,-1013.0667,0,3,2,2021,6,0,1,38,1,0,0,345.63577,345.63577,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,786,89470.008,28872.563,0,0,0,0,815.66278 +1020,1255,2201,2202,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,8.762682,9.1063347,0,8,-5,-19.81518,0,3,3,2021,8,0,42,47,1,0,0,24.336992,24.336992,0,0,0,0,0,0,0,0,1,1,0,0,0,58.72,51.29,60.91,51.93,8.333333333333334,1,1,0,0,11,5,5,1,770,1697450.3,1275324.4,309869.31,-8285.0869,0,0,3495.6338 +1020,1255,2202,2201,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,0,0,8,5,-60.061676,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.91,51.93,58.72,51.29,8.333333333333334,1,1,0,0,0,5,5,1,770,1697450.3,1275324.4,309869.31,-8285.0869,0,0,3495.6338 +1021,1256,2203,2204,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-5,-9.990819,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7133961,0,52.9,28.12,62.64,26.9,6.666666666666667,4,5,0,0,0,8,2,1,465,96544.422,210419.47,0,0,0,0,1816.2002 +1021,1256,2204,2203,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.561502,6.4586039,6,5,-1.2246907,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4541988,62.64,26.9,52.9,28.12,6.666666666666667,1,1,0,0,0,8,2,1,465,96544.422,210419.47,0,0,0,0,1816.2002 +1022,1257,2205,2206,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.1890955,7.0382419,48,-6,-135.89809,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6223383,7.294642,40.29,42.14,63.24,42.39,3.333333333333333,1,1,0,0,4,2,3,1,832,670268.38,433675.06,100937.57,0,0,0,3483.4644 +1022,1257,2206,2205,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.2293439,7.3639822,48,6,37.092003,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.74405,7.3566628,63.24,42.39,40.29,42.14,8.333333333333334,1,1,0,0,4,2,3,1,832,670268.38,433675.06,100937.57,0,0,0,3483.4644 +1023,1258,2207,2208,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.1960268,6.9063263,10,3,-54.481323,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.583828,52,47,40.48,24.59,7,1,1,0,0,0,6,2,1,1351,737782,136578.47,614364.5,0,0,0,2276.0732 +1023,1258,2208,2207,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,10,-3,-14.121837,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,8.49687,0,0,1,1,0,0,0,40.48,24.59,52,47,8.333333333333334,1,1,0,0,0,6,2,1,1351,737782,136578.47,614364.5,0,0,0,2276.0732 +1024,1259,2209,2211,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.7545338,9.720088,0,15,-1,24.951065,0,2,2,2021,16,6,50,42,1,6,0,40.363853,40.363853,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.14,64.63,22.58,64.03,8.333333333333334,1,1,0,0,10,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2210,-9,2211,2209,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-777.95856,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2211,2209,-9,-9,1,0,56,0,2,0,1,1,-9,0,4,9.8838882,9.5442581,0,35,1,-57.409508,0,2,1,2021,18,6,17,17,1,6,0,130.29543,130.29543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.58,64.03,33.14,64.63,8.333333333333334,1,1,0,0,10,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2212,-9,2211,2209,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.616,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1025,1260,2213,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0393391,6.8327422,0,0,-955.75165,0,3,2,2021,26,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.769464,22.47,48.93,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,338,28201.752,84239.891,0,0,0,0,1288.9235 +1026,1261,2214,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7665148,8.0645838,0,0,-1136.1969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2071891,7.8706117,58.33,47.36,-9,-9,10,1,1,0,0,4,1,4,1,583,794097.63,560435.63,117502.93,0,0,0,2754.1196 +1027,1262,2215,2216,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,5.8943129,6.0629172,4.3460369,20,8,31.218914,0,3,2,2021,27,11,20,10,1,11,0,1.967696,1.967696,.05,.05,0,0,0,0,0,0,1,1,0,6.6081038,4.1300831,38.84,24.41,48.88,46.26,3.333333333333333,1,1,0,0,11,10,4,1,481,405553.38,282522.09,172503.09,0,1103.5148,0,3818.6714 +1027,1262,2216,2215,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1457243,8.4447079,7.3171134,19,-8,-81.694542,0,3,3,2021,11,0,33,40,1,0,0,13.598871,13.598871,.05,.05,0,0,0,0,0,0,1,1,0,.3634266,7.993495,48.88,46.26,38.84,24.41,8.333333333333334,1,1,0,0,11,10,4,1,481,405553.38,282522.09,172503.09,0,1103.5148,0,3818.6714 +1027,1263,2217,-9,2215,2216,1,1,35,0,0,0,1,1,-9,0,4,7.6744471,7.5038238,0,0,0,-959.64606,0,2,2,2021,10,0,30,28,1,0,1,7.5621295,7.5621295,0,0,0,0,0,0,0,0,1,1,0,4.7749519,0,51.24,58.84,-9,-9,5,1,1,0,0,11,10,3,1,1205,-322293.13,0,0,0,0,0,584.94012 +1028,1264,2218,2219,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,6,-8,-20.537256,0,-9,-9,2021,25,9,0,23,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.82,20.07,44.81,37.5,0,1,1,0,0,5,1,3,1,462.5,918676.75,299818.75,474549.81,32505.428,0,0,2719.4463 +1028,1264,2219,2218,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.9227762,7.3933492,6,8,69.613991,0,2,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9865326,8.1783857,44.81,37.5,29.82,20.07,8.333333333333334,1,1,0,0,0,1,3,1,462.5,918676.75,299818.75,474549.81,32505.428,0,0,2719.4463 +1029,1265,2220,2221,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,0,0,0,2,-12,-59.788124,-9,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,52.75,41.81,5,1,1,0,0,8,8,5,1,242,747795.63,336875.56,341187.03,12075.818,801.5127,4983.1978,4674.2319 +1029,1265,2221,2220,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.4528675,9.3728142,0,2,12,-75.359085,-9,3,3,2021,7,0,60,0,1,0,0,28.699863,28.699863,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.75,41.81,37.92,53.03,8.333333333333334,1,1,0,0,12,8,5,1,242,747795.63,336875.56,341187.03,12075.818,801.5127,4983.1978,4674.2319 +1029,1266,2222,-9,2220,2221,1,0,22,0,0,0,2,2,-9,0,3,8.369112,8.2082634,0,0,0,-1093.3075,0,2,3,2021,7,0,40,42,1,0,1,10.236404,10.236404,.05,.05,0,0,0,0,0,0,1,1,0,3.8733225,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,8,4,1,357,-128728.8,19111.072,0,0,0,0,839.39056 +1030,1267,2223,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,6.5743656,6.4025302,0,0,0,-898.02789,0,2,1,2021,5,0,40,40,1,0,0,2.1188271,2.1188271,0,0,0,0,0,0,0,0,0,0,0,4.9053316,0,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,411,1246170.8,244492.3,491609.56,0,0,0,213.73378 +1031,1268,2224,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.78033,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.78,60.7,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,288,36156.098,0,0,0,0,0,1990.5375 +1032,1269,2225,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.2416968,6.4840517,3.8165584,0,0,-1012.924,0,2,3,2021,6,0,1,2,1,0,0,73.821114,73.821114,0,0,0,0,0,0,0,0,1,1,0,3.6695771,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,3,13,2,1,565,1692.4833,0,0,0,1273.1051,-1182.1597,1674.9968 +1032,1270,2226,-9,2225,-9,1,0,20,0,1,1,2,0,-9,0,3,0,0,0,0,0,-854.07843,-9,2,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.87,49.76,-9,-9,5,1,1,0,0,5,13,1,1,849,119327.74,0,0,0,0,0,0 +1032,1271,2227,-9,2225,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-993.49481,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,3,13,1,1,409,43621.43,0,0,0,0,0,1031.0194 +1033,1272,2228,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.2132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.49,43.94,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,447,76571.188,0,0,0,0,0,788.8476 +1034,1273,2229,-9,2232,2231,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5237,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2230,-9,2232,2231,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1473,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2231,2232,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.9224949,9.1626883,6.1077776,12,5,50.021999,0,2,2,2021,7,0,80,45,1,0,0,12.864766,12.864766,.05,.05,0,0,0,0,0,0,1,1,0,6.1827068,0,55.2,49.4,48.87,58.55,6.666666666666667,1,1,0,0,13,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2232,2231,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8411064,8.5239162,0,12,-5,-8.0263453,0,-9,-9,2021,8,0,60,50,1,0,0,11.795821,11.795821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,55.2,49.4,8.333333333333334,1,1,0,0,15,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1035,1274,2233,-9,2234,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.02704,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,1,3105.5,-34732.133,45235.707,0,0,0,0,1410.3752 +1035,1274,2234,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7930665,7.1567178,6.6943913,0,0,-878.573,0,2,2,2021,10,1,21,16,1,1,0,4.6929955,4.6929955,.05,.05,0,0,0,0,0,0,1,1,0,6.7878914,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,3105.5,-34732.133,45235.707,0,0,0,0,1410.3752 +1036,1275,2235,2236,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.6522121,9.5414734,0,9,0,-105.16901,0,-9,-9,2021,11,0,20,50,1,1,0,77.73613,77.73613,.05,.05,0,0,0,0,0,0,0,0,0,6.0168786,0,50,50,57.16,56.15,7,2,3,0,0,1,4,5,1,547.5,451015.38,345012.78,169918.73,10883.67,0,385.39856,6643.0469 +1036,1275,2236,2235,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,24,0,-105.33227,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,50,8.333333333333334,2,3,0,0,1,4,5,1,547.5,451015.38,345012.78,169918.73,10883.67,0,385.39856,6643.0469 +1036,1276,2237,-9,2236,2235,1,1,32,0,0,0,1,1,-9,0,4,8.3067179,8.1171093,0,0,0,-940.27075,0,2,3,2021,6,0,35,41,1,0,1,12.431566,12.431566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,4,4,1,250,35027.066,12180.919,0,0,869.55042,1123.4828,1225.5671 +1036,1277,2238,-9,2236,2235,1,1,27,0,0,0,1,1,-9,0,4,8.4244299,8.3459187,0,0,0,-982.12762,0,2,3,2021,6,0,37,39,1,0,1,16.276695,16.276695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,307,-177596.14,-81719.945,0,0,0,0,1171.3193 +1037,1278,2239,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.1685219,9.3244448,0,0,0,-1052.8383,-9,-9,-9,2021,6,0,35,0,1,0,0,28.743511,28.743511,0,0,.05,0,0,0,0,0,1,1,0,3.785147,0,61.3,40.51,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,1845,838281.56,515472.78,266764.81,0,0,0,3464.3655 +1038,1279,2240,2241,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,0,0,9,21,-124.99708,0,-9,3,2021,11,2,0,48,4,2,0,0,0,0,0,0,1,0,2.0879304,0,0,1,1,0,0,0,51.78,25.17,57.06,57.76,6.666666666666667,1,1,0,0,12,7,4,1,987,2198810.8,729944,735246.63,0,0,0,1747.6548 +1038,1279,2241,2240,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6020966,8.2669172,0,9,-21,142.51369,0,-9,-9,2021,7,0,40,0,1,0,0,12.292075,12.292075,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.78,25.17,10,1,1,0,0,1,7,4,1,987,2198810.8,729944,735246.63,0,0,0,1747.6548 +1039,1280,2242,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-967.32666,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.17,23.63,-9,-9,5,1,1,0,0,4,1,1,0,1052,-177757.98,0,0,0,0,1336.9738,1196.4692 +1039,1281,2243,-9,2242,-9,1,0,37,0,0,0,1,1,-9,0,3,8.229248,8.1807137,0,0,0,-1031.4332,0,3,1,2021,11,0,60,60,1,0,0,8.4758148,8.4758148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,226,181142.08,-15304.016,247014.89,141295.23,0,0,1180.6151 +1040,1282,2244,2245,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.0277781,5.9189539,47,1,-85.39399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8239309,0,0,1,1,0,0,6.0651641,64.40000000000001,23.23,52,47,10,1,1,0,0,0,2,3,1,1082,660461.5,470384.94,244196.38,0,0,0,3072.1353 +1040,1282,2245,2244,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9548712,7.8205242,7,-1,-62.076099,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7869439,7.7357912,52,47,64.40000000000001,23.23,7,1,1,0,0,0,2,3,1,1082,660461.5,470384.94,244196.38,0,0,0,3072.1353 +1041,1283,2246,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.045608,6.853159,0,0,-1059.8555,0,-9,-9,2021,13,1,0,18,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.079288,6.9558783,49.05,50.32,-9,-9,3.333333333333333,1,1,0,0,14,6,2,1,2958,83914.867,0,6577.9639,0,3064.8733,0,1154.8396 +1041,1284,2247,-9,2246,-9,1,1,23,0,0,0,2,2,-9,0,2,8.4269524,8.1224937,0,0,0,-1100.3082,0,2,-9,2021,17,5,40,45,1,5,1,12.452194,12.452194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.16,52.06,-9,-9,5,1,1,0,0,8,6,4,1,1519,-135340.95,43086.637,0,0,6687.2461,1851.3497,2013.7609 +1042,1285,2248,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,6.8013773,6.771214,0,0,-1025.6302,-9,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.562458,6.4385829,45.82,54.57,-9,-9,1.666666666666667,1,1,0,0,11,6,2,0,217,147684.16,0,148815.59,47423.887,0,0,1554.132 +1043,1286,2249,2250,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.442275,6.6458516,0,19,0,43.056786,0,2,2,2021,9,0,35,34,1,0,0,2.1894426,2.1894426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.81,43.45,44.19,58.01,6.666666666666667,1,1,0,0,2,13,4,1,1120.5,426312.56,385319,104158.66,0,0,0,1480.4547 +1043,1286,2250,2249,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.0917969,8.3870926,0,21,0,210.3284,0,2,3,2021,12,0,48,40,1,0,0,8.095232,8.095232,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.81,43.45,5,1,1,0,0,11,13,4,1,1120.5,426312.56,385319,104158.66,0,0,0,1480.4547 +1043,1287,2251,-9,2249,2250,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1083.5139,-9,1,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.08,52.64,-9,-9,6.666666666666667,1,1,1,1,0,13,1,1,2349,-30185.096,0,0,0,0,0,0 +1044,1288,2252,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.2246971,7.4376779,0,0,-1033.0028,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3558645,62.33,22.82,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,310,808779.63,368005.38,232963.25,0,0,-31.518225,1751.3829 +1045,1289,2253,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.2359943,8.0037575,5.7086921,0,0,-1052.5641,0,-9,-9,2021,11,3,34,37,1,3,0,9.6578445,9.6578445,0,0,0,0,0,0,0,0,1,0,1,5.4585881,0,25.79,65.03,-9,-9,6.666666666666667,1,1,0,0,10,5,3,0,1459,143067.44,-55142.746,195496.73,124621.85,0,0,2034.1277 +1046,1290,2254,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.9103,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,52.95,-9,-9,5,1,1,0,0,0,8,1,0,415,0,0,0,0,0,0,1117.5452 +1047,1291,2255,-9,2257,2258,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6276,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2256,-9,2257,2258,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.07593,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2257,2258,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.7135677,8.3358335,0,8,-6,13.313126,0,2,1,2021,24,10,38,40,1,10,0,17.545853,17.545853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.66,47.81,54.2,57.49,6.666666666666667,1,1,0,0,9,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2258,2257,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.5795431,8.7932234,0,8,6,6.4309888,0,-9,-9,2021,10,1,40,45,1,1,0,21.030682,21.030682,.05,.05,0,0,0,0,0,0,1,1,0,1.0100158,0,54.2,57.49,42.66,47.81,8.333333333333334,1,1,0,0,9,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1048,1292,2259,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.7843757,4.5528269,0,0,-786.46179,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9566369,4.8871102,60.12,54.8,-9,-9,10,1,1,0,0,12,10,2,1,748,183095.69,32524.871,59351.879,0,0,0,323.75473 +1049,1293,2260,-9,2261,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.84308,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,0,2448.5,-80768.422,-30538.604,0,0,0,0,1912.0206 +1049,1293,2261,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0170274,7.7561064,6.7732568,0,0,-916.74762,0,2,1,2021,13,1,20,22,1,1,0,6.2872005,6.2872005,.05,.05,0,0,0,0,0,0,1,1,0,6.908133,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,1,10,9,3,0,2448.5,-80768.422,-30538.604,0,0,0,0,1912.0206 +1049,1294,2262,-9,2261,-9,1,0,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-901.50372,1,2,-9,2021,6,1,0,25,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,3,9,1,0,1337,-82897.484,0,0,0,4447.001,0,257.96268 +1050,1295,2263,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.66248,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73761964,0,50,48,-9,-9,7,2,3,0,0,0,4,1,1,1304,20744.064,0,0,0,1579.2021,0,875.88239 +1050,1296,2264,-9,2263,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1514254,8.3267345,0,0,0,-924.01984,0,3,-9,2021,11,0,37,37,1,2,1,9.6645641,9.6645641,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,4,4,1,137,199575.05,107993.95,0,0,0,0,1717.332 +1050,1297,2265,-9,2263,-9,1,1,24,0,0,0,2,2,-9,0,4,7.1285629,7.4230533,0,0,0,-1045.7189,0,3,-9,2021,10,0,16,0,1,1,1,9.414072,9.414072,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,3,1,399,54878.473,0,0,0,0,0,620.16724 +1051,1298,2266,-9,2268,2267,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1043.8241,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2267,2268,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0645313,8.0393324,0,15,8,-123.07805,0,2,2,2021,7,0,37,37,1,0,0,12.287138,12.287138,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.47,44.69,51.14,60.45,8.333333333333334,1,1,0,0,5,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2268,2267,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.7172194,8.8947134,0,15,-8,12.01316,0,2,2,2021,11,2,53,70,1,2,0,13.683874,13.683874,0,0,0,0,0,0,0,0,1,1,0,1.8245373,0,51.14,60.45,58.47,44.69,8.333333333333334,1,1,0,0,8,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2269,-9,2268,2267,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.0932,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1052,1299,2270,2271,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,6.2173142,6.2624302,10,2,27.251572,0,2,-9,2021,3,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5477033,59.43,58.05,59.53,56.44,10,1,1,0,0,12,9,3,1,1242,261777.91,167916.56,0,0,0,5474.6904,1892.0076 +1052,1299,2271,2270,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.399847,7.5998726,36,-2,-108.9452,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.445282,7.9045358,59.53,56.44,59.43,58.05,10,1,1,0,0,10,9,3,1,1242,261777.91,167916.56,0,0,0,5474.6904,1892.0076 +1053,1300,2272,2273,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.7315588,7.8407497,0,18,1,-120.89493,0,3,3,2021,9,0,30,39,1,0,0,11.385403,11.385403,0,0,0,0,0,0,0,7,1,1,0,0,0,53.23,47.51,42.69,56.27,1.666666666666667,1,1,0,0,10,9,3,0,695,3787556,539287.31,1171946.8,494121.22,0,0,1053.1118 +1053,1300,2273,2272,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,5.1442757,5.4331827,0,29,-1,82.836952,0,3,3,2021,8,0,50,50,1,0,0,.48010367,.48010367,0,0,0,0,0,0,0,0,1,1,0,0,0,42.69,56.27,53.23,47.51,8.333333333333334,1,1,0,0,10,9,3,0,695,3787556,539287.31,1171946.8,494121.22,0,0,1053.1118 +1054,1301,2274,2275,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,-13,-46.867897,0,-9,-9,2021,10,0,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,57.51,47.91,7,1,1,0,0,0,9,2,1,367.5,132356.69,152481.44,0,0,12962.064,0,1721.4939 +1054,1301,2275,2274,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.7270184,5.6003771,33,13,-31.955961,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2783594,5.8899665,57.51,47.91,52,48,8.333333333333334,1,1,0,0,0,9,2,1,367.5,132356.69,152481.44,0,0,12962.064,0,1721.4939 +1055,1302,2276,2277,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.659081,7.9147177,35,5,-51.596085,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9165206,8.0159903,53.05,53.99,45.68,42.74,8.333333333333334,1,1,0,0,5,10,3,1,1039.5,691825.06,128994.96,166676.63,0,0,0,2736.6646 +1055,1302,2277,2276,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,35,-5,41.959354,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.68,42.74,53.05,53.99,1.666666666666667,1,1,0,0,3,10,3,1,1039.5,691825.06,128994.96,166676.63,0,0,0,2736.6646 +1056,1303,2278,2279,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.4208951,5.3952732,46,-3,61.750874,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1753893,5.5598855,60.29,52.11,59.53,56.44,10,1,1,0,0,9,2,2,1,190.5,314871.81,144519.27,173004.75,0,0,0,2469.1177 +1056,1303,2279,2278,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.5959878,6.5842381,46,3,7.0906806,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4928312,6.6363258,59.53,56.44,60.29,52.11,10,1,1,0,0,8,2,2,1,190.5,314871.81,144519.27,173004.75,0,0,0,2469.1177 +1056,1304,2280,-9,2278,2279,1,1,38,0,0,0,2,2,-9,0,4,7.7978363,7.8067169,0,0,0,-1013.7679,0,3,2,2021,7,0,44,44,1,0,0,5.675602,5.675602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1038,-66154.789,104794.3,0,0,7594.271,3143.9155,1611.9781 +1057,1305,2281,2282,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,9.5885267,9.6439743,0,36,2,176.00778,0,2,2,2021,7,0,60,60,1,0,0,27.876181,27.876181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.49,55.09,8.333333333333334,1,1,0,0,9,8,5,1,308,3903057.5,3018941.3,560131.19,0,0,0,20446.555 +1057,1305,2282,2281,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.9515657,7.4085073,36,-2,-40.84507,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8215032,7.5306253,62.49,55.09,60.02,56.42,10,1,1,0,0,6,8,5,1,308,3903057.5,3018941.3,560131.19,0,0,0,20446.555 +1057,1306,2283,-9,2282,2281,1,1,27,0,0,0,1,1,-9,0,4,8.5966244,8.7330275,0,0,0,-1127.3354,0,1,1,2021,9,0,42,40,1,0,1,17.356842,17.356842,.05,.05,0,0,0,0,0,0,1,1,0,1.19566,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,462,72962.992,-3138.8137,0,0,-1236.7814,0,1579.5869 +1058,1307,2284,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.363565,7.6808181,0,0,-971.02655,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.025268,0,0,1,1,0,0,7.6901927,62.27,45.61,-9,-9,10,1,1,0,0,0,12,3,1,1121,790516.38,172602.58,381633.19,0,0,0,2105.7163 +1059,1308,2285,2286,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,8.3214302,8.3223267,2,0,-48.221352,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2413616,8.3225813,59.43,58.05,34.06,55.12,10,1,1,0,0,5,11,4,1,393,306775.38,53535.715,146431.44,28859.285,6717.002,0,3086.3281 +1059,1308,2286,2285,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,0,6.9799147,6.9174976,2,0,104.68138,0,-9,-9,2021,15,4,0,29,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8834915,6.8229365,34.06,55.12,59.43,58.05,10,1,1,0,0,9,11,4,1,393,306775.38,53535.715,146431.44,28859.285,6717.002,0,3086.3281 +1060,1309,2287,-9,2289,2290,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.14081,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2288,-9,2289,2290,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.50708,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2289,2290,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.1198149,8.1284199,0,24,-6,-45.202942,0,2,2,2021,2,0,30,31,1,0,0,11.989222,11.989222,0,0,0,0,0,0,0,0,0,0,0,4.817142,0,63.38,53.47,53,54,10,1,1,0,0,9,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2290,2289,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.1742153,8.9158802,0,24,6,38.029205,0,-9,-9,2021,9,0,40,40,1,1,0,25.296347,25.296347,.05,.05,.05,0,0,0,0,0,0,0,0,3.0621178,0,53,54,63.38,53.47,8,1,1,0,0,1,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1061,1310,2291,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.213294,8.1263008,0,0,0,-1042.8846,0,2,2,2021,7,0,38,39,1,0,0,9.2050991,9.2050991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,1212,131428.14,-3114.4043,0,0,0,0,1098.1302 +1062,1311,2292,2293,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-2,-75.615166,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.4,37.36,60.12,54.8,8.333333333333334,1,1,0,0,0,9,3,1,455.5,648593.5,214991.7,357978.94,0,0,0,2881.4766 +1062,1311,2293,2292,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,8.4122343,7.9758725,62,2,39.336697,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3916903,60.12,54.8,53.4,37.36,8.333333333333334,1,1,0,0,0,9,3,1,455.5,648593.5,214991.7,357978.94,0,0,0,2881.4766 +1063,1312,2294,2295,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5363293,6.7456517,52,1,-96.31694,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9156027,6.6786847,52.58,50.04,51.89,33.18,8.333333333333334,1,1,0,0,0,12,2,1,1432.5,364858.25,254721.41,0,0,0,0,2269.8279 +1063,1312,2295,2294,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.2219863,6.624692,52,-1,-156.07722,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2708466,6.5656724,51.89,33.18,52.58,50.04,5,1,1,0,0,6,12,2,1,1432.5,364858.25,254721.41,0,0,0,0,2269.8279 +1064,1313,2296,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-818.49951,0,3,3,2021,28,10,0,36,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,34.63,-9,-9,0,1,1,0,0,10,5,1,0,1226,0,0,0,0,0,0,1488.0656 +1065,1314,2297,2298,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,55,-3,-26.438461,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,55.79,52.62,10,1,1,0,0,0,10,2,1,417.5,457864.75,108173.16,214344.33,0,0,0,1527.6855 +1065,1314,2298,2297,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.4986062,6.8672962,55,3,9.8457966,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6634421,55.79,52.62,62.1,51.16,10,1,1,0,0,0,10,2,1,417.5,457864.75,108173.16,214344.33,0,0,0,1527.6855 +1066,1315,2299,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.3053951,6.4987149,0,0,-1141.2412,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5316525,7.0160408,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,981,33986.359,-31144.652,0,0,0,0,1751.682 +1067,1316,2300,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,8.1105614,8.1961317,0,0,-1029.3372,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0330439,54.37,54.8,-9,-9,10,1,1,0,0,0,11,4,1,629,573169.44,474286.94,104028.43,0,0,0,2591.0125 +1068,1317,2301,2302,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,12,-2,0,0,3,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,24.92,35.86,33.66,26.91,5,1,1,0,1,0,13,1,0,672,88688.984,122370.52,0,0,-289.83319,1681.3318,2424.2527 +1068,1317,2302,2301,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,12,2,0,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,26.91,24.92,35.86,5,1,1,0,0,0,13,1,0,672,88688.984,122370.52,0,0,-289.83319,1681.3318,2424.2527 +1069,1318,2303,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0057678,7.4786377,0,0,-966.7002,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.361136,50.52,28.16,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,599,338369.5,200782.25,296444.38,0,0,0,2237.7681 +1070,1319,2304,-9,2306,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.7053,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2305,-9,2306,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.5711,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2306,-9,-9,-9,1,0,27,1,3,0,3,3,-9,1,3,6.7539215,6.451189,0,0,0,-966.54346,0,-9,-9,2021,15,3,12,0,1,3,0,11.031804,11.031804,0,0,0,0,0,0,0,114,1,1,0,0,0,48.7,56.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2307,-9,2306,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6776,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1071,1320,2308,2309,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.320219,9.2123814,0,5,-1,-5.9934936,0,-9,-9,2021,7,0,24,24,1,0,0,52.604488,52.604488,.05,.05,0,0,0,0,0,0,0,0,0,3.311291,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,5,4,5,1,1122.5,158637.39,102777.13,262970.91,197396.25,0,0,6217.2715 +1071,1320,2309,2308,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1609278,9.0671692,0,5,1,-84.799423,0,1,1,2021,11,0,54,58,1,0,0,19.263441,19.263441,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.79,55.86,1.666666666666667,1,1,0,0,5,4,5,1,1122.5,158637.39,102777.13,262970.91,197396.25,0,0,6217.2715 +1072,1321,2310,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,9.0530128,8.7082939,0,0,0,-1051.8514,0,3,3,2021,5,0,40,40,1,0,0,21.110456,21.110456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,7,8,5,0,330,821362.25,154770.48,559954.69,0,0,0,2475.9189 +1072,1322,2311,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.5655203,8.4494085,0,0,0,-916.50781,0,2,2,2021,7,0,38,39,1,0,0,17.176331,17.176331,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,370,445824.5,264969.22,0,0,0,0,1552.6439 +1073,1323,2312,2313,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.714077,8.7176828,0,2,6,11.58592,0,-9,-9,2021,5,0,60,37,1,0,0,10.451943,10.451943,.05,.05,0,0,0,0,0,0,0,0,0,3.5236104,0,61.29,46.02,56.5,48.33,8.333333333333334,1,1,0,0,1,10,5,0,654.5,932734.13,89654.859,224779.19,56652.152,0,0,4813.769 +1073,1323,2313,2312,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.4812994,8.5123501,0,2,-6,-25.42745,0,1,1,2021,5,0,50,52,1,0,0,10.40256,10.40256,.05,.05,0,0,0,0,0,0,0,0,0,6.9483938,0,56.5,48.33,61.29,46.02,8.333333333333334,1,1,0,0,8,10,5,0,654.5,932734.13,89654.859,224779.19,56652.152,0,0,4813.769 +1074,1324,2314,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.2739,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.25,39.66,-9,-9,5,1,1,0,0,0,13,1,0,527,3832.5068,0,0,0,0,0,1457.9293 +1075,1325,2315,-9,2317,2316,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.45258,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2316,2317,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.5274782,8.6259041,0,7,2,-128.79465,0,2,2,2021,6,1,41,35,1,1,0,18.091345,18.091345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.69,53.19,33.16,56.54,8.333333333333334,1,1,0,0,9,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2317,2316,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,7.4845433,7.1302805,0,7,-2,-81.546783,0,3,3,2021,14,2,28,27,1,2,0,5.3729358,5.3729358,0,0,0,0,0,0,0,0,1,1,0,0,0,33.16,56.54,32.69,53.19,3.333333333333333,1,1,0,0,9,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2318,-9,2317,2316,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1151.2559,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1326,2319,-9,-9,-9,1,1,70,0,3,0,3,3,-9,0,5,0,7.0422497,6.9406934,0,0,-998.44031,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8882375,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1707,416644.34,167390.28,125012.59,0,0,0,1536.15 +1076,1327,2320,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,3.43379,3.6158779,0,0,-954.60669,-9,2,2,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6899104,0,52.48,55.6,-9,-9,10,1,1,0,0,2,2,2,0,604,30586.953,0,0,0,6553.4409,0,352.0542 +1077,1328,2321,2322,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.0008583,9.1181564,0,10,-3,-22.715469,0,2,2,2021,11,0,35,35,1,0,0,23.921286,23.921286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,2216,3359787.8,1634852.3,1045825.1,0,0,0,4502.9746 +1077,1328,2322,2321,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.8184314,7.7764535,10,3,115.08821,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2281089,7.6940989,57.16,56.15,53.5,51.02,10,1,1,0,0,4,9,5,1,2216,3359787.8,1634852.3,1045825.1,0,0,0,4502.9746 +1078,1329,2323,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.427,0,-9,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,.77624726,2.9340007,17.940077,0,1,1,0,0,0,31.27,29.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,68,-80675.953,0,0,0,0,0,1271.7877 +1078,1330,2324,-9,2323,-9,1,1,46,0,0,0,2,2,-9,0,3,8.1031408,8.103754,0,0,0,-945.18115,0,2,2,2021,4,0,45,36,1,0,0,7.1064925,7.1064925,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,1,10,2,4,0,201,87693.531,-3541.5732,85374.398,65645.141,0,0,990.80035 +1079,1331,2325,2326,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-34.55164,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5209413,0,57.16,56.15,52.99,51.28,10,1,1,0,0,5,5,3,1,2231.5,1528316.5,1068269,329899,0,633.04272,0,3117.5593 +1079,1331,2326,2325,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9125524,8.608696,10,1,50.030499,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1947246,8.3604956,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,2231.5,1528316.5,1068269,329899,0,633.04272,0,3117.5593 +1080,1332,2327,2328,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6670656,8.9370174,0,36,2,39.612045,0,2,2,2021,13,1,47,39,1,1,0,19.284796,19.284796,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,44.84,28.34,6.666666666666667,1,1,0,0,9,5,5,1,545.5,565518.75,384713.06,73335.875,0,0,0,3263.5425 +1080,1332,2328,2327,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.6955295,7.6988945,0,36,-2,62.816418,0,2,2,2021,26,11,35,36,1,11,0,6.7639556,6.7639556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.84,28.34,51.24,58.84,3.333333333333333,1,1,0,1,9,5,5,1,545.5,565518.75,384713.06,73335.875,0,0,0,3263.5425 +1081,1333,2329,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.319705,6.866291,0,0,0,-789.71606,0,1,1,2021,1,0,12,15,1,0,0,18.949932,18.949932,0,0,0,0,0,0,0,7,0,0,0,4.1219006,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,12,12,3,1,405,1141606.8,546850.13,192047.11,0,0,0,1362.8379 +1082,1334,2330,2331,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,8.5029755,8.5573645,0,2,-4,-15.570979,0,-9,-9,2021,23,10,47,38,1,10,0,12.760447,12.760447,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.99,40.53,49.86,55.31,3.333333333333333,1,1,0,0,6,6,5,1,1172.5,148192.44,77710.5,145678.58,151488.53,1842.587,923.2392,3043.0801 +1082,1334,2331,2330,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4130106,8.1425571,0,2,4,-87.425392,0,-9,-9,2021,6,0,38,38,1,0,0,11.582922,11.582922,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,32.99,40.53,8.333333333333334,1,1,0,0,1,6,5,1,1172.5,148192.44,77710.5,145678.58,151488.53,1842.587,923.2392,3043.0801 +1083,1335,2332,-9,-9,-9,1,0,28,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1115.3104,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15846103,0,48,52.43,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,556,-93229.703,0,0,0,0,0,1457.7312 +1083,1335,2333,-9,2332,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.53583,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,556,-93229.703,0,0,0,0,0,1457.7312 +1084,1336,2334,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1130.3894,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,46.76,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,465,-27407.434,0,0,0,0,0,1259.9165 +1085,1337,2335,2337,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9441471,8.8606968,0,16,6,38.789574,0,2,2,2021,19,7,38,47,1,7,0,16.800358,16.800358,.05,.05,0,0,0,0,0,0,0,0,0,1.2756623,0,30.84,61.65,51.83,57.2,8.333333333333334,1,1,0,0,11,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1085,1337,2336,-9,2337,2335,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.89575,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1085,1337,2337,2335,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.081522,9.2074509,0,15,-6,-4.9895773,0,1,1,2021,16,6,52,50,1,6,0,21.430632,21.430632,0,0,0,0,0,0,0,0,0,0,0,1.2365788,0,51.83,57.2,30.84,61.65,8.333333333333334,1,1,0,0,12,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1086,1338,2338,-9,2339,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.6427,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1210.5,154238.73,39847.211,0,0,3524.2371,0,3112.8135 +1086,1338,2339,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,6.1223245,6.9378638,6.2677202,0,0,-1099.0438,0,2,2,2021,31,12,38,38,1,12,0,1.209653,1.209653,.05,.05,0,0,0,0,0,0,1,0,1,6.6489186,0,32.09,64.06,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,1210.5,154238.73,39847.211,0,0,3524.2371,0,3112.8135 +1087,1339,2340,2343,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5104151,8.6590586,0,22,1,-33.607376,0,2,2,2021,13,2,38,52,1,2,0,24.056326,24.056326,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.54,60.21,45.83,43.87,6.666666666666667,1,1,0,0,11,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2341,-9,2340,2343,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7693,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2342,-9,2340,2343,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.07404,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2343,2340,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.6054745,8.4416552,0,16,-1,103.54679,0,-9,-9,2021,10,0,45,42,1,0,0,15.304152,15.304152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.83,43.87,36.54,60.21,1.666666666666667,1,1,0,0,11,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1088,1340,2344,2345,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-3,-52.078796,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4334729,0,58.15,52.91,53,47,10,1,1,0,0,0,9,2,0,476,471774.44,194246.77,285918.31,0,0,0,238.49344 +1088,1340,2345,2344,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.3465867,6.0524492,56,3,91.050301,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8544128,6.2886353,53,47,58.15,52.91,7,1,1,0,0,0,9,2,0,476,471774.44,194246.77,285918.31,0,0,0,238.49344 +1089,1341,2346,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,5,0,5.6772642,5.7025805,0,0,-999.24811,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.5051494,60.02,56.42,-9,-9,10,1,1,0,0,10,2,2,1,509,-35768.609,86756.805,0,0,0,0,584.7373 +1090,1342,2347,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,6.8993468,6.9295616,0,0,0,-949.6795,0,2,2,2021,7,0,30,45,1,0,0,4.3659139,4.3659139,0,0,0,0,0,0,0,42,1,1,0,0,0,53.38,47.51,-9,-9,5,1,1,0,0,3,2,2,0,1135,125989.74,0,112756.53,0,0,0,2074.2844 +1091,1343,2348,-9,2349,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.28003,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,884.5,140498.09,14482.748,0,0,0,0,2434.7527 +1091,1343,2349,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.4653702,8.8820944,6.3424454,0,0,-992.59564,0,2,3,2021,8,0,30,32,1,0,0,18.145359,18.145359,.05,.05,0,0,0,0,0,0,1,1,0,6.5329142,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,884.5,140498.09,14482.748,0,0,0,0,2434.7527 +1092,1344,2350,2351,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.0636444,8.060811,0,1,-2,-8.4124374,-9,3,2,2021,15,4,35,0,1,4,0,9.4644947,9.4644947,0,0,0,0,0,0,0,0,0,0,0,0,0,44,38,51,49,8.333333333333334,3,4,0,0,11,8,4,0,148,872126.88,336269.44,482445.25,0,4855.189,0,2280.6089 +1092,1344,2351,2350,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.6594415,7.5439935,0,1,2,54.747871,-9,-9,-9,2021,10,0,40,0,1,1,0,6.344481,6.344481,.05,.05,.05,0,0,0,0,0,0,0,0,4.5738502,0,51,49,44,38,7,4,4,0,0,1,8,4,0,148,872126.88,336269.44,482445.25,0,4855.189,0,2280.6089 +1093,1345,2352,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,5.7462268,5.5743957,0,0,0,-915.78333,0,3,3,2021,7,0,40,60,1,0,0,.74889654,.74889654,0,0,0,0,0,0,0,2,0,0,0,7.112576,0,52.77,55.33,-9,-9,10,1,1,0,0,15,4,2,1,238,24276.887,-28855.104,0,0,0,0,58.697376 +1094,1346,2353,2354,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.2404523,7.8621516,6.7527122,50,-4,84.855026,0,3,3,2021,8,0,20,20,1,0,0,6.3890176,6.3890176,.05,.05,0,0,0,0,0,0,1,1,0,4.0991874,6.4740167,46.57,48.65,50.17,53.95,5,1,1,0,0,11,10,4,1,498.5,-14494.82,72356.406,0,0,4009.8633,3709.21,3611.1309 +1094,1346,2354,2353,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,7.7765489,7.5754843,0,50,4,-161.92104,0,3,3,2021,8,0,45,45,1,0,0,4.711668,4.711668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.17,53.95,46.57,48.65,5,1,1,0,1,12,10,4,1,498.5,-14494.82,72356.406,0,0,4009.8633,3709.21,3611.1309 +1095,1347,2355,-9,2357,2358,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.9766,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2356,-9,2357,2358,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.95721,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2357,2358,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.9363842,8.9512224,0,7,-5,-16.38785,-9,-9,-9,2021,7,0,40,0,1,0,0,20.725794,20.725794,.05,.05,0,0,0,0,0,0,1,1,0,4.6033068,0,59.7,53.75,47.44,56.39,8.333333333333334,1,1,0,0,6,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2358,2357,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.2738867,9.0958328,0,7,5,-49.895748,0,2,1,2021,15,4,55,48,1,4,0,23.479902,23.479902,.05,.05,0,0,0,0,0,0,1,1,0,.34650421,0,47.44,56.39,59.7,53.75,8.333333333333334,1,1,0,0,8,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1096,1348,2359,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6464605,7.6123886,0,0,-1074.929,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8076525,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,991,1085915.8,414854.63,441317.63,0,-531.29547,0,1253.5612 +1097,1349,2360,-9,2363,2362,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.7332,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2361,-9,2363,2362,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.16449,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2362,2363,-9,-9,1,1,53,1,2,0,2,2,-9,0,4,8.5203009,8.2539654,0,10,12,5.6829867,0,1,2,2021,11,0,53,50,1,0,0,10.455004,10.455004,.05,.05,0,0,0,0,0,0,1,1,0,6.5324774,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,12,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2363,2362,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.4941535,7.2329612,0,10,-12,-18.806824,0,2,2,2021,8,1,18,13,1,1,0,9.9521742,9.9521742,0,0,0,0,0,0,0,0,1,1,0,.54999125,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,12,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1098,1350,2364,2365,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.8028479,8.8697176,0,8,-6,-158.47713,0,-9,-9,2021,3,0,47,50,1,0,0,14.725419,14.725419,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,54.02,40.03,6.666666666666667,1,1,0,0,9,11,5,1,829,333360.5,181308.19,167635.94,21010.521,3184.2686,0,3614.958 +1098,1350,2365,2364,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1154528,7.9254088,0,8,6,56.71957,0,3,-9,2021,14,2,32,32,1,2,0,11.46863,11.46863,0,0,0,0,0,0,0,0,0,0,0,2.51896,0,54.02,40.03,46.63,59.72,8.333333333333334,1,1,0,0,9,11,5,1,829,333360.5,181308.19,167635.94,21010.521,3184.2686,0,3614.958 +1099,1351,2366,2368,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,6.7171793,6.8827996,21,29,8.3926315,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3648639,6.5461087,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,5,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1099,1351,2367,-9,2368,2366,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1020.9266,-9,2,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1099,1351,2368,2366,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,8.1536798,8.2732048,0,21,-29,-107.39926,0,3,2,2021,9,0,30,24,1,0,0,12.432348,12.432348,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,8,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1100,1352,2369,-9,2373,2371,1,1,17,0,3,0,2,2,1,0,1,0,0,0,0,0,-1012.764,-9,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.19,42.84,-9,-9,5,1,1,1,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2370,-9,2373,2371,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-917.60913,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2371,2373,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.6367702,8.5417681,0,12,-4,-35.685192,0,3,3,2021,13,1,46,47,1,1,0,13.691612,13.691612,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.1,51.14,66.98,25.65,5,1,1,0,0,10,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2372,-9,2373,2371,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-877.95245,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2373,2371,-9,-9,1,0,53,0,3,0,2,2,-9,0,3,8.4326038,8.3998203,5.8291311,18,4,-56.568394,0,1,3,2021,4,0,38,61,1,0,0,18.03266,18.03266,0,0,0,0,0,0,0,7,1,1,0,6.5114698,0,66.98,25.65,36.1,51.14,8.333333333333334,1,1,0,0,8,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1353,2374,2375,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,7.9637542,8.2414646,0,2,1,-69.199051,0,-9,-9,2021,27,11,55,52,1,11,0,8.1096506,8.1096506,0,0,0,0,0,0,0,0,1,1,0,0,0,17.15,56.96,51.83,57.2,6.666666666666667,1,1,0,0,2,7,3,0,1252.5,262619.66,72898.344,500369.5,219084.56,5411.7563,0,2961.988 +1100,1353,2375,2374,2373,2371,1,1,20,0,3,0,2,2,-9,0,4,8.0225325,8.4284592,0,2,-1,-12.30931,0,2,2,2021,8,0,50,48,1,0,0,9.6776953,9.6776953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,17.15,56.96,10,1,1,0,0,3,7,3,0,1252.5,262619.66,72898.344,500369.5,219084.56,5411.7563,0,2961.988 +1100,1354,2376,-9,2377,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5085,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1639.5,-48519.648,0,0,0,-1293.9352,-432.50494,671.42621 +1100,1354,2377,-9,2373,2371,1,0,27,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1092.033,0,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,1639.5,-48519.648,0,0,0,-1293.9352,-432.50494,671.42621 +1101,1355,2378,2379,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.2027521,8.2816391,0,1,-4,-16.957085,-9,-9,-9,2021,6,0,38,0,1,0,0,10.469761,10.469761,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,51.73,58.82,10,1,1,0,0,3,5,5,1,2452.5,204409.84,129209.76,104487.8,86486.016,13532.012,0,3780.0498 +1101,1355,2379,2378,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.7562819,8.9755144,0,1,4,54.335876,-9,-9,-9,2021,9,1,50,0,1,1,0,21.358707,21.358707,.05,.05,0,0,0,0,0,0,0,0,0,4.9935617,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,2452.5,204409.84,129209.76,104487.8,86486.016,13532.012,0,3780.0498 +1102,1356,2380,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3247166,8.2430115,0,0,0,-1044.5023,0,2,2,2021,13,2,40,44,1,2,0,9.3621464,9.3621464,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,1807,104244.88,64044.238,0,0,6206.1719,0,1142.0863 +1103,1357,2381,2382,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5146227,7.1380081,2.8868089,13,-1,118.53932,0,-9,-9,2021,9,0,18,18,1,0,0,10.650044,10.650044,0,0,0,0,0,0,0,0,0,0,0,2.9392362,2.7166917,47.53,45.46,54.89,46.52,8.333333333333334,1,1,0,0,12,5,4,1,1076,1418413.3,599039,246629.67,173149.31,0,0,2780.9531 +1103,1357,2382,2381,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.7502131,8.2950525,6.7248244,13,1,-62.10804,0,3,2,2021,10,0,32,32,1,0,0,10.466331,10.466331,0,0,0,0,0,0,0,0,0,0,0,1.4328603,6.7456913,54.89,46.52,47.53,45.46,8.333333333333334,1,1,0,0,11,5,4,1,1076,1418413.3,599039,246629.67,173149.31,0,0,2780.9531 +1104,1358,2383,2384,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.6703806,7.6864023,44,0,32.122879,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.779459,57.31,50.61,56.18,53.85,8.333333333333334,1,1,0,0,8,7,3,1,679,1991346.4,162148.11,414401.13,0,0,0,2527.0757 +1104,1358,2384,2383,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,44,0,-43.504581,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,57.31,50.61,8.333333333333334,1,1,0,0,5,7,3,1,679,1991346.4,162148.11,414401.13,0,0,0,2527.0757 +1105,1359,2385,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.5451293,6.0328083,0,0,-1050.0627,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3459297,5.9591942,51.24,58.84,-9,-9,10,1,1,0,0,0,4,2,0,440,519048.06,223964.77,275027.88,0,0,0,1630.1404 +1106,1360,2386,2387,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,3.9442532,4.241498,68,0,-2.1025753,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,0,1,4.2380223,3.9471781,45.74,40.98,53,44,6.666666666666667,1,1,0,0,9,5,2,1,248,361789,-43642.926,242139.66,0,0,0,1605.9957 +1106,1360,2387,2386,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,4.2454252,4.1101847,67,0,13.80894,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,4.834867,4.3236718,53,44,45.74,40.98,8,1,1,0,0,6,5,2,1,248,361789,-43642.926,242139.66,0,0,0,1605.9957 +1107,1361,2388,2389,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,0,0,0,2,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,22.26708,0,0,1,1,0,0,0,63.89,45.4,63.58,29.16,10,2,3,0,0,0,8,1,1,595.5,-59950.352,0,0,0,507.30566,0,973.39575 +1107,1361,2389,2388,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,0,0,48,9,0,0,3,2,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.58,29.16,63.89,45.4,8.333333333333334,2,3,0,0,0,8,1,1,595.5,-59950.352,0,0,0,507.30566,0,973.39575 +1108,1362,2390,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1085382,6.9232893,0,0,-952.63226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5642679,6.8825083,64.84,37.66,-9,-9,10,1,1,0,0,1,13,2,1,797,188962.52,45896.742,0,0,0,0,830.51691 +1109,1363,2391,2392,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7053595,8.4406586,0,2,1,-24.978619,0,2,2,2021,15,4,60,60,1,4,0,8.2471371,8.2471371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,24.66,36.37,8.333333333333334,1,1,0,0,11,4,5,1,524,215404.31,-22289.172,263546.84,200593.34,0,0,3596.1953 +1109,1363,2392,2391,-9,-9,1,1,27,0,0,0,1,1,-9,0,1,8.4981737,8.6780939,0,2,-1,-54.846264,0,-9,-9,2021,27,9,37,37,1,9,0,15.14756,15.14756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.66,36.37,41.06,62.04,1.666666666666667,1,1,0,0,3,4,5,1,524,215404.31,-22289.172,263546.84,200593.34,0,0,3596.1953 +1110,1364,2393,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.1687336,8.0424728,0,0,0,-953.22327,0,1,2,2021,6,0,39,37,1,0,0,8.996829,8.996829,.05,.05,0,0,0,0,0,0,0,0,0,6.3023686,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,1334,-142957.84,-46002.086,0,0,0,0,894.4137 +1110,1365,2394,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.07025,-9,-9,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,49.75,-9,-9,3.333333333333333,1,1,1,0,0,5,1,1,449,-110541.08,-38706.793,0,0,0,0,0 +1111,1366,2395,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,4.814126,4.8302913,0,0,-999.97552,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6990962,0,56.89,50.73,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,2011,192776.59,91051.773,295156.06,0,0,0,442.98221 +1112,1367,2396,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3531561,8.3390026,0,0,0,-1029.7159,0,-9,-9,2021,4,0,40,45,1,0,0,11.583104,11.583104,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,343,124159.76,0,0,0,0,0,1839.1532 +1113,1368,2397,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1061.0646,0,-9,2,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.65,36.16,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,682,23330.57,0,0,0,0,0,853.15796 +1113,1369,2398,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.4046774,7.6809349,0,0,0,-1056.2196,0,3,3,2021,14,2,32,30,1,2,0,6.9040713,6.9040713,.05,.05,0,0,0,0,0,7,1,1,0,2.9146235,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,597,-7981.3213,15912.838,0,0,0,0,-170.58289 +1114,1370,2399,2400,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.4319086,8.2966337,0,1,0,42.60947,0,2,2,2021,8,0,38,38,1,0,0,9.864193,9.864193,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,143.5,227409.19,32453.664,132784.52,110798.69,0,0,3321.2065 +1114,1370,2400,2399,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.4446745,8.3355389,0,1,0,41.916355,-9,-9,-9,2021,8,1,51,0,1,1,0,10.77933,10.77933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,1,6,5,0,143.5,227409.19,32453.664,132784.52,110798.69,0,0,3321.2065 +1115,1371,2401,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1081.806,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3250945,0,50,49,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,1087,150521.59,0,0,0,0,830.91504,1810.4924 +1116,1372,2402,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,9.3587112,9.5686951,0,0,0,-963.75928,0,2,2,2021,8,0,55,50,1,0,0,41.217983,41.217983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,292,229354.86,52577.504,0,0,0,-687.81415,4618.0728 +1117,1373,2403,2404,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,7.4542122,7.529129,0,8,-8,44.492878,0,3,2,2021,11,0,37,38,1,0,0,5.9027495,5.9027495,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.69,44.53,54.2,57.49,6.666666666666667,1,1,0,0,10,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1117,1373,2404,2403,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.0369196,8.1776667,0,8,8,-32.877922,0,-9,-9,2021,11,0,35,35,1,0,0,12.550624,12.550624,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.69,44.53,8.333333333333334,1,1,0,0,10,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1117,1373,2405,-9,2404,2403,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.9614,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1118,1374,2406,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2139568,8.4122343,7.1089044,0,0,-1014.5327,0,2,2,2021,10,0,29,30,1,0,0,14.938886,14.938886,0,0,0,0,0,0,0,0,1,1,0,5.7090774,6.6071963,47.83,55.12,-9,-9,6.666666666666667,1,1,0,0,6,1,5,1,164,431554.25,276080,356491.69,117540.32,0,0,2242.7712 +1119,1375,2407,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.1303124,7.2985792,0,0,-1035.2255,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.5144157,0,16.769951,0,1,1,0,4.8999119,7.1405048,53.7,28.99,-9,-9,5,1,1,0,0,0,8,3,1,568,296443.38,114226.58,221808.69,0,0,0,368.18848 +1119,1376,2408,2409,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.5816216,7.7422934,19,6,-117.13626,0,2,2,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1225929,7.6971421,53.04,39.85,44.74,48.37,8.333333333333334,4,2,0,0,8,8,5,1,1710,2846987.3,1692230.5,633674.13,0,0,0,4280.2285 +1119,1376,2409,2408,2407,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0494061,9.2369289,0,19,-6,53.970352,0,2,-9,2021,12,3,30,35,1,3,0,35.737965,35.737965,0,0,0,0,0,0,0,2,1,1,0,5.3506455,0,44.74,48.37,53.04,39.85,3.333333333333333,1,1,0,0,13,8,5,1,1710,2846987.3,1692230.5,633674.13,0,0,0,4280.2285 +1120,1377,2410,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.3289,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.812781,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,2167,27186.078,0,0,0,0,0,337.10129 +1120,1378,2411,-9,2410,-9,1,0,50,0,0,0,1,1,-9,0,3,8.0880289,8.5309639,0,0,0,-922.19781,0,3,3,2021,12,0,37,37,1,0,0,15.315416,15.315416,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.85,37.23,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,190,563013.06,401822.03,191036.3,78190.953,0,-352.79736,322.58945 +1120,1379,2412,-9,2411,-9,1,0,21,0,0,0,1,1,-9,1,1,8.0315981,7.7389569,0,0,0,-933.55731,-9,1,-9,2021,17,5,39,0,1,5,1,8.1596069,8.1596069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.67,21.04,-9,-9,3.333333333333333,1,1,0,0,6,13,4,1,488,-40697.957,-138480.98,0,0,0,0,1872.1294 +1121,1380,2413,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1063.5161,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,13,1,0,874,183716.31,-44474.07,192232.52,0,0,0,901.91589 +1121,1381,2414,-9,2413,-9,1,0,20,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.58661,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,-9,-9,6.666666666666667,4,5,1,1,0,13,1,0,475,-51450.879,0,0,0,0,0,437.67133 +1121,1382,2415,-9,-9,-9,1,0,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1061.0287,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,772,-393.07379,0,0,0,0,0,-51.8344 +1122,1383,2416,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.2582569,7.8499999,0,0,-870.22278,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8076086,8.2587862,56.75,36.33,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,808,937172.38,542278.06,158522.08,0,0,0,1803.1561 +1123,1384,2417,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1101.108,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,698,42193.531,0,0,0,0,0,885.39648 +1124,1385,2418,2419,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.8539953,7.7378693,0,40,-5,77.54731,0,2,2,2021,6,0,35,34,1,0,0,7.9067407,7.9067407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,47.26,54.06,8.333333333333334,1,1,0,0,10,5,4,1,950.5,566417.44,269315.81,257839.94,0,0,0,3242.0745 +1124,1385,2419,2418,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.903532,8.3116045,6.636745,40,5,-123.5187,0,3,3,2021,12,2,38,37,1,2,0,8.4604445,8.4604445,.05,.05,0,0,0,0,0,0,0,0,0,5.5108361,6.624536,47.26,54.06,58.32,50.22,6.666666666666667,1,1,0,0,10,5,4,1,950.5,566417.44,269315.81,257839.94,0,0,0,3242.0745 +1125,1386,2420,2421,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.9922037,8.2190456,0,10,4,91.380684,0,3,3,2021,13,1,37,45,1,1,0,10.6835,10.6835,0,0,0,0,0,0,0,0,0,0,0,0,0,41.4,47.36,44.36,54.04,1.666666666666667,1,1,0,0,13,7,5,1,1383.5,89979.352,73580.484,0,0,0,0,2397.7107 +1125,1386,2421,2420,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.3332806,8.5069857,0,10,-4,130.14177,0,2,2,2021,11,0,40,45,1,0,0,13.974953,13.974953,0,0,0,0,0,0,0,0,0,0,0,0,0,44.36,54.04,41.4,47.36,3.333333333333333,1,1,0,0,13,7,5,1,1383.5,89979.352,73580.484,0,0,0,0,2397.7107 +1126,1387,2422,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,7.3345861,7.5294476,0,0,-979.47223,0,3,3,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.546555,28.52,41.13,-9,-9,6.666666666666667,1,1,0,0,0,12,3,0,260,290279.06,231352,158850.61,0,0,0,1599.9374 +1127,1388,2423,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8146172,7.7807693,0,0,0,-1007.8499,0,2,2,2021,11,0,35,37,1,0,0,9.0833368,9.0833368,0,0,0,0,0,0,0,2,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,335,-146536.44,0,0,0,0,0,1249.7089 +1128,1389,2424,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0003419,6.5882916,0,0,-992.76575,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9075875,37.39,37.58,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,618,170405.17,149527.83,0,0,0,0,1730.7253 +1129,1390,2425,2426,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.8529501,8.6829243,0,2,-5,-90.789879,0,-9,-9,2021,12,1,42,0,1,1,0,19.983376,19.983376,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.58,62.16,51.14,60.45,6.666666666666667,1,1,0,0,2,10,5,1,757,263631.81,37839.023,534663.5,263701.13,3560.7244,0,3816.3442 +1129,1390,2426,2425,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.0238256,7.8711114,0,2,5,95.533928,0,-9,-9,2021,10,0,40,40,1,0,0,10.019696,10.019696,.05,.05,0,0,0,0,0,0,0,0,0,5.9159989,0,51.14,60.45,26.58,62.16,6.666666666666667,1,1,0,0,7,10,5,1,757,263631.81,37839.023,534663.5,263701.13,3560.7244,0,3816.3442 +1129,1391,2427,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.0138636,8.1868687,0,0,0,-966.10016,0,-9,-9,2021,20,7,40,40,1,7,0,9.2398396,9.2398396,0,0,0,0,0,0,0,0,0,0,0,1.7276174,0,29.44,52.35,-9,-9,3.333333333333333,1,1,0,0,3,10,4,1,168,20256.176,0,0,0,0,2414.6284,1386.4186 +1130,1392,2428,2430,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.2112856,8.3687773,0,3,9,63.939484,0,2,1,2021,13,3,40,35,1,3,0,9.3471069,9.3471069,0,0,0,0,0,0,0,0,1,1,0,0,0,50.22,52.72,11.52,51.63,8.333333333333334,2,3,0,0,9,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1130,1392,2429,-9,2430,2428,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.0729,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1130,1392,2430,2428,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,0,0,0,3,0,-71.299889,0,-9,-9,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1689954,0,11.52,51.63,50.22,52.72,8.333333333333334,2,3,0,0,0,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1131,1393,2431,-9,2434,2433,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.9455,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2432,-9,2434,2433,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.83105,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2433,2434,-9,-9,1,1,67,0,3,0,2,2,-9,0,3,0,0,0,24,25,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.95,52.41,6.666666666666667,2,3,0,0,4,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2434,2433,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,24,-25,0,0,3,3,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.95,52.41,57.33,53.46,10,2,3,0,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2435,-9,2434,2433,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.45593,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1394,2436,-9,2434,2433,1,1,20,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1039.5999,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,10,2,3,1,0,0,7,1,0,1835,0,0,0,0,0,0,0 +1131,1395,2437,-9,2434,2433,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-922.25037,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.64,57.52,-9,-9,6.666666666666667,2,3,0,0,0,7,1,0,241,-80707.094,0,0,0,0,0,0 +1132,1396,2438,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.9381528,8.1793814,0,0,0,-1072.6901,0,3,2,2021,13,3,30,30,1,3,0,8.7628946,8.7628946,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,47.23,39.35,-9,-9,3.333333333333333,1,1,0,1,13,7,3,1,527,32082.148,-134672.89,0,0,0,0,1514.8717 +1132,1397,2439,-9,2438,-9,1,1,24,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1077.9226,0,2,-9,2021,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.22,59.58,-9,-9,1.666666666666667,1,1,1,1,2,7,2,1,531,-107442.38,0,0,0,0,0,-225.90627 +1133,1398,2440,2441,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,7.8262558,7.9395399,0,11,-5,-73.096611,0,3,3,2021,12,0,40,0,1,0,0,5.8652425,5.8652425,.05,.05,0,0,0,0,0,86,1,1,0,0,0,39.58,40.12,54.96,53.17,8.333333333333334,1,1,0,0,1,13,4,0,401,934490.63,763434.88,197013.67,0,11362.602,6188.8838,3155.0537 +1133,1398,2441,2440,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.8778439,8.043272,0,11,5,73.997856,0,3,3,2021,6,0,37,45,1,0,0,7.2419353,7.2419353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,39.58,40.12,8.333333333333334,1,1,0,0,2,13,4,0,401,934490.63,763434.88,197013.67,0,11362.602,6188.8838,3155.0537 +1133,1399,2442,-9,2440,2441,1,0,25,0,0,0,3,3,-9,0,4,7.8972611,8.0562,0,0,0,-1040.752,0,3,3,2021,6,0,37,39,1,0,1,7.9674544,7.9674544,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,461,90257.18,86979.711,0,0,0,0,1746.0447 +1133,1400,2443,-9,2440,2441,1,1,21,0,0,0,3,3,-9,0,4,7.7362289,8.0327091,0,0,0,-954.34406,0,3,3,2021,6,0,37,40,1,0,1,9.2110901,9.2110901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,2696,199195.28,-92963.805,0,0,0,0,1442.2317 +1133,1401,2444,-9,2440,2441,1,1,20,0,0,0,2,2,-9,0,4,8.1441851,8.0766897,0,0,0,-1044.0889,0,3,3,2021,6,0,44,60,1,0,1,9.674798,9.674798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,383,-33733.016,103090.04,0,0,0,0,1860.4215 +1134,1402,2445,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,8.6011391,8.6000271,0,0,0,-884.99683,-9,-9,-9,2021,15,4,46,0,1,4,0,10.356411,10.356411,.05,.05,0,0,0,0,0,0,0,0,0,3.9173784,0,42.19,59.15,-9,-9,8.333333333333334,1,1,0,0,2,8,5,0,350,107988.98,-2154.47,0,0,0,0,1464.4706 +1135,1403,2446,2447,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.190155,9.2106924,0,30,-21,-21.991653,0,3,2,2021,12,0,20,20,1,0,0,51.195496,51.195496,0,0,0,0,0,0,0,0,1,1,0,7.0057187,0,40.82,55.28,55,52,1.666666666666667,1,1,0,0,14,4,5,1,600.5,1983744.8,847339.06,535012.5,0,0,0,9788.7168 +1135,1403,2447,2446,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,9.2621059,9.4987755,0,13,21,81.626228,-9,-9,-9,2021,11,0,30,0,1,0,0,53.068188,53.068188,0,0,0,1,0,19.734253,0,0,1,1,0,0,0,55,52,40.82,55.28,8.333333333333334,1,1,0,0,14,4,5,1,600.5,1983744.8,847339.06,535012.5,0,0,0,9788.7168 +1136,1404,2448,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.96844,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,15.025928,0,0,1,1,0,2.7119095,0,57.61,14.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1765,75082.047,0,111083.04,0,0,0,544.63281 +1137,1405,2449,2450,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.5397243,8.1063375,7,1,-65.650223,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.2025931,8.4273005,57.16,56.15,59.54,46.05,8.333333333333334,1,1,0,0,6,6,5,1,886.5,1119269.5,631726.38,325840.5,0,0,0,5771.4141 +1137,1405,2450,2449,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,9.4404898,9.1889277,6.1476526,7,-1,86.619667,0,2,3,2021,6,0,40,38,1,0,0,25.955906,25.955906,.05,.05,0,0,0,0,0,0,0,0,0,0,6.4120064,59.54,46.05,57.16,56.15,6.666666666666667,4,2,0,0,10,6,5,1,886.5,1119269.5,631726.38,325840.5,0,0,0,5771.4141 +1138,1406,2451,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.0581684,8.1916571,0,0,0,-1059.7994,0,1,2,2021,17,7,39,38,1,7,0,7.9449458,7.9449458,.05,.05,0,0,0,0,0,0,0,0,0,2.0629981,0,35.9,60.41,-9,-9,3.333333333333333,1,1,0,0,12,1,4,1,366,205761.06,227774.41,137823.63,81973.672,0,0,763.6225 +1139,1407,2452,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-926.17072,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,39.37,-9,-9,5,1,1,0,0,8,6,1,1,1144,0,0,0,0,0,0,1553.6865 +1140,1408,2453,2455,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,9.2123785,8.9556484,0,10,2,54.215763,0,2,2,2021,11,1,28,28,1,1,0,29.548988,29.548988,.05,.05,0,0,0,0,0,0,1,1,0,5.5571308,0,54.79,55.86,48.81,59.91,6.666666666666667,1,1,0,0,12,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1140,1408,2454,-9,2453,2455,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.1482,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1140,1408,2455,2453,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.454874,8.2457695,0,10,-2,-260.74515,0,3,2,2021,9,0,38,40,1,0,0,12.021978,12.021978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,54.79,55.86,6.666666666666667,1,1,0,0,10,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1141,1409,2456,2457,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,.2311264,.02139526,0,7,15,38.390369,0,-9,-9,2021,6,0,50,60,1,0,0,.00032204165,.00032204165,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,56.85,14.54,8.333333333333334,1,1,0,0,10,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1409,2457,2456,-9,-9,1,0,40,0,0,0,1,1,-9,0,1,0,0,0,15,-15,53.10508,0,1,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.85,14.54,48.28,60.18,5,4,2,0,0,7,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1409,2458,-9,2457,2456,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.17657,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8443201,0,48,59,-9,-9,7,4,2,0,0,0,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1410,2459,-9,2457,2456,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.27081,0,1,2,2021,11,0,0,35,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,5,1,0,3,8,1,1,547,6387.1602,0,0,0,0,0,0 +1142,1411,2460,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.7527266,6.4257293,0,0,-993.55585,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5632091,6.7364988,53,44,-9,-9,8,1,1,0,0,0,5,2,1,1109,191519.69,167997.22,93473.125,0,0,0,1517.8921 +1142,1412,2461,-9,2460,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2040558,8.4032326,0,0,0,-988.9209,0,3,2,2021,6,0,30,30,1,0,0,17.269346,17.269346,0,0,0,0,0,0,0,2,1,1,0,7.7218189,0,62.49,55.09,-9,-9,10,1,1,0,0,8,5,4,1,168,988158.44,737150.19,257148.66,0,0,0,2888.2983 +1143,1413,2462,2463,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.2828865,6.7992935,6,4,-145.49567,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5293975,65.69,27.7,54.2,57.49,8.333333333333334,1,1,0,0,0,12,2,1,1604.5,589889.5,260455.66,342713.78,0,0,0,1853.535 +1143,1413,2463,2462,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.2129688,6.0649576,6,-4,72.548019,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9585748,54.2,57.49,65.69,27.7,6.666666666666667,1,1,0,0,3,12,2,1,1604.5,589889.5,260455.66,342713.78,0,0,0,1853.535 +1144,1414,2464,2465,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.7566285,8.0232048,54,0,88.733376,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4612083,7.8756695,64.52,50.23,53.22,55.2,10,1,1,0,0,5,7,3,1,2626.5,1155780.3,326525.06,267167.34,0,2157.0103,0,2415.3623 +1144,1414,2465,2464,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.9520917,6.1410799,54,0,-57.061069,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7178574,53.22,55.2,64.52,50.23,8.333333333333334,1,1,0,0,0,7,3,1,2626.5,1155780.3,326525.06,267167.34,0,2157.0103,0,2415.3623 +1145,1415,2466,2467,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.1936884,8.4207325,0,40,2,21.177168,0,3,3,2021,11,0,24,32,1,0,0,22.30825,22.30825,0,0,0,0,0,0,0,0,0,0,0,7.394485,0,53.87,53.44,33.07,55.18,8.333333333333334,1,1,0,0,11,10,4,1,294.5,1748469,1407381.4,428782.94,0,2330.6882,0,3424.3286 +1145,1415,2467,2466,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5813961,7.6615143,0,40,-2,-30.945961,0,3,3,2021,18,6,25,20,1,6,0,8.5564156,8.5564156,0,0,0,0,0,0,0,14.5,0,0,0,1.7027022,0,33.07,55.18,53.87,53.44,8.333333333333334,1,1,0,0,10,10,4,1,294.5,1748469,1407381.4,428782.94,0,2330.6882,0,3424.3286 +1146,1416,2468,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.8617525,6.8614664,0,0,0,-937.68237,0,1,1,2021,18,6,12,12,1,6,1,10.1268,10.1268,0,0,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,-9,-9,5,1,1,0,0,2,10,2,1,889,-91948.773,0,0,0,2112.9468,0,1087.967 +1147,1417,2469,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.1896873,6.8412328,0,0,0,-1092.8649,0,-9,-9,2021,9,1,3,20,1,1,0,39.614819,39.614819,0,0,0,0,0,0,0,0,1,1,0,0,0,50.87,46.66,-9,-9,8.333333333333334,1,1,0,1,5,5,2,1,520,124809.66,0,0,0,0,736.01031,1665.3801 +1148,1418,2470,2471,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-26.763636,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.231526,0,53.45,49.53,57.06,57.76,8.333333333333334,1,1,0,0,2,8,2,1,645.5,570854.19,249991.5,266079.16,0,0,0,1514.2175 +1148,1418,2471,2470,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.4493937,7.1198692,8,2,127.30648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4369929,7.5016389,57.06,57.76,53.45,49.53,8.333333333333334,1,1,0,0,2,8,2,1,645.5,570854.19,249991.5,266079.16,0,0,0,1514.2175 +1149,1419,2472,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.1068625,5.9453239,0,0,-954.46973,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5138187,5.7488995,58.33,47.36,-9,-9,10,1,1,0,0,0,2,2,1,1347,126102.82,26993.205,0,0,0,0,733.3324 +1150,1420,2473,2475,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.0647774,8.0924234,0,30,-1,59.140888,0,1,2,2021,18,7,30,30,1,7,0,13.082123,13.082123,.05,.05,0,0,0,0,0,0,0,0,0,9.284133,0,33.07,52.48,57.16,56.15,3.333333333333333,1,1,0,0,10,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1420,2474,-9,2473,2475,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1099.827,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,-9,-9,6.666666666666667,1,1,1,0,0,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1420,2475,2473,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.1510735,9.3414984,0,29,1,-10.305281,0,2,3,2021,12,0,40,0,1,0,0,27.665394,27.665394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,33.07,52.48,8.333333333333334,1,1,0,0,11,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1421,2476,-9,2473,2475,1,1,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-747.61603,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,937,0,0,0,0,0,0,0 +1151,1422,2477,2478,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,6.6818767,7.1263609,0,29,-5,64.919868,0,3,3,2021,8,0,16,10,1,0,0,7.6764612,7.6764612,0,0,0,0,0,0,0,7,0,0,0,0,0,42.33,45.96,57.16,56.15,1.666666666666667,1,1,0,0,8,7,5,0,534.5,768787.38,352502.5,648178.25,78573.484,0,0,2703.8931 +1151,1422,2478,2477,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.6758776,8.4963303,5.5043597,27,5,-13.005994,0,-9,-9,2021,6,0,35,35,1,0,0,20.367123,20.367123,.05,.05,.05,0,0,0,0,2,0,0,0,6.1518326,6.0731039,57.16,56.15,42.33,45.96,8.333333333333334,1,1,0,0,12,7,5,0,534.5,768787.38,352502.5,648178.25,78573.484,0,0,2703.8931 +1151,1423,2479,-9,2477,2478,1,1,26,0,0,0,2,2,-9,0,3,7.8281856,7.4558663,0,0,0,-961.78223,0,2,2,2021,6,0,16,17,1,0,1,17.922009,17.922009,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,1053,80624.648,-20000.158,0,0,6320.2329,0,762.22687 +1152,1424,2480,2481,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,7,1,63.75737,0,3,3,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,48,60.02,56.42,7,1,1,0,0,0,13,3,1,3171.5,320133.69,285265.22,0,0,0,0,1329.9399 +1152,1424,2481,2480,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.0141716,7.9986396,0,7,-1,111.84161,0,3,3,2021,6,0,30,36,1,0,0,11.521063,11.521063,0,0,0,0,0,0,0,0,0,0,0,6.1910095,0,60.02,56.42,51,48,10,1,1,0,0,10,13,3,1,3171.5,320133.69,285265.22,0,0,0,0,1329.9399 +1153,1425,2482,2483,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.3631735,8.1837778,0,16,-18,36.458138,0,1,1,2021,13,1,38,39,1,1,0,11.517245,11.517245,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,55.71,40.47,6.666666666666667,1,1,0,1,10,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1153,1425,2483,2482,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,7.2179747,7.3309298,5.354713,16,18,-18.677929,0,3,1,2021,7,0,20,20,1,0,0,7.1077461,7.1077461,0,0,0,0,0,0,0,0,1,1,0,5.8270111,5.9273639,55.71,40.47,58.16,48.06,5,1,1,0,1,7,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1153,1425,2484,-9,2482,2483,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1057.7854,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1154,1426,2485,-9,-9,-9,1,0,39,0,2,0,2,2,1,0,4,7.1578722,7.5841618,5.2597179,0,0,-966.71252,-9,3,3,2021,18,8,16,0,1,8,0,11.883485,11.883485,0,0,0,0,0,0,0,0,1,1,0,6.0266523,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,8,5,2,1,1218,-73900.219,0,0,0,0,0,3201.9731 +1155,1427,2486,2487,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.1590805,8.6473598,0,23,-2,130.62433,0,2,1,2021,21,9,26,24,1,9,0,15.46672,15.46672,0,0,0,0,0,0,0,0,1,1,0,2.498172,0,38.34,62.12,34.77,50.33,5,1,1,0,0,7,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2487,2486,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,9.5387802,9.6863213,0,3,2,7.4695435,0,-9,-9,2021,24,12,67,0,1,12,0,25.936512,25.936512,0,0,0,0,0,0,0,0,1,1,0,0,0,34.77,50.33,38.34,62.12,5,1,1,0,0,8,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2488,-9,2486,2487,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.38574,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2489,-9,2486,2487,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-994.61127,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1156,1428,2490,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.0585275,7.3315063,0,0,-1042.9514,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2888265,60.45,41.05,-9,-9,10,1,1,0,0,0,9,3,1,820,525398.56,96033.758,163282.73,0,0,0,837.81415 +1156,1429,2491,2492,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0210876,7.9540057,0,6,0,-113.98882,0,-9,-9,2021,11,0,43,40,1,0,0,8.8811903,8.8811903,.05,.05,0,0,0,0,0,7,1,1,0,3.5355713,0,57.16,56.15,55.93,52.62,8.333333333333334,1,1,0,0,13,9,5,1,1104.5,278495.25,139684.38,119411.34,0,7786.8228,0,3198.085 +1156,1429,2492,2491,2490,-9,1,1,54,0,0,0,3,3,-9,0,4,8.7560186,8.5957403,0,6,0,148.38112,0,3,-9,2021,9,0,42,44,1,0,0,16.690304,16.690304,.05,.05,0,0,0,0,0,0,1,1,0,2.40399,0,55.93,52.62,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,1104.5,278495.25,139684.38,119411.34,0,7786.8228,0,3198.085 +1157,1430,2493,2494,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9132814,8.1504288,0,3,3,71.211357,0,3,3,2021,19,8,38,40,1,8,0,8.5831747,8.5831747,0,0,0,0,0,0,0,0,0,0,0,0,0,33.3,64.17,60.99,53.2,8.333333333333334,1,1,0,0,4,9,5,0,580,-20673.504,-3593.8652,162866.88,83944.781,0,0,3799.4509 +1157,1430,2494,2493,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.4621897,8.778079,0,3,-3,-120.27359,0,-9,-9,2021,5,0,55,53,1,0,0,9.0238008,9.0238008,.05,.05,0,0,0,0,0,0,0,0,0,6.8610134,0,60.99,53.2,33.3,64.17,10,1,1,0,0,8,9,5,0,580,-20673.504,-3593.8652,162866.88,83944.781,0,0,3799.4509 +1157,1431,2495,-9,2493,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2652388,8.0981531,0,0,0,-990.11548,0,2,3,2021,7,0,39,45,1,0,1,14.770592,14.770592,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,211,-40196.801,0,0,0,0,0,1883.7249 +1158,1432,2496,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8135262,6.5166626,0,0,-893.08295,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1180239,6.7301607,48.54,41.09,-9,-9,5,1,1,0,0,0,6,2,1,3795,99346.586,155045.16,0,0,0,0,1322.522 +1159,1433,2497,-9,2500,2498,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2018,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2498,2500,-9,-9,1,1,42,0,3,0,1,1,-9,0,3,7.0966096,7.2787476,0,21,0,-.50360698,0,-9,-9,2021,12,1,35,35,1,1,0,4.1896839,4.1896839,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,53.31,52.27,58.55,8.333333333333334,1,1,0,0,9,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2499,-9,2500,2498,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.52783,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2500,2498,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,7.2391996,6.8835812,0,21,0,-42.186146,0,2,3,2021,8,0,25,35,1,0,0,6.1413655,6.1413655,0,0,0,0,0,0,0,0,1,1,0,3.480638,0,52.27,58.55,51.49,53.31,10,1,1,0,0,9,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2501,-9,2500,2498,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.13055,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1160,1434,2502,2503,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.442378,8.3192358,0,5,-1,35.108547,0,2,-9,2021,4,0,47,40,1,0,0,10.011298,10.011298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.98,57.55,50.63,50.99,6.666666666666667,1,1,0,0,7,1,4,1,360,14301.295,76697.039,88759.68,59655.547,15844.2,-26.477722,3206.6948 +1160,1434,2503,2502,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.7027955,7.7121806,0,5,1,66.600281,0,-9,-9,2021,9,0,37,37,1,0,0,10.675561,10.675561,.05,.05,0,0,0,0,0,0,0,0,0,2.4279678,0,50.63,50.99,51.98,57.55,6.666666666666667,1,1,0,0,6,1,4,1,360,14301.295,76697.039,88759.68,59655.547,15844.2,-26.477722,3206.6948 +1161,1435,2504,-9,2506,2507,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1942,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2505,-9,2506,2507,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-941.30829,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2506,2507,-9,-9,1,0,46,0,3,0,3,3,-9,0,4,0,0,0,24,-10,0,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.12,42.96,38.22,38.57,5,2,3,0,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2507,2506,2509,-9,1,1,56,0,3,0,3,3,-9,0,1,0,0,0,24,10,0,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.22,38.57,44.12,42.96,5,2,3,1,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2508,-9,2506,2507,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1021.9104,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1436,2509,-9,-9,-9,1,0,72,0,3,0,3,3,-9,0,1,0,0,0,0,0,-1022.9243,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,9.2481441,0,0,1,1,0,0,0,35.1,30.31,-9,-9,3.333333333333333,2,3,0,0,0,6,1,1,3499,-117698.5,0,0,0,0,0,146.84666 +1161,1437,2510,-9,2506,2507,1,0,18,0,3,0,2,2,1,0,5,0,0,0,0,0,-1018.367,-9,3,3,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.68,56.78,-9,-9,10,2,3,1,0,0,6,1,1,1099,-24710.369,0,0,0,0,0,0 +1162,1438,2511,2512,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.5847893,8.4155645,43,1,-5.7166762,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4032044,8.5800409,40.58,60.95,57.37,45.05,3.333333333333333,1,1,0,0,11,4,4,1,1136.5,1399585.9,799694.88,304287.47,0,0,0,4362.6733 +1162,1438,2512,2511,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,43,-1,-116.31531,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.37,45.05,40.58,60.95,6.666666666666667,1,1,0,0,0,4,4,1,1136.5,1399585.9,799694.88,304287.47,0,0,0,4362.6733 +1163,1439,2513,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.4922366,7.568377,0,0,-978.73138,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2752786,7.7277536,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2907,424410.34,356678.81,101198.13,0,0,0,2089.688 +1164,1440,2514,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1001.982,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4944062,0,58.05,33.11,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,242,-43078.168,0,0,0,0,0,218.73192 +1165,1441,2515,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.9380698,7.5622544,0,0,-919.87988,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8641531,7.96767,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,664,1031093,307227.09,0,0,0,0,1825.9281 +1166,1442,2516,2518,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.0033159,7.8691564,0,20,-5,42.655418,0,1,1,2021,27,11,48,44,1,11,0,8.7513065,8.7513065,.05,.05,0,0,0,0,0,7,1,1,0,0,0,36.49,50.87,52.99,51.28,6.666666666666667,1,1,0,0,8,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1166,1442,2517,-9,2516,2518,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-888.08362,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1166,1442,2518,2516,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.4577055,8.1635418,0,20,5,-41.844135,0,2,3,2021,10,0,40,44,1,0,0,11.334976,11.334976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,36.49,50.87,6.666666666666667,1,1,0,0,11,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1167,1443,2519,-9,2522,2520,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1087.7611,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2520,2522,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,8.127799,7.6210356,0,21,14,53.788242,0,3,3,2021,24,12,48,48,1,12,0,7.2102933,7.2102933,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,34.34,54.94,53.18,3.333333333333333,1,1,0,0,11,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2521,-9,2522,2520,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-947.43445,-9,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,1,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2522,2520,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,8.5044842,8.4199619,0,21,-14,-36.371693,0,2,3,2021,8,0,46,53,1,0,0,14.035695,14.035695,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,43.09,34.34,8.333333333333334,1,1,0,0,11,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1168,1444,2523,2525,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,9.4116859,9.4038973,0,11,5,56.110645,0,-9,-9,2021,14,3,43,35,1,3,0,40.531525,40.531525,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.31,50.2,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1168,1444,2524,-9,2525,2523,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1001.6136,-9,1,2,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.26,56.19,-9,-9,10,1,1,0,0,0,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1168,1444,2525,2523,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,5.9946012,6.0984139,0,11,-5,97.905449,0,-9,-9,2021,11,2,48,50,1,2,0,.92720479,.92720479,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,47.31,50.2,8.333333333333334,1,1,0,0,8,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1169,1445,2526,-9,2527,-9,1,0,30,0,0,0,1,1,-9,0,4,8.100647,8.6255188,0,0,0,-1006.2236,0,2,-9,2021,12,0,47,60,1,0,1,10.825713,10.825713,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,4,2,0,0,12,5,4,0,916,334892.34,-103422.73,112854.92,0,0,3778.0427,1889.9548 +1169,1446,2527,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.6602283,7.7568054,0,0,0,-1051.3014,-9,2,2,2021,11,0,32,0,1,0,0,7.5621257,7.5621257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.85,28.86,-9,-9,6.666666666666667,4,2,0,0,14,5,3,0,375,232189.86,129102.59,0,0,0,0,573.06964 +1170,1447,2528,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.7544279,9.6446877,0,0,0,-992.43262,0,2,1,2021,11,0,40,40,1,0,0,36.128994,36.128994,0,0,0,0,0,0,0,0,0,0,0,7.1983628,0,54.1,59.11,-9,-9,5,1,1,0,0,12,8,5,1,710,3015424,1811733.6,363444.81,0,0,0,6523.4873 +1171,1448,2529,2530,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,36,-6,110.88596,0,3,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.04,49.76,56.18,53.85,6.666666666666667,2,3,0,1,0,8,3,0,828,804489.5,133376.11,715130.13,0,0,0,2631.1626 +1171,1448,2530,2529,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.3794117,8.4394636,0,36,6,28.069592,-9,3,2,2021,9,0,40,0,1,1,0,12.078111,12.078111,.05,.05,0,0,0,0,0,0,1,1,0,1.9999981,0,56.18,53.85,50.04,49.76,8.333333333333334,2,3,0,0,13,8,3,0,828,804489.5,133376.11,715130.13,0,0,0,2631.1626 +1172,1449,2531,2532,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.6159735,8.7020884,0,6,6,-63.713955,0,3,2,2021,2,0,48,38,1,0,0,12.031556,12.031556,.05,.05,0,0,0,0,0,0,1,1,0,.46210906,0,44.24,59.44,26.64,67.84,8.333333333333334,1,1,0,0,9,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1172,1449,2532,2531,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,8.7821188,8.3494329,0,6,-6,-112.48777,0,-9,-9,2021,18,6,55,46,1,6,0,15.526207,15.526207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.64,67.84,44.24,59.44,6.666666666666667,1,1,0,0,8,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1172,1449,2533,-9,2532,2531,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.29156,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1173,1450,2534,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,6.9630022,6.7752237,0,0,0,-994.99805,0,2,2,2021,20,7,17,35,1,7,0,8.1753464,8.1753464,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,8.333333333333334,4,5,0,0,6,8,2,0,454,-48554.852,-39279.813,0,0,0,0,443.72745 +1173,1451,2535,-9,2534,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1115.7986,1,2,2,2021,6,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,437,-64887.277,0,0,0,0,0,0 +1173,1452,2536,-9,2534,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.189,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.53,49.72,-9,-9,6.666666666666667,4,5,0,0,1,8,1,0,574,-90579.992,0,0,0,0,0,220.4469 +1173,1453,2537,-9,2534,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1125.6368,1,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,1099,-181269.48,0,0,0,0,0,0 +1173,1454,2538,-9,2534,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1010.4949,-9,2,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,58.09,-9,-9,8.333333333333334,4,5,0,0,2,8,1,0,542,-192052.59,0,0,0,25907.781,0,90.403885 +1174,1455,2539,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.3016849,7.8793001,7.7783608,0,0,-1114.1696,0,2,2,2021,7,0,40,40,1,0,0,1.3511535,1.3511535,.05,.05,0,0,0,0,0,0,1,1,0,7.8356323,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1174,1455,2540,-9,2539,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.86,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1174,1455,2541,-9,2539,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1175,1456,2542,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.6540194,6.8075709,0,0,-925.98969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.447613,6.8017955,62.49,55.09,-9,-9,0,1,1,0,0,6,7,2,1,244,855611.75,167875.28,282932.34,0,1223.4703,0,1242.3705 +1176,1457,2543,-9,-9,-9,1,0,57,0,0,0,1,1,1,0,4,7.5932012,7.9889555,0,0,0,-1019.1269,-9,3,2,2021,12,1,38,0,1,1,0,8.7012711,8.7012711,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,11,5,4,1,507,-91861.742,0,0,0,0,0,1785.1802 +1176,1458,2544,-9,2543,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1027.0403,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,178,-96224.344,0,0,0,0,0,0 +1177,1459,2545,2546,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,7.4455709,7.4639864,0,4,13,-89.735794,-9,-9,-9,2021,12,2,40,0,1,2,0,5.0732203,5.0732203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.75,44.49,48.27,34.32,6.666666666666667,1,1,0,0,13,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1177,1459,2546,2545,-9,-9,1,0,35,0,2,0,2,2,-9,1,4,6.0546908,6.2211466,0,4,-13,-45.268959,0,-9,-9,2021,8,0,7,7,1,0,0,7.6668072,7.6668072,0,0,0,0,0,0,0,42,1,1,0,0,0,48.27,34.32,43.75,44.49,6.666666666666667,1,1,0,0,7,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1177,1459,2547,-9,2546,2545,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.18524,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1178,1460,2548,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,0,0,-953.85333,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.8,28.52,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,1865,43233.277,0,0,0,0,0,1067.2997 +1178,1461,2549,2550,2548,-9,1,0,37,0,0,0,1,1,-9,0,2,8.0500011,8.4606705,0,3,-10,.79331857,0,2,-9,2021,17,6,38,-9,1,6,0,12.30858,12.30858,0,0,0,0,0,0,0,2,1,1,0,0,0,31.03,48.41,45.99,51.88,5,4,5,0,0,8,8,5,0,582.5,675477.63,139128.19,487006.88,44249.234,0,0,3297.7932 +1178,1461,2550,2549,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.4682713,7.9926953,0,3,10,-43.12019,0,-9,-9,2021,9,1,40,0,1,1,0,11.20308,11.20308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,31.03,48.41,8.333333333333334,4,5,0,0,1,8,5,0,582.5,675477.63,139128.19,487006.88,44249.234,0,0,3297.7932 +1179,1462,2551,2552,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5414429,8.7158327,0,7,2,72.342041,0,3,3,2021,7,0,47,45,1,0,0,13.848907,13.848907,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,35.97,41.19,0,1,1,0,0,9,11,4,0,272,1147595.3,613572.75,147527.52,0,0,0,2358.4368 +1179,1462,2552,2551,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,7,-2,71.979546,0,-9,3,2021,17,4,0,16,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,41.19,48.28,60.18,5,1,1,1,0,8,11,4,0,272,1147595.3,613572.75,147527.52,0,0,0,2358.4368 +1180,1463,2553,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.7265277,6.4292541,0,0,-997.07758,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3154263,60.3,46.58,-9,-9,10,1,1,0,0,9,7,2,0,593,342925.19,393564.16,0,0,0,0,1016.4309 +1181,1464,2554,2555,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.0668182,8.182313,0,7,1,-96.781319,0,2,2,2021,7,0,39,39,1,0,0,8.9789581,8.9789581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52,54.51,1.666666666666667,1,1,0,0,6,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2555,2554,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,-1,12.077252,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,3,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2556,-9,2555,2554,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.4551,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2557,-9,2555,2554,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33459,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1182,1465,2558,2559,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,8.9296064,8.9380312,0,9,8,-162.66971,-9,2,2,2021,9,1,8,0,1,1,0,97.989594,97.989594,0,0,0,0,0,0,0,0,1,1,0,0,0,50.42,51.35,41.07,60.93,5,2,3,0,0,12,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2559,2558,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,9,-8,22.209978,-9,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,50.42,51.35,10,2,3,1,0,3,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2560,-9,2559,2558,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-853.25958,-9,3,1,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,41.02,-9,-9,10,2,3,0,0,0,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2561,-9,2559,2558,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.93408,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1183,1466,2562,2563,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4802475,8.700284,0,2,-1,-49.824299,0,-9,-9,2021,17,6,38,37,1,6,0,15.334112,15.334112,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.47,65.17,40.61,64.02,6.666666666666667,1,1,0,0,10,8,5,0,840,225584.39,120484.41,427043.69,202655.64,0,0,3492.2549 +1183,1466,2563,2562,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.1519318,8.4106512,0,2,1,31.897995,0,-9,-9,2021,15,4,84,50,1,4,0,6.4687867,6.4687867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,35.47,65.17,8.333333333333334,1,1,0,0,2,8,5,0,840,225584.39,120484.41,427043.69,202655.64,0,0,3492.2549 +1184,1467,2564,2565,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.5488296,6.0276408,10,8,-129.11964,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4115372,41.17,59.31,49,48,8.333333333333334,1,1,0,0,7,12,2,1,1251.5,109210.45,0,151343.27,0,0,0,1282.3499 +1184,1467,2565,2564,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,-8,-42.407894,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,41.17,59.31,5,1,1,0,0,7,12,2,1,1251.5,109210.45,0,151343.27,0,0,0,1282.3499 +1185,1468,2566,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.4677052,7.475297,0,0,-1089.2333,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.808146,7.5000153,51.61,23.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,1262,250239.92,203586.89,155393.45,21181.016,0,0,1233.7394 +1186,1469,2567,2568,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.6395044,8.5551405,0,2,4,-97.00943,0,2,2,2021,6,0,39,39,1,0,0,22.640617,22.640617,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,10,1,1,0,0,9,9,4,1,2865,527469.63,160744.13,479007.25,196846.66,13898.475,0,2398.1543 +1186,1469,2568,2567,-9,-9,1,0,28,0,0,0,1,1,0,0,4,0,0,0,2,-4,-102.85696,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,4,2,0,0,2,9,4,1,2865,527469.63,160744.13,479007.25,196846.66,13898.475,0,2398.1543 +1187,1470,2569,2570,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2367001,8.6385717,8,8,-89.432228,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7851844,8.3878641,55.93,52.62,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,386.5,1958788.3,1018863.9,322478.56,0,0,0,5663.7588 +1187,1470,2570,2569,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.529634,8.1014709,8,-8,21.310751,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.625627,8.2913227,57.06,57.76,55.93,52.62,10,1,1,0,0,0,13,4,1,386.5,1958788.3,1018863.9,322478.56,0,0,0,5663.7588 +1188,1471,2571,-9,2573,2574,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.06476,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2572,-9,2573,2574,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7061,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2573,2574,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.4015579,7.5302114,5.6490874,12,-2,-56.115734,-9,3,2,2021,10,0,30,0,1,0,0,6.7329535,6.7329535,.05,.05,0,0,0,0,0,0,1,1,0,5.576921,0,48.45,57.49,57.06,57.76,8.333333333333334,1,1,0,0,6,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2574,2573,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.9548001,8.0871553,0,12,2,49.171013,-9,2,2,2021,8,0,37,0,1,0,0,9.4458361,9.4458361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.45,57.49,8.333333333333334,1,1,0,0,6,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1189,1472,2575,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,6.1557279,6.0039196,0,0,-1008.5131,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,2.0381384,0,0,1,1,0,5.0961514,6.0268135,40.84,36.78,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1394,91671.805,40313.914,41440.742,0,0,0,1077.5 +1190,1473,2576,2577,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,6.2919106,6.4259987,19,-14,63.224651,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.4814587,48.41,19.77,25.75,19.69,8.333333333333334,1,1,0,0,0,5,2,1,442,677876.38,0,296216.47,0,0,-417.88608,3200.335 +1190,1473,2577,2576,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,3.2294972,3.5177059,19,14,-85.079559,0,3,2,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,26.056519,24.069469,275.35944,2,1,1,0,2.7771509,3.1278214,25.75,19.69,48.41,19.77,1.666666666666667,1,1,0,0,0,5,2,1,442,677876.38,0,296216.47,0,0,-417.88608,3200.335 +1191,1474,2578,2580,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.7607212,8.6914063,0,6,-1,-85.933434,0,3,-9,2021,11,2,49,51,1,2,0,16.546253,16.546253,0,0,.05,0,0,0,0,0,1,1,0,7.2673602,0,46.46,50.26,46.87,50.13,8.333333333333334,1,1,0,0,7,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1474,2579,-9,2580,2578,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.40723,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1474,2580,2578,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.8966641,7.4558945,0,6,1,108.05193,0,2,3,2021,12,0,38,34,1,0,0,6.2704654,6.2704654,0,0,0,0,0,0,0,0,1,1,0,0,0,46.87,50.13,46.46,50.26,5,1,1,0,0,7,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1475,2581,-9,2580,2578,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1001.8002,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,54.09,-9,-9,5,1,1,0,0,2,11,1,1,1122,-61387.156,0,0,0,0,0,0 +1192,1476,2582,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,0,7.3113952,7.0772114,0,0,-1099.3848,1,-9,-9,2021,7,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7438116,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,12,3,0,535,143896.91,-22772.045,0,0,0,0,1104.6481 +1193,1477,2583,2584,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.8253741,5.3723793,54,0,7.1359529,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4887791,5.9778066,52.21,29.19,44.28,45.81,8.333333333333334,1,1,0,0,5,7,2,1,556,373877.69,297533.38,218515.47,0,0,0,1241.6575 +1193,1477,2584,2583,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.7835236,4.8006406,53,0,-86.006767,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6997209,4.9713926,44.28,45.81,52.21,29.19,8.333333333333334,1,1,0,0,4,7,2,1,556,373877.69,297533.38,218515.47,0,0,0,1241.6575 +1193,1478,2585,-9,2584,2583,1,1,50,0,0,0,1,1,-9,0,2,0,0,0,0,0,-845.16583,0,2,2,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.9,42.57,-9,-9,3.333333333333333,1,1,1,1,0,7,2,1,907,762881.13,21154.936,377973.38,0,4109.0034,0,87.050377 +1194,1479,2586,2587,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8105435,8.1873474,47,-2,-119.66463,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3058038,7.9240618,57.76,54.51,57.16,56.15,10,1,1,0,0,0,12,5,1,902.5,2252434,1191672.5,869722.56,0,0,0,4961.3833 +1194,1479,2587,2586,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.6046839,8.068428,47,2,-4.809412,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1400518,8.5224848,57.16,56.15,57.76,54.51,10,1,1,0,0,0,12,5,1,902.5,2252434,1191672.5,869722.56,0,0,0,4961.3833 +1195,1480,2588,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,4.6553278,4.4391351,0,0,-1124.8352,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.6737533,0,20.994144,0,1,1,0,0,4.4615464,57.16,56.15,-9,-9,10,1,1,0,0,0,11,2,1,701,460261.72,68723.703,143860.2,0,0,0,1351.5004 +1195,1481,2589,-9,-9,2588,1,1,48,0,0,0,2,2,-9,0,4,7.9357076,7.8412404,0,0,0,-893.85413,0,-9,3,2021,7,0,38,37,1,0,0,10.581259,10.581259,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,12,11,4,1,421,343806.88,164440.09,316329.75,56742.098,0,-7.335763,1143.9674 +1196,1482,2590,2591,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,8.625577,8.7966156,0,21,-1,89.670456,0,2,2,2021,13,1,33,23,1,1,0,24.806667,24.806667,0,0,0,0,0,0,0,2,1,1,0,8.0356827,0,44.67,47.09,48.99,44.87,8.333333333333334,2,3,0,0,11,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2591,2590,-9,-9,1,1,50,0,2,0,3,3,-9,0,4,8.4078026,8.1835814,0,21,1,-163.73079,0,2,2,2021,12,0,38,38,1,0,0,8.2248135,8.2248135,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.99,44.87,44.67,47.09,6.666666666666667,2,3,0,0,11,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2592,-9,2590,2591,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.85059,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2593,-9,2590,2591,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1115.0231,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2594,-9,2590,2591,1,1,17,0,2,1,2,0,0,0,5,0,5.0788026,4.9614639,0,0,-964.10815,-9,3,3,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2845316,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1197,1483,2595,-9,2596,-9,1,0,30,0,0,0,2,2,-9,0,4,7.7372994,7.9089799,0,0,0,-819.17401,0,2,2,2021,10,1,37,37,1,1,1,9.2663136,9.2663136,0,0,0,0,0,0,0,2,1,1,0,0,0,44.21,60.79,-9,-9,3.333333333333333,1,1,0,0,7,4,3,1,347,77629.211,0,73745.742,87698.008,0,0,697.82709 +1197,1484,2596,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.5331197,5.6850004,0,0,-976.66162,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7293215,5.4514489,35.44,36.71,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,867,-11473.277,-60852.406,0,0,0,0,217.24506 +1198,1485,2597,2598,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2914267,8.2387209,0,5,-3,-3.2791526,0,-9,-9,2021,11,0,38,38,1,2,0,10.928334,10.928334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,42.94,57.18,8.333333333333334,1,1,0,0,11,1,5,1,782,109913.37,68487.609,221637.56,78193.578,0,0,4777.1782 +1198,1485,2598,2597,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,9.2804842,8.9793234,0,5,3,-63.983307,0,-9,-9,2021,3,1,45,-9,1,1,0,18.544495,18.544495,.05,.05,0,0,0,0,0,0,0,0,0,1.0936656,0,42.94,57.18,41.17,59.31,5,1,1,0,0,13,1,5,1,782,109913.37,68487.609,221637.56,78193.578,0,0,4777.1782 +1199,1486,2599,-9,2601,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-896.302,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2600,-9,2601,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.38141,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2601,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,2,0,0,0,0,0,-965.48914,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.91,32.94,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2602,-9,2601,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3923,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1200,1487,2603,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.8484087,8.0608635,6.546216,0,0,-1055.7084,0,3,3,2021,11,0,45,46,1,0,0,7.1161623,7.1161623,0,0,0,0,0,0,0,0,1,1,0,6.3692555,0,53.29,45.74,-9,-9,5,1,1,0,0,8,11,4,1,176,391350.22,0,272138.19,0,0,0,1104.4198 +1201,1488,2604,-9,2609,2605,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.7847,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2605,2609,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,7.5860691,7.7244406,0,12,5,180.19252,0,3,3,2021,10,0,40,50,1,0,0,8.9526014,8.9526014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.52,33.49,45.02,53.64,3.333333333333333,2,3,0,0,11,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2606,-9,2609,2605,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1054.7482,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2607,-9,2609,2605,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.97479,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2608,-9,2609,2605,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.1317,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2609,2605,-9,-9,1,0,32,1,4,0,3,3,-9,0,5,0,0,0,12,-5,-111.03114,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.02,53.64,50.52,33.49,0,2,3,0,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1202,1489,2610,2611,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.8575954,7.0417695,11,2,98.44149,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2648163,7.3333998,57.43,46.43,58.88,40.91,8.333333333333334,1,1,0,0,3,11,3,1,473,905584.19,539229.25,310920,0,0,0,2244.4619 +1202,1489,2611,2610,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.7890205,7.9318013,11,-2,119.82564,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.24619074,0,1,1,0,5.1697102,7.9913735,58.88,40.91,57.43,46.43,10,1,1,0,0,0,11,3,1,473,905584.19,539229.25,310920,0,0,0,2244.4619 +1203,1490,2612,2614,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.2719698,9.0741835,0,13,-3,-145.20239,0,2,2,2021,10,1,43,43,1,1,0,26.244884,26.244884,.05,.05,0,0,0,0,0,0,0,0,0,2.6328757,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,14,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1203,1490,2613,-9,2612,2614,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.084,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1203,1490,2614,2612,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.7581863,9.6414328,0,13,3,63.214855,0,2,2,2021,11,2,110,50,1,2,0,14.427637,14.427637,.05,.05,0,0,0,0,0,0,0,0,0,3.7106605,0,54.2,57.49,51.83,57.2,10,1,1,0,0,14,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1204,1491,2615,2616,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.4394493,8.2190361,26,15,8.1690779,0,2,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.3098292,8.6874495,59.88,45.34,54.2,57.49,10,1,1,0,0,8,5,5,1,1040.5,1011471.6,799577.63,232194.83,17064.33,0,566.18286,6088.6318 +1204,1491,2616,2615,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.4541559,9.5405016,0,27,-15,54.207912,0,2,2,2021,8,0,50,40,1,0,0,28.21771,28.21771,0,0,0,0,0,0,0,0,1,1,0,3.3018167,0,54.2,57.49,59.88,45.34,8.333333333333334,1,1,0,0,11,5,5,1,1040.5,1011471.6,799577.63,232194.83,17064.33,0,566.18286,6088.6318 +1204,1492,2617,-9,2616,2615,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1117.9788,-9,1,1,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,-9,-9,5,1,1,0,0,0,5,1,1,771,0,0,0,0,0,0,995.87579 +1205,1493,2618,2621,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.1525621,7.6747642,0,9,0,97.591209,0,2,2,2021,9,0,47,42,1,0,0,8.0883236,8.0883236,.05,.05,0,0,0,0,0,0,1,1,0,5.9063654,0,54.37,54.8,41.23,51.32,8.333333333333334,1,1,0,0,10,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2619,-9,2621,2618,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.905,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2620,-9,2621,2618,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.1589,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2621,2618,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,0,0,0,9,0,28.611969,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,54.37,54.8,8.333333333333334,1,1,0,0,2,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1206,1494,2622,2624,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.5721369,7.9596562,0,26,2,34.632576,0,-9,2,2021,12,2,40,40,1,2,0,8.2936935,8.2936935,.05,.05,0,0,0,0,0,0,1,1,0,2.1340632,0,45.79,62.62,61.28,48.88,10,1,1,0,0,9,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1494,2623,-9,2624,2622,1,0,17,0,0,0,3,3,1,0,2,0,0,0,0,0,-1066.6776,-9,2,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,41.41,-9,-9,0,1,1,1,0,0,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1494,2624,2622,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.726141,7.5627718,0,26,-2,-11.783977,0,-9,-9,2021,6,0,22,22,1,0,0,12.80623,12.80623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,45.79,62.62,8.333333333333334,1,1,0,0,7,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1495,2625,-9,2624,2622,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-861.69843,0,2,3,2021,4,0,0,22,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,10,1,1,1,0,1,1,1,0,402,-128263.38,0,0,0,0,0,-231.37854 +1207,1496,2626,2627,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4443293,8.2866783,0,27,2,-40.663013,0,2,2,2021,11,0,45,44,1,0,0,12.88536,12.88536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,28.9,49.04,8.333333333333334,1,1,0,0,13,9,5,1,301,1068009.4,580540.63,339923.59,43155.902,0,0,3497.6902 +1207,1496,2627,2626,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2943325,8.194458,0,27,-2,-20.190451,0,2,2,2021,21,9,38,39,1,9,0,10.650971,10.650971,.05,.05,0,0,0,0,0,0,0,0,0,.82939684,0,28.9,49.04,51.83,57.2,6.666666666666667,1,1,0,0,11,9,5,1,301,1068009.4,580540.63,339923.59,43155.902,0,0,3497.6902 +1207,1497,2628,-9,2627,2626,1,0,24,0,0,0,2,2,-9,0,5,7.4446673,6.9564137,0,0,0,-1025.2032,0,2,2,2021,32,12,28,14,1,12,1,5.9125814,5.9125814,0,0,0,0,0,0,0,0,0,0,0,.98184115,0,16.23,68.69,-9,-9,1.666666666666667,1,1,0,0,5,9,3,1,376,-57102.574,0,0,0,0,0,479.13202 +1208,1498,2629,-9,2630,-9,1,1,47,0,0,0,1,1,-9,0,1,8.6046591,8.4376469,0,0,0,-1094.8364,0,2,-9,2021,6,0,30,30,1,0,0,24.18763,24.18763,.05,.05,0,0,0,0,0,2,1,0,1,3.2691224,0,45.22,48.57,-9,-9,8.333333333333334,4,2,0,0,10,7,5,0,2542,-195426.63,52553.617,0,0,0,0,2730.822 +1208,1499,2630,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-933.78821,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,10.738008,0,0,1,0,1,0,0,34.66,37.02,-9,-9,5,1,1,0,0,0,7,1,0,757,181886.67,0,0,0,0,0,715.53784 +1209,1500,2631,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-899.21967,0,2,2,2021,10,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9016075,0,49.87,50.46,-9,-9,5,1,1,1,0,8,1,1,1,2255,-175832.05,0,0,0,0,0,4084.6648 +1210,1501,2632,-9,2633,2634,1,0,16,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1061.1228,-9,1,1,2021,30,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9605887,0,6.31,50.43,-9,-9,1.666666666666667,1,1,0,0,0,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1501,2633,2634,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.7820988,8.7710276,0,12,-2,-101.96171,0,1,1,2021,8,0,85,49,1,0,0,8.2534313,8.2534313,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.82,53.97,51.49,57.57,8.333333333333334,1,1,0,0,12,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1501,2634,2633,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,7.9686108,7.5772972,0,12,2,-13.475086,0,2,2,2021,11,1,9,10,1,1,0,26.652023,26.652023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52.82,53.97,8.333333333333334,1,1,0,0,12,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1502,2635,-9,2633,2634,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1186.2285,1,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9908209,0,35.91,63.19,-9,-9,5,1,1,0,0,2,1,1,1,658,-299350.59,0,0,0,0,0,165.26355 +1211,1503,2636,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.7617779,8.826335,0,0,0,-1094.433,0,2,2,2021,22,8,82,50,1,8,0,9.1695967,9.1695967,.05,.05,0,0,0,0,0,0,0,0,0,1.7785333,0,22.31,64.42,-9,-9,1.666666666666667,1,1,0,0,12,10,5,1,1731,506665.84,495009.44,0,0,20276.256,0,3498.218 +1212,1504,2637,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,5,8.1803837,8.1044426,0,0,0,-954.46289,0,2,2,2021,25,10,36,35,1,10,0,9.059432,9.059432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.51,69.81,-9,-9,3.333333333333333,1,1,0,1,11,11,4,1,1478,215524.53,94742.617,107461.39,0,4372.9653,0,1429.504 +1213,1505,2638,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.4680104,5.2443733,0,0,-1039.3374,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1983943,5.3115788,64.09,33.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,297,276923.16,21117.691,149968.55,0,3056.572,0,1055.0505 +1214,1506,2639,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.5072,0,-9,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,15.094958,0,0,1,1,0,0,0,53.06,10.02,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,261,-92109.547,81037.383,0,0,0,0,1766.2208 +1215,1507,2640,2641,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.4572148,7.3647175,0,12,-18,-63.408981,0,3,2,2021,6,0,20,35,1,0,0,10.270638,10.270638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,13,5,3,1,672.5,596630.5,324276.47,131852.64,0,0,0,2211.6138 +1215,1507,2641,2640,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.5554523,5.5665526,12,18,-7.0811734,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.085783,5.5028486,59.53,56.44,57.06,57.76,8.333333333333334,1,1,0,0,2,5,3,1,672.5,596630.5,324276.47,131852.64,0,0,0,2211.6138 +1216,1508,2642,-9,2646,2643,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1112.2726,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2643,2646,-9,-9,1,1,30,1,4,0,3,3,-9,0,2,0,0,0,4,4,0,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.82,51.7,33.1,49.88,10,3,4,1,0,3,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2644,-9,2646,2643,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-958.44861,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2645,-9,2646,2643,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-920.21716,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2646,2643,-9,-9,1,0,26,1,4,0,2,2,-9,0,3,0,0,0,4,-4,0,0,2,2,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.1,49.88,35.82,51.7,10,1,1,0,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2647,-9,2646,2643,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-907.29871,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1217,1509,2648,2649,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.6005373,7.3238893,38,5,-42.0765,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8201413,7.8927965,51,49,53.17,36.24,8.333333333333334,1,1,0,0,0,9,4,1,452,1718446.3,987980.13,374744.59,0,5936.3428,377.28864,1723.0952 +1217,1509,2649,2648,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.7545567,7.9582896,2.5059524,38,-5,49.224163,0,2,2,2021,7,0,27,27,1,0,0,7.8037472,7.8037472,0,0,0,0,0,0,0,2,0,0,0,3.6994443,2.5711374,53.17,36.24,51,49,8.333333333333334,1,1,0,0,13,9,4,1,452,1718446.3,987980.13,374744.59,0,5936.3428,377.28864,1723.0952 +1217,1510,2650,-9,2649,2648,1,1,33,0,0,0,2,2,-9,0,3,7.9934497,7.9821534,0,0,0,-1007.0161,0,2,1,2021,5,0,37,5,1,0,1,10.859207,10.859207,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.83,46.31,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,2211,227904.61,-6169.2725,0,0,0,0,968.00488 +1218,1511,2651,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.957901,8.2934847,0,10,-2,70.796577,0,2,2,2021,9,0,42,42,1,0,0,12.473674,12.473674,.05,.05,0,0,0,0,0,0,0,0,0,3.9630294,0,57.06,57.76,50.24,58.02,10,1,1,0,0,9,2,5,1,640,-90065.656,21956.59,0,0,0,0,2148.6704 +1218,1512,2652,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.9201803,9.1271381,0,10,2,34.624008,0,3,3,2021,9,0,40,45,1,0,0,27.383263,27.383263,.05,.05,0,0,0,0,0,0,0,0,0,6.7485142,0,50.24,58.02,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,272,155255.25,286565.59,84329.398,32597.615,18793.791,0,3960.8608 +1219,1513,2653,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9149957,7.8699608,0,0,0,-1063.4371,0,-9,2,2021,7,0,38,36,1,0,0,7.2343187,7.2343187,.05,.05,0,0,0,0,0,0,0,0,0,3.8518043,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,576,60434.332,-128584.41,0,0,0,0,678.8512 +1220,1514,2654,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.2262,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.663197,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,11,1,0,550,144486.5,0,0,0,0,0,1773.9297 +1221,1515,2655,2656,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,8.2003956,7.8875818,13,1,60.447361,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,7.8109813,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,5,9,4,1,1259.5,196974.86,2439.8164,232049.5,0,4360.7461,0,2404.5303 +1221,1515,2656,2655,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.5584178,7.4204402,34,-1,-15.790626,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.6497121,7.359056,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,9,4,1,1259.5,196974.86,2439.8164,232049.5,0,4360.7461,0,2404.5303 +1221,1516,2657,-9,2656,2655,1,0,23,0,0,0,2,2,-9,0,5,8.3552771,8.5379257,0,0,0,-982.08594,0,2,2,2021,9,0,75,-9,1,0,0,7.312757,7.312757,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,148,21240.373,0,0,0,0,0,1780.457 +1222,1517,2658,-9,-9,2659,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1046.1327,-9,-9,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7508353,0,51.77,58.57,-9,-9,10,1,1,0,0,1,6,5,1,461.5,368040.91,7874.4063,136463.89,0,0,0,2614.6455 +1222,1517,2659,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.0129929,9.2681856,0,0,0,-950.19836,0,2,3,2021,10,1,37,35,1,1,0,26.375,26.375,0,0,.05,0,0,0,0,0,0,0,0,.67766702,0,48.48,54.62,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,461.5,368040.91,7874.4063,136463.89,0,0,0,2614.6455 +1223,1518,2660,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.46716,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,53.92,36.17,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2180,-39264.93,0,0,0,0,0,1327.7777 +1224,1519,2661,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.3618889,8.6440125,6.6279211,0,0,-1004.3357,0,3,3,2021,12,1,9,20,1,1,0,46.689606,46.689606,0,0,0,0,0,0,0,0,1,1,0,4.3460732,6.4919963,56.5,45.47,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,514,376387.53,556546.25,0,0,0,0,4420.7139 +1225,1520,2662,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.3675203,5.7385435,0,0,-934.34802,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3651385,50.48,56.4,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,1055,533550.06,0,288077.97,0,0,0,-299.25363 +1226,1521,2663,2664,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,2.5640459,2.9020751,47,0,88.381844,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7050495,2.7665203,51.23,48.47,57.9,51.84,10,1,1,0,0,7,10,2,1,233,688216.13,116219.83,382305.38,0,0,0,1648.9247 +1226,1521,2664,2663,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.3419943,6.3379264,47,0,63.585388,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0377674,6.1627669,57.9,51.84,51.23,48.47,10,1,1,0,0,10,10,2,1,233,688216.13,116219.83,382305.38,0,0,0,1648.9247 +1227,1522,2665,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.1158695,8.1900883,0,0,-929.08301,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2399397,7.6723208,60.03,39.83,-9,-9,10,1,1,0,0,2,8,4,1,152,1271293.4,236685.61,256702.3,0,0,0,2957.7603 +1228,1523,2666,2668,-9,-9,1,0,51,0,3,0,2,2,-9,0,3,7.1057277,7.1534781,0,22,-2,-133.31279,0,2,2,2021,3,0,7,20,1,0,0,20.565132,20.565132,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,58.32,35.09,6.666666666666667,3,4,0,0,8,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1228,1523,2667,-9,2666,2668,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0457,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1228,1523,2668,2666,-9,-9,1,1,53,0,3,0,1,1,-9,0,3,8.1260004,8.2613821,0,10,2,71.73539,-9,-9,-9,2021,9,0,8,0,1,0,0,46.129101,46.129101,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,35.09,55.36,51.57,3.333333333333333,3,4,0,0,3,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1229,1524,2669,2670,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.8218756,5.6936169,49,0,-69.435059,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0810356,5.7920346,49.04,55.86,56.74,44.56,8.333333333333334,1,1,0,0,4,5,3,1,422.5,767531,688476.19,0,0,0,0,3416.6753 +1229,1524,2670,2669,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.9611216,8.4270477,49,0,-67.602859,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5622025,8.2337313,56.74,44.56,49.04,55.86,8.333333333333334,1,1,0,0,7,5,3,1,422.5,767531,688476.19,0,0,0,0,3416.6753 +1230,1525,2671,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.3405399,9.056922,0,0,0,-1024.3846,0,-9,-9,2021,11,0,45,47,1,0,0,24.276745,24.276745,0,0,0,0,0,0,0,0,0,0,0,3.6179562,0,43.76,58.35,-9,-9,6.666666666666667,1,1,0,0,15,9,5,1,652,2900652.8,2587256.5,239054.64,0,0,0,2572.0337 +1231,1526,2672,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.620656,7.5706701,0,0,-1013.7231,0,3,1,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9306555,7.6384645,58.58,40.59,-9,-9,10,1,1,0,0,2,9,3,1,355,796415.69,387345.81,131094.48,0,0,0,1994.7397 +1232,1527,2673,-9,2674,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.1229,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1232,1527,2674,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.5447006,8.3564892,0,0,0,-1022.3261,0,2,2,2021,9,0,39,39,1,0,0,11.749472,11.749472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1232,1527,2675,-9,2674,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.26208,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1233,1528,2676,2677,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7597647,7.7971578,6,-3,28.086897,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0467339,63.24,42.39,60.12,54.8,10,1,1,0,0,4,4,3,1,245,1115470,419251.06,188121.16,0,0,0,3259.8613 +1233,1528,2677,2676,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.581841,6.9766555,6,3,-97.868912,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8981614,6.8765316,60.12,54.8,63.24,42.39,8.333333333333334,1,1,0,0,0,4,3,1,245,1115470,419251.06,188121.16,0,0,0,3259.8613 +1234,1529,2678,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.3790064,8.5812254,5.9361119,0,0,-843.10901,0,3,3,2021,11,1,37,37,1,1,0,18.747047,18.747047,.05,.05,0,0,0,0,0,0,0,0,0,3.1295671,6.0040207,52.69,43.18,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,65,663645.81,267854.41,88945.875,0,0,8049.5859,1575.1703 +1235,1530,2679,-9,2680,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.7664,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2680,2681,-9,-9,1,0,28,1,2,0,2,2,-9,0,2,0,0,0,2,-1,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,34.05,44.25,27.05,21.51,5,1,1,0,0,4,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2681,2680,-9,-9,1,1,29,1,2,0,3,3,-9,1,1,0,0,0,2,1,0,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.05,21.51,34.05,44.25,1.666666666666667,1,1,0,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2682,-9,2680,2681,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.13599,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1236,1531,2683,-9,2684,2686,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.0095,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2684,2686,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.1670532,7.1426749,0,16,-11,126.03169,0,-9,-9,2021,6,0,24,27,1,0,0,5.7439013,5.7439013,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.56,54.55,10,1,1,0,0,10,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2685,-9,2684,2686,1,0,17,1,3,1,3,0,0,0,3,0,0,0,0,0,-1073.1975,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.74,51,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2686,2684,-9,-9,1,1,46,1,3,0,2,2,-9,0,4,0,0,0,16,11,22.260096,0,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.56,54.55,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2687,-9,2684,2686,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-976.37109,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1237,1532,2688,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.9614077,7.9204292,0,0,-982.65509,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3329196,7.7975359,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,1489,487041.88,370476.19,249761.42,0,0,0,1036.4924 +1238,1533,2689,2690,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8068528,7.8480501,11,11,34.898872,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5267186,58.32,50.22,58.32,50.22,10,1,1,0,0,0,6,4,1,789,1395533.3,1038755.6,307469.22,0,893.59119,0,2635.4761 +1238,1533,2690,2689,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.9609656,7.515481,11,-11,-106.34927,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6862159,58.32,50.22,58.32,50.22,8.333333333333334,1,1,0,0,0,6,4,1,789,1395533.3,1038755.6,307469.22,0,893.59119,0,2635.4761 +1239,1534,2691,2692,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.8355865,8.822978,0,2,0,-21.497253,0,2,2,2021,13,5,40,38,1,5,0,17.389601,17.389601,.05,.05,0,0,0,0,0,0,0,0,0,3.2977214,0,29.7,67.40000000000001,39.6,49.52,10,1,1,0,0,13,6,5,1,856,8343.2988,120349.62,97945.133,126457.59,13273.063,2455.282,3891.0918 +1239,1534,2692,2691,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.7645617,8.4366589,0,2,0,56.040176,0,-9,-9,2021,16,4,43,80,1,4,0,15.33212,15.33212,.05,.05,0,0,0,0,0,2,0,0,0,2.5658667,0,39.6,49.52,29.7,67.40000000000001,5,1,1,0,0,5,6,5,1,856,8343.2988,120349.62,97945.133,126457.59,13273.063,2455.282,3891.0918 +1240,1535,2693,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9160709,7.7888069,0,0,-1053.0244,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.511476,4.9494572,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,198,714941.31,401534.13,242143.66,0,0,0,2487.5693 +1241,1536,2694,2695,-9,-9,1,1,38,0,3,0,2,2,-9,0,5,8.0064802,7.6460533,0,13,2,-28.244545,0,3,3,2021,6,0,39,40,1,0,0,6.4284296,6.4284296,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.11,59.76,8.333333333333334,2,3,0,0,12,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2695,2694,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,13,-2,91.110268,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,62.39,56.71,6.666666666666667,2,3,1,0,5,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2696,-9,2695,2694,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.10248,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2697,-9,2695,2694,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-973.11157,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2698,-9,2695,2694,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-894.49469,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1242,1537,2699,2700,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8206272,8.7146463,0,7,9,26.947615,0,2,2,2021,10,0,43,49,1,0,0,22.090261,22.090261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.26,35.91,6.666666666666667,1,1,0,0,10,7,5,1,300,2432340,904411,695671.13,65766.5,2523.2053,0,4446.7485 +1242,1537,2700,2699,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0775795,8.1764421,0,24,0,-114.36327,0,2,3,2021,12,0,15,5,1,0,0,32.770428,32.770428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.26,35.91,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,300,2432340,904411,695671.13,65766.5,2523.2053,0,4446.7485 +1242,1538,2701,-9,2700,2699,1,0,20,0,0,0,2,2,-9,0,4,8.292285,8.3974123,0,0,0,-966.90894,0,2,2,2021,7,0,50,50,1,0,1,9.5064478,9.5064478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,132,30481.307,68268.695,0,0,0,0,1068.349 +1242,1539,2702,-9,2700,2699,1,1,18,0,0,0,2,2,-9,0,3,8.1241589,8.4290838,0,0,0,-938.08112,0,2,2,2021,6,0,37,0,1,0,1,10.39836,10.39836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.37,40.83,-9,-9,10,1,1,0,0,2,7,4,1,510,29639.842,57434.465,0,0,0,-258.99695,1413.772 +1243,1540,2703,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.1400633,7.9624591,0,0,0,-950.18817,0,2,2,2021,19,5,38,38,1,5,0,9.4942865,9.4942865,.05,.05,0,0,0,0,0,0,0,0,0,.084770679,0,42.72,26.78,-9,-9,3.333333333333333,1,1,0,1,10,5,4,1,131,426691.72,354539.03,104267.34,0,0,0,1164.1022 +1244,1541,2704,2706,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.3408966,8.1001129,0,11,2,40.764011,0,-9,-9,2021,7,0,54,60,1,0,0,7.5875087,7.5875087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,54.69,57.47,8.333333333333334,1,1,0,0,8,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1244,1541,2705,-9,2706,2704,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.4987,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1244,1541,2706,2704,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.8419671,7.9889722,0,10,-2,63.71838,0,-9,-9,2021,8,0,43,26,1,0,0,6.5243864,6.5243864,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.65,56.13,10,1,1,0,0,8,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1245,1542,2707,2708,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.4571023,7.252902,45,4,60.315311,0,3,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2705073,7.6543036,45.58,55.84,44.49,61.79,8.333333333333334,1,1,0,0,8,9,3,1,306,751414.69,128719.06,552169.75,0,0,0,2163.688 +1245,1542,2708,2707,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.522078,7.6214967,45,-4,-92.736633,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4377985,44.49,61.79,45.58,55.84,3.333333333333333,1,1,0,0,7,9,3,1,306,751414.69,128719.06,552169.75,0,0,0,2163.688 +1246,1543,2709,2711,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.6941557,8.5055275,0,27,1,-15.829226,0,1,2,2021,6,0,47,51,1,0,0,12.386218,12.386218,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,9,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1543,2710,-9,2709,2711,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1010.9725,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2525752,0,57.46,56.16,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1543,2711,2709,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.5282803,9.6584139,0,27,-1,93.997337,0,2,2,2021,8,0,42,47,1,0,0,24.566679,24.566679,.05,.05,0,0,0,0,0,0,0,0,0,3.6334515,0,54.79,55.86,57.16,56.15,6.666666666666667,1,1,0,0,11,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1544,2712,-9,2709,2711,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1056.1801,1,1,1,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,1086,-37139.203,0,0,0,0,0,-575.87128 +1247,1545,2713,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.3277264,7.6793408,0,0,0,-917.89893,0,3,3,2021,31,12,16,16,1,12,0,11.088916,11.088916,.05,.05,0,0,0,0,0,7,1,1,0,0,0,25.77,41.11,-9,-9,1.666666666666667,1,1,0,1,8,7,3,0,998,251191.36,262615.25,0,0,0,0,921.18329 +1247,1546,2714,-9,2713,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.56976,0,3,-9,2021,35,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.86,31.41,-9,-9,1.666666666666667,4,2,0,1,0,7,1,0,752,-73724.188,0,0,0,0,0,332.43158 +1247,1547,2715,-9,2713,-9,1,1,20,0,0,0,2,2,-9,0,4,8.017107,7.7553105,0,0,0,-1055.4366,0,3,-9,2021,6,0,30,37,1,0,1,12.576123,12.576123,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,9,7,4,0,172,-135860.59,0,0,0,0,0,1411.6438 +1248,1548,2716,2717,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.7916541,5.8443346,50,6,-118.72515,0,2,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2318258,5.6864676,39.33,60.15,49.02,53.02,3.333333333333333,1,1,0,0,0,5,2,1,776.5,379790.88,167291.44,99716.5,0,0,0,2088.5654 +1248,1548,2717,2716,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.0861111,5.0295162,50,-6,18.140923,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7227483,4.8943644,49.02,53.02,39.33,60.15,8.333333333333334,1,1,0,0,0,5,2,1,776.5,379790.88,167291.44,99716.5,0,0,0,2088.5654 +1249,1549,2718,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.2529807,6.4200525,0,0,-942.54486,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3936672,6.4191346,43.63,23.34,-9,-9,0,1,1,0,0,0,11,2,1,574,575143.13,327422.91,468722.53,0,0,0,1345.7462 +1250,1550,2719,-9,2720,2721,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.1094,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1250,1550,2720,2721,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.3835206,7.6189442,0,9,-4,-51.155113,0,2,2,2021,11,0,37,20,1,0,0,5.4007168,5.4007168,0,0,0,0,0,0,0,0,1,1,0,0,0,48.48,55.86,57.03,48.06,6.666666666666667,1,1,0,0,10,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1250,1550,2721,2720,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.7178402,8.8023825,0,9,4,43.273312,0,-9,-9,2021,8,0,41,39,1,0,0,18.612553,18.612553,0,0,0,0,0,0,0,0,1,1,0,4.8629637,0,57.03,48.06,48.48,55.86,8.333333333333334,1,1,0,0,10,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1251,1551,2722,2723,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.1849813,8.0020027,0,9,-2,158.79356,0,-9,2,2021,11,0,40,40,1,0,0,13.443468,13.443468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.91,49,48.14,53.42,8.333333333333334,1,1,0,0,8,4,5,1,1196,1062470.5,880650.88,134059.27,116695,639.40918,0,3541.2842 +1251,1551,2723,2722,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1461201,7.7510576,0,9,2,-11.834031,0,-9,-9,2021,10,2,38,38,1,2,0,9.7746124,9.7746124,0,0,0,0,0,0,0,0,0,0,0,0,0,48.14,53.42,54.91,49,1.666666666666667,1,1,0,0,10,4,5,1,1196,1062470.5,880650.88,134059.27,116695,639.40918,0,3541.2842 +1252,1552,2724,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8545108,7.0810347,0,0,-1005.8996,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2882047,45.28,37.04,-9,-9,1.666666666666667,1,1,0,0,0,6,3,1,532,281195.5,248981.91,0,0,0,0,1065.0642 +1253,1553,2725,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.8766804,8.6328764,0,0,0,-980.43427,0,2,2,2021,10,0,36,36,1,0,0,18.954952,18.954952,.05,.05,0,0,0,0,0,0,0,0,0,3.1794572,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,11,10,5,1,703,283972.97,35992.43,177818.86,86693.844,0,4521.5293,1381.3383 +1254,1554,2726,2727,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.7384071,7.5550609,0,23,0,-7.12605,0,3,2,2021,17,6,37,37,1,6,0,7.5750136,7.5750136,.05,.05,0,0,0,0,0,0,1,1,0,3.7266045,0,47.06,44.37,50.43,53.69,8.333333333333334,1,1,0,0,9,10,5,1,661,430342.97,199008.53,266748,111074.46,0,0,4105.9023 +1254,1554,2727,2726,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2550611,8.7182379,6.6851754,23,0,121.26072,0,2,2,2021,7,0,38,40,1,0,0,14.397189,14.397189,.05,.05,0,0,0,0,0,0,1,1,0,4.2567692,7.422224,50.43,53.69,47.06,44.37,8.333333333333334,1,1,0,0,9,10,5,1,661,430342.97,199008.53,266748,111074.46,0,0,4105.9023 +1254,1555,2728,-9,2726,2727,1,0,21,0,0,0,2,2,-9,0,4,7.6024384,7.6503806,0,0,0,-1065.7667,0,2,3,2021,20,7,27,34,1,7,1,9.8142099,9.8142099,0,0,0,0,0,0,0,0,1,1,0,.15868929,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,553,-16591.125,0,0,0,0,0,1324.4231 +1254,1556,2729,-9,2726,2727,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1178.7142,1,2,2,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4502854,0,33.39,36.28,-9,-9,3.333333333333333,1,1,0,0,2,10,1,1,870,-196427.33,0,0,0,0,0,-202.21112 +1255,1557,2730,2731,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.8853297,7.3134012,0,31,-1,-57.980251,0,3,3,2021,12,0,19,19,1,0,0,7.6059904,7.6059904,0,0,0,0,0,0,0,0,0,0,0,6.4436822,0,55.79,52.62,54,53,8.333333333333334,1,1,0,0,8,6,5,1,2346,972927.63,751950.63,147535.44,24092.57,0,0,3902.6978 +1255,1557,2731,2730,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3123446,8.7805719,7.8674712,6,1,-95.348068,0,-9,-9,2021,9,0,37,37,1,1,0,7.9546862,7.9546862,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7855659,54,53,55.79,52.62,8,1,1,0,0,1,6,5,1,2346,972927.63,751950.63,147535.44,24092.57,0,0,3902.6978 +1255,1558,2732,-9,2730,2731,1,1,21,0,0,0,2,2,-9,0,4,6.8942294,7.0469475,0,0,0,-1119.7975,0,2,2,2021,10,0,37,37,1,1,1,2.395525,2.395525,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,2,1,533,88182.086,0,0,0,0,0,810.38617 +1256,1559,2733,-9,2735,2734,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-978.74194,-9,2,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1256,1559,2734,2735,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9330759,8.8177547,0,10,-2,3.2016404,0,2,3,2021,11,0,50,-9,1,2,0,16.401438,16.401438,.05,.05,0,0,0,0,0,2,1,1,0,3.0262549,0,53.11,47.09,42.76,49.72,6.666666666666667,1,1,0,0,11,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1256,1559,2735,2734,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7940798,8.2060595,0,10,2,6.2591662,0,2,3,2021,20,8,39,39,1,8,0,7.6018515,7.6018515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.76,49.72,53.11,47.09,3.333333333333333,1,1,0,0,10,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1257,1560,2736,2737,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,66,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,38.570526,0,0,1,1,0,2.730304,0,63.89,20.26,41.3,47.04,10,1,1,0,0,0,1,1,1,711,208185.84,2075.9751,99718,21532.377,0,0,633.62756 +1257,1560,2737,2736,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,66,1,0,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,41.3,47.04,63.89,20.26,10,1,1,0,0,0,1,1,1,711,208185.84,2075.9751,99718,21532.377,0,0,633.62756 +1258,1561,2738,2739,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,11,8,10.904052,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.99,57.97,57.91,43.45,3.333333333333333,1,1,0,0,13,10,2,0,602,717327.63,178368.75,272453.5,0,0,0,1154.5616 +1258,1561,2739,2738,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.271863,7.2365065,0,11,-8,-158.55028,0,2,1,2021,9,2,12,12,1,2,0,12.736644,12.736644,0,0,0,0,0,0,0,0,1,1,0,0,0,57.91,43.45,34.99,57.97,6.666666666666667,1,1,0,0,13,10,2,0,602,717327.63,178368.75,272453.5,0,0,0,1154.5616 +1259,1562,2740,2741,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.0069962,8.0709925,21,9,83.946167,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,9.5482464,0,0,1,1,0,7.2918482,7.7962713,36.78,41.13,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,380,872920.13,176596.72,333367.56,0,0,0,1836.2087 +1259,1562,2741,2740,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,2.6093814,2.6315222,21,0,10.577249,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.65945488,2.6672647,57.16,56.15,36.78,41.13,10,1,1,0,0,8,5,3,1,380,872920.13,176596.72,333367.56,0,0,0,1836.2087 +1260,1563,2742,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,1,10,0,0,3,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.17,59.31,36.02,37.92,3.333333333333333,1,1,1,1,3,4,1,0,2376,29543.633,0,0,0,0,0,525.15387 +1260,1564,2743,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,0,0,0,1,-10,0,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.02,37.92,41.17,59.31,5,1,1,1,1,0,4,1,0,872,67429.703,0,0,0,0,0,1084.2925 +1261,1565,2744,2748,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,7.6048017,7.5831556,0,15,3,87.035667,0,3,1,2021,9,0,40,20,1,1,0,6.0712242,6.0712242,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,2,3,0,0,8,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2745,-9,2748,2744,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7368,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2746,-9,2748,2744,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.0123,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2747,-9,2748,2744,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.7781,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2748,2744,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,15,-3,-130.09697,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1262,1566,2749,2750,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1823101,7.9684944,0,6,0,-55.480606,0,3,3,2021,11,0,37,38,1,0,0,10.287006,10.287006,.05,.05,0,0,0,0,0,2,1,1,0,4.5541348,0,57.33,53.46,57.52,15.94,1.666666666666667,1,1,0,0,7,7,4,1,1537.5,31975.232,-40569.215,161747.44,54576.617,0,0,2715.8467 +1262,1566,2750,2749,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,7.8094969,8.0509739,0,6,0,-1.5441771,0,3,3,2021,10,0,41,42,1,0,0,6.8508439,6.8508439,.05,.05,0,0,0,0,0,0,1,1,0,5.015584,0,57.52,15.94,57.33,53.46,6.666666666666667,1,1,0,0,7,7,4,1,1537.5,31975.232,-40569.215,161747.44,54576.617,0,0,2715.8467 +1263,1567,2751,2752,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.4294586,8.0721188,46,-1,-44.191078,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1226482,8.3814116,60.13,49.27,54.95,44.79,8.333333333333334,1,1,0,0,5,4,4,1,461,2058883.5,1557289,299223,0,0,0,3976.4717 +1263,1567,2752,2751,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5664849,7.1405416,46,1,42.448261,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1195598,7.2830653,54.95,44.79,60.13,49.27,8.333333333333334,1,1,0,0,0,4,4,1,461,2058883.5,1557289,299223,0,0,0,3976.4717 +1264,1568,2753,2754,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,2,26,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,17.115435,0,0,1,1,0,0,0,57,11.12,27.23,33.77,6.666666666666667,1,1,0,0,0,7,1,1,7139.5,453509.25,-63577.809,313564.56,0,0,0,2241.188 +1264,1568,2754,2753,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,2,-26,0,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.23,33.77,57,11.12,0,1,1,0,0,0,7,1,1,7139.5,453509.25,-63577.809,313564.56,0,0,0,2241.188 +1264,1569,2755,-9,2754,2753,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.2006,0,3,3,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.49,54.45,-9,-9,5,1,1,1,1,0,7,1,1,608,32814.262,0,0,0,0,0,888.45148 +1264,1570,2756,-9,2754,2753,1,1,23,0,0,0,2,2,-9,0,4,5.9233527,6.1426082,0,0,0,-1012.4603,0,3,3,2021,7,0,25,16,1,0,1,2.2125061,2.2125061,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,7,2,1,1028,-45647.965,0,0,0,0,0,-576.73981 +1265,1571,2757,2759,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.7692146,7.8682384,0,10,6,126.73037,0,3,3,2021,22,10,33,32,1,10,0,10.36673,10.36673,.05,.05,0,0,0,0,0,0,0,0,0,1.2644612,0,29.78,51.23,44.78,56.37,5,1,1,0,0,10,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1265,1571,2758,-9,2757,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.9912,-9,1,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,51.9,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1265,1571,2759,2757,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1099949,8.961195,0,10,-6,-153.09863,0,-9,-9,2021,13,5,59,59,1,5,0,13.574198,13.574198,.05,.05,0,0,0,0,0,0,0,0,0,4.0465727,0,44.78,56.37,29.78,51.23,3.333333333333333,1,1,0,0,12,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1266,1572,2760,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-949.55054,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7160738,0,7,1,1,0,0,0,53.78,21.48,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,735,91353.773,0,128693.78,0,0,0,933.08716 +1267,1573,2761,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.0164261,6.1390672,0,0,-1028.6511,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7753966,6.1076517,21.77,64.69,-9,-9,0,1,1,0,1,7,7,2,0,313,264643.78,79619.289,0,0,0,0,-1.3760154 +1268,1574,2762,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,5.9704514,6.1012435,0,0,0,-1067.4611,-9,3,3,2021,11,0,13,0,1,1,0,2.8601201,2.8601201,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49,49,-9,-9,7,1,1,0,1,2,8,2,0,1104,69414.992,62229.16,0,0,3565.2686,0,445.02325 +1269,1575,2763,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,6.3451638,7.0323982,0,0,-1042.1996,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6862445,60.08,21.04,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,219,73907.469,66464.492,86338.797,0,0,0,1820.3883 +1270,1576,2764,2765,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,7.3717399,7.5925174,6.2827759,2,-2,-130.67989,0,2,2,2021,8,0,9,45,1,0,0,20.110243,20.110243,0,0,0,0,0,0,0,0,1,1,0,7.5622482,6.6147361,59.43,58.05,57.09,46.7,10,1,1,0,0,13,12,3,1,1202.5,518538.13,6664.1421,242898.34,0,0,0,3672.8535 +1270,1576,2765,2764,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2426124,7.77105,23,2,24.73423,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2567973,57.09,46.7,59.43,58.05,8.333333333333334,1,1,0,0,12,12,3,1,1202.5,518538.13,6664.1421,242898.34,0,0,0,3672.8535 +1271,1577,2766,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1039.0416,0,3,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12443934,0,42.2,21.18,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,105,6572.4189,59576.215,0,0,0,0,1640.9027 +1272,1578,2767,2768,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.8575001,8.9055042,0,3,2,-55.817654,0,2,2,2021,12,1,37,37,1,1,0,17.125111,17.125111,0,0,.05,0,0,0,0,0,0,0,0,4.6523361,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,265,1269012.3,1078827.4,176234.23,0,0,0,3339.9966 +1272,1578,2768,2767,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.7377114,7.520184,0,3,-2,38.638702,0,3,3,2021,6,0,30,20,1,0,0,8.0537653,8.0537653,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,12,5,1,265,1269012.3,1078827.4,176234.23,0,0,0,3339.9966 +1272,1579,2769,-9,2768,2767,1,0,27,0,0,0,1,1,1,0,4,0,0,0,0,0,-1058.0292,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,2,12,1,1,676,172490.95,0,0,0,0,0,0 +1272,1580,2770,-9,2768,2767,1,0,22,0,0,0,1,1,1,0,5,6.3283873,6.3130374,0,0,0,-1104.575,-9,3,1,2021,4,0,5,0,1,0,1,17.623863,17.623863,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,1043,-270936.34,0,0,0,0,0,-147.70766 +1273,1581,2771,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,6.6969628,6.4812016,18,12,-71.374512,0,-9,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6137118,7.030375,29.23,45.05,51,56,1.666666666666667,1,1,1,0,8,6,2,1,2345,-39475.953,23612.5,0,0,0,0,156.0677 +1274,1582,2772,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5510454,8.5857487,0,0,0,-1099.1068,0,1,2,2021,6,0,37,37,1,0,0,17.266809,17.266809,.05,.05,0,0,0,0,0,0,1,1,0,4.9451094,0,65.21000000000001,44.28,-9,-9,8.333333333333334,1,1,0,0,6,11,5,1,2728,468770.63,210267.94,142676.52,0,0,0,1638.5884 +1275,1583,2773,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.1204147,7.9665222,0,0,0,-939.16223,0,-9,-9,2021,20,7,32,31,1,7,0,8.7540932,8.7540932,0,0,0,0,0,0,0,0,0,0,0,0,0,34.55,35.52,-9,-9,3.333333333333333,4,2,0,1,9,2,4,0,454,-75083.961,0,0,0,0,0,1372.7704 +1276,1584,2774,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0313511,6.65728,0,0,-916.13098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9190116,6.6166878,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1964,227999.28,123877.1,0,0,0,0,1135.7609 +1277,1585,2775,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,6.7634373,6.9593687,20,12,-109.67388,0,-9,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.3223128,6.9894738,49.72,39.53,57.97,37.36,6.666666666666667,1,1,1,0,8,6,2,1,1288,-94195.172,46240.254,0,0,0,0,694.71594 +1277,1586,2776,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,6.2078433,6.6059499,0,10,-12,6.0734625,0,-9,-9,2021,11,1,20,10,1,1,0,2.9408169,2.9408169,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.97,37.36,49.72,39.53,5,1,1,0,0,9,6,2,1,653,115797.31,-66276.039,0,0,28866.77,0,369.93365 +1278,1587,2777,-9,2778,-9,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-985.04089,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,4,1,231.5,420328.25,254139.75,213182.05,129496.8,0,0,2460.8828 +1278,1587,2778,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.6007423,8.7952738,0,0,0,-949.60608,-9,1,1,2021,8,0,44,0,1,0,0,15.194944,15.194944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,231.5,420328.25,254139.75,213182.05,129496.8,0,0,2460.8828 +1279,1588,2779,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.0957336,7.9717817,0,0,-924.71277,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.9398341,8.0899687,66.37,38.36,-9,-9,10,1,1,0,0,0,11,4,1,261,795805,412231.63,183728.97,0,0,0,2546.1587 +1280,1589,2780,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,6.7600603,6.3945498,0,0,0,-1138.4094,0,3,-9,2021,27,11,6,6,1,11,0,11.766842,11.766842,0,0,0,0,0,0,0,0,1,0,1,0,0,50,56,-9,-9,0,1,1,0,1,5,4,2,0,4808,74320.977,0,161959.67,0,0,5720.4316,168.23582 +1280,1590,2781,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1067.1079,0,-9,-9,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,3.9904675,0,62.39,56.71,-9,-9,10,1,1,1,0,0,4,1,0,2012,2241.6807,0,0,0,0,0,552.19794 +1281,1591,2782,2783,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4910989,7.828618,0,27,7,17.519087,0,3,3,2021,10,0,35,40,1,0,0,5.9293361,5.9293361,.05,.05,0,0,0,0,0,2,1,1,0,0,0,56.11,36.37,29.72,50.54,5,1,1,0,0,9,11,4,1,350.5,438629.81,80579.57,66995.547,4162.0425,0,0,2351.5225 +1281,1591,2783,2782,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.3044672,8.1818848,0,27,-7,-157.63672,0,3,3,2021,9,1,33,22,1,1,0,14.987599,14.987599,0,0,0,0,0,0,0,7,1,1,0,0,0,29.72,50.54,56.11,36.37,5,1,1,0,0,9,11,4,1,350.5,438629.81,80579.57,66995.547,4162.0425,0,0,2351.5225 +1281,1592,2784,-9,2783,2782,1,1,23,0,0,0,2,2,-9,0,2,8.1873226,7.6948605,0,0,0,-1019.6411,0,2,3,2021,12,1,38,18,1,1,1,9.8879471,9.8879471,0,0,0,0,0,0,0,0,1,1,0,0,0,36.2,41.84,-9,-9,3.333333333333333,1,1,0,0,3,11,4,1,495,75494.984,0,0,0,0,0,1423.0665 +1281,1593,2785,-9,2783,2782,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1062.6234,1,2,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,558,-43529.582,0,0,0,0,0,909.95111 +1282,1594,2786,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-917.83673,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,1754,-59190.203,0,0,0,0,0,411.57922 +1283,1595,2787,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-990.66846,-9,-9,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,43.73,-9,-9,0,1,1,0,0,4,7,1,1,4486,32674.299,0,0,0,0,-220.5713,550.38605 +1284,1596,2788,-9,-9,-9,1,1,42,0,2,0,2,2,0,0,5,0,0,0,0,0,-940.24841,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.95,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,200,-154950.33,0,0,0,0,0,1402.3357 +1285,1597,2789,2790,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.0568228,7.9080534,8,2,-60.175476,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1087618,8.1479359,62.39,56.71,52.62,45.08,8.333333333333334,1,1,0,0,9,10,3,1,1861.5,585585.88,410055.25,0,0,0,0,2647.2358 +1285,1597,2790,2789,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.2248912,5.1321058,8,-2,-7.0371637,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9941529,5.1731277,52.62,45.08,62.39,56.71,8.333333333333334,1,1,0,0,3,10,3,1,1861.5,585585.88,410055.25,0,0,0,0,2647.2358 +1285,1598,2791,-9,2790,2789,1,0,23,0,0,0,1,1,1,0,5,8.1106033,8.0932817,0,0,0,-929.60406,-9,2,2,2021,21,7,42,0,1,7,0,7.2517118,7.2517118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,21.79,69.98999999999999,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1072,-49997.52,-61532.887,0,0,0,0,566.7995 +1286,1599,2792,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.1962442,5.3542709,0,0,-1123.3809,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3425918,43.49,43.6,-9,-9,6.666666666666667,1,1,0,1,0,2,2,0,545,121838.92,58110.711,0,0,0,0,2231.7119 +1287,1600,2793,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.1776991,7.1038985,0,0,-931.18433,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,1.7532028,5.0377545,21.883066,0,1,1,0,0,7.0560241,44.43,43.51,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1526,557363.31,318896.84,220487.78,0,0,0,2431.4939 +1288,1601,2794,2797,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,0,0,0,15,-6,83.369759,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.51,59.43,35.49,44.17,6.666666666666667,2,3,0,1,3,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2795,-9,2794,2797,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.00299,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2796,-9,2794,2797,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1149.7305,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2797,2794,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,6.6311603,6.9445443,0,15,6,85.535683,0,3,2,2021,20,8,25,30,1,8,0,4.5033627,4.5033627,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.49,44.17,38.51,59.43,3.333333333333333,2,3,0,0,7,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2798,-9,2794,2797,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-846.33734,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1289,1602,2799,2800,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2759027,8.857811,0,12,-5,13.721148,0,2,2,2021,6,0,50,65,1,0,0,16.291853,16.291853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.39,43.02,10,1,1,0,0,14,8,4,0,1458,164294,100802.03,366785.19,202381.3,6494.542,8493.8789,3784.3538 +1289,1602,2800,2799,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.3769555,7.5028133,0,14,5,136.01364,0,3,3,2021,12,1,20,30,1,1,0,8.6934576,8.6934576,0,0,0,0,0,0,0,2,0,0,0,0,0,46.39,43.02,57.16,56.15,6.666666666666667,1,1,0,0,14,8,4,0,1458,164294,100802.03,366785.19,202381.3,6494.542,8493.8789,3784.3538 +1290,1603,2801,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.6102667,8.3980865,0,0,0,-1064.1935,0,2,-9,2021,6,0,38,38,1,0,0,15.380936,15.380936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1414,709950.63,378652.06,326123.75,36970.875,5899.085,4538.3022,1894.8158 +1290,1604,2802,-9,2801,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1053.8191,0,2,-9,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6,1,1,1,0,0,9,1,1,1181,42940.727,0,0,0,0,0,0 +1291,1605,2803,2804,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7370825,9.0221205,0,6,-1,88.3423,0,2,2,2021,9,0,55,50,1,0,0,18.756063,18.756063,0,0,0,0,0,0,0,7,1,1,0,4.4584761,0,50.17,53.95,42.21,42.88,8.333333333333334,1,1,0,0,7,11,5,1,3417,306646.25,81713.25,308824.5,211032.88,0,0,3522.9399 +1291,1605,2804,2803,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,6,1,-33.513828,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3460541,0,42.21,42.88,50.17,53.95,6.666666666666667,1,1,0,0,1,11,5,1,3417,306646.25,81713.25,308824.5,211032.88,0,0,3522.9399 +1291,1606,2805,-9,2804,2803,1,1,30,0,0,0,2,2,-9,1,3,7.2622995,7.260334,0,0,0,-988.95129,0,2,2,2021,12,0,17,17,1,0,1,10.338357,10.338357,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,-9,-9,6.666666666666667,1,1,0,0,7,11,3,1,510,-59477.527,102173.46,0,0,0,0,1354.8308 +1292,1607,2806,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.0185909,6.496901,0,0,-949.61487,0,3,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,30.187685,0,0,1,0,1,0,6.3199344,24.66,36.34,-9,-9,5,1,1,0,0,4,11,2,0,2951,-130218.77,61197.305,0,0,0,1007.1787,1007.5876 +1292,1608,2807,-9,2806,-9,1,1,44,0,0,0,3,3,-9,0,4,7.6576633,7.8911319,0,0,0,-1073.8746,0,3,-9,2021,8,0,38,38,1,0,0,7.6147523,7.6147523,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,11,4,0,457,364018.63,222697.69,223047.5,38595.582,0,-562.47681,1199.4073 +1293,1609,2808,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.3937054,6.3171453,0,0,-1018.0353,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5833702,6.2475839,49.28,46.56,-9,-9,8.333333333333334,1,1,0,0,11,6,2,1,514,61139.387,12024.173,0,0,0,-660.04095,1701.8348 +1294,1610,2809,-9,2811,2810,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1071.3486,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1294,1610,2810,2811,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.4974251,8.5158577,0,21,2,-124.81538,0,2,2,2021,11,0,47,42,1,0,0,16.347126,16.347126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,44.7,51.62,6.666666666666667,1,1,0,0,10,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1294,1610,2811,2810,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.3919907,7.5129962,0,21,-2,52.511093,0,3,3,2021,16,4,21,19,1,4,0,13.132417,13.132417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,51.62,51.65,52.38,3.333333333333333,1,1,0,0,10,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1295,1611,2812,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.17322,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,33.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,676,253457.19,0,90269.383,0,0,0,466.00546 +1296,1612,2813,2814,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.3566236,8.5155125,0,7,-5,199.26477,0,2,3,2021,7,1,39,37,1,1,0,12.971553,12.971553,.05,.05,0,0,0,0,0,0,0,0,0,3.5792222,0,57.06,57.76,59.53,56.44,10,1,1,0,0,8,12,4,1,697.5,1512817.9,996885.75,343041.5,56521.672,22851.164,0,3354.8198 +1296,1612,2814,2813,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5199089,7.8028922,0,7,5,114.01851,0,3,3,2021,6,0,40,42,1,0,0,5.4341993,5.4341993,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,57.06,57.76,1.666666666666667,1,1,0,0,8,12,4,1,697.5,1512817.9,996885.75,343041.5,56521.672,22851.164,0,3354.8198 +1296,1613,2815,-9,2813,2814,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-936.12054,-9,2,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,6.666666666666667,1,1,0,0,8,12,1,1,1430,-70624.789,0,0,0,0,0,-94.729706 +1296,1614,2816,-9,2813,2814,1,0,20,0,0,0,2,2,-9,0,4,7.379591,7.8510613,0,0,0,-871.75684,0,2,2,2021,7,0,30,15,1,0,1,10.197522,10.197522,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,182,177161.91,-30821.084,0,0,3539.7878,0,1042.3594 +1297,1615,2817,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1034.6176,1,-9,-9,2021,7,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,1,2,12,1,1,197,120341.65,0,0,0,0,0,225.33775 +1297,1616,2818,2819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,2,7,235.6041,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.95,37.31,18.47,22.91,8.333333333333334,1,1,0,0,0,12,2,1,1450,7346.8789,28936.051,0,0,1126.8988,0,2428.5557 +1297,1616,2819,2818,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.0998793,5.7037234,2,-7,54.908012,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9016576,18.47,22.91,48.95,37.31,1.666666666666667,1,1,0,0,0,12,2,1,1450,7346.8789,28936.051,0,0,1126.8988,0,2428.5557 +1298,1617,2820,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.09132,4.0943203,0,0,-1011.7755,0,-9,-9,2021,6,0,0,17,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,2.7418454,4.4473829,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,130,330754.72,0,128353.88,0,0,0,316.95523 +1299,1618,2821,2822,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9161038,7.1135488,44,-2,58.528339,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0180659,7.1245728,57.35,45.09,52.23,55.6,8.333333333333334,1,1,0,0,9,6,3,1,414,1426916.5,934453.88,258961.63,0,0,0,2297.7998 +1299,1618,2822,2821,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.059598,7.6891189,44,2,66.855873,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3185558,8.021203,52.23,55.6,57.35,45.09,8.333333333333334,1,1,0,0,12,6,3,1,414,1426916.5,934453.88,258961.63,0,0,0,2297.7998 +1300,1619,2823,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7204967,7.6672935,0,0,-747.62775,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2794771,7.5261698,62.39,56.71,-9,-9,8.333333333333334,4,5,0,0,0,8,3,1,2089,721847.19,372357,399608.03,0,0,0,3367.4382 +1301,1620,2824,2826,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,9.7533236,9.5763102,0,7,-1,23.679237,0,2,3,2021,6,0,50,45,1,0,0,33.737244,33.737244,.05,.05,0,0,0,0,0,0,1,1,0,8.5894699,0,58.49,50.2,50.01,55.31,8.333333333333334,2,3,0,0,9,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2825,-9,2826,2824,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.58,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2826,2824,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.8067369,8.8652143,0,12,1,-99.300407,0,2,2,2021,10,1,45,45,1,1,0,22.179237,22.179237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,58.49,50.2,10,2,3,0,0,6,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2827,-9,2826,2824,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.70996,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1302,1621,2828,2829,-9,-9,1,1,49,1,1,0,2,2,-9,0,2,8.331872,8.0708914,0,9,12,-92.602318,0,2,2,2021,10,0,38,40,1,0,0,12.919253,12.919253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,44.27,38.85,61.86,8.333333333333334,1,1,0,0,10,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1302,1621,2829,2828,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,7.1515923,7.3046813,0,9,-12,-83.146545,0,-9,-9,2021,14,2,17,21,1,2,0,8.5212564,8.5212564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.85,61.86,54.37,44.27,8.333333333333334,1,1,0,0,10,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1302,1621,2830,-9,2829,2828,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.2407,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1303,1622,2831,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.3517346,7.371767,0,0,-1056.0629,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.52845162,7.6535978,32.6,29.78,-9,-9,5,1,1,0,0,7,13,3,1,397,324024.34,257707.61,39992.066,0,0,0,858.57886 +1304,1623,2832,2833,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.4732761,7.4052896,40,-5,34.539436,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5473008,47.71,43.4,55.9,51.29,3.333333333333333,1,1,0,0,9,2,5,1,481.5,1227140.5,950947.88,333800.94,0,13932.957,789.86353,4415.7983 +1304,1623,2833,2832,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.6736307,8.8118401,5.420897,40,5,57.761593,-9,3,3,2021,9,0,17,0,1,0,0,38.594002,38.594002,.05,.05,0,0,0,0,0,0,1,1,0,5.6133575,5.3341784,55.9,51.29,47.71,43.4,8.333333333333334,1,1,0,0,12,2,5,1,481.5,1227140.5,950947.88,333800.94,0,13932.957,789.86353,4415.7983 +1305,1624,2834,2835,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.6619954,7.6128922,61,-2,25.346783,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.5757575,7.4610434,53.88,22.39,46.73,32.73,8.333333333333334,1,1,0,0,0,9,4,1,517,1779161.5,568428.31,892362.38,0,0,0,3998.3662 +1305,1624,2835,2834,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,8.2040606,8.4004078,12,2,-81.607971,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.594985,7.9957781,46.73,32.73,53.88,22.39,8.333333333333334,1,1,0,0,0,9,4,1,517,1779161.5,568428.31,892362.38,0,0,0,3998.3662 +1306,1625,2836,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1105.7357,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,53.36,-9,-9,5,1,1,0,0,1,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1306,1625,2837,-9,2836,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.39014,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1306,1625,2838,-9,2836,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3395,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1307,1626,2839,2840,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5645428,7.937562,17,1,40.149918,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8757024,56.33,51.02,46.61,56.93,10,1,1,0,0,9,7,4,0,589,2346860.5,1301957.6,461994.94,0,0,0,4300.1313 +1307,1626,2840,2839,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.91819,8.3731928,17,-1,-16.208403,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4875584,46.61,56.93,56.33,51.02,8.333333333333334,1,1,0,0,8,7,4,0,589,2346860.5,1301957.6,461994.94,0,0,0,4300.1313 +1308,1627,2841,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4931965,8.5602093,0,0,0,-1016.7771,0,1,1,2021,6,0,100,55,1,0,0,8.7495604,8.7495604,.05,.05,0,0,0,0,0,0,1,1,0,1.6693212,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,5,0,3869,147986.92,7277.0254,0,0,1724.015,0,1442.3835 +1309,1628,2842,2843,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.6877766,6.7621837,57,3,104.21722,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7339416,6.6832676,53,44,32.16,34.32,8,1,1,0,0,0,7,2,1,544.5,51057.523,7443.8789,0,0,0,0,2264.9524 +1309,1628,2843,2842,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,57,-3,42.060825,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.0403709,0,32.16,34.32,53,44,5,1,1,0,0,8,7,2,1,544.5,51057.523,7443.8789,0,0,0,0,2264.9524 +1310,1629,2844,2847,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.7364426,8.4151583,0,16,-2,-120.18527,0,2,2,2021,8,0,41,45,1,0,0,15.700457,15.700457,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.54,62.09,32.08,21.69,6.666666666666667,1,1,0,0,8,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2845,-9,2847,2844,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.3557,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2846,-9,2847,2844,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3311,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2847,2844,-9,-9,1,0,35,0,2,0,2,2,-9,0,2,7.7589908,7.9470339,0,14,2,-96.033691,0,2,2,2021,28,11,53,55,1,11,0,7.295619,7.295619,0,0,.05,0,0,0,0,0,1,1,0,0,0,32.08,21.69,50.54,62.09,5,1,1,0,0,8,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1311,1630,2848,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,7.5918665,8.1214657,0,0,-970.65479,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.43667263,0,0,1,1,0,2.6502166,7.8146992,41.7,30.04,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,398,976352,115803.54,658712.94,0,0,0,1438.0077 +1312,1631,2849,2850,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,45,0,-.82954973,-9,2,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4696269,0,50,47,57.06,57.76,7,1,1,0,0,0,7,5,1,569,3239536,2004223.9,1610224.4,385928.28,0,0,7021.6299 +1312,1631,2850,2849,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,8.6070185,9.2059584,8.7877178,45,0,-46.461487,0,2,2,2021,6,0,30,-9,1,0,0,27.837395,27.837395,0,0,0,0,0,0,0,0,1,1,0,0,9.3032627,57.06,57.76,50,47,8.333333333333334,1,1,0,0,8,7,5,1,569,3239536,2004223.9,1610224.4,385928.28,0,0,7021.6299 +1313,1632,2851,-9,2852,2853,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.03888,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2852,2853,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.7562351,8.4126062,0,22,-6,110.3142,0,3,2,2021,30,12,32,32,1,12,0,21.522942,21.522942,.05,.05,0,0,0,0,0,2,1,1,0,.47851208,0,15.8,48.6,52.48,55.6,1.666666666666667,1,1,0,0,15,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2853,2852,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.7579803,8.7073755,0,20,6,51.30497,0,3,3,2021,10,0,45,85,1,0,0,13.030518,13.030518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,15.8,48.6,8.333333333333334,2,3,0,0,15,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2854,-9,2852,2853,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.462,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1314,1633,2855,2856,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.7515173,8.762826,7.5492477,7,0,-142.40746,0,-9,-9,2021,12,0,40,40,1,0,0,6.935873,6.935873,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8622074,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,4,4,1,1154,805278.5,266210.47,214775.84,0,0,0,2317.4827 +1314,1633,2856,2855,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.3130031,7.9695191,7.2450962,7,0,75.437614,0,3,2,2021,12,0,10,12,1,0,0,11.840704,11.840704,.05,.05,0,0,0,0,0,0,0,0,0,0,7.255147,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,13,4,4,1,1154,805278.5,266210.47,214775.84,0,0,0,2317.4827 +1315,1634,2857,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.7875547,8.7376528,0,0,0,-1117.1914,0,3,3,2021,18,5,37,37,1,5,0,18.33604,18.33604,0,0,0,0,0,0,0,7,0,0,0,4.925561,0,39.39,37.66,-9,-9,5,1,1,0,0,8,8,5,1,96,-107384.59,0,0,0,0,0,2352.3069 +1316,1635,2858,2859,-9,-9,1,0,34,0,0,0,3,3,-9,1,1,0,0,0,10,-4,0,-9,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.86,51.46,38.33,21.71,3.333333333333333,1,1,0,0,0,13,1,1,1469,0,0,0,0,0,0,2235.8481 +1316,1635,2859,2858,-9,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,14,4,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.33,21.71,18.86,51.46,6.666666666666667,1,1,0,0,0,13,1,1,1469,0,0,0,0,0,0,2235.8481 +1317,1636,2860,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.0242062,7.7841315,0,1,-3,-22.336098,-9,3,3,2021,24,12,37,0,1,12,0,10.002261,10.002261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.65,59.83,19.36,61.35,6.666666666666667,1,1,0,0,8,2,3,0,709,-72888.234,21793.756,0,0,3984.71,32.802563,1059.6692 +1317,1637,2861,-9,-9,-9,1,0,29,0,0,0,1,1,-9,1,3,0,0,0,1,3,132.92426,-9,-9,-9,2021,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.36,61.35,29.65,59.83,3.333333333333333,1,1,0,1,0,2,3,0,250,49327.426,0,0,0,0,0,1881.0266 +1318,1638,2862,2863,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.8364124,7.8363838,7.4072142,6,0,28.037718,0,2,2,2021,7,0,11,10,1,0,0,7.2512503,7.2512503,0,0,0,0,0,0,0,7,1,1,0,5.1365685,7.3292065,48.28,60.18,57.91,40.74,6.666666666666667,1,1,0,0,6,11,3,1,226,336213.75,366499.19,97376.406,21546.281,0,0,3156.4941 +1318,1638,2863,2862,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.2388411,7.0293603,6,9,-102.53671,0,2,2,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.0485702,57.91,40.74,48.28,60.18,5,1,1,0,0,7,11,3,1,226,336213.75,366499.19,97376.406,21546.281,0,0,3156.4941 +1319,1639,2864,2867,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,6.7012558,6.8693051,0,6,-4,23.762737,0,-9,-9,2021,3,0,12,11,1,0,0,8.8696156,8.8696156,0,0,.05,0,0,0,0,0,1,1,0,7.0061936,0,59.43,58.05,59.43,58.05,10,2,3,0,0,2,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2865,-9,2864,2867,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.91907,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2866,-9,2864,2867,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.25964,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2867,2864,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,8.8705206,8.7481518,0,6,4,38.117908,0,1,1,2021,6,0,40,43,1,0,0,18.916059,18.916059,0,0,.05,0,0,0,0,0,1,1,0,7.2726965,0,59.43,58.05,59.43,58.05,10,1,1,0,0,7,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1320,1640,2868,-9,2870,2869,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.47229,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2869,2870,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.0056314,8.2112732,0,12,5,12.866344,0,2,2,2021,11,0,46,39,1,0,0,6.4718194,6.4718194,.05,.05,0,0,0,0,0,0,1,1,0,.5103727,0,55.2,49.4,52.37,56.93,8.333333333333334,1,1,0,0,13,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2870,2869,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9674802,8.4189672,0,12,-5,-16.396084,0,-9,-9,2021,10,0,35,24,1,0,0,12.148306,12.148306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,55.2,49.4,8.333333333333334,1,1,0,0,13,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2871,-9,2870,2869,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4532,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1321,1641,2872,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.1561546,5.1413045,0,0,-1010.7972,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.9520097,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1884,-1336.3365,0,0,0,0,0,553.401 +1322,1642,2873,-9,2875,2874,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-936.3053,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.96,51.88,-9,-9,6.666666666666667,1,1,0,0,1,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2874,2875,-9,-9,1,1,55,0,2,0,2,2,-9,0,2,5.4748616,5.5476284,0,17,5,32.024948,0,-9,-9,2021,11,0,48,40,1,0,0,.71494454,.71494454,.05,.05,0,0,0,0,0,0,1,1,0,7.6791596,0,62.61,26.97,45.91,55.94,6.666666666666667,1,1,0,0,13,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2875,2874,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6796017,7.4627476,0,17,-5,-144.19141,0,-9,3,2021,11,0,24,18,1,0,0,12.773687,12.773687,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,55.94,62.61,26.97,8.333333333333334,1,1,0,0,13,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2876,-9,2875,2874,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1018.0174,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2877,-9,2875,2874,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.3956,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1323,1643,2878,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.0450993,7.9443488,0,0,0,-1104.8533,0,2,1,2021,30,12,38,37,1,12,0,10.519613,10.519613,0,0,0,0,0,0,0,0,0,0,0,0,0,19.78,58.73,-9,-9,3.333333333333333,3,4,0,0,11,9,4,0,133,-244543.92,0,0,0,0,2292.3267,1006.8713 +1323,1644,2879,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-995.33673,-9,-9,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,3,9,1,0,1140,-96944.414,0,0,0,13368.516,0,226.60646 +1324,1645,2880,-9,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,3.3425224,3.2602863,0,0,-1001.136,0,-9,-9,2021,22,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,2.8563459,45.41,30.34,-9,-9,3.333333333333333,1,1,0,1,0,12,2,0,1998,-157181.5,0,0,0,0,0,1627.9949 +1324,1645,2881,-9,2880,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1018.0101,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,1998,-157181.5,0,0,0,0,0,1627.9949 +1324,1646,2882,-9,2880,-9,1,1,18,0,1,0,3,3,1,1,4,0,0,0,0,0,-1000.8228,-9,3,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,12,1,0,1119,90797.414,0,0,0,0,0,1513.5703 +1325,1647,2883,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0739489,8.1165094,0,0,0,-1109.641,0,2,2,2021,11,0,40,51,1,0,0,8.9889584,8.9889584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,6,2,4,1,758,61355.941,86449.102,0,0,0,1145.0389,1011.1022 +1326,1648,2884,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.3829098,8.5487089,5.2807641,0,0,-994.7652,0,3,3,2021,9,1,46,42,1,1,0,12.060589,12.060589,0,0,0,0,0,0,0,7,0,0,0,0,5.8472691,52.97,48.43,-9,-9,8.333333333333334,4,2,0,0,9,6,5,1,901,1261022,807053.69,327440.91,0,0,0,1038.5574 +1326,1649,2885,-9,2884,-9,1,1,33,0,0,0,1,1,-9,0,4,8.2043924,8.0093641,0,0,0,-1102.4415,0,1,-9,2021,10,0,45,40,1,0,1,8.4333477,8.4333477,.05,.05,0,0,0,0,0,0,0,0,0,2.3869178,0,61.29,43.31,-9,-9,8.333333333333334,4,2,0,0,8,6,4,1,1778,226988.98,122947.85,0,0,12829.586,0,2524.9961 +1327,1650,2886,2887,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.8962259,8.9260025,0,27,7,-116.51428,0,3,2,2021,10,0,51,48,1,0,0,14.134623,14.134623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.89,35.98,41,56.99,6.666666666666667,1,1,0,0,11,2,5,1,813.5,403622.16,153747.75,202944.09,12883.77,1091.1465,0,3780.8535 +1327,1650,2887,2886,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0516653,8.7359543,0,26,-7,70.168533,0,3,3,2021,9,0,33,33,1,0,0,12.859448,12.859448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,56.99,51.89,35.98,8.333333333333334,1,1,0,0,11,2,5,1,813.5,403622.16,153747.75,202944.09,12883.77,1091.1465,0,3780.8535 +1328,1651,2888,2889,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.7501621,6.871387,49,0,85.745293,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3380182,7.0485454,55.34,54.26,54.95,47.49,8.333333333333334,1,1,0,0,3,9,2,1,424.5,544971.19,330924.5,230733,0,0,0,2417.0527 +1328,1651,2889,2888,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,6.5617933,6.2162199,49,0,260.50314,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0931273,6.4333591,54.95,47.49,55.34,54.26,8.333333333333334,1,1,0,0,4,9,2,1,424.5,544971.19,330924.5,230733,0,0,0,2417.0527 +1329,1652,2890,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.2943101,5.4586453,0,0,-1099.5442,0,3,3,2021,9,1,0,20,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4590864,5.3514285,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,11,12,2,1,219,373010.69,0,173296.13,0,0,0,-154.23726 +1330,1653,2891,2892,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.8609867,6.6505704,0,32,3,-100.04216,0,-9,-9,2021,9,0,60,40,1,0,0,2.4104214,2.4104214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,54.2,57.49,8,1,1,0,0,1,7,3,1,434.5,407741.13,156012.36,204336.06,35034.488,929.73737,0,1536.6279 +1330,1653,2892,2891,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4592576,7.416327,0,32,-3,41.558464,0,2,2,2021,10,2,18,18,1,2,0,12.069247,12.069247,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54,54,8.333333333333334,1,1,0,0,10,7,3,1,434.5,407741.13,156012.36,204336.06,35034.488,929.73737,0,1536.6279 +1330,1654,2893,-9,2892,2891,1,0,21,0,0,0,1,1,1,0,5,8.1553774,8.2449045,0,0,0,-997.79767,-9,2,2,2021,9,2,38,0,1,2,1,12.313846,12.313846,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,10,7,4,1,722,158359.41,0,0,0,0,0,1716.9189 +1331,1655,2894,2895,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.1960297,8.2719822,8,6,-45.804996,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3374567,8.5060816,56.42,37.79,52.59,33.77,8.333333333333334,2,3,0,0,0,11,4,1,516,761361.38,417692.88,413571.56,0,0,0,2824.1411 +1331,1655,2895,2894,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,8,-6,44.397018,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,13.149225,0,0,1,1,0,3.1206396,0,52.59,33.77,56.42,37.79,10,1,1,0,0,0,11,4,1,516,761361.38,417692.88,413571.56,0,0,0,2824.1411 +1332,1656,2896,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.4324236,8.7962456,0,0,0,-1005.1511,0,1,1,2021,12,0,46,56,1,0,0,14.914671,14.914671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,546,-6221.9492,89844.094,0,0,0,0,2211.5042 +1333,1657,2897,2898,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,1.7044276,1.0778278,7,1,53.091827,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,10.423015,0,0,1,1,0,2.6417,1.6773826,61.27,6.19,50.06,23.36,10,1,1,0,0,0,6,4,1,541.5,1938767.5,1123715.5,451359.78,0,0,0,4113.8213 +1333,1657,2898,2897,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,8.8554363,8.8620892,7,-1,-12.965458,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,2.6847944,8.9665852,50.06,23.36,61.27,6.19,5,1,1,0,0,0,6,4,1,541.5,1938767.5,1123715.5,451359.78,0,0,0,4113.8213 +1334,1658,2899,-9,2902,2901,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.63458,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2900,-9,2902,2901,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.16058,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2901,2902,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,9.1483269,9.3612137,0,7,4,-29.408964,0,2,2,2021,12,0,35,38,1,0,0,38.524502,38.524502,.05,.05,0,0,0,0,0,0,0,0,0,2.9550169,0,43.25,41.45,54.45,56.22,6.666666666666667,1,1,0,0,8,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2902,2901,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.3908892,8.2451754,0,7,-4,-107.02232,0,3,3,2021,11,0,25,16,1,0,0,20.306602,20.306602,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,43.25,41.45,8.333333333333334,1,1,0,0,8,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1335,1659,2903,2904,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,45,-4,8.537118,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,5.594491,0,14.5,1,1,0,2.7736564,0,46.87,40.64,62.03,41.71,8.333333333333334,1,1,0,0,0,7,3,1,676,678876.25,276997.78,274562.56,0,0,0,1888.5907 +1335,1659,2904,2903,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7784505,7.7596273,45,4,154.01442,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7487988,7.668623,62.03,41.71,46.87,40.64,8.333333333333334,1,1,0,0,0,7,3,1,676,678876.25,276997.78,274562.56,0,0,0,1888.5907 +1335,1660,2905,-9,2903,2904,1,0,31,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1151.1438,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5668671,0,38.24,63.73,-9,-9,5,1,1,1,1,2,7,1,1,308,43191.918,0,0,0,0,0,536.08813 +1336,1661,2906,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.8948846,7.6401219,0,0,0,-1040.7518,0,-9,-9,2021,36,12,24,28,1,12,0,9.7050409,9.7050409,0,0,0,0,0,0,0,0,1,1,0,0,0,23.28,38.38,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,244,25656.209,0,0,0,0,0,1059.0793 +1337,1662,2907,2908,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,41,0,-12.011577,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.18,53.85,8.333333333333334,1,1,0,0,5,7,3,1,699.5,1038304.4,527488.44,500958.94,0,7076.7344,0,2696.2891 +1337,1662,2908,2907,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.663219,7.8682404,41,0,57.123924,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.815309,56.18,53.85,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,699.5,1038304.4,527488.44,500958.94,0,7076.7344,0,2696.2891 +1338,1663,2909,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0864992,7.1847568,0,0,-1082.4885,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,3.2215273,6.6055832,15.665171,0,1,1,0,0,7.0255656,49,47,-9,-9,7,3,4,0,0,12,8,2,0,321,-41218.344,0,0,0,0,0,1133.6644 +1339,1664,2910,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8926458,8.1996937,0,0,0,-1059.457,-9,2,3,2021,23,11,33,0,1,11,0,12.040394,12.040394,0,0,0,0,0,0,0,0,0,0,0,2.7599583,0,26.76,53.94,-9,-9,3.333333333333333,3,4,0,0,10,8,4,0,1202,211593.72,67991.188,118965.85,63011.477,0,0,1380.084 +1340,1665,2911,-9,2912,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.83521,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1340,1665,2912,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,1,7.4957547,7.3221226,4.3155293,0,0,-1082.5333,0,2,2,2021,24,11,24,26,1,11,0,9.5660868,9.5660868,.05,.05,.05,0,0,0,0,0,1,1,0,4.4074569,0,35.47,38.09,-9,-9,1.666666666666667,1,1,0,0,9,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1340,1665,2913,-9,2912,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.5969,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1341,1666,2914,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.9133315,6.5808344,0,0,-1045.8605,0,2,1,2021,21,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7551556,55.36,51.57,-9,-9,1.666666666666667,1,1,0,0,8,10,2,1,1958,5936.3589,0,0,0,0,0,1253.5735 +1342,1667,2915,2916,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.8513441,7.8402886,40,-4,110.18208,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5528164,7.7372856,65.54000000000001,30.53,55,45,8.333333333333334,1,1,0,0,0,6,4,1,443.5,1497268.3,624598.81,531987.19,0,0,0,2811.7363 +1342,1667,2916,2915,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,7.4191623,8.0951939,10,4,-21.998381,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7574811,55,45,65.54000000000001,30.53,8,1,1,0,0,0,6,4,1,443.5,1497268.3,624598.81,531987.19,0,0,0,2811.7363 +1343,1668,2917,2918,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,8.9752636,8.8069649,0,20,3,-39.962799,0,2,2,2021,10,1,60,60,1,1,0,15.468335,15.468335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.74,57.22,10,1,1,0,0,13,9,5,1,579.5,1003753.9,454143.22,332729.38,0,0,0,5831.4106 +1343,1668,2918,2917,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.5532455,8.5499697,0,23,-3,-14.084334,0,-9,3,2021,7,0,43,43,1,0,0,12.02363,12.02363,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,57.16,56.15,10,1,1,0,0,14,9,5,1,579.5,1003753.9,454143.22,332729.38,0,0,0,5831.4106 +1343,1669,2919,-9,2918,2917,1,1,22,0,0,0,1,1,1,0,3,0,8.1072617,7.7944736,0,0,-1103.4838,-9,3,2,2021,15,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0096149,0,51.66,54.88,-9,-9,10,1,1,1,0,5,9,4,1,642,16103.949,0,0,0,0,0,3508.1594 +1344,1670,2920,-9,2922,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.14569,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1344,1670,2921,-9,2922,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.84241,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1344,1670,2922,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3226538,7.2263031,0,0,0,-1065.6335,0,-9,-9,2021,28,10,24,0,1,10,0,5.9658809,5.9658809,.05,.05,0,0,0,0,0,2,1,1,0,0,0,16.85,62.4,-9,-9,1.666666666666667,1,1,0,0,8,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1345,1671,2923,2924,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.0053029,6.2824774,44,-2,-27.931578,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9635248,6.0859156,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,667.5,810987,775994.69,0,0,0,0,4111.6909 +1345,1671,2924,2923,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.7839212,8.6368866,44,2,52.928356,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5476837,8.862628,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,5,2,4,1,667.5,810987,775994.69,0,0,0,0,4111.6909 +1345,1672,2925,-9,2923,2924,1,1,38,0,0,0,2,2,-9,0,4,8.1681376,8.2629404,0,0,0,-1109.2017,0,2,2,2021,10,0,39,40,1,0,0,12.260476,12.260476,.05,.05,0,0,0,0,0,0,1,1,0,3.2613933,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1163,63902.797,182796.03,0,0,0,0,1915.3551 +1346,1673,2926,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.9053946,9.0827389,0,0,0,-1115.3872,0,-9,-9,2021,13,2,44,80,1,2,0,18.71661,18.71661,0,0,0,0,0,0,0,0,0,0,0,6.4878368,0,33.01,63.17,-9,-9,10,1,1,0,0,2,9,5,0,1258,-101738.37,0,0,0,0,0,2927.0261 +1347,1674,2927,2928,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,26,2,37.215462,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.49,47.77,58.89,48.6,8.333333333333334,1,1,0,0,6,13,3,1,388.5,714156,368958.63,230578.16,0,0,0,2250.6396 +1347,1674,2928,2927,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.3465128,8.0265503,0,26,-2,23.276808,0,3,3,2021,10,0,39,37,1,0,0,9.79706,9.79706,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,57.49,47.77,8.333333333333334,1,1,0,0,8,13,3,1,388.5,714156,368958.63,230578.16,0,0,0,2250.6396 +1348,1675,2929,2930,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,0,0,0,10,-2,-92.430878,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.29,55.45,58.06,52.01,8.333333333333334,2,3,0,0,0,9,3,1,1588.5,407414.19,80215.125,350934.25,108991.75,5608.4531,16190.905,1424.9575 +1348,1675,2930,2929,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.8727078,7.6891747,0,10,2,-7.3661304,0,3,2,2021,8,0,36,36,1,0,0,8.6886415,8.6886415,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.06,52.01,38.29,55.45,10,2,3,0,0,11,9,3,1,1588.5,407414.19,80215.125,350934.25,108991.75,5608.4531,16190.905,1424.9575 +1348,1676,2931,-9,2929,2930,1,1,21,0,0,0,2,2,-9,0,4,8.1697378,8.2535162,0,0,0,-925.26715,0,3,3,2021,3,0,36,42,1,0,1,11.456605,11.456605,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1389,153705.84,47421.516,0,0,0,0,718.0108 +1348,1677,2932,-9,2929,2930,1,0,19,0,0,0,2,2,1,0,4,7.3451772,7.1323276,0,0,0,-1081.4524,-9,3,3,2021,10,0,25,0,1,0,1,8.5572948,8.5572948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.84,53.46,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,1451,-127362.83,38757.898,0,0,0,0,1330.4811 +1349,1678,2933,-9,2935,2936,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.43152,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2934,-9,2935,2936,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.2001,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2935,2936,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.4105072,9.2569504,0,9,-5,114.32787,0,1,1,2021,7,0,32,32,1,0,0,38.091469,38.091469,.05,.05,0,0,0,0,0,0,0,0,0,1.8749795,0,54.74,57.22,45.66,57.21,8.333333333333334,4,5,0,0,7,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2936,2935,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.2393484,9.0837364,0,9,5,79.143044,0,2,2,2021,11,2,42,37,1,2,0,25.698872,25.698872,.05,.05,0,0,0,0,0,0,0,0,0,.53836823,0,45.66,57.21,54.74,57.22,8.333333333333334,1,1,0,0,7,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1350,1679,2937,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.1303225,8.0342588,0,0,0,-1078.2428,0,3,3,2021,9,0,39,0,1,0,0,11.841584,11.841584,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,-9,-9,10,1,1,0,0,3,1,4,0,1889,1027822.2,897605.81,298122.94,0,0,0,1411.9655 +1351,1680,2938,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2674661,7.0733304,0,0,-1075.5072,0,3,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9935999,49.41,40.91,-9,-9,10,4,2,0,0,8,8,3,1,566,594258.19,210314.83,217445.03,0,0,0,1717.551 +1352,1681,2939,2940,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.9319429,8.1775913,7.1482196,9,8,-11.078505,0,3,2,2021,12,2,37,38,1,2,0,8.1446619,8.1446619,.05,.05,0,0,0,0,0,0,0,0,0,.9137184,7.3004704,51.03,46.53,53.38,41.98,6.666666666666667,1,1,0,0,12,5,4,0,732.5,536265.44,35438.277,379764.31,0,12.998871,0,2303.5369 +1352,1681,2940,2939,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9002423,7.5816927,0,15,-8,-109.19633,0,3,3,2021,10,0,34,36,1,0,0,6.9540501,6.9540501,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.38,41.98,51.03,46.53,8.333333333333334,1,1,0,0,12,5,4,0,732.5,536265.44,35438.277,379764.31,0,12.998871,0,2303.5369 +1353,1682,2941,2942,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.8212218,8.474369,7.6479235,12,-7,152.04485,0,2,2,2021,6,0,36,36,1,0,0,6.7285719,6.7285719,.05,.05,0,0,0,0,0,0,1,1,0,0,8.089736,57.06,57.76,54.26,39.67,10,1,1,0,0,13,10,4,1,449,16207.898,-29967.414,0,0,8780.3008,0,2875.4106 +1353,1682,2942,2941,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,12,7,-50.536297,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.26,39.67,57.06,57.76,10,1,1,0,0,8,10,4,1,449,16207.898,-29967.414,0,0,8780.3008,0,2875.4106 +1354,1683,2943,2944,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,4.5557756,4.9918137,0,2,0,91.350906,0,2,2,2021,13,3,50,28,1,3,0,.18213467,.18213467,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,62.08,51.83,57.2,5,1,1,0,0,8,9,3,1,158,25601.707,0,0,0,0,0,1266.7368 +1354,1683,2944,2943,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4229336,8.3780518,0,2,0,55.189983,0,-9,-9,2021,11,0,40,45,1,0,0,10.802493,10.802493,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.15,62.08,8.333333333333334,1,1,0,0,1,9,3,1,158,25601.707,0,0,0,0,0,1266.7368 +1355,1684,2945,2946,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,12,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.49,35.1,62.39,56.71,6.666666666666667,1,1,0,0,0,2,1,1,771,195610.14,40098.965,173354.94,0,0,0,1481.7766 +1355,1684,2946,2945,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,0,0,12,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,56.49,35.1,10,1,1,0,0,4,2,1,1,771,195610.14,40098.965,173354.94,0,0,0,1481.7766 +1356,1685,2947,-9,-9,2948,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1035.5931,0,-9,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,5,1,1,0,0,2,4,1,0,424,-71048.336,0,0,0,0,0,0 +1356,1686,2948,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.9446359,8.2906981,0,0,0,-1112.2695,0,-9,-9,2021,8,0,38,50,1,0,0,11.820835,11.820835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,3.333333333333333,1,1,0,0,8,4,4,0,441,-181775.14,88101.063,0,0,0,0,953.0354 +1357,1687,2949,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.2451448,8.9741659,0,0,0,-1093.3424,0,1,1,2021,10,1,42,42,1,1,0,24.848577,24.848577,.05,.05,0,0,0,0,0,0,0,0,0,7.4730616,0,34.52,62.64,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,1535,118591.05,72491.875,0,0,-264.50534,1080.0931,3497.4353 +1358,1688,2950,2951,-9,-9,1,1,28,2,2,0,2,2,-9,0,5,8.1832123,8.2616215,0,5,1,-21.373833,0,2,2,2021,8,0,54,53,1,0,0,10.919042,10.919042,.05,.05,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,51.73,58.82,10,1,1,0,0,8,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2951,2950,-9,-9,1,0,27,2,2,0,2,2,-9,0,5,6.6300941,6.7529235,0,5,-1,-40.978497,0,-9,-9,2021,5,0,18,20,1,0,0,3.8995292,3.8995292,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,62.39,56.71,8.333333333333334,1,1,0,0,5,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2952,-9,2951,2950,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.653,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2953,-9,2951,2950,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.2252,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1359,1689,2954,2955,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,6,5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.65,58.88,42.61,54.85,6.666666666666667,1,1,0,1,1,12,1,0,2518.5,-75789.297,0,0,0,0,0,1387.824 +1359,1689,2955,2954,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-5,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,36.65,58.88,6.666666666666667,1,1,0,1,0,12,1,0,2518.5,-75789.297,0,0,0,0,0,1387.824 +1360,1690,2956,-9,2957,2958,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.8553,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1360,1690,2957,2958,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2418642,8.4399223,0,9,-6,39.275402,0,2,2,2021,6,0,35,35,1,0,0,14.558867,14.558867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.22,55.2,55.36,54.24,8.333333333333334,1,1,0,0,10,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1360,1690,2958,2957,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.7128162,8.6941519,0,9,6,.67828596,0,2,2,2021,9,0,40,40,1,0,0,12.659498,12.659498,.05,.05,0,0,0,0,0,0,1,1,0,.54669088,0,55.36,54.24,53.22,55.2,8.333333333333334,1,1,0,0,10,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1361,1691,2959,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.8056598,8.071908,7.440927,0,0,-1006.8186,-9,2,3,2021,14,4,24,0,1,4,0,11.26169,11.26169,.05,.05,0,0,0,0,0,0,0,0,0,6.9814792,6.6766472,35.24,56.7,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,107,522584.91,161619.91,385322.13,0,0,0,1565.3457 +1362,1692,2960,2961,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.6239042,8.6374817,0,11,-7,22.916031,0,2,3,2021,9,0,35,35,1,0,0,23.635218,23.635218,0,0,0,0,0,0,0,0,1,1,0,0,0,57.18,45.76,64.96000000000001,40.38,8.333333333333334,1,1,0,0,12,12,4,0,1199.5,1230686.3,850929.25,403946.72,0,21269.264,0,3781.2266 +1362,1692,2961,2960,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3128786,7.2219701,11,7,15.745593,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5865655,64.96000000000001,40.38,57.18,45.76,10,1,1,0,0,0,12,4,0,1199.5,1230686.3,850929.25,403946.72,0,21269.264,0,3781.2266 +1363,1693,2962,2963,-9,-9,1,1,53,0,0,0,3,3,-9,0,1,7.8800011,8.0162954,6.243516,38,2,126.4381,0,-9,3,2021,12,0,41,43,1,0,0,8.5621233,8.5621233,0,0,0,0,0,0,0,0,0,0,0,0,6.6551046,48.68,24.28,41.49,48.72,6.666666666666667,1,1,0,1,8,9,3,0,210,2095961.8,1202316,738325.56,0,0,0,1168.194 +1363,1693,2963,2962,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,38,-2,7.1637182,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.49,48.72,48.68,24.28,5,1,1,0,1,1,9,3,0,210,2095961.8,1202316,738325.56,0,0,0,1168.194 +1363,1694,2964,-9,2963,2962,1,0,29,0,0,0,2,2,-9,0,3,7.7097888,7.9040594,0,0,0,-973.16541,0,2,3,2021,6,1,54,25,1,1,1,5.8765426,5.8765426,0,0,0,0,0,0,0,0,0,0,0,0,0,43.27,48.34,-9,-9,5,1,1,0,0,7,9,3,0,144,29618.133,0,0,0,0,0,1795.3663 +1363,1695,2965,-9,2963,2962,1,1,22,0,0,0,2,2,1,0,3,7.2081285,7.028388,0,0,0,-967.24603,-9,2,3,2021,8,1,25,0,1,1,1,5.1662097,5.1662097,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,8.333333333333334,1,1,0,1,4,9,3,0,509,16901.396,0,0,0,0,0,61.357292 +1364,1696,2966,2968,-9,-9,1,1,25,1,2,0,2,2,-9,0,4,0,0,0,5,2,49.891407,0,-9,-9,2021,19,6,0,45,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.43,54.9,24.61,60.27,3.333333333333333,1,1,0,0,7,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2967,-9,2968,2966,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-867.11072,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2968,2966,-9,-9,1,0,23,1,2,0,2,2,-9,0,4,6.3858643,6.2985525,0,5,-2,-136.18811,0,2,2,2021,20,8,10,10,1,8,0,9.3298941,9.3298941,0,0,0,0,0,0,0,0,1,1,0,0,0,24.61,60.27,30.43,54.9,8.333333333333334,1,1,0,0,8,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2969,-9,2968,2966,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.32422,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1365,1697,2970,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,6.0922379,6.1859703,0,0,-1020.2127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3133268,63.17,32.94,-9,-9,8.333333333333334,1,1,0,0,5,2,2,0,273,0,0,0,0,0,0,1141.5723 +1366,1698,2971,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.7039962,5.7796254,0,0,-1009.2338,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8048244,5.8295903,40.34,36.82,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1490,541653.94,12293.013,437506.31,0,0,0,411.51227 +1367,1699,2972,2973,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.5268626,7.6295314,0,23,-3,96.114983,0,2,3,2021,23,10,20,20,1,10,0,13.976109,13.976109,0,0,0,0,0,0,0,0,1,1,0,0,0,34.38,54.27,54.37,54.8,6.666666666666667,1,1,0,0,13,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2973,2972,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.4291143,9.8022232,0,23,3,-80.248596,0,2,3,2021,11,0,25,22,1,0,0,78.228676,78.228676,.05,.05,0,0,0,0,0,0,1,1,0,4.5030198,0,54.37,54.8,34.38,54.27,8.333333333333334,1,1,0,0,15,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2974,-9,2972,2973,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1627,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2975,-9,2972,2973,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.26453,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1368,1700,2976,2977,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.0580759,8.1970959,0,6,0,105.99099,0,3,3,2021,18,6,37,37,1,6,0,12.692561,12.692561,0,0,0,0,0,0,0,0,0,0,0,7.0995383,0,29.55,56.56,49,48,3.333333333333333,1,1,0,0,7,12,3,1,267,546376.31,586475.25,119890.89,0,0,0,2093.3562 +1368,1700,2977,2976,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,0,-38.509365,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49,48,29.55,56.56,7,1,1,0,0,0,12,3,1,267,546376.31,586475.25,119890.89,0,0,0,2093.3562 +1368,1701,2978,-9,2977,2976,1,0,25,0,0,0,2,2,-9,0,4,7.4852352,7.2775788,0,0,0,-1004.3646,0,2,2,2021,14,2,35,37,1,2,1,5.744411,5.744411,0,0,0,0,0,0,0,0,0,0,0,0,0,44.53,56.37,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,517,13153.207,0,0,0,0,0,733.56714 +1368,1702,2979,-9,2977,2976,1,1,22,0,0,0,2,2,-9,0,4,7.1700954,7.4241586,0,0,0,-1048.0111,0,2,2,2021,12,1,37,-9,1,1,1,4.9280801,4.9280801,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,0,1,1,0,0,5,12,3,1,325,62883.293,0,0,0,0,0,1051.6528 +1369,1703,2980,2981,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1948705,6.9625454,32,10,-67.599373,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.61713,6.8684731,52.99,51.28,60.29,52.11,8.333333333333334,1,1,0,0,3,4,4,1,1933,500176.5,148749.63,268628.88,0,0,0,2087.7859 +1369,1703,2981,2980,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4881983,8.6957216,0,33,-10,25.418682,0,2,2,2021,6,0,37,37,1,0,0,12.281272,12.281272,.05,.05,0,0,0,0,0,0,0,0,0,5.407464,0,60.29,52.11,52.99,51.28,8.333333333333334,1,1,0,0,13,4,4,1,1933,500176.5,148749.63,268628.88,0,0,0,2087.7859 +1370,1704,2982,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8591776,5.9881845,0,0,-869.2085,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2516184,62.66,52.4,-9,-9,10,1,1,0,0,4,2,2,1,114,63824.73,154787.5,0,0,-987.10181,104.81286,1555.4974 +1371,1705,2983,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8100553,8.3793783,0,0,0,-971.46039,0,2,3,2021,15,3,36,39,1,3,0,9.394207,9.394207,0,0,0,0,0,0,0,27,1,0,1,0,0,31.23,61.38,-9,-9,6.666666666666667,1,1,0,0,9,7,4,0,272,704600.25,-53379.91,581851.19,0,0,2401.592,1326.2452 +1371,1706,2984,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-941.30371,0,-9,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.91,22.6,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,512,175124.13,0,0,0,0,0,190.6517 +1372,1707,2985,2986,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.7926941,7.6723132,9,-3,70.535774,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4002962,7.5559187,48.28,60.18,56.67,48.31,8.333333333333334,1,1,0,0,9,10,3,1,634,1033370.6,212755.73,533692.5,0,0,0,2183.9922 +1372,1707,2986,2985,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.9691153,7.1041479,9,3,-9.0408678,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4569316,7.1624393,56.67,48.31,48.28,60.18,5,1,1,0,0,9,10,3,1,634,1033370.6,212755.73,533692.5,0,0,0,2183.9922 +1373,1708,2987,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.8229542,9.1151228,0,0,0,-907.39209,0,3,3,2021,16,4,43,41,1,4,0,19.443848,19.443848,.05,.05,0,0,0,0,0,0,1,1,0,3.4628384,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,953,591858.25,409851.97,170219.67,15517.717,0,1741.5847,2194.0288 +1374,1709,2988,2989,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.4135561,9.6789246,0,26,2,-24.623936,0,2,2,2021,7,0,37,54,1,0,0,38.706112,38.706112,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,57.44,48,49,8.333333333333334,1,1,0,0,8,1,5,1,440.5,537311.31,244770.53,271776.81,77477.719,0,0,5121.5391 +1374,1709,2989,2988,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.5993009,7.0258503,0,3,-2,117.36926,0,2,2,2021,12,0,37,32,1,2,0,2.837188,2.837188,.05,.05,0,0,0,0,0,0,0,0,0,5.4633174,0,48,49,45.18,57.44,7,1,1,0,0,1,1,5,1,440.5,537311.31,244770.53,271776.81,77477.719,0,0,5121.5391 +1375,1710,2990,2992,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.5148573,8.3059626,0,7,0,-79.14299,0,-9,-9,2021,12,1,40,46,1,1,0,11.903587,11.903587,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,59.65,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1375,1710,2991,-9,2992,2990,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.7156,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1375,1710,2992,2990,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.5264921,8.2420292,0,7,0,-21.63521,0,-9,-9,2021,7,0,40,40,1,0,0,11.290489,11.290489,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,36.12,59.65,8.333333333333334,1,1,0,0,7,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1376,1711,2993,2994,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.7321253,8.401989,0,9,-3,-21.898737,0,2,2,2021,7,0,49,46,1,0,0,14.898056,14.898056,0,0,0,0,0,0,0,0,1,1,0,6.9911222,0,59.43,58.05,50.03,52.62,10,1,1,0,0,11,12,5,1,667.5,2415847.5,2309723.5,0,0,0,11848.709,5684.6558 +1376,1711,2994,2993,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1650081,7.4460979,30,3,-41.893391,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4396358,7.4788928,50.03,52.62,59.43,58.05,8.333333333333334,1,1,0,0,9,12,5,1,667.5,2415847.5,2309723.5,0,0,0,11848.709,5684.6558 +1377,1712,2995,2996,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,4,-4,25.57299,0,3,3,2021,24,12,0,12,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,22.18,53.47,60.29,52.11,1.666666666666667,1,1,0,0,8,13,4,1,1282,820668.38,581059.69,198466.25,0,1422.7332,0,2369.3679 +1377,1712,2996,2995,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4005985,8.4453793,0,4,4,-157.93065,0,3,3,2021,6,0,39,60,1,0,0,16.894247,16.894247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,22.18,53.47,10,1,1,0,0,8,13,4,1,1282,820668.38,581059.69,198466.25,0,1422.7332,0,2369.3679 +1378,1713,2997,2998,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.4866209,8.2060013,5,0,13.717687,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9190612,8.0388403,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,10,11,5,1,684.5,2012724.8,840370.19,474562.69,0,0,0,7049.293 +1378,1713,2998,2997,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.9193373,8.9927273,0,5,0,-58.188206,0,2,2,2021,9,0,8,8,1,0,0,120.98161,120.98161,0,0,0,0,0,0,0,0,1,1,0,7.5962424,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,12,11,5,1,684.5,2012724.8,840370.19,474562.69,0,0,0,7049.293 +1379,1714,2999,-9,3000,3001,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1029.6787,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0919662,0,46.48,57.16,-9,-9,10,2,3,0,0,0,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1714,3000,3001,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,8.7135592,8.7523365,0,23,-3,-43.810791,0,1,1,2021,18,7,42,54,1,7,0,14.190126,14.190126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.84,49.92,50.77,33.47,3.333333333333333,2,3,0,0,6,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1714,3001,3000,-9,-9,1,1,46,0,1,0,1,1,-9,0,2,8.0785627,8.0315838,0,23,3,-25.225895,0,2,2,2021,10,0,45,47,1,0,0,6.8837996,6.8837996,.05,.05,0,0,0,0,0,0,1,1,0,.33395219,0,50.77,33.47,41.84,49.92,3.333333333333333,2,3,0,1,10,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1715,3002,-9,3000,3001,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1075.598,-9,1,1,2021,23,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.01,53.24,-9,-9,5,2,3,0,0,0,10,1,1,1263,147986.06,0,0,0,0,0,0 +1380,1716,3003,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.4959602,8.391963,0,0,0,-1031.3225,0,2,2,2021,12,2,42,37,1,2,0,13.236697,13.236697,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,1,8,7,5,0,136,268317.88,196767.84,397727.91,218470.69,8850.1992,0,1664.2008 +1381,1717,3004,3005,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.5786753,9.4790936,0,10,1,63.302452,0,3,2,2021,10,2,60,57,1,2,0,30.667858,30.667858,0,0,0,0,0,0,0,0,0,0,0,4.7922139,0,55.36,51.57,47.58,63.43,6.666666666666667,1,1,0,0,11,9,5,1,988,4925523.5,2125577.3,1770155.3,0,0,0,6099.5967 +1381,1717,3005,3004,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.2887983,8.6377106,0,10,-1,-113.26483,0,1,1,2021,7,0,36,36,1,0,0,13.417307,13.417307,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,63.43,55.36,51.57,6.666666666666667,1,1,0,0,11,9,5,1,988,4925523.5,2125577.3,1770155.3,0,0,0,6099.5967 +1382,1718,3006,3009,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.9149847,9.3131037,0,8,-1,8.7345886,0,-9,-9,2021,11,4,53,48,1,4,0,25.017073,25.017073,0,0,.05,0,0,0,0,0,0,0,0,0,0,53.81,53.56,38.69,61.75,5,1,1,0,0,10,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3007,-9,3009,3006,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.27893,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3008,-9,3009,3006,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.54779,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3009,3006,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,9.599824,9.3983021,0,27,1,-39.11451,0,-9,-9,2021,13,3,45,47,1,3,0,35.890903,35.890903,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.69,61.75,53.81,53.56,6.666666666666667,3,4,0,0,10,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3010,-9,3009,3006,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.5099,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1383,1719,3011,-9,3012,3013,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.6239,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1383,1719,3012,3013,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,0,0,0,1,7,-49.656502,0,2,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6317239,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1383,1719,3013,3012,-9,-9,1,1,44,0,1,0,2,2,-9,0,5,8.594243,9.1351986,0,1,-7,-12.076468,-9,-9,-9,2021,7,0,41,0,1,0,0,20.118492,20.118492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1384,1720,3014,-9,3015,3017,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.25415,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3015,3017,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,7.8268609,7.7341838,0,7,-2,39.470825,0,2,2,2021,12,0,1,16,1,0,0,339.30182,339.30182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.84,51.65,47.64,52.35,1.666666666666667,1,1,0,0,12,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3016,-9,3015,3017,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1197.0035,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3017,3015,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,9.0880489,8.592741,0,7,2,49.484291,0,2,2,2021,9,2,35,35,1,2,0,19.312592,19.312592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.64,52.35,31.84,51.65,6.666666666666667,1,1,0,0,11,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1385,1721,3018,3019,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8770876,9.0437822,0,18,5,-56.291023,0,-9,-9,2021,11,0,55,50,1,0,0,19.253128,19.253128,.05,.05,0,0,0,0,3.0224996,0,0,0,0,0,0,42.91,58.63,52,57,8.333333333333334,1,1,0,0,9,8,5,1,1835,808636,473273.97,519566.03,149254.91,3315.6772,0,3484.8025 +1385,1721,3019,3018,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,3.347784,3.4174809,0,17,-5,13.917556,0,1,1,2021,6,0,10,0,1,0,0,.34635973,.34635973,0,0,0,0,0,0,0,0,0,0,0,0,0,52,57,42.91,58.63,1.666666666666667,4,2,0,0,4,8,5,1,1835,808636,473273.97,519566.03,149254.91,3315.6772,0,3484.8025 +1386,1722,3020,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.7146511,8.0377827,0,0,0,-1028.2014,0,3,2,2021,8,0,40,30,1,0,0,12.310951,12.310951,.05,.05,.05,0,0,0,0,0,1,1,0,6.5040812,0,53.39,36.44,-9,-9,3.333333333333333,1,1,0,0,1,11,4,1,1868,192962.38,16913.336,178377.67,1298.0236,2768.259,574.06158,1994.1124 +1387,1723,3021,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-861.37451,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,126,-193806.3,0,0,0,0,0,503.41138 +1388,1724,3022,3023,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5092793,8.5663481,5.7379479,2,5,4.030632,0,2,1,2021,9,0,37,37,1,0,0,13.599344,13.599344,.05,.05,0,0,0,0,.2295676,0,0,0,0,3.888483,6.1028509,46.44,59.62,47.07,53.97,8.333333333333334,1,1,0,0,14,7,5,1,409.5,585157.88,246884.78,275853.88,0,-40.571381,0,3454.667 +1388,1724,3023,3022,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2424374,8.2784243,0,2,-5,-10.960138,0,-9,-9,2021,11,0,48,40,1,0,0,10.793604,10.793604,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,46.44,59.62,5,1,1,0,0,8,7,5,1,409.5,585157.88,246884.78,275853.88,0,-40.571381,0,3454.667 +1388,1725,3024,-9,3022,-9,1,1,26,0,0,0,2,2,-9,0,2,4.8908319,5.1797876,0,0,0,-1045.0116,0,2,-9,2021,6,0,1,0,1,0,1,22.314146,22.314146,0,0,0,0,0,0,0,0,0,0,0,5.3190641,0,55.2,49.4,-9,-9,5,1,1,0,0,7,7,2,1,3495,74989.016,0,0,0,0,0,-740.05676 +1389,1726,3025,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.352746,8.5681696,0,0,0,-972.86328,-9,2,-9,2021,11,0,60,0,1,0,0,11.530574,11.530574,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,10,4,1,2417,561773.38,344921.94,159894.88,0,0,0,3042.6443 +1390,1727,3026,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.5841188,8.7494087,6.3150725,0,0,-1023.3975,0,3,3,2021,10,0,47,47,1,0,0,9.6183643,9.6183643,0,0,0,0,0,0,0,7,1,1,0,1.011354,6.7962141,53.99,48.04,-9,-9,5,1,1,0,0,9,7,5,1,614,2049130.4,973454.88,940347.19,0,0,0,1906.4517 +1391,1728,3027,3029,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.1488276,7.8987837,0,6,-4,29.713333,0,-9,-9,2021,6,0,35,40,1,0,0,11.586173,11.586173,.05,.05,.05,0,0,0,0,0,1,1,0,3.25561,0,48.28,60.18,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3028,-9,3029,3027,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.73883,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3029,3027,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.4855433,8.4829397,0,6,4,-126.41405,0,1,1,2021,19,7,30,38,1,7,0,15.604876,15.604876,.05,.05,0,0,0,0,0,0,1,1,0,2.1637349,0,43.54,59.6,48.28,60.18,8.333333333333334,1,1,0,0,1,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3030,-9,3029,3027,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1197.5591,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1392,1729,3031,3032,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.5412893,8.694993,58,5,-116.58186,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6614952,60.54,42.25,55.9,51.29,10,1,1,0,0,0,1,4,1,777,1457209.3,525742.75,522499.41,0,0,0,3438.52 +1392,1729,3032,3031,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,58,-5,-30.671942,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3957243,0,55.9,51.29,60.54,42.25,10,1,1,0,0,11,1,4,1,777,1457209.3,525742.75,522499.41,0,0,0,3438.52 +1393,1730,3033,3034,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,55,-5,21.95866,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.35472265,7,1,1,0,0,0,52.82,53.97,42.75,25.25,8.333333333333334,1,1,0,0,0,12,3,1,756.5,317385.59,256488.94,125669.58,0,0,0,1555.9023 +1393,1730,3034,3033,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,7.301136,7.1713576,55,5,-78.199478,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4244213,42.75,25.25,52.82,53.97,6.666666666666667,1,1,0,0,0,12,3,1,756.5,317385.59,256488.94,125669.58,0,0,0,1555.9023 +1394,1731,3035,-9,3036,3037,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.9614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3036,3037,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.1233854,8.035984,0,11,-3,48.392605,0,2,3,2021,14,3,55,34,1,3,0,6.7916303,6.7916303,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.02,56.48,48.77,60.16,6.666666666666667,2,3,0,0,9,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3037,3036,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.3267508,8.7578211,0,9,3,56.274773,0,2,1,2021,12,1,43,42,1,1,0,16.616972,16.616972,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.02,56.48,8.333333333333334,1,1,0,0,9,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3038,-9,3036,3037,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.04962,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1395,1732,3039,-9,3043,3042,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.7362,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3040,-9,3043,3042,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42419,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3041,-9,3043,3042,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.328,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3042,3043,-9,-9,1,1,46,1,3,0,2,2,-9,0,4,8.1114807,8.0764256,0,18,8,-32.869404,0,2,2,2021,8,0,22,22,1,0,0,19.238083,19.238083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,13,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3043,3042,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.4573851,8.3234596,0,19,-8,90.829826,0,2,2,2021,12,1,29,-9,1,1,0,15.870246,15.870246,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,13,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1396,1733,3044,3045,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,8.3151846,8.3702116,52,-1,25.553797,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0838642,8.1199551,54.77,55.87,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,3323.5,2826941.5,846486.31,719752.75,0,0,0,4085.6985 +1396,1733,3045,3044,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,6.7683306,7.7318659,6.9269338,52,1,-10.042855,0,1,1,2021,7,0,40,45,1,0,0,2.5898173,2.5898173,0,0,0,0,0,0,0,0,1,1,0,0,7.0888448,54.2,57.49,54.77,55.87,8.333333333333334,1,1,0,0,12,4,4,1,3323.5,2826941.5,846486.31,719752.75,0,0,0,4085.6985 +1397,1734,3046,3047,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6295595,8.6979599,0,3,0,24.126293,0,-9,-9,2021,8,0,34,41,1,0,0,18.386944,18.386944,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,2,2,5,1,382,51092.309,93484.75,0,0,3592.7708,0,3933.9863 +1397,1734,3047,3046,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.7722139,8.3526115,0,3,0,-11.981013,0,2,-9,2021,3,0,38,38,1,0,0,14.45839,14.45839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,2,5,1,382,51092.309,93484.75,0,0,3592.7708,0,3933.9863 +1398,1735,3048,-9,3049,3050,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.041,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3049,3050,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.6332278,7.4729314,0,11,-1,-122.80299,0,2,2,2021,9,0,15,14,1,0,0,11.271121,11.271121,0,0,0,0,0,0,0,0,1,1,0,.19828768,0,43.91,44.66,27.1,59.11,8.333333333333334,1,1,0,1,11,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3050,3049,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.5545845,8.5175009,0,11,1,27.209507,0,2,2,2021,14,2,45,40,1,2,0,12.802292,12.802292,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,59.11,43.91,44.66,3.333333333333333,1,1,0,1,13,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3051,-9,3049,3050,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.06616,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1399,1736,3052,3053,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.8964624,6.6702585,51,1,103.54101,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8773067,6.7423091,44.83,55.13,51.49,57.57,8.333333333333334,1,1,0,0,0,12,2,1,1724.5,366974.41,164729.38,202469.06,0,0,0,2403.4338 +1399,1736,3053,3052,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9727912,6.5032926,12,-1,-141.05859,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.243618,6.5585947,51.49,57.57,44.83,55.13,8.333333333333334,1,1,0,0,6,12,2,1,1724.5,366974.41,164729.38,202469.06,0,0,0,2403.4338 +1400,1737,3054,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,2.6564224,2.9209743,0,0,-1071.6127,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71119756,2.5690084,56.1,31.17,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,273,393776.53,27981.234,146044.06,0,0,0,1435.1664 +1401,1738,3055,3056,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,7,4,10.236912,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8744955,0,56.34,37.93,52.23,52.9,8.333333333333334,1,1,0,0,5,5,2,1,381,238575.7,62033.703,150105.33,0,0,0,1772.5493 +1401,1738,3056,3055,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.2923365,4.9129152,7,-4,-154.12886,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2890382,5.1116257,52.23,52.9,56.34,37.93,8.333333333333334,1,1,0,0,5,5,2,1,381,238575.7,62033.703,150105.33,0,0,0,1772.5493 +1402,1739,3057,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.060473,5.8894625,0,0,-1026.2463,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4668226,27.81,65.69,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,362,296621.63,104827.33,201348.39,0,0,0,1068.6952 +1403,1740,3058,3059,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-93.370399,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.1005778,0,49.99,43.04,63.31,22.39,8.333333333333334,1,1,0,0,0,7,2,1,787.5,-88030.695,0,0,0,0,0,778.72125 +1403,1740,3059,3058,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.0380216,4.8315263,9,3,53.524445,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5499277,3.4420712,22.064129,0,1,1,0,4.1328621,4.8667483,63.31,22.39,49.99,43.04,8.333333333333334,1,1,0,0,0,7,2,1,787.5,-88030.695,0,0,0,0,0,778.72125 +1404,1741,3060,3061,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.3937826,8.3432169,0,15,1,80.300468,0,2,1,2021,7,0,47,44,1,0,0,12.833816,12.833816,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,50.46,53.68,8.333333333333334,1,1,0,0,14,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1404,1741,3061,3060,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.1285973,9.3715296,0,17,-1,-19.588131,0,2,2,2021,9,0,57,52,1,0,0,17.253965,17.253965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,51.83,57.2,8.333333333333334,1,1,0,0,12,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1404,1741,3062,-9,3061,3060,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.91083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1405,1742,3063,3064,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5308228,8.4524517,0,31,1,88.314529,0,-9,-9,2021,6,0,55,56,1,0,0,12.550264,12.550264,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,241,426167.88,207503.69,204095.67,0,0,0,3160.6899 +1405,1742,3064,3063,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8576484,8.3859711,0,31,-1,-73.548103,0,-9,-9,2021,9,1,40,32,1,1,0,8.46803,8.46803,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,241,426167.88,207503.69,204095.67,0,0,0,3160.6899 +1405,1743,3065,-9,3064,3063,1,0,25,0,0,0,1,1,-9,0,4,8.1976614,7.9618592,0,0,0,-1042.3712,0,2,2,2021,9,0,50,38,1,0,1,6.1884789,6.1884789,0,0,0,0,0,0,0,0,0,0,0,0,0,45.23,56.21,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1334,-88202.664,0,0,0,0,0,1003.2609 +1406,1744,3066,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1070.766,0,2,-9,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.62,24.46,-9,-9,5,3,4,0,1,0,8,1,0,329,-2990.2393,0,0,0,0,7817.2817,1095.1538 +1407,1745,3067,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.7130542,4.4867821,0,0,-834.72638,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2661285,57.84,34,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,917,-154702.75,-49321.094,0,0,0,0,631.66699 +1408,1746,3068,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.2023058,7.28686,0,0,-949.85425,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0394011,7.5285764,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,1912,367492.13,223068.25,168818.69,0,0,0,1034.6362 +1409,1747,3069,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3972101,8.2909698,0,0,0,-911.11395,0,3,3,2021,6,1,50,60,1,1,0,11.321434,11.321434,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,49.04,-9,-9,5,1,1,0,0,11,2,5,1,1775,202059.8,159147.31,139844.41,0,0,0,2113.1895 +1410,1748,3070,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.3017569,7.3469172,0,0,-1057.8154,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4802985,7.5309992,52,48,-9,-9,7,1,1,0,0,7,8,3,1,1397,610811.94,202254.61,110484.16,0,1488.5635,0,1714.9039 +1411,1749,3071,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.3118658,8.1192741,0,0,-1048.5483,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3792572,38.89,53.76,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,91,841456,620809.31,113437.06,0,0,0,2792.394 +1412,1750,3072,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.9960661,9.0016394,0,0,0,-931.54492,0,2,2,2021,12,0,41,51,1,0,0,20.173021,20.173021,.05,.05,0,0,0,0,0,0,1,1,0,.6152705,0,54.2,57.49,-9,-9,7,1,1,0,0,8,4,5,1,1721,57496.18,-34719.332,178328.83,99561.563,7424.0757,0,1755.3469 +1413,1751,3073,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.5020814,5.5090556,0,0,-932.53339,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7607312,68.89,35.82,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,1263,394746.13,-57005.816,312467.34,0,0,0,1089.4908 +1414,1752,3074,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2781334,8.5142584,0,0,0,-1031.6705,0,-9,-9,2021,15,3,38,38,1,3,0,13.672562,13.672562,.05,.05,0,0,0,0,0,0,0,0,0,1.4177053,0,32.9,57.87,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,498,-249398.45,113851.51,0,0,15293.885,0,1097.1382 +1415,1753,3075,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.9664092,8.177002,0,0,0,-924.44415,0,2,2,2021,22,7,20,24,1,7,0,19.900442,19.900442,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.01,61.11,-9,-9,1.666666666666667,1,1,0,0,8,8,4,1,193,262119.59,-25116.641,236850.16,61608.352,0,0,1377.8137 +1416,1754,3076,3077,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.0495944,7.2806368,5.1410904,12,-1,-97.943283,0,2,2,2021,12,1,40,40,1,1,0,3.0108876,3.0108876,0,0,0,0,0,0,0,14.5,0,0,0,0,5.2059507,46.98,59.35,44.02,60.7,8.333333333333334,1,1,0,0,14,10,3,1,503.5,1308442.6,563676,417582.38,0,0,0,1245.7725 +1416,1754,3077,3076,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,5.1077809,7.2362556,6.7679291,12,1,-48.358475,0,3,2,2021,15,5,40,40,1,5,0,.38437086,.38437086,0,0,0,0,0,0,0,0,0,0,0,3.739619,7.009727,44.02,60.7,46.98,59.35,8.333333333333334,1,1,0,0,12,10,3,1,503.5,1308442.6,563676,417582.38,0,0,0,1245.7725 +1417,1755,3078,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2253256,8.0570374,5.817194,0,0,-1036.6206,0,2,1,2021,10,0,37,37,1,0,0,12.503744,12.503744,.05,.05,.05,0,0,0,0,42,0,0,0,6.2371244,0,46,50,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,998,140567.34,32879.855,166534.95,26833.971,0,0,1687.651 +1418,1756,3079,3080,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,2,1,-201.15897,0,-9,-9,2021,8,0,0,46,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.07,56.08,54.79,55.86,6.666666666666667,1,1,1,0,2,13,3,0,645.5,228417.47,24630.426,158274.19,0,0,0,499.9234 +1418,1756,3080,3079,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.6199865,7.5401516,0,2,-1,-117.36336,0,3,-9,2021,9,0,35,36,1,0,0,6.6995187,6.6995187,0,0,0,0,0,0,0,0,1,1,0,.74374521,0,54.79,55.86,39.07,56.08,8.333333333333334,1,1,0,0,8,13,3,0,645.5,228417.47,24630.426,158274.19,0,0,0,499.9234 +1419,1757,3081,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1564798,8.2704172,0,0,0,-1020.7224,-9,2,-9,2021,12,1,28,0,1,1,0,14.187363,14.187363,.05,.05,0,0,0,0,0,7,0,0,0,.65591818,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,14,5,4,1,232,289138.94,228751.47,125543.77,3501.718,3874.2783,137.62962,1541.2799 +1419,1758,3082,3083,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,7.8498001,7.8254833,0,1,-2,-55.81905,-9,-9,-9,2021,9,0,40,0,1,0,0,5.7866282,5.7866282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.37,49.25,10,1,1,0,0,2,5,4,1,928.5,52750.102,10619.76,176348.64,88539.961,1601.5947,0,2612.6353 +1419,1758,3083,3082,-9,3081,1,0,24,0,0,0,1,1,-9,0,3,8.1550989,8.0852757,0,1,2,-5.639863,0,-9,2,2021,23,10,46,45,1,10,0,9.1327648,9.1327648,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.37,49.25,57.06,57.76,5,1,1,0,0,7,5,4,1,928.5,52750.102,10619.76,176348.64,88539.961,1601.5947,0,2612.6353 +1420,1759,3084,3085,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.02,20.92,57.59,30.59,6.666666666666667,2,3,0,1,0,4,1,1,1057,123770.06,0,231550.42,7884.9678,0,0,2346.3442 +1420,1759,3085,3084,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,30.59,49.02,20.92,6.666666666666667,2,3,0,0,0,4,1,1,1057,123770.06,0,231550.42,7884.9678,0,0,2346.3442 +1420,1760,3086,-9,3085,3084,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-902.98987,-9,3,3,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,6.666666666666667,2,3,0,0,6,4,1,1,1032,-73119.359,0,0,0,0,1120.8698,0 +1420,1761,3087,-9,3085,3084,1,0,23,0,0,0,1,1,1,0,2,7.9670234,7.7845726,0,0,0,-935.21338,-9,3,3,2021,12,1,38,0,1,1,0,9.7745619,9.7745619,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,1758,-151660.48,0,0,0,0,0,1689.3729 +1420,1762,3088,-9,3085,3084,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1005.3044,-9,3,3,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,-9,-9,3.333333333333333,2,3,0,0,6,4,1,1,50,-43879.031,0,0,0,0,0,0 +1421,1763,3089,3090,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.6861267,7.9217377,0,43,-3,-51.651825,0,-9,-9,2021,10,0,24,23,1,0,0,10.762269,10.762269,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.05,57.22,5,1,1,0,0,13,9,3,1,269.5,716544.13,371232.13,308928.69,0,0,-360.40326,1410.4225 +1421,1763,3090,3089,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,5.6458526,5.5521536,0,42,3,95.747131,0,3,3,2021,7,1,50,50,1,1,0,.81710047,.81710047,0,0,0,0,0,0,0,0,0,0,0,0,0,46.05,57.22,54.79,55.86,3.333333333333333,1,1,0,0,13,9,3,1,269.5,716544.13,371232.13,308928.69,0,0,-360.40326,1410.4225 +1421,1764,3091,-9,3089,3090,1,0,32,0,0,0,2,2,-9,0,3,7.9099069,7.8178864,0,0,0,-825.88214,0,3,2,2021,12,1,39,39,1,1,1,6.7473335,6.7473335,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,5,1,1,0,0,13,9,3,1,1059,-341355.75,194580.63,0,0,0,0,1591.6665 +1422,1765,3092,3093,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.0046158,8.1597033,0,33,-1,1.4368607,0,3,3,2021,14,3,40,42,1,3,0,11.614406,11.614406,0,0,0,0,0,0,0,0,0,0,0,2.1464877,0,34.81,46.68,49.64,48.69,5,1,1,0,0,8,9,4,0,2551.5,526696.69,269112.28,225903.02,10612.78,794.74011,0,2667.8862 +1422,1765,3093,3092,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.821116,7.9563026,5.750401,34,1,-76.87825,0,3,3,2021,12,1,40,44,1,1,0,7.0063944,7.0063944,.05,.05,.05,0,0,0,0,0,0,0,0,0,6.0782719,49.64,48.69,34.81,46.68,6.666666666666667,1,1,0,0,5,9,4,0,2551.5,526696.69,269112.28,225903.02,10612.78,794.74011,0,2667.8862 +1423,1766,3094,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1067.7469,0,2,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86442602,0,44.79,55.04,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,4820,0,0,0,0,0,0,414.10422 +1424,1767,3095,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,6.8278837,6.5347691,0,0,-1012.9274,0,-9,-9,2021,30,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6756244,6.9447441,32.27,37.26,-9,-9,0,1,1,0,0,0,8,2,1,341,2332713.3,0,1690407.4,0,0,0,916.29486 +1425,1768,3096,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.6220245,7.6211195,0,0,0,-992.28394,0,3,2,2021,12,0,31,30,1,0,0,8.4708958,8.4708958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.56,39.66,-9,-9,5,1,1,0,0,10,11,3,0,1501,445453.25,130450.06,214878,0,0,0,988.15149 +1425,1769,3097,-9,3096,-9,1,1,21,0,0,0,2,2,-9,0,2,7.5088773,7.4691133,0,0,0,-1052.5344,0,2,-9,2021,27,10,33,34,1,10,1,5.7380676,5.7380676,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.65,54.69,-9,-9,0,1,1,0,0,3,11,3,0,259,105262.61,129746.44,0,0,827.1651,0,1040.6584 +1426,1770,3098,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.2135844,6.0394578,0,0,-1000.81,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4408092,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,404,879945.06,109573.19,577288.56,0,0,0,1294.7062 +1427,1771,3099,3101,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.8683338,9.0743303,0,27,-2,55.205784,0,2,3,2021,6,0,29,33,1,0,0,29.292702,29.292702,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.07,46.29,6.666666666666667,1,1,0,1,9,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1427,1771,3100,-9,3099,3101,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1059.6842,-9,1,1,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43904242,0,13.19,67.08,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1427,1771,3101,3099,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.2065821,9.3652887,0,9,2,57.108624,0,-9,-9,2021,10,0,44,44,1,0,0,23.504648,23.504648,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.07,46.29,57.16,56.15,8.333333333333334,1,1,0,0,9,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1428,1772,3102,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1002.5291,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46,17.21,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,695,28480.516,0,2885.3081,12824.981,0,0,987.01147 +1429,1773,3103,3104,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,8.6908112,8.5714073,0,6,3,16.408899,-9,-9,-9,2021,9,0,30,0,1,1,0,20.001936,20.001936,0,0,0,0,0,0,0,0,1,1,0,6.3620124,0,53,47,63.24,42.39,8,4,1,0,0,1,13,5,1,1222.5,1421268.4,1122404.8,279813.69,0,0,0,5423.5391 +1429,1773,3104,3103,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.0083022,7.1773372,0,6,-3,-58.872002,0,3,3,2021,6,0,16,20,1,0,0,10.334919,10.334919,0,0,0,0,0,0,0,0,1,1,0,7.3902445,0,63.24,42.39,53,47,8.333333333333334,1,1,0,0,7,13,5,1,1222.5,1421268.4,1122404.8,279813.69,0,0,0,5423.5391 +1430,1774,3105,3106,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8085365,8.991744,0,19,-6,43.587097,0,2,2,2021,14,2,48,38,1,2,0,16.17382,16.17382,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,53.24,47.77,56.48,6.666666666666667,2,3,0,0,4,8,5,1,1133,805499.13,140964.03,476454.69,34394.578,0,0,3426.2605 +1430,1774,3106,3105,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,0,0,0,19,6,-39.970142,0,2,1,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.1408372,0,47.77,56.48,48.76,53.24,6.666666666666667,2,3,0,0,9,8,5,1,1133,805499.13,140964.03,476454.69,34394.578,0,0,3426.2605 +1431,1775,3107,-9,3108,3109,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.01617,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1431,1775,3108,3109,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,24,0,127.77394,0,2,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.54,37.26,60.21,34.28,5,2,3,0,0,0,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1431,1775,3109,3108,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,7.7356858,7.872293,0,24,0,1.9255397,0,3,3,2021,7,0,30,44,1,0,0,9.1834021,9.1834021,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.21,34.28,49.54,37.26,5,2,3,0,0,9,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1432,1776,3110,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-954.71948,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.86,32.4,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,680,-149594.33,0,0,0,0,0,1189.3202 +1433,1777,3111,3112,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.290729,6.416306,11,-4,4.8525877,0,2,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6044912,5.8528295,46.55,30.75,51.77,58.57,3.333333333333333,1,1,0,0,5,11,3,1,642,738765.25,488205.88,140946.91,0,0,0,1971.8132 +1433,1777,3112,3111,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2225108,7.4362612,11,4,-105.67155,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2645798,7.3430367,51.77,58.57,46.55,30.75,6.666666666666667,1,1,0,0,5,11,3,1,642,738765.25,488205.88,140946.91,0,0,0,1971.8132 +1434,1778,3113,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,8.4587078,8.5109072,0,0,-1062.6816,-9,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,6.283536,0,0,1,1,0,3.2981102,8.7315359,65.13,21.6,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1524,461840.22,190437.89,151737.14,0,0,1086.4277,3275.5635 +1435,1779,3114,3115,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,7.7949262,7.9932666,29,-5,15.051095,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.5066862,0,41.45,36.84,54.76,32.27,6.666666666666667,1,1,0,0,5,6,5,1,602,2399918.3,1619441,557133.13,0,0,331.45502,4722.8408 +1435,1779,3115,3114,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.0611734,8.9171133,8.4911833,29,5,12.697886,0,2,2,2021,11,2,40,40,1,2,0,10.655701,10.655701,.05,.05,0,0,0,0,0,2,1,1,0,8.6595926,0,54.76,32.27,41.45,36.84,5,1,1,0,0,9,6,5,1,602,2399918.3,1619441,557133.13,0,0,331.45502,4722.8408 +1436,1780,3116,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1694622,8.6446152,7.2761545,0,0,-941.50616,0,2,3,2021,9,2,37,0,1,2,0,9.7005672,9.7005672,0,0,0,0,0,0,0,0,1,1,0,2.7437196,7.5415359,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1097,502507.88,510893.13,0,0,0,0,2346.1746 +1437,1781,3117,3119,-9,-9,1,1,55,0,2,0,3,3,-9,0,4,0,0,0,38,9,70.479996,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.11,54.04,51.73,58.82,8.333333333333334,1,1,0,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3118,-9,3119,3117,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.4084,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3119,3117,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.735486,8.9175291,0,28,0,39.943592,0,2,2,2021,8,0,40,41,1,0,0,16.406366,16.406366,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,50.11,54.04,8.333333333333334,1,1,0,0,11,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3120,-9,3119,3117,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1087.1587,-9,1,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1438,1782,3121,3122,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.2728863,8.4396753,6,7,-24.936079,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4716034,8.3258209,45.96,38.67,58.47,44.69,8.333333333333334,1,1,0,0,0,1,5,1,680.5,2284131,1831575.5,134240.83,0,0,0,5789.2539 +1438,1782,3122,3121,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.5487242,8.3357601,42,-7,39.158508,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4160542,8.4825144,58.47,44.69,45.96,38.67,8.333333333333334,1,1,0,0,0,1,5,1,680.5,2284131,1831575.5,134240.83,0,0,0,5789.2539 +1439,1783,3123,3124,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9488482,7.1871653,12,-5,5.0668302,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.138654,7,0,0,0,5.3084788,7.1693931,41.69,46.3,59.29,49.68,6.666666666666667,1,1,0,0,12,12,2,1,931,664192.13,320685.44,150883.16,0,0,0,316.31827 +1439,1783,3124,3123,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,12,5,-176.284,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,41.69,46.3,8.333333333333334,1,1,0,0,8,12,2,1,931,664192.13,320685.44,150883.16,0,0,0,316.31827 +1440,1784,3125,-9,-9,-9,1,0,75,0,2,0,1,1,-9,0,4,0,5.9953895,5.8046694,0,0,-886.13794,0,-9,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4242668,42.46,33.24,-9,-9,3.333333333333333,1,1,0,0,8,10,2,1,1044,43978.648,0,0,0,0,0,-1.5577477 +1441,1785,3126,3127,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6880951,8.6381445,0,6,-6,-16.121326,0,3,2,2021,10,0,47,52,1,0,0,15.56046,15.56046,0,0,0,0,0,0,0,0,0,0,0,4.7909384,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,1020.5,2623708.5,2277248,443113.5,20400.793,0,0,4704.8604 +1441,1785,3127,3126,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.8247108,8.6902733,0,6,6,18.134407,0,2,2,2021,14,2,41,37,1,2,0,19.54143,19.54143,.05,.05,0,0,0,0,0,0,0,0,0,3.5713966,0,54.2,57.49,48.87,58.55,6.666666666666667,1,1,0,0,7,2,5,1,1020.5,2623708.5,2277248,443113.5,20400.793,0,0,4704.8604 +1442,1786,3128,3129,-9,-9,1,0,46,0,0,0,1,1,-9,1,1,0,0,0,24,-4,33.231941,0,3,3,2021,30,11,0,0,3,11,0,0,0,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,31.68,17,44,41,3.333333333333333,1,1,0,0,12,11,5,1,660.5,496248.38,308226.47,239247.17,17213.633,13005.973,512.18085,4011.8442 +1442,1786,3129,3128,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.1521282,8.8290854,0,5,4,31.748384,0,-9,-9,2021,18,7,43,0,1,7,0,17.399372,17.399372,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,44,41,31.68,17,3.333333333333333,1,1,0,0,15,11,5,1,660.5,496248.38,308226.47,239247.17,17213.633,13005.973,512.18085,4011.8442 +1442,1787,3130,-9,3128,3129,1,1,25,0,0,0,2,2,-9,0,2,6.9265127,6.8342423,0,0,0,-993.93756,0,1,1,2021,12,3,32,0,1,3,1,5.1327243,5.1327243,0,0,0,0,0,0,0,7,1,0,1,0,0,36.02,46.14,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,295,40478.715,0,0,0,0,0,656.75574 +1442,1788,3131,-9,3128,3129,1,1,23,0,0,0,2,2,1,0,3,7.9584937,7.8993249,0,0,0,-886.10803,-9,1,1,2021,18,5,40,0,1,5,1,9.7506571,9.7506571,0,0,0,0,0,0,0,0,1,0,1,0,0,34.21,51.94,-9,-9,5,1,1,0,0,1,11,4,1,451,-45668.523,0,0,0,0,0,642.54633 +1443,1789,3132,-9,3133,3135,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.08203,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3133,3135,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.9705539,7.9593172,0,4,0,32.766232,0,-9,-9,2021,11,0,25,33,1,2,0,12.701156,12.701156,0,0,0,0,0,0,0,27,0,0,0,0,0,47,57,51,56,7,1,1,0,0,9,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3134,-9,3133,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.0336,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3135,3133,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9608574,8.9837952,0,4,9,-9.1931171,0,2,2,2021,13,3,82,70,1,3,0,11.037852,11.037852,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,47,57,8.333333333333334,1,1,0,0,11,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1444,1790,3136,3137,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9360256,8.0563374,0,38,-1,-13.802668,0,2,2,2021,12,1,38,38,1,1,0,8.3146095,8.3146095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.66,43.2,49.27,56.95,5,1,1,0,0,14,9,3,1,901,501507.38,358754.75,57693.27,11936.779,0,0,1731.0195 +1444,1790,3137,3136,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,5.2691288,5.3102674,0,38,1,-66.583305,0,2,3,2021,11,2,2,0,1,2,0,13.604075,13.604075,0,0,0,0,0,0,0,0,0,0,0,2.9426856,0,49.27,56.95,55.66,43.2,8.333333333333334,1,1,0,0,6,9,3,1,901,501507.38,358754.75,57693.27,11936.779,0,0,1731.0195 +1444,1791,3138,-9,3137,3136,1,1,28,0,0,0,2,2,-9,0,4,7.7469673,7.4848847,0,0,0,-1115.2665,0,2,2,2021,6,0,43,38,1,0,1,6.309432,6.309432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.9,53.24,-9,-9,10,1,1,0,0,12,9,3,1,392,30052.479,38955.367,0,0,0,0,1637.9232 +1445,1792,3139,3140,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4424114,8.5766716,0,1,12,109.51778,0,2,2,2021,14,2,97,113,1,2,0,6.6612506,6.6612506,0,0,0,0,0,0,0,29,0,0,0,0,0,48.26,38.5,36.33,53.5,8.333333333333334,1,1,0,0,12,9,5,1,465,48998.355,31503.723,0,0,0,-76.738617,2899.6118 +1445,1792,3140,3139,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.6470022,7.8240857,0,1,-12,57.07243,-9,-9,-9,2021,18,4,50,0,1,4,0,4.5142508,4.5142508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.33,53.5,48.26,38.5,0,1,1,0,0,0,9,5,1,465,48998.355,31503.723,0,0,0,-76.738617,2899.6118 +1445,1793,3141,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1137.0461,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,9,2,1,351,71601.25,0,0,0,0,0,0 +1446,1794,3142,-9,3144,3143,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.2324,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1446,1794,3143,3144,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.056263,9.219265,0,14,8,-61.416752,0,-9,-9,2021,9,0,38,38,1,0,0,39.938824,39.938824,.05,.05,0,0,0,0,0,0,1,1,0,3.0431383,0,54.64,47.79,46.63,59.72,8.333333333333334,2,3,0,0,11,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1446,1794,3144,3143,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,0,0,0,9,-8,-11.093297,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,54.64,47.79,10,2,3,0,0,0,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1447,1795,3145,3147,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4137506,8.9292116,0,15,4,14.968229,0,2,2,2021,10,2,45,45,1,2,0,14.963349,14.963349,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.46,56.91,47.38,57.75,8.333333333333334,1,1,0,1,12,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3146,-9,3147,3145,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.61713,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3147,3145,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.28267,8.5762348,6.0768394,15,-4,-23.870819,0,1,2,2021,7,0,48,6,1,0,0,10.387341,10.387341,0,0,0,0,0,0,0,0,1,1,0,5.4156981,0,47.38,57.75,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3148,-9,3147,3145,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6532,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1448,1796,3149,3150,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.2522836,7.0508633,0,6,-6,4.5489058,0,-9,-9,2021,6,0,30,30,1,0,0,7.7238278,7.7238278,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,69.09,17.02,8.333333333333334,1,1,0,0,13,5,3,1,285,903220.13,830197.63,254869.56,0,10478.238,0,1139.0122 +1448,1796,3150,3149,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,6.6495218,6.9854684,6,6,27.042995,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8468795,6.9207854,69.09,17.02,61.12,51.57,6.666666666666667,1,1,0,0,0,5,3,1,285,903220.13,830197.63,254869.56,0,10478.238,0,1139.0122 +1449,1797,3151,-9,3153,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.35455,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1449,1797,3152,3153,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.0112305,8.0038519,0,1,0,-50.416023,-9,-9,-9,2021,10,0,40,0,1,1,0,8.3557892,8.3557892,.05,.05,0,0,0,0,0,0,1,1,0,1.2115905,0,50,58,46.69,58.35,7,1,1,0,0,1,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1449,1797,3153,3152,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.953506,7.9551253,0,1,9,43.686729,0,3,3,2021,12,0,31,35,1,0,0,10.205446,10.205446,0,0,0,0,0,0,0,2,1,1,0,0,0,46.69,58.35,50,58,5,1,1,0,0,10,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1450,1798,3154,3155,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.5825987,7.6319342,0,1,-1,-46.808781,-9,3,3,2021,12,0,36,0,1,0,0,7.8106141,7.8106141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.88,56.68,8.333333333333334,1,1,0,0,7,13,5,1,629,719609.38,654191.88,269340.31,79297.219,0,0,7401.6797 +1450,1798,3155,3154,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8659973,8.8972988,0,1,1,67.562012,-9,2,2,2021,11,0,36,0,1,0,0,27.550547,27.550547,.05,.05,0,0,0,0,0,0,0,0,0,8.3028612,0,52.88,56.68,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,629,719609.38,654191.88,269340.31,79297.219,0,0,7401.6797 +1450,1799,3156,-9,3154,3155,1,1,25,0,0,0,2,2,-9,0,4,7.6873293,7.6842985,0,0,0,-1102.2792,-9,3,2,2021,9,0,36,0,1,0,1,6.4961581,6.4961581,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,260,-144856.53,0,0,0,0,0,807.99811 +1451,1800,3157,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.1518712,6.9332328,0,0,0,-1025.9526,0,2,2,2021,14,2,47,35,1,2,0,3.2288952,3.2288952,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,27.63,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,538,515453.34,224882.64,157496.14,0,0,0,792.04126 +1451,1801,3158,-9,3157,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3711309,8.2406874,0,0,0,-1091.3107,0,2,-9,2021,11,1,47,52,1,1,1,8.2837572,8.2837572,0,0,0,0,0,0,0,0,0,0,0,0,0,22.18,69.37,-9,-9,1.666666666666667,1,1,0,0,4,5,4,1,248,227220.22,0,0,0,0,0,2401.0195 +1452,1802,3159,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,6.2705522,6.071938,0,0,0,-862.65942,-9,2,2,2021,12,0,25,0,1,0,0,2.7556074,2.7556074,0,0,0,0,0,0,0,0,0,0,0,0,0,35.46,55.45,-9,-9,6.666666666666667,1,1,0,1,2,10,2,1,1182,-44713.02,0,0,0,0,0,381.52536 +1453,1803,3160,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.4204082,7.912848,0,0,-950.33868,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0795755,61.27,40.86,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1089,573789.25,121218.83,288785.5,0,0,0,1091.6333 +1454,1804,3161,-9,3165,3162,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.9846,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3162,3165,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,8.7424421,8.7819777,0,14,-1,129.34859,0,1,1,2021,12,0,32,36,1,0,0,23.282444,23.282444,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.05,54.79,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3163,-9,3165,3162,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.7872,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3164,-9,3165,3162,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.67242,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3165,3162,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.5589008,8.8199444,0,14,1,116.37928,0,2,2,2021,5,0,30,0,1,0,0,25.903419,25.903419,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.05,54.79,8.333333333333334,1,1,0,0,12,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1455,1805,3166,3169,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,7.3302751,7.4014673,0,10,4,16.280449,0,2,2,2021,9,0,50,50,1,0,0,3.7743917,3.7743917,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,48.99,58.91,8.333333333333334,1,1,0,0,13,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3167,-9,3169,3166,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.43488,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3168,-9,3169,3166,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1099.5967,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3169,3166,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.7183547,7.5061393,0,18,-4,94.487938,0,2,2,2021,13,1,10,16,1,1,0,20.648289,20.648289,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,58.91,57.73,54.53,6.666666666666667,1,1,0,1,13,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3170,-9,3169,3166,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-978.88666,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1456,1806,3171,3174,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,7,-3,-6.0074434,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3172,-9,3171,3174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.66431,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3173,-9,3171,3174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.2297,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3174,3171,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.827158,8.6169109,0,7,3,-42.04858,0,-9,-9,2021,8,0,46,50,1,0,0,16.783808,16.783808,0,0,.05,0,0,0,0,0,1,0,1,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,15,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1457,1807,3175,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,1,0,0,0,0,0,-982.9375,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,38.913258,0,0,1,1,0,0,0,28.87,23.73,-9,-9,5,1,1,0,0,0,12,1,0,504,105944.48,0,65422.539,0,0,0,1593.3654 +1458,1808,3176,3177,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,0,0,47,-1,-14.592222,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.485858,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,0,7,3,1,1017,2455810,1104198,1391314.9,0,0,0,5575.3496 +1458,1808,3177,3176,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.4770803,8.1993361,47,1,-67.965652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7285128,8.2839289,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,1,1017,2455810,1104198,1391314.9,0,0,0,5575.3496 +1459,1809,3178,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.58936,0,3,-9,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.81,45.47,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,1566,-89916.07,0,0,0,0,0,1823.5372 +1460,1810,3179,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-973.89764,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,51,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,713,323708.06,0,353916.88,0,0,0,199.13397 +1461,1811,3180,-9,3181,3182,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.5224,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3181,3182,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,7.3609271,7.5170097,0,1,-3,2.0412889,-9,-9,-9,2021,6,0,6,0,1,0,0,30.906563,30.906563,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,54.96,53.17,10,1,1,0,0,8,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3182,3181,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.6718912,8.4847183,0,1,3,42.075764,-9,1,1,2021,7,0,40,0,1,0,0,20.517509,20.517509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.02,56.42,6.666666666666667,1,1,0,0,13,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3183,-9,3181,3182,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7719,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1462,1812,3184,3185,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.3696833,8.5370607,0,1,-3,-75.204948,-9,-9,-9,2021,17,6,76,0,1,6,0,6.4875793,6.4875793,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.67,65.95,59.29,49.68,8.333333333333334,1,1,0,0,7,12,5,1,1905,492727.97,276899.41,215348.64,37305.816,5048.293,0,3488.9121 +1462,1812,3185,3184,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0125675,8.4583492,0,1,3,11.693377,0,2,1,2021,7,0,25,30,1,0,0,19.297697,19.297697,.05,.05,.05,0,0,0,0,0,1,1,0,4.6732092,0,59.29,49.68,30.67,65.95,8.333333333333334,1,1,0,0,14,12,5,1,1905,492727.97,276899.41,215348.64,37305.816,5048.293,0,3488.9121 +1463,1813,3186,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1048.3835,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.77,35,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,618,-25125.143,0,0,0,1468.0867,-196.32843,38.97905 +1464,1814,3187,-9,3189,3188,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.54309,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1464,1814,3188,3189,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.4751101,8.6806355,0,7,4,52.219288,0,-9,-9,2021,6,0,55,50,1,0,0,7.9749389,7.9749389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,0,1,1,0,0,14,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1464,1814,3189,3188,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.7533607,8.6668911,0,7,-4,-5.1490383,0,3,3,2021,8,0,44,38,1,0,0,15.338811,15.338811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,13,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1465,1815,3190,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1001.1113,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,19.7,-9,-9,6.666666666666667,1,1,0,0,9,9,1,1,439,0,0,0,0,0,0,744.4682 +1466,1816,3191,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.6927223,9.3778553,0,17,-7,53.973537,0,-9,-9,2021,14,3,60,37,1,3,0,29.15864,29.15864,0,0,0,0,0,0,0,2,1,1,0,6.3534875,0,52.47,49.93,60.87,42.1,8.333333333333334,1,1,0,0,9,6,5,1,728,450603.88,161019.23,111365.4,0,0,0,11816.188 +1466,1817,3192,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.5478654,7.6172886,16,7,-69.670937,0,1,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0815229,7.6896057,60.87,42.1,52.47,49.93,8.333333333333334,1,1,0,0,8,6,5,1,351,1184426.6,393776.25,467994.78,0,0,0,2001.4063 +1467,1818,3193,-9,3195,3194,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.67834,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1818,3194,3195,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,8.5932798,8.9680138,0,6,-1,29.196438,0,2,2,2021,6,0,52,62,1,0,0,13.797733,13.797733,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.32,46.92,43.68,53.03,10,1,1,0,0,7,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1818,3195,3194,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.3237629,7.6215458,0,6,1,-52.283279,0,2,-9,2021,10,0,20,20,1,1,0,8.0285349,8.0285349,0,0,0,0,0,0,.92507935,0,1,1,0,0,0,43.68,53.03,44.32,46.92,6.666666666666667,1,1,0,0,7,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1819,3196,-9,3195,3194,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-821.29291,1,2,3,2021,9,1,0,14,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,631,-37434.656,0,0,0,0,0,-1365.8599 +1468,1820,3197,3198,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.0157499,9.040309,0,26,1,48.423107,0,2,1,2021,8,0,42,37,1,0,0,21.630096,21.630096,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.42,52.88,40.13,62.93,8.333333333333334,1,1,0,0,14,8,5,1,378.5,1140005.3,420788.88,682299.88,92722.758,0,0,5519.5684 +1468,1820,3198,3197,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.0358515,9.0640182,0,26,-1,-21.251097,0,2,2,2021,12,0,32,33,1,0,0,23.309771,23.309771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.13,62.93,46.42,52.88,8.333333333333334,1,1,0,0,13,8,5,1,378.5,1140005.3,420788.88,682299.88,92722.758,0,0,5519.5684 +1468,1821,3199,-9,3198,3197,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1006.3818,-9,1,1,2021,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.55796236,0,16.47,64.27,-9,-9,3.333333333333333,1,1,0,1,2,8,1,1,2156,-43134.574,0,0,0,0,0,181.95506 +1468,1822,3200,-9,3198,3197,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-926.2829,-9,1,1,2021,22,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.12,61.85,-9,-9,3.333333333333333,1,1,0,0,1,8,1,1,803,199856.84,0,0,0,8134.0547,0,0 +1469,1823,3201,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.5150795,7.2854714,0,0,0,-913.46436,0,3,2,2021,6,0,35,40,1,0,0,5.4420662,5.4420662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.86,32.97,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,744,114614.5,33313.977,0,0,0,0,1115.2432 +1469,1824,3202,-9,-9,3201,1,0,25,0,0,0,2,2,-9,0,3,7.8038268,8.0843506,0,0,0,-869.42218,0,-9,2,2021,21,9,40,35,1,9,1,6.1778698,6.1778698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.45,53.17,-9,-9,3.333333333333333,1,1,0,0,6,7,3,1,1712,-138124.58,-3966.3826,0,0,0,0,497.99081 +1469,1825,3203,-9,-9,3201,1,1,23,0,0,0,2,2,-9,0,3,8.0110788,8.0854521,0,0,0,-1069.2684,0,-9,2,2021,13,2,60,60,1,2,1,6.3664403,6.3664403,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,56.44,-9,-9,5,1,1,0,0,7,7,4,1,747,-21966.592,11781.977,0,0,0,0,2087.884 +1470,1826,3204,3205,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.765924,5.90626,9,2,-70.634644,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9132342,46.13,40.24,48.45,54.63,10,1,1,0,0,0,7,3,1,1291.5,658174.88,158578.81,443633.41,0,0,0,1648.0293 +1470,1826,3205,3204,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4754739,7.4223838,9,-2,22.70233,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2251575,7.6146579,48.45,54.63,46.13,40.24,8.333333333333334,1,1,0,0,10,7,3,1,1291.5,658174.88,158578.81,443633.41,0,0,0,1648.0293 +1471,1827,3206,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-887.31464,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3272831,0,45.98,31.58,-9,-9,5,1,1,0,0,2,7,1,0,540,343417.03,0,182490.39,0,0,0,922.5459 +1472,1828,3207,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,7.6119418,6.9184928,0,0,-1130.4359,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6508422,47.13,24.71,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,357,332715.41,330795.47,184071.97,0,0,0,2226.2456 +1473,1829,3208,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.6212292,8.358634,0,0,0,-1028.5105,0,3,3,2021,21,9,42,42,1,9,0,10.331613,10.331613,.05,.05,0,0,0,0,0,14.5,1,1,0,1.6875759,0,43.93,43.67,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,66,2297.395,93066.344,0,0,2768.436,3283.791,2345.5913 +1474,1830,3209,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-828.78156,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.01,27.79,-9,-9,10,1,1,0,0,0,7,1,0,1978.5,-9665.1143,0,0,0,0,0,712.58813 +1474,1830,3210,-9,3209,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1015.8632,-9,3,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.76,63.69,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1978.5,-9665.1143,0,0,0,0,0,712.58813 +1474,1831,3211,-9,3209,-9,1,1,19,0,0,0,3,3,-9,0,4,6.9782486,7.0389662,0,0,0,-1047.2521,0,3,-9,2021,10,0,34,35,1,2,1,3.7162867,3.7162867,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,2,0,438,11652.981,0,0,0,0,0,947.21832 +1475,1832,3212,3213,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.6029563,7.9880471,51,1,-46.594418,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.422143,7.7579255,50.03,52.62,53.37,42.91,8.333333333333334,1,1,0,0,0,2,3,1,1587.5,579122.88,298366.06,209294.34,0,0,0,1884.4658 +1475,1832,3213,3212,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,51,-1,35.242302,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.37,42.91,50.03,52.62,8.333333333333334,1,1,0,0,0,2,3,1,1587.5,579122.88,298366.06,209294.34,0,0,0,1884.4658 +1476,1833,3214,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,7.4970984,7.6330047,0,0,-1002.2775,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7180305,7.2903924,31.5,20.97,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,856,629974.81,285640.25,86644.359,0,0,0,2341.335 +1476,1834,3215,-9,3214,-9,1,1,48,0,0,0,2,2,-9,0,4,7.5096717,7.5280385,0,0,0,-1041.184,0,3,3,2021,9,0,40,45,1,1,0,4.3372169,4.3372169,.05,.05,0,0,0,0,0,0,1,1,0,7.3379436,0,51,55,-9,-9,8,1,1,0,0,8,13,3,1,4735,8456.5107,32052.881,55178.094,0,0,0,661.81763 +1476,1835,3216,-9,3214,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-925.52625,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5557666,0,48.66,44.34,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,301,77840.047,0,0,0,0,0,536.367 +1477,1836,3217,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.7301035,8.9452829,6.0955501,0,0,-1044.2401,0,2,2,2021,3,0,36,25,1,0,0,21.500652,21.500652,0,0,0,0,0,0,0,2,0,0,0,0,6.4951315,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,551,239642.73,0,439216.41,-8382.415,0,454.83725,3372.5996 +1478,1837,3218,-9,3221,3220,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.98151,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3219,-9,3221,3220,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.58765,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3220,3221,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0944872,9.204072,0,7,-1,59.1833,0,2,2,2021,11,0,68,48,1,0,0,13.531771,13.531771,.05,.05,0,0,0,0,0,0,1,1,0,7.5519552,0,47.14,50.99,54.2,57.49,8.333333333333334,1,1,0,0,14,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3221,3220,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.2460637,6.2998638,0,7,1,101.92423,0,2,2,2021,8,0,10,8,1,0,0,8.1035681,8.1035681,.05,.05,0,0,0,0,0,0,1,1,0,8.2922411,0,54.2,57.49,47.14,50.99,10,1,1,0,0,13,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1479,1838,3222,3223,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.9786863,8.9468002,0,5,0,26.920393,0,-9,-9,2021,12,0,40,48,1,0,0,21.781908,21.781908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,35.95,55.09,5,1,1,0,0,14,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1838,3223,3222,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.8058481,9.0940542,0,5,0,-32.364155,0,2,3,2021,12,0,41,6,1,0,0,18.804735,18.804735,.05,.05,0,0,0,0,0,0,1,1,0,.61246508,0,35.95,55.09,52.6,52.88,6.666666666666667,1,1,0,0,11,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1838,3224,-9,3223,3222,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.30847,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1839,3225,-9,3223,3222,1,1,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-832.89948,0,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.58415288,0,1,1,0,0,0,40.36,47.54,-9,-9,5,1,1,0,0,4,8,1,1,774,-53834.598,0,0,0,2837.2419,603.19318,0 +1480,1840,3226,3227,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,0,-67.258926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.41,29.17,42.04,32.53,10,1,1,0,0,0,5,3,1,1148.5,557599.13,417633.63,239115.91,0,0,0,1663.5505 +1480,1840,3227,3226,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.874167,7.7918115,51,0,44.408169,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7603464,42.04,32.53,63.41,29.17,3.333333333333333,1,1,0,0,0,5,3,1,1148.5,557599.13,417633.63,239115.91,0,0,0,1663.5505 +1481,1841,3228,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.6326604,7.708293,0,0,-1088.166,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.873836,7.3055739,63.98,38.08,-9,-9,5,1,1,0,0,0,12,3,1,413,263274.78,138368.78,213781.53,0,0,0,3209.1787 +1482,1842,3229,-9,3230,3231,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.1003,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3230,3231,-9,-9,1,0,44,0,2,0,2,2,-9,1,4,6.2285981,5.6049566,0,21,-2,159.45474,0,2,2,2021,7,0,8,0,1,0,0,7.6188726,7.6188726,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,49.26,54.61,8.333333333333334,1,1,0,0,5,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3231,3230,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.3471365,8.4448242,0,22,2,76.778931,0,2,2,2021,11,0,44,44,1,0,0,10.591923,10.591923,.05,.05,.05,0,0,0,0,0,1,1,0,2.7586272,0,49.26,54.61,57.16,56.15,6.666666666666667,1,1,0,0,12,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3232,-9,3230,3231,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0546,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1483,1843,3233,3234,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2560282,8.2913961,0,12,6,-152.3811,0,3,3,2021,18,6,35,35,1,6,0,12.711177,12.711177,0,0,0,0,0,0,0,0,0,0,0,0,0,12.18,66.26000000000001,32.36,52.84,5,1,1,0,0,10,11,4,1,784.5,409033.56,212783.27,305414.75,114206.8,7528.5664,897.36121,2811.6404 +1483,1843,3234,3233,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,7.6264887,7.5692353,0,12,-6,-75.636566,0,3,3,2021,23,11,37,17,1,11,0,7.1111541,7.1111541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.36,52.84,12.18,66.26000000000001,3.333333333333333,1,1,0,0,10,11,4,1,784.5,409033.56,212783.27,305414.75,114206.8,7528.5664,897.36121,2811.6404 +1484,1844,3235,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6157541,7.5418239,0,0,0,-961.07501,0,2,2,2021,9,0,20,15,1,0,0,9.4781837,9.4781837,0,0,0,0,0,0,0,0,1,1,0,3.7888391,0,58.08,21.85,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,2388,0,0,0,0,0,0,757.78448 +1485,1845,3236,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.7101479,8.6546116,0,0,0,-963.15979,0,1,2,2021,10,0,37,76,1,0,0,19.915997,19.915997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,-9,-9,8.333333333333334,2,3,0,0,11,7,5,1,155,202680.27,-30780.061,0,0,0,0,2326.9119 +1485,1846,3237,-9,3236,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-844.0932,-9,1,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8778055,0,46,59,-9,-9,7,2,3,0,0,0,7,1,1,235,-35636.984,0,0,0,0,0,-285.30359 +1486,1847,3238,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.21698,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,535,62925.09,0,0,0,0,0,1314.3125 +1487,1848,3239,3240,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,3.4089024,3.080698,56,-4,20.86805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.1372991,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,0,1,2,1,1170.5,227905.52,113346.13,162488.05,0,0,0,1529.2651 +1487,1848,3240,3239,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.7374692,6.6052618,56,4,-23.824194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9413862,6.8682165,57.33,53.46,57.16,56.15,10,1,1,0,0,0,1,2,1,1170.5,227905.52,113346.13,162488.05,0,0,0,1529.2651 +1488,1849,3241,3242,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3749895,7.4880624,5.5355644,36,-1,-91.151093,0,3,3,2021,11,0,19,19,1,0,0,8.884223,8.884223,.05,.05,0,0,0,0,0,0,0,0,0,4.8429918,5.363534,50.63,50.99,58.15,52.91,6.666666666666667,1,1,0,0,13,6,4,1,299,475306.88,516756.09,62094.625,43102.32,10010.181,0,3143.4504 +1488,1849,3242,3241,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8895936,8.5408049,7.6043077,11,1,25.950457,0,-9,-9,2021,8,0,38,37,1,0,0,10.929272,10.929272,.05,.05,0,0,0,0,0,0,0,0,0,4.2493978,7.6052599,58.15,52.91,50.63,50.99,8.333333333333334,1,1,0,0,3,6,4,1,299,475306.88,516756.09,62094.625,43102.32,10010.181,0,3143.4504 +1488,1850,3243,3244,3241,3242,1,1,26,0,0,0,2,2,-9,0,4,8.3497648,7.8917975,0,1,4,88.070946,0,2,2,2021,11,0,38,37,1,0,0,13.872181,13.872181,.05,.05,0,0,0,0,0,0,0,0,0,3.6213489,0,49.97,56.66,33.15,58.97,8.333333333333334,1,1,0,0,8,6,4,1,162,126495.51,-22948.09,156364.72,75813.055,0,0,3634.3164 +1488,1850,3244,3243,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.6709185,7.7757721,0,1,-4,26.063704,-9,-9,-9,2021,14,3,37,0,1,3,0,7.7774277,7.7774277,.05,.05,0,0,0,0,0,0,0,0,0,7.2456985,0,33.15,58.97,49.97,56.66,8.333333333333334,1,1,0,0,0,6,4,1,162,126495.51,-22948.09,156364.72,75813.055,0,0,3634.3164 +1489,1851,3245,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.44879,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3438988,0,51,46,-9,-9,7,1,1,0,0,0,6,1,1,221,0,0,0,0,0,0,1536.4264 +1490,1852,3246,3247,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4078903,7.4333544,0,31,10,-59.422874,0,3,2,2021,15,3,23,25,1,3,0,10.11344,10.11344,0,0,0,0,0,0,0,0,1,1,0,6.3706975,0,45.01,57.46,60.28,43.74,8.333333333333334,1,1,0,0,9,10,3,1,1234.5,52012.145,104218.03,172773.56,0,16911.984,0,2339.9089 +1490,1852,3247,3246,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.5227652,7.4095407,0,31,-10,-67.622719,0,2,3,2021,10,0,60,50,1,0,0,4.6224122,4.6224122,0,0,.05,0,0,0,0,0,1,1,0,4.3088484,0,60.28,43.74,45.01,57.46,6.666666666666667,1,1,0,0,9,10,3,1,1234.5,52012.145,104218.03,172773.56,0,16911.984,0,2339.9089 +1491,1853,3248,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-915.90802,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.02,31.82,-9,-9,0,1,1,0,1,0,9,1,0,129,211052.14,0,180546.2,-2242.3679,0,0,235.85118 +1491,1854,3249,-9,3248,-9,1,1,33,0,0,0,2,2,-9,0,3,8.4844189,8.2753677,0,0,0,-921.28027,0,2,2,2021,15,5,66,40,1,5,0,6.2342896,6.2342896,0,0,0,0,0,0,0,7,1,1,0,0,0,29.46,59.39,-9,-9,3.333333333333333,1,1,0,0,8,9,4,0,828,-189537.5,0,0,0,0,0,149.18758 +1492,1855,3250,-9,-9,3251,1,1,50,0,0,0,3,3,-9,0,3,7.9759355,8.2370043,0,0,0,-1016.8708,0,3,3,2021,11,1,56,0,1,1,0,8.235611,8.235611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.16,47.36,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,1346,40284.48,6528.9858,0,0,0,0,1439.0099 +1492,1856,3251,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.0977197,5.7343879,0,0,-920.45703,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3053966,5.9429913,55,45,-9,-9,8,2,3,0,0,0,8,2,0,577,562278.5,-79064.148,361951.91,0,0,0,554.99969 +1493,1857,3252,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-969.50189,0,2,3,2021,21,5,0,0,4,5,0,0,0,0,0,0,1,0,5.7767429,0,0,1,1,0,0,0,16.04,23.99,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,1869,3846.2314,0,0,0,0,0,1161.8575 +1494,1858,3253,3254,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,38,-1,9.6829729,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.74,50.46,8.333333333333334,1,1,0,0,0,12,5,1,186,251823.88,324.53125,380598.06,190058.03,0,0,2648.5508 +1494,1858,3254,3253,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8030586,8.7524748,0,38,1,25.900805,0,2,3,2021,11,0,48,42,1,0,0,25.275843,25.275843,0,0,0,0,0,0,0,0,1,1,0,0,0,48.74,50.46,48.87,58.55,6.666666666666667,1,1,0,0,8,12,5,1,186,251823.88,324.53125,380598.06,190058.03,0,0,2648.5508 +1495,1859,3255,-9,-9,-9,1,0,74,0,2,0,2,2,-9,0,5,0,6.9070315,6.5612512,0,0,-878.39258,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7800965,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,809,142801.33,115736.87,189102.22,0,0,0,550.95093 +1495,1860,3256,3258,3255,-9,1,0,44,0,2,0,2,2,-9,0,5,8.1129427,8.1600399,0,18,-2,37.488232,0,2,2,2021,9,0,50,52,1,0,0,9.046113,9.046113,0,0,0,0,0,0,0,0,1,1,0,1.6756958,0,57.06,57.76,37.61,47.19,10,1,1,0,0,10,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3257,-9,3256,3258,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.2428,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3258,3256,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.5443811,8.2358465,0,14,2,4.5249152,0,2,2,2021,21,8,80,40,1,8,0,5.6770616,5.6770616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.61,47.19,57.06,57.76,5,1,1,0,1,12,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3259,-9,3256,3258,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.5087,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1496,1861,3260,-9,3261,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0885,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,684.5,123659.16,26563.531,0,0,11212.627,0,2660.353 +1496,1861,3261,-9,-9,-9,1,0,41,0,1,0,2,2,0,0,3,0,7.6475825,7.3265305,0,0,-917.02795,-9,2,3,2021,9,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5209227,0,54.57,49.24,-9,-9,10,1,1,0,0,8,9,3,0,684.5,123659.16,26563.531,0,0,11212.627,0,2660.353 +1497,1862,3262,-9,3264,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7449,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1497,1862,3263,-9,3264,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-968.44452,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1497,1862,3264,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1276264,8.8477125,8.4125433,0,0,-1009.8451,0,2,2,2021,13,2,40,40,1,2,0,8.7186127,8.7186127,0,0,.05,0,0,0,0,0,1,1,0,8.1075506,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,14,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1498,1863,3265,3266,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,7.1544514,7.2220678,0,12,-1,.87744558,0,3,3,2021,11,0,39,35,1,0,0,4.325418,4.325418,0,0,0,1,0,0,0,7,1,1,0,.42847565,0,57.68,23.62,61.96,13.49,1.666666666666667,1,1,0,0,12,12,3,1,590,297527.31,146583.25,232919.66,0,0,780.70758,2354.5393 +1498,1863,3266,3265,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,6.9185743,7.151155,12,1,52.574593,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9750428,6.8335271,61.96,13.49,57.68,23.62,5,1,1,0,0,0,12,3,1,590,297527.31,146583.25,232919.66,0,0,780.70758,2354.5393 +1499,1864,3267,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.5342064,9.511446,0,0,0,-1047.3607,0,2,2,2021,17,5,40,41,1,5,0,37.155056,37.155056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.4,57.46,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,174,275215.25,286262.09,271991.47,116837.61,5103.7339,0,4672.8057 +1500,1865,3268,3269,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.7757616,7.2870288,0,7,-3,31.854292,0,3,3,2021,7,0,50,50,1,0,0,2.2638035,2.2638035,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50.84,45.33,8.333333333333334,1,1,0,0,8,11,3,1,427.5,1284641.3,0,1501317.5,426312.06,0,27616.189,767.60339 +1500,1865,3269,3268,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.1772709,7.2788835,0,7,3,163.76634,0,3,3,2021,12,2,70,55,1,2,0,2.8565397,2.8565397,0,0,0,0,0,0,0,0,0,0,0,0,0,50.84,45.33,51.24,58.84,8.333333333333334,1,1,0,0,8,11,3,1,427.5,1284641.3,0,1501317.5,426312.06,0,27616.189,767.60339 +1500,1866,3270,-9,3268,3269,1,0,25,0,0,0,1,1,-9,0,3,8.2525444,8.0981884,0,0,0,-981.2923,0,2,2,2021,11,0,49,55,1,0,1,9.7800531,9.7800531,.05,.05,0,0,0,0,0,0,0,0,0,3.8304398,0,41.71,46.88,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,382,61777.566,4689.606,0,0,0,0,1139.7838 +1500,1867,3271,-9,3268,3269,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-950.69183,1,2,2,2021,8,1,0,40,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3131306,0,53.26,55.31,-9,-9,10,1,1,0,0,1,11,1,1,183,10267.969,0,0,0,0,0,-393.29428 +1501,1868,3272,-9,3273,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6682,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1501,1868,3273,-9,-9,-9,1,0,29,0,2,0,3,3,-9,1,2,0,0,0,0,0,-971.49792,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.61,44.93,-9,-9,5,1,1,0,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1501,1868,3274,-9,3273,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.98468,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1502,1869,3275,3276,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3423443,8.2398996,0,6,1,-4.198235,0,-9,-9,2021,8,0,38,40,1,0,0,10.308024,10.308024,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,1315.5,106629.59,30364.031,295513.5,137772.38,0,3807.7529,2919.3276 +1502,1869,3276,3275,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.5069294,8.4129572,0,6,-1,-53.841167,0,1,2,2021,7,1,40,41,1,1,0,13.380146,13.380146,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,6,12,5,1,1315.5,106629.59,30364.031,295513.5,137772.38,0,3807.7529,2919.3276 +1503,1870,3277,3278,-9,-9,1,1,34,0,2,0,2,2,-9,1,3,8.3979826,8.3770514,0,13,2,86.973152,0,2,2,2021,6,0,44,42,1,0,0,11.364165,11.364165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,51.41,56.15,1.666666666666667,1,1,0,0,12,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3278,3277,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.8570824,8.1462584,0,13,-2,29.932833,0,2,2,2021,8,0,44,0,1,0,0,7.1151123,7.1151123,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.41,56.15,46.61,56.93,8.333333333333334,1,1,0,0,4,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3279,-9,3278,3277,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.525,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3280,-9,3278,3277,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.05096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1504,1871,3281,3282,-9,-9,1,0,34,3,3,0,2,2,-9,0,3,8.7942371,8.8372774,0,6,1,66.305107,0,-9,-9,2021,15,4,40,-9,1,4,0,21.155645,21.155645,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,32.76,57.87,8.333333333333334,1,1,0,0,5,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3282,3281,-9,-9,1,1,33,3,3,0,2,2,-9,0,4,9.0781784,9.3565893,0,6,-1,-30.824829,0,-9,-9,2021,12,0,50,10,1,0,0,26.504757,26.504757,.05,.05,0,0,0,0,0,0,0,0,0,5.2011905,0,32.76,57.87,52,54.51,8.333333333333334,1,1,0,0,10,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3283,-9,3281,3282,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-926.59662,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3284,-9,3281,3282,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-912.36926,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3285,-9,3281,3282,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-967.92444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1505,1872,3286,3287,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5498405,5.0555758,52,0,-43.107117,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2238636,49.44,54.26,29.48,31.59,5,1,1,0,0,0,8,2,1,674,100658.82,70710.5,0,0,0,0,2365.908 +1505,1872,3287,3286,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.1688299,6.0227213,52,0,-10.516493,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,24.495741,0,0,1,1,0,5.8236561,6.0508542,29.48,31.59,49.44,54.26,5,1,1,0,0,0,8,2,1,674,100658.82,70710.5,0,0,0,0,2365.908 +1506,1873,3288,3289,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.6263695,9.29035,0,11,0,-82.876152,0,2,2,2021,11,2,48,54,1,2,0,32.625908,32.625908,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.54,46.62,44.89,30.61,6.666666666666667,1,1,0,0,7,8,5,1,1572,2375268.5,245313.91,1108973,0,0,0,9928.0508 +1506,1873,3289,3288,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.7965374,9.6145067,0,11,0,83.335686,0,2,3,2021,13,2,33,42,1,2,0,44.155682,44.155682,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.89,30.61,48.54,46.62,6.666666666666667,1,1,0,0,9,8,5,1,1572,2375268.5,245313.91,1108973,0,0,0,9928.0508 +1506,1874,3290,-9,3288,3289,1,1,21,0,0,1,2,0,-9,0,4,0,7.641017,7.8380251,0,0,-1053.2782,-9,1,1,2021,11,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8042684,0,45.01,57.46,-9,-9,8.333333333333334,1,1,0,0,3,8,3,1,2551,-570.49725,-68924.18,0,0,3968.2134,0,1288.3885 +1506,1875,3291,-9,3288,3289,1,1,19,0,0,1,2,0,0,0,5,0,6.6081419,7.0011005,0,0,-1108.2148,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0613618,0,39.66,61.49,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,1202,-122716.57,0,0,0,0,0,810.82898 +1507,1876,3292,3293,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,18,3,-44.189228,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.768052,0,0,1,1,0,0,0,55,45,53,45,8,1,1,0,0,0,5,2,1,343.5,412196.5,149292.98,163340.63,0,0,0,2460.0957 +1507,1876,3293,3292,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.1344943,6.6832504,20,-3,-110.13321,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.7569431,8.1931105,22.575802,74.5,1,1,0,2.2529738,6.3922133,53,45,55,45,8,1,1,0,0,0,5,2,1,343.5,412196.5,149292.98,163340.63,0,0,0,2460.0957 +1508,1877,3294,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,6.7774854,6.5996213,0,0,0,-1000.0763,0,-9,-9,2021,1,0,12,10,1,0,0,9.0442562,9.0442562,0,0,0,0,0,0,0,0,1,1,0,0,0,51,58,-9,-9,10,1,1,0,0,13,10,2,1,215,135173.52,0,0,0,4518.6421,0,425.70496 +1509,1878,3295,3296,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.245594,8.2859955,0,5,-7,-58.998821,0,-9,-9,2021,26,12,40,40,1,12,0,10.247478,10.247478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,48.57,42.23,1.666666666666667,1,1,0,0,12,4,5,1,386.5,994294.13,434941.75,286486.06,46805.73,0,0,3493.1841 +1509,1878,3296,3295,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.3770294,8.5860138,0,5,7,-153.54907,0,-9,-9,2021,12,0,38,37,1,0,0,17.568415,17.568415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.57,42.23,27.98,63,6.666666666666667,1,1,0,0,8,4,5,1,386.5,994294.13,434941.75,286486.06,46805.73,0,0,3493.1841 +1510,1879,3297,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.6290827,6.5475392,0,0,-958.94916,-9,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0074024,42.61,18.12,-9,-9,0,1,1,0,0,0,6,2,1,302,399968.63,145120.63,243797.75,0,0,0,258.94046 +1510,1880,3298,-9,3297,-9,1,1,48,0,0,0,2,2,-9,1,3,0,6.0529852,5.7305527,0,0,-1002.9412,-9,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.7252655,49,50,-9,-9,8.333333333333334,1,1,0,0,8,6,2,1,218,-56373.199,-48017.855,0,0,0,0,501.24191 +1511,1881,3299,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.9998794,8.0506649,7.3038149,0,0,-1061.7491,0,-9,-9,2021,12,0,20,5,1,0,0,8.6821499,8.6821499,.05,.05,0,0,0,0,0,0,1,1,0,7.77316,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,248,288543.25,87261.57,232260.53,64369.023,0,0,1791.0273 +1511,1882,3300,-9,3299,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-888.10767,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1327364,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,1407,134549.86,0,0,0,0,0,-197.47646 +1511,1883,3301,-9,3299,-9,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1083.7683,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,1953,6121.0303,0,0,0,0,0,-605.69354 +1512,1884,3302,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.3314805,4.9517875,0,0,-950.69568,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0739713,5.3653321,53,47,-9,-9,7,1,1,0,0,0,13,2,0,500,64492.949,47248.684,0,0,0,0,903.33899 +1513,1885,3303,3304,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2971234,7.2926598,0,11,4,92.367447,0,2,2,2021,14,3,24,25,1,3,0,9.6846962,9.6846962,.05,.05,0,0,0,0,0,0,0,0,0,2.9080491,0,41.7,59.17,55.19,54.26,1.666666666666667,1,1,0,0,10,6,5,1,279,574838.13,503760.97,187035.03,0,0,0,3391.3538 +1513,1885,3304,3303,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8010263,9.0594015,0,11,-4,68.530518,0,2,2,2021,11,0,60,60,1,0,0,13.839064,13.839064,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.19,54.26,41.7,59.17,1.666666666666667,1,1,0,0,9,6,5,1,279,574838.13,503760.97,187035.03,0,0,0,3391.3538 +1513,1886,3305,-9,3303,3304,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-844.90436,-9,2,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.24435885,0,33.59,47.21,-9,-9,3.333333333333333,1,1,0,0,4,6,1,1,1105,109672.43,0,0,0,0,0,-35.120361 +1514,1887,3306,-9,3308,3307,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.0702,1,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,.69481134,0,1,1,0,0,0,46.22,45.1,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,638,-77201.68,0,0,0,0,0,1006.1149 +1514,1888,3307,3308,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6912832,8.7716818,0,3,6,174.56195,0,-9,-9,2021,6,0,43,41,1,0,0,13.035925,13.035925,.05,.05,0,0,0,0,0,0,1,1,0,6.4474697,0,61.12,51.57,47.42,46.01,8.333333333333334,1,1,0,0,9,10,5,0,439,481879.84,438185.88,211716.16,13921.987,2151.0742,0,3886.3223 +1514,1888,3308,3307,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7806592,7.8749852,0,3,-6,-113.92212,0,2,2,2021,11,2,38,40,1,2,0,8.4911804,8.4911804,.05,.05,0,0,0,0,0,27,1,1,0,0,0,47.42,46.01,61.12,51.57,6.666666666666667,1,1,0,0,5,10,5,0,439,481879.84,438185.88,211716.16,13921.987,2151.0742,0,3886.3223 +1515,1889,3309,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1062.4698,0,-9,-9,2021,18,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97,18.82,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,603,156344.17,68129.641,0,0,11261.756,0,1581.0881 +1516,1890,3310,3311,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.533319,6.6847,11,-5,-26.953884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.9772019,6.3217635,59.47,44.13,44.82,28.04,8.333333333333334,1,1,0,0,3,12,2,1,3003,103804.25,35831.109,0,0,-160.0538,1807.4136,2544.7397 +1516,1890,3311,3310,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,6.3053288,6.2136631,11,5,54.761097,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.279214,0,0,1,1,0,0,5.8167458,44.82,28.04,59.47,44.13,6.666666666666667,1,1,0,0,0,12,2,1,3003,103804.25,35831.109,0,0,-160.0538,1807.4136,2544.7397 +1517,1891,3312,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,6.9037652,6.4597673,0,0,-1021.8321,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.759562,6.4510512,52.55,15.28,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,436,589130.69,257759.66,176449.84,0,0,0,1583.4291 +1518,1892,3313,3314,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.916501,7.9601316,0,1,2,10.172537,-9,2,3,2021,6,0,41,0,1,0,0,8.3120823,8.3120823,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.07,52.7,44.71,59.44,8.333333333333334,1,1,0,0,12,12,4,1,1535.5,169834.19,31980.422,159235.73,12123.619,0,2973.9492,2969.1436 +1518,1892,3314,3313,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9708214,8.0136013,0,1,-2,170.83966,-9,2,2,2021,13,1,41,0,1,1,0,9.5024328,9.5024328,0,0,0,0,0,0,0,0,1,0,1,0,0,44.71,59.44,53.07,52.7,6.666666666666667,1,1,0,0,12,12,4,1,1535.5,169834.19,31980.422,159235.73,12123.619,0,2973.9492,2969.1436 +1518,1893,3315,-9,3314,3313,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-872.56964,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.88,56.68,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,586,0,0,0,0,0,0,431.53186 +1519,1894,3316,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5868349,9.7457819,0,7,13,-39.046291,0,2,2,2021,7,0,47,47,1,0,0,43.73745,43.73745,0,0,.05,0,0,0,0,0,0,0,0,5.3709307,0,57.16,56.15,43.73,59.7,10,1,1,0,0,6,8,5,1,1170,366023.78,146807.58,300764.97,132262.69,0,650.87225,6404.332 +1519,1895,3317,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,7,-13,22.560015,0,2,3,2021,15,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,1,501,251589.42,0,0,0,0,0,0 +1520,1896,3318,3319,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,9.1071224,8.8723993,0,3,10,55.527637,0,3,2,2021,20,9,43,37,1,9,0,21.319355,21.319355,.05,.05,0,0,0,0,0,0,0,0,0,7.9135289,0,29.09,57.03,51.35,40.98,6.666666666666667,1,1,0,0,11,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3319,3318,-9,-9,1,0,41,0,3,0,3,3,-9,0,4,9.4993725,9.3467722,0,3,-10,132.03325,0,-9,-9,2021,6,0,37,32,1,0,0,33.283409,33.283409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.35,40.98,29.09,57.03,8.333333333333334,1,1,0,0,12,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3320,-9,3319,3318,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-875.00226,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3321,-9,3319,3318,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.69635,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1521,1897,3322,3323,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,6.6197133,6.5587664,0,7,3,-78.941803,0,2,1,2021,13,1,15,0,1,1,0,5.6035423,5.6035423,0,0,0,0,0,0,0,0,0,0,0,0,0,37.8,60.95,59.43,58.05,8.333333333333334,1,1,0,0,8,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3323,3322,-9,-9,1,1,44,0,3,0,2,2,-9,0,5,9.7007494,10.05001,0,7,-3,-72.214745,0,3,3,2021,6,0,42,45,1,0,0,51.314484,51.314484,.05,.05,0,0,0,0,0,0,0,0,0,7.0107117,0,59.43,58.05,37.8,60.95,8.333333333333334,1,1,0,0,8,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3324,-9,3322,3323,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.31012,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3325,-9,3322,3323,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.8617,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3326,-9,3322,3323,1,0,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-908.06537,-9,1,2,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,1,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1522,1898,3327,-9,3329,-9,1,0,48,0,1,0,2,2,-9,1,4,7.379777,8.1380692,7.2250648,0,0,-1018.9341,0,3,2,2021,5,0,26,28,1,0,0,8.9492674,8.9492674,0,0,0,0,0,0,0,2,1,1,0,7.200325,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,5,10,3,1,527,-147100.22,0,0,0,2678.0725,0,2385.9519 +1522,1898,3328,-9,3327,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.8895,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,1,527,-147100.22,0,0,0,2678.0725,0,2385.9519 +1522,1899,3329,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,2,0,0,0,0,0,-989.45624,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,3.3011925,0,19.478363,0,1,1,0,.9719575,0,50,33,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,235,-181673,0,0,0,0,0,672.30164 +1523,1900,3330,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.8784781,8.9715204,0,0,0,-973.54004,0,-9,-9,2021,17,7,38,37,1,7,0,21.380545,21.380545,.05,.05,.05,0,0,0,0,0,0,0,0,2.6531551,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,7,9,5,1,124,672733.56,234656.31,224486.41,19714.121,0,0,2872.3638 +1524,1901,3331,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.3675537,9.8430901,0,0,0,-893.42163,0,2,3,2021,11,2,40,50,1,2,0,39.903423,39.903423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,683,186105.2,265922,221831.23,125331.95,0,0,6402.395 +1525,1902,3332,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,0,0,-933.92053,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.19,33.94,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,1131,-119038.5,0,0,0,-1981.1993,0,842.66956 +1525,1903,3333,-9,3332,-9,1,1,24,0,0,0,1,1,-9,0,4,8.0467091,7.7432671,0,0,0,-980.66058,0,2,-9,2021,12,0,28,39,1,0,1,10.539207,10.539207,0,0,0,0,0,0,0,0,1,1,0,0,0,37.27,56.09,-9,-9,5,3,4,0,0,5,8,4,0,207,137450.48,101537.76,0,0,0,0,878.09064 +1526,1904,3334,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.9987569,8.1576443,0,0,0,-925.01392,0,3,2,2021,18,8,40,40,1,8,0,7.2681823,7.2681823,0,0,.05,0,0,0,0,0,0,0,0,3.7070291,0,44.01,54.41,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,2194,1001518.3,151332.11,415078.31,0,0,1721.8951,659.61646 +1527,1905,3335,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.7500701,7.5923243,0,0,-1040.5221,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4140959,7.5605764,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1085,673370.31,314592.38,235334.41,0,0,0,4582.4492 +1528,1906,3336,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.51495,0,2,1,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.24,70.39,-9,-9,0,1,1,1,0,1,11,1,0,1247,94924.906,0,0,0,0,0,735.51697 +1529,1907,3337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.8682489,8.026804,0,0,0,-978.01447,0,3,3,2021,15,3,35,35,1,3,0,10.115294,10.115294,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,5,1,1,0,0,8,10,3,1,425,185535.69,0,236350.31,882.34076,0,0,524.56097 +1530,1908,3338,3339,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.0510998,8.0408821,42,4,7.3762403,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,4.4959993,8.0477953,61.36,37.01,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,488.5,1296561.3,928183.88,285244.88,33906.5,6237.1074,1048.593,2698.5835 +1530,1908,3339,3338,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9725928,8.0159044,0,12,-4,-16.991699,0,3,3,2021,7,0,30,30,1,0,0,9.6572466,9.6572466,0,0,0,0,0,0,0,0,1,1,0,2.7266216,0,57.16,56.15,61.36,37.01,8.333333333333334,1,1,0,0,14,12,4,1,488.5,1296561.3,928183.88,285244.88,33906.5,6237.1074,1048.593,2698.5835 +1531,1909,3340,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.49847,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.71000000000001,27.4,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,886,99152.938,0,0,0,0,0,1101.3198 +1532,1910,3341,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,0,0,0,0,-995.39771,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,307,24403.988,0,0,0,0,2409.9268,242.22903 +1533,1911,3342,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-903.94598,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,37.99,-9,-9,10,1,1,0,0,0,1,1,0,404,35705.523,0,0,0,942.19141,0,2277.9556 +1534,1912,3343,3345,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1610422,7.7758656,0,3,0,-41.035416,0,-9,-9,2021,15,2,25,25,1,2,0,14.618592,14.618592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.96,55.89,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3344,-9,3343,3345,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7794,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3345,3343,-9,-9,1,1,30,0,2,0,2,2,-9,0,4,8.1311951,8.1561012,0,3,0,53.59623,0,-9,-9,2021,9,0,50,50,1,0,0,10.198572,10.198572,.05,.05,0,0,0,0,2.3142331,0,1,1,0,0,0,51.83,57.2,33.96,55.89,6.666666666666667,1,1,0,0,3,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3346,-9,3343,3345,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.57642,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1535,1913,3347,3348,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.039865,6.9122858,4,12,-86.44986,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0278335,7.157342,57.93,46.29,56.76,44.55,8.333333333333334,1,1,0,0,0,4,2,1,626.5,259653.88,167705.83,182847.55,0,3692.3545,0,1859.7605 +1535,1913,3348,3347,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,4,-12,-117.17606,0,2,1,2021,8,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.76,44.55,57.93,46.29,8.333333333333334,1,1,0,0,11,4,2,1,626.5,259653.88,167705.83,182847.55,0,3692.3545,0,1859.7605 +1536,1914,3349,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.444602,8.3788404,0,0,0,-1077.2743,0,2,2,2021,12,2,35,36,1,2,0,11.716722,11.716722,.05,.05,0,0,0,0,0,0,0,0,0,.34898895,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,14,2,5,1,303,314634.59,242234.73,68800.453,0,795.27234,0,1812.3099 +1537,1915,3350,3352,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,9.5452671,9.9589863,0,25,3,-22.461714,0,2,2,2021,5,0,55,93,1,0,0,30.493561,30.493561,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51.17,49.39,8.333333333333334,1,1,0,0,5,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3351,-9,3352,3350,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1098.6073,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2859812,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3352,3350,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.7044363,8.8348169,0,25,-3,68.921021,0,2,1,2021,8,0,24,25,1,0,0,27.620762,27.620762,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,48.18,61.8,1.666666666666667,1,1,0,0,6,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3353,-9,3352,3350,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.46588,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1538,1916,3354,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.407115,8.9307728,0,0,0,-965.20782,0,1,1,2021,21,8,53,56,1,8,0,20.279642,20.279642,.05,.05,0,0,0,0,0,0,0,0,0,3.7365723,0,26.93,68.84,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,303,217711.69,196312.75,178548.75,148759.08,7848.8271,0,3231.3088 +1539,1917,3355,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.5130768,8.2374382,0,0,0,-1023.824,0,1,2,2021,8,1,41,0,1,1,1,12.576468,12.576468,.05,.05,0,0,0,0,0,2,0,0,0,0,0,35.99,52.12,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,484,52133.719,107303.06,0,0,0,0,1929.1852 +1540,1918,3356,3357,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5661945,9.4992476,0,25,3,-8.1597834,0,2,3,2021,21,8,42,38,1,8,0,53.521641,53.521641,.05,.05,0,0,0,0,0,0,0,0,0,9.0738468,0,42.84,47.9,49.63,54.22,1.666666666666667,4,2,0,0,9,8,5,0,491.5,798828.13,173594.25,557814.63,69875.18,0,0,11175.863 +1540,1918,3357,3356,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0632229,9.131217,0,24,-3,38.421589,0,-9,-9,2021,6,0,30,35,1,0,0,39.783276,39.783276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,42.84,47.9,8.333333333333334,1,1,0,0,12,8,5,0,491.5,798828.13,173594.25,557814.63,69875.18,0,0,11175.863 +1540,1919,3358,-9,3357,3356,1,0,21,0,0,1,1,0,0,0,4,0,7.1011167,7.4205217,0,0,-976.2063,-9,1,1,2021,20,6,0,0,2,6,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.950799,0,35.63,62.19,-9,-9,8.333333333333334,4,2,0,0,5,8,3,0,403,-121445.02,-159487.28,0,0,0,0,460.92941 +1541,1920,3359,3360,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.7710686,7.7609043,0,8,-4,-80.174294,0,2,3,2021,36,12,90,60,1,12,0,2.4854839,2.4854839,0,0,0,0,0,0,0,36,0,0,0,0,0,4.32,64.98999999999999,46.08,57.2,0,1,1,0,0,7,10,4,0,417.5,2283371.5,1698128.8,487706.28,0,6436.8369,0,2144.8569 +1541,1920,3360,3359,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.132946,8.2292814,0,8,4,-31.49559,0,2,2,2021,11,0,38,0,1,0,0,11.895362,11.895362,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,4.32,64.98999999999999,8.333333333333334,1,1,0,0,13,10,4,0,417.5,2283371.5,1698128.8,487706.28,0,6436.8369,0,2144.8569 +1542,1921,3361,-9,3364,3363,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2469,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3362,-9,3364,3363,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8655,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3363,3364,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.6989746,8.2513371,0,2,4,-21.432714,0,-9,-9,2021,10,0,41,43,1,0,0,14.301939,14.301939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,49.4,58.08,43.46,8.333333333333334,1,1,0,0,4,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3364,3363,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.3812842,7.4354935,0,7,-4,18.195917,0,-9,-9,2021,9,0,18,18,1,0,0,11.36336,11.36336,0,0,0,0,0,0,0,0,1,1,0,0,0,58.08,43.46,51.14,49.4,8.333333333333334,1,1,0,0,9,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1543,1922,3365,3366,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,7.4658761,7.4353118,0,5,0,-11.857018,0,-9,-9,2021,12,0,34,36,1,0,0,6.672442,6.672442,0,0,0,0,0,0,0,0,0,0,0,0,0,56.03,33.86,43.71,56.91,6.666666666666667,1,1,0,0,7,9,5,1,674.5,-36322.133,-6921.0645,227794.47,189741.81,0,0,2850.4927 +1543,1922,3366,3365,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.5795097,8.6078682,0,5,0,-36.044849,0,2,1,2021,12,0,40,40,1,0,0,17.513781,17.513781,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,56.03,33.86,3.333333333333333,4,2,0,0,7,9,5,1,674.5,-36322.133,-6921.0645,227794.47,189741.81,0,0,2850.4927 +1544,1923,3367,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,6.4009953,6.4176517,0,0,-970.44586,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,19.43103,0,1,1,0,0,6.501133,47.94,53.79,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,513,350460.44,89689.117,98139.039,0,0,0,1102.7479 +1545,1924,3368,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.4836488,7.4478178,0,0,0,-976.40369,0,3,3,2021,6,0,50,50,1,0,0,5.912333,5.912333,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,12,1,3,0,816,0,0,0,0,0,0,868.3479 +1546,1925,3369,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8795805,7.6979575,0,0,0,-1029.3311,0,3,2,2021,12,3,39,60,1,3,0,9.5525398,9.5525398,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,1.666666666666667,1,1,0,0,7,12,4,0,129,128490.34,183208.78,187061.52,0,0,0,1298.377 +1546,1926,3370,-9,3369,-9,1,0,22,0,0,0,1,1,-9,0,3,7.8704815,7.4746528,0,0,0,-1049.4865,0,2,-9,2021,5,0,44,42,1,0,1,4.8300853,4.8300853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,5,12,3,0,394,-301962.31,12724.129,0,0,0,0,240.5954 +1547,1927,3371,3372,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.2655821,8.4625111,0,16,-4,25.91663,0,2,2,2021,15,3,39,41,1,3,0,9.8323145,9.8323145,0,0,0,0,0,0,0,2,1,1,0,0,0,49.63,57.02,46.34,61.24,8.333333333333334,1,1,0,0,7,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1547,1927,3372,3371,-9,-9,1,1,35,0,1,0,1,1,-9,0,5,8.261301,8.4561396,0,16,4,-2.6801722,0,3,2,2021,9,0,51,53,1,0,0,10.074345,10.074345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,49.63,57.02,6.666666666666667,1,1,0,0,8,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1547,1927,3373,-9,3371,3372,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.458,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1548,1928,3374,3375,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.7797804,8.5529718,0,3,1,-106.93391,0,2,2,2021,6,0,8,40,1,0,0,86.00515,86.00515,.05,.05,.05,0,0,0,0,14.5,1,1,0,2.3455467,0,57.06,57.76,28.33,54.6,8.333333333333334,1,1,0,0,10,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3375,3374,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0626707,8.9381514,0,3,-1,124.11146,0,2,-9,2021,18,6,1,38,1,6,0,812.94781,812.94781,0,0,0,0,0,0,0,2,1,1,0,7.6202698,0,28.33,54.6,57.06,57.76,5,1,1,0,0,10,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3376,-9,3375,3374,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.62091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3377,-9,3375,3374,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1003.1379,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3614227,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,2,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1929,3378,-9,3375,3374,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-953.86597,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.91586822,0,34.2,58.44,-9,-9,8.333333333333334,1,1,0,1,9,12,1,1,911,101611.13,0,0,0,0,0,797.56207 +1549,1930,3379,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.6256771,5.7954998,0,0,-1014.6725,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.89353192,5.5855851,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,153,482027.63,106611.29,322477.44,0,0,0,1032.3442 +1550,1931,3380,-9,3381,3383,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-955.737,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3381,3383,-9,-9,1,0,30,2,2,0,1,1,-9,0,4,8.2467575,8.5337696,0,5,-1,-18.61241,0,-9,-9,2021,7,0,41,37,1,0,0,18.098715,18.098715,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.87,45.85,8.333333333333334,1,1,0,0,8,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3382,-9,3381,3383,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.8282,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3383,3381,-9,-9,1,1,31,2,2,0,2,2,-9,0,3,9.7067347,9.8309059,0,5,1,-146.80038,-9,2,2,2021,6,0,70,0,1,0,0,28.779922,28.779922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.87,45.85,54.2,57.49,6.666666666666667,1,1,0,0,9,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1551,1932,3384,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.7352667,7.6732254,0,0,-1170.9851,0,3,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2018356,7.4763355,47.6,23.1,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,1181,337166.34,206249.91,0,0,0,0,1478.4553 +1552,1933,3385,3386,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.133812,7.2080545,7,-2,-57.691257,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.616806,7.3566999,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,0,7,4,1,522,2006678,1222595.3,361348.88,0,0,0,4124.6094 +1552,1933,3386,3385,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1578627,8.4082594,7,2,109.21666,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5617828,8.3122854,60.12,54.8,54.2,57.49,10,1,1,0,0,3,7,4,1,522,2006678,1222595.3,361348.88,0,0,0,4124.6094 +1553,1934,3387,3388,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.5284591,7.5572186,6,0,-14.882531,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.445118,7.2816553,48.42,60.53,60.02,56.42,8.333333333333334,1,1,0,0,0,13,3,1,843.5,1318510,653435.88,394617.25,0,0,0,4446.8975 +1553,1934,3388,3387,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,6,0,11.98941,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.42,60.53,10,1,1,0,0,9,13,3,1,843.5,1318510,653435.88,394617.25,0,0,0,4446.8975 +1554,1935,3389,3390,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.3999085,5.3978548,12,11,86.489334,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5258307,5.4914236,57.16,56.15,59.07,43.05,8.333333333333334,1,1,0,0,0,9,2,1,595.5,-5724.7559,105511.93,0,0,0,0,1028.3817 +1554,1935,3390,3389,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,43,-11,37.167252,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4475379,0,59.07,43.05,57.16,56.15,8.333333333333334,1,1,0,0,10,9,2,1,595.5,-5724.7559,105511.93,0,0,0,0,1028.3817 +1555,1936,3391,3392,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.6007681,8.4955311,0,10,3,0,0,2,1,2021,9,1,45,45,1,1,0,13.959611,13.959611,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.29,52.11,55.58,52.99,6.666666666666667,2,3,0,0,8,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1555,1936,3392,3391,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5186615,8.3223572,0,10,-3,0,0,1,1,2021,10,3,40,35,1,3,0,13.464067,13.464067,0,0,0,0,0,0,0,0,1,1,0,0,0,55.58,52.99,60.29,52.11,8.333333333333334,2,3,0,0,7,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1555,1936,3393,-9,3392,3391,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-996.50861,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1556,1937,3394,3395,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.3557014,8.3797684,0,24,-1,91.413811,0,3,3,2021,5,0,30,30,1,0,0,17.324684,17.324684,.05,.05,0,0,0,0,0,0,0,0,0,3.9521449,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,11,2,3,1,831.5,35126.141,7898.8496,169134.94,80708.203,1991.0006,0,2023.5841 +1556,1937,3395,3394,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,.064164825,.34089532,0,24,1,-100.09654,-9,2,2,2021,12,1,78,0,1,1,0,.0004355225,.0004355225,.05,.05,0,0,0,0,0,0,0,0,0,6.4496312,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,9,2,3,1,831.5,35126.141,7898.8496,169134.94,80708.203,1991.0006,0,2023.5841 +1557,1938,3396,-9,3398,-9,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.54504,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1557,1938,3397,-9,3398,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.11261,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1557,1938,3398,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-999.1272,0,-9,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,5,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1558,1939,3399,3401,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.6975145,9.6157103,0,12,2,64.072128,0,-9,-9,2021,10,0,50,50,1,0,0,35.816673,35.816673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,51,34.93,65.44,8.333333333333334,1,1,0,0,11,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3400,-9,3401,3399,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.37579,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3401,3399,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,0,0,0,12,-2,-13.456257,0,2,1,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.93,65.44,56.5,51,8.333333333333334,1,1,0,0,7,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3402,-9,3401,3399,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.75964,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3403,-9,3401,3399,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.2542,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1559,1940,3404,3407,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.4378839,7.5640016,0,6,-2,82.030136,0,-9,-9,2021,8,0,4,1,1,0,0,61.62899,61.62899,.05,.05,0,0,0,0,0,0,1,1,0,7.5743542,0,49.25,61.25,51.14,60.45,8.333333333333334,1,1,0,0,10,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3405,-9,3404,3407,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.42767,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3406,-9,3404,3407,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.93207,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3407,3404,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,9.1098328,9.3969955,0,6,2,14.801739,0,-9,-9,2021,7,0,50,60,1,0,0,26.098082,26.098082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,49.25,61.25,6.666666666666667,1,1,0,0,8,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1560,1941,3408,-9,3409,3410,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68182,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1941,3409,3410,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,22,-2,-70.523529,0,3,3,2021,4,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.2,48.66,48.96,60.26,8.333333333333334,3,4,0,0,0,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1941,3410,3409,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.1657696,9.2903185,0,22,2,-57.756157,0,-9,-9,2021,15,3,45,44,1,3,0,20.073818,20.073818,.05,.05,0,0,0,0,0,0,1,1,0,2.0622382,0,48.96,60.26,56.2,48.66,8.333333333333334,1,1,0,0,8,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1942,3411,-9,3409,3410,1,1,20,0,2,1,2,0,0,0,5,0,5.8697705,6.3313103,0,0,-1011.6309,-9,1,1,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8644738,0,46.49,55.7,-9,-9,8.333333333333334,4,2,0,0,2,8,2,1,67,96334.789,0,0,0,0,221.62938,230.146 +1560,1943,3412,-9,3409,3410,1,1,18,0,2,1,2,0,0,0,4,0,6.2759104,6.3017592,0,0,-1093.3805,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6785989,0,33.79,55.9,-9,-9,6.666666666666667,4,2,0,0,1,8,2,1,385,-48563.105,0,0,0,0,1591.6823,499.33597 +1561,1944,3413,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.4805069,7.6243238,0,0,0,-1147.5897,0,-9,-9,2021,6,0,10,10,1,0,0,20.50341,20.50341,0,0,0,0,0,0,0,0,1,1,0,0,0,63.83,43.62,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,1999,297474.59,205377.16,224714.44,67244.898,0,0,1495.994 +1562,1945,3414,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.2512989,6.7192426,0,0,-1027.3816,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3488874,7.2125125,51.94,40.74,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,263,259539.22,82163.93,142263.7,0,0,0,1237.4996 +1563,1946,3415,3417,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.7851162,8.8130178,0,8,1,7.1928315,0,2,2,2021,13,3,40,40,1,3,0,20.957048,20.957048,.05,.05,0,0,0,0,0,0,1,1,0,5.9825015,0,55.36,51.57,38.63,63.11,8.333333333333334,1,1,0,0,9,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3416,-9,3417,3415,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.37152,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3417,3415,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.9384093,7.9453397,0,8,-1,-.10172114,0,-9,-9,2021,12,1,22,24,1,1,0,14.887706,14.887706,0,0,0,0,0,0,0,0,1,1,0,6.4449806,0,38.63,63.11,55.36,51.57,8.333333333333334,1,1,0,0,7,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3418,-9,3417,3415,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.1379,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1564,1947,3419,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.0273032,5.3658819,0,0,-969.64856,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3.7911403,0,1,1,0,5.052917,5.3663139,39.23,44.12,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,893,159576.42,-86706.391,0,0,0,1590.6328,896.4801 +1565,1948,3420,3421,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8941064,7.6145649,0,9,-3,49.066452,0,3,-9,2021,20,6,19,10,1,6,0,14.475867,14.475867,0,0,0,0,0,0,0,0,1,1,0,0,0,19.45,55.12,45.91,59.89,0,1,1,0,0,10,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1565,1948,3421,3420,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.711401,8.3268795,0,9,3,49.776546,0,-9,-9,2021,14,3,45,45,1,3,0,14.711941,14.711941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,19.45,55.12,8.333333333333334,1,1,0,0,10,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1565,1948,3422,-9,3420,3421,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1091.4055,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.29,54.22,-9,-9,10,1,1,0,0,1,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1566,1949,3423,-9,3424,3425,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.4516,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1566,1949,3424,3425,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,0,0,0,14,0,14.599136,0,3,1,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3047848,0,45.4,32.26,51.59,41.11,6.666666666666667,2,3,0,0,3,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1566,1949,3425,3424,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.5413971,8.4634743,0,14,0,67.05352,0,1,1,2021,9,0,40,40,1,0,0,14.939804,14.939804,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.59,41.11,45.4,32.26,8.333333333333334,2,3,0,0,9,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1567,1950,3426,3427,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,0,0,8,2,-94.256462,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7191582,0,54,46,47.79,29.83,8,1,1,0,0,0,4,2,1,1496,572100.63,125690.63,284615.5,0,0,0,5912.8735 +1567,1950,3427,3426,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.9096513,7.5340109,57,-2,-49.381622,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9952869,7.2312183,47.79,29.83,54,46,5,1,1,0,0,0,4,2,1,1496,572100.63,125690.63,284615.5,0,0,0,5912.8735 +1568,1951,3428,3430,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3878479,8.5487967,0,5,0,63.361042,0,-9,-9,2021,6,0,40,40,1,0,0,12.926256,12.926256,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,44.25,56.64,8.333333333333334,1,1,0,0,5,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1568,1951,3429,-9,3428,3430,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.776,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1568,1951,3430,3428,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,9.098897,9.2239218,0,5,0,-97.165817,-9,-9,-9,2021,7,1,46,0,1,1,0,21.820917,21.820917,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.25,56.64,58.3,52.91,8.333333333333334,1,1,0,0,12,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1569,1952,3431,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.7797236,8.0910454,5.7316422,0,0,-918.23273,0,2,1,2021,9,0,23,23,1,0,0,10.950069,10.950069,.05,.05,0,0,0,0,0,2,1,1,0,5.843287,0,50.43,53.69,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1569,1952,3432,-9,3431,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1088.7529,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1569,1952,3433,-9,3431,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.4141,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1570,1953,3434,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,0,0,-993.13635,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.86,20.5,-9,-9,5,4,2,0,0,0,6,1,0,534,-17372.297,0,0,0,0,0,346.5412 +1570,1953,3435,-9,3434,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8574,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,4,2,-9,0,0,6,1,0,534,-17372.297,0,0,0,0,0,346.5412 +1570,1954,3436,-9,3434,-9,1,1,26,0,1,0,2,2,-9,0,2,0,0,0,0,0,-959.78027,0,3,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41,43,-9,-9,6.666666666666667,4,2,1,1,0,6,1,0,462,0,0,0,0,0,0,153.21922 +1570,1955,3437,-9,3434,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1000.8251,-9,3,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,693,0,0,0,0,0,0,0 +1570,1956,3438,-9,3434,-9,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-993.14996,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,59.73,50.87,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,364,0,0,0,0,0,0,0 +1571,1957,3439,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1087.8196,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,701,-65720.68,0,0,0,0,0,-200.22017 +1572,1958,3440,3441,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.7765546,7.9883785,0,45,-3,9.6177025,0,3,2,2021,17,5,35,33,1,5,0,7.758378,7.758378,0,0,0,0,0,0,0,0,0,0,0,0,0,46.27,57.3,59.06,32.53,3.333333333333333,1,1,0,0,11,9,3,1,554,297904.75,287020.59,0,0,0,0,1648.7731 +1572,1958,3441,3440,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,6.9703622,7.1178083,9,3,108.90224,0,2,2,2021,9,0,0,60,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2919488,59.06,32.53,46.27,57.3,6.666666666666667,1,1,0,0,11,9,3,1,554,297904.75,287020.59,0,0,0,0,1648.7731 +1572,1959,3442,-9,3440,3441,1,1,29,0,0,0,2,2,-9,0,4,7.5213642,7.4846601,0,0,0,-1034.212,0,3,3,2021,10,0,16,16,1,1,1,15.062623,15.062623,.05,.05,0,0,0,0,0,0,0,0,0,3.0181491,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,178,152130.31,20291.883,0,0,0,0,1178.1945 +1573,1960,3443,3444,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.1426563,8.0453577,4.3008094,3,0,-27.950857,0,-9,-9,2021,8,0,37,35,1,0,0,8.519908,8.519908,.05,.05,0,0,0,0,0,0,0,0,0,4.62432,0,54.1,59.11,56.47,59.4,8.333333333333334,1,1,0,0,9,1,4,1,267.5,128192.83,22788.361,157470.06,161228.81,46430.672,0,2837.353 +1573,1960,3444,3443,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.2666903,8.1695833,0,3,0,-40.442551,0,-9,-9,2021,8,1,35,38,1,1,0,15.452659,15.452659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.1,59.11,6.666666666666667,1,1,0,0,7,1,4,1,267.5,128192.83,22788.361,157470.06,161228.81,46430.672,0,2837.353 +1574,1961,3445,-9,-9,-9,1,0,66,0,1,0,3,3,-9,0,3,0,.46691111,.41205531,0,0,-963.81842,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.29828405,42.79,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,271,0,0,0,0,0,0,744.67981 +1574,1962,3446,-9,-9,3447,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1058.0969,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8959014,0,47,60,-9,-9,7,1,1,0,0,0,12,4,1,526.5,140397.98,-93972.875,100401.88,15923.534,0,3248.3857,1746.6289 +1574,1962,3447,-9,3445,-9,1,1,45,0,1,0,2,2,-9,0,4,8.5232286,8.4904575,0,0,0,-1054.1052,-9,3,-9,2021,9,0,37,0,1,1,0,18.761534,18.761534,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,12,4,1,526.5,140397.98,-93972.875,100401.88,15923.534,0,3248.3857,1746.6289 +1575,1963,3448,3449,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,9.09863,9.177083,0,10,17,100.26672,0,-9,-9,2021,9,0,60,60,1,1,0,14.329982,14.329982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,37.22,57.27,8,1,1,0,0,1,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1575,1963,3449,3448,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.833437,9.0008669,0,17,-17,-49.86385,0,2,2,2021,14,2,36,30,1,2,0,20.312586,20.312586,.05,.05,0,0,0,0,0,0,1,1,0,5.9178619,0,37.22,57.27,52,55,5,1,1,0,0,11,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1575,1963,3450,-9,3449,3448,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.82703,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1576,1964,3451,3452,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.3340812,6.2070079,0,26,0,45.422066,0,-9,-9,2021,7,0,50,60,1,0,0,1.1862932,1.1862932,0,0,0,0,0,0,0,14.5,1,1,0,2.365443,0,60.28,43.74,46.5,58.26,6.666666666666667,1,1,0,0,6,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3452,3451,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,26,0,74.601761,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.9636669,0,46.5,58.26,60.28,43.74,5,1,1,0,1,3,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3453,-9,3452,3451,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.9382,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3454,-9,3452,3451,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.04126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1965,3455,-9,3452,3451,1,1,24,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1037.36,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,1,1,274,-96611.203,0,0,0,0,0,254.88794 +1577,1966,3456,-9,3458,3457,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-848.30103,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1577,1966,3457,3458,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,0,0,0,8,1,-5.1202149,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,1.5974264,0,54.2,57.49,58.3,47.38,10,1,1,0,0,0,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1577,1966,3458,3457,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.2257662,7.88977,0,8,-1,53.563267,0,2,2,2021,10,0,32,34,1,0,0,10.286516,10.286516,0,0,0,0,0,0,0,7,1,1,0,1.7781979,0,58.3,47.38,54.2,57.49,8.333333333333334,1,1,0,0,9,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1578,1967,3459,3460,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.8252354,7.4850178,50,2,-115.00029,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3822575,7.08567,37.25,31.7,43.93,31.44,8.333333333333334,1,1,0,0,0,6,2,1,758.5,785594,261596.59,510076.44,0,6930.4185,0,1608.2402 +1578,1967,3460,3459,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,46,-2,-22.118191,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9412806,0,43.93,31.44,37.25,31.7,6.666666666666667,1,1,0,0,0,6,2,1,758.5,785594,261596.59,510076.44,0,6930.4185,0,1608.2402 +1579,1968,3461,-9,3462,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1579,1968,3462,-9,-9,-9,1,0,33,0,2,0,2,2,1,1,2,0,0,0,0,0,-1024.6798,-9,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,61.74,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1579,1968,3463,-9,3462,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-813.58337,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1580,1969,3464,-9,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,4.5721483,4.2122817,0,0,-923.95911,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.6366293,0,15.29,36.69,-9,-9,3.333333333333333,1,1,1,0,0,12,2,0,1189,-105236.6,0,0,0,0,0,2093.0667 +1581,1970,3465,3466,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7942233,6.7534328,10,1,-8.3780203,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.3059715,4.9620585,23.135469,0,1,1,0,5.8126564,6.3595591,50.03,52.62,44.02,60.7,8.333333333333334,1,1,0,0,0,6,3,1,836.5,692536.88,268905.31,212482.28,0,0,0,2856.3418 +1581,1970,3466,3465,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.6113095,7.4247422,52,-1,9.9709196,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1884868,7.6324668,44.02,60.7,50.03,52.62,8.333333333333334,1,1,0,0,11,6,3,1,836.5,692536.88,268905.31,212482.28,0,0,0,2856.3418 +1582,1971,3467,3468,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.9238906,6.8369212,47,0,-132.26381,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.2807226,6.9852405,46.98,59.35,41.92,12.44,8.333333333333334,1,1,0,0,6,2,2,0,230.5,101583.02,233255.22,0,0,0,0,2055.0466 +1582,1971,3468,3467,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,47,0,26.443502,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,125.30835,0,0,1,1,0,3.0428679,0,41.92,12.44,46.98,59.35,5,1,1,0,0,0,2,2,0,230.5,101583.02,233255.22,0,0,0,0,2055.0466 +1583,1972,3469,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.8778882,7.9242206,0,0,-1051.9309,0,2,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8714623,7.7545109,50.41,26.29,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1098,412940.38,234997.72,175598.78,0,0,0,3095.8098 +1584,1973,3470,-9,3471,3472,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.678,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1584,1973,3471,3472,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.0080767,7.9788795,0,9,0,38.288269,0,2,3,2021,9,1,30,37,1,1,0,12.751438,12.751438,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,59.72,51.02,6.666666666666667,1,1,0,0,11,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1584,1973,3472,3471,-9,-9,1,1,31,1,1,0,2,2,-9,0,5,9.1452026,9.4441204,0,9,0,-28.681232,0,1,2,2021,9,0,42,42,1,0,0,30.407864,30.407864,.05,.05,0,0,0,0,.40363258,0,0,0,0,0,0,59.72,51.02,48.77,60.16,6.666666666666667,1,1,0,0,8,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1585,1974,3473,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6839271,6.8876591,0,0,-1042.4475,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.041749,7.1348715,52.77,44.6,-9,-9,8.333333333333334,1,1,0,0,11,8,2,1,737,893114.19,0,496263.38,0,0,0,742.48633 +1586,1975,3474,3475,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.4686065,7.3089628,59,-2,-32.175728,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2473502,61.19,33.88,58.47,39.49,8.333333333333334,1,1,0,0,0,12,4,1,824,1355075.5,227811.66,459241.63,0,0,0,4221.3628 +1586,1975,3475,3474,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.1371756,8.1022186,59,2,65.849945,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9294033,58.47,39.49,61.19,33.88,6.666666666666667,1,1,0,0,0,12,4,1,824,1355075.5,227811.66,459241.63,0,0,0,4221.3628 +1587,1976,3476,3477,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5108299,8.5018768,0,6,5,38.243431,0,-9,-9,2021,8,0,42,39,1,0,0,8.3816757,8.3816757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,57.33,53.46,5,1,1,0,0,6,2,5,1,1001,467713.81,318845.31,187376.03,0,0,0,2900.3262 +1587,1976,3477,3476,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.2449303,8.3110294,0,6,-5,31.699644,0,-9,-9,2021,8,1,38,37,1,1,0,12.087585,12.087585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.66,54.88,10,1,1,0,0,11,2,5,1,1001,467713.81,318845.31,187376.03,0,0,0,2900.3262 +1588,1977,3478,3480,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7243886,7.6877255,0,19,0,-122.41886,0,2,1,2021,15,3,24,24,1,3,0,9.297514,9.297514,0,0,0,0,0,0,0,0,1,1,0,.36143246,0,55.19,54.26,39.74,52.42,8.333333333333334,1,1,0,0,10,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3479,-9,3478,3480,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.33862,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3480,3478,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.1751909,8.1818447,0,18,0,-149.34352,0,2,2,2021,12,0,48,44,1,0,0,9.8657408,9.8657408,.05,.05,0,0,0,0,0,0,1,1,0,2.8754158,0,39.74,52.42,55.19,54.26,3.333333333333333,1,1,0,0,10,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3481,-9,3478,3480,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.18781,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1589,1978,3482,3483,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0693111,9.3375244,0,9,-1,21.809753,0,3,2,2021,8,1,40,60,1,1,0,25.889311,25.889311,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,29.25,18.08,6.666666666666667,1,1,0,1,9,13,5,1,579.5,1307410,579354.25,178414.72,0,0,0,5561.4521 +1589,1978,3483,3482,-9,-9,1,0,49,0,0,0,1,1,-9,1,1,0,0,0,9,1,21.90015,0,-9,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.25,18.08,56.18,53.85,3.333333333333333,1,1,0,0,0,13,5,1,579.5,1307410,579354.25,178414.72,0,0,0,5561.4521 +1589,1979,3484,-9,3483,3482,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1026.7937,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,2.7367299,0,49.76,56.93,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,491,-84457.273,0,0,0,0,0,293.56244 +1590,1980,3485,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.5687847,8.2125931,0,0,0,-1109.5615,0,2,2,2021,12,0,37,37,1,0,0,13.480365,13.480365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31,39.15,-9,-9,5,1,1,0,0,13,6,5,1,160,85462.977,-34524.613,96043.766,86591.063,4665.1548,3138.3679,1135.734 +1591,1981,3486,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.1799803,8.1647434,0,0,0,-992.92383,0,3,2,2021,9,3,26,24,1,3,0,17.136385,17.136385,.05,.05,0,0,0,0,0,2,1,1,0,7.6175947,0,51.3,29.58,-9,-9,6.666666666666667,2,3,0,0,11,8,4,1,261.5,350226.59,27870.656,277244.06,0,-1956.4277,-142.37973,2785.1975 +1591,1981,3487,-9,3486,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.91455,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,261.5,350226.59,27870.656,277244.06,0,-1956.4277,-142.37973,2785.1975 +1592,1982,3488,3489,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.1110554,8.2997904,0,9,0,-27.542265,0,3,3,2021,7,0,35,45,1,0,0,11.855913,11.855913,.05,.05,0,0,0,0,0,0,0,0,0,3.1907582,0,64.66,50.23,57.33,53.46,10,2,3,0,0,10,9,5,1,650,1471500.1,1293359.8,341858.19,117003.52,177.06775,2070.3325,2684.3687 +1592,1982,3489,3488,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.362154,8.2908449,0,9,0,-54.469498,0,3,3,2021,10,0,34,34,1,0,0,12.717218,12.717218,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,64.66,50.23,8.333333333333334,2,3,0,0,10,9,5,1,650,1471500.1,1293359.8,341858.19,117003.52,177.06775,2070.3325,2684.3687 +1593,1983,3490,3491,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1111593,6.6341634,28,6,-24.476099,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.147469,6.8236833,52.82,53.97,51.04,52.17,8.333333333333334,1,1,0,0,10,7,4,1,852.5,3004290.5,1214326.8,661207.63,0,19173.137,0,4345.8223 +1593,1983,3491,3490,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7212896,8.2564154,7.8473263,27,-6,49.731564,0,2,2,2021,15,5,22,15,1,5,0,14.208231,14.208231,0,0,0,0,0,0,0,0,1,1,0,6.9902711,7.76405,51.04,52.17,52.82,53.97,8.333333333333334,1,1,0,0,13,7,4,1,852.5,3004290.5,1214326.8,661207.63,0,19173.137,0,4345.8223 +1594,1984,3492,3493,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.6191168,8.6404839,0,18,1,47.179623,0,2,1,2021,6,0,43,47,1,0,0,20.104212,20.104212,.05,.05,0,0,0,0,0,0,0,0,0,1.4205935,0,63.06,53.47,62.49,55.09,8.333333333333334,1,1,0,0,12,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1594,1984,3493,3492,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.2495451,8.4500408,0,18,-1,5.7249918,0,1,-9,2021,6,0,52,60,1,0,0,9.5142527,9.5142527,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,63.06,53.47,6.666666666666667,1,1,0,0,11,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1594,1984,3494,-9,3493,3492,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.4421,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,5,1,1,0,0,0,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1595,1985,3495,3497,3499,-9,1,1,46,0,2,0,2,2,-9,0,4,6.8406239,6.5901151,0,20,9,193.15283,0,3,3,2021,10,0,24,24,1,1,0,4.0799866,4.0799866,0,0,0,0,0,0,0,0,1,1,0,4.5541677,0,51,56,48,57,7,2,3,0,1,13,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3496,-9,3497,3495,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-927.6983,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,0,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3497,3495,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,11,0,-62.036045,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3498,-9,3497,3495,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.55255,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1986,3499,-9,-9,-9,1,0,82,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1063.2485,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,2,1,1,357,-133844.72,0,0,0,0,0,1965.6211 +1595,1987,3500,-9,3497,3495,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1025.8423,-9,3,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,113,265543.5,0,184417.36,0,0,0,-66.200539 +1596,1988,3501,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.5391388,7.7901797,0,0,0,-951.94092,0,1,1,2021,15,3,25,4,1,3,0,9.1827183,9.1827183,0,0,0,0,0,0,0,0,1,1,0,4.7929964,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,7,9,3,1,172,836096.19,264157.19,245710.36,0,0,0,956.203 +1597,1989,3502,-9,3503,3505,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.49194,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3503,3505,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,7.4748821,7.4822145,0,22,-3,26.395794,0,2,3,2021,6,0,25,40,1,0,0,7.687232,7.687232,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,30.62,49.49,10,2,3,0,0,5,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3504,-9,3503,3505,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4979,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3505,3503,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,9.401022,9.3481054,0,22,3,126.99545,-9,-9,-9,2021,11,0,43,0,1,1,0,25.164951,25.164951,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.62,49.49,51.83,57.2,5,2,3,0,1,10,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1598,1990,3506,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.0811939,8.399478,0,0,0,-975.3623,0,3,3,2021,6,0,30,25,1,0,0,11.945878,11.945878,0,0,0,0,0,0,0,0,0,0,0,3.002723,0,57.06,57.76,-9,-9,10,1,1,0,0,10,13,4,1,871,1015365.1,838789.06,178873.5,117475.38,0,0,1803.4814 +1598,1991,3507,-9,3506,-9,1,1,26,0,0,0,1,1,-9,0,2,8.5845757,8.7174177,0,0,0,-1069.5629,0,1,1,2021,19,8,41,52,1,8,1,13.792855,13.792855,.05,.05,0,0,0,0,0,0,0,0,0,4.1724896,0,19.89,59.36,-9,-9,1.666666666666667,1,1,0,0,4,13,5,1,1283,194701.81,4175.2051,0,0,0,0,2070.3879 +1598,1992,3508,-9,3506,-9,1,1,25,0,0,0,1,1,-9,0,5,7.9831443,7.9096842,0,0,0,-900.7027,0,1,1,2021,6,0,37,43,1,0,1,10.845003,10.845003,.05,.05,0,0,0,0,0,0,0,0,0,2.4043872,0,62.39,56.71,-9,-9,10,1,1,0,0,4,13,4,1,1807,5127.501,-79095.922,0,0,0,1021.6196,1302.6002 +1598,1993,3509,-9,3506,-9,1,1,23,0,0,0,2,2,-9,0,4,7.3554859,7.0473189,0,0,0,-1021.9282,0,1,-9,2021,6,0,37,0,1,0,1,5.8748341,5.8748341,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1843,81050.781,0,0,0,5479.2832,0,464.74048 +1598,1994,3510,-9,3506,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-898.67725,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,3,13,1,1,882,41485.031,0,0,0,0,0,0 +1599,1995,3511,3512,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,3,-18,62.920216,0,-9,-9,2021,13,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,15.16,55.55,44.02,23.69,10,1,1,0,0,0,2,2,1,296,648503.25,302484.38,257531.53,0,0,-45.986145,2130.0903 +1599,1995,3512,3511,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.6120205,7.4420543,3,18,.93352962,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5198579,44.02,23.69,15.16,55.55,8.333333333333334,1,1,0,0,0,2,2,1,296,648503.25,302484.38,257531.53,0,0,-45.986145,2130.0903 +1600,1996,3513,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.1453314,8.1090946,0,0,0,-960.20746,0,2,2,2021,5,0,50,45,1,0,0,8.1617956,8.1617956,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,160,-37231.383,8749.4004,68737.852,72236.039,0,0,1224.4541 +1601,1997,3514,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.7905865,8.2008104,6.0578756,0,0,-1067.7499,0,2,2,2021,13,1,16,0,1,1,0,18.222242,18.222242,.05,.05,0,0,0,0,.16741376,42,1,0,1,5.9376478,0,40.21,50.34,-9,-9,8.333333333333334,1,1,0,0,11,1,3,0,193,317349.16,112879.18,186784.58,103166.24,0,0,2789.4197 +1601,1998,3515,-9,3514,-9,1,0,21,0,1,1,1,0,0,0,1,0,0,0,0,0,-1018.283,-9,1,-9,2021,33,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.46,32.83,-9,-9,5,1,1,0,0,0,1,1,0,594,-134001.52,101808.67,67014.656,0,0,0,190.65755 +1602,1999,3516,3517,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.288909,8.4351664,0,39,0,8.1652899,0,-9,3,2021,6,0,50,50,1,0,0,12.256049,12.256049,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.83,47.81,10,1,1,0,0,10,9,4,1,658.5,1558438.8,567878.63,597683.56,0,0,0,2369.7485 +1602,1999,3517,3516,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,6.8837323,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.83,47.81,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,658.5,1558438.8,567878.63,597683.56,0,0,0,2369.7485 +1603,2000,3518,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.888721,6.9591541,0,0,-878.76318,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0600042,54,44,-9,-9,8,1,1,0,0,0,6,2,0,396,342735.25,38726.832,155808.34,0,0,0,1784.8329 +1604,2001,3519,-9,3520,3522,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.40002,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3520,3522,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.7654176,7.6027651,0,16,1,91.063293,0,3,3,2021,10,0,30,30,1,0,0,6.4399366,6.4399366,0,0,0,0,0,0,0,2,1,1,0,0,0,38.86,56.2,47.61,53.7,8.333333333333334,1,1,0,0,6,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3521,-9,3520,3522,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.8385,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3522,3520,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,16,-1,45.587681,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,38.86,56.2,5,1,1,0,0,1,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3523,-9,3520,3522,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.67639,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1605,2002,3524,-9,3526,3525,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1031.6185,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2225963,0,59.53,56.44,-9,-9,10,1,1,0,0,0,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2002,3525,3526,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.4054289,8.5419121,0,6,5,-82.264023,0,3,2,2021,8,0,60,60,1,0,0,7.0368376,7.0368376,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,55,8.333333333333334,1,1,0,0,8,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2002,3526,3525,-9,-9,1,0,44,0,1,0,2,2,-9,1,4,0,0,0,6,-5,23.593685,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,57.16,56.15,8,1,1,0,0,1,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2003,3527,-9,3526,3525,1,0,23,0,1,0,2,2,-9,0,3,7.1376739,6.8556705,0,0,0,-1093.9014,0,2,3,2021,12,1,16,12,1,1,1,8.785429,8.785429,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,7,12,2,0,1208,199582.8,0,0,0,1277.2653,0,1083.5616 +1606,2004,3528,-9,-9,-9,1,1,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.6758,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.7662716,.002220243,19.182684,0,1,1,0,0,0,48.57,34.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1558,233680.92,0,186273.42,0,0,0,978.93146 +1607,2005,3529,3530,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,3,10,0,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.827453,0,53.2,45.94,31.06,27.8,8.333333333333334,1,1,0,0,6,9,1,1,544.5,288347.5,-1997.5427,213377.58,0,0,0,2053.3608 +1607,2005,3530,3529,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,0,0,3,-10,0,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.06,27.8,53.2,45.94,8.333333333333334,1,1,0,0,0,9,1,1,544.5,288347.5,-1997.5427,213377.58,0,0,0,2053.3608 +1608,2006,3531,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,0,0,0,0,0,-878.49884,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,29.63,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,615,-100920.84,112365.58,0,0,0,377.07214,1156.748 +1608,2007,3532,-9,3531,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1078.0547,0,1,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.74,24.49,-9,-9,3.333333333333333,1,1,1,1,0,9,2,0,511,-112177.64,0,0,0,0,0,702.44519 +1609,2008,3533,3534,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.7956867,8.9402981,0,45,0,-28.693483,0,3,3,2021,10,0,42,40,1,0,0,16.852079,16.852079,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,58.3,47.38,58.72,51.29,10,1,1,0,0,11,13,5,1,699.5,263507.22,170791.77,193720.13,0,0,0,2922.3145 +1609,2008,3534,3533,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.0857916,5.7187343,45,0,82.150284,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193608,5.8043985,58.72,51.29,58.3,47.38,10,1,1,0,0,6,13,5,1,699.5,263507.22,170791.77,193720.13,0,0,0,2922.3145 +1610,2009,3535,-9,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,0,0,0,0,0,-1117.0975,-9,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.17,42.36,-9,-9,6.666666666666667,4,5,0,1,7,6,1,1,493,493825.06,168256.73,201103.3,0,0,0,470.63412 +1610,2010,3536,-9,3535,-9,1,1,24,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1006.4458,-9,1,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.99,52.62,-9,-9,8.333333333333334,4,5,0,0,3,6,1,1,2073,-52668.859,0,0,0,0,1649.498,661.42474 +1611,2011,3537,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1089.166,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,8.093894,0,0,1,1,0,3.4467757,0,26.49,30.2,-9,-9,5,1,1,0,0,0,11,1,0,1217,-383330.75,0,0,0,0,-1007.3483,1407.0919 +1612,2012,3538,-9,3540,3539,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.6153,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1612,2012,3539,3540,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.287384,8.3605013,0,8,0,182.4897,0,2,2,2021,9,0,38,38,1,0,0,12.340391,12.340391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,44.95,40.65,57.36,1.666666666666667,1,1,0,0,9,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1612,2012,3540,3539,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.4305925,8.840621,0,8,0,17.875591,0,-9,-9,2021,14,2,30,30,1,2,0,15.861361,15.861361,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,46.28,44.95,5,1,1,0,0,9,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1613,2013,3541,3542,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.4200163,8.5310936,0,13,2,-177.84572,0,2,3,2021,15,4,37,37,1,4,0,12.464631,12.464631,0,0,0,0,0,0,0,2,0,0,0,3.2756009,0,41.53,63.13,51.24,58.84,3.333333333333333,1,1,0,0,11,9,5,1,757.5,1839806.8,1335567.6,654494.88,0,0,0,5506.6611 +1613,2013,3542,3541,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8509121,9.081378,7.9327393,13,-2,21.938793,0,3,3,2021,11,0,38,38,1,0,0,18.901674,18.901674,0,0,.05,0,0,0,0,0,0,0,0,0,8.1094723,51.24,58.84,41.53,63.13,10,1,1,0,0,11,9,5,1,757.5,1839806.8,1335567.6,654494.88,0,0,0,5506.6611 +1614,2014,3543,3544,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,8.0653706,7.9528642,56,-3,61.663837,-9,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3492689,7.8905778,51,46,57.76,54.51,8,1,1,0,0,0,1,3,1,1703.5,1329868.4,575380.63,483658.03,0,0,0,2733.6948 +1614,2014,3544,3543,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.7223568,7.3387303,56,3,-9.1833925,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3596296,7.2314053,57.76,54.51,51,46,0,1,1,0,0,8,1,3,1,1703.5,1329868.4,575380.63,483658.03,0,0,0,2733.6948 +1615,2015,3545,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-944.67389,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3210092,0,39.96,42.48,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,192,-97147.703,0,0,0,0,0,1247.4241 +1616,2016,3546,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.4893,1,-9,-9,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.11,59.02,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,267,0,0,0,0,0,0,559.00946 +1617,2017,3547,3548,-9,-9,1,1,84,0,1,0,2,2,-9,0,2,0,7.4857154,7.5882101,4,23,-92.085342,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.024291,41.36,39.55,57.16,56.15,6.666666666666667,1,1,0,0,0,7,4,1,521.5,1095447.3,312232.19,860039.75,0,0,0,3056.7842 +1617,2017,3548,3547,-9,-9,1,0,61,0,1,0,2,2,-9,0,4,7.6871333,7.7576966,5.5229449,4,-23,-44.847515,0,-9,-9,2021,9,0,25,25,1,0,0,9.3922319,9.3922319,0,0,0,0,0,0,0,0,1,1,0,0,5.4852133,57.16,56.15,41.36,39.55,8.333333333333334,1,1,0,0,10,7,4,1,521.5,1095447.3,312232.19,860039.75,0,0,0,3056.7842 +1617,2018,3549,-9,3548,3547,1,0,34,0,1,0,2,2,-9,0,4,8.1343927,8.1300306,0,0,0,-962.96381,0,2,2,2021,12,2,50,47,1,2,1,9.049489,9.049489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,291.5,101027.82,18960.697,130185.5,144918.27,0,1397.2294,1566.5446 +1617,2018,3550,-9,3549,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.25415,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,291.5,101027.82,18960.697,130185.5,144918.27,0,1397.2294,1566.5446 +1618,2019,3551,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.7453222,5.6173091,0,0,-1022.9506,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.857298,5.5872712,63.63,46.32,-9,-9,10,1,1,0,0,0,11,2,1,857,208898.11,85778.758,96473.398,0,0,0,1624.8392 +1619,2020,3552,3553,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,24,2,8.6587992,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.6,17.32,51.24,58.84,1.666666666666667,1,1,0,0,7,7,4,0,1270,173869.44,162179.45,0,0,7446.2954,0,1709.1715 +1619,2020,3553,3552,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.5067196,8.4647684,0,24,-2,14.580504,0,2,2,2021,12,0,52,49,1,0,0,9.992734,9.992734,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,44.6,17.32,8.333333333333334,1,1,0,0,14,7,4,0,1270,173869.44,162179.45,0,0,7446.2954,0,1709.1715 +1620,2021,3554,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.7281609,8.8459206,0,0,0,-918.2439,0,2,2,2021,10,2,44,45,1,2,0,11.410028,11.410028,.05,.05,0,0,0,0,0,0,0,0,0,7.1958742,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,1148,185167.55,142849.05,0,0,10406.204,0,2991.3362 +1621,2022,3555,3556,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.3228712,8.0994396,0,10,-5,17.476521,0,2,2,2021,9,0,83,48,1,0,0,4.7050838,4.7050838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.62,40.37,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,645.5,303378,151296.34,362284.38,185498.05,10820.719,15473.982,4670.2856 +1621,2022,3556,3555,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.1513348,9.3854418,0,10,5,8.9799738,0,3,3,2021,6,0,43,48,1,0,0,24.185789,24.185789,.05,.05,0,0,0,0,0,0,0,0,0,4.2744274,0,54.79,55.86,44.62,40.37,8.333333333333334,1,1,0,0,12,2,5,1,645.5,303378,151296.34,362284.38,185498.05,10820.719,15473.982,4670.2856 +1621,2023,3557,-9,3555,3556,1,0,25,0,0,0,1,1,-9,0,3,7.4300113,7.0768919,0,0,0,-832.12183,0,2,2,2021,11,0,22,23,1,0,1,7.536727,7.536727,.05,.05,0,0,0,0,0,0,0,0,0,1.8783382,0,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1679,-63861.266,28266.139,0,0,4884.8838,0,1127.8698 +1622,2024,3558,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6157503,7.5232077,0,0,-811.8772,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.3692455,0,20.415709,0,1,1,0,5.949996,7.0773706,56.84,42.76,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,832,341765.97,33299.707,168544.33,0,0,0,1801.6033 +1623,2025,3559,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.426878,5.7699924,0,0,-1050.1068,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,1.6731827,0,20.323584,0,1,1,0,0,5.7368317,41.47,36.82,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,675,107295.77,0,49162.113,0,0,0,250.54942 +1624,2026,3560,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.33,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,48.58,27.63,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,1939,-46151.031,0,0,0,0,0,680.82867 +1625,2027,3561,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,3.8854208,3.9217753,0,0,-1033.4517,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.4453635,42.09,43.11,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1195,625912.19,93307.773,112518.78,0,0,0,896.31201 +1626,2028,3562,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1506062,8.454648,0,0,0,-1056.4943,0,2,2,2021,14,2,44,40,1,2,0,10.117409,10.117409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.86,46.88,-9,-9,6.666666666666667,1,1,0,0,12,5,4,0,382,-16402.887,-12137.161,103892.84,86734.055,0,0,1394.8767 +1627,2029,3563,3564,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.17834,7.8488069,0,7,-1,150.91986,0,-9,2,2021,6,0,44,48,1,0,0,9.5924129,9.5924129,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.48,40.76,8.333333333333334,1,1,0,0,7,4,4,1,1133.5,391760.75,289828.59,151351.13,0,8741.6426,0,1932.2729 +1627,2029,3564,3563,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6300979,7.4648905,0,7,1,-68.317276,0,3,2,2021,15,5,45,48,1,5,0,4.2967167,4.2967167,0,0,0,0,0,0,0,0,0,0,0,0,0,38.48,40.76,54.2,57.49,8.333333333333334,1,1,0,0,7,4,4,1,1133.5,391760.75,289828.59,151351.13,0,8741.6426,0,1932.2729 +1627,2030,3565,-9,3564,-9,1,1,35,0,0,0,1,1,-9,0,5,8.3186598,8.2166147,0,0,0,-1017.7363,0,2,-9,2021,10,0,64,69,1,0,1,7.193954,7.193954,.05,.05,.05,0,0,0,0,0,0,0,0,2.6399157,0,57.06,57.76,-9,-9,10,1,1,0,0,8,4,4,1,394,193609.84,88681.484,113382.81,84572.867,0,0,1267.6869 +1627,2031,3566,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,7.4797764,7.3924508,0,0,0,-979.20831,0,-9,-9,2021,9,0,37,35,1,0,0,6.0494742,6.0494742,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,578,81477.313,-71761.938,0,0,0,1476.5966,647.31262 +1628,2032,3567,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.1645641,6.4476705,0,0,-1048.2705,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1877022,58.75,51.28,-9,-9,10,1,1,0,0,0,7,2,0,693,89456.852,87884.734,0,0,0,-165.68837,1747.715 +1629,2033,3568,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1124.6246,0,-9,-9,2021,9,0,0,39,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,1,1,2,12,1,0,732,20864.605,0,0,0,0,0,675.28223 +1630,2034,3569,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-924.60016,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.05,33,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1066,147427.77,0,0,0,0,0,1179.5936 +1630,2035,3570,-9,3569,-9,1,1,32,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1040.9567,-9,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.3,28.34,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1498,-126632.69,0,0,0,0,0,480.45853 +1631,2036,3571,3572,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9719248,9.23421,0,33,-2,32.492725,0,1,1,2021,11,0,30,24,1,0,0,33.594364,33.594364,.05,.05,0,0,0,0,0,7,0,0,0,0,0,49.46,56.91,54.77,55.87,8.333333333333334,1,1,0,0,9,9,5,1,1230,791069.5,107102.84,558774.31,72810.422,0,0,5791.9805 +1631,2036,3572,3571,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7626419,8.8222961,0,34,2,1.2424347,0,3,1,2021,10,2,50,50,1,2,0,16.682251,16.682251,.05,.05,.05,0,0,0,0,7,0,0,0,5.1240788,0,54.77,55.87,49.46,56.91,10,1,1,0,0,9,9,5,1,1230,791069.5,107102.84,558774.31,72810.422,0,0,5791.9805 +1632,2037,3573,3574,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.2643127,6.8501949,10,0,-83.032616,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7014112,6.2153764,57.87,47.65,54.77,55.87,8.333333333333334,1,1,0,0,0,10,2,1,781,435846,135719.73,224765.25,0,0,0,1425.1868 +1632,2037,3574,3573,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,6.8336043,6.7015748,10,9,-12.315422,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1320086,6.8674049,54.77,55.87,57.87,47.65,8.333333333333334,1,1,0,0,0,10,2,1,781,435846,135719.73,224765.25,0,0,0,1425.1868 +1633,2038,3575,-9,3578,3576,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.1568,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3576,3578,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.1139355,8.0261211,0,6,5,66.707436,0,2,2,2021,3,0,35,35,1,0,0,8.1743469,8.1743469,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,31.7,58.23,8.333333333333334,1,1,0,0,7,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3577,-9,3578,3576,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.1579,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3578,3576,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.3531857,7.6004448,0,6,-5,-80.391548,0,-9,-9,2021,19,7,18,18,1,7,0,12.073881,12.073881,0,0,0,0,0,0,0,0,1,1,0,0,0,31.7,58.23,51.14,60.45,8.333333333333334,4,2,0,0,7,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1634,2039,3579,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.0728254,6.234746,0,0,-968.89777,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.5220237,6.202733,41.36,34.01,-9,-9,5,1,1,0,0,0,11,2,1,523,647280.75,13811.595,584233.38,0,0,0,1510.5631 +1635,2040,3580,3581,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.7786131,8.0359955,56,1,-106.01346,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8217802,67.12,15.13,62.57,40.11,8.333333333333334,1,1,0,0,0,9,3,1,1731,133914.3,70761.797,0,0,7104.373,0,2883.9299 +1635,2040,3581,3580,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2524939,5.9272265,56,-1,103.29391,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2547603,62.57,40.11,67.12,15.13,8.333333333333334,1,1,0,0,0,9,3,1,1731,133914.3,70761.797,0,0,7104.373,0,2883.9299 +1636,2041,3582,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,7.0530682,7.1792173,0,0,-1037.3536,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2692819,62.11,45.63,-9,-9,10,1,1,0,0,0,4,2,1,513,225778.64,-54510.152,254058.19,0,0,0,971.26709 +1637,2042,3583,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,7.0712757,7.3350153,6.0233879,0,0,-993.15533,0,2,2,2021,7,0,40,37,1,0,0,3.4499614,3.4499614,0,0,0,0,0,0,0,0,1,1,0,5.9720931,5.8890977,57.33,53.46,-9,-9,10,1,1,0,0,8,10,3,1,1256,-22211.525,181752.05,0,0,6535.1357,0,1397.7148 +1638,2043,3584,3585,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.476922,8.3830948,0,10,0,158.18829,0,2,2,2021,6,0,52,46,1,0,0,10.928816,10.928816,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.71,61.53,57.16,56.15,8.333333333333334,1,1,0,0,12,10,3,0,223.5,259735.06,202713.7,221595.44,189298.44,12828.879,3215.8406,2649.0342 +1638,2043,3585,3584,-9,-9,1,0,36,0,2,0,2,2,-9,1,4,0,0,0,10,0,-88.183922,0,2,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,48.71,61.53,8.333333333333334,1,1,0,0,0,10,3,0,223.5,259735.06,202713.7,221595.44,189298.44,12828.879,3215.8406,2649.0342 +1639,2044,3586,3587,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7679663,7.024035,43,7,76.447983,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0024185,58.32,50.22,65.95,39.97,10,1,1,0,0,0,6,2,1,820.5,214243,158311.22,84167.82,0,0,0,2012.1104 +1639,2044,3587,3586,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,43,-7,76.837288,0,3,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.856853,0,65.95,39.97,58.32,50.22,3.333333333333333,1,1,0,0,4,6,2,1,820.5,214243,158311.22,84167.82,0,0,0,2012.1104 +1640,2045,3588,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3471937,8.6863775,3.5332837,0,0,-976.44537,0,2,2,2021,16,5,50,45,1,5,0,11.975901,11.975901,.05,.05,0,0,0,0,0,0,0,0,0,3.7463808,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,8,6,5,0,2355,-79359.211,18863.631,0,0,0,0,2090.2598 +1641,2046,3589,3590,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,4.8868704,4.929544,10,7,14.547396,0,2,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0257311,5.0807157,36.61,17.55,48.38,49.66,3.333333333333333,1,1,0,0,0,11,2,0,279.5,27223.705,97456.422,0,0,0,0,2556.6113 +1641,2046,3590,3589,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,0,0,0,10,-7,-53.866627,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.38,49.66,36.61,17.55,5,1,1,0,0,0,11,2,0,279.5,27223.705,97456.422,0,0,0,0,2556.6113 +1642,2047,3591,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,2,8.6464853,8.6584206,5.5832977,0,0,-968.76294,0,2,2,2021,17,5,60,70,1,5,0,10.646666,10.646666,.05,.05,0,0,0,0,0,42,1,1,0,5.9006577,0,37.48,52.37,-9,-9,8.333333333333334,1,1,0,1,13,9,5,1,972.5,289123.16,49787.805,403954.72,156724.56,0,0,2101.2869 +1642,2047,3592,-9,3591,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1000.0237,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,972.5,289123.16,49787.805,403954.72,156724.56,0,0,2101.2869 +1643,2048,3593,3594,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.977529,4.8439631,47,-2,-7.2650146,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7641335,4.7632079,57.09,46.7,60.52,53.2,8.333333333333334,1,1,0,0,0,4,2,1,636.5,906761.38,416351.88,269352.59,0,0,0,5181.4443 +1643,2048,3594,3593,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,4.9714403,5.1055455,7,2,28.291271,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3164907,4.7882528,60.52,53.2,57.09,46.7,6.666666666666667,1,1,0,0,0,4,2,1,636.5,906761.38,416351.88,269352.59,0,0,0,5181.4443 +1644,2049,3595,3596,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,7.7023807,7.6571412,0,40,-1,-90.564835,0,-9,-9,2021,9,0,40,40,1,0,0,8.1442003,8.1442003,.05,.05,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,43.19,57.16,56.15,8.333333333333334,1,1,0,0,8,2,3,1,351,458631.06,466051.84,121113.73,10226.573,3984.98,0,1591.3057 +1644,2049,3596,3595,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2973661,7.4893408,0,39,1,25.737629,0,-9,-9,2021,6,0,18,18,1,0,0,8.2812157,8.2812157,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,64.96000000000001,43.19,10,1,1,0,0,9,2,3,1,351,458631.06,466051.84,121113.73,10226.573,3984.98,0,1591.3057 +1645,2050,3597,3598,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.6894417,8.7773228,0,18,-3,23.513895,0,2,1,2021,11,2,48,48,1,2,0,15.498036,15.498036,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,3067,349966.94,119376.33,292163.75,112868.1,-2172.9126,0,7516.8438 +1645,2050,3598,3597,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.532342,9.1497402,0,16,3,-5.14363,0,2,1,2021,11,0,40,40,1,0,0,28.940363,28.940363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.47,66.09,10,1,1,0,0,14,12,5,1,3067,349966.94,119376.33,292163.75,112868.1,-2172.9126,0,7516.8438 +1646,2051,3599,3600,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.4548035,7.1137223,7,2,-13.042006,0,-9,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3975701,7.2479706,61.61,13.86,20.44,63.43,3.333333333333333,1,1,0,0,0,10,2,1,1050.5,337093.97,213313.66,67452.156,0,4638.3999,0,2164.0393 +1646,2051,3600,3599,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,7,-2,-38.09642,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,20.44,63.43,61.61,13.86,1.666666666666667,1,1,0,0,8,10,2,1,1050.5,337093.97,213313.66,67452.156,0,4638.3999,0,2164.0393 +1647,2052,3601,3602,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.768496,8.0770235,0,1,-2,-5.5189953,0,2,2,2021,10,0,38,38,1,0,0,6.9773421,6.9773421,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.47,50.22,8.333333333333334,1,1,0,0,5,2,5,1,1580.5,77711.227,-27858.266,198238.98,123046.97,4867.624,653.61932,3606.7637 +1647,2052,3602,3601,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.7985277,8.4576893,0,1,2,31.622519,-9,-9,-9,2021,7,0,37,0,1,0,0,17.214836,17.214836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,51.83,57.2,6.666666666666667,1,1,0,0,2,2,5,1,1580.5,77711.227,-27858.266,198238.98,123046.97,4867.624,653.61932,3606.7637 +1648,2053,3603,-9,3605,3604,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79797,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3604,3605,-9,-9,1,1,28,1,2,0,2,2,-9,1,5,0,0,0,2,2,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.37,38.76,58.32,50.22,3.333333333333333,2,3,1,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3605,3604,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.37,38.76,10,2,3,0,0,2,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3606,-9,3605,3604,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.6857,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1649,2054,3607,3608,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,50,0,-88.350662,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.85311598,0,25.296692,0,1,1,0,4.3236899,0,48.43,27.63,61.43,48.88,8.333333333333334,1,1,0,0,0,9,3,1,799.5,889986.38,51608.836,234982.89,0,0,0,2760.6987 +1649,2054,3608,3607,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.0316458,7.5868287,50,0,-13.704636,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2794428,7.619329,61.43,48.88,48.43,27.63,8.333333333333334,1,1,0,0,2,9,3,1,799.5,889986.38,51608.836,234982.89,0,0,0,2760.6987 +1650,2055,3609,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6478477,7.5435257,0,0,-994.38086,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9523578,7.7319164,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,604,289766.31,518815.31,0,0,0,0,868.19623 +1651,2056,3610,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3290615,8.279829,0,0,0,-922.71069,0,-9,-9,2021,12,2,35,35,1,2,0,12.503366,12.503366,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.29,49.12,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,990,74657.695,20304.727,0,0,0,0,1628.9313 +1652,2057,3611,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.3240047,7.0537062,0,0,-1062.5211,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1763139,36.93,41.13,-9,-9,5,1,1,0,0,7,1,3,1,605,1848732.3,0,826881.56,0,0,0,824.77429 +1653,2058,3612,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0383768,7.911181,0,0,0,-981.49457,0,2,3,2021,11,0,33,33,1,2,0,10.997955,10.997955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,0,9,8,4,0,1073,863439,412539.88,521576.19,43334.863,5372.2739,1425.7408,1254.1082 +1653,2059,3613,-9,3612,-9,1,0,20,0,0,0,2,2,1,0,4,7.4469204,7.6142998,0,0,0,-958.87585,-9,2,-9,2021,12,0,1,0,1,2,1,212.64252,212.64252,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,3,4,0,0,3,8,3,0,891,14542.098,-18952.684,0,0,0,0,689.55377 +1654,2060,3614,3616,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.4550552,8.3821239,0,7,0,64.929848,0,-9,-9,2021,13,2,16,16,1,2,0,31.618601,31.618601,.05,.05,0,0,0,0,0,0,0,0,0,1.9770429,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,5,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1654,2060,3615,-9,3614,3616,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.8561,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1654,2060,3616,3614,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.8893566,9.3316975,0,7,0,37.613285,0,1,1,2021,8,0,50,48,1,0,0,20.142479,20.142479,.05,.05,0,0,0,0,0,0,0,0,0,2.4001086,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,7,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1655,2061,3617,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.1470237,5.9923878,0,0,-1014.2704,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.563168,6.1871324,48.73,27.95,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1114,108099.56,31378.42,0,0,0,0,598.57678 +1656,2062,3618,3619,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6628213,7.5822906,35,7,-32.840958,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4328737,7.7122784,54.79,55.86,60.52,53.2,8.333333333333334,1,1,0,0,5,5,3,1,633,797821.63,510064.63,49472.621,0,0,0,3700.3062 +1656,2062,3619,3618,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1487579,6.9288244,13,-7,13.990189,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0772715,6.839211,60.52,53.2,54.79,55.86,10,1,1,0,0,0,5,3,1,633,797821.63,510064.63,49472.621,0,0,0,3700.3062 +1657,2063,3620,3621,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5690708,7.8621874,47,2,26.445332,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1914277,7.4110899,56.7,42.76,41.71,44.18,3.333333333333333,1,1,0,0,4,5,3,1,194,568334.75,486761.94,59998.527,0,0,0,2979.6792 +1657,2063,3621,3620,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-6.3645844,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9196048,0,41.71,44.18,56.7,42.76,6.666666666666667,1,1,0,0,0,5,3,1,194,568334.75,486761.94,59998.527,0,0,0,2979.6792 +1658,2064,3622,3623,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.829525,8.5003366,0,4,13,-25.723597,0,3,2,2021,11,0,50,40,1,0,0,11.44982,11.44982,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.36,51.57,54.37,54.8,1.666666666666667,1,1,0,0,13,12,5,1,1063,655449.25,302845.88,336728.66,46993.609,0,0,4971.2773 +1658,2064,3623,3622,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.7583704,8.8860445,5.3550243,4,-13,-93.844147,0,2,3,2021,13,0,35,35,1,2,0,19.862167,19.862167,.05,.05,0,0,0,0,0,0,1,1,0,0,5.5805845,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,13,12,5,1,1063,655449.25,302845.88,336728.66,46993.609,0,0,4971.2773 +1658,2065,3624,-9,3623,3622,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-970.8703,1,2,3,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.63,38.14,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,896,122754.41,0,0,0,0,0,0 +1659,2066,3625,3626,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,8.6630802,8.6536236,0,10,0,-43.4533,0,-9,-9,2021,11,0,48,47,1,0,0,15.993307,15.993307,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.05,63.64,8.333333333333334,1,1,0,0,11,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3626,3625,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4244289,8.4590683,0,10,0,-37.970551,0,2,2,2021,17,5,24,30,1,5,0,27.703743,27.703743,.05,.05,0,0,0,0,0,0,1,1,0,7.0537291,0,38.05,63.64,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3627,-9,3626,3625,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.5347,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3628,-9,3626,3625,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.47626,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3629,-9,3626,3625,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-898.22253,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1660,2067,3630,3631,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.7370062,6.2465582,55,7,-156.31511,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,6.4968467,46.33,55.93,55.47,13.85,8.333333333333334,3,4,0,0,0,8,2,1,732,300051.88,-6184.4453,240691.2,0,0,0,1235.1125 +1660,2067,3631,3630,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,0,0,5,-7,-62.511307,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,11.858267,0,0,1,1,0,0,0,55.47,13.85,46.33,55.93,3.333333333333333,3,4,0,1,0,8,2,1,732,300051.88,-6184.4453,240691.2,0,0,0,1235.1125 +1661,2068,3632,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.16437,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8529549,0,51,46,-9,-9,8,1,1,0,0,0,5,2,1,289,0,0,0,0,0,0,1526.3861 +1661,2069,3633,-9,3632,-9,1,0,41,0,0,0,3,3,-9,0,4,7.8464327,7.5048704,0,0,0,-958.33685,0,3,-9,2021,21,8,39,40,1,8,0,7.9294415,7.9294415,0,0,0,0,0,0,0,27,1,1,0,0,0,36.72,59.86,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,1358,93686.484,0,0,0,0,0,1196.2501 +1662,2070,3634,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,5.924592,6.1179647,0,0,-981.73682,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8690789,0,0,1,1,0,0,6.0885301,66.62,13.15,-9,-9,10,1,1,0,0,0,7,2,1,494,140821.66,106105.84,0,0,0,0,1367.4484 +1663,2071,3635,3636,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.3442583,6.8343449,42,6,20.84384,0,2,3,2021,13,1,0,0,4,1,0,0,0,.05,.05,.05,1,0,13.377189,0,2,1,1,0,5.0789914,6.4389577,55.25,25.12,53.46,39.14,6.666666666666667,1,1,0,0,10,7,3,1,846.5,426543.81,301279.13,197228.03,0,0,-440.40167,1311.58 +1663,2071,3636,3635,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.9467425,6.9247327,0,44,-6,-60.474834,0,3,3,2021,14,4,13,16,1,4,0,8.9261923,8.9261923,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.46,39.14,55.25,25.12,8.333333333333334,1,1,0,0,10,7,3,1,846.5,426543.81,301279.13,197228.03,0,0,-440.40167,1311.58 +1664,2072,3637,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.2108655,6.848412,0,0,-986.7981,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1705037,6.712007,57.06,57.76,-9,-9,10,1,1,0,0,10,13,2,1,726,299474.81,209093.89,89731.297,0,0,0,698.98315 +1665,2073,3638,3639,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.2192197,7.6950483,12,3,40.292255,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7379556,7.346694,55.2,49.4,57.87,53.19,10,1,1,0,0,9,11,2,1,1085.5,839346.56,493562.53,224845.03,0,0,0,2401.8384 +1665,2073,3639,3638,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,12,-3,-174.37733,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.87,53.19,55.2,49.4,10,1,1,0,0,0,11,2,1,1085.5,839346.56,493562.53,224845.03,0,0,0,2401.8384 +1666,2074,3640,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-904.39514,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7876668,0,48,49,-9,-9,7,1,1,0,0,5,4,1,0,1013,0,0,0,0,0,0,1448.8679 +1666,2075,3641,-9,3640,-9,1,0,26,0,0,0,3,3,-9,1,3,0,0,0,0,0,-935.41687,0,3,-9,2021,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.89,54.92,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,205,-62264.879,0,0,0,0,0,224.99348 +1666,2076,3642,-9,3640,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-918.22485,0,2,-9,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,3.333333333333333,1,1,1,1,0,4,1,0,1283,-60424.223,0,0,0,0,0,466.28281 +1667,2077,3643,3646,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,8.0320644,7.9759398,0,11,5,-21.320374,0,-9,-9,2021,12,0,48,48,1,0,0,7.1556792,7.1556792,0,0,0,0,0,0,0,42,1,1,0,0,0,36.78,46.67,51.18,37.64,3.333333333333333,1,1,0,0,7,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3644,-9,3646,3643,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.4233,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3645,-9,3646,3643,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.36273,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3646,3643,-9,-9,1,0,29,0,3,0,3,3,-9,1,3,0,0,0,11,-5,-17.480192,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.18,37.64,36.78,46.67,8.333333333333334,1,1,0,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1668,2078,3647,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4290295,8.293335,0,0,0,-906.07874,0,3,3,2021,17,5,43,44,1,5,0,12.466717,12.466717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.1,42.62,-9,-9,3.333333333333333,2,3,0,0,3,4,5,0,2974,-38472.625,-9294.5859,0,0,0,0,1762.942 +1668,2079,3648,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.5184727,7.4631863,0,0,0,-1102.3021,0,-9,-9,2021,14,2,21,27,1,2,0,10.786259,10.786259,0,0,0,0,0,0,0,74.5,0,0,0,0,0,36.86,59.86,-9,-9,3.333333333333333,2,3,0,0,5,4,3,0,378,-55946.801,0,0,0,0,0,-236.55768 +1669,2080,3649,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.8834,0,3,3,2021,12,0,0,21,4,0,0,0,0,0,0,0,1,0,0,4.1119466,0,1,1,0,0,0,65.05,33.57,-9,-9,5,1,1,0,0,10,13,1,0,1367,76727.008,0,0,0,0,0,608.44733 +1669,2081,3650,-9,3649,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3281841,8.1650906,0,0,0,-1052.4615,-9,3,3,2021,12,0,37,0,1,0,0,14.183423,14.183423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,72,151875.38,-99498.758,128277.53,0,13282.693,0,1392.4479 +1669,2082,3651,-9,3649,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0660267,8.0844316,0,0,0,-937.67114,0,3,3,2021,11,0,39,30,1,0,0,9.5970955,9.5970955,.05,.05,0,0,0,0,0,0,1,1,0,2.6920199,0,38.32,62.13,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,1281,-23530.459,-104705.65,99297.398,94392.977,0,0,917.91522 +1670,2083,3652,-9,3655,3653,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.0029,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3653,3655,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4242945,9.1369276,0,7,0,12.694942,0,-9,-9,2021,9,0,40,40,1,1,0,25.09971,25.09971,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,53.98,45.34,8,1,1,0,0,1,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3654,-9,3655,3653,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5579,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3655,3653,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3821816,7.6303139,0,16,0,-63.400063,0,2,2,2021,12,0,22,22,1,0,0,8.5314617,8.5314617,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,45.34,51,56,6.666666666666667,1,1,0,0,8,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1671,2084,3656,-9,3658,3657,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.5825,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1671,2084,3657,3658,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.1463823,7.9399467,0,8,6,-43.105297,0,3,-9,2021,11,2,45,40,1,2,0,10.673003,10.673003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.54,56.37,56.01,27.43,6.666666666666667,4,2,0,0,9,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1671,2084,3658,3657,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.5447674,8.1012735,0,8,-6,-61.70018,0,2,2,2021,9,1,37,40,1,1,0,15.571145,15.571145,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.01,27.43,35.54,56.37,8.333333333333334,1,1,0,0,7,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1672,2085,3659,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1084.0211,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,238,123610.97,0,0,0,0,0,443.03165 +1673,2086,3660,3661,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6422386,8.3834963,0,4,-1,39.358395,0,2,1,2021,9,0,45,50,1,0,0,13.724841,13.724841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,39.99,55.83,8.333333333333334,1,1,0,0,10,6,5,1,340,-102957.95,54494.148,159982.59,141187.72,47072.75,0,3039.2175 +1673,2086,3661,3660,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.1306114,7.807302,0,4,1,-62.106606,0,-9,-9,2021,8,0,42,42,1,0,0,7.7707405,7.7707405,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.99,55.83,51.39,59.18,6.666666666666667,1,1,0,0,5,6,5,1,340,-102957.95,54494.148,159982.59,141187.72,47072.75,0,3039.2175 +1674,2087,3662,3663,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.8747711,6.8651891,0,40,-5,-114.96947,0,2,3,2021,12,0,12,12,1,0,0,7.8032579,7.8032579,0,0,0,0,0,0,0,42,1,0,1,0,0,56.94,43.99,59.62,35.76,6.666666666666667,1,1,0,0,7,10,4,0,1503.5,238679.28,-44325.52,298420.63,109920.89,0,1075.6189,3158.6311 +1674,2087,3663,3662,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.3121729,8.141346,0,11,5,-78.378723,0,2,2,2021,13,1,40,40,1,1,0,11.174582,11.174582,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.62,35.76,56.94,43.99,6.666666666666667,1,1,0,0,11,10,4,0,1503.5,238679.28,-44325.52,298420.63,109920.89,0,1075.6189,3158.6311 +1675,2088,3664,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.6137347,6.5044665,0,0,-877.86871,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5765462,6.4251437,64.96000000000001,40.38,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2571,206273.06,21593.021,0,0,0,0,1352.4408 +1676,2089,3665,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.1570301,8.741622,0,0,0,-1033.0907,0,2,2,2021,13,2,30,38,1,2,0,28.466398,28.466398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,767,545414.63,213885,0,0,0,0,3032.9248 +1677,2090,3666,3667,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1662016,6.4881015,9,-6,-73.685089,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0742249,6.4436154,52.64,36.51,59.04,48.6,8.333333333333334,1,1,0,0,0,13,2,1,162,1438447.9,659250.5,404474.44,0,0,0,1319.708 +1677,2090,3667,3666,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.3473725,6.8714838,9,6,-125.06285,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9047356,6.6685967,59.04,48.6,52.64,36.51,8.333333333333334,1,1,0,0,0,13,2,1,162,1438447.9,659250.5,404474.44,0,0,0,1319.708 +1678,2091,3668,3669,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.3341999,7.3440847,0,12,-7,-10.731716,0,-9,-9,2021,15,4,19,23,1,4,0,10.769128,10.769128,0,0,0,0,0,0,0,0,1,1,0,.13166212,0,45.91,59.89,54.97,47.63,1.666666666666667,1,1,0,0,12,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1678,2091,3669,3668,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.8665962,9.0872326,0,12,7,-13.312158,0,-9,-9,2021,8,0,40,55,1,0,0,15.551289,15.551289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.97,47.63,45.91,59.89,6.666666666666667,1,1,0,0,12,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1678,2091,3670,-9,3668,3669,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6889,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1679,2092,3671,3672,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.0392184,7.240571,10,5,70.51844,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,5.7827735,7.412859,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,8,13,3,1,371,885796.75,443858.38,256541.13,0,1110.6777,0,2578.9014 +1679,2092,3672,3671,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9933481,7.0310588,0,10,-5,49.56572,0,3,3,2021,6,0,18,20,1,0,0,8.7041636,8.7041636,0,0,0,0,0,0,0,0,0,0,0,6.210557,0,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,9,13,3,1,371,885796.75,443858.38,256541.13,0,1110.6777,0,2578.9014 +1679,2093,3673,-9,3672,3671,1,0,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-1138.9941,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,5,13,1,1,966,108723.96,0,0,0,0,0,270.70258 +1680,2094,3674,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.470911,8.35079,0,0,0,-1209.8564,0,3,2,2021,15,5,16,20,1,5,0,21.197086,21.197086,.05,.05,0,0,0,0,0,2,1,1,0,3.9092116,0,52.81,38.08,-9,-9,5,1,1,0,0,7,8,4,1,243,418584.41,249767.95,248921.64,0,0,0,2050.4888 +1681,2095,3675,3678,-9,-9,1,0,27,1,2,0,2,2,-9,0,5,7.2452059,7.2535057,0,5,-1,-8.6839685,0,-9,-9,2021,24,10,26,26,1,10,0,8.4968185,8.4968185,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25,67.38,54.69,57.47,10,1,1,0,0,10,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3676,-9,3675,3678,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-829.93866,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3677,-9,3675,3678,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.71387,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3678,3675,-9,-9,1,1,28,1,2,0,2,2,-9,0,5,8.5434074,8.6632633,0,5,1,-42.436707,0,-9,-9,2021,6,0,60,44,1,0,0,8.782011,8.782011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,25,67.38,10,1,1,0,0,9,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1682,2096,3679,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9707012,7.9182711,6.075737,0,0,-899.94507,0,3,2,2021,10,0,36,36,1,0,0,9.2485104,9.2485104,0,0,0,0,0,0,0,0,0,0,0,0,5.7984395,50.91,46.32,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,697,179402.66,0,143746.55,0,0,870.96045,1040.4248 +1683,2097,3680,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,7.1585665,7.4527764,0,0,0,-951.50153,-9,3,3,2021,8,1,28,0,1,1,0,5.0219331,5.0219331,0,0,0,0,0,0,0,0,1,1,0,0,0,59.39,21.77,-9,-9,5,4,2,0,0,9,8,3,0,456,187699.8,0,214922.94,0,0,0,874.2334 +1683,2098,3681,-9,3680,-9,1,0,25,0,0,0,2,2,-9,0,4,6.7378721,6.7095375,0,0,0,-1046.9155,-9,2,-9,2021,18,4,16,0,1,4,1,5.6536384,5.6536384,0,0,0,0,0,0,0,0,1,1,0,0,0,39.07,56.08,-9,-9,5,2,3,0,0,5,8,2,0,620,-23084.602,0,0,0,0,0,1406.1714 +1684,2099,3682,3683,-9,-9,1,0,30,0,0,0,1,1,-9,1,2,8.3170824,8.6229439,0,3,4,-40.832527,0,-9,-9,2021,11,1,46,45,1,1,0,12.575599,12.575599,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.61,48.17,52.13,57.22,8.333333333333334,1,1,0,0,2,7,5,1,1022.5,151740.97,94919.359,333112.56,216090.47,7877.0869,0,4042.4524 +1684,2099,3683,3682,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.5129957,8.4669666,0,3,-4,21.597366,0,1,2,2021,12,1,43,42,1,1,0,10.750485,10.750485,.05,.05,0,0,0,0,0,0,1,1,0,5.3661098,0,52.13,57.22,40.61,48.17,6.666666666666667,1,1,0,0,5,7,5,1,1022.5,151740.97,94919.359,333112.56,216090.47,7877.0869,0,4042.4524 +1685,2100,3684,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1513872,8.2813311,0,0,0,-929.37207,-9,2,1,2021,3,0,38,0,1,0,0,11.26128,11.26128,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,14,9,4,0,1842,575771.75,333042.09,0,0,0,0,2405.2383 +1686,2101,3685,-9,3688,3687,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3057,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3686,-9,3688,3687,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3687,3688,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.124753,8.0049944,0,18,2,169.70398,0,2,2,2021,19,7,43,40,1,7,0,9.8602638,9.8602638,0,0,0,0,0,0,0,0,1,0,1,1.2289275,0,34.55,59.61,32.47,43.58,6.666666666666667,1,1,0,0,13,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3688,3687,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,0,0,0,19,-2,15.33515,0,2,1,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,.69131303,0,32.47,43.58,34.55,59.61,1.666666666666667,1,1,0,0,4,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1687,2102,3689,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1029.2487,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,5.9705181,0,49.528442,0,1,1,0,0,0,56,42,-9,-9,8,1,1,0,0,0,4,1,1,481,-18620.51,0,0,0,0,0,840.04364 +1688,2103,3690,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,6.481607,6.4662652,5.8288093,0,0,-1111.8274,0,2,2,2021,6,0,6,10,1,0,0,8.9268541,8.9268541,0,0,0,0,0,0,0,0,1,1,0,5.7249398,5.7657604,60.12,54.8,-9,-9,10,1,1,0,0,12,13,2,1,1786,207926.45,72432.563,0,0,0,0,1601.8644 +1689,2104,3691,3692,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,5.5873332,5.6659698,23,19,67.514633,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5974631,0,48.45,57.49,43.43,41.1,5,2,3,0,0,5,8,2,0,432,2705442,478267.94,1846284.5,0,0,0,1521.511 +1689,2104,3692,3691,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,4.3720717,4.5071473,12,-19,-64.873802,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7850404,0,43.43,41.1,48.45,57.49,6.666666666666667,2,3,1,0,0,8,2,0,432,2705442,478267.94,1846284.5,0,0,0,1521.511 +1690,2105,3693,3694,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.68505,7.9904041,54,3,43.619606,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5204105,49.32,39.55,58.08,43.46,8.333333333333334,1,1,0,0,0,8,3,1,739.5,664364.13,316511.44,309697.56,0,0,0,2384.239 +1690,2105,3694,3693,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-173.16901,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.08,43.46,49.32,39.55,8.333333333333334,1,1,0,0,0,8,3,1,739.5,664364.13,316511.44,309697.56,0,0,0,2384.239 +1691,2106,3695,3696,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6307325,8.9161863,0,9,1,6.5936661,0,3,2,2021,10,0,50,45,1,0,0,11.949894,11.949894,.05,.05,0,0,0,0,0,0,0,0,0,6.051487,0,53.21,39.5,47.06,36.87,5,1,1,0,0,10,4,5,1,1011,441646.31,125877.49,307829.06,0,0,0,4040.7383 +1691,2106,3696,3695,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.3430281,8.1507607,0,9,-1,70.297638,0,3,3,2021,12,3,22,40,1,3,0,20.624304,20.624304,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.06,36.87,53.21,39.5,8.333333333333334,1,1,0,0,10,4,5,1,1011,441646.31,125877.49,307829.06,0,0,0,4040.7383 +1692,2107,3697,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-951.20563,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3423123,0,57.16,56.15,-9,-9,10,1,1,0,0,9,4,1,0,1050,46206.77,0,84109.578,10559.718,0,0,-114.40248 +1693,2108,3698,-9,3701,3699,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.02209,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3699,3701,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.8528309,8.7244205,7.6242466,3,5,38.301361,0,3,2,2021,10,0,42,39,1,0,0,16.273653,16.273653,.05,.05,.05,0,0,0,0,0,1,1,0,8.0935221,0,57.16,56.15,48.87,58.55,10,1,1,0,0,12,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3700,-9,3701,3699,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.15643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3701,3699,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3115926,7.0056782,0,3,-5,49.46175,0,2,2,2021,12,0,20,20,1,0,0,10.12912,10.12912,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,10,1,1,0,0,8,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2109,3702,-9,3701,3699,1,0,19,0,2,0,2,2,-9,0,3,8.1710024,7.7839246,0,0,0,-918.47229,0,2,2,2021,17,4,65,-9,1,4,1,6.3119221,6.3119221,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.04,33.93,-9,-9,5,1,1,0,0,2,9,4,0,540,177700.06,58661.961,0,0,13996.758,0,2746.269 +1694,2110,3703,3704,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.8442879,6.503521,53,0,25.527187,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.3720465,0,0,1,1,0,0,7.074718,65.54000000000001,33.23,58.68,36.29,8.333333333333334,1,1,0,0,4,6,4,1,1989,1072764.8,516466.94,224598.92,0,4500.6113,0,3702.9424 +1694,2110,3704,3703,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.4088469,7.8069324,53,0,-57.443714,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2032051,58.68,36.29,65.54000000000001,33.23,10,1,1,0,0,0,6,4,1,1989,1072764.8,516466.94,224598.92,0,4500.6113,0,3702.9424 +1695,2111,3705,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2033892,8.1738186,1.9505231,0,0,-923.85101,0,3,3,2021,13,2,39,39,1,2,0,11.896375,11.896375,.05,.05,0,0,0,0,0,0,0,0,0,0,1.8848042,48.54,54.5,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1218,66203.977,116508.75,111694.47,40113.535,-849.8208,0,2080.8567 +1695,2112,3706,-9,-9,3705,1,1,31,0,0,0,2,2,-9,0,3,7.6398568,7.5360432,0,0,0,-1052.8961,0,-9,3,2021,15,3,39,39,1,3,1,7.2835083,7.2835083,.05,.05,0,0,0,0,0,0,0,0,0,5.1150355,0,34.22,59.96,-9,-9,5,1,1,0,0,11,2,3,1,207,66800.875,18420.848,0,0,0,0,758.45557 +1696,2113,3707,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8785524,7.5492263,0,0,-1086.0808,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5250201,7.9092731,65.37,35.92,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,516,370189.19,312682.88,66907.539,64152.641,0,0,433.20435 +1697,2114,3708,3709,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,7.474762,8.5103054,8.1582479,55,1,78.410149,0,3,3,2021,9,0,23,22,1,0,0,9.0544996,9.0544996,0,0,0,1,0,0,0,74.5,1,1,0,0,8.036952,55.36,51.57,52.21,15.52,8.333333333333334,1,1,0,0,10,2,4,1,1242,628987.88,242633.16,192655.94,0,0,-1281.877,3287.6147 +1697,2114,3709,3708,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,55,-1,137.01279,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,13.331369,0,0,1,1,0,0,0,52.21,15.52,55.36,51.57,6.666666666666667,1,1,0,0,0,2,4,1,1242,628987.88,242633.16,192655.94,0,0,-1281.877,3287.6147 +1698,2115,3710,3711,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.0168328,5.2983913,4,-8,211.92372,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0607014,46.05,35.83,52.99,30.14,6.666666666666667,1,1,0,0,0,9,2,1,809.5,423336.81,4599.3828,287457.13,0,0,0,2328.1309 +1698,2115,3711,3710,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.2663293,5.0695848,4,8,94.570953,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,4.8812842,5.144207,52.99,30.14,46.05,35.83,10,1,1,0,0,0,9,2,1,809.5,423336.81,4599.3828,287457.13,0,0,0,2328.1309 +1699,2116,3712,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8439655,8.0912428,0,0,0,-1016.9019,0,1,2,2021,15,6,40,36,1,6,0,6.6725774,6.6725774,0,0,0,0,0,0,0,7,0,0,0,0,0,45.79,52.25,-9,-9,6.666666666666667,1,1,0,0,13,8,3,1,161,100084.13,116145.05,0,0,0,0,1672.6434 +1700,2117,3713,3714,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.9176178,7.611763,15,-2,33.548237,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.4192038,54.37,54.8,50.85,49.73,8.333333333333334,1,1,0,0,9,7,3,1,633,1884637.5,-8693.5068,359615.88,0,0,0,1262.7347 +1700,2117,3714,3713,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,5.8050847,5.9571276,15,2,54.365383,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.3221951,5.9025154,50.85,49.73,54.37,54.8,8.333333333333334,1,1,0,0,2,7,3,1,633,1884637.5,-8693.5068,359615.88,0,0,0,1262.7347 +1701,2118,3715,-9,3716,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1205.3054,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1701,2118,3716,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,3,0,0,0,0,0,-933.0816,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.09,39.67,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1701,2118,3717,-9,3716,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.4063,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1702,2119,3718,3719,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.0195341,8.1356974,11,6,82.228294,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5075498,7.984911,48.87,58.55,60.98,33.27,8.333333333333334,1,1,0,0,11,2,5,1,1033.5,933126.69,540756.88,435371.5,57021.012,3115.9094,0,4135.5732 +1702,2119,3719,3718,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.8209124,8.8544731,0,33,-6,.89062744,0,1,1,2021,8,1,37,37,1,1,0,22.038792,22.038792,0,0,0,0,0,0,0,0,0,0,0,0,0,60.98,33.27,48.87,58.55,8.333333333333334,1,1,0,0,13,2,5,1,1033.5,933126.69,540756.88,435371.5,57021.012,3115.9094,0,4135.5732 +1702,2120,3720,-9,3719,3718,1,0,27,0,0,0,1,1,-9,0,4,8.8904514,8.9133158,0,0,0,-921.44696,-9,2,2,2021,7,0,48,0,1,0,1,14.297483,14.297483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,390,73049.227,-15904.759,0,0,0,1207.0708,1746.8473 +1703,2121,3721,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.9711185,8.1269569,0,0,-975.22906,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1430402,8.1128569,53.6,36.52,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,238,955821.75,801984,179265.55,0,0,0,1984.3674 +1704,2122,3722,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.4859252,5.6814761,0,0,-1086.005,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,2.4287045,0,0,1,1,0,7.3960919,5.1984334,52,45,-9,-9,8,1,1,0,0,0,11,2,0,403,140049.2,0,173682.7,0,0,0,746.23755 +1705,2123,3723,-9,3725,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7037,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1705,2123,3724,-9,3725,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.00201,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1705,2123,3725,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.6572733,7.872097,3.9511127,0,0,-982.03741,0,2,2,2021,6,0,30,0,1,0,0,7.8755527,7.8755527,0,0,0,0,0,0,0,0,1,1,0,4.4995418,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1706,2124,3726,-9,3728,3730,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.7555,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3727,-9,3728,3730,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.9482,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3728,3730,-9,-9,1,0,27,1,3,0,2,2,0,0,4,0,0,0,6,-5,-.69832689,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3729,-9,3728,3730,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.98279,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3730,3728,-9,-9,1,1,32,1,3,0,1,1,-9,0,5,7.9135942,8.0094309,0,6,5,-9.3732872,0,1,1,2021,7,0,33,60,1,0,0,8.7584848,8.7584848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,3,4,0,1,6,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1707,2125,3731,3732,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.3915029,7.4850616,38,-5,-102.08853,0,2,-9,2021,9,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5085831,57.33,53.46,43.89,55.28,8.333333333333334,1,1,1,0,10,11,4,1,316,329110.66,0,120120.13,0,0,0,2367.8516 +1707,2125,3732,3731,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.9135165,8.0461855,5.9370317,37,5,-93.60434,0,3,3,2021,8,0,37,37,1,0,0,9.0754471,9.0754471,0,0,0,0,0,0,0,0,0,0,0,0,5.9032125,43.89,55.28,57.33,53.46,8.333333333333334,1,1,0,0,8,11,4,1,316,329110.66,0,120120.13,0,0,0,2367.8516 +1708,2126,3733,3734,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.743556,7.6635923,0,6,0,82.611107,0,-9,-9,2021,24,11,49,45,1,11,0,5.0603504,5.0603504,0,0,0,0,0,0,0,7,0,0,0,0,0,35.2,50.61,39.08,47.28,1.666666666666667,1,1,0,0,9,1,4,1,594.5,744499.38,-54835.551,178457.72,64948.773,0,0,2092.7212 +1708,2126,3734,3733,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,7.594821,7.8100891,0,6,0,-185.64919,0,2,2,2021,12,0,20,20,1,0,0,12.18438,12.18438,0,0,0,0,0,0,0,7,0,0,0,0,0,39.08,47.28,35.2,50.61,3.333333333333333,1,1,0,0,9,1,4,1,594.5,744499.38,-54835.551,178457.72,64948.773,0,0,2092.7212 +1709,2127,3735,3736,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1173048,7.3380122,0,6,7,67.514519,0,2,-9,2021,10,0,35,8,1,0,0,4.7729516,4.7729516,0,0,0,0,0,0,0,0,1,1,0,0,0,54.7,46.42,53,57,6.666666666666667,1,1,0,0,8,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3736,3735,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.5579133,7.4968605,0,6,-7,-63.641815,0,-9,-9,2021,12,0,30,32,1,0,0,6.6853108,6.6853108,0,0,0,0,0,0,0,0,1,1,0,0,0,53,57,54.7,46.42,8.333333333333334,1,1,0,0,7,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3737,-9,3736,3735,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-910.50116,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3738,-9,3736,3735,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.7474,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1710,2128,3739,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.8929644,9.2144632,7.9479527,0,0,-1065.4359,0,-9,-9,2021,6,0,96,40,1,0,0,7.2426085,7.2426085,.05,.05,0,0,0,0,0,0,1,1,0,6.3781857,8.0267658,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1580,100.40409,-142313.92,0,0,0,0,3559.8733 +1711,2129,3740,3741,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1980124,8.0661182,0,34,1,-93.095222,-9,3,3,2021,7,0,35,0,1,0,0,6.8649912,6.8649912,.05,.05,0,0,0,0,0,0,0,0,0,1.7996235,0,54.1,50.73,57.33,53.46,10,1,1,0,0,9,2,4,1,944,661191.31,636127.63,158683,0,0,0,1901.5105 +1711,2129,3741,3740,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0557737,8.4346075,7.2463956,34,-1,-201.40739,-9,2,2,2021,7,0,22,0,1,0,0,15.284191,15.284191,.05,.05,0,0,0,0,0,0,0,0,0,2.8143733,7.4545012,57.33,53.46,54.1,50.73,8.333333333333334,1,1,0,0,9,2,4,1,944,661191.31,636127.63,158683,0,0,0,1901.5105 +1712,2130,3742,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3709631,8.814599,0,0,0,-952.91766,0,1,1,2021,8,0,25,35,1,0,0,21.672441,21.672441,.05,.05,0,0,0,0,0,0,0,0,0,4.2445941,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,614,-143358.41,-13612.968,0,0,0,0,1943.5143 +1713,2131,3743,3744,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,0,0,0,2,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,98.518059,0,0,1,1,0,0,0,34.94,27.47,52,48,5,1,1,0,0,0,7,1,1,243,-37910.598,0,163031.91,152429.22,0,0,1355.5012 +1713,2131,3744,3743,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,7,0,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7327638,0,52,48,34.94,27.47,7,1,1,0,0,0,7,1,1,243,-37910.598,0,163031.91,152429.22,0,0,1355.5012 +1714,2132,3745,-9,3746,3747,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.6281,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1714,2132,3746,3747,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,7.3827505,7.1193328,0,3,8,91.876801,0,2,3,2021,7,0,22,0,1,0,0,10.647399,10.647399,.05,.05,0,0,0,0,0,0,1,1,0,8.0297403,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1714,2132,3747,3746,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.94485,8.9804182,0,3,-8,66.776443,0,-9,-9,2021,6,0,40,40,1,0,0,19.430983,19.430983,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1715,2133,3748,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1112.1454,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.21,35.62,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,6849,231029.39,0,0,0,1932.941,809.56921,2280.5896 +1716,2134,3749,-9,3751,3752,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6438,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3750,-9,3751,3752,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3851,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3751,3752,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.9738398,9.0400915,0,10,-14,-41.232201,0,1,2,2021,7,2,48,42,1,2,0,26.562286,26.562286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.91,56.22,50.23,49.8,10,1,1,0,0,6,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3752,3751,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.8046579,8.9199305,0,10,14,27.759436,0,-9,-9,2021,9,0,37,46,1,0,0,19.552675,19.552675,.05,.05,.05,0,0,0,0,0,0,0,0,4.8301592,0,50.23,49.8,54.91,56.22,8.333333333333334,1,1,0,0,5,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1717,2135,3753,3754,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.1835299,6.3213644,3.5892928,24,-2,-92.709373,0,-9,-9,2021,6,0,20,20,1,0,0,2.4474034,2.4474034,0,0,0,0,0,0,0,0,1,1,0,3.2494681,3.8473556,63.41,39.7,58.47,50.22,10,1,1,0,0,8,7,2,1,736.5,503834.75,122579.84,201108.03,0,0,0,1929.8563 +1717,2135,3754,3753,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7835584,7.1760664,25,2,-43.703201,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9095006,6.8354673,58.47,50.22,63.41,39.7,8.333333333333334,1,1,0,0,6,7,2,1,736.5,503834.75,122579.84,201108.03,0,0,0,1929.8563 +1718,2136,3755,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.3473692,7.9191566,5.1786027,0,0,-972.27435,0,2,3,2021,14,4,32,36,1,4,0,6.7574034,6.7574034,0,0,0,0,0,0,0,0,0,0,0,5.0393486,0,39.99,55.83,-9,-9,3.333333333333333,3,4,0,1,8,8,3,0,496,573578.06,0,374750.25,0,6917.9971,0,995.89978 +1719,2137,3756,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5073423,5.7109413,0,0,-817.39642,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.5804243,61.88,44.54,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,868,154149.45,0,136364.69,0,0,0,-1.73195 +1719,2138,3757,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.51642,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.2783833,0,0,1,1,0,0,0,48.82,28.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,189,-114562.97,0,72075.047,0,0,0,1031.5479 +1720,2139,3758,3759,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9793735,7.9524279,0,11,2,82.16877,0,3,2,2021,14,3,27,27,1,3,0,11.368954,11.368954,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,54.77,58.3,52.91,6.666666666666667,1,1,0,0,12,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1720,2139,3759,3758,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,8.4233608,8.1972532,0,11,-2,-66.126091,-9,-9,-9,2021,8,0,53,0,1,0,0,8.6414261,8.6414261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,50.93,54.77,8.333333333333334,1,1,0,0,13,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1720,2139,3760,-9,3758,3759,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.2911,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1721,2140,3761,-9,3762,-9,1,1,60,0,0,0,1,1,-9,1,2,0,0,0,0,0,-978.43866,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.92,38.3,-9,-9,0,1,1,0,1,0,11,1,1,675,382207.75,18568.51,206678.67,0,0,0,0 +1721,2141,3762,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-984.50427,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.75,21.54,-9,-9,0,1,1,0,1,0,11,1,1,413,196770.55,0,70780.961,0,0,0,1382.2684 +1722,2142,3763,3764,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.0640955,8.1794891,0,21,9,-125.22021,0,2,2,2021,14,2,38,48,1,2,0,10.828873,10.828873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.41,37.25,46.49,45.98,6.666666666666667,2,3,0,1,12,8,3,1,2103.5,299674.72,42455.691,284557.19,94835.734,0,0,2110.8284 +1722,2142,3764,3763,-9,-9,1,0,37,0,2,0,3,3,-9,0,3,0,0,0,12,0,97.054047,0,2,2,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.49,45.98,45.41,37.25,8.333333333333334,2,3,1,1,1,8,3,1,2103.5,299674.72,42455.691,284557.19,94835.734,0,0,2110.8284 +1723,2143,3765,3766,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4150572,8.7327805,0,25,-3,90.915367,-9,3,3,2021,6,0,37,0,1,0,0,16.654934,16.654934,0,0,0,0,0,0,0,0,0,0,0,2.3726718,0,52.04,51.55,57.16,56.15,1.666666666666667,1,1,0,0,13,4,5,1,542,421913.84,215105.16,540589.25,262911.5,51640.953,0,4983.4766 +1723,2143,3766,3765,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8681602,8.4736528,0,24,3,85.53714,-9,2,2,2021,8,0,40,0,1,0,0,26.580088,26.580088,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.04,51.55,8.333333333333334,1,1,0,0,12,4,5,1,542,421913.84,215105.16,540589.25,262911.5,51640.953,0,4983.4766 +1723,2144,3767,-9,3765,3766,1,1,21,0,0,0,2,2,-9,0,3,7.8468385,8.294425,0,0,0,-1156.4329,-9,2,2,2021,5,0,40,0,1,0,1,7.3500962,7.3500962,0,0,0,0,0,0,0,0,0,0,0,.53372377,0,54.62,53.53,-9,-9,1.666666666666667,1,1,0,0,13,4,4,1,757,12604.323,0,0,0,0,0,1905.1721 +1723,2145,3768,-9,3765,3766,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-938.40155,-9,2,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0567617,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,0,2,4,1,1,1352,-149803.13,0,0,0,0,0,-142.71815 +1724,2146,3769,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1727819,8.2496109,6.1172204,0,0,-1001.0687,0,3,3,2021,9,0,35,40,1,0,0,13.279882,13.279882,0,0,0,0,0,0,0,0,1,1,0,0,6.0105381,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,324,115675.76,0,80824.547,0,0,0,2129.6729 +1725,2147,3770,-9,3773,3772,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8278,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3771,-9,3773,3772,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.422,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3772,3773,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5465689,8.3273296,0,24,1,44.98724,0,3,3,2021,12,0,46,45,1,0,0,14.134471,14.134471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,64.88,40.49,47.75,6.666666666666667,1,1,0,0,9,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3773,3772,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1705208,8.0617952,0,26,-1,174.03217,0,1,3,2021,5,0,37,37,1,0,0,11.153075,11.153075,0,0,0,0,0,0,0,0,1,1,0,0,0,40.49,47.75,29.71,64.88,8.333333333333334,1,1,0,0,7,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2148,3774,-9,3773,3772,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-851.9588,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,855,0,0,0,0,0,0,0 +1725,2149,3775,-9,3773,3772,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1084.5166,-9,2,1,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,44.85,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,2487,0,0,0,0,0,0,-112.60229 +1726,2150,3776,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,8.1498823,8.3135672,0,0,-1102.0776,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1578684,8.1526442,43.57,24.7,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,2496,798519.44,647221.44,193327.03,0,0,0,2131.2073 +1727,2151,3777,-9,3778,3779,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.10309,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1727,2151,3778,3779,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,6.7893205,6.8281941,0,2,-2,-36.955402,0,-9,-9,2021,16,3,16,16,1,3,0,6.4012237,6.4012237,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,35.56,52.41,6.666666666666667,1,1,0,0,1,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1727,2151,3779,3778,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.8310404,7.9576325,0,2,2,2.522089,0,-9,-9,2021,28,10,33,34,1,10,0,8.2897558,8.2897558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.56,52.41,43.6,51.61,5,1,1,0,0,8,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1728,2152,3780,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4045324,8.5811272,0,0,0,-990.56171,0,2,3,2021,9,0,37,36,1,0,0,12.914615,12.914615,0,0,0,0,0,0,0,0,0,0,0,4.7100487,0,38.51,48.9,-9,-9,3.333333333333333,1,1,0,0,7,4,5,1,828,26405.434,201374.03,139085.11,168448.53,0,0,1591.4115 +1729,2153,3781,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.9312863,5.8500004,0,0,-1034.9512,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,.61087769,0,0,1,1,0,0,6.0821757,35.79,37.38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,280,218329.75,115587.84,72238.531,0,0,0,1409.5116 +1730,2154,3782,-9,3784,3785,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.11487,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3783,-9,3784,3785,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.4425,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3784,3785,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,7.8791194,7.7153678,0,11,-3,37.161831,0,2,2,2021,9,0,24,24,1,0,0,10.383981,10.383981,0,0,0,0,0,0,0,0,1,1,0,1.3676097,0,62,41.73,54.37,54.8,8.333333333333334,1,1,0,0,6,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3785,3784,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.579422,8.4242306,0,12,3,-53.168251,0,2,2,2021,10,0,56,62,1,0,0,9.6594181,9.6594181,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62,41.73,8.333333333333334,1,1,0,0,8,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1731,2155,3786,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.7948074,7.1956406,0,0,-1084.4723,-9,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,6.2519574,0,66.589096,0,1,1,0,5.4965448,7.1251502,27.2,27.24,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,729,-5144.6812,191563.25,0,0,0,0,2372.998 +1732,2156,3787,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.5905895,9.6945963,0,0,0,-1005.1572,0,1,2,2021,13,3,40,55,1,3,0,41.999191,41.999191,0,0,0,0,0,0,0,0,0,0,0,6.2402768,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,13,11,5,0,882,70593.898,0,0,0,0,0,12358.336 +1733,2157,3788,3789,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,9.2106438,9.1135559,0,8,1,-9.97509,0,2,2,2021,6,0,62,68,1,0,0,14.517066,14.517066,.05,.05,0,0,0,0,0,0,1,1,0,1.3465884,0,56.47,59.4,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1733,2157,3789,3788,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.6976342,7.8798838,0,8,-1,13.961921,0,2,2,2021,6,0,27,27,1,0,0,10.836921,10.836921,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.47,59.4,10,1,1,0,0,10,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1733,2157,3790,-9,3789,3788,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.7242,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1734,2158,3791,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.7472305,8.9618597,0,0,0,-977.7962,0,3,-9,2021,0,0,53,53,1,0,0,14.263228,14.263228,.05,.05,0,0,0,0,0,0,0,0,0,3.5938346,0,59.43,58.05,-9,-9,10,2,3,0,0,11,8,5,0,384,1398773.3,1449831.9,0,0,0,6254.4395,2929.7219 +1734,2159,3792,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.1697969,9.4992085,0,0,0,-1012.8741,0,2,2,2021,10,1,53,53,1,1,0,19.9277,19.9277,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,643,255266.72,-54428.113,360480.94,64107.977,0,0,4906.6807 +1734,2160,3793,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.6130209,8.3976116,0,0,0,-1053.7048,0,3,3,2021,21,6,42,45,1,6,0,15.154579,15.154579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.02,53.64,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,1458,534797.38,231431.88,266734,150321.5,0,0,2193.7444 +1734,2161,3794,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8627357,8.8586588,0,0,0,-985.96973,0,2,2,2021,10,0,40,40,1,0,0,17.825525,17.825525,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,10,8,5,0,108,575257.81,95328.461,649562.56,257854.94,11231.396,0,2825.4055 +1735,2162,3795,-9,3796,3797,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-986.26508,-9,2,1,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.36,59.26,-9,-9,1.666666666666667,1,1,0,0,0,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2162,3796,3797,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,7.3105946,7.4336672,0,29,0,-35.450584,0,2,2,2021,12,1,18,20,1,1,0,10.497155,10.497155,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.56,36.43,45.32,54.77,8.333333333333334,1,1,0,0,8,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2162,3797,3796,-9,-9,1,1,59,0,2,0,1,1,-9,0,3,8.8982944,9.2128429,0,29,9,-11.487648,0,2,2,2021,16,5,42,45,1,5,0,23.607718,23.607718,.05,.05,0,0,0,0,0,0,1,1,0,4.0467539,0,45.32,54.77,53.56,36.43,8.333333333333334,1,1,0,0,8,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2163,3798,-9,3796,3797,1,0,24,0,2,0,2,2,0,0,2,0,0,0,0,0,-976.59125,-9,2,1,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.95,49.79,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,339.5,82528.539,0,0,0,3813.6733,0,160.08023 +1735,2163,3799,-9,3798,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.23621,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,339.5,82528.539,0,0,0,3813.6733,0,160.08023 +1735,2164,3800,-9,3796,3797,1,0,22,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1014.5015,0,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,1,13,1,1,873,6997.6841,0,0,0,0,0,134.74313 +1736,2165,3801,-9,3802,3803,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.88104,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3802,3803,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.5922031,8.6993685,0,10,-4,-68.794739,0,2,2,2021,5,0,28,30,1,0,0,21.810417,21.810417,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3803,3802,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.3677616,8.4383831,0,10,4,5.0776176,0,-9,-9,2021,6,0,40,40,1,0,0,13.260628,13.260628,.05,.05,0,0,0,0,0,0,1,1,0,7.8529735,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,0,0,14,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3804,-9,3802,3803,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.18799,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1737,2166,3805,3806,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.1092672,7.965806,0,7,2,-7.6506224,0,2,-9,2021,1,0,40,43,1,0,0,10.937011,10.937011,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.26,55.59,8.333333333333334,1,1,0,0,6,9,4,0,738,3812.1875,65349.461,195975.59,166530.44,0,0,2463.8445 +1737,2166,3806,3805,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.9193411,8.2061949,0,7,-2,9.0282288,0,2,2,2021,14,5,43,45,1,5,0,7.1648021,7.1648021,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26,55.59,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,0,738,3812.1875,65349.461,195975.59,166530.44,0,0,2463.8445 +1738,2167,3807,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.2229395,7.733644,0,0,-861.48987,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3263669,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,14,12,3,1,323,601652.81,239285.47,231806.42,0,0,0,-47.749203 +1739,2168,3808,-9,3809,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1026.8306,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,3,1,346,84184.469,-19457.742,0,0,0,0,809.63403 +1739,2168,3809,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.9967704,8.0721169,5.9758348,0,0,-1043.0973,0,2,2,2021,6,0,28,63,1,0,0,11.116565,11.116565,.05,.05,0,0,0,0,0,0,1,1,0,5.905931,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,346,84184.469,-19457.742,0,0,0,0,809.63403 +1739,2169,3810,-9,3809,-9,1,0,18,0,1,0,2,2,1,0,3,7.1101017,7.1252909,0,0,0,-1028.2871,-9,2,-9,2021,6,0,10,0,1,0,1,14.922279,14.922279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,530,222352.72,95320.906,0,0,0,0,476.97043 +1740,2170,3811,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.9622641,8.8799295,0,0,0,-975.36261,0,-9,-9,2021,10,0,40,40,1,0,0,29.387283,29.387283,.05,.05,0,0,0,0,0,0,1,1,0,.67838997,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,158,446626.03,145423.19,222836.77,131170.05,10577.596,0,3608.3879 +1741,2171,3812,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0823545,6.3285141,0,0,-1119.9169,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0761681,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,186,-81777.883,-84531.016,0,0,0,0,1025.4202 +1742,2172,3813,3814,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,8.3722773,8.6144314,19,4,-71.323235,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.6977611,8.5331211,57.06,57.76,55.19,54.26,10,1,1,0,0,11,1,4,1,490,70173.492,-57436.52,91093.75,0,6758.6641,0,3369.3203 +1742,2172,3814,3813,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.7908783,6.8544707,5.1854892,19,-4,72.665733,0,3,2,2021,9,0,39,35,1,0,0,2.6862817,2.6862817,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5912118,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,10,1,4,1,490,70173.492,-57436.52,91093.75,0,6758.6641,0,3369.3203 +1743,2173,3815,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.5715394,7.371707,8,5,-121.95049,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.3568611,7.5149245,57.16,56.15,58.15,52.91,10,1,1,0,0,2,4,3,1,404,912637.31,277464.97,286660.03,0,0,0,88.263893 +1743,2174,3816,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.4798036,7.4865842,8,-5,66.911018,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2896132,7.3765759,58.15,52.91,57.16,56.15,10,1,1,0,0,6,4,3,1,531,756242.25,417896.03,162318.13,0,0,0,1843.6895 +1744,2175,3817,-9,3818,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4898577,8.294569,0,0,0,-978.31677,-9,3,2,2021,19,7,37,0,1,7,0,12.488672,12.488672,.05,.05,0,0,0,0,0,27,1,1,0,0,0,29.22,52.63,-9,-9,3.333333333333333,1,1,0,1,11,8,4,1,1009,1284714.3,782895,352957.72,0,1027.5726,0,2361.2217 +1744,2176,3818,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.6350365,5.574513,0,0,-1048.8729,-9,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,7.1173739,24.317177,66.288841,0,1,1,0,0,5.8839912,40.91,24.75,-9,-9,5,1,1,0,0,0,8,2,1,1084,802183,0,648042.31,0,0,0,1726.9282 +1745,2177,3819,3820,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.5619955,8.1816835,0,2,2,-38.193958,0,3,3,2021,6,0,60,65,1,0,0,8.8468971,8.8468971,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,42.45,49.2,8.333333333333334,1,1,0,0,13,2,4,1,419.5,2552981,791237.88,466806,0,0,0,2829.4375 +1745,2177,3820,3819,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,6.5622888,6.9751663,0,2,-2,-38.174656,0,3,3,2021,14,2,10,20,1,2,0,8.978384,8.978384,0,0,0,0,0,0,0,0,0,0,0,6.1241655,0,42.45,49.2,52,54.51,8.333333333333334,1,1,0,0,13,2,4,1,419.5,2552981,791237.88,466806,0,0,0,2829.4375 +1746,2178,3821,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.4222531,6.4440212,0,0,-1034.9249,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3916297,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,760,298196.16,0,256033.47,0,0,0,1486.3599 +1747,2179,3822,3823,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.6634183,7.9637542,48,-2,-21.486607,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.0023556,53.81,53.56,52.23,55.6,8.333333333333334,1,1,0,0,10,12,3,1,662.5,1081313.8,654240.25,241122.94,0,4433.4121,0,3693.3511 +1747,2179,3823,3822,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2923779,7.2390022,49,2,-83.085335,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2387938,52.23,55.6,53.81,53.56,6.666666666666667,1,1,0,0,4,12,3,1,662.5,1081313.8,654240.25,241122.94,0,4433.4121,0,3693.3511 +1748,2180,3824,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.7401943,6.6353965,0,0,0,-1000.9724,0,2,2,2021,7,0,16,16,1,0,0,7.1881394,7.1881394,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,4,2,0,0,5,9,2,0,333,4740.4268,0,0,0,0,0,384.47949 +1749,2181,3825,-9,3828,3826,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1034.1083,-9,1,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3826,3828,-9,-9,1,1,59,0,2,0,2,2,-9,0,3,7.4740772,7.0621214,0,11,14,169.66592,0,3,3,2021,10,0,40,45,1,1,0,4.4749317,4.4749317,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,52,57,7,2,3,0,0,1,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3827,-9,3828,3826,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.2538,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3828,3826,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,0,0,0,11,-14,7.4781671,0,1,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,57,51,49,10,2,3,0,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2182,3829,-9,3828,3826,1,0,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-1043.7848,-9,1,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,-9,-9,5,2,3,1,0,0,8,1,1,318,15458.068,0,0,0,0,-429.5213,0 +1749,2183,3830,-9,3828,3826,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1009.079,-9,1,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,1.3410527,0,1,1,0,0,0,33.49,64.26000000000001,-9,-9,5,2,3,0,0,0,8,1,1,4830,-21958.539,0,0,0,0,368.03214,0 +1750,2184,3831,3832,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0802479,7.5944118,0,12,-4,-17.190456,0,2,2,2021,25,11,28,28,1,11,0,12.370735,12.370735,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.9,63.58,48.87,58.55,3.333333333333333,1,1,0,0,8,12,4,1,797,888929.88,758468,233076.28,66705.766,4633.3525,1529.2156,3462.3621 +1750,2184,3832,3831,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.3790092,8.2814274,0,12,4,-79.351578,0,-9,-9,2021,13,2,39,39,1,2,0,14.065221,14.065221,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,20.9,63.58,5,1,1,0,0,13,12,4,1,797,888929.88,758468,233076.28,66705.766,4633.3525,1529.2156,3462.3621 +1751,2185,3833,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.0955815,7.3025799,0,0,-977.95233,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.3604708,0,23.173487,0,1,1,0,3.7180541,7.207027,65.42,30.35,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,573,33990.02,8975.6016,0,0,0,0,1635.6597 +1752,2186,3834,-9,3836,3835,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.1444,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1752,2186,3835,3836,-9,-9,1,1,25,1,1,0,2,2,-9,0,3,8.0720959,8.172637,0,2,3,21.150059,0,-9,-9,2021,9,0,40,40,1,0,0,9.0617819,9.0617819,0,0,0,0,0,0,0,0,1,0,1,4.3004403,0,40.65,57.36,41.75,37.95,8.333333333333334,1,1,0,0,7,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1752,2186,3836,3835,-9,-9,1,0,22,1,1,0,2,2,-9,0,2,0,0,0,2,-3,142.58572,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.75,37.95,40.65,57.36,5,1,1,1,1,4,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1753,2187,3837,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1036.5425,0,3,3,2021,31,10,0,0,4,10,0,0,0,0,0,0,1,0,14.762019,0,0,1,1,0,0,0,39.4,19.18,-9,-9,0,1,1,0,0,0,1,1,0,406,154147.92,0,0,0,0,0,1537.8303 +1754,2188,3838,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.03638,0,-9,-9,2021,11,1,0,36,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.23,55.95,-9,-9,6.666666666666667,1,1,1,1,3,9,1,1,593,151150.08,0,38468.121,25925.455,0,0,0 +1755,2189,3839,3840,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,7,-12,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,48.19,15.79,23.83,32.49,8.333333333333334,1,1,1,0,0,12,1,0,1829.5,-27111.043,0,0,0,0,0,1551.6992 +1755,2189,3840,3839,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,0,0,7,12,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2894516,0,0,1,1,0,0,0,23.83,32.49,48.19,15.79,6.666666666666667,1,1,0,0,1,12,1,0,1829.5,-27111.043,0,0,0,0,0,1551.6992 +1756,2190,3841,3842,-9,-9,1,0,44,0,1,0,3,3,-9,0,1,6.9220958,6.7277493,0,7,1,9.3326645,0,2,2,2021,33,11,16,16,1,11,0,6.7048745,6.7048745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,42.05,27,0,1,1,0,0,10,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3842,3841,-9,-9,1,1,43,0,1,0,2,2,-9,0,1,8.1057281,8.2258472,0,7,-1,82.016914,0,2,2,2021,11,1,36,37,1,1,0,14.106154,14.106154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.05,27,16.04,23.99,5,1,1,0,0,10,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3843,-9,3841,3842,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.9779,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3844,-9,3841,3842,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-924.8454,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1757,2191,3845,3848,-9,-9,1,0,34,0,2,0,1,1,-9,1,3,8.3010521,8.4897242,0,8,-1,-16.684725,0,-9,-9,2021,9,0,31,22,1,0,0,11.326664,11.326664,.05,.05,0,0,0,0,0,0,1,1,0,2.4576662,0,42.01,57.81,49.04,55.86,8.333333333333334,1,1,0,0,12,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3846,-9,3845,3848,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-775.7937,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3847,-9,3845,3848,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.72937,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3848,3845,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.5823793,8.4879084,0,8,1,-82.314102,0,-9,-9,2021,9,1,40,38,1,1,0,16.61528,16.61528,.05,.05,0,0,0,0,0,0,1,1,0,1.1311269,0,49.04,55.86,42.01,57.81,8.333333333333334,1,1,0,0,15,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1758,2192,3849,3850,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0232687,6.9524679,47,-1,46.150211,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.8893245,12.976892,25.559135,0,1,1,0,2.3940456,6.8693466,58.32,50.22,60.12,54.8,10,1,1,0,0,0,9,3,1,482.5,1385183.3,544560.38,486627.19,0,0,0,2719.7483 +1758,2192,3850,3849,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.880281,7.609242,47,1,2.9146998,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48961812,7.6950836,60.12,54.8,58.32,50.22,8.333333333333334,1,1,0,0,0,9,3,1,482.5,1385183.3,544560.38,486627.19,0,0,0,2719.7483 +1759,2193,3851,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,5.8978343,5.7657003,0,0,-1018.7032,0,-9,-9,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6637716,13.92,60.06,-9,-9,5,1,1,0,0,5,4,2,1,2772,473940.44,262259.31,333993.84,0,0,0,1543.9447 +1760,2194,3852,-9,3855,3853,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.62775,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3853,3855,-9,-9,1,1,64,0,2,0,2,2,-9,0,3,8.1465254,8.2906685,6.7517738,7,29,13.071317,0,3,-9,2021,10,0,1,43,1,0,0,534.47107,534.47107,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4885764,56.94,43.99,28.41,50.64,8.333333333333334,1,1,0,0,7,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3854,-9,3855,3853,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.2511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3855,3853,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.397862,7.6250677,0,7,-29,76.445412,0,2,2,2021,20,7,22,18,1,7,0,8.1405039,8.1405039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.41,50.64,56.94,43.99,1.666666666666667,1,1,0,0,9,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1761,2195,3856,3857,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.740952,5.8778639,6,4,-84.34993,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6097488,6.0125909,42.34,53.27,56.1,49.93,8.333333333333334,1,1,0,0,3,11,2,1,258,72438.664,0,0,0,0,0,1949.5918 +1761,2195,3857,3856,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1185751,7.3126359,6,-4,18.287766,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7549338,7.1167936,56.1,49.93,42.34,53.27,6.666666666666667,1,1,0,0,4,11,2,1,258,72438.664,0,0,0,0,0,1949.5918 +1762,2196,3858,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,7.9134941,8.0022707,0,0,0,-1018.6471,0,2,1,2021,8,0,30,55,1,0,0,10.513864,10.513864,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,136,672139.75,120870.27,315486.53,0,0,0,1084.4479 +1763,2197,3859,3860,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.801919,8.9904871,0,25,-4,-90.007553,0,2,2,2021,11,0,60,50,1,0,0,11.033837,11.033837,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,31.31,49.54,10,3,4,0,0,7,8,5,1,1650.5,543947,94032.75,388257.66,0,19000.332,2469.8738,3908.3303 +1763,2197,3860,3859,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.358027,7.5412354,0,25,4,2.5166316,0,-9,-9,2021,11,0,15,36,1,0,0,12.542598,12.542598,0,0,.05,0,0,0,0,7,1,1,0,0,0,31.31,49.54,54.37,54.8,8.333333333333334,1,1,0,0,7,8,5,1,1650.5,543947,94032.75,388257.66,0,19000.332,2469.8738,3908.3303 +1764,2198,3861,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-967.38739,0,-9,-9,2021,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90433025,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,288,90431.594,0,0,0,0,0,259.13403 +1765,2199,3862,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.7886114,8.6203079,0,6,-4,-160.492,0,2,2,2021,8,0,38,42,1,0,0,17.155298,17.155298,0,0,0,0,0,0,0,0,0,0,0,4.0257301,0,54.69,57.47,58.6,44.89,8.333333333333334,1,1,0,0,11,9,5,0,42,-97003.555,0,0,0,0,0,2046.7241 +1765,2200,3863,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.0997515,8.2751675,0,6,4,-14.201326,0,-9,-9,2021,7,0,38,38,1,0,0,11.968719,11.968719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.6,44.89,54.69,57.47,8.333333333333334,1,1,0,0,15,9,5,0,649,126117.54,125721.91,343751.31,191929.39,0,0,2092.0044 +1766,2201,3864,3865,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,49,-2,-18.60511,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,25.136734,0,0,1,1,0,2.0623035,0,44.49,37.85,58.08,43.46,5,1,1,0,0,0,4,2,1,2614,475090.25,172155.23,252156.89,0,0,0,991.55945 +1766,2201,3865,3864,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.2593031,6.2348342,10,2,75.279449,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.5003196,6.2358346,58.08,43.46,44.49,37.85,8.333333333333334,1,1,0,0,0,4,2,1,2614,475090.25,172155.23,252156.89,0,0,0,991.55945 +1767,2202,3866,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.7936363,8.6928272,0,0,0,-1028.963,0,-9,-9,2021,13,2,57,40,1,2,0,11.742661,11.742661,.05,.05,0,0,0,0,0,0,0,0,0,1.4401667,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,11,5,0,342,-30008.928,-27115.479,60233.004,36202.051,0,2826.5393,924.21368 +1768,2203,3867,3868,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3548527,8.2723598,0,7,-8,105.11977,0,2,2,2021,7,0,40,40,1,0,0,9.9667768,9.9667768,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,8,11,4,1,1593,1191203.3,412107.31,395738.19,0,0,0,3636.4861 +1768,2203,3868,3867,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.2997456,7.8021107,7,8,-64.224976,0,3,3,2021,7,0,0,42,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.654603,8.0191765,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,1593,1191203.3,412107.31,395738.19,0,0,0,3636.4861 +1769,2204,3869,3870,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.9746947,6.8286333,55,3,85.940666,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.7117467,6.6445389,56.77,52.22,57.91,38.28,8.333333333333334,1,1,0,0,0,7,2,1,995.5,-31819.41,34669.441,0,0,0,0,2146.2866 +1769,2204,3870,3869,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-3,96.758789,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9674859,0,57.91,38.28,56.77,52.22,10,1,1,0,0,8,7,2,1,995.5,-31819.41,34669.441,0,0,0,0,2146.2866 +1770,2205,3871,-9,3875,3873,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-967.84949,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3872,-9,3875,3873,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1008.5471,-9,1,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3873,3875,-9,-9,1,1,50,0,3,0,2,2,-9,0,3,6.9673014,6.8829112,0,12,6,-9.8919582,-9,2,2,2021,27,11,25,0,1,11,0,4.3016748,4.3016748,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,60.95,51.33,53.17,1.666666666666667,1,1,0,0,13,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3874,-9,3875,3873,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.0649,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3875,3873,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,8.2655277,8.470171,0,12,-6,-143.89769,0,1,1,2021,10,2,50,50,1,2,0,12.221191,12.221191,0,0,0,0,0,0,0,0,1,1,0,4.7017517,0,51.33,53.17,31.44,60.95,8.333333333333334,1,1,0,0,13,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1771,2206,3876,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.9945092,7.6916242,0,0,0,-1009.6429,0,-9,-9,2021,11,4,40,40,1,4,0,8.4467716,8.4467716,0,0,0,0,0,0,0,0,0,0,0,5.7724867,0,50.44,56.66,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,621,-191689.41,0,0,0,0,0,1848.2301 +1771,2207,3877,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.230134,8.3943882,0,0,0,-1007.4418,0,-9,-9,2021,5,1,45,48,1,1,0,10.873545,10.873545,.05,.05,0,0,0,0,0,0,0,0,0,1.1203709,0,45.06,60.17,-9,-9,8.333333333333334,1,1,0,0,4,4,4,1,170,194450.78,-157492.59,0,0,4848.0371,4779.7549,1124.6614 +1772,2208,3878,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.5074806,8.6393251,3.815814,0,0,-1079.5188,0,2,1,2021,32,10,60,7,1,10,0,11.042809,11.042809,.05,.05,0,0,0,0,0,0,1,1,0,4.1067414,0,19.65,51.14,-9,-9,0,4,2,0,0,7,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1772,2208,3879,-9,3878,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.2178,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1772,2208,3880,-9,3878,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4244,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1773,2209,3881,3882,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.1907616,8.4194584,0,18,-3,-94.006851,0,1,1,2021,7,0,40,40,1,0,0,8.8822584,8.8822584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,51.92,58.32,50.22,8.333333333333334,2,3,0,0,15,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1773,2209,3882,3881,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,8.5627527,8.448884,0,18,3,-2.3564539,0,2,2,2021,2,0,49,49,1,0,0,12.571771,12.571771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,55.19,51.92,8.333333333333334,2,3,0,0,15,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1773,2209,3883,-9,3882,3881,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.49445,-9,3,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1774,2210,3884,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.50793,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,20.2,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,204,241386.22,0,0,0,0,0,1611.0216 +1775,2211,3885,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.4252114,7.5145688,0,0,0,-1016.5084,0,3,3,2021,11,0,20,24,1,0,0,9.2510242,9.2510242,.05,.05,0,0,0,0,0,0,0,0,0,1.6640823,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,10,12,3,1,599,171571.72,-33481.465,86490.609,0,0,0,-131.23947 +1775,2212,3886,-9,-9,3885,1,0,30,0,0,0,2,2,-9,0,4,8.266737,8.2137003,0,0,0,-976.47296,0,2,2,2021,7,0,40,40,1,0,1,10.061172,10.061172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,12,12,4,1,1300,176348.66,20119.311,0,0,0,31.746412,929.43292 +1776,2213,3887,-9,3889,3891,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.4675,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3888,-9,3889,3891,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1053.864,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3889,3891,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,6.8268456,6.7699876,0,20,0,62.049114,0,3,2,2021,12,0,16,18,1,0,0,7.4439044,7.4439044,0,0,.05,0,0,0,0,42,1,1,0,0,0,48.69,45.7,29.18,50.81,6.666666666666667,2,3,0,1,12,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3890,-9,3889,3891,1,1,17,0,1,1,2,0,0,0,5,0,4.202877,4.5868378,0,0,-947.73804,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5171072,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3891,3889,-9,-9,1,1,47,0,1,0,1,1,-9,1,2,8.0361767,7.7115464,0,20,9,-23.266369,0,3,3,2021,24,12,35,35,1,12,0,10.038641,10.038641,0,0,.05,0,0,0,0,0,1,1,0,0,0,29.18,50.81,48.69,45.7,3.333333333333333,2,3,0,1,10,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1777,2214,3892,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.2090988,9.2625437,6.89325,0,0,-1037.231,0,2,2,2021,6,0,50,48,1,0,0,23.058861,23.058861,0,0,0,0,0,0,0,0,0,0,0,6.6968179,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,635,1130343.3,149114.92,795045,134064.92,0,0,3598.1846 +1778,2215,3893,3894,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,1,0,0,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.18,41.73,21.13,24.2,5,1,1,1,1,0,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2215,3894,3893,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,1,0,0,0,3,3,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.13,24.2,42.18,41.73,0,1,1,0,1,3,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2215,3895,-9,3894,3893,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.3298,-9,2,2,2021,26,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,56.77,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2216,3896,-9,3894,3893,1,1,20,0,1,0,2,2,-9,0,4,7.2131362,7.3992934,0,0,0,-871.4054,-9,2,2,2021,9,0,37,0,1,0,1,5.631659,5.631659,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1068,0,0,0,0,0,0,1061.2496 +1779,2217,3897,3898,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,0,0,0,4,-2,0,1,2,2,2021,6,0,0,38,2,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,9,1,0,7601,-69559.969,-22441.09,0,0,0,0,975.2146 +1779,2217,3898,3897,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,0,0,0,4,2,0,1,-9,-9,2021,6,0,0,28,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0704479,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,3,9,1,0,7601,-69559.969,-22441.09,0,0,0,0,975.2146 +1780,2218,3899,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.6749225,7.902554,0,0,-1011.4824,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5793114,7.7813063,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,526,778492.5,349184.09,316426,0,0,0,1352.1439 +1781,2219,3900,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.19958,0,-9,3,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,39,-9,-9,1.666666666666667,1,1,0,0,4,10,2,0,832,45348.977,181043.05,0,0,0,0,1554.4125 +1782,2220,3901,3902,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.8857856,8.2804108,6.7886295,8,3,-153.25787,0,-9,-9,2021,7,0,12,50,1,0,0,26.991976,26.991976,0,0,.05,0,0,0,0,0,0,0,0,1.2035398,6.6709242,54.1,59.11,46.71,44.14,8.333333333333334,1,1,0,0,9,7,4,1,574,265359.63,56427.035,289951.5,14739.771,12028.898,13504.359,2334.3093 +1782,2220,3902,3901,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,6.6452146,6.5599585,0,15,-3,-24.776855,0,2,3,2021,19,8,25,0,1,8,0,4.3522577,4.3522577,0,0,0,0,0,0,0,0,0,0,0,0,0,46.71,44.14,54.1,59.11,8.333333333333334,1,1,0,0,7,7,4,1,574,265359.63,56427.035,289951.5,14739.771,12028.898,13504.359,2334.3093 +1782,2221,3903,-9,3902,3901,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1107.829,-9,1,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,558,0,0,0,0,0,0,0 +1783,2222,3904,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.1504745,8.2518177,0,0,0,-1102.3185,-9,2,-9,2021,15,4,53,0,1,4,0,7.0041747,7.0041747,.05,.05,0,0,0,0,0,0,1,1,0,7.6597395,0,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,12,2,4,0,405,85093.211,-11397.519,127793.15,85389.438,8585.876,0,3084.7175 +1784,2223,3905,3906,-9,-9,1,0,28,0,1,0,2,2,-9,0,1,7.5480256,7.7126741,0,11,-3,42.925098,0,-9,-9,2021,17,5,30,32,1,5,0,8.5808182,8.5808182,0,0,0,0,0,0,0,0,1,1,0,0,0,37.08,31.74,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,1120.5,193488.66,74588.313,260353.66,158354.22,1985.7767,12052.49,2987.8101 +1784,2223,3906,3905,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.4107265,8.0524044,0,11,3,-5.6803322,0,-9,-9,2021,8,0,40,40,1,0,0,14.938732,14.938732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.08,31.74,8.333333333333334,1,1,0,0,14,10,4,1,1120.5,193488.66,74588.313,260353.66,158354.22,1985.7767,12052.49,2987.8101 +1785,2224,3907,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.2217,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8205385,0,59.01,25.21,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,155,-163068.72,0,0,0,0,0,834.74091 +1786,2225,3908,3909,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,7.830132,8.3121672,0,41,-1,-16.93454,0,-9,-9,2021,6,0,40,40,1,0,0,8.9180107,8.9180107,.05,.05,0,0,0,0,0,0,0,0,0,3.0984569,0,50.54,62.09,60.29,52.11,8.333333333333334,1,1,0,0,9,2,3,1,1652.5,1167641.9,821407,276506.41,0,0,0,1997.2488 +1786,2225,3909,3908,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1436167,7.378675,0,40,1,114.72421,0,-9,-9,2021,6,0,18,18,1,0,0,8.8083019,8.8083019,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,50.54,62.09,8.333333333333334,1,1,0,0,10,2,3,1,1652.5,1167641.9,821407,276506.41,0,0,0,1997.2488 +1787,2226,3910,3911,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,6.6271305,7.2019935,0,1,-6,-42.956707,0,2,2,2021,7,0,10,8,1,0,0,8.8655148,8.8655148,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,63.98,40.79,10,1,1,0,0,15,9,3,1,654,1261603.8,168044.56,931352,221803.67,0,0,4486.9658 +1787,2226,3911,3910,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.8127885,7.5494614,1,6,38.212547,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4233217,7.7746768,63.98,40.79,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,654,1261603.8,168044.56,931352,221803.67,0,0,4486.9658 +1788,2227,3912,3913,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.6765366,7.7070961,44,3,-78.391792,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9187512,7.5703831,62.66,52.4,53.97,45.88,10,1,1,0,0,8,12,4,1,1100.5,698479.69,127481.37,165501.59,0,0,0,2976.3704 +1788,2227,3913,3912,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.7203369,8.0857086,7.4741373,44,-3,-86.675545,0,3,3,2021,11,0,36,36,1,0,0,6.771503,6.771503,0,0,.05,0,0,0,0,0,1,1,0,0,7.2540441,53.97,45.88,62.66,52.4,8.333333333333334,1,1,0,0,11,12,4,1,1100.5,698479.69,127481.37,165501.59,0,0,0,2976.3704 +1789,2228,3914,-9,3915,3916,1,1,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1040.5345,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1789,2228,3915,3916,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,9,-6,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,50,49,8,2,3,0,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1789,2228,3916,3915,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,36,6,0,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,49,50,55,7,2,3,0,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1790,2229,3917,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.5139914,7.5765233,0,0,0,-1012.0174,0,3,3,2021,6,0,22,22,1,0,0,7.8149858,7.8149858,0,0,0,0,0,0,0,0,1,1,0,0,0,49.9,43.05,-9,-9,10,1,1,0,0,11,13,3,0,1126,399202.53,113627.06,283267.72,28306.629,0,0,663.19141 +1791,2230,3918,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.41058,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.76,45.05,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,734,0,0,0,0,0,0,628.56921 +1792,2231,3919,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,9.033597,8.7220211,0,0,0,-997.13586,0,-9,-9,2021,8,1,60,55,1,1,0,14.610543,14.610543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.35,48.33,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,54,75622.922,-1006.6441,0,0,0,0,2839.1956 +1793,2232,3920,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.4680891,4.3566937,0,0,-799.95404,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.707746,0,0,1,1,0,1.2802885,4.6255498,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1033,-78554.414,25081.4,115413.25,0,0,0,890.37714 +1794,2233,3921,3922,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.3848777,7.6158161,0,11,-2,206.75963,0,3,3,2021,23,10,21,22,1,10,0,12.272005,12.272005,0,0,0,0,0,0,.23400778,2,1,0,1,0,0,40.63,39.73,29.78,25.84,3.333333333333333,1,1,0,0,13,7,2,0,394,815133.88,348619.16,355628.38,0,0,0,1196.6689 +1794,2233,3922,3921,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,11,2,72.185165,0,2,3,2021,22,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,29.78,25.84,40.63,39.73,1.666666666666667,1,1,0,0,9,7,2,0,394,815133.88,348619.16,355628.38,0,0,0,1196.6689 +1795,2234,3923,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.0030756,5.2298636,0,0,-953.84326,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8245513,0,0,1,1,0,5.0468631,5.5774283,42.63,29.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,467,281364.81,135875.97,0,0,0,0,2415.7764 +1796,2235,3924,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.2602835,8.5179558,6.772759,0,0,-935.20575,0,3,3,2021,10,0,39,39,1,0,0,9.3621063,9.3621063,.05,.05,0,0,0,0,0,14.5,1,1,0,1.0679625,6.5976529,51.46,45.59,-9,-9,5,1,1,0,0,12,7,4,1,543,770206.94,164067.16,596677.31,0,0,16639.229,1195.0225 +1797,2236,3925,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.3372478,6.3848791,0,0,-1165.6133,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9634156,6.4558239,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,619,1027466.5,191364.88,625138.94,0,0,0,1359.7333 +1798,2237,3926,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.377615,8.4626904,0,0,0,-983.69574,0,3,3,2021,6,0,46,42,1,0,0,9.1114664,9.1114664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,794,271334.16,339068.03,126919.92,18053.902,7493.4888,0,2185.9822 +1799,2238,3927,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1005.5649,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,42.96,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,280,-19436.877,0,0,0,0,0,1681.4297 +1800,2239,3928,-9,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,7.7089477,7.99822,0,0,0,-1018.0161,0,3,3,2021,8,0,36,36,1,0,0,10.092469,10.092469,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,1,10,5,3,1,1860,263972.72,203280.92,0,0,0,0,1292.1541 +1800,2240,3929,-9,3928,-9,1,0,23,0,1,0,2,2,-9,0,3,7.8530464,7.7107406,0,0,0,-817.10175,0,2,-9,2021,13,0,38,38,1,3,1,6.6149087,6.6149087,0,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,6,1,1,0,0,2,5,3,1,877,35075.988,0,0,0,0,0,1009.2828 +1800,2241,3930,-9,3928,-9,1,0,20,0,1,0,3,3,-9,0,2,0,0,0,0,0,-999.07141,-9,2,-9,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.24,57.72,-9,-9,3.333333333333333,1,1,1,0,0,5,1,1,387.5,-181430.91,0,0,0,0,1029.421,295.60056 +1800,2241,3931,-9,3930,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.71008,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,1,387.5,-181430.91,0,0,0,0,1029.421,295.60056 +1801,2242,3932,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.7942829,5.1971154,0,0,-857.69904,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9248471,5.4379673,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1359,32875.73,-64692.016,99905.297,0,0,0,768.2359 +1802,2243,3933,-9,-9,-9,1,1,73,1,2,0,2,2,-9,0,1,0,4.6801596,4.8207283,0,0,-1065.8177,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1277633,4.9224844,66.34999999999999,12.26,-9,-9,5,3,4,0,0,0,8,2,0,904,447427.69,60006.742,321768.75,0,0,0,960.19586 +1803,2244,3934,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-848.74835,0,3,3,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,17.314135,71.130272,142.4888,0,1,1,0,.054426536,0,30.43,21.22,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,1882,-10423.306,0,0,0,0,0,405.31339 +1804,2245,3935,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.0699997,5.927917,0,0,-1074.615,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4746718,43.79,51.7,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,103,-84640.234,0,0,0,0,0,1224.5302 +1805,2246,3936,-9,3938,3939,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.14508,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3937,-9,3938,3939,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.0653,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3938,3939,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.8177609,7.4917641,0,13,-1,-25.921192,0,2,2,2021,12,1,20,20,1,1,0,12.666757,12.666757,0,0,0,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,39.38,52.68,6.666666666666667,1,1,0,0,9,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3939,3938,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.5568533,8.3621979,0,13,1,-91.887299,0,1,2,2021,11,0,43,43,1,0,0,12.095776,12.095776,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,52.68,35.61,65.82000000000001,6.666666666666667,1,1,0,0,12,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1806,2247,3940,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.9645991,7.6949992,0,0,0,-984.20007,0,3,-9,2021,3,0,30,28,1,0,0,7.6944237,7.6944237,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,2,3,0,595,267142.03,63317.598,0,0,0,1830.1958,1401.3251 +1806,2248,3941,-9,3940,-9,1,0,21,0,0,0,2,2,-9,0,2,7.9667091,7.99756,0,0,0,-1079.4982,0,2,-9,2021,16,3,42,43,1,3,1,7.3434763,7.3434763,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.18,57.88,-9,-9,5,1,1,0,0,5,2,4,0,241,58650.641,-9941.7314,0,0,0,0,1438.3052 +1806,2249,3942,-9,3940,-9,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1006.4447,1,2,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,287,149870.61,0,0,0,0,0,0 +1807,2250,3943,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,3,0,6.4577765,6.1908956,0,0,-1015.3382,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.6474009,0,0,1,1,0,0,6.5978689,41.27,49.97,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1172,121992.56,47385.555,0,0,0,0,2598.2622 +1808,2251,3944,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6273241,5.3336611,0,0,-1011.6635,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8298302,58.47,44.69,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,1008,364873.88,-60285.961,242793.28,0,0,0,1322.1151 +1808,2252,3945,-9,3944,-9,1,1,47,0,0,0,2,2,-9,0,3,7.8652306,8.4222498,0,0,0,-1007.3266,0,2,2,2021,21,9,37,37,1,9,0,10.813004,10.813004,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.51,66.12,-9,-9,3.333333333333333,1,1,0,1,12,7,4,1,1692,236589.23,99750.414,0,0,0,0,1426.1215 +1808,2253,3946,-9,-9,3945,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-976.64111,-9,-9,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,987,0,0,0,0,0,0,-356.78287 +1809,2254,3947,3948,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.7114792,8.1838789,53,-6,81.091331,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7972155,7.6183081,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,6,12,3,1,329.5,930406.63,324496.13,392618.88,0,6021.6445,0,3583.6565 +1809,2254,3948,3947,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,5.9756861,5.780407,53,6,-23.364763,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4365096,6.1694493,60.02,56.42,54.1,59.11,10,1,1,0,0,4,12,3,1,329.5,930406.63,324496.13,392618.88,0,6021.6445,0,3583.6565 +1810,2255,3949,3950,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.8161664,7.9829779,53,1,82.41835,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9300399,53.39,49.65,60.12,54.8,8.333333333333334,1,1,0,0,0,4,4,1,406,2455074.8,666527.88,399402.28,0,0,0,3745.5479 +1810,2255,3950,3949,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.814374,8.1735258,53,-1,-45.586269,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3991003,60.12,54.8,53.39,49.65,10,1,1,0,0,0,4,4,1,406,2455074.8,666527.88,399402.28,0,0,0,3745.5479 +1811,2256,3951,3952,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1901741,9.4047604,0,7,0,-122.24803,0,1,1,2021,9,0,40,40,1,1,0,30.451691,30.451691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,39.16,62.84,8,1,1,0,0,1,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3952,3951,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.8756752,7.899662,0,7,0,75.987564,0,2,2,2021,19,8,20,20,1,8,0,18.097588,18.097588,0,0,0,0,0,0,0,0,1,1,0,7.1522932,0,39.16,62.84,52,55,8.333333333333334,1,1,0,0,8,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3953,-9,3952,3951,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.44055,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3954,-9,3952,3951,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-827.05139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1812,2257,3955,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.115819,9.1654892,0,10,-7,-114.27816,0,1,2,2021,7,0,42,38,1,0,0,25.560589,25.560589,.05,.05,0,0,0,0,0,0,0,0,0,5.2020292,0,48.87,58.55,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,2599,328657.94,156921.55,0,0,0,0,3453.1213 +1812,2258,3956,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.6754503,8.7564402,0,10,7,-162.64406,0,2,2,2021,8,0,78,39,1,0,0,8.6119957,8.6119957,.05,.05,0,0,0,0,0,0,0,0,0,4.8433447,0,46.16,58.62,48.87,58.55,8.333333333333334,1,1,0,0,11,6,5,1,708,80475.461,-49145.848,0,0,0,824.08716,3443.0422 +1813,2259,3957,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.6694298,9.577013,8.8941126,0,0,-914.1701,0,3,3,2021,8,0,6,15,1,0,0,143.87344,143.87344,0,0,0,0,0,0,0,0,0,0,0,7.4153156,8.3499632,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,14,2,5,1,308,598509.19,433663.03,255222.03,0,0,0,6130.5176 +1814,2260,3958,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,7.4851694,7.6339631,0,0,0,-886.51184,0,-9,3,2021,24,8,60,55,1,8,0,2.9018257,2.9018257,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,1.666666666666667,1,1,0,0,7,10,3,1,660,1175627.4,660911.38,144272.55,4920.7822,0,0,850.25836 +1815,2261,3959,3960,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.1337805,6.991003,0,27,-2,-61.594845,0,2,2,2021,6,0,15,15,1,0,0,8.0980844,8.0980844,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,10,4,2,1,494,47975.266,0,0,0,1185.9799,2596.0684,289.58655 +1815,2261,3960,3959,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,5.3170476,5.6846867,0,7,2,50.604305,0,-9,-9,2021,6,0,40,40,1,0,0,.53981799,.53981799,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,10,4,2,1,494,47975.266,0,0,0,1185.9799,2596.0684,289.58655 +1815,2262,3961,-9,3959,3960,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-826.03198,1,2,2,2021,6,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,2,4,1,1,1272,50121.121,0,0,0,0,0,-612.45038 +1815,2263,3962,-9,3959,3960,1,1,21,0,0,0,2,2,-9,0,4,7.4297066,7.2208557,0,0,0,-1097.0557,0,2,2,2021,8,0,32,18,1,0,1,5.0163536,5.0163536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.62,55.32,-9,-9,10,2,3,0,0,7,4,3,1,721,-27368.301,61358.063,0,0,0,0,918.76892 +1816,2264,3963,3966,-9,-9,1,0,37,0,2,0,1,1,0,0,4,0,0,0,16,-16,-115.71407,-9,3,3,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.61,54.56,43.31,37.38,8.333333333333334,4,5,0,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3964,-9,3963,3966,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.60272,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3965,-9,3963,3966,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.38324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3966,3963,-9,-9,1,1,53,0,2,0,1,1,-9,1,2,8.7645512,8.4733171,0,16,16,-79.234482,0,3,3,2021,18,6,53,31,1,6,0,13.137888,13.137888,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.31,37.38,36.61,54.56,5,4,5,0,0,9,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1817,2265,3967,3968,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.880168,8.8265982,0,25,2,-43.165611,0,2,3,2021,6,0,30,30,1,0,0,30.710663,30.710663,.05,.05,0,0,0,0,0,2,0,0,0,3.787699,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,13,9,5,1,1365,532243.75,455021.84,290816.81,128376.48,0,0,4530.0879 +1817,2265,3968,3967,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,0,0,25,-2,-33.346767,1,2,2,2021,6,0,0,14,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.7563162,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1365,532243.75,455021.84,290816.81,128376.48,0,0,4530.0879 +1818,2266,3969,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.1528673,8.9983416,0,0,0,-870.32928,0,2,2,2021,7,0,55,39,1,0,0,15.444751,15.444751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,12,9,5,0,1273,768772.88,680659.63,246000.86,91928.703,9126.0117,2217.4438,3532.5273 +1819,2267,3970,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,7.1756392,7.6101079,6.6865549,0,0,-1031.26,0,2,2,2021,11,0,21,18,1,0,0,5.1533742,5.1533742,.05,.05,0,0,0,0,0,0,1,1,0,5.997529,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3971,-9,3970,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.5659,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3972,-9,3970,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5334,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3973,-9,3970,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.41431,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1820,2268,3974,3975,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.1267986,7.9261179,11,2,-72.322334,0,3,1,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.7131815,8.1846094,61.01,53.18,61.83,31.21,8.333333333333334,1,1,0,0,11,10,4,1,3826,-8386.5928,115798.5,0,0,0,0,5525.6924 +1820,2268,3975,3974,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.2923441,7.5463352,11,-2,53.680168,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.6729732,7.5706434,61.83,31.21,61.01,53.18,8.333333333333334,1,1,0,0,8,10,4,1,3826,-8386.5928,115798.5,0,0,0,0,5525.6924 +1821,2269,3976,3977,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.6224246,7.8243618,41,1,156.96115,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8754764,7.3538971,56.94,49.53,40.47,55.65,10,1,1,0,0,0,4,4,0,1184.5,2350302.5,1391078.3,326648.5,0,0,0,4148.2939 +1821,2269,3977,3976,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8001547,7.5277748,41,-1,-4.6573915,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2510233,7.5399652,40.47,55.65,56.94,49.53,10,1,1,0,0,0,4,4,0,1184.5,2350302.5,1391078.3,326648.5,0,0,0,4148.2939 +1822,2270,3978,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.8602061,8.4871397,7.3725719,0,0,-963.99994,0,3,3,2021,6,0,21,21,1,0,0,10.106242,10.106242,0,0,0,0,0,0,0,0,1,1,0,6.1417775,7.6253819,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,1088,260563.66,311159.75,0,0,0,0,2413.3247 +1823,2271,3979,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.4249496,6.4263768,0,0,-817.47516,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7431145,6.3833718,49.64,48.66,-9,-9,8.333333333333334,4,2,0,0,10,6,2,1,220,633429.06,433217.63,76180.281,0,0,2873.1694,1509.1302 +1823,2272,3980,-9,-9,3979,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-986.12579,-9,-9,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,-9,-9,8.333333333333334,4,2,0,0,0,6,1,1,712,0,0,0,0,0,0,0 +1824,2273,3981,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.3571024,7.1922259,0,0,-907.6405,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6854339,6.9062924,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,1060,309059.75,59671.977,149231.86,0,0,746.1076,564.65961 +1825,2274,3982,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.0473509,6.3340578,0,0,-931.50891,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2145233,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,1394,371519.44,76067.328,154227.75,0,0,0,808.97119 +1825,2275,3983,-9,3982,-9,1,1,31,0,0,0,2,2,-9,0,2,7.0816278,6.8598113,0,0,0,-873.92639,0,3,2,2021,12,0,16,22,1,0,0,6.820128,6.820128,0,0,0,0,0,0,0,7,1,1,0,0,0,57.18,45.76,-9,-9,6.666666666666667,1,1,0,1,7,11,2,1,194,44915.906,-123600.52,0,0,0,0,976.56799 +1825,2276,3984,-9,3982,-9,1,1,28,0,0,0,2,2,-9,0,3,7.7063899,7.6995893,0,0,0,-946.80316,0,2,2,2021,7,2,37,40,1,2,0,4.6040821,4.6040821,.05,.05,0,0,0,0,0,0,1,1,0,.14124013,0,52.01,48.98,-9,-9,6.666666666666667,1,1,0,0,4,11,3,1,325,7407.4473,-134944.59,0,0,0,0,471.00369 +1826,2277,3985,3986,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,33,-11,-74.930939,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,58.72,51.29,8.333333333333334,1,1,0,0,12,12,4,1,592,1042697.3,522543.69,308142.94,0,0,0,2508.6108 +1826,2277,3986,3985,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.3027849,8.6164589,13,11,20.988455,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8648772,8.3375835,58.72,51.29,60.02,56.42,10,1,1,0,0,5,12,4,1,592,1042697.3,522543.69,308142.94,0,0,0,2508.6108 +1827,2278,3987,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.1850433,7.1660004,0,3,9,18.290886,0,3,3,2021,10,0,9,12,1,0,0,17.105764,17.105764,0,0,.05,0,0,0,0,0,0,0,0,2.2640717,0,49.25,61.25,41.62,60.42,8.333333333333334,1,1,0,0,11,11,4,1,284,422459.78,111149.73,249065.89,0,0,0,599.03119 +1827,2279,3988,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.9584422,8.173234,0,3,0,184.49263,0,-9,-9,2021,10,0,32,32,1,0,0,11.930918,11.930918,.05,.05,0,0,0,0,0,0,0,0,0,6.6698895,0,41.62,60.42,49.25,61.25,8.333333333333334,1,1,0,0,13,11,4,1,872,110118.33,178959.58,0,0,0,262.93582,1748.6809 +1828,2280,3989,3990,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.8796182,7.9113045,0,10,-8,36.832939,0,1,1,2021,17,6,22,32,1,6,0,15.55022,15.55022,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,45.76,47.46,6.666666666666667,1,1,0,0,10,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3990,3989,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,7.9214964,8.1704388,0,10,8,2.5650444,0,2,2,2021,11,0,39,39,1,0,0,8.4184074,8.4184074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.76,47.46,42.05,58.8,6.666666666666667,1,1,0,0,10,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3991,-9,3989,3990,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.6343,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3992,-9,3989,3990,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-945.50604,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1829,2281,3993,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-862.75525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,1,1,613,90057.563,-7314.6665,181961.83,11603.434,0,0,241.86308 +1829,2282,3994,-9,-9,3993,1,0,23,0,0,0,2,2,-9,0,3,7.7847009,7.6363993,0,0,0,-1166.9993,-9,2,2,2021,10,0,35,0,1,0,0,6.8452077,6.8452077,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,365,-209587.77,0,0,0,8358.292,0,2124.0928 +1830,2283,3995,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,7.0807343,6.5200353,0,0,-1015.7814,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1825337,0,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,273,-17746.41,58574.035,0,0,0,0,881.81116 +1831,2284,3996,3997,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2655363,7.1051984,0,9,-6,76.561897,0,3,3,2021,24,10,16,16,1,10,0,8.7642508,8.7642508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.06,41.81,58.15,52.91,3.333333333333333,1,1,0,1,10,4,4,1,314.5,277101.22,-23940.674,183026.84,0,0,0,2286.4028 +1831,2284,3997,3996,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.5646582,8.5615845,0,9,6,-66.464691,0,-9,-9,2021,7,0,54,54,1,0,0,11.124492,11.124492,.05,.05,0,0,0,0,0,0,0,0,0,2.2600594,0,58.15,52.91,43.06,41.81,8.333333333333334,1,1,0,0,9,4,4,1,314.5,277101.22,-23940.674,183026.84,0,0,0,2286.4028 +1831,2285,3998,-9,3996,3997,1,0,32,0,0,0,3,3,-9,0,3,7.8919702,7.8961873,0,0,0,-1077.1304,0,3,2,2021,10,3,38,56,1,3,1,5.5127177,5.5127177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.33,53.37,-9,-9,5,1,1,0,0,10,4,3,1,3541,-118927.09,31205.781,0,0,0,0,528.19604 +1832,2286,3999,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.0570602,8.067894,0,0,0,-933.79639,-9,-9,-9,2021,28,10,41,0,1,10,0,8.1058712,8.1058712,0,0,0,0,0,0,0,0,0,0,0,0,0,17.04,62.49,-9,-9,3.333333333333333,1,1,0,1,6,5,4,0,3553,-142224.66,-4416.3696,0,0,0,0,914.93567 +1833,2287,4000,4001,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.2101336,8.1644945,0,34,6,145.692,0,3,2,2021,10,1,38,38,1,1,0,13.624899,13.624899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,26.01,45.43,53.5,5,1,1,0,0,13,11,5,1,560.5,147660.56,27292.752,134789.88,0,0,0,3876.7012 +1833,2287,4001,4000,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.5871067,8.5440407,0,34,-6,29.348633,0,3,1,2021,4,0,38,37,1,0,0,14.420081,14.420081,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,61.68,26.01,6.666666666666667,1,1,0,0,12,11,5,1,560.5,147660.56,27292.752,134789.88,0,0,0,3876.7012 +1834,2288,4002,4003,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,69,-1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,67.27,28.36,8.333333333333334,1,1,0,0,0,7,1,1,1711,206654.88,81150.328,161192.5,0,0,0,1391.1052 +1834,2288,4003,4002,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,0,0,69,1,0,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.27,28.36,48.18,61.8,8.333333333333334,1,1,0,0,0,7,1,1,1711,206654.88,81150.328,161192.5,0,0,0,1391.1052 +1835,2289,4004,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5652561,8.6206818,0,0,0,-990.14728,-9,2,-9,2021,10,0,7,0,1,0,1,87.469246,87.469246,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,2,3,0,0,6,7,5,1,548,-87612.297,-45467.93,0,0,0,0,2031.1578 +1836,2290,4005,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-943.13385,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,10.511561,0,0,1,1,0,0,0,26.06,45.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,602,106894.43,0,117000.07,0,0,0,8.967741 +1837,2291,4006,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-937.12897,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,15.52,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1634,3133.4749,0,0,0,0,0,1569.65 +1838,2292,4007,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.8508868,6.1187963,0,0,-1145.2548,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6100454,6.1236072,60.3,46.58,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,120,2463.4565,-24790.695,0,0,0,0,708.42303 +1839,2293,4008,4009,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,8.2155809,7.8650889,11,1,-5.9570117,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1632872,7.9946337,51.83,57.2,50.58,51.02,8.333333333333334,1,1,0,0,10,7,4,0,3139.5,1204619.6,475204.47,493480.69,0,0,705.76788,3525.8152 +1839,2293,4009,4008,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.0131598,7.4420938,11,-1,75.73085,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4661632,0,50.58,51.02,51.83,57.2,8.333333333333334,1,1,0,0,8,7,4,0,3139.5,1204619.6,475204.47,493480.69,0,0,705.76788,3525.8152 +1840,2294,4010,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.4601183,9.1235523,0,0,0,-878.07928,-9,2,3,2021,14,2,60,0,1,2,0,21.879572,21.879572,.05,.05,0,0,0,0,0,0,0,0,0,5.1496921,0,39.58,57.61,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,1054,183132.56,8440.4307,0,0,0,0,3411.1289 +1841,2295,4011,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.011961,8.1145296,0,0,0,-819.99811,0,2,2,2021,9,0,44,59,1,0,0,9.1442299,9.1442299,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,9,1,4,0,2090,40329.129,0,0,0,0,0,1566.9944 +1842,2296,4012,4013,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,0,7.6291122,7.3551922,25,-13,-70.87648,0,2,2,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.6823459,7.5937681,34.32,19.62,63.41,39.7,1.666666666666667,1,1,0,0,0,2,4,1,1418.5,1146295.8,662057,226479.44,0,0,0,6365.8013 +1842,2296,4013,4012,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,8.2520628,7.6614923,25,13,-104.17507,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.0450544,8.1978025,63.41,39.7,34.32,19.62,8.333333333333334,1,1,0,0,0,2,4,1,1418.5,1146295.8,662057,226479.44,0,0,0,6365.8013 +1843,2297,4014,4015,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.2493143,6.4871182,8,-6,-23.305613,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1580787,36.23,23,40.59,58.72,1.666666666666667,1,1,0,0,0,13,3,1,1646.5,1086311.3,534124.63,263440.31,0,0,0,2949.5044 +1843,2297,4015,4014,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.4797482,7.6681705,8,6,-35.934223,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6595421,40.59,58.72,36.23,23,6.666666666666667,1,1,0,0,3,13,3,1,1646.5,1086311.3,534124.63,263440.31,0,0,0,2949.5044 +1844,2298,4016,-9,4019,4017,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.6028,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4017,4019,-9,-9,1,1,50,2,2,0,2,2,-9,0,4,8.0428219,8.1659822,0,8,6,21.16074,0,-9,-9,2021,6,0,37,37,1,0,0,9.7277851,9.7277851,.05,.05,0,0,0,0,0,0,1,1,0,3.7082655,0,57.16,56.15,60.12,54.8,6.666666666666667,1,1,0,0,9,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4018,-9,4019,4017,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-947.60101,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4019,4017,-9,-9,1,0,44,2,2,0,2,2,-9,0,4,0,0,0,8,-6,-79.67025,0,-9,-9,2021,7,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.51565748,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,8,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1845,2299,4020,-9,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1128.0592,-9,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,60,48.06,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,612,116590.25,0,0,0,0,0,1034.8804 +1846,2300,4021,4022,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9172969,8.0593424,0,25,6,-145.37172,0,2,2,2021,9,0,48,45,1,0,0,6.3130403,6.3130403,.05,.05,.05,0,0,0,0,7,1,1,0,.052722894,0,44.97,55.19,58.15,52.91,8.333333333333334,1,1,0,0,9,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1846,2300,4022,4021,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4068356,8.207655,0,25,-6,116.96372,0,2,2,2021,8,0,48,40,1,0,0,10.822273,10.822273,.05,.05,0,0,0,0,0,0,1,1,0,.54217613,0,58.15,52.91,44.97,55.19,8.333333333333334,1,1,0,0,9,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1846,2300,4023,-9,4022,4021,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1010.3268,-9,2,2,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.97,58.59,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1847,2301,4024,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,6.9462781,6.7017112,0,0,0,-1085.0912,-9,-9,2,2021,10,0,16,0,1,0,0,6.8348451,6.8348451,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.96,39.3,-9,-9,8.333333333333334,1,1,0,0,10,11,2,1,274,-136792.41,23383.385,0,0,0,5810.7998,2343.9846 +1848,2302,4025,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,7.9359035,8.2029095,3.750138,0,0,-989.27612,-9,-9,-9,2021,6,0,38,0,1,0,0,7.6960549,7.6960549,0,0,.05,0,0,0,0,0,0,0,0,3.8514843,0,45.92,51.86,-9,-9,8.333333333333334,4,2,0,0,2,7,4,0,844,19657.947,-13132.619,0,0,6086.8291,0,999.85645 +1849,2303,4026,4027,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,10,4,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,15.716665,5.7783079,131.9882,0,1,0,1,0,0,53,47,51.33,33.18,6.666666666666667,1,1,0,0,0,12,1,0,525,291956.06,-11008.48,163726.13,0,0,0,937.77075 +1849,2303,4027,4026,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,10,-4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,51.33,33.18,53,47,8.333333333333334,1,1,0,0,0,12,1,0,525,291956.06,-11008.48,163726.13,0,0,0,937.77075 +1850,2304,4028,4029,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,59,-4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.08,41.96,55.47,39.56,8.333333333333334,2,3,0,0,0,2,1,1,599,176390.34,98329.641,82730.844,0,0,0,549.15808 +1850,2304,4029,4028,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,59,4,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.47,39.56,53.08,41.96,8.333333333333334,2,3,0,0,0,2,1,1,599,176390.34,98329.641,82730.844,0,0,0,549.15808 +1851,2305,4030,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.3097329,7.6169877,0,0,0,-1028.782,-9,2,2,2021,11,3,30,0,1,3,0,6.4468946,6.4468946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.91,36.47,-9,-9,3.333333333333333,1,1,0,1,7,9,3,1,880,-76681.023,3302.5879,0,0,1953.6763,186.99213,-7.1024804 +1852,2306,4031,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5975256,8.4882631,0,0,0,-923.60669,0,-9,-9,2021,12,1,47,0,1,1,0,9.8839283,9.8839283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,-9,-9,5,1,1,0,0,5,2,5,0,186,30883.152,-154750.83,0,0,1668.3214,0,2803.0676 +1853,2307,4032,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.4179296,6.7802086,0,0,-1002.9227,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6755567,0,0,1,1,0,5.0444942,6.3296013,62.49,55.09,-9,-9,10,1,1,0,0,0,10,2,1,546,567368.44,30388.725,354232.31,0,0,0,1143.9391 +1854,2308,4033,4034,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,39,2,-81.178452,0,3,3,2021,21,9,0,60,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.74,24.49,55.2,49.4,3.333333333333333,1,1,0,0,11,5,2,0,927,29989.041,118618.63,0,0,0,1509.6748,3468.0439 +1854,2308,4034,4033,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,4.6667967,5.3194008,3.2409251,39,-2,-61.416157,0,3,3,2021,10,0,50,40,1,0,0,.4165259,.4165259,0,0,0,0,0,0,0,74.5,1,0,1,0,3.3008077,55.2,49.4,32.74,24.49,8.333333333333334,1,1,0,1,11,5,2,0,927,29989.041,118618.63,0,0,0,1509.6748,3468.0439 +1855,2309,4035,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1002.1132,0,-9,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.11,47.47,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,238,95048.563,0,0,0,0,0,672.00427 +1856,2310,4036,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-951.65448,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,37.49,29.31,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,294,34940.219,0,0,0,9840.4961,0,2178.7231 +1856,2311,4037,-9,4036,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1007.8447,0,3,-9,2021,24,11,0,14,3,11,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,12.64,51.43,-9,-9,3.333333333333333,4,2,1,1,5,2,1,0,309,118622.53,0,0,0,0,0,210.89188 +1857,2312,4038,4039,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.8860021,5.6440558,63,-1,119.06283,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.6413827,64.37,31.49,54.95,24.8,8.333333333333334,1,1,0,0,5,9,2,1,2884,719057,112511.55,391678.06,0,0,0,2601.1401 +1857,2312,4039,4038,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.1170244,7.5244694,63,1,-201.25327,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,.33423916,0,120,1,1,0,.85084629,7.3240118,54.95,24.8,64.37,31.49,10,1,1,0,0,0,9,2,1,2884,719057,112511.55,391678.06,0,0,0,2601.1401 +1858,2313,4040,4041,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.8540602,8.7055616,0,12,12,-36.227242,0,2,2,2021,9,0,44,48,1,0,0,16.069517,16.069517,.05,.05,.05,0,0,0,0,0,1,1,0,3.648279,0,59.53,56.44,49.86,55.31,6.666666666666667,1,1,0,0,12,10,5,1,781.5,664669,432901.94,0,0,0,0,4567.3379 +1858,2313,4041,4040,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.8336477,7.7832179,0,12,-12,-13.361007,0,3,2,2021,11,4,5,5,1,4,0,61.751274,61.751274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,59.53,56.44,8.333333333333334,1,1,0,0,11,10,5,1,781.5,664669,432901.94,0,0,0,0,4567.3379 +1859,2314,4042,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.8392925,5.5348063,0,0,-910.5365,0,3,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8897376,51.85,11.83,-9,-9,6.666666666666667,1,1,0,0,2,13,2,0,230,432700.06,80464.359,44040.953,0,0,0,1306.7668 +1860,2315,4043,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,6.9105773,6.7497282,0,0,-976.92676,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2979622,0,0,1,1,0,0,7.2025571,64.3,32.53,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,835,356896.31,76250.953,217472.05,0,0,0,636.65186 +1861,2316,4044,4045,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.0323954,7.9334784,49,-2,124.83071,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2472353,8.3205385,58.15,52.91,52.48,54.33,10,1,1,0,0,7,10,3,1,670.5,990448.25,643538.63,356221.38,0,0,0,3172.8391 +1861,2316,4045,4044,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,49,2,16.909395,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0834498,0,52.48,54.33,58.15,52.91,8.333333333333334,1,1,0,0,8,10,3,1,670.5,990448.25,643538.63,356221.38,0,0,0,3172.8391 +1862,2317,4046,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.976512,8.7240047,0,0,-963.44104,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5460622,8.6580687,62.58,34.57,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,539,1677631.6,928801.63,361032.84,0,0,0,3589.998 +1863,2318,4047,4048,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.913414,8.998847,0,5,-13,-47.664745,0,-9,-9,2021,10,2,48,43,1,2,0,15.112234,15.112234,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,50.11,54.04,6.666666666666667,1,1,0,0,5,7,5,1,2344.5,2993858.5,2266914.5,325153.25,0,0,1048.7622,5621.3584 +1863,2318,4048,4047,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.7732124,8.874361,0,5,13,17.996653,0,2,2,2021,9,0,40,39,1,0,0,21.991411,21.991411,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,52,54.51,8.333333333333334,1,1,0,0,8,7,5,1,2344.5,2993858.5,2266914.5,325153.25,0,0,1048.7622,5621.3584 +1864,2319,4049,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.6729035,8.4052572,8.4716024,13,-19,11.926549,0,2,1,2021,11,0,15,15,1,0,0,17.831766,17.831766,.05,.05,.05,0,0,0,0,7,1,1,0,7.9759922,7.6110168,49.41,58.28,51,46,8.333333333333334,1,1,0,0,9,10,4,1,541,535211.44,148833.08,303042.41,1933.7502,3033.1741,1386.4065,3361.3486 +1865,2320,4050,-9,4051,4053,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.4059,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4051,4053,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,7.3839564,7.2746348,0,11,-3,47.606888,0,1,1,2021,13,1,17,0,1,1,0,11.423452,11.423452,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.08,59.33,52.3,57.2,6.666666666666667,1,1,0,0,10,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4052,-9,4051,4053,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.682,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,63,-9,-9,7,1,1,-9,0,0,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4053,4051,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,8.9290667,8.9542093,0,11,3,-12.780971,0,2,3,2021,10,0,32,33,1,0,0,35.412125,35.412125,.05,.05,0,0,0,0,0,0,1,1,0,4.4147706,0,52.3,57.2,44.08,59.33,8.333333333333334,1,1,0,0,12,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1866,2321,4054,-9,-9,-9,1,0,35,0,2,0,3,3,-9,1,2,0,0,0,0,0,-893.70343,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.25,53.93,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1866,2321,4055,-9,4054,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7168,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1866,2321,4056,-9,4054,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.5992,-9,3,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,10,1,1,0,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1867,2322,4057,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7248392,8.8227863,0,0,0,-986.43341,0,2,3,2021,11,0,42,48,1,0,0,16.801508,16.801508,0,0,.05,0,0,0,0,7,0,0,0,0,0,60.29,52.11,-9,-9,5,1,1,0,0,12,6,5,1,1665,110167.55,39054.969,0,0,0,0,2648.9087 +1868,2323,4058,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,4.2545271,3.9362316,0,0,-1055.9971,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4323277,4.5897183,17.03,26.29,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,382,-1827.4067,0,0,0,0,0,1248.6382 +1869,2324,4059,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2289886,6.1393709,0,0,-1025.7129,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8247876,6.2694955,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,911,1705363.3,650349.38,256921.66,0,0,0,1513.0759 +1870,2325,4060,-9,4061,-9,1,0,28,0,0,0,2,2,-9,0,4,8.3690224,8.2620449,0,0,0,-966.85327,0,3,3,2021,6,0,32,33,1,0,0,14.087025,14.087025,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,303,-6688.2085,-92181.031,0,0,0,0,1662.1813 +1870,2326,4061,-9,4062,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.38049,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.6753271,0,61.83,36.54,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,1011,29733.033,0,0,0,0,0,-63.325638 +1870,2327,4062,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.7507,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,1,4,1,1,716,-81862.836,0,0,0,0,0,976.30408 +1871,2328,4063,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.6811428,8.5919971,6.5826797,0,0,-902.92822,0,2,2,2021,21,9,38,37,1,9,0,13.526674,13.526674,.05,.05,0,0,0,0,0,0,0,0,0,5.842217,6.8061891,44.35,28.38,-9,-9,3.333333333333333,1,1,0,0,11,6,5,1,480,909836.38,500032.28,158623.81,0,13864.077,0,1690.1538 +1872,2329,4064,4065,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.2304745,7.4836855,0,22,-5,-147.30199,-9,3,-9,2021,9,4,45,0,1,4,0,3.6458294,3.6458294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,58.99,43.89,52.61,6.666666666666667,1,1,0,0,13,8,2,1,952.5,404402.06,75154.156,470092.47,126709.77,0,0,1153.5962 +1872,2329,4065,4064,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,1,5,-54.258511,-9,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.89,52.61,40.06,58.99,6.666666666666667,1,1,1,0,5,8,2,1,952.5,404402.06,75154.156,470092.47,126709.77,0,0,1153.5962 +1872,2330,4066,-9,4065,4064,1,0,27,0,0,0,1,1,-9,0,3,8.5217085,8.6733446,0,0,0,-970.25537,-9,1,2,2021,6,1,46,0,1,1,1,14.878934,14.878934,.05,.05,0,0,0,0,0,0,1,1,0,3.8443303,0,45.88,53.37,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,810,-36601.52,6266.5098,0,0,0,0,1957.8831 +1873,2331,4067,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3416004,5.2727098,0,0,-1022.7568,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5509369,5.2158933,38.7,46.76,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,700,78233.656,-55418.668,69198.703,0,0,2166.4341,167.68288 +1874,2332,4068,4069,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0081139,6.5254064,3,5,64.376129,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7757244,36.66,59.38,45.97,51.9,6.666666666666667,1,1,0,0,0,4,2,1,857,188.67969,0,94202.313,0,0,0,592.95337 +1874,2332,4069,4068,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,3,-5,-50.418957,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.3155419,0,0,1,1,0,0,0,45.97,51.9,36.66,59.38,6.666666666666667,1,1,0,0,0,4,2,1,857,188.67969,0,94202.313,0,0,0,592.95337 +1875,2333,4070,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.4536676,9.796525,6.0868464,0,0,-1038.7593,-9,1,1,2021,8,0,35,0,1,0,0,56.890785,56.890785,.05,.05,0,0,0,0,0,0,0,0,0,7.1812091,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,15,4,5,1,604,284258.06,203986.69,323968,161046.19,20024.043,0,5686.8887 +1875,2333,4071,-9,4070,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.542,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,604,284258.06,203986.69,323968,161046.19,20024.043,0,5686.8887 +1875,2334,4072,-9,4070,-9,1,0,18,0,1,0,2,2,1,0,4,5.9128127,6.0716581,0,0,0,-941.43335,-9,1,-9,2021,15,4,12,0,1,4,1,4.188693,4.188693,.05,.05,0,0,0,0,0,0,0,0,0,.90964502,0,25.79,65.03,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,800,-25107.773,7176.8096,0,0,0,836.68878,-446.56747 +1876,2335,4073,4074,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,7,2,17.697557,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,4,9,3,1,171.5,889311.38,426871.88,285462.31,0,0,-251.50751,2173.5327 +1876,2335,4074,4073,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7037945,7.8456869,7,-2,25.165478,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6933198,7.7667952,54.96,53.17,57.06,57.76,10,1,1,0,0,7,9,3,1,171.5,889311.38,426871.88,285462.31,0,0,-251.50751,2173.5327 +1877,2336,4075,4076,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1327524,8.375699,0,30,-3,-52.127441,0,2,2,2021,12,2,40,45,1,2,0,9.7912054,9.7912054,0,0,0,0,0,0,0,2,0,0,0,6.7324128,0,42.3,57.54,52.09,46.14,8.333333333333334,1,1,0,0,9,5,4,1,402,496696.63,412403.78,133018.11,65421.766,0,1707.1835,2792.2549 +1877,2336,4076,4075,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9798365,8.2693558,5.2104173,30,3,-76.06382,0,3,3,2021,9,0,40,40,1,0,0,7.5716658,7.5716658,.05,.05,0,0,0,0,0,2,0,0,0,5.3834324,0,52.09,46.14,42.3,57.54,8.333333333333334,1,1,0,0,6,5,4,1,402,496696.63,412403.78,133018.11,65421.766,0,1707.1835,2792.2549 +1878,2337,4077,4078,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.5981879,8.3174448,6.8883839,10,0,-58.465725,0,-9,-9,2021,13,4,23,22,1,4,0,9.1958885,9.1958885,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4828949,45.81,58.99,49,48,5,1,1,0,0,12,13,4,1,520.5,125568.81,22490.959,119199.7,0,0,3576.0142,2825.2703 +1878,2337,4078,4077,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2007613,7.1558323,0,41,0,-41.092087,0,2,2,2021,11,0,20,25,1,2,0,7.0506153,7.0506153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,45.81,58.99,7,1,1,0,0,12,13,4,1,520.5,125568.81,22490.959,119199.7,0,0,3576.0142,2825.2703 +1879,2338,4079,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,5.4022131,5.5725245,0,0,0,-1002.3546,0,2,1,2021,14,2,18,18,1,2,0,1.7629471,1.7629471,0,0,0,0,0,0,0,2,1,1,0,3.8875084,0,51.04,33.77,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,1713,325244.97,38941.266,150543.56,0,0,0,347.52383 +1880,2339,4080,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.9892521,7.8754444,0,0,0,-909.29504,0,2,3,2021,26,11,45,41,1,11,0,8.3392124,8.3392124,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.69,42.69,-9,-9,1.666666666666667,1,1,0,0,9,10,4,0,851,20792.621,3839.5464,0,0,0,0,1615.4489 +1881,2340,4081,4082,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.5809813,8.4048395,40,6,17.425259,0,2,1,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7316804,7.9236627,45.81,44.2,46.71,47.23,6.666666666666667,1,1,0,0,7,10,5,1,278,564095.25,241563.61,380595.5,0,8139.6587,0,5792.1558 +1881,2340,4082,4081,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,7.8408194,8.5566273,7.4393783,38,-6,-32.314476,0,3,2,2021,17,6,12,12,1,6,0,25.422123,25.422123,0,0,0,1,0,0,0,0,1,1,0,3.8497336,7.7251048,46.71,47.23,45.81,44.2,8.333333333333334,1,1,0,0,10,10,5,1,278,564095.25,241563.61,380595.5,0,8139.6587,0,5792.1558 +1882,2341,4083,4084,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4327812,8.3294668,0,2,-5,82.204651,0,2,3,2021,11,0,40,35,1,2,0,14.229144,14.229144,0,0,0,0,0,0,0,0,0,0,0,1.3853778,0,48,57,50,57,7,2,3,0,0,6,4,5,1,1618,29280.59,0,140911.3,147919.41,637.08252,0,3792.2727 +1882,2341,4084,4083,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,7.6049042,7.8284373,0,2,5,-15.163679,0,-9,-9,2021,10,0,37,37,1,1,0,8.1392832,8.1392832,0,0,0,0,0,0,0,0,0,0,0,8.2102184,0,50,57,48,57,7,2,3,0,0,1,4,5,1,1618,29280.59,0,140911.3,147919.41,637.08252,0,3792.2727 +1883,2342,4085,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2699108,8.6150179,6.683691,0,0,-1054.8785,0,3,3,2021,12,3,42,45,1,3,0,11.707321,11.707321,0,0,0,0,0,0,0,0,1,1,0,0,7.3158216,46.5,58.26,-9,-9,8.333333333333334,4,2,0,0,8,6,5,1,322,1205542.8,643544.06,304096.47,0,0,0,2126.1963 +1883,2343,4086,-9,4085,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7192898,8.7251186,0,0,0,-1057.5533,0,1,-9,2021,7,0,44,48,1,0,1,15.534835,15.534835,.05,.05,0,0,0,0,0,0,1,1,0,2.7566257,0,55.79,52.62,-9,-9,8.333333333333334,4,2,0,0,7,6,5,1,2129,355793.5,-77778.219,0,0,0,0,2939.7766 +1883,2344,4087,-9,4085,-9,1,0,25,0,0,0,1,1,-9,0,2,7.9404206,7.6523085,0,0,0,-1029.0887,0,1,-9,2021,16,5,63,70,1,5,1,4.3395467,4.3395467,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,53.8,-9,-9,3.333333333333333,4,2,0,0,7,6,4,1,140,42492.027,0,0,0,6025.1338,0,291.29221 +1884,2345,4088,4089,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.3348756,7.3224573,0,1,-2,62.751797,-9,3,3,2021,11,0,20,0,1,0,0,8.5502071,8.5502071,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,11,4,5,1,522.5,1078942.5,666226.13,245053.8,50627.984,0,0,3886.7515 +1884,2345,4089,4088,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8160048,8.5108414,0,1,2,2.24582,-9,3,2,2021,11,1,36,0,1,1,0,18.950623,18.950623,0,0,.05,0,0,0,0,0,0,0,0,5.3064809,0,52,54.51,55.36,51.57,3.333333333333333,1,1,0,0,12,4,5,1,522.5,1078942.5,666226.13,245053.8,50627.984,0,0,3886.7515 +1884,2346,4090,-9,4088,4089,1,0,20,0,0,0,2,2,-9,0,3,6.2892194,6.0787964,0,0,0,-921.12433,-9,3,2,2021,25,10,18,0,1,10,1,3.277549,3.277549,0,0,0,0,0,0,0,0,0,0,0,.86952269,0,20.02,61.29,-9,-9,3.333333333333333,1,1,0,0,1,4,2,1,523,20480.928,0,0,0,0,0,-16.632883 +1885,2347,4091,4092,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.4336996,6.2149043,0,42,1,-50.291172,0,3,3,2021,14,2,24,24,1,2,0,3.007287,3.007287,0,0,0,0,0,0,0,0,0,0,0,0,0,50.21,31.27,47.67,50.72,6.666666666666667,2,3,0,0,12,9,2,1,494,463951.44,-15637.352,0,0,0,0,1083.4316 +1885,2347,4092,4091,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.7526789,6.9070373,0,42,-1,88.546066,0,3,3,2021,7,0,40,40,1,0,0,1.8586738,1.8586738,.05,.05,0,0,0,0,0,0,0,0,0,6.553371,0,47.67,50.72,50.21,31.27,8.333333333333334,1,1,0,0,14,9,2,1,494,463951.44,-15637.352,0,0,0,0,1083.4316 +1885,2348,4093,-9,4091,4092,1,1,23,0,0,0,2,2,-9,0,4,8.3301954,8.1567783,0,0,0,-1102.4103,0,2,3,2021,13,3,44,37,1,3,1,9.259059,9.259059,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,269,41742.215,0,0,0,0,4880.9937,1309.8268 +1886,2349,4094,4097,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,5,-6,-31.990555,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4095,-9,4094,4097,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.4389,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4096,-9,4094,4097,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.5817,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4097,4094,4102,4101,1,1,34,0,2,0,2,2,-9,0,4,8.4160566,8.4481373,0,5,6,29.166407,0,3,3,2021,10,0,38,35,1,1,0,14.198286,14.198286,.05,.05,0,0,0,0,0,0,1,1,0,3.2284296,0,50,57,47,57,7,2,3,0,0,1,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2350,4098,-9,4102,4101,1,1,27,0,2,0,2,2,-9,0,4,6.7004642,6.9786305,0,0,0,-942.31439,0,3,3,2021,10,0,30,30,1,1,1,3.1756802,3.1756802,0,0,0,0,0,0,0,0,1,1,0,.56984311,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,266,3012.5208,0,0,0,0,0,921.8302 +1886,2351,4099,-9,4102,4101,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.8901,-9,3,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,452,27199.49,0,0,0,0,829.29541,0 +1886,2352,4100,-9,4102,4101,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-947.28046,-9,3,3,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,432,59874.758,0,0,0,0,-1382.8926,154.7619 +1886,2353,4101,4102,-9,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,1,0,0,8,1,1,248,441965.91,157671.22,239884.03,0,0,0,2507.0327 +1886,2353,4102,4101,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,248,441965.91,157671.22,239884.03,0,0,0,2507.0327 +1887,2354,4103,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-846.24646,0,2,2,2021,6,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,4,2,1,0,6,7,1,0,789,16314.061,98056.242,0,0,0,-1380.2667,0 +1887,2355,4104,-9,4103,-9,1,0,40,0,0,0,1,1,-9,0,4,7.2842708,7.2544112,0,0,0,-973.47906,0,2,-9,2021,8,0,16,16,1,0,1,13.894245,13.894245,0,0,0,0,0,0,0,0,0,0,0,2.6127012,0,51.98,55.03,-9,-9,8.333333333333334,3,4,0,0,6,7,3,0,244,315653.41,54830.719,211479.39,0,0,0,454.93335 +1888,2356,4105,4107,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,7.736824,7.8402739,0,6,0,-96.572731,0,1,1,2021,7,0,22,8,1,0,0,12.510564,12.510564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.57,35.72,8.333333333333334,1,1,0,0,8,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1888,2356,4106,-9,4105,4107,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.9902,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1888,2356,4107,4105,-9,-9,1,1,40,0,1,0,1,1,-9,0,2,8.9603796,8.714242,0,6,0,-120.47629,0,3,2,2021,6,0,41,43,1,0,0,15.736602,15.736602,.05,.05,0,0,0,0,0,0,1,1,0,6.5216537,0,58.57,35.72,55.79,52.62,8.333333333333334,1,1,0,0,6,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1889,2357,4108,4109,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.2188883,6.2546568,7,0,73.099472,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,3.9407868,6.315578,57.38,26.43,4.08,68.75,8.333333333333334,1,1,0,0,0,6,4,1,6358,795801.75,586468,74519.094,0,0,1109.6531,3952.9338 +1889,2357,4109,4108,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.5096617,8.7670479,7,0,-88.595795,0,3,3,2021,33,11,0,0,4,11,0,0,0,0,0,0,1,0,5.8310628,0,0,1,1,0,8.2461548,8.3227949,4.08,68.75,57.38,26.43,1.666666666666667,1,1,0,0,10,6,4,1,6358,795801.75,586468,74519.094,0,0,1109.6531,3952.9338 +1890,2358,4110,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1004.7757,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,1.6377885,27.744623,17.670965,0,1,1,0,0,0,32.5,27.66,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,375,0,0,0,0,0,0,1225.2822 +1891,2359,4111,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.3427334,8.2959471,0,0,-870.4574,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5326271,8.1120653,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,136,1423777.4,1248931,86293.617,0,0,0,2082.1409 +1892,2360,4112,-9,4114,4113,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.5068,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4113,4114,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,9.0058203,8.8915663,0,9,3,36.600887,0,-9,-9,2021,12,0,50,110,1,0,0,16.21208,16.21208,0,0,0,0,0,0,0,0,1,1,0,0,0,53.99,48.04,44.78,56.37,8.333333333333334,1,1,0,0,11,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4114,4113,-9,-9,1,0,30,1,3,0,1,1,-9,0,3,7.1467977,7.178761,0,9,-3,75.422768,0,2,2,2021,13,1,34,17,1,1,0,4.7040043,4.7040043,0,0,0,0,0,0,0,0,1,1,0,1.1307774,0,44.78,56.37,53.99,48.04,8.333333333333334,1,1,0,0,9,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4115,-9,4114,4113,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.15387,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4116,-9,4114,4113,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.12036,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1893,2361,4117,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.1534882,6.7224283,0,0,0,-1071.8187,0,-9,-9,2021,29,12,6,16,1,12,0,17.656757,17.656757,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,57.03,-9,-9,1.666666666666667,1,1,0,0,7,12,2,1,268,-149624.25,130923.89,0,0,1324.8674,0,283.7066 +1893,2362,4118,-9,4117,-9,1,0,24,0,0,0,2,2,0,0,4,0,0,0,0,0,-1054.8208,-9,1,-9,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9844909,0,42.81,46.55,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,298,48255.129,0,0,0,0,0,528.00055 +1894,2363,4119,4120,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7030163,7.9725828,0,9,-3,9.4167318,0,-9,-9,2021,27,11,30,38,1,11,0,10.454957,10.454957,0,0,0,0,0,0,0,0,0,0,0,4.1868849,0,25.82,61.01,25.93,58.74,1.666666666666667,1,1,0,0,10,10,4,1,979,2326455.5,1759056.8,756588.25,121267.53,0,25698.928,2110.3914 +1894,2363,4120,4119,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.9527316,7.9842215,9,3,151.00926,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2574191,7.8360329,25.93,58.74,25.82,61.01,6.666666666666667,1,1,0,0,9,10,4,1,979,2326455.5,1759056.8,756588.25,121267.53,0,25698.928,2110.3914 +1895,2364,4121,-9,4126,4124,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.4786,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4122,-9,4126,4124,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.6366,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4123,-9,4126,4124,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.6525,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4124,4126,-9,-9,1,1,40,1,4,0,2,2,-9,0,4,7.034122,7.3729053,0,17,4,-71.022125,0,-9,2,2021,11,0,30,35,1,0,0,5.0576468,5.0576468,.05,.05,0,0,0,0,0,0,1,1,0,2.4108405,0,51.77,58.57,57.33,53.46,8.333333333333334,2,3,0,0,9,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4125,-9,4126,4124,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-969.05005,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4126,4124,-9,-9,1,0,36,1,4,0,2,2,-9,0,3,7.6193666,7.7704048,0,17,-4,-24.009447,0,3,3,2021,8,0,15,16,1,0,0,16.214046,16.214046,0,0,0,0,0,0,0,0,1,1,0,8.6847086,0,57.33,53.46,51.77,58.57,8.333333333333334,2,3,0,0,9,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1896,2365,4127,4128,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.464304,8.2719488,6,2,97.875191,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2469788,8.6079111,56.33,51.02,58.05,54.52,10,1,1,0,0,0,7,4,1,634,1186844.5,673234.13,259296.91,0,0,0,3578.293 +1896,2365,4128,4127,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,6,-2,-114.66188,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,56.33,51.02,8.333333333333334,1,1,0,0,0,7,4,1,634,1186844.5,673234.13,259296.91,0,0,0,3578.293 +1897,2366,4129,4130,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3879519,6.0452991,10,5,-69.732101,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7186351,6.2557759,61.14,38.35,54.1,49.39,10,1,1,0,0,0,12,2,1,1166.5,310644.75,119853.02,76053,0,0,0,633.1001 +1897,2366,4130,4129,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.0582895,6.0940576,10,-5,65.104881,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8347816,5.801466,54.1,49.39,61.14,38.35,6.666666666666667,1,1,0,0,4,12,2,1,1166.5,310644.75,119853.02,76053,0,0,0,633.1001 +1898,2367,4131,4132,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9021549,8.6923313,5.2883449,4,0,-53.684643,0,2,2,2021,10,0,37,37,1,0,0,24.490442,24.490442,.05,.05,.05,0,0,0,0,0,0,0,0,3.1426251,5.6763301,48.87,58.55,48.3,52.29,8.333333333333334,1,1,0,0,11,10,5,1,405.5,1263168.8,705760.63,380158.06,228736.75,0,0,5446.9951 +1898,2367,4132,4131,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.7625761,8.9926214,0,4,0,57.376881,0,-9,-9,2021,16,5,52,20,1,5,0,16.673813,16.673813,.05,.05,0,0,0,0,0,2,0,0,0,.40269956,0,48.3,52.29,48.87,58.55,8.333333333333334,1,1,0,0,6,10,5,1,405.5,1263168.8,705760.63,380158.06,228736.75,0,0,5446.9951 +1899,2368,4133,-9,4134,4135,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1079.0491,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4134,4135,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,-1,-38.308933,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1682978,0,54.2,57.49,50,50,1.666666666666667,1,1,0,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4135,4134,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.0619202,9.1640043,0,9,1,-157.9817,-9,2,2,2021,11,0,40,0,1,1,0,21.637478,21.637478,.05,.05,0,0,0,0,0,0,1,1,0,5.4253373,0,50,50,54.2,57.49,7,1,1,0,0,1,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4136,-9,4134,4135,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-889.0708,-9,2,2,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,10,1,1,1,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2369,4137,-9,4134,4135,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1014.2809,-9,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9589591,0,38.64,55.03,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,299,94430.414,0,0,0,0,0,509.45578 +1899,2370,4138,-9,4134,4135,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1025.9819,1,2,2,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0655575,0,54.69,57.47,-9,-9,10,1,1,0,0,2,5,1,1,76,178956.44,0,0,0,0,0,-700.2713 +1900,2371,4139,4141,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.5248795,8.680397,0,6,-2,-101.96461,0,3,3,2021,6,0,40,44,1,0,0,16.62001,16.62001,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.73,35.35,52,56,8.333333333333334,1,1,0,0,7,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1900,2371,4140,-9,4139,4141,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.78149,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1900,2371,4141,4139,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.3284235,8.4891195,0,6,2,-110.87774,0,3,3,2021,9,0,40,44,1,1,0,12.068166,12.068166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,38.73,35.35,8,1,1,0,0,1,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1901,2372,4142,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.9263,0,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.33,36.87,-9,-9,5,1,1,0,0,0,9,1,1,820,36443.973,0,0,0,0,0,1636.755 +1902,2373,4143,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,4.667171,4.6602039,0,0,-979.71967,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7574511,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,564,200253.44,4084.2434,159206.58,0,0,0,249.73914 +1903,2374,4144,4145,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.408268,7.3903704,0,20,-3,-34.806931,0,2,2,2021,10,1,31,30,1,1,0,6.677597,6.677597,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,65.21000000000001,44.28,10,1,1,0,0,13,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1903,2374,4145,4144,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6798296,8.8731279,0,20,3,-118.34124,0,2,2,2021,8,0,40,43,1,0,0,16.505007,16.505007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.21000000000001,44.28,64.40000000000001,36.46,8.333333333333334,1,1,0,0,12,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1903,2374,4146,-9,4144,4145,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-894.08337,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,49,-9,-9,10,1,1,0,0,0,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1904,2375,4147,4148,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.2379408,9.1666412,0,7,-4,-13.874947,0,3,3,2021,6,0,38,38,1,0,0,24.392138,24.392138,.05,.05,.05,0,0,0,0,7,0,0,0,2.6823657,0,54.79,55.86,48.18,61.8,8.333333333333334,1,1,0,0,14,4,5,1,613.5,337927.31,84251.688,627235.38,265612.38,52540.395,0,5619.7373 +1904,2375,4148,4147,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.4896412,8.6412678,0,7,4,69.089104,0,-9,-9,2021,9,0,37,38,1,0,0,15.368583,15.368583,0,0,0,0,0,0,0,0,0,0,0,2.595453,0,48.18,61.8,54.79,55.86,1.666666666666667,1,1,0,0,12,4,5,1,613.5,337927.31,84251.688,627235.38,265612.38,52540.395,0,5619.7373 +1905,2376,4149,4150,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,9.0021791,9.011651,0,35,3,65.808144,0,3,2,2021,11,1,70,70,1,1,0,13.522138,13.522138,.05,.05,0,0,0,0,0,14.5,1,1,0,5.8668199,0,58.32,39.69,35.15,19.36,6.666666666666667,1,1,0,0,9,10,5,0,300,335115.97,24933.408,402934.47,25818.271,0,0,4225.002 +1905,2376,4150,4149,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,35,-3,-40.42749,0,2,2,2021,20,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.15,19.36,58.32,39.69,3.333333333333333,1,1,0,1,0,10,5,0,300,335115.97,24933.408,402934.47,25818.271,0,0,4225.002 +1905,2377,4151,-9,4150,4149,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1147.285,1,3,2,2021,10,0,0,30,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,10,1,0,1098,286322.66,0,0,0,0,0,-962.49182 +1905,2378,4152,-9,4150,4149,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-916.59387,-9,3,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.58,50.63,-9,-9,5,1,1,0,0,3,10,1,0,792,38847.332,0,0,0,0,0,-690.28644 +1906,2379,4153,4154,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9653707,7.8168159,0,34,-11,-17.673172,0,3,3,2021,9,0,30,38,1,0,0,7.9937825,7.9937825,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,52.19,39.15,48.86,8.333333333333334,1,1,0,0,10,2,4,1,297,1028138,498880.44,501073.06,0,15063.559,1045.441,3506.8364 +1906,2379,4154,4153,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,8.7005844,8.4793377,30,11,-111.9799,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5103245,8.3069115,39.15,48.86,49.47,52.19,0,1,1,0,0,0,2,4,1,297,1028138,498880.44,501073.06,0,15063.559,1045.441,3506.8364 +1907,2380,4155,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,7.7658377,8.0835323,0,0,0,-1079.8488,0,-9,-9,2021,16,5,44,37,1,5,0,7.6515903,7.6515903,0,0,0,0,0,0,0,0,1,1,0,0,0,36.7,25.21,-9,-9,8.333333333333334,1,1,0,0,14,11,4,1,936,2323092.8,1781939,377574.66,0,97.449547,0,2004.8602 +1908,2381,4156,4157,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,4.8079286,5.1841478,0,39,-3,-15.896614,0,2,2,2021,17,5,44,0,1,5,0,.47943833,.47943833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,54.2,57.49,3.333333333333333,1,1,0,1,8,9,5,1,866,1413693.3,1000534.4,272055.88,0,7388.105,0,3725.4841 +1908,2381,4157,4156,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.0940323,9.3189592,0,39,3,-156.81015,0,1,2,2021,7,0,47,45,1,0,0,20.463356,20.463356,.05,.05,0,0,0,0,0,2,0,0,0,2.2176907,0,54.2,57.49,48.45,57.49,6.666666666666667,1,1,0,0,9,9,5,1,866,1413693.3,1000534.4,272055.88,0,7388.105,0,3725.4841 +1908,2382,4158,-9,4156,4157,1,1,23,0,0,0,2,2,-9,0,4,7.8369145,7.9171257,0,0,0,-843.95154,-9,1,1,2021,13,3,45,0,1,3,1,6.5156178,6.5156178,.05,.05,0,0,0,0,0,0,0,0,0,.73210275,0,42.86,55.92,-9,-9,5,1,1,0,0,3,9,3,1,552,182847.02,-65725.391,0,0,0,0,826.7951 +1909,2383,4159,-9,4160,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.4716,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2383,4160,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,6.3873239,6.7479305,0,0,-1004.5825,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.6617808,0,41.53,44.53,-9,-9,6.666666666666667,1,1,0,1,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2383,4161,-9,4160,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.97736,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2384,4162,-9,4160,-9,1,1,28,0,2,0,2,2,-9,0,4,7.7468152,7.6288314,0,0,0,-1148.2026,0,2,2,2021,21,9,30,33,1,9,1,9.4004831,9.4004831,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,61.39,-9,-9,6.666666666666667,4,2,0,0,5,8,3,0,78,126757.4,0,0,0,0,0,555.10596 +1909,2385,4163,-9,4160,-9,1,0,22,0,2,0,2,2,-9,0,3,6.7022085,6.0994372,0,0,0,-1045.1561,0,2,-9,2021,18,6,9,26,1,6,1,6.80194,6.80194,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,56.68,-9,-9,5,4,2,0,0,4,8,2,0,1101,119839.56,0,0,0,0,0,515.67108 +1910,2386,4164,4165,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3674994,8.426343,0,2,1,-121.47704,0,2,2,2021,12,1,40,40,1,1,0,11.225368,11.225368,0,0,0,0,0,0,0,0,0,0,0,0,0,44.83,57.81,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,0,493,34961.926,22657.004,103818.73,169002.34,0,0,3282.4585 +1910,2386,4165,4164,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8220811,7.9669986,0,2,-1,-39.0993,0,-9,-9,2021,2,0,37,50,1,0,0,9.0934715,9.0934715,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.83,57.81,10,1,1,0,0,2,9,5,0,493,34961.926,22657.004,103818.73,169002.34,0,0,3282.4585 +1911,2387,4166,4167,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.5028124,8.3869896,0,8,-5,59.151749,0,2,2,2021,14,2,61,45,1,2,0,8.6315355,8.6315355,0,0,0,0,0,0,0,0,0,0,0,0,0,52.01,48.98,60.9,36.71,8.333333333333334,1,1,0,0,10,1,5,0,1725.5,-57101.598,0,125410.86,45360.469,17217.652,0,3193.6055 +1911,2387,4167,4166,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5784407,8.4233704,0,8,5,-7.6331792,0,2,1,2021,14,2,36,44,1,2,0,14.077197,14.077197,0,0,0,0,0,0,0,0,0,0,0,0,0,60.9,36.71,52.01,48.98,8.333333333333334,1,1,0,0,7,1,5,0,1725.5,-57101.598,0,125410.86,45360.469,17217.652,0,3193.6055 +1912,2388,4168,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1010.8158,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.69,32.65,-9,-9,6.666666666666667,1,1,0,0,1,1,1,1,282,-2700.9497,0,0,0,0,0,452.37708 +1912,2389,4169,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,0,0,0,0,0,-942.39362,0,-9,-9,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5914106,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,5,1,1,1,403,438988.13,176584.61,122332.48,0,0,0,938.93665 +1912,2390,4170,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.9463234,7.8672309,0,0,0,-937.52728,0,-9,-9,2021,12,0,40,50,1,2,0,7.3541069,7.3541069,0,0,0,0,0,0,0,0,1,1,0,0,0,41.74,55.02,-9,-9,6.666666666666667,1,1,0,0,5,1,4,1,343,130333.41,0,0,0,0,0,1565.3488 +1913,2391,4171,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,6.2870617,6.3834267,0,0,-1044.5546,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9386334,6.1632929,56.42,37.45,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,114,-15601.215,-35983.195,0,0,0,0,1356.4663 +1914,2392,4172,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1960611,7.5313988,0,0,-926.6803,0,3,2,2021,9,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1647701,53.63,40.71,-9,-9,6.666666666666667,1,1,0,0,11,5,3,0,384,2119664.3,1086184.4,549503.19,0,1281.8339,0,1957.0405 +1914,2393,4173,-9,4172,-9,1,0,20,0,0,0,2,2,-9,0,3,7.817852,7.9290209,0,0,0,-1012.8195,0,1,-9,2021,9,2,30,41,1,2,0,10.420749,10.420749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.15,42.96,-9,-9,6.666666666666667,1,1,0,0,4,5,4,0,1703,-65085.496,-42861.031,0,0,0,0,858.26617 +1915,2394,4174,4175,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,10,2,68.171074,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0517488,0,52,48,51.24,58.84,7,1,1,0,0,0,4,2,1,360,309308.97,63450.355,272247.44,0,0,0,1566.0181 +1915,2394,4175,4174,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.7806706,5.8586392,50,-2,-53.584015,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6888347,6.1526866,51.24,58.84,52,48,8.333333333333334,1,1,0,0,6,4,2,1,360,309308.97,63450.355,272247.44,0,0,0,1566.0181 +1915,2395,4176,-9,4175,4174,1,1,34,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1027.2994,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9555306,0,46.5,51.63,-9,-9,8.333333333333334,1,1,1,0,11,4,1,1,480,126603.56,0,0,0,0,0,531.13519 +1916,2396,4177,4178,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,6,20,0,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.37,19.58,38.9,42.69,5,4,2,0,0,0,4,1,0,614.5,-4495.0859,58985.301,61711.781,0,0,5886.5225,1985.0509 +1916,2396,4178,4177,-9,-9,1,0,31,0,0,0,2,2,-9,1,3,0,0,0,6,-20,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,42.69,46.37,19.58,5,1,1,1,0,0,4,1,0,614.5,-4495.0859,58985.301,61711.781,0,0,5886.5225,1985.0509 +1917,2397,4179,4180,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.4887977,8.0887127,26,-3,20.017965,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.415545,7.7769351,52.38,55.6,58.3,47.38,8.333333333333334,1,1,0,0,5,9,3,1,278,1188666.9,693176.31,339558.13,0,2753.3081,0,3153.9258 +1917,2397,4180,4179,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4253187,7.2370524,7,3,14.854458,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8133173,58.3,47.38,52.38,55.6,8.333333333333334,1,1,0,0,7,9,3,1,278,1188666.9,693176.31,339558.13,0,2753.3081,0,3153.9258 +1918,2398,4181,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.6547656,7.8696227,6.2113199,0,0,-944.31543,0,2,3,2021,5,0,32,32,1,0,0,5.7028346,5.7028346,.05,.05,0,0,0,0,0,0,1,1,0,5.6326108,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1054,777592.06,79397.539,89130.813,98533.875,4288.0483,264.51263,1482.7688 +1919,2399,4182,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.6733909,7.283792,0,0,-1077.8818,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7375088,7.7296453,44.72,38.06,-9,-9,5,1,1,0,0,0,9,3,1,762,860092,124277.05,620905.88,0,0,0,2341.0681 +1919,2400,4183,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.864151,6.1819892,0,0,-966.14679,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.663918,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1670,332553.22,28077.73,250155.7,0,0,0,1009.327 +1920,2401,4184,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.3887367,7.7148538,0,0,0,-905.4903,0,-9,-9,2021,10,3,29,36,1,3,0,5.8714824,5.8714824,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,422,-87934.258,0,0,0,0,1265.8934,1433.4656 +1921,2402,4185,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.078999,7.1072726,0,0,-1180.7661,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,5.8141479,0,44.847481,0,1,1,0,0,6.8418131,43.51,30.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,281,497924.78,71917.414,257429.34,0,0,0,1002.145 +1922,2403,4186,4187,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.3171496,6.3147168,23,9,61.069649,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,13.513273,0,0,1,1,0,5.9653583,5.9757242,42.66,32.46,63.65,35.93,6.666666666666667,1,1,0,0,0,9,2,1,507,483648,19964.275,327304.31,0,0,0,1679.0787 +1922,2403,4187,4186,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,8,0,94.676338,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,35.93,42.66,32.46,8.333333333333334,1,1,0,0,7,9,2,1,507,483648,19964.275,327304.31,0,0,0,1679.0787 +1923,2404,4188,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.1343508,8.2618294,0,0,-985.18732,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.5286102,7.7213321,45.59,46.83,-9,-9,5,1,1,0,0,0,6,3,1,893,565326.38,249704.41,0,0,0,0,2251.177 +1924,2405,4189,4190,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.9955659,7.9591746,0,15,2,18.485529,0,2,2,2021,9,0,25,22,1,0,0,12.702246,12.702246,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,59.29,49.68,8.333333333333334,1,1,0,0,13,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4190,4189,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.203311,8.3886471,0,15,-2,-92.9767,0,3,2,2021,11,1,23,23,1,1,0,16.919073,16.919073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,46.08,57.2,8.333333333333334,1,1,0,0,12,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4191,-9,4189,4190,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-944.35516,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4192,-9,4189,4190,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.0562,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1925,2406,4193,4194,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.6879439,7.9376493,32,0,57.859482,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9159064,51.25,36.02,59.43,58.05,8.333333333333334,1,1,0,0,0,2,3,1,519,1311254.3,917580.19,424624.44,0,0,39.739204,3198.375 +1925,2406,4194,4193,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,6.9269562,6.6443019,32,0,-11.632766,0,1,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0956063,6.9368563,59.43,58.05,51.25,36.02,10,1,1,0,0,0,2,3,1,519,1311254.3,917580.19,424624.44,0,0,39.739204,3198.375 +1926,2407,4195,4196,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.0007601,7.8147612,0,20,7,-35.440838,0,3,3,2021,11,0,66,65,1,0,0,4.4563632,4.4563632,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,40.14,16.93,10,1,1,0,0,13,1,3,0,675.5,303468.19,13054.822,229632.75,0,0,0,1934.8828 +1926,2407,4196,4195,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,20,-7,-160.43875,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.14,16.93,60.29,52.11,1.666666666666667,1,1,0,0,9,1,3,0,675.5,303468.19,13054.822,229632.75,0,0,0,1934.8828 +1926,2408,4197,-9,4196,4195,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-899.66248,0,2,2,2021,24,6,0,45,3,6,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,22.86,45.17,-9,-9,0,1,1,1,0,2,1,1,0,210,30389.572,0,0,0,0,0,644.42029 +1926,2409,4198,-9,4196,4195,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-964.17279,0,2,2,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,43.46,46.32,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,1538,0,0,0,0,0,0,1318.2079 +1927,2410,4199,4200,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,5.8232298,5.5490756,49,-3,-22.662449,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9717574,5.4436798,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,4,9,4,1,1843,1446890.5,520882.22,412258.94,0,0,0,4553.6206 +1927,2410,4200,4199,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.6715088,8.3044538,49,3,-98.062569,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0032568,8.5984287,54.79,55.86,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,1843,1446890.5,520882.22,412258.94,0,0,0,4553.6206 +1928,2411,4201,-9,4202,4203,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-948.11786,-9,2,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.32726368,0,42.58,58.53,-9,-9,6.666666666666667,4,2,0,0,0,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1928,2411,4202,4203,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8494916,7.9728074,0,20,-1,18.623459,0,3,3,2021,11,1,40,40,1,1,0,8.5836496,8.5836496,.05,.05,0,0,0,0,0,0,0,0,0,7.6531081,0,47.38,52.55,52.82,53.97,6.666666666666667,2,3,0,0,12,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1928,2411,4203,4202,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4834785,9.311223,0,19,1,1.3862163,0,2,1,2021,9,0,40,45,1,0,0,36.88678,36.88678,.05,.05,0,0,0,0,0,0,0,0,0,3.6720855,0,52.82,53.97,47.38,52.55,8.333333333333334,1,1,0,0,8,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1929,2412,4204,4205,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,63,-3,19.477419,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.3645202,0,51.24,58.84,61.19,42.11,10,1,1,0,0,0,10,2,1,1712.5,701956,119150.63,410670.31,0,0,0,504.83563 +1929,2412,4205,4204,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.0691929,5.7237496,63,3,53.260853,0,-9,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0089583,5.9644451,61.19,42.11,51.24,58.84,10,1,1,0,0,0,10,2,1,1712.5,701956,119150.63,410670.31,0,0,0,504.83563 +1929,2413,4206,-9,4204,4205,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1049.9364,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,39.48,-9,-9,10,1,1,0,0,0,10,1,1,819,-192883.75,0,0,0,0,0,1364.569 +1930,2414,4207,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,0,0,-970.95972,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,1,0,528,158095.13,0,0,0,0,0,1128.1371 +1931,2415,4208,4209,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.8761778,9.1065054,0,25,0,-147.70755,0,2,-9,2021,10,0,42,48,1,0,0,17.330637,17.330637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.01,44.96,57.16,56.15,8.333333333333334,1,1,0,0,14,8,5,1,555,1133449.3,550932.69,625082.56,20859.941,0,0,4508.7798 +1931,2415,4209,4208,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4679155,8.1869516,0,25,0,100.82566,0,3,2,2021,8,0,37,38,1,0,0,13.391695,13.391695,.05,.05,.05,0,0,0,0,0,0,0,0,1.8194847,0,57.16,56.15,61.01,44.96,8.333333333333334,1,1,0,0,14,8,5,1,555,1133449.3,550932.69,625082.56,20859.941,0,0,4508.7798 +1931,2416,4210,-9,4208,4209,1,0,21,0,0,0,2,2,-9,0,3,8.0713015,8.2783756,0,0,0,-1033.0895,0,2,2,2021,17,5,9,40,1,5,1,38.547344,38.547344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.53,52.76,-9,-9,3.333333333333333,1,1,0,1,2,8,4,1,961,14057.184,35929.816,0,0,0,0,2200.2046 +1931,2417,4211,-9,4208,4209,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-1009.7485,-9,2,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,197,-155463.36,0,0,0,0,0,277.12955 +1932,2418,4212,-9,4213,4214,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1171.3998,-9,2,3,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47129893,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1932,2418,4213,4214,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.2591991,8.358139,0,6,4,38.790485,0,3,2,2021,6,0,37,37,1,0,0,12.007333,12.007333,.05,.05,0,0,0,0,0,0,1,1,0,2.9612317,0,57.06,57.76,57.33,53.46,10,1,1,0,0,7,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1932,2418,4214,4213,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.6118736,8.7165613,0,6,-4,34.059986,0,3,3,2021,6,0,49,47,1,0,0,15.643184,15.643184,.05,.05,0,0,0,0,0,2,1,1,0,4.0949631,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1933,2419,4215,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,6.4627471,6.469521,0,0,-976.87573,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,3.5578587,0,17.983044,0,1,1,0,5.4334607,6.3231144,34.21,51.94,-9,-9,10,1,1,0,0,0,9,2,1,1603,-22587.789,0,0,0,0,0,-53.020767 +1934,2420,4216,4217,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.3947239,8.3356495,0,13,5,15.337819,-9,2,2,2021,8,0,42,0,1,0,0,10.908334,10.908334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,9,2,5,1,1585.5,892462.94,539583.94,196068.38,81979.18,0,0,3281.9221 +1934,2420,4217,4216,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4487896,8.5362921,0,14,-5,58.283253,-9,2,2,2021,7,0,37,0,1,0,0,12.814592,12.814592,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.33,53.46,10,1,1,0,0,9,2,5,1,1585.5,892462.94,539583.94,196068.38,81979.18,0,0,3281.9221 +1934,2421,4218,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1634874,7.7635012,0,0,0,-955.78998,-9,-9,-9,2021,9,0,37,0,1,1,0,12.878625,12.878625,0,0,0,0,0,0,0,0,0,0,0,2.2592065,0,53,54,-9,-9,8,1,1,0,0,1,2,4,1,383,281408.44,274845.06,10794.143,0,0,0,1736.2185 +1935,2422,4219,4220,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,8.7107201,8.258709,49,16,-82.10614,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.554163,55.83,54.24,58.32,50.22,10,1,1,0,0,0,12,4,1,939.5,403586.19,154542.55,245269.06,0,0,0,3214.4595 +1935,2422,4220,4219,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.565711,5.8153591,49,-16,58.277088,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7224188,5.7229056,58.32,50.22,55.83,54.24,8.333333333333334,1,1,0,0,5,12,4,1,939.5,403586.19,154542.55,245269.06,0,0,0,3214.4595 +1936,2423,4221,4222,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.0209723,7.852149,35,6,57.920101,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.9577332,51.75,51.83,54.2,57.49,8.333333333333334,1,1,0,0,13,8,4,1,420.5,494614.19,92952.07,409273.38,0,0,0,2447.8018 +1936,2423,4222,4221,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.94276,7.9233322,0,35,-6,20.540489,0,2,2,2021,8,0,19,22,1,0,0,14.151897,14.151897,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.75,51.83,10,1,1,0,0,13,8,4,1,420.5,494614.19,92952.07,409273.38,0,0,0,2447.8018 +1936,2424,4223,-9,4222,4221,1,1,28,0,0,0,2,2,-9,0,5,8.7798738,8.6882439,0,0,0,-1046.2772,0,2,2,2021,12,0,49,49,1,0,1,12.648321,12.648321,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,552,-20272.414,159476.48,0,0,-163.82401,0,2737.1646 +1936,2425,4224,-9,4222,4221,1,0,22,0,0,0,2,2,-9,0,3,7.80966,7.7892466,0,0,0,-1023.2872,0,2,2,2021,18,6,40,40,1,6,1,5.3989334,5.3989334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.25,47.76,-9,-9,5,1,1,0,0,6,8,3,1,842,52910.219,36080.879,0,0,0,0,1309.4241 +1937,2426,4225,4226,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.5520535,8.0974092,53,-5,106.09753,0,2,2,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4813972,7.7157755,57.73,25.39,58.26,38.35,6.666666666666667,1,1,0,0,0,2,5,1,511.5,1017816.8,684282.5,0,0,0,0,4824.5254 +1937,2426,4226,4225,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.457901,8.1740932,53,5,-81.461151,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6301603,8.4826298,58.26,38.35,57.73,25.39,6.666666666666667,1,1,0,0,9,2,5,1,511.5,1017816.8,684282.5,0,0,0,0,4824.5254 +1938,2427,4227,-9,4229,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.88416,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4228,-9,4229,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1001.6705,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4229,-9,-9,-9,1,0,45,0,3,0,2,2,-9,1,4,0,0,0,0,0,-940.1402,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4230,-9,4229,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1010.4562,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.1,50.78,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1939,2428,4231,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.094862,8.3363895,0,4,1,28.884501,0,2,-9,2021,7,0,60,60,1,0,0,6.7015901,6.7015901,.05,.05,0,0,0,0,0,0,0,0,0,2.5437622,0,58.75,48.57,49,56,8.333333333333334,1,1,0,0,10,2,3,1,123,979324.69,777319.81,107625.2,0,4695.189,6868.2144,1532.8424 +1940,2429,4232,4233,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.4056978,9.3748198,0,9,-1,95.578255,0,-9,-9,2021,10,1,36,39,1,1,0,27.42906,27.42906,0,0,0,0,0,0,0,0,0,0,0,7.3817453,0,57.06,57.76,31.58,61.01,8.333333333333334,1,1,0,0,9,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4233,4232,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.871191,8.9042845,0,9,1,-52.531982,0,2,2,2021,15,4,32,35,1,4,0,21.966469,21.966469,0,0,0,0,0,0,0,0,0,0,0,1.5174663,0,31.58,61.01,57.06,57.76,6.666666666666667,1,1,0,0,13,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4234,-9,4233,4232,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.11316,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4235,-9,4233,4232,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.3017,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1941,2430,4236,4237,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,55,-3,13.618127,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.63,45.75,21.97,21.3,1.666666666666667,1,1,0,0,0,6,2,1,453.5,165034.36,-12175.761,174101.52,0,0,0,1344.738 +1941,2430,4237,4236,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,4.8622723,5.1453018,55,3,85.866707,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,29.464867,0,0,1,1,0,0,5.107605,21.97,21.3,47.63,45.75,1.666666666666667,1,1,0,0,0,6,2,1,453.5,165034.36,-12175.761,174101.52,0,0,0,1344.738 +1942,2431,4238,4239,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,47,-1,-45.04031,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0814056,0,49.41,58.28,59.43,58.05,8.333333333333334,1,1,0,0,0,13,4,1,895.5,1208926.9,572383.31,281326,0,2227.4502,0,4079.3564 +1942,2431,4239,4238,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.3351908,8.5285597,47,1,60.699177,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.02069,8.6787872,59.43,58.05,49.41,58.28,10,1,1,0,0,5,13,4,1,895.5,1208926.9,572383.31,281326,0,2227.4502,0,4079.3564 +1943,2432,4240,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,7.8934789,7.7988372,0,0,0,-1008.1644,0,3,3,2021,9,0,15,25,1,0,0,18.353956,18.353956,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,15,13,3,1,394,55797.594,.21771498,235596.11,141686.86,8817.8789,3724.2854,1071.6803 +1943,2433,4241,-9,4240,-9,1,1,33,0,0,0,2,2,-9,0,3,8.2587433,8.4591274,0,0,0,-1230.3895,0,3,-9,2021,6,0,43,35,1,0,0,9.4918356,9.4918356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.33,53.39,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,892,-2646.3684,-79827.531,0,0,4763.6904,0,1928.2068 +1944,2434,4242,4243,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,7.4039354,7.86164,0,6,0,-85.107582,0,2,2,2021,6,0,37,24,1,0,0,6.3045692,6.3045692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,49.52,52.97,8.333333333333334,1,1,0,0,10,13,3,0,678.5,57777.141,-108422.02,158380.91,95192.5,0,0,2629.1597 +1944,2434,4243,4242,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.8209071,7.7710152,0,6,0,-164.85527,0,2,2,2021,10,0,37,37,1,0,0,6.7445693,6.7445693,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,52.97,62.49,55.09,8.333333333333334,1,1,0,0,11,13,3,0,678.5,57777.141,-108422.02,158380.91,95192.5,0,0,2629.1597 +1945,2435,4244,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1036.3434,0,-9,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,32.48,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,298,232488.03,0,0,0,0,0,1263.6478 +1945,2436,4245,4246,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,6.6388035,6.7883754,0,3,10,46.227421,0,-9,-9,2021,11,1,20,35,1,1,0,4.6923428,4.6923428,0,0,0,0,0,0,0,0,1,1,0,6.3868747,0,32.26,60.74,33.07,57.08,6.666666666666667,1,1,0,1,4,1,2,1,1107.5,220646.56,48919.914,0,0,0,0,543.91516 +1945,2436,4246,4245,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,6.5823045,6.7524333,0,3,-10,73.856026,0,-9,-9,2021,20,8,50,35,1,8,0,1.871498,1.871498,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,57.08,32.26,60.74,1.666666666666667,1,1,0,1,3,1,2,1,1107.5,220646.56,48919.914,0,0,0,0,543.91516 +1946,2437,4247,4248,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.7097783,5.1308036,6,-2,110.65456,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9441906,5.0228529,59.53,56.44,57.06,57.76,10,1,1,0,0,5,10,4,1,561,1439006.8,816642.75,554609,0,0,0,3197.0854 +1946,2437,4248,4247,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.165246,8.009799,6,2,-1.8838584,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.214582,8.1663418,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,0,10,4,1,561,1439006.8,816642.75,554609,0,0,0,3197.0854 +1947,2438,4249,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.0640898,8.1114178,0,0,0,-1050.9396,0,2,2,2021,6,0,39,39,1,0,0,9.6356363,9.6356363,.05,.05,0,0,0,0,0,0,0,0,0,2.395395,0,59.46,30.92,-9,-9,10,1,1,0,0,9,5,4,1,805,140684.67,109427.77,0,0,293.50412,0,1881.4905 +1947,2439,4250,-9,4249,-9,1,0,33,0,0,0,1,1,-9,0,2,7.3754773,7.3924093,0,0,0,-939.18207,0,2,3,2021,8,0,40,36,1,0,1,6.1185417,6.1185417,0,0,0,0,0,0,0,0,0,0,0,2.4196692,0,51.08,45.97,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,625,292572.16,0,133674.47,21983.131,0,0,602.49902 +1948,2440,4251,4252,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4966722,6.3091927,7,3,9.7370892,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2630105,6.9604735,50.57,52.35,51.48,39.17,8.333333333333334,1,1,0,0,0,12,2,1,1186.5,150052.08,115726.52,42449.547,0,0,0,1086.1096 +1948,2440,4252,4251,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.7058311,5.6666365,7,-3,50.203079,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6316876,5.3961892,51.48,39.17,50.57,52.35,6.666666666666667,1,1,0,0,0,12,2,1,1186.5,150052.08,115726.52,42449.547,0,0,0,1086.1096 +1949,2441,4253,4254,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,1,5,-148.18115,-9,3,2,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.75,19.69,19.57,31.76,5,1,1,0,0,0,4,3,1,473,277938.59,288993.25,143111.81,65937.719,0,0,1761.4607 +1949,2441,4254,4253,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,8.1655025,8.1085606,0,1,-5,-60.273655,-9,3,3,2021,30,10,35,0,1,10,0,10.834224,10.834224,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,19.57,31.76,25.75,19.69,5,1,1,0,0,11,4,3,1,473,277938.59,288993.25,143111.81,65937.719,0,0,1761.4607 +1950,2442,4255,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0226469,8.024188,0,0,0,-951.7724,0,-9,-9,2021,7,0,32,25,1,0,0,9.6745691,9.6745691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1225,273507.09,33956.074,0,0,0,0,115.06046 +1951,2443,4256,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9252381,7.7399645,0,0,0,-978.24963,0,2,2,2021,7,0,40,40,1,0,0,9.1243601,9.1243601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.3,42.49,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,1188,-2488.2625,63454.93,0,0,0,0,1431.564 +1952,2444,4257,-9,4258,4259,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1028.891,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,10,1,1,0,0,0,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2444,4258,4259,-9,-9,1,0,57,0,1,0,2,2,-9,0,5,0,0,0,28,1,104.25742,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.61,58.31,57.16,56.15,8.333333333333334,1,1,0,0,8,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2444,4259,4258,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.2861052,8.0556841,0,28,-1,-19.505688,0,3,3,2021,6,0,30,30,1,0,0,13.32684,13.32684,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.61,58.31,8.333333333333334,1,1,0,0,11,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2445,4260,-9,4258,4259,1,1,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-1017.5975,1,1,1,2021,6,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,393,58392.598,0,0,0,3814.0552,0,1000.1932 +1952,2446,4261,-9,4258,4259,1,0,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-1089.3687,-9,2,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0070598647,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,1540,-128916.76,0,0,0,0,0,106.39378 +1953,2447,4262,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1060.9192,1,3,3,2021,12,4,0,36,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,47.63,-9,-9,6.666666666666667,2,3,0,0,1,9,1,0,97,53671.715,0,0,0,0,0,823.27203 +1954,2448,4263,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1167.703,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.55,48.3,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,448,90434.359,0,0,0,2015.2081,0,1020.1288 +1955,2449,4264,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,6.1000085,6.1395917,0,0,-1024.2937,0,3,3,2021,30,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6407598,6.1158638,29.78,17.81,-9,-9,0,1,1,0,0,3,13,2,0,2067,292051.25,115291.67,103317.9,0,0,0,1307.3827 +1956,2450,4265,-9,4267,4268,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.4022,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4266,-9,4267,4268,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4985,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4267,4268,-9,-9,1,0,40,0,3,0,3,3,-9,0,4,8.1536922,8.1630478,0,2,-10,-13.68983,0,-9,-9,2021,6,0,32,0,1,0,0,11.399032,11.399032,0,0,0,0,0,0,0,2,1,1,0,0,0,43.45,52.84,56.94,41.3,8.333333333333334,1,1,0,0,11,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4268,4267,-9,-9,1,1,50,0,3,0,1,1,-9,0,3,9.3107166,9.5553207,0,2,10,-46.843292,-9,3,2,2021,7,0,37,0,1,0,0,51.167065,51.167065,.05,.05,0,0,0,0,0,0,1,1,0,7.4424567,0,56.94,41.3,43.45,52.84,6.666666666666667,1,1,0,0,10,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1957,2451,4269,4270,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9916582,8.0473871,0,30,-2,21.344942,0,2,2,2021,12,1,33,32,1,1,0,10.136024,10.136024,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.66,57.83,20.4,61.16,8.333333333333334,1,1,0,0,12,2,5,1,672,372453.91,59359.695,304577.5,40135.684,0,0,3819.4087 +1957,2451,4270,4269,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7207718,8.9050751,0,30,2,-27.900795,0,3,3,2021,19,6,43,47,1,6,0,22.22891,22.22891,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,20.4,61.16,44.66,57.83,1.666666666666667,1,1,0,0,12,2,5,1,672,372453.91,59359.695,304577.5,40135.684,0,0,3819.4087 +1957,2452,4271,-9,4269,4270,1,0,20,0,0,0,2,2,1,0,2,5.6988106,6.1432095,0,0,0,-1079.6855,-9,2,1,2021,12,3,37,0,1,3,1,1.1465167,1.1465167,0,0,0,0,0,0,0,0,1,1,0,3.481153,0,19.09,57.83,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,583,-109808.1,0,0,0,0,0,-403.81198 +1958,2453,4272,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,3,5.1117435,4.8483539,0,0,0,-1013.5345,0,2,3,2021,11,1,6,6,1,1,0,2.7992258,2.7992258,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,55.36,-9,-9,1.666666666666667,1,1,0,0,3,7,2,1,2094,-14588.074,0,0,0,0,0,642.50775 +1959,2454,4273,-9,4277,4275,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.2157,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4274,-9,4277,4275,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.62933,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4275,4277,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,0,0,0,6,6,-25.269114,0,2,1,2021,20,6,0,38,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.13,61.39,44.12,42.96,5,2,3,1,1,7,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4276,-9,4277,4275,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-956.15747,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4277,4275,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,5.911725,5.7246876,0,16,-6,59.640259,0,2,2,2021,15,3,15,10,1,3,0,2.3937311,2.3937311,0,0,0,0,0,0,0,0,1,1,0,0,0,44.12,42.96,34.13,61.39,6,2,3,0,1,8,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1960,2455,4278,4279,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.0794368,5.0208559,7,1,93.361,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1889906,5.0896459,40.98,55.39,56.23,52.63,8.333333333333334,1,1,0,0,0,11,4,1,2298,1346925,951169.63,296687.63,0,0,584.05157,3052.1265 +1960,2455,4279,4278,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,8.1374426,8.3507929,7,-1,-119.79988,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4053702,8.2371454,56.23,52.63,40.98,55.39,8.333333333333334,1,1,0,0,0,11,4,1,2298,1346925,951169.63,296687.63,0,0,584.05157,3052.1265 +1961,2456,4280,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.8152657,9.1556654,0,0,0,-1036.2656,0,2,2,2021,14,5,40,40,1,5,0,16.855146,16.855146,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.1,48.4,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,159,73438.828,38310.664,0,0,2024.4938,485.67374,2775.2407 +1962,2457,4281,4282,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.3656683,7.2072744,33,-1,25.451523,-9,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,4.0190568,6.8591332,58.32,50.22,52,54.51,8.333333333333334,1,1,0,0,4,6,3,1,953,434063.78,184248.66,134555.91,0,0,0,2150.5435 +1962,2457,4282,4281,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0148745,7.3455186,5.738091,33,1,-28.204512,-9,-9,-9,2021,10,0,10,0,1,0,0,10.369676,10.369676,0,0,0,0,0,0,0,0,0,0,0,6.0251646,5.8081951,52,54.51,58.32,50.22,8.333333333333334,1,1,0,0,9,6,3,1,953,434063.78,184248.66,134555.91,0,0,0,2150.5435 +1963,2458,4283,4284,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.9971342,7.9349952,0,5,5,81.906509,0,2,2,2021,16,5,38,38,1,5,0,8.5939903,8.5939903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,58.47,50.22,8.333333333333334,1,1,0,0,11,2,5,1,865.5,552192.38,293280.38,209621.03,65081.465,0,1403.1995,4181.6885 +1963,2458,4284,4283,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.9280853,8.9013472,0,5,-5,36.58316,0,-9,-9,2021,7,0,35,35,1,0,0,22.356976,22.356976,.05,.05,0,0,0,0,0,0,0,0,0,3.4204433,0,58.47,50.22,49.58,55.59,5,1,1,0,0,5,2,5,1,865.5,552192.38,293280.38,209621.03,65081.465,0,1403.1995,4181.6885 +1963,2459,4285,-9,4283,4284,1,1,19,0,0,0,2,2,-9,0,3,6.7994723,6.6096492,0,0,0,-1067.28,0,2,1,2021,9,0,14,16,1,0,1,7.5809541,7.5809541,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,47.62,-9,-9,8.333333333333334,1,1,0,1,3,2,2,1,84,81311.594,0,0,0,1369.2333,-525.21307,1132.1569 +1964,2460,4286,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5649476,7.4786592,0,0,-983.91333,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3314528,7.4139066,57.16,56.15,-9,-9,10,1,1,0,0,5,4,3,1,469,526316.81,322131.03,139344.02,0,0,0,1276.1281 +1965,2461,4287,4289,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3135338,8.3308105,0,7,-1,12.633001,0,2,1,2021,6,0,37,43,1,0,0,12.29739,12.29739,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.55,43.6,8.333333333333334,1,1,0,0,8,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1965,2461,4288,-9,4289,4287,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1002.0858,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1965,2461,4289,4287,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.7851191,7.9889846,0,7,1,-106.79745,0,3,3,2021,10,3,35,35,1,3,0,9.8804598,9.8804598,0,0,0,0,0,0,0,0,1,1,0,4.5664883,0,41.55,43.6,57.16,56.15,3.333333333333333,1,1,0,0,7,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1966,2462,4290,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.5323567,6.5058846,0,0,-1057.7327,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6076994,6.7626772,51.25,50.81,-9,-9,5,1,1,0,0,5,7,2,1,384,255578.86,103323.59,172938.72,0,0,0,434.32748 +1967,2463,4291,4292,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.0210648,8.5475645,6.6967201,2,11,76.590881,0,2,2,2021,13,1,45,45,1,1,0,9.0309782,9.0309782,.05,.05,0,0,0,0,0,0,0,0,0,1.3884732,7.24437,45.13,37.37,27.81,65.69,3.333333333333333,1,1,0,0,8,10,5,1,906,920711.25,485396.41,364874.69,0,0,0,5019.6191 +1967,2463,4292,4291,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.4783545,8.8598433,7.1157403,2,-11,35.994923,0,-9,2,2021,30,12,38,37,1,12,0,10.798229,10.798229,.05,.05,0,0,0,0,0,2,0,0,0,7.2155643,7.3385425,27.81,65.69,45.13,37.37,1.666666666666667,1,1,0,0,11,10,5,1,906,920711.25,485396.41,364874.69,0,0,0,5019.6191 +1968,2464,4293,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0782719,8.4325705,0,0,0,-881.39893,0,3,3,2021,9,0,42,45,1,1,0,8.3528576,8.3528576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,8,1,1,0,0,13,9,4,1,599,1181929.6,607070.94,272153.13,0,0,0,744.01581 +1969,2465,4294,4295,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,54,-7,-31.142633,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,47.08,39.28,43.4,49.68,5,1,1,0,0,0,6,2,1,455,264430.63,84853.367,146466.09,0,0,0,1450.2307 +1969,2465,4295,4294,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.8794169,6.8879857,54,7,-135.02249,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1060138,6.7101927,43.4,49.68,47.08,39.28,8.333333333333334,1,1,0,0,1,6,2,1,455,264430.63,84853.367,146466.09,0,0,0,1450.2307 +1969,2466,4296,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.6396937,7.5913844,0,0,0,-1010.453,0,-9,-9,2021,8,0,29,29,1,0,0,6.4440012,6.4440012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,951,-124408.45,-95052.43,0,0,0,0,965.5542 +1970,2467,4297,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2000136,7.3439522,0,0,-1052.6118,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9830132,7.5316863,35.54,43.14,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,1435,241087.89,105863.3,78025.781,0,9278.6904,0,1971.187 +1971,2468,4298,4299,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6991301,6.4360952,11,-2,-131.47389,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2291133,6.531209,62.27,48.47,60.29,52.11,8.333333333333334,1,1,0,0,1,5,3,1,436.5,355880.38,231934.66,121281.79,0,0,0,2578.866 +1971,2468,4299,4298,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8651004,7.4009142,11,2,-126.65032,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2483215,6.8734841,60.29,52.11,62.27,48.47,6.666666666666667,1,1,0,0,1,5,3,1,436.5,355880.38,231934.66,121281.79,0,0,0,2578.866 +1972,2469,4300,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.493001,8.3969622,0,0,0,-1105.1602,0,2,2,2021,9,1,45,46,1,1,0,9.8643503,9.8643503,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49,50,-9,-9,6.666666666666667,1,1,0,0,6,2,5,0,202,1436447,1416132.3,0,0,0,0,2139.698 +1973,2470,4301,-9,4302,4304,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.86993,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4302,4304,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.4124689,8.2719984,0,9,-3,82.310501,0,2,2,2021,6,1,34,34,1,1,0,14.344726,14.344726,.05,.05,0,0,0,0,0,0,1,1,0,2.4943752,0,49.61,54.24,58.76,52.91,10,1,1,0,0,6,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4303,-9,4302,4304,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.8763,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4304,4302,-9,-9,1,1,37,1,2,0,1,1,-9,0,5,8.8534966,9.1358795,0,9,3,-38.479774,0,2,3,2021,6,0,50,43,1,0,0,17.394262,17.394262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.76,52.91,49.61,54.24,10,1,1,0,0,9,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1974,2471,4305,-9,4307,4308,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1045.8459,-9,2,2,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4306,-9,4307,4308,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1108.7635,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4307,4308,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8285809,7.5778337,0,8,2,-42.144325,0,2,2,2021,11,0,31,29,1,0,0,7.5898247,7.5898247,.05,.05,0,0,0,0,0,0,1,1,0,2.0360956,0,41.79,57.73,58.54,54.14,8.333333333333334,1,1,0,0,10,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4308,4307,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,0,0,0,8,-2,129.62027,0,2,1,2021,2,0,0,35,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9398565,0,58.54,54.14,41.79,57.73,8.333333333333334,1,1,0,0,11,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1975,2472,4309,4310,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,33,5,0,0,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,17.76,47.32,52.7,3.333333333333333,2,3,0,1,3,4,1,1,247.5,161800.88,0,0,0,3858.8525,0,824.20587 +1975,2472,4310,4309,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,33,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.32,52.7,41.69,17.76,8.333333333333334,2,3,0,1,0,4,1,1,247.5,161800.88,0,0,0,3858.8525,0,824.20587 +1976,2473,4311,4312,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7021952,8.6106501,0,35,-3,-66.473175,0,3,3,2021,11,0,32,32,1,2,0,28.320068,28.320068,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,37.47,57.09,8.333333333333334,1,1,0,0,14,7,5,1,855.5,798135.88,673644,391362.34,247521.25,0,12981.619,4703.374 +1976,2473,4312,4311,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.1904106,9.2489166,0,36,3,-110.56942,0,-9,-9,2021,14,5,37,37,1,5,0,30.765875,30.765875,0,0,0,0,0,0,0,0,1,1,0,0,0,37.47,57.09,49,50,8.333333333333334,1,1,0,0,14,7,5,1,855.5,798135.88,673644,391362.34,247521.25,0,12981.619,4703.374 +1977,2474,4313,4314,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.8686581,6.8660283,27,-1,-19.811668,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,27.767666,0,2,1,1,0,6.002233,6.6680336,39.78,30.86,34.42,25.38,5,1,1,0,0,7,6,3,0,633,568619,354910.81,148842.19,0,0,0,3230.655 +1977,2474,4314,4313,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.4897227,7.1805634,27,1,44.046467,0,3,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,43.011326,0,2,1,1,0,7.4044447,7.4828176,34.42,25.38,39.78,30.86,3.333333333333333,1,1,0,0,4,6,3,0,633,568619,354910.81,148842.19,0,0,0,3230.655 +1978,2475,4315,4316,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,52,1,-60.300652,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1741381,0,53.79,41.29,62.42,26.88,5,1,1,0,0,0,2,2,1,566,527892.81,380927.88,218018.83,0,0,0,2153.1265 +1978,2475,4316,4315,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,6.8430119,6.6600685,52,-1,20.491705,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.639493,6.6576991,62.42,26.88,53.79,41.29,6.666666666666667,1,1,0,0,10,2,2,1,566,527892.81,380927.88,218018.83,0,0,0,2153.1265 +1979,2476,4317,-9,4319,4318,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-979.56769,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5798869,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,614,0,0,0,0,0,0,1474.389 +1979,2477,4318,4319,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,6,11,90.283051,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,21.91,35.67,64.46000000000001,3.333333333333333,1,1,0,0,0,6,2,1,596,121756.95,201136.89,0,0,0,0,1205.8956 +1979,2477,4319,4318,-9,-9,1,0,44,0,0,0,2,2,-9,1,4,5.0776329,4.9430552,0,6,-11,46.566502,0,3,2,2021,20,9,3,3,1,9,0,6.9577684,6.9577684,0,0,0,0,0,0,0,120,1,1,0,0,0,35.67,64.46000000000001,37.41,21.91,3.333333333333333,1,1,0,1,11,6,2,1,596,121756.95,201136.89,0,0,0,0,1205.8956 +1980,2478,4320,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.4677668,8.8250513,8.2174282,0,0,-913.61505,0,3,3,2021,19,7,37,37,1,7,0,17.119915,17.119915,.05,.05,0,0,0,0,0,0,0,0,0,0,8.377634,46.96,37.93,-9,-9,3.333333333333333,1,1,0,0,14,1,5,1,474,13569.764,127692.76,165999.69,119843.67,4285.4341,24925.553,3198.5105 +1981,2479,4321,4322,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,5,-8,-50.177303,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,0,1,2.0797739,0,49,48,53,47,7,1,1,1,0,0,11,2,0,415,1083650.8,60880.629,981436.81,0,0,0,2386.9277 +1981,2479,4322,4321,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.36202,5.3671885,5,8,162.1566,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,5.2078238,53,47,49,48,7,1,1,0,0,0,11,2,0,415,1083650.8,60880.629,981436.81,0,0,0,2386.9277 +1982,2480,4323,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.139,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.468124,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,1004,-17439.055,0,130276.09,0,0,0,1155.9708 +1983,2481,4324,4325,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.5989285,8.5417738,0,7,6,-17.031059,0,2,2,2021,8,0,65,60,1,0,0,10.294345,10.294345,.05,.05,0,0,0,0,0,0,1,1,0,6.3712735,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,12,4,1,1210,306960.59,85944.727,260807.41,0,0,0,2817.7612 +1983,2481,4325,4324,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.4688892,6.5121145,0,7,-6,-67.615715,0,2,2,2021,8,1,60,50,1,1,0,1.1117351,1.1117351,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1210,306960.59,85944.727,260807.41,0,0,0,2817.7612 +1984,2482,4326,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,4.7154131,4.8273034,0,0,-1039.0649,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7646453,4.8511677,44.72,36.6,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,449,203932.13,120054.98,171919.44,0,0,0,199.00246 +1985,2483,4327,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.6468277,4.5675731,0,0,-1025.0985,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7133117,57.16,56.15,-9,-9,10,1,1,0,0,0,10,2,0,362,260696.77,3742.8054,35282.055,0,0,0,322.40594 +1986,2484,4328,4330,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.0200872,8.9808655,0,18,1,-58.273518,0,-9,-9,2021,5,0,49,56,1,0,0,16.535582,16.535582,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.05,54.52,49.16,55.59,8.333333333333334,3,4,0,1,6,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4329,-9,4330,4328,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.7091,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4330,4328,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.7851543,8.6577797,0,18,-1,1.856169,0,-9,-9,2021,7,0,41,37,1,0,0,12.644103,12.644103,0,0,0,0,0,0,0,0,1,1,0,0,0,49.16,55.59,58.05,54.52,8.333333333333334,3,4,0,1,8,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4331,-9,4330,4328,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1007.3861,-9,1,1,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4332,-9,4330,4328,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1034.549,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.43,50.71,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1987,2485,4333,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.9538655,7.5137239,0,0,0,-1004.5766,0,2,2,2021,7,0,12,13,1,0,0,23.020254,23.020254,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,783,-105196.89,61757.125,0,0,0,0,1153.2722 +1987,2486,4334,-9,4333,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8505988,8.4184332,0,0,0,-1024.2415,-9,3,-9,2021,14,2,50,0,1,2,1,8.1195908,8.1195908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.88,49.06,-9,-9,5,1,1,0,0,4,9,4,0,1646,-255336.14,4657.4741,0,0,0,0,1543.8595 +1988,2487,4335,4336,-9,-9,1,1,41,0,0,0,3,3,-9,1,1,0,0,0,3,-1,40.297962,0,3,3,2021,20,9,0,0,3,9,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,21.21,36.83,51.24,58.84,5,1,1,0,0,0,12,3,0,946.5,353335.94,108684.58,106817.16,0,0,0,1481.4111 +1988,2487,4336,4335,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.8081932,8.1182919,0,3,1,1.8363187,-9,-9,-9,2021,10,1,40,0,1,1,0,8.6761446,8.6761446,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,21.21,36.83,6.666666666666667,1,1,0,0,3,12,3,0,946.5,353335.94,108684.58,106817.16,0,0,0,1481.4111 +1989,2488,4337,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.131875,7.9947762,0,0,0,-991.68793,0,2,2,2021,10,0,42,43,1,0,0,7.5919061,7.5919061,.05,.05,0,0,0,0,0,0,0,0,0,.83397448,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,2919,252147.5,37248.621,110785,16905.691,-157.66425,0,936.63544 +1990,2489,4338,4340,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.7616367,8.8962431,0,2,-2,114.16124,0,-9,-9,2021,10,0,39,38,1,0,0,17.260084,17.260084,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,10,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2489,4339,-9,4340,4338,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1005.4722,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,0,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2489,4340,4338,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,2,2,69.804825,0,-9,-9,2021,9,0,0,23,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2490,4341,-9,4340,4338,1,1,28,0,1,0,2,2,-9,0,4,7.4815054,7.5182734,0,0,0,-928.05994,0,2,2,2021,6,0,30,30,1,0,1,8.2900362,8.2900362,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,7,10,3,1,905,-137007.13,0,0,0,0,0,591.33459 +1990,2491,4342,-9,4340,4338,1,1,27,0,1,0,2,2,-9,0,4,7.4462214,7.5267811,0,0,0,-894.99292,0,2,2,2021,9,0,30,37,1,0,1,5.9382906,5.9382906,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,10,3,1,581,-64754.137,0,0,0,0,0,524.21442 +1991,2492,4343,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8729167,8.1762848,0,0,0,-934.37701,0,1,-9,2021,12,0,40,40,1,0,0,11.425756,11.425756,0,0,0,0,0,0,0,2,1,1,0,0,0,45.73,57.57,-9,-9,3.333333333333333,4,5,0,0,8,8,4,0,558,549569.13,169047.16,439538.66,99697.344,0,0,1780.0856 +1991,2493,4344,-9,4343,-9,1,1,27,0,0,0,1,1,-9,1,3,0,0,0,0,0,-998.88306,0,2,-9,2021,27,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,41.97,-9,-9,0,4,2,0,0,2,8,1,0,617,9505.6543,0,0,0,0,0,1396.7274 +1992,2494,4345,-9,4348,4347,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.81738,-9,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4346,-9,4348,4347,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.1225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4347,4348,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,6.817697,6.6027365,0,14,13,-67.135597,0,-9,-9,2021,20,7,15,15,1,7,0,4.8720121,4.8720121,0,0,0,0,0,0,0,0,1,1,0,0,0,35.4,17.75,54.79,55.86,3.333333333333333,1,1,0,1,9,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4348,4347,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,6.8038511,6.4580493,0,14,-13,-115.86463,0,-9,-9,2021,11,0,20,20,1,0,0,5.0986834,5.0986834,0,0,0,0,0,0,0,106,1,1,0,0,0,54.79,55.86,35.4,17.75,8.333333333333334,1,1,0,1,7,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1993,2495,4349,4350,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.2322378,7.3846059,8,-8,-40.103714,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2786007,35.48,23.07,43.01,42.51,1.666666666666667,1,1,0,0,0,9,3,1,557,1341474.3,924806.25,216220,0,0,0,2578.7668 +1993,2495,4350,4349,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.5257416,6.4263005,8,8,35.578144,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.5811005,43.01,42.51,35.48,23.07,3.333333333333333,1,1,0,1,2,9,3,1,557,1341474.3,924806.25,216220,0,0,0,2578.7668 +1994,2496,4351,-9,4353,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.62061,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1994,2496,4352,-9,4353,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.51733,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1994,2496,4353,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.3700538,7.5494833,0,0,0,-1047.3594,0,-9,-9,2021,16,4,31,32,1,4,0,7.1615992,7.1615992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.81,62.39,-9,-9,6.666666666666667,1,1,0,0,8,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1995,2497,4354,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.0277538,8.0185547,0,0,0,-799.20758,0,3,3,2021,6,0,39,39,1,0,0,7.7805753,7.7805753,0,0,0,0,0,0,0,2,1,1,0,0,0,47.47,36.64,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,636,0,0,0,0,0,0,1279.4573 +1996,2498,4355,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2985239,8.3067522,0,0,0,-1026.7982,0,3,3,2021,12,1,35,35,1,1,0,13.32861,13.32861,0,0,0,0,0,0,0,0,0,0,0,5.0661597,0,49.86,55.31,-9,-9,6.666666666666667,2,3,0,0,10,8,4,1,301,102837.89,51632.652,98874.477,0,0,0,1811.8278 +1997,2499,4356,-9,4357,4358,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.5164,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1997,2499,4357,4358,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.2585125,8.2499571,.42625993,6,-5,19.729994,0,-9,-9,2021,28,12,37,39,1,12,0,14.668521,14.668521,.05,.05,0,0,0,0,0,0,1,1,0,.43137914,0,10.47,64.66,27.8,61.29,3.333333333333333,1,1,0,0,8,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1997,2499,4358,4357,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2844858,8.0797825,0,6,5,103.95653,0,2,2,2021,12,1,55,52,1,1,0,6.1275549,6.1275549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.8,61.29,10.47,64.66,6.666666666666667,1,1,0,0,5,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1998,2500,4359,4360,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.0540972,9.011302,0,8,1,-58.7216,0,2,3,2021,11,0,48,45,1,0,0,19.476368,19.476368,0,0,0,0,0,0,0,0,0,0,0,3.185313,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,6,7,5,1,426.5,158983.38,64250.84,0,0,0,0,4506.1309 +1998,2500,4360,4359,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.1340561,8.8927374,0,8,-1,-127.629,0,-9,-9,2021,9,0,43,50,1,0,0,22.930857,22.930857,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,426.5,158983.38,64250.84,0,0,0,0,4506.1309 +1999,2501,4361,4362,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.516263,8.4911766,0,26,-2,34.590679,0,2,2,2021,13,2,10,20,1,2,0,52.302773,52.302773,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,42.65,49.97,56.66,8.333333333333334,1,1,0,0,6,9,5,1,1446,1062275.1,487358.38,342168.88,0,0,0,6623.6504 +1999,2501,4362,4361,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.86374,9.7926931,0,26,2,22.096376,0,2,1,2021,8,0,52,50,1,0,0,36.064346,36.064346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,60.03,42.65,8.333333333333334,1,1,0,0,13,9,5,1,1446,1062275.1,487358.38,342168.88,0,0,0,6623.6504 +1999,2502,4363,-9,4361,4362,1,0,23,0,0,0,1,1,1,0,4,7.9605575,8.0504122,0,0,0,-1015.1884,-9,2,2,2021,5,0,35,0,1,0,1,10.430129,10.430129,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,345,-7937.1479,0,0,0,0,0,1423.0072 +2000,2503,4364,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.6306171,8.4178848,0,0,0,-982.23486,0,2,2,2021,10,0,60,58,1,0,0,8.4269438,8.4269438,.05,.05,0,0,0,0,0,0,1,1,0,6.1868095,0,57.49,34.36,-9,-9,8.333333333333334,1,1,0,0,13,10,4,0,290,162162.23,251999.55,103305.48,9889.8496,0,0,2707.9509 +2001,2504,4365,4366,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,1,-13,48.624649,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,46.21,40.7,8.333333333333334,1,1,1,0,2,4,4,0,395.5,54446.695,415.75684,152438.59,41073.762,0,0,1615.2104 +2001,2504,4366,4365,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3507004,8.3534355,0,1,13,-16.751827,-9,-9,-9,2021,13,1,48,0,1,1,0,9.4737911,9.4737911,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,40.7,47.32,52.7,5,1,1,0,1,3,4,4,0,395.5,54446.695,415.75684,152438.59,41073.762,0,0,1615.2104 +2002,2505,4367,4368,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,9,2,0,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.78,20.93,58.97,47.32,8.333333333333334,3,4,0,0,0,2,1,1,1144,95211.406,0,174997.19,0,0,0,360.63458 +2002,2505,4368,4367,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-2,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.97,47.32,45.78,20.93,8.333333333333334,3,4,0,0,0,2,1,1,1144,95211.406,0,174997.19,0,0,0,360.63458 +2003,2506,4369,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,5.2525353,5.13065,0,0,-1020.1935,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.6026175,.79102093,30.117479,0,1,1,0,4.5308189,4.931428,37.66,20.64,-9,-9,8.333333333333334,2,3,0,0,0,7,2,1,1008,-143219.83,9316.2988,0,0,0,0,2350.5095 +2004,2507,4370,-9,4373,4372,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.93225,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4371,-9,4373,4372,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.6132,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4372,4373,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.1145687,9.482276,0,13,3,88.209312,0,2,2,2021,9,0,39,38,1,0,0,31.379059,31.379059,.05,.05,0,0,0,0,0,0,0,0,0,1.011138,0,44.75,56.39,57.06,57.76,8.333333333333334,1,1,0,0,15,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4373,4372,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.5926266,8.5150824,0,13,-3,96.869049,0,-9,-9,2021,12,0,27,0,1,0,0,20.787519,20.787519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.75,56.39,5,1,1,0,0,12,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2005,2508,4374,-9,4378,4380,1,0,10,2,5,1,3,0,-9,0,5,0,0,0,0,0,-963.33618,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4375,-9,4378,4380,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1021.4076,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4376,-9,-9,4380,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1054.9292,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4377,-9,4378,4380,1,0,15,2,5,1,3,0,-9,0,3,0,0,0,0,0,-882.90002,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4378,4380,-9,-9,1,0,41,2,5,0,3,3,-9,0,4,0,0,0,4,6,68.808006,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.04,54.63,46,52,5,1,1,1,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4379,-9,4378,4380,1,0,8,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1126.813,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4380,4378,-9,-9,1,1,35,2,5,0,2,2,-9,0,3,8.4756823,8.4043226,0,4,-6,127.72704,0,-9,-9,2021,15,5,45,42,1,5,0,12.669022,12.669022,0,0,0,0,0,0,0,0,1,1,0,0,0,46,52,34.04,54.63,1.666666666666667,1,1,0,0,5,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2006,2509,4381,4382,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4493628,8.5296097,0,6,-8,8.9501715,0,3,3,2021,12,0,40,44,1,0,0,11.723767,11.723767,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.22,50.02,54.2,57.49,8.333333333333334,1,1,0,0,7,12,5,1,885.5,752912.88,457071.94,42897.598,0,0,0,3250.7969 +2006,2509,4382,4381,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2270432,8.3816109,0,6,8,-158.27136,0,2,2,2021,9,0,46,42,1,0,0,8.925128,8.925128,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.2,57.49,53.22,50.02,8.333333333333334,1,1,0,0,7,12,5,1,885.5,752912.88,457071.94,42897.598,0,0,0,3250.7969 +2006,2510,4383,-9,4382,4381,1,0,23,0,0,0,1,1,-9,0,4,8.2970495,8.1906328,0,0,0,-941.82867,0,2,2,2021,9,0,37,50,1,0,1,10.399774,10.399774,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,556,-103973.89,-26836.482,0,0,0,0,1756.5681 +2007,2511,4384,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.4893408,8.455411,0,0,-1102.5811,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8257556,8.7823153,54.97,50.31,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,630,1026764.9,817559.75,153322.69,0,0,0,3609.8704 +2008,2512,4385,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,8.0099316,8.1966534,0,0,-950.56488,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2775605,8.277813,55,45,-9,-9,8,1,1,0,0,0,9,4,1,334,608227.63,309166.38,285607.41,0,0,0,3068.6929 +2009,2513,4386,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-902.6474,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,14.637776,0,136.94696,0,0,0,0,0,0,49,47,-9,-9,7,1,1,0,0,0,11,2,0,154,56019.332,0,0,0,0,0,0 +2010,2514,4387,4388,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.9383907,7.9034262,0,13,-2,-66.862862,0,3,2,2021,18,7,16,24,1,7,0,18.737041,18.737041,0,0,0,0,0,0,0,0,1,1,0,0,0,35.13,48.1,52.99,28.56,0,1,1,0,0,14,1,3,1,665,782545.38,677633.81,172048.25,0,-1697.5846,1320.1902,1769.9933 +2010,2514,4388,4387,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,13,2,-80.076927,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,28.56,35.13,48.1,10,1,1,0,0,0,1,3,1,665,782545.38,677633.81,172048.25,0,-1697.5846,1320.1902,1769.9933 +2011,2515,4389,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.88204,8.0402622,0,0,-1057.4926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3013229,7.7223387,43.67,61.06,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,1033,653191.06,53219.633,312197.25,0,0,0,-105.32378 +2012,2516,4390,4391,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1834273,7.9797134,7.4570084,18,7,9.8683853,0,3,2,2021,9,0,16,16,1,0,0,9.0146484,9.0146484,.05,.05,0,0,0,0,0,0,0,0,0,6.9025173,7.3457007,54.13,48.04,54.61,43.6,6.666666666666667,1,1,0,0,13,4,4,0,2944.5,868810.25,675632.81,200135.94,0,0,0,2541.9443 +2012,2516,4391,4390,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.445416,7.4807639,0,19,-7,-30.715057,0,2,2,2021,18,6,32,32,1,6,0,6.7486529,6.7486529,0,0,0,0,0,0,0,0,0,0,0,5.5091395,0,54.61,43.6,54.13,48.04,6.666666666666667,1,1,0,0,12,4,4,0,2944.5,868810.25,675632.81,200135.94,0,0,0,2541.9443 +2013,2517,4392,-9,4395,4393,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.64917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4393,4395,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.9727173,9.0471687,0,10,5,19.973747,0,2,3,2021,12,0,40,37,1,0,0,17.243877,17.243877,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.06,53.95,48.77,60.16,6.666666666666667,1,1,0,0,11,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4394,-9,4395,4393,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1135.777,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4395,4393,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.0155172,7.9843059,0,10,-5,-64.486427,0,3,2,2021,8,0,28,25,1,0,0,14.376941,14.376941,.05,.05,0,0,0,0,0,0,1,1,0,2.2389085,0,48.77,60.16,42.06,53.95,6.666666666666667,1,1,0,0,11,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2014,2518,4396,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.0705204,6.7164712,0,0,0,-991.9389,0,-9,-9,2021,17,5,13,12,1,5,0,8.1556368,8.1556368,0,0,0,0,0,0,0,0,0,0,0,5.743494,0,36.08,60.5,-9,-9,6.666666666666667,1,1,0,0,3,8,2,0,320,91196.578,0,0,0,0,0,715.60602 +2015,2519,4397,-9,4398,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.20673,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2015,2519,4398,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-999.33667,0,2,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.53,24.61,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2015,2519,4399,-9,4398,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1049.6639,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2016,2520,4400,-9,4402,4401,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.241,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4401,4402,-9,-9,1,1,49,0,3,0,3,3,-9,0,3,0,0,0,27,9,-48.648815,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,46.94,50.58,56.41,8.333333333333334,2,3,1,0,4,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4402,4401,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.6808105,7.7783656,0,7,0,1.3254974,0,-9,-9,2021,5,0,30,27,1,0,0,6.8947105,6.8947105,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,56.41,44.41,46.94,8.333333333333334,2,3,0,0,10,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4403,-9,4402,4401,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.1855,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4404,-9,4402,4401,1,0,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-947.80975,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,52.35,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2521,4405,-9,4402,4401,1,1,21,0,3,1,2,0,0,0,3,0,0,0,0,0,-1039.3337,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.56819534,0,63.8,49.17,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1260,-63104.285,0,0,0,0,0,-227.80127 +2016,2522,4406,-9,4402,4401,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1053.8513,-9,2,3,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.46362588,0,54.21,50.73,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,602,0,0,0,0,0,0,456.43231 +2017,2523,4407,4408,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,9,2,0,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.32,16.87,60.45,24.99,8.333333333333334,1,1,0,0,3,4,1,1,514,114265.11,64374.281,95185.461,31181.211,0,328.71564,-721.59265 +2017,2523,4408,4407,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,9,-2,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.5123842,0,60.45,24.99,46.32,16.87,8.333333333333334,1,1,0,0,12,4,1,1,514,114265.11,64374.281,95185.461,31181.211,0,328.71564,-721.59265 +2018,2524,4409,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,5.2382612,5.2581577,0,0,-972.69434,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,0,2.2820301,0,26.621437,0,1,1,0,0,5.6318493,39.37,25.14,-9,-9,5,1,1,0,0,0,9,2,1,503,-205386.39,0,0,0,0,0,1688.6143 +2019,2525,4410,4411,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.1581688,9.1529121,0,38,-1,-2.0645969,0,3,2,2021,11,2,60,50,1,2,0,24.881741,24.881741,.05,.05,0,0,0,0,.92315674,0,0,0,0,0,0,44.59,59.08,33.48,53.45,8.333333333333334,1,1,0,0,11,9,5,1,329,1453499.3,975094.88,386654.13,0,0,0,4618.1714 +2019,2525,4411,4410,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9955063,7.5207453,0,38,1,-52.544415,0,2,2,2021,20,8,22,0,1,8,0,13.318227,13.318227,.05,.05,0,0,0,0,0,0,0,0,0,.8361432,0,33.48,53.45,44.59,59.08,3.333333333333333,1,1,0,0,11,9,5,1,329,1453499.3,975094.88,386654.13,0,0,0,4618.1714 +2019,2526,4412,-9,4411,4410,1,1,25,0,0,0,1,1,-9,0,4,8.4831924,8.1094151,0,0,0,-1076.0588,0,1,2,2021,9,1,44,43,1,1,1,10.84882,10.84882,.05,.05,0,0,0,0,0,2,0,0,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,648,-118729.86,64831.523,147755.95,90474.023,0,0,1875.6534 +2019,2527,4413,-9,4411,4410,1,0,19,0,0,0,2,2,-9,0,3,7.9350886,8.0635033,0,0,0,-932.67578,0,1,2,2021,12,0,38,75,1,0,1,8.3115625,8.3115625,0,0,0,0,0,0,0,0,0,0,0,2.8532772,0,33.47,48.38,-9,-9,6.666666666666667,1,1,0,0,12,9,4,1,255,-126192.41,0,0,0,0,0,1850.7816 +2020,2528,4414,-9,4417,4415,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1027.0106,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4415,4417,-9,-9,1,1,81,0,2,0,2,2,-9,0,5,0,7.2397089,7.2915854,8,25,130.86577,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7186785,7.0420837,67.92,41.85,53.71,49.66,10,1,1,0,0,7,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4416,-9,4417,4415,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1056.7897,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4417,4415,-9,-9,1,0,56,0,2,0,2,2,-9,0,3,0,0,0,18,-25,62.993797,0,3,2,2021,11,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,49.66,67.92,41.85,8.333333333333334,1,1,0,0,7,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2529,4418,-9,4417,4415,1,1,22,0,2,0,2,2,-9,0,5,7.9803867,7.7622819,0,0,0,-964.79095,0,2,2,2021,0,0,57,47,1,0,1,5.6041675,5.6041675,0,0,0,0,0,0,0,0,1,1,0,0,0,51,61,-9,-9,10,1,1,0,0,6,13,3,1,334,-7.5428309,0,0,0,0,0,1275.6315 +2021,2530,4419,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1037.3251,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,17.53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,464,48912.492,0,0,0,0,1358.4528,2121.9797 +2022,2531,4420,-9,4422,4421,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.6458,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2531,4421,4422,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.933259,9.1871214,0,6,1,116.92201,0,2,1,2021,9,0,37,50,1,0,0,23.685022,23.685022,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.74,57.22,39.97,51.04,8.333333333333334,1,1,0,0,7,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2531,4422,4421,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,9.3848915,9.5293121,0,6,-1,-37.162483,0,-9,-9,2021,16,5,42,47,1,5,0,25.908756,25.908756,0,0,0,0,0,0,0,2,0,0,0,0,0,39.97,51.04,54.74,57.22,5,1,1,0,0,7,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2532,4423,-9,4422,4421,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1003.3627,-9,1,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,172,245325.8,0,0,0,0,0,0 +2023,2533,4424,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1040.3643,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,6,1,0,433,7588.1792,0,0,0,17607.861,0,0 +2024,2534,4425,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.3544874,9.1426182,0,0,0,-1054.4296,0,-9,-9,2021,21,9,48,50,1,9,0,28.38788,28.38788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.53,65.61,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,2228,402668.66,83503.43,551223,460481.56,1287.1287,0,3149.762 +2025,2535,4426,-9,4427,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.6191,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,1126,-76563.18,-24695.816,89312.914,88133.602,13940.784,2633.1924,2550.6445 +2025,2535,4427,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.4823856,8.8962641,5.4201708,0,0,-933.146,0,2,2,2021,9,0,38,38,1,0,0,13.70893,13.70893,0,0,.05,0,0,0,0,0,1,1,0,5.4094033,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,6,4,0,1126,-76563.18,-24695.816,89312.914,88133.602,13940.784,2633.1924,2550.6445 +2026,2536,4428,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,6.0207629,6.4368081,0,0,-856.39148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0419092,0,0,1,1,0,6.7468905,6.4274697,68.76000000000001,35.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,800,154170.95,61812.262,260685.53,0,0,0,1171.3643 +2027,2537,4429,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,7.0228477,7.2461991,0,0,-952.89563,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.2835302,7.2342887,38.46,31.5,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,342,-264877.69,-92082.875,0,0,0,0,2766.8635 +2028,2538,4430,4431,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.6196871,9.1247969,6.2543831,17,8,2.5479779,0,2,2,2021,9,1,40,37,1,1,0,26.181774,26.181774,0,0,0,0,0,0,0,0,1,1,0,0,6.5163369,59.46,36.46,59.29,49.68,8.333333333333334,1,1,0,0,8,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2028,2538,4431,4430,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,7.7924385,7.7742348,0,17,-8,-113.83667,0,2,2,2021,6,0,40,35,1,0,0,7.6728601,7.6728601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,59.46,36.46,8.333333333333334,1,1,0,0,7,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2028,2538,4432,-9,4430,4431,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.76129,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2029,2539,4433,4434,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,9.3382111,9.3659811,0,11,0,85.988907,0,3,2,2021,17,5,50,42,1,5,0,29.193726,29.193726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.08,47.28,28.39,61.27,6.666666666666667,1,1,0,0,6,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2029,2539,4434,4433,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,7.9302864,8.08113,0,11,0,-62.017635,0,2,2,2021,13,1,26,24,1,1,0,13.150024,13.150024,0,0,0,0,0,0,0,0,0,0,0,.20552702,0,28.39,61.27,39.08,47.28,8.333333333333334,1,1,0,0,6,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2029,2539,4435,-9,4434,4433,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.3107,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2030,2540,4436,4437,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8515215,8.8606901,0,40,-1,170.2392,0,-9,2,2021,8,0,45,40,1,0,0,25.243773,25.243773,.05,.05,0,0,0,0,0,0,0,0,0,1.8803847,0,62.39,56.71,45.85,61.26,8.333333333333334,1,1,0,0,12,9,5,1,2742,2532415.5,1313850,657457.38,0,0,0,2915.1675 +2030,2540,4437,4436,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,40,1,-41.613346,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.8789103,0,45.85,61.26,62.39,56.71,6.666666666666667,1,1,0,0,10,9,5,1,2742,2532415.5,1313850,657457.38,0,0,0,2915.1675 +2031,2541,4438,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,0,8.9074802,8.8008022,0,0,-983.66827,0,2,2,2021,16,4,0,41,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.8747778,0,34.65,58.34,-9,-9,5,1,1,1,0,8,7,5,1,243,1084862,881447.38,0,0,16107.362,0,3883.9075 +2032,2542,4439,4441,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,10.126073,10.142131,0,8,-3,20.88805,0,3,3,2021,6,0,60,50,1,0,0,39.67767,39.67767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,50.2,52.61,10,1,1,0,0,15,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4440,-9,4441,4439,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.14069,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4441,4439,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,8,3,73.849693,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.8993025,0,50.2,52.61,59.43,58.05,8.333333333333334,1,1,0,0,7,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4442,-9,4441,4439,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.8888,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2033,2543,4443,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1112.418,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5609727,0,63.41,39.7,-9,-9,6.666666666666667,1,1,1,1,0,2,1,1,1388,-146328.19,0,0,0,0,0,169.36479 +2034,2544,4444,4445,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,27,0,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,60.86,19.3,32.72,25.62,5,1,1,0,0,0,4,1,1,1617,-104023,-50987.238,0,0,0,0,1606.5748 +2034,2544,4445,4444,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,26,0,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75236827,0,32.72,25.62,60.86,19.3,5,1,1,0,0,0,4,1,1,1617,-104023,-50987.238,0,0,0,0,1606.5748 +2035,2545,4446,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.0020337,4.8222108,0,0,-907.81207,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8225713,4.3505712,61.88,44.54,-9,-9,10,1,1,0,0,0,13,2,1,713,234548.03,70892.82,0,0,0,0,1547.3082 +2035,2546,4447,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.4654379,6.4082427,0,0,-894.06659,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6327014,57.76,54.51,-9,-9,10,1,1,0,0,0,13,2,1,609,470066.16,55594.699,222466.38,0,0,0,477.25671 +2036,2547,4448,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.9486141,8.9611416,3.5363309,0,0,-979.4696,0,2,3,2021,6,0,57,37,1,0,0,15.87126,15.87126,.05,.05,0,0,0,0,0,0,0,0,0,3.4783738,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,197,348136.66,381841.59,182941.77,61094.648,0,1089.3361,2634.5115 +2036,2548,4449,-9,4448,-9,1,1,31,0,0,0,1,1,-9,0,3,8.0834398,7.9755721,0,0,0,-961.22284,0,2,2,2021,5,0,35,44,1,0,1,10.558253,10.558253,.05,.05,0,0,0,0,0,0,0,0,0,3.579289,0,49.24,42.06,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,317,-8530.4023,27636.057,0,0,17704.836,0,1140.8953 +2036,2549,4450,-9,4448,-9,1,1,33,0,0,0,1,1,-9,0,5,8.1240177,8.1084881,0,0,0,-1038.6624,0,2,2,2021,9,0,38,38,1,0,1,11.455859,11.455859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.5,63.22,-9,-9,3.333333333333333,1,1,0,0,7,11,4,1,900,242364.17,32860.023,103709.98,13004.922,0,0,1040.3978 +2037,2550,4451,-9,4453,4452,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1071.9458,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4452,4453,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.3817225,9.3644848,0,14,-8,11.570932,0,2,2,2021,12,0,60,60,1,0,0,21.925734,21.925734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.89,53.42,57.06,57.76,6.666666666666667,1,1,0,0,11,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4453,4452,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,6.2465272,6.2860956,0,3,8,-17.267361,0,-9,-9,2021,11,0,10,10,1,0,0,7.6912656,7.6912656,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,47.89,53.42,8.333333333333334,1,1,0,0,4,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4454,-9,4453,4452,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.18201,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2038,2551,4455,-9,4457,4456,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.3324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4456,4457,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.1959848,8.3927345,0,10,2,-37.802662,-9,-9,-9,2021,13,2,35,0,1,2,0,10.278828,10.278828,.05,.05,0,0,0,0,0,0,1,1,0,.011686223,0,42.12,52.35,51.49,53.31,5,2,3,0,0,10,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4457,4456,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3654346,8.6947584,0,6,-2,248.92622,0,-9,-9,2021,5,0,43,39,1,0,0,12.22742,12.22742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,53.31,42.12,52.35,8.333333333333334,2,3,0,0,6,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4458,-9,4457,4456,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.4441,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2039,2552,4459,4460,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,4.3675127,4.2223606,68,1,19.187691,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.6979882,4.8133569,64.39,28.77,53,44,6.666666666666667,1,1,0,0,0,5,2,0,1094,316986.59,145678.73,184154.34,0,0,0,1474.7532 +2039,2552,4460,4459,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.8982334,5.7542291,68,-1,48.253765,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,14.302137,0,0,1,1,0,0,5.8047862,53,44,64.39,28.77,8,1,1,0,0,0,5,2,0,1094,316986.59,145678.73,184154.34,0,0,0,1474.7532 +2040,2553,4461,-9,4462,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1011.8873,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.45,37.16,-9,-9,10,1,1,0,0,0,2,1,1,1452,73392.469,77936.313,0,0,0,0,123.10484 +2040,2554,4462,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.966094,6.2922473,0,0,-1058.4482,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.8589678,42.613319,44.843048,0,1,1,0,2.0838311,6.2708292,55,43,-9,-9,8,1,1,0,0,0,2,2,1,725,313924.81,-1566.9092,99601.656,0,0,0,178.06163 +2041,2555,4463,4464,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.1419454,5.8010411,8,0,4.0022497,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4079776,50,47,59.63,41.44,10,1,1,0,0,0,1,2,1,492,194683.88,78120.789,59186.773,0,1047.8763,0,3268.7856 +2041,2555,4464,4463,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.3686671,7.0951076,8,9,99.986877,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4439645,59.63,41.44,50,47,8.333333333333334,1,1,0,0,0,1,2,1,492,194683.88,78120.789,59186.773,0,1047.8763,0,3268.7856 +2042,2556,4465,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9573069,7.3412633,0,0,-962.14795,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0614128,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,844,270608.84,48345.031,101482.04,0,0,0,1104.5613 +2043,2557,4466,4467,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,5.630651,5.3091221,46,6,31.980549,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7042136,5.3723645,57.6,57.49,60.02,56.42,8.333333333333334,1,1,0,0,4,10,2,1,342.5,571747.88,266583.06,285804.75,0,0,0,2273.1594 +2043,2557,4467,4466,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.989943,7.2004886,46,-6,-63.859306,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0044203,7.4772129,60.02,56.42,57.6,57.49,10,1,1,0,0,7,10,2,1,342.5,571747.88,266583.06,285804.75,0,0,0,2273.1594 +2044,2558,4468,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.8885946,6.982192,0,0,-1078.2808,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8444488,7.207901,45.13,42.9,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1060,60952.707,191095.34,283131.06,0,0,0,1367.531 +2045,2559,4469,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,4.3505445,4.1539168,0,0,-883.2677,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3719785,0,36.03,53.83,-9,-9,5,1,1,0,0,0,11,2,0,1201,-56374.848,0,0,0,0,0,741.44415 +2045,2559,4470,-9,4469,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.4357,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,2,0,1201,-56374.848,0,0,0,0,0,741.44415 +2046,2560,4471,-9,4472,4473,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1106.4504,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2046,2560,4472,4473,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,0,0,0,23,-8,141.19568,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,.81294608,0,1,1,0,0,0,40.39,60.98,52,55,5,2,3,0,0,5,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2046,2560,4473,4472,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.8422651,8.8973675,0,22,8,-32.967442,-9,-9,-9,2021,9,0,40,0,1,1,0,17.959024,17.959024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,40.39,60.98,8,2,3,0,0,1,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2047,2561,4474,4476,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.6327143,8.5484314,0,13,-1,59.392479,0,1,1,2021,12,0,36,37,1,0,0,18.795717,18.795717,.05,.05,0,0,0,0,0,0,1,1,0,2.1436927,0,46.63,59.72,54.2,57.49,8.333333333333334,1,1,0,0,10,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4475,-9,4476,4474,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.302,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4476,4474,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,0,0,0,13,1,8.5133381,0,2,2,2021,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1313448,0,54.2,57.49,46.63,59.72,8.333333333333334,1,1,0,0,11,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4477,-9,4476,4474,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.9255,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4478,-9,4476,4474,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.9305,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2048,2562,4479,4480,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0205393,6.750999,49,2,45.657795,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5328574,6.4705801,51,46,54.55,49.25,7,1,1,0,0,0,4,5,1,3083,2576125,2133927.8,190731.91,0,673.28088,0,4143.6714 +2048,2562,4480,4479,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.6093946,8.9674149,8.4762945,5,-2,-3.3381252,0,1,1,2021,9,1,8,35,1,1,0,32.533295,32.533295,0,0,0,1,0,0,0,0,1,1,0,3.8015568,8.6478882,54.55,49.25,51,46,8.333333333333334,4,2,0,0,8,4,5,1,3083,2576125,2133927.8,190731.91,0,673.28088,0,4143.6714 +2049,2563,4481,4482,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,8.3391562,8.6571121,0,10,-2,16.676956,0,-9,-9,2021,9,0,53,37,1,0,0,9.1517477,9.1517477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.78,56.37,8.333333333333334,1,1,0,0,11,12,5,1,1101,-111497.27,-4068.2676,110826.64,77852.922,33675.266,19417.953,3321.3203 +2049,2563,4482,4481,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.3480492,8.3708401,0,10,2,22.227455,0,3,3,2021,11,0,53,52,1,0,0,8.1401834,8.1401834,0,0,0,0,0,0,0,0,0,0,0,0,0,44.78,56.37,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,1101,-111497.27,-4068.2676,110826.64,77852.922,33675.266,19417.953,3321.3203 +2050,2564,4483,4484,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.6706562,6.6526113,59,-2,-138.73584,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.773078,43.2,37.75,43.52,52.86,5,1,1,0,0,0,11,2,1,864,566486.19,256582.72,237951.03,0,0,0,2213.9053 +2050,2564,4484,4483,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.7424402,6.767766,59,2,-32.950611,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71113062,6.8965297,43.52,52.86,43.2,37.75,5,1,1,0,0,0,11,2,1,864,566486.19,256582.72,237951.03,0,0,0,2213.9053 +2051,2565,4485,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.6045542,8.465188,0,0,0,-1063.2753,0,-9,-9,2021,9,0,37,40,1,0,0,15.308206,15.308206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,12,5,0,727,124038.77,-12583.757,0,0,0,0,2030.3866 +2052,2566,4486,4487,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,6.8315701,6.6057315,0,32,-3,6.7424831,0,2,2,2021,8,0,50,60,1,0,0,2.5740476,2.5740476,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.98,42.13,51.67,50.46,6.666666666666667,1,1,0,0,11,7,4,1,689.5,897678.94,340751.66,281715.81,0,0,1764.8789,2508.981 +2052,2566,4487,4486,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.6686563,8.4321585,7.8976207,32,3,48.137722,0,1,3,2021,12,0,17,17,1,0,0,16.273458,16.273458,.05,.05,0,0,0,0,0,0,0,0,0,3.1312559,7.9062996,51.67,50.46,55.98,42.13,8.333333333333334,1,1,0,0,9,7,4,1,689.5,897678.94,340751.66,281715.81,0,0,1764.8789,2508.981 +2053,2567,4488,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.3731718,8.314929,0,0,0,-851.05023,0,2,3,2021,11,1,39,42,1,1,0,11.147519,11.147519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,1,11,12,4,0,1300,-9261.2373,9723.085,196560.42,90853.82,0,1369.5154,1145.1249 +2054,2568,4489,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1129.8335,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.0239913,3.9982777,22.670931,0,1,1,0,1.6942817,0,49.51,41.82,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,176,236955.53,0,0,0,0,0,1946.4695 +2055,2569,4490,4491,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.4950285,8.8166904,0,22,0,-183.87645,0,2,-9,2021,12,2,40,48,1,2,0,20.167063,20.167063,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.65,41.83,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,637,1211105.3,333337.38,726349,107574.45,0,0,4690.3599 +2055,2569,4491,4490,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.4753227,8.4299335,0,22,0,-93.277702,0,3,2,2021,6,0,39,40,1,0,0,13.107274,13.107274,.05,.05,0,0,0,0,0,0,1,1,0,2.9743779,0,57.16,56.15,55.65,41.83,8.333333333333334,1,1,0,0,11,8,5,1,637,1211105.3,333337.38,726349,107574.45,0,0,4690.3599 +2056,2570,4492,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.8156166,6.3570576,0,0,-980.14716,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.1596545,0,0,1,1,0,0,6.5296197,44.18,23.2,-9,-9,5,1,1,0,0,0,4,2,1,4168,177280.17,-22040.674,0,0,0,0,1028.5941 +2057,2571,4493,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.9867373,8.6931305,0,0,0,-1079.3224,-9,2,1,2021,11,2,60,0,1,2,0,17.440922,17.440922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,2025,-143698.5,72995.398,25730.564,73245.305,0,146.80191,3162.9846 +2058,2572,4494,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.712707,6.7122149,0,0,0,-957.09106,0,3,2,2021,10,0,17,17,1,0,0,6.311729,6.311729,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,12,7,2,0,1643,115019.72,6780.1934,0,0,0,0,30.215839 +2058,2573,4495,-9,4494,-9,1,1,21,0,0,0,2,2,-9,0,4,8.166976,8.2032223,0,0,0,-971.16003,0,2,-9,2021,9,2,60,45,1,2,1,5.7721224,5.7721224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.25,51.98,-9,-9,10,1,1,0,0,4,7,4,0,782,-56124.984,-104327.95,0,0,0,0,1225.9218 +2059,2574,4496,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,0,0,0,0,-913.87714,-9,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8693211,0,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1234,-52847.805,-42962.922,47582.801,0,0,0,1402.4203 +2060,2575,4497,4498,-9,-9,1,1,30,0,0,0,3,3,-9,0,2,7.8453894,8.1591492,0,8,1,-127.72608,0,2,2,2021,8,0,52,52,1,0,0,6.2366347,6.2366347,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,42.35,33.61,52.99,51.28,5,1,1,0,0,8,2,4,0,792.5,136446.69,51359.938,244027.88,143938.72,0,0,2279.4148 +2060,2575,4498,4497,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.007246,7.5259781,0,8,-1,51.544842,0,-9,-9,2021,11,0,40,43,1,0,0,6.8340545,6.8340545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,42.35,33.61,8.333333333333334,1,1,0,0,9,2,4,0,792.5,136446.69,51359.938,244027.88,143938.72,0,0,2279.4148 +2061,2576,4499,4500,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.8871088,8.0487728,45,5,49.878624,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0621309,8.0241585,57.16,56.15,44.84,49.01,10,1,1,0,0,6,1,3,1,920,1118736.9,743708.88,296741.38,0,0,0,2237.3706 +2061,2576,4500,4499,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6369739,7.1661654,45,-5,-22.286469,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3942952,7.0480413,44.84,49.01,57.16,56.15,5,1,1,0,0,11,1,3,1,920,1118736.9,743708.88,296741.38,0,0,0,2237.3706 +2062,2577,4501,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.974647,7.982398,0,0,-913.35297,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1238575,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,2588,807506.69,540781.75,302631.34,0,0,0,1442.0895 +2063,2578,4502,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.4970474,7.3998728,0,0,-1106.9462,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7895789,7.3803926,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,2782,351654.69,157079.72,197004.08,0,0,0,2765.6084 +2064,2579,4503,4504,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.2983203,5.0399361,68,-2,26.563173,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.8553448,5.554606,45.99,57.05,56,44,10,1,1,0,0,0,5,2,1,357.5,135810.45,50425.488,181168.2,0,0,0,1812.5781 +2064,2579,4504,4503,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.6884942,6.6416173,68,2,14.549141,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,6.375576,0,0,1,1,0,5.2528887,6.5030193,56,44,45.99,57.05,8,1,1,0,0,0,5,2,1,357.5,135810.45,50425.488,181168.2,0,0,0,1812.5781 +2064,2580,4505,-9,4503,4504,1,1,64,0,0,0,3,3,-9,0,3,6.7972498,7.8152738,7.490027,0,0,-982.00012,0,3,3,2021,9,1,25,20,1,1,0,3.8717375,3.8717375,0,0,0,0,0,0,0,14.5,1,1,0,7.1778193,7.5846796,51.98,46.5,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,781,226165.88,-61964.867,0,0,0,0,872.0907 +2065,2581,4506,4507,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.0172043,7.841783,6,4,91.724236,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.8404784,8.1253939,40.61,31.58,57.14,30.64,6.666666666666667,1,1,0,0,3,9,5,1,685.5,1544860.3,902592.25,431544.44,0,11977.008,0,9437.3027 +2065,2581,4507,4506,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,9.7262506,9.875844,0,6,-4,10.203061,0,3,-9,2021,7,1,35,39,1,1,0,62.586941,62.586941,0,0,0,0,0,0,0,0,0,0,0,2.8784983,0,57.14,30.64,40.61,31.58,6.666666666666667,1,1,0,0,10,9,5,1,685.5,1544860.3,902592.25,431544.44,0,11977.008,0,9437.3027 +2066,2582,4508,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.7603197,8.6768961,0,0,0,-988.25775,0,3,3,2021,7,0,41,40,1,0,0,15.009002,15.009002,.05,.05,0,0,0,0,0,0,0,0,0,4.797173,0,55.06,38.67,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,1653,460495.59,701837.38,0,0,0,2780.1443,2351.6062 +2067,2583,4509,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.2716455,8.5527859,0,0,0,-1078.8624,0,1,1,2021,19,7,34,50,1,7,0,14.39222,14.39222,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,2,3,0,0,5,8,4,0,1304,-57590.242,-94988.602,0,0,0,0,965.4046 +2068,2584,4510,4511,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.0240693,7.4084721,6.3366184,3,-2,-44.4231,0,2,2,2021,7,0,7,9,1,0,0,20.604439,20.604439,0,0,0,1,0,0,0,0,1,1,0,7.9534092,6.7358079,60.42,54.81,55.5,47.36,10,1,1,0,0,14,12,3,1,524.5,1031066.6,549538.44,361748.75,0,0,0,3572.3315 +2068,2584,4511,4510,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5498552,7.2733254,24,2,-63.994144,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4629402,7.3176055,55.5,47.36,60.42,54.81,8.333333333333334,1,1,0,0,13,12,3,1,524.5,1031066.6,549538.44,361748.75,0,0,0,3572.3315 +2069,2585,4512,-9,4513,-9,1,1,17,0,0,1,2,0,0,0,5,0,6.316781,7.0400896,0,0,-959.83435,-9,-9,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5781145,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2585,4513,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.5886297,8.8830872,7.5685244,0,0,-975.99286,0,3,3,2021,6,0,38,40,1,0,0,14.315049,14.315049,.05,.05,0,0,0,0,0,0,1,1,0,7.6855249,0,59.31,49.81,-9,-9,8.333333333333334,2,3,0,0,6,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2585,4514,-9,4513,-9,1,1,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1039.6526,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2586,4515,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,5.6172109,5.5125642,0,0,-1026.3813,-9,-9,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1941876,0,51.24,58.84,-9,-9,5,2,3,0,0,0,2,2,1,476,-50717.508,0,0,0,0,0,-526.30847 +2070,2587,4516,-9,4519,4518,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.02661,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4517,-9,4519,4518,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.5439,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4518,4519,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.4796848,9.3670101,0,8,-2,166.51534,0,-9,-9,2021,12,2,37,40,1,2,0,34.034809,34.034809,.05,.05,0,0,0,0,0,0,1,1,0,3.4167821,0,51.58,40.07,57.91,43.45,6.666666666666667,1,1,0,0,12,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4519,4518,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.3931074,8.0800848,0,8,2,-24.467758,0,2,2,2021,10,2,30,22,1,2,0,16.632336,16.632336,.05,.05,0,0,0,0,0,0,1,1,0,.19320169,0,57.91,43.45,51.58,40.07,8.333333333333334,1,1,0,0,9,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2071,2588,4520,4521,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4993448,8.433259,0,2,-5,-6.091454,0,-9,-9,2021,11,0,35,40,1,2,0,13.723984,13.723984,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,58.21,55.62,7,2,3,0,0,1,6,4,0,421.5,36514.211,0,31122.492,36129.012,0,0,2478.3948 +2071,2588,4521,4520,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,7.028295,6.9185195,0,2,5,-52.057804,0,-9,-9,2021,12,0,50,70,1,0,0,2.4480178,2.4480178,0,0,0,0,0,0,0,0,0,0,0,0,0,58.21,55.62,48,57,8.333333333333334,2,3,0,0,1,6,4,0,421.5,36514.211,0,31122.492,36129.012,0,0,2478.3948 +2072,2589,4522,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.584547,6.7118654,0,0,-1091.4025,-9,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7884326,53.18,54.04,-9,-9,10,3,4,0,0,8,2,2,0,203,529014.75,322241.5,54569.48,0,0,0,1385.1434 +2073,2590,4523,4525,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.0105553,7.9966207,0,11,-4,-102.77422,0,2,3,2021,17,6,26,0,1,6,0,10.914534,10.914534,0,0,0,0,0,0,0,100,1,1,0,7.0931997,0,35.67,64.46000000000001,51.83,57.2,6.666666666666667,2,3,0,1,7,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4524,-9,4523,4525,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.55707,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4525,4523,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.9446287,8.9194288,0,20,4,-47.53941,0,-9,-9,2021,11,1,41,38,1,1,0,19.10672,19.10672,.05,.05,0,0,0,0,0,0,1,1,0,6.8957853,0,51.83,57.2,35.67,64.46000000000001,8.333333333333334,1,1,0,0,9,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4526,-9,4523,4525,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.02679,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2074,2591,4527,-9,4528,4529,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.37054,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2074,2591,4528,4529,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,0,10.125693,10.190063,10,-20,98.033424,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.4962859,10.142324,57.06,57.76,58.15,52.91,10,1,1,0,0,6,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2074,2591,4529,4528,-9,-9,1,1,66,0,1,0,1,1,-9,0,4,0,8.5196781,8.7035236,10,20,-101.19112,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,8.2474785,8.5916157,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2075,2592,4530,4531,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.9165325,6.9018378,56,0,25.423876,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2853999,36.45,27.47,63.8,33.11,8.333333333333334,1,1,0,0,0,10,2,1,948,534341.25,368476.44,239212.03,0,0,1289.1891,1200.1243 +2075,2592,4531,4530,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,0,-135.15353,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,63.8,33.11,36.45,27.47,10,1,1,0,0,0,10,2,1,948,534341.25,368476.44,239212.03,0,0,1289.1891,1200.1243 +2076,2593,4532,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1052.0961,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.8918786,0,51.36,49.48,-9,-9,1.666666666666667,1,1,0,0,5,4,1,0,429,191386.58,0,117976.05,0,0,0,1293.4585 +2077,2594,4533,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.78064,-9,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.74,40.53,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1352,-193511.97,0,0,0,0,0,72.829048 +2078,2595,4534,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1087.8715,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,14.16,-9,-9,6.666666666666667,1,1,0,0,3,1,1,0,731,0,0,0,0,0,0,2253.3872 +2079,2596,4535,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.7893524,5.6069036,0,0,-985.42041,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7744801,5.8233857,56.88,32.93,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,268,327638.78,-49591.863,169207,0,0,0,481.60431 +2080,2597,4536,4537,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.7567253,8.8703022,0,8,-1,-61.9818,0,2,2,2021,7,0,38,38,1,0,0,13.608968,13.608968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.36,51.57,8.333333333333334,1,1,0,0,9,2,4,1,1336.5,1269581,887846.44,411164.56,58930.18,18720.375,0,3865.0574 +2080,2597,4537,4536,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.6045694,8.1183634,7.082798,8,1,33.037426,0,3,3,2021,12,0,25,25,1,0,0,10.756212,10.756212,.05,.05,0,0,0,0,0,0,1,1,0,1.8211566,6.9871902,55.36,51.57,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,1336.5,1269581,887846.44,411164.56,58930.18,18720.375,0,3865.0574 +2080,2598,4538,-9,4537,-9,1,0,35,0,1,0,2,2,-9,0,4,7.8328943,7.9273157,0,0,0,-1099.399,-9,3,-9,2021,11,0,35,0,1,2,1,6.7076278,6.7076278,.05,.05,0,0,0,0,0,0,1,1,0,6.0718622,0,48,57,-9,-9,7,1,1,0,0,1,2,3,1,679,-15086.179,47644.398,0,0,0,0,1474.1038 +2080,2598,4539,-9,4538,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.5059,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,679,-15086.179,47644.398,0,0,0,0,1474.1038 +2080,2599,4540,-9,4537,-9,1,1,25,0,1,0,2,2,-9,0,4,8.0728951,8.0521288,0,0,0,-1105.5154,-9,3,-9,2021,10,0,40,0,1,1,1,11.53373,11.53373,0,0,0,0,0,0,0,0,1,1,0,1.3022453,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,110,57122.02,-70376.234,0,0,0,0,1373.0811 +2081,2600,4541,4542,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.5687437,8.7233677,0,32,10,36.232288,0,2,1,2021,8,0,18,18,1,0,0,38.130257,38.130257,0,0,0,0,0,0,0,2,1,1,0,0,0,60.57,46.44,22.16,30.67,8.333333333333334,1,1,0,0,12,9,4,1,257.5,1175594.1,-7378.1719,589068.69,0,0,0,3137.3389 +2081,2600,4542,4541,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,33,-10,-6.2471876,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50378805,0,22.16,30.67,60.57,46.44,1.666666666666667,1,1,0,0,9,9,4,1,257.5,1175594.1,-7378.1719,589068.69,0,0,0,3137.3389 +2081,2601,4543,-9,4542,4541,1,0,29,0,0,0,1,1,0,0,4,0,0,0,0,0,-960.23517,-9,2,1,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8486776,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,234,-1126.7386,0,0,0,0,0,801.23712 +2081,2602,4544,-9,4542,4541,1,0,25,0,0,0,1,1,-9,0,4,7.9462123,7.5686541,0,0,0,-933.01727,-9,2,1,2021,6,0,41,0,1,0,1,5.3076406,5.3076406,0,0,0,0,0,0,0,0,1,1,0,1.9472382,0,44.44,55.46,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,326,-133150.06,0,0,0,0,0,1813.3917 +2082,2603,4545,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.6279821,8.3769903,0,0,0,-1039.6599,0,2,2,2021,9,0,37,37,1,0,0,18.846279,18.846279,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,589,33380.84,127648.84,159631.66,17725.43,0,0,2155.7153 +2083,2604,4546,4547,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.321496,8.2216187,36,2,-126.14915,-9,3,3,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.4481759,8.3002529,49.04,55.86,45.62,46.46,8.333333333333334,1,1,0,0,9,1,4,1,394,336382.06,385145.69,92709.891,26160.871,9550.3936,0,3534.2422 +2083,2604,4547,4546,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8385024,7.2388334,1,-2,53.332436,-9,-9,-9,2021,14,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.0767934,6.8181891,45.62,46.46,49.04,55.86,10,1,1,0,0,10,1,4,1,394,336382.06,385145.69,92709.891,26160.871,9550.3936,0,3534.2422 +2083,2605,4548,-9,4547,4546,1,0,22,0,0,0,1,1,-9,0,4,7.7821021,7.7218027,1.1890392,0,0,-891.72656,-9,2,2,2021,15,5,18,0,1,5,0,17.641457,17.641457,0,0,0,0,0,0,0,0,1,1,0,.96261758,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,402,146545.88,0,0,0,0,0,1212.531 +2084,2606,4549,4550,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,-3,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,13,1,0,1262.5,35464.184,-10337.148,0,0,0,0,1021.2354 +2084,2606,4550,4549,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,54,3,0,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,47,51,46,8,1,1,0,0,0,13,1,0,1262.5,35464.184,-10337.148,0,0,0,0,1021.2354 +2085,2607,4551,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.8783336,7.9996805,5.986414,0,0,-1104.4985,0,2,2,2021,11,0,37,37,1,0,0,8.0310469,8.0310469,.05,.05,0,0,0,0,0,74.5,1,1,0,6.1401486,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2607,4552,-9,4551,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2125,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2607,4553,-9,4551,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.67133,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.24679202,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2608,4554,-9,4551,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1069.936,-9,2,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,346,23642.818,0,0,0,0,0,0 +2086,2609,4555,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.9714236,5.9020452,0,0,-881.6366,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7124038,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,1,2,1,615,257026.09,165300.28,126426.09,0,0,0,-127.00163 +2087,2610,4556,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9959826,8.4392042,6.8775668,0,0,-1043.941,-9,2,2,2021,11,0,50,0,1,0,0,7.463634,7.463634,.05,.05,0,0,0,0,0,0,1,1,0,0,7.222445,60.14,46.44,-9,-9,6.666666666666667,3,4,0,0,14,8,4,1,805,-12994.445,-51964.402,0,0,0,0,1626.165 +2087,2611,4557,-9,-9,4556,1,1,25,0,0,0,1,1,-9,0,3,8.3368788,8.1502609,0,0,0,-968.31445,0,-9,2,2021,21,8,43,43,1,8,1,10.135009,10.135009,0,0,0,0,0,0,2.19561,0,1,1,0,0,0,39.15,41.42,-9,-9,3.333333333333333,3,4,0,0,9,8,4,1,338,-281099.47,0,0,0,-787.98584,0,1767.3328 +2088,2612,4558,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,6.2907891,6.175426,0,0,-969.46259,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.492888,60.02,56.42,-9,-9,10,1,1,0,0,6,8,2,0,283,358267.53,142471.06,102070.33,0,0,0,1157.3423 +2089,2613,4559,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.4866247,8.4980192,0,0,0,-898.39429,0,3,3,2021,8,0,38,37,1,0,0,14.199934,14.199934,.05,.05,0,0,0,0,0,0,0,0,0,7.2512679,0,55.11,37.11,-9,-9,6.666666666666667,3,4,0,0,14,8,5,1,167,557761.5,177846.78,312531.97,0,0,0,2085.3733 +2089,2614,4560,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,1,7.4644041,7.1628656,0,0,0,-998.91443,0,-9,-9,2021,33,11,24,40,1,11,0,9.5974236,9.5974236,.05,.05,0,0,0,0,0,0,0,0,0,7.0927081,0,39.97,55.07,-9,-9,0,3,4,0,1,2,8,3,1,223,-147684.28,52625.934,0,0,12954.781,1146.7153,627.86456 +2090,2615,4561,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1078.4847,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,-9,-9,7,1,1,0,0,0,8,1,0,2043,106141.88,0,0,0,0,0,925.21057 +2091,2616,4562,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7587504,7.7495098,0,0,0,-902.37659,-9,-9,2,2021,7,0,40,0,1,0,0,7.6172762,7.6172762,0,0,.05,0,0,0,0,0,0,0,0,6.4335141,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,467,123373.38,2909.2715,0,0,0,0,1195.7504 +2092,2617,4563,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.2815,0,2,3,2021,10,0,0,64,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,3.333333333333333,1,1,0,0,14,2,1,1,788,-21023.152,0,0,0,0,1840.4761,971.77527 +2093,2618,4564,4565,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,9,-13,-119.3746,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,56.17,60.17,39.71,8.333333333333334,1,1,1,0,0,13,3,0,696.5,670327.38,451494,252784.31,0,0,1516.4825,1850.2446 +2093,2618,4565,4564,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.4781289,7.3220329,9,13,-12.410142,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,10.230899,0,0,1,1,0,2.4676001,7.8755388,60.17,39.71,60.06,56.17,8.333333333333334,1,1,0,0,10,13,3,0,696.5,670327.38,451494,252784.31,0,0,1516.4825,1850.2446 +2093,2619,4566,-9,4564,4565,1,1,23,0,0,0,2,2,-9,0,4,7.4399929,7.7391782,0,0,0,-1022.5392,0,3,2,2021,6,0,44,0,1,0,1,6.4863067,6.4863067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,2181,17301.648,160270.28,0,0,0,0,789.59955 +2093,2620,4567,-9,4564,4565,1,0,20,0,0,0,2,2,1,0,4,7.7004933,7.899653,0,0,0,-1062.4247,-9,3,2,2021,14,3,44,0,1,3,1,5.8606973,5.8606973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.01,59.84,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,703,-3629.4792,-4721.2368,0,0,4564.644,0,908.07031 +2094,2621,4568,4569,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,7.6918373,7.8533378,8,1,47.962147,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,8.0274363,42.35,30.78,60.12,54.8,8.333333333333334,1,1,0,0,2,12,3,1,811.5,228692.02,38066.797,360637.25,58519.328,0,0,3346.6064 +2094,2621,4569,4568,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,4.965776,5.255744,0,8,-1,-159.1113,0,2,2,2021,10,1,40,10,1,1,0,.51088333,.51088333,0,0,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,42.35,30.78,8.333333333333334,1,1,0,0,9,12,3,1,811.5,228692.02,38066.797,360637.25,58519.328,0,0,3346.6064 +2094,2622,4570,-9,4569,4568,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1149.7805,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.64,42.78,-9,-9,0,1,1,0,0,1,12,1,1,671,-92964.195,0,0,0,0,0,232.20798 +2095,2623,4571,4573,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,8.5661192,8.3465462,0,1,-12,-9.4651699,-9,3,3,2021,4,0,45,0,1,0,0,11.127694,11.127694,.05,.05,0,0,0,0,0,0,1,1,0,3.1045856,0,42.93,51.21,60.12,54.8,3.333333333333333,1,1,0,0,14,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2095,2623,4572,-9,4571,4573,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.20398,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2095,2623,4573,4571,-9,-9,1,1,62,0,1,0,2,2,-9,0,4,0,0,0,1,12,-27.571127,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.93,51.21,8.333333333333334,1,1,0,0,3,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2096,2624,4574,-9,4575,-9,1,1,16,0,1,0,2,2,-9,0,1,0,0,0,0,0,-873.78821,-9,2,-9,2021,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.17,28.19,-9,-9,3.333333333333333,1,1,1,0,13,12,4,1,573,318181.22,240942.16,138010.78,62403.805,0,144.04568,3087.9541 +2096,2624,4575,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9934731,8.3520584,7.2880616,0,0,-996.81873,0,2,3,2021,22,10,35,36,1,10,0,9.4648333,9.4648333,.05,.05,0,0,0,0,0,2,1,0,1,7.0457778,0,29.7,41.88,-9,-9,1.666666666666667,1,1,0,0,10,12,4,1,573,318181.22,240942.16,138010.78,62403.805,0,144.04568,3087.9541 +2097,2625,4576,4577,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,46,-2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.5,29.18,51.24,58.84,8.333333333333334,1,1,0,0,9,12,1,0,663.5,-106277.88,0,0,0,0,0,570.21631 +2097,2625,4577,4576,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,46,2,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,68.5,29.18,8.333333333333334,1,1,0,0,7,12,1,0,663.5,-106277.88,0,0,0,0,0,570.21631 +2098,2626,4578,4579,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.4819207,7.5105147,38,1,-84.742126,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8443942,7.6189747,52.91,55.33,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1510.5,1585750.5,1263721.8,275827.31,0,0,0,4228.458 +2098,2626,4579,4578,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.6626678,7.9581909,38,-1,45.923893,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6934924,7.9841881,57.16,56.15,52.91,55.33,8.333333333333334,1,1,0,0,0,1,4,1,1510.5,1585750.5,1263721.8,275827.31,0,0,0,4228.458 +2099,2627,4580,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-997.43335,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.0129969,7.2567363,30.111544,0,1,1,0,1.224812,0,54,44,-9,-9,8,1,1,0,0,0,4,2,0,387,51811.383,0,0,0,0,0,1330.5426 +2100,2628,4581,-9,4582,4583,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.2189,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1.2882943,0,1,1,0,0,0,30.75,61.56,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2100,2628,4582,4583,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,5.4408898,5.1990142,0,28,0,-144.69609,0,3,2,2021,19,7,12,11,1,7,0,1.9683654,1.9683654,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,35.38,54.21,5,1,1,0,0,3,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2100,2628,4583,4582,-9,-9,1,1,42,0,0,0,3,3,-9,0,2,8.9957352,8.7080822,0,25,0,20.880119,0,3,3,2021,14,2,40,38,1,2,0,18.735193,18.735193,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,54.21,43.2,59.97,1.666666666666667,1,1,0,0,11,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2101,2629,4584,4585,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.56,33.98,30.57,24.42,1.666666666666667,1,1,0,0,0,9,1,0,501.5,1866248.6,1056050.9,761572.5,0,0,0,1792.949 +2101,2629,4585,4584,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,0,0,0,9,7,0,0,2,2,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,24.42,35.56,33.98,5,1,1,0,0,0,9,1,0,501.5,1866248.6,1056050.9,761572.5,0,0,0,1792.949 +2102,2630,4586,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.2334318,8.2850857,6.3271017,0,0,-1024.5848,0,2,2,2021,10,0,24,0,1,0,0,17.301697,17.301697,0,0,0,0,0,0,0,0,1,1,0,5.9093409,6.309864,34.2,49.45,-9,-9,3.333333333333333,1,1,0,1,7,9,4,0,253,724646.13,635915.69,0,0,11807.552,0,2583.0547 +2103,2631,4587,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.3776188,7.839323,6.4525757,0,0,-1085.5137,0,2,2,2021,7,0,38,38,1,0,0,9.6977205,9.6977205,0,0,0,0,0,0,0,0,1,1,0,0,6.4387646,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,15,2,4,1,481,878801.13,596435.75,182219.25,0,0,0,990.31586 +2104,2632,4588,4592,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.4802542,8.2940331,0,10,1,57.327343,0,2,3,2021,17,5,55,54,1,5,0,6.6633439,6.6633439,.05,.05,0,0,0,0,0,0,1,1,0,1.927433,0,34.72,55.65,31.03,56.44,1.666666666666667,1,1,0,0,13,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4589,-9,4592,4588,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-975.15887,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4590,-9,4592,4588,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.7839,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4591,-9,4592,4588,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1210.8125,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4592,4588,-9,-9,1,0,36,1,4,0,2,2,-9,0,2,0,0,0,10,-1,-101.40489,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.03,56.44,34.72,55.65,3.333333333333333,1,1,0,0,6,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4593,-9,4592,4588,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.6096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2105,2633,4594,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4302263,8.0240345,0,0,0,-976.88019,0,-9,-9,2021,9,0,50,0,1,0,0,9.6395702,9.6395702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.24,53.41,-9,-9,5,1,1,0,0,9,7,4,0,208,434841.56,347002.75,112882.69,0,0,0,1564.6561 +2106,2634,4595,4596,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8582954,8.8201132,0,2,5,-47.494076,0,2,2,2021,20,8,45,40,1,8,0,17.569065,17.569065,.05,.05,0,0,0,0,0,0,0,0,0,7.3219633,0,20,62.76,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,1106,558275,308449.44,258293.48,170197.84,1715.4935,198.67761,4730.4497 +2106,2634,4596,4595,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.4702921,8.4832535,0,2,-5,34.350201,0,-9,-9,2021,8,0,45,40,1,0,0,13.141531,13.141531,.05,.05,0,0,0,0,0,0,0,0,0,7.1335955,0,48.87,58.55,20,62.76,1.666666666666667,1,1,0,0,4,9,5,1,1106,558275,308449.44,258293.48,170197.84,1715.4935,198.67761,4730.4497 +2107,2635,4597,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.5682812,8.1837673,6.5205102,0,0,-1112.9447,0,-9,-9,2021,12,0,34,33,1,0,0,7.6842785,7.6842785,0,0,0,0,0,0,0,0,1,1,0,6.713871,0,49.49,59.98,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,556,244758.25,-34799.758,246574.31,14578.105,0,0,2095.8486 +2107,2635,4598,-9,4597,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0185,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,556,244758.25,-34799.758,246574.31,14578.105,0,0,2095.8486 +2107,2636,4599,-9,4597,-9,1,0,18,0,1,0,2,2,1,0,3,8.0383234,7.5121479,0,0,0,-1066.832,-9,2,-9,2021,17,6,37,0,1,6,1,9.6750841,9.6750841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,49.72,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,312,85269.922,-21685.127,0,0,0,0,1450.8813 +2108,2637,4600,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.391181,7.1534686,0,0,-1094.3193,0,1,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.1189932,0,1,1,0,9.9813585,6.8996239,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1695,815630.63,96763.016,363001.31,0,0,0,13463.265 +2108,2638,4601,-9,4600,-9,1,1,49,0,0,0,1,1,-9,0,5,7.4315119,7.8111072,0,0,0,-1125.7211,0,2,1,2021,7,0,60,60,1,0,0,4.1294441,4.1294441,.05,.05,0,0,0,0,0,0,1,1,0,3.2205725,0,57.06,57.76,-9,-9,10,1,1,0,0,8,7,3,1,4003,-75013.922,91164.547,0,0,0,0,1294.9303 +2108,2639,4602,-9,4600,-9,1,1,45,0,0,0,1,1,-9,0,4,7.3813419,7.6758809,0,0,0,-798.04504,0,2,1,2021,9,0,50,60,1,0,0,4.317697,4.317697,.05,.05,0,0,0,0,0,0,1,1,0,2.8955326,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,2231,32718.543,-74046.867,0,0,0,0,1173.3326 +2109,2640,4603,4604,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3991399,7.567513,0,31,-4,-23.457544,0,2,2,2021,13,1,19,19,1,1,0,12.536346,12.536346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.5,56.19,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,206.5,520589.75,139015.81,219995.47,0,-306.48987,0,3062.6184 +2109,2640,4604,4603,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.7627029,8.6047173,0,31,4,-1.3976395,0,2,2,2021,7,0,40,45,1,0,0,14.267725,14.267725,.05,.05,0,0,0,0,0,0,0,0,0,6.6963434,0,57.16,56.15,39.5,56.19,6.666666666666667,1,1,0,0,13,5,5,1,206.5,520589.75,139015.81,219995.47,0,-306.48987,0,3062.6184 +2109,2641,4605,-9,4603,4604,1,0,18,0,0,0,2,2,1,0,3,7.1313753,7.0194273,0,0,0,-1022.607,-9,2,3,2021,29,9,38,0,1,9,1,4.7740645,4.7740645,0,0,0,0,0,0,0,0,0,0,0,2.7604592,0,8.59,58.15,-9,-9,1.666666666666667,1,1,0,0,1,5,2,1,4956,-51798.215,0,0,0,0,0,1141.0576 +2110,2642,4606,4607,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.2997284,7.2634826,0,19,6,9.0357676,0,1,3,2021,7,0,60,50,1,0,0,2.6710293,2.6710293,.05,.05,0,0,0,0,0,0,0,0,0,6.8461509,0,61.12,51.57,56.17,38.15,8.333333333333334,1,1,0,0,10,11,5,1,635.5,836753.94,407229.78,311476.81,0,0,0,3925.1411 +2110,2642,4607,4606,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.7937241,8.7693892,0,19,-6,-28.412479,0,3,2,2021,8,1,42,50,1,1,0,26.917788,26.917788,0,0,0,0,0,0,0,0,0,0,0,2.6583772,0,56.17,38.15,61.12,51.57,6.666666666666667,1,1,0,0,10,11,5,1,635.5,836753.94,407229.78,311476.81,0,0,0,3925.1411 +2111,2643,4608,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.3126249,8.1040888,0,0,0,-1111.7518,-9,3,3,2021,7,0,49,0,1,0,0,7.0326943,7.0326943,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,11,10,4,0,359,101533.73,0,0,0,0,0,1740.8643 +2112,2644,4609,-9,4610,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.2943,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,1,908.5,-84264.148,0,0,0,0,134.59338,639.00836 +2112,2644,4610,-9,4612,4611,1,0,28,1,1,0,2,2,-9,1,2,0,0,0,0,0,-1044.2074,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,27.39,46.07,-9,-9,0,2,3,1,0,0,8,1,1,908.5,-84264.148,0,0,0,0,134.59338,639.00836 +2112,2645,4611,4612,-9,-9,1,1,75,1,1,0,3,3,-9,0,1,0,0,0,8,8,0,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,45.742687,0,0,1,1,0,0,0,20.9,21.84,21.72,22.57,1.666666666666667,2,3,0,1,0,8,1,1,523,324878.28,0,368391.72,0,0,0,2230.3398 +2112,2645,4612,4611,-9,-9,1,0,67,1,1,0,3,3,-9,0,1,0,0,0,42,-8,0,0,3,3,2021,29,10,0,0,4,10,0,0,0,0,0,0,1,0,31.383307,0,0,1,1,0,0,0,21.72,22.57,20.9,21.84,0,2,3,0,1,0,8,1,1,523,324878.28,0,368391.72,0,0,0,2230.3398 +2113,2646,4613,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.8679724,8.1306505,0,0,-879.17133,0,3,3,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7315912,8.2915659,48.29,47.89,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,493,338374.03,83724.727,193487.86,106646.11,10530.394,1420.9171,2624.4294 +2114,2647,4614,-9,4616,4615,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.7441,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4615,4616,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.4076385,8.3832407,0,6,-2,18.338297,0,2,-9,2021,7,1,43,38,1,1,0,11.177187,11.177187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,39.58,57.61,6.666666666666667,1,1,0,0,5,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4616,4615,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,6,2,50.114845,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.58,57.61,56.92,49.39,5,1,1,0,0,6,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4617,-9,4616,4615,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.5026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4618,-9,4616,4615,1,0,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-977.67053,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,1,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2115,2648,4619,-9,4620,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-800.52734,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2115,2648,4620,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-970.64075,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,61.28,46.17,-9,-9,8.333333333333334,1,1,1,0,1,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2115,2648,4621,-9,4620,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.3066,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2116,2649,4622,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,7.9630423,8.3346205,0,0,0,-1091.6799,0,3,2,2021,19,7,45,45,1,7,0,7.483448,7.483448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.32,53.3,-9,-9,3.333333333333333,1,1,0,0,9,8,4,0,65,66812.125,67933.109,0,0,0,0,1608.9783 +2117,2650,4623,4624,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,67,-1,-45.204346,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,33.47,63.01,25.24,8.333333333333334,1,1,0,0,0,7,3,1,1765.5,224576.59,86311.469,286091.44,0,0,0,1723.629 +2117,2650,4624,4623,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,7.5561171,7.7199411,67,1,9.1950474,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6112533,63.01,25.24,57.09,33.47,8.333333333333334,1,1,0,0,0,7,3,1,1765.5,224576.59,86311.469,286091.44,0,0,0,1723.629 +2118,2651,4625,4626,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,71,-3,-72.369476,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,6.0137315,0,0,1,1,0,3.8106506,0,57.68,42.36,34.92,20.92,8.333333333333334,1,1,0,0,0,2,2,1,666,237190.31,170917.31,162140.59,0,0,0,2379.6646 +2118,2651,4626,4625,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,7.4012828,7.7013097,71,3,-33.059429,0,3,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4493046,34.92,20.92,57.68,42.36,5,1,1,0,0,0,2,2,1,666,237190.31,170917.31,162140.59,0,0,0,2379.6646 +2119,2652,4627,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,7.7966661,8.073801,0,0,0,-980.87384,0,3,3,2021,3,0,35,-9,1,0,0,9.0954685,9.0954685,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.2,56.67,-9,-9,10,2,3,0,0,12,6,4,1,2289,49271.355,21784.414,0,0,10345.271,0,1034.8597 +2119,2653,4628,-9,4627,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1098.0377,-9,1,-9,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.25,50.25,-9,-9,3.333333333333333,2,3,0,0,3,6,1,1,710,77786.508,0,0,0,0,0,679.02545 +2120,2654,4629,-9,4631,4633,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.0262,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4630,-9,4631,4633,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-836.13086,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4631,4633,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.0804825,7.1463242,6.7840204,15,-10,-48.622478,0,2,2,2021,8,0,18,15,1,0,0,3.0365736,3.0365736,0,0,0,0,0,0,0,2,1,1,0,6.7570562,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4632,-9,4631,4633,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.264,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4633,4631,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.8901587,7.7575936,0,3,10,-81.208878,-9,-9,-9,2021,9,0,40,0,1,1,0,7.69064,7.69064,.05,.05,0,0,0,0,0,0,1,1,0,6.7749462,0,53,55,54.2,57.49,8,1,1,0,0,9,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2121,2655,4634,4635,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3449068,8.6071405,35,1,56.445549,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7675548,8.3797121,55.3,55.6,51.08,25.3,8.333333333333334,1,1,0,0,0,5,4,1,821.5,1592404,939250.5,245592.03,0,0,0,4494.0498 +2121,2655,4635,4634,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.5278459,6.221209,35,-1,39.199966,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0409803,6.8976173,51.08,25.3,55.3,55.6,5,1,1,0,0,0,5,4,1,821.5,1592404,939250.5,245592.03,0,0,0,4494.0498 +2122,2656,4636,-9,4638,4637,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-949.12524,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4637,4638,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.2263956,8.0514545,0,22,-5,-50.120129,0,3,3,2021,24,10,41,39,1,10,0,11.596768,11.596768,.05,.05,0,0,0,0,0,2,1,0,1,8.1377726,0,39.14,41.63,38.01,34.13,5,3,4,0,1,14,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4638,4637,-9,-9,1,0,56,0,2,0,2,2,-9,1,2,0,0,0,22,5,-45.961132,0,3,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,38.01,34.13,39.14,41.63,3.333333333333333,1,1,0,1,8,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4639,-9,4638,4637,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1061.8082,-9,2,3,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.05,50.13,-9,-9,5,4,2,0,1,0,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2657,4640,-9,4638,4637,1,0,21,0,2,0,2,2,-9,1,3,0,0,0,0,0,-928.49048,0,2,3,2021,14,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,42,54,-9,-9,6,4,2,0,0,4,8,1,1,164,101894.93,0,0,0,0,0,1105.4214 +2123,2658,4641,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.6229658,8.6013126,0,0,0,-1023.4633,0,2,2,2021,27,11,50,40,1,11,0,14.339421,14.339421,0,0,0,0,0,0,0,2,1,1,0,0,0,22.39,45.52,-9,-9,1.666666666666667,4,2,0,1,12,8,5,0,679,7540.2471,0,0,0,1544.5592,0,3058.7576 +2124,2659,4642,4643,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.2772136,7.061882,10,0,94.397079,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,1,0,1.0064287,0,0,1,1,0,4.2900939,6.9640164,28.54,21.04,54.2,57.49,5,1,1,0,0,0,13,3,1,1426.5,995882.31,660800.13,244303.75,0,294.5455,0,2970.5449 +2124,2659,4643,4642,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.1961985,8.2244234,10,0,-3.8354402,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7589598,8.0456085,54.2,57.49,28.54,21.04,8.333333333333334,1,1,0,0,0,13,3,1,1426.5,995882.31,660800.13,244303.75,0,294.5455,0,2970.5449 +2125,2660,4644,4645,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.7603407,8.9558887,7.2270617,32,4,-53.430119,0,3,3,2021,6,0,40,35,1,0,0,13.762677,13.762677,.05,.05,0,0,0,0,0,2,0,0,0,7.6776938,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,1031,961552.25,367084.19,227644.98,0,0,0,4554.2852 +2125,2660,4645,4644,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.5469503,8.5028296,0,32,-4,-44.798416,0,3,3,2021,6,0,35,39,1,0,0,17.621834,17.621834,.05,.05,0,0,0,0,0,2,0,0,0,4.6285872,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,1,1031,961552.25,367084.19,227644.98,0,0,0,4554.2852 +2126,2661,4646,4647,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2877874,8.2567158,0,7,4,178.33926,0,3,2,2021,22,10,40,43,1,10,0,10.050275,10.050275,.05,.05,0,0,0,0,0,0,0,0,0,1.0169468,0,37.85,53.23,32.76,57.87,3.333333333333333,1,1,0,0,10,4,4,1,758,93807.711,309344.56,68007.383,41158.281,14151.136,0,2568.3542 +2126,2661,4647,4646,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.3976316,7.483304,0,7,-4,93.801125,0,-9,-9,2021,24,12,33,43,1,12,0,6.6867871,6.6867871,.05,.05,0,0,0,0,0,0,0,0,0,2.1024549,0,32.76,57.87,37.85,53.23,5,1,1,0,0,7,4,4,1,758,93807.711,309344.56,68007.383,41158.281,14151.136,0,2568.3542 +2126,2662,4648,-9,4647,4646,1,1,23,0,0,0,2,2,-9,0,4,7.7670736,7.6048241,0,0,0,-973.00507,0,2,2,2021,10,1,40,44,1,1,1,6.7078228,6.7078228,0,0,0,0,0,0,0,0,0,0,0,.81241184,0,47.38,57.75,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,114,-17155.539,-32194.994,0,0,0,0,288.87524 +2127,2663,4649,4650,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.2091618,8.7485456,0,6,1,39.542484,0,1,1,2021,12,0,37,37,1,0,0,14.779325,14.779325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,48.98,57.22,8.333333333333334,1,1,0,0,7,7,4,0,253.5,291242.88,89965.078,225362.16,47759.465,0,806.76257,3157.01 +2127,2663,4650,4649,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.4322839,7.7015495,0,6,-1,-28.110765,0,2,2,2021,11,0,45,40,1,0,0,4.9100575,4.9100575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,52.6,52.88,10,1,1,0,0,9,7,4,0,253.5,291242.88,89965.078,225362.16,47759.465,0,806.76257,3157.01 +2128,2664,4651,4652,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,50,-2,-30.889763,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.4,42.8,8.333333333333334,1,1,0,0,0,12,3,1,1663,967522.38,-884.34424,327419.69,0,0,0,2285.0571 +2128,2664,4652,4651,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.9468727,7.5894418,50,2,95.569382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7948546,62.4,42.8,62.49,55.09,8.333333333333334,1,1,0,0,5,12,3,1,1663,967522.38,-884.34424,327419.69,0,0,0,2285.0571 +2129,2665,4653,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9740133,6.7468352,0,0,-1046.0575,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3413305,6.7535281,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,455,392630.88,279726.25,265610.13,137947.81,0,0,1483.2802 +2130,2666,4654,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.839756,6.9544125,0,0,-909.96405,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9834247,45.34,53.64,-9,-9,5,1,1,0,0,12,12,2,0,596,489053.41,156196.03,186266.23,0,359.65134,3429.8936,566.30969 +2131,2667,4655,4656,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.9035153,7.7439532,0,6,2,66.464111,0,-9,-9,2021,15,2,38,38,1,2,0,7.2893434,7.2893434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.28,53.83,33.86,52.31,5,1,1,0,0,6,1,5,1,2253.5,-23861.078,-28625.932,0,0,8417.2676,2081.2864,3788.2661 +2131,2667,4656,4655,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.7428989,8.4299994,0,6,-2,-15.412874,0,1,1,2021,28,10,48,0,1,10,0,12.980967,12.980967,.05,.05,0,0,0,0,0,0,0,0,0,1.1412493,0,33.86,52.31,39.28,53.83,5,1,1,0,1,5,1,5,1,2253.5,-23861.078,-28625.932,0,0,8417.2676,2081.2864,3788.2661 +2132,2668,4657,-9,4660,4658,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.5791,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4658,4660,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.5669765,9.4346714,0,2,2,-80.99321,0,2,2,2021,8,0,47,48,1,0,0,39.060146,39.060146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,45.45,40.73,6.666666666666667,1,1,0,0,8,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4659,-9,4660,4658,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.40247,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4660,4658,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.0410843,8.2843647,0,2,-2,88.86042,-9,2,2,2021,8,0,20,0,1,0,0,18.114161,18.114161,.05,.05,0,0,0,0,0,0,0,0,0,.70459932,0,45.45,40.73,51.24,58.84,6.666666666666667,1,1,0,0,10,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2133,2669,4661,4663,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.6210208,7.9729857,0,12,-2,-28.394985,0,2,2,2021,12,2,25,27,1,2,0,8.4131851,8.4131851,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,55.63,51.83,57.2,6.666666666666667,1,1,0,0,10,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2669,4662,-9,4661,4663,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-962.67487,-9,2,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2669,4663,4661,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.7810678,8.3882599,0,12,2,43.965164,0,2,1,2021,7,0,45,48,1,0,0,14.825319,14.825319,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.64,55.63,8.333333333333334,1,1,0,0,13,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2670,4664,-9,4661,4663,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-923.01385,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,48.6,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,317,0,0,0,0,0,0,0 +2134,2671,4665,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,6.4190536,6.6292257,0,0,0,-1053.4119,-9,1,1,2021,11,1,75,0,1,1,0,1.0133162,1.0133162,0,0,0,0,0,0,0,2,1,1,0,0,0,45.82,38.67,-9,-9,3.333333333333333,1,1,0,1,8,10,2,0,412,172429.77,0,0,0,0,0,1104.5425 +2135,2672,4666,4667,-9,-9,1,0,30,1,2,0,2,2,-9,1,2,6.037199,6.115921,0,1,-14,76.791565,-9,3,2,2021,15,4,7,0,1,4,0,9.8943443,9.8943443,0,0,0,0,0,0,0,119,1,0,1,.860874,0,39,43,43.61,50.28,3.333333333333333,1,1,0,1,9,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4667,4666,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,7.2877054,7.2532215,0,1,14,-37.001446,-9,2,2,2021,12,0,36,0,1,0,0,3.6109359,3.6109359,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.61,50.28,39,43,3.333333333333333,1,1,0,0,13,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4668,-9,4666,4667,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.87305,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4669,-9,4666,4667,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-857.56671,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2136,2673,4670,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,8.5858269,8.7834969,0,0,-1095.0455,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5306368,55.26,55.85,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2299,961473.63,732803.56,188713.31,0,0,0,3349.8508 +2137,2674,4671,4672,-9,-9,1,1,39,0,3,0,2,2,-9,0,2,7.9843149,8.1174717,0,15,4,91.017311,0,2,2,2021,16,4,49,34,1,4,0,6.8129139,6.8129139,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.01,58.45,30.85,57.39,0,1,1,0,0,7,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4672,4671,-9,-9,1,0,35,0,3,0,1,1,1,0,3,0,0,0,15,-4,97.138229,-9,2,2,2021,23,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.85,57.39,33.01,58.45,3.333333333333333,1,1,0,0,1,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4673,-9,4672,4671,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4207,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4674,-9,4672,4671,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-915.42609,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4675,-9,4672,4671,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1100.6046,-9,1,2,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.09,43.33,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2675,4676,-9,4672,4671,1,1,19,0,3,1,2,0,0,0,2,0,0,0,0,0,-1030.1376,-9,1,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.09,47.5,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,920,68798.18,0,0,0,0,0,0 +2137,2676,4677,-9,-9,-9,1,1,18,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.74902,-9,-9,-9,2021,7,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.67,31.28,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,220,-111455.86,0,0,0,0,0,0 +2138,2677,4678,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.0035906,7.9420557,0,0,-938.09564,0,2,2,2021,30,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.29031816,7.7583132,29.66,56.63,-9,-9,3.333333333333333,1,1,0,0,5,10,4,1,344,744856.44,368653.47,329689.31,0,0,0,1850.0853 +2139,2678,4679,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1078.4833,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,373,-89892.875,0,0,0,0,0,-92.082603 +2139,2679,4680,-9,4679,-9,1,1,33,0,0,0,3,3,-9,0,4,8.7109756,8.480422,0,0,0,-1007.0645,-9,2,2,2021,1,0,57,0,1,0,0,8.8462124,8.8462124,0,0,0,0,0,0,0,0,1,1,0,3.3334193,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,443,-180239.02,-11745.572,0,0,0,0,2346.8496 +2140,2680,4681,-9,4682,4683,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.72113,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2140,2680,4682,4683,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,0,0,0,3,3,52.690884,0,3,2,2021,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,59.53,56.44,6.666666666666667,2,3,1,0,8,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2140,2680,4683,4682,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.0999346,8.1013737,0,3,-3,-77.564919,0,-9,-9,2021,7,0,35,36,1,0,0,8.4464455,8.4464455,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,62.49,55.09,5,1,1,0,0,2,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2141,2681,4684,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4556646,8.8042784,5.9240375,0,0,-1011.0849,0,-9,-9,2021,13,2,30,30,1,2,0,20.622608,20.622608,.05,.05,0,0,0,0,0,0,0,0,0,5.5512338,6.2039304,54.35,30.39,-9,-9,5,1,1,0,0,15,7,5,1,1299,36531,-92925.813,0,0,0,0,3009.0134 +2141,2682,4685,-9,-9,4684,1,0,26,0,0,0,1,1,-9,0,4,8.0354519,8.0605202,0,0,0,-975.88525,0,-9,2,2021,2,0,24,35,1,0,1,15.668659,15.668659,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,577,-3760.3286,0,0,0,0,0,1475.3962 +2141,2683,4686,-9,-9,4684,1,1,23,0,0,0,2,2,-9,0,5,7.8726501,7.7952757,0,0,0,-913.40857,0,-9,2,2021,8,0,40,42,1,0,1,8.406558,8.406558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.36,58.53,-9,-9,5,1,1,0,0,7,7,4,1,669,-60780.551,-88495.289,0,0,0,0,916.65204 +2142,2684,4687,4688,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8406587,7.4252725,9,2,180.08849,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.126112,7.520319,43.38,52.86,60.87,44.96,8.333333333333334,1,1,0,0,1,10,3,1,757.5,1067426.9,555876.13,425804.38,0,0,0,2410.5942 +2142,2684,4688,4687,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,9,-2,66.614296,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7407932,0,60.87,44.96,43.38,52.86,8.333333333333334,1,1,0,0,0,10,3,1,757.5,1067426.9,555876.13,425804.38,0,0,0,2410.5942 +2143,2685,4689,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-912.42841,1,3,2,2021,31,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,6.95,66.08,-9,-9,0,1,1,0,1,0,2,1,0,2936,-142282.25,0,0,0,0,0,1203.7286 +2144,2686,4690,4691,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.369226,6.5933542,7,-3,-55.395023,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.151088,6.3451934,46.83,44.5,42.46,31,6.666666666666667,1,1,0,0,0,8,3,1,552.5,760748.13,342200.59,466444.22,25606.211,0,0,2771.0669 +2144,2686,4691,4690,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.9349904,7.6919045,7,3,129.40727,0,2,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,1,0,126.48544,0,0,1,1,0,3.8821433,8.0611525,42.46,31,46.83,44.5,5,1,1,0,0,0,8,3,1,552.5,760748.13,342200.59,466444.22,25606.211,0,0,2771.0669 +2145,2687,4692,4693,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.2843523,8.1538353,0,9,-6,-48.850262,0,2,2,2021,7,0,38,38,1,0,0,14.469954,14.469954,.05,.05,0,0,0,0,0,0,0,0,0,7.3131928,0,60.12,54.8,27.99,54.97,8.333333333333334,1,1,0,0,10,13,5,1,361,1036751.6,573857.38,316802.72,11994.016,0,0,4397.4907 +2145,2687,4693,4692,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5815334,8.3848696,0,9,6,80.309563,0,2,2,2021,12,0,78,47,1,0,0,9.8059473,9.8059473,.05,.05,.05,0,0,0,0,0,0,0,0,.88747501,0,27.99,54.97,60.12,54.8,6.666666666666667,1,1,0,0,10,13,5,1,361,1036751.6,573857.38,316802.72,11994.016,0,0,4397.4907 +2145,2688,4694,-9,4692,4693,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1103.0631,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,202,197036.83,0,0,0,0,0,0 +2145,2689,4695,-9,4692,4693,1,1,19,0,0,0,2,2,-9,0,4,7.7481031,7.9588528,0,0,0,-895.88043,0,2,2,2021,7,0,40,20,1,0,1,6.3871083,6.3871083,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,742,9656.9268,0,0,0,6036.2183,0,696.28229 +2146,2690,4696,-9,4697,-9,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-928.41821,-9,1,-9,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,3,4,-9,0,0,8,5,1,2901,571058.38,395106.91,155286.53,39420.531,0,0,3623.7456 +2146,2690,4697,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.3546085,8.951725,0,0,0,-929.01855,0,2,1,2021,10,0,40,43,1,0,0,31.005312,31.005312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,2901,571058.38,395106.91,155286.53,39420.531,0,0,3623.7456 +2147,2691,4698,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.5514274,7.5216565,0,0,0,-1054.1617,0,2,2,2021,10,1,30,30,1,1,0,7.9212279,7.9212279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.14,53.97,-9,-9,8.333333333333334,1,1,0,0,14,13,3,1,861,43445.836,-7107.9639,0,0,0,0,1236.7307 +2148,2692,4699,4700,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.7081432,7.0175529,0,41,-6,-76.325287,0,2,2,2021,8,0,20,30,1,0,0,5.3565092,5.3565092,0,0,0,0,0,0,0,0,1,1,0,8.445652,0,55.44,52.99,60.12,54.8,8.333333333333334,1,1,0,0,10,9,4,1,969,1881180,0,792427.38,0,0,0,10148.143 +2148,2692,4700,4699,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.4146767,8.6570101,7.906888,41,6,52.809978,0,-9,2,2021,6,0,50,48,1,0,0,4.6926708,4.6926708,0,0,0,0,0,0,0,0,1,1,0,9.812871,7.9927788,60.12,54.8,55.44,52.99,0,1,1,0,0,10,9,4,1,969,1881180,0,792427.38,0,0,0,10148.143 +2149,2693,4701,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.36383,0,2,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4737024,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,265,181445.11,0,0,0,-273.20477,0,79.809013 +2150,2694,4702,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.5283113,7.3440857,0,0,-1074.0179,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4832487,7.7763276,67.61,20.62,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1186,802381,382956.44,213291.47,0,0,0,2229.3425 +2151,2695,4703,-9,4707,4706,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-910.0127,-9,2,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4704,-9,4707,4706,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-898.79858,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4705,-9,4707,4706,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-824.99188,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4706,4707,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.2038393,8.2091036,0,4,1,109.63113,0,-9,-9,2021,19,7,30,30,1,7,0,12.580381,12.580381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.34,53.33,46.31,41.9,1.666666666666667,1,1,0,1,9,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4707,4706,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,4,-1,-45.037735,0,2,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,41.9,19.34,53.33,3.333333333333333,3,4,0,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2152,2696,4708,-9,4709,4712,1,1,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-972.70392,1,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.55,66.2,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,229,-17574.797,0,0,0,0,0,0 +2152,2697,4709,4712,-9,-9,1,0,40,0,1,0,3,3,-9,0,3,7.6973963,7.9121461,0,5,-14,35.430279,0,3,2,2021,13,2,38,38,1,2,0,5.7752395,5.7752395,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,40.44,50.82,57.78,8.333333333333334,2,3,0,0,5,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4710,-9,4709,4712,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.645,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4711,-9,4709,4712,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-940.50189,-9,3,1,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.6,61.6,-9,-9,10,2,3,0,0,1,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4712,4709,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.1955433,7.8960085,0,5,14,-31.468473,0,-9,-9,2021,6,0,50,40,1,0,0,9.4914665,9.4914665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.82,57.78,38.69,40.44,8.333333333333334,2,3,0,0,5,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2153,2698,4713,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.4735408,7.337882,0,0,-991.04071,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0588183,7.2868681,45.88,36.96,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,173,576791.5,123121.66,112175.64,0,0,0,752.53485 +2154,2699,4714,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,7.3437986,7.517396,0,0,0,-1005.0981,0,-9,-9,2021,13,4,28,0,1,4,0,7.194376,7.194376,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,59.68,-9,-9,5,4,2,0,1,1,8,3,0,132,-330236.78,0,0,0,0,0,1460.4808 +2155,2700,4715,-9,4716,4718,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.75287,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4716,4718,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,6.6823988,7.0771918,0,12,1,27.247217,0,2,3,2021,29,12,5,0,1,12,0,24.13175,24.13175,0,0,0,0,0,0,0,0,0,0,0,0,0,17.49,55.41,36.53,59.09,0,1,1,0,1,9,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4717,-9,4716,4718,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.3513,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4718,4716,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.6166468,9.5883436,0,12,-1,69.846016,0,2,2,2021,18,6,46,43,1,6,0,29.450642,29.450642,.05,.05,.05,0,0,0,0,0,0,0,0,1.5229383,0,36.53,59.09,17.49,55.41,5,1,1,0,0,14,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2156,2701,4719,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1047.6677,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,9.292635,0,86.742538,0,1,1,0,0,0,48.99,18.6,-9,-9,5,1,1,0,0,0,9,1,0,778,147318.88,0,158375.41,0,0,0,1660.2654 +2157,2702,4720,-9,4722,4721,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.62024,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4721,4722,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,6.9831257,7.0594044,0,6,1,-12.618732,0,2,2,2021,12,1,16,0,1,1,0,8.5594635,8.5594635,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,52.66,48.73,8.333333333333334,1,1,0,0,1,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4722,4721,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,6,-1,162.54469,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.66,48.73,49.28,52.09,6.666666666666667,1,1,0,0,2,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4723,-9,4722,4721,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0067,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2703,4724,-9,4722,4721,1,0,21,0,2,0,2,2,-9,0,4,7.7504001,7.6693192,0,0,0,-992.56396,0,3,3,2021,12,0,38,35,1,0,1,5.6978402,5.6978402,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.74,50.41,-9,-9,3.333333333333333,1,1,0,0,3,11,3,0,1098,-34761.535,-102669.94,0,0,8101.7261,0,423.22839 +2158,2704,4725,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.8660679,8.6364946,0,0,0,-990.48889,0,2,2,2021,6,0,60,60,1,0,0,16.064798,16.064798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,3,4,0,1,7,6,4,1,503,197514.09,64064.555,208860.06,154370.97,0,0,2341.386 +2158,2704,4726,-9,4725,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.73981,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,503,197514.09,64064.555,208860.06,154370.97,0,0,2341.386 +2158,2705,4727,-9,4725,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-824.16132,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1243182,0,41.65,60.41,-9,-9,8.333333333333334,4,2,0,0,1,6,1,1,372,52354.688,0,0,0,0,0,1517.293 +2158,2706,4728,-9,4725,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1058.3169,-9,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.068376929,0,48.98,57.22,-9,-9,5,4,2,0,0,0,6,1,1,1762,29787.609,0,0,0,0,0,-297.97903 +2159,2707,4729,-9,4731,4730,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1056.1241,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3579755,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2707,4730,4731,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.5214233,8.4595776,0,10,2,-107.74563,0,-9,-9,2021,11,0,40,40,1,1,0,13.309831,13.309831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,61.11,48.86,7,1,1,0,0,1,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2707,4731,4730,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.1116085,6.9116735,0,10,-2,7.4423103,0,2,2,2021,6,0,17,17,1,0,0,7.7424498,7.7424498,.05,.05,0,0,0,0,0,0,1,1,0,3.2568791,0,61.11,48.86,49,50,10,1,1,0,0,12,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2708,4732,-9,4731,4730,1,1,26,0,1,0,2,2,-9,0,4,7.6875162,8.0158463,0,0,0,-975.7915,0,2,2,2021,10,0,39,39,1,1,1,7.5390368,7.5390368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,1,4,4,1,522,-23945.861,64269.781,0,0,5797.603,-299.54895,852.77173 +2160,2709,4733,4735,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6459332,7.9142699,0,10,-1,-50.954472,0,3,2,2021,8,1,37,37,1,1,0,6.3146095,6.3146095,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,50.52,40.15,10,1,1,0,0,11,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2160,2709,4734,-9,4733,4735,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.9641,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2160,2709,4735,4733,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,9.5687819,9.7347851,0,10,1,-13.619819,-9,2,2,2021,10,0,45,0,1,0,0,32.411167,32.411167,.05,.05,0,0,0,0,0,0,0,0,0,2.241555,0,50.52,40.15,59.14,52.5,8.333333333333334,1,1,0,0,12,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2161,2710,4736,4738,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.3459959,8.2303944,0,11,-7,17.914795,0,2,3,2021,11,2,53,55,1,2,0,7.3680391,7.3680391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52.91,55.33,8.333333333333334,1,1,0,0,14,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4737,-9,4736,4738,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.7432,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4738,4736,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5882282,8.4730749,0,11,7,-28.588215,0,3,3,2021,14,2,40,30,1,2,0,15.283565,15.283565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,48.87,58.55,8.333333333333334,1,1,0,0,14,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4739,-9,4736,4738,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.45953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2162,2711,4740,-9,4742,4741,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.66388,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2162,2711,4741,4742,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,9.2919359,9.3112926,0,21,5,-40.451031,-9,-9,-9,2021,15,4,48,0,1,4,0,28.285156,28.285156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.31,55.49,47.25,43.19,8.333333333333334,1,1,0,0,15,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2162,2711,4742,4741,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,.1584817,.18926778,0,13,-5,4.1154022,0,2,2,2021,7,0,6,-9,1,0,0,.0090407841,.0090407841,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,43.19,33.31,55.49,6.666666666666667,1,1,0,0,10,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2163,2712,4743,4746,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,7.7367301,7.5642471,0,9,-5,48.713821,0,-9,-9,2021,7,0,60,40,1,0,0,3.860625,3.860625,.05,.05,0,0,0,0,0,0,1,1,0,5.477138,0,63.48,51.85,66.37,38.36,8.333333333333334,2,3,0,0,9,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4744,-9,4746,4743,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.4353,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4745,-9,4746,4743,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.21375,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4746,4743,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.6954098,7.8039598,0,15,5,94.622078,0,2,2,2021,4,0,36,37,1,0,0,5.8875713,5.8875713,0,0,0,0,0,0,0,0,1,1,0,0,0,66.37,38.36,63.48,51.85,8.333333333333334,2,3,0,0,12,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2164,2713,4747,4748,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.5755091,8.4018469,0,34,-3,-6.1754475,0,2,3,2021,7,0,22,46,1,0,0,28.033314,28.033314,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,48.3,41.76,6.666666666666667,1,1,0,0,8,5,5,1,463.5,890240.75,608374.25,244900.58,11007.823,3025.5527,0,3711.8081 +2164,2713,4748,4747,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.4456129,8.5730591,0,34,3,77.320847,0,-9,-9,2021,12,1,39,41,1,1,0,13.966496,13.966496,.05,.05,0,0,0,0,0,14.5,0,0,0,.37611598,0,48.3,41.76,57.33,53.46,6.666666666666667,1,1,0,0,7,5,5,1,463.5,890240.75,608374.25,244900.58,11007.823,3025.5527,0,3711.8081 +2164,2714,4749,-9,4748,4747,1,1,23,0,0,0,2,2,-9,0,4,8.0753803,8.6294823,0,0,0,-1186.3209,0,2,1,2021,6,0,44,37,1,0,1,11.866877,11.866877,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,473,41374.211,59481.992,0,0,9617.0371,0,1532.3599 +2165,2715,4750,4751,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,1,-1,0,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,45,40,21.37,22.93,5,1,1,0,0,0,12,2,0,1586.5,-5782.2393,0,0,0,0,-169.95697,1292.5791 +2165,2715,4751,4750,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,-9,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,45,40,5,1,1,0,0,0,12,2,0,1586.5,-5782.2393,0,0,0,0,-169.95697,1292.5791 +2166,2716,4752,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.6285286,8.4868221,0,0,0,-917.59198,0,2,1,2021,5,0,45,44,1,0,0,14.651667,14.651667,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,1386,9019.2451,104576.8,0,0,0,0,1983.9332 +2166,2717,4753,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2942457,8.2841349,0,0,0,-1031.6915,-9,-9,-9,2021,10,0,35,0,1,1,0,16.306919,16.306919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,2,8,5,0,1159,21580.453,6053.3892,0,0,0,0,1352.9432 +2166,2718,4754,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4901619,8.4114075,0,0,0,-964.91156,-9,-9,-9,2021,12,0,41,0,1,2,0,10.363228,10.363228,.05,.05,0,0,0,0,0,0,0,0,0,.78710383,0,46,58,-9,-9,7,4,2,0,0,2,8,4,0,262,-13508.979,11225.826,0,0,0,0,1095.9293 +2167,2719,4755,4756,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,-86.501656,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,30.200184,0,0,1,1,0,5.8985763,0,51,46,54,46,8,1,1,0,0,0,11,4,1,1086,1627593.8,649963.5,681322.19,0,-100.85547,0,3702.9524 +2167,2719,4756,4755,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.4288692,8.3279715,6,6,-94.894859,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4693012,8.4944668,54,46,51,46,8,2,3,0,0,0,11,4,1,1086,1627593.8,649963.5,681322.19,0,-100.85547,0,3702.9524 +2168,2720,4757,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.039,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.17,28.73,-9,-9,5,1,1,0,0,0,7,1,0,599,134107.11,-70594.5,133528.89,0,0,0,846.44562 +2169,2721,4758,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.1267,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.3,26.53,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,154,-48393.16,0,175327.41,0,0,0,312.332 +2170,2722,4759,4760,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-19.44496,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,47.38,57.75,7,1,1,0,0,0,11,4,1,1386.5,1590025.6,331107.88,245927.2,0,0,0,3370.8152 +2170,2722,4760,4759,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,8.2934999,8.2296467,6.9544449,44,3,-10.369637,0,2,-9,2021,10,1,4,16,1,1,0,113.30869,113.30869,0,0,0,1,0,0,0,74.5,1,1,0,7.6444144,7.0496206,47.38,57.75,50,47,6.666666666666667,1,1,0,0,10,11,4,1,1386.5,1590025.6,331107.88,245927.2,0,0,0,3370.8152 +2171,2723,4761,4762,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,6.9716883,7.2982025,0,7,-2,38.302711,0,-9,-9,2021,9,0,40,40,1,1,0,3.0228965,3.0228965,0,0,0,0,0,0,0,0,0,0,0,6.9014831,0,52,55,60.12,54.8,8,1,1,0,0,1,13,3,1,1094,26447.426,0,195965.06,126612.2,0,0,1582.9773 +2171,2723,4762,4761,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.5048742,7.6719923,0,7,2,-47.494598,0,3,3,2021,8,1,40,35,1,1,0,4.6855478,4.6855478,0,0,0,0,0,0,0,27,0,0,0,0,0,60.12,54.8,52,55,8.333333333333334,1,1,0,0,8,13,3,1,1094,26447.426,0,195965.06,126612.2,0,0,1582.9773 +2172,2724,4763,4764,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.2327733,6.6286559,55,0,-30.347893,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9154925,55.19,54.26,42.46,49.11,8.333333333333334,1,1,0,0,0,2,2,1,473.5,119169.45,102440.63,0,0,0,0,1271.3497 +2172,2724,4764,4763,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,55,0,102.91319,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,38.291691,0,0,1,1,0,0,0,42.46,49.11,55.19,54.26,8.333333333333334,1,1,0,0,0,2,2,1,473.5,119169.45,102440.63,0,0,0,0,1271.3497 +2173,2725,4765,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.0293512,8.3150482,0,0,0,-1092.2833,0,-9,-9,2021,6,0,38,37,1,0,0,10.450999,10.450999,0,0,0,0,0,0,0,0,0,0,0,0,0,48.06,50.73,-9,-9,1.666666666666667,1,1,0,0,4,2,4,1,327,-44088.113,0,0,0,0,0,1034.4744 +2174,2726,4766,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5167913,8.7101793,0,0,0,-957.84894,0,2,2,2021,10,0,37,74,1,0,0,17.010452,17.010452,.05,.05,0,0,0,0,0,0,0,0,0,5.4200292,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,825,345430.16,367666.41,0,0,5916.2085,-1123.1448,2391.916 +2175,2727,4767,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9042521,8.2011061,0,0,0,-974.17224,0,3,3,2021,11,0,38,38,1,0,0,11.85526,11.85526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.75,50.49,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,623,146133.2,21878.02,144904.77,0,0,0,1710.2831 +2176,2728,4768,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.4733863,5.6054277,0,0,-1076.5482,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.6353662,5.3303804,43.09,54.67,-9,-9,5,1,1,0,0,0,1,2,1,638,36431.078,52027.609,0,0,0,0,718.54797 +2176,2729,4769,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,3.7343202,3.9535508,0,0,-1159.2518,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5412121,0,32.93,49.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,726,-265222.38,0,0,0,0,0,1407.974 +2177,2730,4770,4773,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.2821856,9.5185852,0,9,1,-53.872944,0,2,2,2021,10,0,50,52,1,0,0,25.182705,25.182705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,42.44,57.54,8.333333333333334,1,1,0,0,13,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4771,-9,4773,4770,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-967.70526,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4772,-9,4773,4770,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.4967,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4773,4770,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.5863171,8.4221411,0,9,-1,48.26749,0,-9,-9,2021,15,3,40,36,1,3,0,15.560698,15.560698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.44,57.54,55.3,55.6,8.333333333333334,1,1,0,0,13,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4774,-9,4773,4770,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.6572,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2178,2731,4775,-9,4777,4776,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1001.2466,-9,1,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2178,2731,4776,4777,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0295124,8.0983791,0,22,1,86.465187,0,2,2,2021,8,1,43,37,1,1,0,7.636167,7.636167,.05,.05,0,0,0,0,0,0,1,1,0,1.6383162,0,52.93,55.31,46.44,59.62,8.333333333333334,1,1,0,0,13,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2178,2731,4777,4776,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.1379242,8.9283171,0,22,-1,-71.704979,0,2,2,2021,12,0,41,36,1,0,0,27.634706,27.634706,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,52.93,55.31,8.333333333333334,1,1,0,0,13,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2179,2732,4778,-9,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,7.8690248,7.7696676,0,0,0,-1109.5723,-9,-9,-9,2021,5,0,80,0,1,0,0,3.983583,3.983583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,11,4,1,471,-12927.362,138295.05,0,0,0,0,1992.7841 +2180,2733,4779,4780,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.223403,6.9242721,6,1,37.627884,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.633812,7.0360231,62.49,55.09,60.02,56.42,10,1,1,0,0,7,7,2,1,742.5,358789.19,192089.88,209975.27,0,0,0,1181.0842 +2180,2733,4780,4779,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,6,-1,-43.22488,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0217307,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,7,2,1,742.5,358789.19,192089.88,209975.27,0,0,0,1181.0842 +2181,2734,4781,4782,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.596313,6.5568166,37,-1,-71.193039,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5058565,6.8692703,41.6,27.1,60.29,52.11,6.666666666666667,1,1,0,0,0,5,4,1,772.5,1839929.5,987243.63,270073.63,0,0,0,4254.6489 +2181,2734,4782,4781,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.5574265,8.6159935,37,1,-85.123299,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1148863,8.4295559,60.29,52.11,41.6,27.1,8.333333333333334,1,1,0,0,0,5,4,1,772.5,1839929.5,987243.63,270073.63,0,0,0,4254.6489 +2182,2735,4783,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1040.8553,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,29.04,-9,-9,5,1,1,0,0,0,8,1,0,217,-98403.031,0,0,0,0,0,1099.7605 +2183,2736,4784,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8866138,8.7743235,0,0,0,-1007.616,0,2,3,2021,12,0,40,42,1,0,0,17.210802,17.210802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.26,56.19,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,2374,298772.84,122282.52,0,0,0,13976.843,2393.823 +2184,2737,4785,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.618381,7.7537389,0,0,0,-920.84222,-9,-9,-9,2021,11,0,35,0,1,0,0,8.5627174,8.5627174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,2,3,0,0,4,9,4,1,710,-166263.45,54552.508,0,0,7178.7881,0,232.90907 +2185,2738,4786,4787,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.6100435,8.8422022,9,-1,21.52844,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7582731,8.5034876,60.05,45.35,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,1569,3277949,981303.88,1896352.9,0,0,0,5901.0313 +2185,2738,4787,4786,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,6.0208058,6.2015123,9,1,-56.224983,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4177098,6.2699618,57.16,56.15,60.05,45.35,8.333333333333334,1,1,0,0,0,9,5,1,1569,3277949,981303.88,1896352.9,0,0,0,5901.0313 +2186,2739,4788,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,0,0,-956.95142,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.46,40.89,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,687,197351.05,0,254741.08,0,0,-34.246647,225.27641 +2187,2740,4789,4790,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.1594191,8.2395086,0,35,-1,-54.549816,0,3,3,2021,9,2,49,37,1,2,0,7.9888268,7.9888268,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,11,2,5,1,274,1087528,85357.391,834442.25,221445.2,3470.7395,0,3422.5273 +2187,2740,4790,4789,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,7.7075758,8.4083357,8.1642189,35,1,-61.26569,0,2,1,2021,8,0,30,32,1,0,0,7.3132491,7.3132491,.05,.05,0,0,0,0,0,2,0,0,0,0,8.0474825,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,274,1087528,85357.391,834442.25,221445.2,3470.7395,0,3422.5273 +2187,2741,4791,-9,4789,4790,1,1,20,0,0,0,2,2,-9,0,5,7.3908944,7.4668989,0,0,0,-955.25458,0,3,1,2021,8,0,35,39,1,0,1,5.9637976,5.9637976,.05,.05,0,0,0,0,0,0,0,0,0,1.9991634,0,60.02,56.42,-9,-9,10,1,1,0,0,2,2,3,1,181,63726.359,-34858.398,0,0,0,0,539.84821 +2188,2742,4792,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.3727579,8.8037653,7.788846,0,0,-878.54242,0,3,3,2021,8,1,15,42,1,1,0,34.443573,34.443573,0,0,0,0,0,0,0,14.5,1,1,0,0,8.0904255,57.06,57.76,-9,-9,10,1,1,0,0,11,1,5,1,455,54505.141,17256.92,235270.36,87741.43,0,0,3157.8679 +2189,2743,4793,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-973.30615,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.89,52.61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,647,154882.09,0,0,0,0,0,1695.7468 +2190,2744,4794,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.82021,7.780488,0,0,0,-892.36066,0,2,1,2021,18,7,35,37,1,7,0,7.479948,7.479948,.05,.05,0,0,0,0,0,0,0,0,0,6.3966689,0,46.74,20.78,-9,-9,3.333333333333333,1,1,0,0,4,2,3,0,498,-124615.49,1560.9651,0,0,4616.2837,0,1495.2303 +2191,2745,4795,-9,4798,4797,1,0,16,0,2,1,3,0,-9,1,2,0,0,0,0,0,-937.92255,-9,2,2,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.27,36.1,-9,-9,5,1,1,0,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4796,-9,4798,4797,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.1731,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4797,4798,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2142134,8.2892189,0,6,2,74.941284,0,-9,-9,2021,11,0,53,40,1,0,0,7.5169029,7.5169029,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,16.04,23.99,8.333333333333334,1,1,0,0,12,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4798,4797,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,0,0,0,6,-2,-21.725561,0,-9,2,2021,33,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,16.04,23.99,57.16,56.15,0,1,1,0,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2192,2746,4799,4800,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.4612608,7.605927,44,-1,56.186085,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1920176,7.4502487,54.68,58.58,43.27,52.73,6.666666666666667,1,1,0,0,0,2,3,1,484,1220109,608115,242160.69,0,7301.5869,0,3749.1584 +2192,2746,4800,4799,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.8390698,6.7802119,44,1,46.644218,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0081863,6.836596,43.27,52.73,54.68,58.58,6.666666666666667,1,1,0,0,1,2,3,1,484,1220109,608115,242160.69,0,7301.5869,0,3749.1584 +2193,2747,4801,-9,-9,-9,1,0,26,1,2,0,2,2,-9,1,3,7.2341709,7.2153459,0,0,0,-1045.9459,0,2,2,2021,12,0,25,20,1,0,0,6.9659882,6.9659882,.05,.05,0,0,0,0,0,27,1,1,0,0,0,27.29,57.87,-9,-9,6.666666666666667,1,1,0,0,7,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2193,2747,4802,-9,4801,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.99011,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2193,2747,4803,-9,4801,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.69128,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2194,2748,4804,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.3238301,7.2620578,0,0,0,-938.80347,0,2,3,2021,11,0,45,-9,1,2,1,3.1005054,3.1005054,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,48.06,-9,-9,5,1,1,0,0,8,5,3,0,5647,-40386.438,-26858.016,0,0,0,0,272.79691 +2195,2749,4805,4806,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.183074,5.7598205,9,2,44.189468,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,13.417022,0,0,1,1,0,6.9791584,6.0067887,61.19,42.11,65.53,38.76,10,1,1,0,0,0,13,2,1,835,254516.5,95494.891,129540.42,35669.898,0,0,783.83765 +2195,2749,4806,4805,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.4960861,4.0328903,9,-2,85.271599,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3367867,4.5822973,65.53,38.76,61.19,42.11,10,1,1,0,0,0,13,2,1,835,254516.5,95494.891,129540.42,35669.898,0,0,783.83765 +2196,2750,4807,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,4.8502879,4.8215346,0,0,-1102.0656,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8476229,5.1090627,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,12,13,2,1,941,74654.383,96567.266,119764.38,0,0,0,972.04913 +2197,2751,4808,4809,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.2048569,9.2567902,0,3,-4,-35.567337,0,1,1,2021,10,0,40,40,1,1,0,27.448536,27.448536,.05,.05,0,0,0,0,0,0,1,1,0,1.8574544,0,50,55,56.74,28.63,8,1,1,0,0,1,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4809,4808,-9,-9,1,1,52,0,2,0,1,1,-9,1,2,7.8713379,8.7032251,7.2388077,3,4,-8.7643595,0,1,1,2021,8,0,25,24,1,0,0,15.293151,15.293151,.05,.05,0,0,0,0,0,0,1,1,0,7.0970726,7.8236899,56.74,28.63,50,55,8.333333333333334,1,1,0,0,9,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4810,-9,4808,4809,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.95984,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4811,-9,4808,4809,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1187,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2198,2752,4812,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1152.7064,-9,-9,-9,2021,8,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,57.04,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,1038,70643.828,0,0,0,0,0,380.19385 +2199,2753,4813,4814,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,7.9267521,7.8113413,0,2,0,33.402309,0,-9,-9,2021,0,0,33,36,1,0,0,8.9364901,8.9364901,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,36.41,54.92,10,2,3,0,0,1,2,3,1,536.5,-28687.625,34063.172,0,0,8273.2549,0,2958.2043 +2199,2753,4814,4813,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.2569108,7.7856035,0,2,0,38.287575,0,3,2,2021,14,2,47,47,1,2,0,4.4220624,4.4220624,0,0,0,0,0,0,0,0,0,0,0,7.3866997,0,36.41,54.92,62.39,56.71,8.333333333333334,2,3,0,0,5,2,3,1,536.5,-28687.625,34063.172,0,0,8273.2549,0,2958.2043 +2200,2754,4815,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.439683,7.2537136,0,0,0,-1072.0281,0,2,2,2021,8,0,35,30,1,0,0,4.647893,4.647893,0,0,0,0,0,0,0,0,1,1,0,0,0,53.13,40.75,-9,-9,5,1,1,0,1,11,2,3,0,1101,-62555.816,51477.25,0,0,0,0,1119.7195 +2201,2755,4816,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.4186597,6.609128,0,0,-893.59039,0,2,2,2021,14,4,0,11,4,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.7071098,6.757443,40.71,62.41,-9,-9,6.666666666666667,1,1,0,0,15,12,2,1,1147,230993.89,18738.611,134108.5,0,0,0,-629.44519 +2202,2756,4817,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.0249577,9.2346125,0,0,0,-1071.5848,0,3,-9,2021,6,0,30,25,1,0,0,31.239246,31.239246,.05,.05,0,0,0,0,0,0,0,0,0,6.3949771,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,652,508362.16,307029.66,262592.41,57835.613,0,0,3425.47 +2203,2757,4818,4819,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,9.0628233,8.9960022,7,3,-92.832924,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.9331942,8.5351267,46.98,28.76,52,53,6.666666666666667,1,1,0,0,7,10,5,1,785,1055279.5,886959.75,132020.61,60677.945,0,0,4252.6045 +2203,2757,4819,4818,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,34,-3,-95.92701,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,46.98,28.76,8,1,1,0,0,0,10,5,1,785,1055279.5,886959.75,132020.61,60677.945,0,0,4252.6045 +2204,2758,4820,4821,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.8609724,5.8258891,56,-1,45.726849,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8685331,52,45,54,46,8,1,1,0,0,0,4,2,1,572.5,1184695.6,91639.703,158302.66,0,0,0,2390.1997 +2204,2758,4821,4820,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9692254,6.9369445,56,1,5.7247381,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3470016,6.8185673,54,46,52,45,8,1,1,0,0,0,4,2,1,572.5,1184695.6,91639.703,158302.66,0,0,0,2390.1997 +2205,2759,4822,4823,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.3498402,8.2903004,45,3,-84.590485,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7498374,8.0255289,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,8,4,1,556,905656.25,0,775517.5,0,0,0,4001.7 +2205,2759,4823,4822,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5615878,7.5219908,45,-3,-13.62836,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8512411,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,556,905656.25,0,775517.5,0,0,0,4001.7 +2206,2760,4824,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.4343009,7.5501876,0,0,-1128.0701,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,26.419752,5.2941589,233.14494,0,1,1,0,6.8039298,7.3538895,46.85,19.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,816,793524,198336.63,670643.38,0,0,0,2850.9211 +2207,2761,4825,4826,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9539242,8.0501337,0,9,-3,120.90804,0,-9,3,2021,8,0,51,36,1,0,0,7.2182889,7.2182889,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,10,1,1,0,0,10,11,3,0,1367,222207.66,152165.55,143747.91,0,7735.2158,0,1190.9531 +2207,2761,4826,4825,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.4867935,6.244709,9,3,95.295959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.0423403,6.3641062,54.96,53.17,57.33,53.46,10,1,1,0,0,9,11,3,0,1367,222207.66,152165.55,143747.91,0,7735.2158,0,1190.9531 +2207,2762,4827,-9,4825,4826,1,1,34,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1028.0027,0,3,3,2021,30,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.64,60.53,-9,-9,1.666666666666667,1,1,0,0,1,11,1,0,978,0,0,0,0,0,0,131.69952 +2208,2763,4828,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2553539,7.9680252,0,0,0,-1144.5192,0,3,3,2021,16,4,48,46,1,4,0,8.7638159,8.7638159,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,34.37,38.58,-9,-9,6.666666666666667,1,1,0,0,12,13,4,1,432,721687.06,486807.56,233236.33,69936.406,7604.0498,4288.7432,1667.2151 +2209,2764,4829,4830,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.7777128,8.5317106,0,20,-1,-21.978004,0,2,2,2021,10,0,36,35,1,0,0,19.938644,19.938644,0,0,0,0,0,0,0,2,1,1,0,0,0,53.23,55.33,46.28,62.6,8.333333333333334,1,1,0,0,7,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4830,4829,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.2990813,7.3890233,0,20,1,53.414398,0,3,2,2021,10,0,55,50,1,0,0,3.1571279,3.1571279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,53.23,55.33,8.333333333333334,1,1,0,0,8,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4831,-9,4829,4830,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.0148,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4832,-9,4829,4830,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2501,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2210,2765,4833,4834,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.90063,8.8339491,0,8,2,-77.751587,0,2,2,2021,10,0,84,36,1,0,0,12.558316,12.558316,0,0,0,0,0,0,0,0,1,1,0,0,0,59.74,41.31,44.76,53.53,8.333333333333334,1,1,0,0,9,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2210,2765,4834,4833,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.8575077,8.7541018,0,8,-2,2.8360872,0,-9,-9,2021,15,4,40,37,1,4,0,18.128172,18.128172,0,0,0,0,0,0,0,0,1,1,0,0,0,44.76,53.53,59.74,41.31,8.333333333333334,1,1,0,0,8,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2210,2765,4835,-9,4834,4833,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-894.10388,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2211,2766,4836,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,2.2081223,2.2957151,0,0,-963.03668,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,14.982662,0,0,1,1,0,0,2.5310159,60.73,18.88,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1462,515177,25453.875,407373.84,0,0,0,1578.2174 +2212,2767,4837,4838,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.2635779,7.2017841,55,3,-29.680927,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1504724,7.0113897,54.37,54.8,56.41,48.18,8.333333333333334,1,1,0,0,0,8,2,1,406,713567.88,342551.13,338390.06,0,0,0,2006.0066 +2212,2767,4838,4837,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,55,-3,77.364059,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.41,48.18,54.37,54.8,8.333333333333334,1,1,0,0,5,8,2,1,406,713567.88,342551.13,338390.06,0,0,0,2006.0066 +2213,2768,4839,-9,4842,4840,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.8091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4840,4842,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.3263273,8.5660133,0,5,10,-108.87749,0,-9,-9,2021,7,0,52,63,1,0,0,12.766764,12.766764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.06,34.28,54.79,55.86,6.666666666666667,3,4,0,0,4,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4841,-9,4842,4840,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.2437,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4842,4840,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,8.1951923,8.1792459,0,5,-10,17.669743,0,1,2,2021,11,0,48,30,1,0,0,7.6995053,7.6995053,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.06,34.28,8.333333333333334,3,4,0,0,10,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2214,2769,4843,4845,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,7.204,7.0609961,0,11,0,-70.157074,0,2,2,2021,12,0,30,-9,1,0,0,7.034781,7.034781,.05,.05,0,0,0,0,0,0,1,1,0,4.2260933,0,34.44,48.18,44.42,54.24,5,1,1,0,0,13,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2214,2769,4844,-9,4843,4845,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.40552,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2214,2769,4845,4843,-9,-9,1,1,35,1,1,0,1,1,-9,0,2,8.4911165,9.1348162,0,11,0,107.27258,0,2,2,2021,12,0,40,33,1,0,0,20.987568,20.987568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,54.24,34.44,48.18,6.666666666666667,1,1,0,0,13,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2215,2770,4846,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.5288386,7.8327732,0,0,-1190.1615,0,1,1,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1022863,7.5571613,64.57000000000001,12.51,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,660,185360.92,94566.492,0,0,0,0,1152.4688 +2216,2771,4847,4848,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,0,0,35,16,21.625381,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0745301,0,51.77,58.57,58.73,37.79,3.333333333333333,1,1,0,0,8,9,2,1,635,1341360.5,-38392.031,631375.56,0,0,0,42.986626 +2216,2771,4848,4847,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,6.266171,6.2649183,0,35,-16,36.92202,0,2,1,2021,12,0,30,40,1,0,0,2.0122521,2.0122521,0,0,0,0,0,0,0,0,1,1,0,0,0,58.73,37.79,51.77,58.57,8.333333333333334,1,1,0,0,3,9,2,1,635,1341360.5,-38392.031,631375.56,0,0,0,42.986626 +2217,2772,4849,4850,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2552414,8.5558147,0,10,8,34.672588,0,2,2,2021,12,0,39,39,1,0,0,12.396014,12.396014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.97,32.79,59.43,58.05,5,1,1,0,0,10,10,5,1,552,1495503.4,1164760.5,251707.16,56280.156,9030.082,0,4737.7881 +2217,2772,4850,4849,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,9.1983929,9.3525324,0,10,-8,-49.661446,0,1,1,2021,6,0,43,50,1,0,0,25.712576,25.712576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,40.97,32.79,8.333333333333334,1,1,0,0,10,10,5,1,552,1495503.4,1164760.5,251707.16,56280.156,9030.082,0,4737.7881 +2218,2773,4851,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.5925388,9.5145531,0,0,0,-952.04303,0,2,2,2021,7,0,60,50,1,0,0,30.463694,30.463694,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,12,10,5,0,387,97487.117,-80064.125,132466.11,80177.695,0,0,7871.4922 +2219,2774,4852,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1092.5262,0,3,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,37.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,303,-193297.7,0,0,0,0,0,1600.6986 +2220,2775,4853,4854,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.7115359,6.7713413,41,-5,3.8318939,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.1465931,6.5577512,56.65,38.59,57.89,38.61,6.666666666666667,1,1,0,0,0,10,3,1,1076,865686.38,246790.81,279133.94,0,0,0,4030.7891 +2220,2775,4854,4853,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.939651,7.771266,41,5,60.038902,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4336414,7.4931498,57.89,38.61,56.65,38.59,3.333333333333333,1,1,0,0,0,10,3,1,1076,865686.38,246790.81,279133.94,0,0,0,4030.7891 +2221,2776,4855,-9,4856,4857,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.23199,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2221,2776,4856,4857,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.1473694,8.1361151,0,2,0,55.152348,0,2,2,2021,10,0,36,35,1,0,0,9.6097755,9.6097755,.05,.05,0,0,0,0,0,0,1,1,0,1.3594475,0,45.2,57.55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2221,2776,4857,4856,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.8658724,7.9011059,0,2,9,66.446014,-9,-9,-9,2021,8,0,40,0,1,0,0,8.1743231,8.1743231,.05,.05,.05,0,0,0,0,0,1,1,0,7.1522226,0,58.15,52.91,45.2,57.55,8.333333333333334,1,1,0,0,13,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2222,2777,4858,4859,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,7.6310272,7.8861475,1,-1,-149.56474,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6005445,7.5210223,49.3,59.89,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1176,5248116.5,157248.25,3224159.5,213998.41,11567.863,0,4266.6592 +2222,2777,4859,4858,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.264369,9.4392614,0,1,1,16.219332,-9,2,2,2021,6,0,50,0,1,0,0,21.681501,21.681501,0,0,0,0,0,0,0,7,0,0,0,5.6191077,0,57.16,56.15,49.3,59.89,8.333333333333334,1,1,0,0,11,12,5,1,1176,5248116.5,157248.25,3224159.5,213998.41,11567.863,0,4266.6592 +2223,2778,4860,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.5439186,8.44942,0,0,0,-953.14948,0,3,2,2021,17,6,45,-9,1,6,0,11.616663,11.616663,.05,.05,0,0,0,0,0,0,0,0,0,2.5105808,0,44.15,49.61,-9,-9,10,2,3,0,1,6,9,5,0,701,-178676.88,154589.41,0,0,0,0,2250.9058 +2223,2779,4861,-9,-9,4860,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-910.55872,0,3,2,2021,12,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.33,50.15,-9,-9,5,2,3,0,1,4,9,1,0,357,60177.699,0,0,0,0,0,0 +2224,2780,4862,-9,-9,-9,1,0,24,0,0,1,1,0,0,0,4,0,6.7752032,6.7283106,0,0,-970.34595,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9608226,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,201,-162043.25,0,0,0,0,0,472.80573 +2224,2781,4863,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,5,0,5.0082235,5.2298326,0,0,-1035.33,-9,-9,-9,2021,17,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8997736,0,35.53,63.81,-9,-9,6.666666666666667,4,2,0,1,1,2,2,0,920,-174567.88,0,0,0,0,0,952.79456 +2225,2782,4864,-9,4865,-9,1,0,17,0,0,1,2,0,0,0,3,0,4.5341196,4.5709596,0,0,-929.49902,-9,1,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.790885,0,46.32,43.5,-9,-9,8.333333333333334,1,1,0,0,2,8,3,0,414,40508.594,0,0,0,3682.3779,0,2692.627 +2225,2782,4865,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,7.17134,7.3362322,0,0,-1093.5477,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1976142,0,40.07,54.57,-9,-9,6.666666666666667,1,1,1,1,0,8,3,0,414,40508.594,0,0,0,3682.3779,0,2692.627 +2226,2783,4866,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-943.0318,0,2,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,8,1,0,934,-50803.77,0,0,0,0,0,776.99542 +2227,2784,4867,4868,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,8.4778938,8.5820389,0,2,2,-167.37494,0,-9,-9,2021,15,3,46,46,1,3,0,12.660045,12.660045,.05,.05,0,0,0,0,0,2,1,1,0,0,0,39.83,49.71,29.32,20.77,1.666666666666667,1,1,0,1,4,4,4,0,719,-65962.977,38471.078,162731.3,102002.08,1571.0723,7856.5771,1480.1166 +2227,2784,4868,4867,-9,-9,1,0,24,0,0,0,2,2,1,0,1,0,0,0,2,-2,-74.985313,-9,1,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.32,20.77,39.83,49.71,0,4,2,1,0,2,4,4,0,719,-65962.977,38471.078,162731.3,102002.08,1571.0723,7856.5771,1480.1166 +2228,2785,4869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2654867,8.276639,0,0,0,-894.77698,0,3,3,2021,6,0,37,37,1,0,0,8.4574919,8.4574919,.05,.05,0,0,0,0,0,0,0,0,0,3.9330418,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,603,328239.91,38634.199,322765.34,67482.852,4210.1475,0,1207.3921 +2229,2786,4870,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3108549,8.3467932,0,0,0,-964.29279,0,3,2,2021,2,0,32,30,1,0,0,12.580507,12.580507,.05,.05,0,0,0,0,0,0,0,0,0,2.4920332,0,56.28,41.55,-9,-9,8.333333333333334,1,1,0,0,9,1,4,0,199,55493.613,40095.176,0,0,4827.1021,0,1368.6199 +2230,2787,4871,4872,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.8180294,8.6287603,0,7,0,-7.301846,-9,-9,-9,2021,10,0,25,0,1,1,0,30.902252,30.902252,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,48,45.3,30.57,7,4,1,0,0,1,13,5,1,831.5,581385.5,309612.44,147915.05,0,2785.8679,0,3608.0076 +2230,2787,4872,4871,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,5.6554399,7.5570731,7.7927046,49,0,-58.947357,0,3,2,2021,11,3,5,20,1,3,0,6.44135,6.44135,0,0,0,0,0,0,0,0,1,1,0,4.9724174,7.2045488,45.3,30.57,52,48,6.666666666666667,1,1,0,0,8,13,5,1,831.5,581385.5,309612.44,147915.05,0,2785.8679,0,3608.0076 +2230,2788,4873,-9,4872,4871,1,1,40,0,0,0,2,2,-9,0,4,8.5350914,8.4240885,0,0,0,-1022.8585,-9,1,3,2021,9,0,30,0,1,1,1,19.749846,19.749846,0,0,0,0,0,0,0,0,1,1,0,7.0588436,0,51,56,-9,-9,8,1,1,0,0,1,13,4,1,581,43940.855,62356.543,32833.914,58239.16,0,0,2554.8596 +2231,2789,4874,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.1972466,7.0289187,0,0,-819.53241,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1145649,7.4903541,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,722,386138.41,-87126.367,193188.81,0,0,0,896.7171 +2232,2790,4875,4876,-9,-9,1,0,38,0,2,0,3,3,-9,0,5,0,0,0,3,-15,78.400536,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,2,3,0,0,0,4,3,1,487.5,-32129.387,0,0,0,0,671.74402,1545.5225 +2232,2790,4876,4875,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.4191828,7.9053311,0,3,15,-30.916439,0,3,3,2021,6,0,50,49,1,0,0,8.2380581,8.2380581,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,2,3,0,0,9,4,3,1,487.5,-32129.387,0,0,0,0,671.74402,1545.5225 +2233,2791,4877,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.0990539,5.1762762,0,0,-1003.5314,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2012367,44.14,43.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,878,76514.023,19454.184,18592.113,0,0,666.49939,1557.9484 +2234,2792,4878,-9,4879,4880,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1379,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4879,4880,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.7362823,8.5195112,0,7,-6,41.54567,0,1,2,2021,7,0,56,45,1,0,0,13.218327,13.218327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,1,1,0,0,10,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4880,4879,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.2960882,8.3865213,0,7,6,43.586296,0,2,1,2021,9,0,30,35,1,1,0,15.658494,15.658494,.05,.05,0,0,0,0,0,0,1,1,0,.26908037,0,51,56,57.33,53.46,8,1,1,0,0,1,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4881,-9,4879,4880,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.96313,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2235,2793,4882,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.550395,7.8812213,0,0,0,-1021.2312,0,2,2,2021,12,1,30,30,1,1,0,10.177011,10.177011,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,3565,239067.05,-8240.7197,87432.984,0,6032.5068,0,870.14728 +2236,2794,4883,4884,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.5500422,5.6566391,9,-1,-50.069988,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6352186,52,47,50,46,7,1,1,0,0,0,12,2,0,529,256525.34,179254.16,216957.88,46623.121,0,0,2264.636 +2236,2794,4884,4883,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,9,1,38.425198,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,46,52,47,7,1,1,0,0,0,12,2,0,529,256525.34,179254.16,216957.88,46623.121,0,0,2264.636 +2236,2795,4885,-9,4884,4883,1,1,50,0,0,0,2,2,-9,0,4,8.1847868,8.0724735,0,0,0,-977.62714,-9,3,2,2021,9,0,38,0,1,1,0,11.527687,11.527687,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,1,12,4,0,1616,-149137.34,0,0,0,0,0,1457.9064 +2237,2796,4886,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0434351,9.4013777,0,0,0,-1078.5879,0,1,1,2021,13,1,50,50,1,1,0,23.787497,23.787497,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,6.666666666666667,1,1,0,0,15,9,5,1,891,140823.36,0,293258.63,101781.47,767.43237,0,3965.9617 +2238,2797,4887,4889,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5242691,8.351944,0,13,-1,-49.429867,0,2,2,2021,6,0,25,25,1,0,0,18.842587,18.842587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,57.16,56.15,8.333333333333334,1,1,0,0,14,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4888,-9,4887,4889,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.62952,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4889,4887,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.6039963,8.6613607,0,13,1,-95.933975,0,1,1,2021,7,0,38,37,1,0,0,15.94974,15.94974,.05,.05,0,0,0,0,0,0,1,1,0,7.2219491,0,57.16,56.15,52.08,55.93,10,1,1,0,0,15,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4890,-9,4887,4889,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.14728,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2239,2798,4891,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1821642,8.2973156,0,0,0,-1020.7182,-9,2,3,2021,13,1,47,0,1,1,0,9.9577637,9.9577637,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,57.64,-9,-9,6.666666666666667,2,3,0,0,11,9,4,0,600,71213.992,0,278890.25,112218.31,0,2658.3223,1988.9673 +2240,2799,4892,-9,4893,4894,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-998.88177,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2799,4893,4894,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.0420227,8.0430775,0,23,3,63.502129,0,3,3,2021,11,1,17,30,1,1,0,20.228437,20.228437,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.56,55.57,54.1,59.11,3.333333333333333,1,1,0,0,9,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2799,4894,4893,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,9.0915499,9.1069136,0,23,-3,-86.577621,0,3,3,2021,3,0,41,38,1,0,0,20.495743,20.495743,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,38.56,55.57,8.333333333333334,1,1,0,0,11,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2800,4895,-9,4893,4894,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.2415,-9,1,1,2021,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,449,80493.711,0,0,0,0,0,0 +2241,2801,4896,4897,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.4793625,8.5397282,6.5505662,2,-13,-161.93423,0,3,3,2021,12,2,42,41,1,2,0,11.694567,11.694567,0,0,0,0,0,0,0,0,1,1,0,6.9403872,0,27.98,63,53.98,50.87,5,1,1,0,0,13,6,4,1,1017,400871.75,174263.95,231780.59,0,11622.718,6320.2246,3531.0811 +2241,2801,4897,4896,-9,-9,1,1,62,0,1,0,3,3,-9,0,3,8.329772,8.1661682,0,2,13,93.511696,0,-9,-9,2021,9,0,44,44,1,0,0,8.5273514,8.5273514,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,27.98,63,6.666666666666667,1,1,0,0,10,6,4,1,1017,400871.75,174263.95,231780.59,0,11622.718,6320.2246,3531.0811 +2242,2802,4898,4899,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.7846751,6.6692953,43,-1,5.9757862,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4574442,53,47,45.96,38.67,7,4,5,0,0,0,4,2,1,797,334677.19,212164.25,128242.14,0,-1041.1272,0,2070.5337 +2242,2802,4899,4898,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,43,1,-105.34505,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.96,38.67,53,47,6.666666666666667,4,5,0,0,0,4,2,1,797,334677.19,212164.25,128242.14,0,-1041.1272,0,2070.5337 +2243,2803,4900,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.2544928,8.428112,0,0,0,-1034.6675,0,2,2,2021,10,0,45,45,1,0,0,11.861588,11.861588,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.2,49.4,-9,-9,3.333333333333333,1,1,0,0,7,2,5,0,377,12391.326,-7565.5273,72148.016,0,0,0,1142.8805 +2244,2804,4901,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.8276253,6.7745099,5.3584099,0,0,-1115.4707,0,2,2,2021,12,0,16,16,1,0,0,6.8285317,6.8285317,0,0,0,0,0,0,0,0,1,1,0,5.1344657,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,7,7,2,1,913,-165653.28,0,0,0,0,0,2283.7927 +2245,2805,4902,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.7093315,8.5284433,0,0,0,-982.12677,0,2,2,2021,16,5,41,42,1,5,0,10.818259,10.818259,.05,.05,0,0,0,0,0,27,0,0,0,0,0,36.98,50.5,-9,-9,3.333333333333333,1,1,0,0,11,13,5,1,366,171921.78,212843.06,0,0,5761.0825,1292.7651,1290.3264 +2246,2806,4903,4905,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.2310925,8.3024511,0,15,-8,-75.668373,0,3,3,2021,7,0,39,37,1,0,0,12.254594,12.254594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,58.06,43.48,6.666666666666667,1,1,0,0,10,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2246,2806,4904,-9,4903,4905,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.49359,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2246,2806,4905,4903,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.3997612,8.1026344,0,16,8,-47.324909,0,2,2,2021,9,0,45,47,1,0,0,11.248118,11.248118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.06,43.48,64.96000000000001,43.19,8.333333333333334,1,1,0,0,10,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2247,2807,4906,4907,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,4.8774776,4.9011869,54,1,-36.894363,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4674814,4.8296494,54.1,59.11,46.39,60.99,8.333333333333334,1,1,0,0,0,5,2,1,1251.5,224008.72,42027.773,111459.66,0,0,0,1564.5791 +2247,2807,4907,4906,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2519903,6.2063136,54,-1,-49.440407,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0006995,6.0504413,46.39,60.99,54.1,59.11,1.666666666666667,1,1,0,0,1,5,2,1,1251.5,224008.72,42027.773,111459.66,0,0,0,1564.5791 +2248,2808,4908,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,9.2467508,9.4596081,0,0,0,-1042.5682,0,3,3,2021,14,3,49,52,1,3,0,25.148188,25.148188,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.54,39.68,-9,-9,3.333333333333333,1,1,0,0,12,10,5,1,437,1689160.3,1493822.1,293853.78,49401.309,0,0,4678.9507 +2249,2809,4909,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,5,0,0,0,0,0,-933.00537,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4683976,0,40.46,38.15,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,658,28102.227,0,0,0,0,0,720.17902 +2250,2810,4910,-9,4912,4911,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1063.5972,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.09,54.06,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2250,2810,4911,4912,-9,-9,1,1,61,0,1,0,2,2,-9,1,1,0,0,0,7,12,170.20744,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,.05,0,0,0,0,7,1,1,0,0,0,51.38,33.56,20.48,46.47,5,1,1,0,0,0,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2250,2810,4912,4911,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,7.279799,7.1058044,0,7,-12,45.896053,0,2,2,2021,32,12,28,25,1,12,0,7.1302161,7.1302161,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.48,46.47,51.38,33.56,1.666666666666667,1,1,0,0,10,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2251,2811,4913,4914,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,0,0,0,6,-3,21.038662,0,2,2,2021,25,9,0,88,3,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,22.89,60.29,53.96,24.09,1.666666666666667,1,1,0,0,9,2,3,1,1055,352101.63,104735.2,324568.75,160046.81,6877.2202,5611.5303,1000.1538 +2251,2811,4914,4913,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,8.1525841,8.2954626,0,6,3,-28.17857,0,3,2,2021,11,0,31,31,1,0,0,12.171723,12.171723,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,24.09,22.89,60.29,3.333333333333333,1,1,0,0,8,2,3,1,1055,352101.63,104735.2,324568.75,160046.81,6877.2202,5611.5303,1000.1538 +2252,2812,4915,4917,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.4856052,8.1323147,0,7,19,-50.370369,0,-9,-9,2021,9,0,40,40,1,1,0,10.871588,10.871588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,54,50.11,55.32,8,1,1,0,0,1,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4916,-9,4917,4915,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.18915,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4917,4915,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.8066335,7.7128015,0,13,-19,1.1524967,0,3,3,2021,11,1,36,30,1,1,0,6.8448024,6.8448024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.11,55.32,54,54,8.333333333333334,1,1,0,0,6,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4918,-9,4917,4915,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.89026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2253,2813,4919,4920,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.4569211,7.7624278,31,-1,-54.679447,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5398812,7.6632261,32.65,51.26,59.04,51.29,5,1,1,0,0,6,7,3,1,583,1387399,766724.44,479887.81,0,0,0,2331.9082 +2253,2813,4920,4919,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.568933,6.5549178,31,1,.14460506,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,5.4336886,0,0,1,1,0,5.3983026,6.183691,59.04,51.29,32.65,51.26,10,1,1,0,0,5,7,3,1,583,1387399,766724.44,479887.81,0,0,0,2331.9082 +2254,2814,4921,4922,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,35,-1,0,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9513636,0,59.29,49.68,60.12,54.8,10,1,1,0,0,12,7,1,1,553.5,133301.16,-7079.3281,0,0,0,0,3408.7432 +2254,2814,4922,4921,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,35,1,0,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6738353,0,60.12,54.8,59.29,49.68,8.333333333333334,1,1,0,0,11,7,1,1,553.5,133301.16,-7079.3281,0,0,0,0,3408.7432 +2254,2815,4923,-9,4921,4922,1,0,24,0,0,0,1,1,1,0,4,0,0,0,0,0,-1108.9689,-9,1,1,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5413773,0,49.06,58.64,-9,-9,8.333333333333334,1,1,1,0,3,7,1,1,1004,-88754.539,0,0,0,0,0,361.90854 +2254,2816,4924,-9,4921,4922,1,1,21,0,0,0,2,2,-9,0,3,7.74756,7.8135023,0,0,0,-1007.5262,0,1,1,2021,21,9,40,38,1,9,0,7.2041941,7.2041941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.22,48.69,-9,-9,5,1,1,0,0,2,7,3,1,658,40162.898,9228.6494,0,0,0,0,996.88184 +2255,2817,4925,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.11621,7.692204,6.1463041,0,0,-1028.7485,0,3,3,2021,13,1,20,22,1,1,0,7.8371096,7.8371096,.05,.05,0,0,0,0,0,7,0,0,0,0,6.3454847,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,8,2,3,1,410,34913.336,244079.14,0,0,0,0,1052.5997 +2256,2818,4926,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.5947223,7.7495027,6.0785742,0,0,-1019.9901,0,2,2,2021,8,0,36,37,1,0,0,7.7793045,7.7793045,0,0,0,0,0,0,0,0,1,1,0,0,6.2421865,57.17,50.61,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,4367,-17330.707,0,63872.059,0,0,0,1282.9148 +2257,2819,4927,4928,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.0809069,7.9688516,0,48,-1,43.764618,0,2,-9,2021,8,1,37,37,1,1,0,10.234371,10.234371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,54.37,54.8,10,1,1,0,0,8,10,4,1,541,677273.88,498283,228673.75,52315.789,0,0,3770.8745 +2257,2819,4928,4927,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.0374346,8.319663,0,6,1,-237.78264,0,-9,-9,2021,9,0,30,32,1,0,0,13.726195,13.726195,.05,.05,0,0,0,0,0,0,1,1,0,2.9739466,0,54.37,54.8,59.14,52.5,6.666666666666667,1,1,0,0,8,10,4,1,541,677273.88,498283,228673.75,52315.789,0,0,3770.8745 +2258,2820,4929,4930,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.0049,8.0015087,0,6,6,-15.574909,0,2,3,2021,10,1,43,40,1,1,0,7.7044282,7.7044282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,36,51.15,8.333333333333334,1,1,0,0,9,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4930,4929,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,6,-6,-53.305737,0,2,3,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,51.15,47.31,50.2,8.333333333333334,1,1,0,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4931,-9,4930,4929,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.68378,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4932,-9,4930,4929,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.92969,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2259,2821,4933,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.9155993,5.903121,0,0,-911.72778,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5609846,5.9708562,46.78,40.73,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,264,100043.06,37502.52,195528.19,0,0,0,648.91321 +2260,2822,4934,4935,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,5.5266662,5.9372811,7,-2,-22.779615,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.3684916,5.8458099,60.12,54.8,57.57,49.69,10,1,1,0,0,7,9,3,1,461.5,656357.38,344550.97,155789.38,0,0,0,751.83704 +2260,2822,4935,4934,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.1941185,7.545042,6.0995283,41,2,-149.66153,0,3,2,2021,6,0,25,17,1,0,0,6.856442,6.856442,0,0,0,0,0,0,0,0,0,0,0,4.5062447,6.044054,57.57,49.69,60.12,54.8,8.333333333333334,1,1,0,0,7,9,3,1,461.5,656357.38,344550.97,155789.38,0,0,0,751.83704 +2261,2823,4936,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1026.8491,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8180623,0,40.73,34.53,-9,-9,6.666666666666667,1,1,0,0,6,11,2,1,281,106001.52,153063.17,138188.28,0,0,0,835.64282 +2262,2824,4937,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9733768,8.4005814,0,0,0,-1028.2227,0,-9,2,2021,9,0,48,48,1,0,0,10.525609,10.525609,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,41.44,-9,-9,10,1,1,0,0,13,4,4,0,4030,53957.859,-66582.023,0,0,0,1326.6101,1192.3798 +2263,2825,4938,4939,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,38,0,33.465508,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.278698,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,10,7,5,1,704,550996.88,160800.86,368983.75,29166.281,637.2182,4672.3604,8433.7393 +2263,2825,4939,4938,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.7180443,9.7197514,0,37,0,5.8888826,0,2,2,2021,8,0,55,40,1,0,0,38.927845,38.927845,.05,.05,0,0,0,0,0,0,0,0,0,8.258419,0,57.73,54.53,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,704,550996.88,160800.86,368983.75,29166.281,637.2182,4672.3604,8433.7393 +2264,2826,4940,4941,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.80475,7.5842028,11,1,-33.464497,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0228195,7.6938753,57.51,47.91,46.27,36.04,8.333333333333334,1,1,0,0,9,1,3,1,301.5,496687.47,206989.63,165115.84,0,0,0,3726.9785 +2264,2826,4941,4940,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-1,-38.983036,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,19.08884,0,0,1,1,0,7.5872316,0,46.27,36.04,57.51,47.91,8.333333333333334,1,1,0,0,0,1,3,1,301.5,496687.47,206989.63,165115.84,0,0,0,3726.9785 +2265,2827,4942,4943,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9202089,6.872179,0,6,-2,30.65678,-9,3,3,2021,14,2,70,0,1,2,0,1.519575,1.519575,0,0,0,0,0,0,0,0,1,1,0,0,0,57.91,35.57,54.42,41.45,1.666666666666667,2,3,0,1,7,5,2,1,543,185605.44,-31706.531,118058.42,0,0,0,974.97424 +2265,2827,4943,4942,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,0,0,0,36,2,15.922675,0,3,2,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.42,41.45,57.91,35.57,1.666666666666667,2,3,1,0,0,5,2,1,543,185605.44,-31706.531,118058.42,0,0,0,974.97424 +2265,2828,4944,-9,4942,4943,1,1,32,0,0,0,1,1,-9,0,4,8.6767807,8.6906223,0,0,0,-1168.1852,-9,2,3,2021,10,0,45,0,1,0,1,15.363753,15.363753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,3.333333333333333,2,3,0,0,3,5,5,1,317,231244.16,150199.61,132273.41,84740.828,0,0,1668.1078 +2266,2829,4945,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,6.972796,6.9539967,5.5240741,0,0,-1101.5565,0,2,2,2021,8,0,16,16,1,0,0,7.5594454,7.5594454,0,0,0,0,0,0,0,0,1,1,0,5.3569717,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,8,10,3,1,689,7761.5889,194304.56,0,0,0,0,1096.9938 +2266,2830,4946,-9,4945,-9,1,0,20,0,0,0,2,2,1,0,3,8.2676973,8.1268625,0,0,0,-1002.6939,-9,1,-9,2021,9,2,65,0,1,2,1,8.9239302,8.9239302,0,0,0,0,0,0,0,0,1,1,0,0,0,44.64,55.04,-9,-9,6.666666666666667,1,1,0,0,1,10,5,1,1226,-102285.84,0,0,0,0,0,1399.8965 +2267,2831,4947,-9,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-939.07684,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.13,8.27,-9,-9,5,1,1,0,1,0,13,2,0,654,110477.94,0,0,0,0,1370.4785,2084.4692 +2268,2832,4948,4949,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,9.2084742,9.3583994,0,6,0,162.88567,0,2,2,2021,14,3,38,40,1,3,0,31.884167,31.884167,.05,.05,0,0,0,0,0,0,1,1,0,2.3369513,0,45.81,61.51,45.21,53.42,8.333333333333334,1,1,0,0,7,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2268,2832,4949,4948,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.512393,8.5234203,0,6,0,90.291565,0,1,2,2021,11,1,38,37,1,1,0,14.760801,14.760801,.05,.05,0,0,0,0,0,0,1,1,0,3.1441283,0,45.21,53.42,45.81,61.51,8.333333333333334,1,1,0,0,7,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2268,2832,4950,-9,4948,4949,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-893.46582,-9,1,1,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,1,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2269,2833,4951,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.9694791,5.6873879,0,0,-917.85748,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.139379,5.8772607,58.32,28.96,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,540,302302.5,279998.88,282907.47,0,0,0,1404.295 +2270,2834,4952,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,8.9590435,8.932622,0,0,0,-1010.264,-9,-9,-9,2021,31,12,50,0,1,12,0,17.280869,17.280869,0,0,0,0,0,0,0,0,0,0,0,4.6466746,0,18.01,31.08,-9,-9,3.333333333333333,1,1,0,0,5,7,5,1,1090,1309981.9,393375.56,464067.28,0,0,0,2966.7678 +2271,2835,4953,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0986366,5.8775573,0,0,-974.21014,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.6312327,0,0,1,1,0,4.2038717,5.7681112,52,45,-9,-9,8,1,1,0,0,0,11,2,1,197,209809.77,16032.173,0,0,0,0,1775.9376 +2271,2836,4954,4955,4953,-9,1,0,58,0,0,0,1,1,-9,0,3,7.979846,8.2128153,0,9,-3,-37.313633,0,2,3,2021,11,0,37,37,1,2,0,9.001543,9.001543,0,0,0,0,0,0,0,27,1,1,0,0,0,48,48,51.5,37.04,7,1,1,0,0,10,11,4,1,1107.5,822728.13,480334.06,315161.78,0,-998.4281,0,1559.5266 +2271,2836,4955,4954,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.7250614,7.8514166,0,9,3,76.798058,0,3,3,2021,9,0,40,40,1,0,0,6.495173,6.495173,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.5,37.04,48,48,8.333333333333334,1,1,0,0,10,11,4,1,1107.5,822728.13,480334.06,315161.78,0,-998.4281,0,1559.5266 +2272,2837,4956,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,1,0,6.3371472,6.3818035,0,0,-1077.7217,0,2,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,3.5641692,4.1425533,25.793892,0,1,1,0,0,6.2413263,41,22,-9,-9,0,1,1,0,0,0,12,2,1,260,368261.59,-64946.75,251844,0,0,0,1648.9352 +2273,2838,4957,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1084.342,0,3,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.11,40.46,-9,-9,8.333333333333334,1,1,1,0,1,13,1,0,2411,127039.96,0,0,0,0,0,386.78891 +2274,2839,4958,4959,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6921949,8.7230005,4.3885741,7,2,-8.7167215,0,3,2,2021,10,0,35,38,1,1,0,16.090899,16.090899,.05,.05,0,0,0,0,0,0,0,0,0,3.6040242,4.1476245,51,49,48,49,7,1,1,0,0,9,13,5,1,811,284921.81,108352.82,140180.03,15599.485,0,0,3290.2817 +2274,2839,4959,4958,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.4253879,7.4620371,0,7,-2,12.19306,0,3,3,2021,11,0,30,30,1,2,0,8.1567335,8.1567335,.05,.05,0,0,0,0,0,0,0,0,0,.54460424,0,48,49,51,49,7,1,1,0,0,9,13,5,1,811,284921.81,108352.82,140180.03,15599.485,0,0,3290.2817 +2274,2840,4960,-9,4959,4958,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.6302,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.69753581,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,628,0,0,0,0,0,0,-508.98972 +2275,2841,4961,4962,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.7580328,4.9256735,1,7,-26.014782,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36674619,4.6841397,51.41,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,5,2,0,853.5,-49622.668,0,0,0,0,0,1198.0978 +2275,2841,4962,4961,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,0,0,0,1,-7,30.320072,-9,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.41,56.15,8.333333333333334,1,1,0,0,0,5,2,0,853.5,-49622.668,0,0,0,0,0,1198.0978 +2276,2842,4963,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.4739418,7.5855937,0,0,0,-996.20941,0,3,2,2021,12,0,34,31,1,0,0,7.4209728,7.4209728,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.32,35.76,-9,-9,5,1,1,0,0,11,11,3,0,756,195532.19,36125.109,0,0,0,0,1243.4324 +2276,2843,4964,-9,4963,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1032.7875,1,2,-9,2021,11,3,0,33,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.05,43.02,-9,-9,1.666666666666667,1,1,0,0,4,11,1,0,701,-50878.938,0,0,0,0,0,1300.8253 +2277,2844,4965,4966,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.0570822,7.9948311,0,13,0,12.754703,0,2,3,2021,11,0,35,30,1,0,0,9.4861975,9.4861975,0,0,0,0,0,0,0,0,0,0,0,0,0,39.65,56.19,55.96,49.93,6.666666666666667,1,1,0,0,12,6,5,1,215,947896.5,419971.38,270660.91,0,0,1095.4476,2833.8511 +2277,2844,4966,4965,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4677925,8.2584,0,13,0,-13.11681,0,2,3,2021,9,1,37,41,1,1,0,12.116996,12.116996,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,39.65,56.19,8.333333333333334,1,1,0,0,15,6,5,1,215,947896.5,419971.38,270660.91,0,0,1095.4476,2833.8511 +2278,2845,4967,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,7.290484,7.4619389,0,0,0,-936.09552,-9,-9,-9,2021,10,2,32,0,1,2,0,6.4688272,6.4688272,0,0,0,0,0,0,0,7,0,0,0,0,0,62.98,38.61,-9,-9,6.666666666666667,2,3,0,0,3,8,3,0,1222,54122.945,-9712.71,0,0,0,0,1610.4464 +2279,2846,4968,4969,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,5.7607589,5.8794193,70,5,165.49353,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3714652,5.9555788,56,44,31.32,42.75,8,1,1,0,0,0,7,2,1,1154,64577.309,156575.94,53351.641,0,0,0,953.29517 +2279,2846,4969,4968,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,70,-5,53.836594,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.6237347,0,19.88969,74.5,1,1,0,0,0,31.32,42.75,56,44,8.333333333333334,1,1,0,0,0,7,2,1,1154,64577.309,156575.94,53351.641,0,0,0,953.29517 +2280,2847,4970,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5464039,8.2657404,0,0,0,-1050.797,0,2,2,2021,11,0,37,36,1,0,0,13.325109,13.325109,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,8,5,0,803,563775.81,279189.72,0,0,0,0,2363.0684 +2280,2848,4971,-9,4970,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.239,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.22357355,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,8,1,0,1740,16528.592,0,0,0,0,0,-708.29327 +2281,2849,4972,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.078341,5.9648223,0,0,-1078.4153,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1083145,6.3264499,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,315,199403.44,288821.44,0,0,0,0,538.82721 +2281,2850,4973,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.9780869,7.8619466,0,0,0,-974.60541,0,3,3,2021,10,0,32,31,1,0,0,11.353374,11.353374,0,0,0,0,0,0,0,0,1,1,0,0,0,36.6,56.17,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,126,23425.6,39284.691,41658.824,13944.302,0,0,1771.0826 +2282,2851,4974,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5184917,8.5453892,0,0,0,-1052.248,-9,3,3,2021,6,0,39,0,1,0,0,15.674428,15.674428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,506,288986.53,337294.97,0,0,0,15309.809,2934.2776 +2283,2852,4975,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.7144079,9.2213058,0,0,0,-993.61932,0,2,2,2021,23,11,43,41,1,11,0,17.653738,17.653738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.95,48.83,-9,-9,3.333333333333333,1,1,0,0,11,5,5,1,2316,381556.72,71581.148,119843.62,54378.766,0,4798.0474,2092.6104 +2284,2853,4976,4977,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.8288517,7.5995646,0,6,2,26.829662,-9,-9,-9,2021,10,0,30,0,1,0,0,7.7975821,7.7975821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.72,51.1,44.6,52.77,5,1,1,0,0,2,4,4,0,194,282934.5,114923.45,0,0,0,0,1856.7642 +2284,2853,4977,4976,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.622602,7.6928339,0,6,-2,156.49901,0,2,2,2021,11,0,44,40,1,0,0,5.3166838,5.3166838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.6,52.77,47.72,51.1,5,1,1,0,0,11,4,4,0,194,282934.5,114923.45,0,0,0,0,1856.7642 +2285,2854,4978,4979,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8951855,8.2121429,0,18,-2,7.6343017,0,3,3,2021,11,0,38,38,1,0,0,9.1577349,9.1577349,.05,.05,0,0,0,0,0,42,0,0,0,3.6235626,0,51.08,52.1,49,49,6.666666666666667,1,1,0,0,12,13,4,1,819,386103.78,276649.59,85021.109,0,13089.343,0,2799.9238 +2285,2854,4979,4978,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1342945,8.1829681,0,10,2,42.824116,0,2,3,2021,11,0,40,40,1,1,0,7.9456201,7.9456201,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,49,51.08,52.1,7,1,1,0,0,1,13,4,1,819,386103.78,276649.59,85021.109,0,13089.343,0,2799.9238 +2286,2855,4980,4981,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.889051,6.8714404,47,3,-9.1646814,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.6084871,6.6793609,60.12,54.8,56.33,51.02,8.333333333333334,1,1,0,0,10,10,2,1,519,815219.75,510342.19,363652.94,0,0,2071.6343,1510.5447 +2286,2855,4981,4980,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,47,-3,-88.206879,0,2,1,2021,7,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,60.12,54.8,8.333333333333334,1,1,0,1,9,10,2,1,519,815219.75,510342.19,363652.94,0,0,2071.6343,1510.5447 +2287,2856,4982,4985,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.7071304,8.9906263,0,18,0,81.34761,0,2,1,2021,10,0,40,40,1,0,0,14.749425,14.749425,.05,.05,0,0,0,0,0,2,1,1,0,4.2342243,0,53.78,48.41,54.2,57.49,3.333333333333333,1,1,0,0,10,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4983,-9,4985,4982,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.5023,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4984,-9,4985,4982,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.5115,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4985,4982,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.0220289,8.2719545,0,19,0,42.247433,0,3,2,2021,8,0,19,21,1,0,0,23.242998,23.242998,.05,.05,0,0,0,0,0,0,1,1,0,6.3208909,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,10,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2288,2857,4986,4987,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9056015,8.7704659,0,3,3,43.666267,0,-9,-9,2021,13,1,39,39,1,1,0,20.688135,20.688135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.19,53.7,54.79,55.86,8.333333333333334,1,1,0,0,11,7,5,1,897.5,370362.69,103166.17,302694.31,0,0,0,5443.5659 +2288,2857,4987,4986,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4216328,8.546958,0,3,-3,-47.351013,0,-9,-9,2021,10,0,38,38,1,0,0,12.950338,12.950338,.05,.05,0,0,0,0,0,0,0,0,0,1.5400318,0,54.79,55.86,47.19,53.7,6.666666666666667,1,1,0,0,11,7,5,1,897.5,370362.69,103166.17,302694.31,0,0,0,5443.5659 +2289,2858,4988,-9,4989,4991,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.36633,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4989,4991,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.370492,8.7052822,0,17,-5,66.604752,-9,2,2,2021,11,0,40,0,1,0,0,13.76548,13.76548,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,6.666666666666667,1,1,0,0,10,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4990,-9,4989,4991,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.47443,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4991,4989,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.7140274,8.6066008,0,20,5,139.88557,0,1,2,2021,8,0,40,42,1,0,0,13.569859,13.569859,.05,.05,0,0,0,0,0,0,1,1,0,7.8742566,0,51.17,49.39,51.83,57.2,8.333333333333334,1,1,0,0,7,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2290,2859,4992,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1027.6282,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,1087,0,0,0,0,0,0,252.30028 +2291,2860,4993,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7973547,8.8283129,0,0,0,-1076.6516,0,2,2,2021,7,0,40,40,1,0,0,16.696051,16.696051,.05,.05,0,0,0,0,0,0,0,0,0,.41341901,0,54.74,57.22,-9,-9,10,1,1,0,0,8,9,5,1,1440,250486.61,287154.16,264973.81,155626.89,1501.5786,0,2065.5613 +2292,2861,4994,4995,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.9995503,6.8684177,36,2,13.694159,-9,3,3,2021,13,1,0,0,4,1,0,0,0,.05,.05,0,1,0,1.983765,0,0,1,1,0,0,6.5750933,43.5,28.45,57.42,49.34,8.333333333333334,2,3,0,0,0,8,4,1,572,625819.69,379032.94,318225.41,0,0,1783.3835,2994.3862 +2292,2861,4995,4994,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.1530533,8.2511854,0,1,-2,-3.2253895,-9,3,2,2021,9,0,30,0,1,0,0,13.944762,13.944762,0,0,0,0,0,0,0,7,1,1,0,0,0,57.42,49.34,43.5,28.45,10,2,3,0,0,12,8,4,1,572,625819.69,379032.94,318225.41,0,0,1783.3835,2994.3862 +2292,2862,4996,-9,4995,4994,1,1,36,0,0,0,1,1,-9,0,4,8.6104546,8.7518387,0,0,0,-957.97125,-9,2,2,2021,5,0,40,0,1,0,0,15.550525,15.550525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,2,3,0,0,12,8,5,1,125,68740.273,24318.773,0,0,0,0,2199.0251 +2292,2863,4997,-9,4995,4994,1,1,30,0,0,0,1,1,-9,0,4,8.3273745,8.3280296,0,0,0,-925.42297,-9,2,2,2021,9,1,48,0,1,1,0,10.730118,10.730118,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,2,3,0,0,3,8,4,1,795,0,0,0,0,0,0,2414.9944 +2293,2864,4998,4999,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1109762,5.1043401,8,3,-9.0033503,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0897191,4.5479827,57.16,56.15,60.29,38.88,10,1,1,0,0,0,11,2,1,1436.5,456737.53,376291.25,93800.734,0,0,0,2344.1506 +2293,2864,4999,4998,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.3485241,7.16224,8,-3,27.638462,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4382172,7.140193,60.29,38.88,57.16,56.15,8.333333333333334,1,1,0,0,2,11,2,1,1436.5,456737.53,376291.25,93800.734,0,0,0,2344.1506 +2294,2865,5000,5001,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,7,-5,-37.426838,0,3,3,2021,11,0,0,40,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,1,1,0,0,0,13,3,1,812.5,1130776.9,794602.94,155874.2,0,0,0,1988.2185 +2294,2865,5001,5000,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,7.7067919,7.713377,0,7,5,3.7124774,0,3,3,2021,6,0,56,56,1,0,0,5.7349291,5.7349291,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,10,1,1,0,0,8,13,3,1,812.5,1130776.9,794602.94,155874.2,0,0,0,1988.2185 +2295,2866,5002,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,8.0399437,8.0776205,0,0,0,-1009.4024,0,3,3,2021,8,1,29,28,1,1,0,11.870024,11.870024,.05,.05,0,0,0,0,0,0,1,1,0,8.2478027,0,48.69,41.09,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,624,454636.09,277146.66,192686.44,74499.539,2520.9568,7292.2495,2739.7517 +2296,2867,5003,5004,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0989809,8.3508348,6.8291278,5,8,-.3182056,0,-9,-9,2021,10,0,41,41,1,0,0,8.1790819,8.1790819,.05,.05,.05,0,0,0,0,0,0,0,0,6.296463,7.2780652,51.14,60.45,57.16,56.15,10,1,1,0,0,6,12,4,1,418,490055.38,115221.89,173943.72,46469.113,0,0,3290.7227 +2296,2867,5004,5003,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5880017,7.6010251,0,5,-8,5.7096281,0,3,-9,2021,7,0,25,26,1,0,0,9.4903107,9.4903107,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,418,490055.38,115221.89,173943.72,46469.113,0,0,3290.7227 +2297,2868,5005,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2331581,8.1004896,0,0,0,-945.95001,0,-9,-9,2021,10,0,43,43,1,0,0,8.1182499,8.1182499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,216,-40388.73,101046.97,0,0,0,0,2027.5159 +2298,2869,5006,5007,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,5.8661571,6.1783171,55,-3,-83.661423,0,-9,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,1.0630268,5.851728,18.01,25.88,28.57,55.63,5,1,1,0,0,0,2,2,1,881,525990.88,241192.09,94319.727,0,0,0,2023.114 +2298,2869,5007,5006,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.2028189,7.2298622,54,3,-38.686287,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.827384,7.1727118,28.57,55.63,18.01,25.88,6.666666666666667,1,1,0,0,3,2,2,1,881,525990.88,241192.09,94319.727,0,0,0,2023.114 +2299,2870,5008,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.8997598,8.0031462,0,0,0,-1031.8129,0,2,2,2021,6,0,38,37,1,0,0,9.2570057,9.2570057,0,0,0,0,0,0,0,0,0,0,0,.82751268,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,9,13,3,0,397,99622,0,100930.63,74026.445,0,1270.4269,707.88733 +2300,2871,5009,-9,5010,5012,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1765,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5010,5012,-9,-9,1,0,25,2,2,0,2,2,-9,0,2,0,0,0,3,-4,-27.969666,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.03,40.88,39.95,36.04,5,1,1,0,1,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5011,-9,5010,5012,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7172,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5012,5010,-9,-9,1,1,29,2,2,0,2,2,-9,0,2,7.7075982,7.7918124,0,3,4,-18.401651,0,-9,-9,2021,23,10,41,37,1,10,0,5.6245284,5.6245284,0,0,0,0,0,0,0,0,1,1,0,0,0,39.95,36.04,29.03,40.88,8.333333333333334,1,1,0,0,5,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2301,2872,5013,5014,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.7835817,6.20225,33,1,-98.8843,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0733829,6.3941011,63.35,11.33,58.84,47.11,1.666666666666667,1,1,0,0,0,9,2,1,780.5,789787.31,241922.56,289276.41,0,0,0,1962.9131 +2301,2872,5014,5013,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.0025482,6.399086,33,-1,155.79652,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0963855,6.3344769,58.84,47.11,63.35,11.33,8.333333333333334,1,1,0,0,0,9,2,1,780.5,789787.31,241922.56,289276.41,0,0,0,1962.9131 +2302,2873,5015,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2894573,7.3828673,0,0,0,-1039.2637,0,2,2,2021,9,0,26,-9,1,0,0,7.7635293,7.7635293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.95,57.25,-9,-9,1.666666666666667,1,1,0,0,13,7,3,1,2608,277641.06,302220.28,0,0,0,0,440.52966 +2303,2874,5016,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5016851,8.4513855,0,0,0,-977.914,0,2,2,2021,19,6,60,66,1,6,0,12.712389,12.712389,0,0,0,0,0,0,0,0,0,0,0,0,0,62.35,44.36,-9,-9,1.666666666666667,2,3,0,0,11,7,5,1,139,817613.44,210925.41,524463.06,233.42133,2414.603,0,1286.4369 +2304,2875,5017,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4645061,8.9380531,0,0,0,-1092.2723,0,2,2,2021,9,0,42,37,1,0,0,11.133649,11.133649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,107,799665.63,471461.78,490066.53,50592.906,1768.0287,1162.6426,2253.2959 +2305,2876,5018,-9,5020,5019,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5019,5020,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.4931698,8.3029871,0,8,1,137.31186,0,-9,-9,2021,7,0,40,53,1,0,0,11.646363,11.646363,.05,.05,0,0,0,0,0,0,1,1,0,4.1791658,0,43.32,51.51,39.73,37.29,5,1,1,0,0,8,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5020,5019,-9,-9,1,0,32,0,2,0,2,2,-9,1,2,0,0,0,8,-1,-39.103504,0,2,2,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.73,37.29,43.32,51.51,5,1,1,0,0,9,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5021,-9,5020,5019,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.38953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2306,2877,5022,5023,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.1481795,6.2680006,58,-4,135.77663,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,1.6321368,0,0,1,1,0,7.3859673,6.4465604,39.6,25.23,59.06,48.59,8.333333333333334,1,1,0,0,0,1,3,1,751.5,396470.84,57906.547,134313.84,0,0,0,3264.5488 +2306,2877,5023,5022,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.545404,7.6449275,58,4,74.589622,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2381349,7.608561,59.06,48.59,39.6,25.23,8.333333333333334,1,1,0,0,0,1,3,1,751.5,396470.84,57906.547,134313.84,0,0,0,3264.5488 +2307,2878,5024,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,2,9.462429,9.4892616,0,0,0,-970.03442,0,-9,-9,2021,6,0,37,42,1,0,0,44.659306,44.659306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,-9,-9,10,3,4,0,0,7,8,5,1,216,-33399.109,77531.43,0,0,3753.6565,0,5825.832 +2307,2879,5025,-9,-9,5026,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1564,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,1,1,789,211481.83,0,0,0,0,1353.1508,-609.05634 +2307,2879,5026,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1054.342,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18031867,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,789,211481.83,0,0,0,0,1353.1508,-609.05634 +2308,2880,5027,-9,5028,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.21313,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,344.5,143772.53,0,0,0,0,0,828.70831 +2308,2880,5028,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1037.3346,-9,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.53,49.9,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,344.5,143772.53,0,0,0,0,0,828.70831 +2309,2881,5029,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.0601454,8.2799664,0,0,-1053.8405,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2392073,8.1796265,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,641,1008744.1,221947,547863.81,0,0,0,2135.3076 +2310,2882,5030,5031,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,60,-3,61.139397,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,13.797217,0,0,1,1,0,0,0,46.96,18.26,62.39,56.71,0,1,1,0,0,0,11,2,0,1954,32438.953,146473.36,0,0,0,0,2519.4731 +2310,2882,5031,5030,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.5747266,5.6181016,60,3,-35.819637,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.7700553,62.39,56.71,46.96,18.26,10,1,1,0,0,0,11,2,0,1954,32438.953,146473.36,0,0,0,0,2519.4731 +2311,2883,5032,5033,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,22,-1,77.693443,0,3,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,51.56,43.28,42.34,8.333333333333334,1,1,1,0,0,1,2,1,613,738296.5,642676.63,129588,0,0,0,899.71375 +2311,2883,5033,5032,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.2448325,7.6665826,22,1,-100.046,0,3,2,2021,15,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7132168,7.0074544,43.28,42.34,47.25,51.56,6.666666666666667,1,1,0,0,6,1,2,1,613,738296.5,642676.63,129588,0,0,0,899.71375 +2312,2884,5034,5035,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,51,-1,4.3720546,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,.20083159,0,0,1,1,0,2.9392886,0,55.54,29.96,53.1,52.62,8.333333333333334,1,1,0,0,0,6,4,1,492,1011513.1,515098.59,214395.75,0,0,0,3468.5215 +2312,2884,5035,5034,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.5333176,8.8288927,51,1,-127.54714,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3034496,8.3054733,53.1,52.62,55.54,29.96,8.333333333333334,1,1,0,0,0,6,4,1,492,1011513.1,515098.59,214395.75,0,0,0,3468.5215 +2313,2885,5036,5037,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,18,-2,-121.6372,0,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.4,23.11,51.11,53.42,1.666666666666667,1,1,0,1,5,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2885,5037,5036,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,7.6575079,7.9444785,0,19,2,86.310089,0,2,2,2021,10,0,40,40,1,0,0,6.9426799,6.9426799,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.11,53.42,26.4,23.11,8.333333333333334,1,1,0,0,7,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2885,5038,-9,5036,5037,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1008.3373,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2886,5039,-9,5036,5037,1,0,20,0,1,0,2,2,-9,0,3,5.7179008,5.6960502,0,0,0,-970.3905,0,2,2,2021,8,0,16,16,1,0,1,2.0731206,2.0731206,0,0,0,0,0,0,0,2,1,1,0,0,0,50.11,55.32,-9,-9,5,1,1,0,0,2,2,2,1,696,-59321.813,0,0,0,0,0,656.27002 +2314,2887,5040,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,6.632565,7.2554283,6.5581708,0,0,-1078.1305,0,2,-9,2021,11,0,16,18,1,0,0,4.7879691,4.7879691,0,0,0,0,0,0,0,0,1,1,0,6.287147,0,38.65,59.48,-9,-9,3.333333333333333,1,1,0,0,7,9,3,0,647,-87859.484,0,0,0,0,0,1848.146 +2315,2888,5041,5042,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.2450724,8.3875837,5.2891874,33,10,-38.098194,0,2,1,2021,13,1,35,40,1,1,0,10.542597,10.542597,.05,.05,0,0,0,0,0,0,0,0,0,0,5.6827455,52.25,47.51,37.26,54.73,6.666666666666667,1,1,0,0,12,7,5,1,2305,1257204.5,628293.25,300637.22,0,0,0,3437.481 +2315,2888,5042,5041,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.3704042,8.1116171,0,33,-10,64.176117,0,2,2,2021,10,1,43,43,1,1,0,12.70045,12.70045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.26,54.73,52.25,47.51,5,1,1,0,0,14,7,5,1,2305,1257204.5,628293.25,300637.22,0,0,0,3437.481 +2315,2889,5043,-9,5042,5041,1,1,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-992.07526,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3154016,0,28.33,62.63,-9,-9,3.333333333333333,1,1,0,0,5,7,1,1,3369,110362.5,0,0,0,0,0,458.87451 +2316,2890,5044,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,7.8166656,7.8249493,0,0,-990.487,-9,1,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9010911,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,1355,55199.113,0,0,0,0,0,1772.8494 +2317,2891,5045,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-60.04179,0,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.44,46.27,54,54,6.666666666666667,1,1,1,0,6,12,3,1,1061,0,0,0,0,0,0,0 +2317,2892,5046,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2756081,8.0351095,0,6,3,160.17479,0,-9,-9,2021,9,0,38,42,1,0,0,13.947858,13.947858,0,0,.05,0,0,0,0,0,0,0,0,4.6685863,0,54,54,34.44,46.27,8,4,1,0,0,1,12,4,1,1141,364863,191130.22,84961.156,57299.922,0,0,2167.5022 +2318,2893,5047,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.55931,7.5224943,0,0,-1080.2056,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.35847926,7.2617245,35.38,40.3,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,623,245308.03,104238.6,0,0,0,0,2535.0627 +2319,2894,5048,5049,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6535997,8.8030024,0,1,9,-38.676975,-9,-9,-9,2021,17,5,37,0,1,5,0,19.935974,19.935974,.05,.05,0,0,0,0,0,0,1,1,0,1.0131439,0,41.17,59.31,53.16,48.53,1.666666666666667,4,1,0,0,9,10,5,1,2975,1122832.3,963795.06,268537.19,0,0,2533.8882,3550.8193 +2319,2894,5049,5048,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,7.3305702,7.3902426,1,0,32.561325,-9,2,2,2021,16,4,0,0,2,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.4551654,0,53.16,48.53,41.17,59.31,3.333333333333333,1,1,0,0,9,10,5,1,2975,1122832.3,963795.06,268537.19,0,0,2533.8882,3550.8193 +2320,2895,5050,-9,-9,5052,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.7251,-9,-9,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2320,2895,5051,5052,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.9165611,8.7224445,0,5,1,-73.526337,0,1,2,2021,12,0,38,37,1,0,0,22.984032,22.984032,.05,.05,0,0,0,0,0,0,0,0,0,2.1006589,0,53.81,53.56,51.83,57.2,8.333333333333334,1,1,0,0,13,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2320,2895,5052,5051,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.1201992,9.2568645,0,5,-1,-25.583557,0,-9,-9,2021,9,2,52,52,1,2,0,24.097582,24.097582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,53.81,53.56,8.333333333333334,1,1,0,0,5,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2321,2896,5053,5054,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.0958905,7.2707734,8,-3,43.728722,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9261923,7.4447455,59.14,52.5,42.3,42.54,10,1,1,0,0,0,11,2,1,1069.5,389665.69,162567.25,153312.09,0,2911.5266,0,2581.4551 +2321,2896,5054,5053,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.3275418,5.0050373,8,3,127.63769,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,45.410656,0,0,1,1,0,5.1140699,5.0934954,42.3,42.54,59.14,52.5,8.333333333333334,1,1,0,0,3,11,2,1,1069.5,389665.69,162567.25,153312.09,0,2911.5266,0,2581.4551 +2322,2897,5055,5056,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,10,-3,140.08583,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.58,45.72,5,1,1,0,0,0,11,3,1,1223,1005874,135573.38,366023.13,0,7524.1035,866.92206,882.95551 +2322,2897,5056,5055,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.8951221,8.3321533,0,10,3,116.42016,0,2,2,2021,6,0,60,40,1,0,0,3.5332584,3.5332584,0,0,0,0,0,0,0,0,0,0,0,0,0,48.58,45.72,57.06,57.76,5,1,1,0,0,11,11,3,1,1223,1005874,135573.38,366023.13,0,7524.1035,866.92206,882.95551 +2322,2898,5057,-9,5055,5056,1,1,34,0,0,0,2,2,-9,0,3,5.1213021,4.9258242,0,0,0,-986.24854,0,2,2,2021,5,0,70,60,1,0,1,.2574797,.2574797,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,56.44,-9,-9,8.333333333333334,1,1,0,0,11,11,2,1,50,-162558.48,0,0,0,0,373.16769,776.77527 +2323,2899,5058,-9,5061,5060,1,1,29,0,0,0,1,1,-9,0,4,8.8988619,8.9017029,0,0,0,-988.94745,0,2,2,2021,6,0,38,50,1,0,0,14.658609,14.658609,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,6,8,5,1,914,-10933.277,0,0,0,0,0,2254.8979 +2323,2900,5059,-9,5061,5060,1,1,37,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1034.1993,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,59.28,-9,-9,6.666666666666667,2,3,1,1,8,8,1,1,1950,0,0,0,0,0,0,-194.02974 +2323,2901,5060,5061,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,45,1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.04,36.96,62.37,44.14,10,2,3,0,0,8,8,1,1,1199,99286.953,0,0,0,0,0,1421.6155 +2323,2901,5061,5060,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,45,-1,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.37,44.14,43.04,36.96,10,2,3,0,0,6,8,1,1,1199,99286.953,0,0,0,0,0,1421.6155 +2324,2902,5062,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,7.648066,7.6215572,0,0,0,-1000.1401,0,2,2,2021,11,0,35,40,1,0,0,5.7394791,5.7394791,0,0,0,0,0,0,0,0,0,0,0,2.8188233,0,55.19,51.55,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,248,0,0,0,0,0,0,558.47675 +2325,2903,5063,5064,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.9167299,6.1518579,44,1,21.827272,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.5532808,55.93,49.95,56.28,14.91,6.666666666666667,1,1,0,0,0,2,2,1,557.5,79756.586,72282.422,0,0,0,-302.61304,2002.5168 +2325,2903,5064,5063,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,4.2772622,4.1363211,44,-1,-19.705317,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,.9513194,0,1,1,0,2.9496717,4.6420965,56.28,14.91,55.93,49.95,3.333333333333333,1,1,0,0,0,2,2,1,557.5,79756.586,72282.422,0,0,0,-302.61304,2002.5168 +2326,2904,5065,5066,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,0,0,57,-3,0,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.86,30.77,61.28,35.65,10,1,1,0,0,0,12,1,1,181,374359.44,0,221415.19,0,0,0,1204.2131 +2326,2904,5066,5065,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,57,3,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,35.65,62.86,30.77,10,1,1,0,0,0,12,1,1,181,374359.44,0,221415.19,0,0,0,1204.2131 +2327,2905,5067,5068,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.0532436,8.2556219,0,18,-1,-51.079464,0,2,2,2021,10,0,21,60,1,0,0,17.748289,17.748289,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,50.05,52.7,8.333333333333334,1,1,0,0,10,8,5,1,1482,2693825.5,1777066.5,1125989.8,217168.13,7000.0142,0,6604.4268 +2327,2905,5068,5067,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.8007488,9.5706196,0,18,1,-70.663986,0,2,2,2021,8,0,78,42,1,0,0,23.200113,23.200113,.05,.05,0,0,0,0,0,0,0,0,0,5.061604,0,50.05,52.7,48.71,61.53,8.333333333333334,1,1,0,0,9,8,5,1,1482,2693825.5,1777066.5,1125989.8,217168.13,7000.0142,0,6604.4268 +2328,2906,5069,5070,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.5972834,6.7994771,55,1,-24.916122,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9690781,6.5372572,51.65,44.35,40.04,45.19,8.333333333333334,1,1,0,0,0,6,2,1,1707.5,544618.56,368104.5,94463.344,0,0,0,2211.4399 +2328,2906,5070,5069,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.8056536,6.5365252,55,-1,114.63567,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2445326,40.04,45.19,51.65,44.35,8.333333333333334,1,1,0,0,0,6,2,1,1707.5,544618.56,368104.5,94463.344,0,0,0,2211.4399 +2329,2907,5071,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,3,0,7.3132257,7.3050895,0,0,-883.7605,-9,-9,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4830236,0,47.69,55.06,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,965,354460.63,-21782.518,0,0,0,0,743.45392 +2329,2908,5072,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1021.8574,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.17,58.56,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,176,103822.77,0,0,0,0,0,0 +2330,2909,5073,5074,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,4.7649469,5.0690618,6,5,-80.968979,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,127.0415,0,0,1,1,0,6.1650639,4.8941479,53.22,15.69,57.57,49.69,5,1,1,0,0,0,5,2,1,992.5,151485.7,118762.41,125975.45,0,0,0,1962.1411 +2330,2909,5074,5073,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,5.3701882,5.4613657,6,-5,83.354408,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.1647911,4.9591627,57.57,49.69,53.22,15.69,8.333333333333334,1,1,0,0,0,5,2,1,992.5,151485.7,118762.41,125975.45,0,0,0,1962.1411 +2331,2910,5075,5076,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.3677869,6.5044041,8,6,-39.985794,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,93.716827,0,0,1,1,0,0,6.2090974,39.8,18.56,53.05,39.31,10,1,1,0,0,0,11,2,0,1163,129308.3,-10550.256,0,0,0,0,1714.4412 +2331,2910,5076,5075,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,47,-6,-43.663754,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.05,39.31,39.8,18.56,8.333333333333334,1,1,0,0,4,11,2,0,1163,129308.3,-10550.256,0,0,0,0,1714.4412 +2332,2911,5077,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,0,1.7696762,1.8010101,0,0,-1115.9968,0,-9,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.6800194,0,44.16,58.02,-9,-9,10,1,1,1,0,2,9,2,0,2967,71707.469,243432.81,0,0,0,0,1137.1787 +2333,2912,5078,-9,-9,5080,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1029.2435,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5079,5080,-9,-9,1,0,62,0,0,0,2,2,-9,1,4,0,5.8650813,5.6712546,7,1,16.240917,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3481956,5.6314187,57.34,50.6,49.37,35.69,10,1,1,0,0,3,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5080,5079,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,5.5878472,5.4510713,7,-1,-27.696634,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5615814,5.3677711,49.37,35.69,57.34,50.6,3.333333333333333,1,1,0,0,2,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5081,-9,-9,5080,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-985.91162,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5082,-9,-9,5080,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-911.56458,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2334,2913,5083,5084,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1524935,8.1332121,40,7,-66.028069,0,3,3,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1223412,54.77,55.87,44,38,8.333333333333334,1,1,0,0,12,13,5,1,408,914503.25,493882.63,288100.75,218.08252,0,1147.1768,4921.6523 +2334,2913,5084,5083,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,8.1633053,8.4836197,40,-7,-133.11545,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.222403,8.4295349,44,38,54.77,55.87,8.333333333333334,1,1,0,0,10,13,5,1,408,914503.25,493882.63,288100.75,218.08252,0,1147.1768,4921.6523 +2334,2914,5085,-9,5084,5083,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.5042,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,240,108168.5,0,0,0,0,0,0 +2335,2915,5086,5087,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2636023,8.095644,0,4,1,-59.018673,0,-9,-9,2021,11,0,42,42,1,0,0,8.0871201,8.0871201,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,29.61,53.86,8.333333333333334,1,1,0,0,4,12,5,1,375,110291.16,31809.338,189864.19,166334.72,11275.27,0,3044.897 +2335,2915,5087,5086,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.9698863,7.7057748,0,4,-1,-46.730774,0,2,2,2021,16,5,38,38,1,5,0,10.006504,10.006504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.61,53.86,54.37,54.8,8.333333333333334,1,1,0,0,8,12,5,1,375,110291.16,31809.338,189864.19,166334.72,11275.27,0,3044.897 +2336,2916,5088,-9,5089,5090,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.68048,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5089,5090,-9,-9,1,0,41,1,2,0,2,2,-9,0,5,6.3579054,6.3781805,0,16,2,49.91127,0,2,3,2021,10,3,17,16,1,3,0,3.9586418,3.9586418,.05,.05,0,0,0,0,0,0,1,1,0,7.396585,0,42.76,57.53,58.32,50.22,6.666666666666667,1,1,0,0,13,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5090,5089,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.0994167,8.4080391,0,16,-2,19.5991,0,-9,2,2021,7,0,38,48,1,0,0,11.473501,11.473501,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,42.76,57.53,8.333333333333334,1,1,0,0,13,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5091,-9,5089,5090,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4416,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1.3499311,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2337,2917,5092,5093,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.2069664,5.2682247,4,7,72.070908,0,-9,-9,2021,9,0,0,5,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.66889,4.9904351,53,47,52,54.51,8,1,1,0,0,0,8,2,1,810,817577.75,197188.34,286117.13,0,0,0,1738.8894 +2337,2917,5093,5092,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4553404,7.666976,4,-7,11.39308,0,2,3,2021,9,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3285856,52,54.51,53,47,8.333333333333334,1,1,0,0,7,8,2,1,810,817577.75,197188.34,286117.13,0,0,0,1738.8894 +2338,2918,5094,5095,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4430037,8.4322262,0,3,3,33.81715,0,-9,-9,2021,6,0,40,48,1,0,0,13.732254,13.732254,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,16.94,63.76,8.333333333333334,1,1,0,0,5,4,4,0,477,-75483.227,27887.875,206517.52,139793.97,0,8441.4639,1970.5918 +2338,2918,5095,5094,-9,-9,1,0,23,0,0,1,2,0,0,0,4,0,7.0453005,6.7282872,3,-3,-55.548447,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0217748,0,16.94,63.76,54.37,54.8,6.666666666666667,1,1,0,0,0,4,4,0,477,-75483.227,27887.875,206517.52,139793.97,0,8441.4639,1970.5918 +2339,2919,5096,-9,5097,5099,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.889,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5097,5099,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.2144852,8.0845776,0,7,-2,-140.22076,0,1,1,2021,16,5,24,15,1,5,0,17.157646,17.157646,0,0,0,0,0,0,0,0,0,0,0,4.2889147,0,31.91,61.11,44.02,60.7,6.666666666666667,1,1,0,0,7,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5098,-9,5097,5099,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.99597,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5099,5097,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,0,0,0,7,2,-20.47916,0,2,2,2021,15,3,0,25,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.413547,0,44.02,60.7,31.91,61.11,5,1,1,1,0,8,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2340,2920,5100,5101,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.7448134,7.8111424,43,-3,-101.98819,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.471705,43.35,52.88,52.8,47.23,1.666666666666667,1,1,0,0,10,2,4,1,935.5,1585533.3,1149397.8,333547.72,0,0,0,2601.7847 +2340,2920,5101,5100,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8686085,7.9461164,43,3,42.441437,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9908237,52.8,47.23,43.35,52.88,8.333333333333334,1,1,0,0,10,2,4,1,935.5,1585533.3,1149397.8,333547.72,0,0,0,2601.7847 +2341,2921,5102,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2504306,7.2486067,0,0,0,-925.56207,0,-9,2,2021,8,0,50,45,1,0,0,4.1045847,4.1045847,0,0,0,0,0,0,0,2,1,1,0,0,0,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,13,1,3,1,433,-20930.99,0,48110.328,35246.754,4995.2651,0,781.14142 +2342,2922,5103,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.7827978,7.3629627,0,0,-1079.0411,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9731994,7.5319271,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,376,408021.78,246827.28,295098.56,0,0,0,1431.0254 +2343,2923,5104,5105,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.3760295,4.4454536,57,-4,27.237961,-9,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2273245,4.1548047,45.65,43.69,49.05,47.83,1.666666666666667,1,1,0,1,9,10,4,1,1442.5,775083.31,350951.88,282410.88,0,0,0,5775.4043 +2343,2923,5105,5104,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.7881174,8.6838808,57,4,78.280304,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9449401,8.5193281,49.05,47.83,45.65,43.69,8.333333333333334,1,1,0,0,0,10,4,1,1442.5,775083.31,350951.88,282410.88,0,0,0,5775.4043 +2344,2924,5106,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.1203156,8.1677971,0,0,0,-1022.6617,0,-9,2,2021,11,0,35,30,1,2,0,10.651104,10.651104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,14,13,3,0,738,-75359.414,-84541.258,0,0,0,0,803.68414 +2345,2925,5107,-9,5109,5108,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7645,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5108,5109,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3754768,9.3405247,8.6940594,16,2,-42.397511,0,2,2,2021,11,0,42,42,1,0,0,10.498784,10.498784,.05,.05,0,0,0,0,0,0,1,1,0,8.5716619,0,40.07,54.57,33.02,57.64,6.666666666666667,1,1,0,0,12,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5109,5108,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.9594259,7.8315201,5.6609707,16,-2,56.679302,0,2,2,2021,19,8,38,25,1,8,0,9.6006527,9.6006527,.05,.05,0,0,0,0,0,0,1,1,0,5.9088445,0,33.02,57.64,40.07,54.57,6.666666666666667,1,1,0,0,12,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5110,-9,5109,5108,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5659,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2346,2926,5111,5112,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.8346868,7.1274338,9,-1,-86.03022,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8576279,6.3219476,50.02,44.92,65.78,30.25,5,1,1,0,0,0,2,2,1,423,600049.5,349673.94,177760.17,0,0,0,2490.4775 +2346,2926,5112,5111,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.2260389,6.0915985,9,1,-114.90727,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6836805,6.3711696,65.78,30.25,50.02,44.92,8.333333333333334,1,1,0,0,0,2,2,1,423,600049.5,349673.94,177760.17,0,0,0,2490.4775 +2347,2927,5113,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1002.9284,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3163257,0,44.06,25.95,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,949,151398.86,0,0,0,0,0,1348.2351 +2348,2928,5114,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9304304,6.8501339,0,0,-1162.3838,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7489672,58.15,52.91,-9,-9,10,1,1,0,0,0,2,2,1,1001,365473.56,92179.922,148144.39,-16196.651,1975.0062,0,1310.183 +2349,2929,5115,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-894.77399,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1068,-195867.36,0,0,0,0,0,-256.1235 +2350,2930,5116,5117,-9,-9,1,1,66,0,1,0,1,1,-9,0,5,0,6.9228554,6.8295755,6,8,11.713498,0,2,3,2021,14,4,0,38,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.4397922,7.1039705,51.14,60.45,59.43,58.05,8.333333333333334,1,1,0,0,12,12,4,1,1192.5,2391800.8,1488290.3,253631.69,0,0,0,3081.166 +2350,2930,5117,5116,-9,-9,1,0,58,0,1,0,1,1,-9,0,5,8.7226572,8.8343134,0,6,-8,37.146236,0,2,2,2021,6,0,37,37,1,0,0,19.579927,19.579927,0,0,0,0,0,0,0,7,1,1,0,0,0,59.43,58.05,51.14,60.45,10,1,1,0,0,14,12,4,1,1192.5,2391800.8,1488290.3,253631.69,0,0,0,3081.166 +2351,2931,5118,-9,5120,5121,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-942.22528,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5119,-9,5120,5121,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-919.21326,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5120,5121,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.4670038,8.6977797,0,19,-1,29.425478,0,2,2,2021,8,1,40,40,1,1,0,12.754287,12.754287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.71,26.21,47.58,56.39,6.666666666666667,1,1,0,0,14,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5121,5120,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.4579296,8.2635164,0,12,1,-14.784411,0,2,2,2021,6,0,45,43,1,0,0,13.804746,13.804746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.58,56.39,60.71,26.21,5,1,1,0,0,14,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2352,2932,5122,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-943.23407,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,5.5403962,0,45.232475,0,1,1,0,2.2933977,0,51,47,-9,-9,7,1,1,0,0,0,9,2,0,285,-109745.17,0,0,0,0,0,1338.8746 +2353,2933,5123,-9,5124,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2007,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,456,28255.193,-26372.611,133504.53,68172.078,0,0,1664.4937 +2353,2933,5124,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.3098221,7.8020072,0,0,0,-1018.803,0,2,3,2021,36,12,41,75,1,12,0,8.0795918,8.0795918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.68,45.71,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,456,28255.193,-26372.611,133504.53,68172.078,0,0,1664.4937 +2353,2934,5125,-9,5124,-9,1,1,19,0,1,0,2,2,-9,0,4,7.3184538,7.4402661,0,0,0,-916.18738,0,2,-9,2021,11,0,39,39,1,2,1,5.7776165,5.7776165,0,0,0,0,0,0,0,0,1,1,0,.19499409,0,48,59,-9,-9,7,1,1,0,0,1,12,3,0,1040,0,0,0,0,0,0,794.25562 +2354,2935,5126,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2092133,7.1971931,0,0,-977.49719,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4265304,60.12,54.8,-9,-9,10,1,1,0,0,12,12,3,1,3007,339388.38,150610,109174.63,0,0,0,1295.8562 +2355,2936,5127,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.926733,8.4085636,0,0,0,-968.2193,0,2,2,2021,7,1,40,42,1,1,0,19.220798,19.220798,.05,.05,0,0,0,0,0,0,1,1,0,1.1165751,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,14,4,5,1,172,104105.43,7795.9307,81614.617,19141.52,12738.027,2107.3503,1889.7614 +2356,2937,5128,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,8.263032,8.3783836,0,0,0,-951.08459,-9,-9,-9,2021,12,2,40,0,1,2,0,13.22087,13.22087,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,542,100254.55,-39131.27,138944.92,181091.27,0,0,956.8847 +2357,2938,5129,-9,5130,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1095.4749,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,13,1,0,1409.5,-84348.602,-2862.479,0,0,0,0,969.63739 +2357,2938,5130,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,3,0,0,0,0,0,-981.47101,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1409.5,-84348.602,-2862.479,0,0,0,0,969.63739 +2358,2939,5131,5132,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9580183,8.7783031,0,8,-10,80.613159,0,-9,-9,2021,9,0,45,40,1,1,0,24.901781,24.901781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,60.12,54.8,8,1,1,0,0,1,2,5,1,1273.5,624982.5,260088.44,114759.73,73670.484,0,924.35199,2611.5513 +2358,2939,5132,5131,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,27,10,128.41109,0,3,3,2021,7,0,0,16,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3059797,0,60.12,54.8,52,55,8.333333333333334,1,1,0,0,8,2,5,1,1273.5,624982.5,260088.44,114759.73,73670.484,0,924.35199,2611.5513 +2358,2940,5133,-9,5132,5131,1,0,22,0,0,0,2,2,-9,0,4,7.9567909,7.6242127,0,0,0,-1046.1123,0,2,1,2021,11,0,40,40,1,2,1,6.54321,6.54321,0,0,0,0,0,0,0,0,0,0,0,.8933152,0,46,58,-9,-9,7,1,1,0,0,1,2,3,1,1642,-27172.375,-40511.527,46020.293,68622.133,0,-783.72113,2124.5681 +2359,2941,5134,5135,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.2788529,7.108882,0,6,9,-157.66106,0,2,2,2021,11,0,16,16,1,0,0,12.147322,12.147322,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,54.77,55.95,47.23,6.666666666666667,1,1,0,0,13,2,4,1,707.5,315882.69,56910.691,239173.47,94773.516,30138.412,0,2645.4326 +2359,2941,5135,5134,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.3922653,8.6430883,0,6,0,42.107365,0,-9,-9,2021,10,0,35,36,1,0,0,15.504981,15.504981,.05,.05,0,0,0,0,0,0,0,0,0,4.7059226,0,55.95,47.23,45.18,54.77,5,4,2,0,0,12,2,4,1,707.5,315882.69,56910.691,239173.47,94773.516,30138.412,0,2645.4326 +2359,2942,5136,-9,5134,5135,1,1,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-992.91724,-9,1,1,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8195844,0,48.14,53.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,861,-58470.125,0,0,0,0,0,1105.7858 +2360,2943,5137,5138,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,10,0,8.7591228,0,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1450132,0,25.02,53.81,49.29,54.59,3.333333333333333,1,1,0,0,0,7,3,0,1487.5,811752.06,374006.63,525301.75,69750.484,0,1987.0009,1887.8552 +2360,2943,5138,5137,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,7.891325,8.1982231,0,10,0,-93.574944,0,-9,-9,2021,10,0,38,38,1,0,0,8.7127218,8.7127218,.05,.05,0,0,0,0,0,0,1,1,0,3.0895226,0,49.29,54.59,25.02,53.81,5,1,1,0,0,11,7,3,0,1487.5,811752.06,374006.63,525301.75,69750.484,0,1987.0009,1887.8552 +2361,2944,5139,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,6.1461773,5.9281931,0,0,-1102.3785,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4820201,6.2447066,44.77,48,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,297,41473.309,12190.734,12352.397,42427.773,0,0,1241.9991 +2362,2945,5140,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1035.1199,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,9.608922,18.03438,64.178886,0,1,1,0,3.2372985,0,38.2,25.1,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,913,-103984.31,0,0,0,0,0,749.65155 +2362,2946,5141,-9,-9,5140,1,0,42,0,0,0,2,2,-9,0,4,7.285078,7.0128446,0,0,0,-1067.9043,0,3,3,2021,7,0,28,27,1,0,0,6.4670348,6.4670348,0,0,0,0,0,0,0,27,1,1,0,0,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,1610,73051.797,0,153639.02,115478.08,3362.7637,0,-215.43488 +2362,2947,5142,-9,-9,5140,1,1,40,0,0,0,2,2,-9,0,5,8.3078423,8.0909805,0,0,0,-1131.8092,0,-9,3,2021,6,0,37,37,1,0,0,11.936653,11.936653,.05,.05,0,0,0,0,0,7,1,1,0,4.2517233,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,705,162970.66,4111.7432,0,0,0,0,1220.2753 +2363,2948,5143,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5284653,6.4923391,0,0,-1022.7171,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9441563,6.8877087,62.27,45.61,-9,-9,10,1,1,0,0,0,12,2,1,1370,74620.586,113919.42,142415.86,0,0,0,1740.0933 +2364,2949,5144,5145,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.5220594,7.6643891,0,8,8,-86.041901,0,2,2,2021,8,0,40,35,1,0,0,6.6739306,6.6739306,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.09,58.02,57.06,57.76,1.666666666666667,1,1,0,0,13,1,4,1,683.5,362935.94,98656.453,113724.12,0,0,0,3083.8987 +2364,2949,5145,5144,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.227664,8.0510979,0,8,-8,-123.00189,0,-9,-9,2021,7,0,38,40,1,0,0,12.201979,12.201979,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,47.09,58.02,8.333333333333334,1,1,0,0,13,1,4,1,683.5,362935.94,98656.453,113724.12,0,0,0,3083.8987 +2365,2950,5146,5147,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.7718258,8.6114016,57,0,50.755993,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.3390493,8.570776,60.86,50.49,52.31,58.29,10,1,1,0,0,0,9,5,1,1312.5,2251245,507378.5,756866.06,0,0,0,9810.833 +2365,2950,5147,5146,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.953208,9.6006994,57,0,40.522282,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.1577,7.2546396,52.31,58.29,60.86,50.49,8.333333333333334,1,1,0,0,0,9,5,1,1312.5,2251245,507378.5,756866.06,0,0,0,9810.833 +2366,2951,5148,-9,5149,5150,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1026.7346,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2366,2951,5149,5150,-9,-9,1,0,58,0,1,0,1,1,-9,0,3,8.7377892,8.5091295,0,21,6,-29.296799,-9,2,3,2021,11,2,32,0,1,2,0,25.592255,25.592255,0,0,0,0,0,0,0,0,1,1,0,0,0,49.58,50.05,54.1,59.11,6.666666666666667,1,1,0,0,10,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2366,2951,5150,5149,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0310249,9.0215187,0,11,-6,-103.89612,0,-9,-9,2021,4,0,43,43,1,0,0,21.976772,21.976772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.58,50.05,6.666666666666667,1,1,0,0,8,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2367,2952,5151,-9,5152,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.1437,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,895.5,173252.58,136061.17,0,0,3.7784576,761.28723,1874.2798 +2367,2952,5152,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9268451,8.0094557,5.2716479,0,0,-922.51617,0,3,2,2021,6,0,35,35,1,0,0,8.4172411,8.4172411,.05,.05,0,0,0,0,0,0,1,1,0,6.9093037,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,895.5,173252.58,136061.17,0,0,3.7784576,761.28723,1874.2798 +2368,2953,5153,5154,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.6602235,7.7214818,15,5,-10.860787,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.8999462,38.16,44.66,39.32,17.47,3.333333333333333,1,1,0,0,0,4,3,1,1076.5,676061.38,649486,98504.969,0,0,0,1637.2391 +2368,2953,5154,5153,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,15,-5,33.629997,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,17.47,38.16,44.66,5,1,1,0,0,9,4,3,1,1076.5,676061.38,649486,98504.969,0,0,0,1637.2391 +2369,2954,5155,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.93852,7.954865,0,0,0,-1053.4301,0,2,2,2021,8,0,27,23,1,0,0,11.372676,11.372676,0,0,0,0,0,0,0,2,1,1,0,0,0,56.19,46.16,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,584,1019901.3,284091.25,623137.25,0,0,0,1703.6533 +2370,2955,5156,5157,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1563139,7.8336926,0,10,0,52.610249,0,-9,-9,2021,8,0,64,59,1,0,0,6.287827,6.287827,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.04,55.86,1.666666666666667,1,1,0,0,11,10,4,1,265,75823.695,-9952.4863,247329.88,109508.69,3877.7432,0,1456.4086 +2370,2955,5157,5156,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.4719677,7.3922858,0,10,0,-21.666056,0,3,3,2021,11,0,30,30,1,0,0,6.7503014,6.7503014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,265,75823.695,-9952.4863,247329.88,109508.69,3877.7432,0,1456.4086 +2371,2956,5158,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.8883047,8.9811392,0,0,0,-958.17322,0,2,1,2021,12,0,38,38,1,0,0,19.804152,19.804152,.05,.05,.05,0,0,0,0,0,0,0,0,8.9525652,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,0,11,8,5,1,155,507890.38,348993.91,344735.28,82704.781,0,0,5564.3408 +2372,2957,5159,5162,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,7.4774466,7.5253258,0,14,4,-47.173775,0,3,3,2021,6,0,40,40,1,0,0,4.3207245,4.3207245,.05,.05,0,0,0,0,0,0,1,1,0,1.444437,0,56.57,57.78,57.16,56.15,6.666666666666667,1,1,0,0,10,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5160,-9,5162,5159,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.04712,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5161,-9,5162,5159,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.75714,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5162,5159,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.2582788,7.1013131,0,14,-4,-174.82391,0,2,3,2021,6,0,25,18,1,0,0,8.4853382,8.4853382,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.57,57.78,6.666666666666667,1,1,0,0,7,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2373,2958,5163,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.1104383,9.1854019,7.5371542,0,0,-996.40985,0,3,3,2021,17,5,40,40,1,5,0,22.649487,22.649487,0,0,.05,0,0,0,0,2,1,1,0,0,7.9342155,27.98,63,-9,-9,6.666666666666667,1,1,0,0,12,4,5,0,274,121539.94,11704.59,194607.73,115729.41,0,20498.668,3979.6238 +2374,2959,5164,5165,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.1666484,7.0409675,0,5,-2,-27.986309,0,3,1,2021,22,10,17,16,1,10,0,9.7323532,9.7323532,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.99,31.95,37.93,36.97,1.666666666666667,1,1,0,0,11,6,3,1,2516.5,451844.19,411463.5,113188.55,0,0,0,1289.0925 +2374,2959,5165,5164,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.743403,7.8774166,0,5,2,53.110146,0,3,1,2021,22,10,37,37,1,10,0,8.2279825,8.2279825,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.93,36.97,30.99,31.95,3.333333333333333,1,1,0,0,11,6,3,1,2516.5,451844.19,411463.5,113188.55,0,0,0,1289.0925 +2375,2960,5166,5167,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,57.33,53.46,8.333333333333334,1,1,0,0,6,5,1,1,1749.5,442740.38,-53084.313,241071.53,44332.055,0,0,2040.9541 +2375,2960,5167,5166,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,10,-5,0,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.92,54.3,6.666666666666667,1,1,0,0,11,5,1,1,1749.5,442740.38,-53084.313,241071.53,44332.055,0,0,2040.9541 +2376,2961,5168,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3677516,7.1009417,5.1139965,0,0,-1058.353,0,3,3,2021,10,0,20,28,1,1,0,9.512166,9.512166,.05,.05,0,0,0,0,0,0,0,0,0,0,5.6104703,52,52,-9,-9,8,1,1,0,0,6,12,3,1,371,192511.03,-6545.603,0,0,0,0,406.1662 +2377,2962,5169,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.956954,7.8132977,0,0,0,-957.78607,0,3,3,2021,23,11,40,42,1,11,0,8.3813782,8.3813782,.05,.05,0,0,0,0,0,0,0,0,0,3.7618742,0,39.58,48.36,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,538,111555.23,124556.48,0,0,0,0,2428.6997 +2378,2963,5170,5172,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.9651041,8.963624,0,11,-3,-51.4603,-9,-9,-9,2021,10,0,50,0,1,1,0,18.785812,18.785812,.05,.05,.05,0,0,0,3.1008778,0,1,1,0,0,0,50,57,33.12,54.28,8,1,1,0,0,1,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2378,2963,5171,-9,5172,5170,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-953.2995,-9,2,1,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.89,44.63,-9,-9,10,1,1,0,0,0,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2378,2963,5172,5170,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.0694118,7.2073231,0,11,3,-48.09166,-9,-9,-9,2021,28,11,48,0,1,11,0,3.1684711,3.1684711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.12,54.28,50,57,6.666666666666667,1,1,0,1,12,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2379,2964,5173,-9,-9,-9,1,1,73,0,2,0,2,2,-9,0,3,8.303237,8.2832336,0,0,0,-890.84735,-9,3,3,2021,8,0,50,0,1,0,0,10.230126,10.230126,0,0,0,0,1.6449336,0,20.300653,0,1,1,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,9,6,3,1,383,434492.16,612652.44,0,0,0,0,2493.1938 +2380,2965,5174,-9,5177,5178,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1038.7012,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5175,-9,5177,5178,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-899.28339,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5176,-9,5177,5178,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-949.73792,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5177,5178,-9,-9,1,0,40,0,5,0,2,2,-9,0,3,8.0824671,7.3994002,0,19,0,-86.339722,0,-9,-9,2021,19,6,24,24,1,6,0,9.2234249,9.2234249,.05,.05,0,0,0,0,0,0,1,1,0,6.8314505,0,49.52,56.95,44.19,58.01,5,1,1,0,1,14,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5178,5177,-9,-9,1,1,40,0,5,0,2,2,-9,0,3,8.7300558,8.7506638,0,19,0,-97.670944,0,2,-9,2021,11,3,42,50,1,3,0,15.844321,15.844321,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,49.52,56.95,8.333333333333334,1,1,0,1,14,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5179,-9,5177,5178,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-912.29437,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2381,2966,5180,-9,5181,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1052.505,0,2,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,20.82,35.6,-9,-9,0,1,1,0,1,6,11,1,1,334,18628.232,0,0,0,0,11.210619,1554.4537 +2381,2967,5181,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.8551712,6.4877806,0,0,-934.46692,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,13.878812,0,0,1,1,0,0,6.8161659,64.82000000000001,11.24,-9,-9,5,1,1,0,0,0,11,2,1,355,673586.81,-735.08606,198070.25,0,0,0,-539.91132 +2382,2968,5182,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.8345704,6.9421387,0,0,-1028.8502,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8129926,58.23,43.46,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2007,592017.25,172779.75,224207.72,0,0,0,1310.5026 +2383,2969,5183,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0081224,8.1377516,0,0,-992.94391,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3025455,8.2650194,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,1090,653177.75,400369.91,56986.434,0,0,0,2051.29 +2384,2970,5184,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.2299433,8.0444431,0,0,0,-946.85284,0,2,2,2021,6,0,25,35,1,0,0,17.820774,17.820774,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,326,1290210.9,508095.09,362100.78,0,0,0,1435.1182 +2385,2971,5185,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.4213042,6.6826153,0,0,-957.7243,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0576134,6.3508224,55.22,30.3,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,174,272652.53,174826.3,0,0,0,0,831.85199 +2386,2972,5186,-9,5188,5187,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2873,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5187,5188,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.7735004,8.7370167,0,9,3,36.628391,0,-9,-9,2021,6,0,48,40,1,0,0,13.507915,13.507915,.05,.05,0,0,0,0,0,2,1,1,0,1.284454,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5188,5187,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.6804619,8.8484993,7.4200344,27,-3,-18.444508,0,2,2,2021,8,0,30,30,1,0,0,26.244846,26.244846,.05,.05,0,0,0,0,0,0,1,1,0,7.3181524,0,57.06,57.76,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5189,-9,5188,5187,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1127.0374,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2387,2973,5190,5191,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.010293,8.1787767,0,7,12,-155.87822,0,3,2,2021,22,10,37,38,1,10,0,9.8209982,9.8209982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.23,25.92,51,54,3.333333333333333,1,1,0,0,6,6,3,0,354,126274.84,59852.461,198732.8,0,2226.4592,0,1099.3921 +2387,2973,5191,5190,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.1975508,6.8638721,0,7,-12,-55.516136,0,-9,-9,2021,10,0,28,26,1,1,0,4.2970977,4.2970977,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,50.23,25.92,8,1,1,0,0,1,6,3,0,354,126274.84,59852.461,198732.8,0,2226.4592,0,1099.3921 +2388,2974,5192,-9,5193,5194,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.875,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2388,2974,5193,5194,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.0601439,7.3141537,0,7,3,39.372734,0,-9,-9,2021,7,2,30,11,1,2,0,4.9666018,4.9666018,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,43.09,61.58,6.666666666666667,1,1,0,0,11,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2388,2974,5194,5193,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.7876692,8.8188019,0,7,-3,-16.696688,0,1,1,2021,12,0,60,64,1,0,0,10.718717,10.718717,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,46,51,5,2,3,0,1,9,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2389,2975,5195,5196,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.1228294,8.3223515,21,-4,-55.823124,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9427111,8.1585598,57.06,57.76,52.51,54.26,8.333333333333334,1,1,0,0,8,5,4,1,2703.5,2215644,1283813.5,387733.56,0,0,0,3667.281 +2389,2975,5196,5195,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.293139,7.720818,17,4,-27.213154,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0702944,0,1,1,0,3.7209342,7.5583687,52.51,54.26,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,2703.5,2215644,1283813.5,387733.56,0,0,0,3667.281 +2390,2976,5197,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.5969748,7.7732821,0,0,-993.90863,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3461328,55.74,17.99,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,147,281850.16,460253.13,157614.28,0,3279.8186,0,2414.0784 +2391,2977,5198,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3192101,8.0938902,0,0,0,-1135.9546,0,3,3,2021,11,0,38,0,1,0,0,10.933298,10.933298,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,6.666666666666667,1,1,0,0,13,11,4,1,758,131553.28,-32966.594,0,0,0,0,977.17822 +2392,2978,5199,5200,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.9622178,7.0384717,0,29,0,24.715183,0,2,2,2021,11,0,30,30,1,0,0,4.2663021,4.2663021,0,0,.05,0,0,0,0,2,1,1,0,0,0,47.21,36.66,36.67,37.73,6.666666666666667,1,1,0,0,14,5,3,0,873.5,204104.13,-9179.9795,0,0,0,0,1344.9503 +2392,2978,5200,5199,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.0781465,7.20612,0,29,9,50.045422,0,3,2,2021,16,4,15,5,1,4,0,9.0178814,9.0178814,0,0,0,0,0,0,0,2,1,1,0,0,0,36.67,37.73,47.21,36.66,5,1,1,0,0,13,5,3,0,873.5,204104.13,-9179.9795,0,0,0,0,1344.9503 +2392,2979,5201,-9,5200,5199,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1033.0765,-9,2,2,2021,25,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5947552,0,39.66,61.49,-9,-9,6.666666666666667,1,1,0,0,4,5,1,0,145,-143810.72,0,0,0,0,0,743.1015 +2393,2980,5202,5203,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2549791,6.2602811,8,-3,146.2787,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76089,5.9974217,66.52,32.82,63.38,23.99,10,1,1,0,0,0,10,3,1,591.5,1872076.5,448163.22,422342.34,0,0,0,2212.3735 +2393,2980,5203,5202,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.8160648,8.2325706,8,3,16.757647,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0196247,7.7359228,63.38,23.99,66.52,32.82,8.333333333333334,1,1,0,0,0,10,3,1,591.5,1872076.5,448163.22,422342.34,0,0,0,2212.3735 +2394,2981,5204,5205,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.3535395,8.1256952,0,8,-2,-22.841301,0,2,2,2021,14,2,42,42,1,2,0,12.25379,12.25379,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.8,59.5,52,56,5,1,1,0,0,9,2,4,1,329,286780.88,210879.41,133965.42,71173.109,645.97009,0,2867.1465 +2394,2981,5205,5204,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.7369423,7.2523184,0,8,2,-121.11098,0,2,-9,2021,9,0,36,40,1,1,0,5.9720688,5.9720688,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,35.8,59.5,8,1,1,0,0,7,2,4,1,329,286780.88,210879.41,133965.42,71173.109,645.97009,0,2867.1465 +2395,2982,5206,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5606756,9.0245295,0,0,0,-963.04266,0,3,1,2021,8,1,37,40,1,1,0,16.627073,16.627073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,2,3,0,0,10,7,5,1,527,89960.859,-4075.1165,0,0,555.60986,0,2409.7776 +2395,2983,5207,-9,5206,-9,1,1,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-932.37213,-9,2,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,4,2,0,0,0,7,2,1,1410,42385.246,0,0,0,0,0,1300.3759 +2396,2984,5208,5209,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.3699512,8.2311621,0,36,-4,5.0780067,0,2,3,2021,17,4,86,63,1,4,0,6.8181615,6.8181615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.11,48.08,43.02,57.64,5,3,4,0,0,10,9,5,0,2079.5,1399167.6,712354.38,534299.75,38409.172,3803.6431,0,3652.877 +2396,2984,5209,5208,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.3216629,8.3541107,0,38,4,100.5901,0,3,3,2021,9,0,48,45,1,0,0,9.888998,9.888998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.02,57.64,34.11,48.08,6.666666666666667,3,4,0,0,12,9,5,0,2079.5,1399167.6,712354.38,534299.75,38409.172,3803.6431,0,3652.877 +2396,2985,5210,-9,5208,5209,1,1,25,0,0,0,2,2,-9,0,3,8.3106546,8.2562494,0,0,0,-1224.1167,0,2,3,2021,22,8,40,37,1,8,1,12.582065,12.582065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.54,48.75,-9,-9,1.666666666666667,3,4,0,0,7,9,4,0,866,62853.516,133810.13,0,0,0,0,1701.4144 +2397,2986,5211,5212,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7225289,6.8643122,4,8,-39.518051,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.3830919,49.61,54.24,23.4,23.46,6.666666666666667,1,1,0,0,13,12,2,1,725,248769.28,192382.41,243210.13,0,0,940.5343,1955.8405 +2397,2986,5212,5211,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,4,-8,7.5679631,0,3,3,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.59231418,0,23.4,23.46,49.61,54.24,0,1,1,1,0,8,12,2,1,725,248769.28,192382.41,243210.13,0,0,940.5343,1955.8405 +2397,2987,5213,-9,5212,5211,1,0,30,0,0,0,2,2,-9,0,1,8.0962315,7.8700743,0,0,0,-1003.038,0,2,2,2021,14,2,50,55,1,2,1,5.7242217,5.7242217,.05,.05,0,0,0,0,0,7,1,1,0,0,0,37.51,34.33,-9,-9,5,1,1,0,0,13,12,4,1,360,-49392.566,-32885.527,0,0,5320.4375,0,1050.1846 +2398,2988,5214,5215,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4023924,9.2055006,0,24,0,117.03136,0,2,3,2021,8,1,47,52,1,1,0,25.581964,25.581964,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,38.9,24.29,8.333333333333334,1,1,0,0,6,9,5,1,566.5,506251.53,163859.33,624295.13,321323.84,0,0,5275.1387 +2398,2988,5215,5214,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,5.6963959,5.4791884,24,0,83.695663,0,3,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0195408,5.4616189,38.9,24.29,54.79,55.86,3.333333333333333,1,1,0,0,0,9,5,1,566.5,506251.53,163859.33,624295.13,321323.84,0,0,5275.1387 +2399,2989,5216,5218,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.4672055,7.5020432,0,2,-2,52.439957,0,-9,-9,2021,11,1,35,30,1,1,0,6.0602627,6.0602627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.46,46.98,52.24,50.75,8.333333333333334,1,1,0,0,7,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2399,2989,5217,-9,5216,5218,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.2444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2399,2989,5218,5216,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.0084848,8.2612362,0,2,2,-28.08419,-9,-9,-9,2021,8,0,48,0,1,0,0,9.6353998,9.6353998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,35.46,46.98,8.333333333333334,1,1,0,0,1,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2400,2990,5219,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.191422,5.902597,0,0,-1048.7853,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.018270191,5.8253269,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,286,76099.75,-25052.975,0,0,0,0,927.10742 +2401,2991,5220,5221,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.9223719,6.9172378,10,0,-111.18052,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1294723,7.0443783,59.14,52.5,57.16,56.15,8.333333333333334,1,1,0,0,11,5,2,1,836,284910.5,261894.31,135070.86,0,1663.2693,0,2092.5889 +2401,2991,5221,5220,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.3098493,6.300808,10,9,98.245361,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8789968,6.4084501,57.16,56.15,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,836,284910.5,261894.31,135070.86,0,1663.2693,0,2092.5889 +2402,2992,5222,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.0690565,7.863163,0,0,0,-1020.3715,0,2,-9,2021,9,2,32,15,1,2,0,10.922148,10.922148,.05,.05,0,0,0,0,0,0,0,0,0,.94205892,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,9,1,4,0,318,61107.941,-14360.127,0,0,21035.02,0,666.22028 +2403,2993,5223,-9,5225,5224,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6907,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5224,5225,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4124174,8.3684502,0,21,2,1.8855836,0,2,2,2021,14,3,44,46,1,3,0,11.335522,11.335522,0,0,0,0,0,0,0,0,1,1,0,3.0433612,0,36.85,61.32,57.16,56.15,3.333333333333333,1,1,0,0,11,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5225,5224,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,20,-2,-99.647003,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,36.85,61.32,8.333333333333334,1,1,0,0,5,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5226,-9,5225,5224,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.50604,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2404,2994,5227,5228,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.4363041,7.9818406,6.8703074,2,0,-113.26875,0,-9,-9,2021,7,0,20,20,1,0,0,9.4141531,9.4141531,.05,.05,0,0,0,0,0,0,0,0,0,6.2047448,6.6795144,45.91,59.89,53.2,48.45,6.666666666666667,1,1,0,0,9,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2404,2994,5228,5227,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.1378069,9.0570059,0,2,0,-67.183098,0,-9,-9,2021,14,1,65,105,1,1,0,21.351555,21.351555,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.2,48.45,45.91,59.89,8.333333333333334,1,1,0,0,7,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2404,2994,5229,-9,5227,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1079.2407,-9,3,-9,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,54.61,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2405,2995,5230,5231,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4896216,7.2425404,9,5,-52.273926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8174541,7.4100146,57.16,56.15,41.64,54.12,8.333333333333334,1,1,0,0,8,9,3,1,756,833357.38,498642.44,356910.59,0,0,0,2517.8662 +2405,2995,5231,5230,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.6718044,6.2709336,9,-5,48.338882,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6331608,6.777679,41.64,54.12,57.16,56.15,5,1,1,0,0,8,9,3,1,756,833357.38,498642.44,356910.59,0,0,0,2517.8662 +2406,2996,5232,-9,5234,5233,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.0258,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5233,5234,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,7.4728818,7.6198277,0,8,7,-80.800079,0,3,3,2021,6,1,37,0,1,1,0,5.6156759,5.6156759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,48.57,42.35,57.57,6.666666666666667,1,1,0,0,6,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5234,5233,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,8,-7,66.990608,0,2,2,2021,23,8,0,23,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,57.57,52.99,48.57,8.333333333333334,1,1,0,0,4,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5235,-9,5234,5233,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.54987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5236,-9,5234,5233,1,0,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1081.8457,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2407,2997,5237,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.1729951,6.564271,0,0,-992.14221,0,-9,-9,2021,33,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.4548354,24.13,33.78,-9,-9,0,1,1,0,0,0,11,2,0,868,103534.1,0,79418.094,9739.0449,0,0,-449.56244 +2407,2998,5238,-9,5237,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-888.14594,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.95,43.52,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1764,56042.277,0,0,0,0,0,416.28632 +2408,2999,5239,5240,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,58,0,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,31.784954,0,0,1,1,0,0,0,64.06,15.57,54,46,10,1,1,0,0,0,4,1,0,405.5,284748.97,81774.641,212501,0,0,0,1451.3523 +2408,2999,5240,5239,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,58,0,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54,46,64.06,15.57,8,1,1,0,0,0,4,1,0,405.5,284748.97,81774.641,212501,0,0,0,1451.3523 +2409,3000,5241,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.30884,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,760,-50489.711,0,0,0,-2469.978,0,833.22809 +2410,3001,5242,5243,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1265631,7.3534899,20,-5,-3.9089353,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5147061,6.7702732,31.93,58.41,54.96,53.17,6.666666666666667,1,1,0,0,8,12,2,1,936.5,1083631.6,230590.56,279947.75,0,0,0,1761.9329 +2410,3001,5243,5242,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,18,5,.99640352,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,31.93,58.41,8.333333333333334,1,1,0,0,10,12,2,1,936.5,1083631.6,230590.56,279947.75,0,0,0,1761.9329 +2411,3002,5244,5245,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,57,2,-20.124527,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,53,46,8,1,1,0,0,0,10,2,0,474,743012.88,161055.53,267513.78,0,0,0,1543.6716 +2411,3002,5245,5244,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6855125,6.8127055,57,-2,-45.249954,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9196196,53,46,52,46,8,1,1,0,0,0,10,2,0,474,743012.88,161055.53,267513.78,0,0,0,1543.6716 +2412,3003,5246,-9,5247,5248,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.37,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5247,5248,-9,-9,1,0,34,0,2,0,2,2,0,0,3,0,0,0,9,-5,-44.886517,-9,2,2,2021,12,3,0,0,2,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,42.58,34.64,55.84,6.666666666666667,1,1,0,0,3,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5248,5247,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,9.6132841,9.7955275,0,9,5,-97.212296,0,-9,-9,2021,23,9,40,50,1,9,0,44.904671,44.904671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.64,55.84,51.42,42.58,3.333333333333333,1,1,0,1,8,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5249,-9,5247,5248,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.61749,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2413,3004,5250,5251,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-6,-60.70076,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.38,47.02,33.59,43.25,5,1,1,0,0,0,8,2,1,1704,172314.56,11965.899,0,0,0,0,1354.572 +2413,3004,5251,5250,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4697547,6.4944806,60,6,21.369864,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,15.054565,0,0,1,1,0,0,6.1098294,33.59,43.25,47.38,47.02,6.666666666666667,1,1,0,0,0,8,2,1,1704,172314.56,11965.899,0,0,0,0,1354.572 +2414,3005,5252,5253,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.7127938,8.0262909,0,12,-10,-12.738305,0,2,2,2021,31,10,37,37,1,10,0,7.5672569,7.5672569,.05,.05,0,0,0,0,0,0,0,0,0,3.8503487,0,38.52,53.3,29.19,45.28,5,1,1,0,0,13,2,5,1,552.5,691824.38,257033.84,191933.38,22153.811,1019.1503,869.67993,3560.2173 +2414,3005,5253,5252,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,9.1794252,8.9233961,0,12,10,2.1540847,0,3,2,2021,24,9,38,37,1,9,0,26.553642,26.553642,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.19,45.28,38.52,53.3,3.333333333333333,4,2,0,0,13,2,5,1,552.5,691824.38,257033.84,191933.38,22153.811,1019.1503,869.67993,3560.2173 +2415,3006,5254,5256,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.732295,8.0817614,0,7,-3,109.87125,0,-9,-9,2021,13,0,22,22,1,2,0,14.210267,14.210267,0,0,.05,0,0,0,0,0,1,1,0,0,0,34.46,58.24,44.19,58.01,6.666666666666667,1,1,0,0,10,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5255,-9,5254,5256,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.7982,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5256,5254,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.6082134,8.8486576,0,7,3,-79.928139,0,-9,-9,2021,15,4,35,38,1,4,0,19.768997,19.768997,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.19,58.01,34.46,58.24,8.333333333333334,3,4,0,0,10,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5257,-9,5254,5256,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4985,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2416,3007,5258,5259,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.5067143,6.81429,41,-17,-101.00571,-9,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2629623,6.6782513,50,47,54,45,7,4,2,0,0,0,11,2,1,747.5,580687.63,-42092.539,509980.75,0,0,0,2312.6753 +2416,3007,5259,5258,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,43,17,99.79052,-9,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,4.4328341,0,0,1,1,0,0,0,54,45,50,47,7,3,4,0,0,0,11,2,1,747.5,580687.63,-42092.539,509980.75,0,0,0,2312.6753 +2417,3008,5260,5261,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,7,2,0,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,45.87,38.23,0,1,1,0,0,5,7,1,1,1266.5,-110741.11,0,231219.36,144534.72,0,0,1420.6819 +2417,3008,5261,5260,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.87,38.23,48.87,58.55,8.333333333333334,1,1,0,0,1,7,1,1,1266.5,-110741.11,0,231219.36,144534.72,0,0,1420.6819 +2418,3009,5262,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,8.9548979,9.1428289,0,0,-1007.059,0,2,1,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3228374,9.182333,21.95,29.66,-9,-9,1.666666666666667,1,1,0,0,0,1,5,1,978,442375.75,36113.215,87443.359,0,0,0,4725.5059 +2419,3010,5263,5264,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,28,3,105.65936,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.41,46.95,54.21,14.79,8.333333333333334,1,1,0,0,7,9,3,1,1440,523850,110630.67,418394.5,16233.59,0,0,1353.1832 +2419,3010,5264,5263,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.1886435,8.1729908,0,28,-3,-99.807739,0,1,2,2021,12,1,21,42,1,1,0,20.466219,20.466219,0,0,0,0,0,0,0,7,0,0,0,0,0,54.21,14.79,50.41,46.95,8.333333333333334,1,1,0,0,13,9,3,1,1440,523850,110630.67,418394.5,16233.59,0,0,1353.1832 +2420,3011,5265,5266,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4721613,7.4369454,48,-2,-78.994133,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5114579,7.6085806,46.39,60.99,54.96,53.17,6.666666666666667,1,1,0,0,4,6,3,0,275.5,1653350,772275.88,698253.63,56904.82,6478.458,0,2821.5259 +2420,3011,5266,5265,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.6105757,6.5861244,48,2,-10.05744,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.890914,6.6479249,54.96,53.17,46.39,60.99,8.333333333333334,1,1,0,0,0,6,3,0,275.5,1653350,772275.88,698253.63,56904.82,6478.458,0,2821.5259 +2421,3012,5267,5268,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4179187,7.2476587,39,9,-74.707207,0,3,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.2211144,7.2496314,52.31,58.29,51.14,60.45,10,1,1,0,0,8,11,3,1,4777,1113369.3,557296.81,261322.34,0,0,0,1555.6923 +2421,3012,5268,5267,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,6.9186802,7.1228929,6.3135266,39,0,-31.371035,0,2,2,2021,8,0,40,54,1,0,0,2.4706223,2.4706223,0,0,0,0,0,0,0,0,0,0,0,3.4755478,6.1897588,51.14,60.45,52.31,58.29,8.333333333333334,1,1,0,0,7,11,3,1,4777,1113369.3,557296.81,261322.34,0,0,0,1555.6923 +2422,3013,5269,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.6835914,5.4381142,0,0,-1011.7339,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0936922,0,1,1,0,5.4409761,5.4904637,53.88,33.91,-9,-9,10,1,1,0,0,0,7,2,1,2258,531279.88,2031.1552,166624.36,0,0,0,559.2467 +2423,3014,5270,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.7612166,6.5292525,0,0,-1104.9778,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5701656,6.8222995,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,1294,212663.09,52284.563,118016.25,0,0,0,2188.4929 +2424,3015,5271,5272,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.6265159,7.8610001,2,-1,-201.42174,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8753347,7.346664,57.74,49,54.2,57.49,10,1,1,0,0,6,8,5,1,612,5339243,1477096.1,1929663.5,0,0,0,5672.4072 +2424,3015,5272,5271,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.8308268,9.0169458,2,1,-126.87297,0,-9,-9,2021,7,0,0,15,4,0,0,0,0,0,0,0,0,0,0,1.6868391,0,1,1,0,4.1772265,8.6735077,54.2,57.49,57.74,49,8.333333333333334,1,1,0,0,7,8,5,1,612,5339243,1477096.1,1929663.5,0,0,0,5672.4072 +2425,3016,5273,5274,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.7364082,8.9079332,0,3,-5,-64.6259,0,-9,-9,2021,11,0,77,74,1,0,0,9.3471298,9.3471298,0,0,0,0,0,0,0,0,0,0,0,.99202681,0,67.34,35.11,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,2193.5,236229.83,-39194.543,163455.5,111929.84,0,135.46393,4364.1807 +2425,3016,5274,5273,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.6773214,8.5246267,0,3,5,90.578835,0,-9,-9,2021,12,0,40,77,1,0,0,15.275626,15.275626,.05,.05,0,0,0,0,0,0,0,0,0,1.6307093,0,57.06,57.76,67.34,35.11,8.333333333333334,1,1,0,0,2,4,5,1,2193.5,236229.83,-39194.543,163455.5,111929.84,0,135.46393,4364.1807 +2426,3017,5275,-9,5277,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.04761,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2426,3017,5276,-9,5277,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.4407,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2426,3017,5277,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.7472816,7.4755383,0,0,0,-1085.7245,0,2,1,2021,12,0,30,16,1,0,0,10.569468,10.569468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.74,56.23,-9,-9,3.333333333333333,1,1,0,0,8,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2427,3018,5278,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,6.5688734,6.391407,0,0,-1015.6932,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,8.1143293,22.864595,90.506248,0,1,1,0,0,6.3874111,43.44,20.91,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1719,75660.484,40389.75,130838.77,0,0,0,1602.3506 +2428,3019,5279,-9,5282,5280,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.28107,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5280,5282,-9,-9,1,1,37,1,3,0,2,2,-9,0,3,8.3721371,8.7635479,0,8,1,-82.127388,0,-9,-9,2021,9,0,45,60,1,0,0,12.529617,12.529617,.05,.05,0,0,0,0,0,2,1,1,0,0,0,56.74,55.09,39.33,58.88,1.666666666666667,1,1,0,0,10,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5281,-9,5282,5280,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.7433,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5282,5280,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,8,-1,66.194023,0,3,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.33,58.88,56.74,55.09,6.666666666666667,1,1,0,0,4,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5283,-9,5282,5280,1,1,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-997.61902,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2429,3020,5284,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.2597766,7.2043471,0,0,-1049.9635,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5682034,7.166976,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,4289,150903.89,3503.9219,53749.754,0,0,0,571.95709 +2430,3021,5285,5286,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.4515963,7.7486138,0,8,1,73.424538,0,-9,-9,2021,6,0,20,32,1,0,0,10.368089,10.368089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,9,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5286,5285,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.685873,9.6318493,0,18,-1,103.71639,0,2,3,2021,7,0,37,41,1,0,0,52.631271,52.631271,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5287,-9,5285,5286,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.86914,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5288,-9,5285,5286,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.7026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2431,3022,5289,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,0,5.7386265,5.1423907,0,0,-1079.8578,0,3,3,2021,8,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5781474,52.1,47.51,-9,-9,6.666666666666667,1,1,1,0,9,2,2,1,3825,508995.38,259944.17,0,0,0,0,925.84735 +2432,3023,5290,5291,-9,-9,1,1,61,0,0,0,2,2,-9,1,3,6.6990194,8.3609581,8.1448097,38,3,-32.495064,0,2,3,2021,9,0,14,0,1,0,0,6.137568,6.137568,.05,.05,0,0,0,0,0,42,1,1,0,4.8246841,7.6346512,53.78,33.27,41,56.99,6.666666666666667,1,1,0,0,11,10,5,1,358.5,-5026.3281,59449.383,0,0,0,7122.1191,4210.9839 +2432,3023,5291,5290,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7331257,8.3287535,7.0347509,38,-3,42.614174,0,3,2,2021,19,8,41,37,1,8,0,7.0104856,7.0104856,0,0,0,0,0,0,0,27,1,1,0,5.6118131,6.8555803,41,56.99,53.78,33.27,6.666666666666667,1,1,0,1,13,10,5,1,358.5,-5026.3281,59449.383,0,0,0,7122.1191,4210.9839 +2432,3024,5292,-9,5291,5290,1,1,21,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1088.1907,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,44.48,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1101,0,0,0,0,0,0,1290.7208 +2433,3025,5293,5294,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7825146,7.7279387,0,41,-4,1.7692227,0,2,-9,2021,7,0,26,29,1,0,0,10.247165,10.247165,0,0,0,0,0,0,0,7,0,0,0,4.3050461,0,58.32,50.22,51,48,8.333333333333334,1,1,0,0,8,10,3,1,504.5,648587.75,333330.94,302306.19,26635.221,0,0,830.42432 +2433,3025,5294,5293,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,8,4,-56.023117,0,-9,-9,2021,10,0,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,58.32,50.22,7,1,1,1,0,0,10,3,1,504.5,648587.75,333330.94,302306.19,26635.221,0,0,830.42432 +2433,3026,5295,-9,5293,5294,1,1,24,0,0,0,2,2,-9,0,4,6.5889125,6.3776603,0,0,0,-1076.7754,0,2,2,2021,10,0,40,40,1,1,1,2.1172311,2.1172311,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,1,194,-204641.44,0,0,0,0,0,977.62469 +2434,3027,5296,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,4.670444,5.0135622,0,0,-865.08167,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4947114,4.7652397,51.3,34.81,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,235,75425.789,0,0,0,0,0,1577.6906 +2435,3028,5297,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.5596027,9.0021429,0,0,0,-980.31219,0,3,3,2021,13,1,46,40,1,1,0,11.361933,11.361933,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,38.88,37.91,-9,-9,5,1,1,0,1,12,6,5,1,1130,597458.5,428176.75,53360.715,87050.117,6283.5669,0,2873.115 +2435,3029,5298,-9,-9,5297,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1025.8555,-9,-9,2,2021,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,1.666666666666667,1,1,0,1,4,6,1,1,627,0,0,0,0,0,0,0 +2436,3030,5299,5302,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,9.8146029,9.9334974,0,26,8,-89.861908,0,2,2,2021,11,1,46,60,1,1,0,45.921215,45.921215,.05,.05,0,0,0,0,0,0,0,0,0,6.0286779,0,51.24,58.84,54.7,46.42,8.333333333333334,2,3,0,0,9,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5300,-9,5302,5299,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1060.017,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5301,-9,5302,5299,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.9634,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5302,5299,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4337397,8.4448051,0,6,-8,34.286125,0,3,-9,2021,8,0,40,37,1,0,0,10.895808,10.895808,.05,.05,0,0,0,0,0,0,0,0,0,7.8361249,0,54.7,46.42,51.24,58.84,8.333333333333334,4,2,0,0,5,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3031,5303,-9,5302,5299,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-970.61206,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,704,94516.398,0,0,0,4953.8018,3238.0288,-113.66741 +2437,3032,5304,-9,5305,5306,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.13647,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5305,5306,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,4.8440785,4.9176264,0,10,5,-143.68283,0,3,3,2021,13,1,30,10,1,1,0,.57853365,.57853365,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.1,49.99,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5306,5305,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.4111862,9.5950375,0,8,-5,.52320898,0,2,2,2021,6,0,80,72,1,0,0,21.109203,21.109203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.1,49.99,8.333333333333334,1,1,0,0,10,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5307,-9,5305,5306,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8511,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3033,5308,-9,5305,5306,1,1,24,0,2,0,2,2,-9,0,4,7.9280567,7.9470477,0,0,0,-968.22052,0,2,3,2021,12,0,60,0,1,0,1,6.0548706,6.0548706,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,8,4,0,181,-233117.42,0,0,0,0,0,2222.0134 +2438,3034,5309,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.2334843,8.0424137,0,0,0,-1006.5909,-9,-9,-9,2021,2,0,43,0,1,0,0,11.109848,11.109848,.05,.05,0,0,0,0,0,0,1,1,0,4.1449885,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,997,-51116.672,102769.53,0,0,0,0,1559.026 +2439,3035,5310,5311,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.0766125,8.180007,0,31,2,-119.17606,0,3,3,2021,7,0,47,59,1,0,0,7.7732291,7.7732291,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.61,52.37,60.14,41.18,8.333333333333334,1,1,0,0,10,12,3,0,1140.5,402926.44,338663.31,145407.19,38422.484,2129.6514,0,1842.0588 +2439,3035,5311,5310,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.5463343,6.4269114,0,23,-2,-30.090321,0,2,2,2021,10,0,11,16,1,0,0,6.5234423,6.5234423,0,0,0,0,0,0,0,2,0,0,0,0,0,60.14,41.18,53.61,52.37,8.333333333333334,1,1,0,0,13,12,3,0,1140.5,402926.44,338663.31,145407.19,38422.484,2129.6514,0,1842.0588 +2440,3036,5312,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3850269,8.3232489,0,9,-4,49.06097,0,1,1,2021,11,2,45,50,1,2,0,9.3279743,9.3279743,.05,.05,0,0,0,0,0,0,0,0,0,3.1423078,0,54.2,57.49,51.73,58.82,8.333333333333334,2,3,0,0,8,10,5,1,253,209809.59,2161.8542,0,0,0,0,1650.8514 +2440,3037,5313,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.1797981,8.4683065,0,9,4,21.518749,0,-9,-9,2021,7,0,39,37,1,0,0,12.57866,12.57866,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,10,10,5,1,1769,113092.88,90786.031,33206.609,23580.061,7252.5093,0,1291.3684 +2441,3038,5314,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.5039649,6.4540668,0,0,-912.15674,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2246008,6.3266931,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,538,414205.16,10832.919,33912.766,0,0,0,1546.5208 +2442,3039,5315,5316,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,7,7,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.05,24.74,19.42,42.46,1.666666666666667,1,1,0,0,0,13,1,0,691.5,60584.969,-2323.5039,70160.328,53341.414,0,0,1528.3591 +2442,3039,5316,5315,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,7,-7,0,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.42,42.46,35.05,24.74,5,1,1,0,0,0,13,1,0,691.5,60584.969,-2323.5039,70160.328,53341.414,0,0,1528.3591 +2442,3040,5317,-9,5316,5315,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1054.9681,0,2,3,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,55.39,-9,-9,5,1,1,0,0,3,13,1,0,90,0,0,0,0,0,0,646.87946 +2442,3041,5318,-9,5316,5315,1,0,24,0,0,0,2,2,-9,0,3,8.1686001,8.1563444,0,0,0,-945.01953,0,3,3,2021,14,2,40,50,1,2,1,10.481052,10.481052,0,0,0,0,0,0,0,2,1,1,0,0,0,36.96,59.86,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,433,-70611.359,0,0,0,0,2422.2876,505.38855 +2443,3042,5319,5320,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.7226563,8.9482098,0,2,0,-21.078217,0,1,3,2021,7,0,38,38,1,0,0,17.280506,17.280506,.05,.05,.05,0,0,0,0,0,0,0,0,2.5120037,0,51.83,57.2,46.67,38.05,8.333333333333334,1,1,0,0,10,2,5,1,1711,284196.31,304563.44,136136.97,37354.277,20603.943,6299.9141,3091.4905 +2443,3042,5320,5319,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.0580988,6.8346887,0,2,0,-11.300684,0,-9,-9,2021,16,4,20,19,1,4,0,4.4908948,4.4908948,.05,.05,0,0,0,0,0,0,0,0,0,.69399607,0,46.67,38.05,51.83,57.2,5,1,1,0,1,4,2,5,1,1711,284196.31,304563.44,136136.97,37354.277,20603.943,6299.9141,3091.4905 +2444,3043,5321,5322,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.5031347,8.2203951,6,2,95.253769,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1693687,8.3526554,60.14,46.44,43.37,57.28,10,1,1,0,0,0,8,4,1,383,1128622.3,640460.5,228857.03,0,0,0,2967.5818 +2444,3043,5322,5321,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.2158051,7.812758,6,-2,133.11362,0,2,2,2021,20,7,0,60,4,7,0,0,0,0,0,0,0,0,0,0,27,0,0,0,5.3157954,7.9780698,43.37,57.28,60.14,46.44,8.333333333333334,2,3,0,0,7,8,4,1,383,1128622.3,640460.5,228857.03,0,0,0,2967.5818 +2445,3044,5323,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.3859215,8.370965,0,0,0,-1097.9049,0,1,1,2021,17,7,40,10,1,7,0,12.639886,12.639886,0,0,0,0,0,0,0,0,0,0,0,2.2963152,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1374,-213604.05,0,0,0,26149.643,118.77258,1807.6843 +2446,3045,5324,-9,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1002.4871,0,2,2,2021,23,10,0,45,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3529866,0,25.49,31.74,-9,-9,8.333333333333334,1,1,0,0,11,12,1,1,328,90870.063,0,0,0,0,0,-1226.0138 +2447,3046,5325,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.7663898,6.1517687,0,0,-936.51794,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1930799,51,46,-9,-9,7,3,4,0,0,0,8,2,1,708,536412.88,3039.3765,391531.5,0,0,0,625.95868 +2448,3047,5326,-9,5327,5328,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1102.0167,-9,2,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,321,81433.094,0,0,0,0,0,0 +2448,3048,5327,5328,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6998277,7.6568666,0,10,-2,-41.598461,0,-9,2,2021,6,0,24,23,1,0,0,10.472964,10.472964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.87,51.29,62.39,56.71,8.333333333333334,1,1,0,0,11,9,3,1,659,38949.82,-26282.355,0,0,1961.3428,0,1621.5582 +2448,3048,5328,5327,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,0,7.4533653,7.1945529,10,2,-76.325096,0,-9,-9,2021,5,0,0,35,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.4639814,7.3068676,62.39,56.71,58.87,51.29,10,1,1,0,0,14,9,3,1,659,38949.82,-26282.355,0,0,1961.3428,0,1621.5582 +2449,3049,5329,5330,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,21,-11,52.363075,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,19.99,33.18,54,54,1.666666666666667,1,1,0,0,0,6,2,0,407,186760.64,0,0,0,7074.8623,0,2087.1025 +2449,3049,5330,5329,-9,-9,1,1,55,0,0,0,3,3,-9,1,4,0,4.5574794,4.7859955,21,11,-29.719151,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6720252,4.2415895,54,54,19.99,33.18,8,1,1,0,0,0,6,2,0,407,186760.64,0,0,0,7074.8623,0,2087.1025 +2450,3050,5331,-9,-9,-9,1,0,20,0,0,1,1,0,-9,0,3,0,0,0,0,0,-999.78363,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.31,61.94,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,391,-33684.141,0,0,0,0,0,0 +2451,3051,5332,5333,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.6428018,6.6648064,10,2,58.406193,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6804295,55.11,47.63,58.3,52.91,8.333333333333334,1,1,0,0,12,12,5,1,440,1267760,1054934.6,326680.75,0,13682.535,8866.7598,6712.1587 +2451,3051,5333,5332,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.5306859,9.2880335,9.440876,10,-2,10.435035,0,-9,-9,2021,6,0,35,38,1,0,0,5.6046987,5.6046987,0,0,0,0,0,0,0,0,0,0,0,2.5757179,9.5131683,58.3,52.91,55.11,47.63,8.333333333333334,1,1,0,0,15,12,5,1,440,1267760,1054934.6,326680.75,0,13682.535,8866.7598,6712.1587 +2452,3052,5334,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.3328285,9.3686934,0,0,0,-1095.8947,0,2,-9,2021,0,0,38,0,1,0,0,31.970922,31.970922,.05,.05,0,0,0,0,0,0,0,0,0,1.9476162,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,9,5,0,1938,110399.88,47564.742,297828.13,177059.5,-2645.5496,1381.6934,3912.0129 +2453,3053,5335,-9,-9,-9,1,0,83,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1054.1503,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.73,28.09,-9,-9,5,1,1,0,0,0,12,1,0,1261,-54526.684,0,0,0,0,0,932.59027 +2453,3054,5336,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.8983188,7.0933156,0,0,0,-1089.0491,0,2,-9,2021,7,0,16,0,1,0,0,8.0026979,8.0026979,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,871.5,-39542.141,0,0,0,-923.27203,0,452.84592 +2453,3054,5337,-9,5336,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.1108,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,871.5,-39542.141,0,0,0,-923.27203,0,452.84592 +2454,3055,5338,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,9.2335901,9.4993238,7.5295057,0,0,-1099.9672,0,2,1,2021,21,9,47,47,1,9,0,22.114386,22.114386,0,0,0,1,6.151557,0,44.970905,0,0,0,0,3.0900445,7.8767457,40.14,38.19,-9,-9,5,1,1,0,0,15,6,5,1,185,747627.75,420964.13,275749.72,151411.5,0,0,4128.209 +2455,3056,5339,5340,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.1681795,7.7712793,7,10,6.3168178,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.452652,7.3795214,55.6,39.42,54.45,41.44,8.333333333333334,1,1,0,0,0,4,2,1,242.5,303657.13,58627.172,178622.78,0,0,0,1653.7766 +2455,3056,5340,5339,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,7,-10,1.7101594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1872816,0,54.45,41.44,55.6,39.42,10,1,1,0,0,0,4,2,1,242.5,303657.13,58627.172,178622.78,0,0,0,1653.7766 +2456,3057,5341,5342,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,6.6219182,6.3578525,67,1,-44.323826,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,14.371143,0,0,1,1,0,.39969662,6.5146432,32.82,19.15,52.73,44.5,8.333333333333334,1,1,0,0,0,1,2,1,2233,494586.09,102866.97,248534.84,0,0,0,1278.4065 +2456,3057,5342,5341,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,67,-1,-38.549416,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.132359,0,52.73,44.5,32.82,19.15,8.333333333333334,1,1,0,0,0,1,2,1,2233,494586.09,102866.97,248534.84,0,0,0,1278.4065 +2457,3058,5343,5344,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,8.6477585,8.7148809,0,9,-1,-74.239769,0,2,3,2021,12,2,40,41,1,2,0,21.651922,21.651922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.85,44.59,52.43,55.57,8.333333333333334,1,1,0,0,8,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5344,5343,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.3696089,8.0720844,0,9,1,-32.279301,0,3,3,2021,10,2,39,32,1,2,0,9.9573145,9.9573145,.05,.05,0,0,0,0,0,0,1,1,0,3.5062001,0,52.43,55.57,44.85,44.59,8.333333333333334,1,1,0,0,11,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5345,-9,5344,5343,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.79913,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5346,-9,5344,5343,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.42456,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2458,3059,5347,-9,5349,5348,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.26361,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3059,5348,5349,-9,5350,1,1,48,0,0,0,2,2,-9,0,1,8.1726742,8.2779665,0,23,7,79.715736,0,3,3,2021,20,8,40,40,1,8,0,9.6845093,9.6845093,.05,.05,0,0,0,0,0,27,1,1,0,2.8981214,0,53.22,26.09,49,55,1.666666666666667,2,3,0,0,6,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3059,5349,5348,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.2230434,8.1526365,0,8,-7,152.04953,0,-9,-9,2021,11,0,40,40,1,1,0,10.663847,10.663847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,55,53.22,26.09,7,2,3,0,0,1,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3060,5350,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.25098,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,2,3,0,0,0,6,1,1,534,72515.945,0,0,0,0,0,290.47153 +2458,3061,5351,-9,5349,5348,1,0,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-986.21124,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,6,1,1,1408,-182384.28,0,0,0,0,0,0 +2459,3062,5352,-9,5353,5354,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7358,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5353,5354,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,8,9,-6.7543993,-9,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.52,53.2,10,1,1,0,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5354,5353,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.2392597,8.2305183,0,7,0,-50.423817,-9,3,-9,2021,10,0,39,0,1,1,0,10.439533,10.439533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.52,53.2,57.16,56.15,8.333333333333334,1,1,0,0,5,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5355,-9,5353,5354,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.50885,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2460,3063,5356,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.5588179,8.4509373,0,0,0,-1059.6433,0,3,2,2021,10,0,35,35,1,1,0,18.814127,18.814127,.05,.05,0,0,0,0,0,0,0,0,0,6.5283594,0,50,57,-9,-9,7,1,1,0,0,1,8,5,1,178,-104991.26,21529.4,0,0,0,0,2069.5913 +2460,3064,5357,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8455706,8.8039942,0,0,0,-966.01495,0,2,2,2021,7,0,38,37,1,0,0,22.007299,22.007299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,745,62884.945,161073.36,147221.42,91450.727,0,0,2391.0332 +2461,3065,5358,5360,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.0342693,8.0014095,0,6,1,36.55122,0,1,2,2021,20,9,40,55,1,9,0,8.3211374,8.3211374,.05,.05,0,0,0,0,0,0,1,1,0,3.369833,0,46.28,62.6,51.02,56.13,6.666666666666667,1,1,0,0,8,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2461,3065,5359,-9,5360,5358,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.8434,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2461,3065,5360,5358,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.7585011,8.8449173,0,6,-1,49.048668,0,2,2,2021,9,1,50,55,1,1,0,15.016976,15.016976,.05,.05,0,0,0,0,0,0,1,1,0,2.8259497,0,51.02,56.13,46.28,62.6,8.333333333333334,1,1,0,0,5,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2462,3066,5361,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8435946,8.5635347,0,0,0,-948.30267,0,3,1,2021,14,4,21,25,1,4,0,33.729515,33.729515,.05,.05,0,0,0,0,0,105,0,0,0,0,0,50.03,52.62,-9,-9,8.333333333333334,4,2,0,0,6,8,5,0,1404,1137004.4,831398.06,254119.95,3870.0278,0,0,2165.4045 +2463,3067,5362,5364,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.6693897,8.7353754,0,2,4,-100.64282,0,-9,-9,2021,7,0,38,49,1,0,0,22.312645,22.312645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.51,59.08,39.93,57.19,8.333333333333334,1,1,0,0,12,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5363,-9,5364,5362,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.04425,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5364,5362,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,8.2847872,8.2957067,0,2,-4,78.118782,0,2,2,2021,15,5,37,37,1,5,0,14.985731,14.985731,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.93,57.19,47.51,59.08,6.666666666666667,1,1,0,0,12,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5365,-9,5364,5362,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.3334,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2464,3068,5366,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,8.5002728,8.2426386,0,0,-1069.1824,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.9881384,0,21.009235,0,1,1,0,3.7777894,8.5620899,52,45,-9,-9,8,1,1,0,0,0,2,4,1,352,560766.56,0,172137.92,0,0,0,2849.0181 +2465,3069,5367,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.0432005,8.0650377,0,0,0,-1007.0287,0,-9,-9,2021,18,6,40,16,1,6,0,6.0855269,6.0855269,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.89,51.69,-9,-9,5,1,1,0,0,1,7,3,1,2208,-139863.59,-32361.543,80609.234,105185.55,0,1812.5238,1015.4194 +2465,3070,5368,-9,5367,-9,1,0,18,0,2,0,2,2,-9,0,4,7.2911553,7.7816205,0,0,0,-910.95367,0,2,-9,2021,10,0,40,0,1,0,1,5.2031846,5.2031846,0,0,0,0,0,0,0,0,1,1,0,4.9846444,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,7,3,1,435,0,0,0,0,0,0,709.52899 +2465,3071,5369,-9,5371,5372,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6097,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5370,-9,5371,5372,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5612,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5371,5372,5367,-9,1,0,30,0,2,0,2,2,-9,0,3,6.4096308,6.726727,0,8,-1,108.17927,0,2,2,2021,10,0,10,0,1,0,0,10.158025,10.158025,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,50,57,8.333333333333334,1,1,0,0,8,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5372,5371,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.8806915,8.8192797,0,8,1,78.215843,0,-9,-9,2021,10,0,48,46,1,1,0,18.493757,18.493757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,51.66,54.88,7,1,1,0,0,1,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2466,3072,5373,-9,5374,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6341,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,5,0,374.5,-63648.813,41001.414,248429.95,175999.59,0,996.65479,33354.094 +2466,3072,5374,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,9.7538605,9.8147449,0,0,0,-911.39227,-9,2,2,2021,10,0,6,0,1,0,0,324.90463,324.90463,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,3,4,0,0,6,8,5,0,374.5,-63648.813,41001.414,248429.95,175999.59,0,996.65479,33354.094 +2467,3073,5375,5376,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.4693341,7.5124154,32,13,-88.002487,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4832482,48.53,58.91,41.45,40.45,10,1,1,0,0,0,10,3,1,464.5,768995.88,257836.66,242443.72,0,0,0,3244.9868 +2467,3073,5376,5375,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.8129001,8.2634792,32,-13,-30.487795,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,7.1120262,7.6934347,41.45,40.45,48.53,58.91,8.333333333333334,1,1,0,0,0,10,3,1,464.5,768995.88,257836.66,242443.72,0,0,0,3244.9868 +2468,3074,5377,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.2320619,7.1022525,0,0,0,-958.78333,0,-9,-9,2021,8,1,24,40,1,1,0,6.0511184,6.0511184,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,3500,113613.61,0,0,0,0,0,670.46893 +2469,3075,5378,5379,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.523613,7.9951892,0,16,-4,-3.7069728,-9,2,2,2021,11,0,26,0,1,0,0,15.173458,15.173458,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,53.71,42.52,57.56,8.333333333333334,1,1,0,0,9,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3075,5379,5378,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.1773977,9.190896,0,16,4,-44.563961,-9,2,3,2021,16,4,37,0,1,4,0,38.634705,38.634705,0,0,.05,0,0,0,0,2,0,0,0,3.9888153,0,42.52,57.56,53.48,53.71,8.333333333333334,1,1,0,0,8,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3075,5380,-9,5378,5379,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1025.6746,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3076,5381,-9,5378,5379,1,1,19,0,2,0,2,2,-9,0,3,7.0879693,7.3727303,0,0,0,-1002.2346,-9,2,1,2021,18,6,27,0,1,6,1,6.1826925,6.1826925,0,0,0,0,0,0,0,2,0,0,0,0,0,27.4,56.6,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,5622,-65454.699,-38576.613,0,0,0,0,627.97565 +2470,3077,5382,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.5215225,8.4629822,0,0,0,-976.57971,0,2,1,2021,5,0,37,37,1,0,0,15.853168,15.853168,.05,.05,0,0,0,0,0,0,0,0,0,9.6172934,0,61.69,44.41,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,770,642651,659665.94,96448.313,32965.133,0,0,7500.5996 +2471,3078,5383,5384,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,-4,113.94324,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,77.681992,0,0,1,1,0,1.4917309,0,52,45,45.02,34.56,8,1,1,0,0,0,2,2,1,1558.5,138261.75,55171.254,24437.453,0,4554.4844,0,2818.5957 +2471,3078,5384,5383,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.3263865,6.0597844,57,4,133.82448,0,3,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,1.7048008,6.409205,45.02,34.56,52,45,5,1,1,0,0,0,2,2,1,1558.5,138261.75,55171.254,24437.453,0,4554.4844,0,2818.5957 +2472,3079,5385,5386,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.9257965,7.0674777,0,10,-1,98.258003,0,3,3,2021,6,0,13,13,1,0,0,8.1802635,8.1802635,.05,.05,0,0,0,0,0,27,0,0,0,0,0,62.39,56.71,57.9,51.84,8.333333333333334,1,1,0,0,11,6,4,1,437.5,529861.81,255918.25,199692.86,0,0,0,2612.4854 +2472,3079,5386,5385,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.6295452,7.9329729,6.4646869,10,1,-7.1509056,0,3,3,2021,7,0,40,40,1,0,0,6.8778534,6.8778534,.05,.05,.05,0,0,0,0,0,0,0,0,4.9119744,6.5298777,57.9,51.84,62.39,56.71,5,1,1,0,0,11,6,4,1,437.5,529861.81,255918.25,199692.86,0,0,0,2612.4854 +2473,3080,5387,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.0581026,8.0052376,0,0,0,-975.66284,0,2,2,2021,7,0,40,40,1,0,0,6.6755114,6.6755114,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.89,34.42,-9,-9,10,1,1,0,0,15,7,3,1,241,276284.28,187851.66,0,0,0,1944.4948,383.89175 +2474,3081,5388,5389,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.7277026,7.664835,0,1,4,-59.444328,-9,-9,-9,2021,10,0,31,0,1,1,0,8.1524725,8.1524725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,60.02,56.42,7,1,1,0,0,1,13,3,1,1015.5,31096.938,72110.086,81152.953,110760.45,0,0,2203.1074 +2474,3081,5389,5388,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.0415916,7.2760954,0,1,-4,-62.450886,0,2,3,2021,2,0,39,40,1,0,0,4.6582608,4.6582608,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,49,58,10,1,1,0,0,6,13,3,1,1015.5,31096.938,72110.086,81152.953,110760.45,0,0,2203.1074 +2475,3082,5390,5391,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,13,-1,0,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.83,22.39,58.33,39.49,5,1,1,0,0,0,5,2,1,974.5,9190.6406,0,0,0,1177.4379,0,1657.2068 +2475,3082,5391,5390,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,0,0,0,14,1,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.33,39.49,25.83,22.39,5,1,1,0,1,5,5,2,1,974.5,9190.6406,0,0,0,1177.4379,0,1657.2068 +2476,3083,5392,5393,5394,-9,1,0,59,0,0,0,2,2,-9,1,2,6.9049921,7.3753529,6.328001,37,-4,-11.107375,0,3,3,2021,7,1,18,18,1,1,0,7.0949693,7.0949693,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3915043,59.86,13.39,52,47,8.333333333333334,1,1,0,0,8,1,2,1,948,101186.57,0,88358.828,0,0,0,1828.2197 +2476,3083,5393,5392,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,6,4,1.7611897,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9478202,0,52,47,59.86,13.39,7,1,1,0,0,0,1,2,1,948,101186.57,0,88358.828,0,0,0,1828.2197 +2476,3084,5394,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-883.89764,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.223001,0,53,44,-9,-9,8,4,6,0,0,0,1,1,1,366,-31089.76,0,0,0,0,0,602.85968 +2477,3085,5395,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.9088,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,611,-18346.766,0,0,0,0,-1044.4185,708.67456 +2477,3086,5396,-9,5395,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.70453,-9,3,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,13,1,1,720,119803.39,19186.914,0,0,0,-109.70539,0 +2478,3087,5397,5398,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.916554,7.4420199,51,-2,-32.638729,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2207696,7.0953898,60.68,42.81,37,39.88,8.333333333333334,1,1,0,0,0,9,3,1,282,841304.75,564502.13,419378.19,107418.8,0,7023.7637,2339.1128 +2478,3087,5398,5397,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.8605938,6.8545012,51,2,-41.767399,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2681079,6.3671575,37,39.88,60.68,42.81,8.333333333333334,1,1,0,0,5,9,3,1,282,841304.75,564502.13,419378.19,107418.8,0,7023.7637,2339.1128 +2478,3088,5399,-9,5398,5397,1,1,46,0,0,0,2,2,-9,0,4,7.9498343,7.8205967,0,0,0,-1077.4281,0,2,2,2021,10,0,41,41,1,1,0,8.0100336,8.0100336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,442,-25109.924,-14656.815,0,0,0,0,1134.1111 +2479,3089,5400,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.31525,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,13.188727,28.932426,123.80438,0,1,1,0,0,0,30.85,17.26,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,859,-94926.516,0,0,0,0,4286.7051,1537.2278 +2480,3090,5401,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.2338629,8.2672262,0,0,0,-909.0509,0,2,2,2021,13,3,37,34,1,3,0,11.502192,11.502192,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.05,43.1,-9,-9,3.333333333333333,1,1,0,0,10,5,4,0,738,129026.02,-16920.502,121443.56,0,0,0,1527.2368 +2480,3091,5402,-9,5401,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.72742,1,2,-9,2021,12,0,0,38,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,0,5,1,0,642,76867.211,0,0,0,0,0,-781.84344 +2481,3092,5403,5404,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,41,0,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8361473,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,5,1,1,859.5,1752780.1,817222.06,672599.5,0,0,0,215.93599 +2481,3092,5404,5403,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,7,0,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5624914,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,5,1,1,859.5,1752780.1,817222.06,672599.5,0,0,0,215.93599 +2482,3093,5405,5406,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.4455571,7.5683899,0,36,-10,33.045204,0,3,3,2021,18,5,37,37,1,5,0,5.4872718,5.4872718,0,0,0,0,0,0,0,2,0,0,0,0,0,46.66,34,57.57,49.69,5,3,4,0,0,8,10,4,1,895.5,711848.63,322922.63,238019.83,0,0,0,2249.9492 +2482,3093,5406,5405,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.7694964,8.1227589,6.325038,7,10,54.210728,0,-9,-9,2021,10,0,40,37,1,0,0,8.0202036,8.0202036,0,0,0,0,0,0,0,0,0,0,0,0,6.779676,57.57,49.69,46.66,34,6.666666666666667,3,4,0,0,6,10,4,1,895.5,711848.63,322922.63,238019.83,0,0,0,2249.9492 +2483,3094,5407,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.3973737,7.313314,4.1746531,0,0,-999.95544,0,2,2,2021,7,0,30,20,1,0,0,6.2178907,6.2178907,.05,.05,0,0,0,0,0,0,0,0,0,0,3.9294245,62.98,30.79,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,1255,212834.69,120565.08,0,0,0,1350.2042,663.05853 +2484,3095,5408,5409,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,36,6,-94.900513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8565805,0,58.23,43.46,48.44,29.66,8.333333333333334,1,1,0,0,8,2,2,1,1344,361541.94,245139.41,70465.633,0,0,0,1961.2174 +2484,3095,5409,5408,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.4686384,7.4842281,36,-6,-19.156874,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5138102,7.3740563,48.44,29.66,58.23,43.46,8.333333333333334,1,1,0,0,0,2,2,1,1344,361541.94,245139.41,70465.633,0,0,0,1961.2174 +2485,3096,5410,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.5463185,7.6655011,0,0,-1028.0393,-9,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6065369,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,1216,45489.711,72526.25,0,0,0,0,773.96057 +2486,3097,5411,5412,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0094099,5.0400944,10,-2,-61.908028,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7605121,4.7588778,45.94,42.51,48.79,51.9,8.333333333333334,1,1,0,0,8,11,2,1,1223.5,432611.69,255401.25,130182.08,0,2613.8379,0,2239.0186 +2486,3097,5412,5411,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6987371,6.7248721,10,2,94.73407,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.123103,6.8369999,48.79,51.9,45.94,42.51,8.333333333333334,1,1,0,0,0,11,2,1,1223.5,432611.69,255401.25,130182.08,0,2613.8379,0,2239.0186 +2487,3098,5413,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.0689659,7.8823428,0,0,-1078.9603,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7384129,8.1650848,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,917,887711.5,655939.19,0,0,0,0,3076.5857 +2488,3099,5414,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.6052761,6.4447451,0,0,-1063.1879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4673452,6.5776873,49.92,34.09,-9,-9,5,1,1,0,0,7,8,2,1,314,251508.66,114983.27,286893.25,0,0,0,1090.7311 +2489,3100,5415,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.7408524,7.3464837,0,0,-1101.1797,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1872854,7.4359632,36.14,59.14,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1577,647935.56,149633.42,303296.66,0,0,0,2169.7974 +2490,3101,5416,5419,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.1783915,7.8002615,0,20,0,-12.564358,0,1,1,2021,9,0,24,20,1,0,0,15.495244,15.495244,.05,.05,.05,0,0,0,0,0,1,1,0,8.0847664,0,59.46,46.99,25.9,58.76,8.333333333333334,1,1,0,0,12,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5417,-9,5419,5416,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1050.0713,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5418,-9,5419,5416,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.62341,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5419,5416,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.6115675,7.3213592,0,19,0,-48.09137,0,3,3,2021,24,11,8,16,1,11,0,30.338272,30.338272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.9,58.76,59.46,46.99,5,1,1,0,0,11,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2491,3102,5420,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,9.8379211,9.5965014,0,0,0,-1147.1979,0,2,3,2021,4,0,60,70,1,0,0,28.018219,28.018219,.05,.05,0,0,0,0,0,0,1,1,0,9.5675039,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,556,32804.457,-31941.594,0,0,0,0,9981.4199 +2491,3102,5421,-9,5422,5420,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-946.73065,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,2,5,1,556,32804.457,-31941.594,0,0,0,0,9981.4199 +2491,3103,5422,-9,-9,5420,1,0,43,0,1,0,1,1,-9,0,4,8.3160868,8.2874384,0,0,0,-1097.5099,-9,-9,2,2021,20,8,42,0,1,8,0,10.512147,10.512147,0,0,0,0,0,0,0,0,1,1,0,0,0,42.54,56.27,-9,-9,6.666666666666667,1,1,0,0,2,2,3,1,370,211367.73,67943.742,123635.98,38710.633,6382.6162,0,1636.7467 +2492,3104,5423,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.2134228,8.1449127,0,0,-884.54156,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9158802,8.2190866,46.08,57.2,-9,-9,3.333333333333333,1,1,0,0,0,5,4,1,318,661729.13,0,358175.88,0,0,0,3015.9185 +2493,3105,5424,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.4030828,5.2681313,0,0,-959.14124,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.030386,54.4,30.85,-9,-9,5,1,1,0,0,0,2,2,0,2774,-205613.81,182629.83,0,0,0,2140.2896,1148.0242 +2494,3106,5425,-9,5426,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1111.2563,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,3,4,-9,0,0,7,4,0,1531,1079240.9,232473.53,649513.88,0,2822.2236,0,1956.8571 +2494,3106,5426,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5223265,8.3568859,0,0,0,-976.9765,0,2,2,2021,3,0,37,37,1,0,0,15.6345,15.6345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,1531,1079240.9,232473.53,649513.88,0,2822.2236,0,1956.8571 +2495,3107,5427,5428,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.1053524,9.4080124,0,32,-3,60.697086,-9,2,2,2021,11,2,44,0,1,2,0,26.542496,26.542496,.05,.05,0,0,0,0,0,0,0,0,0,6.3126535,0,44.11,55.31,43,39,3.333333333333333,1,1,0,0,11,1,5,1,534,650642.81,314957.13,307165.19,98340.594,0,-111.15233,3188.2546 +2495,3107,5428,5427,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,30,3,-9.9498339,-9,3,2,2021,13,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,39,44.11,55.31,8.333333333333334,1,1,1,0,6,1,5,1,534,650642.81,314957.13,307165.19,98340.594,0,-111.15233,3188.2546 +2496,3108,5429,5430,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,12,-5,-119.84392,0,-9,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,33.268562,0,0,1,1,0,0,0,49.07,28.86,60.02,56.42,8.333333333333334,1,1,0,0,0,10,2,0,683,346560.84,0,306881.22,0,4533.4854,0,1406.7042 +2496,3108,5430,5429,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,4.6463122,4.9122028,66,5,-109.71106,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.9155588,5.2014713,60.02,56.42,49.07,28.86,10,1,1,0,0,0,10,2,0,683,346560.84,0,306881.22,0,4533.4854,0,1406.7042 +2497,3109,5431,5432,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,5.7221818,5.4253731,9,0,-6.1331997,0,2,2,2021,21,9,0,0,4,9,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,5.2772231,5.7326756,37.53,42.19,40.64,52.96,1.666666666666667,1,1,0,1,10,7,3,1,525.5,684595.25,209552.84,337261.13,0,8290.1846,0,1980.5676 +2497,3109,5432,5431,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9702468,7.9909282,9,0,45.311001,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9518342,40.64,52.96,37.53,42.19,5,1,1,0,0,2,7,3,1,525.5,684595.25,209552.84,337261.13,0,8290.1846,0,1980.5676 +2498,3110,5433,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.3410254,8.0232134,0,0,0,-1099.7096,0,1,1,2021,8,0,37,37,1,0,0,16.78179,16.78179,.05,.05,0,0,0,0,0,0,0,0,0,1.2367393,0,52.97,53.97,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,621,1011812.4,826489.5,270103.63,190098.41,0,0,1191.9902 +2499,3111,5434,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.1629019,8.528821,0,0,0,-929.64758,0,3,3,2021,12,0,55,50,1,0,0,10.720745,10.720745,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,524,-37179.293,38919.387,0,0,0,0,2542.5271 +2499,3112,5435,-9,-9,5434,1,1,23,0,0,0,2,2,-9,0,5,8.0445337,8.3478107,0,0,0,-985.58472,0,-9,-9,2021,13,1,43,70,1,1,1,9.84869,9.84869,0,0,0,0,0,0,0,0,1,1,0,0,0,57.04,57.78,-9,-9,10,1,1,0,0,8,5,4,1,2970,180035.14,0,0,0,2847.2512,0,619.82458 +2499,3113,5436,-9,-9,5434,1,0,19,0,0,0,2,2,1,0,4,6.9979725,7.0485301,0,0,0,-1141.9915,-9,-9,-9,2021,12,0,16,0,1,0,1,7.7177186,7.7177186,0,0,0,0,0,0,0,0,1,1,0,0,0,64.67,33.62,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,465,-154508.27,0,0,0,0,0,746.21521 +2500,3114,5437,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,5,0,7.6897798,7.6211014,0,0,-959.77576,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7220898,46.22,38.1,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,748,237963.86,32212.395,0,0,0,0,2111.5215 +2501,3115,5438,5439,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.4735031,8.7509871,38,3,-3.2953036,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.2538733,8.3763018,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,5,6,5,1,1046.5,1961197.1,1181461.8,650333.63,215600.58,0,46917.699,7998.7563 +2501,3115,5439,5438,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.5520859,9.6840639,6.3711123,38,-3,47.031006,0,3,3,2021,5,0,30,25,1,0,0,54.829277,54.829277,.05,.05,0,0,0,0,0,0,0,0,0,0,6.2329583,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,7,6,5,1,1046.5,1961197.1,1181461.8,650333.63,215600.58,0,46917.699,7998.7563 +2501,3116,5440,-9,5438,5439,1,0,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1089.5374,-9,1,1,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7559168,0,52.13,57.22,-9,-9,3.333333333333333,1,1,1,0,0,6,1,1,347,37538.363,0,0,0,0,0,1230.1168 +2502,3117,5441,5442,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.9423094,8.1154127,0,6,0,-61.439693,0,-9,-9,2021,8,0,41,41,1,0,0,7.8281813,7.8281813,.05,.05,0,0,0,0,0,0,0,0,0,1.9727628,0,54.2,57.49,52.55,44.88,6.666666666666667,1,1,0,0,5,10,4,1,2289,181230.66,76342.281,214613.72,117048.83,0,1217.4796,3203.3906 +2502,3117,5442,5441,-9,-9,1,0,28,0,0,0,3,3,-9,0,3,7.7810092,7.8516774,0,6,0,13.211601,0,-9,-9,2021,12,1,41,45,1,1,0,7.1266284,7.1266284,.05,.05,0,0,0,0,0,0,0,0,0,6.7651095,0,52.55,44.88,54.2,57.49,8.333333333333334,1,1,0,0,7,10,4,1,2289,181230.66,76342.281,214613.72,117048.83,0,1217.4796,3203.3906 +2503,3118,5443,5444,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,4.612134,4.659081,0,42,-3,-5.4072328,0,3,3,2021,11,0,15,15,1,0,0,.80826056,.80826056,0,0,0,1,0,0,0,0,1,1,0,0,0,49.05,50.32,44.94,49.91,3.333333333333333,1,1,0,0,14,10,2,1,516,662419.38,265962.03,323300.28,0,0,525.20294,2929.0278 +2503,3118,5444,5443,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0715814,6.9225163,42,3,14.873716,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3652095,7.2591257,44.94,49.91,49.05,50.32,3.333333333333333,1,1,0,0,9,10,2,1,516,662419.38,265962.03,323300.28,0,0,525.20294,2929.0278 +2504,3119,5445,5446,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.6237688,7.490613,58,-3,-27.693562,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6464801,7.7571344,62.98,30.79,52.98,8.6,6.666666666666667,1,1,0,0,0,8,3,1,1723,1238893.8,166042.66,917071.75,0,0,0,2043.9143 +2504,3119,5446,5445,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,58,3,-68.476448,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.98,8.6,62.98,30.79,3.333333333333333,1,1,0,0,0,8,3,1,1723,1238893.8,166042.66,917071.75,0,0,0,2043.9143 +2505,3120,5447,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.9996042,7.8599367,0,0,0,-1005.2326,0,3,2,2021,0,0,18,10,1,0,0,18.978386,18.978386,.05,.05,0,0,0,0,0,0,0,0,0,3.6307321,0,59.43,58.05,-9,-9,10,1,1,0,0,9,7,4,1,875,-91551.609,74851.188,0,0,-58.854763,1017.9954,1662.9227 +2506,3121,5448,5449,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,53,-3,7.0726781,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4792318,0,0,1,1,0,0,0,62.51,37.27,60.12,54.8,10,1,1,0,0,0,10,2,1,775,-22631.895,57193.57,0,0,0,0,1670.8988 +2506,3121,5449,5448,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.773243,6.220717,53,3,-19.476534,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2714701,6.8209195,60.12,54.8,62.51,37.27,10,1,1,0,0,0,10,2,1,775,-22631.895,57193.57,0,0,0,0,1670.8988 +2507,3122,5450,5451,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8737278,8.518219,5.2239256,2,-2,32.979099,0,2,3,2021,11,2,35,35,1,2,0,16.058111,16.058111,.05,.05,0,0,0,0,0,7,1,1,0,0,5.2753673,39.77,51.85,48.28,33.75,8.333333333333334,1,1,0,0,12,12,5,1,711.5,1512891.6,1236213.8,208860.13,41201.938,0,0,4892.5396 +2507,3122,5451,5450,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,8.1592321,8.4857788,7.8259115,2,2,-68.84417,0,3,3,2021,12,2,40,40,1,2,0,9.8616791,9.8616791,.05,.05,0,0,0,0,0,0,1,1,0,6.8883433,8.4159203,48.28,33.75,39.77,51.85,5,1,1,0,0,11,12,5,1,711.5,1512891.6,1236213.8,208860.13,41201.938,0,0,4892.5396 +2508,3123,5452,-9,5456,5454,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-927.59949,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5453,-9,5456,5454,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.6405,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5454,5456,-9,-9,1,1,27,1,3,0,3,3,-9,0,3,8.2010717,8.2619514,0,1,0,23.909109,-9,2,-9,2021,17,6,50,0,1,6,0,8.9632282,8.9632282,0,0,0,0,0,0,0,0,1,1,0,0,0,39.95,38.09,47.35,62.06,10,1,1,0,0,3,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5455,-9,5456,5454,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.533,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5456,5454,-9,-9,1,0,27,1,3,0,3,3,-9,0,5,0,0,0,1,0,52.102009,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.35,62.06,39.95,38.09,10,1,1,0,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2509,3124,5457,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.3951025,8.5002728,0,0,0,-1102.2118,0,-9,3,2021,18,7,60,50,1,7,0,8.8103943,8.8103943,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.18,25.97,-9,-9,3.333333333333333,1,1,0,0,10,4,4,0,403,239995.73,187114.2,0,0,0,679.89264,1816.562 +2510,3125,5458,5459,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,31,3,0,0,-9,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.038914323,0,30.01,20.17,38.43,38.05,3.333333333333333,1,1,0,0,0,7,1,0,95.5,89541.336,-21597.504,0,0,1335.6409,0,2286.6873 +2510,3125,5459,5458,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,31,-3,0,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.43,38.05,30.01,20.17,3.333333333333333,1,1,0,1,0,7,1,0,95.5,89541.336,-21597.504,0,0,1335.6409,0,2286.6873 +2511,3126,5460,-9,5461,5462,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1105.0734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5461,5462,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.563385,7.4889541,0,21,2,177.49762,0,2,2,2021,7,0,17,17,1,0,0,10.573537,10.573537,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.75,45.86,8.333333333333334,1,1,0,0,8,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5462,5461,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.4657907,8.2774115,0,22,-2,103.6602,0,1,2,2021,13,1,53,40,1,1,0,10.606779,10.606779,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.75,45.86,57.06,57.76,5,1,1,0,0,8,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5463,-9,5461,5462,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.96576,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2512,3127,5464,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,7.9898429,8.1646423,0,0,0,-990.05457,0,2,2,2021,9,0,37,35,1,0,0,9.2494698,9.2494698,0,0,0,0,0,0,0,0,0,0,0,4.5766187,0,44.36,54.04,-9,-9,6.666666666666667,1,1,0,0,4,9,4,0,451,-20410.139,0,0,0,0,0,633.11957 +2513,3128,5465,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9954782,8.2860737,0,0,0,-994.93738,0,2,1,2021,11,0,38,35,1,0,0,11.501328,11.501328,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.38,42.58,-9,-9,5,4,2,0,0,12,8,4,1,557,1028313.1,588905.31,432133.06,39678.523,3529.354,3619.4832,1976.3744 +2514,3129,5466,5467,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.9633436,8.6435452,0,14,1,103.27747,0,2,2,2021,22,9,40,45,1,9,0,15.118512,15.118512,.05,.05,0,0,0,0,0,0,1,1,0,1.857233,0,33.4,59.23,54.79,55.86,6.666666666666667,1,1,0,0,8,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5467,5466,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.2959261,8.1873579,0,14,-1,-42.833359,0,1,2,2021,11,0,23,38,1,0,0,18.18755,18.18755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,33.4,59.23,8.333333333333334,1,1,0,0,9,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5468,-9,5467,5466,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.2697,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5469,-9,5467,5466,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.64783,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2515,3130,5470,-9,5471,5472,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.99573,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2515,3130,5471,5472,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.5956202,8.1681376,0,12,-18,-122.19555,-9,2,2,2021,7,0,34,0,1,0,0,16.130728,16.130728,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50,49,10,1,1,0,0,7,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2515,3130,5472,5471,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,7.8406496,7.8130331,0,1,18,5.7867179,-9,3,3,2021,12,0,51,0,1,0,0,6.9585624,6.9585624,0,0,0,0,0,0,0,0,1,1,0,.76794827,0,50,49,58.15,52.91,5,1,1,0,0,11,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2516,3131,5473,5474,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0368309,8.1714268,6.5809355,2,-6,-18.822563,0,-9,-9,2021,11,0,40,38,1,0,0,6.8127213,6.8127213,0,0,0,0,0,0,0,0,1,1,0,6.2517915,6.8589635,53.92,52.23,33.65,51.05,8.333333333333334,1,1,0,0,1,10,4,1,755.5,141771.95,96048.727,0,0,0,0,3493.8215 +2516,3131,5474,5473,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.0768414,7.9365821,2,6,150.37375,0,2,2,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5906677,7.9323173,33.65,51.05,53.92,52.23,3.333333333333333,1,1,0,0,12,10,4,1,755.5,141771.95,96048.727,0,0,0,0,3493.8215 +2517,3132,5475,5476,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.2887239,8.3560696,33,-1,41.34433,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.6566286,8.0851765,49.77,33.09,50.54,52.37,5,1,1,0,0,9,9,4,1,376,345140.91,143130.3,0,0,0,-218.88046,3102.6772 +2517,3132,5476,5475,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.5587687,7.6162481,0,33,1,76.50843,0,2,2,2021,19,7,30,20,1,7,0,7.7064767,7.7064767,.05,.05,0,0,0,0,0,2,0,0,0,2.6448288,0,50.54,52.37,49.77,33.09,8.333333333333334,1,1,0,0,13,9,4,1,376,345140.91,143130.3,0,0,0,-218.88046,3102.6772 +2518,3133,5477,5478,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,0,0,0,22,0,47.046684,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.85,40.9,57.06,57.76,8.333333333333334,2,3,0,0,0,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2518,3133,5478,5477,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.8727894,9.0731878,0,22,0,-5.4734402,0,3,2,2021,5,0,60,50,1,0,0,15.072146,15.072146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,63.85,40.9,8.333333333333334,2,3,0,0,7,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2518,3133,5479,-9,5477,5478,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1007.7493,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2519,3134,5480,-9,5481,5483,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-811.04144,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5481,5483,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.6436071,8.5580435,0,13,-1,10.943327,0,2,1,2021,11,0,50,36,1,0,0,9.7340384,9.7340384,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,49.63,54.22,8.333333333333334,1,1,0,0,10,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5482,-9,5481,5483,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.2108,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5483,5481,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.754035,8.8842564,0,13,1,71.447472,0,2,3,2021,11,0,40,42,1,0,0,18.137461,18.137461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,44.02,60.7,6.666666666666667,1,1,0,0,9,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2520,3135,5484,5485,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.2208099,9.3996334,0,10,1,-8.2701883,0,-9,-9,2021,7,0,33,29,1,0,0,31.872644,31.872644,0,0,0,0,0,0,0,0,0,0,0,7.5115471,0,52.63,50.07,54.2,57.49,3.333333333333333,1,1,0,0,14,8,5,1,432.5,160056.02,0,253464.53,0,0,0,12395.914 +2520,3135,5485,5484,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.6622133,9.6876507,0,24,-1,-.7009263,0,3,2,2021,9,0,25,-9,1,0,0,62.630318,62.630318,0,0,0,0,0,0,0,0,0,0,0,7.4266019,0,54.2,57.49,52.63,50.07,8.333333333333334,2,3,0,0,13,8,5,1,432.5,160056.02,0,253464.53,0,0,0,12395.914 +2521,3136,5486,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1761084,8.3106546,0,0,0,-967.06561,0,-9,3,2021,6,0,41,37,1,0,0,10.24019,10.24019,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,290,406235.13,24169.391,140264.41,38004.629,0,0,1285.5725 +2522,3137,5487,5488,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,8.4370413,8.1195917,51,-5,-61.417458,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0026512,40.54,31.39,52.48,34.94,5,1,1,0,0,0,8,5,1,508,1918035,1485904.8,483856.72,78808.375,0,0,6894.9321 +2522,3137,5488,5487,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.9082527,9.0512161,51,5,48.788479,0,2,1,2021,8,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,2.2002649,8.6079226,52.48,34.94,40.54,31.39,8.333333333333334,2,3,0,0,0,8,5,1,508,1918035,1485904.8,483856.72,78808.375,0,0,6894.9321 +2523,3138,5489,5490,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.7005644,8.8268442,0,27,-1,-168.99649,0,3,3,2021,12,1,42,40,1,1,0,15.295612,15.295612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.33,59.49,53,55,6.666666666666667,1,1,0,0,11,13,5,1,3633,736454.25,83987,426255.81,0,0,0,5321.4507 +2523,3138,5490,5489,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.102417,9.2194071,0,27,1,-109.71513,0,3,3,2021,9,0,40,40,1,1,0,18.220045,18.220045,.05,.05,0,0,0,0,0,0,0,0,0,3.7268202,0,53,55,32.33,59.49,8,1,1,0,0,1,13,5,1,3633,736454.25,83987,426255.81,0,0,0,5321.4507 +2523,3139,5491,-9,5489,5490,1,0,22,0,0,0,2,2,-9,0,4,7.9403429,8.0758505,0,0,0,-1009.6199,0,1,1,2021,12,0,40,35,1,2,1,9.1346836,9.1346836,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,4,1,1453,95173.898,0,0,0,0,1089.6586,982.22595 +2524,3140,5492,5493,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.7744322,8.4527121,0,7,3,-46.765491,0,-9,-9,2021,11,0,43,44,1,0,0,18.835024,18.835024,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47,57,5,1,1,0,0,15,1,5,1,519.5,479562.69,271032.88,273575.72,102058.03,0,0,3420.7031 +2524,3140,5493,5492,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.3002577,8.3455286,0,7,-3,-73.525658,0,-9,-9,2021,26,10,38,-9,1,10,0,7.7877612,7.7877612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,52,54.51,10,1,1,0,0,13,1,5,1,519.5,479562.69,271032.88,273575.72,102058.03,0,0,3420.7031 +2525,3141,5494,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.3559,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.25848085,0,32.48,51.46,-9,-9,8.333333333333334,1,1,0,0,8,11,1,1,140,70461.109,0,125237.27,0,-385.25772,0,-10.608955 +2526,3142,5495,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1104.5538,0,3,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,18.91,-9,-9,5,1,1,0,0,0,12,1,0,100,-35419.242,0,0,0,0,0,610.74963 +2527,3143,5496,-9,5497,5498,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.67065,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2527,3143,5497,5498,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5871143,8.5557499,0,7,-15,-83.941811,0,-9,-9,2021,11,1,38,38,1,1,0,17.971874,17.971874,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.91,59.89,6.666666666666667,1,1,0,0,4,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2527,3143,5498,5497,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.4299059,7.4188633,0,7,15,-14.442019,0,3,3,2021,4,0,24,8,1,0,0,7.836319,7.836319,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,54.2,57.49,6.666666666666667,3,4,0,0,9,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2528,3144,5499,-9,5502,5500,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-847.56348,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5500,5502,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.795393,8.8430605,0,9,0,71.114548,0,-9,-9,2021,9,0,45,40,1,0,0,14.688192,14.688192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.9,51.28,54.1,59.11,6.666666666666667,1,1,0,0,10,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5501,-9,5502,5500,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.59534,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5502,5500,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1408691,8.1837187,0,20,0,197.46181,0,3,3,2021,9,0,30,30,1,0,0,12.67744,12.67744,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.9,51.28,8.333333333333334,1,1,0,0,10,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2529,3145,5503,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.2429795,6.396605,0,0,-1113.942,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,5.996839,11.345615,57.8092,0,1,1,0,0,6.1602039,61.79,16.18,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,2051,379224.94,-29812.82,88174.227,0,0,0,2037.6129 +2530,3146,5504,5505,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.6802421,7.6626587,0,13,1,180.21265,0,2,3,2021,9,0,40,52,1,0,0,5.0174704,5.0174704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,46.91,51.8,3.333333333333333,4,2,0,0,10,8,5,1,317.5,946708.25,115511.13,618832.13,58531.586,0,0,5677.6973 +2530,3146,5505,5504,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.8436804,9.6338902,0,13,-1,131.78708,0,2,3,2021,10,0,48,52,1,0,0,38.51889,38.51889,.05,.05,0,0,0,0,0,0,0,0,0,4.2947278,0,46.91,51.8,48.87,58.55,6.666666666666667,4,5,0,0,14,8,5,1,317.5,946708.25,115511.13,618832.13,58531.586,0,0,5677.6973 +2531,3147,5506,-9,5508,5507,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.72229,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2531,3147,5507,5508,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,8.0061674,8.3941317,0,6,10,-38.349934,0,-9,-9,2021,15,3,35,35,1,3,0,13.673184,13.673184,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,5,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2531,3147,5508,5507,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.879169,8.0259733,5.0872493,6,-10,80.613052,0,2,3,2021,1,0,30,30,1,0,0,13.810213,13.810213,0,0,0,0,0,0,0,0,1,1,0,5.0024533,0,57.16,56.15,52.23,55.6,5,1,1,0,0,5,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2532,3148,5509,5510,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.2362537,8.1837683,0,6,-2,-177.53802,0,-9,-9,2021,10,0,37,40,1,1,0,9.7559195,9.7559195,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,44.2,34.95,7,2,3,0,0,1,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2532,3148,5510,5509,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.4944582,8.6872921,0,15,2,49.199707,0,2,1,2021,11,2,38,37,1,2,0,15.899014,15.899014,0,0,0,0,0,0,0,0,1,1,0,2.1104434,0,44.2,34.95,51,56,1.666666666666667,2,3,0,0,8,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2532,3148,5511,-9,5510,5509,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.15942,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2533,3149,5512,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.7763309,8.896307,0,0,0,-936.48596,0,-9,-9,2021,10,0,42,41,1,0,0,14.4851,14.4851,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,600,61637.711,199329.11,0,0,0,0,1870.692 +2534,3150,5513,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.0485816,7.3758316,5.220789,0,0,-1064.6558,0,3,3,2021,10,1,22,20,1,1,0,8.0112648,8.0112648,.05,.05,0,0,0,0,0,0,1,1,0,0,5.3975525,55.84,49.8,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,81,12817.146,-12857.377,203928.45,0,6036.5342,0,-176.83755 +2535,3151,5514,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.0568218,6.6694994,0,0,-994.16437,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9300156,54.69,57.47,-9,-9,10,1,1,0,0,0,11,2,1,496,321414.41,161023.53,176908.75,0,0,0,1291.0267 +2536,3152,5515,5516,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,7,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,26.88,24.2,6.666666666666667,1,1,0,0,12,9,1,1,773.5,272924.34,0,228472.31,0,0,0,0 +2536,3152,5516,5515,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,34,-7,0,0,3,3,2021,23,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.88,24.2,54.2,57.49,3.333333333333333,1,1,0,1,15,9,1,1,773.5,272924.34,0,228472.31,0,0,0,0 +2537,3153,5517,5518,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,6.7092505,7.0389104,0,8,-15,-93.105774,0,2,2,2021,21,8,16,20,1,8,0,5.9739566,5.9739566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.22,60.91,54.79,55.86,8.333333333333334,1,1,0,0,8,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5518,5517,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.8031988,8.3637972,0,8,15,2.6858985,0,-9,-9,2021,11,3,56,84,1,3,0,13.352399,13.352399,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,27.22,60.91,6.666666666666667,1,1,0,0,8,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5519,-9,5517,5518,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6066,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5520,-9,5517,5518,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.3656,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2538,3154,5521,5524,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.4966946,7.472034,0,7,1,41.150711,0,3,2,2021,6,0,40,40,1,0,0,5.5252061,5.5252061,.05,.05,0,0,0,0,0,0,1,1,0,6.479351,0,62.39,56.71,49,56,8.333333333333334,1,1,0,0,8,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5522,-9,5524,5521,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.98029,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5523,-9,5524,5521,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.77515,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5524,5521,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3875337,7.4455733,0,7,-1,27.461887,0,1,2,2021,11,0,25,23,1,1,0,6.4076843,6.4076843,0,0,0,0,0,0,0,0,1,1,0,6.7826147,0,49,56,62.39,56.71,7,1,1,0,0,3,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2539,3155,5525,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.4007406,7.6005712,0,0,-1051.1422,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,4.751915,0,48.878448,0,1,1,0,2.783221,7.9368286,38.48,22.15,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,434,249787.16,270848.19,145539.47,0,0,0,2067.7263 +2540,3156,5526,5527,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4592676,8.6422348,0,9,2,115.46809,0,3,3,2021,10,0,38,38,1,0,0,14.861258,14.861258,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.47,50.48,36.55,49.51,6.666666666666667,1,1,0,0,10,12,4,1,399.5,793292.63,719112.44,131540.52,0,0,0,1903.0361 +2540,3156,5527,5526,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-67.926315,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,36.55,49.51,54.47,50.48,6.666666666666667,1,1,0,0,6,12,4,1,399.5,793292.63,719112.44,131540.52,0,0,0,1903.0361 +2541,3157,5528,-9,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.0645485,8.2373199,0,1,-10,50.315716,0,2,-9,2021,17,6,40,42,1,6,0,10.464792,10.464792,0,0,0,0,0,0,0,42,0,0,0,0,0,42.95,61.24,44.44,55.46,6.666666666666667,1,1,0,1,10,5,4,0,651.5,-80799.203,0,0,0,904.62292,0,1050.1276 +2541,3157,5529,-9,-9,5528,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3681,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,651.5,-80799.203,0,0,0,904.62292,0,1050.1276 +2541,3158,5530,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.2818823,8.2174692,0,1,10,11.506228,-9,-9,-9,2021,12,1,36,0,1,1,0,13.066441,13.066441,0,0,0,0,0,0,0,7,0,0,0,0,0,44.44,55.46,42.95,61.24,6.666666666666667,1,1,0,0,4,5,4,0,685,-34105.668,-88667.234,0,0,0,0,1332.1019 +2542,3159,5531,5533,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.0537901,8.5740309,0,6,4,66.482338,0,3,3,2021,11,0,34,25,1,0,0,12.901492,12.901492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51,56,6.666666666666667,1,1,0,0,7,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5532,-9,5531,5533,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.47864,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5533,5531,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.9144783,8.9961357,0,6,-4,111.16962,0,3,2,2021,12,0,37,37,1,0,0,23.410412,23.410412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,45.91,59.89,1.666666666666667,1,1,0,0,7,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5534,-9,5531,5533,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2543,3160,5535,5536,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.5099568,5.2302189,48,1,35.020996,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6803365,5.4440951,54.96,53.17,63.41,42.4,10,1,1,0,0,5,5,4,1,266,1521664.5,983264.38,376999.06,0,0,0,2779.4932 +2543,3160,5536,5535,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.0508356,8.4890728,48,-1,8.8854761,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7488351,8.4100132,63.41,42.4,54.96,53.17,5,1,1,0,0,0,5,4,1,266,1521664.5,983264.38,376999.06,0,0,0,2779.4932 +2544,3161,5537,-9,5538,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-958.72241,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,1222,-152569.48,34479.906,0,0,0,718.74512,766.14642 +2544,3161,5538,-9,-9,-9,1,0,46,0,1,0,1,1,0,0,3,0,6.4710245,6.4694982,0,0,-918.34314,-9,3,3,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3042459,0,26.95,59.1,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,1222,-152569.48,34479.906,0,0,0,718.74512,766.14642 +2545,3162,5539,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6638412,8.7920828,0,0,0,-988.54938,-9,2,2,2021,11,0,35,0,1,0,0,19.520466,19.520466,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,9,8,5,1,271,1149534.6,711491.06,447815.56,0,0,0,2262.5337 +2546,3163,5540,-9,5541,5544,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1149.0154,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5541,5544,-9,-9,1,0,29,1,3,0,2,2,-9,0,2,7.0131006,7.0661802,0,9,-11,10.883896,0,-9,2,2021,13,1,18,20,1,1,0,6.7462125,6.7462125,0,0,0,0,0,0,0,0,1,1,0,0,0,39.68,53.79,59.8,39.25,5,1,1,0,0,5,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5542,-9,5541,5544,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.90332,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5543,-9,5541,5544,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.2639,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5544,5541,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.290905,8.1427956,0,9,11,.28084874,0,-9,-9,2021,10,0,49,49,1,0,0,8.1153078,8.1153078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.8,39.25,39.68,53.79,6.666666666666667,1,1,0,0,5,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2547,3164,5545,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.3618984,10.008923,7.1934776,0,0,-978.76813,0,2,2,2021,14,3,25,25,1,3,0,56.228981,56.228981,.05,.05,0,0,0,0,0,0,0,0,0,5.6225123,7.166698,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,447.5,361997.47,378986.13,561473.75,205058.09,16828.176,25707.109,4360.0781 +2547,3164,5546,-9,5545,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0062,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,447.5,361997.47,378986.13,561473.75,205058.09,16828.176,25707.109,4360.0781 +2548,3165,5547,5548,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.3145556,6.4638996,49,-2,42.959934,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1496979,6.1761069,32.88,63.12,57.33,53.46,6.666666666666667,1,1,0,0,6,9,2,1,487.5,2231917.3,210713.67,1017134.7,0,0,0,1210.4705 +2548,3165,5548,5547,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.2505012,6.0001111,49,2,71.157318,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2366943,6.2177973,57.33,53.46,32.88,63.12,6.666666666666667,1,1,0,0,4,9,2,1,487.5,2231917.3,210713.67,1017134.7,0,0,0,1210.4705 +2549,3166,5549,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,5.9259825,6.1568503,0,0,-1048.1324,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.8915186,53.89,12.47,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,702,143231.78,138803.25,0,0,0,0,1646.6688 +2549,3167,5550,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.61285,0,-9,-9,2021,25,8,0,0,4,8,0,0,0,0,0,0,1,0,19.791851,0,0,1,1,0,0,0,23.69,23.19,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,350,-139476.45,0,0,0,0,0,694.61926 +2549,3168,5551,-9,-9,5550,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.4797,0,-9,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44,38,-9,-9,0,1,1,0,0,0,12,2,0,438,-26449.475,3932.0381,0,0,1640.1228,0,79.863274 +2550,3169,5552,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,5,0,8.4331226,8.4262934,0,0,-939.14105,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8546038,8.7297306,59.2,35.02,-9,-9,10,1,1,0,0,0,6,5,1,267,955721.5,304693.31,439162.72,0,0,0,3610.7908 +2551,3170,5553,-9,5554,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.04846,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,408.5,-43729.496,0,0,0,0,0,740.42542 +2551,3170,5554,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1038.9711,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,0,408.5,-43729.496,0,0,0,0,0,740.42542 +2552,3171,5555,5557,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,6,-7,98.524803,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.0968881,0,44.49,61.79,66.2,41.05,8.333333333333334,1,1,0,0,0,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3171,5556,-9,5555,5557,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.07495,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3171,5557,5555,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.4691706,8.3543329,0,6,7,-28.705935,0,3,2,2021,6,0,70,80,1,0,0,6.6314058,6.6314058,0,0,0,0,0,0,0,0,1,0,1,8.110899,0,66.2,41.05,44.49,61.79,8.333333333333334,1,1,0,0,8,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3172,5558,-9,5555,5557,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1031.6885,0,2,2,2021,13,1,0,37,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,1,6,5,1,1,520,184451.58,0,0,0,0,0,0 +2552,3173,5559,-9,5555,5557,1,1,19,0,1,0,2,2,-9,0,3,6.3996692,6.3423357,0,0,0,-1044.6348,0,2,2,2021,14,3,12,8,1,3,1,6.3743534,6.3743534,0,0,0,0,0,0,0,0,1,0,1,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,182,-16198.303,19346.033,0,0,0,0,567.57782 +2553,3174,5560,5561,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5769629,7.6105928,0,42,-6,-2.4618139,0,3,2,2021,6,0,23,23,1,0,0,8.1577005,8.1577005,0,0,0,0,0,0,0,0,0,0,0,5.3641238,0,57.16,56.15,60.52,53.2,10,1,1,0,0,11,4,4,1,708,1528183,1202025.4,241602.22,0,0,0,2812.4365 +2553,3174,5561,5560,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.7322822,7.8522129,42,6,60.410366,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.06952,7.9299059,60.52,53.2,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,1,708,1528183,1202025.4,241602.22,0,0,0,2812.4365 +2554,3175,5562,5563,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2346988,7.3481426,23,-8,-14.066641,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.9923515,7.3052382,49.28,50.19,42.28,54.75,8.333333333333334,1,1,0,0,13,10,2,1,715.5,994611.06,298742.69,407420.63,0,0,0,3271.3438 +2554,3175,5563,5562,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.460053,5.4453368,24,8,25.331459,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.4131498,5.4343348,42.28,54.75,49.28,50.19,3.333333333333333,1,1,0,0,15,10,2,1,715.5,994611.06,298742.69,407420.63,0,0,0,3271.3438 +2554,3176,5564,-9,5563,5562,1,1,38,0,0,0,1,1,-9,0,4,7.3438692,7.1608939,0,0,0,-982.98859,0,2,2,2021,11,0,24,30,1,0,0,6.4338078,6.4338078,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,15,10,3,1,490,-88565.836,14016.745,0,0,0,0,2139.825 +2555,3177,5565,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.7687445,7.8226552,0,0,0,-1025.5444,-9,3,3,2021,7,0,40,0,1,0,0,7.4499731,7.4499731,0,0,.05,0,0,0,0,0,1,1,0,6.2458715,0,57.16,56.15,-9,-9,10,1,1,0,0,7,11,3,1,1056,301478.97,13533.701,300501.94,51688.57,0,0,1561.3335 +2556,3178,5566,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1844497,7.0104451,0,0,-926.16583,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.2263474,7.0181813,54.8,22.43,-9,-9,10,1,1,0,0,9,6,2,1,164,469463.03,12403.546,251198.72,0,0,0,591.77625 +2556,3179,5567,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-976.2066,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,3,6,1,1,498,-115092.74,0,0,0,0,0,789.23987 +2557,3180,5568,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-968.9436,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.93,15.34,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,2673,134259.03,0,0,0,0,0,1505.6117 +2558,3181,5569,5570,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.8350358,7.8819642,0,7,8,18.538357,0,2,3,2021,12,1,22,30,1,1,0,12.4225,12.4225,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.94,47.11,40.98,52.59,8.333333333333334,1,1,0,0,3,11,4,1,305.5,328543.72,174352.66,295080.25,0,23915.609,0,3473.7808 +2558,3181,5570,5569,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.949791,8.913764,0,7,-8,69.177116,-9,-9,-9,2021,11,0,40,0,1,0,0,19.223585,19.223585,.05,.05,.05,0,0,0,0,0,0,0,0,6.0791516,0,40.98,52.59,52.94,47.11,6.666666666666667,1,1,0,0,4,11,4,1,305.5,328543.72,174352.66,295080.25,0,23915.609,0,3473.7808 +2559,3182,5571,5572,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.7368822,7.9936175,0,4,3,-35.591793,0,3,2,2021,12,1,20,20,1,1,0,15.26944,15.26944,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.23,32.27,60.03,45.37,8.333333333333334,1,1,0,0,14,10,5,1,847,648825.75,539869.56,167642.75,64987.883,-664.17932,540.22626,7957.3511 +2559,3182,5572,5571,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,9.676096,9.5160313,0,4,-3,112.51984,0,-9,-9,2021,10,0,40,40,1,0,0,42.457779,42.457779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,45.37,45.23,32.27,8.333333333333334,1,1,0,0,3,10,5,1,847,648825.75,539869.56,167642.75,64987.883,-664.17932,540.22626,7957.3511 +2560,3183,5573,5574,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.1852078,7.4290557,10,4,-49.273579,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1002245,7.3788705,57.33,53.46,49.58,54.26,8.333333333333334,1,1,0,0,0,9,3,1,539.5,1115820.4,276252.69,411431.63,0,0,0,2829.0901 +2560,3183,5574,5573,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9787583,6.6930976,10,-4,19.621672,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4177418,6.9223533,49.58,54.26,57.33,53.46,0,1,1,0,0,0,9,3,1,539.5,1115820.4,276252.69,411431.63,0,0,0,2829.0901 +2561,3184,5575,5576,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.650856,8.0381155,0,1,0,-36.507847,-9,-9,-9,2021,8,1,44,0,1,1,0,7.5012145,7.5012145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,49.76,56.93,8.333333333333334,1,1,0,0,1,7,4,0,390,-76149.031,49634.438,0,0,0,0,2583.8823 +2561,3184,5576,5575,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.6607766,7.6625366,0,1,0,71.244682,0,3,2,2021,10,0,60,43,1,0,0,3.6779337,3.6779337,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,58.56,46.45,8.333333333333334,1,1,0,0,8,7,4,0,390,-76149.031,49634.438,0,0,0,0,2583.8823 +2562,3185,5577,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.243753,6.1221981,0,0,-1058.7615,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4264812,6.2110033,45.02,36.14,-9,-9,8.333333333333334,1,1,1,0,3,7,2,1,347,167895.47,0,0,0,0,0,-435.84976 +2562,3186,5578,-9,5577,-9,1,0,32,0,0,0,2,2,-9,0,5,6.5966206,6.6864157,0,0,0,-941.27271,0,2,2,2021,12,2,30,30,1,2,1,2.8165486,2.8165486,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,8742,39931.668,0,0,0,0,0,1140.0784 +2563,3187,5579,5580,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7614808,7.5668006,0,7,0,-46.571388,0,-9,-9,2021,17,5,37,21,1,5,0,6.3859854,6.3859854,.05,.05,0,0,0,0,0,0,0,0,0,2.6534016,0,30.32,59.62,57.16,56.15,5,1,1,0,0,7,11,5,1,444.5,388044,24857.715,323470.63,0,0,0,7019.0889 +2563,3187,5580,5579,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,10.059291,9.6865492,0,7,0,9.2781353,0,3,2,2021,9,0,40,45,1,0,0,46.164429,46.164429,.05,.05,0,0,0,0,0,0,0,0,0,4.8128352,0,57.16,56.15,30.32,59.62,8.333333333333334,1,1,0,0,8,11,5,1,444.5,388044,24857.715,323470.63,0,0,0,7019.0889 +2563,3188,5581,-9,5579,5580,1,1,25,0,0,0,1,1,-9,0,4,9.0502205,8.8006792,0,0,0,-1131.6448,0,2,2,2021,6,0,50,60,1,0,1,17.852661,17.852661,0,0,0,0,0,0,0,0,0,0,0,6.8538609,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,628,0,0,0,0,0,0,3442.3906 +2564,3189,5582,-9,5585,5583,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-850.83057,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5583,5585,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,9.2081442,9.1485233,0,20,6,135.37215,0,1,2,2021,7,0,45,50,1,0,0,23.341576,23.341576,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,43.03,58.4,6.666666666666667,1,1,0,0,15,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5584,-9,5585,5583,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-970.49054,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5585,5583,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,8.6107607,8.5173883,0,20,-6,-24.108967,0,2,-9,2021,12,0,50,50,1,0,0,13.872184,13.872184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.03,58.4,55.87,53.99,6.666666666666667,1,1,0,0,12,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5586,-9,5585,5583,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.00616,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2565,3190,5587,-9,-9,-9,1,1,18,0,0,1,2,0,-9,0,5,0,3.863821,4.0406852,0,0,-987.95154,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.738765,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,2,0,512,2835.6895,0,0,0,0,0,658.92621 +2566,3191,5588,5590,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.9132471,8.9887962,0,7,3,-46.135719,0,-9,-9,2021,7,0,50,46,1,0,0,17.25857,17.25857,.05,.05,0,0,0,0,0,0,1,1,0,6.3712244,0,50.6,51,46.08,57.2,6.666666666666667,1,1,0,0,10,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2566,3191,5589,-9,5590,5588,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.1851,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2566,3191,5590,5588,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.7882261,8.8288155,0,7,-3,44.013901,0,1,1,2021,13,1,10,0,1,1,0,73.138512,73.138512,0,0,0,0,0,0,0,0,1,1,0,.45888022,0,46.08,57.2,50.6,51,6.666666666666667,1,1,0,0,9,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2567,3192,5591,5592,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.7620125,9.9430275,0,6,2,124.61539,0,3,-9,2021,9,0,40,60,1,1,0,48.169434,48.169434,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,52.43,55.57,8,1,1,0,0,1,11,5,1,571,209004.91,74776.75,284196.56,135063.88,0,22305,10211.805 +2567,3192,5592,5591,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.994278,8.0104666,0,6,-2,-49.412384,0,3,3,2021,6,0,40,0,1,0,0,10.25714,10.25714,0,0,0,0,0,0,0,2,0,0,0,2.6124561,0,52.43,55.57,54,54,8.333333333333334,1,1,0,0,3,11,5,1,571,209004.91,74776.75,284196.56,135063.88,0,22305,10211.805 +2568,3193,5593,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4533033,8.6759453,0,0,0,-975.53735,0,3,3,2021,9,1,47,49,1,1,0,9.5628996,9.5628996,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.5,29.75,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,138,530400.31,261565.02,86688.398,118495.77,0,0,1313.0193 +2569,3194,5594,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.5375185,8.5479946,0,0,0,-903.81232,0,2,3,2021,19,7,45,45,1,7,0,12.006986,12.006986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,47.5,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,4014,376145.25,-31020.152,0,0,0,0,1254.1194 +2570,3195,5595,5596,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1310968,8.1331968,0,36,-1,-66.819489,0,2,3,2021,17,5,35,35,1,5,0,9.1276045,9.1276045,0,0,.05,0,0,0,0,42,0,0,0,0,0,48.53,40.95,55,53,8.333333333333334,1,1,0,0,9,12,4,1,615.5,883459.25,402060.16,502923.81,0,0,0,1877.7581 +2570,3195,5596,5595,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.578476,7.5761065,7.354733,36,1,104.4362,0,3,3,2021,8,0,24,30,1,0,0,3.464561,3.464561,0,0,.05,0,0,0,0,0,0,0,0,0,7.0730567,55,53,48.53,40.95,8,1,1,0,0,9,12,4,1,615.5,883459.25,402060.16,502923.81,0,0,0,1877.7581 +2570,3196,5597,-9,5595,5596,1,1,22,0,0,0,2,2,-9,0,5,7.3783698,7.3026366,0,0,0,-899.71997,0,2,3,2021,7,0,20,30,1,0,1,10.054271,10.054271,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,4,12,3,1,1005,145342.33,0,0,0,0,0,1951.8383 +2571,3197,5598,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3661995,8.7583342,0,0,0,-1083.1885,0,2,-9,2021,14,2,60,91,1,2,0,10.084394,10.084394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.65,35.77,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,280,222801.58,267143.41,0,0,0,0,2795.3352 +2572,3198,5599,5601,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.9964018,9.0065069,0,9,-6,29.212149,0,2,2,2021,12,0,77,41,1,0,0,14.377876,14.377876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,61.21,52,55,5,1,1,0,0,11,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2572,3198,5600,-9,5599,5601,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.89099,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2572,3198,5601,5599,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,9.3452129,9.5743561,0,9,6,65.426796,0,2,3,2021,9,0,49,45,1,1,0,41.365913,41.365913,.05,.05,0,0,0,0,0,0,0,0,0,7.5801969,0,52,55,34,61.21,8,1,1,0,0,12,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2573,3199,5602,-9,5606,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1063.8539,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5603,-9,5606,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-910.76166,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5604,-9,5606,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.93219,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5605,-9,5606,-9,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-934.54724,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5606,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1022.7458,-9,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,5,1,1,1,0,5,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2574,3200,5607,5610,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,13,-3,33.687733,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.15,56.92,8.333333333333334,1,1,0,0,2,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5608,-9,5607,5610,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.83307,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5609,-9,5607,5610,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.40265,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5610,5607,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.1378355,9.4773073,0,13,3,104.89306,0,2,2,2021,11,0,45,50,1,0,0,22.970665,22.970665,.05,.05,0,0,0,0,0,0,0,0,0,5.0085096,0,43.15,56.92,54.1,59.11,6.666666666666667,1,1,0,0,10,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2575,3201,5611,5613,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,7.7960706,7.7904258,0,6,-1,146.46422,0,2,3,2021,5,0,22,39,1,0,0,14.005293,14.005293,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.96,53.17,10,1,1,0,0,10,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2575,3201,5612,-9,5611,5613,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.88678,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2575,3201,5613,5611,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.2648869,7.9710674,0,6,1,44.628448,0,-9,-9,2021,9,1,45,43,1,1,0,10.795634,10.795634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,10,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2576,3202,5614,-9,5615,5616,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-986.46362,-9,3,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.29,47.76,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3202,5615,5616,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,10,0,0,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,1,1,1,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3202,5616,5615,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,0,0,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50,49,48,49,7,1,1,1,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3203,5617,-9,5615,5616,1,1,31,0,0,0,2,2,-9,0,5,7.6063738,7.7660851,0,0,0,-900.71277,0,3,2,2021,6,0,30,19,1,0,1,7.2754793,7.2754793,.05,.05,0,0,0,0,0,7,1,1,0,0,0,50.67,44.67,-9,-9,5,1,1,0,0,2,5,3,0,924,18284.512,-158296.16,0,0,0,0,-209.94826 +2577,3204,5618,-9,5619,5621,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-979.40778,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5619,5621,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-7,-59.412853,0,-9,1,2021,7,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,26.99,29.87,6.666666666666667,1,1,0,1,5,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5620,-9,5619,5621,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1054.0438,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5621,5619,-9,-9,1,1,47,0,2,0,2,2,-9,0,1,.64480495,.50632823,0,19,7,37.507076,0,-9,2,2021,31,12,50,30,1,12,0,.0032406719,.0032406719,0,0,0,0,0,0,0,27,1,1,0,0,0,26.99,29.87,51.41,56.15,0,1,1,0,1,10,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2578,3205,5622,5623,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.4029198,6.3434343,7,7,-56.615479,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.89266151,6.2842469,52,48,57.16,56.15,7,1,1,0,0,0,6,3,0,505,173248.53,21717.289,149136.47,0,0,0,3147.5313 +2578,3205,5623,5622,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.9641328,8.1504631,0,30,-7,-8.4064484,0,-9,-9,2021,5,0,32,34,1,0,0,11.697949,11.697949,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,9,6,3,0,505,173248.53,21717.289,149136.47,0,0,0,3147.5313 +2579,3206,5624,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.0475988,8.0318718,0,0,0,-948.54468,0,2,2,2021,9,2,15,15,1,2,0,21.069767,21.069767,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,233,259133.31,50586.082,528925.94,102871.77,10197.075,24936.82,652.80035 +2580,3207,5625,-9,5627,5629,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.3678,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5626,-9,5627,5629,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.9491,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5627,5629,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,19,-5,0,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,38.76,58.16,3.333333333333333,1,1,1,1,8,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5628,-9,5627,5629,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.131,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5629,5627,-9,-9,1,1,47,0,3,0,2,2,-9,0,3,0,0,0,1,5,0,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,45.58,47.97,3.333333333333333,1,1,1,1,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2581,3208,5630,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,7.1250558,7.0967574,0,0,0,-969.18671,0,1,1,2021,12,0,16,14,1,0,0,12.165039,12.165039,0,0,0,0,0,0,0,0,1,1,0,4.9619236,0,61.43,30.11,-9,-9,10,1,1,0,0,8,2,3,1,2646,327414.44,372811.06,0,0,0,0,1282.6954 +2582,3209,5631,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,9.0764532,9.3452997,0,0,0,-984.83893,0,2,2,2021,5,0,47,49,1,0,0,24.662512,24.662512,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,9,7,5,1,2500,248991.89,154107.78,238885.3,140879.97,0,0,3440.366 +2583,3210,5632,5633,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-102.63942,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.25,44.46,64.23,44.69,8.333333333333334,1,1,0,0,0,12,5,1,1395.5,2105114.5,1746540.8,406470.19,0,1607.3639,0,5120.7178 +2583,3210,5633,5632,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,9.1814079,9.3527117,7.7404218,6,1,-57.336094,0,3,2,2021,9,0,35,30,1,0,0,26.480761,26.480761,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4510722,64.23,44.69,47.25,44.46,1.666666666666667,1,1,0,0,7,12,5,1,1395.5,2105114.5,1746540.8,406470.19,0,1607.3639,0,5120.7178 +2584,3211,5634,5635,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.2332034,7.126905,4,-5,-103.22506,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092072,6.9273543,51.83,57.2,56.25,44.4,10,1,1,0,0,0,12,3,1,398.5,788209.56,435957.25,169204.97,0,0,0,3762.1602 +2584,3211,5635,5634,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.5380421,7.9046288,4,5,-31.786764,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1251793,8.0463419,56.25,44.4,51.83,57.2,10,1,1,0,0,0,12,3,1,398.5,788209.56,435957.25,169204.97,0,0,0,3762.1602 +2584,3212,5636,-9,5634,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6036644,8.571846,0,0,0,-858.29065,0,2,-9,2021,6,0,36,36,1,0,0,15.465503,15.465503,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,780,292472.59,0,99815.57,45714.695,0,320.3584,1803.8403 +2585,3213,5637,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.5917816,8.5359325,0,0,0,-984.87433,0,1,2,2021,2,0,60,60,1,0,0,13.803955,13.803955,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,1802,659274.31,376841.75,90130.969,60983.387,3339.3411,0,3456.553 +2586,3214,5638,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.0813494,6.9551992,0,0,-945.19781,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8370519,7.5013752,51.83,57.2,-9,-9,10,1,1,0,0,0,1,3,1,1240,143566.67,202035.11,0,0,0,0,1390.7424 +2587,3215,5639,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8887377,5.7860608,0,0,-933.07391,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9042726,48.86,46.27,-9,-9,6.666666666666667,1,1,0,0,11,9,2,0,1914,446026.44,89302.766,220313.53,0,0,646.6568,716.72803 +2588,3216,5640,5641,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6108427,8.4702711,0,33,2,0,0,3,1,2021,7,0,50,50,1,0,0,14.014221,14.014221,.05,.05,0,0,0,0,0,0,0,0,0,5.0430255,0,57.16,56.15,51.83,57.2,10,1,1,0,0,8,9,5,1,2156,1139000,692591.56,404709.88,92170.219,14852.339,0,4797.5103 +2588,3216,5641,5640,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8419018,8.6944704,0,32,-2,0,0,1,1,2021,8,0,24,24,1,0,0,29.915598,29.915598,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,2156,1139000,692591.56,404709.88,92170.219,14852.339,0,4797.5103 +2589,3217,5642,5643,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.692874,5.0768709,38,5,33.321392,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5904846,38.46,24.51,39.25,42.33,8.333333333333334,1,1,0,0,3,9,2,0,416.5,393025.88,68797.289,217049.59,0,0,0,2090.8181 +2589,3217,5643,5642,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,6.3344426,6.6269822,0,38,-5,80.635651,0,3,2,2021,15,3,11,11,1,3,0,5.4822283,5.4822283,0,0,0,0,0,0,0,42,1,1,0,6.2860594,0,39.25,42.33,38.46,24.51,3.333333333333333,1,1,0,0,11,9,2,0,416.5,393025.88,68797.289,217049.59,0,0,0,2090.8181 +2589,3218,5644,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.2923403,8.4571733,0,0,0,-1119.5948,-9,-9,-9,2021,13,5,40,0,1,5,0,11.99231,11.99231,0,0,0,0,0,0,0,27,1,1,0,0,0,48,50,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,491,266867.66,0,239561.06,80860.102,0,4205.689,1361.3774 +2590,3219,5645,5646,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3635216,8.1069202,0,11,-2,108.0764,0,-9,-9,2021,12,0,37,25,1,0,0,10.0716,10.0716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,45.39,52.08,6.666666666666667,1,1,0,0,13,9,5,1,906.5,387828.56,291871.88,378065.75,224313.88,0,10114.602,4451.3271 +2590,3219,5646,5645,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.0044613,9.1172915,0,11,2,-114.65903,0,3,2,2021,17,5,37,37,1,5,0,28.223236,28.223236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.39,52.08,40.65,57.36,6.666666666666667,1,1,0,0,12,9,5,1,906.5,387828.56,291871.88,378065.75,224313.88,0,10114.602,4451.3271 +2591,3220,5647,5648,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,6,1,-49.243809,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.49,50.46,32.68,35.19,10,1,1,0,0,0,1,2,1,421,665498.25,302939.22,204685.38,0,0,0,1156.677 +2591,3220,5648,5647,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.785665,7.0186877,6,-1,-7.2038794,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8648319,32.68,35.19,54.49,50.46,3.333333333333333,1,1,0,0,0,1,2,1,421,665498.25,302939.22,204685.38,0,0,0,1156.677 +2592,3221,5649,5650,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,6.4073243,7.6050286,7.2565155,35,10,45.437397,0,3,2,2021,9,0,15,15,1,0,0,5.0499525,5.0499525,0,0,0,0,0,0,0,0,1,1,0,4.097044,7.3973784,63.1,33.51,54.2,57.49,8.333333333333334,1,1,0,0,10,8,5,1,707,1155793.8,339733.94,796650.63,0,0,0,6242.1045 +2592,3221,5650,5649,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2260084,9.0359859,0,8,-10,-75.543182,0,-9,-9,2021,6,0,15,15,1,0,0,62.71833,62.71833,0,0,0,0,0,0,0,0,1,1,0,1.9914811,0,54.2,57.49,63.1,33.51,8.333333333333334,2,3,0,0,9,8,5,1,707,1155793.8,339733.94,796650.63,0,0,0,6242.1045 +2592,3222,5651,-9,5650,5649,1,0,28,0,0,0,2,2,-9,0,2,7.6217337,7.6659021,0,0,0,-1110.7345,0,1,1,2021,12,0,32,40,1,0,1,7.5001292,7.5001292,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,27.8,-9,-9,5,4,2,0,0,5,8,3,1,1523,-99802.867,0,0,0,0,0,438.4841 +2592,3223,5652,-9,5650,5649,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-974.98181,1,1,1,2021,12,0,0,50,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6954014,0,45.91,59.89,-9,-9,5,4,2,0,0,3,8,1,1,897,195413.09,0,0,0,0,0,50.156052 +2593,3224,5653,5654,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.8405256,7.789784,45,2,9.3369989,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9445682,62.39,56.71,57.16,56.15,10,1,1,0,0,5,12,3,1,569,440351.13,288227.31,316780.13,0,0,0,2706.293 +2593,3224,5654,5653,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-2,31.030807,-9,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,12,3,1,569,440351.13,288227.31,316780.13,0,0,0,2706.293 +2594,3225,5655,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.1493478,6.1083732,0,0,-1032.715,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5763092,6.4351668,19.22,38.75,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,322,390376.25,-24179.033,174664.53,0,0,0,548.81793 +2595,3226,5656,-9,-9,-9,1,0,20,2,4,0,2,2,-9,0,4,7.2347393,7.2189159,0,0,0,-765.771,-9,2,-9,2021,3,1,35,0,1,1,1,4.2696943,4.2696943,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,-9,-9,10,1,1,0,0,1,1,3,0,742.5,0,0,0,0,0,0,2137.8279 +2595,3226,5657,-9,5656,-9,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.1945,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,3,0,742.5,0,0,0,0,0,0,2137.8279 +2596,3227,5658,5660,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6946158,7.7351389,0,15,-1,-27.998962,0,-9,-9,2021,12,1,32,32,1,1,0,8.2059526,8.2059526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.12,63.98,59.6,46.99,6.666666666666667,1,1,0,0,13,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2596,3227,5659,-9,5658,5660,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9979,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2596,3227,5660,5658,-9,-9,1,1,41,0,1,0,2,2,-9,1,3,9.0813913,9.01513,0,15,1,-134.93736,0,2,3,2021,6,0,35,35,1,0,0,23.188976,23.188976,.05,.05,0,0,0,0,0,2,1,1,0,0,0,59.6,46.99,31.12,63.98,8.333333333333334,1,1,0,0,11,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2597,3228,5661,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,7.933475,7.3645425,0,0,-935.2514,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3046288,7.6404524,49.24,50.29,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,294,726976.13,74838.273,225739.47,0,0,0,2216.2896 +2598,3229,5662,5665,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,13,-26,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.82,46.44,10,2,3,0,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5663,-9,5662,5665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.73035,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5664,-9,5662,5665,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.93274,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5665,5662,-9,-9,1,1,70,0,2,0,3,3,-9,0,3,0,0,0,13,26,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.82,46.44,57.33,53.46,10,2,3,0,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2599,3230,5666,-9,5669,5667,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.20526,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5667,5669,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,8.0245132,8.2827082,0,11,5,-16.946518,0,-9,-9,2021,7,0,40,43,1,0,0,8.3974676,8.3974676,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.59,41.05,49.44,56.93,8.333333333333334,1,1,0,0,11,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5668,-9,5669,5667,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.3214,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5669,5667,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,8.1556568,8.2026615,0,11,-5,-31.685322,0,2,2,2021,9,0,26,40,1,0,0,14.768124,14.768124,.05,.05,0,0,0,0,0,0,0,0,0,.40824214,0,49.44,56.93,60.59,41.05,8.333333333333334,1,1,0,0,11,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2600,3231,5670,5671,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.411099,7.0801468,0,12,1,42.991383,0,3,3,2021,11,0,20,35,1,0,0,7.8208199,7.8208199,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,49.77,37.41,57.36,8.333333333333334,1,1,0,0,12,12,3,0,307,1241418.5,869450.13,242790.88,0,0,0,1886.1775 +2600,3231,5671,5670,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.4185753,7.5185552,0,12,-1,6.3654938,0,3,3,2021,15,3,40,22,1,3,0,4.2823677,4.2823677,0,0,0,0,0,0,0,0,0,0,0,0,0,37.41,57.36,46.8,49.77,8.333333333333334,1,1,0,0,12,12,3,0,307,1241418.5,869450.13,242790.88,0,0,0,1886.1775 +2601,3232,5672,5673,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3476868,8.3848057,0,16,0,-54.002296,0,2,2,2021,6,0,37,37,1,0,0,14.247826,14.247826,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,280.5,245578.53,75831.836,268812.06,82647.953,8004.5645,1311.8213,4287.6743 +2601,3232,5673,5672,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.7158241,8.8542614,0,16,0,-150.12329,0,2,2,2021,7,0,37,39,1,0,0,22.14467,22.14467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,280.5,245578.53,75831.836,268812.06,82647.953,8004.5645,1311.8213,4287.6743 +2602,3233,5674,5675,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1300974,8.0721655,9,1,18.97529,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1002326,7.891511,57.16,56.15,48.14,42.69,10,1,1,0,0,0,11,3,1,1359.5,963364.25,772155.19,201246.02,0,9466.8564,0,3445.23 +2602,3233,5675,5674,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8852048,6.2685037,9,-1,134.94968,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8586466,6.2829909,48.14,42.69,57.16,56.15,10,1,1,0,0,1,11,3,1,1359.5,963364.25,772155.19,201246.02,0,9466.8564,0,3445.23 +2603,3234,5676,5677,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.830945,9.0275249,0,12,-2,-51.328976,0,-9,-9,2021,7,0,65,70,1,0,0,15.641975,15.641975,.05,.05,0,0,0,0,0,0,0,0,0,.13471931,0,57.57,49.69,53.62,48.74,5,1,1,0,0,11,4,5,1,1279,2214034.5,1714513.3,319749.13,21074.398,-57.97348,0,3770.0615 +2603,3234,5677,5676,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7275186,7.5048971,0,31,2,61.90984,0,3,3,2021,11,0,24,8,1,0,0,11.268276,11.268276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.62,48.74,57.57,49.69,8.333333333333334,1,1,0,0,9,4,5,1,1279,2214034.5,1714513.3,319749.13,21074.398,-57.97348,0,3770.0615 +2604,3235,5678,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,8.0943336,8.2900114,0,0,-949.59827,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,5.8347292,7.3226571,42.122047,0,1,1,0,6.888751,7.884306,51.31,22.46,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,638,584148.44,271862.72,161431.48,0,0,0,2723.2007 +2605,3236,5679,5680,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,7.569747,7.4833875,0,1,3,-222.97861,-9,-9,-9,2021,12,1,22,0,1,1,0,10.787126,10.787126,.05,.05,0,0,0,0,0,0,1,1,0,.9922967,0,47.52,33.82,59.43,58.05,6.666666666666667,1,1,0,0,11,11,3,0,135.5,267067.09,94439.594,98111.273,6744.1567,0,-509.19852,1961.384 +2605,3236,5680,5679,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,7.6042895,7.7804055,0,1,-3,-11.52497,-9,2,2,2021,6,0,33,0,1,0,0,6.8289223,6.8289223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,47.52,33.82,8.333333333333334,1,1,0,0,11,11,3,0,135.5,267067.09,94439.594,98111.273,6744.1567,0,-509.19852,1961.384 +2606,3237,5681,5682,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.0454826,6.0636678,11,8,-26.820572,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,3.034306,0,0,1,1,0,6.4589653,5.8221436,41.86,46.88,32.4,58.07,6.666666666666667,1,1,0,0,5,9,2,1,940.5,732139.25,270588.88,430529.66,0,0,0,1489.6345 +2606,3237,5682,5681,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.7592669,6.6546121,11,-8,25.373346,0,2,3,2021,12,1,0,40,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2506895,6.6250849,32.4,58.07,41.86,46.88,8.333333333333334,1,1,0,0,11,9,2,1,940.5,732139.25,270588.88,430529.66,0,0,0,1489.6345 +2607,3238,5683,-9,5686,5687,1,1,10,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1024.3063,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5684,-9,5686,5687,1,1,16,0,6,1,3,0,-9,0,3,0,0,0,0,0,-939.78052,-9,2,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,47.3,-9,-9,5,1,1,0,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5685,-9,5686,5687,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-899.27008,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5686,5687,-9,-9,1,0,31,0,6,0,2,2,-9,1,3,8.1068096,8.4573298,0,7,-13,18.94536,0,1,1,2021,22,10,44,37,1,10,0,8.9437237,8.9437237,0,0,0,0,0,0,0,0,1,1,0,0,0,27.6,62.81,39.08,41.75,1.666666666666667,1,1,0,0,9,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5687,5686,-9,-9,1,1,44,0,6,0,1,1,-9,0,2,6.9284682,6.5936832,3.7393525,7,13,54.758125,0,2,2,2021,12,0,10,0,1,0,0,10.322289,10.322289,0,0,0,0,0,0,0,0,1,1,0,2.9323151,0,39.08,41.75,27.6,62.81,3.333333333333333,1,1,0,0,1,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5688,-9,5686,5687,1,0,6,0,6,1,3,0,-9,0,4,0,0,0,0,0,-982.81763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5689,-9,5686,5687,1,1,12,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1027.1493,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5690,-9,5686,5687,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1007.8708,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2608,3239,5691,5692,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.811398,7.6702623,0,4,9,-27.484001,0,3,3,2021,20,8,28,23,1,8,0,8.8765039,8.8765039,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,33.65,57.96,40.18,52.86,3.333333333333333,1,1,0,0,13,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2608,3239,5692,5691,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,7.3620152,8.0137911,0,4,0,9.7971525,0,-9,-9,2021,10,4,30,35,1,4,0,5.9754558,5.9754558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.18,52.86,33.65,57.96,6.666666666666667,1,1,0,1,3,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2608,3239,5693,-9,5691,5692,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1154.6276,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4707489,0,46.43,60.43,-9,-9,8.333333333333334,1,1,0,0,0,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2609,3240,5694,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,9.2983532,9.2671127,0,0,0,-963.69678,0,2,-9,2021,10,0,50,40,1,0,0,26.791918,26.791918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,293,554077.5,141034.42,170280.09,117983.13,12454.282,0,4106.2778 +2610,3241,5695,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.3134079,8.6577883,0,0,-1063.2113,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8482976,8.3296766,55,46.59,-9,-9,10,1,1,0,0,7,7,4,1,613,1604651.1,793541.13,618967.69,0,0,0,2060.3601 +2611,3242,5696,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7761278,7.6034746,0,0,0,-1019.6198,0,2,2,2021,10,0,38,38,1,0,0,5.5633349,5.5633349,.05,.05,0,0,0,0,0,0,1,1,0,.018123703,0,45.34,41.21,-9,-9,8.333333333333334,1,1,0,1,12,11,3,0,151,-128845.7,-93940.398,0,0,0,0,1272.1709 +2612,3243,5697,5698,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5524788,8.5876465,0,33,-13,28.396669,0,2,1,2021,3,0,42,24,1,0,0,12.033048,12.033048,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,44.15,53.99,48.04,6.666666666666667,3,4,0,0,8,8,4,1,335,2206159,810582.94,610028.25,0,0,0,2311.5554 +2612,3243,5698,5697,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,4.303544,4.521203,33,13,-117.0995,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,9.332551,0,0,1,1,0,0,4.8645372,53.99,48.04,59.54,44.15,6.666666666666667,3,4,0,0,0,8,4,1,335,2206159,810582.94,610028.25,0,0,0,2311.5554 +2612,3244,5699,-9,5697,5698,1,0,28,0,0,0,1,1,-9,0,3,8.2148418,8.0817156,0,0,0,-1022.7511,0,2,1,2021,10,0,48,16,1,0,1,7.5513864,7.5513864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,-9,-9,8.333333333333334,3,4,0,0,5,8,4,1,317,60464.039,-46748.508,0,0,28375.42,1045.588,1029.6926 +2613,3245,5700,5701,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,35,-12,-2.908921,-9,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,34.42,54.78,34.44,8.333333333333334,3,4,1,1,9,8,2,1,756.5,884549.13,77440.031,755636.13,0,0,0,1520.2701 +2613,3245,5701,5700,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.4666262,7.0114651,35,12,-109.03762,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,.78317553,0,27.655134,120,1,1,0,0,6.9921751,54.78,34.44,40.38,34.42,8.333333333333334,3,4,0,1,0,8,2,1,756.5,884549.13,77440.031,755636.13,0,0,0,1520.2701 +2614,3246,5702,-9,5704,5703,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1084.0393,-9,3,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.36,41.86,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2614,3246,5703,5704,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.163578,8.4468498,0,6,6,1.534903,0,3,3,2021,9,0,37,45,1,0,0,14.925443,14.925443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.25,32.43,50.68,28.49,6.666666666666667,1,1,0,0,7,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2614,3246,5704,5703,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.7601733,8.0032415,0,6,-6,-119.65099,0,2,2,2021,12,1,30,37,1,1,0,9.8732777,9.8732777,0,0,0,0,0,0,0,0,1,1,0,0,0,50.68,28.49,62.25,32.43,3.333333333333333,1,1,0,1,7,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2615,3247,5705,-9,5706,5707,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-919.91614,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54696,0,31.05,61.73,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3247,5706,5707,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,8.1699457,8.6509123,0,26,-6,9.2744131,0,2,2,2021,3,0,40,40,1,0,0,12.790092,12.790092,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.72,55.58,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3247,5707,5706,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.3631945,9.6682186,0,25,6,124.94463,0,2,2,2021,9,0,45,98,1,0,0,33.526016,33.526016,.05,.05,.05,0,0,0,0,0,0,0,0,3.7530925,0,54.2,57.49,52.72,55.58,8.333333333333334,1,1,0,0,13,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3248,5708,-9,5706,5707,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1022.1119,-9,1,1,2021,7,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.45439422,0,41.2,62.39,-9,-9,8.333333333333334,1,1,1,0,4,7,1,1,296,171071.38,0,0,0,0,0,-249.8392 +2615,3249,5709,-9,5706,5707,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1066.9813,-9,1,1,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.35348257,0,32.58,60.74,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,887,-35942.945,0,0,0,0,0,-50.318127 +2616,3250,5710,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1048.528,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.74,13.23,-9,-9,10,1,1,0,0,0,4,1,1,220,6795.1802,0,0,0,0,0,1643.2091 +2617,3251,5711,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.4724064,7.3536754,0,0,-967.49146,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.2464848,7.4109864,54,46,-9,-9,8,2,3,0,0,0,8,3,1,638,838217,72230.492,455993.03,0,0,0,3423.0171 +2618,3252,5712,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,4,0,6.4295306,6.9085245,0,0,-956.03571,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6870785,6.4982634,69.31,34.17,-9,-9,10,1,1,0,0,0,10,2,1,365,450735.44,217982.02,331526.84,0,0,0,2097.7778 +2619,3253,5713,5714,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,35,-7,102.89191,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0453873,0,60.54,42.81,59.31,49.81,8.333333333333334,2,3,0,0,0,9,3,1,832,1701724.8,773925.38,499771,0,0,1582.9459,1819.7883 +2619,3253,5714,5713,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.152709,8.2250652,35,7,-68.405266,0,2,2,2021,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8430868,7.6270924,59.31,49.81,60.54,42.81,8.333333333333334,1,1,0,0,12,9,3,1,832,1701724.8,773925.38,499771,0,0,1582.9459,1819.7883 +2620,3254,5715,5716,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7688599,8.6303997,0,30,-2,-3.0210583,0,2,2,2021,10,0,27,24,1,0,0,22.848827,22.848827,0,0,0,0,0,0,0,0,0,0,0,3.3985732,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,386,1739198.8,1529331,264320.19,110993.41,3127.5142,0,4651.0127 +2620,3254,5716,5715,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.5735197,7.3678417,0,30,2,-16.07431,0,2,2,2021,9,0,65,60,1,0,0,2.4776275,2.4776275,.05,.05,0,0,0,0,0,7,0,0,0,8.6457348,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,9,4,5,1,386,1739198.8,1529331,264320.19,110993.41,3127.5142,0,4651.0127 +2620,3255,5717,-9,5715,5716,1,1,22,0,0,0,1,1,1,0,3,8.0428391,8.1804514,0,0,0,-903.29675,-9,1,2,2021,11,1,42,0,1,1,1,8.6712065,8.6712065,.05,.05,0,0,0,0,0,0,0,0,0,4.7995477,0,50.2,52.61,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,1422,-1840.8881,-33976.121,0,0,0,0,2112.9148 +2621,3256,5718,-9,5719,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.78656,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,643.5,-6405.2222,128448.98,0,0,0,0,1640.665 +2621,3256,5719,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.8578129,8.1104336,0,0,0,-955.61102,0,-9,2,2021,7,0,23,30,1,0,0,19.448225,19.448225,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.27,55.11,-9,-9,8.333333333333334,1,1,0,1,8,2,4,1,643.5,-6405.2222,128448.98,0,0,0,0,1640.665 +2621,3257,5720,-9,5719,-9,1,1,22,0,1,0,2,2,-9,0,4,8.6189899,8.6059008,0,0,0,-999.8822,0,1,-9,2021,11,0,66,0,1,0,1,11.738723,11.738723,0,0,0,0,0,0,0,0,1,1,0,0,0,49.08,49.28,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,1361,-75438.844,-53601.313,0,0,0,0,3175.9836 +2622,3258,5721,5722,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,7.79036,7.8122211,6,-3,-1.2397516,0,3,3,2021,15,5,0,28,4,5,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.2824798,7.7654333,58.3,52.91,33.04,29.73,8.333333333333334,1,1,0,0,7,12,3,1,394,1196263,796909.06,126473.86,0,0,0,2010.8632 +2622,3258,5722,5721,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,4.378696,4.5860019,6,3,-17.851667,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7809458,5.0644736,33.04,29.73,58.3,52.91,6.666666666666667,1,1,0,0,3,12,3,1,394,1196263,796909.06,126473.86,0,0,0,2010.8632 +2623,3259,5723,-9,5724,-9,1,1,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1025.2762,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,1,0,1421.5,80061.633,0,0,0,0,0,856.53064 +2623,3259,5724,-9,-9,-9,1,0,21,1,0,0,2,2,-9,0,5,0,0,0,0,0,-969.24725,0,-9,-9,2021,12,2,0,35,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,-9,-9,10,1,1,1,0,2,1,1,0,1421.5,80061.633,0,0,0,0,0,856.53064 +2624,3260,5725,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,6.2031622,8.8786077,8.9286613,0,0,-1047.6389,0,2,1,2021,8,0,40,40,1,0,0,1.1888176,1.1888176,.05,.05,0,0,0,0,0,0,0,0,0,6.0626597,8.2556591,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,624,690365.13,60588.832,292944.63,0,0,0,3658.0608 +2625,3261,5726,5727,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.6860304,9.6204596,0,4,6,-39.989883,0,-9,-9,2021,7,0,60,58,1,0,0,27.04245,27.04245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,49.76,56.93,8.333333333333334,1,1,0,0,3,8,5,0,360,1429244.4,1180488.8,625840.06,467833.84,0,0,7142.4834 +2625,3261,5727,5726,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5329962,8.0809679,0,4,-6,37.090355,0,2,1,2021,12,0,37,36,1,0,0,13.473171,13.473171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,45.82,54.57,8.333333333333334,1,1,0,0,10,8,5,0,360,1429244.4,1180488.8,625840.06,467833.84,0,0,7142.4834 +2626,3262,5728,5729,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.7858024,8.1656828,6,3,-64.462097,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2055216,8.0912733,55.3,55.6,43.61,46.08,8.333333333333334,1,1,0,0,4,9,3,1,328.5,1222091.8,749428.5,451796.94,0,0,0,3351.0291 +2626,3262,5729,5728,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.5179858,6.9219522,6,-3,-155.20264,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8251889,6.5814924,43.61,46.08,55.3,55.6,8.333333333333334,1,1,0,0,2,9,3,1,328.5,1222091.8,749428.5,451796.94,0,0,0,3351.0291 +2627,3263,5730,5731,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,50,-1,-3.1763432,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8645844,0,50.57,53.56,38.88,37.91,8.333333333333334,1,1,0,0,0,4,3,1,686,1050925,381554.59,267134.44,0,0,0,2084.3652 +2627,3263,5731,5730,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.7660971,7.6333771,50,1,-142.61586,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,29.668999,0,0,1,1,0,3.4991419,7.8319745,38.88,37.91,50.57,53.56,8.333333333333334,1,1,0,0,0,4,3,1,686,1050925,381554.59,267134.44,0,0,0,2084.3652 +2628,3264,5732,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.9393101,7.3625412,0,0,-1008.3097,-9,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0724883,7.534946,45.12,62.24,-9,-9,10,2,3,0,0,0,8,2,1,522,389432.28,114504.97,284910.19,0,0,0,1819.4879 +2629,3265,5733,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.7871366,6.2815771,0,0,-956.19324,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8282776,34.15,27.84,-9,-9,10,1,1,0,0,4,12,2,1,245,27629.174,20050.604,0,0,0,0,-69.620529 +2630,3266,5734,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.6573496,8.8992968,0,0,0,-1099.2487,0,2,2,2021,6,0,35,35,1,0,0,25.207777,25.207777,0,0,.05,0,0,0,0,0,0,0,0,3.722832,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,6,9,5,0,597,227392.78,-90940.695,320072.5,260979.33,0,0,2770.2695 +2631,3267,5735,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.5890393,7.8384876,0,0,-838.81958,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7143948,7.7817659,62.4,42.8,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,850,1096595.1,617668.5,419712.16,0,13560.16,0,1762.2507 +2632,3268,5736,-9,5737,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.2561,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,365.5,326366.25,-52437.762,0,0,0,0,2238.8374 +2632,3268,5737,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.6980371,8.472765,0,0,0,-1048.4435,0,2,2,2021,21,8,40,40,1,8,0,12.752581,12.752581,.05,.05,0,0,0,0,0,7,1,1,0,0,0,27.73,64.27,-9,-9,3.333333333333333,4,2,0,1,9,8,4,0,365.5,326366.25,-52437.762,0,0,0,0,2238.8374 +2633,3269,5738,5739,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,11,2,35.317467,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64,38.07,60.86,50.49,10,1,1,0,0,0,13,2,1,563.5,722545.88,104020.14,384161.5,0,0,0,1867.0754 +2633,3269,5739,5738,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.026608,7.0889626,11,-2,-3.5522313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9944077,60.86,50.49,64,38.07,10,1,1,0,0,0,13,2,1,563.5,722545.88,104020.14,384161.5,0,0,0,1867.0754 +2634,3270,5740,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,6.8929167,8.1423292,7.9316874,0,0,-906.07715,0,3,2,2021,19,8,7,14,1,8,0,27.663719,27.663719,0,0,0,0,0,0,0,0,1,1,0,7.6619368,7.9338183,34.85,37.9,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,367,411902.63,0,378570.16,38927.465,0,465.05649,2699.553 +2635,3271,5741,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.0505781,7.0080996,0,0,-1037.6124,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,17.384945,0,0,1,1,0,0,6.7798786,55,45,-9,-9,8,1,1,0,0,0,11,2,1,676,318350.34,132159.88,145604.98,0,0,0,1051.2734 +2636,3272,5742,5743,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6912165,8.3381739,0,28,0,-38.679455,0,3,3,2021,11,0,37,36,1,0,0,19.387854,19.387854,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.65,53.71,47.94,53.79,6.666666666666667,1,1,0,0,10,7,5,1,300,513656.06,222167.5,458025.16,213704.16,0,0,15618.185 +2636,3272,5743,5742,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,9.7140188,9.4550095,0,28,0,-.49650475,0,3,3,2021,10,0,20,25,1,0,0,89.263092,89.263092,0,0,0,0,0,0,0,0,0,0,0,0,0,47.94,53.79,50.65,53.71,8.333333333333334,1,1,0,0,10,7,5,1,300,513656.06,222167.5,458025.16,213704.16,0,0,15618.185 +2637,3273,5744,5745,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.106328,7.9144263,0,2,-3,76.499435,0,-9,-9,2021,22,7,37,37,1,7,0,8.8295908,8.8295908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.49,55.78,57.16,56.15,5,1,1,0,0,3,10,5,1,970,-22540.537,-32511.971,0,0,52266.039,0,2355.697 +2637,3273,5745,5744,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5208511,8.4819489,0,2,3,-78.603615,0,-9,-9,2021,8,0,45,40,1,0,0,11.265727,11.265727,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.49,55.78,8.333333333333334,1,1,0,0,10,10,5,1,970,-22540.537,-32511.971,0,0,52266.039,0,2355.697 +2638,3274,5746,5747,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,0,0,45,8,-12.099098,0,-9,3,2021,8,0,0,70,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6405425,0,57.16,56.15,51.67,60.18,8.333333333333334,1,1,0,0,9,10,2,0,891,404045,279855.13,236183.09,0,0,0,3972.8604 +2638,3274,5747,5746,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.0424986,7.1696124,45,-8,35.229618,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9561911,7.2706814,51.67,60.18,57.16,56.15,8.333333333333334,1,1,0,0,3,10,2,0,891,404045,279855.13,236183.09,0,0,0,3972.8604 +2639,3275,5748,5751,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,9.5863342,9.2567759,0,3,10,46.155441,-9,-9,-9,2021,16,4,60,0,1,4,0,23.588419,23.588419,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,54.1,59.11,8.333333333333334,1,1,0,0,9,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5749,-9,5751,5748,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2101,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5750,-9,5751,5748,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.18134,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5751,5748,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.9430146,7.8914618,0,3,-10,192.57782,-9,3,2,2021,8,0,18,0,1,0,0,15.456022,15.456022,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.46,54.85,8.333333333333334,1,1,0,0,5,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2640,3276,5752,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.1942,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.66,39.97,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,559,155699.61,0,0,0,0,0,1294.5703 +2641,3277,5753,-9,5755,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.4498,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2641,3277,5754,-9,5755,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0991,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2641,3277,5755,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,6.9201188,6.993556,0,0,0,-1019.4003,0,1,1,2021,11,0,25,0,1,0,0,5.0046096,5.0046096,0,0,0,0,0,0,0,27,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2642,3278,5756,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.325,0,3,3,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,2,11,1,0,1622,229079.81,0,0,0,0,-645.73279,279.78 +2642,3279,5757,-9,5756,-9,1,0,29,0,0,0,3,3,-9,0,4,7.8278108,8.0195446,0,0,0,-1018.5726,0,3,-9,2021,11,0,38,38,1,0,1,8.5075521,8.5075521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,6,11,3,0,1038,13051.292,31566.725,0,0,4656.9424,0,989.20172 +2643,3280,5758,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.0842047,9.2542038,0,0,0,-926.56085,0,3,2,2021,9,0,40,40,1,0,0,30.938684,30.938684,.05,.05,0,0,0,0,0,0,0,0,0,6.9258461,0,59.56,43.01,-9,-9,6.666666666666667,2,3,0,0,12,9,5,1,907,1010954.9,211187.61,782013.25,0,0,0,3634.6377 +2644,3281,5759,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.3509655,6.2045417,0,0,-1018.8423,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1803408,55.2,41.97,-9,-9,6.666666666666667,1,1,0,1,8,1,2,1,1791,231835.91,-60206.148,194047.89,0,0,1033.4982,67.107353 +2645,3282,5760,5761,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.6530647,9.3613815,0,18,-14,-121.3927,0,2,1,2021,9,1,37,37,1,1,0,43.012257,43.012257,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,51.98,51.67,8,1,1,0,0,15,7,5,0,382.5,1110446.4,583275.5,601131.38,49209.555,0,0,6221.2266 +2645,3282,5761,5760,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.1498051,8.2566071,0,18,14,4.7699924,-9,3,3,2021,8,0,35,0,1,0,0,12.866986,12.866986,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.98,51.67,51,56,8.333333333333334,1,1,0,0,15,7,5,0,382.5,1110446.4,583275.5,601131.38,49209.555,0,0,6221.2266 +2646,3283,5762,5763,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,8.4780054,8.6274204,0,8,-1,-3.3529336,0,2,3,2021,7,1,38,40,1,1,0,13.173148,13.173148,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,58.89,48.6,8.333333333333334,1,1,0,0,11,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2646,3283,5763,5762,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,7.9927025,7.9669609,0,8,1,82.237572,0,-9,-9,2021,8,0,46,47,1,0,0,10.152405,10.152405,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,51.73,58.82,8.333333333333334,1,1,0,0,15,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2646,3283,5764,-9,5762,5763,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.86969,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2647,3284,5765,-9,5766,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1015.946,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,1599.5,-85855.297,-7354.6421,41905.039,8483.7295,0,2253.5757,2491.3965 +2647,3284,5766,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,3,7.5535102,7.5722995,0,0,0,-1090.9229,0,2,2,2021,8,0,30,36,1,0,0,8.5253716,8.5253716,0,0,0,0,0,0,0,27,1,1,0,0,0,46.09,49.17,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1599.5,-85855.297,-7354.6421,41905.039,8483.7295,0,2253.5757,2491.3965 +2647,3285,5767,-9,5766,-9,1,1,19,0,1,0,2,2,-9,0,4,6.6783156,6.6029472,0,0,0,-892.45935,0,2,-9,2021,13,2,32,33,1,2,1,2.4761155,2.4761155,.05,.05,0,0,0,0,0,0,1,1,0,7.3379645,0,41.37,58.08,-9,-9,3.333333333333333,1,1,0,0,3,13,2,1,638,-156607.27,-5083.4229,0,0,0,0,509.85779 +2648,3286,5768,5769,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.2899718,6.5441875,52,2,-13.009829,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6782761,6.3899827,59.06,35.36,44.53,54.03,10,1,1,0,0,0,6,3,1,972.5,495893.38,446092.56,82577.359,0,5095.9355,0,5350.7002 +2648,3286,5769,5768,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.3011432,7.5545874,52,-2,33.162113,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5828128,7.4360156,44.53,54.03,59.06,35.36,8.333333333333334,1,1,0,0,1,6,3,1,972.5,495893.38,446092.56,82577.359,0,5095.9355,0,5350.7002 +2649,3287,5770,5772,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,7.8636489,8.0017881,0,6,1,57.558033,0,-9,-9,2021,12,1,25,25,1,1,0,9.5679092,9.5679092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,56.13,52.88,56.68,8.333333333333334,1,1,0,0,4,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2649,3287,5771,-9,5772,5770,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.4829,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2649,3287,5772,5770,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,0,0,0,6,-1,42.464592,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,51.02,56.13,8.333333333333334,1,1,0,0,9,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2650,3288,5773,5774,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.7156129,6.4407177,49,-2,52.699135,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6875982,45.49,58.84,62.49,55.09,8.333333333333334,3,4,0,0,14,9,4,0,2493,1194235,726899.38,420733.88,0,0,0,2962.9585 +2650,3288,5774,5773,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,8.2263393,8.2030334,6.0922928,49,2,-38.964664,0,3,3,2021,6,0,45,45,1,0,0,10.144897,10.144897,0,0,0,0,0,0,0,0,1,1,0,0,5.9339275,62.49,55.09,45.49,58.84,6.666666666666667,3,4,0,0,13,9,4,0,2493,1194235,726899.38,420733.88,0,0,0,2962.9585 +2651,3289,5775,5776,-9,-9,1,1,56,0,1,0,3,3,-9,0,2,0,0,0,36,1,0,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.5552581,0,39.39,37.66,35.94,31.34,5,2,3,1,0,0,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3289,5776,5775,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,0,0,36,-1,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.94,31.34,39.39,37.66,5,2,3,0,0,0,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3289,5777,-9,5776,5775,1,1,17,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1130.4291,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.53,40.9,-9,-9,3.333333333333333,2,3,0,0,2,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3290,5778,-9,5776,5775,1,0,24,0,1,0,1,1,-9,0,2,7.5168185,7.4797854,0,0,0,-842.80493,0,3,3,2021,12,0,37,35,1,0,1,5.6946859,5.6946859,0,0,0,0,0,0,0,0,1,0,1,0,0,38.82,39.27,-9,-9,5,2,3,0,0,7,9,3,1,1070,28489.059,0,0,0,7663.8374,0,600.06616 +2651,3291,5779,-9,5776,5775,1,0,28,0,1,0,2,2,-9,0,3,7.3391728,7.407783,0,0,0,-1040.1949,0,3,3,2021,13,1,50,37,1,1,1,4.5973144,4.5973144,0,0,0,0,0,0,0,0,1,0,1,0,0,42.64,50.88,-9,-9,5,2,3,0,0,11,9,3,1,451,39067.898,28130.34,0,0,0,0,691.7691 +2651,3292,5780,-9,5776,5775,1,1,22,0,1,0,2,2,-9,0,5,8.2294207,8.2065163,0,0,0,-767.09088,0,3,3,2021,10,0,40,40,1,1,1,11.213935,11.213935,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.07,58.32,-9,-9,10,2,3,0,0,5,9,4,1,1480,133172.69,53247.648,0,0,5164.1694,1253.2881,2390.7493 +2651,3293,5781,-9,5782,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6077,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,1,489,39333.656,0,0,0,247.85535,167.55139,1798.5427 +2651,3293,5782,-9,5776,5775,1,0,29,0,1,0,3,3,-9,0,3,6.5459843,6.0695233,0,0,0,-1005.676,0,3,3,2021,12,0,36,16,1,0,1,2.4589167,2.4589167,0,0,0,0,0,0,0,0,1,0,1,0,0,39.01,40.08,-9,-9,6.666666666666667,2,3,0,0,9,9,2,1,489,39333.656,0,0,0,247.85535,167.55139,1798.5427 +2652,3294,5783,5784,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0014615,6.4987578,37,4,-26.319651,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8077822,6.9820995,64.97,34.85,52.87,55.58,10,1,1,0,0,0,10,3,1,1012.5,766127.38,623810.13,0,0,0,0,2760.7988 +2652,3294,5784,5783,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.2040844,7.9618101,37,-4,-28.691992,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5469716,8.4294338,52.87,55.58,64.97,34.85,8.333333333333334,1,1,0,0,4,10,3,1,1012.5,766127.38,623810.13,0,0,0,0,2760.7988 +2653,3295,5785,5786,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2000008,8.5078669,0,9,-1,-109.00407,0,2,2,2021,7,0,42,70,1,0,0,9.494194,9.494194,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,44.45,62.04,10,1,1,0,0,13,12,5,1,492,454309.72,348862.91,0,0,0,2274.7673,3637.9724 +2653,3295,5786,5785,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5239286,8.7432747,0,9,1,-106.7746,0,3,3,2021,8,2,25,30,1,2,0,25.025751,25.025751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.45,62.04,59.53,56.44,8.333333333333334,1,1,0,0,9,12,5,1,492,454309.72,348862.91,0,0,0,2274.7673,3637.9724 +2654,3296,5787,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1134.5511,-9,2,2,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.53,35.59,-9,-9,0,1,1,0,0,0,6,1,0,631,100315.18,0,0,0,0,0,1776.7594 +2654,3297,5788,-9,5787,-9,1,0,22,0,0,0,1,1,-9,0,3,7.2030826,7.449368,0,0,0,-966.5564,-9,2,-9,2021,11,1,28,0,1,1,1,6.0854115,6.0854115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.5,65.43000000000001,-9,-9,5,1,1,0,0,1,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2654,3297,5789,-9,5788,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1123.2448,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2654,3297,5790,-9,5788,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-736.091,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2655,3298,5791,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-989.72687,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.06,29.02,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,210,-2527.4229,0,0,0,0,0,1947.5714 +2655,3299,5792,-9,5791,-9,1,1,54,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1087.3973,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.1,57.86,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,458,145384.59,0,0,0,0,0,119.84156 +2656,3300,5793,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5421286,8.4134445,0,0,0,-940.69049,0,1,1,2021,9,0,50,50,1,0,0,12.660576,12.660576,.05,.05,0,0,0,0,0,0,0,0,0,3.525806,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,2,4,5,1,1044,144290.67,72308.008,0,0,0,0,1463.0652 +2657,3301,5794,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8087149,8.7792816,0,0,0,-1076.7753,0,-9,-9,2021,13,2,55,46,1,2,0,12.148761,12.148761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.53,60.44,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1417,160896.73,-54097.246,0,0,0,0,2133.574 +2658,3302,5795,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.7616,1,-9,-9,2021,6,0,0,70,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,12,1,0,2006,-18105.955,0,0,0,0,0,0 +2659,3303,5796,5799,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,6.5482316,7.6501999,6.6750026,18,-1,-66.683243,0,2,2,2021,12,0,58,58,1,0,0,1.5653809,1.5653809,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3065724,47.66,52.33,52.13,57.22,3.333333333333333,1,1,0,0,9,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5797,-9,5799,5796,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0679,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5798,-9,5799,5796,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.85,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5799,5796,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,5.5053163,5.3712339,0,21,1,47.529861,0,2,3,2021,8,0,38,34,1,0,0,.81331486,.81331486,0,0,0,0,0,0,0,0,1,1,0,5.1339283,0,52.13,57.22,47.66,52.33,1.666666666666667,1,1,0,0,9,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2660,3304,5800,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8690252,7.9395056,0,0,0,-1056.1614,0,3,3,2021,8,0,39,39,1,0,0,7.706543,7.706543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,695,309022.66,253821.42,0,0,0,0,961.49689 +2661,3305,5801,5802,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,6.4647951,6.3939838,20,2,3.365387,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8790317,6.3492441,48.76,27.38,54.04,47.89,10,1,1,0,0,0,7,3,1,329,693232.88,108609.49,382749.47,0,0,0,2127.1887 +2661,3305,5802,5801,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.7943535,7.2910166,20,-2,50.544216,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0315204,7.1620555,54.04,47.89,48.76,27.38,0,1,1,0,0,0,7,3,1,329,693232.88,108609.49,382749.47,0,0,0,2127.1887 +2662,3306,5803,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.7611465,6.4289823,0,0,-1064.5361,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3467474,6.842598,57.33,42.93,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,2814,97546.805,122620.38,0,0,0,700.94525,1495.6791 +2663,3307,5804,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,0,6.5541663,6.6847553,0,0,-925.16571,1,-9,-9,2021,9,0,0,25,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.0233836,0,57.63,56.14,-9,-9,10,1,1,0,0,3,12,2,0,334,157434.52,22769.168,0,0,8199.666,0,800.44165 +2664,3308,5805,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.8871059,8.8848877,0,0,0,-1016.4752,0,2,2,2021,17,5,36,0,1,5,0,22.266815,22.266815,0,0,0,0,0,0,0,0,0,0,0,5.3265576,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,12,5,1,1050,972569.44,0,540808.56,0,0,0,4058.3154 +2665,3309,5806,-9,5807,5808,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.62689,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2665,3309,5807,5808,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3720722,8.0749912,0,3,-3,-8.0460167,0,2,2,2021,9,0,32,38,1,0,0,13.802564,13.802564,0,0,0,0,0,0,0,0,1,1,0,1.717423,0,52.4,55.58,51.14,60.45,6.666666666666667,1,1,0,0,11,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2665,3309,5808,5807,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.7255363,8.8324642,0,3,3,32.309757,0,-9,-9,2021,4,0,37,38,1,0,0,15.668525,15.668525,.05,.05,.05,0,0,0,0,0,1,1,0,1.5236971,0,51.14,60.45,52.4,55.58,6.666666666666667,1,1,0,0,10,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2666,3310,5809,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.112772,8.3417072,0,0,0,-931.13867,0,2,2,2021,24,11,40,39,1,11,0,11.92513,11.92513,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,55.55,-9,-9,6.666666666666667,1,1,0,0,13,4,4,1,841,91965.719,99284.383,151172.63,75566.422,2642.5696,0,1691.0709 +2667,3311,5810,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.8059626,9.1026707,0,0,0,-1046.8018,0,2,3,2021,18,6,37,39,1,6,0,24.976194,24.976194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.82,34.3,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,1197,1291412.1,59479.773,973769.75,0,0,0,2407.3259 +2668,3312,5811,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1142.0675,0,2,2,2021,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.04,56.1,-9,-9,5,4,2,0,0,11,8,1,1,656,83592.625,-66216.32,0,0,0,0,488.47281 +2669,3313,5812,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-900.59265,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.5,31.69,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,406,148528.47,0,0,0,0,0,1936.2883 +2669,3314,5813,-9,5812,-9,1,1,26,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.3768,0,3,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,38.66,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,677,5751.3047,0,0,0,0,0,97.996109 +2670,3315,5814,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,8.0188475,7.7768745,0,0,0,-957.44794,0,3,3,2021,13,1,38,38,1,1,0,8.6238489,8.6238489,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,33.42,-9,-9,3.333333333333333,1,1,0,0,7,8,4,0,1813,-105566.65,0,0,0,0,14365.725,920.26599 +2671,3316,5815,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1019.5757,0,-9,-9,2021,15,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.39,57.63,-9,-9,6.666666666666667,1,1,1,0,6,4,1,0,131,0,0,0,0,0,0,-32.238266 +2672,3317,5816,5817,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5738168,7.3344021,0,36,0,-110.82706,0,3,3,2021,10,0,39,42,1,1,0,5.2077312,5.2077312,.05,.05,0,0,0,0,0,0,0,0,0,4.5352874,0,51,49,43.84,57.1,7,1,1,0,0,1,1,4,1,393.5,240509.31,-7354.9102,160424.22,0,0,0,1779.7266 +2672,3317,5817,5816,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9317765,8.0372496,0,36,0,25.710533,0,-9,-9,2021,12,0,30,30,1,0,0,8.5867958,8.5867958,0,0,0,0,0,0,0,0,0,0,0,4.4498639,0,43.84,57.1,51,49,3.333333333333333,1,1,0,0,9,1,4,1,393.5,240509.31,-7354.9102,160424.22,0,0,0,1779.7266 +2673,3318,5818,5821,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.58179,7.5540943,0,8,-4,6.6081009,0,2,2,2021,9,0,60,60,1,0,0,3.9866788,3.9866788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.59,61.77,48.87,58.55,10,1,1,0,0,11,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5819,-9,5818,5821,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6566,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5820,-9,5818,5821,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.553,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5821,5818,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,7.6915889,7.804008,0,8,4,-32.085812,0,2,1,2021,10,0,55,55,1,0,0,5.0228853,5.0228853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.59,61.77,8.333333333333334,1,1,0,0,8,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2674,3319,5822,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.1393104,5.4004641,0,0,-999.98792,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.8548021,4.529871,47.957432,0,1,1,0,0,5.337358,32.15,36.25,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,434,-30194.994,77793.094,0,0,0,0,1323.595 +2675,3320,5823,5824,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,7.9433942,8.1102924,0,5,2,-209.72865,0,1,1,2021,18,6,43,44,1,6,0,8.2368088,8.2368088,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.59,39.29,49.8,56.68,8.333333333333334,1,1,0,0,11,5,5,0,420,-40101.664,-27149.77,0,0,0,0,3284.1064 +2675,3320,5824,5823,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4831018,8.5328465,0,5,-2,51.302139,0,-9,-9,2021,8,0,38,38,1,0,0,16.210344,16.210344,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,49.59,39.29,8.333333333333334,1,1,0,0,10,5,5,0,420,-40101.664,-27149.77,0,0,0,0,3284.1064 +2676,3321,5825,-9,5826,-9,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-970.53656,-9,1,-9,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,45.56,-9,-9,1.666666666666667,3,4,0,0,0,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2676,3321,5826,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4785404,8.5049238,0,0,0,-1071.8611,-9,1,-9,2021,12,0,37,0,1,0,0,21.3433,21.3433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,5,3,4,0,0,8,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2676,3321,5827,-9,5826,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.2294,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2677,3322,5828,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,8.4571619,8.4506207,0,0,-956.11255,0,-9,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9175434,8.3559113,56.05,42.9,-9,-9,8.333333333333334,1,1,0,0,6,7,5,1,707,1097453.4,584016.63,552097.31,0,0,0,3456.9539 +2678,3323,5829,5830,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.1561084,8.58179,8.3888683,7,-2,8.322794,0,-9,-9,2021,8,0,35,35,1,0,0,4.4235702,4.4235702,0,0,0,0,0,0,0,0,0,0,0,3.7164001,8.3591547,58.72,51.29,50.58,51.02,8.333333333333334,1,1,0,0,12,12,4,1,588.5,958312.13,976432.88,0,0,663.30493,0,3102.332 +2678,3323,5830,5829,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.8014684,6.608479,7,2,-180.15237,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.76934057,6.66822,50.58,51.02,58.72,51.29,8.333333333333334,1,1,0,0,12,12,4,1,588.5,958312.13,976432.88,0,0,663.30493,0,3102.332 +2679,3324,5831,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,6.5537581,6.3150425,0,0,-975.30585,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3603299,6.6318541,45.69,19.85,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,304,378216.06,0,151081.88,0,0,0,1662.2068 +2680,3325,5832,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.1086493,7.9307303,0,0,0,-1053.5114,0,2,-9,2021,11,0,37,38,1,0,0,7.2343287,7.2343287,0,0,0,0,0,0,0,2,0,0,0,0,0,41.23,38.09,-9,-9,5,1,1,0,1,12,5,4,0,231,161287.13,84544.906,-8247.8809,0,0,0,1507.8796 +2681,3326,5833,5834,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5381269,8.6867123,0,3,0,-66.910576,0,-9,-9,2021,13,1,38,38,1,1,0,16.586426,16.586426,.05,.05,0,0,0,0,0,0,0,0,0,3.1596932,0,49.25,61.25,31.6,57.32,8.333333333333334,1,1,0,0,3,10,5,1,821.5,817314.38,56228.934,292682.13,21258.711,0,0,3567.7026 +2681,3326,5834,5833,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.3806429,8.5531178,0,3,9,68.562485,0,-9,-9,2021,18,6,37,37,1,6,0,13.59596,13.59596,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.6,57.32,49.25,61.25,6.666666666666667,1,1,0,0,7,10,5,1,821.5,817314.38,56228.934,292682.13,21258.711,0,0,3567.7026 +2682,3327,5835,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1081.7859,-9,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34,28,-9,-9,5,1,1,0,1,0,10,1,0,958,-22464.283,0,0,0,0,0,1281.3632 +2683,3328,5836,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.7431107,7.6824903,0,0,0,-962.19543,0,2,2,2021,12,0,37,40,1,0,0,6.5576344,6.5576344,0,0,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,10,13,3,1,471,-162484.61,112118.11,0,0,0,0,689.0899 +2684,3329,5837,5838,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.3473964,7.4753022,0,21,-1,40.707855,0,2,2,2021,7,0,26,25,1,0,0,7.9208593,7.9208593,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.99,53.75,6.666666666666667,1,1,0,0,9,7,5,1,996.5,121538.75,30021.965,167584.16,44778.781,1710.1304,0,3425.115 +2684,3329,5838,5837,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.676754,8.6546469,0,21,1,48.469086,0,3,2,2021,19,7,77,69,1,7,0,9.4371223,9.4371223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,57.06,57.76,10,1,1,0,0,9,7,5,1,996.5,121538.75,30021.965,167584.16,44778.781,1710.1304,0,3425.115 +2685,3330,5839,5840,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9059758,7.334702,11,-1,-73.325722,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5279794,7.3841996,57.76,54.51,57.16,56.15,8.333333333333334,1,1,0,0,0,11,4,1,986,851845.5,402665.56,510002.13,0,0,0,3595.844 +2685,3330,5840,5839,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.7932448,7.8673468,11,1,13.413721,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4439089,7.5677428,57.16,56.15,57.76,54.51,8.333333333333334,1,1,0,0,0,11,4,1,986,851845.5,402665.56,510002.13,0,0,0,3595.844 +2686,3331,5841,5842,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6005964,8.5041733,45,0,-143.61349,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591661,8.461751,49.37,56.01,48.75,50.9,8.333333333333334,1,1,0,0,3,10,4,1,525.5,1439741.5,718547.44,492731.63,0,0,0,3890.9043 +2686,3331,5842,5841,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.8901172,5.1304593,45,0,-14.782528,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6481442,5.4621911,48.75,50.9,49.37,56.01,8.333333333333334,1,1,0,0,0,10,4,1,525.5,1439741.5,718547.44,492731.63,0,0,0,3890.9043 +2687,3332,5843,-9,5845,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.74921,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2687,3332,5844,-9,5845,-9,1,1,16,0,2,1,3,0,-9,0,4,0,4.8044372,4.748281,0,0,-966.32544,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4507346,0,54.2,57.49,-9,-9,10,1,1,0,0,0,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2687,3332,5845,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.2091074,8.2686996,6.6458335,0,0,-857.14966,0,3,1,2021,7,0,23,20,1,0,0,17.702761,17.702761,.05,.05,0,0,0,0,0,0,1,1,0,7.28898,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2688,3333,5846,5847,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-4,0,0,-9,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.59,25.68,27.8,29.48,6.666666666666667,1,1,0,0,0,12,1,0,385,26696.342,151193.69,0,0,0,0,1154.7181 +2688,3333,5847,5846,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,0,0,27,4,0,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.8,29.48,44.59,25.68,5,1,1,0,0,0,12,1,0,385,26696.342,151193.69,0,0,0,0,1154.7181 +2689,3334,5848,5849,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.7369738,7.5497556,0,31,10,69.906464,0,2,1,2021,12,0,39,40,1,0,0,10.445807,10.445807,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,46.03,50.17,42.09,6.666666666666667,1,1,0,0,10,7,4,1,671.5,3254541,730626.06,1683288.3,0,0,0,1641.9714 +2689,3334,5849,5848,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.3061314,8.4328957,0,31,-10,23.193071,0,2,2,2021,13,3,43,40,1,3,0,12.017757,12.017757,0,0,0,0,0,0,0,0,0,0,0,0,0,50.17,42.09,40.95,46.03,6.666666666666667,1,1,0,0,12,7,4,1,671.5,3254541,730626.06,1683288.3,0,0,0,1641.9714 +2689,3335,5850,-9,5849,5848,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-799.11108,1,1,1,2021,12,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.65,59.49,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,370,161275.34,0,0,0,0,0,0 +2690,3336,5851,5852,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,8.3414488,8.6721544,44,-3,-21.859884,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1419477,8.3884687,53.86,49.64,50.67,50.08,8.333333333333334,1,1,0,0,0,8,5,1,889,2196300,1794654,387228.56,0,0,0,6454.6733 +2690,3336,5852,5851,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.4352818,8.6694193,44,3,34.180233,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9578485,8.8588457,50.67,50.08,53.86,49.64,8.333333333333334,1,1,0,0,0,8,5,1,889,2196300,1794654,387228.56,0,0,0,6454.6733 +2691,3337,5853,5854,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5696764,8.7421551,0,6,4,-11.015006,0,-9,-9,2021,7,0,40,40,1,0,0,17.166374,17.166374,.05,.05,0,0,0,0,0,0,0,0,0,3.8368397,0,55.79,52.62,34.36,57.34,8.333333333333334,1,1,0,0,9,5,4,1,1701,943892.19,937815.88,153634.92,0,12093.32,0,2734.0151 +2691,3337,5854,5853,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,6.9265833,6.9759531,0,6,-4,96.125488,0,3,3,2021,14,2,21,21,1,2,0,7.9445748,7.9445748,0,0,0,0,0,0,0,2,0,0,0,0,0,34.36,57.34,55.79,52.62,1.666666666666667,1,1,0,0,6,5,4,1,1701,943892.19,937815.88,153634.92,0,12093.32,0,2734.0151 +2692,3338,5855,5856,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1168165,7.9846511,0,9,8,138.96817,0,2,2,2021,10,2,44,39,1,2,0,9.3611193,9.3611193,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,39.8,43.63,10,1,1,0,0,10,6,4,0,468,69182.469,79675.313,93778.555,64949.035,4083.3286,5549.7642,1861.9321 +2692,3338,5856,5855,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,7.9800749,7.8482409,0,9,-8,-58.57,0,-9,-9,2021,19,7,42,39,1,7,0,7.8523002,7.8523002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.8,43.63,52.97,51.29,8.333333333333334,1,1,0,0,10,6,4,0,468,69182.469,79675.313,93778.555,64949.035,4083.3286,5549.7642,1861.9321 +2693,3339,5857,5859,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,8.3094063,8.2674007,0,4,15,45.699608,0,-9,-9,2021,7,0,40,40,1,0,0,12.066931,12.066931,.05,.05,0,0,0,0,0,0,1,1,0,.20306537,0,44.98,57.48,44.78,56.37,8.333333333333334,1,1,0,0,13,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2693,3339,5858,-9,5859,5857,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-937.47736,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2693,3339,5859,5857,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,7.1842456,6.9624405,4,-15,18.722038,0,-9,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4674578,0,44.78,56.37,44.98,57.48,8.333333333333334,1,1,0,0,0,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2694,3340,5860,5862,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.7520456,8.8758202,0,34,1,-73.708893,0,3,1,2021,9,0,65,70,1,0,0,11.103614,11.103614,0,0,.05,0,0,0,0,0,1,1,0,6.3438787,0,58.15,52.91,55.6,47.8,8.333333333333334,1,1,0,0,10,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3340,5861,-9,5862,5860,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1045.0481,1,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3340,5862,5860,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.5015001,8.5820084,0,34,-1,-14.725434,0,2,2,2021,11,0,37,38,1,0,0,16.753778,16.753778,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,47.8,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3341,5863,-9,5862,5860,1,1,26,0,0,0,1,1,-9,0,4,8.83951,8.7521982,0,0,0,-860.30164,-9,2,2,2021,7,0,47,0,1,0,1,13.993363,13.993363,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,569,-85553.359,83204.367,0,0,0,0,1902.0848 +2694,3342,5864,-9,5862,5860,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.61798,1,2,2,2021,17,5,0,5,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,1,6,13,1,1,359,-35863.824,0,0,0,0,0,0 +2694,3343,5865,-9,5862,5860,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1002.4284,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,148,56386.492,0,0,0,0,0,70.62381 +2695,3344,5866,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5014153,8.9822216,0,0,0,-1047.3551,0,3,2,2021,7,1,50,30,1,1,0,12.494205,12.494205,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,56.22,-9,-9,6.666666666666667,2,3,0,0,4,8,5,0,185,-36050.113,0,0,0,0,0,2364.8005 +2696,3345,5867,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.86903,8.6181726,0,0,0,-1006.2152,0,-9,-9,2021,5,0,48,40,1,0,0,14.984577,14.984577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,1188,144342.36,72449.641,0,0,0,0,2845.2319 +2697,3346,5868,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.876461,8.9971924,0,0,-1020.805,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,9.1522465,8.8429394,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,150,1559355.1,1064522.1,376726.88,0,0,0,4836.7397 +2698,3347,5869,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0716314,7.3616657,0,0,-882.5575,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3100309,60.2,39.82,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,520,484766.28,356644.53,129104.83,0,0,0,1590.0576 +2699,3348,5870,5871,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,1,-17.904522,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,31.479025,0,0,1,1,0,0,0,38.94,27.06,39.39,37.66,6.666666666666667,1,1,0,0,0,13,2,1,1074,86149.141,97539.117,0,0,2746.8413,0,1340.7255 +2699,3348,5871,5870,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.2361684,5.9758878,10,-1,63.167439,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,4.1012363,0,74.5,1,1,0,.95845228,6.028966,39.39,37.66,38.94,27.06,6.666666666666667,1,1,0,0,0,13,2,1,1074,86149.141,97539.117,0,0,2746.8413,0,1340.7255 +2700,3349,5872,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3098011,8.2439127,0,0,0,-1041.2113,0,-9,2,2021,11,0,36,36,1,0,0,14.974056,14.974056,.05,.05,0,0,0,0,0,0,1,0,1,2.4393833,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,13,8,5,0,791,266357.22,-58880.313,283299.88,0,0,0,1482.036 +2700,3350,5873,-9,5872,-9,1,1,31,0,0,0,1,1,-9,0,2,8.6353884,8.6760902,0,0,0,-980.43341,0,2,-9,2021,12,1,45,48,1,1,1,14.7469,14.7469,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.92,46.88,-9,-9,6.666666666666667,1,1,0,0,13,8,5,0,100,437252.5,156151.05,358612.53,70621.117,0,0,2700.5854 +2700,3351,5874,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,7.4407468,7.2942977,0,0,0,-1070.619,-9,-9,-9,2021,13,3,25,0,1,3,0,6.1713262,6.1713262,0,0,0,0,0,0,0,0,1,0,1,.32201827,0,39.04,42.97,-9,-9,8.333333333333334,4,2,0,0,3,8,3,0,486,-131899.64,0,0,0,0,0,1074.7584 +2701,3352,5875,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4138975,5.4240985,0,0,-951.51648,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9508284,5.4029102,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,519,121249.9,25607.113,216979.67,0,0,0,2138.5752 +2702,3353,5876,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1016.4592,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.43,42.24,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,1542,-71389.578,0,0,0,0,0,1079.7974 +2703,3354,5877,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1190085,7.3647866,0,0,-1087.9689,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4426951,37.42,30.57,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,597,378731.28,206090.81,0,0,0,0,1883.5305 +2704,3355,5878,-9,5879,5880,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.48395,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5879,5880,-9,-9,1,0,28,1,2,0,2,2,-9,0,5,7.3056254,7.5676031,0,4,-1,-11.794327,0,1,2,2021,8,0,20,0,1,0,0,11.509535,11.509535,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.83,58.53,0,1,1,0,0,6,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5880,5879,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,2.2448671,2.2983334,0,4,1,36.611149,-9,-9,-9,2021,12,1,40,0,1,1,0,.027798401,.027798401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.83,58.53,57.06,57.76,10,1,1,0,0,11,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5881,-9,5879,5880,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4031,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2705,3356,5882,5883,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.533082,7.703403,5,-1,12.205252,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4909973,47.27,51.2,49.91,56.93,5,1,1,0,0,0,2,3,1,828,939369.38,261654.97,213610.84,0,0,0,3477.1118 +2705,3356,5883,5882,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,6.8372841,6.6619525,44,1,3.5622363,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5402703,7.1941347,49.91,56.93,47.27,51.2,5,1,1,0,0,0,2,3,1,828,939369.38,261654.97,213610.84,0,0,0,3477.1118 +2706,3357,5884,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.0942731,6.1220951,0,0,-957.29865,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1799545,48.73,54.59,-9,-9,10,1,1,0,0,4,9,2,1,1209,361673.31,-287.30707,0,0,0,0,1661.5507 +2707,3358,5885,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3472509,8.5191898,0,0,0,-1151.2751,0,2,2,2021,12,0,40,37,1,0,0,14.975816,14.975816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.65,58.34,-9,-9,6.666666666666667,1,1,0,0,7,10,5,0,817,295425.75,342695.91,74854.625,122533.62,1710.5321,0,2237.9043 +2707,3359,5886,-9,5885,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3685436,8.6424046,0,0,0,-1055.762,-9,2,-9,2021,8,1,48,0,1,1,1,8.2096729,8.2096729,.05,.05,0,0,0,0,0,0,0,0,0,3.0573533,0,51.73,58.82,-9,-9,10,1,1,0,0,1,10,4,0,607,300330.28,-54233.227,0,0,1323.5107,0,2119.4829 +2708,3360,5887,-9,5888,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.9473,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1346,535804,486475.81,108171.66,87468.406,0,0,2891.1367 +2708,3360,5888,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0016336,8.9102526,0,0,0,-1005.7082,0,2,2,2021,13,4,40,35,1,4,0,19.004322,19.004322,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.04,63.76,-9,-9,6.666666666666667,1,1,0,0,14,12,5,1,1346,535804,486475.81,108171.66,87468.406,0,0,2891.1367 +2709,3361,5889,-9,5890,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.6884,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,493,74589.734,0,0,0,0,-791.06403,1415.5471 +2709,3361,5890,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,5.0467763,4.9647517,0,0,0,-1032.4724,0,2,2,2021,25,11,2,0,1,11,0,6.3115826,6.3115826,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,33.05,-9,-9,3.333333333333333,1,1,0,0,5,2,2,0,493,74589.734,0,0,0,0,-791.06403,1415.5471 +2709,3362,5891,-9,5890,-9,1,0,18,0,1,0,2,2,-9,0,3,6.7160296,6.838892,0,0,0,-1092.5203,0,2,-9,2021,25,11,26,0,1,11,1,4.95333,4.95333,0,0,0,0,0,0,0,0,1,1,0,0,0,23.44,61.18,-9,-9,5,1,1,0,0,1,2,2,0,1215,-167640.86,0,0,0,6129.7964,0,503.1438 +2710,3363,5892,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6676674,8.3821459,0,0,0,-967.44824,0,1,2,2021,10,0,38,41,1,0,0,18.009024,18.009024,.05,.05,0,0,0,0,0,0,0,0,0,3.7249217,0,49.52,55.68,-9,-9,10,1,1,0,0,11,12,5,1,1302,137689.67,54130.492,0,0,0,0,1444.7062 +2711,3364,5893,5895,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.1440725,7.9843502,0,8,4,3.6628883,0,-9,-9,2021,11,0,40,39,1,2,0,9.0369577,9.0369577,0,0,0,0,0,0,0,0,1,1,0,3.2507799,0,48,58,46,58,7,1,1,0,0,1,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2711,3364,5894,-9,5895,5893,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.18799,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2711,3364,5895,5893,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.709425,7.841321,0,8,-4,100.13612,0,3,3,2021,12,0,38,16,1,2,0,6.8425293,6.8425293,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,48,58,7,1,1,0,0,1,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2712,3365,5896,5897,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,5.8678141,6.5528207,5.8858719,3,1,-65.448418,0,1,1,2021,7,0,25,10,1,0,0,1.5386208,1.5386208,.05,.05,0,0,0,0,0,2,0,0,0,5.9745264,6.086453,61.06,26.16,50.03,52.62,8.333333333333334,1,1,0,0,10,5,3,1,501.5,61022.93,29878.213,0,0,1773.8328,1929.1953,1831.9551 +2712,3365,5897,5896,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.9375992,7.6507421,0,3,-1,43.549908,-9,-9,-9,2021,7,0,40,0,1,0,0,10.553698,10.553698,.05,.05,0,0,0,0,0,0,0,0,0,2.2694931,0,50.03,52.62,61.06,26.16,8.333333333333334,1,1,0,0,10,5,3,1,501.5,61022.93,29878.213,0,0,1773.8328,1929.1953,1831.9551 +2712,3366,5898,-9,5897,5896,1,0,22,0,0,0,2,2,1,0,5,0,0,0,0,0,-943.36133,-9,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,1,0,0,5,1,1,1142,-98514.305,0,0,0,0,0,0 +2713,3367,5899,5900,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,4.4257474,4.7724519,42,15,-23.682215,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,43.108341,47.534519,386.85242,0,1,1,0,5.1799912,4.3686423,36.81,33.53,52.41,36.64,6.666666666666667,4,2,0,1,9,9,2,1,242,-118340.1,0,0,0,0,0,1850.3208 +2713,3367,5900,5899,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,42,-15,61.609245,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,52.41,36.64,36.81,33.53,8.333333333333334,3,4,0,1,6,9,2,1,242,-118340.1,0,0,0,0,0,1850.3208 +2714,3368,5901,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.263958,7.6106148,6.4528556,0,0,-883.86523,0,2,2,2021,11,0,15,15,1,0,0,8.5749235,8.5749235,0,0,0,0,0,0,0,0,1,1,0,5.5768514,6.5739179,44.6,42.25,-9,-9,5,1,1,0,0,6,9,3,0,1045,680453.38,250585.47,310015.22,35941.594,0,0,1447.0856 +2715,3369,5902,5903,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.7558775,9.904808,0,9,-1,-113.78378,0,2,3,2021,9,0,45,45,1,0,0,36.000893,36.000893,.05,.05,0,0,0,0,0,0,0,0,0,5.0522099,0,57.51,42.37,48.28,60.18,8.333333333333334,1,1,0,0,10,7,5,1,363,991873.5,105686.81,569772.19,70789.453,0,0,12461.379 +2715,3369,5903,5902,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.1641083,9.1530428,0,9,1,-262.71951,0,2,2,2021,10,2,50,58,1,2,0,25.01013,25.01013,.05,.05,0,0,0,0,0,0,0,0,0,4.1165128,0,48.28,60.18,57.51,42.37,8.333333333333334,1,1,0,0,10,7,5,1,363,991873.5,105686.81,569772.19,70789.453,0,0,12461.379 +2716,3370,5904,5905,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.1448002,4.9739995,10,3,49.515846,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2697129,57.16,56.15,57.51,31.85,8.333333333333334,1,1,0,0,0,4,3,1,548,835266.75,412810.25,161626.81,0,0,0,2200.7585 +2716,3370,5905,5904,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,7.5851355,7.6729817,49,-3,-17.020311,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7825966,7.8597126,57.51,31.85,57.16,56.15,8.333333333333334,1,1,0,0,0,4,3,1,548,835266.75,412810.25,161626.81,0,0,0,2200.7585 +2717,3371,5906,5907,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.8260393,6.5821095,0,8,-8,-130.75015,0,3,2,2021,12,0,12,12,1,2,0,9.0640621,9.0640621,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,46.92,60.71,7,1,1,0,0,1,7,5,1,859.5,71191.063,-31335.344,0,0,0,0,3897.4028 +2717,3371,5907,5906,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.7541566,9.0227375,8.787097,8,8,131.77028,0,2,2,2021,13,3,45,40,1,3,0,6.0494761,6.0494761,.05,.05,0,0,0,0,0,2,0,0,0,0,8.6984081,46.92,60.71,48,49,6.666666666666667,1,1,0,0,9,7,5,1,859.5,71191.063,-31335.344,0,0,0,0,3897.4028 +2718,3372,5908,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,5.7661104,6.4207897,0,0,-949.47754,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9732008,5.8325591,57.07,43.85,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,1375,60891.758,-62319.379,109403.97,0,0,0,870.25562 +2719,3373,5909,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.7149811,6.5302048,0,0,-981.04138,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6283722,46.55,43.16,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,120,44811.848,133737.77,133962.58,0,0,0,756.76526 +2720,3374,5910,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6361003,6.9232802,0,0,-967.67969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5810099,6.9833984,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1285,183358.58,76997.711,0,0,0,0,1978.149 +2721,3375,5911,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1039.3397,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.99,39.1,-9,-9,10,1,1,0,1,0,7,2,1,1975,247096.95,-7664.9868,0,0,0,0,83.530785 +2722,3376,5912,-9,5913,5915,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.72314,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5913,5915,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.8259535,7.935174,0,8,-5,-30.504416,-9,-9,-9,2021,11,0,65,0,1,2,0,5.0579743,5.0579743,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.7,53.68,7,1,1,0,0,1,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5914,-9,5913,5915,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.66901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5915,5913,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.1840277,9.1019287,0,8,5,-17.63129,0,2,2,2021,7,0,45,45,1,0,0,16.374241,16.374241,.05,.05,.05,0,0,0,0,0,1,1,0,3.933269,0,44.7,53.68,48,56,5,1,1,0,0,9,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2723,3377,5916,5917,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.7847509,8.725297,0,8,0,16.720617,0,1,-9,2021,7,0,50,50,1,0,0,15.803463,15.803463,.05,.05,0,0,0,0,0,0,0,0,0,1.9072572,0,57.9,51.84,60.03,45.37,8.333333333333334,1,1,0,0,10,2,5,1,721.5,694500.38,442117.75,95163.875,0,0,0,3966.2522 +2723,3377,5917,5916,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8437414,7.7854166,0,8,0,62.094551,0,1,2,2021,8,0,41,39,1,0,0,5.6781802,5.6781802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,45.37,57.9,51.84,8.333333333333334,1,1,0,0,7,2,5,1,721.5,694500.38,442117.75,95163.875,0,0,0,3966.2522 +2723,3378,5918,-9,5917,5916,1,1,18,0,0,0,2,2,-9,0,3,7.0667562,7.3420019,0,0,0,-880.17139,0,2,2,2021,11,2,37,0,1,2,1,3.9786088,3.9786088,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,-9,-9,3.333333333333333,1,1,0,1,1,2,3,1,2614,204306.89,0,0,0,0,0,831.42572 +2724,3379,5919,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.6017,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,1,1,91,101715.29,0,123411.48,0,0,0,373.67419 +2724,3380,5920,-9,-9,5919,1,0,24,0,0,0,2,2,-9,0,3,8.0926466,8.0214901,0,0,0,-993.04224,0,2,2,2021,8,0,30,35,1,0,0,13.717506,13.717506,0,0,0,0,0,0,0,0,1,1,0,0,0,40.1,54.56,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,156,-19563.725,0,0,0,0,0,1139.2562 +2725,3381,5921,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,5,0,6.6840744,6.4558072,0,0,-1059.4749,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0815873,6.2441196,60.42,54.81,-9,-9,10,1,1,0,0,0,1,2,1,317,228910.67,-40177.949,120670.56,0,0,0,870.73615 +2726,3382,5922,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.2983212,7.4313593,0,0,-973.6781,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1386642,7.4590273,54.02,23.97,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,378,394644.91,147671.84,293776.13,0,0,0,1061.0709 +2727,3383,5923,-9,5924,-9,1,1,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-969.6684,0,2,1,2021,21,8,0,36,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,60.02,-9,-9,6.666666666666667,2,3,1,0,4,8,1,1,1863,-60038.641,0,0,0,0,0,0 +2727,3384,5924,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,8.0158424,8.0880966,0,0,-941.12262,0,-9,-9,2021,14,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.085834,7.9293532,28.33,43.87,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,250,353150.91,173819.27,307792.78,-17930.801,0,0,2059.5127 +2728,3385,5925,5926,-9,-9,1,1,54,0,0,0,1,1,0,0,3,0,0,0,29,1,-53.510586,-9,2,3,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.7404959,0,41.45,58.1,48.29,47.89,6.666666666666667,1,1,0,0,2,6,5,1,151.5,3036310.5,2399389,412780.31,0,0,0,8600.4336 +2728,3385,5926,5925,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.60958,9.4074173,0,30,-1,-138.00275,0,2,2,2021,12,0,49,52,1,0,0,41.084766,41.084766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.29,47.89,41.45,58.1,8.333333333333334,1,1,0,0,12,6,5,1,151.5,3036310.5,2399389,412780.31,0,0,0,8600.4336 +2728,3386,5927,-9,5926,5925,1,1,22,0,0,1,3,0,0,0,3,0,0,0,0,0,-1045.1116,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,595,81268.125,0,0,0,0,0,0 +2728,3387,5928,-9,5926,5925,1,1,20,0,0,1,2,0,0,0,3,0,5.3418689,5.979135,0,0,-1120.9415,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7402596,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,441,219433.53,0,0,0,-822.3172,0,-126.04548 +2729,3388,5929,5930,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.524909,8.7457447,0,11,2,88.268814,0,-9,-9,2021,8,0,45,48,1,0,0,15.216555,15.216555,.05,.05,0,0,0,0,0,0,1,1,0,3.3910506,0,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,7,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5930,5929,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.8050442,7.8154378,0,23,-2,-167.95091,0,2,2,2021,8,0,32,30,1,0,0,9.3735189,9.3735189,0,0,0,0,0,0,0,0,1,1,0,2.9252682,0,60.13,49.27,57.16,56.15,10,1,1,0,0,12,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5931,-9,5930,5929,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.578,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5932,-9,5930,5929,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1033.5901,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2730,3389,5933,-9,5937,5935,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.323,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5934,-9,5937,5935,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-798.83197,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5935,5937,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,8.3293219,8.3325653,0,16,7,-36.621735,0,-9,-9,2021,14,3,53,55,1,3,0,12.033966,12.033966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.33,44.92,39.33,58.88,5,2,3,0,1,10,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5936,-9,5937,5935,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.9121,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5937,5935,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,16,-7,-18.655813,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,58.88,31.33,44.92,6.666666666666667,2,3,0,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2731,3390,5938,5939,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4074316,9.955368,0,7,0,19.245367,0,1,1,2021,7,0,41,43,1,0,0,33.807053,33.807053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,46.61,56.93,6.666666666666667,1,1,0,0,8,6,5,1,828.5,1408169.3,1181208.8,322865.88,25904.836,0,0,8503.1475 +2731,3390,5939,5938,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.4175863,9.4856377,0,7,0,25.391504,0,3,2,2021,12,2,53,55,1,2,0,25.381886,25.381886,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,55.34,54.26,6.666666666666667,1,1,0,0,8,6,5,1,828.5,1408169.3,1181208.8,322865.88,25904.836,0,0,8503.1475 +2731,3391,5940,-9,5939,5938,1,1,21,0,0,0,1,1,1,0,4,7.5264845,7.7457438,0,0,0,-834.63678,-9,1,1,2021,9,1,30,0,1,1,1,9.5017548,9.5017548,0,0,0,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,0,3,6,3,1,614,72660.07,0,0,0,0,0,1325.2142 +2732,3392,5941,5942,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4481468,8.3620234,0,7,5,89.667175,0,2,2,2021,13,1,40,40,1,1,0,12.821823,12.821823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,52,54.51,6.666666666666667,1,1,0,0,10,9,5,1,1626,-39755.121,58647.754,0,0,0,0,2787.0479 +2732,3392,5942,5941,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.225769,8.3998718,0,7,-5,-13.022942,0,-9,-9,2021,9,0,38,38,1,0,0,11.518354,11.518354,.05,.05,0,0,0,0,0,0,0,0,0,2.7307088,0,52,54.51,34.54,59.67,8.333333333333334,1,1,0,0,11,9,5,1,1626,-39755.121,58647.754,0,0,0,0,2787.0479 +2733,3393,5943,5944,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.861341,8.5187998,7.0978513,4,11,80.223885,0,2,2,2021,6,0,55,60,1,0,0,5.1467772,5.1467772,0,0,.05,0,0,0,0,0,0,0,0,4.0486336,7.2135687,48.67,49.54,25.99,63.8,5,1,1,0,0,10,10,5,1,454,2367083,1653158.9,660648.81,0,1560.063,6822.4634,4128.3662 +2733,3393,5944,5943,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2556038,8.1046133,0,4,-11,-7.8137021,0,-9,2,2021,28,12,38,38,1,12,0,12.150702,12.150702,0,0,0,0,0,0,0,2,0,0,0,7.5098262,0,25.99,63.8,48.67,49.54,1.666666666666667,1,1,0,0,13,10,5,1,454,2367083,1653158.9,660648.81,0,1560.063,6822.4634,4128.3662 +2734,3394,5945,5946,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,8.135046,8.5422449,31,0,103.03192,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.4665875,8.2464151,57.16,56.15,52,53,8.333333333333334,1,1,0,0,0,10,5,1,552,137952.58,68104.922,197298.67,76358.68,0,0,4167.7456 +2734,3394,5946,5945,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2099333,8.1553173,0,6,0,-83.040497,0,-9,-9,2021,10,0,25,25,1,1,0,16.013426,16.013426,.05,.05,0,0,0,0,0,0,0,0,0,5.2837772,0,52,53,57.16,56.15,8,1,1,0,0,1,10,5,1,552,137952.58,68104.922,197298.67,76358.68,0,0,4167.7456 +2735,3395,5947,5948,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,52,-4,48.375507,0,3,-9,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,0,38.526848,0,0,1,1,0,0,0,40.39,16.93,60.29,52.11,6.666666666666667,2,3,0,1,0,5,2,1,1981.5,767970.5,351708.69,243142.53,0,747.4455,859.76538,1417.3726 +2735,3395,5948,5947,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9718313,7.098177,52,4,26.131647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.1587315,7.0660119,60.29,52.11,40.39,16.93,10,2,3,0,0,0,5,2,1,1981.5,767970.5,351708.69,243142.53,0,747.4455,859.76538,1417.3726 +2736,3396,5949,-9,-9,5950,1,0,20,0,0,0,2,2,-9,0,3,7.6548696,7.7208958,0,0,0,-1051.5519,0,-9,1,2021,23,11,35,8,1,11,1,5.3696413,5.3696413,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,3,9,3,1,804,-69197.82,0,0,0,0,0,1413.7395 +2736,3397,5950,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.3242111,8.2002583,5.0808172,0,0,-1037.2352,0,-9,-9,2021,11,0,50,21,1,0,0,6.2917094,6.2917094,0,0,0,0,0,0,0,0,1,1,0,0,5.977778,52.01,48.98,-9,-9,5,1,1,0,0,4,9,4,1,1147,1166864.9,859019.06,383204.41,0,0,10506.225,1724.4683 +2737,3398,5951,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1116.4808,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.49,31.44,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,200,-14698.616,0,0,0,0,0,804.06647 +2738,3399,5952,-9,-9,-9,1,0,72,0,1,0,2,2,-9,0,2,7.6320271,7.1014714,0,0,0,-1028.2725,0,3,3,2021,14,2,20,20,1,2,0,9.9971418,9.9971418,0,0,0,0,0,0,0,0,1,1,0,0,0,48,33.66,-9,-9,5,1,1,0,0,12,12,2,1,641,539644.94,348706.5,154728.91,0,0,0,1051.0421 +2739,3400,5953,5954,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.9339881,7.7932115,44,1,-28.082945,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,1,0,0,0,2,1,1,0,3.8167038,8.1225166,42.33,22.79,43.37,57.28,3.333333333333333,1,1,0,0,0,2,4,1,172.5,763975.94,642665.56,169875.09,0,15604.274,0,3474.8794 +2739,3400,5954,5953,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.0868096,7.3150544,44,-1,15.152698,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3200846,7.2549872,43.37,57.28,42.33,22.79,8.333333333333334,1,1,0,0,6,2,4,1,172.5,763975.94,642665.56,169875.09,0,15604.274,0,3474.8794 +2740,3401,5955,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.9787674,6.7946792,0,0,-1054.9235,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8745885,6.8998857,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,555,551645,-32729.205,135774.75,0,0,0,1238.9308 +2741,3402,5956,5957,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.5549603,7.9669752,48,0,112.60529,0,2,1,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,7.790513,8.0762444,44.92,25.5,54.13,48.04,6.666666666666667,1,1,0,0,7,6,3,1,688.5,282192,146545.48,110604.18,0,0,0,4889.4951 +2741,3402,5957,5956,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.5125523,7.5804868,48,0,16.214552,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8272514,7.3788843,54.13,48.04,44.92,25.5,8.333333333333334,1,1,0,0,2,6,3,1,688.5,282192,146545.48,110604.18,0,0,0,4889.4951 +2742,3403,5958,5959,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.8615284,8.8879957,0,1,-7,30.761013,-9,-9,-9,2021,5,1,47,0,1,1,0,21.426273,21.426273,0,0,0,0,0,0,0,0,0,0,0,3.6659482,0,47.93,56.36,47.95,51.28,8.333333333333334,1,1,0,0,1,12,5,1,1877.5,1884732.1,1068531.6,343147.19,103601.28,0,0,4714.418 +2742,3403,5959,5958,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.7341299,8.4104414,0,1,7,-85.325523,0,2,2,2021,9,0,41,50,1,0,0,16.870424,16.870424,.05,.05,0,0,0,0,0,0,0,0,0,2.0710838,0,47.95,51.28,47.93,56.36,8.333333333333334,1,1,0,0,8,12,5,1,1877.5,1884732.1,1068531.6,343147.19,103601.28,0,0,4714.418 +2743,3404,5960,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.4672399,6.3471451,0,0,-981.26135,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0134163,48.31,53.41,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,124,-44161.758,115836.68,169498.41,0,0,0,1094.9324 +2744,3405,5961,5962,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.6355448,9.6216583,0,6,0,-42.985802,0,-9,-9,2021,9,0,40,50,1,0,0,50.181133,50.181133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,57.16,56.15,8,1,1,0,0,1,7,5,1,1198.5,1695008.4,738611.13,354618.13,216471.59,0,12827.516,6870.8647 +2744,3405,5962,5961,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.5582166,7.7095308,0,35,0,-27.369417,0,3,3,2021,6,0,30,27,1,0,0,9.4239731,9.4239731,.05,.05,0,0,0,0,0,14.5,0,0,0,4.9457188,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,9,7,5,1,1198.5,1695008.4,738611.13,354618.13,216471.59,0,12827.516,6870.8647 +2745,3406,5963,5964,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1697578,8.835043,0,5,-4,10.5789,0,2,2,2021,12,0,50,92,1,0,0,20.168789,20.168789,0,0,0,0,0,0,0,0,0,0,0,.80043864,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,0,640,395030.28,363644.56,234977.78,111077.94,0,0,4052.8015 +2745,3406,5964,5963,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.0619211,8.0572863,0,5,4,8.2376213,0,-9,-9,2021,6,0,40,42,1,0,0,8.1202316,8.1202316,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,11,12,5,0,640,395030.28,363644.56,234977.78,111077.94,0,0,4052.8015 +2746,3407,5965,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4160261,8.3971806,5.5553184,0,0,-956.01068,-9,3,3,2021,13,2,45,0,1,2,0,13.132702,13.132702,.05,.05,0,0,0,0,0,0,1,1,0,6.3502612,0,38.58,48.57,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,462,370961.47,229879.83,151731.86,43728.094,0,3587.0269,2383.8457 +2747,3408,5966,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.2584705,7.3567705,0,0,0,-877.48297,0,3,2,2021,10,2,20,40,1,2,0,7.0754662,7.0754662,.05,.05,0,0,0,0,0,0,1,0,1,0,0,61.11,38.36,-9,-9,6.666666666666667,1,1,0,1,7,11,3,0,817,-149118.33,17373.828,0,0,0,0,1115.1224 +2747,3409,5967,-9,5966,-9,1,1,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1096.1282,-9,3,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.7366123,0,46.25,51.65,-9,-9,5,4,2,0,0,4,11,2,0,744,-9931.0098,0,0,0,0,0,819.60449 +2748,3410,5968,-9,5970,5971,1,1,22,0,2,0,2,2,-9,0,5,7.7006454,7.5254331,0,0,0,-944.26141,-9,3,2,2021,9,1,52,0,1,1,1,5.2727637,5.2727637,.05,.05,0,0,0,0,0,0,1,1,0,2.0072896,0,57.06,57.76,-9,-9,10,1,1,0,0,6,5,3,1,334,-204593.64,28940.158,0,0,6568.8457,0,1075.2139 +2748,3411,5969,-9,5970,5971,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.58478,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5970,5971,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,0,0,0,1,-6,-32.789814,-9,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52.54,52.91,8.333333333333334,1,1,0,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5971,5970,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1210423,7.8064671,0,1,6,-41.926857,-9,3,3,2021,12,0,47,0,1,0,0,9.6942282,9.6942282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.54,52.91,48.28,60.18,8.333333333333334,1,1,0,0,8,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5972,-9,5970,5971,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.31091,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3412,5973,-9,5970,5971,1,1,18,0,2,0,2,2,-9,0,4,7.1999469,7.2086163,0,0,0,-993.31921,-9,3,2,2021,9,0,40,0,1,0,1,3.3310993,3.3310993,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,977,0,0,0,0,0,0,179.55705 +2749,3413,5974,-9,5975,5976,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-866.98694,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3413,5975,5976,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.3476844,7.1042209,0,29,-3,81.857605,0,2,3,2021,12,0,25,27,1,0,0,6.5939255,6.5939255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,51.83,57.2,6.666666666666667,1,1,0,0,12,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3413,5976,5975,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,7.7147336,7.9991736,0,10,3,17.878527,0,-9,-9,2021,10,1,50,65,1,1,0,6.0071821,6.0071821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.45,57.49,6.666666666666667,1,1,0,0,12,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3414,5977,-9,5975,5976,1,0,19,0,1,0,2,2,1,0,4,5.7753758,5.8894691,0,0,0,-942.05035,-9,2,2,2021,7,1,8,0,1,1,1,4.4371223,4.4371223,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,615,192241.19,0,0,0,0,0,305.60867 +2750,3415,5978,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1000.5431,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.26858512,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,176,137093.98,0,0,0,0,0,868.70844 +2751,3416,5979,5982,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,8.763526,8.3332319,0,14,-2,32.846481,0,-9,1,2021,18,5,38,34,1,5,0,19.424749,19.424749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.98,65.45,32.32,27.54,5,1,1,0,0,8,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5980,-9,5982,5979,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.38397,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5981,-9,5982,5979,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.49957,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5982,5979,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.5340986,8.7265139,0,14,2,92.360886,0,3,3,2021,20,8,38,30,1,8,0,17.31053,17.31053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.32,27.54,13.98,65.45,6.666666666666667,1,1,0,0,10,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2752,3417,5983,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8414145,9.0933104,0,0,0,-951.9267,0,2,2,2021,8,0,40,42,1,0,0,20.70738,20.70738,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,171,223145.81,0,0,0,0,0,2117.804 +2752,3418,5984,-9,-9,5983,1,0,25,0,0,0,1,1,-9,0,4,8.6785374,8.7233896,0,0,0,-1000.3293,-9,-9,2,2021,12,1,70,0,1,1,1,11.928881,11.928881,.05,.05,0,0,0,0,0,0,0,0,0,3.3470502,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,347,172789.42,-37838.148,111382,89473.352,0,0,1929.8721 +2753,3419,5985,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.5473824,7.6393223,0,0,-995.41663,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6704731,40.89,53.59,-9,-9,6.666666666666667,2,3,0,0,2,8,3,1,1025,767418.06,205297.52,333268.59,0,0,0,1285.2024 +2754,3420,5986,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.1522,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,2.8689599,0,20.27523,0,1,1,0,4.5895061,0,46.13,19.57,-9,-9,5,1,1,0,0,0,11,2,0,1201,93883.969,0,199522.02,0,0,0,601.28674 +2755,3421,5987,5989,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.0810604,8.1581373,0,2,2,8.706109,0,2,2,2021,6,0,44,45,1,0,0,10.131946,10.131946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,58.55,22.17,10,1,1,0,0,8,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2755,3421,5988,-9,5989,5987,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.4209,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2755,3421,5989,5987,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.362462,8.4820471,5.2589836,2,-2,134.81052,0,-9,-9,2021,9,0,37,36,1,0,0,13.633429,13.633429,.05,.05,0,0,0,0,0,0,1,1,0,5.5937281,0,58.55,22.17,51.83,57.2,10,1,1,0,0,9,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2756,3422,5990,5992,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,6.7863212,6.8967156,0,3,-4,51.738556,0,-9,-9,2021,9,0,15,16,1,0,0,7.7394543,7.7394543,0,0,0,0,0,0,0,0,1,0,1,0,0,38.59,60.85,46.6,58.64,10,1,1,0,0,5,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2756,3422,5991,-9,5990,5992,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-898.30548,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2756,3422,5992,5990,-9,-9,1,1,26,1,1,0,2,2,-9,0,5,0,0,0,3,4,117.49236,0,-9,-9,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.6,58.64,38.59,60.85,10,1,1,0,0,0,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2757,3423,5993,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5789957,8.1497974,0,0,0,-971.4035,0,2,2,2021,9,0,38,40,1,0,0,12.635192,12.635192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,4,4,0,326,53919.445,104243.54,113488.76,39208.688,0,0,2051.3699 +2758,3424,5994,5995,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.7975893,8.2879162,9,2,-173.85466,0,3,2,2021,8,0,0,37,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,3.36097,8.3715038,57.16,56.15,43.01,31.98,8.333333333333334,1,1,0,0,14,8,4,1,758,214705.16,361494.22,0,0,0,4360.6372,3015.4819 +2758,3424,5995,5994,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,9,-2,66.944031,0,-9,-9,2021,10,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.01,31.98,57.16,56.15,6.666666666666667,1,1,0,0,8,8,4,1,758,214705.16,361494.22,0,0,0,4360.6372,3015.4819 +2759,3425,5996,-9,5998,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.7974,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2759,3425,5997,-9,5998,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1422,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2759,3425,5998,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.1292267,8.1681843,5.6428661,0,0,-933.61743,0,2,2,2021,12,0,38,46,1,0,0,8.3788843,8.3788843,.05,.05,0,0,0,0,0,0,1,1,0,5.6466103,0,57.15,43.87,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2760,3426,5999,6000,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.7550268,8.8144617,8.0269966,34,1,-63.34586,0,2,3,2021,6,0,40,40,1,0,0,28.600761,28.600761,.05,.05,0,0,0,0,0,0,1,1,0,7.1674948,8.0468216,57.16,56.15,35.78,51.13,8.333333333333334,1,1,0,0,13,2,5,1,580.5,2060061.9,1791068.8,200167.23,27573.746,3559.823,174.69635,5758.4746 +2760,3426,6000,5999,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.0980148,6.9306803,34,-1,-15.665013,0,2,3,2021,18,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,3.5356495,7.0523105,35.78,51.13,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,580.5,2060061.9,1791068.8,200167.23,27573.746,3559.823,174.69635,5758.4746 +2760,3427,6001,-9,6000,5999,1,1,26,0,0,0,2,2,-9,1,3,6.1358647,6.1026144,0,0,0,-974.354,0,1,1,2021,10,1,3,0,1,1,1,14.343631,14.343631,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,53.83,-9,-9,5,1,1,0,0,1,2,2,1,867,0,0,0,0,0,0,611.61438 +2761,3428,6002,6003,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.8956304,7.9458399,0,27,-4,126.27898,0,3,2,2021,16,4,20,20,1,4,0,16.633299,16.633299,0,0,0,0,0,0,0,0,0,0,0,0,0,39.39,37.66,61.68,50.1,5,3,4,0,0,10,6,4,1,846.5,192510.41,73490.766,126631.44,-14103.791,0,0,2006.8035 +2761,3428,6003,6002,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.2627854,7.0458403,0,27,4,-205.80344,0,-9,-9,2021,12,0,72,72,1,0,0,1.7727542,1.7727542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,39.39,37.66,3.333333333333333,3,4,0,0,10,6,4,1,846.5,192510.41,73490.766,126631.44,-14103.791,0,0,2006.8035 +2762,3429,6004,6005,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,7.0202599,6.978991,0,10,6,-3.8412576,0,-9,-9,2021,10,0,11,60,1,1,0,12.700459,12.700459,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,46.62,44.58,7,1,1,0,0,1,7,2,0,1910,1224441,517919.09,627993.63,0,0,0,1516.0255 +2762,3429,6005,6004,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,10,-6,-15.198892,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.62,44.58,52,47,8.333333333333334,1,1,0,0,0,7,2,0,1910,1224441,517919.09,627993.63,0,0,0,1516.0255 +2763,3430,6006,6008,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.7657328,8.7494993,0,12,4,-4.5703635,0,2,2,2021,13,3,30,33,1,3,0,22.260853,22.260853,.05,.05,0,0,0,0,0,42,1,1,0,0,0,47.28,48.29,48.87,58.55,6.666666666666667,1,1,0,0,11,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2763,3430,6007,-9,6006,6008,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2763,3430,6008,6006,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,7.5935693,7.8986888,6.5276718,12,-4,87.171089,0,3,3,2021,10,0,20,25,1,0,0,12.421516,12.421516,.05,.05,0,0,0,0,0,0,1,1,0,7.8477693,0,48.87,58.55,47.28,48.29,8.333333333333334,1,1,0,0,14,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2764,3431,6009,6010,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.900466,7.7692013,0,10,-1,37.527874,0,-9,-9,2021,13,1,20,20,1,1,0,18.155157,18.155157,.05,.05,0,0,0,0,0,0,0,0,0,6.9512162,0,39.73,37.29,46.46,51.53,6.666666666666667,1,1,0,0,11,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6010,6009,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.3283997,8.9398689,0,10,1,55.155483,0,2,3,2021,11,0,50,1,1,0,0,24.114681,24.114681,.05,.05,0,0,0,0,0,0,0,0,0,7.6006231,0,46.46,51.53,39.73,37.29,5,1,1,0,0,11,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6011,-9,6009,6010,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.77264,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6012,-9,6009,6010,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1009.5999,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2765,3432,6013,6014,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1326284,7.9561634,20,0,2.6970079,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0971855,7.7921753,61.17,24.81,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,534.5,1438144.6,836008.5,367435.5,0,0,0,4134.2832 +2765,3432,6014,6013,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8445706,8.3420429,7.5245237,18,9,93.155037,0,3,2,2021,6,0,40,40,1,0,0,7.0586085,7.0586085,0,0,0,1,0,0,0,7,1,1,0,7.7865419,7.495223,57.16,56.15,61.17,24.81,1.666666666666667,1,1,0,0,11,2,4,1,534.5,1438144.6,836008.5,367435.5,0,0,0,4134.2832 +2766,3433,6015,6016,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,9.062068,8.7955675,0,10,-3,-270.65378,0,2,3,2021,17,6,37,37,1,6,0,18.419664,18.419664,.05,.05,0,0,0,0,0,0,0,0,0,7.1632428,0,40.52,51.94,43.2,59.97,5,1,1,0,0,13,5,5,1,935.5,400003,198957.94,322144.25,85739.281,17110.463,696.98431,5318.9883 +2766,3433,6016,6015,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.7462902,8.9803171,0,10,3,76.120872,0,-9,-9,2021,13,1,35,50,1,1,0,20.168274,20.168274,.05,.05,0,0,0,0,0,0,0,0,0,7.5670443,0,43.2,59.97,40.52,51.94,5,1,1,0,0,12,5,5,1,935.5,400003,198957.94,322144.25,85739.281,17110.463,696.98431,5318.9883 +2767,3434,6017,6018,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-24.860195,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,52,48,8.333333333333334,1,1,0,0,0,11,3,1,1006,606386.88,482902.94,69607.359,0,0,0,1307.3063 +2767,3434,6018,6017,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1359138,8.1215982,6.9500723,6,1,85.044548,0,2,2,2021,10,0,38,40,1,1,0,8.6900091,8.6900091,0,0,0,0,0,0,0,0,1,1,0,4.6035099,6.601603,52,48,56.52,48.31,7,1,1,0,0,1,11,3,1,1006,606386.88,482902.94,69607.359,0,0,0,1307.3063 +2768,3435,6019,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.8057089,7.7429128,0,0,0,-1009.5396,0,2,3,2021,14,6,20,20,1,6,0,13.515295,13.515295,.05,.05,0,0,0,0,0,0,0,0,0,1.8585153,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,8,2,3,1,457,-40268.516,-133185,0,0,0,746.37262,1389.0302 +2769,3436,6020,6021,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.8687172,8.1176338,0,32,1,38.862053,0,3,2,2021,6,0,28,23,1,0,0,10.095162,10.095162,0,0,0,0,0,0,0,7,0,0,0,0,0,56.01,51.37,41.06,62.04,8.333333333333334,1,1,0,0,7,12,5,1,1070.5,192979.27,63053.25,501938.25,291203.72,0,0,5989.9316 +2769,3436,6021,6020,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.6651611,9.2749605,0,32,-1,-9.2050915,0,2,1,2021,19,7,43,43,1,7,0,42.86113,42.86113,0,0,0,0,0,0,0,0,0,0,0,2.9668565,0,41.06,62.04,56.01,51.37,5,1,1,0,0,9,12,5,1,1070.5,192979.27,63053.25,501938.25,291203.72,0,0,5989.9316 +2769,3437,6022,-9,6020,6021,1,1,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-970.22021,1,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0415046,0,30.83,62.98,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,374,31198.824,0,0,0,0,0,785.172 +2769,3438,6023,-9,6020,6021,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1006.4675,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,1,1,0,0,0,12,1,1,430,-15675.775,0,0,0,0,0,0 +2770,3439,6024,6025,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3342323,7.2953486,8,0,162.40642,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.214448,0,0,1,1,0,0,7.3438959,57.92,51.82,47.98,50.58,5,1,1,0,0,1,12,3,1,298.5,540488.25,325170.03,247859.13,0,0,0,1655.864 +2770,3439,6025,6024,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,0,-60.011116,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.98,50.58,57.92,51.82,1.666666666666667,1,1,0,0,0,12,3,1,298.5,540488.25,325170.03,247859.13,0,0,0,1655.864 +2771,3440,6026,6027,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4320989,7.0045013,0,3,0,-77.376862,0,-9,-9,2021,11,0,28,28,1,0,0,6.5078115,6.5078115,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,46.32,53.44,5,1,1,0,0,7,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2771,3440,6027,6026,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.387702,8.3806162,0,3,0,-24.867426,0,-9,-9,2021,11,0,45,44,1,0,0,9.0189095,9.0189095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,40.75,58.26,3.333333333333333,1,1,0,1,7,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2771,3440,6028,-9,6026,6027,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.3833,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2772,3441,6029,6030,-9,-9,1,1,91,0,0,0,2,2,-9,0,1,0,7.642622,7.4806576,56,4,-73.683075,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3951936,61.95,19.03,58.87,32.69,8.333333333333334,1,1,0,0,0,10,2,1,391.5,710886,140918.38,429354.81,0,0,0,2176.0698 +2772,3441,6030,6029,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,56,-4,-75.405792,-9,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.87,32.69,61.95,19.03,10,1,1,0,0,0,10,2,1,391.5,710886,140918.38,429354.81,0,0,0,2176.0698 +2773,3442,6031,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.8981619,8.09723,0,0,0,-1112.4537,0,3,-9,2021,7,0,47,32,1,0,0,5.2065043,5.2065043,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,15,12,4,0,1250,339648.09,440756.81,0,0,2137.4094,92.353409,1401.286 +2774,3443,6032,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6290455,8.6929741,0,0,0,-919.8139,0,1,1,2021,7,0,35,50,1,0,0,15.144278,15.144278,.05,.05,0,0,0,0,0,0,0,0,0,2.5465961,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,443,692698.19,521569.47,137622.83,54004.219,3489.1514,2332.8213,2011.0425 +2775,3444,6033,6034,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4485431,7.7731671,50,2,97.508835,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4283457,7.6697474,65.21000000000001,44.28,58.15,52.91,8.333333333333334,1,1,0,0,6,11,3,1,1859,833274.5,691917,247406.34,41273.512,0,0,3524.6106 +2775,3444,6034,6033,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.982326,6.9139843,50,-2,-83.785103,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2782845,7.2684274,58.15,52.91,65.21000000000001,44.28,8.333333333333334,1,1,0,0,4,11,3,1,1859,833274.5,691917,247406.34,41273.512,0,0,3524.6106 +2776,3445,6035,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-964.57178,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,58.77,-9,-9,0,4,2,1,1,5,9,1,0,1066,5842.0508,-53843.039,0,0,0,0,416.82596 +2777,3446,6036,6037,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,33,-8,24.168243,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.9196775,0,0,1,1,0,4.4264035,0,63.83,43.62,60.12,54.8,8.333333333333334,1,1,0,0,0,10,2,0,259,370225.25,-33911.25,147174.73,0,0,0,1850.8181 +2777,3446,6037,6036,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.4944797,6.8745999,33,8,30.618872,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4330554,6.691978,60.12,54.8,63.83,43.62,10,1,1,0,0,0,10,2,0,259,370225.25,-33911.25,147174.73,0,0,0,1850.8181 +2778,3447,6038,6039,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,8.7299004,8.4938202,38,6,-18.905991,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3789372,8.4587593,39.08,20.51,47.02,52.47,10,1,1,0,0,10,7,4,1,1058,1832580.8,780419.88,892733.13,0,0,0,3733.3696 +2778,3447,6039,6038,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.1775246,6.128706,38,-6,78.306137,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1154671,6.019434,47.02,52.47,39.08,20.51,6.666666666666667,1,1,0,0,0,7,4,1,1058,1832580.8,780419.88,892733.13,0,0,0,3733.3696 +2779,3448,6040,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-813.88831,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1571298,0,51.66,54.88,-9,-9,5,1,1,0,0,6,4,1,1,518,254915.78,-36592.359,142301.23,0,0,0,1198.8311 +2780,3449,6041,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4925675,7.2520356,0,0,-1073.1726,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,2.298358,0,27.622368,0,1,1,0,0,7.228395,39.38,43.19,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,1377,198384.27,-51931.168,211390.39,0,0,0,936.67828 +2781,3450,6042,6043,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7784472,7.6594596,46,-2,-18.778505,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.1455193,0,1,1,0,0,7.6770673,60.29,52.11,59.06,38.06,10,1,1,0,0,1,4,3,1,1008.5,1072989.5,621654.25,355991.56,0,0,0,2597.9668 +2781,3450,6043,6042,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.642837,6.8167133,46,2,49.685741,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1648622,59.06,38.06,60.29,52.11,8.333333333333334,1,1,0,0,0,4,3,1,1008.5,1072989.5,621654.25,355991.56,0,0,0,2597.9668 +2782,3451,6044,6045,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.9538412,9.0668707,0,3,1,-105.56582,0,1,1,2021,6,0,45,43,1,0,0,17.508581,17.508581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.77,58.57,10,1,1,0,0,5,4,5,1,593.5,72269.234,24834.842,184416.28,166891.09,0,13161.445,5465.5566 +2782,3451,6045,6044,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5480127,8.4840651,0,3,-1,-64.018524,0,-9,-9,2021,7,0,45,40,1,0,0,12.440325,12.440325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,57.16,56.15,10,1,1,0,0,5,4,5,1,593.5,72269.234,24834.842,184416.28,166891.09,0,13161.445,5465.5566 +2783,3452,6046,6047,-9,-9,1,0,54,0,0,0,1,1,-9,1,3,0,0,0,10,4,-40.780865,0,2,2,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7434905,0,61.14,32.41,57.34,47.92,8.333333333333334,1,1,0,1,0,12,4,1,804.5,572598.38,297454.38,138479.88,0,0,0,2964.1699 +2783,3452,6047,6046,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0849428,8.9728518,0,10,-4,13.449522,0,2,2,2021,7,0,40,45,1,0,0,18.062431,18.062431,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.34,47.92,61.14,32.41,6.666666666666667,1,1,0,0,10,12,4,1,804.5,572598.38,297454.38,138479.88,0,0,0,2964.1699 +2784,3453,6048,6049,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,7,0,0,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,25.857479,0,0,1,1,0,0,0,33.98,32.09,33.15,33.58,6.666666666666667,1,1,0,0,0,8,1,0,731.5,18182.24,-48418.113,53156.082,0,0,0,1960.4333 +2784,3453,6049,6048,6050,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,0,0,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,33.15,33.58,33.98,32.09,3.333333333333333,1,1,0,0,0,8,1,0,731.5,18182.24,-48418.113,53156.082,0,0,0,1960.4333 +2784,3454,6050,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.15765,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,8,1,0,1734,-22306.77,0,0,0,0,0,727.0415 +2785,3455,6051,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.3047328,7.2305942,0,0,-1089.0626,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6172309,7.2991714,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,217,462189.53,202127.77,307263.59,0,0,0,1418.0013 +2786,3456,6052,6053,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.6109471,7.0823779,52,0,-24.482807,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6199365,7.2819128,43.21,47.68,51.66,54.88,8.333333333333334,1,1,0,0,0,8,4,1,399,2001507.5,1261142.5,575359.75,0,1963.6895,0,4124.0791 +2786,3456,6053,6052,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.9532399,8.2442169,52,0,-86.392982,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.552063,7.692966,51.66,54.88,43.21,47.68,8.333333333333334,1,1,0,0,0,8,4,1,399,2001507.5,1261142.5,575359.75,0,1963.6895,0,4124.0791 +2787,3457,6054,6055,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.0599375,7.8754177,0,4,0,126.09044,0,2,2,2021,15,4,44,44,1,4,0,11.04723,11.04723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,58.32,50.22,6.666666666666667,1,1,0,0,9,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2787,3457,6055,6054,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,7.3261075,7.2504973,0,4,0,26.783016,0,2,2,2021,7,0,20,25,1,0,0,8.5486994,8.5486994,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,51.24,58.84,6.666666666666667,1,1,0,0,9,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2787,3457,6056,-9,6055,6054,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-917.10114,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2788,3458,6057,-9,6059,6058,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8441,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6058,6059,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.6117086,8.8817167,0,5,0,32.809784,0,-9,2,2021,5,0,70,84,1,0,0,10.259892,10.259892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.14,40.26,8.333333333333334,1,1,0,0,10,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6059,6058,-9,-9,1,0,39,1,2,0,2,2,-9,0,3,6.17311,6.3308725,0,6,0,-147.38719,0,2,-9,2021,6,0,20,0,1,0,0,3.5358312,3.5358312,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.14,40.26,57.06,57.76,8.333333333333334,1,1,0,0,7,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6060,-9,6059,6058,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.5848,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2789,3459,6061,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0341921,7.0127869,0,0,-1067.9188,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0555992,6.9465737,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,2482,383307.19,420890.66,75161.281,0,0,0,2019.2363 +2790,3460,6062,-9,-9,-9,1,0,25,0,0,0,1,1,1,0,5,8.2715311,8.1803827,0,0,0,-963.11847,-9,-9,-9,2021,13,1,45,0,1,1,0,10.120831,10.120831,0,0,0,0,0,0,0,0,0,0,0,4.2526488,0,44.45,62.04,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,471,33565.453,0,0,0,0,0,1310.0518 +2791,3461,6063,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.5140848,9.1956739,7.2482734,0,0,-791.49683,0,-9,-9,2021,6,0,40,55,1,0,0,34.745354,34.745354,.05,.05,0,0,0,0,0,2,1,1,0,7.9658427,7.6646647,54.9,54.53,-9,-9,8.333333333333334,3,4,0,0,5,9,5,0,576,1049412.6,569272.63,242873.36,0,0,0,3753.8276 +2792,3462,6064,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0517464,7.0037866,0,0,0,-936.05164,0,2,2,2021,12,0,11,12,1,0,0,11.039165,11.039165,0,0,0,0,0,0,0,0,0,0,0,2.4468725,0,55,55,-9,-9,5,1,1,0,0,8,9,2,0,3703,123945.09,0,279435,0,0,0,430.24036 +2793,3463,6065,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,7.1702428,7.3311501,0,0,0,-1070.9274,0,2,2,2021,6,0,25,20,1,0,0,6.7438445,6.7438445,.05,.05,0,0,0,0,0,0,1,1,0,.84879667,0,58.52,31.42,-9,-9,8.333333333333334,1,1,0,0,10,5,2,1,480,237700.36,5034.8418,136234.25,0,0,1816.6219,876.76715 +2793,3463,6066,-9,6065,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.35187,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,1,480,237700.36,5034.8418,136234.25,0,0,1816.6219,876.76715 +2793,3464,6067,-9,6065,-9,1,1,24,0,1,0,1,1,-9,0,4,7.413774,7.0871754,0,0,0,-1031.3497,0,1,-9,2021,7,2,20,30,1,2,1,8.3063068,8.3063068,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,57.55,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,870,-92621.633,0,0,0,0,0,965.0332 +2794,3465,6068,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.3117375,6.0634494,0,0,-976.68298,0,3,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,23.716652,0,0,1,1,0,0,6.0467801,26.46,60.5,-9,-9,6.666666666666667,1,1,0,1,0,9,2,1,194,328566.56,172917.8,238896,0,0,0,622.44 +2795,3466,6069,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4199009,8.3042908,0,0,0,-935.14337,-9,-9,-9,2021,5,0,70,0,1,0,0,7.2855282,7.2855282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,5,5,1,263,359958.38,543640.75,150127.5,133776.56,0,0,2552.9512 +2796,3467,6070,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.1667829,5.4111638,0,0,-918.21436,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3678689,59.69,38.61,-9,-9,10,1,1,0,0,0,12,2,1,697,-95978.133,-26778.951,0,0,0,0,440.43127 +2797,3468,6071,-9,6073,6072,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.46802,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6072,6073,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.1878071,8.7204685,0,14,-1,-37.330879,0,3,2,2021,7,0,48,48,1,0,0,22.142887,22.142887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6073,6072,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.7713304,7.6301627,0,14,1,42.135998,0,1,1,2021,6,0,32,32,1,0,0,10.817389,10.817389,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,10,1,1,0,0,6,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6074,-9,6073,6072,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.216,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2798,3469,6075,6077,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,0,0,0,4,-4,-150.08359,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8359087,0,44.87,56.46,60.02,56.42,8.333333333333334,1,1,0,0,0,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2798,3469,6076,-9,6075,6077,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.90936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2798,3469,6077,6075,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,8.959897,8.5136538,0,4,4,192.98732,0,1,1,2021,0,0,52,40,1,0,0,21.362421,21.362421,.05,.05,0,0,0,0,0,0,1,1,0,8.6344748,0,60.02,56.42,44.87,56.46,10,1,1,0,0,6,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2799,3470,6078,6079,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.0655255,7.0317135,43,1,-24.272768,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9037519,6.8486204,43.18,55.57,44.59,45.67,8.333333333333334,1,1,0,0,0,2,3,1,1569,1033846,563509.5,314162.69,0,0,0,3345.4778 +2799,3470,6079,6078,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9585061,7.7976904,4,-1,-115.43526,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6907282,44.59,45.67,43.18,55.57,6.666666666666667,1,1,0,0,0,2,3,1,1569,1033846,563509.5,314162.69,0,0,0,3345.4778 +2800,3471,6080,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,8.5486116,8.5121889,0,0,-1083.2433,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1237693,8.3377142,43.5,28.95,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1398,433655.22,557848.56,81472.805,0,8518.1572,0,2823.3533 +2801,3472,6081,6082,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.4482288,6.9673758,45,3,-40.781456,0,3,3,2021,9,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2332854,6.4824214,57.98,47.73,53.39,44.47,8.333333333333334,1,1,0,0,8,6,2,1,287,107420.58,-11830.371,174260.03,0,0,0,1634.1538 +2801,3472,6082,6081,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.9218335,5.5634141,45,-3,98.53775,0,3,3,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6900802,5.7792492,53.39,44.47,57.98,47.73,8.333333333333334,1,1,0,0,4,6,2,1,287,107420.58,-11830.371,174260.03,0,0,0,1634.1538 +2801,3473,6083,-9,6082,6081,1,0,35,0,0,0,1,1,0,0,4,0,0,0,0,0,-1086.4705,-9,3,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,47.42,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,519,-95714.695,0,0,0,0,0,0 +2802,3474,6084,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.71783,0,-9,-9,2021,9,1,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.37,31.12,-9,-9,8.333333333333334,1,1,1,1,5,2,2,0,93,97780.039,0,0,0,0,0,906.52728 +2803,3475,6085,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.8123293,7.6017747,0,0,0,-1012.9261,0,2,2,2021,15,2,60,42,1,2,0,6.0673213,6.0673213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.08,57.26,-9,-9,1.666666666666667,1,1,0,1,2,9,3,0,939.5,495515.38,-44654.984,0,0,10115.48,0,1855.3336 +2803,3475,6086,-9,6085,-9,1,0,16,0,1,1,3,0,-9,0,1,0,4.6994982,5.146255,0,0,-892.10809,-9,3,-9,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5569487,0,32,31,-9,-9,1.666666666666667,1,1,0,1,0,9,3,0,939.5,495515.38,-44654.984,0,0,10115.48,0,1855.3336 +2804,3476,6087,6090,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2787189,8.0546274,0,12,1,112.39513,0,-9,-9,2021,15,5,41,39,1,5,0,8.2611132,8.2611132,.05,.05,0,0,0,0,0,0,1,1,0,6.3258667,0,40.74,48.66,40.95,63.66,3.333333333333333,1,1,0,0,11,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6088,-9,6090,6087,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.1075,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6089,-9,6090,6087,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.6436,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6090,6087,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.5734043,9.3230371,0,12,-1,-95.451591,0,-9,-9,2021,10,2,30,30,1,2,0,53.155258,53.155258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.95,63.66,40.74,48.66,6.666666666666667,1,1,0,0,12,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2805,3477,6091,-9,6092,6093,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.5583,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6092,6093,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7548733,7.9189644,0,13,-7,60.244549,0,2,2,2021,7,2,39,39,1,2,0,8.8570633,8.8570633,0,0,0,0,0,0,0,0,0,0,0,0,0,51.95,53.02,47.61,46.11,8.333333333333334,3,4,0,0,5,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6093,6092,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.3308239,9.1134138,0,15,7,132.8269,0,-9,-9,2021,11,1,55,52,1,1,0,20.50371,20.50371,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,47.61,46.11,51.95,53.02,8.333333333333334,1,1,0,0,10,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6094,-9,6092,6093,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2806,3478,6095,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,9.8380709,9.673461,0,0,-858.19812,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9953796,9.850975,54,46,-9,-9,7,1,1,0,0,0,7,5,1,323,2179629,142573.23,663688.06,0,0,0,8575.2832 +2807,3479,6096,6097,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,8.3701172,8.5344658,5.4446821,4,-6,137.05626,0,3,3,2021,15,3,58,98,1,3,0,8.374608,8.374608,.05,.05,0,0,0,0,0,2,1,1,0,0,5.7451735,33.97,33.39,35.03,28.37,5,1,1,0,0,13,2,4,0,604.5,854860.5,775695.88,67884.766,0,0,0,4068.1733 +2807,3479,6097,6096,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,3.8255305,3.8971567,4,6,-24.534996,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,.05,.05,0,1,0,9.179307,0,0,1,1,0,0,3.6059351,35.03,28.37,33.97,33.39,3.333333333333333,1,1,0,0,0,2,4,0,604.5,854860.5,775695.88,67884.766,0,0,0,4068.1733 +2808,3480,6098,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,5.8337841,5.6951337,0,0,-863.81616,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8796759,5.4506211,57.16,56.15,-9,-9,10,1,1,0,0,5,1,2,1,698,254573.59,91890.086,234645.41,0,0,0,208.44249 +2809,3481,6099,-9,6100,6101,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-944.26392,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2809,3481,6100,6101,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,7.6122279,7.432786,0,4,0,159.70425,0,3,3,2021,6,0,47,35,1,0,0,4.4408398,4.4408398,0,0,0,0,0,0,0,0,1,1,0,0,0,41.42,48.37,51.07,29.37,10,2,3,0,0,5,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2809,3481,6101,6100,-9,-9,1,1,33,1,3,0,1,1,-9,0,5,7.8757925,7.8914657,0,4,0,49.064693,0,-9,-9,2021,7,0,50,50,1,0,0,5.3858609,5.3858609,0,0,0,0,0,0,0,0,1,1,0,0,0,51.07,29.37,41.42,48.37,6.666666666666667,2,3,0,0,4,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2810,3482,6102,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1201.7372,0,2,2,2021,23,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,0,1,1,0,0,0,7,1,0,584,-101219.99,-1916.3864,0,0,0,0,714.42218 +2811,3483,6103,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1001.7615,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7248365,0,61.31,47.65,-9,-9,10,1,1,0,0,0,8,1,1,862,2358.8245,0,0,0,0,0,1573.0339 +2812,3484,6104,6106,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.0706429,6.9511404,0,16,0,154.28598,0,3,1,2021,9,0,15,15,1,0,0,10.223626,10.223626,.05,.05,0,0,0,0,0,0,1,1,0,7.6801996,0,45.71,50.88,51.22,52.1,8.333333333333334,2,3,0,0,5,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6105,-9,6104,6106,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.16797,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6106,6104,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.7297516,8.7276688,0,16,0,157.64333,0,1,1,2021,6,0,37,40,1,0,0,18.101074,18.101074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.22,52.1,45.71,50.88,8.333333333333334,2,3,0,0,11,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6107,-9,6104,6106,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-957.51764,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2813,3485,6108,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,7.226428,7.5583701,0,0,0,-1141.9337,0,2,2,2021,9,1,18,0,1,1,0,11.899339,11.899339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,158,33274.328,44038.266,0,0,0,0,413.7229 +2814,3486,6109,6110,-9,-9,1,0,37,0,2,0,1,1,-9,0,1,7.5771232,7.3847294,0,13,-2,-21.156889,-9,2,3,2021,23,11,19,0,1,11,0,10.213946,10.213946,.05,.05,0,0,0,0,0,0,1,1,0,1.7203517,0,34.23,36.02,55.2,49.4,6.666666666666667,1,1,0,0,10,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6110,6109,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,8.877183,8.8124266,0,13,2,33.556229,-9,2,2,2021,8,0,47,0,1,0,0,14.673379,14.673379,.05,.05,0,0,0,0,0,0,1,1,0,2.0577443,0,55.2,49.4,34.23,36.02,6.666666666666667,1,1,0,0,12,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6111,-9,6109,6110,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8464,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6112,-9,6109,6110,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.71039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2815,3487,6113,6114,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.6382408,8.5427189,0,1,-2,-20.194912,-9,3,3,2021,20,8,44,0,1,8,0,17.097195,17.097195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.19,61.63,50,57,6.666666666666667,1,1,0,0,7,11,5,1,1461.5,80139.391,79567.898,112322.59,121864.3,3677.3442,0,4194.335 +2815,3487,6114,6113,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.8335562,8.1308851,0,1,2,148.0054,-9,-9,-9,2021,10,0,50,0,1,1,0,8.1015902,8.1015902,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,31.19,61.63,7,1,1,0,0,1,11,5,1,1461.5,80139.391,79567.898,112322.59,121864.3,3677.3442,0,4194.335 +2816,3488,6115,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.4714656,8.0268726,0,0,-1094.0154,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,7.721952,64.31,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,711,245463.86,18100.014,208389.69,0,0,0,1204.74 +2817,3489,6116,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,7.2442555,7.4766083,5.6460996,0,0,-996.72711,-9,2,2,2021,9,1,30,0,1,1,0,7.1770854,7.1770854,0,0,0,0,0,0,0,0,1,1,0,0,5.7612662,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,13,5,3,1,785,559874.44,335223.5,270187.19,0,0,0,1397.6729 +2818,3490,6117,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.3519783,8.356741,0,0,0,-912.00275,0,3,3,2021,6,0,46,41,1,0,0,11.647049,11.647049,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,15,13,4,1,302,1035.6309,48278.992,0,0,0,0,2417.1787 +2819,3491,6118,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.7892437,7.8887005,6.723031,0,0,-1042.2142,0,3,3,2021,32,12,50,-9,1,12,0,5.6767664,5.6767664,0,0,0,0,0,0,0,0,0,0,0,6.7416654,6.7879868,16.91,56.31,-9,-9,1.666666666666667,1,1,0,0,10,8,4,1,968,890507.63,32749.129,733196.25,75840.891,0,0,1516.4283 +2820,3492,6119,6120,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.1899977,7.9885278,58,-3,5.2072511,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.662426,59.71,50.89,57.74,42.24,8.333333333333334,1,1,0,0,0,10,3,1,587.5,1679134,445204.63,591774.19,0,0,0,1873.333 +2820,3492,6120,6119,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,58,3,-50.867531,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,42.24,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,587.5,1679134,445204.63,591774.19,0,0,0,1873.333 +2821,3493,6121,-9,6123,6122,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.7035,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2821,3493,6122,6123,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.3875189,8.5342197,0,5,0,-90.220215,0,-9,-9,2021,19,7,37,39,1,7,0,12.72066,12.72066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.6,54.09,48.84,34.06,6.666666666666667,1,1,0,1,4,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2821,3493,6123,6122,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.6265068,7.485548,0,5,0,11.004918,0,-9,-9,2021,7,1,24,25,1,1,0,11.386926,11.386926,.05,.05,0,0,0,0,0,0,1,1,0,1.5204865,0,48.84,34.06,32.6,54.09,8.333333333333334,1,1,0,1,10,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2822,3494,6124,-9,6125,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-922.74908,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,497.5,-20225.881,27908.604,0,0,0,0,1640.4346 +2822,3494,6125,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.6347604,7.7479272,5.2104149,0,0,-984.70502,0,-9,-9,2021,12,0,30,20,1,0,0,5.7965646,5.7965646,.05,.05,0,0,0,0,0,0,1,1,0,5.5817475,0,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,497.5,-20225.881,27908.604,0,0,0,0,1640.4346 +2823,3495,6126,6127,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.8404441,7.7877851,48,11,-35.941208,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4567986,7.9557281,59.07,43.05,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,955.5,1321205.8,372935.25,390676.63,0,0,0,3532.8047 +2823,3495,6127,6126,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.5070987,7.5397673,48,-11,55.380417,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.7696447,7.8833413,59.14,52.5,59.07,43.05,10,1,1,0,0,0,2,4,1,955.5,1321205.8,372935.25,390676.63,0,0,0,3532.8047 +2824,3496,6128,-9,6129,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.5076,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2824,3496,6129,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,0,0,-992.74139,0,2,1,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.21,55.18,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2824,3496,6130,-9,6129,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-895.98694,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.71,59.35,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2825,3497,6131,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-908.93396,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,21.473612,0,0,1,1,0,0,0,47.97,17.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,420,247693.63,0,152670.58,0,0,0,308.31949 +2826,3498,6132,6133,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.0823493,7.089992,12,8,-72.422195,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,.1156057,2.7628422,27.286949,120,1,1,0,0,7.0343103,51.83,22.11,56.47,15.01,8.333333333333334,1,1,0,1,0,2,2,0,1611,977812.38,413265.31,461716.47,0,0,0,2429.3899 +2826,3498,6133,6132,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,12,-8,45.983524,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,15.01,51.83,22.11,6.666666666666667,1,1,0,1,0,2,2,0,1611,977812.38,413265.31,461716.47,0,0,0,2429.3899 +2827,3499,6134,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9783001,8.0121031,0,0,0,-956.2428,0,2,3,2021,13,1,52,48,1,1,0,6.9003334,6.9003334,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,1835,80688.469,0,209801.11,62533.617,0,0,988.50464 +2828,3500,6135,-9,6137,6136,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.3141,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2828,3500,6136,6137,-9,-9,1,1,30,0,1,0,1,1,-9,0,4,7.6977348,7.7950273,0,5,1,103.0114,0,2,2,2021,10,0,45,40,1,1,0,5.3350983,5.3350983,.05,.05,0,0,0,0,0,0,1,1,0,3.0451145,0,49,58,40.86,51.7,7,1,1,0,0,1,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2828,3500,6137,6136,-9,-9,1,0,29,0,1,0,1,1,-9,0,3,8.1095762,8.0533142,0,5,-1,-32.787971,0,-9,-9,2021,14,2,45,38,1,2,0,6.0562387,6.0562387,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,51.7,49,58,6.666666666666667,1,1,0,0,5,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2829,3501,6138,6139,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.7292747,7.7826881,8,-1,-32.025726,0,3,3,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2740722,7.7302384,59.7,53.75,47.98,54.13,10,1,1,0,0,8,13,4,1,587,854309.75,683789.63,177551.8,0,0,0,2488.4082 +2829,3501,6139,6138,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.3389854,7.4910188,8,1,131.60168,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.631938,7.7112942,47.98,54.13,59.7,53.75,8.333333333333334,1,1,0,0,5,13,4,1,587,854309.75,683789.63,177551.8,0,0,0,2488.4082 +2830,3502,6140,6141,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.6662254,8.6804667,43,-4,56.9398,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2673591,8.4405756,58.15,52.91,59.88,45.34,8.333333333333334,1,1,0,0,9,8,5,1,1104.5,2389996.3,953418.88,943121.63,0,0,0,6190.8428 +2830,3502,6141,6140,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3994598,8.1776514,43,4,-39.691311,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4710655,59.88,45.34,58.15,52.91,8.333333333333334,1,1,0,0,9,8,5,1,1104.5,2389996.3,953418.88,943121.63,0,0,0,6190.8428 +2831,3503,6142,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,8.5051413,8.769331,0,0,-926.04358,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3416967,8.2398281,60.62,41.03,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,821,200072.02,124893.25,248503.55,0,0,0,3583.8916 +2832,3504,6143,-9,6144,6146,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1032.9618,-9,2,1,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23928,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6144,6146,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.8030305,6.7378707,0,22,-11,-15.074627,0,2,1,2021,8,0,20,20,1,0,0,4.5009875,4.5009875,0,0,0,0,0,0,0,0,0,0,0,8.2858562,0,54.1,59.11,57.16,56.15,10,1,1,0,0,7,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6145,-9,6144,6146,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1026.0923,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6146,6144,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,9.5532761,9.7571421,5.9019327,23,11,-1.7548808,0,2,2,2021,6,0,40,50,1,0,0,35.218796,35.218796,0,0,0,0,0,0,0,0,0,0,0,6.2637439,6.1334524,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2833,3505,6147,6148,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8445635,9.2163687,7.8156967,34,0,-18.572708,0,3,2,2021,6,0,55,42,1,0,0,14.955863,14.955863,0,0,.05,0,0,0,0,2,0,0,0,6.1325808,7.9274526,54.2,57.49,41.17,59.31,8.333333333333334,1,1,0,0,8,6,5,1,966,1158380.6,879150,238942.66,0,0,0,6419.5127 +2833,3505,6148,6147,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.4928598,8.9525661,0,34,0,-157.65216,0,3,3,2021,9,0,38,39,1,0,0,22.149176,22.149176,0,0,0,0,0,0,0,0,0,0,0,6.1300306,0,41.17,59.31,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,966,1158380.6,879150,238942.66,0,0,0,6419.5127 +2834,3506,6149,6150,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.469574,8.7667027,0,3,-4,-60.709076,0,-9,-9,2021,10,0,48,38,1,0,0,13.48775,13.48775,.05,.05,0,0,0,0,0,0,0,0,0,2.4022772,0,57.16,56.15,52.99,51.28,8.333333333333334,1,1,0,0,12,4,5,1,348.5,347066.44,243346.5,204012.66,116685.45,12082.672,6313.9585,4595.0391 +2834,3506,6150,6149,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.859808,8.6912975,0,3,4,107.99036,0,2,3,2021,8,0,45,40,1,0,0,16.203033,16.203033,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,348.5,347066.44,243346.5,204012.66,116685.45,12082.672,6313.9585,4595.0391 +2835,3507,6151,6152,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,59,1,0,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.069562,0,52,45,48.42,44.15,8,1,1,0,0,0,7,1,0,864.5,490326.75,0,429422,0,0,0,1099.5526 +2835,3507,6152,6151,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,59,-1,0,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,1.5860554,0,120,1,1,0,0,0,48.42,44.15,52,45,8.333333333333334,1,1,0,0,0,7,1,0,864.5,490326.75,0,429422,0,0,0,1099.5526 +2836,3508,6153,-9,6154,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.74103,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,883,-132673.56,0,0,0,0,0,2118.0039 +2836,3508,6154,-9,-9,-9,1,0,39,0,1,0,2,2,0,0,2,0,0,0,0,0,-859.8576,-9,2,3,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.14,38.88,-9,-9,8.333333333333334,1,1,0,0,8,9,1,0,883,-132673.56,0,0,0,0,0,2118.0039 +2837,3509,6155,6156,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.5154676,5.3379407,6,-2,-38.329922,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,67.716324,0,0,1,1,0,0,5.2864957,53,45,55,45,8,1,1,0,0,0,11,2,1,520,553102.38,119815.16,53690.711,0,0,0,1894.5095 +2837,3509,6156,6155,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.5238886,6.6587481,6,2,2.207767,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8738418,55,45,53,45,8,1,1,0,0,0,11,2,1,520,553102.38,119815.16,53690.711,0,0,0,1894.5095 +2838,3510,6157,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,7.3012986,7.6693954,7.2037067,0,0,-1044.8748,0,3,3,2021,13,1,21,15,1,1,0,8.7850666,8.7850666,0,0,0,0,0,0,0,0,1,1,0,0,7.5186143,46.22,23.84,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,925,150755.19,161980.91,0,0,0,0,1804.4832 +2839,3511,6158,6159,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,12,6,-31.897572,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6245303,0,64.81,27.15,45,37,10,1,1,0,0,0,4,2,1,3491,261610.52,-61230.258,208234.17,0,0,0,2108.2708 +2839,3511,6159,6158,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.8752766,6.7828102,12,-6,-18.846378,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4500003,6.6415553,45,37,64.81,27.15,8.333333333333334,1,1,0,0,0,4,2,1,3491,261610.52,-61230.258,208234.17,0,0,0,2108.2708 +2840,3512,6160,-9,-9,-9,1,0,41,2,2,0,2,2,-9,0,3,7.6318855,7.5433512,0,0,0,-916.21942,-9,3,2,2021,11,0,40,0,1,0,0,6.5742836,6.5742836,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.02,55.17,-9,-9,5,1,1,0,1,6,9,3,0,738,-54495.762,-53089.43,0,0,0,0,1741.76 +2840,3513,6161,-9,6160,-9,1,0,23,2,2,0,2,2,-9,0,3,0,0,0,0,0,-969.50848,0,2,-9,2021,12,0,0,30,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.87,46.41,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2840,3513,6162,-9,6161,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-919.63159,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2840,3513,6163,-9,6161,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.4376,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2841,3514,6164,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.5532165,6.6090589,0,0,-983.20563,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,37.419716,0,0,1,1,0,0,6.9689364,55.6,7.62,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,251,432535.38,132949.34,98770.453,0,0,0,2705.3611 +2842,3515,6165,6166,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5374489,8.1678953,0,1,-7,2.4349787,-9,-9,-9,2021,6,2,38,0,1,2,0,14.883933,14.883933,.05,.05,0,0,0,0,0,7,0,0,0,.14715262,0,52.55,55.93,54.2,57.49,6.666666666666667,1,1,0,0,7,12,4,0,388,69225.25,36324.836,95157.805,31140.285,4641.1777,0,2484.9915 +2842,3515,6166,6165,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,7.8852882,7.7687931,0,1,7,23.658136,-9,2,2,2021,5,0,39,0,1,0,0,6.812758,6.812758,.05,.05,0,0,0,0,0,2,0,0,0,.48735809,0,54.2,57.49,52.55,55.93,8.333333333333334,1,1,0,0,7,12,4,0,388,69225.25,36324.836,95157.805,31140.285,4641.1777,0,2484.9915 +2843,3516,6167,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.3362679,6.2304211,0,0,-963.19379,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4356787,0,0,1,1,0,2.971101,6.5236998,50.92,31.76,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,504,-123561.52,19747.744,0,0,0,0,674.91913 +2844,3517,6168,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.7132807,7.9993067,0,0,-1016.8273,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1889114,53.81,45.69,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,1216,578992.81,333632.78,-6097.1504,0,2219.7771,0,559.31079 +2845,3518,6169,6170,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.1397185,6.2477922,12,11,54.746983,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7577643,6.3930383,36.74,39.98,35.44,36.71,6.666666666666667,1,1,0,0,6,6,2,1,1484.5,173154.25,0,149525.03,0,0,0,1104.2393 +2845,3518,6170,6169,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,20,-11,-30.045103,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,35.44,36.71,36.74,39.98,5,1,1,0,0,2,6,2,1,1484.5,173154.25,0,149525.03,0,0,0,1104.2393 +2846,3519,6171,6172,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2906485,7.8628612,0,8,1,-32.608814,-9,3,2,2021,10,0,37,0,1,0,0,10.741943,10.741943,.05,.05,0,0,0,0,0,0,1,0,1,.68092495,0,53.59,49.64,58.15,52.91,8.333333333333334,1,1,0,0,11,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3519,6172,6171,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,7.2071104,7.2877951,0,8,-1,77.715454,0,3,2,2021,6,0,22,25,1,0,0,6.5920978,6.5920978,0,0,0,0,0,0,0,0,1,0,1,0,0,58.15,52.91,53.59,49.64,8.333333333333334,1,1,0,0,11,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3519,6173,-9,6172,6171,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-981.23541,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3520,6174,-9,6172,6171,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-946.43756,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,13,2,1,716,-85034.75,0,0,0,0,0,0 +2846,3521,6175,-9,6172,6171,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1018.6393,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1429,-33316.824,0,0,0,0,0,0 +2847,3522,6176,6177,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.6819758,4.8300266,10,-1,-82.061501,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,0,1,4.3393431,4.663456,55.61,50.3,33.02,37.98,8.333333333333334,1,1,0,0,0,2,2,1,446,159286.78,13414.621,0,0,0,0,1661.1074 +2847,3522,6177,6176,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,4.3674626,4.0450406,40,1,-110.30737,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,74.700691,.81373024,0,1,0,1,7.1138978,4.2747278,33.02,37.98,55.61,50.3,8.333333333333334,1,1,0,0,0,2,2,1,446,159286.78,13414.621,0,0,0,0,1661.1074 +2847,3523,6178,-9,6177,6176,1,0,57,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1175.8007,-9,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,44.43,56.74,-9,-9,5,1,1,0,0,0,2,1,1,831,76070.25,0,0,0,0,2997.0283,912.6217 +2848,3524,6179,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.1670384,7.4580169,0,0,-1028.1514,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0322294,7.3936601,55.56,51.53,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,386,492836.59,180698.94,191082.3,0,0,721.02924,1614.4681 +2849,3525,6180,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1076.7504,0,2,2,2021,12,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,1284,248601.44,0,394100.63,3030.1882,0,0,1379.4805 +2849,3526,6181,-9,6180,-9,1,0,21,0,0,0,2,2,-9,0,5,8.0107603,7.5801463,0,0,0,-1053.6318,0,3,-9,2021,9,1,35,39,1,1,1,7.8443308,7.8443308,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,1871,20614.809,0,0,0,0,0,2424.4309 +2850,3527,6182,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1102.4983,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,2,1,1,3633,96298.75,0,0,0,0,2504.0215,1410.3639 +2851,3528,6183,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-928.73895,-9,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.38,23.69,-9,-9,5,1,1,0,0,8,12,2,0,1393,-168951.47,0,0,0,0,0,784.99969 +2852,3529,6184,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6299295,6.6849132,0,0,-1018.642,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.931612,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,449,424247.88,241824.81,220423.09,0,0,0,324.10498 +2853,3530,6185,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,5.7285333,5.9735398,0,0,-896.35675,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7308617,5.7780685,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,886,350331.06,81869.492,248983.41,0,0,0,1134.2083 +2854,3531,6186,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,0,0,-949.54926,0,3,2,2021,15,3,0,16,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.08,47.16,-9,-9,8.333333333333334,1,1,1,0,6,11,2,0,674,113999.09,0,0,0,0,0,767.07147 +2855,3532,6187,6188,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.158988,6.8274636,0,26,-6,29.324196,0,-9,-9,2021,4,1,25,27,1,1,0,4.3338771,4.3338771,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53,55,10,2,3,0,0,6,1,4,1,1152.5,97721.156,158997.03,0,0,0,0,1889.5502 +2855,3532,6188,6187,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.1335258,8.2312641,0,7,6,39.425175,0,-9,-9,2021,9,0,39,40,1,1,0,9.2211313,9.2211313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,55,57.06,57.76,8,2,3,0,0,1,1,4,1,1152.5,97721.156,158997.03,0,0,0,0,1889.5502 +2855,3533,6189,-9,6187,6188,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-895.67267,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,2,1,2,1,477,117347.08,0,0,0,0,0,0 +2855,3534,6190,-9,6187,6188,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-983.18073,-9,2,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,1,1,1,2754,0,0,0,0,0,0,808.26178 +2856,3535,6191,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0053282,8.3756304,0,0,0,-1051.0909,0,3,3,2021,6,0,40,40,1,0,0,8.845027,8.845027,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,9,12,4,0,906,806470.06,333927.41,267326.03,0,0,0,1374.1326 +2857,3536,6192,-9,6195,6193,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.11133,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6193,6195,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.8133616,8.0550337,0,3,1,35.106091,0,2,2,2021,6,0,47,43,1,0,0,7.9376073,7.9376073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,53.44,55.06,8.333333333333334,1,1,0,0,13,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6194,-9,6195,6193,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.5089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6195,6193,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,0,0,0,3,-1,-11.773537,-9,-9,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,48.87,58.55,8.333333333333334,1,1,0,0,1,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2858,3537,6196,6199,-9,-9,1,0,31,2,6,0,2,2,-9,1,3,0,5.3455811,5.7748971,4,4,-11.19628,0,1,1,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.7547445,0,45.92,53.14,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6197,-9,6196,6199,1,0,1,2,6,1,3,0,-9,0,4,0,0,0,0,0,-988.59033,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6198,-9,6196,6199,1,0,5,2,6,1,3,0,-9,0,4,0,0,0,0,0,-980.62836,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6199,6196,-9,-9,1,1,27,2,6,0,2,2,-9,0,4,8.6650085,8.0693684,0,4,-4,-41.142784,0,-9,-9,2021,9,0,60,60,1,0,0,8.6374683,8.6374683,.05,.05,0,0,0,0,0,0,1,1,0,1.925321,0,57.16,56.15,45.92,53.14,8.333333333333334,1,1,0,0,3,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6200,-9,6196,6199,1,0,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-979.1297,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6201,-9,6196,6199,1,1,12,2,6,1,3,0,-9,0,3,0,0,0,0,0,-1120.3545,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6202,-9,6196,6199,1,0,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1124.4851,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6203,-9,6196,6199,1,0,9,2,6,1,3,0,-9,0,4,0,0,0,0,0,-932.85516,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2859,3538,6204,6205,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,7,5,-65.761299,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0764899,0,53.87,28.08,57.33,53.46,6.666666666666667,1,1,0,0,2,6,2,1,498,473653.66,146443.64,200434.69,0,29756.818,0,1870.9272 +2859,3538,6205,6204,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0433068,5.8506184,7,-5,75.878242,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5049667,6.0621171,57.33,53.46,53.87,28.08,10,1,1,0,0,0,6,2,1,498,473653.66,146443.64,200434.69,0,29756.818,0,1870.9272 +2860,3539,6206,6207,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,9.3097477,8.8719501,0,22,0,93.764679,0,2,2,2021,3,0,55,50,1,0,0,28.970316,28.970316,.05,.05,0,0,0,0,0,0,0,0,0,3.1397614,0,59.19,51.29,56.92,49.39,8.333333333333334,1,1,0,0,11,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3539,6207,6206,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.6374016,9.5750294,0,22,0,30.096992,0,2,2,2021,11,0,50,52,1,0,0,33.799809,33.799809,.05,.05,0,0,0,0,0,0,0,0,0,2.1015053,0,56.92,49.39,59.19,51.29,8.333333333333334,1,1,0,0,14,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3539,6208,-9,6206,6207,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.38513,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3540,6209,-9,6206,6207,1,0,19,0,1,0,2,2,0,0,5,0,0,0,0,0,-1074.7389,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1082,-193662.06,120792.17,0,0,0,0,-394.29202 +2860,3541,6210,-9,6206,6207,1,0,19,0,1,0,2,2,1,0,5,7.8515649,8.1387148,0,0,0,-1020.4649,-9,1,1,2021,12,0,38,0,1,0,1,7.2631741,7.2631741,0,0,0,0,0,0,0,0,0,0,0,0,0,38.78,62.13,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,326,-123921.32,0,0,0,0,0,947.35876 +2861,3542,6211,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.7968745,4.998548,0,0,-1073.8375,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6607924,4.6961279,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,262,78443.031,0,191604.16,73777.664,0,905.91321,1089.8925 +2862,3543,6212,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.1362672,6.0858946,0,0,-957.22443,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8395162,5.8404083,37.51,34.33,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,1214,145340.52,189735.02,-33380.086,0,0,1339.6857,818.69556 +2863,3544,6213,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.6874,0,3,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,27.72,-9,-9,0,1,1,0,1,3,6,2,0,4293,71105.641,0,0,0,0,0,-55.497028 +2863,3545,6214,-9,6213,-9,1,0,37,0,0,0,2,2,-9,0,4,7.5942521,7.2290545,0,0,0,-1087.776,-9,3,-9,2021,11,0,38,0,1,2,1,6.9261875,6.9261875,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,6,3,0,1572,-86297.461,0,0,0,0,16577.148,1089.7197 +2864,3546,6215,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.4113903,9.5929079,0,0,0,-1074.5844,0,-9,-9,2021,6,1,120,50,1,1,0,14.892477,14.892477,.05,.05,0,0,0,0,0,0,0,0,0,2.0900142,0,50.65,60.47,-9,-9,5,1,1,0,0,12,7,5,0,944,291011.41,291468.22,195508.38,83762.5,0,0,6109.3228 +2865,3547,6216,6217,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,54,-2,-17.389982,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38860244,0,44.17,44.46,60.29,52.11,6.666666666666667,1,1,0,0,7,6,2,1,651.5,1542060.5,213654.67,875756.06,0,4154.0659,0,1685.1099 +2865,3547,6217,6216,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.4309278,7.2367549,54,2,46.103416,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4075017,7.396637,60.29,52.11,44.17,44.46,8.333333333333334,1,1,0,0,2,6,2,1,651.5,1542060.5,213654.67,875756.06,0,4154.0659,0,1685.1099 +2866,3548,6218,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.78156,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,3.9902592,0,0,1,1,0,0,0,37.86,31.43,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,926,13090.892,0,0,0,0,0,1578.3975 +2867,3549,6219,6220,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,7.5538907,7.6950374,0,24,-10,-124.87022,0,2,2,2021,18,6,25,25,1,6,0,8.8638029,8.8638029,0,0,0,0,0,0,0,42,1,1,0,0,0,32.85,29.79,54.37,54.8,5,1,1,0,0,2,10,3,0,631.5,-77941.289,653.57715,246585.47,122803.65,0,2921.5859,2098.4065 +2867,3549,6220,6219,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.1472301,7.2788634,0,24,10,113.25298,-9,3,2,2021,10,0,72,0,1,0,0,2.7155209,2.7155209,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.37,54.8,32.85,29.79,5,1,1,0,0,11,10,3,0,631.5,-77941.289,653.57715,246585.47,122803.65,0,2921.5859,2098.4065 +2868,3550,6221,6222,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.2903471,6.6749177,63,0,32.602661,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,16.510532,0,0,1,1,0,0,6.833889,24.93,19.95,43.03,26.89,5,1,1,0,0,0,9,2,1,496,483266.25,77207.57,415801.09,0,0,0,2380.2498 +2868,3550,6222,6221,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,3.5821438,4.2224646,8,0,-120.97377,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,18.502464,0,120,1,1,0,3.3684239,4.0191288,43.03,26.89,24.93,19.95,5,1,1,0,0,0,9,2,1,496,483266.25,77207.57,415801.09,0,0,0,2380.2498 +2869,3551,6223,-9,6224,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-991.84058,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,4,1,3350,-40088.266,49827.617,0,0,0,0,2396.4907 +2869,3551,6224,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5614243,8.4701786,0,0,0,-972.99445,0,2,2,2021,12,0,34,35,1,0,0,16.961227,16.961227,.05,.05,0,0,0,0,0,0,1,1,0,3.6339834,0,44.51,40.48,-9,-9,5,1,1,0,0,9,6,4,1,3350,-40088.266,49827.617,0,0,0,0,2396.4907 +2870,3552,6225,6226,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.3140612,9.2885017,0,24,5,6.5068722,0,2,3,2021,9,0,37,38,1,1,0,32.43602,32.43602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,55.36,51.57,8,1,1,0,0,1,7,5,1,661,2584557,2085863.9,389055.94,0,0,0,5012.5635 +2870,3552,6226,6225,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.946671,7.8843336,0,24,-5,48.674847,0,1,1,2021,8,0,40,47,1,0,0,8.39779,8.39779,.05,.05,0,0,0,0,0,0,1,1,0,2.9732869,0,55.36,51.57,53,54,8.333333333333334,1,1,0,0,7,7,5,1,661,2584557,2085863.9,389055.94,0,0,0,5012.5635 +2871,3553,6227,6228,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.0754738,5.5458746,10,11,-45.448101,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1532378,5.1058173,54.63,58.83,58.15,52.91,10,1,1,0,0,0,9,2,1,364.5,397976.5,136120.05,247016.84,0,0,0,874.79272 +2871,3553,6228,6227,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,41,-11,44.144829,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6190284,0,58.15,52.91,54.63,58.83,10,1,1,0,0,10,9,2,1,364.5,397976.5,136120.05,247016.84,0,0,0,874.79272 +2872,3554,6229,6230,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.5387421,8.4066744,5.3829675,6,1,-25.335388,0,2,2,2021,14,1,37,37,1,1,0,16.694279,16.694279,0,0,0,0,0,0,0,0,1,1,0,5.1095376,5.889564,32.83,48.42,44.82,52.64,5,1,1,0,0,7,7,4,0,711.5,908689.81,3578.0117,799728.25,0,1002.3751,500.44958,3332.7104 +2872,3554,6230,6229,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,4.481935,4.3111062,0,6,-1,-104.19482,0,-9,-9,2021,12,0,3,5,1,0,0,2.5233531,2.5233531,0,0,0,1,0,0,0,0,1,1,0,0,0,44.82,52.64,32.83,48.42,6.666666666666667,1,1,0,0,7,7,4,0,711.5,908689.81,3578.0117,799728.25,0,1002.3751,500.44958,3332.7104 +2873,3555,6231,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,6.0113192,6.2439384,0,0,-1086.4287,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3182564,6.1924043,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,0,435,335676.25,-1104.4072,182349.89,0,0,0,1288.8253 +2874,3556,6232,6233,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,2.1294358,2.4382029,44,-1,102.68194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4432328,2.337307,54.97,47.63,60.12,54.8,8.333333333333334,1,1,0,0,8,4,2,1,565,70210.055,75213,0,0,0,0,1384.4634 +2874,3556,6233,6232,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,5.9284577,5.6334715,45,1,-113.63124,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3841891,6.0836062,60.12,54.8,54.97,47.63,1.666666666666667,1,1,0,0,6,4,2,1,565,70210.055,75213,0,0,0,0,1384.4634 +2875,3557,6234,6235,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.0463052,7.0427508,11,-1,117.95436,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8858056,55.93,52.62,52.48,55.6,8.333333333333334,1,1,0,0,4,6,2,1,513,592935.13,349041.25,149857.44,0,0,0,2016.1123 +2875,3557,6235,6234,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,11,1,-76.30777,0,3,3,2021,6,0,0,14,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7138886,0,52.48,55.6,55.93,52.62,8.333333333333334,1,1,0,0,14,6,2,1,513,592935.13,349041.25,149857.44,0,0,0,2016.1123 +2876,3558,6236,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.720747,8.7528458,0,0,0,-1097.7965,0,3,3,2021,11,0,37,47,1,2,0,17.159311,17.159311,.05,.05,0,0,0,0,0,7,0,0,0,3.8863811,0,48,48,-9,-9,7,1,1,0,0,9,6,5,1,1416,590920.06,332217.28,223166.03,53198.105,0,0,1723.7418 +2877,3559,6237,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1017.9796,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.17,17.85,-9,-9,8.333333333333334,1,1,0,0,13,9,1,0,340,-437.13425,0,0,0,0,0,165.47041 +2878,3560,6238,6239,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7636452,7.7138,10,1,-44.120911,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0249815,7.9439926,48.34,52.06,43.44,43.91,8.333333333333334,1,1,0,0,8,11,3,1,1453.5,946075.63,697459.13,275972.53,0,0,0,3177.3005 +2878,3560,6239,6238,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.3957305,5.4265027,10,-1,-40.540546,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1946721,43.44,43.91,48.34,52.06,3.333333333333333,1,1,0,0,2,11,3,1,1453.5,946075.63,697459.13,275972.53,0,0,0,3177.3005 +2879,3561,6240,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.200366,6.0183306,0,0,-1067.0829,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9134359,20.32,39.7,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,270,11731.009,-34095.109,201451.42,0,0,0,957.67828 +2880,3562,6241,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.8580694,6.6489391,0,0,-954.28021,0,3,3,2021,9,2,0,15,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7566123,6.451932,63.24,45.09,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,165,-196945.77,27158.16,0,0,0,0,1773.4574 +2881,3563,6242,6243,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,54,5,97.84166,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.35,43.87,42.44,30.9,5,1,1,0,0,0,6,2,1,1625.5,200823.61,174475.02,41541.371,0,0,0,96.992859 +2881,3563,6243,6242,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.0539074,5.9944887,54,-5,-71.569733,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,8.4106932,0,0,1,1,0,0,6.1733065,42.44,30.9,55.35,43.87,5,1,1,0,0,0,6,2,1,1625.5,200823.61,174475.02,41541.371,0,0,0,96.992859 +2882,3564,6244,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.234869,8.0878267,0,0,0,-1148.9554,0,2,1,2021,7,0,45,46,1,0,0,6.4318738,6.4318738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.46,47.78,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,525,42908.559,50524.707,0,0,0,0,956.20074 +2883,3565,6245,6246,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4196939,8.1257248,11,7,-38.090508,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3821847,8.0287991,62.1,51.16,48.82,20.07,8.333333333333334,1,1,0,0,3,10,4,1,831.5,1682778.8,688991.63,567691.88,0,0,0,4210.3281 +2883,3565,6246,6245,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,7.2165966,7.0238056,11,-7,39.684708,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,27.981737,0,0,1,1,0,2.4285836,7.031601,48.82,20.07,62.1,51.16,3.333333333333333,1,1,0,0,8,10,4,1,831.5,1682778.8,688991.63,567691.88,0,0,0,4210.3281 +2884,3566,6247,-9,6248,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.44135,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2884,3566,6248,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.327136,7.7794785,5.8044529,0,0,-826.48529,0,3,3,2021,11,0,36,24,1,0,0,5.4347215,5.4347215,0,0,0,0,0,0,0,0,1,1,0,5.6537843,0,52.3,57.2,-9,-9,8.333333333333334,1,1,0,0,10,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2884,3566,6249,-9,6248,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8372,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2885,3567,6250,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.02136,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60228646,0,48.92,37.32,-9,-9,3.333333333333333,1,1,0,0,12,10,1,0,882,95148.75,0,0,0,8383.4316,1960.8606,856.01825 +2886,3568,6251,6252,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0010548,7.6792402,11,8,-78.576828,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0127764,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,7,12,4,1,543,1720326.8,1111394.8,334290.13,0,670.47278,0,2819.7898 +2886,3568,6252,6251,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.7772641,7.5879922,11,-8,-134.13057,0,2,2,2021,7,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6884761,7.2802148,60.12,54.8,54.2,57.49,10,1,1,0,0,12,12,4,1,543,1720326.8,1111394.8,334290.13,0,670.47278,0,2819.7898 +2886,3569,6253,-9,6252,6251,1,0,26,0,0,0,1,1,-9,0,4,8.6614981,8.5793581,0,0,0,-994.67194,0,1,1,2021,17,4,40,38,1,4,0,14.992342,14.992342,.05,.05,0,0,0,0,0,0,1,1,0,.87016308,0,35.76,57.79,-9,-9,6.666666666666667,1,1,0,0,7,12,5,1,1134,273015.78,134651.7,0,0,0,0,1605.3315 +2887,3570,6254,-9,6255,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.20233,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,2,1,956.5,-25346.605,0,0,0,-911.08325,-160.39449,1622.7277 +2887,3570,6255,-9,6256,6257,1,0,20,1,1,0,2,2,-9,0,2,6.8828635,6.9269547,0,0,0,-944.10168,0,2,2,2021,12,0,25,25,1,0,1,4.9102116,4.9102116,0,0,0,0,0,0,0,0,1,0,1,0,0,27.49,52.83,-9,-9,10,1,1,0,0,3,9,2,1,956.5,-25346.605,0,0,0,-911.08325,-160.39449,1622.7277 +2887,3571,6256,6257,-9,-9,1,0,41,1,1,0,2,2,-9,0,3,8.4198666,8.9199104,0,11,-10,-22.512459,0,2,2,2021,9,1,80,40,1,1,0,6.3842402,6.3842402,0,0,0,0,0,0,0,0,1,0,1,0,0,47.15,56.66,58.89,48.6,8.333333333333334,1,1,0,0,15,9,5,1,1396,342916.16,105361.92,246374.02,43370.66,0,0,3509.6245 +2887,3571,6257,6256,-9,-9,1,1,51,1,1,0,2,2,-9,0,3,8.2593098,8.1445169,0,11,10,31.034058,0,-9,-9,2021,10,0,40,42,1,0,0,12.835351,12.835351,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.89,48.6,47.15,56.66,8.333333333333334,1,1,0,0,15,9,5,1,1396,342916.16,105361.92,246374.02,43370.66,0,0,3509.6245 +2888,3572,6258,6264,-9,-9,1,0,40,0,7,0,2,2,-9,0,3,0,0,0,7,8,-49.126579,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,45.18,54.77,53.2,6.666666666666667,1,1,0,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6259,-9,6258,6264,1,0,7,0,7,1,3,0,-9,0,4,0,0,0,0,0,-999.98438,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6260,-9,6258,6264,1,0,3,0,7,1,3,0,-9,0,4,0,0,0,0,0,-984.37372,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6261,-9,6258,6264,1,1,14,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1091.9399,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6262,-9,6258,6264,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-842.11346,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6263,-9,6258,6264,1,1,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-930.67908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6264,6258,-9,-9,1,1,32,0,7,0,2,2,-9,0,3,7.9238639,8.014945,0,7,-8,138.07655,0,3,2,2021,8,0,50,55,1,0,0,7.3242197,7.3242197,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,53.2,48.38,45.18,8.333333333333334,1,1,0,0,3,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6265,-9,6258,6264,1,0,12,0,7,1,3,0,-9,0,4,0,0,0,0,0,-966.93475,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3573,6266,-9,6258,6264,1,1,22,0,7,0,2,2,-9,0,3,7.4413853,7.3607879,0,0,0,-1062.3307,0,2,2,2021,8,0,30,20,1,0,1,4.9347744,4.9347744,0,0,0,0,0,0,0,0,1,1,0,0,0,50.63,50.99,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,2962,0,0,0,0,0,0,1063.1733 +2888,3574,6267,-9,6258,6264,1,1,21,0,7,0,2,2,-9,0,5,0,0,0,0,0,-889.8678,0,2,3,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,1,0,0,12,1,0,676,-248774.5,0,0,0,0,0,0 +2889,3575,6268,6269,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.4098716,7.80126,6.3508272,39,0,-159.7603,0,3,3,2021,8,0,20,15,1,0,0,8.04109,8.04109,.05,.05,0,0,0,0,0,2,0,0,0,6.5061178,0,54.9,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1124,1680768.8,923900.88,633246.5,94952.875,0,0,3470.7681 +2889,3575,6269,6268,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.6922016,9.044322,0,6,0,25.588474,0,1,2,2021,6,0,42,43,1,0,0,15.158998,15.158998,.05,.05,0,0,0,0,0,0,0,0,0,1.0667698,0,57.06,57.76,54.9,54.53,10,1,1,0,0,9,9,5,1,1124,1680768.8,923900.88,633246.5,94952.875,0,0,3470.7681 +2889,3576,6270,-9,6268,6269,1,0,32,0,0,0,1,1,-9,0,4,7.71384,7.6152105,0,0,0,-1077.9094,0,1,1,2021,7,0,33,26,1,0,1,7.9344325,7.9344325,0,0,0,0,0,0,0,0,0,0,0,.5720436,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,1356,-31844.271,-51603.684,210584.16,77212.625,1808.4515,5040.7534,1156.8947 +2890,3577,6271,6272,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.8739281,7.9725051,36,0,-7.6638021,0,2,2,2021,16,6,0,43,4,6,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3105736,7.6977153,50.8,37.53,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,509,459616.91,31878.184,605747.13,267896.31,9664.8223,13878.732,11916.62 +2890,3577,6272,6271,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.5170889,9.6023846,0,35,0,-75.740875,0,2,2,2021,6,0,45,55,1,0,0,40.562691,40.562691,.05,.05,0,0,0,0,0,0,0,0,0,8.0343618,0,57.16,56.15,50.8,37.53,8.333333333333334,1,1,0,0,11,7,5,1,509,459616.91,31878.184,605747.13,267896.31,9664.8223,13878.732,11916.62 +2891,3578,6273,6274,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,7.9475422,7.8329625,6.0087409,31,-1,-23.254246,0,3,3,2021,16,5,30,23,1,5,0,10.906919,10.906919,0,0,0,0,0,0,0,14.5,1,1,0,0,6.2976799,43.21,24.99,31.32,37.22,5,1,1,0,0,12,2,3,0,1234,219468.39,39352.68,102806.45,0,0,0,2820.9248 +2891,3578,6274,6273,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,31,1,-146.08318,0,3,3,2021,20,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.32,37.22,43.21,24.99,3.333333333333333,1,1,0,0,9,2,3,0,1234,219468.39,39352.68,102806.45,0,0,0,2820.9248 +2892,3579,6275,6276,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.7786045,7.8451991,18,0,66.773491,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.1196055,7.8924966,57.44,14.46,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,404.5,416123,338441.78,172595.83,0,0,0,3389.7373 +2892,3579,6276,6275,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,7.2860651,7.372541,5.3665056,16,9,-101.67898,0,3,2,2021,8,0,48,40,1,0,0,3.867579,3.867579,.05,.05,0,0,0,0,0,14.5,1,1,0,5.9555192,5.6877427,57.16,56.15,57.44,14.46,1.666666666666667,1,1,0,0,9,2,4,1,404.5,416123,338441.78,172595.83,0,0,0,3389.7373 +2893,3580,6277,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8303428,7.7557831,0,0,0,-951.224,0,2,2,2021,16,4,39,39,1,4,0,8.0732479,8.0732479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.53,49.23,-9,-9,3.333333333333333,1,1,0,0,10,1,3,0,897,796237.5,597810.06,34430.59,6083.3901,0,0,1284.3898 +2894,3581,6278,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,5.9894867,5.8552213,0,0,-942.50854,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0942278,6.2676797,60.29,52.11,-9,-9,10,1,1,0,0,0,9,2,0,1543,205776.97,95381.594,174248.75,0,0,0,381.0675 +2895,3582,6279,6280,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.3035064,4.6844125,6,-1,-32.338581,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9798703,55,51,57.16,56.15,8.333333333333334,1,1,0,0,0,8,2,1,328,94062.945,70644.484,121706.91,0,0,0,1304.6643 +2895,3582,6280,6279,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.4312978,6.4385118,6,1,-80.953827,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8275602,6.369792,57.16,56.15,55,51,1.666666666666667,1,1,0,0,0,8,2,1,328,94062.945,70644.484,121706.91,0,0,0,1304.6643 +2896,3583,6281,-9,6282,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.8012,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,698,282521.44,-38291.574,409900.34,144334.42,0,0,3736.8066 +2896,3583,6282,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.3330965,8.3325434,6.3426185,0,0,-950.21069,0,2,3,2021,22,10,38,38,1,10,0,15.063528,15.063528,.05,.05,0,0,0,0,0,0,1,1,0,7.6333203,0,42,40,-9,-9,3.333333333333333,1,1,0,0,9,8,4,1,698,282521.44,-38291.574,409900.34,144334.42,0,0,3736.8066 +2897,3584,6283,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.610405,6.650701,0,0,-986.95447,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1749883,6.374608,53.09,39.08,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,28,86703.133,53848.348,0,0,0,0,582.3783 +2898,3585,6284,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,5.2845592,6.3402243,6.4634304,0,0,-1004.7592,0,2,2,2021,8,0,4,12,1,0,0,8.3619394,8.3619394,0,0,0,0,0,0,0,0,0,0,0,4.9149957,6.1185746,52.78,47.24,-9,-9,6.666666666666667,1,1,0,0,13,10,2,1,1091,680152.63,43744.926,557096.06,0,0,0,1021.4826 +2899,3586,6285,6286,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.7631779,9.0100546,8.1339464,36,3,32.989727,0,3,3,2021,7,0,37,37,1,0,0,18.736355,18.736355,.05,.05,0,0,0,0,0,0,0,0,0,2.5713849,7.9891853,46.44,59.62,35.9,60.41,8.333333333333334,4,2,0,0,14,9,5,1,795,1110458.8,465051.19,429375.56,0,0,0,4745.916 +2899,3586,6286,6285,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.4382515,8.1236191,0,36,-3,29.665037,0,3,3,2021,17,5,32,32,1,5,0,13.409369,13.409369,0,0,0,0,0,0,0,0,0,0,0,4.4823318,0,35.9,60.41,46.44,59.62,3.333333333333333,1,1,0,0,14,9,5,1,795,1110458.8,465051.19,429375.56,0,0,0,4745.916 +2900,3587,6287,6288,-9,-9,1,0,23,0,0,0,1,1,-9,0,1,7.8293881,7.8868093,0,1,1,-125.95863,0,2,1,2021,21,9,12,40,1,9,0,24.10195,24.10195,.05,.05,0,0,0,0,0,0,0,0,0,2.1345038,0,23.78,32.48,55.09,55.87,6.666666666666667,1,1,0,0,7,6,4,0,531,168602,-5809.2344,179753.13,176546.8,0,429.53876,2283.8638 +2900,3587,6288,6287,-9,-9,1,1,22,0,0,0,1,1,-9,0,5,8.2456617,8.190362,0,1,-1,-7.7051816,-9,-9,-9,2021,7,0,41,0,1,0,0,11.174017,11.174017,.05,.05,0,0,0,0,0,0,0,0,0,.35117722,0,55.09,55.87,23.78,32.48,6.666666666666667,1,1,0,0,2,6,4,0,531,168602,-5809.2344,179753.13,176546.8,0,429.53876,2283.8638 +2901,3588,6289,-9,6290,6291,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.6301,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2901,3588,6290,6291,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,9.4235849,9.3739653,0,11,0,109.79012,0,1,1,2021,10,2,36,45,1,2,0,38.931343,38.931343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,45.72,55.07,8.333333333333334,1,1,0,0,12,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2901,3588,6291,6290,-9,-9,1,1,37,1,1,0,1,1,-9,0,2,9.1980705,9.0882969,0,11,0,64.338989,0,-9,-9,2021,11,3,58,48,1,3,0,22.587288,22.587288,.05,.05,0,0,0,0,0,0,0,0,0,4.308639,0,45.72,55.07,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2902,3589,6292,6293,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,40,1,0,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.03,47.48,54.61,51.04,3.333333333333333,1,1,0,0,4,10,1,1,364,614978.31,236311.23,156151.25,0,0,0,1442.6619 +2902,3589,6293,6292,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,11,-1,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,49.03,47.48,6.666666666666667,1,1,0,0,10,10,1,1,364,614978.31,236311.23,156151.25,0,0,0,1442.6619 +2903,3590,6294,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1104.292,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1.45,60.66,-9,-9,0,2,3,1,1,1,2,1,0,276,6998.7559,0,0,0,0,0,251.82098 +2904,3591,6295,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,0,0,-969.04126,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,74,129277.96,0,0,0,0,0,1197.0364 +2905,3592,6296,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.4446473,5.8736315,0,0,-987.23169,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,15.879338,20.679428,139.66362,0,1,1,0,7.4138613,6.4785819,56.8,13.83,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,85,203043.45,-28566.248,0,0,0,0,2278.3625 +2906,3593,6297,6298,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4003806,7.4788113,48,1,-107.85165,0,2,-9,2021,9,0,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0479574,7.5147324,53,47,56.33,51.02,7,1,1,0,0,0,8,2,1,279.5,624134.81,132203.89,466902.88,0,0,0,2885.0176 +2906,3593,6298,6297,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.6117849,5.7422771,7,-1,33.355881,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3256316,5.4325786,56.33,51.02,53,47,8.333333333333334,1,1,0,0,0,8,2,1,279.5,624134.81,132203.89,466902.88,0,0,0,2885.0176 +2907,3594,6299,6300,-9,-9,1,0,90,0,0,0,2,2,-9,0,4,0,0,0,73,-7,0,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0675752,0,46.98,33.15,57,43,8.333333333333334,1,1,0,0,0,6,1,1,658.5,296549.81,0,273598.25,0,0,0,598.61206 +2907,3594,6300,6299,-9,-9,1,1,97,0,0,0,3,3,-9,0,3,0,0,0,73,7,0,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9784112,0,57,43,46.98,33.15,8,1,1,0,0,0,6,1,1,658.5,296549.81,0,273598.25,0,0,0,598.61206 +2908,3595,6301,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7506471,8.2087517,0,0,-1054.1412,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6999221,8.10958,57.7,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,571,1236237,774166.75,346416.25,0,0,0,1353.6716 +2909,3596,6302,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.8546348,7.8874383,0,0,0,-858.59979,0,3,2,2021,1,0,35,35,1,0,0,8.1068163,8.1068163,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,1885,169221.77,24606.818,-18852.098,-12096.024,0,0,588.27582 +2910,3597,6303,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.9126201,6.4679108,0,0,-1149.9774,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1963997,60.29,52.11,-9,-9,10,1,1,0,0,0,2,2,1,2598,288232.84,-35010.637,153955.11,0,0,0,585.32751 +2911,3598,6304,6307,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.7147665,7.5716386,0,10,-5,-28.12706,0,-9,-9,2021,16,5,40,40,1,5,0,7.0800881,7.0800881,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,55.96,49.93,6.666666666666667,1,1,0,0,13,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6305,-9,6304,6307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5715,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6306,-9,6304,6307,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.4763,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6307,6304,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3960905,8.6263142,0,10,5,-98.60376,0,-9,-9,2021,7,0,40,40,1,0,0,15.482244,15.482244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,41.23,59.35,8.333333333333334,1,1,0,0,13,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2912,3599,6308,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.9097667,7.3357568,0,0,-1091.1566,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,12.377129,9.9184475,135.40489,0,1,1,0,0,7.2923813,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,182,663754.5,174575.27,143840.17,0,0,0,1864.22 +2913,3600,6309,6310,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,8,2,0,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0796537,0,57.06,57.76,58.32,50.22,10,1,1,0,0,7,9,1,1,552.5,2691713,1152558,736644,0,3376.3755,0,907.88159 +2913,3600,6310,6309,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,8,-2,0,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.6796031,0,58.32,50.22,57.06,57.76,10,1,1,0,0,7,9,1,1,552.5,2691713,1152558,736644,0,3376.3755,0,907.88159 +2914,3601,6311,6312,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.7428813,7.3027225,44,3,-1.2341769,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0894585,6.4956584,61.1,16.91,49.76,54.41,6.666666666666667,1,1,0,0,0,10,3,1,352,865715.13,382750.75,116520.32,0,0,0,1843.9288 +2914,3601,6312,6311,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.7699289,7.5837908,4.5805306,44,-3,25.02486,0,2,2,2021,11,0,35,33,1,0,0,7.0003519,7.0003519,0,0,0,0,0,0,0,0,1,1,0,5.2352333,5.002696,49.76,54.41,61.1,16.91,8.333333333333334,1,1,0,0,10,10,3,1,352,865715.13,382750.75,116520.32,0,0,0,1843.9288 +2915,3602,6313,6314,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,0,0,0,16,-4,39.285652,-9,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6258392,0,41.17,59.31,57.33,53.46,8.333333333333334,2,3,1,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6314,6313,-9,-9,1,1,44,0,3,0,2,2,-9,0,3,7.4127188,7.2607617,0,16,4,-70.177322,-9,3,2,2021,4,0,54,0,1,0,0,3.2518494,3.2518494,0,0,0,0,0,0,0,0,1,1,0,6.7303829,0,57.33,53.46,41.17,59.31,6.666666666666667,2,3,0,0,8,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6315,-9,6313,6314,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.9467,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6316,-9,6313,6314,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.2308,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6317,-9,6313,6314,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.13757,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3603,6318,-9,6313,6314,1,1,19,0,3,0,2,2,-9,0,5,7.6644344,7.5419655,0,0,0,-1029.5735,-9,2,2,2021,4,0,25,0,1,0,1,7.9730945,7.9730945,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,0,6,3,1,272,-93950.078,-69073.469,0,0,0,0,986.87128 +2916,3604,6319,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0428357,7.039999,0,0,-945.69788,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7379155,7.5345626,61.28,35.65,-9,-9,5,1,1,0,0,0,8,3,1,315,299022.66,340415.72,0,0,0,0,2283.8455 +2917,3605,6320,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7756863,7.8219266,0,0,0,-1031.1722,-9,-9,-9,2021,11,1,43,0,1,1,0,6.048027,6.048027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.16,47.38,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,3916,-20667.439,35706.691,0,0,0,0,830.18854 +2918,3606,6321,6322,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,67,0,-65.442696,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.12,10.91,54.96,53.17,8.333333333333334,1,1,0,0,0,1,2,1,275,99482.234,70226.023,124075.09,0,0,0,1854.8174 +2918,3606,6322,6321,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.7810807,5.5180678,67,0,80.277702,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2230046,5.784286,54.96,53.17,65.12,10.91,8.333333333333334,1,1,0,0,0,1,2,1,275,99482.234,70226.023,124075.09,0,0,0,1854.8174 +2919,3607,6323,-9,6325,6326,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.13,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6324,-9,6325,6326,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1108,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6325,6326,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,7,-2,-127.36362,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7979465,0,58.15,52.91,55.51,51.57,8.333333333333334,2,3,0,0,2,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6326,6325,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,9.3702946,9.3807983,0,7,2,-45.968239,0,1,1,2021,11,1,34,33,1,1,0,33.993732,33.993732,0,0,0,0,0,0,0,0,0,0,0,7.6171489,0,55.51,51.57,58.15,52.91,6.666666666666667,2,3,0,0,8,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2920,3608,6327,6328,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.5521998,7.3743958,0,24,-1,-22.059164,0,2,2,2021,12,0,22,22,1,0,0,11.471803,11.471803,.05,.05,0,0,0,0,0,0,1,1,0,4.0476613,0,38.02,60.69,55.79,52.62,6.666666666666667,1,1,0,0,8,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3608,6328,6327,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.6498652,9.1612244,0,26,1,59.155727,0,1,2,2021,12,0,78,41,1,0,0,11.218908,11.218908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,38.02,60.69,8.333333333333334,1,1,0,0,11,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3608,6329,-9,6327,6328,1,0,16,0,1,1,2,0,-9,0,4,0,4.1706367,4.3903351,0,0,-876.41516,-9,1,1,2021,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.606473,0,17.88,59.38,-9,-9,1.666666666666667,1,1,0,0,0,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3609,6330,-9,6327,6328,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-971.26184,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1353369,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,603,-6322.9951,0,0,0,0,0,-170.25584 +2921,3610,6331,-9,-9,-9,1,1,24,0,0,0,2,2,0,0,4,0,0,0,0,0,-944.72302,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.98,44.11,-9,-9,5,1,1,0,0,0,12,1,0,441,82072.953,0,0,0,0,0,1849.796 +2922,3611,6332,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.266202,8.3536587,0,0,0,-946.35999,0,-9,-9,2021,10,2,51,48,1,2,0,7.493278,7.493278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,42.86,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,1006,269219.56,67993.891,121535.59,36530.313,0,0,2542.4431 +2923,3612,6333,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,9.255374,9.3443775,0,0,-932.9693,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.319416,53.97,45.88,-9,-9,8.333333333333334,2,3,0,0,0,8,5,0,311,839358.88,325841.47,381765.91,0,0,0,6049.3442 +2923,3613,6334,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.1057868,7.0327663,0,0,0,-921.16333,0,-9,-9,2021,12,1,16,40,1,1,0,9.1830864,9.1830864,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,5,8,2,0,831,114358.48,0,0,0,0,0,468.23196 +2924,3614,6335,6338,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.9646897,7.6252813,0,6,-7,134.21005,0,3,2,2021,4,0,35,35,1,0,0,10.090674,10.090674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,1,1,0,0,7,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6336,-9,6335,6338,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.38062,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6337,-9,6335,6338,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.65204,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6338,6335,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.3382463,8.041707,0,6,7,120.5016,0,3,3,2021,6,0,45,45,1,0,0,9.4896221,9.4896221,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,1,1,0,0,7,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2925,3615,6339,6340,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,7.717484,7.8379326,28,-5,67.526505,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9432626,32.59,40.89,51.41,56.15,6.666666666666667,1,1,0,0,10,5,5,1,1188.5,2434499.5,1753545,317401.81,0,2716.9641,0,3352.0234 +2925,3615,6340,6339,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8741159,8.7808332,0,8,5,35.683105,0,3,3,2021,10,1,58,44,1,1,0,12.571876,12.571876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,32.59,40.89,8.333333333333334,1,1,0,0,7,5,5,1,1188.5,2434499.5,1753545,317401.81,0,2716.9641,0,3352.0234 +2926,3616,6341,6342,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3809919,7.0525913,11,3,-6.5493298,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0676374,7.0778747,52.75,48.59,58.89,51.28,8.333333333333334,1,1,0,0,0,7,3,1,838,935067.25,227231.19,233966.44,0,0,0,4787.8457 +2926,3616,6342,6341,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0407591,7.8718534,11,-3,64.83889,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4348764,7.8226457,58.89,51.28,52.75,48.59,10,1,1,0,0,0,7,3,1,838,935067.25,227231.19,233966.44,0,0,0,4787.8457 +2927,3617,6343,6344,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,3,-2,0,0,-9,-9,2021,8,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,3,4,1,1,1648,73764.883,0,0,0,0,0,-354.42493 +2927,3617,6344,6343,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,3,2,0,0,-9,2,2021,9,0,0,54,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.34,62.12,8.333333333333334,4,2,0,0,8,4,1,1,1648,73764.883,0,0,0,0,0,-354.42493 +2928,3618,6345,-9,6347,6346,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4982,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6346,6347,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7375383,8.9789276,0,20,2,31.581566,0,-9,-9,2021,6,0,50,45,1,0,0,13.041085,13.041085,.05,.05,.05,0,0,0,0,0,1,1,0,3.4677012,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6347,6346,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.7871161,7.9245901,0,20,-2,-32.784897,0,-9,-9,2021,11,0,32,0,1,0,0,7.4112797,7.4112797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6348,-9,6347,6346,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.12799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2929,3619,6349,6350,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0316205,7.1226425,8,2,91.918587,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4449935,7.1305733,56.07,45.75,54.69,57.47,8.333333333333334,1,1,0,0,2,11,3,1,1287.5,1158224.3,376979.94,164136.28,0,0,0,3173.8613 +2929,3619,6350,6349,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.5350556,7.7407212,8,-2,68.725754,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0598016,7.822639,54.69,57.47,56.07,45.75,10,1,1,0,0,0,11,3,1,1287.5,1158224.3,376979.94,164136.28,0,0,0,3173.8613 +2930,3620,6351,6352,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.8699408,7.8426633,8,4,12.718405,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.7000055,19.109686,35.150948,0,1,1,0,0,7.7025838,30.52,26.54,52.63,50.07,5,1,1,0,0,0,12,4,1,1560,1333010.5,691337.13,364145.78,0,0,0,3633.1704 +2930,3620,6352,6351,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,8.0885096,7.9220119,5.2812772,8,-4,-84.118248,0,3,3,2021,9,0,28,28,1,0,0,11.202785,11.202785,0,0,0,0,0,0,0,27,1,1,0,0,5.4081073,52.63,50.07,30.52,26.54,8.333333333333334,1,1,0,0,9,12,4,1,1560,1333010.5,691337.13,364145.78,0,0,0,3633.1704 +2931,3621,6353,6355,-9,-9,1,1,31,0,2,0,1,1,-9,0,4,8.1978464,8.2735147,0,3,2,-15.086758,0,-9,-9,2021,6,0,50,68,1,0,0,10.937102,10.937102,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.66,57.83,39.42,60.24,8.333333333333334,2,3,0,0,7,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6354,-9,6355,6353,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2073,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6355,6353,-9,-9,1,0,29,0,2,0,1,1,-9,0,4,0,0,0,3,-2,23.779593,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.42,60.24,44.66,57.83,6.666666666666667,2,3,1,0,3,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6356,-9,6355,6353,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.82813,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2932,3622,6357,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.433351,7.8797431,0,0,-1111.1255,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.1521688,7.2370491,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,617,694051.13,596555.13,212648.42,0,0,0,1608.0194 +2933,3623,6358,6359,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,9.3223705,9.5072231,50,1,21.924791,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,2.5159006,0,0,1,1,0,6.5360122,9.7382059,46,37,61.26,51.57,6.666666666666667,1,1,0,0,3,1,5,1,701.5,7311827,2454057.5,1363548.8,0,0,0,8479.2871 +2933,3623,6359,6358,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.0146542,5.9045076,50,-1,71.445602,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0121913,6.220818,61.26,51.57,46,37,10,1,1,0,0,6,1,5,1,701.5,7311827,2454057.5,1363548.8,0,0,0,8479.2871 +2934,3624,6360,-9,6362,6361,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.53784,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2934,3624,6361,6362,-9,-9,1,1,36,1,1,0,1,1,-9,0,5,9.2943068,9.4598684,0,9,1,12.221107,0,-9,-9,2021,10,1,50,50,1,1,0,30.787397,30.787397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,40.64,55.63,8.333333333333334,1,1,0,0,10,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2934,3624,6362,6361,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,9.1386728,9.0964279,0,9,-1,-12.835775,0,-9,-9,2021,14,3,55,48,1,3,0,16.714996,16.714996,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.64,55.63,43.09,61.58,6.666666666666667,1,1,0,0,10,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2935,3625,6363,6364,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.3463449,9.3206606,0,28,0,6.2322183,0,2,2,2021,7,0,36,37,1,0,0,41.88316,41.88316,.05,.05,0,0,0,0,0,0,0,0,0,6.7914619,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,962.5,1349.8672,104466.52,0,0,0,0,4957.3486 +2935,3625,6364,6363,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.6634607,7.4443603,0,27,0,34.668133,0,2,2,2021,7,0,30,30,1,0,0,7.8016696,7.8016696,.05,.05,0,0,0,0,0,2,0,0,0,3.8016284,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,962.5,1349.8672,104466.52,0,0,0,0,4957.3486 +2935,3626,6365,-9,6364,6363,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-923.80304,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0085649,0,57.16,56.15,-9,-9,10,1,1,0,0,2,8,1,1,1843,-233806.67,0,0,0,0,0,25.20204 +2935,3627,6366,-9,6364,6363,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-879.05792,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,417,0,0,0,0,0,0,0 +2936,3628,6367,6368,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,3.4850593,3.5971708,6,5,49.429558,0,2,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,1.2577382,0,0,1,1,0,0,3.644573,34.86,28.72,47.14,41.53,6.666666666666667,1,1,0,0,0,9,2,0,858,1251462.3,267063.69,667064.5,0,0,0,1783.4633 +2936,3628,6368,6367,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,5.8317242,5.689826,60,-5,-74.716232,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,2.4114857,0,21.029799,27,1,1,0,4.2454686,5.615232,47.14,41.53,34.86,28.72,6.666666666666667,1,1,0,0,0,9,2,0,858,1251462.3,267063.69,667064.5,0,0,0,1783.4633 +2937,3629,6369,6371,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.5907187,6.319767,0,4,0,7.2362494,0,-9,-9,2021,9,0,20,25,1,0,0,3.4448924,3.4448924,.05,.05,0,0,0,0,0,0,1,1,0,2.8881671,0,57.33,53.46,57.06,57.76,10,1,1,0,0,10,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2937,3629,6370,-9,6369,6371,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.61224,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2937,3629,6371,6369,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.2650318,8.2951536,0,4,0,-74.387039,0,-9,-9,2021,6,0,30,30,1,0,0,15.593748,15.593748,.05,.05,0,0,0,0,0,0,1,1,0,.3772099,0,57.06,57.76,57.33,53.46,10,1,1,0,0,10,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2938,3630,6372,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.9170079,7.9128819,0,0,0,-1031.8868,0,3,-9,2021,12,1,38,42,1,1,0,9.6135864,9.6135864,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,573,557386.63,219362.94,338007.59,0,0,0,1757.4028 +2939,3631,6373,6374,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.116189,8.0746469,51,2,-6.2221093,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4944522,8.2939415,43.89,14.04,57.18,38.32,8.333333333333334,1,1,0,0,0,12,3,1,543.5,965409.63,533265.63,342058.38,0,0,0,3365.5205 +2939,3631,6374,6373,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,53,-2,90.807121,0,2,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,1.1491486,0,2,1,1,0,4.7262115,0,57.18,38.32,43.89,14.04,8.333333333333334,1,1,0,0,0,12,3,1,543.5,965409.63,533265.63,342058.38,0,0,0,3365.5205 +2940,3632,6375,6377,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.9456778,7.9265118,0,7,-13,-42.162891,0,-9,-9,2021,6,0,42,45,1,0,0,8.2886724,8.2886724,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,62.39,56.71,8.333333333333334,3,4,0,0,4,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6376,-9,6375,6377,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.34735,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6377,6375,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.347929,8.2488461,0,11,13,-124.96094,0,-9,-9,2021,6,0,40,40,1,0,0,14.427661,14.427661,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50.54,62.09,8.333333333333334,3,4,0,0,12,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6378,-9,6375,6377,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.7753,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2941,3633,6379,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.6852655,8.1140337,0,0,0,-1033.9858,0,2,3,2021,21,9,24,24,1,9,0,11.497264,11.497264,0,0,0,0,0,0,0,0,1,1,0,0,0,42.43,38.82,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,624.5,-69821.484,-30914.332,0,0,-1100.4503,0,2392.0288 +2941,3633,6380,-9,6379,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.17926,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,624.5,-69821.484,-30914.332,0,0,-1100.4503,0,2392.0288 +2942,3634,6381,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.6792655,7.9048529,6.650629,0,0,-958.5379,0,3,3,2021,6,0,22,21,1,0,0,11.472106,11.472106,0,0,0,0,0,0,0,0,1,1,0,.57849646,6.8884821,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,348,460299.88,-33699.105,356757.22,0,0,-954.17615,1757.2463 +2943,3635,6382,6383,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.9099073,8.7959557,0,2,-1,3.9457722,0,2,2,2021,12,1,46,48,1,1,0,16.286602,16.286602,0,0,0,0,0,0,0,0,0,0,0,3.8770313,0,43.66,59.97,49,58,6.666666666666667,1,1,0,0,4,4,4,1,1137,-110103.27,36299.109,141916.31,124432.25,3969.8579,0,1575.1467 +2943,3635,6383,6382,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,2,1,-34.20866,0,-9,-9,2021,10,0,0,42,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,43.66,59.97,7,1,1,1,0,0,4,4,1,1137,-110103.27,36299.109,141916.31,124432.25,3969.8579,0,1575.1467 +2944,3636,6384,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,7.5882902,7.0362024,0,0,-919.95233,0,3,3,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6998529,6.9964175,21.14,28.6,-9,-9,0,1,1,0,1,0,2,3,1,485,181003.02,226952.28,146399.39,0,0,0,1662.5466 +2945,3637,6385,-9,6386,6387,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-835.0437,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2945,3637,6386,6387,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.8195105,8.7962103,0,18,2,-199.3933,0,2,1,2021,24,12,40,43,1,12,0,21.464165,21.464165,0,0,0,0,0,0,0,0,1,1,0,4.371089,0,36.55,49.51,49.63,54.22,6.666666666666667,1,1,0,0,14,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2945,3637,6387,6386,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.187686,9.1523685,0,18,-2,61.684673,0,-9,-9,2021,6,0,26,34,1,0,0,40.397751,40.397751,.05,.05,.05,0,0,0,0,0,1,1,0,5.294764,0,49.63,54.22,36.55,49.51,8.333333333333334,1,1,0,0,14,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2946,3638,6388,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,7.7332501,7.8340411,0,0,-1055.5344,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5438437,62,44.54,-9,-9,1.666666666666667,3,4,0,0,9,2,3,0,406,390264.09,363570.19,0,0,0,1227.7411,1343.355 +2947,3639,6389,6390,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.5994329,8.0828609,0,12,2,-87.151108,0,3,3,2021,6,0,36,36,1,0,0,15.636893,15.636893,0,0,0,0,0,0,0,0,0,0,0,6.9704161,0,49.51,41.82,57.33,53.46,10,1,1,0,0,14,13,5,1,394.5,7794918,7483441,412599.69,0,0,0,9768.7324 +2947,3639,6390,6389,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,9.5513601,8.9302416,41,-2,2.81071,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3736153,57.33,53.46,49.51,41.82,10,1,1,0,0,12,13,5,1,394.5,7794918,7483441,412599.69,0,0,0,9768.7324 +2948,3640,6391,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.12781,7.0288935,0,0,0,-1031.6351,-9,2,2,2021,15,6,40,0,1,6,0,3.2435348,3.2435348,0,0,0,0,0,0,0,14.5,1,0,1,0,0,48.8,51.84,-9,-9,0,2,3,0,0,14,2,2,0,453.5,23206.83,0,0,0,0,0,1424.8928 +2948,3640,6392,-9,-9,6391,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-944.16339,-9,-9,-9,2021,28,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.27,39.62,-9,-9,8.333333333333334,4,2,0,0,0,2,2,0,453.5,23206.83,0,0,0,0,0,1424.8928 +2948,3641,6393,-9,-9,-9,1,0,31,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.56897,-9,-9,-9,2021,16,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.58,52.86,-9,-9,3.333333333333333,2,3,0,0,1,2,2,0,282,-32633.666,0,0,0,0,0,0 +2949,3642,6394,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,4.8600922,4.755693,0,0,0,-1078.399,0,2,3,2021,9,0,80,60,1,0,0,.17658758,.17658758,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,12,1,2,1,512,96442.133,0,152137.69,2888.5654,0,0,290.58731 +2949,3643,6395,-9,-9,6396,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.0481,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,1,828,-160114.06,0,0,0,0,0,962.41895 +2949,3643,6396,-9,6394,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1004.2311,0,3,-9,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,45.55,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,828,-160114.06,0,0,0,0,0,962.41895 +2950,3644,6397,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.1284,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,416,-39068.145,0,0,0,0,0,966.39642 +2951,3645,6398,6399,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,62.49,55.09,46.51,35.57,10,1,1,0,0,0,7,1,1,491,116321.51,37908.203,0,0,122.89125,0,1692.4554 +2951,3645,6399,6398,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,35.57,62.49,55.09,8.333333333333334,1,1,0,0,0,7,1,1,491,116321.51,37908.203,0,0,122.89125,0,1692.4554 +2952,3646,6400,-9,6403,6402,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5798,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6401,-9,6403,6402,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.9689,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6402,6403,-9,-9,1,1,40,2,2,0,1,1,-9,0,4,8.6895428,8.5867949,0,4,1,-107.83184,0,2,2,2021,14,4,50,47,1,4,0,12.130021,12.130021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,46.95,49.9,6.666666666666667,1,1,0,0,13,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6403,6402,-9,-9,1,0,39,2,2,0,1,1,-9,0,4,7.6547904,7.6317968,0,4,-1,111.77112,0,2,2,2021,9,0,26,27,1,0,0,8.3584032,8.3584032,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,49.9,49.35,59.64,8.333333333333334,1,1,0,0,12,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2953,3647,6404,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.4041433,8.5894165,0,0,0,-997.29974,0,2,1,2021,15,3,38,37,1,3,0,17.191637,17.191637,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.05,54.17,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,259,-17284.92,-161634.09,0,0,0,137.21539,1897.1101 +2953,3648,6405,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1066.12,0,-9,-9,2021,10,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,1,1,1,1,4,1,1,1,354,-157290.73,0,0,0,0,0,713.96936 +2954,3649,6406,-9,6407,6408,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.74353,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2954,3649,6407,6408,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.6119738,8.503232,0,4,-2,58.877998,0,2,2,2021,12,0,35,34,1,0,0,15.010859,15.010859,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.87,57.02,54.2,57.49,1.666666666666667,1,1,0,0,9,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2954,3649,6408,6407,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.5747795,8.7434263,0,4,2,59.016418,0,-9,-9,2021,10,0,40,40,1,0,0,15.976115,15.976115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.87,57.02,8.333333333333334,1,1,0,0,7,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2955,3650,6409,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-874.73688,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.13,41.18,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,462,14423.16,0,0,0,0,0,800.44287 +2956,3651,6410,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.137516,7.226316,0,0,-1016.9407,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4008679,51.67,20.05,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,151,165974.13,107039.51,104070.12,0,0,0,1497.9487 +2957,3652,6411,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.2899308,5.2167687,0,0,-949.29755,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9151864,5.2893085,42.82,22.27,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,70,109159.62,78531.43,169251.58,0,0,0,991.60663 +2958,3653,6412,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8909068,7.8061552,0,0,-1136.4121,0,2,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8692393,8.3486137,61.27,43.2,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,454,887812.06,447428.47,172237.67,0,0,0,2728.751 +2959,3654,6413,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1773367,8.3828926,0,0,0,-1019.9743,0,2,2,2021,20,7,47,40,1,7,0,8.860671,8.860671,.05,.05,0,0,0,0,0,0,1,1,0,3.1973512,0,38.55,32.53,-9,-9,3.333333333333333,1,1,0,0,10,6,4,0,930,131585.95,10935.905,0,0,25896.01,0,1695.7194 +2960,3655,6414,6415,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7528257,8.6818037,0,24,2,44.028645,0,2,2,2021,7,0,40,40,1,0,0,16.231827,16.231827,.05,.05,0,0,0,0,0,2,0,0,0,1.5344951,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,801.5,1574343.1,1182046.3,294496.47,66975.938,0,2136.8804,4552.0801 +2960,3655,6415,6414,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.0309649,8.5003767,0,25,-2,-71.068581,0,2,1,2021,7,0,42,40,1,0,0,20.588537,20.588537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,9,9,5,1,801.5,1574343.1,1182046.3,294496.47,66975.938,0,2136.8804,4552.0801 +2960,3656,6416,-9,6414,6415,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1053.7958,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,839,10044.29,0,0,0,15134.322,0,0 +2961,3657,6417,6418,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.6907578,9.9315214,0,1,1,2.1194198,-9,-9,-9,2021,6,0,43,0,1,0,0,36.832054,36.832054,.05,.05,0,0,0,0,0,0,0,0,0,3.9397829,0,55.76,52.64,50.4,55.04,8.333333333333334,1,1,0,0,5,1,5,1,409,98830.938,148704.98,0,0,9852.5986,13741.981,5412.1885 +2961,3657,6418,6417,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7660818,7.7131333,0,1,-1,-45.087769,0,2,2,2021,11,1,30,30,1,1,0,10.352905,10.352905,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,55.76,52.64,8.333333333333334,1,1,0,0,11,1,5,1,409,98830.938,148704.98,0,0,9852.5986,13741.981,5412.1885 +2962,3658,6419,6420,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.050642,9.119545,0,2,4,147.14162,0,2,3,2021,6,0,37,37,1,0,0,27.255203,27.255203,.05,.05,0,0,0,0,0,0,1,1,0,7.6603041,0,58.75,51.28,45.57,53.5,8.333333333333334,1,1,0,0,13,6,5,1,1797.5,1602742.5,1318031.5,284389.56,0,0,0,5816.7354 +2962,3658,6420,6419,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6488895,8.5664597,0,2,-4,-61.425644,0,-9,-9,2021,9,0,48,37,1,0,0,15.409907,15.409907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.57,53.5,58.75,51.28,8.333333333333334,1,1,0,0,14,6,5,1,1797.5,1602742.5,1318031.5,284389.56,0,0,0,5816.7354 +2963,3659,6421,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.8997121,7.9554124,0,0,0,-1002.1424,-9,-9,-9,2021,11,1,35,0,1,1,0,8.976325,8.976325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.88,49.91,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,562,24243.984,123770,0,0,0,0,1453.9858 +2964,3660,6422,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.8755679,7.9151912,0,0,-903.25897,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8576608,7.5085969,59.93,20.94,-9,-9,5,1,1,0,0,4,8,4,1,356,915619.81,355390.69,762421.38,0,0,0,1700.2693 +2965,3661,6423,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,6.7376962,6.9048843,0,0,-977.09399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6664171,6.6252923,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,8,7,2,1,210,1460665.6,212016.36,444342.25,0,0,0,881.84314 +2966,3662,6424,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0252705,8.2944288,0,0,0,-888.12823,0,3,3,2021,27,11,21,21,1,11,0,16.871832,16.871832,0,0,0,0,0,0,0,0,0,0,0,0,0,37.38,48.9,-9,-9,5,1,1,0,0,8,12,4,0,933,-37538.23,0,0,0,0,0,1660.7001 +2967,3663,6425,-9,6426,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.66803,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,794.5,-65887.141,0,0,0,0,0,1726.0906 +2967,3663,6426,-9,-9,-9,1,0,28,0,1,0,3,3,-9,0,4,7.5631156,7.7821174,0,0,0,-982.55206,-9,3,2,2021,12,0,33,0,1,0,0,5.4122758,5.4122758,0,0,0,0,0,0,0,0,1,1,0,0,0,42.8,56.04,-9,-9,5,1,1,0,0,7,13,3,0,794.5,-65887.141,0,0,0,0,0,1726.0906 +2968,3664,6427,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,4.9625535,5.1589022,0,0,0,-957.46875,0,1,2,2021,8,0,40,40,1,0,0,.47415683,.47415683,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,9,8,2,0,205,-186080.34,0,0,0,0,0,2055.3594 +2968,3665,6428,-9,-9,6427,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-957.74127,-9,-9,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.43,58.01,-9,-9,8.333333333333334,3,4,0,0,2,8,1,0,293,73143.336,0,0,0,0,0,-245.75046 +2969,3666,6429,-9,6430,6431,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.51685,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2969,3666,6430,6431,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.9450202,8.0550165,0,18,0,-95.148819,0,3,3,2021,9,1,37,35,1,1,0,9.2894669,9.2894669,.05,.05,0,0,0,0,0,0,0,0,0,1.8821983,0,52.6,47.34,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2969,3666,6431,6430,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.2723198,9.3409357,0,18,0,67.916718,0,3,3,2021,8,0,45,52,1,0,0,31.926659,31.926659,.05,.05,0,0,0,0,0,0,0,0,0,5.4089055,0,57.33,53.46,52.6,47.34,8.333333333333334,1,1,0,0,9,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2970,3667,6432,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2674885,8.5179558,0,0,0,-939.74347,0,3,3,2021,13,2,40,37,1,2,0,11.106191,11.106191,.05,.05,0,0,0,0,0,7,0,0,0,0,0,40.58,38.59,-9,-9,5,1,1,0,0,10,7,4,1,289,330703.47,342550,0,0,0,0,1798.8799 +2971,3668,6433,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.9515715,5.8114805,0,0,-992.0343,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5972991,0,0,1,1,0,0,5.7865047,48.15,22.67,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,760,138151.77,2399.2576,0,0,0,0,1703.3567 +2972,3669,6434,6436,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.4037986,7.5801783,0,6,0,-36.143612,0,3,3,2021,6,0,22,23,1,0,0,8.2020521,8.2020521,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,7,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6435,-9,6434,6436,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4265,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6436,6434,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.6524858,8.7141666,0,6,0,-119.06966,0,-9,-9,2021,10,0,38,46,1,0,0,21.194086,21.194086,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,7,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6437,-9,6434,6436,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.8218,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2973,3670,6438,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.9131331,7.5978141,0,0,-1095.5566,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,7.2841702,0,0,1,1,0,0,7.5280542,51,46,-9,-9,7,2,3,0,0,0,8,3,1,626,838241.25,309831.28,329916.06,0,0,0,2173.6536 +2974,3671,6439,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.1778755,6.401619,0,0,-1043.9072,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6458139,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,674,246983.95,145402.25,120691.89,0,0,0,2129.8279 +2975,3672,6440,6441,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6179943,7.7377362,5.2627101,38,-1,37.574497,0,3,3,2021,9,0,23,43,1,0,0,10.617796,10.617796,.05,.05,0,0,0,0,0,14.5,0,0,0,3.3309002,5.7946243,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,1566.5,537692.88,309490.34,111242.38,0,1419.731,0,2282.6394 +2975,3672,6441,6440,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.8913813,7.8876014,0,36,1,22.045736,0,3,3,2021,6,0,41,44,1,0,0,7.381866,7.381866,.05,.05,0,0,0,0,0,0,0,0,0,3.6656797,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,1566.5,537692.88,309490.34,111242.38,0,1419.731,0,2282.6394 +2976,3673,6442,-9,6444,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1079.3359,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6443,-9,6444,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.0493,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6444,-9,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.3759608,7.5550632,6.1996469,0,0,-1120.9469,0,2,1,2021,8,0,38,39,1,0,0,6.5228982,6.5228982,.05,.05,0,0,0,0,0,0,1,1,0,6.1964364,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,9,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6445,-9,6444,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.64893,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2977,3674,6446,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6973219,7.0973873,0,0,-927.13855,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0758157,7.0252147,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,332,627470.69,85098.352,458041.69,0,0,0,1776.8335 +2978,3675,6447,-9,6449,6448,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1071.7301,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3675,6448,6449,-9,-9,1,1,58,0,1,0,1,1,-9,0,5,9.2840271,9.4088573,0,13,4,-96.003891,0,-9,-9,2021,6,0,38,38,1,0,0,29.686708,29.686708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,46.43,57.06,57.76,10,1,1,0,0,14,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3675,6449,6448,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,7.3420362,7.3039823,0,33,-4,28.896942,0,1,1,2021,7,0,40,50,1,0,0,4.9771495,4.9771495,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.6,46.43,8.333333333333334,1,1,0,0,14,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3676,6450,-9,6449,6448,1,1,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-890.75586,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7850485,0,59.43,58.05,-9,-9,10,1,1,0,0,4,11,1,1,4967,16681.586,0,0,0,0,0,999.28699 +2978,3677,6451,-9,6449,6448,1,1,21,0,1,0,2,2,-9,0,5,7.9909635,7.8710866,0,0,0,-965.47211,-9,1,1,2021,6,0,40,0,1,0,1,7.1049891,7.1049891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,328,-70123.414,154449.56,0,0,3123.4294,0,1816.4591 +2979,3678,6452,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,0,0,0,0,-939.62872,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,263,-53230.684,0,0,0,0,0,307.85242 +2980,3679,6453,6454,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8537159,8.862361,0,26,4,-11.518215,0,2,2,2021,12,1,38,41,1,1,0,20.193703,20.193703,.05,.05,0,0,0,0,2.8633878,0,0,0,0,0,0,55.19,54.26,54.07,52.08,8.333333333333334,1,1,0,0,12,4,5,1,1027,109031.41,153420.33,122208.17,91384.219,1878.3268,1677.8469,3884.7002 +2980,3679,6454,6453,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1690321,7.9349704,0,27,-4,-63.121883,0,2,-9,2021,9,0,41,41,1,0,0,10.412846,10.412846,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,52.08,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,1027,109031.41,153420.33,122208.17,91384.219,1878.3268,1677.8469,3884.7002 +2980,3680,6455,-9,6454,6453,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1058.7887,-9,1,2,2021,12,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,43.59,-9,-9,10,1,1,0,0,0,4,1,1,240,41196.582,0,0,0,0,0,0 +2981,3681,6456,6457,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.4072657,6.1879964,0,32,-6,-20.79307,0,3,3,2021,11,2,7,10,1,2,0,7.9493775,7.9493775,0,0,0,0,0,0,0,119,1,1,0,0,0,47,49,57.34,45.06,3.333333333333333,1,1,0,0,11,5,3,1,900,148527.91,222671.03,0,0,0,0,2207.5405 +2981,3681,6457,6456,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.9233294,7.8972945,6.1955342,33,6,-116.55799,0,3,3,2021,8,0,40,45,1,0,0,7.7945728,7.7945728,0,0,0,0,0,0,0,0,1,1,0,0,6.1597009,57.34,45.06,47,49,3.333333333333333,1,1,0,0,12,5,3,1,900,148527.91,222671.03,0,0,0,0,2207.5405 +2981,3682,6458,-9,6456,6457,1,0,26,0,0,0,2,2,-9,0,3,7.7178364,7.6033916,0,0,0,-966.88818,0,2,2,2021,7,0,40,0,1,0,1,7.4384117,7.4384117,.05,.05,0,0,0,0,0,7,1,1,0,0,0,59.9,39.94,-9,-9,10,1,1,0,0,6,5,3,1,347,16450.377,-13288.197,0,0,0,0,1366.3274 +2982,3683,6459,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,7.4169831,7.6530452,0,0,0,-1022.6141,0,-9,-9,2021,13,3,16,20,1,3,0,12.231388,12.231388,0,0,0,0,0,0,0,2,1,1,0,0,0,34.27,45.05,-9,-9,3.333333333333333,1,1,0,0,6,8,3,0,87,82588.531,0,0,0,0,0,463.18692 +2983,3684,6460,6462,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.9231758,8.6901321,0,1,-3,66.705467,-9,2,2,2021,15,4,35,0,1,4,0,20.504795,20.504795,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,63.56,51.83,57.2,8.333333333333334,1,1,0,0,9,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2983,3684,6461,-9,6460,6462,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.6516,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2983,3684,6462,6460,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.042428,9.2534971,0,1,3,-67.70694,-9,2,2,2021,10,1,37,0,1,1,0,30.59795,30.59795,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,35.57,63.56,8.333333333333334,1,1,0,0,9,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2984,3685,6463,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1042.546,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,13,1,0,223,35095.051,0,0,0,0,0,1437.4473 +2985,3686,6464,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,0,0,-835.75348,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,51.79,-9,-9,5,3,4,1,0,5,5,1,0,264,-122926.02,0,0,0,0,0,198.05975 +2986,3687,6465,6466,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.3540907,9.091053,0,42,1,51.624111,0,3,2,2021,6,0,52,50,1,0,0,29.638016,29.638016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,942,3165456.5,1727943,1016893,0,0,0,4394.0142 +2986,3687,6466,6465,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.3386989,7.3816519,41,-1,-19.541782,0,1,1,2021,4,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5686769,58.15,52.91,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,942,3165456.5,1727943,1016893,0,0,0,4394.0142 +2987,3688,6467,6468,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.6941571,7.7521605,5.1780186,14,-2,30.773256,-9,3,2,2021,11,0,30,0,1,0,0,7.25388,7.25388,.05,.05,0,0,0,0,0,0,1,1,0,5.4292369,0,39.85,55.83,51.14,60.45,8.333333333333334,1,1,0,0,9,5,3,1,210.5,-60602.547,-6114.6104,0,0,0,7203.2285,2100.2222 +2987,3688,6468,6467,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,7.9427629,8.1570387,0,14,2,-73.664719,0,2,2,2021,11,0,37,37,1,0,0,8.4162922,8.4162922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,39.85,55.83,6.666666666666667,1,1,0,0,8,5,3,1,210.5,-60602.547,-6114.6104,0,0,0,7203.2285,2100.2222 +2988,3689,6469,6470,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5348864,7.492332,27,12,51.226109,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8822393,57.73,54.53,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,839.5,418858.97,21626.668,410041.16,0,965.01331,0,2932.1016 +2988,3689,6470,6469,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1553478,8.1789751,0,30,-12,18.378893,0,3,3,2021,10,0,24,24,1,0,0,18.346886,18.346886,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,839.5,418858.97,21626.668,410041.16,0,965.01331,0,2932.1016 +2989,3690,6471,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,3.5492854,3.8614893,0,0,-909.76428,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,15.501184,0,0,1,1,0,0,3.7422144,55.49,21.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,912,97861.297,-20499.117,166692.27,0,0,0,342.17508 +2990,3691,6472,-9,6474,6475,1,0,26,0,0,0,1,1,-9,0,4,8.1945829,7.9783816,0,0,0,-1013.9265,0,2,1,2021,11,1,49,43,1,1,1,10.243896,10.243896,.05,.05,0,0,0,0,0,0,0,0,0,3.9167821,0,44.66,57.83,-9,-9,8.333333333333334,3,4,0,0,3,9,4,1,1655,-101544.41,4888.3374,0,0,0,0,1750.9028 +2990,3691,6473,-9,6472,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-959.27118,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,9,4,1,1655,-101544.41,4888.3374,0,0,0,0,1750.9028 +2990,3692,6474,6475,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.4181204,8.5208702,0,4,-14,106.00464,-9,-9,-9,2021,5,0,48,0,1,0,0,10.067418,10.067418,0,0,0,0,0,0,0,2,0,0,0,0,0,63.09,47.92,55.35,39.26,10,3,4,0,0,4,9,4,1,601,1645163.8,355639.81,969414.13,0,0,0,2542.9238 +2990,3692,6475,6474,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0087433,7.652503,0,4,14,55.870293,-9,-9,-9,2021,7,0,40,0,1,0,0,7.6318483,7.6318483,0,0,0,0,0,0,0,0,0,0,0,0,0,55.35,39.26,63.09,47.92,5,1,1,0,0,3,9,4,1,601,1645163.8,355639.81,969414.13,0,0,0,2542.9238 +2991,3693,6476,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.4728069,7.9402013,0,0,-985.92151,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1740975,7.6672044,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,707,1488853.5,161776.61,569379.19,0,0,0,2022.83 +2992,3694,6477,-9,-9,-9,1,0,25,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1010.4402,0,3,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.89,38.7,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,413.5,-41028.086,0,0,0,-192.18423,0,920.52271 +2992,3694,6478,-9,6477,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.22369,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,413.5,-41028.086,0,0,0,-192.18423,0,920.52271 +2993,3695,6479,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,5.344018,5.5574322,0,0,-1012.0588,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3603015,47.04,32.59,-9,-9,3.333333333333333,3,4,1,0,2,8,2,0,556,82567.625,0,0,0,0,0,1557.0066 +2994,3696,6480,6481,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.4857559,5.6619911,6,15,-78.040131,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,8.8230228,11.57138,65.08828,0,1,1,0,.42411318,5.7955694,52,45,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,691.5,2473949.8,0,2791422,566606.31,0,0,1824.512 +2994,3696,6481,6480,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9531889,6.3202066,6,-15,18.239357,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.476089,6.564321,57.16,56.15,52,45,8.333333333333334,1,1,0,0,5,9,2,1,691.5,2473949.8,0,2791422,566606.31,0,0,1824.512 +2995,3697,6482,-9,6484,6483,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.19415,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6483,6484,-9,-9,1,1,45,1,3,0,3,3,-9,0,3,7.1976919,6.933085,0,3,11,35.812748,-9,2,1,2021,19,8,32,0,1,8,0,5.9546824,5.9546824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,50.25,29.98,5,3,4,0,0,9,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6484,6483,-9,-9,1,0,34,1,3,0,1,1,-9,0,2,0,0,0,1,-11,44.129047,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,29.98,50.28,51.35,6.666666666666667,4,5,0,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6485,-9,6484,6483,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7462,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6486,-9,6484,6483,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.24426,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2996,3698,6487,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.7579961,7.7082019,0,0,-906.02673,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0938056,7.7564354,47.4,55.39,-9,-9,6.666666666666667,1,1,0,0,4,13,3,1,211,756812.44,265051.5,232982.41,0,0,0,307.77197 +2997,3699,6488,6489,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.4178424,5.0201488,55,1,90.983711,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2233114,60.25,21.15,48.73,34.86,8.333333333333334,1,1,0,0,0,13,2,1,1309.5,153954.83,169401.31,0,0,0,0,1383.7594 +2997,3699,6489,6488,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,55,-1,69.182747,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.73,34.86,60.25,21.15,0,1,1,0,0,0,13,2,1,1309.5,153954.83,169401.31,0,0,0,0,1383.7594 +2998,3700,6490,6491,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,2.8502471,3.0911534,0,33,1,41.551743,0,-9,-9,2021,6,0,40,40,1,0,0,.063347265,.063347265,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,8,4,1,1058,669808.5,401550.13,311358.56,153314.7,0,0,3541.7979 +2998,3700,6491,6490,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.7958145,8.9165726,4.8743677,33,-1,92.85215,0,-9,-9,2021,10,0,48,60,1,0,0,16.515284,16.515284,.05,.05,0,0,0,0,0,0,0,0,0,4.8116932,0,51.24,58.84,51.83,57.2,1.666666666666667,4,2,0,0,10,8,4,1,1058,669808.5,401550.13,311358.56,153314.7,0,0,3541.7979 +2998,3701,6492,-9,6490,6491,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1132.7599,0,3,3,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.54,47.83,-9,-9,5,4,2,1,1,1,8,1,1,175,686.26141,0,0,0,17014.98,0,0 +2999,3702,6493,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,5.0867414,4.835885,0,0,0,-931.41638,0,3,3,2021,11,0,25,25,1,0,0,.77730244,.77730244,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,49.06,-9,-9,5,1,1,0,0,11,2,2,1,552,135475.03,0,0,0,0,0,452.75394 +2999,3703,6494,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1036.6104,-9,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.91,37.17,-9,-9,1.666666666666667,1,1,0,1,2,2,1,1,477,192557.06,0,0,0,0,0,212.41579 +3000,3704,6495,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9876733,7.7553792,0,0,0,-1036.2211,0,2,2,2021,16,4,40,30,1,4,0,7.7716947,7.7716947,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.5,44.31,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,438,172478.41,167177.8,0,0,0,0,1275.2053 +3001,3705,6496,6497,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.5218315,8.4650383,0,1,1,-151.18396,-9,-9,-9,2021,13,2,41,0,1,2,0,13.708581,13.708581,0,0,0,0,0,0,0,0,0,0,0,4.4613218,0,46.28,62.6,51.77,58.57,6.666666666666667,1,1,0,0,2,9,5,0,608.5,50631.922,134490.25,337041.5,200407.47,1190.8524,0,3438.6345 +3001,3705,6497,6496,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.494566,8.3925495,0,1,-1,-186.36452,0,-9,-9,2021,6,0,53,50,1,0,0,9.4911385,9.4911385,.05,.05,0,0,0,0,0,0,0,0,0,3.0055749,0,51.77,58.57,46.28,62.6,8.333333333333334,1,1,0,0,3,9,5,0,608.5,50631.922,134490.25,337041.5,200407.47,1190.8524,0,3438.6345 +3002,3706,6498,6499,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.2283058,7.9513669,0,4,-10,-60.750572,0,3,2,2021,12,0,42,42,1,0,0,7.751389,7.751389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,52.92,55.55,5,1,1,0,1,11,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3002,3706,6499,6498,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,7.9635472,7.9063711,0,4,10,-4.9174252,0,3,3,2021,9,0,39,39,1,0,0,9.606926,9.606926,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.92,55.55,46.92,54.3,0,1,1,0,0,9,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3002,3706,6500,-9,6498,6499,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.9302,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3003,3707,6501,6502,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.1665998,6.8349156,0,43,-7,59.43819,0,3,3,2021,8,0,20,15,1,0,0,6.7073832,6.7073832,0,0,0,0,0,0,0,0,1,1,0,0,0,55.93,52.62,55.29,43.33,8.333333333333334,1,1,0,0,12,10,4,1,1933,1060050,733551.75,228828.44,16367.596,0,2681.2434,3768.0864 +3003,3707,6502,6501,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.8445754,8.1754789,7.1703897,43,7,-6.6125388,0,2,3,2021,8,0,42,50,1,0,0,6.1845303,6.1845303,0,0,0,0,0,0,0,0,1,1,0,8.4364843,6.9025631,55.29,43.33,55.93,52.62,8.333333333333334,1,1,0,0,12,10,4,1,1933,1060050,733551.75,228828.44,16367.596,0,2681.2434,3768.0864 +3004,3708,6503,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1041.0845,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,28.26,-9,-9,10,1,1,0,0,0,4,1,0,189,-46167.891,0,0,0,-156.30855,0,1289.4456 +3005,3709,6504,6505,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0106926,7.8061075,0,18,2,-16.10516,0,2,2,2021,8,0,40,40,1,0,0,9.0466127,9.0466127,.05,.05,0,0,0,0,0,0,1,1,0,1.7939848,0,62.39,56.71,54.95,54.53,10,1,1,0,0,10,9,4,1,1205,374381.88,169858.56,265055.06,40259.078,0,624.32452,3341.9675 +3005,3709,6505,6504,-9,-9,1,1,39,0,1,0,3,3,-9,0,5,8.2277193,8.2018042,0,18,-2,108.8955,0,2,2,2021,7,0,55,45,1,0,0,8.366869,8.366869,.05,.05,0,0,0,0,0,0,1,1,0,1.5228324,0,54.95,54.53,62.39,56.71,10,1,1,0,0,14,9,4,1,1205,374381.88,169858.56,265055.06,40259.078,0,624.32452,3341.9675 +3006,3710,6506,6508,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.9730101,8.8986912,0,7,-7,9.7262211,0,2,1,2021,12,1,40,40,1,1,0,20.069984,20.069984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.07,57.25,54.97,47.63,6.666666666666667,1,1,0,0,8,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3006,3710,6507,-9,6506,6508,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.0101,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3006,3710,6508,6506,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2731667,8.074543,0,7,7,11.524616,0,2,2,2021,7,0,37,37,1,0,0,12.954371,12.954371,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.97,47.63,40.07,57.25,6.666666666666667,1,1,0,0,8,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3007,3711,6509,6510,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,5.2814217,4.9027429,70,0,49.37307,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.032499064,4.6818409,47.34,42.41,41.34,32.53,8.333333333333334,1,1,0,0,0,4,2,1,311,-43950.617,-27354.779,0,0,0,0,1117.8511 +3007,3711,6510,6509,-9,-9,1,0,96,0,0,0,2,2,-9,0,2,0,0,0,70,0,-3.5345678,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.34,32.53,47.34,42.41,8.333333333333334,1,1,0,0,0,4,2,1,311,-43950.617,-27354.779,0,0,0,0,1117.8511 +3007,3712,6511,-9,6510,6509,1,1,65,0,0,0,2,2,-9,0,3,0,7.4655218,7.7441816,0,0,-894.95758,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.7877316,54.21,49.4,-9,-9,1.666666666666667,1,1,0,0,5,4,3,1,981,877635.81,473653.53,253126.95,0,4468.832,0,1165.8619 +3008,3713,6512,6513,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,42,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,42.07,32.4,10,1,1,0,0,0,6,1,1,1511.5,108887.45,-24223.262,177453.63,0,0,0,2706.0024 +3008,3713,6513,6512,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,42,3,0,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,123.36175,0,0,1,1,0,0,0,42.07,32.4,62.49,55.09,6.666666666666667,1,1,0,0,0,6,1,1,1511.5,108887.45,-24223.262,177453.63,0,0,0,2706.0024 +3009,3714,6514,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.5466051,5.6025324,0,0,-958.5636,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3811693,5.5157065,58.33,39.49,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,364,196175.16,103503.62,0,0,123.48596,0,1087.3861 +3010,3715,6515,6516,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,0,0,47,-2,0,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.719851,0,42,1,0,1,0,0,51.31,18.52,32.08,47.89,1.666666666666667,1,1,0,0,3,7,1,0,855.5,673045.88,103478.14,536641.5,116473.97,2320.187,1640.5161,535.99329 +3010,3715,6516,6515,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,32.08,47.89,51.31,18.52,5,1,1,0,0,11,7,1,0,855.5,673045.88,103478.14,536641.5,116473.97,2320.187,1640.5161,535.99329 +3011,3716,6517,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.0520725,9.1120081,0,0,0,-1037.3734,0,3,1,2021,12,0,39,59,1,2,0,28.182938,28.182938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,49,-9,-9,7,3,4,0,0,12,8,5,1,109,345104.88,342533.38,0,0,0,2142.8223,2763.3757 +3012,3717,6518,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.5677748,7.462317,0,0,-1025.8981,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5834384,7.4470487,49.81,59.64,-9,-9,8,1,1,0,0,12,4,3,0,1133,615767.88,363723.25,203087.94,0,4869.0933,0,1426.1359 +3013,3718,6519,6520,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.1439228,7.9564395,0,24,-5,197.32767,0,3,2,2021,10,0,27,39,1,0,0,13.770417,13.770417,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,45.34,48,37,8.333333333333334,1,1,0,0,9,2,4,1,567.5,324901.81,285376.31,91601.469,5202.5518,0,0,2754.9551 +3013,3718,6520,6519,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.0064735,7.1383629,0,7,5,-31.749388,0,-9,-9,2021,11,2,40,40,1,2,0,3.1927278,3.1927278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,37,53.98,45.34,6.666666666666667,1,1,0,0,9,2,4,1,567.5,324901.81,285376.31,91601.469,5202.5518,0,0,2754.9551 +3014,3719,6521,6522,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.2057467,8.1180611,0,18,0,16.865057,0,2,2,2021,0,0,26,24,1,0,0,15.123423,15.123423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.33,53.46,10,1,1,0,0,15,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6522,6521,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.8291512,9.0215044,0,18,0,-117.61132,0,2,2,2021,6,0,43,43,1,0,0,22.684782,22.684782,.05,.05,.05,0,0,0,0,0,1,1,0,.55651248,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,15,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6523,-9,6521,6522,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.06409,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6524,-9,6521,6522,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.0894,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3015,3720,6525,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-975.51227,0,3,2,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.64,30.48,-9,-9,0,3,4,1,0,1,4,2,0,403,107482.6,0,0,0,1226.422,0,1429.149 +3016,3721,6526,6527,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,6.0584583,6.3237972,50,1,11.353579,0,2,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,2.8012543,0,0,1,1,0,4.5308604,6.2226191,34.39,16.93,60.12,54.8,1.666666666666667,1,1,0,0,0,9,5,1,306.5,2413325.5,980322.69,669222,0,0,0,5156.2764 +3016,3721,6527,6526,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.9230413,8.8386707,50,-1,75.144051,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.9931316,60.12,54.8,34.39,16.93,8.333333333333334,1,1,0,0,0,9,5,1,306.5,2413325.5,980322.69,669222,0,0,0,5156.2764 +3017,3722,6528,-9,6530,6529,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.81311,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3017,3722,6529,6530,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7567329,8.4964361,0,8,1,62.570663,0,1,2,2021,10,1,38,38,1,1,0,14.200314,14.200314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,25.2,66.67,8.333333333333334,1,1,0,0,9,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3017,3722,6530,6529,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.8157454,7.6123428,0,8,-1,90.482346,0,2,2,2021,23,11,20,22,1,11,0,15.015429,15.015429,.05,.05,0,0,0,0,0,0,1,1,0,2.0216179,0,25.2,66.67,57.33,53.46,6.666666666666667,1,1,0,0,9,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3018,3723,6531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.9223738,5.7766557,0,0,-921.47552,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9331269,5.9683943,56.45,31.13,-9,-9,5,1,1,0,0,0,9,2,1,1267,162866.28,-82396.75,0,0,0,0,470.99835 +3019,3724,6532,6533,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.4006853,6.5461116,12,11,-76.993408,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,17.642595,0,0,1,1,0,0,6.5814061,55.37,40.83,56.5,51,10,1,1,0,0,0,9,4,1,415,2339601.5,1369896.5,907328.88,0,0,0,4118.73 +3019,3724,6533,6532,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.3953276,8.2995062,12,-11,98.073212,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.8955698,8.769206,56.5,51,55.37,40.83,8.333333333333334,1,1,0,0,0,9,4,1,415,2339601.5,1369896.5,907328.88,0,0,0,4118.73 +3020,3725,6534,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.0175915,5.6421218,0,0,-974.86682,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1533923,54.55,46.39,-9,-9,6.666666666666667,3,4,0,0,0,2,2,0,669,201393.97,137470.69,237671.7,0,0,0,1988.0801 +3021,3726,6535,6536,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3195372,7.6282248,0,29,0,10.342372,0,3,3,2021,17,5,16,15,1,5,0,13.500776,13.500776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,53,54,6.666666666666667,1,1,0,0,8,5,4,1,1283,475972.19,378995.97,111764.7,0,0,0,2035.6548 +3021,3726,6536,6535,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7990336,8.0434618,6.9665561,8,0,65.224335,0,-9,-9,2021,9,0,50,70,1,1,0,6.0237246,6.0237246,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0644069,53,54,51.24,58.84,8,1,1,0,0,1,5,4,1,1283,475972.19,378995.97,111764.7,0,0,0,2035.6548 +3022,3727,6537,6538,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,8,1,-84.008286,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.61,50.58,57.16,56.15,8.333333333333334,1,1,0,0,0,13,3,1,614.5,1423901.3,1028863.1,111484.28,0,0,0,2638.823 +3022,3727,6538,6537,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8288856,7.8749189,8,-1,5.2398748,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9596996,57.16,56.15,51.61,50.58,8.333333333333334,1,1,0,0,0,13,3,1,614.5,1423901.3,1028863.1,111484.28,0,0,0,2638.823 +3022,3728,6539,-9,6538,6537,1,1,28,0,0,0,1,1,-9,0,5,8.8538513,8.8896303,0,0,0,-1013.863,-9,2,-9,2021,9,0,36,0,1,0,0,17.814178,17.814178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,6,13,5,1,3859,95611.969,-86853.508,4481.1685,0,0,0,1527.0901 +3023,3729,6540,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.1691728,6.2166271,0,0,-889.02264,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5396571,5.2241664,39.41,37.64,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,717,308939.5,-21465.572,0,0,0,0,423.71112 +3024,3730,6541,6542,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,4.889637,5.0959802,9,7,34.807949,0,2,1,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2436419,5.351603,36.61,17.55,44.26,59.43,1.666666666666667,1,1,0,0,0,11,2,0,1266.5,150023.5,0,244656.78,0,0,-323.80103,2024.0597 +3024,3730,6542,6541,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,9,-7,197.23125,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.26,59.43,36.61,17.55,3.333333333333333,1,1,0,0,0,11,2,0,1266.5,150023.5,0,244656.78,0,0,-323.80103,2024.0597 +3025,3731,6543,6544,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,0,-118.66226,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,7.8991733,0,49.5,46.08,39.52,46.83,8.333333333333334,1,1,0,0,0,7,3,1,673.5,3138045,598296.75,2070667.5,0,0,0,3211.751 +3025,3731,6544,6543,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8795977,7.8939295,10,0,29.491791,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1190426,8.2115946,39.52,46.83,49.5,46.08,3.333333333333333,1,1,0,0,5,7,3,1,673.5,3138045,598296.75,2070667.5,0,0,0,3211.751 +3026,3732,6545,6546,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.8220563,7.8696723,6,6,132.45593,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2794433,7.6801295,60.05,45.35,46.39,60.99,8.333333333333334,1,1,0,0,0,4,3,1,216.5,557429.75,371907.31,210786.92,0,0,0,2364.3071 +3026,3732,6546,6545,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.0973978,5.3967628,6,-6,19.935263,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9990911,5.3637295,46.39,60.99,60.05,45.35,8.333333333333334,1,1,0,0,0,4,3,1,216.5,557429.75,371907.31,210786.92,0,0,0,2364.3071 +3027,3733,6547,6548,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.5506997,7.5878477,0,6,-2,60.076637,0,2,2,2021,8,0,30,11,1,0,0,8.371067,8.371067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.63,56.14,8.333333333333334,1,1,0,0,7,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6548,6547,-9,-9,1,1,29,1,2,0,2,2,-9,0,5,7.8352666,7.8141022,0,6,2,-70.007957,0,-9,-9,2021,0,0,37,45,1,0,0,9.5282545,9.5282545,.05,.05,0,0,0,0,0,0,1,1,0,.2158943,0,57.63,56.14,54.2,57.49,8.333333333333334,1,1,0,0,6,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6549,-9,6547,6548,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.55975,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6550,-9,6547,6548,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.79785,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3028,3734,6551,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.8048334,3.9043894,0,0,-1104.4952,-9,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4612365,44.24,35.51,-9,-9,5,1,1,0,0,0,12,2,1,498,118556.47,0,0,0,0,0,23.872175 +3029,3735,6552,-9,-9,-9,1,1,19,0,1,0,2,2,-9,0,5,7.9853086,8.4659996,6.5880237,0,0,-1001.113,0,1,1,2021,5,0,35,35,1,0,1,8.0339384,8.0339384,.05,.05,0,0,0,0,0,0,1,1,0,6.9713645,0,54.1,59.11,-9,-9,10,1,1,0,0,2,5,4,0,1275,-91241.445,-156404.64,0,0,0,0,643.74683 +3030,3736,6553,6554,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.9014978,9.0680561,0,5,-6,86.166153,0,-9,-9,2021,5,0,55,55,1,0,0,16.48353,16.48353,0,0,0,0,0,0,0,0,0,0,0,0,0,57.49,39.89,59.31,49.81,8.333333333333334,1,1,0,0,3,10,5,1,2611,20757240,4895612,856185.25,0,0,0,5569.8516 +3030,3736,6554,6553,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.3478079,9.4524193,0,5,6,-21.948116,0,2,2,2021,8,0,57,50,1,0,0,30.205069,30.205069,0,0,.05,0,0,0,0,0,0,0,0,4.9453239,0,59.31,49.81,57.49,39.89,10,1,1,0,0,9,10,5,1,2611,20757240,4895612,856185.25,0,0,0,5569.8516 +3031,3737,6555,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,7.5860782,7.7289119,5.8496618,0,0,-1028.4414,0,-9,-9,2021,14,3,20,30,1,3,0,12.55861,12.55861,.05,.05,0,0,0,0,0,2,1,1,0,6.472693,5.9175963,44.6,39.54,-9,-9,8.333333333333334,1,1,0,0,15,10,3,1,255,189082.59,-41178.367,0,0,0,0,1803.833 +3032,3738,6556,-9,6557,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.674,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,944.5,-12521.738,0,0,0,0,0,932.41199 +3032,3738,6557,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1084.3188,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,1,0,0,2,1,0,944.5,-12521.738,0,0,0,0,0,932.41199 +3033,3739,6558,-9,6559,6561,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.4543,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6559,6561,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.5956068,8.5903063,0,7,-5,-5.4321356,0,2,2,2021,18,6,50,52,1,6,0,13.500317,13.500317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,58.79,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6560,-9,6559,6561,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.89087,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6561,6559,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.4689207,8.5019827,0,7,5,-93.648308,0,-9,-9,2021,7,0,36,37,1,0,0,17.379604,17.379604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.22,58.79,10,1,1,0,1,9,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3034,3740,6562,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-783.01288,0,-9,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,28.04,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,867,64829.156,0,0,0,0,0,2639.2881 +3035,3741,6563,6564,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.5007429,8.4557686,0,13,5,0,0,2,2,2021,13,1,38,42,1,1,0,14.015862,14.015862,.05,.05,0,0,0,0,0,0,1,1,0,2.1792867,0,42.6,46.82,44.02,60.7,8.333333333333334,2,3,0,0,9,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6564,6563,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4151802,8.4930563,0,13,-5,0,0,2,3,2021,8,0,42,52,1,0,0,14.562415,14.562415,.05,.05,0,0,0,0,0,7,1,1,0,4.3766928,0,44.02,60.7,42.6,46.82,8.333333333333334,2,3,0,0,9,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6565,-9,6564,6563,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.0602,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6566,-9,6564,6563,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4015,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3036,3742,6567,6568,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,46,6,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,64.40000000000001,36.46,54.27,22.7,10,1,1,0,0,0,2,1,0,975,63604.793,0,39566.797,25049.24,0,1934.9763,2308.4404 +3036,3742,6568,6567,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,-6,0,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.27,22.7,64.40000000000001,36.46,6.666666666666667,1,1,0,0,0,2,1,0,975,63604.793,0,39566.797,25049.24,0,1934.9763,2308.4404 +3037,3743,6569,6570,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.4800925,7.6327491,52,2,-2.4760189,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3505635,7.5507855,51.71,47.5,43.94,14.08,10,1,1,0,0,0,4,3,1,293,882642.63,401758.81,262412.75,0,0,0,2602.8828 +3037,3743,6570,6569,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,5.307601,5.5689006,52,-2,4.652555,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0804543,5.3332343,43.94,14.08,51.71,47.5,8.333333333333334,1,1,0,0,0,4,3,1,293,882642.63,401758.81,262412.75,0,0,0,2602.8828 +3038,3744,6571,6572,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1544619,7.0231957,0,30,-23,-77.406891,0,3,1,2021,12,0,15,15,1,0,0,8.9882574,8.9882574,0,0,0,0,0,0,0,0,1,1,0,.85836399,0,40.47,56.92,58.31,40.62,6.666666666666667,1,1,0,0,11,9,3,1,2890,838797.63,218873.25,538853.88,0,0,0,1795.1368 +3038,3744,6572,6571,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.9947405,7.1364336,30,23,-64.648506,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4261312,7.0064139,58.31,40.62,40.47,56.92,8.333333333333334,1,1,0,0,0,9,3,1,2890,838797.63,218873.25,538853.88,0,0,0,1795.1368 +3039,3745,6573,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,7.5046644,7.9186335,6.9729266,0,0,-940.42621,0,1,1,2021,11,0,16,16,1,0,0,9.7780085,9.7780085,.05,.05,0,0,0,0,0,0,1,1,0,8.4314203,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,12,7,3,1,698,146617.69,19540.449,0,0,385.09952,1925.7634,3508.5767 +3040,3746,6574,6575,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.6267834,7.6451592,7,2,163.78845,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9598956,7.1657457,46.07,37.4,49.01,31.65,8.333333333333334,1,1,0,0,0,4,3,1,942.5,530597,281360.69,225018.28,0,0,0,1644.823 +3040,3746,6575,6574,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-2,20.971704,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9954219,0,49.01,31.65,46.07,37.4,8.333333333333334,1,1,0,0,0,4,3,1,942.5,530597,281360.69,225018.28,0,0,0,1644.823 +3041,3747,6576,-9,6579,6577,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.30316,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6577,6579,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.091773,9.1171894,0,7,1,-98.756172,0,2,2,2021,17,6,43,43,1,6,0,24.991938,24.991938,.05,.05,0,0,0,0,0,0,1,1,0,1.9417812,0,39.79,57.19,57.16,56.15,8.333333333333334,1,1,0,0,10,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6578,-9,6579,6577,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.57898,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6579,6577,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,7,-1,43.545185,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6533508,0,57.16,56.15,39.79,57.19,8.333333333333334,1,1,0,0,6,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3042,3748,6580,6582,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.2366447,8.4304447,0,9,-8,97.492538,0,1,1,2021,7,0,24,15,1,0,0,16.536076,16.536076,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.57,51.63,8.333333333333334,1,1,0,0,9,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6581,-9,6580,6582,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.65656,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6582,6580,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,9.4228992,9.0706663,0,9,8,39.577934,0,-9,-9,2021,18,6,49,49,1,6,0,19.589355,19.589355,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.57,51.63,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6583,-9,6580,6582,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.043,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3043,3749,6584,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.210155,6.91641,0,0,0,-986.38074,0,-9,-9,2021,6,0,12,12,1,0,0,15.281557,15.281557,.05,.05,0,0,0,0,0,0,1,1,0,5.5025334,0,57.16,56.15,-9,-9,0,1,1,0,0,10,9,3,1,785,3354.8074,86293.094,0,0,0,0,1439.725 +3044,3750,6585,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7776818,7.8530126,0,0,0,-928.24591,0,3,3,2021,10,0,25,25,1,0,0,10.663714,10.663714,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,1543,394912.25,141784.11,232260.45,0,0,0,1486.0598 +3045,3751,6586,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3225055,5.1964793,0,0,-968.86926,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2599545,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1708,-6684.2563,74199.234,0,0,0,0,370.22144 +3046,3752,6587,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.6528,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.78,30.49,-9,-9,0,1,1,0,0,0,9,1,1,1330,35968.586,0,0,0,0,0,1089.8981 +3047,3753,6588,6589,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.103364,7.8815422,5.4691553,1,1,-13.343405,-9,-9,-9,2021,9,0,15,0,1,1,0,25.61268,25.61268,0,0,0,0,0,0,0,0,1,1,0,4.693294,5.4192381,53,47,55.96,49.93,7,1,1,0,0,1,9,3,1,331,810090.19,553791,264145.94,0,0,0,2907.8667 +3047,3753,6589,6588,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,41,-1,-62.734245,-9,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.96,49.93,53,47,10,1,1,0,0,0,9,3,1,331,810090.19,553791,264145.94,0,0,0,2907.8667 +3048,3754,6590,6591,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.3545055,8.1789856,0,3,0,58.105736,0,1,1,2021,12,1,37,39,1,1,0,11.075591,11.075591,.05,.05,0,0,0,0,0,0,0,0,0,2.5310822,0,43.73,59.7,21.25,63.22,6.666666666666667,1,1,0,0,5,4,5,1,922,-19930.979,43851.98,276739.81,198409,0,0,3401.0911 +3048,3754,6591,6590,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4124031,8.5778046,0,3,0,-50.061195,0,-9,-9,2021,12,2,39,40,1,2,0,11.288013,11.288013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.25,63.22,43.73,59.7,6.666666666666667,2,3,0,0,4,4,5,1,922,-19930.979,43851.98,276739.81,198409,0,0,3401.0911 +3049,3755,6592,6594,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.6906157,8.6209316,0,20,-4,-86.981133,0,2,2,2021,7,0,31,33,1,0,0,17.098413,17.098413,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.65,55.59,8.333333333333334,1,1,0,0,12,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6593,-9,6592,6594,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.3292,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6594,6592,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.393837,8.0739031,0,21,4,23.775545,0,2,2,2021,9,0,37,38,1,0,0,12.529985,12.529985,.05,.05,0,0,0,0,0,0,1,1,0,2.6220393,0,46.65,55.59,54.1,59.11,8.333333333333334,1,1,0,0,12,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6595,-9,6592,6594,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.03253,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3050,3756,6596,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,6.9882469,7.0254011,0,0,0,-1050.6835,0,3,3,2021,9,0,27,25,1,0,0,5.4091868,5.4091868,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,5,6,2,0,2170,-30612.975,37799.367,0,0,0,0,257.23862 +3051,3757,6597,6598,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3614635,6.3058944,55,-3,-42.176052,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.42488,51.99,39.38,55.03,44.66,6.666666666666667,1,1,0,0,3,4,2,1,251,394935.5,215084.69,235709.53,0,0,0,1462.6211 +3051,3757,6598,6597,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.2351813,6.3782406,55,3,-50.307793,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6837716,5.9500499,55.03,44.66,51.99,39.38,8.333333333333334,1,1,0,0,0,4,2,1,251,394935.5,215084.69,235709.53,0,0,0,1462.6211 +3052,3758,6599,6600,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,5.1232429,5.2582188,41,5,112.27584,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,.52556902,0,0,1,1,0,10.085933,4.9640737,41.37,30.22,51.24,58.84,6.666666666666667,1,1,0,0,9,9,2,1,1229.5,246301.28,77899.813,97026.094,0,0,0,16021.752 +3052,3758,6600,6599,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,41,-5,88.245537,0,3,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.4023838,0,51.24,58.84,41.37,30.22,8.333333333333334,1,1,0,0,4,9,2,1,1229.5,246301.28,77899.813,97026.094,0,0,0,16021.752 +3053,3759,6601,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.8123541,8.40166,7.3189549,0,0,-821.59778,0,1,2,2021,9,0,20,20,1,0,0,19.135645,19.135645,0,0,0,0,0,0,0,0,1,1,0,7.7995939,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,3744.5,-833.45898,70900.766,99339.438,42914.844,8649.418,0,2577.7842 +3053,3759,6602,-9,6601,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.8075,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,3744.5,-833.45898,70900.766,99339.438,42914.844,8649.418,0,2577.7842 +3054,3760,6603,-9,6606,-9,1,0,36,0,0,0,1,1,-9,0,4,8.9673204,9.3764114,0,0,0,-1074.1986,0,2,2,2021,13,4,65,95,1,4,0,15.673946,15.673946,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,8,8,5,1,2862,394687.47,394924,138648.38,129182,0,0,3106.0608 +3054,3761,6604,-9,6606,-9,1,0,41,0,0,0,1,1,-9,0,3,9.6304483,9.5632677,0,0,0,-1065.4753,0,3,3,2021,26,10,60,60,1,10,0,30.132107,30.132107,.05,.05,0,0,0,0,0,7,1,1,0,0,0,45.18,54.77,-9,-9,1.666666666666667,2,3,0,0,7,8,5,1,118,-8452.1992,116625.38,121133.02,115450.4,0,0,5630.5508 +3054,3762,6605,-9,6606,-9,1,0,37,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1033.2777,-9,1,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.52,52.14,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,281,76957.844,0,0,0,0,5932.0156,1604.2272 +3054,3763,6606,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,1,0,4.8026385,5.0152202,0,0,-1124.5648,0,-9,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,33.693806,0,2,1,1,0,5.3566003,0,56.16,17.64,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,392,100530.12,86762.305,89270.93,0,0,7.4883151,175.75104 +3054,3764,6607,-9,6609,-9,1,1,22,0,0,1,2,0,0,0,3,0,5.0944357,4.784482,0,0,-1018.6953,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9912949,0,54.62,53.53,-9,-9,10,2,3,0,1,0,8,2,1,405,-54275.207,0,0,0,0,0,1687.7104 +3054,3765,6608,-9,6609,-9,1,0,25,0,0,0,1,1,0,0,4,0,0,0,0,0,-1059.2902,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,-9,-9,3.333333333333333,2,3,0,1,4,8,1,1,250,31159.313,0,0,0,0,0,0 +3054,3766,6609,-9,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,7.8323431,7.6877961,0,0,-994.13733,0,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5512161,0,22.12,44.31,-9,-9,5,2,3,0,0,0,8,3,1,588,-15473.889,0,0,0,0,0,1142.5151 +3055,3767,6610,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-858.78296,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.42,26.88,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,217,6964.0542,0,0,0,0,0,907.09857 +3056,3768,6611,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-873.41797,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3370478,0,34.79,44.64,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,633,334002.72,313946.09,185337.98,0,0,0,378.62753 +3057,3769,6612,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8216858,7.2576985,0,0,0,-1084.5548,0,3,2,2021,8,0,30,40,1,0,0,8.6679144,8.6679144,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1081,-239295.08,0,0,0,0,-635.72998,1923.1964 +3057,3770,6613,-9,6612,-9,1,0,23,0,0,0,2,2,-9,0,4,8.5506001,8.6488209,0,0,0,-1020.2084,0,2,2,2021,2,0,40,40,1,0,1,12.319078,12.319078,.05,.05,0,0,0,0,0,0,0,0,0,3.7900696,0,43.95,58.45,-9,-9,6.666666666666667,1,1,0,0,4,9,5,1,137,-22037.875,-73223.039,0,0,0,0,2324.4827 +3058,3771,6614,-9,6615,6616,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-987.87708,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3058,3771,6615,6616,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.8682079,7.427845,0,9,-5,44.069572,0,3,3,2021,19,7,10,10,1,7,0,13.387219,13.387219,.05,.05,0,0,0,0,0,2,1,1,0,0,0,34.73,60.05,57.16,56.15,6.666666666666667,1,1,0,0,11,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3058,3771,6616,6615,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.605113,8.6280985,0,9,5,23.766479,0,2,2,2021,6,0,56,46,1,0,0,10.394121,10.394121,.05,.05,0,0,0,0,0,0,1,1,0,6.6797137,0,57.16,56.15,34.73,60.05,8.333333333333334,1,1,0,0,11,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3059,3772,6617,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.413116,7.3355007,6,5,-117.38875,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.0977597,7.365418,57.06,57.76,59.43,58.05,10,1,1,0,0,2,4,2,1,1266,2458009,827792.25,1318241.6,0,0,0,1106.9956 +3059,3773,6618,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,6,-5,49.413952,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7983556,0,59.43,58.05,57.06,57.76,10,1,1,0,0,6,4,2,1,3119,1167.7744,-9303.1357,0,0,0,0,993.83289 +3060,3774,6619,6620,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.0347185,7.1289339,11,-1,-171.03731,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6416745,7.1098189,58.15,52.91,52.18,50.21,8.333333333333334,1,1,0,0,6,7,3,1,326.5,953428.56,429957.97,304804.16,0,0,0,2511.5552 +3060,3774,6620,6619,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.5595651,7.514575,11,1,27.367727,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.535274,52.18,50.21,58.15,52.91,8.333333333333334,1,1,0,0,1,7,3,1,326.5,953428.56,429957.97,304804.16,0,0,0,2511.5552 +3061,3775,6621,6623,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.2065706,7.9858198,0,11,1,54.022537,0,-9,-9,2021,13,1,38,0,1,1,0,13.115151,13.115151,0,0,0,0,0,0,0,0,1,1,0,7.2987542,0,53.71,44.42,42.61,54.85,3.333333333333333,1,1,0,1,13,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3061,3775,6622,-9,6621,6623,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.63507,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3061,3775,6623,6621,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.9137568,8.1862297,0,11,-1,-180.0372,0,2,3,2021,13,1,38,35,1,1,0,14.350147,14.350147,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,53.71,44.42,8.333333333333334,1,1,0,0,12,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3062,3776,6624,6625,-9,-9,1,0,32,1,2,0,1,1,-9,0,3,7.5156684,7.9894195,0,6,-3,-49.681137,0,2,2,2021,24,8,25,25,1,8,0,7.9401889,7.9401889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.34,62.53,49.41,58.28,8.333333333333334,1,1,0,0,7,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6625,6624,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.3531294,8.2963428,0,6,3,-3.997004,0,-9,-9,2021,9,1,58,53,1,1,0,10.394017,10.394017,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,20.34,62.53,8.333333333333334,1,1,0,0,5,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6626,-9,6624,6625,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.03571,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.061663233,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6627,-9,6624,6625,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0448,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3063,3777,6628,6629,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.9734249,8.0709476,34,-1,-74.827644,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2967253,7.7404723,51.83,57.2,44.09,31.24,8.333333333333334,1,1,0,0,0,9,3,1,806,768656.13,368008.5,422567.47,723.50439,0,8717.1309,2550.854 +3063,3777,6629,6628,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,34,1,-213.53026,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,14.375639,0,0,1,1,0,0,0,44.09,31.24,51.83,57.2,5,1,1,0,0,0,9,3,1,806,768656.13,368008.5,422567.47,723.50439,0,8717.1309,2550.854 +3064,3778,6630,6632,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.0445089,8.3824291,0,7,2,-10.258108,0,-9,-9,2021,10,0,40,40,1,1,0,13.246768,13.246768,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,58.05,54.52,7,1,1,0,0,1,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6631,-9,6632,6630,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.8037,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6632,6630,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.9260879,7.5364223,0,19,-2,15.063697,0,2,2,2021,8,0,21,10,1,0,0,12.769534,12.769534,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,51,56,8.333333333333334,1,1,0,0,8,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6633,-9,6632,6630,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.90045,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3065,3779,6634,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1045.9691,0,3,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.67,35.01,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,955,68045.75,39509.594,0,0,0,0,0 +3065,3780,6635,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,4.701364,4.6759858,0,0,-1129.1072,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,4.6293731,32.897758,46.066223,0,1,1,0,1.1602528,4.6826181,32.82,19.15,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1378,84008.352,49672.125,0,0,0,0,1375.9249 +3066,3781,6636,6637,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,9.1031904,8.9862928,0,9,0,-52.532776,0,2,3,2021,13,2,45,37,1,2,0,23.497913,23.497913,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.26,48.51,25.75,57.03,8.333333333333334,1,1,0,0,10,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3066,3781,6637,6636,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,0,0,0,9,0,13.13879,0,1,2,2021,17,5,0,40,3,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.3936496,0,25.75,57.03,50.26,48.51,6.666666666666667,1,1,1,0,10,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3066,3781,6638,-9,6636,6637,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.3254,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3067,3782,6639,6641,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1314545,9.5270672,0,18,4,86.221039,0,2,3,2021,11,1,20,65,1,1,0,64.93251,64.93251,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,55.19,54.26,46.4,59.87,8.333333333333334,1,1,0,0,6,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6640,-9,6641,6639,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.756,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6641,6639,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,9.0505247,9.0094385,0,18,-4,76.116348,0,1,1,2021,10,0,47,50,1,0,0,24.6528,24.6528,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,55.19,54.26,8.333333333333334,1,1,0,0,9,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6642,-9,6641,6639,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6473,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3068,3783,6643,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,6.8607869,6.7658901,0,0,-967.72369,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.6555222,6.7579689,71.38,7.86,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,190,64765.109,129399.59,0,0,0,-177.50003,1118.8354 +3069,3784,6644,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.1876383,8.3341684,0,0,-1040.2223,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1141009,8.5717573,52.69,48.71,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,2451,777509.5,616537.5,121735.53,0,0,0,2631.364 +3070,3785,6645,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1074.5917,0,3,3,2021,19,0,0,0,4,6,0,0,0,0,0,0,1,2.9779556,0,22.086981,0,1,1,0,0,0,46.64,16.52,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,542,-142053.27,0,0,0,0,0,-1.691174 +3071,3786,6646,-9,6648,6647,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.9197,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3071,3786,6647,6648,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.4265976,8.4342842,0,18,0,-74.105247,0,2,2,2021,17,5,37,37,1,5,0,16.303864,16.303864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,29.54,58.14,6.666666666666667,1,1,0,0,10,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3071,3786,6648,6647,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.9287343,7.0970716,0,18,0,30.857389,0,2,2,2021,20,9,21,24,1,9,0,5.6379876,5.6379876,0,0,0,0,0,0,0,0,1,1,0,0,0,29.54,58.14,46.55,58.3,3.333333333333333,1,1,0,0,8,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3072,3787,6649,-9,6650,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.17615,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3072,3787,6650,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,8.9627657,9.1898098,6.0669565,0,0,-1046.7588,0,2,3,2021,11,0,46,20,1,0,0,19.925097,19.925097,.05,.05,0,0,0,0,0,0,1,1,0,6.5284605,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3072,3787,6651,-9,6650,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1964,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3073,3788,6652,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5275583,8.6170101,0,4,-16,-7.4670501,0,2,2,2021,22,9,38,40,1,9,0,17.906231,17.906231,.05,.05,0,0,0,0,0,0,0,0,0,3.5021546,0,27.74,56.23,46.88,60.96,1.666666666666667,1,1,0,0,5,9,5,1,764,211893.58,67934.031,0,0,0,2761.5911,1211.9156 +3073,3789,6653,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,7.9426827,8.4899397,0,4,16,-84.899422,0,-9,-9,2021,2,0,37,37,1,0,0,8.5144958,8.5144958,0,0,.05,0,0,0,0,0,0,0,0,7.7416363,0,46.88,60.96,27.74,56.23,8.333333333333334,1,1,0,0,3,9,5,1,258,208225.22,-120512.76,85109.406,70292.766,14372.692,0,2157.7571 +3074,3790,6654,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.7583389,9.1417713,0,0,0,-1037.9132,0,2,2,2021,11,0,38,38,1,0,0,19.886118,19.886118,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,495,182503.05,152774.55,86303.086,79643.742,0,0,2222.9302 +3075,3791,6655,6657,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,9.5808163,9.6539555,0,17,16,1.4437019,0,-9,-9,2021,8,0,35,35,1,0,0,46.558262,46.558262,.05,.05,0,0,0,0,0,0,1,1,0,1.9815291,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3075,3791,6656,-9,6655,6657,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.05859,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3075,3791,6657,6655,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,8.041749,8.158473,0,20,-16,97.718895,0,3,3,2021,12,0,39,39,1,0,0,7.6787291,7.6787291,.05,.05,0,0,0,0,0,0,1,1,0,.0329891,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,12,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3076,3792,6658,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.6442,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,37.84,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,605,291359.06,0,106578.66,0,0,0,1653.0337 +3077,3793,6659,6660,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7302341,8.3874598,0,8,-5,51.327919,0,1,1,2021,6,0,39,40,1,0,0,17.310881,17.310881,.05,.05,0,0,0,0,0,7,0,0,0,0,0,60.29,52.11,44.59,56.4,8.333333333333334,1,1,0,0,11,12,5,1,638.5,405807,423578.56,171490,0,1372.8483,0,2345.3135 +3077,3793,6660,6659,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5673513,7.3320732,0,8,5,17.701292,0,3,2,2021,11,0,25,26,1,0,0,9.5083246,9.5083246,0,0,0,0,0,0,0,7,0,0,0,0,0,44.59,56.4,60.29,52.11,5,1,1,0,0,9,12,5,1,638.5,405807,423578.56,171490,0,1372.8483,0,2345.3135 +3078,3794,6661,6662,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.6622591,8.1557817,0,11,0,-42.065811,0,2,2,2021,16,3,46,40,1,3,0,12.317425,12.317425,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,47.94,53.79,6.666666666666667,1,1,0,0,12,5,5,1,232,567921.63,375140.28,288343.94,179897.72,22040.859,0,5737.5801 +3078,3794,6662,6661,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.1365395,9.1250715,0,11,0,178.21204,0,3,2,2021,13,1,63,98,1,1,0,15.746728,15.746728,.05,.05,0,0,0,0,0,2,0,0,0,0,0,47.94,53.79,40.83,59.68,6.666666666666667,1,1,0,0,12,5,5,1,232,567921.63,375140.28,288343.94,179897.72,22040.859,0,5737.5801 +3078,3795,6663,-9,6661,6662,1,0,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-998.62238,0,1,1,2021,13,2,0,17,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0815907,0,22.84,54.33,-9,-9,6.666666666666667,1,1,1,0,3,5,1,1,1071,-14471.756,0,0,0,0,0,278.80136 +3079,3796,6664,-9,6665,-9,1,0,36,0,1,0,2,2,-9,0,1,0,0,0,0,0,-946.78894,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.81,32.71,-9,-9,0,1,1,1,1,0,7,1,0,327,-72413.383,0,0,0,2898.3237,1637.5059,1326.745 +3079,3797,6665,-9,-9,-9,1,0,65,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1047.7963,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,11.654298,0,0,1,0,1,0,0,38.14,29.73,-9,-9,5,1,1,0,0,0,7,1,0,603,0,0,0,0,0,0,143.7099 +3080,3798,6666,-9,6667,6669,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9023,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6667,6669,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,8.8172455,8.5430727,0,18,-3,21.922525,0,3,3,2021,9,0,38,38,1,0,0,20.962734,20.962734,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,52.7,32.17,8.333333333333334,2,3,0,0,8,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6668,-9,6667,6669,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-948.82861,-9,1,1,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6669,6667,-9,6671,1,1,48,0,3,0,1,1,-9,0,4,8.8664503,8.9245119,0,18,3,51.176834,0,3,2,2021,18,7,40,40,1,7,0,17.902258,17.902258,.05,.05,0,0,0,0,0,0,1,1,0,7.6697006,0,52.7,32.17,52.24,50.75,8.333333333333334,2,3,0,1,7,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6670,-9,6667,6669,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.06085,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3799,6671,-9,-9,-9,1,1,85,0,3,0,3,3,-9,0,3,0,0,0,0,0,-976.74683,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7769008,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,719,25611.143,0,0,0,0,0,2108.322 +3081,3800,6672,6673,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.7994723,7.6759071,0,38,5,-51.096901,0,2,3,2021,6,0,27,27,1,0,0,10.335569,10.335569,0,0,0,0,0,0,0,27,1,0,1,0,0,59.46,46.99,33.11,29.9,8.333333333333334,1,1,0,0,13,11,3,1,454,618629,288626.25,106876.04,0,8972.7969,0,2107.6184 +3081,3800,6673,6672,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,36,-5,-85.796753,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,33.11,29.9,59.46,46.99,1.666666666666667,1,1,1,1,11,11,3,1,454,618629,288626.25,106876.04,0,8972.7969,0,2107.6184 +3082,3801,6674,6675,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.487339,8.2512951,42,1,-30.827929,0,-9,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8036489,8.295969,50.69,44.34,50.14,53.97,8.333333333333334,1,1,0,0,8,1,4,1,1442,761407.75,607376.75,230973.41,0,0,0,2117.4922 +3082,3801,6675,6674,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.0533333,3.8055737,42,-1,175.32455,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862689,3.6710234,50.14,53.97,50.69,44.34,8.333333333333334,1,1,0,0,8,1,4,1,1442,761407.75,607376.75,230973.41,0,0,0,2117.4922 +3083,3802,6676,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1078.9794,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.87,47.66,-9,-9,0,1,1,0,0,0,9,1,0,595,273995.47,0,263485.16,10568.734,0,0,678.91815 +3084,3803,6677,-9,6679,6678,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3804,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6678,6679,6682,-9,1,1,40,0,3,0,2,2,-9,1,3,7.8392715,7.712707,0,14,5,-14.20735,0,3,3,2021,6,0,30,35,1,0,0,6.0498366,6.0498366,0,0,0,0,0,0,0,2,1,1,0,0,0,59.46,46.99,49,56,8.333333333333334,2,3,0,0,9,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6679,6678,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,6,-5,69.041656,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,59.46,46.99,7,2,3,0,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6680,-9,6679,6678,1,1,10,0,3,1,3,0,-9,0,1,0,0,0,0,0,-962.11798,-9,3,2,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6681,-9,6679,6678,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-970.50085,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3804,6682,-9,-9,-9,1,0,61,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1058.3571,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,1360,-201490.22,0,0,0,0,0,696.85028 +3085,3805,6683,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1048.5848,0,-9,-9,2021,19,4,0,0,4,4,0,0,0,0,0,0,1,11.375976,0,87.927521,0,1,1,0,0,0,52,45,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,184,40176.063,0,0,0,0,0,1557.7532 +3086,3806,6684,6685,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5075769,8.3795538,0,12,0,119.96681,0,3,3,2021,9,0,40,40,1,0,0,15.00504,15.00504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,890.5,374839.5,256374.47,269316.75,0,0,0,3104.6885 +3086,3806,6685,6684,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.996614,8.4244299,0,12,0,-6.2379189,0,2,2,2021,6,0,40,40,1,0,0,8.8861275,8.8861275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,890.5,374839.5,256374.47,269316.75,0,0,0,3104.6885 +3087,3807,6686,6687,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.6018333,5.9572363,32,1,59.846172,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.720252,5.836411,59.7,32.49,47.9,45.86,5,1,1,0,0,5,10,2,0,537.5,155127.63,144266.97,0,0,0,0,1499.1003 +3087,3807,6687,6686,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-9.4666834,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.9,45.86,59.7,32.49,8.333333333333334,1,1,0,0,0,10,2,0,537.5,155127.63,144266.97,0,0,0,0,1499.1003 +3088,3808,6688,6689,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.0197687,8.2271242,0,1,2,64.6231,-9,-9,-9,2021,12,1,35,0,1,1,0,8.9635382,8.9635382,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.16,58.62,45.62,40.93,5,1,1,0,0,0,12,4,1,748.5,13649.688,-30091.711,62787.781,88877.938,2865.6628,3108.6597,2584.1626 +3088,3808,6689,6688,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1527433,8.2717867,0,1,-2,94.502441,0,2,1,2021,12,1,70,55,1,1,0,4.5961313,4.5961313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.62,40.93,46.16,58.62,8.333333333333334,1,1,0,0,8,12,4,1,748.5,13649.688,-30091.711,62787.781,88877.938,2865.6628,3108.6597,2584.1626 +3089,3809,6690,6691,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-8,0,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2133538,0,54.38,49.27,47.8,39.1,8.333333333333334,1,1,0,0,0,6,1,1,462,224110.06,0,185560.5,-10423.021,0,0,558.76422 +3089,3809,6691,6690,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,56,8,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.663651,0,47.8,39.1,54.38,49.27,6.666666666666667,1,1,0,0,0,6,1,1,462,224110.06,0,185560.5,-10423.021,0,0,558.76422 +3089,3810,6692,-9,6690,6691,1,1,50,0,0,0,2,2,-9,0,3,8.7499104,8.7165842,0,0,0,-773.34631,0,3,3,2021,9,0,46,50,1,0,0,15.31059,15.31059,.05,.05,0,0,0,0,.99833173,0,1,1,0,0,0,44.3,55.28,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,694,306185.91,157922.41,0,0,0,0,2200.1382 +3090,3811,6693,6694,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.0566902,9.2839727,0,13,-1,65.609222,0,1,1,2021,8,0,52,53,1,0,0,25.270979,25.270979,.05,.05,.05,0,0,0,0,0,0,0,0,3.9555774,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,9,5,0,1603,448578.31,505011.25,291693.75,216907.72,3641.3496,0,3302.6357 +3090,3811,6694,6693,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,0,0,0,11,1,19.493458,0,3,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,1603,448578.31,505011.25,291693.75,216907.72,3641.3496,0,3302.6357 +3091,3812,6695,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.9677787,6.9123926,0,0,-971.48248,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.961812,0,60.488895,0,1,1,0,2.9068475,6.7864337,52,44,-9,-9,8,1,1,0,0,0,11,2,0,354,214532.94,-12536.173,60541.125,0,0,0,952.42407 +3092,3813,6696,-9,6700,6699,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1120.2513,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6697,-9,6700,6699,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.5088,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6698,-9,6700,6699,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.9597,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6699,6700,-9,-9,1,1,40,1,3,0,3,3,-9,0,4,8.7601595,8.4195852,0,6,3,-32.242928,0,-9,-9,2021,9,0,40,40,1,1,0,21.896078,21.896078,.05,.05,0,0,0,0,0,0,1,1,0,3.9495025,0,52,56,22.95,66.73999999999999,7,1,1,0,0,1,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6700,6699,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,6,-3,-19.44659,0,3,3,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.95,66.73999999999999,52,56,6.666666666666667,1,1,0,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3093,3814,6701,6702,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.9069414,8.9243288,40,1,-4.6846604,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.0832968,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,2,5,5,1,192.5,1815386.6,1325974,269714.53,0,0,0,3514.0474 +3093,3814,6702,6701,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,5.6144199,5.8226852,40,-1,65.781967,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9374599,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,0,5,5,1,192.5,1815386.6,1325974,269714.53,0,0,0,3514.0474 +3094,3815,6703,6704,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1796789,8.1061697,0,10,0,15.600382,0,3,2,2021,13,1,40,39,1,1,0,10.637508,10.637508,0,0,0,0,0,0,0,0,1,1,0,0,0,49.85,44.94,41.37,35.42,5,1,1,0,1,10,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3094,3815,6704,6703,-9,-9,1,1,43,0,1,0,1,1,-9,0,1,8.7593317,8.8463106,0,2,0,34.39024,0,-9,-9,2021,21,9,40,37,1,9,0,18.538376,18.538376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.37,35.42,49.85,44.94,1.666666666666667,1,1,0,1,10,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3094,3815,6705,-9,6703,6704,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.91663,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3095,3816,6706,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,1,0,0,0,0,0,-857.8241,0,2,2,2021,22,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36,26,-9,-9,8.333333333333334,1,1,0,0,8,12,1,0,370,58470.52,13145.746,0,0,439.96304,0,1265.7189 +3096,3817,6707,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.2053285,6.0172858,0,0,-901.8028,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,4.9746947,0,27.298784,0,1,1,0,7.5990219,6.1105857,57.64,28.83,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,165,330275.59,-4215.2725,166053.36,0,0,0,1962.6287 +3097,3818,6708,6709,-9,-9,1,1,32,0,0,0,1,1,1,0,5,8.2627201,7.9369822,0,2,0,-25.535734,-9,-9,-9,2021,10,0,38,0,1,0,0,10.320448,10.320448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,54.69,57.47,8.333333333333334,1,1,0,0,4,4,5,1,962,68741.617,47489.305,200842.14,158013.91,2249.3706,1812.8748,3779.2849 +3097,3818,6709,6708,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.704196,8.5809736,0,2,0,115.57772,0,-9,-9,2021,6,0,37,37,1,0,0,14.663874,14.663874,0,0,0,0,0,0,0,0,0,0,0,7.214458,0,54.69,57.47,51.73,58.82,8.333333333333334,1,1,0,0,5,4,5,1,962,68741.617,47489.305,200842.14,158013.91,2249.3706,1812.8748,3779.2849 +3098,3819,6710,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.5652962,5.9121056,0,0,-1024.5104,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6355672,51,46,-9,-9,7,1,1,0,0,0,10,2,0,2435,650686,0,238289.31,0,0,0,993.74335 +3099,3820,6711,6712,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6114426,8.5511742,0,12,-1,-168.1503,0,2,2,2021,13,1,37,38,1,1,0,16.639673,16.639673,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,58.7,48.27,43.11,8.333333333333334,1,1,0,0,15,5,4,1,853.5,1292707,153733.66,616451.75,282946.66,26851.521,0,1623.0581 +3099,3820,6712,6711,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,12,1,1.6914974,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.27,43.11,43.44,58.7,6.666666666666667,1,1,0,0,7,5,4,1,853.5,1292707,153733.66,616451.75,282946.66,26851.521,0,1623.0581 +3100,3821,6713,6714,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.3187881,6.0930843,0,8,1,-104.40145,0,3,3,2021,12,2,40,35,1,2,0,1.5133879,1.5133879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.49,44.52,50.03,52.62,6.666666666666667,1,1,0,0,9,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3821,6714,6713,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.3855095,7.7788157,0,8,-1,124.09397,-9,-9,-9,2021,10,0,30,0,1,0,0,11.865409,11.865409,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,41.49,44.52,6.666666666666667,1,1,0,0,10,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3821,6715,-9,6713,6714,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-882.7876,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3822,6716,-9,6713,6714,1,1,24,0,1,0,2,2,-9,0,3,6.8887954,7.1405449,0,0,0,-1087.748,0,2,3,2021,15,2,25,25,1,2,1,4.987648,4.987648,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,5,11,2,1,358,0,0,0,0,0,0,515.27155 +3101,3823,6717,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.5202579,5.8284812,0,0,-1008.6561,0,3,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,4.5006633,0,21.420671,0,1,1,0,0,5.8563576,49.68,16.59,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,216,52729.773,98300.828,0,0,0,0,1727.2373 +3102,3824,6718,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1060.0763,0,2,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.3,28.33,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,925,193150.36,146305.34,0,0,0,0,2118.8464 +3103,3825,6719,-9,6720,6721,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.9551,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3103,3825,6720,6721,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,6.4572334,6.3532786,0,14,5,-6.4296222,-9,2,3,2021,14,1,13,0,1,1,0,5.089849,5.089849,0,0,0,0,0,0,0,0,1,1,0,0,0,43,39,40.46,63.68,5,1,1,0,0,9,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3103,3825,6721,6720,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,7.4310694,7.5187869,0,15,-5,29.819197,-9,2,2,2021,10,0,38,0,1,0,0,5.6908665,5.6908665,0,0,0,0,0,0,0,0,1,1,0,7.0437827,0,40.46,63.68,43,39,6.666666666666667,1,1,0,0,9,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3104,3826,6722,6723,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2900991,8.16115,0,4,0,32.512215,0,-9,-9,2021,13,1,46,44,1,1,0,9.6746778,9.6746778,.05,.05,0,0,0,0,0,0,0,0,0,4.086863,0,51.81,57.22,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,646.5,292086.56,170113.38,92760.109,60867.547,10363.117,0,3338.1465 +3104,3826,6723,6722,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4436836,8.7592287,0,4,0,83.429794,0,-9,-9,2021,7,0,38,47,1,0,0,16.039267,16.039267,0,0,0,0,0,0,0,0,0,0,0,4.1480904,0,57.16,56.15,51.81,57.22,8.333333333333334,1,1,0,0,7,6,5,1,646.5,292086.56,170113.38,92760.109,60867.547,10363.117,0,3338.1465 +3105,3827,6724,6728,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,5.6830964,5.9270773,0,8,-1,78.171432,0,2,2,2021,9,0,6,6,1,0,0,5.2279158,5.2279158,0,0,0,0,0,0,0,0,1,1,0,.34766123,0,48.81,59.91,49.12,57.28,8.333333333333334,1,1,0,0,4,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6725,-9,6724,6728,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0522,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6726,-9,6724,6728,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1056.0226,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6727,-9,6724,6728,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.7771,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6728,6724,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,9.2212181,9.4491854,0,8,1,-99.519173,0,2,2,2021,8,0,37,37,1,0,0,24.636131,24.636131,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.12,57.28,48.81,59.91,8.333333333333334,1,1,0,0,9,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3106,3828,6729,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.6396656,7.9201097,0,0,0,-917.18353,0,2,3,2021,10,0,37,27,1,0,0,7.5523081,7.5523081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.06,61.94,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,209,154834.59,-72596.734,0,0,29181.078,0,2202.1868 +3107,3829,6730,6731,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.1125069,8.1572456,0,2,0,7.5830884,0,2,2,2021,13,3,54,40,1,3,0,10.451061,10.451061,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.65,51.64,54.77,31.94,8.333333333333334,1,1,0,0,8,10,4,0,576,558032.25,659718.31,0,0,1368.6409,12014.49,3056.4814 +3107,3829,6731,6730,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8144727,7.8628187,0,2,0,-45.901142,0,-9,-9,2021,8,0,47,44,1,0,0,6.9090014,6.9090014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.77,31.94,52.65,51.64,10,1,1,0,0,2,10,4,0,576,558032.25,659718.31,0,0,1368.6409,12014.49,3056.4814 +3108,3830,6732,6733,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5819902,8.2980947,0,12,3,-16.093605,-9,-9,-9,2021,9,0,40,0,1,1,0,11.871037,11.871037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,53.39,52.35,8,1,1,0,0,1,10,4,1,827.5,1588660,1051422.8,384205.13,0,0,0,3235.269 +3108,3830,6733,6732,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8134327,7.6246157,0,34,-3,54.546272,0,2,2,2021,13,1,30,34,1,1,0,8.7353888,8.7353888,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,52.35,52,55,8.333333333333334,1,1,0,0,12,10,4,1,827.5,1588660,1051422.8,384205.13,0,0,0,3235.269 +3109,3831,6734,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,6.4445128,6.6995192,5.6219807,0,0,-879.54639,0,2,1,2021,10,0,37,35,1,0,0,1.9529685,1.9529685,0,0,0,0,0,0,0,0,0,0,0,5.9673595,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,9,2,2,0,446,-136621.55,-46315.219,0,0,0,0,1073.771 +3110,3832,6735,-9,6738,6737,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.87183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6736,-9,6738,6737,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6057,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6737,6738,-9,-9,1,1,26,1,2,0,2,2,1,0,4,7.1222429,7.2291675,0,3,-3,12.86255,-9,-9,-9,2021,9,0,40,0,1,0,0,4.0350389,4.0350389,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.95,32.97,5,1,1,0,1,4,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6738,6737,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,0,0,0,3,3,-70.510231,0,-9,-9,2021,8,0,0,17,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.95,32.97,54.2,57.49,8.333333333333334,1,1,1,0,8,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3111,3833,6739,6740,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,7.737144,7.508965,0,8,3,-3.5879555,0,2,2,2021,6,0,24,24,1,0,0,10.387655,10.387655,0,0,0,0,0,0,0,0,0,0,0,5.5561867,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,10,10,3,1,2085,459523.94,112189.23,193313.75,0,0,0,2033.6443 +3111,3833,6740,6739,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.3376575,7.2764835,0,8,-3,-127.36267,0,2,3,2021,8,0,40,60,1,0,0,4.6452131,4.6452131,.05,.05,0,0,0,0,0,0,0,0,0,5.2965617,0,54.79,55.86,57.06,57.76,10,1,1,0,0,10,10,3,1,2085,459523.94,112189.23,193313.75,0,0,0,2033.6443 +3112,3834,6741,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.0723968,6.4898996,0,0,-1015.2139,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4800754,54,43,-9,-9,7,1,1,0,0,0,5,2,1,1186,79212.516,21733.873,203016.05,0,0,0,850.82281 +3113,3835,6742,-9,-9,-9,1,1,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-826.23999,-9,2,2,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,4,1,0,567,-168737.95,0,0,0,0,0,0 +3114,3836,6743,6744,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6748419,8.6287422,0,6,-7,135.94487,0,-9,-9,2021,12,3,60,45,1,3,0,10.349458,10.349458,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.5,56.45,35.91,21.45,8.333333333333334,1,1,0,0,9,9,4,1,556,2121174,1356216,509863,0,0,0,2984.6418 +3114,3836,6744,6743,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,2.8954558,2.8057332,0,6,7,-157.90349,0,2,1,2021,22,7,50,0,1,7,0,.04171006,.04171006,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,21.45,35.5,56.45,1.666666666666667,1,1,0,0,1,9,4,1,556,2121174,1356216,509863,0,0,0,2984.6418 +3115,3837,6745,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.6468258,8.717452,0,0,0,-1127.8481,0,2,2,2021,7,0,37,35,1,0,0,17.96978,17.96978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,4,5,1,199,350484.13,126030.82,185022.69,0,0,0,1844.7986 +3116,3838,6746,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.3486567,8.3920803,0,0,0,-1103.3096,0,2,1,2021,5,0,35,45,1,0,0,12.26007,12.26007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,849,1468304.5,417529.03,735305.69,0,0,0,2204.2346 +3117,3839,6747,6748,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,46,0,-10.904632,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,130.15225,0,0,1,1,0,0,0,29.78,17.81,55.76,52.64,5,1,1,0,0,0,2,2,0,1025.5,168019.31,64646.695,138938.67,0,0,0,2003.5313 +3117,3839,6748,6747,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.6146312,6.5394926,46,0,12.614572,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6861577,55.76,52.64,29.78,17.81,8.333333333333334,1,1,0,0,6,2,2,0,1025.5,168019.31,64646.695,138938.67,0,0,0,2003.5313 +3118,3840,6749,6750,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7474861,7.5786171,0,17,-14,64.153267,0,2,2,2021,18,6,20,20,1,6,0,12.696321,12.696321,0,0,0,0,0,0,0,0,1,1,0,1.4296488,0,29.29,62.09,49.19,39.8,6.666666666666667,1,1,0,0,4,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3118,3840,6750,6749,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,7.6555471,8.5966291,7.6907897,17,14,21.577501,0,2,2,2021,17,5,40,35,1,5,0,7.092216,7.092216,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1325188,49.19,39.8,29.29,62.09,3.333333333333333,1,1,0,0,5,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3118,3840,6751,-9,6749,6750,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-907.104,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3119,3841,6752,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.5438862,8.6232538,5.9808207,0,0,-949.29987,0,2,3,2021,10,1,45,55,1,1,0,20.338692,20.338692,0,0,0,0,0,0,0,0,1,1,0,6.7260184,0,39.54,64.56,-9,-9,6.666666666666667,1,1,0,1,7,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3119,3841,6753,-9,6752,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-864.63007,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3119,3841,6754,-9,6752,-9,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-991.16211,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3120,3842,6755,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,5,6.7173872,6.6923862,0,0,0,-997.86694,0,3,3,2021,6,0,22,22,1,0,0,5.0365586,5.0365586,0,0,0,0,0,0,0,42,1,1,0,0,0,47.3,55.73,-9,-9,8.333333333333334,2,3,0,0,9,2,2,1,1361,44409.047,0,0,0,3561.1558,0,1814.4258 +3121,3843,6756,6757,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.1148052,8.0506029,0,5,-1,101.80318,0,-9,-9,2021,8,2,38,40,1,2,0,11.335451,11.335451,0,0,0,0,0,0,0,0,0,0,0,4.0777097,0,48.77,60.16,48.42,47.75,8.333333333333334,1,1,0,0,6,5,3,0,319.5,123066.46,0,0,0,0,0,1720.5925 +3121,3843,6757,6756,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,4.8799276,5.1850581,0,5,1,1.9591244,-9,-9,-9,2021,7,0,25,0,1,0,0,.69125378,.69125378,0,0,0,0,0,0,0,0,0,0,0,3.3133085,0,48.42,47.75,48.77,60.16,10,1,1,0,0,2,5,3,0,319.5,123066.46,0,0,0,0,0,1720.5925 +3122,3844,6758,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,6.6096148,6.7902355,0,0,0,-955.17706,0,3,1,2021,15,3,6,8,1,3,0,16.442865,16.442865,0,0,0,0,0,0,0,0,1,1,0,0,0,48.75,37.34,-9,-9,5,4,5,0,0,13,2,2,1,612,609122.19,391364.91,165613.92,0,5270.5503,0,380.10861 +3122,3845,6759,-9,6758,-9,1,0,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-1029.7815,-9,1,-9,2021,22,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.86,61.44,-9,-9,3.333333333333333,4,5,1,1,0,2,1,1,765,38964.078,0,0,0,0,0,0 +3123,3846,6760,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,2,8.3165293,8.4159231,0,0,0,-997.82733,0,2,1,2021,17,5,35,24,1,5,0,11.957823,11.957823,.05,.05,0,0,0,0,0,0,0,0,0,3.0936537,0,35.98,51.24,-9,-9,3.333333333333333,1,1,0,0,13,12,5,0,340,399206.09,124851.34,244605.38,0,0,0,2487.8359 +3124,3847,6761,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8674545,8.1231108,0,0,0,-863.45459,0,-9,-9,2021,10,0,44,41,1,0,0,9.8641157,9.8641157,.05,.05,0,0,0,0,0,7,1,1,0,0,0,63.09,45.22,-9,-9,6.666666666666667,1,1,0,0,12,5,4,1,355,86218.195,43083.777,0,0,0,0,314.5314 +3125,3848,6762,6763,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,5.2490869,5.2832885,9,-2,102.91557,0,-9,-9,2021,33,11,0,0,4,11,0,0,0,0,0,0,1,0,31.325863,0,0,1,1,0,1.4612776,5.4047217,29.53,19.07,50.41,31.55,5,1,1,0,0,0,2,2,1,435,268046.16,89991.039,166608.19,0,0,0,2212.2173 +3125,3848,6763,6762,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.3338556,6.3741665,58,2,20.008739,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.1740003,6.6010642,50.41,31.55,29.53,19.07,5,1,1,0,0,0,2,2,1,435,268046.16,89991.039,166608.19,0,0,0,2212.2173 +3126,3849,6764,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,7.7014217,7.8501263,0,0,0,-881.15497,0,3,3,2021,10,1,15,18,1,1,0,20.154148,20.154148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.26,22.23,-9,-9,5,4,2,0,1,15,6,3,1,772,383197.69,205216.36,244915.47,3661.6326,0,0,1378.4467 +3127,3850,6765,6766,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.2728949,5.3074789,58,-2,-95.227646,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,42.082012,0,0,1,1,0,.84101325,4.6786313,34.94,27.47,59.72,32.15,8.333333333333334,1,1,0,1,0,11,3,1,627,517034.25,452198.25,132205.72,0,0,0,2621.8228 +3127,3850,6766,6765,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,8.0867558,8.1968822,58,2,88.835846,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.250899,0,26.837858,2,1,1,0,0,8.3692217,59.72,32.15,34.94,27.47,8.333333333333334,1,1,0,1,0,11,3,1,627,517034.25,452198.25,132205.72,0,0,0,2621.8228 +3127,3851,6767,-9,6765,6766,1,0,45,0,0,0,2,2,-9,0,4,8.3404369,8.1952658,0,0,0,-993.92328,0,3,3,2021,10,0,48,48,1,1,0,8.5334616,8.5334616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,11,4,1,518,195532.58,59784.555,0,0,0,677.46887,1715.7496 +3128,3852,6768,6769,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.7066326,9.4614067,0,8,1,-13.478715,0,2,2,2021,9,0,52,38,1,0,0,39.470539,39.470539,.05,.05,0,0,0,0,0,0,0,0,0,4.6925044,0,58.57,40.92,51.79,40.15,5,1,1,0,0,12,9,5,1,335.5,1757188.3,1219935.8,745750.63,115744.23,0,0,6383.4561 +3128,3852,6769,6768,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,7.6868711,7.7194047,0,8,-1,-96.231506,0,3,2,2021,8,1,6,11,1,1,0,46.626656,46.626656,.05,.05,0,0,0,0,0,0,0,0,0,2.4518993,0,51.79,40.15,58.57,40.92,6.666666666666667,1,1,0,0,13,9,5,1,335.5,1757188.3,1219935.8,745750.63,115744.23,0,0,6383.4561 +3129,3853,6770,6772,-9,-9,1,1,50,1,1,0,1,1,-9,0,2,8.5514317,8.6356287,0,3,5,40.487392,0,2,1,2021,30,12,41,40,1,12,0,18.728199,18.728199,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,13.31,56.57,56.5,37.6,1.666666666666667,1,1,0,0,9,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3129,3853,6771,-9,6772,6770,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.98456,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3129,3853,6772,6770,-9,-9,1,0,45,1,1,0,1,1,-9,0,3,8.4576464,8.646595,0,3,-5,60.144638,0,-9,-9,2021,10,0,45,40,1,0,0,18.890869,18.890869,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,37.6,13.31,56.57,6.666666666666667,1,1,0,0,10,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3130,3854,6773,6775,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.3621626,8.3305645,0,13,-1,25.305458,0,2,1,2021,15,6,19,17,1,6,0,26.190247,26.190247,.05,.05,0,0,0,0,0,0,1,1,0,4.7257833,0,50.77,50.99,44.3,58.08,8.333333333333334,1,1,0,0,13,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6774,-9,6773,6775,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.1437,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6775,6773,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.9434586,9.1009779,0,13,1,-76.927681,0,2,2,2021,9,0,37,40,1,0,0,28.129421,28.129421,.05,.05,0,0,0,0,0,0,1,1,0,4.5060325,0,44.3,58.08,50.77,50.99,8.333333333333334,1,1,0,0,14,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6776,-9,6773,6775,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.536,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3131,3855,6777,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.63867,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9114703,0,58.13,18.26,-9,-9,6.666666666666667,1,1,0,1,1,5,2,1,276,200308.47,0,0,0,0,0,858.12152 +3132,3856,6778,-9,6779,6780,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.615,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6779,6780,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,6,1,6.4527946,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,50,57,6.666666666666667,1,1,0,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6780,6779,-9,-9,1,1,35,0,3,0,3,3,-9,0,4,8.3492956,8.5802002,0,6,-1,231.2961,0,-9,-9,2021,10,0,40,50,1,1,0,11.070134,11.070134,.05,.05,0,0,0,0,0,0,1,1,0,4.899796,0,50,57,43.2,59.97,7,1,1,0,0,1,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6781,-9,6779,6780,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.34711,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3133,3857,6782,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.0865288,7.9203148,0,2,1,8.8037605,0,2,1,2021,21,9,20,41,1,9,0,17.290213,17.290213,0,0,0,0,0,0,0,0,0,0,0,0,0,20.98,53.07,50,57,3.333333333333333,4,2,0,0,9,12,3,1,321,43070.883,19419.75,0,0,13376.47,0,584.34827 +3134,3858,6783,6784,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,43,4,0,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,122.50443,0,0,1,1,0,0,0,24.68,21.22,36.03,40.6,1.666666666666667,2,3,0,1,0,4,1,1,1199.5,138401.77,0,0,0,0,0,1471.0227 +3134,3858,6784,6783,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,43,-4,0,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.03,40.6,24.68,21.22,3.333333333333333,2,3,0,1,0,4,1,1,1199.5,138401.77,0,0,0,0,0,1471.0227 +3134,3859,6785,-9,6784,6783,1,0,27,0,0,0,1,1,1,0,3,7.1154323,7.2611446,0,0,0,-982.03046,-9,3,3,2021,10,1,15,0,1,1,0,10.700191,10.700191,0,0,0,0,0,0,0,111,1,1,0,0,0,46.56,50.26,-9,-9,0,2,3,0,0,8,4,3,1,941,630.76324,0,0,0,0,0,799.25439 +3134,3860,6786,-9,6784,6783,1,0,25,0,0,0,1,1,-9,0,2,7.9983521,8.039712,0,0,0,-1072.1265,0,3,3,2021,14,4,38,37,1,4,0,8.8393154,8.8393154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.26,35.91,-9,-9,5,2,3,0,0,8,4,4,1,703,123023.55,-6305.9561,0,0,0,0,1220.3113 +3134,3861,6787,-9,6784,6783,1,0,24,0,0,1,2,0,0,0,2,0,0,0,0,0,-1045.7396,-9,3,3,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,5,2,3,0,0,8,4,1,1,644,263443.38,0,0,0,0,0,0 +3135,3862,6788,6789,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.4556174,7.7293839,3,4,52.295818,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1668081,41.62,36.82,57.63,56.14,6.666666666666667,1,1,0,0,4,12,3,1,1482.5,710744.88,572050.44,163759.19,0,0,0,2352.0615 +3135,3862,6789,6788,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.8881545,7.2741876,3,-4,76.148781,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9885631,57.63,56.14,41.62,36.82,8.333333333333334,1,1,0,0,7,12,3,1,1482.5,710744.88,572050.44,163759.19,0,0,0,2352.0615 +3136,3863,6790,-9,6792,6791,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.99951,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3136,3863,6791,6792,-9,-9,1,1,46,1,1,0,1,1,-9,0,3,9.0162582,9.3493967,0,7,11,-.1275778,0,1,2,2021,21,8,42,40,1,8,0,20.262993,20.262993,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,49.91,56.93,8.333333333333334,1,1,0,0,6,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3136,3863,6792,6791,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.7780781,8.7966223,0,7,-11,27.420731,0,2,2,2021,11,1,64,56,1,1,0,15.791106,15.791106,.05,.05,0,0,0,0,0,0,1,1,0,6.1848464,0,49.91,56.93,33.66,61.57,8.333333333333334,1,1,0,0,7,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3137,3864,6793,6794,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.654532,6.6120439,54,0,39.407829,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.044385,6.3081055,57.16,56.15,51.94,35.51,10,1,1,0,0,0,9,4,1,719.5,931352.06,599646.75,363832.09,0,0,0,6002.6533 +3137,3864,6794,6793,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.4148436,8.3886185,54,0,30.562477,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0374651,8.3776655,51.94,35.51,57.16,56.15,10,1,1,0,0,0,9,4,1,719.5,931352.06,599646.75,363832.09,0,0,0,6002.6533 +3138,3865,6795,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,5.3429723,5.4527707,0,0,-1177.6616,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.0220883,1.696957,23.610249,0,1,1,0,0,5.359674,55.08,13.78,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,487,35090.645,0,0,0,0,0,824.81403 +3139,3866,6796,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.9495525,8.145339,6.3531671,0,0,-895.00555,0,3,-9,2021,11,0,27,27,1,0,0,14.42677,14.42677,0,0,0,0,0,0,0,0,1,1,0,6.6115775,0,52.81,49.13,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3139,3866,6797,-9,6796,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.63483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3139,3866,6798,-9,6796,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.7583,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3140,3867,6799,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.4088569,8.0175705,0,0,-1016.2233,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0886157,7.7146592,54.45,34,-9,-9,10,1,1,0,0,0,9,3,1,578,1795343.6,179464.72,1116815.4,0,0,0,2264.0134 +3141,3868,6800,6801,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0284863,8.2302361,0,4,-2,-46.96965,0,-9,-9,2021,12,1,40,38,1,1,0,9.7237062,9.7237062,0,0,0,0,0,0,0,0,0,0,0,.79735297,0,51.77,58.57,57.16,56.15,10,1,1,0,0,3,10,5,1,660.5,116518.52,40900.402,157779.38,139196.06,0,0,4010.8667 +3141,3868,6801,6800,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.6618433,8.6802053,0,4,2,60.379005,0,1,2,2021,6,0,40,48,1,0,0,16.906235,16.906235,.05,.05,0,0,0,0,0,0,0,0,0,.59139758,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,8,10,5,1,660.5,116518.52,40900.402,157779.38,139196.06,0,0,4010.8667 +3142,3869,6802,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2264037,6.901608,0,0,-1008.6926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3646331,52.83,48.43,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,273,414729,501738.72,83672.656,0,2311.9834,0,1392.3004 +3143,3870,6803,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.9138,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.9661656,0,35.06,37.97,-9,-9,10,1,1,0,0,0,7,1,1,1357,80187.711,0,0,0,0,0,446.54181 +3144,3871,6804,-9,6805,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.38544,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3144,3871,6805,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,2,6.1376767,6.0295649,0,0,0,-992.47229,0,3,3,2021,14,3,18,17,1,3,0,4.145021,4.145021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.44,35.14,-9,-9,1.666666666666667,4,2,0,1,3,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3144,3871,6806,-9,6805,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-898.84625,-9,3,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96100658,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,1,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3145,3872,6807,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8366842,8.3515759,0,0,0,-1103.9137,0,2,1,2021,10,0,36,38,1,0,0,15.052714,15.052714,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.01,58,-9,-9,8.333333333333334,3,4,0,0,11,8,5,0,2140,1153467,202645.42,774590.13,0,0,0,2546.8938 +3146,3873,6808,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.53992,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2452018,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,1,1,178,57987.012,0,0,0,0,0,135.46094 +3147,3874,6809,6810,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.3898134,7.7982597,0,1,-4,-74.487282,-9,2,2,2021,6,0,47,0,1,0,0,10.565319,10.565319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,54.79,55.86,10,1,1,0,0,8,7,4,1,525.5,89396.117,46351.078,0,0,5313.1553,3153.9399,2952.0522 +3147,3874,6810,6809,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0988283,7.8750105,0,1,4,49.836735,-9,-9,-9,2021,6,0,42,0,1,0,0,8.167347,8.167347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.09,46.7,8.333333333333334,1,1,0,0,3,7,4,1,525.5,89396.117,46351.078,0,0,5313.1553,3153.9399,2952.0522 +3148,3875,6811,6812,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,9,3,51.578094,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2474294,0,51,47,48.29,49.79,7,1,1,0,0,0,8,4,1,905,1781473,1006284.6,416212.59,0,0,0,3486.3369 +3148,3875,6812,6811,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.5834742,8.4953375,9,-3,-79.43959,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,9.01999,48.29,49.79,51,47,6.666666666666667,1,1,0,0,0,8,4,1,905,1781473,1006284.6,416212.59,0,0,0,3486.3369 +3148,3876,6813,6814,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7683935,9.0741749,0,2,1,51.450447,0,-9,-9,2021,10,0,50,50,1,1,0,19.448841,19.448841,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,50,57,55.09,43.45,7,4,1,0,0,1,8,5,1,554.5,124519.97,68132.852,0,0,0,0,5082.8359 +3148,3876,6814,6813,6811,6812,1,0,33,0,0,0,1,1,-9,0,3,8.7286119,8.6680956,0,2,-1,-96.783966,0,1,1,2021,9,1,45,45,1,1,0,18.116169,18.116169,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,43.45,50,57,6.666666666666667,1,1,0,0,9,8,5,1,554.5,124519.97,68132.852,0,0,0,0,5082.8359 +3149,3877,6815,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-942.54785,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,35.78,-9,-9,10,1,1,0,0,3,13,1,0,115,159388.38,0,0,0,0,0,1237.6403 +3149,3878,6816,-9,6815,-9,1,0,24,0,0,0,1,1,-9,0,3,7.8902493,7.5785551,0,0,0,-1015.6432,0,2,3,2021,11,2,41,47,1,2,1,6.6692305,6.6692305,0,0,0,0,0,0,0,0,1,1,0,0,0,34.23,54.42,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,416,0,0,0,0,0,0,1639.417 +3150,3879,6817,6818,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-1,20.755575,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,4,2,1,1034,424027.97,111266.18,323737.5,0,0,0,572.27881 +3150,3879,6818,6817,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1964798,6.3866467,60,1,-86.604546,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3383303,6.4865136,55,45,53,45,8,1,1,0,0,0,4,2,1,1034,424027.97,111266.18,323737.5,0,0,0,572.27881 +3151,3880,6819,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,5.2745762,5.8360276,0,0,-1004.3912,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3045678,0,23.12,54.62,-9,-9,3.333333333333333,1,1,1,1,0,4,2,0,1249,-222289.78,30011.365,0,0,-1281.8456,1067.1943,1827.1627 +3151,3880,6820,-9,6819,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-907.49646,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1249,-222289.78,30011.365,0,0,-1281.8456,1067.1943,1827.1627 +3152,3881,6821,6822,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3987994,0,2,1,1,0,1.8270342,0,45.98,34.05,52.08,55.93,10,1,1,0,0,0,2,2,0,1266.5,235109.33,-11862.112,154245.41,0,0,0,770.28796 +3152,3881,6822,6821,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,0,0,7,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,45.98,34.05,8.333333333333334,1,1,0,0,0,2,2,0,1266.5,235109.33,-11862.112,154245.41,0,0,0,770.28796 +3153,3882,6823,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.8761187,7.6791506,0,0,0,-925.6239,0,2,2,2021,11,0,35,30,1,0,0,10.714779,10.714779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,525,28879.088,-2681.4844,0,0,0,4514.353,1397.4447 +3154,3883,6824,-9,6825,-9,1,0,46,0,0,0,3,3,-9,0,4,8.0911331,8.3053703,0,0,0,-918.30286,0,3,-9,2021,10,0,37,37,1,1,0,12.122099,12.122099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,10,4,0,262,-11187.321,-82664.234,0,0,0,0,990.42291 +3154,3884,6825,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.0084953,6.1113534,0,0,-1057.9091,0,-9,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9982796,6.074811,51.23,43.7,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,262,546522,0,461641.84,0,0,0,1203.0404 +3155,3885,6826,6827,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,9,-2,-153.19647,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1957631,0,58.15,52.91,57.33,53.46,10,1,1,0,0,0,2,3,1,471,868419.25,480434.19,119692.98,0,0,0,2663.6006 +3155,3885,6827,6826,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.7439747,7.7098303,9,2,37.016632,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0454044,7.7581744,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,2,3,1,471,868419.25,480434.19,119692.98,0,0,0,2663.6006 +3156,3886,6828,-9,-9,6829,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-932.41956,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,2,2,1,2065,-154565.97,0,0,0,0,0,904.39063 +3156,3886,6829,-9,-9,-9,1,1,28,1,6,0,2,2,-9,0,2,7.6681557,7.2495832,0,0,0,-1084.694,0,3,3,2021,10,0,20,20,1,0,0,9.9854107,9.9854107,0,0,0,0,0,0,0,0,1,1,0,0,0,53.28,46.61,-9,-9,10,2,3,0,0,12,2,2,1,2065,-154565.97,0,0,0,0,0,904.39063 +3157,3887,6830,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.7809081,7.8732185,5.4060597,0,0,-1015.5085,0,2,1,2021,7,0,39,39,1,0,0,8.0977898,8.0977898,.05,.05,0,0,0,0,0,0,0,0,0,2.776819,5.6332631,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,245,460330.66,60026.738,186348.97,0,0,0,924.10419 +3158,3888,6831,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,8.358181,8.4201994,0,0,-1018.1552,0,-9,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4826043,8.0235004,36.6,43.07,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,1954,979541.25,183548.16,667157.81,0,0,0,2365.9653 +3159,3889,6832,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.15466,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,84.578598,0,0,1,0,1,0,0,38.39,40.89,-9,-9,5,1,1,0,0,0,11,1,0,414,24168.738,0,0,0,0,0,1487.7446 +3160,3890,6833,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,6.9422846,6.664875,0,0,-1060.3624,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8332796,55.62,32.44,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,384,74882.555,68640.461,41645.23,0,0,0,836.85132 +3161,3891,6834,6835,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.9169736,8.3901482,35,0,31.349417,0,2,2,2021,5,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.9945402,57.16,56.15,59.43,58.05,10,1,1,0,0,10,10,4,1,222.5,1491092,798132.75,393177.22,0,0,0,5161.2412 +3161,3891,6835,6834,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.685905,7.5728707,35,0,9.6116667,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.4347124,7.5174961,59.43,58.05,57.16,56.15,10,1,1,0,0,9,10,4,1,222.5,1491092,798132.75,393177.22,0,0,0,5161.2412 +3161,3892,6836,-9,6835,6834,1,1,31,0,0,0,2,2,-9,0,4,8.1761551,7.9797478,0,0,0,-1009.9109,0,1,1,2021,8,0,38,29,1,0,0,12.424313,12.424313,.05,.05,0,0,0,0,0,0,0,0,0,1.6884252,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,1095,-76989.672,75157.461,0,0,0,0,1202.2097 +3162,3893,6837,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,0,0,0,0,0,-828.68268,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.4465461,0,35.53,63.81,-9,-9,5,1,1,1,0,5,9,1,1,167,-67878.641,-5673.6924,0,0,0,354.65726,74.865898 +3163,3894,6838,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1087.5873,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,30.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1223,-7383.5137,0,0,0,0,0,803.19 +3164,3895,6839,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.77246,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,2,13,1,1,224,-136703.78,0,0,0,0,0,645.3819 +3165,3896,6840,-9,6841,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.4033,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,773.5,69717.547,0,0,0,0,0,588.61853 +3165,3896,6841,-9,-9,-9,1,0,22,0,1,0,1,1,-9,0,4,0,0,0,0,0,-981.67084,0,-9,-9,2021,21,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.75,63.69,-9,-9,6.666666666666667,1,1,1,1,6,13,1,0,773.5,69717.547,0,0,0,0,0,588.61853 +3166,3897,6842,6845,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.6714792,7.3548069,0,14,0,-26.942766,-9,2,2,2021,13,1,16,0,1,1,0,14.330573,14.330573,0,0,0,0,0,0,0,0,1,1,0,0,0,38.83,62.1,57.16,56.15,6.666666666666667,4,2,0,0,10,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6843,-9,6842,6845,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.58752,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6844,-9,6842,6845,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.0087,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6845,6842,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.901535,9.2922945,0,14,0,-61.801659,0,1,1,2021,6,0,45,45,1,0,0,19.794998,19.794998,.05,.05,0,0,0,0,0,0,1,1,0,4.0129104,0,57.16,56.15,38.83,62.1,6.666666666666667,1,1,0,0,10,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6846,-9,6842,6845,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.0613,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3167,3898,6847,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.0188532,7.2098885,0,0,-1001.7562,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0384536,43.75,46.08,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,165,60655.758,-12279.772,0,0,0,0,1344.2504 +3168,3899,6848,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,4.6846018,5.2087245,0,0,-753.53613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5264356,0,0,1,1,0,5.6136718,4.9607377,53,45.74,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1320,152950.97,0,0,0,0,0,856.45111 +3169,3900,6849,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2460032,8.2121782,5.5461931,0,0,-1007.9175,0,3,2,2021,6,0,20,16,1,0,0,23.703115,23.703115,.05,.05,0,0,0,0,0,2,0,0,0,6.2360682,0,52.97,48.43,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,559,-139940.94,13939.667,0,0,0,0,2055.6228 +3170,3901,6850,-9,6851,6852,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1046.8939,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6851,6852,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.050005,9.1786251,0,22,-7,-70.978096,0,2,2,2021,17,6,49,49,1,6,0,20.681442,20.681442,0,0,0,0,0,0,0,0,1,1,0,0,0,38,62.48,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6852,6851,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.4538927,8.8000717,0,19,7,-48.730396,0,-9,-9,2021,10,0,41,36,1,0,0,12.778064,12.778064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38,62.48,8.333333333333334,1,1,0,0,8,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6853,-9,6851,6852,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.94922,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3171,3902,6854,6855,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,50,-3,76.373253,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.94,43.43,57.16,56.15,8.333333333333334,1,1,0,1,7,12,2,0,605.5,89581.398,0,155013.78,0,0,0,1290.9585 +3171,3902,6855,6854,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.607091,6.9199696,52,3,-62.382408,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0086093,57.16,56.15,57.94,43.43,6.666666666666667,1,1,0,0,7,12,2,0,605.5,89581.398,0,155013.78,0,0,0,1290.9585 +3172,3903,6856,6857,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7361073,7.4368038,51,2,59.900906,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8884497,7.2607164,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,0,12,2,1,2333.5,356763.88,73953.313,118984.81,0,0,0,1782.0952 +3172,3903,6857,6856,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-2,4.157352,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5239776,0,54.2,57.49,60.12,54.8,5,1,1,0,0,0,12,2,1,2333.5,356763.88,73953.313,118984.81,0,0,0,1782.0952 +3173,3904,6858,6859,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,12,1,0,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.6,14.31,34.06,33.18,0,1,1,0,0,0,2,1,0,233,88640.641,-42451.953,0,0,1346.1399,0,2369.9463 +3173,3904,6859,6858,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,12,-1,0,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.06,33.18,37.6,14.31,6.666666666666667,1,1,0,0,0,2,1,0,233,88640.641,-42451.953,0,0,1346.1399,0,2369.9463 +3174,3905,6860,6861,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.6284018,8.5852013,34,6,-40.713192,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6416292,8.7508993,55.11,37.11,57.18,47.78,8.333333333333334,1,1,0,0,0,2,4,1,920.5,2139805.5,1371916,368188.31,0,0,0,3149.457 +3174,3905,6861,6860,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.1712413,6.1283965,34,-6,1.3636872,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2239757,5.9856114,57.18,47.78,55.11,37.11,8.333333333333334,1,1,0,0,0,2,4,1,920.5,2139805.5,1371916,368188.31,0,0,0,3149.457 +3175,3906,6862,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1013.7784,0,3,-9,2021,23,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,20.78,-9,-9,10,1,1,0,0,0,10,2,0,142,81788.922,0,141110.94,56244.078,0,0,1511.5886 +3176,3907,6863,6864,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.0133781,8.9954262,0,13,3,-16.774946,0,-9,-9,2021,6,0,38,38,1,0,0,34.586269,34.586269,0,0,0,0,0,0,0,0,0,0,0,3.4731455,0,57.16,56.15,56.57,57.78,8.333333333333334,1,1,0,0,15,10,5,1,2190.5,289451.72,90215.047,311499.25,188805.88,29362.012,0,2900.6763 +3176,3907,6864,6863,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.6317239,6.7745929,0,35,-3,-156.71405,0,2,1,2021,9,0,12,10,1,0,0,7.4633617,7.4633617,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,57.16,56.15,8.333333333333334,1,1,0,0,15,10,5,1,2190.5,289451.72,90215.047,311499.25,188805.88,29362.012,0,2900.6763 +3176,3908,6865,-9,6864,6863,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.29114,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,244,87617.508,0,0,0,0,0,0 +3177,3909,6866,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7955322,6.4727278,0,0,-1155.7528,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2981992,6.4769692,43.37,46.41,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,420,538094.75,94172.281,127440.42,0,0,0,1004.5252 +3178,3910,6867,6869,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.8798409,9.0017729,0,6,3,-33.922249,0,2,2,2021,11,0,40,12,1,0,0,22.437881,22.437881,.05,.05,0,0,0,0,0,0,1,1,0,4.9442472,0,41.61,48.15,47.57,57.72,6.666666666666667,1,1,0,0,11,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3178,3910,6868,-9,6869,6867,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.2699,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3178,3910,6869,6867,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.7501554,8.6309566,0,6,-3,68.218582,0,-9,-9,2021,12,0,30,75,1,0,0,16.071835,16.071835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,41.61,48.15,8.333333333333334,1,1,0,0,5,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3179,3911,6870,6871,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4429264,8.4567213,0,11,-1,118.62741,0,2,2,2021,10,0,46,40,1,0,0,10.183297,10.183297,.05,.05,.05,0,0,0,0,2,0,0,0,1.7823634,0,51.77,58.57,54.1,59.11,8.333333333333334,1,1,0,0,8,6,4,1,693,934845.5,480652.81,153294,19788.475,0,0,2730.6282 +3179,3911,6871,6870,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.6618323,7.7020602,0,11,1,75.157867,0,3,3,2021,12,0,28,28,1,0,0,8.6343498,8.6343498,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,54.1,59.11,51.77,58.57,8.333333333333334,1,1,0,0,9,6,4,1,693,934845.5,480652.81,153294,19788.475,0,0,2730.6282 +3179,3912,6872,-9,6871,6870,1,0,24,0,0,0,1,1,-9,0,4,8.5491352,8.6036129,0,0,0,-1051.8311,0,2,2,2021,8,0,38,38,1,0,1,14.411471,14.411471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,3,6,5,1,533,-2520.2739,416.09665,0,0,0,0,1298.4104 +3180,3913,6873,6874,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.1305132,7.738728,34,2,-18.79697,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1975231,57.33,53.46,57.33,53.46,10,1,1,0,0,8,6,3,1,1264.5,639452.5,343424.81,175159.91,5721.2119,0,0,1735.0679 +3180,3913,6874,6873,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,34,-2,91.602509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,57.33,53.46,57.33,53.46,10,1,1,0,0,7,6,3,1,1264.5,639452.5,343424.81,175159.91,5721.2119,0,0,1735.0679 +3181,3914,6875,6876,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.4780636,8.1568279,7,3,22.363281,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3058863,57.66,45.08,43.37,57.28,8.333333333333334,2,3,0,0,3,11,3,1,339.5,1573887.6,1041712.1,295709.59,0,0,0,2984.3125 +3181,3914,6876,6875,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4186554,4.3147917,7,-3,153.43806,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3486242,4.3885188,43.37,57.28,57.66,45.08,8.333333333333334,1,1,0,0,0,11,3,1,339.5,1573887.6,1041712.1,295709.59,0,0,0,2984.3125 +3182,3915,6877,6878,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,53,-1,-102.88925,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8435016,0,60.84,43.45,53,47,0,1,1,0,0,9,12,4,1,983,1406862.5,1078480.6,170084.23,0,0,0,3429.2446 +3182,3915,6878,6877,-9,-9,1,1,73,0,0,0,2,2,-9,1,3,8.5993605,8.6697865,0,7,1,60.170547,0,-9,-9,2021,9,0,20,-9,1,1,0,30.322609,30.322609,.05,.05,0,0,0,0,0,0,1,1,0,4.1606722,0,53,47,60.84,43.45,8,1,1,0,0,9,12,4,1,983,1406862.5,1078480.6,170084.23,0,0,0,3429.2446 +3183,3916,6879,6880,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.287941,8.3317356,0,16,-11,-101.01814,0,3,3,2021,7,1,40,40,1,1,0,13.548228,13.548228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,40.56,49.54,8.333333333333334,2,3,0,0,8,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6880,6879,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.9908915,9.2254992,0,16,11,-133.63882,0,3,3,2021,12,0,40,45,1,0,0,24.09787,24.09787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.56,49.54,57.33,53.46,6.666666666666667,2,3,0,0,13,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6881,-9,6879,6880,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.4435,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6882,-9,6879,6880,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.69049,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3184,3917,6883,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-989.65771,0,2,1,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.19,64.09999999999999,-9,-9,8.333333333333334,4,2,0,0,0,4,1,1,320,728.80676,29206.492,0,0,-249.75056,0,1173.6404 +3185,3918,6884,6885,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,3.1726639,2.8980629,13,14,-44.875034,0,3,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,2.546768,77.519516,20.438044,0,1,1,0,2.4119353,2.5317895,16.04,23.99,46.06,22.27,1.666666666666667,1,1,0,0,0,5,2,1,242.5,359743.06,116638.3,0,0,0,0,1168.0984 +3185,3918,6885,6884,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,6.9245911,6.4390669,13,-14,-46.557125,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6865468,46.06,22.27,16.04,23.99,6.666666666666667,1,1,0,0,0,5,2,1,242.5,359743.06,116638.3,0,0,0,0,1168.0984 +3186,3919,6886,6887,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.2226076,8.0757856,0,2,4,119.54456,0,1,1,2021,13,3,30,30,1,3,0,13.242785,13.242785,0,0,0,0,0,0,0,0,1,1,0,3.4680605,0,42.5,63.22,49.3,59.89,8.333333333333334,1,1,0,0,1,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3186,3919,6887,6886,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,7.4927273,7.6625972,0,2,-4,-11.348883,0,-9,-9,2021,6,0,25,30,1,0,0,11.54368,11.54368,.05,.05,0,0,0,0,0,0,1,1,0,5.6444216,0,49.3,59.89,42.5,63.22,8.333333333333334,1,1,0,0,2,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3186,3919,6888,-9,6886,6887,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.6161,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3187,3920,6889,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.7122712,7.5534697,5.7440214,0,0,-1093.1414,0,3,3,2021,8,0,40,40,1,0,0,4.5096455,4.5096455,0,0,.05,0,0,0,0,0,1,1,0,6.0055728,5.5915685,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,1214,-178655.84,111571.03,0,0,0,0,1312.9161 +3188,3921,6890,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1710491,8.2836323,0,0,0,-1047.9872,0,2,2,2021,11,1,32,29,1,1,0,12.863791,12.863791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.83,61.21,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,807,154175.52,21768.193,0,0,0,6473.0894,1321.5632 +3189,3922,6891,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.1429205,7.3438101,0,0,-911.73059,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7338667,7.4395013,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1548,393513.53,404312.13,213281.73,0,8706.918,0,3101.1606 +3190,3923,6892,-9,6893,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-939.20288,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,154.5,46712.938,0,0,0,0,1272.0117,914.93134 +3190,3923,6893,-9,6895,-9,1,0,19,1,4,0,2,2,-9,1,4,0,0,0,0,0,-1011.5322,0,2,-9,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.1,54.82,-9,-9,10,1,1,1,0,2,5,1,0,154.5,46712.938,0,0,0,0,1272.0117,914.93134 +3190,3924,6894,6895,-9,-9,1,1,46,1,4,0,2,2,-9,0,2,8.2294626,8.2519112,0,6,11,-45.12236,0,-9,-9,2021,14,2,40,40,1,2,0,9.7373104,9.7373104,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,50.27,48.86,36.05,52.38,5,1,1,0,0,9,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6895,6894,-9,-9,1,0,35,1,4,0,2,2,-9,0,3,8.0592575,7.9149952,0,6,-11,-79.741173,0,-9,-9,2021,15,3,39,43,1,3,0,10.487554,10.487554,0,0,.05,0,0,0,0,74.5,1,1,0,0,0,36.05,52.38,50.27,48.86,6.666666666666667,1,1,0,0,5,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6896,-9,6895,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-884.87714,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6897,-9,6895,-9,1,1,16,1,4,1,3,0,-9,0,2,0,0,0,0,0,-1034.0048,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,1.0109776,0,1,1,0,0,0,31.27,46.36,-9,-9,6.666666666666667,1,1,0,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6898,-9,6895,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.9659,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3191,3925,6899,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,7.1355796,7.4962893,0,0,-950.13306,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.0568948,37.35,15.58,-9,-9,0,1,1,0,0,0,9,3,1,368,301103.13,-12500.301,153586.86,0,-1112.9231,0,2307.8376 +3191,3926,6900,-9,6899,-9,1,1,22,0,0,0,2,2,-9,0,5,8.3496923,8.1128244,0,0,0,-1067.0895,-9,2,2,2021,11,0,43,0,1,0,1,10.826921,10.826921,.05,.05,0,0,0,0,0,42,1,1,0,1.2901236,0,43.57,62.68,-9,-9,10,1,1,0,0,6,9,4,1,497,-18986.184,79095.234,0,0,0,0,547.06268 +3192,3927,6901,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,6.7888074,6.6002574,0,0,-1009.0795,0,2,2,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,6.9885588,0,69.856346,0,1,1,0,3.476716,6.4275165,35.64,25.41,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1285,50377.371,0,0,0,0,0,821.0918 +3193,3928,6902,6903,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,8.398365,8.3263607,0,7,0,-114.51974,0,2,2,2021,11,0,45,45,1,0,0,11.572011,11.572011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,50.25,56.54,6.666666666666667,1,1,0,0,9,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6903,6902,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.4894514,7.5168476,0,7,0,21.43298,0,2,-9,2021,13,1,37,28,1,1,0,4.7714252,4.7714252,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,56.54,50.57,52.35,3.333333333333333,1,1,0,0,8,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6904,-9,6903,6902,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5065,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6905,-9,6903,6902,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-896.21808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3194,3929,6906,6907,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.4163961,8.4937544,0,7,3,128.87476,0,2,2,2021,12,0,38,41,1,0,0,16.556955,16.556955,.05,.05,0,0,0,0,0,0,0,0,0,4.4919066,0,35.8,59.5,19.61,69.8,3.333333333333333,1,1,0,0,10,8,5,1,893.5,205058.84,29733.121,249628.47,135782.75,0,0,2594.2119 +3194,3929,6907,6906,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.3274431,8.22785,0,7,-3,7.7941651,0,2,3,2021,27,11,35,35,1,11,0,13.758533,13.758533,0,0,0,0,0,0,0,0,0,0,0,5.1027331,0,19.61,69.8,35.8,59.5,6.666666666666667,2,3,0,0,7,8,5,1,893.5,205058.84,29733.121,249628.47,135782.75,0,0,2594.2119 +3195,3930,6908,6909,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,8.0860577,7.5775142,0,10,-3,-82.54895,0,2,2,2021,12,0,41,76,1,0,0,8.469965,8.469965,0,0,0,0,0,0,0,0,0,0,0,.61267054,0,41.45,40.45,37.58,55.77,5,1,1,0,0,11,6,4,1,437.5,190709.27,126212.39,93515.016,46522.094,7473.0146,-99.875046,1702.9695 +3195,3930,6909,6908,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9191022,8.0586739,0,10,3,38.70615,0,3,3,2021,12,1,38,38,1,1,0,11.168351,11.168351,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,37.58,55.77,41.45,40.45,6.666666666666667,1,1,0,0,11,6,4,1,437.5,190709.27,126212.39,93515.016,46522.094,7473.0146,-99.875046,1702.9695 +3196,3931,6910,-9,6911,6912,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.44513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6911,6912,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,8.0293274,7.7182198,0,1,-5,-18.122122,-9,-9,-9,2021,10,1,20,0,1,1,0,17.491901,17.491901,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,32.71,62.19,33.35,8.333333333333334,1,1,0,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6912,6911,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2281733,8.2607985,5.3040266,1,5,-179.79433,0,2,2,2021,7,0,35,0,1,0,0,12.813697,12.813697,0,0,0,0,0,0,0,2,1,1,0,0,5.1093202,62.19,33.35,53.44,32.71,8.333333333333334,1,1,0,0,7,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6913,-9,6911,6912,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-882.10382,-9,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,30.1,-9,-9,5,1,1,1,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6914,-9,6911,6912,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-959.91852,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,61.62,-9,-9,3.333333333333333,1,1,0,0,1,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3197,3932,6915,6916,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.888546,8.812685,36,-2,61.741428,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8579407,8.7866211,53.56,49.66,49.73,44.52,8.333333333333334,1,1,0,0,11,6,5,1,296,2563908.5,1752210,701359.88,0,0,0,5219.0806 +3197,3932,6916,6915,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3225417,7.2285037,36,2,62.728268,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.564395,49.73,44.52,53.56,49.66,8.333333333333334,1,1,0,0,9,6,5,1,296,2563908.5,1752210,701359.88,0,0,0,5219.0806 +3197,3933,6917,-9,6916,6915,1,0,30,0,0,0,1,1,-9,0,3,8.7006149,8.6298342,0,0,0,-970.67719,-9,2,1,2021,16,5,40,0,1,5,0,13.366715,13.366715,.05,.05,0,0,0,0,0,0,0,0,0,5.1566916,0,39.01,56.89,-9,-9,6.666666666666667,1,1,0,0,6,6,5,1,2240,202322.48,52589.367,0,0,2826.9297,0,2186.771 +3198,3934,6918,6919,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.4994192,7.7631016,5.022748,27,-3,-19.006849,0,3,3,2021,8,0,27,45,1,0,0,6.3102722,6.3102722,0,0,0,0,0,0,0,0,1,1,0,0,5.2818604,54.61,49.13,55.69,43.19,6.666666666666667,1,1,0,0,8,12,3,1,1748,195908.7,-1234.6465,238224.69,185621.23,0,0,2709.1763 +3198,3934,6919,6918,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5044827,7.5438709,5.5104976,27,3,3.1570559,0,3,3,2021,12,0,18,22,1,0,0,10.715987,10.715987,0,0,0,0,0,0,0,0,1,1,0,0,5.7303429,55.69,43.19,54.61,49.13,8.333333333333334,1,1,0,0,7,12,3,1,1748,195908.7,-1234.6465,238224.69,185621.23,0,0,2709.1763 +3199,3935,6920,6921,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.5075674,7.2495265,7,7,34.119675,0,3,3,2021,12,2,0,14,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0679436,7.4148064,52,54.51,52.99,51.28,6.666666666666667,1,1,0,0,8,11,3,1,1282.5,642134.88,131110.38,319758,0,-161.67801,2612.4819,1534.1086 +3199,3935,6921,6920,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.4206133,7.0644011,0,7,-7,-70.790344,0,3,3,2021,12,0,24,27,1,0,0,6.6455445,6.6455445,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,52,54.51,6.666666666666667,1,1,0,0,2,11,3,1,1282.5,642134.88,131110.38,319758,0,-161.67801,2612.4819,1534.1086 +3199,3936,6922,-9,6921,6920,1,0,21,0,0,0,2,2,-9,0,4,7.6574306,7.7530003,0,0,0,-1047.3983,0,3,3,2021,7,0,38,30,1,0,1,7.4011812,7.4011812,0,0,0,0,0,0,0,0,0,0,0,0,0,62.16,48.34,-9,-9,0,1,1,0,0,4,11,3,1,2077,-62713.258,0,0,0,0,0,1198.6841 +3200,3937,6923,6924,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.4279585,8.5190268,0,7,5,1.8161383,0,-9,-9,2021,10,0,45,43,1,0,0,8.7340336,8.7340336,.05,.05,0,0,0,0,0,0,0,0,0,.58436489,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,8,5,5,1,1962.5,-6377.0664,84812.766,174250.19,147022.94,8019.2441,0,3144.521 +3200,3937,6924,6923,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4664831,8.0475836,0,7,-5,98.378113,0,2,2,2021,7,0,38,40,1,0,0,12.56685,12.56685,0,0,0,0,0,0,0,0,0,0,0,2.8751006,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,9,5,5,1,1962.5,-6377.0664,84812.766,174250.19,147022.94,8019.2441,0,3144.521 +3201,3938,6925,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7206087,8.1645298,6.4803562,0,0,-873.47131,0,2,2,2021,9,0,27,35,1,0,0,13.425777,13.425777,0,0,0,0,0,0,0,0,1,1,0,7.0760951,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,695.5,-139393.52,0,0,0,0,0,2240.3408 +3201,3938,6926,-9,6925,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1015.618,-9,2,-9,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,9,3,1,695.5,-139393.52,0,0,0,0,0,2240.3408 +3201,3939,6927,-9,6925,-9,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1056.385,-9,2,-9,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.35,59.88,-9,-9,5,1,1,0,0,2,9,1,1,2421,47681.93,0,0,0,0,0,0 +3202,3940,6928,6929,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,16,-8,0,0,2,2,2021,25,12,0,14,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.58,20.98,42.8,38.88,3.333333333333333,1,1,0,0,7,13,1,1,793.5,-37672.531,18537.352,0,0,0,0,1801.2124 +3202,3940,6929,6928,-9,-9,1,1,53,0,2,0,1,1,-9,1,2,0,0,0,6,8,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.8,38.88,34.58,20.98,6.666666666666667,1,1,0,0,1,13,1,1,793.5,-37672.531,18537.352,0,0,0,0,1801.2124 +3203,3941,6930,-9,6932,6931,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-886.06604,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3203,3941,6931,6932,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.8321018,9.7854939,0,22,0,-98.963913,0,2,1,2021,14,3,52,60,1,3,0,46.123814,46.123814,.05,.05,0,0,0,0,0,0,1,1,0,4.0323992,0,45.85,61.26,31.81,56.96,8.333333333333334,1,1,0,0,12,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3203,3941,6932,6931,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.8938637,8.0242643,0,22,0,-40.047356,0,2,1,2021,19,7,15,20,1,7,0,22.695379,22.695379,.05,.05,0,0,0,0,0,0,1,1,0,1.6604538,0,31.81,56.96,45.85,61.26,6.666666666666667,1,1,0,0,11,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3204,3942,6933,6934,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.9398379,6.6908102,55,4,-35.553055,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.137435,54,46,57.16,56.15,8,1,1,0,0,0,5,2,1,682.5,435447.63,254379.06,169496.34,0,0,0,1836.2842 +3204,3942,6934,6933,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,55,-4,53.615761,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.568341,0,57.16,56.15,54,46,8.333333333333334,1,1,0,0,11,5,2,1,682.5,435447.63,254379.06,169496.34,0,0,0,1836.2842 +3205,3943,6935,6938,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,7.8606691,7.6609297,0,8,-4,3.1476724,0,2,3,2021,6,0,35,35,1,0,0,8.3543129,8.3543129,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,2,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6936,-9,6935,6938,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.8474,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6937,-9,6935,6938,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.4128,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6938,6935,-9,-9,1,1,36,0,3,0,3,3,-9,0,5,7.9394989,8.0690002,0,8,4,21.135218,0,-9,-9,2021,2,0,30,48,1,0,0,12.008494,12.008494,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6939,-9,6935,6938,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.3335,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3206,3944,6940,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4531341,7.1805758,0,0,0,-971.41028,0,-9,-9,2021,7,1,25,25,1,1,0,7.2686429,7.2686429,.05,.05,0,0,0,0,0,0,0,0,0,4.5183272,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,1326,128760.12,26680.445,0,0,0,0,751.43768 +3207,3945,6941,6942,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.5904741,8.8178244,27,-4,32.609333,0,2,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1681099,8.9140692,62.25,24.4,62,41.73,8.333333333333334,1,1,0,0,11,13,4,1,291,953814.13,965523.13,0,0,9418.3086,0,3880.5107 +3207,3945,6942,6941,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1873822,7.4765472,0,27,4,146.74467,0,3,3,2021,8,0,25,25,1,0,0,5.4377575,5.4377575,0,0,0,0,0,0,0,0,0,0,0,0,0,62,41.73,62.25,24.4,8.333333333333334,1,1,0,0,13,13,4,1,291,953814.13,965523.13,0,0,9418.3086,0,3880.5107 +3207,3946,6943,-9,6942,6941,1,0,29,0,0,0,1,1,-9,0,3,8.157712,8.1778202,0,0,0,-1091.8174,0,3,2,2021,9,1,42,39,1,1,1,8.2105083,8.2105083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.69,51.4,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,1086,322882.81,83521.648,324749,0,0,0,1463.5709 +3207,3947,6944,-9,6942,6941,1,0,28,0,0,0,1,1,-9,0,3,7.9682026,7.884747,0,0,0,-903.79718,0,3,2,2021,9,0,37,37,1,0,1,9.1656799,9.1656799,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,716,100673.93,0,0,0,0,0,894.40338 +3208,3948,6945,-9,6946,6947,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.8938,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3208,3948,6946,6947,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.6854033,7.4979525,0,8,-12,-14.872166,0,-9,-9,2021,14,2,21,40,1,2,0,13.668099,13.668099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,52.85,40.75,8.333333333333334,1,1,0,0,9,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3208,3948,6947,6946,-9,-9,1,1,48,1,1,0,2,2,-9,0,2,7.8773813,7.8849783,0,8,12,18.76696,0,2,2,2021,5,0,40,38,1,0,0,8.977314,8.977314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.85,40.75,48.81,59.91,8.333333333333334,1,1,0,0,9,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3209,3949,6948,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.5332999,7.542141,0,0,0,-1018.7254,0,1,1,2021,6,0,40,40,1,0,0,6.5420017,6.5420017,0,0,0,0,0,0,0,0,1,0,1,0,0,70.39,40.52,-9,-9,8.333333333333334,1,1,0,0,10,8,3,0,618,30995.502,24495.5,0,0,0,0,1384.4962 +3209,3950,6949,-9,6948,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5170155,8.3312511,0,0,0,-994.37073,0,2,-9,2021,17,6,50,0,1,6,1,15.084413,15.084413,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.41,47.83,-9,-9,5,1,1,0,0,5,8,5,0,617,46156.219,-62651.254,0,0,0,0,2517.9893 +3209,3951,6950,-9,6948,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9239249,7.8668709,0,0,0,-1066.3583,0,2,-9,2021,17,6,37,0,1,6,1,8.5802059,8.5802059,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.99,63.8,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,910,-110086.45,84524.578,0,0,0,0,1657.5992 +3210,3952,6951,6952,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1224051,8.5858212,12,2,71.829643,0,3,2,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8174577,8.1684599,56.9,49.4,54.1,59.11,8.333333333333334,1,1,0,0,8,4,5,1,1568,500211.25,138581.84,246388.56,0,0,0,3707.7698 +3210,3952,6952,6951,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.6911573,8.0361013,7.1235003,12,-2,109.02941,0,3,3,2021,12,0,16,16,1,0,0,13.151514,13.151514,.05,.05,0,0,0,0,0,0,0,0,0,5.8445163,7.0676899,54.1,59.11,56.9,49.4,8.333333333333334,1,1,0,0,13,4,5,1,1568,500211.25,138581.84,246388.56,0,0,0,3707.7698 +3211,3953,6953,-9,6954,-9,1,1,17,0,1,1,3,0,0,0,3,0,0,0,0,0,-929.40692,-9,2,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,30.17,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,1066.5,-49158.781,11106.691,0,0,0,0,736.56323 +3211,3953,6954,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.685122,7.3658772,0,0,0,-1038.3969,0,3,3,2021,15,5,20,20,1,5,0,10.041286,10.041286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.99,59.6,-9,-9,8.333333333333334,3,4,0,1,12,8,2,0,1066.5,-49158.781,11106.691,0,0,0,0,736.56323 +3212,3954,6955,6956,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.3126092,7.4212461,0,39,2,52.880295,0,3,3,2021,12,0,32,36,1,0,0,5.411747,5.411747,0,0,0,0,0,0,0,7,0,0,0,7.5582714,0,58.3,52.91,45.16,51.93,8.333333333333334,1,1,0,0,9,10,3,1,375,1447191.6,448730.53,476770.63,0,0,0,1787.9585 +3212,3954,6956,6955,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.505631,7.1982985,0,39,-2,27.394955,0,3,3,2021,15,3,20,20,1,3,0,7.588634,7.588634,0,0,0,0,0,0,0,7,0,0,0,3.6290557,0,45.16,51.93,58.3,52.91,8.333333333333334,1,1,0,0,9,10,3,1,375,1447191.6,448730.53,476770.63,0,0,0,1787.9585 +3213,3955,6957,6958,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,7.9647985,7.5326347,0,8,-13,-41.118301,0,3,3,2021,6,0,39,39,1,0,0,6.6376796,6.6376796,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.84,49.01,6.666666666666667,1,1,0,0,9,12,3,1,882.5,507943.19,173695.28,258010.39,0,9718.7861,0,1541.7029 +3213,3955,6958,6957,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,8,13,-43.355068,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,49.01,51.14,60.45,6.666666666666667,1,1,0,0,0,12,3,1,882.5,507943.19,173695.28,258010.39,0,9718.7861,0,1541.7029 +3214,3956,6959,6960,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,6.9206271,7.1721959,0,12,-4,-.68198246,0,3,-9,2021,12,0,8,8,1,2,0,18.230864,18.230864,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,53,55,1.666666666666667,3,4,0,0,5,8,4,0,2006.5,297247.97,0,402131.75,132320.66,0,0,2446.9951 +3214,3956,6960,6959,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2923479,8.1599445,0,12,4,-39.99958,0,-9,-9,2021,9,0,40,40,1,1,0,14.837955,14.837955,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,47,50,8,1,1,0,0,9,8,4,0,2006.5,297247.97,0,402131.75,132320.66,0,0,2446.9951 +3214,3957,6961,-9,6959,6960,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-989.69995,-9,2,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.124272,0,31.99,57.05,-9,-9,5,3,4,0,0,0,8,1,0,327,42748.652,0,0,0,0,0,-137.86916 +3215,3958,6962,6963,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.0487547,6.2775712,10,-1,.94444448,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.402328,0,57.16,56.15,41.05,36.2,6.666666666666667,1,1,0,0,0,2,2,1,2277.5,439223.19,223655.45,150408.23,0,0,0,2037.4241 +3215,3958,6963,6962,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.7872961,3.98844,10,1,-32.762276,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.935967,3.8733442,41.05,36.2,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,2277.5,439223.19,223655.45,150408.23,0,0,0,2037.4241 +3216,3959,6964,6965,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.4290838,8.0172958,0,6,1,-88.746658,0,-9,-9,2021,6,0,50,48,1,0,0,8.8579063,8.8579063,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.58,46.27,8.333333333333334,1,1,0,0,8,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3216,3959,6965,6964,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.3839865,7.0789566,0,6,-1,2.125298,0,2,1,2021,10,3,34,35,1,3,0,4.5216651,4.5216651,0,0,0,0,0,0,0,0,1,1,0,0,0,43.58,46.27,57.33,53.46,8.333333333333334,1,1,0,0,8,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3216,3959,6966,-9,6965,6964,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-821.66815,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3217,3960,6967,6968,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.8614645,9.1360521,0,1,0,19.598082,-9,2,3,2021,6,0,48,0,1,0,0,25.339058,25.339058,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.32,48.68,41.56,53.97,6.666666666666667,1,1,0,0,11,6,5,1,2441.5,611428.5,103330.41,159832.34,91453.766,22725.902,23393.332,4854.8662 +3217,3960,6968,6967,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.3131809,8.2922096,0,1,0,35.80402,-9,-9,-9,2021,13,1,44,0,1,1,0,10.018127,10.018127,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.56,53.97,56.32,48.68,6.666666666666667,1,1,0,0,3,6,5,1,2441.5,611428.5,103330.41,159832.34,91453.766,22725.902,23393.332,4854.8662 +3218,3961,6969,6970,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5250435,8.6380253,0,34,2,22.255678,0,2,3,2021,11,0,10,10,1,0,0,54.646988,54.646988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.94,53.79,8.333333333333334,1,1,0,0,15,5,5,1,1045.5,2733806.5,2306927.5,294500.63,16971.539,0,0,4778.8213 +3218,3961,6970,6969,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.4650717,8.7257452,0,33,-2,15.11983,0,2,2,2021,8,0,39,39,1,0,0,18.077799,18.077799,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.94,53.79,52,54.51,8.333333333333334,1,1,0,0,15,5,5,1,1045.5,2733806.5,2306927.5,294500.63,16971.539,0,0,4778.8213 +3219,3962,6971,6972,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.1113873,7.8697367,0,12,-3,6.8484139,0,2,1,2021,8,0,38,37,1,0,0,8.6992674,8.6992674,.05,.05,0,0,0,0,0,0,0,0,0,7.052124,0,55.19,54.26,45.56,60.26,10,1,1,0,0,13,10,4,1,1708,1083367.1,858794.31,430183.59,128815.5,0,0,3212.9722 +3219,3962,6972,6971,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.8822155,7.968071,0,12,3,71.761765,0,2,1,2021,12,0,38,38,1,0,0,8.6046438,8.6046438,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,55.19,54.26,8.333333333333334,1,1,0,0,13,10,4,1,1708,1083367.1,858794.31,430183.59,128815.5,0,0,3212.9722 +3220,3963,6973,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.1986465,8.3702965,5.0228653,0,0,-933.3161,0,2,2,2021,11,1,37,33,1,1,0,11.292083,11.292083,0,0,0,0,0,0,0,0,1,1,0,5.6499834,0,55.21,40.64,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,608,438239,-10330.729,337795.75,-9589.1113,15871.666,0,1866.7117 +3220,3963,6974,-9,6973,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.64777,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,608,438239,-10330.729,337795.75,-9589.1113,15871.666,0,1866.7117 +3220,3964,6975,-9,6973,-9,1,1,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1036.9469,1,1,-9,2021,9,0,0,7,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,151,86234.195,0,0,0,0,0,566.89172 +3221,3965,6976,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.8562469,9.3043928,0,0,0,-1021.9572,0,-9,-9,2021,12,2,35,40,1,2,0,21.991507,21.991507,0,0,.05,0,0,0,0,0,1,1,0,6.8152738,0,40.95,63.66,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1441.5,194665.03,-2497.3369,0,0,0,1991.8877,3453.9111 +3221,3965,6977,-9,6976,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.3623,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1441.5,194665.03,-2497.3369,0,0,0,1991.8877,3453.9111 +3222,3966,6978,-9,6982,6979,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.5994,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6979,6982,-9,-9,1,1,58,0,3,0,2,2,-9,0,3,7.8536892,7.868731,0,10,14,-159.04675,0,3,3,2021,10,0,45,40,1,1,0,5.6383963,5.6383963,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,53.14,39.39,7,2,3,0,0,1,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6980,-9,6982,6979,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.39325,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6981,-9,6982,6979,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-875.89014,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,46.28,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6982,6979,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,0,0,0,10,-14,-22.868113,0,1,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,39.39,51,49,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6983,-9,6982,6979,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1031.4407,-9,1,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6984,-9,6982,6979,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1021.459,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3223,3967,6985,6986,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.7839665,4.9880838,46,0,18.180365,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0721412,5.0062194,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,0,10,4,1,291,1117525.3,669161.75,401826.22,0,1549.2065,0,3202.9463 +3223,3967,6986,6985,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.6939507,8.6226244,46,0,-60.378258,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1041236,8.4511528,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,3,10,4,1,291,1117525.3,669161.75,401826.22,0,1549.2065,0,3202.9463 +3224,3968,6987,6988,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,39,-4,-58.29623,0,2,3,2021,14,2,0,50,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,51.26,54.37,54.8,8.333333333333334,1,1,0,0,7,9,5,1,356.5,3375903,2724181.5,631746.44,0,0,0,3665.0151 +3224,3968,6988,6987,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.7716703,8.9346733,7.097002,39,4,47.948719,0,3,2,2021,6,0,30,20,1,0,0,24.311737,24.311737,0,0,0,0,0,0,0,0,0,0,0,0,7.4439545,54.37,54.8,38.88,51.26,8.333333333333334,1,1,0,0,7,9,5,1,356.5,3375903,2724181.5,631746.44,0,0,0,3665.0151 +3225,3969,6989,-9,-9,6990,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.01715,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,1,1922,451880.56,16627.928,95233.359,56538.281,0,0,1369.0306 +3225,3969,6990,-9,-9,-9,1,1,49,0,1,0,3,3,-9,1,4,6.9264741,6.9661646,0,0,0,-956.59668,0,-9,-9,2021,9,0,16,16,1,0,0,7.3176289,7.3176289,0,0,0,0,0,0,0,42,1,1,0,0,0,53.38,52.22,-9,-9,10,1,1,0,0,10,5,2,1,1922,451880.56,16627.928,95233.359,56538.281,0,0,1369.0306 +3226,3970,6991,-9,6992,6993,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1633,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6992,6993,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,1,2,67.215729,-9,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7549381,0,44.81,55.02,48,51,8.333333333333334,1,1,0,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6993,6992,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,9.5529823,9.96803,0,1,-2,27.638382,-9,1,1,2021,11,0,50,0,1,2,0,37.106155,37.106155,.05,.05,0,0,0,0,0,0,0,0,0,5.0881467,0,48,51,44.81,55.02,7,1,1,0,0,1,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6994,-9,6992,6993,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.05103,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3227,3971,6995,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9724827,8.2220879,0,0,0,-1000.3455,0,3,3,2021,14,3,36,36,1,3,0,7.4194388,7.4194388,.05,.05,0,0,0,0,0,7,0,0,0,1.3104974,0,51.02,52.22,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,2929,145396.69,-17654.91,0,0,0,0,945.50928 +3228,3972,6996,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,5.4316425,6.6910453,6.4326921,0,0,-1129.4144,0,3,2,2021,10,1,5,25,1,1,0,6.2459626,6.2459626,0,0,0,1,0,0,0,14.5,1,1,0,2.677675,6.2703824,50.68,48.16,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,2057,309643.28,130575.7,177284.45,0,0,0,1357.4236 +3229,3973,6997,6998,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,7.9209938,7.4421177,0,7,4,3.0315037,-9,2,2,2021,6,0,35,0,1,0,0,6.4750071,6.4750071,.05,.05,0,0,0,0,0,0,0,0,0,4.8119802,0,54.45,56.22,52.6,50.15,8.333333333333334,1,1,0,0,9,10,4,1,1276,1825514.8,867769.56,589456.19,0,0,0,2205.9939 +3229,3973,6998,6997,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.1279173,8.2160225,0,7,-4,-68.216049,-9,1,1,2021,12,0,35,0,1,0,0,7.5135307,7.5135307,0,0,0,0,0,0,0,0,0,0,0,4.0706673,0,52.6,50.15,54.45,56.22,8.333333333333334,1,1,0,0,10,10,4,1,1276,1825514.8,867769.56,589456.19,0,0,0,2205.9939 +3230,3974,6999,7000,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.4343748,8.5006981,0,8,-1,69.713242,0,3,3,2021,24,10,20,12,1,10,0,34.934776,34.934776,0,0,0,0,0,0,0,0,0,0,0,1.6711074,0,25.43,37.06,45.97,53.8,1.666666666666667,1,1,0,1,8,9,5,1,1729,503863.19,328090.44,0,0,10692.361,0,5089.6289 +3230,3974,7000,6999,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.8237915,9.0415468,0,8,1,-78.731552,0,2,3,2021,12,0,44,12,1,0,0,17.683134,17.683134,.05,.05,0,0,0,0,0,0,0,0,0,.80495149,0,45.97,53.8,25.43,37.06,3.333333333333333,1,1,0,0,9,9,5,1,1729,503863.19,328090.44,0,0,10692.361,0,5089.6289 +3231,3975,7001,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,7.0633183,6.6160431,0,0,-1043.2156,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6993923,0,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,379,662473.13,176566.28,58416.34,0,0,0,967.77722 +3232,3976,7002,7003,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.83214,7.8451753,9,-2,51.715885,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,.38438174,0,7,1,1,0,6.7250924,7.5988345,58.15,52.91,57.06,57.76,10,1,1,0,0,0,12,3,1,235,495119.81,402069.19,57720.297,0,0,0,3191.7673 +3232,3976,7003,7002,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.5464907,7.3311973,50,2,87.331322,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9566808,6.48593,57.06,57.76,58.15,52.91,10,1,1,0,0,10,12,3,1,235,495119.81,402069.19,57720.297,0,0,0,3191.7673 +3233,3977,7004,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.542613,8.6700869,0,0,0,-1008.382,0,2,2,2021,6,0,39,39,1,0,0,11.676128,11.676128,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,15,5,4,1,537,442904.09,57366.098,218850.03,0,0,0,1117.9468 +3234,3978,7005,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,5.7564025,7.0450597,6.8532338,0,0,-997.46216,0,1,2,2021,6,0,19,20,1,0,0,2.2038567,2.2038567,0,0,0,0,0,0,0,0,1,1,0,6.8168526,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,12,4,2,1,1409,-169819.95,-35948.078,0,0,0,0,1213.7601 +3234,3979,7006,-9,7005,-9,1,1,18,0,1,1,2,0,0,0,4,0,1.8483138,2.1547449,0,0,-1097.8774,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1125104,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,1,0,4,2,1,3172,146861.69,0,0,0,0,0,-756.4801 +3235,3980,7007,7009,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.7444673,7.8629999,0,12,-16,4.3226318,0,3,3,2021,9,0,36,36,1,0,0,6.0939555,6.0939555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3235,3980,7008,-9,7007,7009,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.8286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3235,3980,7009,7007,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.846179,8.6039715,0,8,16,-23.850191,0,-9,-9,2021,9,0,50,47,1,0,0,15.379517,15.379517,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.85,54.91,10,1,1,0,0,10,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3236,3981,7010,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1037.7869,0,2,2,2021,1,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0180902,0,57.06,57.76,-9,-9,10,1,1,1,0,9,2,1,1,202,259239.16,422757.53,0,0,0,0,-637.17938 +3237,3982,7011,7012,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,9.053894,9.0365019,0,9,-13,37.279144,0,3,3,2021,22,10,46,45,1,10,0,23.909254,23.909254,0,0,0,0,0,0,0,0,1,1,0,3.8521361,0,52.07,27.6,36.37,60.23,3.333333333333333,1,1,0,0,10,12,5,1,333.5,1626726.6,689425.5,346303.44,0,0,0,5083.5146 +3237,3982,7012,7011,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.6589842,8.0662384,9,13,-86.120712,0,2,1,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,5.7272115,7.7357016,36.37,60.23,52.07,27.6,8.333333333333334,1,1,0,0,2,12,5,1,333.5,1626726.6,689425.5,346303.44,0,0,0,5083.5146 +3238,3983,7013,7014,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,43,-2,-66.24527,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9484658,0,55.79,52.62,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,296,1302334.8,918904.5,558540.63,260681.75,0,0,5882.1133 +3238,3983,7014,7013,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.0346918,9.4054146,8.3422117,43,2,12.548139,0,2,2,2021,7,0,60,0,1,0,0,16.346334,16.346334,0,0,0,0,0,0,0,0,0,0,0,8.3188295,8.4287796,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,11,9,5,1,296,1302334.8,918904.5,558540.63,260681.75,0,0,5882.1133 +3239,3984,7015,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.3462243,7.5188065,0,0,0,-1122.2926,0,1,3,2021,6,1,30,30,1,1,0,8.8934631,8.8934631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.18,47.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,708,306296.31,9914.6162,121290.44,38355.875,0,0,1578.4078 +3240,3985,7016,-9,7017,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.81354,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3488638,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7017,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,8.6512585,8.6477833,0,0,0,-1062.7648,0,2,2,2021,7,0,30,30,1,0,0,22.135397,22.135397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7018,-9,7017,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-981.81299,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,44.63,-9,-9,8.333333333333334,1,1,0,1,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7019,-9,7017,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.676,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3241,3986,7020,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.4668913,6.1531439,0,0,-1088.8092,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3685966,6.0334635,41.09,46.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,682,433492.34,156745,55897.039,0,0,0,693.08557 +3242,3987,7021,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,9.4040489,9.5820656,0,0,-1008.1951,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1857452,9.2737837,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,450,1124807.3,491685.69,398099.53,0,0,0,6347.9272 +3243,3988,7022,7023,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.23489,5.8987541,6,0,43.231987,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8050568,0,14.5,1,1,0,0,6.2669783,56.85,37.23,55,45,8.333333333333334,1,1,0,0,0,11,2,1,740.5,333409.72,115437.22,167042.69,0,0,0,1876.3234 +3243,3988,7023,7022,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.5614347,6.0094762,6,9,43.667091,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,8.9178209,10.844586,66.562805,0,1,1,0,0,6.4655118,55,45,56.85,37.23,8,1,1,0,0,0,11,2,1,740.5,333409.72,115437.22,167042.69,0,0,0,1876.3234 +3244,3989,7024,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.6834,0,3,2,2021,34,12,0,26,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,24.33,31.08,-9,-9,3.333333333333333,1,1,0,1,7,11,1,1,307,50887.648,0,0,0,0,690.8681,888.69818 +3244,3990,7025,-9,7024,-9,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-908.0755,0,2,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86252522,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,300,-42088.734,0,0,0,0,0,443.67596 +3245,3991,7026,7027,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.4950719,7.6532335,0,15,-5,61.784225,0,3,3,2021,12,0,39,47,1,0,0,6.9894891,6.9894891,0,0,0,0,0,0,0,7,1,1,0,0,0,50.59,16.2,58.88,9.540000000000001,6.666666666666667,1,1,0,0,9,2,3,0,554,196946.03,263479.63,0,0,0,0,1882.4138 +3245,3991,7027,7026,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,15,5,19.519295,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.88,9.540000000000001,50.59,16.2,1.666666666666667,1,1,0,0,1,2,3,0,554,196946.03,263479.63,0,0,0,0,1882.4138 +3245,3992,7028,-9,7026,7027,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1066.802,0,3,2,2021,22,10,0,10,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,35.32,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,550,-119115.69,0,0,0,1920.6206,1971.3685,735.96716 +3246,3993,7029,7030,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,6.6563377,7.1054578,0,6,-7,-147.02847,0,2,2,2021,11,0,24,20,1,2,0,4.595243,4.595243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,1,1,0,1,2,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3246,3993,7030,7029,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.8362904,9.2135592,0,6,7,68.249886,-9,-9,-9,2021,10,0,48,0,1,1,0,14.997604,14.997604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,1,1,0,0,5,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3246,3993,7031,-9,7029,7030,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.95831,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3247,3994,7032,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.81299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9625635,0,0,1,1,0,0,0,69.10000000000001,24.72,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,939,-81678.445,0,0,0,3616.8411,0,1288.5031 +3248,3995,7033,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,11.482454,11.375475,0,0,0,-994.33502,0,2,2,2021,7,1,55,10,1,1,0,213.67256,213.67256,.05,.05,0,0,0,0,0,0,0,0,0,6.3646584,0,47.32,52.7,-9,-9,10,2,3,0,0,9,5,5,1,606,-1348.6193,97610.648,0,0,0,0,51382.098 +3249,3996,7034,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6849031,6.2897582,0,0,-1058.6066,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5082674,51,46,-9,-9,7,2,3,0,0,0,6,2,1,1382,352626.63,131535.38,0,0,0,0,-18.284153 +3249,3997,7035,7036,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,4,-2,-20.729332,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,49.46,56.91,7,2,3,0,0,0,6,4,1,277.5,-5405.4487,151000,0,0,24767.584,6849.8408,2559.5259 +3249,3997,7036,7035,7034,-9,1,1,29,0,0,0,1,1,-9,0,4,8.3816996,8.6170044,0,4,2,-44.690544,0,3,2,2021,7,0,38,38,1,0,0,17.620052,17.620052,.05,.05,0,0,0,0,0,2,1,1,0,7.5512347,0,49.46,56.91,47,57,5,2,3,0,0,5,6,4,1,277.5,-5405.4487,151000,0,0,24767.584,6849.8408,2559.5259 +3249,3998,7037,-9,7034,-9,1,1,25,0,0,0,1,1,-9,0,4,7.3575501,7.2737546,0,0,0,-981.4809,0,3,-9,2021,10,0,25,25,1,1,0,8.671546,8.671546,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,411,114409.99,0,0,0,15271.667,0,1115.0851 +3250,3999,7038,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.9268785,8.2919569,0,0,0,-1065.7336,0,3,2,2021,12,1,40,45,1,1,0,8.9432936,8.9432936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,11,12,4,1,1260,91177.984,99956.563,0,0,0,0,947.00092 +3251,4000,7039,7040,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.6718826,8.3027391,0,28,7,43.485332,0,-9,-9,2021,13,2,45,42,1,2,0,12.509093,12.509093,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,55.18,43.89,44.44,51.2,3.333333333333333,1,1,0,0,9,9,5,1,596.5,694861.88,202484.45,784749,224321.47,30332.539,0,3704.6558 +3251,4000,7040,7039,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,8.179863,8.3722696,0,28,-7,14.08341,0,2,2,2021,10,0,37,37,1,0,0,13.026151,13.026151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.44,51.2,55.18,43.89,6.666666666666667,1,1,0,0,9,9,5,1,596.5,694861.88,202484.45,784749,224321.47,30332.539,0,3704.6558 +3252,4001,7041,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8161249,8.4813433,0,0,0,-1151.2278,0,3,3,2021,12,0,40,43,1,0,0,14.746882,14.746882,.05,.05,0,0,0,0,0,2,0,0,0,0,0,34.57,58.32,-9,-9,6.666666666666667,1,1,0,0,12,13,5,1,1327,310480.19,118050.28,166052.14,127154.79,0,0,1807.2263 +3253,4002,7042,7043,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,2.6046739,2.4894989,6,9,-50.045673,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,26.316404,0,0,1,1,0,2.6471751,2.8202636,46.26,22.19,49.11,41.74,8.333333333333334,2,3,0,0,0,2,2,0,758,-113883.49,0,0,0,0,0,2447.2966 +3253,4002,7043,7042,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,6,0,28.943224,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,49.11,41.74,46.26,22.19,8.333333333333334,2,3,0,0,0,2,2,0,758,-113883.49,0,0,0,0,0,2447.2966 +3254,4003,7044,-9,7047,7045,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.6781,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7045,7047,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.8406744,9.0362968,0,10,0,42.300709,0,2,3,2021,12,0,40,47,1,0,0,16.86212,16.86212,.05,.05,0,0,0,0,0,0,1,1,0,6.6744533,0,35.31,54.01,41.23,58.08,3.333333333333333,1,1,0,0,13,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7046,-9,7047,7045,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.06921,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7047,7045,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1617708,7.1675773,0,10,0,90.479317,0,2,2,2021,10,1,30,18,1,1,0,5.1156535,5.1156535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,58.08,35.31,54.01,8.333333333333334,1,1,0,0,9,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3255,4004,7048,7049,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.8105321,6.7583199,0,36,1,-91.360649,0,3,3,2021,36,12,15,15,1,12,0,7.7766695,7.7766695,0,0,0,0,0,0,0,2,1,1,0,0,0,38.56,45.76,42.86,49.95,3.333333333333333,1,1,0,1,2,10,2,0,697,-60052.598,0,0,0,0,0,352.461 +3255,4004,7049,7048,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,36,-1,117.98943,0,-9,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.86,49.95,38.56,45.76,5,1,1,1,1,0,10,2,0,697,-60052.598,0,0,0,0,0,352.461 +3255,4005,7050,-9,7049,7048,1,0,25,0,0,0,2,2,-9,0,4,7.6824417,7.3515992,0,0,0,-1043.8778,0,3,3,2021,7,1,35,0,1,1,1,7.1860113,7.1860113,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,1,10,3,0,781,107447.44,24157.762,0,0,0,0,1160.403 +3256,4006,7051,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.0398641,6.0096197,0,0,-1032.3304,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8462467,58.22,30.23,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,1377,103477.65,0,106499.52,0,0,0,1218.332 +3257,4007,7052,7053,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.7376089,7.7586951,48,2,-36.767132,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8427267,7.9784846,54.2,57.49,55.34,54.26,8.333333333333334,1,1,0,0,11,4,3,1,377,1058602.3,492508.44,376962.69,0,0,0,3609.6719 +3257,4007,7053,7052,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.706244,6.9354901,48,-2,3.0025377,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8232889,55.34,54.26,54.2,57.49,10,1,1,0,0,4,4,3,1,377,1058602.3,492508.44,376962.69,0,0,0,3609.6719 +3258,4008,7054,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,8.3411055,8.2973166,0,0,-1056.1479,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3979385,8.0069895,55.41,36.28,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,894,880510.38,312800.66,288881.59,0,0,-161.33185,2957.6362 +3259,4009,7055,-9,7056,7057,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-993.15784,0,3,2,2021,25,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.49,43.99,-9,-9,1.666666666666667,2,3,0,0,2,8,1,1,485,-14555.271,67762.203,0,0,0,0,0 +3259,4010,7056,7057,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.2123117,7.0274906,0,40,-8,91.097382,0,3,3,2021,12,0,16,15,1,0,0,8.7780399,8.7780399,0,0,0,0,0,0,0,0,1,1,0,2.4598718,0,36.18,48.3,38.16,44.66,6.666666666666667,1,1,0,0,11,8,2,1,598,489377.31,194134.67,208514.44,0,0,0,883.23151 +3259,4010,7057,7056,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,11,8,-21.897562,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,3.3357069,0,26.511686,14.5,1,1,0,3.3438084,0,38.16,44.66,36.18,48.3,5,1,1,0,0,12,8,2,1,598,489377.31,194134.67,208514.44,0,0,0,883.23151 +3260,4011,7058,7059,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.7357378,8.3978119,0,25,-4,2.0766523,0,2,2,2021,6,1,24,55,1,1,0,30.60602,30.60602,.05,.05,0,0,0,0,0,102,1,1,0,0,0,54.14,58.86,33.83,57.61,8.333333333333334,1,1,0,0,10,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7059,7058,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,7.920249,7.7983756,0,25,4,117.86967,0,1,1,2021,12,0,17,17,1,0,0,15.318863,15.318863,0,0,0,0,0,0,0,109,1,1,0,0,0,33.83,57.61,54.14,58.86,6.666666666666667,1,1,0,0,9,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7060,-9,7059,7058,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.6034,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7061,-9,7059,7058,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8133,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3261,4012,7062,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.9948673,8.2477646,0,0,0,-1076.5862,0,2,2,2021,25,11,37,37,1,11,0,7.7846909,7.7846909,.05,.05,.05,0,0,0,0,7,0,0,0,.18789679,0,40.41,33.07,-9,-9,3.333333333333333,1,1,0,0,9,12,3,0,730,126294.93,10924.947,0,0,1004.4858,0,1009.7669 +3262,4013,7063,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.7920313,9.6933947,0,2,30,-29.982653,0,-9,3,2021,15,3,40,40,1,3,0,62.921814,62.921814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,51.73,58.82,3.333333333333333,1,1,0,0,11,9,5,1,675,406123.06,109846.89,281885.22,112715.56,0,0,7871.5215 +3262,4014,7064,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.8417759,8.3935671,0,2,-30,-35.183033,0,-9,-9,2021,10,0,28,40,1,1,0,25.223667,25.223667,.05,.05,0,0,0,0,0,0,0,0,0,2.6619358,0,51.73,58.82,45.91,59.89,8.333333333333334,1,1,0,0,2,9,5,1,46,-19295.742,48562.039,0,0,0,0,1721.2374 +3263,4015,7065,-9,-9,7069,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-927.86932,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7066,7069,-9,-9,1,0,36,0,4,0,2,2,-9,0,1,0,5.963901,6.1027484,8,-6,74.119972,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3163495,0,36.26,51.68,43.12,58.55,8.333333333333334,1,1,0,1,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7067,-9,7066,7069,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-836.35583,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7068,-9,7066,7069,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-887.4325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7069,7066,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.6634359,8.8729277,5.3647351,8,6,26.126041,0,2,2,2021,6,0,40,40,1,0,0,21.1882,21.1882,.05,.05,.05,0,0,0,0,7,1,1,0,5.4733744,0,43.12,58.55,36.26,51.68,5,1,1,0,0,10,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7070,-9,-9,7069,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1016.4445,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3264,4016,7071,-9,7074,7073,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.3955,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7072,-9,7074,7073,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.2469,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7073,7074,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.4392133,7.5347571,0,8,5,80.715599,-9,-9,-9,2021,9,0,38,0,1,1,0,4.9054422,4.9054422,0,0,0,0,0,0,0,0,1,1,0,2.6757991,0,53,54,43.71,56.91,8,1,1,0,0,1,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7074,7073,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,6.7897534,6.9618769,0,8,-5,173.24504,0,2,2,2021,10,0,12,18,1,0,0,9.0758123,9.0758123,0,0,0,0,0,0,0,0,1,1,0,7.7554903,0,43.71,56.91,53,54,6.666666666666667,1,1,0,0,11,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3265,4017,7075,-9,7078,7079,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1059.0304,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7076,-9,7078,7079,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-964.89496,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7077,-9,7078,7079,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1046.0868,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7078,7079,-9,-9,1,0,36,0,3,0,2,2,-9,1,4,0,0,0,20,-4,0,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.97,61.83,37.42,30.57,5,2,3,0,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7079,7078,-9,-9,1,1,40,0,3,0,3,3,-9,1,2,0,0,0,20,4,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.42,30.57,35.97,61.83,5,2,3,0,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3266,4018,7080,7081,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.8699236,8.2618484,56,1,192.39423,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.056675,53.79,37.67,53.62,41.64,6.666666666666667,1,1,0,0,3,1,3,1,1036,1002982.6,445798.75,350248.44,0,0,0,2495.3643 +3266,4018,7081,7080,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.1422172,5.8608823,56,-1,7.7899928,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.565319,0,0,1,1,0,2.193589,6.135385,53.62,41.64,53.79,37.67,8.333333333333334,1,1,0,0,0,1,3,1,1036,1002982.6,445798.75,350248.44,0,0,0,2495.3643 +3267,4019,7082,7083,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.2885604,7.3880286,0,37,-16,45.027489,0,3,3,2021,21,8,35,35,1,8,0,4.3813038,4.3813038,0,0,0,0,0,0,0,0,1,1,0,0,0,48.97,42.09,47.01,34.07,6.666666666666667,1,1,0,0,13,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3267,4019,7083,7082,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.1335053,6.284224,39,16,-3.3076773,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,45.515999,0,0,1,1,0,6.0596371,5.8871169,47.01,34.07,48.97,42.09,8.333333333333334,1,1,0,0,3,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3267,4019,7084,-9,7082,7083,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.63287,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,6.666666666666667,1,1,0,1,1,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3268,4020,7085,-9,7086,7088,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.36871,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7086,7088,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.2362995,8.2232103,0,7,5,-111.90427,0,3,-9,2021,11,2,26,30,1,2,0,18.880136,18.880136,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.61,47.86,51.39,50.81,8.333333333333334,1,1,0,0,4,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7087,-9,7086,7088,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.49963,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7088,7086,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4985933,8.502388,0,7,-5,86.181313,0,2,2,2021,12,2,48,47,1,2,0,11.639812,11.639812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,50.81,54.61,47.86,8.333333333333334,1,1,0,0,6,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3269,4021,7089,7090,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,10,-2,25.751543,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.75,47.35,51.85,41.28,8.333333333333334,1,1,0,0,3,6,4,1,610.5,974535.38,540624,266636.44,0,0,676.3739,2772.9106 +3269,4021,7090,7089,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.4367676,8.4357281,0,9,2,27.274986,0,-9,-9,2021,9,0,48,55,1,0,0,12.969381,12.969381,0,0,0,0,0,0,0,0,0,0,0,6.387414,0,51.85,41.28,52.75,47.35,6.666666666666667,1,1,0,0,15,6,4,1,610.5,974535.38,540624,266636.44,0,0,676.3739,2772.9106 +3270,4022,7091,7092,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.4828305,5.93256,24,4,-49.293446,0,3,3,2021,8,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9961462,51.07,32.75,54.37,54.8,8.333333333333334,1,1,0,0,13,9,3,1,852.5,704270.75,296561.75,219796.78,17999.047,0,1442.089,2144.7495 +3270,4022,7092,7091,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4458032,7.6550431,25,-4,-66.925682,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5831947,54.37,54.8,51.07,32.75,10,1,1,0,0,12,9,3,1,852.5,704270.75,296561.75,219796.78,17999.047,0,1442.089,2144.7495 +3270,4023,7093,-9,7092,7091,1,0,20,0,0,1,2,0,0,0,4,0,8.0852613,8.0095816,0,0,-1083.4542,-9,1,2,2021,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4871244,0,52.31,58.29,-9,-9,10,1,1,0,0,1,9,4,1,557,-63274,-92942.313,0,0,0,0,1485.5016 +3271,4024,7094,7095,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.1263075,8.1877966,6.7129245,5,1,73.330627,0,-9,-9,2021,6,1,34,32,1,1,0,10.536759,10.536759,0,0,.05,0,0,0,0,0,0,0,0,6.6510901,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,5,9,5,1,761.5,41854.203,-16986.688,0,0,5032.3047,0,3933.2686 +3271,4024,7095,7094,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.781775,7.9285831,6.9644165,5,-1,21.862503,-9,1,2,2021,4,0,24,0,1,0,0,12.302064,12.302064,0,0,0,0,0,0,0,0,0,0,0,6.888989,0,54.69,57.47,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,1,761.5,41854.203,-16986.688,0,0,5032.3047,0,3933.2686 +3272,4025,7096,7097,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,6.4100375,6.5314927,0,7,-13,-26.439777,0,-9,-9,2021,28,12,16,20,1,12,0,4.806674,4.806674,0,0,0,0,0,0,0,0,0,0,0,.73053533,0,5.09,57.72,51.4,46.95,1.666666666666667,1,1,0,1,8,2,2,0,727.5,531270.75,303937.88,146118.72,0,0,0,1119.2114 +3272,4025,7097,7096,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,6.8250046,6.8661199,0,7,13,-73.116814,0,-9,-9,2021,4,0,48,48,1,0,0,2.5081286,2.5081286,0,0,0,0,0,0,0,0,0,0,0,2.516434,0,51.4,46.95,5.09,57.72,8.333333333333334,1,1,0,0,13,2,2,0,727.5,531270.75,303937.88,146118.72,0,0,0,1119.2114 +3273,4026,7098,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.7065573,7.8535824,0,0,-869.0871,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.2165914,51.15,29.26,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,213,687211.25,680924.19,0,0,0,0,701.38232 +3273,4027,7099,-9,-9,7098,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.82635,0,-9,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.97,52.12,-9,-9,1.666666666666667,1,1,1,0,0,2,1,1,178,-13648.449,0,0,0,0,0,421.79318 +3274,4028,7100,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.7825775,6.9488354,0,0,-1135.8125,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7310872,6.8687134,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,323,1235228.6,103508.51,168911.41,0,0,0,845.4339 +3275,4029,7101,7103,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.4271975,8.5903139,0,24,0,104.842,0,2,2,2021,13,3,35,40,1,3,0,17.292166,17.292166,0,0,.05,0,0,0,0,0,0,0,0,2.6269794,0,48.28,60.18,52,55,6.666666666666667,1,1,0,0,8,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7102,-9,7101,7103,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.78595,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7103,7101,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.867445,10.084799,0,25,0,-24.722521,0,2,2,2021,9,0,70,50,1,1,0,26.208918,26.208918,0,0,.05,0,0,0,0,0,0,0,0,1.8613898,0,52,55,48.28,60.18,8,1,1,0,0,1,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7104,-9,7101,7103,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-917.23584,-9,1,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3276,4030,7105,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1060.1118,-9,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,20.09,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,934,-160609.61,0,0,0,0,0,1486.3936 +3277,4031,7106,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.4094052,7.1538091,0,0,0,-1088.8357,0,2,1,2021,7,0,35,40,1,0,0,6.6182599,6.6182599,0,0,0,0,0,0,0,2,0,0,0,2.8193827,0,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,12,8,3,1,210,291887.94,14929.656,189816.78,16379.737,0,0,384.46689 +3278,4032,7107,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.4364,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.66,21.39,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,239,-104665.68,0,0,0,0,0,634.98431 +3279,4033,7108,-9,7110,7109,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.767,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7109,7110,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,8.5062618,8.5202265,0,14,4,-17.822714,0,2,2,2021,12,1,48,44,1,1,0,13.686909,13.686909,.05,.05,0,0,0,0,0,0,1,1,0,3.5054495,0,49.04,55.86,43.48,60.97,6.666666666666667,1,1,0,1,12,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7110,7109,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2883863,8.5244703,0,14,-4,-1.3744153,0,2,2,2021,11,0,22,38,1,0,0,26.662802,26.662802,.05,.05,0,0,0,0,0,0,1,1,0,2.6963985,0,43.48,60.97,49.04,55.86,8.333333333333334,1,1,0,1,11,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7111,-9,7110,7109,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.43829,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3280,4034,7112,-9,-9,-9,1,0,37,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1045.5732,-9,2,1,2021,20,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.25,55.13,-9,-9,3.333333333333333,1,1,0,0,4,5,1,1,409,-217488.11,0,0,0,0,0,214.54573 +3281,4035,7113,7114,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,6.4849763,6.8459706,5.6544828,10,12,3.9652028,0,3,3,2021,9,0,80,80,1,0,0,.91831517,.91831517,.05,.05,0,0,0,0,0,2,1,1,0,5.3103714,5.5854154,53.39,49.67,54.37,54.8,6.666666666666667,4,2,0,0,11,2,4,1,938,207072.56,8404.7949,187715.8,0,0,0,4464.1133 +3281,4035,7114,7113,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.6787434,8.6687021,0,10,-12,-8.7484207,0,3,3,2021,7,0,70,70,1,0,0,7.7612123,7.7612123,.05,.05,0,0,0,0,0,0,1,1,0,7.2026167,0,54.37,54.8,53.39,49.67,8.333333333333334,1,1,0,0,11,2,4,1,938,207072.56,8404.7949,187715.8,0,0,0,4464.1133 +3281,4036,7115,-9,-9,-9,1,1,22,0,0,1,3,0,-9,1,4,0,0,0,0,0,-970.16791,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.01,53.44,-9,-9,10,1,1,0,0,0,2,1,1,922,13291.843,0,0,0,0,0,932.43256 +3282,4037,7116,-9,7119,7118,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.82953,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7117,-9,7119,7118,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1266,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7118,7119,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.0332222,8.3027077,0,9,2,-38.189308,0,-9,-9,2021,6,0,100,50,1,0,0,3.3188848,3.3188848,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,55.28,49.04,55.86,5,1,1,0,0,10,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7119,7118,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.0478153,8.0241508,0,9,-2,-30.417957,0,1,2,2021,11,1,54,45,1,1,0,6.2009668,6.2009668,.05,.05,0,0,0,0,0,0,0,0,0,1.8330494,0,49.04,55.86,41.06,55.28,8.333333333333334,1,1,0,0,10,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3283,4038,7120,7121,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.6401844,7.554985,0,25,-1,44.164272,0,1,1,2021,12,1,27,26,1,1,0,9.2441416,9.2441416,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.15,56.92,48.87,58.55,8.333333333333334,1,1,0,0,4,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7121,7120,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.247982,9.4898701,0,25,1,18.917671,0,1,1,2021,10,1,40,42,1,1,0,25.969244,25.969244,.05,.05,0,0,0,0,0,0,1,1,0,5.246067,0,48.87,58.55,43.15,56.92,8.333333333333334,1,1,0,0,13,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7122,-9,7120,7121,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.7532,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7123,-9,7120,7121,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-927.11963,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.73,61.29,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7124,-9,7120,7121,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.4545,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7125,-9,7120,7121,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-942.07886,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3284,4039,7126,7128,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.83249,8.884634,0,22,0,20.006161,0,3,3,2021,10,0,81,50,1,0,0,7.7985992,7.7985992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,40.67,62.66,8.333333333333334,1,1,0,0,14,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7127,-9,7128,7126,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-898.67993,1,1,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.39,66.76000000000001,-9,-9,3.333333333333333,1,1,0,0,1,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7128,7126,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.7571492,7.5526133,0,22,0,240.47096,0,-9,-9,2021,10,0,32,32,1,0,0,6.4305391,6.4305391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.67,62.66,51.24,58.84,5,1,1,0,0,14,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7129,-9,7128,7126,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.7384,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7130,-9,7128,7126,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.3237,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3285,4040,7131,7132,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,5.6773834,5.5914016,49,-6,11.841055,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9980798,5.4305506,44.25,56.64,56.5,48.33,8.333333333333334,1,1,0,0,10,7,3,1,1787.5,1303675.4,266284.38,868672.63,0,0,0,2767.6973 +3285,4040,7132,7131,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.8640013,8.0433769,49,6,-28.385332,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.812809,7.8515697,56.5,48.33,44.25,56.64,10,1,1,0,0,0,7,3,1,1787.5,1303675.4,266284.38,868672.63,0,0,0,2767.6973 +3286,4041,7133,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2666698,7.4020915,0,0,-1046.677,0,1,1,2021,4,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.0735393,7.2364488,59.53,56.44,-9,-9,10,1,1,0,0,0,9,3,1,364,348374.63,337563.81,242476.08,29194.93,0,0,1962.307 +3287,4042,7134,-9,7135,7136,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.93433,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4042,7135,7136,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.4465027,7.6447725,0,24,-7,-76.33506,0,2,2,2021,9,0,20,25,1,0,0,10.402335,10.402335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4042,7136,7135,-9,-9,1,1,54,0,1,0,3,3,-9,0,4,9.0058279,8.7785826,0,24,7,.25235492,0,2,2,2021,8,0,84,0,1,0,0,9.2757578,9.2757578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.32,50.22,10,1,1,0,0,9,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4043,7137,-9,7135,7136,1,1,19,0,1,0,2,2,-9,0,4,7.3750954,7.5201068,0,0,0,-882.83087,0,2,3,2021,17,5,38,28,1,5,1,5.4631209,5.4631209,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,2,12,3,1,420,271317.31,0,0,0,0,0,869.9234 +3288,4044,7138,7139,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,56,-1,-76.337311,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.6,35.9,56.1,49.93,6.666666666666667,1,1,0,0,0,6,4,1,344,779381.5,721483,0,0,0,0,4702.6128 +3288,4044,7139,7138,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.8238993,8.7100067,56,1,130.37077,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7345924,56.1,49.93,54.6,35.9,8.333333333333334,1,1,0,0,0,6,4,1,344,779381.5,721483,0,0,0,0,4702.6128 +3289,4045,7140,7142,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,7.9703822,8.2631626,0,12,-2,134.74936,0,2,1,2021,12,0,24,26,1,0,0,14.592973,14.592973,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7141,-9,7140,7142,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.49139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7142,7140,-9,-9,1,1,39,1,3,0,1,1,-9,0,4,9.6340322,9.8016376,0,12,2,39.810322,0,2,2,2021,8,0,50,53,1,0,0,28.668472,28.668472,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7143,-9,7140,7142,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.63037,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7144,-9,7140,7142,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.3663,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3290,4046,7145,-9,7148,7147,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1757,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7146,-9,7148,7147,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.9011,-9,2,3,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,64.55,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7147,7148,-9,-9,1,1,46,0,2,0,3,3,-9,1,2,0,0,0,8,-3,-106.61347,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.6,29.45,35.2,46,6.666666666666667,1,1,0,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7148,7147,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2886295,8.5739174,0,8,3,-27.42275,0,2,3,2021,15,4,60,54,1,4,0,7.609921,7.609921,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.2,46,51.6,29.45,5,1,1,0,0,8,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3291,4047,7149,7150,-9,-9,1,0,36,1,3,0,2,2,-9,1,5,6.0139847,6.1747155,0,3,0,-72.785576,0,-9,3,2021,8,0,6,0,1,0,0,7.0262842,7.0262842,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,54.1,59.11,56.48,51.03,10,1,1,0,0,1,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7150,7149,-9,-9,1,1,36,1,3,0,2,2,-9,0,5,8.2705927,8.4084272,0,3,0,-187.71503,-9,-9,-9,2021,11,0,40,0,1,0,0,11.841701,11.841701,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.48,51.03,54.1,59.11,8.333333333333334,1,1,0,0,8,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7151,-9,7149,7150,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.24072,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7152,-9,7149,7150,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-915.10388,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7153,-9,7149,7150,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.5399,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3292,4048,7154,-9,-9,7155,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.5517,-9,-9,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,294,23471.664,-88851.188,129924.83,105761.7,140.77753,3610.7009,1897.1436 +3292,4048,7155,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.253211,8.3070459,0,0,0,-942.97009,0,2,2,2021,10,0,40,45,1,0,0,13.287731,13.287731,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,50.88,-9,-9,5,1,1,0,0,7,10,3,1,294,23471.664,-88851.188,129924.83,105761.7,140.77753,3610.7009,1897.1436 +3292,4049,7156,-9,-9,7155,1,0,18,0,1,1,2,0,-9,0,1,0,0,0,0,0,-1041.0525,-9,-9,3,2021,23,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,19.81,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,522,-6286.8413,0,0,0,0,0,0 +3293,4050,7157,-9,-9,-9,1,1,18,0,0,0,2,2,1,0,3,6.4846063,6.4371424,0,0,0,-946.89282,-9,2,2,2021,8,0,40,0,1,0,1,2.0575635,2.0575635,0,0,0,0,0,0,0,0,1,0,1,0,0,62.66,52.4,-9,-9,10,1,1,0,0,2,9,2,1,1367,64929.691,0,0,0,0,0,98.573593 +3294,4051,7158,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6604114,6.7294617,0,0,-973.48132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8016901,6.7960629,58.15,52.91,-9,-9,0,1,1,0,0,7,2,2,1,466,126158.3,84152.805,160483.53,0,0,0,720.9245 +3295,4052,7159,7160,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,34,0,-95.311447,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,42.95,61.24,7,4,5,0,0,0,8,5,1,1385,408554.47,192826.17,131327.92,80459.859,7763.8872,12303.262,3188.5273 +3295,4052,7160,7159,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.2788782,9.3919611,0,33,0,-61.524834,0,3,3,2021,14,3,42,38,1,3,0,30.10894,30.10894,.05,.05,0,0,0,0,0,2,0,0,0,0,0,42.95,61.24,49,48,5,1,1,0,0,11,8,5,1,1385,408554.47,192826.17,131327.92,80459.859,7763.8872,12303.262,3188.5273 +3295,4053,7161,-9,7159,7160,1,0,25,0,0,0,2,2,-9,0,4,7.1319647,7.0119586,0,0,0,-979.31708,0,2,1,2021,14,4,14,0,1,4,1,10.114653,10.114653,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,4,2,0,0,1,8,2,1,862,-8243.1914,-16093.547,0,0,0,0,247.97238 +3296,4054,7162,7163,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.2979927,6.0957375,6,-1,-66.311317,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,12.452283,0,0,1,1,0,2.9648798,5.9137158,54,44,56,44,8,1,1,0,0,0,5,2,1,1260,103268.76,128696.97,0,0,0,0,2097.4507 +3296,4054,7163,7162,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,6,1,-26.998798,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,5.7133913,0,0,1,1,0,5.1499124,0,56,44,54,44,8,1,1,0,0,0,5,2,1,1260,103268.76,128696.97,0,0,0,0,2097.4507 +3296,4055,7164,-9,7162,7163,1,1,64,0,0,0,3,3,-9,1,3,0,6.4208016,6.4190493,0,0,-1036.6694,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3940945,6.6235356,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2857,26604.213,-58776.203,0,0,0,0,1464.7548 +3297,4056,7165,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.0201845,5.8413553,0,0,-981.55469,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3347044,40.92,29.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,2037,186558.56,-6551.4253,202996.2,0,0,0,866.33392 +3298,4057,7166,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.288599,8.4888706,0,0,-892.91052,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9406648,8.1671839,55.13,50.42,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,1936,161081.48,0,0,0,0,0,3342.113 +3299,4058,7167,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.5486012,7.7129049,8,5,-31.697037,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5844345,51.21,48.48,49,47,8.333333333333334,1,1,0,0,4,8,3,1,293,446926.13,230545.95,0,0,0,0,1577.7517 +3300,4059,7168,7169,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.7676458,8.6256294,0,4,7,-102.43861,0,-9,-9,2021,3,0,53,48,1,0,0,17.602829,17.602829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.84,49.17,8.333333333333334,1,1,0,0,6,6,5,1,589.5,303850.91,170506.5,697062.5,483587.81,0,0,4369.1289 +3300,4059,7169,7168,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7349606,8.9485626,0,4,-7,-39.768143,0,2,2,2021,11,2,45,64,1,2,0,16.02655,16.02655,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.84,49.17,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,589.5,303850.91,170506.5,697062.5,483587.81,0,0,4369.1289 +3301,4060,7170,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.7635493,6.3576417,0,0,-807.90131,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1382084,6.5686502,52.31,40.62,-9,-9,5,1,1,0,0,5,5,2,1,1978,-106460.98,125275.86,0,0,0,0,955.07092 +3302,4061,7171,7172,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.6571345,6.8320713,57,3,48.66539,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3301859,7.0258584,53.5,53.7,52.78,45.97,8.333333333333334,1,1,0,0,9,13,2,1,754,211803.66,0,171331.89,0,0,0,1381.9004 +3302,4061,7172,7171,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,57,-3,29.916136,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0288606,0,52.78,45.97,53.5,53.7,8.333333333333334,1,1,0,0,9,13,2,1,754,211803.66,0,171331.89,0,0,0,1381.9004 +3303,4062,7173,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.9437599,7.831008,0,0,0,-1006.9717,0,3,3,2021,14,3,43,40,1,3,0,6.3030009,6.3030009,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,8.333333333333334,1,1,0,1,9,8,3,0,408,-69378,0,0,0,0,0,1001.9097 +3304,4063,7174,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.2694473,8.5234652,0,0,0,-1008.2742,0,3,3,2021,12,2,39,24,1,2,0,15.317954,15.317954,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.12,39.15,-9,-9,6.666666666666667,2,3,0,0,3,8,3,0,101,281627.75,-52427.789,126217.95,109979,0,7178.8726,2730.2009 +3305,4064,7175,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.4968953,7.5722852,0,0,0,-1002.8981,0,3,2,2021,10,0,30,30,1,0,0,7.3983564,7.3983564,0,0,0,0,0,0,0,2,1,1,0,0,0,41.88,45.75,-9,-9,6.666666666666667,2,3,0,0,11,2,3,1,125,116110.46,61842.613,0,0,2339.4932,0,800.3418 +3305,4065,7176,-9,7175,-9,1,0,22,0,0,0,2,2,1,0,2,6.9843149,7.0555353,0,0,0,-996.31366,-9,2,-9,2021,36,12,17,0,1,12,1,6.3797669,6.3797669,0,0,0,0,0,0,0,2,1,1,0,6.9464393,0,1.83,67.42,-9,-9,6.666666666666667,2,3,0,1,5,2,2,1,1979,-28332.385,0,0,0,0,0,1000.3749 +3305,4066,7177,-9,7175,-9,1,0,18,0,0,0,2,2,1,0,4,6.2413898,6.4040284,0,0,0,-1102.339,-9,2,-9,2021,30,11,9,0,1,11,1,7.115231,7.115231,0,0,0,0,0,0,0,0,1,1,0,7.2722301,0,20.06,67.82000000000001,-9,-9,5,2,3,0,0,1,2,2,1,148,-154069.75,0,0,0,0,0,1875.4233 +3306,4067,7178,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.28149,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.99,23.42,-9,-9,5,1,1,0,0,0,6,1,1,457,161422.88,0,0,0,0,0,884.42975 +3306,4068,7179,-9,7178,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0233183,7.9958868,0,0,0,-964.73529,0,2,-9,2021,12,0,78,38,1,0,1,5.0970874,5.0970874,0,0,0,0,0,0,0,2,1,1,0,2.7915537,0,53.22,55.2,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,103,-33351.262,0,0,0,0,0,1505.4491 +3306,4069,7180,-9,7178,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.56354,-9,2,-9,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8458245,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,4,6,1,1,506,137244.11,0,0,0,0,0,1716.0071 +3307,4070,7181,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.0531569,6.172905,0,0,-1031.0386,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.830214,5.9493532,49.28,50.19,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,597,-6460.1528,120141.34,0,0,0,0,818.21283 +3308,4071,7182,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-739.27832,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.4622312,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,348,61466.352,0,0,0,0,0,1079.6262 +3309,4072,7183,-9,7184,7188,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.69769,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7184,7188,-9,-9,1,0,41,1,4,0,1,1,-9,0,2,8.5139914,8.6297379,0,10,2,117.82719,0,2,1,2021,33,12,45,46,1,12,0,12.797879,12.797879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.71,34.45,49.35,59.64,3.333333333333333,1,1,0,1,11,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7185,-9,7184,7188,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1043.431,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7186,-9,7184,7188,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-992.33197,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7187,-9,7184,7188,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.4833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7188,7184,-9,-9,1,1,39,1,4,0,1,1,-9,0,4,8.4982805,8.4782858,0,10,-2,-18.82567,0,1,-9,2021,12,0,37,39,1,0,0,16.626066,16.626066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,25.71,34.45,8.333333333333334,1,1,0,0,11,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3310,4073,7189,7190,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.8140693,7.6809998,41,-2,97.503922,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8996024,54.37,54.8,60.12,54.8,6.666666666666667,1,1,0,0,9,12,5,1,1133,1721946,1292514,456359.56,0,0,0,3424.8574 +3310,4073,7190,7189,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.6253138,8.8635607,0,41,2,88.443016,0,2,2,2021,7,0,24,24,1,0,0,31.614456,31.614456,.05,.05,0,0,0,0,0,0,0,0,0,2.9261539,0,60.12,54.8,54.37,54.8,8.333333333333334,1,1,0,0,10,12,5,1,1133,1721946,1292514,456359.56,0,0,0,3424.8574 +3311,4074,7191,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.4158678,5.9998455,0,0,-968.85016,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,12.157807,0,0,1,1,0,0,5.3884082,53,44,-9,-9,8,1,1,0,0,0,4,2,1,109,222702.09,53939.66,64861.188,0,0,0,1711.5988 +3312,4075,7192,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.1239643,7.791378,0,0,0,-1013.0358,0,2,2,2021,15,2,32,30,1,2,0,13.417953,13.417953,.05,.05,0,0,0,0,0,0,1,0,1,0,0,26.61,59.47,-9,-9,1.666666666666667,1,1,0,0,13,10,4,0,1169,263492.47,43031.23,0,0,14759.142,-1307.8429,2152.895 +3313,4076,7193,7194,-9,-9,1,0,46,0,1,0,2,2,-9,0,1,0,0,0,6,-10,-6.519155,0,2,2,2021,15,4,0,20,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,23.91,62.6,34.56,8.333333333333334,1,1,0,0,5,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3313,4076,7194,7193,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.2993822,8.4724903,0,6,10,9.680047,0,2,2,2021,11,1,38,37,1,1,0,10.621163,10.621163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.6,34.56,49.02,23.91,6.666666666666667,1,1,0,0,9,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3313,4076,7195,-9,7193,7194,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-943.8429,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3314,4077,7196,7197,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,60,-5,43.298008,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,7.1474032,0,0,1,1,0,2.4651728,0,34.97,32.77,62.77,34.54,5,1,1,0,0,0,7,2,1,1395.5,671516.63,135552.64,452586.44,0,0,0,1950.1753 +3314,4077,7197,7196,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.5967278,7.611362,60,5,-58.206829,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.11848367,7.2555733,62.77,34.54,34.97,32.77,8.333333333333334,1,1,0,0,0,7,2,1,1395.5,671516.63,135552.64,452586.44,0,0,0,1950.1753 +3315,4078,7198,7199,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.6005507,5.9676728,49,-3,54.665257,0,2,2,2021,9,0,0,31,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8190966,6.1382279,63.39,39.56,59.11,26.09,8.333333333333334,1,1,0,0,15,10,2,1,725.5,1395627,625991.88,429921.66,0,0,0,2976.6672 +3315,4078,7199,7198,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.2328439,7.1769772,49,3,-33.604233,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5702629,0,0,1,1,0,7.0322542,6.4512935,59.11,26.09,63.39,39.56,8.333333333333334,1,1,0,0,0,10,2,1,725.5,1395627,625991.88,429921.66,0,0,0,2976.6672 +3316,4079,7200,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.4617138,8.7717953,0,0,0,-1063.9963,0,-9,-9,2021,9,0,10,50,1,0,0,67.819763,67.819763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,9,2,5,1,448,-7957.1812,-28331.863,109703.19,78393.398,0,0,2158.0286 +3317,4080,7201,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.7745228,7.4456606,0,0,-1049.9816,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9053135,7.0845037,37.17,50.6,-9,-9,5,1,1,0,0,6,13,2,1,1633,130900.98,72855.195,150464.89,0,0,0,1044.347 +3318,4081,7202,7203,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,7.3351984,7.5492516,0,5,-4,-12.833637,0,2,-9,2021,24,11,21,21,1,11,0,8.4381084,8.4381084,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,31.22,54.37,54.8,5,1,1,0,0,8,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3318,4081,7203,7202,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.0231495,8.4007206,0,5,4,-76.148857,0,-9,-9,2021,12,0,40,45,1,0,0,6.7533727,6.7533727,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.07,31.22,3.333333333333333,1,1,0,1,4,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3318,4081,7204,-9,7202,7203,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.40582,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3319,4082,7205,7206,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.417078,8.2714682,0,2,-1,-12.454788,0,-9,-9,2021,20,5,50,35,1,5,0,9.1878824,9.1878824,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,29.94,59.21,19.36,61.35,6.666666666666667,1,1,0,0,13,2,4,1,607.5,55190.594,65212.996,0,0,0,922.75092,2604.3201 +3319,4082,7206,7205,-9,-9,1,1,33,0,0,0,2,2,-9,1,3,7.7278466,7.70997,0,2,1,59.4753,0,-9,-9,2021,16,4,35,35,1,4,0,10.345481,10.345481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.36,61.35,29.94,59.21,3.333333333333333,1,1,0,0,12,2,4,1,607.5,55190.594,65212.996,0,0,0,922.75092,2604.3201 +3320,4083,7207,7208,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.1884594,8.1546144,0,16,0,-81.431992,0,2,2,2021,9,0,45,50,1,0,0,10.272691,10.272691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,36.45,62.92,8.333333333333334,1,1,0,0,12,2,4,1,1500,660521.5,691380.5,0,0,24647.361,201.17657,3388.8997 +3320,4083,7208,7207,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0834513,7.9027562,0,16,0,63.941975,0,1,2,2021,14,3,40,47,1,3,0,8.023181,8.023181,0,0,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,61.01,53.18,6.666666666666667,1,1,0,0,14,2,4,1,1500,660521.5,691380.5,0,0,24647.361,201.17657,3388.8997 +3321,4084,7209,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.5094347,8.5761642,0,0,0,-942.95245,0,-9,-9,2021,15,3,74,37,1,3,0,8.5380526,8.5380526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.35,64.53,-9,-9,6.666666666666667,1,1,0,0,8,12,5,0,581,-36623.121,110542.5,0,0,0,0,1712.6638 +3322,4085,7210,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,6.3448758,6.5023465,0,0,-913.0285,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0754571,0,62.43,10.97,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,322.5,85748.875,0,0,0,0,0,1165.6284 +3322,4085,7211,-9,7210,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1007.7645,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.2726884,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,322.5,85748.875,0,0,0,0,0,1165.6284 +3322,4086,7212,-9,7210,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-857.83069,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,1.6049922,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,5,6,1,1,312,86878.406,0,0,0,0,0,395.11249 +3323,4087,7213,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.205317,7.1557918,0,0,0,-999.59558,0,2,3,2021,11,0,32,16,1,0,0,3.9167092,3.9167092,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,4,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3323,4087,7214,-9,7213,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0303,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3323,4087,7215,-9,7213,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.8201,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3324,4088,7216,-9,-9,-9,1,0,63,0,2,0,3,3,-9,1,4,8.3473539,8.1444817,0,0,0,-912.9939,0,3,3,2021,9,0,84,60,1,0,0,4.4958849,4.4958849,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,503,87896.234,-7643.7715,90514.078,21639.254,18635.584,495.07724,3872.2776 +3325,4089,7217,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.5291758,8.6688251,0,0,0,-1049.4259,0,1,1,2021,10,0,50,50,1,0,0,13.068029,13.068029,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,725,214263.48,-97133.578,0,0,41259.293,0,3249.7397 +3326,4090,7218,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,5.9101253,5.8862329,0,0,-1073.4376,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,.22582836,0,0,1,1,0,1.9777036,6.0425529,47.58,22.99,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,228,216801.75,26123.236,192157.69,0,0,0,346.95889 +3327,4091,7219,7220,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,4.674036,4.5247951,7,-2,-13.174617,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.476459,4.7815337,35.41,50.96,37.18,19.54,6.666666666666667,1,1,0,1,4,12,2,0,1393.5,732659.13,491669.44,130000.17,0,0,0,1623.1326 +3327,4091,7220,7219,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,7,2,54.42308,0,2,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,10.313661,0,120,1,1,0,0,0,37.18,19.54,35.41,50.96,3.333333333333333,1,1,0,0,4,12,2,0,1393.5,732659.13,491669.44,130000.17,0,0,0,1623.1326 +3327,4092,7221,-9,7220,7219,1,1,42,0,0,0,2,2,-9,1,4,0,0,0,0,0,-904.96265,-9,2,1,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,12,1,0,931,88335.742,0,0,0,0,0,1440.8162 +3328,4093,7222,7223,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.653749,6.2580271,11,-2,-67.502975,0,-9,-9,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,11.460997,0,0,1,1,0,0,6.7149587,39.18,17.47,51.33,24.03,5,1,1,0,0,0,2,2,1,3010.5,489015.97,121253.82,203970.55,0,0,0,2712.5698 +3328,4093,7223,7222,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.7648597,6.6622643,60,2,90.177376,0,3,3,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,0,16.0362,0,27,1,1,0,.31104115,7.0806389,51.33,24.03,39.18,17.47,5,1,1,0,0,0,2,2,1,3010.5,489015.97,121253.82,203970.55,0,0,0,2712.5698 +3329,4094,7224,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,6.1816373,6.145359,0,0,-985.73297,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.968821,55,45,-9,-9,8,3,4,0,0,0,6,2,0,276,322203.16,0,221621.34,0,0,0,882.79657 +3330,4095,7225,7226,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,6.1236725,5.9731383,3.1996248,21,8,-25.696424,0,3,2,2021,7,0,10,20,1,0,0,4.986022,4.986022,0,0,0,0,0,0,0,0,1,1,0,6.779788,3.4337654,58.91,35.36,51.7,49.11,8.333333333333334,1,1,0,0,12,10,3,1,513,52721.504,70506.953,0,0,0,0,3329.3228 +3330,4095,7226,7225,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,5.2366519,7.4092455,7.7011518,20,-8,-7.6519008,0,3,3,2021,11,0,30,33,1,0,0,.76205599,.76205599,.05,.05,0,0,0,0,0,0,1,1,0,2.7341695,7.6978168,51.7,49.11,58.91,35.36,8.333333333333334,1,1,0,0,12,10,3,1,513,52721.504,70506.953,0,0,0,0,3329.3228 +3330,4096,7227,-9,7225,7226,1,1,36,0,0,0,1,1,-9,0,3,7.7277865,7.720974,0,0,0,-961.7984,0,2,2,2021,4,0,28,30,1,0,0,8.157671,8.157671,.05,.05,0,0,0,0,0,2,1,1,0,4.8915071,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,12,10,3,1,1579,203592.73,-19159.313,0,0,0,0,1118.4005 +3331,4097,7228,7229,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.4336724,6.2908287,51,-2,24.27632,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1016207,6.4637594,57.66,45.08,34.23,49.22,6.666666666666667,1,1,0,1,0,7,2,1,220.5,137837,171987.06,0,0,0,0,1312.7039 +3331,4097,7229,7228,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.5182209,4.140821,51,2,67.617104,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.256897,34.23,49.22,57.66,45.08,3.333333333333333,1,1,0,0,0,7,2,1,220.5,137837,171987.06,0,0,0,0,1312.7039 +3332,4098,7230,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.2103,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.5,47.18,-9,-9,5,3,4,0,0,13,8,1,1,752,-139107.22,0,0,0,0,0,271.91995 +3333,4099,7231,-9,7232,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.63922,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,4,0,360,-6394.645,96346.828,0,0,17448.029,0,1690.4493 +3333,4099,7232,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4660625,7.8933988,0,0,0,-942.31702,0,1,2,2021,7,0,40,38,1,0,0,11.198056,11.198056,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.51,47.91,-9,-9,8.333333333333334,2,3,0,0,8,5,4,0,360,-6394.645,96346.828,0,0,17448.029,0,1690.4493 +3334,4100,7233,7234,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,7.5493436,7.1455469,43,-3,-20.245909,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5786653,7.1064844,59.04,54.12,57.33,53.46,10,1,1,0,0,4,9,3,1,404,1200274,805884.56,240767.16,0,0,0,3601.9736 +3334,4100,7234,7233,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5483775,7.9339914,43,3,-11.674087,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1845222,7.8720522,57.33,53.46,59.04,54.12,10,1,1,0,0,5,9,3,1,404,1200274,805884.56,240767.16,0,0,0,3601.9736 +3335,4101,7235,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.0968041,5.061851,0,0,-897.7359,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4232502,59.9,48.18,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,951,247795.97,-26268.471,0,0,0,0,1155.0464 +3336,4102,7236,7237,-9,-9,1,0,42,1,2,0,1,1,-9,0,3,0,0,0,9,2,117.05004,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,31.41,55.83,6.666666666666667,1,1,0,0,2,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7237,7236,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.8075819,9.631526,0,9,-2,-45.518219,0,2,3,2021,15,4,34,27,1,4,0,57.761921,57.761921,.05,.05,0,0,0,0,0,0,0,0,0,4.6849489,0,31.41,55.83,46.61,56.93,6.666666666666667,1,1,0,0,12,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7238,-9,7236,7237,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-835.95197,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7239,-9,7236,7237,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2927,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3337,4103,7240,-9,7241,7242,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.843,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3337,4103,7241,7242,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,8.8575821,8.8891039,0,19,-1,14.567303,0,3,2,2021,12,0,47,55,1,0,0,17.794294,17.794294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.53,34.03,62.39,56.71,5,2,3,0,0,15,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3337,4103,7242,7241,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.1066647,7.8796725,0,19,1,46.577835,0,3,2,2021,12,0,48,48,1,0,0,7.8372812,7.8372812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.53,34.03,10,2,3,0,0,15,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3338,4104,7243,7244,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.9763007,5.432137,10,3,-30.335215,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,.69663125,0,0,1,1,0,5.4833813,5.4767742,37.75,36.33,49.98,55.33,8.333333333333334,1,1,0,0,5,11,2,1,311.5,386844.5,97898.852,93490.938,0,0,0,2036.5588 +3338,4104,7244,7243,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.284225,7.233717,10,-3,-71.412003,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4697678,7.159265,49.98,55.33,37.75,36.33,8.333333333333334,1,1,0,0,0,11,2,1,311.5,386844.5,97898.852,93490.938,0,0,0,2036.5588 +3339,4105,7245,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.6160455,5.5930529,0,0,-1108.6886,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6212177,52,45,-9,-9,8,1,1,0,0,0,5,2,1,677,41847.121,-70747.711,0,0,0,0,1099.9819 +3340,4106,7246,7247,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8426957,7.7999315,33,-2,83.834335,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3351254,7.7580609,51,48,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,913.5,960686.81,545241.5,348760.5,0,0,0,2731.9346 +3340,4106,7247,7246,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.7749209,5.7330537,32,2,-65.880692,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6603103,57.16,56.15,51,48,0,1,1,0,0,6,9,3,1,913.5,960686.81,545241.5,348760.5,0,0,0,2731.9346 +3341,4107,7248,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.7555151,7.6613684,0,0,-1003.7503,0,2,3,2021,35,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9934516,7.9781203,8.41,50.47,-9,-9,0,1,1,0,0,5,13,3,1,275,96307.344,98765.336,0,0,0,0,588.44501 +3342,4108,7249,7250,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,7.5366187,7.2363062,64,4,-105.08281,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,.75172746,0,0,1,1,0,3.2862422,7.009593,29.61,21.77,47.31,39.47,1.666666666666667,1,1,0,0,0,9,2,0,531,492164.13,28618.246,381768,0,0,0,2234.1501 +3342,4108,7250,7249,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,64,-4,-23.864614,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2648458,0,47.31,39.47,29.61,21.77,6.666666666666667,1,1,0,0,0,9,2,0,531,492164.13,28618.246,381768,0,0,0,2234.1501 +3343,4109,7251,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.5576162,7.5836587,0,0,0,-969.22144,0,2,2,2021,24,12,28,26,1,12,0,7.6316061,7.6316061,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,35.44,35.48,-9,-9,3.333333333333333,1,1,0,1,2,9,3,1,499,545632.69,297119.69,253459.72,0,0,0,1163.3912 +3344,4110,7252,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.5302,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.02,37.37,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,159,102999.78,-2246.5852,0,0,0,112.90469,709.0072 +3344,4111,7253,-9,7252,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1067.0214,0,3,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,38.39,40.89,-9,-9,6.666666666666667,4,5,0,1,0,13,1,0,1766,-63962.523,0,0,0,0,0,890.05573 +3344,4112,7254,-9,7252,-9,1,0,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-941.23572,0,3,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.96,52.29,-9,-9,6.666666666666667,4,5,1,1,0,13,1,0,269,-32367.18,0,0,0,0,0,523.21698 +3345,4113,7255,7256,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.6090369,7.9630027,4.8792052,43,6,19.708454,0,2,2,2021,11,0,25,25,1,0,0,11.484643,11.484643,.05,.05,0,1,0,5.0670023,0,0,1,1,0,5.204711,4.9439025,54.37,54.8,42.46,54.85,8.333333333333334,1,1,0,0,8,8,5,1,1238.5,991553.63,542392.38,421653.63,0,10540.895,0,4204.0049 +3345,4113,7256,7255,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.8370724,8.888916,5.9132247,45,-6,49.989513,0,2,2,2021,13,2,48,48,1,2,0,15.488617,15.488617,.05,.05,0,0,0,0,0,0,1,1,0,0,5.9896088,42.46,54.85,54.37,54.8,5,3,4,0,0,7,8,5,1,1238.5,991553.63,542392.38,421653.63,0,10540.895,0,4204.0049 +3345,4114,7257,-9,7256,7255,1,0,32,0,0,0,1,1,-9,0,1,8.3721008,8.4272318,0,0,0,-945.38568,0,2,2,2021,33,12,37,16,1,12,1,14.712519,14.712519,.05,.05,0,0,0,0,0,0,1,1,0,0,0,18.86,28.18,-9,-9,0,4,2,0,0,1,8,4,1,218,-44488.688,200242.78,0,0,0,0,1371.7273 +3346,4115,7258,-9,7259,7261,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.25049,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7259,7261,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.3233366,7.9840693,0,11,-4,45.299217,0,-9,-9,2021,8,0,42,39,1,0,0,8.5079412,8.5079412,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,38.24,63.73,6.666666666666667,1,1,0,0,12,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7260,-9,7259,7261,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.19031,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7261,7259,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.5763311,8.8523436,0,11,4,-18.042875,0,2,2,2021,6,1,37,40,1,1,0,17.47142,17.47142,.05,.05,0,0,0,0,0,0,1,1,0,7.0950274,0,38.24,63.73,44.19,58.01,8.333333333333334,1,1,0,0,12,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3347,4116,7262,7263,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1267824,8.7922525,0,3,0,196.11496,0,1,2,2021,15,5,38,37,1,5,0,20.141947,20.141947,0,0,0,0,0,0,0,0,0,0,0,0,0,49.39,49.93,42.25,64.48999999999999,8.333333333333334,1,1,0,0,13,11,5,1,837,6287201,3617811.5,448724.63,0,0,0,4781.1846 +3347,4116,7263,7262,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.8477697,8.9310637,0,3,0,58.626682,0,2,2,2021,20,8,35,35,1,8,0,22.964281,22.964281,0,0,0,0,0,0,0,0,0,0,0,0,0,42.25,64.48999999999999,49.39,49.93,5,1,1,0,0,12,11,5,1,837,6287201,3617811.5,448724.63,0,0,0,4781.1846 +3348,4117,7264,-9,-9,-9,1,1,47,0,0,0,1,1,0,0,5,0,0,0,0,0,-993.89966,-9,2,2,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.330142,0,36.1,65.8,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,226,-140649.09,0,0,0,0,0,798.24249 +3349,4118,7265,7266,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,36,4,0,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9374223,0,42.98,43.86,38.69,44.39,8.333333333333334,2,3,0,0,10,2,1,1,1313.5,976566.88,460997.09,228205.64,0,0,0,2027.2737 +3349,4118,7266,7265,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,36,-4,0,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3787084,0,38.69,44.39,42.98,43.86,6.666666666666667,2,3,0,0,2,2,1,1,1313.5,976566.88,460997.09,228205.64,0,0,0,2027.2737 +3350,4119,7267,7268,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.9511242,7.8441811,6,6,-93.995522,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4221201,8.2705402,41.82,56.44,56.5,37.6,8.333333333333334,3,4,0,0,1,6,4,1,237.5,1812968,1441669.5,518448.81,158348.73,1472.8193,0,3964.5835 +3350,4119,7268,7267,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.5950818,7.8728023,6,-6,-17.164246,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.1776876,7.7613621,56.5,37.6,41.82,56.44,6.666666666666667,2,3,0,0,6,6,4,1,237.5,1812968,1441669.5,518448.81,158348.73,1472.8193,0,3964.5835 +3351,4120,7269,7270,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1785679,8.2040329,44,5,29.215229,0,2,2,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2640414,7.8968863,39,31.04,55.73,53.98,5,1,1,0,0,0,5,4,1,425,1847524.6,793705.38,462518.03,0,3797.1699,0,3858.7271 +3351,4120,7270,7269,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.0358419,7.9329395,44,-5,-87.316925,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8675652,55.73,53.98,39,31.04,10,1,1,0,0,7,5,4,1,425,1847524.6,793705.38,462518.03,0,3797.1699,0,3858.7271 +3352,4121,7271,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,4.3375311,3.9990757,0,0,-978.78143,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4355845,48.49,40.21,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,591,-154602.86,-37097.066,0,0,0,0,1292.5492 +3353,4122,7272,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,4,7.8738809,8.1757183,6.1139264,0,0,-954.74683,-9,-9,-9,2021,10,0,39,0,1,0,0,7.6225414,7.6225414,.05,.05,0,0,0,0,0,0,0,0,0,6.2907386,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,3313,-197096.56,-3593.459,0,0,530.02057,3462.2239,921.19598 +3354,4123,7273,7274,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,9.2191601,8.9740648,0,2,-1,31.991774,0,-9,-9,2021,7,0,55,47,1,0,0,20.859856,20.859856,.05,.05,0,0,0,0,0,0,0,0,0,1.0061817,0,31.7,61.03,31.89,58.32,6.666666666666667,1,1,0,0,2,8,5,1,1426.5,337242.5,167028.3,366935.44,296289.56,12971.292,0,7045.2422 +3354,4123,7274,7273,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,9.1639814,9.2892733,0,2,1,-80.823456,0,2,2,2021,16,4,126,40,1,4,0,7.7759538,7.7759538,.05,.05,0,0,0,0,0,0,0,0,0,5.0475602,0,31.89,58.32,31.7,61.03,3.333333333333333,1,1,0,0,8,8,5,1,1426.5,337242.5,167028.3,366935.44,296289.56,12971.292,0,7045.2422 +3355,4124,7275,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.8103,0,2,2,2021,27,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.95,32.43,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,113,45727.617,26860.803,0,0,0,0,1110.2659 +3356,4125,7276,7279,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.9571085,8.7182732,0,23,3,209.21846,0,2,2,2021,9,0,35,35,1,0,0,22.48057,22.48057,.05,.05,0,0,0,0,0,0,1,1,0,4.211781,0,54.2,57.49,44.64,55.04,1.666666666666667,1,1,0,0,9,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7277,-9,7279,7276,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.76776,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7278,-9,7279,7276,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7279,7276,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.9596076,7.5340672,0,23,-3,56.033325,0,3,3,2021,11,2,33,33,1,2,0,9.3474655,9.3474655,0,0,0,0,0,0,0,0,1,1,0,2.3944495,0,44.64,55.04,54.2,57.49,6.666666666666667,1,1,0,0,11,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7280,-9,7279,7276,1,1,17,0,2,1,2,0,0,0,4,0,3.746985,3.5845749,0,0,-994.40192,-9,1,1,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5967386,0,39.39,57.52,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3357,4126,7281,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.7991333,7.8495045,0,0,-943.48236,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4966044,7.6985669,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,886,448454.47,363360.66,125122.02,99425.055,0,0,1470.5958 +3358,4127,7282,7283,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.6214347,7.3437352,0,12,1,-147.51321,0,-9,-9,2021,7,0,30,24,1,0,0,6.8388205,6.8388205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,53.02,53.93,8.333333333333334,1,1,0,0,13,11,4,1,618,398505.94,234347.84,45589.586,0,0,0,2758.1802 +3358,4127,7283,7282,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.240695,7.9719648,0,12,-1,-55.941219,0,3,3,2021,8,0,37,37,1,0,0,10.53926,10.53926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.02,53.93,54.74,57.22,8.333333333333334,1,1,0,0,13,11,4,1,618,398505.94,234347.84,45589.586,0,0,0,2758.1802 +3359,4128,7284,7285,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8843637,7.2944384,41,5,-37.804543,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3807755,7.5077753,50.6,45.8,40.1,54.56,6.666666666666667,1,1,0,0,1,5,3,1,664,748926.13,454112.31,-28507.756,0,0,0,2084.3701 +3359,4128,7285,7284,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.3778148,6.3837123,10,-5,-23.505878,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.2997098,6.4332304,40.1,54.56,50.6,45.8,8.333333333333334,1,1,0,0,0,5,3,1,664,748926.13,454112.31,-28507.756,0,0,0,2084.3701 +3360,4129,7286,-9,7287,7289,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8854,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7287,7289,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,9.1422882,9.3341522,0,9,-1,19.275423,0,3,3,2021,12,2,72,0,1,2,0,17.970118,17.970118,0,0,0,0,0,0,0,0,0,0,0,0,0,45.95,31.45,58.74,48.72,8.333333333333334,2,3,0,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7288,-9,7287,7289,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.06378,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7289,7287,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.4410181,9.1393986,0,9,1,-107.63673,0,1,1,2021,8,0,40,40,1,0,0,31.786194,31.786194,.05,.05,0,0,0,0,0,0,0,0,0,3.5158048,0,58.74,48.72,45.95,31.45,8.333333333333334,2,3,0,0,9,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3361,4130,7290,7291,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.378212,5.9828753,44,-6,-138.81287,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.335104,6.1700902,57.16,56.15,63.41,39.7,8.333333333333334,1,1,0,0,12,6,2,1,339,-13690.271,108172.2,0,0,0,0,2285.4138 +3361,4130,7291,7290,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.6783309,5.4200077,44,6,-63.626701,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6724839,5.237731,63.41,39.7,57.16,56.15,8.333333333333334,1,1,0,0,12,6,2,1,339,-13690.271,108172.2,0,0,0,0,2285.4138 +3362,4131,7292,7293,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9833136,8.9053259,0,10,0,1.9411652,0,-9,-9,2021,11,0,35,40,1,0,0,32.530308,32.530308,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.06,51.94,42.95,61.24,8.333333333333334,1,1,0,0,12,9,5,1,714,973564.56,614314,1135101.6,691743.38,0,0,5632.2964 +3362,4131,7293,7292,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.7701559,8.7856035,0,10,0,93.975876,0,2,1,2021,17,6,52,53,1,6,0,18.318378,18.318378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,43.06,51.94,8.333333333333334,1,1,0,0,10,9,5,1,714,973564.56,614314,1135101.6,691743.38,0,0,5632.2964 +3363,4132,7294,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,6.8970604,6.9876471,0,0,-1053.5359,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3758278,6.7798929,61.27,46.03,-9,-9,10,1,1,0,0,0,13,2,1,3875,242186.75,183443.58,135033.11,0,0,0,1657.4073 +3364,4133,7295,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.21777,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,5,1,1,1089,-24204.27,0,0,0,0,0,1325.4163 +3364,4134,7296,-9,7295,-9,1,0,42,0,0,0,3,3,-9,0,5,7.8785143,8.1218271,0,0,0,-974.1463,0,3,-9,2021,9,1,39,39,1,1,0,9.0526285,9.0526285,0,0,0,0,0,0,0,27,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,1060,42562.602,0,0,0,-244.27022,0,1057.8885 +3365,4135,7297,-9,7299,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.2909,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3365,4135,7298,-9,7299,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1026.2866,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.83,54.24,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3365,4135,7299,-9,-9,-9,1,0,48,0,2,0,2,2,-9,1,1,0,6.5731754,6.089911,0,0,-1014.8298,0,-9,3,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4558463,0,20.99,36.84,-9,-9,1.666666666666667,1,1,0,0,3,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3366,4136,7300,7301,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.1309195,6.8292904,50,-5,-42.577332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,125.24439,129.52211,1072.1028,0,1,1,0,4.3509192,7.147944,25.41,27.62,52.39,45.21,5,1,1,0,0,3,2,3,1,780.5,697586.63,100365.45,583880.13,0,0,0,2975.199 +3366,4136,7301,7300,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.4266658,7.570231,50,5,-16.567108,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.6576965,7.3910327,52.39,45.21,25.41,27.62,5,1,1,0,0,0,2,3,1,780.5,697586.63,100365.45,583880.13,0,0,0,2975.199 +3367,4137,7302,7304,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1901054,8.4574604,0,11,0,-78.957466,0,2,2,2021,7,0,36,33,1,0,0,15.032079,15.032079,.05,.05,0,0,0,0,0,0,1,1,0,1.7647285,0,55.76,52.64,50,57,8.333333333333334,1,1,0,0,9,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3367,4137,7303,-9,7302,7304,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.65833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3367,4137,7304,7302,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.8940153,9.1368446,0,7,0,178.71561,-9,-9,-9,2021,10,0,37,0,1,1,0,19.037811,19.037811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,55.76,52.64,7,1,1,0,0,1,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3368,4138,7305,-9,7308,7306,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.84894,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7306,7308,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.9914513,8.8231373,0,17,-1,-14.887802,0,2,2,2021,11,1,41,40,1,1,0,20.39501,20.39501,.05,.05,0,0,0,0,0,0,0,0,0,7.0139766,0,59.7,53.75,58.5,44.67,8.333333333333334,1,1,0,0,11,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7307,-9,7308,7306,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.63452,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7308,7306,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,2.7429254,3.0669324,0,20,1,-59.053474,0,3,3,2021,10,1,42,40,1,1,0,.047413316,.047413316,0,0,0,0,0,0,0,0,0,0,0,1.2536718,0,58.5,44.67,59.7,53.75,8.333333333333334,1,1,0,0,11,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3369,4139,7309,7310,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.5844607,7.7187524,39,0,37.980629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.472513,7.2384052,49.81,39.18,52.22,46,8.333333333333334,1,1,0,0,0,9,4,1,1494,1421196.8,353682.5,602858.38,0,0,0,3431.3022 +3369,4139,7310,7309,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,7.6868382,7.5743303,39,9,-40.279774,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.539825,7.7337489,52.22,46,49.81,39.18,10,1,1,0,0,0,9,4,1,1494,1421196.8,353682.5,602858.38,0,0,0,3431.3022 +3370,4140,7311,7312,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,0,0,0,15,-3,5.9738703,0,-9,-9,2021,21,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,56.44,39.96,57.17,6.666666666666667,1,1,0,0,6,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3370,4140,7312,7311,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,9.4643679,9.6637115,0,16,3,22.622784,0,2,2,2021,14,2,35,24,1,2,0,43.018459,43.018459,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.96,57.17,36.07,56.44,8.333333333333334,1,1,0,0,11,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3370,4140,7313,-9,7311,7312,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.49359,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3371,4141,7314,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.0307522,5.1302347,0,0,-1013.0404,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9550998,5.1946344,58.23,19.5,-9,-9,10,1,1,0,0,0,7,2,0,295,522482.31,82923.797,242662.75,0,0,0,1440.7888 +3372,4142,7315,7316,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.8915625,6.1411743,43,2,-95.011795,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4117312,5.8810005,35.93,49.57,49.43,44.66,3.333333333333333,1,1,0,0,0,9,5,1,768,3067307,1245726.5,425364.56,0,0,0,6332.4668 +3372,4142,7316,7315,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.9566278,8.8344793,43,-2,52.569809,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.1229377,9.1341677,49.43,44.66,35.93,49.57,3.333333333333333,1,1,0,0,0,9,5,1,768,3067307,1245726.5,425364.56,0,0,0,6332.4668 +3373,4143,7317,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1000.1569,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.3296181,0,38.99,43.23,-9,-9,5,1,1,0,0,0,10,1,0,957,31157.135,0,0,0,0,0,674.60712 +3374,4144,7318,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,8.1858053,7.9333701,0,0,0,-865.21521,0,-9,-9,2021,10,1,37,37,1,1,0,7.7257471,7.7257471,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,25.77,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,839,138359.47,0,0,0,0,0,773.82166 +3375,4145,7319,-9,-9,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-986.14496,-9,1,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,6.666666666666667,1,1,0,0,1,7,1,1,290,0,0,0,0,0,0,-87.101204 +3376,4146,7320,7321,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.7977004,7.6571741,0,12,0,55.307049,0,3,3,2021,14,3,23,45,1,3,0,10.520644,10.520644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.35,49.83,39.5,58.86,6.666666666666667,1,1,0,0,12,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3376,4146,7321,7320,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5985651,8.7613516,0,12,0,48.49176,0,-9,-9,2021,14,2,42,37,1,2,0,18.378862,18.378862,.05,.05,0,0,0,0,0,2,1,1,0,8.6851091,0,39.5,58.86,38.35,49.83,8.333333333333334,1,1,0,0,13,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3376,4146,7322,-9,7320,7321,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.45221,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3377,4147,7323,7324,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.8253384,6.7256732,9,-6,-59.846436,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1739721,55.62,43.18,55.36,54.24,8.333333333333334,1,1,0,0,0,9,2,1,423,720673.13,66687.617,507630.63,0,0,0,2025.4458 +3377,4147,7324,7323,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,9,6,-162.15582,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,55.62,43.18,10,1,1,0,0,0,9,2,1,423,720673.13,66687.617,507630.63,0,0,0,2025.4458 +3378,4148,7325,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,5.4527025,5.7242942,0,0,-894.94965,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8251634,5.5632768,58.65,41.84,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,1297,1051317.9,396834.72,541332.75,0,0,0,1660.1189 +3379,4149,7326,-9,7327,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.52045,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3379,4149,7327,-9,-9,-9,1,0,31,0,2,0,1,1,-9,0,4,8.1250715,8.3583469,6.3535852,0,0,-978.06757,-9,3,3,2021,18,7,24,0,1,7,0,14.705477,14.705477,.05,.05,0,0,0,0,0,0,1,1,0,6.4403229,0,40.52,58.36,-9,-9,5,1,1,0,0,8,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3379,4149,7328,-9,7327,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.3514,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3380,4150,7329,7330,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.2542367,3.892164,52,-1,39.527237,0,-9,-9,2021,12,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4516363,3.8114679,57.24,46.7,62.49,55.09,10,1,1,0,0,11,9,2,1,506.5,379538.94,64072.547,268471.25,0,0,0,749.56506 +3380,4150,7330,7329,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.353334,6.4118953,52,1,-3.7586904,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6275315,6.5261879,62.49,55.09,57.24,46.7,10,1,1,0,0,10,9,2,1,506.5,379538.94,64072.547,268471.25,0,0,0,749.56506 +3380,4151,7331,-9,7329,7330,1,1,45,0,0,0,3,3,-9,0,4,7.897718,7.6918764,0,0,0,-959.86401,-9,3,2,2021,9,0,40,0,1,1,0,8.0299807,8.0299807,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,9,4,1,71,-73023.898,10382.664,0,0,0,0,1296.3079 +3381,4152,7332,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.5486465,7.3324823,0,0,0,-880.55017,0,1,1,2021,6,0,16,6,1,0,0,14.757867,14.757867,0,0,0,0,0,0,0,0,1,1,0,8.0315809,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,422,-47209.934,0,0,0,0,0,2649.3953 +3382,4153,7333,7335,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.5996704,7.4178157,0,9,0,38.563816,0,-9,-9,2021,15,4,22,23,1,4,0,8.6143484,8.6143484,0,0,0,0,0,0,0,2,1,1,0,0,0,37.36,58.26,52.41,42.18,5,1,1,0,0,10,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7334,-9,7333,7335,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.63947,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7335,7333,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.1491194,7.9794397,0,9,9,-8.6615677,0,-9,-9,2021,6,0,37,38,1,0,0,12.572631,12.572631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.41,42.18,37.36,58.26,5,1,1,0,1,11,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7336,-9,7333,7335,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1034.9341,-9,2,3,2021,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3748175,0,30.72,59.29,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3383,4154,7337,-9,7338,7339,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.567,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7338,7339,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,6.3778229,6.890347,0,24,0,61.267872,0,2,2,2021,12,0,22,13,1,0,0,3.6051269,3.6051269,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,39.32,46.01,8.333333333333334,1,1,0,0,5,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7339,7338,-9,-9,1,1,54,0,2,0,3,3,-9,0,2,7.7394085,7.4694738,0,24,9,-3.276443,0,2,-9,2021,12,0,42,42,1,0,0,5.8651571,5.8651571,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,46.01,52.48,54.33,5,1,1,0,0,8,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7340,-9,7338,7339,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.5183,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3384,4155,7341,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.0994864,8.0037003,0,0,0,-983.70337,0,-9,-9,2021,9,0,42,37,1,0,0,6.7870517,6.7870517,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,1711,76707.492,110619.65,0,0,0,0,917.11481 +3385,4156,7342,7343,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.4247437,8.5122108,0,12,13,81.818611,0,2,-9,2021,7,1,1,1,1,1,0,640.74542,640.74542,0,0,0,0,0,0,0,0,0,0,0,4.1520114,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,1101.5,5085178.5,3251877.5,734400.69,0,0,0,5453.5835 +3385,4156,7343,7342,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.2073545,8.0629997,5.0550785,12,-13,-31.02566,0,1,1,2021,7,0,35,35,1,0,0,11.93115,11.93115,0,0,0,0,0,0,0,0,0,0,0,7.0641322,0,57.16,56.15,58.05,54.52,10,1,1,0,0,14,9,5,1,1101.5,5085178.5,3251877.5,734400.69,0,0,0,5453.5835 +3386,4157,7344,-9,7345,7346,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.53339,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3386,4157,7345,7346,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.4543419,8.5245466,0,10,-7,-55.41003,0,2,2,2021,19,7,30,30,1,7,0,16.860573,16.860573,0,0,0,0,0,0,0,0,1,1,0,0,0,25.92,69.01000000000001,44.55,54.01,6.666666666666667,1,1,0,0,8,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3386,4157,7346,7345,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.4917698,8.3046017,0,10,7,19.306946,0,2,1,2021,11,1,49,43,1,1,0,10.701817,10.701817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.55,54.01,25.92,69.01000000000001,1.666666666666667,1,1,0,0,10,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3387,4158,7347,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.5696449,8.9196615,0,15,-3,128.05042,0,2,1,2021,10,0,45,-9,1,0,0,15.718749,15.718749,0,0,0,0,0,0,0,0,0,0,0,2.4500659,0,45.81,61.51,53.98,50.87,8.333333333333334,1,1,0,0,4,8,5,1,485,-53500.945,0,0,0,0,0,2618.3638 +3387,4159,7348,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.559164,9.4341555,0,3,3,6.5380683,0,-9,-9,2021,14,3,50,60,1,3,0,18.292006,18.292006,.05,.05,0,0,0,0,0,0,0,0,0,4.6679034,0,53.98,50.87,45.81,61.51,3.333333333333333,1,1,0,0,4,8,5,1,1075,216418.27,144593.98,371862.47,190347.41,9004.2139,0,3734.5576 +3388,4160,7349,7350,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5491581,8.4429979,0,2,-14,12.53335,0,-9,-9,2021,9,0,40,38,1,0,0,15.666713,15.666713,.05,.05,0,0,0,0,0,0,0,0,0,3.4833932,0,57.16,56.15,59.29,49.68,6.666666666666667,1,1,0,0,3,13,5,1,196,172015.56,272227.97,150952.36,60530.977,55027.922,0,3476.2813 +3388,4160,7350,7349,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.5236158,8.5273924,0,2,14,-85.618546,0,3,3,2021,7,0,45,43,1,0,0,10.022764,10.022764,.05,.05,0,0,0,0,0,2,0,0,0,0,0,59.29,49.68,57.16,56.15,6.666666666666667,1,1,0,0,13,13,5,1,196,172015.56,272227.97,150952.36,60530.977,55027.922,0,3476.2813 +3389,4161,7351,7352,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.5398464,7.1284723,6,-1,76.964157,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8030195,7.0595918,56.31,38.83,62.49,55.09,10,1,1,0,0,0,12,3,1,1309.5,605887.5,294288.69,226949.78,0,0,0,3054.4331 +3389,4161,7352,7351,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.4653025,6.7242551,6,1,57.095779,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.985116,6.4963703,62.49,55.09,56.31,38.83,10,1,1,0,0,6,12,3,1,1309.5,605887.5,294288.69,226949.78,0,0,0,3054.4331 +3390,4162,7353,7354,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,9.2603674,9.1193905,0,40,3,111.9071,0,3,3,2021,7,0,40,55,1,0,0,20.18387,20.18387,.05,.05,0,0,0,0,0,0,0,0,0,3.3222146,0,61.1,41.19,45.85,61.26,8.333333333333334,1,1,0,0,10,10,5,1,1102,829276,324767.34,349401.88,0,0,0,3430.1897 +3390,4162,7354,7353,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,40,-3,-17.604826,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.6801596,0,45.85,61.26,61.1,41.19,6.666666666666667,1,1,1,0,8,10,5,1,1102,829276,324767.34,349401.88,0,0,0,3430.1897 +3391,4163,7355,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,7.332283,7.251215,5.8722615,0,0,-1092.3273,0,2,3,2021,6,0,7,7,1,0,0,24.14669,24.14669,0,0,0,0,0,0,0,0,1,1,0,0,6.1664691,59.68,56.78,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,897,475863.53,0,469147.44,45337.672,5299.4351,0,2151.9143 +3392,4164,7356,7357,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2699499,8.640831,0,8,3,58.68121,0,2,2,2021,12,0,48,46,1,0,0,8.508729,8.508729,0,0,.05,0,0,0,0,0,0,0,0,7.2126446,0,46.93,51.35,50.77,46.67,6.666666666666667,1,1,0,0,9,9,5,1,541,516715.47,145679.81,387251.38,74048.5,0,0,3713.8738 +3392,4164,7357,7356,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.7208834,8.6459303,0,8,-3,80.21859,0,2,2,2021,16,6,37,36,1,6,0,20.053291,20.053291,0,0,0,0,0,0,0,0,0,0,0,3.4365027,0,50.77,46.67,46.93,51.35,6.666666666666667,1,1,0,0,9,9,5,1,541,516715.47,145679.81,387251.38,74048.5,0,0,3713.8738 +3393,4165,7358,7359,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,4.9274507,4.8291597,11,21,-158.80412,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8077064,4.8366709,66.37,38.36,52,55,5,2,3,0,0,3,7,4,1,543.5,740735.06,323458.63,144563.55,0,0,0,3608.6025 +3393,4165,7359,7358,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.6244926,8.5409813,0,11,-21,93.305893,0,3,3,2021,9,0,40,0,1,1,0,19.258884,19.258884,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,55,66.37,38.36,8,2,3,0,0,1,7,4,1,543.5,740735.06,323458.63,144563.55,0,0,0,3608.6025 +3394,4166,7360,7362,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1439381,8.0440912,0,28,0,58.972881,0,2,3,2021,12,0,34,33,1,0,0,10.365561,10.365561,0,0,0,0,0,0,0,0,1,1,0,3.4650388,0,46.59,56.95,54.79,55.86,6.666666666666667,1,1,0,0,9,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4166,7361,-9,7360,7362,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.92444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4166,7362,7360,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.4134407,8.4766693,0,27,0,32.294083,0,2,2,2021,9,0,47,43,1,0,0,9.9557428,9.9557428,.05,.05,0,0,0,0,0,0,1,1,0,3.8027301,0,54.79,55.86,46.59,56.95,8.333333333333334,1,1,0,0,7,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4167,7363,-9,7360,7362,1,0,20,0,1,0,2,2,-9,0,3,7.9173846,7.59582,0,0,0,-1071.64,0,2,2,2021,18,5,44,40,1,5,1,6.4480577,6.4480577,0,0,0,0,0,0,0,0,1,1,0,.67495376,0,37.44,59.97,-9,-9,1.666666666666667,1,1,0,0,4,5,3,1,3770,-191485.75,0,0,0,0,0,717.89258 +3395,4168,7364,7365,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.4186521,6.0136094,6,-2,-49.788837,0,2,2,2021,6,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8311229,59.43,58.05,42.86,48.04,10,1,1,0,0,6,11,4,1,457.5,1946202.1,1335833.3,137247.58,0,0,0,2224.3315 +3395,4168,7365,7364,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.3981543,8.4939537,6,2,-47.887177,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3432617,8.278285,42.86,48.04,59.43,58.05,8.333333333333334,1,1,0,0,2,11,4,1,457.5,1946202.1,1335833.3,137247.58,0,0,0,2224.3315 +3396,4169,7366,-9,7368,7367,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1094.8458,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7367,7368,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.2927427,8.1551657,0,6,1,53.031952,0,3,2,2021,8,0,39,39,1,0,0,10.055821,10.055821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,57.73,54.53,8.333333333333334,1,1,0,0,9,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7368,7367,-9,-9,1,0,46,0,1,0,2,2,-9,1,4,7.1815619,7.2053657,0,6,-1,-20.033155,0,3,2,2021,6,0,25,25,1,0,0,7.7915349,7.7915349,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,52.99,51.28,8.333333333333334,1,1,0,0,9,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7369,-9,7368,7367,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1021.7278,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3397,4170,7370,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.3581944,5.0570135,0,0,-1076.8215,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0982203,5.2461581,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,3718,71604.328,0,0,0,0,0,519.30707 +3398,4171,7371,7372,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,39,0,11.320313,0,3,3,2021,16,6,0,35,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,32.15,53.42,52.83,49.11,3.333333333333333,1,1,0,1,9,8,4,1,1135,442870.03,397585.31,169918.41,0,0,0,2045.4814 +3398,4171,7372,7371,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6134825,8.6266842,0,39,0,38.079643,0,3,2,2021,6,0,40,36,1,0,0,15.269738,15.269738,0,0,0,0,0,0,0,7,1,1,0,0,0,52.83,49.11,32.15,53.42,10,1,1,0,0,8,8,4,1,1135,442870.03,397585.31,169918.41,0,0,0,2045.4814 +3398,4172,7373,-9,7371,7372,1,0,29,0,0,0,2,2,-9,0,1,7.4079876,7.2552075,0,0,0,-1023.9582,0,2,2,2021,7,0,31,0,1,0,1,5.2597866,5.2597866,0,0,0,0,0,0,0,7,1,1,0,0,0,60.12,22.99,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,811,-81070.992,0,0,0,0,0,-459.63339 +3398,4173,7374,-9,7371,7372,1,1,37,0,0,0,2,2,-9,0,1,8.9163656,8.3791132,0,0,0,-917.82587,0,2,2,2021,10,0,65,48,1,0,1,10.014733,10.014733,.05,.05,0,0,0,0,0,7,1,1,0,5.3398004,0,53.15,40.89,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,753,188601.47,88691.961,0,0,0,0,2252.8853 +3399,4174,7375,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.2860765,9.712779,8.1257658,0,0,-893.37689,0,2,2,2021,5,1,48,47,1,1,0,26.045557,26.045557,.05,.05,0,0,0,0,0,0,0,0,0,0,8.3983784,60.13,49.27,-9,-9,10,1,1,0,0,12,10,5,1,1175,319691.97,143766.44,0,0,13303.506,5260.7021,4476.9517 +3400,4175,7376,-9,7377,7379,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1128.3068,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7377,7379,-9,-9,1,0,45,0,4,0,1,1,-9,0,5,8.7647133,8.9107628,0,8,0,137.54117,0,2,3,2021,13,4,37,47,1,4,0,19.800951,19.800951,.05,.05,0,0,0,0,0,0,1,1,0,3.9029446,0,51.67,60.18,48.62,49.45,6.666666666666667,1,1,0,0,8,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7378,-9,7377,7379,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.7781,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7379,7377,-9,-9,1,1,45,0,4,0,2,2,-9,0,3,8.2483816,8.6697922,0,8,0,-115.22433,0,2,3,2021,17,5,45,46,1,5,0,11.425737,11.425737,.05,.05,0,0,0,0,0,0,1,1,0,2.0687408,0,48.62,49.45,51.67,60.18,8.333333333333334,1,1,0,0,8,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7380,-9,7377,7379,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-999.27411,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7381,-9,7377,7379,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.7785,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3401,4176,7382,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.9375134,9.092638,0,0,0,-1009.5219,0,2,2,2021,7,0,77,37,1,0,0,10.742228,10.742228,.05,.05,0,0,0,0,0,0,1,1,0,7.7473822,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,10,12,5,1,709,230092.66,195291.66,75366.086,57598.309,0,27113.848,3379.3916 +3402,4177,7383,7384,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,23,17,-30.945871,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.672678,0,0,1,1,0,0,0,43.43,44.84,60.86,50.49,8.333333333333334,1,1,0,0,0,10,2,0,373,245453.81,242051.38,0,0,0,0,1905.5594 +3402,4177,7384,7383,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.8951597,6.859355,0,7,-17,-108.80815,0,-9,-9,2021,9,0,16,16,1,0,0,6.4326925,6.4326925,0,0,0,0,0,0,0,0,1,1,0,0,0,60.86,50.49,43.43,44.84,10,1,1,0,0,10,10,2,0,373,245453.81,242051.38,0,0,0,0,1905.5594 +3403,4178,7385,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8848743,9.1814022,0,0,0,-1067.5374,0,2,2,2021,12,0,39,39,1,0,0,24.583805,24.583805,.05,.05,.05,0,0,0,0,2,0,0,0,5.4608388,0,60.57,46.44,-9,-9,10,1,1,0,0,13,5,5,1,405,173814.59,46345.254,180299.23,91368.281,0,3693.5769,2591.5305 +3403,4179,7386,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.3009634,8.5404673,0,0,0,-974.20776,0,3,3,2021,12,3,42,40,1,3,0,11.894112,11.894112,.05,.05,0,0,0,0,0,2,0,0,0,4.9168959,0,33.04,66.23999999999999,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,77,298808.69,251309.92,288823.16,0,0,1534.387,1500.8173 +3404,4180,7387,7388,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.1416459,7.1995797,35,0,-59.900242,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2615047,61.43,43.34,57.06,57.76,8.333333333333334,1,1,0,0,5,7,3,1,560,1177068.5,97537.164,652761.13,0,0,0,1625.7319 +3404,4180,7388,7387,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,6.9268165,8.2586279,7.2944827,35,9,-26.973227,0,-9,-9,2021,8,0,12,15,1,0,0,8.5063715,8.5063715,.05,.05,0,0,0,0,0,14.5,0,0,0,3.4355607,7.5024357,57.06,57.76,61.43,43.34,8.333333333333334,1,1,0,0,9,7,3,1,560,1177068.5,97537.164,652761.13,0,0,0,1625.7319 +3405,4181,7389,7390,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.0842028,7.0120211,41,8,-7.6906056,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9002008,53,47,50,47,7,2,3,0,0,4,6,2,1,320.5,91791.984,-12065.873,113934.3,0,-279.8342,0,1450.062 +3405,4181,7390,7389,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,41,-8,-98.468903,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,2,3,0,0,0,6,2,1,320.5,91791.984,-12065.873,113934.3,0,-279.8342,0,1450.062 +3406,4182,7391,7392,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.5311418,5.6163988,43,-4,71.204605,0,3,3,2021,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.322819,5.8289857,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,2,1,684.5,180594.16,13692.664,0,0,0,0,493.57245 +3406,4182,7392,7391,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,40,4,-123.70285,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,8,10,2,1,684.5,180594.16,13692.664,0,0,0,0,493.57245 +3407,4183,7393,7394,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.7163987,7.7098055,9,-1,-2.7792141,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7939224,7.5465779,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,375.5,987104.63,915723.88,0,0,560.80872,0,3010.3589 +3407,4183,7394,7393,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0956659,8.2209101,0,9,1,44.711121,0,-9,-9,2021,12,0,37,37,1,0,0,11.594303,11.594303,0,0,0,0,0,0,0,0,0,0,0,7.4552684,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,375.5,987104.63,915723.88,0,0,560.80872,0,3010.3589 +3408,4184,7395,-9,7398,7399,1,0,11,2,4,1,3,0,-9,0,4,0,0,0,0,0,-971.61108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7396,-9,7398,7399,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-902.24878,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7397,-9,7398,7399,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-966.82214,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7398,7399,-9,-9,1,0,29,2,4,0,2,2,-9,0,3,0,0,0,7,1,-14.2688,0,2,2,2021,8,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.58,54.26,42.05,58.8,8.333333333333334,1,1,0,0,5,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7399,7398,-9,-9,1,1,28,2,4,0,2,2,-9,0,4,7.9174929,7.9660358,0,7,-1,145.98755,0,2,2,2021,11,1,70,40,1,1,0,4.7925935,4.7925935,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,49.58,54.26,5,1,1,0,0,9,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7400,-9,7398,7399,1,1,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-945.51367,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3409,4185,7401,-9,7403,7402,1,0,68,0,0,0,3,3,-9,0,2,0,8.2430429,8.3078985,0,0,-981.39954,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,8.0896816,33.76,33.31,-9,-9,5,1,1,0,0,0,8,4,1,807,1789526,1310992.8,428356.66,0,0,0,1750.7031 +3409,4186,7402,7403,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.5300937,7.0063052,8,-1,15.963381,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8201425,6.7025952,55,45,53,44,8,1,1,0,0,0,8,2,1,970,935544,-22649.012,448550.97,0,0,0,1247.6755 +3409,4186,7403,7402,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,8,1,-42.560486,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,970,935544,-22649.012,448550.97,0,0,0,1247.6755 +3410,4187,7404,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,7.0672359,6.664103,0,0,-973.87482,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.607708,37.49,23.33,-9,-9,1.666666666666667,1,1,0,0,3,6,2,1,759,85482.063,0,62546.598,0,4728.9707,0,1967.2656 +3411,4188,7405,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1077.4427,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,8.333333333333334,1,1,0,0,8,1,1,1,809,422971.63,0,226513.77,0,0,0,929.27594 +3412,4189,7406,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.0306396,6.0352883,0,0,-857.41809,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5024471,5.9017372,60.81,43.46,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,669,365515.41,108703.99,252657.14,0,0,0,346.93015 +3413,4190,7407,7408,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,26,3,0,0,-9,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,36.72,31.87,55.25,3.333333333333333,1,1,0,0,0,7,1,0,1366,48561.801,0,0,0,0,0,1908.929 +3413,4190,7408,7407,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,26,-3,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.87,55.25,26.95,36.72,5,1,1,0,0,0,7,1,0,1366,48561.801,0,0,0,0,0,1908.929 +3413,4191,7409,-9,7408,7407,1,0,21,0,0,0,2,2,-9,0,5,7.3857517,7.9449272,0,0,0,-1046.0363,0,2,2,2021,6,0,43,40,1,0,1,5.7009559,5.7009559,0,0,0,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,7,3,0,1165,-22245.832,-56874.094,0,0,6294.8921,0,1172.1232 +3414,4192,7410,7411,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.183372,6.8335915,20,8,1.6130104,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2909079,6.677299,54.79,55.86,58.55,46.11,10,1,1,0,0,0,12,3,1,352.5,1267784.3,802937.25,138784.81,0,0,0,3855.8467 +3414,4192,7411,7410,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.2393465,8.115263,20,-8,-61.299812,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7490497,7.8647876,58.55,46.11,54.79,55.86,10,1,1,0,0,8,12,3,1,352.5,1267784.3,802937.25,138784.81,0,0,0,3855.8467 +3415,4193,7412,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.8414531,6.6403503,0,0,-1114.2792,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8143077,59.86,48.06,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,454,347877.19,-63268.605,91341.055,0,0,0,1029.9049 +3416,4194,7413,7414,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,5,4,0,0,-9,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,20.22,34.54,34.27,5,1,1,0,0,0,12,1,0,522,189175.31,0,0,0,0,0,2669.0862 +3416,4194,7414,7413,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,0,0,0,5,-4,0,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,34.54,34.27,24.39,20.22,3.333333333333333,1,1,1,0,2,12,1,0,522,189175.31,0,0,0,0,0,2669.0862 +3417,4195,7415,-9,7417,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.1676,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3417,4195,7416,-9,7417,-9,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.8311,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3417,4195,7417,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.6449242,7.7898564,6.0933371,0,0,-1132.8655,0,3,3,2021,10,0,24,36,1,0,0,8.3151045,8.3151045,.05,.05,0,0,0,0,0,0,1,1,0,6.0880837,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3418,4196,7418,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,3.7881901,3.8602705,0,0,-973.49316,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,25.456522,20.67555,237.93669,0,1,1,0,0,4.0697727,44.44,25.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1392,314779.63,31318.4,328463.59,0,0,0,692.34155 +3419,4197,7419,7421,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.8075151,8.3152199,0,1,1,10.840693,-9,-9,-9,2021,12,2,65,0,1,2,0,9.0758257,9.0758257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.92,45.17,58.92,48.59,6.666666666666667,2,3,0,0,10,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3419,4197,7420,-9,7421,7419,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.55219,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3419,4197,7421,7419,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,1,-1,-105.12689,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.98907864,0,58.92,48.59,54.92,45.17,10,2,3,0,0,0,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3420,4198,7422,-9,7423,7424,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2774,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7423,7424,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,12,-2,86.751976,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7552772,0,57.06,57.76,48.17,49.37,8.333333333333334,1,1,0,0,2,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7424,7423,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,5.7291903,5.6515594,0,12,2,73.22821,0,2,2,2021,7,0,50,45,1,0,0,.89959747,.89959747,.05,.05,0,0,0,0,0,0,0,0,0,5.0942163,0,48.17,49.37,57.06,57.76,8.333333333333334,1,1,0,0,9,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7425,-9,7423,7424,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.10187,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3421,4199,7426,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1070.5072,0,2,2,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.83,19.91,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,1763,-4479.644,0,0,0,0,0,1093.5665 +3422,4200,7427,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,5.5068436,5.6188002,0,0,0,-1119.8885,0,2,2,2021,28,10,70,70,1,10,0,.50623041,.50623041,0,0,0,0,0,0,0,0,0,0,0,1.775093,0,17.19,54.62,-9,-9,1.666666666666667,1,1,0,0,8,11,2,1,114,252179.31,73181.742,0,0,0,0,271.2876 +3423,4201,7428,7429,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8692122,8.6011572,7.6994452,7,-2,-15.457257,0,2,3,2021,6,0,40,24,1,0,0,7.5755534,7.5755534,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7722468,56.77,52.22,48.93,50.55,1.666666666666667,1,1,0,0,7,12,5,1,871.5,822956.63,767710.88,165261.91,86430.461,0,4916.6387,3089.0659 +3423,4201,7429,7428,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4680367,8.2371769,0,7,2,52.736561,0,3,3,2021,10,0,39,39,1,0,0,10.945518,10.945518,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.93,50.55,56.77,52.22,6.666666666666667,1,1,0,0,8,12,5,1,871.5,822956.63,767710.88,165261.91,86430.461,0,4916.6387,3089.0659 +3424,4202,7430,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,9.0736971,9.218112,0,0,0,-1074.499,0,2,2,2021,15,3,60,60,1,3,0,21.242477,21.242477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.64,55.03,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,3567,138358.81,-2906.3804,91531.453,102440.14,14004.344,10625.463,4035.6528 +3425,4203,7431,-9,7435,7432,1,1,10,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1048.8824,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7432,7435,-9,-9,1,1,46,1,6,0,1,1,-9,0,4,8.4731283,8.5750723,0,14,12,15.682818,0,2,3,2021,10,0,37,29,1,0,0,15.830559,15.830559,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,2,3,0,0,12,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7433,-9,7435,7432,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-910.56873,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7434,-9,7435,7432,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1119.601,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7435,7432,-9,-9,1,0,34,1,6,0,2,2,-9,0,5,0,0,0,11,-12,150.59801,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.16,56.15,8.333333333333334,2,3,0,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7436,-9,7435,7432,1,1,15,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1101.4806,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7437,-9,7435,7432,1,0,7,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1014.9232,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7438,-9,7435,7432,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1127.8501,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3426,4204,7439,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1137.4769,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.92693704,0,65.63,42.66,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1055,-38941.543,0,0,0,0,0,212.03929 +3427,4205,7440,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,9.1183624,8.9648056,0,0,0,-1056.6981,0,1,-9,2021,8,1,45,65,1,1,0,24.567404,24.567404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,2402,-136426.94,60218.473,0,0,1422.3522,1743.5457,3166.8533 +3427,4205,7441,-9,7440,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1172.193,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,2402,-136426.94,60218.473,0,0,1422.3522,1743.5457,3166.8533 +3428,4206,7442,7443,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,53,3,-47.896149,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1319041,0,61.68,47.24,60.6,49.26,8.333333333333334,1,1,0,0,8,2,2,1,646,130307.06,96290.953,180084.75,0,0,0,776.64478 +3428,4206,7443,7442,-9,-9,1,0,74,0,0,0,1,1,-9,0,5,0,6.3271651,6.2390056,51,-3,-46.617577,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4512234,5.9415545,60.6,49.26,61.68,47.24,10,1,1,0,0,6,2,2,1,646,130307.06,96290.953,180084.75,0,0,0,776.64478 +3429,4207,7444,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,2,0,.40548629,.53698307,0,0,-941.81488,-9,3,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.30649137,35.24,32.87,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,196,153598.36,39835.316,57104.09,-17978.121,0,0,779.8996 +3430,4208,7445,7446,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.790637,5.1063066,12,6,-37.693684,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7814617,5.1440639,60.12,54.8,51.83,57.2,8.333333333333334,1,1,0,0,3,5,2,1,635.5,86667.32,128918.72,0,0,230.10414,4374.3145,1744.2957 +3430,4208,7446,7445,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3636837,5.9629011,12,-6,-62.939281,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5548615,6.1814899,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,10,5,2,1,635.5,86667.32,128918.72,0,0,230.10414,4374.3145,1744.2957 +3431,4209,7447,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.1933985,8.3428106,0,0,0,-1077.8984,0,2,2,2021,19,7,37,41,1,7,0,14.209763,14.209763,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,8,6,4,1,1300,1113665.4,603809.38,212709.86,0,2911.324,0,1673.7035 +3432,4210,7448,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.44794,0,3,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.14,45.25,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,425,63730.078,21182.117,48778.676,0,0,0,1170.0729 +3433,4211,7449,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7895741,7.7860889,0,0,0,-1054.7729,0,3,-9,2021,10,0,30,60,1,0,0,10.819373,10.819373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,348,165498.2,127318.9,0,0,3845.0784,0,1414.9712 +3434,4212,7450,7451,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3201475,8.3437424,0,6,-3,-39.241135,0,3,-9,2021,19,7,42,47,1,7,0,11.941341,11.941341,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,56.15,55.79,31.3,1.666666666666667,1,1,0,0,9,10,4,1,1521,447157.13,0,626103.88,171517.47,2844.0271,0,2727.7388 +3434,4212,7451,7450,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.021903,6.7578955,0,16,3,48.697903,0,-9,2,2021,11,1,14,0,1,1,0,8.006135,8.006135,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,31.3,39.89,56.15,5,1,1,0,1,2,10,4,1,1521,447157.13,0,626103.88,171517.47,2844.0271,0,2727.7388 +3434,4213,7452,-9,7451,7450,1,1,24,0,0,0,2,2,-9,0,4,7.818058,7.4500294,0,0,0,-932.35657,0,2,2,2021,10,0,26,36,1,1,1,7.9483333,7.9483333,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,3,1,454,-57178.23,0,0,0,0,0,1141.1735 +3434,4214,7453,-9,7451,7450,1,1,19,0,0,0,2,2,1,0,3,7.5545373,7.8488126,0,0,0,-904.13049,-9,2,2,2021,12,0,45,0,1,2,1,4.9749904,4.9749904,0,0,0,0,0,0,0,0,1,1,0,0,0,48.72,34.08,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,81,-96972.445,0,0,0,-499.20792,0,920.12976 +3435,4215,7454,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.2676048,8.8819275,0,0,0,-990.0816,0,1,1,2021,9,0,45,45,1,0,0,18.672455,18.672455,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.44,43.52,-9,-9,5,1,1,0,0,12,7,5,1,312,736242.06,258023.92,876799.75,429732.66,26956.686,0,3260.2292 +3436,4216,7455,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,8.1516829,8.1515646,0,0,-1034.3728,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1424103,51.51,43.95,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1153,1283114,223534.92,889364.31,0,0,0,2255.1396 +3436,4217,7456,-9,7455,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7631512,8.7666845,8.0351095,0,0,-952.62396,0,2,1,2021,7,0,55,54,1,0,0,11.65493,11.65493,0,0,0,0,0,0,0,0,1,1,0,0,8.2256107,61.43,43.34,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,819,-59776.102,0,0,0,0,0,3197.2041 +3437,4218,7457,7458,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.2889376,8.4670439,0,1,2,78.925583,0,2,2,2021,8,0,40,40,1,0,0,14.588801,14.588801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,10,1,5,1,833.5,288188.44,83571.109,206129.8,153551.25,-518.6322,658.40405,4803.9731 +3437,4218,7458,7457,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7480125,8.9196625,0,1,-2,53.777573,-9,-9,-9,2021,7,0,38,0,1,0,0,17.007715,17.007715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,10,1,1,0,0,3,1,5,1,833.5,288188.44,83571.109,206129.8,153551.25,-518.6322,658.40405,4803.9731 +3438,4219,7459,7461,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,0,0,0,7,0,-69.448265,0,3,2,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,47,51,56,10,2,3,0,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7460,-9,7459,7461,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.30334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7461,7459,7463,-9,1,1,42,1,2,0,2,2,-9,0,4,9.4604397,9.4786987,0,7,9,54.662247,0,3,3,2021,9,0,40,20,1,1,0,42.164738,42.164738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.22,47,8,2,3,0,0,10,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7462,-9,7459,7461,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.61957,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4220,7463,-9,-9,-9,1,0,66,1,2,0,3,3,-9,0,3,0,5.9710579,5.9347782,0,0,-1066.6422,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7881441,50,47,-9,-9,7,2,3,0,0,0,6,2,0,692,327194.44,270084.78,245330.16,0,0,0,430.62799 +3439,4221,7464,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.35101,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,5.9343562,0,0,1,1,0,0,0,42.04,32.24,-9,-9,5,1,1,0,0,0,4,1,0,350,-80031.594,0,0,0,0,0,1572.2188 +3439,4222,7465,-9,-9,7464,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1073.557,-9,-9,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,600,158206.19,0,0,0,1004.205,0,-159.2045 +3440,4223,7466,-9,7467,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-900.61841,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7467,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1002.8398,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,56.06,-9,-9,5,1,1,0,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7468,-9,7467,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.05981,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7469,-9,7467,-9,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-980.6748,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3441,4224,7470,7473,-9,-9,1,1,65,0,2,0,3,3,-9,0,2,0,7.6082797,7.7427516,15,23,-28.595518,0,3,2,2021,20,8,0,37,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.7243056,47,38,57.06,57.76,5,1,1,0,0,10,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7471,-9,7473,7470,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1284,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7472,-9,7473,7470,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.72314,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7473,7470,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,5.7967257,5.8343496,0,16,-23,-64.353432,0,3,3,2021,8,0,4,4,1,0,0,10.662248,10.662248,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,47,38,8.333333333333334,1,1,0,0,11,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4225,7474,-9,7473,7470,1,1,20,0,2,0,2,2,-9,0,3,7.6802416,7.9505415,0,0,0,-991.67328,0,2,3,2021,14,2,40,37,1,2,1,8.5183601,8.5183601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,6.666666666666667,1,1,0,0,3,12,4,1,514,86418.258,-68280.586,0,0,3696.4045,0,1513.2744 +3442,4226,7475,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-916.43378,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.73,54.62,-9,-9,5,1,1,0,1,0,7,1,0,878,79193.133,0,0,0,0,0,1026.1041 +3443,4227,7476,7477,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.3849339,6.3718023,13,1,-80.583298,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7772348,6.6789365,54.11,44.3,59.82,49.4,10,1,1,0,0,0,8,5,1,1088,2780354.5,1238168,532830.25,0,0,0,5882.9932 +3443,4227,7477,7476,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,9.1026106,8.9061842,57,-1,66.484459,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.710319,9.2313385,59.82,49.4,54.11,44.3,10,1,1,0,0,6,8,5,1,1088,2780354.5,1238168,532830.25,0,0,0,5882.9932 +3444,4228,7478,7479,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,50,0,47.746254,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3838079,0,50.6,53.68,53,47,8.333333333333334,1,1,0,0,0,13,3,1,361,498748.19,143545.75,359462.25,0,9594.3418,0,2330.625 +3444,4228,7479,7478,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.8226829,7.7579823,0,7,0,17.877232,-9,-9,-9,2021,9,0,30,0,1,1,0,7.8863306,7.8863306,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,50.6,53.68,8,1,1,0,0,1,13,3,1,361,498748.19,143545.75,359462.25,0,9594.3418,0,2330.625 +3445,4229,7480,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2104549,8.0403776,0,0,0,-953.33215,0,2,2,2021,13,1,45,42,1,1,0,11.335211,11.335211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,9,5,4,1,676,-42281.547,4261.835,199197.06,61880.797,0,0,1468.1293 +3446,4230,7481,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.732358,7.3846807,0,0,-1062.9451,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6090984,7.829936,34.83,60.66,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,746,489229.66,11207.202,151562.91,0,0,0,1547.861 +3447,4231,7482,7483,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.70753,8.7031345,0,6,2,-32.807953,0,2,-9,2021,9,0,41,46,1,0,0,19.431484,19.431484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.26,48.89,48.95,55.71,8.333333333333334,1,1,0,0,7,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3447,4231,7483,7482,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.4451847,8.3867521,0,6,-2,-36.136772,0,2,2,2021,12,0,30,30,1,0,0,13.140137,13.140137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.95,55.71,61.26,48.89,8.333333333333334,1,1,0,0,7,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3447,4231,7484,-9,7483,7482,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.0767,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3448,4232,7485,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,4.7402515,5.0168786,0,0,-896.6142,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6681991,4.9628139,46.73,54.33,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,660,256446.83,47513.176,184511.92,0,0,316.32343,293.16699 +3449,4233,7486,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1125.4274,0,3,3,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3449,4233,7487,-9,7486,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.49176,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3449,4233,7488,-9,7486,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.99408,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3450,4234,7489,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.89258,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2521304,0,62.42,42.94,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,864,111157.91,0,0,0,0,0,-30.170538 +3451,4235,7490,7492,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.838954,9.1238747,0,11,0,-137.25362,0,2,1,2021,14,3,43,43,1,3,0,16.834885,16.834885,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,11,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4235,7491,-9,7490,7492,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-875.06635,-9,1,1,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.41,64.05,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4235,7492,7490,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.5363159,9.9887705,0,11,0,-39.012321,0,2,1,2021,12,0,42,45,1,0,0,37.907257,37.907257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.34,62.12,8.333333333333334,1,1,0,0,12,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4236,7493,-9,7490,7492,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1042.3134,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7425804,0,57.07,46.71,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,387,-116487.05,0,0,0,0,0,205.23215 +3452,4237,7494,7495,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.4967308,9.5676222,11,3,16.236225,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7810221,9.7955942,51.49,57.57,54.96,53.17,8.333333333333334,1,1,0,0,0,2,5,1,1333.5,656495,299828.16,316934.03,93351.125,0,2560.437,7423.7188 +3452,4237,7495,7494,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3609309,7.1961355,30,-3,-74.987953,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6682272,7.3808341,54.96,53.17,51.49,57.57,10,1,1,0,0,7,2,5,1,1333.5,656495,299828.16,316934.03,93351.125,0,2560.437,7423.7188 +3453,4238,7496,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1826887,7.9674492,0,0,0,-985.18433,0,-9,2,2021,6,0,42,38,1,0,0,8.9296656,8.9296656,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,503,-22115.813,0,0,0,1002.6763,0,1207.6023 +3453,4239,7497,-9,7496,-9,1,1,28,0,0,0,1,1,-9,0,4,7.655797,7.9425411,0,0,0,-960.85767,0,2,2,2021,15,3,30,68,1,3,1,9.4871798,9.4871798,0,0,0,0,0,0,0,0,0,0,0,0,0,32.07,65.17,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1366,105937.17,0,0,0,0,0,1702.2633 +3454,4240,7498,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1823339,8.0169325,0,0,0,-928.42212,0,2,2,2021,12,1,38,38,1,1,0,9.5871773,9.5871773,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,0,0,13,2,4,1,3846,514478.91,414110.44,130588.63,45419.41,0,2202.2451,1568.8396 +3455,4241,7499,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.9277401,6.578423,0,0,-1052.1815,0,2,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.958451,6.8552923,47.44,32.45,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,453,386344.75,127272.75,0,0,0,0,202.25943 +3455,4242,7500,-9,7499,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7615433,8.5869684,0,0,0,-918.95984,0,3,-9,2021,11,1,41,38,1,1,0,14.893116,14.893116,.05,.05,0,0,0,0,0,0,1,1,0,3.7458315,0,53.39,44.47,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,232,-37293.652,-21570.279,0,0,0,0,2177.5789 +3456,4243,7501,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.9458151,6.8309865,0,0,-900.35016,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.205977,46.55,24.6,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2047,132750.17,194150.98,-24318.006,0,0,0,1207.6561 +3457,4244,7502,7505,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3069401,8.2918749,0,10,2,-66.910454,0,2,2,2021,17,5,56,0,1,5,0,8.5127201,8.5127201,.05,.05,0,0,0,0,0,0,1,1,0,2.1755989,0,46.4,50.15,22.18,69.37,6.666666666666667,1,1,0,0,11,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7503,-9,7505,7502,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.38782,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7504,-9,7505,7502,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.21185,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7505,7502,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.8119068,8.5503769,0,10,-2,7.5431952,0,-9,-9,2021,16,3,50,50,1,3,0,15.968343,15.968343,.05,.05,0,0,0,0,0,0,1,1,0,2.477129,0,22.18,69.37,46.4,50.15,8.333333333333334,1,1,0,0,11,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3458,4245,7506,7507,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,9.3060732,9.1189642,0,1,2,45.970551,-9,2,2,2021,14,4,56,0,1,4,0,20.791336,20.791336,.05,.05,0,0,0,0,0,0,0,0,0,4.3203297,0,51,52.08,48.25,53.5,8.333333333333334,1,1,0,0,6,6,5,1,1364,-2907.3359,9971.5781,0,0,10523.443,0,4164.2075 +3458,4245,7507,7506,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.2846546,7.1433458,0,1,-2,5.5502925,-9,-9,-9,2021,7,0,23,0,1,0,0,5.6545682,5.6545682,.05,.05,0,0,0,0,0,0,0,0,0,2.4369824,0,48.25,53.5,51,52.08,8.333333333333334,1,1,0,0,1,6,5,1,1364,-2907.3359,9971.5781,0,0,10523.443,0,4164.2075 +3459,4246,7508,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8449583,9.0325041,0,0,0,-860.37268,0,-9,2,2021,6,0,40,50,1,0,0,24.965597,24.965597,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,12,13,5,1,1241,139409.16,9573.752,154820.78,90738.516,0,2562.1294,2700.7576 +3460,4247,7509,7511,-9,-9,1,0,23,0,2,0,2,2,-9,0,3,0,0,0,4,-2,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.22,56.72,54.2,57.49,6.666666666666667,1,1,0,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7510,-9,7509,7511,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9961,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7511,7509,-9,-9,1,1,25,0,2,0,2,2,-9,0,4,0,0,0,4,2,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.22,56.72,5,1,1,0,0,2,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7512,-9,7509,7511,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6422,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3461,4248,7513,7514,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94370586,0,51.41,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,7,1,1,346,462072.53,0,460717.94,0,0,0,803.58197 +3461,4248,7514,7513,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,6,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4091232,0,62.39,56.71,51.41,56.15,10,1,1,0,0,7,7,1,1,346,462072.53,0,460717.94,0,0,0,803.58197 +3462,4249,7515,7517,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-1,66.172684,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0615721,0,33.47,56.25,52,56,6.666666666666667,2,3,0,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7516,-9,7515,7517,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5883,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7517,7515,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.6983218,7.3898072,0,20,1,105.25565,0,3,2,2021,9,0,50,50,1,1,0,4.3655863,4.3655863,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,33.47,56.25,8,2,3,0,0,1,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7518,-9,7515,7517,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.29083,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3463,4250,7519,-9,7520,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.98297,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,751,59145.004,-49996.133,0,0,1604.489,-535.67188,1854.6993 +3463,4250,7520,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.4693136,8.2041159,0,0,0,-1012.3015,0,3,3,2021,7,0,46,50,1,0,0,13.315547,13.315547,.05,.05,0,0,0,0,0,0,1,1,0,2.5099254,0,54.27,48.04,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,751,59145.004,-49996.133,0,0,1604.489,-535.67188,1854.6993 +3464,4251,7521,7523,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,9.0967302,8.7329416,0,3,2,-3.0855694,0,-9,-9,2021,8,0,53,57,1,0,0,15.950832,15.950832,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.93,49.95,49.44,56.93,8.333333333333334,1,1,0,0,7,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3464,4251,7522,-9,7523,7521,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.1456,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3464,4251,7523,7521,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.2765784,7.1548276,0,3,-2,-2.7110009,0,-9,-9,2021,6,1,17,38,1,1,0,9.3658524,9.3658524,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,55.93,49.95,8.333333333333334,1,1,0,0,2,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3465,4252,7524,7525,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8023624,9.0453377,4.2839761,7,1,60.944473,-9,3,3,2021,7,0,50,0,1,0,0,16.146456,16.146456,0,0,0,0,0,0,0,0,0,0,0,0,4.8872085,49.57,42.36,34.99,26.11,6.666666666666667,1,1,0,0,8,9,5,1,710,1147630.6,338986,720983.81,0,0,0,4135.3271 +3465,4252,7525,7524,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.6944976,7.645587,0,7,-1,-106.79569,0,3,2,2021,25,12,27,27,1,12,0,10.251744,10.251744,0,0,0,0,0,0,0,0,0,0,0,0,0,34.99,26.11,49.57,42.36,3.333333333333333,1,1,0,0,8,9,5,1,710,1147630.6,338986,720983.81,0,0,0,4135.3271 +3466,4253,7526,7527,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.4247303,5.1638198,42,0,-145.78156,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4023051,46.31,56.45,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,365.5,809529.13,781323.38,176499.31,0,0,2752.7139,2722.99 +3466,4253,7527,7526,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4944916,8.0611029,42,0,15.700129,0,-9,-9,2021,13,1,0,22,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7252235,57.33,53.46,46.31,56.45,8.333333333333334,1,1,0,0,10,10,3,1,365.5,809529.13,781323.38,176499.31,0,0,2752.7139,2722.99 +3467,4254,7528,7529,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4623222,6.6308823,8,0,-13.075741,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5982137,55.29,42.09,51.5,47.18,8.333333333333334,1,1,0,0,0,4,2,1,584,447304.94,231054.41,287418.19,0,2195.6155,0,2322.0498 +3467,4254,7529,7528,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,8,0,-48.283279,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,55.29,42.09,5,1,1,0,0,0,4,2,1,584,447304.94,231054.41,287418.19,0,2195.6155,0,2322.0498 +3468,4255,7530,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.7283087,8.5319443,0,0,0,-978.76849,0,2,2,2021,12,0,40,40,1,0,0,17.007896,17.007896,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,47.77,-9,-9,3.333333333333333,1,1,0,0,11,12,5,0,2192,0,0,0,0,0,0,2550.562 +3469,4256,7531,7532,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3112202,6.4672041,60,-6,46.846413,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,4.4813986,3.5349743,19.197172,0,1,1,0,3.9667974,6.3682499,47.85,30.76,50.51,42.98,6.666666666666667,1,1,0,0,0,7,3,1,282.5,752887.25,142555.88,459726,0,0,0,1905.4209 +3469,4256,7532,7531,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.3165698,7.1695876,60,6,12.90026,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3104045,7.9800987,50.51,42.98,47.85,30.76,8.333333333333334,1,1,0,0,0,7,3,1,282.5,752887.25,142555.88,459726,0,0,0,1905.4209 +3470,4257,7533,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.6273046,7.6260414,0,0,-947.84088,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8195629,7.8048105,45.77,47.93,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1343,783242.69,208987.25,591237.44,0,0,0,1377.7277 +3471,4258,7534,-9,7535,7536,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.31598,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3471,4258,7535,7536,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.0336204,7.0176845,0,3,1,49.327579,0,-9,-9,2021,17,5,24,0,1,5,0,5.3537555,5.3537555,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,57.99,49.86,55.31,6.666666666666667,1,1,0,0,4,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3471,4258,7536,7535,-9,-9,1,1,30,0,2,0,2,2,-9,0,4,8.265379,8.6521969,0,3,-1,29.847572,-9,-9,-9,2021,10,1,44,0,1,1,0,15.175166,15.175166,0,0,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,38.04,57.99,6.666666666666667,1,1,0,0,6,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3472,4259,7537,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.5304,-9,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.99,44.79,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,652,-104610.02,0,0,0,0,0,310.43915 +3473,4260,7538,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.6992636,8.9232979,6.4664221,0,0,-972.47308,0,3,3,2021,12,1,48,50,1,1,0,15.199695,15.199695,.05,.05,0,0,0,0,0,2,1,1,0,4.7901587,6.7363009,48.99,43.66,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,855,17148.488,31489.6,90878.938,0,0,4262.0273,1957.4885 +3474,4261,7539,7540,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.0026326,7.1785326,12,2,29.121641,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5466328,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,13,12,2,1,855,446701,366153.63,146127.56,0,0,0,-912.08398 +3474,4261,7540,7539,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.5263391,5.5586905,12,-2,-49.79493,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4694357,52.82,53.97,51.83,57.2,8.333333333333334,1,1,0,0,0,12,2,1,855,446701,366153.63,146127.56,0,0,0,-912.08398 +3474,4262,7541,-9,7540,7539,1,0,20,0,0,0,2,2,1,0,4,6.5186205,6.4632683,0,0,0,-996.62982,-9,2,2,2021,8,0,8,0,1,0,1,9.4498968,9.4498968,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1646,74606.859,0,0,0,0,0,320.79779 +3475,4263,7542,7543,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.1145744,7.5924859,6.7837086,6,-5,55.12315,0,2,2,2021,7,0,12,12,1,0,0,8.5241079,8.5241079,.05,.05,0,0,0,0,0,0,0,0,0,3.2951915,6.5174427,47.15,56.66,39.66,32.42,8.333333333333334,1,1,0,0,3,12,4,1,255,-70842.711,61841.094,0,0,0,0,2437.7954 +3475,4263,7543,7542,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.361352,8.2137594,0,6,5,80.961197,0,3,3,2021,19,6,35,35,1,6,0,13.223329,13.223329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.66,32.42,47.15,56.66,8.333333333333334,1,1,0,0,7,12,4,1,255,-70842.711,61841.094,0,0,0,0,2437.7954 +3476,4264,7544,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,11,-22,-18.513783,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,17.7,43.46,46.41,5,1,1,0,0,0,5,2,1,474,17494.178,0,0,0,0,0,355.40222 +3476,4265,7545,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.6796479,7.0980358,11,22,-8.826498,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4699993,6.9452133,43.46,46.41,53.37,17.7,8.333333333333334,1,1,0,0,0,5,2,1,341,287583.84,52044.656,190629.94,0,0,0,1390.614 +3477,4266,7546,7547,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.1319866,7.4349904,0,40,0,22.547209,-9,2,2,2021,12,0,20,0,1,0,0,7.4439383,7.4439383,0,0,0,0,0,0,0,0,0,0,0,2.3085647,0,45.84,53.12,51.83,57.2,8.333333333333334,1,1,0,0,13,5,4,1,855.5,530334.56,0,0,0,10609.186,0,2615.1953 +3477,4266,7547,7546,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2984447,8.401824,0,40,0,-21.481451,0,2,1,2021,10,1,55,55,1,1,0,7.2339287,7.2339287,0,0,0,0,0,0,0,0,0,0,0,1.3160323,0,51.83,57.2,45.84,53.12,8.333333333333334,1,1,0,0,13,5,4,1,855.5,530334.56,0,0,0,10609.186,0,2615.1953 +3478,4267,7548,7549,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.0459752,6.9468265,9,1,-62.486973,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,5.7732854,0,0,1,1,0,5.8160796,7.0567632,55.96,23.14,48.02,31.03,8.333333333333334,1,1,0,0,9,2,2,0,226.5,601918.88,465340.97,131307.95,0,0,0,1427.6638 +3478,4267,7549,7548,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,-1,15.286907,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5403149,0,48.02,31.03,55.96,23.14,8.333333333333334,1,1,0,0,0,2,2,0,226.5,601918.88,465340.97,131307.95,0,0,0,1427.6638 +3479,4268,7550,7551,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.1415119,4.3660908,10,-11,-71.578987,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.1095219,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,2,13,3,1,478.5,523807,133356.5,199196.22,0,0,0,2658.9048 +3479,4268,7551,7550,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.4966521,7.4736791,10,11,-48.588528,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7918801,57.33,53.46,57.16,56.15,10,1,1,0,0,2,13,3,1,478.5,523807,133356.5,199196.22,0,0,0,2658.9048 +3480,4269,7552,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7643609,7.7159176,0,0,-899.50146,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4823604,38.42,51.05,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1178,760166.06,646799.63,0,0,0,0,1874.0057 +3481,4270,7553,7554,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.9338465,7.9866276,11,0,-18.270247,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1741133,7.866065,57.16,56.15,53.08,47.11,8.333333333333334,1,1,0,0,3,12,4,1,541.5,2614117,782023.31,303807.5,0,0,0,3372.3696 +3481,4270,7554,7553,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4066005,7.3031068,11,0,9.4766016,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8324215,7.4071193,53.08,47.11,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,541.5,2614117,782023.31,303807.5,0,0,0,3372.3696 +3482,4271,7555,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,6.8731709,7.2150364,0,0,-1070.0952,0,3,3,2021,36,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403841,7.2562795,24.19,23.76,-9,-9,0,1,1,0,1,0,2,3,1,544,218920.77,122383.88,116019.63,0,0,0,1826.1321 +3483,4272,7556,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.7523413,9.268795,0,0,-963.4198,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4504404,9.0782547,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,2,5,1,482,2321772.8,1978547,258772.31,25214.961,0,0,2643.0989 +3484,4273,7557,7558,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.7114439,8.2637911,6.8319211,6,5,57.883587,0,3,3,2021,7,0,37,0,1,0,0,8.2106342,8.2106342,.05,.05,0,0,0,0,0,0,0,0,0,6.1710739,7.0206437,43.41,49.46,52.54,52.91,10,1,1,0,0,6,5,4,0,480.5,282216.31,128970.28,201887.45,50176,3144.0234,0,2734.0088 +3484,4273,7558,7557,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.970829,7.6851335,0,6,-5,28.37805,0,-9,3,2021,6,0,39,39,1,0,0,8.1590986,8.1590986,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,52.91,43.41,49.46,8.333333333333334,1,1,0,0,7,5,4,0,480.5,282216.31,128970.28,201887.45,50176,3144.0234,0,2734.0088 +3485,4274,7559,-9,7560,7561,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.27332,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4274,7560,7561,-9,-9,1,0,50,0,1,0,1,1,-9,0,1,8.0184326,7.8255591,0,6,-1,-43.960796,0,2,2,2021,25,10,32,0,1,10,0,9.4009418,9.4009418,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,29.7,53.39,39.15,3.333333333333333,1,1,0,1,6,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4274,7561,7560,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.4544792,8.6627121,0,6,1,-6.0591578,0,2,2,2021,10,0,40,43,1,0,0,16.024265,16.024265,.05,.05,0,0,0,0,0,0,1,1,0,3.0511355,0,53.39,39.15,34.46,29.7,5,1,1,0,0,7,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4275,7562,-9,7560,7561,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-1004.578,-9,1,-9,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.28,63.48,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,142,-48330.406,0,0,0,0,0,0 +3486,4276,7563,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-939.63074,0,-9,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.5,20.97,-9,-9,5,1,1,0,0,4,10,1,0,1082,-10232.139,0,0,0,0,1758.6772,1601.4702 +3487,4277,7564,7565,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,9.5138321,9.5794697,0,18,5,-9.5864439,0,2,2,2021,14,2,48,50,1,2,0,30.943811,30.943811,.05,.05,0,0,0,0,0,0,0,0,0,6.4180474,0,44.95,52.41,57.74,25.06,3.333333333333333,1,1,0,0,9,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3487,4277,7565,7564,-9,-9,1,0,46,0,3,0,2,2,-9,0,2,8.2245941,8.1657486,0,18,-5,44.457863,0,2,2,2021,7,0,60,60,1,0,0,7.34444,7.34444,.05,.05,0,0,0,0,0,0,0,0,0,2.1394224,0,57.74,25.06,44.95,52.41,6.666666666666667,1,1,0,0,10,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3487,4277,7566,-9,7565,7564,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1212,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3488,4278,7567,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,7.2798681,7.5120654,0,0,0,-1013.9856,0,1,1,2021,7,0,28,21,1,0,0,7.1804247,7.1804247,.05,.05,0,0,0,0,0,0,0,0,0,2.5289171,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,475,409320.5,360139.28,148022,8917.6689,1902.2657,0,820.00262 +3489,4279,7568,7569,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.9718862,6.6200237,9,5,-16.035179,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0384569,7.0108047,55.2,49.4,28.67,51.66,5,1,1,0,0,0,10,2,1,750,826588,175759.09,447715.03,0,137.39177,0,1412.2081 +3489,4279,7569,7568,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,9,-5,-219.99185,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.59834,0,28.67,51.66,55.2,49.4,1.666666666666667,1,1,0,0,0,10,2,1,750,826588,175759.09,447715.03,0,137.39177,0,1412.2081 +3490,4280,7570,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,5.2369375,5.5376596,0,0,-846.72406,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,33.893536,0,0,1,1,0,0,5.4023438,58.73,16.63,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,592,25851.756,28424.297,162374.84,0,0,0,1056.1874 +3490,4281,7571,-9,7570,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2324877,8.983098,0,0,0,-1035.7627,0,2,2,2021,12,2,67,71,1,2,0,14.568034,14.568034,.05,.05,0,0,0,0,0,14.5,1,1,0,4.5165963,0,41.53,56.72,-9,-9,3.333333333333333,1,1,0,0,10,8,5,0,596,257855.23,163282.48,212143.2,61375.316,0,0,2957.0693 +3491,4282,7572,7573,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2871418,8.0587473,0,6,-2,88.573334,0,-9,-9,2021,10,1,40,35,1,1,0,13.261449,13.261449,0,0,0,0,0,0,0,0,0,0,0,0,0,49.09,49.42,59.53,56.44,6.666666666666667,2,3,0,0,9,8,5,1,734,661608.81,325504.03,273642.91,85575.172,0,0,3103.5972 +3491,4282,7573,7572,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5685997,8.3632479,0,6,2,87.07328,0,3,3,2021,5,0,38,47,1,0,0,16.551794,16.551794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.09,49.42,10,4,2,0,0,7,8,5,1,734,661608.81,325504.03,273642.91,85575.172,0,0,3103.5972 +3491,4283,7574,-9,7572,7573,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.91882,0,2,2,2021,5,0,0,50,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,1,0,3,8,1,1,136,100098.51,0,0,0,0,0,0 +3492,4284,7575,-9,7577,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2336941,8.2709599,0,0,0,-958.99969,-9,2,-9,2021,10,0,30,0,1,1,1,13.091699,13.091699,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,3051,-151057.03,0,0,0,0,0,1713.2981 +3492,4285,7576,-9,7577,-9,1,1,25,0,0,0,1,1,-9,0,3,7.1577783,7.4566646,0,0,0,-1008.4424,0,2,-9,2021,7,1,30,0,1,1,1,5.3329959,5.3329959,0,0,0,0,0,0,0,0,0,0,0,3.8618279,0,58.47,44.69,-9,-9,1.666666666666667,4,2,0,0,4,8,3,1,613,-84373.523,0,0,0,0,0,1903.007 +3492,4286,7577,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1332798,7.8557134,6.3014708,0,0,-848.86237,-9,-9,-9,2021,11,0,40,0,1,2,0,8.4657679,8.4657679,0,0,0,0,0,0,0,0,0,0,0,0,6.7233949,49,48,-9,-9,7,3,4,0,0,1,8,4,1,101,370079.41,54370.348,558984.5,0,-1320.8107,5230.646,1650.1029 +3492,4287,7578,-9,7577,-9,1,0,39,0,0,0,2,2,-9,0,4,8.4529181,8.4910021,0,0,0,-1010.1243,-9,2,-9,2021,11,0,37,0,1,1,1,12.057314,12.057314,.05,.05,0,0,0,0,0,0,0,0,0,4.3386769,0,49,56,-9,-9,7,3,4,0,0,1,8,4,1,314,59563.035,-70204.266,0,0,0,0,1749.254 +3493,4288,7579,7582,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.3965168,8.9085474,0,10,1,-83.690926,0,-9,-9,2021,11,0,40,35,1,0,0,17.206444,17.206444,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,32.19,62.45,8.333333333333334,1,1,0,0,9,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7580,-9,7582,7579,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7581,-9,7582,7579,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.65509,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7582,7579,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.066812,7.2113223,0,10,-1,127.19181,0,-9,-9,2021,22,10,10,12,1,10,0,18.234716,18.234716,.05,.05,0,0,0,0,0,0,1,1,0,1.1788608,0,32.19,62.45,51.24,58.84,8.333333333333334,1,1,0,0,9,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3494,4289,7583,7584,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6673203,8.6635799,0,10,0,43.171104,0,3,2,2021,7,0,40,40,1,0,0,16.139267,16.139267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,47.66,52.33,6.666666666666667,1,1,0,0,11,13,5,1,473.5,265397.94,60381.625,175863.84,103573.19,5989.3682,0,3711.1357 +3494,4289,7584,7583,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9488335,8.0340605,0,10,0,-17.683878,0,2,2,2021,11,0,35,35,1,0,0,12.374703,12.374703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,59.29,49.68,6.666666666666667,1,1,0,0,11,13,5,1,473.5,265397.94,60381.625,175863.84,103573.19,5989.3682,0,3711.1357 +3494,4290,7585,-9,7584,7583,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-1009.1124,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1466,0,0,0,0,0,0,0 +3495,4291,7586,-9,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,0,0,0,0,0,-949.9278,0,-9,-9,2021,11,0,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,8,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7587,-9,7586,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.48474,-9,-9,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7588,-9,7586,-9,1,1,5,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.3621,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7589,-9,7586,-9,1,0,8,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.97845,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3496,4292,7590,-9,7592,7591,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.2458,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7591,7592,-9,-9,1,1,27,1,3,0,2,2,-9,0,4,8.0475492,8.4698248,0,5,3,28.030539,0,-9,-9,2021,10,0,40,70,1,1,0,10.565954,10.565954,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,46.88,60.96,7,1,1,0,0,1,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7592,7591,-9,-9,1,0,24,1,3,0,2,2,-9,0,5,0,0,0,5,-3,49.780628,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.677032,0,46.88,60.96,50,57,8.333333333333334,1,1,0,0,5,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7593,-9,7592,7591,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.9577,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7594,-9,7592,7591,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.17523,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3497,4293,7595,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9143448,6.8776832,0,0,-889.52606,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3674731,6.8762116,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,584,556171.88,0,353892.91,14655.563,0,0,940.21692 +3498,4294,7596,7597,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7477694,8.5878801,0,30,-1,-25.049751,0,3,3,2021,12,0,40,36,1,0,0,17.318226,17.318226,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,35.54,59.05,42.62,46.82,6.666666666666667,1,1,0,0,10,8,5,1,718.5,117977.56,28328.6,0,0,3473.8689,4737.5586,3929.9783 +3498,4294,7597,7596,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4738684,8.4997282,0,8,1,-90.804688,0,3,2,2021,12,0,42,43,1,0,0,13.343475,13.343475,.05,.05,0,0,0,0,0,42,0,0,0,.54501981,0,42.62,46.82,35.54,59.05,6.666666666666667,1,1,0,0,9,8,5,1,718.5,117977.56,28328.6,0,0,3473.8689,4737.5586,3929.9783 +3499,4295,7598,7599,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.9257431,8.7831945,0,3,-3,55.287083,0,-9,-9,2021,13,2,93,100,1,2,0,9.2223101,9.2223101,0,0,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,38.63,56.7,3.333333333333333,1,1,0,1,3,9,4,1,463,13066.871,0,0,0,15548.974,0,2430.2578 +3499,4295,7599,7598,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,6.0272951,6.1664262,0,3,3,19.617605,0,-9,-9,2021,24,9,85,82,1,9,0,.57238418,.57238418,0,0,0,0,0,0,0,0,0,0,0,0,0,38.63,56.7,41.46,55.58,0,1,1,0,1,5,9,4,1,463,13066.871,0,0,0,15548.974,0,2430.2578 +3500,4296,7600,7601,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.0766325,8.2368202,0,7,3,52.962021,0,-9,-9,2021,6,0,43,43,1,0,0,8.6649485,8.6649485,.05,.05,0,0,0,0,0,83,1,1,0,3.664669,0,59.53,56.44,54.37,54.8,8.333333333333334,1,1,0,0,10,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3500,4296,7601,7600,-9,-9,1,0,40,1,2,0,2,2,-9,1,3,8.4122467,8.4220219,0,7,-3,-58.14695,0,3,2,2021,7,0,36,48,1,0,0,9.8523235,9.8523235,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.37,54.8,59.53,56.44,8.333333333333334,1,1,0,0,7,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3500,4296,7602,-9,7601,7600,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.75201,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3501,4297,7603,7604,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0560236,7.9993119,0,34,-7,53.557732,0,3,3,2021,9,0,37,38,1,0,0,7.8816781,7.8816781,.05,.05,0,0,0,0,0,0,1,1,0,2.5119758,0,52.24,50.75,60.3,43.88,8.333333333333334,2,3,0,0,13,6,5,1,766,464978.66,373777.13,94655.891,48792.555,10191.393,0,2984.0444 +3501,4297,7604,7603,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.3467999,8.4004116,6.9483614,34,7,-78.37014,0,3,3,2021,9,0,45,45,1,0,0,8.7080679,8.7080679,.05,.05,0,1,0,8.166997,0,0,1,1,0,0,7.310329,60.3,43.88,52.24,50.75,6.666666666666667,2,3,0,0,13,6,5,1,766,464978.66,373777.13,94655.891,48792.555,10191.393,0,2984.0444 +3501,4298,7605,-9,7603,7604,1,0,31,0,0,0,1,1,-9,0,3,8.7820301,8.7430582,0,0,0,-917.89343,0,2,2,2021,12,0,37,37,1,0,1,19.864183,19.864183,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,-9,-9,8.333333333333334,2,3,0,0,7,6,5,1,429,-18297.07,-61936.418,37610.324,77144.797,1126.0618,1637.9611,1635.1056 +3502,4299,7606,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.4800367,5.9695492,0,0,-1053.8074,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.5813417,0,51.92,20.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,261,-20992.797,147256.08,0,0,0,-16.434145,424.64151 +3503,4300,7607,7608,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0686727,6.9638419,18,0,57.273697,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3261321,7.0441141,48.88,46.26,64.23999999999999,34.3,8.333333333333334,1,1,0,0,2,1,2,1,1074,533703.5,53001.633,306033.31,0,0,0,2348.7476 +3503,4300,7608,7607,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,18,0,-121.32196,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0453858,0,64.23999999999999,34.3,48.88,46.26,8.333333333333334,1,1,0,0,1,1,2,1,1074,533703.5,53001.633,306033.31,0,0,0,2348.7476 +3504,4301,7609,7610,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9836493,7.8652172,0,8,-1,30.874058,0,2,2,2021,9,0,40,16,1,0,0,7.4912953,7.4912953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52.13,54.51,8.333333333333334,1,1,0,0,10,10,5,1,279.5,-26956.055,24911.344,256591.25,254703,0,0,3911.6143 +3504,4301,7610,7609,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.1232901,9.2968016,0,8,1,54.793045,0,-9,-9,2021,17,6,51,38,1,6,0,16.131023,16.131023,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.13,54.51,55.36,51.57,10,1,1,0,0,9,10,5,1,279.5,-26956.055,24911.344,256591.25,254703,0,0,3911.6143 +3505,4302,7611,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.133606,7.2891593,0,0,0,-856.48059,0,3,3,2021,13,4,22,20,1,4,0,6.1555352,6.1555352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.75,55.47,-9,-9,6.666666666666667,2,3,0,1,3,1,2,0,2998,46728.547,137963.19,184469.36,0,5623.6328,543.39429,1523.6842 +3505,4302,7612,-9,7611,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.7316,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,0,2998,46728.547,137963.19,184469.36,0,5623.6328,543.39429,1523.6842 +3505,4303,7613,-9,7611,-9,1,1,24,0,1,0,2,2,1,0,4,0,0,0,0,0,-1012.9471,-9,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,1,1,0,178,-21075.424,0,0,0,0,0,0 +3506,4304,7614,-9,7615,7616,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.0502,-9,3,2,2021,31,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63748145,0,20.64,66.31,-9,-9,3.333333333333333,1,1,0,0,3,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3506,4304,7615,7616,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.2429724,8.1428413,0,6,-2,29.052931,0,-9,-9,2021,6,0,30,30,1,0,0,13.057306,13.057306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,62.85,44.94,49.91,8.333333333333334,1,1,0,0,12,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3506,4304,7616,7615,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.0606546,8.5859566,8.0033894,6,2,7.4384928,0,-9,-9,2021,13,1,38,47,1,1,0,9.2061243,9.2061243,.05,.05,0,0,0,0,0,0,1,1,0,5.6735005,7.8124447,44.94,49.91,42.85,62.85,5,1,1,0,0,13,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3507,4305,7617,7618,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.5155039,8.5431786,0,1,0,-50.610912,0,2,1,2021,7,0,35,35,1,0,0,17.445255,17.445255,.05,.05,0,0,0,0,0,0,0,0,0,3.4634459,0,48.77,60.16,8.83,64.91,8.333333333333334,1,1,0,0,6,9,5,1,1150,86313.633,28567.865,260740.38,167509.06,0,706.6947,3953.0193 +3507,4305,7618,7617,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.62117,8.5175867,0,1,0,-2.2557826,-9,-9,-9,2021,28,11,37,0,1,11,0,13.975892,13.975892,.05,.05,0,0,0,0,0,0,0,0,0,2.8666055,0,8.83,64.91,48.77,60.16,8.333333333333334,1,1,0,0,1,9,5,1,1150,86313.633,28567.865,260740.38,167509.06,0,706.6947,3953.0193 +3508,4306,7619,7620,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2491207,8.1066513,5.9025464,37,-2,22.824852,0,2,3,2021,7,0,36,30,1,0,0,12.596931,12.596931,0,0,0,0,0,0,0,0,0,0,0,5.820653,6.1803761,65.06,41.58,57.68,42.36,8.333333333333334,1,1,0,0,13,10,5,1,505,824026.75,253191.7,373447.19,0,0,0,5118.854 +3508,4306,7620,7619,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.2504187,9.4853296,0,37,2,-14.863432,0,2,3,2021,7,0,42,47,1,0,0,27.072557,27.072557,0,0,.05,0,0,0,0,2,0,0,0,5.5186896,0,57.68,42.36,65.06,41.58,6.666666666666667,1,1,0,0,13,10,5,1,505,824026.75,253191.7,373447.19,0,0,0,5118.854 +3509,4307,7621,7622,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.5379477,8.9598227,7.3270669,33,3,-14.193093,0,2,3,2021,7,0,44,44,1,0,0,14.459825,14.459825,.05,.05,0,0,0,0,0,0,0,0,0,0,7.437058,42.5,51.45,46.08,57.2,6.666666666666667,1,1,0,0,11,9,5,1,1828.5,2905485,1730642,372219.56,0,0,0,5539.8394 +3509,4307,7622,7621,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.0468225,8.7079773,8.0831194,31,-3,60.161541,0,2,3,2021,16,5,15,0,1,5,0,30.19339,30.19339,.05,.05,0,0,0,0,0,0,0,0,0,.26089796,7.8324099,46.08,57.2,42.5,51.45,6.666666666666667,1,1,0,0,11,9,5,1,1828.5,2905485,1730642,372219.56,0,0,0,5539.8394 +3510,4308,7623,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.8083715,6.6762667,0,0,-1017.4667,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,3.1353936,0,17.382111,0,1,1,0,0,6.7694254,62.02,28.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,607,97143.992,63411.5,0,0,0,0,1265.0247 +3511,4309,7624,7625,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,0,0,0,11,8,40.870125,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.59,60.85,54.69,57.47,8.333333333333334,1,1,1,0,11,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7625,7624,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.7961669,8.1590929,0,11,-8,96.103989,0,1,1,2021,12,0,24,12,1,0,0,14.018381,14.018381,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,38.59,60.85,10,1,1,0,0,11,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7626,-9,7625,7624,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.5254,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7627,-9,7625,7624,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.84747,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3512,4310,7628,7630,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.4676561,8.3724623,0,9,-3,-23.602211,0,2,2,2021,10,1,84,43,1,1,0,7.7873602,7.7873602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,57.33,53.46,8.333333333333334,1,1,0,0,8,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3512,4310,7629,-9,7630,7628,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.9325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3512,4310,7630,7628,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,0,0,11,3,29.967613,0,2,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.28,52.09,8.333333333333334,1,1,1,0,8,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3513,4311,7631,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1158.7006,0,2,2,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,20.35,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,125,0,0,0,0,0,0,1995.0331 +3514,4312,7632,-9,7634,7635,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.64,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7633,-9,7634,7635,1,0,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1088.4847,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7634,7635,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3681574,7.4248176,0,22,-1,-102.60608,0,2,3,2021,16,4,25,25,1,4,0,8.508049,8.508049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.55,42.81,42.47,44.11,8.333333333333334,1,1,0,0,12,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7635,7634,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6787834,8.7239351,0,22,1,60.650948,0,2,2,2021,13,1,42,40,1,1,0,18.870037,18.870037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.47,44.11,35.55,42.81,5,1,1,0,0,12,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3515,4313,7636,7638,-9,-9,1,0,45,0,2,0,3,3,-9,0,5,0,0,0,29,-4,-5.0717311,0,3,3,2021,17,6,0,4,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,44.3,39.35,8.333333333333334,1,1,0,0,2,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4313,7637,-9,7636,7638,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.5966,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4313,7638,7636,-9,-9,1,1,49,0,2,0,3,3,-9,0,2,8.5351067,8.7233124,0,29,4,57.878674,0,3,3,2021,11,0,50,50,1,0,0,15.301547,15.301547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.3,39.35,45.22,63.14,5,1,1,0,0,11,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4314,7639,-9,7636,7638,1,0,24,0,2,0,2,2,-9,0,4,8.1165257,8.0437584,0,0,0,-1032.7734,0,3,3,2021,23,9,45,48,1,9,1,9.8031187,9.8031187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.46,58.18,-9,-9,5,1,1,0,0,5,4,4,1,354,106709.95,811.4696,0,0,0,0,963.02728 +3515,4315,7640,-9,7636,7638,1,0,20,0,2,0,2,2,-9,0,5,7.4821019,7.898685,0,0,0,-890.8894,0,3,3,2021,19,5,44,40,1,5,1,4.9356165,4.9356165,0,0,0,0,0,0,0,0,1,1,0,0,0,35.24,52.54,-9,-9,10,1,1,0,0,4,4,3,1,1253,-58675.715,0,0,0,-384.41434,0,1124.4427 +3516,4316,7641,-9,7642,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.2761,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,473,118059.08,114589.33,59090.227,82583.641,0,0,1891.2402 +3516,4316,7642,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4684014,7.7562165,5.5898056,0,0,-972.03375,-9,2,2,2021,11,0,37,0,1,0,0,5.7532921,5.7532921,0,0,0,0,0,0,0,0,1,1,0,5.7742906,0,44.01,54.41,-9,-9,3.333333333333333,1,1,0,0,7,10,3,1,473,118059.08,114589.33,59090.227,82583.641,0,0,1891.2402 +3517,4317,7643,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2450705,8.3438854,0,0,0,-912.33441,0,3,3,2021,7,0,35,35,1,0,0,12.452835,12.452835,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,59.14,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,317,779107.5,427699.81,330387.44,120338.88,0,4556.6235,1911.521 +3517,4318,7644,-9,7643,-9,1,1,29,0,0,0,2,2,-9,0,3,7.7442327,7.5111289,0,0,0,-933.34705,0,1,3,2021,13,2,55,52,1,2,1,5.0349474,5.0349474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,8,8,3,1,383,-42016.977,156341.16,0,0,0,0,1188.4915 +3517,4319,7645,-9,7643,-9,1,1,27,0,0,0,2,2,-9,0,5,7.9584527,8.3074179,0,0,0,-851.29688,0,1,2,2021,5,0,80,46,1,0,1,3.5795631,3.5795631,.05,.05,0,0,0,0,0,0,0,0,0,1.3190917,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,11,8,4,1,687,-39919.188,-43140.133,0,0,0,0,1199.0571 +3517,4320,7646,-9,7643,-9,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1037.9829,0,1,-9,2021,12,0,0,30,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,58.41,-9,-9,3.333333333333333,1,1,0,0,6,8,1,1,2126,-80192.516,0,0,0,0,0,580.74048 +3518,4321,7647,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.82904,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,7,2,1,1,300,58210.742,0,0,0,0,0,856.3114 +3519,4322,7648,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,7.9674397,8.1160536,0,0,0,-946.23407,0,2,2,2021,10,0,37,38,1,0,0,13.380455,13.380455,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.08,43.27,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,599,270425.5,22158.236,-14822.212,6528.8867,0,0,1038.8665 +3520,4323,7649,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,6.8762169,6.9980307,0,0,-1031.2289,0,3,-9,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3201103,6.8416028,47.18,23.22,-9,-9,10,1,1,0,0,0,5,2,1,6057,313462.66,122369.85,193780.78,0,0,0,354.13428 +3521,4324,7650,-9,7651,7652,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.5514,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3521,4324,7651,7652,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.8399687,8.0843,0,9,-2,-4.3914552,0,1,1,2021,8,0,22,23,1,0,0,13.468318,13.468318,.05,.05,0,0,0,0,0,0,1,1,0,1.6002226,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,7,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3521,4324,7652,7651,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.5199203,8.5585766,0,9,2,-78.80423,0,1,2,2021,7,0,37,35,1,0,0,13.943479,13.943479,.05,.05,0,0,0,0,0,0,1,1,0,2.9067662,0,51.83,57.2,55.79,52.62,8.333333333333334,1,1,0,0,9,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3522,4325,7653,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,6.8740072,7.1648526,5.5089979,0,0,-971.77887,0,3,2,2021,19,8,17,24,1,8,0,7.1694593,7.1694593,0,0,0,0,0,0,0,14.5,0,0,0,0,5.6615987,48.02,34.89,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,656.5,273801.38,346242.06,0,0,0,0,825.7771 +3522,4325,7654,-9,7653,-9,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1003.2687,-9,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,55.27,56.95,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,656.5,273801.38,346242.06,0,0,0,0,825.7771 +3523,4326,7655,7656,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.2237654,8.1880751,0,2,1,65.895004,0,-9,-9,2021,8,1,39,40,1,1,0,14.319201,14.319201,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,12.67,72.65000000000001,8.333333333333334,4,2,0,0,4,10,4,0,487,156638.44,124878.13,0,0,6045.5859,1285.1967,3516.7578 +3523,4326,7656,7655,-9,-9,1,0,26,0,0,0,1,1,0,0,5,0,7.0211658,7.0156307,2,-1,104.43967,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.508997,0,12.67,72.65000000000001,54.1,59.11,6.666666666666667,1,1,0,0,5,10,4,0,487,156638.44,124878.13,0,0,6045.5859,1285.1967,3516.7578 +3524,4327,7657,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8342361,7.5723877,0,0,-953.64459,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4086131,7.8912401,47.87,38.01,-9,-9,5,1,1,0,0,7,11,3,1,466,543659.13,478783.47,210916.63,0,0,0,1161.3708 +3525,4328,7658,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.3364077,7.7888045,0,0,-1040.3578,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4996233,48.18,61.8,-9,-9,8.333333333333334,2,3,0,0,9,7,3,1,985,728607.63,414234.31,384847.19,0,0,0,1479.1261 +3526,4329,7659,7660,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,0,0,0,32,-2,22.066843,0,3,3,2021,20,8,0,25,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9872365,0,42.41,29.42,54.79,55.86,5,1,1,0,0,10,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3526,4329,7660,7659,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.2461481,8.9131746,0,33,2,3.4218583,0,3,2,2021,7,0,40,60,1,0,0,25.234097,25.234097,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.41,29.42,10,1,1,0,0,10,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3526,4329,7661,-9,7659,7660,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-922.4834,-9,2,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3527,4330,7662,-9,7663,7665,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.6182,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7663,7665,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.0667095,8.0643368,0,7,0,126.64079,0,-9,-9,2021,11,0,25,25,1,0,0,15.67537,15.67537,0,0,0,0,0,0,0,0,0,0,0,5.6009064,0,43.48,60.97,29.56,47.6,6.666666666666667,4,2,0,0,7,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7664,-9,7663,7665,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00323,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7665,7663,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.2498503,9.5342188,0,7,0,114.19856,0,1,1,2021,16,5,42,42,1,5,0,23.262075,23.262075,.05,.05,.05,0,0,0,0,0,0,0,0,5.5935135,0,29.56,47.6,43.48,60.97,6.666666666666667,1,1,0,0,8,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3528,4331,7666,7667,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,8.9235172,8.8658409,0,12,0,-6.1128221,0,2,3,2021,7,0,75,42,1,0,0,11.335022,11.335022,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,556,61513.57,-15378.228,387458.31,200862.22,0,0,6440.2407 +3528,4331,7667,7666,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.9679337,9.2167511,0,12,0,-36.622807,-9,2,3,2021,9,1,60,0,1,1,0,17.647346,17.647346,0,0,0,0,0,0,0,0,0,0,0,1.3932645,0,51.73,58.82,54.1,59.11,8.333333333333334,1,1,0,0,13,7,5,1,556,61513.57,-15378.228,387458.31,200862.22,0,0,6440.2407 +3529,4332,7668,7669,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1657162,7.0229335,9,-1,-105.40376,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2385259,7.5068903,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,985.5,1754277.8,680692.25,864757.13,0,6966.7964,3534.4207,4719.0054 +3529,4332,7669,7668,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3422956,8.1191263,9,1,134.96602,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9382086,8.5928135,57.16,56.15,51.77,58.57,10,1,1,0,0,3,7,4,1,985.5,1754277.8,680692.25,864757.13,0,6966.7964,3534.4207,4719.0054 +3530,4333,7670,-9,7676,7675,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1013.7716,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7671,-9,7676,7675,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1110.3087,-9,3,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7672,-9,7676,7675,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1033.1626,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7673,-9,7676,7675,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1071.9612,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7674,-9,7676,7675,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-945.35999,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7675,7676,-9,-9,1,1,44,0,5,0,3,3,-9,0,3,7.5482006,7.4398546,0,21,5,15.943959,0,3,2,2021,8,0,30,24,1,0,0,6.4662027,6.4662027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.91,51.06,49,56,5,2,3,0,0,7,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7676,7675,-9,-9,1,0,39,0,5,0,3,3,-9,0,4,0,0,0,21,-5,52.630932,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,47.91,51.06,7,2,3,0,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3531,4334,7677,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3295817,7.4406738,0,0,-962.22314,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3877029,42.61,49.31,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,451,583904.69,537968.19,54757.563,0,2963.4065,0,1577.1216 +3532,4335,7678,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.5650692,8.1981888,6.3373504,0,0,-1058.1003,-9,2,2,2021,8,1,43,0,1,1,0,11.429849,11.429849,.05,.05,0,0,0,0,0,0,1,1,0,7.0212121,0,54.04,60.47,-9,-9,6.666666666666667,4,2,0,0,7,8,5,0,270.5,30174.689,65128.242,0,0,0,0,2092.3064 +3532,4335,7679,-9,7678,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.58069,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,6.666666666666667,3,4,0,0,0,8,5,0,270.5,30174.689,65128.242,0,0,0,0,2092.3064 +3532,4336,7680,-9,7678,-9,1,0,19,0,0,0,3,3,1,0,4,0,0,0,0,0,-1044.6602,-9,1,-9,2021,22,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.24,64.67,-9,-9,6.666666666666667,3,4,1,1,0,8,1,0,290,0,0,0,0,0,0,0 +3533,4337,7681,7683,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,7.4963646,7.4926715,0,11,-5,-110.72507,0,2,2,2021,10,0,18,9,1,0,0,13.156428,13.156428,.05,.05,0,0,0,0,0,0,1,1,0,7.2264023,0,48.63,51.79,46.39,60.99,8.333333333333334,1,1,0,0,10,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7682,-9,7681,7683,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7794,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7683,7681,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.6403446,8.6457567,0,11,5,83.621529,0,2,2,2021,12,1,39,39,1,1,0,13.681529,13.681529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,48.63,51.79,8.333333333333334,1,1,0,0,8,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7684,-9,7681,7683,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-924.77844,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7685,-9,7681,7683,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6418,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3534,4338,7686,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.8714581,8.9891872,0,0,0,-895.12024,0,3,2,2021,19,7,39,40,1,7,0,16.771158,16.771158,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.1,68.28,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,145,207198.31,139966.27,179919.64,72896.047,0,0,2234.4885 +3535,4339,7687,7688,-9,-9,1,1,64,0,1,0,2,2,-9,0,4,8.4440374,7.9741826,0,8,0,64.806717,0,3,3,2021,10,0,40,40,1,0,0,10.149946,10.149946,.05,.05,0,0,0,0,0,0,1,0,1,3.2210851,0,45.91,59.89,57.06,57.76,10,1,1,0,0,8,9,3,1,1149.5,191232.55,265114.22,0,0,0,0,2389.208 +3535,4339,7688,7687,-9,-9,1,0,64,0,1,0,2,2,-9,0,5,0,0,0,8,0,38.706421,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,4.3638172,0,57.06,57.76,45.91,59.89,10,1,1,0,0,0,9,3,1,1149.5,191232.55,265114.22,0,0,0,0,2389.208 +3535,4340,7689,-9,7688,7687,1,0,39,0,1,0,2,2,-9,0,4,7.7863536,7.886405,4.0431442,0,0,-1135.3718,0,3,3,2021,12,0,40,38,1,0,1,5.9788694,5.9788694,.05,.05,0,0,0,0,0,0,1,0,1,4.4426842,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,9,9,3,1,651.5,-23146.277,6253.5215,0,0,1019.0419,3984.8645,1542.4854 +3535,4340,7690,-9,7689,-9,1,0,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1029.7794,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,651.5,-23146.277,6253.5215,0,0,1019.0419,3984.8645,1542.4854 +3536,4341,7691,7692,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,6,5,0,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,36.76,53.66,53,52,5,2,3,0,0,0,7,1,1,249.5,41343.68,0,0,0,0,0,607.99347 +3536,4341,7692,7691,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,6,-5,0,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,36.76,53.66,8,2,3,0,0,0,7,1,1,249.5,41343.68,0,0,0,0,0,607.99347 +3537,4342,7693,-9,7694,-9,1,1,17,0,0,1,2,0,0,0,3,0,6.6583605,6.245398,0,0,-842.17883,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5677495,0,52,54.51,-9,-9,10,1,1,0,0,0,7,5,1,2632,777139.06,641565.31,165523.97,36888.039,12607.244,1054.0522,6233.6416 +3537,4342,7694,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.0837059,9.6044197,8.9321136,0,0,-971.33759,0,2,3,2021,10,1,10,10,1,1,0,42.936497,42.936497,.05,.05,0,0,0,0,0,0,1,1,0,9.0241556,0,51.43,41,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,2632,777139.06,641565.31,165523.97,36888.039,12607.244,1054.0522,6233.6416 +3538,4343,7695,7696,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,56,2,-80.079491,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8876052,0,0,1,1,0,1.7065496,0,49.08,52.9,49.28,50.19,8.333333333333334,1,1,0,0,0,10,2,1,430,72182.938,15015.057,69914.539,0,575.65271,4203.1191,1647.7246 +3538,4343,7696,7695,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.7492166,6.8851662,10,-2,-2.2381952,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8015027,49.28,50.19,49.08,52.9,8.333333333333334,1,1,0,0,0,10,2,1,430,72182.938,15015.057,69914.539,0,575.65271,4203.1191,1647.7246 +3539,4344,7697,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1080.1091,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.0200925,80.052834,61.911438,0,1,1,0,2.758158,0,42.2,14.42,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,1031,-290717.84,0,0,0,0,0,867.32452 +3540,4345,7698,-9,-9,-9,1,1,60,0,1,0,1,1,-9,0,2,0,6.2144165,6.3385944,0,0,-979.66803,0,3,2,2021,15,5,0,35,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4985523,6.2965159,47.09,40.72,-9,-9,3.333333333333333,1,1,0,0,8,11,2,1,1352,570131.56,86086.773,187640.94,0,0,0,537.83917 +3541,4346,7699,7700,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.8660336,9.5909061,37,0,-21.821806,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8575277,9.1251955,54.2,57.49,52.99,51.28,10,1,1,0,0,8,9,5,1,549.5,4898033,3404441.5,748474.88,5401.8223,0,0,3625.0786 +3541,4346,7700,7699,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,37,0,-.81775415,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0593753,0,52.99,51.28,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,549.5,4898033,3404441.5,748474.88,5401.8223,0,0,3625.0786 +3542,4347,7701,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.578517,4.7014861,0,0,-1015.2822,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5000657,4.4175563,46.5,58.26,-9,-9,5,1,1,0,0,3,6,2,1,790,159147.67,0,301779.5,0,0,0,445.88022 +3543,4348,7702,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4201317,8.4813251,0,4,-3,-83.997726,0,-9,-9,2021,9,0,43,42,1,0,0,14.943139,14.943139,.05,.05,0,0,0,0,0,0,0,0,0,.17628786,0,54.1,59.11,49.46,57.04,8.333333333333334,1,1,0,0,9,9,5,0,408,-28427.988,-40986.07,175805.34,112639.4,0,0,1417.173 +3543,4349,7703,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.2131443,8.5126276,0,4,3,9.2796001,0,-9,-9,2021,11,2,41,45,1,2,0,11.285769,11.285769,0,0,0,0,0,0,0,0,0,0,0,.30971208,0,49.46,57.04,54.1,59.11,5,1,1,0,0,3,9,5,0,87,98961.195,45878.574,0,0,0,0,1490.0046 +3544,4350,7704,-9,7706,7705,1,0,26,0,0,0,2,2,-9,0,3,8.0800858,8.4349566,0,0,0,-1015.7213,0,2,1,2021,23,8,96,2,1,8,1,4.3634491,4.3634491,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,49.04,-9,-9,3.333333333333333,4,2,0,1,7,8,4,1,1125,-13629.005,0,0,0,0,0,2137.2498 +3544,4351,7705,7706,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.3644252,7.2656884,0,37,5,-89.369606,0,-9,-9,2021,17,5,25,-9,1,5,0,7.0041323,7.0041323,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,43.95,47.88,18.43,6,4,5,0,0,12,8,3,1,689.5,1390715.5,81282.516,783234,0,0,0,1693.2815 +3544,4351,7706,7705,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.2237177,7.6090446,6.3373547,37,-5,-14.218513,0,-9,-9,2021,11,0,25,24,1,0,0,9.0277681,9.0277681,0,0,0,0,0,0,0,7,1,1,0,6.4288049,6.1207438,47.88,18.43,40.24,43.95,5,1,1,0,0,12,8,3,1,689.5,1390715.5,81282.516,783234,0,0,0,1693.2815 +3545,4352,7707,7708,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.9984298,7.1841373,9,4,-44.497036,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8243227,6.6252923,61.02,44.8,51.77,58.57,8.333333333333334,1,1,0,0,7,13,4,1,468.5,895678.69,641272.88,185265.39,0,0,0,2967.251 +3545,4352,7708,7707,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7264948,7.9361153,9,-4,14.053335,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2045527,51.77,58.57,61.02,44.8,8.333333333333334,1,1,0,0,4,13,4,1,468.5,895678.69,641272.88,185265.39,0,0,0,2967.251 +3546,4353,7709,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,8.0814705,7.9803929,0,0,0,-931.6012,-9,-9,-9,2021,8,1,60,0,1,1,0,5.3413591,5.3413591,0,0,0,0,0,0,0,0,0,0,0,2.5179219,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,246,0,0,0,0,0,0,1323.1818 +3547,4354,7710,-9,7711,7713,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.3875,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7711,7713,-9,-9,1,0,51,0,3,0,1,1,-9,0,4,8.9034996,8.9816132,0,8,-1,14.518021,0,2,2,2021,8,1,37,37,1,1,0,33.147926,33.147926,.05,.05,0,0,0,0,0,0,1,1,0,2.2651052,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7712,-9,7711,7713,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.059,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7713,7711,-9,-9,1,1,52,0,3,0,1,1,-9,0,4,8.5463428,8.6266975,0,8,1,1.0861999,0,3,2,2021,6,0,40,40,1,0,0,15.289301,15.289301,.05,.05,0,0,0,0,0,2,1,1,0,2.2879241,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7714,-9,7711,7713,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-998.36932,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3548,4355,7715,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,7.4484024,8.0099201,0,0,0,-1035.9976,0,3,2,2021,11,0,32,40,1,0,0,7.7541876,7.7541876,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,9,13,3,0,1298.5,-7314.4922,-4451.0742,0,0,-244.90213,0,1288.3801 +3548,4355,7716,-9,7715,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.7452,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1298.5,-7314.4922,-4451.0742,0,0,-244.90213,0,1288.3801 +3549,4356,7717,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9750028,7.1398144,0,0,-1104.6299,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2176399,50.21,43.12,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,1418,523568.94,304498.34,138078.64,0,7235.7739,0,1565.9362 +3550,4357,7718,7720,-9,-9,1,1,37,0,1,0,1,1,-9,0,3,8.1670237,7.9060793,0,3,0,-2.6009927,0,2,2,2021,12,0,37,37,1,0,0,9.7419367,9.7419367,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.36,56.72,55.23,46.15,8.333333333333334,1,1,0,0,11,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3550,4357,7719,-9,7720,7718,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.6134,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3550,4357,7720,7718,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,0,0,3,0,63.216473,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,55.23,46.15,35.36,56.72,8.333333333333334,1,1,0,0,3,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3551,4358,7721,7722,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.7417955,8.7669497,0,22,3,-22.055544,-9,1,1,2021,12,0,38,0,1,0,0,21.576998,21.576998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,34.3,58.7,6.666666666666667,4,2,0,0,13,9,5,0,221.5,2151791,1521108.5,272574.31,0,0,0,2798.0815 +3551,4358,7722,7721,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0273342,7.9764609,0,13,-3,-91.962318,0,-9,-9,2021,12,0,33,33,1,0,0,10.764342,10.764342,.05,.05,0,0,0,0,0,0,0,0,0,.21296678,0,34.3,58.7,54.37,54.8,3.333333333333333,4,2,0,1,13,9,5,0,221.5,2151791,1521108.5,272574.31,0,0,0,2798.0815 +3552,4359,7723,-9,7726,7725,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1113.8115,-9,1,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7724,-9,7726,7725,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1202.224,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7725,7726,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.4465265,8.4194231,0,6,2,28.206577,0,2,3,2021,7,0,40,40,1,0,0,13.647325,13.647325,.05,.05,0,0,0,0,0,0,1,1,0,3.5739405,0,61.11,48.86,54.58,51.82,8.333333333333334,1,1,0,0,12,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7726,7725,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.3851795,8.3508606,0,6,-2,13.164332,0,2,3,2021,10,0,50,40,1,0,0,8.1753254,8.1753254,.05,.05,0,0,0,0,0,0,1,1,0,2.6522532,0,54.58,51.82,61.11,48.86,8.333333333333334,1,1,0,0,13,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3553,4360,7727,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1168.6578,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,2.7038872,0,25.798651,0,1,1,0,3.3438628,0,57.74,33.09,-9,-9,6.666666666666667,4,5,0,0,2,9,1,0,868,78219.813,0,0,0,0,0,1498.7399 +3554,4361,7728,7729,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.4241791,7.3306079,0,12,-2,-81.428802,-9,-9,-9,2021,14,5,24,0,1,5,0,8.6387148,8.6387148,0,0,0,0,0,0,0,0,0,0,0,7.1186466,0,44.39,63.4,59.53,56.44,8.333333333333334,1,1,0,0,6,9,5,1,719.5,2088025.6,1203072.5,981455.25,249430.41,0,0,5198.4814 +3554,4361,7729,7728,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.9244328,9.1180954,6.0879955,1,2,31.322889,-9,-9,-9,2021,6,0,42,0,1,0,0,27.715965,27.715965,.05,.05,0,0,0,0,0,0,0,0,0,5.2009296,6.5829139,59.53,56.44,44.39,63.4,10,1,1,0,0,10,9,5,1,719.5,2088025.6,1203072.5,981455.25,249430.41,0,0,5198.4814 +3555,4362,7730,7731,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6771431,8.8769321,0,23,0,93.570526,0,3,3,2021,19,7,60,60,1,7,0,10.530991,10.530991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.11,50.11,48.06,45.53,5,1,1,0,0,11,13,5,1,371.5,1442350.8,989846.69,278736.94,0,0,0,4067.6929 +3555,4362,7731,7730,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7105689,8.021306,0,23,0,-2.1839573,0,2,2,2021,13,1,39,37,1,1,0,8.1112385,8.1112385,0,0,0,0,0,0,0,2,0,0,0,0,0,48.06,45.53,44.11,50.11,6.666666666666667,1,1,0,0,10,13,5,1,371.5,1442350.8,989846.69,278736.94,0,0,0,4067.6929 +3555,4363,7732,-9,7731,7730,1,1,19,0,0,0,2,2,-9,0,3,8.0164394,8.4418468,0,0,0,-962.2395,0,2,2,2021,6,0,58,42,1,0,1,5.7808275,5.7808275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,1444,-166483.11,-46922.285,0,0,0,0,2026.7589 +3555,4364,7733,-9,7731,7730,1,1,19,0,0,0,2,2,-9,0,4,7.4121528,7.7160807,0,0,0,-1057.2186,0,2,2,2021,4,0,39,41,1,0,1,5.4920826,5.4920826,0,0,0,0,0,0,0,0,0,0,0,0,0,62.08,48.35,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,915,-58526.262,0,0,0,0,0,1835.702 +3556,4365,7734,-9,-9,7736,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1009.2346,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3556,4365,7735,7736,7734,-9,1,0,29,0,0,0,1,1,-9,0,2,0,0,0,7,2,135.46535,0,2,-9,2021,12,0,0,20,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.7602808,0,39.39,37.66,43.41,31.66,5,2,3,1,0,3,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3556,4365,7736,7735,7734,-9,1,1,27,0,0,0,1,1,-9,0,1,6.2144079,6.2110925,0,7,-2,-102.90484,0,3,-9,2021,16,4,68,0,1,4,0,.87911004,.87911004,.05,.05,0,0,0,0,0,0,1,1,0,4.4567914,0,43.41,31.66,39.39,37.66,5,2,3,0,1,9,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3557,4366,7737,7738,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5362253,8.4160738,0,5,-3,89.926445,0,2,3,2021,6,0,30,30,1,0,0,17.800974,17.800974,0,0,0,0,0,0,0,0,1,1,0,2.9684317,0,57.16,56.15,32.8,59.14,8.333333333333334,1,1,0,0,8,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3557,4366,7738,7737,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.2702951,8.1281672,0,5,3,-17.865814,0,-9,-9,2021,16,4,48,57,1,4,0,11.390263,11.390263,0,0,0,0,0,0,0,0,1,1,0,0,0,32.8,59.14,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3557,4366,7739,-9,7737,7738,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1544,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3558,4367,7740,7741,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.5605249,8.6922503,0,25,3,-.63096428,0,2,3,2021,10,0,39,39,1,0,0,14.465659,14.465659,0,0,0,0,0,0,0,0,0,0,0,3.9290104,0,61.58,27.28,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,376,117495.2,0,328340.44,98901.672,0,0,3334.6079 +3558,4367,7741,7740,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,8.5200634,8.7074318,0,25,-3,19.08263,0,2,2,2021,6,0,39,39,1,0,0,13.733914,13.733914,0,0,0,0,0,0,0,0,0,0,0,3.8765781,0,57.06,57.76,61.58,27.28,8.333333333333334,1,1,0,0,9,8,5,1,376,117495.2,0,328340.44,98901.672,0,0,3334.6079 +3559,4368,7742,7743,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.7579393,6.7920847,44,-3,-122.31985,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2117275,6.762022,50.27,38.12,63.4,45.23,6.666666666666667,1,1,0,1,8,1,2,1,519.5,882129.19,564549.38,217986.08,0,0,0,1992.9763 +3559,4368,7743,7742,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5628343,6.3867464,44,3,58.363167,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3614836,6.1524,63.4,45.23,50.27,38.12,8.333333333333334,1,1,0,1,10,1,2,1,519.5,882129.19,564549.38,217986.08,0,0,0,1992.9763 +3560,4369,7744,7745,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.3901763,5.8354139,5,3,-102.65092,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3382869,53,47,49.11,28.94,7,1,1,0,0,0,6,2,1,1255,259711.22,32871.832,0,0,0,0,1957.4946 +3560,4369,7745,7744,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,5,-3,92.202332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,28.94,53,47,8.333333333333334,1,1,0,0,0,6,2,1,1255,259711.22,32871.832,0,0,0,0,1957.4946 +3561,4370,7746,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.9259,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,.95827591,0,19.998699,0,1,1,0,0,0,50.19,31.34,-9,-9,10,1,1,0,0,0,9,1,0,420,0,0,0,0,0,0,1166.233 +3562,4371,7747,7748,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.7256966,9.7997341,6.6718774,8,0,91.068787,0,-9,-9,2021,11,0,60,45,1,0,0,27.473154,27.473154,.05,.05,0,0,0,0,0,0,0,0,0,1.4290142,5.978394,52,54.51,55.52,38,1.666666666666667,1,1,0,0,11,1,5,1,837,1362481.9,618811.31,245153.53,0,0,0,14855.049 +3562,4371,7748,7747,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.9961705,8.1145372,0,15,0,-6.0778093,0,3,2,2021,9,0,60,37,1,0,0,7.1085963,7.1085963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.52,38,52,54.51,1.666666666666667,1,1,0,0,9,1,5,1,837,1362481.9,618811.31,245153.53,0,0,0,14855.049 +3563,4372,7749,7750,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,6.7431707,6.772891,0,12,1,-57.376274,0,3,2,2021,10,0,24,18,1,0,0,4.250258,4.250258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,44,53.95,8.333333333333334,1,1,0,0,2,11,3,1,568,1378991.8,1241135.5,120271.91,0,0,0,1935.8967 +3563,4372,7750,7749,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0695152,7.9935565,0,12,-1,12.747629,0,2,2,2021,11,1,33,32,1,1,0,11.987985,11.987985,0,0,0,0,0,0,0,0,0,0,0,0,0,44,53.95,52.4,52.91,6.666666666666667,1,1,0,0,13,11,3,1,568,1378991.8,1241135.5,120271.91,0,0,0,1935.8967 +3563,4373,7751,-9,7750,7749,1,0,18,0,0,0,2,2,1,0,5,8.2418137,8.0999212,0,0,0,-1032.5792,-9,2,3,2021,12,2,40,0,1,2,1,9.7644529,9.7644529,.05,.05,0,0,0,0,0,0,0,0,0,.67171139,0,33.22,57.86,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,1609,175652.83,52403.52,0,0,0,0,1612.5187 +3564,4374,7752,7753,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5006313,9.2749262,6.8947568,9,2,22.496019,0,2,3,2021,0,0,50,44,1,0,0,29.869993,29.869993,.05,.05,0,0,0,0,0,2,0,0,0,0,7.747324,57.16,56.15,57.32,29.38,8.333333333333334,1,1,0,0,11,8,5,1,496.5,2537580,1985113.8,298266.94,0,10623.477,0,4892.1587 +3564,4374,7753,7752,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.1780872,8.3080883,0,9,-2,-.017289815,0,2,1,2021,10,0,55,55,1,0,0,7.9466071,7.9466071,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.32,29.38,57.16,56.15,5,1,1,0,0,11,8,5,1,496.5,2537580,1985113.8,298266.94,0,10623.477,0,4892.1587 +3565,4375,7754,7755,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.155179,8.0015354,0,7,12,-82.592232,0,3,2,2021,7,0,26,30,1,0,0,15.77652,15.77652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.79,52.62,1.666666666666667,1,1,0,0,9,9,4,1,572,212428.52,175841.19,0,0,12115.506,0,2683.293 +3565,4375,7755,7754,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0262098,7.8459277,0,7,-12,-24.153717,0,2,2,2021,7,0,40,48,1,0,0,9.5120316,9.5120316,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,57.33,53.46,8.333333333333334,1,1,0,0,9,9,4,1,572,212428.52,175841.19,0,0,12115.506,0,2683.293 +3566,4376,7756,7757,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,9,-3,-16.927267,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.62,48.9,43.32,63.94,8.333333333333334,1,1,0,0,2,11,5,1,331.5,1072192.3,902718.5,350565.06,47971,0,0,2972.5366 +3566,4376,7757,7756,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.3214731,8.3781185,0,9,3,131.45496,0,2,3,2021,11,0,42,50,1,0,0,15.940978,15.940978,0,0,.05,0,0,0,0,0,0,0,0,7.4963274,0,43.32,63.94,46.62,48.9,8.333333333333334,1,1,0,0,10,11,5,1,331.5,1072192.3,902718.5,350565.06,47971,0,0,2972.5366 +3567,4377,7758,7759,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.8791952,7.6786108,0,28,-1,64.760674,0,-9,-9,2021,13,2,18,7,1,2,0,12.89303,12.89303,0,0,0,0,0,0,0,0,1,1,0,0,0,48.43,47.89,45.84,50.44,1.666666666666667,1,1,0,1,7,5,3,1,918.5,286916.56,100310.71,146116.16,0,0,0,2261.8462 +3567,4377,7759,7758,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,1,41.217594,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,45.84,50.44,48.43,47.89,8.333333333333334,4,5,0,0,2,5,3,1,918.5,286916.56,100310.71,146116.16,0,0,0,2261.8462 +3568,4378,7760,7761,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.2784986,7.1437402,0,7,-3,-17.023228,0,-9,-9,2021,8,0,24,40,1,0,0,7.0837226,7.0837226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.64,55.03,8.333333333333334,1,1,0,0,9,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7761,7760,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.2519827,8.0447588,0,7,3,84.626671,0,-9,-9,2021,13,1,40,85,1,1,0,12.607033,12.607033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.64,55.03,57.16,56.15,8.333333333333334,1,1,0,0,7,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7762,-9,7760,7761,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1547,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7763,-9,7760,7761,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.64984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3569,4379,7764,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9300671,7.7014604,0,0,0,-1051.95,0,3,3,2021,13,3,28,28,1,3,0,9.6116247,9.6116247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.71,59.35,-9,-9,8.333333333333334,3,4,0,0,7,2,4,1,1422,930552.75,612776.63,189900.05,0,2362.5686,0,1397.1621 +3570,4380,7765,7766,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.1867876,7.9752393,0,12,19,9.7761555,0,-9,-9,2021,12,1,40,40,1,1,0,6.9147139,6.9147139,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.87,54.33,55.36,54.24,6.666666666666667,1,1,0,0,8,5,3,1,895.5,646589.31,241040.53,358568.28,0,0,0,2823.7034 +3570,4380,7766,7765,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.0026197,8.1503429,0,18,-19,-160.69281,0,3,3,2021,7,0,39,38,1,0,0,7.7310281,7.7310281,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,46.87,54.33,8.333333333333334,1,1,0,0,11,5,3,1,895.5,646589.31,241040.53,358568.28,0,0,0,2823.7034 +3571,4381,7767,7768,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.467453,8.3084621,0,3,0,-10.670292,0,-9,-9,2021,19,8,45,45,1,8,0,13.490448,13.490448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.05,64.52,30.67,65.95,6.666666666666667,1,1,0,0,9,5,5,1,483.5,112482.06,38244.496,162340.7,114426.33,1517.0437,0,2707.6265 +3571,4381,7768,7767,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.2571583,8.281949,0,3,0,51.680168,0,-9,-9,2021,18,8,35,60,1,8,0,8.2920332,8.2920332,.05,.05,0,0,0,0,0,0,0,0,0,1.9924803,0,30.67,65.95,30.05,64.52,8.333333333333334,1,1,0,0,2,5,5,1,483.5,112482.06,38244.496,162340.7,114426.33,1517.0437,0,2707.6265 +3572,4382,7769,7770,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.9698257,8.9213018,0,23,10,125.27174,0,3,3,2021,10,0,40,30,1,0,0,22.773314,22.773314,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.4,50.21,60.57,46.44,5,2,3,0,0,15,8,4,1,594.5,1249406.5,1046773,377769.66,148676.75,27861.871,0,3419.2688 +3572,4382,7770,7769,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.208704,8.0256863,0,23,-10,-18.418793,0,3,3,2021,10,0,30,30,1,0,0,12.125213,12.125213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.57,46.44,52.4,50.21,6.666666666666667,2,3,0,0,11,8,4,1,594.5,1249406.5,1046773,377769.66,148676.75,27861.871,0,3419.2688 +3573,4383,7771,-9,7772,7773,1,0,17,0,0,0,2,2,1,0,2,0,0,0,0,0,-1033.7117,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.61,52.25,-9,-9,5,1,1,1,1,0,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3573,4383,7772,7773,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,10,11,-35.950874,0,3,3,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,30.58,22.51,53.77,45.91,1.666666666666667,1,1,0,1,5,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3573,4383,7773,7772,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,5.8458261,5.4456811,0,10,-11,90.248428,0,-9,-9,2021,13,1,32,32,1,1,0,1.1971035,1.1971035,0,0,0,0,0,0,0,7,1,1,0,0,0,53.77,45.91,30.58,22.51,5,1,1,0,1,7,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3574,4384,7774,-9,7778,7776,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.5299,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7775,-9,7778,7776,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.5885,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7776,7778,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.3823586,8.3525238,0,3,2,41.766312,0,-9,-9,2021,9,0,20,0,1,1,0,23.032866,23.032866,.05,.05,0,0,0,0,0,0,1,1,0,7.4265351,0,51,56,54.2,57.49,8,2,3,0,0,1,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7777,-9,7778,7776,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1552,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7778,7776,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,5.9046826,5.6781206,0,10,-2,14.201733,0,-9,-9,2021,9,0,24,8,1,0,0,1.6921778,1.6921778,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,2,3,0,0,8,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3575,4385,7779,7780,-9,-9,1,1,62,0,0,0,1,1,-9,1,1,7.0222378,7.248363,0,21,8,60.898945,0,3,3,2021,25,12,6,6,1,12,0,26.6394,26.6394,0,0,0,0,0,0,0,0,1,1,0,0,0,36.15,25.71,34.63,39.8,1.666666666666667,2,3,0,1,7,9,2,1,2015.5,714336,208720.92,455787.41,0,0,0,281.86102 +3575,4385,7780,7779,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,31,-8,-111.01476,0,1,1,2021,21,6,0,35,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.63,39.8,36.15,25.71,3.333333333333333,2,3,0,0,10,9,2,1,2015.5,714336,208720.92,455787.41,0,0,0,281.86102 +3576,4386,7781,7782,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.0887184,7.9962687,0,7,-3,122.65183,0,3,3,2021,5,0,40,41,1,0,0,9.4814672,9.4814672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,50.57,44.76,6.666666666666667,1,1,0,0,8,6,4,0,541.5,38487.102,145453.72,0,0,16496.348,3229.4351,2221.5427 +3576,4386,7782,7781,-9,-9,1,0,41,0,0,0,3,3,-9,0,2,7.4198599,7.6979303,0,7,3,135.2637,0,3,3,2021,12,2,27,32,1,2,0,6.19204,6.19204,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,44.76,52,54.51,6.666666666666667,1,1,0,0,8,6,4,0,541.5,38487.102,145453.72,0,0,16496.348,3229.4351,2221.5427 +3577,4387,7783,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1084.9486,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,612,0,0,0,0,0,0,0 +3577,4388,7784,-9,7783,-9,1,0,62,0,0,0,1,1,-9,0,4,8.0483885,8.6172075,7.9080486,0,0,-1034.1804,0,2,1,2021,6,0,34,55,1,0,0,11.942266,11.942266,0,0,0,0,0,0,0,0,0,0,0,0,7.834898,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,1949,1126470.9,95141.086,841747.13,48995.434,0,0,2029.7655 +3578,4389,7785,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.0328751,6.9803276,0,0,0,-944.52625,0,3,3,2021,17,8,16,0,1,8,0,7.6308475,7.6308475,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,41.7,-9,-9,5,1,1,0,0,4,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3578,4389,7786,-9,7785,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.7595,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3578,4389,7787,-9,7785,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5503,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3579,4390,7788,7789,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,69,-5,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9973741,0,43.01,50.39,56,44,6.666666666666667,1,1,0,0,0,10,1,1,1077,431172.13,86201.227,294500.06,0,0,0,1769.1278 +3579,4390,7789,7788,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,0,0,69,5,0,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,125.84235,0,0,1,1,0,0,0,56,44,43.01,50.39,8,1,1,0,0,0,10,1,1,1077,431172.13,86201.227,294500.06,0,0,0,1769.1278 +3580,4391,7790,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.5975914,8.5430126,0,0,0,-982.72034,0,2,1,2021,9,1,57,45,1,1,0,12.078111,12.078111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.93,51.29,-9,-9,6.666666666666667,1,1,0,0,12,10,5,0,372,1182761,1001600.8,139316.36,70616.961,6550.8857,504.60974,2864.8979 +3581,4392,7791,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8781509,8.4306946,0,0,0,-1002.1611,0,2,3,2021,12,0,41,45,1,0,0,14.857601,14.857601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,137,-51896.742,135156.7,0,0,0,0,2365.5891 +3582,4393,7792,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.4988623,5.5061102,0,0,-979.75696,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4620295,5.5000467,46.1,38.1,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1500,121852.26,-17520.414,127083.22,0,0,0,210.4913 +3583,4394,7793,7794,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,0,6.0019584,5.8781238,36,3,13.628271,0,3,3,2021,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1348925,6.5232782,50.63,50.99,44,38,6.666666666666667,1,1,0,0,10,7,3,1,550,1065441,-79774.656,849167.56,0,0,0,-1062.8342 +3583,4394,7794,7793,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6780572,7.7621551,0,8,-3,-10.185204,0,-9,-9,2021,10,1,38,40,1,1,0,7.2759366,7.2759366,0,0,0,0,0,0,0,0,0,0,0,0,0,44,38,50.63,50.99,3.333333333333333,1,1,0,0,9,7,3,1,550,1065441,-79774.656,849167.56,0,0,0,-1062.8342 +3584,4395,7795,7796,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.6662927,5.7401338,44,1,-53.341858,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8638043,5.6128931,55,52,42.61,54.85,8,1,1,0,1,0,9,2,0,1094,554011.63,155692.88,318826.28,36478.629,934.78827,0,1056.6365 +3584,4395,7796,7795,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,44,-1,-87.679688,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.61,54.85,55,52,6.666666666666667,1,1,0,1,2,9,2,0,1094,554011.63,155692.88,318826.28,36478.629,934.78827,0,1056.6365 +3584,4396,7797,-9,7796,7795,1,1,37,0,0,0,2,2,-9,0,4,8.1755743,8.715064,0,0,0,-921.53973,0,2,3,2021,10,0,40,50,1,1,0,13.37474,13.37474,0,0,.05,0,0,0,0,0,1,1,0,3.8865571,0,51,56,-9,-9,7,1,1,0,0,1,9,4,0,263,-73027.891,-100709.7,122368.34,85939.508,0,0,1647.2189 +3585,4397,7798,7799,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.5416684,7.4355354,0,7,-2,48.77726,0,2,3,2021,8,0,80,70,1,0,0,2.615272,2.615272,.05,.05,0,0,0,0,0,0,0,0,0,2.4318676,0,62.39,56.71,46.75,56.99,10,1,1,0,0,8,11,5,1,850.5,1827388.5,1681327,195651.88,89755.109,0,0,2727.8901 +3585,4397,7799,7798,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5325785,8.5130615,0,7,2,4.4778972,0,2,2,2021,14,2,72,60,1,2,0,8.0658598,8.0658598,0,0,0,0,0,0,0,0,0,0,0,1.0225825,0,46.75,56.99,62.39,56.71,8.333333333333334,1,1,0,0,8,11,5,1,850.5,1827388.5,1681327,195651.88,89755.109,0,0,2727.8901 +3585,4398,7800,-9,7799,7798,1,1,25,0,0,0,1,1,-9,0,5,8.3695354,8.1380539,0,0,0,-992.00372,0,1,2,2021,7,0,53,43,1,0,1,7.3086982,7.3086982,.05,.05,0,0,0,0,0,0,0,0,0,3.7466924,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,77,-78720.781,57656.426,0,0,-474.15796,0,1391.626 +3585,4399,7801,-9,7799,7798,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-971.29028,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,11,2,1,1138,105626.08,0,0,0,0,0,376.8757 +3586,4400,7802,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6392617,7.6783528,0,0,-1004.387,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8704133,7.6290798,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,809,387517.44,176608.2,161828.69,0,0,0,1716.1555 +3587,4401,7803,7804,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7838659,9.0805798,0,6,-1,-73.865967,0,-9,-9,2021,9,1,50,40,1,1,0,15.714039,15.714039,.05,.05,0,0,0,0,0,0,0,0,0,.57285583,0,44.07,54.28,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,388.5,52924.219,89707.398,193292.84,189618.53,0,0,5109.0981 +3587,4401,7804,7803,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.8658247,8.8817081,0,6,1,-75.542923,0,1,1,2021,7,0,55,60,1,0,0,18.246435,18.246435,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.07,54.28,8.333333333333334,1,1,0,0,6,2,5,1,388.5,52924.219,89707.398,193292.84,189618.53,0,0,5109.0981 +3588,4402,7805,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,5,-4,-95.920494,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,25.07,63.24,42.39,3.333333333333333,1,1,0,1,1,4,2,0,593,113699.95,0,0,0,0,0,1754.8499 +3588,4403,7806,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.3130622,7.3361745,0,5,4,53.632404,-9,-9,-9,2021,12,0,23,0,1,0,0,9.4225693,9.4225693,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,28.23,25.07,8.333333333333334,1,1,0,0,0,4,2,0,177,-94531.617,-19185.25,0,0,0,0,743.29352 +3589,4404,7807,7808,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.7350769,8.5437403,0,10,2,-4.741549,0,2,2,2021,8,0,48,48,1,0,0,14.610396,14.610396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.47,52.37,57.06,57.76,8.333333333333334,1,1,0,0,9,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3589,4404,7808,7807,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.779973,8.5399485,0,10,-2,-195.12711,0,2,2,2021,9,0,40,40,1,0,0,20.092228,20.092228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.47,52.37,8.333333333333334,1,1,0,0,9,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3589,4404,7809,-9,7808,7807,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.8796,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3590,4405,7810,7811,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.4431143,8.4736462,4.1413884,25,4,-100.45409,0,3,3,2021,3,0,50,44,1,0,0,11.71126,11.71126,0,0,0,0,0,0,0,7,0,0,0,5.1425991,4.8356605,62.27,42.94,54,53,10,1,1,0,0,10,9,5,1,814.5,534573.19,266299.78,250614.91,33806.887,0,0,3820.0649 +3590,4405,7811,7810,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2819557,8.5471115,0,7,-4,10.815018,0,-9,-9,2021,8,0,25,25,1,0,0,25.131674,25.131674,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,53,62.27,42.94,8,1,1,0,0,1,9,5,1,814.5,534573.19,266299.78,250614.91,33806.887,0,0,3820.0649 +3591,4406,7812,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.6103268,6.0277715,0,0,-1060.6528,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.6556673,64.43000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,731,209429.98,110975.94,144809.89,0,0,0,1161.8949 +3592,4407,7813,7814,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.2479224,4.9763441,43,-7,-74.65052,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.572803,4.4612713,58.5,44.67,62.4,48.33,8.333333333333334,1,1,0,0,0,7,4,1,1105,1495667.3,304036.63,599567.13,0,0,0,5044.5869 +3592,4407,7814,7813,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,8.5922747,8.3473606,43,7,-100.06823,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1269007,8.3031607,62.4,48.33,58.5,44.67,10,1,1,0,0,0,7,4,1,1105,1495667.3,304036.63,599567.13,0,0,0,5044.5869 +3593,4408,7815,7817,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0416188,0,57.16,56.15,28.33,62.63,8.333333333333334,1,1,0,0,7,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7816,-9,7815,7817,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.231,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7817,7815,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,0,0,0,1,7,0,-9,2,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0969281,0,28.33,62.63,57.16,56.15,5,1,1,0,0,13,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7818,-9,7815,7817,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.8783,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3594,4409,7819,7820,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.4243598,7.791503,0,40,-1,-54.334442,0,1,1,2021,4,0,20,44,1,0,0,13.424843,13.424843,.05,.05,0,0,0,0,0,0,0,0,0,3.9474652,0,54.77,55.87,54.79,55.86,10,1,1,0,0,9,9,5,1,975,3799329,2624859.5,909589.88,0,0,0,4454.1777 +3594,4409,7820,7819,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.3274899,9.2797108,0,41,1,-19.329182,0,3,2,2021,7,0,50,50,1,0,0,25.34524,25.34524,.05,.05,0,0,0,0,0,0,0,0,0,4.5284085,0,54.79,55.86,54.77,55.87,8.333333333333334,1,1,0,0,9,9,5,1,975,3799329,2624859.5,909589.88,0,0,0,4454.1777 +3595,4410,7821,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.3148422,6.0918045,0,0,-940.64966,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0656333,53.38,52.51,-9,-9,8.333333333333334,1,1,0,0,9,1,2,1,314,272611.63,66335.461,103297.58,0,0,0,885.45544 +3596,4411,7822,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.2973995,7.9073706,0,0,0,-1029.4459,0,3,2,2021,11,0,40,40,1,0,0,7.6930866,7.6930866,.05,.05,.05,0,0,0,0,0,1,1,0,5.0658464,0,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,543,715983.19,88383.367,0,0,0,0,907.78784 +3597,4412,7823,7824,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6444283,7.6581278,0,7,1,3.2457895,0,-9,-9,2021,9,0,24,24,1,1,0,10.731494,10.731494,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,51,54,8,2,3,0,0,8,8,3,0,335,697581.44,463449.88,290019.94,0,0,0,1045.269 +3597,4412,7824,7823,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,0,0,25,-1,42.41608,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,53,54,8,2,3,0,0,0,8,3,0,335,697581.44,463449.88,290019.94,0,0,0,1045.269 +3598,4413,7825,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,9.6275892,9.5952187,0,0,0,-995.95935,0,2,2,2021,10,0,40,50,1,0,0,42.883953,42.883953,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,4,5,0,359,438749.94,167056.56,104439.03,109663.27,0,0,5127.6807 +3598,4414,7826,-9,7825,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-980.25763,-9,2,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3455555,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,184,-8812.9141,0,0,0,0,0,457.92972 +3599,4415,7827,-9,7828,7829,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-893.98248,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7828,7829,-9,-9,1,0,36,1,4,0,1,1,-9,0,5,7.9689288,7.867825,0,9,-1,-70.223404,-9,2,2,2021,8,0,26,0,1,0,0,9.780961,9.780961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,44.87,53.66,8.333333333333334,1,1,0,0,8,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7829,7828,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.6472149,8.6235905,0,9,1,79.811562,0,2,2,2021,8,0,42,48,1,0,0,16.161608,16.161608,.05,.05,0,0,0,0,0,0,1,1,0,8.192112,0,44.87,53.66,60.02,56.42,8.333333333333334,1,1,0,0,8,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7830,-9,7828,7829,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.7947,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7831,-9,7828,7829,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.0999,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7832,-9,7828,7829,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-932.13269,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3600,4416,7833,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.2702398,8.4939919,0,0,0,-1066.8406,0,3,3,2021,9,0,42,42,1,0,0,15.242117,15.242117,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.39,63.4,-9,-9,8.333333333333334,1,1,0,0,15,9,5,1,228,156588.41,23561.764,144149.91,131054.78,6051.7944,7906.1182,1124.928 +3601,4417,7834,7835,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.6072626,8.8154202,7.2601991,11,-1,-142.22411,0,-9,-9,2021,14,3,38,45,1,3,0,15.403909,15.403909,.05,.05,0,0,0,0,0,0,1,1,0,6.7588625,7.6366491,50.72,46.82,36.53,31.88,8.333333333333334,1,1,0,0,7,4,5,1,1170,1172929.8,787417.75,217081.09,0,0,0,3648.5186 +3601,4417,7835,7834,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.0074282,4.7453346,41,1,-180.32031,0,2,-9,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,1,0,3.9642997,0,0,1,1,0,0,4.6393342,36.53,31.88,50.72,46.82,3.333333333333333,1,1,0,0,1,4,5,1,1170,1172929.8,787417.75,217081.09,0,0,0,3648.5186 +3601,4418,7836,-9,7835,7834,1,0,26,0,0,0,2,2,-9,1,1,0,0,0,0,0,-904.87585,0,2,1,2021,36,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.86,55.47,-9,-9,0,1,1,0,0,1,4,1,1,442,132802.72,0,0,0,0,0,1818.0251 +3602,4419,7837,7838,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,0,0,21,6,-72.251488,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,33.75,50.58,40.29,8.333333333333334,1,1,0,1,0,4,4,1,1889.5,1600306.5,1324795.5,125387.11,0,0,0,2547.0986 +3602,4419,7838,7837,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.405777,8.6526747,7.1593494,19,-6,-47.973408,0,2,1,2021,7,0,80,70,1,0,0,6.4891853,6.4891853,0,0,0,0,0,0,0,0,1,1,0,0,7.5330119,50.58,40.29,59.31,33.75,3.333333333333333,1,1,0,0,11,4,4,1,1889.5,1600306.5,1324795.5,125387.11,0,0,0,2547.0986 +3603,4420,7839,7840,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.5645032,7.2818003,0,17,-7,37.052914,0,1,1,2021,9,0,15,16,1,0,0,17.133684,17.133684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,58.84,47.11,8.333333333333334,2,3,0,0,11,8,5,1,915,1516048.3,455478.38,847693.88,0,0,0,4511.4893 +3603,4420,7840,7839,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.5855665,9.5319071,0,17,7,-133.55418,0,1,1,2021,10,0,50,35,1,0,0,33.416988,33.416988,.05,.05,0,0,0,0,0,0,0,0,0,3.0531671,0,58.84,47.11,58.47,50.22,8.333333333333334,2,3,0,0,9,8,5,1,915,1516048.3,455478.38,847693.88,0,0,0,4511.4893 +3604,4421,7841,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.86487,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84203345,0,62.1,37.96,-9,-9,10,1,1,0,0,0,9,2,1,1243,18205.115,0,0,0,0,0,200.11148 +3605,4422,7842,7843,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1384592,8.2008638,0,5,5,-78.795563,0,-9,-9,2021,10,0,39,39,1,0,0,10.346674,10.346674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,5,2,4,1,613.5,820348,132214.84,130866,136820.16,1704.4786,5520.0156,2490.6367 +3605,4422,7843,7842,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0761147,8.0424757,0,5,-5,-97.364769,0,-9,-9,2021,8,0,37,37,1,0,0,9.4134283,9.4134283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,1,613.5,820348,132214.84,130866,136820.16,1704.4786,5520.0156,2490.6367 +3606,4423,7844,-9,7847,7845,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.50885,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7845,7847,-9,-9,1,1,44,0,2,0,1,1,-9,1,5,9.30023,9.0225344,0,6,0,61.435272,0,3,3,2021,13,3,70,75,1,3,0,17.07753,17.07753,.05,.05,.05,0,0,0,0,2,1,1,0,8.428813,0,40.13,62.93,57.06,57.76,10,1,1,0,0,7,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7846,-9,7847,7845,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.1721,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7847,7845,-9,-9,1,0,44,0,2,0,3,3,-9,0,5,0,0,0,6,0,-59.800846,0,3,2,2021,7,0,0,8,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,40.13,62.93,8.333333333333334,1,1,0,0,3,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3607,4424,7848,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.6640263,6.787818,0,0,0,-1145.8684,0,2,2,2021,7,0,30,38,1,0,0,2.6283619,2.6283619,0,0,0,0,0,0,0,0,0,0,0,0,0,44.83,55.13,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,381,-125893.48,0,0,0,0,1939.1816,672.34265 +3608,4425,7849,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.3925343,8.8989716,0,0,0,-977.52826,0,2,2,2021,12,1,45,42,1,1,0,17.078054,17.078054,0,0,0,0,0,0,0,0,0,0,0,4.2546482,0,58.17,31.47,-9,-9,6.666666666666667,3,4,0,0,13,8,5,1,638,1125536.4,134583.08,897374.31,56375.367,0,0,1860.0745 +3608,4426,7850,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.9284592,8.8987532,0,0,0,-1054.9407,0,-9,-9,2021,9,0,32,60,1,0,0,30.778687,30.778687,.05,.05,0,0,0,0,0,0,0,0,0,7.7309818,0,54.61,49.13,-9,-9,6.666666666666667,3,4,0,1,10,8,5,1,683,89410.742,170476.41,0,0,0,473.47052,3721.05 +3609,4427,7851,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.812933,8.8823948,0,0,0,-923.53693,-9,2,1,2021,5,0,42,0,1,0,0,20.597395,20.597395,.05,.05,0,0,0,0,0,0,0,0,0,2.8527541,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,5,0,248,119103.86,1867.0793,0,0,0,0,3353.1353 +3610,4428,7852,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.4876194,6.2555971,0,0,-919.70331,0,-9,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7301631,0,30.43,64.71000000000001,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1145,-56898.563,185704.31,0,0,1739.4146,0,967.61615 +3611,4429,7853,7855,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.257225,8.0162897,0,11,-3,-69.553871,0,1,2,2021,11,0,30,55,1,0,0,14.040993,14.040993,.05,.05,0,0,0,0,0,0,0,0,0,.59919512,0,48.77,60.16,52.43,55.57,8.333333333333334,1,1,0,0,10,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3611,4429,7854,-9,7853,7855,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.9481,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3611,4429,7855,7853,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,9.3262882,9.0573082,0,11,3,54.673317,0,-9,-9,2021,10,2,45,54,1,2,0,26.840809,26.840809,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,48.77,60.16,8.333333333333334,1,1,0,0,14,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3612,4430,7856,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,0,0,-957.58167,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,321,26030.23,0,0,0,0,-688.90802,513.82001 +3613,4431,7857,7858,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.3001242,9.3974466,0,6,8,-18.311983,0,1,1,2021,8,0,38,40,1,0,0,30.947729,30.947729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50.46,53.68,6.666666666666667,1,1,0,0,6,7,5,1,456,1053362.9,471397.13,572713,75252.773,0,0,5733.3911 +3613,4431,7858,7857,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.631321,8.4860411,0,6,-8,-28.605467,0,1,1,2021,13,2,38,38,1,2,0,14.960578,14.960578,.05,.05,0,0,0,0,0,0,0,0,0,5.6628804,0,50.46,53.68,51.83,57.2,8.333333333333334,1,1,0,0,6,7,5,1,456,1053362.9,471397.13,572713,75252.773,0,0,5733.3911 +3614,4432,7859,7860,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7821531,7.281436,0,29,-3,-51.825329,0,3,2,2021,8,0,30,33,1,0,0,7.8252215,7.8252215,0,0,0,0,0,0,0,0,1,1,0,0,0,50.86,44.52,57.16,56.15,10,2,3,0,0,10,9,5,1,1452.5,625293.38,270448.75,450878.13,26830.664,9585.0654,1069.5903,3920.0481 +3614,4432,7860,7859,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.7102404,8.8031683,0,29,3,47.056377,-9,3,-9,2021,6,0,47,0,1,0,0,19.796362,19.796362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.86,44.52,10,1,1,0,0,10,9,5,1,1452.5,625293.38,270448.75,450878.13,26830.664,9585.0654,1069.5903,3920.0481 +3614,4433,7861,-9,7859,7860,1,0,22,0,0,0,2,2,-9,0,3,7.6663322,7.7291989,0,0,0,-1028.3026,-9,2,3,2021,9,0,38,0,1,0,1,7.1998301,7.1998301,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,6,9,3,1,401,206139.98,0,0,0,0,0,1301.9691 +3615,4434,7862,7863,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.3052158,6.431087,6,2,-74.584129,0,3,3,2021,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7584785,6.1244998,54.77,55.87,48.94,45.02,8.333333333333334,1,1,0,0,6,9,4,1,2113.5,2375385.3,1457232.5,844518.88,0,0,0,3608.9238 +3615,4434,7863,7862,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.3527727,8.3863745,6,-2,-120.84277,0,2,3,2021,11,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8264456,8.3674383,48.94,45.02,54.77,55.87,8.333333333333334,1,1,0,0,6,9,4,1,2113.5,2375385.3,1457232.5,844518.88,0,0,0,3608.9238 +3616,4435,7864,7865,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.5136957,8.4972954,0,31,-11,7.9328008,0,2,2,2021,7,0,47,47,1,0,0,16.870907,16.870907,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.33,53.46,10,1,1,0,0,13,12,5,1,609,2280889,1574900.8,361160.44,0,0,0,3890.3982 +3616,4435,7865,7864,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.2285337,7.963871,10,11,-58.77454,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,8.1688108,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,609,2280889,1574900.8,361160.44,0,0,0,3890.3982 +3617,4436,7866,7867,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-50.40004,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.72,51.29,8.333333333333334,1,1,0,0,9,13,3,1,2632.5,884382.63,337261.56,360911.56,0,36317.281,0,2232.3438 +3617,4436,7867,7866,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.1824694,8.0947552,4.31954,47,5,47.134094,0,3,3,2021,6,0,40,57,1,0,0,9.6952953,9.6952953,0,0,0,1,0,4.1203475,0,0,1,1,0,4.8952088,4.4399595,58.72,51.29,62.49,55.09,0,1,1,0,0,12,13,3,1,2632.5,884382.63,337261.56,360911.56,0,36317.281,0,2232.3438 +3618,4437,7868,7869,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7506757,7.6233282,40,5,-2.1066718,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6825845,7.6840482,56.95,46.69,49.19,36.63,6.666666666666667,1,1,0,0,0,9,3,1,315,1763222.5,728034.5,856584.69,0,2207.9434,0,2684.8347 +3618,4437,7869,7868,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.5933099,7.5531945,2.8985882,40,-5,-33.144791,0,2,2,2021,9,0,23,26,1,0,0,10.19957,10.19957,0,0,0,0,0,0,0,2,1,1,0,3.0703325,3.3000426,49.19,36.63,56.95,46.69,6.666666666666667,1,1,0,0,15,9,3,1,315,1763222.5,728034.5,856584.69,0,2207.9434,0,2684.8347 +3618,4438,7870,-9,7869,7868,1,1,35,0,0,0,2,2,-9,0,4,7.8368416,8.0955896,0,0,0,-1052.6113,0,2,1,2021,7,0,36,37,1,0,1,12.045588,12.045588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.84,48.88,-9,-9,8.333333333333334,1,1,0,0,15,9,4,1,834,82171.805,32917.121,0,0,0,0,949.4248 +3619,4439,7871,-9,7872,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.3262,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,344.5,9839.2129,94410.945,241538.08,161265.88,4466.3525,0,1429.7056 +3619,4439,7872,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.639853,7.1539884,6.1499949,0,0,-882.19409,-9,2,2,2021,10,0,24,0,1,0,0,4.870132,4.870132,.05,.05,0,0,0,0,0,2,1,1,0,6.0033455,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,344.5,9839.2129,94410.945,241538.08,161265.88,4466.3525,0,1429.7056 +3620,4440,7873,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.1390185,6.4186454,0,0,-1054.8324,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2725487,59.15,42.12,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,226,269940.38,117367.27,187208.45,0,0,0,1007.8979 +3621,4441,7874,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.9809599,8.8170214,0,0,0,-1024.0271,0,-9,-9,2021,5,0,50,50,1,0,0,17.388767,17.388767,.05,.05,0,0,0,0,0,0,0,0,0,4.1552916,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,754,-55565.695,55371.934,0,0,0,0,2361.0134 +3622,4442,7875,-9,7876,7878,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-908.95203,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7876,7878,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,18,0,-72.780502,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.55,68.68000000000001,59.43,58.05,3.333333333333333,1,1,0,1,5,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7877,-9,7876,7878,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.23,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7878,7876,-9,-9,1,1,35,1,2,0,1,1,-9,0,5,8.2674189,8.6865444,0,18,0,-8.566123,0,1,1,2021,7,1,55,62,1,1,0,10.839231,10.839231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,12.55,68.68000000000001,8.333333333333334,1,1,0,1,10,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3623,4443,7879,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-923.15204,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,7,6,1,1,1537,-24861.262,0,0,0,0,0,-186.48306 +3623,4444,7880,-9,7879,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2686481,8.1201315,0,0,0,-1055.8008,0,2,-9,2021,10,1,38,33,1,1,0,11.822566,11.822566,.05,.05,0,0,0,0,0,0,1,1,0,3.1369808,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,6759,135374.81,-49872.402,0,0,0,0,1216.0192 +3624,4445,7881,7882,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,-3,30.68009,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67699081,0,55.97,37.53,58.33,39.49,6.666666666666667,2,3,0,0,0,9,2,1,6039.5,759897.94,187005.88,428801.13,0,0,0,1112.7987 +3624,4445,7882,7881,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5109901,6.6988297,50,3,191.15782,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1860232,6.5864434,58.33,39.49,55.97,37.53,6.666666666666667,2,3,0,0,0,9,2,1,6039.5,759897.94,187005.88,428801.13,0,0,0,1112.7987 +3625,4446,7883,7884,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.1170115,6.9421506,9,-1,51.220596,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7170033,57.16,56.15,50.09,52.47,10,1,1,0,0,0,2,2,1,461,383186.44,210819.66,137034.69,0,1731.7305,0,2723.6968 +3625,4446,7884,7883,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.1565037,6.0489202,9,1,-10.804673,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2954717,50.09,52.47,57.16,56.15,8.333333333333334,3,4,0,0,0,2,2,1,461,383186.44,210819.66,137034.69,0,1731.7305,0,2723.6968 +3626,4447,7885,7886,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,10.352614,10.78753,0,28,3,-98.395187,0,2,2,2021,8,0,48,50,1,0,0,69.705009,69.705009,.05,.05,0,0,0,0,0,0,0,0,0,2.4836237,0,49.25,61.25,54.2,57.49,8.333333333333334,1,1,0,0,9,2,5,1,218.5,1620556.6,1408704.8,479374.41,349359.5,10914.455,0,24433.059 +3626,4447,7886,7885,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.1716347,8.1463013,0,7,-3,-115.29436,0,3,3,2021,7,0,24,23,1,0,0,20.645355,20.645355,0,0,0,0,0,0,0,0,0,0,0,2.042206,0,54.2,57.49,49.25,61.25,10,1,1,0,0,7,2,5,1,218.5,1620556.6,1408704.8,479374.41,349359.5,10914.455,0,24433.059 +3627,4448,7887,7888,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.913054,7.8350239,54,3,-19.718077,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3068423,7.8347259,61.43,43.34,58.47,44.69,8.333333333333334,1,1,0,0,0,5,3,1,493,1127009.3,528933.88,320680.34,0,0,0,2467.739 +3627,4448,7888,7887,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-82.071663,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3666906,0,58.47,44.69,61.43,43.34,10,1,1,0,0,0,5,3,1,493,1127009.3,528933.88,320680.34,0,0,0,2467.739 +3628,4449,7889,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1043.8491,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,55.7,-9,-9,6.666666666666667,2,3,1,0,0,7,1,1,1220,-155682.34,0,0,0,0,0,0 +3629,4450,7890,7891,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.5010376,7.6223025,0,9,-2,-116.92869,0,-9,-9,2021,7,0,40,40,1,0,0,5.1711397,5.1711397,.05,.05,0,0,0,0,0,7,0,0,0,0,0,50.07,43.37,65.06,41.58,6.666666666666667,1,1,0,0,12,13,4,1,349.5,-3101.1328,66624.109,97104.063,7782.3359,0,-166.86264,1716.6962 +3629,4450,7891,7890,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5421634,7.7894106,0,9,2,105.79311,0,3,3,2021,10,0,40,40,1,0,0,5.6502938,5.6502938,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,65.06,41.58,50.07,43.37,8.333333333333334,1,1,0,0,10,13,4,1,349.5,-3101.1328,66624.109,97104.063,7782.3359,0,-166.86264,1716.6962 +3630,4451,7892,7894,-9,-9,1,0,40,0,3,0,2,2,-9,0,2,7.0930748,7.0257506,0,10,3,-93.834503,0,-9,-9,2021,24,12,60,0,1,12,0,2.5521863,2.5521863,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34,40.08,37.23,49.23,5,1,1,0,0,1,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7893,-9,7892,7894,1,1,16,0,3,0,2,2,-9,0,1,0,0,0,0,0,-1058.3905,-9,2,2,2021,26,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.81,34.2,-9,-9,3.333333333333333,1,1,1,1,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7894,7892,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.5207415,8.7822361,0,10,-3,-121.89804,0,2,3,2021,10,0,36,40,1,0,0,17.08077,17.08077,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.23,49.23,34,40.08,8.333333333333334,1,1,0,0,14,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7895,-9,7892,7894,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.4727,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7896,-9,7892,7894,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.37952,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4452,7897,-9,7892,7894,1,0,20,0,3,0,2,2,1,0,3,6.985877,6.9032812,0,0,0,-950.18787,-9,2,2,2021,28,12,30,0,1,12,1,3.5720706,3.5720706,.05,.05,0,0,0,0,0,0,1,1,0,7.1951771,0,14.25,61.15,-9,-9,1.666666666666667,1,1,0,1,2,4,2,0,417,41182.211,-40820.34,0,0,-1034.5071,1594.4585,1552.0115 +3631,4453,7898,7899,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,6.9156656,7.1104774,0,37,1,37.273006,0,3,3,2021,13,1,24,20,1,1,0,5.0552979,5.0552979,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,53,55,8.333333333333334,1,1,0,0,8,11,4,0,359,74793.43,172284.31,54356.871,0,7093.8154,0,1490.7577 +3631,4453,7899,7898,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.9908714,8.0267229,0,7,-1,5.1121559,-9,-9,-9,2021,9,0,40,0,1,1,0,8.7685223,8.7685223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,43.67,61.06,8,1,1,0,0,1,11,4,0,359,74793.43,172284.31,54356.871,0,7093.8154,0,1490.7577 +3632,4454,7900,-9,7901,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.21942,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3632,4454,7901,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,6.1570716,5.8774319,0,0,-961.31299,0,2,-9,2021,18,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3685727,0,39.85,55.83,-9,-9,5,1,1,0,0,5,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3632,4454,7902,-9,7901,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7349,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3633,4455,7903,7904,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.101553,7.1739073,0,12,-12,90.480751,0,-9,-9,2021,21,9,24,24,1,9,0,7.4563632,7.4563632,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,53.29,47.55,28.27,5,1,1,0,1,8,6,3,0,289.5,1160537.5,796789.88,206178.48,0,0,0,1710.3491 +3633,4455,7904,7903,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.4755387,7.3296456,12,12,-121.664,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,25.234686,0,0,1,1,0,0,7.421433,47.55,28.27,32.38,53.29,6.666666666666667,1,1,0,1,8,6,3,0,289.5,1160537.5,796789.88,206178.48,0,0,0,1710.3491 +3634,4456,7905,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.762217,7.7432513,0,0,0,-1022.27,0,2,2,2021,13,3,39,1,1,3,0,7.3872223,7.3872223,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.52,62.72,-9,-9,6.666666666666667,1,1,0,0,5,10,3,0,518,101844.3,39446.816,0,0,0,0,676.0777 +3635,4457,7906,7907,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.9439783,6.799933,9,7,-40.56361,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5460258,6.9672589,44.42,59.09,52.99,51.28,8.333333333333334,1,1,0,0,0,10,3,1,1172.5,659709.63,227572.44,235664.52,0,0,0,2383.7083 +3635,4457,7907,7906,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.719286,6.7685714,9,-7,19.864908,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3092275,7.1427898,52.99,51.28,44.42,59.09,6.666666666666667,1,1,0,0,6,10,3,1,1172.5,659709.63,227572.44,235664.52,0,0,0,2383.7083 +3636,4458,7908,7909,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.8008022,8.5587187,0,31,2,26.785618,-9,2,1,2021,8,1,35,0,1,1,0,21.571953,21.571953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.68,55.19,55.36,54.24,10,3,4,0,0,12,8,5,1,1145,1421584.3,682816.56,747491.75,0,0,0,7724.1401 +3636,4458,7909,7908,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.7394142,9.4345961,0,31,-2,-.54202551,0,-9,-9,2021,8,0,50,40,1,0,0,37.39703,37.39703,.05,.05,0,0,0,0,0,0,0,0,0,4.7399535,0,55.36,54.24,53.68,55.19,1.666666666666667,3,4,0,0,12,8,5,1,1145,1421584.3,682816.56,747491.75,0,0,0,7724.1401 +3637,4459,7910,7911,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6120796,8.3701963,6.8072119,43,-3,-43.530228,0,2,2,2021,24,11,24,28,1,11,0,10.96356,10.96356,0,0,0,0,0,0,0,7,1,1,0,.37033197,7.0221553,37.23,35.67,45.51,36.1,1.666666666666667,1,1,0,0,8,2,4,1,349,1191718.8,909337.25,173654.13,0,2501.2896,0,3029.7935 +3637,4459,7911,7910,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.0358248,8.0063562,43,3,-38.222248,0,-9,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3986807,45.51,36.1,37.23,35.67,5,1,1,0,0,7,2,4,1,349,1191718.8,909337.25,173654.13,0,2501.2896,0,3029.7935 +3638,4460,7912,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,4,0,0,0,0,0,-925.53223,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,4,5,0,1,0,8,1,0,153,-66158.859,0,0,0,0,0,1294.1637 +3639,4461,7913,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.4908361,5.3716054,0,0,-994.57886,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.435863,44.23,49.45,-9,-9,10,1,1,0,0,0,13,2,1,531,261348.75,6071.0669,25801.717,0,0,1007.7197,84.772491 +3639,4462,7914,-9,7913,-9,1,1,33,0,0,0,2,2,-9,0,4,7.576437,7.5359244,0,0,0,-911.33722,0,3,2,2021,9,0,45,37,1,0,0,6.5228539,6.5228539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1115,191514.27,39763.715,0,0,0,2414.5891,373.92227 +3640,4463,7915,7916,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8791046,7.5362649,0,32,-3,-75.552711,0,3,2,2021,7,0,30,30,1,0,0,9.4068499,9.4068499,.05,.05,0,0,0,0,0,0,0,0,0,.12982811,0,57.18,45.76,57.16,56.15,10,2,3,0,0,14,9,5,1,1154.5,872467.88,446527.25,361564.31,0,0,0,3783.8657 +3640,4463,7916,7915,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.8615274,8.8676977,0,32,3,82.272011,0,3,-9,2021,6,0,43,43,1,0,0,16.030804,16.030804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.18,45.76,8.333333333333334,1,1,0,0,13,9,5,1,1154.5,872467.88,446527.25,361564.31,0,0,0,3783.8657 +3641,4464,7917,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.0670261,8.2807369,0,0,0,-1080.3671,0,3,3,2021,16,4,62,46,1,4,0,5.1143241,5.1143241,0,0,0,0,0,0,0,2,1,1,0,0,0,38.68,55.46,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,288,45253.645,0,134547.36,0,0,0,566.33344 +3642,4465,7918,7919,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,39,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.12,54.8,45.37,30.9,10,1,1,0,0,0,7,2,1,473,290068.34,0,308684.63,0,0,7551.583,1669.3479 +3642,4465,7919,7918,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,39,-5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.37,30.9,60.12,54.8,8.333333333333334,1,1,0,0,0,7,2,1,473,290068.34,0,308684.63,0,0,7551.583,1669.3479 +3643,4466,7920,7921,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.7227383,8.8150005,0,36,-1,-9.207633,0,2,3,2021,12,1,40,65,1,1,0,26.367731,26.367731,.05,.05,0,0,0,0,0,0,0,0,0,2.5184617,0,45.52,33.27,45,39,8.333333333333334,1,1,0,0,12,13,5,1,817.5,1025799.1,597354.31,397572.41,63825.465,0,0,6390.6846 +3643,4466,7921,7920,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.895432,8.5275478,7.6403513,36,1,-16.17857,0,2,2,2021,8,0,40,0,1,0,0,10.26305,10.26305,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2270465,45,39,45.52,33.27,8.333333333333334,1,1,0,0,12,13,5,1,817.5,1025799.1,597354.31,397572.41,63825.465,0,0,6390.6846 +3644,4467,7922,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,7.7849689,7.7019835,0,0,0,-973.8338,0,3,1,2021,6,0,37,37,1,0,0,6.3087854,6.3087854,.05,.05,0,0,0,0,0,0,1,1,0,4.852459,0,57.91,43.45,-9,-9,10,1,1,0,0,12,5,3,0,2204,59618.059,-72700.594,0,0,0,0,3493.6296 +3645,4468,7923,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.7037835,6.4762897,0,0,-1010.8469,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5801086,42.86,31.98,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,43,391050.81,153380.8,378616.69,0,0,0,1144.6211 +3646,4469,7924,-9,7926,7925,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.41937,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7925,7926,-9,-9,1,1,27,1,2,0,3,3,-9,0,3,7.4494195,7.441586,0,2,3,-31.183214,0,-9,-9,2021,11,3,56,60,1,3,0,3.8504717,3.8504717,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,59.13,44.42,59.09,5,1,1,0,0,3,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7926,7925,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-3,118.86269,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,59.09,47.85,59.13,6.666666666666667,1,1,0,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7927,-9,7926,7925,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.0868,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3647,4470,7928,7929,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,1.941047,2.0371504,0,3,-2,-9.8219528,0,-9,-9,2021,16,4,36,12,1,4,0,.023294901,.023294901,0,0,0,0,0,0,0,2,0,0,0,0,0,37.02,37.37,38.04,56.72,8.333333333333334,1,1,0,0,5,11,3,0,945,63186.969,0,0,0,0,0,453.435 +3647,4470,7929,7928,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.7769351,7.6551609,0,3,2,45.847397,0,-9,-9,2021,10,1,31,31,1,1,0,10.783099,10.783099,0,0,0,0,0,0,0,7,0,0,0,0,0,38.04,56.72,37.02,37.37,1.666666666666667,1,1,0,0,3,11,3,0,945,63186.969,0,0,0,0,0,453.435 +3648,4471,7930,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,3.6269758,3.6440086,0,0,-947.16199,0,2,1,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,3.9988298,0,51.913654,0,1,1,0,3.7814367,3.6244504,41.59,31.18,-9,-9,5,1,1,0,0,0,5,2,0,454,145104.08,46522.445,56622.809,0,0,0,1175.8655 +3649,4472,7931,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.3764882,6.5070672,0,0,-958.82788,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8336468,43.51,43.59,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,233,406249.13,241144.25,0,0,0,0,852.12762 +3650,4473,7932,-9,7934,7935,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7281,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7933,-9,7934,7935,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.13409,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7934,7935,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.414783,7.4479151,0,1,-2,-152.59436,-9,2,2,2021,10,0,25,0,1,0,0,6.6291485,6.6291485,0,0,0,0,0,0,0,0,1,1,0,0,0,46.48,53.76,42.98,48.46,8.333333333333334,1,1,0,0,8,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7935,7934,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,9.0232267,9.3414116,0,1,2,39.157475,-9,3,2,2021,14,3,61,0,1,3,0,13.611781,13.611781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.98,48.46,46.48,53.76,8.333333333333334,1,1,0,0,9,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3651,4474,7936,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,8.0012426,8.2697163,0,0,-1021.8918,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.1008759,7.6473432,45.32,51.16,-9,-9,10,1,1,0,0,11,5,4,1,206,0,0,0,0,0,0,2083.0657 +3651,4475,7937,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7224174,7.5062709,0,0,0,-913.38855,0,2,2,2021,7,1,33,27,1,1,0,10.910225,10.910225,.05,.05,0,0,0,0,0,2,0,0,0,7.3960099,0,62.4,48.33,-9,-9,10,1,1,0,0,12,5,3,1,1156,-76337.516,-142745.27,0,0,0,0,1766.8363 +3652,4476,7938,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.7565885,7.6692762,0,0,0,-1026.6188,0,2,2,2021,7,0,37,0,1,0,0,7.8520064,7.8520064,0,0,0,0,0,0,0,0,0,0,0,7.0732188,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,168,220706.84,110154.38,0,0,0,0,1091.9639 +3653,4477,7939,7940,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,3.6705625,4.2010422,8,9,159.59334,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7925749,51,46,51,48,7,1,1,0,1,1,2,2,1,320,102953.38,0,82510.109,0,0,0,837.43445 +3653,4477,7940,7939,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,0,-15.669152,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,51,46,7,1,1,1,1,4,2,2,1,320,102953.38,0,82510.109,0,0,0,837.43445 +3654,4478,7941,-9,7942,7943,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.97552,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7942,7943,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.7031131,7.5311775,0,21,-6,52.113674,0,-9,2,2021,20,8,30,30,1,8,0,7.7606921,7.7606921,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.64,53.56,44.75,56.39,8.333333333333334,1,1,0,0,12,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7943,7942,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.9813137,9.2851877,0,21,6,-23.629715,0,2,2,2021,11,0,43,45,1,0,0,24.675293,24.675293,.05,.05,.05,0,0,0,0,0,0,0,0,3.9625366,0,44.75,56.39,33.64,53.56,6.666666666666667,1,1,0,0,12,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7944,-9,7942,7943,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.07361,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3655,4479,7945,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.164609,9.0520382,0,0,0,-977.21771,-9,-9,-9,2021,7,0,45,0,1,0,0,25.729477,25.729477,.05,.05,0,0,0,0,0,14.5,0,0,0,7.5361562,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,639,557360.13,481026.16,251898.31,75568.156,0,0,3636.8511 +3656,4480,7946,7947,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.2215252,6.875351,9,4,96.26825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2206974,57.16,56.15,42.98,19.92,0,1,1,0,0,3,13,2,1,740,1005183.6,384458.22,182280.58,0,0,0,2180.6016 +3656,4480,7947,7946,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,9,-4,89.0355,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.98,19.92,57.16,56.15,1.666666666666667,1,1,0,0,0,13,2,1,740,1005183.6,384458.22,182280.58,0,0,0,2180.6016 +3656,4481,7948,-9,7947,7946,1,1,26,0,0,0,1,1,-9,0,4,8.3202066,8.1664171,0,0,0,-1083.2303,0,3,3,2021,11,0,39,41,1,0,0,17.104753,17.104753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,733,195036.94,18859.738,0,0,18846.201,3029.8562,1119.2332 +3657,4482,7949,7950,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.8484635,5.927669,11,1,-21.630978,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.142714,5.7276831,58.41,48.73,52.99,51.28,8.333333333333334,1,1,0,0,7,6,2,1,661.5,873201.19,235318.94,587317.13,0,0,0,2082.782 +3657,4482,7950,7949,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.1330256,7.0415182,11,-1,-82.700508,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1438341,52.99,51.28,58.41,48.73,5,1,1,0,0,8,6,2,1,661.5,873201.19,235318.94,587317.13,0,0,0,2082.782 +3658,4483,7951,7952,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.4174476,6.4743471,47,-4,81.129112,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.52955866,6.5151429,49.27,56.95,52,48,5,1,1,0,0,3,9,2,0,214,424791.44,195648.25,391332.88,0,0,0,1692.1707 +3658,4483,7952,7951,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,47,4,-1.334545,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.5487843,120.40959,66.772308,0,1,1,0,0,0,52,48,49.27,56.95,7,1,1,0,0,0,9,2,0,214,424791.44,195648.25,391332.88,0,0,0,1692.1707 +3659,4484,7953,-9,7954,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4906,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,446.5,110488.3,229044.59,0,0,0,-148.14362,1824.415 +3659,4484,7954,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,8.6150494,8.5470114,0,0,0,-962.03894,0,-9,-9,2021,9,0,53,47,1,0,0,10.088459,10.088459,.05,.05,0,0,0,0,0,0,1,1,0,2.3511066,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,446.5,110488.3,229044.59,0,0,0,-148.14362,1824.415 +3660,4485,7955,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1102.4882,0,3,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5209544,0,33.61,28.11,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,627,14159.715,0,0,0,0,0,407.94724 +3661,4486,7956,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.090569,5.6897082,0,0,-976.93457,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1597867,5.5582786,30.19,37.62,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,701,97967.164,138711.67,129572.19,0,0,0,1165.5133 +3661,4487,7957,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2263975,6.6131654,0,0,-1045.9556,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412591,48.87,34.3,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,245,312849.25,87467.414,222889.55,0,853.53497,0,1067.1935 +3662,4488,7958,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,7.9804692,7.9895077,6.568347,0,0,-1083.3656,0,2,2,2021,7,0,30,30,1,0,0,9.2546778,9.2546778,.05,.05,0,0,0,0,0,0,1,1,0,6.4628024,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,789,-10009.177,-150023.42,0,0,1902.9449,0,1534.7994 +3663,4489,7959,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0570412,7.8701572,0,0,-984.72778,0,2,2,2021,7,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8674793,8.2686834,57.92,51.82,-9,-9,0,1,1,0,0,8,12,4,1,547,776219.31,543019.5,173467.05,16497.123,0,0,2563.1519 +3664,4490,7960,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5614524,7.3932734,0,0,0,-1087.0521,0,2,3,2021,11,0,40,30,1,0,0,6.6258779,6.6258779,0,0,0,0,0,0,0,0,0,0,0,0,0,35.42,53.9,-9,-9,8.333333333333334,1,1,0,0,12,11,3,0,565,6446.0742,0,131314.03,0,352.91803,0,631.35248 +3665,4491,7961,7962,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,7.6630473,7.8810458,4.9078341,37,3,13.28656,0,2,2,2021,11,0,60,48,1,0,0,4.3610811,4.3610811,0,0,0,0,0,0,0,0,0,0,0,4.5219746,5.0006309,57.68,29.16,39.39,52.44,5,1,1,0,0,11,2,5,1,622.5,1427169.8,0,509723.47,0,0,0,4113.3506 +3665,4491,7962,7961,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,9.0333672,8.90942,0,37,-3,23.677458,0,3,3,2021,15,4,25,20,1,4,0,42.644131,42.644131,0,0,0,0,0,0,0,7,0,0,0,0,0,39.39,52.44,57.68,29.16,6.666666666666667,1,1,0,0,11,2,5,1,622.5,1427169.8,0,509723.47,0,0,0,4113.3506 +3666,4492,7963,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.79651,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7043788,0,54,44,-9,-9,8,1,1,0,0,0,1,1,1,267,87323.273,9134.6475,0,0,0,0,1243.7617 +3667,4493,7964,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,2.7422712,2.6443045,0,0,-1008.062,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9004488,2.9084578,62.7,43.99,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,992,42104.887,31463.336,0,0,0,0,940.38336 +3668,4494,7965,7966,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,0,0,0,3,-13,0,1,-9,-9,2021,13,1,0,25,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,15.16,47.74,6.666666666666667,1,1,0,1,4,2,1,0,527,172843,0,94923.828,2763.8916,0,0,0 +3668,4494,7966,7965,-9,-9,1,1,43,0,0,0,3,3,-9,0,1,0,0,0,3,13,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.16,47.74,54.1,59.11,1.666666666666667,1,1,1,1,9,2,1,0,527,172843,0,94923.828,2763.8916,0,0,0 +3669,4495,7967,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6374764,6.5724788,0,0,-941.44806,-9,2,1,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7647943,6.5205717,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,588,221545.69,222369.66,185497.42,0,0,0,658.3327 +3670,4496,7968,7969,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.1196175,8.0708666,0,6,4,-75.230499,0,3,3,2021,12,0,54,59,1,0,0,6.0226965,6.0226965,.05,.05,.05,0,0,0,0,0,0,0,0,7.1646113,0,38.51,48.9,51.83,57.2,3.333333333333333,1,1,0,0,11,9,5,1,414,437614.91,143671.3,336551.72,43592.953,727.05756,1715.5691,3612.4846 +3670,4496,7969,7968,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2727728,8.471736,0,6,-4,-68.865868,0,-9,-9,2021,7,0,37,35,1,0,0,15.802853,15.802853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,38.51,48.9,8.333333333333334,1,1,0,0,8,9,5,1,414,437614.91,143671.3,336551.72,43592.953,727.05756,1715.5691,3612.4846 +3671,4497,7970,7971,-9,-9,1,1,65,0,0,0,3,3,-9,1,3,8.3308392,7.9032922,0,36,3,100.44655,0,2,3,2021,20,8,37,37,1,8,0,12.115624,12.115624,0,0,0,1,0,0,0,0,1,1,0,0,0,40.64,52.96,47.96,34.69,8.333333333333334,1,1,0,0,10,12,3,1,245.5,496635.88,350072.56,274180.97,0,0,670.6897,2368.1528 +3671,4497,7971,7970,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,36,-3,111.93707,0,2,3,2021,13,1,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6104574,0,47.96,34.69,40.64,52.96,6.666666666666667,1,1,0,0,10,12,3,1,245.5,496635.88,350072.56,274180.97,0,0,670.6897,2368.1528 +3672,4498,7972,7973,-9,-9,1,0,31,0,1,0,3,3,-9,0,4,0,0,0,3,-7,-39.728161,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,57.06,57.76,7,2,3,0,0,0,7,2,1,3693,301934.75,73198.07,456610.88,134199.44,0,0,106.17569 +3672,4498,7973,7972,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,6.781147,7.1079111,0,10,7,28.614326,0,3,3,2021,11,1,35,30,1,1,0,2.5023606,2.5023606,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48,56,8.333333333333334,2,3,0,1,9,7,2,1,3693,301934.75,73198.07,456610.88,134199.44,0,0,106.17569 +3673,4499,7974,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-996.99054,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,10,1,1,0,0,0,4,1,0,654,-135711.66,0,0,0,0,0,503.62866 +3674,4500,7975,7976,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,10,-3,109.88242,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.5139273,0,59.43,49.68,54.37,54.8,10,2,3,0,0,5,8,5,1,379.5,388569.06,17423.879,512297,109631.15,8196.0469,8881.1523,4019.5251 +3674,4500,7976,7975,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.8243046,8.6363649,7.5481606,10,3,-32.49929,0,3,3,2021,12,0,50,47,1,0,0,13.024827,13.024827,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8766398,54.37,54.8,59.43,49.68,8.333333333333334,2,3,0,0,14,8,5,1,379.5,388569.06,17423.879,512297,109631.15,8196.0469,8881.1523,4019.5251 +3675,4501,7977,7978,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.6249166,6.4021873,26,-20,68.734756,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4191227,56.57,57.78,49.41,58.28,8.333333333333334,1,1,0,0,11,8,2,1,313,624010,157666.36,404179.75,0,0,0,1608.8547 +3675,4501,7978,7977,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.9440842,6.4895258,26,20,-50.658569,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1226392,6.9527535,49.41,58.28,56.57,57.78,8.333333333333334,1,1,0,0,0,8,2,1,313,624010,157666.36,404179.75,0,0,0,1608.8547 +3676,4502,7979,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1025.0835,0,2,1,2021,29,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.25,25.7,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1183,357743.97,-16055.014,549200.75,9180.3643,0,0,892.19611 +3677,4503,7980,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1040.71,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.83,30.46,-9,-9,6.666666666666667,1,1,0,0,10,11,1,0,1942,448202.78,0,192987.75,0,0,0,786.86304 +3678,4504,7981,7982,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.4863548,8.7915249,7.6230903,6,2,-43.738304,0,3,3,2021,7,0,37,37,1,0,0,13.938786,13.938786,0,0,0,0,0,0,0,2,1,1,0,5.6452732,7.3491926,56.78,49.38,39,24,8.333333333333334,1,1,0,0,7,12,4,1,1251,1297046,531363.06,164069.13,0,0,0,3563.8564 +3678,4504,7982,7981,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,6,-2,22.661013,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.688539,0,39,24,56.78,49.38,5,1,1,0,0,0,12,4,1,1251,1297046,531363.06,164069.13,0,0,0,3563.8564 +3679,4505,7983,7984,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,0,0,12,5,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.8071733,0,57.16,56.15,66.87,11.23,6.666666666666667,1,1,0,0,8,12,1,1,1149,1243435.5,254948.69,247645.97,0,0,0,18.76351 +3679,4505,7984,7983,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,12,-5,0,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.87,11.23,57.16,56.15,6.666666666666667,1,1,0,0,7,12,1,1,1149,1243435.5,254948.69,247645.97,0,0,0,18.76351 +3680,4506,7985,7987,-9,-9,1,0,39,0,2,0,1,1,-9,1,2,0,0,0,12,0,-104.59897,0,-9,-9,2021,27,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.22,25.43,38.47,57.72,6.666666666666667,1,1,0,0,5,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7986,-9,7985,7987,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.037,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7987,7985,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.8929996,8.6230354,0,12,0,-64.016396,0,2,2,2021,33,12,38,-9,1,12,0,23.765394,23.765394,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.47,57.72,33.22,25.43,5,1,1,0,0,13,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7988,-9,7985,7987,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.13452,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3681,4507,7989,-9,7990,-9,1,1,17,0,0,0,3,3,-9,1,2,0,0,0,0,0,-998.45239,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.13,57.92,-9,-9,6.666666666666667,4,5,0,1,0,9,1,0,1944,0,0,0,0,0,0,1054.1902 +3681,4507,7990,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-992.18042,0,2,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.51,26.41,-9,-9,3.333333333333333,4,5,0,1,5,9,1,0,1944,0,0,0,0,0,0,1054.1902 +3681,4508,7991,-9,7990,-9,1,1,21,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.80725,0,2,-9,2021,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.69,57.02,-9,-9,5,4,5,0,0,0,9,1,0,670,-104490.23,0,0,0,0,0,1027.2448 +3681,4509,7992,-9,7990,-9,1,1,19,0,0,0,3,3,-9,0,2,8.0302191,7.9957418,0,0,0,-1037.0859,0,2,-9,2021,13,1,40,30,1,1,1,9.9748907,9.9748907,.05,.05,0,0,0,0,0,0,1,0,1,0,0,29.6,54.73,-9,-9,5,4,5,0,0,2,9,4,0,839,143293.02,31660.492,0,0,0,0,1572.7755 +3682,4510,7993,7994,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,50,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4988079,0,51.82,54.65,53,47,8.333333333333334,1,1,0,0,4,11,1,1,721.5,741544.75,136824.27,230284.94,0,0,0,4886.5176 +3682,4510,7994,7993,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,0,0,9,0,0,0,-9,-9,2021,9,0,0,20,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4730425,0,53,47,51.82,54.65,7,1,1,0,0,0,11,1,1,721.5,741544.75,136824.27,230284.94,0,0,0,4886.5176 +3683,4511,7995,7996,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,7.4089718,7.631104,0,19,-4,-46.89254,0,2,2,2021,7,0,30,40,1,0,0,7.4308167,7.4308167,.05,.05,0,0,0,0,0,0,1,1,0,6.7801361,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,13,10,4,0,471,444930.75,139697.5,327883.94,43610.594,0,0,3112.4299 +3683,4511,7996,7995,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.6651106,8.719945,0,19,4,-11.141301,0,2,2,2021,6,0,38,37,1,0,0,17.715302,17.715302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,13,10,4,0,471,444930.75,139697.5,327883.94,43610.594,0,0,3112.4299 +3684,4512,7997,-9,8000,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-966.02692,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,7998,-9,8000,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.56232,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,7999,-9,8000,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.14319,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,8000,-9,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,0,5.9459062,6.1502056,0,0,-1014.1302,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9561577,0,37.78,55.7,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3685,4513,8001,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1046.5494,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7619753,4.1205549,19.006676,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,13,1,1,360,162345.5,-19300.07,131134.72,0,0,0,667.89606 +3686,4514,8002,8003,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.7273192,7.4689045,3,-8,21.713938,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2823038,7.3203583,27.89,56.24,37.57,41.44,3.333333333333333,1,1,0,0,1,2,2,1,721,493747.56,496532.06,0,0,0,0,2125.1147 +3686,4514,8003,8002,-9,-9,1,1,65,0,0,0,1,1,-9,0,1,0,0,0,3,8,10.364005,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.57,41.44,27.89,56.24,3.333333333333333,1,1,0,0,0,2,2,1,721,493747.56,496532.06,0,0,0,0,2125.1147 +3687,4515,8004,8005,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.5032177,8.1567631,0,15,0,-6.972332,0,3,2,2021,4,0,29,40,1,0,0,15.255492,15.255492,0,0,0,0,0,0,0,97,1,1,0,6.8554993,0,57.06,57.76,51.83,57.2,10,1,1,0,0,11,2,5,1,538.5,1837275.8,538077.19,717247.5,0,6734.2588,0,7331.4517 +3687,4515,8005,8004,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.7227182,9.5382061,0,9,9,-76.900475,-9,-9,-9,2021,8,0,55,0,1,0,0,38.670204,38.670204,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,10,2,5,1,538.5,1837275.8,538077.19,717247.5,0,6734.2588,0,7331.4517 +3687,4516,8006,-9,8004,8005,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-953.77124,0,1,1,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,365,42110.324,0,0,0,0,0,1344.2507 +3688,4517,8007,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.7589397,6.2986584,0,0,-1014.7098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.249845,6.1711559,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,665,276366.81,64788.172,0,0,5333.2139,0,1134.5277 +3689,4518,8008,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,4,0,5.9739375,6.2212234,0,0,-1057.8102,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8029671,6.0538006,55.34,43.52,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,339,273633.53,119799.87,222566.03,0,0,0,945.63794 +3690,4519,8009,8010,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.0803423,8.628582,22,16,.26586568,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5018039,7.6977386,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,0,7,4,1,798,2258748,825999.13,642613.38,0,0,0,3272.5713 +3690,4519,8010,8009,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.4954724,7.5911527,25,-16,5.4116025,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5331321,7.4535131,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,798,2258748,825999.13,642613.38,0,0,0,3272.5713 +3691,4520,8011,8012,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.8659844,6.709188,8,7,78.377083,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6265671,7.0329809,52.08,55.93,51.42,42.58,8.333333333333334,1,1,0,0,0,10,4,1,486,1371286.5,452050.38,332472.25,7150.7339,0,0,2584.6724 +3691,4520,8012,8011,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.894743,7.978591,8,-7,81.876404,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6525922,8.0747328,51.42,42.58,52.08,55.93,6.666666666666667,1,1,0,0,6,10,4,1,486,1371286.5,452050.38,332472.25,7150.7339,0,0,2584.6724 +3692,4521,8013,8014,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,37,-3,0,0,2,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,62.18,36.18,7,1,1,0,0,0,13,1,0,318.5,166127.75,0,178247.28,0,0,0,2244.9585 +3692,4521,8014,8013,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,37,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.18,36.18,48,48,10,1,1,0,0,4,13,1,0,318.5,166127.75,0,178247.28,0,0,0,2244.9585 +3693,4522,8015,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.1567788,7.3336167,0,6,4,-31.462437,0,-9,-9,2021,9,0,22,23,1,1,0,6.824008,6.824008,.05,.05,0,0,0,0,0,0,0,0,0,4.5016403,0,53,55,52,55,8,1,1,0,0,7,8,5,1,316,-123169.92,37170.168,0,0,0,2453.6296,713.33685 +3693,4523,8016,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.1017904,9.0073729,0,6,-4,-29.291567,0,-9,-9,2021,9,0,36,40,1,1,0,30.165344,30.165344,0,0,0,0,0,0,0,0,0,0,0,8.1512794,0,52,55,53,55,8,1,1,0,0,9,8,5,1,311,1453421.9,672524.56,549669.88,0,0,0,4179.9746 +3694,4524,8017,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8482218,6.9578023,0,0,-999.5976,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7227378,6.6163721,63.09,47.92,-9,-9,10,1,1,0,0,8,10,2,1,1472,438532.81,0,220583.72,0,0,0,399.18192 +3695,4525,8018,8019,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.2517385,7.141067,44,2,-80.930016,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9655962,7.1421142,62.66,52.4,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,1073,975602.63,672643.06,253345,0,0,0,2809.5234 +3695,4525,8019,8018,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4347558,7.8249979,44,-2,30.340157,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0860438,7.4322672,60.12,54.8,62.66,52.4,10,1,1,0,0,0,4,3,1,1073,975602.63,672643.06,253345,0,0,0,2809.5234 +3696,4526,8020,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.5658,1,-9,-9,2021,20,8,0,22,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.99,65.61,-9,-9,5,1,1,0,0,6,13,1,1,301,-149061.91,0,0,0,0,0,0 +3697,4527,8021,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,7.6983099,7.6273165,0,0,0,-1113.374,0,2,2,2021,15,3,38,38,1,3,0,6.1061997,6.1061997,0,0,0,0,0,0,0,0,1,1,0,5.1571956,0,35.15,51.51,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,194,424964.59,208353.47,199206.83,0,0,0,1012.8696 +3698,4528,8022,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.8016524,5.3990598,0,0,-1062.7611,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96993458,5.5076294,56.05,48.44,-9,-9,10,1,1,0,0,0,2,2,1,506,153843.64,30470.844,115085.46,0,0,0,1375.3191 +3699,4529,8023,8024,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.0099573,7.132443,34,-13,16.571592,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2373066,57.16,56.15,53.14,51.28,8.333333333333334,1,1,0,0,6,10,3,1,620.5,1058372.8,466538.56,436856.53,0,0,0,2603.8291 +3699,4529,8024,8023,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.7518802,7.5650759,34,13,8.2428541,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8168877,7.3443217,53.14,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,620.5,1058372.8,466538.56,436856.53,0,0,0,2603.8291 +3700,4530,8025,8026,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,56,0,-115.11045,0,3,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,28.580341,0,0,1,1,0,0,0,43.15,32.98,49.65,37.15,5,1,1,0,0,0,5,2,1,638,586599.06,310079.59,432012.5,0,0,0,929.38116 +3700,4530,8026,8025,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.2756195,7.4407287,56,0,-107.19324,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8299556,7.3760138,49.65,37.15,43.15,32.98,8.333333333333334,1,1,0,0,0,5,2,1,638,586599.06,310079.59,432012.5,0,0,0,929.38116 +3701,4531,8027,8028,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0042505,8.9645386,0,5,-7,-12.468486,0,-9,-9,2021,9,0,40,40,1,1,0,21.818703,21.818703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,43.42,62.33,8,2,3,0,0,1,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8028,8027,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.8354678,8.2323084,0,5,7,20.618601,0,3,3,2021,13,2,27,27,1,2,0,11.656239,11.656239,0,0,0,0,0,0,0,27,1,1,0,0,0,43.42,62.33,51,56,5,2,3,0,0,7,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8029,-9,8028,8027,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1027.5746,-9,3,1,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.51,59.08,-9,-9,6.666666666666667,2,3,0,0,1,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8030,-9,8028,8027,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.83,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8031,-9,8028,8027,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.21466,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3702,4532,8032,8033,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,3,1,0,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,64.91,17,8.333333333333334,1,1,0,0,0,7,1,1,984,496573.94,105031.78,308815.78,0,0,0,1449.6304 +3702,4532,8033,8032,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,3,-1,0,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.91,17,54.37,54.8,5,1,1,0,0,0,7,1,1,984,496573.94,105031.78,308815.78,0,0,0,1449.6304 +3703,4533,8034,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.6366901,9.2417936,0,0,0,-998.55084,0,1,1,2021,8,0,55,70,1,0,0,28.713367,28.713367,.05,.05,0,0,0,0,0,0,0,0,0,6.9568443,0,40.2,61.22,-9,-9,6.666666666666667,1,1,0,0,13,8,5,0,320,507710.75,163331.11,480626.63,0,0,2567.9099,5956.7456 +3704,4534,8035,8036,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8465691,6.7420211,9,-4,81.944809,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6296988,6.6773272,41.65,60.41,57.09,46.7,8.333333333333334,1,1,0,0,10,4,3,1,628.5,2144271.8,986368.31,503380.69,0,0,0,2118.2148 +3704,4534,8036,8035,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.7846508,7.4447966,9,4,-56.482533,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6713738,7.6606183,57.09,46.7,41.65,60.41,5,1,1,0,0,2,4,3,1,628.5,2144271.8,986368.31,503380.69,0,0,0,2118.2148 +3705,4535,8037,8039,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.8438549,9.0650187,0,20,2,-31.493292,0,3,3,2021,22,8,60,60,1,8,0,18.945763,18.945763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.92,56.13,18.93,62.96,3.333333333333333,1,1,0,0,9,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8038,-9,8039,8037,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-804.90778,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,55.06,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8039,8037,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.6260223,9.0440664,0,20,-2,1.4752393,0,2,2,2021,25,11,50,64,1,11,0,17.21401,17.21401,0,0,0,0,0,0,0,0,1,1,0,1.6321654,0,18.93,62.96,30.92,56.13,6.666666666666667,1,1,0,0,7,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8040,-9,8039,8037,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.6781,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3706,4536,8041,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,7.955214,8.1650972,0,0,0,-1084.3574,0,3,2,2021,8,0,37,37,1,0,0,9.7499714,9.7499714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.91,42.65,-9,-9,8.333333333333334,4,5,0,0,9,12,4,0,3725,173767.91,33417.324,0,0,0,0,1655.575 +3706,4537,8042,-9,8041,-9,1,1,21,0,0,0,2,2,1,0,2,7.0181446,7.0101991,0,0,0,-1065.9696,-9,2,-9,2021,18,6,28,0,1,6,1,4.9876823,4.9876823,.05,.05,0,0,0,0,0,2,1,1,0,0,0,29.19,47.98,-9,-9,1.666666666666667,1,1,0,0,4,12,2,0,1480,61660.051,-83492.813,0,0,0,0,914.15912 +3707,4538,8043,8044,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.2969074,9.2652779,0,15,4,-21.727295,0,2,2,2021,7,0,38,39,1,0,0,28.347313,28.347313,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.34,56.95,57.16,56.15,1.666666666666667,1,1,0,0,11,7,5,1,226.5,597866.13,190503,655450.81,276481.63,0,0,7295.9731 +3707,4538,8044,8043,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.0059958,8.8443985,0,15,-4,75.070694,0,2,2,2021,7,0,41,35,1,0,0,20.565111,20.565111,0,0,0,0,0,0,0,0,0,0,0,7.6070166,0,57.16,56.15,52.34,56.95,8.333333333333334,1,1,0,0,11,7,5,1,226.5,597866.13,190503,655450.81,276481.63,0,0,7295.9731 +3708,4539,8045,8047,-9,-9,1,1,53,1,2,0,3,3,-9,1,2,0,0,0,6,20,0,0,-9,3,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.14,27.65,48,57,8.333333333333334,1,1,0,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8046,-9,8047,8045,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.7673,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8047,8045,-9,-9,1,0,33,1,2,0,2,2,-9,1,4,0,0,0,6,-20,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,37.14,27.65,7,1,1,0,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8048,-9,8047,8045,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5028,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3709,4540,8049,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.053421,7.1263633,0,0,-1126.1492,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,6.4573188,0,65.803619,0,1,1,0,3.7713451,7.3005056,52,45,-9,-9,8,1,1,0,0,0,11,2,1,4781,687240.31,201613.33,431195.06,0,0,0,1566.9644 +3710,4541,8050,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.1061811,7.4883924,0,0,-895.01044,-9,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1279025,7.3676701,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,45,8005.4917,313011.13,0,0,867.99811,0,1317.2833 +3711,4542,8051,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.5677414,7.5323358,0,0,0,-1003.133,0,2,2,2021,7,0,40,40,1,0,0,8.4461737,8.4461737,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,681,-200781.66,0,0,0,0,0,1528.5441 +3712,4543,8052,8053,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7800798,7.5742016,35,5,-2.9284837,0,3,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.999619,7.4195371,60.29,52.11,13.02,57.62,8.333333333333334,1,1,0,0,2,7,3,1,2005,339437.84,11190.249,572678.63,220675.56,0,0,936.45978 +3712,4543,8053,8052,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.9420505,6.8487577,0,35,-5,30.304005,0,3,3,2021,24,11,39,40,1,11,0,2.3624578,2.3624578,0,0,0,0,0,0,0,2,0,0,0,3.516433,0,13.02,57.62,60.29,52.11,3.333333333333333,1,1,0,0,11,7,3,1,2005,339437.84,11190.249,572678.63,220675.56,0,0,936.45978 +3713,4544,8054,8055,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,29,-3,-155.40598,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,64.55,20.4,57.33,53.46,6.666666666666667,1,1,0,0,9,9,5,1,904,1100236,549668.19,377951.63,0,0,0,3793.0649 +3713,4544,8055,8054,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.2988396,9.2044439,0,29,3,47.20977,0,2,2,2021,12,0,45,35,1,0,0,24.546936,24.546936,.05,.05,0,0,0,0,0,14.5,0,0,0,3.0831609,0,57.33,53.46,64.55,20.4,8.333333333333334,1,1,0,0,13,9,5,1,904,1100236,549668.19,377951.63,0,0,0,3793.0649 +3713,4545,8056,-9,8054,8055,1,0,19,0,0,0,2,2,1,0,2,7.5650721,7.6868324,0,0,0,-994.5249,-9,2,2,2021,19,7,32,0,1,7,1,10.054532,10.054532,0,0,0,0,0,0,0,0,0,0,0,0,0,28.55,50.85,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,742,-128029.02,0,0,0,0,0,1350.0282 +3714,4546,8057,-9,8060,8058,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.21564,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8058,8060,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,9.1746864,8.9215412,0,16,2,-84.882431,0,2,2,2021,9,0,38,42,1,0,0,28.979525,28.979525,0,0,0,0,0,0,0,0,0,0,0,4.1116099,0,47.87,46.68,54.1,59.11,6.666666666666667,1,1,0,0,9,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8059,-9,8060,8058,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.5902,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8060,8058,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.2390814,8.7952089,0,16,-2,79.357109,0,2,2,2021,7,0,38,38,1,0,0,28.924124,28.924124,0,0,0,0,0,0,0,0,0,0,0,6.5042343,0,54.1,59.11,47.87,46.68,8.333333333333334,1,1,0,0,9,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3715,4547,8061,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0947399,7.4067702,0,0,-1009.8227,-9,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.179553,51.84,50.44,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1247,440715.97,265829.63,124368.51,0,0,0,707.73572 +3716,4548,8062,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.6332378,7.6877666,0,0,-1158.9198,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.80979049,7.7326388,54.21,29.14,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,403,720378.31,167784.2,176450.86,0,-3260.762,0,2177.3706 +3717,4549,8063,8064,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.6881895,7.4635601,0,11,0,-143.70418,0,1,3,2021,15,4,40,40,1,4,0,5.5786009,5.5786009,.05,.05,0,0,0,0,0,0,0,0,0,1.8047394,0,36.66,56.02,47.97,56.11,8.333333333333334,1,1,0,0,10,10,3,1,1711,169490.22,-15123.26,0,0,7029.5752,2082.519,1231.6791 +3717,4549,8064,8063,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.441123,7.2286382,0,11,9,113.22441,0,2,2,2021,13,1,24,37,1,1,0,7.081913,7.081913,.05,.05,0,0,0,0,0,0,0,0,0,3.4710569,0,47.97,56.11,36.66,56.02,8.333333333333334,1,1,0,0,13,10,3,1,1711,169490.22,-15123.26,0,0,7029.5752,2082.519,1231.6791 +3718,4550,8065,8066,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,6.8205233,6.6183801,49,-4,14.434792,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,24.458708,0,0,1,1,0,2.509928,6.5941334,45,14.78,60.12,54.8,6.666666666666667,1,1,0,0,9,5,5,1,624.5,2298922.8,1173701.3,270080.41,0,0,0,5960.9238 +3718,4550,8066,8065,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.890996,9.2105846,49,4,42.515236,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.1115768,9.1381474,60.12,54.8,45,14.78,10,1,1,0,0,13,5,5,1,624.5,2298922.8,1173701.3,270080.41,0,0,0,5960.9238 +3719,4551,8067,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5490208,8.3452635,0,0,0,-923.23169,0,-9,-9,2021,9,0,37,37,1,0,0,14.228588,14.228588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,101,1133117.8,907481.94,245471.73,0,1932.5907,36.193485,2048.3809 +3720,4552,8068,8070,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.6745577,7.7702947,0,8,6,13.426785,0,-9,-9,2021,8,0,24,24,1,0,0,14.053559,14.053559,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,45.61,40.19,44.13,5,1,1,0,0,9,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3720,4552,8069,-9,8070,8068,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-970.23529,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3720,4552,8070,8068,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,8,-6,138.92125,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.19,44.13,53.37,45.61,5,1,1,0,1,0,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3721,4553,8071,-9,-9,-9,1,0,42,0,0,0,1,1,1,0,3,8.6638947,8.364418,0,0,0,-1005.4339,-9,1,1,2021,14,3,30,0,1,3,0,23.254124,23.254124,.05,.05,0,0,0,0,0,0,1,1,0,1.1190002,0,40.64,52.96,-9,-9,8.333333333333334,4,2,0,0,7,7,5,1,87,40653.457,-147213.27,0,0,0,0,2278.0979 +3722,4554,8072,-9,8074,8075,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.11951,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8073,-9,8074,8075,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.83514,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8074,8075,-9,-9,1,0,43,0,3,0,3,3,-9,0,4,0,0,0,27,-5,13.4182,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,41.88,45.75,7,2,3,0,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8075,8074,8077,-9,1,1,48,0,3,0,1,1,-9,0,3,8.6605816,8.5479259,0,27,5,151.33853,0,3,3,2021,12,0,30,40,1,0,0,17.221491,17.221491,.05,.05,0,0,0,0,0,96,1,1,0,0,0,41.88,45.75,49,55,1.666666666666667,2,3,0,0,11,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8076,-9,8074,8075,1,0,17,0,3,1,3,0,0,0,2,0,0,0,0,0,-1078.9683,-9,3,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.58,52.86,-9,-9,5,2,3,0,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4555,8077,-9,-9,-9,1,0,80,0,3,0,2,2,-9,0,3,0,0,0,0,0,-928.2027,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,2,1,1465,80459.836,0,0,0,0,0,0 +3722,4556,8078,-9,8074,8075,1,1,22,0,3,0,2,2,1,0,4,7.7517719,7.6996498,0,0,0,-807.42773,-9,3,1,2021,11,0,15,0,1,0,1,17.272125,17.272125,0,0,0,0,0,0,0,2,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,7,7,3,1,362,-49896.926,0,0,0,0,0,97.548721 +3722,4557,8079,-9,8074,8075,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1030.0261,-9,3,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44,55,-9,-9,5,2,3,0,0,0,7,2,1,96,0,0,0,0,0,0,0 +3723,4558,8080,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5717068,8.4006319,1.5176942,0,0,-1021.9611,0,1,3,2021,8,0,37,37,1,0,0,12.765455,12.765455,.05,.05,0,0,0,0,0,0,1,1,0,4.101212,0,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,296,506027.5,211284.44,276246.5,0,0,0,781.02704 +3724,4559,8081,-9,8082,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.87732,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,2,0,741.5,-39546.434,0,0,0,0,1074.7059,1152.8125 +3724,4559,8082,-9,-9,-9,1,0,29,0,1,0,3,3,-9,0,4,6.9548783,6.9812527,0,0,0,-1014.0309,0,-9,-9,2021,6,0,16,0,1,0,0,7.3099432,7.3099432,0,0,0,0,0,0,0,0,1,0,1,1.3734714,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,741.5,-39546.434,0,0,0,0,1074.7059,1152.8125 +3725,4560,8083,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.2730541,8.3500967,0,0,0,-994.31476,0,3,2,2021,6,0,37,32,1,0,0,11.064606,11.064606,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,13,1,4,1,1016,431996,359074.94,182077.64,49483.813,3174.9023,0,1356.9565 +3726,4561,8084,8085,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7298436,7.5685925,0,23,4,-81.931007,-9,2,2,2021,6,0,36,0,1,0,0,9.0250654,9.0250654,.05,.05,0,0,0,0,0,0,0,0,0,1.4534322,0,54.62,53.53,43.69,43.24,8.333333333333334,1,1,0,0,13,5,3,1,274,218651.27,3331.75,165703.22,33816.688,5066.0869,363.86832,1670.4882 +3726,4561,8085,8084,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.0955968,7.1372881,0,23,-4,-107.54186,0,3,2,2021,18,6,50,50,1,6,0,2.3820257,2.3820257,.05,.05,0,0,0,0,0,0,0,0,0,5.8286295,0,43.69,43.24,54.62,53.53,3.333333333333333,1,1,0,0,12,5,3,1,274,218651.27,3331.75,165703.22,33816.688,5066.0869,363.86832,1670.4882 +3726,4562,8086,-9,8084,8085,1,1,23,0,0,0,2,2,-9,0,4,8.1080227,8.1787596,0,0,0,-949.26349,-9,3,2,2021,11,0,36,0,1,2,1,9.9423885,9.9423885,.05,.05,0,0,0,0,0,0,0,0,0,1.5583035,0,47,59,-9,-9,7,1,1,0,0,1,5,4,1,864,-16757.418,-75819.117,93461.641,30630.16,21259.164,922.34015,1194.9166 +3727,4563,8087,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.530046,7.7493606,0,0,-1013.1321,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7492218,48.91,43.45,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,368,411146.25,372349.81,228340.19,70445.594,0,0,1406.3317 +3728,4564,8088,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4754133,8.561451,0,0,0,-907.04199,0,2,1,2021,15,3,44,45,1,3,0,11.565761,11.565761,0,0,0,0,0,0,0,0,0,0,0,0,0,45.64,33.17,-9,-9,8.333333333333334,3,4,0,0,6,8,5,0,841,24562.896,6419.3682,0,0,0,0,1583.8705 +3729,4565,8089,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.456912,8.3765154,0,0,0,-930.33746,0,2,3,2021,25,11,32,38,1,11,0,13.836823,13.836823,.05,.05,0,0,0,0,0,27,0,0,0,3.2600288,0,30.26,50.99,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,349,233913.16,193117.88,226602.89,40737.063,0,0,1432.2418 +3729,4566,8090,-9,8089,-9,1,0,24,0,0,0,1,1,-9,0,3,0,6.0720348,5.8291225,0,0,-950.36261,1,1,-9,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,2,0,0,0,6.0617309,0,30.61,27.79,-9,-9,6.666666666666667,1,1,0,1,1,2,2,1,451,-21326.885,0,0,0,0,0,277.97357 +3730,4567,8091,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.7674055,7.4984536,0,0,-1033.1333,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4292185,7.8646665,56.71,53.58,-9,-9,10,1,1,0,0,0,2,3,1,171,478377.88,102099.64,296842.22,0,0,0,2366.386 +3731,4568,8092,8093,-9,-9,1,0,48,1,1,0,2,2,-9,0,1,8.7719831,8.5137262,0,32,-7,-47.64357,0,2,-9,2021,12,4,37,37,1,4,0,14.303014,14.303014,0,0,0,0,0,0,0,27,0,0,0,6.9459848,0,42.64,30.89,55.96,49.93,8.333333333333334,1,1,0,0,13,10,5,1,1757,1350515.8,194998.33,659108.13,0,0,0,4298.1348 +3731,4568,8093,8092,-9,-9,1,1,55,1,1,0,2,2,-9,0,3,8.3261423,8.28827,0,32,7,-80.133965,0,3,3,2021,8,0,41,40,1,0,0,9.9758043,9.9758043,.05,.05,0,0,0,0,0,2,0,0,0,6.8906379,0,55.96,49.93,42.64,30.89,8.333333333333334,1,1,0,0,12,10,5,1,1757,1350515.8,194998.33,659108.13,0,0,0,4298.1348 +3731,4569,8094,-9,8092,8093,1,1,23,1,1,0,2,2,-9,0,3,7.8471255,7.6560726,0,0,0,-933.66992,0,2,2,2021,11,0,35,40,1,0,1,7.3771138,7.3771138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,53.95,-9,-9,8.333333333333334,1,1,0,0,13,10,3,1,145,-155274.7,51053.066,0,0,0,0,1726.7089 +3731,4570,8095,-9,-9,-9,1,1,20,1,1,0,2,2,-9,0,4,8.0466423,8.0813131,0,0,0,-985.08417,0,-9,-9,2021,11,0,40,40,1,2,0,9.5003624,9.5003624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,4,6,0,0,1,10,3,1,1019,11626.229,-37571.426,0,0,0,0,1273.3903 +3732,4571,8096,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1025.4692,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,-9,-9,7,1,1,1,0,0,2,1,0,4196,-12849.025,0,0,0,0,0,334.48901 +3732,4571,8097,-9,8096,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.8892,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,4196,-12849.025,0,0,0,0,0,334.48901 +3733,4572,8098,8099,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.0474987,7.249579,5,6,27.525009,0,3,1,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,1,0,1.4182144,0,0,1,1,0,7.7146926,7.0940714,61.04,28.88,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,523,783409.38,858157.75,260973.97,0,0,0,2592.135 +3733,4572,8099,8098,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6679749,7.6831536,0,5,-6,-6.2157774,0,-9,-9,2021,6,0,30,32,1,0,0,7.4403505,7.4403505,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.04,28.88,8.333333333333334,1,1,0,0,12,5,3,1,523,783409.38,858157.75,260973.97,0,0,0,2592.135 +3734,4573,8100,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.7905169,7.8130746,0,0,0,-1013.7097,0,3,2,2021,6,0,1,-9,1,0,0,266.24689,266.24689,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,-9,-9,5,2,3,0,0,11,8,3,1,533,22225.469,136667.2,0,0,0,0,989.58319 +3735,4574,8101,8102,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.5092354,8.762023,0,7,0,34.943634,0,1,1,2021,12,0,40,35,1,0,0,19.887802,19.887802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.58,40.07,40.89,42.07,5,1,1,0,0,9,9,5,1,393.5,993227.38,577325.88,0,0,0,189.4357,3549.3853 +3735,4574,8102,8101,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9712191,8.1691589,0,7,0,59.228546,0,-9,-9,2021,24,9,55,40,1,9,0,6.4470367,6.4470367,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.89,42.07,51.58,40.07,1.666666666666667,1,1,0,0,5,9,5,1,393.5,993227.38,577325.88,0,0,0,189.4357,3549.3853 +3736,4575,8103,8104,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,8.4810181,8.4953604,0,7,6,1.0543668,0,-9,-9,2021,24,11,43,43,1,11,0,10.270937,10.270937,.05,.05,0,0,0,0,0,0,1,1,0,3.7108371,0,31.48,51.58,51.83,57.2,3.333333333333333,1,1,0,0,9,5,4,1,1189.5,613196.38,121662.19,357420.31,68696.297,0,0,3691.6714 +3736,4575,8104,8103,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.4253111,8.6763239,0,19,-6,17.77079,0,1,3,2021,7,0,45,55,1,0,0,10.133983,10.133983,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,31.48,51.58,8.333333333333334,1,1,0,1,9,5,4,1,1189.5,613196.38,121662.19,357420.31,68696.297,0,0,3691.6714 +3737,4576,8105,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.8311892,7.130939,0,0,-988.73901,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7782979,6.9557881,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,475,260865.16,75130.461,247679.39,0,0,0,2360.6152 +3738,4577,8106,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,7.6532335,8.1850662,7.098608,0,0,-1071.6794,0,3,3,2021,11,0,14,33,1,0,0,23.001892,23.001892,0,0,0,0,0,0,0,2,1,1,0,0,6.7595611,50.85,47.03,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,2563,497742.25,-40654.691,355005.75,70405.648,0,0,2519.1418 +3739,4578,8107,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,8.3741121,8.4928665,0,0,-891.39069,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6770966,8.4250498,60.02,56.42,-9,-9,10,1,1,0,0,0,11,4,1,715,1346600.8,689173.88,386837.25,0,0,0,3733.7412 +3740,4579,8108,8109,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.5515962,7.8748202,30,-16,.82893592,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2948108,7.4432697,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,550.5,1506587.4,555718.13,756431.19,0,0,0,2851.1831 +3740,4579,8109,8108,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.2977047,7.8960671,27,16,35.393631,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4765915,7.8656893,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,7,4,1,550.5,1506587.4,555718.13,756431.19,0,0,0,2851.1831 +3741,4580,8110,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.7575278,7.7584872,0,0,-1034.4091,0,3,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7276777,8.0245657,48.22,34.78,-9,-9,10,2,3,0,0,0,11,3,1,263,930719.81,422372,347993.06,0,0,0,2342.5496 +3742,4581,8111,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,5.3951492,5.3254709,0,0,0,-1004.3376,0,2,2,2021,4,0,17,16,1,0,0,1.3481756,1.3481756,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,5,12,2,1,2254,31611.248,-72238.453,0,0,0,0,391.84946 +3743,4582,8112,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.0302191,8.8688526,0,0,0,-943.09839,0,1,1,2021,6,0,50,53,1,0,0,16.854239,16.854239,.05,.05,0,0,0,0,0,0,0,0,0,3.9476917,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,1092,-27985.137,-2578.6365,0,0,0,0,2480.688 +3744,4583,8113,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.2383623,7.1451554,0,0,-850.42493,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1486311,55.56,51.53,-9,-9,10,1,1,0,0,7,1,2,0,331,432308.44,113235.68,134120.83,0,0,0,1858.0428 +3745,4584,8114,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,6.4828777,7.7999492,7.0843191,0,0,-1075.2749,0,2,1,2021,6,0,12,12,1,0,0,6.8337975,6.8337975,0,0,0,0,0,0,0,7,1,1,0,6.1249208,7.1016393,54.1,59.11,-9,-9,10,1,1,0,0,10,5,3,1,324,457055.75,422933.94,157880.34,0,13869.782,2545.7473,1053.5093 +3746,4585,8115,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,0,0,-978.04541,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,239,-65159.383,0,0,0,0,0,729.35962 +3747,4586,8116,8117,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.3807721,8.0708361,7.1324377,12,6,96.550697,0,-9,-9,2021,6,0,12,40,1,0,0,21.462854,21.462854,.05,.05,.05,0,0,0,0,0,0,0,0,3.4025147,7.0961051,53.29,49.66,53.81,53.56,8.333333333333334,1,1,0,0,13,6,3,1,500.5,538673.94,200349.38,172967.5,0,0,0,1729.942 +3747,4586,8117,8116,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.9380651,6.5415659,4.951602,31,-6,66.462471,0,2,2,2021,11,0,13,17,1,0,0,5.804914,5.804914,.05,.05,0,0,0,0,0,0,0,0,0,3.6027448,4.9894156,53.81,53.56,53.29,49.66,8.333333333333334,1,1,0,0,11,6,3,1,500.5,538673.94,200349.38,172967.5,0,0,0,1729.942 +3747,4587,8118,-9,8117,8116,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.7675,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5104938,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,364,-46567.863,0,0,0,0,0,1158.4241 +3748,4588,8119,8120,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.9622183,7.8289571,0,7,-4,179.92915,0,2,3,2021,32,12,60,53,1,12,0,4.7038031,4.7038031,0,0,0,0,0,0,0,66,0,0,0,0,0,20.71,46.33,52.77,55.33,1.666666666666667,1,1,0,0,6,10,3,0,700.5,67304.258,-35588.484,67860.172,-596.29614,0,0,625.1582 +3748,4588,8120,8119,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,7,4,-27.802488,0,2,2,2021,8,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,20.71,46.33,8.333333333333334,1,1,0,0,12,10,3,0,700.5,67304.258,-35588.484,67860.172,-596.29614,0,0,625.1582 +3749,4589,8121,8122,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,7.9658623,8.3643227,0,4,3,-24.562243,0,-9,-9,2021,6,0,42,43,1,0,0,12.066811,12.066811,0,0,0,0,0,0,0,0,1,1,0,0,0,52.61,33.99,25.35,49.05,6.666666666666667,1,1,0,0,14,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3749,4589,8122,8121,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.198945,7.1926188,0,4,-3,25.784271,0,-9,-9,2021,24,11,14,20,1,11,0,9.9238386,9.9238386,0,0,0,0,0,0,0,2,1,1,0,0,0,25.35,49.05,52.61,33.99,8.333333333333334,1,1,0,0,12,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3749,4589,8123,-9,8122,8121,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.0267,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3750,4590,8124,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4439569,7.3072495,0,0,-1066.1885,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6682196,7.6135674,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,3,4,3,1,2334,843344.81,261611.55,173961.95,0,0,0,3225.7957 +3751,4591,8125,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.8322458,7.8208895,0,0,-890.91064,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8183584,52.84,40.88,-9,-9,3.333333333333333,1,1,0,0,11,9,3,1,112,814043.94,387522.84,188444.64,0,0,0,462.9483 +3752,4592,8126,8127,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,65,-3,-154.2309,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.94,41.29,38.74,61.79,1.666666666666667,1,1,0,0,0,2,2,1,550,98765.945,127540.08,0,0,0,0,2118.4382 +3752,4592,8127,8126,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,4.9025884,4.9495835,65,3,5.6514711,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,3.4185572,0,27,1,1,0,0,4.7167935,38.74,61.79,53.94,41.29,8.333333333333334,1,1,0,0,0,2,2,1,550,98765.945,127540.08,0,0,0,0,2118.4382 +3753,4593,8128,8129,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.5643926,6.8537831,13,-5,95.048019,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1475139,6.4488602,54.2,57.49,46.41,42.57,8.333333333333334,1,1,0,0,9,10,2,1,441.5,372750.78,38785.508,189129.75,0,0,0,2060.7227 +3753,4593,8129,8128,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,13,5,28.629442,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9384246,0,46.41,42.57,54.2,57.49,5,1,1,0,0,11,10,2,1,441.5,372750.78,38785.508,189129.75,0,0,0,2060.7227 +3754,4594,8130,8131,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.6934566,8.1028433,58,2,27.240408,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1469765,8.3674688,50.55,53.71,57.06,57.76,5,1,1,0,0,0,13,3,1,2413.5,314997.38,173287.41,223497.22,0,0,0,3664.738 +3754,4594,8131,8130,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,58,-2,-107.4315,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.55,53.71,10,1,1,0,0,5,13,3,1,2413.5,314997.38,173287.41,223497.22,0,0,0,3664.738 +3755,4595,8132,8133,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9309182,7.9913135,0,16,3,-79.972664,0,-9,-9,2021,10,0,45,50,1,1,0,8.2154627,8.2154627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,54,61.12,51.57,8,1,1,0,0,1,10,4,1,1156,160759.61,92060.414,0,0,181.8125,0,2492.7185 +3755,4595,8133,8132,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0227871,8.4109678,0,7,-3,-130.74905,0,-9,2,2021,7,0,50,40,1,0,0,6.3784943,6.3784943,.05,.05,0,0,0,0,0,14.5,0,0,0,5.1443295,0,61.12,51.57,51,54,8.333333333333334,1,1,0,0,7,10,4,1,1156,160759.61,92060.414,0,0,181.8125,0,2492.7185 +3755,4596,8134,-9,8132,8133,1,0,23,0,0,0,2,2,-9,0,4,8.3130827,8.3771353,0,0,0,-950.08868,0,2,2,2021,11,0,40,38,1,2,1,14.226224,14.226224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,10,4,1,131,-39168.953,-82813.867,64842.582,96571.023,-89.60495,1588.3564,1648.8978 +3756,4597,8135,8136,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,15,-4,-75.690186,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,2,3,0,0,0,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4597,8136,8135,8138,8139,1,1,38,0,3,0,2,2,-9,0,4,8.5007648,8.3486328,0,15,4,64.903801,0,3,2,2021,10,0,50,7,1,1,0,13.119802,13.119802,0,0,0,0,0,0,0,0,1,1,0,3.8241367,0,51,56,48,56,7,2,3,0,0,1,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4597,8137,-9,8135,8136,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.7443,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4598,8138,8139,-9,-9,1,0,59,0,3,0,3,3,-9,0,3,0,0,0,44,-2,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,47,55,53,7,2,3,0,0,0,8,1,1,1077,385753.25,150638.72,201796.94,0,0,0,-4.6057129 +3756,4598,8139,8138,-9,-9,1,1,61,0,3,0,2,2,-9,0,4,0,0,0,44,2,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55,53,49,47,8,2,3,0,0,0,8,1,1,1077,385753.25,150638.72,201796.94,0,0,0,-4.6057129 +3756,4599,8140,8141,-9,-9,1,0,27,0,3,0,2,2,-9,0,4,0,0,0,7,-5,-146.6772,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4599,8141,8140,8138,8139,1,1,32,0,3,0,2,2,-9,0,4,8.2275143,8.2447767,0,7,5,176.61137,0,3,2,2021,10,0,40,37,1,1,0,10.773452,10.773452,.05,.05,0,0,0,0,0,0,1,1,0,1.4928089,0,50,57,47,57,7,2,3,0,0,1,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4599,8142,-9,8140,8141,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.20221,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4600,8143,-9,8138,8139,1,1,26,0,3,0,2,2,-9,0,4,8.0973396,8.3383274,0,0,0,-894.25769,0,3,2,2021,10,0,50,40,1,1,1,8.9886608,8.9886608,0,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,4,8,4,1,164,58382.426,0,282621.94,143348.61,0,0,1537.5469 +3756,4601,8144,-9,8138,8139,1,0,28,0,3,0,1,1,-9,0,4,0,0,0,0,0,-1028.4309,1,3,2,2021,11,0,0,37,2,2,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,0,0,8,1,1,508,-95415.133,-101304.13,0,0,0,0,0 +3756,4602,8145,-9,8138,8139,1,1,20,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1006.5446,1,3,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,8,2,1,1420,46120.676,0,0,0,0,0,0 +3757,4603,8146,-9,8147,8148,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.6089,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3757,4603,8147,8148,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.5796785,8.7865543,0,15,-8,-135.24564,0,2,3,2021,12,0,37,42,1,0,0,12.77331,12.77331,.05,.05,0,0,0,0,0,0,1,1,0,3.5090318,0,39,46.96,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3757,4603,8148,8147,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,7.4769244,7.6236997,6.7160525,15,8,23.691769,0,3,3,2021,7,0,35,30,1,0,0,6.8524585,6.8524585,.05,.05,0,0,0,0,0,0,1,1,0,3.151886,6.2946067,57.16,56.15,39,46.96,8.333333333333334,1,1,0,0,9,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3758,4604,8149,8150,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.7228084,8.5174818,7.0657663,2,3,-49.086304,0,2,3,2021,9,0,38,39,1,0,0,7.7850862,7.7850862,.05,.05,0,0,0,0,0,7,0,0,0,6.98595,6.9461894,56.18,53.85,54.9,54.53,8.333333333333334,1,1,0,0,8,10,4,1,226.5,-117481.03,-86268.703,0,0,0,0,3240.8511 +3758,4604,8150,8149,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8640351,7.8159056,0,32,-3,80.934769,0,2,3,2021,9,0,23,30,1,0,0,10.4675,10.4675,0,0,0,0,0,0,0,2,0,0,0,0,0,54.9,54.53,56.18,53.85,8.333333333333334,1,1,0,0,10,10,4,1,226.5,-117481.03,-86268.703,0,0,0,0,3240.8511 +3759,4605,8151,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,3.0402279,3.1552787,0,0,-932.39404,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6707516,3.0766037,51.36,52.15,-9,-9,1.666666666666667,1,1,0,0,2,6,2,1,234,89583.281,47204.547,0,0,0,0,2804.9832 +3759,4606,8152,-9,-9,8151,1,0,41,0,0,0,1,1,-9,0,4,8.5158949,8.5364981,0,0,0,-1043.5363,0,-9,2,2021,8,0,43,38,1,0,0,14.442574,14.442574,.05,.05,0,0,0,0,0,0,1,1,0,7.2526736,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1274,430221.13,332266.81,24130.605,0,0,0,1728.9578 +3759,4606,8153,-9,8152,-9,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.185,-9,1,-9,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0203977,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1274,430221.13,332266.81,24130.605,0,0,0,1728.9578 +3760,4607,8154,8155,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.4873905,8.2610083,0,13,-4,7.2279987,0,3,2,2021,7,0,30,31,1,0,0,15.344875,15.344875,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8155,8154,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5018044,8.6468172,0,13,4,117.70129,0,3,2,2021,7,0,50,48,1,0,0,13.005396,13.005396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,10,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8156,-9,8154,8155,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4456,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8157,-9,8154,8155,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1077.5647,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3761,4608,8158,8160,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,7.4785118,8.4169426,7.2327981,7,-3,-72.585709,0,3,3,2021,10,0,25,20,1,0,0,9.3719454,9.3719454,.05,.05,0,0,0,0,0,0,1,1,0,7.9296861,0,49.04,55.86,35.81,53.81,5,1,1,0,0,8,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3761,4608,8159,-9,8160,8158,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.13312,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3761,4608,8160,8158,-9,-9,1,0,47,1,1,0,1,1,-9,0,4,7.9589272,7.8490143,0,7,3,107.15967,0,2,2,2021,15,4,15,11,1,4,0,27.781912,27.781912,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,53.81,49.04,55.86,6.666666666666667,1,1,0,1,6,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3762,4609,8161,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2945471,9.3332996,7.6006241,0,0,-923.92487,0,2,2,2021,7,0,40,40,1,0,0,15.414225,15.414225,.05,.05,0,0,0,0,0,7,1,0,1,6.6667051,7.8895402,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,15,5,5,1,231,374967.91,437568.5,89008.656,-673.04578,3081.791,2608.7693,3934.7051 +3763,4610,8162,8163,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,9.5171947,9.4616394,62,1,-16.262768,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6121435,9.5912342,60.12,54.8,69.51000000000001,25.93,10,1,1,0,0,0,10,5,1,425,2766955.5,1366936.5,0,0,0,0,8062.0547 +3763,4610,8163,8162,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-1,-50.377293,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8489256,0,69.51000000000001,25.93,60.12,54.8,10,1,1,0,0,0,10,5,1,425,2766955.5,1366936.5,0,0,0,0,8062.0547 +3764,4611,8164,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.507597,7.4333081,0,0,-992.75403,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1834197,48.18,34.35,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,374,388614.34,52641.238,250075.59,0,0,0,1358.9058 +3765,4612,8165,-9,8166,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0167,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3765,4612,8166,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,2,7.1834011,7.0514288,0,0,0,-977.30316,0,-9,-9,2021,17,4,24,24,1,4,0,6.3513122,6.3513122,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.04,36.79,-9,-9,3.333333333333333,1,1,0,0,3,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3765,4612,8167,-9,8166,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.6452,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3766,4613,8168,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1041.9275,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1732764,0,33.33,22.86,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,300,0,0,0,0,0,0,2214.9673 +3767,4614,8169,8170,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.9399309,8.9708548,0,1,4,-44.291218,0,-9,-9,2021,8,0,40,40,1,0,0,20.327169,20.327169,.05,.05,0,0,0,0,0,0,0,0,0,4.3784852,0,56.17,46.18,51,54,8.333333333333334,1,1,0,0,9,2,4,1,349.5,1262467.5,817910.75,430045.81,10139.887,0,0,4522.1655 +3767,4614,8170,8169,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.2067719,8.12216,0,1,-4,115.994,-9,-9,-9,2021,10,0,38,0,1,1,0,11.572954,11.572954,0,0,0,0,0,0,0,0,0,0,0,3.8750441,0,51,54,56.17,46.18,8,1,1,0,0,1,2,4,1,349.5,1262467.5,817910.75,430045.81,10139.887,0,0,4522.1655 +3768,4615,8171,8172,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.483254,7.0162148,49,0,-10.137986,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6934545,6.9612479,43.6,51.61,45.63,36.08,6.666666666666667,1,1,0,0,9,7,4,1,967,2997838.3,1568510.3,179609.34,0,0,0,3744.8442 +3768,4615,8172,8171,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.1300077,8.2301722,49,0,137.53464,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6227314,8.4773054,45.63,36.08,43.6,51.61,6.666666666666667,1,1,0,0,0,7,4,1,967,2997838.3,1568510.3,179609.34,0,0,0,3744.8442 +3769,4616,8173,-9,8174,8175,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1074.8745,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3769,4616,8174,8175,-9,-9,1,0,57,0,2,0,2,2,-9,0,4,7.1951251,7.2949247,0,33,2,29.511568,0,3,3,2021,10,0,35,25,1,0,0,5.4676423,5.4676423,0,0,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,58.87,51.29,5,1,1,0,0,11,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3769,4616,8175,8174,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.304512,8.1075144,0,33,-2,116.18105,0,2,3,2021,7,0,43,42,1,0,0,9.8484297,9.8484297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,51.29,56.9,49.4,5,1,1,0,0,13,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3770,4617,8176,8177,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.4305477,8.4686632,0,3,-1,-2.1612854,0,2,2,2021,16,4,35,35,1,4,0,14.893478,14.893478,0,0,0,0,0,0,0,0,0,0,0,1.1000711,0,44.53,56.37,52.97,51.29,8.333333333333334,1,1,0,0,15,2,5,1,212,961827.5,687164.63,174741.42,55787.297,0,0,4180.0908 +3770,4617,8177,8176,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4923191,8.5237694,6.0403905,3,1,37.297947,-9,-9,-9,2021,9,0,40,0,1,0,0,12.551055,12.551055,.05,.05,0,0,0,0,0,2,0,0,0,0,6.318387,52.97,51.29,44.53,56.37,10,1,1,0,0,1,2,5,1,212,961827.5,687164.63,174741.42,55787.297,0,0,4180.0908 +3771,4618,8178,8179,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,33,-3,25.477789,0,2,2,2021,34,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.9115691,0,22.55,61.09,50.34,48.53,5,1,1,0,0,12,5,3,1,599.5,662322.88,227881.98,293542.56,0,0,0,1818.0083 +3771,4618,8179,8178,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0109835,7.7802787,0,33,3,-45.717766,-9,3,3,2021,11,0,42,0,1,0,0,8.3476191,8.3476191,.05,.05,.05,0,0,0,0,2,0,0,0,6.4753203,0,50.34,48.53,22.55,61.09,6.666666666666667,1,1,0,0,9,5,3,1,599.5,662322.88,227881.98,293542.56,0,0,0,1818.0083 +3772,4619,8180,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.7889128,9.0514069,0,0,0,-947.41479,0,2,2,2021,15,4,45,45,1,4,0,14.450871,14.450871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.38,49.45,-9,-9,3.333333333333333,1,1,0,0,12,12,5,1,503,817466.81,502780,-44108.242,0,1195.9409,4071.8411,2631.6707 +3772,4620,8181,-9,8180,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0929747,7.8518958,0,0,0,-965.2063,0,1,-9,2021,15,3,35,35,1,3,1,7.6939707,7.6939707,0,0,0,0,0,0,0,0,0,0,0,0,0,38.76,58.16,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,244,48628.453,0,0,0,0,0,844.98907 +3772,4621,8182,-9,8180,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-935.53979,-9,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,685,0,0,0,0,0,0,0 +3773,4622,8183,-9,8186,8185,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-872.54779,1,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.83,56.01,-9,-9,10,1,1,0,0,2,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8184,-9,8186,8185,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1024.1888,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8185,8186,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8572102,8.9551506,0,10,4,-87.474548,0,2,2,2021,16,5,39,39,1,5,0,20.604221,20.604221,.05,.05,.05,0,0,0,0,0,0,0,0,1.5633645,0,44.66,57.83,35.05,62.72,8.333333333333334,1,1,0,0,11,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8186,8185,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.9610558,9.1033764,0,10,-4,-61.068417,0,2,2,2021,14,4,47,50,1,4,0,20.861118,20.861118,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,62.72,44.66,57.83,8.333333333333334,1,1,0,0,11,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3774,4623,8187,8188,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.5063019,8.1096745,0,27,-1,6.3722897,0,2,1,2021,12,2,53,50,1,2,0,13.614741,13.614741,.05,.05,0,0,0,0,0,0,0,0,0,3.3045819,0,40.32,58.5,52.32,57.18,5,1,1,0,0,12,1,5,1,605,380313.84,300044,204144.44,137033.94,7754.8164,14019.971,2999.3127 +3774,4623,8188,8187,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.3521371,7.3042555,0,27,1,-21.880766,0,2,2,2021,9,0,25,28,1,0,0,9.4705038,9.4705038,.05,.05,0,0,0,0,0,2,0,0,0,7.077949,0,52.32,57.18,40.32,58.5,5,1,1,0,0,11,1,5,1,605,380313.84,300044,204144.44,137033.94,7754.8164,14019.971,2999.3127 +3775,4624,8189,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.6441755,9.7202158,0,0,0,-913.46643,0,1,2,2021,7,0,57,0,1,0,0,31.882069,31.882069,.05,.05,0,0,0,0,0,0,0,0,0,4.9526,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,209,901661.06,644232.88,375001.59,114983.17,10339.063,2624.5244,4941.6631 +3776,4625,8190,8191,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.7668872,6.073875,10,7,-11.800803,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3592664,6.5236335,55.76,34.24,57.16,56.15,8.333333333333334,1,1,0,0,4,6,2,1,511.5,445245.31,198978.25,215044.34,0,0,0,2102.0583 +3776,4625,8191,8190,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,50,-7,-6.5483627,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7383902,0,57.16,56.15,55.76,34.24,8.333333333333334,1,1,0,0,8,6,2,1,511.5,445245.31,198978.25,215044.34,0,0,0,2102.0583 +3777,4626,8192,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.3511,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,985,349647.81,0,91778.867,0,0,0,63.350681 +3778,4627,8193,8194,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8465195,8.9940958,0,15,-1,24.70718,0,-9,-9,2021,18,6,43,40,1,6,0,19.321129,19.321129,.05,.05,.05,0,0,0,0,0,0,0,0,2.2907538,0,43.44,58.7,32.9,57.87,8.333333333333334,1,1,0,0,8,6,5,1,815,325206.44,177877.34,241633.97,21394.422,4745.8047,0,4228.9082 +3778,4627,8194,8193,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2887573,8.5716209,0,15,1,15.352406,0,2,1,2021,24,12,37,39,1,12,0,19.84409,19.84409,0,0,0,0,0,0,0,0,0,0,0,4.8683882,0,32.9,57.87,43.44,58.7,6.666666666666667,1,1,0,0,6,6,5,1,815,325206.44,177877.34,241633.97,21394.422,4745.8047,0,4228.9082 +3779,4628,8195,8196,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.1168547,8.3139629,6.6877828,33,-4,-119.17471,0,3,2,2021,5,0,36,36,1,0,0,10.372218,10.372218,0,0,0,0,0,0,0,0,1,1,0,0,7.0208111,54.79,55.86,57.9,51.84,8.333333333333334,3,4,0,0,15,8,4,1,724,197206.56,-65767.352,0,0,1549.2402,0,1950.4194 +3779,4628,8196,8195,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.6186676,6.592803,33,4,80.998795,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9072742,57.9,51.84,54.79,55.86,8.333333333333334,3,4,0,0,14,8,4,1,724,197206.56,-65767.352,0,0,1549.2402,0,1950.4194 +3779,4629,8197,-9,8196,8195,1,1,35,0,0,0,1,1,-9,0,5,8.1492319,8.1987,0,0,0,-987.77356,-9,3,3,2021,5,0,45,0,1,0,1,7.4849167,7.4849167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.63,57.91,-9,-9,8.333333333333334,3,4,0,0,6,8,4,1,540,34858.102,-112467.35,0,0,9220.3984,3079.6772,1700.4736 +3779,4630,8198,-9,8196,8195,1,1,29,0,0,0,2,2,-9,0,3,8.5161943,8.2735872,0,0,0,-988.86322,0,2,2,2021,16,3,36,36,1,3,1,11.612772,11.612772,0,0,0,0,0,0,0,0,1,1,0,0,0,35.43,43.04,-9,-9,5,3,4,0,0,5,8,5,1,484,-63060.203,-52813.008,0,0,0,0,2103.6052 +3780,4631,8199,8201,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.7981138,8.7387123,0,11,2,20.716845,0,2,3,2021,14,2,50,45,1,2,0,14.432278,14.432278,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.14,60.45,48.85,58.56,1.666666666666667,1,1,0,0,10,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3780,4631,8200,-9,8201,8199,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4554,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3780,4631,8201,8199,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.9259501,7.8468776,0,11,-2,-18.645584,0,-9,-9,2021,12,1,23,23,1,1,0,20.997044,20.997044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,51.14,60.45,8.333333333333334,1,1,0,0,11,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3781,4632,8202,8203,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,9.302577,9.3002729,0,2,2,-48.968548,0,-9,-9,2021,12,0,40,40,1,0,0,23.296225,23.296225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.92,55.55,70.96000000000001,38.91,8.333333333333334,1,1,0,0,3,11,5,1,386,1041894.8,296752.81,585080.13,232748.48,0,0,5037.4263 +3781,4632,8203,8202,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.0800571,8.1847477,0,2,-2,-65.672989,0,3,2,2021,11,0,40,40,1,0,0,14.176377,14.176377,.05,.05,0,0,0,0,0,0,0,0,0,1.6322234,0,70.96000000000001,38.91,52.92,55.55,8.333333333333334,1,1,0,0,7,11,5,1,386,1041894.8,296752.81,585080.13,232748.48,0,0,5037.4263 +3782,4633,8204,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.80286,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9188082,0,53,44,-9,-9,8,1,1,0,0,0,4,1,1,202,38078.848,0,0,0,0,0,1053.0591 +3783,4634,8205,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1024.2117,0,2,3,2021,23,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.51,47.63,-9,-9,0,1,1,1,1,7,2,1,0,593,-98196.188,23626.881,0,0,0,964.65527,111.16446 +3784,4635,8206,-9,8209,8208,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.35297,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8207,-9,8209,8208,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.6908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8208,8209,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.2079487,8.3006735,0,7,1,-86.807213,0,-9,-9,2021,6,0,46,47,1,0,0,11.483197,11.483197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.6,46.43,54.69,57.47,8.333333333333334,2,3,0,0,9,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8209,8208,-9,-9,1,0,34,0,3,0,2,2,-9,0,5,0,0,0,14,-1,18.437666,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,60.6,46.43,8.333333333333334,2,3,0,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8210,-9,8209,8208,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.446,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3785,4636,8211,8212,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4614229,8.5522346,0,3,3,41.705559,-9,-9,-9,2021,11,0,40,0,1,2,0,14.182848,14.182848,0,0,0,0,0,0,0,0,0,0,0,7.4240904,0,48,56,44.74,47.1,7,4,1,0,0,1,8,5,0,673.5,242794.39,189191.03,584181.69,392490,2194.7324,0,9292.0557 +3785,4636,8212,8211,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.7351408,9.5014791,0,3,-3,6.6441522,0,2,2,2021,14,2,40,40,1,2,0,29.198605,29.198605,0,0,.05,0,0,0,0,0,0,0,0,3.8428147,0,44.74,47.1,48,56,5,1,1,0,0,8,8,5,0,673.5,242794.39,189191.03,584181.69,392490,2194.7324,0,9292.0557 +3786,4637,8213,8214,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,9.586525,9.8635416,0,1,2,71.341019,-9,3,3,2021,10,0,90,0,1,1,0,23.021423,23.021423,.05,.05,0,0,0,0,0,0,0,0,0,4.5597944,0,52,47,50,47,7,1,1,0,0,1,5,5,1,808.5,1484190.8,846077.13,467583.47,0,0,0,8241.5029 +3786,4637,8214,8213,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.1979113,7.8135352,7.4374342,1,-2,-23.954084,-9,-9,-9,2021,11,0,35,0,1,2,0,4.9969912,4.9969912,.05,.05,0,0,0,0,0,0,0,0,0,0,7.4825711,50,47,52,47,7,1,1,0,0,9,5,5,1,808.5,1484190.8,846077.13,467583.47,0,0,0,8241.5029 +3787,4638,8215,8216,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,45,-2,-39.447033,0,3,3,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.22,30.53,32.94,28.33,6.666666666666667,1,1,0,0,0,11,3,0,1673.5,70620.766,92200.078,0,0,0,-800.86957,1955.6582 +3787,4638,8216,8215,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,7.8980861,8.0942183,6.6447363,45,2,-88.029236,0,2,2,2021,20,6,40,40,1,6,0,8.3414116,8.3414116,.05,.05,0,0,0,0,0,86,1,1,0,0,6.8222284,32.94,28.33,28.22,30.53,1.666666666666667,1,1,0,0,7,11,3,0,1673.5,70620.766,92200.078,0,0,0,-800.86957,1955.6582 +3788,4639,8217,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.9549694,7.1632295,0,0,-942.16687,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1400361,56.94,43.99,-9,-9,10,1,1,0,0,0,10,3,0,415,697324.81,30786.984,307901.69,0,0,0,1874.9827 +3789,4640,8218,8219,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9040399,7.6966171,0,25,-15,16.151762,0,3,3,2021,8,0,26,22,1,0,0,11.742132,11.742132,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.61,34.59,8.333333333333334,1,1,0,0,13,7,3,1,1427.5,1026265.6,554346.25,389913.31,0,0,3078.1616,2697.4175 +3789,4640,8219,8218,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.5625501,7.6582232,25,15,85.882126,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2863011,7.6241221,66.61,34.59,62.66,52.4,8.333333333333334,1,1,0,0,10,7,3,1,1427.5,1026265.6,554346.25,389913.31,0,0,3078.1616,2697.4175 +3790,4641,8220,-9,8222,8223,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6534,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8221,-9,8222,8223,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.4862,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8222,8223,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.7954745,6.897655,0,14,-4,119.54768,0,-9,-9,2021,10,1,12,12,1,1,0,8.8102598,8.8102598,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,13,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8223,8222,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,14,4,-19.734291,1,2,1,2021,8,0,0,72,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7825093,0,55.36,51.57,51.24,58.84,6.666666666666667,1,1,0,1,13,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3791,4642,8224,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.6148987,8.1178312,0,0,-959.28351,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,3.3115134,0,0,1,1,0,0,7.8374844,41.56,43.6,-9,-9,10,1,1,0,0,0,12,3,1,417,335784.06,252311.75,116728.57,0,0,0,1526.522 +3792,4643,8225,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.0659728,7.1720605,0,0,-1047.9471,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2266612,67.04000000000001,42.15,-9,-9,0,1,1,0,0,0,11,3,1,819,454254.38,279171.25,138396.45,0,0,0,1431.8693 +3793,4644,8226,8228,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.2483425,7.0157356,0,1,-5,-66.680298,-9,-9,-9,2021,1,0,35,0,1,0,0,5.5625734,5.5625734,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.21,43.38,47.91,57.48,10,1,1,0,0,2,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3793,4644,8227,-9,8226,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3597,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3793,4644,8228,8226,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.3710079,8.1304235,0,1,5,-41.449368,-9,2,2,2021,5,0,35,0,1,0,0,14.602206,14.602206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.91,57.48,38.21,43.38,8.333333333333334,1,1,0,0,9,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3794,4645,8229,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.6130071,4.7115912,0,0,-941.21289,0,3,2,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1205912,4.2682996,41.51,39.09,-9,-9,5,1,1,0,0,0,4,2,0,1160,330225.97,48370.855,231114.27,0,0,0,1242.8588 +3795,4646,8230,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.7389116,6.2418313,0,0,-935.84113,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2519951,5.9990711,50.54,40.23,-9,-9,6.666666666666667,2,3,0,1,8,8,2,0,1862,481875.41,79338.93,0,0,0,0,2461.3774 +3796,4647,8231,8232,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,4.322207,4.4836841,40,-3,32.709553,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3387837,0,30.68,54.91,46.16,58.62,8.333333333333334,1,1,0,0,0,13,3,1,523.5,1549422.5,1104716.3,189667.97,0,0,0,2103.3752 +3796,4647,8232,8231,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.934113,8.0840569,40,3,10.899866,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.3651628,8.0231705,46.16,58.62,30.68,54.91,3.333333333333333,1,1,0,0,6,13,3,1,523.5,1549422.5,1104716.3,189667.97,0,0,0,2103.3752 +3797,4648,8233,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.5392799,8.5330954,0,0,0,-882.02521,-9,1,2,2021,6,0,60,0,1,0,0,13.54882,13.54882,.05,.05,0,0,0,0,0,2,1,1,0,8.7726068,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,205,-136527.8,-21492.682,0,0,0,0,7057.3818 +3798,4649,8234,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,1,0,6.7931786,6.8719878,0,0,-901.62793,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,3.1010187,1.7012421,28.35569,0,1,1,0,0,6.4851995,29.78,17.81,-9,-9,5,1,1,0,0,0,9,2,1,380,331662.59,11950.387,262217.22,0,0,0,1726.2018 +3799,4650,8235,-9,8236,8237,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.5882,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3799,4650,8236,8237,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.0432901,7.9618897,0,9,5,-51.461658,-9,-9,-9,2021,12,0,40,0,1,0,0,8.8821306,8.8821306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,7,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3799,4650,8237,8236,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,7.8564706,7.9943428,0,9,-5,-78.011345,0,2,1,2021,8,0,37,37,1,0,0,9.9805241,9.9805241,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,2,3,0,0,10,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3800,4651,8238,-9,8241,8239,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.09521,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8239,8241,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1093102,8.7208242,0,6,-1,-28.655237,-9,2,2,2021,8,0,48,0,1,0,0,22.452854,22.452854,.05,.05,0,0,0,0,0,0,1,1,0,9.0180168,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,13,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8240,-9,8241,8239,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.56549,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8241,8239,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.4230957,6.2030082,0,6,1,-15.722826,-9,2,2,2021,9,0,8,0,1,0,0,8.8571358,8.8571358,0,0,0,0,0,0,0,0,1,1,0,7.9666772,0,54.2,57.49,52.82,53.97,10,1,1,0,0,12,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3801,4652,8242,8243,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.8419781,6.9047885,0,31,-3,21.543095,0,3,2,2021,6,0,17,17,1,0,0,7.7586851,7.7586851,.05,.05,.05,0,0,0,0,0,0,0,0,6.6285992,0,57.16,56.15,57.33,53.46,10,1,1,0,0,11,9,3,1,1032,837244.25,394126.66,484033.44,0,0,0,1769.3708 +3801,4652,8243,8242,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5134659,7.3550262,0,9,3,59.278954,-9,-9,-9,2021,6,0,38,0,1,0,0,4.8610229,4.8610229,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,11,9,3,1,1032,837244.25,394126.66,484033.44,0,0,0,1769.3708 +3801,4653,8244,-9,8242,8243,1,1,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1141.2158,-9,2,2,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0808582,0,23.59,62.18,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,5297,-52466.285,0,0,0,0,0,93.054565 +3802,4654,8245,8247,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.8438148,6.7108593,0,8,-1,-53.627632,0,2,1,2021,6,0,40,40,1,0,0,2.5188417,2.5188417,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,31.04,62.55,8.333333333333334,1,1,0,0,7,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8246,-9,8245,8247,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3777868,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8247,8245,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.9550419,9.7836781,0,14,1,88.159966,-9,1,1,2021,20,8,57,0,1,8,0,35.187038,35.187038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.04,62.55,46.44,59.62,6.666666666666667,1,1,0,0,9,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8248,-9,8245,8247,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2881,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3803,4655,8249,8250,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3212337,8.3112001,0,7,0,-48.287151,0,-9,-9,2021,10,1,53,48,1,1,0,8.4973135,8.4973135,0,0,0,0,0,0,0,0,1,1,0,0,0,48.8,49.1,57.92,40.62,8.333333333333334,1,1,0,0,8,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3803,4655,8250,8249,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,7.7952952,8.1527653,0,7,0,56.527378,0,2,2,2021,9,1,44,44,1,1,0,9.523448,9.523448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.92,40.62,48.8,49.1,6.666666666666667,1,1,0,0,8,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3803,4655,8251,-9,8249,8250,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.1096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3804,4656,8252,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4121189,8.606123,0,0,0,-919.98816,0,3,2,2021,8,0,42,43,1,0,0,13.10423,13.10423,.05,.05,0,0,0,0,0,0,1,1,0,2.3639436,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2321,634067.19,182184.42,155225.39,56014.055,0,0,1750.6776 +3805,4657,8253,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.1510105,7.5025163,0,0,-1036.423,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1733556,7.3329659,58.74,30.17,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,1650,263928.41,393731.78,0,0,0,0,2014.5494 +3806,4658,8254,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,6.9144568,7.0474763,0,0,-908.5423,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0497756,6.7482944,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,918,710811.69,167954.3,361804.69,0,0,0,907.60645 +3807,4659,8255,8256,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,0,0,20,6,28.434345,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,33.83,57.24,32.93,8.333333333333334,1,1,1,0,0,4,5,1,2539,1536580.6,1332123.9,276463.09,0,0,0,3409.7288 +3807,4659,8256,8255,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.7747259,8.7887497,7.1365819,18,-6,-40.746815,0,2,1,2021,9,0,70,90,1,0,0,8.5583534,8.5583534,0,0,0,0,0,0,0,0,1,1,0,0,7.3218951,57.24,32.93,56.74,33.83,6.666666666666667,1,1,0,0,10,4,5,1,2539,1536580.6,1332123.9,276463.09,0,0,0,3409.7288 +3807,4660,8257,-9,8255,8256,1,1,28,0,0,0,2,2,-9,0,4,6.6381693,6.6089773,0,0,0,-934.46118,0,1,1,2021,10,0,60,60,1,0,1,1.28418,1.28418,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,4,4,2,1,1473,-157265.7,0,0,0,0,0,-338.08231 +3808,4661,8258,-9,8259,-9,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1095.2686,-9,2,-9,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.4,55.31,-9,-9,10,1,1,0,0,1,7,5,1,935.5,561945.63,-48797.938,578078.25,155283.08,0,1182.8331,2457.5425 +3808,4661,8259,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.8075848,8.9597197,6.5421567,0,0,-1018.4452,0,-9,-9,2021,16,4,42,42,1,4,0,21.903894,21.903894,.05,.05,0,0,0,0,0,0,0,0,0,6.7344065,0,31.86,55.72,-9,-9,5,1,1,0,0,8,7,5,1,935.5,561945.63,-48797.938,578078.25,155283.08,0,1182.8331,2457.5425 +3808,4662,8260,-9,8259,-9,1,1,20,0,0,0,2,2,-9,0,4,7.6375861,7.9326143,0,0,0,-942.2309,0,2,-9,2021,10,0,40,40,1,2,1,5.6925154,5.6925154,0,0,0,0,0,0,0,0,0,0,0,1.8594234,0,49,58,-9,-9,7,1,1,0,0,1,7,3,1,1001,-34515.371,0,0,0,0,0,1292.389 +3808,4663,8261,-9,8259,-9,1,0,19,0,0,0,2,2,-9,0,4,6.8476529,7.0202703,0,0,0,-1042.3914,0,2,-9,2021,6,0,30,30,1,0,1,4.8155394,4.8155394,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,2,7,2,1,210,52895.496,0,0,0,0,0,1085.8896 +3809,4664,8262,8263,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0611639,7.522233,5.8892059,6,-15,-23.460545,0,-9,-9,2021,11,1,24,24,1,1,0,7.4392314,7.4392314,.05,.05,.05,0,0,0,0,0,1,1,0,0,5.9256568,52.4,52.91,62,41.73,8.333333333333334,1,1,0,0,1,12,3,1,1183,503745.69,276075.78,94691.273,0,0,0,2275.8582 +3809,4664,8263,8262,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.4552159,7.3685017,6,15,67.159828,0,2,3,2021,2,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.7328551,7.3135514,62,41.73,52.4,52.91,10,1,1,0,0,5,12,3,1,1183,503745.69,276075.78,94691.273,0,0,0,2275.8582 +3810,4665,8264,8266,-9,-9,1,1,27,0,2,0,2,2,-9,0,5,7.7663279,7.6870146,0,5,-2,69.24231,0,-9,-9,2021,7,0,45,44,1,0,0,6.0747609,6.0747609,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.34,56.95,8.333333333333334,1,1,0,0,8,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8265,-9,8266,8264,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0945,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8266,8264,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.4548702,7.2894297,0,5,2,-17.211243,0,-9,-9,2021,8,0,32,28,1,0,0,4.5433598,4.5433598,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,57.06,57.76,8.333333333333334,4,1,0,0,4,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8267,-9,8266,8264,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8993,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3811,4666,8268,8269,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.9891171,7.8980188,0,33,-10,-43.524799,0,2,3,2021,12,0,50,45,1,0,0,6.725369,6.725369,.05,.05,.05,0,0,0,0,0,1,1,0,3.8732028,0,49.67,45.88,27.81,65.69,6.666666666666667,1,1,0,0,11,10,4,1,617,526643.69,74518.25,488952.5,0,0,0,2371.7485 +3811,4666,8269,8268,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.5129719,7.2287645,0,33,10,37.549698,0,3,2,2021,21,7,23,21,1,7,0,6.7614098,6.7614098,.05,.05,0,0,0,0,0,0,1,1,0,6.0362535,0,27.81,65.69,49.67,45.88,8.333333333333334,1,1,0,0,11,10,4,1,617,526643.69,74518.25,488952.5,0,0,0,2371.7485 +3811,4667,8270,-9,8269,8268,1,1,28,0,0,0,2,2,-9,0,4,8.2521133,8.0328341,0,0,0,-951.24945,0,2,3,2021,13,2,41,40,1,2,1,9.8114119,9.8114119,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,228,142593.64,-5871.5889,0,0,0,0,1253.5568 +3812,4668,8271,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.4799085,7.3420587,0,0,-916.33862,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6673937,53.42,20.52,-9,-9,3.333333333333333,1,1,0,0,11,8,3,0,266,61690.723,369393.13,3610.5522,0,0,0,2256.2898 +3813,4669,8272,8273,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.2590647,8.4986238,51,0,59.965389,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7860365,8.3808775,50.93,39.92,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,539,2163992.5,878193.5,651333.63,0,0,0,5439.9443 +3813,4669,8273,8272,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.6474972,6.4369001,51,0,3.2003639,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5054522,6.8966308,57.33,53.46,50.93,39.92,8.333333333333334,1,1,0,0,0,8,4,1,539,2163992.5,878193.5,651333.63,0,0,0,5439.9443 +3814,4670,8274,8275,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5938129,9.3740292,0,9,3,-138.55968,0,-9,-9,2021,9,1,53,52,1,1,0,25.418032,25.418032,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,1,688.5,502225.63,131469.42,532116.13,349834,248.32892,0,6098.1934 +3814,4670,8275,8274,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8728514,8.7206421,0,9,-3,1.2071075,0,1,2,2021,13,2,58,60,1,2,0,13.219092,13.219092,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,8,9,5,1,688.5,502225.63,131469.42,532116.13,349834,248.32892,0,6098.1934 +3815,4671,8276,8277,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.3154116,7.6684365,52,-3,-14.511774,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2481108,7.4252243,54.53,41.24,61.1,16.91,8.333333333333334,1,1,0,0,6,6,2,1,928,240238.56,52358.262,166381.09,0,0,0,2615.5894 +3815,4671,8277,8276,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,52,3,-48.011921,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0842872,0,61.1,16.91,54.53,41.24,8.333333333333334,1,1,0,0,4,6,2,1,928,240238.56,52358.262,166381.09,0,0,0,2615.5894 +3816,4672,8278,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,1,9.0158939,8.6724997,0,0,0,-994.49475,0,3,3,2021,20,7,48,47,1,7,0,20.433109,20.433109,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,30.47,45.77,-9,-9,1.666666666666667,1,1,0,0,11,2,5,0,264,15203.054,67736.695,0,0,0,0,2177.6873 +3817,4673,8279,8280,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.4142628,8.7760887,0,15,0,40.737453,0,1,1,2021,10,0,37,37,1,0,0,16.102503,16.102503,.05,.05,0,0,0,0,0,2,1,1,0,.23290917,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,15,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8280,8279,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.0278025,6.0529447,0,15,0,-61.729954,0,2,2,2021,6,0,5,6,1,0,0,9.2670288,9.2670288,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8281,-9,8280,8279,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8176,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8282,-9,8280,8279,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.8661,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3818,4674,8283,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,8.2932959,8.4997807,0,0,0,-1101.1958,0,2,2,2021,17,3,38,48,1,3,0,14.214706,14.214706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.63,24.87,-9,-9,3.333333333333333,1,1,0,0,10,5,4,1,1104,131283.5,36504.297,0,0,0,0,1517.9349 +3819,4675,8284,8285,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1254749,7.7353868,0,8,-4,-8.7245998,0,-9,-9,2021,9,0,36,30,1,0,0,6.5442543,6.5442543,.05,.05,0,0,0,0,0,7,0,0,0,.58667612,0,51.7,49.11,60.29,52.11,8.333333333333334,1,1,0,0,10,6,5,1,150.5,428780.91,236078.59,126687.57,0,0,0,4329.7383 +3819,4675,8285,8284,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.8949661,8.7789707,0,32,4,111.79588,0,3,3,2021,7,0,50,47,1,0,0,14.960196,14.960196,.05,.05,0,0,0,0,0,0,0,0,0,7.5883861,0,60.29,52.11,51.7,49.11,8.333333333333334,1,1,0,0,10,6,5,1,150.5,428780.91,236078.59,126687.57,0,0,0,4329.7383 +3819,4676,8286,-9,8284,8285,1,0,22,0,0,0,1,1,1,0,4,6.7514024,6.5206666,0,0,0,-1033.8359,-9,2,2,2021,7,0,24,0,1,0,1,3.3163407,3.3163407,0,0,0,0,0,0,0,0,0,0,0,3.6902411,0,45.99,57.05,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,637,0,0,0,0,0,0,87.926949 +3819,4677,8287,-9,8284,8285,1,1,19,0,0,0,2,2,-9,0,4,6.4477105,6.2563262,0,0,0,-1131.8616,0,2,3,2021,13,2,55,52,1,2,1,1.4838766,1.4838766,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,785,15253.136,0,0,0,0,0,624.18854 +3820,4678,8288,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.2810564,8.1954575,0,0,0,-1041.3027,0,-9,-9,2021,15,3,40,40,1,3,0,9.523303,9.523303,0,0,0,0,0,0,0,0,1,1,0,0,0,44.34,49.64,-9,-9,3.333333333333333,3,4,0,0,10,6,4,1,735,78985.5,0,0,0,0,0,1557.0227 +3821,4679,8289,8290,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-39.66938,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,44.39,44.85,54.81,39.94,8.333333333333334,1,1,0,0,3,6,4,1,1127.5,911633,678531.63,228151.81,0,0,0,1745.2318 +3821,4679,8290,8289,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.4916477,8.4343939,0,6,1,-78.713135,0,-9,-9,2021,6,0,55,50,1,0,0,9.8357935,9.8357935,.05,.05,0,0,0,0,0,0,0,0,0,3.9723191,0,54.81,39.94,44.39,44.85,6.666666666666667,1,1,0,0,12,6,4,1,1127.5,911633,678531.63,228151.81,0,0,0,1745.2318 +3822,4680,8291,-9,-9,-9,1,1,24,0,1,0,1,1,-9,0,3,7.9674587,7.6977525,0,0,0,-887.12964,0,2,2,2021,8,0,40,41,1,0,1,8.9339972,8.9339972,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,3,13,4,1,562,105639.19,0,0,0,0,0,796.26178 +3823,4681,8292,8293,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,7.8835406,8.4630022,0,4,-6,12.127721,0,-9,-9,2021,11,1,42,40,1,1,0,8.2521467,8.2521467,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.97,53.99,34.42,35.31,8.333333333333334,1,1,0,0,9,9,4,1,1825,360567.38,272652.19,323889.06,148321.95,0,2668.4346,2798.9773 +3823,4681,8293,8292,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9496326,8.1975756,0,4,6,-85.690659,0,-9,-9,2021,18,5,36,36,1,5,0,9.4316854,9.4316854,0,0,.05,0,0,0,0,0,0,0,0,0,0,34.42,35.31,49.97,53.99,3.333333333333333,1,1,0,0,6,9,4,1,1825,360567.38,272652.19,323889.06,148321.95,0,2668.4346,2798.9773 +3824,4682,8294,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.2990422,6.9431353,0,0,0,-1147.0529,0,3,3,2021,13,1,35,35,1,1,0,3.7520535,3.7520535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,53,-9,-9,5,1,1,0,1,10,11,2,0,645,139292.88,39450.809,107518.69,82344.695,0,0,1071.4177 +3825,4683,8295,8296,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7113729,7.8025131,0,6,-4,20.147831,0,-9,-9,2021,13,1,43,40,1,1,0,6.3644872,6.3644872,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.95,59.37,44.18,41.63,6.666666666666667,1,1,0,0,6,4,4,1,213.5,-119412.33,12057.637,108301.53,44378.188,-573.82458,0,2863.3545 +3825,4683,8296,8295,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3051834,8.5002222,0,6,4,-87.509033,0,3,2,2021,22,10,43,47,1,10,0,10.854,10.854,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.18,41.63,46.95,59.37,5,1,1,0,0,9,4,4,1,213.5,-119412.33,12057.637,108301.53,44378.188,-573.82458,0,2863.3545 +3825,4684,8297,-9,8295,8296,1,1,21,0,0,0,2,2,-9,0,5,7.5703125,7.5330515,0,0,0,-1018.6602,0,2,2,2021,10,0,44,45,1,0,1,6.1195564,6.1195564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.41,58,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,731,-10080.529,50748.031,0,0,0,0,1545.2045 +3826,4685,8298,8299,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,6.332294,6.8118548,0,45,-6,-58.906132,0,-9,-9,2021,8,0,11,12,1,0,0,7.9198718,7.9198718,0,0,0,0,0,0,0,2,1,1,0,0,0,66.69,14.07,57.75,17.5,8.333333333333334,1,1,0,0,8,4,2,1,295,8478.2969,-121201.77,0,0,0,941.88428,1822.2996 +3826,4685,8299,8298,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.3806167,6.3947897,5,6,55.213558,0,-9,-9,2021,9,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,6.3162394,57.75,17.5,66.69,14.07,10,1,1,0,0,0,4,2,1,295,8478.2969,-121201.77,0,0,0,941.88428,1822.2996 +3827,4686,8300,8301,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.9409709,8.1016016,0,25,0,-7.3930345,0,2,2,2021,11,1,21,19,1,1,0,14.597688,14.597688,.05,.05,0,0,0,0,0,7,0,0,0,4.4185014,0,51.49,57.57,45.16,43.46,8.333333333333334,1,1,0,0,8,1,5,1,1129,2381339.3,1825910.8,341516.09,0,20443.289,0,7253.1406 +3827,4686,8301,8300,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,9.7099705,9.5514698,0,25,0,108.34274,0,2,3,2021,11,2,38,48,1,2,0,48.784843,48.784843,.05,.05,0,0,0,0,0,0,0,0,0,6.6778932,0,45.16,43.46,51.49,57.57,8.333333333333334,1,1,0,0,8,1,5,1,1129,2381339.3,1825910.8,341516.09,0,20443.289,0,7253.1406 +3828,4687,8302,8303,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.4749599,6.4564281,43,2,-112.76044,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3989539,51,49,37.84,26.27,7,1,1,0,0,4,13,2,1,641,385434.69,40714.438,157571.41,0,0,0,1272.6243 +3828,4687,8303,8302,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,43,-2,90.018227,0,3,3,2021,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,26.27,51,49,6.666666666666667,1,1,0,0,11,13,2,1,641,385434.69,40714.438,157571.41,0,0,0,1272.6243 +3829,4688,8304,8305,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.3050861,6.0990658,0,26,-1,38.347767,0,2,2,2021,7,0,15,14,1,0,0,2.7281878,2.7281878,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,50.65,60.47,8.333333333333334,1,1,0,0,13,4,3,1,470,661513.94,335386.38,265621.81,0,0,0,1797.9263 +3829,4688,8305,8304,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.8762102,8.0718155,0,28,1,-43.298603,0,2,2,2021,6,0,38,38,1,0,0,8.137826,8.137826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,52,54.51,10,1,1,0,0,15,4,3,1,470,661513.94,335386.38,265621.81,0,0,0,1797.9263 +3830,4689,8306,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1005.4136,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,47.24,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,76,30431.613,0,95677.734,0,0,0,442.19427 +3830,4690,8307,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,8.0318098,8.3120813,0,0,-806.53827,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.95001489,8.1975584,62,52.77,-9,-9,10,1,1,0,0,9,13,4,1,664,174804.31,153388.33,108651.56,0,0,267.46887,2056.4631 +3831,4691,8308,-9,8310,8311,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0995,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8309,-9,8310,8311,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-900.61145,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8310,8311,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.7337928,8.4934187,0,22,-4,146.06447,0,-9,-9,2021,12,0,28,25,1,0,0,13.907884,13.907884,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,55.93,49.95,8.333333333333334,2,3,0,0,15,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8311,8310,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.9164944,10.104548,0,11,4,109.47446,0,-9,-9,2021,11,0,36,25,1,0,0,71.119759,71.119759,.05,.05,0,0,0,0,0,0,1,1,0,7.1355176,0,55.93,49.95,46.08,57.2,8.333333333333334,2,3,0,0,15,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4692,8312,-9,8310,8311,1,1,18,0,2,1,1,0,0,0,4,0,4.5020981,4.6603804,0,0,-1082.7705,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6212072,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,1,2,1,710,-37600.871,0,0,0,0,0,693.08368 +3832,4693,8313,8314,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.6646991,7.6902289,0,1,9,-5.2509875,-9,-9,-9,2021,6,1,30,0,1,1,0,6.727695,6.727695,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,39.54,38.7,28.65,44.86,6.666666666666667,3,4,0,0,6,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8314,8313,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.9080267,8.951766,0,1,0,81.126106,-9,2,2,2021,7,1,38,0,1,1,0,18.460854,18.460854,0,0,.05,0,0,0,0,0,0,0,0,1.1486472,0,28.65,44.86,39.54,38.7,0,3,4,0,0,9,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8315,-9,8314,8313,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.11139,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8316,-9,8314,8313,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.3762,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4694,8317,-9,8314,8313,1,1,21,0,2,0,2,2,-9,0,5,1.4457488,1.9437202,0,0,0,-936.3504,-9,1,2,2021,9,0,40,0,1,0,1,.015768189,.015768189,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,706,73410.352,-81400.117,0,0,0,0,261.62192 +3832,4695,8318,-9,8314,8313,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-926.99103,-9,1,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,385,-89783.383,0,0,0,0,1278.3607,0 +3833,4696,8319,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.4267159,6.7594848,0,0,-983.59167,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8662767,6.4587121,55.1,47.5,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,327,288936.41,262603.44,0,0,0,0,2086.0027 +3834,4697,8320,8321,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3024445,8.0318117,0,3,1,33.4324,0,2,2,2021,6,0,40,46,1,0,0,8.8091145,8.8091145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.56,36.87,36.43,60.14,6.666666666666667,1,1,0,0,11,5,4,1,286,-56727.648,119281.17,0,0,746.62585,0,2863.0859 +3834,4697,8321,8320,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.0234861,8.2230587,0,3,-1,-12.040185,0,-9,-9,2021,18,6,38,38,1,6,0,10.0337,10.0337,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.43,60.14,63.56,36.87,8.333333333333334,1,1,0,0,5,5,4,1,286,-56727.648,119281.17,0,0,746.62585,0,2863.0859 +3835,4698,8322,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,7.5874972,7.272512,0,0,-1094.4186,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4371839,0,17.35,63.63,-9,-9,5,1,1,0,0,0,6,3,0,329,59120.02,0,0,0,0,0,772.09491 +3836,4699,8323,8325,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.6013117,8.6289663,0,8,8,-13.368389,-9,-9,-9,2021,10,0,70,0,1,0,0,8.9412212,8.9412212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,44.19,58.01,8.333333333333334,1,1,0,0,9,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3836,4699,8324,-9,8325,8323,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.4423,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3836,4699,8325,8323,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,7.9676991,7.8893304,0,8,-8,-114.51176,0,2,2,2021,17,7,47,54,1,7,0,7.0228963,7.0228963,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,58.32,50.22,8.333333333333334,1,1,0,0,9,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3837,4700,8326,8327,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,6.5760784,6.5963564,0,28,-13,-25.49453,0,-9,-9,2021,6,0,15,15,1,0,0,4.9868093,4.9868093,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,53.38,24.67,10,1,1,0,0,9,4,3,1,357,-149242.39,84455.641,0,0,9948.5508,1585.6346,2138.8479 +3837,4700,8327,8326,-9,-9,1,1,61,0,2,0,2,2,-9,0,2,8.4936895,8.1566076,0,28,13,11.94288,0,-9,-9,2021,6,0,35,35,1,0,0,16.674286,16.674286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.38,24.67,62.39,56.71,0,1,1,0,0,12,4,3,1,357,-149242.39,84455.641,0,0,9948.5508,1585.6346,2138.8479 +3837,4701,8328,-9,8326,8327,1,1,20,0,2,0,2,2,-9,0,3,7.9843059,8.1143122,0,0,0,-1015.1223,0,2,2,2021,6,0,35,35,1,0,1,10.076824,10.076824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,-9,-9,10,1,1,0,0,3,4,3,1,523,-74909.047,-148179.25,0,0,6520.4805,0,1271.4958 +3838,4702,8329,8330,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.7588816,8.9878893,0,7,5,-63.255962,0,-9,-9,2021,24,10,52,49,1,10,0,14.025803,14.025803,.05,.05,0,0,0,0,0,0,1,1,0,1.145443,0,37.74,52.94,59.43,49.68,1.666666666666667,1,1,0,0,14,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3838,4702,8330,8329,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.8589735,8.8603315,0,7,-5,-21.174206,0,1,2,2021,8,1,41,43,1,1,0,18.090509,18.090509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,37.74,52.94,8.333333333333334,1,1,0,0,12,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3838,4702,8331,-9,8330,8329,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7462,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3839,4703,8332,8333,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.9591789,10.053178,0,36,-1,17.572561,0,2,2,2021,7,0,40,40,1,0,0,61.633663,61.633663,.05,.05,0,0,0,0,0,0,0,0,0,3.039886,0,59.43,58.05,53.14,51.28,10,1,1,0,0,15,9,5,1,249,2785220,2137811,453714.94,-1574.2529,0,0,12498.061 +3839,4703,8333,8332,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1821909,9.1380434,0,37,1,16.693504,0,2,2,2021,8,0,50,50,1,0,0,25.32649,25.32649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,59.43,58.05,8.333333333333334,1,1,0,0,15,9,5,1,249,2785220,2137811,453714.94,-1574.2529,0,0,12498.061 +3839,4704,8334,-9,8332,8333,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1104.048,-9,1,1,2021,18,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5285254,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,4388,52057.836,0,0,0,0,0,738.14935 +3840,4705,8335,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.1985159,4.1818123,0,0,-1015.6863,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,3.6716049,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,2,0,2528,156019.81,165114.98,0,0,0,0,1026.9407 +3840,4706,8336,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.6135402,5.8205504,0,0,-940.01038,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7884874,60.29,52.11,-9,-9,0,1,1,0,0,0,10,2,0,194,264944.75,220140.8,104853.62,0,0,457.33942,62.116123 +3841,4707,8337,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-973.29816,0,2,2,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.41,38.24,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,95,-20252.494,0,0,0,0,0,-76.218475 +3842,4708,8338,8339,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,7.8085413,7.8254828,0,12,-6,-102.96149,0,2,2,2021,13,3,34,34,1,3,0,14.288865,14.288865,.05,.05,0,0,0,0,0,2,1,1,0,3.6686113,0,44.39,63.4,35.75,66.17,6.666666666666667,1,1,0,0,8,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3842,4708,8339,8338,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,8.2966204,8.077095,0,12,6,50.384014,0,2,2,2021,24,12,47,45,1,12,0,11.513028,11.513028,.05,.05,0,0,0,0,0,0,1,1,0,3.5396407,0,35.75,66.17,44.39,63.4,8.333333333333334,1,1,0,0,8,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3842,4708,8340,-9,8338,8339,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.7299,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3843,4709,8341,8342,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,.15471455,0,36.07,25.51,45.17,12.09,6.666666666666667,1,1,0,0,0,13,1,0,533,57337.531,0,0,0,0,0,2924.168 +3843,4709,8342,8341,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,7.7257934,0,14.5,1,1,0,0,0,45.17,12.09,36.07,25.51,5,1,1,0,0,0,13,1,0,533,57337.531,0,0,0,0,0,2924.168 +3844,4710,8343,8344,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1839094,6.0779009,42,-2,4.780807,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9076161,63.66,46.31,55.94,36.36,6.666666666666667,1,1,0,0,0,10,2,1,1315.5,82134.625,75476.695,0,0,582.00525,0,1389.1365 +3844,4710,8344,8343,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.3788176,5.5369124,6,2,-40.109676,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7487054,5.4755244,55.94,36.36,63.66,46.31,10,1,1,0,0,0,10,2,1,1315.5,82134.625,75476.695,0,0,582.00525,0,1389.1365 +3845,4711,8345,-9,8346,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1052.6548,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,1,420.5,-71784.383,32215.727,0,0,0,0,681.42957 +3845,4711,8346,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.0812311,6.9675865,0,0,0,-969.42377,0,3,2,2021,12,0,26,16,1,0,0,4.2120237,4.2120237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.91,42.89,-9,-9,5,1,1,0,0,7,12,2,1,420.5,-71784.383,32215.727,0,0,0,0,681.42957 +3846,4712,8347,-9,8350,8348,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-977.95886,-9,1,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.48786992,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8348,8350,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.3622236,9.5249853,0,25,2,175.5071,0,3,2,2021,13,1,47,46,1,1,0,36.385891,36.385891,.05,.05,0,0,0,0,0,0,0,0,0,9.9286356,0,36.2,60.58,57.16,56.15,6.666666666666667,1,1,0,0,15,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8349,-9,8350,8348,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.4046,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8350,8348,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6085038,7.9287863,0,25,-2,158.8109,0,2,2,2021,7,0,20,10,1,0,0,13.508195,13.508195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.2,60.58,8.333333333333334,1,1,0,0,15,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3847,4713,8351,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.092145,7.9687233,0,0,0,-1037.1083,0,3,3,2021,11,0,45,49,1,0,0,10.21307,10.21307,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,47.22,-9,-9,5,1,1,0,0,9,7,4,0,702,974606.75,550730.69,226151.95,0,0,7065.77,953.32416 +3848,4714,8352,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.6528368,8.7135324,0,0,0,-897.31842,0,-9,-9,2021,11,0,1,45,1,0,0,576.33276,576.33276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,573,729818.81,91988.602,793874.63,103410.05,0,0,2572.5896 +3849,4715,8353,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9405656,7.9745588,0,0,0,-973.68018,0,3,2,2021,13,4,37,32,1,4,0,10.714942,10.714942,.05,.05,0,0,0,0,0,2,0,0,0,0,0,15.4,62.31,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,157,213967.08,100040.67,57838.766,25412.602,0,0,927.90814 +3850,4716,8354,8355,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.3787203,6.1764321,11,3,70.715019,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.3402748,6.6966219,57.33,32.2,58.9,13.94,8.333333333333334,1,1,0,0,0,4,2,1,950.5,422784.28,252108.2,154065.48,3524.6909,1277.6531,4830.3369,3226.0908 +3850,4716,8355,8354,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.8913889,6.9435396,11,-3,-40.717823,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,27.650244,0,0,1,1,0,4.6776814,7.0000248,58.9,13.94,57.33,32.2,8.333333333333334,1,1,0,0,0,4,2,1,950.5,422784.28,252108.2,154065.48,3524.6909,1277.6531,4830.3369,3226.0908 +3851,4717,8356,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.1938839,7.5495615,0,0,-881.2478,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2017608,7.3976779,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1641,1163663.1,710694.06,361527.5,0,0,0,1784.5056 +3852,4718,8357,8358,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,22,-5,89.759743,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,62.39,56.71,10,2,3,1,0,0,2,2,0,1370,80497.852,-13928.084,138565.94,102806.06,0,0,971.2384 +3852,4718,8358,8357,-9,-9,1,1,42,0,3,0,3,3,-9,0,5,7.5887833,7.6223245,0,22,5,-10.854479,0,3,3,2021,12,0,23,22,1,0,0,11.009007,11.009007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,50.82,57.78,10,2,3,0,1,6,2,2,0,1370,80497.852,-13928.084,138565.94,102806.06,0,0,971.2384 +3852,4719,8359,-9,8357,8358,1,1,19,0,3,0,2,2,1,0,4,0,0,0,0,0,-847.92334,-9,2,3,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,1,0,2,1,0,147,0,0,0,0,0,0,581.29346 +3853,4720,8360,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.506525,8.5014753,0,0,-1042.2639,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0300179,8.1234665,46.37,50.17,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,535,1056309.4,109487.98,921501.94,0,2640.5601,0,2790.3176 +3854,4721,8361,8362,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5768566,8.7315149,0,2,1,-106.45883,0,-9,-9,2021,15,4,39,39,1,4,0,17.946522,17.946522,.05,.05,0,0,0,0,0,0,0,0,0,5.1240439,0,56.33,51.02,44.02,60.7,8.333333333333334,1,1,0,0,2,10,5,0,2536.5,134439.13,22070.105,345161.31,259529.2,0,0,4602.814 +3854,4721,8362,8361,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8372698,8.6971445,0,2,-1,-56.570183,0,-9,-9,2021,8,2,55,47,1,2,0,11.889335,11.889335,.05,.05,0,0,0,0,0,0,0,0,0,5.1524334,0,44.02,60.7,56.33,51.02,6.666666666666667,1,1,0,0,5,10,5,0,2536.5,134439.13,22070.105,345161.31,259529.2,0,0,4602.814 +3855,4722,8363,-9,8365,8364,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1047.5614,-9,2,3,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.71,57.71,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4722,8364,8365,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,34,3,0,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7607436,0,23.86,20.5,31.08,27.78,5,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4722,8365,8364,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,34,-3,0,0,3,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,31.08,27.78,23.86,20.5,3.333333333333333,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4723,8366,-9,8365,8364,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1189.7844,0,2,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1153,-107320.52,0,0,0,0,0,905.64746 +3856,4724,8367,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1097.1239,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,13,1,1,1095,-37166.539,0,0,0,0,0,558.98358 +3857,4725,8368,8369,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.2348375,7.1290493,41,4,-68.865891,0,3,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,2.2924981,14.5,1,1,0,7.4615126,7.1600986,53.71,37.87,54.77,55.87,6.666666666666667,1,1,0,0,0,9,5,1,153,1318979.8,918460.5,427446,72438.984,0,0,6845.8389 +3857,4725,8369,8368,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,9.0533018,9.2401142,0,40,-4,-27.05909,0,2,3,2021,6,0,17,23,1,0,0,48.398113,48.398113,0,0,0,1,0,0,0,7,1,1,0,4.6625118,0,54.77,55.87,53.71,37.87,1.666666666666667,1,1,0,0,10,9,5,1,153,1318979.8,918460.5,427446,72438.984,0,0,6845.8389 +3858,4726,8370,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1066.6827,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,44.84,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1906,304598.41,0,164107.84,0,0,0,1363.7312 +3859,4727,8371,8372,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,6.4436522,7.8193402,7.820107,30,5,75.197357,0,3,3,2021,7,0,10,12,1,0,0,7.3875694,7.3875694,0,0,0,0,0,0,0,2,1,1,0,0,7.5675969,55.34,48.72,49.25,61.25,10,1,1,0,0,9,1,4,1,2335.5,903093.13,533883.25,439327.22,101195.35,0,4120.3218,2798.6973 +3859,4727,8372,8371,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.5607758,8.0145578,7.0253644,30,-5,-116.68412,0,2,3,2021,12,1,35,35,1,1,0,10.061412,10.061412,0,0,0,0,0,0,0,0,1,1,0,0,6.8917274,49.25,61.25,55.34,48.72,5,1,1,0,0,8,1,4,1,2335.5,903093.13,533883.25,439327.22,101195.35,0,4120.3218,2798.6973 +3859,4728,8373,-9,8371,8372,1,1,22,0,0,0,2,2,-9,0,4,7.6156206,7.7340183,0,0,0,-975.91669,0,2,1,2021,11,2,38,42,1,2,1,6.5511856,6.5511856,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,4,1,3,1,278,-102232.34,0,0,0,0,0,905.17334 +3860,4729,8374,8375,-9,-9,1,0,48,0,2,0,1,1,-9,1,4,7.8941002,7.7308841,0,20,-2,-77.550285,0,3,3,2021,20,8,23,24,1,8,0,12.986802,12.986802,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,41.65,60.41,35.26,59.77,6.666666666666667,1,1,0,0,13,8,4,1,346.5,117402.75,292161.47,0,0,0,0,4180.8965 +3860,4729,8375,8374,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.5807238,8.8085985,0,20,2,-54.513618,0,2,2,2021,13,2,37,35,1,2,0,17.739532,17.739532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.26,59.77,41.65,60.41,6.666666666666667,1,1,0,0,14,8,4,1,346.5,117402.75,292161.47,0,0,0,0,4180.8965 +3861,4730,8376,8377,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.530674,8.6916637,0,3,2,23.419956,0,2,1,2021,12,0,37,20,1,0,0,12.272584,12.272584,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,40.64,52.96,1.666666666666667,1,1,0,0,9,13,5,1,282,87538.578,-23453.16,106880.84,-13782.949,2931.3071,0,2824.9602 +3861,4730,8377,8376,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.790659,7.7092962,0,3,-2,45.107368,0,2,2,2021,15,3,30,32,1,3,0,8.6840544,8.6840544,.05,.05,.05,0,0,0,0,0,1,1,0,6.6957073,0,40.64,52.96,54.2,57.49,5,1,1,0,0,9,13,5,1,282,87538.578,-23453.16,106880.84,-13782.949,2931.3071,0,2824.9602 +3861,4731,8378,-9,8376,8377,1,1,19,0,0,1,2,0,0,1,5,0,0,0,0,0,-1138.1023,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1045,150378.36,0,0,0,0,0,319.27289 +3862,4732,8379,8380,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,0,0,0,9,-8,0,0,1,1,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.1721201,0,48,56,53.14,51.28,7,2,3,1,0,7,9,2,1,1725,437366.34,94674.313,328390.88,0,35695.617,851.89832,8309.7246 +3862,4732,8380,8379,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,9,8,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.9757128,0,53.14,51.28,48,56,8.333333333333334,1,1,0,0,0,9,2,1,1725,437366.34,94674.313,328390.88,0,35695.617,851.89832,8309.7246 +3863,4733,8381,8382,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.8822384,6.849679,31,2,-102.30134,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5684123,52,47,50,47,7,1,1,0,0,0,11,2,0,755.5,411909.97,208591.89,160342.23,0,0,0,2433.0403 +3863,4733,8382,8381,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,34,-2,19.162594,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,52,47,7,1,1,0,0,0,11,2,0,755.5,411909.97,208591.89,160342.23,0,0,0,2433.0403 +3864,4734,8383,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3633704,7.7110958,0,0,-972.11224,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4156561,32.49,38.05,-9,-9,5,1,1,0,0,10,8,3,1,643,819159.81,167116.09,541449.25,0,0,0,485.3248 +3865,4735,8384,8385,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3294659,8.3379326,0,3,-10,-30.702923,0,2,2,2021,12,2,16,16,1,2,0,25.877697,25.877697,0,0,0,0,0,0,0,0,1,1,0,3.7521505,0,51.74,47.77,45.91,59.89,8.333333333333334,1,1,0,0,10,7,4,1,482,725087.25,519271.63,284233,0,0,0,2923.1252 +3865,4735,8385,8384,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8077292,7.7531629,3,10,92.722198,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9006252,7.6189861,45.91,59.89,51.74,47.77,8.333333333333334,1,1,0,0,7,7,4,1,482,725087.25,519271.63,284233,0,0,0,2923.1252 +3866,4736,8386,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,4.881999,4.6230297,0,0,-1100.1918,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,4.6105232,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,1499,308718.91,-93034.422,69257.445,0,0,0,32.204491 +3867,4737,8387,8388,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,5.3245564,5.2170591,28,-2,18.139372,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,3.8335502,5.4813023,59.36,40.22,60.02,56.42,8.333333333333334,1,1,0,0,4,5,3,1,420.5,523977.47,484912.25,0,0,0,0,3168.3765 +3867,4737,8388,8387,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7221785,7.2995725,26,2,-39.650158,0,3,3,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,7.3378391,60.02,56.42,59.36,40.22,8.333333333333334,1,1,0,0,8,5,3,1,420.5,523977.47,484912.25,0,0,0,0,3168.3765 +3868,4738,8389,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.5276,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.63,27.97,-9,-9,5,2,3,0,0,0,6,1,0,921,-25747.455,0,0,0,0,0,688.70197 +3869,4739,8390,8391,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,0,0,0,2,0,-32.815632,0,2,2,2021,5,0,0,45,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,1,0,5,11,3,0,440,313429,147824.86,68590.375,0,1794.647,0,1963.2421 +3869,4739,8391,8390,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,7.7095547,7.4440489,0,2,0,54.081497,0,-9,-9,2021,8,1,39,33,1,1,0,6.1050954,6.1050954,0,0,0,0,0,0,0,0,1,0,1,0,0,58.32,50.22,57.16,56.15,6.666666666666667,1,1,0,0,10,11,3,0,440,313429,147824.86,68590.375,0,1794.647,0,1963.2421 +3870,4740,8392,8393,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.9657488,5.9094954,46,-1,-159.1523,0,3,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2928021,5.7921867,58.15,52.91,56.94,49.53,8.333333333333334,1,1,0,0,9,9,4,1,336.5,388706.31,100621.75,184578.8,2657.0835,0,0,4024.895 +3870,4740,8393,8392,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.2670708,8.6390238,7.492763,46,1,79.14859,0,3,3,2021,7,0,45,45,1,0,0,9.9144144,9.9144144,.05,.05,.05,0,0,0,0,0,1,1,0,5.9642129,7.4756012,56.94,49.53,58.15,52.91,8.333333333333334,1,1,0,0,11,9,4,1,336.5,388706.31,100621.75,184578.8,2657.0835,0,0,4024.895 +3871,4741,8394,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,2,0,7.106554,7.1243424,0,0,-980.37091,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,3.5690203,10.326385,20.190466,0,1,1,0,3.4903262,7.4442258,51.99,23.98,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,360,208576.97,156749.3,196129.89,0,0,0,1384.6056 +3872,4742,8395,8396,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,7.9328523,7.9035339,35,1,-54.674351,0,2,2,2021,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3774776,49.04,55.86,39.11,33.83,6.666666666666667,1,1,0,0,11,13,5,1,1227,157910.67,0,199058.34,12037.75,52241.047,3861.1387,3968.3855 +3872,4742,8396,8395,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.8096933,8.9442654,0,35,-1,-18.994484,0,2,3,2021,13,2,65,87,1,2,0,10.070471,10.070471,0,0,0,0,0,0,0,0,0,0,0,1.5579489,0,39.11,33.83,49.04,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1227,157910.67,0,199058.34,12037.75,52241.047,3861.1387,3968.3855 +3873,4743,8397,-9,8399,8398,1,1,45,0,0,0,2,2,-9,0,3,8.5670233,8.500495,0,0,0,-924.50751,0,2,3,2021,13,2,71,65,1,2,0,9.1613054,9.1613054,.05,.05,0,0,0,0,0,0,1,1,0,6.605514,0,46.15,40.82,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,783,666973.5,395200.91,223975.61,0,0,0,2483.0559 +3873,4744,8398,8399,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,3.7467353,3.5790696,3,6,64.28389,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,.49362978,0,0,1,1,0,0,4.1665277,36.93,35.01,31.99,45.53,8.333333333333334,1,1,0,0,0,2,2,0,537,55503.914,129451.44,119692.52,0,0,0,2754.4492 +3873,4744,8399,8398,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,3,-6,18.881542,0,-9,-9,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.99,45.53,36.93,35.01,8.333333333333334,1,1,0,0,0,2,2,0,537,55503.914,129451.44,119692.52,0,0,0,2754.4492 +3874,4745,8400,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.1732607,7.4551568,0,0,-1023.691,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4748611,63.41,39.7,-9,-9,8.333333333333334,3,4,0,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3874,4745,8401,-9,8400,-9,1,0,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-927.06775,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3874,4745,8402,-9,8400,-9,1,1,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1038.5814,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,3,4,-9,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3875,4746,8403,-9,8405,8406,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.49219,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8404,-9,8405,8406,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1656,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8405,8406,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,8.1259136,8.2283039,0,16,3,14.177073,0,2,2,2021,26,12,32,32,1,12,0,13.784443,13.784443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.21,34.41,51.08,49.24,6.666666666666667,1,1,0,0,10,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8406,8405,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.1539469,8.3582315,0,16,-3,-2.4617016,0,2,2,2021,11,0,39,39,1,0,0,10.445384,10.445384,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,26.21,34.41,5,1,1,0,0,10,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3876,4747,8407,8408,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5086436,6.2943516,12,13,8.307498,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5768538,6.1924329,36.78,48.57,42.44,53.28,6.666666666666667,2,3,0,0,0,6,2,1,414,-28167.48,-93835.406,0,0,0,0,1315.4141 +3876,4747,8408,8407,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,-13,-20.802391,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,53.28,36.78,48.57,3.333333333333333,2,3,0,0,6,6,2,1,414,-28167.48,-93835.406,0,0,0,0,1315.4141 +3876,4748,8409,-9,8408,-9,1,1,23,0,0,0,2,2,1,0,4,0,0,0,0,0,-937.46155,-9,2,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,0,2,3,0,0,0,6,1,1,1441,98680,0,0,0,0,0,0 +3877,4749,8410,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.5244503,9.2723522,0,5,-2,32.58704,0,-9,-9,2021,9,0,48,48,1,0,0,18.461761,18.461761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.28,39.3,8.333333333333334,1,1,0,0,3,11,5,1,285,35531.227,38626.047,320324.47,259702.5,503.39105,0,2716.6931 +3877,4750,8411,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.9199314,8.8898849,0,5,2,-27.276089,0,2,2,2021,4,0,45,45,1,0,0,23.060394,23.060394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.28,39.3,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,675,-56716.824,66033.469,0,0,0,0,2624.1155 +3878,4751,8412,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5996671,7.6866598,0,0,-892.17432,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4803917,7.1855173,55.44,42.4,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,583,698338.31,206206.45,429651.03,0,0,0,2741.1367 +3879,4752,8413,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.154336,8.1741333,0,10,11,75.9664,0,2,-9,2021,11,3,35,35,1,3,0,13.534394,13.534394,0,0,0,0,0,0,0,0,0,0,0,0,0,49.94,25.13,46.89,30.04,8.333333333333334,1,1,0,0,9,2,5,0,956,505952.97,111304,325550,0,0,0,2260.6379 +3879,4753,8414,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.6136637,8.1177034,0,10,-11,1.6488128,0,2,2,2021,15,5,35,41,1,5,0,10.459317,10.459317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.89,30.04,49.94,25.13,8.333333333333334,1,1,0,0,9,2,5,0,306,290102.41,51499.727,0,0,-1844.7527,0,1244.6781 +3880,4754,8415,-9,-9,-9,1,0,18,0,1,0,2,2,1,0,4,6.4677229,6.6390233,0,0,0,-881.29968,-9,2,1,2021,22,9,18,0,1,9,1,3.3362963,3.3362963,.05,.05,0,0,0,0,0,2,1,1,0,0,0,28.1,66.68000000000001,-9,-9,3.333333333333333,1,1,0,0,1,2,2,1,170,-177821.59,-14893.021,0,0,2840.3354,0,-296.70013 +3881,4755,8416,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2312794,8.0994558,0,0,0,-814.54791,0,3,2,2021,11,0,41,38,1,0,0,9.7053146,9.7053146,.05,.05,0,0,0,0,0,0,0,0,0,7.8020329,0,58.89,35.37,-9,-9,6.666666666666667,2,3,0,0,8,9,4,1,1078,227679.8,103318.9,287010.19,0,0,0,2531.4868 +3882,4756,8417,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,5.843317,6.2296805,0,0,0,-938.50977,0,2,2,2021,19,7,30,30,1,7,0,1.6425012,1.6425012,.05,.05,0,0,0,0,0,0,0,0,0,7.5035834,0,38.47,55.1,-9,-9,6.666666666666667,1,1,0,0,13,11,2,1,1038,341009.47,-24642.115,189050.13,0,0,0,1394.7826 +3883,4757,8418,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.8790407,7.001256,0,0,0,-946.08606,0,3,3,2021,10,0,23,20,1,0,0,6.2182627,6.2182627,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,9,2,2,1,1149,509155.31,166753.48,512795.69,35422.691,0,0,1416.1256 +3883,4758,8419,-9,8418,-9,1,1,29,0,0,0,1,1,-9,0,4,7.9995046,8.1674223,0,0,0,-866.50031,0,1,-9,2021,10,0,35,38,1,1,1,8.6087494,8.6087494,0,0,0,0,0,0,0,0,0,0,0,3.3091071,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,489,-85063.531,15677.082,0,0,0,0,543.05994 +3884,4759,8420,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.2679415,8.010437,0,0,0,-1054.9604,0,3,3,2021,11,1,34,26,1,1,0,12.639946,12.639946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,983,-71208.906,122464.33,49499.449,24573.311,0,0,1490.928 +3885,4760,8421,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.5707359,7.5471025,0,0,-1002.2949,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8834553,7.489397,43.96,62.06,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,398,151426.61,74494.094,0,0,0,0,716.43915 +3886,4761,8422,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3705692,8.3610086,0,0,0,-910.60126,0,2,2,2021,6,0,39,39,1,0,0,13.40291,13.40291,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,575,471269.88,342527.44,259300.2,0,0,0,1971.5223 +3887,4762,8423,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.0770111,8.4819832,0,0,-1054.1223,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9299278,8.5146103,67.27,25.53,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,162,-65100.418,0,98155.852,0,24626.279,0,1826.6475 +3888,4763,8424,-9,8425,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-938.66144,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,1058.5,44634.105,0,0,0,3571.3149,0,2039.1638 +3888,4763,8425,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.4439759,7.4461112,0,0,0,-1055.2355,0,3,-9,2021,19,7,16,16,1,7,0,11.00298,11.00298,0,0,0,0,0,0,0,7,1,1,0,0,0,31,60.29,-9,-9,5,3,4,0,1,3,8,2,0,1058.5,44634.105,0,0,0,3571.3149,0,2039.1638 +3889,4764,8426,8427,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-1,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.84,41.32,48.77,57.64,8.333333333333334,1,1,0,0,0,6,1,0,370,-16271.213,0,83865.117,0,0,0,1021.0907 +3889,4764,8427,8426,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,57,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,62.84,41.32,8.333333333333334,1,1,0,0,0,6,1,0,370,-16271.213,0,83865.117,0,0,0,1021.0907 +3890,4765,8428,8429,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,39,0,53.204018,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,1,5,6,3,1,691.5,74013.508,-8013.0381,0,0,0,0,909.84558 +3890,4765,8429,8428,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.9205008,7.7111831,0,9,0,95.536568,0,3,3,2021,10,0,40,40,1,1,0,9.9687901,9.9687901,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,50,49,48,49,7,1,1,0,1,12,6,3,1,691.5,74013.508,-8013.0381,0,0,0,0,909.84558 +3890,4766,8430,-9,8428,8429,1,1,33,0,0,0,2,2,-9,0,5,6.4774418,6.6207852,0,0,0,-1020.0361,0,3,3,2021,0,0,11,30,1,0,1,7.0008903,7.0008903,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.22,61.23,-9,-9,10,1,1,0,0,4,6,2,1,695,95971.609,-41938.203,0,0,0,3294.717,931.8031 +3891,4767,8431,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,2,0,7.8471932,8.0187798,0,0,-917.51184,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6980953,36.27,24.2,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,176,204946.03,-31220.592,0,0,0,0,2541.0698 +3892,4768,8432,8433,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,53,-6,31.14933,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,61.12,51.57,10,1,1,0,0,4,2,2,0,1649,423970.19,340811.75,148472.69,0,0,304.88324,1067.3849 +3892,4768,8433,8432,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.6335621,7.2655969,53,6,10.836493,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2675514,7.2561102,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,0,1649,423970.19,340811.75,148472.69,0,0,304.88324,1067.3849 +3893,4769,8434,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,3,0,4.4137096,4.6395936,0,0,-1029.2949,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,2.2526283,0,0,1,1,0,4.7805276,4.5466642,62.92,29.01,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,137,210361.77,-43822.852,186221.39,0,0,0,1187.1809 +3894,4770,8435,8436,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.3734093,8.1281385,0,10,-2,24.613323,0,3,3,2021,12,0,34,34,1,0,0,12.338032,12.338032,0,0,0,0,0,0,0,0,0,0,0,2.2379961,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,499,1916709,1053783.6,269243.44,0,0,0,3438.5234 +3894,4770,8436,8435,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.2364645,8.1162682,10,2,-83.865059,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.3243592,8.2427082,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,8,4,5,1,499,1916709,1053783.6,269243.44,0,0,0,3438.5234 +3895,4771,8437,8438,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.8832231,7.8328543,0,7,-5,136.87006,0,-9,-9,2021,16,5,40,39,1,5,0,7.3548322,7.3548322,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,36.6,56.17,23.67,42.28,3.333333333333333,1,1,0,0,5,10,4,0,294.5,64718.602,59138.492,260322.63,98242.898,0,0,2464.1914 +3895,4771,8438,8437,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.1176195,8.3968048,0,7,5,155.81566,0,2,2,2021,24,12,47,81,1,12,0,9.226779,9.226779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.67,42.28,36.6,56.17,3.333333333333333,1,1,0,0,9,10,4,0,294.5,64718.602,59138.492,260322.63,98242.898,0,0,2464.1914 +3896,4772,8439,8440,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8713112,8.6753426,0,4,-11,39.346508,0,2,2,2021,3,0,45,55,1,0,0,17.137341,17.137341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,41.72,58.06,8.333333333333334,1,1,0,0,8,5,5,1,855,506921.31,301699.06,110210.62,22263.027,2700.2217,0,3071.3777 +3896,4772,8440,8439,-9,-9,1,0,56,0,0,0,3,3,-9,0,5,8.4613466,8.1619616,0,4,11,46.471233,0,3,2,2021,11,0,37,39,1,0,0,10.981239,10.981239,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.72,58.06,52,55,1.666666666666667,1,1,0,0,8,5,5,1,855,506921.31,301699.06,110210.62,22263.027,2700.2217,0,3071.3777 +3897,4773,8441,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9391007,7.9750686,0,0,0,-1046.7023,0,-9,-9,2021,6,0,36,38,1,0,0,9.4298534,9.4298534,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,1205,61309.637,-98939.906,135740.27,79251.68,0,0,1065.4421 +3898,4774,8442,8443,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.5549517,8.507472,0,11,5,15.387708,0,-9,-9,2021,10,0,37,37,1,1,0,15.799202,15.799202,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,49.41,58.28,8,1,1,0,0,13,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3898,4774,8443,8442,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.1307373,8.2035789,0,11,-5,-73.914017,0,1,2,2021,9,0,33,32,1,0,0,12.331123,12.331123,0,0,0,0,0,0,0,0,1,1,0,4.0456753,0,49.41,58.28,50,57,6.666666666666667,1,1,0,0,12,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3898,4774,8444,-9,8443,8442,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.14746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3899,4775,8445,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.0875101,8.0586748,5.2059684,0,0,-956.7934,0,2,1,2021,4,0,54,39,1,0,0,7.7569518,7.7569518,.05,.05,0,0,0,0,0,0,1,1,0,6.8256693,0,53.42,47.6,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,377,412311.69,476911,0,0,0,0,1659.6133 +3900,4776,8446,8447,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9281516,5.8317556,48,-10,172.53877,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6849847,5.9102092,55.02,54.61,59.46,36.25,8.333333333333334,1,1,0,0,0,9,3,1,2226,840207.13,605655.94,351340.22,0,0,0,3213.3794 +3900,4776,8447,8446,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.9690976,8.1118603,48,10,106.09083,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9684238,7.5116963,59.46,36.25,55.02,54.61,6.666666666666667,1,1,0,0,0,9,3,1,2226,840207.13,605655.94,351340.22,0,0,0,3213.3794 +3901,4777,8448,8449,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.6805058,9.7524853,8.3032646,7,1,68.007912,0,3,2,2021,10,0,54,70,1,0,0,37.04866,37.04866,.05,.05,0,0,0,0,0,0,0,0,0,7.4853358,8.1320276,61.69,33.84,49.04,39.8,6.666666666666667,1,1,0,0,7,5,5,1,692.5,323972.41,-5644.3438,286056.06,0,0,0,10733.321 +3901,4777,8449,8448,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.2984915,7.2648592,0,7,-1,-42.432461,0,-9,-9,2021,12,0,54,54,1,0,0,4.2445178,4.2445178,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,39.8,61.69,33.84,6.666666666666667,1,1,0,0,5,5,5,1,692.5,323972.41,-5644.3438,286056.06,0,0,0,10733.321 +3901,4778,8450,-9,8449,8448,1,0,32,0,0,0,2,2,1,0,3,6.7333698,6.9575887,0,0,0,-1014.2256,-9,3,2,2021,18,5,32,0,1,5,1,3.3131797,3.3131797,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,41.13,-9,-9,3.333333333333333,1,1,0,0,6,5,2,1,2437,144931.44,0,60561.313,0,0,-762.55505,884.88879 +3902,4779,8451,8452,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.8065758,6.9310079,8,-2,-65.106415,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0509968,5.8960581,62.08,46.01,61.19,36.58,10,1,1,0,0,0,10,3,1,848.5,867587.63,444617.03,392339.78,0,0,0,2013.0293 +3902,4779,8452,8451,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5837274,7.2670789,8,2,-116.6785,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.095572,61.19,36.58,62.08,46.01,6.666666666666667,1,1,0,0,4,10,3,1,848.5,867587.63,444617.03,392339.78,0,0,0,2013.0293 +3903,4780,8453,8454,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.6317196,8.6833353,0,14,4,-55.119499,0,2,2,2021,10,0,42,42,1,0,0,14.627342,14.627342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.46,54.85,54.2,57.49,6.666666666666667,1,1,0,0,9,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3903,4780,8454,8453,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,14,-4,49.797707,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1545424,0,54.2,57.49,42.46,54.85,8.333333333333334,1,1,0,0,2,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3903,4780,8455,-9,8454,8453,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.6723,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3904,4781,8456,-9,8459,8457,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1111.0967,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8457,8459,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,8.8021479,8.6896925,0,10,4,-213.07097,0,3,3,2021,12,0,61,60,1,0,0,14.571146,14.571146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,58,53.67,51.01,8.333333333333334,1,1,0,0,11,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8458,-9,8459,8457,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.14313,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8459,8457,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,6.8751664,6.6672087,0,10,-4,103.30965,0,2,2,2021,6,0,13,11,1,0,0,6.2373381,6.2373381,0,0,0,0,0,0,0,0,1,1,0,0,0,53.67,51.01,54,58,8.333333333333334,1,1,0,0,5,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8460,-9,8459,8457,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-999.33105,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.178332,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3905,4782,8461,8462,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,30,-4,28.307276,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.28,13.75,37.24,35.87,3.333333333333333,1,1,0,0,0,5,3,0,1274,1432890.1,795249.75,534111.75,0,1080.3539,0,1940.6322 +3905,4782,8462,8461,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.1053133,7.9473748,0,30,4,100.545,0,3,3,2021,12,1,39,39,1,1,0,8.5134001,8.5134001,0,0,0,0,0,0,0,0,1,1,0,0,0,37.24,35.87,55.28,13.75,3.333333333333333,1,1,0,0,6,5,3,0,1274,1432890.1,795249.75,534111.75,0,1080.3539,0,1940.6322 +3906,4783,8463,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8099303,7.4016161,0,0,0,-1019.6586,-9,-9,-9,2021,12,2,37,0,1,2,0,7.580493,7.580493,0,0,0,0,0,0,0,14.5,0,0,0,3.6076515,0,46.55,58.3,-9,-9,10,3,4,0,0,14,6,3,1,3562,222805.19,0,89404.672,0,0,0,545.3725 +3907,4784,8464,8465,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8171816,7.8772831,0,35,-4,-18.454384,0,3,2,2021,11,0,37,37,1,2,0,7.5999141,7.5999141,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,7,2,3,0,0,9,8,3,1,743.5,491697.81,96947.016,373171.28,0,0,0,1128.3965 +3907,4784,8465,8464,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,6.2412362,6.6173477,4.4893436,7,4,51.808346,0,3,3,2021,10,0,40,30,1,0,0,1.3444344,1.3444344,.05,.05,.05,0,0,0,0,0,0,0,0,2.7705388,4.4589853,44.84,49.01,49,48,6.666666666666667,2,3,0,0,9,8,3,1,743.5,491697.81,96947.016,373171.28,0,0,0,1128.3965 +3907,4785,8466,-9,8464,8465,1,0,23,0,0,0,1,1,-9,0,4,8.3876181,8.4513655,0,0,0,-919.44971,0,2,3,2021,11,0,36,23,1,2,1,16.308081,16.308081,.05,.05,0,0,0,0,0,0,0,0,0,2.1609087,0,47,58,-9,-9,7,2,3,0,0,2,8,5,1,508,-16446.369,63209.117,0,0,0,0,1782.1594 +3908,4786,8467,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.2060027,7.2183681,0,0,-1095.73,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8582861,7.2175713,52.93,47.44,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,528,381793.31,163781.75,353723.31,0,-1188.8395,0,1048.7549 +3909,4787,8468,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,7.0777254,7.2634673,0,0,-1040.5588,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1346407,0,0,1,1,0,0,7.2682519,59.74,11.03,-9,-9,10,1,1,0,0,0,12,2,1,404,176493.92,17852.578,0,0,0,0,1922.5555 +3910,4788,8469,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,7.61023,7.2642736,0,0,-1038.0079,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,258.02634,0,0,1,1,0,0,7.5003018,26.9,21.84,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1666,362626.66,-24176.783,232615.11,0,0,0,1137.2971 +3910,4789,8470,-9,8469,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1049.7543,1,2,2,2021,21,6,0,40,2,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.2348504,0,16.65,58.31,-9,-9,1.666666666666667,1,1,0,0,13,7,1,1,355,50258.074,0,0,0,-331.12943,0,-175.43738 +3911,4790,8471,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.666399,7.7078886,0,0,0,-984.97955,0,-9,3,2021,8,1,30,30,1,1,0,8.5198545,8.5198545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.7,57.37,-9,-9,1.666666666666667,1,1,0,1,13,13,3,1,1413,346047.34,39064.223,98482.773,0,0,0,400.6478 +3912,4791,8472,-9,8475,8474,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1017.2952,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8473,-9,8475,8474,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.39117,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8474,8475,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5128622,8.7053919,0,19,3,73.776222,0,2,1,2021,12,0,40,39,1,0,0,12.615914,12.615914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.41,44.31,30.4,59.43,5,1,1,0,0,8,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8475,8474,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,5.9201012,6.2104359,0,19,-3,4.4428201,0,-9,3,2021,16,4,5,6,1,4,0,8.8558874,8.8558874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.4,59.43,41.41,44.31,3.333333333333333,1,1,0,1,8,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4792,8476,-9,8475,8474,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-986.0929,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,37.58,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,124,36908.484,0,0,0,0,0,0 +3913,4793,8477,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.1553626,5.0458574,0,0,-969.00989,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1941209,51.57,37.05,-9,-9,5,1,1,0,0,4,12,2,0,522,585681.06,0,195633.22,0,0,0,497.03293 +3914,4794,8478,8479,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.2745976,5.1700439,10,-1,-42.813206,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0187807,5.0283899,57.16,56.15,55,52,8.333333333333334,1,1,0,0,0,11,3,1,1102,741558.25,358714.31,215772.36,0,0,0,4637.0977 +3914,4794,8479,8478,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.9434681,7.778935,10,1,-13.721066,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6500483,7.9871101,55,52,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,1102,741558.25,358714.31,215772.36,0,0,0,4637.0977 +3915,4795,8480,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.8282452,7.8918948,0,0,-1008.3843,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.0301132,7.8644776,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,3990,759169.13,146555.59,432483.69,0,0,0,1440.7598 +3916,4796,8481,8482,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,60,-2,-131.62009,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.72,31.11,38.52,20.8,8.333333333333334,1,1,0,0,0,1,2,1,263.5,316635.75,0,341451.25,0,0,0,2200.2805 +3916,4796,8482,8481,-9,-9,1,1,83,0,0,0,1,1,-9,0,1,0,7.2113981,7.3554468,60,2,-4.022522,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,106.63705,0,0,1,1,0,0,7.5782247,38.52,20.8,47.72,31.11,8.333333333333334,1,1,0,0,0,1,2,1,263.5,316635.75,0,341451.25,0,0,0,2200.2805 +3917,4797,8483,8484,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6617184,8.7621288,0,20,1,-46.72517,0,2,3,2021,12,3,32,27,1,3,0,23.578276,23.578276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.33,56.78,54.76,38.04,8.333333333333334,1,1,0,0,14,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8484,8483,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.9600868,8.9610987,0,20,-1,-36.781082,0,3,3,2021,8,1,50,36,1,1,0,16.741978,16.741978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.76,38.04,29.33,56.78,8.333333333333334,1,1,0,0,14,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8485,-9,8483,8484,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8688,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8486,-9,8483,8484,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.09332,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3918,4798,8487,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.4464641,7.67241,0,0,0,-941.71948,0,-9,-9,2021,12,0,30,-9,1,0,0,6.4251866,6.4251866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,13,2,3,1,670,169839.48,-29120.285,0,0,0,0,692.26855 +3919,4799,8488,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,8.7114506,9.1016808,7.2904105,0,0,-1061.2015,0,3,2,2021,8,0,40,38,1,0,0,19.186592,19.186592,0,0,0,0,0,0,0,0,1,1,0,6.5739036,7.5603495,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,673,1022062.3,352275.34,369849.63,0,3669.5847,0,3784.1892 +3920,4800,8489,8490,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.3457055,7.2348242,0,11,3,24.086729,0,-9,-9,2021,10,0,80,80,1,1,0,2.8851268,2.8851268,0,0,0,0,0,0,0,0,1,1,0,7.7716699,0,52,48,57.33,42.93,7,1,1,0,0,1,5,3,0,1255.5,568041,86514.563,338304.25,0,27943.734,0,3138.1147 +3920,4800,8490,8489,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.3243036,6.0660291,11,-3,-8.5543489,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6635575,5.9886584,57.33,42.93,52,48,8.333333333333334,1,1,0,0,0,5,3,0,1255.5,568041,86514.563,338304.25,0,27943.734,0,3138.1147 +3921,4801,8491,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,6.7777371,7.0030122,0,0,0,-985.01398,0,-9,-9,2021,5,0,8,0,1,0,0,11.146238,11.146238,0,0,0,0,0,0,0,2,1,1,0,5.160183,0,62.9,48.63,-9,-9,6.666666666666667,1,1,0,0,2,8,2,1,312,890652.94,325766.25,132337.39,0,0,0,-27.321892 +3921,4802,8492,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,0,0,0,0,0,-977.03369,-9,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,4,6,1,0,0,8,1,1,1321,-129089.28,0,0,0,0,0,431.0368 +3922,4803,8493,8495,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,0,0,0,20,-4,-.18122043,0,3,1,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.63,36.68,50.05,38.97,8.333333333333334,2,3,0,0,0,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3922,4803,8494,-9,8493,8495,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-960.94836,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3922,4803,8495,8493,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,7.3358803,6.9488306,0,40,4,21.622316,0,3,2,2021,12,4,24,24,1,4,0,6.113811,6.113811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.05,38.97,51.63,36.68,8.333333333333334,2,3,0,0,7,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3923,4804,8496,-9,8497,8499,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.6362,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8497,8499,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.0063009,8.0988054,0,14,-2,-44.831348,0,1,3,2021,12,1,28,28,1,1,0,8.1929703,8.1929703,.05,.05,0,0,0,0,0,2,0,0,0,7.6437931,0,44.07,39.47,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8498,-9,8497,8499,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.80786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8499,8497,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8406916,8.6046848,0,14,2,21.96769,0,2,2,2021,13,1,37,43,1,1,0,17.275579,17.275579,.05,.05,.05,0,0,0,0,0,0,0,0,6.3014517,0,57.16,56.15,44.07,39.47,6.666666666666667,1,1,0,0,10,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3924,4805,8500,8501,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.3477726,7.4585872,0,3,-2,-66.632515,0,-9,-9,2021,9,0,25,17,1,0,0,7.0147586,7.0147586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.77,58.57,8.333333333333334,2,3,0,0,2,5,4,1,1129.5,185566.22,102391.22,199707.55,107143,4640.8496,0,1831.339 +3924,4805,8501,8500,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.6551704,8.9741268,0,3,2,159.47258,0,3,3,2021,11,0,47,50,1,0,0,12.643678,12.643678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.2,57.49,6.666666666666667,2,3,0,0,9,5,4,1,1129.5,185566.22,102391.22,199707.55,107143,4640.8496,0,1831.339 +3925,4806,8502,8503,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.5122213,8.9040537,0,8,0,-51.915855,0,-9,-9,2021,11,3,40,40,1,3,0,14.315168,14.315168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,54.2,57.49,8.333333333333334,1,1,0,0,4,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8503,8502,-9,-9,1,1,32,2,2,0,1,1,-9,0,4,8.4554882,8.797574,0,8,0,115.99673,0,2,1,2021,12,0,40,39,1,0,0,12.3538,12.3538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.58,60.95,8.333333333333334,1,1,0,0,10,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8504,-9,8502,8503,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-965.27142,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8505,-9,8502,8503,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.975,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3926,4807,8506,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.8761024,8.6972132,0,0,0,-940.24451,0,-9,-9,2021,14,4,45,47,1,4,0,16.813568,16.813568,0,0,0,0,0,0,0,7,0,0,0,2.7573092,0,46.53,32.85,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,481,-87301.969,0,0,0,5154.7441,0,2762.4055 +3927,4808,8507,8508,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.1639347,8.303525,0,11,-4,87.173653,0,-9,-9,2021,6,0,35,30,1,0,0,15.320409,15.320409,0,0,0,0,0,0,0,0,0,0,0,0,0,64.48,41.06,62.49,55.09,8.333333333333334,1,1,0,0,11,7,5,1,1819,1474307.3,367325,885408.56,13333.288,14760.869,0,5827.4097 +3927,4808,8508,8507,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.9528513,9.0698214,7.6620941,39,4,-13.676836,0,3,3,2021,6,0,40,35,1,0,0,25.624956,25.624956,0,0,0,0,0,0,0,0,0,0,0,0,7.7995391,62.49,55.09,64.48,41.06,10,1,1,0,0,13,7,5,1,1819,1474307.3,367325,885408.56,13333.288,14760.869,0,5827.4097 +3927,4809,8509,-9,8507,8508,1,1,29,0,0,0,2,2,-9,0,5,7.6820784,7.7561703,0,0,0,-1139.2581,-9,2,3,2021,6,0,40,0,1,0,1,6.5411706,6.5411706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,382,-156654.81,-28004.4,0,0,0,0,602.95142 +3927,4810,8510,-9,8507,8508,1,1,26,0,0,0,1,1,-9,0,5,8.5638409,8.6662178,0,0,0,-918.86938,0,2,3,2021,4,0,40,40,1,0,1,14.16851,14.16851,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,7,5,1,718,-23951.105,108410.13,0,0,0,0,1571.2532 +3928,4811,8511,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-978.70428,0,-9,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,26.09,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,587,6230.8193,0,0,0,0,0,1044.4292 +3929,4812,8512,-9,8513,8514,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.3687,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3929,4812,8513,8514,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.0541549,6.852818,0,2,2,7.7115331,0,-9,-9,2021,11,0,16,16,1,0,0,7.418673,7.418673,0,0,0,0,0,0,0,0,1,1,0,0,0,54.88,35.34,48.98,57.22,5,1,1,0,0,8,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3929,4812,8514,8513,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,7.8347654,7.8831606,0,2,-2,-46.501175,0,-9,-9,2021,12,0,42,42,1,0,0,9.9430971,9.9430971,0,0,0,0,0,0,0,0,1,1,0,.45687512,0,48.98,57.22,54.88,35.34,3.333333333333333,1,1,0,0,10,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3930,4813,8515,8516,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,7.564568,7.6753507,51,1,1.7369187,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.6891754,7.487618,62.39,56.71,47.1,56.62,10,1,1,0,0,4,11,4,1,911,1471826.3,905714.81,223474.59,0,0,0,3812.1904 +3930,4813,8516,8515,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.0365429,8.1435452,51,-1,65.602592,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.926384,8.2177515,47.1,56.62,62.39,56.71,10,1,1,0,0,4,11,4,1,911,1471826.3,905714.81,223474.59,0,0,0,3812.1904 +3930,4814,8517,-9,8515,8516,1,1,43,0,0,0,2,2,-9,1,4,7.5193624,7.3636503,0,0,0,-927.75409,0,1,1,2021,1,0,37,37,1,0,0,5.7579703,5.7579703,0,0,0,0,0,0,0,0,1,1,0,.81521076,0,59.74,45.34,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,1410,-258671.06,0,0,0,0,0,2748.384 +3931,4815,8518,8519,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7572217,7.5306664,0,9,-2,.48349983,0,-9,2,2021,17,5,39,39,1,5,0,8.2811861,8.2811861,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.09,43.11,51,57,5,1,1,0,1,11,2,3,0,892,192693.53,-24625.977,97559.188,60448.031,6625.0493,1627.5688,2135.0417 +3931,4815,8519,8518,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,0,0,0,9,2,109.13172,0,-9,-9,2021,10,0,0,39,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51,57,42.09,43.11,7,1,1,1,0,0,2,3,0,892,192693.53,-24625.977,97559.188,60448.031,6625.0493,1627.5688,2135.0417 +3932,4816,8520,8521,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.6456294,6.0939689,56,3,-37.971863,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5723286,57.33,53.46,60.03,45.37,10,1,1,0,0,0,5,2,1,849,265211.06,227036.23,132640.16,30448.832,0,0,700.61346 +3932,4816,8521,8520,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,-3,-32.25428,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,45.37,57.33,53.46,10,1,1,0,0,0,5,2,1,849,265211.06,227036.23,132640.16,30448.832,0,0,700.61346 +3933,4817,8522,8523,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.685215,8.522522,0,8,-1,83.217682,0,3,2,2021,17,6,37,40,1,6,0,16.353987,16.353987,0,0,0,0,0,0,0,0,0,0,0,0,0,48.35,50.73,49.07,47.58,3.333333333333333,1,1,0,0,9,11,5,1,216,463556.13,342528.38,141042.34,0,6841.1152,548.94843,2965.332 +3933,4817,8523,8522,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.8044357,8.0044212,0,8,1,19.006617,0,-9,-9,2021,20,7,41,40,1,7,0,5.1172905,5.1172905,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.07,47.58,48.35,50.73,5,1,1,0,0,7,11,5,1,216,463556.13,342528.38,141042.34,0,6841.1152,548.94843,2965.332 +3934,4818,8524,8525,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.815259,7.6014504,0,8,0,-89.230324,0,2,1,2021,14,4,37,37,1,4,0,7.9330497,7.9330497,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.94,58.68,54.37,54.8,10,1,1,0,0,9,12,5,1,621.5,1055432,436725.25,488204.56,-3658.2617,7810.686,0,9783.6523 +3934,4818,8525,8524,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.789753,9.4159632,0,8,0,-63.775688,0,2,2,2021,11,0,35,40,1,0,0,45.111485,45.111485,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.94,58.68,8.333333333333334,1,1,0,0,9,12,5,1,621.5,1055432,436725.25,488204.56,-3658.2617,7810.686,0,9783.6523 +3935,4819,8526,8527,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.8569264,8.0213566,3,8,-34.705879,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.7123458,7.8575816,51,49,54.96,53.17,7,4,1,0,0,0,4,5,1,1933,243813.63,39223.75,187320.97,55311.281,0,0,3123.2358 +3935,4819,8527,8526,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.5053768,8.5487404,0,3,-8,54.955639,0,2,-9,2021,8,0,40,37,1,0,0,12.422194,12.422194,0,0,0,0,0,0,0,0,0,0,0,3.8179648,0,54.96,53.17,51,49,10,1,1,0,0,10,4,5,1,1933,243813.63,39223.75,187320.97,55311.281,0,0,3123.2358 +3936,4820,8528,8529,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,0,0,55,-3,49.330547,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.82,53.97,56.78,46.68,10,1,1,0,0,0,4,3,1,558,1120285.8,617450.81,407887.94,0,0,0,1980.8979 +3936,4820,8529,8528,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.7941041,7.378828,55,3,-34.044807,0,-9,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9087257,56.78,46.68,52.82,53.97,8.333333333333334,1,1,0,0,10,4,3,1,558,1120285.8,617450.81,407887.94,0,0,0,1980.8979 +3937,4821,8530,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.5634003,5.5773335,0,0,-1110.802,-9,-9,-9,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,8.8212366,0,0,1,1,0,0,5.5071125,44.32,32.67,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,207,-43080.68,-50326.141,0,0,0,0,1162.4288 +3938,4822,8531,8532,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3348494,7.9971418,28,1,108.73085,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0503039,8.0831356,58.5,44.67,54.2,57.49,10,1,1,0,0,6,7,4,1,1136.5,1695449.3,574172.38,460867.88,0,0,0,4431.8926 +3938,4822,8532,8531,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.5589714,5.6248326,28,-1,-30.635511,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1182942,5.3689613,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,8,7,4,1,1136.5,1695449.3,574172.38,460867.88,0,0,0,4431.8926 +3939,4823,8533,8534,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.367815,8.1992168,0,7,0,-92.201744,0,3,-9,2021,10,0,35,37,1,1,0,10.839601,10.839601,0,0,0,0,0,0,0,0,0,0,0,7.2890568,0,51,54,55.21,43.87,8,1,1,0,0,1,9,4,1,407,1139759.9,752692.88,236612.25,0,0,0,3393.7483 +3939,4823,8534,8533,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.9820275,7.3661003,6.4037547,7,9,-27.581358,0,-9,-9,2021,8,0,35,40,1,0,0,3.9037733,3.9037733,.05,.05,0,0,0,0,0,0,0,0,0,7.0386066,6.7146969,55.21,43.87,51,54,8.333333333333334,1,1,0,0,8,9,4,1,407,1139759.9,752692.88,236612.25,0,0,0,3393.7483 +3940,4824,8535,8536,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7764711,8.8948107,0,12,1,-32.295483,0,2,2,2021,14,3,37,37,1,3,0,15.228615,15.228615,.05,.05,0,0,0,0,0,0,1,1,0,.89866644,0,33.76,54.45,38.3,52.65,8.333333333333334,1,1,0,0,12,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8536,8535,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.7274861,7.5898132,0,12,-1,103.26027,0,2,2,2021,12,1,29,29,1,1,0,10.672978,10.672978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.3,52.65,33.76,54.45,6.666666666666667,1,1,0,0,12,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8537,-9,8536,8535,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9086,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8538,-9,8536,8535,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.81702,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3941,4825,8539,8540,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,18,-4,14.349506,-9,1,1,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,8.8123627,0,41.88,45.75,40.55,31.7,6.666666666666667,2,3,0,0,0,10,5,1,670,1728971.8,1147196.3,348616.81,0,11233.775,0,9431.1035 +3941,4825,8540,8539,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.4519796,9.5362921,0,18,4,-35.9333,-9,1,1,2021,24,10,40,0,1,10,0,37.119438,37.119438,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.55,31.7,41.88,45.75,3.333333333333333,2,3,0,0,8,10,5,1,670,1728971.8,1147196.3,348616.81,0,11233.775,0,9431.1035 +3941,4826,8541,-9,8539,8540,1,1,19,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1048.587,-9,1,1,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,10,1,1,306,-17870.771,0,0,0,0,0,0 +3942,4827,8542,8543,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.066803,8.3982868,0,3,0,-7.5300283,0,3,2,2021,6,0,48,48,1,0,0,8.6161423,8.6161423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.47,37.82,45.17,18.5,10,1,1,0,0,11,2,4,1,996,443330.5,6522.5474,208025.09,0,4978.6626,0,1881.7379 +3942,4827,8543,8542,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,0,6.025485,6.4993296,3,0,-75.385643,0,-9,-9,2021,23,11,0,35,3,11,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,6.3980527,0,45.17,18.5,65.47,37.82,1.666666666666667,1,1,0,1,4,2,4,1,996,443330.5,6522.5474,208025.09,0,4978.6626,0,1881.7379 +3943,4828,8544,8545,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.8431816,7.7828941,60,3,105.15642,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.34144771,7.6044312,54.78,34.44,58.15,52.91,6.666666666666667,1,1,0,0,4,2,3,1,856.5,1032678.6,574740.63,141718.56,0,0,0,2927.9807 +3943,4828,8545,8544,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8824897,7.2008767,60,-3,-136.98282,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6990728,7.3128338,58.15,52.91,54.78,34.44,8.333333333333334,1,1,0,0,0,2,3,1,856.5,1032678.6,574740.63,141718.56,0,0,0,2927.9807 +3944,4829,8546,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8948846,8.0210857,0,0,-929.53058,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8169503,8.0617762,55.81,39,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,107,712405.69,362169.41,295536.13,0,13153.212,0,2227.906 +3945,4830,8547,8548,-9,-9,1,1,75,1,1,0,2,2,-9,0,2,0,0,0,48,10,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.68,20.81,46,36,8.333333333333334,2,3,0,0,0,8,1,0,353.5,180077.75,9592.0625,0,0,0,0,1444.1912 +3945,4830,8548,8547,-9,-9,1,0,65,1,1,0,3,3,-9,0,2,0,0,0,48,-10,0,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,14.364291,122.58569,126.32145,27,1,1,0,0,0,46,36,61.68,20.81,8.333333333333334,2,3,0,0,0,8,1,0,353.5,180077.75,9592.0625,0,0,0,0,1444.1912 +3945,4831,8549,8551,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,0,0,0,1,0,13.740168,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,46.86,55.66,6.666666666666667,2,3,0,0,0,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3945,4831,8550,-9,8549,8551,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.2637,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3945,4831,8551,8549,8548,8547,1,1,27,1,1,0,1,1,-9,0,3,8.6593065,8.8387823,0,1,0,-16.250862,0,3,2,2021,11,0,35,36,1,0,0,19.453438,19.453438,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,46.86,55.66,50.28,51.35,3.333333333333333,2,3,0,0,3,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3946,4832,8552,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.5311785,8.4827251,0,0,0,-1099.4174,-9,2,2,2021,12,0,82,0,1,0,0,8.3067551,8.3067551,0,0,0,0,0,0,0,0,0,0,0,3.4285281,0,47.67,58.09,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,1929,101169.3,155221.66,327671.75,110896.78,-246.39624,6284.6855,1932.2668 +3947,4833,8553,8554,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,37,10,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.3054609,0,0,1,1,0,0,0,36.27,21.53,39.15,41.42,5,1,1,0,0,0,9,1,0,692.5,-69879.078,24785.908,0,0,0,0,2308.4055 +3947,4833,8554,8553,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,37,-10,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,36.27,21.53,5,1,1,1,1,0,9,1,0,692.5,-69879.078,24785.908,0,0,0,0,2308.4055 +3947,4834,8555,-9,8554,8553,1,0,26,0,0,0,1,1,-9,1,1,0,0,0,0,0,-875.51813,0,2,3,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,34.97,-9,-9,5,1,1,0,1,1,9,2,0,381,-135622.63,0,0,0,0,0,1092.7717 +3947,4835,8556,-9,8554,8553,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.34631,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,1,0,9,1,0,1479,-72405.82,0,0,0,0,0,0 +3948,4836,8557,8558,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.8166103,8.7500973,0,12,7,-22.250992,0,2,2,2021,11,0,37,38,1,0,0,30.449179,30.449179,.05,.05,0,0,0,0,0,2,0,0,0,5.0690532,0,50.57,52.35,52,54.51,8.333333333333334,1,1,0,0,8,10,5,1,349,732927.38,544006.06,271553,143034.66,0,0,5546.6157 +3948,4836,8558,8557,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.5316248,9.6548786,0,12,-7,33.410519,0,2,1,2021,7,0,42,38,1,0,0,30.864847,30.864847,.05,.05,0,0,0,0,0,0,0,0,0,4.5729647,0,52,54.51,50.57,52.35,8.333333333333334,1,1,0,0,8,10,5,1,349,732927.38,544006.06,271553,143034.66,0,0,5546.6157 +3949,4837,8559,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,7.925035,7.8944063,0,0,0,-1083.907,0,2,2,2021,5,0,47,39,1,0,0,5.9887576,5.9887576,0,0,0,0,0,0,0,0,0,0,0,0,0,47.83,63.15,-9,-9,8.333333333333334,1,1,0,0,13,5,3,0,491,651789.38,530662.31,182889.59,0,0,0,790.07971 +3950,4838,8560,8561,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5877275,6.5545902,4,-3,-25.06352,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6699758,57.16,56.15,61.69,34.95,10,1,1,0,0,0,4,2,1,1384,497715.34,216178.81,383100.94,0,0,0,2148.5708 +3950,4838,8561,8560,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.9589624,6.5590215,4,3,162.83226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,7.6809254,0,0,1,1,0,0,6.7960691,61.69,34.95,57.16,56.15,10,1,1,0,0,0,4,2,1,1384,497715.34,216178.81,383100.94,0,0,0,2148.5708 +3951,4839,8562,8563,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.0413256,6.7355814,0,15,-4,44.616032,0,-9,-9,2021,6,0,20,50,1,0,0,5.8783102,5.8783102,0,0,0,0,0,0,0,0,0,0,0,7.2478065,0,60.12,54.8,49.62,55.59,8.333333333333334,1,1,0,0,11,8,3,1,517.5,921336.5,248316.59,738538.13,0,0,0,1863.6517 +3951,4839,8563,8562,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.2378855,7.2503657,0,10,4,-35.072651,0,-9,-9,2021,2,1,20,50,1,1,0,6.1339378,6.1339378,0,0,0,0,0,0,0,0,0,0,0,0,0,49.62,55.59,60.12,54.8,8.333333333333334,1,1,0,0,9,8,3,1,517.5,921336.5,248316.59,738538.13,0,0,0,1863.6517 +3952,4840,8564,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.041316,5.8534145,0,0,-1079.4373,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.37125909,5.7270417,46.39,60.99,-9,-9,10,1,1,0,0,0,11,2,1,1197,240168.7,47228.871,135416.3,0,0,0,214.70728 +3953,4841,8565,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-898.31799,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,17.76,-9,-9,5,1,1,0,1,0,6,1,0,2926,103280.59,0,0,0,-1742.9382,0,786.11194 +3953,4842,8566,-9,8565,-9,1,1,33,0,0,0,3,3,-9,0,4,0,0,0,0,0,-994.73901,0,3,-9,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,28.54,65.51000000000001,-9,-9,8.333333333333334,1,1,1,1,0,6,1,0,135,0,0,0,0,0,0,309.02817 +3954,4843,8567,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.7980566,6.5975685,0,16,7,4.194726,0,1,1,2021,3,0,30,40,1,0,0,3.3695028,3.3695028,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.12,51.32,8.333333333333334,1,1,0,0,9,11,4,1,2731,-93832.789,15349.523,0,0,0,0,826.97168 +3954,4844,8568,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.4620295,8.2260294,0,15,-7,-115.08647,0,3,2,2021,14,4,37,37,1,4,0,12.81939,12.81939,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.12,51.32,54.79,55.86,3.333333333333333,1,1,0,0,9,11,4,1,163,275198.41,323510.84,83926.578,32386.395,0,0,1791.6798 +3955,4845,8569,8570,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8056331,7.7840929,5,5,106.08274,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.234529,0,0,1,1,0,6.2465248,7.9386201,53.25,42.89,47.2,58.1,8.333333333333334,1,1,0,0,0,4,3,1,991,536709.5,53260.852,125797.15,0,0,0,2532.1367 +3955,4845,8570,8569,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.2816033,5.76893,5,-5,-10.726709,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7620482,5.2584743,47.2,58.1,53.25,42.89,8.333333333333334,1,1,0,0,8,4,3,1,991,536709.5,53260.852,125797.15,0,0,0,2532.1367 +3956,4846,8571,8572,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9381919,8.0452528,0,5,-7,99.169373,0,3,3,2021,11,0,40,40,1,2,0,6.8204126,6.8204126,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,48,59.19,51.29,7,1,1,0,0,1,12,5,1,748.5,-34077.539,27481.713,94990.828,49568.238,0,2900.3965,3305.6851 +3956,4846,8572,8571,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,8.4158278,8.9698372,7.0347109,47,7,8.6966829,0,3,3,2021,6,0,20,15,1,0,0,31.724974,31.724974,.05,.05,0,0,0,0,0,0,0,0,0,3.6173167,7.0365753,59.19,51.29,49,48,10,1,1,0,0,11,12,5,1,748.5,-34077.539,27481.713,94990.828,49568.238,0,2900.3965,3305.6851 +3957,4847,8573,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1367035,8.3137083,0,0,-997.02594,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7048354,8.1208868,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,984,476847.19,220890.72,276983.28,0,0,0,2313.9551 +3958,4848,8574,8576,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9169216,8.9291668,0,11,-8,4.3940473,0,3,3,2021,13,2,42,42,1,2,0,14.55218,14.55218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,47.79,53.79,5,1,1,0,0,13,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8575,-9,8574,8576,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.72028,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8576,8574,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.6144733,8.5504494,0,9,8,41.642727,0,2,1,2021,10,0,37,37,1,0,0,17.975878,17.975878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,42.05,58.8,8.333333333333334,1,1,0,0,14,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8577,-9,8574,8576,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.9312,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3959,4849,8578,8579,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,55,-4,57.217365,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.02,46.94,54,46,8.333333333333334,1,1,0,0,0,4,2,1,941,1285811,135563.91,189670.47,0,0,0,1542.2104 +3959,4849,8579,8578,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.0814953,7.2069764,55,4,-44.547638,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2016749,54,46,53.02,46.94,8,1,1,0,0,0,4,2,1,941,1285811,135563.91,189670.47,0,0,0,1542.2104 +3960,4850,8580,8581,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,6.8788438,6.9157753,0,16,0,68.341972,0,-9,2,2021,8,0,40,-9,1,0,0,2.9703104,2.9703104,0,0,0,0,0,0,0,0,0,0,0,6.3585505,0,49.35,59.64,41.06,40.47,1.666666666666667,1,1,0,0,7,1,4,1,809.5,1327458.8,1150004.3,161212.34,0,1961.0325,0,3108.7344 +3960,4850,8581,8580,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7862082,8.7156134,0,29,0,-2.7427599,0,-9,2,2021,9,0,35,45,1,0,0,21.54203,21.54203,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,40.47,49.35,59.64,3.333333333333333,1,1,0,0,9,1,4,1,809.5,1327458.8,1150004.3,161212.34,0,1961.0325,0,3108.7344 +3960,4851,8582,-9,8580,8581,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1143.1292,1,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,2,1,1,1,1149,0,0,0,0,0,0,0 +3961,4852,8583,8586,-9,-9,1,0,37,0,2,0,2,2,0,0,4,0,0,0,16,-2,-24.302912,-9,2,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.34,62.18,50.62,53.79,6.666666666666667,3,4,0,0,2,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8584,-9,8583,8586,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.469,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8585,-9,8583,8586,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.3488,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8586,8583,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.4849558,8.4715824,0,14,2,-126.57652,0,-9,-9,2021,7,0,40,52,1,0,0,17.076797,17.076797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.62,53.79,29.34,62.18,6.666666666666667,3,4,0,0,8,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3962,4853,8587,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8876472,7.804781,0,0,0,-993.83154,0,-9,3,2021,22,8,38,38,1,8,0,7.4349012,7.4349012,0,0,0,0,0,0,0,0,0,0,0,0,0,22.42,68.11,-9,-9,3.333333333333333,1,1,0,0,1,7,3,0,1162,-194212.44,0,0,0,0,0,1323.6669 +3962,4854,8588,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.6899557,8.4720097,0,0,0,-1110.4167,-9,-9,-9,2021,7,1,46,0,1,1,0,16.44965,16.44965,0,0,0,0,0,0,0,0,0,0,0,0,0,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,9,7,5,0,1188,23077.945,0,0,0,0,0,2801.6106 +3963,4855,8589,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.2647748,7.571198,0,0,-899.49969,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2943594,7.2239513,57.32,47.78,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,177,609235.63,553513.06,25018.111,0,0,0,941.29254 +3964,4856,8590,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.1003623,6.3550897,0,0,-1034.4502,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,4.8805027,9.6326122,51.246666,0,1,1,0,0,5.9579148,63.07,10.78,-9,-9,10,1,1,0,0,0,10,2,1,388,617838.38,179144.48,481857.28,0,0,0,1824.2179 +3965,4857,8591,-9,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,7.7049651,7.6737103,0,0,0,-975.11462,0,2,2,2021,13,2,30,30,1,2,0,8.6835079,8.6835079,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,5,1,1,0,0,12,10,3,1,109,469403.59,114835.95,197899.89,0,0,0,1828.6223 +3966,4858,8592,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,7.7192945,8.82306,7.5158544,0,0,-927.6264,0,3,3,2021,8,0,23,26,1,0,0,11.843688,11.843688,0,0,0,0,0,0,0,0,1,1,0,2.8272698,7.78056,56.49,29.9,-9,-9,6.666666666666667,4,5,0,0,9,6,5,1,171,102033.24,56667.57,116994.98,0,0,0,2168.1199 +3967,4859,8593,8595,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.6535025,8.4006491,0,7,-2,-3.9289544,0,2,2,2021,6,0,30,30,1,0,0,23.75086,23.75086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,9,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8594,-9,8593,8595,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.1096,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8595,8593,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.8132763,8.551301,0,7,2,5.2853336,0,-9,-9,2021,11,0,37,37,1,0,0,17.612867,17.612867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.79,55.86,6.666666666666667,1,1,0,0,11,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8596,-9,8593,8595,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.00366,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3968,4860,8597,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.7145214,8.6884851,0,0,0,-1007.7092,0,2,2,2021,13,1,45,35,1,1,0,17.95812,17.95812,0,0,0,0,0,0,0,0,1,1,0,0,0,47.81,48.01,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1975,690442,458045.25,149258.27,0,0,0,2401.3469 +3969,4861,8598,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1100.2289,0,1,1,2021,12,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8181806,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,11,5,1,1,823,303106.78,0,214899.22,0,0,0,598.67621 +3970,4862,8599,-9,8601,8600,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-800.34088,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4862,8600,8601,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.8481979,8.8617163,0,22,-3,-5.9454012,0,2,3,2021,9,0,43,42,1,0,0,16.282759,16.282759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4862,8601,8600,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.7580581,7.5702453,23,3,45.865177,0,2,3,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.7540231,8.007081,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4863,8602,-9,8601,8600,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1174.7595,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.13,62.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,465,0,0,0,0,0,0,0 +3971,4864,8603,-9,8604,8608,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-948.05829,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8604,8608,-9,-9,1,0,44,0,4,0,2,2,-9,0,3,0,0,0,10,-2,95.351501,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,16.16,64.75,5,1,1,0,1,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8605,-9,8604,8608,1,0,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1100.8542,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8606,-9,8604,8608,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-779.435,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8607,-9,8604,8608,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.8258,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8608,8604,-9,-9,1,1,46,0,4,0,1,1,-9,0,3,8.5875807,8.4161701,0,26,2,58.157288,0,2,2,2021,31,12,40,46,1,12,0,15.717351,15.717351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.16,64.75,46,50,1.666666666666667,1,1,0,0,6,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3972,4865,8609,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9854755,8.0672102,0,0,0,-1002.7877,-9,-9,-9,2021,9,1,55,0,1,1,0,7.4365392,7.4365392,.05,.05,0,0,0,0,0,42,0,0,0,0,0,59.07,40.22,-9,-9,5,1,1,0,1,12,9,4,0,1534,-50690.758,160999.89,0,0,0,1549.0591,836.36945 +3972,4866,8610,-9,8609,-9,1,0,25,0,0,0,1,1,-9,0,2,7.862319,8.0073891,0,0,0,-1010.3509,0,2,-9,2021,29,11,38,35,1,11,1,7.1711349,7.1711349,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.9,40.03,-9,-9,1.666666666666667,1,1,0,1,8,9,4,0,438,-121315.81,-12122.527,0,0,3448.1609,0,891.4826 +3973,4867,8611,8613,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.6994276,8.5121059,0,5,2,-62.861027,0,-9,-9,2021,10,1,40,40,1,1,0,13.55319,13.55319,0,0,0,0,0,0,0,0,1,1,0,1.9768971,0,41.06,62.04,45,54,8.333333333333334,1,1,0,0,6,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3973,4867,8612,-9,8611,8613,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.6864,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3973,4867,8613,8611,-9,-9,1,1,27,1,1,0,1,1,-9,0,3,8.4978046,8.3821878,0,5,-2,-48.365746,0,2,2,2021,12,0,50,16,1,2,0,9.6848946,9.6848946,.05,.05,0,0,0,0,0,0,1,1,0,2.8884263,0,45,54,41.06,62.04,7,1,1,0,0,10,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3974,4868,8614,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.2877493,5.8903828,0,0,-966.12518,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9419127,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,278,268581.66,84955.719,182965.39,0,0,0,1371.5039 +3975,4869,8615,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.2132111,8.2747793,0,0,0,-1003.2047,0,2,1,2021,7,0,35,30,1,0,0,10.427279,10.427279,.05,.05,0,0,0,0,0,7,0,0,0,0,0,56.5,37.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,2097,230489.64,43383.684,114673.73,32856.859,-714.37634,0,1208.3495 +3976,4870,8616,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,9.6355734,9.6456575,0,0,0,-1143.2813,0,2,2,2021,11,1,50,77,1,1,0,30.61961,30.61961,.05,.05,0,0,0,0,0,0,0,0,0,3.5253055,0,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,226,35758.348,138612.92,0,0,0,0,5029.4609 +3977,4871,8617,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.7654,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,29.62,48.33,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1682,-35602.551,0,0,0,0,0,1976.7804 +3978,4872,8618,8619,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,0,0,50,2,-35.023766,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.80795771,0,60.02,56.42,51,47,10,1,1,0,0,1,11,3,1,1100,210542.31,-15150.263,144060.17,0,0,0,2177.7754 +3978,4872,8619,8618,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.7828913,8.3786602,7.248312,50,-2,-11.158029,-9,3,3,2021,11,0,39,0,1,1,0,5.9961467,5.9961467,0,0,0,0,0,0,0,0,1,1,0,3.707484,6.8827405,51,47,60.02,56.42,7,1,1,0,0,1,11,3,1,1100,210542.31,-15150.263,144060.17,0,0,0,2177.7754 +3979,4873,8620,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.4304214,6.8568349,0,0,-1023.1854,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.8362116,0,23.566216,0,1,1,0,0,6.5933089,65.47,37.82,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,434,333141.31,-31443.43,185883,0,0,0,1121.0798 +3980,4874,8621,8622,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,9.0635662,8.8306141,6,6,-9.0836105,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6279225,8.885911,62.39,56.71,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,419,1586391.5,1156784.9,387427.75,0,0,0,5510.5889 +3980,4874,8622,8621,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-6,53.500027,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0629213,0,60.12,54.8,62.39,56.71,0,1,1,0,0,0,13,5,1,419,1586391.5,1156784.9,387427.75,0,0,0,5510.5889 +3981,4875,8623,8625,-9,-9,1,1,47,0,1,0,1,1,-9,0,1,9.1219263,9.4273281,0,16,8,-53.565708,0,3,3,2021,8,0,37,41,1,0,0,28.149971,28.149971,.05,.05,0,0,0,0,.75012201,0,0,0,0,0,0,53,46.42,63.63,51.86,8.333333333333334,1,1,0,0,13,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3981,4875,8624,-9,8625,8623,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-963.65875,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3981,4875,8625,8623,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.5472584,7.5067945,0,17,-8,-49.82029,0,3,3,2021,5,0,32,32,1,0,0,7.4424353,7.4424353,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.63,51.86,53,46.42,10,2,3,0,0,11,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3982,4876,8626,8629,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.7431593,8.2979088,0,17,1,28.7188,0,3,2,2021,5,2,63,47,1,2,0,9.2803812,9.2803812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.4,55.66,48.55,45.7,10,2,3,0,0,13,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8627,-9,8629,8626,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0873,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8628,-9,8629,8626,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0364,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8629,8626,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,9.0511227,8.6761742,0,17,-1,43.995861,0,3,2,2021,13,1,40,55,1,1,0,19.999701,19.999701,.05,.05,0,0,0,0,0,0,1,1,0,3.7201376,0,48.55,45.7,40.4,55.66,1.666666666666667,2,3,0,0,13,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3983,4877,8630,8631,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,7,-8,-19.975525,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,39.26,57.46,5,1,1,1,0,4,2,2,1,328,88192.039,0,99333.844,0,0,0,1590.0269 +3983,4877,8631,8630,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.1092472,3.9443479,7,8,161.99033,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0654335,39.26,57.46,51.81,57.22,6.666666666666667,1,1,0,0,1,2,2,1,328,88192.039,0,99333.844,0,0,0,1590.0269 +3984,4878,8632,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.2113256,8.7586107,0,0,0,-1011.0168,0,2,3,2021,10,0,37,35,1,0,0,11.272933,11.272933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.58,63.43,-9,-9,10,1,1,0,0,11,4,4,1,561,246067.81,78498.805,129079.02,51747.84,12288.488,3864.4734,1386.6199 +3985,4879,8633,8636,-9,-9,1,0,31,0,4,0,2,2,-9,0,4,7.4215984,7.0166798,0,9,1,-66.624046,0,2,2,2021,6,0,1,0,1,0,0,140.9248,140.9248,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,53,45.74,8.333333333333334,1,1,0,0,7,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8634,-9,8633,8636,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.59375,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8635,-9,8633,8636,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.7896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8636,8633,-9,-9,1,1,30,0,4,0,2,2,-9,0,3,8.1022625,8.2126102,0,9,-1,46.397831,0,2,2,2021,12,1,60,85,1,1,0,8.0015297,8.0015297,.05,.05,0,0,0,0,0,0,1,1,0,2.4549587,0,53,45.74,54.74,57.22,6.666666666666667,1,1,0,0,11,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8637,-9,8633,8636,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.1984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8638,-9,8633,8636,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.2317,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3986,4880,8639,-9,8641,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3006,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3986,4880,8640,-9,8641,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.6478,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,4,2,-9,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3986,4880,8641,-9,-9,-9,1,0,51,0,2,0,2,2,-9,1,1,0,0,0,0,0,-851.77667,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,43.34,48.04,-9,-9,8.333333333333334,2,3,1,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3987,4881,8642,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1075.3585,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,13.886162,30.43051,136.18462,0,1,1,0,0,0,63.72,16.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,513,263504.81,0,115281.8,0,0,0,1236.5428 +3988,4882,8643,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6351614,8.86689,0,0,0,-1024.8438,0,2,2,2021,5,0,37,37,1,0,0,18.162287,18.162287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,501,178229.75,-31385.148,181176.97,124592.53,6142.981,0,2135.2742 +3989,4883,8644,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1496754,8.1332197,0,0,-1004.213,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.4884186,8.376997,53,47,-9,-9,8,1,1,0,0,7,4,4,1,2152,931759.31,455130.38,159144.75,0,0,0,1682.4852 +3990,4884,8645,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.8748438,3.9386232,0,0,-1093.2528,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9657581,3.7262876,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,223,33432.105,48253.617,17092.33,0,0,12705.617,846.65045 +3991,4885,8646,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.7622671,8.0287619,0,0,0,-969.06293,0,2,2,2021,8,0,3,0,1,0,0,86.51812,86.51812,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.05,54.52,-9,-9,8.333333333333334,4,2,0,0,7,7,3,0,75,520860.81,67567.867,320849.66,71976.109,0,0,910.50116 +3991,4886,8647,-9,8646,-9,1,0,41,0,0,0,1,1,-9,0,5,4.865726,4.6268616,0,0,0,-1058.4863,0,2,-9,2021,6,0,16,-9,1,0,1,.80258989,.80258989,0,0,0,0,0,0,0,0,1,0,1,0,0,65.12,43.07,-9,-9,5,3,4,0,0,7,7,2,0,355,765304.69,152136.66,436967.59,0,0,0,-235.18745 +3992,4887,8648,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3249931,8.4880991,0,0,0,-1012.0192,0,2,2,2021,13,1,40,42,1,1,0,13.707267,13.707267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.38,56.21,-9,-9,1.666666666666667,1,1,0,0,10,1,4,1,416,29480.945,208890.48,61388.828,54150.832,1520.1229,0,910.82874 +3993,4888,8649,-9,8650,8652,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1100.6226,-9,3,2,2021,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,-9,-9,3.333333333333333,2,3,0,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8650,8652,-9,-9,1,0,48,0,2,0,3,3,-9,1,2,0,0,0,28,-3,0,0,3,3,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.56,29.38,42.93,36.83,0,2,3,0,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8651,-9,8650,8652,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-802.81104,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8652,8650,-9,-9,1,1,51,0,2,0,2,2,-9,1,4,0,0,0,28,3,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.93,36.83,44.56,29.38,1.666666666666667,2,3,1,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4889,8653,-9,8650,8652,1,0,21,0,2,0,2,2,-9,0,4,7.1457644,6.8151431,0,0,0,-954.01599,0,3,2,2021,4,0,15,43,1,0,1,6.6638794,6.6638794,0,0,0,0,0,0,0,7,1,1,0,0,0,47.93,60.55,-9,-9,10,2,3,0,1,5,1,2,1,425,12904.369,0,0,0,-970.61108,0,653.93011 +3994,4890,8654,8655,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,7.3046603,7.847178,6.789557,10,18,-86.694702,0,3,3,2021,12,0,25,23,1,0,0,7.5716639,7.5716639,0,0,0,0,0,0,0,0,1,1,0,7.560986,6.6076436,40.49,39.72,56.94,49.53,6.666666666666667,1,1,0,0,12,7,4,0,433,3019867,589778.25,2318615.5,91706.828,0,0,3318.5703 +3994,4890,8655,8654,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.957118,7.6564789,0,10,-18,-61.97567,0,3,3,2021,7,0,37,38,1,0,0,8.3828764,8.3828764,0,0,0,0,0,0,0,0,1,1,0,.73240477,0,56.94,49.53,40.49,39.72,8.333333333333334,1,1,0,0,12,7,4,0,433,3019867,589778.25,2318615.5,91706.828,0,0,3318.5703 +3995,4891,8656,-9,8657,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1002,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3995,4891,8657,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,0,0,-965.8963,0,3,2,2021,4,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,1,0,8,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3995,4891,8658,-9,8657,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.705,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3996,4892,8659,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.0885901,7.0012693,0,0,-1003.5459,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1764822,7.1251793,33.33,30.73,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,2879,480634.31,339067.75,121493.44,0,0,0,2215.9231 +3997,4893,8660,-9,8661,8662,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7365,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3997,4893,8661,8662,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,20,-12,-42.635151,0,3,1,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2038908,0,44.87,52.2,48.54,46.62,6.666666666666667,2,3,0,0,0,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3997,4893,8662,8661,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.529851,7.8097491,0,20,12,-66.684784,0,3,2,2021,16,4,40,40,1,4,0,4.5948315,4.5948315,0,0,0,0,0,0,0,14.5,1,1,0,6.6830263,0,48.54,46.62,44.87,52.2,5,2,3,0,0,12,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3998,4894,8663,8664,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,36,2,4.4963627,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,54.79,55.86,0,1,1,0,0,0,8,2,1,531.5,401935.44,355346.56,153222.22,0,0,0,1293.8816 +3998,4894,8664,8663,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.8701763,7.1874256,38,-2,64.798012,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8165412,54.79,55.86,63.41,39.7,8.333333333333334,1,1,0,0,0,8,2,1,531.5,401935.44,355346.56,153222.22,0,0,0,1293.8816 +3999,4895,8665,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.4163895,7.2801495,0,0,-863.63611,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8280506,7.3364072,55.12,42.1,-9,-9,5,1,1,0,0,0,12,3,1,997,318722.25,104971.22,264324.69,26030.254,0,2682.2632,1730.559 +4000,4896,8666,8667,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.4903607,6.2066565,7,11,-78.982002,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2580514,6.4571185,64.47,51.45,54.2,57.49,10,1,1,0,0,7,10,2,1,716,387128.56,112067.67,167014.52,0,0,0,2158.2888 +4000,4896,8667,8666,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.7534208,6.288609,7,-11,107.26868,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6953533,5.6847305,54.2,57.49,64.47,51.45,8.333333333333334,1,1,0,0,0,10,2,1,716,387128.56,112067.67,167014.52,0,0,0,2158.2888 +4001,4897,8668,-9,8671,8670,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.48944,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8669,-9,8671,8670,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.4101,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8670,8671,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.391469,8.19559,0,8,6,23.24099,-9,-9,-9,2021,12,0,37,0,1,0,0,15.115895,15.115895,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.76,54.51,10,1,1,0,0,9,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8671,8670,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6274137,8.6418304,0,8,-6,-99.909607,-9,-9,-9,2021,12,0,70,0,1,0,0,7.4430685,7.4430685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,54.79,55.86,10,1,1,0,0,9,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4002,4898,8672,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-874.39447,0,2,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,40.38,31.72,-9,-9,5,1,1,0,0,0,1,1,0,910,0,0,0,0,0,0,2015.2233 +4003,4899,8673,8674,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,12,-5,-40.527367,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.04,40.62,41.12,43.31,8.333333333333334,1,1,0,0,0,9,2,1,459.5,456629.66,252137.52,216546.94,0,0,0,1103.7246 +4003,4899,8674,8673,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.0433235,5.5230803,12,5,-12.209935,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0039821,41.12,43.31,47.04,40.62,6.666666666666667,1,1,0,0,0,9,2,1,459.5,456629.66,252137.52,216546.94,0,0,0,1103.7246 +4004,4900,8675,8676,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,11,-6,-4.8634973,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,62.49,55.09,8.333333333333334,1,1,0,0,1,13,2,1,632,241067.36,129931.5,198249.91,0,0,0,1860.8894 +4004,4900,8676,8675,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.34304,6.1386466,11,6,173.29185,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2934427,62.49,55.09,53,52,10,1,1,0,0,0,13,2,1,632,241067.36,129931.5,198249.91,0,0,0,1860.8894 +4005,4901,8677,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.3591328,4.1208534,0,0,-918.43909,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.161912,46.96,45.96,-9,-9,5,1,1,0,0,5,12,2,1,909,96187.289,100144.59,0,0,0,0,887.32965 +4006,4902,8678,8679,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3049345,8.2781935,0,2,0,1.2526597,0,-9,-9,2021,14,2,40,42,1,2,0,12.770371,12.770371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49.02,47.84,6.666666666666667,1,1,0,0,12,7,5,1,1533,365144.94,285317.84,300799.19,142696.45,0,951.42938,3983.8467 +4006,4902,8679,8678,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.5812454,8.9885006,0,2,0,26.410259,0,2,-9,2021,12,1,47,23,1,1,0,13.112491,13.112491,0,0,0,0,0,0,0,0,0,0,0,1.3517423,0,49.02,47.84,48.87,58.55,8.333333333333334,1,1,0,0,13,7,5,1,1533,365144.94,285317.84,300799.19,142696.45,0,951.42938,3983.8467 +4007,4903,8680,-9,8681,8684,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.9794,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8681,8684,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,9.1987619,9.1299438,0,23,-3,74.375275,0,3,2,2021,11,1,38,40,1,1,0,30.216377,30.216377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,44.56,59.1,8.333333333333334,1,1,0,1,10,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8682,-9,8681,8684,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.55951,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8683,-9,8681,8684,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1030.8647,-9,1,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,62.33,-9,-9,10,1,1,0,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8684,8681,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.1142387,9.0138311,0,16,3,-5.3752575,0,2,1,2021,1,0,40,45,1,0,0,25.509371,25.509371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.56,59.1,49.04,55.86,6.666666666666667,1,1,0,1,9,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4008,4904,8685,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,6.3868833,6.3022137,0,0,0,-1039.3361,0,3,3,2021,6,0,60,51,1,0,0,1.0665941,1.0665941,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,743,0,0,0,0,0,0,506.02692 +4009,4905,8686,8687,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,3.6997788,3.8544979,10,3,-25.939653,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.31499,4.0196114,58.39,20.6,50.88,34.69,6.666666666666667,2,3,0,0,0,8,3,1,747.5,1086902.1,438207,365050.81,0,0,0,4838.5615 +4009,4905,8687,8686,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8774815,7.9579487,41,-3,128.15117,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2918873,7.7226658,50.88,34.69,58.39,20.6,8.333333333333334,2,3,0,0,0,8,3,1,747.5,1086902.1,438207,365050.81,0,0,0,4838.5615 +4010,4906,8688,8689,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.0608168,8.0587263,0,28,0,53.447582,0,2,2,2021,11,0,32,30,1,0,0,7.3112645,7.3112645,0,0,0,0,0,0,0,0,1,1,0,0,0,55.11,47.63,53,54,8.333333333333334,1,1,0,0,8,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4010,4906,8689,8688,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.6623688,8.2854681,0,6,0,78.546158,-9,-9,-9,2021,9,0,40,0,1,1,0,17.729185,17.729185,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,55.11,47.63,8,1,1,0,0,1,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4010,4906,8690,-9,8688,8689,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-947.51184,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,44.4,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4011,4907,8691,-9,8692,8693,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-926.05579,-9,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.21168678,0,45,59,-9,-9,7,1,1,0,0,0,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8692,8693,-9,-9,1,0,57,0,1,0,3,3,-9,0,4,0,0,0,18,2,60.091141,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,49,49,6.666666666666667,1,1,0,0,5,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8693,8692,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,5.7116976,5.895627,0,18,-2,-55.627411,0,2,-9,2021,11,0,40,40,1,1,0,.7139926,.7139926,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,52.82,53.97,7,1,1,0,0,1,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8694,-9,8692,8693,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-999.07098,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4012,4908,8695,-9,8696,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.347,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,1,835.5,0,0,0,0,0,0,1421.3076 +4012,4908,8696,-9,8697,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,0,0,-943.31311,-9,2,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8274693,0,31.46,57.32,-9,-9,5,1,1,0,0,8,7,1,1,835.5,0,0,0,0,0,0,1421.3076 +4012,4909,8697,-9,-9,-9,1,0,69,1,1,0,2,2,-9,0,3,0,6.1122708,6.5028768,0,0,-1075.8159,-9,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1110415,6.1547813,41.12,44.77,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,966,183756.33,276303.34,0,0,0,0,974.08881 +4013,4910,8698,8699,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,17,1,-41.909527,0,2,1,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.23,51.58,6.666666666666667,2,3,1,0,6,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8699,8698,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1574249,8.874588,0,17,-1,74.843979,0,2,2,2021,4,0,40,35,1,0,0,28.31587,28.31587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.23,51.58,62.49,55.09,10,2,3,0,0,11,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8700,-9,8698,8699,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.9785,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8701,-9,8698,8699,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.2883,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4014,4911,8702,-9,8703,8704,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.91022,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8703,8704,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,7.4179296,7.2386003,0,19,0,-24.268946,0,1,2,2021,19,7,26,26,1,7,0,8.2187538,8.2187538,0,0,.05,0,0,0,0,0,0,0,0,2.1949539,0,34.49,56.9,33.2,63.27,3.333333333333333,1,1,0,0,4,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8704,8703,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.9422321,9.7397881,0,21,0,-15.01191,0,2,2,2021,16,4,65,60,1,4,0,32.610603,32.610603,0,0,.05,0,0,0,0,0,0,0,0,4.3807411,0,33.2,63.27,34.49,56.9,1.666666666666667,1,1,0,0,9,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8705,-9,8703,8704,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.83118,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8706,-9,8703,8704,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-983.04169,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4015,4912,8707,8708,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.7785349,8.8231707,0,12,2,-197.09991,-9,-9,-9,2021,9,0,30,0,1,0,0,39.141739,39.141739,0,0,0,0,0,0,0,0,0,0,0,6.7439308,0,58.14,47.51,57.09,46.7,8.333333333333334,1,1,0,0,13,11,5,1,1051.5,2107397.5,529004,635684.5,0,0,0,4220.2441 +4015,4912,8708,8707,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.9019279,6.7536802,40,-2,67.407745,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.384078,6.5186338,57.09,46.7,58.14,47.51,10,1,1,0,0,3,11,5,1,1051.5,2107397.5,529004,635684.5,0,0,0,4220.2441 +4016,4913,8709,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3916731,7.4503293,0,0,0,-1023.6696,0,-9,-9,2021,5,0,25,25,1,0,0,8.4098196,8.4098196,0,0,0,0,0,0,0,2,0,0,0,1.8008019,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,271,700116.19,73753.375,263348.5,16566.818,0,0,642.26337 +4017,4914,8710,8711,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,6.3418469,6.4944844,41,-7,65.832863,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1954665,57.06,57.76,64.15000000000001,19.33,10,1,1,0,0,0,7,2,1,652,671305.88,332968.94,126283.75,0,0,0,2262.2729 +4017,4914,8711,8710,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.0058813,5.5900483,41,7,-68.96225,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,10.969374,0,0,1,1,0,5.6660266,5.9826689,64.15000000000001,19.33,57.06,57.76,1.666666666666667,1,1,0,0,0,7,2,1,652,671305.88,332968.94,126283.75,0,0,0,2262.2729 +4018,4915,8712,8713,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,10,2,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.92,44.62,50,47,8.333333333333334,1,1,0,0,0,13,1,1,917.5,532832.25,0,418517.94,0,0,0,1463.1472 +4018,4915,8713,8712,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,49.92,44.62,7,1,1,0,0,1,13,1,1,917.5,532832.25,0,418517.94,0,0,0,1463.1472 +4019,4916,8714,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.1540804,7.487977,0,0,-1117.7285,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,9.0137472,0,0,1,1,0,6.8548703,7.2067142,50.72,46.82,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,551,482923.28,84140.328,231808.05,0,0,0,2044.8156 +4020,4917,8715,8716,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.0202675,7.8697462,0,6,0,32.870049,0,2,2,2021,9,0,38,37,1,0,0,7.8920522,7.8920522,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.18,55.31,5,1,1,0,0,8,2,4,0,1540,-4297.4297,-11998.447,144474.69,95588.234,9403.1992,0,2564.7253 +4020,4917,8716,8715,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0950108,8.0958681,0,6,0,-26.31131,0,-9,-9,2021,12,0,45,32,1,0,0,7.6254897,7.6254897,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.18,55.31,52,54.51,3.333333333333333,1,1,0,0,6,2,4,0,1540,-4297.4297,-11998.447,144474.69,95588.234,9403.1992,0,2564.7253 +4021,4918,8717,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0165601,6.0545487,0,0,-1088.6013,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,12.381241,0,0,1,1,0,0,6.2855353,52.08,51.67,-9,-9,10,1,1,0,0,0,12,2,1,166,357694.44,-110514.11,119696.46,0,0,0,1150.0406 +4022,4919,8718,-9,8720,8719,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-906.77844,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4919,8719,8720,-9,-9,1,1,54,0,1,0,3,3,-9,0,4,8.0839949,8.1848764,0,29,2,109.5777,0,3,3,2021,10,0,43,42,1,0,0,8.2591248,8.2591248,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,41.29,56.37,6.666666666666667,1,1,0,0,10,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4919,8720,8719,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.7837315,8.0393648,0,29,-2,-41.286385,0,3,3,2021,15,3,42,48,1,3,0,5.3284469,5.3284469,.05,.05,0,0,0,0,0,42,1,1,0,0,0,41.29,56.37,57.16,56.15,6.666666666666667,1,1,0,0,10,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4920,8721,-9,8720,8719,1,1,25,0,1,0,2,2,-9,1,3,8.3717327,8.271884,0,0,0,-881.69043,0,2,3,2021,6,0,40,36,1,0,1,9.0887527,9.0887527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,10,13,4,1,1280,61343.527,33775.875,0,0,0,0,1578.4445 +4022,4921,8722,-9,8720,8719,1,1,23,0,1,0,2,2,-9,0,4,7.941834,7.9478006,0,0,0,-999.08405,0,2,3,2021,5,0,46,55,1,0,1,6.2753367,6.2753367,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,737,64524.762,0,0,0,0,0,438.69046 +4022,4922,8723,-9,8720,8719,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1042.3943,-9,2,3,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.76,55.68,-9,-9,3.333333333333333,1,1,0,0,3,13,1,1,312,18328.434,0,0,0,0,1856.8657,275.07697 +4023,4923,8724,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.4155,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,6,1,0,785,33503,0,0,0,-2386.9487,0,1121.4127 +4024,4924,8725,8726,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0273123,7.7941227,0,24,6,-87.174675,0,2,2,2021,13,1,28,20,1,1,0,15.872417,15.872417,0,0,0,0,0,0,0,0,0,0,0,0,0,48.79,51.9,51.53,57.01,8.333333333333334,3,4,0,0,11,8,5,0,495,2875446.3,1650819.5,1216377.9,0,0,0,3233.6177 +4024,4924,8726,8725,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3171329,8.4493694,0,23,-6,55.15229,0,3,2,2021,7,1,38,38,1,1,0,12.615767,12.615767,0,0,0,0,0,0,0,0,0,0,0,0,0,51.53,57.01,48.79,51.9,10,3,4,0,0,11,8,5,0,495,2875446.3,1650819.5,1216377.9,0,0,0,3233.6177 +4025,4925,8727,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,5.5187135,5.8237085,3.1088862,0,0,-998.16479,0,2,2,2021,18,4,18,16,1,4,0,1.7387232,1.7387232,0,0,0,0,0,0,0,0,1,1,0,3.6663358,0,43.02,57.64,-9,-9,8.333333333333334,1,1,0,0,5,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8728,-9,8727,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1000.3878,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,50.48,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8729,-9,8727,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8730,-9,8727,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.50641,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4026,4926,8731,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1016.1584,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,2,3,0,0,0,8,1,0,1261,-36401.668,0,0,0,0,0,1589.0254 +4026,4927,8732,-9,8731,-9,1,0,21,0,0,1,2,0,0,1,5,0,0,0,0,0,-950.37079,-9,3,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,43.44,61.22,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,1070,37456.023,0,0,0,0,0,209.12105 +4027,4928,8733,8734,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.8976259,8.2905073,35,6,-62.813927,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.6538076,8.0441656,57.16,56.15,63.48,51.85,8.333333333333334,1,1,0,0,1,9,3,1,2485,1026785.1,734067,287392.44,0,0,0,1187.7439 +4027,4928,8734,8733,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,35,-6,60.05056,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.2348275,0,63.48,51.85,57.16,56.15,10,1,1,0,0,0,9,3,1,2485,1026785.1,734067,287392.44,0,0,0,1187.7439 +4028,4929,8735,8736,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.7710681,8.0340614,0,7,-8,49.530285,0,-9,-9,2021,9,0,46,50,1,0,0,7.4713397,7.4713397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,53.51,60.74,6.666666666666667,1,1,0,0,8,6,4,0,733.5,87629.375,-16638.02,0,0,0,0,2018.8242 +4028,4929,8736,8735,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8135972,7.5233335,0,7,8,20.003366,0,2,2,2021,12,3,40,47,1,3,0,5.7966781,5.7966781,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,44.19,58.01,10,1,1,0,0,8,6,4,0,733.5,87629.375,-16638.02,0,0,0,0,2018.8242 +4029,4930,8737,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6322861,9.0438185,7.7045135,0,0,-999.64886,0,2,2,2021,8,0,55,53,1,0,0,17.293833,17.293833,.05,.05,0,0,0,0,0,0,1,1,0,8.4888783,0,51.38,54.63,-9,-9,6.666666666666667,4,5,0,0,10,2,5,1,663,1889147.3,1217677.8,385942,0,7598.6519,0,4905.728 +4029,4931,8738,-9,8737,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-889.66174,-9,1,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,739,-48870.496,0,0,0,0,0,1.7042428 +4030,4932,8739,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,6.6685882,6.5045662,0,0,0,-920.85028,0,2,2,2021,33,12,8,9,1,12,0,10.648999,10.648999,0,0,0,0,0,0,0,7,1,1,0,0,0,32.98,34.86,-9,-9,0,1,1,0,0,12,1,2,1,523,-129899.23,0,0,0,0,0,539.41736 +4031,4933,8740,8741,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,6,4,-128.82715,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,53.28,44.34,7,3,4,0,0,0,8,2,1,483.5,865531.38,325962.63,380640.03,0,0,0,2425.2458 +4031,4933,8741,8740,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.3445454,7.1116862,35,-4,-76.017212,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0456328,7.6385002,53.28,44.34,53,47,8.333333333333334,3,4,0,0,4,8,2,1,483.5,865531.38,325962.63,380640.03,0,0,0,2425.2458 +4032,4934,8742,8743,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.795085,5.8499169,51,0,15.011689,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4308228,5.7088442,44.8,39.42,59.31,49.81,1.666666666666667,1,1,0,0,3,8,2,1,278.5,444725.88,125275.85,198512.88,0,0,1092.3663,1902.4611 +4032,4934,8743,8742,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8985152,6.7569466,51,0,75.706757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2325759,59.31,49.81,44.8,39.42,6.666666666666667,1,1,0,0,7,8,2,1,278.5,444725.88,125275.85,198512.88,0,0,1092.3663,1902.4611 +4033,4935,8744,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.2472453,6.8477368,0,0,-1165.9188,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7127628,36.37,40.24,-9,-9,5,1,1,0,0,7,1,2,1,1940,291754.22,322228.25,64266.883,0,0,0,1253.9269 +4034,4936,8745,8746,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,53,0,-140.52628,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,36.72,31.97,61.01,15.83,6.666666666666667,1,1,0,0,0,2,2,1,1272,111250.22,0,0,0,0,0,1733.4147 +4034,4936,8746,8745,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,4.949347,4.9826188,53,0,-48.592949,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,21.685955,0,14.5,1,1,0,3.7127392,4.6896119,61.01,15.83,36.72,31.97,8.333333333333334,1,1,0,0,6,2,2,1,1272,111250.22,0,0,0,0,0,1733.4147 +4035,4937,8747,-9,8750,8748,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1139.9504,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1006505,0,52.21,59.91,-9,-9,10,1,1,0,0,0,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8748,8750,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.1341505,9.4383202,7.6998525,8,0,-63.587082,0,2,1,2021,18,6,40,45,1,6,0,39.39851,39.39851,.05,.05,0,0,0,0,0,0,1,1,0,8.2014093,0,34.11,61.28,54.18,49.48,6.666666666666667,1,1,0,0,9,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8749,-9,8750,8748,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-913.00812,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8750,8748,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.4341254,7.4496374,0,8,0,-58.129627,0,2,1,2021,9,0,4,3,1,0,0,47.289463,47.289463,.05,.05,0,0,0,0,0,0,1,1,0,.80782634,0,54.18,49.48,34.11,61.28,8.333333333333334,1,1,0,0,8,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4938,8751,-9,8750,8748,1,1,18,0,1,0,2,2,1,0,4,6.5668235,6.4353886,0,0,0,-906.112,-9,2,1,2021,17,5,10,0,1,5,1,8.4904661,8.4904661,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,57.44,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,220,40210.484,0,0,0,0,0,5.5399609 +4036,4939,8752,8753,-9,-9,1,0,61,0,0,0,2,2,-9,1,3,7.4392009,7.4853611,0,32,7,.16188255,0,3,3,2021,6,0,30,30,1,0,0,6.1579471,6.1579471,0,0,0,0,0,0,0,14.5,1,1,0,2.9683561,0,60.29,52.11,38.76,37.49,10,1,1,0,0,14,13,2,1,404,277470.53,114204.06,209481.34,140227.88,0,0,1571.9658 +4036,4939,8753,8752,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,32,-7,-178.76137,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,37.49,60.29,52.11,1.666666666666667,1,1,0,0,0,13,2,1,404,277470.53,114204.06,209481.34,140227.88,0,0,1571.9658 +4036,4940,8754,-9,8752,8753,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1076.2899,-9,2,2,2021,14,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9450936,0,30.54,64.5,-9,-9,5,1,1,0,0,3,13,2,1,972,-34215.977,0,0,0,0,0,1026.0621 +4037,4941,8755,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.4712043,7.4444938,0,0,0,-1061.155,-9,2,2,2021,10,1,30,0,1,1,0,6.7961497,6.7961497,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,15,5,3,1,226,-33188.359,0,0,0,0,0,1564.1042 +4037,4941,8756,-9,8755,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.52094,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,226,-33188.359,0,0,0,0,0,1564.1042 +4038,4942,8757,8758,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.7617893,9.9906445,0,29,1,-37.926929,0,2,2,2021,12,0,41,44,1,0,0,41.570023,41.570023,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.18,61.8,8.333333333333334,1,1,0,0,12,6,5,1,1449.5,794928.63,144635.44,522350.56,116319.26,0,0,5419.2842 +4038,4942,8758,8757,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,0,0,0,29,-1,1.6549591,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1168895,0,48.18,61.8,48.81,59.91,8.333333333333334,1,1,0,0,11,6,5,1,1449.5,794928.63,144635.44,522350.56,116319.26,0,0,5419.2842 +4039,4943,8759,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,6.8764892,6.7633281,0,0,-921.46088,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,7.0792317,0,65.840225,0,1,1,0,3.7835686,6.6492991,41.94,16.49,-9,-9,5,1,1,0,0,0,6,2,1,1824,304341.13,-51972.281,46850.289,0,0,0,946.24945 +4040,4944,8760,-9,8762,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-898.23798,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8761,-9,8762,-9,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1062.733,-9,1,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,10,3,4,0,1,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8762,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.5273752,8.6756067,0,0,0,-1047.5023,0,2,2,2021,8,1,37,37,1,1,0,19.053495,19.053495,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.77,60.16,-9,-9,8.333333333333334,4,2,0,0,10,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8763,-9,8762,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.8537,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4041,4945,8764,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.4257965,4.7268829,0,0,-1144.4491,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2679747,4.6254349,60.29,52.11,-9,-9,10,1,1,0,0,0,5,2,1,361,14344.638,-6713.2573,0,0,0,0,921.00366 +4042,4946,8765,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.1331491,7.9746666,0,0,0,-864.39972,0,2,2,2021,12,0,52,52,1,0,0,8.1155519,8.1155519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,35.14,-9,-9,5,1,1,0,0,10,6,4,0,445,319222.75,286777.97,128576.8,84011.5,0,0,1365.6343 +4043,4947,8766,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.3747616,8.2300014,0,0,0,-1116.976,0,2,2,2021,18,7,20,20,1,7,0,23.577162,23.577162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.91,36.56,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,5346,223587.83,-39049.645,0,0,16936.492,0,2522.9727 +4044,4948,8767,8769,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,3,-3,-1.267453,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,54.61,51.04,10,1,1,0,0,0,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4044,4948,8768,-9,8767,8769,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.2815,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4044,4948,8769,8767,-9,-9,1,1,28,0,1,0,2,2,-9,0,2,9.226696,9.1924658,0,3,3,106.93169,0,2,2,2021,10,1,58,78,1,1,0,20.810652,20.810652,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,49.71,55.64,8.333333333333334,1,1,0,0,9,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4045,4949,8770,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.6515341,8.2874117,0,0,0,-1021.6624,0,-9,-9,2021,8,0,52,44,1,0,0,11.120085,11.120085,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,2662,-208711.19,-104527.17,0,0,0,0,1925.8175 +4046,4950,8771,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.4281645,8.5812855,7.1463423,0,0,-1027.5059,0,2,3,2021,11,0,45,50,1,0,0,12.870518,12.870518,.05,.05,0,0,0,0,0,0,1,1,0,7.5116496,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4950,8772,-9,8771,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.4507,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4950,8773,-9,8771,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1003.4077,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86417139,0,45,59,-9,-9,7,1,1,0,0,0,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4951,8774,-9,8771,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1049.9385,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7423425,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,1124,0,0,0,0,0,0,-460.75101 +4047,4952,8775,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.2887893,5.830565,0,0,-868.06659,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.227706,66.13,7.66,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1602,221919.5,154013.19,141674.06,44833.77,6699.7959,0,834.93274 +4048,4953,8776,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.0985737,8.4587507,0,0,0,-991.4209,0,2,2,2021,12,3,37,38,1,3,0,12.0807,12.0807,.05,.05,0,0,0,0,0,0,1,1,0,4.842495,0,38.54,49.61,-9,-9,5,1,1,0,1,8,7,4,1,1516,782862.31,148546.47,477615.16,0,0,0,1478.6675 +4049,4954,8777,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.11328,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.7520082,6.6170349,22.78133,0,1,1,0,3.1527965,0,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,4369,29419.418,0,0,0,0,0,1144.9686 +4050,4955,8778,-9,8779,8780,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.608,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4050,4955,8779,8780,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,7.4777575,7.0470119,0,7,-7,-22.006182,0,-9,-9,2021,8,0,17,19,1,0,0,6.7543669,6.7543669,0,0,0,0,0,0,0,0,1,1,0,6.5462394,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4050,4955,8780,8779,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.065753,8.2886019,0,7,7,16.081739,0,2,3,2021,8,0,40,44,1,0,0,11.548809,11.548809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4051,4956,8781,8782,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,5.1576843,8.9887648,8.9934483,20,-4,-97.253113,0,2,3,2021,7,0,10,30,1,0,0,1.8931614,1.8931614,.05,.05,0,0,0,0,0,0,0,0,0,0,9.0961676,52.32,57.18,56.5,48.33,10,1,1,0,0,14,2,5,1,737,1225426,1061689.5,208165.94,0,0,11665.568,7434.5303 +4051,4956,8782,8781,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3102608,8.659255,8.2948322,20,4,-.95576203,0,2,2,2021,9,0,20,35,1,0,0,19.338242,19.338242,.05,.05,0,0,0,0,0,0,0,0,0,0,7.9100089,56.5,48.33,52.32,57.18,8.333333333333334,1,1,0,0,14,2,5,1,737,1225426,1061689.5,208165.94,0,0,11665.568,7434.5303 +4052,4957,8783,-9,8784,8785,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.9803,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8784,8785,-9,-9,1,0,37,1,2,0,1,1,-9,1,3,0,0,0,9,1,-174.58368,0,3,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,2,3,0,0,3,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8785,8784,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,9.2694139,9.4045687,0,9,-1,115.83659,0,2,1,2021,10,0,45,44,1,1,0,26.049494,26.049494,.05,.05,0,0,0,0,0,0,1,1,0,4.3700228,0,51,56,57.33,53.46,7,2,3,0,0,1,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8786,-9,8784,8785,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.06555,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4053,4958,8787,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.9964318,8.1151915,0,0,0,-1072.3611,0,-9,-9,2021,22,10,38,37,1,10,0,8.2213564,8.2213564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.29,61.29,-9,-9,6.666666666666667,1,1,0,0,11,11,4,0,1269,-79494.813,-41083.035,0,0,1912.1447,0,1728.7311 +4054,4959,8788,-9,8790,8789,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1229.8898,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3942103,0,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4054,4959,8789,8790,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.6266479,9.0595675,0,19,4,81.691025,0,-9,-9,2021,6,0,35,38,1,0,0,21.668365,21.668365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.91,23.24,42.07,56.45,8.333333333333334,1,1,0,0,11,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4054,4959,8790,8789,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.2001581,8.0267115,0,19,-4,-9.000309,0,2,2,2021,10,0,30,40,1,0,0,14.485959,14.485959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.07,56.45,57.91,23.24,6.666666666666667,1,1,0,0,8,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4055,4960,8791,8792,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,8.0895023,7.8005404,0,2,4,13.648242,-9,2,2,2021,12,0,25,0,1,0,0,10.012277,10.012277,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,59.79,62.39,56.71,6.666666666666667,1,1,0,0,9,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4960,8792,8791,-9,-9,1,1,32,1,1,0,2,2,-9,0,5,.33319107,.3214871,0,2,-4,18.742849,-9,-9,-9,2021,6,0,40,0,1,0,0,.0019762146,.0019762146,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,43.92,59.79,10,1,1,0,0,4,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4960,8793,-9,8791,8792,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.1116,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4961,8794,-9,8791,8792,1,0,19,1,1,0,3,3,-9,0,5,7.152997,7.3377619,0,0,0,-1045.6522,0,2,2,2021,27,9,43,0,1,9,1,3.5527968,3.5527968,0,0,0,0,0,0,0,0,1,1,0,0,0,10.91,61.49,-9,-9,5,1,1,0,0,1,7,3,1,1100,36184.32,0,0,0,0,940.01849,-366.98773 +4056,4962,8795,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,0,0,0,0,0,-922.14972,0,3,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,44.04,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,1227,31589.25,0,0,0,0,0,706.88483 +4056,4963,8796,-9,8795,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1099.2341,-9,3,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,4,1,0,1480,0,0,0,0,0,0,0 +4056,4964,8797,-9,8795,-9,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1109.8801,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,4,1,0,2214,-91855.313,0,0,0,0,0,0 +4057,4965,8798,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.5697308,7.4541612,5.5080462,0,0,-947.67554,0,1,1,2021,11,0,40,40,1,0,0,4.7590299,4.7590299,0,0,.05,0,0,0,0,0,0,0,0,5.7759991,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,184,220641.19,58588.172,647922.56,384643.72,0,0,889.03412 +4058,4966,8799,8800,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3141532,7.5853581,0,7,-1,10.427898,0,2,2,2021,12,0,18,21,1,0,0,10.62363,10.62363,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,51,56,8.333333333333334,1,1,0,0,4,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8800,8799,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6979179,8.7672863,0,7,1,-97.566612,0,-9,-9,2021,10,0,40,45,1,1,0,14.149208,14.149208,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,48.76,53.24,7,1,1,0,0,1,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8801,-9,8799,8800,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.77435,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8802,-9,8799,8800,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.9513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4059,4967,8803,-9,8804,8805,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-936.37054,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4059,4967,8804,8805,-9,-9,1,0,28,1,1,0,2,2,-9,0,5,7.760478,7.9108324,0,5,-10,86.704636,0,-9,-9,2021,8,0,41,41,1,0,0,6.4801106,6.4801106,0,0,0,0,0,0,0,0,1,1,0,2.3742068,0,57.06,57.76,54.96,53.17,10,1,1,0,0,9,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4059,4967,8805,8804,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.7076197,8.9764481,0,5,10,-109.37598,0,2,2,2021,9,0,42,40,1,0,0,16.848227,16.848227,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4060,4968,8806,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1029.6437,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.46,25.71,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,769,48042.754,0,248683.27,0,0,0,1238.2804 +4060,4969,8807,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9867611,7.8263454,0,0,0,-943.61884,0,-9,-9,2021,14,2,39,36,1,2,0,6.7882252,6.7882252,0,0,0,0,0,0,0,2,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,573,111949.67,-18964.633,0,0,0,0,749.33228 +4061,4970,8808,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.0385499,5.5774465,0,0,-1015.5101,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2521749,5.9645314,43.66,45.93,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,674,74097.227,-30376.064,0,0,1641.0303,0,1110.5803 +4062,4971,8809,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,7.9229045,7.7547574,0,0,0,-988.92139,0,3,2,2021,3,0,28,22,1,0,0,13.444613,13.444613,0,0,0,0,0,0,0,0,0,0,0,3.1966844,0,53.48,53.71,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,489,455397.22,0,363198.03,0,0,0,982.42365 +4063,4972,8810,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1190.4741,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,3,4,0,1,0,8,1,0,207,-91732.695,0,0,0,0,0,779.51923 +4064,4973,8811,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.4273405,8.3063421,0,0,0,-1011.6016,0,1,2,2021,12,0,30,-9,1,0,0,16.940266,16.940266,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,356,507199.88,-72483.539,0,0,0,0,2178.304 +4065,4974,8812,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,4,7.1997643,7.3162727,0,0,0,-1020.3409,0,3,3,2021,7,0,30,22,1,0,0,4.5954547,4.5954547,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,10,2,2,1,317,-106691.31,-159384.09,0,0,140.07384,0,783.89001 +4066,4975,8813,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,7.6369286,7.6356335,0,0,-931.93695,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,1.596375,4.6173515,19.17856,0,1,1,0,4.2213545,7.5994296,37.26,30.22,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,297,263105.19,-10530.902,98994.633,0,0,0,1881.1577 +4067,4976,8814,-9,8815,8817,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.3906,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8815,8817,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,0,0,0,23,0,130.86244,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,48.85,51.81,8.333333333333334,2,3,0,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8816,-9,8815,8817,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1259,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8817,8815,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.5744514,7.6260419,0,23,9,54.047504,0,2,1,2021,12,2,40,35,1,2,0,6.0002804,6.0002804,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,51.81,52.99,51.28,6.666666666666667,2,3,0,1,7,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4068,4977,8818,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,7.1508431,7.6539798,6.3600512,0,0,-881.38885,0,1,1,2021,13,1,21,18,1,1,0,5.0164561,5.0164561,0,0,0,0,0,0,0,0,1,1,0,6.3701363,0,41.96,42.91,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,1068,-197888.19,0,0,0,0,0,1639.0559 +4069,4978,8819,8822,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,6.9106417,6.8054223,0,7,5,-84.115913,0,-9,2,2021,20,8,11,11,1,8,0,13.498713,13.498713,0,0,0,0,0,0,0,2,1,1,0,0,0,40.58,60.95,46.08,57.2,6.666666666666667,1,1,0,0,6,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8820,-9,8819,8822,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4349,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8821,-9,8819,8822,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.48944,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8822,8819,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.855237,8.8467379,0,7,-5,24.576717,0,2,2,2021,11,1,53,53,1,1,0,19.061253,19.061253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,40.58,60.95,6.666666666666667,1,1,0,0,14,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4070,4979,8823,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1030.8198,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,23.79,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,1218,287223.78,0,0,0,0,0,1573.301 +4071,4980,8824,8825,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.1112833,4.0406079,53,-1,-25.318495,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.466011,4.0665126,44.73,56.4,59.14,52.5,8.333333333333334,1,1,0,0,3,2,4,1,1533,1483387.3,783748.19,358309.81,0,0,0,3765.9722 +4071,4980,8825,8824,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3540516,8.6015434,53,1,81.755409,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4158192,8.1393957,59.14,52.5,44.73,56.4,8.333333333333334,1,1,0,0,0,2,4,1,1533,1483387.3,783748.19,358309.81,0,0,0,3765.9722 +4072,4981,8826,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.0804691,8.1075354,0,0,0,-946.06323,0,2,2,2021,12,0,39,40,1,0,0,10.514114,10.514114,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,10,5,4,1,415,-25063.23,3860.9775,0,0,0,519.37231,1301.3666 +4073,4982,8827,8828,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.5695295,8.9342794,7.0935063,25,6,-26.893881,0,2,2,2021,12,0,36,37,1,0,0,16.958956,16.958956,.05,.05,0,0,0,0,0,0,0,0,0,2.6838949,7.6239271,51.48,48.31,48.22,30.91,5,4,5,0,0,14,2,4,1,1523,1702056.6,1435879,289895.56,29588.371,468.23395,1666.6108,2285.1079 +4073,4982,8828,8827,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,25,-6,14.684902,0,3,3,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.22,30.91,51.48,48.31,8.333333333333334,1,1,1,0,6,2,4,1,1523,1702056.6,1435879,289895.56,29588.371,468.23395,1666.6108,2285.1079 +4074,4983,8829,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,4.7989478,4.7484035,0,0,-929.34821,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7929158,4.5097508,42.73,26.73,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,617,-35425.742,53153.648,0,0,0,0,1845.5458 +4075,4984,8830,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3933201,8.2542734,0,0,0,-1051.0613,0,1,3,2021,13,2,25,50,1,2,0,17.035185,17.035185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,941,-24042.711,82054.18,0,0,-370.6387,1952.9987,1050.9779 +4076,4985,8831,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1060.1556,1,3,2,2021,13,2,0,42,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,10,10,1,0,586,-182168.66,0,0,0,0,0,0 +4077,4986,8832,8833,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.6610885,7.6011834,0,42,1,9.6550388,-9,2,2,2021,8,0,35,0,1,0,0,6.783627,6.783627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,49.24,34.36,8.333333333333334,1,1,0,0,12,2,4,0,672,50387.031,57602.734,136644.88,0,0,7000.46,1651.2938 +4077,4986,8833,8832,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.8261099,7.9494243,0,10,-1,21.06925,-9,-9,-9,2021,13,2,45,0,1,2,0,5.3267012,5.3267012,0,0,0,0,0,0,0,0,0,0,0,0,0,49.24,34.36,55.36,51.57,8.333333333333334,1,1,0,0,12,2,4,0,672,50387.031,57602.734,136644.88,0,0,7000.46,1651.2938 +4078,4987,8834,8835,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,13,-7,43.826054,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.19,54.26,51.24,58.84,8.333333333333334,1,1,0,0,0,4,5,1,1025,1096512,557036.56,489624.13,14948.972,17891.307,0,5234.249 +4078,4987,8835,8834,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,9.0878315,8.9622612,29,7,-38.627937,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.4898949,8.2444725,51.24,58.84,55.19,54.26,8.333333333333334,1,1,0,0,9,4,5,1,1025,1096512,557036.56,489624.13,14948.972,17891.307,0,5234.249 +4079,4988,8836,8837,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,8.5375023,8.4878531,0,3,7,29.921682,0,3,2,2021,10,0,40,40,1,1,0,12.075959,12.075959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49.95,49.92,7,1,1,0,0,1,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8837,8836,-9,-9,1,0,29,0,2,0,3,3,-9,0,3,7.2521358,7.2871122,0,3,-7,-60.989281,0,-9,-9,2021,10,2,26,23,1,2,0,6.0275598,6.0275598,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.95,49.92,50,57,8.333333333333334,1,1,0,0,8,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8838,-9,8837,8836,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.27338,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8839,-9,8837,8836,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1034.3636,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4080,4989,8840,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,5.8320198,6.7766356,5.9129429,0,0,-1024.8867,0,2,2,2021,3,0,7,0,1,0,0,7.4952188,7.4952188,0,0,0,0,0,0,0,0,1,0,1,5.9132628,0,44,44.81,-9,-9,6.666666666666667,1,1,0,0,12,7,2,0,791,0,0,0,0,0,0,-81.671837 +4081,4990,8841,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1032.2684,0,2,3,2021,12,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.6,34.29,-9,-9,6.666666666666667,1,1,0,1,10,2,1,0,252,-111053.06,0,0,0,0,0,465.74774 +4082,4991,8842,8843,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.9575963,6.2628484,48,8,35.654514,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0619912,60.2,45.35,50.65,60.47,10,1,1,0,0,0,6,3,1,352.5,609590.75,202936.47,257377.64,0,0,0,3159.3259 +4082,4991,8843,8842,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,7.5870767,7.9244533,48,-8,35.738235,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8744271,7.6539712,50.65,60.47,60.2,45.35,10,1,1,0,0,0,6,3,1,352.5,609590.75,202936.47,257377.64,0,0,0,3159.3259 +4083,4992,8844,8845,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,9.2367954,8.9770069,6,2,71.379944,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4147635,9.0329781,60.02,56.42,57.06,57.76,10,1,1,0,0,10,9,5,1,747,3340378,2332853.8,567510.75,0,0,0,6042.3008 +4083,4992,8845,8844,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,0,0,26,-2,-131.27298,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6223454,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,11,9,5,1,747,3340378,2332853.8,567510.75,0,0,0,6042.3008 +4084,4993,8846,-9,8848,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7313,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4084,4993,8847,-9,8848,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7621,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,3.4832108,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4084,4993,8848,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,7.521647,7.6089492,0,0,0,-1072.8572,0,3,3,2021,11,0,31,0,1,1,0,10.921332,10.921332,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,1,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4085,4994,8849,8850,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,53,-2,-111.02594,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,57.26,43.95,10,1,1,0,0,0,10,5,1,2997.5,948692.63,482483.38,177037.61,0,0,0,6719.7197 +4085,4994,8850,8849,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.3151464,8.8569651,53,2,-120.06148,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9472957,8.9401207,57.26,43.95,57.73,54.53,8.333333333333334,1,1,0,0,0,10,5,1,2997.5,948692.63,482483.38,177037.61,0,0,0,6719.7197 +4086,4995,8851,8852,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4300642,8.3728123,0,8,0,-14.429695,0,-9,-9,2021,10,0,45,45,1,0,0,7.9155946,7.9155946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.47,50.15,40.52,37.12,6.666666666666667,1,1,0,0,10,12,4,1,794.5,367324.06,55562.313,143409.38,16890.963,0,0,2022.0284 +4086,4995,8852,8851,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7476516,8.1615067,0,8,0,-27.169661,0,3,-9,2021,14,3,30,30,1,3,0,10.567596,10.567596,0,0,0,0,0,0,0,0,0,0,0,0,0,40.52,37.12,43.47,50.15,5,1,1,0,0,9,12,4,1,794.5,367324.06,55562.313,143409.38,16890.963,0,0,2022.0284 +4086,4996,8853,-9,-9,8851,1,1,20,0,0,0,2,2,-9,0,3,7.9699583,8.2824001,0,0,0,-1043.8296,-9,-9,2,2021,7,2,40,0,1,2,1,9.6176424,9.6176424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,10,1,1,0,0,3,12,4,1,440,-75592.766,22624.701,0,0,0,800.84546,549.32324 +4087,4997,8854,8855,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.3331571,6.1852751,10,0,-31.099316,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3173923,6.2353892,43.88,39.51,53.1,40.64,8.333333333333334,1,1,0,0,0,6,2,1,820,666818,56600.18,365860.47,0,0,0,1731.4099 +4087,4997,8855,8854,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.5864997,6.4197574,10,0,-65.925858,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,.13514747,0,0,1,1,0,5.6499133,6.8228822,53.1,40.64,43.88,39.51,8.333333333333334,1,1,0,0,0,6,2,1,820,666818,56600.18,365860.47,0,0,0,1731.4099 +4088,4998,8856,8857,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0444598,6.861649,43,2,-1.1734263,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0240073,43.42,62.33,53.92,52.23,5,1,1,0,0,6,2,3,1,576,1129662.3,764202.44,267681.47,0,-454.80777,0,1719.0341 +4088,4998,8857,8856,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9901557,7.2456846,43,-2,30.85321,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1605244,6.9387469,53.92,52.23,43.42,62.33,5,1,1,0,0,0,2,3,1,576,1129662.3,764202.44,267681.47,0,-454.80777,0,1719.0341 +4089,4999,8858,-9,-9,-9,1,0,68,0,2,0,2,2,-9,0,2,0,7.1678977,7.5380778,0,0,-883.07947,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,1,0,9.2727509,0,0,1,1,0,0,7.1351066,35.88,35.4,-9,-9,5,1,1,0,0,0,12,2,1,1063,132209.89,328542.94,0,0,2864.4788,0,2120.8953 +4089,5000,8859,-9,8862,8860,1,0,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-908.45984,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,0,0,0,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8860,8862,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.2034883,8.3372564,0,3,5,-19.056431,0,2,2,2021,10,0,40,39,1,0,0,13.879909,13.879909,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,50.8,48.58,51.83,57.2,6.666666666666667,1,1,0,0,10,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8861,-9,8862,8860,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-974.42615,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8862,8860,8858,-9,1,0,40,0,2,0,2,2,-9,0,4,8.4989958,8.6629877,0,3,-5,-36.047348,0,2,1,2021,7,0,43,43,1,0,0,14.331929,14.331929,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.8,48.58,6.666666666666667,1,1,0,0,11,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4090,5001,8863,-9,8865,8864,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.20996,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4090,5001,8864,8865,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,8.2284298,8.4688473,0,12,4,28.973034,0,2,3,2021,8,0,38,37,1,0,0,12.816933,12.816933,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.28,55.3,8.333333333333334,1,1,0,0,12,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4090,5001,8865,8864,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.602778,7.6553364,0,12,-4,.75788963,0,2,2,2021,9,1,23,23,1,1,0,11.597281,11.597281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.28,55.3,48.87,58.55,8.333333333333334,1,1,0,0,14,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4091,5002,8866,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.3879509,5.2510853,0,0,-1006.2413,0,3,3,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0943151,49,34,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,955,-227946.67,-65003.336,169828.83,0,0,0,1473.6246 +4092,5003,8867,8868,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.9103565,5.7759809,52,0,120.11153,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6128997,5.2905521,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,3,5,2,1,548.5,142920.36,169177.28,0,0,0,0,1664.5919 +4092,5003,8868,8867,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,0,-67.648529,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.557725,0,57.16,56.15,58.32,50.22,10,1,1,0,0,0,5,2,1,548.5,142920.36,169177.28,0,0,0,0,1664.5919 +4093,5004,8869,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1090.2051,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,43.25,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,1472,-58779.074,0,0,0,0,0,1551.8367 +4094,5005,8870,8871,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0698214,8.3996992,0,31,-5,-95.405991,0,3,3,2021,10,0,30,30,1,0,0,19.285416,19.285416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.22,39.67,58.87,43.06,6.666666666666667,1,1,0,0,14,4,5,1,347.5,1381715.4,1025536.3,244232.75,0,0,461.07706,3678.2063 +4094,5005,8871,8870,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7833929,8.8382034,0,31,5,29.481642,0,2,2,2021,9,0,46,48,1,0,0,19.996996,19.996996,.05,.05,.05,0,0,0,0,0,0,0,0,2.9989705,0,58.87,43.06,54.22,39.67,6.666666666666667,1,1,0,0,14,4,5,1,347.5,1381715.4,1025536.3,244232.75,0,0,461.07706,3678.2063 +4095,5006,8872,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,1,7.2819285,7.2157364,0,0,0,-933.66846,0,-9,-9,2021,15,5,45,60,1,5,0,3.6858623,3.6858623,0,0,0,0,0,0,0,0,1,1,0,1.6699467,0,38.25,47.83,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,519,336946.19,0,92185.625,-7950.1299,0,0,710.39911 +4096,5007,8873,8874,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1191092,7.5764976,0,25,1,-39.892311,0,2,3,2021,12,1,60,60,1,1,0,4.8734574,4.8734574,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.24,58.84,10,1,1,0,0,8,6,3,0,759,689299.13,528503.13,180839.03,0,0,0,1628.478 +4096,5007,8874,8873,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,6.9324594,7.0334902,0,25,-1,10.81404,0,3,3,2021,11,0,20,24,1,0,0,6.0852613,6.0852613,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,62.39,56.71,3.333333333333333,1,1,0,1,9,6,3,0,759,689299.13,528503.13,180839.03,0,0,0,1628.478 +4097,5008,8875,8876,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.5304451,8.4844103,0,4,4,21.105431,0,2,2,2021,6,0,38,40,1,0,0,17.170963,17.170963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.96,49.93,8.333333333333334,1,1,0,0,8,12,5,1,575,598654.88,592891.31,324056.66,225464.66,2333.6094,0,3539.8706 +4097,5008,8876,8875,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.8272495,8.530673,0,4,-4,-96.50779,0,-9,-9,2021,7,0,45,50,1,0,0,10.179032,10.179032,.05,.05,0,0,0,0,0,0,0,0,0,2.6314118,0,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,10,12,5,1,575,598654.88,592891.31,324056.66,225464.66,2333.6094,0,3539.8706 +4098,5009,8877,-9,8879,8878,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1116.5909,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1949656,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4098,5009,8878,8879,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8047094,8.6764965,0,31,-2,-47.431221,0,2,2,2021,6,0,38,41,1,0,0,17.515186,17.515186,.05,.05,.05,0,0,0,0,0,1,1,0,4.7953672,0,52.99,51.28,60.6,49.26,8.333333333333334,1,1,0,0,9,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4098,5009,8879,8878,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.9462509,6.9576354,0,31,2,96.754539,0,2,2,2021,4,0,18,20,1,0,0,6.453537,6.453537,0,0,0,0,0,0,0,0,1,1,0,3.6108215,0,60.6,49.26,52.99,51.28,8.333333333333334,1,1,0,0,9,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4099,5010,8880,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1027.8636,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.61,13.86,-9,-9,8.333333333333334,1,1,0,0,7,12,1,0,2209,39100.465,0,0,0,0,0,1772.7607 +4100,5011,8881,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.0881176,7.8162403,0,0,-1006.7887,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5937519,8.0087109,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,265,-14439.662,123937.84,0,0,0,0,1462.2993 +4101,5012,8882,8883,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.2669344,6.1749582,12,2,-25.217516,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5619502,6.3809967,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,395,840306.75,176722.75,604777.75,0,0,0,2158.9626 +4101,5012,8883,8882,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.7445836,6.617712,12,-2,19.296328,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6913438,6.4213095,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,395,840306.75,176722.75,604777.75,0,0,0,2158.9626 +4102,5013,8884,8886,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.250412,9.1375036,0,12,6,41.643578,0,-9,-9,2021,12,0,38,37,1,0,0,31.161772,31.161772,.05,.05,.05,0,0,0,0,0,0,0,0,7.5062547,0,57.16,56.15,44.55,60.42,8.333333333333334,1,1,0,0,11,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4102,5013,8885,-9,8886,8884,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-883.99658,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4102,5013,8886,8884,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.9105272,8.9206457,0,12,-6,-65.30883,-9,2,1,2021,18,6,31,0,1,6,0,26.936695,26.936695,0,0,0,0,0,0,0,0,0,0,0,1.1450453,0,44.55,60.42,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4103,5014,8887,8888,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.3914061,8.7460041,46,2,-60.444084,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0628471,8.2190456,61.61,37.79,58.15,52.91,8.333333333333334,1,1,0,0,0,8,3,1,715.5,1493588.4,910113.81,498121.31,0,0,0,2763.7666 +4103,5014,8888,8887,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,46,-2,-47.518539,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,61.61,37.79,8.333333333333334,1,1,0,0,8,8,3,1,715.5,1493588.4,910113.81,498121.31,0,0,0,2763.7666 +4104,5015,8889,8891,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,9.0292158,8.9933634,0,6,-2,-19.085789,0,2,2,2021,6,0,41,40,1,0,0,23.542089,23.542089,.05,.05,0,0,0,0,0,0,0,0,0,3.2336552,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,5,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8890,-9,8889,8891,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.495,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8891,8889,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.6971073,8.6795015,0,6,2,-90.412926,0,-9,-9,2021,9,0,37,40,1,1,0,22.8477,22.8477,.05,.05,0,0,0,0,0,0,0,0,0,7.050889,0,51,56,54.2,57.49,8,1,1,0,0,1,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8892,-9,8889,8891,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.11951,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8893,-9,8889,8891,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.48309,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4105,5016,8894,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,5.653976,5.5151196,0,0,-1069.7915,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1261787,5.6659851,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,623,10826.289,166236.58,205780.39,0,0,0,554.15314 +4106,5017,8895,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.1831541,7.1849942,0,0,0,-1171.0355,0,-9,-9,2021,13,1,22,18,1,1,0,7.0668788,7.0668788,.05,.05,0,0,0,0,0,2,1,0,1,0,0,51.82,42.23,-9,-9,8.333333333333334,1,1,0,0,6,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4106,5017,8896,-9,8895,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-783.53632,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4106,5017,8897,-9,8895,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-965.27283,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.07,56.65,-9,-9,5,1,1,0,0,0,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4107,5018,8898,8899,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,0,0,0,6,0,-32.915096,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,30.85,49.36,62.1,51.16,6.666666666666667,1,1,0,0,3,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4107,5018,8899,8898,-9,-9,1,1,47,1,1,0,2,2,-9,0,4,8.5750952,8.6948252,0,6,9,-146.59143,0,-9,-9,2021,8,1,43,36,1,1,0,15.559318,15.559318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,30.85,49.36,8.333333333333334,1,1,0,0,10,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4107,5018,8900,-9,8898,8899,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.2775,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4108,5019,8901,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.1930766,7.7048006,6.0779243,0,0,-885.60071,0,3,2,2021,10,0,25,26,1,0,0,6.2416844,6.2416844,0,0,0,0,0,0,0,0,1,1,0,4.2516975,5.9984388,49.16,46.14,-9,-9,1.666666666666667,1,1,0,0,8,2,3,1,807,523945.22,433318.69,123790.82,0,0,0,1368.4302 +4109,5020,8902,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.2427239,7.346848,0,0,-1024.7264,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9453011,7.2375102,60.29,52.11,-9,-9,10,1,1,0,0,1,2,3,1,429,500611.75,207332.56,254316.83,0,0,0,1899.1179 +4110,5021,8903,8904,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.06779,8.0767288,0,26,-2,-139.97186,0,2,1,2021,16,4,42,42,1,4,0,8.026022,8.026022,.05,.05,0,0,0,0,0,0,0,0,0,1.8470392,0,54.1,59.11,47.1,56.62,6.666666666666667,1,1,0,0,14,7,4,1,867.5,1566111.3,1083360,261010.5,0,0,0,3043.2827 +4110,5021,8904,8903,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3593283,8.0494604,0,13,2,-20.599213,0,-9,-9,2021,6,0,44,42,1,0,0,9.4850597,9.4850597,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,54.1,59.11,10,1,1,0,0,10,7,4,1,867.5,1566111.3,1083360,261010.5,0,0,0,3043.2827 +4111,5022,8905,8906,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.819375,9.0886803,0,16,-3,-29.341953,0,3,2,2021,23,10,39,37,1,10,0,20.280064,20.280064,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,19.45,38.62,6.666666666666667,1,1,0,0,13,7,5,1,884.5,2106276.5,1533026,672542.63,0,0,0,6363.7637 +4111,5022,8906,8905,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,9.2180319,8.9429665,0,14,3,16.851316,0,3,2,2021,29,12,40,40,1,12,0,26.127829,26.127829,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,19.45,38.62,47.32,52.7,1.666666666666667,1,1,0,0,13,7,5,1,884.5,2106276.5,1533026,672542.63,0,0,0,6363.7637 +4112,5023,8907,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-980.10339,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.02,10.93,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,530,19215.559,0,0,0,2369.2971,0,246.56522 +4113,5024,8908,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1013.6044,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.11,24.32,-9,-9,5,1,1,0,0,0,7,1,0,382,259853.55,0,0,0,0,0,489.15332 +4114,5025,8909,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.265729,8.0336046,0,0,0,-1061.6953,0,3,2,2021,12,0,23,25,1,0,0,16.251139,16.251139,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,640,-141497.34,8601.8428,43204.613,69613.703,0,0,1140.389 +4115,5026,8910,-9,8911,8912,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.34167,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4115,5026,8911,8912,-9,-9,1,0,37,0,3,0,2,2,-9,1,2,6.9488678,7.1049285,0,20,0,-121.79632,0,3,2,2021,12,0,20,20,1,0,0,6.8557882,6.8557882,.05,.05,0,0,0,0,0,27,1,0,1,.45102459,0,38.27,54.57,52,54.51,5,2,3,0,1,5,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4115,5026,8912,8911,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,9.1690311,8.9191189,0,9,0,-26.25495,0,-9,-9,2021,11,0,35,30,1,0,0,21.667513,21.667513,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,54.51,38.27,54.57,5,2,3,0,0,10,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4116,5027,8913,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.7762208,8.0348129,0,0,0,-1044.0925,0,-9,2,2021,14,3,30,38,1,3,0,9.380456,9.380456,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,54.38,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,462,169973.77,0,0,0,0,0,938.47467 +4117,5028,8914,8915,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.2364392,7.1220417,51,-4,-69.586121,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4338903,7.199255,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,0,5,3,1,456,1037334.6,1002390.8,254426.94,15761.109,0,4463.335,7464.0566 +4117,5028,8915,8914,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.7728572,7.87112,51,4,-1.827641,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,1.4276624,0,0,1,1,0,8.7367725,7.5542116,48.28,60.18,54.2,57.49,10,1,1,0,0,0,5,3,1,456,1037334.6,1002390.8,254426.94,15761.109,0,4463.335,7464.0566 +4118,5029,8916,8917,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.7006035,8.8640022,0,9,0,1.2495112,0,2,2,2021,8,0,45,45,1,0,0,12.778533,12.778533,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,859.5,-87137.633,-33354.484,100300.52,65644.68,6895.499,2208.3145,2311.6201 +4118,5029,8917,8916,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.5939794,7.6315184,0,9,0,77.646118,0,2,2,2021,6,0,27,18,1,0,0,7.8319168,7.8319168,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,859.5,-87137.633,-33354.484,100300.52,65644.68,6895.499,2208.3145,2311.6201 +4119,5030,8918,-9,8919,8920,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.57288,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4119,5030,8919,8920,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.0820742,7.086596,0,17,-5,-22.87121,0,2,2,2021,12,0,21,21,1,0,0,6.8415651,6.8415651,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,49.53,50.82,8.333333333333334,2,3,0,0,9,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4119,5030,8920,8919,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.0034676,8.9521809,0,17,5,-47.249187,0,3,3,2021,16,5,37,44,1,5,0,30.610317,30.610317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.53,50.82,49.29,54.59,3.333333333333333,1,1,0,1,5,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4120,5031,8921,-9,8922,8925,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.2009,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8922,8925,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.6616988,7.2458167,0,19,-2,44.001163,0,2,2,2021,23,10,28,27,1,10,0,9.7060366,9.7060366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,55.19,54.26,6.666666666666667,1,1,0,0,10,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8923,-9,8922,8925,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.20453,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8924,-9,8922,8925,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-859.94049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8925,8922,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.3322325,9.5634336,0,20,2,30.052483,0,-9,3,2021,11,0,40,45,1,0,0,34.943565,34.943565,.05,.05,0,0,0,0,0,0,1,1,0,4.276639,0,55.19,54.26,43.67,61.06,8.333333333333334,1,1,0,0,10,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4121,5032,8926,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1086.8879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.3269906,6.9084687,61.522778,0,1,1,0,2.4051509,0,55,45,-9,-9,8,1,1,0,0,5,13,1,1,580,-78941.469,0,31488.641,0,0,0,870.54523 +4122,5033,8927,8928,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,.54998261,3.868259,3.7566235,13,0,85.146416,0,-9,-9,2021,24,9,25,-9,1,9,0,.0081599252,.0081599252,0,0,0,1,0,26.491898,0,0,1,1,0,3.9417653,3.9853535,16.04,23.99,35.21,41.59,8.333333333333334,1,1,0,1,15,8,2,1,338.5,798945,202771.31,243689.63,0,0,0,901.67432 +4122,5033,8928,8927,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,13,9,104.6802,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.21,41.59,16.04,23.99,6.666666666666667,1,1,0,0,0,8,2,1,338.5,798945,202771.31,243689.63,0,0,0,901.67432 +4123,5034,8929,8930,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0058041,7.919178,0,14,2,-69.400024,0,2,-9,2021,6,0,30,38,1,0,0,10.504009,10.504009,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.72,46.82,6.666666666666667,4,2,0,0,12,8,5,0,952.5,16101.539,33955.969,162321.13,125685.77,0,2977.6306,3318.8728 +4123,5034,8930,8929,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.7257986,8.394475,0,14,-2,67.667923,0,2,-9,2021,12,0,44,46,1,0,0,12.470537,12.470537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.72,46.82,57.33,53.46,8.333333333333334,4,2,0,0,13,8,5,0,952.5,16101.539,33955.969,162321.13,125685.77,0,2977.6306,3318.8728 +4124,5035,8931,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.0396957,7.4082193,5.7654753,0,0,-974.17413,0,-9,-9,2021,10,0,20,20,1,0,0,9.1376638,9.1376638,0,0,0,0,0,0,0,0,1,0,1,6.0822949,0,33.47,56.25,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,254,149515.11,0,0,0,0,0,1835.8253 +4125,5036,8932,8933,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,8.7599602,8.9206629,0,7,5,-22.564201,0,2,2,2021,8,0,43,45,1,0,0,16.299747,16.299747,.05,.05,0,0,0,0,0,0,1,1,0,3.9448528,0,45.81,61.51,62.39,56.71,8.333333333333334,1,1,0,0,8,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8933,8932,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,0,0,0,7,-5,-173.77713,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12634121,0,62.39,56.71,45.81,61.51,10,1,1,0,0,1,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8934,-9,8933,8932,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.2359,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8935,-9,8933,8932,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.2638,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8936,-9,8933,8932,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.8182,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4126,5037,8937,8938,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.5677638,7.5940094,5.0622082,34,1,-45.267784,-9,3,3,2021,10,0,20,0,1,0,0,15.198028,15.198028,.05,.05,0,0,0,0,0,2,0,0,0,4.1971712,5.0450578,54.2,57.49,59.88,45.37,6.666666666666667,1,1,0,0,13,2,4,1,381.5,735833.13,553781.38,114181,0,0,0,2459.2161 +4126,5037,8938,8937,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1345596,8.6506577,5.2762127,1,-1,-25.046537,-9,-9,-9,2021,11,0,43,0,1,0,0,12.651928,12.651928,.05,.05,.05,0,0,0,0,0,0,0,0,5.9051161,5.7810965,59.88,45.37,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,381.5,735833.13,553781.38,114181,0,0,0,2459.2161 +4127,5038,8939,-9,8941,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.54,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4127,5038,8940,-9,8941,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.94012,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4127,5038,8941,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.2313056,7.1834927,0,0,0,-892.20984,0,3,3,2021,7,0,16,16,1,0,0,6.9278855,6.9278855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4128,5039,8942,8944,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9541788,8.8383436,0,8,-2,-16.012358,0,3,3,2021,8,0,43,40,1,0,0,19.605783,19.605783,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8943,-9,8944,8942,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.0063,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8944,8942,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,9.0649023,8.7184868,6.4407206,8,2,33.027695,0,3,3,2021,12,0,43,42,1,0,0,19.249722,19.249722,0,0,0,0,0,0,0,0,1,1,0,6.652391,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8945,-9,8944,8942,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.06799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4129,5040,8946,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.7780809,8.514945,0,0,0,-945.04297,0,1,2,2021,10,0,50,60,1,0,0,13.306683,13.306683,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,31.46,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,503,285991.19,-206132.88,0,0,427.10468,423.68967,1332.1755 +4130,5041,8947,8948,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8281174,7.6619325,38,-3,-1.8964534,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,1,1.5668503,0,19.978249,42,1,1,0,3.9708848,7.2429423,56.35,43.13,50.88,12.93,6.666666666666667,1,1,0,0,9,2,3,1,905.5,668157.81,132310.09,291630.53,0,0,0,2878.0042 +4130,5041,8948,8947,-9,-9,1,0,74,0,0,0,1,1,-9,0,1,0,6.9268694,7.4394083,38,3,-145.46207,0,3,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,1.1621784,49.388004,29.052134,2,1,1,0,6.3834066,7.2344594,50.88,12.93,56.35,43.13,5,1,1,0,0,6,2,3,1,905.5,668157.81,132310.09,291630.53,0,0,0,2878.0042 +4131,5042,8949,8950,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,7.5426345,7.6508532,0,7,-8,-30.292067,0,2,2,2021,8,0,36,42,1,0,0,5.8775244,5.8775244,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.06,57.76,10,1,1,0,0,7,12,3,1,1359,1073350.3,855373.88,182272,51252.922,0,0,2289.6033 +4131,5042,8950,8949,-9,-9,1,1,56,0,2,0,1,1,-9,0,5,7.9166894,8.3970938,6.4787383,7,8,-69.166695,0,2,2,2021,6,0,40,47,1,0,0,8.344821,8.344821,.05,.05,0,0,0,0,0,0,1,1,0,6.462328,0,57.06,57.76,55.09,55.87,8.333333333333334,1,1,0,0,7,12,3,1,1359,1073350.3,855373.88,182272,51252.922,0,0,2289.6033 +4132,5043,8951,8952,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.9560947,7.9041843,5.8515692,46,4,-7.7555366,0,3,3,2021,8,0,50,50,1,0,0,4.6271071,4.6271071,.05,.05,0,0,0,0,0,0,1,1,0,7.0791059,5.699975,57.33,53.46,35.56,54.64,8.333333333333334,1,1,0,0,8,7,5,1,519.5,799855.75,309571.31,444654.44,0,0,0,5523.1182 +4132,5043,8952,8951,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,8.4412966,8.4429102,0,46,-4,-63.563656,0,3,2,2021,17,5,42,70,1,5,0,14.806072,14.806072,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,54.64,57.33,53.46,6.666666666666667,1,1,0,0,8,7,5,1,519.5,799855.75,309571.31,444654.44,0,0,0,5523.1182 +4133,5044,8953,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1015.3779,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,1,1,0,2153,-72606.711,0,0,0,0,0,1731.3632 +4134,5045,8954,8955,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.4223819,6.4596691,57,2,38.85775,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5258603,60.29,52.11,63.83,43.62,10,1,1,0,0,0,4,2,1,614.5,236612.16,45718.156,123160.29,0,0,291.55823,1329.399 +4134,5045,8955,8954,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.4738812,5.8999557,57,-2,19.72364,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1720352,63.83,43.62,60.29,52.11,10,1,1,0,0,0,4,2,1,614.5,236612.16,45718.156,123160.29,0,0,291.55823,1329.399 +4135,5046,8956,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.4906321,6.8827257,4.5613012,0,0,-985.96552,0,2,1,2021,5,0,30,15,1,0,0,2.4589682,2.4589682,.05,.05,0,0,0,0,0,0,1,1,0,4.203701,4.368535,59.07,37.52,-9,-9,8.333333333333334,1,1,0,0,12,2,2,1,3759,-122336.67,26039.084,-37862.184,46091.043,0,0,559.03357 +4135,5047,8957,-9,8956,-9,1,1,22,0,0,0,2,2,-9,0,4,6.6772199,6.2364826,0,0,0,-916.0498,0,2,-9,2021,17,6,30,50,1,6,1,2.380554,2.380554,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,5,2,2,1,1289,-240130.13,0,0,0,0,0,347.39575 +4136,5048,8958,8959,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.7909722,6.5159316,0,7,-3,-32.022602,0,3,3,2021,10,0,14,20,1,1,0,7.5680275,7.5680275,0,0,0,0,0,0,0,0,0,0,0,2.888871,0,51,54,40.82,45.35,8,2,3,0,0,1,9,2,1,2423,703529,513908.66,244266.08,0,0,0,1212.2299 +4136,5048,8959,8958,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.1116929,6.9100494,0,7,3,45.00592,0,3,3,2021,8,0,55,65,1,0,0,2.1309237,2.1309237,0,0,0,0,0,0,0,0,0,0,0,4.9450655,0,40.82,45.35,51,54,6.666666666666667,2,3,0,0,7,9,2,1,2423,703529,513908.66,244266.08,0,0,0,1212.2299 +4137,5049,8960,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.1094236,6.9517746,0,0,-952.26056,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,5.504189,0,0,1,1,0,7.2708669,7.0559773,55.84,29.81,-9,-9,3.333333333333333,1,1,0,0,6,10,3,1,1275,411353.31,364527.38,0,0,0,0,1305.8127 +4138,5050,8961,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-941.25513,0,-9,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,67.36,32.42,-9,-9,10,1,1,0,0,0,5,1,1,869,25482.609,0,0,0,0,0,412.72678 +4139,5051,8962,8963,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,36,3,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.77,20.45,49.45,48.84,5,2,3,0,1,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5051,8963,8962,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,36,-3,0,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,49.45,48.84,35.77,20.45,5,2,3,0,1,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5051,8964,-9,8963,8962,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.23279,-9,3,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.98,57.22,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5052,8965,-9,8963,8962,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-959.67328,0,3,2,2021,10,0,0,45,3,1,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,45.42,49.52,-9,-9,1.666666666666667,2,3,1,1,7,8,1,1,899,142022.75,0,0,0,0,0,1332.8508 +4139,5053,8966,-9,8963,8962,1,1,24,0,0,0,2,2,-9,0,4,8.5904694,8.6143694,0,0,0,-1112.4825,0,3,2,2021,1,0,37,37,1,0,1,14.963271,14.963271,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,1555,-26025.072,-10690.587,0,0,0,0,2751.4734 +4140,5054,8967,8968,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.7507901,7.1981621,30,0,-18.840925,0,2,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,6.6743469,47.52,57.75,47.22,53.97,10,1,1,0,0,10,1,5,1,682.5,343012.94,309523.81,189982.78,129108.23,4820.4316,14327.006,4834.811 +4140,5054,8968,8967,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,9.1601276,8.7128448,30,0,18.567019,0,2,3,2021,15,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.895124,8.5371065,47.22,53.97,47.52,57.75,8.333333333333334,1,1,0,0,9,1,5,1,682.5,343012.94,309523.81,189982.78,129108.23,4820.4316,14327.006,4834.811 +4141,5055,8969,8970,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.4334059,8.9066229,0,19,-6,-40.655731,0,2,-9,2021,9,0,35,35,1,1,0,22.926233,22.926233,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,48,49,8,1,1,0,0,11,12,5,0,636.5,350628.03,150324.63,104623.71,24345.232,6054.8203,0,3354.8784 +4141,5055,8970,8969,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.6228132,8.0392761,0,19,6,-172.00018,0,2,2,2021,12,0,85,0,1,2,0,3.8114564,3.8114564,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,52,55,7,1,1,0,0,12,12,5,0,636.5,350628.03,150324.63,104623.71,24345.232,6054.8203,0,3354.8784 +4142,5056,8971,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.668704,8.6924191,0,0,0,-905.4151,-9,-9,-9,2021,13,1,43,0,1,1,0,14.637184,14.637184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.31,40.99,-9,-9,6.666666666666667,1,1,0,0,4,2,5,0,182,-42463.34,32346.947,142695.78,106331.43,0,1347.3512,2181.4788 +4143,5057,8972,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.0153589,7.3662367,0,0,-999.89148,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,124.52448,0,1064.6306,0,1,1,0,0,7.2182875,56,35.8,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1104,358573.16,40571.602,184276.81,0,0,0,2508.1516 +4144,5058,8973,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.4000974,6.4065585,0,0,-995.58575,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,3.7858629,0,0,1,1,0,0,6.6464133,56.6,23.1,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1774,164734.73,-114874.06,26875.162,0,0,0,1887.9011 +4145,5059,8974,-9,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.9739165,7.9800949,0,0,0,-954.37549,0,2,2,2021,12,4,34,38,1,4,0,9.6219358,9.6219358,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,33.14,-9,-9,5,3,4,0,0,10,8,3,1,440.5,-33104.242,0,0,0,17617.182,5596.2144,1034.0402 +4145,5059,8975,-9,8974,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26642,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,1,440.5,-33104.242,0,0,0,17617.182,5596.2144,1034.0402 +4145,5060,8976,-9,8978,8977,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0916,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4145,5060,8977,8978,-9,-9,1,1,42,2,2,0,1,1,-9,0,5,8.7824898,8.944972,0,3,7,-55.98418,0,-9,-9,2021,0,0,43,43,1,0,0,16.769344,16.769344,.05,.05,0,0,0,0,0,0,1,1,0,1.2664828,0,51.13,53.88,62.39,56.71,8.333333333333334,3,4,0,0,11,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4145,5060,8978,8977,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,8.294651,8.7452564,0,3,-7,-149.31392,0,-9,-9,2021,6,0,12,42,1,0,0,51.651134,51.651134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.13,53.88,6.666666666666667,3,4,0,0,11,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4146,5061,8979,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-908.44299,0,2,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.41,26.12,-9,-9,5,3,4,0,1,0,8,1,0,125,-100022.95,0,0,0,0,0,1683.3455 +4146,5062,8980,-9,8979,-9,1,1,23,0,0,0,2,2,-9,0,4,7.1962996,7.0093374,0,0,0,-920.14362,0,2,2,2021,2,0,17,0,1,0,1,6.020596,6.020596,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,683,-3219.6267,0,0,0,0,0,519.09265 +4147,5063,8981,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-905.23743,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,5.7725821,0,0,1,1,0,0,0,56.44,22.93,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,454,108299.12,0,0,0,0,0,545.19696 +4148,5064,8982,8983,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,7.88625,8.0094395,0,8,2,-83.532585,0,3,3,2021,12,0,50,50,1,0,0,6.8967462,6.8967462,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.34,17.29,44.26,38.35,5,1,1,0,0,8,13,4,0,1445.5,283646.75,134455.66,133783.34,0,0,0,2476.8496 +4148,5064,8983,8982,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,6.9730868,7.1319771,0,8,-2,80.836571,0,3,3,2021,10,0,23,22,1,0,0,6.3291869,6.3291869,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.26,38.35,57.34,17.29,6.666666666666667,1,1,0,0,8,13,4,0,1445.5,283646.75,134455.66,133783.34,0,0,0,2476.8496 +4148,5065,8984,-9,8983,8982,1,0,32,0,0,0,1,1,-9,0,3,8.2598057,8.4510212,0,0,0,-1024.6041,0,2,2,2021,8,0,36,36,1,0,1,19.468731,19.468731,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,13,5,0,66,470203.5,203299.28,101643.7,66731.43,0,0,1975.2681 +4148,5066,8985,-9,8983,8982,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1027.9725,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.62813854,0,1,1,0,.9590652,0,50.82,57.78,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,116,75798.219,0,0,0,0,648.48279,454.2832 +4149,5067,8986,8987,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.2843051,3.597733,51,-2,-143.32921,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2909423,4.0571074,47.39,51.78,56.5,37.6,8.333333333333334,1,1,0,0,0,9,2,1,765,855415.88,94945.703,498298,0,0,0,1426.871 +4149,5067,8987,8986,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.0567346,6.5736418,51,2,64.55027,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7020664,6.2719817,56.5,37.6,47.39,51.78,8.333333333333334,1,1,0,0,0,9,2,1,765,855415.88,94945.703,498298,0,0,0,1426.871 +4150,5068,8988,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0836954,6.9197798,0,0,-992.4527,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8144474,25.37,58.44,-9,-9,3.333333333333333,1,1,0,1,0,2,2,1,1433,574980.13,65589.125,166117.2,0,0,0,784.19788 +4151,5069,8989,-9,-9,-9,1,0,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-1123.6184,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.79,43.81,-9,-9,5,1,1,0,0,6,6,1,1,618,0,0,0,0,0,0,-70.720428 +4152,5070,8990,8991,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,12,0,0,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.64,39.37,44.33,20.38,3.333333333333333,1,1,0,0,11,11,1,1,983.5,43655.633,0,0,0,0,0,2196.6768 +4152,5070,8991,8990,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,12,0,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,43.580402,0,0,1,1,0,0,0,44.33,20.38,35.64,39.37,8.333333333333334,1,1,0,0,0,11,1,1,983.5,43655.633,0,0,0,0,0,2196.6768 +4153,5071,8992,8996,-9,-9,1,1,32,1,3,0,2,2,-9,0,4,0,0,0,1,0,6.8586397,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8993,-9,8996,8992,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-894.93921,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8994,-9,8996,8992,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.40302,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8995,-9,8996,8992,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.27008,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8996,8992,-9,-9,1,0,32,1,3,0,3,3,-9,0,5,6.7993898,6.7785649,0,1,0,5.0738564,0,3,3,2021,7,0,16,16,1,0,0,7.3322191,7.3322191,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,10,1,1,0,0,2,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4154,5072,8997,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.3594136,5.8057323,0,0,-969.27496,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2906361,5.3220134,21.46,39.16,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,5300,-74058.914,-67670.906,240450.59,0,0,0,789.12158 +4155,5073,8998,8999,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.7723093,8.6092501,0,5,1,178.13489,0,2,1,2021,6,0,50,50,1,0,0,14.811192,14.811192,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.48,60.97,8.333333333333334,1,1,0,0,8,4,4,1,2214,234225.31,41405.32,0,0,1677.4523,0,3488.7188 +4155,5073,8999,8998,-9,-9,1,1,35,0,0,0,1,1,0,0,4,0,0,0,5,-1,-15.61326,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.48,60.97,54.1,59.11,8.333333333333334,1,1,0,0,3,4,4,1,2214,234225.31,41405.32,0,0,1677.4523,0,3488.7188 +4156,5074,9000,9001,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.1171708,7.2533126,32,1,57.73354,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8375645,7.0808806,55.17,47.52,53.81,53.56,8.333333333333334,1,1,0,0,12,4,2,1,450,-46680.223,43604.867,0,0,10917.363,0,1489.7476 +4156,5074,9001,9000,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,32,-1,-63.097839,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.9184117,0,53.81,53.56,55.17,47.52,10,1,1,0,0,8,4,2,1,450,-46680.223,43604.867,0,0,10917.363,0,1489.7476 +4157,5075,9002,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.9280825,6.9368777,0,0,-975.97742,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7936068,6.7627969,55.43,41.03,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1057,435352.38,302075.47,266557.47,0,0,0,1452.8385 +4158,5076,9003,9005,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.5751462,7.8454223,0,4,0,-22.520647,0,2,2,2021,6,0,30,32,1,0,0,10.794913,10.794913,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.13,46.57,8.333333333333334,1,1,0,0,9,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4158,5076,9004,-9,9003,9005,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1191.0131,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4158,5076,9005,9003,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.3937225,8.9109983,6.5434833,4,0,-76.092392,0,-9,-9,2021,7,0,48,40,1,0,0,26.060556,26.060556,.05,.05,0,0,0,0,0,0,1,1,0,6.4550085,0,60.13,46.57,54.79,55.86,8.333333333333334,1,1,0,0,11,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4159,5077,9006,-9,9007,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.12225,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1280.5,102622.42,0,0,0,1242.4233,-69.753067,1689.8268 +4159,5077,9007,-9,-9,-9,1,0,42,0,1,0,3,3,-9,1,2,0,0,0,0,0,-943.47021,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.82,35.87,-9,-9,5,1,1,0,0,0,2,1,0,1280.5,102622.42,0,0,0,1242.4233,-69.753067,1689.8268 +4159,5078,9008,-9,9007,-9,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-1018.4071,-9,3,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,4600,3516.1873,0,0,0,0,262.73209,1156.7356 +4160,5079,9009,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,5,0,6.7150078,6.6272554,0,0,-1068.777,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0860205,6.4930711,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,1,412,360822.06,121439.63,183057.66,0,0,0,1728.6945 +4161,5080,9010,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7078314,6.7028813,0,0,-1153.528,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7819681,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,707,554308.38,0,312476.13,0,0,0,988.01294 +4162,5081,9011,9012,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.6023855,8.526618,0,6,12,-63.013336,0,-9,-9,2021,6,0,40,40,1,0,0,14.439722,14.439722,.05,.05,0,0,0,0,0,0,0,0,0,3.7392082,0,57.33,53.46,57.16,56.15,10,1,1,0,0,13,4,5,1,463,1332770,644898.5,244108.48,0,0,0,2928.0313 +4162,5081,9012,9011,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0432253,8.0979996,0,6,-12,5.3621531,0,2,2,2021,6,0,38,38,1,0,0,9.6937981,9.6937981,.05,.05,0,0,0,0,0,0,0,0,0,3.8145478,0,57.16,56.15,57.33,53.46,10,1,1,0,0,13,4,5,1,463,1332770,644898.5,244108.48,0,0,0,2928.0313 +4163,5082,9013,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1118.6039,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,3.3833315,0,61.95,30.05,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,6228,0,0,0,0,0,0,146.52982 +4164,5083,9014,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7788887,8.6187487,0,0,0,-966.90942,0,-9,-9,2021,12,0,40,55,1,0,0,18.038197,18.038197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,12,7,5,0,697,89679.336,154058.34,0,0,0,3665.2605,2031.9731 +4165,5084,9015,9017,-9,-9,1,0,41,1,3,0,2,2,-9,1,2,6.3206,6.6903977,0,24,0,-2.9647036,0,3,2,2021,17,4,16,16,1,4,0,3.8592668,3.8592668,.05,.05,0,0,0,0,0,110,1,1,0,0,0,42.61,44.32,46.81,47.22,6.666666666666667,2,3,0,0,8,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4165,5084,9016,-9,9015,9017,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1186.6023,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4165,5084,9017,9015,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,6.9888015,6.8381996,0,13,0,54.705498,0,-9,-9,2021,15,4,40,39,1,4,0,3.2424135,3.2424135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.81,47.22,42.61,44.32,6.666666666666667,2,3,0,1,14,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4166,5085,9018,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-960.35321,0,2,2,2021,15,5,0,15,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8839681,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,437,395523.34,315133.72,30521.508,0,0,0,635.18353 +4167,5086,9019,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,8.0581532,8.1214676,0,0,-896.12701,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,6.4718647,0,0,1,1,0,0,8.1517506,49.88,31.82,-9,-9,5,1,1,0,0,0,11,4,1,101,607463.69,186904.77,232504.58,0,0,0,2336.886 +4168,5087,9020,9021,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,13,-8,48.039818,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,62.49,55.09,10,1,1,1,0,11,4,2,1,989,1187674,373048.13,256412.91,0,0,0,1075.76 +4168,5087,9021,9020,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.5961566,6.7205358,13,8,82.323586,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.9612474,62.49,55.09,60.29,52.11,8.333333333333334,1,1,0,0,15,4,2,1,989,1187674,373048.13,256412.91,0,0,0,1075.76 +4169,5088,9022,9023,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.6984348,7.7149067,0,25,5,-88.125557,0,2,2,2021,8,0,45,45,1,0,0,4.5897679,4.5897679,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,54.39,44.26,35.1,36.97,6.666666666666667,1,1,0,0,8,9,3,1,733,222032.53,123925.41,0,0,1491.7964,0,1482.8278 +4169,5088,9023,9022,-9,-9,1,0,41,0,0,0,2,2,-9,0,1,7.7726326,7.5907245,0,25,-5,-197.51015,0,2,2,2021,14,2,21,18,1,2,0,9.9322958,9.9322958,0,0,0,0,0,0,0,2,0,0,0,0,0,35.1,36.97,54.39,44.26,3.333333333333333,1,1,0,0,8,9,3,1,733,222032.53,123925.41,0,0,1491.7964,0,1482.8278 +4170,5089,9024,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-905.48395,0,-9,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,31.69,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,795,515709.19,408364.53,0,0,0,27.144749,1922.1918 +4171,5090,9025,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,8.0248632,8.5292215,0,0,-934.242,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5048666,5.1119137,42.75,42.61,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,161,716731.19,325139.06,376224.34,0,0,2165.448,2575.2595 +4172,5091,9026,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1110.577,-9,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.435533,0,62.66,52.4,-9,-9,10,1,1,0,0,2,8,1,0,1515,-99017.125,0,0,0,0,0,-336.06516 +4173,5092,9027,9031,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.5661449,8.6011038,0,9,9,25.5238,0,-9,-9,2021,12,1,60,60,1,1,0,13.319421,13.319421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,51,46.12,44.87,5,3,4,0,0,9,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9028,-9,9031,9027,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.373,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9029,-9,9031,9027,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.9184,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9030,-9,9031,9027,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.6892,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9031,9027,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,8.0507956,8.0472183,0,8,0,56.684387,0,-9,-9,2021,12,1,24,41,1,1,0,21.269884,21.269884,0,0,0,0,0,0,0,0,1,1,0,0,0,46.12,44.87,48,51,6.666666666666667,3,4,0,0,10,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4174,5093,9032,-9,9033,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.68109,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,2655,-21377.75,0,0,0,0,380.4762,677.62909 +4174,5093,9033,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,0,0,-915.09698,-9,2,2,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,53.82,-9,-9,6.666666666666667,1,1,0,0,7,11,1,0,2655,-21377.75,0,0,0,0,380.4762,677.62909 +4175,5094,9034,9035,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.6545067,5.4647183,11,9,-13.760611,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.248508,5.7757449,53.37,52.37,50.37,36.66,6.666666666666667,1,1,0,0,13,10,2,1,745,254041.22,117470.23,242512.72,0,5093.5742,0,322.4827 +4175,5094,9035,9034,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,11,0,-4.1062708,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4505507,0,50.37,36.66,53.37,52.37,6.666666666666667,1,1,0,0,8,10,2,1,745,254041.22,117470.23,242512.72,0,5093.5742,0,322.4827 +4176,5095,9036,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.542655,8.4753494,0,0,0,-995.57813,-9,-9,-9,2021,8,0,42,0,1,0,0,16.415134,16.415134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,194.5,758691.94,261468.55,437360.38,0,0,1372.0886,2335.0791 +4176,5095,9037,-9,9036,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.98334,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,194.5,758691.94,261468.55,437360.38,0,0,1372.0886,2335.0791 +4177,5096,9038,9039,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3425369,8.4227381,0,7,-2,39.781021,0,2,3,2021,13,1,45,50,1,1,0,9.6611938,9.6611938,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.29,34.56,16.11,46.91,8.333333333333334,1,1,0,0,8,13,4,0,738,553065.38,209095.02,366674.31,0,0,0,2475.1338 +4177,5096,9039,9038,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,6.1281295,6.2838292,7,2,-24.363756,0,2,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2424917,16.11,46.91,46.29,34.56,1.666666666666667,1,1,0,0,1,13,4,0,738,553065.38,209095.02,366674.31,0,0,0,2475.1338 +4177,5097,9040,-9,9039,9038,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1003.3412,0,2,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,10,1,1,1,0,3,13,1,0,2046,-73262.016,0,0,0,0,0,1243.7266 +4178,5098,9041,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3564291,8.2178984,0,0,0,-1070.9088,-9,-9,-9,2021,9,1,39,0,1,1,0,14.118931,14.118931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,12,9,4,1,270,98603.391,53003.676,139045.39,129166.16,0,0,1387.9849 +4179,5099,9042,-9,9044,9043,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.6129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4179,5099,9043,9044,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2820663,8.3611574,6.1040034,6,3,22.270224,0,3,2,2021,16,5,38,37,1,5,0,13.303783,13.303783,.05,.05,0,0,0,0,0,2,1,1,0,6.2988219,0,52.93,52.64,51.41,56.15,5,1,1,0,0,14,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4179,5099,9044,9043,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.3367205,7.5021296,5.7744431,6,-3,-75.442848,0,2,2,2021,16,5,24,20,1,5,0,9.1163836,9.1163836,.05,.05,0,0,0,0,0,0,1,1,0,6.4841166,0,51.41,56.15,52.93,52.64,5,1,1,0,0,14,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4180,5100,9045,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,5.2624197,5.1736469,0,0,-827.69244,0,3,3,2021,22,9,0,10,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0274143,0,42.52,32.35,-9,-9,1.666666666666667,1,1,0,0,2,8,2,0,408,82472.859,0,0,0,0,0,2282.2559 +4181,5101,9046,9047,-9,-9,1,0,35,0,2,0,2,2,-9,0,2,7.5090461,7.3980751,0,17,-4,-85.483505,0,3,2,2021,12,0,22,22,1,0,0,8.8702354,8.8702354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,52,54.51,5,1,1,0,0,13,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9047,9046,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8387356,9.0365782,0,18,4,-36.454338,0,2,2,2021,8,0,45,45,1,0,0,18.634794,18.634794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,49.28,52.09,6.666666666666667,1,1,0,0,13,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9048,-9,9046,9047,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.29919,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9049,-9,9046,9047,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.54517,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4182,5102,9050,9051,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.3851342,5.7886271,34,1,4.6961136,0,-9,-9,2021,8,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.636476,5.7518783,54.37,54.8,65.23999999999999,41.59,8.333333333333334,1,1,0,0,10,6,2,1,387,595728.38,354687.69,166507.41,0,0,0,2254.1958 +4182,5102,9051,9050,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.3120732,7.4572082,34,-1,15.698136,0,2,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1871676,7.0839577,65.23999999999999,41.59,54.37,54.8,8.333333333333334,1,1,0,0,4,6,2,1,387,595728.38,354687.69,166507.41,0,0,0,2254.1958 +4183,5103,9052,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9254198,8.9111996,0,0,0,-973.33496,0,3,3,2021,7,0,37,41,1,0,0,23.072151,23.072151,0,0,0,0,0,0,0,0,0,0,0,6.1055903,0,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,89,1653951.5,1453187.3,70743.117,0,0,0,2918.406 +4184,5104,9053,-9,9055,9054,1,1,18,0,0,0,2,2,-9,0,4,0,4.2996335,4.6011391,0,0,-888.44647,0,2,2,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5321679,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,2,1,242,167556.67,0,0,0,0,0,77.504051 +4184,5105,9054,9055,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2503223,8.2267942,0,6,7,-73.29628,0,-9,-9,2021,7,0,40,45,1,0,0,10.113659,10.113659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,7,11,4,1,339.5,64429.797,97651.469,15631.595,46422.98,8328.1777,0,2337.3606 +4184,5105,9055,9054,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.8637838,7.7344561,0,6,-7,-66.997322,0,2,2,2021,6,0,28,28,1,0,0,8.7566814,8.7566814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,339.5,64429.797,97651.469,15631.595,46422.98,8328.1777,0,2337.3606 +4185,5106,9056,9057,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.9901543,4.7492952,10,-4,79.352104,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2601418,4.6504641,49.94,58.01,32.6,29.79,8.333333333333334,1,1,0,1,5,5,2,1,254,154021.98,13299.586,164556.16,0,5602.5947,0,1464.1289 +4185,5106,9057,9056,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,4,-23.831833,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,28.49201,0,0,1,1,0,0,0,32.6,29.79,49.94,58.01,3.333333333333333,1,1,0,1,5,5,2,1,254,154021.98,13299.586,164556.16,0,5602.5947,0,1464.1289 +4186,5107,9058,-9,9061,9060,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2583,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9059,-9,9061,9060,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.5701,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9060,9061,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.6697922,9.9515495,0,9,-1,59.390865,0,2,2,2021,7,0,45,52,1,0,0,34.600704,34.600704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,56.95,50.51,53.71,8.333333333333334,1,1,0,0,13,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9061,9060,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,6.6418819,6.6500211,0,10,1,6.602777,0,3,3,2021,2,0,15,15,1,0,0,5.3931489,5.3931489,.05,.05,0,0,0,0,0,0,0,0,0,.97133923,0,50.51,53.71,49.41,56.95,8.333333333333334,1,1,0,0,9,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4187,5108,9062,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,7.6032372,7.5668287,0,0,0,-1184.2031,0,3,3,2021,21,9,30,40,1,9,0,8.1217146,8.1217146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.76,20.17,-9,-9,1.666666666666667,1,1,0,1,6,9,3,1,398,14841.538,-49386.391,0,0,0,0,1793.3986 +4188,5109,9063,9064,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.3816023,8.3046017,0,5,-4,-69.209076,0,2,2,2021,17,5,24,24,1,5,0,16.533209,16.533209,0,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.48,55.86,8.333333333333334,1,1,0,0,7,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4188,5109,9064,9063,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.7091045,8.6966753,0,9,4,-110.05947,0,2,2,2021,6,0,37,37,1,0,0,17.513767,17.513767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.48,55.86,40.77,61.04,8.333333333333334,1,1,0,0,8,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4188,5109,9065,-9,9063,9064,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.37512,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4189,5110,9066,9067,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.9056215,7.0019765,6,-1,-31.376507,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0992208,56.78,49.38,32.82,32.48,8.333333333333334,1,1,0,0,0,12,2,0,382.5,339816.22,205924.16,0,0,0,0,1407.3096 +4189,5110,9067,9066,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,6,1,38.535316,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,6.1001668,0,0,1,1,0,0,0,32.82,32.48,56.78,49.38,1.666666666666667,1,1,0,0,0,12,2,0,382.5,339816.22,205924.16,0,0,0,0,1407.3096 +4190,5111,9068,9069,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.6376448,5.6409101,49,3,-39.376408,0,-9,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3262277,5.2050905,33.22,17.55,52.23,55.6,8.333333333333334,1,1,0,0,0,5,2,0,442.5,275334.56,150410.75,133465.61,0,0,0,1625.3015 +4190,5111,9069,9068,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,49,-3,-101.04506,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.23,55.6,33.22,17.55,8.333333333333334,1,1,0,0,0,5,2,0,442.5,275334.56,150410.75,133465.61,0,0,0,1625.3015 +4191,5112,9070,9071,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,42,2,10.495155,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.32,32.77,50.2,39.38,5,1,1,0,0,8,12,3,1,367.5,294190.97,114162.28,126571.14,0,0,0,2322.8452 +4191,5112,9071,9070,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,7.6999602,7.5601406,0,42,-2,-4.9618311,0,-9,-9,2021,11,0,25,25,1,0,0,9.0110817,9.0110817,0,0,0,0,0,0,0,0,1,1,0,0,0,50.2,39.38,38.32,32.77,5,1,1,0,0,15,12,3,1,367.5,294190.97,114162.28,126571.14,0,0,0,2322.8452 +4192,5113,9072,9073,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.1996541,5.9933596,0,26,2,39.29631,0,3,3,2021,12,0,40,35,1,0,0,1.4078133,1.4078133,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,42.51,55.93,52.62,3.333333333333333,2,3,0,1,12,2,2,1,1172.5,0,0,0,0,0,0,493.43155 +4192,5113,9073,9072,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-163.50928,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.93,52.62,42.87,42.51,6.666666666666667,2,3,0,0,0,2,2,1,1172.5,0,0,0,0,0,0,493.43155 +4192,5114,9074,-9,9073,9072,1,1,22,0,0,0,1,1,1,0,4,6.4296918,5.9697819,0,0,0,-1113.6766,-9,2,2,2021,9,0,7,0,1,0,1,7.2721767,7.2721767,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,8.333333333333334,2,3,0,0,2,2,2,1,2357,-195515.25,0,0,0,0,1924.7217,804.09784 +4192,5115,9075,-9,9073,9072,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.2328,1,2,2,2021,6,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,10,2,3,0,0,2,2,1,1,653,0,0,0,0,0,0,-742.26532 +4192,5116,9076,-9,9073,9072,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1086.4371,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,45.9,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,848,41787.305,0,0,0,0,0,0 +4193,5117,9077,9078,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,0,0,23,7,24.599903,-9,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,53.8,47.57,45.67,8.333333333333334,2,3,0,0,11,9,4,1,1771.5,487511.94,514651.66,0,0,1399.9915,0,1332.5682 +4193,5117,9078,9077,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.2600327,8.2073822,0,23,-7,-41.748234,-9,2,2,2021,9,1,46,0,1,1,0,10.591089,10.591089,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,45.67,41.76,53.8,8.333333333333334,2,3,0,0,12,9,4,1,1771.5,487511.94,514651.66,0,0,1399.9915,0,1332.5682 +4193,5118,9079,9080,-9,-9,1,0,25,0,0,0,2,2,-9,0,1,8.0887108,7.8753872,0,1,-3,37.159904,-9,-9,-9,2021,29,11,47,0,1,11,0,6.3703537,6.3703537,0,0,0,0,0,0,0,0,0,0,0,.048464019,0,20.43,41.07,46.3,45.42,3.333333333333333,2,3,0,0,3,9,4,1,1129,57467.047,18408.094,378807.41,341097.38,28459.723,2609.1355,3125.8916 +4193,5118,9080,9079,9078,9077,1,1,28,0,0,0,1,1,-9,0,2,8.3245134,8.3214874,0,1,3,50.859772,-9,3,3,2021,17,5,40,0,1,5,0,10.355744,10.355744,.05,.05,0,0,0,0,0,0,0,0,0,5.2308345,0,46.3,45.42,20.43,41.07,5,2,3,0,0,3,9,4,1,1129,57467.047,18408.094,378807.41,341097.38,28459.723,2609.1355,3125.8916 +4194,5119,9081,9082,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,42,-5,5.4295421,0,2,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1743014,0,38.39,48.48,57.16,56.15,8.333333333333334,1,1,0,0,4,12,3,1,846.5,1428148.8,1297497,214672.19,0,0,0,2538.2566 +4194,5119,9082,9081,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.4635248,8.3880873,42,5,-163.53508,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2291222,8.1384325,57.16,56.15,38.39,48.48,8.333333333333334,1,1,0,0,8,12,3,1,846.5,1428148.8,1297497,214672.19,0,0,0,2538.2566 +4195,5120,9083,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2978382,8.2184601,0,0,0,-1005.9615,0,3,3,2021,9,1,37,37,1,1,0,10.739205,10.739205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.89,48.05,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,309,709867.44,577717.81,170603.45,48979.355,0,0,1068.809 +4196,5121,9084,9085,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.5760536,4.2193995,60,-2,-41.078495,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8799939,0,2,1,1,0,4.3236923,4.5191646,48.12,23.03,41.2,24.41,8.333333333333334,1,1,0,0,5,12,2,1,1277.5,411685.34,145016.25,286765.88,0,6432.1162,843.85175,4102.5938 +4196,5121,9085,9084,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0578146,7.2115583,60,2,69.076485,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,23.647034,0,14.5,1,1,0,0,7.5703268,41.2,24.41,48.12,23.03,8.333333333333334,1,1,0,0,0,12,2,1,1277.5,411685.34,145016.25,286765.88,0,6432.1162,843.85175,4102.5938 +4197,5122,9086,9087,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,9,7,1.6406739,0,2,3,2021,27,10,0,0,4,10,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,31.36,58.59,35.86,64.55,8.333333333333334,1,1,0,0,6,11,5,1,205.5,521983.63,122567.04,150519.5,0,0,0,3773.6958 +4197,5122,9087,9086,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8772221,8.7959099,0,9,-7,6.4127116,0,2,2,2021,9,1,41,0,1,1,0,22.165567,22.165567,0,0,0,0,0,0,0,2,1,1,0,3.3814228,0,35.86,64.55,31.36,58.59,8.333333333333334,1,1,0,0,8,11,5,1,205.5,521983.63,122567.04,150519.5,0,0,0,3773.6958 +4198,5123,9088,9089,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,8.357852,8.3005228,25,-4,132.30905,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6748667,7.9005737,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,5,4,1,386,1786021.4,1256423.5,101551.9,0,7167.4512,0,2515.9702 +4198,5123,9089,9088,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.9552784,6.9411325,25,4,-59.919064,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7258646,6.920022,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,5,4,1,386,1786021.4,1256423.5,101551.9,0,7167.4512,0,2515.9702 +4199,5124,9090,9091,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5505581,9.0137367,0,6,3,35.050732,0,2,2,2021,10,0,60,70,1,1,0,10.261357,10.261357,0,0,0,0,0,0,0,0,0,0,0,5.9150577,0,51,49,57.16,56.15,7,1,1,0,0,1,11,4,1,928.5,1234922.9,913264.06,423627.63,29905.471,0,0,2735.4668 +4199,5124,9091,9090,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,6,-3,105.67309,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,49,8.333333333333334,1,1,0,0,0,11,4,1,928.5,1234922.9,913264.06,423627.63,29905.471,0,0,2735.4668 +4199,5125,9092,-9,9091,9090,1,1,30,0,0,0,2,2,-9,0,4,6.4467621,6.4647746,0,0,0,-1002.0283,0,2,2,2021,10,0,60,70,1,1,1,1.5410241,1.5410241,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,11,2,1,1915,-119203.59,0,160363.47,48692.336,12983.905,0,-239.40834 +4200,5126,9093,9094,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.7239008,8.5945005,0,2,0,61.280544,0,2,2,2021,7,0,50,40,1,0,0,11.695935,11.695935,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,21.11,64.48999999999999,8.333333333333334,1,1,0,0,2,10,5,1,338.5,122326.66,41237.676,204292.77,90384.633,0,0,3460.6567 +4200,5126,9094,9093,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7689738,8.0626297,0,2,0,-135.55246,0,2,2,2021,14,2,39,37,1,2,0,8.1059952,8.1059952,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.11,64.48999999999999,54.69,57.47,8.333333333333334,1,1,0,0,12,10,5,1,338.5,122326.66,41237.676,204292.77,90384.633,0,0,3460.6567 +4201,5127,9095,9096,-9,-9,1,1,59,0,2,0,3,3,-9,0,2,7.1715255,7.0060205,0,38,0,-57.435555,0,3,2,2021,6,1,20,38,1,1,0,8.4039087,8.4039087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,73.97,17.6,50.1,51.7,6.666666666666667,2,3,0,0,10,5,3,1,454,201179.38,75115.813,147254.38,43066.047,0,0,1306.7676 +4201,5127,9096,9095,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,7.5791097,7.6811028,0,38,0,92.827232,0,3,2,2021,6,0,20,45,1,0,0,18.402115,18.402115,0,0,0,0,0,0,0,0,1,1,0,0,0,50.1,51.7,73.97,17.6,6.666666666666667,2,3,0,0,10,5,3,1,454,201179.38,75115.813,147254.38,43066.047,0,0,1306.7676 +4201,5128,9097,-9,9096,9095,1,1,32,0,2,0,2,2,-9,0,5,8.5742531,8.6676512,0,0,0,-967.87262,0,2,2,2021,7,0,54,53,1,0,1,9.7255011,9.7255011,0,0,0,0,0,0,0,0,1,1,0,0,0,57.44,52.09,-9,-9,5,2,3,0,0,6,5,5,1,162,225306.72,105063.63,-9467.0234,2193.7881,0,0,1784.1013 +4201,5129,9098,-9,9099,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.8733,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4201,5129,9099,-9,9096,9095,1,0,34,0,2,0,1,1,-9,0,4,7.9391131,7.9227924,0,0,0,-1001.3312,0,1,3,2021,15,4,29,28,1,4,1,10.699797,10.699797,0,0,0,0,0,0,0,0,1,1,0,1.0106239,0,40.96,61.14,-9,-9,6.666666666666667,2,3,0,0,7,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4201,5129,9100,-9,9099,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0692,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4202,5130,9101,9102,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.2264004,8.4227419,0,3,0,62.755917,0,-9,-9,2021,9,0,55,55,1,0,0,8.4430208,8.4430208,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,58.08,40.76,8.333333333333334,1,1,0,0,12,10,4,0,276,716408.25,504041.56,229318.5,0,506.96661,1543.0302,1684.6899 +4202,5130,9102,9101,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,3,0,177.18057,0,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.17885111,42,1,0,1,0,0,58.08,40.76,60.12,54.8,10,1,1,0,0,6,10,4,0,276,716408.25,504041.56,229318.5,0,506.96661,1543.0302,1684.6899 +4202,5131,9103,-9,-9,-9,1,0,21,0,0,0,2,2,1,1,5,0,0,0,0,0,-1100.2126,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,39.71,48.15,-9,-9,10,1,1,1,0,0,10,1,0,643,11112.101,0,0,0,1026.6243,0,941.51215 +4203,5132,9104,9105,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,36,9,67.747513,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,57.33,53.46,6.666666666666667,1,1,1,0,0,13,2,0,366,-14824.5,0,0,0,0,0,1967.97 +4203,5132,9105,9104,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.669591,6.7253289,0,36,0,1.4492433,0,3,3,2021,8,0,16,15,1,0,0,4.7325659,4.7325659,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.08,57.2,8.333333333333334,1,1,0,0,4,13,2,0,366,-14824.5,0,0,0,0,0,1967.97 +4204,5133,9106,-9,9107,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.001,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,642,-795.60889,0,0,0,0,0,465.32376 +4204,5133,9107,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1051.9868,1,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,56.19,-9,-9,6.666666666666667,1,1,0,0,9,1,1,0,642,-795.60889,0,0,0,0,0,465.32376 +4205,5134,9108,-9,9109,9110,1,0,22,0,0,0,2,2,-9,0,4,7.3036203,7.5405478,0,0,0,-946.50854,0,2,2,2021,6,0,40,45,1,0,1,5.001019,5.001019,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,4,3,1,1456,-50069.852,0,0,0,0,0,655.289 +4205,5135,9109,9110,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3723392,8.3934002,0,8,-5,25.074701,0,2,3,2021,9,0,37,0,1,0,0,12.912066,12.912066,0,0,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,50.34,56.4,8.333333333333334,1,1,0,0,14,4,5,1,1059,447371.03,185956.09,551244.25,270407.88,50800.926,0,3991.6443 +4205,5135,9110,9109,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7940578,9.3395147,0,8,5,33.977299,0,-9,-9,2021,12,0,45,43,1,0,0,28.920973,28.920973,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.34,56.4,57.16,56.15,6.666666666666667,1,1,0,0,14,4,5,1,1059,447371.03,185956.09,551244.25,270407.88,50800.926,0,3991.6443 +4206,5136,9111,9112,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.5644197,7.8595052,47,-2,69.579887,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3711925,7.5313411,56.94,43.99,55.21,43.87,8.333333333333334,1,1,0,0,10,6,5,1,887.5,865350.25,476394.78,240542.88,85772.609,0,0,5021.9365 +4206,5136,9112,9111,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.7006998,8.3524561,12,2,86.779587,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.8976386,8.2922564,55.21,43.87,56.94,43.99,8.333333333333334,1,1,0,0,10,6,5,1,887.5,865350.25,476394.78,240542.88,85772.609,0,0,5021.9365 +4207,5137,9113,9114,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.3356352,8.3688583,5.6483302,1,-1,-5.3795161,-9,-9,-9,2021,6,0,37,0,1,0,0,12.11799,12.11799,.05,.05,0,0,0,0,0,0,0,0,0,5.7456598,0,54.2,57.49,46.33,55.93,8.333333333333334,1,1,0,0,3,4,5,0,647.5,28727.887,-1798.7129,55717.285,54605.055,0,0,3824.9641 +4207,5137,9114,9113,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.2864094,8.1637745,0,1,1,-10.075294,-9,-9,-9,2021,14,3,37,0,1,3,0,10.964535,10.964535,.05,.05,.05,0,0,0,0,0,0,0,0,2.8653452,0,46.33,55.93,54.2,57.49,3.333333333333333,1,1,0,0,0,4,5,0,647.5,28727.887,-1798.7129,55717.285,54605.055,0,0,3824.9641 +4208,5138,9115,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-930.47388,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,12,1,0,1173,301734.53,0,0,0,0,0,-38.189495 +4209,5139,9116,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.8231249,6.9262691,0,0,-993.02942,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3397458,0,0,1,1,0,0,6.8525577,57.25,47.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,540,411703.5,84785.195,86258.266,0,0,0,764.19055 +4210,5140,9117,9118,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,8.1667995,7.6974282,40,-1,-36.947685,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0455894,8.0525045,56.94,43.99,57.06,57.76,8.333333333333334,1,1,0,0,8,6,4,1,1522.5,1436413.9,1085672.5,190434.19,0,7568.6367,0,3534.124 +4210,5140,9118,9117,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.6599555,7.9677048,40,1,-62.993958,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9131351,7.8691306,57.06,57.76,56.94,43.99,8.333333333333334,1,1,0,0,3,6,4,1,1522.5,1436413.9,1085672.5,190434.19,0,7568.6367,0,3534.124 +4211,5141,9119,9120,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,4.4826164,4.6036525,47,5,163.65407,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,10.015058,0,0,1,1,0,2.9801023,4.4633155,36.49,21.73,55.79,52.62,3.333333333333333,1,1,0,0,0,6,3,1,536.5,998621.63,901957.13,129884.08,0,0,0,2733.207 +4211,5141,9120,9119,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.919322,8.3218164,47,-5,17.825098,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.705409,8.3827877,55.79,52.62,36.49,21.73,3.333333333333333,1,1,0,0,0,6,3,1,536.5,998621.63,901957.13,129884.08,0,0,0,2733.207 +4212,5142,9121,9122,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,53,0,-63.455746,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9758508,0,60.48,33.44,28.2,34.5,8.333333333333334,1,1,0,0,11,10,2,1,512,794950.44,411279.88,325167.25,0,0,0,1570.7402 +4212,5142,9122,9121,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.1374316,7.1035929,53,0,55.782486,0,3,-9,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.259378,7.0415735,28.2,34.5,60.48,33.44,5,1,1,0,0,5,10,2,1,512,794950.44,411279.88,325167.25,0,0,0,1570.7402 +4213,5143,9123,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-942.60229,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.23,33.57,-9,-9,1.666666666666667,4,2,0,1,0,10,2,0,133,280559.63,0,0,0,0,0,789.33441 +4213,5144,9124,-9,9123,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1174.2977,0,3,-9,2021,12,2,0,37,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.29,55.07,-9,-9,1.666666666666667,1,1,1,1,1,10,1,0,573,-102954.6,0,0,0,0,0,616.49457 +4214,5145,9125,-9,9127,9126,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1013.8657,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,629,-274216.19,0,0,0,0,0,0 +4214,5146,9126,9127,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.7571383,7.7301364,0,6,8,34.501942,0,-9,-9,2021,9,0,50,50,1,0,0,5.995595,5.995595,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,50.01,55.31,6.666666666666667,1,1,0,0,6,13,4,1,741.5,389683.53,73588.102,109397.55,0,9746.7969,363.33713,2882.0908 +4214,5146,9127,9126,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1168203,7.7220273,0,6,-8,-68.747421,0,3,3,2021,9,0,38,50,1,0,0,9.1814709,9.1814709,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,46.33,55.93,8.333333333333334,1,1,0,0,14,13,4,1,741.5,389683.53,73588.102,109397.55,0,9746.7969,363.33713,2882.0908 +4214,5147,9128,-9,9127,9126,1,0,24,0,0,1,2,0,0,0,3,0,0,0,0,0,-985.30847,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6765761,0,41,56.99,-9,-9,8.333333333333334,1,1,0,0,8,13,1,1,123,-153523.33,0,0,0,0,0,1417.3789 +4214,5148,9129,-9,9127,9126,1,1,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-995.32898,-9,2,2,2021,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7546172,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,893,-79562.102,0,0,0,0,0,62.460773 +4215,5149,9130,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.781558,8.4383736,0,0,0,-1057.3882,0,-9,-9,2021,29,9,40,40,1,9,0,14.211074,14.211074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.21,59.33,-9,-9,1.666666666666667,1,1,0,0,13,12,5,1,437,171155.5,132556.03,336751.06,232008.31,23553.703,22725.346,2080.4495 +4216,5150,9131,9132,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,9.3031654,9.1888285,52,2,56.619392,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9413085,8.9953022,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,4,7,5,1,689.5,797007.38,152138.22,359888.72,23542.145,2747.0002,0,5742.0449 +4216,5150,9132,9131,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4687071,5.1780982,8,-2,-165.35785,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0597091,5.0847011,57.16,56.15,58.05,54.52,10,1,1,0,0,0,7,5,1,689.5,797007.38,152138.22,359888.72,23542.145,2747.0002,0,5742.0449 +4217,5151,9133,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2879419,8.2216301,0,0,0,-1041.0763,0,2,2,2021,11,0,37,38,1,0,1,11.497116,11.497116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,9,4,1,321,267786.78,-71063.039,55515.988,58227.594,0,5054.2715,1309.1204 +4218,5152,9134,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,9.3182487,9.3680382,0,0,0,-1003.2581,0,2,2,2021,9,0,90,46,1,0,0,17.951498,17.951498,.05,.05,0,0,0,0,0,0,0,0,0,7.7299657,0,49.04,55.86,-9,-9,5,1,1,0,0,8,8,5,0,1323,162911.61,-122978.18,0,0,0,0,4618.2134 +4219,5153,9135,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,6.106926,5.5944972,0,0,-940.88898,0,2,-9,2021,32,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3801117,0,16.04,23.99,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,416,221388.3,2035.4917,0,0,480.81839,0,2654.3213 +4220,5154,9136,9137,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.1068077,8.2162027,29,-7,55.060844,0,2,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.6763988,7.8959603,64.65000000000001,40.37,58.15,52.91,3.333333333333333,1,1,0,0,3,5,4,1,522.5,2372354.5,1417897,625446.44,-2805.0537,0,0,3782.3579 +4220,5154,9137,9136,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.3613071,8.0716591,31,7,43.052464,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.7445362,8.0032349,58.15,52.91,64.65000000000001,40.37,8.333333333333334,1,1,0,0,0,5,4,1,522.5,2372354.5,1417897,625446.44,-2805.0537,0,0,3782.3579 +4221,5155,9138,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2533302,8.010253,0,0,-1039.0577,0,2,2,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4774837,8.312623,40.85,58.2,-9,-9,6.666666666666667,1,1,0,0,12,5,4,1,2827,1521854.8,1154155.3,146716.52,0,0,0,2884.4814 +4221,5156,9139,-9,9138,-9,1,1,28,0,0,0,1,1,-9,0,4,7.7611732,8.1233082,0,0,0,-1058.0807,0,2,1,2021,11,0,30,35,1,2,0,13.950681,13.950681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,244,33960.602,-63095.391,0,0,0,0,2017.0864 +4222,5157,9140,-9,9141,9142,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.7369,0,2,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.14,60.41,-9,-9,1.666666666666667,1,1,0,0,2,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4222,5157,9141,9142,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9122057,8.1803865,0,8,-2,75.53331,-9,3,2,2021,34,12,40,0,1,12,0,8.1160746,8.1160746,0,0,0,0,0,0,0,2,1,1,0,6.6053648,0,17.45,66.57000000000001,57.09,46.7,3.333333333333333,1,1,0,0,12,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4222,5157,9142,9141,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.9967241,8.1486282,0,8,2,10.293988,-9,-9,-9,2021,11,0,45,0,1,0,0,8.380167,8.380167,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,17.45,66.57000000000001,6.666666666666667,1,1,0,0,12,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4223,5158,9143,9144,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.0473261,8.9356737,0,12,1,-59.544079,0,-9,-9,2021,10,0,43,42,1,0,0,22.956167,22.956167,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.98,59.35,50.08,19.72,8.333333333333334,1,1,0,0,14,10,4,1,418,438172.06,211085.95,346695.44,145879.52,10893.152,0,2493.4563 +4223,5158,9144,9143,-9,-9,1,0,44,0,1,0,1,1,-9,1,2,0,0,0,24,-1,87.178001,0,2,2,2021,9,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.08,19.72,46.98,59.35,8.333333333333334,1,1,0,0,0,10,4,1,418,438172.06,211085.95,346695.44,145879.52,10893.152,0,2493.4563 +4224,5159,9145,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.1832542,7.1497684,0,0,0,-960.69238,0,3,-9,2021,12,1,45,40,1,1,0,3.3555357,3.3555357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,60.44,-9,-9,5,1,1,0,0,7,2,2,1,1413,-42606.277,46113.383,0,0,0,0,356.08868 +4225,5160,9146,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.563,-9,-9,2,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.35,26.91,-9,-9,0,1,1,0,0,0,12,2,0,455,24229.453,0,0,0,0,0,546.40613 +4226,5161,9147,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1049.2338,0,1,2,2021,30,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,13.08,30.87,-9,-9,5,1,1,0,1,2,9,1,1,1220,54379.594,0,0,0,0,0,-388.22098 +4227,5162,9148,9149,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.0285501,7.667738,50,4,-18.088343,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1239786,40.29,38.19,53.14,45.74,6.666666666666667,1,1,0,0,2,9,3,1,453,1076622.3,587017.63,300792.13,0,0,0,2773.4314 +4227,5162,9149,9148,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.2261443,5.4523416,10,-4,7.7065468,0,2,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3540621,53.14,45.74,40.29,38.19,8.333333333333334,1,1,0,0,0,9,3,1,453,1076622.3,587017.63,300792.13,0,0,0,2773.4314 +4228,5163,9150,9151,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,0,0,0,39,9,-68.859856,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,55.79,52.62,6.666666666666667,1,1,0,0,0,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9151,9150,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.6804371,8.8045197,0,29,0,-53.524471,0,2,2,2021,5,0,43,40,1,0,0,20.596138,20.596138,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,1,1,0,0,12,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9152,-9,9151,9150,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.8754,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9153,-9,9151,9150,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1029.4635,-9,1,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4229,5164,9154,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1013.4525,0,3,2,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8332705,0,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,11,7,1,1,1914,0,0,0,0,0,0,1171.9553 +4230,5165,9155,9156,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.9040837,7.1287689,0,6,-1,-19.409472,0,3,3,2021,12,0,40,46,1,0,0,3.3328431,3.3328431,0,0,0,0,0,0,0,7,1,1,0,.2718057,0,47.07,53.97,59.82,14.29,3.333333333333333,1,1,0,0,6,12,2,1,883,365209.22,24536.076,165150.25,0,0,0,1381.4989 +4230,5165,9156,9155,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,5.5314441,5.9640875,6,1,-81.692986,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2547612,5.4787097,59.82,14.29,47.07,53.97,5,1,1,0,0,0,12,2,1,883,365209.22,24536.076,165150.25,0,0,0,1381.4989 +4231,5166,9157,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.5408874,7.3026743,0,0,-1133.5786,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6570501,7.6331105,63.98,38.08,-9,-9,10,1,1,0,0,1,13,3,1,233,292335.13,284505.78,71403.367,0,0,0,2241.2036 +4232,5167,9158,-9,9159,-9,1,1,17,0,0,1,2,0,0,0,4,0,4.7948384,5.2358103,0,0,-825.77124,-9,1,-9,2021,19,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5652318,0,56.75,49.4,-9,-9,6.666666666666667,1,1,0,0,0,8,3,0,315.5,361774.13,30137.594,258838.8,0,0,0,2928.9458 +4232,5167,9159,-9,-9,-9,1,0,47,0,0,0,1,1,-9,1,4,7.7797337,8.0089941,0,0,0,-996.93781,0,-9,-9,2021,9,0,22,21,1,0,0,16.611794,16.611794,0,0,.05,0,0,0,0,0,1,1,0,0,0,45.5,34.25,-9,-9,6.666666666666667,1,1,0,0,6,8,3,0,315.5,361774.13,30137.594,258838.8,0,0,0,2928.9458 +4232,5168,9160,-9,9159,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6136794,7.5522461,0,0,0,-934.33002,0,1,-9,2021,7,0,48,48,1,0,1,5.5063047,5.5063047,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,3.333333333333333,4,5,0,0,3,8,3,0,603,-104887.87,0,0,0,0,0,-566.85284 +4232,5169,9161,-9,9159,-9,1,1,21,0,0,0,2,2,-9,0,5,6.9846058,7.2378206,0,0,0,-910.0993,0,3,2,2021,9,1,20,0,1,1,1,7.1422081,7.1422081,0,0,0,0,0,0,0,7,1,1,0,0,0,48.8,54.86,-9,-9,8.333333333333334,1,1,0,0,4,8,2,0,908,0,0,0,0,0,0,1009.5247 +4233,5170,9162,9163,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,4.9790359,5.318419,0,3,5,-72.540977,0,-9,-9,2021,9,0,50,50,1,0,0,.31065392,.31065392,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,43.44,61.22,8.333333333333334,1,1,0,0,9,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4233,5170,9163,9162,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.302269,8.3460159,0,3,-5,109.92833,0,-9,-9,2021,17,6,45,43,1,6,0,10.011193,10.011193,0,0,0,0,0,0,0,0,1,1,0,.52782005,0,43.44,61.22,54.77,55.87,10,1,1,0,0,8,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4233,5170,9164,-9,9163,9162,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.3572,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4234,5171,9165,9166,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,7.4123163,6.8679652,0,7,3,-183.46533,0,-9,-9,2021,21,8,24,24,1,8,0,6.9667354,6.9667354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,52.18,44.3,55.28,1.666666666666667,1,1,0,0,4,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4234,5171,9166,9165,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,7,-3,23.472235,0,3,3,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,30.94,52.18,10,1,1,0,0,3,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4234,5171,9167,-9,9166,9165,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.17749,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4235,5172,9168,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.06329,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.07,19.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,884,-147856.66,0,0,0,0,0,1580.3561 +4236,5173,9169,-9,9170,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3447,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4236,5173,9170,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1046.4954,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.27,35.5,-9,-9,5,1,1,0,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4236,5173,9171,-9,9170,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-999.97162,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4237,5174,9172,-9,9173,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6715,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,0,1372,-34070.574,96856.859,0,0,0,4573.6943,5814.8779 +4237,5174,9173,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,9.1985264,9.3060875,6.349442,0,0,-1024.4771,0,-9,-9,2021,25,12,65,-9,1,12,0,22.406431,22.406431,.05,.05,0,0,0,0,0,0,0,0,0,6.094821,0,31.09,45.59,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,1372,-34070.574,96856.859,0,0,0,4573.6943,5814.8779 +4238,5175,9174,-9,9175,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.5237,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,328,27644.648,-38131.262,0,0,265.92731,0,2783.4512 +4238,5175,9175,-9,-9,-9,1,0,40,0,4,0,2,2,-9,0,1,6.9952869,7.6635361,6.4241576,0,0,-1034.542,0,2,2,2021,13,4,20,20,1,4,0,7.1871128,7.1871128,.05,.05,0,0,0,0,0,0,1,0,1,5.6602545,0,38.5,16.75,-9,-9,3.333333333333333,1,1,0,0,4,10,2,0,328,27644.648,-38131.262,0,0,265.92731,0,2783.4512 +4239,5176,9176,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.3040662,8.4948978,7.9128919,0,0,-968.13831,0,2,1,2021,13,4,47,47,1,4,0,5.2326183,5.2326183,0,0,0,0,0,0,0,0,1,1,0,9.0465975,6.8111916,43.17,59.99,-9,-9,6.666666666666667,1,1,0,0,12,8,4,1,905,1412513.4,1114426.9,377024.66,28742.469,166.71214,0,5928.2002 +4240,5177,9177,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-969.45782,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,8.8931265,0,53.240856,0,1,1,0,0,0,16.66,51.03,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,804,-14330.57,0,0,0,0,0,1703.4476 +4241,5178,9178,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.1021,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,1.5304086,3.8330631,18.876135,0,1,1,0,1.0820701,0,51,46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1910,-38967.059,0,175724.31,0,0,0,1037.1974 +4242,5179,9179,9180,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.3624439,8.169898,11,-8,-56.83215,0,2,1,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9445474,8.0171652,41.62,60.42,58.76,43.19,8.333333333333334,1,1,0,0,9,13,3,1,2353,2613403.3,857425.25,295045.34,0,0,0,3085.5835 +4242,5179,9180,9179,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.3881316,6.3710141,11,8,18.858641,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2871804,6.3437047,58.76,43.19,41.62,60.42,8.333333333333334,1,1,0,0,9,13,3,1,2353,2613403.3,857425.25,295045.34,0,0,0,3085.5835 +4243,5180,9181,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.2978964,7.3603439,0,0,0,-965.07062,0,-9,-9,2021,14,2,28,28,1,2,0,7.5352592,7.5352592,0,0,0,0,0,0,0,0,1,1,0,0,0,25.86,58.38,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,2979,-75485.445,0,0,0,0,0,1887.8682 +4243,5180,9182,-9,9181,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.37122,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,2979,-75485.445,0,0,0,0,0,1887.8682 +4244,5181,9183,9184,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,6.9655008,7.222713,0,3,-16,-42.236706,0,-9,-9,2021,12,0,20,20,1,0,0,7.2682877,7.2682877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.65,64.05,57.76,54.51,8.333333333333334,1,1,0,0,11,4,4,0,1421.5,379095.72,247611.19,98472.117,32641.195,0,1342.0742,2260.0288 +4244,5181,9184,9183,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.1045809,8.091485,0,3,16,-61.607178,0,2,2,2021,7,0,43,40,1,0,0,7.0116034,7.0116034,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,22.65,64.05,8.333333333333334,1,1,0,0,11,4,4,0,1421.5,379095.72,247611.19,98472.117,32641.195,0,1342.0742,2260.0288 +4245,5182,9185,9187,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.8723516,9.1578579,0,10,1,84.452919,0,-9,-9,2021,7,0,60,50,1,0,0,16.082388,16.082388,.05,.05,0,0,0,0,0,0,0,0,0,4.5764775,0,55.61,50.3,46.53,61.33,8.333333333333334,1,1,0,0,4,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9186,-9,9187,9185,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.07428,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9187,9185,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.9994211,8.9958191,0,20,-1,.045527752,0,1,1,2021,11,3,80,30,1,3,0,9.9797907,9.9797907,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,55.61,50.3,10,1,1,0,0,5,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9188,-9,9187,9185,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.70734,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4246,5183,9189,-9,9190,9191,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.8868,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4246,5183,9190,9191,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.3115168,6.2000327,0,3,-4,42.685863,0,2,-9,2021,6,0,8,8,1,0,0,6.2847357,6.2847357,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,56.34,46.17,10,1,1,0,0,4,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4246,5183,9191,9190,-9,-9,1,1,28,0,1,0,3,3,-9,0,2,7.4857054,7.5421085,0,3,4,-8.5133924,0,-9,-9,2021,9,0,26,16,1,0,0,7.3072791,7.3072791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.34,46.17,61.12,51.57,8.333333333333334,1,1,0,0,8,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4247,5184,9192,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,6.8786559,6.7463593,0,0,0,-1024.0037,-9,-9,-9,2021,25,11,37,0,1,11,0,3.5061255,3.5061255,.05,.05,0,0,0,0,0,0,0,0,0,3.6225064,0,43,53,-9,-9,5,2,3,0,0,4,4,2,1,944,203115.45,-30827.084,0,0,13882.077,0,-176.86691 +4248,5185,9193,9195,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.8305864,9.2252541,0,21,2,38.643585,0,-9,-9,2021,13,2,48,50,1,2,0,37.668087,37.668087,.05,.05,0,0,0,0,0,0,0,0,0,1.5304834,0,46.88,51.82,34.06,59.85,8.333333333333334,1,1,0,0,14,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9194,-9,9195,9193,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.6278,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9195,9193,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.5413718,7.9719667,0,23,-2,50.303062,0,2,2,2021,17,6,31,32,1,6,0,5.8940101,5.8940101,.05,.05,0,0,0,0,0,0,0,0,0,.17554441,0,34.06,59.85,46.88,51.82,8.333333333333334,1,1,0,0,8,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9196,-9,9195,9193,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1034.8765,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.22,56.91,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4249,5186,9197,9198,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5926514,8.7913971,0,1,-1,1.6990196,0,-9,-9,2021,7,0,52,45,1,0,0,12.096206,12.096206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,10,1,1,0,0,8,12,5,1,422,1901145.8,1485448.3,181836.19,5407.1343,1068.2299,1331.4775,4019.9426 +4249,5186,9198,9197,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.0346146,8.1666813,0,1,1,-58.185219,0,-9,-9,2021,6,0,40,40,1,0,0,8.5833836,8.5833836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,10,1,1,0,0,3,12,5,1,422,1901145.8,1485448.3,181836.19,5407.1343,1068.2299,1331.4775,4019.9426 +4250,5187,9199,9200,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.9566588,7.9103608,0,7,-2,48.5397,0,-9,-9,2021,10,0,30,37,1,1,0,7.2788558,7.2788558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,58,39.86,49.7,7,4,1,0,0,1,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9200,9199,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,6.9369998,6.6266642,0,7,2,66.727287,0,3,2,2021,10,3,13,23,1,3,0,9.1162624,9.1162624,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.86,49.7,48,58,5,1,1,0,0,10,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9201,-9,9200,9199,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9562,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9202,-9,9200,9199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.6483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4251,5188,9203,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.7023921,5.3416162,0,0,-986.25909,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,1.4223802,0,0,1,1,0,3.3024194,5.8971972,45.85,21.29,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,722,270016.25,171998.7,0,0,0,0,1173.7935 +4251,5189,9204,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.558198,7.2741714,0,0,-969.19971,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1836925,7.5929317,61.28,35.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,948,601841.13,439416.09,91455.367,0,0,0,1375.7856 +4252,5190,9205,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.6009536,4.5195251,0,0,-984.89972,0,2,1,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3713684,4.3009186,43.83,43.24,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,374,357856.09,0,283770.94,0,0,0,3100.1965 +4253,5191,9206,9207,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.040329,7.8032427,1,6,101.68327,-9,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0238414,7.6091418,64.23,44.69,60.29,31.45,10,1,1,0,0,0,4,3,0,399.5,647665.38,418093.25,361121.06,0,1733.2133,0,2279.0356 +4253,5191,9207,9206,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,1,-6,87.319702,0,3,3,2021,7,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,31.45,64.23,44.69,8.333333333333334,1,1,1,0,10,4,3,0,399.5,647665.38,418093.25,361121.06,0,1733.2133,0,2279.0356 +4254,5192,9208,-9,9211,9210,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-953.08356,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9209,-9,9211,9210,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-926.87817,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9210,9211,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,7.8189449,7.7936301,0,12,8,20.707289,0,2,2,2021,29,11,42,40,1,11,0,7.6545539,7.6545539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.38,68.36,44.02,60.7,3.333333333333333,1,1,0,0,12,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9211,9210,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.2854414,8.569273,0,12,-8,-33.833275,0,1,1,2021,11,0,31,22,1,0,0,16.289717,16.289717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,22.38,68.36,8.333333333333334,1,1,0,0,12,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4255,5193,9212,-9,9215,9213,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.0896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9213,9215,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7797813,8.725522,0,16,4,-18.799995,0,3,2,2021,8,0,40,48,1,0,0,15.980039,15.980039,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.6,51.61,8.333333333333334,1,1,0,0,12,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9214,-9,9215,9213,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.86292,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9215,9213,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.5167351,7.95331,0,16,-4,-112.99829,0,2,2,2021,12,0,31,35,1,0,0,7.0781698,7.0781698,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,54.79,55.86,6.666666666666667,1,1,0,0,8,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4256,5194,9216,9217,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.468657,7.0685472,38,9,-14.796082,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8906541,7.06847,58.3,52.91,54.1,59.11,10,1,1,0,0,7,11,5,1,664,2164787.5,2225160,0,0,0,10297.379,2900.9946 +4256,5194,9217,9216,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.5559311,8.3877354,6.3309107,38,0,-48.289303,0,2,2,2021,10,1,54,37,1,1,0,11.316406,11.316406,0,0,0,0,0,0,0,0,0,0,0,0,6.2422833,54.1,59.11,58.3,52.91,8.333333333333334,1,1,0,0,6,11,5,1,664,2164787.5,2225160,0,0,0,10297.379,2900.9946 +4257,5195,9218,-9,9219,9220,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.44623,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9219,9220,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,0,0,23,6,-22.957972,0,2,2,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1647973,0,42.81,51.78,51.73,58.82,8.333333333333334,1,1,0,0,6,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9220,9219,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0070858,8.073905,0,23,-6,-62.581898,0,2,2,2021,9,0,35,34,1,0,0,11.812795,11.812795,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.81,51.78,8.333333333333334,1,1,0,0,7,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9221,-9,9219,9220,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.53003,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4258,5196,9222,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.1364536,7.5852022,0,0,0,-831.91211,0,-9,-9,2021,12,1,40,36,1,1,0,9.181777,9.181777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,10,11,4,1,3362,217831.22,32972.898,141823.75,0,0,0,1272.3926 +4259,5197,9223,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1019.7336,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,214,32289.426,0,0,0,0,0,1118.7136 +4260,5198,9224,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8374157,8.3714437,0,0,0,-854.755,0,3,3,2021,10,0,69,69,1,0,0,7.488399,7.488399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.92,40.35,-9,-9,6.666666666666667,2,3,0,0,10,8,5,1,2072,592983.63,99488.813,573681.38,0,0,0,1869.8746 +4261,5199,9225,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1065.0822,0,2,3,2021,11,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.59,50.88,-9,-9,3.333333333333333,1,1,1,0,10,2,1,0,178,69338.727,-119874.44,0,0,0,0,-303.23972 +4262,5200,9226,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1030.6281,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.99,35.86,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,457,45890.762,0,0,0,0,0,122.7488 +4263,5201,9227,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.654912,8.461153,0,0,0,-957.85516,0,2,2,2021,10,0,50,52,1,1,0,10.649215,10.649215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,8,1,1,0,0,12,11,5,0,904,417712.91,280215.38,40638.797,24528.148,0,0,2112.1917 +4264,5202,9228,9229,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0198426,6.0447798,6,-3,26.073574,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6758646,6.153285,52.48,34.94,47.12,45.03,8.333333333333334,1,1,0,0,0,7,3,1,341,612596.56,321656.5,332358.38,0,1393.2736,0,3361.9146 +4264,5202,9229,9228,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.1336441,7.7045407,6,3,-68.624519,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2362425,8.0806026,47.12,45.03,52.48,34.94,8.333333333333334,1,1,0,0,0,7,3,1,341,612596.56,321656.5,332358.38,0,1393.2736,0,3361.9146 +4265,5203,9230,9232,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.5489464,8.4664049,0,15,2,-63.940739,0,2,2,2021,12,0,38,45,1,0,0,12.826828,12.826828,.05,.05,0,0,0,0,0,0,0,0,0,3.4208717,0,50.18,52.62,51.41,56.15,8.333333333333334,1,1,0,0,12,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9231,-9,9232,9230,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.06696,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9232,9230,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,0,0,0,15,-2,74.292671,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46647,0,51.41,56.15,50.18,52.62,8.333333333333334,1,1,0,0,2,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9233,-9,9232,9230,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-813.61743,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4266,5204,9234,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6891642,8.3296614,0,0,0,-1058.7369,0,3,3,2021,8,0,82,42,1,0,0,6.8906941,6.8906941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,12,9,5,1,987,702905.5,196609.75,433005.06,61390.906,1418.2515,926.45581,2420.4412 +4267,5205,9235,9236,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4124765,8.4950743,0,5,0,-24.598623,0,3,2,2021,12,2,91,91,1,2,0,4.4916406,4.4916406,.05,.05,0,0,0,0,3.7834687,0,0,0,0,0,0,41.61,58.14,49.28,52.09,6.666666666666667,1,1,0,0,12,7,5,1,649,177941.25,63016.695,240502.59,186608.44,32196.246,0,3191.3713 +4267,5205,9236,9235,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.0205765,8.0620928,0,5,0,30.336206,0,-9,-9,2021,14,3,44,38,1,3,0,8.5754061,8.5754061,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.28,52.09,41.61,58.14,10,1,1,0,0,5,7,5,1,649,177941.25,63016.695,240502.59,186608.44,32196.246,0,3191.3713 +4268,5206,9237,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.775053,8.8803816,0,0,0,-885.62653,0,2,2,2021,7,0,37,42,1,0,0,25.705196,25.705196,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,760,954396.06,682165.56,176944.67,51026.984,15067.257,0,2805.6296 +4269,5207,9238,9239,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5202551,8.8970909,0,34,0,-37.643112,0,2,-9,2021,6,0,41,48,1,0,0,17.314426,17.314426,.05,.05,0,0,0,0,0,0,0,0,0,1.3749413,0,62.11,40.77,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,705,257661.92,177724.61,121069.34,42711.273,5931.1382,0,3040.1626 +4269,5207,9239,9238,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.2826042,8.1208372,0,34,0,-28.384848,-9,-9,-9,2021,8,0,37,0,1,1,0,10.884093,10.884093,.05,.05,0,0,0,0,0,0,0,0,0,2.6278226,0,51.14,60.45,62.11,40.77,10,1,1,0,0,6,5,5,1,705,257661.92,177724.61,121069.34,42711.273,5931.1382,0,3040.1626 +4270,5208,9240,-9,9241,9242,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.99371,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9241,9242,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,0,4.9029813,5.1932354,13,-8,-76.336182,0,2,2,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2770534,0,0,71.97,49.77,50.15,3.333333333333333,1,1,0,0,1,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9242,9241,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,8.1696758,8.0420666,6.1525159,11,8,-18.389349,0,-9,2,2021,10,0,45,40,1,0,0,8.1869888,8.1869888,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2406292,49.77,50.15,0,71.97,8.333333333333334,1,1,0,1,10,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9243,-9,9241,9242,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.44507,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4271,5209,9244,9245,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,36,-1,-2.8764265,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.08,57.2,57.18,42.53,8.333333333333334,1,1,0,0,7,10,3,1,280.5,1425897.8,251748.86,369887.38,0,872.16687,0,4036.9138 +4271,5209,9245,9244,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.4811325,7.6316533,0,35,1,-13.973975,0,2,2,2021,11,0,40,40,1,0,0,5.7698884,5.7698884,0,0,0,0,0,0,0,2,0,0,0,8.626236,0,57.18,42.53,46.08,57.2,8.333333333333334,1,1,0,0,12,10,3,1,280.5,1425897.8,251748.86,369887.38,0,872.16687,0,4036.9138 +4271,5210,9246,9247,9244,9245,1,1,26,0,0,0,1,1,-9,0,3,8.6021109,9.0381908,0,1,1,31.703531,0,2,2,2021,7,0,40,40,1,0,0,23.038126,23.038126,0,0,0,0,0,0,0,0,0,0,0,5.5698476,0,52,54.51,42.79,64.22,5,1,1,0,0,6,10,5,1,617,211702.05,115257.03,120863.08,109844.55,12466.971,0,3479.9775 +4271,5210,9247,9246,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.2850323,8.7669287,0,1,-1,17.718151,-9,-9,-9,2021,20,7,14,0,1,7,0,55.537811,55.537811,0,0,0,0,0,0,0,0,0,0,0,4.6571088,0,42.79,64.22,52,54.51,6.666666666666667,1,1,0,0,4,10,5,1,617,211702.05,115257.03,120863.08,109844.55,12466.971,0,3479.9775 +4271,5211,9248,-9,9244,9245,1,1,25,0,0,0,1,1,-9,0,3,7.9787135,7.8900514,0,0,0,-906.7113,0,2,2,2021,11,3,50,22,1,3,1,5.9305568,5.9305568,0,0,0,0,0,0,0,0,0,0,0,0,0,45.93,52,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,792,2313.0813,0,0,0,10824.769,6760.9751,935.21411 +4271,5212,9249,-9,9244,9245,1,0,22,0,0,0,2,2,-9,0,4,8.129571,8.3714304,0,0,0,-874.42944,0,2,2,2021,11,0,40,45,1,0,1,9.485033,9.485033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,975,199403.69,73573.641,0,0,0,-42.497566,1179.2319 +4272,5213,9250,9253,-9,-9,1,1,49,1,2,0,2,2,-9,0,4,8.9216356,8.85536,0,7,8,118.60709,0,2,3,2021,6,0,40,44,1,0,0,16.477955,16.477955,.05,.05,0,0,0,0,0,0,1,1,0,7.5142941,0,57.16,56.15,54.1,59.11,1.666666666666667,1,1,0,0,9,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9251,-9,9253,9250,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4266,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9252,-9,9253,9250,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9783,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9253,9250,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,9.0423784,8.9424438,0,7,-8,65.97966,0,1,2,2021,6,0,38,43,1,0,0,24.810436,24.810436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4273,5214,9254,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6715326,8.9628363,7.5814428,0,0,-954.8902,0,2,3,2021,17,5,37,36,1,5,0,21.840696,21.840696,.05,.05,0,0,0,0,0,0,1,1,0,7.9501796,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,14,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4273,5214,9255,-9,9254,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.0107,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4273,5214,9256,-9,9254,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.69623,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4274,5215,9257,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.1873,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,829,143699.67,0,0,0,0,0,1948.8773 +4275,5216,9258,9259,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.7630711,8.5035124,0,6,8,127.4782,0,-9,-9,2021,11,1,38,41,1,1,0,17.079227,17.079227,0,0,0,0,0,0,0,0,0,0,0,5.3020782,0,51.05,54.79,42.86,37.52,8.333333333333334,1,1,0,0,6,2,5,1,1776,3151497,1400053,619356.88,0,0,0,4841.7803 +4275,5216,9259,9258,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.8666964,9.0185823,0,6,-8,-2.3474457,0,3,2,2021,15,4,45,44,1,4,0,15.598091,15.598091,0,0,0,0,0,0,0,0,0,0,0,7.3069859,0,42.86,37.52,51.05,54.79,6.666666666666667,1,1,0,0,10,2,5,1,1776,3151497,1400053,619356.88,0,0,0,4841.7803 +4276,5217,9260,9261,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9039097,7.7114458,0,5,4,-149.30075,0,-9,-9,2021,12,0,40,40,1,0,0,6.430542,6.430542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,40.7,32.53,54.08,6.666666666666667,1,1,0,0,3,9,5,1,2518,97460.719,50827.359,0,0,3766.1973,0,3001.6309 +4276,5217,9261,9260,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.5401897,8.5286684,0,5,-4,-132.93791,0,2,-9,2021,12,2,77,40,1,2,0,8.4055862,8.4055862,.05,.05,0,0,0,0,0,2,0,0,0,.96432024,0,32.53,54.08,46.21,40.7,6.666666666666667,1,1,0,0,11,9,5,1,2518,97460.719,50827.359,0,0,3766.1973,0,3001.6309 +4277,5218,9262,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2023954,7.3252025,0,0,-942.13934,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6879687,7.479177,56.7,42.76,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,206,460443,149324.58,219397.88,30470.066,0,0,1359.4963 +4278,5219,9263,9265,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.6555996,9.1948776,0,5,3,-143.65411,0,2,2,2021,9,0,52,52,1,0,0,36.364227,36.364227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.19,34.27,8.333333333333334,1,1,0,0,8,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9264,-9,9265,9263,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1146.7751,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9265,9263,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,6.5882654,7.1161051,6.0405784,5,-3,-50.398739,0,-9,-9,2021,12,3,6,0,1,3,0,20.261578,20.261578,0,0,0,0,0,0,0,0,0,0,0,6.668046,0,55.19,34.27,54.37,54.8,6.666666666666667,1,1,0,0,6,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9266,-9,9265,9263,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.09485,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4279,5220,9267,-9,9268,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-830.56024,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4279,5220,9268,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.8086405,7.0359292,0,0,0,-975.02905,0,2,2,2021,9,0,16,16,1,0,0,7.7318926,7.7318926,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4279,5220,9269,-9,9268,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.89917,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4280,5221,9270,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0663567,8.327775,0,0,0,-976.83984,0,3,3,2021,7,0,37,37,1,0,0,11.018083,11.018083,0,0,0,0,0,0,0,0,0,0,0,2.1465688,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,1036,62239.371,120736.77,0,0,0,0,843.6806 +4281,5222,9271,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6462307,8.444459,0,0,0,-1000.9026,0,2,2,2021,3,0,40,50,1,0,0,17.668034,17.668034,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,229,141323.78,0,0,0,0,0,1281.9138 +4282,5223,9272,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,5.6247072,5.0672779,0,0,-905.46832,0,-9,2,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2155447,23.02,29.13,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,357,454055.16,70865.945,177394.97,0,0,0,514.92401 +4283,5224,9273,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,1,0,5.0690207,5.3686318,0,0,-789.96912,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,5.3966885,0,38.559334,120,1,1,0,7.2550106,5.1649833,50.02,19.09,-9,-9,6,1,1,0,1,0,12,2,1,1991,-117483.46,0,0,0,0,0,1347.8707 +4284,5225,9274,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.862709,7.9440613,0,0,-1116.9171,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,4.5710483,0,20.678984,0,1,1,0,6.309989,7.8487086,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,199,1181618.4,544128.44,460935.06,0,0,837.11334,2352.5432 +4285,5226,9275,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.8916578,6.8745646,0,0,0,-1089.8398,0,2,2,2021,6,1,4,5,1,1,0,17.609516,17.609516,.05,.05,0,0,0,0,1.7856009,2,1,1,0,5.379827,0,59.29,49.68,-9,-9,10,1,1,0,0,12,6,2,1,997,577046,73573.352,600152.75,90472.672,0,0,1143.3629 +4286,5227,9276,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-935.42938,0,-9,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,66.84999999999999,11.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1640,-183496.48,0,0,0,0,0,1803.5138 +4287,5228,9277,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.7028775,7.7092938,0,0,0,-1031.4327,0,2,2,2021,19,7,37,34,1,7,0,6.3670416,6.3670416,0,0,0,0,0,0,0,0,0,0,0,0,0,46.56,50.26,-9,-9,5,1,1,0,0,10,4,3,0,177,-106291.12,43543.039,0,0,0,0,104.49082 +4287,5229,9278,-9,9277,-9,1,0,19,0,0,0,2,2,-9,0,3,7.2403331,7.4911456,0,0,0,-989.20862,0,2,-9,2021,7,0,35,30,1,0,1,4.8095074,4.8095074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.19,39.41,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,2081,-37635.895,101268.54,0,0,0,0,719.35663 +4288,5230,9279,9280,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.7221522,6.9025764,0,31,8,-56.014137,0,3,3,2021,17,6,16,38,1,6,0,5.9755139,5.9755139,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,65.08,20.13,52,53,10,2,3,0,0,9,4,3,1,529.5,734047.25,710963.38,136691.42,0,0,0,1212.7164 +4288,5230,9280,9279,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4829459,7.3332877,0,31,-8,-89.228279,0,-9,-9,2021,10,0,35,38,1,1,0,6.0362835,6.0362835,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,65.08,20.13,8,2,3,0,0,1,4,3,1,529.5,734047.25,710963.38,136691.42,0,0,0,1212.7164 +4289,5231,9281,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.1116333,8.5211306,7.6464443,0,0,-1088.0504,0,2,2,2021,19,7,30,20,1,7,0,9.6533861,9.6533861,.05,.05,0,0,0,0,0,0,1,1,0,8.4691229,0,43.2,59.97,-9,-9,6.666666666666667,1,1,0,0,13,10,4,0,1153,50582.195,-794.75476,0,0,640.01538,6112.4463,3066.3213 +4290,5232,9282,9283,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,63,-3,.90151989,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9735074,0,53.14,51.28,51.02,49.72,8.333333333333334,1,1,0,0,0,6,2,1,1614,125730.41,91329.227,101831.55,0,0,0,3121.5195 +4290,5232,9283,9282,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.0544162,7.3255153,63,3,110.79533,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2468429,7.2676182,51.02,49.72,53.14,51.28,5,1,1,0,0,0,6,2,1,1614,125730.41,91329.227,101831.55,0,0,0,3121.5195 +4291,5233,9284,9286,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,9.281435,8.8566723,0,2,-4,-79.709763,-9,2,2,2021,11,0,50,0,1,0,0,21.151037,21.151037,0,0,0,0,0,0,0,0,0,0,0,0,0,46.51,45.97,60.12,54.8,8.333333333333334,1,1,0,1,11,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4291,5233,9285,-9,9284,9286,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-909.19604,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4291,5233,9286,9284,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.4617233,8.1479931,0,2,4,83.214142,0,-9,-9,2021,9,0,45,38,1,0,0,10.514368,10.514368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,46.51,45.97,6.666666666666667,1,1,0,0,14,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4292,5234,9287,9289,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,8.1239309,7.9582376,0,17,-7,-56.249855,0,1,3,2021,10,2,34,39,1,2,0,14.463283,14.463283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,51,48,8.333333333333334,1,1,0,0,8,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5234,9288,-9,9287,9289,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.69952,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5234,9289,9287,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,7.5466361,7.5729475,0,17,7,-32.506542,0,2,2,2021,10,0,20,50,1,1,0,11.964431,11.964431,.05,.05,0,0,0,0,0,2,1,1,0,7.1420712,0,51,48,48.85,58.56,7,1,1,0,0,1,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5235,9290,-9,9287,9289,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1040.0444,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,1,304,77452.43,0,0,0,0,0,0 +4293,5236,9291,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.7406936,6.6925125,0,0,-931.9809,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8694363,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,86,459638.69,206037.23,225474.67,0,0,0,1819.2146 +4294,5237,9292,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.243742,8.1665421,0,0,0,-971.94586,0,2,2,2021,6,0,38,38,1,0,0,11.011239,11.011239,.05,.05,0,0,0,0,0,0,0,0,0,2.1694922,0,47.18,55.31,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,1448,-7885.2192,-6927.2563,0,0,0,0,2046.8469 +4295,5238,9293,9294,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.049367,9.0869999,0,11,-1,-88.469002,0,2,1,2021,10,0,55,55,1,1,0,19.713345,19.713345,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,38.7,59.52,7,2,3,0,0,1,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9294,9293,-9,-9,1,0,39,0,2,0,1,1,-9,1,3,0,0,0,11,1,-96.808304,0,3,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,.51658845,74.5,1,1,0,0,0,38.7,59.52,51,56,8.333333333333334,2,3,0,0,3,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9295,-9,9294,9293,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.1369,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9296,-9,9294,9293,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.9979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4296,5239,9297,9298,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8671789,8.1481161,0,2,-7,83.991615,0,-9,-9,2021,10,3,38,38,1,3,0,9.6276131,9.6276131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.24,41.16,51.24,58.84,8.333333333333334,1,1,0,0,3,4,4,1,681.5,246883.44,147846.98,173067.53,117678.7,0,0,2625.6831 +4296,5239,9298,9297,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.4537792,8.4949274,0,2,7,37.511852,0,2,2,2021,8,0,48,48,1,0,0,9.4121943,9.4121943,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.24,41.16,6.666666666666667,1,1,0,0,7,4,4,1,681.5,246883.44,147846.98,173067.53,117678.7,0,0,2625.6831 +4297,5240,9299,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,2,0,0,0,0,0,-936.37439,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.458334,13.432734,56.954807,0,1,1,0,1.2944162,0,54.48,19.42,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,569,164661.59,0,0,0,0,0,894.88281 +4298,5241,9300,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.3860488,5.4737086,0,0,-949.75177,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9399319,5.3859315,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,336,368408.75,37164.5,353476.84,0,0,0,870.05798 +4299,5242,9301,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1043.9741,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.7,43.72,-9,-9,5,1,1,0,0,0,10,1,0,742,-16810.713,0,0,0,0,0,360.89917 +4299,5243,9302,-9,9301,-9,1,0,28,0,0,0,2,2,-9,0,4,7.338429,7.2364264,0,0,0,-996.28259,0,2,3,2021,11,0,48,50,1,2,1,3.0401943,3.0401943,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,0,3267,-37872.137,-16632.518,0,0,0,0,1005.8649 +4299,5244,9303,-9,9301,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-919.07629,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,10,1,0,173,-315937.63,0,0,0,0,0,0 +4299,5245,9304,-9,9301,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2216177,7.9965301,0,0,0,-962.50641,0,3,-9,2021,11,0,37,20,1,2,1,10.44733,10.44733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,4,0,353,138438.28,-45557.848,0,0,0,0,1248.3105 +4299,5246,9305,-9,9301,-9,1,1,23,0,0,0,2,2,-9,0,4,7.9361839,7.5798378,0,0,0,-1045.8405,0,2,3,2021,7,0,45,48,1,0,1,6.5536656,6.5536656,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,1145,121571.97,-14788.602,0,0,0,0,1625.4312 +4300,5247,9306,9307,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-62.218189,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5927258,0,56.35,51.16,52.34,56.95,8.333333333333334,1,1,0,0,11,5,3,1,1027.5,753313.88,300092.13,244924.5,0,0,0,1680.5281 +4300,5247,9307,9306,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9682336,7.4797053,11,2,27.405638,0,3,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9336267,7.6297674,52.34,56.95,56.35,51.16,8.333333333333334,1,1,0,0,12,5,3,1,1027.5,753313.88,300092.13,244924.5,0,0,0,1680.5281 +4301,5248,9308,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.0062556,6.9860206,0,0,-964.81848,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0319829,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,526,39401.414,38385.797,0,0,0,0,1547.0698 +4302,5249,9309,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-987.10242,-9,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.62,27.7,-9,-9,5,1,1,0,1,0,13,1,0,110,-146844,8687.9824,0,0,738.80536,0,553.36316 +4303,5250,9310,9311,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,9.0837126,9.3425407,45,-3,-71.617752,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8601551,62.99,44.02,57.06,57.76,10,1,1,0,0,8,6,5,1,890,887536.88,717887.63,118878.02,16126.887,0,0,4832.8594 +4303,5250,9311,9310,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,0,0,45,3,-6.4482393,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.99,44.02,1.666666666666667,1,1,0,0,4,6,5,1,890,887536.88,717887.63,118878.02,16126.887,0,0,4832.8594 +4304,5251,9312,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,0,6.5662341,7.1099043,0,0,-1055.2235,0,-9,-9,2021,24,12,0,21,3,12,0,0,0,0,0,0,0,0,0,0,120,1,0,1,6.4873323,0,24.28,42.81,-9,-9,5,1,1,0,0,10,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4304,5251,9313,-9,9312,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.37543,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4304,5251,9314,-9,9312,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1029.1332,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4305,5252,9315,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.0333424,7.8530164,0,0,0,-1015.1513,0,2,3,2021,11,0,40,40,1,0,0,8.6679182,8.6679182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,1581,188609.7,131298.31,0,0,5033.0874,0,1708.5437 +4305,5253,9316,-9,9315,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1131.17,-9,2,-9,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.690824,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,225,-275896.84,0,0,0,0,0,1699.4314 +4306,5254,9317,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.3961344,8.4211006,6.1141214,0,0,-973.21393,0,2,2,2021,6,0,35,35,1,0,0,15.545394,15.545394,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5412445,60.12,54.8,-9,-9,0,1,1,0,0,13,4,5,1,580,1374056.3,847342,335509.63,0,943.25964,0,2593.7283 +4307,5255,9318,9319,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.2513628,7.9956732,0,1,-1,-26.85074,-9,3,3,2021,9,1,30,0,1,1,0,10.899887,10.899887,0,0,0,0,0,0,0,0,1,1,0,0,0,51.33,24.03,38.51,48.9,5,1,1,0,0,3,13,3,1,225,375304.13,226475.81,0,0,17880.063,0,1151.63 +4307,5255,9319,9318,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,1,1,27.359598,-9,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,48.9,51.33,24.03,6.666666666666667,1,1,0,0,0,13,3,1,225,375304.13,226475.81,0,0,17880.063,0,1151.63 +4307,5256,9320,-9,9319,9318,1,1,18,0,0,1,3,0,-9,0,4,0,0,0,0,0,-984.97345,-9,2,3,2021,15,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,834,-34009.434,0,0,0,0,0,12.084229 +4308,5257,9321,9322,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,9.2530479,9.2249613,44,-1,142.7701,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.4140377,8.5091143,49.04,55.86,28.16,65.32000000000001,6.666666666666667,1,1,0,0,0,2,5,1,949.5,818632.75,778699.5,184033.47,89199.922,3518.7373,0,6477.6182 +4308,5257,9322,9321,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9326935,6.8324084,44,1,-128.72983,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6075802,6.9555693,28.16,65.32000000000001,49.04,55.86,6.666666666666667,1,1,0,0,0,2,5,1,949.5,818632.75,778699.5,184033.47,89199.922,3518.7373,0,6477.6182 +4309,5258,9323,9324,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.5896149,7.7880006,0,25,-4,-71.396927,0,2,2,2021,7,0,33,30,1,0,0,8.8621035,8.8621035,0,0,0,0,0,0,0,0,0,0,0,6.6231046,0,54.74,57.22,53.14,51.28,10,1,1,0,0,13,4,5,1,1550,915600.88,635008.88,217436.09,27293.113,0,0,3456.9509 +4309,5258,9324,9323,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6939621,8.5234375,0,23,4,-28.192183,0,2,2,2021,8,0,43,44,1,0,0,14.809165,14.809165,.05,.05,0,0,0,0,0,0,0,0,0,7.069756,0,53.14,51.28,54.74,57.22,8.333333333333334,1,1,0,0,14,4,5,1,1550,915600.88,635008.88,217436.09,27293.113,0,0,3456.9509 +4309,5259,9325,-9,9323,9324,1,1,18,0,0,0,2,2,-9,0,4,8.1468611,7.9977818,0,0,0,-1064.8439,0,2,2,2021,9,1,70,0,1,1,1,5.9593511,5.9593511,.05,.05,0,0,0,0,0,2,0,0,0,.18280584,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,334,227383.02,-48848.531,0,0,3365.895,0,1626.2458 +4310,5260,9326,-9,9327,9328,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.8702,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4310,5260,9327,9328,-9,-9,1,0,33,0,1,0,2,2,-9,1,4,8.665905,8.3144035,0,8,-4,24.864536,0,2,2,2021,21,6,35,27,1,6,0,14.032168,14.032168,0,0,0,0,0,0,0,0,1,1,0,7.0399752,0,39.5,28.84,53.07,52.7,8.333333333333334,1,1,0,0,10,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4310,5260,9328,9327,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.3563881,8.5363445,0,12,4,2.7582557,0,2,2,2021,11,1,40,39,1,1,0,15.622286,15.622286,.05,.05,0,0,0,0,0,0,1,1,0,2.6871841,0,53.07,52.7,39.5,28.84,8.333333333333334,1,1,0,0,11,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4311,5261,9329,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5988889,6.7681575,0,0,-1034.5979,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3923945,6.6222696,69.64,23.12,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,561,663208.81,-11250.891,381576.66,0,0,0,424.29871 +4312,5262,9330,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.0893922,7.5621371,6.1932807,0,0,-892.30621,0,2,2,2021,17,5,20,20,1,5,0,7.1240563,7.1240563,.05,.05,0,0,0,0,0,0,1,1,0,6.3817811,0,27.97,60.5,-9,-9,5,1,1,0,0,10,6,2,1,713.5,166054.53,-17477.008,0,0,5690.6182,-122.71037,3303.6221 +4312,5262,9331,-9,9330,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.76917,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,713.5,166054.53,-17477.008,0,0,5690.6182,-122.71037,3303.6221 +4313,5263,9332,-9,9333,9334,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6573,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5263,9333,9334,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4367285,7.870204,0,2,-2,28.838688,0,2,2,2021,13,1,25,23,1,1,0,10.085463,10.085463,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,29.59,67.61,6.666666666666667,1,1,0,0,11,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5263,9334,9333,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,5.3462725,5.1731153,0,2,2,-.7784794,0,3,3,2021,20,9,65,50,1,9,0,.27001873,.27001873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.59,67.61,41.34,56.62,5,1,1,0,0,13,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5264,9335,-9,9333,9334,1,0,18,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1069.1351,1,2,3,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1184416,0,21.62,58.11,-9,-9,6.666666666666667,1,1,0,0,2,7,1,0,960,152038.66,0,0,0,0,0,1129.5659 +4314,5265,9336,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1006.2756,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.64,45.06,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,412,-79875.148,0,0,0,0,0,600.79034 +4315,5266,9337,9338,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,0,0,0,27,-13,0,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.72,39.81,44.02,27.27,8.333333333333334,3,4,0,0,0,8,1,0,328,122969.94,-25900.822,139402.56,0,0,0,1536.0142 +4315,5266,9338,9337,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,27,13,0,-9,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,27.27,39.72,39.81,8.333333333333334,3,4,1,0,9,8,1,0,328,122969.94,-25900.822,139402.56,0,0,0,1536.0142 +4315,5267,9339,-9,9337,9338,1,0,29,0,0,0,2,2,-9,1,3,0,0,0,0,0,-861.35706,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,43.47,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,682,22938.029,0,0,0,0,0,340.0701 +4315,5268,9340,-9,9337,9338,1,1,27,0,0,0,1,1,-9,0,3,8.3942623,8.81458,0,0,0,-986.08575,-9,2,2,2021,5,0,50,0,1,0,1,11.775368,11.775368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.85,45.79,-9,-9,6.666666666666667,3,4,0,0,5,8,5,0,405,-29707.383,-17307.715,0,0,0,0,2199.4602 +4315,5269,9341,-9,9337,9338,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1047.8136,-9,3,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,2,8,1,0,609,-87525.438,0,0,0,35478.48,0,-826.96796 +4316,5270,9342,-9,9345,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-939.44104,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9343,-9,9345,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.6868,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9344,-9,9345,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-825.19421,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9345,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,7.3479967,7.5956426,0,0,0,-1078.848,0,3,-9,2021,15,3,19,23,1,3,0,9.0512838,9.0512838,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,58.13,-9,-9,1.666666666666667,1,1,0,1,12,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4317,5271,9346,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.0684996,7.1573024,0,0,-1090.67,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3758564,59.78,35.9,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,553,755573.63,107202.55,255038.67,0,0,0,995.96924 +4318,5272,9347,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.0687704,8.0443001,0,0,0,-1052.65,0,2,3,2021,5,0,35,40,1,0,0,9.6564722,9.6564722,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,44.16,-9,-9,8.333333333333334,1,1,0,0,12,2,4,0,1354,842667.25,600957.81,95844.891,0,11695.088,676.10278,1512.5616 +4319,5273,9348,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1015.4443,0,3,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,38.09,-9,-9,5,1,1,0,1,0,4,1,0,817,25490.313,0,125649.61,0,0,0,1229.5485 +4320,5274,9349,-9,9350,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.45465,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4320,5274,9350,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2785969,8.1968203,6.0589514,0,0,-1079.9337,0,-9,-9,2021,8,1,33,33,1,1,0,11.018695,11.018695,.05,.05,0,0,0,0,0,0,1,1,0,5.4883504,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,1,8,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4320,5274,9351,-9,9350,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.2139,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4321,5275,9352,9353,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,61,-3,17.992023,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,23.76133,0,0,1,1,0,0,0,65.93000000000001,15.9,64.37,53.06,10,1,1,0,0,0,11,2,0,758,343381.84,97623.648,93389.695,0,0,0,2004.6355 +4321,5275,9353,9352,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,5.7802215,6.0249248,61,3,-50.910004,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.9556541,64.37,53.06,65.93000000000001,15.9,10,1,1,0,0,0,11,2,0,758,343381.84,97623.648,93389.695,0,0,0,2004.6355 +4322,5276,9354,9355,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.1119828,7.0801258,41,1,100.62155,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.5357256,0,2,1,1,0,6.8825374,6.7884912,45.71,26.92,52,47,1.666666666666667,1,1,0,0,0,9,3,1,522,692615.06,361116,280168.94,0,0,0,3500.7012 +4322,5276,9355,9354,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2942553,7.0048623,41,-1,-25.920815,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8135562,7.0577397,52,47,45.71,26.92,7,1,1,0,0,0,9,3,1,522,692615.06,361116,280168.94,0,0,0,3500.7012 +4323,5277,9356,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4175358,7.4450245,0,0,0,-930.53851,0,3,3,2021,12,0,29,25,1,0,0,8.883791,8.883791,0,0,0,0,0,0,0,0,1,1,0,0,0,56.48,45.49,-9,-9,6.666666666666667,1,1,0,0,13,13,3,1,445,129343.77,0,44071.238,0,0,0,880.55664 +4324,5278,9357,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4145017,7.0492387,0,0,-907.75092,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0988307,7.1497579,46.68,40.55,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,6121,720106,149897.89,370575.25,24856.158,0,0,446.94598 +4325,5279,9358,9359,-9,-9,1,0,40,0,0,0,1,1,-9,1,3,0,0,0,4,-4,42.831581,0,2,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.37796691,0,.93,66.05,33.55,62.9,5,1,1,0,0,12,11,3,1,1064.5,103599.76,0,113957.17,50404.805,6107.624,2190.4385,852.68945 +4325,5279,9359,9358,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.9843602,7.8861709,0,4,4,-189.31223,0,-9,-9,2021,15,4,39,39,1,4,0,8.4143801,8.4143801,0,0,0,0,0,0,0,0,0,0,0,0,0,33.55,62.9,.93,66.05,6.666666666666667,1,1,0,0,7,11,3,1,1064.5,103599.76,0,113957.17,50404.805,6107.624,2190.4385,852.68945 +4326,5280,9360,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6818361,8.6203499,0,0,0,-1037.5649,0,2,2,2021,11,0,56,60,1,0,0,10.117496,10.117496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,1,7,10,5,0,630,747440.06,706045.06,81940.789,12185.358,0,0,1438.2517 +4327,5281,9361,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.9122858,8.7669878,0,0,0,-979.59045,0,2,2,2021,8,1,32,32,1,1,0,29.722763,29.722763,.05,.05,0,0,0,0,0,0,0,0,0,3.1941602,0,54.61,43.01,-9,-9,5,1,1,0,0,11,11,5,1,897,1607003.1,1441767.9,376584,90201.859,0,0,1932.9496 +4328,5282,9362,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.2418118,8.2666893,0,0,0,-972.40765,0,3,3,2021,7,0,30,38,1,0,0,16.006243,16.006243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.74,53.75,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,2432,29345.473,30989.807,139886.94,78047.891,9099.9453,0,2163.8821 +4329,5283,9363,9364,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.6130366,8.1326466,0,7,1,114.71963,0,-9,-9,2021,7,0,38,40,1,0,0,8.954546,8.954546,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,12,13,4,0,350.5,-13555.297,17041.121,0,0,0,7196.8418,1671.0514 +4329,5283,9364,9363,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9864073,8.0566216,0,7,-1,-155.90741,0,3,3,2021,8,0,32,40,1,0,0,8.817852,8.817852,0,0,0,0,0,0,0,0,0,0,0,.64983326,0,54.79,55.86,52.43,55.57,8.333333333333334,1,1,0,0,10,13,4,0,350.5,-13555.297,17041.121,0,0,0,7196.8418,1671.0514 +4329,5284,9365,-9,9364,9363,1,1,22,0,0,0,2,2,-9,0,5,7.8671646,7.7150126,0,0,0,-973.224,0,2,2,2021,6,0,36,38,1,0,1,8.5331964,8.5331964,0,0,0,0,0,0,0,0,0,0,0,1.5312774,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,361,-31306.66,0,0,0,0,0,.2502116 +4330,5285,9366,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.7213864,7.9918551,0,0,0,-994.60889,0,3,3,2021,5,0,36,37,1,0,0,9.537097,9.537097,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,113,206130.23,86566.836,48739.664,0,4794.4185,0,2308.019 +4331,5286,9367,9368,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2943888,8.3155928,0,20,6,18.363672,0,2,2,2021,10,0,40,44,1,0,0,13.622827,13.622827,.05,.05,0,0,0,0,0,0,1,1,0,1.4610784,0,48.06,50.73,28.55,47.68,6.666666666666667,3,4,0,0,8,8,5,1,816.5,5836439,5032966,606280.44,114323.97,0,4183.6895,4109.5083 +4331,5286,9368,9367,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.9829063,8.8827362,0,22,-6,5.7862496,0,-9,-9,2021,26,11,50,48,1,11,0,15.831714,15.831714,.05,.05,0,0,0,0,0,0,1,1,0,2.3683987,0,28.55,47.68,48.06,50.73,8.333333333333334,1,1,0,0,8,8,5,1,816.5,5836439,5032966,606280.44,114323.97,0,4183.6895,4109.5083 +4331,5287,9369,-9,9368,9367,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1171.0963,-9,1,2,2021,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4125597,0,46.44,59.62,-9,-9,6.666666666666667,4,2,1,0,0,8,1,1,698,16948.139,0,0,0,0,0,-274.10135 +4331,5288,9370,-9,9368,9367,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.98657,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,4,2,0,0,1,8,1,1,455,-4.1979194,0,0,0,26566.004,0,561.52972 +4332,5289,9371,9372,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,3.8755307,3.5684743,58,-4,48.748848,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3253016,3.7523546,47.48,44.33,59.04,54.12,8.333333333333334,1,1,0,0,0,2,2,1,351,162629.44,-24231.35,109799.98,0,0,0,808.37665 +4332,5289,9372,9371,-9,-9,1,0,87,0,0,0,3,3,-9,0,5,0,0,0,58,4,81.288223,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8808546,0,59.04,54.12,47.48,44.33,10,1,1,0,0,0,2,2,1,351,162629.44,-24231.35,109799.98,0,0,0,808.37665 +4333,5290,9373,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7774229,7.9799023,0,0,0,-956.20337,0,2,2,2021,8,2,41,41,1,2,0,9.0133915,9.0133915,.05,.05,.05,0,0,0,0,0,0,0,0,6.5787935,0,30.2,62.35,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,240,556736.69,100202.76,264975.63,0,0,0,1998.4344 +4334,5291,9374,9375,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.6583705,7.6397686,0,18,-3,-53.333851,0,2,2,2021,9,0,29,30,1,0,0,8.1837454,8.1837454,.05,.05,0,0,0,0,0,0,1,1,0,3.6541746,0,45.32,61.53,52,56,8.333333333333334,1,1,0,0,8,6,5,1,892,1257067.9,962249.5,206927.11,65898.141,0,0,4239.7988 +4334,5291,9375,9374,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.0693369,8.8716249,0,18,3,115.62051,0,2,2,2021,9,0,45,50,1,1,0,20.712955,20.712955,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,45.32,61.53,7,1,1,0,0,1,6,5,1,892,1257067.9,962249.5,206927.11,65898.141,0,0,4239.7988 +4335,5292,9376,9377,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.321888,8.0299578,6,2,20.086788,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9211286,8.3993206,55.69,45.86,57.24,41.16,8.333333333333334,1,1,0,0,0,5,4,1,569,1642518.3,788852.5,279172.63,0,0,0,3070.4255 +4335,5292,9377,9376,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0650072,6.9334135,6,-2,9.0597458,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,10.961775,0,0,1,1,0,1.7645937,6.9073892,57.24,41.16,55.69,45.86,8.333333333333334,1,1,0,0,0,5,4,1,569,1642518.3,788852.5,279172.63,0,0,0,3070.4255 +4336,5293,9378,9379,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.0252371,7.5452194,55,3,57.536366,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6196671,49.58,55.59,50,46,6.666666666666667,1,1,0,0,0,11,3,1,432,1513506,825656.94,643655.56,0,0,0,3354.2188 +4336,5293,9379,9378,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.3699102,7.2021246,55,-3,73.935356,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3198199,50,46,49.58,55.59,7,1,1,0,0,0,11,3,1,432,1513506,825656.94,643655.56,0,0,0,3354.2188 +4337,5294,9380,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,4,7.2372279,7.8717346,7.2062984,0,0,-1011.9474,0,2,1,2021,11,2,40,60,1,2,0,3.2101359,3.2101359,.05,.05,0,0,0,0,0,42,1,1,0,6.9456768,0,28.95,62.45,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,351,88273.211,67140.617,0,0,0,0,3466.9688 +4337,5294,9381,-9,9380,-9,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-911.77563,-9,2,-9,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5655823,0,12.8,56.82,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,351,88273.211,67140.617,0,0,0,0,3466.9688 +4338,5295,9382,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.3391552,7.2346015,0,0,-1034.2626,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5075622,7.0074868,57.33,53.46,-9,-9,10,1,1,0,0,3,2,3,1,355,288850.56,116028.64,164605.77,0,0,0,1378.8746 +4339,5296,9383,-9,9385,9384,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1816,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5296,9384,9385,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.2975769,8.2288876,0,17,9,133.05182,0,3,2,2021,6,0,40,38,1,0,0,13.588532,13.588532,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,45.91,42.53,8.333333333333334,2,3,0,0,13,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5296,9385,9384,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,0,0,0,17,0,-64.830009,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,42.53,56.57,57.78,8.333333333333334,2,3,0,0,0,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5297,9386,-9,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,7.7116385,6.8363609,0,0,0,-1000.117,0,-9,-9,2021,12,0,20,48,1,0,0,9.8065224,9.8065224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37,47.76,-9,-9,5,2,3,0,0,13,8,3,0,123,89520.883,-18385.047,0,0,0,0,1154.7329 +4340,5298,9387,9388,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.9991846,8.7667789,0,4,-4,-124.11124,0,2,3,2021,16,5,48,48,1,5,0,17.056679,17.056679,.05,.05,0,0,0,0,0,0,0,0,0,6.3993649,0,43.43,54.3,39.33,60.15,6.666666666666667,1,1,0,0,7,5,5,1,548,1025639.8,648124.38,469879.75,180887.81,0,0,5075.7344 +4340,5298,9388,9387,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8067379,8.6686583,0,4,4,-35.338398,0,-9,-9,2021,12,0,43,43,1,0,0,22.077784,22.077784,.05,.05,0,0,0,0,0,0,0,0,0,2.3449292,0,39.33,60.15,43.43,54.3,5,1,1,0,0,6,5,5,1,548,1025639.8,648124.38,469879.75,180887.81,0,0,5075.7344 +4341,5299,9389,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.6307364,7.6142211,0,0,-1133.0536,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4028687,7.9340954,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,221,509954.22,314094.16,255110.89,0,0,0,1373.9653 +4342,5300,9390,9392,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7572231,8.5893822,0,17,-2,-52.325096,0,2,2,2021,10,2,35,38,1,2,0,17.157818,17.157818,.05,.05,0,0,0,0,0,0,1,1,0,2.3413031,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9391,-9,9390,9392,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.62469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9392,9390,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.1048708,8.9001999,0,17,2,140.85609,0,2,2,2021,9,0,46,47,1,0,0,16.881899,16.881899,.05,.05,0,0,0,0,0,0,1,1,0,5.3950419,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,11,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9393,-9,9390,9392,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6027,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4343,5301,9394,9397,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.7887449,8.611845,4.2155652,12,0,78.747818,0,-9,-9,2021,10,0,43,44,1,1,0,13.975406,13.975406,.05,.05,0,0,0,0,0,0,1,1,0,4.3758655,0,49,57,48.77,60.16,7,1,1,0,0,13,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9395,-9,9397,9394,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.9731,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9396,-9,9397,9394,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0992,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9397,9394,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,8.2572241,8.1429863,0,12,0,13.593581,0,2,2,2021,12,0,24,24,1,0,0,17.235582,17.235582,0,0,0,0,0,0,0,0,1,1,0,7.6072693,0,48.77,60.16,49,57,8.333333333333334,1,1,0,0,13,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9398,-9,9397,9394,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1091,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4344,5302,9399,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.127316,5.0122271,0,0,-765.93872,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.5777392,5.3211141,41.39,38.2,-9,-9,5,1,1,0,1,9,9,2,0,679,363823.28,-55575.605,214412.47,0,0,0,1733.2534 +4345,5303,9400,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.2258496,5.3120465,0,0,-947.68646,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8657937,5.1423054,57.63,56.14,-9,-9,10,1,1,0,0,4,2,2,0,4221,180740.61,-62327.387,174142.48,0,0,0,999.92755 +4346,5304,9401,-9,9402,9404,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.0069,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9402,9404,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.3333516,6.1960516,0,10,-2,-20.202059,0,1,1,2021,10,0,28,27,1,0,0,2.5506985,2.5506985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9403,-9,9402,9404,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.3459,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9404,9402,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.94802,8.8364277,0,10,2,11.158541,0,2,1,2021,10,1,46,44,1,1,0,21.689199,21.689199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48.28,60.18,6.666666666666667,1,1,0,0,7,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4347,5305,9405,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.624238,8.3124199,0,0,0,-1028.5778,0,3,2,2021,10,2,48,50,1,2,0,10.113449,10.113449,0,0,.05,0,0,0,0,0,1,1,0,1.503111,0,57.46,47.78,-9,-9,1.666666666666667,1,1,0,0,7,9,5,0,1301,305221.94,139183.3,280205.59,115723.77,0,0,1700.3569 +4348,5306,9406,9407,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8775969,9.0817738,0,27,-6,81.386124,0,2,2,2021,7,1,46,40,1,1,0,13.767006,13.767006,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50.72,51.52,8.333333333333334,1,1,0,0,9,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5306,9407,9406,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.2619295,9.4789925,0,26,6,88.981049,0,2,2,2021,9,1,96,45,1,1,0,13.88929,13.88929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.72,51.52,51.24,58.84,8.333333333333334,1,1,0,0,14,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5306,9408,-9,9406,9407,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1031.6552,-9,1,1,2021,29,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.75,61.62,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5307,9409,-9,9406,9407,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.77081,-9,1,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7406178,0,29.48,62.18,-9,-9,3.333333333333333,1,1,0,0,1,7,1,1,1071,-168983.89,0,0,0,0,0,330.69196 +4349,5308,9410,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1128.0941,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,44.54195,0,0,1,1,0,0,0,58.56,6.27,-9,-9,10,1,1,0,0,0,5,1,0,260,194214.06,0,-10233.896,0,-691.74878,0,2244.9873 +4350,5309,9411,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1750202,8.1621027,0,0,0,-1103.0382,-9,-9,-9,2021,26,11,44,0,1,11,0,7.0345488,7.0345488,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,37.17,45.07,-9,-9,1.666666666666667,3,4,0,1,10,5,4,0,194,-50786.066,166773.7,0,0,4217.7031,0,1814.2255 +4351,5310,9412,-9,9414,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.1354,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4351,5310,9413,-9,9414,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.45154,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4351,5310,9414,-9,-9,-9,1,0,28,1,2,0,2,2,-9,1,4,0,0,0,0,0,-1044.9553,-9,2,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4352,5311,9415,9416,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.8551645,5.8682551,6,9,-105.26566,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7570028,53,46,48.65,51.93,7,1,1,0,0,0,9,3,0,818,745308.88,270038.88,224935.69,0,0,0,2951.6348 +4352,5311,9416,9415,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7075086,7.6261744,0,42,0,-7.3514533,0,2,3,2021,13,2,30,26,1,2,0,7.3778763,7.3778763,0,0,0,0,0,0,0,14.5,1,1,0,5.5832462,0,48.65,51.93,53,46,8.333333333333334,1,1,0,0,8,9,3,0,818,745308.88,270038.88,224935.69,0,0,0,2951.6348 +4353,5312,9417,9418,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.1611614,8.0185804,0,4,6,-56.76664,0,-9,-9,2021,11,0,48,48,1,0,0,6.311142,6.311142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.7,31,5,1,1,0,0,11,4,3,0,608.5,588297.25,441843.75,129364.94,0,0,0,2264.8535 +4353,5312,9418,9417,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,4,-6,-92.932236,0,3,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.7,31,57.33,53.46,1.666666666666667,1,1,0,0,0,4,3,0,608.5,588297.25,441843.75,129364.94,0,0,0,2264.8535 +4354,5313,9419,9420,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,6.7561235,6.7151117,46,3,-13.96034,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3045516,6.126637,54.1,59.11,46.16,58.62,8.333333333333334,1,1,0,0,10,10,3,1,579,1065456.8,846110.25,37947.828,21050.953,0,0,2286.4839 +4354,5313,9420,9419,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.0307045,8.1324644,0,46,-3,52.393745,0,2,1,2021,11,2,36,6,1,2,0,11.027155,11.027155,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,54.1,59.11,8.333333333333334,1,1,0,0,9,10,3,1,579,1065456.8,846110.25,37947.828,21050.953,0,0,2286.4839 +4355,5314,9421,9423,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,7.8198786,7.9597821,12,-2,-42.541328,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,8.5258331,0,46.56,34.2,57.47,42.93,6.666666666666667,1,1,0,0,4,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9422,-9,9421,9423,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.01605,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9423,9421,-9,-9,1,1,55,0,1,0,2,2,-9,0,2,6.8881245,6.8076019,0,12,2,-35.431164,0,2,2,2021,7,0,40,0,1,0,0,3.6958611,3.6958611,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.47,42.93,46.56,34.2,5,1,1,0,1,14,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9424,-9,9421,9423,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-837.93005,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9425,-9,9421,9423,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1078.4647,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4356,5315,9426,9427,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.7719831,8.3910551,0,11,-1,32.4841,0,1,2,2021,12,0,42,40,1,0,0,11.826025,11.826025,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,54.36,39.33,58.88,8.333333333333334,1,1,0,0,12,2,5,1,1086,333006.09,114660.17,217682.25,0,6112.835,0,3439.855 +4356,5315,9427,9426,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.1144953,7.7268691,0,11,1,68.740913,0,-9,-9,2021,12,0,43,41,1,0,0,8.4232922,8.4232922,.05,.05,0,0,0,0,0,0,0,0,0,1.8986349,0,39.33,58.88,46.16,54.36,6.666666666666667,1,1,0,0,12,2,5,1,1086,333006.09,114660.17,217682.25,0,6112.835,0,3439.855 +4357,5316,9428,9429,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.0341377,8.8500643,0,34,-1,.52630311,0,2,1,2021,11,0,45,48,1,0,0,19.9259,19.9259,.05,.05,.05,0,0,0,0,0,0,0,0,6.7690401,0,57.73,54.53,59.07,43.05,8.333333333333334,4,2,0,0,9,4,5,1,492.5,424131.19,174197.41,284219.03,131674.86,0,0,4607.7568 +4357,5316,9429,9428,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.5690928,7.6366673,0,34,1,-15.79823,0,3,3,2021,8,0,20,30,1,0,0,11.740956,11.740956,0,0,0,0,0,0,0,0,0,0,0,.8054074,0,59.07,43.05,57.73,54.53,8.333333333333334,1,1,0,0,11,4,5,1,492.5,424131.19,174197.41,284219.03,131674.86,0,0,4607.7568 +4357,5317,9430,-9,9429,9428,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-913.00696,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,63.1,-9,-9,8.333333333333334,4,2,0,0,2,4,1,1,520,-78975.039,0,0,0,0,0,-264.47968 +4358,5318,9431,9432,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,16,-10,0,0,2,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,1,0,120.5,35870.141,-5465.8887,0,0,0,0,2077.8142 +4358,5318,9432,9431,-9,-9,1,1,43,0,2,0,2,2,-9,1,4,0,0,0,16,10,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,0,8,1,0,120.5,35870.141,-5465.8887,0,0,0,0,2077.8142 +4359,5319,9433,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,6.7314653,6.6572142,0,0,-1045.9117,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,26.689447,0,0,1,1,0,.50039351,6.927587,28.03,36.57,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,251,558019.69,81304.047,119194.27,0,0,0,786.70172 +4360,5320,9434,9435,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.2638607,9.4094162,0,8,-1,42.188568,0,2,2,2021,9,0,44,45,1,0,0,24.623165,24.623165,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9435,9434,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.4468727,8.3369341,0,8,1,29.445139,0,1,2,2021,7,0,35,32,1,0,0,17.296335,17.296335,.05,.05,0,0,0,0,0,0,0,0,0,6.2728887,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9436,-9,9435,9434,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-854.80273,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9437,-9,9435,9434,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.5266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4361,5321,9438,9439,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,6,-2,17.721075,0,-9,-9,2021,6,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.86,13.45,57.16,56.15,6.666666666666667,1,1,0,0,11,10,2,1,311.5,20896.391,54176.473,0,0,2312.9541,911.58636,467.64093 +4361,5321,9439,9438,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,5.3292446,5.1242552,0,6,2,5.075037,0,2,2,2021,7,0,50,45,1,0,0,.37143916,.37143916,0,0,0,0,0,0,0,0,1,1,0,2.5288022,0,57.16,56.15,50.86,13.45,8.333333333333334,1,1,0,0,10,10,2,1,311.5,20896.391,54176.473,0,0,2312.9541,911.58636,467.64093 +4362,5322,9440,9442,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,5.8152428,5.6324153,0,13,-15,-107.42784,0,2,1,2021,9,0,2,0,1,0,0,21.706406,21.706406,.05,.05,0,0,0,0,0,0,1,1,0,1.3549531,0,51.14,60.45,52.78,44.94,8.333333333333334,1,1,0,0,5,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9441,-9,9440,9442,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.3727,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9442,9440,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,7.9436879,8.3014221,4.2071328,14,15,33.345116,0,3,2,2021,13,1,40,40,1,1,0,11.417233,11.417233,.05,.05,0,0,0,0,0,0,1,1,0,0,4.3198619,52.78,44.94,51.14,60.45,5,1,1,0,0,8,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9443,-9,9440,9442,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.8928,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4363,5323,9444,9445,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,8.0290413,8.033658,11,1,-81.504044,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2544975,52.73,9.859999999999999,53,40.54,3.333333333333333,1,1,0,0,0,5,4,1,296,1533948.3,793313.38,234815.78,0,0,0,3079.832 +4363,5323,9445,9444,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.0054607,7.0603251,42,-1,107.918,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.8668005,7.4850755,53,40.54,52.73,9.859999999999999,5,1,1,0,0,10,5,4,1,296,1533948.3,793313.38,234815.78,0,0,0,3079.832 +4363,5324,9446,-9,9445,9444,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-962.05121,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,1267,-103762.09,0,0,0,0,0,1140.004 +4364,5325,9447,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.0395684,7.1094618,0,0,-1051.7075,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8062,36.72,22.64,-9,-9,5,1,1,0,0,0,12,2,0,837,551213,492555.34,60641.813,0,158.66345,0,1126.6219 +4364,5326,9448,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.70758,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,25.147093,0,0,1,1,0,0,0,53.24,26.04,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,574,16190.586,0,0,0,0,0,947.38556 +4364,5327,9449,-9,-9,9448,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1079.6498,0,-9,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.63,54.22,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,99,200534.69,0,0,0,0,0,-463.66333 +4365,5328,9450,-9,9451,9452,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1013.2311,-9,1,2,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9451,9452,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,22,-1,-57.279121,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.6380136,0,43.42,62.33,48.87,58.55,8.333333333333334,1,1,0,0,2,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9452,9451,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.8282919,9.7819281,0,23,1,-11.299315,0,-9,-9,2021,12,3,40,105,1,3,0,52.500546,52.500546,.05,.05,0,0,0,0,0,2,0,0,0,2.6196346,0,48.87,58.55,43.42,62.33,6.666666666666667,1,1,0,0,9,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9453,-9,9451,9452,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05646,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4366,5329,9454,-9,9457,9455,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-1094.9117,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9455,9457,-9,-9,1,1,56,0,3,0,3,3,-9,0,3,0,0,0,21,10,0,-9,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4609039,0,50,49,46.62,47.44,7,2,3,1,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9456,-9,9457,9455,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.8606,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9457,9455,-9,-9,1,0,46,0,3,0,3,3,-9,1,3,0,0,0,21,-10,0,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,46.62,47.44,50,49,8.333333333333334,2,3,0,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9458,-9,9457,9455,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1076.0977,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4367,5330,9459,9460,-9,9461,1,1,29,1,2,0,1,1,-9,0,4,8.8127222,8.8013935,0,6,0,40.14502,0,3,3,2021,12,0,37,37,1,0,0,20.434799,20.434799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,56.04,51.3,8.333333333333334,2,3,0,0,7,8,4,1,662.5,157121.8,121458.06,373204.06,163791.97,0,0,4650.7188 +4367,5330,9460,9459,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,8.2736588,7.681531,0,6,0,82.400612,0,-9,-9,2021,9,0,38,38,1,0,0,9.1199751,9.1199751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.04,51.3,52.88,56.68,6.666666666666667,2,3,0,0,15,8,4,1,662.5,157121.8,121458.06,373204.06,163791.97,0,0,4650.7188 +4367,5331,9461,-9,-9,-9,1,1,73,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1025.3722,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.46,34.53,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,1157,104639.66,0,0,0,0,0,-132.92111 +4367,5332,9462,-9,-9,9461,1,0,31,1,2,0,2,2,-9,0,5,8.1151934,8.0321894,0,0,0,-889.90228,0,3,3,2021,12,0,1,30,1,0,0,343.89432,343.89432,0,0,0,0,0,0,0,7,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,12,8,3,1,2257.5,-48072.371,0,0,0,0,0,1146.3401 +4367,5332,9463,-9,9462,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3876,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,2257.5,-48072.371,0,0,0,0,0,1146.3401 +4367,5333,9464,9466,-9,9461,1,1,27,1,2,0,2,2,-9,0,3,7.7162075,8.0736551,0,5,1,-.25693932,0,3,3,2021,11,0,40,-9,1,0,0,7.2868395,7.2868395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,50.63,50.99,6.666666666666667,2,3,0,0,10,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5333,9465,-9,9466,9464,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7355,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5333,9466,9464,-9,-9,1,0,26,1,2,0,1,1,-9,0,3,8.3424778,8.4111528,0,5,-1,-50.426159,0,-9,-9,2021,12,0,15,15,1,0,0,28.269892,28.269892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.63,50.99,52.6,52.88,6.666666666666667,2,3,0,0,15,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5334,9467,-9,-9,9461,1,0,27,1,2,0,2,2,-9,0,3,7.9312406,8.0659895,0,0,0,-1084.5018,-9,3,3,2021,11,0,40,0,1,0,0,7.3231354,7.3231354,0,0,0,0,0,0,0,0,1,1,0,0,0,60.27,52.13,-9,-9,6.666666666666667,2,3,0,0,6,8,3,1,399,18907.686,95346.594,0,0,0,2016.5995,866.685 +4368,5335,9468,9469,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,8.1776133,8.2736282,0,45,2,-73.237808,0,2,2,2021,7,0,37,0,1,0,0,10.466464,10.466464,.05,.05,0,0,0,0,0,0,1,1,0,2.3429401,0,59.14,52.5,61.12,51.57,8.333333333333334,1,1,0,0,7,9,4,1,209,808101.25,367619.59,496627.69,0,0,0,3478.5271 +4368,5335,9469,9468,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.4232244,6.883554,45,-2,66.08033,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5909138,7.0716872,61.12,51.57,59.14,52.5,10,1,1,0,0,0,9,4,1,209,808101.25,367619.59,496627.69,0,0,0,3478.5271 +4369,5336,9470,9471,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,11,-2,-27.513311,0,3,2,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9743915,0,46.16,24.32,46.98,59.35,1.666666666666667,1,1,0,0,10,8,4,1,2950,2969975,1215032.4,647563.81,0,0,0,2023.1047 +4369,5336,9471,9470,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.3913584,8.4812431,0,11,2,90.936073,0,1,1,2021,13,3,40,40,1,3,0,13.447978,13.447978,.05,.05,0,0,0,0,0,0,0,0,0,.29317987,0,46.98,59.35,46.16,24.32,8.333333333333334,1,1,0,0,13,8,4,1,2950,2969975,1215032.4,647563.81,0,0,0,2023.1047 +4370,5337,9472,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.1860542,5.9880681,0,0,-1008.7618,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.470378,6.2646155,67.96000000000001,27.95,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,183,427825.66,-61086.883,133630.2,0,0,0,688.99811 +4371,5338,9473,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.7449851,7.9658685,0,0,0,-984.20142,0,2,2,2021,5,0,38,0,1,0,0,7.892045,7.892045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,9,8,4,0,630,-72389.758,52622.719,0,0,0,7146.1465,583.82892 +4372,5339,9474,9478,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,6.4770184,6.4681473,0,18,0,-142.33646,0,1,2,2021,13,1,2,2,1,1,0,35.719669,35.719669,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.45,50.07,59.53,56.44,6.666666666666667,1,1,0,0,13,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9475,-9,9474,9478,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.7834,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9476,-9,9474,9478,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1006.5629,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,1.2133622,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9477,-9,9474,9478,1,0,17,0,2,1,2,0,0,1,2,0,0,0,0,0,-1011.415,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,51.61,-9,-9,10,1,1,0,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9478,9474,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,6.6217818,6.428113,0,18,9,9.0206738,0,-9,-9,2021,7,0,39,-9,1,0,0,2.4219751,2.4219751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,41.45,50.07,10,1,1,0,0,12,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4373,5340,9479,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.475585,5.5383592,0,0,-1063.4047,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,6.7790418,4.7967935,35.302025,0,1,1,0,.45417818,5.1498342,51.85,11.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1963,-11443.64,-12965.93,0,0,0,0,2028.6829 +4374,5341,9480,-9,9484,-9,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1032.0986,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9481,-9,9484,-9,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.4625,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9482,-9,9484,-9,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1040.9363,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9483,-9,9484,-9,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1052.7428,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9484,-9,-9,-9,1,0,39,0,5,0,2,2,-9,0,4,0,7.2902303,6.9766364,0,0,-882.69629,0,3,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3039055,0,48.65,55.84,-9,-9,10,2,3,0,0,3,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9485,-9,9484,-9,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-885.8266,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4375,5342,9486,9488,9490,9489,1,1,41,1,1,0,2,2,-9,0,2,6.9539804,6.8107328,0,15,2,31.236383,0,3,2,2021,11,1,50,50,1,1,0,1.9605057,1.9605057,0,0,0,0,0,0,0,0,1,1,0,6.7963848,0,50.27,48.86,39.39,44.21,5,2,3,0,0,9,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5342,9487,-9,9488,9486,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.7534,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5342,9488,9486,-9,-9,1,0,39,1,1,0,2,2,-9,0,4,6.6954103,7.0420861,0,15,-2,-45.243168,0,3,2,2021,8,2,21,17,1,2,0,6.634232,6.634232,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,44.21,50.27,48.86,0,2,3,0,0,8,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5343,9489,9490,-9,-9,1,1,71,1,1,0,3,3,-9,0,3,0,6.8285246,6.3432059,4,-1,22.726791,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2894878,6.6284332,53,47,51,46,7,2,3,0,0,0,4,2,1,441.5,229024.97,0,160834.34,0,0,0,444.73306 +4375,5343,9490,9489,-9,-9,1,0,72,1,1,0,3,3,-9,0,3,0,0,0,4,1,138.97607,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,4,2,1,441.5,229024.97,0,160834.34,0,0,0,444.73306 +4376,5344,9491,9492,-9,-9,1,1,46,0,3,0,1,1,-9,0,5,8.3920326,8.6775303,0,25,-1,148.84222,0,2,2,2021,13,3,50,55,1,3,0,15.858252,15.858252,.05,.05,0,0,0,0,0,0,1,1,0,6.4127064,0,41.2,62.39,45.97,51.9,8.333333333333334,1,1,0,0,6,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9492,9491,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.6825767,8.0925093,0,25,1,10.313522,0,1,1,2021,9,0,20,10,1,0,0,11.9767,11.9767,.05,.05,0,0,0,0,0,0,1,1,0,3.2435088,0,45.97,51.9,41.2,62.39,8.333333333333334,1,1,0,0,4,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9493,-9,9492,9491,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.91852,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9494,-9,9492,9491,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-988.03796,-9,1,1,2021,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9495,-9,9492,9491,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.7469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4377,5345,9496,9497,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.5912037,8.2339973,0,2,1,112.43628,-9,-9,-9,2021,7,0,70,0,1,0,0,7.1422515,7.1422515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,31.19,51.91,8.333333333333334,1,1,0,0,4,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4377,5345,9497,9496,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,8.2747164,8.0455818,0,2,-1,-14.851,0,-9,-9,2021,16,4,21,21,1,4,0,20.429676,20.429676,0,0,0,0,0,0,0,0,1,1,0,6.8696136,0,31.19,51.91,57.16,56.15,8.333333333333334,1,1,0,0,1,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4377,5345,9498,-9,9497,9496,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4378,5346,9499,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1088.8757,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3353314,0,60.12,54.8,-9,-9,10,1,1,0,0,0,10,1,1,1985,91106.656,0,0,0,0,0,1009.4651 +4379,5347,9500,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.5837431,8.1767559,0,6,-6,15.18293,0,3,2,2021,11,0,40,37,1,0,0,14.212436,14.212436,.05,.05,0,0,0,0,0,14.5,0,0,0,3.8903711,0,57.33,53.46,57.15,37.4,8.333333333333334,1,1,0,0,13,5,5,1,187,552328.44,707257.94,239099.02,75986.602,8156.1382,2786.6323,2758.7896 +4379,5348,9501,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.8057957,8.915719,0,6,6,-71.405792,0,3,2,2021,7,1,43,40,1,1,0,20.2334,20.2334,.05,.05,0,0,0,0,0,2,0,0,0,2.0940278,0,57.15,37.4,57.33,53.46,8.333333333333334,1,1,0,0,13,5,5,1,138,199721.88,71927.039,0,0,1551.583,2727.4004,2678.8906 +4380,5349,9502,-9,-9,9503,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.21539,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4380,5349,9503,-9,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.4288254,8.7045021,0,0,0,-992.33502,0,-9,-9,2021,12,0,40,48,1,0,0,12.007069,12.007069,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,13,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4380,5349,9504,-9,-9,9503,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5376,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4381,5350,9505,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.086493,6.5338736,0,0,-1042.937,-9,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.3398266,6.3780308,58.9,43.07,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,253,309670.78,85585.234,307313.28,0,15488.718,0,1268.3043 +4382,5351,9506,9507,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.8238344,8.0024195,0,32,-1,-145.4097,0,2,2,2021,6,0,35,30,1,0,0,10.536541,10.536541,0,0,0,0,0,0,0,0,1,1,0,4.5733161,0,57.06,57.76,60.29,52.11,10,1,1,0,0,11,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5351,9507,9506,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,7.7856226,7.4048653,0,33,1,83.028763,0,2,2,2021,6,0,40,40,1,0,0,8.4940281,8.4940281,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5351,9508,-9,9506,9507,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-992.22241,-9,1,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.14,58.86,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5352,9509,-9,9506,9507,1,1,26,0,0,0,1,1,-9,0,5,8.9067764,8.4890318,0,0,0,-1038.0304,0,1,1,2021,10,0,40,44,1,0,1,20.337276,20.337276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,1820,43618.988,4720.6636,0,0,0,3513.457,1967.3344 +4383,5353,9510,9511,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.5154953,4.7786946,6,-10,45.701817,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8335199,4.2667608,57.16,56.15,58.89,48.6,10,1,1,0,0,0,11,2,1,491,234149.38,38175.039,188219.36,0,0,0,1640.8396 +4383,5353,9511,9510,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.981071,6.9902272,46,10,17.194139,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4659791,7.0911055,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,491,234149.38,38175.039,188219.36,0,0,0,1640.8396 +4384,5354,9512,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9316034,8.9168882,0,0,0,-1016.717,0,3,2,2021,10,0,36,36,1,0,0,18.166346,18.166346,.05,.05,0,0,0,0,0,2,0,0,0,3.6416013,0,51.83,57.2,-9,-9,1.666666666666667,3,4,0,0,13,8,5,1,280,1072685.5,729738.69,277983.38,82426.813,0,1786.8127,2128.6077 +4385,5355,9513,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.1568079,8.9646339,0,0,0,-855.16498,0,1,1,2021,13,1,52,48,1,1,0,18.050217,18.050217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,355,1940751.3,1700652.4,0,0,0,3394.7412,2620.051 +4386,5356,9514,9516,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,0,0,0,6,2,30.022753,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,47.38,41.44,42.97,6.666666666666667,1,1,0,0,0,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9515,-9,9516,9514,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.0672,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9516,9514,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.7633514,8.1827002,0,6,-2,34.58744,0,3,3,2021,14,2,24,24,1,2,0,12.571225,12.571225,0,0,0,0,0,0,0,0,1,1,0,0,0,41.44,42.97,58.3,47.38,5,1,1,0,0,7,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9517,-9,9516,9514,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-947.99365,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4387,5357,9518,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,0,0,-949.04797,-9,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,-9,-9,5,1,1,0,0,1,4,1,0,3542,-167830.48,48686.594,0,0,0,0,1815.9363 +4388,5358,9519,9520,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,5.23209,6.0039048,54,0,-37.898136,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,6.8552256,0,0,1,1,0,0,5.1978879,49.9,20.57,58.32,50.22,1.666666666666667,1,1,0,0,0,6,2,1,348,126134.3,80057.469,80413.305,0,2464.1799,0,2561.6704 +4388,5358,9520,9519,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.2793241,7.3075085,9,0,-113.4183,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9442849,7.1883993,58.32,50.22,49.9,20.57,8.333333333333334,1,1,0,0,0,6,2,1,348,126134.3,80057.469,80413.305,0,2464.1799,0,2561.6704 +4389,5359,9521,9522,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,6.5861621,6.3176136,0,24,7,-2.7823763,0,-9,-9,2021,9,0,40,50,1,0,0,2.0081215,2.0081215,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.87,58.55,58.2,54.53,8.333333333333334,1,1,0,0,12,10,3,1,1689,666024.13,102652.72,266426.25,0,0,0,1622.9757 +4389,5359,9522,9521,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.5148635,7.6283031,0,24,-7,29.204496,0,2,2,2021,12,0,25,25,1,0,0,8.3397675,8.3397675,0,0,0,0,0,0,0,0,0,0,0,.75351596,0,58.2,54.53,48.87,58.55,6.666666666666667,1,1,0,0,12,10,3,1,1689,666024.13,102652.72,266426.25,0,0,0,1622.9757 +4390,5360,9523,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.9473186,7.0836797,0,0,-1022.4351,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.78793,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,491,-191081.31,0,0,0,0,0,144.10509 +4391,5361,9524,-9,9525,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1082.0011,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4391,5361,9525,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.674614,8.4998302,0,0,0,-833.24994,0,1,2,2021,3,1,30,23,1,1,0,20.788279,20.788279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4391,5361,9526,-9,9525,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.7701,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4392,5362,9527,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.5806699,4.986815,0,0,-1009.5178,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.8643155,0,0,1,1,0,0,4.9950733,56.26,15.43,-9,-9,10,1,1,0,0,0,13,2,1,658,135121.41,-8625.0557,141485.92,0,0,0,886.07404 +4393,5363,9528,9529,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4309235,8.5497131,0,15,-1,-45.148621,0,2,3,2021,2,0,37,45,1,0,0,11.332947,11.332947,0,0,0,0,0,0,0,0,0,0,0,2.7607682,0,54.96,53.17,30.18,65.98,8.333333333333334,1,1,0,0,10,10,5,1,329,168313.98,145073.03,0,0,2949.3906,0,2809.1338 +4393,5363,9529,9528,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3728409,8.1487665,0,8,1,-8.6310978,0,-9,3,2021,13,1,60,60,1,1,0,9.6974659,9.6974659,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,30.18,65.98,54.96,53.17,6.666666666666667,1,1,0,0,9,10,5,1,329,168313.98,145073.03,0,0,2949.3906,0,2809.1338 +4394,5364,9530,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.0295601,7.7699814,0,0,-1068.3508,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9682021,7.7786264,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,492,270881.75,173534.25,238747.81,58114.922,9979.0596,0,2723.5713 +4395,5365,9531,-9,9532,9533,1,1,39,0,0,0,1,1,-9,0,5,8.9979324,8.8170357,7.8952637,0,0,-985.63898,0,1,1,2021,4,1,40,40,1,1,0,23.907293,23.907293,.05,.05,0,0,0,0,0,0,1,1,0,7.3581638,7.9545403,60.02,56.42,-9,-9,8.333333333333334,4,2,0,0,9,9,5,1,738,219238.59,132000.98,264357.09,167425.55,0,0,3654.6663 +4395,5366,9532,9533,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,4.846024,4.8595862,7,3,-78.805565,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0882463,62.49,55.09,53,46,10,1,1,0,0,0,9,4,1,395,1238530.8,824840.63,369965.81,0,0,0,2701.5918 +4395,5366,9533,9532,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,8.6406851,8.2708349,0,7,-3,50.365871,0,-9,-9,2021,9,0,50,10,1,1,0,12.747721,12.747721,0,0,0,0,0,0,0,0,1,1,0,4.7942009,0,53,46,62.49,55.09,8,4,5,0,0,1,9,4,1,395,1238530.8,824840.63,369965.81,0,0,0,2701.5918 +4396,5367,9534,9535,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1325488,7.3253598,0,40,-4,130.70767,0,2,-9,2021,10,1,20,20,1,1,0,8.6473904,8.6473904,0,0,0,0,0,0,0,2,0,0,0,9.2303343,0,48.87,58.55,46.48,55.6,6.666666666666667,1,1,0,0,14,10,4,1,926.5,33035.027,63136.012,0,0,0,8247.0957,6262.4741 +4396,5367,9535,9534,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5746231,8.7285557,0,40,4,159.78857,0,-9,-9,2021,11,2,40,35,1,2,0,15.21081,15.21081,.05,.05,0,0,0,0,0,0,0,0,0,6.2513719,0,46.48,55.6,48.87,58.55,5,1,1,0,0,14,10,4,1,926.5,33035.027,63136.012,0,0,0,8247.0957,6262.4741 +4397,5368,9536,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.8913956,8.5657692,0,0,0,-1002.3306,0,2,2,2021,7,0,52,40,1,0,0,15.460235,15.460235,0,0,0,0,0,0,0,0,0,0,0,1.8555064,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,738,-22275.314,0,0,0,0,0,2095.1396 +4398,5369,9537,9540,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.3637567,7.1699204,0,7,-4,67.172562,0,2,2,2021,7,0,25,25,1,0,0,7.6394687,7.6394687,0,0,0,0,0,0,0,0,0,0,0,5.4891014,0,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9538,-9,9537,9540,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1013.3652,-9,2,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432235,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9539,-9,9537,9540,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.24353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9540,9537,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,9.5739813,9.6845312,0,7,4,-16.89599,0,2,2,2021,6,0,38,46,1,0,0,51.715641,51.715641,.05,.05,.05,0,0,0,0,0,0,0,0,5.5684152,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,8,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4399,5370,9541,9542,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.7648754,8.6896191,0,40,-2,-58.796616,0,2,2,2021,8,0,50,64,1,0,0,15.197589,15.197589,0,0,0,0,0,0,0,7,0,0,0,0,0,51.83,57.2,52.54,52.91,10,1,1,0,0,9,10,5,1,733,2683928,1545365.3,792059.88,0,0,0,5469.5498 +4399,5370,9542,9541,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4587994,8.5900927,7.6144471,40,2,174.55525,0,3,3,2021,11,1,45,47,1,1,0,9.3167057,9.3167057,0,0,.05,0,0,0,0,2,0,0,0,2.4894812,7.7833867,52.54,52.91,51.83,57.2,6.666666666666667,1,1,0,0,6,10,5,1,733,2683928,1545365.3,792059.88,0,0,0,5469.5498 +4400,5371,9543,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0707092,8.0953569,0,0,0,-885.83142,0,3,-9,2021,7,0,42,40,1,0,0,10.746275,10.746275,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,483,694182.75,566780.81,146832.42,93212.797,0,0,945.70569 +4401,5372,9544,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.1761041,7.1499157,0,0,0,-1012.0782,0,3,-9,2021,12,0,30,18,1,0,0,4.4334764,4.4334764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,2400.5,75960.75,18696.576,0,0,0,0,975.49371 +4401,5372,9545,-9,9544,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.4978,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,2400.5,75960.75,18696.576,0,0,0,0,975.49371 +4402,5373,9546,9547,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.6752901,8.6006718,2.9945107,32,-4,-18.542332,0,2,3,2021,8,0,50,40,1,0,0,11.749408,11.749408,.05,.05,0,0,0,0,0,0,0,0,0,0,3.3919039,57.16,56.15,49.97,56.66,10,1,1,0,0,9,2,5,0,691.5,543781,443422.81,156470.55,0,0,0,3905.3843 +4402,5373,9547,9546,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1207285,8.1305475,0,32,4,20.048622,0,3,3,2021,8,0,37,37,1,0,0,10.467914,10.467914,.05,.05,0,0,0,0,0,0,0,0,0,6.6819425,0,49.97,56.66,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,0,691.5,543781,443422.81,156470.55,0,0,0,3905.3843 +4403,5374,9548,9549,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,6.4841409,6.4478178,43,1,-26.274584,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7650237,6.7913842,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,5,6,2,1,566.5,303033.88,262343.34,122850.78,0,0,2345.9189,1942.7688 +4403,5374,9549,9548,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.5338478,6.7130957,43,-1,20.047443,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9872806,6.5276394,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,7,6,2,1,566.5,303033.88,262343.34,122850.78,0,0,2345.9189,1942.7688 +4403,5375,9550,-9,9549,9548,1,1,34,0,0,0,2,2,-9,0,4,8.3589516,8.4192419,0,0,0,-1055.8384,-9,3,1,2021,10,0,60,0,1,0,0,7.5147529,7.5147529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.14,46.44,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,144,-249712.81,-65027.859,0,0,0,0,944.38348 +4404,5376,9551,9554,-9,-9,1,1,35,0,2,0,3,3,-9,0,4,8.1954775,8.5244293,0,9,-7,-125.22864,0,2,2,2021,11,0,50,60,1,0,0,8.8405237,8.8405237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,25.07,47.84,8.333333333333334,1,1,0,0,10,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9552,-9,9554,9551,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.82397,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9553,-9,9554,9551,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9292,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9554,9551,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.6893549,7.6512814,0,9,7,51.761971,0,2,2,2021,17,5,30,30,1,5,0,9.7411842,9.7411842,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.07,47.84,52.48,54.33,6.666666666666667,1,1,0,0,10,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4405,5377,9555,9556,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.1695023,9.1634474,0,1,-2,20.013025,-9,-9,-9,2021,6,0,40,0,1,0,0,23.910139,23.910139,.05,.05,0,0,0,0,0,0,0,0,0,1.3606514,0,59.53,56.44,43.37,42.49,10,1,1,0,0,4,10,5,1,348.5,126824.96,41351.871,174927.78,139101.08,0,0,3490.8418 +4405,5377,9556,9555,-9,-9,1,0,31,0,0,0,2,2,-9,0,1,7.9514737,7.8344059,0,1,2,-9.7796412,0,-9,-9,2021,14,3,39,39,1,3,0,10.289556,10.289556,.05,.05,0,0,0,0,0,0,0,0,0,1.2992197,0,43.37,42.49,59.53,56.44,8.333333333333334,1,1,0,0,12,10,5,1,348.5,126824.96,41351.871,174927.78,139101.08,0,0,3490.8418 +4406,5378,9557,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-896.97522,0,3,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,12.34,35.18,-9,-9,0,1,1,0,1,5,4,1,0,738,24479.512,0,0,0,0,0,296.31015 +4406,5379,9558,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1041.5446,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.75,52.77,-9,-9,8.333333333333334,1,1,1,1,0,4,2,0,361,92420.25,0,0,0,0,0,2.7067013 +4407,5380,9559,9560,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.2504468,3.9598103,11,6,4.9974928,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0296664,4.4964466,57.78,40.89,47.15,56.66,6.666666666666667,1,1,0,0,0,2,2,1,227,319083.5,-58665.227,201134.25,0,0,0,1921.2175 +4407,5380,9560,9559,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,11,-6,-102.21774,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.15,56.66,57.78,40.89,8.333333333333334,1,1,0,0,0,2,2,1,227,319083.5,-58665.227,201134.25,0,0,0,1921.2175 +4408,5381,9561,9563,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.7748909,8.8236303,0,18,4,133.05025,0,2,2,2021,6,0,37,41,1,0,0,17.837114,17.837114,.05,.05,.05,0,0,0,0,0,1,1,0,6.096992,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,13,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4408,5381,9562,-9,9563,9561,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.99115,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4408,5381,9563,9561,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6371431,7.3478484,0,18,-4,-206.72121,0,3,2,2021,9,0,23,22,1,0,0,9.4090662,9.4090662,.05,.05,0,0,0,0,0,0,1,1,0,7.1086435,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,6,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4409,5382,9564,9565,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9602289,7.8111105,25,3,49.222637,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9345851,8.193902,53.09,39.08,57.33,53.46,6.666666666666667,1,1,0,0,7,8,4,1,276,1736761.9,1113422.4,513144.81,0,0,0,2834.1313 +4409,5382,9565,9564,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,8.0224171,7.5288877,6,-3,-36.719429,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2859623,7.2541757,57.33,53.46,53.09,39.08,8.333333333333334,1,1,0,0,4,8,4,1,276,1736761.9,1113422.4,513144.81,0,0,0,2834.1313 +4410,5383,9566,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-933.20435,0,3,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.82,33.12,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,167,28950.285,0,0,0,0,0,1424.189 +4411,5384,9567,9568,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.136652,8.3623152,0,12,1,14.133821,0,-9,-9,2021,13,1,32,38,1,1,0,15.652906,15.652906,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.05,39.98,21.72,22.57,5,1,1,0,0,13,10,4,0,451.5,155436.11,-16323.243,358446.69,36241.156,996.20392,0,972.75867 +4411,5384,9568,9567,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,3.474026,3.529912,12,-1,23.677385,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.75523537,3.3910542,21.72,22.57,43.05,39.98,1.666666666666667,1,1,1,0,12,10,4,0,451.5,155436.11,-16323.243,358446.69,36241.156,996.20392,0,972.75867 +4412,5385,9569,9570,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,7.1054287,7.10918,1,3,63.301956,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.7567859,6.9823289,50.59,55.13,52,45,10,1,1,0,0,0,1,2,0,299,532408.56,196264.72,55411.457,0,0,0,2189.7827 +4412,5385,9570,9569,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,1,-3,-50.471046,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.7885022,0,0,1,1,0,4.7717094,0,52,45,50.59,55.13,8,1,1,0,0,0,1,2,0,299,532408.56,196264.72,55411.457,0,0,0,2189.7827 +4413,5386,9571,9572,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.3384728,5.2831335,8,-3,-43.608715,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7868357,5.2757144,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,3,12,2,1,732,125236.84,-13080.201,0,0,0,-80.680786,1011.6591 +4413,5386,9572,9571,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,4.1281943,4.2244225,8,3,145.75319,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0197601,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,1,12,2,1,732,125236.84,-13080.201,0,0,0,-80.680786,1011.6591 +4414,5387,9573,-9,9574,9576,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.1272,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9574,9576,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.6036148,8.631115,0,6,2,34.036575,0,-9,-9,2021,7,0,38,37,1,0,0,15.063327,15.063327,.05,.05,0,0,0,0,0,0,1,1,0,4.0017719,0,49.46,56.91,52,54.51,8.333333333333334,1,1,0,0,10,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9575,-9,9574,9576,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.61865,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9576,9574,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,9.0438747,9.1060944,0,6,-2,195.29103,0,2,2,2021,7,1,47,50,1,1,0,25.207212,25.207212,.05,.05,0,0,0,0,0,0,1,1,0,3.4297106,0,52,54.51,49.46,56.91,8.333333333333334,1,1,0,0,10,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4415,5388,9577,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.905808,5.9002738,0,0,-1018.8127,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0613446,5.6735802,42.9,54.57,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,968,200309.75,-128729.13,188510.53,0,0,1046.3257,1292.4288 +4416,5389,9578,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-872.12012,0,2,2,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18203434,0,30.85,17.26,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,1352,-37362.875,64728.285,0,0,0,-238.60973,1284.5581 +4417,5390,9579,9580,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.9174833,8.0986776,0,20,-3,54.310467,0,3,3,2021,24,11,40,40,1,11,0,8.9256134,8.9256134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.49,40.5,52,55,5,4,5,0,0,11,8,4,0,526,568533.88,112593.24,414921.94,0,0,0,2165.5317 +4417,5390,9580,9579,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3705578,8.0589466,0,2,3,-4.3303747,0,-9,-9,2021,9,0,54,54,1,1,0,7.7248278,7.7248278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,53.49,40.5,8,1,1,0,0,1,8,4,0,526,568533.88,112593.24,414921.94,0,0,0,2165.5317 +4417,5391,9581,-9,9579,9580,1,0,20,0,0,0,3,3,-9,0,4,6.9807777,6.9220691,0,0,0,-994.6637,0,2,2,2021,12,0,45,45,1,2,1,2.5739834,2.5739834,0,0,0,0,0,0,0,0,1,1,0,3.5253112,0,45,59,-9,-9,7,4,5,0,0,1,8,2,0,359,-120762.88,0,0,0,0,0,1008.2937 +4417,5392,9582,-9,9579,9580,1,0,22,0,0,0,2,2,-9,0,4,7.2574382,7.3117642,0,0,0,-926.68341,0,2,2,2021,12,0,40,20,1,2,1,3.2264769,3.2264769,0,0,0,0,0,0,0,0,1,1,0,1.7119482,0,45,58,-9,-9,7,4,5,0,0,1,8,3,0,225,0,0,0,0,0,0,879.56024 +4418,5393,9583,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.704649,8.5271521,7.9562798,0,0,-964.80798,0,3,3,2021,6,0,16,16,1,0,0,25.79788,25.79788,.05,.05,0,0,0,0,0,0,0,0,0,4.2713509,7.8050942,58.15,52.91,-9,-9,10,1,1,0,0,9,2,5,0,1344,139620.97,82516.719,0,0,0,0,3077.3435 +4419,5394,9584,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.2078123,6.4763265,0,0,-930.4859,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3955994,6.3486104,55,52,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,460,356973.72,-29244.07,0,0,512.49066,0,2483.6819 +4420,5395,9585,-9,9589,9587,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.2006,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9586,-9,9589,9587,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.66821,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9587,9589,-9,-9,1,1,45,0,4,0,2,2,-9,0,4,8.9465036,9.1303377,0,18,7,132.73375,0,-9,-9,2021,22,8,65,65,1,8,0,13.460351,13.460351,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.43,65.56,32.32,63.9,1.666666666666667,2,3,0,1,13,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9588,-9,9589,9587,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-894.30505,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9589,9587,-9,-9,1,0,38,0,4,0,2,2,-9,0,4,0,0,0,18,-7,-129.92494,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.32,63.9,36.43,65.56,3.333333333333333,2,3,0,1,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5396,9590,-9,9589,9587,1,0,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-860.17847,-9,2,2,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.47,65.17,-9,-9,5,2,3,0,0,0,8,1,0,3346,-39112.688,0,0,0,0,0,0 +4420,5397,9591,-9,9589,9587,1,0,18,0,4,1,3,0,0,0,5,0,0,0,0,0,-959.32123,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.8,64.11,-9,-9,3.333333333333333,2,3,0,1,0,8,1,0,630,-229202.2,-29262.217,0,0,0,78.007477,0 +4421,5398,9592,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.4729381,5.5218787,0,0,-1111.4172,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.78360838,5.3408599,52,45,-9,-9,8,1,1,0,0,0,10,2,0,1522,-142173.33,59955.023,0,0,0,0,1319.3229 +4422,5399,9593,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.44366,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.94,41.91,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,733,-14017.683,0,0,0,0,0,1059.1417 +4423,5400,9594,9597,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,0,0,0,6,-26,109.44108,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.26,48.51,54.22,39.67,6.666666666666667,3,4,1,0,3,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9595,-9,9594,9597,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.92261,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,2,-9,0,0,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9596,-9,9594,9597,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2063,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9597,9594,-9,-9,1,1,69,0,2,0,1,1,-9,0,3,0,7.2355661,7.6934934,24,26,-86.155083,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3578849,7.6380057,54.22,39.67,50.26,48.51,1.666666666666667,3,4,0,0,4,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5401,9598,-9,9594,9597,1,0,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-984.69379,1,2,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4926026,0,40.25,50.93,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,5597,-22969.387,0,0,0,0,0,-411.41342 +4424,5402,9599,9600,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.9970531,6.1555414,10,-10,.69133061,0,2,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,1.347131,6.5233588,20.694078,120,1,1,0,4.022037,5.8187776,39.68,29.19,44.92,21.04,6.666666666666667,1,1,0,0,1,10,2,0,264,384383.47,189543.44,237799.44,0,0,0,2121.865 +4424,5402,9600,9599,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.9704695,6.1652646,10,10,-91.319374,0,3,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,12.817199,34.970509,115.59605,0,1,1,0,0,6.0715885,44.92,21.04,39.68,29.19,3.333333333333333,1,1,0,0,0,10,2,0,264,384383.47,189543.44,237799.44,0,0,0,2121.865 +4425,5403,9601,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.549644,5.5491748,0,0,-917.49701,0,3,3,2021,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5072002,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,4,2,1,252,486214.16,177185.45,271647.56,0,0,610.5957,662.24353 +4426,5404,9602,9604,-9,-9,1,1,46,2,2,0,2,2,-9,0,3,8.7037048,9.0673389,0,14,12,-23.685425,0,2,2,2021,8,0,45,44,1,0,0,15.517026,15.517026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,6.666666666666667,1,1,0,0,14,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9603,-9,9604,9602,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.443,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9604,9602,-9,-9,1,0,34,2,2,0,1,1,-9,0,4,8.1958675,8.320426,0,14,-12,89.358208,0,3,2,2021,8,0,15,10,1,0,0,35.59211,35.59211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.32,50.22,8.333333333333334,1,1,0,0,13,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9605,-9,9604,9602,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3817,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4427,5405,9606,9607,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,6.2896385,6.3977194,50,-1,-20.934484,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,12.377774,0,0,1,1,0,0,5.9592681,37.79,27.51,51.58,27.88,5,1,1,0,0,0,4,2,1,1011.5,691691.56,264412.09,188652.25,0,0,0,1785.1387 +4427,5405,9607,9606,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,50,1,-23.296907,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,4.4724994,0,0,1,1,0,3.4416738,0,51.58,27.88,37.79,27.51,10,1,1,0,0,6,4,2,1,1011.5,691691.56,264412.09,188652.25,0,0,0,1785.1387 +4428,5406,9608,-9,9611,9609,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.1952,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9609,9611,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.8559279,7.8937364,0,7,5,-.54108655,0,2,2,2021,8,0,42,39,1,0,0,6.3965368,6.3965368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9610,-9,9611,9609,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.2585,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9611,9609,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.050333,7.9660168,0,7,-5,-77.745621,0,-9,-9,2021,5,0,30,21,1,0,0,14.748672,14.748672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4429,5407,9612,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.9114714,5.2139115,0,0,-938.14893,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4588923,42.25,48.11,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,327,-28224.668,26662.115,95154.602,0,0,0,588.96863 +4430,5408,9613,9614,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-76.475502,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7804852,0,58.15,52.91,51.05,41.44,10,1,1,0,0,0,13,4,1,786,1118599.3,572246,181382.38,0,1013.274,0,5314.9219 +4430,5408,9614,9613,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3067942,8.3661423,47,5,72.864151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.7107153,8.522912,51.05,41.44,58.15,52.91,8.333333333333334,1,1,0,0,0,13,4,1,786,1118599.3,572246,181382.38,0,1013.274,0,5314.9219 +4431,5409,9615,-9,9618,9619,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.0576,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9616,-9,9618,9619,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.9246,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9617,-9,9618,9619,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.2189,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9618,9619,-9,-9,1,0,36,0,3,0,1,1,-9,0,5,8.4618959,8.5982723,0,16,-1,-3.3662734,0,2,2,2021,9,1,38,22,1,1,0,15.367666,15.367666,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53.61,51.1,10,1,1,0,0,8,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9619,9618,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.9266233,9.0356741,0,15,1,79.967369,0,2,3,2021,10,0,35,42,1,0,0,30.434242,30.434242,.05,.05,0,0,0,0,0,0,0,0,0,3.7695074,0,53.61,51.1,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4432,5410,9620,9621,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,14,2,-33.239929,0,-9,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9006181,0,58.71,40.92,53.07,52.7,8.333333333333334,1,1,0,0,6,9,4,1,1497,-28263.113,-2924.6074,0,0,0,0,3027.7676 +4432,5410,9621,9620,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.9528284,8.5601559,0,14,-2,28.550051,0,2,1,2021,6,0,45,45,1,0,0,17.420765,17.420765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.07,52.7,58.71,40.92,8.333333333333334,1,1,0,0,11,9,4,1,1497,-28263.113,-2924.6074,0,0,0,0,3027.7676 +4433,5411,9622,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-901.66931,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,62.02,34.01,-9,-9,5,1,1,0,0,12,5,1,1,452,-61503.828,0,0,0,988.61273,1114.9557,1420.9038 +4433,5412,9623,-9,-9,9622,1,0,19,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1087.307,0,-9,3,2021,18,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,30.7,56.79,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,256,51008.605,0,0,0,0,0,705.86041 +4434,5413,9624,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,7.0139766,6.9284444,0,0,0,-1163.4458,0,-9,-9,2021,6,0,33,0,1,0,0,3.6870468,3.6870468,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,4,13,2,0,1243,-126552.14,0,0,0,0,0,688.03479 +4435,5414,9625,9626,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.5828657,8.4150133,6.3058348,7,10,54.642136,0,3,3,2021,12,0,40,40,1,0,0,10.177278,10.177278,0,0,0,1,0,0,0,0,1,1,0,6.3315935,6.7715931,47.55,47.03,62.39,56.71,6.666666666666667,1,1,0,0,7,13,5,1,1135,499030.97,388259.88,94302.289,0,0,0,4332.1821 +4435,5414,9626,9625,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.2756948,8.282238,0,7,-10,76.571922,0,3,3,2021,8,0,37,38,1,0,0,12.730417,12.730417,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.55,47.03,6.666666666666667,1,1,0,1,7,13,5,1,1135,499030.97,388259.88,94302.289,0,0,0,4332.1821 +4435,5415,9627,-9,9626,9625,1,1,23,0,0,0,2,2,-9,0,5,7.544035,7.4208999,0,0,0,-1057.4165,0,2,3,2021,6,0,40,8,1,0,1,5.2531037,5.2531037,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,6,13,3,1,1022,115791,0,0,0,0,0,1882.2692 +4436,5416,9628,9629,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.0293655,9.1194506,0,7,2,16.140972,0,2,2,2021,15,4,47,40,1,4,0,23.39712,23.39712,.05,.05,0,0,0,0,0,0,0,0,0,4.9226193,0,33.74,63,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1232,2397067.8,1913323.3,315042.75,45753.852,11126.398,0,5435.2412 +4436,5416,9629,9628,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.7929945,8.882103,0,7,-2,-37.965778,0,3,2,2021,7,0,37,31,1,0,0,29.28146,29.28146,.05,.05,0,0,0,0,0,7,0,0,0,5.7627506,0,57.16,56.15,33.74,63,6.666666666666667,1,1,0,0,8,12,5,1,1232,2397067.8,1913323.3,315042.75,45753.852,11126.398,0,5435.2412 +4437,5417,9630,9631,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,9.0345631,9.3353672,0,17,-1,71.614639,0,2,1,2021,8,2,34,33,1,2,0,38.324223,38.324223,.05,.05,0,0,0,0,0,0,1,1,0,3.6819575,0,48.96,60.26,59.29,49.68,8.333333333333334,1,1,0,0,9,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4437,5417,9631,9630,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,0,0,17,1,5.3271809,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,48.96,60.26,8.333333333333334,1,1,0,0,0,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4437,5417,9632,-9,9631,9630,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.3245,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4438,5418,9633,-9,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1068.2878,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.95,49.98,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5418,9634,-9,9633,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.62335,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5418,9635,-9,9633,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.04681,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5419,9636,-9,9633,-9,1,1,21,0,2,0,2,2,-9,0,1,6.8850436,6.8093505,0,0,0,-966.83429,0,3,-9,2021,16,5,24,24,1,5,1,4.5938315,4.5938315,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,40.91,-9,-9,5,4,2,0,0,4,4,2,0,534,39781.254,0,0,0,0,0,961.23779 +4439,5420,9637,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,8.2939062,8.4174957,0,0,-1019.158,0,3,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0149999,8.2745256,62.39,56.71,-9,-9,10,1,1,0,0,5,9,4,1,658,1123080.6,766518.94,444685.81,0,0,0,1878.4312 +4440,5421,9638,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6343679,8.9603815,0,0,0,-1140.4818,0,2,2,2021,21,9,47,81,1,9,0,9.998558,9.998558,.05,.05,0,0,0,0,0,2,0,0,0,0,0,26.78,53.92,-9,-9,3.333333333333333,1,1,0,0,13,12,5,1,2839,1333306.1,984031.63,138691.11,0,0,0,2618.853 +4441,5422,9639,9640,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.0969467,7.9841094,0,11,-13,-67.834335,0,2,1,2021,11,0,37,37,1,0,0,8.9450207,8.9450207,0,0,0,0,0,0,0,2,1,1,0,0,0,59.96,39.82,45.74,50.45,6.666666666666667,1,1,0,0,14,10,4,0,1125,953309.63,756645.31,207256.83,0,0,0,2665.1958 +4441,5422,9640,9639,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0985107,7.0590849,11,13,.6235497,0,2,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.97928238,7.3278704,45.74,50.45,59.96,39.82,8.333333333333334,1,1,0,0,7,10,4,0,1125,953309.63,756645.31,207256.83,0,0,0,2665.1958 +4442,5423,9641,9642,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2914209,8.2144699,0,34,-1,98.971519,0,2,2,2021,16,5,39,40,1,5,0,12.115916,12.115916,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,36.02,48.16,3.333333333333333,1,1,0,0,13,2,4,1,241.5,649671.63,290477,93863.906,0,0,0,1547.679 +4442,5423,9642,9641,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.036952,7.15415,0,34,1,-9.173069,0,2,2,2021,22,10,15,20,1,10,0,9.2524271,9.2524271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.02,48.16,52.93,52.64,6.666666666666667,1,1,0,0,13,2,4,1,241.5,649671.63,290477,93863.906,0,0,0,1547.679 +4443,5424,9643,9644,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.9447751,7.8751211,41,2,63.312031,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.8434741,7.877327,47.01,36.9,36.94,22.04,6.666666666666667,1,1,0,0,8,9,3,1,2699,873054.44,434321.5,288583.44,0,0,0,2461.532 +4443,5424,9644,9643,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,4.083662,3.6467819,41,-2,-17.571642,0,3,3,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8948138,3.8072836,36.94,22.04,47.01,36.9,1.666666666666667,4,2,0,1,7,9,3,1,2699,873054.44,434321.5,288583.44,0,0,0,2461.532 +4444,5425,9645,-9,9646,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6154,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4444,5425,9646,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.4128685,8.3642998,6.6208262,0,0,-1074.1526,0,2,2,2021,10,0,33,30,1,0,0,17.068493,17.068493,.05,.05,0,0,0,0,0,0,1,0,1,6.5913525,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4444,5425,9647,-9,9646,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3303,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4445,5426,9648,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.6038265,8.2996397,0,0,0,-997.42657,0,3,3,2021,8,0,51,52,1,0,0,9.818203,9.818203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,5738,140673.31,298258.34,0,0,2272.1255,6250.2964,1698.8501 +4446,5427,9649,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,1,8.155426,8.0863008,0,0,0,-1044.9534,0,2,2,2021,27,10,35,38,1,10,0,13.014953,13.014953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,-9,-9,0,1,1,0,0,9,12,4,1,269,213128.59,-25142.031,0,0,14041.353,0,1304.0155 +4447,5428,9650,-9,9652,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.61,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4447,5428,9651,-9,9652,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5836,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4447,5428,9652,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,7.0968876,7.4810791,5.8073521,0,0,-1008.6845,0,2,3,2021,4,0,8,0,1,0,0,14.723878,14.723878,0,0,0,0,0,0,0,0,1,1,0,6.520803,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4448,5429,9653,9654,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9111257,7.4808316,0,32,2,19.499434,0,3,3,2021,14,2,38,38,1,2,0,6.2634678,6.2634678,0,0,0,0,0,0,0,0,0,0,0,1.5696763,0,35.16,48.81,64.88,42.16,5,1,1,0,0,8,11,3,1,2266,125729.95,-89118.453,65342.234,8627.2754,0,0,1645.6353 +4448,5429,9654,9653,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.8935747,6.70819,0,32,-2,216.75557,0,3,3,2021,12,1,3,20,1,1,0,35.174927,35.174927,0,0,0,0,0,0,0,0,0,0,0,0,0,64.88,42.16,35.16,48.81,10,1,1,0,0,8,11,3,1,2266,125729.95,-89118.453,65342.234,8627.2754,0,0,1645.6353 +4449,5430,9655,9656,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6481276,8.2309446,0,12,-8,-18.606192,0,-9,-9,2021,6,0,50,45,1,0,0,12.216405,12.216405,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,40.38,31.72,6.666666666666667,1,1,0,0,13,12,4,0,142,835326.44,624413.94,244907.34,21733.678,0,0,2928.9492 +4449,5430,9656,9655,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,12,8,181.73242,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.38,31.72,62.49,55.09,3.333333333333333,1,1,0,0,9,12,4,0,142,835326.44,624413.94,244907.34,21733.678,0,0,2928.9492 +4450,5431,9657,-9,9659,9660,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4261,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9658,-9,9659,9660,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.0322,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9659,9660,-9,-9,1,0,49,0,2,0,1,1,-9,1,3,6.2861075,6.3623185,0,16,-3,72.284782,0,3,2,2021,18,6,13,0,1,6,0,5.3351288,5.3351288,0,0,0,0,0,0,0,42,1,1,0,0,0,39.69,50.43,47.62,56.48,3.333333333333333,2,3,0,0,2,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9660,9659,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.0559807,7.8848362,0,7,3,7.8128052,-9,-9,-9,2021,12,1,44,0,1,1,0,7.1104174,7.1104174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,56.48,39.69,50.43,3.333333333333333,2,3,0,0,6,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4451,5432,9661,9662,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.3816657,5.5226502,14,20,66.572769,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.4242718,2.1352956,25.053514,14.5,1,1,0,5.0420942,5.2083397,61.83,49.95,44.21,23.45,8.333333333333334,1,1,0,0,0,7,2,0,272.5,282044.38,24207.832,264655.44,0,0,0,1833.4131 +4451,5432,9662,9661,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,12,-20,-8.7514896,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.21,23.45,61.83,49.95,8.333333333333334,1,1,0,0,0,7,2,0,272.5,282044.38,24207.832,264655.44,0,0,0,1833.4131 +4451,5433,9663,-9,9662,9661,1,1,39,0,0,0,2,2,-9,0,4,8.3169136,8.4577942,0,0,0,-902.3595,0,3,3,2021,11,0,60,60,1,0,0,7.6193523,7.6193523,0,0,0,0,0,0,0,0,1,1,0,0,0,59.15,49.67,-9,-9,6.666666666666667,1,1,0,0,9,7,5,0,536,125410.72,0,0,0,0,4578.4663,2768.6646 +4452,5434,9664,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.2108393,6.9163041,0,0,-920.78693,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,14.906708,0,0,1,1,0,.0018916876,7.3744369,59.87,26.62,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,181,343778.84,131604.13,220983.45,0,0,0,1508.3662 +4453,5435,9665,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.2182493,6.6840534,0,0,-940.89758,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1559958,6.3666005,47.98,45.32,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,112,449689.75,332259.25,263471.59,0,0,0,1106.0841 +4454,5436,9666,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-912.15491,0,3,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,-9,-9,5,1,1,0,0,0,9,1,0,472,280607.66,99505.578,0,0,8412.3379,0,814.81714 +4455,5437,9667,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.0863147,4.7707133,0,0,-935.52765,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4273648,5.1513066,51.25,46.55,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,327,464339.66,0,278295.72,0,0,0,623.43567 +4456,5438,9668,-9,9670,9669,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.22266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9669,9670,-9,-9,1,1,51,0,3,0,1,1,-9,0,4,9.7830105,9.8455677,0,10,-1,28.997047,0,-9,-9,2021,19,8,52,53,1,8,0,34.95787,34.95787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,46.29,48.81,3.333333333333333,1,1,0,1,12,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9670,9669,-9,-9,1,0,52,0,3,0,1,1,-9,0,3,9.6617203,9.5891485,0,29,1,-30.536259,0,-9,-9,2021,10,0,45,60,1,0,0,41.143631,41.143631,0,0,0,0,0,0,0,0,0,0,0,0,0,46.29,48.81,42.95,61.24,5,3,4,0,1,12,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9671,-9,9670,9669,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.06366,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9672,-9,9670,9669,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-718.88031,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4457,5439,9673,9674,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4544802,8.4905167,0,8,0,171.41736,0,-9,-9,2021,9,0,40,37,1,0,0,12.074091,12.074091,.05,.05,0,0,0,0,0,0,0,0,0,7.3884306,0,50.8,45.44,38.12,49.17,6.666666666666667,1,1,0,0,11,4,4,1,604.5,262208.81,9263.3691,197839.23,77447.813,0,0,2848.7002 +4457,5439,9674,9673,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.5598063,7.5212502,0,8,0,-67.963348,0,-9,-9,2021,19,7,18,0,1,7,0,13.603336,13.603336,.05,.05,0,0,0,0,0,0,0,0,0,4.6069016,0,38.12,49.17,50.8,45.44,3.333333333333333,1,1,0,0,9,4,4,1,604.5,262208.81,9263.3691,197839.23,77447.813,0,0,2848.7002 +4458,5440,9675,9676,-9,-9,1,0,46,0,1,0,1,1,-9,1,1,8.5624657,8.7628956,0,17,-7,26.983736,0,2,2,2021,23,10,24,19,1,10,0,36.562073,36.562073,.05,.05,0,0,0,0,0,102,1,1,0,0,0,31.07,28,54.74,57.22,6.666666666666667,1,1,0,0,2,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4458,5440,9676,9675,-9,-9,1,1,53,0,1,0,1,1,1,0,4,8.3036861,8.1048908,5.900785,17,7,-3.2019238,-9,2,2,2021,3,0,40,0,1,0,0,9.331213,9.331213,.05,.05,0,0,0,0,0,2,1,1,0,5.9074068,0,54.74,57.22,31.07,28,6.666666666666667,1,1,0,0,1,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4458,5440,9677,-9,9675,9676,1,1,17,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1099.2681,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4459,5441,9678,9679,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0520763,8.337883,7.69946,8,2,80.215309,0,2,2,2021,18,6,20,18,1,6,0,14.012055,14.012055,.05,.05,0,0,0,0,0,0,0,0,0,7.3397532,7.6981072,47.72,40.04,51.25,46.55,3.333333333333333,1,1,0,0,9,10,5,1,112,632047,457555.88,218020.75,46158.59,0,0,2680.3203 +4459,5441,9679,9678,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.6195793,7.6427393,7.3526697,8,-2,143.69676,0,2,2,2021,10,0,30,30,1,0,0,2.5720129,2.5720129,.05,.05,0,0,0,0,0,0,0,0,0,1.962514,6.97685,51.25,46.55,47.72,40.04,8.333333333333334,1,1,0,0,9,10,5,1,112,632047,457555.88,218020.75,46158.59,0,0,2680.3203 +4459,5442,9680,-9,9679,9678,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1027.4846,1,2,2,2021,16,4,0,32,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.24,64.61,-9,-9,6.666666666666667,1,1,0,0,9,10,1,1,497,45258.129,0,0,0,0,0,0 +4460,5443,9681,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.4967837,7.4166293,0,0,0,-963.49719,0,2,1,2021,6,0,20,0,1,0,0,10.1985,10.1985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.61,50.58,-9,-9,10,1,1,0,0,1,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4460,5443,9682,-9,9681,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.9037,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4460,5443,9683,-9,9681,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.54651,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4461,5444,9684,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.4761877,8.4321184,0,0,0,-867.77527,0,2,1,2021,6,0,35,35,1,0,0,20.055868,20.055868,.05,.05,0,0,0,0,0,0,0,0,0,4.5203257,0,59.19,51.29,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,685,207631.28,121872.4,0,0,0,0,2866.9487 +4462,5445,9685,9686,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.6625004,8.8674583,0,12,-2,117.42351,0,2,2,2021,17,5,48,48,1,5,0,19.183167,19.183167,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,44.72,33.97,53.41,6.666666666666667,1,1,0,0,8,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4462,5445,9686,9685,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,6.5732007,6.3019476,0,11,2,19.767929,0,2,2,2021,21,8,16,16,1,8,0,3.3332961,3.3332961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.97,53.41,46.54,44.72,5,1,1,0,1,8,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4462,5445,9687,-9,9685,9686,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9683,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4463,5446,9688,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1003.9885,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.45,60.79,-9,-9,5,3,4,1,1,3,8,1,0,176,-36046.625,0,0,0,0,0,295.14691 +4463,5447,9689,-9,9688,-9,1,0,26,0,0,0,2,2,-9,0,5,7.9256873,7.804193,0,0,0,-1055.5266,0,2,2,2021,9,0,35,16,1,0,1,7.9667897,7.9667897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,-9,-9,8.333333333333334,3,4,0,0,5,8,3,0,175,44239.523,85570.352,0,0,0,0,778.89764 +4464,5448,9690,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,2,7.7580442,7.9281487,0,0,0,-994.63763,0,2,2,2021,16,4,25,30,1,4,0,9.3102951,9.3102951,.05,.05,0,0,0,0,0,7,1,1,0,0,0,36.03,55.74,-9,-9,5,1,1,0,0,9,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4464,5448,9691,-9,9690,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.0594,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4464,5448,9692,-9,9690,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.6109,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4465,5449,9693,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.1389642,5.8966374,0,0,-940.68658,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0436711,55,43,-9,-9,8,1,1,0,0,0,11,2,1,920,165066.67,-22479.391,228354.73,0,0,0,2169.9561 +4466,5450,9694,9695,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7129006,8.0326157,44,6,49.080833,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3974276,7.4006786,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,8,3,1,1188,681829.5,192414.7,370806.75,0,0,0,2585.7844 +4466,5450,9695,9694,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.2795682,6.8923998,6.5320306,45,-6,37.240982,0,2,2,2021,9,1,10,8,1,1,0,6.5016418,6.5016418,0,0,0,0,0,0,0,0,1,1,0,4.3040276,6.5737557,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,8,3,1,1188,681829.5,192414.7,370806.75,0,0,0,2585.7844 +4467,5451,9696,9697,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.7836847,7.8681722,6.3990259,36,-21,-13.363105,0,-9,-9,2021,25,12,20,20,1,12,0,8.9710493,8.9710493,0,0,0,0,0,0,0,2,1,1,0,2.7571421,6.9359918,27.12,30.96,40.58,43.59,3.333333333333333,1,1,0,0,10,9,3,1,423.5,817474.88,27445.938,603480.5,0,0,0,2387.9922 +4467,5451,9697,9696,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.5984526,7.0033073,36,21,-8.5302277,0,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.4393921,7.2655854,40.58,43.59,27.12,30.96,5,1,1,0,0,0,9,3,1,423.5,817474.88,27445.938,603480.5,0,0,0,2387.9922 +4468,5452,9698,9699,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,9.2911949,9.7098751,7.0223961,27,17,-5.0996761,0,2,3,2021,10,0,50,68,1,1,0,25.464094,25.464094,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.3331199,51,48,53.33,53.71,7,1,1,0,0,1,8,5,1,729.5,2536143,1282385.1,93139.969,0,0,0,7065.6494 +4468,5452,9699,9698,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6105413,8.7968454,0,27,-17,7.8195701,0,2,2,2021,8,0,18,20,1,0,0,39.928379,39.928379,0,0,0,0,0,0,0,2,0,0,0,0,0,53.33,53.71,51,48,8.333333333333334,1,1,0,0,13,8,5,1,729.5,2536143,1282385.1,93139.969,0,0,0,7065.6494 +4468,5453,9700,-9,9699,9698,1,0,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-939.84021,1,1,1,2021,13,2,0,40,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,8,8,1,1,570,-199577.72,0,0,0,0,0,679.80743 +4468,5454,9701,-9,9699,9698,1,1,22,0,0,0,1,1,-9,0,4,8.2402391,8.7036209,0,0,0,-1003.82,0,1,1,2021,5,0,60,0,1,0,1,8.6198387,8.6198387,.05,.05,0,0,0,0,0,0,0,0,0,4.2490978,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,514,257864.11,-42003.801,0,0,0,0,1239.943 +4468,5455,9702,-9,9699,9698,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-977.59674,-9,1,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1162479,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,223,125011.9,0,0,0,0,1445.0845,-479.85477 +4469,5456,9703,9704,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,43,-5,111.13393,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0315793,0,58.47,44.69,52.6,52.88,8.333333333333334,1,1,0,0,4,12,2,1,808.5,165876.06,50156.273,98389.211,0,0,0,2059.5842 +4469,5456,9704,9703,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.0988793,7.5156369,43,5,73.810921,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2562323,7.2369061,52.6,52.88,58.47,44.69,8.333333333333334,1,1,0,0,0,12,2,1,808.5,165876.06,50156.273,98389.211,0,0,0,2059.5842 +4470,5457,9705,9706,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2576246,8.0575151,0,6,-1,-.38836512,0,-9,-9,2021,6,0,38,38,1,0,0,11.945798,11.945798,.05,.05,0,0,0,0,0,0,0,0,0,2.7046194,0,51.73,58.82,49.84,48.57,8.333333333333334,1,1,0,0,7,5,4,0,388,3047.5454,74300.195,0,0,29035.195,3331.5381,1673.7166 +4470,5457,9706,9705,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.3132701,7.2578163,0,6,1,18.819239,0,-9,-9,2021,10,0,25,25,1,0,0,5.6594067,5.6594067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,51.73,58.82,8.333333333333334,1,1,0,0,3,5,4,0,388,3047.5454,74300.195,0,0,29035.195,3331.5381,1673.7166 +4471,5458,9707,-9,9711,9709,1,1,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-946.24414,-9,1,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,-9,-9,5,1,1,1,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9708,-9,9711,9709,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.1182,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9709,9711,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,8.7105427,8.6994762,0,21,11,-52.585793,0,2,2,2021,8,0,35,35,1,0,0,23.223085,23.223085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,43.2,59.97,8.333333333333334,1,1,0,0,8,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9710,-9,9711,9709,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.2737,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9711,9709,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.2929745,8.0332556,0,21,-11,54.819191,0,2,2,2021,12,0,24,24,1,0,0,18.348806,18.348806,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,49.04,55.86,5,1,1,0,1,8,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5459,9712,-9,9711,9709,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1123.9095,0,1,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,59.1,-9,-9,10,1,1,1,0,0,9,1,1,156,-109814,0,0,0,0,0,0 +4472,5460,9713,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.1908512,5.7911582,0,0,-946.76849,0,3,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9607916,6.1398201,48.96,25.27,-9,-9,0,1,1,0,0,7,5,2,1,92,71734.211,207449.05,0,0,0,0,1406.6464 +4473,5461,9714,9715,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.7944736,8.0353165,12,0,-31.722427,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.342658,53.37,45.61,57.33,53.46,8.333333333333334,1,1,0,0,13,9,3,1,388,172643.03,-50580.063,271630.69,0,2955.636,0,1525.4648 +4473,5461,9715,9714,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,12,0,-72.395599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.37,45.61,10,1,1,0,0,7,9,3,1,388,172643.03,-50580.063,271630.69,0,2955.636,0,1525.4648 +4474,5462,9716,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.4013638,7.4121356,0,0,0,-984.69171,0,2,1,2021,7,0,33,30,1,0,0,7.4176488,7.4176488,0,0,0,0,0,0,0,0,0,0,0,1.0543336,0,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,15,9,3,1,780,0,0,0,0,0,0,713.04541 +4475,5463,9717,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.3880167,7.8359318,0,0,0,-988.3974,0,2,2,2021,6,0,20,20,1,0,0,11.900746,11.900746,0,0,0,0,0,0,0,0,1,1,0,6.388124,0,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,272,-12854.927,-32608.182,82727.953,0,0,0,260.79837 +4476,5464,9718,9719,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,-4,-60.171688,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,2.7519863,33.28038,22.255709,0,1,1,0,0,0,29.66,49.31,55.83,54.24,1.666666666666667,1,1,0,0,0,12,3,1,296.5,1538288,390701.31,258629.94,0,3561.1929,0,3326.7144 +4476,5464,9719,9718,-9,-9,1,1,83,0,0,0,1,1,-9,0,5,0,7.9620028,8.2793999,59,4,-39.820198,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.2768872,8.2658405,55.83,54.24,29.66,49.31,6.666666666666667,1,1,0,0,0,12,3,1,296.5,1538288,390701.31,258629.94,0,3561.1929,0,3326.7144 +4477,5465,9720,-9,9721,9722,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.98492,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9721,9722,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3468046,6.9125805,0,6,0,26.288153,0,2,1,2021,11,0,15,15,1,0,0,9.6346025,9.6346025,.05,.05,0,0,0,0,0,0,1,1,0,2.0355744,0,50.6,53.68,46.44,59.62,8.333333333333334,1,1,0,0,7,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9722,9721,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.9850321,9.2712412,0,6,0,86.590843,0,1,1,2021,10,1,50,55,1,1,0,20.12907,20.12907,.05,.05,0,0,0,0,0,0,1,1,0,3.0778825,0,46.44,59.62,50.6,53.68,8.333333333333334,1,1,0,0,7,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9723,-9,9721,9722,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.33655,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4478,5466,9724,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.7711415,7.7116323,0,0,-950.81348,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2701907,7.7615895,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1065,494275.19,303875.22,146495.75,0,0,7898.9995,1183.4099 +4479,5467,9725,-9,-9,-9,1,1,77,0,1,0,2,2,-9,0,2,0,7.7217913,7.2502112,0,0,-902.46509,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,28.902239,0,0,1,1,0,.74881464,7.4413919,43.34,45.18,-9,-9,5,1,1,0,0,0,9,3,1,779,1336542.4,422503.13,182872.19,0,0,0,1701.239 +4479,5468,9726,9727,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.1775951,6.9506412,0,1,0,3.3301969,-9,-9,-9,2021,10,0,25,0,1,1,0,6.4915829,6.4915829,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,8,4,6,0,0,1,9,4,1,352,64215.609,54857.488,209360.38,114180.99,7544.9229,1010.3117,3612.6296 +4479,5468,9727,9726,-9,9725,1,1,39,0,1,0,2,2,-9,0,4,8.4435549,8.6029968,0,1,0,-125.43533,-9,-9,2,2021,9,0,35,0,1,1,0,26.122746,26.122746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,6,0,0,1,9,4,1,352,64215.609,54857.488,209360.38,114180.99,7544.9229,1010.3117,3612.6296 +4480,5469,9728,9729,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,5.4317613,5.3139005,49,-1,6.0950742,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7611918,45.52,55.96,43.37,57.28,6.666666666666667,1,1,0,0,6,9,3,0,373,687250.5,523467.19,364365.53,0,0,0,2840.8315 +4480,5469,9729,9728,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.7319527,7.9127378,5.944037,49,1,-62.355278,0,3,3,2021,12,0,40,51,1,0,0,6.7129183,6.7129183,.05,.05,0,0,0,0,0,2,1,1,0,6.3248606,6.3691897,43.37,57.28,45.52,55.96,3.333333333333333,1,1,0,0,6,9,3,0,373,687250.5,523467.19,364365.53,0,0,0,2840.8315 +4481,5470,9730,9731,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.1597385,7.0132108,8,5,-22.653833,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,39.008125,0,0,1,1,0,6.8954773,6.9550428,48.15,33.2,58.3,52.91,6.666666666666667,1,1,0,0,0,5,2,1,792,431755.88,197330.31,123626.52,0,0,0,1589.7646 +4481,5470,9731,9730,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,8,-5,-8.2830524,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9156301,0,58.3,52.91,48.15,33.2,10,1,1,0,0,0,5,2,1,792,431755.88,197330.31,123626.52,0,0,0,1589.7646 +4482,5471,9732,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.4752359,8.5971317,6.722878,0,0,-1068.5413,0,3,3,2021,9,0,37,37,1,0,0,18.949503,18.949503,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0138106,51.94,40.74,-9,-9,6.666666666666667,1,1,0,0,12,1,5,1,2713,-101281.54,91200.117,0,0,5648.9868,237.13644,2487.3428 +4483,5472,9733,9734,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.1234665,8.8547993,0,13,5,45.144547,0,2,2,2021,10,0,37,37,1,1,0,23.573217,23.573217,.05,.05,0,0,0,0,0,0,1,1,0,2.669239,0,51,56,48.77,60.16,7,1,1,0,0,1,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9734,9733,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,0,0,12,-5,8.6799479,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,51,56,8.333333333333334,1,1,0,0,3,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9735,-9,9734,9733,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.14264,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9736,-9,9734,9733,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-846.06207,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4484,5473,9737,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.9024639,5.6667676,0,0,-896.54834,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7365403,57.33,53.46,-9,-9,5,1,1,0,0,0,12,2,1,1057,136179.36,184287.48,109873.79,35959.59,0,0,976.99237 +4485,5474,9738,-9,9740,9741,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-900.03619,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9739,-9,9740,9741,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.6485,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9740,9741,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.6464615,8.8256454,0,21,-7,50.669792,0,3,2,2021,7,0,24,24,1,0,0,21.957315,21.957315,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.94,23.15,54.77,39.97,8.333333333333334,1,1,0,0,9,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9741,9740,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8508711,8.4459019,0,21,7,79.391174,0,2,2,2021,11,2,42,43,1,2,0,18.340382,18.340382,.05,.05,0,0,0,0,0,0,1,1,0,2.5213175,0,54.77,39.97,55.94,23.15,5,1,1,0,0,9,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4486,5475,9742,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2401323,7.8717775,0,0,0,-1035.1221,0,-9,-9,2021,7,0,38,40,1,0,0,7.9773593,7.9773593,0,0,0,0,0,0,0,2,0,0,0,1.6760645,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,604,204514.95,0,0,0,0,0,2007.5977 +4487,5476,9743,-9,9745,9744,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.55133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4487,5476,9744,9745,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.5102921,8.4415665,0,6,0,-4.1182055,0,3,3,2021,7,0,48,42,1,0,0,13.354904,13.354904,.05,.05,0,0,0,0,0,0,1,1,0,3.2378519,0,48.48,49.45,42.24,52.48,8.333333333333334,1,1,0,0,10,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4487,5476,9745,9744,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.6970925,7.4783254,0,6,0,-60.122402,0,-9,-9,2021,6,0,22,24,1,0,0,11.2134,11.2134,.05,.05,0,0,0,0,0,0,1,1,0,4.4774704,0,42.24,52.48,48.48,49.45,5,1,1,0,0,4,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4488,5477,9746,-9,9748,-9,1,1,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1021.7953,1,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.22,48.82,-9,-9,8.333333333333334,4,2,0,0,0,8,1,1,169,0,0,0,0,0,0,0 +4488,5478,9747,9748,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.2546434,8.3128633,0,6,3,-6.7425966,0,-9,-9,2021,8,0,36,40,1,0,0,12.85905,12.85905,.05,.05,0,0,0,0,0,0,1,1,0,2.6099195,0,55,53,45.17,41.54,8,3,4,0,0,1,8,5,1,1540,129811.36,148305.66,0,0,0,0,3734.9731 +4488,5478,9748,9747,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1715479,7.9677763,0,6,-3,52.944645,0,2,2,2021,14,2,30,20,1,2,0,14.209047,14.209047,0,0,0,0,0,0,0,0,1,1,0,0,0,45.17,41.54,55,53,6.666666666666667,3,4,0,0,7,8,5,1,1540,129811.36,148305.66,0,0,0,0,3734.9731 +4489,5479,9749,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1124.3845,0,2,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,24.183489,0,0,1,1,0,0,0,42.03,24.15,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,572,-36562.98,0,0,0,0,0,392.7179 +4490,5480,9750,9752,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.9648833,8.0749855,0,8,-1,93.276199,0,2,2,2021,18,6,37,30,1,6,0,8.1002092,8.1002092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.79,62.9,52.23,55.6,3.333333333333333,1,1,0,1,9,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9751,-9,9750,9752,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.392,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9752,9750,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9685106,9.0488749,0,8,1,-45.046703,0,3,1,2021,9,0,42,43,1,0,0,24.904827,24.904827,.05,.05,0,0,0,0,0,0,1,1,0,3.3217487,0,52.23,55.6,27.79,62.9,5,1,1,0,0,9,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9753,-9,9750,9752,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.673,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4491,5481,9754,9755,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5361586,8.7428789,0,4,5,-103.6478,0,2,2,2021,10,0,36,37,1,0,0,20.448925,20.448925,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52,54.51,35.91,63.19,8.333333333333334,1,1,0,0,11,5,5,1,438.5,817506.88,918272.25,121593.76,71872.805,22731.227,1140.5105,3249.541 +4491,5481,9755,9754,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9599152,8.2579794,0,4,-5,57.408504,0,-9,-9,2021,10,0,29,51,1,0,0,9.7589741,9.7589741,0,0,0,0,0,0,0,0,0,0,0,1.8292164,0,35.91,63.19,52,54.51,8.333333333333334,1,1,0,0,2,5,5,1,438.5,817506.88,918272.25,121593.76,71872.805,22731.227,1140.5105,3249.541 +4492,5482,9756,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2508707,8.1452827,0,0,0,-991.73682,0,2,2,2021,7,0,30,40,1,0,0,14.717101,14.717101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,449,87732.227,25140.584,0,0,-168.5052,0,1547.2965 +4493,5483,9757,9758,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0611806,6.5070133,58,6,56.513798,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1419239,57.57,49.69,55.77,47.78,8.333333333333334,3,4,0,0,0,9,2,1,475.5,750722.13,5494.2495,559516.56,0,0,0,1145.811 +4493,5483,9758,9757,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,4.5308681,4.172296,57,-6,-48.115952,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7491984,4.5916142,55.77,47.78,57.57,49.69,8.333333333333334,3,4,0,0,0,9,2,1,475.5,750722.13,5494.2495,559516.56,0,0,0,1145.811 +4494,5484,9759,9760,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.6871843,7.6176624,0,11,0,-55.26984,0,3,3,2021,6,0,38,35,1,0,0,8.9088984,8.9088984,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.06,52.92,65.90000000000001,45.38,10,2,3,0,0,12,9,4,1,681.5,303104.28,151883.47,188157.88,11014.617,0,0,2330.3076 +4494,5484,9760,9759,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6401148,7.6402831,0,11,0,-41.689606,0,3,3,2021,7,0,38,20,1,0,0,5.8048038,5.8048038,0,0,0,0,0,0,0,0,0,0,0,0,0,65.90000000000001,45.38,55.06,52.92,8.333333333333334,2,3,0,0,12,9,4,1,681.5,303104.28,151883.47,188157.88,11014.617,0,0,2330.3076 +4495,5485,9761,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.216218,8.4628658,0,0,0,-1130.8466,0,3,2,2021,9,0,37,37,1,0,0,11.421911,11.421911,.05,.05,0,0,0,0,0,0,0,0,0,5.3003783,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,190,2125054,1785625.6,143710.86,17770.883,-1176.3944,0,424.41568 +4496,5486,9762,9763,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.1176281,9.1403751,0,5,-1,138.86905,0,-9,-9,2021,8,0,41,40,1,0,0,24.00938,24.00938,.05,.05,0,0,0,0,0,7,1,1,0,6.496006,0,51.83,57.2,55.6,27.13,8.333333333333334,1,1,0,0,5,2,5,1,1026,117027.82,-29879.877,228064.19,178632.19,0,0,5581.1582 +4496,5486,9763,9762,-9,-9,1,0,36,0,0,0,1,1,-9,1,2,8.8986454,8.4236422,0,5,1,53.970345,0,2,2,2021,15,5,38,40,1,5,0,21.476507,21.476507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.6,27.13,51.83,57.2,1.666666666666667,1,1,0,0,10,2,5,1,1026,117027.82,-29879.877,228064.19,178632.19,0,0,5581.1582 +4497,5487,9764,-9,9767,9766,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.664,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9765,-9,9767,9766,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7397,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9766,9767,-9,-9,1,1,42,0,2,0,2,2,-9,0,1,0,0,0,10,3,-49.272541,0,2,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.21,31.62,45.12,58.81,8.333333333333334,1,1,0,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9767,9766,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.7812538,8.9432516,0,10,-3,166.92856,0,1,1,2021,8,0,47,52,1,0,0,14.355991,14.355991,0,0,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,53.21,31.62,8.333333333333334,1,1,0,0,8,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4498,5488,9768,9769,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.982131,8.1481647,0,26,-2,145.02817,0,2,2,2021,9,0,35,36,1,0,0,9.1889715,9.1889715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,52.35,49.04,55.86,1.666666666666667,1,1,0,0,12,12,5,1,687.5,479648.59,211363.5,215314.66,0,19434.871,0,3182.0291 +4498,5488,9769,9768,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.490016,8.4159431,0,26,2,10.694146,0,-9,2,2021,12,0,35,35,1,0,0,13.157156,13.157156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,53.54,52.35,6.666666666666667,1,1,0,0,9,12,5,1,687.5,479648.59,211363.5,215314.66,0,19434.871,0,3182.0291 +4498,5489,9770,-9,9768,9769,1,1,24,0,0,0,2,2,-9,0,3,8.0523891,8.0367689,0,0,0,-924.40222,0,2,2,2021,10,0,35,18,1,0,1,8.9200268,8.9200268,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,102,-80798.234,0,0,0,0,0,1848.7194 +4499,5490,9771,9772,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,3.9790437,3.6092875,8,5,-31.527021,0,2,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,25.369324,30.391964,244.38594,0,1,1,0,0,3.9456477,41.15,25.78,42.62,30.76,8.333333333333334,1,1,0,0,0,9,2,0,659,86101.727,-7807.582,0,0,1406.637,0,2700.5156 +4499,5490,9772,9771,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,4.9558768,5.4857969,62,-5,30.816303,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,4.7926345,42.62,30.76,41.15,25.78,3.333333333333333,1,1,0,0,0,9,2,0,659,86101.727,-7807.582,0,0,1406.637,0,2700.5156 +4500,5491,9773,9774,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,39,-1,-129.80708,-9,3,-9,2021,19,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.16,63.25,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,940.5,1353681.5,336298.72,383104.25,0,0,0,4774.6958 +4500,5491,9774,9773,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6269188,9.2854624,7.6666675,39,1,-35.598068,0,3,2,2021,5,0,45,48,1,0,0,16.322851,16.322851,.05,.05,0,0,0,0,0,0,0,0,0,8.214694,0,57.16,56.15,21.16,63.25,8.333333333333334,1,1,0,0,12,12,5,1,940.5,1353681.5,336298.72,383104.25,0,0,0,4774.6958 +4501,5492,9775,9776,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,53,-4,-46.912842,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0593271,0,49.27,47.49,57.16,56.15,8.333333333333334,1,1,0,0,0,8,3,1,366,673156.81,536856,193402.23,0,1467.3728,0,3601.6938 +4501,5492,9776,9775,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,8.2164707,7.9449301,53,4,40.193386,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9531999,57.16,56.15,49.27,47.49,8.333333333333334,1,1,0,0,0,8,3,1,366,673156.81,536856,193402.23,0,1467.3728,0,3601.6938 +4502,5493,9777,9778,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.1035118,8.3298855,0,5,7,13.253036,0,-9,-9,2021,20,8,40,40,1,8,0,9.9505253,9.9505253,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.64,55.03,51.41,56.15,8.333333333333334,1,1,0,0,9,1,4,1,115,35128.281,136839.56,0,0,12766.004,2601.2559,2428.0044 +4502,5493,9778,9777,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.1495733,8.0649834,0,5,-7,79.157204,-9,-9,-9,2021,8,1,37,0,1,1,0,10.116997,10.116997,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.41,56.15,38.64,55.03,3.333333333333333,1,1,0,0,7,1,4,1,115,35128.281,136839.56,0,0,12766.004,2601.2559,2428.0044 +4503,5494,9779,9780,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.4715242,8.0848436,0,8,1,-23.113253,0,-9,-9,2021,6,0,38,44,1,0,0,10.670164,10.670164,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,331,-108931.29,-64460.047,0,0,4377.2173,0,2567.6123 +4503,5494,9780,9779,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.8632126,7.5862908,0,8,-1,81.199883,0,-9,-9,2021,9,0,33,38,1,0,0,10.195701,10.195701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,4,4,1,331,-108931.29,-64460.047,0,0,4377.2173,0,2567.6123 +4504,5495,9781,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.3756828,7.4513435,0,0,-1003.6686,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7254521,7.6058016,58.09,40.6,-9,-9,10,1,1,0,0,0,2,3,1,1973,40517.715,139122.16,184718.63,0,0,0,1918.5889 +4505,5496,9782,9783,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,9.0735626,9.2588167,40,4,36.257988,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4586296,8.6112194,58.15,52.91,54.79,55.86,1.666666666666667,1,1,0,0,7,7,5,1,1034.5,2039827.8,1333329.8,462710.56,0,0,0,6722.3169 +4505,5496,9783,9782,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,0,0,39,-4,38.703114,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8796525,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,7,5,1,1034.5,2039827.8,1333329.8,462710.56,0,0,0,6722.3169 +4506,5497,9784,9785,-9,-9,1,1,92,0,0,0,1,1,-9,0,3,0,0,0,66,6,37.736801,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2371671,0,56,44,32.93,35.08,8,1,1,0,0,0,9,3,1,1073.5,1274830.9,202304.16,541310.25,0,0,0,2287.2285 +4506,5497,9785,9784,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,8.1121597,8.1327744,66,-6,-20.712776,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,8.7237873,0,86.278625,120,1,1,0,3.5,8.321104,32.93,35.08,56,44,5,1,1,0,0,0,9,3,1,1073.5,1274830.9,202304.16,541310.25,0,0,0,2287.2285 +4507,5498,9786,9787,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,6.3510814,6.165834,0,1,0,20.845503,-9,3,3,2021,15,4,10,0,1,4,0,6.7165556,6.7165556,0,0,0,0,0,0,0,116,0,0,0,5.3594589,0,48.45,51.96,52.64,30.25,5,1,1,0,0,8,5,3,1,782,-1958.4219,35691.418,184181.63,0,0,5175.6133,2642.3145 +4507,5498,9787,9786,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.96139,8.0026455,0,1,0,-93.433693,-9,-9,-9,2021,13,4,40,0,1,4,0,7.6531558,7.6531558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.64,30.25,48.45,51.96,8.333333333333334,1,1,0,0,4,5,3,1,782,-1958.4219,35691.418,184181.63,0,0,5175.6133,2642.3145 +4507,5499,9788,-9,9786,9787,1,1,21,0,1,0,2,2,-9,0,3,7.4819303,7.5871029,0,0,0,-1047.6172,-9,3,2,2021,8,0,9,0,1,0,1,23.740816,23.740816,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,7322,0,0,0,0,0,0,695.27136 +4507,5500,9789,-9,9786,9787,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-989.50708,-9,3,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,5,1,1,1439,-38493,0,0,0,0,0,0 +4508,5501,9790,9791,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8223081,8.1360941,50,2,56.93914,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8519025,60.86,50.49,46.08,57.2,8.333333333333334,1,1,0,0,0,6,4,1,675.5,1398115.6,1024223,431804.13,123389.17,0,0,2616.7778 +4508,5501,9791,9790,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2076001,7.0277362,50,-2,15.242461,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0114477,7.1116347,46.08,57.2,60.86,50.49,8.333333333333334,1,1,0,0,0,6,4,1,675.5,1398115.6,1024223,431804.13,123389.17,0,0,2616.7778 +4509,5502,9792,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,8.0029116,8.4403143,7.8524718,0,0,-1216.832,0,3,3,2021,22,10,60,60,1,10,0,5.6376123,5.6376123,.05,.05,.05,0,0,0,0,0,1,1,0,2.7861407,8.0524797,36.4,33.57,-9,-9,3.333333333333333,1,1,0,0,10,5,5,0,379,-24717.535,31561.389,0,0,0,0,4039.6094 +4510,5503,9793,9794,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3385448,8.2582474,0,8,-6,-249.76755,0,3,3,2021,10,0,44,42,1,0,0,8.5516186,8.5516186,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,46.15,36.87,25.22,6.666666666666667,1,1,0,0,13,12,4,0,670.5,1436636.1,877046.06,408375.59,0,0,0,3295.25 +4510,5503,9794,9793,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,8.1413355,8.0852156,0,8,6,-21.256685,0,-9,-9,2021,20,8,25,40,1,8,0,14.383842,14.383842,0,0,0,0,0,0,0,0,1,1,0,0,0,36.87,25.22,50.05,46.15,3.333333333333333,1,1,0,1,6,12,4,0,670.5,1436636.1,877046.06,408375.59,0,0,0,3295.25 +4511,5504,9795,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.5511351,8.3565817,0,0,0,-1061.589,0,3,3,2021,6,0,40,40,1,0,0,16.611715,16.611715,.05,.05,0,0,0,0,0,0,1,1,0,7.13203,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,2,5,1,1872.5,573205.5,434899.94,138773.63,90633.688,0,0,2954.0405 +4511,5504,9796,-9,9795,-9,1,1,16,0,0,1,2,0,-9,0,4,0,7.037961,6.9305606,0,0,-1053.5929,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7217841,0,43.92,59.79,-9,-9,8.333333333333334,2,3,0,0,0,2,5,1,1872.5,573205.5,434899.94,138773.63,90633.688,0,0,2954.0405 +4511,5505,9797,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-963.86212,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,2610,-106909.19,0,0,0,0,0,0 +4511,5506,9798,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,5.9443216,6.2493534,0,0,-1050.2349,-9,-9,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9906316,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,5052,211659.91,46071.523,0,0,4226.4844,0,46.594906 +4512,5507,9799,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.7782741,7.6645803,0,0,0,-1050.6372,0,3,3,2021,12,0,38,31,1,0,0,6.561605,6.561605,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,5,1,1,0,1,6,4,3,0,240,131206.91,-14101.94,98967.742,0,0,0,1365.684 +4513,5508,9800,9801,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,9.083498,8.684227,0,8,1,22.560812,0,2,3,2021,7,0,41,37,1,0,0,20.025379,20.025379,.05,.05,0,0,0,0,0,0,0,0,0,1.8459853,0,49.84,59.62,48.28,60.18,8.333333333333334,1,1,0,0,9,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4513,5508,9801,9800,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,9.6469374,9.2297421,0,8,-1,152.60925,0,3,3,2021,18,6,53,83,1,6,0,24.042501,24.042501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.84,59.62,8.333333333333334,1,1,0,0,9,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4513,5508,9802,-9,9801,9800,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1032.1941,-9,1,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,0,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4514,5509,9803,-9,-9,-9,1,1,37,0,0,0,3,3,-9,0,4,8.2281771,8.2691469,0,0,0,-1005.5203,0,2,-9,2021,6,0,38,38,1,0,0,12.359521,12.359521,0,0,0,0,0,0,0,0,0,0,0,.49717855,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,103,288919.31,0,0,0,0,0,1988.5614 +4515,5510,9804,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.4059501,7.4493489,0,0,-922.90778,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8182383,60.29,52.11,-9,-9,10,1,1,0,0,11,2,3,1,1584,543423.38,324310.84,22469.092,0,0,0,2183.6514 +4516,5511,9805,9806,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,4,-1,92.110603,0,-9,-9,2021,23,8,0,42,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.46,56.1,54.2,57.49,8.333333333333334,1,1,1,1,3,7,3,1,1236,693926.06,-8548.4375,670050.63,0,0,0,2043.2368 +4516,5511,9806,9805,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.1387529,8.4028635,0,4,1,-14.274883,0,2,2,2021,6,0,35,38,1,0,0,12.087648,12.087648,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,39.46,56.1,8.333333333333334,1,1,0,0,5,7,3,1,1236,693926.06,-8548.4375,670050.63,0,0,0,2043.2368 +4517,5512,9807,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1026.9825,-9,3,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,1,0,5,1,0,1364,-74788.344,0,0,0,3059.499,1007.2689,439.83011 +4518,5513,9808,-9,9809,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.423,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,233,-96778.406,0,0,0,5530.3418,0,1246.7642 +4518,5513,9809,-9,-9,-9,1,0,36,0,2,0,2,2,0,0,4,0,6.2961345,6.5933924,0,0,-991.03424,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3429422,0,47,57,-9,-9,7,1,1,0,1,2,6,2,0,233,-96778.406,0,0,0,5530.3418,0,1246.7642 +4519,5514,9810,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,5.0824862,4.8073072,0,0,-1075.5302,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1341691,37.41,26.64,-9,-9,5,1,1,0,0,0,9,2,0,278,688285.5,-102523.57,510639.09,0,0,0,1475.5748 +4520,5515,9811,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4378886,7.2775669,0,0,-889.32397,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7361193,7.5013824,52.47,40.47,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,418,135600.63,174153.41,0,0,0,0,1801.103 +4521,5516,9812,9813,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6463041,8.584836,0,13,3,20.013916,-9,-9,-9,2021,9,0,40,0,1,1,0,14.43679,14.43679,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,54,43.84,47.84,8,1,1,0,0,1,7,4,1,426,928123.13,366351.47,656906.13,117646.2,0,0,3127.7139 +4521,5516,9813,9812,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.543891,7.3659797,0,13,-3,-67.686836,0,2,2,2021,12,0,20,0,1,0,0,9.979353,9.979353,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,47.84,53,54,8.333333333333334,1,1,0,0,1,7,4,1,426,928123.13,366351.47,656906.13,117646.2,0,0,3127.7139 +4522,5517,9814,9815,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,58,-2,87.673698,0,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.29,49.1,62.27,34.71,8.333333333333334,1,1,0,0,0,6,3,1,321,376390.97,249020.34,109999.61,0,0,0,2456.5327 +4522,5517,9815,9814,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.5779667,7.721242,58,2,29.003336,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6937022,62.27,34.71,34.29,49.1,8.333333333333334,1,1,0,0,0,6,3,1,321,376390.97,249020.34,109999.61,0,0,0,2456.5327 +4523,5518,9816,9817,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.6472836,7.036849,59,-6,-52.457462,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.9505334,6.7063456,52.17,25.93,50.14,37.92,5,1,1,0,0,0,2,2,1,821,632647.25,272820.19,192287.53,0,0,0,1935.9575 +4523,5518,9817,9816,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.7086811,5.8034506,59,6,-8.9082642,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5558264,0,0,1,1,0,0,5.6088252,50.14,37.92,52.17,25.93,6.666666666666667,1,1,0,0,0,2,2,1,821,632647.25,272820.19,192287.53,0,0,0,1935.9575 +4524,5519,9818,9819,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.1397209,7.4861255,45,6,-33.671703,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1390624,7.5078745,57.16,56.15,42.2,25.93,8.333333333333334,1,1,0,0,0,6,2,1,1767,601463.63,495409.31,173238.72,0,0,0,3693.1479 +4524,5519,9819,9818,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,45,-6,-41.420574,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.24944,0,42.2,25.93,57.16,56.15,3.333333333333333,1,1,0,0,4,6,2,1,1767,601463.63,495409.31,173238.72,0,0,0,3693.1479 +4525,5520,9820,9821,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.3107042,7.9914546,36,1,61.257187,-9,1,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2863035,7.7439208,54.69,57.47,57.06,57.76,10,1,1,0,0,6,9,5,1,366,2472783.8,1787901,475325.06,0,0,0,8382.209 +4525,5520,9821,9820,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7462101,8.981391,1,-1,-64.235077,-9,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0011168,8.8952999,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,9,5,1,366,2472783.8,1787901,475325.06,0,0,0,8382.209 +4526,5521,9822,9823,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.1133862,6.8811073,44,0,-135.76636,0,2,2,2021,11,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1526699,7.2135811,57.16,56.15,52.58,47.36,8.333333333333334,1,1,0,0,9,7,4,1,249,1194948,703318.5,223427.5,0,0,0,3628.167 +4526,5521,9823,9822,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8659062,8.0108337,44,0,12.154503,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1358714,8.4819689,52.58,47.36,57.16,56.15,6.666666666666667,1,1,0,0,0,7,4,1,249,1194948,703318.5,223427.5,0,0,0,3628.167 +4527,5522,9824,9826,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.2981386,8.2064629,0,3,4,15.880951,0,-9,-9,2021,12,1,39,45,1,1,0,12.890335,12.890335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.19,64.7,54.96,53.17,3.333333333333333,1,1,0,0,3,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4527,5522,9825,-9,9826,9824,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.417,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4527,5522,9826,9824,-9,-9,1,0,24,1,1,0,1,1,-9,0,3,7.3730249,7.4275846,0,3,-4,-41.915867,0,-9,-9,2021,6,0,22,24,1,0,0,6.3976893,6.3976893,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,26.19,64.7,10,1,1,0,0,6,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4528,5523,9827,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.9484463,7.3155274,0,0,-940.51569,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,7.9665899,0,0,1,1,0,5.5380783,6.8561769,63.67,24.99,-9,-9,5,1,1,0,0,3,9,2,1,955,644260.94,294139,257407.27,50358.691,0,0,1985.3193 +4529,5524,9828,-9,9829,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.17401,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4529,5524,9829,-9,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,0,0,0,0,0,-877.08295,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.69,50.51,-9,-9,8.333333333333334,3,4,1,0,9,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4529,5524,9830,-9,9829,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3499,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4530,5525,9831,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.7638407,4.9274268,0,0,-1011.8489,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8689618,52.49,23.28,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,118,208823.02,0,149982.75,0,0,0,1270.4955 +4531,5526,9832,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.52069,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,2839,66733.469,0,0,0,-415.36176,0,1597.6871 +4532,5527,9833,9834,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1783485,5.8765297,7,0,-42.405914,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.2449129,0,0,1,1,0,2.2170548,5.3447051,58.08,40.76,61.62,34.96,10,1,1,0,0,0,1,2,1,450.5,940341.5,0,566987.63,0,0,0,2256.0132 +4532,5527,9834,9833,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.0102501,7.0126367,7,9,59.393486,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1939623,7.0776978,61.62,34.96,58.08,40.76,8.333333333333334,1,1,0,0,0,1,2,1,450.5,940341.5,0,566987.63,0,0,0,2256.0132 +4533,5528,9835,9836,-9,-9,1,1,53,0,2,0,2,2,-9,1,1,0,0,0,28,3,0,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,29.12,22.13,30.08,51.09,1.666666666666667,1,1,0,0,0,7,1,0,592.5,32718.619,0,0,0,2158.1277,0,1179.0242 +4533,5528,9836,9835,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,0,0,0,28,-3,0,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.08,51.09,29.12,22.13,6.666666666666667,1,1,0,0,0,7,1,0,592.5,32718.619,0,0,0,2158.1277,0,1179.0242 +4533,5529,9837,-9,9838,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.7377,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5529,9838,-9,9836,9835,1,0,25,0,2,0,2,2,-9,0,3,0,5.5000591,5.3762369,0,0,-994.93494,0,2,2,2021,31,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5215597,0,15.39,57.91,-9,-9,0,1,1,0,1,3,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5529,9839,-9,9838,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.88605,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5530,9840,-9,9836,9835,1,0,23,0,2,0,2,2,-9,0,4,7.7635651,7.6333141,0,0,0,-1072.7029,0,2,2,2021,6,0,35,35,1,0,1,7.7889848,7.7889848,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,2006,0,0,0,0,0,0,1559.3525 +4534,5531,9841,-9,9842,9843,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-984.52228,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9842,9843,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.6173639,8.3428631,0,2,-6,81.346062,0,-9,-9,2021,10,2,37,42,1,2,0,15.468988,15.468988,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,46.08,57.2,8.333333333333334,1,1,0,0,9,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9843,9842,-9,-9,1,1,38,2,2,0,2,2,-9,0,3,8.4056797,8.6541166,0,2,6,-62.60054,0,-9,-9,2021,11,0,42,42,1,0,0,9.487175,9.487175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50.85,54.91,8.333333333333334,1,1,0,0,3,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9844,-9,9842,9843,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.0245,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4535,5532,9845,-9,9846,9848,1,0,18,0,2,0,2,2,1,0,4,8.1194315,7.8969908,0,0,0,-1031.5387,-9,2,2,2021,4,0,45,0,1,0,1,9.938653,9.938653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,159,-4357.1206,-78893.25,0,0,4866.001,-528.1228,2245.532 +4535,5533,9846,9848,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3891926,8.5365705,5.2789054,10,-3,71.539932,0,2,2,2021,11,0,39,40,1,0,0,15.076546,15.076546,.05,.05,0,0,0,0,0,2,1,1,0,5.414269,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,11,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4535,5533,9847,-9,9846,9848,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.1533,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4535,5533,9848,9846,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,7.9618726,7.819345,0,10,3,-14.795219,0,-9,-9,2021,9,1,45,40,1,1,0,6.2066717,6.2066717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,11,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4536,5534,9849,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,6.9396677,7.0559506,0,0,-942.15527,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3095255,61.06,46.42,-9,-9,10,3,4,0,0,4,8,2,0,876,334618.28,217120.44,286012.5,242891.3,0,0,81.799263 +4537,5535,9850,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7625666,7.86654,0,0,0,-1055.5839,0,2,-9,2021,15,4,37,37,1,4,0,6.8336344,6.8336344,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,4,2,0,0,12,11,3,1,164,43647.676,28118.813,262015.92,154632.55,5551.6016,3760.9717,925.15515 +4538,5536,9851,9852,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.085103,9.2252083,0,7,-1,172.35098,0,2,3,2021,14,4,37,35,1,4,0,26.304815,26.304815,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.45,57.49,30.75,61.56,6.666666666666667,1,1,0,0,7,1,5,1,488,1855805,1352340.8,268325.5,0,0,0,5643.978 +4538,5536,9852,9851,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7632771,8.7778931,0,7,1,-1.601012,0,2,2,2021,19,8,40,38,1,8,0,18.593428,18.593428,.05,.05,0,0,0,0,0,0,0,0,0,4.4079957,0,30.75,61.56,48.45,57.49,3.333333333333333,1,1,0,0,7,1,5,1,488,1855805,1352340.8,268325.5,0,0,0,5643.978 +4539,5537,9853,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1000.9639,-9,3,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.2,33.75,-9,-9,10,1,1,0,0,0,6,1,0,345,165823.89,0,0,0,0,0,760.67358 +4540,5538,9854,9855,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.084363,8.2717314,0,5,-2,-94.533554,0,3,3,2021,7,0,43,47,1,0,0,8.4813681,8.4813681,.05,.05,0,0,0,0,0,2,0,0,0,6.3290505,0,48.81,59.91,50.06,55.28,8.333333333333334,1,1,0,0,6,11,5,1,642.5,456865,391755,110335.58,25779.49,0,9861.707,3736.6646 +4540,5538,9855,9854,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9995918,8.4698048,0,5,2,-99.735817,0,2,2,2021,6,0,40,40,1,0,0,18.467752,18.467752,.05,.05,0,0,0,0,0,0,0,0,0,6.6524658,0,50.06,55.28,48.81,59.91,0,1,1,0,0,6,11,5,1,642.5,456865,391755,110335.58,25779.49,0,9861.707,3736.6646 +4541,5539,9856,9857,-9,-9,1,0,53,0,2,0,2,2,-9,1,3,0,6.4914851,6.9471278,36,-4,-30.896578,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.5163331,56.18,48.68,44.5,21.95,5,1,1,0,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9857,9856,-9,-9,1,1,57,0,2,0,3,3,-9,1,1,0,0,0,35,4,-87.112213,0,2,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,21.95,56.18,48.68,3.333333333333333,1,1,0,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9858,-9,9856,9857,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.8767,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9859,-9,9856,9857,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5835,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4542,5540,9860,-9,9862,9863,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2817,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9861,-9,9862,9863,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-833.70184,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9862,9863,-9,-9,1,0,25,1,2,0,2,2,-9,0,2,0,0,0,4,-5,44.997173,0,-9,-9,2021,11,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.27,42.39,51.43,37.05,6.666666666666667,1,1,1,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9863,9862,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,7.0980883,7.5453877,0,4,5,34.821445,0,3,2,2021,25,9,23,0,1,9,0,7.7316604,7.7316604,.05,.05,0,0,0,0,0,0,1,1,0,2.7734795,0,51.43,37.05,41.27,42.39,1.666666666666667,1,1,0,1,8,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4543,5541,9864,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,6.7684603,6.8522673,0,0,-962.99762,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5509756,6.6424551,57.88,28.89,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1139,221090.81,99868.992,229840.39,0,0,0,1213.4691 +4544,5542,9865,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.4561157,7.7350941,0,0,-1032.7369,0,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,10.149515,0,0,1,1,0,0,7.6051197,49.58,39.53,-9,-9,5,1,1,0,0,0,9,3,1,378,123605.75,308329.38,0,0,0,0,1206.3491 +4545,5543,9866,9867,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.3589125,9.3752317,0,9,1,-36.490993,0,3,2,2021,6,0,9,42,1,0,0,137.62708,137.62708,0,0,0,0,0,0,0,0,0,0,0,3.5813837,0,57.73,54.53,58.08,43.46,8.333333333333334,1,1,0,0,10,9,5,1,612,2069817.8,1206879.5,855210.88,0,2378.9307,0,4553.583 +4545,5543,9867,9866,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.0174894,7.2581358,9,-1,60.787502,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2400417,7.4525585,58.08,43.46,57.73,54.53,8.333333333333334,1,1,0,0,3,9,5,1,612,2069817.8,1206879.5,855210.88,0,2378.9307,0,4553.583 +4546,5544,9868,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.1875353,7.9757943,2.7053361,0,0,-990.48108,0,3,3,2021,20,8,42,37,1,8,0,8.7686901,8.7686901,.05,.05,0,0,0,0,0,7,0,0,0,2.661926,0,22.89,60.29,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,631,279773.78,85215.859,96816.805,39170.43,-1687.8348,2396.1221,1527.4706 +4547,5545,9869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1485586,8.1630507,0,0,0,-821.34003,0,2,2,2021,9,0,32,37,1,0,0,12.654926,12.654926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,15,8,4,0,3463,413219.25,60513.492,341918.84,0,0,0,1044.0037 +4548,5546,9870,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1021.2286,0,1,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,3,4,0,0,0,8,1,0,587,0,0,0,0,0,0,903.36646 +4549,5547,9871,-9,9873,9872,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.56531,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9872,9873,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.4877243,8.7361107,0,7,3,-3.6804316,0,-9,-9,2021,8,0,55,55,1,0,0,15.195601,15.195601,.05,.05,0,0,0,0,0,0,1,1,0,1.326786,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,10,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9873,9872,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3095312,8.1758347,0,7,-3,181.77562,0,-9,-9,2021,12,1,32,30,1,1,0,13.979798,13.979798,.05,.05,0,0,0,0,0,0,1,1,0,6.5718546,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,11,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9874,-9,9873,9872,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.6006,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4550,5548,9875,9877,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3265991,8.8576021,0,10,3,-137.83873,0,3,3,2021,9,0,46,46,1,0,0,11.954684,11.954684,.05,.05,0,0,0,0,0,0,1,1,0,3.5445557,0,52.91,55.33,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9876,-9,9877,9875,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.2886,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9877,9875,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.0009441,8.0741835,0,10,-3,-66.238846,0,2,2,2021,7,0,35,33,1,0,0,8.2550793,8.2550793,0,0,0,0,0,0,0,0,1,1,0,3.459265,0,59.43,58.05,52.91,55.33,10,1,1,0,0,11,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9878,-9,9877,9875,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.80432,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4551,5549,9879,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.6453381,9.9171734,0,0,0,-888.12512,0,3,3,2021,9,1,53,50,1,1,0,29.709734,29.709734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,8,5,1,938,357170.38,106133.87,454716.91,192357.2,11328.612,0,4437.897 +4552,5550,9880,-9,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,8.0878582,8.1455917,4.422492,0,0,-1040.1653,0,2,2,2021,19,7,42,37,1,7,0,8.7930651,8.7930651,0,0,0,0,0,0,0,0,1,1,0,4.1924663,0,32.24,26.09,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,1421,79075.859,-66614.703,0,0,0,1640.6096,2191.467 +4553,5551,9881,9882,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,0,0,39,0,-35.039623,0,2,2,2021,18,8,0,40,4,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.9979048,0,43.86,63.67,34.27,63.91,8.333333333333334,1,1,0,0,12,12,4,1,574,546254.63,322677.25,168260.06,0,0,0,5065.6016 +4553,5551,9882,9881,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.6707191,8.6930246,0,38,0,-80.491547,0,2,2,2021,21,9,35,37,1,9,0,19.676447,19.676447,0,0,0,0,0,0,0,0,0,0,0,0,0,34.27,63.91,43.86,63.67,8.333333333333334,1,1,0,0,13,12,4,1,574,546254.63,322677.25,168260.06,0,0,0,5065.6016 +4553,5552,9883,-9,9881,9882,1,0,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-1079.9753,-9,1,1,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2305608,0,38.77,63.46,-9,-9,8.333333333333334,1,1,0,0,6,12,1,1,2430,0,0,0,0,0,0,-150.33676 +4554,5553,9884,-9,9887,-9,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-868.89917,-9,2,-9,2021,21,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.76,62.64,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9885,-9,9887,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-754.11285,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9886,-9,9887,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.20374,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9887,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,5,7.9526315,8.1097403,5.1793423,0,0,-1048.0342,0,3,-9,2021,6,0,39,39,1,0,0,7.6339412,7.6339412,.05,.05,0,0,0,0,0,0,1,1,0,5.8089657,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4555,5554,9888,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.6808748,5.4581938,0,0,-1098.6036,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6141214,52,45,-9,-9,8,1,1,0,0,0,6,2,1,681,80818.789,60711.09,116020,0,0,0,584.75488 +4556,5555,9889,9890,-9,-9,1,1,66,0,0,0,3,3,-9,1,2,0,0,0,11,11,0,0,-9,-9,2021,11,3,0,0,3,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.24,30.08,57.68,42.36,6.666666666666667,1,1,0,1,0,12,1,0,577,108317.35,0,0,0,0,0,668.88416 +4556,5555,9890,9889,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,11,-11,0,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.68,42.36,52.24,30.08,8.333333333333334,1,1,0,0,2,12,1,0,577,108317.35,0,0,0,0,0,668.88416 +4557,5556,9891,9892,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.8579721,8.5789146,0,4,2,149.46632,0,2,-9,2021,19,7,55,60,1,7,0,16.365154,16.365154,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.66,34.78,58.15,52.91,3.333333333333333,1,1,0,0,8,9,5,1,1846,-78224.797,39921.324,0,0,-56.811279,2571.7134,3454.4688 +4557,5556,9892,9891,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.7623982,7.780633,0,4,-2,-2.4183292,0,-9,-9,2021,8,0,44,62,1,0,0,7.8492494,7.8492494,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,33.66,34.78,8.333333333333334,1,1,0,0,6,9,5,1,1846,-78224.797,39921.324,0,0,-56.811279,2571.7134,3454.4688 +4558,5557,9893,9894,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,64,2,23.801287,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.7,43.29,62.17,41.71,6.666666666666667,1,1,0,0,0,2,2,1,546.5,-45664.727,0,0,0,0,0,1366.4982 +4558,5557,9894,9893,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,3.9570558,3.7781749,64,-2,-132.07309,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3277431,4.086545,62.17,41.71,46.7,43.29,8.333333333333334,1,1,0,0,0,2,2,1,546.5,-45664.727,0,0,0,0,0,1366.4982 +4559,5558,9895,9896,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,69,-4,0,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,1,0,22.883997,0,42,1,1,0,0,0,34.06,38.71,56,44,6.666666666666667,1,1,0,0,0,1,1,0,256,177509.41,-56426.031,70407.648,30676.525,0,0,1567.2893 +4559,5558,9896,9895,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,69,4,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,123.38181,0,0,1,1,0,0,0,56,44,34.06,38.71,8,1,1,0,0,0,1,1,0,256,177509.41,-56426.031,70407.648,30676.525,0,0,1567.2893 +4560,5559,9897,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,6.4701958,7.1606598,6.2869711,0,0,-1139.9348,0,-9,-9,2021,10,1,4,10,1,1,0,30.555368,30.555368,.05,.05,0,0,0,0,0,0,0,0,0,3.3339376,6.0103631,46.82,28.67,-9,-9,5,1,1,0,0,14,8,3,1,184,393050.19,213958.08,194696.3,2341.96,2073.8303,0,919.7713 +4561,5560,9898,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.9663467,8.0517159,0,0,-1236.3783,0,2,2,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1153708,6.2152429,50.36,41.54,-9,-9,3.333333333333333,1,1,0,0,11,8,4,1,2314,1135507.4,225435.91,574097.19,0,0,0,4606.1118 +4562,5561,9899,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6742911,7.534524,0,0,0,-1026.3286,0,-9,-9,2021,10,0,39,40,1,0,0,4.7695847,4.7695847,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.23,29.63,-9,-9,5,1,1,0,0,8,4,3,0,898,-10097.761,32586.303,0,0,0,-667.57031,365.03546 +4563,5562,9900,9902,-9,-9,1,0,32,0,3,0,2,2,-9,1,4,0,0,0,5,-7,-17.088024,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.02,58.85,55.19,54.26,5,4,2,0,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9901,-9,9900,9902,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.60327,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9902,9900,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,7.9854393,8.1562443,0,5,7,2.0315866,-9,-9,-9,2021,9,0,40,0,1,0,0,6.9362516,6.9362516,0,0,0,0,0,0,0,0,1,0,1,0,0,55.19,54.26,38.02,58.85,6.666666666666667,1,1,0,0,3,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9903,-9,9900,9902,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.8703,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,2,-9,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4564,5563,9904,-9,9905,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.3492,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4564,5563,9905,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,6.884511,7.3849988,0,0,0,-1077.5153,0,-9,-9,2021,11,1,13,25,1,1,0,9.912199,9.912199,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.1,63.11,-9,-9,8.333333333333334,1,1,0,0,13,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4564,5563,9906,-9,9905,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3789,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4565,5564,9907,-9,9908,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-974.44727,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.35,59.99,-9,-9,5,4,2,0,1,0,7,4,0,1114,188675.88,-22443.234,143102.38,56647.961,0,0,1875.2252 +4565,5564,9908,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.3767633,8.3402529,0,0,0,-963.77057,0,2,3,2021,20,7,48,48,1,7,0,9.7844524,9.7844524,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.73,50.3,-9,-9,1.666666666666667,4,2,0,1,10,7,4,0,1114,188675.88,-22443.234,143102.38,56647.961,0,0,1875.2252 +4566,5565,9909,-9,9910,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.4368,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,621,388998.97,175013.97,140728.63,70319.859,0,397.13214,2518.4824 +4566,5565,9910,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.8386421,8.5655041,6.5081158,0,0,-990.02112,0,2,3,2021,8,0,38,38,1,0,0,22.333162,22.333162,.05,.05,0,0,0,0,0,0,1,1,0,6.6996799,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,5,5,1,621,388998.97,175013.97,140728.63,70319.859,0,397.13214,2518.4824 +4567,5566,9911,-9,9912,9914,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.74854,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5566,9912,-9,-9,-9,1,0,35,0,2,0,2,2,0,0,3,0,0,0,0,0,-1020.6038,-9,2,2,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.07,54.2,-9,-9,0,1,1,0,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5566,9913,-9,9912,9914,1,0,14,0,2,1,3,0,-9,0,1,0,0,0,0,0,-974.03778,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30,32,-9,-9,3,1,1,-9,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5567,9914,-9,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1036.6327,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,33.37,60.58,-9,-9,5,1,1,1,1,2,12,1,0,830,-150253.44,189009.81,0,0,0,0,73.122246 +4568,5568,9915,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1028.3469,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,6.666666666666667,1,1,0,1,2,8,1,0,576,17667.215,0,0,0,0,0,1007.9547 +4568,5569,9916,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.2318535,7.6525483,0,0,0,-884.28772,0,-9,-9,2021,13,3,50,45,1,3,0,7.4043775,7.4043775,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,1,6,8,4,0,576,-138087.42,0,0,0,1403.4927,0,1366.3766 +4569,5570,9917,9918,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.6679249,8.6682749,0,7,-1,-51.559467,0,2,2,2021,11,2,47,45,1,2,0,18.654633,18.654633,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,61.77,18.7,57.06,57.76,6.666666666666667,1,1,0,0,9,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9918,9917,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.863184,9.1489868,0,7,1,-3.404017,0,2,1,2021,11,0,44,35,1,0,0,16.129623,16.129623,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.77,18.7,8.333333333333334,1,1,0,0,10,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9919,-9,9918,9917,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.54987,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9920,-9,9918,9917,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5787,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4570,5571,9921,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.2552433,7.4123883,0,0,0,-950.17554,0,3,3,2021,12,1,25,22,1,1,0,6.106595,6.106595,0,0,0,0,0,0,0,0,1,1,0,0,0,38.61,43.02,-9,-9,6.666666666666667,2,3,0,0,4,1,2,0,874,-10831.846,0,110904.61,23876.443,1226.6863,0,1496.3259 +4571,5572,9922,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.2510529,8.3006887,0,0,0,-933.09039,0,2,2,2021,7,0,37,37,1,0,0,13.948842,13.948842,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,10,13,4,0,1005.5,646549.75,272305.78,222329.7,0,0,0,2822.2583 +4571,5572,9923,-9,9922,-9,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-985.51666,1,2,-9,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,1,13,4,0,1005.5,646549.75,272305.78,222329.7,0,0,0,2822.2583 +4572,5573,9924,9925,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,49,3,-74.804054,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,46.232513,0,0,1,1,0,4.4717941,0,50,47,52,48,7,1,1,0,0,6,6,3,1,543,871289.25,417023.38,207703.14,0,0,0,2672.606 +4572,5573,9925,9924,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7682099,7.9375567,49,-3,57.979557,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.3143497,7.8791766,52,48,50,47,7,1,1,0,0,9,6,3,1,543,871289.25,417023.38,207703.14,0,0,0,2672.606 +4573,5574,9926,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2918415,8.2436028,0,0,0,-899.92255,0,3,2,2021,12,0,45,45,1,2,0,9.9451199,9.9451199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,4,2,0,0,13,8,5,1,1474,557954.5,85911.781,419665.03,0,0,0,1800.526 +4573,5575,9927,-9,9926,-9,1,0,24,0,0,0,1,1,-9,0,4,7.8539572,7.9229498,0,0,0,-917.5979,0,2,1,2021,12,0,37,37,1,2,1,8.368124,8.368124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,5,8,4,1,404,-17830.365,-80778.555,0,0,0,0,1624.3065 +4573,5576,9928,-9,9926,-9,1,0,28,0,0,0,2,2,-9,0,3,8.01717,8.261982,0,0,0,-1108.0076,0,2,2,2021,11,0,38,37,1,0,1,8.5337133,8.5337133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,5,3,4,0,0,7,8,4,1,214,-105038.91,-17309.846,0,0,0,323.37622,1253.1997 +4573,5577,9929,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9060163,5.6451974,0,0,-918.86072,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0801873,51,46,-9,-9,7,3,4,0,0,0,8,2,1,1483,308445.19,240661.91,214753.75,0,0,0,1170.8026 +4574,5578,9930,9931,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.540576,9.5425634,0,1,6,19.745317,-9,-9,-9,2021,9,0,40,0,1,1,0,64.277275,64.277275,.05,.05,0,0,0,0,0,0,1,1,0,4.1690426,0,53,55,46.63,59.72,8,1,1,0,0,1,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9931,9930,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.7240086,7.6397061,0,1,-6,57.489201,-9,2,2,2021,11,0,26,0,1,0,0,7.2411113,7.2411113,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,53,55,8.333333333333334,1,1,0,0,5,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9932,-9,9931,9930,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-836.7453,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9933,-9,9931,9930,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.699,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9934,-9,9931,9930,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.1075,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4575,5579,9935,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.1476293,5.1237097,0,0,-1066.9445,0,3,3,2021,12,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9893804,5.1584525,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,4,4,2,1,562,425974.25,42974.617,264818.53,0,0,-173.47382,1223.0898 +4576,5580,9936,9937,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2555351,9.4247246,0,1,-5,-156.88199,0,-9,2,2021,6,0,45,44,1,0,0,33.567932,33.567932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,43.67,23.7,8.333333333333334,1,1,0,0,15,12,5,1,659.5,1200291.3,768451.81,290790.63,73721.008,0,0,6512.2979 +4576,5580,9937,9936,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.0975876,9.2012138,7.9096799,1,5,-1.0334963,-9,-9,-9,2021,12,0,49,0,1,0,0,6.1605873,6.1605873,.05,.05,0,0,0,0,.33481896,0,1,1,0,0,7.9864554,43.67,23.7,59.43,49.68,8.333333333333334,1,1,0,0,15,12,5,1,659.5,1200291.3,768451.81,290790.63,73721.008,0,0,6512.2979 +4577,5581,9938,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,8.2306786,7.8938322,0,0,-1099.7461,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.6693296,8.5067072,61.04,39.41,-9,-9,10,1,1,0,0,0,10,4,1,317,994497,439966.06,541505.69,0,0,0,3153.1375 +4578,5582,9939,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.3565841,5.3329344,0,0,-996.02368,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.6840304,0,1,1,0,0,5.3914824,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,4,13,2,0,786,-97272.859,0,0,0,0,0,561.28577 +4579,5583,9940,9941,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,38,-3,19.039885,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0741196,0,48.06,45.53,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,313.5,1951612.8,1835624.4,134554.44,33074.438,0,0,4363.1885 +4579,5583,9941,9940,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,9.0277014,8.7248249,11,3,17.449713,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2525997,9.208189,57.16,56.15,48.06,45.53,8.333333333333334,1,1,0,0,11,10,5,1,313.5,1951612.8,1835624.4,134554.44,33074.438,0,0,4363.1885 +4580,5584,9942,-9,9944,9946,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.6178,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9943,-9,9944,9946,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2849,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9944,9946,-9,-9,1,0,22,1,3,0,3,3,-9,0,3,0,0,0,1,-1,0,-9,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,.22972405,0,1,1,0,0,0,22.88,66.41,41.19,57.08,5,1,1,1,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9945,-9,9944,9946,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8682,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9946,9944,-9,-9,1,1,23,1,3,0,2,2,-9,0,3,0,0,0,1,1,0,-9,1,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.19,57.08,22.88,66.41,8.333333333333334,1,1,1,0,2,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4581,5585,9947,9948,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.2143488,8.3726034,0,1,7,19.733507,0,-9,-9,2021,10,0,40,40,1,0,0,11.351384,11.351384,.05,.05,.05,0,0,0,0,0,0,0,0,7.5582194,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,4,4,5,0,243,91430.352,114932.22,0,0,0,0,3761.2036 +4581,5585,9948,9947,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2271833,8.1672649,0,1,-7,-32.031494,-9,-9,-9,2021,9,0,40,0,1,0,0,9.0309334,9.0309334,0,0,.05,0,0,0,0,0,0,0,0,3.0166724,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,243,91430.352,114932.22,0,0,0,0,3761.2036 +4582,5586,9949,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.9858408,8.2566509,0,0,0,-952.29706,0,-9,-9,2021,10,0,48,0,1,0,0,5.3117681,5.3117681,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,42.63,35.75,-9,-9,5,1,1,0,0,3,1,3,0,1187,390414.31,127854.91,137156.88,0,0,0,1598.9832 +4583,5587,9950,9951,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,11,1,-76.27137,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.411448,0,54.79,55.86,58.3,52.91,10,1,1,0,0,0,6,2,1,1944.5,361147.5,294520.38,186103.91,0,0,0,1816.4683 +4583,5587,9951,9950,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.6266088,6.6063404,11,-1,-89.430733,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2029123,6.5307746,58.3,52.91,54.79,55.86,8.333333333333334,1,1,0,0,12,6,2,1,1944.5,361147.5,294520.38,186103.91,0,0,0,1816.4683 +4584,5588,9952,9953,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.1472559,8.2610512,44,2,69.485268,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8659601,8.0816383,53.7,44.99,57.73,54.53,8.333333333333334,1,1,0,0,9,10,3,1,977,1772579.8,404242,459758.38,0,0,0,3694.7737 +4584,5588,9953,9952,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.9198561,5.393219,44,-2,85.391258,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.729243,4.5739403,57.73,54.53,53.7,44.99,8.333333333333334,1,1,0,0,0,10,3,1,977,1772579.8,404242,459758.38,0,0,0,3694.7737 +4585,5589,9954,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1011.3813,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,1,0,12,1,0,198,342899.53,-88969.195,289540.91,0,0,0,3402.604 +4585,5590,9955,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,0,0,0,0,0,-962.07758,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,0,12,1,0,529,-287.90366,0,0,0,0,0,1203.4158 +4586,5591,9956,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.58203,0,3,3,2021,27,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,5,1,0,911,126474.1,0,0,0,0,0,385.67627 +4587,5592,9957,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.2316751,7.8866262,0,0,0,-1091.1433,0,-9,2,2021,11,0,16,-9,1,0,0,30.174206,30.174206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.88,44.63,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,1052,227291.27,238680.63,30009.65,19885.834,0,0,1424.6925 +4588,5593,9958,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.7506161,9.7997503,0,0,0,-1139.3533,0,2,1,2021,9,0,60,40,1,0,0,40.417595,40.417595,.05,.05,0,0,0,0,0,0,0,0,0,9.8976202,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,447,268572.09,174851.72,0,0,0,0,12454.837 +4589,5594,9959,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.0849,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.3402147,0,0,1,1,0,0,0,60.05,42.65,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,445,302389,0,218096.36,0,0,0,817.97955 +4590,5595,9960,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,0,0,-933.63519,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,5,1,0,957,466468.09,-38482.023,190399.47,0,0,0,271.94171 +4591,5596,9961,9962,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5263386,7.8214178,45,3,-124.63549,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4111304,7.671277,41.17,59.31,58.07,35.76,10,1,1,0,0,8,12,4,1,801,1520351.3,1168788.3,199806.11,0,0,0,2584.6711 +4591,5596,9962,9961,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.7157059,7.986588,7.1604891,45,-3,-43.106323,0,3,3,2021,7,0,25,36,1,0,0,7.4380288,7.4380288,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7797189,58.07,35.76,41.17,59.31,5,1,1,0,0,12,12,4,1,801,1520351.3,1168788.3,199806.11,0,0,0,2584.6711 +4592,5597,9963,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.873827,8.7393475,0,0,0,-920.1922,0,2,2,2021,7,0,49,44,1,0,0,15.369671,15.369671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.27,45.68,-9,-9,5,1,1,0,0,9,5,5,0,341,191522.97,-75817.438,117499.3,35708.078,0,0,1812.2588 +4593,5598,9964,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1058.8911,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.21,37.05,-9,-9,3.333333333333333,1,1,1,0,2,6,1,0,926,0,0,0,0,0,0,-39.601585 +4593,5599,9965,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9313755,7.6194563,0,0,0,-1090.4824,0,-9,-9,2021,12,0,40,45,1,0,0,8.6838293,8.6838293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.14,54.83,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,566,114601.35,95942.859,0,0,0,0,1375.0061 +4594,5600,9966,9967,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.8861814,7.1555238,11,-1,45.641541,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2249599,6.8811722,66.37,38.36,63.2,27.39,10,1,1,0,0,0,12,2,1,2693,685025.5,78973.203,326867.06,0,0,0,1943.6367 +4594,5600,9967,9966,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,11,1,112.09028,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.95281208,0,0,1,1,0,0,0,63.2,27.39,66.37,38.36,8.333333333333334,1,1,0,0,0,12,2,1,2693,685025.5,78973.203,326867.06,0,0,0,1943.6367 +4595,5601,9968,-9,9970,9971,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.44604,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9969,-9,9970,9971,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.1879,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9970,9971,-9,-9,1,0,42,1,2,0,2,2,-9,0,3,8.4861593,8.2184296,0,7,3,151.53494,0,2,2,2021,14,3,35,28,1,3,0,14.996296,14.996296,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,49.52,56.95,3.333333333333333,1,1,0,1,10,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9971,9970,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,0,0,0,7,-3,-15.16326,0,2,-9,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,44.7,53.68,6.666666666666667,1,1,0,1,3,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4596,5602,9972,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.0166,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,6,1,0,127,-125593.69,0,0,0,0,0,1314.9441 +4597,5603,9973,9974,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1390944,7.8817568,0,19,4,-35.951397,0,-9,-9,2021,11,3,60,40,1,3,0,9.1679726,9.1679726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32,54.53,50.53,50.08,6.666666666666667,2,3,0,0,7,8,3,0,886.5,489669.63,310208.03,344275.69,154536.58,0,0,1748.6322 +4597,5603,9974,9973,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,19,-4,-139.46027,0,-9,-9,2021,17,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.53,50.08,32,54.53,10,2,3,0,0,0,8,3,0,886.5,489669.63,310208.03,344275.69,154536.58,0,0,1748.6322 +4597,5604,9975,-9,9974,9973,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-878.49133,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,280,152992.42,0,0,0,0,0,-35.038651 +4597,5605,9976,-9,9974,9973,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-887.32202,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,1,8,1,0,347,-116894.67,0,0,0,0,0,232.87701 +4598,5606,9977,9979,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,7.9656911,7.9497161,0,7,4,65.839417,0,2,2,2021,11,0,37,37,1,0,0,11.529622,11.529622,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,34.72,44.91,6.666666666666667,1,1,0,0,6,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5606,9978,-9,9979,9977,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.43146,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5606,9979,9977,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,0,0,0,7,-4,105.54045,0,2,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.72,44.91,50.03,52.62,1.666666666666667,1,1,0,1,0,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5607,9980,-9,9979,9977,1,1,18,0,1,0,2,2,-9,0,3,6.8376145,6.5965929,0,0,0,-950.96069,0,2,1,2021,4,0,20,0,1,0,1,4.9174643,4.9174643,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,527,-185943.91,74460.563,0,0,0,0,167.64799 +4599,5608,9981,9982,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5636787,8.6109304,0,27,6,-2.2442958,0,3,3,2021,8,0,54,44,1,0,0,11.512252,11.512252,.05,.05,0,0,0,0,0,0,0,0,0,4.0224514,0,57.33,53.46,45.91,59.89,8.333333333333334,1,1,0,0,12,9,5,1,1119,2183331,1345988.1,613459.13,0,0,10719.643,5818.7949 +4599,5608,9982,9981,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,9.2722206,9.4555788,0,27,-6,-2.2803817,0,2,3,2021,10,0,41,43,1,0,0,32.885788,32.885788,.05,.05,0,0,0,0,0,0,0,0,0,4.131187,0,45.91,59.89,57.33,53.46,6.666666666666667,1,1,0,0,12,9,5,1,1119,2183331,1345988.1,613459.13,0,0,10719.643,5818.7949 +4600,5609,9983,9984,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,7.8906527,7.958838,1,3,-42.965691,-9,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.4110403,7.9723892,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,13,13,4,1,565,215042.67,81893.961,148073.97,38350.746,0,-259.23111,4338.6069 +4600,5609,9984,9983,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1811676,7.8300176,0,1,-3,-74.458405,-9,3,2,2021,8,0,40,0,1,0,0,11.058833,11.058833,0,0,0,0,0,0,0,0,1,1,0,1.4602507,0,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,13,13,4,1,565,215042.67,81893.961,148073.97,38350.746,0,-259.23111,4338.6069 +4601,5610,9985,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.5251532,8.6830912,0,0,0,-1010.2629,0,2,2,2021,16,5,40,50,1,5,0,14.293468,14.293468,.05,.05,0,0,0,0,0,0,0,0,0,6.5773635,0,34.64,56.28,-9,-9,8.333333333333334,1,1,0,0,13,10,5,1,1167,46543.512,-82889.922,0,0,15845.027,6430.3188,2915.0442 +4602,5611,9986,9987,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,8.1458769,8.0723925,2,7,106.71636,0,2,2,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.9864435,40.5,23.48,26.95,37.97,6.666666666666667,1,1,0,0,6,2,3,1,671.5,707192.5,315761.75,166247.66,0,0,0,1689.0681 +4602,5611,9987,9986,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,2,-7,104.34922,0,3,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,26.95,37.97,40.5,23.48,3.333333333333333,1,1,1,0,3,2,3,1,671.5,707192.5,315761.75,166247.66,0,0,0,1689.0681 +4603,5612,9988,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.3307333,8.5689507,0,0,0,-955.68921,0,3,2,2021,7,0,44,43,1,0,0,9.8259335,9.8259335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,1013,347054.44,242365.08,218251.72,67188.664,0,0,1650.4276 +4604,5613,9989,9991,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.4862576,8.4178934,0,7,4,-38.386475,0,2,3,2021,6,0,40,40,1,0,0,14.039152,14.039152,.05,.05,0,0,0,0,0,0,1,1,0,5.9093757,0,61.12,51.57,55.53,51.55,8.333333333333334,1,1,0,0,7,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4604,5613,9990,-9,9991,9989,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.11865,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4604,5613,9991,9989,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4200544,7.2004328,0,7,-4,131.36607,0,2,2,2021,8,0,32,27,1,0,0,4.8591185,4.8591185,.05,.05,0,0,0,0,0,7,1,1,0,0,0,55.53,51.55,61.12,51.57,6.666666666666667,1,1,0,0,4,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4605,5614,9992,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0509624,7.2704763,0,0,-1089.376,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,5.3798394,6.519206,41.39304,0,1,1,0,4.3822722,7.43782,66.67,16.76,-9,-9,6.666666666666667,1,1,0,0,0,4,3,0,497,430482.59,244228.63,0,0,0,25864.34,2624.1157 +4606,5615,9993,9994,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6061783,7.8512306,12,7,67.432831,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8428702,7.8264761,51.25,48.45,55.24,37.92,8.333333333333334,1,1,0,0,5,11,3,1,1417.5,347474.5,189633.66,84185.438,0,0,0,1747.4807 +4606,5615,9994,9993,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.1815629,5.4057302,12,-7,-100.85669,0,2,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.18725106,5.2632074,55.24,37.92,51.25,48.45,6.666666666666667,1,1,0,0,4,11,3,1,1417.5,347474.5,189633.66,84185.438,0,0,0,1747.4807 +4607,5616,9995,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5795193,8.8182764,0,0,0,-1167.7421,0,2,2,2021,6,0,37,38,1,0,0,21.257404,21.257404,.05,.05,0,0,0,0,0,0,1,1,0,4.3814988,0,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,500,57764.355,26395.363,0,0,0,1119.3015,2633.4622 +4608,5617,9996,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.0465279,8.3108368,0,0,0,-1115.7927,0,2,2,2021,9,0,37,37,1,0,0,10.535243,10.535243,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,163,10090.467,-47979.102,0,0,6095.8872,0,1959.6284 +4609,5618,9997,9998,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.39117,7.6601038,0,27,-6,-40.884041,0,2,2,2021,15,4,32,32,1,4,0,6.436316,6.436316,.05,.05,0,0,0,0,0,0,1,1,0,2.3745253,0,51.77,58.57,54,53,10,1,1,0,0,10,9,5,1,634.5,1807716,859455.44,829125.13,145552.53,0,0,6447.8311 +4609,5618,9998,9997,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.9085217,9.5477934,0,27,6,33.430813,0,2,1,2021,8,0,50,55,1,0,0,38.153912,38.153912,.05,.05,0,0,0,0,0,0,1,1,0,4.4626708,0,54,53,51.77,58.57,8,1,1,0,0,10,9,5,1,634.5,1807716,859455.44,829125.13,145552.53,0,0,6447.8311 +4609,5619,9999,-9,9997,9998,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1043.3157,1,1,1,2021,11,0,0,14,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,2,9,1,1,2513,141139.42,0,0,0,0,0,452.16342 +4609,5620,10000,-9,-9,-9,1,0,26,0,0,1,1,0,0,0,4,0,4.5668273,4.3454018,0,0,-1027.8612,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6342854,0,47,58,-9,-9,7,3,4,0,0,3,9,2,1,886,63813.391,163701.11,0,0,0,0,913.21509 +4610,5621,10001,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,0,0,0,0,-937.98779,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8577075,0,60.87,42.1,-9,-9,8.333333333333334,1,1,0,0,12,13,1,1,1622,-69909.484,0,0,0,0,1541.4454,330.39984 +4611,5622,10002,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.108819,8.4376001,0,0,0,-899.94684,0,-9,-9,2021,11,1,48,43,1,1,0,7.2079625,7.2079625,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.04,56.46,-9,-9,6.666666666666667,1,1,0,0,4,9,4,0,303,17558.725,-38506.27,0,0,0,0,694.66742 +4612,5623,10003,10004,-9,-9,1,1,31,0,0,0,1,1,-9,0,2,9.1769438,9.3413811,0,2,3,-39.487007,0,3,3,2021,4,0,48,45,1,0,0,23.023531,23.023531,.05,.05,0,0,0,0,0,0,0,0,0,5.4834709,0,50.35,50.22,46,57,6.666666666666667,1,1,0,0,10,7,5,0,1162.5,64758.922,-2409.3306,350432.72,291852.63,3908.6482,190.01633,4965.0771 +4612,5623,10004,10003,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6258383,8.433075,0,2,-3,-165.45821,-9,-9,-9,2021,11,0,40,0,1,2,0,13.250015,13.250015,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,57,50.35,50.22,7,1,1,0,0,1,7,5,0,1162.5,64758.922,-2409.3306,350432.72,291852.63,3908.6482,190.01633,4965.0771 +4613,5624,10005,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.9751563,7.9468188,0,0,-905.37872,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8599434,7.4941149,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,423,441085,230478.73,77203.461,0,0,0,2783.2461 +4614,5625,10006,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,9.3733883,9.2020407,0,0,0,-853.62097,0,1,1,2021,9,1,54,41,1,1,0,25.770672,25.770672,.05,.05,0,0,0,0,0,0,0,0,0,8.2806511,0,46.06,60.24,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,1116,586701.56,-37813.867,491049.78,0,0,0,4637.4341 +4615,5626,10007,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.6951146,8.8278494,8.4206409,0,0,-1020.8298,0,3,3,2021,8,0,18,15,1,0,0,14.416101,14.416101,0,0,0,0,0,0,0,0,1,0,1,3.0808363,8.8352394,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,318,2093516,1358021.6,164533.48,0,0,0,4786.54 +4615,5627,10008,-9,-9,10007,1,1,35,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1029.2837,0,1,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.64,49.14,-9,-9,5,1,1,1,0,3,13,2,1,214,-145360.41,0,0,0,0,0,977.54602 +4616,5628,10009,10010,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7863789,8.1660957,6.4627256,6,2,97.211227,0,3,3,2021,7,0,19,19,1,0,0,16.986135,16.986135,.05,.05,0,0,0,0,0,0,0,0,0,8.0122652,0,56.94,49.53,59.53,56.44,8.333333333333334,1,1,0,0,8,10,5,1,583.5,17659.559,-32479.539,187686.84,103443.14,0,0,3888.2563 +4616,5628,10010,10009,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1395702,8.3859606,5.78269,6,-2,12.168006,0,3,-9,2021,6,0,42,40,1,0,0,10.815817,10.815817,.05,.05,0,0,0,0,0,0,0,0,0,7.3070197,0,59.53,56.44,56.94,49.53,8.333333333333334,1,1,0,0,8,10,5,1,583.5,17659.559,-32479.539,187686.84,103443.14,0,0,3888.2563 +4616,5629,10011,-9,10009,-9,1,1,22,0,0,0,1,1,-9,0,5,6.4823847,6.6041899,0,0,0,-921.16675,0,1,2,2021,7,0,8,8,1,0,1,11.762182,11.762182,0,0,0,0,0,0,0,0,0,0,0,9.9638109,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,618,191543.91,0,0,0,0,0,13013.026 +4617,5630,10012,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,7.4696202,7.4817829,0,0,0,-966.96222,-9,-9,-9,2021,29,11,12,0,1,11,0,16.945274,16.945274,0,0,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,-9,-9,3.333333333333333,1,1,0,1,4,12,3,0,332,40090.402,0,0,0,0,0,1465.7399 +4618,5631,10013,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,8.1097469,8.0867147,0,0,0,-1113.9731,0,2,2,2021,11,3,35,35,1,3,0,10.249423,10.249423,0,0,0,0,0,0,0,2,0,0,0,0,0,28.65,54.35,-9,-9,6.666666666666667,1,1,0,0,10,8,4,0,825,770167.19,11772.144,522777.63,0,0,0,1281.3363 +4619,5632,10014,10015,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,23,-1,45.612843,0,3,3,2021,10,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0791759,0,48.76,53.24,51.14,60.45,6.666666666666667,2,3,1,0,14,9,5,1,2342.5,11980.133,35369.621,0,0,0,750.49817,8622.4277 +4619,5632,10015,10014,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.5893621,9.4256582,0,22,1,30.674528,0,2,1,2021,11,1,45,50,1,1,0,33.604336,33.604336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.76,53.24,10,1,1,0,0,11,9,5,1,2342.5,11980.133,35369.621,0,0,0,750.49817,8622.4277 +4619,5633,10016,-9,10014,10015,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-885.73975,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6607127,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,0,9,1,1,565,-82908.414,0,0,0,0,0,402.44363 +4620,5634,10017,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3489094,8.2516298,0,0,0,-885.34399,0,3,2,2021,11,1,38,39,1,1,0,12.309821,12.309821,0,0,0,0,0,0,0,0,0,0,0,6.4764543,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,14,5,4,1,560,297036.84,229179.42,121455.88,30029.547,541.55682,0,2365.3652 +4621,5635,10018,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.481915,6.5293407,0,0,-1016.4197,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5938015,60.29,52.11,-9,-9,10,1,1,0,0,0,12,2,0,613,126457.91,129596.23,0,0,0,0,1382.8445 +4622,5636,10019,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6600256,8.4977932,0,0,0,-1033.6431,0,-9,-9,2021,8,0,56,60,1,0,0,14.167791,14.167791,0,0,0,0,0,0,0,0,1,1,0,7.1633139,0,59.46,46.99,-9,-9,10,1,1,0,0,10,12,5,1,1043,59571.969,0,184621.31,45383.012,0,995.51599,3121.1218 +4623,5637,10020,10021,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.4267745,6.578866,35,7,28.811512,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9569902,6.4849448,54.27,42.38,54.2,57.49,8.333333333333334,1,1,0,0,5,6,3,1,623,536406.88,289851.88,263635.13,0,0,0,2004.275 +4623,5637,10021,10020,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4949021,7.3368888,36,-7,76.417763,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5392635,7.4100804,54.2,57.49,54.27,42.38,8.333333333333334,1,1,0,0,8,6,3,1,623,536406.88,289851.88,263635.13,0,0,0,2004.275 +4624,5638,10022,10023,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.9299054,7.8547335,12,-5,32.860874,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.83039,54.79,55.86,54.57,49.24,8.333333333333334,1,1,0,0,4,13,4,1,274.5,1377940.9,806178.69,299500.88,0,22248.027,0,5457.3291 +4624,5638,10023,10022,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.2718754,8.3245497,12,5,6.1412663,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2800241,8.412056,54.57,49.24,54.79,55.86,8.333333333333334,1,1,0,0,0,13,4,1,274.5,1377940.9,806178.69,299500.88,0,22248.027,0,5457.3291 +4624,5639,10024,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-897.03772,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8401103,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,2,13,1,1,687,17393.916,0,0,0,0,0,568.91351 +4625,5640,10025,-9,10030,10026,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.46503,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10026,10030,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.414115,8.3850031,0,19,2,72.052719,0,2,3,2021,8,0,40,40,1,0,0,13.024635,13.024635,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,40.95,24.93,6.666666666666667,1,1,0,0,10,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10027,-9,10030,10026,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.23511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10028,-9,10030,10026,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-970.95709,-9,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,43.28,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10029,-9,10030,10026,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1145.9279,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10030,10026,-9,-9,1,0,39,0,3,0,2,2,-9,0,1,0,0,0,19,-2,-18.493271,0,2,2,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.95,24.93,49.87,50.46,5,1,1,0,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10031,-9,10030,10026,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-992.78876,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4626,5641,10032,10034,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.2600908,8.9588175,0,11,3,73.796646,0,2,3,2021,10,0,70,70,1,0,0,14.998245,14.998245,.05,.05,0,0,0,0,0,0,1,1,0,2.0518937,0,52.12,50.33,52.82,53.97,5,1,1,0,0,13,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10033,-9,10034,10032,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.75183,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10034,10032,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,14,-3,-78.004822,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.972287,0,52.82,53.97,52.12,50.33,8.333333333333334,1,1,0,0,9,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10035,-9,10034,10032,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.8757,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4627,5642,10036,10037,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.9347849,9.0924339,0,8,-1,-55.315342,0,-9,-9,2021,11,2,48,42,1,2,0,20.994246,20.994246,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.07,53.97,37.82,39.57,6.666666666666667,1,1,0,0,12,2,4,1,265,555633.38,431633.28,233443.88,2833.499,0,4150.3232,2839.3374 +4627,5642,10037,10036,-9,10038,1,0,43,0,1,0,2,2,-9,1,2,0,0,0,17,1,16.55308,0,2,3,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,37.82,39.57,47.07,53.97,6.666666666666667,1,1,0,0,2,2,4,1,265,555633.38,431633.28,233443.88,2833.499,0,4150.3232,2839.3374 +4627,5643,10038,-9,-9,-9,1,1,68,0,1,0,1,1,-9,0,1,0,8.0729504,8.1781578,0,0,-976.13605,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,60.485733,0,0,1,1,0,.97326785,8.1128263,35.17,15.39,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,841,834641.5,643026.88,0,0,0,0,3394.5103 +4628,5644,10039,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.0725,-9,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,1,0,3,5,2,0,132,45182.023,0,0,0,0,0,0 +4629,5645,10040,10042,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.6591659,7.6363921,0,23,-3,1.7364432,0,3,3,2021,6,0,21,22,1,0,0,11.325999,11.325999,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,38.05,49.97,10,1,1,0,0,9,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5645,10041,-9,10040,10042,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1004.6592,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1445055,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5645,10042,10040,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.9888077,9.1915159,0,9,3,-100.01743,0,-9,-9,2021,13,1,47,40,1,1,0,19.312986,19.312986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.05,49.97,57.16,56.15,3.333333333333333,1,1,0,0,7,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5646,10043,-9,10040,10042,1,1,19,0,0,0,2,2,-9,0,3,0,5.5630903,5.9566031,0,0,-948.57916,1,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6602559,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1740,23538.309,0,0,0,0,0,14.094445 +4630,5647,10044,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.0623465,9.2194471,0,0,0,-1000.9818,0,3,3,2021,15,4,37,37,1,4,0,33.587059,33.587059,.05,.05,0,0,0,0,0,2,0,0,0,7.4650421,0,42.62,54.51,-9,-9,3.333333333333333,1,1,0,0,12,2,5,0,537,1378780,505437.69,267043.66,0,0,0,4004.3127 +4631,5648,10045,10046,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.02707,7.974772,0,13,2,-21.085676,0,-9,-9,2021,9,1,37,44,1,1,0,8.6097269,8.6097269,0,0,0,0,0,0,0,0,0,0,0,0,0,65.63,39.96,49,50,8.333333333333334,1,1,0,0,14,4,4,1,986,419265.5,293927.09,150205.13,5281.2749,8569.5195,0,3023.0283 +4631,5648,10046,10045,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.2379198,8.4067211,0,13,-2,61.656567,0,-9,2,2021,12,0,40,48,1,0,0,11.023559,11.023559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,65.63,39.96,5,1,1,0,0,12,4,4,1,986,419265.5,293927.09,150205.13,5281.2749,8569.5195,0,3023.0283 +4632,5649,10047,10048,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,7.6007242,8.4180908,7.7409115,19,14,23.331919,0,2,2,2021,12,0,28,34,1,0,0,9.3170328,9.3170328,0,0,.05,0,0,0,0,0,1,1,0,5.3596392,7.9699607,40.07,41.34,45.28,52.56,5,1,1,0,0,7,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4632,5649,10048,10047,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,2.9156113,2.9000738,0,19,-14,40.210743,0,2,2,2021,11,1,28,16,1,1,0,.063416779,.063416779,0,0,0,0,0,0,0,0,1,1,0,1.860132,0,45.28,52.56,40.07,41.34,10,1,1,0,0,6,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4632,5649,10049,-9,10048,10047,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1055.7319,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4633,5650,10050,10051,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,9,-6,139.99785,0,2,2,2021,24,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.06,41.03,39.12,60.58,3.333333333333333,1,1,0,0,4,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5650,10051,10050,10053,-9,1,0,55,0,1,0,1,1,-9,0,4,8.5506573,8.9928617,0,9,6,-7.3829527,0,2,2,2021,14,3,45,45,1,3,0,17.471752,17.471752,0,0,0,0,0,0,0,27,1,1,0,0,0,39.12,60.58,40.06,41.03,3.333333333333333,1,1,0,0,10,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5650,10052,-9,10051,10050,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-978.45892,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5651,10053,-9,-9,-9,1,0,90,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1003.311,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.7754788,15.91386,66.649918,0,1,1,0,6.24507,0,53,44,-9,-9,8,1,1,0,0,0,10,1,1,689,-78182.367,3704.7588,0,0,0,1583.337,664.56567 +4634,5652,10054,-9,10055,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0156,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,1464.5,126971.4,-38056.617,153036.09,56560.188,0,0,1624.8011 +4634,5652,10055,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.0067291,7.9287238,0,0,0,-942.7467,0,3,-9,2021,6,0,32,30,1,0,0,9.4063206,9.4063206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,1464.5,126971.4,-38056.617,153036.09,56560.188,0,0,1624.8011 +4635,5653,10056,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,7.6622453,7.8007946,6.0448728,0,0,-990.27814,0,2,2,2021,14,3,15,22,1,3,0,14.226207,14.226207,.05,.05,0,0,0,0,0,0,1,1,0,6.0141144,0,43.75,39.82,-9,-9,6.666666666666667,1,1,0,0,13,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4635,5653,10057,-9,10056,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.9893,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4635,5653,10058,-9,10056,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.995,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4636,5654,10059,10060,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0149784,8.9508266,0,4,2,21.809933,0,2,2,2021,5,0,44,41,1,0,0,22.750292,22.750292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4636,5654,10060,10059,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.8662724,8.0616808,0,4,-2,62.953972,0,-9,-9,2021,8,0,23,23,1,0,0,14.844957,14.844957,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4636,5654,10061,-9,10060,10059,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.5961,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4637,5655,10062,10063,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.4414301,7.790597,10,11,200.12186,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6221261,7.2930994,48.6,31.69,46.22,56.92,8.333333333333334,1,1,0,0,0,12,3,1,1161.5,668476.88,158778.63,350618.81,0,0,0,2677.0288 +4637,5655,10063,10062,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8171225,7.1891069,10,-11,-6.6362987,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8347769,7.0351243,46.22,56.92,48.6,31.69,8.333333333333334,1,1,0,0,3,12,3,1,1161.5,668476.88,158778.63,350618.81,0,0,0,2677.0288 +4638,5656,10064,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.543076,7.6200423,0,0,0,-977.08575,0,-9,2,2021,15,3,18,17,1,3,0,14.947835,14.947835,0,0,0,0,0,0,0,0,0,0,0,5.1261582,0,35.32,64.83,-9,-9,3.333333333333333,1,1,0,0,13,2,3,1,302,-22317.816,-46316.711,0,0,0,0,1096.7452 +4639,5657,10065,-9,-9,-9,1,1,24,0,0,0,2,2,1,1,2,0,0,0,0,0,-1055.3872,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.26,66.34999999999999,-9,-9,1.666666666666667,1,1,0,1,1,12,1,0,225,-6532.3467,0,0,0,0,0,866.98859 +4640,5658,10066,-9,10067,10068,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.04175,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10067,10068,-9,-9,1,0,36,0,2,0,2,2,-9,1,3,0,0,0,4,0,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,31.27,23.46,68.89,35.82,3.333333333333333,1,1,0,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10068,10067,-9,-9,1,1,45,0,2,0,3,3,-9,1,3,0,0,0,4,9,0,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.89,35.82,31.27,23.46,10,1,1,1,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10069,-9,10067,10068,1,0,16,0,2,0,2,2,-9,0,2,0,5.8473759,5.4008455,0,0,-1101.7926,-9,2,3,2021,21,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.7631135,0,22.48,41.35,-9,-9,0,1,1,1,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4641,5659,10070,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.1175351,7.0575624,0,0,-960.27618,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2461228,7.2189331,41.06,48.63,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,900,294155.22,147713.78,0,0,0,0,1103.0109 +4642,5660,10071,10072,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2157092,7.7077637,52,0,-48.258224,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4775281,7.4192019,47.38,57.75,46.73,54.33,8.333333333333334,1,1,0,0,0,11,3,1,785.5,1430414.8,760715.38,445789.31,0,0,0,3860.1621 +4642,5660,10072,10071,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,8.0539627,7.8701,52,0,-59.798256,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5799232,7.8030534,46.73,54.33,47.38,57.75,8.333333333333334,1,1,0,0,0,11,3,1,785.5,1430414.8,760715.38,445789.31,0,0,0,3860.1621 +4643,5661,10073,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.8278108,6.572062,0,0,-1089.8097,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1686301,6.6633115,48.74,50.46,-9,-9,1.666666666666667,1,1,0,0,9,9,2,1,917,721602.06,121229.11,467480.88,0,2930.2524,0,2089.7761 +4644,5662,10074,-9,10077,10075,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.60132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10075,10077,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.1649094,8.9126472,0,2,0,148.71828,0,-9,-9,2021,8,0,50,55,1,0,0,19.296173,19.296173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.9,51.84,8.333333333333334,1,1,0,0,2,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10076,-9,10077,10075,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.1558,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10077,10075,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,7.8892941,7.6223755,0,2,0,14.670504,0,2,2,2021,7,0,18,18,1,0,0,13.039959,13.039959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,58.3,52.91,8.333333333333334,1,1,0,0,9,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5663,10078,-9,10077,10075,1,0,22,1,2,0,2,2,-9,0,2,7.3454218,7.0918369,0,0,0,-1006.4152,-9,3,3,2021,10,0,30,0,1,0,0,6.1570354,6.1570354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.99,46.53,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,781,49820.664,-137951.02,0,0,0,0,947.30621 +4645,5664,10079,10081,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.3866701,8.0251226,0,7,-1,66.243942,0,-9,-9,2021,7,0,28,23,1,0,0,20.36422,20.36422,.05,.05,0,0,0,0,0,2,0,0,0,8.8824453,0,54.1,59.11,51.55,53.44,10,1,1,0,0,6,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4645,5664,10080,-9,10079,10081,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-932.30084,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.94875079,0,46,59,-9,-9,7,1,1,0,0,0,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4645,5664,10081,10079,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.5554228,9.9335861,0,27,1,-98.991837,0,2,2,2021,13,3,60,65,1,3,0,34.813225,34.813225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.55,53.44,54.1,59.11,8.333333333333334,1,1,0,0,8,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4646,5665,10082,10083,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.1348186,5.7907562,10,-3,-55.530495,0,2,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9950514,6.1036367,57.91,43.45,58.15,52.91,8.333333333333334,1,1,0,0,1,6,2,1,1031.5,103870.19,116696.66,0,0,0,0,2133.3604 +4646,5665,10083,10082,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,10,3,50.292713,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8024807,0,58.15,52.91,57.91,43.45,8.333333333333334,1,1,0,0,5,6,2,1,1031.5,103870.19,116696.66,0,0,0,0,2133.3604 +4647,5666,10084,10085,-9,-9,1,0,41,1,3,0,1,1,-9,0,5,7.3911777,7.2667599,0,3,-2,-31.216213,0,2,2,2021,7,0,5,14,1,0,0,32.171772,32.171772,0,0,0,0,0,0,0,0,1,1,0,1.887521,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10085,10084,-9,-9,1,1,43,1,3,0,1,1,-9,0,4,6.9552722,6.8913159,0,3,2,-77.751411,0,2,3,2021,9,0,40,40,1,0,0,3.0378265,3.0378265,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10086,-9,10084,10085,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.1504,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10087,-9,10084,10085,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.812,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10088,-9,10084,10085,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.6432,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4648,5667,10089,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.4950657,6.731441,0,0,-1080.2095,0,1,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.31288,6.507112,51,46,-9,-9,7,1,1,0,0,2,9,2,1,302,241271.58,119971.99,122503.05,0,0,716.46777,703.34106 +4649,5668,10090,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.0625706,7.8525281,0,0,-1059.9883,0,1,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4425607,8.0496378,59.43,58.05,-9,-9,0,1,1,0,0,8,8,4,1,1072,1099860.9,439253.78,244442.28,0,0,0,2583.8647 +4650,5669,10091,10092,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.7147026,9.7939062,0,4,3,4.761785,0,2,2,2021,9,0,70,55,1,1,0,26.146173,26.146173,.05,.05,0,0,0,0,0,0,0,0,0,7.240489,0,53,55,39.58,57.61,8,1,1,0,0,1,11,5,1,359,1530849,602472.5,715690.38,0,0,0,11122.795 +4650,5669,10092,10091,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.0854177,8.0515137,0,4,-3,25.696358,0,1,1,2021,14,2,38,38,1,2,0,8.7861071,8.7861071,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,53,55,6.666666666666667,1,1,0,0,7,11,5,1,359,1530849,602472.5,715690.38,0,0,0,11122.795 +4650,5670,10093,-9,10092,10091,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-932.63953,-9,1,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.23,46.77,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,253,-27152.115,0,0,0,0,0,0 +4651,5671,10094,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.2193904,7.2707281,0,0,-803.50647,0,2,1,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,3.8160613,0,23.412996,0,1,1,0,4.4048219,7.5988731,26.4,28.64,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,504,570077.94,252391.98,189210.77,0,0,0,1883.9298 +4652,5672,10095,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-898.75317,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,5.5957503,0,0,1,1,0,1.9127507,0,43.77,31.37,-9,-9,10,1,1,0,0,0,9,1,0,1120,352068.03,0,199678.58,0,0,0,275.26437 +4653,5673,10096,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-922.02386,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,-9,-9,8,2,3,1,1,0,5,1,1,330,247126.22,0,0,0,0,0,-6.2318048 +4654,5674,10097,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,6.3191266,6.0008979,0,0,-1023.0519,1,2,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2367349,0,25.64,46.88,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,2582.5,92589.703,0,0,0,6155.8066,0,134.07974 +4654,5674,10098,-9,10097,-9,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-997.91614,-9,2,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,2582.5,92589.703,0,0,0,6155.8066,0,134.07974 +4655,5675,10099,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.8172278,7.6680841,0,0,-887.31396,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2016871,8.0333147,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,104,608469.75,272961.94,300727,0,0,0,2116.5203 +4656,5676,10100,-9,10101,10102,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4252,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10101,10102,-9,-9,1,0,39,1,2,0,2,2,-9,0,5,7.538641,7.9057918,0,4,4,-12.827796,0,-9,-9,2021,4,0,27,21,1,0,0,7.7654266,7.7654266,.05,.05,0,0,0,0,0,0,0,0,0,1.9742202,0,51.73,58.82,39.33,58.88,6.666666666666667,1,1,0,0,8,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10102,10101,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.0353842,7.5821352,0,4,-4,-13.013972,0,2,2,2021,9,0,30,30,1,0,0,10.135015,10.135015,.05,.05,0,0,0,0,0,0,0,0,0,1.5367389,0,39.33,58.88,51.73,58.82,6.666666666666667,1,1,0,0,12,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10103,-9,10101,-9,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.03485,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4657,5677,10104,10105,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.8802795,8.7480631,0,2,2,-50.875061,0,-9,-9,2021,11,0,55,50,1,0,0,13.258104,13.258104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,49.93,51.72,8.333333333333334,1,1,0,0,10,1,4,1,144,108251.99,89918.453,151095.14,93164.109,8623.0059,0,2660.2065 +4657,5677,10105,10104,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,2,-2,-135.01799,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.93,51.72,60.12,54.8,8.333333333333334,1,1,0,0,5,1,4,1,144,108251.99,89918.453,151095.14,93164.109,8623.0059,0,2660.2065 +4658,5678,10106,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1764803,8.2745733,0,0,0,-1030.2295,-9,-9,-9,2021,8,0,37,0,1,0,0,12.725274,12.725274,0,0,.05,0,0,0,0,0,0,0,0,8.1696978,0,57.1,41.16,-9,-9,8.333333333333334,1,1,0,0,10,5,4,0,806,1055019.6,586822.56,221449.84,0,11299.307,0,3269.5288 +4659,5679,10107,10110,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.8179479,8.1443481,0,6,5,-163.58423,0,2,2,2021,9,0,35,35,1,0,0,11.266809,11.266809,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,54.77,45.56,60.26,3.333333333333333,2,3,0,0,12,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10108,-9,10110,10107,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0579,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10109,-9,10110,10107,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.119,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10110,10107,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,6,-5,26.558874,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.15,54.77,8.333333333333334,2,3,0,0,5,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4660,5680,10111,10112,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.0915632,7.6462755,42,-2,65.765297,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5026481,8.2589121,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,14,5,3,1,341,909259.31,737356.75,257909.84,0,0,0,1800.4458 +4660,5680,10112,10111,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.068378,6.8118286,41,2,31.504084,0,2,1,2021,8,0,0,30,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.6335902,7.0994444,57.16,56.15,58.15,52.91,10,1,1,0,0,14,5,3,1,341,909259.31,737356.75,257909.84,0,0,0,1800.4458 +4661,5681,10113,10115,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.7523489,9.8437271,0,18,-1,5.9232817,0,2,2,2021,9,1,46,46,1,1,0,40.879463,40.879463,.05,.05,0,0,0,0,0,0,0,0,0,4.6065631,0,52.82,53.97,46.89,54.32,6.666666666666667,1,1,0,0,13,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10114,-9,10115,10113,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1187.5624,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10115,10113,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.443562,7.7076778,0,18,1,73.854301,0,2,3,2021,10,1,10,10,1,1,0,23.635065,23.635065,.05,.05,0,0,0,0,0,0,0,0,0,10.00044,0,46.89,54.32,52.82,53.97,8.333333333333334,1,1,0,0,10,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10116,-9,10115,10113,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.48383,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4662,5682,10117,-9,10118,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5553,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,720.5,-53012.734,-57851.328,0,0,0,0,2692.856 +4662,5682,10118,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,3,7.1322927,7.269238,6.3999715,0,0,-1026.259,0,2,2,2021,10,0,18,18,1,0,0,8.7470102,8.7470102,0,0,0,0,0,0,0,0,1,1,0,6.1305728,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,720.5,-53012.734,-57851.328,0,0,0,0,2692.856 +4663,5683,10119,10120,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-21.510565,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.48,49.45,51.61,50.58,8.333333333333334,1,1,0,0,0,7,3,1,553.5,256502.11,354872.69,0,0,10085.93,6124.001,2534.0156 +4663,5683,10120,10119,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.3460922,8.5491476,7,1,93.003311,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.371314,51.61,50.58,48.48,49.45,6.666666666666667,1,1,0,0,7,7,3,1,553.5,256502.11,354872.69,0,0,10085.93,6124.001,2534.0156 +4663,5684,10121,-9,10119,10120,1,1,32,0,0,0,2,2,-9,0,2,7.9636998,7.6996059,0,0,0,-899.76447,0,2,3,2021,18,7,40,40,1,7,0,6.5121179,6.5121179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.49,51.61,-9,-9,6.666666666666667,1,1,0,0,15,7,3,1,2275,66343.125,-65139.516,0,0,0,0,586.95508 +4664,5685,10122,10123,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.1274004,8.4944487,6.5231814,7,-1,-129.83932,0,3,3,2021,22,7,18,32,1,7,0,24.827881,24.827881,0,0,0,0,0,0,0,0,1,1,0,7.5992017,4.7586741,34.11,42.2,41.23,51.32,6.666666666666667,1,1,0,0,6,9,5,1,286,2550553,1577232.5,614438.25,76988.125,3884.4805,0,7362.8066 +4664,5685,10123,10122,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.311121,9.3665314,5.6240487,7,1,25.497505,0,-9,-9,2021,17,5,30,50,1,5,0,36.680527,36.680527,.05,.05,0,0,0,0,0,0,1,1,0,9.4461565,6.3063889,41.23,51.32,34.11,42.2,6.666666666666667,1,1,0,0,9,9,5,1,286,2550553,1577232.5,614438.25,76988.125,3884.4805,0,7362.8066 +4665,5686,10124,10125,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0569735,8.2877274,0,3,0,63.372204,0,-9,-9,2021,7,1,38,40,1,1,0,17.107903,17.107903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,36.62,58.96,8.333333333333334,1,1,0,0,7,9,5,1,1345,206442.58,92911.359,365864.44,139223.8,0,0,4270.958 +4665,5686,10125,10124,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8494492,8.7454557,0,3,0,58.64909,0,-9,-9,2021,15,5,41,41,1,5,0,26.833124,26.833124,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.62,58.96,48.78,53.38,8.333333333333334,1,1,0,0,6,9,5,1,1345,206442.58,92911.359,365864.44,139223.8,0,0,4270.958 +4666,5687,10126,10127,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.7121553,7.798645,0,10,4,-11.023444,0,2,2,2021,23,10,35,40,1,10,0,7.3059645,7.3059645,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.67,40.72,22.07,57.66,3.333333333333333,1,1,0,1,14,8,4,1,1969,146699.44,84387.406,265146.63,0,430.75049,0,2305.7866 +4666,5687,10127,10126,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0023355,7.901391,0,10,-4,135.55014,-9,-9,-9,2021,16,4,25,0,1,4,0,14.790385,14.790385,0,0,0,0,0,0,0,0,0,0,0,0,0,22.07,57.66,32.67,40.72,3.333333333333333,1,1,0,0,14,8,4,1,1969,146699.44,84387.406,265146.63,0,430.75049,0,2305.7866 +4667,5688,10128,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3723559,7.4746513,0,0,0,-930.62531,0,2,2,2021,35,12,50,50,1,12,0,4.2375207,4.2375207,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,64.75,-9,-9,0,1,1,0,1,10,7,3,1,565,-116545.51,108969.28,0,0,0,0,767.92609 +4668,5689,10129,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,8.0848475,7.9839983,0,0,0,-868.68781,0,3,3,2021,6,0,70,70,1,0,0,6.6458464,6.6458464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,11,10,4,0,390,143051.69,149390.34,0,0,-403.612,0,2291.5474 +4669,5690,10130,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.7463293,7.799716,6.2350225,0,0,-1142.3142,0,3,3,2021,12,0,60,60,1,0,0,3.8594201,3.8594201,0,0,0,0,0,0,1.2228081,2,0,0,0,6.4016423,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,2107,811835.13,66869.438,125361.41,0,0,0,1671.673 +4670,5691,10131,10132,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.629169,6.0155878,65,-1,91.558792,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.8681998,61.53,31.55,49.69,18.65,8.333333333333334,1,1,0,0,5,9,3,1,2067.5,338388.25,94709.391,279930.81,0,0,0,1613.0916 +4670,5691,10132,10131,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,7.325501,7.0894575,65,1,-75.427368,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,74.749458,0,0,1,1,0,0,7.1841021,49.69,18.65,61.53,31.55,10,1,1,0,0,0,9,3,1,2067.5,338388.25,94709.391,279930.81,0,0,0,1613.0916 +4671,5692,10133,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.647191,8.5130348,0,0,0,-941.08325,0,2,2,2021,8,0,54,49,1,0,0,12.105591,12.105591,.05,.05,0,0,0,0,0,0,1,1,0,5.1600547,0,52.62,54.33,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,233,118652.76,23332.123,270832.38,22319.5,0,0,2078.1138 +4672,5693,10134,10135,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.8945093,6.7536192,0,11,2,93.47213,0,2,2,2021,14,3,9,12,1,3,0,11.407228,11.407228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.89,56.25,52.43,55.57,5,1,1,0,0,9,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5693,10135,10134,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.0215693,9.0760355,0,11,-2,-90.660942,0,2,3,2021,16,4,40,49,1,4,0,26.766403,26.766403,.05,.05,0,0,0,0,0,0,1,1,0,6.0593109,0,52.43,55.57,47.89,56.25,8.333333333333334,1,1,0,0,12,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5693,10136,-9,10134,10135,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1047.2419,-9,2,2,2021,21,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,0,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5694,10137,-9,10134,10135,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1070.321,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9472165,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1359,13713.614,0,0,0,0,0,-223.06908 +4673,5695,10138,10139,-9,-9,1,1,65,1,1,0,1,1,-9,0,1,0,0,0,3,1,0,0,2,1,2021,23,10,0,0,4,10,0,0,0,0,0,.05,1,0,14.761031,0,0,1,1,0,0,0,45.02,37.95,38.84,26.9,3.333333333333333,2,3,0,0,5,7,1,1,713.5,-46162.883,19847.67,0,0,0,0,1079.0203 +4673,5695,10139,10138,-9,-9,1,0,64,1,1,0,1,1,-9,0,1,0,0,0,3,-1,0,0,-9,-9,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.84,26.9,45.02,37.95,5,2,3,1,0,0,7,1,1,713.5,-46162.883,19847.67,0,0,0,0,1079.0203 +4673,5696,10140,10142,10139,10138,1,1,33,1,1,0,2,2,-9,0,3,8.0075607,7.9529095,0,3,5,-24.156818,0,1,2,2021,11,0,40,96,1,0,0,8.163928,8.163928,.05,.05,0,0,0,0,0,0,1,1,0,2.6698463,0,30.25,56.52,58.47,50.22,5,2,3,0,0,8,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4673,5696,10141,-9,10142,10140,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.1064,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4673,5696,10142,10140,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,8.8274088,8.8749866,0,3,-5,-66.523285,0,-9,-9,2021,12,0,40,0,1,0,0,22.938059,22.938059,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,30.25,56.52,8.333333333333334,2,3,0,0,1,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4674,5697,10143,-9,-9,-9,1,0,70,0,1,0,3,3,-9,0,2,0,6.2753959,6.0042348,0,0,-1008.801,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3445811,0,43.3,48.12,-9,-9,5,1,1,0,0,0,10,2,1,1504,459150.53,92119.109,402659.91,0,0,0,681.36951 +4674,5698,10144,10145,10143,-9,1,1,46,0,1,0,2,2,-9,0,2,9.0771399,9.301219,0,7,-6,-36.23595,0,2,2,2021,11,0,43,40,1,0,0,22.6537,22.6537,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.77,42.67,57.16,56.15,5,1,1,0,0,8,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4674,5698,10145,10144,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.9095011,9.0320749,0,7,6,-29.616154,0,2,2,2021,9,0,40,40,1,0,0,23.562338,23.562338,0,0,0,0,0,0,0,0,1,1,0,2.5964434,0,57.16,56.15,54.77,42.67,8.333333333333334,1,1,0,0,8,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4674,5698,10146,-9,10145,10144,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1033.9319,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4675,5699,10147,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,4.6930933,4.5393896,0,0,-896.02515,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8167274,4.3519597,35.85,40.95,-9,-9,10,1,1,0,1,0,7,2,0,2392,96675.641,0,0,0,0,0,1223.656 +4676,5700,10148,10149,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2286892,8.0168734,0,4,-1,-22.536011,0,-9,-9,2021,11,0,38,41,1,0,0,10.723437,10.723437,0,0,0,0,0,0,0,0,0,0,0,3.6297431,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,10,9,5,1,1494,0,0,0,0,0,0,3144.3364 +4676,5700,10149,10148,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.086154,8.1276302,0,4,1,89.012825,0,-9,-9,2021,14,2,40,40,1,2,0,12.264064,12.264064,0,0,0,0,0,0,0,0,0,0,0,2.8688543,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,4,9,5,1,1494,0,0,0,0,0,0,3144.3364 +4677,5701,10150,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.1061373,6.4848113,0,0,-950.45154,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5068884,60.35,18.88,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,373,243475.89,83799.539,204662.56,0,0,0,1408.0134 +4678,5702,10151,10152,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.0930099,7.1970048,20,-5,-28.098354,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7097745,6.9783115,45.23,48.33,45.18,57.44,8.333333333333334,1,1,0,0,4,4,5,1,268,1953789.5,1755889.9,210313.88,0,5752.5273,0,4582.4229 +4678,5702,10152,10151,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5773258,8.3333311,22,5,-6.0558944,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4357386,45.18,57.44,45.23,48.33,10,1,1,0,0,0,4,5,1,268,1953789.5,1755889.9,210313.88,0,5752.5273,0,4582.4229 +4679,5703,10153,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.7632875,7.1402531,0,0,-888.90814,0,2,1,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4143767,7.4130349,26,35.44,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,917,459578.19,170152.42,249484.13,0,0,0,1281.5885 +4680,5704,10154,10155,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.9876404,7.6133599,0,6,-1,45.531887,0,-9,-9,2021,5,0,25,16,1,0,0,13.990498,13.990498,0,0,0,0,0,0,0,0,0,0,0,.75991148,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,635,2066615,1667255,145963.89,0,8721.8066,0,3049.3779 +4680,5704,10155,10154,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9692187,8.0514898,40,1,93.902214,0,-9,-9,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7519021,8.1328239,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,635,2066615,1667255,145963.89,0,8721.8066,0,3049.3779 +4681,5705,10156,10157,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,0,0,0,22,1,29.837959,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.7154217,0,45.04,53.77,46.16,58.62,5,1,1,1,0,11,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4681,5705,10157,10156,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.4460921,7.3372874,0,25,-1,98.372131,0,3,3,2021,12,0,14,14,1,0,0,15.205613,15.205613,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,45.04,53.77,1.666666666666667,1,1,0,0,12,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4681,5705,10158,-9,10157,10156,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.8954,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4682,5706,10159,10162,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.3401709,8.5296631,0,14,1,23.463011,0,2,2,2021,11,0,40,40,1,0,0,12.006665,12.006665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.74,48.37,51.14,60.45,6.666666666666667,1,1,0,0,10,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10160,-9,10162,10159,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-898.64252,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10161,-9,10162,10159,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4851,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10162,10159,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.4790363,8.1176176,0,14,-1,-2.1022232,0,2,3,2021,12,0,38,35,1,0,0,11.623644,11.623644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.74,48.37,8.333333333333334,1,1,0,0,8,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4683,5707,10163,10165,-9,-9,1,0,34,1,3,0,3,3,-9,0,3,0,0,0,7,-2,-49.809967,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.12,58.55,57.16,56.15,5,1,1,0,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10164,-9,10163,10165,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-945.58154,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10165,10163,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,7.8849454,7.9327621,0,7,2,64.731293,-9,-9,-9,2021,7,0,40,0,1,0,0,8.5892591,8.5892591,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.12,58.55,6.666666666666667,1,1,0,1,2,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10166,-9,10163,10165,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.2405,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10167,-9,10163,10165,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.5144,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4684,5708,10168,10169,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,5.5396118,5.5176797,49,2,57.733208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.81319,5.5788174,56,52,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,1363,-102506.2,0,0,0,0,0,1185.0835 +4684,5708,10169,10168,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,6.0175972,6.1134496,49,-2,-8.4603424,0,1,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8020658,6.0579214,57.06,57.76,56,52,10,1,1,0,0,0,10,2,1,1363,-102506.2,0,0,0,0,0,1185.0835 +4685,5709,10170,10171,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.3943744,6.4306231,10,1,-56.185329,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4281359,6.3886127,59.46,46.99,53,52,8.333333333333334,1,1,0,0,5,11,2,1,1475,283507.72,178699.63,121047.67,52707.227,0,0,1446.6909 +4685,5709,10171,10170,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,-1,64.943741,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,59.46,46.99,8.333333333333334,1,1,0,0,5,11,2,1,1475,283507.72,178699.63,121047.67,52707.227,0,0,1446.6909 +4686,5710,10172,-9,-9,-9,1,1,47,0,4,0,1,1,-9,0,5,6.7157307,7.0128932,0,0,0,-1033.4423,0,3,3,2021,7,0,17,16,1,0,0,6.0989895,6.0989895,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,3,4,0,1,3,5,2,0,393,-126541.64,0,0,0,12236.478,0,2758.1255 +4686,5711,10173,-9,-9,10172,1,0,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-1019.3768,-9,3,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,5,1,0,167,-35227.344,0,0,0,1975.5782,0,0 +4686,5712,10174,-9,-9,10172,1,0,18,0,4,1,2,0,0,0,5,0,0,0,0,0,-939.76855,-9,-9,1,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,5,1,0,787,-35266.883,0,0,0,0,0,0 +4687,5713,10175,10176,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,2,0,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,6.0580373,0,57.16,56.15,49.05,47.47,6.666666666666667,1,1,0,0,0,9,1,1,790,1101431.5,301127,647030.5,53213.383,1937.6492,0,3787.3364 +4687,5713,10176,10175,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,26,0,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7419357,0,49.05,47.47,57.16,56.15,6.666666666666667,1,1,0,0,0,9,1,1,790,1101431.5,301127,647030.5,53213.383,1937.6492,0,3787.3364 +4688,5714,10177,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1050.1409,0,3,2,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,20.98,-9,-9,0,1,1,0,1,2,8,1,0,422,-36494.707,0,0,0,0,0,608.36902 +4689,5715,10178,-9,10179,10180,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-998.00702,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5715,10179,10180,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.5967455,8.4884701,0,26,-10,-77.572441,0,2,2,2021,11,0,23,23,1,0,0,24.393602,24.393602,0,0,0,0,0,0,0,0,0,0,0,3.2846556,0,48.87,58.55,41.85,59.52,8.333333333333334,1,1,0,0,13,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5715,10180,10179,-9,-9,1,1,59,0,1,0,1,1,-9,0,5,9.1175814,9.4127798,0,26,10,128.93561,0,2,1,2021,18,7,45,50,1,7,0,30.916697,30.916697,.05,.05,0,0,0,0,0,0,0,0,0,2.4359813,0,41.85,59.52,48.87,58.55,8.333333333333334,1,1,0,0,13,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5716,10181,-9,10179,10180,1,0,24,0,1,0,1,1,-9,0,5,8.2814941,8.3613968,0,0,0,-993.31458,0,2,1,2021,7,0,40,38,1,0,1,8.9956322,8.9956322,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,7,4,1,423,68468.523,130430.88,0,0,-1256.8093,0,2464.2209 +4689,5717,10182,-9,10179,10180,1,0,21,0,1,0,2,2,-9,0,3,5.7007051,5.6740861,0,0,0,-1136.6503,0,2,1,2021,15,3,10,-9,1,3,1,3.0177219,3.0177219,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,430,-44428.293,0,0,0,0,-234.57166,-196.72343 +4690,5718,10183,10184,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.3176813,8.1561346,0,29,0,7.1961803,0,2,2,2021,0,0,38,0,1,0,0,11.029905,11.029905,0,0,0,0,0,0,0,0,0,0,0,5.8125963,0,56.68,21.84,62.49,55.09,8.333333333333334,1,1,0,0,9,2,4,1,2818,1957672,1416845.1,172820.47,0,0,0,2979.9434 +4690,5718,10184,10183,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.2915115,8.0070744,0,29,0,-176.48064,0,3,3,2021,3,0,43,44,1,0,0,11.525783,11.525783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,56.68,21.84,8.333333333333334,1,1,0,0,5,2,4,1,2818,1957672,1416845.1,172820.47,0,0,0,2979.9434 +4691,5719,10185,10186,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2981672,8.2875671,51,-2,3.9115746,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.173656,8.1985865,58.3,52.91,50,47,8.333333333333334,1,1,0,0,12,5,4,1,669.5,1268740,454563.28,187736.66,0,0,0,5148.5317 +4691,5719,10186,10185,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.677392,6.6130238,51,2,-117.84319,0,1,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9216809,6.2866197,50,47,58.3,52.91,7,1,1,0,0,0,5,4,1,669.5,1268740,454563.28,187736.66,0,0,0,5148.5317 +4692,5720,10187,10188,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.9015498,7.0274358,0,39,0,-143.07094,0,2,3,2021,15,4,15,18,1,4,0,8.0396109,8.0396109,0,0,0,0,0,0,0,0,0,0,0,0,0,33.69,53.53,58.23,37.93,8.333333333333334,1,1,0,0,13,6,4,1,404.5,92019.922,-37875.813,197480.81,141426.95,0,355.96313,2778.8237 +4692,5720,10188,10187,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.625392,8.6958084,0,39,0,2.6384609,0,3,3,2021,9,1,35,35,1,1,0,14.45043,14.45043,.05,.05,0,0,0,0,0,0,0,0,0,3.4393768,0,58.23,37.93,33.69,53.53,6.666666666666667,1,1,0,0,13,6,4,1,404.5,92019.922,-37875.813,197480.81,141426.95,0,355.96313,2778.8237 +4693,5721,10189,10190,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.9748363,8.5812073,0,19,-2,-9.1157951,0,2,-9,2021,24,12,39,38,1,12,0,21.082064,21.082064,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.42,40.27,33.01,63.17,5,1,1,0,0,14,2,5,1,301,762242.25,56861.133,709727.75,177875.28,0,0,5156.873 +4693,5721,10190,10189,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6472139,8.7092371,6.9707422,19,2,56.913116,0,3,2,2021,20,7,40,39,1,7,0,18.387838,18.387838,.05,.05,0,0,0,0,0,0,0,0,0,3.7494359,7.3945799,33.01,63.17,45.42,40.27,8.333333333333334,1,1,0,0,14,2,5,1,301,762242.25,56861.133,709727.75,177875.28,0,0,5156.873 +4694,5722,10191,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7262225,7.6610069,0,0,0,-1000.0435,0,3,3,2021,14,3,26,26,1,3,0,12.356837,12.356837,.05,.05,0,0,0,0,0,7,0,0,0,1.5519196,0,48.27,45.05,-9,-9,8.333333333333334,1,1,0,1,9,6,3,1,170,363664.03,205293.94,176123.58,29397.986,0,0,1003.2311 +4694,5723,10192,-9,10191,-9,1,0,21,0,0,0,2,2,0,0,2,0,0,0,0,0,-1080.76,-9,2,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1.6367949,0,65.78,29.46,-9,-9,10,1,1,0,0,3,6,1,1,270,4409.5615,0,0,0,0,0,-98.125717 +4694,5724,10193,-9,10191,-9,1,0,18,0,0,0,2,2,1,0,4,7.8179884,7.6841807,0,0,0,-896.83673,-9,2,-9,2021,12,0,40,0,1,2,1,6.4048939,6.4048939,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,1,6,3,1,189,55757.074,0,0,0,8939.2822,0,1490.8412 +4695,5725,10194,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.0284805,7.1159773,0,0,-1030.7246,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1745248,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,1087,380460.16,12413.814,265812.91,0,0,0,1360.314 +4696,5726,10195,10196,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.6023731,4.3705759,9,2,-156.6152,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,3.636945,5.7894073,23.206612,0,1,1,0,0,4.305625,19.5,41.67,49.68,50.49,3.333333333333333,1,1,0,0,0,13,2,0,494,398754.5,0,304887.16,0,0,0,1344.7002 +4696,5726,10196,10195,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,9,-2,-5.6468444,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,49.68,50.49,19.5,41.67,5,1,1,0,0,0,13,2,0,494,398754.5,0,304887.16,0,0,0,1344.7002 +4697,5727,10197,10198,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2486277,8.3540964,0,6,3,57.600449,0,3,2,2021,11,1,30,30,1,1,0,13.463609,13.463609,0,0,0,0,0,0,0,0,0,0,0,3.712399,0,52.25,53.24,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,1379,420659.69,297868.75,112197.63,124781.27,0,0,4165.3306 +4697,5727,10198,10197,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.9410887,8.7428102,0,6,-3,30.595089,0,3,2,2021,10,0,44,41,1,0,0,20.760477,20.760477,.05,.05,0,0,0,0,0,0,0,0,0,6.3030515,0,57.06,57.76,52.25,53.24,8.333333333333334,1,1,0,0,9,8,5,1,1379,420659.69,297868.75,112197.63,124781.27,0,0,4165.3306 +4698,5728,10199,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,1,0,0,0,0,0,-890.12732,0,3,2,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4607294,0,28.8,33.15,-9,-9,3.333333333333333,1,1,1,0,6,5,1,1,1135,71287.133,0,0,0,0,0,235.32501 +4699,5729,10200,10201,-9,-9,1,1,38,0,1,0,2,2,-9,0,3,8.4923973,8.0586176,0,1,0,8.5675278,-9,-9,-9,2021,24,10,42,0,1,10,0,14.585585,14.585585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.31,54.62,33.47,48.38,5,1,1,0,0,6,7,4,0,312.5,316061.22,277774.63,139609.17,106913.68,26826.453,0,5563.1436 +4699,5729,10201,10200,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.5064182,8.4240284,0,1,0,-54.587017,-9,2,3,2021,20,8,48,0,1,8,0,10.515985,10.515985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.47,48.38,28.31,54.62,3.333333333333333,4,2,0,0,9,7,4,0,312.5,316061.22,277774.63,139609.17,106913.68,26826.453,0,5563.1436 +4700,5730,10202,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3106804,7.4462333,0,0,-1093.5575,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5868273,7.5238872,45.13,29.34,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,4927,90785.227,243892.19,0,0,0,805.62262,2367.9951 +4701,5731,10203,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,8.2898417,8.1355038,0,0,0,-872.73438,0,-9,-9,2021,16,6,15,15,1,6,0,22.825764,22.825764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,-9,-9,5,1,1,0,0,7,7,4,0,241,518944.38,61172.262,287123.25,0,0,0,1923.7303 +4702,5732,10204,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,6.9982071,7.0695162,0,0,-855.76019,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7836759,6.9723492,65.88,16.46,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,327,264411.81,12190.02,88717.695,0,0,0,2223.4612 +4703,5733,10205,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.3133235,6.0845251,0,0,-1002.9951,0,-9,-9,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0252452,31.74,37.19,-9,-9,1.666666666666667,1,1,0,0,5,7,2,1,529,805822.88,225819.28,0,0,0,0,1116.0675 +4704,5734,10206,-9,10209,10208,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.7159,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10207,-9,10209,10208,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.4485,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10208,10209,-9,-9,1,1,35,0,3,0,1,1,-9,0,3,8.0412798,8.0141373,0,8,-1,43.765018,0,3,3,2021,14,2,50,40,1,2,0,7.5392685,7.5392685,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.27,52.67,23.29,50.99,1.666666666666667,1,1,0,0,6,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10209,10208,-9,-9,1,0,36,0,3,0,2,2,0,1,2,0,0,0,8,1,50.532684,-9,3,-9,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,50.99,38.27,52.67,1.666666666666667,1,1,0,0,1,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10210,-9,10209,10208,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.65796,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5735,10211,-9,10209,10208,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1054.0212,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,878,-34149.355,0,0,0,0,0,0 +4705,5736,10212,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.5723634,7.3047223,0,0,-1035.5767,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2729967,7.186511,57.73,27.89,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,1508,380385.16,322509.41,62822.367,0,0,0,1574.345 +4706,5737,10213,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8752904,7.9629946,0,0,0,-906.5506,-9,-9,-9,2021,15,5,50,0,1,5,0,5.582788,5.582788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,-9,-9,8.333333333333334,3,4,0,0,2,8,3,1,662,135710.63,-40435.344,0,0,0,0,888.23047 +4706,5738,10214,10215,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.4711266,6.4654732,0,3,1,6.4301682,0,-9,-9,2021,11,2,55,0,1,2,0,1.4191828,1.4191828,.05,.05,.05,0,0,0,0,0,0,0,0,2.8662994,0,50.63,50.99,42.58,54.92,1.666666666666667,4,4,0,0,1,8,5,1,470.5,379898,277847.13,267866.25,94591.906,-810.14417,1481.8965,4229.2729 +4706,5738,10215,10214,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6498404,8.6933317,0,3,-1,18.770552,0,2,2,2021,3,0,40,52,1,0,0,17.92886,17.92886,0,0,0,0,0,0,0,2,0,0,0,8.6672935,0,42.58,54.92,50.63,50.99,8.333333333333334,3,4,0,0,10,8,5,1,470.5,379898,277847.13,267866.25,94591.906,-810.14417,1481.8965,4229.2729 +4707,5739,10216,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.4979429,8.341608,0,0,0,-980.76355,0,3,2,2021,15,3,60,38,1,3,0,7.0432539,7.0432539,.05,.05,0,0,0,0,0,7,1,1,0,0,0,41.93,43,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,1848,196925.73,90151.25,0,0,842.90332,2069.0562,2107.0413 +4708,5740,10217,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.8651114,5.9536209,0,0,-1053.9152,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.880599,40.46,63.68,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,776,50491.262,-64214.598,119049.66,0,0,0,704.00781 +4709,5741,10218,10219,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.0571198,6.1923985,44,4,-56.949196,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,6.4370365,0,74.5,1,1,0,0,6.0301948,45.15,51.17,34.32,19.62,10,1,1,0,0,0,6,2,1,776,1616089.3,702338.44,631109.19,0,0,0,2079.6052 +4709,5741,10219,10218,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,44,-4,135.9391,0,2,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.32,19.62,45.15,51.17,10,1,1,0,0,0,6,2,1,776,1616089.3,702338.44,631109.19,0,0,0,2079.6052 +4710,5742,10220,10222,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5294619,8.3431435,0,17,-4,38.938587,-9,3,2,2021,12,0,33,0,1,0,0,19.844255,19.844255,.05,.05,0,0,0,0,0,0,1,1,0,8.0287342,0,45.91,59.89,53.56,49.66,8.333333333333334,1,1,0,0,14,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5742,10221,-9,10220,10222,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.99109,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5742,10222,10220,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,7.8701019,7.6335287,0,17,4,-1.2048926,-9,-9,-9,2021,12,0,40,0,1,0,0,7.6611924,7.6611924,.05,.05,0,0,0,0,0,0,1,1,0,7.397378,0,53.56,49.66,45.91,59.89,8.333333333333334,1,1,0,0,14,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5743,10223,-9,10220,10222,1,1,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-975.63495,-9,1,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2988,-31303.238,0,0,0,0,0,-350.20462 +4710,5744,10224,-9,10220,10222,1,0,18,0,1,0,2,2,-9,0,5,7.3859963,7.3195076,0,0,0,-1011.4361,-9,1,2,2021,6,0,34,0,1,0,1,7.1246371,7.1246371,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,1,2,10,3,1,768,27018.889,0,0,0,0,0,713.22797 +4711,5745,10225,10226,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,12,6,-85.07576,0,2,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,.05,0,0,0,0,14.5,0,0,0,3.3525348,0,44.95,58.82,54.2,57.49,8.333333333333334,1,1,0,0,13,2,5,1,962.5,1781429,650712.75,792130.13,0,0,0,5398.0015 +4711,5745,10226,10225,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3613672,9.964469,0,12,-6,.062582336,0,2,2,2021,12,0,80,80,1,0,0,19.009447,19.009447,0,0,0,0,0,0,0,7,0,0,0,6.614501,0,54.2,57.49,44.95,58.82,8.333333333333334,1,1,0,0,14,2,5,1,962.5,1781429,650712.75,792130.13,0,0,0,5398.0015 +4712,5746,10227,10228,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.3328705,8.6954975,0,24,-3,-78.523308,0,3,3,2021,10,0,23,23,1,1,0,21.229689,21.229689,.05,.05,0,0,0,0,0,0,1,1,0,.63269323,0,39.58,57.61,37.38,48.9,7,2,3,0,0,9,5,4,1,3428.5,18314.348,17564.16,0,0,4906.9526,0,2561.0215 +4712,5746,10228,10227,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5023661,7.7638741,0,15,3,-99.431885,0,3,3,2021,14,2,42,38,1,2,0,6.2687607,6.2687607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.38,48.9,39.58,57.61,3.333333333333333,2,3,0,1,6,5,4,1,3428.5,18314.348,17564.16,0,0,4906.9526,0,2561.0215 +4712,5747,10229,-9,10227,10228,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-946.46503,-9,2,2,2021,32,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.26702935,0,5.45,59.85,-9,-9,0,2,3,1,1,0,5,1,1,620,-53614.137,0,0,0,0,0,-782.67102 +4713,5748,10230,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.7231431,7.2029757,0,0,-945.21423,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0363107,6.996716,45.59,22.89,-9,-9,6.666666666666667,1,1,0,0,6,10,2,1,1148,375007.53,154205.88,278196.5,0,0,0,1285.7141 +4714,5749,10231,10232,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,0,5.7806025,5.5285711,33,5,-94.293098,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.733974,5.5308156,37.96,24.76,48.28,60.18,6.666666666666667,1,1,0,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4714,5749,10232,10231,-9,-9,1,0,56,0,1,0,2,2,-9,1,4,0,0,0,33,-5,45.652084,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.62308675,0,48.28,60.18,37.96,24.76,8.333333333333334,1,1,0,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4714,5749,10233,-9,10232,10231,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1066.073,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4715,5750,10234,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,8.3411884,8.5734873,0,0,0,-980.18634,0,-9,-9,2021,13,1,40,44,1,1,0,13.468482,13.468482,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.98,41.39,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,871,320222,31594.07,0,0,0,0,1737.2137 +4716,5751,10235,10236,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.6208925,6.7083778,17,6,99.545753,0,2,1,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3078136,0,49,48,56.19,43.46,5,1,1,1,0,9,8,5,1,546,2972686,0,1178379.1,0,0,0,4873.6855 +4716,5751,10236,10235,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.4737892,9.6086922,0,17,-6,-103.124,0,2,2,2021,7,0,41,50,1,0,0,37.13467,37.13467,0,0,0,0,0,0,0,0,0,0,0,4.7531004,0,56.19,43.46,49,48,5,1,1,0,0,10,8,5,1,546,2972686,0,1178379.1,0,0,0,4873.6855 +4717,5752,10237,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6516905,7.4173231,0,0,0,-881.29895,-9,1,2,2021,4,1,33,0,1,1,0,7.6662645,7.6662645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,392,-207200.84,-117987.05,0,0,0,0,724.32068 +4718,5753,10238,-9,10240,10239,1,1,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-970.74915,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,2219,0,0,0,0,0,0,-211.8362 +4718,5754,10239,10240,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.4243584,8.2857714,0,5,1,-124.78349,0,-9,-9,2021,9,0,40,45,1,0,0,15.265803,15.265803,.05,.05,0,0,0,0,0,0,1,1,0,2.5986269,0,49.04,55.86,55.95,47.23,8.333333333333334,1,1,0,0,12,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4718,5754,10240,10239,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.6912732,7.6993017,0,5,-1,38.399906,0,-9,-9,2021,9,0,42,42,1,0,0,4.9655743,4.9655743,0,0,0,0,0,0,0,0,1,1,0,.63084346,0,55.95,47.23,49.04,55.86,8.333333333333334,1,1,0,0,12,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4718,5754,10241,-9,10240,10239,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0942,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4719,5755,10242,-9,10244,10245,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.58984,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10243,-9,10244,10245,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.4141,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10244,10245,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,6,0,13.371084,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.8934298,0,42.11,57.44,43.54,59.6,8.333333333333334,1,1,0,0,4,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10245,10244,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,8.7039165,8.757412,0,6,0,-40.007271,0,2,2,2021,11,0,39,37,1,0,0,12.411723,12.411723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,42.11,57.44,6.666666666666667,1,1,0,0,10,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4720,5756,10246,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.1702628,6.2961793,0,0,-914.5462,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0345263,59.7,53.75,-9,-9,10,1,1,0,0,0,12,2,1,339,375542.19,49805.871,175401,0,0,0,1222.1056 +4721,5757,10247,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5895,0,-9,-9,2021,14,5,0,0,4,5,0,0,0,0,0,0,1,6.2879438,0,61.780735,0,1,1,0,0,0,64.09999999999999,14.67,-9,-9,10,2,3,0,0,0,8,1,0,335,44974.855,0,0,0,0,0,248.0282 +4722,5758,10248,-9,10250,10249,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-832.62744,0,1,1,2021,34,11,0,50,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.39,43.93,-9,-9,0,1,1,1,1,8,5,1,1,189,72458.328,-78501.367,0,0,4908.1538,-24.748123,627.30652 +4722,5759,10249,10250,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,4,0,4.5781069,0,-9,-9,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4408042,0,43.33,55.57,44,38,8.333333333333334,1,1,0,0,0,5,4,1,244.5,2620646.5,1577939.3,408882.06,0,0,0,3145.542 +4722,5759,10250,10249,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.6774683,8.9244452,4,0,-63.088959,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,8.7994547,44,38,43.33,55.57,5,1,1,0,0,0,5,4,1,244.5,2620646.5,1577939.3,408882.06,0,0,0,3145.542 +4723,5760,10251,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3769693,8.6198215,0,0,0,-1042.3979,0,1,1,2021,9,0,40,40,1,0,0,10.742653,10.742653,.05,.05,0,0,0,0,0,2,0,0,0,4.3149171,0,38.46,59.39,-9,-9,5,1,1,0,0,12,8,5,1,669,369076.75,104010.75,227262.22,98954.539,0,0,2040.3263 +4724,5761,10252,-9,10254,10253,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.8892,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10253,10254,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.6700864,7.9827347,0,11,6,-32.407104,0,2,3,2021,5,0,33,0,1,0,0,10.295351,10.295351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,45.19,46.74,8.333333333333334,1,1,0,0,7,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10254,10253,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.9698257,8.4781876,0,11,-6,-201.06239,0,2,2,2021,10,2,48,47,1,2,0,14.35897,14.35897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.19,46.74,49.04,55.86,8.333333333333334,1,1,0,0,10,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10255,-9,10254,10253,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.5831,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4725,5762,10256,10257,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.3188019,5.1797137,41,3,73.152901,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2604094,4.8489699,60.12,54.8,37.64,38.46,10,1,1,0,0,0,13,2,1,1094,311083,141499.69,214558.31,0,0,481.65955,1149.0911 +4725,5762,10257,10256,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,41,-3,-85.437431,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.864882,0,0,1,1,0,0,0,37.64,38.46,60.12,54.8,8.333333333333334,1,1,0,0,0,13,2,1,1094,311083,141499.69,214558.31,0,0,481.65955,1149.0911 +4726,5763,10258,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1129.1991,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.43,16.78,-9,-9,5,1,1,1,0,1,4,1,0,327,-253391,0,0,0,-962.00385,-240.27435,1120.6934 +4727,5764,10259,10261,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,0,0,0,2,2,32.902649,-9,2,2,2021,16,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8398626,0,34.44,48.18,51,54,3.333333333333333,1,1,1,0,6,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4727,5764,10260,-9,10261,10259,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-851.8042,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4727,5764,10261,10259,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.9404311,8.0338717,0,2,-2,-160.52036,0,3,2,2021,10,0,16,17,1,1,0,18.587351,18.587351,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,34.44,48.18,8,1,1,0,0,7,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4728,5765,10262,10263,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.4424791,8.5142841,50,7,55.805206,0,2,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1093102,8.6590805,51.94,45.35,57.86,39.96,10,1,1,0,0,0,8,5,1,730,1753973.8,483088.19,867677.5,0,0,0,5140.2314 +4728,5765,10263,10262,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.6393461,7.857955,50,-7,-19.576311,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5476584,7.5424924,57.86,39.96,51.94,45.35,10,1,1,0,0,3,8,5,1,730,1753973.8,483088.19,867677.5,0,0,0,5140.2314 +4729,5766,10264,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.9736748,7.1690416,0,0,-923.2525,0,-9,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,1,1.8248912,0,28.132689,0,1,1,0,7.3151212,7.0380998,57.87,38.63,-9,-9,1.666666666666667,1,1,0,0,0,10,3,0,857,287382,148553.39,208424.5,0,0,0,1665.6541 +4730,5767,10265,10266,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.8236561,7.7477303,0,30,0,19.564117,0,3,-9,2021,10,0,36,36,1,1,0,5.9505768,5.9505768,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,55,53,8,2,3,0,0,9,8,4,1,930,573084.63,13968.661,688148.38,32286.023,0,0,1573.9155 +4730,5767,10266,10265,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.8291702,8.0327711,0,6,0,62.013363,0,-9,-9,2021,8,0,40,40,1,0,0,6.7265105,6.7265105,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,53,52,8,2,3,0,0,9,8,4,1,930,573084.63,13968.661,688148.38,32286.023,0,0,1573.9155 +4730,5768,10267,-9,10265,10266,1,1,28,0,0,0,2,2,-9,0,4,7.1261864,6.7865334,0,0,0,-1223.1357,0,3,3,2021,10,0,35,20,1,1,1,3.2648141,3.2648141,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,6,8,2,1,588,-183071.17,0,0,0,0,0,766.10706 +4730,5769,10268,-9,10265,10266,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1011.4732,0,3,3,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,811,0,0,0,0,0,0,399.00345 +4731,5770,10269,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,7.951026,8.0427074,0,0,0,-1008.8364,0,2,2,2021,5,0,56,40,1,0,0,5.7398391,5.7398391,0,0,0,0,0,0,0,0,1,1,0,0,0,26.52,51.7,-9,-9,0,2,3,0,0,6,8,4,0,489,203134.92,0,166048,125172.2,4448.1533,0,753.13776 +4732,5771,10270,10271,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.2565813,8.6602249,0,9,1,-104.54917,0,1,2,2021,10,0,52,45,1,0,0,11.652446,11.652446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.47,23.43,5,1,1,0,0,10,5,5,0,672,144446.69,70159.094,0,0,0,0,3536.9392 +4732,5771,10271,10270,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.3456335,8.214591,5.2065148,9,-1,10.480819,0,2,2,2021,9,0,40,40,1,0,0,9.4138746,9.4138746,.05,.05,0,0,0,0,0,0,0,0,0,0,5.9158711,58.47,23.43,54.37,54.8,6.666666666666667,1,1,0,0,8,5,5,0,672,144446.69,70159.094,0,0,0,0,3536.9392 +4733,5772,10272,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.8719234,8.7868805,0,14,-4,-24.108183,0,2,3,2021,19,7,63,45,1,7,0,10.204008,10.204008,.05,.05,0,0,0,0,0,2,0,0,0,4.9900732,0,46.85,51.26,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,1688,312335.16,86851.375,83150.797,120092.56,0,0,1666.0046 +4733,5773,10273,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2188368,7.9280105,0,14,4,-1.3523897,0,-9,-9,2021,10,0,44,41,1,0,0,9.4808254,9.4808254,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,46.85,51.26,6.666666666666667,1,1,0,0,7,4,5,1,1527,716510.81,469333.22,45681.086,59374.805,0,0,1079.6447 +4734,5774,10274,-9,10275,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.22736,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4734,5774,10275,-9,-9,-9,1,0,30,1,3,0,2,2,-9,0,5,0,5.9310446,5.6523004,0,0,-1127.0925,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6450925,0,48.49,58.82,-9,-9,10,1,1,0,0,5,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4734,5774,10276,-9,10275,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8944,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4735,5775,10277,10278,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.3429837,7.7969179,5.466085,47,-4,25.082594,0,-9,-9,2021,12,0,24,31,1,0,0,8.5344362,8.5344362,0,0,0,0,0,0,0,0,1,1,0,0,5.5585709,39.51,43.84,41.36,39.55,6.666666666666667,1,1,0,0,12,10,3,1,1203,1271533.6,466364.22,205071.53,0,0,0,2406.6851 +4735,5775,10278,10277,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.1130199,7.2868853,45,4,-7.171926,0,3,3,2021,19,7,0,0,4,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1487985,41.36,39.55,39.51,43.84,3.333333333333333,1,1,0,0,8,10,3,1,1203,1271533.6,466364.22,205071.53,0,0,0,2406.6851 +4736,5776,10279,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.1676555,7.018259,0,0,-1044.2112,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.1203814,0,0,1,1,0,1.0722302,7.2172818,53.52,37.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,298,230518.17,106335.04,113311.83,0,0,0,1341.2681 +4737,5777,10280,10281,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,4.4386539,4.2370353,57,-3,36.073124,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.6339163,0,17.606577,74.5,1,1,0,4.1928215,4.2853084,60.54,34.78,46.45,39.56,10,1,1,0,0,0,6,2,1,704.5,276725.94,284407,160794.13,0,0,0,2205.0391 +4737,5777,10281,10280,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.0033674,7.1115222,57,3,91.593513,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,18.508455,0,0,1,1,0,4.2641554,6.8548756,46.45,39.56,60.54,34.78,10,1,1,0,0,0,6,2,1,704.5,276725.94,284407,160794.13,0,0,0,2205.0391 +4738,5778,10282,-9,10284,10283,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.3724,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5778,10283,10284,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.0762897,6.2478538,22,7,82.858391,0,3,3,2021,8,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5109545,5.9534669,63.98,38.08,49.97,56.66,8.333333333333334,1,1,0,0,5,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5778,10284,10283,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.4558725,8.54214,0,21,-7,100.11237,0,3,2,2021,10,0,41,47,1,0,0,14.796664,14.796664,0,0,0,0,0,0,0,0,1,1,0,0,0,49.97,56.66,63.98,38.08,6.666666666666667,1,1,0,0,8,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5779,10285,-9,10284,10283,1,1,19,0,0,0,2,2,-9,0,4,7.3010125,7.2503848,0,0,0,-927.0401,0,2,2,2021,13,4,35,25,1,4,1,5.3542366,5.3542366,.05,.05,0,0,0,0,0,0,1,1,0,2.0093629,0,36.16,61.92,-9,-9,5,1,1,0,0,3,5,3,1,501,205890.31,-95267.445,0,0,0,0,732.37036 +4739,5780,10286,-9,10288,10287,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-891.52386,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10287,10288,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,8.8906946,9.0638676,0,13,3,-27.390074,0,2,2,2021,6,0,37,39,1,0,0,25.168371,25.168371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10288,10287,-9,-9,1,0,32,1,3,0,1,1,-9,0,4,7.5551147,7.4818635,0,13,-3,-48.220104,0,2,2,2021,7,0,20,21,1,0,0,11.186665,11.186665,.05,.05,0,0,0,0,0,0,1,1,0,2.9871023,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,10,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10289,-9,10288,10287,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.15613,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10290,-9,10288,10287,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-953.05017,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4740,5781,10291,10292,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.9029608,8.5025024,0,4,5,-4.2107105,-9,1,2,2021,10,0,62,0,1,1,0,13.442362,13.442362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,3,4,0,0,10,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4740,5781,10292,10291,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9721975,7.8995066,0,4,-5,63.762352,-9,-9,-9,2021,11,0,32,0,1,2,0,7.9355183,7.9355183,.05,.05,0,0,0,0,0,0,1,1,0,2.1460702,0,47,57,50,57,7,4,4,0,0,1,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4740,5781,10293,-9,10292,10291,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.9851,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4741,5782,10294,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2140303,8.1766796,0,0,0,-1032.9559,0,1,1,2021,12,0,35,35,1,0,0,11.423872,11.423872,.05,.05,0,0,0,0,0,0,0,0,0,4.4416914,0,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,1016,426036.59,420698.47,137331.11,0,0,0,2010.0939 +4742,5783,10295,-9,10297,10296,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.76758,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4742,5783,10296,10297,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.0265808,8.4453087,0,3,2,10.612636,-9,-9,-9,2021,18,5,40,0,1,5,0,8.8556719,8.8556719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.51,62.83,47.47,55.04,1.666666666666667,1,1,0,0,6,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4742,5783,10297,10296,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.4634609,8.7571821,0,3,-2,65.173599,0,-9,-9,2021,12,2,42,42,1,2,0,13.417458,13.417458,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.47,55.04,30.51,62.83,6.666666666666667,3,4,0,0,8,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4743,5784,10298,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,7.223165,7.2435632,0,0,-970.12451,0,-9,-9,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.231427,7.1640387,47.51,44.08,-9,-9,8,1,1,0,0,0,5,2,1,1020,-52280.77,-45034.074,0,0,0,0,1365.7012 +4744,5785,10299,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.9137321,7.6197791,0,0,-1129.9812,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1329236,8.0899248,57.21,42.51,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,2206,756409.13,340603.25,338478.47,0,0,0,1844.7275 +4745,5786,10300,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.6385236,5.4027243,0,0,-946.9657,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7563064,5.8182907,47.08,43.23,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,850,120575.13,75205.563,227450.77,0,0,0,725.26172 +4746,5787,10301,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7219954,7.4545856,0,0,-1089.8513,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9511528,7.1591644,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,301,786495.13,393934.66,116646.39,0,0,0,2169.6934 +4747,5788,10302,10305,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,0,0,0,18,-3,-43.671741,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,32.75,57.7,51.14,60.45,5,1,1,0,0,5,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10303,-9,10302,10305,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.34283,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10304,-9,10302,10305,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.2124,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10305,10302,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.2079124,8.2020617,0,19,3,-10.061349,0,2,2,2021,12,0,39,40,1,0,0,11.238695,11.238695,.05,.05,0,0,0,0,0,27,1,1,0,0,0,51.14,60.45,32.75,57.7,5,1,1,0,0,12,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4748,5789,10306,10307,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.097024,8.4950495,0,34,4,-29.045771,0,2,2,2021,6,0,35,34,1,0,0,10.28565,10.28565,0,0,.05,0,0,0,0,0,0,0,0,2.105335,0,62.66,52.4,53.32,43.34,8.333333333333334,1,1,0,0,15,10,4,1,361.5,340224.25,-17692.68,249782.81,0,18533.908,0,2517.9116 +4748,5789,10307,10306,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8099365,7.6921206,0,30,-4,-55.326328,0,-9,-9,2021,13,1,40,30,1,1,0,6.4525189,6.4525189,0,0,0,0,0,0,0,0,0,0,0,2.3415027,0,53.32,43.34,62.66,52.4,8.333333333333334,1,1,0,0,14,10,4,1,361.5,340224.25,-17692.68,249782.81,0,18533.908,0,2517.9116 +4749,5790,10308,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.5777893,8.8795929,6.6858244,0,0,-1078.1047,0,3,3,2021,6,0,21,25,1,0,0,36.626442,36.626442,.05,.05,0,0,0,0,0,0,1,1,0,2.9686325,6.8949203,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,2006,432071.88,129435.16,145915.31,0,0,0,4320.5107 +4750,5791,10309,10310,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.5689464,7.6952801,0,6,-3,54.221142,0,2,2,2021,6,0,18,18,1,0,0,12.93502,12.93502,0,0,0,0,0,0,0,14.5,1,1,0,0,0,64.55,36.47,13.91,43.87,8.333333333333334,1,1,0,0,9,1,2,1,385,134143.81,99404.172,124745.74,45075.652,0,0,1487.1335 +4750,5791,10310,10309,-9,-9,1,1,44,0,2,0,2,2,-9,1,2,0,5.6418962,5.1446099,21,3,96.634315,0,3,2,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,5.4712729,13.91,43.87,64.55,36.47,1.666666666666667,1,1,0,0,7,1,2,1,385,134143.81,99404.172,124745.74,45075.652,0,0,1487.1335 +4751,5792,10311,10312,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.1898603,5.6648645,31,6,-7.7816381,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4307632,6.1742992,57.73,54.53,43.65,26.18,8.333333333333334,1,1,0,0,0,7,2,1,618.5,239217.22,0,299823.06,0,0,0,1889.5701 +4751,5792,10312,10311,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,6.2595363,6.4374204,31,-6,-6.8874621,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,1.0979915,0,0,1,1,0,.90709233,6.2837749,43.65,26.18,57.73,54.53,10,1,1,0,0,0,7,2,1,618.5,239217.22,0,299823.06,0,0,0,1889.5701 +4752,5793,10313,10314,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.4275985,6.5688148,50,10,-46.146454,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5110908,59.89,42.51,52.34,49.07,8.333333333333334,1,1,0,0,0,7,4,1,780,1677404.8,315407.5,860519.31,0,25641.469,0,3111.0649 +4752,5793,10314,10313,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.4528065,8.3196259,50,-10,-122.96713,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.572247,8.1498718,52.34,49.07,59.89,42.51,8.333333333333334,1,1,0,0,11,7,4,1,780,1677404.8,315407.5,860519.31,0,25641.469,0,3111.0649 +4753,5794,10315,10316,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.2464066,9.3740425,0,7,0,35.549118,0,-9,-9,2021,10,0,45,40,1,0,0,35.750793,35.750793,.05,.05,0,0,0,0,0,74.5,0,0,0,0,0,47.3,53.21,41.88,30.96,8.333333333333334,1,1,0,0,12,12,5,0,1176.5,1661641.8,1401750,335849.44,40596.914,0,0,4408.3892 +4753,5794,10316,10315,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.8027601,7.6456676,0,7,0,15.736654,0,2,2,2021,20,8,28,27,1,8,0,9.0718384,9.0718384,0,0,0,0,0,0,0,74.5,0,0,0,0,0,41.88,30.96,47.3,53.21,6.666666666666667,1,1,0,0,10,12,5,0,1176.5,1661641.8,1401750,335849.44,40596.914,0,0,4408.3892 +4753,5795,10317,-9,10316,10315,1,1,24,0,0,0,2,2,-9,0,4,7.7960343,8.0077877,0,0,0,-1148.6117,-9,2,2,2021,10,0,38,0,1,1,1,8.1844912,8.1844912,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,0,1840,111356.32,38042.156,0,0,0,0,749.74072 +4754,5796,10318,10319,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.6054001,8.6620064,0,7,-19,-116.53756,0,2,2,2021,24,12,38,37,1,12,0,16.719147,16.719147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,52.21,54.2,57.49,3.333333333333333,1,1,0,0,9,1,5,1,307,383368.38,269552.5,103877.41,104980.11,13709.395,0,4613.8281 +4754,5796,10319,10318,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,9.3667164,9.1633158,0,7,19,-38.69812,0,2,2,2021,7,0,38,47,1,0,0,24.706722,24.706722,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,34.8,52.21,8.333333333333334,1,1,0,0,6,1,5,1,307,383368.38,269552.5,103877.41,104980.11,13709.395,0,4613.8281 +4755,5797,10320,10321,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-3,77.513916,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,56.91,49.54,19.45,28.04,5,1,1,0,0,0,9,2,0,1101.5,1250414.3,135744.56,539975.44,0,0,0,1844.6898 +4755,5797,10321,10320,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2907977,7.2182078,61,3,74.02523,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,0,13.951135,0,0,1,1,0,0,7.4339657,19.45,28.04,56.91,49.54,1.666666666666667,1,1,0,0,0,9,2,0,1101.5,1250414.3,135744.56,539975.44,0,0,0,1844.6898 +4756,5798,10322,10325,-9,-9,1,0,23,2,2,0,2,2,-9,0,5,7.7010217,7.6339788,0,4,-1,31.820808,0,-9,-9,2021,12,0,25,25,1,0,0,9.7595024,9.7595024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,42.12,61.5,10,1,1,0,0,4,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10323,-9,10322,10325,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.3869,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10324,-9,10322,10325,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.2893,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10325,10322,-9,-9,1,1,24,2,2,0,2,2,-9,0,4,8.452033,8.3677568,0,4,1,-26.340775,0,-9,-9,2021,12,0,38,36,1,0,0,13.362261,13.362261,.05,.05,0,0,0,0,0,0,1,1,0,3.0824206,0,42.12,61.5,57.63,56.14,5,1,1,0,0,8,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4757,5799,10326,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.781116,6.6483431,0,0,-991.72687,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3013053,7.0143485,64,38.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,449,186344.91,124081.45,135646.19,0,0,0,781.49207 +4758,5800,10327,-9,10331,10328,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.42505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10328,10331,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.706418,9.694191,0,9,3,-28.737106,0,3,3,2021,11,0,65,55,1,0,0,25.30954,25.30954,.05,.05,0,0,0,0,0,0,0,0,0,8.1480017,0,50.51,56.39,59.43,58.05,6.666666666666667,1,1,0,0,9,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10329,-9,10331,10328,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.20624,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10330,-9,10331,10328,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.77594,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10331,10328,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,9.0820713,8.8283119,0,9,-3,-77.187523,0,1,2,2021,9,0,42,35,1,0,0,24.878496,24.878496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,50.51,56.39,0,1,1,0,0,9,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4759,5801,10332,10333,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.2523947,7.4032049,54,3,227.36784,0,1,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9119828,7.4583478,59.53,56.44,58.3,42.18,10,1,1,0,0,0,10,2,1,875.5,722001,413512.13,195352.66,0,0,0,1837.918 +4759,5801,10333,10332,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,54,-3,-56.750866,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1367593,0,58.3,42.18,59.53,56.44,6.666666666666667,1,1,0,0,7,10,2,1,875.5,722001,413512.13,195352.66,0,0,0,1837.918 +4760,5802,10334,10335,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.3025017,8.1461496,21,-8,-.035820249,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0321541,7.9499445,54.79,55.86,56.77,52.22,8.333333333333334,1,1,0,0,8,12,4,1,299,934864.75,567111.94,144225.52,0,0,0,2592.502 +4760,5802,10335,10334,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2141805,7.0273166,21,8,89.658112,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4191957,6.9299703,56.77,52.22,54.79,55.86,10,1,1,0,0,0,12,4,1,299,934864.75,567111.94,144225.52,0,0,0,2592.502 +4761,5803,10336,10337,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4853258,8.2821426,0,2,-1,-62.934261,-9,-9,-9,2021,7,0,50,0,1,0,0,12.410807,12.410807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.1,47.5,43.9,57.01,5,1,1,0,0,4,4,5,1,1759,444772.69,109960.16,274859.47,186682.75,0,0,4469.1772 +4761,5803,10337,10336,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.5840359,8.3248844,0,2,1,-49.447281,0,-9,-9,2021,14,2,40,-9,1,2,0,16.338686,16.338686,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.9,57.01,55.1,47.5,6.666666666666667,1,1,0,0,11,4,5,1,1759,444772.69,109960.16,274859.47,186682.75,0,0,4469.1772 +4762,5804,10338,10339,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6726208,8.361702,0,4,2,-19.203762,-9,-9,-9,2021,9,0,60,0,1,1,0,10.487911,10.487911,.05,.05,0,0,0,0,0,0,0,0,0,4.0744243,0,54,54,55.09,55.87,8,1,1,0,0,1,9,4,1,282,677817,195587.92,418466.88,36265.984,0,0,2751.0049 +4762,5804,10339,10338,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,5.6868391,5.8387222,0,4,-2,.9626348,0,2,2,2021,8,0,10,10,1,0,0,3.1808789,3.1808789,.05,.05,0,0,0,0,0,0,0,0,0,4.7998018,0,55.09,55.87,54,54,8.333333333333334,1,1,0,0,3,9,4,1,282,677817,195587.92,418466.88,36265.984,0,0,2751.0049 +4763,5805,10340,-9,10341,10342,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.5803,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4763,5805,10341,10342,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,8.9257565,9.4178648,0,9,0,92.940536,0,2,2,2021,11,0,35,33,1,0,0,28.25304,28.25304,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.23,55.6,6.666666666666667,1,1,0,0,3,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4763,5805,10342,10341,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,0,0,0,9,0,-122.92393,0,2,2,2021,17,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,45.91,59.89,3.333333333333333,1,1,1,1,8,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4764,5806,10343,-9,10344,10345,1,1,17,0,0,1,2,0,0,0,4,0,3.4366484,3.499778,0,0,-1037.5061,-9,2,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0697851,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5806,10344,10345,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.8744555,8.8023567,0,26,-1,-11.633403,0,2,2,2021,5,0,42,47,1,0,0,19.227404,19.227404,.05,.05,0,0,0,0,0,0,0,0,0,2.90818,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5806,10345,10344,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.3698349,9.1888876,0,26,1,-80.334175,0,2,2,2021,7,0,55,60,1,0,0,21.802114,21.802114,.05,.05,0,0,0,0,0,0,0,0,0,6.8225684,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5807,10346,-9,10344,10345,1,0,22,0,0,0,1,1,1,0,4,8.383007,8.3133211,0,0,0,-1046.1804,-9,2,2,2021,6,0,40,0,1,0,1,11.005712,11.005712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,63.4,-9,-9,10,1,1,0,0,6,5,4,1,110,66558.547,-4856.751,0,0,6884.0132,0,1221.6245 +4765,5808,10347,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1467776,7.0127397,0,0,-911.07776,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2744765,7.288074,46.63,59.72,-9,-9,3.333333333333333,1,1,0,0,8,8,2,1,791,749496.44,254205.56,495322.03,0,0,0,1090.6719 +4766,5809,10348,10349,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,8,3,-64.822151,0,2,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.92,51.87,57.15,45.78,8.333333333333334,1,1,0,0,0,12,5,1,811.5,1105336.6,853721.19,136379.66,-3582.095,0,0,3287.6826 +4766,5809,10349,10348,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,9.1326799,8.9477577,0,8,-3,-21.087358,0,2,-9,2021,7,0,38,38,1,0,0,27.166771,27.166771,0,0,0,0,0,0,0,0,1,1,0,4.8465586,0,57.15,45.78,36.92,51.87,8.333333333333334,1,1,0,0,9,12,5,1,811.5,1105336.6,853721.19,136379.66,-3582.095,0,0,3287.6826 +4766,5810,10350,-9,10349,10348,1,0,19,0,0,0,2,2,-9,0,4,6.1787639,6.4342532,0,0,0,-946.27661,0,1,2,2021,12,0,12,0,1,2,1,5.1818943,5.1818943,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,12,2,1,317,125769.66,0,0,0,0,0,270.70105 +4767,5811,10351,-9,10354,10352,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8744,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10352,10354,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.45854,8.8722696,0,16,4,-19.298197,0,2,2,2021,18,6,49,51,1,6,0,11.566194,11.566194,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.43,64.75,51.77,58.57,6.666666666666667,1,1,0,0,8,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10353,-9,10354,10352,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.92554,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10354,10352,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.795361,7.6046891,0,16,-4,37.000137,0,2,2,2021,14,3,32,32,1,3,0,10.111007,10.111007,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,41.43,64.75,6.666666666666667,1,1,0,0,9,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4768,5812,10355,-9,10356,10357,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.8371,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4768,5812,10356,10357,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.6585608,7.6681981,0,9,-1,-9.532773,0,2,3,2021,19,8,25,24,1,8,0,13.077744,13.077744,0,0,0,0,0,0,0,0,1,1,0,0,0,32.84,60.85,33.46,57.87,3.333333333333333,1,1,0,0,7,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4768,5812,10357,10356,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.5780878,9.0632162,0,9,1,44.259827,0,2,2,2021,12,1,35,40,1,1,0,23.419333,23.419333,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,33.46,57.87,32.84,60.85,6.666666666666667,2,3,0,0,10,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4769,5813,10358,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.4192052,7.783843,0,0,-991.12988,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4672332,7.8993244,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,1333,733064.75,264029.78,227489.08,0,0,0,1524.0038 +4770,5814,10359,10360,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.6214323,7.2099571,24,-2,62.608143,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5600615,7.4954886,57.06,57.76,58.62,52.91,10,1,1,0,0,13,11,4,1,1078,1628828.9,593069.44,192774.59,0,0,0,2995.281 +4770,5814,10360,10359,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,8.416502,8.2322206,12,2,83.434425,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7850971,58.62,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,11,4,1,1078,1628828.9,593069.44,192774.59,0,0,0,2995.281 +4771,5815,10361,10362,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.291441,7.2273831,46,2,80.807816,0,2,2,2021,12,1,0,0,4,1,0,0,0,.05,.05,.05,1,0,16.040258,0,0,1,1,0,6.8963552,7.6977234,47,37,45.73,50.31,6.666666666666667,1,1,0,0,2,9,3,1,495,1282388.8,438717,529354.81,0,0,0,3597.6221 +4771,5815,10362,10361,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.3604779,7.6823626,46,-2,63.565861,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6625776,7.3684134,45.73,50.31,47,37,8.333333333333334,1,1,0,0,0,9,3,1,495,1282388.8,438717,529354.81,0,0,0,3597.6221 +4772,5816,10363,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9513764,7.8245592,0,0,0,-952.42163,0,1,1,2021,8,0,40,30,1,0,0,9.7095633,9.7095633,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,311,27611.758,124549.32,0,0,0,0,366.07111 +4773,5817,10364,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.8260083,7.1827888,21,10,-13.250795,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5959315,43.42,62.33,52.26,47.71,10,1,1,0,0,11,9,5,1,510,25092.814,-83644.289,0,0,2309.5342,0,952.99005 +4773,5818,10365,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.0114555,9.0568686,0,21,-10,-31.699522,0,2,3,2021,12,0,37,74,1,0,0,30.089241,30.089241,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,43.42,62.33,6.666666666666667,1,1,0,0,11,9,5,1,1067,635332,481256.63,245678.27,70779.383,0,0,3523.2632 +4774,5819,10366,10367,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.073514,7.7715287,8,3,-30.507809,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7266943,7.7584796,60.65,35.48,52.23,55.6,6.666666666666667,1,1,0,0,0,5,4,1,631,1132726.9,648806.88,300551.59,0,0,0,3358.3296 +4774,5819,10367,10366,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.9473739,8.0400362,8,-3,14.958166,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9756421,7.9501691,52.23,55.6,60.65,35.48,8.333333333333334,1,1,0,0,0,5,4,1,631,1132726.9,648806.88,300551.59,0,0,0,3358.3296 +4775,5820,10368,10370,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.4719229,9.3055954,0,12,-3,39.193348,0,1,1,2021,15,6,64,30,1,6,0,17.60298,17.60298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.64,55.33,33.01,63.17,8.333333333333334,1,1,0,0,7,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10369,-9,10368,10370,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8547,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10370,10368,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.7049332,9.8087282,0,12,3,15.768071,0,2,2,2021,19,7,65,60,1,7,0,32.488377,32.488377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.01,63.17,36.64,55.33,3.333333333333333,1,1,0,0,9,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10371,-9,10368,10370,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.4716,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4776,5821,10372,10373,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.6785975,6.9353671,17,2,-64.039078,0,2,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.7774887,6.1946206,49.97,53.99,54.2,57.49,5,1,1,0,0,12,9,5,1,513.5,1544643.3,904188.81,252338.03,0,23028.129,0,3568.2371 +4776,5821,10373,10372,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.828352,9.3275251,7.8295622,17,-2,54.207947,0,3,3,2021,11,0,38,38,1,0,0,21.379189,21.379189,.05,.05,0,0,0,0,0,0,0,0,0,0,8.3614273,54.2,57.49,49.97,53.99,8.333333333333334,1,1,0,0,15,9,5,1,513.5,1544643.3,904188.81,252338.03,0,23028.129,0,3568.2371 +4777,5822,10374,-9,10376,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.9617,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4777,5822,10375,-9,10376,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.3004,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4777,5822,10376,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.7922835,7.4633517,0,0,0,-1028.4794,0,2,2,2021,11,0,18,0,1,2,0,15.470101,15.470101,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,3,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4778,5823,10377,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1148.7622,-9,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.41,25.55,-9,-9,1.666666666666667,2,3,0,0,1,7,1,0,1033,176283.67,0,0,0,0,0,1004.8518 +4779,5824,10378,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1592045,8.1465302,0,0,-945.74988,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5897307,8.0014601,55.76,44.76,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,972,421567.84,44091.195,121429.4,0,0,0,3805.3235 +4780,5825,10379,10380,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4271793,8.2629166,0,6,0,7.8771524,0,-9,-9,2021,12,0,36,38,1,0,0,15.418584,15.418584,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,59.46,46.99,6.666666666666667,1,1,0,0,12,5,4,1,661.5,376283.47,277427,112329.64,0,0,0,2196.2141 +4780,5825,10380,10379,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.1315074,6.718739,0,6,0,-59.332546,-9,3,2,2021,12,0,40,0,1,0,0,3.6632879,3.6632879,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.46,46.99,50,54,5,1,1,0,0,12,5,4,1,661.5,376283.47,277427,112329.64,0,0,0,2196.2141 +4781,5826,10381,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.0869279,7.35289,0,0,-878.20709,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1274309,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,227,127723.23,164868.16,0,0,0,0,1000.6268 +4782,5827,10382,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.1973825,7.3466277,0,0,-1054.7399,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.65176338,7.1867962,49.09,33.36,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,864,394509.16,213498.42,216674.34,0,0,0,1190.6649 +4783,5828,10383,10384,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,9.4627695,9.3765554,0,7,-2,1.62325,0,2,2,2021,10,0,42,37,1,0,0,26.713936,26.713936,.05,.05,0,0,0,0,0,0,1,1,0,1.4798843,0,38.94,60.48,55.17,38.37,8.333333333333334,1,1,0,0,11,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4783,5828,10384,10383,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.6042981,7.9545803,0,7,2,-28.758919,0,-9,-9,2021,13,3,21,19,1,3,0,10.430831,10.430831,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.17,38.37,38.94,60.48,8.333333333333334,1,1,0,0,7,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4783,5828,10385,-9,10384,10383,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.2674,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4784,5829,10386,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2990303,8.5163803,0,0,-1165.0138,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1218157,8.6919746,52.32,44.73,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,275,1486962,812172.63,482304.97,0,0,0,3105.8245 +4785,5830,10387,10388,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.8420706,6.8858075,8,-10,73.77356,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.5513325,6.8390341,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,10,2,2,1,596.5,509759.13,155343.44,99513,0,0,0,2020.5652 +4785,5830,10388,10387,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,34,10,49.229954,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3332977,0,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,596.5,509759.13,155343.44,99513,0,0,0,2020.5652 +4785,5831,10389,-9,10387,10388,1,0,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1073.7159,0,1,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.25,51.7,-9,-9,10,1,1,0,0,0,2,1,1,1134,-83813.953,0,0,0,0,0,1835.8286 +4786,5832,10390,10391,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.6140127,5.5542235,54,-2,-119.41776,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,21.937073,0,0,1,1,0,3.863821,5.7140627,60.87,42.1,48.28,60.18,10,1,1,0,0,0,10,3,1,893.5,1976510.3,761086.13,706336.19,0,0,0,2514.4861 +4786,5832,10391,10390,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.9404364,7.8042064,54,2,98.941887,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1863904,7.8554673,48.28,60.18,60.87,42.1,8.333333333333334,1,1,0,0,0,10,3,1,893.5,1976510.3,761086.13,706336.19,0,0,0,2514.4861 +4787,5833,10392,10393,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7431922,8.0928669,55,-1,-55.306957,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9688754,8.0747967,57.16,56.15,64.75,30.9,10,1,1,0,0,0,4,4,1,1005.5,2183286.5,686453.75,483854.63,0,0,0,3575.6821 +4787,5833,10393,10392,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.6284547,7.7223625,55,1,-84.021194,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9000783,64.75,30.9,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,1005.5,2183286.5,686453.75,483854.63,0,0,0,3575.6821 +4788,5834,10394,10395,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7706585,8.7564821,0,5,5,14.577723,0,-9,-9,2021,10,0,42,42,1,0,0,21.894716,21.894716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.69,61.75,8.333333333333334,1,1,0,0,10,4,5,1,659,315671.06,167518.11,0,0,0,0,3684.9077 +4788,5834,10395,10394,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8608456,8.6655741,0,5,-5,86.056702,0,3,3,2021,11,0,32,32,1,0,0,20.120621,20.120621,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,659,315671.06,167518.11,0,0,0,0,3684.9077 +4789,5835,10396,-9,10397,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.51398,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,170,255241.7,-6449.5342,191444.78,0,0,0,1603.5706 +4789,5835,10397,-9,-9,-9,1,0,43,0,1,0,1,1,-9,1,4,0,6.7810068,6.1782136,0,0,-1131.3669,0,3,3,2021,13,5,0,24,3,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9833131,0,21.93,63.94,-9,-9,8.333333333333334,1,1,1,0,8,10,2,0,170,255241.7,-6449.5342,191444.78,0,0,0,1603.5706 +4790,5836,10398,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.1907,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7074366,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,10,1,1,1993,476866.75,0,160925.25,0,0,295.20453,952.87244 +4791,5837,10399,10400,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4335027,6.3267493,62,-3,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3239388,64.58,30.92,58.34,42.51,8.333333333333334,2,3,0,0,0,7,2,1,887,1052351.4,453011.63,439120.25,0,0,0,2084.8179 +4791,5837,10400,10399,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.2697892,6.4595127,62,3,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4175034,58.34,42.51,64.58,30.92,8.333333333333334,2,3,0,0,0,7,2,1,887,1052351.4,453011.63,439120.25,0,0,0,2084.8179 +4792,5838,10401,10403,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.9079494,8.0831823,0,17,4,-56.987484,-9,3,2,2021,13,1,24,0,1,1,0,10.649082,10.649082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.03,52.5,28.72,46.89,3.333333333333333,2,3,0,0,12,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10402,-9,10403,10401,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.4984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10403,10401,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,17,-4,19.895624,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.72,46.89,37.03,52.5,5,2,3,0,0,4,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10404,-9,10403,10401,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.96814,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4793,5839,10405,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.7091408,7.8263717,0,0,0,-1065.4513,0,3,3,2021,18,6,38,62,1,6,0,5.8848581,5.8848581,.05,.05,0,0,0,0,0,2,1,1,0,0,0,31.47,51.2,-9,-9,3.333333333333333,1,1,0,0,13,12,3,1,558,-39464.027,56083.961,0,0,0,0,622.04327 +4794,5840,10406,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,7.23597,7.7095928,0,0,-985.43121,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,1.001744,3.4835715,21.595453,0,1,1,0,7.1470556,7.4260974,45.33,23.72,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,351,413579.63,139790.13,221223.14,0,0,0,2367.2271 +4794,5841,10407,-9,10406,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.8589,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.9282179,0,53.71,44.13,-9,-9,5,1,1,0,0,4,6,1,1,629,-109871.16,0,0,0,0,1197.0814,332.16562 +4795,5842,10408,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.7254634,4.7445021,0,0,-969.37341,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,6.107513,3.9784195,42.484222,0,1,1,0,0,4.8146935,58.13,23.79,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1844,106491.59,-384.97757,0,0,0,0,1465.7184 +4796,5843,10409,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4091606,8.0236931,0,0,0,-1075.7115,0,2,2,2021,13,2,32,30,1,2,0,13.711483,13.711483,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,53.82,45.47,-9,-9,5,1,1,0,0,12,11,4,1,74,194936.03,37863.566,62913.004,0,0,0,1186.6797 +4796,5844,10410,-9,10409,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8235011,7.6700406,0,0,0,-1052.8682,-9,2,-9,2021,12,0,27,0,1,0,1,9.4471464,9.4471464,0,0,0,0,0,0,0,2,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,543,-88299.258,0,0,0,0,1436.6089,-4.5455608 +4796,5845,10411,-9,10409,-9,1,1,29,0,0,0,2,2,-9,0,4,7.4726572,7.8598657,0,0,0,-1043.8724,0,2,-9,2021,19,7,40,35,1,7,1,7.4925456,7.4925456,0,0,0,0,0,0,0,2,0,0,0,0,0,35.85,51.13,-9,-9,6.666666666666667,1,1,0,0,13,11,3,1,1138,-155571.05,0,0,0,0,0,395.75668 +4796,5846,10412,-9,10409,-9,1,0,26,0,0,0,2,2,-9,0,3,7.5213928,7.1592383,0,0,0,-930.05286,0,2,-9,2021,14,2,47,25,1,2,1,3.9484086,3.9484086,0,0,0,0,0,0,0,2,0,0,0,0,0,40.32,53.3,-9,-9,3.333333333333333,1,1,0,0,5,11,3,1,18,40916.723,-50416.148,0,0,0,0,455.77563 +4797,5847,10413,10414,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9802861,5.9179015,10,-1,-30.665358,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5364347,5.8059406,57.33,53.46,51.88,41.51,8.333333333333334,1,1,0,0,0,2,2,1,462.5,354134.16,84394.969,208960.13,0,0,0,1599.4845 +4797,5847,10414,10413,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.7534966,5.5061669,10,1,10.620539,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6284423,5.5449581,51.88,41.51,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,462.5,354134.16,84394.969,208960.13,0,0,0,1599.4845 +4798,5848,10415,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.3775887,6.964129,0,0,-937.16553,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.1719928,7.0194888,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,155,313886.38,234220.67,0,0,0,0,553.74188 +4799,5849,10416,10417,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.1444254,7.9458165,0,32,-7,37.773731,0,2,2,2021,7,0,30,40,1,0,0,14.34174,14.34174,0,0,0,0,0,0,0,0,0,0,0,6.9077229,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,882.5,854517.75,607824.5,330483.75,18049.037,0,0,5961.6152 +4799,5849,10417,10416,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.6686516,9.0231361,10,7,86.04673,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4092045,8.9500093,57.16,56.15,55.19,54.26,10,1,1,0,0,0,5,5,1,882.5,854517.75,607824.5,330483.75,18049.037,0,0,5961.6152 +4799,5850,10418,-9,10416,10417,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-857.01019,-9,1,1,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,200,0,0,0,0,0,0,-444.9693 +4799,5851,10419,-9,10416,10417,1,1,20,0,0,0,1,1,1,0,5,8.6893759,8.5543623,4.8616719,0,0,-887.84991,-9,1,1,2021,3,0,48,0,1,0,1,11.977987,11.977987,.05,.05,0,0,0,0,0,0,0,0,0,4.6190739,0,54.1,59.11,-9,-9,10,1,1,0,0,3,5,5,1,1899,71737.703,98886.078,0,0,0,0,2939.8496 +4800,5852,10420,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9964914,7.9929829,0,0,-1062.0635,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.6780725,62.4,48.33,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,161,242632.97,212290.86,104200.81,0,0,0,1801.5548 +4801,5853,10421,-9,10422,10423,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.33282,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4801,5853,10422,10423,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.3271656,7.3818865,0,6,2,-28.85947,0,3,3,2021,17,5,21,21,1,5,0,8.4742594,8.4742594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.06,58.99,57.06,57.76,6.666666666666667,1,1,0,0,6,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4801,5853,10423,10422,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,9.3892422,9.7713614,7.5124898,6,-2,30.006964,0,-9,-9,2021,6,0,42,42,1,0,0,29.693129,29.693129,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7175536,57.06,57.76,40.06,58.99,8.333333333333334,1,1,0,0,6,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4802,5854,10424,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.8322144,8.6439161,0,0,0,-1098.2432,0,2,3,2021,9,0,55,49,1,0,0,15.014449,15.014449,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,4585,-222146.05,17705.197,0,0,7934.5957,0,2458.5032 +4802,5855,10425,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.6679306,9.0004988,0,0,0,-901.29907,0,3,3,2021,9,1,42,45,1,1,0,19.095434,19.095434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.44,45.12,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,790,-147952.92,-125536.56,93057.414,0,4614.9165,0,2918.4316 +4803,5856,10426,10427,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.8036509,8.3450747,7,10,-53.168522,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1900778,58.15,52.91,62.39,56.71,10,1,1,0,0,9,5,4,1,2168.5,1426882.3,930928,328644.5,0,0,0,2682.3931 +4803,5856,10427,10426,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.4435511,7.3734021,0,7,-10,-42.352268,0,3,3,2021,5,0,23,24,1,0,0,8.2797728,8.2797728,0,0,0,0,0,0,0,2,0,0,0,3.8395152,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,2168.5,1426882.3,930928,328644.5,0,0,0,2682.3931 +4804,5857,10428,10429,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.7598977,8.1441956,0,1,4,17.641705,-9,-9,-9,2021,7,0,34,0,1,0,0,7.8704228,7.8704228,0,0,0,0,0,0,0,0,1,1,0,3.6027248,0,45.7,47.83,51.83,57.2,8.333333333333334,1,1,0,0,5,7,4,1,1774.5,116285.77,67690.547,95325.977,22211.748,0,0,1898.5222 +4804,5857,10429,10428,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,7.5257597,7.5472589,0,1,-4,-49.979431,-9,2,2,2021,4,0,35,0,1,0,0,5.7304115,5.7304115,0,0,0,0,0,0,0,0,1,1,0,2.7956722,0,51.83,57.2,45.7,47.83,8.333333333333334,1,1,0,0,9,7,4,1,1774.5,116285.77,67690.547,95325.977,22211.748,0,0,1898.5222 +4805,5858,10430,10431,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.2944269,8.5198193,0,19,2,-80.72049,0,2,2,2021,19,6,38,38,1,6,0,10.476109,10.476109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.18,59.32,27.55,51.07,1.666666666666667,1,1,0,0,14,6,5,1,306,346427.88,341821.94,310351.44,163336.88,6336.8999,1103.3856,3770.0454 +4805,5858,10431,10430,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.6396761,8.4003363,0,19,-2,-.28188539,0,2,2,2021,22,10,48,45,1,10,0,18.904016,18.904016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.55,51.07,32.18,59.32,5,1,1,0,0,14,6,5,1,306,346427.88,341821.94,310351.44,163336.88,6336.8999,1103.3856,3770.0454 +4806,5859,10432,-9,10435,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4717,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10433,-9,10435,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2892,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10434,10435,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.3830357,8.2444868,0,1,2,127.74599,-9,-9,-9,2021,10,0,50,0,1,1,0,10.348897,10.348897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,54.79,55.86,10,1,1,0,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10435,10434,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,7.9009318,8.2196245,0,1,-2,-164.41954,0,2,1,2021,9,0,38,46,1,0,0,9.2727976,9.2727976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,41.17,59.31,1.666666666666667,1,1,0,0,6,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4807,5860,10436,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7269306,8.724637,0,0,0,-963.61945,0,-9,-9,2021,8,1,38,38,1,1,0,20.014345,20.014345,.05,.05,0,0,0,0,0,0,1,1,0,5.7717633,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,1163,275570.56,37139.324,0,0,0,0,1886.1625 +4808,5861,10437,10438,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7524977,8.8213673,0,3,17,136.37386,0,3,3,2021,9,0,70,60,1,0,0,12.608836,12.608836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.69,50.51,65.2,47.14,8.333333333333334,1,1,0,0,8,10,5,1,541.5,801632.88,637358.25,0,0,0,0,2809.9653 +4808,5861,10438,10437,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.0182695,8.0742559,0,3,-17,51.416233,0,-9,-9,2021,1,0,63,0,1,0,0,4.8370004,4.8370004,.05,.05,0,0,0,0,0,0,1,1,0,.2352166,0,65.2,47.14,60.69,50.51,8.333333333333334,1,1,0,0,3,10,5,1,541.5,801632.88,637358.25,0,0,0,0,2809.9653 +4808,5862,10439,-9,10438,-9,1,1,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.3636,0,2,-9,2021,33,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.08,40.88,-9,-9,0,1,1,1,0,0,10,1,1,1070,2573.1321,0,0,0,0,0,1499.1677 +4809,5863,10440,10441,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.2695646,8.1840382,46,2,-97.289658,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4092388,8.0518303,45.46,52.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,4,1,1401.5,1436481,1139863.5,252968.31,0,0,0,3440.2485 +4809,5863,10441,10440,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4246011,7.2844324,46,-2,-42.987377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0236382,7.3468857,57.16,56.15,45.46,52.15,8.333333333333334,1,1,0,0,0,11,4,1,1401.5,1436481,1139863.5,252968.31,0,0,0,3440.2485 +4810,5864,10442,10443,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.3529029,6.3669896,57,0,-49.086254,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1155543,52,47,54.67,22.22,7,1,1,0,0,0,2,2,1,801.5,669187.69,264104.88,239746.84,10653.842,0,5456.7607,2291.4021 +4810,5864,10443,10442,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.8140836,6.6607585,57,0,69.663765,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,68.863701,0,0,1,1,0,.77325171,6.5821981,54.67,22.22,52,47,8.333333333333334,1,1,0,0,0,2,2,1,801.5,669187.69,264104.88,239746.84,10653.842,0,5456.7607,2291.4021 +4811,5865,10444,10445,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.1666555,8.2573843,0,2,-6,53.329449,0,-9,-9,2021,2,0,40,40,1,0,0,10.954932,10.954932,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.83,57.2,10,1,1,0,0,5,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4811,5865,10445,10444,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.8298349,8.6154346,0,2,6,25.449497,0,-9,-9,2021,6,0,45,45,1,0,0,18.153746,18.153746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,4,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4811,5865,10446,-9,10444,10445,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.55182,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4812,5866,10447,10448,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.5023065,7.3417759,0,1,4,60.04694,-9,-9,-9,2021,7,0,30,0,1,0,0,6.5900474,6.5900474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,45.96,51.96,8.333333333333334,1,1,0,0,0,2,4,0,480,176983.16,-271.68799,182600.72,101851.5,0,0,3494.2163 +4812,5866,10448,10447,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.6345787,8.6145334,0,1,-4,164.38008,-9,-9,-9,2021,11,3,52,0,1,3,0,10.615074,10.615074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.96,51.96,39.89,54.92,8.333333333333334,1,1,0,0,2,2,4,0,480,176983.16,-271.68799,182600.72,101851.5,0,0,3494.2163 +4812,5867,10449,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1058.9312,-9,-9,-9,2021,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.05,56.49,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1114,19163.582,0,0,0,0,0,0 +4812,5868,10450,10451,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.6906109,7.9176536,0,1,2,39.912846,-9,-9,-9,2021,25,11,38,0,1,11,0,7.1309614,7.1309614,0,0,0,0,0,0,0,0,0,0,0,0,0,37.3,58.69,12.12,67.62,3.333333333333333,1,1,0,0,0,2,3,0,2234.5,11968.146,0,0,0,0,0,904.92163 +4812,5868,10451,10450,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,1,-2,-38.233418,-9,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,67.62,37.3,58.69,3.333333333333333,1,1,1,0,0,2,3,0,2234.5,11968.146,0,0,0,0,0,904.92163 +4813,5869,10452,10453,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,9.0077887,8.3737135,49,1,-29.948393,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.421104,9.0468302,58.9,45.74,51.23,43.7,8.333333333333334,1,1,0,0,0,8,5,1,646.5,1651096.8,551388.63,847709.75,0,0,0,4842.8984 +4813,5869,10453,10452,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4543076,5.679697,49,-1,116.77827,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6263013,51.23,43.7,58.9,45.74,8.333333333333334,1,1,0,0,0,8,5,1,646.5,1651096.8,551388.63,847709.75,0,0,0,4842.8984 +4814,5870,10454,10455,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0687923,8.1263523,0,10,-4,-35.928246,-9,3,3,2021,10,1,45,0,1,1,0,8.561841,8.561841,0,0,0,0,0,0,0,0,0,0,0,1.2357082,0,44.17,55.16,44.44,55.46,8.333333333333334,1,1,0,0,13,8,4,1,654.5,589603.5,232910.16,308639.31,0,0,0,2408.8696 +4814,5870,10455,10454,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.4553223,7.3675094,0,10,4,31.440077,0,3,3,2021,12,0,30,35,1,0,0,6.3765059,6.3765059,0,0,0,0,0,0,0,0,0,0,0,1.6407007,0,44.44,55.46,44.17,55.16,5,1,1,0,0,13,8,4,1,654.5,589603.5,232910.16,308639.31,0,0,0,2408.8696 +4815,5871,10456,-9,10458,10459,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.5187,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10457,-9,10458,10459,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.9309,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10458,10459,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,0,0,0,21,-2,-17.759827,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.75,34.71,40.21,30.35,8.333333333333334,4,2,0,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10459,10458,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,7.7288108,7.5310402,0,7,2,109.23826,0,2,2,2021,18,7,35,45,1,7,0,7.8844337,7.8844337,0,0,0,0,0,0,0,0,1,1,0,0,0,40.21,30.35,42.75,34.71,1.666666666666667,2,3,0,0,9,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5872,10460,-9,10458,10459,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-989.12964,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,54.38,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,463,80763.766,0,0,0,0,0,0 +4816,5873,10461,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.5159574,6.7811165,0,0,-1001.3938,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6167049,57.06,57.76,-9,-9,10,1,1,0,0,3,2,2,1,279,379897.34,54957.535,325058.78,0,0,2279.9675,694.7066 +4817,5874,10462,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.2817783,7.3626566,0,0,0,-1021.6522,0,2,-9,2021,7,0,22,27,1,0,0,7.2088089,7.2088089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4817,5874,10463,-9,10462,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.7937,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,.05563641,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4817,5874,10464,-9,10462,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.1804,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4818,5875,10465,10466,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1807413,6.3475142,52,2,17.689903,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1170282,6.7445092,52.88,51.14,58.32,50.22,6.666666666666667,1,1,0,0,3,6,2,1,1814,318572.41,68729.578,217141.91,0,0,0,1327.4834 +4818,5875,10466,10465,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.0845098,4.1146641,52,-2,42.139244,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8037536,4.2447286,58.32,50.22,52.88,51.14,0,1,1,0,0,6,6,2,1,1814,318572.41,68729.578,217141.91,0,0,0,1327.4834 +4819,5876,10467,10468,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.3639741,7.2286973,0,11,3,145.73993,-9,2,2,2021,8,0,50,0,1,0,0,4.018146,4.018146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.53,56.44,6.666666666666667,1,1,0,0,11,12,5,0,1084.5,1119807.5,855027.38,297669.28,780.04492,0,0,3666.4524 +4819,5876,10468,10467,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.9431581,9.1807394,0,11,-3,40.290089,0,2,2,2021,8,1,45,105,1,1,0,22.239634,22.239634,0,0,0,0,0,0,0,0,0,0,0,2.4937825,0,59.53,56.44,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,0,1084.5,1119807.5,855027.38,297669.28,780.04492,0,0,3666.4524 +4820,5877,10469,10470,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,8.0499763,8.265707,10,6,106.76457,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4542699,0,57.31,45.44,62.25,48.33,8.333333333333334,1,1,0,0,6,10,3,1,560,799331.81,530071.63,207342.78,0,0,0,2307.0654 +4820,5877,10470,10469,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,0,0,0,10,-6,-65.709473,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9533753,0,62.25,48.33,57.31,45.44,8.333333333333334,1,1,0,0,6,10,3,1,560,799331.81,530071.63,207342.78,0,0,0,2307.0654 +4821,5878,10471,10472,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,36,6,0,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,3.6095452,0,0,1,1,0,0,0,40.35,29.91,42.1,37.58,5,1,1,0,0,0,11,1,1,546.5,-98254.977,0,0,0,0,0,650.61499 +4821,5878,10472,10471,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-6,0,0,3,3,2021,28,12,0,30,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,37.58,40.35,29.91,5,1,1,1,0,13,11,1,1,546.5,-98254.977,0,0,0,0,0,650.61499 +4822,5879,10473,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1049.5535,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0493555,0,49.56,50.07,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,803,-95999.859,0,0,0,0,0,6603.6855 +4823,5880,10474,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9019141,7.8251448,0,0,0,-880.78723,-9,3,3,2021,20,8,39,0,1,8,0,7.1991057,7.1991057,0,0,0,0,0,0,0,0,1,1,0,0,0,29.57,58.13,-9,-9,5,1,1,0,0,9,6,3,1,609,-75236.367,0,0,0,8423.2695,0,1136.7603 +4824,5881,10475,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3149176,6.7620254,0,0,-1126.1334,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1771917,0,0,1,1,0,0,6.1744318,46.44,29.03,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,208,262557.78,152221.25,115845.87,0,0,0,444.0144 +4825,5882,10476,10478,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.159317,8.4887991,0,8,-2,6.4347992,0,2,2,2021,11,1,35,41,1,1,0,16.22636,16.22636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,43.37,57.28,8.333333333333334,1,1,0,0,8,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10477,-9,10478,10476,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.8417,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10478,10476,-9,-9,1,0,35,2,2,0,2,2,-9,0,3,7.5103102,7.5867982,0,8,2,40.952648,0,1,2,2021,14,2,24,22,1,2,0,8.1946287,8.1946287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,43.54,59.6,8.333333333333334,1,1,0,0,9,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10479,-9,10478,10476,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.3437,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4826,5883,10480,10481,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.5194387,7.5586109,0,32,2,-115.77847,0,-9,-9,2021,12,0,35,38,1,0,0,6.5077829,6.5077829,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,11,9,5,0,102,616051.13,572221.38,0,0,-1073.2852,1095.9487,2584.0676 +4826,5883,10481,10480,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6719322,8.6820555,0,32,-2,110.30958,0,3,2,2021,10,0,40,46,1,0,0,15.563569,15.563569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,10,9,5,0,102,616051.13,572221.38,0,0,-1073.2852,1095.9487,2584.0676 +4826,5884,10482,-9,10480,10481,1,1,25,0,0,0,2,2,-9,0,4,8.3756456,8.4901285,0,0,0,-955.58081,0,2,2,2021,12,0,35,39,1,0,1,11.285562,11.285562,.05,.05,0,0,0,0,0,0,0,0,0,.64145762,0,49.52,55.68,-9,-9,5,1,1,0,0,10,9,5,0,401,138378.14,191745.03,0,0,0,0,1972.7384 +4827,5885,10483,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,7.9747181,8.0963211,0,0,0,-976.76727,0,2,1,2021,10,0,33,48,1,0,0,10.107437,10.107437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.54,58.94,-9,-9,1.666666666666667,1,1,0,0,5,12,4,1,1227,29943.713,45145.895,106964.13,99485.195,0,2930.2415,63.811066 +4828,5886,10484,10485,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,10,-7,41.4118,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5013337,0,39.75,54.92,33.18,49.96,8.333333333333334,1,1,0,0,2,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10485,10484,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.3017883,9.2510395,0,10,7,-83.837288,0,2,3,2021,11,0,98,53,1,0,0,8.4943962,8.4943962,.05,.05,0,0,0,0,0,0,1,1,0,4.5335279,0,33.18,49.96,39.75,54.92,5,1,1,0,0,11,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10486,-9,10484,10485,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8965,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10487,-9,10484,10485,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.11133,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4829,5887,10488,10489,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,0,0,9,6,-83.671669,0,3,3,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.35,43.93,57.16,56.15,3.333333333333333,1,1,1,1,1,13,3,1,583.5,534932.25,411291.47,183470.81,0,9460.3145,0,1307.5808 +4829,5887,10489,10488,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1545134,8.0531197,0,9,-6,-24.115875,0,3,3,2021,11,0,38,38,1,0,0,9.1087017,9.1087017,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.35,43.93,8.333333333333334,1,1,0,0,10,13,3,1,583.5,534932.25,411291.47,183470.81,0,9460.3145,0,1307.5808 +4830,5888,10490,10491,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9379196,7.8168035,6,2,57.078018,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2468443,7.766993,47.07,56.64,43.36,44.85,8.333333333333334,1,1,0,0,1,4,3,1,609,759304.75,635039.5,190710.59,0,5162.5483,2282.7883,3444.5601 +4830,5888,10491,10490,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-60.466259,0,2,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1864119,0,43.36,44.85,47.07,56.64,8.333333333333334,1,1,0,0,0,4,3,1,609,759304.75,635039.5,190710.59,0,5162.5483,2282.7883,3444.5601 +4830,5889,10492,-9,10491,10490,1,1,32,0,0,0,2,2,-9,0,5,8.0090551,7.7744465,0,0,0,-965.17932,0,2,1,2021,6,0,35,15,1,0,0,9.7214718,9.7214718,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,5,1,1,0,0,4,4,3,1,1363,75856.758,18325.211,0,0,0,0,1384.0831 +4831,5890,10493,-9,10495,10494,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8504,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10494,10495,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,8.4519424,8.2494364,0,25,2,22.836765,0,2,2,2021,7,0,48,48,1,0,0,9.0610104,9.0610104,0,0,.05,0,0,0,0,0,1,1,0,6.595108,0,49.25,61.25,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10495,10494,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.4908571,8.7058611,0,25,-2,-92.933609,0,2,1,2021,8,0,27,27,1,0,0,29.058355,29.058355,0,0,.05,0,0,0,0,0,1,1,0,5.1887035,0,57.06,57.76,49.25,61.25,8.333333333333334,1,1,0,0,8,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10496,-9,10495,10494,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.9543,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4832,5891,10497,10498,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.7702146,8.029439,8,0,145.26627,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.3040013,8.0738497,58.32,50.22,55.36,51.57,8.333333333333334,1,1,0,0,5,7,5,0,344.5,3190862,2714181.5,502999.94,95893.453,10260.475,17202.891,4507.3076 +4832,5891,10498,10497,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7392273,8.9935131,0,8,0,-97.539902,-9,2,2,2021,6,0,45,0,1,0,0,12.219941,12.219941,0,0,0,0,0,0,0,2,0,0,0,.72682744,0,55.36,51.57,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,344.5,3190862,2714181.5,502999.94,95893.453,10260.475,17202.891,4507.3076 +4833,5892,10499,10500,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5596123,8.5288782,0,34,-3,16.150396,0,2,2,2021,9,0,60,55,1,0,0,8.9907637,8.9907637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,53.61,52.37,3.333333333333333,1,1,0,0,13,7,5,1,1301.5,442761.53,310053.78,0,0,7147.4941,3564.146,2775.1753 +4833,5892,10500,10499,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.5303736,7.8321376,34,3,-25.486885,0,1,3,2021,9,0,0,17,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,3.2467976,7.6658397,53.61,52.37,49.58,55.59,8.333333333333334,1,1,1,0,11,7,5,1,1301.5,442761.53,310053.78,0,0,7147.4941,3564.146,2775.1753 +4834,5893,10501,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.6917915,8.7148762,8.3519564,0,0,-874.37573,0,2,1,2021,12,0,47,40,1,0,0,4.8944945,4.8944945,0,0,0,0,0,0,0,0,1,1,0,9.6231546,5.6793404,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1850,1382150.4,641099.19,531249.56,0,0,0,6858.2109 +4835,5894,10502,-9,10504,10503,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.01788,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4835,5894,10503,10504,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.5226316,8.658803,0,16,0,-89.885895,0,2,2,2021,9,0,40,43,1,0,0,19.125259,19.125259,0,0,.05,0,0,0,0,0,1,1,0,4.3045001,0,57.06,57.76,50.68,49.72,8.333333333333334,1,1,0,0,8,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4835,5894,10504,10503,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6569204,8.5218143,0,5,0,-61.396725,0,1,3,2021,11,1,50,50,1,1,0,15.631827,15.631827,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.68,49.72,57.06,57.76,8.333333333333334,1,1,0,0,6,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4836,5895,10505,10506,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.5826206,5.5753074,44,-4,-231.93219,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,9.2901335,0,0,1,1,0,3.0662768,5.5702991,63.77,25.77,60.05,26.59,8.333333333333334,1,1,0,0,0,9,2,1,629,26203.719,58898.055,0,0,2221.2466,0,1207.5026 +4836,5895,10506,10505,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.5505424,6.373889,44,4,-16.346298,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23583509,6.8087463,60.05,26.59,63.77,25.77,10,1,1,0,0,0,9,2,1,629,26203.719,58898.055,0,0,2221.2466,0,1207.5026 +4837,5896,10507,-9,10509,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.54517,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4837,5896,10508,-9,10509,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.557,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4837,5896,10509,-9,-9,-9,1,0,45,0,2,0,1,1,1,0,5,7.7121601,7.8578267,0,0,0,-1030.4952,-9,1,1,2021,4,0,24,0,1,0,0,10.676859,10.676859,.05,.05,0,0,0,0,0,2,1,1,0,2.5711389,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4838,5897,10510,-9,10512,10511,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0585,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10511,10512,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.1832323,9.1194439,0,11,3,141.35362,0,2,2,2021,12,0,60,47,1,0,0,21.7216,21.7216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,11,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10512,10511,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.5373859,9.5484896,0,11,-3,-10.143034,0,-9,-9,2021,11,0,40,45,1,0,0,30.093037,30.093037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,12,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10513,-9,10512,10511,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.895,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4839,5898,10514,10519,-9,-9,1,1,44,2,5,0,1,1,-9,0,2,7.8657355,8.2221508,0,4,3,-23.693296,0,3,2,2021,14,2,60,70,1,2,0,5.2082782,5.2082782,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,40.36,42.93,39.53,6.666666666666667,2,3,0,0,11,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10515,-9,10519,10514,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-991.51117,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10516,-9,10519,10514,1,0,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-938.62329,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10517,-9,10519,10514,1,0,3,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.4352,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10518,-9,10519,10514,1,0,13,2,5,1,3,0,-9,0,2,0,0,0,0,0,-963.56708,-9,-9,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10519,10514,-9,-9,1,0,41,2,5,0,2,2,-9,0,4,6.7225947,6.6806126,0,4,-3,63.708492,0,-9,-9,2021,10,0,36,-9,1,0,0,2.3195,2.3195,0,0,0,0,0,0,0,0,1,1,0,0,0,42.93,39.53,39.39,40.36,8.333333333333334,2,3,0,0,5,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10520,-9,10519,10514,1,0,11,2,5,1,3,0,-9,0,2,0,0,0,0,0,-971.97906,-9,-9,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4840,5899,10521,-9,10523,10522,1,1,17,0,0,1,2,0,-9,0,4,0,5.2953844,5.2771082,0,0,-915.10657,-9,1,3,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0556617,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5899,10522,10523,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0192356,8.2470865,0,27,5,9.4113951,0,3,2,2021,6,0,38,38,1,0,0,8.6808643,8.6808643,.05,.05,0,0,0,0,0,0,1,1,0,4.4833636,0,54.61,49.13,55.96,49.93,8.333333333333334,1,1,0,0,12,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5899,10523,10522,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.2596207,9.2993555,0,27,-5,-31.809109,0,2,3,2021,6,0,38,38,1,0,0,27.379751,27.379751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,54.61,49.13,8.333333333333334,1,1,0,0,11,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5900,10524,-9,10523,10522,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1027.1069,-9,1,3,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,46.98,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,353,44145.117,0,0,0,-518.14233,0,0 +4841,5901,10525,10526,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2533159,9.2679367,0,18,2,-53.981022,0,2,1,2021,8,0,60,50,1,0,0,18.445505,18.445505,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.94,58.01,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,0,2380,245378.03,174624.84,0,0,0,0,3569.4246 +4841,5901,10526,10525,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,28,-2,-67.200745,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.94,58.01,8.333333333333334,1,1,1,0,3,5,5,0,2380,245378.03,174624.84,0,0,0,0,3569.4246 +4842,5902,10527,10528,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.6985378,7.5824423,29,5,-35.08165,0,3,2,2021,11,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3176818,7.7430253,50.51,53.71,52.82,53.97,8.333333333333334,1,1,0,0,10,13,4,1,511.5,713510.88,789988.5,0,0,0,1409.9181,2055.897 +4842,5902,10528,10527,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2618895,8.4032698,0,29,-5,-30.360453,0,2,2,2021,12,0,37,37,1,0,0,10.070521,10.070521,0,0,0,0,0,0,0,0,0,0,0,.62018007,0,52.82,53.97,50.51,53.71,8.333333333333334,1,1,0,0,11,13,4,1,511.5,713510.88,789988.5,0,0,0,1409.9181,2055.897 +4843,5903,10529,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.5920401,8.3917265,5.8103037,0,0,-1011.0887,0,3,3,2021,8,0,50,50,1,0,0,9.3519106,9.3519106,.05,.05,0,0,0,0,0,0,1,1,0,5.3821864,0,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,124,87196.508,8548.4121,31512.846,16864.047,0,0,1826.2001 +4843,5904,10530,-9,10529,-9,1,1,23,0,1,0,3,3,-9,0,3,8.4928961,8.5541506,0,0,0,-952.0321,0,1,2,2021,4,0,41,51,1,0,1,14.060248,14.060248,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,292,239.62999,0,0,0,0,0,901.94025 +4844,5905,10531,-9,10533,10532,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.4292,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4844,5905,10532,10533,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.3854713,8.4319916,0,21,5,-23.541456,0,1,2,2021,10,0,50,40,1,0,0,10.302064,10.302064,.05,.05,0,0,0,0,0,0,1,1,0,3.5957589,0,46.67,55.57,58.15,52.91,8.333333333333334,1,1,0,0,8,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4844,5905,10533,10532,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.5030336,8.744091,0,18,-5,86.586197,0,2,2,2021,11,0,40,40,1,0,0,23.057354,23.057354,.05,.05,0,0,0,0,0,0,1,1,0,3.5727708,0,58.15,52.91,46.67,55.57,8.333333333333334,1,1,0,0,11,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4845,5906,10534,-9,10535,10536,1,1,21,0,0,0,2,2,-9,0,5,7.7207017,7.4282231,0,0,0,-982.57782,0,2,2,2021,8,0,40,37,1,0,1,6.9254932,6.9254932,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,1445,51307.082,0,0,0,0,0,716.05975 +4845,5907,10535,10536,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.8134007,7.7133079,0,9,-7,-140.56694,0,2,2,2021,9,0,28,28,1,0,0,7.7961636,7.7961636,0,0,0,0,0,0,0,0,0,0,0,0,0,54.81,47.49,44.53,56.37,8.333333333333334,1,1,0,0,10,11,4,1,796,-1571.4434,-92629.609,0,0,0,0,2514.7632 +4845,5907,10536,10535,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3870001,8.4444551,0,9,7,-38.020378,0,-9,-9,2021,11,0,118,55,1,0,0,4.1797624,4.1797624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.53,56.37,54.81,47.49,8.333333333333334,1,1,0,0,10,11,4,1,796,-1571.4434,-92629.609,0,0,0,0,2514.7632 +4846,5908,10537,10538,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,7.7934399,8.2457876,0,2,-2,26.97788,0,3,3,2021,8,0,37,7,1,0,0,9.2532721,9.2532721,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49,58,10,1,1,0,0,5,2,5,1,494.5,-76072.203,7203.5527,185856.75,183685.53,0,0,2949.0591 +4846,5908,10538,10537,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3275108,8.5196648,0,2,2,70.684784,0,-9,-9,2021,10,0,40,45,1,2,0,14.896632,14.896632,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49,58,51.73,58.82,7,1,1,0,0,1,2,5,1,494.5,-76072.203,7203.5527,185856.75,183685.53,0,0,2949.0591 +4847,5909,10539,10540,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.2221794,7.7741585,0,3,-8,30.321863,0,-9,-9,2021,10,2,37,44,1,2,0,11.550582,11.550582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.96,61.14,10,1,1,0,0,10,7,5,0,629,888178.56,607085.81,251073.19,49015.828,0,8152.4868,3257.5454 +4847,5909,10540,10539,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9304495,9.0503769,0,3,8,17.569595,0,-9,-9,2021,18,6,60,50,1,6,0,10.024148,10.024148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,57.16,56.15,5,1,1,0,0,8,7,5,0,629,888178.56,607085.81,251073.19,49015.828,0,8152.4868,3257.5454 +4848,5910,10541,10544,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.3174343,9.7207355,0,14,5,50.772934,0,1,1,2021,7,0,41,41,1,0,0,41.714569,41.714569,.05,.05,0,0,0,0,0,0,1,1,0,9.1279745,0,57.16,56.15,35.79,48.98,8.333333333333334,2,3,0,0,11,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10542,-9,10544,10541,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.3071,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10543,-9,10544,10541,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1853,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10544,10541,-9,-9,1,0,36,1,2,0,1,1,-9,0,2,0,0,0,14,-5,-66.639984,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.79,48.98,57.16,56.15,6.666666666666667,2,3,1,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4849,5911,10545,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,0,0,0,0,-958.59912,0,3,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,2,6,1,0,445,54135.035,0,0,0,0,0,1252.3312 +4850,5912,10546,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.5425549,8.0034838,0,0,0,-953.4104,0,-9,-9,2021,6,0,45,53,1,0,0,11.314027,11.314027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.63,37.05,-9,-9,8.333333333333334,1,1,0,0,14,12,5,1,528,7731.9614,57074.914,0,0,0,0,1909.6367 +4851,5913,10547,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,7.7706819,7.4324818,0,0,-871.75714,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5238705,52.27,58.55,-9,-9,10,1,1,0,0,0,11,3,0,1070,316195.53,299997.47,-36005.402,0,0,0,875.0271 +4852,5914,10548,10549,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.7373705,8.8393278,0,4,-3,6.0221281,0,2,2,2021,9,0,42,42,1,0,0,16.509045,16.509045,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.34,47.5,61.11,48.86,8.333333333333334,1,1,0,0,10,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10549,10548,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6753311,7.5731835,5.9546704,4,3,-19.298296,0,-9,-9,2021,10,1,20,25,1,1,0,10.174561,10.174561,.05,.05,0,0,0,0,0,2,1,1,0,5.7054067,0,61.11,48.86,49.34,47.5,10,1,1,0,0,4,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10550,-9,10549,10548,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.37329,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10551,-9,10549,10548,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.5811,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4853,5915,10552,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4277554,8.4317446,0,0,0,-959.14362,0,3,3,2021,11,1,37,37,1,1,0,14.19681,14.19681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1166,83966.594,50901.512,0,0,0,818.22412,1478.7855 +4853,5915,10553,-9,10552,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1059.4817,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1166,83966.594,50901.512,0,0,0,818.22412,1478.7855 +4853,5916,10554,-9,10552,-9,1,1,22,0,0,0,2,2,-9,0,3,8.0655499,8.1664486,0,0,0,-1014.9579,0,2,-9,2021,20,7,34,49,1,7,1,9.7732887,9.7732887,0,0,0,0,0,0,0,0,1,1,0,0,0,26.08,55.45,-9,-9,1.666666666666667,3,4,0,0,4,7,4,1,340,235439.09,0,0,0,0,1386.1151,1185.2903 +4854,5917,10555,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.2355213,7.3081532,0,0,-925.49506,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1973152,7.1975946,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,732,144391.27,112649.8,0,0,0,0,1294.8594 +4855,5918,10556,10557,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.201704,8.4770832,0,4,-2,-33.756371,0,-9,-9,2021,13,1,50,55,1,1,0,10.810671,10.810671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.69,66.59999999999999,32.47,46.29,5,1,1,0,0,12,11,5,1,589.5,186400.03,130400.53,175205.28,143720.63,2987.647,0,3695.2764 +4855,5918,10557,10556,-9,-9,1,1,33,0,0,0,3,3,-9,0,2,8.31178,8.1870928,0,4,2,-13.933138,0,2,-9,2021,15,4,50,50,1,4,0,10.136051,10.136051,.05,.05,0,0,0,0,0,0,0,0,0,3.2367105,0,32.47,46.29,14.69,66.59999999999999,6.666666666666667,1,1,0,0,10,11,5,1,589.5,186400.03,130400.53,175205.28,143720.63,2987.647,0,3695.2764 +4856,5919,10558,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,8.1009722,8.0671234,0,0,0,-878.12372,0,2,2,2021,6,0,82,40,1,0,0,3.9879062,3.9879062,.05,.05,0,0,0,0,0,0,1,1,0,5.0869117,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,1374,393995.56,-25720.602,141760.95,0,0,0,1358.4451 +4857,5920,10559,10560,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,12,-8,122.21237,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,55.71,57.16,56.15,5,1,1,0,0,7,12,2,1,776.5,127409.35,47725.234,0,0,-1926.0667,2699.7246,1427.9133 +4857,5920,10560,10559,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,5.5624342,5.2670112,12,8,-58.93322,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7565427,57.16,56.15,43.2,55.71,8.333333333333334,1,1,0,0,7,12,2,1,776.5,127409.35,47725.234,0,0,-1926.0667,2699.7246,1427.9133 +4858,5921,10561,-9,10564,10563,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.71381,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10562,-9,10564,10563,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0087,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10563,10564,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1400127,9.3058901,0,13,4,-23.808289,0,2,1,2021,11,0,37,40,1,0,0,26.46213,26.46213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,60.6,43.75,6.666666666666667,2,3,0,0,7,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10564,10563,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,13,-4,133.00478,0,3,1,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,43.75,54.79,55.86,8.333333333333334,2,3,0,0,1,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4859,5922,10565,10566,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.7217979,9.0675316,0,4,2,-37.094498,0,2,2,2021,22,10,38,37,1,10,0,14.890244,14.890244,.05,.05,0,0,0,0,0,0,1,0,1,0,0,32.38,61.1,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1319,2374975.5,2234457.5,235048.23,0,0,0,3745.2651 +4859,5922,10566,10565,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8072987,7.7319345,0,4,-2,25.278149,0,3,3,2021,6,0,30,30,1,0,0,6.4238386,6.4238386,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,32.38,61.1,10,1,1,0,0,8,12,5,1,1319,2374975.5,2234457.5,235048.23,0,0,0,3745.2651 +4859,5923,10567,-9,10566,10565,1,0,28,0,0,0,1,1,-9,0,5,8.3190174,8.0688601,0,0,0,-1091.3912,0,2,1,2021,10,0,46,0,1,0,1,10.639342,10.639342,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,295,-21042.766,0,0,0,0,0,1856.141 +4859,5924,10568,-9,10566,10565,1,0,23,0,0,0,1,1,-9,0,5,6.0044069,5.6880941,0,0,0,-1082.8942,0,3,1,2021,4,0,22,5,1,0,1,1.7495555,1.7495555,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,918,-168383.38,0,0,0,0,0,-110.45129 +4860,5925,10569,10570,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4250803,9.5624723,0,9,-2,-114.07509,0,-9,-9,2021,7,0,38,38,1,0,0,38.342621,38.342621,.05,.05,.05,0,0,0,0,0,0,0,0,5.2068143,0,55.19,54.26,37.4,44.13,8.333333333333334,1,1,0,0,10,12,5,1,798,671523.19,209324.69,291437.5,0,14198.217,0,5626.6943 +4860,5925,10570,10569,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,7.3664074,7.5078402,9,2,-39.23196,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7319663,7.3006425,37.4,44.13,55.19,54.26,8.333333333333334,1,1,0,0,9,12,5,1,798,671523.19,209324.69,291437.5,0,14198.217,0,5626.6943 +4861,5926,10571,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-985.92566,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.23,12.94,-9,-9,3.333333333333333,1,1,0,0,3,11,2,1,360,-137561.38,0,0,0,0,946.15326,1114.9106 +4862,5927,10572,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,4,0,7.8472371,7.8921719,0,0,-1080.7727,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0667138,7.5820947,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1311,650714.69,191508.91,571161.25,0,0,0,1705.7554 +4862,5928,10573,-9,-9,10572,1,0,58,0,0,0,2,2,-9,1,1,0,5.9980011,6.1963558,0,0,-962.03149,0,-9,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3106184,0,16.44,27.92,-9,-9,0,1,1,0,0,0,7,2,1,509,1493075.1,4207.8184,0,0,0,0,43.770004 +4863,5929,10574,-9,10575,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1038.7377,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,53.85,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,275,63519.145,78585.852,0,0,0,0,2025.905 +4863,5929,10575,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.2479877,7.7901673,6.9796839,0,0,-1100.1326,0,3,2,2021,8,0,14,18,1,0,0,14.564818,14.564818,.05,.05,.05,0,0,0,0,0,1,1,0,7.3507242,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,275,63519.145,78585.852,0,0,0,0,2025.905 +4864,5930,10576,10577,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,7,-3,87.544258,0,2,2,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.82,25.5,50.96,47.26,3.333333333333333,1,1,1,0,0,11,4,0,618,-96629.906,-18396.42,0,0,0,0,2433.0508 +4864,5930,10577,10576,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,9.0150518,8.8823833,0,7,3,-23.534395,0,2,3,2021,12,2,54,51,1,2,0,11.193484,11.193484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.96,47.26,35.82,25.5,3.333333333333333,1,1,0,0,9,11,4,0,618,-96629.906,-18396.42,0,0,0,0,2433.0508 +4864,5931,10578,-9,10576,10577,1,1,20,0,0,0,2,2,-9,0,3,8.3316545,8.2183695,0,0,0,-967.32849,0,2,3,2021,6,0,37,56,1,0,1,9.7304783,9.7304783,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,11,4,0,574,0,0,0,0,0,0,1672.4338 +4864,5932,10579,-9,10576,10577,1,0,18,0,0,0,2,2,-9,0,2,0,4.6585531,4.3318062,0,0,-982.67267,1,2,3,2021,28,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5880308,0,25.93,43.93,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,479,-171321.48,0,0,0,0,0,400.89267 +4865,5933,10580,10581,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.9036808,8.8302097,0,3,1,79.295738,0,3,3,2021,10,0,80,70,1,1,0,12.503134,12.503134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,40.55,41.06,7,1,1,0,0,11,13,5,1,473.5,229405.69,-5132.8799,101585.31,0,0,0,4564.0791 +4865,5933,10581,10580,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.1248026,7.2996516,3,-1,-49.120316,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2888265,40.55,41.06,50,49,6.666666666666667,1,1,0,0,0,13,5,1,473.5,229405.69,-5132.8799,101585.31,0,0,0,4564.0791 +4865,5934,10582,-9,10581,10580,1,1,23,0,0,0,2,2,-9,0,4,7.8549523,8.2143717,0,0,0,-1028.5332,0,2,2,2021,10,0,38,35,1,1,1,11.078559,11.078559,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,7,13,4,1,4589,-29869.025,-20510.715,0,0,0,0,272.51013 +4865,5935,10583,-9,10581,10580,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-929.63269,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,1,0,13,1,1,594,0,0,0,0,0,0,0 +4866,5936,10584,10585,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.8503509,8.0700788,0,3,8,5.502605,0,3,3,2021,20,8,55,53,1,8,0,9.1867695,9.1867695,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.35,29.55,46.98,59.35,3.333333333333333,1,1,0,0,10,10,4,0,554.5,911868.13,488655.44,334785.63,0,0,0,3200.8374 +4866,5936,10585,10584,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1594143,7.9736948,0,3,-8,-43.009991,0,-9,-9,2021,11,1,35,35,1,1,0,8.8726997,8.8726997,0,0,0,0,0,0,0,0,0,0,0,8.0624247,0,46.98,59.35,45.35,29.55,10,1,1,0,0,7,10,4,0,554.5,911868.13,488655.44,334785.63,0,0,0,3200.8374 +4867,5937,10586,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3838768,7.3343873,0,0,-886.98865,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3707643,7.7543898,55.68,46.02,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,1296,633924.44,269462.44,376467.34,0,0,0,1722.6533 +4868,5938,10587,10589,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3834429,8.2135725,0,16,-3,-68.737175,0,3,3,2021,4,0,47,47,1,0,0,12.25176,12.25176,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.54,41.38,47.84,49.53,8.333333333333334,2,3,0,0,9,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10588,-9,10587,10589,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-934.84827,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10589,10587,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.1161518,7.8343492,0,16,3,40.707516,0,3,3,2021,11,0,42,46,1,2,0,7.9235926,7.9235926,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.84,49.53,45.54,41.38,8.333333333333334,2,3,0,0,8,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10590,-9,10587,10589,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.49866,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4869,5939,10591,10592,10594,-9,1,0,49,0,0,0,2,2,-9,0,4,0,5.5616298,6.0285864,11,-5,-24.855669,0,2,2,2021,17,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4816136,0,41.29,56.37,28.77,55.6,3.333333333333333,1,1,0,0,13,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5939,10592,10591,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.5761967,9.0570288,0,11,5,-1.3905505,0,2,2,2021,17,6,53,93,1,6,0,20.332869,20.332869,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,28.77,55.6,41.29,56.37,8.333333333333334,1,1,0,0,14,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5939,10593,-9,10591,10592,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-946.56909,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,3.1915689,0,1,1,0,5.5168667,0,34.21,46.41,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5940,10594,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.3526425,7.2898898,0,0,-1094.2883,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9466543,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,201,223938.86,202863.66,0,0,0,0,1199.0347 +4870,5941,10595,10596,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,9.3164139,9.2567816,0,9,10,37.7999,0,3,3,2021,11,0,30,40,1,0,0,39.926418,39.926418,.05,.05,0,0,0,0,0,0,0,0,0,7.631392,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10596,10595,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.5207872,9.4105806,0,9,-10,10.797518,0,2,2,2021,8,0,39,38,1,0,0,36.993732,36.993732,0,0,0,0,0,0,0,0,0,0,0,2.0138621,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10597,-9,10596,10595,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.57935,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10598,-9,10596,10595,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1269.2069,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4871,5942,10599,10600,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.024869,8.7212629,0,24,-1,32.511116,0,2,2,2021,15,3,62,62,1,3,0,14.856018,14.856018,.05,.05,0,0,0,0,0,0,0,0,0,2.8929324,0,43.65,58.28,48.87,58.55,8.333333333333334,1,1,0,0,6,5,5,1,549.5,1315028.5,1024878,310170.69,31433.813,3913.022,0,5905.6309 +4871,5942,10600,10599,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0590096,8.7234287,0,24,1,-41.254364,0,2,3,2021,10,0,58,58,1,0,0,14.375367,14.375367,.05,.05,0,0,0,0,0,0,0,0,0,.55961227,0,48.87,58.55,43.65,58.28,6.666666666666667,1,1,0,0,9,5,5,1,549.5,1315028.5,1024878,310170.69,31433.813,3913.022,0,5905.6309 +4872,5943,10601,10602,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.487812,8.6949406,0,2,-7,-12.034548,0,-9,-9,2021,9,0,40,45,1,0,0,19.911224,19.911224,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,35.91,63.19,8.333333333333334,1,1,0,0,4,12,5,1,867.5,-48978.297,-44562.992,135412.97,98227.625,863.28406,0,4166.6704 +4872,5943,10602,10601,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7606058,8.6323757,0,2,7,34.02142,0,1,1,2021,12,1,38,38,1,1,0,17.226627,17.226627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,46.63,59.72,8.333333333333334,1,1,0,0,7,12,5,1,867.5,-48978.297,-44562.992,135412.97,98227.625,863.28406,0,4166.6704 +4873,5944,10603,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2543159,4.9082208,0,0,-961.77441,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5347981,5.0847759,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1132,176630.25,0,219907.78,0,0,0,1046.9038 +4874,5945,10604,10605,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,6.0611882,6.4072046,0,32,-3,106.73383,0,3,2,2021,12,0,8,8,1,0,0,5.6413722,5.6413722,0,0,0,0,0,0,0,118,1,1,0,0,0,46.32,35.27,57.33,53.46,5,1,1,0,0,11,6,4,1,759,-84644.828,0,0,0,0,4237.5615,3027.2383 +4874,5945,10605,10604,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4824915,8.9016314,5.4821,33,3,-84.530281,0,2,-9,2021,6,0,44,44,1,0,0,12.538741,12.538741,0,0,0,0,0,0,0,2,1,1,0,6.2385669,5.6933832,57.33,53.46,46.32,35.27,8.333333333333334,1,1,0,0,10,6,4,1,759,-84644.828,0,0,0,0,4237.5615,3027.2383 +4874,5946,10606,-9,10604,10605,1,1,23,0,0,0,2,2,-9,0,3,7.8098574,7.9296575,0,0,0,-1016.5574,0,2,2,2021,12,0,47,44,1,0,1,5.9646649,5.9646649,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.97,47.27,-9,-9,5,1,1,0,0,3,6,3,1,329,-21476.264,70789.508,0,0,0,0,803.98853 +4875,5947,10607,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1027.1151,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,48.62,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,687,-31271.242,0,0,0,0,0,-45.087315 +4876,5948,10608,10610,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4505167,9.0703573,0,8,0,-93.988014,0,1,1,2021,9,0,55,50,1,0,0,24.781303,24.781303,.05,.05,0,0,0,0,0,0,1,1,0,1.3922163,0,49.41,58.28,54.79,55.86,6.666666666666667,1,1,0,0,9,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10609,-9,10610,10608,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-793.00085,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10610,10608,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,8,0,94.282692,0,2,1,2021,9,0,0,15,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.81003505,0,54.79,55.86,49.41,58.28,8.333333333333334,1,1,0,0,9,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10611,-9,10610,10608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.09186,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4877,5949,10612,10613,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7002497,8.9639091,0,6,0,-.37048456,0,-9,-9,2021,6,0,40,50,1,0,0,16.201199,16.201199,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.55,49.25,8.333333333333334,1,1,0,0,7,8,5,1,1212,1195318.3,664809.44,607842.25,36905.273,0,0,5172.8311 +4877,5949,10613,10612,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7100306,9.076952,0,6,0,86.850586,0,-9,-9,2021,12,0,60,60,1,0,0,15.88788,15.88788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.55,49.25,57.33,53.46,5,1,1,0,0,15,8,5,1,1212,1195318.3,664809.44,607842.25,36905.273,0,0,5172.8311 +4878,5950,10614,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.413188,8.5634422,0,0,0,-1072.9611,0,1,2,2021,5,0,43,48,1,0,0,12.334311,12.334311,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,276,73738.18,0,0,0,0,0,1442.775 +4879,5951,10615,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5940003,6.884728,0,0,-1037.6497,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,4.0683169,0,0,1,1,0,0,6.2208061,45.48,31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1130,364588.72,33640.996,256369.92,0,0,0,988.73871 +4880,5952,10616,10617,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9819193,9.036809,0,24,4,90.439095,0,1,2,2021,8,0,37,37,1,0,0,25.333792,25.333792,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,1433.5,381129.94,289201.31,226793.86,136691.66,9647.4424,2148.8667,7475.9448 +4880,5952,10617,10616,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.1620388,9.2913485,5.4923739,24,-4,67.911644,0,2,1,2021,6,0,37,37,1,0,0,28.951887,28.951887,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1192513,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,12,2,5,1,1433.5,381129.94,289201.31,226793.86,136691.66,9647.4424,2148.8667,7475.9448 +4881,5953,10618,-9,10620,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.42834,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.6935406,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4881,5953,10619,-9,10620,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.2875,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4881,5953,10620,-9,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,6.9259915,6.6002121,0,0,0,-1081.8071,0,2,2,2021,14,2,16,16,1,2,0,7.1494884,7.1494884,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,47.82,-9,-9,5,2,3,0,0,2,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4882,5954,10621,10622,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2828178,8.1853695,0,35,-4,-101.42585,0,3,2,2021,6,0,70,70,1,0,0,5.4325671,5.4325671,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.48,58.55,10,1,1,0,0,8,4,5,1,929,423031.75,109786.58,520373.31,167743.45,0,3557.2388,3462.9385 +4882,5954,10622,10621,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7802582,8.7235432,0,35,4,-3.4085472,0,2,2,2021,10,1,40,40,1,1,0,17.180681,17.180681,.05,.05,0,0,0,0,0,0,0,0,0,1.6184973,0,45.48,58.55,54.37,54.8,10,1,1,0,0,12,4,5,1,929,423031.75,109786.58,520373.31,167743.45,0,3557.2388,3462.9385 +4883,5955,10623,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5252943,6.6827784,0,0,-926.50763,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,18.193438,0,0,1,1,0,0,6.407877,49.6,21.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1127,241721.83,-12643.571,110097.44,0,0,0,2238.6394 +4884,5956,10624,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.7151484,7.4645624,0,0,0,-1056.8705,0,-9,-9,2021,6,0,39,39,1,0,0,6.9345565,6.9345565,.05,.05,0,0,0,0,0,0,0,0,0,4.3712807,0,58.05,54.52,-9,-9,10,1,1,0,0,10,6,3,1,290,-180808.23,173394.2,0,0,0,0,164.19206 +4885,5957,10625,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1015.1842,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.29,25.79,-9,-9,8.333333333333334,4,5,0,1,0,5,1,1,906,162487.52,0,0,0,0,0,505.18787 +4886,5958,10626,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0987778,8.1546078,0,0,0,-1087.8073,0,2,2,2021,12,2,69,39,1,2,0,6.9999704,6.9999704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,0,850,-15682.315,-21206.76,0,0,0,0,1114.5061 +4887,5959,10627,-9,10630,10631,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1031.041,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10628,-9,10630,10631,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1036.2935,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10629,-9,10630,10631,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1025.4502,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10630,10631,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,0,0,11,-1,-66.637138,0,2,3,2021,12,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.6074972,0,45.88,51.75,51.4,46.95,8.333333333333334,1,1,0,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10631,10630,-9,-9,1,1,47,0,3,0,1,1,-9,0,2,9.1645708,9.5092554,0,11,1,47.764595,0,1,2,2021,10,3,39,41,1,3,0,26.106632,26.106632,.05,.05,0,0,0,0,0,2,1,1,0,5.4647226,0,51.4,46.95,45.88,51.75,8.333333333333334,1,1,0,0,14,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4888,5960,10632,10633,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.3800392,8.8457756,0,5,7,14.928413,0,-9,-9,2021,7,0,37,37,1,0,0,32.734562,32.734562,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,45.88,27.82,8.333333333333334,2,3,0,0,10,9,5,0,180.5,313079.19,184088.61,107273.7,56310.914,10559.058,2827.209,4082.0403 +4888,5960,10633,10632,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,7.5569277,7.4829993,0,5,-7,61.79694,0,-9,-9,2021,19,7,45,40,1,7,0,4.1809845,4.1809845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.88,27.82,61.68,50.1,3.333333333333333,2,3,0,0,3,9,5,0,180.5,313079.19,184088.61,107273.7,56310.914,10559.058,2827.209,4082.0403 +4889,5961,10634,10635,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,0,5.2486897,5.3680711,8,5,9.3189306,0,2,1,2021,15,3,0,45,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2245913,0,44.02,60.7,45.73,57.57,3.333333333333333,1,1,1,0,8,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4889,5961,10635,10634,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.6667442,8.72297,0,8,-5,-2.3899162,0,-9,-9,2021,18,7,38,38,1,7,0,16.669497,16.669497,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,44.02,60.7,5,1,1,0,0,7,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4889,5961,10636,-9,10635,10634,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1101.4207,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4890,5962,10637,10638,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.0508928,9.1414604,0,12,6,.3541635,-9,2,2,2021,11,0,40,0,1,0,0,29.758316,29.758316,.05,.05,0,0,0,0,0,0,1,1,0,2.4224019,0,54.1,59.11,54.35,57.84,8.333333333333334,1,1,0,0,10,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10638,10637,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.7202549,8.9254265,0,12,-6,-11.55127,-9,2,2,2021,7,0,23,0,1,0,0,24.994482,24.994482,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10639,-9,10638,10637,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4884,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10640,-9,10638,10637,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.73651,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4891,5963,10641,10642,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,9.4719124,9.2583218,4.1023469,6,-1,64.59668,0,3,3,2021,8,0,15,6,1,0,0,99.887009,99.887009,0,0,0,0,0,0,0,0,1,1,0,5.0571747,4.1527519,57.33,53.46,61.11,48.86,8.333333333333334,1,1,0,0,7,2,5,1,2348,1345969.5,287743.22,950411.94,0,0,0,8968.7246 +4891,5963,10642,10641,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.6822019,7.4963379,4.4313369,6,1,1.033326,0,3,3,2021,7,1,45,30,1,1,0,5.018261,5.018261,0,0,0,0,0,0,0,0,1,1,0,4.6405821,4.3462014,61.11,48.86,57.33,53.46,1.666666666666667,1,1,0,0,7,2,5,1,2348,1345969.5,287743.22,950411.94,0,0,0,8968.7246 +4892,5964,10643,10644,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.8089457,8.8507767,0,10,-1,89.266563,0,3,3,2021,11,1,44,43,1,1,0,17.533634,17.533634,0,0,.05,0,0,0,0,0,0,0,0,0,0,46.67,55.57,57.06,57.76,6.666666666666667,1,1,0,0,12,4,5,1,442,945931.63,311723.25,273395.25,0,0,0,3308.5674 +4892,5964,10644,10643,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.5512018,7.8114443,0,43,1,-76.20385,0,3,3,2021,7,0,6,24,1,0,0,40.525028,40.525028,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.67,55.57,8.333333333333334,1,1,0,0,12,4,5,1,442,945931.63,311723.25,273395.25,0,0,0,3308.5674 +4893,5965,10645,10648,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.2857022,7.3718491,0,4,-5,115.92987,0,-9,-9,2021,10,0,27,19,1,0,0,7.6847053,7.6847053,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,43.02,57.64,8.333333333333334,1,1,0,0,10,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10646,-9,10645,10648,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-885.05676,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10647,-9,10645,10648,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.32825,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10648,10645,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.1195869,7.2179546,0,4,5,45.623577,0,-9,-9,2021,11,3,20,17,1,3,0,7.2836132,7.2836132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.02,57.64,41.17,59.31,5,1,1,0,0,8,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4894,5966,10649,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,2.6955385,3.0581088,0,0,-868.02228,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.8920484,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,315,150518.06,0,0,0,0,0,294.7847 +4895,5967,10650,10651,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.7585564,9.0819492,0,2,-5,-80.195061,0,2,2,2021,10,1,45,40,1,1,0,21.74361,21.74361,.05,.05,0,0,0,0,0,0,0,0,0,6.7407417,0,47.26,38.33,49.04,55.86,8.333333333333334,1,1,0,0,9,9,5,1,694.5,695231,284123.44,397783.06,133220.17,0,4150.4321,4492.3301 +4895,5967,10651,10650,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.1181116,8.0608597,0,2,5,-16.91399,0,-9,-9,2021,9,1,40,38,1,1,0,9.8624506,9.8624506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,47.26,38.33,6.666666666666667,4,2,0,0,2,9,5,1,694.5,695231,284123.44,397783.06,133220.17,0,4150.4321,4492.3301 +4896,5968,10652,10653,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,3.0281341,3.2304115,46,1,46.431515,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,1.269779,0,18.342871,2,1,1,0,3.7942598,3.4662786,38.36,48.5,53.93,20.27,3.333333333333333,1,1,0,0,0,10,3,1,247,425113.16,0,435142,0,0,0,4590.5713 +4896,5968,10653,10652,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.9668131,7.6395917,45,-1,-11.671345,0,3,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,2.1226759,0,2,1,1,0,0,8.0663738,53.93,20.27,38.36,48.5,8.333333333333334,1,1,0,0,0,10,3,1,247,425113.16,0,435142,0,0,0,4590.5713 +4897,5969,10654,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.9288349,8.5097561,0,0,0,-1050.5831,0,2,2,2021,11,0,45,44,1,0,0,15.794976,15.794976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.1,56.62,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,580,20898.609,56020.93,0,0,0,0,2421.8914 +4898,5970,10655,-9,10657,10656,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2121,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10656,10657,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.2480564,8.0161581,0,6,-1,-65.02742,0,-9,-9,2021,6,0,55,65,1,0,0,7.4116488,7.4116488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.85,48.6,46,57,8.333333333333334,1,1,0,0,8,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10657,10656,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1485138,7.1869793,0,6,1,25.408396,0,3,2,2021,10,1,20,25,1,1,0,5.8033538,5.8033538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,57,53.85,48.6,8.333333333333334,1,1,0,0,10,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10658,-9,10657,10656,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4965,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4899,5971,10659,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1095.4762,0,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,36.99,-9,-9,3.333333333333333,1,1,0,1,11,4,1,1,1453,149019.7,0,0,0,0,0,0 +4900,5972,10660,10661,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,55,-6,-20.412859,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,33.86,57.16,56.15,10,1,1,0,0,0,9,4,1,372,2734750.3,541739.44,1765877,0,0,0,2946.2051 +4900,5972,10661,10660,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.4204931,8.0562325,7,6,10.488527,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5238221,8.4729843,57.16,56.15,54.9,33.86,8.333333333333334,1,1,0,0,0,9,4,1,372,2734750.3,541739.44,1765877,0,0,0,2946.2051 +4900,5973,10662,-9,10660,10661,1,1,45,0,0,0,2,2,-9,0,4,7.6111431,7.4068394,0,0,0,-1110.3319,-9,2,1,2021,18,6,39,0,1,6,0,6.675066,6.675066,0,0,0,0,0,0,0,0,1,1,0,3.1856177,0,39.73,57.61,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,665,-110735.16,0,0,0,0,0,1560.8157 +4901,5974,10663,10665,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,7.9236126,7.6587868,0,5,0,145.06822,0,2,1,2021,11,1,30,32,1,1,0,9.9057541,9.9057541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.17,50.73,47.74,55.03,6.666666666666667,1,1,0,0,7,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10664,-9,10663,10665,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.3183,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10665,10663,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.126915,9.012846,0,5,9,111.69017,0,-9,-9,2021,10,0,48,50,1,0,0,18.759705,18.759705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.74,55.03,43.17,50.73,6.666666666666667,1,1,0,0,7,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10666,-9,10663,10665,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8875,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4902,5975,10667,10668,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.9448347,7.2387609,6,1,-74.396141,0,-9,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9822631,36.88,42.04,54.61,51.04,8.333333333333334,1,1,0,0,8,6,3,1,716,1728248.3,1405971.3,386270.25,107471.64,0,0,2593.1338 +4902,5975,10668,10667,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,8.2916851,7.3269711,9,-1,24.09284,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7006865,7.775569,54.61,51.04,36.88,42.04,8.333333333333334,1,1,0,0,8,6,3,1,716,1728248.3,1405971.3,386270.25,107471.64,0,0,2593.1338 +4903,5976,10669,10670,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,6,0,0,0,3,3,2021,34,12,0,60,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.82,27.02,34.49,26.36,6.666666666666667,1,1,0,1,8,12,1,0,721.5,0,0,0,0,0,0,946.12866 +4903,5976,10670,10669,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,6,9,0,0,3,3,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,34.49,26.36,26.82,27.02,3.333333333333333,1,1,0,1,0,12,1,0,721.5,0,0,0,0,0,0,946.12866 +4904,5977,10671,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.0888658,6.7331009,0,0,0,-1138.7083,0,3,3,2021,12,1,18,12,1,1,0,6.4617352,6.4617352,0,0,0,0,0,0,0,0,1,0,1,2.4055374,0,52.4,52.91,-9,-9,5,1,1,0,1,14,10,2,1,202,294699.56,49795.68,-17771.252,17880.506,-488.45724,0,497.93719 +4904,5978,10672,-9,10671,-9,1,1,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-935.97736,0,3,-9,2021,25,9,0,32,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.1052345,0,26.88,57.97,-9,-9,1.666666666666667,1,1,1,0,6,10,1,1,5005,32825.27,0,0,0,0,0,-433.57898 +4904,5979,10673,-9,10671,-9,1,1,25,0,0,0,2,2,-9,0,3,7.6225758,7.9155955,0,0,0,-1045.2756,0,3,-9,2021,10,0,15,21,1,0,1,20.230167,20.230167,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,6,10,3,1,496,-22103.068,-4598.4839,0,0,0,0,1050.0986 +4905,5980,10674,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,4.7451,5.2455692,0,0,-995.38281,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9655218,5.174418,49.98,15.36,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,432,136713.2,-38289.949,0,0,0,0,2497.0923 +4906,5981,10675,10676,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.625536,8.2050819,0,6,-1,-4.6236935,0,-9,-9,2021,6,0,20,10,1,0,0,25.016916,25.016916,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,49.22,54.23,6.666666666666667,1,1,0,0,6,4,4,1,274,470024.31,278253.94,179675.91,0,0,0,2501.5991 +4906,5981,10676,10675,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.3417063,8.2848043,0,6,1,-27.874012,0,3,2,2021,7,0,38,38,1,0,0,10.549864,10.549864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.22,54.23,52,54.51,8.333333333333334,1,1,0,0,14,4,4,1,274,470024.31,278253.94,179675.91,0,0,0,2501.5991 +4907,5982,10677,-9,-9,10678,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1039.2612,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4907,5982,10678,10679,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5200129,9.6594591,5.9052334,7,-4,-119.81931,0,1,2,2021,4,0,40,40,1,0,0,47.492989,47.492989,.05,.05,0,0,0,0,0,42,1,1,0,6.4643188,0,57.24,52.21,37.43,17,10,1,1,0,0,8,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4907,5982,10679,10678,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.0873823,7.5415745,7,4,99.143753,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4065081,7.3460693,37.43,17,57.24,52.21,3.333333333333333,1,1,0,0,4,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4908,5983,10680,10681,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1819687,7.9922948,0,17,10,3.796859,0,2,2,2021,7,0,26,25,1,0,0,15.243251,15.243251,.05,.05,0,0,0,0,0,0,0,0,0,5.419971,0,52,54.51,54.1,59.11,8.333333333333334,1,1,0,0,12,10,5,1,614,-6905.6152,-40332.281,208394.34,119110.18,0,0,2844.9153 +4908,5983,10681,10680,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0639582,7.8004355,0,18,-10,58.886372,0,2,3,2021,11,0,80,80,1,0,0,5.2961249,5.2961249,.05,.05,0,0,0,0,0,0,0,0,0,3.2065983,0,54.1,59.11,52,54.51,8.333333333333334,1,1,0,0,13,10,5,1,614,-6905.6152,-40332.281,208394.34,119110.18,0,0,2844.9153 +4909,5984,10682,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2123518,8.25739,0,0,0,-990.34784,0,3,3,2021,10,0,40,40,1,0,0,7.5881386,7.5881386,.05,.05,0,0,0,0,0,0,0,0,0,4.3199797,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,2368,208295.31,240046.45,0,0,0,0,1626.0502 +4910,5985,10683,10684,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7911701,8.6966305,0,4,-1,-.39734679,0,2,2,2021,12,2,67,65,1,2,0,13.196301,13.196301,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,7,2,5,0,1760.5,215137.28,149624.09,191050.11,108502.78,24446.357,0,3455.8125 +4910,5985,10684,10683,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.0129223,7.7238278,0,4,1,-14.253799,0,-9,-9,2021,15,3,42,42,1,3,0,9.8435469,9.8435469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,5,1,1,0,0,9,2,5,0,1760.5,215137.28,149624.09,191050.11,108502.78,24446.357,0,3455.8125 +4911,5986,10685,10686,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,28,1,-133.8259,0,2,3,2021,7,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4186254,0,53.98,50.87,56.95,46.69,8.333333333333334,1,1,1,0,11,6,5,1,621,388410.44,326092.81,257581.84,94079.734,0,0,2594.5479 +4911,5986,10686,10685,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0381927,9.1330652,0,28,-1,63.574715,0,2,2,2021,6,0,37,52,1,0,0,21.605671,21.605671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.95,46.69,53.98,50.87,8.333333333333334,1,1,0,0,12,6,5,1,621,388410.44,326092.81,257581.84,94079.734,0,0,2594.5479 +4911,5987,10687,-9,10685,10686,1,0,22,0,0,0,2,2,-9,0,4,7.6652451,7.9354587,0,0,0,-900.35284,0,1,1,2021,8,2,45,30,1,2,1,5.257709,5.257709,0,0,0,0,0,0,0,0,0,0,0,0,0,51.7,43.64,-9,-9,6.666666666666667,1,1,0,0,5,6,3,1,635,-97471.313,0,0,0,0,0,790.97766 +4912,5988,10688,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.1807,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41073123,0,53,44,-9,-9,8,1,1,0,0,0,11,1,1,347,327832.16,97641.82,174178.47,0,0,0,1071.009 +4913,5989,10689,10690,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8160963,7.0199142,49,-3,-135.41579,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6278214,7.0663576,48.87,58.55,60.29,52.11,8.333333333333334,1,1,0,0,0,5,2,1,871,603315.19,236892.84,342515.38,0,0,0,1079.5918 +4913,5989,10690,10689,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,49,3,51.595917,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,48.87,58.55,8.333333333333334,1,1,0,0,0,5,2,1,871,603315.19,236892.84,342515.38,0,0,0,1079.5918 +4914,5990,10691,-9,10692,10694,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.9567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10692,10694,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,9.5077782,9.3137655,0,8,-2,-11.507128,0,2,2,2021,3,0,39,38,1,0,0,34.216408,34.216408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.9,56.66,10,1,1,0,0,9,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10693,-9,10692,10694,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.49072,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10694,10692,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.8574657,9.1700745,0,8,2,109.04772,0,-9,-9,2021,10,2,37,37,1,2,0,33.379105,33.379105,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,54.79,55.86,8.333333333333334,1,1,0,0,9,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4915,5991,10695,-9,10696,10698,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-857.50012,-9,2,2,2021,12,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.67,62.33,-9,-9,3.333333333333333,1,1,0,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10696,10698,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,7.7861743,7.8837748,0,7,-4,45.757698,0,-9,-9,2021,9,0,40,0,1,0,0,6.8887,6.8887,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,40.82,45.35,54.2,57.49,10,1,1,0,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10697,-9,10696,10698,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.58893,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10698,10696,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.4643898,8.7490988,0,7,4,53.414619,0,-9,1,2021,9,0,40,40,1,0,0,16.603167,16.603167,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,40.82,45.35,6.666666666666667,4,2,0,0,9,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5992,10699,-9,10696,10698,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1055.9806,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1596,-230258.66,0,0,0,750.48932,0,295.30911 +4915,5993,10700,-9,10696,10698,1,1,19,0,2,0,2,2,-9,0,4,7.1911311,7.0837288,0,0,0,-940.18054,0,2,2,2021,7,0,38,0,1,0,1,3.3163378,3.3163378,0,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,1340,133964.14,0,0,0,0,0,952.46216 +4915,5994,10701,-9,10696,10698,1,1,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-984.36847,-9,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55.53,51.55,-9,-9,5,1,1,1,0,0,4,1,0,68,109147.04,0,0,0,0,0,0 +4915,5995,10702,-9,10696,10698,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-938.48956,-9,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.74,50.77,-9,-9,1.666666666666667,4,2,1,0,0,4,1,0,707,46165.848,0,0,0,0,0,135.36316 +4916,5996,10703,10704,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.6309409,6.3218541,7,7,-33.549133,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8208222,63.24,42.39,57.9,51.84,10,1,1,0,0,6,7,4,0,1289,1747160.8,969204,446409.59,0,0,0,2561.7124 +4916,5996,10704,10703,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4189453,8.3091583,0,7,-7,32.267822,0,2,2,2021,10,1,40,40,1,1,0,12.269717,12.269717,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,63.24,42.39,5,1,1,0,0,8,7,4,0,1289,1747160.8,969204,446409.59,0,0,0,2561.7124 +4917,5997,10705,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1053.0247,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,760,104910.53,23234.113,0,0,-94.554611,0,685.09363 +4918,5998,10706,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.7772779,5.8808856,0,0,-966.90808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1657453,67.36,24.59,-9,-9,10,1,1,0,0,0,8,2,0,668,301473.84,-11920.95,224436.53,0,0,0,1356.8795 +4919,5999,10707,10708,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.2081714,6.9252896,0,21,1,67.601028,0,2,3,2021,12,1,10,30,1,1,0,12.467713,12.467713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,57.63,56.14,8.333333333333334,2,3,0,0,10,8,5,1,396,595078.25,137274.5,315027.63,17817.457,14163.576,1062.7412,3515.7661 +4919,5999,10708,10707,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.3621979,9.3476353,0,21,-1,61.788818,0,1,1,2021,6,0,55,56,1,0,0,19.029716,19.029716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,41,56.99,8.333333333333334,2,3,0,0,11,8,5,1,396,595078.25,137274.5,315027.63,17817.457,14163.576,1062.7412,3515.7661 +4920,6000,10709,10710,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,0,0,19,-1,37.949131,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4838188,0,44,52.68,55.78,50.28,5,1,1,0,0,5,9,2,1,1807.5,723420.13,380308.06,282493.06,0,0,0,1542.1521 +4920,6000,10710,10709,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,6.7437758,6.8623786,0,19,1,-14.132884,0,3,2,2021,6,0,2,3,1,0,0,40.88459,40.88459,0,0,0,0,0,0,0,2,0,0,0,7.7865396,0,55.78,50.28,44,52.68,5,1,1,0,1,8,9,2,1,1807.5,723420.13,380308.06,282493.06,0,0,0,1542.1521 +4921,6001,10711,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.1511688,7.7935214,0,0,0,-1015.1539,0,2,2,2021,7,0,32,23,1,0,0,8.9260874,8.9260874,.05,.05,0,0,0,0,0,0,1,1,0,7.3295031,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,12,10,4,0,738,230081.31,57531.508,254480.39,35383.5,12869.201,0,2267.0203 +4922,6002,10712,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.1441536,7.2145119,0,0,0,-1092.6353,0,2,-9,2021,12,0,14,25,1,0,0,10.839879,10.839879,0,0,0,0,0,0,0,2,0,0,0,7.3248143,0,55.69,40.48,-9,-9,5,1,1,0,0,10,10,2,1,243,24769.158,0,0,0,0,0,1553.8475 +4923,6003,10713,10714,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,11,5,30.920429,0,3,3,2021,32,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,64.96000000000001,21.62,0,1,1,0,0,0,2,3,1,532.5,314749.94,186513.53,103762.11,0,0,417.27368,2194.8142 +4923,6003,10714,10713,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,8.3583145,8.520483,11,-5,68.397362,0,3,3,2021,9,0,0,55,4,0,0,0,0,.05,.05,.05,0,0,0,0,7,1,1,0,7.9215446,8.329195,64.96000000000001,21.62,16.04,23.99,8.333333333333334,1,1,0,0,11,2,3,1,532.5,314749.94,186513.53,103762.11,0,0,417.27368,2194.8142 +4924,6004,10715,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.8735428,7.9648638,0,0,0,-1213.5774,0,-9,-9,2021,20,5,43,0,1,5,0,9.1469707,9.1469707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.73,54.95,-9,-9,5,1,1,0,0,2,9,3,0,629,24481.395,-74862.859,0,0,0,0,1377.6575 +4925,6005,10716,10717,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6430178,8.4695702,0,24,2,100.9688,0,3,3,2021,6,0,37,37,1,0,0,15.137275,15.137275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.15,52.9,43.38,60.06,8.333333333333334,1,1,0,0,9,13,5,1,919.5,1327583.1,1096882.3,208577.09,61863.563,9411.2656,0,4707.0625 +4925,6005,10717,10716,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9821463,9.232481,0,24,-2,30.65274,0,-9,-9,2021,10,0,37,41,1,0,0,20.560793,20.560793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.38,60.06,52.15,52.9,10,1,1,0,0,9,13,5,1,919.5,1327583.1,1096882.3,208577.09,61863.563,9411.2656,0,4707.0625 +4926,6006,10718,10719,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.8849421,8.4853458,6.4116836,9,4,23.841906,0,3,3,2021,10,0,43,42,1,0,0,6.8933306,6.8933306,.05,.05,0,0,0,0,0,0,0,0,0,0,6.069644,59.46,46.99,48,48,6.666666666666667,1,1,0,0,10,11,4,1,863.5,42044.598,63463.039,0,0,0,0,2258.4741 +4926,6006,10719,10718,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.1348429,7.6654458,0,9,-4,-73.132828,0,2,2,2021,10,0,40,45,1,0,0,5.2830486,5.2830486,.05,.05,0,0,0,0,0,0,0,0,0,1.7445452,0,48,48,59.46,46.99,6.666666666666667,1,1,0,0,10,11,4,1,863.5,42044.598,63463.039,0,0,0,0,2258.4741 +4927,6007,10720,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5167608,7.1268973,0,0,0,-905.10486,0,2,2,2021,13,2,26,-9,1,2,0,8.1268167,8.1268167,0,0,0,0,0,0,0,0,1,1,0,.36622733,0,42.12,45.4,-9,-9,1.666666666666667,1,1,0,0,14,7,3,1,308,233419.41,87444.516,0,0,1462.9723,0,1106.8567 +4928,6008,10721,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.8756704,6.7615523,0,0,-896.91071,0,2,2,2021,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9947624,6.7783937,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,993,-86569.359,12038.054,0,0,4962.144,0,1129.7103 +4929,6009,10722,10723,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.9024343,7.9759493,0,24,8,-27.988251,0,3,3,2021,6,0,55,58,1,0,0,6.2152562,6.2152562,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,55.11,22.3,6.666666666666667,1,1,0,0,6,4,4,0,817.5,264535.34,405874.75,0,0,0,0,2068.332 +4929,6009,10723,10722,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.3906717,7.6994233,0,24,-8,-45.693073,0,3,3,2021,8,0,24,30,1,0,0,6.8384995,6.8384995,0,0,0,0,0,0,0,14.5,0,0,0,0,0,55.11,22.3,57.93,46.29,8.333333333333334,1,1,0,0,5,4,4,0,817.5,264535.34,405874.75,0,0,0,0,2068.332 +4930,6010,10724,10725,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.6104403,6.8115811,7,5,94.004959,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.284286,6.6525245,59.29,49.68,61.43,43.34,8.333333333333334,1,1,0,0,0,6,2,1,898,708466.38,511152.63,130121.23,0,0,1335.7981,1582.1711 +4930,6010,10725,10724,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.6123962,6.8604488,7,-5,-191.97429,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5883451,0,7,1,1,0,4.8533354,6.7309346,61.43,43.34,59.29,49.68,6.666666666666667,1,1,0,0,0,6,2,1,898,708466.38,511152.63,130121.23,0,0,1335.7981,1582.1711 +4931,6011,10726,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1090.7245,-9,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.43,28.27,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,552,0,0,0,0,0,0,895.63934 +4932,6012,10727,10728,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.9872079,7.8618317,0,10,-1,-30.511461,0,3,3,2021,7,0,30,26,1,0,0,10.020351,10.020351,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,55.09,55.87,8.333333333333334,1,1,0,0,8,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4932,6012,10728,10727,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.6160536,8.5327797,0,10,1,-50.221813,-9,-9,-9,2021,8,0,40,0,1,0,0,14.68967,14.68967,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.73,54.53,6.666666666666667,1,1,0,0,11,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4932,6012,10729,-9,10727,10728,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.74579,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4933,6013,10730,10731,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,6.5022926,6.6755247,30,4,36.488251,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8710175,24.39,20.22,40.91,38.44,1.666666666666667,1,1,0,0,0,13,2,1,652.5,117834.42,82125.563,0,0,0,0,1598.3306 +4933,6013,10731,10730,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,30,-4,-14.229142,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,40.91,38.44,24.39,20.22,5,1,1,0,0,0,13,2,1,652.5,117834.42,82125.563,0,0,0,0,1598.3306 +4934,6014,10732,-9,10734,10733,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.6461,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4934,6014,10733,10734,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5638094,8.5104895,0,8,0,-61.825527,0,2,2,2021,12,3,44,42,1,3,0,10.597123,10.597123,.05,.05,0,0,0,0,0,7,1,1,0,3.2075713,0,51.21,52.15,45.4,56.19,8.333333333333334,1,1,0,0,8,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4934,6014,10734,10733,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.0863962,7.8887906,0,8,0,-28.257208,0,-9,-9,2021,9,0,30,30,1,0,0,11.893232,11.893232,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,56.19,51.21,52.15,8.333333333333334,1,1,0,0,8,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4935,6015,10735,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,8.0769901,8.0992117,0,0,-921.57983,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.2998161,61.67,39.58,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,594,593527.69,218224.16,218232.95,0,0,0,2824.0293 +4936,6016,10736,10737,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4799662,8.5915136,5.6434937,41,-4,24.948277,0,-9,-9,2021,11,0,42,42,1,0,0,13.348126,13.348126,.05,.05,0,0,0,0,0,2,0,0,0,0,5.8285027,54.37,54.8,51.08,43.29,10,1,1,0,0,9,10,5,1,799,948276.25,672534,0,0,0,0,3759.9478 +4936,6016,10737,10736,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.6896353,8.3159704,4.0444803,41,4,-84.490486,0,3,-9,2021,9,0,42,42,1,0,0,14.189197,14.189197,.05,.05,0,0,0,0,0,0,0,0,0,0,4.4771886,51.08,43.29,54.37,54.8,8.333333333333334,1,1,0,0,6,10,5,1,799,948276.25,672534,0,0,0,0,3759.9478 +4937,6017,10738,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,6.5044632,6.8754106,6.115581,0,0,-945.96832,0,2,1,2021,7,0,18,18,1,0,0,4.6409268,4.6409268,0,0,.05,0,0,0,0,2,1,1,0,5.0360098,6.1645803,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,2347,426119.59,63668.203,146753.02,0,0,0,1224.3313 +4938,6018,10739,10740,10742,-9,1,0,26,0,1,0,1,1,1,0,5,7.7942185,7.6682005,0,1,-4,-101.10181,-9,2,1,2021,9,2,38,0,1,2,0,8.5681105,8.5681105,0,0,0,0,0,0,0,0,1,1,0,0,0,46.59,59.97,53.2,56.67,6.666666666666667,1,1,0,0,4,12,2,1,521.5,73759.016,48499.871,0,0,3295.5054,2603.9719,1201.8413 +4938,6018,10740,10739,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,0,0,0,1,4,-134.67918,-9,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,56.67,46.59,59.97,10,1,1,1,0,0,12,2,1,521.5,73759.016,48499.871,0,0,3295.5054,2603.9719,1201.8413 +4938,6019,10741,10742,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.1239595,8.571311,0,6,1,62.739067,0,-9,-9,2021,10,1,40,40,1,1,0,12.927917,12.927917,.05,.05,0,0,0,0,0,0,1,1,0,2.906553,0,55.53,51.55,49.52,55.68,8.333333333333334,1,1,0,0,13,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4938,6019,10742,10741,-9,-9,1,0,59,0,1,0,2,2,-9,0,4,8.2203865,8.8875914,8.0533552,6,-1,-91.946701,0,2,2,2021,12,4,42,30,1,4,0,9.183135,9.183135,.05,.05,0,0,0,0,0,2,1,1,0,8.1697292,0,49.52,55.68,55.53,51.55,10,1,1,0,0,14,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4938,6019,10743,-9,10742,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1064.4862,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4939,6020,10744,-9,10746,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.82361,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4939,6020,10745,-9,10746,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.52124,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4939,6020,10746,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,2,0,0,0,0,0,-960.94275,0,2,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,43,-9,-9,6.666666666666667,1,1,1,0,5,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4940,6021,10747,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.2839937,7.1036935,0,0,-927.0592,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6992335,7.2066474,54.79,55.86,-9,-9,10,1,1,0,0,0,5,3,1,923,588519.81,268653.31,99679.148,0,0,0,1681.9971 +4941,6022,10748,10749,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.5167122,8.4907532,20,1,110.06054,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6336579,8.6938114,48.87,58.55,55.79,52.62,8.333333333333334,1,1,0,0,8,10,5,1,867,4958340.5,793369.63,737080.25,0,0,0,5665.1333 +4941,6022,10749,10748,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.6738501,8.6183739,20,-1,-24.343782,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6311617,55.79,52.62,48.87,58.55,6.666666666666667,1,1,0,0,6,10,5,1,867,4958340.5,793369.63,737080.25,0,0,0,5665.1333 +4942,6023,10750,10751,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.5845337,8.5449877,47,2,151.43889,0,2,3,2021,5,2,0,0,4,2,0,0,0,0,0,0,0,0,0,1.0939368,0,1,1,0,4.4258018,8.3807936,48.54,46.62,62.03,36.18,8.333333333333334,1,1,0,0,0,9,4,1,628.5,1778257.1,1046754.1,610311.88,0,0,0,3875.2979 +4942,6023,10751,10750,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,47,-2,-104.682,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8460367,0,62.03,36.18,48.54,46.62,8.333333333333334,1,1,0,0,8,9,4,1,628.5,1778257.1,1046754.1,610311.88,0,0,0,3875.2979 +4943,6024,10752,10753,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9228253,8.2572727,0,23,7,-28.847174,0,2,1,2021,17,5,85,32,1,5,0,5.1682696,5.1682696,.05,.05,0,0,0,0,0,0,0,0,0,1.4950993,0,38.97,56.46,49.58,55.59,3.333333333333333,2,3,0,0,13,10,5,1,414,488298.72,53178.898,503861.19,135202.17,0,4170.8613,4258.6406 +4943,6024,10753,10752,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.0124998,8.8324652,0,23,-7,-74.058006,0,1,1,2021,10,0,38,0,1,0,0,19.554745,19.554745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,38.97,56.46,6.666666666666667,1,1,0,0,12,10,5,1,414,488298.72,53178.898,503861.19,135202.17,0,4170.8613,4258.6406 +4944,6025,10754,10755,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,6.0191212,6.1168289,0,1,-6,-30.570917,-9,-9,-9,2021,11,1,40,0,1,1,0,1.1694078,1.1694078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,38.94,60.48,8.333333333333334,1,1,0,0,7,2,4,1,336.5,73366.609,-33657,123108.52,56067.25,0,0,2418.3235 +4944,6025,10755,10754,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4125824,8.3213215,0,1,6,15.3696,0,2,2,2021,13,3,40,50,1,3,0,11.44028,11.44028,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,41.06,62.04,5,1,1,0,0,9,2,4,1,336.5,73366.609,-33657,123108.52,56067.25,0,0,2418.3235 +4945,6026,10756,10759,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.8422379,7.7709074,0,18,-6,-3.0939338,0,2,2,2021,10,0,30,10,1,0,0,8.0810909,8.0810909,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.42,50.19,46.53,50.34,3.333333333333333,1,1,0,0,8,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10757,-9,10756,10759,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.67462,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10758,-9,10756,10759,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.8786,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10759,10756,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.8541679,8.7823753,0,16,6,-53.223846,0,2,1,2021,10,0,38,43,1,0,0,25.834736,25.834736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.53,50.34,49.42,50.19,8.333333333333334,1,1,0,0,9,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4946,6027,10760,10761,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4282146,7.3485489,40,-1,-2.3862989,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.1392307,0,1,1,0,6.654532,7.2484708,54.96,53.17,47.07,53.97,8.333333333333334,1,1,0,0,0,2,3,1,1943,813247.25,558338.75,148977.13,0,1846.332,0,2290.4487 +4946,6027,10761,10760,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.1321936,6.6713572,40,1,-124.67083,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3509393,6.5749888,47.07,53.97,54.96,53.17,8.333333333333334,1,1,0,0,0,2,3,1,1943,813247.25,558338.75,148977.13,0,1846.332,0,2290.4487 +4947,6028,10762,10763,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.2661438,8.2381124,58,-2,120.49048,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.9070725,8.1232243,55,45,53,44,8,1,1,0,0,0,8,3,1,723,987790.25,575441.69,182432.91,0,0,0,2875.6221 +4947,6028,10763,10762,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,58,2,-107.56986,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,121.18286,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,3,1,723,987790.25,575441.69,182432.91,0,0,0,2875.6221 +4948,6029,10764,10765,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8990178,8.0892601,6,0,127.13819,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5520535,7.6958656,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1083,434277.25,355135.06,91338.406,0,0,0,2357.2795 +4948,6029,10765,10764,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.7970657,4.3343081,6,0,56.008358,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7747293,4.7582445,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,2,1,3,1,1083,434277.25,355135.06,91338.406,0,0,0,2357.2795 +4949,6030,10766,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.9167209,8.1175451,0,0,0,-907.04541,0,2,2,2021,18,7,50,50,1,7,0,5.5830536,5.5830536,.05,.05,0,0,0,0,0,0,0,0,0,8.2576342,0,39.78,56.25,-9,-9,6.666666666666667,1,1,0,0,11,8,4,1,1611,128541.81,105781.86,0,0,0,0,1916.8507 +4950,6031,10767,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.9067388,6.4896736,0,0,0,-983.2807,0,2,-9,2021,12,1,13,0,1,1,0,6.123807,6.123807,0,0,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,-9,-9,5,1,1,0,0,5,4,2,0,600,56634.258,0,0,0,0,0,990.34729 +4951,6032,10768,10769,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7011557,8.7329512,0,8,3,22.444836,-9,-9,-9,2021,9,0,40,0,1,1,0,18.708267,18.708267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,55,50.03,52.62,8,1,1,0,0,1,10,5,1,1351,1404860.3,897557.63,405384.25,0,0,0,3291.9175 +4951,6032,10769,10768,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7498436,8.1713572,0,30,-3,57.837212,0,2,2,2021,16,4,34,33,1,4,0,9.7164621,9.7164621,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,53,55,6.666666666666667,1,1,0,0,8,10,5,1,1351,1404860.3,897557.63,405384.25,0,0,0,3291.9175 +4951,6033,10770,-9,10769,10768,1,1,19,0,0,0,3,3,-9,0,5,7.7649865,7.412508,0,0,0,-974.44989,0,2,2,2021,12,2,45,48,1,2,1,5.7520738,5.7520738,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,58.06,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1140,74632.984,0,0,0,0,0,1049.4374 +4952,6034,10771,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1909685,8.1927891,4.9764738,0,0,-940.01672,-9,3,3,2021,10,0,41,0,1,0,0,11.447882,11.447882,0,0,0,0,0,0,0,2,1,1,0,5.28967,5.5462193,41.75,45.53,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,434,623762.06,291326.38,119072.7,0,0,0,2125.1824 +4953,6035,10772,10773,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,8.1155643,8.6408615,58,1,186.52377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8165331,7.9687996,62.25,48.33,56.79,38.59,8.333333333333334,1,1,0,0,0,9,4,1,1523.5,771711.19,572389,219027.56,0,0,0,3512.0044 +4953,6035,10773,10772,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,6.9469647,7.1294775,58,-1,-59.371441,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9621735,56.79,38.59,62.25,48.33,8.333333333333334,1,1,0,0,0,9,4,1,1523.5,771711.19,572389,219027.56,0,0,0,3512.0044 +4954,6036,10774,-9,10777,10775,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.30322,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10775,10777,-9,-9,1,1,71,0,2,0,3,3,-9,0,4,0,0,0,14,26,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,47.36,63.48,49.15,10,2,3,0,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10776,-9,10777,10775,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3393,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10777,10775,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,0,0,0,14,-26,0,0,3,3,2021,4,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,49.15,58.47,47.36,0,2,3,0,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4955,6037,10778,10779,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,30,-2,38.030956,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.21,30.16,53,54,6.666666666666667,1,1,0,0,0,5,4,1,1956.5,506335.63,348468.44,136297.77,0,0,0,2508.6504 +4955,6037,10779,10778,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8632755,8.8148441,0,30,2,95.225235,0,2,2,2021,9,0,40,47,1,1,0,22.250145,22.250145,0,0,.05,0,0,0,0,0,1,1,0,0,0,53,54,29.21,30.16,8,1,1,0,0,1,5,4,1,1956.5,506335.63,348468.44,136297.77,0,0,0,2508.6504 +4955,6038,10780,-9,10778,10779,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1007.5671,0,3,2,2021,10,0,0,36,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,5,1,1,121,128030.35,0,0,0,0,0,0 +4955,6039,10781,-9,10778,10779,1,1,18,0,0,0,2,2,-9,0,4,8.2344732,7.9225097,0,0,0,-985.72821,0,3,2,2021,11,0,37,0,1,2,1,9.0247946,9.0247946,.05,.05,0,0,0,0,0,0,1,1,0,.68511719,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,122,-86207.453,45744.484,0,0,0,0,1864.7258 +4956,6040,10782,10783,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.3464327,8.1617966,9,-4,11.75857,0,-9,-9,2021,7,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3972957,8.2775002,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,856.5,2585878,1530007.6,771717.13,0,0,0,3505.541 +4956,6040,10783,10782,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5134411,8.5613594,0,9,4,-61.38028,0,3,3,2021,6,0,38,38,1,0,0,15.05144,15.05144,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,15,9,5,1,856.5,2585878,1530007.6,771717.13,0,0,0,3505.541 +4957,6041,10784,-9,-9,-9,1,0,33,0,1,0,1,1,-9,1,2,0,0,0,0,0,-1068.6971,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.51,49.13,-9,-9,0,4,2,0,0,5,7,1,1,522,64731.078,0,0,0,9190.3643,0,926.59723 +4957,6041,10785,-9,10784,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.3851,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,1,1,522,64731.078,0,0,0,9190.3643,0,926.59723 +4958,6042,10786,10787,-9,-9,1,1,57,1,2,0,2,2,-9,0,3,8.4515619,8.5352087,5.5406971,31,3,-193.64963,0,2,-9,2021,8,0,45,48,1,0,0,11.286578,11.286578,0,0,0,0,0,0,0,2,1,1,0,5.4203887,5.7029295,54.37,54.8,46.66,47.19,8.333333333333334,1,1,0,0,8,6,4,1,891,57870.215,32502.637,139013.22,96026.688,0,0,2958.3325 +4958,6042,10787,10786,-9,-9,1,0,54,1,2,0,3,3,-9,1,4,6.1776919,6.0724554,0,30,-3,-112.18774,0,3,2,2021,17,5,8,10,1,5,0,6.2122235,6.2122235,0,0,0,0,0,0,0,27,1,1,0,0,0,46.66,47.19,54.37,54.8,5,1,1,0,0,9,6,4,1,891,57870.215,32502.637,139013.22,96026.688,0,0,2958.3325 +4958,6043,10788,-9,10789,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6929,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,487.5,-71759.609,43040.965,0,0,0,0,1051.5883 +4958,6043,10789,-9,10787,10786,1,0,27,1,2,0,2,2,-9,0,5,7.7707782,7.87075,0,0,0,-1027.1995,0,2,2,2021,4,1,35,45,1,1,1,9.1246119,9.1246119,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.8,50.59,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,487.5,-71759.609,43040.965,0,0,0,0,1051.5883 +4958,6044,10790,-9,10787,10786,1,1,21,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1064.5848,0,2,2,2021,15,3,0,8,3,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.120014,0,56.74,36.53,-9,-9,5,1,1,0,0,2,6,1,1,5587,57298.285,0,0,0,0,0,-20.830107 +4959,6045,10791,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2317677,8.3380804,0,0,0,-1039.6194,0,1,1,2021,11,0,38,40,1,0,0,11.022126,11.022126,.05,.05,0,0,0,0,0,0,0,0,0,2.3773279,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,458,75137.648,-55116.801,138578.75,0,0,0,3165.0012 +4960,6046,10792,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.883657,7.223834,0,0,-1124.0313,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2522308,6.9814639,54.22,39.67,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,597,768466.44,37990.445,597057.19,0,0,0,1061.6732 +4961,6047,10793,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1155.3158,-9,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7269518,0,40.97,30.08,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,448,48603.922,0,0,0,0,0,1015.0341 +4962,6048,10794,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.012929,8.2092886,0,0,-979.24902,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0240273,8.1431942,47.04,40.62,-9,-9,10,1,1,0,0,0,12,4,1,252,460671.88,57362.32,191651.75,0,0,0,1817.6396 +4963,6049,10795,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1053.332,0,3,3,2021,19,5,0,16,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,30.59,53.54,-9,-9,0,2,3,1,0,4,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6049,10796,-9,10795,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-986.08325,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6049,10797,-9,10795,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-909.18481,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,53.7,-9,-9,3.333333333333333,2,3,0,0,0,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6050,10798,-9,10795,-9,1,1,20,0,1,0,2,2,-9,0,3,6.8016911,6.5751796,0,0,0,-1053.7523,0,2,2,2021,12,0,16,6,1,0,1,5.8275189,5.8275189,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.57,54.66,-9,-9,5,2,3,0,0,4,6,2,0,530,233171.91,107196.06,0,0,0,0,1459.9061 +4964,6051,10799,10800,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0065546,9.005311,0,26,3,-49.472271,0,3,3,2021,11,0,54,48,1,0,0,16.844168,16.844168,.05,.05,0,0,0,0,0,0,1,1,0,4.3784785,0,60.87,39.43,25.84,65.07000000000001,8.333333333333334,3,4,0,0,9,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6051,10800,10799,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6385269,8.5263414,0,26,-3,-26.824404,0,2,3,2021,23,11,40,40,1,11,0,12.374987,12.374987,.05,.05,.05,0,0,0,0,0,1,1,0,5.9610391,0,25.84,65.07000000000001,60.87,39.43,3.333333333333333,3,4,0,0,9,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6051,10801,-9,10799,10800,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.89587,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6052,10802,-9,10799,10800,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1080.8971,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1348722,0,49.58,55.59,-9,-9,8.333333333333334,3,4,0,0,1,8,1,1,1358,98709.32,0,0,0,0,0,54.907635 +4965,6053,10803,10804,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.4653044,8.5855436,0,1,-4,-77.561279,0,-9,-9,2021,12,0,43,45,1,0,0,14.877845,14.877845,.05,.05,0,0,0,0,0,0,0,0,0,2.0631912,0,57.33,53.46,48,59,10,1,1,0,0,8,9,5,0,2323.5,117842.01,-1116.2969,227816.73,140802.16,2262.0884,-533.24664,4290.752 +4965,6053,10804,10803,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7869482,8.8542976,0,1,4,-28.085459,-9,-9,-9,2021,11,0,40,0,1,2,0,12.258115,12.258115,.05,.05,0,0,0,0,0,0,0,0,0,1.8709977,0,48,59,57.33,53.46,7,4,1,0,0,1,9,5,0,2323.5,117842.01,-1116.2969,227816.73,140802.16,2262.0884,-533.24664,4290.752 +4966,6054,10805,-9,10806,10807,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.56506,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10806,10807,-9,-9,1,0,54,0,2,0,2,2,-9,1,3,0,6.5599418,6.7040868,37,-4,106.12392,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.6291056,53.05,44.84,38.13,22.07,6.666666666666667,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10807,10806,-9,-9,1,1,58,0,2,0,3,3,-9,1,1,0,0,0,36,4,-67.010117,0,2,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,22.07,53.05,44.84,1.666666666666667,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10808,-9,10806,10807,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1121.5647,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.96,53.17,-9,-9,10,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4967,6055,10809,10810,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.6845083,9.6028624,0,26,2,-23.627838,0,-9,-9,2021,7,0,60,60,1,0,0,33.019787,33.019787,0,0,0,0,0,0,0,0,0,0,0,9.1941586,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,10,8,5,1,1071.5,1119406.6,376881.75,386462.59,0,0,4631.9077,13553.271 +4967,6055,10810,10809,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5471258,9.8235283,0,26,-2,104.59937,0,2,2,2021,7,0,36,39,1,0,0,47.191902,47.191902,0,0,.05,0,0,0,0,0,0,0,0,3.9734082,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1071.5,1119406.6,376881.75,386462.59,0,0,4631.9077,13553.271 +4967,6056,10811,-9,10809,10810,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.21082,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8256982,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,250,0,0,0,0,0,0,-773.99048 +4968,6057,10812,10813,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.6949611,7.8427391,0,7,-2,-108.62268,0,2,3,2021,6,0,65,50,1,0,0,3.226856,3.226856,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.28,47.53,59.53,56.44,8.333333333333334,1,1,0,0,9,5,3,1,440,350596.88,306621.31,0,0,0,0,2197.428 +4968,6057,10813,10812,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.6260123,6.7585697,0,7,2,117.54917,0,-9,-9,2021,6,0,30,20,1,0,0,3.0420012,3.0420012,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,56.28,47.53,6.666666666666667,1,1,0,0,2,5,3,1,440,350596.88,306621.31,0,0,0,0,2197.428 +4969,6058,10814,-9,10817,10815,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8126,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10815,10817,-9,-9,1,1,38,0,2,0,3,3,-9,0,3,7.8925047,7.9142017,0,2,6,116.38435,-9,3,-9,2021,14,4,43,0,1,4,0,7.9317675,7.9317675,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,51.24,58.84,8.333333333333334,1,1,0,0,8,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10816,-9,10817,10815,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.33356,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10817,10815,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.9095101,6.7948751,0,2,-6,-21.408478,0,3,3,2021,12,4,16,16,1,4,0,7.2545824,7.2545824,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,40.75,58.26,8.333333333333334,1,1,0,0,8,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4970,6059,10818,10819,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.9261365,8.222537,0,23,-3,-158.23785,0,-9,-9,2021,10,0,42,0,1,0,0,10.120951,10.120951,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.76,52.64,55.53,51.55,8.333333333333334,1,1,0,0,8,4,5,1,699,514087.44,432540,90259.344,38725.906,0,0,3619.0308 +4970,6059,10819,10818,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4857321,8.543767,0,6,3,-88.98307,0,-9,-9,2021,4,0,50,42,1,0,0,14.003056,14.003056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.53,51.55,55.76,52.64,8.333333333333334,1,1,0,0,1,4,5,1,699,514087.44,432540,90259.344,38725.906,0,0,3619.0308 +4970,6060,10820,-9,10818,10819,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1086.8391,-9,2,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,47.62,-9,-9,6.666666666666667,1,1,0,0,8,4,1,1,147,91698.961,0,0,0,0,0,0 +4971,6061,10821,10823,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,6.2372222,6.3092499,0,9,-2,32.380642,0,2,2,2021,9,0,5,0,1,0,0,8.562748,8.562748,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.61,47.23,57.06,57.76,8.333333333333334,1,1,0,0,1,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4971,6061,10822,-9,10821,10823,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1436,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4971,6061,10823,10821,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.8291941,8.6584425,0,9,2,-62.111115,0,-9,-9,2021,10,0,50,55,1,0,0,13.776814,13.776814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.61,47.23,8.333333333333334,1,1,0,0,10,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4972,6062,10824,10825,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.3938236,6.3083363,11,5,-113.16021,0,3,3,2021,23,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7996283,6.6197186,35.24,35.57,51,48,5,2,3,0,0,0,4,5,1,524,622631.75,229213.53,315566.38,83500,0,2984.085,12690.445 +4972,6062,10825,10824,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.394537,10.27673,9.7182646,11,-5,-22.035101,0,3,3,2021,10,0,40,42,1,1,0,11.116689,11.116689,0,0,0,1,0,0,0,0,1,1,0,6.4983139,9.3810997,51,48,35.24,35.57,7,1,1,0,0,1,4,5,1,524,622631.75,229213.53,315566.38,83500,0,2984.085,12690.445 +4973,6063,10826,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.9939027,8.2425861,0,0,0,-986.17615,0,-9,3,2021,9,1,38,40,1,1,0,11.309114,11.309114,0,0,0,0,0,0,0,0,0,0,0,0,0,31.56,43.62,-9,-9,5,3,4,0,0,8,8,4,1,1072,834460.5,393730.09,324976.88,0,0,0,613.1933 +4973,6064,10827,-9,10826,-9,1,1,34,0,0,0,2,2,-9,0,4,8.595192,8.5493994,0,0,0,-939.27759,0,1,-9,2021,10,0,40,36,1,1,1,18.198212,18.198212,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,5,1,2357,-66885.359,-84710.953,0,0,0,0,1669.2095 +4973,6065,10828,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3265915,8.5301809,0,0,0,-1052.6814,-9,-9,-9,2021,7,0,60,0,1,0,0,10.112185,10.112185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,965,1038881.6,858404.94,261533.59,118465.13,0,0,2904.1936 +4974,6066,10829,-9,10831,10830,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.99109,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4974,6066,10830,10831,-9,-9,1,1,23,1,1,0,1,1,-9,0,4,7.9533672,7.4931183,0,3,-1,-63.759426,0,2,2,2021,3,0,35,26,1,0,0,8.0803146,8.0803146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.62,57.19,6.666666666666667,1,1,0,0,4,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4974,6066,10831,10830,-9,-9,1,0,24,1,1,0,1,1,-9,0,4,7.5685892,7.901269,0,3,1,-13.88933,0,-9,-9,2021,12,2,35,0,1,2,0,10.663895,10.663895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.62,57.19,57.16,56.15,8.333333333333334,1,1,0,0,1,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4975,6067,10832,10833,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.1240025,7.9874263,5.8154016,10,4,-25.595318,0,3,3,2021,12,0,43,43,1,0,0,6.8292947,6.8292947,.05,.05,0,1,0,.63185024,0,0,1,1,0,0,6.0508399,50.6,51,49.97,53.99,5,1,1,0,0,11,11,4,1,189.5,-71626.531,1970.9316,0,0,0,0,2337.0847 +4975,6067,10833,10832,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.136899,6.9950371,0,10,-4,-39.932266,0,2,2,2021,10,0,40,40,1,0,0,4.976625,4.976625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,50.6,51,8.333333333333334,1,1,0,0,11,11,4,1,189.5,-71626.531,1970.9316,0,0,0,0,2337.0847 +4976,6068,10834,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.4622927,8.6859512,5.4774537,0,0,-883.21954,0,1,2,2021,7,0,35,37,1,0,0,15.173925,15.173925,.05,.05,0,0,0,0,0,0,1,1,0,6.9336562,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,104,492653.94,539314.88,0,0,0,0,2488.9521 +4977,6069,10835,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,8.5000248,8.1054964,0,0,0,-1016.1069,0,2,3,2021,26,12,37,37,1,12,0,10.489967,10.489967,.05,.05,0,0,0,0,0,0,1,1,0,.35281801,0,17.75,35.24,-9,-9,1.666666666666667,1,1,0,0,10,6,4,1,87,792757.75,606708.19,278925.69,95811.805,4267.2319,0,1790.4303 +4978,6070,10836,10837,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5025444,9.5283804,0,32,1,110.0729,0,2,1,2021,13,2,45,38,1,2,0,50.106953,50.106953,0,0,0,0,0,0,0,0,0,0,0,.96118152,0,45.15,57.46,50.63,50.99,8.333333333333334,1,1,0,0,9,6,5,1,960.5,676327.5,212405.47,397012.38,72079.336,1179.3367,0,7738.8193 +4978,6070,10837,10836,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.5382576,8.7817631,0,32,-1,-53.070782,0,2,2,2021,8,0,38,37,1,0,0,12.749784,12.749784,0,0,0,0,0,0,0,0,0,0,0,2.6655114,0,50.63,50.99,45.15,57.46,8.333333333333334,1,1,0,0,7,6,5,1,960.5,676327.5,212405.47,397012.38,72079.336,1179.3367,0,7738.8193 +4978,6071,10838,-9,10837,10836,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-893.91675,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9493742,0,46.39,60.99,-9,-9,10,1,1,1,0,3,6,1,1,593,-192415.64,0,0,0,0,0,785.08099 +4978,6072,10839,-9,10837,10836,1,0,26,0,0,0,1,1,-9,0,3,7.7204194,7.7585845,0,0,0,-1020.148,0,2,2,2021,4,1,38,30,1,1,1,7.4150391,7.4150391,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,51.81,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,144,154754.72,0,0,0,0,0,303.78497 +4979,6073,10840,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,5,6.3644319,6.4365358,0,0,0,-924.46674,0,2,2,2021,12,0,38,39,1,0,0,1.8867816,1.8867816,0,0,0,0,0,0,0,0,1,1,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,6,2,2,0,2102,158236.06,0,0,0,0,0,1190.1963 +4980,6074,10841,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.1294794,8.2258625,5.0074625,0,0,-926.49884,0,-9,-9,2021,14,3,38,38,1,3,0,10.103775,10.103775,0,0,0,0,0,0,0,0,0,0,0,4.5549202,0,56.05,48.44,-9,-9,1.666666666666667,1,1,0,0,3,4,4,0,661,29932.381,0,0,0,3291.6753,0,1642.9287 +4981,6075,10842,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.12189,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.2513828,0,23.176249,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,11,1,0,658,270663.69,0,201815.14,0,0,0,1544.6234 +4982,6076,10843,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.8829832,7.6628103,0,0,0,-1017.2908,0,-9,-9,2021,17,5,38,38,1,5,0,7.8485084,7.8485084,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,2686,-143531.64,0,0,0,0,0,1102.3984 +4983,6077,10844,10845,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.445591,8.3515587,0,3,9,135.31847,0,1,1,2021,14,3,40,42,1,3,0,14.50651,14.50651,.05,.05,0,0,0,0,0,0,0,0,0,6.5698333,0,45.99,57.05,50.6,53.68,6.666666666666667,1,1,0,0,7,1,5,1,1116.5,63829.57,102199.88,155160.86,98347.688,12308.73,0,3059.5776 +4983,6077,10845,10844,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.8922286,7.7838449,0,3,0,66.222816,0,-9,-9,2021,10,1,38,37,1,1,0,8.2122278,8.2122278,.05,.05,0,0,0,0,0,0,0,0,0,1.2056119,0,50.6,53.68,45.99,57.05,8.333333333333334,1,1,0,0,2,1,5,1,1116.5,63829.57,102199.88,155160.86,98347.688,12308.73,0,3059.5776 +4984,6078,10846,10847,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5970521,7.8438973,6.5887771,15,0,37.560665,0,3,-9,2021,8,0,60,60,1,0,0,3.8832338,3.8832338,0,0,0,0,0,0,0,14.5,0,0,0,0,6.5125003,62.27,42.94,37.77,37.9,10,1,1,0,0,6,5,4,1,631,1549564.5,765989.38,521718.81,0,1289.9297,0,3966.8726 +4984,6078,10847,10846,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6912761,7.6196384,15,9,5.23911,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7896442,7.7259049,37.77,37.9,62.27,42.94,6.666666666666667,1,1,0,0,0,5,4,1,631,1549564.5,765989.38,521718.81,0,1289.9297,0,3966.8726 +4985,6079,10848,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3297048,7.23453,0,0,-1134.7256,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9853296,7.428761,45.23,56.21,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,528,669845,250631.61,274799.56,0,0,0,1067.835 +4985,6080,10849,10850,-9,10848,1,1,40,0,0,0,1,1,-9,0,4,8.7375278,8.7770414,0,1,5,52.926247,0,2,2,2021,10,0,35,35,1,1,0,21.683512,21.683512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,56,47,57,7,1,1,0,0,1,7,5,1,280.5,726698,541423.88,229178.75,24578.043,0,0,2670.0654 +4985,6080,10850,10849,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.8434558,6.7622671,0,1,-5,-48.586952,-9,-9,-9,2021,11,0,8,0,1,2,0,12.689137,12.689137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50,56,7,4,1,0,0,1,7,5,1,280.5,726698,541423.88,229178.75,24578.043,0,0,2670.0654 +4986,6081,10851,10852,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.9889259,8.2757292,7.1110668,35,1,-124.27334,0,-9,-9,2021,11,1,15,15,1,1,0,27.748318,27.748318,0,0,0,0,0,0,0,0,0,0,0,7.687355,7.2458987,50.03,52.62,49.28,52.09,8.333333333333334,1,1,0,0,10,1,5,1,156.5,1649969.4,831988.25,372556.38,0,0,0,3218.3772 +4986,6081,10852,10851,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.7644577,7.8941565,5.8255162,35,-1,-84.711517,0,3,3,2021,8,0,9,15,1,0,0,34.582138,34.582138,0,0,.05,0,0,0,0,0,0,0,0,6.7475481,5.8427734,49.28,52.09,50.03,52.62,8.333333333333334,1,1,0,0,10,1,5,1,156.5,1649969.4,831988.25,372556.38,0,0,0,3218.3772 +4987,6082,10853,10854,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.8110805,7.8017426,0,9,8,18.733603,0,-9,-9,2021,9,0,50,0,1,1,0,5.6532693,5.6532693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,39.98,50.61,8,2,3,0,0,1,8,3,0,402,729722.75,367920.13,315901.31,0,0,0,2411.8813 +4987,6082,10854,10853,-9,-9,1,0,44,0,0,0,3,3,-9,0,5,0,0,0,27,-8,-24.620382,0,-9,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,50.61,53,55,8.333333333333334,2,3,1,0,0,8,3,0,402,729722.75,367920.13,315901.31,0,0,0,2411.8813 +4987,6083,10855,-9,10854,10853,1,1,22,0,0,0,2,2,-9,0,5,8.1944065,8.4067774,0,0,0,-1066.6877,0,3,3,2021,7,0,54,35,1,0,1,9.5345421,9.5345421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,1979,-19708.137,39181.523,0,0,0,0,1817.283 +4987,6084,10856,-9,10854,10853,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.6862,-9,3,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,52.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,846,-145804.06,0,0,0,0,0,0 +4988,6085,10857,10858,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4056606,7.8345504,52,0,-8.5259352,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3125203,8.2837429,41.06,62.04,47.95,32.2,8.333333333333334,1,1,0,0,0,5,3,1,3241,1083343.8,622013.13,263096.19,0,0,0,2577.4636 +4988,6085,10858,10857,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,12,0,163.88121,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1345844,0,0,1,1,0,2.6345234,0,47.95,32.2,41.06,62.04,6.666666666666667,1,1,0,0,0,5,3,1,3241,1083343.8,622013.13,263096.19,0,0,0,2577.4636 +4989,6086,10859,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6908236,8.4730673,0,0,0,-1030.8107,0,3,3,2021,11,0,38,78,1,0,0,14.151253,14.151253,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.56,45.13,-9,-9,5,2,3,0,0,10,6,5,1,179,98549.125,-8314.2012,44263.027,31805.111,6804.9209,8305.3604,1849.2026 +4990,6087,10860,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,2,7.5034146,7.5705123,0,0,0,-915.91272,0,1,2,2021,17,5,25,30,1,5,0,8.3805103,8.3805103,0,0,0,0,0,0,0,0,1,1,0,2.8525901,0,30.46,58.06,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,516,-128081.22,0,0,0,0,0,1780.9617 +4990,6087,10861,-9,10860,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.5886,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,516,-128081.22,0,0,0,0,0,1780.9617 +4991,6088,10862,10864,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,0,0,0,1,6,0,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,56,47,57,7,2,3,1,1,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10863,-9,10864,10862,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.43073,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10864,10862,-9,-9,1,0,34,0,2,0,1,1,0,0,4,0,0,0,1,-6,0,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,56,7,2,3,0,1,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10865,-9,10864,10862,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.224,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4992,6089,10866,10867,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.838726,9.2282572,0,40,3,-155.99977,-9,3,3,2021,6,0,56,0,1,0,0,15.658502,15.658502,.05,.05,0,0,0,0,0,0,1,1,0,4.244133,0,60.12,54.8,62.43,40.11,8.333333333333334,1,1,0,0,9,12,5,1,590.5,1579337.8,1366800.8,426414.25,27693.848,0,0,4144.354 +4992,6089,10867,10866,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1050482,7.9437752,0,40,-3,72.817039,-9,3,3,2021,6,0,38,0,1,0,0,9.9993038,9.9993038,0,0,0,0,0,0,0,0,1,1,0,0,0,62.43,40.11,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,590.5,1579337.8,1366800.8,426414.25,27693.848,0,0,4144.354 +4992,6090,10868,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1003.9818,-9,3,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,56.59,-9,-9,8.333333333333334,1,1,1,0,5,12,1,1,165,72865.977,0,0,0,0,0,0 +4992,6091,10869,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.4488659,7.6718898,0,0,0,-891.66406,-9,-9,-9,2021,6,0,46,0,1,0,0,4.3384571,4.3384571,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,539,-109238.95,0,0,0,9108.2559,0,1683.6152 +4992,6092,10870,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-967.86334,-9,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,-9,-9,10,1,1,0,0,0,12,1,1,300,169981.16,0,0,0,0,0,248.01738 +4993,6093,10871,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.2974157,8.5796337,0,0,0,-925.22235,0,-9,-9,2021,14,2,38,35,1,2,0,13.252871,13.252871,0,0,0,0,0,0,0,0,0,0,0,.68569875,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,765,-5863.8687,0,0,0,0,0,1698.3901 +4994,6094,10872,10873,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5207939,8.3738127,0,40,0,27.90357,0,2,2,2021,5,0,84,84,1,0,0,7.8527646,7.8527646,0,0,0,0,0,0,0,42,1,1,0,0,0,57.32,38.32,43.96,32.95,8.333333333333334,1,1,0,0,10,7,5,1,736.5,1710992.6,1429650,352778.25,0,1730.4716,0,5156.0723 +4994,6094,10873,10872,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.6646276,7.6854982,11,9,-19.7612,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,64.654884,0,0,1,1,0,0,7.8073297,43.96,32.95,57.32,38.32,3.333333333333333,1,1,0,0,0,7,5,1,736.5,1710992.6,1429650,352778.25,0,1730.4716,0,5156.0723 +4995,6095,10874,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3224154,8.6586227,0,0,0,-1038.0609,0,3,2,2021,11,0,48,48,1,0,0,10.017342,10.017342,.05,.05,0,0,0,0,0,0,0,0,0,6.1034665,0,48.42,60.53,-9,-9,0,1,1,0,0,12,7,5,1,668,-43543.949,109675.38,0,0,0,5625.8804,1419.1932 +4996,6096,10875,-9,10876,10878,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.2458,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10876,10878,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.0558543,7.6133924,0,11,-1,-119.85663,0,-9,-9,2021,14,2,18,16,1,2,0,8.384182,8.384182,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,56.47,59.4,8.333333333333334,1,1,0,0,13,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10877,-9,10876,10878,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.85657,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10878,10876,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,6.6571231,6.9437814,0,11,1,-106.24863,0,2,2,2021,9,0,60,60,1,0,0,1.5216672,1.5216672,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,51.83,57.2,10,1,1,0,0,13,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4997,6097,10879,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2359114,9.2903957,0,0,0,-1122.2054,0,2,1,2021,12,0,60,60,1,0,0,23.897703,23.897703,0,0,0,0,0,0,0,0,0,0,0,0,0,50.22,52.72,-9,-9,5,2,3,0,0,11,13,5,1,114,1666528.4,932308.06,597185.88,110679.83,0,0,4531.8633 +4998,6098,10880,10881,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.3661318,8.0238562,0,23,-2,-7.6063781,0,3,3,2021,10,0,30,30,1,0,0,12.882126,12.882126,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.68,55.12,54.8,42.45,8.333333333333334,1,1,0,0,8,4,5,1,1455,206321.98,159678.08,192054.64,59751.727,4435.0103,2844.2195,4009.9036 +4998,6098,10881,10880,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.67206,8.9151955,0,23,2,64.139244,0,3,3,2021,5,1,40,39,1,1,0,16.936966,16.936966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.8,42.45,47.68,55.12,8.333333333333334,1,1,0,0,7,4,5,1,1455,206321.98,159678.08,192054.64,59751.727,4435.0103,2844.2195,4009.9036 +4998,6099,10882,-9,10880,10881,1,1,21,0,0,0,2,2,-9,0,4,7.7623425,8.0166311,0,0,0,-937.05347,0,1,2,2021,11,0,40,0,1,2,1,7.4932637,7.4932637,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,3,1,897,-222633.06,-153008.36,0,0,0,0,908.7356 +4998,6100,10883,-9,10880,10881,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.6605,1,1,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,1099,91407.578,0,0,0,0,0,0 +4999,6101,10884,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4743419,7.4786143,0,0,-996.20422,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.1451263,7.8988686,50.01,52.64,-9,-9,5,1,1,0,0,10,1,3,1,768,324424.91,574690.69,0,0,0,0,873.40173 +5000,6102,10885,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,7.0486898,7.782702,6.1787052,0,0,-841.30731,0,1,1,2021,8,0,25,25,1,0,0,6.1530967,6.1530967,0,0,0,0,0,0,0,0,1,1,0,1.5337023,6.414382,48.96,60.26,-9,-9,6.666666666666667,1,1,0,0,7,1,3,1,234,1024583.6,441978.34,237928.78,0,0,0,1243.7124 +5001,6103,10886,10887,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.5917182,7.680316,9,1,90.235321,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0283332,7.8229442,58.56,41.85,54.26,50.74,8.333333333333334,1,1,0,0,0,4,3,1,887.5,439956.81,302480.25,196546.44,0,0,0,3106.3384 +5001,6103,10887,10886,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,6.5986171,6.8343453,9,-1,87.007095,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.41487083,6.6228132,54.26,50.74,58.56,41.85,8.333333333333334,1,1,0,0,0,4,3,1,887.5,439956.81,302480.25,196546.44,0,0,0,3106.3384 +5002,6104,10888,10889,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.1911201,8.4306078,60,4,80.898544,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3448696,62.18,36.18,56.55,42.76,8.333333333333334,1,1,0,0,0,7,4,1,610,1598277.5,535989.5,836785,0,0,0,3460.3569 +5002,6104,10889,10888,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,60,-4,-82.682556,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,9.0994978,0,0,1,1,0,6.9903398,0,56.55,42.76,62.18,36.18,0,1,1,0,0,0,7,4,1,610,1598277.5,535989.5,836785,0,0,0,3460.3569 +5003,6105,10890,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.801096,8.1450109,6.4259782,0,0,-1078.4534,0,3,2,2021,8,0,37,0,1,0,0,7.4778547,7.4778547,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8599663,35.5,54.11,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,475,133892.94,171126.22,0,0,0,0,1830.2949 +5004,6106,10891,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.0842876,8.3388968,0,0,-1162.7865,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2595062,8.3269596,53.22,47.16,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,278,556255,273597,104264.34,5585.0063,0,0,1572.1356 +5005,6107,10892,10894,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6142397,8.7079182,0,11,-6,128.77292,0,-9,-9,2021,11,0,50,50,1,0,0,9.7380466,9.7380466,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.33,53.46,6.666666666666667,1,1,0,0,12,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5005,6107,10893,-9,10894,10892,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.3643,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5005,6107,10894,10892,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9089994,7.7998667,0,15,6,201.51974,0,2,3,2021,10,0,28,30,1,0,0,9.4144249,9.4144249,.05,.05,0,0,0,0,0,0,1,1,0,1.3921491,0,57.33,53.46,55.96,49.93,8.333333333333334,1,1,0,0,11,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5006,6108,10895,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.0433331,7.9138827,0,0,0,-1098.8971,0,-9,-9,2021,4,1,43,35,1,1,0,9.3913946,9.3913946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,8,8,4,0,147,207124.19,-153275.95,222747.88,77630.094,0,0,673.65564 +5007,6109,10896,10897,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6914911,8.4707212,0,5,1,-97.956429,0,-9,-9,2021,20,9,50,50,1,9,0,14.478881,14.478881,.05,.05,0,0,0,0,0,0,0,0,0,2.6500342,0,41.06,62.04,41.59,61.77,6.666666666666667,1,1,0,0,10,8,5,1,510,99477.992,42916.172,0,0,4709.3159,6013.3613,4986.6602 +5007,6109,10897,10896,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.6167622,8.6959667,0,5,-1,79.106506,0,-9,-9,2021,16,4,37,40,1,4,0,19.338171,19.338171,.05,.05,0,0,0,0,0,0,0,0,0,3.3932791,0,41.59,61.77,41.06,62.04,8.333333333333334,1,1,0,0,4,8,5,1,510,99477.992,42916.172,0,0,4709.3159,6013.3613,4986.6602 +5008,6110,10898,-9,10899,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.875,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,2546,-811.77441,22910.699,0,0,0,0,1173.7913 +5008,6110,10899,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.3903446,6.8517213,5.8567362,0,0,-985.06714,0,3,3,2021,8,0,37,35,1,0,0,1.9364679,1.9364679,.05,.05,0,0,0,0,0,0,1,1,0,5.6169128,0,50.12,53.99,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,2546,-811.77441,22910.699,0,0,0,0,1173.7913 +5009,6111,10900,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.7743268,7.9596801,0,0,0,-1092.8191,0,-9,-9,2021,10,0,35,30,1,1,0,8.5279694,8.5279694,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,1,1,0,0,9,1,3,0,841,90436.242,48578.207,0,0,0,0,1297.0757 +5010,6112,10901,10902,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.9262695,8.919261,0,27,5,-74.273369,0,3,2,2021,6,0,35,35,1,0,0,22.717548,22.717548,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,2,3,0,0,14,8,4,1,688,-29667.561,17791.152,0,0,2040.3678,0,3604.8906 +5010,6112,10902,10901,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,27,-5,1.3899269,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,2,3,0,0,0,8,4,1,688,-29667.561,17791.152,0,0,2040.3678,0,3604.8906 +5010,6113,10903,-9,10902,10901,1,0,25,0,0,0,1,1,-9,0,4,8.1348381,8.199276,0,0,0,-914.88464,0,2,1,2021,12,0,40,40,1,0,1,8.8053751,8.8053751,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,46.26,-9,-9,5,2,3,0,0,5,8,4,1,350,33889.609,0,0,0,0,0,1874.6006 +5010,6114,10904,-9,10902,10901,1,0,22,0,0,0,2,2,-9,0,4,7.812192,8.2094631,0,0,0,-1170.58,0,2,1,2021,9,0,32,12,1,0,1,7.2007957,7.2007957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,10,2,3,0,0,3,8,3,1,711,-3446.0378,-9982.3164,0,0,0,0,1319.62 +5010,6115,10905,-9,10902,10901,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1071.1774,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2042093,0,53.94,50.75,-9,-9,10,2,3,0,0,0,8,1,1,876,15802.236,0,0,0,0,0,679.86664 +5011,6116,10906,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.7003279,8.8611546,0,0,0,-943.40155,0,2,3,2021,9,1,47,55,1,1,0,16.816135,16.816135,.05,.05,.05,0,0,0,0,0,0,0,0,3.8862832,0,57.17,48.12,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,546,2029983.6,613925.44,1465032.4,400760.03,0,0,2224.332 +5012,6117,10907,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6081681,7.3296947,0,0,0,-1022.01,0,3,2,2021,9,0,40,36,1,0,0,5.4831185,5.4831185,0,0,0,0,0,0,0,0,0,0,0,0,0,50.42,53.85,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,1105,-14089.153,-47593.297,0,0,0,0,567.61444 +5012,6118,10908,-9,10907,-9,1,1,30,0,0,0,3,3,-9,0,2,7.5673294,7.5167809,0,0,0,-1036.5276,0,2,-9,2021,7,0,24,0,1,0,1,8.7125473,8.7125473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.34,48.86,-9,-9,6.666666666666667,1,1,0,0,1,11,3,0,112,168283.44,7696.3442,0,0,0,1312.9319,1045.1896 +5013,6119,10909,10910,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2798319,7.8318868,0,4,3,71.773285,0,-9,-9,2021,11,0,45,45,1,0,0,8.4183197,8.4183197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.73,42.44,54.79,55.86,6.666666666666667,1,1,0,0,11,10,5,1,977,934404.88,814088.75,232258.42,143862.52,6379.6846,12212.59,3950.9209 +5013,6119,10910,10909,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6857653,8.6228504,0,4,-3,69.344711,0,1,2,2021,6,0,43,45,1,0,0,18.053307,18.053307,.05,.05,0,0,0,0,0,0,0,0,0,3.9989483,0,54.79,55.86,45.73,42.44,8.333333333333334,1,1,0,0,9,10,5,1,977,934404.88,814088.75,232258.42,143862.52,6379.6846,12212.59,3950.9209 +5014,6120,10911,-9,10914,10912,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.1853,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10912,10914,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.0483837,8.1036911,0,10,5,37.573292,0,-9,2,2021,6,0,40,27,1,0,0,13.26365,13.26365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.48,56.4,8.333333333333334,1,1,0,0,7,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10913,-9,10914,10912,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.1758,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10914,10912,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,10,-5,1.3878518,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5015,6121,10915,10916,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.6695137,10.008999,0,6,-2,-11.504567,0,-9,-9,2021,9,0,40,72,1,1,0,48.179424,48.179424,.05,.05,0,0,0,0,0,0,0,0,0,6.6845469,0,52,55,65.06,41.58,8,1,1,0,0,1,13,5,1,1303,571772.75,68973.828,191419.11,111918.92,0,0,44354.492 +5015,6121,10916,10915,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.8802195,7.5313115,0,6,2,1.3731524,0,3,3,2021,9,0,35,40,1,0,0,8.1192846,8.1192846,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,65.06,41.58,52,55,8.333333333333334,1,1,0,0,7,13,5,1,1303,571772.75,68973.828,191419.11,111918.92,0,0,44354.492 +5016,6122,10917,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.9243164,6.266304,0,0,-1103.751,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1884432,61.02,42.13,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,760,185940.03,80378.563,0,0,0,0,882.83661 +5017,6123,10918,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.2321415,7.3127241,0,0,-960.47534,0,-9,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,7.0529008,43.64,32.54,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1507,49567.18,33181.363,10200.534,0,0,0,1941.1208 +5017,6124,10919,-9,10918,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5879455,7.6519027,0,0,0,-1076.2294,0,3,-9,2021,12,0,20,37,1,0,0,10.896809,10.896809,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.97,50.31,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,559,438875.47,385855.59,66253.289,0,0,0,1652.379 +5018,6125,10920,10921,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.1770468,8.3354607,0,9,1,-27.661837,0,3,2,2021,12,0,58,45,1,0,0,6.4243464,6.4243464,.05,.05,0,0,0,0,0,0,1,1,0,6.0929551,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,11,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5018,6125,10921,10920,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.3839097,7.2260022,0,9,-1,-38.887306,0,2,2,2021,10,1,26,30,1,1,0,7.3305025,7.3305025,0,0,0,0,0,0,0,0,1,1,0,2.6783226,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,11,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5018,6125,10922,-9,10921,10920,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.6669,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5019,6126,10923,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,3.2887065,2.5402074,0,0,-996.98474,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8596406,3.1810904,38.37,33.04,-9,-9,3.333333333333333,1,1,0,0,7,4,2,0,3178,199680.28,-18801.619,0,0,-2353.3577,0,70.815384 +5020,6127,10924,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.4656525,7.8220634,0,0,0,-1039.7549,0,2,2,2021,17,7,12,13,1,7,0,18.331905,18.331905,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.94,53.44,-9,-9,6.666666666666667,1,1,0,1,14,12,3,1,2231,-46684.855,137498.59,82006.516,0,0,-1094.1818,472.48169 +5021,6128,10925,10926,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,10,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7097926,0,52,47,51,49.37,7,1,1,0,0,0,2,1,1,1291.5,116450.51,61469.75,103427.98,0,0,0,2081.9795 +5021,6128,10926,10925,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,54,0,0,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0340632,0,51,49.37,52,47,6.666666666666667,1,1,0,0,0,2,1,1,1291.5,116450.51,61469.75,103427.98,0,0,0,2081.9795 +5022,6129,10927,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.6108575,7.8287387,6.8066106,0,0,-928.10016,0,3,3,2021,26,11,50,-9,1,11,0,5.9859524,5.9859524,0,0,0,0,0,0,0,0,0,0,0,7.5503879,6.7466269,25.46,55.01,-9,-9,0,1,1,0,0,8,8,4,1,1081,897267.5,72587.539,787549.69,56383.297,0,0,2334.9465 +5023,6130,10928,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,7.4190087,7.422996,0,0,0,-924.37396,0,2,2,2021,13,3,45,12,1,3,0,4.8691921,4.8691921,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,43.67,-9,-9,3.333333333333333,1,1,0,0,9,5,3,0,1122,69572.094,0,0,0,6731.4341,0,1235.7678 +5024,6131,10929,10931,-9,-9,1,1,39,1,1,0,1,1,-9,0,2,9.4387455,9.5409498,0,16,0,-81.472725,0,2,2,2021,7,0,40,42,1,0,0,40.80254,40.80254,.05,.05,0,0,0,0,0,0,0,0,0,8.447855,0,56.19,46.16,46.14,51.88,6.666666666666667,2,3,0,0,10,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5024,6131,10930,-9,10931,10929,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.2418,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5024,6131,10931,10929,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,9.1455288,9.1987629,0,11,0,.17799079,0,-9,-9,2021,9,1,41,42,1,1,0,28.001163,28.001163,.05,.05,0,0,0,0,0,0,0,0,0,9.2876987,0,46.14,51.88,56.19,46.16,6.666666666666667,2,3,0,0,7,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5025,6132,10932,10933,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,13,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.86,27.54,10,1,1,0,0,4,2,1,1,1586,197333.59,0,169445.53,0,0,0,1372.4338 +5025,6132,10933,10932,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,13,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.86,27.54,62.49,55.09,8.333333333333334,1,1,0,0,0,2,1,1,1586,197333.59,0,169445.53,0,0,0,1372.4338 +5026,6133,10934,-9,10936,10935,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.2657,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10935,10936,-9,-9,1,1,47,0,3,0,2,2,-9,1,2,0,0,0,12,13,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.78,24.54,51.57,37.05,5,1,1,0,1,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10936,10935,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,13,-13,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.57,37.05,58.78,24.54,5,1,1,0,0,2,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10937,-9,10936,10935,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.4624,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10938,-9,10936,10935,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.0968,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5027,6134,10939,10940,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0078115,5.9712076,7,-4,96.582298,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.9801948,6.0720296,52.31,58.29,61.91,40.48,8.333333333333334,1,1,0,0,3,12,2,1,521,602088.94,233540.11,203334.42,0,0,0,2211.5115 +5027,6134,10940,10939,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,6.6252003,6.6644483,7,4,-46.106339,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95456254,6.4444571,61.91,40.48,52.31,58.29,8.333333333333334,1,1,0,0,0,12,2,1,521,602088.94,233540.11,203334.42,0,0,0,2211.5115 +5028,6135,10941,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.3435922,7.5596108,0,0,-906.17249,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4778819,7.7546072,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,293,865352.88,400216.88,433960.78,0,0,0,1913.9691 +5029,6136,10942,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.1323,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.6480618,0,43.84,37.11,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,846,39300.137,0,156109.91,0,0,0,1196.4376 +5029,6137,10943,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-912.52356,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.67,53.03,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1021,150461.31,0,0,0,0,0,762.63544 +5030,6138,10944,-9,-9,-9,1,0,31,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1048.337,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,1,1,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10945,-9,10944,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.5337,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10946,-9,10944,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.5751,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10947,-9,10944,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1161.5559,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5031,6139,10948,-9,10950,10949,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1072,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5031,6139,10949,10950,-9,-9,1,1,37,1,1,0,1,1,-9,0,5,8.0127859,7.8706212,0,2,-1,116.95684,0,2,1,2021,8,1,2,1,1,1,0,212.39992,212.39992,.05,.05,0,0,0,0,0,0,1,1,0,7.8827162,0,51.14,60.45,59.31,44.28,5,1,1,0,0,10,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5031,6139,10950,10949,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,0,0,0,2,1,-9.5204172,0,-9,-9,2021,10,0,0,50,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.1754098,0,59.31,44.28,51.14,60.45,8.333333333333334,1,1,0,0,4,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5032,6140,10951,10952,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9119372,5.4354763,9,-3,84.916107,0,2,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7050595,63.46,23.18,60.12,54.8,10,1,1,0,0,1,6,2,1,1406.5,494086.63,89605.906,325048.56,0,0,0,1484.2139 +5032,6140,10952,10951,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,9,3,52.49332,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6715541,0,60.12,54.8,63.46,23.18,10,1,1,0,0,5,6,2,1,1406.5,494086.63,89605.906,325048.56,0,0,0,1484.2139 +5033,6141,10953,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.9862051,9.5763559,7.8457422,0,0,-1008.9856,0,2,2,2021,6,0,40,40,1,0,0,29.783726,29.783726,0,0,0,0,0,0,0,0,1,1,0,7.7673893,7.9474306,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,181,831267.63,0,540842.5,0,0,0,5562.3789 +5034,6142,10954,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.5519357,7.4271612,0,0,-939.92224,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2011662,7.7653542,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,473,387252.75,276378.22,62009.387,0,0,0,1919.6263 +5035,6143,10955,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9269004,8.0132294,0,4,3,22.0646,0,-9,-9,2021,8,0,36,37,1,0,0,9.1949282,9.1949282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,62.49,55.09,5,1,1,0,1,10,4,3,1,300,51382.031,31559.066,0,0,9808.8115,0,838.71899 +5035,6144,10956,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-58.60931,0,-9,-9,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.67,55.57,6.666666666666667,1,1,1,1,2,4,3,1,654,71585.156,0,0,0,0,0,0 +5036,6145,10957,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,5.8205719,6.2908993,0,0,-1005.0922,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4856846,6.1832876,57.65,56.13,-9,-9,10,1,1,0,0,0,7,2,1,1254,401256.81,75947.344,165419.59,0,0,0,676.59625 +5037,6146,10958,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,9.3947573,9.9043131,7.2350512,0,0,-864.32025,0,2,2,2021,10,0,30,34,1,0,0,41.735081,41.735081,.05,.05,0,0,0,0,0,0,1,1,0,6.8261709,7.940681,45.49,58.84,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,721,489268.06,309335.5,296311.88,36191.023,0,0,4935.1016 +5038,6147,10959,10960,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.7907977,7.5935764,0,1,0,-14.455144,-9,-9,-9,2021,14,3,35,0,1,3,0,7.9434781,7.9434781,.05,.05,0,0,0,0,0,0,0,0,0,2.1522243,0,37.9,51.46,55.19,54.26,6.666666666666667,1,1,0,0,0,10,4,1,632,63421.871,-27598.73,241178.72,179794.81,-318.87167,5119.4253,2255.7676 +5038,6147,10960,10959,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6242332,8.0274897,0,1,0,7.4465976,0,2,2,2021,10,2,40,22,1,2,0,6.1142411,6.1142411,.05,.05,0,0,0,0,0,0,0,0,0,1.7817235,0,55.19,54.26,37.9,51.46,8.333333333333334,1,1,0,0,10,10,4,1,632,63421.871,-27598.73,241178.72,179794.81,-318.87167,5119.4253,2255.7676 +5039,6148,10961,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,6.9059801,6.7273264,0,0,0,-1074.4553,0,2,2,2021,12,0,14,14,1,0,0,8.5663929,8.5663929,0,0,0,0,0,0,0,0,1,0,1,0,0,44.35,23.51,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,383,101539.3,0,0,0,0,387.79559,1042.3522 +5039,6149,10962,-9,10961,-9,1,1,20,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1109.6718,-9,2,-9,2021,15,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,24.14,55.16,-9,-9,1.666666666666667,1,1,1,1,0,9,1,0,809,35989.402,0,0,0,0,0,651.07874 +5040,6150,10963,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,6.5066028,7.4585009,6.8915186,0,0,-941.70129,0,3,2,2021,14,3,55,60,1,3,0,2.2058618,2.2058618,.05,.05,0,0,0,0,0,0,1,1,0,3.692178,6.9699159,43.25,51.98,-9,-9,8.333333333333334,1,1,0,0,13,10,3,1,327,192385.48,28313.547,162488.91,0,0,0,1974.9166 +5041,6151,10964,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.0955853,3.7646072,0,0,-1023.3704,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6420116,3.7043726,45.58,42.43,-9,-9,6.666666666666667,1,1,0,0,3,10,2,1,372,201864.34,146005.06,120715.67,0,0,0,978.10242 +5042,6152,10965,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.8696594,7.9265833,0,0,0,-938.98102,0,2,2,2021,6,0,33,33,1,0,0,11.015199,11.015199,0,0,0,0,0,0,0,0,1,0,1,0,0,55.57,48.59,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6152,10966,-9,10965,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-998.99426,0,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.63,54,-9,-9,10,1,1,0,0,1,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6152,10967,-9,10965,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1208.801,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.82147044,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6153,10968,-9,10965,-9,1,1,20,0,1,0,2,2,-9,0,5,6.4005857,6.2740846,0,0,0,-966.55371,0,2,-9,2021,6,0,29,12,1,0,1,2.3644331,2.3644331,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,13,2,1,470,-9716.873,4396.5303,0,0,0,0,110.12358 +5043,6154,10969,10970,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.463356,6.2558441,8,1,5.2550321,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1346221,6.4286809,53.13,25.94,47.94,48.26,6.666666666666667,1,1,0,0,3,13,2,1,274,344749.75,182284.44,156071.06,0,0,0,1623.1709 +5043,6154,10970,10969,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.4691687,5.674221,8,-1,21.597868,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7065468,47.94,48.26,53.13,25.94,8.333333333333334,1,1,0,0,5,13,2,1,274,344749.75,182284.44,156071.06,0,0,0,1623.1709 +5044,6155,10971,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.8472,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,1,0,968,-49757.559,0,0,0,0,0,737.1662 +5045,6156,10972,10973,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2647281,6.83356,10,-4,-55.102779,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.301414,7.1753211,54.2,57.49,40.94,58.35,8.333333333333334,1,1,0,0,7,4,2,1,552,549592.19,430463.84,148349.58,0,425.57037,0,1669.5947 +5045,6156,10973,10972,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,4,-9.3990192,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,54.2,57.49,5,1,1,0,0,0,4,2,1,552,549592.19,430463.84,148349.58,0,425.57037,0,1669.5947 +5046,6157,10974,10975,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.1076498,8.41716,12,2,-51.578571,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4936676,8.1550951,55.87,53.99,46.44,59.62,8.333333333333334,1,1,0,0,1,9,3,1,1235,1415270,687383,498894.63,0,0,0,3378.2148 +5046,6157,10975,10974,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,12,-2,37.010422,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.87,53.99,8.333333333333334,1,1,0,0,3,9,3,1,1235,1415270,687383,498894.63,0,0,0,3378.2148 +5047,6158,10976,10977,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.7610779,8.7448282,0,1,-1,-9.3519812,-9,-9,-9,2021,9,0,46,0,1,0,0,14.198208,14.198208,0,0,0,0,0,0,0,0,0,0,0,5.5846763,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,1,5,5,0,568,-17290.955,-46470.875,152199.25,87054.289,2067.2937,0,5077.5068 +5047,6158,10977,10976,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.9077625,8.8783064,0,1,1,4.0277495,0,-9,-9,2021,7,0,48,45,1,0,0,16.273735,16.273735,.05,.05,0,0,0,0,0,0,0,0,0,5.1518054,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,2,5,5,0,568,-17290.955,-46470.875,152199.25,87054.289,2067.2937,0,5077.5068 +5048,6159,10978,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-963.26477,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.18,19.54,-9,-9,5,1,1,0,1,0,12,1,0,589,-6926.9829,0,0,0,0,0,660.64392 +5049,6160,10979,10980,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,2,11,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.935585,9.5442228,61.751198,0,1,1,0,0,0,62.81,42.67,52,46,8.333333333333334,1,1,0,0,0,10,1,0,313.5,365316.56,34632.5,229870.59,0,0,0,2149.1282 +5049,6160,10980,10979,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-11,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,46,62.81,42.67,8.333333333333334,1,1,0,0,0,10,1,0,313.5,365316.56,34632.5,229870.59,0,0,0,2149.1282 +5050,6161,10981,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,7.8506756,7.9547458,0,0,0,-1003.8824,0,1,2,2021,9,0,50,40,1,0,0,6.1734104,6.1734104,.05,.05,0,0,0,0,0,0,0,0,0,9.4554176,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,404,-61690.621,17298.008,0,0,5946.3208,0,3900.7932 +5051,6162,10982,-9,10983,10984,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.3169,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10983,10984,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,3,-1,18.61866,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.28,42.87,51.73,58.82,0,4,3,0,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10984,10983,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,7.4534488,7.0594258,0,3,1,101.00386,0,-9,-9,2021,6,0,30,35,1,0,0,6.8999343,6.8999343,0,0,0,0,0,0,0,0,1,1,0,.1625488,0,51.73,58.82,47.28,42.87,10,2,3,0,0,7,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10985,-9,10983,10984,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.65631,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5052,6163,10986,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.6076555,5.8858519,0,0,-948.01538,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8413844,5.7367897,63.42,34.17,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,347,946672.5,496640.84,141459.61,0,0,0,1333.745 +5053,6164,10987,10988,-9,-9,1,1,47,0,1,0,2,2,-9,0,1,7.8747005,8.1208534,0,19,2,22.8985,-9,2,2,2021,13,1,42,0,1,1,0,8.8449259,8.8449259,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.38,44.41,27,37.88,5,1,1,0,1,8,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6164,10988,10987,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,19,-2,-111.85275,-9,2,1,2021,20,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,27,37.88,54.38,44.41,5,1,1,0,1,1,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6164,10989,-9,10988,10987,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.1667,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6165,10990,-9,10988,10987,1,1,20,0,1,0,2,2,-9,0,2,5.4102631,5.4909115,0,0,0,-989.41888,-9,2,2,2021,31,11,7,0,1,11,1,2.9850061,2.9850061,0,0,0,0,0,0,0,0,1,0,1,3.1717856,0,39,45,-9,-9,0,1,1,0,1,2,10,2,0,647,8649.0117,0,0,0,0,0,195.17516 +5054,6166,10991,10992,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,50,-2,-14.516121,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9574876,0,51,46,54.2,57.49,7,1,1,0,0,0,9,4,1,676,882633.19,351735.34,401077.75,0,0,0,5674.9609 +5054,6166,10992,10991,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.7059269,8.3662796,50,2,125.71956,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4390574,8.5249043,54.2,57.49,51,46,8.333333333333334,1,1,0,0,7,9,4,1,676,882633.19,351735.34,401077.75,0,0,0,5674.9609 +5055,6167,10993,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.0823851,7.8412142,0,0,0,-908.51465,0,2,2,2021,8,0,10,40,1,0,0,30.214527,30.214527,0,0,0,0,0,0,0,27,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,335,459522.97,351714.38,-21829.826,0,0,0,1278.524 +5055,6168,10994,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-994.21326,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,27.05,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,791,379956.19,65209.387,195499.78,0,0,0,2017.6511 +5056,6169,10995,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,7.9417253,7.8364282,0,0,0,-957.07385,0,2,2,2021,9,0,40,37,1,0,0,11.645761,11.645761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,971,94395.75,-68614.992,0,0,0,0,1361.7601 +5057,6170,10996,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.0829687,5.0162301,0,0,-1191.3496,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2546577,5.0053015,62.84,46.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,739,175295.06,158396.55,120466.91,0,0,0,1498.1436 +5058,6171,10997,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,4,8.1370335,8.0159798,0,0,0,-913.78864,0,-9,-9,2021,11,0,32,32,1,0,0,9.0805416,9.0805416,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,8,4,3,1,1968,285705,56706.32,145505.16,0,2678.4307,0,1399.1646 +5058,6171,10998,-9,10997,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.75201,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,4,3,1,1968,285705,56706.32,145505.16,0,2678.4307,0,1399.1646 +5059,6172,10999,-9,11002,11000,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1130.9271,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11000,11002,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6346426,8.7203312,0,7,0,-102.05008,0,-9,3,2021,12,0,50,40,1,0,0,14.562554,14.562554,.05,.05,0,0,0,0,0,0,1,1,0,7.2479911,0,59.32,46.98,58.32,50.22,6.666666666666667,1,1,0,0,9,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11001,-9,11002,11000,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-990.27209,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11002,11000,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5026379,7.551198,0,7,0,-56.537064,0,2,3,2021,11,0,24,12,1,0,0,8.0074139,8.0074139,0,0,0,0,0,0,0,0,1,1,0,.88120639,0,58.32,50.22,59.32,46.98,8.333333333333334,1,1,0,0,6,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5060,6173,11003,11005,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.5593724,7.7275286,0,8,2,45.99033,0,-9,-9,2021,11,0,25,25,1,2,0,12.354795,12.354795,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51.24,58.84,7,1,1,0,0,1,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11004,-9,11003,11005,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.16724,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11005,11003,-9,-9,1,1,32,0,2,0,3,3,-9,0,4,6.8871088,6.5707874,0,10,-2,-126.37656,0,2,2,2021,12,2,77,47,1,2,0,1.280333,1.280333,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48,56,6.666666666666667,1,1,0,0,9,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11006,-9,11003,11005,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4695,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5061,6174,11007,11008,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.8585138,8.1344194,3.8265052,18,0,75.12468,0,-9,-9,2021,20,9,30,-9,1,9,0,10.399508,10.399508,.05,.05,0,0,0,0,0,0,1,1,0,8.1628408,3.9688435,43.83,48.44,45,37,6.666666666666667,1,1,0,0,12,5,3,1,388.5,1216837.3,639746.13,357837.44,0,0,0,3868.3828 +5061,6174,11008,11007,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.0782304,7.2788854,20,0,-89.455627,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4205203,7.047636,45,37,43.83,48.44,10,1,1,0,0,6,5,3,1,388.5,1216837.3,639746.13,357837.44,0,0,0,3868.3828 +5062,6175,11009,11010,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.8738933,5.8483329,59,-7,-64.947998,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9629531,63.26,29.17,52.53,39.11,8.333333333333334,1,1,0,0,0,10,2,1,56.5,563789.38,143942.91,275020.31,0,0,0,1608.4553 +5062,6175,11010,11009,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,59,7,-45.427475,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.53,39.11,63.26,29.17,6.666666666666667,1,1,0,0,0,10,2,1,56.5,563789.38,143942.91,275020.31,0,0,0,1608.4553 +5063,6176,11011,11012,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.7718863,7.4994965,25,-2,-74.240631,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7614427,57.71,38.64,52.81,49.13,10,1,1,0,0,0,9,3,1,531,1017235.2,810573.63,211422.95,0,0,0,2594.1292 +5063,6176,11012,11011,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.7653828,6.9768677,25,2,-3.7804737,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,3.9851799,0,0,1,1,0,4.4370766,6.8837762,52.81,49.13,57.71,38.64,8.333333333333334,1,1,0,0,0,9,3,1,531,1017235.2,810573.63,211422.95,0,0,0,2594.1292 +5064,6177,11013,11016,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.321393,8.598484,0,11,-1,-194.3033,0,-9,-9,2021,17,5,15,15,1,5,0,45.227123,45.227123,.05,.05,0,0,0,0,0,0,1,1,0,6.9166312,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,10,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11014,-9,11013,11016,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4464,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11015,-9,11013,11016,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.2635,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11016,11013,-9,-9,1,1,43,0,3,0,1,1,-9,0,5,9.0126324,9.01723,0,11,1,73.618935,0,2,2,2021,6,0,90,50,1,0,0,11.385901,11.385901,.05,.05,0,0,0,0,0,0,1,1,0,5.8348103,0,54.1,59.11,48.77,60.16,10,1,1,0,0,12,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11017,-9,11013,11016,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-910.03156,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5065,6178,11018,11019,-9,-9,1,0,28,1,2,0,1,1,-9,0,4,0,0,0,8,-5,-73.595657,0,2,2,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.16,42.18,47.77,56.48,8.333333333333334,4,5,0,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11019,11018,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.8183002,8.7078953,0,8,5,-5.2377782,0,2,2,2021,11,1,40,42,1,1,0,19.048822,19.048822,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,58.16,42.18,6.666666666666667,4,5,0,0,9,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11020,-9,11018,11019,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.1281,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11021,-9,11018,11019,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.4314,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5066,6179,11022,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5276027,5.7333655,0,0,-1092.1791,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3826094,5.8329868,58.07,46.29,-9,-9,0,1,1,0,0,0,11,2,1,1786,287518.47,116399.26,127199.15,0,0,0,950.17743 +5067,6180,11023,-9,-9,-9,1,0,44,1,1,0,3,3,-9,0,5,7.0989809,7.3445735,3.5453897,0,0,-941.31537,0,2,3,2021,10,0,40,40,1,0,0,4.3842969,4.3842969,0,0,0,0,0,0,0,0,1,1,0,3.4471064,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,8,1,2,1,802.5,107341.78,118830.58,155913.2,0,0,0,753.42249 +5067,6180,11024,-9,11023,-9,1,1,17,1,1,1,2,0,0,0,3,0,0,0,0,0,-913.86511,-9,3,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,802.5,107341.78,118830.58,155913.2,0,0,0,753.42249 +5067,6181,11025,-9,11023,-9,1,1,23,1,1,0,3,3,-9,0,4,7.581037,7.7185311,0,0,0,-1097.3936,0,3,-9,2021,10,0,40,0,1,1,1,6.8802075,6.8802075,.05,.05,0,0,0,0,0,0,1,1,0,2.5456357,0,49,58,-9,-9,7,1,1,0,0,1,1,3,1,224,23837.316,11335.213,0,0,0,0,1059.3297 +5068,6182,11026,-9,-9,-9,1,0,43,0,2,0,2,2,-9,1,5,6.7629023,6.6402378,0,0,0,-1021.5137,0,3,3,2021,6,0,16,0,1,0,0,6.5067334,6.5067334,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,0,0,6,11,2,0,386,-108350.68,0,0,0,0,0,2814.97 +5069,6183,11027,11028,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.9163723,8.6362362,0,25,5,40.970249,0,2,2,2021,7,0,40,0,1,0,0,16.1952,16.1952,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.81,54.17,59.07,43.05,8.333333333333334,1,1,0,1,8,9,4,1,234.5,1026463.3,410372.88,452618.94,0,2048.8284,0,3067.5835 +5069,6183,11028,11027,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,0,0,0,23,-5,-37.194012,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,46.81,54.17,8.333333333333334,1,1,0,0,7,9,4,1,234.5,1026463.3,410372.88,452618.94,0,2048.8284,0,3067.5835 +5069,6184,11029,-9,11028,11027,1,1,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-938.2392,-9,2,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,618,33248.566,0,0,0,0,0,-79.34549 +5070,6185,11030,11031,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2975578,8.1916094,0,11,3,106.64581,0,-9,-9,2021,9,0,44,44,1,0,0,8.3876371,8.3876371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,34.79,47.81,8.333333333333334,1,1,0,0,13,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5070,6185,11031,11030,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,6.8184285,6.4232345,0,11,-3,46.293495,0,-9,-9,2021,11,0,12,12,1,0,0,7.8580985,7.8580985,.05,.05,0,0,0,0,0,42,1,1,0,0,0,34.79,47.81,56.35,51.16,6.666666666666667,1,1,0,0,5,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5070,6185,11032,-9,11031,11030,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.32397,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5071,6186,11033,11034,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.5124969,7.8315835,0,12,1,-43.778683,0,2,3,2021,11,0,52,60,1,0,0,4.3540874,4.3540874,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,40.07,54.57,3.333333333333333,4,2,0,0,9,8,5,1,465,881507.69,759851.38,0,0,3786.8823,20400.324,2605.5889 +5071,6186,11034,11033,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6084385,8.6506033,0,12,-1,118.17322,0,2,3,2021,14,2,52,60,1,2,0,12.059099,12.059099,.05,.05,0,0,0,0,0,0,0,0,0,3.7940392,0,40.07,54.57,46.39,60.99,8.333333333333334,4,5,0,0,13,8,5,1,465,881507.69,759851.38,0,0,3786.8823,20400.324,2605.5889 +5072,6187,11035,11036,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.7297602,8.7928524,0,25,-6,39.474346,0,-9,-9,2021,10,0,45,45,1,0,0,17.340965,17.340965,0,0,0,0,0,0,0,0,0,0,0,3.6172929,0,47.28,59.36,55.96,49.93,6.666666666666667,1,1,0,0,11,8,5,1,1059.5,334136.09,92984.984,419182,154047.38,0,0,3760.1665 +5072,6187,11036,11035,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.64151,8.1906023,0,23,6,47.684742,0,2,2,2021,7,0,38,43,1,0,0,14.368833,14.368833,.05,.05,0,0,0,0,0,0,0,0,0,3.3669713,0,55.96,49.93,47.28,59.36,6.666666666666667,3,4,0,0,11,8,5,1,1059.5,334136.09,92984.984,419182,154047.38,0,0,3760.1665 +5072,6188,11037,-9,11035,11036,1,0,21,0,0,0,2,2,-9,0,4,7.7839694,8.0148144,0,0,0,-972.48438,0,1,2,2021,16,4,31,40,1,4,1,8.4447556,8.4447556,0,0,0,0,0,0,0,0,0,0,0,0,0,33.55,62.9,-9,-9,8.333333333333334,4,2,0,0,3,8,4,1,1171,-61122.637,0,0,0,0,0,743.66803 +5072,6189,11038,-9,11035,11036,1,0,21,0,0,0,2,2,-9,0,4,7.8192368,7.7142496,0,0,0,-895.2995,0,1,2,2021,5,0,25,25,1,0,1,10.578758,10.578758,.05,.05,0,0,0,0,0,0,0,0,0,1.9345645,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,4,8,3,1,824,273427.66,31265.85,0,0,0,0,600.44366 +5073,6190,11039,11041,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.7750359,8.7005739,0,8,-14,105.96365,0,2,2,2021,8,1,44,46,1,1,0,11.54343,11.54343,.05,.05,.05,0,0,0,0,0,1,1,0,3.464175,0,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5073,6190,11040,-9,11041,11039,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.92786,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5073,6190,11041,11039,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9092174,7.3145366,0,8,14,-60.747688,0,2,3,2021,7,0,22,20,1,0,0,7.024538,7.024538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,11,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5074,6191,11042,11043,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,7.673461,7.5063486,0,12,-1,33.82053,0,1,1,2021,6,0,26,40,1,0,0,7.5787311,7.5787311,.05,.05,0,0,0,0,0,0,1,1,0,8.0600796,0,51.83,57.2,35.8,59.5,8.333333333333334,1,1,0,0,6,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5074,6191,11043,11042,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.8399439,8.7365313,0,7,1,63.330246,0,2,2,2021,16,4,57,47,1,4,0,18.957005,18.957005,.05,.05,0,0,0,0,0,0,1,1,0,7.881361,0,35.8,59.5,51.83,57.2,6.666666666666667,1,1,0,0,8,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5074,6191,11044,-9,11042,11043,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.4044,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5075,6192,11045,11047,-9,-9,1,1,53,0,3,0,3,3,-9,0,4,8.0214109,7.7677059,0,7,8,-22.196867,-9,-9,-9,2021,9,0,80,0,1,1,0,3.4854417,3.4854417,.05,.05,0,0,0,0,0,0,1,1,0,7.1424203,0,53,54,59.43,58.05,8,1,1,0,0,1,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11046,-9,11047,11045,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1091.1289,-9,1,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11047,11045,-9,-9,1,0,45,0,3,0,1,1,-9,0,5,6.5453806,6.5928984,0,12,-8,-112.69656,0,3,3,2021,4,0,15,15,1,0,0,5.8181467,5.8181467,0,0,0,0,0,0,0,0,1,1,0,6.5320225,0,59.43,58.05,53,54,8.333333333333334,1,1,0,1,9,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11048,-9,11047,11045,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.49475,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11049,-9,11047,11045,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.49994,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11050,-9,11047,11045,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.71991,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5076,6193,11051,11052,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.8450589,8.1748848,0,31,-1,-27.413668,0,3,3,2021,9,0,30,30,1,0,0,11.142652,11.142652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,49.35,59.64,8.333333333333334,1,1,0,0,14,13,4,1,531.5,686302.5,141704.78,270140.31,0,0,0,2075.062 +5076,6193,11052,11051,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.6767206,7.6923847,31,1,-57.6367,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9199328,7.4771967,49.35,59.64,55.19,54.26,8.333333333333334,1,1,0,0,8,13,4,1,531.5,686302.5,141704.78,270140.31,0,0,0,2075.062 +5076,6194,11053,-9,11052,11051,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-1073.5435,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,575,0,0,0,0,0,0,535.54956 +5076,6195,11054,-9,11052,11051,1,0,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1054.3226,-9,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9410176,0,47.95,59.09,-9,-9,10,1,1,1,0,0,13,1,1,552,132259.48,0,0,0,0,0,476.98184 +5077,6196,11055,11056,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.6609812,8.6829615,0,7,1,-94.536591,0,2,3,2021,15,3,40,40,1,3,0,20.826551,20.826551,.05,.05,.05,0,0,0,0,2,1,1,0,3.611109,0,37.75,56.99,52,54.51,6.666666666666667,1,1,0,0,8,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5077,6196,11056,11055,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.1358442,8.4739399,0,7,-1,3.7851212,0,2,2,2021,6,0,28,28,1,0,0,10.796262,10.796262,0,0,.05,0,0,0,0,2,1,1,0,0,0,52,54.51,37.75,56.99,8.333333333333334,1,1,0,0,8,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5077,6196,11057,-9,11056,11055,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.2579,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5078,6197,11058,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1103.3672,-9,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,1,2.9031432,0,23.537859,0,1,1,0,0,0,30.09,21.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,48,-3578.6274,0,0,0,0,0,1618.7314 +5079,6198,11059,-9,11060,11062,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.49585,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11060,11062,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.7000532,8.2390728,0,15,-2,24.457727,0,2,2,2021,4,0,38,38,1,0,0,18.969406,18.969406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,60.12,54.8,10,2,3,0,0,10,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11061,-9,11060,11062,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1023.5369,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11062,11060,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0032969,8.3278475,0,14,2,-14.303146,0,2,2,2021,10,0,38,50,1,0,0,22.447695,22.447695,.05,.05,.05,0,0,0,0,0,1,1,0,2.7942848,0,60.12,54.8,59.43,58.05,8.333333333333334,2,3,0,0,10,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5080,6199,11063,-9,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.198699,8.6580458,7.804285,0,0,-947.15552,0,2,2,2021,16,4,37,38,1,4,0,11.455843,11.455843,.05,.05,0,0,0,0,0,0,1,1,0,7.7694359,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5080,6199,11064,-9,11063,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.28766,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5080,6199,11065,-9,11063,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.4481,-9,1,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1801729,0,31.52,63.65,-9,-9,5,1,1,0,0,0,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5081,6200,11066,11067,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.6280603,6.5832958,29,-5,149.9912,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.785203,56.26,38.87,35.7,23.15,6.666666666666667,1,1,0,0,11,2,2,1,598.5,381965.91,264818.66,134429.77,0,3483.6243,0,2025.7832 +5081,6200,11067,11066,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,12,5,-66.955124,0,-9,-9,2021,14,3,0,10,4,3,0,0,0,0,0,0,1,0,10.777482,0,0,1,1,0,0,0,35.7,23.15,56.26,38.87,1.666666666666667,1,1,0,0,13,2,2,1,598.5,381965.91,264818.66,134429.77,0,3483.6243,0,2025.7832 +5082,6201,11068,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.611701,8.2682877,0,0,0,-1082.6285,-9,3,3,2021,8,0,60,0,1,0,0,7.1478744,7.1478744,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,44.77,58.06,-9,-9,10,2,3,0,1,13,8,4,0,427,36881.629,-76003.281,0,0,0,0,1874.8495 +5083,6202,11069,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.3286867,8.7741976,0,0,0,-975.25507,0,3,3,2021,20,8,46,40,1,8,0,19.521416,19.521416,.05,.05,0,0,0,0,0,0,0,0,0,4.8276558,0,27.36,54.89,-9,-9,5,2,3,0,0,8,8,5,1,336,650224.75,34309.195,224826.03,51259.867,0,0,2821.2622 +5084,6203,11070,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.4054117,8.3673773,0,0,0,-1023.0896,-9,1,-9,2021,10,1,35,0,1,1,0,12.007,12.007,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,1152,-157645.38,0,0,0,5490.1636,0,1543.5419 +5085,6204,11071,11073,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,7.3056908,7.1378675,0,34,6,-7.2231107,0,3,3,2021,11,1,1,1,1,1,0,161.75949,161.75949,0,0,0,0,0,0,0,0,1,1,0,0,0,51.53,51.8,29.24,57.03,1.666666666666667,1,1,0,0,8,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5085,6204,11072,-9,11073,11071,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-893.72021,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,60.49,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5085,6204,11073,11071,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.1902809,8.3595915,0,36,-6,12.653695,0,2,1,2021,17,4,51,56,1,4,0,6.9556336,6.9556336,0,0,0,0,0,0,0,0,1,1,0,0,0,29.24,57.03,51.53,51.8,1.666666666666667,1,1,0,0,7,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5086,6205,11074,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,5.7821422,5.8121562,0,0,-996.73242,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,5.5589037,0,0,1,1,0,.78601617,6.0622458,57,43,-9,-9,8,1,1,0,0,0,11,2,1,223,663645.13,33740.508,252780.5,0,0,0,839.53125 +5087,6206,11075,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,5.1805911,4.8923554,0,0,-1140.074,0,2,2,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.9720697,24.61,36.34,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,1974,590941.38,0,225276.14,0,0,0,388.09048 +5088,6207,11076,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,2,7.2963862,7.3393083,0,0,0,-1030.6342,0,3,2,2021,7,0,35,22,1,0,0,4.7496347,4.7496347,0,0,0,0,0,0,0,2,1,1,0,0,0,65.68000000000001,28.56,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,1144,-215038.16,93635.43,0,0,0,0,923.41632 +5089,6208,11077,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6661997,8.1648102,0,0,0,-966.0119,-9,-9,-9,2021,8,2,38,0,1,2,0,5.086544,5.086544,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,3,6,3,1,256,-67633.102,0,0,0,0,0,1419.6659 +5089,6209,11078,11079,-9,-9,1,1,32,0,0,0,1,1,1,0,3,8.2148685,8.0906277,0,7,3,-147.46492,-9,-9,-9,2021,14,3,72,0,1,3,0,6.3292756,6.3292756,.05,.05,0,0,0,0,0,0,0,0,0,7.0818691,0,38.6,56.72,49.04,55.86,6.666666666666667,1,1,0,0,6,6,5,1,645,269504.97,84938.32,116943.33,79249,0,2180.9297,4325.2207 +5089,6209,11079,11078,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.646369,8.6211786,0,7,-3,-38.185459,0,1,2,2021,9,0,63,53,1,0,0,11.956603,11.956603,0,0,0,0,0,0,0,0,0,0,0,3.1937542,0,49.04,55.86,38.6,56.72,6.666666666666667,1,1,0,0,8,6,5,1,645,269504.97,84938.32,116943.33,79249,0,2180.9297,4325.2207 +5090,6210,11080,-9,11081,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1007.0315,-9,1,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,4,2,0,0,0,6,5,1,934.5,599629.63,411702.72,129143.54,90275.789,0,0,3085.6418 +5090,6210,11081,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.7701778,9.1135778,0,0,0,-1001.3521,0,2,2,2021,12,0,44,60,1,0,0,17.880472,17.880472,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.82,33.71,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,934.5,599629.63,411702.72,129143.54,90275.789,0,0,3085.6418 +5090,6211,11082,-9,11081,-9,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-969.44971,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5024891,0,31.93,58.41,-9,-9,3.333333333333333,4,2,0,0,0,6,1,1,564,99542.711,0,0,0,0,0,1236.863 +5091,6212,11083,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.0551147,6.6361656,0,0,0,-1031.3079,0,2,2,2021,10,2,15,0,1,2,0,10.053576,10.053576,.05,.05,0,0,0,0,0,0,0,0,0,7.3932261,0,49.45,46.54,-9,-9,6.666666666666667,1,1,0,0,12,9,2,1,187,-82637.438,-21906.041,0,0,0,581.03583,1506.7311 +5092,6213,11084,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.9996495,8.1448841,0,0,0,-1051.856,0,-9,-9,2021,6,0,34,35,1,0,0,12.942005,12.942005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,12,4,0,500,121814.37,-80477.578,0,0,598.42633,0,1597.944 +5093,6214,11085,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.576046,8.4735756,4.3259449,0,0,-899.32385,-9,-9,-9,2021,0,0,28,0,1,0,0,22.498264,22.498264,0,0,0,0,0,0,0,0,1,1,0,4.886857,4.6034389,54.2,57.49,-9,-9,10,1,1,0,0,9,5,5,1,218,476229.09,228554.75,0,0,0,0,1803.947 +5094,6215,11086,11087,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,11,-16,-192.88206,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.69,45.31,10,1,1,0,0,3,10,2,1,412,476269.44,143776.78,160760.89,0,0,0,2564.5051 +5094,6215,11087,11086,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,7.2534657,7.4193425,11,16,36.161968,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5455861,6.8619361,50.69,45.31,51.83,57.2,10,1,1,0,0,0,10,2,1,412,476269.44,143776.78,160760.89,0,0,0,2564.5051 +5095,6216,11088,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.0164447,6.6605949,0,0,-870.23547,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0977833,6.8625927,58.87,37.89,-9,-9,1.666666666666667,1,1,0,0,11,5,2,1,741,676130.81,193951.83,130616.02,0,0,0,.64211458 +5096,6217,11089,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.3315268,6.4465957,0,0,-1110.3533,0,3,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4098446,6.3626571,51.85,36.92,-9,-9,8.333333333333334,2,3,0,0,0,11,2,1,688,5232472,3817174.5,1390316.4,0,0,0,1146.635 +5097,6218,11090,-9,11092,11091,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4879,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5097,6218,11091,11092,-9,-9,1,1,28,1,1,0,1,1,-9,0,1,8.5006762,8.3306093,0,3,2,-90.6035,-9,-9,-9,2021,36,12,20,0,1,12,0,21.779587,21.779587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.72,37.22,44.28,45.81,1.666666666666667,1,1,0,0,15,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5097,6218,11092,11091,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.2454085,7.3332438,0,3,-2,-140.05652,0,-9,-9,2021,14,3,26,0,1,3,0,9.0393991,9.0393991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.28,45.81,45.72,37.22,8.333333333333334,1,1,0,0,7,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5098,6219,11093,11094,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.7133865,7.0784755,4,-6,50.349056,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6236725,6.8900609,55.59,43.19,54.13,48.04,8.333333333333334,1,1,0,0,0,2,3,1,815.5,714315.63,170576.91,250036.27,0,0,0,5162.5918 +5098,6219,11094,11093,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.5876908,7.4299417,4,6,10.491212,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6997995,7.7230959,54.13,48.04,55.59,43.19,8.333333333333334,1,1,0,0,0,2,3,1,815.5,714315.63,170576.91,250036.27,0,0,0,5162.5918 +5099,6220,11095,11097,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.7599192,8.7697849,5.0240936,28,-1,-82.548851,0,2,2,2021,14,3,50,55,1,3,0,13.002349,13.002349,.05,.05,0,0,0,0,0,0,1,1,0,8.0599174,0,40.61,64.02,23.05,65.12,1.666666666666667,1,1,0,0,9,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6220,11096,-9,11097,11095,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1060.1105,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6220,11097,11095,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,5.2516222,5.0863428,0,28,1,-120.67148,-9,1,1,2021,19,6,25,0,1,6,0,.97424996,.97424996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.05,65.12,40.61,64.02,5,1,1,0,0,7,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6221,11098,-9,11097,11095,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1003.6617,0,1,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,389,3674.9263,0,0,0,0,0,0 +5100,6222,11099,-9,11101,11100,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.8465,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5100,6222,11100,11101,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,9.6129246,9.8278275,0,12,-1,-21.780954,0,1,1,2021,12,1,50,53,1,1,0,42.224213,42.224213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.83,57.2,6.666666666666667,2,3,0,0,7,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5100,6222,11101,11100,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,0,0,0,12,1,23.453297,0,1,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,2,3,1,0,0,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5101,6223,11102,-9,-9,-9,1,0,60,1,0,0,2,2,-9,1,2,0,7.1238747,7.1406221,0,0,-990.22589,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.6735868,7.0158644,26.38,39.59,-9,-9,1.666666666666667,1,1,0,0,0,6,3,0,186,82737.266,44891.313,0,0,0,0,2022.8516 +5101,6223,11103,-9,11102,-9,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-984.01923,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,6,3,0,186,82737.266,44891.313,0,0,0,0,2022.8516 +5102,6224,11104,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.7465687,8.8615055,0,0,0,-984.50134,0,2,2,2021,5,0,35,35,1,0,0,26.79446,26.79446,.05,.05,0,0,0,0,0,0,0,0,0,2.7493577,0,58.05,54.52,-9,-9,10,1,1,0,0,7,8,5,1,106,11357.121,112460.1,85626.625,83923.352,812.00659,0,2875.9807 +5102,6225,11105,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0110903,8.2104683,0,0,0,-946.32446,0,2,2,2021,11,0,35,35,1,0,0,10.634914,10.634914,.05,.05,0,0,0,0,0,0,0,0,0,3.1831977,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,8,8,3,1,883,-48645.684,-11238.458,0,0,23999.162,0,927.31555 +5103,6226,11106,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.9710069,7.9044585,0,0,-894.52765,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.274189,7.9700642,53.01,34.07,-9,-9,10,1,1,0,0,0,12,4,1,369,766262.75,709317.19,182200.19,0,0,0,1475.4939 +5104,6227,11107,11108,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,5.9274831,6.1527658,11,-7,99.4058,0,1,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.2982893,5.8444161,40.32,18.64,55,45,6.666666666666667,1,1,0,0,11,8,3,1,412,1659286.6,292756.5,1338868.5,0,0,0,3549.5547 +5104,6227,11108,11107,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.8909926,8.0709686,8,7,215.52277,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4254675,55,45,40.32,18.64,8,1,1,0,0,0,8,3,1,412,1659286.6,292756.5,1338868.5,0,0,0,3549.5547 +5105,6228,11109,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.4700823,8.2751522,0,0,0,-978.94543,0,-9,-9,2021,7,0,48,48,1,0,0,9.7171783,9.7171783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,12,5,4,1,308,-83448.117,25384.965,0,0,0,0,2018.4244 +5106,6229,11110,-9,11111,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.1919,-9,1,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,5,1,946,308965.88,156668.67,191038.19,93047.563,5771.7349,0,1806.0193 +5106,6229,11111,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6676779,9.3642445,0,0,0,-952.87939,0,3,3,2021,13,2,40,44,1,2,0,16.187807,16.187807,.05,.05,0,0,0,0,0,0,1,1,0,2.9322052,0,41.79,57.73,-9,-9,5,1,1,0,0,10,13,5,1,946,308965.88,156668.67,191038.19,93047.563,5771.7349,0,1806.0193 +5107,6230,11112,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,4.5190921,4.541944,0,0,0,-980.97479,-9,3,2,2021,5,1,65,0,1,1,0,.15303525,.15303525,0,0,0,0,0,0,0,0,0,0,0,0,0,49.55,34.34,-9,-9,6.666666666666667,4,2,0,0,3,6,2,0,199,327293.91,132988.11,0,0,0,0,-186.66359 +5108,6231,11113,-9,11117,11115,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1103.609,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11114,-9,11117,11115,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-958.65637,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11115,11117,-9,-9,1,1,44,1,4,0,3,3,-9,0,4,7.9595399,7.6566415,0,7,6,6.5486465,0,-9,-9,2021,9,0,24,18,1,1,0,14.740211,14.740211,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,8,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11116,-9,11117,11115,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.48248,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11117,11115,-9,-9,1,0,38,1,4,0,2,2,-9,0,4,0,0,0,25,-6,-3.1089852,0,3,3,2021,11,0,0,11,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,10,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11118,-9,11117,11115,1,1,16,1,4,1,2,0,-9,0,4,0,0,0,0,0,-981.58081,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6232,11119,-9,11117,11115,1,1,19,1,4,1,1,0,-9,0,4,0,0,0,0,0,-959.39282,-9,2,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,223,-229252.7,0,0,0,0,0,-191.08504 +5109,6233,11120,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.1542506,5.3715477,0,0,-1081.8285,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3320503,5.2587519,54.17,39.63,-9,-9,10,1,1,0,0,0,10,2,1,949,151061.48,-111377.92,151241.73,0,0,0,20.987869 +5110,6234,11121,11125,-9,-9,1,1,41,0,3,0,1,1,-9,0,2,8.6813345,8.5477142,0,12,1,12.696169,0,2,2,2021,17,5,25,25,1,5,0,20.317759,20.317759,.05,.05,0,0,0,0,0,0,1,1,0,4.9438462,0,22.07,59.56,50.82,23.29,3.333333333333333,1,1,0,0,14,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11122,-9,11125,11121,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.28943,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11123,-9,11125,11121,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.33502,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11124,-9,11125,11121,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.62958,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11125,11121,-9,-9,1,0,40,0,3,0,1,1,-9,0,2,8.0783625,8.1958628,0,12,-1,-61.052357,0,1,1,2021,10,2,18,24,1,2,0,14.851018,14.851018,.05,.05,0,0,0,0,0,0,1,1,0,4.458447,0,50.82,23.29,22.07,59.56,3.333333333333333,1,1,0,0,14,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5111,6235,11126,11127,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,0,0,8,6,51.329952,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3850074,0,60.02,56.42,55.51,35.51,0,1,1,0,0,0,5,2,1,504.5,433134.06,264700.63,218743.42,0,0,-487.25357,1335.5132 +5111,6235,11127,11126,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.7449613,6.5476093,8,-6,-23.226376,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8824077,6.1593685,55.51,35.51,60.02,56.42,10,1,1,0,0,0,5,2,1,504.5,433134.06,264700.63,218743.42,0,0,-487.25357,1335.5132 +5112,6236,11128,11129,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,7.4075146,7.2094512,47,-1,61.217724,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,143.49983,0,0,1,1,0,0,6.9504461,59.15,4.64,53.61,59.13,10,1,1,0,0,0,1,2,1,1541,721579,260686.52,468979.47,0,0,0,2118.4048 +5112,6236,11129,11128,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,47,1,83.691177,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,53.61,59.13,59.15,4.64,5,1,1,0,0,0,1,2,1,1541,721579,260686.52,468979.47,0,0,0,2118.4048 +5112,6237,11130,11131,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.2845707,8.285634,6.139039,3,0,95.067398,0,-9,-9,2021,9,0,40,40,1,0,0,9.9749784,9.9749784,.05,.05,.05,0,0,0,0,0,1,1,0,6.4839191,0,49.86,55.31,51.02,44.19,8.333333333333334,1,1,0,0,10,1,4,1,1729.5,927061.38,616169.75,203777.28,18961.83,0,0,3427.3679 +5112,6237,11131,11130,11129,11128,1,0,45,0,0,0,2,2,-9,0,3,7.43613,7.4570131,0,3,0,-7.8631191,0,3,2,2021,7,0,32,24,1,0,0,6.3925619,6.3925619,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,51.02,44.19,49.86,55.31,8.333333333333334,1,1,0,0,10,1,4,1,1729.5,927061.38,616169.75,203777.28,18961.83,0,0,3427.3679 +5113,6238,11132,11133,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.9828,7.9173522,6.376215,51,0,-66.582344,0,3,3,2021,11,0,45,40,1,0,0,6.6744246,6.6744246,.05,.05,0,0,0,0,0,81,1,1,0,4.5608263,6.1862979,50.86,47.22,34.65,37.08,6.666666666666667,1,1,0,0,8,9,3,0,601.5,853730,567778.94,264169.66,0,5769.3613,0,2918.1631 +5113,6238,11133,11132,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.5147491,5.3969512,51,0,-38.678989,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,31.092022,0,0,1,1,0,0,5.5923772,34.65,37.08,50.86,47.22,5,1,1,0,0,6,9,3,0,601.5,853730,567778.94,264169.66,0,5769.3613,0,2918.1631 +5114,6239,11134,-9,11136,11135,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.598,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11135,11136,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.5594435,8.2710361,0,9,-8,-9.3156691,0,-9,-9,2021,12,1,50,50,1,1,0,9.3387356,9.3387356,.05,.05,0,0,0,0,0,2,1,0,1,0,0,40.94,58.35,55.35,36.43,3.333333333333333,1,1,0,0,14,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11136,11135,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3396068,7.5980177,0,9,8,-122.7291,0,2,3,2021,10,2,17,20,1,2,0,12.312772,12.312772,0,0,0,0,0,0,0,109,1,0,1,0,0,55.35,36.43,40.94,58.35,6.666666666666667,1,1,0,0,14,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11137,-9,11136,11135,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7925,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5115,6240,11138,11140,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.7616386,8.8843422,0,5,0,144.80571,0,-9,-9,2021,12,1,30,30,1,1,0,21.570856,21.570856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,34.94,53.21,8.333333333333334,3,4,0,0,7,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11139,-9,11138,11140,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6198,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11140,11138,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.2784348,8.9877653,0,5,0,-92.418594,0,2,2,2021,12,1,45,52,1,1,0,33.405319,33.405319,.05,.05,0,0,0,0,0,2,1,1,0,5.6808014,0,34.94,53.21,46.16,58.62,8.333333333333334,2,3,0,0,7,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11141,-9,11138,11140,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.8218,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5116,6241,11142,11143,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.9202137,8.5764275,7,-1,101.71966,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0769265,8.6995277,59.15,49.67,55.19,51.55,8.333333333333334,1,1,0,0,7,12,4,1,512.5,402661.88,213675.84,126149.51,0,2989.0386,0,4630.042 +5116,6241,11143,11142,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.6215668,6.8543777,0,43,1,98.663994,0,2,2,2021,8,0,14,14,1,0,0,7.8531222,7.8531222,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,51.55,59.15,49.67,8.333333333333334,1,1,0,0,9,12,4,1,512.5,402661.88,213675.84,126149.51,0,2989.0386,0,4630.042 +5117,6242,11144,11145,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,7.9181089,7.9245353,0,4,1,71.105125,0,1,1,2021,12,2,45,45,1,2,0,6.1791401,6.1791401,.05,.05,0,0,0,0,0,0,0,0,0,4.5853868,0,51.41,56.15,54.43,49.12,6.666666666666667,2,3,0,0,9,8,4,1,1177.5,426878.5,203409.22,535693,203683.78,0,0,2331.6155 +5117,6242,11145,11144,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.776247,8.1141357,0,4,-1,58.199059,0,-9,-9,2021,12,0,40,40,1,0,0,8.5514488,8.5514488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.43,49.12,51.41,56.15,5,2,3,0,0,2,8,4,1,1177.5,426878.5,203409.22,535693,203683.78,0,0,2331.6155 +5118,6243,11146,11147,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,59,-5,0,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,38.08,55,45,8.333333333333334,1,1,0,0,0,9,1,1,3217.5,192606.19,-15160.791,236833.55,0,0,0,8.4635391 +5118,6243,11147,11146,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,7,5,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76158148,0,55,45,58.89,38.08,8,1,1,0,0,0,9,1,1,3217.5,192606.19,-15160.791,236833.55,0,0,0,8.4635391 +5119,6244,11148,11149,-9,-9,1,1,54,0,1,0,2,2,-9,0,1,8.1154327,8.3769026,0,9,2,16.313564,-9,-9,-9,2021,19,7,55,0,1,7,0,8.8480997,8.8480997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.62,24.97,40.83,59.68,3.333333333333333,1,1,0,0,12,1,5,1,1015,464307.94,132941.58,302132.5,166206.11,0,0,4095.4421 +5119,6244,11149,11148,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.4950523,9.3434734,0,9,-2,9.8645067,0,2,2,2021,12,2,45,50,1,2,0,27.806562,27.806562,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,46.62,24.97,6.666666666666667,1,1,0,0,10,1,5,1,1015,464307.94,132941.58,302132.5,166206.11,0,0,4095.4421 +5119,6245,11150,-9,11149,11148,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1159.9119,-9,1,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8694134,0,51.05,54.79,-9,-9,10,1,1,0,0,0,1,1,1,212,0,0,0,0,0,0,-569.30505 +5120,6246,11151,11152,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,40,-6,0,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.78,25.84,31.74,27.73,0,2,3,0,1,0,4,1,0,426,55590.922,-13941.491,47378.914,46131.508,-227.18221,0,1293.6824 +5120,6246,11152,11151,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,40,6,0,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.74,27.73,29.78,25.84,1.666666666666667,2,3,0,0,0,4,1,0,426,55590.922,-13941.491,47378.914,46131.508,-227.18221,0,1293.6824 +5120,6247,11153,-9,11151,11152,1,1,19,0,0,0,2,2,1,0,4,6.7659655,7.1823816,0,0,0,-1004.2253,-9,3,3,2021,16,4,15,0,1,4,1,9.0185823,9.0185823,0,0,0,0,0,0,0,0,1,1,0,0,0,37.15,52.96,-9,-9,6.666666666666667,2,3,0,1,0,4,2,0,1233,-46709.867,0,0,0,0,0,-94.340286 +5121,6248,11154,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.3416748,8.2347994,0,0,0,-915.83032,0,2,2,2021,6,0,39,37,1,0,0,10.234344,10.234344,.05,.05,0,0,0,0,0,14.5,1,1,0,.5751757,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,625,-94560.836,187181.61,158141.38,232.23839,0,678.25391,1245.3168 +5122,6249,11155,-9,11157,11156,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.73737,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5122,6249,11156,11157,-9,-9,1,1,34,0,1,0,1,1,-9,0,5,9.0639973,8.9848156,0,9,0,-18.580185,0,1,1,2021,9,0,51,40,1,0,0,22.448631,22.448631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.61,48.14,8.333333333333334,1,1,0,0,9,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5122,6249,11157,11156,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.6312866,8.4053831,0,9,0,-44.79414,0,-9,-9,2021,11,0,30,32,1,0,0,16.103582,16.103582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.61,48.14,54.1,59.11,8.333333333333334,1,1,0,0,7,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5123,6250,11158,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.5352368,4.5184007,0,0,-955.93091,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5551207,4.6734171,46.31,58.29,-9,-9,5,1,1,0,0,3,6,2,1,711,97819.852,72922.688,178005.25,0,0,0,956.99963 +5124,6251,11159,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.4015493,6.5746775,0,0,-990.65942,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,8.5934582,6.3825607,59.3,44.14,-9,-9,10,1,1,0,0,0,10,2,1,509,389950.88,27964.1,138065.28,0,0,-226.75536,1683.8492 +5125,6252,11160,11161,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,52,-1,-81.172516,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.206027,0,52,46,54.2,57.49,7,1,1,0,0,4,10,3,1,1359,992093.63,246907.53,415193.81,0,0,0,2122.9688 +5125,6252,11161,11160,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.1611061,7.4305606,52,1,-137.1386,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4061046,7.8412662,54.2,57.49,52,46,10,1,1,0,0,2,10,3,1,1359,992093.63,246907.53,415193.81,0,0,0,2122.9688 +5126,6253,11162,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7343779,8.8382454,4.4486251,0,0,-1103.2417,0,1,1,2021,11,1,37,38,1,1,0,25.979029,25.979029,.05,.05,0,0,0,0,0,0,1,1,0,4.5084682,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,714,118325.58,84731.359,0,0,0,0,2899.645 +5127,6254,11163,-9,11164,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.90094,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1123.5,126039.28,0,0,0,345.93393,0,1226.3943 +5127,6254,11164,-9,11165,-9,1,0,33,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1064.2225,0,3,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,54.47,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,1123.5,126039.28,0,0,0,345.93393,0,1226.3943 +5127,6255,11165,-9,-9,-9,1,0,63,0,1,0,3,3,-9,0,1,7.295826,7.6019216,0,0,0,-1065.1484,0,3,3,2021,16,4,40,0,1,4,0,4.2914047,4.2914047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.4,25.3,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,1069,4403.7944,145351.84,0,0,0,0,783.65149 +5128,6256,11166,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.340127,8.2639322,0,0,0,-1105.894,0,2,3,2021,8,0,86,86,1,0,0,7.0629282,7.0629282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,-9,-9,8.333333333333334,3,4,0,0,11,9,4,0,380,43621.656,169031.94,0,0,0,1221.0558,2480.7517 +5129,6257,11167,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.8364654,5.8116646,0,0,-999.15192,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6220388,5.1981177,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,468,311212.81,19663.367,0,0,0,0,1467.0613 +5130,6258,11168,11170,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.0914679,9.0781183,0,22,-1,99.181808,0,2,3,2021,9,0,40,40,1,0,0,22.727739,22.727739,.05,.05,0,0,0,0,0,0,1,1,0,6.861588,0,54.77,55.87,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11169,-9,11170,11168,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.91907,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11170,11168,-9,-9,1,0,56,0,2,0,3,3,-9,0,4,5.9606895,6.2115984,4.3374991,21,1,134.65334,0,3,3,2021,7,0,4,5,1,0,0,11.047025,11.047025,0,0,0,0,0,0,0,0,1,1,0,4.5832124,4.0412002,57.16,56.15,54.77,55.87,10,3,4,0,0,6,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11171,-9,11170,11168,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.9245,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5131,6259,11172,11173,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.328979,7.3269792,10,8,28.339155,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,6.9293504,7.1893783,53.28,47.04,57.32,47.78,8.333333333333334,1,1,0,0,3,12,4,1,771.5,299163.09,113249.75,327979.13,0,21456.83,0,4288.7246 +5131,6259,11173,11172,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,4.4154582,8.6687326,8.7669449,10,-8,7.8376064,0,2,1,2021,6,0,9,20,1,0,0,1.0623263,1.0623263,0,0,.05,0,0,0,0,0,1,1,0,0,8.7142115,57.32,47.78,53.28,47.04,8.333333333333334,1,1,0,0,11,12,4,1,771.5,299163.09,113249.75,327979.13,0,21456.83,0,4288.7246 +5132,6260,11174,11175,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,6,6,-74.854706,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0007377,0,59.73,50.87,61.1,41.19,8.333333333333334,1,1,0,0,0,5,2,1,578.5,409261.44,181230.09,140685.81,0,0,0,1895.9272 +5132,6260,11175,11174,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.5599933,6.4376926,6,-6,-46.693634,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9615207,6.5462894,61.1,41.19,59.73,50.87,0,1,1,0,0,0,5,2,1,578.5,409261.44,181230.09,140685.81,0,0,0,1895.9272 +5133,6261,11176,11177,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,9.1747665,9.813632,0,12,-1,42.787884,0,1,2,2021,10,2,40,40,1,2,0,29.536514,29.536514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.8,49.1,25.42,42.75,6.666666666666667,4,2,0,0,14,7,5,0,2096,879415.31,136161.19,579904.63,255929.7,0,0,5450.752 +5133,6261,11177,11176,-9,-9,1,0,39,0,1,0,2,2,-9,0,1,7.7608085,7.9696436,0,12,1,-132.27567,0,1,2,2021,34,12,20,25,1,12,0,11.852875,11.852875,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.42,42.75,48.8,49.1,0,4,2,0,1,14,7,5,0,2096,879415.31,136161.19,579904.63,255929.7,0,0,5450.752 +5134,6262,11178,11179,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.8515239,7.3916521,49,3,4.971559,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8028488,7.0121155,67.61,20.62,68.73999999999999,28.12,8.333333333333334,1,1,0,0,0,13,3,1,2362.5,661917.25,343266.59,286093.56,0,0,0,2584.8247 +5134,6262,11179,11178,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1544523,7.2062111,49,-3,56.146481,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0613751,68.73999999999999,28.12,67.61,20.62,10,1,1,0,0,0,13,3,1,2362.5,661917.25,343266.59,286093.56,0,0,0,2584.8247 +5135,6263,11180,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,6.0388565,5.4028835,0,0,-1120.865,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96332514,5.7301865,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,155,300794.31,184572.64,193140.52,0,0,0,670.89496 +5136,6264,11181,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-973.10046,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4434257,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,94,-23771.6,0,0,0,0,0,639.1554 +5137,6265,11182,11183,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.3279696,8.5751915,50,3,-30.450932,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.4469175,8.2050314,53.53,36.31,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,752,2039267.4,959879.13,493085.38,0,0,0,3729.2798 +5137,6265,11183,11182,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.1337581,7.0083838,50,-3,-106.90793,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5114698,7.1689959,57.16,56.15,53.53,36.31,10,1,1,0,0,0,7,4,1,752,2039267.4,959879.13,493085.38,0,0,0,3729.2798 +5138,6266,11184,11185,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,37,2,87.303139,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.32,50.22,57.33,53.46,0,1,1,0,0,2,10,2,1,989.5,485470.13,352166.53,149470.14,0,18057.348,0,1425.4766 +5138,6266,11185,11184,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.5631509,7.5302291,37,-2,56.608292,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4787035,57.33,53.46,58.32,50.22,10,1,1,0,0,8,10,2,1,989.5,485470.13,352166.53,149470.14,0,18057.348,0,1425.4766 +5139,6267,11186,11187,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.688405,9.0738344,0,12,1,-36.891861,0,-9,-9,2021,6,0,40,40,1,0,0,17.68956,17.68956,.05,.05,0,0,0,0,0,0,1,1,0,2.046813,0,57.06,57.76,53,54,8.333333333333334,1,1,0,0,8,8,5,1,522,151135.48,111390.61,0,0,8764.1621,0,2673.3398 +5139,6267,11187,11186,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.1694827,7.5950618,0,12,-1,-2.6799631,0,-9,-9,2021,9,0,37,0,1,1,0,4.6970849,4.6970849,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,57.06,57.76,8,1,1,0,0,1,8,5,1,522,151135.48,111390.61,0,0,8764.1621,0,2673.3398 +5140,6268,11188,11189,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3794765,6.6889443,12,-5,-38.594219,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8073115,6.305048,41.62,60.42,40.59,54.19,0,1,1,0,0,0,5,3,1,345,782219,628629.75,148931.34,0,0,0,2629.2668 +5140,6268,11189,11188,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6924949,7.2863688,43,5,-4.3067384,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5512829,7.6500525,40.59,54.19,41.62,60.42,6.666666666666667,1,1,0,0,1,5,3,1,345,782219,628629.75,148931.34,0,0,0,2629.2668 +5141,6269,11190,11191,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9880214,6.2659163,6,0,-18.951691,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7114105,62.38,25.08,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1856,552951.13,308856.13,180429.34,0,0,0,1451.2203 +5141,6269,11191,11190,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.5298719,6.673233,6,0,75.699226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2712238,6.4051237,57.33,53.46,62.38,25.08,8.333333333333334,1,1,0,0,0,4,2,1,1856,552951.13,308856.13,180429.34,0,0,0,1451.2203 +5142,6270,11192,11193,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4409838,8.2636614,0,17,-6,178.87271,0,2,3,2021,11,0,30,25,1,0,0,18.932379,18.932379,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.19,47.9,1.666666666666667,1,1,0,0,9,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11193,11192,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.0076599,9.0901079,0,7,6,-40.531464,0,2,2,2021,7,0,42,35,1,0,0,19.623091,19.623091,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.19,47.9,48.87,58.55,8.333333333333334,1,1,0,0,9,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11194,-9,11192,11193,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1151.3831,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11195,-9,11192,11193,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.491,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5143,6271,11196,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.5999842,8.4048834,0,0,0,-1023.4337,0,3,3,2021,11,1,37,35,1,1,0,18.408052,18.408052,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.03,45.86,-9,-9,0,4,2,0,0,11,8,5,0,621,-81157.25,1633.9413,0,0,0,0,2388.1128 +5144,6272,11197,11198,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.5836177,6.6642566,42,-5,-8.5167542,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.396131,6.8288865,51.49,37.25,61.03,31.71,3.333333333333333,1,1,0,0,0,10,3,1,403.5,499834.13,16371.517,477484.44,0,0,0,3461.3169 +5144,6272,11198,11197,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,7.833847,7.7781706,42,5,-86.004372,0,2,2,2021,11,3,0,0,4,3,0,0,0,.05,.05,0,1,0,4.8156242,0,0,1,1,0,6.5437565,8.1708794,61.03,31.71,51.49,37.25,6.666666666666667,1,1,0,0,0,10,3,1,403.5,499834.13,16371.517,477484.44,0,0,0,3461.3169 +5145,6273,11199,11200,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.8835287,8.8156853,0,5,-1,190.04008,0,-9,-9,2021,9,0,40,53,1,0,0,20.407389,20.407389,.05,.05,0,0,0,0,0,0,0,0,0,1.4429524,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,6,2,5,1,1080,412857.19,278964.44,221663.11,105550.89,-833.30853,1263.2795,5669.4922 +5145,6273,11200,11199,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7888813,8.6286898,0,5,1,18.839363,0,1,1,2021,5,1,60,48,1,1,0,14.200598,14.200598,.05,.05,0,0,0,0,0,0,0,0,0,1.0693456,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,5,2,5,1,1080,412857.19,278964.44,221663.11,105550.89,-833.30853,1263.2795,5669.4922 +5146,6274,11201,-9,11202,11204,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8729,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11202,11204,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,8.3760099,8.1920443,0,15,3,9.3512383,0,2,2,2021,17,5,32,28,1,5,0,15.255885,15.255885,.05,.05,0,0,0,0,0,2,1,1,0,0,0,32.26,23.4,49.16,42.18,6.666666666666667,1,1,0,0,9,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11203,-9,11202,11204,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.7488,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11204,11202,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.2736893,8.176013,0,15,-3,-157.51233,0,2,2,2021,13,1,39,39,1,1,0,10.429953,10.429953,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.16,42.18,32.26,23.4,6.666666666666667,1,1,0,0,9,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5147,6275,11205,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3444605,8.2782803,0,0,0,-1005.2451,0,3,3,2021,8,3,38,35,1,3,0,10.795657,10.795657,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.3,45.88,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,589,571276.06,346264.59,0,0,0,0,2209.0042 +5148,6276,11206,-9,11207,11208,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.2615,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5148,6276,11207,11208,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,6.7474933,6.9894986,0,18,-3,-56.180122,0,2,2,2021,7,0,14,25,1,0,0,10.345693,10.345693,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.61,57.22,8.333333333333334,1,1,0,0,10,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5148,6276,11208,11207,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.0216007,7.9027882,0,16,3,18.539597,0,2,2,2021,11,0,44,46,1,0,0,9.6896753,9.6896753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.61,57.22,49.04,55.86,5,1,1,0,0,11,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5149,6277,11209,11210,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.6832957,6.5194612,0,48,-3,-17.883287,0,3,3,2021,26,9,12,16,1,9,0,6.5098181,6.5098181,0,0,0,0,0,0,0,0,1,1,0,0,0,20.84,65.29000000000001,47.1,45.96,0,1,1,0,0,4,4,2,1,578,-33280.277,11141.33,0,0,0,0,810.50903 +5149,6277,11210,11209,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,4.7182546,4.6961455,46,3,-45.726757,0,3,3,2021,11,4,0,0,4,4,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,4.8183994,47.1,45.96,20.84,65.29000000000001,6.666666666666667,1,1,0,0,2,4,2,1,578,-33280.277,11141.33,0,0,0,0,810.50903 +5150,6278,11211,-9,-9,11212,1,1,22,0,0,0,2,2,-9,0,4,7.8003316,7.3092022,0,0,0,-1145.7263,0,-9,2,2021,9,0,48,0,1,0,1,5.2819467,5.2819467,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,1859,59535.832,59137.102,0,0,3681.1252,0,398.78946 +5150,6279,11212,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.9007273,8.0607729,0,0,0,-920.46295,0,-9,-9,2021,13,1,40,38,1,1,0,8.2820339,8.2820339,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.32,40.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,513,159201.22,-94564.867,54680.41,0,233.60008,0,1224.2983 +5151,6280,11213,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0238619,7.903976,0,0,0,-972.94617,0,2,2,2021,12,0,23,23,1,0,0,11.896432,11.896432,.05,.05,0,0,0,0,0,0,1,1,0,5.6361604,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,3289,-21625.713,-42791.27,0,0,-1067.4795,0,1372.8387 +5152,6281,11214,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.1939325,6.2834139,0,0,-1003.814,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.752563,6.3197207,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,63,135231.81,-12476.028,212213.14,0,0,0,189.42889 +5153,6282,11215,11216,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.4021454,9.3955774,0,11,-7,-164.64813,0,2,2,2021,9,0,30,30,1,0,0,40.752636,40.752636,0,0,0,0,0,0,0,0,0,0,0,3.0470655,0,54.1,59.11,46.53,47.78,8.333333333333334,1,1,0,0,13,10,5,1,1615.5,1762928.3,177112.97,584058,0,0,0,4704.978 +5153,6282,11216,11215,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.3840652,7.615942,6.4822063,11,7,57.049858,0,3,3,2021,11,0,30,25,1,0,0,5.5989194,5.5989194,.05,.05,0,0,0,0,0,0,0,0,0,5.6647754,6.5863609,46.53,47.78,54.1,59.11,3.333333333333333,1,1,0,0,13,10,5,1,1615.5,1762928.3,177112.97,584058,0,0,0,4704.978 +5154,6283,11217,11218,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.9243712,7.1162915,0,6,-7,-149.7215,0,-9,-9,2021,12,0,14,15,1,0,0,8.8053293,8.8053293,.05,.05,0,0,0,0,0,0,0,0,0,2.1929445,0,51.25,50.81,46.74,49.92,10,1,1,0,0,3,7,5,1,580.5,1118335,603411,378599.59,0,0,0,6949.0518 +5154,6283,11218,11217,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.6875944,9.7949533,6.115128,6,7,-89.163437,0,3,2,2021,12,1,40,40,1,1,0,54.156193,54.156193,.05,.05,0,0,0,0,0,0,0,0,0,4.5826712,6.7943625,46.74,49.92,51.25,50.81,8.333333333333334,1,1,0,0,8,7,5,1,580.5,1118335,603411,378599.59,0,0,0,6949.0518 +5155,6284,11219,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8124847,8.7351513,0,0,0,-1078.8999,0,-9,2,2021,7,0,45,45,1,0,0,16.289631,16.289631,0,0,0,0,0,0,0,2,1,1,0,0,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1661,1026261.3,0,538750.75,0,0,0,1171.0291 +5156,6285,11220,11221,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.3075399,9.3303251,0,8,1,.53956151,0,1,1,2021,14,4,36,36,1,4,0,26.956694,26.956694,.05,.05,0,0,0,0,0,0,1,1,0,5.290617,0,48.71,51.81,54.69,57.47,8.333333333333334,1,1,0,0,10,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5156,6285,11221,11220,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.2165537,7.9788423,0,8,-1,-94.583374,0,2,1,2021,9,0,23,22,1,0,0,18.950953,18.950953,.05,.05,0,0,0,0,0,0,1,1,0,4.6951442,0,54.69,57.47,48.71,51.81,8.333333333333334,1,1,0,0,9,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5156,6285,11222,-9,11221,11220,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8686,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5157,6286,11223,11224,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2703648,8.5248184,0,32,-1,57.880882,0,3,3,2021,17,5,38,39,1,5,0,17.573454,17.573454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.38,22.54,42.1,37.58,6.666666666666667,2,3,0,0,11,8,5,1,562.5,745573.56,477145.53,282595.5,79035.078,7939.1758,26.215668,3678.3484 +5157,6286,11224,11223,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.1754332,7.998518,0,32,1,114.24642,0,2,2,2021,14,4,48,48,1,4,0,9.5952225,9.5952225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.1,37.58,45.38,22.54,6.666666666666667,2,3,0,0,9,8,5,1,562.5,745573.56,477145.53,282595.5,79035.078,7939.1758,26.215668,3678.3484 +5158,6287,11225,11226,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,2,0,111.3622,1,1,-9,2021,12,3,0,32,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,53.68,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,415,-1982.8799,45429.895,231664.66,135909.13,0,0,3344.2959 +5158,6287,11226,11225,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9343314,7.940927,0,2,0,30.880701,0,-9,-9,2021,6,1,37,38,1,1,0,10.701355,10.701355,.05,.05,0,0,0,0,1.3983685,0,0,0,0,0,0,57.16,56.15,50.6,53.68,8.333333333333334,1,1,0,0,3,10,3,1,415,-1982.8799,45429.895,231664.66,135909.13,0,0,3344.2959 +5159,6288,11227,11228,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,6,-7,-26.822523,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.26,23.05,29.84,22.86,5,1,1,0,0,0,13,2,0,568.5,44661.813,116381.69,0,0,0,0,2013.8977 +5159,6288,11228,11227,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,6.5921907,6.8631587,6,7,3.1438549,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6513033,0,29.84,22.86,41.26,23.05,1.666666666666667,1,1,0,0,0,13,2,0,568.5,44661.813,116381.69,0,0,0,0,2013.8977 +5159,6289,11229,-9,11227,11228,1,0,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.51971,0,2,3,2021,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,47.81,-9,-9,5,1,1,0,0,3,13,1,0,473,0,0,0,0,0,0,527.81091 +5159,6290,11230,-9,11227,11228,1,0,23,0,0,0,2,2,-9,0,3,8.079175,8.2419701,0,0,0,-849.29236,-9,3,3,2021,9,1,50,0,1,1,1,7.5450587,7.5450587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,10,1,1,0,0,1,13,4,0,851,143210.05,13400.759,0,0,10687.694,-563.85767,1114.2375 +5160,6291,11231,-9,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.5528316,8.5336618,0,0,0,-1036.6476,0,2,3,2021,22,10,45,50,1,10,0,10.859104,10.859104,0,0,0,0,0,0,0,0,1,1,0,0,0,28.44,58.44,-9,-9,1.666666666666667,3,4,0,0,9,8,4,0,871.5,88962.352,0,116777.2,107138.5,0,0,1920.3429 +5160,6291,11232,-9,11231,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.43872,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,871.5,88962.352,0,116777.2,107138.5,0,0,1920.3429 +5161,6292,11233,-9,11235,11238,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-905.79663,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11234,-9,11235,11238,1,1,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.842,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11235,11238,-9,-9,1,0,38,1,4,0,1,1,-9,0,3,7.083209,7.0501094,0,11,1,106.75495,0,2,2,2021,14,3,18,10,1,3,0,5.4550538,5.4550538,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,46,61.6,8.333333333333334,1,1,0,0,11,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11236,-9,11235,11238,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1141.7179,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11237,-9,11235,11238,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-965.96722,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11238,11235,-9,-9,1,1,37,1,4,0,1,1,-9,0,5,8.5650377,8.8148146,0,11,-1,-92.707787,0,2,2,2021,8,0,39,37,1,0,0,19.206758,19.206758,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,61.6,38.8,60.42,8.333333333333334,1,1,0,0,11,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5162,6293,11239,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7693267,8.7825127,8.0048399,0,0,-984.99176,0,2,2,2021,12,0,10,0,1,0,0,30.402317,30.402317,.05,.05,0,0,0,0,0,0,0,0,0,5.0170455,8.4444857,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,10,5,1,2812,338847.06,123093.99,0,0,0,694.00244,2416.9167 +5163,6294,11240,11241,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.9952555,6.8813767,0,2,-5,-5.7110767,-9,-9,-9,2021,10,0,50,0,1,1,0,2.6605146,2.6605146,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,34.64,15.66,8,4,1,0,0,1,7,2,1,1504,-30747.789,-21773.736,0,0,0,0,2151.9661 +5163,6294,11241,11240,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,2,5,154.91978,0,2,1,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.64,15.66,51,54,0,1,1,0,1,6,7,2,1,1504,-30747.789,-21773.736,0,0,0,0,2151.9661 +5164,6295,11242,11243,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,9,-5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,26.01,39.84,21.56,29.66,1.666666666666667,1,1,0,0,0,13,1,1,658,19757.848,0,70825.906,0,0,466.98923,3801.6831 +5164,6295,11243,11242,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,18.616026,0,0,1,1,0,0,0,21.56,29.66,26.01,39.84,1.666666666666667,1,1,0,0,0,13,1,1,658,19757.848,0,70825.906,0,0,466.98923,3801.6831 +5165,6296,11244,11245,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,6,15,0,0,-9,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,36.51,47.85,27.03,8.333333333333334,1,1,0,0,0,7,1,0,3430.5,16536.389,108610.14,0,0,0,0,947.12347 +5165,6296,11245,11244,-9,-9,1,0,49,0,0,0,3,3,-9,0,1,0,0,0,6,-15,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,27.03,47.46,36.51,6.666666666666667,1,1,0,1,0,7,1,0,3430.5,16536.389,108610.14,0,0,0,0,947.12347 +5166,6297,11246,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.3081999,6.2441158,0,0,-976.61731,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8442454,53.24,36.78,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1314,316800.94,160018.33,201872.73,0,0,0,3925.8362 +5167,6298,11247,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1994085,7.8425674,0,0,0,-1083.4902,0,2,2,2021,8,0,37,37,1,0,0,11.204124,11.204124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,14,6,4,0,1913,76189.43,236368.91,156881.97,74310.797,0,1005.0196,1524.774 +5168,6299,11248,-9,-9,-9,1,1,18,0,0,0,3,3,-9,0,5,7.8845439,8.0973988,0,0,0,-1095.6473,0,-9,-9,2021,0,0,32,0,1,0,0,10.779159,10.779159,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,2,5,4,0,830,-141509.14,0,0,0,0,0,1529.9236 +5169,6300,11249,11250,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.2831717,8.3012619,0,41,2,103.84444,0,2,2,2021,8,0,37,37,1,0,0,15.138062,15.138062,0,0,0,0,0,0,0,0,0,0,0,0,0,50.47,43.29,47.31,47.37,8.333333333333334,1,1,0,0,14,7,5,1,706.5,2356131.5,1606482,466458.94,0,5970.6787,0,3872.2534 +5169,6300,11250,11249,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.5717888,8.4822683,0,41,-2,149.58694,0,3,1,2021,10,0,87,42,1,0,0,7.0933771,7.0933771,0,0,0,0,0,0,0,0,0,0,0,0,0,47.31,47.37,50.47,43.29,8.333333333333334,4,2,0,0,14,7,5,1,706.5,2356131.5,1606482,466458.94,0,5970.6787,0,3872.2534 +5170,6301,11251,11252,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,6.9494233,7.2763376,6,8,-67.469704,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.1385269,48,37,33.19,21.53,6.666666666666667,1,1,0,1,0,2,2,0,739,534188.25,195123.09,287586.94,0,0,0,1831.4285 +5170,6301,11252,11251,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,6,-8,25.226099,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.19,21.53,48,37,8.333333333333334,1,1,0,1,0,2,2,0,739,534188.25,195123.09,287586.94,0,0,0,1831.4285 +5171,6302,11253,11254,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.7466478,8.4062023,0,6,5,-33.442173,0,3,3,2021,6,0,40,40,1,0,0,14.556937,14.556937,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.33,53.46,8.333333333333334,1,1,0,0,7,13,4,1,420,499519.34,128979.86,439841.06,0,2869.387,0,3390.1733 +5171,6302,11254,11253,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.9564867,7.422595,0,6,-5,38.048595,0,3,3,2021,11,0,20,0,1,0,0,7.4456224,7.4456224,0,0,0,0,0,0,0,0,1,1,0,7.7251773,0,57.33,53.46,57.9,51.84,8.333333333333334,1,1,0,0,5,13,4,1,420,499519.34,128979.86,439841.06,0,2869.387,0,3390.1733 +5171,6303,11255,-9,11254,11253,1,0,24,0,0,0,1,1,-9,0,5,7.8921647,7.8517776,0,0,0,-975.39459,0,2,1,2021,6,0,38,38,1,0,1,6.8203778,6.8203778,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,241,-104735.66,0,0,0,0,0,938.53363 +5171,6304,11256,-9,11254,11253,1,1,23,0,0,0,1,1,1,0,4,7.6577244,8.1305094,0,0,0,-913.66821,-9,2,1,2021,6,0,40,0,1,0,1,5.6998372,5.6998372,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,497,28063.287,0,0,0,0,0,1462.9196 +5171,6305,11257,-9,11254,11253,1,0,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-929.26129,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,1,0,4,13,1,1,907,0,0,0,0,0,0,0 +5171,6306,11258,-9,11254,11253,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1018.4171,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,5,1,1,0,0,0,13,1,1,5349,0,0,0,0,0,0,0 +5172,6307,11259,11260,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.8695254,6.0795202,10,-11,-36.620342,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7327204,51.77,58.57,59.63,41.44,8.333333333333334,1,1,0,0,0,10,2,1,1140,569056.56,196617.03,307805.19,0,0,0,1731.5985 +5172,6307,11260,11259,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.1313825,6.5274796,10,11,84.774849,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3107944,6.4542813,59.63,41.44,51.77,58.57,8.333333333333334,1,1,0,0,7,10,2,1,1140,569056.56,196617.03,307805.19,0,0,0,1731.5985 +5173,6308,11261,-9,-9,-9,1,0,96,0,0,0,1,1,-9,0,3,0,7.6902366,7.7528515,0,0,-1055.3363,-9,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,28.131231,0,273.71783,0,1,1,0,5.8200188,7.6465302,57.55,22.72,-9,-9,5,1,1,0,0,5,7,3,1,280,164931.3,86645.422,0,0,0,0,1628.3315 +5174,6309,11262,11263,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.7374077,8.476449,42,3,145.61877,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8665948,8.2967472,54.94,53.18,54.79,55.86,8.333333333333334,1,1,0,0,0,9,4,1,481.5,2070205.3,1243646.1,545987.56,0,0,0,5932.9014 +5174,6309,11263,11262,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1458831,7.2286673,42,-3,-65.088417,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5657935,7.3924589,54.79,55.86,54.94,53.18,10,1,1,0,0,0,9,4,1,481.5,2070205.3,1243646.1,545987.56,0,0,0,5932.9014 +5175,6310,11264,11265,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,9.0967398,8.8583813,54,3,43.173252,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,8.7180357,6.658833,57.57,49.69,49,48,8.333333333333334,1,1,0,0,7,12,5,0,867.5,3697496.5,1177823.5,404090.75,0,0,0,5225.4624 +5175,6310,11265,11264,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,52,-3,45.809795,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49,48,57.57,49.69,5,1,1,0,1,7,12,5,0,867.5,3697496.5,1177823.5,404090.75,0,0,0,5225.4624 +5176,6311,11266,-9,11267,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.67493,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,3,0,1017,116938.45,-17090.955,149979.39,36460.359,4600.2275,0,1873.7368 +5176,6311,11267,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.1779575,8.0608263,0,0,0,-1024.0411,-9,-9,3,2021,5,0,32,0,1,0,0,12.638554,12.638554,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,15,8,3,0,1017,116938.45,-17090.955,149979.39,36460.359,4600.2275,0,1873.7368 +5176,6312,11268,-9,11267,-9,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-891.74524,-9,1,-9,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.4892426,0,37.36,58.26,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,2038,-77475.375,0,0,0,0,0,-157.64009 +5177,6313,11269,11270,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3206825,6.2859974,7,0,68.548203,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0515642,34.75,46.14,31.92,23.76,5,1,1,0,0,0,10,2,1,301,316758.69,37014.828,314553.5,0,0,0,379.37146 +5177,6313,11270,11269,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,4.375021,4.2790937,7,0,-33.952927,0,3,3,2021,20,10,0,0,4,10,0,0,0,0,0,0,1,0,24.330311,0,0,1,1,0,0,3.8685777,31.92,23.76,34.75,46.14,3.333333333333333,1,1,0,0,0,10,2,1,301,316758.69,37014.828,314553.5,0,0,0,379.37146 +5178,6314,11271,11273,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.0812483,7.8138905,0,1,-4,-27.323202,-9,-9,-9,2021,13,4,45,0,1,4,0,6.9173265,6.9173265,0,0,0,0,0,0,0,0,1,1,0,0,0,44.56,59.1,39.5,58.86,1.666666666666667,3,4,0,0,11,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11272,-9,11271,11273,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.1692,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11273,11271,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.5648432,7.7045836,0,1,4,-103.13972,-9,-9,-9,2021,22,7,23,0,1,7,0,11.679019,11.679019,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.5,58.86,44.56,59.1,1.666666666666667,1,1,0,0,13,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11274,-9,11271,11273,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.6385,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5179,6315,11275,11276,-9,-9,1,0,52,0,1,0,3,3,-9,1,1,0,0,0,21,0,0,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.78,25.84,34.66,22.06,3.333333333333333,1,1,0,0,0,7,1,0,518.5,61255.797,0,0,0,0,755.04834,2795.1367 +5179,6315,11276,11275,-9,-9,1,1,52,0,1,0,3,3,-9,1,2,0,0,0,20,0,0,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.66,22.06,29.78,25.84,1.666666666666667,1,1,0,0,0,7,1,0,518.5,61255.797,0,0,0,0,755.04834,2795.1367 +5179,6316,11277,-9,11275,11276,1,0,21,0,1,0,2,2,-9,0,1,7.8517985,7.8861046,0,0,0,-1037.0242,0,3,3,2021,19,6,38,48,1,6,1,9.2163029,9.2163029,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.44,51.88,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,190,-64172.152,-15739.841,0,0,7771.0317,0,1022.0281 +5179,6317,11278,-9,11275,11276,1,0,19,0,1,0,2,2,1,0,4,7.8566656,7.6128168,0,0,0,-982.77728,-9,3,3,2021,14,1,34,0,1,1,1,7.4899631,7.4899631,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,4,7,3,0,737,-68788.445,-129582.16,0,0,5065.5225,0,906.664 +5180,6318,11279,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.4429264,8.5854912,6.4373441,0,0,-1123.1925,0,2,-9,2021,15,5,39,39,1,5,0,12.098682,12.098682,.05,.05,0,0,0,0,0,0,1,1,0,6.1310296,0,27.98,63,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,1286,99638.352,34452.727,0,0,0,0,2286.0725 +5181,6319,11280,11281,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.4681768,7.0099406,0,10,-2,-120.81606,0,3,3,2021,7,0,20,30,1,0,0,8.7652969,8.7652969,.05,.05,0,0,0,0,0,0,0,0,0,2.3532505,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1832,294057.09,328022.38,150383.69,137950.23,0,5233.54,3554.48 +5181,6319,11281,11280,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7038755,8.5919676,0,10,2,-42.375668,0,3,3,2021,6,0,38,37,1,0,0,18.857706,18.857706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1832,294057.09,328022.38,150383.69,137950.23,0,5233.54,3554.48 +5182,6320,11282,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.2829914,8.3583479,0,0,0,-1141.3505,0,-9,-9,2021,12,0,42,48,1,0,0,10.492659,10.492659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,12,4,0,351,-67480.781,-29013.775,92337.961,49878.66,2756.1797,0,1799.546 +5183,6321,11283,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.7156816,7.1382008,6.2008243,0,0,-964.89386,0,2,2,2021,9,0,16,16,1,0,0,6.1457043,6.1457043,0,0,0,0,0,0,0,74.5,0,0,0,4.9938245,6.1993599,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,553,858436.44,217271.88,552649.88,0,0,0,916.15942 +5184,6322,11284,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.5020208,8.5880108,0,0,0,-975.49219,0,-9,-9,2021,10,1,35,39,1,1,0,18.314819,18.314819,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,-9,-9,3.333333333333333,1,1,0,0,6,6,5,0,991,63932.684,-44833.645,0,0,0,0,2265.0891 +5185,6323,11285,11286,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.83254,4.893199,52,3,50.286232,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.861928,4.9916282,56.77,52.22,67.45,34.18,8.333333333333334,1,1,0,0,0,11,2,1,191.5,258445.88,147658.31,107296.69,18478.633,388.86926,0,1285.5889 +5185,6323,11286,11285,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,3.5066776,3.3437917,52,-3,-84.783531,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4415224,67.45,34.18,56.77,52.22,8.333333333333334,1,1,0,0,8,11,2,1,191.5,258445.88,147658.31,107296.69,18478.633,388.86926,0,1285.5889 +5186,6324,11287,11288,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.4743462,8.7195396,0,21,1,-112.37613,0,3,3,2021,7,0,44,45,1,0,0,10.864092,10.864092,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,44.56,59.44,8.333333333333334,1,1,0,0,10,6,5,1,2161,1377858,550059.25,385065.75,0,0,0,3373.0713 +5186,6324,11288,11287,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.4993401,8.3768892,5.8001595,21,-1,6.9364491,0,3,3,2021,14,2,70,55,1,2,0,7.4329624,7.4329624,0,0,0,0,0,0,0,14.5,0,0,0,6.5596104,5.0462766,44.56,59.44,59.29,49.68,8.333333333333334,1,1,0,0,10,6,5,1,2161,1377858,550059.25,385065.75,0,0,0,3373.0713 +5187,6325,11289,-9,11290,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.57556,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1172.5,-59782.25,0,0,0,0,257.82132,2011.27 +5187,6325,11290,-9,-9,-9,1,0,34,0,3,0,2,2,-9,1,4,0,0,0,0,0,-1080.8131,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.04,64.75,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1172.5,-59782.25,0,0,0,0,257.82132,2011.27 +5188,6326,11291,11292,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.820509,8.719595,0,25,-6,133.58896,0,2,2,2021,6,2,45,41,1,2,0,16.998659,16.998659,0,0,0,0,0,0,0,0,1,1,0,0,0,49.33,51.63,45.99,51.88,8.333333333333334,1,1,0,0,9,6,5,1,1179.5,1009603,400797.25,412791.25,0,0,0,5605.502 +5188,6326,11292,11291,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.1542463,9.2134695,0,7,6,4.8303642,0,-9,-9,2021,11,2,48,45,1,2,0,20.947317,20.947317,0,0,0,0,0,0,0,0,1,1,0,4.0229707,0,45.99,51.88,49.33,51.63,6.666666666666667,1,1,0,0,9,6,5,1,1179.5,1009603,400797.25,412791.25,0,0,0,5605.502 +5188,6327,11293,-9,11291,11292,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1096.1288,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.150773,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,718,47499.121,0,0,0,0,0,-154.74667 +5189,6328,11294,11295,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.9339943,8.8911295,5.7396183,9,0,-46.163471,0,2,3,2021,12,1,25,30,1,1,0,30.568157,30.568157,0,0,0,0,0,0,0,0,1,1,0,4.1143575,5.9649839,44.59,59.08,54.22,39.67,6.666666666666667,1,1,0,0,10,9,5,1,1622.5,821592.38,504620.19,291939.72,0,0,0,3436.9331 +5189,6328,11295,11294,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.2238212,5.3270311,9,9,-32.370918,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0560117,5.5866747,54.22,39.67,44.59,59.08,8.333333333333334,1,1,0,0,5,9,5,1,1622.5,821592.38,504620.19,291939.72,0,0,0,3436.9331 +5190,6329,11296,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1009.8184,0,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,9.0902443,0,0,1,1,0,0,0,46.31,21,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,6710,0,0,0,0,0,0,625.47736 +5191,6330,11297,-9,11299,11298,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.02643,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11298,11299,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,7.2338028,7.1516671,0,15,2,31.368729,-9,2,2,2021,8,0,40,0,1,0,0,4.0005531,4.0005531,.05,.05,0,0,0,0,0,0,1,1,0,9.041091,0,57.06,57.76,59.53,56.44,6.666666666666667,1,1,0,0,7,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11299,11298,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.9406977,7.9983635,0,15,-2,-8.4115725,-9,2,2,2021,6,0,22,0,1,0,0,13.09036,13.09036,0,0,0,0,0,0,0,0,1,1,0,5.447258,0,59.53,56.44,57.06,57.76,10,1,1,0,0,10,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11300,-9,11299,11298,1,0,16,0,2,1,2,0,-9,0,1,0,0,0,0,0,-1038.678,-9,2,1,2021,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.81,51.25,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11301,-9,11299,11298,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.05347,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6331,11302,-9,11299,11298,1,1,19,0,2,1,2,0,-9,0,1,0,6.9742899,6.7259445,0,0,-1106.3276,-9,2,1,2021,27,9,0,0,2,9,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3357811,0,4.94,63.41,-9,-9,0,1,1,0,0,2,9,2,1,258,30534.049,-56503.359,0,0,238.34306,0,311.42514 +5192,6332,11303,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.9294076,5.9588165,0,0,-1054.9829,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,26.776463,0,0,1,1,0,0,5.645196,30.36,40.25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,970,360851.56,192644.34,274037.38,0,0,0,1320.2468 +5193,6333,11304,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.1036367,8.2001934,6.2864318,0,0,-801.83527,0,2,2,2021,10,0,40,37,1,0,0,10.064192,10.064192,.05,.05,0,0,0,0,0,0,1,1,0,6.2176347,0,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,9,5,3,1,495.5,144659.78,45148.273,119890.05,117130.8,0,0,3093.7424 +5193,6333,11305,-9,11304,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.4433,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,5,3,1,495.5,144659.78,45148.273,119890.05,117130.8,0,0,3093.7424 +5193,6334,11306,-9,11304,-9,1,0,18,0,1,0,2,2,-9,0,4,0,3.0900156,3.3412955,0,0,-986.23981,1,2,-9,2021,21,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1148994,0,33.14,64.63,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,403,-85128.078,0,0,0,0,-538.79181,-129.37048 +5194,6335,11307,11308,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,5.8244715,5.8807096,7,-1,16.518736,0,3,3,2021,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9903569,57.06,57.76,52.93,55.31,8.333333333333334,1,1,0,0,7,13,3,1,1098,862492.56,667357.88,157993.97,0,2177.2791,0,2045.9686 +5194,6335,11308,11307,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.2860713,7.4575424,7,1,-100.38882,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6560025,52.93,55.31,57.06,57.76,10,1,1,0,0,6,13,3,1,1098,862492.56,667357.88,157993.97,0,2177.2791,0,2045.9686 +5195,6336,11309,-9,11310,11313,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1060.209,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11310,11313,-9,-9,1,0,45,0,3,0,2,2,-9,1,2,0,0,0,23,-7,0,0,3,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.66,34.54,55.6,47.8,3.333333333333333,1,1,0,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11311,-9,11310,11313,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-913.62988,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11312,-9,11310,11313,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-971.85175,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11313,11310,-9,-9,1,1,52,0,3,0,2,2,-9,0,2,0,0,0,23,7,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.6,47.8,54.66,34.54,6.666666666666667,1,1,0,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6337,11314,-9,11310,11313,1,1,19,0,3,0,2,2,-9,0,5,7.9812255,8.0562496,0,0,0,-987.5672,0,2,2,2021,5,0,60,25,1,0,1,4.9079251,4.9079251,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,7,4,0,940,-67078.344,93653.406,0,0,0,0,736.67877 +5196,6338,11315,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.7054024,8.6237974,0,0,0,-831.44299,0,2,3,2021,5,0,35,35,1,0,0,20.095596,20.095596,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,294,215982.7,15492.772,286318,110149.54,-111.89587,-966.70203,1986.3517 +5197,6339,11316,-9,-9,-9,1,0,35,0,1,0,3,3,-9,1,3,0,6.7656636,6.5187426,0,0,-1008.8159,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.5284467,0,42.31,49.45,-9,-9,5,1,1,0,0,4,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5197,6339,11317,-9,11316,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-971.62323,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5197,6339,11318,-9,11316,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1103.8207,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5198,6340,11319,11320,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,41,3,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,39.56,49,48,6.666666666666667,2,3,0,1,0,7,1,1,1995.5,164508.69,0,211936.38,0,0,0,1717.981 +5198,6340,11320,11319,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,44.77,39.56,7,2,3,0,0,0,7,1,1,1995.5,164508.69,0,211936.38,0,0,0,1717.981 +5199,6341,11321,11322,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2989454,8.22647,0,42,1,-72.507149,0,3,3,2021,8,0,40,37,1,0,0,11.450314,11.450314,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.92,31.61,55.96,49.93,10,1,1,0,0,9,1,4,0,1116.5,304056.88,183898.92,170572.16,0,4437.7461,9048.7559,2222.1233 +5199,6341,11322,11321,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.0740709,6.9675059,5.0944228,42,-1,-19.863235,0,2,2,2021,8,0,17,18,1,0,0,7.6250768,7.6250768,.05,.05,0,0,0,0,0,7,0,0,0,0,4.9064698,55.96,49.93,60.92,31.61,10,1,1,0,0,11,1,4,0,1116.5,304056.88,183898.92,170572.16,0,4437.7461,9048.7559,2222.1233 +5200,6342,11323,11324,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2121305,8.2794838,0,9,-1,-63.601948,0,2,2,2021,8,0,44,44,1,0,0,11.897294,11.897294,.05,.05,.05,0,0,0,0,0,1,1,0,2.9790821,0,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,300,440044.56,103993.2,306401.56,15316.607,0,0,3383.1147 +5200,6342,11324,11323,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.4684849,7.8761172,0,9,1,131.09331,0,3,3,2021,6,0,30,30,1,0,0,14.093586,14.093586,0,0,0,0,0,0,0,0,1,1,0,.42877856,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,12,4,1,300,440044.56,103993.2,306401.56,15316.607,0,0,3383.1147 +5200,6343,11325,-9,11324,11323,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-918.76709,-9,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6096289,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,1,12,1,1,1166,37867.773,0,0,0,0,0,-442.82825 +5201,6344,11326,11327,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.015995,8.784811,0,9,4,23.7188,0,2,1,2021,12,0,38,40,1,0,0,25.685034,25.685034,.05,.05,0,0,0,0,0,0,1,1,0,7.4586535,0,58.32,50.22,44.19,58.01,8.333333333333334,1,1,0,0,10,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11327,11326,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.6507597,8.8055134,0,9,-4,42.854511,0,2,2,2021,19,8,45,40,1,8,0,15.573799,15.573799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,58.32,50.22,8.333333333333334,1,1,0,0,10,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11328,-9,11327,11326,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.9641,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11329,-9,11327,11326,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0115,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5202,6345,11330,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.8520699,8.7792931,0,0,0,-1028.5195,0,-9,-9,2021,10,0,43,42,1,0,0,20.260311,20.260311,.05,.05,0,0,0,0,0,0,1,1,0,2.6435294,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1237,497429.69,46215.516,215169.34,0,0,0,2006.0717 +5202,6346,11331,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.8876491,7.7682471,0,0,0,-1055.0011,0,-9,-9,2021,11,0,32,31,1,1,0,9.5295944,9.5295944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,7,1,1,0,0,1,10,3,1,465,-40192.059,29666.338,0,0,0,0,956.38196 +5203,6347,11332,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1000.321,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.63,48.56,-9,-9,3.333333333333333,1,1,0,1,3,7,1,0,354,127554.66,0,0,0,0,0,1363.4653 +5204,6348,11333,11336,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,7.7575998,7.7737622,0,27,13,-45.848183,0,3,3,2021,10,0,65,65,1,0,0,3.962606,3.962606,.05,.05,.05,0,0,0,0,0,1,1,0,6.8021765,0,54.61,51.04,51.93,49.21,6.666666666666667,1,1,0,0,7,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11334,-9,11336,11333,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.07324,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11335,-9,11336,11333,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1183.2699,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0365264,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11336,11333,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.0095921,8.9928751,0,29,-13,-35.952698,0,2,2,2021,12,0,49,49,1,0,0,14.537151,14.537151,0,0,0,0,0,0,0,0,1,1,0,2.2737002,0,51.93,49.21,54.61,51.04,8.333333333333334,1,1,0,0,6,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5205,6349,11337,11338,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,7.84975,7.6467447,10,1,46.49575,0,2,2,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2206602,34.91,34.48,58.56,46.45,6.666666666666667,1,1,0,1,7,7,5,1,764.5,-1171.9858,0,0,0,0,0,3105.1577 +5205,6349,11338,11337,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.6930275,8.5926008,0,10,-1,-60.906494,0,2,2,2021,6,0,55,50,1,0,0,12.251152,12.251152,0,0,0,0,0,0,0,0,1,1,0,1.8831464,0,58.56,46.45,34.91,34.48,8.333333333333334,1,1,0,0,13,7,5,1,764.5,-1171.9858,0,0,0,0,0,3105.1577 +5206,6350,11339,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.7154126,5.96771,0,0,-968.33405,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7268758,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1474,52515.793,0,0,0,0,0,1019.6246 +5207,6351,11340,11342,-9,-9,1,0,32,1,1,0,2,2,-9,0,2,7.1061459,6.9872775,0,9,-2,2.4306555,0,-9,-9,2021,10,0,16,0,1,0,0,8.1140776,8.1140776,0,0,0,0,0,0,0,0,1,1,0,0,0,39.88,52.43,57.16,56.15,3.333333333333333,1,1,0,0,8,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5207,6351,11341,-9,11340,11342,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.9458,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5207,6351,11342,11340,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.0922461,8.8682461,0,9,2,14.759283,0,2,2,2021,6,0,58,60,1,0,0,16.913565,16.913565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.88,52.43,6.666666666666667,1,1,0,0,10,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5208,6352,11343,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0088902,8.1438122,0,0,0,-826.69281,0,2,2,2021,9,0,40,50,1,0,0,10.107254,10.107254,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,617,125064.02,0,0,0,0,0,1882.5192 +5209,6353,11344,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.6370859,6.6713915,0,0,-1034.927,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,4.5569687,6.0556855,46.855904,0,1,1,0,1.8052291,6.6481004,36.61,17.55,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,311,136191.52,82994.023,0,0,3967.6326,0,2547.7021 +5210,6354,11345,-9,11346,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1011.4101,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,4,1,1182,-76262.242,58958.086,0,0,6081.8315,0,1710.573 +5210,6354,11346,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.8780622,8.4254875,0,0,0,-1121.8994,0,1,2,2021,10,0,45,49,1,0,0,14.36673,14.36673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,4,2,0,0,9,8,4,1,1182,-76262.242,58958.086,0,0,6081.8315,0,1710.573 +5211,6355,11347,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.4264364,6.3480334,0,0,-991.4718,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,4.322937,0,0,1,1,0,2.1567571,6.2082272,51.84,35.77,-9,-9,10,1,1,0,0,0,1,2,1,745,156600.58,70300.516,283239.47,0,0,0,828.82599 +5212,6356,11348,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1021.1666,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,1.666666666666667,1,1,0,0,2,6,1,1,868,0,0,0,0,0,0,1997.1229 +5213,6357,11349,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.1226974,6.7521725,0,0,-974.15802,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1691322,6.8760905,60.95,16.59,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,83,291137.09,-26293.299,0,0,0,0,1527.9977 +5214,6358,11350,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,7.3760142,7.5602789,0,0,-1015.5254,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,6.1682835,7.591835,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,198,0,0,0,0,0,0,882.25543 +5215,6359,11351,11354,-9,-9,1,1,34,0,3,0,1,1,-9,0,5,8.4718237,8.5391455,0,3,-1,36.69672,0,-9,-9,2021,0,0,40,40,1,0,0,17.748758,17.748758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,63.99,43.47,10,3,4,0,0,5,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11352,-9,11354,11351,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.0494,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11353,-9,11354,11351,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.87585,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11354,11351,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.8875375,8.1958437,0,3,1,30.90225,0,-9,-9,2021,6,0,50,35,1,0,0,5.7360787,5.7360787,.05,.05,0,0,0,0,0,42,0,0,0,.70352948,0,63.99,43.47,62.39,56.71,10,3,4,0,0,7,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11355,-9,11354,11351,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.47491,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5216,6360,11356,-9,11359,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-887.03186,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11357,-9,11359,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.6658,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11358,-9,11359,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-977.08911,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11359,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,9.4377832,9.5204935,0,0,0,-1111.3031,0,1,1,2021,9,1,38,38,1,1,0,46.05365,46.05365,0,0,0,0,0,0,0,0,0,0,0,5.6178002,0,46.7,57.37,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5217,6361,11360,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9906669,8.015686,0,0,0,-962.61633,0,2,2,2021,8,0,42,42,1,0,0,9.0203676,9.0203676,0,0,0,0,0,0,0,0,0,0,0,2.5240693,0,37.02,58.5,-9,-9,5,1,1,0,0,9,5,4,0,1338,-114273.32,0,0,0,0,0,1641.6442 +5218,6362,11361,11364,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.5577374,9.7693138,0,9,-3,78.765633,0,3,2,2021,21,8,55,55,1,8,0,30.489351,30.489351,0,0,0,0,0,0,0,7,0,0,0,7.7969456,0,48.53,58.91,61.88,28.48,6.666666666666667,1,1,0,0,11,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11362,-9,11364,11361,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.07947,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11363,-9,11364,11361,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6169,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11364,11361,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.0974641,6.8635073,0,13,3,-11.324865,0,2,3,2021,10,0,14,34,1,0,0,10.447785,10.447785,0,0,0,0,0,0,0,14.5,0,0,0,0,0,61.88,28.48,48.53,58.91,6.666666666666667,1,1,0,0,11,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5219,6363,11365,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.4072418,8.656352,0,0,0,-1001.9961,0,3,-9,2021,9,0,37,37,1,0,0,12.745578,12.745578,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,449,220393.22,-99768.656,120419.18,0,0,0,2216.4377 +5220,6364,11366,-9,-9,-9,1,0,56,0,1,0,3,3,-9,0,2,0,0,0,0,0,-861.336,-9,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.85,37.38,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,2289,95361.742,0,0,0,0,339.78506,1614.2878 +5221,6365,11367,11368,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8226171,6.8688426,11,-2,47.841473,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8876038,46.5,58.26,46.5,58.26,8.333333333333334,1,1,0,0,0,13,2,1,584.5,164335.64,186357.73,90526.117,0,0,0,1465.2512 +5221,6365,11368,11367,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,11,2,21.527662,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,46.5,58.26,8.333333333333334,1,1,0,0,0,13,2,1,584.5,164335.64,186357.73,90526.117,0,0,0,1465.2512 +5222,6366,11369,-9,11370,11371,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5317,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11370,11371,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.0663853,8.7360229,0,14,0,8.0087996,0,2,1,2021,11,0,60,56,1,0,0,12.406883,12.406883,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11371,11370,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,8.1184702,7.9509907,0,14,0,-112.68501,0,3,3,2021,9,1,40,40,1,1,0,7.5752664,7.5752664,.05,.05,0,0,0,0,0,0,1,1,0,6.7398882,0,54.1,59.11,57.06,57.76,8.333333333333334,4,5,0,0,10,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11372,-9,11370,11371,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9193,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5223,6367,11373,11374,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.5962152,8.3561649,0,5,-7,92.724556,-9,-9,-9,2021,6,0,52,0,1,0,0,11.111466,11.111466,.05,.05,0,0,0,0,0,0,0,0,0,5.6435595,0,57.06,57.76,57.16,56.15,10,1,1,0,0,1,12,4,1,516,292971.22,116616.8,162761.03,0,10406.794,544.74829,1662.0432 +5223,6367,11374,11373,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,5,7,103.98238,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,5,12,4,1,516,292971.22,116616.8,162761.03,0,10406.794,544.74829,1662.0432 +5224,6368,11375,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.3011398,7.1815319,0,0,-988.20758,0,3,2,2021,13,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9638476,41.11,38.91,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,245,728947.25,57791.609,362643.19,0,0,0,733.99585 +5225,6369,11376,-9,11378,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.8399,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5225,6369,11377,11378,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,7.7321458,7.8622937,0,1,4,139.41924,-9,-9,-9,2021,12,3,38,0,1,3,0,6.1098685,6.1098685,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.58,47.36,8.333333333333334,1,1,0,0,1,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5225,6369,11378,11377,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,7.8313413,7.7487926,0,1,-4,66.060867,0,2,2,2021,7,0,41,0,1,0,0,6.5880208,6.5880208,0,0,0,0,0,0,0,0,1,1,0,0,0,52.58,47.36,49.04,55.86,10,1,1,0,0,5,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5226,6370,11379,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.1288,0,2,2,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.38,46.16,-9,-9,1.666666666666667,3,4,1,1,0,8,1,0,489,18842.359,0,0,0,0,0,773.91638 +5227,6371,11380,11381,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.8730063,8.1531763,5.0303311,3,-3,-15.733839,0,3,2,2021,0,0,40,36,1,0,0,7.6309948,7.6309948,0,0,0,0,0,0,0,0,1,1,0,5.2634625,0,59.43,58.05,53,55,10,1,1,0,0,6,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11381,11380,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.9226041,7.8337836,0,3,3,-82.670303,0,-9,-9,2021,9,0,22,37,1,1,0,14.254366,14.254366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,59.43,58.05,8,4,1,0,0,1,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11382,-9,11380,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.8812,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11383,-9,11380,-9,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-848.94196,-9,1,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.6,48.03,-9,-9,1.666666666666667,1,1,0,1,0,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5228,6372,11384,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1024.6167,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.37,60.64,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,549,-75988.703,0,0,0,0,994.4809,-19.671846 +5229,6373,11385,11386,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.7359486,8.7059584,0,2,-3,24.827032,0,2,2,2021,16,5,53,49,1,5,0,11.133022,11.133022,0,0,0,0,0,0,0,0,0,0,0,6.5325584,0,31.77,61.1,46.44,59.62,5,1,1,0,0,7,1,5,0,360,27813.391,29795.541,15180.597,28772.279,0,0,2766.2793 +5229,6373,11386,11385,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1088142,8.3272438,0,2,3,81.320831,0,-9,-9,2021,9,0,56,50,1,0,0,6.9760756,6.9760756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,31.77,61.1,8.333333333333334,1,1,0,0,3,1,5,0,360,27813.391,29795.541,15180.597,28772.279,0,0,2766.2793 +5230,6374,11387,-9,11390,11388,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.36884,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11388,11390,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.9482985,8.8980408,0,6,7,14.78378,0,2,1,2021,15,3,39,39,1,3,0,19.121262,19.121262,0,0,0,0,0,0,0,0,1,1,0,2.2411482,0,51.14,60.45,52.02,57.3,6.666666666666667,1,1,0,0,6,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11389,-9,11390,11388,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6825,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11390,11388,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.271946,8.0901155,0,6,-7,-27.838993,0,2,2,2021,6,0,31,31,1,0,0,14.497216,14.497216,0,0,0,0,0,0,0,0,1,1,0,0,0,52.02,57.3,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5231,6375,11391,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,9.1313753,8.8508892,0,0,0,-881.80914,0,1,2,2021,10,0,41,40,1,0,0,25.567427,25.567427,.05,.05,0,0,0,0,0,0,0,0,0,3.0267644,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,1169,7436.8613,0,0,0,0,0,2954.7251 +5232,6376,11392,-9,11393,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1073.2512,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5232,6376,11393,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,8.0507479,8.1002464,0,0,0,-1001.3616,0,2,3,2021,5,0,31,47,1,0,0,9.9640427,9.9640427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,2,0,0,5,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5232,6376,11394,-9,11393,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.38507,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5233,6377,11395,-9,11397,11398,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.9567,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11396,-9,11397,11398,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.69702,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11397,11398,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.3754244,8.3275776,0,7,2,82.059258,0,3,3,2021,10,0,36,23,1,0,0,15.404812,15.404812,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.81,36.7,36.19,45.47,8.333333333333334,1,1,0,0,8,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11398,11397,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.702013,8.7261877,0,7,-2,-24.918959,0,1,1,2021,24,12,43,43,1,12,0,14.082747,14.082747,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,36.19,45.47,55.81,36.7,5,1,1,0,0,8,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5234,6378,11399,11400,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0289021,7.7581468,0,7,6,39.141766,0,3,-9,2021,18,6,32,32,1,6,0,10.677289,10.677289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.52,41.71,43.18,52.17,6.666666666666667,1,1,0,0,8,11,5,1,1212,754364.38,503046.13,218268.44,129691.66,-863.0415,0,3525.833 +5234,6378,11400,11399,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,9.0701323,8.6092253,0,7,-6,-68.464134,0,-9,-9,2021,9,1,50,49,1,1,0,16.74659,16.74659,.05,.05,0,0,0,0,0,0,0,0,0,2.1912594,0,43.18,52.17,41.52,41.71,1.666666666666667,1,1,0,1,8,11,5,1,1212,754364.38,503046.13,218268.44,129691.66,-863.0415,0,3525.833 +5235,6379,11401,11404,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.5459127,8.3182163,0,16,-1,-49.509537,0,2,3,2021,8,0,25,17,1,0,0,21.120329,21.120329,.05,.05,0,0,0,0,0,0,0,0,0,2.3833036,0,51.24,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11402,-9,11401,11404,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.2397,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11403,-9,11401,11404,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9416,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11404,11401,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.5322762,9.7651987,0,16,1,154.2229,0,2,2,2021,7,0,46,47,1,0,0,34.069523,34.069523,.05,.05,0,0,0,0,0,0,0,0,0,4.5838313,0,51.24,58.84,51.24,58.84,6.666666666666667,1,1,0,0,8,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5236,6380,11405,-9,-9,-9,1,0,71,0,2,0,2,2,-9,0,4,0,7.1243482,6.9370289,0,0,-990.99194,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.429492,7.406909,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,467,408303.94,166053.86,179481.94,0,0,-25.661179,1043.3577 +5236,6381,11406,11409,11405,-9,1,0,41,0,2,0,1,1,-9,0,3,7.9118543,8.0982065,0,11,3,72.619171,-9,2,-9,2021,18,6,20,0,1,6,0,16.456377,16.456377,.05,.05,0,0,0,0,0,74.5,1,1,0,2.4393699,0,48.45,57.49,42.89,62.6,8.333333333333334,1,1,0,0,12,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11407,-9,11406,11409,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.14807,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11408,-9,11406,11409,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.5449,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11409,11406,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,9.3055382,9.4109421,0,11,-3,-115.68078,-9,-9,-9,2021,12,2,37,0,1,2,0,27.928495,27.928495,.05,.05,0,0,0,0,0,0,1,1,0,2.8381243,0,42.89,62.6,48.45,57.49,6.666666666666667,1,1,0,0,14,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5237,6382,11410,11411,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5358591,8.3327713,0,32,2,-16.252407,0,2,2,2021,10,0,42,38,1,0,0,10.918989,10.918989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,50.66,47.59,8.333333333333334,4,2,0,0,9,4,4,1,952,440533.84,143776.88,166610.88,0,14605.777,0,2337.821 +5237,6382,11411,11410,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.1838951,7.0327673,0,32,-2,-62.792042,0,3,2,2021,14,2,20,20,1,2,0,8.3588734,8.3588734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.66,47.59,60.3,46.58,10,1,1,0,0,9,4,4,1,952,440533.84,143776.88,166610.88,0,14605.777,0,2337.821 +5237,6383,11412,-9,11411,11410,1,0,26,0,0,0,2,2,-9,0,3,8.1434069,7.7692375,0,0,0,-930.12598,0,2,2,2021,12,0,44,40,1,0,1,6.8576083,6.8576083,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,454,-41012.422,33803.16,84019.945,50627.91,0,-222.04384,451.19742 +5238,6384,11413,11414,-9,-9,1,0,69,1,3,0,2,2,-9,0,3,0,5.5517216,5.2500472,12,-2,93.653008,0,3,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2926455,5.4830461,31.25,53.29,47.15,56.66,3.333333333333333,1,1,0,0,8,12,3,1,1214.5,2544881.5,881552.38,273396.25,0,0,0,3771.1895 +5238,6384,11414,11413,-9,-9,1,1,71,1,3,0,1,1,-9,0,3,0,8.2854099,8.3288021,12,2,-22.944983,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0123472,47.15,56.66,31.25,53.29,5,1,1,0,0,6,12,3,1,1214.5,2544881.5,881552.38,273396.25,0,0,0,3771.1895 +5238,6385,11415,-9,11418,11416,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.14502,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11416,11418,-9,-9,1,1,45,1,3,0,1,1,-9,0,3,8.8339291,8.962615,0,12,6,115.84299,-9,-9,-9,2021,9,1,41,0,1,1,0,17.796021,17.796021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,50.93,42.62,6.666666666666667,4,1,0,0,13,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11417,-9,11418,11416,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.3418,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11418,11416,11413,11414,1,0,39,1,3,0,1,1,-9,0,3,8.4951,8.5309181,0,12,-6,40.406452,0,2,2,2021,8,0,37,37,1,0,0,17.11845,17.11845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.93,42.62,60.29,52.11,6.666666666666667,1,1,0,0,13,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11419,-9,11418,11416,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.01575,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5239,6386,11420,11421,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.13732,7.2906866,59,6,-57.45927,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3490167,6.9409423,57.92,51.82,51.42,29.35,8.333333333333334,1,1,0,0,0,4,3,1,943,591159.63,141254.05,152546,0,0,0,2234.2068 +5239,6386,11421,11420,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.1796713,6.9758797,59,-6,137.81517,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,6.2319989,0,1,1,0,2.8657532,6.8543558,51.42,29.35,57.92,51.82,3.333333333333333,1,1,0,0,0,4,3,1,943,591159.63,141254.05,152546,0,0,0,2234.2068 +5240,6387,11422,11423,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.3781796,8.6406069,0,8,0,36.860012,0,-9,-9,2021,12,2,38,38,1,2,0,13.029853,13.029853,.05,.05,0,0,0,0,0,0,0,0,0,7.2624135,0,56.34,29.58,49.04,55.86,8.333333333333334,1,1,0,0,7,10,5,0,447.5,519954.22,126075.54,629001.5,199882.91,25074.262,1272.4948,6298.5068 +5240,6387,11423,11422,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.513443,9.4584227,7.348949,8,0,-23.975937,0,1,2,2021,12,0,8,44,1,0,0,165.24174,165.24174,.05,.05,0,0,0,0,0,0,0,0,0,7.3068604,0,49.04,55.86,56.34,29.58,6.666666666666667,1,1,0,0,13,10,5,0,447.5,519954.22,126075.54,629001.5,199882.91,25074.262,1272.4948,6298.5068 +5241,6388,11424,11425,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8281474,6.5202127,9,9,48.514549,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1448483,6.8905578,45.41,46.4,59.14,52.5,10,1,1,0,0,0,7,3,1,1151,852533,257221.91,401168,0,0,0,1492.4218 +5241,6388,11425,11424,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.8833823,7.224884,0,46,0,48.44701,0,3,3,2021,7,0,24,30,1,0,0,10.843912,10.843912,0,0,0,0,0,0,0,0,1,1,0,1.3492556,0,59.14,52.5,45.41,46.4,8.333333333333334,1,1,0,0,10,7,3,1,1151,852533,257221.91,401168,0,0,0,1492.4218 +5242,6389,11426,11427,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.2381449,8.8475132,0,8,-1,5.9247499,0,3,3,2021,17,5,46,40,1,5,0,28.559551,28.559551,.05,.05,0,0,0,0,0,7,0,0,0,4.2329812,0,50,50,51.24,58.84,6.666666666666667,1,1,0,0,9,13,5,1,1703,1989670.8,1326930.5,295210.06,51768.445,0,0,6770.1987 +5242,6389,11427,11426,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2808905,8.914731,0,8,1,57.18388,0,-9,-9,2021,12,2,48,48,1,2,0,22.741459,22.741459,.05,.05,0,0,0,0,0,7,0,0,0,5.2654443,0,51.24,58.84,50,50,8.333333333333334,1,1,0,0,10,13,5,1,1703,1989670.8,1326930.5,295210.06,51768.445,0,0,6770.1987 +5242,6390,11428,-9,11427,11426,1,0,19,0,0,0,2,2,1,0,4,4.7647581,5.0380516,0,0,0,-983.69147,-9,1,1,2021,20,9,5,0,1,9,1,3.4592884,3.4592884,0,0,0,0,0,0,0,0,0,0,0,.17150581,0,39.52,58.98,-9,-9,10,1,1,0,0,2,13,2,1,263,-157666.55,0,0,0,61.532066,0,-481.71994 +5243,6391,11429,11430,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.3036242,8.5886326,0,34,0,57.761642,0,1,2,2021,10,0,45,40,1,0,0,12.718352,12.718352,0,0,.05,0,0,0,0,0,0,0,0,6.3754287,0,56.57,57.78,52.97,51.29,8.333333333333334,1,1,0,0,8,6,4,1,793,234214.72,143334.33,183303.72,0,0,0,3134.9028 +5243,6391,11430,11429,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.0568886,7.3003912,37,0,-7.999414,0,2,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1700997,6.9108057,52.97,51.29,56.57,57.78,8.333333333333334,1,1,0,0,7,6,4,1,793,234214.72,143334.33,183303.72,0,0,0,3134.9028 +5243,6392,11431,-9,11430,11429,1,0,23,0,0,0,1,1,1,0,4,7.8496256,7.5175433,0,0,0,-1081.8961,-9,1,1,2021,11,0,37,0,1,0,1,7.298295,7.298295,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,289,120205.58,0,0,0,21375.988,0,737.9873 +5244,6393,11432,11433,-9,-9,1,0,70,0,1,0,3,3,-9,0,3,0,0,0,27,14,-6.5121408,-9,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.7600229,0,41.85,37.29,53.49,14.07,0,1,1,0,0,0,11,3,1,573.5,51853.961,5821.5259,138349.09,82003.578,0,483.71378,2266.2153 +5244,6393,11433,11432,-9,-9,1,1,56,0,1,0,2,2,-9,1,1,7.6878533,7.7864289,0,27,-14,.30153731,-9,2,2,2021,11,1,19,0,1,1,0,16.030458,16.030458,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.49,14.07,41.85,37.29,5,1,1,0,0,10,11,3,1,573.5,51853.961,5821.5259,138349.09,82003.578,0,483.71378,2266.2153 +5244,6394,11434,-9,11432,11433,1,0,32,0,1,0,2,2,-9,1,3,0,6.0287886,5.8641496,0,0,-948.78876,-9,3,2,2021,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5898724,0,9.800000000000001,53.67,-9,-9,0,1,1,0,0,7,11,2,1,415,65069.258,-49653.375,0,0,11666.806,0,1830.6199 +5245,6395,11435,11436,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.9231868,4.7068386,56,5,-36.942482,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8806374,4.8317003,54.55,49.1,60.3,43.72,8.333333333333334,1,1,0,0,9,5,2,1,224.5,104144.69,103827.13,0,0,0,0,1947.5652 +5245,6395,11436,11435,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.4858642,6.1949196,56,-5,-70.113617,0,-9,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6472831,6.6008668,60.3,43.72,54.55,49.1,8.333333333333334,1,1,0,0,0,5,2,1,224.5,104144.69,103827.13,0,0,0,0,1947.5652 +5246,6396,11437,-9,11438,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.0651,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,500,239166.59,225191.77,0,0,6430.9111,0,3058.0693 +5246,6396,11438,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5240669,8.7396221,6.332612,0,0,-1014.566,0,2,3,2021,8,0,38,38,1,0,0,19.95059,19.95059,.05,.05,0,0,0,0,0,0,1,1,0,6.1898642,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,500,239166.59,225191.77,0,0,6430.9111,0,3058.0693 +5247,6397,11439,11440,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,0,0,2,-1,-49.971085,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,42.95,36.08,46.55,47.77,6.666666666666667,4,2,1,0,5,4,3,1,699,865520.63,558143.81,201856.08,0,0,0,1365.4846 +5247,6397,11440,11439,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.0117922,7.843143,2,1,52.57885,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4707088,8.0370188,46.55,47.77,42.95,36.08,6.666666666666667,1,1,0,0,1,4,3,1,699,865520.63,558143.81,201856.08,0,0,0,1365.4846 +5248,6398,11441,11442,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3786621,7.3334446,0,8,0,28.97493,0,-9,2,2021,14,3,15,15,1,3,0,10.829691,10.829691,0,0,0,0,0,0,0,2,0,0,0,.2345697,0,32.92,58.01,54.1,59.11,8.333333333333334,1,1,0,0,8,12,4,1,627.5,1340233.5,1193712.3,103290.82,44675.492,0,0,2193.895 +5248,6398,11442,11441,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.4316645,8.6836367,0,8,0,116.84972,0,2,2,2021,11,0,37,37,1,0,0,14.869115,14.869115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.92,58.01,5,1,1,0,0,8,12,4,1,627.5,1340233.5,1193712.3,103290.82,44675.492,0,0,2193.895 +5249,6399,11443,-9,11446,11444,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.0555,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11444,11446,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.6119432,9.5066814,0,18,0,64.886467,0,2,2,2021,15,3,50,50,1,3,0,34.740723,34.740723,.05,.05,0,0,0,0,0,0,0,0,0,5.8004236,0,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11445,-9,11446,11444,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.772,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11446,11444,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.9362936,9.1783886,0,18,0,-44.149609,0,2,2,2021,6,0,48,62,1,0,0,16.323311,16.323311,0,0,0,0,0,0,0,0,0,0,0,3.6028535,0,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,7,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11447,-9,11446,11444,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.8663,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5250,6400,11448,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.4204493,8.751708,0,0,0,-939.60309,0,2,2,2021,13,1,36,-9,1,1,0,17.951097,17.951097,.05,.05,0,0,0,0,0,0,0,0,0,3.9683149,0,42.73,54.46,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,89,-67929.914,38206.414,0,0,0,0,2006.1547 +5251,6401,11449,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.9113522,8.0469475,0,0,0,-1042.3964,0,1,1,2021,12,0,50,36,1,0,0,9.215929,9.215929,.05,.05,0,0,0,0,0,0,0,0,0,1.6130103,0,40.72,54.38,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,2044,-40293.766,-42194.691,148017.56,94522.867,0,0,2531.0288 +5252,6402,11450,11451,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,5.9593334,6.3775139,3,5,167.80975,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0981216,57.16,56.15,34.92,16.66,8.333333333333334,1,1,0,0,3,1,2,1,252,239283.73,77572.992,135527.33,0,0,0,-36.404221 +5252,6402,11451,11450,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,5.5518513,5.3192987,3,-5,-35.76553,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7985702,34.92,16.66,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,1,252,239283.73,77572.992,135527.33,0,0,0,-36.404221 +5253,6403,11452,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1079.2483,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,2,1,1,327,-71622.688,0,0,0,0,0,1151.0828 +5254,6404,11453,11454,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.9060078,8.8301134,0,33,3,25.81098,0,2,3,2021,7,0,50,55,1,0,0,18.482046,18.482046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,53,6.666666666666667,1,1,0,0,7,12,5,1,459.5,451929.63,254810.72,243107.8,162205.47,0,0,3601.9001 +5254,6404,11454,11453,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0630441,6.9138179,0,33,-3,58.39394,0,3,3,2021,10,0,10,16,1,1,0,18.623272,18.623272,0,0,0,0,0,0,0,0,0,0,0,2.9044819,0,52,53,57.06,57.76,8,1,1,0,0,1,12,5,1,459.5,451929.63,254810.72,243107.8,162205.47,0,0,3601.9001 +5255,6405,11455,-9,11456,11458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.40979,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11456,11458,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.9110146,9.1317482,0,19,-1,-53.113136,0,2,2,2021,9,1,83,42,1,1,0,12.897811,12.897811,0,0,0,0,0,0,0,0,0,0,0,3.5554521,0,51.83,57.2,27.32,55.13,8.333333333333334,1,1,0,0,15,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11457,-9,11456,11458,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.66711,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11458,11456,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.0939264,9.4699154,0,19,1,-47.733715,0,2,1,2021,18,6,60,60,1,6,0,14.144541,14.144541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.32,55.13,51.83,57.2,8.333333333333334,1,1,0,0,15,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5256,6406,11459,11460,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,0,0,0,21,-5,-70.372978,0,2,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4695754,0,60.02,56.42,57.06,57.76,10,1,1,0,0,4,9,5,1,378.5,1424829.5,156393.84,1093776.3,189865.02,0,0,16022.633 +5256,6406,11460,11459,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,9.5216541,9.7230673,0,21,5,22.72261,0,2,2,2021,7,0,50,60,1,0,0,40.328625,40.328625,0,0,0,0,0,0,0,0,0,0,0,9.7444477,0,57.06,57.76,60.02,56.42,10,1,1,0,0,9,9,5,1,378.5,1424829.5,156393.84,1093776.3,189865.02,0,0,16022.633 +5257,6407,11461,11462,-9,-9,1,0,67,0,0,0,3,3,-9,1,1,0,0,0,42,-1,-45.138054,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,1,0,33.397354,0,0,1,1,0,0,0,34.6,17,35.19,35.48,1.666666666666667,1,1,0,0,0,2,3,1,1289,244636.94,369007.75,0,0,0,1502.5615,3373.9893 +5257,6407,11462,11461,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.4104004,8.0496454,7.2104883,42,1,135.56612,0,3,3,2021,14,2,24,24,1,2,0,8.8919077,8.8919077,.05,.05,0,0,0,0,0,7,1,1,0,4.2656608,7.4004107,35.19,35.48,34.6,17,6.666666666666667,1,1,0,0,14,2,3,1,1289,244636.94,369007.75,0,0,0,1502.5615,3373.9893 +5258,6408,11463,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3651233,7.7186742,0,0,-1070.1455,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4645019,7.5930524,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,2564,476315.97,196011.98,81499.531,0,0,0,1313.52 +5259,6409,11464,-9,11465,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.7223,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11465,-9,-9,-9,1,0,40,0,4,0,2,2,-9,1,1,0,0,0,0,0,-1070.3667,0,2,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.25,20.77,-9,-9,0,1,1,0,1,3,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11466,-9,11465,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.3593,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11467,-9,11465,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.876,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5260,6410,11468,11470,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.2682142,8.134325,0,7,0,249.03804,0,-9,-9,2021,9,0,37,38,1,0,0,9.4713411,9.4713411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5260,6410,11469,-9,11470,11468,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.4141,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5260,6410,11470,11468,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.0576468,9.160964,0,7,0,-31.681162,0,2,2,2021,5,0,40,30,1,0,0,22.250877,22.250877,.05,.05,0,0,0,0,0,0,1,1,0,.98853397,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,9,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5261,6411,11471,11472,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.7768831,8.0679483,0,27,2,-89.882469,0,2,2,2021,6,0,17,15,1,0,0,17.318766,17.318766,0,0,0,0,0,0,0,0,0,0,0,3.7854681,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,9,8,5,1,511.5,1721713,0,1604275.5,35716.57,0,0,5637.0068 +5261,6411,11472,11471,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.5898533,9.3098001,0,6,-2,-32.736305,0,2,3,2021,6,0,43,44,1,0,0,30.509172,30.509172,0,0,0,0,0,0,0,0,0,0,0,5.18926,0,58.15,52.91,57.06,57.76,10,1,1,0,0,9,8,5,1,511.5,1721713,0,1604275.5,35716.57,0,0,5637.0068 +5261,6412,11473,-9,11471,11472,1,1,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-1101.0334,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,.18835515,0,0,0,0,1.6389612,0,49.34,58.54,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,740,-157189.78,0,0,0,31947.949,0,181.49997 +5262,6413,11474,-9,11475,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.79657,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,645.5,38687.945,-15404.535,48469.762,15494.15,0,618.68634,2810.6626 +5262,6413,11475,-9,-9,-9,1,0,42,0,1,0,1,1,1,0,5,8.4857836,8.717989,0,0,0,-883.52924,-9,3,2,2021,5,1,48,0,1,1,0,11.752276,11.752276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,6,8,4,0,645.5,38687.945,-15404.535,48469.762,15494.15,0,618.68634,2810.6626 +5263,6414,11476,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.1759434,7.9600658,0,0,0,-1092.0225,0,2,2,2021,9,0,38,38,1,0,0,10.684298,10.684298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,33.6,-9,-9,6.666666666666667,1,1,0,0,8,5,3,0,317.5,-5920.8594,54747.5,0,0,0,758.09473,1822.501 +5263,6414,11477,-9,11476,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-863.60266,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,317.5,-5920.8594,54747.5,0,0,0,758.09473,1822.501 +5263,6415,11478,-9,11476,-9,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.8161,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,10,1,1,0,0,1,5,1,0,474,20608.598,0,0,0,0,1493.7118,247.77844 +5264,6416,11479,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.8103218,8.1740465,0,9,2,113.29665,0,1,2,2021,9,2,43,45,1,2,0,16.971798,16.971798,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,56.94,49.53,6.666666666666667,1,1,0,0,8,2,5,1,186,-6837.5679,48720.238,181009.5,77689.688,0,0,2010.2767 +5264,6417,11480,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.181757,8.3184595,0,9,-2,-132.85492,0,-9,-9,2021,9,1,39,40,1,1,0,14.16283,14.16283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,38.51,59.43,8.333333333333334,1,1,0,0,7,2,5,1,649,-66608.875,41203.961,-8744.0488,53600.523,3773.2263,947.6543,1310.2236 +5265,6418,11481,11482,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.7728376,7.7924819,21,-5,119.77145,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0244079,7.8111339,27.74,32.3,42.86,24.11,3.333333333333333,1,1,0,0,0,10,4,1,1079.5,1392396.3,803173.19,330383.69,0,17249.16,7532.1426,3942.7268 +5265,6418,11482,11481,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.7748857,7.0846286,20,5,29.485161,0,2,2,2021,16,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8399267,7.3641944,42.86,24.11,27.74,32.3,6.666666666666667,4,2,0,0,0,10,4,1,1079.5,1392396.3,803173.19,330383.69,0,17249.16,7532.1426,3942.7268 +5266,6419,11483,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1037.9103,0,-9,-9,2021,30,12,0,50,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.3,52.73,-9,-9,1.666666666666667,1,1,1,1,6,11,1,1,947,115127.48,0,0,0,0,0,331.17267 +5267,6420,11484,11486,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,5.3558898,5.2415357,0,21,10,5.0201612,0,2,2,2021,9,0,40,24,1,1,0,.53654647,.53654647,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11485,-9,11486,11484,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.4807,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11486,11484,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,8,-10,-91.837982,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11487,-9,11486,11484,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.074,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11488,-9,11486,11484,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-986.5517,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6421,11489,-9,11486,11484,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-930.31299,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,8,2,0,431,0,0,0,0,0,0,136.4241 +5268,6422,11490,11491,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.9371433,6.1663694,52,0,-3.1186259,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,1.5186898,0,2,1,1,0,6.0950322,5.3957462,57.9,22.03,56.11,44.4,6.666666666666667,1,1,0,0,5,7,2,1,1184,374345.25,28105.438,314184.44,0,0,0,1492.2024 +5268,6422,11491,11490,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.5423074,4.7295303,51,0,-28.672232,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7244453,4.9588275,56.11,44.4,57.9,22.03,5,1,1,0,0,4,7,2,1,1184,374345.25,28105.438,314184.44,0,0,0,1492.2024 +5268,6423,11492,-9,11491,11490,1,1,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-985.83929,-9,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,725,462178.59,172328.97,0,0,0,0,719.75568 +5269,6424,11493,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.92873,8.6528463,7.3848977,0,0,-1120.7975,0,3,3,2021,16,4,40,38,1,4,0,6.8767843,6.8767843,.05,.05,0,0,0,0,0,0,0,0,0,.90244502,7.7197294,34.11,58.61,-9,-9,3.333333333333333,1,1,0,0,10,13,4,1,1616,237647.95,205723.92,209935.73,0,0,630.42328,1619.2982 +5269,6425,11494,-9,11493,-9,1,1,25,0,0,0,1,1,1,0,4,8.0485859,7.9355202,0,0,0,-917.19666,-9,2,-9,2021,13,1,37,0,1,1,1,10.266988,10.266988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,51.79,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,1167,-137063.94,47942.543,0,0,0,-965.79926,2126.4099 +5270,6426,11495,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.2386351,8.2850933,0,0,0,-1030.3215,0,-9,-9,2021,12,0,21,21,1,0,0,20.423811,20.423811,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.2,64.19,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,2035,80781.766,-2060.7024,0,0,0,0,1907.9545 +5271,6427,11496,11497,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,5.2638302,5.5125327,8,2,-25.157486,0,2,2,2021,8,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6129918,0,55.36,51.57,60.29,52.11,8.333333333333334,1,1,0,0,13,4,2,1,675.5,109635.39,-22047.406,0,0,0,0,263.96365 +5271,6427,11497,11496,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,8,-2,119.35232,0,2,2,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1711903,0,60.29,52.11,55.36,51.57,8.333333333333334,1,1,0,0,13,4,2,1,675.5,109635.39,-22047.406,0,0,0,0,263.96365 +5272,6428,11498,-9,11499,11500,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.6968,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11499,11500,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,3,-2,12.041434,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.64,41.62,33.43,59.21,10,1,1,0,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11500,11499,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,7.8758507,8.0347919,0,3,2,-77.185707,0,-9,-9,2021,12,0,38,15,1,0,0,7.0656586,7.0656586,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,47.64,41.62,8.333333333333334,1,1,0,0,1,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11501,-9,11499,11500,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7771,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5273,6429,11502,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.8991013,7.0094142,0,0,-1014.3359,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6612453,48.69,23.44,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,722,579060.81,294077.91,48056.945,0,0,0,1520.8844 +5274,6430,11503,-9,-9,-9,1,1,23,0,0,0,2,2,0,0,2,0,0,0,0,0,-921.51678,-9,1,1,2021,24,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.84,55.7,-9,-9,3.333333333333333,1,1,0,0,2,9,1,0,219,45827.613,0,0,0,0,0,0 +5275,6431,11504,11505,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.6358099,7.7566419,26,-16,47.590439,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4790635,7.9190063,54.96,53.17,54.78,34.44,8.333333333333334,1,1,0,0,6,7,4,1,529.5,2210309.5,815171.19,610637.94,0,0,0,3551.3677 +5275,6431,11505,11504,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.0108185,8.2294216,23,16,19.378517,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7650328,7.8879724,54.78,34.44,54.96,53.17,8.333333333333334,1,1,0,0,0,7,4,1,529.5,2210309.5,815171.19,610637.94,0,0,0,3551.3677 +5276,6432,11506,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.9534788,7.7881227,0,0,-971.22626,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7089896,0,0,1,1,0,7.668139,7.9121709,55.6,39.56,-9,-9,10,1,1,0,0,1,2,4,1,331,684547.19,353362.97,282381,0,0,0,2662.4014 +5276,6433,11507,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.892498,8.0465679,0,0,0,-975.33112,0,-9,-9,2021,12,2,30,34,1,2,0,9.7968702,9.7968702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,99,-146934.13,-53684.109,0,0,0,0,1414.8395 +5277,6434,11508,11509,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,52,7,-72.016899,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,75.530548,0,0,1,1,0,1.6397713,0,54,46,53.95,50.89,7,1,1,0,0,0,10,2,1,1034.5,245092.06,35519.355,185271.03,0,0,0,2102.8455 +5277,6434,11509,11508,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.3935394,4.4565325,52,-7,22.047394,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1297231,4.2403326,53.95,50.89,54,46,6.666666666666667,1,1,0,0,0,10,2,1,1034.5,245092.06,35519.355,185271.03,0,0,0,2102.8455 +5278,6435,11510,11511,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.9737802,7.9743681,46,3,-40.58757,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3596687,8.24366,51.77,58.57,49.44,56.93,0,1,1,0,0,4,13,3,1,1355,1264578.9,427737.91,242777.16,0,0,0,2512.5825 +5278,6435,11511,11510,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,46,-3,-53.038513,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,51.77,58.57,8.333333333333334,1,1,0,0,0,13,3,1,1355,1264578.9,427737.91,242777.16,0,0,0,2512.5825 +5279,6436,11512,-9,11516,11513,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.09308,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11513,11516,-9,-9,1,1,41,1,3,0,3,3,-9,0,4,9.2833338,9.3311453,0,7,3,28.283197,0,-9,-9,2021,9,0,40,-9,1,1,0,25.50565,25.50565,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,33.25,57.5,8,1,1,0,0,1,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11514,-9,11516,11513,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.48016,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11515,-9,11516,11513,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.3801,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11516,11513,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,0,0,0,7,-3,-28.96843,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,51,56,6.666666666666667,1,1,0,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5280,6437,11517,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.1620274,8.4249153,0,0,0,-1093.8068,0,3,2,2021,9,0,26,35,1,0,0,19.332958,19.332958,0,0,.05,0,0,0,0,0,1,1,0,2.8296533,0,58.3,34.18,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,2042,597192.5,519395.44,212436.89,252761.52,1074.743,0,1387.5612 +5280,6438,11518,-9,-9,11517,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.66565,0,-9,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,386,0,0,0,0,0,0,301.22571 +5280,6439,11519,-9,-9,11517,1,0,20,0,0,0,2,2,-9,0,4,6.799005,6.6499867,0,0,0,-1000.6949,-9,-9,2,2021,16,6,20,0,1,6,0,4.6530986,4.6530986,0,0,0,0,0,0,0,0,1,1,0,.57039917,0,41.28,60.79,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,1059,92768.07,0,0,0,0,0,1231.7683 +5281,6440,11520,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2907295,8.3619003,0,17,1,176.56171,0,3,3,2021,7,0,41,38,1,0,0,11.107189,11.107189,.05,.05,0,0,0,0,0,0,0,0,0,4.3244414,0,59.43,58.05,43.59,59.64,10,1,1,0,0,11,7,5,1,258,1093332.1,596658.44,353652.06,0,0,0,1372.0249 +5281,6441,11521,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1224947,8.2001486,0,16,-1,30.593504,0,3,3,2021,7,0,11,11,1,0,0,32.598602,32.598602,.05,.05,0,0,0,0,0,0,0,0,0,3.8074319,0,43.59,59.64,59.43,58.05,8.333333333333334,1,1,0,0,11,7,5,1,404,-133656,108467.48,0,0,249.36247,0,1724.4697 +5282,6442,11522,11523,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.4588041,5.8396196,6,2,-95.045219,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,15.954696,0,0,1,1,0,5.9780388,5.8058524,44.11,18.02,53.46,39.14,3.333333333333333,1,1,0,0,0,11,2,1,519,557169.38,271725.56,194221.81,0,0,0,1021.6086 +5282,6442,11523,11522,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,-2,49.543724,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.46,39.14,44.11,18.02,1.666666666666667,1,1,0,0,0,11,2,1,519,557169.38,271725.56,194221.81,0,0,0,1021.6086 +5283,6443,11524,11525,-9,-9,1,0,75,0,0,0,1,1,-9,0,5,0,0,0,55,-5,-144.21724,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,58.02,43.5,52.88,8.333333333333334,1,1,0,0,0,9,2,1,421,291315.94,124352.45,293702.03,0,0,0,1396.6552 +5283,6443,11525,11524,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.2394438,7.5032325,55,5,70.609299,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1783385,43.5,52.88,50.38,58.02,8.333333333333334,1,1,0,0,0,9,2,1,421,291315.94,124352.45,293702.03,0,0,0,1396.6552 +5284,6444,11526,11527,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.6242609,7.2801943,0,7,-10,43.665722,0,3,3,2021,9,1,3,10,1,1,0,39.305683,39.305683,0,0,0,0,0,0,0,0,0,0,0,6.1539707,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,0,1235,545478.31,295901.63,289409.31,97461.016,0,0,7911.6631 +5284,6444,11527,11526,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.6092405,9.6351757,0,7,10,184.82448,0,3,3,2021,3,0,62,50,1,0,0,25.634838,25.634838,0,0,0,0,0,0,0,0,0,0,0,5.1727557,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,7,10,5,0,1235,545478.31,295901.63,289409.31,97461.016,0,0,7911.6631 +5285,6445,11528,-9,11529,11530,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5851,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11529,11530,-9,-9,1,0,46,0,2,0,2,2,-9,1,4,8.2470121,8.1237268,0,18,-4,54.661156,0,2,2,2021,10,1,30,32,1,1,0,18.783062,18.783062,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,38.94,60.48,8.333333333333334,1,1,0,0,12,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11530,11529,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.4668598,8.8776512,0,18,4,-124.93005,0,2,2,2021,6,0,60,54,1,0,0,11.041658,11.041658,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.94,60.48,57.16,56.15,6.666666666666667,1,1,0,0,12,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11531,-9,11529,11530,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9562,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5286,6446,11532,11533,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.5644732,8.6344566,0,3,-1,114.87836,0,-9,-9,2021,9,0,24,24,1,0,0,28.875072,28.875072,.05,.05,0,0,0,0,0,0,1,1,0,2.6497531,0,49.63,54.22,53.14,51.28,5,1,1,0,0,3,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5286,6446,11533,11532,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.1983185,8.2893581,0,3,1,19.627665,0,3,2,2021,7,0,42,43,1,0,0,9.4011211,9.4011211,.05,.05,0,0,0,0,0,0,1,1,0,4.3595495,0,53.14,51.28,49.63,54.22,6.666666666666667,1,1,0,0,11,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5286,6446,11534,-9,11533,11532,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7289,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5287,6447,11535,11538,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.4863653,8.4101038,0,6,-4,71.433075,0,2,2,2021,7,0,41,40,1,0,0,13.991375,13.991375,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,67.93000000000001,17.44,8.333333333333334,1,1,0,0,8,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11536,-9,11535,11538,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1020.1593,-9,2,1,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5145843,0,57.06,57.76,-9,-9,10,4,2,0,0,3,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11537,-9,11535,11538,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.702,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11538,11535,-9,-9,1,1,54,0,1,0,1,1,-9,0,2,8.0447426,8.0504789,0,26,4,2.8268361,0,-9,-9,2021,11,0,40,40,1,0,0,8.7635069,8.7635069,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,67.93000000000001,17.44,57.06,57.76,6.666666666666667,1,1,0,0,4,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5288,6448,11539,-9,11542,11540,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6147,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11540,11542,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.1307859,8.3354387,0,18,1,-14.803164,0,2,2,2021,12,0,40,40,1,0,0,11.196626,11.196626,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,54.33,51.24,58.84,6.666666666666667,1,1,0,0,14,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11541,-9,11542,11540,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5656,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11542,11540,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.2920313,8.5288305,0,18,-1,69.41835,0,2,3,2021,12,0,38,38,1,0,0,14.415751,14.415751,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.73,54.33,8.333333333333334,1,1,0,0,11,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5289,6449,11543,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.8004694,7.4862385,0,0,0,-932.97797,0,-9,3,2021,13,3,30,48,1,3,0,8.0994234,8.0994234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.46,48.95,-9,-9,6.666666666666667,1,1,0,0,14,7,3,1,152,-66891.023,-126242.77,0,0,0,0,1219.425 +5290,6450,11544,-9,-9,-9,1,1,44,1,1,0,2,2,-9,0,2,7.6164713,7.5433922,0,0,0,-1038.045,0,-9,-9,2021,11,0,36,35,1,0,0,7.820529,7.820529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.79,46.83,-9,-9,1.666666666666667,1,1,0,1,2,11,3,0,900,110733.48,25907.375,0,0,3434.6213,2697.6118,878.03717 +5290,6451,11545,-9,11546,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-837.00513,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,551.5,-31974.73,39631.332,0,0,7433.1152,0,1541.3618 +5290,6451,11546,-9,-9,11544,1,0,26,1,1,0,2,2,-9,0,4,7.9192033,7.2956662,0,0,0,-977.82208,0,-9,2,2021,2,0,31,40,1,0,1,10.49186,10.49186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,6,11,3,0,551.5,-31974.73,39631.332,0,0,7433.1152,0,1541.3618 +5291,6452,11547,-9,-9,-9,1,1,39,0,0,0,1,1,-9,1,4,0,0,0,0,0,-908.55713,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.6259284,0,49.41,58.28,-9,-9,10,1,1,0,0,7,12,1,1,563,-144415.08,-71794.719,0,0,1708.621,37.669861,-759.36865 +5292,6453,11548,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,5.5833254,5.4463906,0,0,-824.61615,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,1.7999501,0,18.277775,0,1,1,0,7.4105768,5.6463599,59.13,28.23,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,101,1071183.9,25409.574,514337.25,0,0,0,1945.1371 +5293,6454,11549,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.9809465,6.7661171,0,0,-1046.1763,0,3,3,2021,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8429952,32.87,35.28,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,326,269755.88,199104.53,0,0,0,-197.35385,1001.5414 +5294,6455,11550,-9,11555,11554,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.0603,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11551,-9,11555,11554,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-845.86859,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11552,-9,11555,11554,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.5559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11553,-9,11555,11554,1,1,17,1,3,1,2,0,-9,0,5,0,0,0,0,0,-982.26831,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11554,11555,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.5473585,8.0334988,0,11,1,59.536774,-9,2,2,2021,9,0,39,0,1,0,0,10.583726,10.583726,.05,.05,0,0,0,0,0,0,1,1,0,1.6642582,0,54.2,57.49,26.26,59.84,8.333333333333334,1,1,0,0,7,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11555,11554,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,0,0,0,11,-1,38.314487,-9,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,59.84,54.2,57.49,8.333333333333334,1,1,0,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5295,6456,11556,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1032.8131,-9,2,2,2021,17,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,10,1,1,0,0,0,8,1,0,262,114849.2,0,0,0,0,0,1495.84 +5296,6457,11557,11558,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4052591,8.6348,0,5,1,-69.490738,0,-9,-9,2021,7,1,35,35,1,1,0,15.374824,15.374824,0,0,0,0,0,0,0,0,0,0,0,2.9568524,0,58.55,51.64,53.14,51.28,8.333333333333334,1,1,0,0,5,6,4,1,955,208869.42,7121.916,0,0,24482.918,6237.8955,2144.7563 +5296,6457,11558,11557,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,5,-1,121.73138,0,-9,-9,2021,12,0,0,32,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.799197,0,53.14,51.28,58.55,51.64,8.333333333333334,1,1,1,0,9,6,4,1,955,208869.42,7121.916,0,0,24482.918,6237.8955,2144.7563 +5297,6458,11559,11560,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.6406116,8.594615,0,6,0,3.5492864,0,2,1,2021,8,0,39,39,1,0,0,15.144668,15.144668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52.32,48.93,8.333333333333334,1,1,0,0,8,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5297,6458,11560,11559,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.3037434,8.6022873,0,6,0,-36.666862,0,-9,-9,2021,14,4,39,39,1,4,0,12.358872,12.358872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.32,48.93,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5297,6458,11561,-9,11560,11559,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78583,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5298,6459,11562,11563,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.8600836,8.9103737,0,6,2,-176.11143,0,3,3,2021,3,0,37,37,1,0,0,20.932863,20.932863,0,0,0,0,0,0,0,0,1,1,0,0,0,46.94,59.6,49.86,55.31,8.333333333333334,1,1,0,0,7,13,5,1,428,759996.5,813629.63,0,0,0,0,5045.4912 +5298,6459,11563,11562,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5986099,8.6340837,0,6,-2,39.041019,0,2,2,2021,12,0,37,40,1,0,0,18.39225,18.39225,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.94,59.6,8.333333333333334,1,1,0,0,7,13,5,1,428,759996.5,813629.63,0,0,0,0,5045.4912 +5299,6460,11564,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1020.3798,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.57,40.57,-9,-9,3.333333333333333,1,1,1,1,0,2,1,0,2751,93734.945,0,0,0,0,0,853.8233 +5300,6461,11565,11566,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2871914,8.2880325,0,7,4,-23.753277,0,-9,-9,2021,9,0,38,38,1,0,0,12.565409,12.565409,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,62.49,55.09,8.333333333333334,1,1,0,0,8,12,5,1,403,114687.88,117938.41,401369.19,297380.13,8937.9365,0,4455.3491 +5300,6461,11566,11565,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.790926,8.9919872,0,7,-4,2.9448299,0,-9,-9,2021,6,0,37,42,1,0,0,22.72677,22.72677,.05,.05,.05,0,0,0,0,0,0,0,0,7.9641533,0,62.49,55.09,49.29,54.59,10,1,1,0,0,8,12,5,1,403,114687.88,117938.41,401369.19,297380.13,8937.9365,0,4455.3491 +5301,6462,11567,-9,11570,11571,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.1378,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11568,-9,11570,11571,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.1538,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11569,-9,11570,11571,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.64917,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11570,11571,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,0,0,0,16,0,-64.390694,0,3,2,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,55.01,36.8,8,2,3,0,0,3,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11571,11570,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,7.3774223,7.2911057,0,16,0,103.95032,0,2,2,2021,11,1,24,39,1,1,0,7.2376456,7.2376456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.01,36.8,49,56,5,2,3,0,0,7,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5302,6463,11572,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,0,0,0,0,0,-921.66846,0,3,3,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9358234,0,24.07,62.16,-9,-9,3.333333333333333,1,1,1,1,10,12,1,1,5193,0,0,0,0,0,0,51.999649 +5303,6464,11573,-9,-9,-9,1,1,18,0,3,0,3,3,-9,0,5,7.5695968,7.735631,0,0,0,-888.41168,-9,1,2,2021,9,0,43,0,1,1,1,5.7446342,5.7446342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,0,0,1,10,3,0,353,-125505.1,0,0,0,0,0,1270.6157 +5304,6465,11574,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.8061018,8.4844799,0,0,0,-1054.3212,0,2,1,2021,8,0,35,40,1,0,0,19.256039,19.256039,0,0,0,0,0,0,0,0,0,0,0,.57627314,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,897,671679.13,160261.53,397895.31,0,0,0,2956.7607 +5305,6466,11575,-9,11578,11576,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.3782,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11576,11578,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.5094271,8.6878633,0,17,0,-34.148094,0,3,2,2021,9,0,39,39,1,0,0,17.886019,17.886019,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,49.51,46.42,45.08,48.01,6.666666666666667,1,1,0,0,10,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11577,-9,11578,11576,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7166,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11578,11576,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1393957,6.9788074,0,15,0,-14.627911,0,3,3,2021,12,1,24,22,1,1,0,6.3178754,6.3178754,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.08,48.01,49.51,46.42,5,1,1,0,0,10,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5306,6467,11579,11580,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,29,1,0,0,2,2,2021,12,2,0,30,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,10,1,1,614,-22.59375,-17620.693,0,0,-1052.4941,472.4668,397.76038 +5306,6467,11580,11579,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,0,0,0,27,-1,0,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15137896,0,54.96,53.17,57.33,53.46,8.333333333333334,1,1,0,0,11,10,1,1,614,-22.59375,-17620.693,0,0,-1052.4941,472.4668,397.76038 +5306,6468,11581,-9,11579,11580,1,1,21,0,0,0,2,2,-9,0,3,7.9582844,8.016202,0,0,0,-955.62036,0,2,2,2021,15,3,42,39,1,3,0,8.4197502,8.4197502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,49.1,-9,-9,5,1,1,0,0,2,10,3,1,401,56182.336,-44571.27,0,0,0,0,1639.809 +5306,6469,11582,-9,11579,11580,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-929.9834,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1050,183653.53,0,0,0,0,0,0 +5307,6470,11583,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.2312412,8.4160843,0,0,0,-865.59558,0,3,3,2021,14,2,58,56,1,2,0,9.8533545,9.8533545,.05,.05,.05,0,0,0,0,0,0,0,0,7.6181664,0,46.3,43.84,-9,-9,5,1,1,0,0,14,9,4,1,149,574451.75,250751.8,122880.94,0,0,0,2287.8909 +5308,6471,11584,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,6.3283386,6.7510886,0,0,-865.55243,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3300757,46.35,15.52,-9,-9,0,1,1,0,1,0,1,2,1,257,298495.16,89268.93,151504.83,0,0,0,1107.4987 +5309,6472,11585,11590,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,0,0,21,4,-23.846994,0,3,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5850592,0,46,50,52.81,56.94,8.333333333333334,2,3,0,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11586,-9,11585,11590,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7491,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11587,-9,11585,11590,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1121.976,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11588,-9,11585,11590,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.3302,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11589,-9,11585,11590,1,0,17,0,3,1,3,0,0,0,5,0,5.2703648,5.2408571,0,0,-896.58502,-9,1,1,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0640693,0,50.48,56.75,-9,-9,10,2,3,0,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11590,11585,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,8.7215223,8.7540483,0,21,-4,139.48068,0,3,3,2021,5,0,40,50,1,0,0,22.635771,22.635771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.81,56.94,46,50,10,2,3,0,0,12,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5310,6473,11591,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,4.6426673,4.296978,0,0,-957.90814,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,5.4618025,33.50547,46.85223,0,1,1,0,0,4.2771239,35.71,15.11,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,214,-91518.195,0,44730.754,0,0,0,2268.6575 +5311,6474,11592,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,9.0025473,8.9935884,0,0,0,-877.53986,0,-9,-9,2021,15,4,42,41,1,4,0,18.553286,18.553286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,-9,-9,6.666666666666667,1,1,0,0,7,7,5,0,641,282514.22,-58405.848,296248.44,88472.344,132.13914,0,2820.5356 +5312,6475,11593,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,7.6406713,7.9459314,0,0,-1018.0873,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2766619,7.4602957,27.12,32.42,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,807,246544.91,-39577.906,0,0,5812.7788,0,1565.9445 +5313,6476,11594,11595,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,3.5802491,3.7864425,48,-1,-3.2788858,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3494925,3.4266698,57.09,46.7,60.62,41.03,10,1,1,0,0,9,4,2,1,869,402349.94,177598.14,181930.14,0,0,0,1505.6533 +5313,6476,11595,11594,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0020146,5.6854196,49,1,-43.114403,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9857717,5.5961914,60.62,41.03,57.09,46.7,10,1,1,0,0,6,4,2,1,869,402349.94,177598.14,181930.14,0,0,0,1505.6533 +5314,6477,11596,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7521305,8.2158413,0,0,0,-1040.4138,0,-9,-9,2021,3,0,43,40,1,0,0,7.2376113,7.2376113,0,0,0,0,0,0,0,0,0,0,0,1.160092,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,6,11,3,0,1562,159203.64,0,0,0,0,0,980.5553 +5314,6478,11597,11598,11596,-9,1,0,22,0,0,0,2,2,-9,0,3,8.0228186,7.9335451,0,2,-4,57.823757,-9,2,2,2021,19,5,40,0,1,5,0,7.5260506,7.5260506,0,0,0,0,0,0,0,0,0,0,0,0,0,8.970000000000001,64.92,60.29,52.11,3.333333333333333,1,1,0,0,5,11,4,0,299,-57845.563,140528.52,0,0,2413.1868,0,2731.8816 +5314,6478,11598,11597,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.3221722,8.3769722,0,2,4,-118.03019,-9,-9,-9,2021,6,0,50,0,1,0,0,7.1606045,7.1606045,.05,.05,0,0,0,0,1.2138906,0,0,0,0,0,0,60.29,52.11,8.970000000000001,64.92,10,1,1,0,0,7,11,4,0,299,-57845.563,140528.52,0,0,2413.1868,0,2731.8816 +5315,6479,11599,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1652293,6.5563412,0,0,-999.53076,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4219655,6.2943468,51,46,-9,-9,8.333333333333334,1,1,0,0,2,9,2,0,820,91303.102,134913.3,0,0,0,-38.898273,983.79993 +5316,6480,11600,11601,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.2814894,7.163692,6,-5,-20.717611,0,3,3,2021,21,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8128982,7.2470245,54,51,51.83,57.2,3.333333333333333,1,1,0,0,0,11,3,1,240,1004887.9,559441.38,203967.53,0,9559.877,0,2080.8601 +5316,6480,11601,11600,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,6.9052978,6.8007736,6,5,2.3673365,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.9354477,7.0024886,51.83,57.2,54,51,8.333333333333334,1,1,0,0,4,11,3,1,240,1004887.9,559441.38,203967.53,0,9559.877,0,2080.8601 +5317,6481,11602,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.6501265,6.5896187,0,0,-716.37317,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5703239,6.4089699,53.63,51.24,-9,-9,10,1,1,0,0,4,9,2,1,2036,9364.6133,193025.66,0,0,0,0,774.32202 +5318,6482,11603,-9,11605,11604,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-995.17505,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6482,11604,11605,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.7438307,9.7269421,0,7,-2,41.701015,0,-9,-9,2021,11,2,43,43,1,2,0,43.869957,43.869957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.07,34.85,8.333333333333334,1,1,0,0,2,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6482,11605,11604,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4361944,8.603898,0,22,2,-8.5207005,0,3,3,2021,23,11,43,43,1,11,0,12.418016,12.418016,.05,.05,0,0,0,0,0,0,0,0,0,1.6979643,0,42.07,34.85,54.2,57.49,5,1,1,0,0,7,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6483,11606,-9,11605,11604,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-947.34222,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,6,1,1,2336,97749.992,0,0,0,0,0,0 +5319,6484,11607,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-967.73987,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,10,4,2,1,0,0,6,1,0,1471,310888.28,0,0,0,0,0,632.12598 +5320,6485,11608,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,6.9563718,6.8721747,0,0,-1095.9714,0,3,3,2021,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0690362,6.7133365,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,13,7,2,1,486,809377.31,335231.03,466914.59,0,0,3725.6924,423.599 +5321,6486,11609,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,5,7.7055812,7.8659911,0,0,0,-929.2511,0,2,2,2021,9,0,40,44,1,0,0,6.0894117,6.0894117,.05,.05,0,0,0,0,0,86,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,1821,-287627.75,93121.063,0,0,0,2095.8176,2454.2271 +5322,6487,11610,11611,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,0,0,5,-10,81.987434,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.263762,0,38.16,28.6,40.55,21,3.333333333333333,1,1,0,0,4,8,2,1,2260.5,335915.41,157575.94,308650.38,0,0,0,1528.5739 +5322,6487,11611,11610,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.3300471,6.6713271,5,10,-93.360695,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,29.107523,0,0,1,1,0,2.2961466,6.232945,40.55,21,38.16,28.6,3.333333333333333,1,1,0,0,5,8,2,1,2260.5,335915.41,157575.94,308650.38,0,0,0,1528.5739 +5323,6488,11612,11613,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.8414989,7.0613756,8,-1,12.20727,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2739112,6.6909146,45.91,59.89,61.27,46.03,10,1,1,0,0,0,6,3,1,464.5,686097.88,404996.75,298303.25,0,0,0,2669.9053 +5323,6488,11613,11612,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.3795633,7.2533751,56,1,24.482409,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1966128,6.9795494,61.27,46.03,45.91,59.89,10,1,1,0,0,0,6,3,1,464.5,686097.88,404996.75,298303.25,0,0,0,2669.9053 +5324,6489,11614,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-940.04407,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1028714,0,57.83,14.19,-9,-9,5,1,1,0,0,0,12,2,1,709,-84321.352,0,0,0,0,0,2179.8713 +5325,6490,11615,11616,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,5.498971,5.5366015,7,-5,-25.929956,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.763432,5.1017504,30.68,20.24,57.16,56.15,0,1,1,0,0,0,10,3,1,591.5,595010.63,345783.88,273544.06,0,0,0,2510.7275 +5325,6490,11616,11615,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,7.0852103,8.119853,7.3122401,7,5,-15.022525,0,3,3,2021,9,1,40,40,1,1,0,4.2069302,4.2069302,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9484372,57.16,56.15,30.68,20.24,8.333333333333334,1,1,0,0,7,10,3,1,591.5,595010.63,345783.88,273544.06,0,0,0,2510.7275 +5325,6491,11617,-9,11615,11616,1,0,31,0,0,0,3,3,-9,0,4,7.6021161,7.548306,0,0,0,-996.35736,0,2,2,2021,11,0,35,37,1,2,1,6.231389,6.231389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,267,123166.09,32335.996,0,0,0,0,867.3739 +5326,6492,11618,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.4960442,8.3928833,0,0,0,-981.18256,0,-9,-9,2021,12,0,50,40,1,0,0,8.6665916,8.6665916,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.11,57.99,-9,-9,3.333333333333333,1,1,0,0,7,5,4,0,295,86881.773,47265.906,92785.438,85178.43,0,0,1791.8035 +5327,6493,11619,11620,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.1080599,8.935751,0,42,-2,-52.123241,0,2,2,2021,33,12,60,50,1,12,0,14.962122,14.962122,0,0,0,0,0,0,0,2,1,1,0,.82620883,0,21.06,43.26,51.17,49.39,3.333333333333333,1,1,0,0,9,10,5,1,806.5,1764921.3,1163618.5,593779.75,0,0,0,3588.9792 +5327,6493,11620,11619,-9,-9,1,1,60,0,0,0,2,2,-9,1,3,0,7.2186041,7.3857303,9,2,40.732197,0,-9,-9,2021,20,8,0,43,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6901481,6.8053851,51.17,49.39,21.06,43.26,6.666666666666667,1,1,1,0,8,10,5,1,806.5,1764921.3,1163618.5,593779.75,0,0,0,3588.9792 +5328,6494,11621,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1208687,8.2399359,0,0,0,-1052.5759,0,-9,1,2021,12,0,20,44,1,2,0,18.798891,18.798891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,8,4,4,0,1198,235491.98,18994.076,210645.16,0,0,0,1335.2769 +5329,6495,11622,11623,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.5251732,8.4583426,52,7,-26.636417,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.273077,8.5569429,44.57,46.8,43.49,43.6,8.333333333333334,2,3,0,0,8,4,4,1,587.5,1763543.6,1128773.8,339855.94,0,0,0,3885.4478 +5329,6495,11623,11622,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,8,-7,20.50967,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7518785,0,43.49,43.6,44.57,46.8,8.333333333333334,2,3,0,0,0,4,4,1,587.5,1763543.6,1128773.8,339855.94,0,0,0,3885.4478 +5330,6496,11624,-9,11628,11630,1,0,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1101.6738,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11625,-9,11628,11630,1,1,8,2,5,1,3,0,-9,0,4,0,0,0,0,0,-908.75073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11626,-9,11628,11630,1,0,4,2,5,1,3,0,-9,0,4,0,0,0,0,0,-994.11841,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.402528,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11627,-9,11628,11630,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-980.9267,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11628,11630,-9,-9,1,0,30,2,5,0,2,2,-9,0,4,0,0,0,7,2,-40.449905,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,54.35,55.32,8.333333333333334,1,1,0,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11629,-9,11628,11630,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1015.088,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11630,11628,-9,-9,1,1,28,2,5,0,2,2,-9,0,4,8.1353598,7.9385676,0,7,-2,-93.467812,0,-9,-9,2021,9,0,60,43,1,0,0,5.5212917,5.5212917,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.35,55.32,51.49,57.57,10,1,1,0,0,4,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5331,6497,11631,11632,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,1.673995,1.6439182,44,0,-116.76295,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,2.4059412,1.5927656,55.15,45.23,59.48,33.74,10,1,1,0,0,7,10,3,1,323.5,720614,345694.56,230252.06,0,0,0,3041.1226 +5331,6497,11632,11631,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,8.2422237,8.2903252,5.5315042,44,0,46.671139,0,3,3,2021,11,0,40,38,1,0,0,9.3678265,9.3678265,.05,.05,0,0,0,0,0,0,1,1,0,5.9389544,5.6201005,59.48,33.74,55.15,45.23,10,1,1,0,0,9,10,3,1,323.5,720614,345694.56,230252.06,0,0,0,3041.1226 +5332,6498,11633,11634,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.0626135,9.1224451,0,5,-4,-1.779389,0,3,2,2021,3,0,37,55,1,0,0,25.005915,25.005915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,10,1,1,0,0,11,13,5,1,1518,1251560.9,896374.38,79118.594,0,0,-79.249222,4427.498 +5332,6498,11634,11633,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.5122566,8.1324129,0,5,4,-37.659348,0,-9,-9,2021,6,0,42,40,1,0,0,11.539313,11.539313,.05,.05,0,0,0,0,0,0,0,0,0,4.5345359,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1518,1251560.9,896374.38,79118.594,0,0,-79.249222,4427.498 +5333,6499,11635,11636,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2499475,7.1811357,11,2,-44.961948,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.393342,48.28,60.18,57.39,19.57,10,1,1,0,0,0,5,2,1,1064.5,769321.94,382608.13,281367.47,0,0,0,2638.4565 +5333,6499,11636,11635,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,11,-2,23.194664,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,13.983543,0,0,1,1,0,1.5174112,0,57.39,19.57,48.28,60.18,10,1,1,0,0,0,5,2,1,1064.5,769321.94,382608.13,281367.47,0,0,0,2638.4565 +5334,6500,11637,11638,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,55,3,0,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,4.7645402,0,120,1,1,0,0,0,48.37,49.31,46.79,41.89,10,1,1,0,0,0,2,1,1,292,320273.19,-641.01953,179568.92,0,0,0,500.27319 +5334,6500,11638,11637,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-3,0,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,46.79,41.89,48.37,49.31,10,1,1,0,0,0,2,1,1,292,320273.19,-641.01953,179568.92,0,0,0,500.27319 +5334,6501,11639,-9,11638,11637,1,1,49,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1054.9261,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.65,41.6,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,521,224153.63,0,0,0,0,0,0 +5335,6502,11640,11641,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,7.796752,8.0781345,0,1,-12,-76.389687,-9,-9,-9,2021,10,0,38,0,1,1,0,8.6456766,8.6456766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,7,4,2,0,0,1,4,4,1,1216.5,107790.42,28199.02,0,0,0,0,2527.6357 +5335,6502,11641,11640,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.0385208,7.9457049,0,1,12,-55.888054,0,3,-9,2021,3,0,38,38,1,0,0,7.8866372,7.8866372,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,10,1,1,0,0,6,4,4,1,1216.5,107790.42,28199.02,0,0,0,0,2527.6357 +5336,6503,11642,-9,-9,-9,1,0,38,0,1,0,1,1,-9,1,2,8.5279684,8.4196529,6.7157187,0,0,-1070.3025,0,2,3,2021,31,11,16,0,1,11,0,23.309921,23.309921,.05,.05,0,0,0,0,0,74.5,1,1,0,6.8244028,0,23.35,52.12,-9,-9,0,1,1,0,0,12,13,4,1,392.5,-21116.662,-50809.688,0,0,0,772.2757,1787.3481 +5336,6503,11643,-9,11642,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9561,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,392.5,-21116.662,-50809.688,0,0,0,772.2757,1787.3481 +5337,6504,11644,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.12567,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8148317,0,64.75,25.37,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,676,619390,0,501186.28,0,0,0,1892.8246 +5338,6505,11645,11646,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2835031,7.6092377,8,-8,-55.072235,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.814465,7.3253126,51.41,56.15,53.82,13.72,6.666666666666667,1,1,0,0,2,2,2,1,549,745991.25,395164.31,259742.02,0,0,0,2081.4561 +5338,6505,11646,11645,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,8,8,-4.6627488,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,126.91302,0,0,1,1,0,0,0,53.82,13.72,51.41,56.15,8.333333333333334,1,1,0,0,0,2,2,1,549,745991.25,395164.31,259742.02,0,0,0,2081.4561 +5339,6506,11647,11648,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2018013,8.2418251,0,7,1,14.602202,0,-9,-9,2021,10,0,37,37,1,1,0,13.150326,13.150326,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,55.79,52.62,7,1,1,0,0,1,6,4,1,959,36628.25,74931.188,76438.875,41289.07,4055.0942,4829.6797,3000.2993 +5339,6506,11648,11647,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0322113,7.1817808,0,32,-1,-15.727063,0,3,3,2021,11,0,19,19,1,0,0,9.720253,9.720253,.05,.05,0,0,0,0,0,0,0,0,0,6.4917469,0,55.79,52.62,51,49,6.666666666666667,1,1,0,0,9,6,4,1,959,36628.25,74931.188,76438.875,41289.07,4055.0942,4829.6797,3000.2993 +5339,6507,11649,-9,11648,11647,1,1,22,0,0,0,2,2,-9,0,4,8.0774403,7.8548393,0,0,0,-950.10284,0,2,2,2021,9,0,37,37,1,0,1,10.128163,10.128163,.05,.05,0,0,0,0,0,0,0,0,0,2.4556587,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,553,96318.633,-51931.313,0,0,0,0,1464.4116 +5340,6508,11650,-9,-9,-9,1,0,35,0,3,0,3,3,0,1,3,0,0,0,0,0,-1048.8401,-9,-9,-9,2021,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11651,-9,11650,-9,1,0,17,0,3,1,3,0,0,0,3,0,0,0,0,0,-1130.027,-9,3,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,27.33,-9,-9,5,1,1,0,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11652,-9,11650,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.40491,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11653,-9,11650,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.66681,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11654,-9,11650,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.06415,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5341,6509,11655,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,6.8746471,6.8398223,5.7567592,0,0,-1023.0511,0,2,2,2021,16,6,27,40,1,6,0,4.1934819,4.1934819,.05,.05,0,0,0,0,0,0,1,1,0,0,5.644865,31.84,30.42,-9,-9,6.666666666666667,1,1,0,0,8,10,2,0,1941,225744.53,118262.07,0,0,21556.527,0,1640.6907 +5342,6510,11656,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,7.4499483,7.3862581,0,0,0,-873.78546,0,-9,-9,2021,5,1,30,40,1,1,0,6.2405901,6.2405901,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6.666666666666667,2,3,0,0,7,8,3,0,614,0,0,0,0,0,0,918.99683 +5343,6511,11657,11658,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.7787127,5.5325155,41,-3,-61.568882,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1799564,5.8167086,59.07,16.26,54.79,55.86,8.333333333333334,1,1,0,0,0,5,5,1,447,2021078.3,1389488.6,402599.44,0,0,0,4103.6211 +5343,6511,11658,11657,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.8262167,8.802351,41,3,-2.377279,0,2,3,2021,6,0,0,20,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.8588676,54.79,55.86,59.07,16.26,8.333333333333334,1,1,0,0,9,5,5,1,447,2021078.3,1389488.6,402599.44,0,0,0,4103.6211 +5344,6512,11659,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.831234,9.13414,0,0,0,-949.90369,0,2,2,2021,12,2,40,44,1,2,0,22.815817,22.815817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,832,100655.4,147725.52,0,0,0,0,2615.998 +5345,6513,11660,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.2415915,8.1829615,0,0,0,-913.89453,0,3,2,2021,16,4,48,43,1,4,0,10.599425,10.599425,.05,.05,0,0,0,0,0,0,1,1,0,.88524109,0,48.3,41.76,-9,-9,6.666666666666667,1,1,0,0,9,10,4,1,907,373811.47,224146.02,252898.25,79280.539,0,0,409.07144 +5346,6514,11661,11662,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,43,-3,-35.910545,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,0,9,4,1,722.5,954352.13,610583.25,369233.81,0,7352.6191,0,2854.6514 +5346,6514,11662,11661,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.2434387,8.1922808,6.724587,42,3,3.3946657,0,3,3,2021,8,0,15,50,1,0,0,21.494102,21.494102,0,0,0,0,0,0,0,0,1,1,0,0,7.2304549,52,54.51,46.08,57.2,5,1,1,0,0,9,9,4,1,722.5,954352.13,610583.25,369233.81,0,7352.6191,0,2854.6514 +5347,6515,11663,11667,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.7194777,9.6014042,0,25,0,55.381798,0,2,1,2021,11,0,50,46,1,0,0,31.156904,31.156904,.05,.05,.05,0,0,0,0,0,0,0,0,3.5622306,0,45.82,54.73,60.13,49.27,6.666666666666667,1,1,0,0,10,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11664,-9,11667,11663,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.0913,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11665,-9,11667,11663,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.1558,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11666,-9,11667,11663,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.0712,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11667,11663,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,6.4187822,7.1216612,0,23,0,115.92766,0,3,3,2021,6,0,12,12,1,0,0,8.1911907,8.1911907,0,0,0,0,0,0,0,0,0,0,0,1.7946333,0,60.13,49.27,45.82,54.73,8.333333333333334,1,1,0,0,11,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5348,6516,11668,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.6588793,6.3938618,0,0,-1102.516,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5754299,0,57.16,56.15,-9,-9,10,1,1,0,0,0,5,2,0,268,-83043.195,51846.145,0,0,0,0,117.85445 +5349,6517,11669,11670,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.8028383,7.6035838,0,1,4,-59.089733,-9,-9,-9,2021,12,0,35,0,1,0,0,9.2190847,9.2190847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,29.8,54.36,3.333333333333333,4,1,0,0,8,13,2,0,311.5,-57222.633,-21688.785,0,0,0,0,1727.9373 +5349,6517,11670,11669,-9,-9,1,0,39,0,1,0,3,3,-9,0,2,0,0,0,1,-4,-4.5950384,-9,3,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.8,54.36,41,56.99,5,1,1,0,1,0,13,2,0,311.5,-57222.633,-21688.785,0,0,0,0,1727.9373 +5350,6518,11671,-9,11672,11674,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.05322,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11672,11674,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,5.3611321,5.4538932,0,19,-3,22.609407,0,3,3,2021,11,0,48,32,1,1,0,.5188387,.5188387,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11673,-9,11672,11674,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5643,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11674,11672,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7459965,8.5890141,0,7,3,26.833029,0,-9,-9,2021,9,0,43,42,1,1,0,15.444894,15.444894,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5351,6519,11675,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.0878596,7.4081693,5.944581,0,0,-892.93695,0,1,1,2021,3,0,18,14,1,0,0,8.6971827,8.6971827,0,0,0,0,0,0,0,14.5,0,0,0,6.5313835,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,370,757202.38,56009.43,193278.23,0,0,0,1590.8967 +5352,6520,11676,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.1376543,6.3757758,0,0,-884.88098,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0922766,6.4918547,34.96,18.92,-9,-9,0,1,1,0,0,0,1,2,0,5632,365409.56,309849.31,0,0,0,0,2310.7161 +5353,6521,11677,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6557417,8.7549868,7.7214251,0,0,-979.86676,0,2,2,2021,14,3,55,47,1,3,0,12.724497,12.724497,0,0,0,0,0,0,0,0,0,0,0,4.8250127,7.9173832,40.33,58.26,-9,-9,5,1,1,0,0,9,7,5,1,232,251221.91,56132.578,0,0,0,0,3067.3569 +5353,6522,11678,-9,-9,11677,1,0,25,0,0,0,2,2,-9,0,4,6.9499235,7.4750223,0,0,0,-967.04797,-9,-9,2,2021,11,0,39,0,1,2,1,3.3122799,3.3122799,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,3,1,197,-72164.586,0,0,0,0,0,238.20992 +5354,6523,11679,11680,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.758112,8.8493156,0,16,0,25.727924,0,2,2,2021,15,3,38,38,1,3,0,16.407141,16.407141,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.48,53.45,55.36,51.57,5,1,1,0,0,13,6,5,1,1091,612048.69,617586.44,168803.45,84449.914,18614.316,1383.9607,4774.1875 +5354,6523,11680,11679,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.806963,8.436285,0,16,0,22.326935,0,2,2,2021,8,0,38,38,1,0,0,17.553963,17.553963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,33.48,53.45,8.333333333333334,1,1,0,0,11,6,5,1,1091,612048.69,617586.44,168803.45,84449.914,18614.316,1383.9607,4774.1875 +5355,6524,11681,-9,11682,11684,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.76074,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11682,11684,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.8051386,8.9336939,0,4,-2,-78.594238,0,-9,-9,2021,19,8,54,53,1,8,0,14.119985,14.119985,0,0,0,0,0,0,0,0,1,1,0,2.8949175,0,48.18,61.8,52.82,53.97,6.666666666666667,1,1,0,0,11,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11683,-9,11682,11684,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.0828,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11684,11682,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.0095377,7.8553615,0,4,2,-4.334938,0,-9,-9,2021,11,0,37,37,1,0,0,10.389119,10.389119,.05,.05,0,0,0,0,0,0,1,1,0,2.5168133,0,52.82,53.97,48.18,61.8,8.333333333333334,1,1,0,0,12,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5356,6525,11685,11686,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.0101051,7.2621088,0,10,4,-128.28763,0,-9,-9,2021,6,0,21,20,1,0,0,8.3036404,8.3036404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,10,1,1,0,0,11,8,2,1,696,549456.88,78860.078,450845.38,134253.64,0,0,1217.2484 +5356,6525,11686,11685,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,39,-4,-78.300507,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,4,2,0,0,7,8,2,1,696,549456.88,78860.078,450845.38,134253.64,0,0,1217.2484 +5356,6526,11687,-9,11686,11685,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-948.84723,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,2,3,0,0,5,8,1,1,740,91096.008,0,0,0,0,0,-179.40411 +5357,6527,11688,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5528321,7.0374613,0,0,-993.53625,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8817253,56.84,42.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,605,572574,237901.19,160618.28,0,0,0,191.89987 +5358,6528,11689,-9,11692,11691,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.76721,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11690,-9,11692,11691,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7262,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11691,11692,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.6332426,8.3214798,0,6,7,22.771334,0,-9,-9,2021,6,0,37,42,1,0,0,14.969379,14.969379,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,52.89,33.12,61.85,8.333333333333334,1,1,0,0,10,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11692,11691,-9,-9,1,0,36,1,2,0,2,2,0,0,3,0,0,0,6,-7,-11.558398,-9,2,2,2021,22,8,0,0,2,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,58.32,52.89,8.333333333333334,1,1,0,0,7,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5359,6529,11693,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.4096193,7.0820432,0,0,-1094.5057,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9965339,50.43,45.82,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,239,179220.17,155574.61,0,0,0,0,1086.5316 +5360,6530,11694,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0208845,7.46664,0,0,-939.80695,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.69541246,6.8577623,61.85,44.55,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,2122,410481.25,150969.08,137611.78,0,0,9999.085,1073.2466 +5361,6531,11695,11696,-9,-9,1,0,54,0,1,0,2,2,-9,1,1,0,0,0,33,-3,0,0,3,2,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9446039,0,39.14,25.52,29.78,17.81,8.333333333333334,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6531,11696,11695,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,33,3,0,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.8428464,0,29.78,17.81,39.14,25.52,5,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6531,11697,-9,11695,11696,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-966.97589,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.017813,0,38.23,51.52,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6532,11698,-9,11695,11696,1,1,23,0,1,0,3,3,-9,1,4,0,0,0,0,0,-965.75348,0,2,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1572,0,0,0,0,0,0,445.9248 +5362,6533,11699,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,0,0,0,0,-940.01904,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.8217111,0,60.02,56.42,-9,-9,10,1,1,0,0,9,13,1,1,1738,25451.49,206862.47,0,0,0,0,32.683311 +5363,6534,11700,11701,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5776501,8.7517433,0,3,-4,-53.19759,0,-9,-9,2021,6,0,38,38,1,0,0,22.132969,22.132969,.05,.05,0,0,0,0,0,0,0,0,0,1.7472284,0,54.2,57.49,57.16,56.15,10,2,3,0,0,15,5,5,1,508,208267,114254.16,197170.06,126770.73,42104.977,0,4369.418 +5363,6534,11701,11700,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.551158,9.0813417,0,3,4,-117.56757,0,-9,-9,2021,6,0,40,76,1,0,0,14.629352,14.629352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,2,5,5,1,508,208267,114254.16,197170.06,126770.73,42104.977,0,4369.418 +5364,6535,11702,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.5684128,7.3377018,0,0,-976.73523,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6333444,7.6581616,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,403,829564,418217.13,300380.66,0,0,0,1508.1479 +5365,6536,11703,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.6230898,6.7619114,0,0,-978.43195,0,3,3,2021,7,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.4602578,6.5329967,56.05,45.76,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,409,460640.75,99713.836,284881,0,0,0,535.87805 +5366,6537,11704,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.7036924,8.8384218,0,17,-4,31.731174,0,2,3,2021,12,0,58,50,1,0,0,13.96529,13.96529,.05,.05,0,0,0,0,0,0,0,0,0,4.0710316,0,49.84,44.96,51.73,58.82,5,1,1,0,0,12,4,5,1,556,423032.81,363137.66,148440.95,0,0,5632.1646,975.88129 +5366,6538,11705,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0978651,7.9513097,0,17,4,-.30588236,-9,-9,-9,2021,12,0,58,0,1,0,0,6.8457017,6.8457017,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49.84,44.96,8.333333333333334,1,1,0,0,10,4,5,1,1255,466338.53,488521.75,222584.73,0,2962.6448,0,906.21069 +5367,6539,11706,11707,-9,-9,1,0,52,0,0,0,1,1,-9,1,4,0,0,0,25,-5,-5.629282,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.3816521,0,55.3,55.6,57.73,54.53,8.333333333333334,1,1,0,0,0,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6539,11707,11706,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0412683,8.0206003,0,25,5,90.579033,0,2,1,2021,6,0,37,37,1,0,0,9.2671528,9.2671528,0,0,0,0,0,0,0,89,1,1,0,3.3891976,0,57.73,54.53,55.3,55.6,8.333333333333334,1,1,0,0,13,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6539,11708,-9,11706,11707,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.5662,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.54829276,0,56.82,56.51,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6540,11709,-9,11706,11707,1,1,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-960.82288,0,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,193,5726.6685,0,0,0,0,0,765.34692 +5368,6541,11710,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8458343,8.1349945,0,0,0,-1084.2177,0,-9,-9,2021,10,0,37,37,1,0,0,9.2058783,9.2058783,0,0,0,0,0,0,0,2,1,1,0,6.5730228,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,411,-7030.1528,0,0,0,0,0,1588.0637 +5369,6542,11711,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.3235493,9.1119442,0,0,0,-936.43677,0,2,-9,2021,14,4,96,30,1,4,0,9.3835344,9.3835344,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,48.12,-9,-9,6.666666666666667,2,3,0,1,10,8,5,0,569,-265778.06,0,0,0,25005.068,0,2211.6748 +5370,6543,11712,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.4254379,7.7664485,0,0,-930.28937,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3332076,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,124,526882.63,493586.16,208753.48,0,0,0,709.04987 +5371,6544,11713,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.4081235,5.5238366,0,0,-1033.8116,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7991648,5.4435887,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,245,-28.522419,0,0,0,0,0,587.45496 +5371,6545,11714,11715,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,8,11,66.776512,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,51.8,54.96,53.17,6.666666666666667,1,1,0,0,1,6,2,1,616,32055.635,0,0,0,2171.0938,57.613617,647.09265 +5371,6545,11715,11714,11713,-9,1,1,47,0,0,0,3,3,-9,0,3,6.9767337,7.0463171,0,8,-11,102.99072,0,2,2,2021,8,0,30,30,1,0,0,3.3064444,3.3064444,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,45.64,51.8,8.333333333333334,1,1,0,0,9,6,2,1,616,32055.635,0,0,0,2171.0938,57.613617,647.09265 +5372,6546,11716,11717,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,0,0,33,1,-71.366402,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,48.72,43.43,54.3,8.333333333333334,1,1,0,0,11,10,4,1,1934.5,601063.63,462613.91,306536.06,156025.88,11951.678,15131.066,4742.6895 +5372,6546,11717,11716,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,8.1181612,8.4354401,33,-1,-43.702133,0,2,2,2021,7,0,0,15,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.9404125,8.6000423,43.43,54.3,55.34,48.72,8.333333333333334,1,1,0,0,13,10,4,1,1934.5,601063.63,462613.91,306536.06,156025.88,11951.678,15131.066,4742.6895 +5372,6547,11718,-9,11716,11717,1,0,24,0,0,0,1,1,-9,0,5,8.0946674,8.1298714,0,0,0,-942.47827,0,1,2,2021,10,1,30,30,1,1,1,15.157495,15.157495,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.74,58.71,-9,-9,5,1,1,0,0,7,10,4,1,1248,48188.344,74276.242,0,0,0,0,1134.4087 +5373,6548,11719,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-972.59113,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,9.8553877,0,2,1,1,0,0,0,46.03,27.51,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1085,-237760.33,0,0,0,0,872.08264,1096.1769 +5373,6549,11720,-9,11719,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-930.60315,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.86,8.950000000000001,-9,-9,6.666666666666667,1,1,0,0,4,12,1,0,692,387493.34,0,415827.5,0,0,0,716.26685 +5374,6550,11721,11722,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,4.8989863,4.9815831,37,12,-66.110306,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.7586336,40.16,30.14,29.35,31.4,6.666666666666667,3,4,0,1,0,8,2,1,892,1095602.3,499231.81,0,0,0,0,1006.8964 +5374,6550,11722,11721,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,37,-12,46.231941,0,2,1,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.35,31.4,40.16,30.14,1.666666666666667,3,4,0,1,9,8,2,1,892,1095602.3,499231.81,0,0,0,0,1006.8964 +5374,6551,11723,-9,11722,11721,1,0,32,0,0,0,1,1,-9,0,1,8.544548,8.5958757,0,0,0,-943.24182,0,2,1,2021,28,10,37,38,1,10,1,20.033258,20.033258,.05,.05,0,0,0,0,0,7,1,1,0,0,0,32.26,34.13,-9,-9,1.666666666666667,3,4,0,0,9,8,5,1,566,70899.695,48244.559,494636.34,114305.09,0,0,2492.9233 +5375,6552,11724,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3577399,6.534946,0,0,-1183.8567,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73368871,6.4928036,55.58,19.78,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,176,244175.86,165805.88,0,0,0,0,1273.5695 +5376,6553,11725,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-934.54285,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.19659691,0,38.58,48.57,-9,-9,8.333333333333334,1,1,0,0,1,4,1,0,560,-32795.551,0,0,0,0,0,182.0674 +5376,6554,11726,-9,-9,-9,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-920.41187,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.86,57.79,-9,-9,5,1,1,0,0,3,4,1,0,148,0,0,0,0,0,0,591.18268 +5377,6555,11727,11728,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1146927,7.8365173,0,2,-4,58.226593,0,1,1,2021,17,5,46,42,1,5,0,6.7148056,6.7148056,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.92,61.06,51.83,57.2,6.666666666666667,1,1,0,0,3,5,4,0,376,49626.043,45799.906,47138.207,39806,15280.201,0,2294.6995 +5377,6555,11728,11727,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.994082,8.2090616,0,2,4,30.425552,0,-9,-9,2021,8,0,40,40,1,0,0,10.24665,10.24665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,37.92,61.06,6.666666666666667,1,1,0,0,1,5,4,0,376,49626.043,45799.906,47138.207,39806,15280.201,0,2294.6995 +5378,6556,11729,11730,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,11,0,0,-9,-9,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.57,30.98,59.21,43.05,8.333333333333334,1,1,0,1,0,12,1,0,201,183420.75,0,0,0,894.59412,-1252.1846,586.10291 +5378,6556,11730,11729,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,8,-11,0,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.21,43.05,55.57,30.98,8.333333333333334,1,1,0,0,2,12,1,0,201,183420.75,0,0,0,894.59412,-1252.1846,586.10291 +5379,6557,11731,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,9.0250015,8.9788113,0,0,-1040.4977,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.6992865,8.9534512,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,10,2,5,0,67,589008.44,196569.08,166542.33,0,0,0,4684.7632 +5380,6558,11732,11733,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.3333282,8.1876221,0,25,-4,53.156754,0,3,2,2021,12,0,40,40,1,0,0,10.600229,10.600229,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,35.78,44.58,39.21,40.06,5,1,1,0,0,8,2,4,1,608,316631.78,313117.03,261465.16,0,0,0,2069.3003 +5380,6558,11733,11732,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.6226206,7.6482601,0,27,4,-3.6891222,0,2,-9,2021,12,0,30,30,1,0,0,9.2974167,9.2974167,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.21,40.06,35.78,44.58,8.333333333333334,1,1,0,0,13,2,4,1,608,316631.78,313117.03,261465.16,0,0,0,2069.3003 +5380,6559,11734,-9,11733,11732,1,0,31,0,0,0,2,2,-9,0,4,7.8404932,7.9959269,0,0,0,-1045.8304,0,2,2,2021,12,0,35,35,1,0,1,9.823698,9.823698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,212,146249.61,87730.617,116243.47,79077.672,0,0,1963.8135 +5381,6560,11735,11736,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.853508,8.9536371,0,27,1,77.64077,0,-9,2,2021,14,4,58,60,1,4,0,14.753674,14.753674,.05,.05,0,0,0,0,0,0,1,1,0,4.0322208,0,48.57,53.15,48.88,50.52,8.333333333333334,1,1,0,0,9,10,5,1,714,716710.75,81738.313,388882.75,28242.74,0,0,3954.6548 +5381,6560,11736,11735,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.5773029,7.7232041,0,27,-1,1.4637624,0,2,2,2021,11,0,35,24,1,0,0,7.13519,7.13519,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,50.52,48.57,53.15,8.333333333333334,1,1,0,0,10,10,5,1,714,716710.75,81738.313,388882.75,28242.74,0,0,3954.6548 +5381,6561,11737,-9,11736,11735,1,1,23,0,0,0,2,2,-9,0,4,8.2275639,8.0122299,0,0,0,-1119.7361,0,2,2,2021,12,1,54,54,1,1,1,8.4228621,8.4228621,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,542,-177457.11,0,0,0,0,0,1849.7135 +5381,6562,11738,-9,11736,11735,1,0,18,0,0,0,2,2,1,0,4,7.517014,7.084085,0,0,0,-957.40906,-9,2,2,2021,5,0,34,0,1,0,1,5.1947207,5.1947207,0,0,0,0,0,0,2.0405762,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,727,-16823.918,0,0,0,8253.1904,0,1046.0865 +5382,6563,11739,11740,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.3271766,7.684545,0,8,0,25.766777,0,-9,-9,2021,9,0,30,33,1,0,0,7.3585181,7.3585181,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,43.05,41.57,6.666666666666667,2,3,0,0,9,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5382,6563,11740,11739,-9,-9,1,0,36,0,4,0,2,2,-9,0,2,6.975563,7.1975074,0,19,0,121.10673,0,3,2,2021,10,0,20,20,1,0,0,5.8488364,5.8488364,0,0,0,0,0,0,0,0,1,0,1,.50859135,0,43.05,41.57,54.2,57.49,6.666666666666667,2,3,0,0,4,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5382,6563,11741,-9,11740,11739,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-932.995,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.193764,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5383,6564,11742,11743,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.0267763,6.2434077,49,3,3.7440124,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.881783,6.2338223,58.4,51.64,57.33,53.46,10,1,1,0,0,5,6,2,1,305,595238.5,321429.38,198894.95,0,0,0,2606.8655 +5383,6564,11743,11742,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.2560725,6.5982075,49,-3,-80.663101,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7545776,6.5584931,57.33,53.46,58.4,51.64,8.333333333333334,1,1,0,0,0,6,2,1,305,595238.5,321429.38,198894.95,0,0,0,2606.8655 +5384,6565,11744,-9,11746,11747,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1025.23,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.044548903,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11745,-9,11746,11747,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1058.0441,-9,3,3,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,57.93,-9,-9,5,2,3,0,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11746,11747,-9,-9,1,0,47,0,4,0,3,3,-9,0,2,0,0,0,19,-13,9.4940357,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,45.37,50,49,8.333333333333334,2,3,0,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11747,11746,-9,-9,1,1,60,0,4,0,3,3,-9,0,3,7.4486494,7.4665675,0,19,13,22.829128,0,-9,-9,2021,10,0,40,38,1,1,0,7.0428967,7.0428967,0,0,0,0,0,0,0,0,1,1,0,2.1119335,0,50,49,46.82,45.37,7,2,3,0,0,1,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11748,-9,11746,11747,1,0,14,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1109.8867,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11749,-9,11746,11747,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.6713,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5385,6566,11750,11751,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.5437307,8.4221325,0,5,-17,-8.5699549,0,2,3,2021,13,3,55,60,1,3,0,8.7401056,8.7401056,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.15,57.46,42.75,61.95,10,1,1,0,0,8,7,4,0,1259.5,884442.25,422421.31,441606.88,57061.078,0,0,1540.9211 +5385,6566,11751,11750,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,6.9611602,6.8860478,0,5,17,-11.567037,0,-9,-9,2021,17,7,10,15,1,7,0,9.7912474,9.7912474,0,0,0,0,0,0,0,0,0,0,0,0,0,42.75,61.95,45.15,57.46,1.666666666666667,1,1,0,0,4,7,4,0,1259.5,884442.25,422421.31,441606.88,57061.078,0,0,1540.9211 +5386,6567,11752,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1143.4918,0,2,2,2021,15,4,0,36,3,4,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,20.2,43.88,-9,-9,6.666666666666667,1,1,1,1,13,1,1,0,418,-104277.04,0,0,0,0,0,238.75299 +5387,6568,11753,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0886183,8.128253,0,0,0,-971.94867,0,2,2,2021,12,1,41,40,1,1,0,9.4431973,9.4431973,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,943,1459292.1,516965.5,316184.25,0,0,0,432.9671 +5388,6569,11754,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.7947125,5.6892819,0,0,-1001.4474,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7885599,5.8743806,63.65,35.93,-9,-9,6.666666666666667,1,1,0,0,3,2,2,1,661,-164647.67,-73151.813,0,0,0,0,1007.3727 +5389,6570,11755,-9,11756,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1052.7985,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11756,-9,-9,-9,1,0,31,0,4,0,3,3,-9,0,3,0,0,0,0,0,-947.26648,0,2,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.58,48.15,-9,-9,3.333333333333333,1,1,0,1,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11757,-9,11756,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-941.388,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11758,-9,11756,-9,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.679,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11759,-9,11756,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-995.01404,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5390,6571,11760,11761,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4649682,7.2561588,51,2,10.255571,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2736032,7.6339092,55.36,30.31,47,35,6.666666666666667,1,1,0,0,0,6,2,1,2995,326096,310213.19,184943.31,0,0,0,1299.5198 +5390,6571,11761,11760,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,47,-2,42.980415,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0932397,0,47,35,55.36,30.31,6.666666666666667,1,1,0,0,0,6,2,1,2995,326096,310213.19,184943.31,0,0,0,1299.5198 +5391,6572,11762,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.63464,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,8.8069887,0,67.412079,0,1,1,0,0,0,51,46,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,273,-2505.2366,0,0,0,0,0,1507.4672 +5392,6573,11763,-9,11764,11765,1,1,16,0,1,1,2,0,-9,0,4,0,4.285768,4.4907017,0,0,-1103.3195,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0270844,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6573,11764,11765,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,7.231729,7.5861292,5,1,137.60075,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4981575,0,47.27,17.78,54.74,57.22,8.333333333333334,1,1,0,0,2,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6573,11765,11764,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.5250483,9.0766878,0,5,-1,-33.213348,0,2,2,2021,10,0,45,45,1,0,0,30.068235,30.068235,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.74,57.22,47.27,17.78,8.333333333333334,1,1,0,0,10,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6574,11766,-9,11764,11765,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-986.09863,0,2,2,2021,11,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,-9,-9,10,1,1,0,0,0,7,1,0,659,0,0,0,0,0,0,-155.04443 +5393,6575,11767,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.3331594,7.9556303,0,0,0,-897.44861,0,3,2,2021,8,0,40,43,1,0,0,10.679927,10.679927,.05,.05,0,0,0,0,0,0,1,1,0,2.8077953,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,756,182060.27,55092.289,0,0,2682.0046,0,1268.2875 +5393,6576,11768,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1127.1703,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.39,16.93,-9,-9,5,1,1,0,0,0,2,1,0,137,134203.8,0,0,0,439.22876,0,1776.1239 +5394,6577,11769,11770,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.3949785,8.4507895,0,25,-2,-69.117493,0,2,2,2021,14,3,37,42,1,3,0,14.919127,14.919127,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,44.19,58.01,8.333333333333334,1,1,0,0,14,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6577,11770,11769,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3745699,8.2700567,0,11,2,-76.291855,0,-9,-9,2021,11,2,37,37,1,2,0,12.082765,12.082765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,38.8,60.42,6.666666666666667,1,1,0,0,14,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6577,11771,-9,11769,11770,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1083.8956,-9,1,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3296885,0,62.39,56.71,-9,-9,10,1,1,0,0,1,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6578,11772,-9,11769,11770,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1056.235,-9,1,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0594749,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,4097,216241.3,0,0,0,0,0,-124.70236 +5395,6579,11773,11774,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.590642,7.4879451,55,1,150.54716,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,7.7062774,0,0,1,1,0,2.2568107,7.315022,57.16,56.15,59.29,46.97,10,1,1,0,0,0,7,3,1,360.5,836541.25,237739.66,508275.25,0,0,0,2393.3584 +5395,6579,11774,11773,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0408664,6.794785,55,-1,-46.048126,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5128856,7.2220826,59.29,46.97,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,360.5,836541.25,237739.66,508275.25,0,0,0,2393.3584 +5396,6580,11775,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.345665,8.3328838,0,0,0,-972.39594,0,3,2,2021,11,0,46,44,1,0,0,11.783908,11.783908,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,365,-66059.563,0,0,0,0,0,2827.2754 +5397,6581,11776,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.131391,7.1244922,0,0,-1010.0717,0,-9,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4460001,7.3647633,60.12,54.8,-9,-9,10,1,1,0,0,0,6,3,1,797,599643.13,305514,0,0,0,0,1104.4861 +5398,6582,11777,11778,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,3.3700626,3.5723639,35,21,91.944359,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.3811169,0,0,1,1,0,3.1417196,3.3374498,53.45,49.53,54.36,41.57,10,1,1,0,0,4,6,2,1,358.5,169693.44,19639.398,38192.699,0,0,0,502.91306 +5398,6582,11778,11777,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.0632272,6.1262155,0,35,-21,38.747532,0,3,3,2021,12,0,32,40,1,0,0,1.6027075,1.6027075,0,0,0,0,0,0,0,0,1,1,0,0,0,54.36,41.57,53.45,49.53,3.333333333333333,1,1,0,0,9,6,2,1,358.5,169693.44,19639.398,38192.699,0,0,0,502.91306 +5399,6583,11779,11781,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.4287624,9.4433489,0,16,1,-154.98573,0,2,1,2021,8,0,49,48,1,0,0,27.582417,27.582417,.05,.05,0,0,0,0,0,0,0,0,0,3.6243806,0,58.72,51.29,35.62,57.79,8.333333333333334,1,1,0,0,5,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5399,6583,11780,-9,11781,11779,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.76703,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,4,2,-9,0,0,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5399,6583,11781,11779,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.6748061,7.3890333,0,17,-1,-26.854033,0,3,3,2021,13,2,18,15,1,2,0,13.832255,13.832255,.05,.05,0,0,0,0,0,2,0,0,0,7.3614221,0,35.62,57.79,58.72,51.29,8.333333333333334,2,3,0,0,9,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5400,6584,11782,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.17163,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,54.16,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,190,91350.695,0,0,0,0,0,1681.2415 +5401,6585,11783,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.5537033,6.779942,0,0,-1000.7143,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7288036,53,46,-9,-9,7,1,1,0,0,0,8,2,0,757,952909.5,65156.988,590230.5,0,0,0,2247.6582 +5402,6586,11784,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.6420159,8.0860939,0,0,0,-938.87292,0,2,2,2021,15,3,21,29,1,3,0,16.9042,16.9042,.05,.05,0,0,0,0,0,0,1,1,0,3.326762,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,10,9,3,1,1057,-26798.668,69398.992,0,0,0,1162.6215,925.94006 +5403,6587,11785,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2043533,8.2007208,0,0,0,-1028.6543,-9,-9,-9,2021,6,0,48,0,1,0,0,8.7387199,8.7387199,0,0,0,0,0,0,0,0,0,0,0,0,0,29.33,51.25,-9,-9,8.333333333333334,1,1,0,0,11,11,4,0,640,21606.639,50048.945,0,0,8518.2471,0,1989.9535 +5404,6588,11786,11787,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.0041008,8.6396885,0,9,4,90.696404,0,-9,-9,2021,9,0,70,65,1,0,0,12.859699,12.859699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.58,45.49,52.11,38.34,8.333333333333334,1,1,0,0,11,5,5,1,686.5,2379847.5,1716091,389799.94,0,-1802.4113,0,3540.5342 +5404,6588,11787,11786,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,43,-4,-24.590355,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.11,38.34,56.58,45.49,8.333333333333334,1,1,0,0,7,5,5,1,686.5,2379847.5,1716091,389799.94,0,-1802.4113,0,3540.5342 +5405,6589,11788,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.7394338,7.9821944,0,0,0,-1024.7341,0,2,2,2021,9,0,35,35,1,0,0,8.1701517,8.1701517,.05,.05,0,0,0,0,0,14.5,0,0,0,.87707943,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1238,461910.53,324302.78,154613.5,0,1734.6791,0,1594.6472 +5406,6590,11789,-9,11790,11791,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4717,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11790,11791,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.4191871,7.6492605,0,16,0,-52.194504,0,1,1,2021,5,1,36,27,1,1,0,6.6130195,6.6130195,0,0,0,0,0,0,0,0,1,1,0,6.8629441,0,51.73,58.82,43.71,56.91,8.333333333333334,1,1,0,0,13,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11791,11790,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.3656225,8.7352581,7.5492301,15,0,-62.722382,0,2,2,2021,12,3,60,52,1,3,0,6.0708179,6.0708179,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5205531,43.71,56.91,51.73,58.82,6.666666666666667,1,1,0,0,14,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11792,-9,11790,11791,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.5766,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5407,6591,11793,11794,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3746533,7.3204374,0,22,-3,.31264567,0,2,2,2021,12,0,23,29,1,0,0,8.719924,8.719924,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.17,50.61,61.12,51.57,8.333333333333334,1,1,0,0,14,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5407,6591,11794,11793,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.593564,8.4380102,0,22,3,-95.608673,0,2,2,2021,6,0,40,42,1,0,0,16.772055,16.772055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,57.17,50.61,8.333333333333334,1,1,0,0,14,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5407,6591,11795,-9,11793,11794,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-891.55731,-9,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5408,6592,11796,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6669083,9.0121784,0,12,-3,106.25381,0,1,1,2021,12,4,38,78,1,4,0,21.170273,21.170273,.05,.05,0,0,0,0,0,0,0,0,0,3.3098655,0,54.2,57.49,38.09,63.39,5,1,1,0,0,12,4,5,1,197,364789.84,282789.72,0,0,0,0,2605.8823 +5408,6593,11797,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6916842,7.8701,0,12,3,-108.32625,0,2,2,2021,20,8,24,-9,1,8,0,7.7323461,7.7323461,.05,.05,0,0,0,0,0,0,0,0,0,1.1714964,0,38.09,63.39,54.2,57.49,6.666666666666667,1,1,0,0,14,4,5,1,856,72390.047,78395.609,209559.48,0,1496.7357,2463.1138,703.77533 +5409,6594,11798,11799,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.7999678,8.5059385,0,40,1,-45.684025,0,3,3,2021,5,0,38,46,1,0,0,20.490988,20.490988,.05,.05,0,0,0,0,0,7,0,0,0,7.4608288,0,57.06,57.76,52.82,53.97,8.333333333333334,1,1,0,0,9,9,5,1,230,2418715.5,646380.19,837224,0,0,0,3917.5791 +5409,6594,11799,11798,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.8272705,6.5191159,0,40,-1,33.549221,0,3,2,2021,10,0,20,21,1,0,0,5.4264021,5.4264021,0,0,0,0,0,0,0,7,0,0,0,3.7719276,0,52.82,53.97,57.06,57.76,1.666666666666667,1,1,0,0,6,9,5,1,230,2418715.5,646380.19,837224,0,0,0,3917.5791 +5410,6595,11800,11801,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.2827187,8.1070566,0,3,6,-51.004227,0,-9,-9,2021,10,0,44,40,1,0,0,9.2131767,9.2131767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,16.27,56.51,6.666666666666667,1,1,0,0,2,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5410,6595,11801,11800,-9,-9,1,0,26,1,1,0,2,2,-9,0,1,7.296154,7.3923712,0,3,-6,-115.88911,0,2,2,2021,19,5,22,38,1,5,0,7.1605315,7.1605315,0,0,0,0,0,0,0,0,1,1,0,0,0,16.27,56.51,58.89,48.6,3.333333333333333,1,1,0,0,8,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5410,6595,11802,-9,11801,11800,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.4503,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5411,6596,11803,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4544291,7.7812386,0,0,0,-1057.2581,0,-9,-9,2021,11,1,37,3,1,1,0,5.2630467,5.2630467,.05,.05,0,0,0,0,0,0,0,0,0,6.3883061,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,873,-39123.547,157421.09,0,0,0,0,585.01141 +5411,6597,11804,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.3054018,8.576581,0,0,0,-948.54462,-9,-9,-9,2021,10,0,40,0,1,1,0,15.023247,15.023247,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,6,4,1,318,248055.64,0,320237,0,0,0,2506.3298 +5412,6598,11805,-9,11806,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1047.011,1,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.7178625,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,908.5,422721.38,137138.95,291415.88,0,0,0,1527.9955 +5412,6598,11806,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9915347,8.4268236,0,0,0,-1006.6061,0,3,2,2021,11,1,30,30,1,1,0,12.508065,12.508065,.05,.05,0,0,0,0,0,0,1,0,1,2.023556,0,41.65,60.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,908.5,422721.38,137138.95,291415.88,0,0,0,1527.9955 +5413,6599,11807,11808,-9,-9,1,0,29,0,0,0,2,2,1,0,4,8.1679173,8.2146568,0,7,0,29.790388,-9,2,3,2021,8,2,40,0,1,2,0,9.5814857,9.5814857,0,0,0,0,0,0,0,0,0,0,0,0,0,57.88,44.79,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,1033.5,123153.75,29366.996,69963.023,77870.688,0,0,4822.686 +5413,6599,11808,11807,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,9.3996334,9.1359224,0,7,0,49.603432,0,1,2,2021,9,0,55,40,1,0,0,28.324802,28.324802,.05,.05,0,0,0,0,0,0,0,0,0,6.4004202,0,57.06,57.76,57.88,44.79,8.333333333333334,1,1,0,0,6,12,5,1,1033.5,123153.75,29366.996,69963.023,77870.688,0,0,4822.686 +5414,6600,11809,11810,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,48,-4,-.50833452,0,3,3,2021,10,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,30.64,62.63,33.08,8.333333333333334,1,1,0,0,15,12,2,1,2699,221932.38,57705.922,190071.06,0,0,0,1262.0981 +5414,6600,11810,11809,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,6.1870146,6.2961864,4.9561582,48,4,92.476341,0,3,3,2021,6,0,45,50,1,0,0,1.189239,1.189239,0,0,0,0,0,0,0,0,1,1,0,4.4626665,5.1925135,62.63,33.08,62.18,30.64,8.333333333333334,1,1,0,0,15,12,2,1,2699,221932.38,57705.922,190071.06,0,0,0,1262.0981 +5415,6601,11811,11813,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.7962341,8.6447821,0,11,-5,-42.49493,0,2,2,2021,8,0,40,39,1,0,0,22.879507,22.879507,0,0,0,0,0,0,0,0,1,1,0,3.7060847,0,59.46,46.99,58.15,52.91,8.333333333333334,1,1,0,0,12,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6601,11812,-9,11811,11813,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1113.0841,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6601,11813,11811,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.3860817,8.2227917,0,11,5,-125.7832,0,2,3,2021,6,0,49,50,1,0,0,10.422259,10.422259,.05,.05,0,0,0,0,0,0,1,1,0,2.8045406,0,58.15,52.91,59.46,46.99,8.333333333333334,1,1,0,0,12,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6602,11814,-9,11811,11813,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-965.39722,-9,2,2,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.07,49.95,-9,-9,8.333333333333334,1,1,1,0,1,7,1,1,737,-169854.88,0,0,0,0,0,0 +5416,6603,11815,-9,11817,11816,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.91113,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11816,11817,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,9.1098318,8.7588415,0,8,-2,29.56823,0,3,2,2021,7,0,52,48,1,0,0,18.711319,18.711319,0,0,0,0,0,0,0,0,0,0,0,4.9554734,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,11,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11817,11816,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.9547129,8.0500822,0,8,2,65.774933,0,-9,-9,2021,12,1,25,24,1,1,0,14.391931,14.391931,0,0,0,0,0,0,0,0,0,0,0,7.1623807,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,12,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11818,-9,11817,11816,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.32819,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5417,6604,11819,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9682536,6.9453096,0,0,0,-980.77502,0,-9,-9,2021,8,0,20,20,1,0,0,5.8351483,5.8351483,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,1796,5559.9414,-62891.305,0,0,0,1300.4091,722.69641 +5417,6605,11820,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1009.5244,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,0,13,1,0,434,23569.02,0,0,0,0,0,2063.0376 +5418,6606,11821,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.1675196,7.3486619,0,0,0,-1063.5651,0,3,3,2021,12,0,16,-9,1,0,0,10.091766,10.091766,0,0,0,0,0,0,0,0,1,1,0,2.3681343,0,40.31,43.37,-9,-9,3.333333333333333,1,1,0,1,9,7,3,0,1146,-3600.115,0,0,0,0,8576.2803,1416.0745 +5418,6607,11822,-9,11821,-9,1,0,30,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1051.14,0,3,-9,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.44,32.42,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,1341,-153935.33,0,0,0,0,0,1400.9805 +5418,6608,11823,-9,11821,-9,1,1,21,0,0,0,2,2,-9,0,3,8.2009573,8.403266,0,0,0,-1122.0923,0,3,-9,2021,6,0,30,30,1,0,1,12.57696,12.57696,.05,.05,0,0,0,0,0,0,1,1,0,.66860849,0,57.33,53.46,-9,-9,5,4,2,0,0,10,7,4,0,3150,97385.359,-114233.3,0,0,0,0,1734.6444 +5419,6609,11824,11825,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1849661,7.1047049,46,2,-25.527557,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0190368,7.3234625,60.12,54.8,62.49,55.09,8.333333333333334,1,1,0,0,0,4,3,1,615.5,1081000.4,769969.25,290007.03,0,0,0,3351.3789 +5419,6609,11825,11824,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.219039,7.316072,46,-2,-18.578625,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.008883,7.59692,62.49,55.09,60.12,54.8,10,1,1,0,0,0,4,3,1,615.5,1081000.4,769969.25,290007.03,0,0,0,3351.3789 +5420,6610,11826,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.1639261,7.6464195,0,0,0,-931.81067,0,2,2,2021,6,0,50,30,1,0,0,5.930995,5.930995,.05,.05,0,0,0,0,0,0,0,0,0,3.1783187,0,50.54,62.09,-9,-9,10,1,1,0,0,5,4,4,0,296,24542.758,-43744.402,0,0,0,0,1977.3954 +5420,6611,11827,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6323724,7.4674821,0,0,0,-1034.0573,-9,2,2,2021,10,0,30,0,1,1,0,5.6470437,5.6470437,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,0,754,-281515.09,0,0,0,0,0,806.47467 +5421,6612,11828,11829,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.4837551,5.136229,8,1,29.720442,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3082452,5.0603485,34.73,60.93,55.79,52.62,6.666666666666667,1,1,0,0,0,11,3,1,1830.5,1096316.9,776230.38,259839.2,0,0,0,2408.8735 +5421,6612,11829,11828,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.8733754,8.2314262,8,-1,-38.319885,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.710103,7.912313,55.79,52.62,34.73,60.93,8.333333333333334,1,1,0,0,0,11,3,1,1830.5,1096316.9,776230.38,259839.2,0,0,0,2408.8735 +5422,6613,11830,-9,11833,11831,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.60205,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11831,11833,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,8.4897852,8.1533413,0,3,1,41.733284,0,2,1,2021,15,4,55,58,1,4,0,10.144115,10.144115,.05,.05,0,0,0,0,0,0,1,1,0,2.7449424,0,49.04,55.86,48.18,61.8,8.333333333333334,1,1,0,0,9,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11832,-9,11833,11831,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.5115,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11833,11831,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,0,0,0,3,-1,-11.007458,0,2,1,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.9818609,0,48.18,61.8,49.04,55.86,8.333333333333334,1,1,0,0,2,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5423,6614,11834,-9,11837,11838,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1032.6527,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11835,-9,11837,11838,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.61462,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11836,-9,11837,11838,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-919.9458,-9,1,3,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,46,-9,-9,5,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11837,11838,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.0029211,8.1044827,0,17,-10,48.581512,0,3,2,2021,9,0,37,0,1,0,0,11.300114,11.300114,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,54.45,56.22,3.333333333333333,2,3,0,1,6,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11838,11837,-9,-9,1,1,51,0,3,0,3,3,-9,0,4,6.7025967,6.6825485,0,17,10,-41.927013,0,3,-9,2021,10,1,30,30,1,1,0,3.0512161,3.0512161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,55.79,52.62,5,2,3,0,0,10,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5424,6615,11839,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6229343,7.3554397,0,0,-1006.2227,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2283111,7.7626619,38.5,44.29,-9,-9,5,1,1,0,0,8,11,3,1,2942,1026878.1,661495.56,485371.78,0,0,0,2567.865 +5425,6616,11840,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.7762,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,7.4331517,0,68.620628,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,6,1,0,490,199616.77,0,192378.75,0,0,0,1603.2603 +5426,6617,11841,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1072.7596,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,759,-172227.25,21924.52,0,0,0,0,1089.2031 +5426,6618,11842,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4888439,6.707603,0,0,-919.88251,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6457591,47.94,48.26,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,977,-132922.11,52506.207,0,0,0,0,823.6897 +5427,6619,11843,11844,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.2438202,9.2767963,0,26,-3,-57.189373,0,2,2,2021,7,0,70,50,1,0,0,17.868933,17.868933,.05,.05,0,0,0,0,0,0,0,0,0,1.5949211,0,51.14,60.45,54.73,49.35,8.333333333333334,3,4,0,0,9,5,5,1,1015,1307556.8,1052403.6,228925.7,106231.52,0,0,4439.2905 +5427,6619,11844,11843,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.4175601,7.3452177,0,27,3,-29.752737,0,2,1,2021,7,0,40,57,1,0,0,4.393836,4.393836,.05,.05,0,0,0,0,0,2,0,0,0,.59140104,0,54.73,49.35,51.14,60.45,6.666666666666667,4,2,0,0,8,5,5,1,1015,1307556.8,1052403.6,228925.7,106231.52,0,0,4439.2905 +5427,6620,11845,-9,11843,11844,1,0,22,0,0,0,1,1,-9,0,4,7.7142811,7.8895321,0,0,0,-1092.3882,-9,1,1,2021,10,0,37,0,1,0,1,9.4407969,9.4407969,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,-9,-9,8.333333333333334,3,4,0,0,1,5,4,1,118,-77684.578,0,0,0,0,0,1553.3251 +5428,6621,11846,11847,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,7.942441,8.0604792,0,4,-1,70.58609,0,1,2,2021,7,0,40,40,1,0,0,10.134766,10.134766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.87,37.28,46.5,58.26,5,1,1,0,0,11,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6621,11847,11846,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,7.6539717,7.9201865,0,4,1,-9.9940214,0,2,3,2021,9,0,40,40,1,0,0,7.7950578,7.7950578,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,62.87,37.28,6.666666666666667,1,1,0,0,11,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6621,11848,-9,11847,11846,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.5447,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6622,11849,-9,11847,11846,1,1,20,1,1,0,2,2,-9,0,5,7.7126255,7.6795583,0,0,0,-1051.0703,-9,1,2,2021,10,1,35,0,1,1,1,7.4992619,7.4992619,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,5,1,1,0,0,3,7,3,1,271,-21604.49,0,0,0,0,0,1257.6338 +5428,6623,11850,-9,11847,11846,1,1,18,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1031.7158,-9,1,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,7,1,1,692,0,0,0,0,0,0,0 +5429,6624,11851,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.9545355,5.0467615,0,0,-1023.1692,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4909754,5.4101362,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1293,107443.81,113623.67,0,0,0,0,838.99219 +5430,6625,11852,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.4069448,7.4740324,5.3583655,0,0,-939.83673,0,3,3,2021,17,6,27,35,1,6,0,6.5505729,6.5505729,.05,.05,0,0,0,0,0,0,0,0,0,5.9434085,0,45.82,54.73,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,707,-15595.693,3238.3462,0,0,0,1813.9111,1581.3146 +5430,6626,11853,-9,11852,-9,1,1,24,0,0,0,2,2,-9,0,3,7.9166656,7.8867054,0,0,0,-977.34344,0,3,-9,2021,24,10,40,0,1,10,1,7.2443209,7.2443209,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,1.666666666666667,1,1,0,0,4,9,4,1,941,-34498.902,0,0,0,0,0,1354.6483 +5430,6627,11854,-9,11852,-9,1,1,20,0,0,0,2,2,-9,0,3,8.0175571,8.1007233,0,0,0,-966.55408,0,3,-9,2021,8,0,42,40,1,0,1,9.7760906,9.7760906,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,3452,14349.922,-68393.734,0,0,0,0,1337.3157 +5431,6628,11855,11856,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.3686323,9.3756952,0,6,1,-97.990456,0,3,2,2021,9,0,58,56,1,0,0,25.779213,25.779213,0,0,0,0,0,0,0,2,0,0,0,4.7674623,0,61.43,43.34,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,394,3380149.3,975779.5,954448.69,60173.668,0,0,5478.4023 +5431,6628,11856,11855,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.1053734,8.4832573,0,6,-1,-80.444908,0,1,1,2021,6,0,36,46,1,0,0,12.576762,12.576762,0,0,0,0,0,0,0,0,0,0,0,3.6900797,0,57.06,57.76,61.43,43.34,8.333333333333334,1,1,0,0,7,9,5,1,394,3380149.3,975779.5,954448.69,60173.668,0,0,5478.4023 +5431,6629,11857,-9,11856,11855,1,1,20,0,0,0,2,2,-9,0,5,0,6.6792593,6.7059798,0,0,-979.92584,1,1,1,2021,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9326668,0,54.57,60.2,-9,-9,0,1,1,0,0,1,9,2,1,1563,-227360.41,-26751.297,0,0,0,0,415.78384 +5432,6630,11858,11859,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,8.2481947,7.5680957,6,-2,54.135227,0,2,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4268141,7.5775099,62.39,56.71,58.89,48.6,10,1,1,0,0,2,9,3,1,1539,1024191,456505.63,548585.75,0,0,0,3124.7861 +5432,6630,11859,11858,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0424337,6.905304,6,2,-33.441692,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1840181,7.4397063,58.89,48.6,62.39,56.71,10,1,1,0,0,1,9,3,1,1539,1024191,456505.63,548585.75,0,0,0,3124.7861 +5433,6631,11860,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.5325894,7.2851081,0,0,-1023.7515,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3038762,7.3096242,52,45,-9,-9,8,1,1,0,0,0,11,3,1,174,437715.16,199249.3,76292.359,0,0,0,1759.5394 +5434,6632,11861,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1221695,8.1153975,0,0,0,-977.97559,0,3,-9,2021,15,5,46,0,1,5,0,8.2343407,8.2343407,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.13,32.71,-9,-9,3.333333333333333,4,2,0,1,1,8,4,0,308,1125089,698355.5,510929.13,132643.16,0,0,1537.437 +5434,6633,11862,-9,11861,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1023.3858,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,55.21,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,103,8687.5654,0,0,0,0,0,198.6768 +5435,6634,11863,-9,-9,-9,1,0,34,0,1,0,2,2,-9,1,3,0,5.4340086,5.1329422,0,0,-955.00055,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2724566,0,52.97,51.29,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,653,52401.27,0,0,0,0,0,1991.0117 +5435,6634,11864,-9,11863,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1061.1707,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,2,0,653,52401.27,0,0,0,0,0,1991.0117 +5436,6635,11865,11866,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.0379663,7.179297,46,2,-48.367287,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,.98722827,0,0,1,1,0,6.8957238,6.5765553,33.47,36.29,46.37,50.17,1.666666666666667,1,1,0,0,9,10,2,1,568.5,19850.156,44483.738,0,0,0,0,2131.197 +5436,6635,11866,11865,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-2,-23.406843,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7350471,0,46.37,50.17,33.47,36.29,8.333333333333334,1,1,0,0,0,10,2,1,568.5,19850.156,44483.738,0,0,0,0,2131.197 +5437,6636,11867,11868,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5304108,7.5587964,7,3,-33.14941,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1770782,7.3348055,44.02,60.7,51.61,34.65,8.333333333333334,1,1,0,0,6,11,3,1,360,1331269.4,480192.78,353252.38,0,0,0,3864.3782 +5437,6636,11868,11867,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.0505996,6.218668,7,-3,-160.16573,0,1,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4632741,6.0004597,51.61,34.65,44.02,60.7,8.333333333333334,1,1,0,0,6,11,3,1,360,1331269.4,480192.78,353252.38,0,0,0,3864.3782 +5438,6637,11869,-9,11870,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.82837,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,54.36,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,1677.5,-15157.943,92286.625,99859.227,28942.563,0,0,973.17572 +5438,6637,11870,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5512924,7.5706468,6.1378746,0,0,-1023.7205,0,2,2,2021,12,1,30,0,1,1,0,6.6663837,6.6663837,.05,.05,0,0,0,0,0,0,1,1,0,6.3504791,0,47.84,45.32,-9,-9,6.666666666666667,1,1,0,0,8,10,3,1,1677.5,-15157.943,92286.625,99859.227,28942.563,0,0,973.17572 +5439,6638,11871,-9,11873,11872,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-949.2962,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5439,6638,11872,11873,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.3688402,8.2975721,0,3,0,33.635983,0,-9,-9,2021,6,0,48,50,1,0,0,12.874637,12.874637,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.29,46.01,10,1,1,0,0,11,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5439,6638,11873,11872,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.3453369,7.27281,0,3,0,-37.138969,0,2,2,2021,4,0,21,24,1,0,0,9.0555058,9.0555058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.29,46.01,57.16,56.15,10,1,1,0,0,6,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5440,6639,11874,11875,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.445601,5.1432419,44,-1,-17.538355,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6433582,5.2911596,57.16,56.15,58.87,51.29,8.333333333333334,1,1,0,0,12,5,3,1,670.5,1352828.5,1049285.8,163518.25,0,0,0,2545.4946 +5440,6639,11875,11874,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.7180095,7.3822184,44,1,83.773262,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9285436,7.9106007,58.87,51.29,57.16,56.15,10,1,1,0,0,12,5,3,1,670.5,1352828.5,1049285.8,163518.25,0,0,0,2545.4946 +5441,6640,11876,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.9388967,6.5782261,0,0,0,-903.7356,0,-9,-9,2021,3,0,24,20,1,0,0,4.3897791,4.3897791,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,1.666666666666667,1,1,0,0,4,6,2,0,483,-106257.37,0,0,0,0,0,755.16412 +5442,6641,11877,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.2543902,7.3265014,0,0,-943.92926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.3697069,7.5228009,54.37,44.27,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,263,389615.91,304168.63,217752.58,0,0,0,2113.6536 +5443,6642,11878,11879,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7282991,9.0758181,0,9,-1,-15.057996,0,2,1,2021,7,0,50,60,1,0,0,19.625463,19.625463,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,71.10000000000001,28.41,8.333333333333334,1,1,0,0,7,9,5,1,1256.5,947520.19,205064.31,447179.97,0,0,430.04156,2938.4951 +5443,6642,11879,11878,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,33,1,12.957811,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,71.10000000000001,28.41,57.16,56.15,8.333333333333334,1,1,0,0,1,9,5,1,1256.5,947520.19,205064.31,447179.97,0,0,430.04156,2938.4951 +5443,6643,11880,-9,11879,11878,1,0,27,0,0,0,2,2,-9,0,4,7.81043,7.7299371,0,0,0,-884.65186,0,2,1,2021,11,0,40,0,1,2,1,6.6542196,6.6542196,.05,.05,0,0,0,0,0,0,1,1,0,.22061782,0,47,58,-9,-9,7,1,1,0,0,1,9,3,1,930,-18944.041,-61291.23,0,0,0,0,435.63846 +5443,6644,11881,-9,11879,11878,1,0,24,0,0,0,2,2,-9,0,4,6.5929132,6.5533957,0,0,0,-857.70685,0,2,1,2021,11,0,60,40,1,2,1,1.6626521,1.6626521,.05,.05,0,0,0,0,0,0,1,1,0,2.3072114,0,46,58,-9,-9,7,1,1,0,0,1,9,2,1,876,29591.145,0,0,0,0,0,-288.74319 +5443,6645,11882,-9,11879,11878,1,0,21,0,0,1,2,0,0,1,3,0,0,0,0,0,-942.48358,-9,2,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.85763496,0,53.35,26.74,-9,-9,6.666666666666667,1,1,0,0,5,9,1,1,477,-20087.373,0,0,0,0,0,573.36176 +5443,6646,11883,-9,11879,11878,1,1,18,0,0,0,2,2,1,0,5,7.7247009,7.7172327,0,0,0,-1010.6357,-9,2,1,2021,10,0,55,0,1,0,1,5.2312279,5.2312279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,514,-92216.375,-59658.25,0,0,0,3382.3926,481.69168 +5444,6647,11884,11885,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.5184069,8.3666506,0,19,15,-45.696732,0,3,2,2021,9,1,38,38,1,1,0,15.73219,15.73219,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.17,43.9,60.3,46.58,8.333333333333334,1,1,0,0,12,8,5,1,270,996682.5,2661.4292,843063.44,0,0,0,3678.7554 +5444,6647,11885,11884,11886,-9,1,0,52,0,0,0,1,1,-9,0,3,8.3604689,8.4706297,0,19,-15,-1.5298127,0,3,3,2021,8,0,43,44,1,0,0,12.441078,12.441078,0,0,0,0,0,0,0,2,1,1,0,0,0,60.3,46.58,55.17,43.9,8.333333333333334,3,4,0,0,12,8,5,1,270,996682.5,2661.4292,843063.44,0,0,0,3678.7554 +5444,6648,11886,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.4492216,5.7283907,0,0,-1010.2449,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3979616,63.1,37.54,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,949,5021.354,18024.303,0,0,0,0,500.77591 +5445,6649,11887,11888,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.5510545,6.6048288,9,4,11.415051,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8845539,6.4907775,51.95,24.82,52.37,56.93,5,1,1,0,0,1,10,2,1,985,248925.84,78402.453,190557.55,0,0,3569.8542,1954.1296 +5445,6649,11888,11887,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,9,-4,-159.41621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,51.95,24.82,8.333333333333334,1,1,0,0,1,10,2,1,985,248925.84,78402.453,190557.55,0,0,3569.8542,1954.1296 +5446,6650,11889,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,4.3950195,4.3670387,0,0,-989.50818,0,2,2,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,10.27598,0,0,1,1,0,1.4079212,4.0200701,44.9,18.89,-9,-9,1.666666666666667,1,1,0,0,1,12,2,1,1778,377939.84,-13265.467,47293.664,0,0,0,373.64752 +5447,6651,11890,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-913.83429,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,46.06,-9,-9,5,1,1,0,0,0,7,1,0,806,-101565.77,0,0,0,0,0,1247.1406 +5448,6652,11891,11892,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.4910259,8.3850317,0,13,5,39.480118,0,-9,-9,2021,9,0,38,37,1,0,0,13.253108,13.253108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,15,8,4,1,504.5,3685033.8,3390627,437380.5,118216.8,0,7875.2617,3948.0266 +5448,6652,11892,11891,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.5766497,8.1980982,0,13,-5,130.91362,0,3,3,2021,8,0,60,48,1,0,0,6.0294104,6.0294104,0,0,0,0,0,0,0,0,1,1,0,7.1432467,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,15,8,4,1,504.5,3685033.8,3390627,437380.5,118216.8,0,7875.2617,3948.0266 +5449,6653,11893,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,0,0,-901.94983,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,563,0,0,0,0,0,0,0 +5450,6654,11894,-9,11895,11896,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1034.8574,-9,1,1,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5450,6654,11895,11896,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,0,0,0,28,0,-80.959206,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,12,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5450,6654,11896,11895,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.8503017,9.8478365,0,13,0,52.164848,0,-9,-9,2021,5,0,46,46,1,0,0,51.445717,51.445717,.05,.05,0,0,0,0,0,0,0,0,0,6.6300731,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5451,6655,11897,-9,11898,11899,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1043.7467,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11898,11899,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,0,6.082562,6.0463715,1,3,41.649517,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7503371,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11899,11898,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.7913885,8.675972,0,1,-3,-68.384605,-9,2,2,2021,10,0,50,0,1,0,0,10.636819,10.636819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,10,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11900,-9,11898,11899,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.5265,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11901,-9,11898,11899,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.646,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5452,6656,11902,-9,-9,-9,1,0,33,0,4,0,2,2,-9,1,2,0,0,0,0,0,-1050.739,0,2,-9,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,30.65,40.19,-9,-9,5,1,1,0,1,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11903,-9,11902,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.3011,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11904,-9,11902,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-912.51025,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11905,-9,11902,-9,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1042.7747,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5453,6657,11906,11907,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2105932,6.6085258,8,4,-87.594879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2715666,6.4132538,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,4,7,3,1,708.5,1245684.9,469506.25,428893,0,0,0,1672.0753 +5453,6657,11907,11906,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.3349733,7.4245071,8,-4,70.702499,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9088449,7.4983377,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,708.5,1245684.9,469506.25,428893,0,0,0,1672.0753 +5454,6658,11908,11909,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.0640106,7.9963808,0,18,8,-158.75134,0,2,2,2021,12,0,35,36,1,0,0,10.507549,10.507549,.05,.05,0,0,0,0,0,0,0,0,0,4.9523187,0,48.87,58.55,42.62,43.78,6.666666666666667,1,1,0,0,10,2,5,1,1927,1003775.6,898969,0,0,9825.7432,0,4066.6331 +5454,6658,11909,11908,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.9273634,9.1032333,0,18,-8,-10.500703,0,2,2,2021,23,11,40,43,1,11,0,19.594704,19.594704,.05,.05,0,0,0,0,0,0,0,0,0,4.7675953,0,42.62,43.78,48.87,58.55,6.666666666666667,1,1,0,0,8,2,5,1,1927,1003775.6,898969,0,0,9825.7432,0,4066.6331 +5455,6659,11910,-9,-9,-9,1,0,30,1,3,0,2,2,-9,0,1,6.9007468,6.6508002,0,0,0,-858.80847,-9,2,2,2021,25,10,18,0,1,10,0,5.3848701,5.3848701,0,0,0,0,0,0,0,108,1,1,0,0,0,16.46,56.6,-9,-9,1.666666666666667,1,1,0,0,3,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5455,6659,11911,-9,11910,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-929.50256,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5455,6659,11912,-9,11910,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.25659,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5456,6660,11913,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.58545,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,2.4471953,0,21.996544,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,4,1,0,738,19914.963,0,0,0,0,0,1143.4491 +5457,6661,11914,-9,-9,-9,1,1,21,0,0,0,2,2,-9,1,3,8.3145676,8.5934753,0,0,0,-924.48895,0,-9,-9,2021,16,4,38,0,1,4,0,12.05676,12.05676,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,51.16,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,366,145730.25,182044.53,0,0,0,-1031.7606,2266.2778 +5458,6662,11915,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.3154974,8.1568804,2.0901325,0,0,-932.67432,0,3,3,2021,9,0,38,38,1,0,0,10.262079,10.262079,0,0,0,0,0,0,0,0,0,0,0,0,2.2339256,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,240,-134281.95,0,0,0,2125.3965,0,1950.7639 +5458,6663,11916,-9,-9,11915,1,1,33,0,0,0,2,2,-9,0,3,7.7026033,7.6040397,0,0,0,-955.0144,0,-9,3,2021,9,0,40,39,1,0,1,5.6787176,5.6787176,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,13,2,3,1,412,50545.559,38596.656,0,0,7859.7715,3380.6069,1350.2498 +5459,6664,11917,11918,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,8.0405769,8.2088737,46,0,-62.898773,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7474732,8.3677301,62.49,55.09,37.77,24.67,8.333333333333334,1,1,0,0,4,7,4,1,274,2753296.8,1431970.8,479543.75,0,0,0,3992.4404 +5459,6664,11918,11917,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5533562,6.900228,46,0,-99.92205,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0980191,37.77,24.67,62.49,55.09,3.333333333333333,1,1,0,0,3,7,4,1,274,2753296.8,1431970.8,479543.75,0,0,0,3992.4404 +5460,6665,11919,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.6299801,8.7484856,0,0,0,-994.57617,0,-9,-9,2021,13,3,35,35,1,3,0,18.799078,18.799078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,949,-16025.076,30077.996,0,0,0,0,1181.3263 +5461,6666,11920,11921,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.6314206,7.7590618,26,5,-76.254364,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,8.7328682,0,60.02,56.42,52.31,58.29,10,1,1,0,0,3,9,5,1,1993,2151438,1009678.4,758193.31,0,0,0,4757.3018 +5461,6666,11921,11920,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.3333988,9.2960682,0,25,-5,-14.581932,0,3,3,2021,8,1,45,53,1,1,0,24.641588,24.641588,0,0,0,0,0,0,0,0,0,0,0,3.7544265,0,52.31,58.29,60.02,56.42,8.333333333333334,1,1,0,0,14,9,5,1,1993,2151438,1009678.4,758193.31,0,0,0,4757.3018 +5462,6667,11922,-9,-9,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1110.1329,0,3,-9,2021,31,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.94,24,-9,-9,1.666666666666667,1,1,0,1,2,8,1,0,625,-69072.711,0,0,0,0,0,1072.7316 +5463,6668,11923,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.8486104,7.6930733,6.9690228,0,0,-1048.9911,0,3,2,2021,6,0,60,60,1,0,0,1.9311204,1.9311204,0,0,0,0,0,0,0,0,1,1,0,4.2522616,7.3054762,45.63,53.02,-9,-9,10,1,1,0,0,10,10,3,1,993,0,0,0,0,0,0,923.56897 +5464,6669,11924,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,4,9.2334003,9.103075,0,0,0,-1034.4655,0,3,2,2021,12,2,30,32,1,2,0,41.135845,41.135845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,53.91,-9,-9,8.333333333333334,1,1,0,0,15,6,5,1,1298,140810.47,103716.09,0,0,9883.5313,0,3121.9243 +5465,6670,11925,11926,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.6282377,7.6773934,8,-3,64.216652,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0378933,47.97,48.24,60.11,39.83,8.333333333333334,1,1,0,0,1,4,4,1,993.5,797242.38,475633.59,339238.25,0,3642.8877,0,2525.2563 +5465,6670,11926,11925,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.938457,7.8676915,0,8,3,-69.266357,0,3,3,2021,6,0,38,38,1,0,0,9.4567308,9.4567308,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.11,39.83,47.97,48.24,6.666666666666667,1,1,0,0,9,4,4,1,993.5,797242.38,475633.59,339238.25,0,3642.8877,0,2525.2563 +5465,6671,11927,-9,11925,11926,1,1,22,0,0,0,2,2,-9,0,4,7.7397327,7.9083347,0,0,0,-1034.8268,0,2,2,2021,7,0,45,44,1,0,1,5.9364829,5.9364829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,184,-140610.45,-34964.492,0,0,0,0,782.5918 +5465,6672,11928,-9,11925,11926,1,0,19,0,0,0,2,2,-9,0,2,7.932312,7.7926345,0,0,0,-1027.489,0,2,2,2021,15,3,25,20,1,3,1,12.772469,12.772469,0,0,0,0,0,0,0,0,0,0,0,0,0,37.87,42.28,-9,-9,6.666666666666667,1,1,0,0,2,4,4,1,343,-283543.59,0,0,0,607.54321,1649.1177,1159.3623 +5466,6673,11929,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.5731573,7.9328489,0,0,-1139.9879,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5874457,7.57932,50.89,46.77,-9,-9,6.666666666666667,3,4,0,0,1,8,3,1,1394,1177222.8,670653.81,486395,20690.422,0,0,2347.5642 +5466,6674,11930,-9,11931,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1087.0524,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,769.5,735678.25,159125.16,429531.56,0,0,0,1755.354 +5466,6674,11931,-9,11929,-9,1,0,40,0,0,0,1,1,-9,0,3,8.2130642,8.1877518,0,0,0,-1009.5446,0,1,1,2021,18,6,35,41,1,6,0,10.911861,10.911861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.54,54.48,-9,-9,3.333333333333333,3,4,0,0,4,8,4,1,769.5,735678.25,159125.16,429531.56,0,0,0,1755.354 +5467,6675,11932,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,7.5022502,7.5348177,5.7833257,0,0,-1011.6822,-9,3,2,2021,28,11,32,0,1,11,0,7.5461903,7.5461903,.05,.05,0,0,0,0,0,0,1,0,1,5.2872109,0,39.63,18.58,-9,-9,3.333333333333333,1,1,0,0,11,1,3,0,191,113537.8,-97729.008,0,0,0,153.87172,1613.2753 +5467,6676,11933,-9,11932,-9,1,1,18,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1045.7578,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,434,0,0,0,0,0,0,0 +5468,6677,11934,11935,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.0518551,6.8800406,43,-1,17.209366,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3827848,7.6108298,46.28,62.6,52.39,45.21,8.333333333333334,1,1,0,0,5,10,5,1,139.5,979598.56,540052.38,490226.06,0,0,417.11414,4694.2598 +5468,6677,11935,11934,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.9998798,8.9332237,0,42,1,-12.728874,0,2,3,2021,10,0,20,25,1,0,0,42.369972,42.369972,.05,.05,0,0,0,0,0,0,0,0,0,4.0342369,0,52.39,45.21,46.28,62.6,6.666666666666667,1,1,0,0,11,10,5,1,139.5,979598.56,540052.38,490226.06,0,0,417.11414,4694.2598 +5469,6678,11936,11937,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.1765652,7.9143844,0,1,3,42.827095,-9,-9,-9,2021,21,7,55,0,1,7,0,10.142101,10.142101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,52.6,52.88,5,1,1,0,0,8,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5469,6678,11937,11936,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.0229111,7.3672862,0,1,-3,46.812107,-9,-9,-9,2021,6,0,25,0,1,0,0,6.1248159,6.1248159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,26.81,40.59,8.333333333333334,1,1,0,0,5,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5469,6678,11938,-9,11937,11936,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.0325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5470,6679,11939,11940,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2327337,8.2512102,0,19,16,-35.677197,0,2,3,2021,17,5,32,30,1,5,0,14.161101,14.161101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.69,23.86,48.21,53.41,3.333333333333333,1,1,0,0,14,10,4,0,563,563591,467955.88,344149.44,0,4043.9072,0,2529.3752 +5470,6679,11940,11939,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.0375357,8.5082884,0,19,-16,-110.38937,0,3,2,2021,13,2,38,38,1,2,0,10.309681,10.309681,.05,.05,0,0,0,0,0,7,0,0,0,0,0,48.21,53.41,33.69,23.86,8.333333333333334,1,1,0,0,14,10,4,0,563,563591,467955.88,344149.44,0,4043.9072,0,2529.3752 +5471,6680,11941,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.7638664,7.248343,0,0,-940.13818,-9,2,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,1.631713,0,20.317795,0,1,1,0,4.4023066,6.785749,41.64,15.05,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,656,400832.09,168068.67,0,0,0,0,520.59595 +5472,6681,11942,11943,-9,-9,1,0,66,1,3,0,3,3,-9,0,1,0,0,0,8,-17,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,10.330074,0,0,1,1,0,0,0,53.07,23.39,60.89,44.94,10,2,3,0,0,0,5,1,1,1416,155246.53,75787.063,0,0,0,0,448.61996 +5472,6681,11943,11942,-9,-9,1,1,83,1,3,0,2,2,-9,0,3,0,0,0,8,17,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.72459984,0,0,1,1,0,0,0,60.89,44.94,53.07,23.39,10,2,3,0,0,0,5,1,1,1416,155246.53,75787.063,0,0,0,0,448.61996 +5472,6682,11944,11945,-9,-9,1,0,48,1,3,0,1,1,-9,0,2,6.6222963,6.7724423,0,8,1,11.141684,0,-9,-9,2021,11,0,14,12,1,0,0,6.5952387,6.5952387,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,32.49,63.55,29.17,6.666666666666667,2,3,0,0,3,5,2,1,632,100208.61,0,85861.055,0,1676.0687,0,2968.8142 +5472,6682,11945,11944,11942,11943,1,1,47,1,3,0,2,2,-9,0,2,7.2110939,7.011816,0,26,-1,27.158714,0,2,2,2021,10,0,22,24,1,0,0,8.8174524,8.8174524,0,0,0,0,0,0,0,0,1,1,0,6.9629555,0,63.55,29.17,59.7,32.49,5,2,3,0,0,10,5,2,1,632,100208.61,0,85861.055,0,1676.0687,0,2968.8142 +5472,6683,11946,11947,-9,-9,1,0,36,1,3,0,3,3,-9,0,3,0,0,0,8,0,-23.67466,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,42.42,50.43,8.333333333333334,2,3,0,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11947,11946,11942,11943,1,1,36,1,3,0,2,2,-9,0,4,7.1232319,7.380527,0,8,0,-98.931923,0,3,2,2021,12,0,40,45,1,0,0,3.0868084,3.0868084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.42,50.43,57.33,53.46,5,2,3,0,0,9,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11948,-9,11946,11947,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.57745,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11949,-9,11946,11947,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.7092,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6684,11950,-9,11944,11945,1,0,20,1,3,1,2,0,0,0,1,0,0,0,0,0,-1041.233,-9,1,2,2021,30,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.78,33.65,-9,-9,1.666666666666667,2,3,0,0,0,5,1,1,1548,65989.773,0,0,0,0,184.80867,0 +5473,6685,11951,11952,-9,-9,1,1,49,1,1,0,2,2,-9,0,3,9.7170696,9.6305828,0,3,14,-50.77541,0,-9,-9,2021,23,9,55,60,1,9,0,34.600407,34.600407,.05,.05,0,0,0,0,.50390917,0,1,1,0,0,0,24.94,61.65,26.56,54.71,1.666666666666667,1,1,0,1,3,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5473,6685,11952,11951,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,6.9088759,7.0768814,0,3,-14,-3.6451149,0,2,2,2021,19,7,16,0,1,7,0,7.0976686,7.0976686,0,0,0,0,0,0,0,0,1,1,0,0,0,26.56,54.71,24.94,61.65,1.666666666666667,1,1,0,1,6,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5473,6685,11953,-9,11952,11951,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.9154,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5474,6686,11954,11955,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.7585168,5.3024602,51,-2,20.585592,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1570978,4.9727302,55.34,54.26,55.03,11.91,8.333333333333334,1,1,0,0,3,5,2,0,441.5,642811.25,219707.25,225676.44,0,0,0,2000.3623 +5474,6686,11955,11954,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7501607,7.011404,51,2,-17.288364,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,1,0,121.87712,0,0,1,1,0,5.4635639,6.9476171,55.03,11.91,55.34,54.26,8.333333333333334,1,1,0,0,0,5,2,0,441.5,642811.25,219707.25,225676.44,0,0,0,2000.3623 +5475,6687,11956,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.5861,-9,-9,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.719501,0,45.83,54.52,-9,-9,5,1,1,1,0,0,11,1,0,310,-38761.316,0,0,0,0,0,748.65137 +5475,6688,11957,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-936.5224,0,-9,-9,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.18,22.84,-9,-9,0,1,1,0,1,0,11,1,0,440,-114529.35,23993.473,0,0,-61.123421,0,1513.74 +5476,6689,11958,11959,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.7644386,9.5487862,0,20,0,-78.649582,0,3,2,2021,12,0,40,44,1,0,0,30.237206,30.237206,.05,.05,0,0,0,0,0,0,0,0,0,3.986393,0,40.38,61.66,54.2,57.49,6.666666666666667,1,1,0,0,13,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11959,11958,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.78862,8.5722809,0,20,0,6.621654,0,1,1,2021,2,0,47,45,1,0,0,15.927616,15.927616,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.38,61.66,8.333333333333334,2,3,0,0,13,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11960,-9,11959,11958,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.2524,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11961,-9,11959,11958,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.43005,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5477,6690,11962,11964,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,0,0,0,7,3,54.97562,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,0,0,0,2.7578413,0,57.06,57.76,51,56,10,1,1,0,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11963,-9,11962,11964,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-984.07733,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,10,1,1,0,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11964,11962,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.7095375,9.4197454,0,7,-3,24.440857,0,-9,-9,2021,9,0,70,65,1,1,0,19.948151,19.948151,.05,.05,0,0,0,0,0,0,0,0,0,4.3351064,0,51,56,57.06,57.76,8,1,1,0,0,1,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11965,-9,11962,11964,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.5002,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11966,-9,11962,11964,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-950.84485,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5478,6691,11967,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.6000328,8.4976168,0,0,0,-918.22821,0,3,1,2021,13,1,15,55,1,1,0,40.542297,40.542297,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,1,11,1,5,0,632,-12192.563,-196.72406,0,0,0,0,2594.791 +5479,6692,11968,-9,11970,11969,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-905.22235,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6692,11969,11970,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,1.7633198,1.9419862,0,10,2,-3.045404,0,-9,-9,2021,11,0,40,45,1,0,0,.017015772,.017015772,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.75,49.75,33.49,64.26000000000001,8.333333333333334,1,1,0,1,12,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6692,11970,11969,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.3606267,7.3876557,0,23,-2,22.698587,0,-9,-9,2021,12,0,24,14,1,0,0,6.1752014,6.1752014,0,0,0,0,0,0,0,0,1,1,0,.9074074,0,33.49,64.26000000000001,53.75,49.75,8.333333333333334,1,1,0,1,12,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6693,11971,-9,11970,11969,1,0,18,0,1,0,2,2,-9,0,4,6.893621,6.8715515,0,0,0,-1030.8484,0,2,3,2021,12,0,21,0,1,2,1,6.1142793,6.1142793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.8,57.89,-9,-9,6,1,1,0,0,1,10,2,1,162,74498.258,-66669.273,0,0,0,1398.8826,1611.5299 +5480,6694,11972,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5286155,6.6797924,0,0,-919.26703,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5029483,43.09,34.34,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,244,598533.13,12905.157,260488.27,0,0,0,124.21722 +5481,6695,11973,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.88727,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.17,30.87,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1495,14688.162,0,0,0,0,0,1601.5782 +5482,6696,11974,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.5858908,7.8464594,0,0,0,-1017.9394,0,-9,-9,2021,10,0,40,39,1,0,0,8.7580547,8.7580547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,322,142771.02,126434.94,0,0,0,0,1737.3607 +5483,6697,11975,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,8.5752687,8.0679674,0,0,0,-1017.6516,0,1,1,2021,14,2,61,0,1,2,0,6.9081578,6.9081578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.58,51.33,-9,-9,3.333333333333333,1,1,0,1,10,8,4,0,313,19511.602,29321.449,0,0,19077.479,0,1948.491 +5484,6698,11976,11977,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.4556122,7.7422662,0,27,-8,46.489067,0,-9,-9,2021,11,0,25,20,1,0,0,9.9740705,9.9740705,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,52.79,21.01,51.73,8.333333333333334,1,1,0,0,10,5,4,0,3071,-22111.529,-29572.219,22160.195,-704.479,15020.072,0,2600.7656 +5484,6698,11977,11976,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0516825,8.084631,0,27,8,76.949699,0,-9,-9,2021,26,12,60,45,1,12,0,4.8804383,4.8804383,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.01,51.73,53.73,52.79,3.333333333333333,1,1,0,0,9,5,4,0,3071,-22111.529,-29572.219,22160.195,-704.479,15020.072,0,2600.7656 +5484,6699,11978,-9,11976,11977,1,0,22,0,0,0,2,2,-9,0,5,8.0164051,7.3264027,0,0,0,-1007.2913,0,2,2,2021,21,8,40,16,1,8,1,8.1537313,8.1537313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,56.89,-9,-9,10,1,1,0,0,1,5,3,0,391,-73790.789,116706.69,0,0,5243.9414,0,997.9361 +5485,6700,11979,11980,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.3263717,5.7729998,30,-3,30.348053,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4336858,68.2,36.22,53,47,10,1,1,0,0,0,10,2,0,2623.5,656866.38,210424.89,240702.56,0,0,0,1406.7206 +5485,6700,11980,11979,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8641524,6.68893,30,3,20.881088,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,5.8014693,0,0,1,1,0,0,6.4805093,53,47,68.2,36.22,10,1,1,0,0,3,10,2,0,2623.5,656866.38,210424.89,240702.56,0,0,0,1406.7206 +5486,6701,11981,-9,11983,-9,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.38959,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11982,-9,11983,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.3391,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11983,-9,-9,-9,1,0,40,1,3,0,3,3,-9,1,4,0,0,0,0,0,-1060.6727,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.15,52.91,-9,-9,5,1,1,0,0,1,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11984,-9,11983,-9,1,1,16,1,3,1,3,0,-9,0,3,0,0,0,0,0,-821.41742,-9,3,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.93,44.84,-9,-9,10,1,1,0,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5487,6702,11985,11986,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,6.8988347,6.7422471,0,29,-2,31.900223,0,2,2,2021,6,0,12,15,1,0,0,7.3441763,7.3441763,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,12,4,4,1,739.5,-27835.348,30491.367,0,0,5073.4648,0,1676.906 +5487,6702,11986,11985,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.7796907,8.1587601,0,9,2,-148.45168,0,-9,-9,2021,6,0,45,40,1,0,0,7.4015536,7.4015536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,12,4,4,1,739.5,-27835.348,30491.367,0,0,5073.4648,0,1676.906 +5487,6703,11987,-9,11985,11986,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-998.69403,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,3,4,1,1,702,-53894.555,0,0,0,0,0,0 +5487,6704,11988,-9,11985,11986,1,1,23,0,0,0,2,2,-9,0,5,8.2089691,8.0195789,0,0,0,-909.89258,0,2,2,2021,5,0,37,36,1,0,1,7.7182226,7.7182226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,67.92,41.85,-9,-9,10,2,3,0,0,9,4,4,1,447,-218462.47,7811.1729,0,0,0,0,677.47766 +5488,6705,11989,11990,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.9904718,7.5222211,38,5,160.69943,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3776155,7.2401834,51.73,58.82,62.49,55.09,8.333333333333334,1,1,0,0,8,12,4,1,1382.5,626897.25,825577.88,0,0,0,576.30487,2296.5667 +5488,6705,11990,11989,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.3385067,7.7906642,6.9020648,38,-5,14.597087,0,2,2,2021,1,0,18,25,1,0,0,11.074574,11.074574,0,0,0,0,0,0,0,0,0,0,0,4.5186934,7.0307813,62.49,55.09,51.73,58.82,10,1,1,0,0,10,12,4,1,1382.5,626897.25,825577.88,0,0,0,576.30487,2296.5667 +5489,6706,11991,11993,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.6540403,8.555048,0,3,10,-143.83865,0,1,2,2021,6,0,50,49,1,0,0,14.58111,14.58111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.84,49.17,8.333333333333334,1,1,0,0,9,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5489,6706,11992,-9,11993,11991,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.2434,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5489,6706,11993,11991,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,6.4818482,6.4371409,0,3,-10,81.806862,0,2,1,2021,14,2,12,30,1,2,0,5.8608284,5.8608284,0,0,0,0,0,0,0,0,1,1,0,.19336081,0,51.84,49.17,57.16,56.15,10,1,1,0,0,6,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5490,6707,11994,11995,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8963642,9.0340357,0,31,5,-44.670177,0,3,3,2021,12,0,52,48,1,0,0,14.39014,14.39014,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.17,47.9,58.75,37.87,6.666666666666667,1,1,0,0,11,6,5,1,1111.5,896394.75,744782.69,339250,0,2049.2576,79.888748,3584.1021 +5490,6707,11995,11994,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9042339,7.8027539,0,31,-5,60.178257,0,3,-9,2021,8,0,32,34,1,0,0,8.5115509,8.5115509,.05,.05,0,0,0,0,0,7,0,0,0,5.3723884,0,58.75,37.87,37.17,47.9,6.666666666666667,1,1,0,0,11,6,5,1,1111.5,896394.75,744782.69,339250,0,2049.2576,79.888748,3584.1021 +5491,6708,11996,-9,11997,-9,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1079.041,-9,2,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6708,11997,11998,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0920582,8.1837587,0,4,4,71.576401,0,3,3,2021,12,0,39,32,1,0,0,10.390933,10.390933,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,52.88,57.33,53.46,6.666666666666667,1,1,0,0,9,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6708,11998,11997,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.4229574,8.4001379,0,4,-4,-74.282097,0,-9,-9,2021,12,0,46,46,1,0,0,10.969882,10.969882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.11,52.88,6.666666666666667,1,1,0,0,4,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6709,11999,-9,11997,-9,1,0,20,0,0,0,2,2,-9,0,4,7.8136506,8.0562601,0,0,0,-1015.7363,-9,2,-9,2021,10,0,24,0,1,0,1,12.324114,12.324114,0,0,0,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,10,1,1,0,0,4,12,3,0,171,-136776.77,0,0,0,0,0,1731.8859 +5492,6710,12000,-9,12001,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-951.7309,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,953.5,220778.89,156417.19,291137.94,86785.453,0,-320.90039,8200.0088 +5492,6710,12001,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,10.021194,9.6952133,7.346508,0,0,-1071.8319,0,2,2,2021,12,0,40,40,1,0,0,52.513,52.513,.05,.05,0,0,0,0,0,0,1,1,0,8.1835337,0,51.24,58.84,-9,-9,5,1,1,0,0,15,6,5,1,953.5,220778.89,156417.19,291137.94,86785.453,0,-320.90039,8200.0088 +5493,6711,12002,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9367948,8.060751,0,0,0,-920.14301,0,3,-9,2021,6,0,32,40,1,0,0,6.9705901,6.9705901,0,0,0,0,0,0,0,27,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,12,3,0,204,-40069.48,0,87468.344,0,779.05078,0,805.35583 +5494,6712,12003,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.139287,8.0029287,0,0,0,-984.20789,0,3,2,2021,8,0,39,39,1,0,0,7.2328286,7.2328286,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,1397,194884.75,0,0,0,0,0,900.09595 +5495,6713,12004,12005,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.4947028,7.234211,0,2,3,106.34457,0,-9,-9,2021,12,0,22,22,1,0,0,7.2791705,7.2791705,0,0,0,0,0,0,0,0,1,1,0,1.2849553,0,37.17,31.84,49.25,61.25,5,1,1,0,1,12,11,3,0,421,227342.7,-19867.494,174213.06,92870.383,0,1338.3037,1572.7788 +5495,6713,12005,12004,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,7.6916876,7.0653281,0,2,-3,55.398064,0,2,2,2021,9,0,33,33,1,0,0,6.0793209,6.0793209,.05,.05,0,0,0,0,0,0,1,1,0,2.7734232,0,49.25,61.25,37.17,31.84,8.333333333333334,1,1,0,0,12,11,3,0,421,227342.7,-19867.494,174213.06,92870.383,0,1338.3037,1572.7788 +5496,6714,12006,12007,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1433725,8.2089596,0,13,7,16.813507,0,2,2,2021,9,0,45,45,1,0,0,7.6813293,7.6813293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,7,4,1,443.5,894203.5,492495.63,336231.19,0,1953.3303,0,2648.1189 +5496,6714,12007,12006,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1191607,8.18783,0,14,-7,94.993896,0,2,2,2021,10,0,38,45,1,0,0,11.817158,11.817158,0,0,0,0,0,0,0,0,0,0,0,4.3767581,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,7,4,1,443.5,894203.5,492495.63,336231.19,0,1953.3303,0,2648.1189 +5497,6715,12008,12009,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.2144318,6.1310701,63,-4,65.763405,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3946748,6.5808105,44.72,36.6,29.12,23.03,5,1,1,0,0,0,4,2,1,531,203530.77,213692.98,132670.58,0,0,0,2535.3965 +5497,6715,12009,12008,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.8688517,6.6933928,63,4,-26.289246,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,10.407656,0,0,1,1,0,7.019455,6.6924868,29.12,23.03,44.72,36.6,5,1,1,0,0,0,4,2,1,531,203530.77,213692.98,132670.58,0,0,0,2535.3965 +5498,6716,12010,-9,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1065.7759,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.73,21.25,-9,-9,5,1,1,0,0,0,5,1,0,243,170845.77,0,0,0,0,0,2136.1072 +5499,6717,12011,-9,12012,12013,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.81348,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5499,6717,12012,12013,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,0,0,0,10,0,-124.60849,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,3,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5499,6717,12013,12012,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.0941057,8.8441124,0,10,9,-7.8778586,0,2,2,2021,12,0,60,60,1,0,0,16.128777,16.128777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,11,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5500,6718,12014,12015,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8663311,8.8314066,0,10,-1,-44.874393,0,-9,-9,2021,22,10,45,40,1,10,0,10.697103,10.697103,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,44.01,45.59,6.666666666666667,1,1,0,0,5,12,5,1,680.5,367280.69,233999.03,232320.84,83194.75,0,0,2211.4336 +5500,6718,12015,12014,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.804811,7.7885656,0,10,1,6.2366009,0,3,3,2021,13,3,30,30,1,3,0,10.841224,10.841224,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.01,45.59,32.95,64.54000000000001,5,1,1,0,0,14,12,5,1,680.5,367280.69,233999.03,232320.84,83194.75,0,0,2211.4336 +5501,6719,12016,12017,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1706038,6.7872362,0,11,-7,-90.183929,0,2,2,2021,9,1,17,19,1,1,0,7.3417029,7.3417029,0,0,0,0,0,0,0,2,0,0,0,0,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,14,10,3,1,721.5,137812.03,56491.406,266974.75,144275.44,0,2744.176,1474.1606 +5501,6719,12017,12016,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.9538698,7.9703083,0,11,7,-82.435776,0,-9,-9,2021,6,0,44,43,1,0,0,7.9437013,7.9437013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.37,54.8,5,1,1,0,0,14,10,3,1,721.5,137812.03,56491.406,266974.75,144275.44,0,2744.176,1474.1606 +5501,6720,12018,-9,12016,12017,1,0,23,0,0,0,2,2,-9,0,4,7.4942541,7.6444387,0,0,0,-1078.0753,0,2,2,2021,18,6,26,40,1,6,1,7.6829886,7.6829886,0,0,0,0,0,0,0,0,0,0,0,4.9866786,0,46.56,57.02,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,424,45114.848,0,0,0,0,0,1025.3555 +5501,6721,12019,-9,12016,12017,1,0,20,0,0,0,2,2,-9,0,5,7.4553199,7.5026116,0,0,0,-1121.5469,0,2,2,2021,24,8,25,25,1,8,1,6.39364,6.39364,0,0,0,0,0,0,0,0,0,0,0,.37651062,0,27.75,69.57000000000001,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,924,97537.992,0,0,0,0,0,461.60962 +5502,6722,12020,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.4513121,8.3136225,0,0,-827.07538,0,-9,1,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1053414,8.5245771,54.74,57.22,-9,-9,10,1,1,0,0,0,10,4,0,390,716634.63,810709.06,155172.66,44998.008,3777.0901,0,2869.9346 +5503,6723,12021,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-920.65894,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,4.2386761,0,2,1,1,0,0,0,49.93,16.26,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,569,-211148.86,0,0,0,0,0,1974.0863 +5504,6724,12022,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.923491,7.7570992,0,0,0,-999.42969,-9,3,3,2021,18,6,43,0,1,6,0,4.7386985,4.7386985,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.55,33.8,-9,-9,8.333333333333334,1,1,0,1,8,11,3,0,1174,-104268.95,34653.801,0,0,0,0,757.84045 +5504,6725,12023,-9,12022,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0567846,8.0061121,0,0,0,-946.83142,-9,2,3,2021,13,2,35,0,1,2,1,11.251414,11.251414,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.54,41.09,-9,-9,6.666666666666667,1,1,0,0,7,11,4,0,1122,156861.91,2335.0459,0,0,0,0,1655.2018 +5505,6726,12024,12025,-9,-9,1,0,27,0,0,0,2,2,0,0,2,0,0,0,6,0,97.115311,-9,-9,-9,2021,25,10,0,0,2,10,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,11.06,63.02,38.82,63.21,3.333333333333333,1,1,0,0,1,8,4,0,382,-43503.715,61894.766,203845,134803.58,-257.75299,0,1783.5876 +5505,6726,12025,12024,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.5382595,8.5640955,0,6,0,-9.0685472,0,1,1,2021,6,0,40,41,1,0,0,16.306383,16.306383,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.82,63.21,11.06,63.02,6.666666666666667,1,1,0,0,6,8,4,0,382,-43503.715,61894.766,203845,134803.58,-257.75299,0,1783.5876 +5506,6727,12026,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.4255304,8.7131758,0,0,0,-1080.5009,0,1,1,2021,15,3,36,90,1,3,0,13.432594,13.432594,0,0,.05,0,0,0,0,0,0,0,0,3.8687515,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,73,710868.56,370217.41,290733.94,0,0,0,1512.9075 +5507,6728,12027,12028,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.4049921,9.4455099,0,2,0,24.64887,0,2,2,2021,7,0,41,42,1,0,0,31.75127,31.75127,.05,.05,0,0,0,0,0,0,0,0,0,1.8034036,0,60.13,49.27,29.36,67.77,8.333333333333334,1,1,0,0,13,2,5,1,951,1258088.3,694634.81,527658.94,1272.8442,0,0,5054.582 +5507,6728,12028,12027,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.5184383,8.8037186,0,2,0,-146.72086,0,3,2,2021,28,12,50,45,1,12,0,12.648483,12.648483,.05,.05,0,0,0,0,0,0,0,0,0,4.7530632,0,29.36,67.77,60.13,49.27,1.666666666666667,1,1,0,0,13,2,5,1,951,1258088.3,694634.81,527658.94,1272.8442,0,0,5054.582 +5508,6729,12029,12030,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,0,0,0,11,0,62.673157,0,3,-9,2021,19,4,0,40,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,37.43,35.56,5,1,1,1,0,11,11,4,0,716,340711.88,13861.971,86472.875,50129.516,0,570.59454,1162.4705 +5508,6729,12030,12029,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3697271,8.7238131,0,11,0,51.596664,0,3,-9,2021,14,2,12,12,1,2,0,56.964569,56.964569,0,0,0,0,0,0,0,0,0,0,0,.30650607,0,37.43,35.56,48.45,57.49,5,1,1,0,1,12,11,4,0,716,340711.88,13861.971,86472.875,50129.516,0,570.59454,1162.4705 +5509,6730,12031,-9,12032,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1091.7888,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,4,2,-9,0,0,2,1,0,1006.5,-18339.688,0,0,0,0,0,609.29242 +5509,6730,12032,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1019.4858,0,3,3,2021,18,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.35,52.14,-9,-9,0,4,2,1,1,3,2,1,0,1006.5,-18339.688,0,0,0,0,0,609.29242 +5510,6731,12033,12034,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,45,-5,11.8271,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93713576,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,0,9,3,1,328,708129.38,384319.28,209012.78,0,0,0,2417.6211 +5510,6731,12034,12033,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.7625103,7.7953672,45,5,101.58771,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.412497,7.6713901,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,0,9,3,1,328,708129.38,384319.28,209012.78,0,0,0,2417.6211 +5510,6732,12035,-9,12033,12034,1,1,29,0,0,0,2,2,-9,0,4,8.4213839,8.700676,0,0,0,-1135.3019,0,3,2,2021,10,0,40,48,1,1,0,15.28269,15.28269,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,5,1,969,-163062.41,-73404.82,0,0,0,0,2061.8621 +5511,6733,12036,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.9203367,6.4931583,0,0,-880.63721,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8604832,6.5948572,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,591,463296.03,77630.359,236858.33,0,0,0,2102.9172 +5512,6734,12037,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1063.4108,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1334596,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,0,863,103789.39,0,106489.59,93030.641,0,0,1618.2874 +5513,6735,12038,12039,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5999269,7.9788885,7.2126126,23,0,80.471054,0,3,1,2021,10,0,27,27,1,0,0,8.6587744,8.6587744,0,0,0,0,0,0,0,0,0,0,0,6.6228514,0,51.83,57.2,51.83,57.2,6.666666666666667,2,3,0,0,11,4,3,1,803.5,422539.13,334991.16,186443.73,33728.719,8351.4453,0,1416.8782 +5513,6735,12039,12038,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,3,0,41.8862,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,1,0,0,4,3,1,803.5,422539.13,334991.16,186443.73,33728.719,8351.4453,0,1416.8782 +5513,6736,12040,-9,12038,12039,1,1,25,0,0,0,2,2,-9,0,4,8.2649565,7.9687605,0,0,0,-963.96643,0,2,2,2021,10,0,37,37,1,0,1,10.341046,10.341046,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,3,4,4,1,848,241000.63,0,0,0,0,0,1488.8977 +5513,6737,12041,-9,12038,12039,1,1,24,0,0,0,2,2,-9,0,4,6.9248261,7.0958552,0,0,0,-993.31592,0,2,2,2021,9,0,28,28,1,0,1,4.7552967,4.7552967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,7,4,2,1,361,128996.14,58220.609,0,0,0,0,316.13763 +5513,6738,12042,-9,12038,12039,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1020.9819,-9,2,3,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1596298,0,25.83,62.57,-9,-9,3.333333333333333,2,3,0,0,0,4,1,1,371,-78136.477,0,0,0,0,0,382.57941 +5514,6739,12043,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,6.9066181,6.8431911,0,0,0,-1098.0902,0,3,2,2021,11,0,16,16,1,0,0,6.6214452,6.6214452,0,0,.05,0,0,0,0,0,1,1,0,.020101059,0,40.25,54.22,-9,-9,5,1,1,0,0,3,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5514,6739,12044,-9,12043,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.6178,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5514,6739,12045,-9,12043,-9,1,1,16,0,2,1,2,0,-9,0,5,0,3.6759698,4.0088754,0,0,-1199.8635,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8510752,0,40.99,58.35,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5515,6740,12046,12047,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.8089051,7.7350755,32,-2,-62.705757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8880906,55.54,46.02,57.16,56.15,8.333333333333334,1,1,0,0,0,2,4,1,972.5,1601325.4,1028606.3,310930,0,0,0,3722.1089 +5515,6740,12047,12046,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.1908484,8.0986223,32,2,-89.296227,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5985494,8.0103035,57.16,56.15,55.54,46.02,8.333333333333334,1,1,0,0,1,2,4,1,972.5,1601325.4,1028606.3,310930,0,0,0,3722.1089 +5516,6741,12048,12049,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.9096265,6.0963745,44,8,-4.6784959,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4421668,0,0,1,1,0,7.5477862,5.8732386,65.28,34.83,50.16,56.75,10,1,1,0,0,0,2,2,1,345,354277.28,113800.7,151321.77,0,0,0,2233.001 +5516,6741,12049,12048,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,44,-8,-3.9998612,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.16,56.75,65.28,34.83,8.333333333333334,1,1,0,0,5,2,2,1,345,354277.28,113800.7,151321.77,0,0,0,2233.001 +5517,6742,12050,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.2971334,7.5265975,0,0,0,-973.61688,0,1,1,2021,6,0,14,18,1,0,0,15.315084,15.315084,0,0,0,0,0,0,0,14.5,0,0,0,3.2324631,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1539,357730.5,63912.086,391697.97,0,0,0,1157.1545 +5518,6743,12051,12052,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,7.0797324,6.9581699,61,2,-83.177444,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,95.327812,0,0,1,1,0,0,7.4833903,40.47,18.64,44.83,33.87,6.666666666666667,1,1,0,0,0,1,2,1,1320.5,498899.31,74952.648,256855.5,0,0,0,2755.9644 +5518,6743,12052,12051,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,61,-2,-132.11894,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,44.83,33.87,40.47,18.64,6.666666666666667,1,1,0,0,0,1,2,1,1320.5,498899.31,74952.648,256855.5,0,0,0,2755.9644 +5519,6744,12053,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.37819,9.4815502,0,0,0,-993.60034,0,3,3,2021,8,0,40,40,1,0,0,50.216778,50.216778,.05,.05,0,0,0,0,0,0,0,0,0,8.8347111,0,44.78,56.37,-9,-9,5,1,1,0,0,10,12,5,1,1410,351076.25,123617.17,172895.47,158992.92,20021.23,4569.125,7012.7334 +5520,6745,12054,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.2521472,5.844799,0,0,-995.30719,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2976546,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,950,507182.03,197730.08,122156.49,0,0,0,932.51031 +5521,6746,12055,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,4,0,9.065733,9.0665817,0,0,-1050.8342,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3151031,8.6680632,58.5,41.81,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,494,1077138.8,395727.25,442678.31,0,0,0,4152.8623 +5522,6747,12056,12057,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.2860317,8.3402071,0,8,11,-35.097801,0,-9,-9,2021,0,0,54,49,1,0,0,9.311512,9.311512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,32.15,62.39,56.71,8.333333333333334,2,3,0,0,11,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12057,12056,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.1804438,8.2672863,0,13,-11,-25.696335,0,2,2,2021,6,0,40,45,1,0,0,10.644646,10.644646,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.31,32.15,8.333333333333334,2,3,0,0,8,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12058,-9,12057,12056,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1187.7839,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.77852684,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12059,-9,12057,12056,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3331,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5523,6748,12060,12061,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9815912,7.6810899,0,5,1,-123.25618,0,3,2,2021,9,0,36,38,1,0,0,12.5039,12.5039,.05,.05,0,0,0,0,0,0,0,0,0,.63014328,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,8,4,0,437,1390490.1,564588.13,720395.75,0,0,0,2561.9709 +5523,6748,12061,12060,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0486631,7.9906521,0,5,-1,-21.772139,0,-9,-9,2021,14,3,39,41,1,3,0,8.874877,8.874877,.05,.05,0,0,0,0,0,7,0,0,0,3.8032706,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,9,8,4,0,437,1390490.1,564588.13,720395.75,0,0,0,2561.9709 +5524,6749,12062,12063,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.9659834,7.3319106,10,7,33.616737,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,7.1854348,7.2509718,42.14,51.58,51,54,8.333333333333334,1,1,0,0,8,4,3,1,837.5,2530.2815,-847.92969,149117.39,0,0,0,2573.6692 +5524,6749,12063,12062,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.332375,8.0277891,7.1069427,10,-7,85.725952,0,2,2,2021,5,0,16,38,1,0,0,9.5458574,9.5458574,0,0,0,0,0,0,0,14.5,1,1,0,.35629889,7.2486672,51,54,42.14,51.58,8.333333333333334,1,1,0,0,11,4,3,1,837.5,2530.2815,-847.92969,149117.39,0,0,0,2573.6692 +5525,6750,12064,12065,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,0,0,45,0,-24.976852,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3230801,0,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,10,9,2,1,495,470067.31,265661.03,229754.27,0,0,0,2012.8586 +5525,6750,12065,12064,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.1537685,7.4584246,44,0,-26.539776,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2693443,7.2937641,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,11,9,2,1,495,470067.31,265661.03,229754.27,0,0,0,2012.8586 +5526,6751,12066,12067,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-3,29.065382,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,53,47,7,1,1,0,0,9,13,5,1,1019.5,2300620.5,1392251.3,257606.73,0,0,0,5193.1543 +5526,6751,12067,12066,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,9.1292191,8.6442842,8,3,178.92853,-9,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1612883,9.1051092,53,47,51,47,7,1,1,0,0,9,13,5,1,1019.5,2300620.5,1392251.3,257606.73,0,0,0,5193.1543 +5527,6752,12068,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.1587267,6.4938159,0,0,-905.14679,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.944489,52,48,-9,-9,7,1,1,0,0,2,13,2,1,825,-84611.82,131258,0,0,0,0,257.52621 +5528,6753,12069,-9,-9,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-927.57916,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1724029,0,47,60,-9,-9,7,3,4,0,0,0,8,1,1,2084,0,0,0,0,0,0,906.31494 +5529,6754,12070,12071,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4298334,8.9228506,0,22,-8,111.10519,0,2,-9,2021,22,11,34,36,1,11,0,21.538162,21.538162,.05,.05,0,0,0,0,0,0,1,1,0,3.7020562,0,24.85,67.03,41.65,36.47,1.666666666666667,1,1,0,0,13,7,4,1,559.5,1231690,1112982.5,221917.81,28513.996,0,0,2953.5752 +5529,6754,12071,12070,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.0674682,5.9059763,22,8,-98.795525,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1456771,5.8913889,41.65,36.47,24.85,67.03,6.666666666666667,1,1,0,0,11,7,4,1,559.5,1231690,1112982.5,221917.81,28513.996,0,0,2953.5752 +5530,6755,12072,12073,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,6.6845326,6.8810668,27,30,.050959989,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5917168,6.5832238,54.69,57.47,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,745.5,1662995.5,545698.25,672186.75,0,0,0,3128.4033 +5530,6755,12073,12072,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.1170025,8.2987881,0,27,-30,-52.741146,0,3,2,2021,7,0,30,70,1,0,0,13.492983,13.492983,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,0,14,9,3,1,745.5,1662995.5,545698.25,672186.75,0,0,0,3128.4033 +5531,6756,12074,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.7536507,8.4714231,0,0,0,-1050.0138,0,2,2,2021,13,3,37,40,1,3,0,17.960672,17.960672,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,855,362944.25,-46257.281,193255.17,0,0,0,1798.5504 +5532,6757,12075,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-998.18896,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6827013,0,54.79,55.86,-9,-9,10,1,1,0,0,12,9,2,1,580,139685.97,0,0,0,0,0,1136.3573 +5533,6758,12076,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1029.5352,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3690343,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,12,1,0,1969,-32448.033,0,0,0,0,0,109.53844 +5534,6759,12077,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.05634,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.22,52.13,-9,-9,3.333333333333333,1,1,1,1,0,1,1,0,182,-42032.129,0,0,0,0,0,-163.90428 +5535,6760,12078,12079,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.3451996,8.3306341,49,-1,53.101406,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3277073,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,815.5,1621125.6,1430244.8,226843.58,-13521.522,0,0,4784.5986 +5535,6760,12079,12078,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,6.4900432,7.8350077,7.3792119,49,1,-107.42538,0,1,1,2021,6,0,40,45,1,0,0,2.193526,2.193526,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4198999,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,815.5,1621125.6,1430244.8,226843.58,-13521.522,0,0,4784.5986 +5536,6761,12080,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.3206997,8.2423534,0,0,0,-964.07935,-9,3,3,2021,8,0,45,0,1,0,0,8.1576166,8.1576166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,6.666666666666667,2,3,0,0,10,8,4,0,190,201034.2,57870.738,36065.039,36415.965,0,0,1342.8462 +5537,6762,12081,12082,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,52,6,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,2.4494045,10.377564,17.104921,0,1,1,0,0,0,54,46,47,36,8,1,1,0,0,0,13,1,1,1938.5,331193.75,0,219206.69,0,0,0,2066.4519 +5537,6762,12082,12081,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,-6,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.9800191,0,7,1,1,0,0,0,47,36,54,46,6.666666666666667,1,1,0,0,0,13,1,1,1938.5,331193.75,0,219206.69,0,0,0,2066.4519 +5538,6763,12083,12086,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,10,-5,-77.931458,0,2,3,2021,10,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.2,57.49,6.666666666666667,1,1,0,0,11,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12084,-9,12083,12086,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.15253,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12085,-9,12083,12086,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.02502,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12086,12083,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,7.0836687,7.1308708,0,10,5,1.9694098,0,-9,-9,2021,12,0,55,55,1,0,0,1.6933718,1.6933718,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.37,54.8,6.666666666666667,1,1,0,1,11,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5539,6764,12087,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.3576398,7.5135665,0,0,0,-933.00574,0,1,2,2021,13,5,7,24,1,5,0,30.053335,30.053335,0,0,0,0,0,0,0,0,1,1,0,0,0,30.47,66.97,-9,-9,8.333333333333334,1,1,0,0,3,12,3,0,118,-10669.063,0,0,0,0,0,1250.3221 +5540,6765,12088,12089,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,7.1991649,7.1482449,0,19,9,14.841917,0,2,2,2021,12,2,15,16,1,2,0,9.2002258,9.2002258,.05,.05,0,0,0,0,0,111,1,1,0,0,0,58.29,34.19,33.39,54.83,8.333333333333334,1,1,0,0,7,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5540,6765,12089,12088,-9,-9,1,0,42,0,1,0,1,1,-9,1,3,8.7613888,8.6086607,0,19,0,34.701363,0,2,2,2021,15,4,55,55,1,4,0,16.077173,16.077173,.05,.05,0,0,0,0,0,2,1,1,0,0,0,33.39,54.83,58.29,34.19,5,1,1,0,0,7,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5540,6765,12090,-9,12089,12088,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.90503,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5541,6766,12091,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9364262,7.2916932,0,0,-961.31354,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3355994,5.148334,49,48,-9,-9,7,3,4,0,0,8,8,2,0,925,124501.7,53110.996,0,0,0,4104.6709,2350.6804 +5542,6767,12092,12093,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6810217,8.6290064,0,31,1,36.593399,0,-9,-9,2021,12,0,35,35,1,0,0,18.182173,18.182173,0,0,0,0,0,0,0,2,0,0,0,0,0,56.95,46.69,53,54,6.666666666666667,1,1,0,0,8,6,5,1,175.5,431685.13,448141.56,134097.03,34731.453,8362.0371,0,2304.1443 +5542,6767,12093,12092,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.3444881,7.7752924,0,31,-1,-55.082367,0,2,2,2021,9,0,30,30,1,1,0,8.9188232,8.9188232,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,56.95,46.69,8,1,1,0,0,1,6,5,1,175.5,431685.13,448141.56,134097.03,34731.453,8362.0371,0,2304.1443 +5543,6768,12094,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1151.585,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.161351,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,2117,-194600.55,0,0,0,0,0,2205.384 +5544,6769,12095,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.9125638,5.3929,0,0,-1119.1986,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5372329,5.3613501,63.51,35.73,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,710,1214757.9,112917.22,948208.44,0,0,0,1982.4863 +5545,6770,12096,12097,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,32,7,0,0,-9,-9,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,41.313377,43.032288,385.73608,0,1,1,0,0,0,30.77,22.6,15.05,29.93,5,1,1,0,0,0,2,1,0,806,65734.828,0,0,0,13100.5,0,2007.6287 +5545,6770,12097,12096,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,15.05,29.93,30.77,22.6,5,1,1,0,0,0,2,1,0,806,65734.828,0,0,0,13100.5,0,2007.6287 +5546,6771,12098,12099,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,-2,16.758518,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1140,168010.73,60969.672,200052.78,0,0,0,2056.9829 +5546,6771,12099,12098,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6282239,7.4068508,6,2,119.94057,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7359781,7.791225,57.16,56.15,51.08,49.24,8.333333333333334,1,1,0,0,0,12,3,1,1140,168010.73,60969.672,200052.78,0,0,0,2056.9829 +5547,6772,12100,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.0878515,7.2824659,0,0,0,-915.93542,0,2,2,2021,9,1,12,15,1,1,0,9.9500809,9.9500809,.05,.05,0,0,0,0,0,0,1,1,0,2.1692667,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,13,11,3,0,868,348315.25,54088.922,279040.28,0,0,0,2045.9806 +5548,6773,12101,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1071.5974,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.01,36.82,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,391,-31612.504,0,0,0,0,0,1275.606 +5549,6774,12102,12103,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,5.9118762,5.8199668,0,15,-2,17.680101,0,3,3,2021,6,0,50,55,1,0,0,1.0028815,1.0028815,.05,.05,.05,0,0,0,0,7,0,0,0,4.4097476,0,57.06,57.76,61.44,22.08,0,1,1,0,0,12,9,3,1,1583.5,941530.44,362941.88,475844.56,0,0,0,728.20154 +5549,6774,12103,12102,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.464241,6.960887,0,15,2,94.123238,0,2,2,2021,20,8,26,26,1,8,0,7.2223516,7.2223516,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,61.44,22.08,57.06,57.76,8.333333333333334,1,1,0,0,11,9,3,1,1583.5,941530.44,362941.88,475844.56,0,0,0,728.20154 +5550,6775,12104,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.8845167,8.7976217,0,0,0,-903.04712,0,2,2,2021,22,10,42,47,1,10,0,19.552097,19.552097,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.99,59.25,-9,-9,5,1,1,0,1,11,6,5,0,1320,-75756.734,27267.553,0,0,0,5588.2168,2017.2947 +5551,6776,12105,12107,-9,-9,1,0,41,0,1,0,3,3,-9,0,2,7.2572465,7.4381933,0,8,-17,-146.18768,0,2,2,2021,13,3,19,14,1,3,0,9.9814901,9.9814901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.65,43.16,54.37,54.8,5,1,1,0,0,9,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5551,6776,12106,-9,12105,12107,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.15295,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5551,6776,12107,12105,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.767683,8.8979111,0,8,17,19.364836,0,3,2,2021,8,0,48,60,1,0,0,11.439342,11.439342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,36.65,43.16,8.333333333333334,1,1,0,0,9,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5552,6777,12108,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1116.1796,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,6.666666666666667,4,2,0,1,0,5,1,0,538,-131828.48,0,0,0,0,0,595.45099 +5553,6778,12109,12110,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,9.238224,8.8917809,7,-2,-108.04815,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9860005,8.8395252,50.67,34.62,46.39,60.99,8.333333333333334,1,1,0,0,0,12,5,1,956,3904818,2646973.8,618327.38,0,0,0,6400.0298 +5553,6778,12110,12109,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.397016,7.5067043,7,2,85.138863,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8567743,7.3218198,46.39,60.99,50.67,34.62,8.333333333333334,1,1,0,0,0,12,5,1,956,3904818,2646973.8,618327.38,0,0,0,6400.0298 +5554,6779,12111,12112,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.230216,6.9751859,0,40,-4,-43.323654,0,2,3,2021,6,0,10,10,1,0,0,15.304801,15.304801,0,0,0,0,0,0,0,0,0,0,0,0,0,61.29,43.34,56.94,33.46,8.333333333333334,1,1,0,0,9,13,5,1,789.5,340092.44,213721.06,141136.23,55912.895,5838.7275,0,2399.2747 +5554,6779,12112,12111,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.5704155,8.4958181,0,40,4,12.795817,0,3,3,2021,12,3,60,60,1,3,0,12.193882,12.193882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,33.46,61.29,43.34,6.666666666666667,1,1,0,0,9,13,5,1,789.5,340092.44,213721.06,141136.23,55912.895,5838.7275,0,2399.2747 +5555,6780,12113,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,7.5076914,7.2174773,0,0,-949.12238,0,2,-9,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,2.3247888,0,20.375286,0,1,1,0,6.7810035,7.0179219,60.91,20.77,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,374,376344.13,202167.09,186368.22,0,0,0,2924.4031 +5556,6781,12114,12115,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.291914,8.1569557,11,-6,-94.354271,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1735983,60.12,54.8,57.16,56.15,10,1,1,0,0,6,12,4,1,479,1686867.4,704731.13,228170.44,0,0,0,4423.0552 +5556,6781,12115,12114,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.9311543,8.238369,11,6,3.0193269,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0502443,8.0002661,57.16,56.15,60.12,54.8,10,1,1,0,0,6,12,4,1,479,1686867.4,704731.13,228170.44,0,0,0,4423.0552 +5557,6782,12116,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5245094,7.4135766,6.4257417,0,0,-992.66724,-9,2,2,2021,12,2,25,0,1,2,0,6.6155829,6.6155829,0,0,0,0,0,0,0,0,1,1,0,6.2934632,0,20.76,64.84999999999999,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,810,108774.75,0,0,0,0,0,1674.7067 +5558,6783,12117,12120,-9,-9,1,0,48,0,2,0,1,1,-9,0,2,9.0236263,9.1370344,0,21,-3,-81.774719,0,3,3,2021,12,0,8,38,1,0,0,95.303352,95.303352,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,44.06,34.48,61.03,3.333333333333333,2,3,0,0,11,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12118,-9,12117,12120,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.8207,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12119,-9,12117,12120,1,0,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1122.9539,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,2,3,0,0,0,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12120,12117,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.7432117,9.0282631,0,21,3,90.584961,0,3,2,2021,12,0,40,38,1,0,0,22.414066,22.414066,.05,.05,0,0,0,0,0,0,1,1,0,8.1468544,0,34.48,61.03,49.28,44.06,8.333333333333334,2,3,0,0,10,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6784,12121,-9,12117,12120,1,1,19,0,2,0,2,2,-9,0,5,0,0,0,0,0,-950.63495,1,1,1,2021,6,0,0,18,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,47.6,-9,-9,8.333333333333334,2,3,0,0,2,9,2,1,214,-8502.1328,0,0,0,0,0,0 +5559,6785,12122,12124,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,0,0,14,1,-21.445843,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7964344,0,58.15,52.91,51.14,60.45,8.333333333333334,1,1,0,0,7,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5559,6785,12123,-9,12122,12124,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79211,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5559,6785,12124,12122,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,9.1803255,8.916399,0,15,-1,80.569084,0,3,2,2021,8,0,43,46,1,0,0,28.214624,28.214624,.05,.05,0,0,0,0,0,0,0,0,0,4.6867266,0,51.14,60.45,58.15,52.91,8.333333333333334,1,1,0,0,8,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5560,6786,12125,12126,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.7695732,7.6941605,0,17,-12,-19.346909,0,3,3,2021,12,0,38,38,1,0,0,6.2092538,6.2092538,0,0,0,0,0,0,0,2,0,0,0,0,0,35.97,46.72,57.16,56.15,6.666666666666667,1,1,0,0,8,7,5,1,595.5,1786710.8,1005620.9,346331.75,0,0,0,2694.2742 +5560,6786,12126,12125,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.5169373,8.2398367,0,17,12,-10.082105,0,-9,2,2021,8,0,48,48,1,0,0,13.390616,13.390616,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,35.97,46.72,10,1,1,0,0,8,7,5,1,595.5,1786710.8,1005620.9,346331.75,0,0,0,2694.2742 +5561,6787,12127,-9,12129,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.11975,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6787,12128,-9,12129,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7375,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6787,12129,-9,-9,-9,1,0,50,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1094.7249,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,52,15.44,-9,-9,5,1,1,0,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6788,12130,-9,12129,-9,1,1,28,0,2,0,2,2,-9,0,3,8.5608721,8.4821119,0,0,0,-822.65759,0,2,3,2021,8,1,45,38,1,1,1,12.974921,12.974921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,725,25205.693,-12626.384,0,0,0,0,2440.1204 +5562,6789,12131,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,4,0,5.9941835,6.137013,0,0,-949.28723,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9865518,59.15,49.67,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,269,404987.5,-10591.953,293386.09,0,0,4209.2129,241.2169 +5563,6790,12132,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9337201,6.6192183,0,0,-1011.8121,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8429265,6.7747831,55.19,54.26,-9,-9,10,1,1,0,0,6,7,2,1,1839,476849.69,324358.84,250825.27,0,0,0,3021.1499 +5564,6791,12133,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-863.23956,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.089323655,0,1,1,0,0,0,37.56,35.77,-9,-9,6.666666666666667,1,1,0,1,8,6,1,0,865,34236.379,0,32446.795,0,0,0,2303.5068 +5565,6792,12134,-9,-9,-9,1,0,44,0,0,0,1,1,1,0,5,0,0,0,0,0,-988.41382,-9,2,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.67,59.26,-9,-9,10,3,4,1,1,0,2,1,0,1178,78321.844,23760.721,0,0,0,0,1414.3597 +5565,6793,12135,-9,12134,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-971.58429,-9,1,-9,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.87,54.35,-9,-9,3.333333333333333,3,4,0,0,0,2,2,0,784,0,0,0,0,0,0,0 +5566,6794,12136,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.3359146,4.9138865,0,0,-1042.9679,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.052052,53.8,35.16,-9,-9,3.333333333333333,1,1,0,0,7,2,2,0,844,202530.52,0,101620.68,0,0,0,1830.027 +5567,6795,12137,12138,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,8.0412445,8.3344545,7.2276473,45,-3,-22.113623,0,2,2,2021,7,0,15,18,1,0,0,22.175478,22.175478,0,0,0,0,0,0,0,0,1,1,0,4.864593,6.7995906,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,2646,171046.72,105115.74,437440.13,259284.13,0,29606.381,4927.0757 +5567,6795,12138,12137,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.735455,7.7944441,45,3,53.117935,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1435962,8.1217413,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,2646,171046.72,105115.74,437440.13,259284.13,0,29606.381,4927.0757 +5568,6796,12139,-9,12142,12141,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.1058,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12140,-9,12142,12141,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1120.6925,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12141,12142,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.7921009,8.4919481,0,9,6,60.005119,0,2,2,2021,7,0,38,37,1,0,0,24.100903,24.100903,.05,.05,0,0,0,0,0,0,1,1,0,7.6193838,0,54.2,57.49,56.47,59.4,6.666666666666667,1,1,0,0,11,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12142,12141,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.8548021,7.923439,0,9,-6,37.22049,0,2,2,2021,8,0,30,32,1,0,0,10.72689,10.72689,.05,.05,0,0,0,0,0,0,1,1,0,4.6627712,0,56.47,59.4,54.2,57.49,8.333333333333334,1,1,0,0,11,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5569,6797,12143,12144,-9,-9,1,1,25,0,0,0,1,1,1,0,5,8.2564631,8.2571554,0,2,2,-91.487381,-9,2,2,2021,10,1,38,0,1,1,0,9.9432707,9.9432707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.88,60.96,28.23,61.73,8.333333333333334,1,1,0,0,4,11,4,0,583.5,-44827.266,-32462.348,0,0,0,0,2762.9761 +5569,6797,12144,12143,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.9977269,8.2475033,0,2,-2,-11.805987,0,-9,-9,2021,28,10,41,40,1,10,0,10.488004,10.488004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.23,61.73,46.88,60.96,5,1,1,0,0,2,11,4,0,583.5,-44827.266,-32462.348,0,0,0,0,2762.9761 +5570,6798,12145,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.3489695,8.1953964,7.3195553,0,0,-1115.5588,0,3,3,2021,10,0,30,33,1,0,0,5.6707807,5.6707807,.05,.05,0,0,0,0,0,0,1,1,0,6.2215605,6.9158697,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,5,10,4,1,350,436846.5,167078.11,199231.13,0,0,0,1253.7478 +5571,6799,12146,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4094114,6.5486813,0,0,-1018.5374,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,.81910288,0,0,1,1,0,5.6455431,6.4778557,42.67,41.29,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,1354,466908.88,99955.781,0,0,0,0,707.94507 +5572,6800,12147,12148,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.1283493,6.846632,45,4,1.0955594,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.620512,58.16,48.06,50,47,8.333333333333334,1,1,0,0,0,7,2,0,200,145518.69,93337.609,0,0,0,0,1430.7646 +5572,6800,12148,12147,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,54.817547,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.16,48.06,7,1,1,0,0,0,7,2,0,200,145518.69,93337.609,0,0,0,0,1430.7646 +5572,6801,12149,-9,12148,12147,1,0,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-946.68695,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,7,1,0,286,-76995.883,0,0,0,0,0,498.31799 +5573,6802,12150,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.5067086,7.6341691,0,0,-984.85938,0,2,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7143059,58.72,51.29,-9,-9,6.666666666666667,3,4,0,0,8,8,3,1,631,1252264.3,558012.31,554838.88,0,0,0,431.9707 +5574,6803,12151,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.3795,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,3,7,1,1,666,15733.563,0,0,0,0,0,738.55829 +5575,6804,12152,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.6111393,5.4204054,0,0,-1035.6471,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7168636,60.3,46.58,-9,-9,10,1,1,0,0,0,4,2,0,1323,251722.7,21791.197,135763.25,0,0,0,628.35822 +5576,6805,12153,12154,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.4307995,8.6364126,50,4,-73.415611,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5358181,8.4715414,57.16,56.15,66.37,38.36,8.333333333333334,1,1,0,0,2,10,4,1,1156.5,2549688.5,574512.5,564802.5,0,0,0,3558.4629 +5576,6805,12154,12153,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.6993971,5.9492035,50,-4,-71.761681,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4339254,5.9553261,66.37,38.36,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,1156.5,2549688.5,574512.5,564802.5,0,0,0,3558.4629 +5577,6806,12155,-9,-9,-9,1,0,40,1,2,0,2,2,-9,0,2,0,6.591217,6.8949924,0,0,-885.17828,0,-9,-9,2021,18,6,0,17,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,6.0356007,0,29.75,41.96,-9,-9,6.666666666666667,1,1,0,0,10,4,2,0,1129.5,148957.33,11710.805,136629.02,42054.688,0,448.97717,1705.2009 +5577,6806,12156,-9,12155,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8231,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,2,0,1129.5,148957.33,11710.805,136629.02,42054.688,0,448.97717,1705.2009 +5578,6807,12157,-9,12159,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-862.49542,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12158,-9,12159,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.81598,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12159,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,8.4795122,8.4618454,0,0,0,-1032.7319,0,2,3,2021,5,0,30,30,1,0,0,22.778309,22.778309,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.06,52.59,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12160,-9,12159,-9,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1020.8282,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5579,6808,12161,12162,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.6414123,6.0139389,44,-1,-151.08466,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,5.6899424,55.79,52.62,59.63,41.44,8.333333333333334,1,1,0,0,6,13,5,1,392,212720.75,235403.38,138739.84,0,0,0,2097.6538 +5579,6808,12162,12161,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.8895044,8.8849754,0,44,1,81.224983,0,3,3,2021,10,0,40,41,1,0,0,17.772604,17.772604,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.63,41.44,55.79,52.62,6.666666666666667,1,1,0,0,10,13,5,1,392,212720.75,235403.38,138739.84,0,0,0,2097.6538 +5580,6809,12163,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.8402858,7.6937127,0,0,-980.80847,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.4678059,8.0537643,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,147,644654.31,306196.47,219669.66,0,0,0,6548.1509 +5581,6810,12164,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3768606,8.2907848,0,0,0,-1007.1897,0,2,2,2021,9,0,42,42,1,0,0,12.786021,12.786021,0,0,0,0,0,0,0,0,1,1,0,1.7288069,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,14,12,5,1,805,619408.13,462801.81,247251.08,89753.273,3249.9185,0,1721.4327 +5581,6811,12165,-9,12164,-9,1,1,21,0,0,0,2,2,1,0,4,8.5228205,8.2707901,0,0,0,-1022.0601,-9,1,-9,2021,12,0,38,0,1,0,1,14.404255,14.404255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,808,33598.488,7242.2549,0,0,4466.7666,0,1823.5769 +5582,6812,12166,12167,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,4.1201653,4.3247075,42,0,58.7579,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7116945,49.86,55.31,58.47,50.22,5,1,1,0,0,0,11,3,1,728.5,1294103.8,725305.13,183298.44,0,0,0,1329.4911 +5582,6812,12167,12166,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0143681,8.1308413,42,0,-174.32085,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0068913,58.47,50.22,49.86,55.31,8.333333333333334,1,1,0,0,0,11,3,1,728.5,1294103.8,725305.13,183298.44,0,0,0,1329.4911 +5582,6813,12168,-9,12166,12167,1,1,35,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1105.368,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4229395,0,51,56,-9,-9,7,1,1,0,0,0,11,1,1,1606,-328814.91,0,0,0,0,0,401.61606 +5583,6814,12169,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.7758865,6.8841195,0,0,0,-980.80621,0,3,-9,2021,15,5,16,16,1,5,0,6.0167432,6.0167432,0,0,0,0,0,0,0,0,1,0,1,0,0,28.09,60.4,-9,-9,8.333333333333334,1,1,0,0,15,2,2,1,546,66960.586,0,0,0,0,0,250.68523 +5583,6815,12170,-9,12169,-9,1,1,18,0,0,1,2,0,0,0,4,0,4.691391,4.0847864,0,0,-887.88263,-9,2,-9,2021,7,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.5454235,0,40.14,51.59,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,441,55400.582,0,0,0,0,0,405.55435 +5584,6816,12171,12172,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.31987,6.8494973,53,2,33.480362,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2577906,63.24,42.39,39.81,36.04,10,2,3,0,0,0,5,2,1,2393.5,508027.22,245232.06,109796.16,0,0,0,2119.3923 +5584,6816,12172,12171,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,53,-2,-21.292904,0,3,3,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6438835,0,39.81,36.04,63.24,42.39,10,2,3,0,0,0,5,2,1,2393.5,508027.22,245232.06,109796.16,0,0,0,2119.3923 +5585,6817,12173,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,6.8383784,7.8169084,7.3414588,0,0,-861.44672,0,3,3,2021,11,1,9,0,1,1,0,9.5690136,9.5690136,.05,.05,0,0,0,0,0,0,1,1,0,4.1756244,7.1867757,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,3,6,3,1,1271,276517.72,109871.77,133628.53,79909.203,0,0,1225.6952 +5586,6818,12174,12175,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.6841259,6.5842476,0,4,-7,182.12874,0,3,-9,2021,3,0,15,-9,1,0,0,4.6683517,4.6683517,0,0,0,0,0,0,0,0,1,1,0,1.5263458,0,59.04,45.74,52.47,40.47,1.666666666666667,1,1,0,0,11,13,2,1,593,312441.31,325859.94,155499.13,0,0,0,2437.0791 +5586,6818,12175,12174,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7982092,6.7471852,4,7,-21.639473,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8815985,7.214067,52.47,40.47,59.04,45.74,8.333333333333334,1,1,0,0,0,13,2,1,593,312441.31,325859.94,155499.13,0,0,0,2437.0791 +5587,6819,12176,-9,12178,12177,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.81555,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5587,6819,12177,12178,-9,-9,1,1,29,0,1,0,3,3,-9,1,3,0,0,0,7,2,0,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.67,55.57,26.09,32.89,8.333333333333334,1,1,0,0,2,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5587,6819,12178,12177,-9,-9,1,0,27,0,1,0,2,2,-9,1,1,0,0,0,7,-2,0,0,-9,-9,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.09,32.89,46.67,55.57,0,1,1,0,0,0,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5588,6820,12179,12180,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3811235,7.7101216,51,-1,14.443701,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1509371,0,0,1,1,0,0,7.6425328,48.28,60.18,37.14,51.58,10,1,1,0,0,7,7,3,0,531.5,414895.94,267462.78,168975.02,0,0,0,2210.4814 +5588,6820,12180,12179,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.80474,5.8667855,51,1,80.456627,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8952923,37.14,51.58,48.28,60.18,8.333333333333334,1,1,0,0,7,7,3,0,531.5,414895.94,267462.78,168975.02,0,0,0,2210.4814 +5589,6821,12181,12182,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-16.57852,0,2,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44,38,48.01,49.91,0,1,1,0,1,0,12,2,1,579,533008.38,384718.06,72354.773,0,986.72809,0,1302.4348 +5589,6821,12182,12181,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.4243217,6.2102137,9,1,49.661972,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6771402,48.01,49.91,44,38,5,1,1,0,0,0,12,2,1,579,533008.38,384718.06,72354.773,0,986.72809,0,1302.4348 +5590,6822,12183,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.7100844,7.6330295,0,0,-949.48181,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2323656,7.5165277,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,301,324496.81,-49086.988,250462.34,0,0,0,2131.0642 +5591,6823,12184,12186,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8482351,7.7808986,0,7,0,99.576118,0,3,2,2021,3,0,35,42,1,0,0,8.9567728,8.9567728,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.32,59.62,57.16,56.15,10,1,1,0,0,8,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12185,-9,12184,12186,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-834.3374,-9,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12186,12184,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.651988,8.7950125,0,7,0,-55.118465,0,3,2,2021,9,0,50,42,1,0,0,13.182854,13.182854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.32,59.62,8.333333333333334,1,1,0,0,8,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12187,-9,12184,12186,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7452,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6824,12188,-9,12184,12186,1,0,18,0,1,0,2,2,-9,0,4,6.7136469,6.6864462,0,0,0,-1007.2146,0,2,1,2021,10,0,30,0,1,0,1,3.4241762,3.4241762,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,671,0,0,0,0,0,0,1028.0327 +5592,6825,12189,12190,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.5439854,6.6310291,0,35,2,-37.742668,0,2,1,2021,8,0,68,60,1,0,0,.88802034,.88802034,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.77,55.87,6.666666666666667,1,1,0,0,10,4,2,1,329,133192.41,-9816.5996,156594.25,10776.413,1393.1844,709.91772,572.37811 +5592,6825,12190,12189,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.4506044,6.5831461,0,35,-2,-74.78183,0,-9,-9,2021,9,0,70,60,1,0,0,.8895635,.8895635,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,54.79,55.86,8.333333333333334,1,1,0,0,13,4,2,1,329,133192.41,-9816.5996,156594.25,10776.413,1393.1844,709.91772,572.37811 +5593,6826,12191,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.6633897,7.3874674,0,0,-900.95752,0,2,2,2021,28,12,0,37,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6239451,7.6162181,22.91,39.29,-9,-9,1.666666666666667,1,1,0,0,8,6,3,1,1702,248080.91,303584.5,8335.7021,0,0,0,1284.7028 +5594,6827,12192,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.3122587,6.5714955,0,0,-846.35339,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1846704,44.96,50.74,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1584,303260.91,139651.78,206511.42,0,0,0,761.20978 +5595,6828,12193,-9,12194,-9,1,0,29,0,0,0,1,1,-9,0,3,8.9811268,8.6980429,0,0,0,-980.26306,0,2,2,2021,11,2,48,42,1,2,1,13.77305,13.77305,.05,.05,0,0,0,0,0,0,1,0,1,2.6778347,0,47.08,45.94,-9,-9,8.333333333333334,3,4,0,0,5,8,5,0,346,144525.89,106173.77,0,0,0,0,2445.864 +5595,6829,12194,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0235081,7.7648807,0,0,0,-927.03064,0,-9,-9,2021,10,2,37,37,1,2,0,10.043382,10.043382,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,14,8,4,0,933,937462.75,216455.34,763789.88,0,0,0,1137.2668 +5595,6830,12195,-9,12194,-9,1,0,26,0,0,0,1,1,-9,0,3,8.4109974,8.4141369,0,0,0,-948.46503,-9,1,-9,2021,4,0,30,0,1,0,1,11.871186,11.871186,0,0,0,0,0,0,0,0,1,0,1,0,0,55.22,46.37,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,410,-63472.035,0,0,0,0,0,918.51501 +5596,6831,12196,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5456872,7.4324365,0,0,0,-1051.4781,-9,2,2,2021,18,6,45,0,1,6,0,4.4020147,4.4020147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,5,1,1,0,0,8,6,3,0,336,170432.48,88995.195,0,0,167.71378,307.88028,176.22942 +5597,6832,12197,12198,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.8044066,7.9109354,0,10,-3,-60.157505,0,1,1,2021,12,0,72,35,1,0,0,3.9201124,3.9201124,0,0,0,0,0,0,0,0,0,0,0,0,0,38.95,46.86,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,0,691.5,98212.891,152258.06,215941.59,182888.91,-786.72668,6291.7007,2910.6343 +5597,6832,12198,12197,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.6697931,8.6589661,0,10,3,85.9757,0,-9,-9,2021,11,0,45,43,1,0,0,11.283145,11.283145,.05,.05,0,0,0,0,0,0,0,0,0,4.5944843,0,51.24,58.84,38.95,46.86,8.333333333333334,1,1,0,0,11,6,5,0,691.5,98212.891,152258.06,215941.59,182888.91,-786.72668,6291.7007,2910.6343 +5598,6833,12199,12200,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.7634444,6.6160569,0,27,5,20.011011,0,3,3,2021,10,1,15,15,1,1,0,5.7900128,5.7900128,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,54.2,57.49,10,1,1,0,0,12,10,5,1,1776.5,1145862,1082853,248045.63,86322.625,0,0,3918.4146 +5598,6833,12200,12199,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0327406,9.3281679,0,27,-5,78.69194,0,3,3,2021,7,0,46,78,1,0,0,20.164289,20.164289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,54.51,10,1,1,0,0,12,10,5,1,1776.5,1145862,1082853,248045.63,86322.625,0,0,3918.4146 +5599,6834,12201,12202,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,6.7539024,6.6822705,0,9,-5,97.453133,0,3,3,2021,20,9,70,70,1,9,0,1.2775624,1.2775624,0,0,0,1,0,0,0,27,1,1,0,7.7576046,0,53.87,40.03,41.52,20.45,6.666666666666667,1,1,0,0,11,10,2,1,1573,835725.38,340322.91,222328.34,0,0,0,3438.7686 +5599,6834,12202,12201,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9033537,6.0775719,9,5,114.78324,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,12.436732,0,0,1,1,0,5.5628147,5.8565521,41.52,20.45,53.87,40.03,5,1,1,0,0,4,10,2,1,1573,835725.38,340322.91,222328.34,0,0,0,3438.7686 +5600,6835,12203,-9,12204,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-969.91724,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,6,-9,0,0,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5600,6835,12204,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-979.41547,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.88,60.39,-9,-9,1.666666666666667,4,2,0,0,11,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5600,6835,12205,-9,12204,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-899.84399,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,6,-9,0,0,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5601,6836,12206,-9,12208,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.64581,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5601,6836,12207,-9,12208,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.3186,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5601,6836,12208,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,0,0,-1006.472,0,2,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5602,6837,12209,12210,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,47,-3,-68.654678,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2539186,0,50.18,47.09,51.28,50.73,8.333333333333334,1,1,0,0,4,7,4,1,712,263766.69,234596.78,0,0,0,0,3780.3164 +5602,6837,12210,12209,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.6557961,8.6739979,49,3,-45.276279,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.2389288,8.5991125,51.28,50.73,50.18,47.09,8.333333333333334,1,1,0,0,8,7,4,1,712,263766.69,234596.78,0,0,0,0,3780.3164 +5603,6838,12211,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-930.37299,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,0,13,1,0,1494,174374.75,0,0,0,0,0,1137.73 +5603,6839,12212,-9,12211,-9,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1130.2214,0,3,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,29.65,28.9,-9,-9,1.666666666666667,1,1,0,0,6,13,1,0,110,0,0,0,0,0,0,967.04938 +5603,6840,12213,-9,12211,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.17816,0,3,-9,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,17.53,41.05,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,269,86880.977,0,0,0,-871.93951,0,-72.924843 +5604,6841,12214,12215,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.8710661,8.1058207,0,7,-3,-1.4901358,0,2,3,2021,17,5,38,35,1,5,0,6.4845557,6.4845557,0,0,0,0,0,0,0,0,0,0,0,0,0,39.86,38.75,45.17,39.64,1.666666666666667,1,1,0,0,8,9,4,1,997.5,1383119.3,1333993.8,334357.69,115018.44,351.79276,1900.4268,2916.479 +5604,6841,12215,12214,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.264142,8.3785419,0,7,3,-9.2830524,0,3,3,2021,13,1,42,47,1,1,0,8.2463217,8.2463217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.17,39.64,39.86,38.75,5,1,1,0,0,8,9,4,1,997.5,1383119.3,1333993.8,334357.69,115018.44,351.79276,1900.4268,2916.479 +5604,6842,12216,-9,12214,12215,1,0,22,0,0,0,2,2,-9,0,4,7.7236867,8.8168211,7.8067117,0,0,-1017.1736,0,3,2,2021,10,1,38,18,1,1,1,5.9198246,5.9198246,.05,.05,0,0,0,0,0,0,0,0,0,7.8145938,0,40.13,59.62,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,915,41019.566,70929.781,0,0,0,0,2984.6396 +5605,6843,12217,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,7.735888,7.736239,0,0,0,-1058.8865,0,3,3,2021,27,10,36,49,1,10,0,6.3155093,6.3155093,.05,.05,0,0,0,0,0,0,0,0,0,0,0,8.550000000000001,50.47,-9,-9,1.666666666666667,1,1,0,1,13,5,3,1,2490,58312.059,-80601.875,0,0,0,8062.5078,1779.4205 +5606,6844,12218,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6662626,8.7272291,0,0,0,-959.5238,0,2,2,2021,10,0,41,41,1,0,0,13.332977,13.332977,.05,.05,0,0,0,0,0,0,0,0,0,3.7347128,0,52.99,51.28,-9,-9,5,1,1,0,0,9,6,5,1,688,-21920.293,84122.563,141197.03,78182.813,0,0,1491.3188 +5607,6845,12219,12221,-9,-9,1,1,54,0,3,0,1,1,-9,0,3,9.6616812,9.8075304,0,13,-1,-40.842861,0,-9,-9,2021,9,1,48,48,1,1,0,34.902134,34.902134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.79,55.86,6.666666666666667,1,1,0,0,15,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12220,-9,12221,12219,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-862.24133,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12221,12219,-9,-9,1,0,55,0,3,0,1,1,-9,0,4,9.482934,9.8043385,0,32,1,102.89298,0,-9,-9,2021,6,0,50,45,1,0,0,37.305229,37.305229,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.79,55.86,54.96,53.17,6.666666666666667,3,4,0,0,15,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12222,-9,12221,12219,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1157.048,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5608,6846,12223,-9,12224,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.2434,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5608,6846,12224,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,5,6.9035859,7.0025067,0,0,0,-1161.5829,0,2,2,2021,7,0,16,16,1,0,0,6.2141995,6.2141995,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,1,10,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5608,6846,12225,-9,12224,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.6402,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5609,6847,12226,12227,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,5.9393325,5.9083958,7,-3,-15.748941,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7423115,55.33,50.05,44.67,32.3,10,1,1,0,0,0,4,2,1,1449.5,982999.63,291053.5,300638.91,0,0,0,1858.8116 +5609,6847,12227,12226,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.3858571,7.1433668,48,3,-16.416422,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2432699,44.67,32.3,55.33,50.05,8.333333333333334,1,1,0,0,0,4,2,1,1449.5,982999.63,291053.5,300638.91,0,0,0,1858.8116 +5610,6848,12228,12230,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.6048374,8.7237043,0,23,-10,68.426575,0,2,2,2021,13,1,23,23,1,1,0,15.128652,15.128652,.05,.05,0,0,0,0,0,0,1,1,0,3.1346519,0,54.2,57.49,51.41,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6848,12229,-9,12228,12230,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1059.5911,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6848,12230,12228,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,9.5964928,9.3771601,0,23,10,9.4819574,0,2,1,2021,11,0,45,43,1,0,0,33.636433,33.636433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,54.2,57.49,6.666666666666667,1,1,0,0,10,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6849,12231,-9,12228,12230,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1092.2898,-9,2,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,2,7,1,1,792,-79411.867,0,0,0,0,0,0 +5610,6850,12232,-9,12228,12230,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1096.8068,1,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,106,190989.59,0,0,0,0,0,4235.7266 +5611,6851,12233,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2729721,7.974153,0,0,0,-908.28735,0,2,2,2021,25,12,37,42,1,12,0,7.7773724,7.7773724,.05,.05,0,0,0,0,0,0,0,0,0,1.9396414,0,25.44,65.40000000000001,-9,-9,3.333333333333333,1,1,0,0,9,7,4,0,289,699521.25,211712.16,219785.48,0,0,0,1816.104 +5612,6852,12234,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.2355309,8.2736931,0,0,-1120.3453,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1361456,8.2346039,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,801,2920659.3,2887478,0,0,0,0,2595.0815 +5613,6853,12235,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5898066,8.4049978,0,0,0,-1069.7889,0,3,3,2021,9,0,38,49,1,0,0,17.557026,17.557026,.05,.05,0,0,0,0,0,7,0,0,0,0,0,58.33,44.69,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,5261,233926.58,-5057.8647,-31997.648,19773.061,0,2978.511,1702.4011 +5614,6854,12236,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.986927,6.6982784,0,0,-1076.3033,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2740884,67.12,15.13,-9,-9,10,1,1,0,0,0,12,3,1,589,434949.41,160011.47,51825.895,0,5052.2773,0,1836.2183 +5615,6855,12237,12238,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.4967108,9.0672283,0,12,2,69.271996,0,-9,-9,2021,12,0,30,30,1,0,0,22.152275,22.152275,.05,.05,0,0,0,0,0,14.5,0,0,0,8.3545628,0,63.41,39.7,62.27,42.94,8.333333333333334,1,1,0,0,11,4,4,1,1250.5,1500142.5,864848.25,225027,0,0,0,7960.4326 +5615,6855,12238,12237,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.82832,7.2550745,12,-2,-6.0180097,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.4418049,6.6283841,62.27,42.94,63.41,39.7,8.333333333333334,1,1,0,0,0,4,4,1,1250.5,1500142.5,864848.25,225027,0,0,0,7960.4326 +5616,6856,12239,12240,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.0110593,7.0372362,0,2,-4,85.372169,0,-9,-9,2021,6,0,16,15,1,0,0,6.2503958,6.2503958,0,0,0,0,0,0,0,0,1,1,0,3.1296399,0,56.35,51,48.81,59.91,10,1,1,0,0,7,7,3,1,258.5,-28360.82,0,0,0,0,0,1540.5968 +5616,6856,12240,12239,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,6.8404083,6.9479628,0,2,4,110.94308,0,1,1,2021,11,0,37,38,1,0,0,2.5693462,2.5693462,0,0,0,0,0,0,0,0,1,1,0,1.9826697,0,48.81,59.91,56.35,51,6.666666666666667,1,1,0,0,5,7,3,1,258.5,-28360.82,0,0,0,0,0,1540.5968 +5617,6857,12241,12242,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8374825,6.1788898,46,2,-9.9161139,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7896228,53.91,39.8,58.32,50.22,8.333333333333334,1,1,0,0,0,2,5,1,929,1050427.5,0,855115.5,0,0,0,3579.1221 +5617,6857,12242,12241,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7850399,8.9250479,0,14,-2,-156.77715,0,3,2,2021,7,0,56,65,1,0,0,14.644501,14.644501,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.91,39.8,10,1,1,0,0,8,2,5,1,929,1050427.5,0,855115.5,0,0,0,3579.1221 +5618,6858,12243,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-890.07739,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,25.43,29.19,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,816,-55947.551,0,0,0,0,0,625.23456 +5619,6859,12244,-9,12246,12245,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.8956,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5619,6859,12245,12246,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.9321318,8.7733593,0,9,5,42.672352,0,-9,-9,2021,17,5,40,40,1,5,0,18.673077,18.673077,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.07,55.18,42.61,54.85,6.666666666666667,1,1,0,0,13,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5619,6859,12246,12245,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.335391,8.4706459,0,9,-5,-110.83664,0,-9,-9,2021,10,0,40,40,1,0,0,16.400164,16.400164,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,33.07,55.18,6.666666666666667,1,1,0,0,11,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5620,6860,12247,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4550152,8.2847548,6.6644311,0,0,-973.62897,0,3,3,2021,12,0,37,37,1,0,0,11.95936,11.95936,0,0,0,0,0,0,0,0,1,1,0,0,6.6340475,48.4,29.56,-9,-9,5,1,1,0,1,8,4,5,1,830,547423.81,46027.262,313464,0,0,0,2316.7815 +5620,6861,12248,-9,12247,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-978.01013,-9,2,-9,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.78968138,0,47.38,49.72,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,783,-148536.77,0,0,0,0,0,54.267357 +5621,6862,12249,12250,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.520503,7.9628949,7,-1,15.049366,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.387351,8.4792719,57.16,56.15,65.38,41.59,10,1,1,0,0,5,9,4,1,91.5,2037835.3,651886.13,858045.5,0,0,0,4350.0166 +5621,6862,12250,12249,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.6204438,7.1425915,7,1,-49.448143,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5976038,7.3066211,65.38,41.59,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,91.5,2037835.3,651886.13,858045.5,0,0,0,4350.0166 +5622,6863,12251,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-916.36719,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.13,36.96,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,243,34223.348,83892.438,0,0,0,-810.62012,1375.9174 +5623,6864,12252,-9,12253,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.89789,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,0,678,-21176,60056.445,0,0,0,995.18695,1746.491 +5623,6864,12253,-9,12254,-9,1,0,30,1,1,0,1,1,-9,0,2,8.1497431,8.5683956,0,0,0,-1031.2872,0,2,2,2021,21,9,37,37,1,9,1,10.719251,10.719251,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.98,53.93,-9,-9,1.666666666666667,1,1,0,0,10,11,4,0,678,-21176,60056.445,0,0,0,995.18695,1746.491 +5623,6865,12254,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,1,0,0,0,0,0,-898.52478,0,3,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,29.93,-9,-9,1.666666666666667,1,1,1,1,0,11,1,0,195,0,0,0,0,0,0,280.02823 +5624,6866,12255,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1110.2395,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.4703007,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,0,640,233695.69,0,0,0,0,0,1350.0018 +5625,6867,12256,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.1481314,6.1370745,0,0,-975.8623,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8367782,5.6190295,42.86,28.06,-9,-9,5,1,1,0,0,10,9,2,1,382,-144895.52,30367.941,0,0,0,0,1441.349 +5626,6868,12257,12258,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,49,2,28.99234,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8951883,0,51.06,35.25,57.16,56.15,5,1,1,0,0,6,6,3,1,369.5,758846.44,413385.44,292462.09,0,0,0,4912.2388 +5626,6868,12258,12257,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.925312,7.9767008,49,-2,67.876839,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8702621,7.9733024,57.16,56.15,51.06,35.25,8.333333333333334,1,1,0,0,0,6,3,1,369.5,758846.44,413385.44,292462.09,0,0,0,4912.2388 +5626,6869,12259,-9,12257,12258,1,1,36,0,0,0,1,1,-9,0,2,8.0214977,8.3414488,0,0,0,-1045.8175,0,2,1,2021,12,3,50,50,1,3,0,8.2913628,8.2913628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,39.8,-9,-9,6.666666666666667,1,1,0,0,4,6,4,1,205,-19115.834,47455.793,0,0,0,0,1444.6283 +5627,6870,12260,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,5.640739,5.4249701,0,0,-1037.0479,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3947945,5.8405952,59.43,58.05,-9,-9,10,3,4,0,0,5,8,2,1,128,874248.44,92795.695,365257.44,0,0,0,58.568935 +5628,6871,12261,12262,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4627581,6.2892356,60,-4,-54.951607,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,2.6188674,0,0,1,1,0,5.6748447,5.9878726,54.08,33.14,48.45,57.49,8.333333333333334,1,1,0,0,0,2,4,1,797,524945.19,299082.78,170321.22,0,0,0,3883.6235 +5628,6871,12262,12261,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,8.6047764,8.2412205,60,4,11.676222,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.360291,0,0,1,1,0,8.2841158,8.8501215,48.45,57.49,54.08,33.14,10,1,1,0,0,0,2,4,1,797,524945.19,299082.78,170321.22,0,0,0,3883.6235 +5629,6872,12263,12264,-9,-9,1,1,41,1,4,0,3,3,-9,1,2,0,0,0,7,4,0,0,3,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.72,49.09,35.93,24.23,1.666666666666667,1,1,0,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12264,12263,-9,-9,1,0,37,1,4,0,2,2,-9,1,2,0,0,0,7,-4,0,0,3,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.93,24.23,11.72,49.09,3.333333333333333,1,1,0,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12265,-9,12264,12263,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.05719,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12266,-9,12264,12263,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-854.04669,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12267,-9,12264,12263,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.21307,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12268,-9,12264,12263,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.744,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5630,6873,12269,12270,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-4,83.726067,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,14.458855,15.481349,121.42747,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,2,1,630,394429.5,300912.44,247519.75,0,0,0,2650.2302 +5630,6873,12270,12269,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.2463102,6.8135409,7,4,10.415133,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6855092,6.8036456,53,46,51,46,8,1,1,0,0,0,9,2,1,630,394429.5,300912.44,247519.75,0,0,0,2650.2302 +5631,6874,12271,12272,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.4482436,7.2308578,6,-6,54.819252,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9015355,7.186646,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,0,8,5,1,390.5,847392.5,0,991434.94,93457.906,0,2070.7354,9285.6563 +5631,6874,12272,12271,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,9.4244947,9.524189,19,6,-110.3862,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.8249931,9.428731,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,0,8,5,1,390.5,847392.5,0,991434.94,93457.906,0,2070.7354,9285.6563 +5631,6875,12273,-9,12271,12272,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-951.96069,0,1,1,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4972954,0,26.82,55.72,-9,-9,0,1,1,0,0,1,8,1,1,1312,-108272.93,0,0,0,0,0,137.36018 +5632,6876,12274,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1025152,8.3492489,0,0,0,-958.34625,0,3,3,2021,6,0,36,36,1,0,0,9.1434078,9.1434078,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,13,13,4,1,373,165599.08,0,0,0,0,0,1482.4871 +5633,6877,12275,12276,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.8964214,9.721981,0,8,3,86.63633,-9,2,2,2021,13,4,53,0,1,4,0,27.293699,27.293699,.05,.05,.05,0,0,0,0,0,0,0,0,2.3995833,0,50.34,56.4,49.41,47.57,5,1,1,0,0,10,11,5,1,516.5,1191057.3,1151495,0,0,0,5331.7026,8771.7051 +5633,6877,12276,12275,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.5159521,8.1760664,0,8,-3,79.154816,0,1,1,2021,11,1,43,50,1,1,0,15.935225,15.935225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,47.57,50.34,56.4,5,1,1,0,0,11,11,5,1,516.5,1191057.3,1151495,0,0,0,5331.7026,8771.7051 +5634,6878,12277,12279,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.5764675,8.8377218,0,9,-1,52.736217,0,-9,-9,2021,12,0,45,50,1,0,0,14.562741,14.562741,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5634,6878,12278,-9,12279,12277,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.3022,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5634,6878,12279,12277,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,7.7419152,7.8909364,0,9,1,-117.013,0,2,2,2021,12,0,6,20,1,0,0,45.76218,45.76218,0,0,0,0,0,0,0,0,1,1,0,4.5548434,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5635,6879,12280,12281,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8303251,8.5316658,0,33,0,-78.429451,0,3,2,2021,7,0,37,37,1,0,0,18.856239,18.856239,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,1,734.5,673130.63,123769.73,420472.19,127619.66,0,0,2744.248 +5635,6879,12281,12280,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.9034781,7.7886405,0,8,0,70.994942,0,3,3,2021,6,0,37,60,1,0,0,7.6354699,7.6354699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,60.12,54.8,0,1,1,0,0,7,7,5,1,734.5,673130.63,123769.73,420472.19,127619.66,0,0,2744.248 +5636,6880,12282,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0630379,8.2147579,0,0,0,-1105.64,-9,2,2,2021,2,0,50,0,1,0,0,5.8949475,5.8949475,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,1976,-72188.414,2800.2522,0,0,0,0,1187.7257 +5637,6881,12283,12285,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2738876,8.1102495,0,17,0,-42.571335,0,3,3,2021,7,0,29,21,1,0,0,12.472527,12.472527,.05,.05,0,0,0,0,0,0,1,1,0,2.4697547,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,14,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5637,6881,12284,-9,12283,12285,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.3454,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5637,6881,12285,12283,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6072645,8.2235956,0,17,0,-74.401825,0,2,2,2021,6,0,52,52,1,0,0,10.704856,10.704856,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,14,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5638,6882,12286,12287,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8098717,8.6517868,0,13,3,-80.575798,0,2,2,2021,8,0,38,40,1,0,0,18.911789,18.911789,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.86,49.95,55.77,31.2,8.333333333333334,1,1,0,0,8,6,5,1,1054,2346560.8,2265191,157167,204547.19,11030.361,11048.475,5492.4395 +5638,6882,12287,12286,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.3376255,9.2258005,0,13,-3,-45.837818,0,2,2,2021,11,0,32,32,1,0,0,36.702091,36.702091,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,31.2,58.86,49.95,8.333333333333334,1,1,0,0,7,6,5,1,1054,2346560.8,2265191,157167,204547.19,11030.361,11048.475,5492.4395 +5638,6883,12288,-9,12287,12286,1,0,22,0,0,0,3,3,-9,0,4,6.9677134,6.9352493,0,0,0,-1070.6554,0,2,2,2021,14,2,16,36,1,2,1,9.8651953,9.8651953,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,62.46,-9,-9,6.666666666666667,1,1,0,0,5,6,3,1,956,-18378.229,0,0,0,0,0,394.30682 +5639,6884,12289,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.1735578,4.064394,0,0,-986.45581,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.5823517,5.642457,23.037548,0,1,1,0,3.5559888,4.0055485,42.1,32.87,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,2233,-162585.17,19691.572,0,0,0,0,442.3255 +5640,6885,12290,12291,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,7.444211,7.9482918,6.6774588,10,0,-2.4960017,0,2,1,2021,22,10,35,40,1,10,0,7.5294442,7.5294442,.05,.05,.05,0,0,0,0,0,1,1,0,6.7260098,6.8935752,37.3,39.98,33.96,38.28,5,1,1,0,1,10,12,3,1,2404.5,221309.28,240829.56,0,0,0,0,1842.8137 +5640,6885,12291,12290,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0722642,4.8972206,10,9,83.750755,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9200158,4.8227396,33.96,38.28,37.3,39.98,6.666666666666667,1,1,0,0,7,12,3,1,2404.5,221309.28,240829.56,0,0,0,0,1842.8137 +5641,6886,12292,12293,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,5.4297013,5.4095297,27,-5,-77.543022,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6321896,5.5319386,46.01,52.88,47.87,46.65,8.333333333333334,1,1,0,0,2,9,2,1,655.5,407981.16,259738.59,232912.09,0,0,0,1693.3809 +5641,6886,12293,12292,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3637509,5.4602904,30,5,4.3733463,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4885159,47.87,46.65,46.01,52.88,5,1,1,0,0,5,9,2,1,655.5,407981.16,259738.59,232912.09,0,0,0,1693.3809 +5642,6887,12294,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.1614265,8.2991886,0,0,0,-1006.673,0,3,2,2021,10,1,40,37,1,1,0,11.893975,11.893975,.05,.05,0,0,0,0,0,2,0,0,0,2.8003597,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,184,902722.31,744863.25,149284.61,0,0,0,1738.6415 +5643,6888,12295,-9,-9,-9,1,0,45,0,2,0,3,3,-9,1,3,6.7591825,6.5574212,0,0,0,-1085.3582,0,3,2,2021,22,8,20,0,1,8,0,6.1093645,6.1093645,0,0,0,0,0,0,0,106,1,1,0,0,0,28.46,43.55,-9,-9,1.666666666666667,2,3,0,1,1,6,2,1,840,28307.996,60189.672,0,0,10095.857,0,1006.7802 +5643,6888,12296,-9,12295,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.15887,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,840,28307.996,60189.672,0,0,10095.857,0,1006.7802 +5643,6889,12297,-9,12295,-9,1,1,22,0,2,0,2,2,-9,0,3,7.8940907,7.8580747,0,0,0,-1106.1165,0,3,-9,2021,10,0,39,44,1,0,1,7.9519176,7.9519176,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52,54.51,-9,-9,5,2,3,0,0,4,6,4,1,108,-25582.277,41581.23,0,0,0,0,1122.3706 +5644,6890,12298,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,5.1857376,5.1493511,0,0,-1012.3123,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,.7240774,0,0,1,1,0,0,5.3438621,49.55,39.88,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,356,173805.55,143287.53,28173.584,0,0,0,733.43842 +5645,6891,12299,12300,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,51,1,44.100521,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5356755,0,60.45,41.05,44.19,56.73,5,1,1,0,0,0,2,3,1,1576,535277,316918.63,145358.09,0,0,0,3121.0645 +5645,6891,12300,12299,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9744782,7.7809124,51,-1,-13.30656,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8997803,7.7857418,44.19,56.73,60.45,41.05,6.666666666666667,1,1,0,0,0,2,3,1,1576,535277,316918.63,145358.09,0,0,0,3121.0645 +5646,6892,12301,-9,12302,-9,1,0,33,0,0,0,1,1,0,0,4,0,0,0,0,0,-1109.6837,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,10,8,1,0,1596,6910.0825,90582.742,0,0,0,0,0 +5646,6893,12302,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1021.2994,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.09,27.08,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,465,-58454.422,0,0,0,0,0,1633.2697 +5646,6894,12303,-9,12302,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-960.8009,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,56.4,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,157,82721.125,0,0,0,0,0,0 +5646,6895,12304,-9,12302,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7253771,8.5327492,0,0,0,-980.86542,0,3,-9,2021,12,0,52,47,1,0,1,11.71967,11.71967,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,584,110069.44,7317.7217,0,0,0,0,2082.4861 +5647,6896,12305,12308,-9,-9,1,1,34,0,3,0,2,2,-9,0,2,8.1352158,7.9977164,0,14,1,-50.546967,0,2,2,2021,8,0,39,39,1,0,0,8.6841021,8.6841021,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.28,42,14.25,61.15,5,1,1,0,0,5,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12306,-9,12308,12305,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-830.22864,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12307,-9,12308,12305,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.7876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12308,12305,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,14,-1,-104.04488,0,2,2,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,14.25,61.15,56.28,42,6.666666666666667,1,1,0,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12309,-9,12308,12305,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-905.79602,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5648,6897,12310,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1090.5607,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9198318,0,62.25,48.33,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,1528,0,0,0,0,0,0,218.81694 +5649,6898,12311,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.9168382,6.7874484,0,0,-1036.4425,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0384102,6.8062162,52.71,47.23,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,1315,133066.22,0,110966.48,0,0,0,2262.094 +5650,6899,12312,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.87607,8.2429581,7.0794082,0,0,-958.73065,0,3,3,2021,22,9,33,33,1,9,0,8.3144426,8.3144426,0,0,0,0,0,0,0,93,0,0,0,1.6162711,6.9066963,25.9,63.7,-9,-9,3.333333333333333,1,1,0,0,14,7,4,1,923,2064646.4,268215.25,1455385.5,0,0,0,1611.6361 +5651,6900,12313,-9,12315,12314,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.5314,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12314,12315,-9,-9,1,1,35,0,2,0,2,2,-9,0,2,8.4770412,8.555809,0,10,-3,-62.981205,0,2,2,2021,16,5,40,40,1,5,0,16.986784,16.986784,.05,.05,0,0,0,0,0,0,1,1,0,7.0360274,0,41.74,37.84,37.82,61.4,6.666666666666667,1,1,0,0,7,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12315,12314,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,6.0147867,6.5509262,5.9077106,10,3,-137.75772,0,2,3,2021,17,7,30,42,1,7,0,1.2764955,1.2764955,.05,.05,0,0,0,0,0,0,1,1,0,5.6253729,0,37.82,61.4,41.74,37.84,6.666666666666667,1,1,0,1,9,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12316,-9,12315,12314,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.52014,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5652,6901,12317,12318,-9,-9,1,0,32,0,0,0,2,2,-9,1,2,0,0,0,7,-20,0,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.2,46.39,44,24.14,3.333333333333333,1,1,1,0,0,4,1,0,1477,109774.69,0,0,0,0,0,2362.3599 +5652,6901,12318,12317,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,0,0,0,7,20,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,24.14,29.2,46.39,5,4,2,0,0,0,4,1,0,1477,109774.69,0,0,0,0,0,2362.3599 +5653,6902,12319,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1145.2996,-9,-9,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,27,-9,-9,4,1,1,0,0,0,9,2,0,1101,159331.58,0,0,0,0,1366.9578,696.56927 +5654,6903,12320,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,6.8354225,6.8953862,0,0,0,-1056.4318,0,3,3,2021,11,0,16,0,1,2,0,8.2876215,8.2876215,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,55,-9,-9,7,2,3,0,1,1,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5654,6903,12321,-9,12320,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-951.26965,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5654,6903,12322,-9,12320,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.80896,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5655,6904,12323,-9,-9,-9,1,1,58,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1044.562,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,1635,-13055.014,0,0,0,0,0,1014.1694 +5656,6905,12324,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.26614,8.1873388,0,0,0,-989.48804,-9,-9,-9,2021,11,0,40,0,1,0,0,11.578369,11.578369,.05,.05,0,0,0,0,0,42,0,0,0,0,0,56.94,41.29,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,393,118151.79,-4512.0464,0,0,0,0,1371.5316 +5657,6906,12325,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2226663,7.3355098,0,0,0,-977.21216,0,3,2,2021,10,0,3,3,1,0,0,51.947296,51.947296,0,0,0,0,0,0,0,2,0,0,0,0,0,43,39,-9,-9,6.666666666666667,1,1,0,0,14,11,3,1,1833,-26527.691,0,0,0,2568.2527,1048.402,791.75348 +5657,6907,12326,-9,12325,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0009985,7.6722002,0,0,0,-871.72552,0,2,3,2021,10,1,38,38,1,1,1,7.7063646,7.7063646,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,1451,161337.91,-83321.383,0,0,0,0,1417.8645 +5658,6908,12327,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1047.5288,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,209,259771.89,274716.91,27172.467,0,0,0,255.09325 +5659,6909,12328,12329,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.5759373,8.5757008,0,5,-1,105.9789,0,-9,-9,2021,14,4,53,50,1,4,0,9.9785204,9.9785204,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,50.73,37.68,53.96,10,1,1,0,0,6,9,5,1,565.5,610225.13,189027.3,254260.16,0,0,3964.8574,4842.7661 +5659,6909,12329,12328,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.9729795,8.9896383,0,5,1,-52.382027,0,-9,-9,2021,16,5,85,45,1,5,0,10.435012,10.435012,.05,.05,0,0,0,0,0,0,0,0,0,.072650947,0,37.68,53.96,53.96,50.73,8.333333333333334,2,3,0,0,8,9,5,1,565.5,610225.13,189027.3,254260.16,0,0,3964.8574,4842.7661 +5660,6910,12330,12331,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.5785441,6.9847126,34,-5,-66.251472,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4987693,7.5201082,47.25,48.42,57.33,53.46,5,1,1,0,0,0,2,4,0,1237.5,1589101,1520073.5,0,0,0,0,4597.2148 +5660,6910,12331,12330,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,8.2643394,8.4075985,3,5,-62.229111,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2454867,8.235918,57.33,53.46,47.25,48.42,8.333333333333334,1,1,0,0,0,2,4,0,1237.5,1589101,1520073.5,0,0,0,0,4597.2148 +5661,6911,12332,12333,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,8,-8,71.391243,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,47.61,50.53,8.333333333333334,1,1,0,0,8,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5661,6911,12333,12332,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,9.0266018,9.6629324,5.8591151,8,8,-24.891697,0,2,2,2021,9,0,43,48,1,0,0,25.156517,25.156517,.05,.05,0,0,0,0,0,0,0,0,0,6.2646065,6.6927795,47.61,50.53,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5661,6911,12334,-9,12332,12333,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.69183,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5662,6912,12335,12336,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.8244257,8.4736938,0,1,0,-2.309762,-9,-9,-9,2021,8,0,42,0,1,0,0,20.917192,20.917192,.05,.05,0,0,0,0,0,0,0,0,0,3.5909088,0,52.48,54.33,54.97,47.63,8.333333333333334,1,1,0,0,8,7,5,1,1806.5,102959.88,124101.82,0,0,1584.2607,1368.5227,4148.8262 +5662,6912,12336,12335,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.5960703,8.3102608,0,1,0,-5.2767429,-9,2,-9,2021,11,0,50,0,1,0,0,10.966075,10.966075,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,47.63,52.48,54.33,8.333333333333334,1,1,0,0,8,7,5,1,1806.5,102959.88,124101.82,0,0,1584.2607,1368.5227,4148.8262 +5663,6913,12337,12338,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,7.8828092,7.482584,0,1,9,118.908,-9,-9,-9,2021,15,3,42,0,1,3,0,6.0445714,6.0445714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.42,49,29.03,64.5,8.333333333333334,1,1,0,0,3,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5663,6913,12338,12337,-9,-9,1,0,20,1,1,0,2,2,-9,0,5,0,0,0,1,0,7.6079855,0,-9,-9,2021,12,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,29.03,64.5,37.42,49,8.333333333333334,1,1,0,0,3,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5663,6913,12339,-9,12338,12337,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.5935,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5664,6914,12340,12342,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.6731453,8.9146452,0,21,2,-66.830917,0,2,2,2021,11,1,26,36,1,1,0,27.267597,27.267597,.05,.05,0,0,0,0,0,0,1,1,0,.7594412,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5664,6914,12341,-9,12342,12340,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.2218,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5664,6914,12342,12340,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.8481331,7.8430562,0,21,-2,-4.9837298,0,2,2,2021,6,0,25,29,1,0,0,11.050562,11.050562,0,0,0,0,0,0,0,0,1,1,0,1.643368,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5665,6915,12343,12344,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.7321892,8.9259005,0,19,-6,-98.968399,0,2,-9,2021,19,5,50,50,1,5,0,16.228092,16.228092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.28,54.75,53.5,51.02,6.666666666666667,1,1,0,0,11,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12344,12343,-9,-9,1,1,47,0,3,0,1,1,-9,0,3,9.2625074,8.9993029,0,19,6,-99.269173,0,1,2,2021,8,0,50,55,1,0,0,18.530785,18.530785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,42.28,54.75,6.666666666666667,1,1,0,0,14,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12345,-9,12343,12344,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1157.463,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12346,-9,12343,12344,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.7061,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5666,6916,12347,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1073.1747,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,41.08,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,518,110881.28,124871.07,0,0,14440.319,0,1868.8176 +5667,6917,12348,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,8.6604786,8.6774664,0,0,0,-885.87946,-9,1,1,2021,8,1,41,0,1,1,0,11.679698,11.679698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.8,45.89,-9,-9,8.333333333333334,4,2,0,0,4,9,5,0,1445,132196.47,5205.4512,95705.766,124098.34,0,0,2347.5906 +5668,6918,12349,12350,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.6224122,7.8952575,0,26,-4,-52.456886,0,-9,-9,2021,11,2,32,30,1,2,0,6.4647217,6.4647217,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,58.29,51,54,8.333333333333334,1,1,0,0,9,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12350,12349,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,8.6058474,8.681757,0,7,4,-86.343369,0,-9,-9,2021,10,0,45,49,1,1,0,11.796181,11.796181,0,0,0,0,0,0,0,0,1,1,0,6.93436,0,51,54,52.77,58.29,8,2,3,0,0,1,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12351,-9,12350,12349,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.47516,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12352,-9,12350,12349,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-866.94513,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.77,60.77,-9,-9,8.333333333333334,4,2,0,0,0,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5669,6919,12353,12355,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.2704563,8.2727137,0,20,2,47.612553,0,2,2,2021,10,0,60,80,1,0,0,8.1451826,8.1451826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,54,8.333333333333334,1,1,0,0,9,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5669,6919,12354,-9,12355,12353,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.58075,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5669,6919,12355,12353,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.9108052,8.2117691,0,7,-2,-22.040125,0,-9,-9,2021,10,0,20,0,1,1,0,16.028059,16.028059,0,0,0,0,0,0,0,0,1,1,0,.56905979,0,50,54,48.87,58.55,8,1,1,0,0,1,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5670,6920,12356,12357,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.0004635,8.9485197,0,10,0,-62.708305,0,3,3,2021,7,0,40,40,1,0,0,18.395939,18.395939,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,37.08,57.26,10,1,1,0,0,11,13,5,1,574,96538.313,90533.039,0,0,13065.295,0,3351.9688 +5670,6920,12357,12356,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7292814,8.0305147,0,10,9,-121.32638,0,2,2,2021,17,5,33,33,1,5,0,8.7266588,8.7266588,0,0,0,0,0,0,0,7,1,1,0,1.4843533,0,37.08,57.26,57.33,53.46,1.666666666666667,3,4,0,0,11,13,5,1,574,96538.313,90533.039,0,0,13065.295,0,3351.9688 +5670,6921,12358,-9,12357,12356,1,0,21,0,0,0,3,3,0,1,4,0,0,0,0,0,-1127.3334,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,581,214955.06,0,0,0,0,0,757.42383 +5670,6922,12359,-9,12357,12356,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1002.7924,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,.78099543,0,41.39,62.48,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,485,70945.82,0,0,0,0,0,523.25049 +5671,6923,12360,12361,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,48,2,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,31.451845,0,2,1,1,0,.87109625,0,49.16,51.67,62.66,52.4,8.333333333333334,1,1,0,0,8,7,1,1,237.5,420955.84,0,145463.13,0,0,0,412.32114 +5671,6923,12361,12360,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,48,-2,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,49.16,51.67,10,1,1,0,0,0,7,1,1,237.5,420955.84,0,145463.13,0,0,0,412.32114 +5671,6924,12362,-9,12360,12361,1,0,28,0,0,0,2,2,-9,0,4,8.2578497,8.2312231,0,0,0,-928.42114,0,3,2,2021,11,0,39,39,1,2,0,12.248801,12.248801,0,0,0,0,0,0,0,0,1,1,0,6.7703156,0,48,57,-9,-9,7,1,1,0,0,1,7,4,1,606,-34877.164,0,0,0,0,0,2530.7551 +5672,6925,12363,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.4035621,6.0957785,0,0,0,-1042.5199,0,-9,-9,2021,22,9,8,8,1,9,0,9.5145741,9.5145741,0,0,0,0,0,0,0,0,1,1,0,0,0,37.9,50.3,-9,-9,3.333333333333333,1,1,0,1,10,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12364,-9,12363,-9,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1099.5536,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12365,-9,12363,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-931.9574,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12366,-9,12363,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-970.91992,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5673,6926,12367,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.6715298,7.4772515,0,0,0,-913.30542,0,3,3,2021,8,0,38,39,1,0,0,5.4224477,5.4224477,.05,.05,0,0,0,0,0,7,0,0,0,0,0,48.77,22.19,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,175,180856.61,-23263.967,0,0,0,0,1368.3804 +5674,6927,12368,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.8358054,7.6826057,0,0,-1099.7667,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3451724,43.66,29.92,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,863,676231.69,284923.53,450798.88,0,0,0,1372.342 +5675,6928,12369,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,7.8920317,7.8725762,0,0,0,-912.69196,0,2,-9,2021,28,11,25,25,1,11,0,14.710555,14.710555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.45,43.61,-9,-9,5,1,1,0,0,14,7,4,0,417,16049.378,-44437.461,0,0,0,0,1407.0471 +5676,6929,12370,-9,12372,12371,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1080.0613,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5676,6929,12371,12372,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.9696999,9.3058214,0,13,1,-59.562,0,1,1,2021,12,0,55,60,1,0,0,22.371613,22.371613,.05,.05,.05,0,0,0,0,0,0,0,0,7.2373743,0,45.43,53.5,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5676,6929,12372,12371,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.3400192,9.2381496,0,13,-1,-64.950485,0,1,1,2021,8,0,48,44,1,0,0,30.6185,30.6185,.05,.05,0,0,0,0,0,0,0,0,0,4.8937197,0,57.16,56.15,45.43,53.5,8.333333333333334,1,1,0,0,10,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5677,6930,12373,-9,12375,12374,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1104.567,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5677,6930,12374,12375,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,0,0,0,12,8,-41.945724,-9,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,44.13,57.97,8.333333333333334,1,1,0,0,14,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5677,6930,12375,12374,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.3728428,7.6903749,0,12,-8,-64.587868,0,-9,-9,2021,10,0,20,20,1,0,0,9.7208252,9.7208252,0,0,0,0,0,0,0,0,1,1,0,1.3901391,0,44.13,57.97,52.82,53.97,6.666666666666667,1,1,0,0,14,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5678,6931,12376,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.651648,5.0494146,0,0,-891.40131,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.147192,0,37.792393,0,1,1,0,0,5.4566903,50.1,38.91,-9,-9,0,1,1,0,0,0,2,2,1,87,29020.232,-10432.845,125003.16,0,0,0,1076.0979 +5679,6932,12377,12378,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,6.2369666,6.2273173,0,7,-7,-2.1795743,0,3,2,2021,12,1,20,20,1,1,0,2.1203954,2.1203954,0,0,0,0,0,0,0,0,1,1,0,1.7058811,0,42.85,60.33,50,49,3.333333333333333,1,1,0,0,3,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6932,12378,12377,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.4778385,8.2857828,0,7,7,-8.869833,0,3,3,2021,10,0,40,40,1,1,0,12.212748,12.212748,0,0,0,0,0,0,0,0,1,1,0,4.5335369,0,50,49,42.85,60.33,7,1,1,0,0,1,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6932,12379,-9,12377,12378,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.51373,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6933,12380,-9,12377,12378,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1104.8286,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,516,5403.6021,0,0,0,0,0,0 +5680,6934,12381,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6403465,7.7627068,0,0,0,-1018.8506,0,3,2,2021,11,0,32,31,1,0,0,7.1676531,7.1676531,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.47,45.9,-9,-9,8.333333333333334,1,1,0,1,6,6,3,0,1676,-129491.59,-8585.1709,0,0,0,0,925.22693 +5680,6935,12382,-9,12381,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1011.9044,1,2,-9,2021,12,0,0,10,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,1,0,398,0,0,0,0,0,0,0 +5681,6936,12383,-9,12386,12385,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-977.49597,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,58.45,-9,-9,6.666666666666667,1,1,0,1,5,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12384,-9,12386,12385,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.44958,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12385,12386,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.5032368,9.6069565,0,4,5,2.5798674,0,-9,-9,2021,12,2,55,45,1,2,0,34.008732,34.008732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.86,51.1,60.02,56.42,6.666666666666667,1,1,0,0,12,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12386,12385,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,7.5437927,7.6401005,0,4,-5,32.350914,0,2,2,2021,6,0,44,42,1,0,0,5.4538965,5.4538965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,53.86,51.1,10,1,1,0,0,10,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5682,6937,12387,-9,12389,12388,1,0,20,0,2,0,2,2,-9,0,3,7.6797538,7.9160805,0,0,0,-1098.6121,0,2,2,2021,15,4,38,35,1,4,1,7.9888024,7.9888024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.62,42.22,-9,-9,8.333333333333334,1,1,0,0,2,12,4,0,1219,212712.97,-78253.445,0,0,8494.6416,0,1754.1667 +5682,6938,12388,12389,-9,-9,1,1,50,0,2,0,2,2,-9,1,2,0,0,0,5,1,0,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,56.83,28.16,28.14,43.9,3.333333333333333,1,1,0,1,0,12,1,0,570,35519.371,47159.191,0,0,0,0,2052.6953 +5682,6938,12389,12388,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,0,0,0,5,-1,0,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.14,43.9,56.83,28.16,3.333333333333333,1,1,0,1,0,12,1,0,570,35519.371,47159.191,0,0,0,0,2052.6953 +5683,6939,12390,-9,12391,12393,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-851.8335,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12391,12393,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.5812225,8.8126688,0,19,-7,-20.807974,0,2,2,2021,11,2,45,45,1,2,0,19.828119,19.828119,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,54.37,54.8,8.333333333333334,1,1,0,0,14,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12392,-9,12391,12393,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.82855,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12393,12391,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,9.2479849,9.1632605,0,18,7,-83.412796,0,2,2,2021,11,1,45,35,1,1,0,22.733458,22.733458,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,38.34,62.12,8.333333333333334,1,1,0,0,14,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5684,6940,12394,12395,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.8469143,9.702528,0,27,-1,-92.962135,0,2,2,2021,11,0,57,52,1,0,0,33.848282,33.848282,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,51.77,58.57,8.333333333333334,1,1,0,0,9,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6940,12395,12394,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,26,1,-8.6554852,1,2,3,2021,11,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.77,58.57,49.86,55.31,1.666666666666667,1,1,0,0,2,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6940,12396,-9,12394,12395,1,1,17,0,0,1,2,0,0,0,4,0,4.7558613,4.5809221,0,0,-947.664,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8599024,0,59.15,49.67,-9,-9,1.666666666666667,1,1,0,0,0,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6941,12397,-9,12394,12395,1,1,19,0,0,1,3,0,-9,0,4,0,0,0,0,0,-877.71759,-9,1,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,6,1,1,1137,43733.063,0,0,0,0,0,301.23819 +5685,6942,12398,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.069,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0449409,0,47.14,46.13,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,621,-6077.228,0,0,0,2524.6501,0,80.614456 +5686,6943,12399,12400,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.950367,9.023468,0,13,2,-18.074507,0,2,2,2021,11,3,37,38,1,3,0,18.379744,18.379744,0,0,0,0,0,0,0,7,0,0,0,4.8945851,0,36.92,64.01000000000001,54.98,37.25,8.333333333333334,1,1,0,0,11,6,5,1,306.5,843585.88,630478.13,229942.25,0,0,78.299164,5946.083 +5686,6943,12400,12399,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.6109953,9.5602837,0,13,-2,-110.86373,0,2,2,2021,11,0,60,51,1,0,0,26.987568,26.987568,.05,.05,0,0,0,0,0,0,0,0,0,5.9488726,0,54.98,37.25,36.92,64.01000000000001,8.333333333333334,1,1,0,0,11,6,5,1,306.5,843585.88,630478.13,229942.25,0,0,78.299164,5946.083 +5687,6944,12401,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.8362041,6.0690889,0,0,-907.9693,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2480961,5.8269801,59.97,19.97,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,363,733830.44,19824.385,626561.31,0,0,0,1547.1978 +5688,6945,12402,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.185226,7.3315306,0,0,0,-979.55072,0,-9,-9,2021,12,0,20,23,1,0,0,7.5249739,7.5249739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,12,8,3,1,523,76210.594,317865.09,0,0,0,0,923.09009 +5689,6946,12403,12404,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5441928,7.6621318,0,6,0,156.87166,0,-9,-9,2021,30,12,39,39,1,12,0,5.7984648,5.7984648,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.92,43.07,50.16,34.87,1.666666666666667,1,1,0,0,6,12,4,1,1544,94617.438,131314.11,208325.52,83261.859,11123.558,0,2929.9526 +5689,6946,12404,12403,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4060593,8.3175621,0,6,9,23.781738,0,3,2,2021,9,0,14,45,1,0,0,43.375328,43.375328,.05,.05,0,0,0,0,0,2,0,0,0,.26206526,0,50.16,34.87,23.92,43.07,10,1,1,0,0,6,12,4,1,1544,94617.438,131314.11,208325.52,83261.859,11123.558,0,2929.9526 +5690,6947,12405,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.3170481,7.50811,0,0,0,-915.0459,0,-9,-9,2021,12,0,54,48,1,0,0,3.0663705,3.0663705,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,0,2,3,0,0,9,9,3,0,185,95805.813,48180.016,0,0,0,0,1683.052 +5691,6948,12406,12407,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9574037,6.8750954,40,-5,60.45076,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9392147,62.42,32.41,60.13,49.27,8.333333333333334,1,1,0,0,4,12,3,1,269,1385719,824775,164768.97,0,0,0,1856.0481 +5691,6948,12407,12406,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.873168,7.6248198,40,5,101.12753,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9923177,7.6828365,60.13,49.27,62.42,32.41,8.333333333333334,1,1,0,0,8,12,3,1,269,1385719,824775,164768.97,0,0,0,1856.0481 +5692,6949,12408,12409,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,5.5152488,5.2698207,50,23,-29.279797,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,15.403413,0,0,1,1,0,2.9496837,5.0654697,40.84,22,44.79,55.04,6.666666666666667,1,1,0,0,0,10,3,1,626,2913163.8,200601.28,430650.84,0,0,0,2179.2888 +5692,6949,12409,12408,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.416719,7.8632464,50,-23,-81.234711,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3892119,7.6437821,44.79,55.04,40.84,22,8.333333333333334,1,1,0,0,0,10,3,1,626,2913163.8,200601.28,430650.84,0,0,0,2179.2888 +5693,6950,12410,12411,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.1448431,6.3675985,10,1,-60.178024,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,14.815537,0,0,1,1,0,0,6.9026046,38.91,36.56,41.43,27.12,3.333333333333333,1,1,0,0,0,2,2,1,803.5,350955,3789.9824,98371.922,0,0,0,1642.9597 +5693,6950,12411,12410,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,-1,88.515526,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,17.205479,0,0,1,1,0,1.0662388,0,41.43,27.12,38.91,36.56,6.666666666666667,1,1,0,0,0,2,2,1,803.5,350955,3789.9824,98371.922,0,0,0,1642.9597 +5694,6951,12412,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.7732592,4.9847865,0,0,-1187.8608,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.2196925,17.717869,28.417885,2,1,1,0,4.3499274,5.0315633,48.94,23.76,-9,-9,5,1,1,0,1,0,13,2,1,4071,172413.52,20302.658,0,0,0,0,1750.7396 +5694,6952,12413,-9,12412,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1025.7233,0,2,3,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,29.87,-9,-9,1.666666666666667,1,1,0,0,7,13,1,1,720,3582.0801,20597.096,0,0,4005.5303,0,961.05493 +5694,6953,12414,-9,12412,-9,1,0,51,0,0,0,2,2,-9,1,1,8.0197859,7.849751,0,0,0,-907.76721,0,2,3,2021,35,12,27,30,1,12,0,10.638775,10.638775,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,26.21,39.88,-9,-9,1.666666666666667,1,1,0,1,12,13,3,1,2184,670109.25,574094.56,83143.938,0,4379.2251,0,1218.7877 +5695,6954,12415,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5026531,8.6695671,0,0,0,-1061.5421,0,1,2,2021,20,6,49,45,1,6,0,10.019608,10.019608,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.84,59.58,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,357,514623.25,-12754.958,0,0,0,0,2404.344 +5696,6955,12416,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1246748,7.0538726,0,0,-1001.6395,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3057742,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,4,3,0,529,514649.47,290553.63,0,0,0,2126.7617,1595.9486 +5697,6956,12417,12418,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.0252028,9.0642614,0,29,1,-111.33923,0,2,1,2021,7,0,44,54,1,0,0,21.651354,21.651354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.57,49.24,58.32,50.22,8.333333333333334,1,1,0,0,12,13,5,1,707.5,1068387,1109406.5,0,0,0,6223.4043,7150.8804 +5697,6956,12418,12417,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.1719074,9.5092173,0,29,-1,14.662353,0,1,2,2021,8,0,45,42,1,0,0,26.729557,26.729557,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.57,49.24,8.333333333333334,1,1,0,0,12,13,5,1,707.5,1068387,1109406.5,0,0,0,6223.4043,7150.8804 +5697,6957,12419,-9,12417,12418,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1164.6498,-9,1,1,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.81,60.52,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,219,-15122.894,0,0,0,0,0,0 +5698,6958,12420,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.6040945,6.3571267,0,0,0,-961.23053,0,3,2,2021,14,3,18,18,1,3,0,4.1556883,4.1556883,0,0,0,0,0,0,0,0,1,1,0,0,0,49.75,38.05,-9,-9,5,2,3,0,0,7,9,2,0,1331,-85863.891,0,0,0,0,3843.5669,1220.3854 +5699,6959,12421,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1076.4559,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,50.69,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,295,59825.191,0,0,0,0,0,0 +5700,6960,12422,12423,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.1200972,8.2175741,0,6,-5,25.593578,0,3,3,2021,11,2,43,44,1,2,0,13.304135,13.304135,0,0,.05,0,0,0,0,2,0,0,0,0,0,51.41,56.15,51.83,57.2,8.333333333333334,1,1,0,0,4,2,5,0,703,541261.13,342462.16,294270.69,133203.03,0,0,3307.2661 +5700,6960,12423,12422,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.007575,9.0996742,0,6,5,30.213736,0,-9,-9,2021,8,0,43,42,1,0,0,19.21546,19.21546,0,0,.05,0,0,0,0,2,0,0,0,0,0,51.83,57.2,51.41,56.15,8.333333333333334,1,1,0,0,8,2,5,0,703,541261.13,342462.16,294270.69,133203.03,0,0,3307.2661 +5701,6961,12424,12425,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.6755991,8.9410229,10,6,-35.226078,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4402676,8.9038305,60.12,54.8,59.84,33.48,8.333333333333334,1,1,0,0,3,13,4,1,295,696703.5,365528.75,0,0,0,0,4273.0186 +5701,6961,12425,12424,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,-6,39.744354,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8524089,0,59.84,33.48,60.12,54.8,8.333333333333334,1,1,0,0,0,13,4,1,295,696703.5,365528.75,0,0,0,0,4273.0186 +5702,6962,12426,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.3533125,8.6210585,0,3,2,-46.070328,0,2,-9,2021,5,0,60,50,1,0,0,7.8732457,7.8732457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,49,56,8.333333333333334,1,1,0,0,10,2,3,1,444,347681.72,329091.91,212453.94,138393.88,8231.6719,0,825.33624 +5703,6963,12427,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.3607473,9.0757999,0,0,0,-839.2403,0,-9,-9,2021,14,2,45,44,1,2,0,23.103148,23.103148,.05,.05,0,0,0,0,0,0,0,0,0,3.1830928,0,51.96,43.66,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,969,514952.69,390330.75,104349.69,218793.48,0,0,3311.2607 +5704,6964,12428,12429,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,60,-3,101.04602,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,49.46,29.96,35.79,44.37,5,1,1,0,0,0,6,2,1,1065.5,421182.09,180214.7,85187.664,0,0,0,1810.2974 +5704,6964,12429,12428,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.1143064,7.0356154,60,3,55.804752,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,25.936949,0,0,1,1,0,0,6.9820824,35.79,44.37,49.46,29.96,5,1,1,0,0,0,6,2,1,1065.5,421182.09,180214.7,85187.664,0,0,0,1810.2974 +5705,6965,12430,12431,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,7.7188373,7.76372,6,-1,-41.051285,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2065129,7.4759989,57.06,57.76,54.12,34.81,10,1,1,0,0,0,11,3,1,1791,704362.5,380113.84,183306.81,0,0,0,2896.8262 +5705,6965,12431,12430,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.1184006,7.4303679,6,1,217.4994,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.426767,0,0,1,1,0,6.5290351,7.1222219,54.12,34.81,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,1791,704362.5,380113.84,183306.81,0,0,0,2896.8262 +5706,6966,12432,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.2380676,8.0322552,0,0,0,-997.39349,0,1,1,2021,10,0,53,42,1,0,0,7.4477267,7.4477267,0,0,0,0,0,0,0,0,0,0,0,3.855577,0,49,54.49,-9,-9,6.666666666666667,4,2,0,0,6,9,4,0,533,-131838.23,-41292.496,0,0,6864.1265,0,1472.2045 +5706,6967,12433,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1864605,8.1983385,0,0,0,-995.75946,0,-9,-9,2021,13,1,50,60,1,1,0,9.4786921,9.4786921,0,0,0,0,0,0,0,0,0,0,0,0,0,37.28,55.9,-9,-9,5,4,2,0,0,3,9,4,0,2556,-36420.922,0,0,0,0,0,1567.9402 +5707,6968,12434,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.3259583,5.2716255,0,0,-1057.986,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3693285,42.34,31.91,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,699,48740.711,0,74603.32,0,0,0,354.80548 +5708,6969,12435,12436,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,31,-4,43.117153,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.49,38.18,30.6,18.53,5,1,1,0,0,0,13,2,1,2738,624581.94,316882.38,175996.41,0,0,0,1773.2131 +5708,6969,12436,12435,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,7.2499285,7.549253,31,4,89.181168,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3792477,30.6,18.53,38.49,38.18,1.666666666666667,1,1,0,0,0,13,2,1,2738,624581.94,316882.38,175996.41,0,0,0,1773.2131 +5709,6970,12437,-9,12440,12438,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1031.5109,-9,2,1,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,0,0,0,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12438,12440,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,7.3824692,7.4144683,0,22,15,21.19385,0,3,2,2021,6,0,25,25,1,0,0,7.2208104,7.2208104,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,56.35,51,8.333333333333334,2,3,0,1,12,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12439,-9,12440,12438,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.3161,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12440,12438,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,22,-15,31.898296,0,3,1,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51,62.49,55.09,10,2,3,0,0,1,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5710,6971,12441,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,8.2305193,8.1087513,0,0,0,-999.20197,0,2,2,2021,27,12,40,40,1,12,0,11.156306,11.156306,0,0,.05,0,0,0,0,2,0,0,0,0,0,29.93,23.01,-9,-9,0,1,1,0,1,11,5,4,1,502,75345.211,-16752.42,98208.219,-6702.4922,5029.208,0,1348.6058 +5711,6972,12442,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.606576,8.6110897,0,0,0,-1014.2453,0,2,2,2021,4,0,47,49,1,0,0,12.508929,12.508929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,10,3,4,0,0,10,8,4,0,434,-44003.781,119445,0,0,0,0,2267.595 +5712,6973,12443,12444,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,47,-2,-86.63279,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,41.652676,0,0,1,1,0,0,0,34.19,29.44,68.32000000000001,45.78,5,2,3,0,1,12,4,2,1,1307,421827.56,304828.34,217698.09,0,0,25.411285,658.72937 +5712,6973,12444,12443,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,6.0299129,5.4738741,40,2,-110.22188,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.3505685,0,2,1,1,0,5.9508219,5.9702005,68.32000000000001,45.78,34.19,29.44,8.333333333333334,2,3,0,0,8,4,2,1,1307,421827.56,304828.34,217698.09,0,0,25.411285,658.72937 +5713,6974,12445,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1057.9833,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,17.448919,0,0,1,1,0,0,0,67.71000000000001,10.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,2053,74912.547,0,0,0,0,0,2397.0613 +5714,6975,12446,12447,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.3109512,5.3581033,50,-3,97.720558,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.041454297,5.0425076,39.31,33.38,44.41,56.75,6.666666666666667,1,1,0,0,10,6,2,1,658,180327.55,117775.88,273839.84,0,0,0,1406.4568 +5714,6975,12447,12446,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.6271749,6.106071,50,3,-30.513634,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1696143,6.1344924,44.41,56.75,39.31,33.38,5,1,1,0,0,6,6,2,1,658,180327.55,117775.88,273839.84,0,0,0,1406.4568 +5715,6976,12448,-9,12450,12451,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.6611,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12449,-9,12450,12451,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1200.5521,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12450,12451,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.1114006,7.2246618,0,7,-3,-37.090233,0,3,3,2021,10,0,23,23,1,0,0,6.1645155,6.1645155,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,28.22,53.7,6.666666666666667,1,1,0,0,8,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12451,12450,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,0,0,0,7,3,30.449245,-9,2,2,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.22,53.7,46.16,58.62,1.666666666666667,1,1,1,1,8,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5716,6977,12452,12453,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.7896471,8.7471027,0,35,1,-23.718052,0,2,2,2021,5,0,35,30,1,0,0,21.185654,21.185654,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,666,370531.22,249104.56,116380.77,0,0,0,2400.8503 +5716,6977,12453,12452,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.6648293,6.8113918,7,-1,-34.028347,0,2,2,2021,6,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9011526,57.16,56.15,57.06,57.76,10,1,1,0,0,9,11,4,1,666,370531.22,249104.56,116380.77,0,0,0,2400.8503 +5717,6978,12454,12455,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8020296,8.5440569,0,8,2,-109.69236,0,-9,-9,2021,11,1,60,56,1,1,0,15.53675,15.53675,0,0,.05,0,0,0,0,0,0,0,0,7.4954395,0,52.23,55.6,43.92,31.59,8.333333333333334,1,1,0,0,10,12,5,1,1121,807940.25,200781.84,330081.19,186744.84,0,0,5111.0898 +5717,6978,12455,12454,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0172501,8.460721,0,8,-2,-129.25017,0,2,2,2021,14,2,20,20,1,2,0,18.690369,18.690369,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.92,31.59,52.23,55.6,6.666666666666667,1,1,0,0,10,12,5,1,1121,807940.25,200781.84,330081.19,186744.84,0,0,5111.0898 +5718,6979,12456,12458,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.7430038,8.7827969,0,12,8,19.381691,0,2,2,2021,0,0,40,40,1,0,0,17.671089,17.671089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,51.24,58.84,8.333333333333334,1,1,0,0,13,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12457,-9,12458,12456,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.5377,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12458,12456,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.9164844,8.216794,0,12,-8,41.960705,0,3,-9,2021,10,0,62,30,1,0,0,4.9408851,4.9408851,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.77,55.87,8.333333333333334,1,1,0,0,2,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12459,-9,12458,12456,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.89941,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6980,12460,-9,12458,12456,1,1,23,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1090.1398,0,2,2,2021,9,1,0,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,1,0,13,9,1,1,171,133156.89,0,0,0,0,0,0 +5718,6981,12461,-9,12458,12456,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1057.5663,0,2,2,2021,10,2,0,38,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,918,-49793.242,0,0,0,0,0,0 +5719,6982,12462,12463,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.2065697,9.1401873,0,11,0,76.280991,0,2,2,2021,15,4,40,77,1,4,0,25.908978,25.908978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,31.35,66.34,3.333333333333333,1,1,0,0,13,4,5,1,1478,1507625,1301257.3,223202.64,81486.672,1917.7025,12206.378,5309.7764 +5719,6982,12463,12462,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7386885,8.7363901,0,27,0,-38.675739,0,3,2,2021,17,6,40,42,1,6,0,21.306566,21.306566,.05,.05,0,0,0,0,0,0,0,0,0,2.6143739,0,31.35,66.34,46.33,55.93,8.333333333333334,1,1,0,0,13,4,5,1,1478,1507625,1301257.3,223202.64,81486.672,1917.7025,12206.378,5309.7764 +5720,6983,12464,12465,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.0025663,8.1191683,0,6,-1,4.0757742,0,-9,-9,2021,9,0,40,40,1,1,0,8.6189795,8.6189795,.05,.05,0,0,0,0,0,0,1,1,0,8.3160706,0,52,55,45.83,30.64,7,1,1,0,0,1,9,3,0,639,128025.67,142840.7,0,0,-808.32532,0,3573.1006 +5720,6983,12465,12464,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,6,1,12.40133,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.83,30.64,52,55,1.666666666666667,1,1,1,0,0,9,3,0,639,128025.67,142840.7,0,0,-808.32532,0,3573.1006 +5721,6984,12466,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1076.2659,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.11,46.78,-9,-9,7,1,1,1,0,2,2,1,0,286,58941.016,0,0,0,0,0,693.09607 +5722,6985,12467,12468,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.5063486,8.4385281,0,5,10,28.220865,0,3,-9,2021,9,0,46,38,1,0,0,14.468415,14.468415,0,0,.05,0,0,0,0,0,0,0,0,7.6124167,0,46.68,50.04,49.63,54.22,10,1,1,0,0,10,2,5,1,447.5,900564.13,366564.44,289300.88,0,0,0,3521.1987 +5722,6985,12468,12467,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2369175,8.2581892,0,5,-10,60.588604,0,-9,-9,2021,12,2,30,30,1,2,0,12.820362,12.820362,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,46.68,50.04,6.666666666666667,1,1,0,0,10,2,5,1,447.5,900564.13,366564.44,289300.88,0,0,0,3521.1987 +5722,6986,12469,-9,12468,12467,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1033.0121,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,666,0,0,0,0,0,0,0 +5723,6987,12470,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.897995,7.088419,0,0,-1002.2029,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9302135,6.8195887,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,342,116859.37,83732.141,0,0,-1279.9463,0,418.66156 +5724,6988,12471,12472,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,0,-77.229538,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.53,36.06,58.15,52.91,8.333333333333334,1,1,0,0,4,12,3,1,2256.5,1298066.4,806322.88,203195.34,0,0,0,2774.446 +5724,6988,12472,12471,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.0711756,8.3221207,10,0,-110.36382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8906732,58.15,52.91,65.53,36.06,10,1,1,0,0,10,12,3,1,2256.5,1298066.4,806322.88,203195.34,0,0,0,2774.446 +5725,6989,12473,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.6034279,8.7637968,0,0,0,-943.8407,-9,1,1,2021,11,0,40,0,1,0,0,17.215862,17.215862,.05,.05,0,0,0,0,0,0,0,0,0,2.9992733,0,46.06,60.24,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,654,-18487.621,99817.43,0,0,0,0,1489.9132 +5726,6990,12474,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.5844436,7.2887101,0,0,-931.18805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1476929,7.5346589,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,323,563500.56,309822.41,79387.398,0,0,0,1482.7216 +5727,6991,12475,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.5945053,6.5352564,0,0,-984.44513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7426406,6.6834359,64.78,32.7,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,769,86547.672,145373.75,0,0,0,0,2097.3091 +5728,6992,12476,12478,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,8.2899427,8.2967453,0,6,0,-12.315986,0,-9,-9,2021,10,0,40,40,1,0,0,8.5234547,8.5234547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,44.72,57.73,8.333333333333334,1,1,0,0,10,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5728,6992,12477,-9,12478,12476,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.0096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5728,6992,12478,12476,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,7.6569996,7.6073942,0,6,0,36.542084,0,1,1,2021,8,0,25,25,1,0,0,9.1521301,9.1521301,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,58.05,54.52,6.666666666666667,1,1,0,0,10,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5729,6993,12479,12480,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.0039501,6.2706056,35,-2,34.438652,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9539094,6.441721,55.59,43.19,61.2,9.790000000000001,8.333333333333334,1,1,0,0,0,9,2,1,507,687159.63,269250.34,381658.56,0,0,0,2715.6606 +5729,6993,12480,12479,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.5760431,6.5103946,35,2,-57.328106,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4355161,6.6082711,61.2,9.790000000000001,55.59,43.19,0,1,1,0,0,0,9,2,1,507,687159.63,269250.34,381658.56,0,0,0,2715.6606 +5730,6994,12481,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.7187648,8.0778065,0,0,0,-1093.3495,0,2,2,2021,13,2,37,37,1,2,0,9.6099272,9.6099272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.7,41.66,-9,-9,5,1,1,0,1,12,5,3,1,1053,236240.13,173249.48,198553.52,124966.93,0,0,1396.9081 +5730,6995,12482,-9,12481,-9,1,0,18,0,1,1,2,0,0,0,3,0,7.5034308,7.2004614,0,0,-893.6037,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.95015,0,36.65,58.88,-9,-9,8.333333333333334,1,1,0,0,1,5,3,1,857,81008.297,100008.85,0,0,1563.2673,0,511.11661 +5731,6996,12483,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0807953,8.1860237,7.121758,0,0,-1022.8852,0,3,2,2021,10,0,37,37,1,1,0,9.4726648,9.4726648,0,0,.05,0,0,0,0,0,0,0,0,3.5545609,7.1888776,52,53,-9,-9,8,1,1,0,0,9,7,4,1,645,-62757.551,34156.512,0,0,0,0,1437.5176 +5732,6997,12484,-9,12485,12487,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1175.8108,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12485,12487,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.2685976,6.9671235,0,6,-8,91.1119,0,-9,-9,2021,22,9,10,8,1,9,0,15.805739,15.805739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.25,55.98,48.07,40.65,3.333333333333333,1,1,0,0,3,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12486,-9,12485,12487,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.95264,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12487,12485,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,7.6788483,7.9320245,0,6,8,-149.19785,-9,-9,-9,2021,12,1,20,0,1,1,0,15.624096,15.624096,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.07,40.65,37.25,55.98,6.666666666666667,1,1,0,0,15,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5733,6998,12488,12492,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,6.9247284,6.9904933,0,19,-4,-14.540324,0,3,3,2021,11,1,18,24,1,1,0,9.4548531,9.4548531,0,0,0,0,0,0,0,0,1,1,0,0,0,38.25,42.59,43.57,62.68,6.666666666666667,1,1,0,0,6,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12489,-9,12488,12492,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.54999,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.0067415722,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12490,-9,12488,12492,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.17914,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12491,-9,12488,12492,1,0,17,0,3,1,3,0,0,0,4,0,0,0,0,0,-822.37573,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.26012102,0,46,59,-9,-9,7,1,1,0,1,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12492,12488,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,7.534646,7.3090181,0,19,4,119.01793,0,-9,-9,2021,12,3,16,16,1,3,0,10.591574,10.591574,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,38.25,42.59,6.666666666666667,1,1,0,1,3,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6999,12493,-9,12488,12492,1,1,19,0,3,1,2,0,0,0,5,0,0,0,0,0,-1034.8113,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,1,0,4,1,1,1019,75528.492,0,0,0,0,0,0 +5734,7000,12494,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,0,0,0,0,-885.74365,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6318119,0,43.27,47.53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1572,-28334.125,0,0,0,0,920.54077,691.13068 +5735,7001,12495,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.6287918,8.4744024,0,0,0,-1004.0074,0,2,2,2021,11,0,37,38,1,0,0,17.978012,17.978012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,41.12,-9,-9,5,3,4,0,0,9,8,4,1,1424,638932.44,49808.035,427670.19,0,0,0,2196.728 +5736,7002,12496,12497,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,45,-3,-82.309509,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5838418,0,35.88,56.66,40.47,55.65,8.333333333333334,1,1,0,0,8,5,4,1,414,2030399.3,1496224,492802.06,71899.344,0,0,4977.46 +5736,7002,12497,12496,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.7968092,8.7043104,7,3,5.1758542,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5847664,8.6203604,40.47,55.65,35.88,56.66,8.333333333333334,1,1,0,0,4,5,4,1,414,2030399.3,1496224,492802.06,71899.344,0,0,4977.46 +5736,7003,12498,-9,12496,12497,1,1,36,0,0,0,2,2,-9,0,3,8.7837753,8.8705139,0,0,0,-1161.0129,0,1,1,2021,16,5,47,42,1,5,0,10.577846,10.577846,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.93,60.89,-9,-9,3.333333333333333,1,1,0,0,7,5,5,1,364,-31018.547,-77472.07,0,0,5544.9922,0,2094.5623 +5736,7004,12499,-9,12496,12497,1,1,33,0,0,0,2,2,-9,0,2,8.4154806,8.2714195,0,0,0,-910.05389,0,1,1,2021,13,2,37,35,1,2,0,13.805568,13.805568,0,0,0,0,0,0,0,14.5,1,1,0,2.2121596,0,38.38,52.96,-9,-9,5,1,1,0,0,6,5,4,1,354,-101560.86,0,0,0,0,0,1034.1836 +5736,7005,12500,-9,12496,12497,1,1,31,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1068.1206,0,1,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4617687,0,50,57,-9,-9,7,1,1,0,0,0,5,1,1,418,0,0,0,0,0,0,565.73175 +5737,7006,12501,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-947.72809,0,3,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.52,47.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,185,243477.23,0,0,0,0,0,1646.814 +5738,7007,12502,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9925842,8.2248011,0,0,0,-980.93463,0,1,2,2021,14,2,46,46,1,2,0,8.188055,8.188055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,-9,-9,8.333333333333334,1,1,0,0,4,10,4,0,486,22206.578,8383.2061,0,0,6259.228,0,1152.7383 +5739,7008,12503,-9,12504,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57574,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5739,7008,12504,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,3,0,5.8160734,6.3586044,0,0,-933.09436,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3009071,0,46.07,44.77,-9,-9,5,1,1,0,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5739,7008,12505,-9,12504,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.42877,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5740,7009,12506,-9,-9,-9,1,1,54,0,1,0,2,2,-9,1,1,0,0,0,0,0,-799.58014,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,25.25,-9,-9,5,1,1,0,0,0,13,1,0,736,-49343.105,23162.373,0,0,0,0,1706.6135 +5741,7010,12507,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.93317,-9,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,49.02,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,491,-88374.781,0,0,0,0,0,1082.2689 +5741,7011,12508,-9,12509,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-973.09973,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,4,0,464,20330.285,19785.021,0,0,8907.4795,0,1743.759 +5741,7011,12509,-9,12507,-9,1,0,28,0,0,0,2,2,-9,0,3,7.9633198,7.7442412,0,0,0,-942.54498,-9,3,3,2021,13,2,35,0,1,2,1,10.035954,10.035954,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.47,49.86,-9,-9,5,1,1,0,0,9,12,4,0,464,20330.285,19785.021,0,0,8907.4795,0,1743.759 +5742,7012,12510,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.6361771,5.1690464,0,0,-966.27655,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.191783,52,46,-9,-9,8,1,1,0,0,0,2,2,0,462,145406.63,71464.102,106163.55,0,0,0,1492.4501 +5743,7013,12511,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.1914287,7.4980102,0,0,-1149.7491,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.0664767,7.7189069,57.08,39,-9,-9,10,1,1,0,0,0,11,3,1,1335,291604.56,176689.05,40832.996,0,0,0,1437.0758 +5744,7014,12512,12513,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,32,-8,-35.62812,0,3,3,2021,17,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,41.01,42.61,54.85,3.333333333333333,1,1,1,0,14,9,2,1,421,602848.44,263037.69,345696.41,0,0,745.94476,1004.4678 +5744,7014,12513,12512,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.64533,7.3626575,0,31,8,-43.564526,0,3,3,2021,14,2,45,45,1,2,0,5.0339808,5.0339808,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,35.04,41.01,5,2,3,0,0,14,9,2,1,421,602848.44,263037.69,345696.41,0,0,745.94476,1004.4678 +5744,7015,12514,-9,12512,12513,1,0,27,0,0,0,2,2,-9,0,4,7.9746408,8.0764866,0,0,0,-1112.0759,0,2,3,2021,6,0,40,40,1,0,1,9.1805868,9.1805868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,10,9,4,1,1867,-48992.168,22261.756,0,0,0,0,1054.576 +5745,7016,12515,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.3898182,7.1922531,0,0,0,-1010.2495,0,3,2,2021,16,5,35,35,1,5,0,5.339829,5.339829,0,0,0,0,0,0,0,2,1,0,1,0,0,45.81,52.23,-9,-9,5,1,1,0,0,8,9,3,1,268,298502.56,0,317292.53,110920.48,0,0,920.31464 +5746,7017,12516,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7838507,6.8312111,0,0,-1044.6785,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,7.9708166,0,73.098351,0,1,1,0,4.6433907,7.1349745,60.54,32.08,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,381,664943.56,90926.922,543370.94,0,0,0,1885.693 +5747,7018,12517,12518,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.4604206,8.956214,6.091372,6,13,-61.29493,0,3,3,2021,10,0,60,55,1,0,0,11.207544,11.207544,0,0,0,0,0,0,0,0,1,1,0,5.8044848,5.903275,54.2,57.49,46.39,60.99,8.333333333333334,4,2,0,0,7,2,5,1,855.5,-20237.008,5253.6543,144715.73,97345.891,1607.1079,0,6933.8125 +5747,7018,12518,12517,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.4908495,8.7063856,0,6,-13,-65.881935,0,3,3,2021,8,0,54,40,1,0,0,8.3674459,8.3674459,0,0,0,0,0,0,0,72,1,1,0,7.5187473,0,46.39,60.99,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,855.5,-20237.008,5253.6543,144715.73,97345.891,1607.1079,0,6933.8125 +5748,7019,12519,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-995.57434,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.17,30.56,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1482,0,0,0,0,0,0,1528.7811 +5749,7020,12520,-9,12522,12521,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.39465,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5749,7020,12521,12522,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,7.8351283,7.6576734,0,6,1,116.76556,0,2,2,2021,7,0,48,50,1,0,0,6.2968745,6.2968745,0,0,0,0,0,0,0,0,1,1,0,3.7784512,0,62.39,56.71,62.39,56.71,10,1,1,0,0,11,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5749,7020,12522,12521,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,0,0,0,6,-1,-32.985157,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6967402,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5750,7021,12523,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.7171822,7.5848198,0,0,-963.52161,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.445972,7.8248587,50.99,52.23,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1465,587142.31,116336.3,378023.72,0,0,0,1978.1375 +5751,7022,12524,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,7.2528386,7.4110603,0,0,-1027.2295,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1349287,65.95,39.97,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,645,106410.86,0,300017.56,0,0,0,445.21036 +5751,7023,12525,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,7.5257387,7.3679385,0,0,-1078.5081,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.3885474,7.2819452,64.42,26.08,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,219,752014.81,303313.56,228323.88,0,0,0,1693.9877 +5752,7024,12526,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.5418139,7.9245653,0,0,0,-1027.6124,0,-9,-9,2021,10,0,40,40,1,0,0,6.4680023,6.4680023,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,1,3,0,1681,57219.207,178637.7,115413.63,45871.305,0,0,409.19748 +5753,7025,12527,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.033,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.65,24.04,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,3454,64518.102,0,0,0,0,0,1061.1743 +5754,7026,12528,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,1,7.2954078,7.4661622,0,0,0,-1054.6091,0,2,2,2021,35,12,30,40,1,12,0,5.0430913,5.0430913,0,0,0,0,0,0,0,0,0,0,0,0,0,11.34,41.27,-9,-9,0,4,2,0,1,3,12,3,0,483,83671.133,-5715.9902,0,0,0,0,878.19476 +5755,7027,12529,12530,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.6167288,8.7212305,0,7,3,37.863018,0,-9,-9,2021,13,1,59,80,1,1,0,17.363504,17.363504,.05,.05,0,0,0,0,0,0,0,0,0,7.2789907,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,5,5,1,1829.5,269921,110904.88,579799.13,343607.66,0,0,5820.9312 +5755,7027,12530,12529,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.5740814,8.6197863,0,7,-3,-24.576252,0,2,3,2021,9,0,37,53,1,0,0,19.875311,19.875311,0,0,0,0,0,0,0,0,0,0,0,7.4141359,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,5,5,1,1829.5,269921,110904.88,579799.13,343607.66,0,0,5820.9312 +5756,7028,12531,12532,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,7.5332465,7.7018366,0,10,-5,-22.746523,-9,3,-9,2021,10,0,48,0,1,0,0,6.0948644,6.0948644,0,0,0,0,0,0,0,0,1,1,0,0,0,45.35,50.81,51,44.2,6.666666666666667,2,3,0,0,11,9,2,1,700.5,113977.66,8420.708,0,0,0,0,1043.1295 +5756,7028,12532,12531,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,18,5,-35.729122,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,44.2,45.35,50.81,8.333333333333334,2,3,0,0,0,9,2,1,700.5,113977.66,8420.708,0,0,0,0,1043.1295 +5757,7029,12533,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1045.7115,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.02,23.4,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,727,69668.516,112547.2,0,0,0,0,1144.6105 +5758,7030,12534,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4136333,8.4636555,7.2685452,0,0,-1130.5685,0,3,3,2021,10,1,37,37,1,1,0,11.343306,11.343306,0,0,0,0,0,0,0,0,1,1,0,0,7.1918855,36.97,54.63,-9,-9,10,1,1,0,0,12,13,5,1,273,551882.81,531271.56,0,0,0,0,2177.866 +5759,7031,12535,12536,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.1257086,9.408905,8.5042896,8,2,111.99704,0,-9,2,2021,9,1,48,45,1,1,0,19.777109,19.777109,.05,.05,0,0,0,0,0,0,0,0,0,0,8.9544601,55.36,51.57,62.49,55.09,8.333333333333334,1,1,0,0,9,2,5,1,1085,992560.88,815309.63,128155.1,0,15133.52,0,7862.9082 +5759,7031,12536,12535,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,6.2726169,6.3801317,8,-2,71.434341,0,2,2,2021,6,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6394134,62.49,55.09,55.36,51.57,10,1,1,0,0,9,2,5,1,1085,992560.88,815309.63,128155.1,0,15133.52,0,7862.9082 +5760,7032,12537,12538,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6583443,8.1127262,0,6,-3,78.75737,0,-9,-9,2021,13,2,44,44,1,2,0,12.466857,12.466857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.45,56.22,8.333333333333334,1,1,0,0,6,5,5,1,2292.5,1400463.9,1343202.9,202171.14,108620.84,4701.7563,0,3543.9121 +5760,7032,12538,12537,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2037325,7.9821329,0,6,3,50.179726,0,-9,-9,2021,9,0,35,35,1,0,0,11.810381,11.810381,0,0,0,0,0,0,0,0,0,0,0,2.3066664,0,54.45,56.22,51.24,58.84,8.333333333333334,1,1,0,0,6,5,5,1,2292.5,1400463.9,1343202.9,202171.14,108620.84,4701.7563,0,3543.9121 +5761,7033,12539,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,1,0,0,0,0,0,-948.70227,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.06,24.75,-9,-9,1.666666666666667,1,1,1,1,1,12,1,0,2624,44169.379,0,0,0,0,0,1347.2196 +5762,7034,12540,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.2356682,7.8775029,0,0,0,-949.89948,-9,3,3,2021,6,0,40,0,1,0,0,11.232296,11.232296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,343,51083.758,-6468.2178,0,0,0,0,782.89868 +5763,7035,12541,12542,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.1564169,6.0718346,50,0,-55.9011,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6838636,6.2138448,59.71,50.89,53.33,53.71,10,1,1,0,0,6,4,5,1,127.5,2207355,1767710.5,362821.5,0,0,0,6373.2686 +5763,7035,12542,12541,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.9696245,8.7257214,50,0,-137.71053,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.863348,8.6512756,53.33,53.71,59.71,50.89,10,1,1,0,0,5,4,5,1,127.5,2207355,1767710.5,362821.5,0,0,0,6373.2686 +5764,7036,12543,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.4926071,8.1482086,0,0,0,-1023.1295,0,2,3,2021,6,0,37,37,1,0,0,11.90214,11.90214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,2056,610657.25,596764,46139.945,78548.547,0,0,2004.0214 +5765,7037,12544,12545,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.7992029,8.5513477,0,37,-4,54.576473,0,2,2,2021,18,6,43,42,1,6,0,17.931553,17.931553,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,62.85,52,54.51,6.666666666666667,1,1,0,0,9,7,5,1,268,523606.56,434530.38,182731.53,0,0,0,4701.3066 +5765,7037,12545,12544,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.7368469,8.8791332,0,35,4,-68.038292,0,3,3,2021,12,0,50,50,1,0,0,14.993072,14.993072,0,0,0,0,0,0,0,0,0,0,0,1.1571324,0,52,54.51,42.85,62.85,6.666666666666667,1,1,0,0,9,7,5,1,268,523606.56,434530.38,182731.53,0,0,0,4701.3066 +5766,7038,12546,12547,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,9.570981,9.4318924,0,5,0,-136.87247,0,3,3,2021,12,0,41,40,1,2,0,44.468517,44.468517,0,0,.05,0,0,0,0,0,0,0,0,0,0,46.4,39.55,24.62,38.05,3.333333333333333,1,1,0,0,14,12,5,1,550,1649487.3,1018862.6,267388.44,0,0,0,5386.6934 +5766,7038,12547,12546,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.6238375,7.6394668,0,5,0,89.072403,0,-9,-9,2021,30,10,30,-9,1,10,0,6.6252255,6.6252255,0,0,.05,0,0,0,0,0,0,0,0,2.0592349,0,24.62,38.05,46.4,39.55,3.333333333333333,1,1,0,0,14,12,5,1,550,1649487.3,1018862.6,267388.44,0,0,0,5386.6934 +5766,7039,12548,-9,12546,12547,1,0,27,0,0,0,2,2,-9,0,4,8.1920395,8.0354948,0,0,0,-953.27087,0,1,3,2021,5,0,38,38,1,0,1,12.447543,12.447543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.93,52.62,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,692,-98790.414,-27880.354,0,0,0,0,1149.2083 +5767,7040,12549,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.4268012,4.8379107,0,0,-895.69116,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.1335984,0,1,1,0,0,5.0460157,61.43,43.34,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,144,168698.89,27303.936,0,0,702.77429,0,623.8111 +5768,7041,12550,12551,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.3455777,7.8328614,6,6,25.494635,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0553641,7.7290587,51.84,42.21,54.48,42.8,8.333333333333334,1,1,0,0,0,4,3,1,660.5,469838.47,107133.57,122357.66,0,0,0,2211.9463 +5768,7041,12551,12550,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.8789186,6.9869552,6,-6,44.27282,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.350549,7.184227,54.48,42.8,51.84,42.21,8.333333333333334,1,1,0,0,0,4,3,1,660.5,469838.47,107133.57,122357.66,0,0,0,2211.9463 +5769,7042,12552,12553,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.4350247,7.1766424,0,4,6,19.393661,0,2,2,2021,8,0,98,12,1,0,0,1.4534255,1.4534255,0,0,0,0,0,0,0,28,1,1,0,7.8073273,0,57.16,56.15,37.93,54.93,8.333333333333334,1,1,0,0,11,11,3,1,515,553650,300241.22,206088.38,140576.53,1647.5973,0,2346.9976 +5769,7042,12553,12552,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,6.9283409,7.5121641,0,4,-6,-150.21906,0,-9,-9,2021,14,2,40,40,1,2,0,5.7351465,5.7351465,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.93,54.93,57.16,56.15,3.333333333333333,1,1,0,0,7,11,3,1,515,553650,300241.22,206088.38,140576.53,1647.5973,0,2346.9976 +5769,7043,12554,-9,12552,-9,1,1,27,0,0,0,1,1,-9,0,4,7.6151834,7.9534817,0,0,0,-988.69452,0,1,-9,2021,12,0,35,40,1,0,1,6.8861189,6.8861189,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,4,11,3,1,237,-18847.984,0,0,0,0,0,638.17505 +5769,7044,12555,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-980.64166,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,-9,-9,10,1,1,1,0,0,11,1,1,223,-44998.395,-76487.617,0,0,0,8340.4678,455.38391 +5769,7045,12556,-9,-9,-9,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1201.6144,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1.8875705,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,0,11,1,1,2101,75518.539,0,0,0,0,0,2087.3538 +5770,7046,12557,12558,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.918128,8.2595968,50,2,-149.15222,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.41833425,8.112009,49.34,31.31,54.13,31.98,8.333333333333334,4,2,0,0,0,10,3,1,636,1018833.9,308991.38,438926,0,0,0,2790.1099 +5770,7046,12558,12557,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,5,-2,-64.420517,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.13,31.98,49.34,31.31,8.333333333333334,1,1,0,0,11,10,3,1,636,1018833.9,308991.38,438926,0,0,0,2790.1099 +5771,7047,12559,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.9928827,8.8438787,1.4537892,0,0,-1049.1531,-9,3,2,2021,13,1,47,0,1,1,0,18.831699,18.831699,.05,.05,0,0,0,0,0,7,0,0,0,2.3190436,1.8092775,36.73,36.37,-9,-9,5,1,1,0,0,13,7,5,1,448,774979.75,626001.31,332033.06,68900.367,0,0,2066.1113 +5772,7048,12560,12561,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.7699962,6.7925687,8,4,79.216919,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5188258,0,27,1,1,0,6.7764511,6.5362129,52.65,40.91,51.42,13.45,8.333333333333334,1,1,0,0,0,9,2,1,998,194431.25,148550.53,76655.328,0,0,0,1786.0994 +5772,7048,12561,12560,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.7722101,6.0766306,50,-4,-138.18082,0,3,3,2021,19,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0706615,5.7972012,51.42,13.45,52.65,40.91,8.333333333333334,1,1,0,0,4,9,2,1,998,194431.25,148550.53,76655.328,0,0,0,1786.0994 +5773,7049,12562,12565,-9,-9,1,1,55,0,2,0,2,2,-9,0,2,8.1584406,7.8572049,0,9,8,-7.9594755,0,-9,-9,2021,18,6,36,36,1,6,0,11.704075,11.704075,.05,.05,0,0,0,0,0,0,1,1,0,6.7081017,0,26.75,48.94,41.94,48.3,3.333333333333333,1,1,0,1,11,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12563,-9,12565,12562,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6394,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12564,-9,12565,12562,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.9068,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12565,12562,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.8127985,7.7069411,0,9,-8,-5.4020572,0,3,3,2021,11,0,28,28,1,0,0,9.1642399,9.1642399,0,0,0,0,0,0,0,0,1,1,0,6.8144255,0,41.94,48.3,26.75,48.94,3.333333333333333,1,1,0,0,11,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5774,7050,12566,-9,-9,-9,1,0,27,1,2,0,2,2,-9,1,4,0,0,0,0,0,-958.22998,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.01,33.33,-9,-9,1.666666666666667,1,1,1,0,2,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5774,7050,12567,-9,12566,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1356,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5774,7050,12568,-9,12566,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4654,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5775,7051,12569,12570,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,3.5152266,3.2862122,9,10,28.768242,0,2,3,2021,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,3.1658542,58.05,54.52,60.02,56.42,8.333333333333334,1,1,0,0,7,9,3,1,485.5,720423.94,176389.22,210062.78,0,577.0257,0,1859.2156 +5775,7051,12570,12569,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.823401,7.6783619,6.1178465,9,-10,89.308418,0,-9,-9,2021,6,0,8,8,1,0,0,32.863403,32.863403,0,0,0,0,0,0,0,2,1,1,0,4.8399024,5.8105874,60.02,56.42,58.05,54.52,10,1,1,0,0,12,9,3,1,485.5,720423.94,176389.22,210062.78,0,577.0257,0,1859.2156 +5776,7052,12571,12572,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.644948,8.5590038,0,7,4,-137.60191,0,3,3,2021,14,2,52,54,1,2,0,13.577062,13.577062,.05,.05,0,0,0,0,0,0,0,0,0,7.3594251,0,38.71,47.54,54.79,55.86,3.333333333333333,1,1,0,1,12,9,5,1,854,2782851,999200.25,821848.75,121309.82,5338.1377,0,4501.8145 +5776,7052,12572,12571,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.614233,8.6513119,0,7,-4,-55.411983,0,-9,-9,2021,8,0,37,37,1,0,0,16.421921,16.421921,.05,.05,0,0,0,0,0,0,0,0,0,1.0114428,0,54.79,55.86,38.71,47.54,8.333333333333334,1,1,0,0,9,9,5,1,854,2782851,999200.25,821848.75,121309.82,5338.1377,0,4501.8145 +5777,7053,12573,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,2,0,0,0,0,0,-875.48566,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9253371,0,51.97,27.61,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,699,-147537.09,0,0,0,0,3392.8936,2304.3403 +5778,7054,12574,12575,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-17.430531,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,66.23,35.65,10,1,1,0,0,0,4,2,1,982.5,683562.25,292454.5,254510.27,0,0,0,1207.7838 +5778,7054,12575,12574,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.8032384,7.6148891,55,1,132.05745,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3723235,7.8726172,66.23,35.65,52,45,10,1,1,0,0,0,4,2,1,982.5,683562.25,292454.5,254510.27,0,0,0,1207.7838 +5779,7055,12576,-9,12577,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-794.66663,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,1,0,2167,0,0,0,0,0,0,2964.5801 +5779,7055,12577,-9,-9,-9,1,0,38,1,2,0,2,2,-9,1,4,0,0,0,0,0,-839.3949,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.37,48.04,-9,-9,5,1,1,1,1,0,8,1,0,2167,0,0,0,0,0,0,2964.5801 +5779,7056,12578,-9,12577,-9,1,0,20,1,2,0,2,2,-9,0,4,7.9233017,8.0024309,0,0,0,-953.71674,0,2,-9,2021,14,2,50,0,1,2,1,7.023993,7.023993,0,0,0,0,0,0,0,0,1,1,0,0,0,34.13,58.69,-9,-9,0,1,1,0,0,1,8,4,0,620.5,14594.848,0,0,0,107.17395,0,2357.1924 +5779,7056,12579,-9,12578,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.77399,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,620.5,14594.848,0,0,0,107.17395,0,2357.1924 +5780,7057,12580,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1471748,8.188612,0,0,0,-932.84875,0,-9,-9,2021,12,0,40,38,1,0,0,10.19697,10.19697,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,7,4,1,1793,101930.4,0,0,0,0,0,488.60889 +5781,7058,12581,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,8.1061249,7.999774,0,0,0,-1004.829,0,-9,-9,2021,26,11,39,40,1,11,0,7.7277551,7.7277551,.05,.05,0,0,0,0,0,0,1,1,0,1.6269805,0,41.58,52.86,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,813,-128007.12,37031.66,0,0,0,0,987.5871 +5781,7059,12582,12583,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.3213906,6.8123269,5,3,49.5942,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7866409,6.7257257,53.97,37.32,42.94,37.17,6.666666666666667,1,1,0,0,0,6,2,1,154.5,177388.59,108432.94,197591.58,0,0,2269.6233,1306.9385 +5781,7059,12583,12582,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.2179508,6.2071104,5,-3,52.934048,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7998508,6.3068452,42.94,37.17,53.97,37.32,8.333333333333334,1,1,0,0,0,6,2,1,154.5,177388.59,108432.94,197591.58,0,0,2269.6233,1306.9385 +5782,7060,12584,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1102.0363,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.48,24.02,-9,-9,5,1,1,0,0,0,2,1,0,350,18082.25,-8390.6387,0,0,0,0,536.35645 +5783,7061,12585,12586,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4645476,6.9896312,7,3,65.238091,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4323096,7.8672619,58.23,43.46,56.92,49.39,8.333333333333334,1,1,0,0,0,6,3,1,545,946822.63,603666.13,365625.13,0,0,0,4624.665 +5783,7061,12586,12585,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5388937,7.4741001,7,-3,-2.400594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1617641,7.3900418,56.92,49.39,58.23,43.46,10,1,1,0,0,0,6,3,1,545,946822.63,603666.13,365625.13,0,0,0,4624.665 +5784,7062,12587,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.7876854,6.5132127,0,0,-1009.3049,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3979518,6.5199924,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1021,298575.53,9204.9678,215228.41,0,0,0,1775.243 +5785,7063,12588,12589,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.9773159,8.9224224,0,6,5,22.109043,0,-9,-9,2021,11,0,42,46,1,0,0,18.185717,18.185717,.05,.05,0,0,0,0,0,0,0,0,0,3.8754184,0,46.44,59.62,52.5,46.44,8.333333333333334,1,1,0,0,7,7,5,1,984,160135.44,-18554.215,373699.81,229892.94,0,243.23923,5370.1333 +5785,7063,12589,12588,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8959465,9.3948336,0,6,-5,3.4753821,0,-9,-9,2021,9,0,41,43,1,0,0,25.517048,25.517048,0,0,0,0,0,0,0,0,0,0,0,5.5737548,0,52.5,46.44,46.44,59.62,8.333333333333334,1,1,0,0,9,7,5,1,984,160135.44,-18554.215,373699.81,229892.94,0,243.23923,5370.1333 +5786,7064,12590,12591,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7951956,7.4916406,0,3,3,15.28099,0,3,3,2021,23,11,45,40,1,11,0,5.5947003,5.5947003,0,0,0,0,0,0,0,0,0,0,0,0,0,32.2,38.17,47.21,28.63,3.333333333333333,1,1,0,1,10,4,3,1,245,552650.13,368485.38,131934.02,0,0,0,1218.225 +5786,7064,12591,12590,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.1995206,7.0978718,0,3,-3,-46.56094,0,3,3,2021,13,2,20,20,1,2,0,6.951839,6.951839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.21,28.63,32.2,38.17,3.333333333333333,1,1,0,1,8,4,3,1,245,552650.13,368485.38,131934.02,0,0,0,1218.225 +5787,7065,12592,-9,12593,-9,1,0,18,0,0,0,2,2,-9,0,5,7.2673802,7.4255285,0,0,0,-1071.3368,0,2,-9,2021,6,0,35,0,1,0,1,4.910203,4.910203,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,3,1,392,0,0,0,0,0,0,860.21222 +5787,7066,12593,12594,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.1522455,7.94872,0,2,-6,31.572912,0,3,2,2021,6,0,37,0,1,0,0,8.2488623,8.2488623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53,54,10,1,1,0,0,9,5,5,1,903.5,1091125.8,837694.38,128671.48,6625.4658,3571.0835,0,3119.6387 +5787,7066,12594,12593,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6694317,8.3989277,0,2,6,9.8755226,0,-9,-9,2021,9,0,37,38,1,1,0,15.500464,15.500464,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,60.02,56.42,8,1,1,0,0,1,5,5,1,903.5,1091125.8,837694.38,128671.48,6625.4658,3571.0835,0,3119.6387 +5788,7067,12595,12597,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.8124161,8.0261173,0,10,-5,107.70242,0,-9,-9,2021,5,0,30,24,1,0,0,8.9050016,8.9050016,.05,.05,0,0,0,0,0,0,1,1,0,1.1923524,0,60.1,54.82,55.2,49.4,6.666666666666667,1,1,0,0,11,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12596,-9,12595,12597,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1022.2184,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12597,12595,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,7.9008889,7.8660765,0,10,5,-69.15033,0,2,2,2021,8,0,41,41,1,0,0,8.1228247,8.1228247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,60.1,54.82,8.333333333333334,1,1,0,0,11,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12598,-9,12595,12597,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.5118,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5789,7068,12599,12600,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-16.118469,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,47.38,50.99,58.06,46.15,10,1,1,0,0,0,11,4,1,917,1675928.8,1276864.1,231349.06,0,0,0,2520.3027 +5789,7068,12600,12599,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.3472538,8.4592953,10,2,76.88269,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.470318,0,120,1,1,0,0,8.6028948,58.06,46.15,47.38,50.99,8.333333333333334,1,1,0,0,0,11,4,1,917,1675928.8,1276864.1,231349.06,0,0,0,2520.3027 +5789,7069,12601,-9,12599,12600,1,0,42,0,0,0,3,3,-9,1,2,0,0,0,0,0,-939.28143,0,3,2,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.66,42.99,-9,-9,5,1,1,0,0,0,11,1,1,339,109615.16,0,0,0,0,0,-66.796188 +5790,7070,12602,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.8040886,5.7020979,0,0,-854.271,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.877511,41.13,29.75,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,596,269094.19,126125.32,0,0,0,0,1058.9823 +5791,7071,12603,12604,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,4.9834566,4.9411769,5,-4,-67.072769,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8323369,4.8554616,60.13,41.04,49.76,54.41,8.333333333333334,1,1,0,0,0,2,2,0,672,262844.44,262110.33,0,0,0,151.65936,1103.9625 +5791,7071,12604,12603,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,3.8049664,3.7554238,5,4,1.8148479,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3201737,3.5124264,49.76,54.41,60.13,41.04,8.333333333333334,1,1,0,0,0,2,2,0,672,262844.44,262110.33,0,0,0,151.65936,1103.9625 +5792,7072,12605,-9,-9,-9,1,0,21,0,1,0,2,2,1,0,3,7.6377459,7.5329957,0,0,0,-1000.7021,-9,-9,3,2021,14,4,40,0,1,4,1,5.3795505,5.3795505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.81,41.99,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,771,166108.58,-115547.27,0,0,4914.0347,0,1004.3331 +5793,7073,12606,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1045.4113,0,2,2,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,21.48859,0,0,1,1,0,0,0,32.51,25.74,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,609,-68912.953,0,0,0,1926.2703,0,1102.4824 +5794,7074,12607,12609,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.7746572,9.0641403,0,24,-13,-39.650429,0,3,2,2021,6,0,43,48,1,0,0,16.680561,16.680561,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,12,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7074,12608,-9,12607,12609,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-910.95172,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7074,12609,12607,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.038476,7.6879587,0,21,13,-44.782017,0,2,1,2021,9,0,50,60,1,0,0,2.9361665,2.9361665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7075,12610,-9,12607,12609,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1096.9092,-9,1,2,2021,13,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,0,0,0,9,1,1,299,-20452.568,0,0,0,6964.3833,0,0 +5795,7076,12611,12612,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.4755073,7.2048826,0,7,-10,-122.84637,0,-9,-9,2021,5,0,34,39,1,0,0,6.3536081,6.3536081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37.38,50.66,8.333333333333334,1,1,0,0,9,2,4,1,1490.5,390930.59,44309.508,322022.19,0,0,6898.7153,2974.5122 +5795,7076,12612,12611,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,8.4603672,8.6961193,0,7,10,-32.098099,0,-9,-9,2021,5,0,60,60,1,0,0,9.982152,9.982152,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.38,50.66,54.2,57.49,10,1,1,0,0,7,2,4,1,1490.5,390930.59,44309.508,322022.19,0,0,6898.7153,2974.5122 +5796,7077,12613,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.1601253,6.4394126,0,0,-983.96564,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2378144,58.91,45.88,-9,-9,8.333333333333334,1,1,0,1,0,1,2,0,1607,275529.56,103943.22,141153.69,0,0,1506.9052,741.30719 +5797,7078,12614,-9,12618,12616,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.03888,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12615,-9,12618,12616,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.9735,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12616,12618,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.522213,8.547226,0,10,-1,12.898562,0,1,1,2021,11,0,36,36,1,0,0,14.225803,14.225803,0,0,0,0,0,0,0,0,1,1,0,0,0,41.53,63.13,57.06,57.76,10,1,1,0,0,11,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12617,-9,12618,12616,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.5671,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12618,12616,-9,-9,1,0,39,1,3,0,1,1,-9,0,5,0,0,0,10,1,105.75951,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8069305,0,57.06,57.76,41.53,63.13,10,1,1,0,0,4,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5798,7079,12619,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.7118506,6.6344643,0,0,-978.42828,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.7797408,3.9739459,64.755478,0,1,1,0,1.303802,6.5843296,54,44,-9,-9,8,1,1,0,0,0,5,2,0,1002,12472.432,107122.41,145493.63,0,0,0,1550.9614 +5799,7080,12620,-9,12621,12622,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.59222,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12621,12622,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.9205198,7.332252,0,12,-3,90.247902,0,3,3,2021,8,1,30,30,1,1,0,3.4113805,3.4113805,0,0,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,51.66,54.88,6.666666666666667,1,1,0,0,13,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12622,12621,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,0,0,0,12,3,-12.036497,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,43.48,60.97,5,1,1,1,0,6,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12623,-9,12621,12622,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.89502,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5800,7081,12624,12625,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.895771,8.587225,0,1,16,20.448576,-9,-9,-9,2021,9,0,50,0,1,1,0,17.288836,17.288836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.38,56.39,8.333333333333334,1,1,0,0,9,2,4,1,990,256230.75,122458.79,131049.91,0,0,0,1835.3907 +5800,7081,12625,12624,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,1,-16,-23.772243,0,2,3,2021,12,2,0,49,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.38,56.39,54.79,55.86,6.666666666666667,1,1,1,0,7,2,4,1,990,256230.75,122458.79,131049.91,0,0,0,1835.3907 +5801,7082,12626,12627,-9,-9,1,1,68,0,2,0,1,1,-9,1,3,6.5123363,6.417398,0,7,20,-311.4895,0,3,2,2021,12,4,16,16,1,4,0,4.6231775,4.6231775,0,0,0,1,0,158.00423,0,0,1,1,0,0,0,52.08,18.58,50.62,20.39,6.666666666666667,2,3,0,1,10,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5801,7082,12627,12626,-9,-9,1,0,48,0,2,0,2,2,-9,0,1,0,0,0,7,-20,-48.955769,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50.62,20.39,52.08,18.58,8.333333333333334,2,3,0,0,0,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5801,7082,12628,-9,12627,12626,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4065,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5802,7083,12629,12631,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,8.2516022,8.1038361,0,4,1,-204.19839,0,2,2,2021,9,0,42,8,1,0,0,10.323456,10.323456,.05,.05,0,0,0,0,0,2,1,1,0,1.4773688,0,54.1,59.11,37.31,50.35,8.333333333333334,1,1,0,0,11,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7083,12630,-9,12631,12629,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.5106,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7083,12631,12629,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.7354012,8.6907368,0,4,-1,-22.228048,0,2,-9,2021,16,4,38,1,1,4,0,14.776073,14.776073,.05,.05,0,0,0,0,0,0,1,1,0,8.187583,0,37.31,50.35,54.1,59.11,5,1,1,0,0,11,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7084,12632,-9,12631,12629,1,0,20,0,1,1,2,0,0,0,4,0,6.4189162,6.591198,0,0,-983.46198,-9,2,2,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7719293,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,1023,155703.97,-10338.891,0,0,-764.16925,0,173.1922 +5802,7085,12633,-9,12631,12629,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1006.2124,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3236058,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,408,276842.47,0,0,0,0,0,289.08228 +5803,7086,12634,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.6734004,8.1099091,0,0,-964.07074,0,2,1,2021,24,12,0,45,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8745632,7.712729,37.36,45.03,-9,-9,6.666666666666667,1,1,0,0,12,9,4,1,590,-85178.133,66105.07,0,0,0,0,813.67944 +5804,7087,12635,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.8256779,6.7828121,0,0,-961.00043,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.57188636,6.7852273,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,495,288178.81,-97384.445,194969.39,0,0,0,1294.2939 +5805,7088,12636,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8135014,8.5692978,0,0,0,-985.71808,0,2,1,2021,7,0,42,42,1,0,0,17.804657,17.804657,.05,.05,0,0,0,0,0,0,0,0,0,2.8509288,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,8,4,5,0,979,109068.8,103567.32,0,0,0,0,2997.2261 +5806,7089,12637,12638,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,29.12734,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2963929,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,1,4,3,1,659,694981.38,479541.66,131034.66,0,429.02423,0,2119.6018 +5806,7089,12638,12637,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.9047527,7.6118908,10,-2,-28.413347,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6508379,57.16,56.15,51.24,58.84,10,1,1,0,0,0,4,3,1,659,694981.38,479541.66,131034.66,0,429.02423,0,2119.6018 +5807,7090,12639,12640,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,21,9,0,-9,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.26,18.9,56.5,48.33,1.666666666666667,1,1,0,0,5,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5807,7090,12640,12639,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,21,0,0,0,1,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.5,48.33,30.26,18.9,6.666666666666667,1,1,0,0,2,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5807,7090,12641,-9,12640,12639,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-873.70593,0,3,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2938221,0,9.870000000000001,71.02,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5808,7091,12642,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.2578239,6.5136733,0,0,-1043.3682,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,2.2304647,0,0,1,1,0,0,6.4572139,23.04,34.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,332,138020.78,-13496.837,200408.55,0,0,0,414.30518 +5808,7092,12643,-9,12642,-9,1,0,61,0,0,0,2,2,-9,0,5,8.2482414,8.3177872,0,0,0,-1031.0519,0,3,2,2021,6,0,30,30,1,0,0,19.24662,19.24662,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,5,4,1,913,22605.348,0,31278.732,27609.369,36.642651,0,1739.4951 +5809,7093,12644,12646,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.7652445,9.118268,0,16,7,-64.96006,0,2,1,2021,9,0,43,43,1,0,0,21.719093,21.719093,.05,.05,0,0,0,0,0,0,1,1,0,.69824064,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,8,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5809,7093,12645,-9,12646,12644,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.19019,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5809,7093,12646,12644,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,9.1214428,8.9365749,0,17,-7,-64.104202,0,2,2,2021,9,0,48,47,1,0,0,26.255667,26.255667,.05,.05,0,0,0,0,0,0,1,1,0,4.0027208,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5810,7094,12647,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-914.08276,0,-9,-9,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.59,47.27,-9,-9,0,1,1,1,0,0,12,2,0,552,88456.672,0,0,0,-1670.2166,0,1425.7336 +5811,7095,12648,-9,-9,12649,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.22864,-9,-9,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5811,7095,12649,12650,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.8579407,9.6601248,0,6,-4,-57.529346,0,3,2,2021,13,2,50,50,1,2,0,37.418518,37.418518,.05,.05,0,0,0,0,0,2,0,0,0,0,0,32.55,66.27,42.61,54.85,3.333333333333333,1,1,0,0,8,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5811,7095,12650,12649,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7572231,8.4239979,0,6,4,-2.0676348,0,3,3,2021,16,4,53,51,1,4,0,11.696995,11.696995,0,0,0,0,0,0,0,27,0,0,0,0,0,42.61,54.85,32.55,66.27,8.333333333333334,1,1,0,0,7,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5812,7096,12651,12652,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-7,11.136417,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.67,45.86,43.8,44.58,6.666666666666667,2,3,0,0,0,4,4,1,592,1788282.4,1127900.8,316670.38,0,0,0,3891.3159 +5812,7096,12652,12651,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.6085796,8.458663,53,7,40.412148,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3950896,8.444459,43.8,44.58,38.67,45.86,8.333333333333334,2,3,0,0,8,4,4,1,592,1788282.4,1127900.8,316670.38,0,0,0,3891.3159 +5813,7097,12653,-9,12654,-9,1,1,56,0,0,0,1,1,-9,0,5,8.330287,8.4933243,0,0,0,-955.71771,0,2,-9,2021,12,0,37,37,1,0,0,12.614056,12.614056,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,14,11,5,1,541,322796.44,187692.69,167807.53,48655.145,0,0,1490.6869 +5813,7098,12654,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.8086081,6.6654902,0,0,-1060.2076,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,8.8205309,4.7274561,68.910896,0,1,1,0,5.5255561,6.8569984,29.86,20.5,-9,-9,5,1,1,0,0,0,11,2,1,215,4711.397,-51623.703,0,0,0,0,884.75061 +5814,7099,12655,12656,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.768528,7.0770884,57,-1,-74.045784,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9133763,47.49,29.63,46.09,51.67,3.333333333333333,1,1,0,0,0,10,2,1,989,595302.94,280385.56,367188.94,0,0,0,1526.0804 +5814,7099,12656,12655,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,1,78.438759,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.09,51.67,47.49,29.63,8.333333333333334,1,1,0,0,0,10,2,1,989,595302.94,280385.56,367188.94,0,0,0,1526.0804 +5814,7100,12657,-9,12656,12655,1,1,51,0,0,0,3,3,-9,0,2,8.0384207,7.8225727,0,0,0,-952.99084,0,3,3,2021,23,8,38,40,1,8,0,9.4354639,9.4354639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.4,40.86,-9,-9,1.666666666666667,1,1,0,0,14,10,4,1,200,444263.72,-66026.57,134733.95,35426.074,0,1208.4006,1567.7035 +5815,7101,12658,12659,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,7.5454679,7.8440661,5.5874815,30,2,41.858963,0,2,2,2021,11,0,2,4,1,1,0,105.34346,105.34346,0,0,0,0,0,0,0,0,1,1,0,0,5.5919642,51,46,41.88,54.89,7,1,1,0,0,1,7,5,1,1339.5,1496754.8,423876.5,600331.75,0,0,0,6027.79 +5815,7101,12659,12658,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.6495285,8.967865,7.7265563,30,-2,-16.08819,0,2,2,2021,12,0,30,30,1,0,0,24.746084,24.746084,.05,.05,0,0,0,0,0,0,1,1,0,7.7677269,7.6923914,41.88,54.89,51,46,5,1,1,0,0,8,7,5,1,1339.5,1496754.8,423876.5,600331.75,0,0,0,6027.79 +5816,7102,12660,12662,-9,-9,1,0,39,1,1,0,1,1,-9,0,4,8.6769705,8.5851707,0,2,1,6.0087771,0,2,2,2021,12,1,28,21,1,1,0,17.456015,17.456015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.95,58.45,54.67,57.49,8.333333333333334,1,1,0,0,14,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5816,7102,12661,-9,12660,12662,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.0438,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5816,7102,12662,12660,-9,-9,1,1,38,1,1,0,1,1,-9,0,5,9.3041267,9.256443,0,2,-1,28.471184,-9,2,2,2021,12,2,45,0,1,2,0,30.269707,30.269707,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,43.95,58.45,8.333333333333334,1,1,0,0,14,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5817,7103,12663,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.8565993,7.7819295,0,0,0,-899.75775,0,-9,-9,2021,12,2,40,32,1,2,0,7.6626644,7.6626644,0,0,0,0,0,0,0,0,1,0,1,0,0,29.41,36.67,-9,-9,6.666666666666667,1,1,0,0,12,6,3,0,673,-137530.34,20714.262,98693.688,22812.807,0,0,996.12445 +5817,7104,12664,-9,12663,-9,1,0,29,0,1,0,3,3,-9,0,3,7.3900714,7.4160433,0,0,0,-994.88409,-9,2,-9,2021,17,5,25,0,1,5,1,5.8744035,5.8744035,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.38,58.58,-9,-9,6.666666666666667,1,1,0,0,12,6,3,0,274.5,-10973.697,797.46484,0,0,0,1763.3516,991.24719 +5817,7104,12665,-9,12664,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.8701,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,63,-9,-9,7,1,1,-9,0,0,6,3,0,274.5,-10973.697,797.46484,0,0,0,1763.3516,991.24719 +5818,7105,12666,12667,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.3886948,8.192606,49,-1,-88.886086,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4941797,8.2073669,63.48,49.15,38.91,60.5,8.333333333333334,1,1,0,0,6,4,4,1,329,950042.25,788869.13,163601,0,0,0,4186.8433 +5818,7105,12667,12666,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3831577,7.7559652,49,1,-69.493263,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5338373,7.0982947,38.91,60.5,63.48,49.15,8.333333333333334,1,1,0,0,0,4,4,1,329,950042.25,788869.13,163601,0,0,0,4186.8433 +5819,7106,12668,12669,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.3514576,8.3848305,34,3,18.191381,0,3,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.0659428,8.3057833,59.29,49.68,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,294.5,1561820.8,950233,364872.88,19457.02,0,0,4902.9609 +5819,7106,12669,12668,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.2151341,7.5967593,5.8322124,8,-3,97.12896,0,3,3,2021,8,0,8,12,1,0,0,25.533947,25.533947,0,0,0,0,0,0,0,0,1,1,0,3.270278,6.6223831,58.15,52.91,59.29,49.68,8.333333333333334,1,1,0,0,10,5,4,1,294.5,1561820.8,950233,364872.88,19457.02,0,0,4902.9609 +5819,7107,12670,-9,12669,12668,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-830.16504,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,3,5,1,1,1922,-164005.56,0,0,0,0,0,0 +5820,7108,12671,12672,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.1010847,9.4142675,7.5868883,38,0,87.382278,0,2,1,2021,8,0,47,48,1,0,0,21.060722,21.060722,0,0,0,0,0,0,0,7,0,0,0,6.7267327,7.8362665,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,700,1406669.8,963315.5,361953.56,0,0,0,8223.2451 +5820,7108,12672,12671,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7535057,8.8070107,38,0,192.08997,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.1688604,8.8040209,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,700,1406669.8,963315.5,361953.56,0,0,0,8223.2451 +5821,7109,12673,12677,-9,-9,1,1,30,0,3,0,1,1,-9,0,5,8.6384239,8.3100357,0,10,0,-30.520979,0,1,2,2021,9,0,45,48,1,0,0,14.004027,14.004027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.58,54.92,8.333333333333334,1,1,0,0,9,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12674,-9,12677,12673,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.19104,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12675,-9,12677,12673,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.62653,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12676,-9,12677,12673,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.3207,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12677,12673,-9,-9,1,0,30,0,3,0,1,1,1,0,4,0,0,0,10,0,38.972912,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.58,54.92,51.73,58.82,6.666666666666667,1,1,0,0,3,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5822,7110,12678,12679,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,0,0,0,10,3,-6.4928198,0,-9,-9,2021,10,0,0,52,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.4884887,0,48.43,53.15,41.06,62.04,6.666666666666667,1,1,1,0,13,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5822,7110,12679,12678,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.791626,8.6195011,7.6762295,10,-3,-90.502228,-9,1,1,2021,12,0,50,0,1,0,0,6.400208,6.400208,0,0,0,0,0,0,0,0,1,1,0,8.4131746,0,41.06,62.04,48.43,53.15,8.333333333333334,1,1,0,0,12,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5822,7110,12680,-9,12679,12678,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.23175,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5823,7111,12681,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.28033,0,-9,-9,2021,7,1,0,48,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.95,57.9,-9,-9,8.333333333333334,1,1,1,0,7,12,1,0,444,0,0,0,0,0,0,-58.323792 +5824,7112,12682,12683,-9,-9,1,1,28,1,1,0,2,2,-9,1,3,0,0,0,1,1,-48.929649,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,62.49,55.09,5,1,1,1,0,0,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5824,7112,12683,12682,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.6960316,8.0799227,0,1,-1,88.572212,-9,-9,-9,2021,6,0,50,0,1,0,0,5.6380835,5.6380835,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.33,53.46,10,1,1,0,0,6,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5824,7112,12684,-9,12683,12682,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.13385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5825,7113,12685,12686,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.796504,8.7573919,5.4749532,6,-1,80.737358,0,3,3,2021,7,0,36,36,1,0,0,20.440271,20.440271,.05,.05,0,0,0,0,0,0,0,0,0,5.8789415,0,55.19,54.26,58.32,50.22,8.333333333333334,1,1,0,0,7,13,5,1,593.5,543206.25,76887.219,485228.75,0,4942.0396,0,2578.6001 +5825,7113,12686,12685,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.6221461,6.8071342,0,6,1,54.120605,0,2,2,2021,6,0,10,14,1,0,0,9.4632673,9.4632673,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,55.19,54.26,8.333333333333334,1,1,0,0,7,13,5,1,593.5,543206.25,76887.219,485228.75,0,4942.0396,0,2578.6001 +5826,7114,12687,12688,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,49,0,110.26559,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,46.56,60,41.18,8.333333333333334,1,1,0,0,0,6,2,1,760,178127.31,0,177357.47,0,0,0,1200.1075 +5826,7114,12688,12687,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.699976,4.6610394,49,0,-24.041002,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0806502,4.8228064,60,41.18,49.28,46.56,10,1,1,0,0,0,6,2,1,760,178127.31,0,177357.47,0,0,0,1200.1075 +5827,7115,12689,12690,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.3570447,7.5300331,8,2,-82.873657,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.28969,62.49,55.09,57.16,56.15,10,1,1,0,0,0,10,3,1,352.5,856885.44,445462.06,243357.19,0,0,680.08722,2639.1763 +5827,7115,12690,12689,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1586957,7.2540898,8,-2,-9.3409519,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8142056,6.9011679,57.16,56.15,62.49,55.09,10,1,1,0,0,0,10,3,1,352.5,856885.44,445462.06,243357.19,0,0,680.08722,2639.1763 +5828,7116,12691,12692,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4091587,5.2428455,8,1,-45.994808,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4666839,39.39,48.18,57.16,56.15,6.666666666666667,1,1,0,0,0,2,2,1,1397.5,676671.44,279534.28,256387.2,0,0,0,1663.5024 +5828,7116,12692,12691,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7942944,6.9073973,8,-1,47.669258,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0008245,6.6591816,57.16,56.15,39.39,48.18,8.333333333333334,1,1,0,0,1,2,2,1,1397.5,676671.44,279534.28,256387.2,0,0,0,1663.5024 +5829,7117,12693,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7854948,8.7624807,0,0,0,-949.46466,0,1,2,2021,5,0,43,43,1,0,0,15.789514,15.789514,.05,.05,0,0,0,0,0,0,0,0,0,4.6383967,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,2092,19700.107,101571.45,171575.72,111852.83,17960.549,0,1734.6639 +5830,7118,12694,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.7973628,7.9688573,0,0,0,-934.33472,0,-9,-9,2021,12,2,38,37,1,2,0,10.361547,10.361547,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,8,13,4,0,391,-74304.594,-11696.293,0,0,0,0,1390.5195 +5831,7119,12695,12696,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.4264326,8.3245716,40,-3,-70.813904,0,2,1,2021,6,0,0,85,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,5.8697882,8.3243732,59.53,56.44,45.75,53.15,10,1,1,0,0,12,10,4,1,2748,512050.69,276519.75,297656.25,0,0,0,2324.3733 +5831,7119,12696,12695,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.4042411,7.011282,38,3,9.141222,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6979747,45.75,53.15,59.53,56.44,8.333333333333334,1,1,0,0,13,10,4,1,2748,512050.69,276519.75,297656.25,0,0,0,2324.3733 +5832,7120,12697,-9,12701,12699,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.47565,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12698,-9,12701,12699,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.02454,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12699,12701,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.7447357,8.9101372,0,17,0,86.242813,0,2,1,2021,13,3,39,39,1,3,0,19.775305,19.775305,.05,.05,0,0,0,0,0,0,1,1,0,5.2448516,0,55.19,54.26,39.66,47.83,8.333333333333334,1,1,0,0,11,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12700,-9,12701,12699,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.32428,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12701,12699,-9,-9,1,0,38,0,3,0,1,1,-9,1,3,0,0,0,17,0,-74.25354,-9,1,1,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.1185863,0,39.66,47.83,55.19,54.26,6.666666666666667,1,1,0,0,6,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5833,7121,12702,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.5461016,8.9490738,0,0,0,-1036.2977,0,2,2,2021,12,0,37,37,1,0,0,15.55404,15.55404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,3.333333333333333,1,1,0,0,10,9,5,1,831,37351.242,23311.406,0,0,0,4214.9951,2590.1599 +5834,7122,12703,-9,12704,12705,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-918.62817,-9,2,2,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,59.49,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5834,7122,12704,12705,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,0,0,0,38,-1,57.93206,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6893802,0,46.38,42.58,52,54.51,6.666666666666667,1,1,0,1,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5834,7122,12705,12704,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,0,7.8373957,7.6689696,10,1,39.926495,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2294025,8.0014753,52,54.51,46.38,42.58,6.666666666666667,1,1,1,0,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5835,7123,12706,12707,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,56,2,102.04741,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.8364474,30.949987,21.931805,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,569.5,644050.81,122132.46,402012.88,0,0,0,1869.4047 +5835,7123,12707,12706,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.3793273,7.6865726,56,-2,7.640729,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.926826,0,25.678986,14.5,1,1,0,4.3088622,7.3249416,55,45,53,44,8,1,1,0,0,0,8,2,1,569.5,644050.81,122132.46,402012.88,0,0,0,1869.4047 +5836,7124,12708,12711,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,6.6176562,6.7614884,0,8,-8,130.04485,0,-9,-9,2021,9,0,11,49,1,1,0,9.1483364,9.1483364,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,28.91,35.16,8,1,1,0,0,1,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12709,-9,12711,12708,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1102.864,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12710,-9,12711,12708,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1012.719,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12711,12708,-9,-9,1,0,50,0,1,0,3,3,-9,1,1,0,0,0,8,8,11.062444,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.91,35.16,51,56,3.333333333333333,1,1,0,1,5,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5837,7125,12712,12713,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.1858716,5.7729654,50,2,86.757263,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,5.1580839,5.9496408,62.6,34.56,55.8,40.33,8.333333333333334,2,3,0,0,0,5,2,1,776.5,382135.94,251584.84,145688.22,0,0,0,2096.4675 +5837,7125,12713,12712,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,-2,69.165611,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.0834746,0,55.8,40.33,62.6,34.56,10,2,3,0,0,0,5,2,1,776.5,382135.94,251584.84,145688.22,0,0,0,2096.4675 +5838,7126,12714,12715,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.9089441,7.3605995,61,-3,52.006741,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2396588,6.9081807,51.77,58.57,65.22,41.45,10,1,1,0,0,0,2,3,1,1158,196534.28,190428.17,117596.16,11774.752,897.59521,0,2762.1775 +5838,7126,12715,12714,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.5683947,7.1044145,61,3,22.595457,0,2,2,2021,13,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8910427,65.22,41.45,51.77,58.57,6.666666666666667,1,1,0,0,4,2,3,1,1158,196534.28,190428.17,117596.16,11774.752,897.59521,0,2762.1775 +5839,7127,12716,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,3,0,0,0,0,0,-1126.8934,-9,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,-9,-9,1.666666666666667,4,2,1,1,5,5,1,1,2032,-92115.82,0,0,0,0,0,0 +5840,7128,12717,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,5,0,7.4917479,7.3501768,0,0,-1092.7633,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9361598,7.7749104,48.77,60.16,-9,-9,5,1,1,0,0,8,9,3,1,328,974764.94,294959.81,129394.66,0,0,0,1563.2131 +5840,7129,12718,-9,12717,-9,1,1,53,0,0,0,2,2,-9,0,4,8.784111,8.3701401,0,0,0,-994.81488,0,1,2,2021,7,0,43,45,1,0,0,20.812572,20.812572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,1171,699916.69,515847.44,276951.75,0,0,2437.5923,1436.33 +5841,7130,12719,-9,-9,-9,1,0,72,0,1,0,3,3,-9,0,1,0,5.6913805,5.6751633,0,0,-856.89783,0,3,3,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,2.0617085,0,0,1,1,0,0,5.880703,16.04,23.99,-9,-9,0,1,1,0,0,0,1,2,1,769,178296.13,5208.1748,215265.95,0,0,0,1060.8384 +5842,7131,12720,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.7443819,8.7089653,6.84059,0,0,-855.83325,0,3,3,2021,6,0,25,40,1,0,0,34.588051,34.588051,0,0,0,0,0,0,0,0,1,1,0,3.6521058,7.0192432,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,242,390775.69,-24112.559,211861.84,15057.11,0,0,2604.7988 +5843,7132,12721,12722,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2598252,7.5266099,10,1,-28.530622,0,2,2,2021,13,2,0,21,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7143116,7.4620676,47.62,44.34,36.29,52.23,8.333333333333334,1,1,0,0,10,7,3,0,385,693717.75,262238.03,513968.78,0,-1086.8833,0,2115.667 +5843,7132,12722,12721,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,10,-1,10.118419,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,52.23,47.62,44.34,6.666666666666667,1,1,0,0,8,7,3,0,385,693717.75,262238.03,513968.78,0,-1086.8833,0,2115.667 +5844,7133,12723,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.2425632,4.6117659,0,0,-980.68738,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.6906685,4.7945476,23.475576,0,1,1,0,0,4.7164788,31.67,54.34,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,852,204104.09,-69002.758,0,0,0,0,187.32141 +5845,7134,12724,12725,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,6.7422729,6.6157289,0,4,-2,-53.961102,0,-9,-9,2021,19,7,30,36,1,7,0,3.2312667,3.2312667,0,0,0,0,0,0,0,7,0,0,0,0,0,38.45,39.53,30.87,56.1,8.333333333333334,1,1,0,0,5,11,3,0,299.5,-90808.75,0,0,0,0,558.88513,1411.9307 +5845,7134,12725,12724,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.7741294,7.7899895,0,4,2,-141.03413,0,-9,-9,2021,20,8,39,31,1,8,0,6.3053675,6.3053675,0,0,0,0,0,0,0,7,0,0,0,0,0,30.87,56.1,38.45,39.53,3.333333333333333,1,1,0,0,3,11,3,0,299.5,-90808.75,0,0,0,0,558.88513,1411.9307 +5846,7135,12726,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,7.5740023,7.1295433,0,0,0,-910.76947,-9,1,1,2021,6,0,22,0,1,0,0,9.1379709,9.1379709,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,58.45,-9,-9,8.333333333333334,2,3,0,0,14,8,3,1,1520,79772.898,-104795.5,191535.75,58600.695,3313.686,0,506.14642 +5847,7136,12727,12728,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.0223374,7.3932023,55,3,-95.338554,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4981346,7.2662344,59.53,56.44,66.76000000000001,42.29,10,1,1,0,0,0,7,3,1,1091,436010.06,90548.484,631557.19,471005.78,0,0,4708.7446 +5847,7136,12728,12727,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.0161657,7.1056023,55,-3,8.4011526,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7728047,6.9594283,66.76000000000001,42.29,59.53,56.44,10,1,1,0,0,0,7,3,1,1091,436010.06,90548.484,631557.19,471005.78,0,0,4708.7446 +5848,7137,12729,12730,-9,-9,1,1,62,0,1,0,1,1,-9,0,2,5.8862643,6.4048753,5.0496531,41,1,-147.89738,0,3,2,2021,13,1,37,7,1,1,0,1.2086768,1.2086768,.05,.05,.05,0,0,0,0,2,1,1,0,0,4.8442197,38.8,39.16,12.89,63.58,5,1,1,0,1,10,5,3,1,961,500232.47,449603.47,123254.25,0,528.52533,415.15677,1173.4309 +5848,7137,12730,12729,-9,-9,1,0,61,0,1,0,1,1,-9,0,2,0,7.8067846,7.7921953,41,-1,94.904503,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6716661,12.89,63.58,38.8,39.16,0,1,1,0,1,12,5,3,1,961,500232.47,449603.47,123254.25,0,528.52533,415.15677,1173.4309 +5848,7138,12731,-9,12733,12732,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.71112,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5848,7138,12732,12733,12730,12729,1,1,28,0,1,0,2,2,-9,1,4,0,0,0,9,0,31.243162,0,1,1,2021,6,0,0,20,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,50.02,48.88,8.333333333333334,1,1,0,0,1,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5848,7138,12733,12732,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.8582993,7.9096489,0,9,0,12.141329,0,-9,-9,2021,6,1,43,42,1,1,0,9.8968592,9.8968592,0,0,0,0,0,0,0,83,1,1,0,0,0,50.02,48.88,54.79,55.86,6.666666666666667,1,1,0,0,6,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5849,7139,12734,12735,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.7236977,9.7671309,0,6,2,46.5368,0,3,3,2021,4,0,70,45,1,0,0,27.312284,27.312284,.05,.05,0,0,0,0,0,0,1,1,0,6.92593,0,57.33,53.46,38.11,62.27,8.333333333333334,2,3,0,0,7,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7139,12735,12734,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.939105,8.8518124,0,6,-2,67.261635,0,3,3,2021,8,0,65,42,1,0,0,12.829153,12.829153,.05,.05,0,0,0,0,0,0,1,1,0,5.9872828,0,38.11,62.27,57.33,53.46,1.666666666666667,2,3,0,0,7,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7139,12736,-9,12735,12734,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1040.5052,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1453947,0,63.97,49.13,-9,-9,10,2,3,0,0,0,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7140,12737,-9,12735,12734,1,0,22,0,1,0,2,2,1,0,3,8.0264759,7.8841143,0,0,0,-1052.6549,-9,1,1,2021,15,3,37,0,1,3,1,8.4981394,8.4981394,.05,.05,0,0,0,0,0,0,1,1,0,3.5024223,0,37.92,53.03,-9,-9,6.666666666666667,2,3,0,0,5,6,4,1,368,-44590.43,-10885.892,0,0,0,0,1243.9281 +5850,7141,12738,12739,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.7456236,8.7516251,0,31,-7,24.877422,0,2,-9,2021,14,3,41,41,1,3,0,16.22031,16.22031,0,0,0,0,0,0,0,2,0,0,0,0,0,43.14,61.33,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,1745.5,431564.13,312490.78,223778.53,26490.283,0,0,3690.8298 +5850,7141,12739,12738,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.6407442,8.8187675,0,31,7,-4.4189496,0,2,3,2021,8,0,38,38,1,0,0,13.431934,13.431934,.05,.05,.05,0,0,0,0,0,0,0,0,.80292678,0,57.16,56.15,43.14,61.33,8.333333333333334,1,1,0,0,9,9,5,1,1745.5,431564.13,312490.78,223778.53,26490.283,0,0,3690.8298 +5851,7142,12740,-9,12743,12741,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.70789,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12741,12743,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.8549128,8.9867401,0,7,-2,-61.227089,0,-9,-9,2021,9,0,50,48,1,1,0,16.459913,16.459913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,53.92,52.23,8,1,1,0,0,1,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12742,-9,12743,12741,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.14288,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12743,12741,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,9.3484554,9.1335049,0,13,2,76.512955,0,2,3,2021,11,0,49,49,1,0,0,21.547619,21.547619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.92,52.23,52,56,8.333333333333334,1,1,0,0,7,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12744,-9,12743,12741,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.14667,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5852,7143,12745,12747,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,7.2987633,7.3269658,0,4,1,-128.73724,0,3,1,2021,17,5,17,15,1,5,0,13.624352,13.624352,0,0,0,0,0,0,0,0,1,1,0,.73415768,0,41.23,48.62,36.68,58.87,8.333333333333334,1,1,0,0,12,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5852,7143,12746,-9,12745,12747,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.40009,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5852,7143,12747,12745,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.4663429,8.4579964,0,4,-1,63.877228,0,-9,-9,2021,12,0,35,35,1,0,0,15.471293,15.471293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.68,58.87,41.23,48.62,5,1,1,0,0,6,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5853,7144,12748,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,2,0,4.9295697,4.924552,0,0,-1122.5747,-9,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2603054,0,30,32.46,-9,-9,3.333333333333333,1,1,0,1,0,2,2,0,358,-244603.14,-19007.904,0,0,0,0,1609.4452 +5853,7145,12749,-9,12748,-9,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-954.64612,-9,2,-9,2021,23,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.61,59.47,-9,-9,5,1,1,0,0,0,2,1,0,343,50397.496,0,0,0,0,0,0 +5854,7146,12750,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1106.017,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.59,29.33,-9,-9,10,1,1,0,0,10,5,1,1,356,134482.94,0,0,0,-564.86908,0,725.41376 +5854,7147,12751,-9,12750,-9,1,1,26,0,0,0,2,2,-9,0,3,7.5685382,7.5383534,0,0,0,-975.57098,0,2,-9,2021,23,9,20,15,1,9,0,7.4327655,7.4327655,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,54.91,-9,-9,1.666666666666667,1,1,0,0,3,5,3,1,298,23279.717,0,0,0,0,0,1312.9318 +5855,7148,12752,12753,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,7.6683731,7.1991992,0,2,-1,18.187838,0,-9,-9,2021,12,0,35,0,1,0,0,6.6833329,6.6833329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.97,53.06,43.79,43.55,3.333333333333333,1,1,0,0,0,10,4,1,1477.5,1768596.8,715625.13,584122.81,0,0,0,3396.4363 +5855,7148,12753,12752,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,7.9783106,7.8398314,0,2,1,33.785835,0,1,2,2021,12,0,30,31,1,0,0,11.142396,11.142396,0,0,0,0,0,0,0,27,1,1,0,0,0,43.79,43.55,46.97,53.06,3.333333333333333,1,1,0,0,12,10,4,1,1477.5,1768596.8,715625.13,584122.81,0,0,0,3396.4363 +5855,7149,12754,-9,12753,12752,1,0,20,0,0,0,2,2,-9,0,3,0,5.0241051,5.4557724,0,0,-916.83002,1,1,1,2021,11,1,0,20,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6389418,0,30.6,62.02,-9,-9,1.666666666666667,1,1,0,0,1,10,2,1,1162,68786.93,0,0,0,0,1086.181,377.89365 +5855,7150,12755,-9,12753,12752,1,1,18,0,0,0,2,2,-9,1,3,0,0,0,0,0,-905.9903,1,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,698,0,0,0,0,0,0,231.60698 +5856,7151,12756,12757,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.7052956,8.427269,0,22,7,-49.760815,0,2,1,2021,17,6,32,42,1,6,0,21.279249,21.279249,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,47.84,52.75,50.49,3.333333333333333,2,3,0,0,12,10,4,1,759.5,1715196.3,882312.88,650772.44,0,0,0,2331.188 +5856,7151,12757,12756,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,0,0,0,22,-7,13.688524,0,1,1,2021,21,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.1255031,0,52.75,50.49,43.84,47.84,6.666666666666667,1,1,1,0,11,10,4,1,759.5,1715196.3,882312.88,650772.44,0,0,0,2331.188 +5857,7152,12758,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.70331,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.85,43.05,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,552,5687.4604,0,0,0,0,2934.0618,583.88336 +5857,7153,12759,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,4,0,0,0,0,0,-942.30377,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,11,1,0,1800,48392.523,0,0,0,0,0,974.62726 +5858,7154,12760,12761,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.824811,5.4369087,48,-1,29.43961,0,-9,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4711366,5.6322722,52.69,48.71,62.39,56.71,8.333333333333334,1,1,0,0,0,8,3,1,982,956635.81,631919.88,233938.06,0,0,0,4762.835 +5858,7154,12761,12760,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.3252983,8.1258812,48,1,-207.53668,0,-9,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0276818,7.8329086,62.39,56.71,52.69,48.71,10,1,1,0,0,0,8,3,1,982,956635.81,631919.88,233938.06,0,0,0,4762.835 +5859,7155,12762,12765,-9,-9,1,1,54,1,2,0,3,3,-9,0,2,8.5320482,8.3330326,0,19,9,55.003521,0,3,3,2021,18,6,56,66,1,6,0,11.240781,11.240781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.03,57.05,33.51,56.37,3.333333333333333,1,1,0,0,9,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12763,-9,12765,12762,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4011,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12764,-9,12765,12762,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.88855,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12765,12762,-9,-9,1,0,45,1,2,0,2,2,-9,1,3,7.8903351,7.9651642,0,19,0,-98.273422,0,1,1,2021,14,5,20,25,1,5,0,14.934278,14.934278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.51,56.37,24.03,57.05,8.333333333333334,4,2,0,0,6,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5860,7156,12766,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1012.9331,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.74,43.48,-9,-9,8.333333333333334,1,1,1,0,1,13,2,0,524,239232.06,0,273319.09,8202.3252,0,0,1163.1239 +5861,7157,12767,12768,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-3,8.6853294,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,31.53,61.28,35.65,8.333333333333334,2,3,0,0,0,7,2,1,942.5,-2757.3281,76922.602,0,0,0,0,1814.1895 +5861,7157,12768,12767,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.6725631,6.4284725,57,3,-41.941269,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5210829,61.28,35.65,55.61,31.53,8.333333333333334,2,3,0,0,0,7,2,1,942.5,-2757.3281,76922.602,0,0,0,0,1814.1895 +5862,7158,12769,-9,12773,12771,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-891.53925,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12770,-9,12773,12771,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.72229,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12771,12773,-9,-9,1,1,44,1,3,0,1,1,-9,0,4,8.19382,8.0046415,0,10,4,88.167427,0,-9,2,2021,7,1,40,16,1,1,0,8.3504419,8.3504419,0,0,.05,0,0,0,0,0,1,1,0,0,0,47.89,46.76,58.33,44.69,8.333333333333334,3,4,0,0,2,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12772,-9,12773,12771,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.4504,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12773,12771,-9,-9,1,0,40,1,3,0,1,1,-9,0,3,0,0,0,10,-4,66.662544,0,3,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,44.69,47.89,46.76,6.666666666666667,3,4,0,0,2,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5863,7159,12774,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,8.2841663,8.1661129,0,0,-1084.4769,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.2895679,61.43,48.88,-9,-9,10,1,1,0,0,0,5,4,1,749,572848.69,0,358728.47,0,0,0,2358.7195 +5864,7160,12775,-9,12776,12778,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.5424,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12776,12778,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.9960952,7.9387784,5.4316406,14,-2,118.61311,0,2,2,2021,6,0,36,1,1,0,0,11.239055,11.239055,0,0,0,0,0,0,0,0,1,1,0,4.953783,0,60.12,54.8,37.11,55.92,8.333333333333334,1,1,0,0,10,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12777,-9,12776,12778,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.75439,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12778,12776,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.4474325,8.6981335,6.9543157,14,2,145.36494,-9,2,2,2021,13,1,43,0,1,1,0,13.609065,13.609065,.05,.05,.05,0,0,0,0,0,1,1,0,7.8389411,0,37.11,55.92,60.12,54.8,5,1,1,0,0,10,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5865,7161,12779,-9,12781,12780,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1036.3291,-9,2,3,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,0,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5865,7161,12780,12781,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.662941,8.2150354,0,9,2,-58.975983,0,-9,-9,2021,11,0,35,43,1,0,0,15.216755,15.216755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,52.45,41.95,10,1,1,0,0,14,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5865,7161,12781,12780,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5298953,7.4972486,0,9,-2,-233.94157,0,-9,2,2021,12,0,23,24,1,0,0,10.789919,10.789919,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.45,41.95,52.91,55.33,8.333333333333334,1,1,0,0,10,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5866,7162,12782,12783,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.3452377,5.6968784,11,4,44.624207,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.3948236,56.34,40.63,53.63,29.98,8.333333333333334,1,1,0,0,0,9,2,1,869.5,190269.25,196669.88,110235.27,0,0,0,813.51941 +5866,7162,12783,12782,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,0,0,11,-4,-92.729774,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,29.98,56.34,40.63,8.333333333333334,1,1,0,0,0,9,2,1,869.5,190269.25,196669.88,110235.27,0,0,0,813.51941 +5867,7163,12784,-9,12787,12786,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.18695,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12785,-9,12787,12786,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1022.5114,-9,2,1,2021,24,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9033793,0,36.37,60.23,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12786,12787,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,8.8614864,8.602047,0,26,5,95.366119,0,2,2,2021,6,0,30,30,1,0,0,28.064209,28.064209,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12787,12786,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.1348181,8.2703009,0,26,-5,-39.56789,0,2,2,2021,7,0,48,75,1,0,0,9.4831543,9.4831543,0,0,0,0,0,0,0,0,1,1,0,6.6640568,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5868,7164,12788,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,5.4248719,5.2335148,0,0,-991.51898,0,-9,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1997938,5.5062809,31.01,21.33,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,750,61543.676,-2231.4966,0,0,0,0,340.11975 +5869,7165,12789,12790,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.3688269,9.5072908,0,10,0,-118.22322,0,-9,-9,2021,6,0,40,40,1,0,0,31.478449,31.478449,.05,.05,.05,0,0,0,0,0,0,0,0,7.9373388,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,12,9,5,1,212,1138231.5,162487.06,499362.72,0,0,0,9462.248 +5869,7165,12790,12789,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.3179903,9.4831896,6.1433368,20,0,-85.484818,0,1,2,2021,5,1,16,20,1,1,0,69.297646,69.297646,0,0,.05,0,0,0,0,7,0,0,0,7.7324004,6.4981494,62.39,56.71,57.16,56.15,10,1,1,0,0,12,9,5,1,212,1138231.5,162487.06,499362.72,0,0,0,9462.248 +5870,7166,12791,12792,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.3798633,7.7541938,0,7,1,-51.443699,0,-9,-9,2021,13,1,24,20,1,1,0,7.4921436,7.4921436,.05,.05,0,0,0,0,0,0,0,0,0,.12837923,0,32.83,45.72,55.34,54.26,6.666666666666667,1,1,0,0,6,9,4,1,1364,38238.152,15486.137,352845.44,271142.5,0,0,2763.2615 +5870,7166,12792,12791,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5214319,8.5414,0,7,-1,25.681595,0,-9,-9,2021,8,0,43,40,1,0,0,12.548488,12.548488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,32.83,45.72,10,1,1,0,0,10,9,4,1,1364,38238.152,15486.137,352845.44,271142.5,0,0,2763.2615 +5871,7167,12793,12794,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,5,-18,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.55,46.23,47.07,53.97,5,1,1,1,1,5,10,1,0,898,208899.66,35168.906,303663.09,0,0,0,1333.0365 +5871,7167,12794,12793,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,5,18,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,47.55,46.23,5,1,1,0,1,1,10,1,0,898,208899.66,35168.906,303663.09,0,0,0,1333.0365 +5872,7168,12795,12796,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,7.8789148,8.0910597,0,24,3,49.339279,0,3,3,2021,6,0,40,42,1,0,0,8.8550978,8.8550978,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,63.53,53.47,44.67,35.01,8.333333333333334,2,3,0,0,8,8,4,1,1904.5,199093.56,23594.68,174766.72,137536.41,0,0,2202.5598 +5872,7168,12796,12795,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.5177612,7.5709729,0,24,-3,-127.35621,0,3,2,2021,20,6,20,20,1,6,0,11.378249,11.378249,0,0,0,0,0,0,0,0,1,1,0,1.7852117,0,44.67,35.01,63.53,53.47,8.333333333333334,2,3,0,0,8,8,4,1,1904.5,199093.56,23594.68,174766.72,137536.41,0,0,2202.5598 +5872,7169,12797,-9,12796,12795,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-957.60193,-9,2,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,60.31,-9,-9,0,2,3,0,0,0,8,1,1,294,-111132.59,0,0,0,0,0,0 +5873,7170,12798,12799,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1247072,7.7189393,36,2,45.669998,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6.3788786,8.1429682,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,3,1,1139.5,1040746.5,678175.38,288542.44,0,0,0,1885.3291 +5873,7170,12799,12798,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.1431394,4.7624507,36,-2,23.818789,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2575703,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1139.5,1040746.5,678175.38,288542.44,0,0,0,1885.3291 +5874,7171,12800,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.1223612,8.4623041,0,0,0,-921.34644,0,2,2,2021,9,0,39,37,1,0,0,14.071778,14.071778,0,0,0,0,0,0,0,0,0,0,0,3.9295313,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,309,87531.672,0,0,0,3412.9592,0,1270.2861 +5875,7172,12801,12803,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.0995932,9.3639841,0,8,4,-83.153763,0,-9,-9,2021,6,0,38,38,1,0,0,36.955254,36.955254,.05,.05,.05,0,0,0,0,0,0,0,0,1.8920391,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7172,12802,-9,12803,12801,1,1,17,0,1,0,2,2,1,0,5,0,4.7147088,4.587945,0,0,-1052.5345,-9,1,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7233787,0,59.43,58.05,-9,-9,10,1,1,1,0,0,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7172,12803,12801,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,9.7724791,9.6377487,0,28,-4,25.810904,0,1,1,2021,9,1,46,50,1,1,0,40.912788,40.912788,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7173,12804,-9,12803,12801,1,1,19,0,1,0,2,2,1,0,5,6.6080451,6.4393053,0,0,0,-1002.6772,-9,1,1,2021,6,0,40,0,1,0,1,2.5369668,2.5369668,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,4,11,2,1,941,0,0,0,0,0,0,-296.75543 +5876,7174,12805,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1078.485,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,.36608386,0,0,1,1,0,0,0,38.24,25.76,-9,-9,5,1,1,0,0,0,4,1,0,596,95018.227,0,128258.02,0,0,0,1832.7438 +5876,7174,12806,-9,-9,12805,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-925.78766,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,23.43,62.51,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,596,95018.227,0,128258.02,0,0,0,1832.7438 +5877,7175,12807,12809,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7158232,8.4095345,0,12,0,-120.58969,0,1,1,2021,14,3,38,37,1,3,0,16.478827,16.478827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,51.49,57.57,8.333333333333334,1,1,0,0,12,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12808,-9,12809,12807,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.8562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12809,12807,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.9274535,8.0970297,0,12,0,-158.15009,0,-9,-9,2021,7,0,30,29,1,0,0,13.394282,13.394282,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.49,57.57,58.32,50.22,8.333333333333334,1,1,0,0,10,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12810,-9,12809,12807,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.39594,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5878,7176,12811,12812,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,7.2693806,7.4971075,0,4,2,39.236675,0,-9,-9,2021,6,0,25,21,1,0,0,6.1936817,6.1936817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,35.96,53.04,6.666666666666667,1,1,0,0,3,12,4,0,172,17751.168,-31583.855,115999.17,134572.47,8138.0454,0,2527.8125 +5878,7176,12812,12811,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.4673195,8.1738939,0,4,-2,-81.723953,0,-9,-9,2021,23,11,38,34,1,11,0,12.292529,12.292529,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.96,53.04,62.39,56.71,3.333333333333333,1,1,0,0,7,12,4,0,172,17751.168,-31583.855,115999.17,134572.47,8138.0454,0,2527.8125 +5879,7177,12813,-9,12816,12814,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.8342,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12814,12816,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,5,13,-59.148655,0,-9,-9,2021,17,5,0,17,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.59,46.91,50.9,51.17,6.666666666666667,2,3,1,0,1,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12815,-9,12816,12814,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.7081,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12816,12814,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.7972021,7.727066,0,5,-13,-2.0550635,0,-9,-9,2021,6,0,30,24,1,0,0,8.1160765,8.1160765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.9,51.17,39.59,46.91,8.333333333333334,2,3,0,0,7,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5880,7178,12817,-9,12818,12820,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1116.7279,-9,2,3,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,55.03,-9,-9,5,2,3,0,0,1,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12818,12820,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.3458872,6.6623936,0,25,-5,23.737822,0,2,2,2021,11,0,6,5,1,0,0,17.934618,17.934618,0,0,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,46.92,43.44,8.333333333333334,2,3,0,0,4,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12819,-9,12818,12820,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.88226,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12820,12818,-9,-9,1,1,47,0,2,0,3,3,-9,0,2,7.2156162,7.6740851,0,25,5,-30.98617,0,3,3,2021,19,7,30,30,1,7,0,7.7372365,7.7372365,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,43.44,54.96,53.17,3.333333333333333,2,3,0,0,11,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12821,-9,12818,12820,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1181.0682,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7179,12822,12823,-9,-9,1,0,24,0,2,0,1,1,-9,0,4,8.2573404,7.7174873,0,1,2,-160.60609,-9,-9,-9,2021,8,0,38,0,1,0,0,11.337319,11.337319,0,0,0,0,0,0,0,0,1,1,0,2.6587768,0,51.83,57.2,40.46,51.25,8.333333333333334,2,3,0,0,3,6,3,0,680,-45512.055,97947.875,94333.266,85846.328,0,392.23547,2448.104 +5880,7179,12823,12822,12818,12820,1,1,22,0,2,0,2,2,-9,0,4,7.3701053,7.3775368,0,1,-2,-86.96032,0,2,2,2021,15,2,18,24,1,2,0,10.372423,10.372423,0,0,.05,0,0,0,0,0,1,1,0,0,0,40.46,51.25,51.83,57.2,5,2,3,0,0,6,6,3,0,680,-45512.055,97947.875,94333.266,85846.328,0,392.23547,2448.104 +5881,7180,12824,12825,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4695692,8.461628,0,28,-3,-45.214092,0,3,2,2021,10,1,58,60,1,1,0,7.2035098,7.2035098,0,0,0,0,0,0,0,7,0,0,0,7.9109507,0,57.16,56.15,56.32,48.68,8.333333333333334,1,1,0,0,9,9,4,1,1879.5,1336103.8,1044972.1,359689.22,0,0,0,3736.5452 +5881,7180,12825,12824,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.2329221,5.9998436,0,28,3,-87.313744,0,2,2,2021,9,0,42,45,1,0,0,1.5019585,1.5019585,.05,.05,0,0,0,0,0,14.5,0,0,0,5.9409623,0,56.32,48.68,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,1879.5,1336103.8,1044972.1,359689.22,0,0,0,3736.5452 +5882,7181,12826,-9,12828,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-905.49774,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12827,-9,12828,-9,1,1,17,0,3,0,3,3,1,0,5,0,0,0,0,0,-972.97241,-9,2,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,67.01000000000001,-9,-9,10,1,1,1,1,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12828,12830,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.9827619,6.9411097,5.4804969,4,-5,34.720612,0,2,2,2021,16,4,17,17,1,4,0,5.0921082,5.0921082,0,0,0,0,0,0,0,0,1,1,0,4.9874582,0,46.08,57.2,58.47,31.46,6.666666666666667,1,1,0,0,3,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12829,-9,12828,-9,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1070.1263,-9,2,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12830,12828,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.5807695,8.6593342,0,4,5,104.84056,0,-9,-9,2021,9,0,37,41,1,0,0,17.619267,17.619267,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,31.46,46.08,57.2,8.333333333333334,1,1,0,1,12,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12831,-9,12828,12830,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.24072,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5883,7182,12832,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.0774727,8.4699678,0,0,-1037.7954,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2989855,8.1735096,50,47,-9,-9,7,1,1,0,0,0,12,4,1,1227,764624.31,558734.75,379890.78,0,3267.4453,0,1318.8108 +5884,7183,12833,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.8552418,8.5834026,0,0,0,-865.59637,0,-9,3,2021,8,0,50,50,1,0,0,11.610582,11.610582,0,0,0,0,0,0,0,2,0,0,0,0,0,55.69,43.19,-9,-9,6.666666666666667,3,4,0,1,10,8,5,1,467,780311.44,41881.48,879229.31,62458.023,0,0,2596.8774 +5885,7184,12834,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7883682,7.9310694,0,0,0,-1101.069,0,3,2,2021,11,1,38,35,1,1,0,7.8790684,7.8790684,.05,.05,0,0,0,0,0,0,0,0,0,1.1651165,0,50.2,55.41,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,864,264373.81,43251.313,52596.086,0,0,0,828.38019 +5886,7185,12835,-9,12837,12839,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.9731,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12836,-9,12837,12839,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.6651,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12837,12839,-9,-9,1,0,31,0,3,0,2,2,-9,1,3,0,0,0,9,-5,0,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.82,53.21,32.04,53.19,3.333333333333333,1,1,0,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12838,-9,12837,12839,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.55835,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12839,12837,-9,-9,1,1,36,0,3,0,2,2,-9,1,2,0,0,0,9,5,0,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,32.04,53.19,33.82,53.21,5,1,1,1,0,5,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5887,7186,12840,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7440281,7.9085126,0,0,0,-1100.818,0,-9,-9,2021,22,7,38,37,1,7,0,7.0005546,7.0005546,0,0,0,0,0,0,0,2,0,0,0,0,0,33.07,41.95,-9,-9,5,1,1,0,1,13,9,3,0,1293,67807.422,-47060.91,0,0,0,0,1777.8539 +5888,7187,12841,-9,-9,-9,1,0,27,0,3,0,1,1,-9,0,2,7.1540046,7.2441564,0,0,0,-1056.4061,0,2,-9,2021,13,2,20,20,1,2,1,6.2042174,6.2042174,0,0,0,0,0,0,0,7,1,1,0,0,0,42.11,29.55,-9,-9,6.666666666666667,3,4,0,0,6,6,3,0,744,79817.125,0,0,0,0,0,1113.6096 +5889,7188,12842,12843,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.798986,8.4608116,0,29,-8,-47.26218,-9,2,3,2021,6,0,25,0,1,0,0,16.448999,16.448999,0,0,0,0,0,0,0,0,0,0,0,.63141853,0,57.16,56.15,58.15,52.91,6.666666666666667,1,1,0,0,10,12,4,1,661,17294.129,-62130.574,0,0,10584.971,-328.12396,2134.699 +5889,7188,12843,12842,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.2587457,7.3938274,0,29,8,-42.826107,-9,2,2,2021,6,0,80,0,1,0,0,1.7338018,1.7338018,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,661,17294.129,-62130.574,0,0,10584.971,-328.12396,2134.699 +5889,7189,12844,-9,12842,12843,1,1,24,0,0,0,2,2,-9,0,4,8.4990559,8.0516768,0,0,0,-1096.2308,-9,2,2,2021,7,0,44,0,1,0,1,10.43048,10.43048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,57,-163667.48,15279.614,54826.191,96586.875,6993.6694,0,2148.8035 +5890,7190,12845,12848,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7030754,8.4736814,0,4,-1,20.628262,0,2,-9,2021,8,2,48,36,1,2,0,16.83197,16.83197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,34.75,65,8.333333333333334,3,4,0,0,14,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12846,-9,12848,12845,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.4631,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12847,-9,12848,12845,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.18945,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12848,12845,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.2243776,8.3073788,0,3,1,-105.93469,-9,-9,-9,2021,17,4,33,0,1,4,0,13.348044,13.348044,.05,.05,0,0,0,0,0,0,1,1,0,1.1282704,0,34.75,65,52.23,55.6,8.333333333333334,3,4,0,1,12,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5891,7191,12849,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.7190428,8.829567,0,4,-18,93.863678,0,2,3,2021,14,2,45,45,1,2,0,16.055546,16.055546,.05,.05,0,0,0,0,0,0,0,0,0,7.8410158,0,50.03,52.62,59.53,56.44,3.333333333333333,2,3,0,0,10,10,5,1,293,-118241.94,9653.3955,0,0,0,0,2765.0273 +5891,7192,12850,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6609678,9.4923887,0,4,18,-49.049549,0,-9,-9,2021,6,0,40,40,1,0,0,41.497932,41.497932,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,50.03,52.62,8.333333333333334,1,1,0,0,7,10,5,1,1415,455809.69,406555.84,245750.69,177393.31,1462.4987,1405.1001,4784.6309 +5892,7193,12851,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.8874855,7.7566943,0,0,-1113.7609,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2999229,8.0529766,44.19,58.01,-9,-9,5,1,1,0,0,0,9,4,1,1004,1112006.9,381264.09,470731.56,0,0,0,6908.5122 +5893,7194,12852,12853,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.2914658,9.3513298,0,9,3,-47.420341,0,2,1,2021,13,2,50,40,1,2,0,23.492609,23.492609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.02,42.12,54.2,57.49,8.333333333333334,2,3,0,0,7,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5893,7194,12853,12852,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7272358,8.5724764,0,9,-3,62.9557,0,2,1,2021,10,1,35,45,1,1,0,20.086792,20.086792,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,58.02,42.12,8.333333333333334,2,3,0,0,5,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5893,7194,12854,-9,12853,12852,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.5587,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5894,7195,12855,12856,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,8.1322489,8.6821394,35,0,-38.026512,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2943692,8.5762291,51.24,58.84,56.18,53.85,8.333333333333334,1,1,0,0,0,9,5,1,861,2266242.3,754135,911125.38,0,0,0,5832.4268 +5894,7195,12856,12855,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.4951916,8.0889187,28,9,40.461029,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7265563,8.4105024,56.18,53.85,51.24,58.84,8.333333333333334,1,1,0,0,0,9,5,1,861,2266242.3,754135,911125.38,0,0,0,5832.4268 +5895,7196,12857,-9,12860,12858,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.90869,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12858,12860,-9,-9,1,1,47,1,2,0,2,2,-9,0,4,8.3377581,8.2825527,0,15,10,-50.623089,0,2,2,2021,4,0,48,44,1,0,0,10.975261,10.975261,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,44.08,41.97,10,1,1,0,0,9,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12859,-9,12860,12858,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12860,12858,-9,-9,1,0,37,1,2,0,2,2,-9,1,3,7.177146,7.1224132,0,16,-10,-80.022659,0,3,-9,2021,10,0,22,21,1,0,0,8.9181423,8.9181423,0,0,0,0,0,0,0,27,1,1,0,0,0,44.08,41.97,57.16,56.15,8.333333333333334,1,1,0,0,9,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5896,7197,12861,12862,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.0109549,7.3146472,10,4,73.490585,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8098589,7.2491689,52.54,54.24,58.88,40.91,8.333333333333334,1,1,0,0,0,10,2,1,698.5,699193.75,12132.871,604882.75,0,0,0,1583.7136 +5896,7197,12862,12861,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,10,-4,-196.31442,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.88,40.91,52.54,54.24,8.333333333333334,1,1,0,0,0,10,2,1,698.5,699193.75,12132.871,604882.75,0,0,0,1583.7136 +5897,7198,12863,-9,-9,-9,1,0,74,0,1,0,1,1,-9,0,3,0,8.4358435,8.4477425,0,0,-778.4519,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3541164,0,0,1,1,0,0,8.3428917,39.15,41.42,-9,-9,6.666666666666667,2,3,0,0,0,5,4,1,209,723131.25,515667.91,243155.97,0,0,0,3027.3481 +5897,7199,12864,12865,12863,-9,1,1,49,0,1,0,1,1,-9,0,3,9.2931871,9.1460886,0,7,3,1.6315818,0,1,-9,2021,18,6,50,50,1,6,0,21.597349,21.597349,.05,.05,0,0,0,0,0,0,1,1,0,8.7512445,0,32.71,49.9,38.5,44.29,3.333333333333333,2,3,0,0,15,5,5,1,419,868863,615286.88,175644.52,119610.63,0,0,5910.457 +5897,7199,12865,12864,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.8625708,7.8260274,0,7,-3,-83.316666,-9,-9,-9,2021,21,9,20,0,1,9,0,10.974672,10.974672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.5,44.29,32.71,49.9,5,2,3,0,0,15,5,5,1,419,868863,615286.88,175644.52,119610.63,0,0,5910.457 +5897,7200,12866,-9,12865,12864,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1101.4486,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,-9,-9,5,2,3,0,1,0,5,1,1,352,75807.406,0,0,0,0,0,0 +5898,7201,12867,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0661173,8.0033875,0,0,0,-1057.7118,0,2,3,2021,6,0,50,45,1,0,0,7.3626523,7.3626523,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,324,-15348.534,0,0,0,0,0,1329.3881 +5899,7202,12868,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.7758169,7.7012019,7.4765687,0,0,-1110.5986,-9,2,2,2021,11,1,8,0,1,1,0,13.119464,13.119464,0,0,0,0,0,0,0,0,1,1,0,7.0075059,0,41.63,49.72,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,145,828463.44,372348.09,436062.56,4994.7603,0,0,506.50745 +5900,7203,12869,12871,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.35149,9.3938999,0,17,4,13.688006,0,2,3,2021,9,0,65,55,1,0,0,17.264635,17.264635,.05,.05,0,0,0,0,0,0,1,1,0,1.5461953,0,57.16,56.15,43.92,62.31,10,1,1,0,0,5,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12870,-9,12871,12869,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1103.7283,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12871,12869,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,9.139987,9.0778236,0,17,-4,60.248806,0,1,1,2021,10,0,50,56,1,0,0,20.121164,20.121164,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12872,-9,12871,12869,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.9119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5901,7204,12873,12874,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,7,-1,0,0,2,1,2021,12,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.8333818,0,47.79,53.79,57.16,56.15,8.333333333333334,1,1,0,0,8,11,1,1,1809.5,-16678.023,113.17041,0,0,0,0,-598.26563 +5901,7204,12874,12873,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,7,1,0,0,1,3,2021,2,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.552362,0,57.16,56.15,47.79,53.79,8.333333333333334,1,1,0,0,7,11,1,1,1809.5,-16678.023,113.17041,0,0,0,0,-598.26563 +5902,7205,12875,12876,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.8869581,8.5323772,7.9285893,39,4,-86.020096,0,-9,-9,2021,8,0,23,20,1,0,0,17.517429,17.517429,.05,.05,0,0,0,0,0,0,1,1,0,5.1480308,7.5726643,55.76,52.64,61.04,39.41,8.333333333333334,1,1,0,0,11,5,4,1,1583.5,1536864,1417267.8,69842.023,4193.4434,0,3190.6157,3821.1011 +5902,7205,12876,12875,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.9823074,7.2180557,39,-4,30.278055,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1613431,6.8509974,61.04,39.41,55.76,52.64,10,1,1,0,0,4,5,4,1,1583.5,1536864,1417267.8,69842.023,4193.4434,0,3190.6157,3821.1011 +5903,7206,12877,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1039.0646,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2684112,0,54.63,58.83,-9,-9,10,1,1,0,0,8,12,2,1,1307,-82876.633,0,0,0,0,0,621.10156 +5904,7207,12878,12879,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,30,-4,-57.460381,0,3,3,2021,22,10,0,19,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8810322,0,31.64,45.11,31.32,45.47,3.333333333333333,1,1,0,0,14,9,4,1,313,1793457.3,996580.13,585253,0,0,0,2046.9388 +5904,7207,12879,12878,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.8170128,8.8509359,0,2,4,-33.747879,0,-9,-9,2021,30,11,47,40,1,11,0,14.658194,14.658194,0,0,0,0,0,0,0,2,1,1,0,1.4961454,0,31.32,45.47,31.64,45.11,5,1,1,0,0,12,9,4,1,313,1793457.3,996580.13,585253,0,0,0,2046.9388 +5905,7208,12880,12881,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5824738,8.473526,0,18,-4,40.699409,0,2,2,2021,11,1,40,35,1,1,0,13.272381,13.272381,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.16,58.62,52,55,8.333333333333334,1,1,0,0,7,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5905,7208,12881,12880,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7696199,8.3870144,0,18,4,101.85799,0,-9,-9,2021,9,0,38,38,1,1,0,18.005835,18.005835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,46.16,58.62,8,1,1,0,0,1,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5905,7208,12882,-9,12880,12881,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.5028,-9,2,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5906,7209,12883,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.123436,8.4265509,0,0,0,-980.28119,0,2,3,2021,14,2,40,42,1,2,0,7.2646766,7.2646766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,706,39111.488,23828.426,0,0,0,7086.0054,1062.3278 +5907,7210,12884,12885,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.8442187,7.7700486,10,10,-108.1412,0,3,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.856101,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,11,5,4,1,740,617647,470133.31,137045.69,0,0,0,3735.0005 +5907,7210,12885,12884,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1166124,8.1500216,0,10,-10,-23.710724,0,3,3,2021,12,3,50,24,1,3,0,7.788415,7.788415,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,6.666666666666667,1,1,0,0,12,5,4,1,740,617647,470133.31,137045.69,0,0,0,3735.0005 +5908,7211,12886,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1048.9705,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.01,21.09,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,682,90149.469,0,0,0,0,0,1576.0491 +5909,7212,12887,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.2634664,7.5711894,0,0,0,-1039.49,0,-9,-9,2021,7,1,25,25,1,1,0,8.9727173,8.9727173,0,0,0,0,0,0,0,0,0,0,0,.9604938,0,55.68,54.24,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,606,98902.078,126361.12,361548.47,11437.915,0,0,1446.8796 +5910,7213,12888,12889,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.4882045,7.5082088,5.0279808,33,-6,121.91489,0,3,3,2021,11,0,20,20,1,0,0,10.31036,10.31036,0,0,0,0,0,0,0,0,1,1,0,6.5846043,5.6436429,57.16,56.15,53,47,8.333333333333334,1,1,0,0,10,9,3,1,771,954818,641515.56,223664.73,0,0,0,1914.897 +5910,7213,12889,12888,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.1170568,5.8713412,28,6,-87.036705,0,3,3,2021,8,0,0,26,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9077806,5.9401212,53,47,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,771,954818,641515.56,223664.73,0,0,0,1914.897 +5910,7214,12890,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4076815,8.3540602,0,0,0,-1055.6232,0,2,2,2021,10,1,60,60,1,1,0,9.4110317,9.4110317,0,0,0,0,0,0,0,0,1,1,0,.81038183,0,56.19,46.16,-9,-9,5,1,1,0,0,10,9,4,1,229,440783.59,133403.44,336063.47,78777.93,0,0,995.09552 +5911,7215,12891,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,6.9688244,6.9409471,0,0,0,-964.07111,0,-9,-9,2021,7,0,20,43,1,0,0,6.9617972,6.9617972,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,10,1,1,0,0,3,11,2,0,214,-101652.49,0,0,0,11171.376,0,626.34888 +5911,7216,12892,12893,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,3,-27.877314,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,1.6120851,0,0,1,1,0,0,0,56.67,26.59,39.69,62.39,8.333333333333334,1,1,0,0,0,11,2,0,436.5,479223.63,219184.59,294549.5,0,0,0,1392.7472 +5911,7216,12893,12892,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,7.0437822,6.947588,8,-3,118.79147,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0027728,39.69,62.39,56.67,26.59,0,1,1,0,0,9,11,2,0,436.5,479223.63,219184.59,294549.5,0,0,0,1392.7472 +5912,7217,12894,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,5.686976,6.3900957,0,0,-907.71887,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9617043,49,48,-9,-9,7,2,3,0,1,0,2,2,1,1451,1081853.9,50320.855,452985.16,0,0,0,201.56799 +5912,7218,12895,-9,-9,-9,1,1,42,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1050.3694,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,1,1,0,2,1,1,469,257034.39,0,0,0,0,-56.434601,282.36087 +5913,7219,12896,-9,12897,12899,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.6116,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12897,12899,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.8378983,8.4656343,0,10,-1,55.122459,0,2,2,2021,13,2,25,26,1,2,0,28.328093,28.328093,.05,.05,0,0,0,0,0,0,0,0,0,2.2384121,0,46.61,39.87,48.81,59.91,6.666666666666667,2,3,0,0,7,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12898,-9,12897,12899,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.16901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12899,12897,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.4474182,9.16399,0,10,1,-33.862591,0,1,1,2021,11,2,49,50,1,2,0,28.839985,28.839985,.05,.05,0,0,0,0,0,0,0,0,0,3.8496463,0,48.81,59.91,46.61,39.87,8.333333333333334,2,3,0,0,7,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5914,7220,12900,12901,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.322504,8.1059265,0,30,-6,41.171593,0,-9,-9,2021,16,5,36,66,1,5,0,10.547145,10.547145,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.85,61.26,59.22,31.99,8.333333333333334,1,1,0,0,10,7,5,1,958,646340.88,100684.34,344921.63,0,0,0,2724.5908 +5914,7220,12901,12900,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4539871,8.2787476,5.4771833,30,6,-23.376907,0,-9,-9,2021,10,0,55,35,1,0,0,10.079592,10.079592,.05,.05,0,0,0,0,0,0,1,0,1,5.966321,5.8637819,59.22,31.99,45.85,61.26,5,1,1,0,0,12,7,5,1,958,646340.88,100684.34,344921.63,0,0,0,2724.5908 +5914,7221,12902,-9,12900,12901,1,1,20,0,0,0,2,2,-9,0,4,8.0007534,7.7844362,0,0,0,-986.70691,0,2,2,2021,12,0,35,40,1,0,1,9.4745712,9.4745712,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,48.48,-9,-9,5,1,1,0,0,4,7,4,1,240,-92490.789,107400.47,0,0,0,132.76314,901.02606 +5914,7222,12903,12904,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8137798,7.6442413,0,1,3,-20.217957,-9,-9,-9,2021,7,1,41,0,1,1,0,6.2148581,6.2148581,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.81,61.51,38.62,54.2,8.333333333333334,1,1,0,0,1,7,4,1,877.5,13534.219,-10187.045,0,0,3433.6685,0,3251.2778 +5914,7222,12904,12903,12900,12901,1,0,28,0,0,0,2,2,-9,0,2,8.6003218,8.3247395,0,1,-3,57.426758,0,2,2,2021,18,5,37,38,1,5,0,12.534135,12.534135,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.62,54.2,45.81,61.51,6.666666666666667,1,1,0,0,9,7,4,1,877.5,13534.219,-10187.045,0,0,3433.6685,0,3251.2778 +5915,7223,12905,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.640975,8.4095716,0,0,0,-1123.6747,0,2,2,2021,4,0,37,37,1,0,0,16.56208,16.56208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,1878,129863.68,152442.45,76424.172,142707.47,0,0,2415.334 +5916,7224,12906,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.0509892,7.3322773,6.6149259,0,0,-1022.6402,0,2,2,2021,13,3,21,19,1,3,0,4.3404865,4.3404865,0,0,0,0,0,0,0,0,1,0,1,7.1532717,0,34.94,53.21,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,3356,109781.39,0,0,0,0,0,1556.3359 +5917,7225,12907,12908,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7592454,6.6458082,7,1,-54.433041,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,7.31323,0,0,1,1,0,4.9861035,6.6526561,51.47,53.17,43.42,62.33,8.333333333333334,1,1,0,0,0,2,3,1,646.5,1068189.6,771023.75,197207.84,0,8591.5684,-691.73657,1870.953 +5917,7225,12908,12907,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.620966,7.1709547,7,-1,76.141457,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0037665,7.4737453,43.42,62.33,51.47,53.17,8.333333333333334,1,1,0,0,0,2,3,1,646.5,1068189.6,771023.75,197207.84,0,8591.5684,-691.73657,1870.953 +5918,7226,12909,-9,-9,-9,1,1,20,0,2,1,2,0,-9,0,5,0,5.6293778,5.836884,0,0,-865.94287,-9,1,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4381952,0,49.02,58.89,-9,-9,6.666666666666667,3,4,0,0,0,4,2,1,433,6684.9683,0,0,0,0,0,496.71527 +5918,7227,12910,-9,-9,-9,1,0,18,0,2,1,2,0,-9,0,3,0,3.4508858,3.5495265,0,0,-924.4339,-9,1,1,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9970801,0,33.08,59.58,-9,-9,3.333333333333333,3,4,0,0,0,4,2,1,1389,13057.735,0,0,0,0,0,-117.77779 +5919,7228,12911,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.8046,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,852,53507.711,0,0,0,0,0,392.0202 +5920,7229,12912,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4580688,8.3118277,0,0,0,-1003.2066,-9,-9,-9,2021,11,0,50,0,1,0,0,10.104315,10.104315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,5,1,1,0,0,8,4,5,0,731,-105263.98,8141.7554,0,0,1602.795,0,2197.2947 +5921,7230,12913,12915,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.9027185,9.0223322,0,6,5,-67.87896,0,-9,-9,2021,23,11,40,48,1,11,0,23.022198,23.022198,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,38.05,54.2,57.49,6.666666666666667,1,1,0,1,8,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12914,-9,12915,12913,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.0826,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12915,12913,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.0450511,6.8011613,0,6,-5,75.360405,0,-9,-9,2021,10,0,33,38,1,0,0,4.0831556,4.0831556,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,43.52,38.05,8.333333333333334,1,1,0,0,3,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12916,-9,12915,12913,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.02527,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12917,-9,12915,12913,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.6983,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7231,12918,-9,-9,-9,1,0,79,0,3,0,3,3,-9,0,3,0,6.4651179,6.319757,0,0,-1047.0333,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,25.672647,0,0,1,1,0,3.8327873,6.4757843,52,45,-9,-9,8,1,1,0,0,0,9,2,1,668,434091.94,190273.08,394455.63,0,2865.2476,947.99823,1403.9373 +5922,7232,12919,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2740202,7.9439073,0,0,-1093.7382,0,1,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8433957,7.9831252,51.83,57.2,-9,-9,10,1,1,0,0,0,12,4,1,349,1044740.6,549379.31,110688.55,0,0,0,2378.4282 +5923,7233,12920,12921,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5352321,7.4460149,0,9,-6,-14.60463,0,-9,-9,2021,6,0,18,21,1,0,0,13.201049,13.201049,.05,.05,0,0,0,0,0,0,1,1,0,7.9204407,0,60.29,52.11,55.76,52.64,10,1,1,0,0,14,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5923,7233,12921,12920,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.1079321,8.1712112,0,21,6,98.298325,0,-9,2,2021,9,0,43,45,1,0,0,9.842761,9.842761,.05,.05,0,0,0,0,0,0,1,1,0,4.0686769,0,55.76,52.64,60.29,52.11,8.333333333333334,1,1,0,0,9,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5923,7233,12922,-9,12920,12921,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5962,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5924,7234,12923,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.6508408,8.5630808,0,0,0,-1127.3822,0,2,2,2021,9,0,33,42,1,0,0,19.76745,19.76745,.05,.05,0,0,0,0,0,0,1,1,0,4.2791109,0,56.35,43.13,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,240,54778.441,140281.55,0,0,0,0,1287.9355 +5925,7235,12924,12925,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,0,0,0,2,3,0,0,2,1,2021,6,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.4628973,0,60.02,56.42,54.1,59.11,10,1,1,1,0,5,4,2,0,573,-119625.05,27509.563,0,0,0,0,-226.10567 +5925,7235,12925,12924,-9,-9,1,0,24,0,0,0,1,1,1,0,5,0,0,0,2,-3,0,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.2236391,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,1,0,1,4,2,0,573,-119625.05,27509.563,0,0,0,0,-226.10567 +5926,7236,12926,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.0283451,8.1159,0,0,0,-906.11261,-9,1,2,2021,11,0,40,0,1,0,0,8.4447441,8.4447441,.05,.05,0,0,0,0,0,0,0,0,0,6.8513236,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,222,24861.414,-36177.281,0,0,0,0,2025.6124 +5927,7237,12927,12928,-9,-9,1,1,41,0,1,0,2,2,-9,1,4,7.8317509,8.0366173,0,6,-8,64.729271,0,2,2,2021,14,2,46,40,1,2,0,7.7468185,7.7468185,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,57.75,50.97,29.49,8.333333333333334,1,1,0,0,7,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12928,12927,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.2640877,7.3974996,0,6,8,60.232754,0,2,2,2021,7,0,30,29,1,0,0,5.5072088,5.5072088,0,0,0,0,0,0,0,0,1,1,0,2.7290962,0,50.97,29.49,47.38,57.75,8.333333333333334,1,1,0,0,5,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12929,-9,12928,12927,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1032.9108,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76710087,0,45.2,57.55,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12930,-9,12928,12927,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.93451,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5928,7238,12931,12932,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,9,0,-74.171997,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.12,19.76,53.93,23.19,3.333333333333333,1,1,0,0,0,11,2,0,671.5,479832.53,168153.17,201812.34,0,0,0,2743.0176 +5928,7238,12932,12931,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.491322,6.3954091,9,9,-33.499741,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9448805,0,0,1,1,0,0,6.7119393,53.93,23.19,42.12,19.76,6.666666666666667,1,1,0,0,0,11,2,0,671.5,479832.53,168153.17,201812.34,0,0,0,2743.0176 +5929,7239,12933,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.9168215,8.9246626,0,0,0,-1097.0198,0,2,2,2021,7,0,37,43,1,0,0,32.525703,32.525703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,239,6899056.5,6411718,228881.98,0,0,0,3205.9688 +5929,7240,12934,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.4325895,8.5756588,0,0,0,-992.73438,0,-9,-9,2021,15,2,37,37,1,2,0,15.597046,15.597046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.28,69.3,-9,-9,3.333333333333333,1,1,0,0,4,5,5,1,783,50494.582,297234.19,0,0,4822.1841,1054.5653,1945.2614 +5930,7241,12935,12937,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,6.9922447,7.1137033,0,22,-7,6.6427002,0,3,2,2021,10,0,15,18,1,0,0,10.000461,10.000461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,58.34,49.29,54.59,5,2,3,0,0,10,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12936,-9,12935,12937,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.50586,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12937,12935,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,6.8039021,6.9255161,0,7,7,100.01321,-9,-9,-9,2021,14,2,70,0,1,2,0,1.8742378,1.8742378,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,34.79,58.34,3.333333333333333,2,3,0,1,10,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12938,-9,12935,12937,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.31293,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12939,-9,12935,12937,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.94214,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5931,7242,12940,12941,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3254757,7.6062493,12,-13,-17.839363,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8502045,43.35,52.88,36.12,48.42,5,4,2,0,0,8,4,4,1,451,1563643.5,961283.31,381900.13,0,2294.1299,0,2967.7261 +5931,7242,12941,12940,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6212234,8.1709347,39,13,87.88662,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0945644,36.12,48.42,43.35,52.88,8.333333333333334,1,1,0,0,8,4,4,1,451,1563643.5,961283.31,381900.13,0,2294.1299,0,2967.7261 +5931,7243,12942,-9,12940,12941,1,1,23,0,0,0,2,2,-9,0,3,0,5.1166153,4.7108655,0,0,-938.5813,0,1,1,2021,18,7,0,34,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8720226,0,24.32,60.54,-9,-9,3.333333333333333,4,2,0,0,2,4,2,1,325,-60459.992,0,0,0,0,0,671.50018 +5932,7244,12943,12944,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.6035585,8.3542633,10,0,-86.90242,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9377818,8.4684753,53,47,40.06,32.53,8,1,1,0,0,0,6,4,1,696,1163554,686617.44,343572.81,0,0,0,2852.5439 +5932,7244,12944,12943,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,10,0,-76.449905,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,16.946802,0,0,1,1,0,1.9148531,0,40.06,32.53,53,47,6.666666666666667,1,1,0,0,0,6,4,1,696,1163554,686617.44,343572.81,0,0,0,2852.5439 +5932,7245,12945,-9,12944,12943,1,1,47,0,0,0,2,2,-9,0,3,8.5132093,8.3562984,0,0,0,-1050.7568,0,2,2,2021,10,0,42,44,1,0,0,13.649648,13.649648,.05,.05,0,0,0,0,0,0,1,1,0,.39069936,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,573,495590.66,142977.19,53472.875,61207.414,0,0,1571.9526 +5933,7246,12946,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.9179406,4.8745313,0,0,-985.03137,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,14.658642,15.509806,127.97797,0,1,1,0,5.2093706,5.4809117,48.38,49.66,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,415,-55309.551,0,0,0,0,0,768.63086 +5933,7247,12947,-9,12946,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-935.72906,0,2,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.02,20.85,-9,-9,6.666666666666667,1,1,0,0,6,13,1,1,300,54097.777,125088.23,157996.27,84743.961,15374.673,0,112.73253 +5933,7248,12948,-9,12946,-9,1,0,47,0,0,0,2,2,-9,1,1,7.1878319,7.0840468,0,0,0,-984.89648,0,2,3,2021,30,12,27,27,1,12,0,5.4463177,5.4463177,.05,.05,0,0,0,0,0,7,1,1,0,0,0,23.01,37.17,-9,-9,0,1,1,0,1,8,13,3,1,591,117163.32,-116825.7,0,0,9480.8506,0,856.72571 +5934,7249,12949,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5157194,8.117631,0,0,0,-965.7038,0,-9,-9,2021,5,0,45,40,1,0,0,9.7228508,9.7228508,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,15,7,5,1,534,501765.16,60676.145,291281.59,0,0,0,2089.5867 +5935,7250,12950,12951,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,0,0,0,36,-2,-51.306225,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,7.7684908,0,53.23,55.33,53,54,8.333333333333334,1,1,0,0,0,10,5,1,1298,2850669.5,1773879,686821.63,0,0,0,4207.6079 +5935,7250,12951,12950,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4699974,8.825139,7.8684478,9,2,89.473373,0,-9,-9,2021,9,0,40,20,1,1,0,11.840563,11.840563,0,0,0,0,0,0,0,0,0,0,0,0,7.7333469,53,54,53.23,55.33,8,1,1,0,0,1,10,5,1,1298,2850669.5,1773879,686821.63,0,0,0,4207.6079 +5936,7251,12952,12953,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.6373596,7.5805974,0,7,2,80.472832,0,2,2,2021,21,7,23,23,1,7,0,10.739018,10.739018,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.73,47.1,51.83,57.2,5,1,1,0,0,8,11,5,1,304.5,1211234.3,1211252.3,107714.97,94204.07,7526.8848,13239.908,2905.906 +5936,7251,12953,12952,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.9178276,8.810195,0,7,-2,132.42056,0,3,3,2021,7,0,60,50,1,0,0,14.137844,14.137844,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.73,47.1,5,1,1,0,0,8,11,5,1,304.5,1211234.3,1211252.3,107714.97,94204.07,7526.8848,13239.908,2905.906 +5937,7252,12954,12955,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.5353432,8.6249294,0,19,-1,54.272739,0,1,1,2021,9,0,38,43,1,0,0,20.219748,20.219748,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,54.21,51.96,8.333333333333334,1,1,0,0,11,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12955,12954,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,8.9559832,9.1877518,0,19,1,29.057499,0,2,2,2021,10,0,50,45,1,0,0,21.286997,21.286997,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.21,51.96,44.02,60.7,8.333333333333334,1,1,0,0,11,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12956,-9,12954,12955,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.66003,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12957,-9,12954,12955,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.90411,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12958,-9,12954,12955,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1067.2961,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5938,7253,12959,12960,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,38,5,73.680168,0,2,2,2021,9,1,0,16,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,45.88,60.02,56.42,5,2,3,0,0,10,8,3,0,2567,98951.266,61338.578,0,0,0,0,976.90295 +5938,7253,12960,12959,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.5564427,7.8464789,0,38,-5,-133.51949,0,-9,1,2021,8,0,33,33,1,0,0,7.9276533,7.9276533,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49.67,45.88,10,1,1,0,0,6,8,3,0,2567,98951.266,61338.578,0,0,0,0,976.90295 +5938,7254,12961,-9,12959,12960,1,1,32,0,0,0,1,1,-9,0,3,7.6030884,7.7307811,0,0,0,-1083.7979,0,2,1,2021,13,2,38,36,1,2,1,6.5996737,6.5996737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.03,53.83,-9,-9,5,4,2,0,0,10,8,4,0,186,40361.992,73561.57,0,0,0,0,1516.9435 +5939,7255,12962,-9,-9,12964,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.4584,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5939,7255,12963,-9,-9,12964,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.68604,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5939,7255,12964,-9,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.2315779,9.5418711,0,0,0,-1085.7324,0,3,3,2021,6,0,40,45,1,0,0,28.105375,28.105375,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5940,7256,12965,12968,-9,-9,1,1,29,2,2,0,2,2,-9,0,4,8.8393145,9.0616989,0,5,2,-113.20438,-9,-9,2,2021,7,0,48,0,1,0,0,19.08094,19.08094,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.08,57.2,10,4,2,0,0,9,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12966,-9,12968,12965,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.347,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12967,-9,12968,12965,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.20166,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12968,12965,-9,-9,1,0,27,2,2,0,1,1,-9,0,3,0,0,0,5,-2,-77.627129,0,-9,-9,2021,10,0,0,16,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,62.49,55.09,8.333333333333334,1,1,0,0,5,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5941,7257,12969,-9,12971,12970,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.33948,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5941,7257,12970,12971,-9,-9,1,1,61,0,1,0,1,1,-9,0,5,8.8471937,8.6082926,0,9,12,19.496099,0,-9,-9,2021,7,0,10,40,1,0,0,69.249916,69.249916,.05,.05,.05,0,0,0,0,0,1,1,0,3.1927247,0,58.05,54.52,51.83,57.2,0,1,1,0,0,8,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5941,7257,12971,12970,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.9642758,8.8074198,8.0250759,25,-12,117.8297,0,2,1,2021,11,0,20,19,1,0,0,20.518658,20.518658,0,0,.05,0,0,0,0,0,1,1,0,6.6304827,8.6066761,51.83,57.2,58.05,54.52,6.666666666666667,1,1,0,0,11,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5942,7258,12972,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1084.131,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,9,1,0,3147,384214,0,325379.34,0,0,0,875.04517 +5943,7259,12973,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0227852,8.1400166,0,0,0,-985.9444,0,-9,-9,2021,9,1,40,48,1,1,0,9.4146404,9.4146404,0,0,0,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,6.666666666666667,1,1,0,1,7,1,4,0,423,61402.004,0,0,0,0,0,1348.8322 +5944,7260,12974,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5442042,7.5593929,0,0,-927.45081,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,4.1880012,7.8401833,57.27,35.61,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,309,1240384.1,327797.75,428250.53,0,0,0,1154.3397 +5945,7261,12975,12976,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.5127974,8.3159103,0,12,-2,66.800873,0,2,2,2021,7,0,64,30,1,0,0,8.1879883,8.1879883,0,0,0,0,0,0,0,2,0,0,0,7.6432271,0,51.73,58.82,60.52,53.2,8.333333333333334,1,1,0,0,10,8,5,1,735,3445110,590563.25,540409.75,0,0,0,9215.5781 +5945,7261,12976,12975,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5351162,9.8585491,0,12,2,-14.014338,0,2,2,2021,7,0,55,55,1,0,0,27.326366,27.326366,0,0,0,0,0,0,0,0,0,0,0,5.479763,0,60.52,53.2,51.73,58.82,8.333333333333334,1,1,0,0,11,8,5,1,735,3445110,590563.25,540409.75,0,0,0,9215.5781 +5946,7262,12977,12978,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,9.2368813,9.3591242,0,7,3,10.355533,0,-9,-9,2021,7,0,35,40,1,0,0,35.233376,35.233376,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.63,35.75,8.333333333333334,1,1,0,0,10,8,5,1,1393,38931.246,41902.617,0,0,1254.5958,1483.3213,4356.4639 +5946,7262,12978,12977,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.2878094,8.0388269,0,7,-3,24.822031,0,2,2,2021,22,9,42,15,1,9,0,7.0875607,7.0875607,0,0,0,0,0,0,0,0,0,0,0,2.5857821,0,42.63,35.75,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,1393,38931.246,41902.617,0,0,1254.5958,1483.3213,4356.4639 +5947,7263,12979,-9,12980,12981,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.0731,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12980,12981,-9,-9,1,0,25,2,2,0,2,2,-9,0,5,6.9325037,6.9933124,3.2029371,4,-7,-90.170013,0,-9,-9,2021,17,6,16,12,1,6,0,8.819294,8.819294,.05,.05,0,0,0,0,0,0,1,1,0,2.9384198,0,46.06,60.24,51.24,58.84,6.666666666666667,1,1,0,0,3,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12981,12980,-9,-9,1,1,32,2,2,0,2,2,-9,0,4,8.4032288,8.3826456,0,4,7,-78.213524,0,2,2,2021,7,0,60,80,1,0,0,10.22388,10.22388,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.06,60.24,6.666666666666667,1,1,0,0,9,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12982,-9,12980,12981,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-862.11572,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5948,7264,12983,12984,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5133457,7.3731165,7,-4,-6.7818589,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2076039,7.2154469,54.2,57.49,60.28,43.74,1.666666666666667,1,1,0,0,7,10,4,1,522,1051650.9,560856.38,485096.25,0,14116.191,0,3458.1807 +5948,7264,12984,12983,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.0008917,7.6173768,7,4,-118.64264,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5559292,8.0774593,60.28,43.74,54.2,57.49,8.333333333333334,1,1,0,0,9,10,4,1,522,1051650.9,560856.38,485096.25,0,14116.191,0,3458.1807 +5948,7265,12985,-9,12983,12984,1,1,47,0,0,0,1,1,-9,0,4,8.120882,8.4093046,0,0,0,-1033.8749,0,2,2,2021,6,0,50,43,1,0,0,8.4366598,8.4366598,0,0,.05,0,0,0,0,0,1,1,0,0,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,640,489890.28,119859.6,601402.75,273798.41,0,0,1084.3575 +5949,7266,12986,12987,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1539516,5.8512354,53,-3,-57.911228,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3551652,5.585731,57.16,56.15,61.12,51.57,10,1,1,0,0,0,11,2,1,497,364972.09,201959.89,122003.38,0,3891.5996,0,2273.2261 +5949,7266,12987,12986,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3495455,7.3721733,53,3,-19.206528,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2497125,61.12,51.57,57.16,56.15,10,1,1,0,0,0,11,2,1,497,364972.09,201959.89,122003.38,0,3891.5996,0,2273.2261 +5950,7267,12988,12989,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6296749,8.3279657,0,7,-1,45.705872,0,2,3,2021,6,0,48,55,1,0,0,13.800451,13.800451,.05,.05,0,0,0,0,0,0,0,0,0,3.2642932,0,57.06,57.76,51.25,50.81,8.333333333333334,1,1,0,0,8,1,5,1,1332.5,251595.03,94567.523,76835.383,0,1037.8905,3289.064,3669.5825 +5950,7267,12989,12988,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1741886,8.2152596,0,7,1,-6.3063092,0,1,2,2021,12,2,35,35,1,2,0,16.167465,16.167465,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,57.06,57.76,6.666666666666667,1,1,0,0,8,1,5,1,1332.5,251595.03,94567.523,76835.383,0,1037.8905,3289.064,3669.5825 +5951,7268,12990,12991,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,8.272027,8.3071957,9,0,-24.07723,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2798033,52.33,34.34,50.75,39.21,8.333333333333334,1,1,0,0,0,13,4,1,789.5,1225002,903380,74472.68,0,0,0,4040.6895 +5951,7268,12991,12990,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,9,0,-87.042236,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,52.33,34.34,8.333333333333334,1,1,0,0,9,13,4,1,789.5,1225002,903380,74472.68,0,0,0,4040.6895 +5952,7269,12992,12993,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.8796244,8.1135302,0,1,2,-33.240643,-9,-9,-9,2021,10,2,39,0,1,2,0,10.312727,10.312727,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.42,62.33,8.333333333333334,1,1,0,0,3,5,4,1,308.5,11367.844,0,0,0,458.42673,0,2145.7146 +5952,7269,12993,12992,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.7860699,8.0262947,0,1,-2,26.280493,-9,-9,-9,2021,14,2,42,0,1,2,0,7.520359,7.520359,0,0,0,0,0,0,0,2,0,0,0,0,0,43.42,62.33,54.1,59.11,6.666666666666667,1,1,0,1,3,5,4,1,308.5,11367.844,0,0,0,458.42673,0,2145.7146 +5953,7270,12994,12995,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.8910174,6.4612408,48,-1,63.219017,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3573408,6.464509,45.97,51.9,56.86,50.75,0,1,1,0,0,0,9,2,1,620,480846.25,145522.7,279230.5,0,0,0,3126.7166 +5953,7270,12995,12994,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,2.0201101,2.011327,45,1,-89.557961,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.77566,2.0039794,56.86,50.75,45.97,51.9,8.333333333333334,1,1,0,0,8,9,2,1,620,480846.25,145522.7,279230.5,0,0,0,3126.7166 +5954,7271,12996,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.4485254,7.6276126,0,0,-996.09167,0,-9,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1068602,7.2589321,51.64,49.54,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,837,738043.94,269273.5,223275.91,0,0,0,4949.3047 +5955,7272,12997,12998,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.1020451,9.3798456,0,19,-1,87.59758,0,3,3,2021,6,0,38,38,1,0,0,28.85519,28.85519,.05,.05,0,0,0,0,0,0,0,0,0,8.1403112,0,58.75,51.28,49.92,44.62,8.333333333333334,2,3,0,0,8,12,5,1,549.5,896352.13,478553,334467.78,93764.648,8840.625,0,4982.5811 +5955,7272,12998,12997,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.2338085,8.2591562,0,19,1,-22.828451,0,2,2,2021,10,0,39,38,1,0,0,11.128041,11.128041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.92,44.62,58.75,51.28,8.333333333333334,2,3,0,0,7,12,5,1,549.5,896352.13,478553,334467.78,93764.648,8840.625,0,4982.5811 +5956,7273,12999,13000,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.0148811,8.0642891,0,4,3,-65.599792,0,2,2,2021,6,0,42,40,1,0,0,6.857996,6.857996,0,0,0,0,0,0,0,2,1,0,1,.11249166,0,53.36,53.7,59.56,37.69,8.333333333333334,1,1,0,0,12,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5956,7273,13000,12999,-9,-9,1,0,36,1,1,0,2,2,-9,0,2,0,0,0,4,-3,155.83598,0,-9,-9,2021,7,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.56,37.69,53.36,53.7,8.333333333333334,1,1,0,0,3,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5956,7273,13001,-9,13000,12999,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.67181,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5957,7274,13002,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.1414318,7.0717282,0,0,-1000.6557,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7226411,7.116611,53,44,-9,-9,8,1,1,0,0,0,11,2,0,805,84851.789,25814.328,146678.44,0,0,0,1132.297 +5958,7275,13003,13004,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.927145,6.9456701,51,2,-20.634647,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.268095,53,46,51,46,8,2,3,0,0,7,4,3,1,1254.5,133888.98,5978.5518,143235.89,25980.305,0,0,2659.2424 +5958,7275,13004,13003,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.975986,6.4056001,51,-2,-42.574993,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.7623487,51,46,53,46,8,1,1,0,0,0,4,3,1,1254.5,133888.98,5978.5518,143235.89,25980.305,0,0,2659.2424 +5959,7276,13005,13007,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,7.6628046,7.7428503,0,2,5,-12.370837,0,2,2,2021,12,0,52,38,1,0,0,5.7788992,5.7788992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,55.41,46,58,5,1,1,0,0,8,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5959,7276,13006,-9,13007,13005,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.27081,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5959,7276,13007,13005,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,7.5881267,7.4125457,0,2,-5,.41186801,0,-9,-9,2021,12,0,33,24,1,2,0,6.0640278,6.0640278,.05,.05,0,0,0,0,0,0,1,1,0,2.6046073,0,46,58,47.27,55.41,7,4,1,0,0,1,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5960,7277,13008,13009,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.574501,7.46627,0,25,-7,-83.908142,0,2,2,2021,8,0,30,30,1,0,0,7.5915384,7.5915384,0,0,0,0,0,0,0,2,1,1,0,0,0,60.69,50.51,36.96,26.57,8.333333333333334,1,1,0,0,8,1,2,0,467.5,21017.109,0,-17318.902,47650.523,5496.3145,435.1123,947.40961 +5960,7277,13009,13008,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,0,0,25,7,-60.378437,0,3,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.96,26.57,60.69,50.51,0,1,1,1,1,0,1,2,0,467.5,21017.109,0,-17318.902,47650.523,5496.3145,435.1123,947.40961 +5961,7278,13010,13011,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,9.6092691,8.8602018,48,3,-66.978905,0,3,-9,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,1,0,7.7533913,0,0,1,1,0,9.098753,4.3077459,60.11,17.32,62.26,42.8,6.666666666666667,1,1,0,0,0,10,5,1,1211.5,1787621.8,1645731.4,185780.88,0,0,0,7248.8369 +5961,7278,13011,13010,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.874671,8.1967831,4.7185521,48,-3,142.63005,0,2,2,2021,10,1,31,38,1,1,0,9.9113483,9.9113483,0,0,0,0,0,0,0,2,1,1,0,4.4792371,4.9246883,62.26,42.8,60.11,17.32,8.333333333333334,1,1,0,0,14,10,5,1,1211.5,1787621.8,1645731.4,185780.88,0,0,0,7248.8369 +5962,7279,13012,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9744267,7.538012,0,0,0,-1027.2123,0,3,2,2021,18,6,39,52,1,6,0,8.6743536,8.6743536,.05,.05,0,0,0,0,0,7,1,1,0,0,0,31.17,58.5,-9,-9,3.333333333333333,1,1,0,0,11,12,4,0,761,86762.656,161116.45,0,0,52.920155,0,1149.5652 +5963,7280,13013,13014,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.931951,5.9063301,8,2,7.3652639,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6091237,5.8638167,60.47,41.03,54.79,55.86,8.333333333333334,1,1,0,0,1,7,4,1,406,2934496.8,1301708.5,832571.13,0,0,0,4197.1592 +5963,7280,13014,13013,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.6864481,8.8067884,8,-2,92.028389,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4845529,8.3502035,54.79,55.86,60.47,41.03,8.333333333333334,1,1,0,0,4,7,4,1,406,2934496.8,1301708.5,832571.13,0,0,0,4197.1592 +5964,7281,13015,13016,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8080802,7.7660146,6,2,64.312805,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.511754,8.059886,37.93,56.64,51,52.08,6.666666666666667,1,1,0,0,0,4,4,1,1115,2777617.3,1360570.8,407093.53,0,0,0,4269.0181 +5964,7281,13016,13015,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.394309,8.2578859,6,-2,-74.444176,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.826591,8.3202887,51,52.08,37.93,56.64,8.333333333333334,1,1,0,0,0,4,4,1,1115,2777617.3,1360570.8,407093.53,0,0,0,4269.0181 +5965,7282,13017,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,5.514163,5.154604,0,0,-1084.7931,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,12.589614,0,0,1,1,0,3.9132359,5.1607919,29.02,23.4,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,694,163965.5,0,0,0,0,0,2049.9067 +5966,7283,13018,13019,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.5642462,8.395853,0,11,0,-71.740936,0,2,2,2021,10,1,40,69,1,1,0,16.295664,16.295664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.27,56.95,1.666666666666667,1,1,0,0,12,2,5,1,634.5,236173,225455.31,228943.06,158270.34,61127.055,0,2559.0305 +5966,7283,13019,13018,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.8230972,7.7060881,0,11,0,65.188217,-9,2,2,2021,12,2,28,0,1,2,0,5.9444361,5.9444361,.05,.05,0,0,0,0,0,0,0,0,0,3.5194106,0,49.27,56.95,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,634.5,236173,225455.31,228943.06,158270.34,61127.055,0,2559.0305 +5967,7284,13020,13023,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,9.1124296,8.8369875,0,19,0,42.635246,0,2,2,2021,12,3,44,42,1,3,0,23.687857,23.687857,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.06,60.24,51.14,60.45,8.333333333333334,1,1,0,0,12,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13021,-9,13023,13020,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.92999,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13022,-9,13023,13020,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.7645,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13023,13020,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7067146,8.3455095,0,19,0,-146.76015,0,2,3,2021,9,0,32,30,1,0,0,21.945854,21.945854,0,0,0,0,0,0,0,0,1,1,0,1.7959218,0,51.14,60.45,46.06,60.24,10,1,1,0,0,12,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5968,7285,13024,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.9066701,6.9151449,0,0,-966.28717,0,-9,-9,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,14.510838,0,14.5,1,1,0,0,6.8391886,43.85,27.32,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,433,477378.88,-13394.682,132046.36,0,0,0,1613.0284 +5968,7286,13025,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.1244268,8.3943052,0,0,0,-1046.4387,-9,-9,-9,2021,10,0,40,0,1,1,0,11.718309,11.718309,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,2,4,1,143,-163278.61,0,0,0,5371.2896,0,812.11133 +5969,7287,13026,13027,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,3.8066506,3.9171653,12,3,-46.358776,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1359868,62.1,51.16,57.06,57.76,8.333333333333334,1,1,0,0,1,11,2,1,1212,15679.43,64545.836,0,0,0,0,1377.7889 +5969,7287,13027,13026,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,5.5138254,5.1737328,12,-3,-6.915597,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4474959,57.06,57.76,62.1,51.16,8.333333333333334,1,1,0,0,3,11,2,1,1212,15679.43,64545.836,0,0,0,0,1377.7889 +5970,7288,13028,13031,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.4297881,10.323249,9.913909,18,0,135.68272,0,2,1,2021,1,0,40,40,1,0,0,5.1281557,5.1281557,.05,.05,0,0,0,0,0,0,1,1,0,10.395297,0,60.29,52.11,52,54.51,8.333333333333334,1,1,0,0,13,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13029,-9,13031,13028,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-978.57556,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13030,-9,13031,13028,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0947,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13031,13028,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.132103,8.4622488,0,18,0,33.616642,0,2,2,2021,8,1,30,30,1,1,0,10.025087,10.025087,.05,.05,0,0,0,0,0,0,1,1,0,7.2385216,0,52,54.51,60.29,52.11,6.666666666666667,3,4,0,0,13,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5971,7289,13032,13033,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.021841,9.3010111,0,6,-2,-14.824611,0,2,2,2021,13,1,50,48,1,1,0,20.019327,20.019327,.05,.05,.05,0,0,0,0,0,1,1,0,6.0225334,0,37.07,47.79,50.21,41.87,3.333333333333333,1,1,0,0,9,4,5,1,600,1942287.3,715430.19,343061.31,35758.852,0,0,5318.6611 +5971,7289,13033,13032,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,8.4872208,8.3859339,0,6,2,110.28748,0,2,2,2021,12,4,37,41,1,4,0,12.902775,12.902775,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,41.87,37.07,47.79,8.333333333333334,1,1,0,0,8,4,5,1,600,1942287.3,715430.19,343061.31,35758.852,0,0,5318.6611 +5972,7290,13034,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,7.281621,6.8013678,0,0,-1017.9594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5518332,7.3217387,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,5499,202737.3,37314.375,118194.32,0,0,0,2204.2454 +5973,7291,13035,13036,-9,-9,1,0,61,0,0,0,3,3,-9,1,3,0,0,0,9,-1,-20.751385,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,54.79,55.86,7,1,1,0,0,0,5,2,0,426.5,655426.75,404447.19,280000,0,0,0,2548.6956 +5973,7291,13036,13035,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.036036,6.969326,0,9,1,43.343136,0,3,3,2021,8,0,12,12,1,0,0,13.9933,13.9933,0,0,0,0,0,0,0,114,1,1,0,0,0,54.79,55.86,48,48,10,1,1,0,0,10,5,2,0,426.5,655426.75,404447.19,280000,0,0,0,2548.6956 +5974,7292,13037,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8886137,7.8634591,0,0,0,-1006.756,0,2,3,2021,10,0,40,40,1,0,0,7.6620727,7.6620727,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.94,37.34,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,210,129952.61,-25553.809,0,0,0,0,1190.0906 +5975,7293,13038,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.044425,7.576417,0,0,0,-1010.8611,-9,-9,-9,2021,12,0,35,0,1,2,0,9.4531898,9.4531898,.05,.05,0,0,0,0,0,0,0,0,0,.96327001,0,45,59,-9,-9,7,1,1,0,0,2,9,4,1,3223,117312.98,49358.168,0,0,5841.4868,1754.6915,594.1156 +5976,7294,13039,13040,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.5571909,8.6109161,0,3,-1,61.649117,0,-9,2,2021,8,0,37,38,1,0,0,16.118202,16.118202,0,0,0,0,0,0,0,0,1,1,0,.13860442,0,49.96,56.89,44.02,60.7,8.333333333333334,1,1,0,0,6,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7294,13040,13039,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,0,0,0,21,1,45.373596,0,3,2,2021,14,2,0,18,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.02,60.7,49.96,56.89,8.333333333333334,1,1,0,0,8,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7294,13041,-9,13040,13039,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.56116,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7295,13042,-9,13040,13039,1,1,18,0,1,0,2,2,-9,0,4,5.2749448,5.2959809,0,0,0,-1047.0033,-9,2,2,2021,11,0,37,0,1,2,1,.61100316,.61100316,0,0,0,0,0,0,0,0,1,1,0,3.2378228,0,48,59,-9,-9,7,1,1,0,0,1,9,2,1,709,-73181.039,0,0,0,35691.719,0,1068.1799 +5977,7296,13043,13044,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,23,-1,148.05716,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30124,0,41,42.2,37.3,31.79,8.333333333333334,1,1,0,0,0,12,2,1,1700.5,319402,-34779.805,163653.61,0,0,0,1721.452 +5977,7296,13044,13043,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.5065527,6.4943218,13,1,-31.462328,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8833132,6.2866297,37.3,31.79,41,42.2,8.333333333333334,1,1,0,0,0,12,2,1,1700.5,319402,-34779.805,163653.61,0,0,0,1721.452 +5978,7297,13045,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.9279919,8.8329191,6.0910211,0,0,-982.79028,0,3,2,2021,12,0,47,53,1,0,0,14.391238,14.391238,0,0,0,0,0,0,0,0,0,0,0,4.6888843,6.6210289,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,1750,866825.44,828446.06,70564.563,0,1803.5894,0,2901.1746 +5978,7298,13046,-9,-9,13045,1,0,21,0,0,0,2,2,1,0,4,7.19455,7.225534,0,0,0,-1084.7424,-9,1,1,2021,11,0,48,0,1,2,1,3.528836,3.528836,.05,.05,0,0,0,0,0,0,0,0,0,1.8130783,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,375,121448.98,-20739.391,0,0,0,0,873.31537 +5979,7299,13047,13048,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,0,0,16,3,-58.169525,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,7.4066792,0,0,1,1,0,4.987401,0,48.22,21.45,60.87,18.17,8.333333333333334,1,1,0,0,0,5,2,1,829.5,291411.25,51865.066,247130.53,0,0,0,1973.8289 +5979,7299,13048,13047,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.9705787,6.2793746,18,-3,119.51021,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.8944182,10.448675,20.426008,2,1,1,0,.39080209,6.034996,60.87,18.17,48.22,21.45,8.333333333333334,1,1,0,0,0,5,2,1,829.5,291411.25,51865.066,247130.53,0,0,0,1973.8289 +5980,7300,13049,-9,13050,13052,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.5245,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13050,13052,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,0,0,0,6,5,-25.077351,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5543671,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13051,-9,13050,13052,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.62885,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13052,13050,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,8.6228342,8.8095121,0,6,-5,20.109753,0,-9,-9,2021,8,0,38,37,1,0,0,17.542192,17.542192,.05,.05,0,0,0,0,0,0,1,1,0,.55256593,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,6,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5981,7301,13053,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6412501,7.2616405,0,0,0,-1072.9086,0,2,3,2021,8,0,36,29,1,0,0,5.0882173,5.0882173,.05,.05,0,0,0,0,0,7,1,1,0,0,0,61.19,42.11,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,544,-17758.186,46893.629,0,0,0,0,362.66449 +5982,7302,13054,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,9.1242313,9.1521807,0,0,0,-1027.5859,0,2,1,2021,10,0,40,50,1,0,0,35.141682,35.141682,.05,.05,0,0,0,0,0,0,1,1,0,1.0756572,0,52.26,51.57,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,353,1009992.8,196603.06,890943.25,417188.78,22955.939,0,2604.7839 +5983,7303,13055,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,6.9802642,7.6021214,6.3964319,0,0,-1132.7128,-9,2,-9,2021,13,1,25,0,1,1,0,6.8459258,6.8459258,0,0,0,0,0,0,0,0,1,1,0,4.5115571,6.4941425,42.22,45.38,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,495,189173.78,365879.19,166247.53,0,329.70801,-447.79242,1595.8459 +5984,7304,13056,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.0653749,5.8434358,0,0,-979.55981,0,3,1,2021,31,11,0,0,4,11,0,0,0,0,0,0,1,73.630051,69.965164,743.0683,0,1,1,0,0,5.6747484,30.85,17.26,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,2500,85703.797,-18086.479,0,0,0,0,1628.9999 +5984,7305,13057,-9,13056,-9,1,1,42,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1065.3718,-9,2,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.0838418,0,23.13,63.87,-9,-9,3.333333333333333,1,1,0,1,9,11,1,0,2592,148576.97,0,0,0,0,0,-674.27289 +5985,7306,13058,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.7963629,7.0917253,0,0,-948.1593,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8573318,57.06,57.76,-9,-9,10,1,1,0,0,0,9,2,1,534,531948.31,239681.8,275971.53,0,0,0,969.1557 +5986,7307,13059,13061,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.669589,8.5769749,0,10,-1,75.671959,0,2,2,2021,5,0,44,40,1,0,0,11.996811,11.996811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.03,34.48,10,1,1,0,0,10,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13060,-9,13061,13059,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2249,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13061,13059,-9,-9,1,0,36,1,2,0,2,2,-9,0,2,8.0853291,7.8691177,0,10,1,56.259232,0,2,2,2021,17,6,19,18,1,6,0,16.783619,16.783619,0,0,0,0,0,0,0,0,1,1,0,0,0,46.03,34.48,60.02,56.42,8.333333333333334,1,1,0,0,10,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13062,-9,13061,13059,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.0313,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5987,7308,13063,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1754274,8.3271379,0,0,0,-963.58063,0,2,2,2021,15,4,37,37,1,4,0,11.799683,11.799683,0,0,0,0,0,0,0,0,0,0,0,0,0,32.01,62.01,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,1213,0,0,0,0,0,0,779.54767 +5988,7309,13064,13065,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.6517081,4.5276999,4,3,-48.991745,0,-9,-9,2021,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.61869,52.48,55.6,60.12,54.8,8.333333333333334,1,1,0,0,11,7,2,0,352,1324409.3,902259.75,372672.16,0,0,0,1613.399 +5988,7309,13065,13064,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.4040613,7.3515563,0,4,-3,41.253006,0,3,3,2021,6,0,30,30,1,0,0,6.0421567,6.0421567,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52.48,55.6,8.333333333333334,1,1,0,0,10,7,2,0,352,1324409.3,902259.75,372672.16,0,0,0,1613.399 +5989,7310,13066,-9,13068,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.43146,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13067,-9,13068,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1070.5094,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13068,-9,-9,-9,1,0,36,0,3,0,1,1,-9,1,4,0,0,0,0,0,-995.37677,0,3,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13069,-9,13068,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.39313,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5990,7311,13070,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,0,0,-919.88483,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,-9,-9,5,4,5,0,0,9,8,1,0,767,-25014.459,0,0,0,0,0,116.81072 +5990,7312,13071,-9,13070,-9,1,1,29,0,0,0,1,1,-9,0,3,0,0,0,0,0,-870.487,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4433081,0,39.14,52.49,-9,-9,5,4,5,0,0,4,8,1,0,742,0,0,0,0,0,0,196.23183 +5990,7313,13072,-9,13070,-9,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-976.2655,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3001411,0,35.2,48.71,-9,-9,5,4,5,1,0,2,8,1,0,4027,0,0,0,0,0,0,1529.4631 +5990,7314,13073,-9,13070,-9,1,0,28,0,0,0,2,2,-9,0,3,7.1234217,7.0279527,0,0,0,-991.54199,0,2,2,2021,6,0,32,-9,1,0,1,3.6153655,3.6153655,.05,.05,0,0,0,0,0,0,1,0,1,1.6516143,0,50.53,47.38,-9,-9,8.333333333333334,4,5,0,0,5,8,2,0,529,-7353.3462,19541.002,0,0,0,0,463.36615 +5990,7315,13074,-9,13070,-9,1,0,26,0,0,0,1,1,-9,0,4,6.8122663,6.7670531,0,0,0,-859.85803,0,2,1,2021,6,0,8,-9,1,0,1,15.915709,15.915709,0,0,0,0,0,0,0,0,1,0,1,1.9317528,0,45.09,60.15,-9,-9,8.333333333333334,4,5,0,0,7,8,2,0,521,22191.619,0,0,0,0,0,252.49843 +5991,7316,13075,13078,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,.72266817,.82961017,0,5,3,-17.229248,0,2,3,2021,10,0,90,55,1,0,0,.0021199081,.0021199081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.58,51.2,8.333333333333334,1,1,0,0,9,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13076,-9,13078,13075,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3307,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13077,-9,13078,13075,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.6141,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13078,13075,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.1585302,8.2307148,4.8546491,5,-3,-3.1426849,0,-9,-9,2021,12,1,35,30,1,1,0,12.340771,12.340771,0,0,0,0,0,0,0,0,1,1,0,5.1265812,0,44.58,51.2,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5992,7317,13079,13080,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.713604,8.7582369,0,14,2,-73.476372,0,2,1,2021,10,1,55,50,1,1,0,14.089768,14.089768,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.22,53.26,55.68,54.24,8.333333333333334,4,5,0,0,7,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5992,7317,13080,13079,-9,-9,1,0,34,0,1,0,1,1,-9,0,5,8.9260731,9.1845722,6.4256406,14,-2,12.520673,0,2,2,2021,12,3,47,44,1,3,0,15.655467,15.655467,0,0,0,0,0,0,0,0,1,1,0,6.6619048,0,55.68,54.24,52.22,53.26,8.333333333333334,4,5,0,0,6,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5992,7317,13081,-9,13080,13079,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.58356,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5993,7318,13082,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6398335,8.737483,6.4334979,0,0,-978.10846,0,2,2,2021,10,1,40,39,1,1,0,15.109716,15.109716,.05,.05,0,0,0,0,0,2,0,0,0,0,6.6561337,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,131,353268.31,172325.66,55851.809,0,0,-403.60318,2552.3071 +5994,7319,13083,13085,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.4098482,8.5110569,0,7,1,-42.325138,0,-9,-9,2021,13,1,5,46,1,1,0,95.10157,95.10157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.32,55.37,43.54,59.6,8.333333333333334,1,1,0,0,9,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5994,7319,13084,-9,13083,13085,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.72491,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5994,7319,13085,13083,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.866148,8.8308344,0,7,-1,-92.164719,0,-9,-9,2021,12,1,41,43,1,1,0,18.780354,18.780354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,47.32,55.37,5,1,1,0,0,8,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5995,7320,13086,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.8271236,6.9990258,0,0,-1002.3239,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3412561,61.27,46.03,-9,-9,10,1,1,0,0,0,12,2,1,164,84328.516,-43157.305,0,0,0,0,713.1037 +5996,7321,13087,13088,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3848519,7.4868374,0,26,6,109.46012,0,2,2,2021,11,0,24,26,1,0,0,7.4298582,7.4298582,0,0,0,0,0,0,0,7,0,0,0,2.6377378,0,56.52,48.31,48.26,47.97,8.333333333333334,1,1,0,0,14,5,5,1,1277,441722.25,280364,200885.97,57896.508,0,0,2559.6267 +5996,7321,13088,13087,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0368404,9.3604841,0,11,-6,-56.917782,0,-9,-9,2021,11,0,50,50,1,0,0,17.526628,17.526628,0,0,.05,0,0,0,0,0,0,0,0,6.1966605,0,48.26,47.97,56.52,48.31,6.666666666666667,1,1,0,0,14,5,5,1,1277,441722.25,280364,200885.97,57896.508,0,0,2559.6267 +5997,7322,13089,13090,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.5889473,8.7010317,0,4,1,-7.1060157,0,-9,-9,2021,10,0,38,39,1,0,0,15.353739,15.353739,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,58.55,19.83,6.666666666666667,2,3,0,0,2,7,5,1,428,15985.307,40793.883,12479.012,65464.906,1038.9355,0,4299.5488 +5997,7322,13090,13089,13091,-9,1,1,31,0,0,0,1,1,-9,0,1,8.7410173,8.6693516,0,4,-1,53.987808,0,3,2,2021,3,0,50,37,1,0,0,18.196486,18.196486,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.55,19.83,35.92,56.78,6.666666666666667,2,3,0,0,6,7,5,1,428,15985.307,40793.883,12479.012,65464.906,1038.9355,0,4299.5488 +5997,7323,13091,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.8212428,7.2272983,6.7467647,0,0,-986.12512,0,-9,-9,2021,20,7,20,20,1,7,0,7.0097871,7.0097871,0,0,0,0,0,0,0,0,0,0,0,0,6.4906454,47.55,28.27,-9,-9,8.333333333333334,2,3,0,0,12,7,3,1,2831,310530.47,330271.78,268716.34,0,0,2032.1154,291.96246 +5998,7324,13092,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9081025,7.8208127,0,0,0,-961.61365,0,2,2,2021,10,0,43,40,1,0,0,6.9252834,6.9252834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,5,1,1,0,0,7,2,3,1,251,509047.44,142858.14,196005.92,0,0,0,757.2616 +5999,7325,13093,-9,13096,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1118.5798,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13094,-9,13096,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4701,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13095,-9,13096,-9,1,0,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-795.24402,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13096,-9,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,6.3947277,6.4924617,0,0,-1053.011,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6442313,0,21.14,55.21,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +6000,7326,13097,-9,13098,13099,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1078.2045,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6000,7326,13098,13099,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.6962881,8.5046043,0,11,-15,-69.041557,0,-9,-9,2021,8,0,39,39,1,0,0,16.923056,16.923056,0,0,.05,0,0,0,0,0,1,1,0,1.0371881,0,57.16,56.15,45.78,54.48,6.666666666666667,1,1,0,0,8,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6000,7326,13099,13098,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.2007303,8.9973507,0,11,15,-61.271561,0,3,3,2021,14,4,30,30,1,4,0,41.305649,41.305649,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.78,54.48,57.16,56.15,5,3,4,0,0,13,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6001,7327,13100,13101,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.9640989,8.7903528,0,32,-3,10.890797,0,3,3,2021,15,4,36,36,1,4,0,18.6252,18.6252,.05,.05,.05,0,0,0,0,0,0,0,0,5.7447028,0,31.68,50.21,40.76,48.77,1.666666666666667,1,1,0,0,9,11,5,1,597,1331194.8,1092779.5,156526.86,25004.992,9427.8799,5905.6206,2990.522 +6001,7327,13101,13100,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8090539,7.5977273,0,32,3,8.7657833,0,2,2,2021,18,7,36,32,1,7,0,6.1787047,6.1787047,.05,.05,0,0,0,0,0,0,0,0,0,.70760971,0,40.76,48.77,31.68,50.21,3.333333333333333,1,1,0,0,9,11,5,1,597,1331194.8,1092779.5,156526.86,25004.992,9427.8799,5905.6206,2990.522 +6002,7328,13102,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.4703341,5.1618199,0,0,-971.43219,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4022503,5.0977292,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,643,91139.68,-23307.473,0,0,0,0,442.05466 +6003,7329,13103,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1136475,9.092411,0,0,0,-1071.0201,0,2,1,2021,26,10,50,45,1,10,0,19.928806,19.928806,.05,.05,0,0,0,0,0,0,0,0,0,7.1171103,0,30.53,65.61,-9,-9,3.333333333333333,1,1,0,0,6,8,5,0,175,143918,13142.002,0,0,0,0,3104.79 +6004,7330,13104,-9,13105,13107,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.2605,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13105,13107,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,6.5895615,6.460423,8,-5,-132.6254,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.1575308,49.66,55.68,57.33,53.46,8.333333333333334,2,3,0,0,5,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13106,-9,13105,13107,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.22528,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13107,13105,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.1274862,8.011651,0,8,5,39.840473,0,2,2,2021,7,1,35,35,1,1,0,8.6391907,8.6391907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.66,55.68,6.666666666666667,2,3,0,0,14,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6005,7331,13108,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.7831697,7.5403981,0,0,-950.57587,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,3.5692246,6.7326274,24.766869,0,1,0,1,3.1139114,7.7997007,44.3,29.54,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,63,162293.11,241871.78,0,0,0,0,1887.7507 +6005,7332,13109,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.7421231,7.6439362,0,0,0,-1045.1921,-9,-9,-9,2021,15,3,30,0,1,3,0,6.5020771,6.5020771,0,0,0,0,0,0,0,0,1,0,1,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,293,1176.0222,48473.75,0,0,0,0,1647.2628 +6006,7333,13110,-9,13111,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.42682,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6006,7333,13111,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,0,0,-918.9931,0,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.52,28.99,-9,-9,6.666666666666667,1,1,0,1,2,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6006,7333,13112,-9,13111,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1013.2473,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6007,7334,13113,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.55096,0,2,2,2021,16,4,0,33,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0384786,0,33.64,53.56,-9,-9,6.666666666666667,1,1,1,1,13,2,1,1,355,130954.3,0,0,0,0,0,70.507248 +6008,7335,13114,13115,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1145277,7.8080945,0,13,-1,77.239098,0,2,2,2021,11,0,40,37,1,0,0,11.473307,11.473307,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,49.29,54.59,8.333333333333334,1,1,0,0,14,7,5,1,605,467665.56,208084.16,328053.94,0,478.90607,0,4179.812 +6008,7335,13115,13114,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4246597,8.4839249,0,13,1,27.506783,0,2,2,2021,11,0,58,55,1,0,0,13.027184,13.027184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,52.4,52.91,8.333333333333334,1,1,0,0,15,7,5,1,605,467665.56,208084.16,328053.94,0,478.90607,0,4179.812 +6009,7336,13116,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.7692261,5.4698386,0,0,-958.86053,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3807378,58.92,31.07,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,503,-61095.555,0,0,0,0,0,1080.9963 +6010,7337,13117,13118,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.338232,8.6116791,0,3,-3,40.951908,0,-9,-9,2021,4,0,40,48,1,0,0,17.273678,17.273678,.05,.05,0,0,0,0,0,0,0,0,0,2.298912,0,59.14,52.5,45.77,53.13,8.333333333333334,1,1,0,0,3,7,5,0,283,200745.23,165351.09,0,0,0,0,4965.1875 +6010,7337,13118,13117,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,9.4709435,9.1831026,0,3,3,44.400173,0,2,3,2021,8,0,37,38,1,0,0,36.447693,36.447693,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.77,53.13,59.14,52.5,6.666666666666667,1,1,0,0,8,7,5,0,283,200745.23,165351.09,0,0,0,0,4965.1875 +6011,7338,13119,13120,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3092847,5.0965528,9,-3,-89.946823,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8868585,5.2308564,60.87,44.96,59.13,44.84,0,1,1,0,0,5,8,2,1,735,950486.25,350116.69,515165.56,0,0,0,1748.9498 +6011,7338,13120,13119,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7594547,6.7513576,9,3,164.07236,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9984088,6.971034,59.13,44.84,60.87,44.96,10,1,1,0,0,5,8,2,1,735,950486.25,350116.69,515165.56,0,0,0,1748.9498 +6012,7339,13121,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.1989546,7.429502,0,0,-1088.3363,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,7.7298689,0,0,1,1,0,0,7.0230594,39.94,34.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2836,259968.14,144812,141553.31,0,0,0,1092.6418 +6013,7340,13122,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,5.1645188,5.7988348,0,0,-999.01404,0,1,1,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5509419,0,38.84,20.12,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,388,138209,80394.68,157969,0,0,0,976.4021 +6013,7341,13123,-9,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,0,0,0,0,0,-990.56299,0,-9,-9,2021,15,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.81,49.24,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,453,257031.61,0,179116.73,0,0,30.862656,13.457473 +6014,7342,13124,13125,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1447392,8.2005444,0,12,2,34.221729,-9,-9,-9,2021,9,0,43,0,1,1,0,10.266834,10.266834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,27.51,33.68,8,1,1,0,1,12,12,4,1,1221.5,-85266.141,6517.1436,0,0,0,0,2105.5193 +6014,7342,13125,13124,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,35,-2,11.733922,0,-9,-9,2021,17,5,0,46,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.51,33.68,52,55,0,1,1,1,1,6,12,4,1,1221.5,-85266.141,6517.1436,0,0,0,0,2105.5193 +6015,7343,13126,-9,13127,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-998.84351,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,6.666666666666667,3,4,0,0,0,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6015,7343,13127,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,7.6200428,7.9542408,0,0,0,-888.16547,-9,1,-9,2021,8,0,44,0,1,0,0,6.5379095,6.5379095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.89,47.88,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6015,7343,13128,-9,13127,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7205,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6016,7344,13129,13130,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.8646417,7.3049798,59,0,-118.45764,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8435168,57.16,56.15,54.21,47.1,10,1,1,0,0,3,7,3,1,1316.5,1343286.5,617943.44,617824.06,0,3871.1833,0,2857.8789 +6016,7344,13130,13129,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.4993343,7.3965445,59,0,-64.468002,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3643074,7.1362572,54.21,47.1,57.16,56.15,10,1,1,0,0,0,7,3,1,1316.5,1343286.5,617943.44,617824.06,0,3871.1833,0,2857.8789 +6017,7345,13131,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.1302,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.173914,0,46.62,55.32,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,557,-11833.951,0,0,0,0,0,67.547096 +6018,7346,13132,13133,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2716484,8.2164383,0,10,3,26.735086,0,2,2,2021,9,0,35,40,1,0,0,10.633969,10.633969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.73,54.53,8.333333333333334,4,2,0,0,11,5,5,1,682,148435.3,72626.078,181587.88,140007.61,1688.5242,0,5626.4321 +6018,7346,13133,13132,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.0820665,9.0907125,0,10,-3,-69.033371,0,2,2,2021,7,1,60,60,1,1,0,13.344967,13.344967,.05,.05,0,0,0,0,0,0,0,0,0,1.9572004,0,57.73,54.53,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,682,148435.3,72626.078,181587.88,140007.61,1688.5242,0,5626.4321 +6019,7347,13134,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.5372057,7.6875811,0,0,0,-878.28204,0,3,2,2021,20,9,30,30,1,9,0,8.5763798,8.5763798,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.56,25.22,-9,-9,5,1,1,0,0,12,2,3,0,194,-9101.665,745.05981,0,0,0,3875.8831,739.02905 +6020,7348,13135,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.5998573,6.9338088,0,0,-1059.4084,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8453441,47.01,58,-9,-9,6.666666666666667,4,2,0,0,4,10,2,1,1068,206606.5,0,98032.773,0,0,0,972.67889 +6021,7349,13136,13137,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4391642,7.9403901,7,2,34.23111,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9735122,8.2766428,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,4,1,817,1305845.5,376928.06,239499.84,0,0,0,3235.9631 +6021,7349,13137,13136,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.6511989,4.7544875,7,-2,22.399164,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5719929,4.6009188,57.16,56.15,57.16,56.15,0,1,1,0,0,5,10,4,1,817,1305845.5,376928.06,239499.84,0,0,0,3235.9631 +6022,7350,13138,13139,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6181612,7.0072412,46,3,20.710472,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5703044,6.7785182,60.7,47.65,52.65,51.64,8.333333333333334,1,1,0,0,0,10,2,1,894,282892.91,111888.42,163079.81,0,0,0,2123.0864 +6022,7350,13139,13138,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,10,-3,-1.1463289,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,60.7,47.65,6.666666666666667,1,1,0,0,0,10,2,1,894,282892.91,111888.42,163079.81,0,0,0,2123.0864 +6023,7351,13140,13141,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.1143217,8.1350355,0,6,-4,-5.0290465,0,1,1,2021,10,0,55,70,1,0,0,8.0342684,8.0342684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,7,5,1,685,162040.63,60139.703,651979.63,539212.38,0,0,4435.8994 +6023,7351,13141,13140,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.2038469,9.3246737,0,6,4,9.6300497,0,-9,-9,2021,7,0,50,50,1,0,0,22.422068,22.422068,.05,.05,0,0,0,0,0,0,0,0,0,2.825902,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,685,162040.63,60139.703,651979.63,539212.38,0,0,4435.8994 +6024,7352,13142,13143,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.6205802,7.3206735,0,6,-1,-89.075104,0,-9,-9,2021,11,0,45,-9,1,0,0,6.2137923,6.2137923,.05,.05,0,0,0,0,0,0,0,0,0,7.2219296,0,44.05,38.12,58.87,37.89,8.333333333333334,1,1,0,0,4,5,4,1,968.5,320815.5,276817.59,189466.33,57050.719,0,0,3249.1802 +6024,7352,13143,13142,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.5887036,8.0585985,7.7905178,6,1,-160.05969,0,3,2,2021,5,0,70,70,1,0,0,1.0759574,1.0759574,.05,.05,0,0,0,0,0,0,0,0,0,3.0275557,7.9689999,58.87,37.89,44.05,38.12,6.666666666666667,1,1,0,0,6,5,4,1,968.5,320815.5,276817.59,189466.33,57050.719,0,0,3249.1802 +6024,7353,13144,-9,13142,13143,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1136.2742,1,3,2,2021,22,8,0,15,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.55,50.67,-9,-9,5,1,1,0,0,5,5,1,1,2795,-5931.418,0,0,0,0,0,0 +6025,7354,13145,13146,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6380148,9.4775419,0,35,2,71.24778,0,-9,-9,2021,9,0,58,55,1,0,0,30.561598,30.561598,.05,.05,0,0,0,0,0,0,0,0,0,6.5124693,0,54,54,31.24,64.34,8,1,1,0,0,10,12,5,1,255,987643.38,200051.75,470388.97,44951.586,0,0,8125.8057 +6025,7354,13146,13145,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.593657,7.7287798,0,35,-2,35.842209,0,2,2,2021,22,9,13,13,1,9,0,14.996954,14.996954,0,0,0,0,0,0,0,0,0,0,0,0,0,31.24,64.34,54,54,8.333333333333334,1,1,0,0,10,12,5,1,255,987643.38,200051.75,470388.97,44951.586,0,0,8125.8057 +6026,7355,13147,13150,-9,-9,1,0,40,2,3,0,3,3,-9,0,4,8.0838652,8.3543634,6.2956209,4,-10,-79.856659,0,1,1,2021,8,0,40,40,1,0,0,10.961474,10.961474,.05,.05,0,0,0,0,0,0,1,1,0,6.2868505,0,57.16,56.15,33.41,62.84,8.333333333333334,1,1,0,0,11,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13148,-9,13147,13150,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-847.35211,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13149,-9,13147,-9,1,1,12,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.6642,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13150,13147,-9,-9,1,1,50,2,3,0,1,1,-9,0,3,8.9937439,8.5777025,0,4,10,13.533034,0,-9,-9,2021,13,4,37,37,1,4,0,20.858534,20.858534,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.41,62.84,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13151,-9,13147,-9,1,1,17,2,3,0,2,2,1,0,3,0,0,0,0,0,-996.74799,-9,3,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30302933,0,44.38,58.1,-9,-9,5,1,1,0,0,1,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13152,-9,13147,13150,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2444,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6027,7356,13153,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5899496,7.7833729,0,0,-977.2052,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.4136648,7.6435242,63.33,22.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,422,419186.94,-26653.617,0,0,6018.6709,0,1345.3301 +6028,7357,13154,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.1127033,7.8849182,0,0,0,-1007.9796,-9,-9,-9,2021,7,0,42,0,1,0,0,8.9032545,8.9032545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,96,-22796.969,-51822.422,0,0,0,0,1293.6387 +6028,7358,13155,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.6234617,8.3952541,0,0,0,-946.82678,0,1,2,2021,3,0,37,45,1,0,0,16.81666,16.81666,.05,.05,0,0,0,0,0,0,0,0,0,3.2099328,0,54.2,57.49,-9,-9,10,1,1,0,0,7,10,5,0,435,-146150.88,116415.24,0,0,7971.6318,0,1305.1855 +6029,7359,13156,13159,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.3091497,8.4102993,0,7,0,5.0870972,0,-9,-9,2021,9,0,37,37,1,1,0,15.174703,15.174703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,58.33,47.36,8,1,1,0,0,1,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13157,-9,13159,13156,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.39282,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13158,-9,13159,13156,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6187,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13159,13156,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3162594,7.9337502,0,22,0,-82.04763,0,2,2,2021,9,0,26,20,1,0,0,15.512202,15.512202,0,0,0,0,0,0,0,2,1,1,0,.54701406,0,58.33,47.36,52,55,8.333333333333334,1,1,0,0,9,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6030,7360,13160,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,0,0,-955.82867,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,-9,-9,5,1,1,0,0,0,13,1,0,66,46334.344,0,0,0,0,0,1520.7587 +6030,7361,13161,-9,13160,-9,1,1,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-983.07928,0,2,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.08,57.81,-9,-9,5,1,1,1,0,0,13,1,0,1074,-169566.72,0,0,0,0,0,250.53806 +6031,7362,13162,13164,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4806175,8.4486103,0,7,-3,38.460201,0,-9,-9,2021,12,0,45,40,1,0,0,10.650339,10.650339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,32.65,59.14,8.333333333333334,1,1,0,0,7,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6031,7362,13163,-9,13162,13164,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.51807,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6031,7362,13164,13162,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.6524696,8.8736143,0,7,3,24.53598,0,2,2,2021,11,0,42,38,1,0,0,19.037317,19.037317,.05,.05,0,0,0,0,0,0,1,1,0,6.0866027,0,32.65,59.14,57.73,54.53,8.333333333333334,1,1,0,0,8,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6032,7363,13165,13166,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.1435614,8.1494923,0,12,2,70.82019,0,2,2,2021,24,10,74,44,1,10,0,6.0693884,6.0693884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.82,54.74,59.48,44.27,5,1,1,0,0,12,9,5,1,812,794213.31,289094.81,287570.38,0,6088.7686,0,3464.6636 +6032,7363,13166,13165,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5407534,8.4118376,0,12,-2,82.09005,0,2,1,2021,9,1,44,43,1,1,0,13.430446,13.430446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.48,44.27,32.82,54.74,6.666666666666667,1,1,0,0,13,9,5,1,812,794213.31,289094.81,287570.38,0,6088.7686,0,3464.6636 +6033,7364,13167,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.6670637,6.3935394,0,0,-1117.2168,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7907619,35.56,48.42,-9,-9,3.333333333333333,1,1,0,1,14,2,2,0,520,374942.59,10026.618,124907.03,0,0,0,1027.3823 +6034,7365,13168,13169,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.4097943,4.2842355,15,2,-39.648769,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6300659,57.16,56.15,61.28,35.65,8.333333333333334,1,1,0,0,0,10,2,1,483,248274.94,140631.67,215967.97,0,0,0,1577.2769 +6034,7365,13169,13168,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,2.6291814,3.1647656,15,-2,-48.721272,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7668593,3.0734978,61.28,35.65,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,1,483,248274.94,140631.67,215967.97,0,0,0,1577.2769 +6035,7366,13170,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.0093966,8.9575739,0,1,0,46.600449,0,3,3,2021,18,6,47,52,1,6,0,22.713217,22.713217,.05,.05,0,0,0,0,0,0,0,0,0,3.7972286,0,32.33,59.49,51,56,6.666666666666667,1,1,0,0,11,10,5,1,369,612062.81,181499.69,299723.13,122362.52,13695.173,0,2998.501 +6036,7367,13171,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.2992892,6.1878381,0,0,-1036.1604,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7191453,6.0006542,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,763,270448.66,410802.28,0,0,0,0,1786.5034 +6037,7368,13172,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4741631,8.4644012,0,0,0,-1155.9609,0,2,2,2021,10,0,24,24,1,0,0,17.154808,17.154808,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,44.4,-9,-9,5,4,5,0,0,2,8,4,0,138,214767.67,0,0,0,0,0,1905.7937 +6038,7369,13173,13174,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.1974416,7.6177921,6,-2,-19.942314,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5223308,6.9269586,61.41,46.03,54.79,55.86,8.333333333333334,1,1,0,0,7,4,4,1,745,1049569.5,607413.5,339545.84,0,0,0,2906.9248 +6038,7369,13174,13173,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.092556,8.0866756,6,2,-119.86971,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3251767,7.9711251,54.79,55.86,61.41,46.03,8.333333333333334,1,1,0,0,3,4,4,1,745,1049569.5,607413.5,339545.84,0,0,0,2906.9248 +6039,7370,13175,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,8.0171537,8.3159475,0,0,0,-1145.3531,0,2,3,2021,22,10,38,38,1,10,0,10.281227,10.281227,0,0,0,0,0,0,0,0,1,0,1,0,0,37.3,47.85,-9,-9,3.333333333333333,1,1,0,0,11,10,4,1,299,927895.81,687462.81,245817.25,0,0,0,1592.9785 +6039,7371,13176,-9,13175,-9,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1048.7484,-9,1,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,30.08,60.21,-9,-9,3.333333333333333,1,1,1,1,0,10,1,1,478,-24908.793,0,0,0,0,0,580.69275 +6040,7372,13177,13178,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,34,-2,47.838291,0,1,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82868606,0,49.35,59.64,60.02,56.42,8.333333333333334,1,1,0,0,8,9,2,1,373,1407255.3,375004.19,604563.38,0,0,0,925.09363 +6040,7372,13178,13177,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,2.939189,3.0657563,0,33,2,-6.6710582,0,3,3,2021,6,0,40,-9,1,0,0,.062910467,.062910467,0,0,0,0,0,0,0,0,1,1,0,3.5085928,0,60.02,56.42,49.35,59.64,1.666666666666667,1,1,0,1,12,9,2,1,373,1407255.3,375004.19,604563.38,0,0,0,925.09363 +6041,7373,13179,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.2103424,8.2556601,0,0,0,-1066.4404,-9,1,1,2021,11,1,38,0,1,1,0,9.984539,9.984539,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,1.666666666666667,1,1,0,0,3,12,4,1,1152,-135377.14,21884.043,0,0,0,0,1266.4402 +6042,7374,13180,13181,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3605499,8.5038624,0,26,-5,4.7544699,0,2,2,2021,13,1,55,48,1,1,0,7.7533522,7.7533522,.05,.05,0,0,0,0,0,2,0,0,0,2.1838319,0,50.72,51.02,48.7,56.22,6.666666666666667,1,1,0,0,11,7,4,1,926,637001.88,303440.06,543171.31,160715.81,0,0,2597.4165 +6042,7374,13181,13180,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.1719136,7.0865169,0,26,5,-63.858383,0,2,2,2021,10,0,6,6,1,0,0,22.614798,22.614798,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,48.7,56.22,50.72,51.02,8.333333333333334,1,1,0,0,11,7,4,1,926,637001.88,303440.06,543171.31,160715.81,0,0,2597.4165 +6042,7375,13182,-9,13181,13180,1,1,20,0,0,0,2,2,1,0,3,7.262383,7.1619267,0,0,0,-1097.2328,-9,2,2,2021,15,4,30,0,1,4,1,5.0295882,5.0295882,0,0,0,0,0,0,0,0,0,0,0,2.0900428,0,30.7,62.92,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,293,183864.47,0,0,0,0,0,327.03043 +6043,7376,13183,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4777012,7.4312348,0,0,-970.1004,0,2,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.17981921,7.6436195,57.17,50.61,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,99,399268.38,196676.2,367117.53,0,0,0,545.37268 +6044,7377,13184,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.9280725,8.2323399,0,0,0,-1021.7854,0,3,3,2021,11,0,38,0,1,0,0,8.9288635,8.9288635,0,0,0,0,0,0,0,0,0,0,0,.71470582,0,43.6,56.78,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,2498,357125.38,136739.89,346875.25,0,0,0,2572.8276 +6045,7378,13185,13186,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.1579518,6.3071756,0,33,-4,45.881126,-9,3,3,2021,12,0,6,0,1,2,0,9.264842,9.264842,0,0,0,0,0,0,0,0,0,0,0,2.790519,0,48,49,45.82,46.7,7,2,3,0,0,1,2,3,1,390,977156.63,593265.13,263331.06,0,0,0,1787.2947 +6045,7378,13186,13185,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.5912366,7.2899895,0,33,4,-6.6767864,0,3,3,2021,12,0,6,6,1,0,0,34.13522,34.13522,0,0,0,0,0,0,0,0,0,0,0,7.5993686,0,45.82,46.7,48,49,6.666666666666667,2,3,0,0,9,2,3,1,390,977156.63,593265.13,263331.06,0,0,0,1787.2947 +6045,7379,13187,-9,13185,13186,1,1,27,0,0,0,1,1,-9,0,5,8.0495167,7.9741607,0,0,0,-1066.3546,0,3,1,2021,15,3,38,38,1,3,1,9.1738386,9.1738386,.05,.05,0,0,0,0,0,0,0,0,0,1.1224067,0,41.12,59.69,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,2021,-29291.32,7058.4795,0,0,0,0,1104.7922 +6046,7380,13188,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,0,5.2560639,5.1365881,0,0,-973.20905,-9,2,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.3992257,0,25.39,66.76000000000001,-9,-9,6.666666666666667,3,4,0,1,2,1,2,0,1766.5,123896.3,0,0,0,0,85.045944,758.90015 +6046,7380,13189,-9,13188,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1989,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,1,2,0,1766.5,123896.3,0,0,0,0,85.045944,758.90015 +6047,7381,13190,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.8735623,7.0911751,0,0,0,-1034.4498,0,3,2,2021,9,0,20,0,1,0,0,6.7734971,6.7734971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,2,9,2,0,417.5,61097.102,76567.328,0,0,0,0,975.61859 +6047,7381,13191,-9,13190,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-893.91656,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,417.5,61097.102,76567.328,0,0,0,0,975.61859 +6048,7382,13192,13194,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,0,0,0,21,0,-2.5337222,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.28,54.65,48.28,49.45,6.666666666666667,2,3,0,0,0,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6048,7382,13193,-9,13192,13194,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1119.7902,-9,2,1,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,64.48,-9,-9,6.666666666666667,2,3,0,0,0,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6048,7382,13194,13192,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,7.852664,8.0350027,0,21,9,-20.888994,0,3,3,2021,11,1,40,37,1,1,0,7.2207355,7.2207355,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,49.45,40.28,54.65,6.666666666666667,2,3,0,0,12,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6049,7383,13195,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.4876413,5.311717,0,0,-1075.4196,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2111669,0,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,385,283123.47,0,328426.22,0,0,0,934.19196 +6050,7384,13196,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,7.0859871,7.1850023,0,0,-985.98651,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4984922,42.43,21.33,-9,-9,6.666666666666667,1,1,0,0,0,12,3,0,237,473602,186564.66,228889.59,0,0,0,1286.9702 +6051,7385,13197,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9520183,8.214901,0,0,0,-928.40369,0,3,3,2021,32,11,36,36,1,11,0,10.621687,10.621687,.05,.05,0,0,0,0,0,0,0,0,0,6.4334717,0,5.15,68.21000000000001,-9,-9,3.333333333333333,1,1,0,0,12,9,4,1,566,405277.72,387323.84,0,0,0,0,1882.8387 +6051,7386,13198,13199,13197,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8175316,8.8518419,0,2,1,19.720938,-9,2,2,2021,7,0,46,0,1,0,0,18.456066,18.456066,.05,.05,.05,0,0,0,0,0,0,0,0,3.5268371,0,55.34,54.6,54.2,57.49,10,1,1,0,0,11,9,4,1,405,-113702.33,-6153.1914,0,0,6454.9297,0,2184.8047 +6051,7386,13199,13198,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,2,-1,109.33598,-9,-9,-9,2021,6,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.34,54.6,8.333333333333334,1,1,0,0,0,9,4,1,405,-113702.33,-6153.1914,0,0,6454.9297,0,2184.8047 +6052,7387,13200,-9,13201,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.5507,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6052,7387,13201,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.9674826,8.8513727,0,0,0,-967.24548,0,2,2,2021,12,0,50,50,1,0,0,16.866909,16.866909,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,-9,-9,5,1,1,0,0,6,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6052,7387,13202,-9,13201,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.7836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6053,7388,13203,-9,13204,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.0745,-9,1,-9,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.27,67.29000000000001,-9,-9,5,4,2,0,0,1,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6053,7388,13204,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.4979649,8.646966,0,0,0,-955.7948,0,2,-9,2021,10,0,38,38,1,1,0,16.537247,16.537247,0,0,.05,0,0,0,0,7,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,10,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6053,7388,13205,-9,13204,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.1514,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6054,7389,13206,13207,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.217391,8.49156,0,7,0,72.215607,0,-9,-9,2021,10,1,40,40,1,1,0,12.790497,12.790497,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,39.15,41.42,10,1,1,0,0,10,11,4,1,679,281503.06,250304.55,108267.13,59847.883,0,0,2226.9214 +6054,7389,13207,13206,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,6.7642608,7.278502,0,7,0,132.07457,0,-9,-9,2021,11,0,18,26,1,0,0,7.5673003,7.5673003,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,58.15,52.91,6.666666666666667,1,1,0,0,10,11,4,1,679,281503.06,250304.55,108267.13,59847.883,0,0,2226.9214 +6054,7390,13208,-9,13207,13206,1,0,24,0,0,0,2,2,-9,0,4,7.6673574,7.538362,0,0,0,-888.08044,0,3,3,2021,11,0,40,36,1,2,1,4.6830316,4.6830316,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,11,3,1,894,47434.422,0,0,0,0,0,124.98454 +6055,7391,13209,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.505928,8.5251112,6.1031656,0,0,-921.27039,0,3,3,2021,17,5,43,47,1,5,0,11.745417,11.745417,0,0,0,0,0,0,0,0,1,1,0,7.448297,6.4128127,38.31,41.83,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1207,366711.53,0,250961.63,11907.272,0,134.72897,2468.373 +6056,7392,13210,13211,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,6.2033811,6.3897562,0,30,-4,-80.516037,0,3,2,2021,6,0,8,10,1,0,0,6.3396993,6.3396993,0,0,0,0,0,0,0,2,0,0,0,6.3662734,0,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,9,7,5,1,168.5,1928127.5,854607.25,498909.88,0,0,0,4531.0488 +6056,7392,13211,13210,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,9.1513777,9.0987511,30,4,66.366966,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5265322,8.9475594,48.45,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,7,5,1,168.5,1928127.5,854607.25,498909.88,0,0,0,4531.0488 +6057,7393,13212,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2531023,8.2486401,0,0,0,-979.57867,0,-9,-9,2021,6,0,38,38,1,0,0,8.9062815,8.9062815,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,660,155759.23,39143.625,208492.48,78761.719,18781.166,0,1036.015 +6058,7394,13213,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2028666,7.9861679,0,0,0,-1014.7873,0,3,3,2021,12,0,37,37,1,0,0,12.53715,12.53715,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.82,46.7,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,629,281653.78,192686.81,129446.86,52261.84,4027.8362,1122.7786,1361.3411 +6059,7395,13214,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.4134874,8.1330853,0,0,0,-935.96765,0,3,2,2021,2,0,46,49,1,0,0,10.386224,10.386224,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,3246,-114057.7,-32994.188,0,0,0,8950.6738,1900.3071 +6060,7396,13215,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.1210709,6.8048167,0,0,0,-1082.2416,0,2,2,2021,12,0,16,17,1,0,0,7.6109319,7.6109319,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,3.333333333333333,3,4,0,0,2,6,2,0,214,98452.781,0,184522.55,44502.16,1521.1187,0,1436.968 +6060,7396,13216,-9,13215,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-962.32532,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,4,2,-9,0,0,6,2,0,214,98452.781,0,184522.55,44502.16,1521.1187,0,1436.968 +6061,7397,13217,13218,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8779082,6.5487442,0,38,0,10.918363,0,3,3,2021,8,0,20,18,1,0,0,5.808526,5.808526,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,54.04,47.89,10,1,1,0,0,7,7,4,1,188.5,691871.13,256548.5,327237.5,0,0,0,1951.8229 +6061,7397,13218,13217,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5954704,8.7605219,0,38,0,5.3486662,0,3,3,2021,12,2,50,55,1,2,0,14.104204,14.104204,0,0,0,0,0,0,0,0,0,0,0,0,0,54.04,47.89,54.9,54.53,8.333333333333334,1,1,0,0,9,7,4,1,188.5,691871.13,256548.5,327237.5,0,0,0,1951.8229 +6061,7398,13219,-9,13217,13218,1,0,32,0,0,0,2,2,-9,0,2,8.3973312,8.2890062,0,0,0,-999.53998,0,2,2,2021,22,6,45,45,1,6,1,8.7702408,8.7702408,0,0,0,0,0,0,0,0,0,0,0,0,0,36.19,55.28,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,255,34080.73,0,0,0,0,0,374.29346 +6062,7399,13220,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8992376,7.8011165,0,0,-904.66327,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.3245888,8.1609983,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1139,466794.72,325277.56,114160.13,0,0,0,6913.938 +6063,7400,13221,13222,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.5452938,9.0562496,0,24,4,79.518814,0,2,3,2021,11,0,40,39,1,0,0,20.48415,20.48415,.05,.05,0,0,0,0,0,0,1,1,0,2.9643579,0,51.18,42.92,52.88,56.68,5,2,3,0,0,12,9,4,1,731,291183.34,268709,304325.25,179958.38,0,647.17883,4172.8652 +6063,7400,13222,13221,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.8103533,7.8898268,0,24,-4,63.202576,0,3,3,2021,11,0,25,33,1,0,0,10.573801,10.573801,.05,.05,0,0,0,0,0,0,1,1,0,3.019578,0,52.88,56.68,51.18,42.92,8.333333333333334,2,3,0,0,13,9,4,1,731,291183.34,268709,304325.25,179958.38,0,647.17883,4172.8652 +6064,7401,13223,13224,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,6.4615626,6.8009005,0,7,9,19.617517,0,1,1,2021,15,5,16,5,1,5,0,6.9077468,6.9077468,0,0,0,0,0,0,0,7,1,1,0,0,0,47.56,48.93,52.37,56.93,6.666666666666667,1,1,0,0,8,12,3,1,136.5,258045.25,234874.19,0,0,17930.105,0,2634.728 +6064,7401,13224,13223,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.106823,8.2327394,0,7,0,-115.90772,0,-9,-9,2021,9,0,30,30,1,0,0,11.683235,11.683235,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,47.56,48.93,8.333333333333334,1,1,0,0,8,12,3,1,136.5,258045.25,234874.19,0,0,17930.105,0,2634.728 +6065,7402,13225,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.1375,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,1.8657488,0,0,1,1,0,0,0,41.25,50.19,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1505,166691.69,0,0,0,0,0,134.54964 +6066,7403,13226,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-970.33295,0,2,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,35.53,-9,-9,5,1,1,0,0,0,4,1,0,736,99356.07,0,131099.34,34355.574,0,0,1080.6493 +6067,7404,13227,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2487249,8.5921755,0,0,0,-928.65942,0,3,-9,2021,2,0,44,38,1,0,0,9.7564173,9.7564173,.05,.05,0,0,0,0,0,0,1,1,0,7.1063352,0,62.66,52.4,-9,-9,10,3,4,0,0,9,8,4,1,707,399868.69,525169.19,0,0,0,0,1656.8452 +6068,7405,13228,13229,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8393755,9.1461143,5.4411383,10,-5,-8.3448496,0,2,2,2021,9,0,42,42,1,0,0,26.006147,26.006147,0,0,0,0,0,0,0,0,1,1,0,5.4769559,5.9249115,58.72,51.29,59.54,46.05,10,1,1,0,0,12,9,5,1,456,350864.53,0,361807.5,0,0,0,3971.313 +6068,7405,13229,13228,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.2671084,5.7593393,10,5,6.5289464,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6279049,59.54,46.05,58.72,51.29,8.333333333333334,1,1,0,0,7,9,5,1,456,350864.53,0,361807.5,0,0,0,3971.313 +6069,7406,13230,13231,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.925036,7.2429457,0,4,6,-26.680695,-9,-9,-9,2021,8,0,72,0,1,0,0,4.289979,4.289979,0,0,0,0,0,0,0,0,0,0,0,7.1537213,0,57.16,56.15,35.93,55.1,8.333333333333334,1,1,0,0,5,12,3,0,711.5,185966.81,6604.6719,0,0,0,3380.2705,3509.3274 +6069,7406,13231,13230,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1158166,7.1118135,0,4,-6,12.68545,0,2,2,2021,8,0,40,40,1,0,0,3.782094,3.782094,0,0,0,0,0,0,0,0,0,0,0,6.9118047,0,35.93,55.1,57.16,56.15,8.333333333333334,1,1,0,0,11,12,3,0,711.5,185966.81,6604.6719,0,0,0,3380.2705,3509.3274 +6070,7407,13232,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.1911001,9.1154795,0,0,0,-1032.3411,0,2,2,2021,10,0,72,84,1,0,0,18.42149,18.42149,0,0,0,0,0,0,0,0,1,1,0,5.2573805,0,53.12,53.98,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,401,93755.781,0,138382.88,98967.992,0,0,3914.6707 +6071,7408,13233,13235,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.4845877,8.5568161,0,20,-1,-39.151863,0,3,2,2021,8,0,45,50,1,0,0,11.865448,11.865448,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,17.63,68.89,8.333333333333334,1,1,0,0,10,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6071,7408,13234,-9,13235,13233,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-768.51263,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.57348001,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6071,7408,13235,13233,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.841363,9.0275068,0,20,1,-135.29311,0,2,2,2021,26,12,50,60,1,12,0,16.661737,16.661737,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.63,68.89,58.15,52.91,3.333333333333333,1,1,0,0,10,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6072,7409,13236,13237,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,35,-7,0,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.6568971,0,33.13,48.09,32.81,43.81,0,1,1,0,0,6,5,1,1,1824.5,561909.13,148679.89,378526.63,0,0,0,843.63684 +6072,7409,13237,13236,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,34,7,0,0,-9,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,16.866793,0,27,1,1,0,2.8380485,0,32.81,43.81,33.13,48.09,0,1,1,0,0,6,5,1,1,1824.5,561909.13,148679.89,378526.63,0,0,0,843.63684 +6072,7410,13238,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-932.82037,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,158.08141,0,0,1,1,0,0,0,66.44,47.81,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,2510,65948.273,0,0,0,0,0,1203.0977 +6073,7411,13239,13240,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.5977149,6.5173302,44,0,-43.793026,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1636243,54.37,54.8,48.38,45.18,8.333333333333334,1,1,0,0,7,7,2,1,527.5,1681220.5,635627,935011.38,0,4391.9595,0,1279.1511 +6073,7411,13240,13239,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4545121,6.1939683,44,0,-49.989822,0,3,3,2021,6,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7112551,48.38,45.18,54.37,54.8,8.333333333333334,1,1,0,0,9,7,2,1,527.5,1681220.5,635627,935011.38,0,4391.9595,0,1279.1511 +6074,7412,13241,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.899003,9.0644598,0,0,0,-984.90045,0,-9,-9,2021,13,2,48,45,1,2,0,21.453238,21.453238,.05,.05,0,0,0,0,0,0,0,0,0,3.4427118,0,38.45,60.79,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,738,-74726.031,108884.4,0,0,1584.0598,2465.8811,3010.4407 +6075,7413,13242,13243,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.6108508,6.5858264,51,-4,66.058777,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,9.5530167,0,0,1,1,0,0,6.6281857,58.05,25.05,51.36,41.98,6.666666666666667,1,1,0,0,5,2,2,0,685.5,388565.25,339671.34,79436.375,0,0,0,2516.824 +6075,7413,13243,13242,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.2965403,7.0621095,51,4,-91.010353,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2788391,6.911418,51.36,41.98,58.05,25.05,10,1,1,0,0,0,2,2,0,685.5,388565.25,339671.34,79436.375,0,0,0,2516.824 +6076,7414,13244,13245,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.9919605,7.006454,49,0,-84.047997,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4409795,0,0,1,1,0,0,6.8416405,56.28,47.53,58.3,52.91,6.666666666666667,1,1,0,0,4,11,2,1,429.5,766618.88,326468.88,193834.78,0,17.073608,0,1778.8954 +6076,7414,13245,13244,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,0,52.236561,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,56.28,47.53,8.333333333333334,1,1,0,0,0,11,2,1,429.5,766618.88,326468.88,193834.78,0,17.073608,0,1778.8954 +6077,7415,13246,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8669815,8.5271578,0,0,0,-1045.5753,0,2,2,2021,10,0,41,43,1,0,0,17.872242,17.872242,0,0,0,0,0,0,0,0,0,0,0,7.3181424,0,47.75,41.56,-9,-9,6.666666666666667,1,1,0,0,12,9,5,0,1773,-19550.563,0,0,0,0,0,2583.093 +6078,7416,13247,13248,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.7696495,8.8634701,38,9,-140.64665,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,76.13929,0,0,1,1,0,0,8.7757587,62.81,36.34,57.73,54.53,8.333333333333334,1,1,0,0,0,8,5,1,427.5,1880246,1116944.5,507034,0,0,0,7559.4336 +6078,7416,13248,13247,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8337097,8.2443724,40,0,-114.8159,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3129702,8.2644224,57.73,54.53,62.81,36.34,8.333333333333334,1,1,0,0,9,8,5,1,427.5,1880246,1116944.5,507034,0,0,0,7559.4336 +6079,7417,13249,13250,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.6158371,7.6831098,0,37,-1,-6.4102917,0,3,2,2021,10,0,40,40,1,0,0,5.3989029,5.3989029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48.82,47.62,3.333333333333333,2,3,0,0,11,8,3,1,843.5,363301.06,-13469.582,290697.75,48371.117,0,0,1409.3521 +6079,7417,13250,13249,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.52595,7.5791926,0,37,1,15.242182,0,3,2,2021,10,0,25,20,1,0,0,9.5063457,9.5063457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.82,47.62,55.36,51.57,6.666666666666667,2,3,0,0,13,8,3,1,843.5,363301.06,-13469.582,290697.75,48371.117,0,0,1409.3521 +6079,7418,13251,-9,13250,13249,1,0,29,0,0,0,2,2,-9,0,2,6.4462905,6.6417494,0,0,0,-979.45325,0,2,2,2021,11,4,7,0,1,4,1,10.052897,10.052897,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,-9,-9,6.666666666666667,2,3,0,0,8,8,2,1,889,16446.43,0,0,0,0,0,178.9848 +6079,7419,13252,-9,13250,13249,1,0,21,0,0,0,2,2,-9,0,4,7.47014,7.5108967,4.8703403,0,0,-907.08344,0,3,3,2021,22,8,38,44,1,8,1,6.4230056,6.4230056,0,0,0,0,0,0,0,0,0,0,0,4.3502855,0,57.06,55.24,-9,-9,10,2,3,0,0,5,8,3,1,2034,-150379.41,0,0,0,0,0,849.77625 +6080,7420,13253,13254,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9174771,8.0212746,5.4097214,11,0,34.3153,0,3,3,2021,7,0,30,30,1,0,0,12.967897,12.967897,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3811111,57.33,53.46,54.58,46.41,1.666666666666667,1,1,0,0,11,12,5,1,2581,1455875.3,1047021.4,168510.97,0,0,0,2945.4468 +6080,7420,13254,13253,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3205185,8.2950592,0,11,0,-123.16077,0,3,3,2021,7,0,35,38,1,0,0,13.662509,13.662509,0,0,0,0,0,0,0,7,0,0,0,7.171061,0,54.58,46.41,57.33,53.46,6.666666666666667,1,1,0,0,12,12,5,1,2581,1455875.3,1047021.4,168510.97,0,0,0,2945.4468 +6081,7421,13255,13256,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.2934961,7.912951,0,12,-8,79.651169,0,2,3,2021,23,10,38,38,1,10,0,14.428111,14.428111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.64,60.82,46.56,50.26,3.333333333333333,1,1,0,1,12,5,4,1,794.5,1168229.5,1079601.9,167303.48,8688.6152,34662.734,0,2671.7373 +6081,7421,13256,13255,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.393198,8.0684872,0,12,8,-32.831841,0,2,3,2021,12,0,40,47,1,0,0,10.218745,10.218745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,23.64,60.82,6.666666666666667,1,1,0,0,12,5,4,1,794.5,1168229.5,1079601.9,167303.48,8688.6152,34662.734,0,2671.7373 +6081,7422,13257,-9,13255,13256,1,1,25,0,0,0,1,1,-9,0,4,7.7879987,7.6281691,0,0,0,-997.64154,0,2,2,2021,14,3,38,38,1,3,1,7.7074394,7.7074394,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,60.82,-9,-9,6.666666666666667,1,1,0,1,10,5,3,1,291,187983.78,83964.508,0,0,0,0,1313.8666 +6081,7423,13258,-9,13255,13256,1,0,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-965.31946,-9,2,2,2021,34,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.49,55.32,-9,-9,3.333333333333333,1,1,0,1,0,5,1,1,1810,121919.87,0,0,0,0,0,0 +6081,7424,13259,-9,13255,13256,1,0,18,0,0,1,3,0,0,0,3,0,0,0,0,0,-931.88824,-9,2,2,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.54,54.48,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,79,-25615.684,0,0,0,0,0,0 +6082,7425,13260,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3193054,8.5726337,0,0,-1104.3884,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5625653,8.4608583,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,1051,975580.5,729671.5,353770.66,0,0,0,2982.7139 +6083,7426,13261,13263,-9,-9,1,0,51,1,2,0,2,2,-9,0,3,0,0,0,7,-7,-169.21773,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,50,49,7,2,3,0,0,1,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6083,7426,13262,-9,13261,13263,1,0,14,1,2,1,3,0,-9,0,5,0,0,0,0,0,-821.1756,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6083,7426,13263,13261,-9,-9,1,1,58,1,2,0,2,2,-9,0,3,9.2828493,9.1355782,0,32,7,-118.64988,0,-9,-9,2021,10,0,50,20,1,1,0,26.992163,26.992163,0,0,.05,0,0,0,0,0,1,1,0,0,0,50,49,47,49,7,2,3,0,0,12,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6084,7427,13264,13265,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.4685326,8.266901,0,5,-4,-22.156122,0,-9,-9,2021,8,0,44,35,1,0,0,7.7661452,7.7661452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,52.08,55.93,8.333333333333334,1,1,0,0,5,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7427,13265,13264,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.7069893,8.5353613,0,5,4,50.661079,0,2,2,2021,12,0,40,45,1,0,0,14.73179,14.73179,.05,.05,0,0,0,0,0,0,1,1,0,4.1367617,0,52.08,55.93,47.46,52.7,6.666666666666667,1,1,0,0,10,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7427,13266,-9,-9,13265,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78821,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7428,13267,-9,-9,13265,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1007.5966,0,2,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,11,1,1,1227,0,0,0,0,0,0,-133.797 +6085,7429,13268,13270,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.6000767,9.032835,0,29,6,-33.714745,0,-9,2,2021,11,0,45,50,1,0,0,15.454,15.454,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,49.86,55.31,8.333333333333334,1,1,0,0,10,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7429,13269,-9,13270,13268,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-933.77429,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7429,13270,13268,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8474703,8.388299,0,30,-6,-10.22351,0,2,2,2021,8,0,42,43,1,0,0,18.467031,18.467031,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.86,55.31,44.02,60.7,8.333333333333334,1,1,0,0,10,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7430,13271,-9,13270,13268,1,1,24,0,0,0,1,1,-9,0,5,8.0692492,7.6181898,0,0,0,-990.94159,0,1,2,2021,14,3,35,35,1,3,1,8.1939154,8.1939154,0,0,0,0,0,0,0,0,1,1,0,0,0,35.53,63.81,-9,-9,3.333333333333333,1,1,0,0,2,4,3,1,193,-71598.078,0,0,0,0,0,393.68689 +6086,7431,13272,-9,13273,-9,1,1,28,0,0,0,2,2,-9,0,4,7.5538564,7.5076981,0,0,0,-1111.0372,0,2,-9,2021,10,0,48,20,1,1,1,5.1883698,5.1883698,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,2,0,0,1,8,3,0,185,-112164.9,0,0,0,0,0,1752.6774 +6086,7432,13273,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.2919922,8.2717724,0,0,0,-908.6427,0,3,-9,2021,10,1,43,40,1,1,0,8.7854662,8.7854662,0,0,0,0,0,0,0,0,0,0,0,0,0,55.7,26.92,-9,-9,6.666666666666667,4,2,0,0,4,8,4,0,761,497855.75,143974.73,322741.84,77078.602,0,0,1479.9435 +6086,7433,13274,-9,13273,-9,1,0,24,0,0,0,2,2,-9,0,4,7.9119711,7.9068742,0,0,0,-1058.8929,0,2,-9,2021,13,3,41,65,1,3,1,9.4947147,9.4947147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.33,47.96,-9,-9,6.666666666666667,4,2,0,0,3,8,4,0,888,-148624.25,123733.73,0,0,0,0,883.96777 +6087,7434,13275,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-932.5589,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.69,44.14,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,211,102025.2,0,0,0,0,0,1039.2933 +6088,7435,13276,13277,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,7.8600893,7.8532834,25,-5,10.115285,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.031867,7.7831426,56.74,33.83,27.64,32.64,8.333333333333334,1,1,0,0,0,10,3,1,835.5,931348.13,690068.31,268523.06,12103.575,0,4100.8379,3385.1274 +6088,7435,13277,13276,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.3959789,7.4069433,24,5,30.484392,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2164237,7.2582192,27.64,32.64,56.74,33.83,1.666666666666667,4,2,0,0,0,10,3,1,835.5,931348.13,690068.31,268523.06,12103.575,0,4100.8379,3385.1274 +6089,7436,13278,13279,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.0925946,6.1923738,0,33,-8,-118.55401,0,2,3,2021,10,1,35,35,1,1,0,2.2866983,2.2866983,0,0,0,0,0,0,0,2,0,0,0,0,0,52.4,52.91,58.32,50.22,6.666666666666667,1,1,0,0,14,12,4,1,905,530776.13,615220.63,0,0,3202.7029,760.9126,1871.8 +6089,7436,13279,13278,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.2042866,7.8967996,0,33,8,-.70890623,0,2,2,2021,7,0,40,72,1,0,0,10.983941,10.983941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,52.4,52.91,8.333333333333334,1,1,0,0,14,12,4,1,905,530776.13,615220.63,0,0,3202.7029,760.9126,1871.8 +6090,7437,13280,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,6.9452434,7.6282701,6.8732562,0,0,-982.48871,0,2,2,2021,6,0,20,20,1,0,0,6.0456605,6.0456605,0,0,0,0,0,0,0,0,1,1,0,0,7.0214043,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,540,605652.63,313124.25,251174.81,0,0,0,1863.8163 +6091,7438,13281,13282,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.341661,7.3753071,0,11,-12,13.887155,0,-9,-9,2021,13,1,24,24,1,1,0,8.5071669,8.5071669,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,44.02,28.89,3.333333333333333,1,1,0,1,7,6,3,0,628,203362.06,107476.29,178850.84,35195.547,0,807.67328,2206.7739 +6091,7438,13282,13281,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.8673763,6.900291,11,12,-32.16254,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,1,0,9.830554,0,7,1,1,0,0,6.6645236,44.02,28.89,40.88,59.72,5,1,1,0,1,8,6,3,0,628,203362.06,107476.29,178850.84,35195.547,0,807.67328,2206.7739 +6092,7439,13283,13284,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2548428,8.0299149,0,27,-1,31.401392,0,3,3,2021,9,0,40,45,1,0,0,9.6398764,9.6398764,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.1,59.11,8.333333333333334,1,1,0,0,13,9,3,1,686,603036.75,338132.25,256807.69,3361.0959,0,5634.8232,1388.0427 +6092,7439,13284,13283,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,0,0,27,1,12.839769,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.37,54.8,1.666666666666667,1,1,0,0,11,9,3,1,686,603036.75,338132.25,256807.69,3361.0959,0,5634.8232,1388.0427 +6093,7440,13285,13286,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8161821,7.9605923,0,8,3,-6.3327413,0,-9,-9,2021,17,5,30,30,1,5,0,8.2472391,8.2472391,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.1,40.84,45.59,42.88,8.333333333333334,2,3,0,0,10,8,3,0,1603,353210.09,-33795.945,370926.34,0,0,0,1864.5789 +6093,7440,13286,13285,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-80.041763,0,3,3,2021,11,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.59,42.88,44.1,40.84,8.333333333333334,2,3,1,0,1,8,3,0,1603,353210.09,-33795.945,370926.34,0,0,0,1864.5789 +6093,7441,13287,-9,13286,13285,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-848.44525,0,3,2,2021,10,1,0,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.38,54.89,-9,-9,10,2,3,1,0,3,8,1,0,145,62696.563,0,0,0,0,0,0 +6093,7442,13288,-9,13286,13285,1,1,19,0,0,0,2,2,-9,0,4,7.7445598,7.8697019,0,0,0,-980.20624,0,3,2,2021,7,0,25,20,1,0,1,12.130801,12.130801,0,0,0,0,0,0,0,0,1,1,0,0,0,54.19,53.75,-9,-9,8.333333333333334,2,3,0,0,2,8,3,0,3877,-70705.344,0,0,0,0,0,493.72162 +6094,7443,13289,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.4016366,6.5651288,0,0,-991.64526,0,2,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9230571,6.5257654,28.74,42.27,-9,-9,3.333333333333333,1,1,0,0,9,9,2,1,1737,261470.44,245498.19,0,0,0,0,1379.7968 +6095,7444,13290,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.7347279,7.7667637,0,0,-1098.0369,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.53483796,0,27.818205,0,1,1,0,0,7.3787775,67.5,21.89,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,614,389026.75,94820.797,302187.31,0,0,0,1149.1117 +6096,7445,13291,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,8.0934572,7.9708295,0,0,-1026.2958,0,-9,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6923599,7.8528166,46.22,31.87,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,637,2166426.8,392729.22,1247849.5,0,0,0,1283.3494 +6097,7446,13292,13293,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.6922712,8.3418322,0,11,0,-138.17735,0,-9,-9,2021,11,2,107,-9,1,2,0,7.555521,7.555521,.05,.05,0,0,0,0,0,19,0,0,0,0,0,60.29,52.11,30.1,43.29,8.333333333333334,1,1,0,0,13,5,5,0,1361,361017.44,28736.961,283713.72,179128.5,0,0,3728.3801 +6097,7446,13293,13292,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,7.120697,6.8988757,0,11,0,10.552439,0,-9,-9,2021,19,7,20,20,1,7,0,7.0885458,7.0885458,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.1,43.29,60.29,52.11,1.666666666666667,1,1,0,1,7,5,5,0,1361,361017.44,28736.961,283713.72,179128.5,0,0,3728.3801 +6098,7447,13294,-9,-9,13295,1,1,54,0,0,0,2,2,-9,0,4,7.9315214,8.1063194,0,0,0,-1017.8572,0,3,3,2021,10,0,40,40,1,0,0,9.2840996,9.2840996,0,0,0,0,0,0,0,0,1,1,0,3.0844491,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,414,177701.16,0,0,0,0,0,1018.0888 +6098,7448,13295,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.21393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.846406,0,55,45,-9,-9,8,1,1,0,0,0,2,1,1,494,-68178.852,0,0,0,17331.113,0,352.78479 +6099,7449,13296,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.2332172,7.0714488,0,0,-1120.099,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0593939,6.9691882,59.18,38.87,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,326,10889.345,0,0,0,0,0,1054.7684 +6100,7450,13297,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.9804845,6.5081534,0,0,-1088.4315,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.25145492,6.9123282,55.75,29.63,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,333,291281.28,82312.688,138104.02,0,0,0,913.09216 +6101,7451,13298,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8557024,7.7821999,0,0,0,-1092.9153,0,2,2,2021,10,1,45,40,1,1,0,6.6752243,6.6752243,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1214,162673.03,0,0,0,0,0,1113.9728 +6102,7452,13299,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.0920601,7.8441105,0,0,-872.33716,0,3,2,2021,10,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.318131,7.5803833,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,332,1055656.6,847670.38,154377.36,0,0,0,1574.1021 +6103,7453,13300,13301,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,7.3897085,6.9476342,7,-10,-3.8843198,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.357856,1.9277809,20.283243,0,1,1,0,0,7.3038321,52.14,38.32,55,45,6.666666666666667,1,1,0,0,0,13,3,1,501.5,546777.19,384131.25,128224.67,0,0,0,2962.0649 +6103,7453,13301,13300,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.2232966,7.3489399,7,10,-55.926231,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.437017,0,19.659798,14.5,1,1,0,0,7.5524468,55,45,52.14,38.32,8,1,1,0,0,3,13,3,1,501.5,546777.19,384131.25,128224.67,0,0,0,2962.0649 +6104,7454,13302,-9,13303,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1054.2307,-9,3,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.51,35.73,-9,-9,10,1,1,1,0,0,13,1,1,338,-201890.19,0,0,0,2546.4299,0,1408.6427 +6104,7455,13303,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.2655,0,3,3,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.7,35.28,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,1158,-20188.188,0,0,0,0,0,1026.6595 +6105,7456,13304,13305,-9,-9,1,1,63,0,3,0,2,2,-9,0,3,8.2451658,8.2356939,4.9092789,40,3,-58.897812,0,2,3,2021,11,3,40,40,1,3,0,11.010011,11.010011,.05,.05,0,0,0,0,0,2,1,1,0,6.3724656,5.0048199,61.1,27.44,49.35,59.64,8.333333333333334,1,1,0,0,9,2,3,1,634,344974.91,335361.75,0,0,1248.1199,18839.746,2692.6104 +6105,7456,13305,13304,-9,-9,1,0,60,0,3,0,1,1,-9,0,4,7.42623,7.5571232,5.1226544,40,-3,-83.384758,0,3,3,2021,10,0,17,20,1,0,0,14.168109,14.168109,.05,.05,0,0,0,0,0,27,1,1,0,3.6910739,4.9917226,49.35,59.64,61.1,27.44,8.333333333333334,1,1,0,0,9,2,3,1,634,344974.91,335361.75,0,0,1248.1199,18839.746,2692.6104 +6105,7457,13306,-9,13305,13304,1,1,33,0,3,0,2,2,-9,1,5,6.6924448,6.7808814,0,0,0,-1028.7524,0,1,2,2021,3,0,19,21,1,0,1,5.0737033,5.0737033,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,9,2,2,1,1944,-1434.0696,4354.6123,0,0,0,100.56402,1536.0587 +6105,7458,13307,-9,13308,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13308,-9,13305,13304,1,0,35,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1087.8018,0,1,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.68,20.24,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13309,-9,13308,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.84857,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13310,-9,13308,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.73627,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6106,7459,13311,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.2656164,8.0643473,0,0,0,-795.38879,0,2,1,2021,11,0,12,12,1,0,0,33.883301,33.883301,.05,.05,0,0,0,0,0,0,0,0,0,7.5008593,0,32.76,57.87,-9,-9,5,1,1,0,0,7,5,4,1,389,-2426.679,-65005.504,96592.734,57375.074,0,452.37704,2682.1543 +6107,7460,13312,13313,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.6948166,8.7617111,6.5935879,8,-1,-49.353516,0,2,1,2021,9,0,36,35,1,0,0,12.700084,12.700084,.05,.05,.05,0,0,0,0,0,0,0,0,4.8010368,6.7552462,54,54,39.76,53.33,8,1,1,0,0,1,12,5,0,402,1187250,1139618.8,195357.16,33353.605,9012.0098,7332.6865,4067.8599 +6107,7460,13313,13312,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0304632,8.1183529,0,40,1,-77.635658,0,2,1,2021,12,3,32,31,1,3,0,11.655499,11.655499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.76,53.33,54,54,8.333333333333334,1,1,0,0,10,12,5,0,402,1187250,1139618.8,195357.16,33353.605,9012.0098,7332.6865,4067.8599 +6108,7461,13314,13315,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.3334446,8.0433521,0,8,2,-20.79917,0,2,2,2021,7,0,37,37,1,0,0,10.323729,10.323729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.41,52.67,8.333333333333334,1,1,0,0,8,13,5,1,1733.5,479104.63,364426.16,79512.469,0,2308.7646,2949.4893,3948.9775 +6108,7461,13315,13314,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.9146738,9.0152626,0,8,-2,59.209499,0,3,2,2021,13,1,38,37,1,1,0,19.036346,19.036346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.41,52.67,54.96,53.17,1.666666666666667,1,1,0,0,8,13,5,1,1733.5,479104.63,364426.16,79512.469,0,2308.7646,2949.4893,3948.9775 +6108,7462,13316,-9,13315,13314,1,1,20,0,0,0,2,2,-9,0,3,7.7268291,7.4546428,0,0,0,-896.79108,0,1,1,2021,12,0,40,0,1,0,1,6.8487706,6.8487706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,868,-287312.41,-5844.7793,0,0,8196.585,1454.5406,1265.8608 +6108,7463,13317,-9,13315,13314,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.94012,-9,1,1,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,56.31,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,354,0,0,0,0,0,0,0 +6109,7464,13318,-9,-9,-9,1,0,19,1,0,1,2,0,-9,0,4,0,5.2425632,5.453496,0,0,-1139.8273,-9,-9,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1708159,0,29.72,41.83,-9,-9,5,1,1,0,0,2,1,2,0,511,7239.0879,0,0,0,0,0,13.900797 +6109,7464,13319,-9,13318,-9,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1000.3325,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,1,2,0,511,7239.0879,0,0,0,0,0,13.900797 +6110,7465,13320,13321,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5962801,8.5141945,0,12,-3,-67.905548,0,3,1,2021,8,0,22,22,1,0,0,28.36433,28.36433,.05,.05,0,0,0,0,0,42,1,1,0,0,0,44.7,53.68,42.43,49.22,8.333333333333334,1,1,0,0,14,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6110,7465,13321,13320,-9,-9,1,0,46,0,2,0,1,1,-9,1,3,8.5302401,8.3547812,0,12,3,5.4610701,0,2,3,2021,9,0,31,27,1,0,0,20.166269,20.166269,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.43,49.22,44.7,53.68,8.333333333333334,1,1,0,0,14,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6110,7465,13322,-9,13321,13320,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.0452,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6111,7466,13323,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,6.8633571,6.6975951,0,0,-976.82562,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,3.6586995,0,0,1,1,0,4.0611062,6.5985312,58.71,20.26,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1376,69383.477,210398.56,0,0,0,0,1245.0879 +6112,7467,13324,13325,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.635437,8.0517874,10,2,102.49715,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2539101,7.4613132,57.73,54.53,46.03,50.54,8.333333333333334,1,1,0,0,0,2,3,1,945.5,1196849.1,648203.25,453344.94,0,0,0,1499.3943 +6112,7467,13325,13324,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-13.598399,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3246324,0,46.03,50.54,57.73,54.53,8.333333333333334,1,1,0,0,3,2,3,1,945.5,1196849.1,648203.25,453344.94,0,0,0,1499.3943 +6113,7468,13326,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1788077,7.2300334,0,0,-953.06415,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.268949,7.2741327,64.38,15.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,445,-43621.707,127865.16,0,0,0,0,1658.3663 +6114,7469,13327,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,7.3736143,7.3450122,0,0,-992.13348,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6462994,7.688683,59.64,46.95,-9,-9,10,1,1,0,0,0,6,3,1,453,660653,188639.64,377680.81,0,0,0,463.58069 +6115,7470,13328,13329,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,56,-3,-109.77166,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38625634,0,51.98,28.98,59.86,42.52,8.333333333333334,1,1,0,0,0,1,3,1,350.5,681825.63,495481.25,300973.19,0,0,0,2990.9878 +6115,7470,13329,13328,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.1243238,7.9838419,56,3,50.024796,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6519322,8.2036505,59.86,42.52,51.98,28.98,8.333333333333334,1,1,0,0,0,1,3,1,350.5,681825.63,495481.25,300973.19,0,0,0,2990.9878 +6116,7471,13330,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1081.001,0,3,3,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.81,53.02,-9,-9,3.333333333333333,1,1,1,0,2,5,1,0,501,96475.391,28097.572,0,0,0,0,2031.2933 +6117,7472,13331,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.0880923,7.2170587,0,0,0,-1033.7407,0,2,2,2021,10,1,55,37,1,1,0,2.7007124,2.7007124,.05,.05,0,0,0,0,0,0,0,0,0,7.8087282,0,54.61,43.6,-9,-9,8.333333333333334,1,1,0,0,4,1,2,1,1245,-36854.719,24264.375,0,0,0,0,1900.8636 +6118,7473,13332,13333,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.5524554,7.1044188,0,11,15,44.211758,0,2,2,2021,10,1,24,25,1,1,0,6.5299416,6.5299416,0,0,0,0,0,0,0,0,0,0,0,3.9297302,0,48.28,53.42,48.87,58.55,8.333333333333334,1,1,0,0,14,5,4,1,509.5,174529.38,63057.801,194581.59,0,0,0,2359.4956 +6118,7473,13333,13332,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.4854794,8.4847565,0,11,-15,-38.083405,0,3,3,2021,12,0,58,50,1,0,0,8.2918215,8.2918215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,48.28,53.42,8.333333333333334,1,1,0,0,13,5,4,1,509.5,174529.38,63057.801,194581.59,0,0,0,2359.4956 +6119,7474,13334,13335,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0484734,8.4117241,46,0,37.882515,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.005692,8.1505938,54.2,57.49,51.65,52.38,8.333333333333334,1,1,0,0,7,10,4,1,110,1192006,839451.13,567269.19,186117.94,20002.016,4878.7842,3213.0847 +6119,7474,13335,13334,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.9184651,7.0119934,44,0,-67.72435,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8491569,7.1131873,51.65,52.38,54.2,57.49,10,1,1,0,0,6,10,4,1,110,1192006,839451.13,567269.19,186117.94,20002.016,4878.7842,3213.0847 +6120,7475,13336,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1026.1912,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.64,44.13,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,462,41156.734,0,0,0,0,0,1326.3068 +6121,7476,13337,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,7.7614222,8.0753937,0,0,0,-1009.0181,0,3,3,2021,11,0,30,30,1,0,0,10.649443,10.649443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.55,45.62,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,817,131200,112689.9,0,0,0,0,1274.3529 +6122,7477,13338,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4680262,8.5730762,0,0,0,-950.74921,0,-9,-9,2021,12,0,32,30,1,0,0,18.249529,18.249529,.05,.05,0,0,0,0,0,0,0,0,0,1.3548247,0,38.18,54.1,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,714,135426.16,82998.883,0,0,0,0,1755.2083 +6123,7478,13339,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,8.0678453,8.0116358,0,0,-954.31073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6789093,8.1754608,56.35,51.16,-9,-9,10,1,1,0,0,0,2,4,1,374,678488.06,534039.44,162368.53,0,0,0,2040.7662 +6124,7479,13340,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.9474707,6.7097826,0,0,-891.14368,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.4014173,0,46.602238,0,1,1,0,6.1115084,7.3521414,54,51,-9,-9,10,1,1,0,0,0,5,3,1,403,1061523.6,215847.48,195092.64,0,0,0,918.29224 +6125,7480,13341,13342,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,10,0,-19.691357,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0635571,0,42.61,38.79,48.74,50.46,6.666666666666667,1,1,0,0,8,10,2,1,490.5,700172,93579.422,324090.81,0,0,0,1032.9252 +6125,7480,13342,13341,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.6097717,5.5931897,10,9,123.11092,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0025458,5.203371,48.74,50.46,42.61,38.79,8.333333333333334,1,1,0,0,12,10,2,1,490.5,700172,93579.422,324090.81,0,0,0,1032.9252 +6126,7481,13343,13345,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.0820394,6.92663,0,6,4,16.187838,-9,-9,-9,2021,9,0,20,0,1,0,0,5.4451303,5.4451303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.77,57.75,27.95,47.88,10,2,3,0,0,8,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6126,7481,13344,-9,13345,13343,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1003.2089,-9,3,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6126,7481,13345,13343,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,29,-4,-151.3905,0,3,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.95,47.88,41.77,57.75,6.666666666666667,2,3,0,0,0,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6127,7482,13346,13347,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.4659491,6.4100895,11,-1,-127.41057,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0259051,6.2753363,43.41,50.06,29.78,17.81,6.666666666666667,1,1,0,0,0,11,3,1,523.5,548992.94,452018.06,172496.47,0,0,-84.092293,2452.9944 +6127,7482,13347,13346,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.8693342,7.8864126,11,1,68.305206,0,3,3,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0743103,8.3041134,29.78,17.81,43.41,50.06,1.666666666666667,1,1,0,0,0,11,3,1,523.5,548992.94,452018.06,172496.47,0,0,-84.092293,2452.9944 +6128,7483,13348,13349,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,9.5303812,9.6521406,0,8,1,61.498089,0,3,2,2021,19,7,55,50,1,7,0,35.846779,35.846779,0,0,0,0,0,0,0,0,0,0,0,6.5927987,0,35.22,56.72,46.98,59.35,6.666666666666667,1,1,0,0,10,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6128,7483,13349,13348,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.6107101,8.6754522,0,10,-1,-18.985542,0,1,1,2021,9,0,40,37,1,0,0,19.442879,19.442879,.05,.05,.05,0,0,0,0,0,0,0,0,1.7770888,0,46.98,59.35,35.22,56.72,8.333333333333334,1,1,0,0,10,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6128,7483,13350,-9,13348,13349,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.0369,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6129,7484,13351,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.97736,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.9347548,0,49.92,34.09,-9,-9,5,1,1,0,0,0,6,1,1,389,42059.277,0,0,0,0,0,1972.8784 +6129,7485,13352,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,4.0670948,3.7806649,0,0,-1029.7235,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7114589,4.1339092,48.67,32.02,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,775,351588,9955.4277,156947.16,0,0,0,1557.1053 +6130,7486,13353,13354,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.3269501,6.7683811,58,8,8.0112495,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6197972,55,45,52,45,8,2,3,0,0,0,8,2,1,271,208692.16,-10382.215,134655.16,0,0,0,1746.2043 +6130,7486,13354,13353,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,58,-8,88.273224,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,8,2,1,271,208692.16,-10382.215,134655.16,0,0,0,1746.2043 +6130,7487,13355,-9,13354,13353,1,1,56,0,0,0,2,2,-9,0,3,8.327981,8.2300615,0,0,0,-1054.7161,0,3,3,2021,10,0,37,38,1,0,0,11.732014,11.732014,.05,.05,0,0,0,0,0,7,1,1,0,6.5074234,0,48.45,57.49,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,322,836283.81,801126.88,0,0,0,0,2346.2529 +6131,7488,13356,13357,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,44,-2,12.292667,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7586238,0,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,0,9,3,1,340,1136929,724916,334808.63,0,1875.1313,0,1120.8107 +6131,7488,13357,13356,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.5731854,7.8409362,44,2,42.862103,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0803757,7.8347526,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,0,9,3,1,340,1136929,724916,334808.63,0,1875.1313,0,1120.8107 +6132,7489,13358,13359,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,15,-1,23.849993,0,2,1,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.87,21.25,52.99,51.28,1.666666666666667,1,1,0,0,4,4,4,1,489,172621.09,25892.148,0,0,0,5695.6636,3968.1294 +6132,7489,13359,13358,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7903013,8.9220781,0,15,1,-50.247124,0,2,2,2021,9,0,63,0,1,0,0,14.239352,14.239352,.05,.05,0,0,0,0,0,42,1,1,0,0,0,52.99,51.28,33.87,21.25,8.333333333333334,1,1,0,0,9,4,4,1,489,172621.09,25892.148,0,0,0,5695.6636,3968.1294 +6133,7490,13360,-9,13362,13361,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1125.1931,-9,2,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13361,13362,-9,-9,1,1,43,0,1,0,2,2,-9,0,5,9.0636444,8.9866247,0,7,3,-48.454517,0,-9,-9,2021,8,0,52,80,1,0,0,21.490137,21.490137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,60.12,54.8,8.333333333333334,1,1,0,0,5,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13362,13361,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7178392,7.1893725,0,21,-3,10.75923,0,3,3,2021,6,0,24,24,1,0,0,7.8368106,7.8368106,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.73,58.82,10,1,1,0,0,7,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13363,-9,13362,13361,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.5637,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6134,7491,13364,13365,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.5230427,7.0102015,48,-2,-100.77458,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3446851,67.65000000000001,19.06,54.63,58.83,8.333333333333334,1,1,0,0,0,7,4,1,1083.5,1241051.5,655260.19,337896.5,0,0,0,3731.6738 +6134,7491,13365,13364,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.3147917,7.8608699,48,2,107.81346,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4817238,8.1445227,54.63,58.83,67.65000000000001,19.06,8.333333333333334,1,1,0,0,8,7,4,1,1083.5,1241051.5,655260.19,337896.5,0,0,0,3731.6738 +6135,7492,13366,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.0098453,7.1583633,0,0,0,-1059.7411,0,2,1,2021,6,0,35,40,1,0,0,3.9067957,3.9067957,0,0,0,0,0,0,.55855453,0,1,1,0,0,0,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,109,61485.367,0,162037.97,0,0,0,764.94305 +6136,7493,13367,13371,-9,-9,1,0,39,1,3,0,1,1,-9,0,3,8.9381628,8.9807711,0,6,-2,-28.567238,0,-9,1,2021,9,0,12,5,1,0,0,65.594925,65.594925,.05,.05,.05,0,0,0,0,2,0,0,0,.7250632,0,50.18,47.09,44.85,48.15,8.333333333333334,1,1,0,0,8,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13368,-9,13367,13371,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.9097,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13369,-9,13367,13371,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.74146,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13370,-9,13367,13371,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.9946,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13371,13367,-9,-9,1,1,41,1,3,0,1,1,-9,0,3,9.5349884,9.8831253,0,6,2,18.231356,0,2,2,2021,11,0,50,45,1,0,0,40.550148,40.550148,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,44.85,48.15,50.18,47.09,6.666666666666667,1,1,0,0,8,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6137,7494,13372,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,0,0,0,0,0,-800.91852,1,2,2,2021,13,1,0,38,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.16,61.04,-9,-9,6.666666666666667,3,4,0,0,7,5,1,1,1095,0,0,0,0,0,0,320.05139 +6137,7495,13373,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.5968218,7.3082705,0,0,0,-984.97064,-9,3,-9,2021,7,0,20,0,1,0,1,11.04949,11.04949,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,7,5,3,1,2137,60910.211,0,0,0,0,0,712.61908 +6138,7496,13374,13377,-9,-9,1,1,44,0,2,0,2,2,-9,1,1,7.7058887,7.939806,0,1,1,85.718628,-9,2,2,2021,17,5,40,0,1,5,0,7.0370979,7.0370979,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,35.9,26.98,54.2,57.49,3.333333333333333,1,1,0,0,9,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13375,-9,13377,13374,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.8264,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13376,-9,13377,13374,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.21326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13377,13374,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,1,-1,-94.22496,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.9,26.98,8.333333333333334,1,1,0,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7497,13378,-9,13377,13374,1,0,21,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.9302,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,1041,-49120.656,0,0,0,0,-150.95767,0 +6138,7498,13379,-9,13377,13374,1,0,20,0,2,1,2,0,-9,0,4,0,0,0,0,0,-863.92078,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,56.06,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,609,68340.102,0,0,0,0,-1333.5295,0 +6139,7499,13380,13381,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0710821,7.8255973,0,7,-2,-54.387444,0,2,2,2021,20,9,30,32,1,9,0,12.959349,12.959349,0,0,0,0,0,0,0,0,0,0,0,4.5489931,0,33.64,63.93,32.89,65.90000000000001,8.333333333333334,1,1,0,0,9,2,3,1,751.5,263378.88,85324.5,426751.63,275459.69,0,0,2071.3076 +6139,7499,13381,13380,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,6.544662,6.4726987,0,7,2,-28.859287,0,2,2,2021,18,5,35,42,1,5,0,1.9836789,1.9836789,0,0,0,0,0,0,0,0,0,0,0,6.5138826,0,32.89,65.90000000000001,33.64,63.93,5,1,1,0,0,9,2,3,1,751.5,263378.88,85324.5,426751.63,275459.69,0,0,2071.3076 +6140,7500,13382,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7785611,7.569087,0,0,0,-965.19916,0,3,2,2021,10,2,30,40,1,2,0,9.5363474,9.5363474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8.333333333333334,1,1,0,0,14,1,3,1,609,-19146.328,-101222.85,0,0,0,0,235.10962 +6141,7501,13383,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.9280062,7.8047919,0,0,0,-949.50549,0,2,3,2021,7,0,30,80,1,0,0,10.113083,10.113083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,13,3,1,110,16060.928,-51443.473,0,0,0,0,1733.423 +6142,7502,13384,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.9916821,7.7210922,6.3574486,0,0,-932.04169,0,2,2,2021,11,1,17,17,1,1,0,9.2203341,9.2203341,.05,.05,0,0,0,0,0,14.5,1,1,0,6.4168782,0,55.96,47.07,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,411,42010.695,57801.043,124325.73,45355.398,0,0,1251.0565 +6142,7502,13385,-9,13384,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-837.05096,-9,2,-9,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9494398,0,27.9,50.9,-9,-9,1.666666666666667,1,1,0,0,1,6,2,0,411,42010.695,57801.043,124325.73,45355.398,0,0,1251.0565 +6143,7503,13386,13387,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,45,-6,0,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.27,56.66,66.52,32.82,0,2,3,0,0,0,9,1,1,1588.5,447535.66,0,422006.63,0,0,0,1430.4384 +6143,7503,13387,13386,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,45,6,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2252536,0,66.52,32.82,47.27,56.66,6.666666666666667,2,3,0,0,0,9,1,1,1588.5,447535.66,0,422006.63,0,0,0,1430.4384 +6144,7504,13388,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,7.6509557,7.1523142,0,0,0,-962.27094,0,-9,-9,2021,15,3,20,16,1,3,0,11.279961,11.279961,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,44.04,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,1065.5,-115445.25,0,0,0,-1095.2671,0,1758.7373 +6144,7504,13389,-9,13388,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1243,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1065.5,-115445.25,0,0,0,-1095.2671,0,1758.7373 +6145,7505,13390,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,0,0,-913.39514,0,3,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.53,48.35,-9,-9,10,1,1,1,0,0,6,1,0,1019,-5866.4336,0,0,0,0,-702.52808,1384.9966 +6145,7505,13391,-9,13390,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.9885,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,0,1019,-5866.4336,0,0,0,0,-702.52808,1384.9966 +6145,7506,13392,-9,13390,-9,1,1,21,0,1,0,3,3,-9,0,4,0,0,0,0,0,-948.01685,0,3,-9,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.98,65.19,-9,-9,8.333333333333334,4,2,1,0,0,6,1,0,195,78204.68,0,0,0,0,0,850.28479 +6146,7507,13393,13394,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6826239,8.793191,0,5,0,101.71173,0,2,2,2021,6,0,35,35,1,0,0,23.067751,23.067751,.05,.05,0,0,0,0,0,0,0,0,0,7.1781874,0,63.48,51.85,55.96,49.93,10,1,1,0,0,12,7,5,1,240.5,1038943.9,221918.89,577093.69,0,0,0,5652.4546 +6146,7507,13394,13393,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.5388775,8.4675303,0,5,0,-62.58419,0,-9,-9,2021,9,0,38,38,1,0,0,16.08404,16.08404,0,0,0,0,0,0,0,0,0,0,0,6.8658462,0,55.96,49.93,63.48,51.85,8.333333333333334,1,1,0,0,12,7,5,1,240.5,1038943.9,221918.89,577093.69,0,0,0,5652.4546 +6147,7508,13395,13396,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.6884375,9.7691231,0,7,-3,-2.166671,0,1,1,2021,5,0,43,65,1,0,0,41.262299,41.262299,0,0,0,0,0,0,0,0,0,0,0,0,0,60.1,54.82,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,836,299398.69,122088.39,544325.06,384650.5,3237.2134,0,9227.7363 +6147,7508,13396,13395,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.5469761,9.443574,0,7,3,25.992634,0,2,3,2021,9,1,50,58,1,1,0,29.683069,29.683069,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.1,54.82,8.333333333333334,1,1,0,0,9,8,5,1,836,299398.69,122088.39,544325.06,384650.5,3237.2134,0,9227.7363 +6148,7509,13397,13398,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.8604174,7.9088016,6.3987393,39,4,-80.281586,0,3,3,2021,12,0,49,44,1,0,0,5.0929747,5.0929747,.05,.05,.05,0,0,0,0,2,1,1,0,0,5.9861064,43.31,40.08,43.7,33.88,8.333333333333334,1,1,0,0,11,2,5,1,907.5,2500624,1629677.5,0,0,4977.2764,0,5803.2764 +6148,7509,13398,13397,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6368728,9.2147093,8.8904057,39,-4,124.48804,0,1,2,2021,18,5,20,22,1,5,0,8.1396265,8.1396265,0,0,.05,0,0,0,0,7,1,1,0,0,8.7584524,43.7,33.88,43.31,40.08,8.333333333333334,1,1,0,0,11,2,5,1,907.5,2500624,1629677.5,0,0,4977.2764,0,5803.2764 +6149,7510,13399,13400,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.5494432,7.0751257,0,11,-6,-11.32244,0,-9,-9,2021,12,0,10,6,1,0,0,7.4089651,7.4089651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.25,49.63,57.33,53.46,6.666666666666667,1,1,0,0,11,9,4,1,1037,1008833.6,623720.19,365673.81,0,0,0,2013.0745 +6149,7510,13400,13399,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.5170145,8.5711584,0,11,6,133.88191,0,3,3,2021,9,0,40,-9,1,0,0,15.733773,15.733773,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,33.25,49.63,8.333333333333334,1,1,0,0,12,9,4,1,1037,1008833.6,623720.19,365673.81,0,0,0,2013.0745 +6150,7511,13401,13402,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3225799,7.31707,56,2,5.4553394,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2810864,58.07,35.08,35.01,39.9,10,1,1,0,0,0,5,3,1,1126,755527.63,385381.81,191882,0,0,0,2203.5313 +6150,7511,13402,13401,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,7.6165438,7.1333337,9,-2,-51.939419,0,-9,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,5.7725205,0,63.159397,0,1,1,0,5.8108134,7.7641597,35.01,39.9,58.07,35.08,8.333333333333334,1,1,0,0,0,5,3,1,1126,755527.63,385381.81,191882,0,0,0,2203.5313 +6151,7512,13403,13404,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.9855633,7.3267941,0,42,-3,46.048382,0,3,2,2021,12,1,18,18,1,1,0,8.1022587,8.1022587,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,58.56,41.85,8.333333333333334,1,1,0,0,10,5,4,1,297,134235.91,-16882.068,93619.109,0,0,0,1620.6036 +6151,7512,13404,13403,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.845201,8.1651268,6.6378279,42,3,-56.57785,0,3,3,2021,12,0,49,40,1,0,0,5.5598507,5.5598507,0,0,0,0,0,0,0,0,0,0,0,0,6.7056613,58.56,41.85,49.8,56.68,8.333333333333334,1,1,0,0,9,5,4,1,297,134235.91,-16882.068,93619.109,0,0,0,1620.6036 +6152,7513,13405,-9,13408,13407,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.44318,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13406,-9,13408,13407,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.49945,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13407,13408,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.6265044,7.8315916,0,10,1,33.816612,0,3,2,2021,12,0,38,38,1,0,0,9.0461855,9.0461855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,54.13,48.04,0,2,3,0,0,9,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13408,13407,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.8510885,7.7116365,0,10,-1,-109.96857,0,2,2,2021,6,0,38,38,1,0,0,7.7113948,7.7113948,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.13,48.04,40.64,52.96,6.666666666666667,1,1,0,0,9,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6153,7514,13409,-9,13411,13412,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.5295,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13410,-9,13411,13412,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.50635,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13411,13412,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.6071577,8.6262999,0,9,-2,186.29352,0,-9,-9,2021,16,5,50,50,1,5,0,15.720586,15.720586,0,0,0,0,0,0,0,0,1,1,0,2.0115705,0,32.01,62.01,46.51,44.85,6.666666666666667,1,1,0,0,9,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13412,13411,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,0,0,0,9,2,-156.93596,0,2,2,2021,14,3,0,48,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.51,44.85,32.01,62.01,5,1,1,0,0,10,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6154,7515,13413,13414,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.3109064,8.2017651,0,14,-6,-20.220198,0,2,2,2021,8,2,50,50,1,2,0,7.622138,7.622138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.54,57.19,49.24,50.26,8.333333333333334,1,1,0,0,9,8,4,0,1775,643850.13,183700.69,482446.41,188122.41,0,0,3128.5906 +6154,7515,13414,13413,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.6719522,7.7346587,0,14,6,-118.98338,0,2,2,2021,8,1,60,50,1,1,0,3.8062153,3.8062153,.05,.05,0,0,0,0,0,0,0,0,0,1.2717998,0,49.24,50.26,45.54,57.19,8.333333333333334,1,1,0,0,9,8,4,0,1775,643850.13,183700.69,482446.41,188122.41,0,0,3128.5906 +6155,7516,13415,13416,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.3790846,9.47647,0,2,-2,16.565434,-9,-9,-9,2021,11,0,40,0,1,2,0,40.163403,40.163403,.05,.05,0,0,0,0,0,0,0,0,0,4.9796062,0,48,56,40.88,49.19,7,1,1,0,0,1,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13416,13415,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.728076,8.8946915,0,7,2,-12.169129,0,3,2,2021,16,4,35,35,1,4,0,22.622131,22.622131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.88,49.19,48,56,3.333333333333333,1,1,0,0,9,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13417,-9,13415,13416,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.81274,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13418,-9,13415,13416,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.4883,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6156,7517,13419,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.0892,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1853,23137.078,0,0,0,0,0,107.3103 +6156,7518,13420,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-919.13483,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.59,38.96,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,491,221892.36,0,0,0,0,0,156.0571 +6157,7519,13421,-9,-9,13422,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.81561,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,0,1309.5,-5277.3315,0,0,0,0,0,1497.1392 +6157,7519,13422,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.1291094,8.0387096,0,0,0,-1067.7089,0,-9,-9,2021,14,2,38,60,1,2,0,8.9817219,8.9817219,0,0,0,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,1309.5,-5277.3315,0,0,0,0,0,1497.1392 +6158,7520,13423,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.1435242,7.1912727,0,0,-829.94739,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6961808,6.8324013,29.23,45.05,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,1017,226905.38,3224.03,44724.137,0,7880.3213,0,1545.4006 +6159,7521,13424,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5649719,8.4314804,0,0,0,-943.31219,0,-9,-9,2021,15,3,49,37,1,3,0,11.486587,11.486587,.05,.05,0,0,0,0,0,0,0,0,0,2.7450471,0,37.81,62.39,-9,-9,5,1,1,0,0,10,5,5,1,131,-131562.02,115670.87,0,0,0,0,2492.1133 +6160,7522,13425,13426,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6951399,8.8533669,0,3,1,-25.414745,0,2,3,2021,16,5,37,39,1,5,0,19.220161,19.220161,.05,.05,0,0,0,0,0,0,1,1,0,7.1636825,0,40.77,61.04,62.39,56.71,3.333333333333333,1,1,0,0,12,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6160,7522,13426,13425,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,8.9614334,8.8650513,0,3,-1,-79.177139,0,-9,-9,2021,1,0,43,48,1,0,0,26.174229,26.174229,.05,.05,0,0,0,0,0,0,1,1,0,7.1734533,0,62.39,56.71,40.77,61.04,8.333333333333334,2,3,0,0,12,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6160,7522,13427,-9,13425,13426,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.51508,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6161,7523,13428,13429,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,4,-39.41127,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,25.17,50.41,53.71,8.333333333333334,1,1,0,0,0,6,2,1,1106,425011.22,-13748.661,266682.78,0,0,0,1258.0999 +6161,7523,13429,13428,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.1654563,5.1635695,6,-4,-46.128174,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.79832441,5.3034782,50.41,53.71,48.15,25.17,8.333333333333334,1,1,0,0,4,6,2,1,1106,425011.22,-13748.661,266682.78,0,0,0,1258.0999 +6162,7524,13430,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.4821739,6.5213079,0,0,-1103.8501,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1282654,6.5877976,66.25,12.88,-9,-9,10,1,1,0,0,7,5,2,1,252,-125142.72,96266.563,0,0,0,0,2245.5022 +6163,7525,13431,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1160.9082,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.45,31.37,-9,-9,5,1,1,0,0,2,8,1,0,181,-870.32104,56069.836,0,0,0,0,1254.9791 +6164,7526,13432,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.1511126,4.904119,0,0,-927.10052,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.511219,4.6344566,31.99,48.33,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,1343,249553.5,4647.9355,0,0,0,0,754.51184 +6165,7527,13433,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,5.8386922,5.7069974,0,0,-901.95593,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,29.677704,0,0,1,1,0,7.1117373,5.234252,56,44,-9,-9,8,1,1,0,0,0,4,2,0,1680,138004.66,-97988.148,232610.06,0,0,0,3345.708 +6166,7528,13434,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-965.05737,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.02,37.42,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,431,0,0,0,0,0,0,1325.8356 +6166,7529,13435,-9,13434,-9,1,0,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.8002,0,3,-9,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,1882,-53232.805,0,0,0,0,0,1075.1074 +6166,7530,13436,-9,-9,-9,1,0,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-990.65784,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,813,0,0,0,0,0,0,606.25085 +6167,7531,13437,13438,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.6520319,7.9304819,7,8,-99.077988,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7108593,7.8977609,53.49,32.28,42.06,26.84,8.333333333333334,1,1,0,0,0,12,3,1,1313,2054711.5,966500.63,361243.44,0,0,0,2426.9009 +6167,7531,13438,13437,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,7,-8,2.9693651,0,2,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7590084,0,42.06,26.84,53.49,32.28,3.333333333333333,1,1,0,0,1,12,3,1,1313,2054711.5,966500.63,361243.44,0,0,0,2426.9009 +6168,7532,13439,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.071907,7.0677271,0,0,-901.46313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9261875,59.15,44.82,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,1857,417214.31,305444.94,156995.8,0,3172.5833,0,819.67706 +6169,7533,13440,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.1756644,7.2182775,0,0,0,-994.66846,0,2,2,2021,9,1,30,30,1,1,0,4.5160894,4.5160894,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.71,46.52,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7533,13441,-9,13440,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1125.9263,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7533,13442,-9,13440,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.6629,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7534,13443,-9,13440,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-976.44025,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,11,1,1,302,50794.082,0,0,0,2562.9663,0,-365.36722 +6170,7535,13444,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.1664591,8.0554056,0,0,0,-1120.9908,0,2,3,2021,16,4,46,42,1,4,0,7.0137434,7.0137434,0,0,0,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,5,1,1,0,0,9,13,4,0,1776,-82841.75,-98404.109,0,0,0,0,969.8277 +6171,7536,13445,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.77533,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,43,39,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,417,0,0,0,0,0,0,1375.4259 +6171,7537,13446,-9,13445,-9,1,0,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1077.5249,0,3,-9,2021,23,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.14,51.17,-9,-9,6.666666666666667,4,5,0,1,0,13,1,0,162,-109095.86,0,0,0,0,1339.3308,394.22205 +6171,7538,13447,-9,13445,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-945.54187,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.95,56.51,-9,-9,3.333333333333333,4,5,0,1,0,13,1,0,72,-198615.08,0,0,0,0,0,-451.51318 +6172,7539,13448,-9,13449,13451,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.49536,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13449,13451,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.103302,8.028101,0,11,-4,-62.74976,0,3,1,2021,9,1,41,0,1,1,0,10.301786,10.301786,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,44.81,58.17,6.666666666666667,3,4,0,1,3,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13450,-9,13449,13451,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.09894,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13451,13449,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,0,0,0,11,4,-28.09729,0,-9,2,2021,7,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.81,58.17,52.65,51.64,6.666666666666667,3,4,0,0,3,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13452,-9,13449,13451,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.99573,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6173,7540,13453,13455,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.3355408,8.5250196,0,7,-2,23.359673,0,-9,-9,2021,18,7,23,30,1,7,0,20.90296,20.90296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.09,60.15,57.16,56.15,3.333333333333333,1,1,0,1,8,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13454,-9,13453,13455,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.34784,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13455,13453,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.2631693,8.4992447,0,7,2,38.185047,0,3,2,2021,3,0,40,40,1,0,0,14.113162,14.113162,.05,.05,0,0,0,0,0,0,1,1,0,2.8838947,0,57.16,56.15,39.09,60.15,10,1,1,0,0,7,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13456,-9,13453,13455,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.01477,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6174,7541,13457,13458,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.4320469,8.3576508,0,2,1,-15.50472,-9,-9,-9,2021,6,0,38,0,1,0,0,14.986907,14.986907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,6.666666666666667,1,1,0,0,4,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13458,13457,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.9154806,8.8690901,0,8,-1,-36.982357,-9,1,2,2021,6,0,43,0,1,0,0,25.871874,25.871874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13459,-9,13457,13458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7753,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13460,-9,13457,13458,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.4884,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6175,7542,13461,13462,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9354587,8.0196171,0,8,-4,86.448807,0,2,3,2021,7,0,39,36,1,0,0,8.3225527,8.3225527,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,8.333333333333334,1,1,0,0,9,5,3,1,768,836637.06,147926.02,345032,0,0,0,1507.1567 +6175,7542,13462,13461,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,6.9768381,6.9314108,0,8,4,-57.484467,0,2,2,2021,6,0,39,39,1,0,0,2.6225672,2.6225672,0,0,.05,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,10,1,1,0,0,9,5,3,1,768,836637.06,147926.02,345032,0,0,0,1507.1567 +6175,7543,13463,-9,13461,13462,1,1,22,0,0,0,2,2,-9,0,5,7.2546873,7.2700229,0,0,0,-996.4856,0,2,3,2021,6,0,32,40,1,0,1,5.227067,5.227067,0,0,0,0,0,0,0,0,0,0,0,2.623914,0,62.39,56.71,-9,-9,10,1,1,0,0,4,5,3,1,272,36174.895,0,0,0,0,0,-46.242355 +6176,7544,13464,13465,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,8.8175659,8.6046705,5.9370904,30,5,32.338833,0,-9,-9,2021,8,0,35,30,1,0,0,16.80073,16.80073,.05,.05,0,0,0,0,0,0,0,0,0,5.5450974,6.1551886,57.33,53.46,50.75,39.21,8.333333333333334,1,1,0,0,12,2,4,0,789.5,911959.38,741273.81,236592.09,0,0,0,2210.7568 +6176,7544,13465,13464,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,30,-5,-96.396774,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.75,39.21,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,0,789.5,911959.38,741273.81,236592.09,0,0,0,2210.7568 +6176,7545,13466,-9,13465,13464,1,0,30,0,0,0,1,1,-9,0,4,7.9284225,7.8610201,0,0,0,-1021.3984,0,2,2,2021,12,1,38,38,1,1,0,10.530888,10.530888,.05,.05,0,0,0,0,0,0,0,0,0,3.215914,0,42.52,59.9,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,2267,-128893.59,109416.87,0,0,0,0,1315.4019 +6176,7546,13467,-9,13465,13464,1,0,29,0,0,0,1,1,-9,0,4,8.0958929,8.2639465,0,0,0,-1088.1532,0,2,2,2021,18,6,38,-9,1,6,0,7.7210975,7.7210975,.05,.05,0,0,0,0,0,0,0,0,0,4.9655299,0,27.23,62.9,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,913,25017.217,-14112.474,0,0,0,0,1440.4645 +6177,7547,13468,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.9633679,8.040102,0,0,0,-977.40326,0,2,3,2021,34,12,38,38,1,12,0,9.1049776,9.1049776,0,0,0,0,0,0,0,0,0,0,0,0,0,16.07,49.81,-9,-9,0,1,1,0,0,7,4,4,0,352,883657.44,445969,177348.72,0,0,0,1775.9723 +6178,7548,13469,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.9516177,6.9411426,0,0,-894.54541,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,8.2998629,0,0,1,1,0,3.4608843,7.4693828,38.24,25.76,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,165,135589.41,0,140400.92,0,0,0,3283.3369 +6179,7549,13470,13471,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.5967979,7.6708589,56,-2,68.797302,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8580089,7.8167467,51.24,58.84,48.03,37.39,8.333333333333334,1,1,0,0,0,7,3,1,899,2353916.3,701139.38,590095.75,0,0,0,2696.481 +6179,7549,13471,13470,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.3648424,7.5249152,56,2,-91.034172,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1350565,48.03,37.39,51.24,58.84,8.333333333333334,1,1,0,0,0,7,3,1,899,2353916.3,701139.38,590095.75,0,0,0,2696.481 +6180,7550,13472,13473,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.6157784,7.582736,0,15,2,24.087246,0,1,1,2021,7,0,15,16,1,0,0,15.767259,15.767259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13473,13472,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.8201056,8.8723717,0,16,-2,-187.03,0,-9,-9,2021,10,0,37,35,1,0,0,25.005617,25.005617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13474,-9,13472,13473,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.53723,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13475,-9,13472,13473,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.76697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6181,7551,13476,13477,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,7.1573396,7.842453,6.9112506,13,5,82.272476,0,-9,-9,2021,14,2,12,13,1,2,0,11.913249,11.913249,0,0,0,0,0,0,0,2,1,1,0,0,6.7916136,38.4,35.36,51,48,3.333333333333333,1,1,0,0,12,11,3,1,1294.5,792463.94,413174.63,143237.86,0,0,0,1249.0337 +6181,7551,13477,13476,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,6.1589994,6.1530766,13,-5,40.48114,0,-9,-9,2021,10,0,0,37,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.5722103,51,48,38.4,35.36,7,1,1,0,0,0,11,3,1,1294.5,792463.94,413174.63,143237.86,0,0,0,1249.0337 +6182,7552,13478,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1046.3228,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,746,-9945.7998,0,0,0,0,0,1438.6115 +6182,7553,13479,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1118.7229,0,-9,-9,2021,12,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.7,37.65,-9,-9,5,1,1,0,0,3,11,1,0,404,751.96716,-24612.988,212864.23,0,0,0,687.94922 +6182,7554,13480,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-925.92816,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.71,47.23,-9,-9,5,1,1,0,1,0,11,1,0,1106,62119.656,0,0,0,0,0,1301.4838 +6183,7555,13481,13482,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6636982,8.8619137,0,12,-1,-7.0513215,0,-9,-9,2021,9,0,37,37,1,0,0,20.240728,20.240728,.05,.05,.05,0,0,0,0,0,0,0,0,.41236085,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,14,11,5,1,1753,1186184.8,735411.44,279877,0,0,0,5514.502 +6183,7555,13482,13481,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.9894571,8.8594494,0,12,1,65.201797,0,2,2,2021,6,0,37,37,1,0,0,20.239712,20.239712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,14,11,5,1,1753,1186184.8,735411.44,279877,0,0,0,5514.502 +6184,7556,13483,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.2860746,8.01612,0,0,0,-955.45868,0,2,-9,2021,6,0,40,38,1,0,0,10.009478,10.009478,.05,.05,0,0,0,0,0,0,0,0,0,2.2721612,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,684,135315.77,91194.07,50937.777,22697.945,0,0,1517.818 +6185,7557,13484,13486,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,8.8572807,9.139842,0,22,-6,34.661133,0,2,2,2021,2,0,40,40,1,0,0,24.665829,24.665829,.05,.05,0,0,0,0,0,0,0,0,0,3.1678083,0,57.06,57.76,47.72,55.04,8.333333333333334,1,1,0,0,12,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6185,7557,13485,-9,13486,13484,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-968.15186,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6185,7557,13486,13484,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.9523106,9.1564684,0,24,6,138.3472,0,3,3,2021,9,1,29,23,1,1,0,27.558115,27.558115,.05,.05,0,0,0,0,0,0,0,0,0,8.2685919,0,47.72,55.04,57.06,57.76,6.666666666666667,1,1,0,0,10,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6186,7558,13487,13488,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,0,0,0,7,-3,-4.2857862,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.83,45.72,47.46,39,5,1,1,0,0,0,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6186,7558,13488,13487,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.5802412,8.6081734,0,7,3,-44.752716,0,2,3,2021,12,1,45,40,1,1,0,12.624857,12.624857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,39,32.83,45.72,6.666666666666667,1,1,0,0,10,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6186,7558,13489,-9,13487,13488,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8735,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6187,7559,13490,13491,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.2787528,5.4311852,10,-1,-16.463615,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3829479,5.2560019,43.43,55.57,46.93,49.88,8.333333333333334,1,1,0,0,0,11,2,1,393.5,459974.38,170732.14,155215.89,0,0,0,2495.469 +6187,7559,13491,13490,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.4553719,7.3353796,10,1,35.359722,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0037241,46.93,49.88,43.43,55.57,10,1,1,0,0,0,11,2,1,393.5,459974.38,170732.14,155215.89,0,0,0,2495.469 +6188,7560,13492,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6700039,8.6893272,0,0,0,-1069.6479,0,2,3,2021,6,0,36,41,1,0,0,17.35714,17.35714,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,10,8,5,1,839,4117974.8,116850.7,753880,0,0,0,2972.916 +6189,7561,13493,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.5218272,6.6638942,0,0,-1078.5737,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3407888,6.6939564,48.53,50.88,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,892,177076.52,0,0,0,0,896.46912,1260.0931 +6190,7562,13494,13495,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.3315697,6.1626334,52,-3,18.34437,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.4314404,6.2358465,53.9,52.09,54.56,22.9,8.333333333333334,1,1,0,0,0,12,2,1,2672.5,334126.66,151485.78,202273.23,0,0,0,1822.8521 +6190,7562,13495,13494,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,52,3,15.804294,0,2,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,12.998383,0,0,1,1,0,5.0415931,0,54.56,22.9,53.9,52.09,6.666666666666667,1,1,0,0,0,12,2,1,2672.5,334126.66,151485.78,202273.23,0,0,0,1822.8521 +6191,7563,13496,13497,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2197289,7.3930264,48,1,124.95889,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4690323,7.1219397,40.87,44.58,53.73,52.44,8.333333333333334,1,1,0,0,5,6,2,1,888.5,818168.63,417955.22,272012.94,0,0,0,1445.4083 +6191,7563,13497,13496,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,5.6000762,5.7789068,48,-1,-37.841732,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0162168,5.6867151,53.73,52.44,40.87,44.58,8.333333333333334,1,1,0,0,5,6,2,1,888.5,818168.63,417955.22,272012.94,0,0,0,1445.4083 +6192,7564,13498,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.6580081,5.746891,0,0,-1032.772,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8510871,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,909,512811.75,0,333463.44,0,0,0,2729.2024 +6193,7565,13499,13500,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.4915857,7.5973644,8,6,-17.641037,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6950083,7.5979996,54.2,57.49,55.2,49.4,8.333333333333334,1,1,0,0,0,10,3,1,462,2092723.6,1014232.7,465152.5,0,0,0,2972.8569 +6193,7565,13500,13499,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.5770793,7.6781645,37,-6,-67.344009,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.404592,8.0106707,55.2,49.4,54.2,57.49,8.333333333333334,1,1,0,0,10,10,3,1,462,2092723.6,1014232.7,465152.5,0,0,0,2972.8569 +6194,7566,13501,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.858799,8.7146244,0,6,-6,80.514122,0,2,1,2021,13,3,50,50,1,3,0,19.063478,19.063478,0,0,0,0,0,0,0,0,0,0,0,0,0,25.9,62.43,51,56,6.666666666666667,1,1,0,0,10,9,5,0,606,-35378.262,0,0,0,0,0,3190.6536 +6195,7567,13502,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,9.7064018,9.8766623,5.2206073,34,2,-72.739365,0,3,3,2021,13,2,35,35,1,2,0,52.825565,52.825565,0,0,0,0,0,0,0,0,1,1,0,6.5721903,5.4138947,49.35,59.64,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,101,305508.66,0,193608.34,0,0,0,9698.4385 +6195,7568,13503,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.829082,7.842134,34,-2,-101.87109,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4558295,7.5236788,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,8,9,5,1,881,916463.88,183069.97,120175.8,0,0,0,2016.1476 +6196,7569,13504,13506,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,6.290123,6.4237728,0,17,0,-43.158939,0,2,2,2021,13,2,12,23,1,2,0,5.0316944,5.0316944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.71,48.14,59.9,48.18,8.333333333333334,1,1,0,0,10,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6196,7569,13505,-9,13504,13506,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1162.2108,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6196,7569,13506,13504,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.7987432,8.828084,0,17,0,-111.71902,0,2,2,2021,6,0,47,41,1,0,0,17.903259,17.903259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,44.71,48.14,8.333333333333334,1,1,0,0,12,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6197,7570,13507,13508,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,4.7351408,4.6239562,51,-2,-107.75341,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.209856,4.6211534,55.76,28.7,53,46,6.666666666666667,1,1,0,0,0,1,3,1,1394.5,987587.25,610699.31,324138.81,0,2683.3411,-773.29242,2916.1914 +6197,7570,13508,13507,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.7409582,7.9184313,51,2,24.540348,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,26.071026,0,0,1,1,0,0,7.6613193,53,46,55.76,28.7,8,1,1,0,0,0,1,3,1,1394.5,987587.25,610699.31,324138.81,0,2683.3411,-773.29242,2916.1914 +6198,7571,13509,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-947.67767,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,0,12,2,1,248,-141055.06,0,0,0,0,0,0 +6198,7572,13510,13511,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,5.8345556,5.7645102,0,1,-4,12.746771,-9,3,2,2021,10,1,55,0,1,1,0,.75568402,.75568402,.05,.05,0,0,0,0,0,7,0,0,0,0,0,51.06,56.51,49,48,6.666666666666667,1,1,0,0,10,12,4,1,599.5,1170300.8,574256,388545.81,0,0,0,2457.8608 +6198,7572,13511,13510,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8449097,8.631917,0,1,4,-50.232803,-9,3,3,2021,11,0,24,0,1,2,0,26.378748,26.378748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,48,51.06,56.51,7,1,1,0,0,1,12,4,1,599.5,1170300.8,574256,388545.81,0,0,0,2457.8608 +6199,7573,13512,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1134.9869,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.09,36.81,-9,-9,3.333333333333333,1,1,0,1,8,13,1,1,871,223539.53,0,192387.7,19913.242,0,0,782.02502 +6200,7574,13513,13514,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.3494225,9.3590631,0,3,2,-122.71721,0,3,2,2021,11,0,42,42,1,0,0,30.523899,30.523899,0,0,0,0,0,0,0,0,0,0,0,4.1125021,0,46.98,59.35,49.27,43.54,8.333333333333334,1,1,0,0,9,8,5,1,192.5,3217464.5,1949025.3,1651676.3,390342.38,0,0,6158.6914 +6200,7574,13514,13513,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5427952,8.8321238,0,3,-2,-9.2423477,0,-9,-9,2021,10,2,36,45,1,2,0,17.378538,17.378538,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49.27,43.54,46.98,59.35,8.333333333333334,1,1,0,0,2,8,5,1,192.5,3217464.5,1949025.3,1651676.3,390342.38,0,0,6158.6914 +6201,7575,13515,13516,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.6485515,7.6307445,0,23,-15,182.34862,0,2,1,2021,13,1,12,12,1,1,0,19.498581,19.498581,0,0,0,0,0,0,0,0,0,0,0,0,0,42.39,50.87,54.37,54.8,6.666666666666667,1,1,0,0,11,9,5,1,706.5,183391.28,0,0,0,0,0,5501.1895 +6201,7575,13516,13515,-9,-9,1,1,58,0,2,0,1,1,-9,0,3,9.6809959,9.6605396,0,11,15,34.289616,0,-9,-9,2021,9,0,50,45,1,0,0,38.277012,38.277012,0,0,0,0,0,0,0,0,0,0,0,5.1597395,0,54.37,54.8,42.39,50.87,6.666666666666667,1,1,0,0,12,9,5,1,706.5,183391.28,0,0,0,0,0,5501.1895 +6202,7576,13517,13518,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,7.9294934,7.9349837,0,10,2,-209.47429,0,-9,2,2021,13,1,40,45,1,1,0,7.2715187,7.2715187,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,48.45,57.49,6.666666666666667,1,1,0,0,11,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13518,13517,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,0,0,0,10,-2,22.237555,1,1,1,2021,14,2,0,37,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4251459,0,48.45,57.49,48.53,58.91,8.333333333333334,1,1,0,0,11,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13519,-9,13517,13518,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.22711,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13520,-9,13517,13518,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.83813,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7577,13521,-9,13517,13518,1,0,23,0,2,0,2,2,-9,0,5,7.8765421,8.1928997,0,0,0,-989.79803,0,3,2,2021,11,1,38,38,1,1,1,8.3061867,8.3061867,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1650,114437.7,0,0,0,0,0,953.09912 +6203,7578,13522,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9393578,8.8600693,0,0,0,-1006.5814,0,1,2,2021,16,5,35,35,1,5,0,25.746296,25.746296,.05,.05,0,0,0,0,0,0,0,0,0,4.2839656,0,37.23,59.61,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,556,1225497.1,775123.13,0,0,3594.2986,4724.0313,1652.7656 +6203,7579,13523,-9,13522,-9,1,0,29,0,0,0,1,1,-9,0,4,8.9645414,9.0796032,0,0,0,-1096.0309,0,1,-9,2021,18,7,30,25,1,7,1,26.277153,26.277153,.05,.05,0,0,0,0,0,0,0,0,0,.21426226,0,23.47,63.51,-9,-9,3.333333333333333,1,1,0,0,5,8,5,1,133,137600.73,-37919.871,0,0,0,0,2412.3418 +6204,7580,13524,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1886787,7.7805557,0,0,0,-1071.0695,-9,-9,-9,2021,13,1,60,0,1,1,0,6.7626066,6.7626066,0,0,0,0,0,0,0,0,0,0,0,0,0,54.11,33.01,-9,-9,8.333333333333334,3,4,0,0,4,5,4,0,1573,88702.086,0,0,0,0,0,1203.7721 +6205,7581,13525,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.0157003,6.3789759,0,0,-1042.5865,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7925777,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,551,258374.38,224275.69,127964.81,0,0,0,565.59216 +6206,7582,13526,13527,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.8051195,7.3258033,49,4,-18.281429,0,3,3,2021,10,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9226141,43.36,46.07,35.05,26.02,0,2,3,0,0,0,5,2,1,678,1254614.3,0,730021.75,0,0,0,1682.0568 +6206,7582,13527,13526,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,49,-4,12.156508,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,12.454743,0,0,1,1,0,0,0,35.05,26.02,43.36,46.07,6.666666666666667,2,3,0,1,0,5,2,1,678,1254614.3,0,730021.75,0,0,0,1682.0568 +6207,7583,13528,-9,13530,13531,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.7786,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13529,-9,13530,13531,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.59924,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13530,13531,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,7.3270197,7.3929582,0,12,-1,-5.5974703,0,3,3,2021,8,0,16,22,1,0,0,10.111742,10.111742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13531,13530,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.4383297,9.0319233,0,12,1,28.664089,0,3,3,2021,5,0,51,44,1,0,0,12.398595,12.398595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,9,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6208,7584,13532,13533,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.7608614,8.7282448,0,10,1,-131.13576,0,2,3,2021,10,2,41,37,1,2,0,16.662388,16.662388,.05,.05,0,0,0,0,0,0,0,0,0,5.8633809,0,44.35,61.13,46.16,58.62,10,1,1,0,0,8,12,5,0,762,142256.58,236896.45,67872.133,42454.285,842.56049,1355.1763,3820.1201 +6208,7584,13533,13532,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9230957,8.3000736,0,10,-1,75.34436,0,1,2,2021,16,6,38,40,1,6,0,9.658289,9.658289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,44.35,61.13,6.666666666666667,1,1,0,0,10,12,5,0,762,142256.58,236896.45,67872.133,42454.285,842.56049,1355.1763,3820.1201 +6209,7585,13534,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.9808807,6.5894508,0,0,-1003.7263,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0045714,47.15,29.99,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,860,70231.414,87699.164,0,0,0,0,1286.4811 +6210,7586,13535,13536,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5355654,8.5669937,0,9,5,-4.3214016,-9,3,3,2021,9,0,35,0,1,1,0,19.627289,19.627289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,56.57,57.78,8,1,1,0,0,1,9,4,1,943,811764.5,230102.78,447508.84,0,16505.139,0,2714.6597 +6210,7586,13536,13535,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.0043383,6.973496,0,9,-5,32.880234,0,2,3,2021,7,0,16,16,1,0,0,7.6669626,7.6669626,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,52,56,8.333333333333334,1,1,0,0,3,9,4,1,943,811764.5,230102.78,447508.84,0,16505.139,0,2714.6597 +6210,7587,13537,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.80579,-9,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1810718,0,50,47,-9,-9,7,4,6,0,0,0,9,1,1,621,-228950.81,0,0,0,0,0,1560.3367 +6211,7588,13538,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.181591,7.8059053,0,0,0,-994.42218,0,2,2,2021,11,0,41,41,1,0,0,11.394935,11.394935,0,0,0,0,0,0,2.2086473,0,0,0,0,0,0,49.26,33.34,-9,-9,5,1,1,0,0,10,12,4,1,114,79931.469,0,0,0,0,0,1528.3595 +6212,7589,13539,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4469461,8.7298384,0,0,0,-1027.1752,0,3,2,2021,13,1,45,44,1,1,0,10.371276,10.371276,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,32.28,58.05,-9,-9,3.333333333333333,1,1,0,0,13,12,5,1,1444,380291.75,238589.95,177787.7,0,0,0,2043.5958 +6213,7590,13540,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.6364508,7.5728798,0,0,0,-956.52588,-9,-9,-9,2021,13,1,31,0,1,1,0,7.2747483,7.2747483,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.75,54.92,-9,-9,3.333333333333333,1,1,0,1,10,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6213,7590,13541,-9,13540,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.74304,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6213,7590,13542,-9,13540,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.55872,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6214,7591,13543,13544,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.4726243,6.3823848,61,4,-106.15249,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8010817,6.301064,52.6,52.88,59.31,49.81,10,1,1,0,0,0,4,2,1,856.5,327371.91,77399.547,241380.19,0,0,0,1777.2075 +6214,7591,13544,13543,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-4,-9.5492249,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.31,49.81,52.6,52.88,8.333333333333334,1,1,0,0,0,4,2,1,856.5,327371.91,77399.547,241380.19,0,0,0,1777.2075 +6215,7592,13545,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.8103576,6.9754267,0,0,-975.02368,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9595871,54.07,36.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,345,218057.81,1429.8042,99550.344,0,0,0,1910.3806 +6216,7593,13546,-9,13547,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.709,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6216,7593,13547,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.9277639,6.8583722,0,0,0,-1028.7667,0,2,2,2021,14,2,16,14,1,2,0,6.3355069,6.3355069,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.11,41.95,-9,-9,3.333333333333333,1,1,0,0,9,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6216,7593,13548,-9,13547,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.3479,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6217,7594,13549,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,9.2713509,8.9594307,0,0,0,-1000.7828,0,2,3,2021,28,11,50,50,1,11,0,28.245356,28.245356,.05,.05,0,0,0,0,0,0,0,0,0,.64020556,0,21.56,56.45,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,968,-183410.66,-20082.193,46224.984,93653.797,0,2388.6106,3941.5122 +6218,7595,13550,13551,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.7166576,8.9324417,0,7,2,-185.81419,0,3,3,2021,6,0,38,38,1,0,0,16.132788,16.132788,.05,.05,0,0,0,0,0,0,1,1,0,7.1785765,0,51.22,49.35,13.55,59.26,8.333333333333334,1,1,0,0,9,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13551,13550,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,8.6198778,8.427393,0,7,-2,161.03265,0,2,2,2021,16,4,32,30,1,4,0,17.776739,17.776739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,13.55,59.26,51.22,49.35,3.333333333333333,1,1,0,0,9,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13552,-9,13551,13550,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.4136,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13553,-9,13551,13550,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.43164,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6219,7596,13554,13555,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,58,-3,14.530184,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,11,2,0,884.5,612349.44,232573.81,325687.66,0,0,434.5578,1343.0588 +6219,7596,13555,13554,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.7163186,6.1409717,58,3,-30.129168,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4760771,5.8970337,54,46,52,46,8,1,1,0,0,8,11,2,0,884.5,612349.44,232573.81,325687.66,0,0,434.5578,1343.0588 +6220,7597,13556,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.3942008,6.3353987,0,0,-989.8869,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0883489,52,47,-9,-9,7,1,1,0,0,0,11,2,1,543,329656.63,183716.97,122535.54,0,0,0,854.40686 +6221,7598,13557,13559,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,8,-1,64.92382,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,46.67,55.57,5,1,1,0,0,3,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13558,-9,13557,13559,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.35669,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13559,13557,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.1384525,7.813117,0,8,1,22.825907,0,2,2,2021,7,0,39,39,1,0,0,9.7631769,9.7631769,0,0,.05,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,6.666666666666667,1,1,0,0,7,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13560,-9,13557,13559,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.4902,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6222,7599,13561,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6090279,7.5721955,0,0,-993.98602,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9189606,7.7680798,60.29,52.11,-9,-9,10,1,1,0,0,3,5,3,1,636,461381.59,352282.41,123841.41,0,0,0,316.21735 +6223,7600,13562,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.7552547,8.9480057,0,0,0,-1118.2518,0,2,3,2021,24,11,65,70,1,11,0,9.1978836,9.1978836,.05,.05,0,0,0,0,0,0,0,0,0,3.9424424,0,45.32,61.53,-9,-9,3.333333333333333,1,1,0,0,13,2,5,1,271,513863.75,291776.69,159321.86,66203.961,4152.0244,0,2108.2144 +6224,7601,13563,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.8889,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,1961,0,0,0,0,0,0,1194.913 +6224,7602,13564,-9,13563,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.2464,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.83,25.08,-9,-9,0,1,1,0,1,0,1,1,1,110,1243.7098,0,0,0,0,1160.3353,501.50592 +6225,7603,13565,13566,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,8.1119776,7.651885,0,29,-5,-44.564869,0,3,-9,2021,7,0,28,27,1,0,0,12.824627,12.824627,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,21.04,61.27,46.03,8.333333333333334,1,1,0,0,13,8,4,1,328.5,909436,223900,609025.06,0,0,0,3575.5439 +6225,7603,13566,13565,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2881365,8.464179,29,5,74.240562,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,7.079042,8.0570068,61.27,46.03,34.79,21.04,8.333333333333334,1,1,0,0,7,8,4,1,328.5,909436,223900,609025.06,0,0,0,3575.5439 +6226,7604,13567,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1624384,8.0877857,0,0,0,-1021.2847,0,1,1,2021,11,0,37,50,1,2,0,10.967384,10.967384,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,6,4,4,0,443,164960.88,0,0,0,0,0,1166.1686 +6227,7605,13568,13569,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,10,2,-35.825127,0,3,3,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,.24301833,0,0,1,1,0,.7909041,0,30.26,18.9,56.03,36.16,1.666666666666667,1,1,0,1,0,6,2,1,1375,-95652.617,0,0,0,0,0,1203.423 +6227,7605,13569,13568,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.6292629,6.8896527,0,10,-2,99.365921,0,3,3,2021,9,0,10,10,1,0,0,9.5388641,9.5388641,0,0,0,1,0,0,0,2,1,1,0,0,0,56.03,36.16,30.26,18.9,8.333333333333334,1,1,0,1,11,6,2,1,1375,-95652.617,0,0,0,0,0,1203.423 +6228,7606,13570,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.1666508,6.2756324,0,0,-1046.8417,0,3,3,2021,24,7,0,0,4,7,0,0,0,0,0,0,1,3.0488567,0,16.936932,7,1,1,0,4.6070762,6.1369905,19.63,42.8,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,169,63836.078,180108.11,129134.88,0,0,0,1012.5781 +6229,7607,13571,13572,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6489277,8.5988569,0,4,-4,93.023102,0,1,1,2021,8,0,12,12,1,0,0,57.584209,57.584209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,441.5,203480.42,55724.363,631702.13,544716.13,0,0,4799.3623 +6229,7607,13572,13571,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6153641,8.9294615,0,4,4,169.116,0,-9,-9,2021,8,0,47,45,1,0,0,20.494883,20.494883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,6,7,5,1,441.5,203480.42,55724.363,631702.13,544716.13,0,0,4799.3623 +6230,7608,13573,13574,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0070257,8.1613779,0,6,-1,-6.287653,0,1,1,2021,23,10,47,52,1,10,0,7.1895595,7.1895595,0,0,0,0,0,0,0,2,0,0,0,1.6090113,0,43.12,58.55,46.08,57.2,8.333333333333334,1,1,0,0,6,7,5,1,2693.5,22736.133,0,0,0,0,0,3015.8467 +6230,7608,13574,13573,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.377182,8.3777437,0,6,1,60.25499,0,2,2,2021,13,2,39,37,1,2,0,13.933778,13.933778,0,0,0,0,0,0,0,7,0,0,0,1.8263218,0,46.08,57.2,43.12,58.55,6.666666666666667,1,1,0,0,6,7,5,1,2693.5,22736.133,0,0,0,0,0,3015.8467 +6231,7609,13575,13576,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4465237,8.1702623,0,9,6,37.342064,0,2,1,2021,13,1,47,36,1,1,0,10.422928,10.422928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.07,43.05,51.02,49.39,8.333333333333334,1,1,0,0,8,1,5,0,411,722792.38,531949.5,167742.41,0,0,0,3651.022 +6231,7609,13576,13575,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.5606546,8.3725967,0,9,-6,111.31091,0,2,2,2021,12,0,60,61,1,0,0,8.5832119,8.5832119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.02,49.39,59.07,43.05,6.666666666666667,1,1,0,0,11,1,5,0,411,722792.38,531949.5,167742.41,0,0,0,3651.022 +6232,7610,13577,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.8007221,8.5978003,0,0,0,-954.53851,0,1,-9,2021,9,0,38,38,1,0,0,19.782585,19.782585,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,423,120190.84,-8506.3838,0,0,1525.1989,559.52258,2777.4539 +6233,7611,13578,13579,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.8534923,7.7192011,0,8,-3,101.48766,0,-9,-9,2021,20,8,41,37,1,8,0,7.0364904,7.0364904,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27,42.14,54.62,53.53,1.666666666666667,1,1,0,0,4,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7611,13579,13578,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.1409788,5.8830552,0,8,3,107.9856,0,3,3,2021,13,3,15,9,1,3,0,3.8548694,3.8548694,0,0,0,0,0,0,0,0,1,1,0,.92172652,0,54.62,53.53,27,42.14,5,1,1,0,0,2,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7611,13580,-9,13579,13578,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.44568,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7612,13581,-9,13579,13578,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.79358,-9,2,3,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,2836,18539.801,0,0,0,0,661.24182,0 +6234,7613,13582,13583,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0351357,7.3321233,48,1,23.886358,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.954638,7.0649815,57.9,51.84,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,1382.5,912873.88,493810.69,385688.63,0,0,0,4214.8799 +6234,7613,13583,13582,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.0748844,7.8936291,48,-1,-138.05952,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6856866,8.1815653,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,0,12,4,1,1382.5,912873.88,493810.69,385688.63,0,0,0,4214.8799 +6235,7614,13584,13585,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,8.3394566,8.2323599,0,10,-5,-80.365532,0,-9,-9,2021,10,0,42,40,1,0,0,9.7686205,9.7686205,.05,.05,0,0,0,0,0,7,1,1,0,0,0,48.87,58.55,60.12,54.8,6.666666666666667,1,1,0,0,12,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6235,7614,13585,13584,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1722708,9.1528702,0,10,5,94.679596,0,-9,-9,2021,8,0,45,40,1,0,0,25.955032,25.955032,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.87,58.55,8.333333333333334,1,1,0,0,13,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6235,7614,13586,-9,13584,13585,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0521,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6236,7615,13587,13588,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1895704,7.7438536,40,-7,-128.91617,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8075514,43.03,55.9,56.5,45.47,8.333333333333334,1,1,0,0,0,6,5,1,1368,1549201.5,1109753.8,429230.72,0,0,0,6105.7798 +6236,7615,13588,13587,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.3696575,8.8310957,45,7,-22.68269,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8794138,8.4908934,56.5,45.47,43.03,55.9,10,1,1,0,0,0,6,5,1,1368,1549201.5,1109753.8,429230.72,0,0,0,6105.7798 +6237,7616,13589,-9,13592,13590,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6295,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13590,13592,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.1418476,9.1379108,0,7,3,-62.70298,0,3,-9,2021,10,0,40,48,1,0,0,21.690462,21.690462,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49.46,56.91,8.333333333333334,1,1,0,0,8,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13591,-9,13592,13590,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.00854,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13592,13590,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.5603428,8.3701754,0,7,-3,-94.823235,0,2,3,2021,14,2,40,40,1,2,0,11.564989,11.564989,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6238,7617,13593,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.7415,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0157158,0,53,40.54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,1052,216164.67,0,0,0,0,0,592.98901 +6239,7618,13594,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.5238686,8.3673906,0,0,0,-1030.8311,-9,2,2,2021,13,1,39,0,1,1,0,12.165462,12.165462,.05,.05,0,0,0,0,0,0,1,1,0,2.7607546,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,463,139309.86,93077.867,155932.69,13651.728,8821.3789,0,1862.8898 +6240,7619,13595,-9,13596,13597,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13596,13597,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,16,3,40.970116,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.04,56.46,6.666666666666667,3,4,0,0,6,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13597,13596,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6998253,8.5559063,0,16,-3,96.64077,0,-9,-9,2021,12,3,60,55,1,3,0,11.981009,11.981009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.04,56.46,48.87,58.55,3.333333333333333,1,1,0,1,11,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13598,-9,13596,13597,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.6669,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6241,7620,13599,13600,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.2162938,7.1888041,44,2,4.2696595,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8007751,7.2833633,59.53,56.44,50,47,8.333333333333334,4,5,0,0,3,4,2,1,994,274426.25,400663.63,0,0,0,0,1227.0566 +6241,7620,13600,13599,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-88.735107,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0755432,0,50,47,59.53,56.44,7,1,1,0,0,0,4,2,1,994,274426.25,400663.63,0,0,0,0,1227.0566 +6242,7621,13601,13603,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.6510453,8.0496807,0,7,0,74.41433,0,2,2,2021,6,0,28,23,1,0,0,8.8269806,8.8269806,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,56.92,49.39,8.333333333333334,1,1,0,0,8,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13602,-9,13601,13603,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.55756,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13603,13601,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.4063749,8.3807697,0,7,0,118.42886,0,2,2,2021,8,0,40,48,1,0,0,12.277498,12.277498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,49.46,56.91,8.333333333333334,1,1,0,0,8,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13604,-9,13601,13603,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6877,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6243,7622,13605,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,5.879807,5.8867288,0,0,0,-1007.5101,0,3,3,2021,6,0,51,65,1,0,0,.91274279,.91274279,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,163,0,0,0,0,0,0,1385.8693 +6244,7623,13606,-9,13607,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4296,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6244,7623,13607,-9,-9,-9,1,0,37,1,2,0,2,2,-9,1,1,0,0,0,0,0,-949.98651,0,2,3,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6244,7623,13608,-9,13607,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6497,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6245,7624,13609,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-891.32214,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,6.5471826,0,71.177032,0,1,1,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,777,36718.73,0,0,0,696.26874,0,1043.4309 +6246,7625,13610,-9,-9,13611,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1022.1213,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,2958.5,-99183.453,0,0,0,0,0,665.09729 +6246,7625,13611,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1104.0316,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.12,36.71,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,2958.5,-99183.453,0,0,0,0,0,665.09729 +6247,7626,13612,13613,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.0927982,7.9774823,0,9,-8,37.318592,0,-9,-9,2021,10,0,38,38,1,0,0,9.1273012,9.1273012,0,0,0,0,0,0,0,14.5,1,1,0,2.5782259,0,47.47,49.84,57.33,53.46,8.333333333333334,1,1,0,0,14,1,4,1,602,924337.69,397971.06,327487.19,17407.258,11509.17,8701.6211,2646.7744 +6247,7626,13613,13612,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.5943842,7.8604431,0,9,8,124.41221,0,2,2,2021,12,0,40,40,1,0,0,5.6080537,5.6080537,.05,.05,.05,0,0,0,0,0,1,1,0,.77045155,0,57.33,53.46,47.47,49.84,8.333333333333334,1,1,0,0,14,1,4,1,602,924337.69,397971.06,327487.19,17407.258,11509.17,8701.6211,2646.7744 +6248,7627,13614,13615,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.638504,7.8535647,0,1,-5,-80.171455,-9,-9,-9,2021,7,0,30,0,1,0,0,10.719172,10.719172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,55,10,1,1,0,0,8,4,5,1,1164.5,1181414.9,789903.63,105289.88,0,0,0,7741.4404 +6248,7627,13615,13614,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7640524,9.7514925,0,1,5,167.67554,-9,2,3,2021,9,0,58,0,1,1,0,34.051182,34.051182,.05,.05,0,0,0,0,0,0,0,0,0,2.0586126,0,52,55,57.06,57.76,8,1,1,0,0,1,4,5,1,1164.5,1181414.9,789903.63,105289.88,0,0,0,7741.4404 +6249,7628,13616,13617,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.5603361,5.1434159,26,4,-44.188007,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1658521,58.32,50.22,56.19,46.16,8.333333333333334,1,1,0,0,0,11,3,1,621,165563.39,216845.05,0,0,0,0,1736.8368 +6249,7628,13617,13616,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.2287798,8.1329565,4.8836594,26,-4,-38.141914,0,-9,-9,2021,9,0,41,40,1,0,0,8.425518,8.425518,0,0,0,0,0,0,0,0,1,1,0,0,5.2164121,56.19,46.16,58.32,50.22,8.333333333333334,1,1,0,0,9,11,3,1,621,165563.39,216845.05,0,0,0,0,1736.8368 +6250,7629,13618,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.8055673,6.8197961,0,0,-1101.1188,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,1.3974531,0,16.77561,0,1,1,0,2.2831941,6.7249265,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1561,95202.984,69065.281,87619.023,0,0,0,975.88544 +6251,7630,13619,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-997.01965,0,2,2,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9622779,0,3.14,61.5,-9,-9,0,1,1,0,1,0,8,1,1,1729,-166500.2,0,0,0,0,-1037.3103,782.6861 +6251,7631,13620,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,7.3451958,7.0988498,0,0,0,-1051.6699,0,-9,-9,2021,9,0,35,-9,1,1,0,5.2810307,5.2810307,0,0,0,0,0,0,0,0,1,1,0,.72864586,0,51,56,-9,-9,8,4,6,0,0,1,8,3,1,492,-91147.164,0,0,0,0,0,632.88342 +6252,7632,13621,13622,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,8.4660892,8.1787443,0,10,1,7.4053631,0,3,3,2021,24,11,48,0,1,11,0,13.372667,13.372667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39,36.22,49.14,39.45,1.666666666666667,1,1,0,0,1,13,5,1,685,889765.75,588754.81,209012.5,-10343.625,18876.984,3472.0801,3772.6375 +6252,7632,13622,13621,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7765684,7.6334176,0,10,-1,-72.856674,0,2,3,2021,10,0,29,34,1,0,0,11.143074,11.143074,.05,.05,0,0,0,0,0,0,1,1,0,4.4738441,0,49.14,39.45,39,36.22,8.333333333333334,1,1,0,0,11,13,5,1,685,889765.75,588754.81,209012.5,-10343.625,18876.984,3472.0801,3772.6375 +6252,7633,13623,-9,13621,13622,1,1,26,0,0,0,1,1,-9,0,4,8.5213537,8.2709646,0,0,0,-999.34943,0,3,2,2021,7,0,40,40,1,0,1,18.420555,18.420555,.05,.05,0,0,0,0,0,0,1,1,0,5.092165,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,13,5,1,2134,27448.08,70807.938,0,0,18453.482,1204.0074,1741.6713 +6253,7634,13624,13625,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.6675158,8.703619,0,23,9,73.529999,0,-9,-9,2021,9,0,20,-9,1,0,0,38.347347,38.347347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,51.41,56.15,8.333333333333334,2,3,0,0,10,2,5,1,509.5,2654804.3,2193067.5,446722.88,0,5049.0586,9651.9883,5251.1152 +6253,7634,13625,13624,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.946784,8.6423206,0,23,0,-128.11746,0,-9,-9,2021,11,2,40,-9,1,2,0,21.184431,21.184431,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,52.6,52.88,8.333333333333334,2,3,0,0,13,2,5,1,509.5,2654804.3,2193067.5,446722.88,0,5049.0586,9651.9883,5251.1152 +6253,7635,13626,-9,13625,13624,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-933.08966,-9,1,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,1,5,2,1,1,535,101252.93,0,0,0,0,0,0 +6253,7636,13627,-9,13625,13624,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-956.53876,-9,1,3,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,989,-59181.691,0,0,0,0,0,385.84979 +6254,7637,13628,13629,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,17.067818,0,0,1,1,0,0,0,31.44,22.39,39.39,37.66,3.333333333333333,1,1,0,1,0,13,1,1,1320.5,43250.039,0,0,0,9047.1348,0,1989.4928 +6254,7637,13629,13628,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,8,-5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,37.66,31.44,22.39,1.666666666666667,1,1,0,1,0,13,1,1,1320.5,43250.039,0,0,0,9047.1348,0,1989.4928 +6255,7638,13630,13633,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.0704594,7.3831749,0,1,0,111.3769,-9,3,3,2021,19,7,16,0,1,7,0,10.919281,10.919281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.69,58.7,51.24,58.84,5,1,1,0,0,6,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13631,-9,13633,13630,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.1914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13632,-9,13633,13630,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.7339,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13633,13630,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,1,0,104.34482,-9,-9,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.69,58.7,8.333333333333334,1,1,0,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6256,7639,13634,13637,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.817481,7.5731721,0,7,-6,87.064537,0,1,3,2021,12,2,28,27,1,2,0,7.9796457,7.9796457,0,0,0,0,0,0,0,0,1,1,0,0,0,37.02,57.23,43.54,59.6,8.333333333333334,1,1,0,0,9,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13635,-9,13634,13637,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.40662,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13636,-9,13634,13637,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-958.62158,-9,1,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13637,13634,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,5.4370999,5.0907426,0,7,6,116.53077,0,2,2,2021,11,1,10,8,1,1,0,3.2530472,3.2530472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,37.02,57.23,8.333333333333334,1,1,0,0,9,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6257,7640,13638,13639,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.8132467,7.9584107,46,6,-17.764402,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7453704,60.29,52.11,40.75,58.26,10,1,1,0,0,6,1,3,1,1241.5,935209.75,508617.63,256397.56,0,0,0,2491.3464 +6257,7640,13639,13638,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9410572,6.9096484,46,-6,23.31657,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9402304,40.75,58.26,60.29,52.11,3.333333333333333,1,1,0,0,11,1,3,1,1241.5,935209.75,508617.63,256397.56,0,0,0,2491.3464 +6258,7641,13640,-9,13642,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.318,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6258,7641,13641,-9,13642,-9,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.81982,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6258,7641,13642,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-987.53137,0,-9,-9,2021,18,6,0,7,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.24,54.81,-9,-9,6.666666666666667,1,1,1,0,2,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6259,7642,13643,13644,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7663097,7.481638,0,7,0,109.32623,0,-9,-9,2021,8,0,20,19,1,0,0,10.990202,10.990202,0,0,0,0,0,0,0,0,0,0,0,1.4548051,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,5,6,3,1,411,245360.77,83595.586,220477.97,-5381.7217,0,0,1672.4292 +6259,7642,13644,13643,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.3930173,7.2354331,34,0,162.89296,0,3,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.69099599,7.382782,55.96,49.93,57.16,56.15,10,1,1,0,0,0,6,3,1,411,245360.77,83595.586,220477.97,-5381.7217,0,0,1672.4292 +6260,7643,13645,-9,13646,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0742054,8.1216927,0,0,0,-887.30389,0,3,3,2021,7,0,37,37,1,0,0,8.0958185,8.0958185,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,245,-5833.8687,0,0,0,0,0,1335.9735 +6260,7644,13646,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.689,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,.98829103,7.7424636,20.423429,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,6,1,0,304,0,0,0,0,0,0,849.23279 +6261,7645,13647,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.1014819,7.2985749,0,0,-958.62946,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,.85003424,9.8617811,22.851755,0,1,1,0,0,6.7132344,62.66,52.4,-9,-9,10,1,1,0,0,0,2,3,1,602,6330.9229,136888.17,0,0,0,0,1067.0929 +6262,7646,13648,13649,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6838961,8.5965891,0,14,2,-127.23575,0,3,2,2021,14,4,40,40,1,4,0,15.455716,15.455716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.99,60.71,51.43,45.6,10,1,1,0,0,9,2,5,1,1223,201363.44,-12853.813,125183.11,41816.93,1189.9305,0,3925.9072 +6262,7646,13649,13648,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.6997671,8.7087526,0,14,-2,-117.80331,0,2,-9,2021,10,0,42,40,1,0,0,10.834363,10.834363,0,0,0,0,0,0,0,0,0,0,0,0,0,51.43,45.6,43.99,60.71,8.333333333333334,1,1,0,0,9,2,5,1,1223,201363.44,-12853.813,125183.11,41816.93,1189.9305,0,3925.9072 +6263,7647,13650,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.3781,0,2,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,26.2,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,106,-126107.49,0,0,0,0,0,1230.972 +6264,7648,13651,-9,13654,13652,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.71893,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13652,13654,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3692579,8.4415302,0,12,7,-45.687469,0,3,3,2021,6,0,45,51,1,0,0,10.8697,10.8697,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,55.4,54.2,57.49,10,1,1,0,0,13,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13653,-9,13654,13652,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-928.49371,-9,2,2,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.8,59.7,-9,-9,6.666666666666667,1,1,0,0,1,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13654,13652,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.3171244,8.0766134,0,12,-7,-35.60836,0,3,2,2021,12,0,40,40,1,0,0,17.403267,17.403267,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.64,55.4,8.333333333333334,1,1,0,0,13,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6265,7649,13655,13656,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,8,9,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,47,8,1,1,0,0,0,13,1,1,1131.5,306061.38,-9777.2227,245342.44,-2124.7949,0,0,1271.6117 +6265,7649,13656,13655,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,0,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51,47,54,46,7,1,1,0,0,0,13,1,1,1131.5,306061.38,-9777.2227,245342.44,-2124.7949,0,0,1271.6117 +6266,7650,13657,13658,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.9657288,5.2983832,24,-5,8.933569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5340204,57.16,56.15,54.13,45.34,8.333333333333334,1,1,0,0,2,9,2,1,400.5,445147.75,188095.06,279421.38,0,0,0,2118.8528 +6266,7650,13658,13657,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.7843394,5.5435338,27,5,22.053461,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7415433,54.13,45.34,57.16,56.15,6.666666666666667,1,1,0,0,3,9,2,1,400.5,445147.75,188095.06,279421.38,0,0,0,2118.8528 +6267,7651,13659,13661,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,9.8273582,9.7495041,0,7,3,-59.815166,0,2,2,2021,15,3,5,7,1,3,0,390.64871,390.64871,0,0,0,0,0,0,0,0,1,1,0,5.0951672,0,38.86,59.06,51.77,58.57,3.333333333333333,1,1,0,0,5,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13660,-9,13659,13661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.44366,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13661,13659,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.3581533,9.4992323,0,7,-3,7.2875228,0,1,1,2021,11,0,40,55,1,0,0,37.194756,37.194756,0,0,0,0,0,0,0,0,1,1,0,5.7314644,0,51.77,58.57,38.86,59.06,8.333333333333334,1,1,0,0,9,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13662,-9,13659,13661,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-951.67468,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7652,13663,-9,13659,13661,1,0,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-962.94611,1,2,1,2021,21,7,0,45,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,798,66197.32,0,0,0,0,0,0 +6268,7653,13664,-9,13666,13665,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.22009,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13665,13666,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8631544,8.5913658,0,7,4,15.709189,0,-9,2,2021,10,1,40,40,1,1,0,19.568401,19.568401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,47.49,55.02,8.333333333333334,1,1,0,0,8,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13666,13665,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.0529728,6.5274229,0,7,-4,-76.76873,0,2,-9,2021,10,0,15,15,1,0,0,6.9305544,6.9305544,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,52,54.51,8.333333333333334,1,1,0,0,4,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13667,-9,13666,13665,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.17645,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6269,7654,13668,-9,13671,13669,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1090.8701,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13669,13671,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.5613174,8.5531864,0,12,2,-18.652662,0,2,2,2021,13,2,46,44,1,2,0,14.600253,14.600253,.05,.05,0,0,0,0,0,0,1,1,0,7.5116835,0,52.25,37.78,40.07,42.46,8.333333333333334,1,1,0,0,12,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13670,-9,13671,13669,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.35132,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13671,13669,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,8.6475792,8.8268051,0,12,-2,-75.367378,0,3,2,2021,18,6,35,35,1,6,0,17.969398,17.969398,0,0,0,0,0,0,0,2,1,1,0,2.5983329,0,40.07,42.46,52.25,37.78,3.333333333333333,1,1,0,0,12,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6270,7655,13672,13673,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.0818119,7.2357569,53,2,-39.181213,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.2165034,7.5978842,60.05,37.77,30.71,26.64,10,4,5,0,0,0,4,2,1,719.5,542181.5,215319.25,193295.89,0,0,0,751.66589 +6270,7655,13673,13672,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,53,-2,-15.747866,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,4.1015821,72.375191,14.397338,0,1,1,0,1.5016388,0,30.71,26.64,60.05,37.77,3.333333333333333,1,1,0,0,0,4,2,1,719.5,542181.5,215319.25,193295.89,0,0,0,751.66589 +6271,7656,13674,13675,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.3591623,8.7247744,0,28,-1,-53.169338,0,2,2,2021,7,0,42,46,1,0,0,17.838795,17.838795,.05,.05,0,0,0,0,0,0,0,0,0,1.0104947,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,598,796842.88,577852.5,277593.13,0,1973.4978,0,7674.2725 +6271,7656,13675,13674,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.9592314,9.4537201,0,28,1,-89.799187,0,2,2,2021,8,0,55,60,1,0,0,36.347195,36.347195,.05,.05,0,0,0,0,0,0,0,0,0,5.7467012,0,57.16,56.15,62.39,56.71,10,1,1,0,0,11,5,5,1,598,796842.88,577852.5,277593.13,0,1973.4978,0,7674.2725 +6271,7657,13676,-9,13674,13675,1,0,24,0,0,0,1,1,-9,0,4,8.3300161,8.536869,0,0,0,-1024.4331,0,2,2,2021,12,2,40,40,1,2,1,11.599196,11.599196,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,216,164304.83,-61967.355,0,0,18828.523,0,2052.5581 +6271,7658,13677,-9,13674,13675,1,1,19,0,0,1,2,0,0,0,5,0,6.5806894,6.4390869,0,0,-1009.9482,-9,2,2,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6729245,0,34.8,63.98,-9,-9,10,1,1,0,0,2,5,2,1,1410,-130632.23,-95107.453,0,0,0,0,881.35284 +6272,7659,13678,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.161201,7.1512804,0,0,0,-842.90564,0,2,2,2021,6,0,50,50,1,0,0,3.1238861,3.1238861,0,0,0,0,0,0,0,0,1,1,0,7.7969546,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,889,-30355.576,-11050.567,0,0,0,0,3002.582 +6273,7660,13679,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.5527892,7.4092102,0,0,0,-897.30353,0,1,1,2021,2,0,20,20,1,0,0,10.85172,10.85172,0,0,0,0,0,0,0,0,0,0,0,2.8663189,0,58.3,52.91,-9,-9,8.333333333333334,4,2,0,0,12,5,3,0,801,115941.56,0,0,0,0,4819.3735,588.8725 +6274,7661,13680,-9,13681,13683,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1076.1675,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13681,13683,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5139093,8.3185015,0,12,0,16.981329,0,-9,-9,2021,32,12,34,34,1,12,0,19.571602,19.571602,.05,.05,0,0,0,0,0,0,1,1,0,3.0939498,0,25.98,65.13,57.16,56.15,5,1,1,0,0,15,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13682,-9,13681,13683,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4534,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13683,13681,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.5979433,8.8134727,0,12,0,-134.5952,0,2,2,2021,10,0,40,40,1,0,0,18.046951,18.046951,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.98,65.13,8.333333333333334,1,1,0,0,15,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6275,7662,13684,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,7.209662,7.3560534,0,0,0,-939.00671,0,2,3,2021,25,12,25,25,1,12,0,5.7550426,5.7550426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.95,36.74,-9,-9,1.666666666666667,1,1,0,1,9,2,3,0,170,37564.953,91426.367,152425.58,0,0,0,625.66058 +6276,7663,13685,-9,-9,13686,1,0,22,0,0,0,2,2,-9,0,3,7.7207317,8.275033,0,0,0,-1109.9714,0,-9,1,2021,14,4,35,35,1,4,1,9.5273457,9.5273457,.05,.05,0,0,0,0,0,0,0,0,0,2.8772733,0,36.18,48.3,-9,-9,3.333333333333333,4,2,0,1,5,9,4,1,458,145200.81,44225.746,0,0,6959.3452,359.63184,775.50885 +6276,7664,13686,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.1145811,8.0962563,5.2370534,0,0,-933.65277,0,-9,-9,2021,12,0,45,50,1,0,0,8.7867632,8.7867632,0,0,0,0,0,0,0,0,0,0,0,0,5.6581645,42.38,36.42,-9,-9,5,1,1,0,0,6,9,4,1,626,1434758.3,917649.13,271760.75,-13416.687,0,0,1382.6956 +6277,7665,13687,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.1165905,8.2302351,0,0,-1027.6556,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.4587412,7.9304857,39.15,48.86,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,2463,1082171.1,-27792.797,188280.34,0,0,0,1372.8956 +6278,7666,13688,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.7220254,7.810338,0,0,-947.70947,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1262755,8.0317259,36.89,57.17,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,1211,807659.56,493415.28,129288.48,-13849.95,0,0,1705.4175 +6279,7667,13689,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.8561354,10.081925,0,0,0,-989.52026,-9,1,2,2021,6,0,45,0,1,0,0,58.838318,58.838318,.05,.05,0,0,0,0,0,0,0,0,0,4.2971344,0,57.06,57.76,-9,-9,10,1,1,0,0,7,5,5,1,813,195548.63,85788.063,152294.95,93313,3847.2864,3635.1826,6749.6963 +6280,7668,13690,13691,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,6.7381387,6.636713,10,0,-34.756226,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.574522,49.96,16.82,42.99,23.54,3.333333333333333,1,1,0,0,4,10,2,1,695.5,348662.31,55049.633,292357.13,0,0,0,1347.2191 +6280,7668,13691,13690,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,11,0,-69.29039,0,2,2,2021,9,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.99,23.54,49.96,16.82,10,1,1,0,0,2,10,2,1,695.5,348662.31,55049.633,292357.13,0,0,0,1347.2191 +6281,7669,13692,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1090.0044,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.85,49.42,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,2345,216234.98,0,0,0,0,0,328.90872 +6282,7670,13693,-9,13694,13695,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.60516,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6282,7670,13694,13695,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,6.8977442,7.1488814,0,3,-12,51.287964,0,2,2,2021,16,4,26,24,1,4,0,6.3515186,6.3515186,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.81,54.1,52.07,22.22,6.666666666666667,1,1,0,0,6,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6282,7670,13695,13694,-9,-9,1,1,57,0,1,0,2,2,-9,0,1,0,0,0,3,12,43.88657,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.07,22.22,41.81,54.1,6.666666666666667,1,1,1,0,0,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6283,7671,13696,-9,13697,13698,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.64325,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13697,13698,-9,-9,1,0,32,1,2,0,2,2,-9,1,1,0,0,0,5,-19,0,0,-9,-9,2021,17,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.74,15.29,47.46,35.18,8.333333333333334,1,1,0,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13698,13697,-9,-9,1,1,51,1,2,0,3,3,-9,1,2,0,0,0,5,19,0,0,-9,3,2021,17,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.46,35.18,44.74,15.29,1.666666666666667,1,1,0,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13699,-9,13697,13698,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05951,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6284,7672,13700,13701,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,6,7,0,0,-9,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.01,42.51,41.13,22.99,5,1,1,1,0,0,12,1,0,1083,-107078.16,0,120419.09,92592.188,0,0,1654.3538 +6284,7672,13701,13700,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,6,-7,0,0,3,3,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,22.99,43.01,42.51,0,1,1,0,1,0,12,1,0,1083,-107078.16,0,120419.09,92592.188,0,0,1654.3538 +6284,7673,13702,-9,13701,13700,1,0,26,0,0,0,2,2,-9,0,4,7.3170195,7.5865889,0,0,0,-1058.6152,0,3,3,2021,12,0,38,40,1,0,1,5.7995629,5.7995629,.05,.05,0,0,0,0,0,27,1,1,0,0,0,53.22,55.2,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,1542,-37439.707,170610.86,0,0,2682.8381,0,1735.8472 +6285,7674,13703,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,7.3196092,7.214839,0,0,0,-1006.9111,0,-9,2,2021,15,3,21,21,1,3,0,10.451353,10.451353,.05,.05,0,0,0,0,0,2,1,1,0,0,0,38.6,40.53,-9,-9,5,1,1,0,1,11,12,2,0,1872,-63642.652,-74680.281,0,0,3641.5996,-39.355469,1835.3118 +6286,7675,13704,-9,13706,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5845,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7675,13705,-9,13706,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.49677,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7675,13706,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,0,0,-945.79553,0,3,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.91,55.39,-9,-9,8.333333333333334,3,4,1,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7676,13707,-9,13706,-9,1,1,19,0,2,1,2,0,0,0,3,0,5.7620335,5.9902449,0,0,-830.76263,-9,2,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0988793,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,960,-89341.484,0,0,0,0,0,251.53494 +6287,7677,13708,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.4789672,5.5121641,0,0,-1004.7621,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8691182,40.87,44.58,-9,-9,5,1,1,0,0,0,5,2,0,713,368711.34,0,147576.94,0,0,0,672.86353 +6287,7678,13709,-9,13708,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,0,0,-974.93298,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,51.37,-9,-9,3.333333333333333,1,1,1,0,0,5,1,0,708,-153666.14,0,0,0,0,4522.02,769.68732 +6288,7679,13710,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.2660327,7.3555741,0,0,-942.3584,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1911902,7.2332859,62.25,48.33,-9,-9,10,1,1,0,0,7,6,3,1,968,681208.5,275619.66,543924.63,0,0,0,840.01093 +6289,7680,13711,13712,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.7336264,8.0745325,13,10,128.88025,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.231841,7.7614803,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,13,9,3,0,528,644045.13,118621.61,277701.06,0,2210.6128,0,2878.0591 +6289,7680,13712,13711,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.7112932,7.6805964,0,13,-10,-116.40456,0,3,3,2021,6,0,30,30,1,0,0,7.0051703,7.0051703,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,12,9,3,0,528,644045.13,118621.61,277701.06,0,2210.6128,0,2878.0591 +6289,7681,13713,-9,13712,13711,1,1,19,0,0,0,2,2,1,1,4,0,0,0,0,0,-1085.5592,-9,3,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,561,-148184.66,0,0,0,0,0,-169.22775 +6290,7682,13714,13715,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.7519584,7.8886309,0,13,-2,-7.1625476,0,2,2,2021,15,6,12,12,1,6,0,19.476831,19.476831,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.14,45.74,52.24,50.75,10,1,1,0,0,13,10,3,0,689.5,444691.03,182779.84,183912.95,0,9722.4688,0,2067.3018 +6290,7682,13715,13714,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9302068,6.9067678,0,13,2,69.895844,0,2,2,2021,7,0,16,16,1,0,0,9.8900995,9.8900995,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52.24,50.75,53.14,45.74,10,1,1,0,0,13,10,3,0,689.5,444691.03,182779.84,183912.95,0,9722.4688,0,2067.3018 +6291,7683,13716,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.6697974,8.0317974,5.5594759,0,0,-1006.3077,0,2,2,2021,10,0,42,40,1,0,0,6.8011217,6.8011217,.05,.05,0,0,0,0,0,0,1,1,0,5.6460905,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6291,7683,13717,-9,13716,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-924.80963,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6291,7683,13718,-9,13716,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.7914,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6292,7684,13719,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.705637,8.5411148,0,0,0,-984.09119,0,2,2,2021,14,2,38,38,1,2,0,14.137898,14.137898,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.09,61.63,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,258,-109635.33,4575.2129,0,0,0,0,3090.4846 +6293,7685,13720,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7436152,7.4507999,0,0,-997.58795,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6758256,59.47,33.39,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,118,667155.88,188717.63,420807.94,0,0,0,1723.0369 +6293,7686,13721,-9,13720,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.1909194,6.8036356,0,0,-811.24817,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9266238,7.0605769,60.12,54.8,-9,-9,5,1,1,0,0,10,4,2,1,337,488525.47,323516.47,8490.6875,0,0,0,183.15608 +6294,7687,13722,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.3233719,8.0183859,0,0,0,-830.2605,0,3,3,2021,12,0,44,36,1,0,0,9.6940708,9.6940708,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.86,52.62,-9,-9,3.333333333333333,1,1,0,0,14,5,4,1,92,412215.19,208863.38,173176.34,24260.445,0,461.97488,1491.3632 +6295,7688,13723,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.3395395,8.585104,0,0,0,-863.61322,0,-9,-9,2021,10,0,40,40,1,0,0,13.372134,13.372134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.11,56.11,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,797,513995.63,153163.34,293392.84,0,0,0,2018.4979 +6295,7689,13724,-9,13723,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0272913,8.2109423,0,0,0,-977.08636,0,2,-9,2021,8,0,38,38,1,0,1,8.1504135,8.1504135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,200,-82301.68,-59554.578,0,0,0,0,2048.114 +6296,7690,13725,-9,13727,13728,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.056,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13726,-9,13727,13728,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.74554,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13727,13728,-9,-9,1,0,42,0,3,0,2,2,-9,0,5,0,0,0,14,-1,26.86956,0,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,54.2,57.49,10,1,1,0,0,6,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13728,13727,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.6699877,8.9603386,0,14,1,-44.801117,0,-9,-9,2021,10,0,50,70,1,0,0,21.083139,21.083139,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.09,55.87,8.333333333333334,1,1,0,0,8,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13729,-9,13727,13728,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.19281,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6297,7691,13730,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.20728,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,5.5346298,0,49.600163,0,1,1,0,0,0,26.57,34.74,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,2637,-69758.555,0,0,0,0,0,963.04022 +6298,7692,13731,13732,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5719023,8.5651531,4.342711,5,2,.40906495,0,3,3,2021,12,0,30,30,1,0,0,23.988108,23.988108,.05,.05,0,0,0,0,0,0,0,0,0,5.0649099,4.4056745,52,54.51,46.33,55.93,6.666666666666667,1,1,0,0,6,5,4,1,856,128775.22,69453.969,172159.86,66120.914,0,0,2440.9255 +6298,7692,13732,13731,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.3654914,6.3925767,0,5,-2,-31.043137,0,3,3,2021,10,0,14,15,1,0,0,4.9580483,4.9580483,0,0,0,0,0,0,0,0,0,0,0,4.5977063,0,46.33,55.93,52,54.51,8.333333333333334,1,1,0,0,4,5,4,1,856,128775.22,69453.969,172159.86,66120.914,0,0,2440.9255 +6299,7693,13733,13734,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6550283,7.6245742,33,6,-21.117676,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2329868,7.3974404,56.1,49.93,58.9,40.21,8.333333333333334,1,1,0,0,4,2,4,1,587.5,1928298.8,771393.5,351181.56,0,0,0,2945.9673 +6299,7693,13734,13733,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.9539399,7.8415289,31,-6,-138.56403,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.787096,7.7657266,58.9,40.21,56.1,49.93,8.333333333333334,1,1,0,0,6,2,4,1,587.5,1928298.8,771393.5,351181.56,0,0,0,2945.9673 +6300,7694,13735,13736,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,0,0,15,16,0,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.24,31.07,41.91,26.88,3.333333333333333,1,1,0,0,4,12,1,1,668.5,0,0,0,0,0,0,988.82806 +6300,7694,13736,13735,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,15,-16,0,0,-9,-9,2021,20,8,0,25,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.91,26.88,56.24,31.07,6.666666666666667,1,1,1,0,13,12,1,1,668.5,0,0,0,0,0,0,988.82806 +6301,7695,13737,13738,-9,-9,1,0,54,1,1,0,3,3,-9,0,3,7.8036475,7.8231144,0,40,-7,-4.2597194,0,3,3,2021,6,0,8,31,1,0,0,40.476158,40.476158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.54,36.54,57.33,53.46,8.333333333333334,3,4,0,0,15,7,4,0,528.5,238942.31,185734.56,0,0,6334.3018,931.97443,3476.0894 +6301,7695,13738,13737,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,8.3351374,8.6218758,0,13,7,-186.75627,0,3,3,2021,6,0,60,60,1,0,0,9.8164635,9.8164635,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.54,36.54,8.333333333333334,3,4,0,0,12,7,4,0,528.5,238942.31,185734.56,0,0,6334.3018,931.97443,3476.0894 +6301,7696,13739,-9,-9,-9,1,0,41,1,1,0,1,1,-9,0,5,0,0,0,0,0,-1063.5427,-9,-9,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,1,1,0,7,1,0,764.5,88378.805,0,392350,185475.28,0,0,-60.184326 +6301,7696,13740,-9,13739,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.5328,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,7,1,0,764.5,88378.805,0,392350,185475.28,0,0,-60.184326 +6301,7697,13741,-9,13737,13738,1,0,38,1,1,0,2,2,-9,0,5,8.0092669,8.0354834,0,0,0,-996.27466,0,3,2,2021,6,0,38,45,1,0,1,11.373123,11.373123,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,3,4,0,0,15,7,4,0,1646,-62898.32,0,0,0,0,0,1473.3466 +6302,7698,13742,13743,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.0648108,7.9888067,4.6066103,9,6,103.24295,0,3,3,2021,26,10,32,30,1,10,0,10.245624,10.245624,.05,.05,0,0,0,0,0,0,1,1,0,5.2046881,0,26.36,50.01,40.09,52.06,5,1,1,0,0,9,6,5,1,605.5,1262090.5,1115065,116396.27,80104.172,0,2654.8472,3664.8057 +6302,7698,13743,13742,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,9.1277781,8.7253304,0,9,-6,-18.883995,0,-9,-9,2021,9,1,59,64,1,1,0,18.239794,18.239794,.05,.05,0,0,0,0,0,0,1,1,0,4.3882575,0,40.09,52.06,26.36,50.01,6.666666666666667,1,1,0,0,11,6,5,1,605.5,1262090.5,1115065,116396.27,80104.172,0,2654.8472,3664.8057 +6303,7699,13744,13745,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.5268841,8.4822474,0,30,7,10.131905,0,3,3,2021,6,0,36,35,1,0,0,20.819952,20.819952,.05,.05,0,0,0,0,0,42,1,1,0,0,0,62.49,55.09,37.36,19.77,10,1,1,0,0,11,7,4,1,1049,1226858,814332.75,290149.88,0,0,0,3683.51 +6303,7699,13745,13744,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,30,-7,142.45461,-9,3,3,2021,32,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,62.49,55.09,6.666666666666667,1,1,0,1,0,7,4,1,1049,1226858,814332.75,290149.88,0,0,0,3683.51 +6304,7700,13746,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,4.6150064,4.5673575,0,0,-945.93616,0,3,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9697771,35.97,23.7,-9,-9,5,1,1,0,0,0,11,2,0,476,32777.047,-46607.242,70195,0,0,0,1613.3915 +6305,7701,13747,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8969531,7.8051705,0,0,0,-1041.2936,0,3,3,2021,11,0,36,35,1,0,0,8.3911448,8.3911448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.09,42.51,-9,-9,5,1,1,0,0,15,2,4,1,1552,74996.766,84257.563,30164.039,67129.133,0,0,785.12054 +6306,7702,13748,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.9112568,9.6209908,0,0,0,-928.52191,0,-9,-9,2021,2,1,54,0,1,1,0,31.204601,31.204601,0,0,.05,0,0,0,0,0,0,0,0,0,0,59.68,56.78,-9,-9,6.666666666666667,3,4,0,0,2,8,5,0,1243,63800.844,36718.293,0,0,0,0,7641.8374 +6307,7703,13749,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,1,0,7.7052875,7.8117094,0,0,-961.88983,-9,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,6.8447328,74.850937,62.526127,0,1,1,0,0,7.2680449,24.93,19.95,-9,-9,1.666666666666667,1,1,0,0,0,11,3,1,152,31852.061,167506.61,0,0,0,0,2828.1174 +6307,7704,13750,13751,13749,-9,1,0,59,0,0,0,1,1,-9,0,3,9.2193851,9.285593,0,10,-1,-19.798986,0,3,2,2021,15,4,70,37,1,4,0,20.070368,20.070368,0,0,0,0,0,0,0,56,1,1,0,7.5316668,0,42.96,48.95,44.23,47.17,3.333333333333333,1,1,0,0,11,11,5,1,1547,2174437,1529583.5,342465.75,0,0,112.52798,4972.3799 +6307,7704,13751,13750,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.2682257,7.5787635,0,10,1,44.460598,0,3,3,2021,14,3,60,70,1,3,0,3.4586334,3.4586334,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.23,47.17,42.96,48.95,6.666666666666667,1,1,0,0,13,11,5,1,1547,2174437,1529583.5,342465.75,0,0,112.52798,4972.3799 +6308,7705,13752,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-931.52338,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,36.648945,0,0,1,1,0,0,0,43.52,11.62,-9,-9,10,1,1,0,0,0,13,1,0,248,80151.938,0,0,0,0,0,612.03735 +6309,7706,13753,13754,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0788102,7.6005516,10,0,-101.21873,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8302153,0,0,1,1,0,6.7606606,7.2069092,51.08,54.77,37.72,33.13,8.333333333333334,1,1,0,0,0,7,3,1,849,927225.5,445916.88,279022.97,0,0,0,2752.8967 +6309,7706,13754,13753,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.5019484,7.3740978,10,0,19.077784,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,11.211593,0,0,1,1,0,4.4923081,7.5342364,37.72,33.13,51.08,54.77,3.333333333333333,1,1,0,0,9,7,3,1,849,927225.5,445916.88,279022.97,0,0,0,2752.8967 +6310,7707,13755,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2439919,8.6352062,0,0,0,-902.36639,0,3,3,2021,21,9,37,37,1,9,0,13.983499,13.983499,0,0,.05,0,0,0,0,0,1,1,0,0,0,26.55,57.97,-9,-9,5,1,1,0,0,9,4,4,1,1644,-162066.98,37737.516,0,0,0,0,2032.8517 +6311,7708,13756,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6483746,7.9181895,0,0,-1083.4585,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68992776,7.8594718,62.85,41.16,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,426,573775.69,455388.31,224218.11,0,0,0,1878.525 +6312,7709,13757,13758,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,6.6790452,6.6420841,0,11,5,-21.976702,0,2,2,2021,7,0,25,30,1,0,0,4.6858826,4.6858826,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,3,4,0,0,12,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7709,13758,13757,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,0,0,0,11,-5,69.464149,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5397148,0,57.33,53.46,57.16,56.15,10,3,4,0,0,0,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7709,13759,-9,13758,13757,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1027.8433,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,0,0,0,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7710,13760,-9,13758,13757,1,0,21,0,3,1,2,0,0,0,5,0,0,0,0,0,-992.90515,-9,2,3,2021,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,62.33,-9,-9,10,3,4,0,0,0,8,1,0,316,154346.8,0,0,0,0,0,0 +6312,7711,13761,-9,13758,13757,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-1068.8585,-9,2,3,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,3,4,0,0,0,8,1,0,800,49616.969,0,0,0,2620.0103,164.14072,0 +6312,7712,13762,-9,13758,13757,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-954.29126,-9,2,3,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,3,4,0,0,0,8,1,0,1304,89482.5,0,0,0,0,0,0 +6313,7713,13763,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.6243,0,-9,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.34,23.87,-9,-9,1.666666666666667,3,4,1,1,0,5,1,0,4580,132225.5,0,0,0,0,0,804.19507 +6314,7714,13764,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.407372,4.1142721,0,0,-1088.9811,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,.11668586,0,0,1,1,0,0,4.2463455,45.83,41.17,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,543,369433.38,15623.097,110994.84,0,0,0,550.59747 +6315,7715,13765,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,8.4689684,8.2535353,5.2600532,25,0,61.675018,0,3,3,2021,9,0,12,12,1,0,0,49.633934,49.633934,.05,.05,0,0,0,0,0,114,1,1,0,.76183993,5.5874162,51.25,46.55,49,48,1.666666666666667,1,1,0,0,9,9,4,1,1495,143888.31,267713.13,0,0,0,0,4329.1011 +6315,7715,13766,-9,13765,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1095.9426,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,9,4,1,1495,143888.31,267713.13,0,0,0,0,4329.1011 +6316,7716,13767,13768,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,6,4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,7.3208375,0,14.5,1,1,0,4.0972104,0,60.98,40.77,39.38,22.52,8.333333333333334,1,1,0,0,0,10,1,1,530.5,98661.625,6423.041,192546.66,0,0,0,1590.9231 +6316,7716,13768,13767,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,59,-4,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0023496,0,39.38,22.52,60.98,40.77,6.666666666666667,1,1,0,0,0,10,1,1,530.5,98661.625,6423.041,192546.66,0,0,0,1590.9231 +6317,7717,13769,13770,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.8812199,6.7362547,0,4,-3,16.71763,0,3,3,2021,11,0,37,36,1,2,0,2.8193023,2.8193023,0,0,0,0,0,0,0,0,1,1,0,.77596217,0,49,48,41.54,28.47,7,1,1,0,0,1,13,3,0,310.5,178759.5,202159.28,227362.41,43559.344,0,2214.385,1584.0259 +6317,7717,13770,13769,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,7.0063376,7.1340437,4,3,86.699768,0,3,3,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5485988,7.0337934,41.54,28.47,49,48,3.333333333333333,1,1,0,0,7,13,3,0,310.5,178759.5,202159.28,227362.41,43559.344,0,2214.385,1584.0259 +6318,7718,13771,13772,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,6.3499155,6.3986368,37,5,52.511826,0,2,2,2021,17,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.41617915,6.5208716,39.15,17.49,49.58,50.05,5,1,1,0,0,11,10,3,1,582,-80076,22131.645,0,0,0,998.78674,1368.3257 +6318,7718,13772,13771,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4611864,7.6775775,0,37,-5,-150.99348,0,2,2,2021,8,1,40,39,1,1,0,4.1608291,4.1608291,0,0,0,0,0,0,0,14.5,1,1,0,2.5181086,0,49.58,50.05,39.15,17.49,6.666666666666667,1,1,0,0,15,10,3,1,582,-80076,22131.645,0,0,0,998.78674,1368.3257 +6319,7719,13773,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,7.6241446,7.7204895,0,0,-1113.0623,0,2,2,2021,11,3,0,18,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75775343,7.5736337,60.08,40.24,-9,-9,6.666666666666667,1,1,0,0,14,4,3,1,405,136891.42,25788.309,0,0,0,0,1602.2719 +6320,7720,13774,-9,13777,13776,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.1204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13775,-9,13777,13776,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.93433,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13776,13777,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,8.6102686,8.9259949,0,7,2,76.851952,0,-9,-9,2021,7,0,40,40,1,0,0,19.141111,19.141111,.05,.05,0,0,0,0,.70194429,0,1,1,0,0,0,59.43,58.05,41.3,60.77,8.333333333333334,1,1,0,0,8,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13777,13776,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.5444784,7.6264663,0,7,-2,-61.518139,0,-9,-9,2021,8,0,22,22,1,0,0,9.2420301,9.2420301,.05,.05,0,0,0,0,0,0,1,1,0,1.1541263,0,41.3,60.77,59.43,58.05,10,1,1,0,0,8,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6321,7721,13778,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,6.2802763,6.4082174,0,0,-1024.0023,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7104354,6.1716175,51.22,28.01,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,352,568796.06,-121073.26,226275.39,0,0,0,1710.5236 +6322,7722,13779,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.2900381,8.815134,0,0,0,-1005.3972,0,2,1,2021,20,9,46,45,1,9,0,25.889904,25.889904,.05,.05,0,0,0,0,0,0,1,1,0,4.6568508,0,32.82,63.08,-9,-9,3.333333333333333,2,3,0,0,7,6,5,1,494,20327.404,1760.8595,173852.97,85356.008,8550.8291,1491.6909,3302.123 +6323,7723,13780,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9282298,8.3520584,0,0,0,-1046.5459,0,3,3,2021,19,6,40,38,1,6,0,7.9828658,7.9828658,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.74,47.44,-9,-9,1.666666666666667,3,4,0,1,5,2,3,0,830,40268.598,5379.8086,107612.89,70338.313,0,0,1905.2882 +6324,7724,13781,13782,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.5183058,6.5160537,11,4,-202.0511,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.7481833,6.6292772,43.6,51.61,60.12,54.8,8.333333333333334,1,1,0,0,9,10,2,1,424,747695,179439.75,254699.38,0,0,0,1351.8457 +6324,7724,13782,13781,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.901113,7.1885839,40,-4,-205.83821,0,2,3,2021,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.12663461,6.6316385,60.12,54.8,43.6,51.61,10,1,1,0,0,13,10,2,1,424,747695,179439.75,254699.38,0,0,0,1351.8457 +6325,7725,13783,13784,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0866117,9.4444818,7.7833295,12,-2,-154.00299,0,3,2,2021,9,2,38,43,1,2,0,24.315006,24.315006,0,0,0,0,0,0,0,27,0,0,0,0,8.1963091,51.24,58.84,57.54,58.85,1.666666666666667,1,1,0,0,12,12,5,1,1110,926543,381886.72,469428.81,26730.559,0,0,5365.2979 +6325,7725,13784,13783,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,12,2,-21.663391,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.3256063,0,57.54,58.85,51.24,58.84,1.666666666666667,1,1,0,0,8,12,5,1,1110,926543,381886.72,469428.81,26730.559,0,0,5365.2979 +6326,7726,13785,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.3925371,6.9371543,0,0,-912.62561,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9108131,7.3199916,57.73,30.59,-9,-9,5,1,1,0,0,0,1,2,1,235,477675.97,217638.64,200594.52,0,0,0,1703.6924 +6327,7727,13786,-9,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,0,0,0,0,-1101.5602,0,3,2,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.17,48.41,-9,-9,5,4,2,0,0,5,2,1,1,734.5,36191.922,83499.539,0,0,1891.7866,5824.4209,442.82593 +6327,7727,13787,-9,13786,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6658,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,2,-9,0,0,2,1,1,734.5,36191.922,83499.539,0,0,1891.7866,5824.4209,442.82593 +6328,7728,13788,13789,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4920025,8.0951633,0,6,1,37.520554,0,2,2,2021,6,0,37,37,1,0,0,12.096398,12.096398,.05,.05,.05,0,0,0,0,0,0,0,0,4.2826352,0,54.74,57.22,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,1123,1054233.5,627306.75,278218.66,0,0,5513.1396,3389.4604 +6328,7728,13789,13788,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.3604975,8.3869267,0,6,-1,-64.97612,0,2,2,2021,9,0,20,18,1,0,0,22.74975,22.74975,0,0,0,0,0,0,0,2,0,0,0,5.3496695,0,54.1,59.11,54.74,57.22,8.333333333333334,1,1,0,0,7,12,5,1,1123,1054233.5,627306.75,278218.66,0,0,5513.1396,3389.4604 +6329,7729,13790,13791,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,10,-1,71.016815,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7362659,0,54.79,55.86,51,48,8.333333333333334,1,1,0,0,0,11,2,1,1932,319954.09,161689.31,158015.52,0,0,0,947.43152 +6329,7729,13791,13790,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,5.469089,5.3500237,0,10,1,-24.557276,0,2,2,2021,10,0,40,50,1,1,0,.69392639,.69392639,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,54.79,55.86,7,1,1,0,0,1,11,2,1,1932,319954.09,161689.31,158015.52,0,0,0,947.43152 +6330,7730,13792,13793,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.4387426,8.6312304,0,2,0,13.143887,0,-9,-9,2021,13,1,45,38,1,1,0,12.210383,12.210383,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,46.32,53.44,8.333333333333334,1,1,0,0,14,5,5,0,626.5,-55540.402,0,96860.578,141991.58,10213.754,0,3218.8262 +6330,7730,13793,13792,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.1096478,8.3735933,0,2,0,-78.043449,0,2,2,2021,13,1,52,38,1,1,0,9.5477858,9.5477858,0,0,0,0,0,0,0,0,0,0,0,1.2550799,0,46.32,53.44,36.92,51.87,6.666666666666667,1,1,0,0,10,5,5,0,626.5,-55540.402,0,96860.578,141991.58,10213.754,0,3218.8262 +6331,7731,13794,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9903808,8.0888987,0,0,0,-1110.1904,0,-9,-9,2021,4,0,38,40,1,0,0,12.41767,12.41767,.05,.05,0,0,0,0,0,0,1,1,0,1.2639351,0,54.94,50.33,-9,-9,8.333333333333334,4,2,0,0,3,6,4,0,170,-99999.758,51859.668,0,0,1992.1895,0,1891.7141 +6332,7732,13795,-9,13797,13796,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.23718,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2640483,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6332,7732,13796,13797,-9,-9,1,1,60,0,1,0,2,2,-9,0,4,9.2737885,9.2942591,0,9,9,21.05312,0,-9,-9,2021,8,0,43,40,1,0,0,24.741348,24.741348,0,0,.05,0,0,0,0,0,0,0,0,4.2329059,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6332,7732,13797,13796,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,7.6096444,7.9378209,0,23,0,9.2405281,0,2,2,2021,6,0,25,29,1,0,0,8.6337214,8.6337214,0,0,.05,0,0,0,0,0,0,0,0,4.5228186,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6333,7733,13798,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,8.9882154,8.4613991,0,0,-1122.3982,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0033989,58.3,47.38,-9,-9,10,1,1,0,0,0,12,5,1,3748,637384.56,286092.34,225430.89,0,0,0,4819.4478 +6334,7734,13799,13800,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.927568,7.9568987,0,36,1,-52.368332,0,3,-9,2021,12,0,30,30,1,0,0,15.767288,15.767288,0,0,0,0,0,0,0,0,0,0,0,0,0,49.88,44.92,51.41,35.88,8.333333333333334,1,1,0,0,13,9,4,1,754,1359365.4,846115.75,471247.94,0,0,0,2847.7905 +6334,7734,13800,13799,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.9915257,7.9590683,0,36,-1,111.37256,0,2,-9,2021,14,2,42,42,1,2,0,6.6385207,6.6385207,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.41,35.88,49.88,44.92,6.666666666666667,1,1,0,0,15,9,4,1,754,1359365.4,846115.75,471247.94,0,0,0,2847.7905 +6335,7735,13801,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1016.0142,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,75.264229,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,10,1,0,1286,179231,0,178187.2,0,0,0,1614.8495 +6335,7736,13802,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3597383,8.2711926,0,0,0,-921.82538,0,3,2,2021,13,2,45,38,1,2,0,11.335398,11.335398,.05,.05,0,0,0,0,0,74.5,1,1,0,.14614406,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,822,-140335.86,-49995.727,0,0,0,0,1558.9431 +6336,7737,13803,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8644023,7.8866587,0,0,0,-1087.2831,0,2,2,2021,8,0,33,0,1,0,0,10.382013,10.382013,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.66,39.54,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,786,249384.16,49376.617,169990.75,58316.801,384.25125,110.07198,1497.8452 +6336,7738,13804,-9,13803,-9,1,1,25,0,0,0,2,2,-9,0,3,5.9036756,5.9126534,0,0,0,-998.33923,0,2,-9,2021,14,2,10,7,1,2,1,4.3063049,4.3063049,0,0,0,0,0,0,0,0,1,0,1,0,0,44.83,55.13,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,868,-160816.38,0,0,0,0,0,-26.116341 +6337,7739,13805,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1151857,7.689393,0,0,0,-1024.2395,-9,-9,-9,2021,9,0,43,0,1,0,0,7.1762362,7.1762362,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.73,57.61,-9,-9,5,2,3,0,0,11,6,4,1,1318,-70714.305,78470.172,0,0,0,0,414.46609 +6337,7740,13806,-9,13805,-9,1,0,33,0,0,0,2,2,-9,0,5,6.5365419,6.7775292,0,0,0,-1081.6788,0,2,-9,2021,5,0,12,14,1,0,1,7.678134,7.678134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,11,6,2,1,114,101496.81,-75795.945,0,0,0,0,882.46216 +6338,7741,13807,-9,13810,13808,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.883,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13808,13810,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.0175543,8.7666616,0,9,5,-44.355507,0,3,-9,2021,13,1,40,37,1,1,0,20.975988,20.975988,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13809,-9,13810,13808,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.43921,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13810,13808,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.2088594,7.1842051,0,9,-5,47.42207,0,2,-9,2021,7,0,25,25,1,0,0,7.8658457,7.8658457,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.55,60.42,10,1,1,0,0,8,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6339,7742,13811,13812,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.1925306,8.2995377,0,9,-12,8.9524946,0,1,2,2021,25,10,35,0,1,10,0,12.588842,12.588842,.05,.05,0,0,0,0,0,7,1,1,0,3.864058,0,25.56,52.21,24.46,63.1,1.666666666666667,1,1,0,0,10,8,4,1,446.5,540011.06,322017.63,0,0,0,0,2683.0928 +6339,7742,13812,13811,13813,-9,1,0,53,0,0,0,1,1,-9,0,4,7.6771998,7.5872784,0,9,12,51.109573,0,2,3,2021,17,7,15,35,1,7,0,13.210583,13.210583,.05,.05,0,0,0,0,0,27,1,1,0,6.1915088,0,24.46,63.1,25.56,52.21,8.333333333333334,1,1,0,0,11,8,4,1,446.5,540011.06,322017.63,0,0,0,0,2683.0928 +6339,7743,13813,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.2549038,6.8665805,0,0,-946.49396,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,10.028305,23.425085,92.670227,0,1,1,0,5.1125956,6.9810233,45.76,19.71,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,270,22230.283,-18552.57,0,0,0,0,1948.8572 +6340,7744,13814,-9,13816,13815,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-988.41162,-9,1,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,1,0,0,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7744,13815,13816,13817,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.8510857,8.5402441,20,13,74.611191,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.3957233,55.36,54.24,35.61,65.82000000000001,8.333333333333334,1,1,0,0,13,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7744,13816,13815,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,6.6280732,6.5863199,0,20,-13,39.46508,0,2,3,2021,16,6,70,40,1,6,0,1.4016554,1.4016554,0,0,0,0,0,0,0,7,1,1,0,3.4307988,0,35.61,65.82000000000001,55.36,54.24,8.333333333333334,1,1,0,0,11,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7745,13817,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,7.8295827,7.8846917,0,0,-1152.2487,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,17.164816,11.536331,174.87726,0,1,1,0,0,7.6743407,47.45,25.61,-9,-9,6.666666666666667,1,1,0,1,0,9,3,1,1775,548346.19,242937.2,281932.59,0,0,0,3259.8398 +6341,7746,13818,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,2.8615868,2.9196506,0,0,-1027.5835,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,2.889426,44.34,44.89,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,625,36716.656,0,0,0,0,0,1840.101 +6342,7747,13819,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.9297276,9.3796196,0,0,0,-974.18036,0,3,3,2021,10,0,40,40,1,0,0,28.515898,28.515898,.05,.05,0,0,0,0,0,0,0,0,0,3.0179965,0,43.38,62.58,-9,-9,8.333333333333334,4,5,0,0,8,8,5,0,245,166451.86,93861.016,0,0,0,0,2917.3064 +6343,7748,13820,13821,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,7.9795742,7.7892766,0,4,3,-5.8310761,0,2,2,2021,7,0,30,39,1,0,0,14.094295,14.094295,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.56,49.66,43.37,57.28,8.333333333333334,1,1,0,0,11,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13821,13820,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.9577823,7.8337049,5.4253507,4,-3,9.4838285,0,-9,-9,2021,14,4,30,30,1,4,0,10.914057,10.914057,0,0,0,0,0,0,0,0,1,0,1,6.1812901,0,43.37,57.28,53.56,49.66,10,1,1,0,0,4,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13822,-9,13821,13820,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.9833,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13823,-9,13821,13820,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.53729,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6344,7749,13824,13825,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.4466906,7.5300274,29,2,-157.20551,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2268538,7.5450788,50.57,52.35,50.41,48.86,8.333333333333334,1,1,0,0,0,11,2,1,885,1045705.8,-32133.168,227396.03,0,0,0,2809.9019 +6344,7749,13825,13824,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,5.5199895,5.2670031,29,-2,-17.116186,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5601902,4.9264607,50.41,48.86,50.57,52.35,8.333333333333334,1,1,0,0,0,11,2,1,885,1045705.8,-32133.168,227396.03,0,0,0,2809.9019 +6345,7750,13826,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.1688004,8.1697941,0,0,0,-894.07904,0,2,1,2021,3,0,40,0,1,0,0,9.4318447,9.4318447,.05,.05,0,0,0,0,0,2,1,1,0,1.5807718,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,1574,-63704.93,-77107.656,0,0,0,0,1256.4464 +6346,7751,13827,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,4.9023356,5.5310321,0,0,-1134.1704,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.8710289,0,0,1,1,0,.42106688,5.4370856,52,46,-9,-9,8,1,1,0,0,0,7,2,1,1199,370557.44,243124.91,146853.63,0,0,0,686.81488 +6347,7752,13828,13829,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,4,-5,67.33567,0,2,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,17.92,58.75,37.17,50.6,1.666666666666667,1,1,0,1,4,10,2,0,160,989884.88,562330.13,400624.25,0,0,0,727.95044 +6347,7752,13829,13828,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.4126091,7.4533701,0,4,5,55.997623,0,2,2,2021,13,2,36,36,1,2,0,6.3241048,6.3241048,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,50.6,17.92,58.75,6.666666666666667,1,1,0,0,9,10,2,0,160,989884.88,562330.13,400624.25,0,0,0,727.95044 +6348,7753,13830,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.3106246,6.2650995,0,0,-943.41382,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8373451,6.3150067,45.57,53.5,-9,-9,10,1,1,0,1,7,5,2,1,1070,568026.81,-80880.078,294266.44,0,0,0,-62.823612 +6349,7754,13831,13832,-9,-9,1,1,47,1,1,0,2,2,-9,0,2,0,0,0,9,-1,0,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,15.72,39.25,33.02,25.49,0,1,1,1,1,0,10,1,0,429.5,107154.69,0,0,0,3650.0315,2829.9543,1741.0852 +6349,7754,13832,13831,-9,-9,1,0,48,1,1,0,3,3,-9,1,1,0,0,0,9,1,0,0,-9,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.02,25.49,15.72,39.25,5,1,1,0,1,0,10,1,0,429.5,107154.69,0,0,0,3650.0315,2829.9543,1741.0852 +6350,7755,13833,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,7.0448289,6.7409959,0,0,0,-948.26178,0,2,-9,2021,8,0,16,16,1,0,0,6.9920974,6.9920974,0,0,0,0,0,0,0,0,1,0,1,0,0,55.39,16.88,-9,-9,8.333333333333334,2,3,0,0,9,9,2,1,936,-20974.168,0,0,0,0,0,1701.7064 +6350,7755,13834,-9,13833,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2297,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,936,-20974.168,0,0,0,0,0,1701.7064 +6351,7756,13835,13836,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.0142355,5.6203003,51,-3,-13.160583,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,62.004482,0,0,1,1,0,3.1801007,6.0015435,51.46,18.52,36.03,40.6,6.666666666666667,1,1,0,0,0,13,2,1,330,316859.5,98582.5,141473.63,0,0,0,2107.7959 +6351,7756,13836,13835,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,3,3,119.36757,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,40.6,51.46,18.52,5,1,1,0,0,0,13,2,1,330,316859.5,98582.5,141473.63,0,0,0,2107.7959 +6352,7757,13837,-9,13839,13840,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.12299,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,1,1,-9,0,0,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13838,-9,13839,13840,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.1284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13839,13840,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,7.718719,7.5863981,0,11,-10,91.425079,0,-9,-9,2021,12,0,22,22,1,0,0,9.3276587,9.3276587,0,0,0,0,0,0,0,0,1,0,1,0,0,40.4,58.62,33.76,56.35,6.666666666666667,1,1,0,0,13,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13840,13839,-9,-9,1,1,40,1,2,0,1,1,-9,0,2,5.8660145,6.2184606,0,11,10,40.863197,0,2,2,2021,14,3,69,40,1,3,0,.78254861,.78254861,.05,.05,0,0,0,0,0,0,1,0,1,0,0,33.76,56.35,40.4,58.62,3.333333333333333,1,1,0,0,14,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6353,7758,13841,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.7903271,8.7882318,0,0,0,-1096.5735,0,2,2,2021,11,0,50,52,1,0,0,12.965659,12.965659,0,0,0,0,0,0,0,0,0,0,0,1.5529571,0,52.05,55.95,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,1201,590484.75,203304.59,280285.03,0,0,0,2375.4658 +6353,7759,13842,-9,13841,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6192865,8.8884821,0,0,0,-834.64716,-9,2,-9,2021,12,0,44,0,1,0,1,15.926439,15.926439,.05,.05,0,0,0,0,0,0,0,0,0,3.6645842,0,41.23,59.35,-9,-9,5,1,1,0,0,3,9,5,1,346,42402.121,-36964.516,0,0,0,3825.5637,1943.6716 +6354,7760,13843,13844,-9,-9,1,0,47,0,3,0,3,3,-9,0,3,0,0,0,29,-2,-86.623222,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.82,33.06,45.69,48.04,10,2,3,0,0,0,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6354,7760,13844,13843,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.7126145,7.6633673,0,8,2,-206.13507,0,3,3,2021,10,2,31,36,1,2,0,8.1389551,8.1389551,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,48.04,59.82,33.06,5,2,3,0,0,6,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6354,7760,13845,-9,13843,13844,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.8621,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6355,7761,13846,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.8513231,7.785316,0,0,0,-1081.4656,-9,1,1,2021,12,1,88,0,1,1,0,4.0449233,4.0449233,.05,.05,0,0,0,0,0,0,1,1,0,2.1940362,0,37.19,58.61,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,954,286445.03,-2903.6538,0,0,0,0,644.67273 +6356,7762,13847,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4445896,8.496768,0,0,0,-1037.0115,0,2,2,2021,8,0,43,41,1,0,0,13.501047,13.501047,0,0,0,0,0,0,0,0,0,0,0,0,0,47.92,40.33,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,272,632453.31,587611.75,132149.13,35767.164,0,303.33911,2399.2119 +6357,7763,13848,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.7629299,8.0185642,0,0,-1023.2149,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9605055,43.34,22.96,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1790,579927.5,215342.38,541172.38,0,0,0,1563.202 +6358,7764,13849,13850,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,1,0,-59.583,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.09,49.2,55.2,49.4,10,1,1,1,0,0,5,4,1,370,-8113.582,-517.27344,0,0,0,0,2412.2397 +6358,7764,13850,13849,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.3587065,8.5088749,0,1,9,89.897194,0,-9,-9,2021,6,0,38,38,1,0,0,14.078315,14.078315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,50.09,49.2,8.333333333333334,1,1,0,0,11,5,4,1,370,-8113.582,-517.27344,0,0,0,0,2412.2397 +6358,7765,13851,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,2,7.862823,7.9557295,0,0,0,-1062.835,-9,-9,-9,2021,12,1,37,0,1,1,0,9.0877838,9.0877838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.09,55.3,-9,-9,3.333333333333333,1,1,0,0,7,5,3,1,353,-192388.28,119698.44,0,0,5250.5088,0,945.58173 +6359,7766,13852,13853,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,6.6457262,7.9092126,8.0295916,49,-1,42.583961,0,2,2,2021,8,0,10,10,1,0,0,8.20963,8.20963,0,0,0,0,0,0,0,2,1,1,0,6.4389825,7.4770784,55.19,54.26,49.44,33,8.333333333333334,1,1,0,0,10,2,4,1,457,1720385.5,839937.88,462077.66,0,0,0,4017.8713 +6359,7766,13853,13852,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.2791624,7.973772,7,1,77.956924,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4822578,8.047307,49.44,33,55.19,54.26,5,1,1,0,0,6,2,4,1,457,1720385.5,839937.88,462077.66,0,0,0,4017.8713 +6360,7767,13854,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2613783,7.261467,0,0,-971.28625,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4444761,37.26,46.83,-9,-9,3.333333333333333,3,4,0,1,0,8,3,0,525,366350.53,330281.22,0,0,0,0,1283.7563 +6361,7768,13855,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.5899849,5.6400399,0,0,-923.5697,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0048400722,5.4644017,56.12,39.31,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,1136,138019.73,44057.641,96827.469,40385.984,0,0,712.86761 +6362,7769,13856,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.3002,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.9393325,3.2475319,21.004,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,791,14284.405,0,0,0,0,0,1690.8219 +6363,7770,13857,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.2038631,8.1209679,0,0,-1106.9821,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1921916,7.9935627,61.28,48.88,-9,-9,10,1,1,0,0,5,11,4,1,100,889752.63,835445.31,40527.93,27789.125,0,0,2566.6772 +6364,7771,13858,13859,-9,-9,1,0,49,0,2,0,3,3,-9,1,4,0,0,0,29,0,0,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,54,52,55,8,2,3,0,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13859,13858,-9,-9,1,1,49,0,2,0,2,2,-9,1,4,0,0,0,29,0,0,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52,55,50,54,8,2,3,1,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13860,-9,13858,13859,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.7461,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13861,-9,13858,13859,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.41351,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7772,13862,-9,13858,13859,1,1,24,0,2,0,2,2,-9,0,4,0,0,0,0,0,-949.76849,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,340,0,0,0,0,0,0,0 +6364,7773,13863,-9,13858,13859,1,0,19,0,2,0,3,3,-9,1,4,0,0,0,0,0,-960.17218,-9,3,3,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.67120051,0,46,58,-9,-9,7,2,3,0,0,0,8,1,0,1474,173897.56,0,0,0,0,317.53467,-370.55493 +6365,7774,13864,13865,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.8926525,7.0674973,0,12,2,90.769463,0,2,2,2021,10,0,16,18,1,0,0,7.5500755,7.5500755,0,0,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,63.25,32,10,1,1,0,0,12,10,2,0,472.5,1270707.5,184752.05,347714.06,0,719.66687,0,1313.974 +6365,7774,13865,13864,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.8640985,6.3611665,0,12,-2,31.760416,0,2,2,2021,6,0,12,12,1,0,0,7.9706788,7.9706788,0,0,0,0,0,0,0,0,1,0,1,0,0,63.25,32,49.28,52.09,10,1,1,0,0,12,10,2,0,472.5,1270707.5,184752.05,347714.06,0,719.66687,0,1313.974 +6366,7775,13866,-9,13867,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.6176,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13867,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,6.6625433,6.4797301,0,0,0,-1063.8868,0,2,2,2021,10,0,20,20,1,0,0,4.4868107,4.4868107,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.99,52.21,-9,-9,6.666666666666667,1,1,0,1,15,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13868,-9,13867,-9,1,1,16,0,2,0,3,3,-9,0,2,0,0,0,0,0,-918.37018,-9,2,-9,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.84,49.29,-9,-9,6.666666666666667,1,1,0,0,15,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13869,-9,13867,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.5656,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6367,7776,13870,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.6798115,7.4186363,0,0,0,-1094.8975,0,2,2,2021,11,1,60,40,1,1,0,2.7194099,2.7194099,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.77,31.2,-9,-9,1.666666666666667,1,1,0,0,10,1,3,1,2466,46615.258,26798.146,0,0,0,1853.2255,56.58313 +6368,7777,13871,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-835.74713,0,1,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,8,1,0,523,0,0,0,0,0,0,1641.2094 +6369,7778,13872,13873,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0860858,7.5615087,51,0,-54.582092,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9315233,7.3883886,45.49,58.84,56.35,51,10,1,1,0,0,6,7,2,1,1170.5,898170.63,388152.19,464683,0,0,0,1864.9607 +6369,7778,13873,13872,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,51,0,18.653223,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.35,51,45.49,58.84,8.333333333333334,1,1,0,0,7,7,2,1,1170.5,898170.63,388152.19,464683,0,0,0,1864.9607 +6370,7779,13874,13875,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.1385689,8.8412514,0,10,2,13.936934,0,3,2,2021,8,0,40,40,1,0,0,18.953913,18.953913,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,70.39,40.52,48.77,60.16,10,1,1,0,0,11,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7779,13875,13874,-9,-9,1,0,45,0,0,0,2,2,1,0,5,8.0328283,7.8877511,0,10,-2,-179.99675,-9,2,3,2021,8,0,36,0,1,0,0,8.4091797,8.4091797,0,0,0,0,0,0,0,0,0,0,0,2.0165436,0,48.77,60.16,70.39,40.52,6.666666666666667,1,1,0,0,7,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7779,13876,-9,13875,13874,1,1,17,0,0,1,2,0,0,0,5,0,5.4511361,5.230341,0,0,-1099.0806,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6739879,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7780,13877,-9,13875,13874,1,0,22,0,0,0,1,1,1,0,5,8.0667782,8.2495337,0,0,0,-932.28424,-9,2,2,2021,3,0,50,0,1,0,1,8.6381273,8.6381273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,4,1,1280,6416.209,-42520.309,0,0,5520.1699,0,1087.8153 +6371,7781,13878,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.43219,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9077306,0,47.72,55.04,-9,-9,6.666666666666667,4,2,1,0,5,8,1,1,239,632080.81,0,724474.56,0,0,0,957.99335 +6371,7782,13879,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3904629,8.4475365,0,0,0,-1091.7177,0,3,3,2021,11,0,45,35,1,0,0,13.77329,13.77329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,242,295966.78,139373.98,290781.56,138821.69,0,0,1266.1411 +6372,7783,13880,13881,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,0,0,0,4,10,27.435057,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,45.63,21.21,8.333333333333334,2,3,0,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13881,13880,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.5528636,7.5591836,0,4,-10,73.284241,0,-9,-9,2021,11,0,30,35,1,0,0,6.8439841,6.8439841,0,0,0,0,0,0,0,0,1,1,0,0,0,45.63,21.21,41,56.99,6.666666666666667,2,3,0,0,8,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13882,-9,13881,13880,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.43268,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13883,-9,13881,13880,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3447,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6373,7784,13884,13885,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7631865,8.5297575,0,29,0,4.3284159,0,2,2,2021,21,9,37,38,1,9,0,17.958288,17.958288,0,0,0,0,0,0,0,0,0,0,0,4.2918835,0,33.37,60.58,47.49,45.69,3.333333333333333,1,1,0,0,8,2,5,1,819,2020314.3,1610973.8,350097.75,114918.91,0,0,2928.3975 +6373,7784,13885,13884,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0745049,7.9679036,0,30,0,-66.756126,0,2,1,2021,12,0,40,40,1,0,0,7.1224022,7.1224022,.05,.05,0,0,0,0,0,2,0,0,0,2.6825159,0,47.49,45.69,33.37,60.58,8.333333333333334,1,1,0,0,11,2,5,1,819,2020314.3,1610973.8,350097.75,114918.91,0,0,2928.3975 +6374,7785,13886,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.3422165,8.1793642,0,0,-986.11804,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7351904,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,1681,550894.19,207442.52,125546.38,0,0,0,3359.3301 +6375,7786,13887,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.1458645,8.5998955,7.6630301,0,0,-1106.0145,0,3,3,2021,11,0,40,29,1,0,0,6.831409,6.831409,0,0,0,0,0,0,0,0,1,1,0,0,7.4624591,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,919,845850.44,60537.016,788415.44,0,0,0,1793.1444 +6376,7787,13888,13889,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.0639887,7.9898901,0,7,-1,41.350086,0,2,1,2021,12,0,45,45,1,0,0,7.2596173,7.2596173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.17,51.34,40.87,44.58,5,1,1,0,0,8,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6376,7787,13889,13888,-9,-9,1,0,42,0,1,0,3,3,-9,1,3,0,0,0,7,1,37.618786,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,36.17,51.34,6.666666666666667,1,1,1,0,0,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6376,7787,13890,-9,13889,13888,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.7832,-9,3,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,0,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6377,7788,13891,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.1552792,7.9487343,0,0,0,-1015.5258,0,3,-9,2021,6,0,43,45,1,0,0,8.2994299,8.2994299,0,0,0,0,0,0,0,0,1,1,0,.23095925,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,674.5,-77553.125,-7345.3457,0,0,0,0,1549.2092 +6377,7788,13892,-9,13891,-9,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-992.86578,-9,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5351903,0,55.53,51.55,-9,-9,10,1,1,1,0,0,5,4,0,674.5,-77553.125,-7345.3457,0,0,0,0,1549.2092 +6378,7789,13893,-9,13895,13896,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1018.1559,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13894,-9,13895,13896,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.80847,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13895,13896,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7121353,7.595758,0,15,1,-149.20082,0,3,3,2021,8,0,37,38,1,0,0,7.2147565,7.2147565,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13896,13895,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6850929,8.7596855,0,15,-1,-3.0760849,0,2,2,2021,8,0,41,7,1,0,0,15.383738,15.383738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6379,7790,13897,13899,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,7.9862981,8.3017912,0,19,8,19.022709,0,2,2,2021,7,0,37,47,1,0,0,10.960138,10.960138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,31.77,61.1,8.333333333333334,1,1,0,0,9,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6379,7790,13898,-9,13899,13897,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.1746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6379,7790,13899,13897,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.2969742,9.2941036,0,19,-8,103.24502,0,3,3,2021,17,7,42,52,1,7,0,28.899544,28.899544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.77,61.1,58.15,52.91,6.666666666666667,1,1,0,0,8,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6380,7791,13900,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.4130878,8.4105501,0,13,-7,-37.88269,0,2,2,2021,18,6,50,45,1,6,0,8.1549664,8.1549664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.46,58.13,57.16,56.15,5,1,1,0,0,9,9,5,1,211,188429.16,11967.156,121119.35,97054.07,0,0,2042.3431 +6380,7792,13901,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.4130754,8.4690475,0,13,7,-30.606752,0,2,2,2021,9,0,50,45,1,0,0,7.4150424,7.4150424,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,35.46,58.13,8.333333333333334,1,1,0,0,9,9,5,1,528,1323228.5,777408.06,696714.81,10564.533,742.05627,0,1404.0236 +6381,7793,13902,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1096.4054,0,3,2,2021,18,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,44.94,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,173,64626.383,-18656.996,0,0,0,0,0 +6382,7794,13903,13904,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,7.9975467,7.9678521,5.7054057,11,1,-57.010479,0,2,1,2021,8,0,37,38,1,0,0,12.313103,12.313103,.05,.05,0,0,0,0,0,7,1,1,0,6.0671077,0,52.43,55.57,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6382,7794,13904,13903,-9,-9,1,0,38,0,1,0,1,1,-9,1,4,8.8875141,8.8546505,0,13,-1,-37.039864,0,2,2,2021,9,0,53,53,1,0,0,16.994743,16.994743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.43,55.57,8.333333333333334,1,1,0,0,8,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6382,7794,13905,-9,13904,13903,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.1611,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6383,7795,13906,13907,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,47,2,-7.3258934,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.3102779,0,0,1,1,0,.52647281,0,43.03,53.23,54.37,54.8,6.666666666666667,1,1,0,0,0,9,2,1,1028.5,45707.094,238602.91,0,0,0,0,1292.9404 +6383,7795,13907,13906,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5814719,6.7395668,47,-2,9.1595297,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6673012,54.37,54.8,43.03,53.23,8.333333333333334,1,1,0,0,0,9,2,1,1028.5,45707.094,238602.91,0,0,0,0,1292.9404 +6384,7796,13908,13909,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,76.73127,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,126.55177,0,0,1,1,0,0,0,52,45,57.06,57.76,8,1,1,0,0,0,12,3,1,1729,1022207,262347.88,404060.75,0,0,0,2703.1914 +6384,7796,13909,13908,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.4711123,7.6547947,58,4,-52.621765,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.7654576,7.3899908,57.06,57.76,52,45,8.333333333333334,1,1,0,0,0,12,3,1,1729,1022207,262347.88,404060.75,0,0,0,2703.1914 +6385,7797,13910,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,8.0666533,8.2290344,0,0,0,-968.71405,0,3,3,2021,12,3,77,54,1,3,0,4.2311368,4.2311368,0,0,0,0,0,0,0,0,1,1,0,0,0,45.74,46.84,-9,-9,6.666666666666667,3,4,0,0,13,2,4,1,1068,371080.72,122010.16,215288.97,0,0,0,2056.6265 +6386,7798,13911,13912,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.5532579,9.8411551,0,9,2,17.002605,0,-9,-9,2021,10,0,56,55,1,1,0,33.686905,33.686905,.05,.05,0,0,0,0,0,0,1,1,0,5.591341,0,50,57,49.36,58.53,7,1,1,0,0,1,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13912,13911,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,8.6584473,8.8268147,0,9,-2,130.31377,0,2,2,2021,10,0,55,50,1,0,0,15.431481,15.431481,.05,.05,0,0,0,0,0,0,1,1,0,1.728435,0,49.36,58.53,50,57,6.666666666666667,1,1,0,0,10,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13913,-9,13912,13911,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.092,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13914,-9,13912,13911,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.25635,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6387,7799,13915,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1039.0402,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5213637,0,21.20014,0,1,1,0,0,0,50,46,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,3612,-55985.676,0,0,0,0,0,1676.4703 +6388,7800,13916,13917,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2575588,8.1503754,0,21,-1,-37.635677,0,2,2,2021,15,5,38,38,1,5,0,13.765578,13.765578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.05,50.32,49.38,58.29,5,1,1,0,0,10,11,4,1,821.5,812764.88,644424.06,124538.47,61022.797,8469.9326,0,2812.606 +6388,7800,13917,13916,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3820701,8.0432386,8.3107395,21,1,-72.315918,0,2,2,2021,12,1,28,26,1,1,0,6.7541447,6.7541447,.05,.05,0,0,0,0,0,7,0,0,0,2.8426206,7.6651988,49.38,58.29,49.05,50.32,5,1,1,0,0,9,11,4,1,821.5,812764.88,644424.06,124538.47,61022.797,8469.9326,0,2812.606 +6388,7801,13918,-9,13917,13916,1,1,24,0,0,0,2,2,-9,0,4,7.6621375,7.8389678,0,0,0,-947.04248,0,2,2,2021,12,0,50,45,1,0,1,5.3424191,5.3424191,0,0,0,0,0,0,0,0,0,0,0,4.2890978,0,41.78,61.86,-9,-9,3.333333333333333,1,1,0,0,5,11,4,1,1577,36879.484,0,0,0,0,0,640.72491 +6388,7802,13919,-9,13917,13916,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-912.71631,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.31,43.19,-9,-9,3.333333333333333,1,1,0,0,1,11,1,1,503,-75824.477,0,0,0,0,0,713.1994 +6389,7803,13920,13921,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6332121,6.3534737,11,-13,-28.048731,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36345866,6.7131143,57.17,25.09,55.61,26.33,10,1,1,0,0,0,13,3,1,122.5,647010.19,163147.27,341021.06,0,0,0,2402.2485 +6389,7803,13921,13920,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.085813,7.1865602,11,13,-76.826462,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.314115,55.61,26.33,57.17,25.09,10,1,1,0,0,0,13,3,1,122.5,647010.19,163147.27,341021.06,0,0,0,2402.2485 +6390,7804,13922,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2678165,8.1806583,0,0,0,-974.06506,-9,2,2,2021,5,0,45,0,1,0,0,9.8424959,9.8424959,.05,.05,0,0,0,0,0,0,0,0,0,3.7113569,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,456,-127123.53,9925.999,0,0,0,0,1558.5128 +6391,7805,13923,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.4412541,8.0453243,6.958931,0,0,-940.05414,0,3,3,2021,11,0,20,20,1,0,0,11.410152,11.410152,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9412551,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,216,223863.23,14774.18,0,0,2458.7454,1205.335,569.58661 +6392,7806,13924,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.6110902,7.5834394,0,0,-989.94885,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.764564,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,246,395597.44,53552.813,420675.25,0,0,0,1637.7799 +6393,7807,13925,-9,13928,13926,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2393,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13926,13928,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,5.5371571,5.6471376,0,9,2,29.05484,0,2,2,2021,12,0,20,45,1,0,0,1.896337,1.896337,.05,.05,.05,0,0,0,0,0,1,1,0,.75835085,0,54.2,57.49,54.37,54.8,6.666666666666667,1,1,0,0,9,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13927,-9,13928,13926,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.074,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13928,13926,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.7155342,8.8846664,0,9,-2,32.340061,0,1,1,2021,10,1,47,50,1,1,0,16.891405,16.891405,0,0,0,0,0,0,0,0,1,1,0,2.2523804,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6394,7808,13929,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.7726698,8.2392254,0,0,-1107.2499,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71663761,8.1474791,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,449,561263.38,294947.41,135375.06,0,0,0,1871.7651 +6395,7809,13930,13931,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.49404,7.4301944,0,29,1,-40.777515,0,2,2,2021,7,0,25,25,1,0,0,5.2651291,5.2651291,.05,.05,0,0,0,0,0,2,1,1,0,.89283937,0,50.34,56.4,27.34,64.59,8.333333333333334,1,1,0,0,10,10,5,1,771,970392.63,869452,0,0,6210.9521,0,3488.4343 +6395,7809,13931,13930,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9823961,8.7031326,0,29,-1,1.4618107,0,2,2,2021,21,9,48,50,1,9,0,21.609783,21.609783,.05,.05,0,0,0,0,0,2,1,1,0,6.7528172,0,27.34,64.59,50.34,56.4,6.666666666666667,1,1,0,0,10,10,5,1,771,970392.63,869452,0,0,6210.9521,0,3488.4343 +6395,7810,13932,-9,13930,13931,1,0,20,0,0,0,2,2,1,0,2,7.5642147,7.5242186,0,0,0,-1045.5903,-9,1,2,2021,13,2,41,0,1,2,1,4.8163457,4.8163457,0,0,0,0,0,0,0,0,1,1,0,0,0,35.4,46.29,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,439,-73702.664,0,0,0,30664.104,0,1439.8116 +6395,7811,13933,-9,13930,13931,1,1,18,0,0,0,2,2,-9,0,3,7.1893883,7.2283635,0,0,0,-944.37408,0,1,2,2021,8,0,18,0,1,0,1,5.2728906,5.2728906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,2,10,2,1,120,-146298.59,-192235.75,0,0,0,0,1151.1196 +6396,7812,13934,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.2642221,8.5453863,0,0,0,-1053.4191,0,2,3,2021,6,0,45,40,1,0,0,11.947487,11.947487,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,8,4,1,2857,22328.029,-67293.563,0,0,0,0,1801.1542 +6397,7813,13935,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.6563,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,9.57092,7.4521089,86.450844,0,1,1,0,0,0,56.19,38.86,-9,-9,10,1,1,0,0,0,1,1,0,243,282262.06,0,0,0,0,0,898.96075 +6398,7814,13936,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2217879,7.1138396,0,0,-951.72186,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7121501,7.2592144,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,1004,1265972.4,348713.25,326530.53,0,7036.4063,0,2214.8977 +6399,7815,13937,13938,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,7.9691777,7.9025865,0,12,4,-80.832222,0,-9,-9,2021,11,0,35,0,1,2,0,9.9346781,9.9346781,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,50,57,7,2,3,0,0,1,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13938,13937,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,7.9912825,8.0050545,0,2,-4,97.558533,0,-9,-9,2021,10,0,24,25,1,1,0,16.158661,16.158661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49,55,7,2,3,0,0,1,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13939,-9,13937,13938,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.9681,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13940,-9,13937,13938,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.2147,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13941,-9,13937,13938,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.1339,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6400,7816,13942,-9,13943,13944,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5112,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6400,7816,13943,13944,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,7.8596892,7.8353124,0,1,-3,-47.751419,0,1,2,2021,20,7,42,12,1,7,0,5.8925939,5.8925939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.42,67.22,49,58,8.333333333333334,1,1,0,0,5,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6400,7816,13944,13943,-9,-9,1,1,25,1,1,0,1,1,-9,0,4,8.3313999,8.4637814,0,1,3,-16.94368,-9,-9,-9,2021,10,0,40,0,1,1,0,11.122169,11.122169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,30.42,67.22,7,4,1,0,0,1,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6401,7817,13945,13946,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.5080671,7.556705,0,10,1,-111.09749,0,2,2,2021,31,10,14,16,1,10,0,13.362981,13.362981,.05,.05,0,0,0,0,0,2,0,0,0,.65240878,0,22.35,66.68000000000001,36.69,57.54,8.333333333333334,1,1,0,0,14,7,4,1,479,595968.44,271300.56,226581.97,0,0,0,2818.4587 +6401,7817,13946,13945,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6661081,8.5670624,0,10,-1,-49.4729,0,-9,-9,2021,30,10,40,40,1,10,0,15.517751,15.517751,.05,.05,0,0,0,0,0,0,0,0,0,1.2747282,0,36.69,57.54,22.35,66.68000000000001,3.333333333333333,1,1,0,0,14,7,4,1,479,595968.44,271300.56,226581.97,0,0,0,2818.4587 +6402,7818,13947,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.3205814,8.5556803,0,0,0,-1020.327,0,3,3,2021,10,1,40,39,1,1,0,18.141449,18.141449,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,61.29,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,457.5,170430.63,43998.145,217856.75,25824.395,0,0,2472.5393 +6402,7818,13948,-9,13947,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8601,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,457.5,170430.63,43998.145,217856.75,25824.395,0,0,2472.5393 +6403,7819,13949,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.7369,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,3,4,1,0,0,8,1,0,1572,0,0,0,0,0,0,1220.0118 +6404,7820,13950,13951,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.9604888,7.7786341,45,6,-83.201332,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8139434,7.6411872,56.57,57.78,60.12,54.8,1.666666666666667,1,1,0,0,6,4,4,1,1183.5,1462551.9,1334587.8,252070.91,0,0,3162.7878,3578.7676 +6404,7820,13951,13950,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.3438783,7.5506272,45,-6,-39.66069,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2576418,7.6425724,60.12,54.8,56.57,57.78,10,1,1,0,0,12,4,4,1,1183.5,1462551.9,1334587.8,252070.91,0,0,3162.7878,3578.7676 +6405,7821,13952,13955,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,30,-1,0,0,3,-9,2021,20,8,0,35,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.8,56.68,48.94,49.1,8.333333333333334,1,1,0,0,6,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13953,-9,13952,13955,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.5787,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13954,-9,13952,13955,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.9064,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13955,13952,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,0,0,0,29,1,0,0,-9,-9,2021,10,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.94,49.1,49.8,56.68,5,1,1,0,0,10,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7822,13956,-9,13952,13955,1,0,20,0,2,0,2,2,0,0,3,0,0,0,0,0,-1019.743,-9,2,2,2021,18,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.32,61.81,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,812,103802.1,-70121.766,0,0,0,0,0 +6406,7823,13957,13958,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,32,-8,-102.06474,-9,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.26,44.13,55.87,30.05,8.333333333333334,1,1,0,0,4,5,2,1,794.5,643451.81,355925.94,144699.94,0,0,0,1364.5471 +6406,7823,13958,13957,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,7.0030532,6.8358769,32,8,34.648918,-9,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7333188,55.87,30.05,37.26,44.13,5,1,1,0,0,12,5,2,1,794.5,643451.81,355925.94,144699.94,0,0,0,1364.5471 +6407,7824,13959,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.169353,7.0594172,0,0,-1000.0225,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.423411,7.4328308,57.13,33.56,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1237,502177.03,193358.67,199349.48,0,0,0,13.172605 +6408,7825,13960,13961,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4211221,7.0028772,12,-1,33.020714,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2589698,7.4102249,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,1078,1200928.6,670922.56,401471.63,0,2208.3708,0,3944.915 +6408,7825,13961,13960,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,8.2178583,8.0860653,12,1,-.009730719,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.089922,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,3,7,4,1,1078,1200928.6,670922.56,401471.63,0,2208.3708,0,3944.915 +6409,7826,13962,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.9589114,8.0225573,0,0,0,-990.94543,0,2,2,2021,29,10,38,37,1,10,0,8.3093634,8.3093634,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38,27,-9,-9,1.666666666666667,1,1,0,1,12,11,4,0,266,214298.19,26653.33,0,0,0,0,853.58142 +6410,7827,13963,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,6.820272,7.0371752,0,0,-1029.4581,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3683963,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,921,-80780.125,0,0,0,0,0,945.52197 +6411,7828,13964,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1028.5632,-9,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2965332,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,3,7,2,0,667,140160.67,0,0,0,0,0,530.72607 +6412,7829,13965,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.2234,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.52,21.13,-9,-9,5,1,1,0,0,0,11,1,0,1238,-28527.568,0,0,0,0,0,2253.3755 +6413,7830,13966,13967,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,7.6021514,7.460228,0,21,-10,-20.543682,0,3,3,2021,2,1,126,90,1,1,0,1.8338917,1.8338917,.05,.05,0,0,0,0,0,0,0,0,0,6.3484578,0,45.81,61.51,19.55,42.8,6.666666666666667,1,1,0,0,12,7,4,1,395.5,635604.69,268574.31,448013.44,164298.06,0,0,3265.458 +6413,7830,13967,13966,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4704113,8.2712669,0,21,10,-44.536266,0,2,3,2021,21,9,70,60,1,9,0,5.5705552,5.5705552,.05,.05,0,0,0,0,0,27,0,0,0,6.717607,0,19.55,42.8,45.81,61.51,3.333333333333333,1,1,0,0,9,7,4,1,395.5,635604.69,268574.31,448013.44,164298.06,0,0,3265.458 +6413,7831,13968,-9,13967,13966,1,0,25,0,0,0,2,2,-9,0,3,8.0434732,8.2960844,0,0,0,-1078.5853,0,1,3,2021,11,1,37,37,1,1,1,13.662516,13.662516,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.95,46.67,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,1894,67760.68,148855.94,0,0,819.7243,0,1742.5508 +6414,7832,13969,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.858335,8.2274847,5.6458631,0,0,-1024.6223,0,-9,-9,2021,10,0,35,35,1,0,0,9.6886864,9.6886864,0,0,.05,0,0,0,0,0,0,0,0,6.0844269,6.0431013,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,148,75077.102,104535.16,157505.06,68173.398,4322.5645,0,1586.7181 +6415,7833,13970,13971,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,-1,38.320992,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,33.62,54.53,26.45,8.333333333333334,1,1,0,0,0,5,2,1,1055.5,48672.031,89185.008,0,0,0,718.81635,1718.6511 +6415,7833,13971,13970,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.3793311,6.3607392,52,1,88.503014,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6982288,6.4136424,54.53,26.45,51.66,33.62,6.666666666666667,1,1,0,0,0,5,2,1,1055.5,48672.031,89185.008,0,0,0,718.81635,1718.6511 +6416,7834,13972,13973,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,24,-4,56.473068,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,55,53,55,8,2,3,0,0,1,8,2,0,651.5,170863.69,83131.453,302172.53,56780.707,0,0,996.89587 +6416,7834,13973,13972,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,6.7794824,6.8508286,0,25,4,12.83444,0,-9,-9,2021,9,0,16,16,1,1,0,6.8792491,6.8792491,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53,55,50,55,8,2,3,0,0,10,8,2,0,651.5,170863.69,83131.453,302172.53,56780.707,0,0,996.89587 +6416,7835,13974,-9,13972,13973,1,1,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-904.63861,-9,2,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,707,72119.898,0,0,0,0,0,552.44269 +6417,7836,13975,13976,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,0,0,12,-8,49.968056,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.76,54.51,61.23,31.03,10,1,1,0,0,0,12,3,1,257,539958,65646.711,221050.34,0,0,0,2169.1865 +6417,7836,13976,13975,-9,-9,1,1,94,0,0,0,2,2,-9,0,3,0,7.2923193,7.2974982,12,8,18.886293,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2738361,7.6988711,61.23,31.03,57.76,54.51,10,1,1,0,0,0,12,3,1,257,539958,65646.711,221050.34,0,0,0,2169.1865 +6418,7837,13977,-9,13979,13980,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-974.66095,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13978,-9,13979,13980,1,1,17,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1048.6671,0,1,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2672672,0,66.09999999999999,39.96,-9,-9,1.666666666666667,1,1,0,0,3,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13979,13980,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.6337795,8.5100965,0,23,2,-16.648207,0,-9,2,2021,7,0,30,30,1,0,0,18.867405,18.867405,0,0,0,0,0,0,0,0,1,1,0,2.7685802,0,51.02,52.22,33.34,41.59,8.333333333333334,1,1,0,0,9,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13980,13979,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.6327915,8.5865822,0,23,-2,68.439674,0,-9,2,2021,26,10,45,45,1,10,0,13.853916,13.853916,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.34,41.59,51.02,52.22,1.666666666666667,1,1,0,0,12,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6419,7838,13981,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4414988,8.009119,0,0,0,-1070.2994,0,3,2,2021,10,0,37,0,1,0,0,8.4074278,8.4074278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.24,44.82,-9,-9,5,1,1,0,1,5,2,4,1,434,452728.16,460074.72,118636.96,42373.234,0,0,927.58887 +6420,7839,13982,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1080.1967,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,44.68,-9,-9,6.666666666666667,1,1,0,0,7,6,1,1,4195,67164.609,0,38825.602,0,0,0,389.85666 +6421,7840,13983,13984,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.5395737,9.6637001,0,6,-4,-76.729271,0,3,3,2021,8,0,55,50,1,0,0,32.407478,32.407478,.05,.05,0,0,0,0,0,0,1,1,0,8.2210169,0,55,52,46,36,8,1,1,0,0,1,7,5,1,1742.5,548156.19,360122.59,263388.44,81947.5,9734.2871,3252.9231,10163.488 +6421,7840,13984,13983,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.9857907,6.6649156,39,4,125.52724,0,3,3,2021,22,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,4.4292779,7.0650249,46,36,55,52,5,1,1,0,0,2,7,5,1,1742.5,548156.19,360122.59,263388.44,81947.5,9734.2871,3252.9231,10163.488 +6422,7841,13985,13986,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5624485,7.2637424,0,16,-3,-54.07925,0,3,3,2021,10,1,32,32,1,1,0,6.0507441,6.0507441,0,0,0,0,0,0,0,0,0,0,0,0,0,59.47,35.89,60.55,42.48,6.666666666666667,1,1,0,0,12,2,4,1,690,127206.9,-52917.711,133662.27,99912.531,0,0,2127.8164 +6422,7841,13986,13985,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.6467824,8.1018839,0,16,3,12.242262,0,3,3,2021,7,0,40,44,1,0,0,10.008325,10.008325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.55,42.48,59.47,35.89,10,1,1,0,0,12,2,4,1,690,127206.9,-52917.711,133662.27,99912.531,0,0,2127.8164 +6423,7842,13987,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1557951,8.4111862,0,0,0,-1086.1963,0,-9,-9,2021,8,0,10,15,1,0,0,35.267147,35.267147,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,2693,345005.28,97732.438,157736.47,91382.336,4717.2207,0,1474.5265 +6424,7843,13988,13989,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,28,-5,0,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.04,27.42,44.25,23.22,5,1,1,0,0,0,10,1,0,288,332633.25,111082.71,0,0,12314.814,2133.7388,2313.9143 +6424,7843,13989,13988,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,28,5,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.25,23.22,47.04,27.42,1.666666666666667,1,1,0,0,0,10,1,0,288,332633.25,111082.71,0,0,12314.814,2133.7388,2313.9143 +6425,7844,13990,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.6004429,7.6550322,0,0,-1008.7305,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.0189834,7.2765288,42.147179,0,1,1,0,.42409858,7.7400789,50.27,29.56,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,791,659044.5,149227.38,256647.77,0,0,0,2301.6951 +6426,7845,13991,13993,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.7268324,9.1411867,0,7,-1,-34.292896,0,-9,-9,2021,6,0,32,30,1,0,0,19.942572,19.942572,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,54.79,55.86,8.333333333333334,1,1,0,0,8,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6426,7845,13992,-9,13991,13993,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.91229,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6426,7845,13993,13991,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,7.2706652,7.5359206,0,7,1,-106.14933,0,2,2,2021,7,0,32,0,1,0,0,6.6883473,6.6883473,.05,.05,0,0,0,0,0,0,1,1,0,6.54491,0,54.79,55.86,43.2,59.97,8.333333333333334,1,1,0,0,9,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6427,7846,13994,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,7.7466292,7.8635345,0,0,0,-992.81378,0,-9,-9,2021,5,0,35,25,1,0,0,8.2759562,8.2759562,0,0,.05,0,0,0,0,7,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,5,6,3,0,99,113275.61,-37942.078,0,0,13420.402,0,1231.1302 +6428,7847,13995,13996,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.1110735,8.4347754,0,6,0,33.880348,0,3,3,2021,19,8,29,29,1,8,0,15.219991,15.219991,0,0,0,0,0,0,0,0,0,0,0,4.2880192,0,40.83,59.68,47.79,53.79,8.333333333333334,1,1,0,0,7,9,4,1,730,1536863.9,1240922,330354.28,0,0,0,3050.3408 +6428,7847,13996,13995,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0023088,7.6652207,6,9,21.718596,0,3,3,2021,11,0,0,37,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.6961937,47.79,53.79,40.83,59.68,8.333333333333334,1,1,0,0,6,9,4,1,730,1536863.9,1240922,330354.28,0,0,0,3050.3408 +6428,7848,13997,-9,13995,13996,1,1,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1020.2593,1,1,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7404299,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,4,9,1,1,189,87991.641,0,0,0,0,0,-190.63184 +6428,7849,13998,-9,13995,13996,1,1,21,0,0,0,2,2,-9,0,2,7.8103728,7.716887,0,0,0,-1034.6362,0,1,2,2021,22,8,32,0,1,8,1,9.024642,9.024642,0,0,0,0,0,0,0,0,0,0,0,0,0,25.13,46.93,-9,-9,5,1,1,0,0,5,9,3,1,1483,-228183.78,0,0,0,0,0,762.12109 +6429,7850,13999,14000,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.2627869,8.1729317,0,18,3,5.473526,0,-9,3,2021,12,0,38,38,1,0,0,11.355604,11.355604,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,45.31,56.19,46.16,5,1,1,0,0,13,12,5,0,181.5,3528522.8,2855037.8,443149.66,0,0,0,2277.9199 +6429,7850,14000,13999,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.1488762,8.2032814,0,18,-3,-16.331703,0,1,3,2021,8,0,38,38,1,0,0,12.331441,12.331441,0,0,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,49.06,45.31,5,1,1,0,0,13,12,5,0,181.5,3528522.8,2855037.8,443149.66,0,0,0,2277.9199 +6430,7851,14001,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,7.1770592,7.3341227,0,0,0,-1013.627,0,-9,-9,2021,9,0,40,40,1,1,0,4.133203,4.133203,0,0,.05,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,7,1,1,0,0,6,10,3,1,570,191329.83,147717.14,0,0,0,0,1696.0068 +6431,7852,14002,14003,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.2101355,8.8777342,0,9,2,-50.921173,0,2,2,2021,12,0,42,44,1,0,0,13.966183,13.966183,0,0,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,52.23,55.6,8.333333333333334,1,1,0,1,11,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6431,7852,14003,14002,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,9,-2,-40.253403,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.23,55.6,40.58,60.95,8.333333333333334,1,1,0,1,4,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6431,7852,14004,-9,14003,14002,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.65686,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6432,7853,14005,14006,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.2579069,7.6965699,7.0688481,4,0,-66.726707,0,3,2,2021,10,0,16,4,1,0,0,9.3768225,9.3768225,.05,.05,0,0,0,0,0,0,0,0,0,0,6.982976,54.21,49.46,57.16,56.15,6.666666666666667,1,1,0,0,10,4,4,1,113.5,346280.41,508474.53,359670.63,283047.16,0,0,2882.9968 +6432,7853,14006,14005,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.6479592,8.4171152,6.4923515,4,0,91.043068,0,-9,-9,2021,9,0,32,30,1,0,0,9.1623392,9.1623392,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9009109,57.16,56.15,54.21,49.46,10,1,1,0,0,10,4,4,1,113.5,346280.41,508474.53,359670.63,283047.16,0,0,2882.9968 +6433,7854,14007,-9,14010,14009,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.4327,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14008,-9,14010,14009,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.209,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14009,14010,-9,-9,1,1,49,0,3,0,3,3,-9,0,3,6.7797699,6.9557705,0,7,11,-75.749313,0,2,1,2021,11,1,32,32,1,1,0,4.6843238,4.6843238,0,0,.05,0,0,0,0,0,1,0,1,0,0,41.64,54.12,42.17,38.71,3.333333333333333,3,4,0,1,13,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14010,14009,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,0,0,0,5,-11,21.283627,0,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.17,38.71,41.64,54.12,3.333333333333333,4,5,0,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14011,-9,14010,14009,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.64471,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6434,7855,14012,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.4700584,7.6696205,5.5296102,0,0,-947.05792,0,2,2,2021,15,4,30,24,1,4,0,5.8807492,5.8807492,.05,.05,0,0,0,0,0,0,1,1,0,5.1065831,0,41.67,56.78,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,2184,69703.703,-56796.559,0,0,0,0,1802.6443 +6434,7855,14013,-9,14012,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1614,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,2184,69703.703,-56796.559,0,0,0,0,1802.6443 +6435,7856,14014,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1014.7966,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17,15.39,-9,-9,0,1,1,0,0,0,10,1,0,1290,-6070.9053,0,0,0,6669.5786,1161.9689,3142.6199 +6436,7857,14015,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.1415691,7.9801993,0,0,0,-926.90186,-9,3,3,2021,8,1,40,0,1,1,0,11.117786,11.117786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,0,990,459219.75,330791.38,0,0,0,0,2686.6072 +6437,7858,14016,-9,14017,-9,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-963.93658,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,175,6738.3101,0,0,0,0,0,926.1604 +6437,7859,14017,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1048.3464,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,2,3,0,0,0,8,1,0,357,123164.13,0,0,0,0,0,1082.8202 +6437,7860,14018,-9,14017,-9,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-985.03387,-9,3,-9,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,739,83136.742,0,0,0,0,0,292.0242 +6437,7861,14019,-9,14017,-9,1,0,28,0,0,0,1,1,-9,0,5,9.0522099,9.1459608,0,0,0,-987.40875,0,3,-9,2021,6,0,40,35,1,0,1,22.740211,22.740211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,2,8,5,0,820,186601.38,118352.78,319913.53,358626.34,2505.8665,0,2269.5806 +6438,7862,14020,-9,14021,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1130.0454,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,478.5,141019.02,84673.844,0,0,3988.9131,60.667007,1454.8491 +6438,7862,14021,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.0969801,7.0628567,0,0,0,-977.04004,0,-9,-9,2021,10,0,19,16,1,0,0,8.9379406,8.9379406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.38,38.92,-9,-9,6.666666666666667,1,1,0,0,8,13,2,0,478.5,141019.02,84673.844,0,0,3988.9131,60.667007,1454.8491 +6439,7863,14022,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,7.7580175,8.250536,0,0,0,-1036.8125,0,-9,-9,2021,20,6,38,50,1,6,0,10.784564,10.784564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59,60.66,-9,-9,1.666666666666667,1,1,0,0,4,12,4,0,1054,686.97894,0,0,0,0,0,1024.2983 +6440,7864,14023,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-978.06927,-9,3,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.78,35.25,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,70,9267.375,0,0,0,0,0,1599.2236 +6440,7865,14024,-9,14023,-9,1,1,21,0,0,0,2,2,-9,0,3,7.7915821,7.6507449,0,0,0,-1060.4878,0,3,-9,2021,8,2,35,0,1,2,1,7.7392402,7.7392402,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.05,46.63,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,1653,-50026.254,-60198.605,0,0,0,0,1239.4832 +6441,7866,14025,14028,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.5897846,9.1896009,0,10,0,87.450897,0,1,2,2021,12,2,39,42,1,2,0,19.937153,19.937153,.05,.05,0,0,0,0,0,0,1,1,0,2.2570369,0,54.13,48.04,36.35,53.49,6.666666666666667,1,1,0,0,10,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14026,-9,14028,14025,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.7805,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14027,-9,14028,14025,1,0,17,0,1,1,2,0,0,0,3,0,3.7453897,4.1347156,0,0,-936.36633,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2590179,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14028,14025,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.8212347,8.7326889,0,10,0,123.65332,0,2,2,2021,12,0,30,28,1,2,0,27.345755,27.345755,0,0,0,0,0,0,0,0,1,1,0,7.7935529,0,36.35,53.49,54.13,48.04,5,1,1,0,0,10,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6442,7867,14029,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1080.7434,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7892244,0,34.78,52.7,-9,-9,6.666666666666667,1,1,0,0,5,7,2,1,1054,1398118.8,448050.13,809331.81,0,0,0,1345.4551 +6443,7868,14030,-9,14031,14032,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.00989,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6443,7868,14031,14032,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1326561,7.7624116,0,6,2,-25.936621,0,-9,-9,2021,7,0,30,32,1,0,0,14.859638,14.859638,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,57.06,57.76,8.333333333333334,4,1,0,0,5,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6443,7868,14032,14031,-9,-9,1,1,28,0,2,0,2,2,-9,0,5,7.5661683,7.4336987,0,6,-2,-69.24086,0,-9,-9,2021,8,0,50,45,1,0,0,2.9004905,2.9004905,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,9,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6444,7869,14033,14034,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.8037424,6.0192709,41,-10,-137.03072,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6712036,5.7789569,52,46,48.89,36.77,8,1,1,0,0,0,9,2,1,903.5,640749.94,55186.832,614984.13,0,0,0,3642.103 +6444,7869,14034,14033,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.1876316,7.4492002,41,10,80.486076,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.1266595,0,18.446608,120,1,1,0,6.2537384,7.482543,48.89,36.77,52,46,5,1,1,0,0,0,9,2,1,903.5,640749.94,55186.832,614984.13,0,0,0,3642.103 +6445,7870,14035,14036,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.946249,8.9603424,0,7,7,-61.341545,0,2,2,2021,8,0,67,60,1,0,0,16.608009,16.608009,.05,.05,0,0,0,0,0,0,0,0,0,3.6485262,0,54.1,59.11,56.25,52.62,8.333333333333334,1,1,0,0,12,4,5,1,946.5,988304.31,1043220.2,186161.73,177674.69,543.7749,22397.668,4092.7578 +6445,7870,14036,14035,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1291265,8.2326918,0,7,-7,28.400993,0,-9,-9,2021,6,0,44,41,1,0,0,8.5659122,8.5659122,.05,.05,0,0,0,0,0,0,0,0,0,2.667588,0,56.25,52.62,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,946.5,988304.31,1043220.2,186161.73,177674.69,543.7749,22397.668,4092.7578 +6446,7871,14037,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.2371879,6.0973797,0,0,-914.58185,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9456553,6.30269,51.76,47.75,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,276,104793.71,93671.289,77092.852,0,0,0,655.81201 +6447,7872,14038,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.6714044,7.9540844,0,0,0,-1032.1591,0,3,2,2021,10,0,39,37,1,0,0,8.2206078,8.2206078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,843,478003.25,352164.34,0,0,0,0,730.46826 +6448,7873,14039,14040,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.6803546,7.9720073,6.8058634,44,-3,.025548566,0,2,2,2021,21,8,24,24,1,8,0,9.2769861,9.2769861,0,0,0,0,0,0,0,7,1,1,0,2.7537823,7.1216011,43.67,37.13,45.77,32,3.333333333333333,1,1,0,0,9,2,3,1,336,250807.78,68711.609,143821.14,21375.627,8088.6992,-223.70923,2563.1504 +6448,7873,14040,14039,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,3.645869,3.3691835,44,3,-21.166523,0,-9,2,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,3.2598109,45.77,32,43.67,37.13,3.333333333333333,1,1,0,0,7,2,3,1,336,250807.78,68711.609,143821.14,21375.627,8088.6992,-223.70923,2563.1504 +6449,7874,14041,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.9946041,7.1104631,0,0,-1002.716,0,3,3,2021,9,3,0,0,4,3,0,0,0,0,0,0,1,0,12.137971,0,0,1,1,0,0,7.0601239,59,25.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,413,212806.97,53138.785,112096.32,0,0,0,1090.5745 +6450,7875,14042,14043,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1949239,7.1334553,32,0,-57.884266,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9108334,7.325459,58.72,51.29,55.3,55.6,8.333333333333334,1,1,0,0,5,4,3,1,689.5,689591.88,547726.63,154502.13,0,-477.19327,0,3700.7163 +6450,7875,14043,14042,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.2356172,6.8485293,33,0,20.937094,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8420923,6.8924742,55.3,55.6,58.72,51.29,8.333333333333334,1,1,0,0,7,4,3,1,689.5,689591.88,547726.63,154502.13,0,-477.19327,0,3700.7163 +6451,7876,14044,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,4,7.5988121,7.0861988,0,0,0,-950.92236,0,2,2,2021,10,0,37,0,1,1,0,5.5603213,5.5603213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,685,61447.363,88740.438,0,0,0,0,2636.7297 +6452,7877,14045,14046,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5588465,7.6958795,49,1,-20.763802,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9863977,7.5462389,50.65,60.47,64.40000000000001,31.26,10,1,1,0,0,10,2,3,1,2674.5,868708,429766.38,366235.38,0,-161.87756,0,2048.5601 +6452,7877,14046,14045,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0102873,6.0191407,49,-1,-78.308693,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9352705,5.8701119,64.40000000000001,31.26,50.65,60.47,10,1,1,0,0,6,2,3,1,2674.5,868708,429766.38,366235.38,0,-161.87756,0,2048.5601 +6453,7878,14047,14048,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.2086825,7.5994267,0,11,-5,52.122898,0,2,2,2021,12,0,18,18,1,0,0,11.096852,11.096852,0,0,0,0,0,0,0,0,1,1,0,0,0,37.28,55.9,44.5,54.04,8.333333333333334,1,1,0,0,11,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6453,7878,14048,14047,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.3349781,8.1981478,0,11,5,-100.07439,-9,-9,-9,2021,12,0,38,0,1,0,0,12.906018,12.906018,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,54.04,37.28,55.9,8.333333333333334,1,1,0,1,12,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6453,7878,14049,-9,14047,14048,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8389,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6454,7879,14050,14052,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,17,-7,37.266144,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48,56,51,56,7,2,3,0,1,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14051,-9,14050,14052,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.001,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14052,14050,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.580307,8.3543825,0,17,7,42.888798,0,-9,-9,2021,9,0,60,53,1,1,0,11.784324,11.784324,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48,56,8,2,3,0,1,10,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14053,-9,14050,14052,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.66925,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14054,-9,14050,14052,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.87512,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6455,7880,14055,14056,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3930211,5.2390561,60,-4,15.496149,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.6628056,0,0,1,1,0,0,5.4544454,54.9,38.15,57.33,53.46,10,1,1,0,0,0,9,2,0,2024,629148.25,73202.578,500240.03,0,0,0,1893.802 +6455,7880,14056,14055,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,59,4,-53.617081,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.9,38.15,10,1,1,0,0,0,9,2,0,2024,629148.25,73202.578,500240.03,0,0,0,1893.802 +6456,7881,14057,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.6350336,7.5032954,0,0,-1081.9705,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6790571,7.4484563,57.06,57.76,-9,-9,10,1,1,0,0,0,7,3,1,1208,582452.69,207608.89,406824.69,0,0,0,1506.9302 +6457,7882,14058,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.9686251,8.0753794,0,0,0,-1038.7036,0,-9,-9,2021,12,1,40,55,1,1,0,9.1675043,9.1675043,0,0,0,0,0,0,0,0,0,0,0,0,0,45.19,48.64,-9,-9,5,1,1,0,0,3,9,4,0,328,41282.039,140818.13,0,0,4032.6238,0,1725.5863 +6458,7883,14059,14060,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8903303,9.1078854,0,9,-11,63.899998,0,-9,-9,2021,11,0,40,50,1,2,0,22.264452,22.264452,.05,.05,0,0,0,0,0,0,0,0,0,4.2165332,0,49,48,53.61,52.37,7,2,3,0,0,1,5,5,1,2980.5,443493.88,134300.75,107570.64,0,0,0,4665.9326 +6458,7883,14060,14059,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,7.5279703,7.7793331,0,34,11,29.446917,0,2,2,2021,7,0,40,40,1,0,0,7.9969296,7.9969296,.05,.05,0,0,0,0,0,0,0,0,0,2.8643975,0,53.61,52.37,49,48,8.333333333333334,2,3,0,0,12,5,5,1,2980.5,443493.88,134300.75,107570.64,0,0,0,4665.9326 +6459,7884,14061,14062,-9,-9,1,0,31,0,2,0,2,2,-9,0,1,0,0,0,4,1,-8.3751068,0,2,2,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.6,35.96,43,54.57,5,1,1,0,1,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14062,14061,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.6833253,7.7130785,0,4,-1,44.418835,0,-9,-9,2021,10,2,48,48,1,2,0,5.5285101,5.5285101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43,54.57,25.6,35.96,6.666666666666667,1,1,0,0,12,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14063,-9,14061,14062,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.56073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14064,-9,14061,14062,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.88507,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6460,7885,14065,14066,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,0,0,9,5,0,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.350224,0,60.02,56.42,32.13,23.18,8.333333333333334,1,1,0,0,8,12,1,1,1218.5,734073.5,607984.44,166033.88,0,0,405.36267,294.05804 +6460,7885,14066,14065,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,0,0,0,9,-5,0,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.13,23.18,60.02,56.42,3.333333333333333,1,1,0,0,7,12,1,1,1218.5,734073.5,607984.44,166033.88,0,0,405.36267,294.05804 +6461,7886,14067,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.9655328,7.542913,0,0,-1009.5495,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0103605,7.9946184,48.78,37.32,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,1211,585446.25,349451.34,217876.58,0,0,6873.7422,2608.3508 +6462,7887,14068,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-931.03094,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.37,39.25,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,2307,270204.63,171718.31,160162.88,0,0,0,1410.0626 +6463,7888,14069,14070,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,9,-3,-119.46656,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.43,55.57,8.333333333333334,1,1,0,0,9,13,3,1,1249.5,373458.69,193547.88,128841.5,0,0,0,2693.7529 +6463,7888,14070,14069,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.5532074,7.8082976,9,3,170.11113,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.35265183,8.1327076,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,0,13,3,1,1249.5,373458.69,193547.88,128841.5,0,0,0,2693.7529 +6464,7889,14071,14072,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1991091,8.0667295,0,38,-2,-89.410019,0,3,3,2021,11,0,42,45,1,0,0,10.591882,10.591882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,43.1,36.84,1.666666666666667,1,1,0,0,9,2,4,1,1301,559247.63,455339.75,86881.766,14467.749,8474.1377,0,2131.8945 +6464,7889,14072,14071,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.0255146,7.1631694,0,39,2,83.53215,0,3,3,2021,11,0,15,15,1,0,0,6.8496404,6.8496404,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.1,36.84,54.96,53.17,5,1,1,0,0,9,2,4,1,1301,559247.63,455339.75,86881.766,14467.749,8474.1377,0,2131.8945 +6465,7890,14073,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.26605,0,-9,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,1.666666666666667,1,1,0,0,3,11,1,0,1821,-156860.28,0,0,0,0,0,2072.1763 +6465,7891,14074,-9,14073,-9,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1047.7966,-9,2,-9,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,11,1,0,443,0,0,0,0,0,0,-409.30508 +6466,7892,14075,14076,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,8,-1,-12.919215,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0627048,0,51,46,47.07,34.11,7,1,1,0,0,0,5,2,1,438,316190.5,78451.234,260135.5,0,0,0,1577.2551 +6466,7892,14076,14075,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.1099758,6.3339262,51,1,-15.929047,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.900722,6.2219725,47.07,34.11,51,46,8.333333333333334,1,1,0,0,5,5,2,1,438,316190.5,78451.234,260135.5,0,0,0,1577.2551 +6467,7893,14077,-9,14079,14078,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.02185,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6467,7893,14078,14079,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.6304216,8.5513687,0,15,6,-185.86342,0,2,2,2021,6,0,47,37,1,0,0,13.774939,13.774939,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.09,58.35,46.44,59.62,10,1,1,0,0,10,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6467,7893,14079,14078,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1928015,9.0026693,0,14,-6,-30.513687,0,1,1,2021,13,2,50,52,1,2,0,27.680338,27.680338,.05,.05,.05,0,0,0,0,0,0,0,0,.25458208,0,46.44,59.62,44.09,58.35,8.333333333333334,1,1,0,0,11,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6468,7894,14080,-9,14081,14082,1,0,21,0,0,0,2,2,-9,0,3,6.4882689,6.3554459,0,0,0,-975.82379,0,2,2,2021,10,1,48,48,1,1,1,1.7505444,1.7505444,0,0,0,0,0,0,0,0,0,0,0,0,0,40.31,57.72,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,2020,4247.9541,0,0,0,0,-87.358704,830.48187 +6468,7895,14081,14082,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4275913,8.3977566,0,12,5,-10.991628,0,-9,-9,2021,13,1,57,88,1,1,0,11.55473,11.55473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.01,56.89,60.02,56.42,6.666666666666667,1,1,0,0,13,11,4,1,329,419858.5,484428.31,82907.469,87716.141,96805.055,3558.3066,2458.8169 +6468,7895,14082,14081,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,6.8798895,7.3110309,0,12,-5,-80.260483,0,3,-9,2021,10,1,37,74,1,1,0,3.4384766,3.4384766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,39.01,56.89,6.666666666666667,1,1,0,0,13,11,4,1,329,419858.5,484428.31,82907.469,87716.141,96805.055,3558.3066,2458.8169 +6469,7896,14083,14084,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.6202192,7.8300915,2,4,-110.45712,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7302508,7.6504383,57.16,56.15,44.3,55.28,8.333333333333334,1,1,0,0,0,2,4,1,1298,121960.19,205021.89,0,0,2212.7688,1958.0114,2757.2876 +6469,7896,14084,14083,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,0,7.6299877,7.6514788,2,-4,-24.506998,0,2,1,2021,9,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5849476,8.1361732,44.3,55.28,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,1298,121960.19,205021.89,0,0,2212.7688,1958.0114,2757.2876 +6469,7897,14085,-9,-9,14083,1,1,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-997.43878,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1359,-12228.255,0,0,0,0,0,-914.49585 +6470,7898,14086,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.8289738,7.9854107,0,0,0,-946.48987,0,2,2,2021,11,0,40,40,1,0,0,8.4764271,8.4764271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.78,41.83,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,470,172739.06,129464.99,0,0,0,0,928.39197 +6471,7899,14087,14088,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.3361521,8.2128735,0,4,0,-18.930389,0,3,3,2021,22,11,35,35,1,11,0,11.291674,11.291674,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,32.53,47.75,54.61,51.04,1.666666666666667,1,1,0,1,10,12,4,1,813.5,308764.13,254557,77582.766,0,0,0,2681.241 +6471,7899,14088,14087,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.4887266,8.3290243,0,4,0,46.016518,0,2,2,2021,11,0,44,48,1,0,0,9.7873993,9.7873993,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.61,51.04,32.53,47.75,3.333333333333333,1,1,0,1,12,12,4,1,813.5,308764.13,254557,77582.766,0,0,0,2681.241 +6472,7900,14089,14090,-9,-9,1,1,50,0,3,0,2,2,-9,0,3,7.9775138,7.4324746,0,20,5,59.562695,0,2,2,2021,7,1,34,40,1,1,0,7.5371008,7.5371008,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52,54.51,58.63,37,5,1,1,0,0,14,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6472,7900,14090,14089,-9,-9,1,0,45,0,3,0,2,2,-9,1,1,0,0,0,19,-5,29.355545,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.63,37,52,54.51,8.333333333333334,1,1,0,0,0,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6472,7900,14091,-9,14090,14089,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.59399,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6473,7901,14092,-9,14094,14095,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1087.6149,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14093,-9,14094,14095,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.00519,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14094,14095,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.3128319,7.2748137,0,6,-6,25.98518,0,3,1,2021,7,0,25,25,1,0,0,6.7539272,6.7539272,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,51.11,50.75,1.666666666666667,1,1,0,0,9,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14095,14094,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,7.669395,7.5935688,0,6,6,78.161827,0,2,2,2021,12,0,40,40,1,0,0,7.1929088,7.1929088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.11,50.75,51.24,58.84,3.333333333333333,1,1,0,0,2,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6474,7902,14096,14098,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.621932,8.4738798,0,28,0,-33.813419,0,2,2,2021,10,0,40,40,1,0,0,16.075962,16.075962,.05,.05,0,0,0,0,0,0,1,1,0,4.3843126,0,57.16,56.15,46.48,50.24,8.333333333333334,1,1,0,0,9,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7902,14097,-9,14098,14096,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.7995,-9,1,1,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,-9,-9,10,1,1,0,0,2,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7902,14098,14096,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.6351423,8.6649933,0,28,0,36.416088,0,2,2,2021,8,0,50,60,1,0,0,14.028827,14.028827,0,0,0,0,0,0,0,0,1,1,0,0,0,46.48,50.24,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7903,14099,-9,14098,14096,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1123.667,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7326908,0,41.85,59.52,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,1112,17509.959,0,0,0,0,0,382.64203 +6475,7904,14100,-9,14102,14101,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1059.6581,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14101,14102,-9,-9,1,1,40,1,4,0,1,1,-9,0,4,8.8973665,8.9502201,0,14,2,-67.208076,0,2,2,2021,11,0,82,42,1,0,0,11.055915,11.055915,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,14,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14102,14101,-9,-9,1,0,38,1,4,0,1,1,-9,0,4,6.9206662,6.4532986,0,14,-2,-3.2960606,0,2,2,2021,10,0,15,15,1,0,0,8.1930485,8.1930485,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14103,-9,14102,14101,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.65808,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14104,-9,14102,14101,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-945.36597,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6476,7905,14105,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1124.1957,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.7,24.9,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,958,100576.26,0,0,0,0,0,1669.087 +6477,7906,14106,14107,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,8.6413889,8.3886404,0,11,1,5.8383007,0,3,2,2021,19,8,50,45,1,8,0,11.955776,11.955776,.05,.05,0,0,0,0,0,2,1,1,0,3.7758818,0,31.04,62.55,60.12,19.97,3.333333333333333,1,1,0,0,12,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7906,14107,14106,-9,-9,1,0,55,0,1,0,1,1,-9,0,1,0,7.8113418,7.7897577,11,-1,30.213863,0,2,2,2021,15,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3928928,0,60.12,19.97,31.04,62.55,3.333333333333333,1,1,0,0,5,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7906,14108,-9,14107,14106,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.1521,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7907,14109,-9,14107,14106,1,1,23,0,1,0,1,1,-9,0,5,7.9669466,7.7628441,0,0,0,-1078.9894,0,1,1,2021,6,0,15,0,1,0,1,20.298929,20.298929,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,215,0,0,0,0,0,0,1631.0302 +6477,7908,14110,-9,14107,14106,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1155.3951,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5522294,0,59.53,56.44,-9,-9,1.666666666666667,1,1,0,0,4,2,1,1,1458,0,0,0,0,0,0,868.12549 +6478,7909,14111,14112,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8472652,8.9579992,0,6,-1,-89.606499,0,3,3,2021,8,0,30,30,1,0,0,23.824663,23.824663,0,0,0,0,0,0,0,2,0,0,0,8.5067816,0,54.2,57.49,63.09,47.92,8.333333333333334,1,1,0,0,7,13,4,1,796,1399733.5,341439.88,558185.38,0,0,0,4894.5439 +6478,7909,14112,14111,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,6.656765,6.7199097,0,6,1,-30.380993,0,2,3,2021,6,0,70,60,1,0,0,1.2202137,1.2202137,0,0,0,0,0,0,0,0,0,0,0,7.0738077,0,63.09,47.92,54.2,57.49,10,1,1,0,0,7,13,4,1,796,1399733.5,341439.88,558185.38,0,0,0,4894.5439 +6479,7910,14113,-9,14114,14115,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.48895,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14114,14115,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.6834593,6.7442961,0,4,-7,-32.399864,0,2,2,2021,21,6,8,9,1,6,0,11.32635,11.32635,0,0,0,0,0,0,0,0,1,1,0,0,0,29.22,58.49,68.42,44.16,3.333333333333333,1,1,0,0,7,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14115,14114,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.2863932,8.2570534,0,4,7,-71.893204,0,-9,-9,2021,5,0,42,45,1,0,0,14.210474,14.210474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,68.42,44.16,29.22,58.49,10,1,1,0,0,8,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14116,-9,14114,14115,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4891,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6480,7911,14117,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,4.3649998,4.5479803,0,0,-964.79443,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.6588922,4.1342382,57.74,49,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,801,238694.25,203221.42,0,0,0,0,2156.4705 +6481,7912,14118,14119,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.536171,8.5811758,0,21,-2,118.89002,0,2,2,2021,8,0,60,60,1,0,0,13.142152,13.142152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.76,37.11,8.333333333333334,1,1,0,0,11,4,4,1,650,364003.06,146157.75,197597.47,65032.473,0,795.55652,3026.7659 +6481,7912,14119,14118,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.6757865,7.4076977,0,21,2,-48.906483,0,2,2,2021,11,0,27,27,1,0,0,7.5958056,7.5958056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.76,37.11,58.15,52.91,8.333333333333334,1,1,0,0,11,4,4,1,650,364003.06,146157.75,197597.47,65032.473,0,795.55652,3026.7659 +6482,7913,14120,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.728199,8.485795,0,0,0,-924.3288,0,3,3,2021,10,0,49,48,1,0,0,9.3932886,9.3932886,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.66,55.01,-9,-9,6.666666666666667,1,1,0,0,14,2,5,1,1640,142821.22,30588.277,92405.438,0,0,0,966.04187 +6483,7914,14121,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9134336,8.1504402,0,0,0,-959.38647,0,3,2,2021,6,0,39,39,1,0,0,9.7597837,9.7597837,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,8,3,0,1005,138640.11,18212.596,0,0,0,0,-66.544594 +6484,7915,14122,14123,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,9.2413349,9.084918,0,21,-8,-11.121884,0,1,2,2021,8,0,36,35,1,0,0,32.522408,32.522408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.69,57.47,8.333333333333334,1,1,0,0,13,13,5,1,455,876169.75,697970.81,268535.5,80040.969,5503.2529,3941.054,4976.4282 +6484,7915,14123,14122,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.4497843,8.3236914,0,12,8,-12.40723,0,-9,-9,2021,8,0,36,40,1,0,0,17.446898,17.446898,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.96,53.17,8.333333333333334,1,1,0,0,13,13,5,1,455,876169.75,697970.81,268535.5,80040.969,5503.2529,3941.054,4976.4282 +6485,7916,14124,14125,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.9218512,9.7200117,0,1,-2,-92.924736,-9,-9,-9,2021,8,1,54,0,1,1,0,46.477142,46.477142,.05,.05,0,0,0,0,0,0,0,0,0,6.0345287,0,57.33,53.46,51.94,55.88,10,4,5,0,0,9,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6485,7916,14125,14124,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,6.4251571,6.6793823,0,10,2,-54.009636,-9,2,1,2021,9,1,30,0,1,1,0,2.554708,2.554708,.05,.05,0,0,0,0,0,2,0,0,0,1.673779,0,51.94,55.88,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6485,7916,14126,-9,14125,14124,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.5563,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6486,7917,14127,-9,14130,14129,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.1532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14128,-9,14130,14129,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.81207,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14129,14130,-9,-9,1,1,42,0,3,0,2,2,-9,1,2,8.327342,8.261301,0,1,8,97.771332,-9,-9,-9,2021,12,1,75,0,1,1,0,6.4194307,6.4194307,.05,.05,0,0,0,0,0,27,1,1,0,0,0,52.24,50.75,29.71,52.4,5,3,4,0,0,10,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14130,14129,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,1,-8,97.689667,-9,2,2,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,29.71,52.4,52.24,50.75,3.333333333333333,1,1,0,0,3,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14131,-9,14130,14129,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.04895,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6487,7918,14132,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.4355,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,5,12,1,0,477,542188.38,78439.063,199057.75,0,0,0,1862.6438 +6488,7919,14133,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1042.4274,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,52.61,32.32,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,525,273399.56,0,0,0,0,0,1635.161 +6488,7920,14134,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.69116,0,2,-9,2021,17,5,0,12,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,42.95,61.24,-9,-9,3.333333333333333,1,1,1,1,2,12,1,0,358,-108969.21,0,0,0,1917.1113,0,1062.7737 +6488,7920,14135,-9,14134,-9,1,1,10,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1010.5174,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,1,0,358,-108969.21,0,0,0,1917.1113,0,1062.7737 +6489,7921,14136,14138,-9,-9,1,0,36,0,4,0,2,2,-9,0,3,6.9616923,7.1140642,0,17,1,137.9061,0,2,2,2021,10,2,20,20,1,2,0,6.9338384,6.9338384,.05,.05,0,0,0,0,.61153328,0,1,1,0,0,0,43.92,47.65,50,57,8.333333333333334,1,1,0,0,5,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14137,-9,14136,14138,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.3369,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14138,14136,-9,-9,1,1,35,0,4,0,1,1,-9,0,4,8.8600836,9.064476,0,7,-1,-72.007744,0,-9,-9,2021,10,0,40,40,1,1,0,26.242212,26.242212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,43.92,47.65,7,1,1,0,0,1,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14139,-9,14136,14138,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1045.1759,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14140,-9,14136,14138,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.1035,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14141,-9,14136,14138,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.73065,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6490,7922,14142,-9,14143,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7906,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,251,119068.99,29279.094,247136.3,106611.98,0,0,1894.3713 +6490,7922,14143,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,8.3950624,8.3201418,5.9021959,0,0,-951.00049,0,2,2,2021,20,8,38,38,1,8,0,16.183605,16.183605,0,0,0,0,0,0,0,0,1,1,0,5.7753963,0,37.83,40.74,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,251,119068.99,29279.094,247136.3,106611.98,0,0,1894.3713 +6491,7923,14144,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.3641,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4717274,0,51,46,-9,-9,8,1,1,0,0,0,12,1,0,351,83938.906,0,75081.07,0,0,0,1450.2246 +6492,7924,14145,14146,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.3599339,6.2216206,2,-3,-95.339478,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1431088,6.462554,55.3,55.6,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,433,159850.27,93217.758,0,0,0,0,1689.9871 +6492,7924,14146,14145,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.5932026,4.7463274,22,3,-9.2915506,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5658131,4.5957928,57.16,56.15,55.3,55.6,10,1,1,0,0,0,9,2,1,433,159850.27,93217.758,0,0,0,0,1689.9871 +6493,7925,14147,-9,14148,14149,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1017.8054,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6493,7925,14148,14149,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.7669196,7.7724657,0,8,-4,-104.1044,0,3,-9,2021,22,10,33,33,1,10,0,7.9298444,7.9298444,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,47.86,36.42,48.15,3.333333333333333,4,2,0,1,7,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6493,7925,14149,14148,-9,-9,1,1,40,0,1,0,2,2,-9,0,2,0,0,0,8,4,-59.249554,0,2,2,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.42,48.15,43.67,47.86,1.666666666666667,1,1,0,1,3,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6494,7926,14150,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.4421024,7.2752647,0,0,0,-1062.0853,0,-9,-9,2021,13,1,30,32,1,1,0,6.0900636,6.0900636,.05,.05,0,0,0,0,0,0,1,1,0,1.2061313,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1477,-164122.06,-9568.9307,0,0,0,0,709.4649 +6495,7927,14151,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1075.281,0,2,-9,2021,16,4,0,60,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,-9,-9,1.666666666666667,1,1,0,0,5,10,1,1,1647,16483.996,0,0,0,0,1047.4677,956.77753 +6496,7928,14152,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,7.912683,8.1580925,0,0,0,-1198.9165,0,-9,-9,2021,7,2,37,37,1,2,0,9.009902,9.009902,.05,.05,0,0,0,0,0,0,0,0,0,3.0869091,0,59.43,58.05,-9,-9,10,1,1,0,0,6,10,4,0,236,-273729.13,-62812.082,0,0,0,0,1767.6454 +6496,7929,14153,14154,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.9925632,8.0669498,0,2,-3,64.562958,0,2,2,2021,3,0,37,37,1,0,0,11.961758,11.961758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,59.62,52.31,58.29,10,1,1,0,0,13,10,5,0,1083.5,292847.63,-19248.9,247357.69,101760.8,0,0,3357.522 +6496,7929,14154,14153,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3774719,8.425971,0,2,3,130.2359,0,-9,-9,2021,4,0,72,60,1,0,0,9.4637632,9.4637632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,49.84,59.62,10,1,1,0,0,1,10,5,0,1083.5,292847.63,-19248.9,247357.69,101760.8,0,0,3357.522 +6497,7930,14155,14156,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,6.7576413,6.974257,10,1,49.019295,0,3,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6703925,6.8728881,56.47,59.4,51.43,35.46,8.333333333333334,1,1,0,0,6,12,3,1,537.5,172771.03,-14595.637,65527.164,0,0,0,2700.177 +6497,7930,14156,14155,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6657166,7.5815597,10,-1,92.203545,0,2,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,1.6884747,0,0,1,1,0,5.3835692,7.7463727,51.43,35.46,56.47,59.4,8.333333333333334,1,1,0,0,0,12,3,1,537.5,172771.03,-14595.637,65527.164,0,0,0,2700.177 +6498,7931,14157,14158,-9,-9,1,1,52,0,2,0,2,2,-9,1,4,8.1416397,7.752665,0,12,7,-6.545856,-9,2,3,2021,8,0,45,0,1,0,0,7.4919705,7.4919705,0,0,0,0,0,0,0,2,1,0,1,0,0,55.76,52.64,43.03,53.23,8.333333333333334,1,1,0,1,13,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14158,14157,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.6008539,7.5460901,0,12,-7,52.141415,0,2,2,2021,13,2,23,25,1,2,0,9.1351566,9.1351566,0,0,0,0,0,0,0,74.5,1,0,1,0,0,43.03,53.23,55.76,52.64,6.666666666666667,1,1,0,0,9,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14159,-9,14158,14157,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-979.4458,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14160,-9,14158,14157,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.66235,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7932,14161,-9,14158,14157,1,0,19,0,2,0,2,2,-9,0,3,6.845365,6.8929725,0,0,0,-945.89099,-9,1,2,2021,11,1,36,0,1,1,1,3.1852858,3.1852858,.05,.05,0,0,0,0,0,0,1,0,1,6.6507592,0,38.45,60.79,-9,-9,5,1,1,0,0,3,9,2,0,400,-26541.822,107786.3,0,0,4162.9629,-1162.8873,1950.5863 +6499,7933,14162,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.562,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.86,28.94,-9,-9,10,3,4,0,0,0,8,1,0,249,42724.297,0,0,0,0,0,1187.3717 +6500,7934,14163,14164,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,8.9208775,8.8577547,5.5572028,7,2,-15.261839,0,2,2,2021,9,1,50,50,1,1,0,16.663349,16.663349,0,0,0,0,0,0,0,0,1,1,0,0,5.7961855,49.04,55.86,67.93000000000001,17.44,6.666666666666667,1,1,0,0,12,12,5,1,880.5,1397024.6,993570,186868.56,0,3130.6025,0,4724.3813 +6500,7934,14164,14163,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,3.9625311,4.1560316,7,-2,-40.999878,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0923386,67.93000000000001,17.44,49.04,55.86,8.333333333333334,1,1,0,0,8,12,5,1,880.5,1397024.6,993570,186868.56,0,3130.6025,0,4724.3813 +6501,7935,14165,14167,-9,-9,1,0,32,1,2,0,1,1,-9,0,3,8.5336351,8.4603386,0,9,0,116.63152,0,-9,-9,2021,12,1,58,58,1,1,0,10.522603,10.522603,.05,.05,0,0,0,0,0,0,1,1,0,.61072087,0,40.65,57.36,62.66,52.4,8.333333333333334,1,1,0,0,7,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14166,-9,14165,14167,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.86951,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14167,14165,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,8.468935,8.4026918,0,9,0,60.588181,0,1,1,2021,8,0,37,27,1,0,0,16.122492,16.122492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,40.65,57.36,10,1,1,0,0,9,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14168,-9,14165,14167,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.2533,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6502,7936,14169,14170,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.5782828,6.8382177,6,2,31.047005,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1869307,6.4811578,57.16,24.34,54.2,57.49,8.333333333333334,1,1,0,0,3,8,2,1,1611,1736309.3,849274.25,715671.5,0,0,3261.7534,2156.0635 +6502,7936,14170,14169,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,6,-2,-77.237,0,-9,-9,2021,9,0,0,52,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4512014,0,54.2,57.49,57.16,24.34,8.333333333333334,1,1,0,0,6,8,2,1,1611,1736309.3,849274.25,715671.5,0,0,3261.7534,2156.0635 +6503,7937,14171,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,8.3205757,8.3513288,0,0,-926.64935,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1429596,46.81,37.48,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,229,440635.59,93596.172,88365.539,0,0,0,2563.5146 +6504,7938,14172,14173,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.96311,6.9955282,39,6,-40.293171,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48086247,7.0230198,52.22,53.26,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,866.5,415647.94,280783.75,67954.289,0,0,0,2848.5188 +6504,7938,14173,14172,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9788871,7.1486878,39,-6,73.770844,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9403086,7.1284556,57.73,54.53,52.22,53.26,8.333333333333334,1,1,0,0,3,5,3,1,866.5,415647.94,280783.75,67954.289,0,0,0,2848.5188 +6505,7939,14174,14175,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.3408303,5.4528341,49,0,8.4312801,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,5.0948553,5.407166,53.62,46.84,53,47,8.333333333333334,1,1,0,0,0,7,2,1,687.5,1175705.5,771878.25,237030.97,0,1206.0046,0,1928.8557 +6505,7939,14175,14174,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3525677,6.9235449,6,0,-90.638786,0,-9,-9,2021,10,0,0,120,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.782686,7.0687661,53,47,53.62,46.84,7,1,1,0,0,0,7,2,1,687.5,1175705.5,771878.25,237030.97,0,1206.0046,0,1928.8557 +6506,7940,14176,14178,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.2915754,8.2408657,4.0060964,15,15,-36.042942,0,3,2,2021,20,7,37,40,1,7,0,12.430037,12.430037,.05,.05,0,0,0,0,0,0,1,0,1,0,4.0614181,46.57,46.63,46.75,56.99,3.333333333333333,1,1,0,1,9,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6506,7940,14177,-9,14178,14176,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.5229,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6506,7940,14178,14176,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,6.8777995,7.3571129,0,14,-15,-43.198353,0,2,1,2021,9,0,8,2,1,0,0,17.039495,17.039495,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.75,56.99,46.57,46.63,6.666666666666667,1,1,0,0,6,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6507,7941,14179,14180,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.2155972,9.0944815,7.3019991,8,1,-8.0237608,-9,-9,-9,2021,9,0,40,0,1,0,0,24.927235,24.927235,0,0,0,1,0,4.0456767,0,0,1,1,0,9.0943804,7.341073,57.33,53.46,62.49,55.09,0,1,1,0,0,9,9,5,1,1318.5,1098174.8,365029.38,346747.16,0,0,0,10147.635 +6507,7941,14180,14179,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.3066807,7.3735681,53,-1,-40.529499,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5736766,7.2305574,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,0,9,5,1,1318.5,1098174.8,365029.38,346747.16,0,0,0,10147.635 +6508,7942,14181,14182,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.7385139,7.6582394,52,4,55.906937,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.6405997,0,0,1,1,0,3.7808042,7.7502089,36.27,39.33,55.93,49.95,6.666666666666667,1,1,0,0,0,9,3,1,608,3852624,332095.56,1045124,0,0,0,2363.1172 +6508,7942,14182,14181,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.4777532,4.2355714,52,-4,99.456985,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5627036,0,0,1,1,0,5.1607885,4.5367393,55.93,49.95,36.27,39.33,8.333333333333334,1,1,0,0,0,9,3,1,608,3852624,332095.56,1045124,0,0,0,2363.1172 +6509,7943,14183,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.1663647,9.4423199,0,0,0,-1056.0164,0,2,1,2021,7,0,42,40,1,0,0,25.220245,25.220245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.63,45.09,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,296,832092.06,424127.59,351638.25,0,3460.1711,0,2957.4197 +6510,7944,14184,14185,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.7407961,9.0597849,0,7,6,-192.02809,0,2,2,2021,7,0,51,50,1,0,0,13.533238,13.533238,.05,.05,0,0,0,0,0,0,0,0,0,6.4269066,0,57.16,56.15,33.89,56.25,8.333333333333334,1,1,0,0,8,4,5,0,277.5,182006.02,155941.45,0,0,0,1652.1511,5146.8916 +6510,7944,14185,14184,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.7788801,8.9618788,0,7,-6,-94.554695,0,-9,-9,2021,16,6,50,55,1,6,0,16.349905,16.349905,0,0,0,0,0,0,0,0,0,0,0,1.549826,0,33.89,56.25,57.16,56.15,6.666666666666667,1,1,0,0,8,4,5,0,277.5,182006.02,155941.45,0,0,0,1652.1511,5146.8916 +6511,7945,14186,14187,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.1137385,7.0430055,44,4,-4.555337,0,-9,-9,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4904752,7.0855284,57.16,56.15,36.78,41.13,8.333333333333334,1,1,0,0,9,5,2,1,1827,234324.94,293165.53,127924.94,0,9023.417,0,1151.5469 +6511,7945,14187,14186,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,4.1609344,4.2205625,44,-4,-63.598331,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8166802,3.9730992,36.78,41.13,57.16,56.15,5,1,1,0,0,8,5,2,1,1827,234324.94,293165.53,127924.94,0,9023.417,0,1151.5469 +6512,7946,14188,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.4032459,8.9196272,5.6798782,0,0,-913.70813,0,3,2,2021,15,6,43,41,1,6,0,14.316439,14.316439,.05,.05,0,0,0,0,0,0,1,1,0,5.5151634,0,44.15,50.21,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,1013.5,267049.25,5560.7734,175526.84,32246.465,0,0,3208.3884 +6512,7946,14189,-9,14188,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.188,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,2,4,1,1013.5,267049.25,5560.7734,175526.84,32246.465,0,0,3208.3884 +6512,7947,14190,-9,14188,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1037.42,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1624074,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,393,0,0,0,0,0,0,220.97371 +6513,7948,14191,-9,14193,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.6653,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6513,7948,14192,-9,14193,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4299,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6513,7948,14193,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.2106609,7.5292745,6.4470577,0,0,-966.64166,0,2,2,2021,12,4,13,0,1,4,0,9.3551397,9.3551397,0,0,0,0,0,0,0,0,1,1,0,6.2318983,0,52.13,57.22,-9,-9,6.666666666666667,1,1,0,1,5,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6514,7949,14194,14195,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.1173811,8.0051584,0,2,-5,12.638633,0,2,2,2021,12,0,40,37,1,0,0,9.3546114,9.3546114,0,0,0,0,0,0,0,0,0,0,0,0,0,42.88,40,40.1,53.28,8.333333333333334,2,3,0,0,10,11,5,1,549.5,1232491,582914.31,170281.25,0,2146.8081,1248.9673,3246.6006 +6514,7949,14195,14194,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.4664021,8.410923,0,2,5,4.6265054,0,-9,-9,2021,12,0,38,38,1,0,0,15.844242,15.844242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.1,53.28,42.88,40,5,1,1,0,0,3,11,5,1,549.5,1232491,582914.31,170281.25,0,2146.8081,1248.9673,3246.6006 +6515,7950,14196,-9,14197,14198,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-927.66211,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14197,14198,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.2961235,8.2103596,0,19,-3,-84.184547,0,3,3,2021,8,0,43,43,1,0,0,9.7941494,9.7941494,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.76,44.61,6.666666666666667,2,3,0,0,11,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14198,14197,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.2978659,8.0545254,0,19,3,-104.65454,0,3,3,2021,13,1,55,58,1,1,0,6.2987928,6.2987928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.76,44.61,48.87,58.55,6.666666666666667,2,3,0,0,12,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14199,-9,14197,14198,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1099.2104,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7951,14200,-9,14197,14198,1,1,20,0,2,0,2,2,-9,0,3,8.0791559,8.110116,0,0,0,-1006.8619,0,2,2,2021,9,0,48,53,1,0,1,5.5690684,5.5690684,0,0,0,0,0,0,0,0,1,1,0,3.244514,0,45.32,54.77,-9,-9,8.333333333333334,2,3,0,0,4,4,4,1,1156,-81566.672,64249.434,0,0,0,0,1665.7445 +6516,7952,14201,14202,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.4279213,8.571991,0,10,1,56.547977,0,2,3,2021,12,0,51,45,1,0,0,11.465948,11.465948,.05,.05,0,0,0,0,0,0,1,1,0,7.3684797,0,48.87,58.55,45.32,54.77,8.333333333333334,1,1,0,0,14,12,5,1,239.5,1088911.5,772695.5,171227.67,92328.789,0,0,4960.6064 +6516,7952,14202,14201,-9,-9,1,1,58,0,0,0,2,2,1,0,3,8.7247658,9.1541309,0,10,-1,8.1617727,-9,-9,-9,2021,13,1,42,0,1,1,0,24.272602,24.272602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,54.77,48.87,58.55,8.333333333333334,1,1,0,0,14,12,5,1,239.5,1088911.5,772695.5,171227.67,92328.789,0,0,4960.6064 +6517,7953,14203,14204,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2142448,8.0970325,36,4,-27.014502,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,0,0,0,7.4330378,8.236887,51.83,57.2,35.62,49.76,8.333333333333334,1,1,0,0,5,9,4,1,309,1003723.8,678412.44,228735.98,0,0,0,2213.3711 +6517,7953,14204,14203,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,4.8932929,5.3973217,36,-4,-.72496378,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,0,0,0,4.3944879,5.2931824,35.62,49.76,51.83,57.2,3.333333333333333,1,1,0,0,6,9,4,1,309,1003723.8,678412.44,228735.98,0,0,0,2213.3711 +6518,7954,14205,-9,14207,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.8134,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6518,7954,14206,-9,14207,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9376,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6518,7954,14207,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1007.8573,-9,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,1,3,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6519,7955,14208,14209,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.1781397,8.1383762,43,2,-39.899792,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1213303,54.37,54.8,44.34,44.44,8.333333333333334,1,1,0,0,11,4,4,1,1462.5,193676.19,-15302.041,100399.66,33633.609,35386.055,0,3114.6958 +6519,7955,14209,14208,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.3750024,6.7221909,43,-2,116.16383,0,-9,3,2021,22,11,0,0,4,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5313201,44.34,44.44,54.37,54.8,5,1,1,0,0,0,4,4,1,1462.5,193676.19,-15302.041,100399.66,33633.609,35386.055,0,3114.6958 +6520,7956,14210,-9,14212,14211,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1061.4678,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14211,14212,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9713278,8.8677387,0,9,5,-226.74451,0,-9,-9,2021,19,9,60,52,1,9,0,11.573175,11.573175,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,45.85,61.26,8.333333333333334,1,1,0,0,8,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14212,14211,-9,-9,1,0,38,0,2,0,1,1,1,0,4,8.2123089,8.0911131,0,15,-5,8.940033,-9,2,2,2021,9,0,47,0,1,0,0,9.8489208,9.8489208,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,48.28,60.18,8.333333333333334,1,1,0,0,5,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14213,-9,14212,14211,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.77728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6521,7957,14214,14215,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.9091139,8.4893885,0,32,-7,-16.0173,0,2,3,2021,19,8,42,43,1,8,0,16.771418,16.771418,0,0,0,0,0,0,0,2,0,0,0,0,0,35,59.32,40.25,42.7,6.666666666666667,1,1,0,0,12,4,5,1,1525,6323250.5,3696751,1930562.3,372379.56,0,0,4393.8848 +6521,7957,14215,14214,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2086296,8.1530027,32,7,-69.17849,0,2,1,2021,19,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1334705,40.25,42.7,35,59.32,1.666666666666667,1,1,0,0,6,4,5,1,1525,6323250.5,3696751,1930562.3,372379.56,0,0,4393.8848 +6522,7958,14216,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,6.7524199,6.6399159,0,0,0,-980.64209,0,3,2,2021,16,5,19,15,1,5,0,5.3771443,5.3771443,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,49.01,-9,-9,5,2,3,0,1,1,5,2,0,1963,28853.598,0,0,0,1063.5699,0,1938.4144 +6523,7959,14217,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.459341,4.4662428,0,0,-792.17981,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.8812232,48.498478,24.193419,0,1,1,0,0,4.9845967,44.25,16.75,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,491,112375.83,-9572.6338,0,0,0,0,1415.7738 +6524,7960,14218,14219,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.3641462,8.1311731,7,0,-142.33289,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1199589,7.7674866,45.13,49.45,36.7,61.65,8.333333333333334,1,1,0,0,2,2,4,1,776.5,1703413.1,1098622.1,244130.72,0,0,0,3214.928 +6524,7960,14219,14218,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.0189714,7.085897,7,0,-78.47937,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3859439,6.7902064,36.7,61.65,45.13,49.45,8.333333333333334,1,1,0,0,5,2,4,1,776.5,1703413.1,1098622.1,244130.72,0,0,0,3214.928 +6525,7961,14220,14221,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.4735522,6.6900854,44,-5,124.20351,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6058273,6.5290279,40.32,53.3,53.3,55.06,6.666666666666667,2,3,0,0,0,8,4,1,507.5,1140175,825572.13,267288.22,0,0,0,5170.96 +6525,7961,14221,14220,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.4624071,8.578433,44,5,104.00461,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9208527,8.0402641,53.3,55.06,40.32,53.3,10,2,3,0,0,6,8,4,1,507.5,1140175,825572.13,267288.22,0,0,0,5170.96 +6526,7962,14222,14225,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,6.1323857,6.1901369,4.1439199,22,1,1.4828655,0,3,3,2021,11,2,4,4,1,2,0,13.237221,13.237221,0,0,0,0,0,0,0,0,0,0,0,4.8168163,4.2526722,58.32,50.22,57.16,56.15,10,3,4,0,0,7,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14223,-9,14222,14225,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1007.2921,-9,3,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,4,2,0,0,0,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14224,-9,14222,14225,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1053.9946,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14225,14222,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0456858,9.1090889,0,23,-1,-85.815315,0,2,3,2021,6,0,40,40,1,0,0,24.673157,24.673157,0,0,0,0,0,0,0,0,0,0,0,7.5903807,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,10,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6527,7963,14226,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,8.1429596,7.920752,0,0,0,-1029.6171,0,-9,-9,2021,6,0,36,38,1,0,0,10.424113,10.424113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,11,13,4,1,539,-31285.594,251924.52,0,0,0,0,917.54865 +6528,7964,14227,-9,14228,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.82269,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,5,0,556,629846.56,163258.2,501695.69,0,0,0,3006.4146 +6528,7964,14228,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,9.0677519,9.0274696,0,0,0,-1000.449,0,2,3,2021,15,3,51,60,1,3,0,18.083006,18.083006,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,37.32,46.97,-9,-9,6.666666666666667,3,4,0,0,13,8,5,0,556,629846.56,163258.2,501695.69,0,0,0,3006.4146 +6529,7965,14229,-9,-9,-9,1,0,65,0,0,0,2,2,-9,1,2,7.8627348,7.8765688,0,0,0,-1111.3126,0,3,3,2021,10,0,30,30,1,0,0,10.258825,10.258825,0,0,0,1,0,1.9868025,0,0,1,1,0,0,0,64.64,21.97,-9,-9,5,1,1,0,0,10,12,4,0,237,-128460,0,223088.22,0,0,1518.9384,2290.8347 +6530,7966,14230,14231,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.8126488,8.6359329,0,17,-3,-54.672405,-9,2,1,2021,24,11,48,0,1,11,0,17.266216,17.266216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.74,65.41,57.16,56.15,6.666666666666667,1,1,0,0,10,12,5,1,544.5,941570.5,839364.75,328291.19,164394.95,5460.7393,7710.0635,6225.1577 +6530,7966,14231,14230,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.2381992,9.3758411,0,15,3,-87.893311,0,2,1,2021,8,0,40,41,1,0,0,33.716377,33.716377,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,25.74,65.41,8.333333333333334,1,1,0,0,13,12,5,1,544.5,941570.5,839364.75,328291.19,164394.95,5460.7393,7710.0635,6225.1577 +6531,7967,14232,-9,-9,-9,1,0,59,0,3,0,3,3,-9,0,3,0,0,0,0,0,-946.04468,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,8,1,1,279,-129719.65,0,0,0,0,2217.9097,0 +6531,7968,14233,-9,14235,14234,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.92017,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14234,14235,14232,-9,1,1,40,0,3,0,2,2,-9,0,4,7.6924958,7.5732112,0,17,4,27.539085,0,3,3,2021,12,0,38,39,1,0,0,4.8802176,4.8802176,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,47,57,5,2,3,0,0,13,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14235,14234,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.9097123,7.5794892,0,17,-4,130.44693,0,3,3,2021,11,0,37,20,1,2,0,7.4625878,7.4625878,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,37.99,47.35,7,2,3,0,0,1,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14236,-9,14235,14234,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-871.90173,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14237,-9,14235,14234,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.2889,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7969,14238,-9,14232,-9,1,0,37,0,3,0,1,1,-9,0,4,8.0278587,8.0835962,0,0,0,-1054.075,0,2,2,2021,11,0,38,40,1,2,1,9.4028702,9.4028702,0,0,0,0,0,0,0,0,1,1,0,7.8627186,0,48,57,-9,-9,7,2,3,0,0,1,8,4,1,420,-222311.17,0,0,0,15448.126,3727.3982,3162.2422 +6532,7970,14239,-9,14241,14240,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.9054,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6532,7970,14240,14241,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.2903776,8.2588043,0,4,1,72.581894,0,-9,-9,2021,6,0,55,62,1,0,0,7.2113137,7.2113137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.06,44.64,6.666666666666667,1,1,0,0,8,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6532,7970,14241,14240,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.235981,8.1835527,0,4,-1,-24.583576,0,2,2,2021,14,3,50,50,1,3,0,6.4009404,6.4009404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,44.64,51.83,57.2,6.666666666666667,1,1,0,0,11,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6533,7971,14242,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-906.92413,0,3,3,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,26.36,-9,-9,5,1,1,0,0,10,13,1,0,573,-243224.09,0,0,0,0,0,602.37158 +6534,7972,14243,-9,14245,14244,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.07574,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6534,7972,14244,14245,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.1458282,8.1066008,0,30,5,155.38455,0,-9,-9,2021,12,2,38,39,1,2,0,11.456403,11.456403,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.45,46.21,52.4,55.58,8.333333333333334,1,1,0,0,13,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6534,7972,14245,14244,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.0959377,8.2095566,0,30,-5,106.31101,-9,3,2,2021,10,2,40,0,1,2,0,9.8618698,9.8618698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,46.45,46.21,8.333333333333334,1,1,0,0,13,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6535,7973,14246,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.7428827,8.8478613,0,0,0,-1060.5151,0,-9,-9,2021,11,0,50,50,1,0,0,15.162143,15.162143,.05,.05,0,0,0,0,0,0,0,0,0,3.4474504,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,7,2,5,1,140,200206.91,-96823.031,0,0,0,920.43475,1856.2992 +6536,7974,14247,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,2,7.4169135,7.7989616,6.2828188,0,0,-1051.0538,0,2,2,2021,8,0,30,30,1,0,0,5.6322284,5.6322284,.05,.05,0,0,0,0,0,0,1,1,0,5.9947901,0,54.7,34.63,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6536,7974,14248,-9,14247,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5851,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6536,7974,14249,-9,14247,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.087,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6537,7975,14250,14251,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,8.6092939,8.6273422,0,10,-2,-98.836159,0,2,2,2021,29,11,38,38,1,11,0,16.605913,16.605913,0,0,0,0,0,0,0,0,0,0,0,5.2439919,0,24.95,44.36,48.69,41.49,6.666666666666667,1,1,0,0,11,13,5,1,1117.5,934259.38,990144.13,0,0,0,-978.51624,4731.7046 +6537,7975,14251,14250,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.96561,8.9334478,7.8377843,10,2,32.451786,0,2,2,2021,11,0,38,38,1,0,0,7.6636147,7.6636147,.05,.05,0,0,0,0,0,0,0,0,0,4.7786026,8.1835585,48.69,41.49,24.95,44.36,6.666666666666667,1,1,0,0,10,13,5,1,1117.5,934259.38,990144.13,0,0,0,-978.51624,4731.7046 +6537,7976,14252,-9,14250,14251,1,0,23,0,0,0,2,2,-9,0,3,7.9602599,7.9218779,0,0,0,-941.36896,0,2,2,2021,7,0,42,40,1,0,1,8.1967096,8.1967096,.05,.05,0,0,0,0,0,0,0,0,0,2.6714733,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,2951,-11158.318,-20826.768,0,0,0,0,1497.5027 +6537,7977,14253,-9,14250,14251,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.6014,0,2,2,2021,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.37,55.33,-9,-9,1.666666666666667,1,1,0,1,2,13,1,1,957,66946.672,0,0,0,0,0,0 +6538,7978,14254,14255,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.868515,7.9548674,27,-4,-47.302731,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,17.217091,0,0,1,1,0,0,7.4562488,46.6,41.33,53.82,45.47,8.333333333333334,1,1,0,0,7,6,3,1,1145,950220.38,585376.5,135087.48,0,0,0,2526.6265 +6538,7978,14255,14254,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9137678,6.2975659,27,4,2.5361714,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,2.1487288,0,17.824152,0,1,1,0,5.983428,6.078238,53.82,45.47,46.6,41.33,8.333333333333334,1,1,0,0,0,6,3,1,1145,950220.38,585376.5,135087.48,0,0,0,2526.6265 +6539,7979,14256,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-883.97711,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.39,46.45,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,195,120266.6,0,0,0,0,0,1268.5135 +6540,7980,14257,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5689392,8.5575161,0,0,0,-1037.6809,0,3,3,2021,18,6,37,38,1,6,0,15.929181,15.929181,.05,.05,0,0,0,0,0,0,0,0,0,.24235338,0,40.58,60.95,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,569,159237.41,5554.9443,96472.672,58887.563,0,3063.76,1984.051 +6541,7981,14258,14259,-9,-9,1,1,29,0,0,0,3,3,-9,0,4,8.255455,8.242341,0,2,3,-9.8857632,0,-9,-9,2021,12,0,37,37,1,0,0,11.017725,11.017725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.36,59.54,55.39,54.22,5,1,1,0,0,11,13,5,1,298.5,366054.19,350212.38,139759.19,104731.48,6408.7749,2153.7256,3823.9023 +6541,7981,14259,14258,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.3333216,8.6252661,0,2,-3,42.492729,0,2,2,2021,12,0,42,42,1,0,0,11.762101,11.762101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.39,54.22,47.36,59.54,5,1,1,0,0,12,13,5,1,298.5,366054.19,350212.38,139759.19,104731.48,6408.7749,2153.7256,3823.9023 +6542,7982,14260,14261,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.7646618,9.7135715,0,9,0,100.71555,0,-9,-9,2021,8,0,55,46,1,0,0,33.242699,33.242699,.05,.05,0,0,0,0,0,0,0,0,0,6.1433177,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,6,8,5,1,2192.5,2196722.5,109736.91,1615949.1,236682.47,0,0,13236.53 +6542,7982,14261,14260,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.5263987,9.2706814,0,25,0,-33.687218,0,2,1,2021,10,2,43,46,1,2,0,31.972347,31.972347,.05,.05,0,0,0,0,0,0,0,0,0,1.1723732,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,0,0,10,8,5,1,2192.5,2196722.5,109736.91,1615949.1,236682.47,0,0,13236.53 +6543,7983,14262,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,8.3303661,8.0935383,0,0,-858.96503,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5107527,8.0935812,56.34,40.63,-9,-9,10,1,1,0,0,0,7,4,1,581,43205.465,-33929.727,0,0,8662.1582,0,2082.7351 +6543,7984,14263,-9,14262,-9,1,0,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-972.3606,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.10859905,0,64.07000000000001,47.52,-9,-9,6.666666666666667,1,1,1,0,1,7,1,1,1487,-135276.31,0,0,0,0,-158.9243,96.156662 +6544,7985,14264,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8007135,7.702466,0,0,0,-987.83075,0,3,3,2021,14,3,35,40,1,3,0,7.9619021,7.9619021,0,0,0,0,0,0,0,7,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,557,151656.14,0,163109.41,23445.936,709.45032,1156.2887,1959.3624 +6545,7986,14265,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.7642775,7.4391222,0,0,-1025.9557,0,2,2,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0430679,7.2602897,25.31,44.08,-9,-9,3.333333333333333,1,1,0,1,8,1,3,1,1110,758696.56,119035.32,104567.41,0,0,0,1054.8641 +6545,7987,14266,-9,14265,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2792635,8.3308764,0,0,0,-927.46692,0,1,1,2021,11,0,38,37,1,2,0,11.23495,11.23495,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,4,1,44,112277,0,0,0,0,0,2015.9645 +6546,7988,14267,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.1537414,7.3392491,0,0,-954.34332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3314109,7.4512949,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,520,-74678.375,0,0,0,0,0,2586.4949 +6547,7989,14268,14269,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,7.8396492,7.8976445,0,7,4,54.79969,0,-9,-9,2021,12,0,44,20,1,0,0,8.8088503,8.8088503,.05,.05,0,0,0,0,0,2,1,1,0,0,0,38.65,34.09,22.06,65.69,6.666666666666667,1,1,0,0,7,2,4,1,426,224575.19,1365.667,116230.47,13735.135,0,0,1899.8646 +6547,7989,14269,14268,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.5565019,7.9105587,0,7,-4,60.459221,0,3,3,2021,22,8,39,39,1,8,0,8.043499,8.043499,0,0,0,0,0,0,0,0,1,1,0,0,0,22.06,65.69,38.65,34.09,1.666666666666667,1,1,0,0,9,2,4,1,426,224575.19,1365.667,116230.47,13735.135,0,0,1899.8646 +6548,7990,14270,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,7.6293354,7.5008245,5.2117801,0,0,-955.61395,0,3,-9,2021,16,4,21,23,1,4,0,12.608965,12.608965,.05,.05,0,0,0,0,0,0,1,1,0,5.0037804,5.2074161,47.8,28.27,-9,-9,5,1,1,0,0,11,10,3,1,2407,332795.38,1989.6047,0,0,0,0,2179.301 +6549,7991,14271,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,7.7993865,7.8205848,0,0,0,-1017.3107,0,1,1,2021,11,1,35,35,1,1,0,8.8199968,8.8199968,0,0,0,0,0,0,0,0,0,0,0,6.6713324,0,47.69,50.26,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,888,90319.531,0,0,0,0,0,1927.825 +6550,7992,14272,14273,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,5.4759188,5.6418905,27,0,105.11737,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84853458,5.188242,28.9,27.59,59.29,49.68,3.333333333333333,1,1,0,0,0,9,5,1,523,3621957,1916944,899093.44,0,0,0,4547.7754 +6550,7992,14273,14272,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4998274,9.4663763,0,27,0,33.90731,0,2,3,2021,5,0,50,43,1,0,0,34.059521,34.059521,.05,.05,0,0,0,0,0,76,1,1,0,1.8071361,0,59.29,49.68,28.9,27.59,8.333333333333334,1,1,0,0,9,9,5,1,523,3621957,1916944,899093.44,0,0,0,4547.7754 +6551,7993,14274,14275,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,8.3405943,8.7715578,5.5269618,11,17,120.27103,-9,3,2,2021,14,2,40,0,1,2,0,16.606361,16.606361,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7352891,51.41,56.15,43.9,57.01,6.666666666666667,1,1,0,0,12,12,4,0,2179,984004.88,837123.88,327798.63,0,0,-183.46085,3604.6121 +6551,7993,14275,14274,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.2018037,7.9927187,0,11,-17,11.285943,0,2,2,2021,14,4,25,25,1,4,0,8.0871372,8.0871372,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,51.41,56.15,8.333333333333334,1,1,0,0,12,12,4,0,2179,984004.88,837123.88,327798.63,0,0,-183.46085,3604.6121 +6552,7994,14276,14277,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.3483319,7.4352446,10,4,-59.536808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5476804,7.1729956,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,275.5,1345082.4,576357.81,443697.59,0,0,0,1456.8828 +6552,7994,14277,14276,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.5926638,7.0240827,10,-4,83.121506,0,3,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.174345,6.6816716,57.16,56.15,60.02,56.42,10,1,1,0,0,9,9,3,1,275.5,1345082.4,576357.81,443697.59,0,0,0,1456.8828 +6553,7995,14278,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.4962683,8.6314592,0,0,0,-917.81195,0,2,3,2021,18,7,44,45,1,7,0,16.027929,16.027929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.53,57.52,-9,-9,6.666666666666667,3,4,0,1,14,9,5,1,344,936914.94,68371.188,462306.22,0,0,0,1836.3153 +6554,7996,14279,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.252337,6.1986804,0,0,-1013.5984,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5826182,46.41,24.4,-9,-9,5,1,1,0,0,0,4,2,1,2845,239673.03,33667.262,153062.84,0,0,0,1752.3446 +6555,7997,14280,14281,-9,-9,1,0,33,2,2,0,2,2,-9,0,3,0,0,0,4,0,52.25771,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.87,43.99,53.21,36.79,6.666666666666667,1,1,0,0,2,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14281,14280,-9,-9,1,1,33,2,2,0,2,2,-9,0,2,8.1152229,8.2194929,0,4,0,-79.019257,0,2,2,2021,11,0,37,40,1,0,0,10.213075,10.213075,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53.21,36.79,50.87,43.99,5,1,1,0,0,5,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14282,-9,14280,14281,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-987.05219,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14283,-9,14280,14281,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-887.33862,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6556,7998,14284,14287,-9,-9,1,1,41,1,4,0,3,3,-9,1,4,0,0,0,17,1,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,37.02,47.89,7,2,3,0,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14285,-9,14287,14284,1,1,14,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1011.68,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14286,-9,14287,14284,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-939.77844,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14287,14284,-9,-9,1,0,40,1,4,0,2,2,-9,1,3,0,0,0,17,-1,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,37.02,47.89,51,56,6.666666666666667,2,3,0,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14288,-9,14287,14284,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-910.37952,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14289,-9,14287,14284,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-910.16632,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7999,14290,-9,14287,14284,1,0,18,1,4,1,2,0,0,0,4,0,0,0,0,0,-970.5127,-9,2,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,2,1,260,-14468.945,0,0,0,0,-488.21805,0 +6557,8000,14291,14292,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3562946,8.3989582,0,23,-7,-34.917042,0,3,2,2021,13,2,45,45,1,2,0,14.35308,14.35308,0,0,0,0,0,0,0,7,0,0,0,2.0621612,0,45.35,50.81,50.03,52.62,3.333333333333333,1,1,0,0,12,4,5,1,472.5,1095805.5,882212.19,149121.78,112677.45,1162.2441,0,4147.9839 +6557,8000,14292,14291,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5536108,8.2686968,0,33,7,150.99335,0,2,2,2021,9,0,50,50,1,0,0,10.744425,10.744425,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,45.35,50.81,6.666666666666667,1,1,0,0,12,4,5,1,472.5,1095805.5,882212.19,149121.78,112677.45,1162.2441,0,4147.9839 +6557,8001,14293,-9,14291,14292,1,1,27,0,0,0,1,1,-9,0,3,8.0949764,7.9293413,0,0,0,-907.5943,0,2,2,2021,10,0,38,41,1,0,1,10.157795,10.157795,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,134,-62871.613,0,0,0,0,0,1775.1661 +6558,8002,14294,14295,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.0335236,8.6403351,6.9202557,22,1,-9.5498648,0,-9,-9,2021,9,0,45,45,1,0,0,8.3893108,8.3893108,0,0,0,0,0,0,0,0,0,0,0,7.5629315,7.2586679,50.08,44.8,64.37,53.06,6.666666666666667,1,1,0,0,11,4,4,1,1119.5,2061928,1834038.6,129035.13,0,0,0,2480.8484 +6558,8002,14295,14294,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.8172493,6.9638934,0,22,-1,-133.11308,0,3,3,2021,6,0,16,16,1,0,0,9.3347673,9.3347673,0,0,0,0,0,0,0,0,0,0,0,0,0,64.37,53.06,50.08,44.8,10,1,1,0,0,10,4,4,1,1119.5,2061928,1834038.6,129035.13,0,0,0,2480.8484 +6559,8003,14296,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.9961591,8.1875572,0,0,0,-983.86688,-9,2,2,2021,24,12,50,0,1,12,0,7.1116729,7.1116729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.91,51.64,-9,-9,3.333333333333333,1,1,0,1,8,1,4,0,245,145142.17,88542.664,203514.86,98596.625,0,3091.1357,828.37305 +6559,8004,14297,-9,14296,-9,1,0,23,0,0,0,2,2,-9,0,3,7.0706954,7.3523598,0,0,0,-892.08032,-9,2,3,2021,18,6,35,0,1,6,1,3.977668,3.977668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,50.31,-9,-9,3.333333333333333,1,1,0,0,4,1,3,0,3223,-112833.62,4472.8071,0,0,5140.9116,0,171.2713 +6560,8005,14298,14299,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4442568,7.8573976,0,32,2,82.343338,0,2,2,2021,11,0,26,24,1,0,0,10.088331,10.088331,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,53.13,62.39,56.71,8.333333333333334,1,1,0,0,6,5,5,1,890,768629.25,566363.88,211440.97,0,6140.1895,0,3761.3306 +6560,8005,14299,14298,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.5074968,8.7715607,0,33,-2,135.13884,0,2,2,2021,7,0,43,43,1,0,0,27.449106,27.449106,.05,.05,0,0,0,0,0,0,0,0,0,6.0265183,0,62.39,56.71,45.67,53.13,8.333333333333334,1,1,0,0,9,5,5,1,890,768629.25,566363.88,211440.97,0,6140.1895,0,3761.3306 +6561,8006,14300,-9,-9,-9,1,0,49,1,1,0,2,2,-9,0,2,8.5985851,8.4740553,0,0,0,-1028.9161,0,2,2,2021,21,8,50,50,1,8,0,12.302266,12.302266,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.65,15.14,-9,-9,8.333333333333334,1,1,0,0,13,11,4,0,716,98331.555,19778.059,0,0,0,672.01831,1908.3374 +6561,8007,14301,-9,14302,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.44977,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,918.5,151821.44,64.721191,0,0,0,0,1798.473 +6561,8007,14302,-9,14300,-9,1,0,23,1,1,0,2,2,-9,0,3,7.6646104,7.8322115,0,0,0,-976.33228,-9,2,-9,2021,16,6,48,0,1,6,1,7.5301318,7.5301318,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.37,56.07,-9,-9,3.333333333333333,1,1,0,1,7,11,3,0,918.5,151821.44,64.721191,0,0,0,0,1798.473 +6562,8008,14303,14304,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.3098297,9.2876682,0,12,7,161.06396,0,2,2,2021,6,0,52,53,1,0,0,24.586794,24.586794,.05,.05,0,0,0,0,0,0,0,0,0,9.3274336,0,62.49,55.09,54.36,45.6,8.333333333333334,1,1,0,0,13,11,5,1,873,165963.28,93147.281,308172.31,125552.45,0,5567.6406,11403.392 +6562,8008,14304,14303,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.7730603,8.1093416,0,12,-7,-55.941494,0,3,3,2021,7,0,38,40,1,0,0,8.0597181,8.0597181,0,0,0,0,0,0,0,0,0,0,0,0,0,54.36,45.6,62.49,55.09,10,1,1,0,0,12,11,5,1,873,165963.28,93147.281,308172.31,125552.45,0,5567.6406,11403.392 +6562,8009,14305,-9,14304,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2034025,8.3283148,0,0,0,-964.1098,0,2,-9,2021,11,0,40,40,1,0,1,13.402207,13.402207,.05,.05,0,0,0,0,0,0,0,0,0,.8927784,0,62.39,56.71,-9,-9,10,1,1,0,0,6,11,4,1,718,174944.38,62709.637,242795.02,144629.55,15780.415,0,2238.8838 +6563,8010,14306,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.8180261,5.9483504,0,0,-883.2066,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4091792,5.8916354,57.16,56.15,-9,-9,10,1,1,0,0,7,9,2,1,302,438635.97,22987.707,177182.8,0,0,943.25177,792.24072 +6564,8011,14307,14308,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.250473,7.4574361,0,9,19,172.98128,0,2,2,2021,14,5,40,40,1,5,0,2.9773607,2.9773607,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,46.08,57.2,6.666666666666667,1,1,0,0,8,1,4,1,151,130289.8,156385.94,163348.09,100174.11,0,3340.939,2444.8877 +6564,8011,14308,14307,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.8186722,8.8406992,0,9,-19,-69.88549,0,2,2,2021,8,1,44,37,1,1,0,14.465914,14.465914,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,52.99,51.28,6.666666666666667,1,1,0,0,11,1,4,1,151,130289.8,156385.94,163348.09,100174.11,0,3340.939,2444.8877 +6565,8012,14309,14310,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,23,7,0,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.43,52.23,28.31,32.89,8.333333333333334,1,1,0,0,7,5,1,1,641,-40241.934,0,0,0,5927.6973,-29.140503,661.49603 +6565,8012,14310,14309,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,24,-7,0,-9,3,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,32.89,45.43,52.23,0,1,1,0,0,0,5,1,1,641,-40241.934,0,0,0,5927.6973,-29.140503,661.49603 +6566,8013,14311,14312,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7286544,7.6712308,0,9,-4,51.904373,0,2,3,2021,12,1,7,39,1,1,0,45.989933,45.989933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,46.54,60.99,8.333333333333334,1,1,0,0,10,5,4,1,603.5,138638.97,-14405.896,100598.13,31600.537,0,-347.91034,2599.5181 +6566,8013,14312,14311,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.763885,7.7724776,0,9,4,198.08339,0,2,2,2021,5,0,9,9,1,0,0,24.325066,24.325066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.54,60.99,60.13,49.27,6.666666666666667,1,1,0,0,10,5,4,1,603.5,138638.97,-14405.896,100598.13,31600.537,0,-347.91034,2599.5181 +6566,8014,14313,-9,14311,14312,1,1,23,0,0,0,2,2,-9,0,5,7.5964489,7.5737505,0,0,0,-908.55957,0,2,3,2021,6,0,8,32,1,0,1,33.09478,33.09478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,5,5,3,1,812,-157550.58,-46120.977,0,0,0,0,911.95416 +6567,8015,14314,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.6196518,8.7480764,0,0,0,-1011.5956,0,1,1,2021,14,3,40,40,1,3,0,26.886135,26.886135,.05,.05,0,0,0,0,0,0,1,1,0,4.1541362,0,40.75,58.26,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,257,436675,-133406.75,207320.36,152546.55,0,3363.2068,2534.5962 +6568,8016,14315,-9,14318,14316,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.864,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14316,14318,-9,-9,1,1,33,0,3,0,3,3,-9,0,4,9.5421391,9.8613138,0,15,2,68.395294,0,3,3,2021,10,0,20,37,1,1,0,92.102669,92.102669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,49.46,56.91,7,2,3,0,0,10,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14317,-9,14318,14316,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.9036,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14318,14316,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.9722552,7.3601675,0,15,-2,63.807117,0,3,2,2021,8,0,11,0,1,0,0,13.02161,13.02161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,49,57,8.333333333333334,2,3,0,0,4,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14319,-9,14318,14316,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1049.0056,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6569,8017,14320,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,3.4942346,2.8721814,0,0,-1026.0342,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4106441,3.2916765,46.56,42.23,-9,-9,5,1,1,0,0,0,7,2,1,1608,121604.64,22949.348,0,0,0,0,1213.3682 +6570,8018,14321,-9,14323,14324,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-882.20715,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14322,-9,14323,14324,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.13892,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14323,14324,-9,-9,1,0,42,0,2,0,2,2,-9,1,2,6.3011556,6.2504044,0,19,3,46.591747,0,2,2,2021,12,1,30,0,1,1,0,2.6328356,2.6328356,0,0,0,0,0,0,0,27,1,1,0,0,0,53.31,20.39,57.33,53.46,8.333333333333334,1,1,0,0,8,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14324,14323,-9,-9,1,1,39,0,2,0,3,3,-9,1,3,7.8106966,7.9456816,6.4021187,19,-3,50.876099,0,-9,-9,2021,9,0,25,32,1,0,0,8.5391903,8.5391903,.05,.05,0,0,0,0,0,0,1,1,0,6.6950474,0,57.33,53.46,53.31,20.39,8.333333333333334,1,1,0,0,9,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6571,8019,14325,-9,14328,14326,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14326,14328,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.4549828,8.2767115,0,12,3,-51.409321,0,-9,-9,2021,9,0,58,58,1,0,0,10.128772,10.128772,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.81,43.66,24.82,54.18,6.666666666666667,1,1,0,0,12,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14327,-9,14328,14326,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9718,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14328,14326,-9,-9,1,0,34,1,2,0,2,2,-9,0,2,8.7712612,8.778327,0,12,-3,-38.54298,-9,2,2,2021,16,6,74,0,1,6,0,12.914015,12.914015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.82,54.18,43.81,43.66,8.333333333333334,1,1,0,0,12,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6572,8020,14329,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1016.6987,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,37.69,58.7,-9,-9,0,1,1,1,1,0,8,2,0,626,-22920.016,0,0,0,0,0,394.54874 +6572,8021,14330,-9,14329,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-886.82819,0,3,-9,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,63.09,45.22,-9,-9,6.666666666666667,4,2,1,1,1,8,1,0,729,-50032.707,0,0,0,0,0,-476.23581 +6573,8022,14331,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,6.9761486,7.5652966,6.2867475,0,0,-1006.4813,-9,3,3,2021,9,2,16,0,1,2,0,8.1205492,8.1205492,0,0,.05,0,0,0,0,0,1,1,0,6.4810348,0,54.61,51.04,-9,-9,10,1,1,0,0,13,4,3,1,491,221325.19,21473.693,217421.31,0,0,0,2601.2827 +6574,8023,14332,14334,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.6961308,8.482522,0,17,-1,-57.10479,0,-9,-9,2021,10,0,45,45,1,0,0,19.711283,19.711283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,38.47,58.15,52.91,8.333333333333334,1,1,0,0,12,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6574,8023,14333,-9,14334,14332,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.41406,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6574,8023,14334,14332,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.8125906,8.6840849,0,23,1,15.813113,0,2,2,2021,3,0,37,38,1,0,0,17.466784,17.466784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,53.78,38.47,8.333333333333334,1,1,0,0,12,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6575,8024,14335,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4345369,8.3755198,0,0,0,-992.44696,0,3,2,2021,9,0,36,65,1,0,0,14.928823,14.928823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,8.333333333333334,3,4,0,0,9,9,5,0,698,466904.66,259190.02,148610.03,85256.813,0,0,1812.0649 +6576,8025,14336,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3784771,8.1083136,0,0,0,-993.7403,0,-9,-9,2021,13,4,35,45,1,4,0,13.251803,13.251803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,-9,-9,5,1,1,0,0,12,8,4,1,74,403639.41,66022.281,381778,56225.082,0,0,1059.7195 +6577,8026,14337,14338,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.2339878,5.6633015,49,6,-10.972285,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.6419415,6.2703052,48.01,46.74,30.6,18.53,8.333333333333334,1,1,0,0,1,5,2,1,996,121858.22,0,0,0,0,0,1564.6826 +6577,8026,14338,14337,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,49,-6,73.105507,0,2,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,0,127.7736,0,0,1,1,0,0,0,30.6,18.53,48.01,46.74,0,1,1,0,0,0,5,2,1,996,121858.22,0,0,0,0,0,1564.6826 +6578,8027,14339,-9,14343,14341,1,1,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-889.39374,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14340,-9,14343,14341,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-900.56433,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14341,14343,-9,-9,1,1,38,1,3,0,3,3,-9,1,1,0,0,0,17,2,0,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.47,19.01,10.11,37.75,3.333333333333333,1,1,0,0,7,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14342,-9,14343,14341,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.2514,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14343,14341,-9,-9,1,0,36,1,3,0,2,2,-9,1,1,0,0,0,8,-2,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,10.11,37.75,41.47,19.01,0,1,1,0,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8028,14344,-9,14343,14341,1,1,19,1,3,0,2,2,-9,0,3,0,0,0,0,0,-957.45697,1,2,3,2021,10,0,0,10,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.71,56.91,-9,-9,0,1,1,0,1,3,9,1,0,3467,0,0,0,0,0,0,0 +6579,8029,14345,-9,14349,14346,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.21118,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14346,14349,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,7.9087915,7.9803805,0,6,3,-25.794689,0,3,3,2021,10,1,44,48,1,1,0,5.8335528,5.8335528,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.12,37.78,49.69,44.96,6.666666666666667,2,3,0,0,8,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14347,-9,14349,14346,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.5039,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14348,-9,14349,14346,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.85205,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14349,14346,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,0,0,0,10,-3,13.654584,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,44.96,41.12,37.78,5,2,3,0,1,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6580,8030,14350,14351,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,7.5768414,7.7991729,0,44,2,-3.3602595,0,3,3,2021,7,0,37,37,1,0,0,5.9110961,5.9110961,0,0,0,0,0,0,0,89,1,1,0,0,0,58.64,50.19,26.73,30.23,8.333333333333334,1,1,0,0,10,6,3,1,542.5,794511.81,383913.69,84263.094,0,5839.9121,0,1260.1799 +6580,8030,14351,14350,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,44,-2,103.4385,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.73,30.23,58.64,50.19,0,1,1,0,0,0,6,3,1,542.5,794511.81,383913.69,84263.094,0,5839.9121,0,1260.1799 +6581,8031,14352,-9,14354,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.93671,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6581,8031,14353,-9,14354,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.5642,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6581,8031,14354,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,2,7.1461344,7.181633,0,0,0,-1022.3499,0,-9,-9,2021,26,12,24,24,1,12,0,7.9106946,7.9106946,0,0,0,0,0,0,0,0,1,1,0,0,0,25.08,40.26,-9,-9,5,1,1,0,1,2,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6582,8032,14355,14356,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.4824009,4.4933686,34,0,139.63855,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9060543,4.4167657,57.33,53.46,55.53,51.55,10,1,1,0,0,0,12,4,1,1161.5,1111074.4,936001.5,216741.41,0,8367.0918,0,3191.4697 +6582,8032,14356,14355,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3055143,8.4591169,34,0,36.583981,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5099344,8.7115822,55.53,51.55,57.33,53.46,8.333333333333334,1,1,0,0,6,12,4,1,1161.5,1111074.4,936001.5,216741.41,0,8367.0918,0,3191.4697 +6583,8033,14357,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1232805,8.3183079,0,0,0,-1098.1033,0,3,2,2021,12,0,37,37,1,0,0,10.77141,10.77141,0,0,0,0,0,0,0,0,1,1,0,3.819294,0,40.65,57.36,-9,-9,5,1,1,0,0,14,2,4,1,299,-109843.79,-10472.34,119626.76,75102.141,0,2329.2449,1557.359 +6584,8034,14358,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2619867,8.03967,0,0,0,-1027.4624,0,-9,-9,2021,8,1,30,46,1,1,0,14.110507,14.110507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,1209,142524.84,-175302.23,0,0,2626.1592,0,1330.9434 +6585,8035,14359,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1037.0671,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.45,24.42,-9,-9,5,3,4,0,1,0,8,1,0,1381,-16731.016,0,0,0,0,0,2899.3943 +6586,8036,14360,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.4115305,8.4364758,0,0,0,-1073.4607,0,2,2,2021,14,2,45,46,1,2,0,11.45243,11.45243,.05,.05,0,0,0,0,0,27,1,1,0,0,0,25.85,58.94,-9,-9,5,1,1,0,1,8,11,4,0,470,18119.613,149175.23,73871.281,73329.133,13103.731,1411.4186,2249.5105 +6586,8037,14361,-9,14360,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.2319,0,1,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,11,1,0,4833,-15357.911,0,0,0,0,0,0 +6587,8038,14362,14363,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,2.5022101,2.3419967,9,1,-214.58121,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,11.502234,0,0,1,1,0,0,2.1660695,38.93,29.89,53.31,29.54,3.333333333333333,1,1,0,0,0,11,2,0,908,241696.75,0,179209.5,0,0,0,2215.4297 +6587,8038,14363,14362,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-1.7464718,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.31,29.54,38.93,29.89,8.333333333333334,1,1,0,0,0,11,2,0,908,241696.75,0,179209.5,0,0,0,2215.4297 +6588,8039,14364,14366,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4689522,8.5996113,0,17,-1,-11.623881,0,2,2,2021,20,8,60,30,1,8,0,11.54653,11.54653,0,0,0,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,41.3,60.77,3.333333333333333,1,1,0,0,9,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6588,8039,14365,-9,14364,14366,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.3396,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6588,8039,14366,14364,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.5095072,9.5611391,0,17,1,-10.277581,0,2,2,2021,11,0,42,43,1,0,0,31.855734,31.855734,.05,.05,0,0,0,0,0,0,0,0,0,8.7212095,0,41.3,60.77,25.44,65.40000000000001,6.666666666666667,1,1,0,0,8,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6589,8040,14367,14368,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2892895,8.2235518,0,3,6,-162.66248,0,-9,-9,2021,4,0,35,35,1,0,0,11.238551,11.238551,.05,.05,0,0,0,0,0,0,0,0,0,1.0163364,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,15,11,5,1,621.5,208622.5,228626.16,113248,66801.141,10382.777,0,3944.8701 +6589,8040,14368,14367,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.8161058,8.9617491,0,3,-6,-59.145042,0,-9,-9,2021,8,0,50,42,1,0,0,14.782824,14.782824,.05,.05,0,0,0,0,0,0,0,0,0,2.40166,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,13,11,5,1,621.5,208622.5,228626.16,113248,66801.141,10382.777,0,3944.8701 +6590,8041,14369,14370,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.5723572,9.2918158,0,32,0,36.169304,0,3,3,2021,10,0,38,40,1,0,0,36.183891,36.183891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.63,18.77,3.333333333333333,1,1,0,0,10,8,5,1,317.5,2048735.5,1728297.3,183818.91,0,0,0,3174.8833 +6590,8041,14370,14369,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,33,0,25.087992,0,3,3,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.63,18.77,48.28,60.18,0,4,5,0,0,0,8,5,1,317.5,2048735.5,1728297.3,183818.91,0,0,0,3174.8833 +6590,8042,14371,-9,14370,14369,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-998.74054,0,2,1,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.5,44.01,-9,-9,3.333333333333333,4,2,1,0,0,8,1,1,227,0,0,0,0,0,0,0 +6591,8043,14372,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3226905,7.6431737,0,0,-1029.2952,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4955826,7.3636084,56.49,40.63,-9,-9,10,3,4,0,0,0,8,3,1,477,386746.03,163676.55,288720.91,0,0,0,870.21033 +6592,8044,14373,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.319334,8.2443886,0,0,0,-887.46454,0,3,2,2021,9,1,38,42,1,1,0,9.3972893,9.3972893,.05,.05,0,0,0,0,0,0,1,1,0,4.2215538,0,57.01,32.23,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,294,-249431.88,5005.0308,0,0,0,2047.8574,1640.9908 +6593,8045,14374,14376,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.4668064,9.8585577,0,8,-2,-204.14124,0,2,2,2021,12,3,50,40,1,3,0,33.979439,33.979439,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,40.73,61.29,8.333333333333334,1,1,0,0,9,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8045,14375,-9,14376,14374,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-871.1485,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,0,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8045,14376,14374,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,8.2966576,8.5214434,0,22,2,-97.968468,0,1,2,2021,21,9,45,50,1,9,0,13.09306,13.09306,0,0,0,0,0,0,0,7,0,0,0,2.7818573,0,40.73,61.29,48.7,56.22,3.333333333333333,1,1,0,0,11,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8046,14377,-9,14376,14374,1,0,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-858.25671,-9,1,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,0,758,-75666.891,0,0,0,128.54143,0,0 +6594,8047,14378,14379,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.7386708,5.4856963,7,2,.4822931,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1948442,5.5333638,60.12,54.8,57.33,53.46,10,1,1,0,0,0,11,2,0,1198.5,112807.24,10921.631,150272.53,0,0,0,1461.7319 +6594,8047,14379,14378,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.2190056,6.1200919,7,-2,7.2444239,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0162621,6.0870113,57.33,53.46,60.12,54.8,10,1,1,0,0,2,11,2,0,1198.5,112807.24,10921.631,150272.53,0,0,0,1461.7319 +6595,8048,14380,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.5002437,6.364172,0,0,-1011.8124,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,3.8560457,0,28.560532,2,1,1,0,0,6.6892309,42.95,29.14,-9,-9,6.666666666666667,1,1,0,1,0,5,2,0,1908,172015.45,118460.25,141435,0,0,0,2005.6851 +6596,8049,14381,14382,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,9.1566515,9.17381,23,2,64.661484,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.8717957,57.06,57.76,54.1,59.11,10,1,1,0,0,0,2,5,1,3199,2293915.5,1001459.6,381577.94,0,0,0,6593.8057 +6596,8049,14382,14381,-9,-9,1,0,73,0,0,0,1,1,-9,0,5,0,6.5468011,6.7984328,23,-2,36.755802,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3338966,6.4819894,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,2,5,1,3199,2293915.5,1001459.6,381577.94,0,0,0,6593.8057 +6597,8050,14383,14384,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,3.9909878,4.3535972,52,-1,27.230629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.0190349,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,7,2,1,834.5,358954.75,-7702.3789,278913,0,0,0,1566.1234 +6597,8050,14384,14383,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.8662047,5.9058561,52,1,93.37735,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1945944,6.3119454,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,7,2,1,834.5,358954.75,-7702.3789,278913,0,0,0,1566.1234 +6598,8051,14385,14387,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,8.0643148,8.0690823,26,-5,114.2383,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2880497,0,48.71,27.87,59.46,46.99,6.666666666666667,1,1,0,0,5,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6598,8051,14386,-9,14385,14387,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1108.5756,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6598,8051,14387,14385,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.9363718,8.1398764,0,26,5,-6.4110479,0,2,2,2021,8,0,40,35,1,0,0,9.4301071,9.4301071,.05,.05,.05,0,0,0,0,7,1,1,0,4.4292874,0,59.46,46.99,48.71,27.87,5,1,1,0,0,6,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6599,8052,14388,14389,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.9921784,7.9861526,0,6,2,-147.61623,0,3,3,2021,18,6,58,58,1,6,0,5.9647732,5.9647732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.01,53.24,60.3,46.58,6.666666666666667,1,1,0,0,7,13,4,1,816,28407.51,-3506.7207,0,0,0,0,2754.334 +6599,8052,14389,14388,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.003891,8.1693602,0,6,-2,.49123895,0,3,2,2021,9,0,35,35,1,0,0,12.247551,12.247551,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,43.01,53.24,8.333333333333334,1,1,0,0,7,13,4,1,816,28407.51,-3506.7207,0,0,0,0,2754.334 +6599,8053,14390,-9,14389,14388,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.15875,-9,2,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.65,58.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,869,63322.363,0,0,0,0,0,789.72186 +6600,8054,14391,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.7425046,7.6667137,0,0,-987.94495,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0284309,58.46,35.09,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1036,362775.84,185343.91,101047.57,0,0,0,2397.3733 +6600,8055,14392,-9,14391,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.5054173,7.4421425,0,0,-970.64343,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.5324154,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,183,380294.31,31304.568,101899.25,0,0,0,1389.9945 +6601,8056,14393,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.189743,6.2076278,0,0,-1031.4353,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5887241,6.2518191,55.9,52.64,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,183,208389.67,41816.543,59641.527,0,2097.0493,0,3868.156 +6602,8057,14394,14395,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,6.6169381,6.8687482,0,7,-4,73.289635,0,3,2,2021,11,0,12,8,1,0,0,10.640013,10.640013,0,0,0,0,0,0,0,0,1,1,0,7.3149257,0,44.26,59.43,58.74,52.92,6.666666666666667,1,1,0,0,8,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8057,14395,14394,-9,-9,1,1,46,0,1,0,3,3,-9,0,5,0,7.2825999,7.6622353,7,4,137.0061,0,3,3,2021,9,0,0,84,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.531477,58.74,52.92,44.26,59.43,10,1,1,1,0,8,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8057,14396,-9,14394,14395,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1023.4406,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8058,14397,-9,14394,14395,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-947.10504,-9,2,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,1,1,410,-78668.531,0,0,0,0,0,0 +6603,8059,14398,14399,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3427329,7.9084244,0,31,-2,146.01588,0,2,2,2021,11,0,28,30,1,0,0,10.942848,10.942848,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.44,59.62,46.67,55.57,8.333333333333334,1,1,0,0,14,9,4,1,974,78267.438,139862.08,0,0,0,-11.028191,2558.2898 +6603,8059,14399,14398,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0700092,8.2288113,0,31,2,54.146645,0,2,3,2021,12,3,37,37,1,3,0,11.800946,11.800946,.05,.05,0,0,0,0,0,2,0,0,0,1.5770406,0,46.67,55.57,46.44,59.62,3.333333333333333,1,1,0,0,14,9,4,1,974,78267.438,139862.08,0,0,0,-11.028191,2558.2898 +6603,8060,14400,-9,14398,14399,1,1,18,0,0,0,2,2,1,0,4,6.0982237,6.0497255,0,0,0,-1017.9908,-9,2,2,2021,16,6,8,0,1,6,1,6.7050853,6.7050853,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,167,66691.273,0,0,0,0,0,39.349335 +6604,8061,14401,-9,14402,14403,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.68463,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6604,8061,14402,14403,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.7243567,8.5309105,0,7,0,-52.281925,0,2,2,2021,6,0,37,37,1,0,0,18.531006,18.531006,.05,.05,0,0,0,0,0,0,1,1,0,6.785264,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6604,8061,14403,14402,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.0936289,7.7269087,0,7,0,98.129242,0,-9,-9,2021,10,0,32,36,1,1,0,11.140181,11.140181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6605,8062,14404,14405,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,8.6417408,8.5194416,0,30,0,99.113533,0,3,3,2021,36,12,64,80,1,12,0,11.079994,11.079994,.05,.05,0,0,0,0,0,0,0,0,0,0,0,5.19,56.28,43.65,58.28,0,1,1,0,1,12,7,5,1,476,954617.25,716020.56,220764.47,180173.59,10957.76,3706.5286,3439.3865 +6605,8062,14405,14404,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.8992286,7.9731021,0,30,0,-10.560505,0,3,3,2021,23,11,25,25,1,11,0,11.820886,11.820886,0,0,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,5.19,56.28,3.333333333333333,1,1,0,1,12,7,5,1,476,954617.25,716020.56,220764.47,180173.59,10957.76,3706.5286,3439.3865 +6606,8063,14406,14407,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.4830909,7.6268325,44,0,103.78963,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.9423819,42.56,42.65,57.16,56.15,6.666666666666667,1,1,0,0,10,10,3,0,621,1019559.9,666033.5,335891.94,0,0,0,2394.7551 +6606,8063,14407,14406,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9284015,6.1028996,44,0,-20.402679,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2015109,57.16,56.15,42.56,42.65,8.333333333333334,1,1,0,0,0,10,3,0,621,1019559.9,666033.5,335891.94,0,0,0,2394.7551 +6607,8064,14408,14409,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.1786885,6.2146893,7,2,86.806084,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1254683,6.2869258,51.1,52.08,55.94,36.38,8.333333333333334,1,1,0,0,6,9,4,1,1574,1938409.6,1486404.8,314966.34,0,0,0,3453.2207 +6607,8064,14409,14408,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.4740181,8.0935059,7,-2,-.40386218,0,2,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6309509,8.2666912,55.94,36.38,51.1,52.08,8.333333333333334,1,1,0,0,8,9,4,1,1574,1938409.6,1486404.8,314966.34,0,0,0,3453.2207 +6608,8065,14410,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.1806,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.06,32.2,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,1635,-26022.014,0,0,0,1109.3735,0,832.53534 +6609,8066,14411,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-694.95392,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,38.4,-9,-9,5,1,1,1,0,0,1,1,0,767,130319.66,0,0,0,0,739.9729,2073.4968 +6610,8067,14412,14413,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,7.4687104,7.1202035,0,8,1,63.400295,0,2,2,2021,17,5,24,20,1,5,0,7.7171059,7.7171059,.05,.05,0,0,0,0,0,27,0,0,0,0,0,25.83,50.93,43.65,58.28,3.333333333333333,1,1,0,1,11,1,4,1,396.5,290132.69,248011.19,0,0,519.60095,2167.6228,2006.6626 +6610,8067,14413,14412,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.0279436,7.9911199,0,8,-1,-111.78384,0,-9,-9,2021,12,0,45,45,1,0,0,7.1325054,7.1325054,.05,.05,0,0,0,0,0,2,0,0,0,.23578741,0,43.65,58.28,25.83,50.93,5,1,1,0,0,11,1,4,1,396.5,290132.69,248011.19,0,0,519.60095,2167.6228,2006.6626 +6611,8068,14414,14415,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.3422585,9.2189732,44,4,44.786213,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1218181,9.1781693,57.16,56.15,53.14,51.28,1.666666666666667,1,1,0,0,0,12,5,1,1439.5,1809033.3,1098346.5,444734.44,0,0,0,8894.9883 +6611,8068,14415,14414,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,8.5982761,8.349309,44,-4,67.341766,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8043718,8.4003067,53.14,51.28,57.16,56.15,10,1,1,0,0,0,12,5,1,1439.5,1809033.3,1098346.5,444734.44,0,0,0,8894.9883 +6612,8069,14416,14418,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.3875074,6.745769,0,4,5,-80.06028,0,3,3,2021,6,0,14,14,1,0,0,5.8813262,5.8813262,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,42.03,53.28,8.333333333333334,1,1,0,0,14,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6612,8069,14417,-9,14416,14418,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.11981,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6612,8069,14418,14416,-9,-9,1,1,35,0,2,0,2,2,-9,1,4,8.3508158,8.4632616,0,4,-5,3.2439079,-9,-9,-9,2021,12,0,53,0,1,0,0,10.441933,10.441933,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.03,53.28,60.12,54.8,5,1,1,0,0,14,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6613,8070,14419,14420,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,6,-7,71.935188,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,3.5762801,0,0,1,1,0,3.0885859,0,47.2,34.16,58.89,51.28,8.333333333333334,1,1,0,0,0,1,3,1,1004.5,676553.81,359404.38,297448.63,0,0,0,1890.4475 +6613,8070,14420,14419,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,8.2293901,7.8812218,6,7,-84.855865,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1872969,58.89,51.28,47.2,34.16,8.333333333333334,1,1,0,0,0,1,3,1,1004.5,676553.81,359404.38,297448.63,0,0,0,1890.4475 +6614,8071,14421,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1094.8296,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,62.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,0,1334,-19566.557,0,0,0,31359.256,0,-578.72272 +6615,8072,14422,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.4428792,7.4617529,0,0,0,-890.71301,0,3,3,2021,24,12,40,30,1,12,0,5.3609567,5.3609567,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.32,54.45,-9,-9,3.333333333333333,1,1,0,1,9,6,3,0,2564,-6258.3687,86079.203,0,0,0,-185.23767,1016.4584 +6616,8073,14423,-9,14424,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.77136,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,484.5,-85666.172,0,0,0,853.26788,1839.788,938.16064 +6616,8073,14424,-9,-9,-9,1,0,42,1,1,0,2,2,-9,0,2,0,0,0,0,0,-918.03058,0,3,3,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.23,21.92,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,484.5,-85666.172,0,0,0,853.26788,1839.788,938.16064 +6617,8074,14425,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,6.8879337,7.1564937,0,0,-906.12732,0,1,1,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,7.5965219,0,68.04232,0,1,1,0,6.8869991,0,49,47,-9,-9,7,1,1,0,0,4,7,2,0,619,723195.38,193041.81,539830.25,0,0,0,1286.6732 +6618,8075,14426,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.2915902,6.3717079,0,0,-958.78754,0,3,-9,2021,15,3,0,30,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4983087,6.4213157,47,20.34,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,1334,32590.984,272776.81,0,0,0,0,1173.8656 +6619,8076,14427,14428,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.7596464,8.8230648,0,11,-5,-53.291786,0,-9,-9,2021,12,2,50,50,1,2,0,14.875593,14.875593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,47.61,53.7,8.333333333333334,1,1,0,0,13,11,4,1,565.5,298875,188396.78,220943.97,16811.633,0,0,4047.0879 +6619,8076,14428,14427,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,7.2111845,7.1148129,0,11,5,53.819008,0,-9,3,2021,11,0,24,21,1,0,0,6.8218298,6.8218298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,41.47,58.08,8.333333333333334,1,1,0,0,8,11,4,1,565.5,298875,188396.78,220943.97,16811.633,0,0,4047.0879 +6620,8077,14429,14430,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,61,-2,42.966335,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,43,23,8,1,1,0,0,0,7,2,0,432,109609.23,-23822.955,0,0,0,0,1765.5771 +6620,8077,14430,14429,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,4.2954693,4.2096915,61,2,-55.572395,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,49.158649,0,120,1,1,0,4.7796097,3.972425,43,23,52,45,10,1,1,0,0,0,7,2,0,432,109609.23,-23822.955,0,0,0,0,1765.5771 +6621,8078,14431,14432,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.6192107,6.5171843,59,-1,-28.140118,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.322839,7.6795306,21.243782,0,1,1,0,1.816684,7.0465732,48.27,30.92,40.81,47.41,8.333333333333334,1,1,0,0,0,1,3,1,551.5,378839.56,121143.45,159930.38,0,0,0,1881.6147 +6621,8078,14432,14431,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.5393634,7.3549476,59,1,-145.12566,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4321225,7.3461709,40.81,47.41,48.27,30.92,6.666666666666667,1,1,0,0,3,1,3,1,551.5,378839.56,121143.45,159930.38,0,0,0,1881.6147 +6622,8079,14433,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.0892315,8.0687876,0,0,0,-1086.3942,0,-9,-9,2021,7,0,42,35,1,0,0,9.5424995,9.5424995,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.05,56.68,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,424,78453.82,-101758.99,58054.125,87129.883,5040.5337,0,1026.1388 +6623,8080,14434,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.1299505,7.3285718,0,0,-970.7522,0,2,1,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2237158,7.4060555,50.22,39.49,-9,-9,10,1,1,0,0,2,10,3,1,1569,644185.13,95823.063,138376.22,0,0,0,421.59543 +6624,8081,14435,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.7576981,8.2706594,6.8644414,0,0,-909.54889,0,2,2,2021,14,2,40,37,1,2,0,7.0579195,7.0579195,0,0,0,0,0,0,0,0,1,1,0,7.303823,0,47.93,42.61,-9,-9,5,1,1,0,1,9,10,3,0,406.5,-73936.313,0,0,0,-928.40686,0,1480.3881 +6624,8081,14436,-9,14435,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.7499,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,406.5,-73936.313,0,0,0,-928.40686,0,1480.3881 +6625,8082,14437,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0295639,8.9812431,6.2753243,0,0,-973.3783,0,2,3,2021,6,0,34,34,1,0,0,19.441235,19.441235,.05,.05,0,0,0,0,0,0,1,1,0,7.0198727,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,5024,1311719,1115984,179432.33,0,2113.1394,0,2537.3264 +6626,8083,14438,14439,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1918716,7.9988494,0,5,1,35.93578,0,3,-9,2021,7,0,40,39,1,0,0,9.016284,9.016284,.05,.05,0,0,0,0,0,0,0,0,0,1.2666826,0,53.98,50.87,42.85,45.55,8.333333333333334,1,1,0,0,11,9,5,1,545,2042090.8,1624406.3,303754.5,30092.637,0,0,2938.5454 +6626,8083,14439,14438,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.5710697,8.5765944,0,5,-1,104.29369,0,2,-9,2021,12,0,70,70,1,0,0,9.115139,9.115139,.05,.05,0,0,0,0,0,0,0,0,0,.85927153,0,42.85,45.55,53.98,50.87,6.666666666666667,1,1,0,0,11,9,5,1,545,2042090.8,1624406.3,303754.5,30092.637,0,0,2938.5454 +6627,8084,14440,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,5.8634682,6.0755067,0,0,-897.99854,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6082664,46.33,55.93,-9,-9,6.666666666666667,1,1,0,1,0,13,2,1,336,198962.69,187401.41,130729.77,0,0,0,598.50873 +6628,8085,14441,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-910.24652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,54.57,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,1087,-22967.844,0,0,0,0,0,1204.1171 +6629,8086,14442,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.8068881,8.0791979,0,0,0,-1039.6063,0,3,3,2021,7,1,14,15,1,1,0,30.307329,30.307329,0,0,0,0,0,0,0,0,1,1,0,7.2659593,0,55.53,41.02,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,167,1414157.8,545387.19,495098.03,0,0,0,1557.8274 +6630,8087,14443,14444,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,6,-3,-66.339447,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2674878,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,7,13,5,1,525,1191261,925978.69,110742.51,-13550.46,0,1168.2727,15337.163 +6630,8087,14444,14443,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,9.8706274,9.9772081,8.2079563,6,3,-65.953369,0,2,3,2021,7,0,65,70,1,0,0,31.563513,31.563513,.05,.05,0,0,0,0,0,0,1,1,0,8.4093094,8.1323729,57.33,53.46,54.2,57.49,10,1,1,0,0,7,13,5,1,525,1191261,925978.69,110742.51,-13550.46,0,1168.2727,15337.163 +6631,8088,14445,-9,14448,14447,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.24542,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14446,-9,14448,14447,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1154.2219,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14447,14448,-9,-9,1,1,39,1,4,0,2,2,-9,0,4,8.3494501,8.5568056,0,8,3,-58.183411,0,-9,-9,2021,10,0,55,50,1,1,0,10.376477,10.376477,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,44,52,7,1,1,0,0,1,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14448,14447,-9,-9,1,0,36,1,4,0,2,2,-9,0,3,0,0,0,8,-3,23.03513,0,2,3,2021,17,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44,52,50,57,5,1,1,0,1,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14449,-9,14448,14447,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-899.02924,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14450,-9,14448,14447,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-959.63019,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6632,8089,14451,-9,14453,14454,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0962,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14452,-9,14453,14454,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.2401,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14453,14454,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,6,-4,72.744415,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,47.83,62.16,7,1,1,0,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14454,14453,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,7.840313,7.6976595,0,6,4,80.18103,0,-9,-9,2021,9,1,42,41,1,1,0,6.2898002,6.2898002,0,0,0,0,0,0,0,2,1,1,0,0,0,47.83,62.16,48,57,10,1,1,0,0,9,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6633,8090,14455,14456,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,5.3579197,5.3958545,8,1,.8830151,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,7.0591469,5.0567546,64.988533,14.5,1,1,0,7.9731445,5.3254414,54.7,54.95,53,45,8.333333333333334,2,3,0,0,0,2,2,1,146,540450,243232.78,194204.28,0,0,0,2362.79 +6633,8090,14456,14455,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.1675849,3.7391491,8,-1,-49.668858,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.59095,0,69.443581,0,1,1,0,4.0626225,3.8864002,53,45,54.7,54.95,8,4,5,0,0,0,2,2,1,146,540450,243232.78,194204.28,0,0,0,2362.79 +6634,8091,14457,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.9933019,6.6979561,0,0,0,-880.50958,0,-9,-9,2021,8,0,10,20,1,0,0,11.296286,11.296286,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,31.56,-9,-9,5,1,1,0,0,13,8,2,1,1796,-35597.398,0,0,0,0,0,226.24832 +6635,8092,14458,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,3,7.1490984,7.061862,0,0,0,-922.57001,-9,3,3,2021,15,2,16,0,1,2,0,9.4800119,9.4800119,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,19.71,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,475,55298.789,0,0,0,0,0,1882.4099 +6635,8092,14459,-9,14458,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.3933,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,475,55298.789,0,0,0,0,0,1882.4099 +6635,8093,14460,-9,14458,-9,1,0,19,0,1,0,2,2,-9,0,4,8.3782101,8.2415266,0,0,0,-1100.3397,-9,2,-9,2021,12,0,16,0,1,2,1,28.17556,28.17556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,1,8,4,0,64,22774.801,130543.46,0,0,8385.9248,0,2796.1121 +6636,8094,14461,14462,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.655406,7.7164245,0,7,-2,14.823749,0,3,3,2021,8,0,20,20,1,0,0,11.239612,11.239612,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,58.14,42.54,5,1,1,0,0,8,6,4,1,926,50723.734,80644.789,45921.773,54308.297,4320.8506,0,1922.8655 +6636,8094,14462,14461,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.2888994,8.0118647,0,7,2,-131.24626,0,3,3,2021,12,1,38,40,1,1,0,9.4457664,9.4457664,0,0,0,0,0,0,0,0,0,0,0,3.7139432,0,58.14,42.54,52,54.51,8.333333333333334,1,1,0,0,8,6,4,1,926,50723.734,80644.789,45921.773,54308.297,4320.8506,0,1922.8655 +6637,8095,14463,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.8189793,9.0194178,4.9321084,0,0,-991.86328,0,3,3,2021,11,0,36,30,1,0,0,19.948179,19.948179,0,0,0,0,0,0,0,0,1,1,0,0,5.2336493,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,973,1122049.4,846041.88,285873.16,0,10216.973,9703.2002,2720.9316 +6638,8096,14464,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1833897,7.9756613,3.6463559,0,0,-1078.0411,0,3,3,2021,20,8,30,30,1,8,0,10.433699,10.433699,.05,.05,0,0,0,0,0,0,0,0,0,0,3.7887397,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,14,6,4,1,287,663863.5,440363.81,181646.22,-17118.756,4611.481,-432.1142,1758.1511 +6639,8097,14465,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1002.0372,0,1,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6876037,0,51.08,49.24,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,345,255616.83,77380.086,0,0,0,0,771.76459 +6640,8098,14466,-9,14467,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1068.6136,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,1202.5,193604.31,-1448.0872,230850.16,0,0,0,1966.769 +6640,8098,14467,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.3435974,8.4604959,0,0,0,-1022.8777,0,3,2,2021,10,0,33,34,1,0,0,16.065023,16.065023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,1202.5,193604.31,-1448.0872,230850.16,0,0,0,1966.769 +6640,8099,14468,-9,14467,-9,1,1,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-954.31726,-9,1,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,687,49544.438,0,0,0,0,0,538.34973 +6641,8100,14469,-9,-9,-9,1,1,91,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.0415,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,3.4239674,0,40.795979,0,1,1,0,1.4071844,0,64.54000000000001,20.06,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1118,-191346.48,0,0,0,0,0,56.727436 +6642,8101,14470,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.67682,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,35.24,24.84,-9,-9,5,1,1,0,0,0,2,1,0,133,83522.297,0,59797.605,0,2396.802,0,1336.2914 +6643,8102,14471,14472,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6909738,8.0730362,0,4,-4,1.7133491,0,-9,-9,2021,7,0,42,30,1,0,0,6.8900938,6.8900938,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,40.89,53.59,8.333333333333334,1,1,0,0,8,4,4,0,751,57721.898,11138.914,0,0,0,7182.7588,2266.8169 +6643,8102,14472,14471,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.1367731,7.9467311,0,4,4,120.78717,0,-9,-9,2021,12,0,45,38,1,0,0,7.1022873,7.1022873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.89,53.59,48.87,58.55,5,1,1,0,0,9,4,4,0,751,57721.898,11138.914,0,0,0,7182.7588,2266.8169 +6644,8103,14473,14474,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,3.7009511,4.068954,19,-2,87.176384,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1548328,3.9868536,54.2,57.49,56.35,51.16,8.333333333333334,1,1,0,0,10,4,2,1,956,230347.28,0,185756.06,0,0,0,353.66656 +6644,8103,14474,14473,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,18,2,-7.1111331,0,3,3,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587208,0,56.35,51.16,54.2,57.49,10,1,1,0,0,10,4,2,1,956,230347.28,0,185756.06,0,0,0,353.66656 +6645,8104,14475,14476,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.909884,7.9014049,28,13,78.44088,0,1,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8361626,7.7802052,47.55,49.86,63.41,39.7,6.666666666666667,1,1,0,0,10,10,5,1,479.5,2063246.8,787309,732698.38,0,0,0,5482.4521 +6645,8104,14476,14475,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.9867234,8.5928526,7.3297858,28,-13,128.53427,0,3,3,2021,7,0,13,12,1,0,0,23.94809,23.94809,0,0,0,0,0,0,0,0,1,1,0,5.9466486,7.5946317,63.41,39.7,47.55,49.86,8.333333333333334,4,2,0,0,9,10,5,1,479.5,2063246.8,787309,732698.38,0,0,0,5482.4521 +6646,8105,14477,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.102623,8.0249672,0,0,0,-1072.5272,0,2,2,2021,12,2,36,30,1,2,0,11.547713,11.547713,.05,.05,0,0,0,0,0,0,0,0,0,1.3757045,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,1838,-50679.449,14089.574,0,0,0,0,1743.5032 +6647,8106,14478,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.1410332,7.5395098,0,0,-1019.7263,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2209468,7.1110473,56.25,40.2,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,705,379114.25,184497.69,195562.25,0,2917.1592,0,2141.4956 +6648,8107,14479,14480,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.0235376,5.6455045,43,1,-33.548569,0,3,3,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,137.25529,0,0,1,1,0,0,5.7134562,41,24,47.32,52.7,5,1,1,0,0,0,4,2,0,615,299640.41,53640.926,174892.83,0,0,0,2884.3323 +6648,8107,14480,14479,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,44,-1,-27.151184,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.32,52.7,41,24,6.666666666666667,1,1,0,0,9,4,2,0,615,299640.41,53640.926,174892.83,0,0,0,2884.3323 +6649,8108,14481,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,9.025876,8.907115,0,0,0,-1021.1484,0,3,3,2021,11,1,37,37,1,1,0,27.859379,27.859379,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,9,9,5,1,2322,513697.63,169569.08,219395.45,0,0,0,3117.7988 +6650,8109,14482,14483,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.3048744,8.283186,0,30,-16,44.723125,0,2,2,2021,9,0,44,44,1,0,0,8.3557072,8.3557072,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.3,55.6,63.98,38.08,8.333333333333334,1,1,0,0,11,2,4,1,1008.5,518630.34,516317.09,241425.8,78342.219,708.5658,4428.499,2469.4199 +6650,8109,14483,14482,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1784773,6.0807004,30,16,35.334324,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8642299,6.266479,63.98,38.08,55.3,55.6,6.666666666666667,1,1,0,0,8,2,4,1,1008.5,518630.34,516317.09,241425.8,78342.219,708.5658,4428.499,2469.4199 +6651,8110,14484,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5704536,8.4960728,0,0,0,-926.60059,0,2,2,2021,13,2,36,37,1,2,0,13.267771,13.267771,.05,.05,0,0,0,0,0,2,0,0,0,3.3284698,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,11,8,5,0,3114,284644.53,-33583.473,518954.41,45224.883,0,0,2556.3105 +6652,8111,14485,14486,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,-2,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,28.494064,87.280556,248.70677,14.5,1,1,0,0,0,48.78,37.32,52,47,6.666666666666667,1,1,0,0,0,13,1,1,517,198972.91,71405.461,193472.81,0,0,0,1971.2783 +6652,8111,14486,14485,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,9,2,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,48.78,37.32,7,1,1,0,0,0,13,1,1,517,198972.91,71405.461,193472.81,0,0,0,1971.2783 +6653,8112,14487,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.7887325,8.8786135,0,0,0,-990.72223,0,1,3,2021,10,1,37,37,1,1,0,20.364841,20.364841,.05,.05,0,0,0,0,0,2,1,1,0,3.0065637,0,52.42,47.69,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,127,467478.28,241873.48,267312.03,0,45504.16,0,1847.0707 +6654,8113,14488,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.6092634,8.2723627,0,0,0,-958.12726,-9,3,2,2021,17,6,40,0,1,6,0,10.830997,10.830997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.59,35.7,-9,-9,10,1,1,0,0,14,10,4,1,4108,-227317.92,-43116.047,0,0,0,0,1611.3435 +6655,8114,14489,-9,14491,14492,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.34,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14490,-9,14491,14492,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.46393,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14491,14492,-9,-9,1,0,32,0,2,0,1,1,1,0,5,8.279645,8.096941,0,16,-5,172.38342,-9,2,2,2021,4,0,55,0,1,0,0,7.8761125,7.8761125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,7,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14492,14491,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,7.973876,7.9623127,0,16,5,-20.251049,0,2,3,2021,9,0,16,20,1,0,0,18.656973,18.656973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.06,57.76,6.666666666666667,1,1,0,0,7,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6656,8115,14493,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.6662636,8.8163824,0,0,0,-897.06708,0,-9,-9,2021,5,0,49,42,1,0,0,18.829325,18.829325,.05,.05,0,0,0,0,0,0,0,0,0,6.2235141,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,367,24655.51,18928.484,0,0,0,0,1749.6241 +6656,8116,14494,14495,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.0487127,8.7481394,0,2,3,105.28592,-9,-9,-9,2021,8,1,50,0,1,1,0,15.795399,15.795399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.97,57.71,51.41,56.15,8.333333333333334,1,1,0,0,3,9,5,1,511,161712.06,57494.941,329189.84,134104.75,0,0,3852.2603 +6656,8116,14495,14494,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0185652,8.1444445,0,2,-3,-7.0164428,-9,-9,-9,2021,12,0,48,0,1,0,0,7.9084091,7.9084091,.05,.05,0,0,0,0,0,0,0,0,0,4.9340968,0,51.41,56.15,44.97,57.71,8.333333333333334,1,1,0,0,0,9,5,1,511,161712.06,57494.941,329189.84,134104.75,0,0,3852.2603 +6657,8117,14496,14497,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.5630088,7.3390379,7,3,-71.126259,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.56566,7.3906336,59.06,48.59,50.65,60.47,8.333333333333334,1,1,0,0,0,11,3,1,619.5,107111.85,0,0,0,0,0,1984.7944 +6657,8117,14497,14496,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,7,-3,73.589592,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,59.06,48.59,10,1,1,0,0,0,11,3,1,619.5,107111.85,0,0,0,0,0,1984.7944 +6658,8118,14498,14499,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.165472,7.9797506,0,8,1,111.2467,0,-9,-9,2021,12,0,38,38,1,0,0,9.958765,9.958765,0,0,0,0,0,0,0,14.5,0,0,0,2.4098167,0,38.42,59.28,58.62,44.69,5,1,1,0,0,9,5,4,1,738,1251907.6,742669.25,327694.97,0,0,0,2860.1792 +6658,8118,14499,14498,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8993301,7.6981363,0,8,-1,12.696715,0,2,2,2021,8,0,26,38,1,0,0,10.265471,10.265471,.05,.05,0,0,0,0,0,2,0,0,0,4.0155568,0,58.62,44.69,38.42,59.28,8.333333333333334,1,1,0,0,8,5,4,1,738,1251907.6,742669.25,327694.97,0,0,0,2860.1792 +6659,8119,14500,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.2049456,8.3214483,0,0,0,-1078.4517,0,2,2,2021,13,1,37,37,1,1,0,12.716078,12.716078,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,44.03,59.58,-9,-9,3.333333333333333,1,1,0,1,10,12,4,1,606,-110902.25,-67740.117,265943.22,68477.188,3223.7087,0,2340.6863 +6660,8120,14501,14502,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.2664738,8.0822048,37,1,77.657005,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3649836,52.98,43.26,61.04,39.41,10,1,1,0,0,7,11,4,1,1060,1557028.8,926245.25,408236.66,0,18.832397,0,2257.2056 +6660,8120,14502,14501,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.1526933,7.3070178,37,-1,-19.13942,0,1,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1524773,7.3002739,61.04,39.41,52.98,43.26,10,1,1,0,0,6,11,4,1,1060,1557028.8,926245.25,408236.66,0,18.832397,0,2257.2056 +6661,8121,14503,14504,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.3842745,8.3521624,7.348237,47,-4,-61.126465,0,-9,3,2021,12,0,30,30,1,0,0,6.0742373,6.0742373,0,0,0,0,0,0,0,0,1,1,0,7.2468381,7.2987657,57.33,53.46,57.27,41.15,8.333333333333334,1,1,0,0,12,9,3,1,806,1040222.2,573092.13,355691.75,0,0,0,2940.3242 +6661,8121,14504,14503,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.8701625,5.9369702,48,4,-98.746765,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6565366,5.746254,57.27,41.15,57.33,53.46,10,1,1,0,0,8,9,3,1,806,1040222.2,573092.13,355691.75,0,0,0,2940.3242 +6662,8122,14505,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.2873745,7.2667961,0,0,-969.23914,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2377286,7.5534129,43.93,31.44,-9,-9,5,1,1,0,0,5,10,3,1,1165,286898.13,110779.08,161790.36,0,0,0,1926.6166 +6663,8123,14506,14507,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,8.3285761,8.2238007,0,9,9,21.523331,0,3,3,2021,8,0,40,40,1,0,0,15.173238,15.173238,.05,.05,.05,0,0,0,0,0,1,1,0,.44550645,0,57.06,57.76,59.04,48.6,8.333333333333334,1,1,0,0,10,8,5,1,1517,1700722.8,611123.56,668627.38,0,0,0,4015.4185 +6663,8123,14507,14506,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0728807,8.0278044,0,9,0,48.178123,0,3,3,2021,6,0,32,32,1,0,0,14.275027,14.275027,0,0,0,0,0,0,0,0,1,1,0,1.4884527,0,59.04,48.6,57.06,57.76,10,1,1,0,0,10,8,5,1,1517,1700722.8,611123.56,668627.38,0,0,0,4015.4185 +6664,8124,14508,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.5504742,8.9387655,6.6519074,0,0,-997.11731,0,2,3,2021,24,12,37,37,1,12,0,17.28586,17.28586,.05,.05,0,0,0,0,0,0,1,1,0,7.174552,0,19.63,45.5,-9,-9,1.666666666666667,1,1,0,0,12,13,5,1,1186,319428.47,147675.94,357996.31,117407.94,0,0,2758.0198 +6665,8125,14509,14510,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.9615464,7.5590291,6,1,20.765236,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0592471,7.5005207,62.57,40.11,53.61,59.13,0,1,1,0,0,0,4,3,1,546,837639.5,443394.25,205015.72,0,0,0,1843.7803 +6665,8125,14510,14509,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.6954565,5.9289951,6,-1,37.599659,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1542881,6.3468151,53.61,59.13,62.57,40.11,10,1,1,0,0,0,4,3,1,546,837639.5,443394.25,205015.72,0,0,0,1843.7803 +6666,8126,14511,14512,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.2989483,8.3940086,0,1,3,-30.186804,0,2,2,2021,12,1,45,47,1,1,0,11.642499,11.642499,.05,.05,0,0,0,0,0,0,0,0,0,3.2272158,0,57.33,53.46,57.81,33.88,8.333333333333334,1,1,0,0,13,7,5,0,1853.5,576332.63,216549.53,371999.78,0,4051.6182,0,2764.5154 +6666,8126,14512,14511,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.6818733,8.4911556,0,1,-3,-105.33509,-9,-9,-9,2021,11,0,74,0,1,0,0,6.8663368,6.8663368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.81,33.88,57.33,53.46,6.666666666666667,1,1,0,0,1,7,5,0,1853.5,576332.63,216549.53,371999.78,0,4051.6182,0,2764.5154 +6666,8127,14513,-9,14511,-9,1,1,29,0,0,0,2,2,-9,0,4,7.7183075,7.7804365,0,0,0,-1042.8738,-9,2,-9,2021,17,4,36,0,1,4,1,7.3595057,7.3595057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,13,7,3,0,275,11774.326,-28973.635,0,0,5345.4063,470.91397,139.25772 +6667,8128,14514,14515,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,6,0,0,0,-9,-9,2021,29,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.217387,0,24.31,23.06,38.82,39.27,0,1,1,0,1,11,5,1,1,610.5,45850.516,46903.426,0,0,0,0,1179.2043 +6667,8128,14515,14514,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,6,0,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.82,39.27,24.31,23.06,5,1,1,1,0,0,5,1,1,610.5,45850.516,46903.426,0,0,0,0,1179.2043 +6667,8129,14516,-9,-9,-9,1,0,18,0,0,1,1,0,0,1,5,0,0,0,0,0,-956.80206,-9,-9,-9,2021,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4858744,0,44.37,51.44,-9,-9,5,1,1,0,0,0,5,1,1,452,69621.672,0,0,0,0,0,905.84949 +6668,8130,14517,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1163855,8.2144976,0,2,3,-30.993301,0,3,3,2021,8,0,48,42,1,0,0,7.9135885,7.9135885,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.44,40.67,8.333333333333334,1,1,0,0,10,5,4,1,63,-56311.934,0,0,0,0,0,2171.604 +6668,8131,14518,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.8763866,7.7173223,0,2,-3,-2.6193736,0,-9,-9,2021,9,1,39,37,1,1,0,8.1260691,8.1260691,.05,.05,0,0,0,0,0,0,0,0,0,2.7575011,0,56.44,40.67,48.77,60.16,6.666666666666667,1,1,0,0,3,5,4,1,1991,59983.438,8121.4688,0,0,0,0,1364.3193 +6669,8132,14519,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.98878,8.1742201,0,0,0,-1172.632,0,2,3,2021,12,0,37,37,1,0,0,9.3383179,9.3383179,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,9,7,4,0,3608,21102.01,115451.23,0,0,2272.3828,0,634.5321 +6670,8133,14520,14521,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8487453,8.1242142,0,16,1,74.455833,0,3,3,2021,12,0,35,21,1,0,0,7.7843528,7.7843528,0,0,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,60.29,52.11,3.333333333333333,2,3,0,0,6,12,3,0,302,-94.234375,98323.648,153591.22,112697.95,3464.4148,12013.729,2427.0247 +6670,8133,14521,14520,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,6.8908896,6.4848967,0,16,-1,45.417465,0,3,2,2021,3,0,22,16,1,0,0,3.9302058,3.9302058,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,38.28,57.07,10,2,3,0,0,7,12,3,0,302,-94.234375,98323.648,153591.22,112697.95,3464.4148,12013.729,2427.0247 +6671,8134,14522,14523,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.6910381,8.5931959,0,25,-5,85.610588,0,3,2,2021,25,12,65,48,1,12,0,12.381845,12.381845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.68,50.64,29.95,48.83,6.666666666666667,2,3,0,0,11,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8134,14523,14522,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,0,0,0,25,5,110.01402,0,3,3,2021,26,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.95,48.83,39.68,50.64,3.333333333333333,2,3,1,0,7,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8134,14524,-9,14522,14523,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.73279,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8135,14525,-9,14522,14523,1,1,19,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1186.7429,1,1,2,2021,17,4,0,20,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8536296,0,31.38,38.69,-9,-9,5,2,3,0,0,2,6,1,1,224,0,0,0,0,0,0,829.73346 +6672,8136,14526,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,6.9650898,7.7706246,7.2254333,0,0,-910.6463,0,3,3,2021,10,0,20,20,1,0,0,6.0573974,6.0573974,.05,.05,0,0,0,0,0,0,1,1,0,6.378509,7.6565604,40.98,56.66,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,196,145981.7,45172.887,0,0,4429.7197,-217.21982,2157.0759 +6673,8137,14527,14528,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.1639423,8.4238749,0,21,0,-112.48895,0,1,2,2021,25,12,33,26,1,12,0,10.827045,10.827045,0,0,0,0,0,0,0,0,1,1,0,1.3429185,0,20.8,37.96,54.96,50.46,6.666666666666667,3,4,0,0,12,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14528,14527,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.1811314,8.5040483,0,10,9,37.162815,-9,-9,-9,2021,8,1,42,0,1,1,0,11.732282,11.732282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,50.46,20.8,37.96,6.666666666666667,3,4,0,0,13,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14529,-9,14527,14528,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.4924,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14530,-9,14527,14528,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.0431,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6674,8138,14531,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.4433813,5.6015458,0,0,-980.01563,0,2,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.6818433,5.4328718,32.07,44.87,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,1795,764383.19,143501.36,741991.19,65867.164,0,564.43512,1177.1852 +6675,8139,14532,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,5.91188,5.7512617,0,0,-982.31158,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,3.4302604,0,20.922136,0,1,1,0,1.364349,5.8138752,24.54,50.04,-9,-9,6.666666666666667,3,4,0,0,0,7,2,0,235,34691.402,36324.766,154723.59,0,0,0,1068.4213 +6676,8140,14533,-9,14536,14534,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.7167,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14534,14536,-9,-9,1,1,60,0,2,0,2,2,-9,0,4,8.5189552,8.9068985,7.0221267,7,21,-26.081661,0,-9,-9,2021,9,1,39,42,1,1,0,16.020033,16.020033,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3060517,50.97,53.42,51.77,58.57,8.333333333333334,1,1,0,0,8,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14535,-9,14536,14534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8357,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14536,14534,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.8073416,8.4295626,0,16,-21,74.131599,0,2,2,2021,11,1,38,38,1,1,0,15.010444,15.010444,.05,.05,0,0,0,0,0,0,1,1,0,2.3492136,0,51.77,58.57,50.97,53.42,8.333333333333334,1,1,0,0,8,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6677,8141,14537,14538,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.3314514,7.6404896,41,-12,-52.461327,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7145772,7.0777717,49.84,44.96,61.19,36.58,8.333333333333334,1,1,0,0,11,5,4,1,244,1294165.1,688458.88,326501.63,0,0,0,2985.3159 +6677,8141,14538,14537,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6606154,8.0301561,41,12,-55.396317,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1917233,7.8051262,61.19,36.58,49.84,44.96,8.333333333333334,1,1,0,0,5,5,4,1,244,1294165.1,688458.88,326501.63,0,0,0,2985.3159 +6678,8142,14539,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7654924,5.7521024,0,0,-1158.5785,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9890819,5.8647485,53.47,31.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,706,374735.75,98347.602,122478.63,0,0,0,1117.4155 +6679,8143,14540,14541,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,4,-3,-47.7757,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.83,23.56,51.9,43.08,8.333333333333334,1,1,0,0,0,4,5,1,684.5,466517.66,138920.56,107610.66,0,0,0,2363.2007 +6679,8143,14541,14540,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.7351141,9.2381058,0,4,3,165.41051,0,-9,-9,2021,8,1,39,47,1,1,0,16.209103,16.209103,.05,.05,0,0,0,0,0,74.5,0,0,0,0,0,51.9,43.08,43.83,23.56,8.333333333333334,1,1,0,0,13,4,5,1,684.5,466517.66,138920.56,107610.66,0,0,0,2363.2007 +6680,8144,14542,14543,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,5.0826135,4.9789443,0,36,-2,-10.30833,0,2,3,2021,9,0,23,25,1,0,0,.73421329,.73421329,0,0,0,0,0,0,0,2,0,0,0,1.2095742,0,54.79,55.86,52.48,55.6,8.333333333333334,1,1,0,0,11,13,3,1,549.5,115867.3,-47798.609,88797.047,0,0,0,1272.9487 +6680,8144,14543,14542,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5316963,7.6914558,0,10,2,-45.675495,0,-9,-9,2021,7,0,45,40,1,0,0,4.8357067,4.8357067,.05,.05,0,0,0,0,0,0,0,0,0,.99545813,0,52.48,55.6,54.79,55.86,10,1,1,0,0,11,13,3,1,549.5,115867.3,-47798.609,88797.047,0,0,0,1272.9487 +6681,8145,14544,14545,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.1463871,6.5303826,0,43,0,121.37681,0,-9,2,2021,6,0,30,30,1,0,0,1.9872367,1.9872367,0,0,0,0,0,0,0,0,1,1,0,3.0763659,0,61.28,48.88,57.51,42.37,8.333333333333334,1,1,0,0,10,9,2,1,1511.5,719060.75,0,432750.03,0,0,0,2059.3154 +6681,8145,14545,14544,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,0,58.78307,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1558034,0,57.51,42.37,61.28,48.88,8.333333333333334,1,1,0,0,4,9,2,1,1511.5,719060.75,0,432750.03,0,0,0,2059.3154 +6682,8146,14546,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,8.9136839,8.8937769,0,0,-960.1311,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1559861,8.7248535,61.82,34.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,904,780258.25,159713.25,402361.31,0,0,0,3906.823 +6683,8147,14547,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.4653177,8.5309048,6.5556231,0,0,-954.38855,0,3,3,2021,6,0,51,51,1,0,0,10.862323,10.862323,0,0,0,0,0,0,0,0,0,0,0,7.2770963,6.6484647,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,735,383377.31,0,0,0,0,0,1932.9878 +6684,8148,14548,14549,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.5670204,6.3523712,55,1,-19.683151,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5153537,6.687654,55.79,52.62,59.22,40.22,8.333333333333334,1,1,0,0,0,9,2,1,1094.5,627717.5,45107.801,398027.44,0,0,0,2209.0718 +6684,8148,14549,14548,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-.34582123,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.9893654,0,59.22,40.22,55.79,52.62,6.666666666666667,1,1,0,0,0,9,2,1,1094.5,627717.5,45107.801,398027.44,0,0,0,2209.0718 +6685,8149,14550,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.6817946,7.7038488,0,0,-872.17249,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8700089,8.1346483,42.06,37.37,-9,-9,5,1,1,0,0,0,4,4,1,384,534908.94,153740.95,0,0,0,0,2030.4829 +6686,8150,14551,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.4945984,8.671627,0,0,0,-1022.7421,0,3,3,2021,12,1,36,41,1,1,0,16.759623,16.759623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.95,52.41,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,1254,53182.488,-18345.832,0,0,0,0,2467.2803 +6687,8151,14552,14553,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,0,0,34,1,0,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6820779,0,60.02,56.42,58.72,51.29,8.333333333333334,1,1,0,0,11,7,1,1,284,438603.88,0,428918.31,0,0,0,2742.5776 +6687,8151,14553,14552,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,34,-1,0,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3796091,0,58.72,51.29,60.02,56.42,10,1,1,0,0,12,7,1,1,284,438603.88,0,428918.31,0,0,0,2742.5776 +6687,8152,14554,-9,14553,14552,1,0,22,0,0,0,1,1,-9,0,4,0,10.114924,9.9301348,0,0,-896.56488,1,1,1,2021,20,8,0,38,2,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.7849417,9.9579668,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,3,7,5,1,187,135041.92,-52598.566,0,0,0,0,9641.5479 +6687,8153,14555,-9,14553,14552,1,1,20,0,0,0,2,2,-9,0,4,7.5622625,7.6240063,0,0,0,-1086.6028,0,1,1,2021,12,3,38,42,1,3,0,7.0059052,7.0059052,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.6,55.82,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,342,-112665.75,-47343.859,0,0,0,0,926.09167 +6688,8154,14556,14557,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.1385756,7.2127733,0,7,-13,79.380508,0,-9,-9,2021,6,0,20,20,1,0,0,9.3703346,9.3703346,.05,.05,0,0,0,0,0,0,1,1,0,3.8247192,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,5,4,1,1263.5,2052557.8,376056.81,575221.75,349150.06,0,0,3382.147 +6688,8154,14557,14556,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.1584687,7.9872665,8.1569633,7,13,39.685036,0,2,3,2021,7,0,24,20,1,0,0,5.4207339,5.4207339,.05,.05,0,0,0,0,0,0,1,1,0,.91399419,7.9973106,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,1263.5,2052557.8,376056.81,575221.75,349150.06,0,0,3382.147 +6689,8155,14558,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.8992119,8.0683651,0,0,-881.48499,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.442585,57.16,56.15,-9,-9,0,1,1,0,0,0,11,4,1,1548,844027.94,391321.47,157658.83,0,0,0,2522.2913 +6690,8156,14559,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.3141813,8.5828104,0,0,0,-1017.5878,0,-9,-9,2021,12,2,43,45,1,2,0,10.895569,10.895569,0,0,0,0,0,0,0,0,0,0,0,0,0,43.12,58.55,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,866,1404218.1,1113833.3,325397.97,59470.492,2131.7358,0,1950.6129 +6691,8157,14560,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.8085461,6.6161542,0,0,-920.8089,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9571781,6.8989997,52.77,55.33,-9,-9,3.333333333333333,1,1,0,0,8,2,2,1,486,170248.3,104877.66,0,0,0,0,1122.6603 +6692,8158,14561,14562,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,7.0560913,6.5005059,6,-11,-87.989334,0,3,3,2021,2,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9510791,6.6450438,61.12,51.57,59.46,46.99,10,1,1,0,0,6,12,3,1,508.5,793025.25,523181.69,153821.44,0,0,0,2638.8179 +6692,8158,14562,14561,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8633437,7.9268656,6,11,15.791696,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.417089,7.5858793,59.46,46.99,61.12,51.57,8.333333333333334,1,1,0,0,0,12,3,1,508.5,793025.25,523181.69,153821.44,0,0,0,2638.8179 +6693,8159,14563,14564,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.2328987,8.5664177,0,13,4,-73.434074,0,2,2,2021,7,0,35,35,1,0,0,12.840181,12.840181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,12,12,4,1,443,367040.94,190632.89,193414.02,29353.191,20571.219,2084.9346,2166.8528 +6693,8159,14564,14563,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.4197197,7.5699096,0,13,-4,35.540527,0,-9,-9,2021,6,0,30,30,1,0,0,9.4135113,9.4135113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.51,47.91,6.666666666666667,1,1,0,1,12,12,4,1,443,367040.94,190632.89,193414.02,29353.191,20571.219,2084.9346,2166.8528 +6694,8160,14565,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0104456,8.7029352,0,0,0,-1060.713,0,3,-9,2021,6,0,37,53,1,0,0,21.904081,21.904081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,12,8,5,0,1205,506638.84,126315.94,0,0,0,0,1997.7183 +6694,8161,14566,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6269045,8.7991953,0,0,0,-954.38916,0,2,2,2021,7,1,37,37,1,1,0,26.194843,26.194843,.05,.05,0,0,0,0,0,0,0,0,0,5.2722907,0,45.8,55.86,-9,-9,8.333333333333334,2,3,0,0,12,8,5,0,621,279508.59,156598.52,465213.31,90986.594,0,0,2073.3914 +6694,8162,14567,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7051344,8.5245581,0,0,0,-939.09528,0,3,3,2021,20,7,37,42,1,7,0,22.641184,22.641184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,52.9,-9,-9,8.333333333333334,2,3,0,0,12,8,5,0,706,696942.56,270593.41,354952.31,143608.88,0,0,2800.7456 +6694,8163,14568,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6768284,8.6346254,0,0,0,-1076.08,0,2,2,2021,6,0,40,-9,1,0,0,20.571712,20.571712,.05,.05,0,0,0,0,0,0,0,0,0,2.1347399,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,1330,432023.91,209242.06,341336,147780.58,0,0,3067.0347 +6695,8164,14569,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6128163,6.8046432,0,0,-1047.7711,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4672757,7.3793554,60.12,54.8,-9,-9,10,1,1,0,0,0,2,2,0,1388,126099.66,120621.54,151691.44,0,0,0,1172.1157 +6696,8165,14570,14573,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.972373,10.034848,0,12,-2,80.712784,0,2,3,2021,12,1,35,33,1,1,0,45.251415,45.251415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,46.82,53.98,50.87,6.666666666666667,1,1,0,0,15,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14571,-9,14573,14570,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.34784,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14572,-9,14573,14570,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.7429,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14573,14570,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,12,2,-11.488479,1,-9,-9,2021,8,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,53.54,46.82,6.666666666666667,1,1,0,0,2,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6697,8166,14574,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1007.827,0,3,3,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,16.58,-9,-9,0,1,1,1,0,0,12,1,0,397,-232001.61,0,0,0,0,0,1261.2723 +6698,8167,14575,14576,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.5627027,7.8609567,43,0,-84.943573,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6522279,8.2103701,54.2,57.49,57.97,37.36,8.333333333333334,1,1,0,0,12,8,5,1,1501.5,1023917.9,0,739364.13,0,0,0,6053.147 +6698,8167,14576,14575,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.5012627,8.5629196,41,9,64.789574,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3594723,57.97,37.36,54.2,57.49,8.333333333333334,1,1,0,0,0,8,5,1,1501.5,1023917.9,0,739364.13,0,0,0,6053.147 +6699,8168,14577,14578,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.226387,8.1258068,7,-2,106.30087,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.4071517,8.1518536,43.59,59.64,51.83,57.2,6.666666666666667,2,3,0,0,7,8,4,1,188,3866864,894808.38,1937705.9,0,0,0,2654.9185 +6699,8168,14578,14577,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.7961221,8.3292751,7,2,-109.4148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1036224,8.2220459,51.83,57.2,43.59,59.64,8.333333333333334,1,1,0,0,0,8,4,1,188,3866864,894808.38,1937705.9,0,0,0,2654.9185 +6700,8169,14579,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.3137732,9.1878633,0,0,0,-921.4707,0,1,1,2021,1,0,47,108,1,0,0,25.770554,25.770554,.05,.05,0,0,0,0,0,0,0,0,0,7.4785242,0,48.53,58.91,-9,-9,10,3,4,0,0,8,4,5,0,501,153603.39,13183.645,0,0,0,0,4279.4209 +6700,8170,14580,-9,14579,-9,1,1,25,0,0,0,2,2,-9,0,5,8.1702576,8.0748634,0,0,0,-955.08704,-9,1,2,2021,9,0,50,0,1,0,1,6.7506104,6.7506104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,6,4,4,0,430,-12900.577,-39138.406,0,0,0,0,2167.2061 +6700,8171,14581,-9,14579,-9,1,0,23,0,0,0,1,1,-9,0,2,7.9269671,7.7002854,0,0,0,-1137.5182,0,1,-9,2021,15,5,30,0,1,5,1,10.972579,10.972579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.81,33.95,-9,-9,8.333333333333334,4,2,0,0,1,4,3,0,1008,129544.54,-82135.672,0,0,0,0,1324.7946 +6701,8172,14582,-9,14584,14585,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1156.167,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14583,-9,14584,14585,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7611,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14584,14585,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.6535463,8.7590561,0,11,-2,65.385033,0,-9,-9,2021,12,1,37,30,1,1,0,21.562084,21.562084,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,58.88,56.08,52.63,8.333333333333334,1,1,0,1,12,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14585,14584,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,9.488555,9.2865791,0,11,2,33.354717,0,-9,-9,2021,12,1,70,50,1,1,0,14.45738,14.45738,0,0,0,0,0,0,0,2,1,1,0,8.6040258,0,56.08,52.63,39.8,58.88,5,1,1,0,1,12,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6702,8173,14586,14587,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,0,0,0,43,-5,0,0,3,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,44.59,11.08,10,2,3,0,0,0,8,1,1,282,-92302.477,0,0,0,0,0,1353.0909 +6702,8173,14587,14586,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,43,5,0,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.59,11.08,62.49,55.09,10,2,3,0,0,0,8,1,1,282,-92302.477,0,0,0,0,0,1353.0909 +6702,8174,14588,-9,14586,14587,1,1,22,0,0,0,2,2,-9,0,3,8.1325674,8.2585382,0,0,0,-884.13947,0,3,3,2021,16,4,39,39,1,4,1,10.084734,10.084734,0,0,0,0,0,0,0,2,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,2,3,0,0,5,8,4,1,554,46400.094,0,0,0,791.55359,0,1351.2168 +6703,8175,14589,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.5825801,6.8464627,0,0,-1036.9446,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.561527,0,0,1,1,0,5.8702178,6.1221714,57.38,36.96,-9,-9,0,1,1,0,0,0,10,2,1,1857,416176.59,-161916.3,210746.34,0,0,918.32672,1615.3484 +6703,8176,14590,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.3792048,6.4442725,0,0,-1015.1393,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5494766,67.63,32.28,-9,-9,10,1,1,0,0,0,10,2,1,2690,152361.33,89405.172,290757.19,0,0,-45.58931,1305.0093 +6704,8177,14591,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.8722796,7.7544422,0,0,-1027.1359,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.946341,7.7951927,59.71,21.75,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,2114,674048,437187.38,142903.39,0,0,0,1953.8658 +6705,8178,14592,14593,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.6772785,8.8269167,64,1,-2.7911162,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.666007,8.9066896,49.12,53.02,62.1,51.16,10,1,1,0,0,0,9,4,1,314,1047763.1,465726,480010.75,0,0,0,4352.0313 +6705,8178,14593,14592,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,64,-1,65.696266,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.8104694,0,62.1,51.16,49.12,53.02,8.333333333333334,1,1,0,0,0,9,4,1,314,1047763.1,465726,480010.75,0,0,0,4352.0313 +6706,8179,14594,14596,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,8.5787096,8.4610214,0,5,2,15.92265,0,-9,-9,2021,9,1,36,36,1,1,0,16.091696,16.091696,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,47,57,8.333333333333334,1,1,0,0,12,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14595,-9,14596,14594,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.5864,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14596,14594,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6794224,8.6251736,0,5,-2,48.514553,0,2,2,2021,11,0,38,38,1,2,0,13.938231,13.938231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50.57,52.35,7,1,1,0,0,11,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14597,-9,14596,14594,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.8937,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6707,8180,14598,14599,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,38,-3,-11.936391,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,59.6,52.5,8.333333333333334,1,1,0,0,8,7,2,1,1008.5,622711.44,257077.66,417734.63,0,0,0,1268.2551 +6707,8180,14599,14598,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.2530828,6.1702638,38,3,37.194782,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4727976,6.22545,59.6,52.5,61.68,49.95,10,1,1,0,0,2,7,2,1,1008.5,622711.44,257077.66,417734.63,0,0,0,1268.2551 +6708,8181,14600,14601,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0753651,7.9447851,0,8,9,13.765588,0,3,3,2021,6,0,38,38,1,0,0,7.3936148,7.3936148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,27.39,58.77,6.666666666666667,1,1,0,0,14,6,4,1,592,1001842.1,787595.88,270470.16,28723.055,0,0,3017.7832 +6708,8181,14601,14600,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0381222,8.3486214,0,8,0,-2.8237329,0,2,2,2021,26,11,79,42,1,11,0,4.6754389,4.6754389,0,0,0,0,0,0,0,0,0,0,0,1.3762985,0,27.39,58.77,61.28,48.88,3.333333333333333,1,1,0,0,14,6,4,1,592,1001842.1,787595.88,270470.16,28723.055,0,0,3017.7832 +6709,8182,14602,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.8869948,6.9406981,0,0,-1041.8696,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5932302,6.8806767,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,393,-26523.379,133844.86,0,0,0,0,284.47314 +6710,8183,14603,14604,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.0123806,8.4167643,0,3,2,-47.676075,0,-9,-9,2021,12,2,37,60,1,2,0,9.9353724,9.9353724,0,0,0,0,0,0,0,0,0,0,0,0,0,41.62,56.81,57.16,56.15,5,3,4,0,0,9,8,5,1,1141.5,219195.92,51514.199,219493.28,181930.91,0,0,3988.9705 +6710,8183,14604,14603,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.7576923,8.9129162,0,3,-2,-104.32075,0,2,-9,2021,11,0,40,45,1,0,0,20.431795,20.431795,.05,.05,0,0,0,0,0,0,0,0,0,4.9087939,0,57.16,56.15,41.62,56.81,8.333333333333334,1,1,0,0,6,8,5,1,1141.5,219195.92,51514.199,219493.28,181930.91,0,0,3988.9705 +6711,8184,14605,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1052.7952,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1038,15753.835,0,0,0,0,0,1429.2059 +6712,8185,14606,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-984.00616,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1103,1203942.6,687718.5,346425.22,0,0,0,2206.7046 +6713,8186,14607,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.2320986,7.8042688,0,0,0,-1062.0902,-9,-9,-9,2021,12,0,40,0,1,0,0,13.169208,13.169208,0,0,0,0,0,0,0,0,0,0,0,0,0,41.41,59.45,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,192,31018.834,-44475.777,0,0,0,0,1157.0165 +6714,8187,14608,-9,14610,-9,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-941.1958,-9,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.37,59.66,-9,-9,6.666666666666667,1,1,0,0,2,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6714,8187,14609,-9,14610,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-869.73431,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6714,8187,14610,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,6.3176246,6.3045654,0,0,-1044.1636,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0645804,0,31.35,33.26,-9,-9,1.666666666666667,1,1,0,1,0,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6715,8188,14611,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.6484632,8.5188923,0,0,0,-944.24646,0,2,1,2021,7,1,15,35,1,1,0,48.569748,48.569748,.05,.05,0,0,0,0,0,0,0,0,0,4.8790164,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1546,303314.13,351133.28,112574.71,35258.016,0,0,2125.3081 +6716,8189,14612,14613,-9,-9,1,1,63,0,1,0,1,1,-9,0,5,8.8428125,9.4717226,8.6818447,11,12,-53.251247,0,-9,-9,2021,9,1,40,40,1,1,0,25.736378,25.736378,.05,.05,0,0,0,0,0,0,1,1,0,0,8.8870544,55.09,55.87,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6716,8189,14613,14612,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,0,7.6798067,7.6785688,27,-12,.63649547,0,2,1,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0919509,8.0637197,51.83,57.2,55.09,55.87,8.333333333333334,1,1,0,0,12,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6716,8189,14614,-9,14613,14612,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6717,8190,14615,14616,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2593985,8.4189129,0,27,0,77.469482,-9,2,3,2021,10,0,36,0,1,0,0,12.155938,12.155938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,9,13,5,1,166,577553.75,332076.19,188647.39,41511.156,0,0,3972.9575 +6717,8190,14616,14615,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3864908,9.3999739,0,27,0,-46.889294,-9,2,2,2021,9,0,40,0,1,0,0,32.023392,32.023392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.37,54.8,6.666666666666667,1,1,0,0,9,13,5,1,166,577553.75,332076.19,188647.39,41511.156,0,0,3972.9575 +6718,8191,14617,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,6.587007,6.3852358,0,0,-881.04315,0,3,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82999355,6.4319038,45,38,-9,-9,5,1,1,0,0,4,6,2,1,1604,210161.94,33293.613,0,0,0,0,489.30896 +6719,8192,14618,14619,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.8883491,7.0981021,0,31,0,123.45345,0,2,2,2021,11,1,24,24,1,1,0,6.6527576,6.6527576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,53.5,46.98,59.35,8.333333333333334,1,1,0,0,9,12,5,1,1327,999393.38,793009.88,202720.78,69356.438,0,0,4634.5508 +6719,8192,14619,14618,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.3995066,9.30301,0,31,0,-50.740387,0,2,2,2021,8,0,40,40,1,0,0,27.457392,27.457392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,45.32,53.5,8.333333333333334,1,1,0,0,9,12,5,1,1327,999393.38,793009.88,202720.78,69356.438,0,0,4634.5508 +6720,8193,14620,14621,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.0899487,6.0939407,7,1,4.2044506,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4666772,6.2918763,49.52,50.14,51.28,35.77,10,1,1,0,0,0,2,2,1,238.5,110537.62,62646.582,0,0,0,0,1555.5087 +6720,8193,14621,14620,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-1,7.5252008,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.28,35.77,49.52,50.14,10,1,1,0,0,0,2,2,1,238.5,110537.62,62646.582,0,0,0,0,1555.5087 +6721,8194,14622,14623,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.386344,8.4711351,0,5,1,-146.60887,0,-9,-9,2021,12,1,38,49,1,1,0,12.101147,12.101147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.69,45.7,37.02,47.89,8.333333333333334,1,1,0,0,12,13,5,1,610,881673.5,745440.38,231059.88,0,1776.8738,16544.334,2972.8152 +6721,8194,14623,14622,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1776724,8.0937481,0,5,-1,75.187416,0,2,2,2021,24,12,30,30,1,12,0,10.354236,10.354236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.02,47.89,48.69,45.7,5,1,1,0,0,10,13,5,1,610,881673.5,745440.38,231059.88,0,1776.8738,16544.334,2972.8152 +6722,8195,14624,14625,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,0,0,0,15,3,-63.013985,0,2,2,2021,11,2,0,15,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.15,38.45,45.98,56.3,6.666666666666667,1,1,0,0,7,4,3,1,322.5,449405.25,231604.41,153649.75,0,0,0,1320.0569 +6722,8195,14625,14624,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.7850685,8.2086382,0,15,-3,-74.465218,0,2,2,2021,11,0,70,40,1,0,0,4.72089,4.72089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,52.15,38.45,5,1,1,0,0,6,4,3,1,322.5,449405.25,231604.41,153649.75,0,0,0,1320.0569 +6723,8196,14626,-9,14627,14628,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-956.59045,-9,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.44,53.27,-9,-9,10,1,1,1,0,0,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6723,8196,14627,14628,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,8.1554365,8.4243698,0,8,-3,72.007248,0,3,-9,2021,6,0,53,52,1,0,0,8.9814844,8.9814844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.61,50.3,8.333333333333334,1,1,0,0,10,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6723,8196,14628,14627,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9800725,7.8408089,0,8,3,77.102402,0,-9,-9,2021,8,0,47,42,1,0,0,5.5910306,5.5910306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.61,50.3,60.12,54.8,8.333333333333334,1,1,0,0,10,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6724,8197,14629,-9,14630,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.65265,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14630,14633,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.7753968,7.6534162,4.8814616,6,-7,-146.41185,0,2,2,2021,10,0,39,39,1,0,0,4.8075109,4.8075109,0,0,0,0,0,0,0,2,1,1,0,5.0025649,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14631,-9,14630,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.7612,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14632,-9,14630,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1076.5563,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14633,14630,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.4457192,7.4515691,0,6,7,53.411602,0,-9,-9,2021,7,0,27,28,1,0,0,4.9337873,4.9337873,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6725,8198,14634,14635,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.5886393,8.9667854,44,-7,-27.236427,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6858263,9.0320148,57.28,51.96,58.72,51.29,8.333333333333334,1,1,0,0,0,9,5,1,1986,12520202,2313616.5,878668.81,0,0,0,10707.411 +6725,8198,14635,14634,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,9.2042551,9.2242937,44,7,-.2586101,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6583018,9.3536253,58.72,51.29,57.28,51.96,8.333333333333334,1,1,0,0,2,9,5,1,1986,12520202,2313616.5,878668.81,0,0,0,10707.411 +6726,8199,14636,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,7.3741894,7.2794805,0,0,-1013.9572,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4333348,59.04,54.12,-9,-9,10,1,1,0,0,0,6,3,1,469,358492.69,41768.652,260107.83,0,0,0,1967.8373 +6727,8200,14637,14638,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5062513,7.3234234,0,28,-1,63.99052,0,3,2,2021,12,0,30,30,1,0,0,6.4126024,6.4126024,0,0,0,0,0,0,0,0,1,0,1,0,0,35.04,41.01,42.97,30.66,3.333333333333333,1,1,0,0,7,2,2,0,498.5,61514.641,0,147432.34,0,0,0,920.36743 +6727,8200,14638,14637,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,0,0,28,1,-35.480965,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.97,30.66,35.04,41.01,3.333333333333333,1,1,1,1,0,2,2,0,498.5,61514.641,0,147432.34,0,0,0,920.36743 +6727,8201,14639,-9,14637,14638,1,0,31,0,0,0,2,2,-9,0,4,7.3938446,7.2339263,0,0,0,-1096.0829,0,2,3,2021,8,0,40,40,1,0,1,4.2519298,4.2519298,0,0,0,0,0,0,0,0,1,0,1,0,0,44.3,54.12,-9,-9,8.333333333333334,1,1,0,0,12,2,3,0,942,43262.227,0,0,0,4030.6238,0,1096.8453 +6727,8202,14640,-9,14637,14638,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.7035,0,2,3,2021,12,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.21,55.18,-9,-9,3.333333333333333,1,1,1,1,4,2,1,0,438,-161733.28,0,0,0,0,0,-821.59644 +6728,8203,14641,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.0895662,8.4132452,0,0,0,-1074.1553,-9,3,3,2021,7,1,58,0,1,1,0,9.0403128,9.0403128,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.88,43.54,-9,-9,6.666666666666667,3,4,0,0,12,8,3,0,1239,-104490.97,48256.305,0,0,0,314.67523,1688.8826 +6728,8203,14642,-9,14641,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.93738,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,3,0,1239,-104490.97,48256.305,0,0,0,314.67523,1688.8826 +6729,8204,14643,14644,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4989548,8.7789516,7.208931,45,0,5.0930362,0,3,3,2021,13,4,37,37,1,4,0,16.517744,16.517744,0,0,0,0,0,0,0,89,1,1,0,6.8639646,7.4672966,35.75,56.45,50,47,8.333333333333334,1,1,0,0,10,8,5,1,277.5,1960599.3,813788.81,486201.56,0,0,0,4337.0479 +6729,8204,14644,14643,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.5361605,5.4347067,7,0,26.494204,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3098879,50,47,35.75,56.45,7,1,1,0,0,0,8,5,1,277.5,1960599.3,813788.81,486201.56,0,0,0,4337.0479 +6730,8205,14645,14646,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7817163,7.7534862,0,3,0,15.500541,0,-9,-9,2021,11,0,33,-9,1,2,0,8.4476938,8.4476938,.05,.05,0,0,0,0,0,0,0,0,0,2.9576111,0,47,59,44.25,32.68,7,1,1,0,0,7,7,4,0,3159.5,141238.69,84253.117,198907.08,141150.78,3955.3516,-387.97986,2814.0425 +6730,8205,14646,14645,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.8864799,7.6049466,0,3,0,-74.093529,0,-9,-9,2021,23,10,39,38,1,10,0,7.2351441,7.2351441,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.25,32.68,47,59,6.666666666666667,1,1,0,0,3,7,4,0,3159.5,141238.69,84253.117,198907.08,141150.78,3955.3516,-387.97986,2814.0425 +6731,8206,14647,14648,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7750158,8.5748281,0,8,-1,40.379246,0,2,2,2021,24,10,36,49,1,10,0,17.029751,17.029751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,58.15,52.91,8.333333333333334,1,1,0,0,9,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6731,8206,14648,14647,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,8.5692778,8.7180996,0,8,1,-17.707544,0,3,3,2021,6,0,42,42,1,0,0,14.204607,14.204607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.54,59.6,8.333333333333334,1,1,0,0,9,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6731,8206,14649,-9,14647,14648,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-920.21301,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6732,8207,14650,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.1154833,8.5629206,0,0,0,-969.78436,0,2,1,2021,2,0,48,30,1,0,0,9.3928385,9.3928385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,4,10,4,0,384,-137826.13,34949.047,0,0,0,0,739.53644 +6733,8208,14651,-9,14654,14652,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0598,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14652,14654,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.0361905,6.8715153,0,3,6,73.853813,0,3,-9,2021,6,0,20,30,1,0,0,6.2133665,6.2133665,.05,.05,0,0,0,0,0,0,1,1,0,6.4205194,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14653,-9,14654,14652,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.7027,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14654,14652,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2371283,7.9841261,0,3,-6,-20.510654,0,-9,-9,2021,7,0,38,20,1,0,0,7.2579031,7.2579031,0,0,0,0,0,0,0,0,1,1,0,7.9635444,0,57.06,57.76,57.16,56.15,10,1,1,0,0,3,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6734,8209,14655,14656,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.5687761,7.2368393,8,-1,52.17371,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1445885,7.2733417,65.15000000000001,29.3,62.39,56.71,8.333333333333334,1,1,0,0,0,12,3,1,875.5,530468.56,99237.07,307929.16,0,0,0,2655.6152 +6734,8209,14656,14655,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,6.3977365,6.4516983,8,1,-2.4494162,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8934503,6.6664996,62.39,56.71,65.15000000000001,29.3,10,1,1,0,0,6,12,3,1,875.5,530468.56,99237.07,307929.16,0,0,0,2655.6152 +6735,8210,14657,14658,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5630016,7.7241602,0,7,3,31.511894,0,3,2,2021,9,0,40,44,1,0,0,5.88204,5.88204,0,0,0,0,0,0,0,2,0,0,0,2.755764,0,54.96,53.17,51.7,49.11,6.666666666666667,1,1,0,0,8,11,2,1,590,75779.781,0,102171.63,33202.5,0,0,811.45239 +6735,8210,14658,14657,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,7,-3,175.47678,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54945445,0,51.7,49.11,54.96,53.17,8.333333333333334,1,1,0,0,1,11,2,1,590,75779.781,0,102171.63,33202.5,0,0,811.45239 +6736,8211,14659,14660,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,41,-3,68.034645,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.84222847,0,35.6,47.42,52.23,55.6,6.666666666666667,1,1,0,0,0,13,3,1,437,1026853.5,699570,219870.44,0,0,0,1860.4617 +6736,8211,14660,14659,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.25982,8.1612692,41,3,67.720062,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5314353,8.38904,52.23,55.6,35.6,47.42,5,1,1,0,0,6,13,3,1,437,1026853.5,699570,219870.44,0,0,0,1860.4617 +6737,8212,14661,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1029.0962,0,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.91,48.18,-9,-9,0,1,1,0,1,3,7,1,0,236,-162574.73,0,0,0,0,0,-171.66893 +6738,8213,14662,14664,-9,-9,1,0,41,0,1,0,3,3,-9,0,4,0,0,0,24,-8,-28.998259,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50,55,53,54,8,2,3,0,0,0,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8213,14663,-9,14662,14664,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1042.8815,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8213,14664,14662,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.3720818,7.228128,0,6,8,-125.31523,0,-9,-9,2021,9,0,25,25,1,1,0,6.0746384,6.0746384,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,2,3,0,0,8,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8214,14665,-9,14662,14664,1,0,20,0,1,0,1,1,1,0,4,6.644979,6.6008959,0,0,0,-994.57465,-9,3,3,2021,11,0,17,0,1,2,1,6.6519289,6.6519289,.05,.05,0,0,0,0,0,0,1,1,0,.88772756,0,47,58,-9,-9,7,2,3,0,0,2,8,2,0,328,-72241.695,73883.133,0,0,0,0,596.7821 +6738,8215,14666,-9,14662,14664,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-975.70172,1,3,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,704,159910.36,0,0,0,0,0,0 +6739,8216,14667,14668,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.6646266,7.6685276,0,11,-1,-9.5292549,0,-9,-9,2021,7,0,31,40,1,0,0,7.4325013,7.4325013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,4,4,1,659,252149.47,80427.234,0,0,100.24321,0,2960.2793 +6739,8216,14668,14667,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4217691,8.4862919,0,11,1,38.106022,0,-9,-9,2021,6,0,43,44,1,0,0,12.114347,12.114347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,6.666666666666667,1,1,0,0,13,4,4,1,659,252149.47,80427.234,0,0,100.24321,0,2960.2793 +6740,8217,14669,14670,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0309348,7.5388551,56,1,-146.6266,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.37254,7.5444961,61.62,34.96,60.12,54.8,10,1,1,0,0,0,9,3,1,281,556836.94,231392.81,286923.63,0,0,0,2904.0369 +6740,8217,14670,14669,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3003292,6.7758446,56,-1,-54.871601,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8732812,6.8770075,60.12,54.8,61.62,34.96,8.333333333333334,1,1,0,0,0,9,3,1,281,556836.94,231392.81,286923.63,0,0,0,2904.0369 +6741,8218,14671,14672,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,6,1,-82.788437,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47347686,0,67.75,25.82,57.16,56.15,6.666666666666667,1,1,0,0,0,4,2,1,920.5,2136664,1263712.5,0,0,0,0,1804.7498 +6741,8218,14672,14671,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.4006,7.2145343,0,6,-1,6.9564033,0,2,2,2021,7,0,16,8,1,0,0,13.541608,13.541608,0,0,0,0,0,0,0,0,1,1,0,1.5880686,0,57.16,56.15,67.75,25.82,8.333333333333334,1,1,0,0,7,4,2,1,920.5,2136664,1263712.5,0,0,0,0,1804.7498 +6742,8219,14673,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.0025172,5.9590011,0,0,-953.28223,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,1.8145605,0,1,1,0,5.6003528,0,48.09,44.05,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,454,503623.63,0,520490.41,0,0,0,900.40265 +6743,8220,14674,14675,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4321918,8.4031534,0,12,-5,97.305908,0,-9,-9,2021,13,3,42,27,1,3,0,12.608863,12.608863,.05,.05,0,0,0,0,0,0,0,0,0,9.0171747,0,47.79,46.82,27.51,61.9,3.333333333333333,1,1,0,0,11,9,5,1,1073,1405218.3,969772.69,343363.34,0,0,0,7428.5859 +6743,8220,14675,14674,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.5516052,9.1900387,0,12,5,-65.531799,0,3,3,2021,22,9,58,53,1,9,0,27.849272,27.849272,.05,.05,0,0,0,0,0,0,0,0,0,4.7884874,0,27.51,61.9,47.79,46.82,1.666666666666667,1,1,0,0,12,9,5,1,1073,1405218.3,969772.69,343363.34,0,0,0,7428.5859 +6744,8221,14676,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.0077572,7.9693403,0,0,0,-1032.4448,0,-9,-9,2021,13,2,45,24,1,2,0,6.2321868,6.2321868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,3,7,4,0,87,-270526.03,-4041.8101,0,0,0,0,1235.5236 +6745,8222,14677,-9,14679,14678,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.2834,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6745,8222,14678,14679,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.509593,8.4489679,0,15,1,62.33326,0,2,2,2021,9,0,44,46,1,0,0,10.709561,10.709561,.05,.05,0,0,0,0,0,0,1,1,0,3.8724787,0,44.17,49.99,52.99,51.28,8.333333333333334,1,1,0,0,6,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6745,8222,14679,14678,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,0,0,0,15,-1,22.519651,0,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5145464,0,52.99,51.28,44.17,49.99,8.333333333333334,1,1,0,0,0,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6746,8223,14680,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,5.8717084,5.7087493,0,0,-1064.9313,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,26.591356,0,0,1,1,0,0,5.4290366,29.44,39.92,-9,-9,6.666666666666667,3,4,0,0,0,6,2,1,1032,253451.55,30610.223,131991.22,0,0,0,323.45255 +6747,8224,14681,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.9464798,6.762557,0,0,-968.50574,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8561935,51.99,46.14,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,718,232631.78,158900.84,0,0,0,0,1236.3256 +6748,8225,14682,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,7.6056528,7.6727953,0,0,0,-1031.5061,0,2,2,2021,6,0,27,27,1,0,0,9.0497026,9.0497026,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,237,118896.9,86352.477,0,0,0,0,1311.463 +6748,8226,14683,-9,14682,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1034.6934,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,2,1,10672,204658.84,0,0,0,0,0,438.75336 +6749,8227,14684,14685,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,6.8739262,6.5665169,0,49,-1,95.735329,0,-9,-9,2021,8,0,15,15,1,0,0,6.048358,6.048358,0,0,0,0,0,0,0,0,1,1,0,0,0,50.39,48.87,44.82,41.56,1.666666666666667,1,1,0,0,14,11,2,1,735,338842.56,130303.47,148021.27,0,0,0,1677.769 +6749,8227,14685,14684,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,1,-77.724312,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.82,41.56,50.39,48.87,6.666666666666667,1,1,0,0,0,11,2,1,735,338842.56,130303.47,148021.27,0,0,0,1677.769 +6750,8228,14686,14688,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.8507557,8.741683,0,7,-4,-32.198448,0,2,2,2021,18,7,26,0,1,7,0,26.300852,26.300852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,8.333333333333334,1,1,0,0,8,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6750,8228,14687,-9,14686,14688,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.25897,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6750,8228,14688,14686,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.8991985,8.4958115,0,7,4,76.434502,0,-9,-9,2021,9,0,38,37,1,0,0,19.828203,19.828203,.05,.05,.05,0,0,0,0,0,1,1,0,.17470811,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6751,8229,14689,14690,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,3.4546998,3.587867,0,32,-4,-11.383159,0,3,2,2021,10,0,24,24,1,1,0,.14751692,.14751692,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,3,4,0,0,3,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14690,14689,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,5.3238974,5.2971797,0,32,4,67.876167,0,3,3,2021,9,0,24,24,1,1,0,1.0653292,1.0653292,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,0,1,4,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14691,-9,14689,14690,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-933.12335,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14692,-9,14689,14690,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.66235,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8230,14693,-9,14689,14690,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-984.56531,0,3,2,2021,11,0,0,24,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,1,0,0,8,1,0,367,0,0,0,0,0,0,0 +6751,8231,14694,-9,14689,14690,1,0,19,0,2,0,2,2,1,0,1,0,0,0,0,0,-981.94135,-9,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.74,25.6,-9,-9,5,3,4,1,0,1,8,1,0,267,-36625.926,0,0,0,0,513.65277,0 +6751,8232,14695,-9,14689,14690,1,0,18,0,2,1,2,0,0,1,2,0,0,0,0,0,-981.73608,-9,3,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12,27.86,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,396,-35844.68,0,0,0,0,948.26892,416.1749 +6751,8233,14696,-9,14689,14690,1,1,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-969.89203,0,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,788,0,0,0,0,0,0,-222.39452 +6752,8234,14697,14698,-9,-9,1,0,24,0,0,0,1,1,1,0,3,7.9827971,7.9338818,0,1,1,103.11222,-9,-9,-9,2021,13,3,40,0,1,3,0,9.803422,9.803422,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,1075,251540,-50200.871,109553.95,70132.477,0,0,4421.2158 +6752,8234,14698,14697,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.5380926,8.5774565,0,1,-1,23.70215,-9,-9,-9,2021,9,0,50,0,1,0,0,14.507938,14.507938,.05,.05,0,0,0,0,0,0,0,0,0,1.8822798,0,57.33,53.46,43.71,56.91,8.333333333333334,1,1,0,0,2,5,5,1,1075,251540,-50200.871,109553.95,70132.477,0,0,4421.2158 +6753,8235,14699,14700,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7449336,6.8628025,27,3,-19.931641,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6859317,57.92,51.82,50.65,60.47,8.333333333333334,1,1,0,0,10,11,3,1,434,759092.56,731207.94,166998.14,0,0,0,1688.022 +6753,8235,14700,14699,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0265007,7.9935513,4.2005987,27,-3,62.059925,-9,-9,-9,2021,7,0,40,0,1,0,0,8.4589243,8.4589243,.05,.05,0,0,0,0,0,0,0,0,0,4.3688936,4.5365324,50.65,60.47,57.92,51.82,1.666666666666667,1,1,0,0,11,11,3,1,434,759092.56,731207.94,166998.14,0,0,0,1688.022 +6754,8236,14701,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.434082,8.4662247,0,0,0,-1076.2512,0,-9,2,2021,6,0,50,60,1,0,0,15.427239,15.427239,0,0,.05,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,1304,-23085.098,-77644.883,0,0,0,0,2405.3428 +6755,8237,14702,14703,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.390214,8.1810989,48,2,22.32122,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7443118,8.4415569,48.28,60.18,57.16,56.15,10,1,1,0,0,0,6,5,1,650,1824933.8,1318417.1,364937.25,0,0,0,5376.4795 +6755,8237,14703,14702,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8433237,7.9655061,48,-2,54.347301,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.777009,7.8612251,57.16,56.15,48.28,60.18,8.333333333333334,1,1,0,0,0,6,5,1,650,1824933.8,1318417.1,364937.25,0,0,0,5376.4795 +6756,8238,14704,14708,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,9.7853918,9.2907124,0,12,2,45.521206,0,-9,-9,2021,15,3,43,43,1,3,0,43.934582,43.934582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14705,-9,14708,14704,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.39496,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14706,-9,14708,14704,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-986.77582,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14707,-9,14708,14704,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1073.5479,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14708,14704,-9,-9,1,0,44,0,3,0,1,1,-9,0,5,8.7854061,8.9953775,0,21,-2,-23.49464,0,2,3,2021,6,0,55,50,1,0,0,16.791452,16.791452,.05,.05,0,0,0,0,0,2,0,0,0,4.8113737,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,13,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6757,8239,14709,14710,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.6671953,7.2654123,0,23,3,-90.096954,-9,-9,-9,2021,9,0,20,0,1,1,0,11.11711,11.11711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,35.5,54.11,7,2,3,0,0,1,11,2,1,1268,355123.47,291625.16,0,0,0,0,1729.1511 +6757,8239,14710,14709,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,0,0,0,24,-3,30.258404,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.5,54.11,52,55,8.333333333333334,2,3,0,0,0,11,2,1,1268,355123.47,291625.16,0,0,0,0,1729.1511 +6757,8240,14711,-9,14710,14709,1,0,21,0,2,0,2,2,1,0,4,6.9774828,7.0312219,0,0,0,-938.08936,-9,2,2,2021,11,0,20,0,1,2,1,6.1947675,6.1947675,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,1,11,2,1,783,59652.297,0,0,0,0,0,1363.5143 +6757,8241,14712,-9,14710,14709,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-744.98218,-9,3,2,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,11,2,1,2177,176131.55,0,0,0,0,0,0 +6758,8242,14713,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1027.0627,0,3,3,2021,14,1,0,0,3,1,0,0,0,0,0,0,1,0,77.931992,0,0,1,1,0,0,0,27.07,21.49,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,312,-7367.4116,0,0,0,0,1171.0612,679.63776 +6759,8243,14714,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7190981,8.8954382,0,0,0,-1023.8976,0,-9,2,2021,8,0,45,50,1,0,0,18.713188,18.713188,.05,.05,0,0,0,0,0,7,0,0,0,8.9240055,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,151,269814.63,13357.052,84864.141,114050.31,0,1169.3323,6304.2241 +6760,8244,14715,14718,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,12,0,113.52964,0,2,1,2021,21,9,0,50,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,62.49,55.09,3.333333333333333,1,1,1,0,8,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14716,-9,14715,14718,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.2697,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14717,-9,14715,14718,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1189,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14718,14715,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,6.3677616,6.0119276,0,12,0,-48.513596,0,3,3,2021,7,0,10,8,1,0,0,7.2103467,7.2103467,0,0,0,0,0,0,0,0,1,1,0,6.9611301,0,62.49,55.09,46.34,61.24,8.333333333333334,4,5,0,0,8,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6761,8245,14719,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-986.85455,0,2,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,739,38999.477,0,0,0,0,433.03317,1571.5027 +6762,8246,14720,14721,-9,-9,1,0,50,0,1,0,3,3,-9,0,2,0,0,0,31,-4,0,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.89,38.35,36.48,33.84,5,2,3,1,0,0,8,1,0,675,189889.97,47033.164,0,0,4663.4995,0,769.94958 +6762,8246,14721,14720,-9,-9,1,1,54,0,1,0,3,3,-9,0,1,0,0,0,29,4,0,0,-9,-9,2021,11,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.48,33.84,51.89,38.35,6.666666666666667,2,3,1,0,8,8,1,0,675,189889.97,47033.164,0,0,4663.4995,0,769.94958 +6762,8247,14722,-9,14720,14721,1,0,28,0,1,0,1,1,-9,0,3,8.2927198,8.016366,0,0,0,-981.37793,0,3,3,2021,13,1,37,39,1,1,1,12.143989,12.143989,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.31,50.67,-9,-9,8.333333333333334,2,3,0,1,9,8,5,0,454,-117599.02,37461.781,0,0,40519.137,4412.7744,1821.304 +6762,8248,14723,-9,14720,14721,1,0,33,0,1,0,1,1,-9,0,4,8.1960363,8.1248741,0,0,0,-1009.0726,0,3,3,2021,10,2,61,36,1,2,1,5.7195559,5.7195559,.05,.05,0,0,0,0,0,0,1,1,0,4.0234361,0,58.15,52.91,-9,-9,1.666666666666667,2,3,0,0,9,8,4,0,351,-82903.891,43765.742,0,0,-414.1821,1811.4297,2474.603 +6762,8249,14724,-9,14720,14721,1,1,21,0,1,0,1,1,1,0,3,0,0,0,0,0,-1010.3943,-9,3,3,2021,15,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.18,50.38,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,1017,-16005.409,0,0,0,0,3585.3303,0 +6763,8250,14725,14726,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,50,2,-68.828682,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9367883,0,56.5,48.33,53.1,52.62,8.333333333333334,1,1,0,0,0,2,2,1,837.5,460724.19,158728.92,186195.34,0,0,0,1594.2168 +6763,8250,14726,14725,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8010879,6.9659324,50,-2,-84.555817,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.7151222,53.1,52.62,56.5,48.33,8.333333333333334,1,1,0,0,0,2,2,1,837.5,460724.19,158728.92,186195.34,0,0,0,1594.2168 +6764,8251,14727,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.9060073,7.9826441,0,0,0,-1069.7152,0,1,1,2021,24,10,70,4,1,10,0,4.0155702,4.0155702,0,0,0,0,0,0,0,0,0,0,0,0,0,31.38,61.38,-9,-9,5,1,1,0,0,5,7,3,1,190,174315.75,0,0,0,0,0,1431.7703 +6765,8252,14728,14730,-9,-9,1,0,25,1,3,0,2,2,-9,0,5,0,0,0,3,-6,15.855454,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,48,58,10,1,1,0,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14729,-9,14728,14730,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.3699,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14730,14728,-9,-9,1,1,31,1,3,0,3,3,-9,0,4,7.3599753,7.5876498,0,3,6,158.93715,0,-9,-9,2021,11,0,37,38,1,2,0,5.0225883,5.0225883,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48,58,62.39,56.71,7,4,1,0,0,1,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14731,-9,14728,14730,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.536,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14732,-9,14728,14730,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6548,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6766,8253,14733,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0066786,7.1856256,0,0,-1016.0652,0,3,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4136977,7.0844851,38.39,40.89,-9,-9,5,1,1,0,0,0,7,2,1,2513,333165.72,227504.2,0,0,0,0,1773.7379 +6767,8254,14734,14735,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3106079,7.4567556,22,2,-71.540421,-9,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8103137,7.17242,57.03,48.06,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,679.5,1652995.6,882697,138674.5,0,0,0,4985.1577 +6767,8254,14735,14734,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,8.129324,8.2614775,0,1,-2,-35.414627,-9,2,2,2021,9,0,45,0,1,0,0,8.7375154,8.7375154,0,0,0,0,0,0,0,0,1,1,0,7.094491,0,59.43,58.05,57.03,48.06,10,1,1,0,0,12,12,4,1,679.5,1652995.6,882697,138674.5,0,0,0,4985.1577 +6768,8255,14736,14737,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.1899776,7.3262472,22,12,95.662224,0,3,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8273978,7.0205383,42,24,53,52,6.666666666666667,2,3,0,0,0,8,2,1,431.5,2124085,470800.13,641427.19,0,0,0,1097.7981 +6768,8255,14737,14736,-9,-9,1,0,59,0,0,0,1,1,-9,1,4,0,0,0,3,-12,-9.6587124,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,42,24,8,2,3,0,0,0,8,2,1,431.5,2124085,470800.13,641427.19,0,0,0,1097.7981 +6769,8256,14738,-9,14740,14739,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.521,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14739,14740,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3640451,8.1319599,0,8,1,-75.553719,0,2,2,2021,12,2,25,25,1,2,0,14.285101,14.285101,.05,.05,0,0,0,0,0,0,1,1,0,3.5546741,0,48.81,59.91,57.1,35.96,5,1,1,0,0,10,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14740,14739,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.4614382,8.3586931,0,8,-1,92.155869,0,1,1,2021,10,3,28,25,1,3,0,15.506405,15.506405,.05,.05,0,0,0,0,0,0,1,1,0,2.8578603,0,57.1,35.96,48.81,59.91,8.333333333333334,1,1,0,0,10,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14741,-9,14740,14739,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.35321,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6770,8257,14742,14743,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9124222,8.9222431,0,9,4,47.40546,0,-9,-9,2021,9,0,42,43,1,0,0,22.483732,22.483732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.75,56.99,8.333333333333334,1,1,0,0,7,2,5,1,1726.5,1615927.4,1449695.5,170218.66,68049.938,7023.5303,0,4430.0444 +6770,8257,14743,14742,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2332926,8.2384872,0,31,-4,-85.193604,0,2,2,2021,10,0,40,45,1,0,0,13.869806,13.869806,.05,.05,0,0,0,0,0,0,0,0,0,4.3094521,0,46.75,56.99,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1726.5,1615927.4,1449695.5,170218.66,68049.938,7023.5303,0,4430.0444 +6770,8258,14744,-9,14743,14742,1,0,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-835.06525,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.52190679,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,2,1,1,800,-276437.38,0,0,0,0,828.40009,465.63776 +6771,8259,14745,-9,14746,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.6597061,7.5092521,0,0,-1125.7106,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4080915,57.06,57.76,-9,-9,10,1,1,0,0,0,5,3,1,1325,258447.45,-13324.841,0,0,0,0,1115.5868 +6771,8260,14746,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.8707256,8.1517506,0,0,-916.04407,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,3.4802835,0,0,1,1,0,8.7072468,7.7594571,65,29.3,-9,-9,10,1,1,0,0,0,5,4,1,489,338204.81,335914.47,218016.25,0,0,0,2020.3273 +6772,8261,14747,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.4292173,7.3617396,0,0,-1000.4056,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.35318342,7.376349,59.18,38.87,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,130,530622.63,210752.89,274023.53,0,0,0,2315.6013 +6773,8262,14748,14749,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.3062692,7.1416917,44,9,2.0544643,0,1,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2759795,7.548274,49.44,43.52,53.14,45.74,6.666666666666667,1,1,0,0,8,8,3,1,890.5,272771.09,0,321730.75,0,0,0,2719.2642 +6773,8262,14749,14748,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,6.634232,7.0063214,5.9403176,44,0,-44.394531,0,2,1,2021,9,0,15,15,1,0,0,6.2149568,6.2149568,0,0,0,0,0,0,0,0,1,1,0,6.3303609,0,53.14,45.74,49.44,43.52,8.333333333333334,1,1,0,0,13,8,3,1,890.5,272771.09,0,321730.75,0,0,0,2719.2642 +6774,8263,14750,14752,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,4,3,-8.829689,0,-9,-9,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.1,49.39,8.333333333333334,1,1,0,0,3,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6774,8263,14751,-9,14750,14752,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.6791,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6774,8263,14752,14750,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0184107,8.9790373,0,4,-3,15.72358,0,1,1,2021,10,0,37,36,1,0,0,30.410524,30.410524,0,0,0,0,0,0,0,0,1,1,0,4.5083785,0,54.1,49.39,54.74,57.22,8.333333333333334,4,2,0,0,12,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6775,8264,14753,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.7733955,9.1444035,0,0,0,-986.20105,0,2,2,2021,12,1,38,38,1,1,0,22.663273,22.663273,.05,.05,0,0,0,0,0,0,1,1,0,3.2446289,0,36.52,56.27,-9,-9,5,1,1,0,0,12,8,5,1,370,419456.28,131638.92,0,0,0,0,2542.8005 +6776,8265,14754,14755,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5080099,8.5935116,0,28,-7,-68.932755,0,3,-9,2021,11,0,19,58,1,0,0,28.973156,28.973156,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.96,34.45,10,1,1,0,0,7,11,5,1,293.5,309010.44,360880.81,131216.05,73178.125,-141.06067,0,3851.5308 +6776,8265,14755,14754,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.8682504,8.1108932,0,16,7,-122.10347,0,3,3,2021,8,0,38,37,1,0,0,8.3385429,8.3385429,.05,.05,0,0,0,0,0,0,1,1,0,.26553249,0,58.96,34.45,57.16,56.15,6.666666666666667,1,1,0,0,6,11,5,1,293.5,309010.44,360880.81,131216.05,73178.125,-141.06067,0,3851.5308 +6777,8266,14756,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,2,8.1191854,8.1432991,0,0,0,-990.02002,0,-9,-9,2021,10,0,40,40,1,0,0,7.736805,7.736805,0,0,0,0,0,0,0,0,0,0,0,0,0,28.32,60.13,-9,-9,5,1,1,0,0,6,11,4,0,428,-285002,0,0,0,0,0,1904.215 +6778,8267,14757,14758,-9,-9,1,0,34,0,0,0,2,2,-9,1,2,8.4454889,8.1286392,0,11,-12,-85.884178,0,2,2,2021,9,0,50,45,1,0,0,8.47258,8.47258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.71,19.33,54.96,53.17,8.333333333333334,1,1,0,0,12,9,5,1,918,1736201.1,1264795.3,295347.81,86644.781,0,2044.9733,4048.0503 +6778,8267,14758,14757,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7945776,8.9108381,0,11,12,-35.596573,0,2,2,2021,6,0,37,38,1,0,0,21.455841,21.455841,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,55.71,19.33,8.333333333333334,1,1,0,0,13,9,5,1,918,1736201.1,1264795.3,295347.81,86644.781,0,2044.9733,4048.0503 +6779,8268,14759,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.9560099,8.9011421,0,0,0,-1077.734,0,2,2,2021,6,0,37,80,1,0,0,23.613667,23.613667,.05,.05,0,0,0,0,0,0,1,1,0,4.6843643,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,316,740784.5,659831.69,135680.39,0,0,419.97348,3140.0886 +6780,8269,14760,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.0300193,7.7229781,0,0,-925.84741,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,31.485071,0,0,1,1,0,0,7.131372,51.32,37.6,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,639,466679.91,185241.95,134640.81,33623.871,0,0,1975.2926 +6781,8270,14761,14762,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.7200561,8.1789846,6.7700086,43,2,-12.645695,0,3,3,2021,7,1,37,37,1,1,0,6.2758074,6.2758074,0,0,0,0,0,0,0,0,0,0,0,0,7.1838193,57.18,45.76,44.53,54.03,8.333333333333334,1,1,0,0,9,7,5,0,654,2057495.8,1310856.4,374967.34,0,0,0,3177.6143 +6781,8270,14762,14761,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4012136,8.5003452,0,43,-2,56.973434,0,3,3,2021,15,3,40,43,1,3,0,17.860626,17.860626,0,0,0,0,0,0,0,2,0,0,0,2.3633933,0,44.53,54.03,57.18,45.76,6.666666666666667,1,1,0,0,9,7,5,0,654,2057495.8,1310856.4,374967.34,0,0,0,3177.6143 +6781,8271,14763,-9,14762,14761,1,1,35,0,0,0,2,2,-9,0,3,7.7181768,7.7014108,0,0,0,-1103.051,0,2,3,2021,11,0,60,52,1,0,1,4.495532,4.495532,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,243,-83907.063,118752.37,0,0,0,0,1847.5027 +6782,8272,14764,14765,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9762292,5.8697338,44,2,17.230015,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9758582,5.7419982,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,10,4,1,655,1303967.3,729446.63,235954.78,0,0,0,3803.7778 +6782,8272,14765,14764,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5250416,8.7690811,7,-2,-218.41429,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2679486,8.3581543,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,655,1303967.3,729446.63,235954.78,0,0,0,3803.7778 +6783,8273,14766,14767,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.1341524,7.0498815,0,33,2,-48.551933,0,3,3,2021,16,5,28,30,1,5,0,4.578229,4.578229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.38,41.43,54,53,8.333333333333334,1,1,0,1,9,4,4,1,615,411752.19,277575.25,0,0,0,0,2263.3035 +6783,8273,14767,14766,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.003562,8.0820608,0,6,-2,-105.87997,0,-9,-9,2021,9,0,77,77,1,0,0,3.6812327,3.6812327,.05,.05,0,0,0,0,0,0,0,0,0,5.1140647,0,54,53,51.38,41.43,8,1,1,0,0,1,4,4,1,615,411752.19,277575.25,0,0,0,0,2263.3035 +6784,8274,14768,14769,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,42,8,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.83,43.24,38.91,52.63,5,1,1,0,0,0,12,1,0,428.5,273473.06,28450.002,133864,0,0,0,1103.1443 +6784,8274,14769,14768,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,42,-8,0,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.91,52.63,43.83,43.24,5,1,1,0,0,0,12,1,0,428.5,273473.06,28450.002,133864,0,0,0,1103.1443 +6785,8275,14770,14772,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,10.048882,9.8028412,0,7,4,-165.79367,0,3,3,2021,12,0,45,12,1,0,0,46.477829,46.477829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,53.5,38.28,57.07,5,1,1,0,0,7,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6785,8275,14771,-9,14772,14770,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.69977,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6785,8275,14772,14770,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,8.2801962,8.0204649,0,7,-4,24.876675,0,2,2,2021,12,0,45,35,1,0,0,9.8272591,9.8272591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,45.18,53.5,3.333333333333333,4,2,0,0,7,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6786,8276,14773,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,8.1270647,8.1115694,0,0,-983.75574,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9953356,8.2646456,57.16,56.15,-9,-9,10,1,1,0,0,0,6,4,1,2435,1019604.3,345630,330913,0,0,0,4591.2856 +6787,8277,14774,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4084864,8.478735,0,0,0,-995.22455,0,2,3,2021,15,5,45,45,1,5,0,11.673276,11.673276,.05,.05,0,0,0,0,0,0,1,1,0,8.7678528,0,43.76,50.48,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,63,161327.94,-10616.249,132008.38,72058.234,0,2207.3535,4457.7212 +6788,8278,14775,14776,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.3787436,6.3748164,60,3,81.421539,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2874718,53,46,48.67,21.29,0,2,3,0,1,0,7,2,1,1545.5,485575.5,-51649.289,500343.78,0,0,0,992.9458 +6788,8278,14776,14775,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-57.433636,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,21.29,53,46,8.333333333333334,2,3,0,0,0,7,2,1,1545.5,485575.5,-51649.289,500343.78,0,0,0,992.9458 +6789,8279,14777,14778,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5371404,6.4364653,9,0,53.257133,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.432448,0,20.746498,42,1,1,0,6.5943508,6.5693502,50.31,22.09,21.72,22.57,8.333333333333334,1,1,0,0,0,4,2,1,346.5,859174,306226.44,122935.03,0,0,0,4035.2583 +6789,8279,14778,14777,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.4140434,6.2964807,51,0,-122.35828,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,3.2353642,0,20.694782,0,1,1,0,5.8683195,6.45889,21.72,22.57,50.31,22.09,3.333333333333333,1,1,0,0,5,4,2,1,346.5,859174,306226.44,122935.03,0,0,0,4035.2583 +6790,8280,14779,14780,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.385541,8.1989202,0,4,0,23.576887,0,-9,-9,2021,10,0,84,44,1,0,0,5.3761649,5.3761649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.15,54.77,8.333333333333334,1,1,0,0,2,4,5,1,1970,55243.473,8836.3213,83110.492,55515.063,0,0,3911.1599 +6790,8280,14780,14779,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.2705374,8.0129519,0,4,0,62.681641,0,2,2,2021,6,0,90,103,1,0,0,4.8297029,4.8297029,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,48.15,54.77,54.2,57.49,6.666666666666667,1,1,0,0,6,4,5,1,1970,55243.473,8836.3213,83110.492,55515.063,0,0,3911.1599 +6791,8281,14781,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.4839854,7.6251297,0,0,-821.69653,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1062608,7.678638,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,293,502889.72,438097.13,108685.63,0,0,0,1930.2092 +6792,8282,14782,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,8.0281544,7.6983824,0,0,-917.33289,0,2,2,2021,6,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.7676053,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,872,220362.97,-25291.422,601010,392657.25,0,137.49124,909.36432 +6793,8283,14783,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1068.4828,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,2.5730381,28.912071,18.445536,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,1,1,1,1331,56648.66,0,0,0,0,0,1085.1849 +6794,8284,14784,14785,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.7830968,6.9273548,7,-3,-17.287361,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2279782,6.9491873,66.54000000000001,14.4,55.85,27.24,8.333333333333334,1,1,0,0,0,4,2,1,1233,352782.94,172682.08,223715.56,0,0,0,1664.116 +6794,8284,14785,14784,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,7,3,-5.7688756,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,1.9885805,0,19.113726,0,1,1,0,0,0,55.85,27.24,66.54000000000001,14.4,10,1,1,0,0,0,4,2,1,1233,352782.94,172682.08,223715.56,0,0,0,1664.116 +6795,8285,14786,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,5.2852674,4.8319688,0,0,-929.74805,0,3,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.9421384,1.1631939,20.287146,0,1,1,0,0,5.4630494,49.01,28.07,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,3965,55600.656,62942.676,0,0,0,0,2035.649 +6796,8286,14787,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.3820925,8.625843,0,0,0,-1171.3448,0,-9,-9,2021,10,1,20,16,1,1,0,25.496323,25.496323,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,42.31,-9,-9,5,2,3,0,0,7,2,4,0,150,3359137.5,2173531.5,1241748,75668.07,0,0,2886.1333 +6796,8286,14788,-9,14787,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-933.41052,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,4,0,150,3359137.5,2173531.5,1241748,75668.07,0,0,2886.1333 +6796,8287,14789,-9,14787,-9,1,0,25,0,1,0,1,1,-9,0,3,8.0614967,8.0106401,0,0,0,-1058.4196,0,2,-9,2021,9,0,38,35,1,0,1,7.5879574,7.5879574,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,0,0,4,2,4,0,848,3130.6714,-9062.8438,0,0,0,0,1702.2377 +6796,8288,14790,-9,14787,-9,1,1,21,0,1,0,1,1,-9,0,4,7.5392046,7.5468802,0,0,0,-891.06274,0,2,-9,2021,6,1,38,6,1,1,1,6.9715762,6.9715762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,56.11,-9,-9,10,2,3,0,0,5,2,3,0,684,58026.66,57186.445,0,0,0,0,2788.0103 +6797,8289,14791,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.4111347,8.5660133,0,0,0,-985.01544,0,-9,-9,2021,11,1,50,50,1,1,0,11.139267,11.139267,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,46.45,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,497,-101929.8,0,0,0,0,0,1578.6952 +6798,8290,14792,14794,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3931742,8.12679,0,9,-7,-69.356049,0,2,2,2021,7,0,36,36,1,0,0,15.078167,15.078167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,54.15,48.02,8.333333333333334,1,1,0,0,7,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6798,8290,14793,-9,14792,14794,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.2643,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6798,8290,14794,14792,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.4388561,8.2690582,0,9,7,-67.371696,0,2,1,2021,8,1,43,44,1,1,0,10.234283,10.234283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.15,48.02,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6799,8291,14795,14796,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,9,-5,-70.657387,0,1,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.77,58.91,36.18,45.6,6.666666666666667,2,3,0,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14796,14795,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.3117018,9.4501143,0,6,5,43.242332,0,-9,-9,2021,14,2,60,45,1,2,0,19.2271,19.2271,.05,.05,0,0,0,0,0,0,1,1,0,7.5842385,0,36.18,45.6,42.77,58.91,3.333333333333333,2,3,0,0,9,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14797,-9,14795,14796,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.40826,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14798,-9,14795,14796,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.80408,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6800,8292,14799,14800,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0224543,8.7496777,0,9,-2,60.65461,-9,-9,-9,2021,12,2,40,0,1,2,0,21.048203,21.048203,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,35.01,54.34,8.333333333333334,1,1,0,0,9,11,5,1,660,-12104.724,-61752.449,60385.117,0,0,0,2743.6809 +6800,8292,14800,14799,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,9,2,143.99269,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.01,54.34,54.37,54.8,8.333333333333334,1,1,0,0,0,11,5,1,660,-12104.724,-61752.449,60385.117,0,0,0,2743.6809 +6800,8293,14801,-9,14800,14799,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-963.41907,-9,2,2,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.23,64.78,-9,-9,1.666666666666667,1,1,1,1,1,11,1,1,442,115679.36,0,0,0,0,0,745.65778 +6800,8294,14802,-9,14800,14799,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1095.1531,-9,2,2,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.76,59.08,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,4910,-48911.039,0,0,0,0,0,0 +6801,8295,14803,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1477995,8.4312019,0,0,0,-1063.6981,0,2,2,2021,9,0,50,50,1,0,0,10.083796,10.083796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,125,115914.59,40712.914,0,0,-817.85315,0,1094.9449 +6802,8296,14804,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,5.9118576,6.1914372,0,0,0,-851.604,0,3,2,2021,11,0,20,25,1,0,0,2.6915004,2.6915004,0,0,0,0,0,0,0,0,1,1,0,0,0,43.98,58.43,-9,-9,3.333333333333333,3,4,0,1,7,8,2,0,241,200223.59,69068.336,0,0,0,0,870.5199 +6803,8297,14805,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.6322,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.32,46.98,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1354,95514.414,0,0,0,0,0,918.11078 +6804,8298,14806,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.5755901,6.4155598,0,0,-1077.5957,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.63258606,6.7369637,52.15,15.61,-9,-9,5,1,1,0,0,0,10,2,1,174,868816.63,487699.03,260909.66,0,0,0,941.70978 +6804,8299,14807,-9,14806,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1118.7828,0,3,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,42,1,1,0,2.2565274,0,25.03,56.31,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,855,0,0,0,0,0,0,-96.497787 +6804,8300,14808,-9,14806,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.98639,0,3,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2781653,0,32.19,34.56,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,475,28450.977,0,0,0,0,0,946.62988 +6804,8301,14809,14810,14806,-9,1,1,37,0,0,0,3,3,-9,0,3,8.2819681,7.9074244,0,2,1,-20.383997,0,3,-9,2021,15,2,42,41,1,2,0,9.002552,9.002552,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.91,59.89,1.666666666666667,1,1,0,0,11,10,4,1,752.5,13798.484,-68384.281,0,0,12163.536,3756.0803,2696.6172 +6804,8301,14810,14809,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.7597651,7.8539748,0,2,-1,-87.881676,0,2,2,2021,11,0,39,37,1,0,0,9.1470432,9.1470432,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,1.666666666666667,1,1,0,0,12,10,4,1,752.5,13798.484,-68384.281,0,0,12163.536,3756.0803,2696.6172 +6805,8302,14811,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1009.4171,0,3,3,2021,36,12,0,31,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.14,61.5,-9,-9,0,1,1,0,1,8,13,1,1,557,-3916.9792,0,0,0,0,0,0 +6806,8303,14812,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.9980383,8.7594004,0,0,0,-1008.468,0,2,2,2021,7,1,47,44,1,1,0,20.440063,20.440063,.05,.05,0,0,0,0,0,0,1,1,0,1.2458349,0,55.2,57.22,-9,-9,10,1,1,0,0,7,12,5,1,507,290743.13,152406.45,73449.242,95439.844,2295.5371,3366.9768,3107.0083 +6807,8304,14813,-9,14815,14817,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.51093,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14814,-9,14815,14817,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-947.80579,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14815,14817,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.4907646,8.3574724,0,20,-3,9.3553181,0,2,2,2021,21,9,15,11,1,9,0,34.979198,34.979198,0,0,0,0,0,0,0,0,1,1,0,0,0,28.65,57.05,54.2,57.49,8.333333333333334,1,1,0,0,6,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14816,-9,14815,14817,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6012,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14817,14815,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.0019941,9.1531992,0,20,3,-10.226953,0,2,2,2021,11,0,52,52,1,0,0,16.103844,16.103844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,28.65,57.05,8.333333333333334,1,1,0,0,8,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6808,8305,14818,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,8.1298075,8.4356585,0,0,-965.8266,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3757372,8.197546,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1471,729090.25,239526.8,382656.44,0,0,0,3641.7239 +6809,8306,14819,14820,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8362336,7.0027161,58,-3,1.3181437,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8637743,6.8690319,29.48,53.65,53,47,6.666666666666667,1,1,0,0,13,4,3,1,784,494888.56,358391.88,180467.03,0,0,0,2016.3037 +6809,8306,14820,14819,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.8286977,7.2086926,58,3,84.810654,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7209198,7.2675586,53,47,29.48,53.65,7,1,1,0,0,0,4,3,1,784,494888.56,358391.88,180467.03,0,0,0,2016.3037 +6810,8307,14821,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-988.6543,0,2,2,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,0,40.544155,0,0,1,1,0,0,0,30.01,20.17,-9,-9,1.666666666666667,1,1,0,1,0,11,1,1,668,56258.859,0,0,0,0,0,1325.5973 +6811,8308,14822,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-868.60492,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5649128,0,56.29,23.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,433,15963.773,0,0,0,0,0,949.36133 +6812,8309,14823,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,2,0,0,0,0,0,-827.55768,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,14.6,-9,-9,5,1,1,0,1,0,4,1,0,84,153919.73,365222.5,0,0,0,0,142.46698 +6813,8310,14824,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.8410811,7.4420671,0,0,-905.62799,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.313314,51.5,24.61,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,2234,783125.25,230735.56,466541.22,0,0,0,1651.5944 +6814,8311,14825,-9,14826,14828,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.55127,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14826,14828,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.6361942,7.5309048,0,13,2,-12.598913,0,-9,-9,2021,12,0,23,23,1,0,0,8.3977518,8.3977518,.05,.05,0,0,0,0,0,0,1,1,0,2.2855184,0,52.51,54.26,45.91,59.89,8.333333333333334,1,1,0,0,14,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14827,-9,14826,14828,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1012.3724,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14828,14826,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.0739536,8.0667086,0,15,-2,-51.642456,0,2,2,2021,12,0,75,75,1,0,0,4.3051667,4.3051667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.51,54.26,3.333333333333333,1,1,0,0,14,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6815,8312,14829,14830,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.2259941,7.3818865,8,-5,-135.63754,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2096186,49.41,58.28,56.56,45.35,10,1,1,0,0,0,10,3,1,804.5,2351327.5,511059.81,591616,0,0,0,4284.6582 +6815,8312,14830,14829,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.8597031,7.5942798,8,5,-37.096981,0,2,2,2021,8,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6786447,7.9208989,56.56,45.35,49.41,58.28,8.333333333333334,1,1,0,0,11,10,3,1,804.5,2351327.5,511059.81,591616,0,0,0,4284.6582 +6816,8313,14831,-9,14834,14833,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.3606,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14832,-9,14834,14833,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.40735,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14833,14834,-9,-9,1,1,43,0,3,0,3,3,-9,0,5,4.747632,5.1347656,0,15,9,-60.510426,0,-9,-9,2021,7,0,16,16,1,0,0,.84370691,.84370691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,58,45.32,54.77,10,1,1,0,1,10,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14834,14833,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,4.4383397,4.8845115,0,15,0,-61.638798,0,1,2,2021,11,0,2,2,1,0,0,7.4394422,7.4394422,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,54.77,54,58,8.333333333333334,1,1,0,0,10,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14835,-9,14834,14833,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1072.6202,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6817,8314,14836,14837,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,2,-2,0,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,40.31,14.24,5,1,1,0,0,0,13,1,0,506,-15537.807,0,0,0,0,0,1818.8877 +6817,8314,14837,14836,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,2,2,0,0,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,49.04,55.86,3.333333333333333,1,1,0,0,0,13,1,0,506,-15537.807,0,0,0,0,0,1818.8877 +6818,8315,14838,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.8211527,8.1251097,5.9631739,0,0,-1025.3763,0,2,3,2021,14,4,8,12,1,4,0,60.940651,60.940651,.05,.05,0,0,0,0,0,0,1,1,0,7.3322201,0,43.7,47.64,-9,-9,1.666666666666667,4,2,0,0,7,9,3,1,1029,664937.25,284044.66,422469.53,29483.139,0,0,2630.1169 +6819,8316,14839,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.9021511,4.0079393,0,0,-943.26465,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4353676,3.6419752,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,1930,90590.695,0,192245.8,0,0,0,-33.702362 +6820,8317,14840,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2854128,9.0943708,0,0,0,-1078.4269,0,2,1,2021,10,0,39,38,1,0,0,26.632008,26.632008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,1616,601448.5,538410.63,0,0,542.63971,0,3252.7412 +6820,8317,14841,-9,14840,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1189.0784,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,1616,601448.5,538410.63,0,0,542.63971,0,3252.7412 +6821,8318,14842,-9,-9,14843,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-840.57343,0,-9,2,2021,6,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.29,43.31,-9,-9,10,1,1,1,0,0,2,1,0,624.5,56659.164,9879.4492,0,0,0,0,929.36755 +6821,8318,14843,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1129.0299,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.14,24.96,-9,-9,5,1,1,1,0,0,2,1,0,624.5,56659.164,9879.4492,0,0,0,0,929.36755 +6822,8319,14844,14845,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.2142324,8.1341095,0,6,2,-45.953266,0,-9,-9,2021,11,0,45,40,1,0,0,9.5026474,9.5026474,0,0,.05,0,0,0,0,0,0,0,0,0,0,53.22,55.2,22.42,51.76,8.333333333333334,1,1,0,0,12,9,5,1,741,768422.25,77346.055,743564.13,86988.156,0,8070.7822,3053.3936 +6822,8319,14845,14844,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7098446,8.1883297,0,6,-2,71.098602,0,2,2,2021,23,9,76,39,1,9,0,4.8718891,4.8718891,0,0,0,0,0,0,0,0,0,0,0,0,0,22.42,51.76,53.22,55.2,1.666666666666667,1,1,0,1,12,9,5,1,741,768422.25,77346.055,743564.13,86988.156,0,8070.7822,3053.3936 +6823,8320,14846,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.4151525,6.9757748,0,0,-973.45569,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3274088,51,48,-9,-9,7,1,1,0,0,2,13,3,1,1424,700972.31,460497.94,106630.24,-10509.895,0,0,1593.7025 +6824,8321,14847,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-939.98541,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.2,25.69,-9,-9,10,1,1,0,0,3,9,1,0,343,419192.38,0,147462.88,0,0,0,2538.886 +6825,8322,14848,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9591427,8.8693876,0,0,0,-1021.5361,0,2,2,2021,7,0,47,47,1,0,0,17.312975,17.312975,.05,.05,0,0,0,0,0,0,0,0,0,.79495621,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,414,228983.83,170704.8,317572.22,185752.08,0,0,3669.325 +6826,8323,14849,14850,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.2857456,8.0245533,53,3,22.348057,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1394482,8.0333261,52.62,54.33,55.12,42.1,8.333333333333334,1,1,0,0,4,9,4,1,1205.5,862443.25,536971.13,314908.75,0,0,0,4026.0854 +6826,8323,14850,14849,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8009176,6.81916,53,-3,-25.051523,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9475584,6.5489531,55.12,42.1,52.62,54.33,6.666666666666667,1,1,0,0,0,9,4,1,1205.5,862443.25,536971.13,314908.75,0,0,0,4026.0854 +6827,8324,14851,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,0,0,-901.92322,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.18,60.36,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,364,0,0,0,0,0,0,440.05374 +6828,8325,14852,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7705922,5.5951147,0,0,-893.39154,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4320927,5.7926869,58.22,40.76,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,189,1196953.3,69895.195,607963.69,0,0,0,732.08807 +6829,8326,14853,14854,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2351446,6.5259781,47,-3,15.191331,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5573974,6.3925505,42.22,56.11,62.27,48.47,3.333333333333333,1,1,0,0,0,5,2,1,386.5,371119.53,257296.38,86349.703,0,0,0,2227.3877 +6829,8326,14854,14853,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.9392152,5.7516456,47,3,-46.46973,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9147534,6.0351338,62.27,48.47,42.22,56.11,8.333333333333334,1,1,0,0,9,5,2,1,386.5,371119.53,257296.38,86349.703,0,0,0,2227.3877 +6830,8327,14855,14856,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.8457332,7.8716416,43,-1,-63.177235,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5948572,58.67,39.12,60.02,56.42,8.333333333333334,1,1,0,0,11,6,3,1,1170,1825372.1,1162514.5,442170.88,0,0,600.83484,3371.5022 +6830,8327,14856,14855,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.5174117,6.5092835,43,1,28.375032,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8643947,60.02,56.42,58.67,39.12,8.333333333333334,1,1,0,0,3,6,3,1,1170,1825372.1,1162514.5,442170.88,0,0,600.83484,3371.5022 +6831,8328,14857,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1037.5775,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2892032,0,56.18,45.61,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,1111,469339.22,91479.484,474282.84,176115.34,0,5871.439,131.58899 +6832,8329,14858,14859,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,9.2922812,8.8033037,0,7,3,25.632851,0,-9,-9,2021,5,0,45,43,1,0,0,22.57946,22.57946,.05,.05,0,0,0,0,0,0,0,0,0,1.8758588,0,57.06,57.76,54.79,55.86,10,1,1,0,0,9,7,5,1,1287.5,162560.11,-10045.672,392924.84,337198.69,0,0,5937.2236 +6832,8329,14859,14858,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.0167332,8.839097,0,7,-3,77.779091,0,1,1,2021,5,0,35,35,1,0,0,29.690006,29.690006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,2,3,0,0,6,7,5,1,1287.5,162560.11,-10045.672,392924.84,337198.69,0,0,5937.2236 +6833,8330,14860,14861,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4348259,6.091269,10,-6,-7.8999057,0,3,2,2021,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6797314,6.1202965,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,10,5,2,1,603.5,675977.25,20179.057,262962,0,0,0,1758.1697 +6833,8330,14861,14860,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.8969269,4.8217945,10,6,188.71855,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4292884,4.964324,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,3,5,2,1,603.5,675977.25,20179.057,262962,0,0,0,1758.1697 +6834,8331,14862,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.2650347,8.5838079,0,0,-1017.1,0,2,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2734513,8.6611824,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,775,221076.55,-29458.381,366037.19,59001.113,11786.608,0,3517.2891 +6835,8332,14863,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1116.9728,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9206986,0,45.4,29.58,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1557,-5297.4204,0,0,0,0,0,1794.9695 +6836,8333,14864,14865,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1442785,8.30548,41,0,58.520859,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8090868,8.4858532,49.2,47.5,57.34,50.6,6.666666666666667,1,1,0,0,6,9,4,1,1190,2073768.5,818437.94,984095.5,0,0,0,4989.623 +6836,8333,14865,14864,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7843924,6.5802798,41,0,11.99561,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2920332,6.7456155,57.34,50.6,49.2,47.5,8.333333333333334,1,1,0,0,0,9,4,1,1190,2073768.5,818437.94,984095.5,0,0,0,4989.623 +6837,8334,14866,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,9.4972849,9.4582815,0,0,0,-909.08447,-9,2,2,2021,20,8,70,0,1,8,0,23.49966,23.49966,.05,.05,0,0,0,0,0,0,1,1,0,.18625863,0,28.33,62.63,-9,-9,1.666666666666667,1,1,0,1,6,4,5,0,525,411894.72,192343.78,130869.95,120251.08,0,0,8175.6357 +6838,8335,14867,-9,14869,14868,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.98889,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6838,8335,14868,14869,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.283246,8.4271851,0,13,16,20.473763,0,-9,-9,2021,9,0,43,37,1,0,0,9.4075365,9.4075365,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.75,48.57,52.54,48.71,10,1,1,0,0,15,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6838,8335,14869,14868,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,17,-16,27.9764,0,3,3,2021,10,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.54,48.71,58.75,48.57,5,1,1,0,0,14,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6839,8336,14870,-9,14871,14874,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-863.47552,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14871,14874,-9,-9,1,0,27,1,3,0,3,3,-9,0,2,0,0,0,2,-13,77.655327,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.69,33.87,52.82,53.97,5,1,1,0,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14872,-9,14871,14874,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-930.95215,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14873,-9,14871,14874,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-851.75861,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14874,14871,-9,-9,1,1,40,1,3,0,2,2,-9,0,4,8.9582062,8.7751236,0,2,13,91.346672,0,2,2,2021,9,0,48,41,1,0,0,17.383718,17.383718,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,44.69,33.87,6.666666666666667,1,1,0,0,4,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6840,8337,14875,14876,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.7443628,7.5521274,34,6,-85.332474,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,45.601601,0,0,1,1,0,0,7.6841731,37.6,14.31,27.09,51.08,0,1,1,0,0,0,6,3,0,1158,406789.5,335475.94,141362.69,0,0,0,2592.9863 +6840,8337,14876,14875,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,33,-6,56.832867,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.09,51.08,37.6,14.31,1.666666666666667,1,1,0,0,2,6,3,0,1158,406789.5,335475.94,141362.69,0,0,0,2592.9863 +6841,8338,14877,14878,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.245285,7.6624022,54,0,-60.304176,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5656323,50.14,36.45,62.42,32.41,6.666666666666667,1,1,0,0,0,5,3,1,619,797887.38,438351.28,229082.88,0,0,1151.2815,1796.4447 +6841,8338,14878,14877,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,54,0,-126.46939,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9413753,0,62.42,32.41,50.14,36.45,10,1,1,0,0,0,5,3,1,619,797887.38,438351.28,229082.88,0,0,1151.2815,1796.4447 +6842,8339,14879,14880,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-3,-99.607635,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0501144,0,52,45,38.33,46.98,8,1,1,0,0,0,10,2,1,1009,355738.91,27766.369,220528.75,0,0,0,1537.126 +6842,8339,14880,14879,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,6.1062803,5.9518018,62,3,-20.041445,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2899418,6.0905542,38.33,46.98,52,45,10,1,1,0,0,0,10,2,1,1009,355738.91,27766.369,220528.75,0,0,0,1537.126 +6843,8340,14881,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.5216255,8.760931,0,0,0,-1063.4094,0,3,-9,2021,8,0,37,38,1,0,0,16.480783,16.480783,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,145,65064.242,64473.605,0,0,742.16467,0,2121.8477 +6844,8341,14882,14884,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.2260199,9.215559,0,6,1,15.721279,0,2,2,2021,6,0,40,40,1,0,0,28.738297,28.738297,0,0,0,0,0,0,0,0,1,1,0,8.777914,0,57.06,57.76,62.39,56.71,0,1,1,0,0,6,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14883,-9,14882,14884,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4578,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14884,14882,-9,-9,1,1,39,0,2,0,3,3,-9,0,5,0,0,0,6,-1,52.472519,0,3,2,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5301828,0,62.39,56.71,57.06,57.76,10,1,1,0,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14885,-9,14882,14884,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.62048,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6845,8342,14886,14887,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,40,2,37.122265,0,3,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,43.447384,0,0,1,1,0,0,0,51.26,36.16,45.07,38.73,0,1,1,0,0,0,1,2,0,766,62178.5,115397.19,0,0,0,0,946.72791 +6845,8342,14887,14886,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.8458724,6.033772,40,-2,76.278168,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.8693438,5.9541626,45.07,38.73,51.26,36.16,5,1,1,0,0,0,1,2,0,766,62178.5,115397.19,0,0,0,0,946.72791 +6846,8343,14888,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.6743999,7.4519224,0,0,-887.09631,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5140705,8.0926228,40.87,46.49,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1419,812285.19,254994.31,313946.09,0,0,0,2195.5923 +6847,8344,14889,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9733458,7.9257088,5.6646399,0,0,-977.17395,0,2,1,2021,10,0,50,60,1,0,0,7.5682077,7.5682077,.05,.05,0,0,0,0,0,0,1,1,0,0,6.3032727,51.47,53.17,-9,-9,5,1,1,0,0,8,7,4,1,321,294930.22,-35290.359,288686.84,168306.63,0,0,1636.9817 +6847,8344,14890,-9,14889,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1102.4066,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1616371,0,48,59,-9,-9,7,1,1,0,0,0,7,4,1,321,294930.22,-35290.359,288686.84,168306.63,0,0,1636.9817 +6848,8345,14891,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,9.7388353,9.3179274,0,0,0,-985.52203,0,2,1,2021,11,4,42,49,1,4,0,53.293674,53.293674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,60.44,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,880,351517.56,57087.879,269613.63,34336.145,0,0,6247.5098 +6849,8346,14892,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.8918467,5.8380651,0,0,-972.34662,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9173808,34.17,58.8,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,614,265126.5,-81939.688,0,0,0,0,-100.93694 +6850,8347,14893,-9,14896,14894,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.3322,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14894,14896,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.3875809,9.3801298,0,10,4,20.459005,0,2,2,2021,10,2,43,37,1,2,0,28.955173,28.955173,.05,.05,0,0,0,0,0,0,1,1,0,7.7504082,0,40.75,58.26,43.67,61.06,8.333333333333334,1,1,0,0,11,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14895,-9,14896,14894,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.8311,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14896,14894,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.1844063,7.3778653,0,10,-4,113.0397,0,2,2,2021,9,1,25,16,1,1,0,6.8048368,6.8048368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,40.75,58.26,10,1,1,0,0,10,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6851,8348,14897,-9,14898,14899,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.63159,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8348,14898,14899,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.5327487,7.3581839,0,27,-1,75.749268,0,2,2,2021,8,1,25,25,1,1,0,9.3517008,9.3517008,0,0,0,0,0,0,0,0,1,1,0,0,0,41.4,47.36,44.53,56.37,6.666666666666667,1,1,0,0,9,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8348,14899,14898,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,27,1,19.79455,0,-9,-9,2021,7,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.53,56.37,41.4,47.36,8.333333333333334,1,1,1,0,9,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8349,14900,-9,14898,14899,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-964.9408,-9,3,2,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,3,9,1,1,256,0,0,0,0,0,0,302.59448 +6852,8350,14901,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0147438,8.6062737,0,0,0,-918.24121,0,3,3,2021,8,1,43,37,1,1,0,18.355076,18.355076,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,13,10,5,1,564,629162.25,500603.56,145834.25,0,0,0,1675.9385 +6853,8351,14902,14903,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.111949,7.8521366,0,9,0,-89.754295,0,2,1,2021,13,1,42,47,1,1,0,10.050143,10.050143,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,42.71,54.48,5,1,1,0,0,12,9,4,0,708,45360.078,99979.766,0,0,10771.299,6253.3169,2388.7588 +6853,8351,14903,14902,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.6833801,7.5044532,0,9,0,-7.2709646,0,-9,-9,2021,15,3,40,40,1,3,0,6.3854098,6.3854098,.05,.05,0,0,0,0,0,2,0,0,0,0,0,42.71,54.48,38.22,58.43,5,1,1,0,0,8,9,4,0,708,45360.078,99979.766,0,0,10771.299,6253.3169,2388.7588 +6854,8352,14904,14905,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.7436857,8.7670317,0,1,-1,-12.162302,0,2,2,2021,6,1,40,42,1,1,0,15.317187,15.317187,0,0,0,0,0,0,0,0,0,0,0,4.7149239,0,47.23,58.08,54.2,57.49,10,1,1,0,0,10,5,5,1,903,139685.2,73039.109,160473.72,130668.72,8025.248,1129.0486,4115.4375 +6854,8352,14905,14904,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5355787,8.8981848,0,1,1,60.230953,-9,-9,-9,2021,13,2,36,0,1,2,0,18.389071,18.389071,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.23,58.08,8.333333333333334,1,1,0,0,2,5,5,1,903,139685.2,73039.109,160473.72,130668.72,8025.248,1129.0486,4115.4375 +6855,8353,14906,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.6013107,8.5937643,0,0,0,-983.60468,0,1,3,2021,6,0,37,43,1,0,0,19.341003,19.341003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,151,390591.78,109682.42,440314.44,80856.797,0,0,2148.0396 +6855,8353,14907,-9,14906,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-971.29053,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,9,4,1,151,390591.78,109682.42,440314.44,80856.797,0,0,2148.0396 +6856,8354,14908,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.2278104,4.9007025,0,0,-1087.5829,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.204262,5.0506353,53.97,35.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,503,184495.19,29381.715,166970.06,0,0,0,456.52158 +6857,8355,14909,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.1516623,7.1812472,0,0,0,-936.57196,0,2,-9,2021,6,0,1,32,1,0,0,162.37239,162.37239,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,1,3,0,2183,-47871.578,37237.539,0,0,0,0,1458.054 +6858,8356,14910,14911,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,0,0,0,10,-8,-80.834724,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,50.03,52.62,6.666666666666667,2,3,1,0,3,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14911,14910,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,7.1786652,7.3607159,0,10,8,1.1786797,0,2,2,2021,11,0,30,8,1,0,0,5.9900775,5.9900775,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52.65,51.64,6.666666666666667,2,3,0,0,13,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14912,-9,14910,14911,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-955.49036,-9,3,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14913,-9,14910,14911,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.74225,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6859,8357,14914,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.299027,7.2375894,0,0,-992.02362,0,1,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5954847,7.6228137,40.19,42.36,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,298,391689.34,128606.8,83775.023,0,0,0,1250.0453 +6860,8358,14915,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6961207,7.9577765,0,0,-1001.4963,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.4981527,50.41,53.71,-9,-9,10,1,1,0,0,0,7,4,1,186,1211241.5,257737.86,970947.94,0,0,0,1643.7295 +6861,8359,14916,-9,14918,14917,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.9175,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6861,8359,14917,14918,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.6958017,8.5886612,0,6,-1,-85.012367,0,3,2,2021,12,0,55,65,1,0,0,16.836121,16.836121,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,34.27,50.22,8.333333333333334,1,1,0,0,9,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6861,8359,14918,14917,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.7255721,8.1679554,0,6,1,43.415775,0,2,1,2021,22,9,37,39,1,9,0,9.7294254,9.7294254,0,0,0,0,0,0,0,0,1,1,0,0,0,34.27,50.22,30.94,61.65,8.333333333333334,1,1,0,0,8,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6862,8360,14919,14920,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.5103197,8.572422,45,5,79.225624,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0437317,8.6767654,60.12,54.8,60.12,54.8,10,1,1,0,0,0,6,4,1,659.5,1920082.8,930394.88,250463.41,0,0,0,4719.0981 +6862,8360,14920,14919,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9403067,7.6268282,45,-5,104.44542,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4599881,60.12,54.8,60.12,54.8,10,1,1,0,0,0,6,4,1,659.5,1920082.8,930394.88,250463.41,0,0,0,4719.0981 +6863,8361,14921,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.49897,8.1733961,0,0,0,-1086.1686,0,1,2,2021,9,2,42,0,1,2,0,9.6249781,9.6249781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,2734,-27611.129,27961.641,0,0,2990.2939,7550.6304,1524.6536 +6864,8362,14922,14923,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,12,0,-118.84299,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,56.82,41.72,54.69,45.05,8.333333333333334,1,1,0,0,2,12,2,1,4098,264714.53,0,243900.38,0,0,0,1846.3665 +6864,8362,14923,14922,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.27565,4.0487251,12,0,41.044041,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.5927787,4.5180016,54.69,45.05,56.82,41.72,10,1,1,0,0,5,12,2,1,4098,264714.53,0,243900.38,0,0,0,1846.3665 +6865,8363,14924,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,6.2130623,6.3428602,0,0,-1075.5018,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.9222574,0,67.121788,0,1,1,0,3.0419216,5.7506194,39.49,14.5,-9,-9,10,1,1,0,0,3,12,2,1,237,771.48431,-4297.5483,0,0,0,0,1406.0525 +6866,8364,14925,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,3,0,7.9755678,8.0964422,0,0,-903.41986,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9908795,54,43,-9,-9,7,1,1,0,0,0,2,4,1,310,803423.56,65507.5,525063.56,0,0,0,2890.408 +6867,8365,14926,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.4593782,9.3651619,0,0,0,-1066.267,0,1,1,2021,12,0,46,40,1,0,0,32.046124,32.046124,.05,.05,0,0,0,0,0,0,0,0,0,8.0593433,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,834,1550111.5,1183133.9,319399.47,60632.371,0,0,3525.9612 +6868,8366,14927,14928,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.9788623,8.0632668,51,1,-58.297192,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8826027,52.4,52.91,43.48,60.97,8.333333333333334,1,1,0,0,7,5,4,1,726.5,1273625.4,562129.13,248974.08,0,0,0,3160.8379 +6868,8366,14928,14927,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8880501,8.1123495,51,-1,-17.253983,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0912352,7.6357079,43.48,60.97,52.4,52.91,5,1,1,0,0,4,5,4,1,726.5,1273625.4,562129.13,248974.08,0,0,0,3160.8379 +6869,8367,14929,14932,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.7208986,8.6754904,0,23,4,-41.364841,0,-9,-9,2021,12,0,48,40,1,0,0,12.529665,12.529665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,43.95,53.15,5,1,1,0,0,14,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14930,-9,14932,14929,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1043.101,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9875093,0,48.72,53.15,-9,-9,8.333333333333334,1,1,1,0,0,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14931,-9,14932,14929,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.13611,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14932,14929,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,7.7458105,7.8141999,0,23,-4,-4.3919101,0,2,2,2021,12,1,22,22,1,1,0,8.8788977,8.8788977,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,35.2,48.71,8.333333333333334,1,1,0,0,14,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6870,8368,14933,14934,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.254117,8.0082073,5.1862154,38,-4,-20.3508,0,2,3,2021,6,0,36,38,1,0,0,12.082394,12.082394,.05,.05,0,0,0,0,0,14.5,1,1,0,0,5.4035926,61.12,51.57,43.12,49.06,8.333333333333334,1,1,0,0,12,10,4,1,1124,811890.5,530625.81,201649,0,771.23663,879.77338,2203.873 +6870,8368,14934,14933,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.3900552,5.2626376,9,4,17.95887,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.330195,43.12,49.06,61.12,51.57,8.333333333333334,1,1,0,0,9,10,4,1,1124,811890.5,530625.81,201649,0,771.23663,879.77338,2203.873 +6871,8369,14935,14936,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.0110669,7.3621993,20,13,47.749111,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5817266,7.4899278,54.53,40.91,51.39,59.18,8.333333333333334,1,1,0,0,0,2,2,1,673,483350.25,72141.305,189560.19,0,0,0,2745.3174 +6871,8369,14936,14935,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,5.3455868,5.0576715,22,-13,-71.299751,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7367492,5.1304808,51.39,59.18,54.53,40.91,8.333333333333334,1,1,0,0,2,2,2,1,673,483350.25,72141.305,189560.19,0,0,0,2745.3174 +6872,8370,14937,14939,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,7.7113905,7.84588,0,5,5,-83.603439,0,-9,-9,2021,10,0,42,0,1,0,0,7.2385316,7.2385316,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.5,46.83,28.22,30.53,8.333333333333334,1,1,0,0,2,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6872,8370,14938,-9,14939,14937,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-897.86798,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6872,8370,14939,14937,-9,-9,1,0,31,1,1,0,2,2,-9,0,2,0,0,0,5,-5,-51.305809,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.22,30.53,40.5,46.83,5,1,1,0,0,4,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6873,8371,14940,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9862113,7.9751782,0,0,0,-985.80017,-9,2,2,2021,16,5,37,0,1,5,0,7.8194513,7.8194513,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,758,80693.969,0,0,0,0,0,1063.882 +6874,8372,14941,-9,14942,14943,1,1,18,0,1,1,2,0,0,1,3,0,0,0,0,0,-1036.0197,-9,3,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,53.08,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,588,-23992.963,0,0,0,0,0,574.42944 +6874,8373,14942,14943,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.659833,7.5753713,3.9323967,6,-3,100.06645,0,3,3,2021,10,0,10,7,1,0,0,23.118454,23.118454,.05,.05,0,0,0,0,0,2,1,1,0,3.4707625,0,53.32,40.19,40.66,49.32,6.666666666666667,1,1,0,0,7,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6874,8373,14943,14942,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7643957,8.8821554,0,6,3,-24.931362,0,-9,-9,2021,12,0,55,51,1,0,0,20.038504,20.038504,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.66,49.32,53.32,40.19,5,1,1,0,0,7,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6874,8373,14944,-9,14942,14943,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.99384,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6875,8374,14945,14946,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,5,21,-139.03575,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.87,51.67,51.06,38.27,5,1,1,0,1,0,9,2,0,901.5,16598.234,18991.168,0,0,0,0,1403.6738 +6875,8374,14946,14945,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2040386,7.2789955,0,5,-21,-7.9366202,0,-9,-9,2021,12,0,24,0,1,0,0,4.9938369,4.9938369,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.06,38.27,29.87,51.67,6.666666666666667,1,1,0,1,0,9,2,0,901.5,16598.234,18991.168,0,0,0,0,1403.6738 +6876,8375,14947,14948,-9,-9,1,0,56,0,0,0,1,1,-9,1,5,9.4610081,9.7974501,0,25,-1,22.981535,-9,-9,-9,2021,6,1,85,0,1,1,0,18.937313,18.937313,0,0,0,0,0,0,0,27,1,1,0,6.9091368,0,57.06,57.76,48.37,9.470000000000001,8.333333333333334,1,1,0,0,8,9,5,1,875,1235294.6,116987.34,1283408.8,223251.06,0,0,7794.7046 +6876,8375,14948,14947,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,0,8.1512814,8.2173643,25,1,14.762868,-9,-9,-9,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,8.1860456,48.37,9.470000000000001,57.06,57.76,5,1,1,0,0,4,9,5,1,875,1235294.6,116987.34,1283408.8,223251.06,0,0,7794.7046 +6876,8376,14949,-9,14947,14948,1,1,26,0,0,0,3,3,-9,1,4,0,0,0,0,0,-861.7749,-9,1,1,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,33.66,56.35,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,515,-126718.22,0,0,0,0,0,276.57083 +6877,8377,14950,14951,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3500156,8.207345,0,11,-3,-81.452271,0,-9,3,2021,7,0,39,39,1,0,0,8.6976013,8.6976013,0,0,.05,0,0,0,0,0,1,0,1,0,0,55.79,52.62,55.61,50.3,8.333333333333334,1,1,0,0,11,8,4,0,262.5,298465.34,155171.09,296959.88,0,0,0,2868.522 +6877,8377,14951,14950,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.776958,8.0587101,0,11,3,75.324776,0,-9,-9,2021,11,1,38,38,1,1,0,7.6930995,7.6930995,0,0,0,0,0,0,0,0,1,0,1,0,0,55.61,50.3,55.79,52.62,6.666666666666667,1,1,0,0,12,8,4,0,262.5,298465.34,155171.09,296959.88,0,0,0,2868.522 +6877,8378,14952,-9,14951,14950,1,1,31,0,0,0,3,3,-9,1,3,0,0,0,0,0,-917.16382,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,0,0,8,2,0,874,37333.777,0,0,0,0,0,414.44284 +6878,8379,14953,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.2809229,7.1568604,0,0,0,-1111.4042,0,2,2,2021,10,0,16,16,1,0,0,6.7673655,6.7673655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,71.13,36.21,-9,-9,5,1,1,0,0,8,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6878,8379,14954,-9,14953,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6031,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6878,8379,14955,-9,14953,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.20532,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6879,8380,14956,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1117.8767,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.27,25.37,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,2033,68794.422,0,0,0,0,0,1683.3552 +6880,8381,14957,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.8426113,7.5771527,0,0,-942.51282,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4420342,6.2901745,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,392,654702.5,238502,237038.48,0,0,0,2860.3403 +6881,8382,14958,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,7.7680326,7.3431993,5.2029605,0,0,-946.9776,0,-9,-9,2021,4,0,30,24,1,0,0,6.6181149,6.6181149,.05,.05,0,0,0,7.4949946,0,0,1,1,0,5.8286467,5.4596062,62.39,56.71,-9,-9,10,1,1,0,0,8,7,3,1,627,154036.94,107537.05,7801.2866,0,0,0,1119.1067 +6882,8383,14959,14960,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.8912754,7.9185672,0,8,1,123.38216,0,3,3,2021,17,5,46,41,1,5,0,6.919982,6.919982,.05,.05,0,0,0,0,0,0,1,1,0,3.1718006,0,40.44,35.55,45.91,59.89,6.666666666666667,1,1,0,0,9,7,4,1,1948.5,951887.56,516461.88,297200,0,858.20483,0,3341.7229 +6882,8383,14960,14959,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1187248,8.2677031,0,8,-1,-34.768642,0,3,3,2021,15,3,38,38,1,3,0,13.574637,13.574637,.05,.05,0,0,0,0,0,2,1,1,0,3.0852239,0,45.91,59.89,40.44,35.55,6.666666666666667,1,1,0,0,9,7,4,1,1948.5,951887.56,516461.88,297200,0,858.20483,0,3341.7229 +6883,8384,14961,14962,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.7477589,8.2817402,53,5,181.81023,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2759428,53.07,52.7,52,45,8.333333333333334,1,1,0,0,0,13,4,1,507,580306.25,184266.94,194795.38,0,0,0,3658.6445 +6883,8384,14962,14961,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,-5,-106.4888,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,53.07,52.7,8,4,1,0,0,0,13,4,1,507,580306.25,184266.94,194795.38,0,0,0,3658.6445 +6884,8385,14963,14964,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.2752895,9.0572882,0,6,1,-.021279592,0,-9,-9,2021,11,0,40,48,1,0,0,24.348043,24.348043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,5,8,5,0,1051.5,453596.03,-5575.0127,0,0,21067.939,0,5145.8809 +6884,8385,14964,14963,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.794754,8.572444,0,6,-1,73.952637,0,2,2,2021,10,0,45,43,1,0,0,15.259588,15.259588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.06,57.76,5,1,1,0,0,8,8,5,0,1051.5,453596.03,-5575.0127,0,0,21067.939,0,5145.8809 +6885,8386,14965,14966,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3255024,8.4705267,0,40,1,18.94569,0,3,3,2021,3,0,38,38,1,0,0,11.758868,11.758868,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,42.57,49.62,10,1,1,0,0,7,1,4,0,973.5,1481306.8,1026626.4,170716.81,0,0,0,2613.3267 +6885,8386,14966,14965,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,6.860929,7.1072531,0,40,-1,-10.738937,0,2,2,2021,8,0,18,18,1,0,0,7.6446686,7.6446686,0,0,0,0,0,0,0,0,0,0,0,0,0,42.57,49.62,60.12,54.8,10,1,1,0,0,9,1,4,0,973.5,1481306.8,1026626.4,170716.81,0,0,0,2613.3267 +6886,8387,14967,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.1056347,5.1595187,0,0,-1139.9487,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.95579,63.82,33.09,-9,-9,10,1,1,0,0,0,12,2,0,245,-106934.66,79420.711,0,0,0,0,1681.3993 +6887,8388,14968,14969,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0569687,9.1844397,0,7,7,104.8618,0,2,2,2021,10,2,35,45,1,2,0,30.133242,30.133242,.05,.05,0,0,0,0,0,0,0,0,0,7.880126,0,41.53,63.13,56.92,49.39,8.333333333333334,1,1,0,0,11,8,5,1,777.5,310545.88,230344,257493.47,100923.09,30151.445,0,6113.7412 +6887,8388,14969,14968,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1224594,8.8881674,0,7,-7,-40.852451,0,-9,-9,2021,6,0,50,55,1,0,0,15.576317,15.576317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.92,49.39,41.53,63.13,8.333333333333334,1,1,0,0,6,8,5,1,777.5,310545.88,230344,257493.47,100923.09,30151.445,0,6113.7412 +6888,8389,14970,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.751812,7.8878937,0,0,-934.7514,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1145508,8.1859722,49,47,-9,-9,7,1,1,0,0,0,9,4,1,305,1094447.6,244287.41,578034.31,0,0,0,1824.017 +6889,8390,14971,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.264605,6.9020176,0,0,-1172.6047,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4683924,6.8905244,44.34,44.44,-9,-9,5,1,1,0,0,4,2,3,1,382,401626.66,123691.76,207055.72,0,0,0,1017.7137 +6890,8391,14972,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.8132801,6.9083209,0,0,-1010.3337,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1240258,7.3488784,63.1,45.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,880,108387.02,91960.383,0,0,-2773.5212,0,1383.2095 +6891,8392,14973,-9,14974,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1086.1599,-9,3,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,17.39,57.4,-9,-9,1.666666666666667,1,1,1,1,0,10,2,0,281.5,224151.06,21673.82,0,0,0,-446.84155,59.260849 +6891,8392,14974,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1166.9218,0,-9,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.1,29.96,-9,-9,0,1,1,0,0,0,10,2,0,281.5,224151.06,21673.82,0,0,0,-446.84155,59.260849 +6892,8393,14975,14977,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.7775612,8.3433189,0,29,0,-8.2180433,0,-9,-9,2021,9,0,36,35,1,0,0,13.586462,13.586462,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.47,59.4,8.333333333333334,1,1,0,0,9,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8393,14976,-9,14977,14975,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1052.829,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9395669,0,60.02,56.42,-9,-9,10,1,1,0,0,0,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8393,14977,14975,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.9185815,6.9351373,0,29,0,-95.756516,0,-9,-9,2021,9,0,18,17,1,0,0,7.6854672,7.6854672,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.33,53.46,10,1,1,0,0,9,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8394,14978,-9,14977,14975,1,0,18,0,1,0,2,2,1,0,3,7.827713,7.7522073,0,0,0,-1033.4445,-9,2,2,2021,9,2,38,0,1,2,1,9.2099266,9.2099266,.05,.05,0,0,0,0,0,0,1,1,0,2.0210073,0,49.92,47.32,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,192,-4945.9316,17461.652,0,0,-903.6568,0,1249.0148 +6893,8395,14979,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.1449156,8.1235294,0,0,0,-1001.1628,0,-9,-9,2021,15,3,40,40,1,3,0,8.0932245,8.0932245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.06,64.42,-9,-9,5,1,1,0,0,7,6,4,1,743,-57343.957,10372.784,0,0,0,0,1056.7786 +6894,8396,14980,14982,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.6781864,8.7068396,0,7,4,-53.334839,0,2,2,2021,7,0,43,37,1,0,0,16.5881,16.5881,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.4,59.87,8.333333333333334,1,1,0,0,7,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14981,-9,14982,14980,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.566,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14982,14980,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.9366932,8.027277,0,7,-4,-58.988659,0,2,2,2021,10,0,21,25,1,0,0,17.592421,17.592421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.4,59.87,51.24,58.84,5,1,1,0,0,7,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14983,-9,14982,14980,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.70313,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6895,8397,14984,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,4.8223147,5.2337117,0,0,-1087.28,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4079866,5.2162094,32.15,35.46,-9,-9,1.666666666666667,1,1,0,0,2,10,2,1,398,274867.03,0,124841.02,0,0,0,682.65607 +6896,8398,14985,14986,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.133872,8.1125011,0,25,7,-79.528786,0,-9,-9,2021,12,0,40,40,1,0,0,12.326623,12.326623,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,51.14,60.45,6.666666666666667,1,1,0,0,13,10,4,1,565,1558412,1320584.1,303364.31,133574.75,2389.8506,3108.113,2707.2163 +6896,8398,14986,14985,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.7624869,8.0151434,0,25,-7,90.823936,0,2,2,2021,9,0,30,25,1,0,0,10.396124,10.396124,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,46.9,56.66,8.333333333333334,1,1,0,0,13,10,4,1,565,1558412,1320584.1,303364.31,133574.75,2389.8506,3108.113,2707.2163 +6897,8399,14987,-9,14989,14988,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.5474,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6897,8399,14988,14989,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,9.4417133,9.5350246,0,8,0,-89.812981,0,1,2,2021,8,0,55,55,1,0,0,29.314339,29.314339,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.65,52.89,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6897,8399,14989,14988,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.2654438,7.9034219,0,8,0,-84.913132,0,2,3,2021,6,0,37,40,1,0,0,11.33487,11.33487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,58.65,52.89,8.333333333333334,1,1,0,0,11,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6898,8400,14990,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.2043266,7.9119573,0,0,0,-1027.0713,0,-9,-9,2021,11,0,41,41,1,0,0,11.316247,11.316247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.51,53.94,-9,-9,6.666666666666667,1,1,0,0,13,11,4,0,155,91914.641,28990.74,0,0,0,0,1413.3239 +6899,8401,14991,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.0371943,6.1253929,0,0,-951.43414,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5673738,61.43,48.88,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,277,561522.13,121693.6,155869.25,0,0,1548.4518,991.37866 +6900,8402,14992,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.0539293,7.8025279,0,0,0,-913.50922,0,3,3,2021,11,0,37,37,1,0,0,9.42694,9.42694,0,0,0,0,0,0,0,0,0,0,0,4.6980124,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,120,-91699.844,0,0,0,0,0,1621.1193 +6901,8403,14993,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.2401295,5.3972926,0,0,-1041.2194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9313259,0,0,1,1,0,5.0950494,4.9860144,57.98,29.33,-9,-9,10,1,1,0,0,0,9,2,1,94,444803.19,0,455485.03,0,0,0,1155.7926 +6902,8404,14994,14995,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.7426109,9.6454449,0,6,4,114.39572,0,2,2,2021,11,0,40,40,1,0,0,35.043163,35.043163,.05,.05,0,0,0,0,0,0,0,0,0,7.421771,0,57.16,56.15,47.62,41.35,6.666666666666667,2,3,0,0,4,5,5,1,524.5,2918885.5,1109059.1,716517,332865.06,0,0,8454.2578 +6902,8404,14995,14994,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.3869348,7.1354351,0,25,-4,47.115955,0,3,3,2021,15,3,25,25,1,3,0,7.6674857,7.6674857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,41.35,57.16,56.15,5,2,3,0,0,9,5,5,1,524.5,2918885.5,1109059.1,716517,332865.06,0,0,8454.2578 +6902,8405,14996,-9,14995,14994,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1016.0065,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,53.69,-9,-9,10,2,3,0,0,0,5,1,1,285,83967.578,0,0,0,0,0,0 +6903,8406,14997,14998,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,2.8730702,2.4488552,59,6,-49.365993,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9403174,2.8327594,53.2,19.32,56.5,37.6,5,1,1,0,0,0,11,2,1,577.5,339671.44,117610.66,161896.7,0,0,0,2170.0542 +6903,8406,14998,14997,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.036304,6.9880176,59,-6,-86.246201,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6752086,7.0465312,56.5,37.6,53.2,19.32,6.666666666666667,1,1,0,0,0,11,2,1,577.5,339671.44,117610.66,161896.7,0,0,0,2170.0542 +6904,8407,14999,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6397591,8.5692053,0,0,0,-903.41968,0,3,1,2021,10,0,45,18,1,1,0,14.241546,14.241546,0,0,0,0,0,0,0,0,0,0,0,7.9194355,0,50.93,54.77,-9,-9,6.666666666666667,2,3,0,0,12,8,5,1,893,384353.66,0,414519.59,89512.547,3915.0962,0,2974.2451 +6905,8408,15000,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.1443534,6.7833314,0,0,-1112.2397,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5296183,6.5017142,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,667,135374.47,193118.42,203270.84,0,7634.6777,0,1125.6622 +6906,8409,15001,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.2733378,7.2055502,0,0,-1059.3901,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0097847,7.2757702,52.2,48.95,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,302,452729.25,171126.02,143627.33,0,0,0,1457.1334 +6907,8410,15002,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-912.77966,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,21.76,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,629,83789.18,0,77447.289,0,0,2035.9303,942.33209 +6908,8411,15003,-9,-9,15005,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-928.1012,-9,-9,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,4,2,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15004,-9,-9,15005,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.7137,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15005,-9,15008,15007,1,1,40,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1053.6619,0,3,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,52,-9,-9,5,2,3,1,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15006,-9,-9,15005,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1115.4949,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8412,15007,15008,-9,-9,1,1,64,0,3,0,3,3,-9,0,3,0,0,0,4,-4,-158.97031,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,55.56,51.53,49,47,8.333333333333334,2,3,0,1,1,4,2,0,2860.5,481576.03,326265,149442.05,0,0,0,1972.1421 +6908,8412,15008,15007,-9,-9,1,0,68,0,3,0,3,3,-9,0,3,8.0320444,8.0006514,0,4,4,-85.907692,0,-9,-9,2021,11,0,16,40,1,2,0,19.825581,19.825581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,47,55.56,51.53,7,2,3,0,0,1,4,2,0,2860.5,481576.03,326265,149442.05,0,0,0,1972.1421 +6909,8413,15009,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.0960078,7.001718,0,0,-981.8764,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0094452,6.978076,55.42,51.42,-9,-9,1.666666666666667,4,2,0,0,0,9,2,1,1442,722249.25,125583.1,378515.03,0,-29.580029,0,1847.5266 +6910,8414,15010,15011,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.8330069,8.4607325,0,7,2,2.6963341,0,-9,-9,2021,11,1,55,55,1,1,0,7.5666833,7.5666833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,49.04,55.86,6.666666666666667,1,1,0,0,8,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15011,15010,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,4.292182,4.264905,0,7,-2,-132.23009,0,-9,-9,2021,6,0,48,48,1,0,0,.16194259,.16194259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,51.17,49.39,8.333333333333334,1,1,0,0,3,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15012,-9,15011,15010,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15013,-9,15011,15010,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.3567,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6911,8415,15014,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4527807,8.5280094,0,0,0,-1060.2543,0,3,3,2021,13,1,30,37,1,1,0,17.914572,17.914572,0,0,.05,0,0,0,0,0,1,1,0,4.3183818,0,52.06,41.16,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,379,111149.52,21612.631,69933.516,0,0,0,1155.4674 +6912,8416,15015,15018,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.3388643,8.998374,0,7,2,29.477564,0,2,2,2021,8,0,42,40,1,0,0,13.293362,13.293362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.26,37.61,49.71,55.64,8.333333333333334,1,1,0,0,8,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15016,-9,15018,15015,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.01508,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15017,-9,15018,15015,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1101.3196,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15018,15015,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8875279,7.8968325,0,7,-2,-63.925949,0,2,1,2021,6,0,40,40,1,0,0,8.5722561,8.5722561,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,59.26,37.61,8.333333333333334,1,1,0,0,8,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8417,15019,-9,15018,15015,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1167.9092,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.78,49.92,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,2246,0,0,0,0,0,0,0 +6913,8418,15020,-9,-9,-9,1,0,67,0,1,0,3,3,-9,0,2,0,.28785664,.33956552,0,0,-986.10498,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.40164483,43.84,37.11,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,231,161495.13,-113233.39,47130.16,0,-633.42993,14771.473,189.08586 +6913,8419,15021,-9,15020,-9,1,1,46,0,1,0,2,2,-9,0,4,8.267848,8.4972563,0,0,0,-1051.152,0,3,-9,2021,9,0,35,37,1,1,0,13.529971,13.529971,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,12,4,1,356,429901.44,142360.28,221949.34,112172.45,4532.5298,1442.3767,3133.7871 +6913,8420,15022,-9,-9,15021,1,1,18,0,1,0,2,2,1,0,4,7.1720185,7.1338224,0,0,0,-976.1582,-9,-9,2,2021,11,0,37,0,1,2,1,3.7358527,3.7358527,.05,.05,0,0,0,0,0,0,1,1,0,1.9801909,0,47,59,-9,-9,7,1,1,0,0,1,12,3,1,456,-40061.66,-7452.084,0,0,0,0,949.74231 +6914,8421,15023,-9,15024,15026,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.3647,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15024,15026,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.7231779,8.7854042,0,10,-5,-12.623549,0,2,2,2021,11,0,55,57,1,0,0,14.3314,14.3314,.05,.05,0,0,0,0,0,0,1,1,0,1.1228936,0,48.77,60.16,46.33,55.93,8.333333333333334,1,1,0,0,9,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15025,-9,15024,15026,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-874.30579,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15026,15024,-9,-9,1,1,43,1,2,0,1,1,-9,0,3,7.9852014,8.0853043,0,14,5,6.4943647,0,2,2,2021,13,3,37,43,1,3,0,8.7901764,8.7901764,.05,.05,0,0,0,0,0,0,1,1,0,.63992292,0,46.33,55.93,48.77,60.16,3.333333333333333,1,1,0,0,8,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6915,8422,15027,-9,15028,15034,1,1,15,0,5,1,3,0,-9,0,3,0,0,0,0,0,-967.79126,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15028,15034,-9,-9,1,0,42,0,5,0,2,2,-9,1,3,0,0,0,6,9,116.60209,0,2,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.53,47.89,57.33,53.46,8.333333333333334,1,1,0,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15029,-9,15028,15034,1,1,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1113.7102,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15030,-9,15028,15034,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1129.7755,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15031,-9,15028,15034,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1110.2328,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15032,-9,15028,15034,1,0,17,0,5,1,3,0,0,0,4,0,0,0,0,0,-916.61786,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15033,-9,15028,15034,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1069.1125,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15034,15028,-9,-9,1,1,33,0,5,0,3,3,-9,0,3,6.7991338,6.9587746,0,6,0,-101.44172,0,3,3,2021,11,0,16,40,1,0,0,6.7746601,6.7746601,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,57.53,47.89,8.333333333333334,1,1,0,0,5,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6916,8423,15035,-9,15037,15038,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.55542,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15036,-9,15037,15038,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15037,15038,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.0894156,9.3944559,6.8417392,6,-2,-58.010895,0,-9,-9,2021,13,5,32,27,1,5,0,32.572598,32.572598,0,0,.05,0,0,0,0,0,1,1,0,7.5695939,0,48.77,60.16,51.83,57.2,8.333333333333334,1,1,0,0,8,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15038,15037,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.0527372,8.8605261,0,6,2,-146.15984,0,2,2,2021,7,0,39,35,1,0,0,24.044416,24.044416,0,0,.05,0,0,0,0,0,1,1,0,8.0745306,0,51.83,57.2,48.77,60.16,8.333333333333334,1,1,0,0,9,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6917,8424,15039,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.9979439,9.067421,0,0,0,-979.73541,-9,2,2,2021,6,1,60,0,1,1,0,15.263234,15.263234,.05,.05,0,0,0,0,0,0,0,0,0,4.2991261,0,55.44,35.5,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,2162,115983.57,-44693.398,0,0,4125.8018,0,2398.3359 +6918,8425,15040,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,7.0021915,6.912735,0,0,-1060.9393,0,2,1,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5356827,0,21.76,49.56,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,656,23917.447,-27293.902,0,0,2600.7764,-71.683502,558.68719 +6918,8425,15041,-9,15040,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.58978,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,656,23917.447,-27293.902,0,0,2600.7764,-71.683502,558.68719 +6919,8426,15042,15043,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.536684,8.7826662,0,33,-2,-92.004066,0,3,2,2021,8,0,46,40,1,0,0,12.381461,12.381461,.05,.05,0,0,0,0,0,0,0,0,0,5.734623,0,57.16,56.15,59.13,44.84,6.666666666666667,1,1,0,0,11,9,5,0,849.5,855260,542269.5,349619.5,96496.188,0,0,3195.9973 +6919,8426,15043,15042,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.83253,7.7534623,0,33,2,50.318317,0,-9,-9,2021,12,0,38,35,1,0,0,7.6498284,7.6498284,0,0,0,0,0,0,0,0,0,0,0,0,0,59.13,44.84,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,0,849.5,855260,542269.5,349619.5,96496.188,0,0,3195.9973 +6919,8427,15044,-9,15043,15042,1,1,26,0,0,0,2,2,-9,0,4,8.6923475,8.7156019,0,0,0,-860.74982,0,2,2,2021,13,1,40,35,1,1,1,16.277534,16.277534,0,0,0,0,0,0,0,0,0,0,0,3.379925,0,40.58,60.95,-9,-9,5,1,1,0,0,11,9,5,0,1384,0,0,0,0,0,0,3025.0195 +6920,8428,15045,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.2649035,5.6949363,0,0,-1052.4755,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.80971,5.7960696,62.27,42.94,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,4209,154087.47,101133.79,86445.742,0,0,0,2227.7507 +6921,8429,15046,15047,-9,-9,1,1,67,0,0,0,3,3,-9,1,1,0,0,0,12,8,0,0,3,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,1,0,97.388161,0,0,1,0,1,0,0,37.75,21.54,28.01,22.58,0,1,1,0,0,0,13,1,0,857,299672.56,105445.28,192613.69,0,0,0,2542.0791 +6921,8429,15047,15046,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,12,-8,0,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,28.01,22.58,37.75,21.54,1.666666666666667,1,1,0,1,0,13,1,0,857,299672.56,105445.28,192613.69,0,0,0,2542.0791 +6921,8430,15048,-9,15047,15046,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1033.3516,0,2,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.7,48.01,-9,-9,5,1,1,1,0,3,13,1,0,1039,-19182.695,0,0,0,0,0,820.83728 +6922,8431,15049,-9,15050,-9,1,1,57,0,0,0,1,1,-9,0,2,0,8.1915712,7.9914303,0,0,-1142.8647,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1940904,7.7030001,41.71,54.32,-9,-9,8.333333333333334,1,1,1,0,6,5,3,1,373,0,0,0,0,0,0,1553.4495 +6922,8432,15050,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.8545499,6.7737203,0,0,-1215.0017,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,11.182698,0,0,1,1,0,0,6.8419337,58.48,33.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,159,278545.81,130104.66,159291.33,0,0,0,200.95239 +6923,8433,15051,15052,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1150789,8.0897808,0,26,-8,-58.010803,0,2,2,2021,11,0,31,31,1,0,0,10.552951,10.552951,.05,.05,0,0,0,0,0,2,1,0,1,0,0,52.99,51.28,44.42,39.11,6.666666666666667,2,3,0,0,8,8,5,1,882,878460.75,721240.25,253887.55,116540.01,660.84814,0,4023.2859 +6923,8433,15052,15051,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5564508,8.834012,0,26,8,-17.635866,0,3,2,2021,13,2,55,25,1,2,0,15.269298,15.269298,.05,.05,0,0,0,0,0,0,1,0,1,4.2038836,0,44.42,39.11,52.99,51.28,5,2,3,0,1,8,8,5,1,882,878460.75,721240.25,253887.55,116540.01,660.84814,0,4023.2859 +6923,8434,15053,-9,15051,15052,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-848.86536,1,2,3,2021,8,0,0,30,2,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,6,8,1,1,1199,325290.38,0,0,0,0,0,-680.00812 +6923,8435,15054,-9,15051,15052,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.2915,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,209,-183126.52,0,0,0,8981.3662,0,196.42014 +6924,8436,15055,15056,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.7361403,6.6745706,9,-1,-27.435698,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.543364,6.7801142,54.2,57.49,62.39,56.71,8.333333333333334,1,1,0,0,1,9,3,1,642,1728656.3,641488.25,520168.16,0,0,2055.2148,1527.3325 +6924,8436,15056,15055,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.8048105,7.7013984,9,1,74.207748,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9263535,62.39,56.71,54.2,57.49,10,1,1,0,0,8,9,3,1,642,1728656.3,641488.25,520168.16,0,0,2055.2148,1527.3325 +6925,8437,15057,15058,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.9238172,6.7601104,11,3,-62.418606,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8976054,6.9435492,58.32,39.69,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,439,2282496,947067.13,678461.75,0,0,0,4404.332 +6925,8437,15058,15057,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.6856174,8.7374973,49,-3,24.794827,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.827878,0,0,1,1,0,2.8100042,8.4850416,57.16,56.15,58.32,39.69,8.333333333333334,1,1,0,0,11,9,4,1,439,2282496,947067.13,678461.75,0,0,0,4404.332 +6926,8438,15059,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.1293,0,3,3,2021,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.88,38.46,-9,-9,5,1,1,1,1,8,2,1,1,674,-28105.928,0,0,0,0,0,1254.5173 +6927,8439,15060,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.8520594,8.5998497,0,0,-964.33698,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7162161,50.6,44.34,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,773,1097151.8,509119.47,171174.22,0,0,0,3667.3264 +6928,8440,15061,-9,15063,15062,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15062,15063,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.7523165,7.7619872,0,7,2,-39.437813,0,3,3,2021,8,0,40,40,1,0,0,6.8697958,6.8697958,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,40.18,55.92,8.333333333333334,1,1,0,0,8,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15063,15062,-9,-9,1,0,33,0,3,0,2,2,-9,1,3,7.625628,7.4283514,0,7,-2,35.348309,0,2,-9,2021,17,5,35,37,1,5,0,5.6956444,5.6956444,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,40.18,55.92,60.12,54.8,6.666666666666667,1,1,0,0,6,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15064,-9,15063,15062,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1028.5062,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15065,-9,15063,15062,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.7927,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6929,8441,15066,15067,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.732789,8.8066092,39,3,-48.220009,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8964086,8.4399376,62.39,56.71,53.59,48.18,8.333333333333334,1,1,0,0,2,6,4,1,777,597648.44,276032.94,71071.047,0,0,0,2203.7319 +6929,8441,15067,15066,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,39,-3,-20.882019,0,3,3,2021,8,1,0,15,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7682309,0,53.59,48.18,62.39,56.71,10,1,1,0,0,8,6,4,1,777,597648.44,276032.94,71071.047,0,0,0,2203.7319 +6930,8442,15068,15069,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.612905,5.7207685,46,-5,-161.13551,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.4542077,5.9547296,60.99,53.2,42.33,33.53,10,1,1,0,0,0,1,2,1,408.5,522902.69,245487.33,175774.33,0,0,0,1730.7542 +6930,8442,15069,15068,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.7455592,6.9772053,46,5,51.095066,0,3,2,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,38.513981,0,0,1,1,0,0,7.1506,42.33,33.53,60.99,53.2,6.666666666666667,1,1,0,0,4,1,2,1,408.5,522902.69,245487.33,175774.33,0,0,0,1730.7542 +6931,8443,15070,-9,-9,-9,1,0,24,0,1,0,1,1,-9,0,5,8.010746,8.1128445,0,0,0,-979.54913,0,1,2,2021,3,0,40,39,1,0,1,8.8805513,8.8805513,.05,.05,0,0,0,0,0,0,1,1,0,2.0472069,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,5,8,4,0,470,69823.242,69890.031,0,0,0,0,1290.6379 +6932,8444,15071,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-853.94458,0,1,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50.72,13.39,-9,-9,5,1,1,0,0,6,8,2,0,335,11037.87,0,0,0,0,0,1219.6267 +6932,8445,15072,-9,15071,-9,1,1,22,0,0,0,2,2,-9,1,4,7.7411966,7.5667863,0,0,0,-982.62537,0,2,-9,2021,8,0,40,40,1,0,1,6.7814155,6.7814155,0,0,0,0,0,0,0,0,1,1,0,0,0,54.53,49.11,-9,-9,8.333333333333334,1,1,0,0,2,8,3,0,158,96964.125,0,0,0,0,0,1593.2593 +6933,8446,15073,15074,-9,-9,1,1,75,0,2,0,2,2,-9,0,3,0,7.1564498,6.9502611,54,3,-108.63926,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0469584,55.12,42.1,49.88,47.22,6.666666666666667,1,1,0,0,0,7,3,1,733.5,876898.13,534252.5,275814.5,0,0,-102.27576,2501.0854 +6933,8446,15074,15073,-9,-9,1,0,72,0,2,0,2,2,-9,0,3,7.4239841,7.6407566,0,54,-3,-99.889572,0,-9,-9,2021,6,0,7,10,1,0,0,27.292469,27.292469,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,47.22,55.12,42.1,8.333333333333334,1,1,0,0,11,7,3,1,733.5,876898.13,534252.5,275814.5,0,0,-102.27576,2501.0854 +6934,8447,15075,15077,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6413517,7.5313654,0,42,-2,-13.091437,0,3,-9,2021,10,0,38,40,1,0,0,5.8435655,5.8435655,0,0,0,0,0,0,0,7,1,1,0,0,0,37.34,55.42,60.06,37.11,8.333333333333334,1,1,0,0,10,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6934,8447,15076,-9,15075,15077,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1039.2897,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6934,8447,15077,15075,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.4356933,6.1976795,42,2,-160.00117,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3165679,60.06,37.11,37.34,55.42,8.333333333333334,1,1,0,0,0,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6935,8448,15078,15079,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3474154,7.441195,8,3,-82.993881,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6638269,7.7742734,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,0,6,4,1,383.5,1152656.5,594394.69,181470.22,0,0,0,5030.5181 +6935,8448,15079,15078,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.1236544,8.2585907,8,-3,-64.447739,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5163283,8.2901926,58.5,44.67,54.2,57.49,10,1,1,0,0,0,6,4,1,383.5,1152656.5,594394.69,181470.22,0,0,0,5030.5181 +6936,8449,15080,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.2485137,7.4050131,0,0,-986.37292,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,5.0096312,3.4833941,50.78344,0,1,1,0,0,7.1611347,63.81,20.79,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,709,145931.34,166366.42,-14374.872,0,0,0,1543.8794 +6937,8450,15081,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2698288,7.7150893,0,0,-1110.6334,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.764195,1.9863133,29.14156,0,1,1,0,0,7.1685486,63.19,27.85,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,1140,410501.75,113621.63,161173.73,0,0,0,1670.5969 +6938,8451,15082,15083,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,23,7,9.4974298,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.7895656,0,59.47,20.19,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,656,560823.88,147936.83,117650.59,0,0,0,2447.6785 +6938,8451,15083,15082,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.6277599,8.8404074,0,23,-7,-65.280365,0,3,2,2021,8,0,55,55,1,0,0,15.625519,15.625519,.05,.05,0,0,0,0,0,2,1,1,0,3.6523275,0,57.16,56.15,59.47,20.19,8.333333333333334,1,1,0,0,8,13,4,1,656,560823.88,147936.83,117650.59,0,0,0,2447.6785 +6939,8452,15084,-9,15085,-9,1,0,41,0,1,0,2,2,-9,0,3,7.0035768,7.2393389,6.5786719,0,0,-792.83917,0,3,3,2021,12,0,17,16,1,0,0,10.657952,10.657952,.05,.05,.05,0,0,0,0,0,1,1,0,6.4308405,0,38.8,52.39,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1293,155368.33,-83490.359,115936.98,23303.666,6783.5977,0,1758.0316 +6939,8453,15085,-9,-9,-9,1,0,75,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1075.6315,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.66,33.1,-9,-9,5,1,1,0,0,3,9,1,1,736,-30392.674,0,0,0,0,0,498.92328 +6940,8454,15086,15087,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.5915775,9.9439535,0,24,4,101.48074,0,2,3,2021,6,0,70,75,1,0,0,29.667051,29.667051,.05,.05,0,0,0,0,0,2,0,0,0,5.6482596,0,59.53,56.44,48.82,41.3,8.333333333333334,1,1,0,0,10,1,5,1,655,341189.88,104403.87,361584.94,0,0,0,7971.2212 +6940,8454,15087,15086,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.4332595,7.3184271,0,24,-4,32.400311,0,3,3,2021,13,2,10,10,1,2,0,17.403912,17.403912,.05,.05,0,0,0,0,0,2,0,0,0,2.5775995,0,48.82,41.3,59.53,56.44,8.333333333333334,1,1,0,0,10,1,5,1,655,341189.88,104403.87,361584.94,0,0,0,7971.2212 +6941,8455,15088,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.6835175,7.8332891,6.8351207,0,0,-1040.4506,0,3,3,2021,11,0,28,25,1,0,0,5.4150658,5.4150658,0,0,0,0,0,0,0,0,1,1,0,6.5539312,0,40.38,61.66,-9,-9,3.333333333333333,1,1,0,0,13,5,3,1,354.5,24635.191,4106.9141,70403.398,8612.0781,0,0,1303.082 +6941,8455,15089,-9,15088,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-974.08789,-9,2,-9,2021,9,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.52,51.4,-9,-9,3.333333333333333,1,1,0,0,2,5,3,1,354.5,24635.191,4106.9141,70403.398,8612.0781,0,0,1303.082 +6941,8456,15090,-9,15088,-9,1,1,18,0,1,0,2,2,-9,0,3,5.7970667,5.9073057,0,0,0,-996.20776,-9,2,-9,2021,12,2,8,0,1,2,1,6.249207,6.249207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,398,-264201.97,48137.629,0,0,0,0,-90.093285 +6942,8457,15091,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9555678,6.730257,0,0,-991.25677,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7644019,6.8191309,52.24,34.16,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,996,247893.58,65607.672,18805.346,0,0,0,2419.5386 +6943,8458,15092,15093,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.2373495,4.0118961,43,-1,82.222244,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2213016,3.8707714,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,8,1,3,1,281.5,1385170.3,1232258.1,146749.44,0,18158.828,0,2044.0613 +6943,8458,15093,15092,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2329159,8.1645079,43,1,-113.51427,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5730126,8.6457806,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,8,1,3,1,281.5,1385170.3,1232258.1,146749.44,0,18158.828,0,2044.0613 +6944,8459,15094,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,2,7.1665797,7.0788236,0,0,0,-952.51367,-9,2,2,2021,11,1,27,0,1,1,1,5.5126262,5.5126262,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.98,51.26,-9,-9,5,1,1,0,0,1,12,3,1,876,46447.746,3589.752,0,0,947.93414,0,118.1105 +6945,8460,15095,15096,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7751327,8.1428919,0,30,-12,-14.274837,0,3,-9,2021,9,0,50,53,1,0,0,5.7084684,5.7084684,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,34.75,26.16,8.333333333333334,1,1,0,0,9,6,3,0,1380.5,223769.28,82038.133,159668.59,55616.82,0,0,2611.5938 +6945,8460,15096,15095,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,30,12,73.275902,0,2,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,23.030804,0,0,1,1,0,0,0,34.75,26.16,58.15,52.91,0,1,1,0,1,1,6,3,0,1380.5,223769.28,82038.133,159668.59,55616.82,0,0,2611.5938 +6945,8461,15097,-9,15095,15096,1,0,20,0,0,0,2,2,-9,0,2,7.5125813,7.5743012,0,0,0,-1028.0096,0,3,3,2021,16,4,30,21,1,4,1,6.2190228,6.2190228,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,35.19,-9,-9,5,1,1,0,0,2,6,3,0,487,-77663.336,0,0,0,0,0,1132.1567 +6945,8462,15098,-9,15095,15096,1,1,18,0,0,0,2,2,-9,0,4,8.3047657,8.3365898,0,0,0,-938.82709,0,3,3,2021,6,0,55,45,1,0,1,9.0310297,9.0310297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,549,65471.852,119848.38,0,0,0,0,1151.4229 +6946,8463,15099,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,7.723536,8.0810452,0,0,-914.53644,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0194831,7.633975,56,44,-9,-9,8,1,1,0,0,0,5,3,1,1841,432206.13,188747.09,84883.883,0,0,0,1615.3308 +6947,8464,15100,-9,15102,15101,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1032.6296,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15101,15102,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.7478924,8.8120747,0,12,4,-73.881989,0,2,1,2021,8,0,37,38,1,0,0,18.162355,18.162355,.05,.05,0,0,0,0,0,0,1,1,0,1.9708985,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,13,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15102,15101,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4877901,8.3609991,0,12,-4,-55.701942,0,2,2,2021,8,0,37,37,1,0,0,11.260147,11.260147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,13,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15103,-9,15102,15101,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1005.6917,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6948,8465,15104,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.4625,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.5448576,10.853951,29.9547,0,1,1,0,0,0,46.81,39.19,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,522,-167014.92,0,0,0,0,614.10944,661.02362 +6949,8466,15105,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.7084141,8.4529467,0,6,-5,-45.733181,0,2,2,2021,11,1,38,53,1,1,0,20.532175,20.532175,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,41.23,51.32,6.666666666666667,1,1,0,0,7,7,5,1,1752,927880.69,616119.38,243112.11,0,0,0,2824.3462 +6949,8467,15106,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1462202,8.4426098,0,6,5,69.716606,0,3,3,2021,23,11,38,44,1,11,0,10.363292,10.363292,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,60.29,52.11,6.666666666666667,1,1,0,0,8,7,5,1,1748,72513.242,0,0,0,0,0,1867.4681 +6950,8468,15107,15110,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.7496929,7.4810615,0,18,6,69.312851,0,3,3,2021,9,0,38,35,1,1,0,7.3067989,7.3067989,0,0,.05,0,0,0,0,0,1,1,0,3.6534319,0,53,55,51.72,51.9,8,2,3,0,0,1,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15108,-9,15110,15107,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.35559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15109,-9,15110,15107,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.39911,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15110,15107,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6419973,8.4328032,0,18,-6,-37.244392,0,2,2,2021,9,0,50,38,1,0,0,12.274656,12.274656,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,51.9,53,55,8.333333333333334,2,3,0,0,9,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6951,8469,15111,15112,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.6430173,7.2595401,0,6,1,-7.1257782,-9,-9,-9,2021,27,8,50,0,1,8,0,4.6400318,4.6400318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.45,64.19,29.99,59.47,0,1,1,0,1,10,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6951,8469,15112,15111,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.7478967,7.5670376,5.2627163,6,-1,106.4165,-9,-9,-9,2021,12,0,40,0,1,0,0,5.2151875,5.2151875,0,0,0,0,0,0,0,0,1,1,0,5.3067651,0,29.99,59.47,30.45,64.19,1.666666666666667,1,1,0,1,9,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6951,8469,15113,-9,15112,15111,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.625,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6952,8470,15114,-9,15115,15116,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-963.91901,-9,1,2,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8470,15115,15116,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0941486,8.3642864,0,6,-8,20.886517,0,3,3,2021,7,0,7,7,1,0,0,45.293919,45.293919,0,0,0,0,0,0,0,0,1,1,0,0,0,52.83,48.43,49.34,41.24,8.333333333333334,1,1,0,0,8,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8470,15116,15115,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.5870142,8.5758009,0,6,8,34.707077,0,3,3,2021,12,3,36,36,1,3,0,16.50252,16.50252,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.34,41.24,52.83,48.43,1.666666666666667,1,1,0,0,8,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8471,15117,-9,15115,15116,1,1,26,0,0,0,2,2,-9,0,4,7.1649208,7.1313186,0,0,0,-966.84332,0,1,2,2021,7,0,16,16,1,0,1,9.7420273,9.7420273,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,2851,8937.9688,66461.461,0,0,0,0,243.58269 +6952,8472,15118,-9,15115,15116,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1022.1736,-9,1,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,427,-23315.516,0,0,0,0,0,-36.056522 +6953,8473,15119,15120,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.7979879,7.6558938,12,-1,39.949554,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0297747,7.5647316,63.74,25.79,53.14,51.28,5,1,1,0,0,8,13,4,1,1036,2112064.3,1573322.1,341529.94,0,0,0,5179.6338 +6953,8473,15120,15119,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.9060311,8.0518007,12,1,-25.849941,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7558656,7.9370265,53.14,51.28,63.74,25.79,8.333333333333334,1,1,0,0,9,13,4,1,1036,2112064.3,1573322.1,341529.94,0,0,0,5179.6338 +6954,8474,15121,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.5432768,8.4224606,0,0,0,-1094.9178,0,3,2,2021,9,0,72,75,1,0,0,6.5355492,6.5355492,0,0,0,0,0,0,0,0,0,0,0,0,0,58.5,39.14,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,1063,81953.195,119557.2,157726.41,115354.7,0,0,2005.7349 +6955,8475,15122,-9,15123,15124,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1056.5687,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9027398,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6955,8475,15123,15124,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,6.8371024,6.6169729,0,6,-2,100.35058,0,2,2,2021,9,1,12,12,1,1,0,8.2413168,8.2413168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.46,54.85,61.28,48.88,6.666666666666667,1,1,0,0,7,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6955,8475,15124,15123,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,7.2806344,8.6632481,8.6800117,6,2,-29.448526,0,-9,-9,2021,6,0,35,70,1,0,0,4.3601356,4.3601356,.05,.05,.05,0,0,0,0,0,1,1,0,8.0106611,0,61.28,48.88,42.46,54.85,8.333333333333334,1,1,0,0,8,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6956,8476,15125,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4984179,6.3948708,0,0,-950.58636,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.673245,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,186,175443.14,91592.852,108820.59,0,0,0,1269.0768 +6956,8477,15126,-9,15125,-9,1,0,35,0,0,0,2,2,-9,0,4,8.1094971,8.346941,0,0,0,-964.80573,0,3,-9,2021,11,0,38,38,1,2,0,12.228435,12.228435,0,0,0,0,0,0,0,0,1,1,0,4.7979689,0,49,56,-9,-9,7,1,1,0,0,1,6,4,1,382,-13673.224,0,0,0,0,0,1052.3882 +6957,8478,15127,-9,15128,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.47644,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6957,8478,15128,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.9988785,8.1890059,6.1097946,0,0,-982.28473,-9,2,2,2021,12,0,35,0,1,0,0,9.5423994,9.5423994,.05,.05,0,0,0,0,0,0,1,1,0,6.0158257,0,44.49,61.79,-9,-9,5,1,1,0,0,3,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6957,8478,15129,-9,15128,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-934.92523,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6958,8479,15130,15131,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.0689092,5.6311955,6,-1,71.956444,0,-9,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1301661,5.5982776,36.03,35.07,51.77,58.57,8.333333333333334,1,1,0,0,0,7,2,1,595,72256.563,82764.945,0,0,0,0,1302.8467 +6958,8479,15131,15130,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,1,86.304169,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1657491,0,51.77,58.57,36.03,35.07,10,1,1,0,0,0,7,2,1,595,72256.563,82764.945,0,0,0,0,1302.8467 +6959,8480,15132,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,7.6510205,7.7668476,0,0,0,-942.54694,0,3,3,2021,20,7,45,43,1,7,1,6.0025306,6.0025306,0,0,.05,0,0,0,0,2,1,1,0,0,0,26.34,50.67,-9,-9,3.333333333333333,2,3,0,0,4,7,3,1,655,-107238.5,66514.719,0,0,986.65332,0,1574.6266 +6960,8481,15133,15134,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8364458,7.1058054,55,3,-4.2256918,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6500649,53,47,51,46,7,1,1,0,0,0,10,2,1,1662,192604.03,251223.86,0,0,0,5411.7695,1806.777 +6960,8481,15134,15133,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3899879,6.2159266,55,-3,-94.481895,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,23.17909,0,0,1,1,0,0,6.1568203,51,46,53,47,7,1,1,0,0,0,10,2,1,1662,192604.03,251223.86,0,0,0,5411.7695,1806.777 +6961,8482,15135,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.9014692,8.9403076,0,0,0,-1031.5178,-9,1,3,2021,11,1,50,0,1,1,0,16.337938,16.337938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,5,3,4,0,0,9,8,5,1,458,333460.03,350306.41,238814.34,91942.734,0,0,2087.0081 +6962,8483,15136,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.0602,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,3.1032755,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,3,4,1,1,743,0,0,0,0,0,0,484.79828 +6963,8484,15137,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.9662771,6.7340198,0,0,-934.09924,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0767493,37.43,17,-9,-9,8.333333333333334,1,1,0,1,0,2,2,0,205,189980.64,15281.363,76765.273,0,0,0,991.62189 +6964,8485,15138,15139,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8106656,6.9873948,1,-1,14.692875,0,-9,-9,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3172584,7.3094187,54.79,55.86,57.73,41.12,6.666666666666667,1,1,0,0,0,12,4,1,563,1198322.5,587394.5,345455.88,0,0,0,3890.7427 +6964,8485,15139,15138,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.4291201,8.4756813,1,1,-60.057079,0,-9,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.9780102,0,20.63789,0,1,1,0,0,8.8725986,57.73,41.12,54.79,55.86,8.333333333333334,1,1,0,0,0,12,4,1,563,1198322.5,587394.5,345455.88,0,0,0,3890.7427 +6965,8486,15140,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3439341,5.9590044,0,0,-915.79193,0,3,2,2021,4,1,0,0,4,1,0,0,0,0,0,0,1,73.96405,0,676.45612,0,1,1,0,0,6.1948366,65.37,30.39,-9,-9,10,1,1,0,0,3,9,2,1,176,517118.38,315224,508574.25,0,0,2246.8225,1585.7708 +6966,8487,15141,15142,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4689188,8.3775759,0,3,-16,-45.411423,0,2,2,2021,9,0,48,45,1,1,0,10.681549,10.681549,.05,.05,0,0,0,0,0,0,1,1,0,.16972689,0,52,55,37.75,35.42,8,1,1,0,0,1,4,4,1,192.5,234786.84,214234.5,94865.68,59497.125,0,0,1906.464 +6966,8487,15142,15141,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,3,16,147.70743,0,3,3,2021,15,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.766645,0,37.75,35.42,52,55,10,1,1,0,0,3,4,4,1,192.5,234786.84,214234.5,94865.68,59497.125,0,0,1906.464 +6967,8488,15143,-9,15144,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.54095,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,1,0,1738,-42444.859,0,0,0,0,0,912.28784 +6967,8488,15144,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,0,0,-901.04755,-9,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17.53,67.98999999999999,-9,-9,1.666666666666667,4,2,1,1,3,2,1,0,1738,-42444.859,0,0,0,0,0,912.28784 +6968,8489,15145,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.2721348,8.5975771,7.3264399,0,0,-906.19879,0,3,2,2021,13,1,35,37,1,1,0,12.734258,12.734258,.05,.05,0,0,0,0,0,0,1,1,0,7.3507891,6.6906953,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,455,603010.88,451701.44,204397.59,2989.7571,6322.3467,0,1895.365 +6968,8489,15146,-9,15145,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1097.4437,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,4,1,455,603010.88,451701.44,204397.59,2989.7571,6322.3467,0,1895.365 +6969,8490,15147,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-954.33923,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.36,50.58,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,768,44622.316,0,178833.34,0,0,0,258.74188 +6969,8491,15148,15149,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.0921545,8.2183294,0,1,-11,-43.141102,-9,-9,-9,2021,12,1,42,0,1,1,0,9.2746124,9.2746124,0,0,0,0,0,0,0,0,1,1,0,0,0,36.14,57.86,57.33,53.46,6.666666666666667,1,1,0,0,1,10,5,1,663.5,133218.91,41338.473,318284.75,43548.547,0,0,3797.0212 +6969,8491,15149,15148,15147,-9,1,1,42,0,0,0,2,2,-9,0,3,8.4722986,8.108119,0,1,11,-13.672887,0,2,2,2021,12,0,42,40,1,0,0,14.513152,14.513152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.14,57.86,8.333333333333334,1,1,0,0,11,10,5,1,663.5,133218.91,41338.473,318284.75,43548.547,0,0,3797.0212 +6970,8492,15150,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.8166933,7.5289574,0,0,-1041.9696,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4947014,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,407,2218064.5,0,354076.59,0,0,0,1969.6462 +6971,8493,15151,15152,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,7.1504436,7.3427629,0,21,-1,95.359177,0,3,3,2021,17,4,40,40,1,4,0,2.9651845,2.9651845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.92,32.75,42.6,61.6,6.666666666666667,1,1,0,0,11,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8493,15152,15151,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,8.0767536,8.367816,0,23,1,77.887802,0,3,3,2021,14,3,40,38,1,3,0,10.211742,10.211742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.6,61.6,31.92,32.75,5,1,1,0,0,11,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8493,15153,-9,15152,15151,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4179,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8494,15154,-9,15152,15151,1,1,20,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1082.2091,0,3,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,1,0,11,1,1,370,0,0,0,0,0,0,0 +6972,8495,15155,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1787934,6.8338275,0,0,-981.87317,-9,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7790561,6.913425,47.38,41.84,-9,-9,8.333333333333334,4,2,0,0,13,7,2,0,385,249793.97,133585.25,0,0,0,0,111.09824 +6973,8496,15156,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,6.7809243,6.8387341,0,0,-965.59448,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,10.677064,0,0,1,1,0,0,6.9110761,42.37,15,-9,-9,5,1,1,0,0,2,10,2,1,3111,545788.06,158826.22,478557.97,0,0,0,1057.0974 +6974,8497,15157,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1074.3672,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4364038,0,0,1,1,0,2.1452947,0,56.34,35.43,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,552,91976.375,0,-27122.078,0,0,0,1460.9976 +6974,8498,15158,-9,-9,15157,1,1,73,0,0,0,2,2,-9,0,2,0,7.9772983,7.828054,0,0,-1031.6965,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4206309,7.6851192,53.05,47.86,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,251,334896.03,327708.34,147073.14,0,0,0,2520.3682 +6975,8499,15159,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0562901,6.1153917,0,0,-1072.5975,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0323315,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,340,191236.55,59335.621,97265.242,0,3153.561,0,618.72009 +6976,8500,15160,15161,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6396141,8.1891041,0,37,-4,-43.268608,0,2,2,2021,11,0,30,60,1,0,0,7.8742762,7.8742762,0,0,0,0,0,0,0,0,0,0,0,0,0,54.19,36.07,53.47,52.37,6.666666666666667,1,1,0,0,10,2,4,1,324.5,229870.31,33073.578,138000.22,3968.541,9165.6084,0,2086.8906 +6976,8500,15161,15160,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8924875,7.7732081,0,37,4,35.803909,0,2,2,2021,15,3,40,40,1,3,0,5.9761276,5.9761276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.47,52.37,54.19,36.07,5,1,1,0,1,8,2,4,1,324.5,229870.31,33073.578,138000.22,3968.541,9165.6084,0,2086.8906 +6977,8501,15162,-9,15163,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-856.59692,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.71,28.48,-9,-9,5,1,1,0,0,0,4,1,1,562,244707.72,0,137049.64,0,0,0,249.61732 +6977,8502,15163,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,3.5799592,3.3857737,0,0,-994.6604,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,12.269472,0,0,1,1,0,0,3.7589557,50.48,37.55,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,718,107668.26,77366.234,68194.609,0,0,0,1075.1536 +6978,8503,15164,-9,15167,15165,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1093.8527,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15165,15167,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.5256166,8.316906,0,16,-3,-9.1890945,0,1,1,2021,9,0,42,39,1,0,0,15.849819,15.849819,.05,.05,0,0,0,0,0,0,1,1,0,1.0339061,0,55.96,49.93,52.64,38.41,8.333333333333334,1,1,0,0,8,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15166,-9,15167,15165,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.94989,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15167,15165,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,2.1167526,2.1597347,0,16,3,-17.731745,0,3,3,2021,12,0,2,0,1,0,0,.41668302,.41668302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.64,38.41,55.96,49.93,5,1,1,0,1,5,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6979,8504,15168,15169,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.8726516,7.6200356,5,5,-42.107307,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.8298693,7.6493177,60.02,56.42,47.42,14.98,1.666666666666667,1,1,0,0,0,5,3,1,928.5,766838.06,593672.13,65088.672,0,0,0,2797.2417 +6979,8504,15169,15168,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.1843615,6.0817618,5,-5,46.685585,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,1,0,44.459835,0,0,1,1,0,7.5364175,5.8507166,47.42,14.98,60.02,56.42,6.666666666666667,1,1,0,0,2,5,3,1,928.5,766838.06,593672.13,65088.672,0,0,0,2797.2417 +6980,8505,15170,15171,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,0,0,0,10,8,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.5267973,0,42.9,49.72,41.84,60.5,8.333333333333334,1,1,0,0,0,9,1,1,354,298986.06,6679.3672,324821.31,0,35157.742,1322.73,8866.1113 +6980,8505,15171,15170,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,0,0,0,10,-8,0,0,1,1,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.73426139,0,41.84,60.5,42.9,49.72,8.333333333333334,2,3,1,0,7,9,1,1,354,298986.06,6679.3672,324821.31,0,35157.742,1322.73,8866.1113 +6981,8506,15172,15173,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,7.151103,7.0078082,0,12,-3,42.241051,0,2,2,2021,17,7,22,22,1,7,0,5.5117674,5.5117674,0,0,0,0,0,0,0,0,1,1,0,0,0,52.63,19.67,60.49,29.62,3.333333333333333,1,1,0,0,13,11,3,1,268.5,657335.13,381205.03,188513.31,22235.688,0,0,1804.3519 +6981,8506,15173,15172,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,7.2751441,7.4585967,6.1110263,12,3,127.21245,0,3,3,2021,10,1,25,0,1,1,0,5.5634041,5.5634041,.05,.05,0,0,0,0,0,0,1,1,0,0,6.5777917,60.49,29.62,52.63,19.67,6.666666666666667,1,1,0,0,13,11,3,1,268.5,657335.13,381205.03,188513.31,22235.688,0,0,1804.3519 +6982,8507,15174,15175,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,6.8760471,6.8318958,0,39,1,21.105061,0,3,3,2021,24,12,15,15,1,12,0,9.1406374,9.1406374,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.99,42.92,29.57,37.8,1.666666666666667,1,1,0,1,5,10,2,0,630,379872.25,356145.69,232318.56,0,0,0,721.66046 +6982,8507,15175,15174,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,4.8299365,4.9261088,39,-1,-17.040102,0,-9,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.0093408,0,29.57,37.8,36.99,42.92,5,1,1,1,1,0,10,2,0,630,379872.25,356145.69,232318.56,0,0,0,721.66046 +6982,8508,15176,15177,15175,15174,1,0,28,0,0,0,2,2,-9,0,4,7.855092,7.7907472,0,3,-6,-19.521576,0,3,3,2021,6,0,36,10,1,0,0,7.0937653,7.0937653,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,34.56,62.74,8.333333333333334,1,1,0,0,5,10,4,0,418,85630.055,-9033.2109,173282.53,143479.39,0,0,2635.1831 +6982,8508,15177,15176,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.6492825,7.893621,0,3,6,-63.639652,0,-9,-9,2021,18,5,36,10,1,5,0,6.8956985,6.8956985,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,34.56,62.74,54.2,57.49,1.666666666666667,1,1,0,0,2,10,4,0,418,85630.055,-9033.2109,173282.53,143479.39,0,0,2635.1831 +6983,8509,15178,15179,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7360258,8.6050005,4.8733039,41,-2,35.045933,0,3,2,2021,10,0,55,60,1,0,0,11.03435,11.03435,.05,.05,0,0,0,0,0,0,0,0,0,5.2017012,5.1528902,58.32,50.22,52.65,48.94,6.666666666666667,1,1,0,0,11,9,5,1,1964,525449.13,446026.13,171300.69,0,0,0,3251.2356 +6983,8509,15179,15178,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.455337,6.8404832,0,41,2,-22.36409,0,2,2,2021,12,0,25,24,1,0,0,5.531858,5.531858,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.65,48.94,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,1964,525449.13,446026.13,171300.69,0,0,0,3251.2356 +6984,8510,15180,15181,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.7737942,9.4831314,0,9,3,-27.877817,0,2,1,2021,8,0,50,80,1,0,0,37.695049,37.695049,.05,.05,0,0,0,0,0,0,0,0,0,7.9413705,0,46.08,57.2,51.73,58.82,8.333333333333334,1,1,0,0,10,7,5,1,1270,1957824,375921.72,1904755.6,303003.22,8657.7617,14848.398,13536.651 +6984,8510,15181,15180,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.890871,9.1456699,0,9,-3,82.601776,0,2,-9,2021,7,0,45,40,1,0,0,21.24341,21.24341,0,0,0,0,0,0,0,2,0,0,0,7.7219725,0,51.73,58.82,46.08,57.2,8.333333333333334,1,1,0,0,10,7,5,1,1270,1957824,375921.72,1904755.6,303003.22,8657.7617,14848.398,13536.651 +6985,8511,15182,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4540634,8.4283648,0,0,0,-1093.313,0,2,2,2021,11,0,38,38,1,0,0,16.014341,16.014341,.05,.05,0,0,0,0,0,0,0,0,0,3.7730062,0,52.99,51.28,-9,-9,3.333333333333333,1,1,0,0,15,9,5,1,640,756814.63,487448.88,214726.72,0,0,0,1949.6862 +6986,8512,15183,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.1972094,7.9702268,0,0,0,-885.78925,0,2,2,2021,20,9,40,38,1,9,0,9.5838499,9.5838499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.53,64.73,-9,-9,3.333333333333333,1,1,0,0,9,11,4,1,517,72016.844,-51096.09,0,0,0,0,1467.9521 +6987,8513,15184,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.478,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,262,-166006.73,0,0,0,-251.12074,0,2053.0408 +6987,8514,15185,-9,15184,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4135776,7.5290093,0,0,0,-926.86365,0,3,-9,2021,15,3,30,30,1,3,0,5.3244863,5.3244863,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,1451,137482.52,-114826.47,0,0,0,0,630.31238 +6987,8515,15186,-9,15184,-9,1,1,30,0,0,0,3,3,-9,1,3,0,0,0,0,0,-955.93536,0,3,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,526,136892.83,0,0,0,0,0,1019.9594 +6988,8516,15187,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,7.3352923,7.7565713,0,0,-1209.9037,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.4326105,54.45,30.7,-9,-9,8.333333333333334,1,1,0,0,3,11,3,0,201,534775.44,398934.13,103254.36,0,0,0,1808.0879 +6989,8517,15188,15189,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.315341,8.3814554,0,12,6,-31.757765,0,-9,-9,2021,8,1,32,40,1,1,0,12.93454,12.93454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.77,37.66,49.04,55.86,8.333333333333334,1,1,0,0,13,4,4,1,1033.5,888825.06,598251.5,191554.09,0,0,1176.0919,2659.7109 +6989,8517,15189,15188,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.6355801,7.6283083,0,12,-6,33.432945,0,3,3,2021,12,0,30,15,1,0,0,8.2548351,8.2548351,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,58.77,37.66,6.666666666666667,1,1,0,0,13,4,4,1,1033.5,888825.06,598251.5,191554.09,0,0,1176.0919,2659.7109 +6989,8518,15190,-9,-9,15188,1,0,35,0,0,0,3,3,-9,0,3,7.9649887,7.9649591,0,0,0,-1039.2327,0,3,2,2021,10,0,35,35,1,0,1,7.9304948,7.9304948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,52,-9,-9,5,1,1,0,0,13,4,3,1,131,-17244.678,88866.703,0,0,0,0,1152.8132 +6990,8519,15191,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,7.5729594,7.2448363,0,0,-914.29486,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.312798,51.69,46.47,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,364,340868.25,213129.14,126075.59,0,0,0,2064.3613 +6991,8520,15192,15193,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.640028,8.6124725,0,18,1,19.39432,0,2,2,2021,11,0,43,48,1,0,0,10.964804,10.964804,.05,.05,0,0,0,0,0,7,1,1,0,0,0,53.92,34.27,32.2,24.76,6.666666666666667,1,1,0,0,12,4,4,1,551,309049.69,123737.09,96942.727,0,0,2066.6072,2518.3208 +6991,8520,15193,15192,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,18,-1,-65.645241,0,2,1,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.2,24.76,53.92,34.27,5,1,1,1,0,4,4,4,1,551,309049.69,123737.09,96942.727,0,0,2066.6072,2518.3208 +6992,8521,15194,-9,15196,15197,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.23956,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15195,-9,15196,15197,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.5215,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15196,15197,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.5373607,7.6699648,0,11,0,-10.430965,0,2,2,2021,8,0,40,32,1,0,0,5.2912726,5.2912726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49,58,8.333333333333334,1,1,0,0,13,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15197,15196,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.0501919,8.1161757,0,11,0,55.661198,-9,2,2,2021,12,0,39,0,1,0,0,10.610885,10.610885,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,57.16,56.15,5,1,1,0,0,9,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6993,8522,15198,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.0917449,7.813539,0,0,-1040.4751,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6062856,7.4141669,45.81,44.2,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,151,735500.31,538997.25,269073.66,0,7233.4155,0,1953.6075 +6994,8523,15199,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1035.4861,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,1,1,0,1,0,7,1,0,761,-130153.98,0,0,0,0,0,1871.0575 +6995,8524,15200,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,7.1265526,7.616241,0,0,-1044.6716,0,2,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4819994,35.99,16.11,-9,-9,0,1,1,0,0,5,2,3,1,637,848850,822295.56,95018.75,0,0,0,1347.853 +6996,8525,15201,15202,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.8795695,8.0307913,46,-2,9.8963652,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1570449,7.8593497,55.77,47.78,47.53,36.31,8.333333333333334,1,1,0,0,4,8,3,1,512.5,1380093.8,242180.25,847650.63,0,0,0,2261.9487 +6996,8525,15202,15201,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,11,2,-96.439545,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.53,36.31,55.77,47.78,3.333333333333333,1,1,0,0,7,8,3,1,512.5,1380093.8,242180.25,847650.63,0,0,0,2261.9487 +6997,8526,15203,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.1463699,7.9844365,4.8637686,0,0,-1011.7941,0,3,2,2021,6,0,42,45,1,0,0,8.2262287,8.2262287,.05,.05,0,0,0,0,0,0,0,0,0,6.2728171,5.5758781,61.61,37.79,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,106,272189.38,256418.91,0,0,0,0,2753.668 +6998,8527,15204,-9,15206,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-797.08032,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,4,2,-9,0,0,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6998,8527,15205,-9,15206,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.61469,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,2,-9,0,0,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6998,8527,15206,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.2543597,6.9461293,0,0,0,-981.92651,0,3,2,2021,19,6,16,20,1,6,0,9.7739792,9.7739792,0,0,0,0,0,0,0,0,1,0,1,0,0,24.13,60.45,-9,-9,3.333333333333333,4,2,0,0,6,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6999,8528,15207,15208,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,48,1,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.6,32.85,48.23,50.71,8.333333333333334,1,1,0,0,0,10,1,0,759.5,36927.586,0,179539.27,0,0,0,1019.1116 +6999,8528,15208,15207,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,49,-1,0,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.23,50.71,49.6,32.85,5,1,1,0,0,0,10,1,0,759.5,36927.586,0,179539.27,0,0,0,1019.1116 +7000,8529,15209,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.25842,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.64,45.7,-9,-9,10,1,1,0,0,0,2,2,0,895,28654.178,0,123467.02,0,0,0,236.22325 +7001,8530,15210,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,4.825181,4.9984708,0,0,-898.18048,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5178623,44.35,38.91,-9,-9,6.666666666666667,1,1,0,0,4,12,2,0,371,28005.441,126738.05,139590.91,17096.768,0,0,1204.4518 +7002,8531,15211,15212,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0327606,7.8902659,0,2,0,93.300697,0,-9,-9,2021,10,1,37,35,1,1,0,8.5547428,8.5547428,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.2,57.49,10,1,1,0,0,6,6,4,0,2282,77068.578,109299.28,0,0,6244.8271,0,1579.3982 +7002,8531,15212,15211,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7650623,7.7538671,0,2,0,-49.487152,0,2,3,2021,7,0,37,38,1,0,0,6.6081767,6.6081767,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,5,6,4,0,2282,77068.578,109299.28,0,0,6244.8271,0,1579.3982 +7003,8532,15213,-9,15215,15214,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1193.7795,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8532,15214,15215,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,8.618289,8.4751253,0,10,2,28.922497,0,3,3,2021,10,1,37,38,1,1,0,16.558685,16.558685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.99,51.26,36.88,29.34,8.333333333333334,1,1,0,1,11,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8532,15215,15214,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.7526336,7.9972486,6.0301142,10,-2,-71.407303,0,3,3,2021,24,10,43,36,1,10,0,6.1600885,6.1600885,.05,.05,0,0,0,0,0,0,1,1,0,0,6.1651402,36.88,29.34,46.99,51.26,8.333333333333334,1,1,0,1,11,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8533,15216,-9,15215,15214,1,0,25,0,1,0,1,1,-9,0,5,7.9084902,8.0336313,0,0,0,-1015.9017,0,2,2,2021,9,1,37,40,1,1,1,12.365823,12.365823,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,8,4,1,395,94250.617,0,0,0,0,0,1405.1904 +7003,8534,15217,15218,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.8846612,7.1066647,0,3,0,-11.416252,0,-9,-9,2021,8,0,12,12,1,0,0,11.322994,11.322994,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.74,55.09,6.666666666666667,1,1,0,0,4,8,2,1,900,32153.664,0,0,0,0,0,1061.922 +7003,8534,15218,15217,15215,15214,1,1,20,0,1,1,3,0,0,0,3,0,0,0,3,0,16.768908,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,57.33,53.46,8.333333333333334,1,1,0,0,13,8,2,1,900,32153.664,0,0,0,0,0,1061.922 +7004,8535,15219,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.635623,6.4572692,0,0,-1104.5815,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5713453,62.05,40.82,-9,-9,10,1,1,0,0,4,7,2,0,1015,230974.33,187108.16,106973.98,0,-451.95175,0,1024.2227 +7005,8536,15220,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,6.764924,6.5941706,19,12,177.07553,0,-9,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3293228,6.8198342,11.96,51.7,45.98,45.77,0,1,1,1,1,8,6,2,1,3871,194449.05,0,0,0,0,0,1165.2039 +7005,8537,15221,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,6.2999964,6.2301145,0,9,-12,-55.206654,-9,-9,-9,2021,9,0,10,0,1,0,0,6.8243613,6.8243613,0,0,0,0,0,0,0,0,1,1,0,0,0,45.98,45.77,11.96,51.7,5,1,1,0,0,8,6,2,1,1469,85075.984,30643.465,0,0,0,0,647.2644 +7006,8538,15222,15223,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.1514473,9.4518785,8.5414982,27,-1,-39.938103,0,2,2,2021,8,1,90,63,1,1,0,10.935681,10.935681,0,0,0,0,0,0,0,0,0,0,0,6.4442196,8.7445297,51.24,58.84,57.46,45.44,8.333333333333334,1,1,0,0,13,12,5,1,319.5,202095.88,59637.203,229751.09,0,39256.336,2129.9878,6955.9453 +7006,8538,15223,15222,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.6659937,8.379982,0,27,1,184.25085,0,2,2,2021,5,0,40,37,1,0,0,20.31189,20.31189,.05,.05,0,0,0,0,0,0,0,0,0,3.1610882,0,57.46,45.44,51.24,58.84,8.333333333333334,1,1,0,0,14,12,5,1,319.5,202095.88,59637.203,229751.09,0,39256.336,2129.9878,6955.9453 +7007,8539,15224,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.1991463,9.2136602,6.5401077,19,-18,61.918854,0,1,2,2021,7,0,45,60,1,0,0,21.846613,21.846613,.05,.05,0,0,0,0,0,0,1,1,0,.21170664,6.8799877,58.05,54.52,53.1,32.4,8.333333333333334,1,1,0,0,11,7,5,1,358,149154.58,-93661.766,365608.47,101242.52,4362.936,4230.0244,2948.5547 +7007,8540,15225,-9,-9,-9,1,0,65,0,1,0,3,3,-9,0,2,1.6238695,2.8173749,1.9846557,19,18,-136.99925,0,-9,-9,2021,11,0,37,38,1,0,0,.013937764,.013937764,0,0,0,1,0,.34000963,0,0,1,1,0,0,2.1106732,53.1,32.4,58.05,54.52,3.333333333333333,1,1,0,0,14,7,5,1,2319,52349.285,0,150356.08,0,0,0,84.804253 +7008,8541,15226,15227,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.2494822,8.3808823,0,28,1,-90.551598,0,3,3,2021,2,0,60,50,1,0,0,12.459435,12.459435,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,47.79,56.46,57.53,21.22,8.333333333333334,1,1,0,0,9,8,4,1,786.5,493612.66,305991.69,308265.25,24249.68,0,0,3259.9575 +7008,8541,15227,15226,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.2896347,6.9547305,0,28,-1,137.47983,0,2,2,2021,14,3,4,15,1,3,0,34.109341,34.109341,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.53,21.22,47.79,56.46,6.666666666666667,2,3,0,0,8,8,4,1,786.5,493612.66,305991.69,308265.25,24249.68,0,0,3259.9575 +7009,8542,15228,-9,-9,-9,1,0,54,0,1,0,3,3,-9,1,4,7.5527134,7.5241861,5.5172944,0,0,-916.14825,0,2,-9,2021,8,0,21,20,1,0,0,10.518776,10.518776,.05,.05,0,0,0,0,0,0,1,1,0,5.7492223,0,58.87,51.29,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,1906,133939.47,134575.95,0,0,653.03693,484.12445,2499.7358 +7009,8542,15229,-9,15228,-9,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1136.3424,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,3,1,1906,133939.47,134575.95,0,0,653.03693,484.12445,2499.7358 +7010,8543,15230,15231,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.480278,8.6273785,11,-2,-26.896877,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.5461559,8.5077591,54.19,39.69,59.46,46.99,8.333333333333334,1,1,0,0,8,12,5,1,2271,1947298.5,1768769,169495.33,0,2021.0914,3376.2874,3760.4812 +7010,8543,15231,15230,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1746435,8.3302813,11,2,-14.190864,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4151134,59.46,46.99,54.19,39.69,8.333333333333334,1,1,0,0,1,12,5,1,2271,1947298.5,1768769,169495.33,0,2021.0914,3376.2874,3760.4812 +7011,8544,15232,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3833847,8.3601713,0,0,0,-1038.8014,0,3,3,2021,9,1,46,40,1,1,0,12.571459,12.571459,.05,.05,0,0,0,0,0,0,0,0,0,5.1750197,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,752,867088.5,361250.81,196627.47,0,0,0,1811.0883 +7012,8545,15233,-9,15234,15235,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1032.4341,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.13,57.85,-9,-9,0,1,1,1,1,5,8,1,0,1322,0,0,0,0,0,0,223.99889 +7012,8546,15234,15235,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.44,55.06,43.34,33.08,10,2,3,0,0,0,8,1,0,568,198116,3495.6113,166781.41,0,0,0,1609.1538 +7012,8546,15235,15234,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,3,3,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,14.812767,0,0,1,1,0,0,0,43.34,33.08,47.44,55.06,8.333333333333334,1,1,0,0,0,8,1,0,568,198116,3495.6113,166781.41,0,0,0,1609.1538 +7013,8547,15236,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,7.9145589,7.8626494,0,0,-1045.8787,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2010479,7.624125,53.63,35.18,-9,-9,6.666666666666667,1,1,0,0,13,4,3,0,1279,902995.63,844031.63,127646.44,0,3426.6001,0,1030.5366 +7013,8548,15237,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1736574,8.5467844,0,0,0,-1048.5637,-9,-9,-9,2021,16,5,45,0,1,5,0,13.627198,13.627198,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.69,58.35,-9,-9,8.333333333333334,1,1,0,0,3,4,5,0,380,77608,-100795.15,0,0,-709.53717,0,1837.7263 +7014,8549,15238,15239,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,5.7420135,5.9953961,0,41,-2,-27.086296,0,3,3,2021,16,4,25,25,1,4,0,1.9755344,1.9755344,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.08,49.23,45.42,41.86,3.333333333333333,1,1,0,1,4,9,3,0,798.5,604703.63,507834.56,0,0,0,0,1561.0903 +7014,8549,15239,15238,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.8956013,7.8764625,6.0117326,41,2,-154.37929,0,-9,3,2021,15,4,36,39,1,4,0,8.9320631,8.9320631,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4993153,45.42,41.86,37.08,49.23,3.333333333333333,1,1,0,1,11,9,3,0,798.5,604703.63,507834.56,0,0,0,0,1561.0903 +7014,8550,15240,-9,15238,15239,1,0,32,0,0,0,2,2,-9,0,3,8.0459795,7.9740047,0,0,0,-975.64178,0,2,3,2021,11,0,54,51,1,0,1,6.032516,6.032516,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,45.88,-9,-9,5,1,1,0,0,10,9,4,0,889,67794.781,0,0,0,0,0,958.54297 +7014,8551,15241,-9,15238,15239,1,1,25,0,0,0,2,2,-9,0,3,4.629745,4.5290384,0,0,0,-908.00623,0,2,3,2021,15,3,35,40,1,3,1,.31161875,.31161875,0,0,0,0,0,0,0,0,1,1,0,0,0,49.27,39.58,-9,-9,1.666666666666667,1,1,0,0,7,9,2,0,232,-127338.32,0,0,0,0,0,392.84238 +7015,8552,15242,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,0,0,-947.26489,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,7,10,1,0,219,86107.023,0,0,0,0,0,785.92224 +7016,8553,15243,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6122904,6.1231017,0,0,-1106.5714,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0613084,5.8331895,50,47,-9,-9,7,1,1,0,0,0,4,2,0,1943,29635.422,70429.016,0,0,0,0,1448.2963 +7017,8554,15244,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.2278614,8.1044483,0,0,-1104.2084,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4092774,8.245491,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,4,5,4,1,194,484366.47,118923.2,27983.424,0,0,0,2684.6221 +7018,8555,15245,-9,15246,15247,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.8564,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8555,15246,15247,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4331903,7.7830076,0,23,-4,-14.727637,0,3,2,2021,12,0,25,25,1,0,0,8.9650049,8.9650049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52.4,52.91,5,1,1,0,0,14,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8555,15247,15246,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.0359106,8.1435137,0,11,4,-16.981293,0,2,2,2021,9,0,40,40,1,0,0,6.574214,6.574214,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,50.03,52.62,8.333333333333334,1,1,0,0,9,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8556,15248,-9,15246,15247,1,1,19,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1009.282,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0458236,0,39,45,-9,-9,5,1,1,0,0,0,2,1,1,691,125267.25,0,105115.37,0,0,0,581.80865 +7019,8557,15249,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.6683288,7.6540203,0,0,0,-998.91461,0,2,3,2021,10,0,24,23,1,0,0,8.3051233,8.3051233,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,13,3,0,219,25967.088,-36900.762,0,0,0,0,1873.239 +7019,8558,15250,-9,15249,-9,1,1,18,0,0,0,2,2,-9,0,4,6.8578558,6.7445726,0,0,0,-969.42023,0,1,-9,2021,19,8,18,0,1,8,1,5.0686393,5.0686393,.05,.05,0,0,0,0,0,2,1,1,0,0,0,29.09,63.45,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,514,-139860.53,-25695.646,0,0,0,0,890.68921 +7020,8559,15251,-9,-9,-9,1,0,56,1,1,0,2,2,-9,0,4,8.0321026,8.1966047,0,0,0,-1043.9763,-9,3,3,2021,6,0,36,0,1,0,0,9.631073,9.631073,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,1895,384262.22,143005.36,94193.039,113110.59,5298.0918,0,1769.0223 +7020,8560,15252,-9,15251,-9,1,0,22,1,1,0,2,2,-9,0,4,7.8830452,8.0132256,0,0,0,-1101.162,-9,2,-9,2021,6,0,38,0,1,0,1,11.368983,11.368983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,499,-98457.625,-43152.941,0,0,0,0,705.59418 +7021,8561,15253,15256,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,8.8438911,9.0605621,0,19,11,5.1266575,0,2,2,2021,24,10,39,42,1,10,0,25.500334,25.500334,0,0,0,0,0,0,0,14.5,1,1,0,4.6716743,0,48.14,53.42,29.15,62.08,3.333333333333333,1,1,0,0,8,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15254,-9,15256,15253,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.9192,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15255,-9,15256,15253,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.4716,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15256,15253,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.302052,7.0770984,0,19,-11,13.110606,0,3,-9,2021,24,12,8,10,1,12,0,20.578566,20.578566,0,0,0,0,0,0,0,7,1,1,0,0,0,29.15,62.08,48.14,53.42,8.333333333333334,1,1,0,0,8,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7022,8562,15257,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9294677,6.3048129,0,0,-1053.5835,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2430439,6.6198373,52.1,50.19,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,447,415645.81,144102.39,94610.695,0,0,0,-668.3728 +7023,8563,15258,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.6451373,6.5605092,0,0,-1008.7657,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4626241,7.1496005,70.64,17.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,543,36194.344,98658.07,46936.738,0,0,0,1325.8513 +7024,8564,15259,15260,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,6.5722747,6.6610436,0,23,-6,-57.521553,0,2,2,2021,12,0,12,14,1,0,0,8.3504581,8.3504581,0,0,0,0,0,0,0,114,1,1,0,0,0,52,54.51,36.51,28.13,8.333333333333334,1,1,0,0,4,10,2,1,1106,131728.83,0,0,0,3951.5676,137.30139,811.56921 +7024,8564,15260,15259,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,11,6,40.097717,-9,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.51,28.13,52,54.51,5,1,1,0,0,0,10,2,1,1106,131728.83,0,0,0,3951.5676,137.30139,811.56921 +7025,8565,15261,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.9984374,8.0479603,0,0,0,-1093.5865,0,2,3,2021,18,6,41,46,1,6,0,8.6895552,8.6895552,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.74,38.46,-9,-9,1.666666666666667,1,1,0,0,8,10,4,0,656,157252.47,-75325.344,314910.53,0,0,0,2442.7029 +7026,8566,15262,15263,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.278017,7.2689662,49,-1,-40.369785,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2509267,7.3155088,58.31,42.52,39.88,50.52,8.333333333333334,1,1,0,0,3,13,2,1,357,414399.28,338740.44,93572.094,0,0,0,1317.3755 +7026,8566,15263,15262,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.0033803,4.8392415,49,1,43.176239,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4380689,4.9871373,39.88,50.52,58.31,42.52,8.333333333333334,1,1,0,0,0,13,2,1,357,414399.28,338740.44,93572.094,0,0,0,1317.3755 +7027,8567,15264,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.7608485,6.8304448,0,0,-1019.5288,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,1.1854187,4.7191143,25.909637,0,1,1,0,2.4664865,6.6809287,34.29,30.34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,793,-158628.64,-18818.094,0,0,0,0,1629.761 +7028,8568,15265,15266,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.1664915,8.0311203,0,17,-1,-84.932487,0,3,3,2021,12,0,78,38,1,0,0,6.371655,6.371655,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,8.333333333333334,1,1,0,0,15,10,5,1,252.5,531309.75,209358.08,228467.53,0,10832.104,0,3610.1873 +7028,8568,15266,15265,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.433814,8.6132383,0,16,1,.16056436,0,2,2,2021,6,0,39,37,1,0,0,17.969461,17.969461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,15,10,5,1,252.5,531309.75,209358.08,228467.53,0,10832.104,0,3610.1873 +7029,8569,15267,15268,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,9.0807285,8.9726572,0,11,1,87.029076,0,1,1,2021,9,1,39,39,1,1,0,23.164022,23.164022,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,55.96,49.93,8.333333333333334,1,1,0,0,12,7,5,0,1162.5,1031903.5,417148,238824.5,77815.711,0,0,5245.9883 +7029,8569,15268,15267,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.685133,9.1053085,0,11,-1,49.286991,0,2,2,2021,9,0,45,55,1,0,0,21.950014,21.950014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,56.19,46.16,8.333333333333334,1,1,0,0,14,7,5,0,1162.5,1031903.5,417148,238824.5,77815.711,0,0,5245.9883 +7030,8570,15269,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1047.0165,0,2,-9,2021,11,0,0,13,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,7,4,1,0,234,-181610.33,0,0,0,0,0,-70.558746 +7031,8571,15270,15271,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.045722,9.1983118,0,10,-3,13.232158,0,2,-9,2021,7,0,42,38,1,0,0,19.459009,19.459009,0,0,0,0,0,0,0,0,0,0,0,4.2679486,0,61.28,35.65,46.56,50.26,8.333333333333334,1,1,0,0,11,12,5,1,1132.5,2258386,1647607.8,388227,0,0,0,2751.9707 +7031,8571,15271,15270,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,10,3,.0011797885,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,4.1374331,0,46.56,50.26,61.28,35.65,8.333333333333334,1,1,0,0,0,12,5,1,1132.5,2258386,1647607.8,388227,0,0,0,2751.9707 +7032,8572,15272,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6306596,7.6390176,0,0,0,-976.23694,0,-9,-9,2021,6,0,48,59,1,0,0,6.4466214,6.4466214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,6,5,4,0,1446,-41439.438,-7605.5337,0,0,0,0,1787.849 +7033,8573,15273,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8882246,7.4440222,0,0,0,-1055.485,0,2,2,2021,10,1,33,38,1,1,0,8.0460577,8.0460577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,66.34,49.42,-9,-9,5,1,1,0,0,11,1,3,1,2806,34327.91,78831.617,0,0,2795.8887,0,1378.1765 +7033,8574,15274,-9,15273,-9,1,1,25,0,0,0,2,2,-9,0,4,8.4377632,8.2597713,0,0,0,-901.12109,0,2,2,2021,9,3,53,44,1,3,1,9.2067623,9.2067623,.05,.05,0,0,0,0,0,0,0,0,0,7.0327902,0,56.18,42.45,-9,-9,0,1,1,0,0,9,1,4,1,682,83160.852,75925.688,0,0,4595.5796,0,766.27362 +7034,8575,15275,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,2,7.8326058,7.9236913,0,0,0,-1046.7861,0,2,2,2021,15,3,38,38,1,3,0,7.6658845,7.6658845,0,0,.05,0,0,0,0,0,1,1,0,0,0,37.02,37.37,-9,-9,5,1,1,0,0,10,6,3,1,893,-141656.97,-32037.086,0,0,9675.833,0,1846.6293 +7035,8576,15276,15277,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.987525,7.2404232,54,-3,6.5388193,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.4228413,7.2060184,55.36,54.24,45.14,31.84,8.333333333333334,1,1,0,0,4,9,2,1,2294,725010.5,271437.88,432371.44,0,0,0,1918.1128 +7035,8576,15277,15276,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,54,3,88.384315,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8071129,0,45.14,31.84,55.36,54.24,8.333333333333334,1,1,0,0,0,9,2,1,2294,725010.5,271437.88,432371.44,0,0,0,1918.1128 +7036,8577,15278,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,7.2278814,7.2559996,0,0,-986.90057,0,2,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,2.8477728,0,21.377165,0,1,1,0,5.0612683,6.9290533,60.64,24.61,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,686,755026.81,20602.596,671875.75,0,0,0,1094.48 +7037,8578,15279,-9,15280,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.0483,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1283.5,192578.38,40984.852,178947.28,0,0,0,2169.8511 +7037,8578,15280,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.637495,8.3435268,0,0,0,-898.65326,0,1,1,2021,9,0,25,40,1,0,0,23.574184,23.574184,0,0,0,0,0,0,0,0,1,1,0,4.7786417,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,1283.5,192578.38,40984.852,178947.28,0,0,0,2169.8511 +7038,8579,15281,-9,15282,15283,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.6332,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7038,8579,15282,15283,-9,-9,1,0,39,1,1,0,1,1,-9,1,1,8.4645491,8.7687302,0,7,2,-68.092072,0,2,2,2021,19,8,40,40,1,8,0,13.939852,13.939852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.09,23.78,35.8,59.5,8.333333333333334,1,1,0,0,12,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7038,8579,15283,15282,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,9.0536804,9.322299,0,7,-2,48.475746,0,-9,-9,2021,11,3,37,40,1,3,0,31.35281,31.35281,.05,.05,0,0,0,0,0,2,1,1,0,6.5310359,0,35.8,59.5,46.09,23.78,6.666666666666667,1,1,0,0,7,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7039,8580,15284,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.6923008,7.7951636,0,0,-857.22931,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8446841,7.5211892,53.56,36.43,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,2812,699248.5,451385.19,345910.25,0,2752.4783,0,1244.8751 +7040,8581,15285,15287,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,9.0687323,9.2558575,0,21,1,16.765507,0,2,2,2021,17,5,45,45,1,5,0,21.904703,21.904703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.99,57.05,54.67,57.49,6.666666666666667,1,1,0,0,13,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8581,15286,-9,15287,15285,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5065,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8581,15287,15285,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,9.1314211,8.7895412,0,21,-1,-30.86454,0,1,1,2021,10,0,38,40,1,0,0,19.917131,19.917131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,31.99,57.05,8.333333333333334,1,1,0,0,13,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8582,15288,-9,15287,15285,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1014.5948,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,5,1,1,0,0,1,2,1,1,239,314276.25,0,152589.23,0,0,0,-5.7922363 +7041,8583,15289,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.6518087,9.4968948,0,0,0,-982.08759,0,2,1,2021,11,0,45,47,1,0,0,32.147526,32.147526,0,0,0,0,0,0,0,0,0,0,0,4.012917,0,52.97,51.29,-9,-9,6.666666666666667,1,1,0,0,13,1,5,1,249,1011527.6,594520.06,0,0,1588.1306,0,3730.9622 +7042,8584,15290,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,0,0,-980.9068,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,23.76,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15291,-9,15290,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1007.5095,-9,2,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,43.11,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15292,-9,15290,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.9475,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15293,-9,15290,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.60773,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7043,8585,15294,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.6739254,7.5645504,0,0,0,-994.34363,-9,2,2,2021,9,0,39,0,1,0,0,5.8358135,5.8358135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,6,3,1,1499,-86976.227,80676.547,0,0,0,6437.4224,1084.1447 +7044,8586,15295,15296,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8331347,8.3824577,0,14,-1,-49.370529,0,2,2,2021,10,0,37,53,1,0,0,24.179373,24.179373,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,47.49,55.02,6.666666666666667,1,1,0,0,9,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7044,8586,15296,15295,-9,-9,1,1,40,0,1,0,1,1,-9,1,4,8.593132,8.6709042,6.7610588,12,1,-77.00779,0,2,1,2021,9,1,37,37,1,1,0,14.150784,14.150784,.05,.05,0,0,0,0,0,2,1,1,0,7.6750026,0,47.49,55.02,49.86,55.31,8.333333333333334,1,1,0,0,11,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7044,8586,15297,-9,15295,15296,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.53967,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7045,8587,15298,15299,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,7.933238,7.99891,0,10,4,75.531822,0,3,3,2021,11,0,40,40,1,0,0,8.0650692,8.0650692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.57,52.88,51.1,38.32,3.333333333333333,2,3,0,0,12,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15299,15298,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,14,-4,67.524979,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.1,38.32,49.57,52.88,1.666666666666667,2,3,1,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15300,-9,15299,15298,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-995.29669,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15301,-9,15299,15298,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15302,-9,15299,15298,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.08624,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7046,8588,15303,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,5,0,0,0,0,0,-976.60052,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,27.9,67.39,-9,-9,0,3,4,0,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15304,-9,15303,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.85498,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15305,-9,15303,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.6816,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15306,-9,15303,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.65826,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7047,8589,15307,15308,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,9.9964113,9.9183731,0,8,0,-37.193367,0,2,1,2021,6,0,40,35,1,0,0,64.942696,64.942696,.05,.05,0,0,0,0,0,0,1,1,0,7.7354388,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,1175.5,1177723.1,443392.28,268264.19,0,0,0,8719.9551 +7047,8589,15308,15307,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,6.1649218,6.0312123,0,8,0,11.56782,0,2,3,2021,6,0,10,7,1,0,0,4.9765015,4.9765015,.05,.05,0,0,0,0,0,0,1,1,0,7.1516514,0,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,10,5,5,1,1175.5,1177723.1,443392.28,268264.19,0,0,0,8719.9551 +7048,8590,15309,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.7359972,8.7798071,0,0,0,-1010.6017,0,2,2,2021,9,0,60,55,1,0,0,13.174129,13.174129,.05,.05,0,0,0,0,0,0,0,0,0,6.0312223,0,50.03,39.39,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,2148,609808.5,338804.34,284239.91,56834.836,0,0,2200.1443 +7048,8591,15310,-9,15309,-9,1,0,26,0,0,0,2,2,-9,0,3,8.2323122,8.5413799,0,0,0,-989.3905,0,1,-9,2021,12,2,37,45,1,2,1,10.762084,10.762084,.05,.05,0,0,0,0,0,0,0,0,0,.44276652,0,38.86,59.06,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,521,92676.766,-9212.0557,0,0,0,0,1215.3489 +7048,8592,15311,-9,-9,-9,1,0,25,0,0,0,3,3,-9,0,4,7.5124245,7.8812742,0,0,0,-1044.2255,0,-9,-9,2021,11,0,45,45,1,2,0,5.9583473,5.9583473,0,0,0,0,0,0,0,0,0,0,0,0,0,42.08,53.5,-9,-9,5,1,1,0,0,1,9,3,1,313,163248.41,0,0,0,1700.8777,0,810.36517 +7049,8593,15312,15313,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,33,-2,-158.68449,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3147571,0,51.77,58.57,62.39,56.71,8.333333333333334,1,1,0,0,7,9,2,1,945.5,1105743.5,697060.19,361476.72,0,0,0,1764.385 +7049,8593,15313,15312,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,6.911808,6.7138038,0,32,2,32.59219,0,3,3,2021,7,0,40,40,1,0,0,2.0268304,2.0268304,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,1,11,9,2,1,945.5,1105743.5,697060.19,361476.72,0,0,0,1764.385 +7050,8594,15314,15315,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1436138,6.7162995,35,-3,18.106771,0,1,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3609514,6.7219739,38.26,60.7,57.33,53.46,6.666666666666667,1,1,0,0,10,9,2,1,1258,708738.5,452329.66,219548.05,0,0,0,851.28442 +7050,8594,15315,15314,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.2620668,5.8518424,35,3,-94.248367,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9213843,6.2964826,57.33,53.46,38.26,60.7,1.666666666666667,1,1,0,0,7,9,2,1,1258,708738.5,452329.66,219548.05,0,0,0,851.28442 +7051,8595,15316,-9,15317,15318,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-976.72083,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8595,15317,15318,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,7.7071757,8.0281515,0,2,-3,-24.140821,0,-9,-9,2021,10,1,32,44,1,1,0,8.5335102,8.5335102,.05,.05,0,0,0,0,0,2,1,0,1,0,0,39.69,58.96,41.07,49.75,10,1,1,0,0,5,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8595,15318,15317,-9,-9,1,1,47,1,1,0,2,2,-9,0,3,7.8884006,7.6600752,0,2,3,-26.689043,0,1,-9,2021,12,0,32,37,1,0,0,7.5608244,7.5608244,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,49.75,39.69,58.96,6.666666666666667,1,1,0,1,6,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8596,15319,-9,15317,15318,1,1,25,1,1,0,1,1,-9,0,2,0,5.2257533,5.5722699,0,0,-967.80066,0,1,2,2021,23,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.4580989,0,24.92,53.82,-9,-9,1.666666666666667,1,1,1,1,0,11,2,0,539,-33129.469,0,0,0,0,0,764.79944 +7052,8597,15320,-9,-9,15321,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0345,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7052,8597,15321,15322,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.5338478,8.8876467,0,7,3,-27.044369,0,-9,-9,2021,21,9,43,44,1,9,0,19.020149,19.020149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.06,44.61,43.67,61.06,5,1,1,0,0,10,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7052,8597,15322,15321,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.3956242,8.4785662,0,7,-3,-71.372116,0,2,2,2021,12,0,45,43,1,0,0,14.641941,14.641941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,26.06,44.61,8.333333333333334,1,1,0,0,9,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7053,8598,15323,15324,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.4307342,7.1812963,0,27,-8,78.91433,0,3,3,2021,11,0,50,38,1,0,0,3.5206723,3.5206723,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.2,39.09,60.29,52.11,3.333333333333333,1,1,0,0,9,9,5,1,1286.5,2426116,1066287.8,632935.5,0,0,0,7689.7852 +7053,8598,15324,15323,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,10.042955,9.6048298,0,26,8,-38.166138,0,3,3,2021,11,0,35,54,1,0,0,62.542904,62.542904,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.2,39.09,5,2,3,0,1,9,9,5,1,1286.5,2426116,1066287.8,632935.5,0,0,0,7689.7852 +7053,8599,15325,-9,15323,15324,1,0,22,0,0,0,2,2,-9,0,3,7.4910517,7.3612437,0,0,0,-966.70361,-9,2,3,2021,12,0,42,0,1,0,1,5.6840034,5.6840034,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.78,38.99,-9,-9,5,4,2,0,0,5,9,3,1,448,-32788.027,46187.625,0,0,0,0,921.25635 +7054,8600,15326,15327,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.5507193,7.5333414,0,14,10,81.18853,0,3,3,2021,8,0,48,46,1,0,0,5.3687658,5.3687658,0,0,.05,0,0,0,0,0,1,1,0,0,0,58.32,50.22,45.43,53.5,8.333333333333334,1,1,0,0,10,9,3,1,332.5,412403.34,200553.78,163736.31,0,0,4887.8955,2691.4141 +7054,8600,15327,15326,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,7.4542847,7.3737102,14,-10,-41.343113,0,3,3,2021,9,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6319818,0,45.43,53.5,58.32,50.22,8.333333333333334,1,1,0,0,9,9,3,1,332.5,412403.34,200553.78,163736.31,0,0,4887.8955,2691.4141 +7055,8601,15328,-9,15329,15330,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5734,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7055,8601,15329,15330,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,9.5967112,9.5793066,0,9,-2,-25.471674,0,3,-9,2021,24,11,16,-9,1,11,0,102.92875,102.92875,.05,.05,0,0,0,0,0,0,0,0,0,6.9937968,0,42.12,46.65,52,54.51,3.333333333333333,1,1,0,0,11,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7055,8601,15330,15329,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.2339869,9.1909857,0,9,2,11.38434,0,-9,-9,2021,8,0,48,60,1,0,0,24.517464,24.517464,.05,.05,0,0,0,0,0,0,0,0,0,7.0917749,0,52,54.51,42.12,46.65,8.333333333333334,1,1,0,0,14,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7056,8602,15331,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.6778045,6.3957348,0,0,-1009.7626,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5212779,6.5668602,59.84,43.22,-9,-9,10,1,1,0,0,0,6,2,1,1011,284110.19,148836.34,118699.67,0,0,0,975.49091 +7057,8603,15332,-9,15333,15334,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1052.8564,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8603,15333,15334,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.3157635,9.5565042,0,9,0,42.047108,0,-9,-9,2021,9,0,5,20,1,0,0,285.85065,285.85065,.05,.05,0,0,0,0,0,0,0,0,0,8.8389006,0,57.33,53.46,61.68,50.1,8.333333333333334,1,1,0,0,7,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8603,15334,15333,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.6571264,9.5773258,0,27,0,-8.2967739,0,2,1,2021,7,0,47,45,1,0,0,42.880016,42.880016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,57.33,53.46,8.333333333333334,1,1,0,0,12,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8604,15335,-9,15333,15334,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1087.9949,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7570415,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,1558,0,0,0,0,0,0,103.99269 +7058,8605,15336,-9,15339,15337,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-994.42023,-9,1,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15337,15339,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,8.8290825,8.6821566,0,26,-1,49.748753,0,3,3,2021,11,1,60,58,1,1,0,11.222702,11.222702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.93,50.55,51.25,26.87,8.333333333333334,1,1,0,0,13,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15338,-9,15339,15337,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1004.7166,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15339,15337,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,8.1936588,8.5131111,0,26,1,-22.686539,0,3,3,2021,12,0,35,35,1,0,0,15.329404,15.329404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.25,26.87,48.93,50.55,8.333333333333334,1,1,0,0,13,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8606,15340,-9,15339,15337,1,0,18,0,2,0,2,2,1,0,4,6.5751071,6.3515229,0,0,0,-1065.8285,-9,1,3,2021,11,3,26,0,1,3,1,2.694484,2.694484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.71,48.99,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,693,-15829.217,26197.291,0,0,0,0,37.467293 +7059,8607,15341,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,9.0217371,8.9399109,0,0,0,-960.68231,0,3,2,2021,7,0,43,43,1,0,0,25.919252,25.919252,.05,.05,0,0,0,0,.59333813,0,1,1,0,.90704358,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,9,7,5,1,149,749445.75,718707.5,213910.05,119264.88,0,10657.69,2754.5693 +7060,8608,15342,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.8730164,8.1203365,0,0,0,-1078.4014,0,2,1,2021,6,0,40,51,1,0,0,8.9613657,8.9613657,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,273,162723.25,-7997.8555,0,0,0,0,1178.4039 +7061,8609,15343,-9,15344,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.4358,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,5,0,534,444165.34,200382.53,214957.44,1619.712,0,0,2351.9858 +7061,8609,15344,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.6979408,8.6431484,0,0,0,-972.23718,-9,2,2,2021,11,0,42,0,1,1,0,19.19589,19.19589,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,0,13,8,5,0,534,444165.34,200382.53,214957.44,1619.712,0,0,2351.9858 +7062,8610,15345,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.5882196,5.5392456,0,0,-1093.7883,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3729024,36.78,41.13,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,363,23948.574,0,0,0,0,0,776.79199 +7063,8611,15346,15347,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.0770168,7.2360077,48,-1,-12.938025,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4664488,7.0623589,57.5,37.38,53,47,6.666666666666667,1,1,0,0,4,2,3,1,1760.5,574455.94,315439.59,221913.25,0,0,0,2680.4736 +7063,8611,15347,15346,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.2982593,7.0371418,9,1,-62.821838,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3326015,7.0891223,53,47,57.5,37.38,7,1,1,0,0,0,2,3,1,1760.5,574455.94,315439.59,221913.25,0,0,0,2680.4736 +7064,8612,15348,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1051.3124,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,28.15,27.84,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,811,-12949.881,0,0,0,0,0,597.13531 +7065,8613,15349,15350,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.8855343,6.8902736,5,12,138.65242,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1366014,7.005672,46.83,40.55,55.44,52.99,8.333333333333334,1,1,0,0,0,4,2,1,425,289330,149780.66,213149.5,0,0,0,1703.1185 +7065,8613,15350,15349,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,5,-12,-35.607742,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,46.83,40.55,8.333333333333334,1,1,0,0,11,4,2,1,425,289330,149780.66,213149.5,0,0,0,1703.1185 +7066,8614,15351,15352,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,26,-6,9.7280464,-9,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.79,37.49,55.36,51.57,1.666666666666667,1,1,0,0,12,6,2,0,2166.5,91243.805,0,0,0,727.12494,0,210.51825 +7066,8614,15352,15351,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.3104353,6.3655419,0,12,6,35.689903,0,-9,-9,2021,11,0,50,50,1,0,0,1.6037437,1.6037437,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,30.79,37.49,8.333333333333334,1,1,0,0,8,6,2,0,2166.5,91243.805,0,0,0,727.12494,0,210.51825 +7067,8615,15353,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-965.34839,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.7727026,0,1,1,0,6.0748401,0,49.47,41.45,-9,-9,10,1,1,0,0,7,12,1,1,246,-30071.229,0,0,0,0,0,642.76117 +7068,8616,15354,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,0,0,0,0,-973.84265,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.44,51.82,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,931,218323.95,0,-2700.1743,0,0,0,1259.0808 +7069,8617,15355,15356,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.2785134,6.1787205,49,-2,-2.6888449,-9,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2105079,5.6713209,54.27,37.84,23.01,44.11,3.333333333333333,1,1,0,0,0,10,2,1,928,1420066.8,509164.75,480795.19,0,8538.375,0,1928.0586 +7069,8617,15356,15355,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0657673,5.9147062,49,2,35.699867,-9,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,1,0,1.7900597,0,0,1,1,0,0,5.8792615,23.01,44.11,54.27,37.84,5,1,1,0,0,0,10,2,1,928,1420066.8,509164.75,480795.19,0,8538.375,0,1928.0586 +7070,8618,15357,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,8.1580429,8.2499075,6.7966809,0,0,-973.8299,0,2,2,2021,11,1,42,44,1,1,0,12.209751,12.209751,.05,.05,0,0,0,0,0,0,0,0,0,0,6.7784076,51.44,32.2,-9,-9,6.666666666666667,1,1,0,0,12,11,4,0,1027,580993.88,80044.492,79701.086,0,0,0,1457.5143 +7071,8619,15358,15359,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,8.0036116,7.9939995,0,2,0,113.60416,0,3,3,2021,6,0,47,41,1,0,0,8.1706791,8.1706791,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,10,6,5,0,842.5,64358.93,16058.637,0,0,0,3301.2949,3289.3848 +7071,8619,15359,15358,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.4218531,8.1767435,0,2,0,86.878304,0,-9,-9,2021,7,0,46,43,1,0,0,8.7626104,8.7626104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,46.98,59.35,10,1,1,0,0,1,6,5,0,842.5,64358.93,16058.637,0,0,0,3301.2949,3289.3848 +7072,8620,15360,15361,-9,-9,1,1,32,0,0,0,2,2,-9,1,2,0,0,0,6,1,-75.246056,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.22,26.94,44.81,57.83,5,1,1,0,0,0,13,3,1,697.5,-49230.5,0,0,0,-69.277618,0,3453.5205 +7072,8620,15361,15360,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8411646,7.7218442,0,6,-1,-65.333969,0,3,2,2021,10,0,39,38,1,0,0,8.5150032,8.5150032,0,0,0,0,0,0,0,0,1,1,0,4.0768814,0,44.81,57.83,39.22,26.94,6.666666666666667,1,1,0,0,8,13,3,1,697.5,-49230.5,0,0,0,-69.277618,0,3453.5205 +7073,8621,15362,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2199607,7.2804489,0,0,0,-958.78876,0,2,2,2021,8,0,28,0,1,0,0,6.5279841,6.5279841,.05,.05,0,0,0,0,0,7,1,1,0,3.5102375,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,512,211138.8,252888.3,0,0,7592.8853,166.80891,445.58997 +7074,8622,15363,15364,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.6695957,7.7633152,0,35,-4,92.06163,0,2,2,2021,12,0,30,32,1,2,0,9.5214863,9.5214863,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,0,13,10,3,0,827.5,473605.44,346695.81,211851.75,0,6890.2275,0,1276.0723 +7074,8622,15364,15363,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,11,4,-22.119385,0,2,2,2021,10,0,0,10,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,49,48,49,7,1,1,1,0,13,10,3,0,827.5,473605.44,346695.81,211851.75,0,6890.2275,0,1276.0723 +7075,8623,15365,15366,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9364252,7.922061,0,11,-2,.6318267,0,-9,-9,2021,21,9,55,45,1,9,0,6.8253002,6.8253002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.51,50.03,50.34,56.4,3.333333333333333,1,1,0,0,14,11,5,1,864.5,836808.63,874190,276199.28,87261.539,5251.0249,972.35468,3225.8193 +7075,8623,15366,15365,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5389833,8.5621395,0,33,2,31.575809,0,2,2,2021,10,0,38,63,1,0,0,13.525519,13.525519,.05,.05,0,0,0,0,0,0,0,0,0,3.5360353,0,50.34,56.4,34.51,50.03,8.333333333333334,1,1,0,0,14,11,5,1,864.5,836808.63,874190,276199.28,87261.539,5251.0249,972.35468,3225.8193 +7076,8624,15367,15368,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1507635,8.3453026,0,3,6,14.764751,0,3,3,2021,11,0,57,58,1,0,0,6.8431883,6.8431883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.83,50.63,38.22,58.43,6.666666666666667,1,1,0,0,5,4,4,0,365,23612.289,-56527.621,0,0,0,0,2265.7847 +7076,8624,15368,15367,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.5862775,7.8278389,0,3,-6,67.360527,0,-9,-9,2021,10,2,25,0,1,2,0,9.268651,9.268651,0,0,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,45.83,50.63,6.666666666666667,1,1,0,0,1,4,4,0,365,23612.289,-56527.621,0,0,0,0,2265.7847 +7077,8625,15369,15370,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.7248759,7.1850438,0,7,1,49.642105,0,2,3,2021,12,0,50,70,1,0,0,3.2345011,3.2345011,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,4,1,781.5,654197.63,489187.06,321117.91,0,1043.7996,0,3535.4155 +7077,8625,15370,15369,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,8.2166004,8.1797581,0,7,-1,64.434753,0,3,3,2021,6,0,25,30,1,0,0,18.203806,18.203806,0,0,0,0,0,0,0,0,0,0,0,7.6316624,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,13,4,1,781.5,654197.63,489187.06,321117.91,0,1043.7996,0,3535.4155 +7078,8626,15371,15372,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.1710863,7.4099255,3,-5,-53.362312,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.7815113,7.0072384,60.17,50.88,59.43,58.05,10,1,1,0,0,0,10,3,1,520.5,681811.38,360518.31,199740.63,0,0,0,7039.9824 +7078,8626,15372,15371,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.2955012,7.0303187,3,5,-40.934673,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1182861,7.3966246,59.43,58.05,60.17,50.88,10,1,1,0,0,6,10,3,1,520.5,681811.38,360518.31,199740.63,0,0,0,7039.9824 +7079,8627,15373,15374,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.8191681,8.5492754,0,6,1,108.99636,0,3,2,2021,9,0,40,41,1,0,0,17.73406,17.73406,.05,.05,0,0,0,0,0,0,0,0,0,3.0199308,0,51.83,49.33,54.23,49.6,8.333333333333334,1,1,0,0,9,12,5,1,1624,580473.19,49957.539,210824.56,124078.03,0,0,4142.8652 +7079,8627,15374,15373,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.4857464,8.5028248,0,6,-1,-142.66068,0,2,3,2021,17,6,12,10,1,6,0,49.253693,49.253693,.05,.05,0,0,0,0,0,7,0,0,0,3.7101047,0,54.23,49.6,51.83,49.33,5,1,1,0,0,9,12,5,1,1624,580473.19,49957.539,210824.56,124078.03,0,0,4142.8652 +7080,8628,15375,-9,-9,-9,1,1,29,0,0,0,1,1,1,0,2,8.0091057,8.2817869,5.9841361,4,3,.94531453,-9,2,2,2021,9,0,37,0,1,0,0,10.128511,10.128511,.05,.05,0,0,0,0,0,0,0,0,0,6.2888956,0,36.03,55.74,41.49,60.87,6.666666666666667,1,1,0,0,8,2,4,0,847,-220953.16,-15505.498,0,0,0,0,2177.554 +7080,8629,15376,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,7.8547435,8.1382427,0,4,-3,-11.273511,0,-9,-9,2021,2,0,40,35,1,0,0,8.9004955,8.9004955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.49,60.87,36.03,55.74,8.333333333333334,1,1,0,0,4,2,4,0,414,-99742.32,48497.957,0,0,0,0,1270.2206 +7081,8630,15377,-9,15380,15378,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.468,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15378,15380,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.3613214,8.2363338,0,16,1,-16.013931,0,2,1,2021,17,5,40,46,1,5,0,13.969823,13.969823,.05,.05,0,0,0,0,0,0,1,1,0,.52681935,0,41.08,54.15,43.12,58.55,5,1,1,0,0,9,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15379,-9,15380,15378,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1176.5129,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15380,15378,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.2971315,8.0519543,0,16,-1,6.2639565,0,1,1,2021,12,2,37,30,1,2,0,11.698956,11.698956,0,0,0,0,0,0,0,0,1,1,0,4.733664,0,43.12,58.55,41.08,54.15,8.333333333333334,1,1,0,0,8,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7082,8631,15381,15383,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.6986771,9.943984,0,23,2,79.388329,0,2,1,2021,10,0,60,50,1,0,0,35.281696,35.281696,.05,.05,0,0,0,0,0,2,0,0,0,7.1780014,0,51.81,57.22,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8631,15382,-9,15383,15381,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.3511,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8631,15383,15381,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,9.2208576,9.2928925,0,23,-2,-36.694214,0,2,2,2021,9,0,24,10,1,0,0,46.250999,46.250999,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.1,59.11,51.81,57.22,8.333333333333334,1,1,0,0,2,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8632,15384,-9,15383,15381,1,0,19,0,1,1,2,0,0,0,4,0,5.3775473,5.3870764,0,0,-971.35626,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9741464,0,48.87,58.55,-9,-9,10,1,1,0,0,2,9,2,1,1150,69495.57,0,0,0,0,0,64.762321 +7082,8633,15385,-9,15383,15381,1,0,18,0,1,1,2,0,0,0,3,0,3.7621315,3.3293269,0,0,-934.68896,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3334928,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,1,0,9,2,1,1750,153580.25,0,0,0,0,0,35.331665 +7083,8634,15386,15387,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.5731792,8.7129498,0,1,13,68.959198,-9,-9,-9,2021,13,3,37,0,1,3,0,18.24721,18.24721,.05,.05,0,0,0,0,0,0,0,0,0,5.6366181,0,49.82,54.1,57.16,56.15,6.666666666666667,1,1,0,0,4,1,5,0,588,1297010.9,925482.44,190811.59,0,0,0,3827.9346 +7083,8634,15387,15386,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2055321,8.2876244,0,1,-13,82.878677,-9,-9,-9,2021,6,0,37,0,1,0,0,12.352171,12.352171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.82,54.1,8.333333333333334,1,1,0,0,6,1,5,0,588,1297010.9,925482.44,190811.59,0,0,0,3827.9346 +7084,8635,15388,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.39166,0,3,3,2021,26,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.45,31.91,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,1224,71644.68,0,34207.695,0,320.2717,0,598.23535 +7085,8636,15389,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.406,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.03,22.13,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,66,64448.535,0,0,0,0,1514.9811,677.95392 +7086,8637,15390,-9,15392,15391,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.00488,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15391,15392,-9,-9,1,1,59,1,2,0,2,2,-9,0,3,8.8030825,9.0090618,0,12,17,-36.390114,0,2,3,2021,17,6,48,49,1,6,0,16.583002,16.583002,.05,.05,0,0,0,0,0,0,0,0,0,5.1300631,0,43.18,53.23,24.19,61.89,6.666666666666667,1,1,0,0,12,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15392,15391,-9,-9,1,0,42,1,2,0,1,1,-9,0,4,9.0594778,9.0635872,0,12,-17,19.676918,0,2,1,2021,21,9,45,45,1,9,0,17.872839,17.872839,0,0,0,0,0,0,0,0,0,0,0,0,0,24.19,61.89,43.18,53.23,6.666666666666667,1,1,0,0,14,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15393,-9,15392,15391,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.5166,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7087,8638,15394,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-995.14728,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.46668109,0,0,1,1,0,0,0,60.27,45.07,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,1384,-214248.39,0,0,0,0,0,1479.8134 +7088,8639,15395,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,0,0,-991.4809,0,2,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3944097,0,50,55,-9,-9,8,4,2,0,0,0,8,1,0,442.5,16112.828,0,0,0,-467.74216,0,840.89185 +7088,8639,15396,-9,15395,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0369,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,442.5,16112.828,0,0,0,-467.74216,0,840.89185 +7088,8640,15397,-9,15395,-9,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-944.91241,-9,2,-9,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.1,54.44,-9,-9,5,3,4,0,0,4,8,2,0,149,68147.141,0,0,0,0,1388.9569,0 +7089,8641,15398,15399,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,5.0238113,5.0852656,55,6,36.129211,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,38.020203,0,0,1,1,0,3.6984594,4.6493745,50.53,19.16,35.43,42.24,6.666666666666667,1,1,0,0,0,6,2,1,748,0,0,0,0,0,0,1837.4072 +7089,8641,15399,15398,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,55,-6,21.818439,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.883074,0,35.43,42.24,50.53,19.16,3.333333333333333,1,1,0,0,0,6,2,1,748,0,0,0,0,0,0,1837.4072 +7090,8642,15400,15402,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,7.6321936,7.7230148,0,6,-2,19.219149,0,2,1,2021,17,6,28,28,1,6,0,6.1294785,6.1294785,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.24,58.9,53.75,41.28,8.333333333333334,1,1,0,0,8,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15401,-9,15400,15402,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3278,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15402,15400,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.5651941,8.5866776,0,6,2,36.054142,0,-9,-9,2021,12,1,49,48,1,1,0,14.89941,14.89941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.75,41.28,42.24,58.9,6.666666666666667,1,1,0,0,10,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15403,-9,15400,15402,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.3379,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7091,8643,15404,15406,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.1402435,6.9682217,0,10,0,-46.109398,0,-9,-9,2021,10,1,45,53,1,1,0,2.7297921,2.7297921,0,0,0,0,0,0,0,0,1,1,0,5.7141938,0,33.9,60.31,32.42,32.71,5,1,1,0,0,11,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15405,-9,15406,15404,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.634,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15406,15404,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,7.57828,7.3533654,0,22,0,7.0378332,0,2,2,2021,24,11,15,15,1,11,0,11.95605,11.95605,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,32.71,33.9,60.31,3.333333333333333,1,1,0,0,12,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15407,-9,15406,15404,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1017.3714,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.520072,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8644,15408,-9,15406,15404,1,1,19,0,2,0,2,2,1,0,3,7.3247604,7.3999405,0,0,0,-1030.1619,-9,1,1,2021,18,7,30,0,1,7,1,5.1142182,5.1142182,0,0,0,0,0,0,0,0,1,1,0,3.9420111,0,41.23,59.35,-9,-9,10,1,1,0,0,2,6,3,1,540,35946.961,26095.777,0,0,0,0,-118.44054 +7092,8645,15409,15410,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.1515856,7.3494077,6,-3,-43.601292,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3373232,6.6530623,50.93,43.84,39.24,53.39,8.333333333333334,1,1,0,0,0,12,2,1,558.5,905260.81,255413.75,740067.94,0,0,0,4166.8481 +7092,8645,15410,15409,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,6,3,-12.745055,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,21.716284,0,0,1,1,0,7.8932981,0,39.24,53.39,50.93,43.84,8.333333333333334,1,1,0,0,0,12,2,1,558.5,905260.81,255413.75,740067.94,0,0,0,4166.8481 +7093,8646,15411,15412,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.911212,5.1471944,57,-4,-42.975628,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,13.777065,0,0,1,1,0,0,5.0721846,60.31,43.75,60.72,47.63,10,1,1,0,0,0,4,3,1,526.5,381466.97,297663.06,238834.81,0,0,0,1995.4285 +7093,8646,15412,15411,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.371593,6.9627056,57,4,28.663837,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.720623,60.72,47.63,60.31,43.75,10,1,1,0,0,0,4,3,1,526.5,381466.97,297663.06,238834.81,0,0,0,1995.4285 +7094,8647,15413,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,0,0,0,0,-904.42883,-9,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,28.801968,30.313982,286.37744,0,1,1,0,0,0,38.46,17.31,-9,-9,6.666666666666667,1,1,0,1,4,10,2,1,3691,278701.03,0,226593.55,0,0,0,492.08218 +7095,8648,15414,15415,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.4047794,6.6255097,44,-6,94.496651,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9195414,6.5311151,54.2,57.49,54.97,37.11,8.333333333333334,1,1,0,0,9,2,4,1,632,1833175.5,1329322.8,276180.56,0,0,0,6674.8018 +7095,8648,15415,15414,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.2776976,8.0188065,43,6,-91.296951,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2164953,8.2221918,54.97,37.11,54.2,57.49,8.333333333333334,1,1,0,0,5,2,4,1,632,1833175.5,1329322.8,276180.56,0,0,0,6674.8018 +7096,8649,15416,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3054266,8.3626423,0,0,0,-1081.422,0,2,2,2021,20,9,38,38,1,9,0,14.17629,14.17629,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,1,6,11,4,1,870,48668.168,0,0,0,0,0,2035.3632 +7097,8650,15417,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,5.9062991,5.8000002,0,0,-883.81635,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0824194,5.722168,45.86,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,987,-44706.473,-36337.477,0,0,0,0,477.08337 +7098,8651,15418,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.3956952,7.2480659,0,0,-1039.6759,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4258962,56.35,48.3,-9,-9,10,1,1,0,0,0,9,3,1,568,430721.75,279462.91,192299.13,0,0,0,670.32031 +7099,8652,15419,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.0123215,8.8782988,0,0,0,-1069.9777,0,2,2,2021,11,0,40,39,1,0,1,22.030235,22.030235,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49,60,-9,-9,8.333333333333334,1,1,0,0,10,8,5,0,547,-149380.59,27887.752,0,0,0,0,2069.3149 +7099,8653,15420,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4075708,8.1952705,0,0,0,-1007.1031,0,-9,-9,2021,15,4,90,90,1,4,1,7.7355027,7.7355027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,-9,-9,3.333333333333333,1,1,0,0,3,8,5,0,265,65284.438,37767.211,0,0,0,0,2237.4189 +7100,8654,15421,15422,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.7274733,7.429059,50,6,212.28227,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1828437,7.4354172,59.46,46.99,40.46,39.95,6.666666666666667,1,1,0,0,4,2,3,1,589,558409.31,378091.63,211966,0,0,0,2901.8718 +7100,8654,15422,15421,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2783575,7.2475634,50,-6,29.88331,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1989985,6.9817939,40.46,39.95,59.46,46.99,3.333333333333333,1,1,0,0,4,2,3,1,589,558409.31,378091.63,211966,0,0,0,2901.8718 +7101,8655,15423,15424,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,4,19,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,35,27,10,1,1,0,0,1,10,1,0,944.5,-69636.609,0,0,0,0,2157.2502,81.413574 +7101,8655,15424,15423,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,4,-19,0,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,52.4,52.91,1.666666666666667,1,1,0,1,5,10,1,0,944.5,-69636.609,0,0,0,0,2157.2502,81.413574 +7102,8656,15425,-9,15426,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3442,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,729.5,67705.398,66580.797,0,0,0,0,1811.7498 +7102,8656,15426,-9,-9,-9,1,0,21,0,1,0,3,3,-9,0,3,7.0346303,6.4375496,0,0,0,-933.65741,0,2,3,2021,9,2,18,16,1,2,0,5.8235378,5.8235378,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.56,60.67,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,729.5,67705.398,66580.797,0,0,0,0,1811.7498 +7103,8657,15427,15428,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.7414255,4.9320579,43,-4,18.829359,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0388784,66.09999999999999,37.14,53,46,8.333333333333334,1,1,0,0,0,9,3,1,471.5,1229739.3,639234.63,626280.94,0,0,0,4015.0776 +7103,8657,15428,15427,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2677937,8.3571644,0,5,4,93.127617,0,-9,-9,2021,10,0,25,30,1,1,0,17.331381,17.331381,0,0,0,0,0,0,0,0,1,1,0,7.4447045,0,53,46,66.09999999999999,37.14,7,1,1,0,0,1,9,3,1,471.5,1229739.3,639234.63,626280.94,0,0,0,4015.0776 +7104,8658,15429,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.9869146,6.5033479,0,0,-1094.0774,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.576859,48,37,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1026,219080.72,0,91950.656,0,0,0,417.18173 +7105,8659,15430,15431,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.7287588,6.4009681,49,2,61.808647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5056129,6.7389097,50.06,55.28,44.06,49.86,8.333333333333334,1,1,0,0,7,4,3,1,648.5,281706.66,-2589.2285,199227.66,0,0,0,3482.0671 +7105,8659,15431,15430,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.2067032,7.9621367,49,-2,60.709641,0,3,3,2021,13,1,0,24,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6349692,8.3668232,44.06,49.86,50.06,55.28,8.333333333333334,1,1,0,0,9,4,3,1,648.5,281706.66,-2589.2285,199227.66,0,0,0,3482.0671 +7106,8660,15432,15433,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.2990284,9.7127914,0,29,1,-40.338795,0,2,2,2021,7,0,45,55,1,0,0,37.39286,37.39286,0,0,0,0,0,0,0,0,0,0,0,5.6185822,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,5,5,1,353.5,51399.586,45557.91,0,0,0,9277.8457,5780.7002 +7106,8660,15433,15432,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.6190252,9.0053329,0,29,-1,38.141403,0,2,2,2021,8,0,45,42,1,0,0,14.548153,14.548153,0,0,0,0,0,0,0,0,0,0,0,.74231035,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,5,5,1,353.5,51399.586,45557.91,0,0,0,9277.8457,5780.7002 +7106,8661,15434,-9,15433,15432,1,0,25,0,0,0,1,1,-9,0,3,8.387145,8.8923006,0,0,0,-992.62219,0,2,2,2021,13,2,40,40,1,2,1,17.860554,17.860554,.05,.05,0,0,0,0,0,0,0,0,0,3.803077,0,43.96,55.64,-9,-9,10,1,1,0,0,8,5,5,1,815,319240.09,100096.13,246107.78,185058.66,0,0,1497.8617 +7106,8662,15435,-9,15433,15432,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-854.80865,-9,2,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1855509,0,57.06,57.76,-9,-9,10,1,1,0,0,2,5,1,1,291,0,0,0,0,0,0,32.86269 +7107,8663,15436,15437,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.0765562,9.3342113,7.3666492,10,-3,1.7416785,0,3,3,2021,17,5,39,39,1,5,0,24.04311,24.04311,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5268583,39.14,38.93,68.3,21.52,3.333333333333333,1,1,0,0,12,2,5,1,600.5,1472467,945843.81,411904.03,31424.797,0,0,2749.6472 +7107,8663,15437,15436,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,2.1353309,2.27894,10,3,117.41192,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.4636195,1.8712139,68.3,21.52,39.14,38.93,8.333333333333334,1,1,0,0,4,2,5,1,600.5,1472467,945843.81,411904.03,31424.797,0,0,2749.6472 +7108,8664,15438,15439,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,6.7836552,7.0695963,0,20,-14,6.9153523,0,3,3,2021,7,0,10,10,1,0,0,8.9589853,8.9589853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.9,57.87,49,50,8.333333333333334,2,3,0,0,12,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15439,15438,-9,-9,1,1,51,0,3,0,3,3,-9,0,3,7.5376263,8.6861076,8.2189636,20,14,-63.027039,0,3,3,2021,11,0,35,35,1,2,0,6.2472115,6.2472115,.05,.05,0,0,0,0,0,0,1,1,0,0,8.2355661,49,50,32.9,57.87,7,2,3,0,0,1,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15440,-9,15438,15439,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.51978,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15441,-9,15438,15439,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.3905,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15442,-9,15438,15439,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1052.7933,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,0,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7109,8665,15443,15444,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,2.8926296,3.0793459,9,4,-35.272919,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,107.72849,0,0,1,1,0,0,2.9023325,50,47,60.02,56.42,7,1,1,0,0,0,4,2,1,1397,732684.63,387986.5,163661.19,0,0,0,1983.7798 +7109,8665,15444,15443,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.6440639,7.0457821,45,-4,-16.989872,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6182942,7.0006061,60.02,56.42,50,47,6.666666666666667,1,1,0,0,9,4,2,1,1397,732684.63,387986.5,163661.19,0,0,0,1983.7798 +7110,8666,15445,15446,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.3476667,8.5432177,0,6,5,-128.19315,0,2,2,2021,15,3,36,36,1,3,0,13.439815,13.439815,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.9,54.57,35.32,64.83,8.333333333333334,1,1,0,0,11,10,5,0,1380,1257325,944711.69,330914.31,0,0,2468.3386,2935.4065 +7110,8666,15446,15445,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9738746,8.1411457,0,6,-5,73.804146,0,2,3,2021,24,12,53,50,1,12,0,6.7545385,6.7545385,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.32,64.83,42.9,54.57,3.333333333333333,1,1,0,0,5,10,5,0,1380,1257325,944711.69,330914.31,0,0,2468.3386,2935.4065 +7111,8667,15447,-9,-9,-9,1,0,101,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.6681,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,16.754013,0,0,1,1,0,.40738273,0,63.41,34.5,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,71,97093.438,0,0,0,0,0,794.1123 +7112,8668,15448,15449,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,8.5478992,8.6102381,32,6,24.614767,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.5802169,12.533426,22.199224,0,1,1,0,7.5886617,8.4509363,60.21,34.28,36.43,30.97,8.333333333333334,1,1,0,0,8,9,4,1,802.5,868856.75,423109,482421.13,0,0,0,6902.4912 +7112,8668,15449,15448,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,5.328095,5.9059005,31,-6,28.977488,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4801168,5.4513664,36.43,30.97,60.21,34.28,8.333333333333334,1,1,0,0,0,9,4,1,802.5,868856.75,423109,482421.13,0,0,0,6902.4912 +7113,8669,15450,15451,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.5566463,8.4128761,0,12,-5,-12.180228,0,2,3,2021,18,5,34,37,1,5,0,19.388557,19.388557,0,0,0,0,0,0,0,2,1,1,0,0,0,46.38,35.15,57.33,53.46,6.666666666666667,1,1,0,0,14,4,4,1,530,340908.75,188811,441374.81,188028.69,0,0,3813.9949 +7113,8669,15451,15450,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.6032515,8.6589413,0,12,5,-40.754539,0,2,2,2021,6,0,42,52,1,0,0,15.009352,15.009352,.05,.05,0,0,0,0,0,0,1,1,0,.85981929,0,57.33,53.46,46.38,35.15,8.333333333333334,1,1,0,0,14,4,4,1,530,340908.75,188811,441374.81,188028.69,0,0,3813.9949 +7113,8670,15452,-9,15450,15451,1,0,18,0,1,0,2,2,1,0,4,6.0863185,5.9462037,0,0,0,-1081.6229,-9,1,1,2021,12,2,12,0,1,2,1,4.5522242,4.5522242,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,58.26,-9,-9,8.333333333333334,4,2,0,0,2,4,2,1,2107,211102.25,0,0,0,0,0,-484.37589 +7114,8671,15453,15454,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,0,0,36,16,1.235749,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1642747,0,51.83,57.2,45.64,45.13,8.333333333333334,1,1,0,0,9,9,2,1,471,1528351.1,21137.867,568345.5,0,0,0,1283.6129 +7114,8671,15454,15453,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.4192386,7.5709729,0,36,-16,83.935478,0,2,1,2021,13,1,38,30,1,1,0,4.7645121,4.7645121,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,45.13,51.83,57.2,3.333333333333333,1,1,0,0,3,9,2,1,471,1528351.1,21137.867,568345.5,0,0,0,1283.6129 +7115,8672,15455,15456,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,6.65204,6.8251133,0,19,-3,109.81103,0,-9,-9,2021,12,0,8,8,1,0,0,11.460215,11.460215,0,0,0,0,0,0,0,2,1,1,0,3.0010734,0,53.63,40.71,32.08,47.89,6.666666666666667,1,1,0,0,4,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7115,8672,15456,15455,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.4505606,8.3952093,0,19,3,4.2580242,0,2,-9,2021,18,6,37,37,1,6,0,17.151255,17.151255,.05,.05,0,0,0,0,0,0,1,1,0,4.0043569,0,32.08,47.89,53.63,40.71,3.333333333333333,1,1,0,0,9,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7115,8672,15457,-9,15455,15456,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.9186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7116,8673,15458,15459,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.9234228,9.0229654,0,12,-5,-133.96611,0,-9,-9,2021,12,0,100,52,1,0,0,8.0893898,8.0893898,0,0,0,0,0,0,0,0,0,0,0,1.1791414,0,44.19,58.01,57.33,53.46,6.666666666666667,1,1,0,0,14,9,5,1,466.5,126135.86,80270.906,0,0,11921.254,0,6179.0889 +7116,8673,15459,15458,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1586466,9.090395,0,12,5,-38.265289,0,2,2,2021,11,0,70,80,1,0,0,12.819424,12.819424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,44.19,58.01,8.333333333333334,1,1,0,0,13,9,5,1,466.5,126135.86,80270.906,0,0,11921.254,0,6179.0889 +7117,8674,15460,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-926.56244,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,3.333333333333333,3,4,1,0,6,6,1,0,1212,195743.45,0,124475.8,0,0,0,-157.97115 +7118,8675,15461,15462,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,0,0,61,0,-128.49872,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,122.51151,0,0,1,1,0,0,0,38.88,43.03,49.16,32.35,8.333333333333334,1,1,0,0,0,6,3,1,1796,1591363.5,551000.06,622114.88,0,0,0,4075.3076 +7118,8675,15462,15461,-9,-9,1,1,85,0,0,0,1,1,-9,0,4,0,7.9748325,8.3532257,61,0,119.63648,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,60.979374,0,120,1,1,0,8.2624207,8.4824371,49.16,32.35,38.88,43.03,8.333333333333334,1,1,0,0,0,6,3,1,1796,1591363.5,551000.06,622114.88,0,0,0,4075.3076 +7119,8676,15463,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0160255,8.195158,0,0,0,-842.04431,0,3,3,2021,7,1,38,44,1,1,0,7.1673188,7.1673188,.05,.05,.05,0,0,0,0,2,1,1,0,2.2599151,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1579,265706.5,87982.531,245822.27,0,0,0,1086.3157 +7120,8677,15464,-9,15465,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.3436,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,524.5,339245.78,115368.72,354722.69,48715.031,7577.1152,2526.5615,2787.887 +7120,8677,15465,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2921629,8.4379282,0,0,0,-900.54053,0,2,2,2021,11,0,30,30,1,0,0,14.830155,14.830155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,524.5,339245.78,115368.72,354722.69,48715.031,7577.1152,2526.5615,2787.887 +7121,8678,15466,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.8812,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6692538,0,54.77,31.94,-9,-9,5,1,1,0,0,3,7,1,1,623,48834.328,0,0,0,0,0,949.68011 +7122,8679,15467,15470,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,9.3439074,9.2561321,0,7,-1,-2.4486125,0,-9,-9,2021,8,0,46,50,1,0,0,29.548954,29.548954,.05,.05,0,0,0,0,0,0,1,1,0,6.6139135,0,41.91,55.01,12.12,67.62,0,1,1,0,0,9,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15468,-9,15470,15467,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.608,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15469,-9,15470,15467,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15470,15467,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.8258934,6.519268,0,7,1,-10.584192,0,2,2,2021,22,9,12,12,1,9,0,7.8277502,7.8277502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.12,67.62,41.91,55.01,8.333333333333334,1,1,0,0,5,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7123,8680,15471,15472,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6331482,9.0952454,0,36,0,53.723686,0,2,2,2021,6,0,70,70,1,0,0,10.035796,10.035796,0,0,0,0,0,0,0,56,1,1,0,0,0,59.15,49.67,50.31,27.29,8.333333333333334,1,1,0,0,6,7,5,1,1380.5,2196064.8,1367083,635946.38,0,0,0,5112.4385 +7123,8680,15472,15471,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.810617,7.9939065,7,9,32.263279,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7475047,50.31,27.29,59.15,49.67,3.333333333333333,1,1,0,0,0,7,5,1,1380.5,2196064.8,1367083,635946.38,0,0,0,5112.4385 +7123,8681,15473,-9,15471,15472,1,0,22,0,0,0,1,1,0,0,4,0,8.2613783,7.2746401,0,0,-963.23547,-9,2,2,2021,8,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.7570648,0,45.34,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,881,-117435.52,-153234.42,0,0,27109.396,0,1495.3708 +7124,8682,15474,-9,15475,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.17651,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15475,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,0,0,-865.17261,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15476,-9,15475,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.75415,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15477,-9,15475,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.2626,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7125,8683,15478,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.1671381,9.3298054,0,0,0,-932.95068,0,2,2,2021,11,0,60,60,1,0,0,17.597227,17.597227,.05,.05,0,0,0,0,0,0,0,0,0,5.5220022,0,35.63,62.19,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,2752,616987.63,413659.22,241170.45,104416.3,7059.894,0,3544.624 +7125,8684,15479,-9,15478,-9,1,0,21,0,0,0,1,1,1,0,4,7.0192928,7.2179475,0,0,0,-920.03955,-9,1,2,2021,10,0,41,0,1,0,1,3.7644842,3.7644842,0,0,0,0,0,0,0,0,0,0,0,1.2656914,0,34.06,54.62,-9,-9,10,1,1,0,0,4,9,2,1,901,-43784.922,0,0,0,0,0,748.68506 +7126,8685,15480,15481,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.5121222,6.0661182,6,-3,-55.943947,0,-9,-9,2021,14,3,0,45,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0533242,52.3,47.48,43.68,56.8,6.666666666666667,1,1,0,0,0,8,4,1,666.5,1225614.4,615766,425566.81,0,2733.8281,0,2235.6062 +7126,8685,15481,15480,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,8.3291121,8.2366848,39,3,-15.842589,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.356308,7.9381156,43.68,56.8,52.3,47.48,8.333333333333334,1,1,0,0,0,8,4,1,666.5,1225614.4,615766,425566.81,0,2733.8281,0,2235.6062 +7127,8686,15482,15483,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,1,1,0,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.2647967,0,54.66,47.77,57.06,57.76,6.666666666666667,1,1,0,0,0,10,1,1,962.5,-9659.8086,71973.867,0,0,0,729.60083,1111.4502 +7127,8686,15483,15482,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,1,-1,0,1,-9,-9,2021,6,0,0,45,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.9100475,0,57.06,57.76,54.66,47.77,6.666666666666667,1,1,0,0,8,10,1,1,962.5,-9659.8086,71973.867,0,0,0,729.60083,1111.4502 +7128,8687,15484,15485,-9,-9,1,0,37,0,0,0,1,1,-9,1,1,0,0,0,8,-6,50.958595,0,-9,-9,2021,23,9,0,44,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3693547,0,43.63,31.86,35.63,62.19,5,1,1,0,0,9,2,5,1,954,595759.38,329426.09,189382.67,130161.83,0,0,4043.8262 +7128,8687,15485,15484,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9291639,8.9224176,0,8,6,40.672916,0,2,2,2021,15,6,40,48,1,6,0,23.47571,23.47571,.05,.05,0,0,0,0,0,14.5,0,0,0,2.9325485,0,35.63,62.19,43.63,31.86,6.666666666666667,2,3,0,0,14,2,5,1,954,595759.38,329426.09,189382.67,130161.83,0,0,4043.8262 +7129,8688,15486,15487,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.3682022,9.5473671,0,5,0,23.49897,-9,-9,-9,2021,6,0,45,0,1,0,0,26.635576,26.635576,0,0,0,0,0,0,0,0,1,1,0,5.5134792,0,54.69,57.47,43.84,47.84,10,1,1,0,0,5,8,5,1,533,415170.22,187938.19,366986.56,316261.63,0,0,5606.3306 +7129,8688,15487,15486,-9,-9,1,1,27,0,0,0,1,1,1,0,2,7.8934245,8.062191,0,5,0,75.919952,-9,-9,-9,2021,18,6,95,0,1,6,0,3.7061942,3.7061942,0,0,0,0,0,0,0,0,1,1,0,2.3198667,0,43.84,47.84,54.69,57.47,3.333333333333333,1,1,0,0,7,8,5,1,533,415170.22,187938.19,366986.56,316261.63,0,0,5606.3306 +7130,8689,15488,-9,15489,15490,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.7692,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15489,15490,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4586525,8.4571438,0,27,0,-135.54309,0,2,1,2021,13,3,28,28,1,3,0,21.817219,21.817219,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,55.93,51,56,6.666666666666667,1,1,0,0,15,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15490,15489,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,6.6665177,6.6918526,0,27,0,-88.366524,0,1,3,2021,10,0,50,45,1,1,0,1.4939724,1.4939724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,36.33,55.93,8,1,1,0,0,15,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15491,-9,15489,15490,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1005.3727,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7131,8690,15492,15493,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,9,7,-40.446987,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0746374,0,45.97,41.17,32.62,36.55,6.666666666666667,1,1,0,0,0,9,3,1,767.5,1226177.9,666300.75,450248.63,0,0,0,2771.634 +7131,8690,15493,15492,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,8.3396769,8.3425035,41,-7,121.14529,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,5.3538017,0,7,1,1,0,2.5345814,8.3186388,32.62,36.55,45.97,41.17,6.666666666666667,1,1,0,0,0,9,3,1,767.5,1226177.9,666300.75,450248.63,0,0,0,2771.634 +7132,8691,15494,15495,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,6.1426082,5.8728485,66,6,-14.808471,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5957916,5.7514505,55,45,52,45,8,1,1,0,0,6,2,2,0,589.5,410149.38,142702.09,211357,0,0,0,3103.1423 +7132,8691,15495,15494,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,9,-6,-50.119793,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,2,2,0,589.5,410149.38,142702.09,211357,0,0,0,3103.1423 +7133,8692,15496,15497,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,0,0,0,36,-3,-174.3343,-9,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,50.02,36.37,46.61,56.93,5,1,1,1,0,1,11,5,1,762,2996743.5,1982315.6,695321,0,0,0,3655.7114 +7133,8692,15497,15496,-9,-9,1,1,62,0,1,0,1,1,-9,0,3,9.1846409,9.4808817,0,1,3,-111.2283,-9,-9,-9,2021,6,0,40,0,1,0,0,24.916142,24.916142,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,50.02,36.37,8.333333333333334,1,1,0,0,9,11,5,1,762,2996743.5,1982315.6,695321,0,0,0,3655.7114 +7134,8693,15498,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.5558,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.48,43.81,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,269,185916.98,0,280463.5,0,0,0,745.09705 +7135,8694,15499,15500,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.1345291,6.8507566,0,16,-3,-59.209072,0,2,3,2021,18,6,15,25,1,6,0,10.341682,10.341682,0,0,0,0,0,0,0,0,0,0,0,0,0,38.76,58.16,50.22,52.72,3.333333333333333,1,1,0,1,8,7,3,1,708,1457771.5,439466.72,173209.97,0,0,0,1933.8019 +7135,8694,15500,15499,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.5500793,8.0417624,6.672359,9,3,86.890007,0,-9,-9,2021,16,4,12,12,1,4,0,15.477558,15.477558,.05,.05,0,0,0,0,0,0,0,0,0,.043944836,7.0075235,50.22,52.72,38.76,58.16,6.666666666666667,1,1,0,1,10,7,3,1,708,1457771.5,439466.72,173209.97,0,0,0,1933.8019 +7136,8695,15501,15503,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,0,0,0,16,5,-46.198082,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.06,57.76,45.69,50.77,10,1,1,0,0,3,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7136,8695,15502,-9,15501,15503,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.51038,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7136,8695,15503,15501,-9,-9,1,1,42,0,3,0,1,1,-9,1,3,9.5634756,9.5218687,0,16,-5,28.001966,0,3,3,2021,8,2,40,40,1,2,0,33.434761,33.434761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,50.77,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7137,8696,15504,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.3128834,8.3533154,0,0,0,-994.80194,0,2,2,2021,6,0,41,40,1,0,0,11.00584,11.00584,.05,.05,0,0,0,0,0,0,0,0,0,6.6847038,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,14,7,5,1,1580,-160721.97,52630.176,0,0,0,0,1780.2866 +7138,8697,15505,15506,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.4413195,8.8174152,0,9,0,-67.24968,0,-9,-9,2021,11,0,41,8,1,0,0,15.219912,15.219912,.05,.05,0,0,0,0,0,0,0,0,0,5.7596693,0,27.53,58.27,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,889.5,1149364.6,938582.81,252451.38,58133,5781.6465,0,3382.3718 +7138,8697,15506,15505,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5901785,7.6700993,0,26,0,148.48495,0,2,-9,2021,6,0,21,18,1,0,0,13.053388,13.053388,.05,.05,0,0,0,0,0,0,0,0,0,.79072976,0,54.2,57.49,27.53,58.27,6.666666666666667,1,1,0,0,12,4,5,1,889.5,1149364.6,938582.81,252451.38,58133,5781.6465,0,3382.3718 +7139,8698,15507,15508,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.7178221,5.8335795,50,3,21.930094,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5375907,5.5789661,62.12,32.01,39.74,39.79,8.333333333333334,1,1,0,0,0,12,2,1,269,1749436.9,122054.41,348823.69,0,0,0,2183.9304 +7139,8698,15508,15507,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.410152,7.384141,50,-3,16.306005,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.300736,7.1721954,39.74,39.79,62.12,32.01,6.666666666666667,1,1,0,0,0,12,2,1,269,1749436.9,122054.41,348823.69,0,0,0,2183.9304 +7140,8699,15509,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.3798819,9.0257597,0,0,0,-975.21545,0,2,-9,2021,7,0,40,38,1,0,0,33.18729,33.18729,0,0,0,0,0,0,0,0,0,0,0,5.7610116,0,68.2,37.54,-9,-9,8.333333333333334,1,1,0,0,6,9,5,0,1007,481377.72,94827.625,280585.66,0,130.83217,0,5066.7358 +7141,8700,15510,15511,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,4.98353,5.2053394,32,17,-39.650562,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,5.5028882,63.91,15.57,48.18,61.8,8.333333333333334,1,1,0,0,8,11,5,0,205,2478280,2012238.4,217829.59,0,380.0238,0,3802.0027 +7141,8700,15511,15510,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.9973049,8.8136826,0,32,-17,-72.864334,0,3,3,2021,5,0,30,49,1,0,0,27.441935,27.441935,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,63.91,15.57,10,1,1,0,0,10,11,5,0,205,2478280,2012238.4,217829.59,0,380.0238,0,3802.0027 +7142,8701,15512,15513,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.6373177,8.3922749,35,13,-38.645302,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1669488,8.3702946,52.82,51.63,49.04,50.63,8.333333333333334,1,1,0,0,0,6,5,1,3178.5,1993083.5,964323.75,256014.84,0,0,0,3818.2405 +7142,8701,15513,15512,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.9623961,7.9427881,35,-13,5.3570657,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.95999807,8.0491028,49.04,50.63,52.82,51.63,8.333333333333334,1,1,0,0,0,6,5,1,3178.5,1993083.5,964323.75,256014.84,0,0,0,3818.2405 +7143,8702,15514,-9,15516,15517,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.5494,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15515,-9,15516,15517,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96185,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15516,15517,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.7041407,7.4999475,0,4,-3,-87.555252,0,1,1,2021,12,1,31,0,1,1,0,7.9734974,7.9734974,0,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.06,57.76,8.333333333333334,1,1,0,0,3,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15517,15516,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,6.5289712,6.6555476,0,4,3,-110.51972,0,2,2,2021,9,0,38,55,1,0,0,2.4344096,2.4344096,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.67,55.57,6.666666666666667,1,1,0,0,7,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7144,8703,15518,15519,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,8.546052,8.6574154,62,-4,134.94493,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.7056341,0,65.88,17.14,56.19,5.98,10,1,1,0,0,0,9,4,1,934.5,1168401,408287.56,485309.56,0,0,0,3740.9629 +7144,8703,15519,15518,-9,-9,1,1,93,0,0,0,2,2,-9,0,1,0,7.04668,6.7485976,62,4,5.194829,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.00771,0,0,1,1,0,3.137459,6.7286515,56.19,5.98,65.88,17.14,8.333333333333334,1,1,0,0,0,9,4,1,934.5,1168401,408287.56,485309.56,0,0,0,3740.9629 +7144,8704,15520,-9,15518,15519,1,1,58,0,0,0,1,1,-9,0,3,0,7.5304308,7.5484605,0,0,-1064.2878,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,8.0448332,7.7674308,44.58,51.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,421,622792.38,240152.42,279406.69,106080.49,0,0,4093.4417 +7145,8705,15521,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.4426,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0687947,0,57,49,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,398,84601.094,0,0,0,0,0,1021.738 +7146,8706,15522,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.3701754,8.5090122,8.159955,0,0,-936.55164,0,3,3,2021,8,0,30,29,1,0,0,5.4286489,5.4286489,0,0,0,0,0,0,0,0,1,1,0,0,8.1134996,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,191,595676.88,324795.78,171652.63,0,0,0,2917.9663 +7147,8707,15523,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.5444255,7.4366446,0,0,0,-989.88593,0,3,2,2021,3,0,35,34,1,0,0,5.1147213,5.1147213,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,469.5,604791.75,0,552640.25,125666.02,0,0,1581.0222 +7147,8707,15524,-9,15523,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.66632,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,469.5,604791.75,0,552640.25,125666.02,0,0,1581.0222 +7147,8708,15525,-9,15523,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.9147,1,1,-9,2021,12,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4248316,0,37.61,56.99,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,418,-56349.98,0,0,0,0,0,539.88989 +7147,8709,15526,-9,15523,-9,1,1,19,0,1,0,2,2,-9,0,3,7.3322558,7.6059203,0,0,0,-1032.1188,0,1,-9,2021,5,0,40,40,1,0,1,4.819407,4.819407,0,0,0,0,0,0,0,0,1,1,0,.049720969,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,878,171576.83,0,0,0,0,0,39.696133 +7148,8710,15527,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,8.0195818,8.1103554,0,0,-960.29657,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.2081523,0,0,1,1,0,0,7.847116,53,44,-9,-9,8,1,1,0,0,0,12,4,1,884,1447499.4,106087.93,326378.34,0,0,0,2643.6389 +7149,8711,15528,15529,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,8.2910566,8.2425499,0,7,-1,-9.5010967,0,2,2,2021,9,0,60,56,1,0,0,9.9093399,9.9093399,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,46.33,55.93,8.333333333333334,1,1,0,0,8,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7149,8711,15529,15528,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.2163153,8.4453068,0,7,1,-26.972557,0,-9,-9,2021,10,1,82,45,1,1,0,7.2592893,7.2592893,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,54.37,54.8,6.666666666666667,1,1,0,0,8,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7149,8711,15530,-9,15528,15529,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.5239,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7150,8712,15531,15532,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,0,0,0,12,-2,-36.125519,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,35.13,58.44,5,2,3,0,0,0,2,4,1,816,-124753.88,4310.9355,0,0,0,0,3571.7832 +7150,8712,15532,15531,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5226755,8.8600245,0,28,2,-105.48416,0,3,3,2021,32,12,30,30,1,12,0,28.70941,28.70941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.13,58.44,39.53,37.66,5,2,3,0,1,13,2,4,1,816,-124753.88,4310.9355,0,0,0,0,3571.7832 +7150,8713,15533,-9,15531,15532,1,1,24,0,0,0,1,1,-9,0,3,8.1475916,8.2100773,0,0,0,-849.32117,0,2,2,2021,8,0,35,35,1,0,1,12.377533,12.377533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.37,43.51,-9,-9,5,2,3,0,0,4,2,4,1,554,118588.24,-128102.17,0,0,0,0,1142.78 +7150,8714,15534,-9,15531,15532,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-890.32019,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.81,41.04,-9,-9,10,2,3,0,0,2,2,1,1,653,-1154.6769,0,0,0,0,0,0 +7150,8715,15535,-9,15531,15532,1,0,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1128.0496,-9,2,2,2021,12,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.83,54.5,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,396,0,0,0,0,0,0,0 +7151,8716,15536,15537,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.7870851,8.0501156,0,2,-2,-108.89062,0,3,3,2021,12,0,37,37,1,0,0,8.389101,8.389101,0,0,0,0,0,0,0,0,0,0,0,2.1905849,0,41.47,56.81,38.47,57.72,8.333333333333334,1,1,0,0,9,2,4,1,1138,80334.844,-78608.617,125929.86,136804.95,0,0,2439.0652 +7151,8716,15537,15536,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4050226,8.2428331,0,2,2,-9.3058138,0,-9,-9,2021,12,0,47,40,1,0,0,10.438675,10.438675,.05,.05,0,0,0,0,0,0,0,0,0,2.8353639,0,38.47,57.72,41.47,56.81,1.666666666666667,1,1,0,0,9,2,4,1,1138,80334.844,-78608.617,125929.86,136804.95,0,0,2439.0652 +7152,8717,15538,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-918.87024,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,8,1,1,0,0,9,13,1,1,89,17702.705,0,127273.87,0,0,0,736.20343 +7153,8718,15539,15540,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,18,-5,9.4868679,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,22.228422,0,0,1,1,0,7.6186066,0,66.62,21.03,55.57,48.59,10,1,1,0,0,0,7,2,1,1220,341351.94,127983.51,213520.34,0,0,0,1852.4792 +7153,8718,15540,15539,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.4634333,6.7892509,19,5,-221.22949,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4855385,55.57,48.59,66.62,21.03,8.333333333333334,1,1,0,0,0,7,2,1,1220,341351.94,127983.51,213520.34,0,0,0,1852.4792 +7154,8719,15541,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,5,7.6922894,8.0673227,5.348094,0,0,-1112.4896,0,3,3,2021,6,0,40,40,1,0,0,7.2194376,7.2194376,0,0,0,0,0,0,0,0,1,1,0,3.7401941,5.5549393,50.54,62.09,-9,-9,10,1,1,0,0,10,4,4,0,221,46512.582,0,125508.41,0,0,0,1873.422 +7155,8720,15542,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.3011,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.56,62.74,-9,-9,10,1,1,0,0,6,8,1,0,3468,0,0,0,0,0,0,1185.0822 +7156,8721,15543,-9,15545,15546,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3151,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15544,-9,15545,15546,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.81958,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15545,15546,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,8.0160666,8.2064505,0,19,-14,-39.666679,0,2,3,2021,14,4,53,32,1,4,0,6.664124,6.664124,0,0,0,0,0,0,0,0,1,1,0,0,0,37.23,51.73,44.83,41.9,8.333333333333334,1,1,0,0,9,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15546,15545,-9,-9,1,1,59,0,2,0,2,2,-9,0,2,8.212286,8.2310963,0,19,14,-13.196383,0,3,3,2021,24,12,48,48,1,12,0,7.6533566,7.6533566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.83,41.9,37.23,51.73,3.333333333333333,1,1,0,0,9,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7157,8722,15547,15548,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6578932,8.5092487,0,35,-3,-28.364506,0,2,3,2021,7,0,40,40,1,0,0,16.245417,16.245417,0,0,.05,0,0,0,0,2,0,0,0,0,0,56.77,52.22,60.54,42.81,8.333333333333334,1,1,0,0,12,9,5,1,526,678594.69,430974.63,240695.16,40104.266,5054.7305,3163.7153,4053.5825 +7157,8722,15548,15547,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.0504446,8.2591858,0,10,3,97.077744,0,-9,-9,2021,6,0,46,47,1,0,0,10.515415,10.515415,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.54,42.81,56.77,52.22,6.666666666666667,1,1,0,0,9,9,5,1,526,678594.69,430974.63,240695.16,40104.266,5054.7305,3163.7153,4053.5825 +7158,8723,15549,-9,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.5912685,8.6017857,5.0893006,0,0,-929.72418,-9,2,2,2021,0,0,70,0,1,0,0,7.7351155,7.7351155,.05,.05,0,0,0,0,0,0,1,1,0,7.6173882,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,355,285933.22,-30014.266,350630.47,140424.22,0,0,3218.1267 +7159,8724,15550,15551,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,12,-3,0,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,30.464212,0,120,1,1,0,0,0,16.94,42.53,49.26,27.68,3.333333333333333,1,1,0,0,0,6,1,1,260,23840.043,-6433.9346,0,0,0,0,2359.1333 +7159,8724,15551,15550,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,12,3,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.26,27.68,16.94,42.53,5,1,1,0,0,0,6,1,1,260,23840.043,-6433.9346,0,0,0,0,2359.1333 +7160,8725,15552,15553,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.7232742,8.3219767,0,4,3,-134.20264,-9,-9,-9,2021,10,0,40,0,1,1,0,16.95437,16.95437,0,0,0,0,0,0,0,0,1,1,0,5.4974084,0,51,57,57.33,53.46,7,4,1,0,0,1,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15553,15552,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.0103922,8.3473444,5.8785992,4,-3,84.923149,0,2,2,2021,8,0,36,30,1,0,0,9.1375265,9.1375265,0,0,0,0,0,0,0,0,1,1,0,6.156404,0,57.33,53.46,51,57,8.333333333333334,1,1,0,0,3,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15554,-9,15553,15552,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7663,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15555,-9,15553,15552,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1429,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7161,8726,15556,15557,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,7.9441519,8.4333496,6.3884501,33,1,83.416893,0,3,3,2021,11,0,38,42,1,0,0,14.061171,14.061171,.05,.05,0,0,0,0,0,0,1,1,0,7.6564164,6.6790519,56.34,40.63,22.87,23.73,3.333333333333333,1,1,0,0,14,4,4,1,347,607244.75,209603.72,372055.31,24265.016,0,0,3506 +7161,8726,15557,15556,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,33,-1,-60.819817,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,22.87,23.73,56.34,40.63,1.666666666666667,1,1,0,0,0,4,4,1,347,607244.75,209603.72,372055.31,24265.016,0,0,3506 +7161,8727,15558,-9,15557,15556,1,0,19,0,0,1,2,0,0,0,2,0,8.1737881,8.0581045,0,0,-1101.103,-9,2,2,2021,20,8,0,0,2,8,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.0863476,0,28.38,42.84,-9,-9,6.666666666666667,1,1,0,0,2,4,5,1,2178,-119224.97,32084.33,203478.27,69071.18,0,494.1936,3004.6392 +7162,8728,15559,15560,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,7.2535548,7.2080774,0,10,-13,26.058388,0,2,-9,2021,12,0,20,19,1,0,0,8.2944908,8.2944908,0,0,0,0,0,0,0,0,1,1,0,0,0,37.9,50.3,60.45,43.75,5,1,1,0,1,11,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15560,15559,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,6.2306232,6.130815,0,10,13,-8.1081066,0,-9,-9,2021,10,2,50,50,1,2,0,1.6728441,1.6728441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.45,43.75,37.9,50.3,8.333333333333334,1,1,0,0,11,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15561,-9,15559,15560,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.5515,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15562,-9,15559,15560,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7163,8729,15563,15564,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.0478954,7.7993217,0,9,3,-.97571558,0,-9,-9,2021,8,0,44,44,1,0,0,8.5644808,8.5644808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,14.63,55.48,8.333333333333334,1,1,0,0,11,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8729,15564,15563,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,0,0,9,-3,-6.6996884,0,-9,-9,2021,22,10,0,16,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.63,55.48,54.37,54.8,5,1,1,1,0,4,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8729,15565,-9,15564,15563,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.9425,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8730,15566,-9,15564,15563,1,0,19,0,1,0,2,2,-9,0,4,7.5830407,7.4367437,0,0,0,-988.51245,-9,2,2,2021,11,0,40,0,1,0,1,6.1249518,6.1249518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,1447,-49631.949,-22848.947,0,0,-534.19379,0,1472.2866 +7164,8731,15567,15568,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.1316442,5.7944732,49,2,90.925613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.965271,44.7,53.68,57.18,42.93,10,1,1,0,0,0,2,5,1,1675,1181394.4,809526.06,238986.38,0,5080.0264,0,4850.6699 +7164,8731,15568,15567,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.9260645,9.0850639,0,17,-2,67.33831,0,3,2,2021,5,0,47,54,1,0,0,18.574924,18.574924,0,0,0,0,0,0,0,0,1,1,0,0,0,57.18,42.93,44.7,53.68,8.333333333333334,1,1,0,0,11,2,5,1,1675,1181394.4,809526.06,238986.38,0,5080.0264,0,4850.6699 +7165,8732,15569,15571,-9,-9,1,1,50,1,2,0,2,2,-9,0,4,8.1630573,7.891912,0,2,18,-73.989342,0,2,1,2021,12,0,40,50,1,0,0,10.205026,10.205026,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.23,55.6,45.09,57.73,8.333333333333334,1,1,0,0,10,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15570,-9,15571,15569,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.87939,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15571,15569,-9,-9,1,0,32,1,2,0,2,2,-9,0,5,7.9813023,8.0713701,0,2,-18,23.791233,0,-9,-9,2021,18,6,24,27,1,6,0,16.641558,16.641558,.05,.05,0,0,0,0,0,0,1,1,0,6.594296,0,45.09,57.73,52.23,55.6,6.666666666666667,1,1,0,0,5,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15572,-9,-9,15569,1,1,17,1,2,0,2,2,-9,0,3,0,0,0,0,0,-969.50977,-9,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7186375,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,1,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15573,-9,15571,15569,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2627,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7166,8733,15574,15575,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7688274,8.7116804,46,4,-67.802391,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,25.511061,0,0,1,1,0,0,8.8292074,56.18,45.82,57.16,56.15,10,1,1,0,0,0,10,5,1,836.5,1556205.9,1222735.6,149377.92,0,0,0,4644.4355 +7166,8733,15575,15574,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4240208,7.0483418,46,-4,97.210205,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2438073,7.2894368,57.16,56.15,56.18,45.82,8.333333333333334,1,1,0,0,0,10,5,1,836.5,1556205.9,1222735.6,149377.92,0,0,0,4644.4355 +7167,8734,15576,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.7920742,5.6594558,0,0,-1076.0282,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41238835,5.5786653,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,10,11,2,0,522,225241.52,-53543.129,0,0,0,0,1539.8116 +7168,8735,15577,15578,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.2772532,9.557394,0,9,-3,242.78381,0,-9,-9,2021,9,0,45,45,1,0,0,24.486589,24.486589,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.25,52.33,54.43,49.12,8.333333333333334,1,1,0,0,8,2,5,1,727,163844.47,79586.969,207157.39,182493.78,6553.6836,0,5479.0938 +7168,8735,15578,15577,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6166401,8.4610615,0,9,3,-45.413174,0,2,2,2021,8,0,45,45,1,0,0,10.893745,10.893745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.43,49.12,47.25,52.33,0,1,1,0,0,10,2,5,1,727,163844.47,79586.969,207157.39,182493.78,6553.6836,0,5479.0938 +7169,8736,15579,-9,-9,-9,1,0,53,1,2,0,2,2,-9,0,2,7.9268537,7.7856555,0,0,0,-995.79987,0,-9,-9,2021,12,0,38,38,1,0,0,8.2504587,8.2504587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.95,43.11,-9,-9,5,1,1,0,0,12,10,3,1,1620,1014025.4,656994.81,185309.25,0,0,0,914.50928 +7169,8737,15580,-9,15579,-9,1,0,27,1,2,0,2,2,-9,0,4,7.8755655,7.8583117,0,0,0,-885.93323,0,2,2,2021,10,1,23,23,1,1,1,9.5756159,9.5756159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.46,45.94,-9,-9,8.333333333333334,1,1,0,1,11,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7169,8737,15581,-9,15580,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.22473,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7169,8737,15582,-9,15580,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.12488,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7170,8738,15583,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.3571424,8.0466518,0,0,0,-976.53601,0,1,1,2021,10,0,37,38,1,0,0,12.860065,12.860065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.12,56.92,-9,-9,6.666666666666667,3,4,0,0,10,8,3,0,1348,634147.13,559803.31,443353.84,254974.13,17911.143,5802.0693,1618.7773 +7170,8739,15584,-9,15583,-9,1,1,21,0,1,0,2,2,1,0,5,7.2061458,7.4373651,0,0,0,-1108.4879,-9,1,-9,2021,8,0,25,0,1,0,1,7.7137523,7.7137523,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,152,67009.219,0,0,0,0,-1332.0018,965.10425 +7170,8740,15585,-9,-9,-9,1,0,20,0,1,0,2,2,1,0,4,8.711277,8.3569708,0,0,0,-1040.5792,-9,-9,-9,2021,4,1,38,0,1,1,0,11.611067,11.611067,0,0,0,0,0,0,0,0,1,1,0,7.4060721,0,45.73,46.02,-9,-9,5,3,4,0,0,2,8,4,0,1018,-8669.5166,-14566.271,0,0,2489.7808,0,3831.6196 +7171,8741,15586,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.2349124,6.9812894,0,0,-957.38245,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2792044,7.4153814,55.9,51.29,-9,-9,8.333333333333334,1,1,0,0,13,11,2,1,801,314439.97,192816.98,103524.23,0,0,0,1803.2902 +7172,8742,15587,-9,-9,-9,1,0,60,1,1,0,3,3,-9,1,1,0,5.8603082,5.828485,0,0,-931.24091,0,-9,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6355968,34.07,17.28,-9,-9,0,1,1,0,0,0,6,2,0,1240,231482.88,53363.359,12594.78,0,0,0,666.51178 +7172,8743,15588,-9,15587,-9,1,1,27,1,1,0,2,2,-9,0,4,7.8062778,7.6381936,0,0,0,-1094.156,0,3,-9,2021,9,1,42,40,1,1,1,5.9813361,5.9813361,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,6,3,0,504,-226546.33,-15177.299,0,0,0,0,160.41779 +7172,8744,15589,-9,15587,-9,1,0,26,1,1,0,2,2,-9,0,2,7.7945018,7.847002,0,0,0,-1098.0748,0,3,2,2021,15,4,30,30,1,4,1,9.5506525,9.5506525,0,0,0,0,0,0,0,0,1,1,0,0,0,37.09,46.85,-9,-9,5,1,1,0,0,7,6,3,0,1074,77086.695,0,0,0,0,0,1342.2096 +7172,8744,15590,-9,15589,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1113.1813,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1074,77086.695,0,0,0,0,0,1342.2096 +7173,8745,15591,15592,-9,15593,1,0,67,0,0,0,1,1,-9,0,4,7.3462496,7.7071242,0,7,-6,78.504631,0,2,2,2021,8,0,30,35,1,0,0,5.5800772,5.5800772,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,9,3,1,824,1281658.5,875579.31,325912.44,0,0,0,3420.241 +7173,8745,15592,15591,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.8349738,7.8551764,7,6,43.559898,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.1819353,7.719769,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,824,1281658.5,875579.31,325912.44,0,0,0,3420.241 +7173,8746,15593,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,6.3923941,5.9897447,0,0,-1089.4802,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.627773,14.256931,19.908297,0,1,1,0,0,6.2226195,43.25,26.11,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,133,402268.41,-16642.941,142297.19,0,0,0,787.24921 +7174,8747,15594,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3265829,6.113564,0,0,-1004.9892,0,-9,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4653049,6.3655462,43.08,37.18,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1257,429379.47,30536.045,227513.02,0,0,0,1639.6292 +7175,8748,15595,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.76825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.66,44.52,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,113,-76696.984,0,98414.836,0,0,2103.9204,423.14264 +7175,8749,15596,-9,15595,-9,1,0,35,0,0,0,1,1,-9,1,3,0,5.2197399,5.4087834,0,0,-947.59271,0,3,3,2021,14,7,0,35,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1756639,5.5635476,39.99,51.87,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,552,43062.926,-50578.98,0,0,0,0,-833.25916 +7175,8750,15597,-9,15595,-9,1,0,35,0,0,0,1,1,-9,0,4,7.5941153,7.6175785,0,0,0,-796.61768,0,3,3,2021,12,1,37,35,1,1,0,6.8558741,6.8558741,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,1378,163933.34,0,53577.344,33172.41,0,0,791.48016 +7176,8751,15598,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4083147,7.5159826,0,0,0,-973.70166,-9,-9,-9,2021,11,0,20,0,1,0,0,10.847899,10.847899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.39,52.94,-9,-9,6.666666666666667,1,1,0,0,5,2,3,0,381,-17708.867,10409.504,0,0,0,0,528.88208 +7177,8752,15599,15600,15602,15603,1,1,53,0,0,0,1,1,-9,0,4,8.1362514,8.3652315,0,34,6,-28.031174,0,3,2,2021,6,0,33,33,1,0,0,14.852441,14.852441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,41.47,58.08,10,2,3,0,0,8,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8752,15600,15599,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,6.8467627,6.8734899,0,34,-6,-117.61056,0,3,2,2021,10,0,19,20,1,0,0,6.2885337,6.2885337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,59.14,52.5,10,2,3,0,0,8,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8752,15601,-9,15600,15599,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.33441,-9,2,1,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.36,62.77,-9,-9,8.333333333333334,2,3,0,0,0,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8753,15602,15603,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,3,0,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,46,8,2,3,0,0,0,2,1,1,659.5,149714.45,0,217095.94,0,0,0,0 +7177,8753,15603,15602,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,3,0,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,2,1,1,659.5,149714.45,0,217095.94,0,0,0,0 +7178,8754,15604,15605,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.6029696,7.5858636,18,5,70.966766,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.743475,39.39,37.66,44.44,41.83,6.666666666666667,1,1,0,0,0,4,3,1,684,667535.88,748739.13,84522.93,0,0,0,908.56873 +7178,8754,15605,15604,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,18,-5,77.44268,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.44,41.83,39.39,37.66,1.666666666666667,1,1,0,0,12,4,3,1,684,667535.88,748739.13,84522.93,0,0,0,908.56873 +7179,8755,15606,15607,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2897863,8.44666,0,2,-4,5.2505279,-9,-9,-9,2021,19,8,41,0,1,8,0,9.4775848,9.4775848,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.26,35.16,56.07,55.46,8.333333333333334,1,1,0,0,1,4,5,1,699,567778.25,166658.94,265184.81,94347.602,0,1788.9773,3507.5605 +7179,8755,15607,15606,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7299156,8.5308151,0,2,4,-18.546513,0,-9,-9,2021,10,0,57,47,1,0,0,10.839965,10.839965,.05,.05,0,0,0,0,0,0,0,0,0,7.9724855,0,56.07,55.46,46.26,35.16,8.333333333333334,1,1,0,0,12,4,5,1,699,567778.25,166658.94,265184.81,94347.602,0,1788.9773,3507.5605 +7180,8756,15608,15609,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.8801112,8.0833817,8,7,20.398167,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,8.2446508,36.44,23.85,42.86,34.81,3.333333333333333,1,1,0,0,0,2,4,1,1347,849067.25,244345.31,193608.06,0,0,0,3586.3936 +7180,8756,15609,15608,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5333233,7.2432165,58,-7,-18.063421,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.9559259,7.3480005,42.86,34.81,36.44,23.85,6.666666666666667,1,1,0,0,0,2,4,1,1347,849067.25,244345.31,193608.06,0,0,0,3586.3936 +7181,8757,15610,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,8.9718285,8.8481483,3.6494505,0,0,-1068.2744,0,2,3,2021,10,0,30,30,1,0,0,18.13015,18.13015,0,0,0,0,0,0,0,0,0,0,0,8.8679628,3.6128399,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,1082,1049271.8,597845.38,445521.47,0,0,0,5134.9609 +7182,8758,15611,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.0171037,4.2889142,0,0,-988.88586,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0031404,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,214,108276.5,25021.639,0,0,0,0,1299.439 +7182,8759,15612,-9,-9,15611,1,1,23,0,0,0,2,2,-9,0,3,7.9866457,8.1788063,0,0,0,-1058.8268,0,-9,3,2021,12,0,5,39,1,0,0,72.421669,72.421669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.8,49.93,-9,-9,3.333333333333333,1,1,0,0,5,7,4,0,730,-45699.344,179538.41,0,0,0,0,964.99774 +7183,8760,15613,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9680343,8.0699701,0,0,0,-1052.8568,0,2,2,2021,9,0,35,36,1,0,0,9.9646959,9.9646959,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,12,4,1,189,154622.39,26722.1,75064.68,0,0,0,342.97873 +7183,8761,15614,-9,15613,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-943.79425,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.75,63.69,-9,-9,6.666666666666667,1,1,0,0,6,12,1,1,346,151686.45,0,0,0,0,0,-241.27509 +7184,8762,15615,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.4881926,8.3315001,0,0,0,-1101.3942,0,2,1,2021,15,3,45,44,1,3,0,12.284408,12.284408,0,0,0,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,6.666666666666667,3,4,0,0,7,8,5,0,1346,295707.81,0,0,0,4672.9805,0,2484.1118 +7185,8763,15616,15617,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,8,-10,113.9978,0,1,1,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,28.62,44.99,57.16,56.15,1.666666666666667,4,5,0,0,0,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7185,8763,15617,15616,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.6767168,9.6152573,0,8,10,8.0790224,0,3,3,2021,10,0,9,8,1,0,0,190.07484,190.07484,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.62,44.99,8.333333333333334,1,1,0,0,10,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7185,8763,15618,-9,15616,15617,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.1824,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7186,8764,15619,-9,15623,-9,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.80243,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15620,-9,15623,-9,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1139.3165,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15621,-9,15623,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-922.41699,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15622,-9,15623,-9,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.7392,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15623,-9,-9,-9,1,0,35,1,4,0,2,2,-9,0,2,0,6.4466319,6.2063088,0,0,-1040.9662,0,2,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2109022,0,12.34,58.59,-9,-9,5,1,1,0,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7187,8765,15624,15625,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.5561886,9.8075705,4.5434947,7,-4,100.76929,0,3,3,2021,7,0,48,52,1,0,0,39.225273,39.225273,.05,.05,.05,0,0,0,0,0,1,1,0,3.5947442,4.2862053,60.42,54.81,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,423,1616123.5,1356256.5,385738.25,0,0,0,8332.0801 +7187,8765,15625,15624,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.6161842,6.628653,7,4,-10.878688,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2273893,6.4353895,54.2,57.49,60.42,54.81,8.333333333333334,1,1,0,0,4,11,5,1,423,1616123.5,1356256.5,385738.25,0,0,0,8332.0801 +7188,8766,15626,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4044971,8.5371265,0,0,0,-831.61737,0,1,1,2021,18,6,37,38,1,6,0,21.040245,21.040245,.05,.05,0,0,0,0,0,0,0,0,0,1.2643805,0,22.78,65.51000000000001,-9,-9,3.333333333333333,1,1,0,0,2,9,5,0,297,225158.05,54555.348,186205.78,108848.2,9853.0977,0,2624.9807 +7189,8767,15627,15628,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.2700953,5.121654,45,8,-15.5502,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,22.397459,0,0,1,1,0,7.4086251,5.0775166,65.04000000000001,28.07,44.49,61.79,10,1,1,0,0,0,2,2,1,411,174453.11,43808.078,107694.89,0,0,0,2749.6709 +7189,8767,15628,15627,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4206886,6.4262156,45,-8,-45.410084,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2943397,6.2600298,44.49,61.79,65.04000000000001,28.07,8.333333333333334,1,1,0,0,5,2,2,1,411,174453.11,43808.078,107694.89,0,0,0,2749.6709 +7190,8768,15629,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-995.25714,0,2,2,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.66,41.52,-9,-9,0,1,1,0,0,0,4,1,1,293,265101.69,0,0,0,-350.77216,0,1023.4993 +7191,8769,15630,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-842.46344,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,0,1,1,0,1,0,8,2,0,798,-40474.73,0,0,0,0,0,2194.283 +7191,8769,15631,-9,15630,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-898.80573,-9,2,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,798,-40474.73,0,0,0,0,0,2194.283 +7192,8770,15632,15633,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0581903,7.8213301,0,11,9,19.434637,0,-9,-9,2021,8,0,43,38,1,0,0,9.4284973,9.4284973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.06,48.59,36.99,54.9,6.666666666666667,1,1,0,0,13,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8770,15633,15632,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.3914104,7.7684355,0,11,0,-45.074883,0,-9,-9,2021,10,0,15,15,1,0,0,17.111912,17.111912,0,0,0,0,0,0,0,0,1,1,0,0,0,36.99,54.9,59.06,48.59,6.666666666666667,1,1,0,0,12,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8770,15634,-9,15633,15632,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1045.4257,-9,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8771,15635,-9,15633,15632,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-988.4342,0,2,3,2021,20,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,3.333333333333333,1,1,1,0,0,9,1,0,1084,-168004.73,0,0,0,0,0,0 +7193,8772,15636,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1071.8484,-9,-9,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.43,54.04,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,336,-116524.42,0,0,0,0,0,-144.24757 +7194,8773,15637,15638,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.3590412,7.9056907,7.2474017,25,1,87.587654,0,3,3,2021,11,3,15,15,1,3,0,10.392196,10.392196,0,0,0,0,0,0,0,2,1,1,0,7.3260779,0,53.61,21.96,54.37,54.8,8.333333333333334,1,1,0,0,9,6,5,1,262,562180.44,131044.65,353552.72,0,20750.898,0,4593.5479 +7194,8773,15638,15637,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,0,9.0118885,8.6899529,25,-1,34.242294,0,2,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.0174837,0,54.37,54.8,53.61,21.96,8.333333333333334,1,1,0,0,10,6,5,1,262,562180.44,131044.65,353552.72,0,20750.898,0,4593.5479 +7195,8774,15639,15642,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,8.0161085,8.4824686,0,5,-6,-39.522652,0,-9,-9,2021,9,0,30,30,1,0,0,19.883455,19.883455,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15640,-9,15639,15642,1,1,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-912.3064,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15641,-9,15639,15642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.98804,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15642,15639,-9,-9,1,1,44,2,3,0,2,2,-9,0,4,8.8297062,8.6726713,0,5,6,-50.230186,0,2,1,2021,12,0,40,40,1,0,0,19.443876,19.443876,.05,.05,0,0,0,0,0,0,1,1,0,6.429009,0,48.87,58.55,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15643,-9,15639,15642,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-971.92377,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7196,8775,15644,15645,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.2106094,6.0192142,65,2,71.345161,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,5.0424619,48.411346,42.384304,42,1,1,0,0,5.9114461,55,45,52,45,8,1,1,0,0,0,4,2,1,550.5,385576.75,10695.244,163976.53,0,0,0,1609.8645 +7196,8775,15645,15644,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.2228537,5.8290687,65,-2,93.349373,0,-9,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,5.6980824,33.258308,49.84285,120,1,1,0,0,6.2552867,52,45,55,45,8,1,1,0,0,0,4,2,1,550.5,385576.75,10695.244,163976.53,0,0,0,1609.8645 +7197,8776,15646,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,8.9628553,8.9221792,0,0,-870.16144,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4032402,9.1852636,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,536,1266354.9,644399.31,553751,0,0,0,5998.8706 +7198,8777,15647,15648,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7743578,8.6854076,0,9,3,-64.743164,0,-9,-9,2021,9,0,38,38,1,1,0,22.449333,22.449333,.05,.05,0,0,0,0,0,0,1,1,0,.62521803,0,53,54,43.13,44.98,8,1,1,0,0,1,12,5,1,2823,147894.05,226417.41,0,0,0,0,3521.729 +7198,8777,15648,15647,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9569387,8.052268,0,32,-3,-24.753853,0,3,3,2021,13,2,40,44,1,2,0,10.40256,10.40256,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.13,44.98,53,54,8.333333333333334,1,1,0,0,8,12,5,1,2823,147894.05,226417.41,0,0,0,0,3521.729 +7198,8778,15649,-9,15648,15647,1,0,28,0,0,0,2,2,-9,0,3,7.916162,7.8508701,0,0,0,-888.98523,0,3,2,2021,27,12,30,42,1,12,1,8.9316435,8.9316435,0,0,0,0,0,0,0,0,1,1,0,0,0,26.31,48.54,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1607,-248156.91,0,0,0,5396.8071,0,1131.406 +7198,8779,15650,-9,15648,15647,1,0,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-926.41388,-9,3,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,1543,-18362.385,0,0,0,0,0,0 +7199,8780,15651,-9,15652,15653,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-876.42969,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7199,8780,15652,15653,-9,-9,1,0,25,1,1,0,2,2,-9,0,2,0,0,0,3,-2,0,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.34,44.9,41,44,10,1,1,1,0,0,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7199,8780,15653,15652,-9,-9,1,1,27,1,1,0,3,3,-9,0,2,0,0,0,3,2,0,0,2,2,2021,13,1,0,60,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,44,47.34,44.9,6.666666666666667,1,1,1,0,4,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7200,8781,15654,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.6442285,6.0274253,0,0,-936.98944,0,3,3,2021,23,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7817497,37.43,18.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,519,287752.78,-42530.488,0,0,0,1874.3556,2873.3813 +7201,8782,15655,15656,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.2372723,8.3930149,13,9,12.085486,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,11.219915,0,0,1,1,0,1.8121771,8.2639055,56.05,48.44,48.75,37.34,8.333333333333334,1,1,0,0,0,1,4,1,566.5,1389353.8,461556.25,358305.13,0,0,0,4004.249 +7201,8782,15656,15655,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.1777544,6.2096853,13,0,84.257217,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0220022,48.75,37.34,56.05,48.44,3.333333333333333,1,1,0,0,0,1,4,1,566.5,1389353.8,461556.25,358305.13,0,0,0,4004.249 +7202,8783,15657,15658,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.4691515,7.523159,0,8,1,147.53311,0,-9,-9,2021,6,0,25,25,1,0,0,8.4710569,8.4710569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,30.6,18.53,8.333333333333334,1,1,0,0,12,2,4,1,1760.5,167084.33,34266.309,151771.09,24983.719,0,0,2929.7832 +7202,8783,15658,15657,-9,-9,1,0,48,0,0,0,1,1,-9,0,1,8.3835897,8.0105124,0,8,-1,-199.11832,0,-9,-9,2021,24,11,36,36,1,11,0,10.992084,10.992084,.05,.05,0,0,0,0,0,0,0,0,0,2.8768101,0,30.6,18.53,54.79,55.86,1.666666666666667,1,1,0,0,12,2,4,1,1760.5,167084.33,34266.309,151771.09,24983.719,0,0,2929.7832 +7203,8784,15659,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.0870733,8.6695147,7.5902615,0,0,-937.89691,0,2,2,2021,15,3,36,38,1,3,0,9.8342247,9.8342247,.05,.05,0,0,0,0,0,0,1,1,0,1.9887805,7.3647089,47.16,28.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,265,1048792.8,633327.63,405089.28,0,11970.418,0,2596.9146 +7204,8785,15660,15661,-9,-9,1,1,34,1,4,0,2,2,-9,0,3,8.2271614,8.0474091,0,7,7,38.827137,0,-9,-9,2021,15,3,49,49,1,3,0,7.1688247,7.1688247,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,28.57,61.36,6.666666666666667,1,1,0,1,6,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15661,15660,-9,-9,1,0,27,1,4,0,3,3,-9,0,3,0,0,0,7,-7,-51.824284,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,46.08,57.2,8.333333333333334,1,1,0,1,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15662,-9,15661,15660,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-945.46722,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15663,-9,15661,15660,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1069.1158,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15664,-9,15661,15660,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-914.50232,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15665,-9,15661,15660,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.7793,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7205,8786,15666,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.970243,7.0205297,0,0,-1001.4473,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3710294,0,0,1,1,0,0,7.1380353,51.68,38.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,200,171093.64,75559.031,271066.19,0,0,0,777.40558 +7206,8787,15667,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.195168,3.9368136,0,0,-953.06,0,2,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.38098,4.0509801,31.11,44.46,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,1193,82317.578,-52117.922,0,0,0,0,1227.5823 +7207,8788,15668,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1393099,7.8217273,0,0,0,-1097.6682,0,2,1,2021,16,5,80,85,1,5,0,4.1555123,4.1555123,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,36.3,48.72,-9,-9,3.333333333333333,1,1,0,0,9,10,3,0,225,-174624.08,68574.359,29025.908,1830.1321,0,0,1705.8729 +7208,8789,15669,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.3547106,8.3747797,0,0,0,-937.74695,-9,1,1,2021,11,0,38,0,1,0,0,10.740667,10.740667,.05,.05,0,0,0,0,0,0,0,0,0,5.2068772,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,505,-34545.895,51754.852,0,0,0,0,2022.0313 +7209,8790,15670,15672,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.8342323,8.8846302,0,6,1,-59.861004,0,2,2,2021,12,0,55,40,1,0,0,16.421307,16.421307,.05,.05,0,0,0,0,0,0,1,1,0,3.3329556,0,48.77,60.16,35.05,60.2,1.666666666666667,1,1,0,0,9,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7209,8790,15671,-9,15672,15670,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.99908,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7209,8790,15672,15670,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.7999759,7.7692513,0,6,-1,2.8237784,0,-9,-9,2021,8,0,30,30,1,0,0,10.282583,10.282583,.05,.05,0,0,0,0,0,0,1,1,0,.3786799,0,35.05,60.2,48.77,60.16,8.333333333333334,1,1,0,0,8,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7210,8791,15673,-9,15675,-9,1,0,25,0,0,0,2,2,-9,0,5,0,7.1962171,7.0330114,0,0,-955.65747,-9,2,-9,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.510725,0,35.28,65.08,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,356,-48333.012,0,0,0,0,0,375.95923 +7210,8792,15674,-9,15675,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1055.626,-9,2,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,2,4,1,610,105879.37,71058.906,31995.465,35348.969,1341.498,0,1470.183 +7210,8792,15675,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2960291,8.1257381,0,0,0,-970.39606,-9,-9,-9,2021,10,0,40,0,1,1,0,10.271916,10.271916,.05,.05,.05,0,0,0,0,0,0,0,0,6.2554088,0,51,54,-9,-9,8,4,6,0,0,1,2,4,1,610,105879.37,71058.906,31995.465,35348.969,1341.498,0,1470.183 +7211,8793,15676,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.7156577,7.1860876,0,0,-1061.0062,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.9297235,7.5691438,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,9,4,2,0,502,375602.06,146528.92,225441.09,0,0,0,1531.9552 +7212,8794,15677,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.76161,7.5941586,0,0,-983.85999,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3946962,7.7902131,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,3195,232089.23,231434.66,0,0,0,0,2996.9163 +7213,8795,15678,15679,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4284286,8.2028017,0,2,-5,43.686905,0,-9,-9,2021,5,0,60,50,1,0,0,5.1175146,5.1175146,.05,.05,0,0,0,0,0,0,0,0,0,1.1412697,0,57.16,56.15,54.1,59.11,10,1,1,0,0,2,9,5,0,225,155114.59,34769.262,275249.75,149548.97,0,73.640999,4851.4336 +7213,8795,15679,15678,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.8388262,8.7963047,0,2,5,17.52561,0,1,2,2021,8,0,43,40,1,0,0,17.535385,17.535385,.05,.05,0,0,0,0,0,0,0,0,0,7.8743339,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,0,225,155114.59,34769.262,275249.75,149548.97,0,73.640999,4851.4336 +7214,8796,15680,-9,15685,15683,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.02905,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15681,-9,15685,15683,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-935.98749,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15682,-9,15685,15683,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-942.40063,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15683,15685,-9,-9,1,1,42,1,4,0,1,1,-9,0,4,8.5854168,8.74613,0,2,1,87.207115,0,-9,-9,2021,9,1,46,47,1,1,0,17.274542,17.274542,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.13,57.97,46.65,55.59,6.666666666666667,1,1,0,0,11,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15684,-9,15685,15683,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1083.6676,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15685,15683,-9,-9,1,0,41,1,4,0,1,1,-9,0,3,7.8675623,7.4714127,0,2,-1,79.69397,0,2,3,2021,12,0,25,25,1,0,0,15.842762,15.842762,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,55.59,44.13,57.97,6.666666666666667,1,1,0,1,11,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7215,8797,15686,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0679874,9.0388212,0,0,0,-1001.7664,0,2,1,2021,13,2,40,40,1,2,0,24.169477,24.169477,.05,.05,0,0,0,0,0,0,1,1,0,3.7668309,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,515,256489.69,-52058.961,0,0,0,0,2280.5278 +7216,8798,15687,15688,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.3784246,8.6031494,11,-1,1.5057489,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6145654,8.2021427,56.79,38.59,57.76,54.51,8.333333333333334,1,1,0,0,0,1,5,1,707.5,1059405.5,773066.63,235985.91,0,0,0,6332.9424 +7216,8798,15688,15687,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.7537975,8.4330435,11,1,-17.817226,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5294142,57.76,54.51,56.79,38.59,10,1,1,0,0,0,1,5,1,707.5,1059405.5,773066.63,235985.91,0,0,0,6332.9424 +7217,8799,15689,15690,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,8,-12,0,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.6,23.15,37.65,27.39,1.666666666666667,1,1,0,0,0,4,1,0,1579,-4517.8008,0,0,0,0,0,2489.5562 +7217,8799,15690,15689,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,8,12,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.65,27.39,41.6,23.15,5,1,1,0,0,0,4,1,0,1579,-4517.8008,0,0,0,0,0,2489.5562 +7218,8800,15691,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.5937309,8.0029316,0,0,0,-1124.8378,0,-9,-9,2021,11,0,37,37,1,2,0,10.269429,10.269429,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,0,0,5,6,3,0,261,-134914.42,32329.668,0,0,0,0,1613.057 +7219,8801,15692,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.9832668,8.8524427,0,0,0,-1041.5431,0,-9,-9,2021,10,0,52,60,1,0,0,20.099564,20.099564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,976,578494.69,213058.25,529626.5,259694.13,113.54256,0,2471.7708 +7220,8802,15693,15694,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,3,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.68,36.42,41.34,56.62,8.333333333333334,1,1,0,0,0,8,2,1,562,655782.56,162222.66,344854.34,0,0,0,771.6687 +7220,8802,15694,15693,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,11,-3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.34,56.62,48.68,36.42,10,1,1,0,0,1,8,2,1,562,655782.56,162222.66,344854.34,0,0,0,771.6687 +7221,8803,15695,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.92276,7.0235767,0,0,-891.58698,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.1925151,7.4990463,51,46,-9,-9,7,2,3,0,0,0,8,2,1,772,590021.44,183976.63,597678.75,0,0,0,1784.5818 +7222,8804,15696,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.3449659,4.6243963,0,0,-1029.1575,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3299563,4.4670553,47.89,56.25,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,781,679968.31,0,216978.47,0,0,0,1339.744 +7223,8805,15697,15698,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,2.8030727,2.9381323,27,3,100.14045,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2370703,2.9971952,58.87,51.29,46.24,33.56,8.333333333333334,1,1,0,0,3,9,2,1,584.5,-52898.563,0,0,0,0,0,828.59729 +7223,8805,15698,15697,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,27,-3,38.345585,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.24,33.56,58.87,51.29,3.333333333333333,1,1,0,0,12,9,2,1,584.5,-52898.563,0,0,0,0,0,828.59729 +7224,8806,15699,15700,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,22,-13,-125.20036,0,2,3,2021,11,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,41.7,60.44,68.66,12.79,10,1,1,0,0,7,12,3,1,395,886718,573892,192586.69,0,0,0,2073.3567 +7224,8806,15700,15699,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6258349,7.8306131,7,13,-73.522484,0,-9,-9,2021,7,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46005362,7.7343173,68.66,12.79,41.7,60.44,6.666666666666667,1,1,0,0,9,12,3,1,395,886718,573892,192586.69,0,0,0,2073.3567 +7225,8807,15701,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.4315538,8.2113838,0,0,0,-1028.942,0,1,1,2021,3,0,32,38,1,0,0,13.987913,13.987913,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,11,5,4,1,5434,451235.22,290648.19,88426.375,0,0,0,860.90265 +7226,8808,15702,15703,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.0877633,7.1638083,49,-6,23.733763,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0573387,7.1568866,60.12,54.8,61.68,47.24,10,1,1,0,0,0,7,3,1,412.5,817201.75,353296.06,277582.94,0,6235.1631,0,2613.9165 +7226,8808,15703,15702,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.4180431,6.7249889,49,6,63.360405,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6604967,6.8965755,61.68,47.24,60.12,54.8,6.666666666666667,1,1,0,0,0,7,3,1,412.5,817201.75,353296.06,277582.94,0,6235.1631,0,2613.9165 +7227,8809,15704,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,1,0,0,0,0,0,-917.20282,0,1,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.19,5.98,-9,-9,5,1,1,0,0,0,9,1,0,461,346357.16,107871.39,433284.56,0,0,0,752.3429 +7228,8810,15705,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.1196461,8.9278955,0,0,0,-1014.0637,0,3,3,2021,10,0,50,50,1,0,0,19.628658,19.628658,0,0,0,0,0,0,0,0,0,0,0,0,0,58.24,46.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,1540,29373.668,-66354.672,0,0,0,7681.6948,2729.075 +7229,8811,15706,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.7438407,7.7118964,0,0,-1071.0339,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1129217,7.7550874,54.4,51.93,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1141,507655.81,142824.83,294598.09,0,0,0,3839.0183 +7230,8812,15707,15708,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.5958948,8.5156488,0,6,8,-134.93005,0,2,2,2021,7,0,42,52,1,0,0,15.684163,15.684163,.05,.05,0,0,0,0,0,0,1,1,0,4.8035998,0,58.32,50.22,46.39,52.95,6.666666666666667,3,4,0,0,7,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15708,15707,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.4784489,7.4706049,0,6,-8,13.072686,0,2,2,2021,12,0,39,30,1,0,0,6.2655945,6.2655945,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,52.95,58.32,50.22,8.333333333333334,1,1,0,0,8,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15709,-9,15708,15707,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.78186,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15710,-9,15708,15707,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.7954,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15711,-9,15708,15707,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.72284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7231,8813,15712,15713,-9,-9,1,0,29,0,0,0,2,2,-9,1,2,0,0,0,2,0,43.062981,0,2,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,55.36,51.83,38.4,1.666666666666667,1,1,0,0,1,12,3,1,779.5,476214.94,358831.84,0,0,0,0,1474.5486 +7231,8813,15713,15712,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.5096908,7.6601005,0,2,0,67.302917,-9,-9,-9,2021,11,0,42,0,1,0,0,4.5212469,4.5212469,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,38.4,22.21,55.36,6.666666666666667,1,1,0,0,0,12,3,1,779.5,476214.94,358831.84,0,0,0,0,1474.5486 +7232,8814,15714,15715,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.6463728,4.7161956,48,0,77.247253,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8505354,4.2680511,57.33,53.46,59.46,36.46,0,1,1,0,0,0,5,4,1,3858,788085.5,821671.31,0,0,14495.672,13416.992,2865.5024 +7232,8814,15715,15714,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,8.1955814,8.6278553,6.87325,38,0,106.64256,0,-9,2,2021,6,0,22,21,1,0,0,20.85005,20.85005,.05,.05,0,0,0,0,0,0,1,1,0,5.1098514,7.4298987,59.46,36.46,57.33,53.46,8.333333333333334,1,1,0,0,13,5,4,1,3858,788085.5,821671.31,0,0,14495.672,13416.992,2865.5024 +7233,8815,15716,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,7.3498182,7.3298464,0,0,0,-966.9101,0,-9,-9,2021,9,0,26,32,1,0,0,6.171412,6.171412,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,54.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,941,41250.41,0,0,0,0,0,2209.5725 +7234,8816,15717,-9,15718,-9,1,0,40,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1023.446,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,1013,28658.418,0,0,0,0,0,213.54161 +7234,8817,15718,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.52802,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,937,-126586.22,0,0,0,0,0,807.89832 +7235,8818,15719,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,9.2045059,9.0363665,0,0,0,-990.13318,0,-9,-9,2021,6,0,35,38,1,0,0,30.036386,30.036386,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,9,5,1,1143,49579.965,127925.04,188304.22,202131.3,0,0,3826.7036 +7236,8819,15720,-9,15721,15722,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1143.6123,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.78,55.17,-9,-9,10,1,1,0,0,0,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15721,15722,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,0,0,22,4,-17.426832,0,3,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.84999999999999,30.81,50.74,51,10,1,1,0,0,10,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15722,15721,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,9.5053482,9.752739,0,21,-4,169.0883,0,3,2,2021,10,0,35,40,1,0,0,41.134243,41.134243,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.74,51,64.84999999999999,30.81,6.666666666666667,1,1,0,0,15,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15723,-9,15721,15722,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.39539,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7237,8820,15724,15725,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.0548944,7.8699946,0,7,2,-122.10487,0,-9,-9,2021,11,0,40,40,1,0,0,9.2916346,9.2916346,.05,.05,0,0,0,0,0,0,0,0,0,2.3936026,0,48.53,58.91,63.06,53.47,8.333333333333334,1,1,0,0,4,10,4,0,1356.5,190415.75,-16134.489,122044.23,0,15277.016,0,1991.2473 +7237,8820,15725,15724,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.9719419,8.0590706,0,7,-2,-30.819717,0,-9,-9,2021,7,0,42,40,1,0,0,8.165904,8.165904,.05,.05,0,0,0,0,0,0,0,0,0,1.4715592,0,63.06,53.47,48.53,58.91,6.666666666666667,1,1,0,0,7,10,4,0,1356.5,190415.75,-16134.489,122044.23,0,15277.016,0,1991.2473 +7238,8821,15726,15727,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.7073059,9.347146,7.3478651,6,4,-72.610886,0,3,3,2021,9,1,84,32,1,1,0,9.6599541,9.6599541,.05,.05,.05,0,0,0,0,0,1,1,0,6.8845501,7.5822186,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15727,15726,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.3907332,6.417347,0,6,-4,12.311754,0,3,2,2021,3,0,8,32,1,0,0,10.162397,10.162397,0,0,0,0,0,0,0,0,1,1,0,7.2353325,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15728,-9,15727,15726,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.827,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15729,-9,15727,15726,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1090.1212,-9,2,3,2021,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7239,8822,15730,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-993.8833,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.6,45.61,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,223,0,0,0,0,0,0,1427.2528 +7240,8823,15731,15732,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.5331779,7.5662951,0,5,-3,-135.56328,0,2,1,2021,11,0,55,50,1,0,0,3.9443862,3.9443862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,53.42,30.59,64.25,8.333333333333334,1,1,0,0,12,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7240,8823,15732,15731,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,7.9025588,7.5147934,0,5,3,-27.931564,0,-9,-9,2021,14,2,30,30,1,2,0,12.728305,12.728305,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.59,64.25,48.28,53.42,8.333333333333334,1,1,0,1,4,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7240,8823,15733,-9,15731,15732,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.2062,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7241,8824,15734,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.9550686,8.8133497,0,0,0,-1012.4454,0,2,3,2021,25,10,45,45,1,10,0,18.734621,18.734621,.05,.05,0,0,0,0,0,7,0,0,0,6.0347347,0,20.98,42.34,-9,-9,1.666666666666667,1,1,0,0,12,11,5,1,1293,1533582.9,1180194,111641.05,0,0,0,2870.1501 +7241,8825,15735,-9,15734,-9,1,0,27,0,0,0,2,2,-9,0,4,7.935082,8.3265944,0,0,0,-965.86456,-9,1,-9,2021,14,4,41,0,1,4,1,9.7902327,9.7902327,.05,.05,0,0,0,0,0,2,0,0,0,0,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,1489,-67376.578,52710.766,0,0,0,0,893.65045 +7242,8826,15736,15737,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.4897537,9.0095739,45,1,-75.731842,0,2,1,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.8935575,9.1980944,51.59,50.44,58.15,52.91,8.333333333333334,1,1,0,0,3,2,5,1,434.5,631987.63,348443.91,397823.09,21423.551,0,20728.154,7023.6426 +7242,8826,15737,15736,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,45,-1,-120.80988,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0091448,0,58.15,52.91,51.59,50.44,8.333333333333334,1,1,0,0,9,2,5,1,434.5,631987.63,348443.91,397823.09,21423.551,0,20728.154,7023.6426 +7243,8827,15738,15739,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,9.1887035,9.0338907,9,6,-60.118073,0,3,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1631594,9.0042868,39.15,41.42,37.94,33.12,1.666666666666667,4,5,0,0,3,8,5,1,481,1363476.5,783305.63,593695.69,0,0,0,6595.9282 +7243,8827,15739,15738,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.1737728,5.4572101,58,-6,66.225342,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,2.1169486,9.5584011,23.560049,0,1,1,0,1.612072,5.0755258,37.94,33.12,39.15,41.42,3.333333333333333,4,5,0,0,0,8,5,1,481,1363476.5,783305.63,593695.69,0,0,0,6595.9282 +7244,8828,15740,15741,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,31,11,0,0,-9,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.9758286,0,56.23,52.63,55.19,54.26,10,1,1,0,0,0,1,1,1,387.5,82191.43,0,0,0,0,0,502.07446 +7244,8828,15741,15740,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,0,0,0,31,-11,0,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.1087627,0,55.19,54.26,56.23,52.63,8.333333333333334,1,1,0,0,0,1,1,1,387.5,82191.43,0,0,0,0,0,502.07446 +7245,8829,15742,15743,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.9274364,5.8016357,47,1,94.61779,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4587989,6.3408604,57.16,56.15,57.76,48.98,10,1,1,0,0,5,5,2,1,377,466726.06,166828.5,117081.36,0,0,0,1732.5222 +7245,8829,15743,15742,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,47,-1,-26.326351,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3262849,0,57.76,48.98,57.16,56.15,8.333333333333334,1,1,0,0,6,5,2,1,377,466726.06,166828.5,117081.36,0,0,0,1732.5222 +7246,8830,15744,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.1534624,9.0874195,0,0,0,-1076.5845,0,3,3,2021,10,0,40,40,1,0,0,22.559727,22.559727,.05,.05,0,0,0,0,0,0,0,0,0,2.531476,0,56.47,59.4,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,951,1355666.1,1425468.5,0,0,0,0,3484.1548 +7246,8831,15745,-9,-9,15744,1,0,24,0,0,0,2,2,-9,0,3,8.1802044,8.1814547,0,0,0,-1109.7655,0,2,2,2021,9,0,41,47,1,0,1,10.149283,10.149283,.05,.05,0,0,0,0,0,0,0,0,0,1.7446725,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,1983,-139544.8,70655.594,0,0,0,0,1489.6494 +7247,8832,15746,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.6573,0,3,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,29.12,54.23,-9,-9,1.666666666666667,1,1,0,0,9,9,1,1,398,-8851.0322,0,0,0,0,0,0 +7247,8833,15747,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,5.1666412,5.0517688,0,0,-1063.9153,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.4598832,3.6677725,14.519073,0,1,1,0,0,5.2388096,47.96,32.67,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,173,576694.06,-18296.789,508367.84,0,0,0,1486.5131 +7248,8834,15748,-9,15749,15750,1,0,43,0,0,0,1,1,-9,0,3,8.5102005,8.651866,0,0,0,-1029.0955,-9,2,3,2021,10,0,53,0,1,0,0,12.483909,12.483909,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,1,10,5,0,452,266626.31,199075.09,268935.88,68304.961,0,5513.8618,1919.7794 +7248,8835,15749,15750,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.0561666,7.7719984,0,9,-8,-96.236778,0,2,1,2021,6,0,15,25,1,0,0,21.962158,21.962158,0,0,0,1,0,0,0,0,1,1,0,6.5676708,0,67.51000000000001,29.59,44.61,59.06,8.333333333333334,1,1,0,0,11,10,5,0,140,2326917.5,1160190.3,816075.25,0,0,0,4936.5903 +7248,8835,15750,15749,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,8.6100225,8.3644972,0,9,8,-174.50414,0,3,2,2021,18,6,22,20,1,6,0,25.269709,25.269709,0,0,0,1,0,7.2142806,0,0,1,1,0,0,0,44.61,59.06,67.51000000000001,29.59,0,1,1,0,0,11,10,5,0,140,2326917.5,1160190.3,816075.25,0,0,0,4936.5903 +7249,8836,15751,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.8930798,7.7426538,0,0,0,-839.45349,0,2,3,2021,11,1,80,40,1,1,0,4.9348011,4.9348011,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.11,59.76,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,111,225834.53,29917.248,0,0,11087.457,0,1315.6471 +7250,8837,15752,15754,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,24,-3,0,0,3,3,2021,18,7,0,22,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,46.63,53,55,5,4,5,0,1,7,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8837,15753,-9,15752,15754,1,0,16,0,1,1,3,0,0,0,4,0,0,0,0,0,-952.45874,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,0,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8837,15754,15752,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,0,0,0,6,3,0,-9,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,31.1,46.63,8,1,1,1,0,0,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8838,15755,-9,15752,15754,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1011.0635,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,0,8,1,0,817,-13222.384,0,0,0,0,0,0 +7251,8839,15756,15757,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1621284,8.1325312,0,29,-8,-27.521481,0,3,3,2021,14,3,48,12,1,3,0,7.0015168,7.0015168,0,0,0,0,0,0,0,7,1,1,0,0,0,47.86,24.17,51,48,3.333333333333333,1,1,0,0,10,4,4,0,185,981550.38,643091.63,215526.44,0,0,1393.8777,3576.5315 +7251,8839,15757,15756,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.1077566,8.0832319,5.3121138,29,8,-14.835532,0,3,3,2021,7,0,48,48,1,0,0,7.5902915,7.5902915,.05,.05,0,0,0,0,0,0,1,1,0,0,5.5872774,51,48,47.86,24.17,6.666666666666667,1,1,0,0,11,4,4,0,185,981550.38,643091.63,215526.44,0,0,1393.8777,3576.5315 +7252,8840,15758,-9,15759,15760,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.0505,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7252,8840,15759,15760,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.9122143,8.9420185,0,17,0,-129.88893,0,2,2,2021,9,0,47,52,1,0,0,17.258751,17.258751,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,42.17,56.08,6.666666666666667,3,4,0,0,10,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7252,8840,15760,15759,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.3599243,8.5643005,0,17,9,53.534973,0,2,1,2021,6,0,48,48,1,0,0,11.352772,11.352772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.17,56.08,46.06,60.24,10,3,4,0,0,10,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7253,8841,15761,15763,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.6825767,7.6231418,0,19,-5,-11.213974,0,2,3,2021,10,2,25,15,1,2,0,10.973288,10.973288,.05,.05,0,0,0,0,0,0,1,1,0,3.0444643,0,49.46,56.91,62.82,46.71,8.333333333333334,1,1,0,0,9,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15762,-9,15761,15763,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1052.1592,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,0,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15763,15761,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5743876,8.460144,0,19,5,58.317245,0,2,2,2021,7,0,56,55,1,0,0,8.0971642,8.0971642,.05,.05,0,0,0,0,0,0,1,1,0,2.0859582,0,62.82,46.71,49.46,56.91,6.666666666666667,1,1,0,0,10,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15764,-9,15761,15763,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8586,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7254,8842,15765,15766,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.4613991,8.4493637,0,38,1,-58.291454,0,2,2,2021,4,0,37,40,1,0,0,11.579468,11.579468,0,0,0,0,0,0,0,0,0,0,0,1.7416867,0,58.99,34.1,43.34,60.31,10,1,1,0,0,11,7,5,1,762,662196.5,269904.31,236403.31,0,0,0,3303.0576 +7254,8842,15766,15765,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.5948572,8.7743597,0,38,-1,-24.239029,0,3,1,2021,17,5,50,47,1,5,0,12.273731,12.273731,0,0,0,0,0,0,0,0,0,0,0,1.7538832,0,43.34,60.31,58.99,34.1,8.333333333333334,4,2,0,0,11,7,5,1,762,662196.5,269904.31,236403.31,0,0,0,3303.0576 +7255,8843,15767,15768,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,14,-5,116.33354,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.56,34.97,53.41,32.47,8.333333333333334,3,4,0,0,2,6,2,0,477,178839.25,0,0,0,-895.01941,0,1034.3938 +7255,8843,15768,15767,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,7.0708323,7.0563707,0,13,5,-14.539434,0,2,-9,2021,6,0,17,20,1,0,0,7.3457332,7.3457332,0,0,0,0,0,0,0,2,1,1,0,3.2896397,0,53.41,32.47,39.56,34.97,10,4,2,0,0,10,6,2,0,477,178839.25,0,0,0,-895.01941,0,1034.3938 +7256,8844,15769,15770,-9,-9,1,0,70,0,1,0,2,2,-9,0,3,0,0,0,53,-4,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,52.05,48.08,7,2,3,0,1,0,8,1,1,865,4249247,2311477.5,1206343.1,0,0,0,1433.0925 +7256,8844,15770,15769,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,0,0,0,53,4,0,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,5.9266486,0,0,1,1,0,0,0,52.05,48.08,51,46,1.666666666666667,2,3,0,0,0,8,1,1,865,4249247,2311477.5,1206343.1,0,0,0,1433.0925 +7256,8845,15771,-9,15774,15772,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1027.338,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15772,15774,15769,15770,1,1,48,0,1,0,1,1,-9,0,3,8.5145521,8.3267822,0,6,4,-10.198284,0,3,2,2021,27,12,45,45,1,12,0,16.222403,16.222403,.05,.05,0,0,0,0,0,7,1,1,0,2.8410065,0,28.02,61.65,50,54,6.666666666666667,2,3,0,1,8,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15773,-9,15774,15772,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-826.32892,-9,1,1,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.13,58.64,-9,-9,3.333333333333333,2,3,0,0,1,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15774,15772,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.4316387,8.3936338,0,6,-4,25.900702,0,-9,-9,2021,10,0,60,39,1,1,0,7.3160815,7.3160815,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,54,28.02,61.65,8,2,3,0,0,1,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7257,8846,15775,15776,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,7,-3,.63631546,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.2636504,0,30.75,36.7,40.6,53.06,5,1,1,0,0,0,1,2,1,980,-65143.039,113469.06,87747.57,55747.074,2957.0911,262.29132,2154.7507 +7257,8846,15776,15775,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.8841367,6.7508979,7,3,.69355929,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8091273,40.6,53.06,30.75,36.7,10,1,1,0,0,0,1,2,1,980,-65143.039,113469.06,87747.57,55747.074,2957.0911,262.29132,2154.7507 +7258,8847,15777,15778,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.8664083,6.7869272,6,9,-104.36084,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4749289,60.03,45.37,56.94,49.53,8.333333333333334,1,1,0,0,0,9,4,1,333.5,1098863.8,498668.78,540607.81,0,0,0,2708.8193 +7258,8847,15778,15777,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.5374403,8.4285574,0,6,0,-8.1813841,0,3,3,2021,6,0,38,38,1,0,0,13.50814,13.50814,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,60.03,45.37,8.333333333333334,1,1,0,0,8,9,4,1,333.5,1098863.8,498668.78,540607.81,0,0,0,2708.8193 +7259,8848,15779,-9,15780,15781,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.0353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7259,8848,15780,15781,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,6.7509952,6.7663517,0,6,-3,83.1698,0,3,-9,2021,29,11,8,14,1,11,0,12.418434,12.418434,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.24,65.53,46.28,62.6,5,1,1,0,0,7,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7259,8848,15781,15780,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.6080074,8.5297117,0,6,3,-5.7367058,0,-9,-9,2021,12,1,47,40,1,1,0,13.164157,13.164157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,33.24,65.53,8.333333333333334,1,1,0,0,7,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7260,8849,15782,-9,15783,15784,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.4741,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15783,15784,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.1812286,8.0266609,0,18,0,44.565449,0,1,1,2021,6,0,24,21,1,0,0,17.558109,17.558109,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.67,39.58,51.84,46.5,10,1,1,0,0,11,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15784,15783,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.7027121,9.5785637,0,18,0,87.442978,0,2,2,2021,17,7,57,52,1,7,0,34.532368,34.532368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.84,46.5,61.67,39.58,6.666666666666667,1,1,0,0,9,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15785,-9,15783,15784,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.72284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7261,8850,15786,-9,15787,15789,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.51611,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15787,15789,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,12,2,-.63979405,1,2,-9,2021,11,0,0,24,2,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.0984492,0,42.87,50.41,36.13,56.64,6.666666666666667,1,1,0,0,13,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15788,-9,15787,15789,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.33502,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15789,15787,-9,-9,1,1,35,0,2,0,1,1,-9,0,2,8.8541946,8.7839289,2.8588314,12,-2,42.588413,0,3,2,2021,16,5,49,85,1,5,0,14.981858,14.981858,.05,.05,0,0,0,0,0,0,1,1,0,3.7573981,0,36.13,56.64,42.87,50.41,5,1,1,0,0,14,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7262,8851,15790,15791,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.4175744,7.5301046,0,6,5,-53.169792,0,3,3,2021,1,0,35,50,1,0,0,8.0929413,8.0929413,0,0,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,32.84,46.5,8.333333333333334,1,1,0,0,7,1,5,1,490,772204.44,221580.39,269670.59,78031.422,0,0,4062.0244 +7262,8851,15791,15790,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.9791813,9.244523,0,6,-5,71.990417,0,3,2,2021,17,7,46,47,1,7,0,20.35273,20.35273,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,46.5,60.29,52.11,8.333333333333334,1,1,0,0,7,1,5,1,490,772204.44,221580.39,269670.59,78031.422,0,0,4062.0244 +7262,8852,15792,-9,15791,15790,1,0,20,0,0,0,2,2,1,0,4,7.6525645,7.6528497,0,0,0,-860.67865,-9,2,2,2021,11,0,40,0,1,2,1,7.0752316,7.0752316,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,471,-105662.97,0,0,0,0,0,1549.6779 +7263,8853,15793,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.9859724,8.1455822,0,0,0,-1010.4312,0,-9,-9,2021,11,0,38,37,1,0,0,12.860203,12.860203,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,33.75,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,378,170104.69,-8545.5342,0,0,0,0,2469.6475 +7264,8854,15794,15795,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.1743231,9.2786074,0,9,0,-60.828381,0,-9,-9,2021,7,0,55,55,1,0,0,21.624094,21.624094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.73,58.55,8.333333333333334,1,1,0,0,10,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15795,15794,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.2851343,8.2271452,0,9,0,39.830162,0,2,2,2021,12,1,35,26,1,1,0,13.187223,13.187223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.73,58.55,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15796,-9,15795,15794,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5896,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15797,-9,15795,15794,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1121.8795,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7265,8855,15798,-9,15799,15800,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1010.8996,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15799,15800,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2038345,8.4542799,0,8,-2,-23.870193,0,-9,-9,2021,9,0,49,47,1,0,0,8.2561283,8.2561283,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.77,52.22,8.333333333333334,1,1,0,0,8,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15800,15799,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.3476171,8.1498451,0,8,2,91.538048,0,-9,3,2021,10,0,39,37,1,0,0,12.476101,12.476101,.05,.05,0,0,0,0,0,14.5,1,1,0,6.9720759,0,56.77,52.22,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15801,-9,15799,15800,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.71191,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7266,8856,15802,-9,-9,-9,1,0,45,0,1,0,3,3,-9,1,4,0,0,0,0,0,-916.4353,0,3,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,42.83,54.56,-9,-9,5,1,1,0,0,2,10,1,0,604.5,-1282.6904,0,0,0,0,0,1398.323 +7266,8856,15803,-9,15802,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.0686,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,59,-9,-9,7,1,1,-9,0,0,10,1,0,604.5,-1282.6904,0,0,0,0,0,1398.323 +7267,8857,15804,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.6636105,6.8720632,0,0,-1095.4733,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.620152,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,880,353231.13,156255.83,174579.72,0,0,0,471.091 +7268,8858,15805,15809,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,8.4814034,8.664979,0,11,0,78.24308,0,-9,-9,2021,12,0,44,48,1,0,0,17.914694,17.914694,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.48,60.41,42.85,62.85,8.333333333333334,1,1,0,0,12,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15806,-9,15809,15805,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.02954,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15807,-9,15809,15805,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-834.36023,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15808,-9,15809,15805,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.03448,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15809,15805,-9,-9,1,0,36,1,3,0,2,2,-9,0,5,8.1425457,8.5963182,0,11,0,51.54977,0,2,2,2021,18,7,24,24,1,7,0,23.812811,23.812811,0,0,0,0,0,0,0,0,1,1,0,7.3653545,0,42.85,62.85,35.48,60.41,8.333333333333334,1,1,0,0,12,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7269,8859,15810,15811,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.9717627,5.0817342,49,-5,125.40598,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1839838,57.16,56.15,58.08,40.76,8.333333333333334,1,1,0,0,3,7,4,1,596.5,1660928.6,1325863,0,0,0,0,3396.6885 +7269,8859,15811,15810,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6559811,8.1764545,49,5,-64.702957,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4710631,8.4736567,58.08,40.76,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,596.5,1660928.6,1325863,0,0,0,0,3396.6885 +7270,8860,15812,15813,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.4944477,8.7477665,0,31,0,-23.188839,0,3,2,2021,8,0,65,55,1,0,0,9.138773,9.138773,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.12,57.28,57.16,56.15,8.333333333333334,1,1,0,0,15,5,5,1,614.5,1183483.8,761819.63,255457.44,0,0,0,3575.4282 +7270,8860,15813,15812,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5641737,8.2837439,0,13,0,93.268066,0,-9,-9,2021,6,0,54,64,1,0,0,9.2944956,9.2944956,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.12,57.28,8.333333333333334,1,1,0,0,15,5,5,1,614.5,1183483.8,761819.63,255457.44,0,0,0,3575.4282 +7270,8861,15814,-9,15812,15813,1,0,29,0,0,0,1,1,-9,0,4,7.9875536,8.1832485,0,0,0,-1071.9634,0,1,2,2021,12,0,40,38,1,0,1,9.4168444,9.4168444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,9,5,4,1,1055,-219596.95,-157859.48,0,0,0,0,1262.1727 +7270,8862,15815,-9,15812,15813,1,0,27,0,0,0,1,1,-9,0,4,8.3965511,8.1486597,0,0,0,-957.8728,0,1,2,2021,13,1,50,50,1,1,1,11.557386,11.557386,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.62,60.42,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,52,118106.09,-120578.52,0,0,-301.34213,0,2302.0618 +7271,8863,15816,15817,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,8.0142326,7.655478,52,-5,109.92408,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6167483,7.8443108,51.83,57.2,54.43,43.95,8.333333333333334,1,1,0,0,0,2,5,1,389.5,2910643.5,799574.38,706402.75,0,0,0,5748.5654 +7271,8863,15817,15816,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0473814,8.6876249,52,5,24.573271,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3108692,8.3597097,54.43,43.95,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,389.5,2910643.5,799574.38,706402.75,0,0,0,5748.5654 +7272,8864,15818,15820,-9,-9,1,1,32,1,1,0,1,1,-9,0,2,8.6782207,8.3129034,0,1,3,-64.245003,-9,-9,-9,2021,20,8,37,0,1,8,0,13.705322,13.705322,.05,.05,0,0,0,0,0,0,1,1,0,6.7568483,0,31.09,45.59,52,54.51,5,1,1,0,0,7,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7272,8864,15819,-9,15820,15818,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.5639,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7272,8864,15820,15818,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,8.8899908,8.9411573,0,1,-3,35.687325,0,2,2,2021,10,0,41,44,1,0,0,24.066612,24.066612,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,31.09,45.59,6.666666666666667,1,1,0,0,12,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7273,8865,15821,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7532272,8.5635672,0,0,0,-1012.1261,0,2,-9,2021,12,0,34,35,1,0,0,22.397673,22.397673,0,0,0,0,0,0,0,0,1,1,0,7.4194493,0,38.69,61.75,-9,-9,1.666666666666667,1,1,0,0,12,6,5,1,2306,117485.45,0,0,0,0,0,3630.3472 +7274,8866,15822,15823,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.9174385,9.0533915,0,11,0,31.621084,0,-9,-9,2021,6,0,40,40,1,0,0,27.202871,27.202871,.05,.05,0,0,0,0,0,0,0,0,0,6.730248,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,13,9,5,1,690.5,2033042.6,1363788.8,400173.78,0,0,0,4672.4063 +7274,8866,15823,15822,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.6394076,7.6985173,6.3261852,21,0,30.255091,0,1,2,2021,2,0,20,16,1,0,0,8.2812319,8.2812319,0,0,0,0,0,0,0,0,0,0,0,7.3326774,6.2885218,62.39,56.71,57.33,53.46,10,1,1,0,0,13,9,5,1,690.5,2033042.6,1363788.8,400173.78,0,0,0,4672.4063 +7275,8867,15824,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.1808405,8.2559729,0,0,0,-909.92957,0,3,2,2021,15,3,24,22,1,3,0,18.009645,18.009645,.05,.05,0,0,0,0,0,2,1,1,0,5.7991171,0,36.58,41.5,-9,-9,6.666666666666667,2,3,0,0,9,8,4,1,235,397409.94,18284.941,397376.28,147850.91,0,0,2937.3398 +7275,8867,15825,-9,15824,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.714,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,235,397409.94,18284.941,397376.28,147850.91,0,0,2937.3398 +7276,8868,15826,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.3029919,5.7988691,0,0,-1061.1517,0,3,3,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2266486,6.1341758,60.29,52.11,-9,-9,10,1,1,0,0,12,5,2,1,533,103271.24,119472.48,63723.211,0,0,0,454.65286 +7277,8869,15827,15828,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.9574051,8.0884752,48,7,-113.0382,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9918971,54.9,44,55.19,34.27,6.666666666666667,1,1,0,0,0,7,3,1,428.5,1284861.5,844827.88,431697.13,0,0,0,3761.8057 +7277,8869,15828,15827,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.8147082,5.8716826,48,-7,-48.987183,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,.54966116,0,0,1,1,0,7.8656068,5.7774572,55.19,34.27,54.9,44,6.666666666666667,1,1,0,0,0,7,3,1,428.5,1284861.5,844827.88,431697.13,0,0,0,3761.8057 +7278,8870,15829,15830,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.2766352,8.4372368,0,27,-10,98.842743,0,2,2,2021,10,0,23,23,1,0,0,23.852865,23.852865,.05,.05,0,0,0,0,0,0,0,0,0,2.8881626,0,57.16,56.15,40.96,61.14,8.333333333333334,1,1,0,0,14,7,5,1,370.5,2974355.5,1933511.9,776994.25,0,0,328.66577,5143.0195 +7278,8870,15830,15829,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,9.4078531,9.2258596,0,27,10,41.893688,0,2,1,2021,11,0,42,45,1,0,0,33.773289,33.773289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,57.16,56.15,8.333333333333334,1,1,0,0,14,7,5,1,370.5,2974355.5,1933511.9,776994.25,0,0,328.66577,5143.0195 +7278,8871,15831,-9,15829,15830,1,0,25,0,1,0,1,1,-9,0,5,8.4339924,8.5758266,0,0,0,-1040.5598,0,2,1,2021,5,0,40,40,1,0,1,14.721796,14.721796,.05,.05,0,0,0,0,0,0,0,0,0,3.9171164,0,57.06,57.76,-9,-9,10,1,1,0,0,6,7,5,1,1119,-70962.867,-67042.32,0,0,38705.555,0,1663.5851 +7278,8872,15832,-9,15829,15830,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-930.59619,1,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3128953,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,718,174825.45,0,0,0,0,0,198.9946 +7279,8873,15833,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,7.6826458,7.9872255,0,0,0,-1046.6738,-9,-9,3,2021,15,3,37,0,1,3,0,8.4749823,8.4749823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.8,51.52,-9,-9,5,1,1,0,0,11,4,4,1,778,91832.016,43050.5,0,0,0,0,1031.3507 +7280,8874,15834,-9,-9,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-960.35223,-9,2,2,2021,3,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,.57971919,0,56.47,59.4,-9,-9,10,1,1,0,0,0,13,1,1,485,55017.246,0,0,0,0,0,-99.372711 +7281,8875,15835,-9,15837,15838,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.14453,-9,1,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15836,-9,15837,15838,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.52246,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15837,15838,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,5.1449852,4.8671498,0,27,1,74.192413,0,1,2,2021,5,0,35,13,1,0,0,.56836778,.56836778,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.45,35.63,41.76,59.08,8.333333333333334,1,1,0,0,6,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15838,15837,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.7282829,9.7876577,0,27,-1,6.5154128,0,2,1,2021,14,4,45,45,1,4,0,44.159988,44.159988,.05,.05,0,0,0,0,0,0,0,0,0,.43724149,0,41.76,59.08,61.45,35.63,6.666666666666667,1,1,0,0,10,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8876,15839,-9,15837,15838,1,0,21,0,2,0,1,1,-9,0,4,7.3608789,7.4501357,0,0,0,-1003.5944,-9,1,1,2021,10,1,40,0,1,1,1,4.1781592,4.1781592,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,1,2,3,1,135,-385045.16,0,0,0,0,1657.1093,1145.1617 +7281,8877,15840,-9,15837,15838,1,0,18,0,2,1,2,0,0,0,3,0,5.9029551,5.5712414,0,0,-841.31989,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4134488,0,34.77,62.31,-9,-9,5,1,1,0,0,1,2,2,1,862,144766.69,74068.563,0,0,2696.9932,-814.80676,.72835892 +7282,8878,15841,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.714818,7.258647,0,0,-1087.751,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8399336,7.4292049,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,380,249156.67,163088.86,199160.86,0,0,0,1909.4736 +7283,8879,15842,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,4,7.239058,7.3009605,0,0,0,-1012.6747,0,-9,-9,2021,16,4,8,0,1,4,0,23.51088,23.51088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.81,57.49,-9,-9,10,1,1,0,0,1,11,3,0,369,23005.375,-137300.63,0,0,0,0,1105.0101 +7284,8880,15843,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,0,0,0,0,0,-995.81384,0,2,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.32,23.88,-9,-9,0,1,1,1,1,0,11,1,1,964,-129617.69,3851.6257,0,0,5436.8203,0,-419.11841 +7285,8881,15844,15846,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.2824116,8.5670881,0,11,0,16.137403,0,2,2,2021,10,0,30,34,1,0,0,14.153106,14.153106,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.19,54.26,46.16,58.62,8.333333333333334,1,1,0,0,9,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7285,8881,15845,-9,15844,15846,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.50714,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7285,8881,15846,15844,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,1.1132623,.79241794,0,11,0,19.714275,0,3,-9,2021,10,0,40,50,1,0,0,.006319067,.006319067,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.16,58.62,55.19,54.26,8.333333333333334,1,1,0,0,7,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7286,8882,15847,-9,15848,15851,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.5516,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.42641258,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15848,15851,-9,-9,1,0,27,1,3,0,2,2,-9,0,1,0,2.8078034,2.9926789,3,5,-68.260292,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4416599,0,53.61,24.23,58.76,52.91,8.333333333333334,1,1,0,0,1,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15849,-9,15848,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.59613,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15850,-9,15848,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1155.4752,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15851,15848,-9,-9,1,1,22,1,3,0,2,2,-9,0,5,0,0,0,3,-5,18.011671,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.76,52.91,53.61,24.23,8.333333333333334,1,1,1,0,4,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7287,8883,15852,15853,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6300354,8.8051834,0,32,1,-52.373531,0,2,3,2021,7,0,42,46,1,0,0,15.847242,15.847242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,38.38,56.81,8.333333333333334,1,1,0,0,10,6,5,1,612,406359.06,304230.53,334154.63,0,0,860.75757,3657.1138 +7287,8883,15853,15852,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8612719,7.8691258,0,32,-1,.73806041,0,3,-9,2021,12,2,39,40,1,2,0,9.0514002,9.0514002,.05,.05,0,0,0,0,0,0,0,0,0,7.3370509,0,38.38,56.81,60.12,54.8,6.666666666666667,1,1,0,0,10,6,5,1,612,406359.06,304230.53,334154.63,0,0,860.75757,3657.1138 +7287,8884,15854,-9,15853,15852,1,1,28,0,0,0,2,2,-9,0,3,8.4481468,8.3005447,0,0,0,-941.85901,-9,2,2,2021,10,0,40,0,1,0,1,17.412682,17.412682,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.57,53.14,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,906,102667.26,43778.859,0,0,0,0,2160.1201 +7288,8885,15855,15856,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.6330442,8.8646736,0,3,4,-81.442184,0,2,2,2021,6,0,33,48,1,0,0,19.582201,19.582201,.05,.05,0,0,0,0,0,0,0,0,0,2.1421268,0,57.16,56.15,52.32,57.18,10,1,1,0,0,9,5,5,1,875.5,734060.56,504019.44,143698.77,0,4661.334,0,5153.0186 +7288,8885,15856,15855,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.8807154,9.0906849,0,3,-4,95.785591,0,-9,-9,2021,6,0,40,40,1,0,0,24.171804,24.171804,.05,.05,0,0,0,0,0,14.5,0,0,0,7.8072762,0,52.32,57.18,57.16,56.15,8.333333333333334,1,1,0,0,1,5,5,1,875.5,734060.56,504019.44,143698.77,0,4661.334,0,5153.0186 +7289,8886,15857,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.0149183,6.4182429,0,0,-941.02338,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8039044,6.5288758,60.12,54.8,-9,-9,10,1,1,0,0,0,11,2,1,3288,384901.84,170535.09,38741.996,0,0,0,1476.4841 +7290,8887,15858,-9,15859,15860,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1080.9326,-9,1,2,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,60.29,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8887,15859,15860,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.2191734,8.015871,0,7,-13,-39.013268,0,2,2,2021,16,4,36,36,1,4,0,12.048308,12.048308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,58.91,35.36,5,1,1,0,0,14,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8887,15860,15859,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,0,8.0860853,8.3000469,7,13,-84.589287,-9,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.7821226,8.042758,58.91,35.36,40.48,60.05,8.333333333333334,1,1,0,0,13,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8888,15861,-9,15859,15860,1,1,23,0,1,0,2,2,-9,0,4,7.7836666,8.0072651,0,0,0,-955.62,0,1,2,2021,7,1,36,37,1,1,1,8.8800182,8.8800182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,330,66531.203,13424.514,0,0,0,0,835.87103 +7290,8889,15862,-9,15859,15860,1,0,20,0,1,1,2,0,-9,0,5,0,0,0,0,0,-990.17413,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7512779,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,390,-76131.766,0,0,0,0,0,585.55231 +7291,8890,15863,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,6.6244478,6.6992421,0,0,0,-1037.4906,0,3,3,2021,7,1,35,35,1,1,0,2.3146753,2.3146753,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,25.97,-9,-9,5,3,4,0,0,10,8,2,1,918,102114.57,0,0,0,0,0,140.39531 +7292,8891,15864,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1787863,7.6952968,0,0,-1053.9427,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9847777,7.2972522,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1529,479900.78,73047.422,335526.66,0,0,0,1764.1718 +7293,8892,15865,15867,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.3018131,8.3591585,0,1,-2,-5.1340585,-9,-9,-9,2021,10,0,40,0,1,1,0,12.117487,12.117487,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,43.35,50.18,7,4,1,0,0,1,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15866,-9,15867,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.4138,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15867,15865,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5784569,7.3897338,0,1,2,35.700962,-9,-9,-9,2021,11,1,20,0,1,1,0,7.4482737,7.4482737,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,50.18,51,56,8.333333333333334,1,1,0,0,2,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15868,-9,15867,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1074.5229,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,0,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7294,8893,15869,15870,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,9.0237637,9.0293274,0,16,1,-39.69249,0,2,1,2021,11,1,55,55,1,1,0,19.977692,19.977692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.76,45.08,47.9,52.43,10,2,3,0,0,12,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7294,8893,15870,15869,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,0,0,0,16,-1,12.0458,0,2,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.9,52.43,42.76,45.08,10,2,3,1,0,0,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7294,8893,15871,-9,15870,15869,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.5585,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7295,8894,15872,-9,15876,15873,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1157.5081,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.88527173,0,57.6,56.16,-9,-9,5,1,1,0,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15873,15876,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.6138935,9.7645283,0,22,3,61.014153,0,1,1,2021,14,4,50,80,1,4,0,47.86256,47.86256,.05,.05,0,0,0,0,0,0,0,0,0,6.0626822,0,45.56,60.26,51.67,60.18,6.666666666666667,1,1,0,0,11,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15874,-9,15876,15873,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4545,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15875,-9,15876,15873,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.11292,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15876,15873,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.8147078,9.0637646,0,22,-3,42.795734,0,2,2,2021,16,6,26,36,1,6,0,32.325722,32.325722,0,0,0,0,0,0,0,0,0,0,0,7.3060918,0,51.67,60.18,45.56,60.26,8.333333333333334,1,1,0,0,8,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8895,15877,-9,15876,15873,1,0,19,0,2,1,2,0,0,0,3,0,4.5656557,4.5677571,0,0,-1045.6719,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0620546,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,363,-72340.813,0,0,0,0,0,-796.67017 +7296,8896,15878,-9,15883,15881,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-934.94763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15879,-9,15883,15881,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-919.36914,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15880,-9,15883,15881,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.96674,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15881,15883,-9,-9,1,1,36,0,4,0,1,1,-9,0,4,9.1098728,8.8417625,0,11,3,16.538668,0,3,3,2021,10,0,35,48,1,1,0,30.407015,30.407015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.71,48.99,7,2,3,0,0,7,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15882,-9,15883,15881,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-830.71301,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15883,15881,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,8.0072165,7.9867949,0,11,-3,-97.091423,0,2,3,2021,6,0,34,0,1,0,0,7.567246,7.567246,0,0,0,0,0,0,0,0,1,1,0,.57836074,0,46.71,48.99,51,56,1.666666666666667,2,3,0,0,6,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7297,8897,15884,15885,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.2354727,8.4713898,0,10,4,77.872513,0,2,2,2021,9,0,37,37,1,0,0,12.196229,12.196229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.08,57.18,8.333333333333334,1,1,0,0,11,11,5,1,441.5,1337340.3,1279383.6,304586.13,43390.375,11050.032,9516.2813,4139.7676 +7297,8897,15885,15884,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.7873974,8.7010212,0,10,-4,83.576973,0,2,2,2021,12,0,40,35,1,0,0,17.338936,17.338936,0,0,0,0,0,0,0,0,0,0,0,0,0,43.08,57.18,54.79,55.86,6.666666666666667,1,1,0,0,9,11,5,1,441.5,1337340.3,1279383.6,304586.13,43390.375,11050.032,9516.2813,4139.7676 +7297,8898,15886,-9,15885,15884,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1122.4459,-9,1,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,1406,0,0,0,0,0,0,414.62177 +7298,8899,15887,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.8466678,6.7150278,0,0,-920.94714,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3465755,6.9253788,55.82,44.62,-9,-9,10,1,1,0,0,0,6,2,1,569,350128.38,92329.523,223620.34,0,0,0,2221.1333 +7299,8900,15888,-9,15891,15890,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5628,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15889,-9,15891,15890,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.43677,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15890,15891,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0797796,9.1699009,0,6,0,107.37714,0,-9,-9,2021,6,0,40,45,1,0,0,30.626122,30.626122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,63.58,39.68,8.333333333333334,2,3,0,0,11,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15891,15890,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,7.9201136,7.9962707,0,6,0,.77788401,0,-9,-9,2021,6,0,40,42,1,0,0,7.0159836,7.0159836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.58,39.68,60.12,54.8,8.333333333333334,2,3,0,0,4,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7300,8901,15892,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.8711286,7.5916762,37,0,40.408638,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3332908,7.6697869,50.09,49.8,51,48,10,1,1,0,0,9,7,3,1,491,174362.2,211902.98,109116.1,0,0,0,2196.2976 +7301,8902,15893,-9,-9,-9,1,0,68,0,0,0,3,3,-9,1,3,5.7912855,6.0547185,4.8776522,0,0,-926.86157,0,3,3,2021,6,0,6,6,1,0,0,7.1436501,7.1436501,0,0,0,0,0,0,0,0,1,1,0,0,4.5042892,63.65,46.46,-9,-9,10,1,1,0,0,7,2,2,1,381,54576.504,184444.86,96448.648,0,0,0,1079.9054 +7302,8903,15894,15895,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,52,-3,-86.08461,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,1058.5,636922.38,271865.09,312634.25,0,0,0,1960.9563 +7302,8903,15895,15894,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0192795,7.6205311,52,3,-55.646149,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4283023,7.9925342,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,0,9,3,1,1058.5,636922.38,271865.09,312634.25,0,0,0,1960.9563 +7303,8904,15896,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-978.23871,0,3,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.32,17.47,-9,-9,5,2,3,0,0,3,12,1,0,406,99700.992,0,0,0,0,-603.68481,745.32019 +7304,8905,15897,15898,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,44,0,1.4003758,0,2,-9,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,44.27,52,48,5,1,1,0,0,11,8,3,1,483,247777.83,42208.738,362616.72,0,0,0,2434.4868 +7304,8905,15898,15897,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.0414467,7.8002677,0,44,0,-28.460035,0,2,-9,2021,10,0,40,35,1,1,0,9.4336624,9.4336624,.05,.05,.05,0,0,0,0,14.5,1,1,0,3.9617426,0,52,48,54.37,44.27,7,1,1,0,0,12,8,3,1,483,247777.83,42208.738,362616.72,0,0,0,2434.4868 +7304,8906,15899,-9,15897,15898,1,1,32,0,0,0,1,1,-9,1,4,8.5479507,8.1294012,0,0,0,-959.42065,0,2,2,2021,10,0,40,40,1,1,0,10.041131,10.041131,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,6,8,4,1,592,239368.86,68923.836,0,0,0,0,1448.0623 +7305,8907,15900,15901,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.6107879,7.6955013,0,1,-6,26.976341,-9,-9,-9,2021,7,0,30,0,1,0,0,7.3565445,7.3565445,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,51.25,48.45,8.333333333333334,1,1,0,0,15,13,3,0,483.5,304617.69,183827.72,126844.58,21094.781,11131.426,9791.0469,1795.7126 +7305,8907,15901,15900,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.2718644,7.3475151,0,1,6,-39.495586,-9,2,3,2021,12,1,22,0,1,1,0,7.0155487,7.0155487,0,0,0,0,0,0,0,14.5,0,0,0,0,0,51.25,48.45,54.96,53.17,8.333333333333334,1,1,0,0,5,13,3,0,483.5,304617.69,183827.72,126844.58,21094.781,11131.426,9791.0469,1795.7126 +7306,8908,15902,15903,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,9.4194021,9.1755238,0,24,1,79.667702,0,3,3,2021,6,0,25,40,1,0,0,42.318737,42.318737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,57.06,57.76,10,1,1,0,0,8,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8908,15903,15902,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,24,-1,19.342903,0,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.64,57.24,10,1,1,0,0,0,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8908,15904,-9,15903,15902,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3002,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8909,15905,-9,15903,15902,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-957.92474,-9,2,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1485,-192568.78,0,0,0,0,0,758.64697 +7306,8910,15906,-9,15903,15902,1,0,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-933.26318,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,658,-80608.336,0,0,0,0,0,656.50757 +7307,8911,15907,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-942.64832,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.88,50.52,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,1409,312855.88,150255.09,276910.38,91885.031,10811.9,0,1424.7325 +7308,8912,15908,15909,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,31,-11,133.54468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,47.76,38.49,40.89,8.333333333333334,1,1,0,0,6,1,3,1,916.5,736109.44,539583.88,308601.5,0,0,0,2066.844 +7308,8912,15909,15908,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.7353077,7.5647278,31,11,19.997574,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7067845,7.4580503,38.49,40.89,45.42,47.76,6.666666666666667,1,1,0,0,0,1,3,1,916.5,736109.44,539583.88,308601.5,0,0,0,2066.844 +7309,8913,15910,15911,15915,15914,1,1,38,1,2,0,1,1,-9,0,2,8.5490065,8.6424961,0,13,1,120.08684,0,3,3,2021,9,0,37,37,1,0,0,13.261962,13.261962,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.42,26.88,54.37,54.8,8.333333333333334,2,3,0,0,8,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15911,15910,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.7136364,8.76476,0,13,-1,6.7947388,0,2,2,2021,12,0,50,41,1,0,0,15.102337,15.102337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62.42,26.88,8.333333333333334,2,3,0,0,8,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15912,-9,15911,15910,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6119,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15913,-9,15911,15910,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-912.08905,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8914,15914,15915,-9,-9,1,1,64,1,2,0,3,3,-9,0,4,7.9493284,7.6179619,0,43,5,25.452192,0,3,2,2021,7,0,45,45,1,0,0,5.9829354,5.9829354,0,0,0,0,0,0,0,0,1,1,0,6.2445779,0,35.86,64.55,59.7,53.75,8.333333333333334,2,3,0,0,8,5,3,1,574.5,23296.914,0,167699.97,35076.516,0,0,1598.5288 +7309,8914,15915,15914,-9,-9,1,0,59,1,2,0,2,2,-9,0,3,6.8584356,7.0603862,0,43,-5,14.531661,0,3,3,2021,12,0,20,20,1,0,0,5.697114,5.697114,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,35.86,64.55,8.333333333333334,2,3,0,0,8,5,3,1,574.5,23296.914,0,167699.97,35076.516,0,0,1598.5288 +7310,8915,15916,15917,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.2315197,9.3082695,0,4,1,90.362923,0,1,1,2021,8,0,46,45,1,0,0,28.525953,28.525953,.05,.05,0,0,0,0,0,0,0,0,0,5.6798229,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,6,4,5,1,439,423564.94,148205.66,0,0,0,0,6056.9258 +7310,8915,15917,15916,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.5210619,8.9571676,0,4,-1,-46.746975,0,-9,-9,2021,12,0,45,45,1,0,0,19.070826,19.070826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,4,5,1,439,423564.94,148205.66,0,0,0,0,6056.9258 +7311,8916,15918,-9,15919,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.2928,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,1944,-19228.156,0,0,0,16682.605,4628.9106,1022.1436 +7311,8916,15919,-9,-9,-9,1,0,39,1,2,0,2,2,-9,0,4,4.9418645,4.8343129,0,0,0,-1003.5817,0,-9,-9,2021,8,0,40,20,1,0,0,.38270321,.38270321,0,0,0,0,0,0,0,0,1,1,0,2.5576544,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,13,13,2,1,1944,-19228.156,0,0,0,16682.605,4628.9106,1022.1436 +7312,8917,15920,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.3980584,6.5066819,0,0,-940.87512,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.3054831,2.9381859,13.171706,0,1,1,0,3.1687601,6.1256242,60.42,39.53,-9,-9,10,1,1,0,0,0,9,2,1,433,38856.371,79895.078,0,0,0,0,969.79315 +7313,8918,15921,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9788752,8.9715986,0,0,0,-1133.8278,0,2,2,2021,12,1,40,40,1,1,0,24.634996,24.634996,.05,.05,0,0,0,0,0,0,0,0,0,2.0571926,0,40.47,55.65,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,1248,16032.679,-43523.258,0,0,0,0,3193.2917 +7314,8919,15922,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,7.7133131,7.1950097,0,0,0,-1004.8303,0,2,3,2021,6,0,30,34,1,0,0,7.839107,7.839107,0,0,.05,0,0,0,0,0,1,1,0,2.324811,0,53,40.54,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,544,462681.25,-26667.898,212825.94,0,0,0,461.7627 +7314,8920,15923,-9,15922,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-892.64801,1,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.2,44.8,-9,-9,3.333333333333333,1,1,0,0,2,7,1,0,3399,0,0,0,0,0,0,648.85077 +7315,8921,15924,15925,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,36,1,11.045121,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,33.15,53.23,47.51,8.333333333333334,1,1,0,0,4,10,2,1,176.5,274357.88,0,141830.61,0,0,0,106.64725 +7315,8921,15925,15924,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.7126846,5.7445297,0,7,-1,21.673697,0,-9,-9,2021,10,1,40,40,1,1,0,.8515054,.8515054,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,55.19,33.15,6.666666666666667,1,1,0,0,8,10,2,1,176.5,274357.88,0,141830.61,0,0,0,106.64725 +7316,8922,15926,15927,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.5766001,8.4453754,0,11,0,-83.889954,0,2,1,2021,7,0,38,38,1,0,0,12.936233,12.936233,0,0,0,0,0,0,0,7,1,1,0,0,0,57.57,49.69,45.18,54.77,3.333333333333333,1,1,0,0,12,2,5,1,373,1064122,197040.86,305148.41,0,0,0,3681.9517 +7316,8922,15927,15926,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4584875,8.4764566,0,11,0,-14.606727,0,3,3,2021,15,4,35,39,1,4,0,14.81496,14.81496,0,0,.05,0,0,0,0,2,1,1,0,0,0,45.18,54.77,57.57,49.69,5,1,1,0,0,12,2,5,1,373,1064122,197040.86,305148.41,0,0,0,3681.9517 +7317,8923,15928,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.6348152,7.6292796,0,0,0,-943.72339,0,3,2,2021,10,1,38,32,1,1,0,7.3776493,7.3776493,0,0,.05,0,0,0,0,0,0,0,0,0,0,35.5,55.32,-9,-9,8.333333333333334,4,2,0,0,1,2,3,0,508,58500.402,-14397.296,0,0,0,0,1393.8547 +7318,8924,15929,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,9.1003399,8.5515213,0,0,0,-1045.806,0,2,2,2021,7,0,59,55,1,0,0,11.843637,11.843637,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,364,266169.81,-26744.223,0,0,8077.5488,0,2656.4248 +7319,8925,15930,15931,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2926941,8.2525539,30,6,19.833353,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8761735,8.5197744,48.28,60.18,51,54,8.333333333333334,1,1,0,0,11,4,4,1,1355,1216674.5,981138.44,192927.56,0,0,0,2419.311 +7319,8925,15931,15930,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,30,-6,-15.343981,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.35262701,0,51,54,48.28,60.18,8.333333333333334,2,3,0,0,1,4,4,1,1355,1216674.5,981138.44,192927.56,0,0,0,2419.311 +7320,8926,15932,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.1671371,8.0192299,0,0,0,-956.80731,-9,1,2,2021,12,1,40,0,1,1,0,9.4861937,9.4861937,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.06,57.15,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,414,29241.297,-125397.38,0,0,0,0,1785.3525 +7321,8927,15933,-9,15935,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.32684,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7321,8927,15934,-9,15935,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.4619,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7321,8927,15935,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.6995225,7.8652434,0,0,0,-1066.5872,0,-9,-9,2021,8,0,37,37,1,0,0,9.5656357,9.5656357,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7322,8928,15936,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.9732323,7.7407503,0,0,0,-1011.3002,0,3,1,2021,20,8,35,25,1,8,0,8.7517633,8.7517633,0,0,0,0,0,0,0,0,0,0,0,0,0,23.95,64.59999999999999,-9,-9,1.666666666666667,1,1,0,1,13,10,3,0,170,197651.36,0,0,0,0,0,1314.1926 +7323,8929,15937,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,0,0,-993.25336,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.67,53.83,-9,-9,10,1,1,0,0,0,8,1,0,267,59602.73,0,0,0,0,0,1710.8929 +7324,8930,15938,15939,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.4149323,8.6766701,0,8,-15,6.9972029,0,3,3,2021,12,0,50,38,1,0,0,10.324155,10.324155,.05,.05,.05,0,0,0,0,0,0,0,0,7.7746496,0,54.1,59.11,29.14,59.74,8.333333333333334,1,1,0,0,10,5,4,1,456,192115.02,123412.47,141392.84,76439.133,0,0,2857.9575 +7324,8930,15939,15938,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.4668899,7.2795229,0,8,15,-49.094547,0,2,2,2021,16,5,31,20,1,5,0,5.8471298,5.8471298,0,0,0,0,0,0,0,0,0,0,0,.14260297,0,29.14,59.74,54.1,59.11,8.333333333333334,1,1,0,0,11,5,4,1,456,192115.02,123412.47,141392.84,76439.133,0,0,2857.9575 +7325,8931,15940,-9,-9,-9,1,1,100,0,0,0,3,3,-9,0,4,0,0,0,0,0,-919.35486,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,4.4658208,0,50.795425,0,1,1,0,0,0,58.22,22.18,-9,-9,8.333333333333334,1,1,0,0,1,7,2,0,1513,-40293.898,0,89931.586,0,0,0,2177.5845 +7326,8932,15941,15942,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.7812877,7.2910919,0,11,-10,6.492662,0,-9,-9,2021,8,0,44,39,1,0,0,7.9300351,7.9300351,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52,54.51,62.49,55.09,8.333333333333334,1,1,0,0,12,11,4,0,3103,280108.38,217660.72,128360.69,23412.723,4584.7847,373.82373,2888.6167 +7326,8932,15942,15941,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.1616001,8.3574419,0,11,10,143.75751,0,2,-9,2021,7,0,51,51,1,0,0,10.416434,10.416434,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,62.49,55.09,52,54.51,10,1,1,0,0,12,11,4,0,3103,280108.38,217660.72,128360.69,23412.723,4584.7847,373.82373,2888.6167 +7327,8933,15943,-9,15944,15945,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-925.13257,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15944,15945,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,6.3394747,6.1341457,0,28,0,29.173912,0,-9,3,2021,10,0,9,9,1,0,0,6.7038865,6.7038865,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,54.1,59.11,8.333333333333334,1,1,0,0,8,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15945,15944,-9,-9,1,1,55,0,2,0,2,2,-9,0,5,8.5121832,8.3311415,0,28,9,-14.355503,0,2,2,2021,12,1,37,37,1,1,0,11.294024,11.294024,.05,.05,0,0,0,0,0,2,1,1,0,1.846808,0,54.1,59.11,43.71,56.91,8.333333333333334,1,1,0,0,11,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15946,-9,15944,15945,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1072.0505,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7328,8934,15947,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1013.7209,0,-9,3,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.25,35.09,-9,-9,0,1,1,1,1,0,8,1,0,567,-8083.4927,0,0,0,0,0,1626.3131 +7328,8935,15948,-9,15947,-9,1,0,20,0,0,0,2,2,-9,0,5,7.6813035,7.5239916,0,0,0,-1030.1078,0,3,-9,2021,7,0,45,40,1,0,1,3.0786803,3.0786803,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,10,1,1,0,0,10,8,3,0,412,-103366.09,0,0,0,0,0,562.80798 +7329,8936,15949,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.31982,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.79,22.28,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,161,318366.13,107859.8,0,0,0,0,789.40601 +7330,8937,15950,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.2001681,7.1034594,0,0,0,-959.05719,0,3,2,2021,13,1,16,16,1,1,0,8.6407394,8.6407394,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,39.14,-9,-9,6.666666666666667,3,4,0,0,6,8,2,0,690.5,-225152,0,0,0,4754.2666,0,1859.0183 +7330,8937,15951,-9,15950,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-921.86658,-9,2,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,0,8,2,0,690.5,-225152,0,0,0,4754.2666,0,1859.0183 +7330,8938,15952,-9,15950,-9,1,0,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-990.41553,1,2,1,2021,12,0,0,35,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,60.01,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,591,-217965.84,0,0,0,0,0,0 +7330,8939,15953,-9,15950,-9,1,1,23,0,1,0,2,2,1,0,4,7.5719371,7.4152403,0,0,0,-1160.751,-9,2,-9,2021,5,0,20,0,1,0,1,9.5735636,9.5735636,0,0,0,0,0,0,0,0,1,1,0,0,0,60.63,54.55,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,1091,83840.141,0,0,0,0,-1764.5424,441.56995 +7330,8940,15954,-9,15950,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1148.8634,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,398,0,0,0,0,0,0,0 +7331,8941,15955,-9,15956,-9,1,0,17,0,1,1,2,0,0,0,4,0,5.3489237,5.2750392,0,0,-1028.4437,-9,2,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9423189,0,54.2,57.49,-9,-9,10,2,3,0,0,0,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8941,15956,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9038749,8.0881042,6.9182925,0,0,-1010.302,0,2,2,2021,5,0,29,29,1,0,0,10.685026,10.685026,.05,.05,0,0,0,0,0,0,1,1,0,6.7887993,0,55.19,54.26,-9,-9,8.333333333333334,2,3,0,0,6,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8941,15957,-9,15956,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.13501,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8942,15958,-9,15956,-9,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-895.92456,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,9,1,0,402,35504.801,0,0,0,0,0,0 +7332,8943,15959,-9,15962,15961,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2417,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15960,-9,15962,15961,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.725,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15961,15962,-9,-9,1,1,23,2,3,0,2,2,-9,0,3,0,0,0,1,-1,111.53791,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,50.91,46.91,8.333333333333334,1,1,1,0,1,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15962,15961,-9,-9,1,0,24,2,3,0,3,3,-9,0,3,0,5.3208694,4.8721519,1,1,113.43501,-9,2,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4960046,0,50.91,46.91,56.74,55.09,8.333333333333334,1,1,0,1,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15963,-9,15962,15961,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-862.552,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,3.6378868,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7333,8944,15964,15965,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,43.26,58.26,51.15,14.45,8.333333333333334,1,1,0,0,0,7,1,1,456,191761.5,18710.809,229309.8,0,0,0,445.3443 +7333,8944,15965,15964,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,56,6,0,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,18.07213,0,2,1,1,0,0,0,51.15,14.45,43.26,58.26,8.333333333333334,1,1,0,0,7,7,1,1,456,191761.5,18710.809,229309.8,0,0,0,445.3443 +7334,8945,15966,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3364296,8.385788,6.756372,4,0,50.230095,0,-9,2,2021,12,3,24,37,1,3,0,14.927122,14.927122,.05,.05,0,0,0,0,0,0,0,0,0,7.4093428,0,46.39,60.99,51,56,6.666666666666667,1,1,0,0,12,2,4,1,899,342285.16,127688.16,224556.02,91463.328,15088.405,0,2593.2439 +7335,8946,15967,15968,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.6719847,7.4532142,0,42,-2,-69.627052,0,2,2,2021,11,0,32,32,1,0,0,6.186389,6.186389,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.34,60.95,55,53,8.333333333333334,1,1,0,0,8,9,5,1,1179,2259460,1788132.8,345424.13,0,3935.5786,0,4358.7227 +7335,8946,15968,15967,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.1792793,9.0776606,6.6309252,5,2,-89.501289,0,-9,-9,2021,9,0,50,50,1,0,0,22.234825,22.234825,.05,.05,0,0,0,0,0,0,0,0,0,4.8972015,6.7807298,55,53,37.34,60.95,8,1,1,0,0,1,9,5,1,1179,2259460,1788132.8,345424.13,0,3935.5786,0,4358.7227 +7336,8947,15969,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1006.2759,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.08,66.28,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,1692,0,0,0,0,0,0,659.00629 +7337,8948,15970,15971,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.990365,8.1117191,0,7,-1,50.283707,0,2,2,2021,7,1,38,39,1,1,0,12.215339,12.215339,.05,.05,0,0,0,0,0,2,0,0,0,0,0,64.21000000000001,31.14,48.8,47.64,8.333333333333334,1,1,0,0,8,5,4,1,909,981398,511292.47,391984.91,0,0,0,2790.9294 +7337,8948,15971,15970,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9585395,7.9063182,0,7,1,-34.838284,0,-9,-9,2021,17,6,38,37,1,6,0,8.4946089,8.4946089,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.8,47.64,64.21000000000001,31.14,8.333333333333334,1,1,0,0,8,5,4,1,909,981398,511292.47,391984.91,0,0,0,2790.9294 +7338,8949,15972,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1083.7142,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.708871,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,886,66970.5,0,141968.67,0,0,0,1498.6115 +7339,8950,15973,15974,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.4710202,7.5822349,0,1,0,-53.147591,-9,-9,2,2021,9,0,41,0,1,0,0,4.0514021,4.0514021,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53.51,52.37,8.333333333333334,1,1,0,0,8,1,4,1,145.5,188121.2,60347.965,35296.551,92794.32,1082.0526,0,2936.7402 +7339,8950,15974,15973,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2555637,8.2013578,0,1,0,-178.2802,-9,-9,-9,2021,7,0,50,0,1,0,0,12.037079,12.037079,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,52.37,48.28,60.18,8.333333333333334,1,1,0,0,3,1,4,1,145.5,188121.2,60347.965,35296.551,92794.32,1082.0526,0,2936.7402 +7340,8951,15975,15976,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0251851,6.7843628,45,0,27.614079,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,2.9544821,0,0,1,1,0,0,6.4743571,49.71,30.25,60.12,54.8,6.666666666666667,1,1,0,0,3,7,4,1,1162,1834970.5,1060521.8,556750,0,0,0,2234.5571 +7340,8951,15976,15975,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.137928,8.1725664,45,0,-108.02532,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86189187,8.4277363,60.12,54.8,49.71,30.25,8.333333333333334,1,1,0,0,4,7,4,1,1162,1834970.5,1060521.8,556750,0,0,0,2234.5571 +7341,8952,15977,15978,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.6581316,7.4887195,28,-4,63.825333,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4774485,62.07,43.3,46.71,44.73,8.333333333333334,1,1,0,0,12,5,3,1,627.5,2260428,1420647.5,328130,0,0,0,2611.4546 +7341,8952,15978,15977,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8773766,7.8429461,28,4,-12.937218,0,2,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7356348,7.5512414,46.71,44.73,62.07,43.3,8.333333333333334,1,1,0,0,11,5,3,1,627.5,2260428,1420647.5,328130,0,0,0,2611.4546 +7342,8953,15979,15981,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,6.9126182,7.0452905,0,5,-4,8.1303787,0,2,2,2021,12,0,16,14,1,0,0,8.9663448,8.9663448,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.13,55.9,8.333333333333334,1,1,0,0,6,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15980,-9,15979,15981,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.3808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15981,15979,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3666487,8.3864422,0,5,4,27.24617,0,-9,-9,2021,15,4,40,33,1,4,0,11.352978,11.352978,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,57.33,53.46,8.333333333333334,1,1,0,0,5,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15982,-9,15979,15981,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0793,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7343,8954,15983,15986,15987,15988,1,1,36,0,2,0,1,1,-9,0,5,8.4519415,8.4060965,0,4,-3,-128.94034,-9,2,2,2021,0,0,40,0,1,0,0,11.159376,11.159376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.38,53.47,6.666666666666667,2,3,0,0,10,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15984,-9,15986,15983,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.19,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15985,-9,15986,15983,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.89032,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15986,15983,-9,-9,1,0,39,0,2,0,3,3,-9,0,5,0,0,0,4,3,-63.240772,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,62.39,56.71,8.333333333333334,2,3,0,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8955,15987,15988,-9,-9,1,0,59,0,2,0,2,2,-9,0,5,0,0,0,40,-15,0,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,49.05,47.49,8.333333333333334,2,3,0,0,0,2,1,1,920,346850.75,142654.41,221663.25,0,0,0,1231.7593 +7343,8955,15988,15987,-9,-9,1,1,74,0,2,0,2,2,-9,0,3,0,0,0,37,15,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.05,47.49,52.72,55.58,8.333333333333334,2,3,0,0,0,2,1,1,920,346850.75,142654.41,221663.25,0,0,0,1231.7593 +7344,8956,15989,15990,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.1143055,7.762135,9,1,-50.81435,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,3.8220427,7.7703924,56.35,48.33,51.01,44.05,10,1,1,0,0,0,11,4,1,959.5,1369489.3,841877.88,309378.5,0,0,0,4143.9878 +7344,8956,15990,15989,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.974093,8.029624,9,-1,26.440634,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,3.1531167,0,0,1,1,0,5.8667655,7.6883864,51.01,44.05,56.35,48.33,10,1,1,0,0,0,11,4,1,959.5,1369489.3,841877.88,309378.5,0,0,0,4143.9878 +7345,8957,15991,15992,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,0,0,0,6,-3,-34.015369,0,2,1,2021,11,0,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,51,49,7,1,1,0,0,0,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8957,15992,15991,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,0,8.2882462,8.4987478,6,3,40.671024,0,2,2,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5359714,8.3227005,51,49,49,48,7,1,1,0,0,6,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8957,15993,-9,15991,15992,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.7934,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8958,15994,-9,15991,15992,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-951.73431,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,0,4,1,1,1900,-63464.18,0,0,0,0,0,0 +7346,8959,15995,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.2478995,7.2361937,0,4,4,37.889988,0,-9,-9,2021,6,0,23,22,1,0,0,8.15942,8.15942,0,0,0,0,0,0,0,0,0,0,0,4.3737192,0,61.28,35.65,40.83,59.68,6.666666666666667,1,1,0,0,5,8,5,1,4374,-64223.211,0,0,0,0,0,642.62921 +7346,8960,15996,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.974762,9.3028698,7.6404982,4,-4,25.252069,0,-9,-9,2021,10,3,39,45,1,3,0,19.506954,19.506954,0,0,0,0,0,0,0,0,0,0,0,8.9497576,0,40.83,59.68,61.28,35.65,8.333333333333334,1,1,0,0,7,8,5,1,875,84043.867,0,0,0,102.9105,0,4695.7158 +7347,8961,15997,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,6.3816233,6.6431875,0,0,0,-931.72736,0,3,3,2021,10,0,10,43,1,0,0,7.0160136,7.0160136,0,0,0,0,0,0,0,2,1,0,1,0,0,49.87,50.46,-9,-9,3.333333333333333,1,1,0,0,9,2,2,1,195,-77839.922,-102595.91,0,0,0,0,1062.0702 +7348,8962,15998,15999,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.0782809,6.8443131,40,10,35.715355,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5311298,57.16,56.15,49,48,8.333333333333334,1,1,0,0,0,4,3,1,1083,2515129,1387853.3,457025.5,0,0,0,2910.3101 +7348,8962,15999,15998,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.9146194,8.178133,40,-10,78.805229,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1204445,8.0946503,49,48,57.16,56.15,7,1,1,0,0,0,4,3,1,1083,2515129,1387853.3,457025.5,0,0,0,2910.3101 +7348,8963,16000,-9,15999,15998,1,1,22,0,0,0,2,2,-9,0,4,8.33955,7.9600587,0,0,0,-972.61121,0,2,1,2021,10,0,40,0,1,1,0,11.09771,11.09771,0,0,0,0,0,0,0,0,1,1,0,.35286385,0,48,59,-9,-9,7,1,1,0,0,1,4,4,1,250,-34439.969,0,0,0,0,0,1767.8257 +7348,8964,16001,-9,15999,15998,1,1,27,0,0,0,1,1,-9,0,4,8.1662197,8.2940254,0,0,0,-897.84216,0,2,1,2021,10,0,37,0,1,1,0,8.3691874,8.3691874,0,0,0,0,0,0,0,0,1,1,0,1.3534237,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,796,103337.77,0,0,0,2664.7434,0,1861.9667 +7349,8965,16002,16003,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.3767805,6.7233176,0,8,-2,-167.77034,0,-9,-9,2021,12,0,10,10,1,0,0,7.9374976,7.9374976,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,44.2,50,49,6.666666666666667,1,1,0,0,8,7,3,1,358,71020.922,0,0,0,0,0,1326.0901 +7349,8965,16003,16002,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.76963,7.7102766,0,8,2,-77.171562,0,-9,-9,2021,10,0,60,60,1,1,0,4.9952002,4.9952002,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,45.81,44.2,7,1,1,0,0,1,7,3,1,358,71020.922,0,0,0,0,0,1326.0901 +7350,8966,16004,16005,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.1739388,8.2455549,0,8,-1,-22.06012,0,-9,-9,2021,36,12,40,48,1,12,0,9.6480274,9.6480274,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.31,43.68,38.28,63.48,8.333333333333334,2,3,0,0,6,9,5,1,1234,327054.63,53750.641,365337.94,142102.31,0,0,3446.4795 +7350,8966,16005,16004,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.7596188,8.8260164,0,8,1,-134.23019,0,1,1,2021,14,3,52,49,1,3,0,15.646209,15.646209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.28,63.48,45.31,43.68,6.666666666666667,2,3,0,0,13,9,5,1,1234,327054.63,53750.641,365337.94,142102.31,0,0,3446.4795 +7351,8967,16006,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.1014361,5.439755,0,0,-901.85675,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0202003,5.2897596,54.53,41.24,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,348,-52703.73,10478.222,0,0,0,0,613.13373 +7352,8968,16007,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.9621673,8.1459332,4.0685115,0,0,-1078.0908,0,2,2,2021,19,7,36,44,1,7,0,7.865973,7.865973,0,0,0,0,0,0,0,0,1,1,0,0,4.4501624,37.42,35.77,-9,-9,6.666666666666667,3,4,0,1,6,8,4,0,575,423854.34,15003.083,490942.66,14142.272,0,0,1352.9344 +7352,8969,16008,-9,16007,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9319816,8.0682545,0,0,0,-927.76941,0,2,2,2021,11,0,36,40,1,2,1,9.6330681,9.6330681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,585,-249899.13,135537.08,0,0,0,0,915.95801 +7352,8970,16009,-9,16007,-9,1,1,18,0,0,0,2,2,1,0,5,7.2780724,7.1606989,0,0,0,-974.12775,-9,2,-9,2021,12,3,25,0,1,3,1,8.2369814,8.2369814,0,0,0,0,0,0,0,0,1,1,0,0,0,51.69,51.82,-9,-9,10,3,4,0,0,1,8,3,0,835,178322.53,0,0,0,0,0,848.1618 +7352,8971,16010,-9,16007,-9,1,1,28,0,0,0,1,1,-9,0,4,8.2054863,7.8184476,0,0,0,-991.82501,-9,2,-9,2021,10,0,36,0,1,1,1,8.1069632,8.1069632,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,0,481,-107604.67,11821.604,0,0,0,0,1655.1145 +7352,8972,16011,-9,16007,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1268444,8.0338993,0,0,0,-1141.3936,0,2,-9,2021,11,0,36,0,1,2,1,9.7151442,9.7151442,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,4,0,714,3124.5684,0,0,0,0,0,1571.3644 +7353,8973,16012,16013,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8231955,8.4584093,0,9,0,-43.290352,-9,2,2,2021,12,0,35,0,1,0,0,19.836191,19.836191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,38.8,59.15,6.666666666666667,1,1,0,0,9,4,5,1,698.5,-29562.633,47126.336,0,0,11997.962,0,3518.436 +7353,8973,16013,16012,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6274099,7.5538464,0,9,0,-1.9847622,0,2,1,2021,18,6,28,25,1,6,0,7.3411479,7.3411479,.05,.05,0,0,0,0,0,0,0,0,0,3.1692436,0,38.8,59.15,51.41,56.15,6.666666666666667,1,1,0,0,9,4,5,1,698.5,-29562.633,47126.336,0,0,11997.962,0,3518.436 +7354,8974,16014,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.9536552,7.7577753,0,0,-1081.238,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7685108,0,23.020754,0,1,1,0,4.1229982,8.1581097,45.63,46.6,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,3006,784302.38,131554.83,283073.88,0,0,0,1824.1278 +7355,8975,16015,16016,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.7669497,6.7087135,49,0,-80.036827,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6100721,7.1122675,58.32,50.22,62.66,52.4,10,1,1,0,0,0,9,5,1,693.5,2189852.5,1004013.6,600882.75,0,0,0,4926.8174 +7355,8975,16016,16015,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.7004366,8.7799368,49,0,25.888292,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3561313,8.4296236,62.66,52.4,58.32,50.22,10,1,1,0,0,0,9,5,1,693.5,2189852.5,1004013.6,600882.75,0,0,0,4926.8174 +7356,8976,16017,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.1497297,8.357502,0,0,0,-987.57825,0,2,-9,2021,8,0,35,40,1,0,0,13.768053,13.768053,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,7,12,4,0,2236,-195867.86,-118622.46,0,0,0,5677.0015,1218.4185 +7357,8977,16018,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5664105,6.6479192,0,0,-1015.8429,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4964576,37.02,37.37,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,154,249758.23,275031.28,197219.84,0,0,0,1579.0953 +7358,8978,16019,-9,16022,16021,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-992.06274,-9,1,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16020,-9,16022,16021,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.749,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16021,16022,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.70858,9.4824982,0,8,0,-68.222542,0,-9,-9,2021,8,0,46,55,1,0,0,37.262959,37.262959,0,0,0,0,0,0,0,0,0,0,0,6.6564145,0,55.36,54.24,48.18,61.8,8.333333333333334,1,1,0,0,5,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16022,16021,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.7362061,9.6993465,0,24,0,7.7323718,0,2,1,2021,10,1,46,40,1,1,0,32.208595,32.208595,0,0,0,0,0,0,0,0,0,0,0,5.5448022,0,48.18,61.8,55.36,54.24,8.333333333333334,2,3,0,0,9,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7359,8979,16023,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.1700978,6.5049868,0,0,-943.31238,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2564826,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,0,376,84985.336,-70372.398,0,0,0,0,1236.5895 +7360,8980,16024,16025,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,20,1,-47.610828,0,3,3,2021,26,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.14,39.53,57.16,56.15,3.333333333333333,1,1,1,0,12,9,2,0,2098.5,114657.69,123343.03,0,0,0,234.07901,1007.9562 +7360,8980,16025,16024,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.8141289,7.5536256,0,31,-1,-30.695454,0,3,3,2021,10,0,50,40,1,0,0,3.9887116,3.9887116,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.14,39.53,6.666666666666667,1,1,0,0,12,9,2,0,2098.5,114657.69,123343.03,0,0,0,234.07901,1007.9562 +7361,8981,16026,16027,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,6,5,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,38.13,29.95,7,1,1,0,0,0,13,1,1,481,361894.06,40911.328,64660.578,0,0,0,2405.46 +7361,8981,16027,16026,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,6,-5,0,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,29.95,52,47,6.666666666666667,1,1,0,0,0,13,1,1,481,361894.06,40911.328,64660.578,0,0,0,2405.46 +7362,8982,16028,16029,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,5.4467378,5.7467251,37,6,-97.935493,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,16.78743,0,0,1,1,0,0,5.4485021,49.36,14.27,45.83,19.9,1.666666666666667,1,1,0,1,0,11,2,0,492.5,98824.078,-42735.406,0,0,0,0,1591.1494 +7362,8982,16029,16028,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,41,-6,105.38486,0,2,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.83,19.9,49.36,14.27,0,1,1,0,1,0,11,2,0,492.5,98824.078,-42735.406,0,0,0,0,1591.1494 +7363,8983,16030,16031,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,7.7913737,7.3735437,0,48,2,10.672881,0,2,-9,2021,9,1,24,24,1,1,0,9.9015732,9.9015732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.97,24.32,47.96,52.66,8.333333333333334,1,1,0,0,7,5,4,1,832,776775.19,528154.5,169425.5,0,0,0,2100.0571 +7363,8983,16031,16030,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9565859,7.8276935,0,48,-2,72.546494,0,-9,-9,2021,12,0,27,25,1,0,0,8.8842402,8.8842402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.96,52.66,64.97,24.32,8.333333333333334,1,1,0,0,11,5,4,1,832,776775.19,528154.5,169425.5,0,0,0,2100.0571 +7364,8984,16032,16033,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3322124,8.47258,11,1,6.5190215,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8212109,8.0823603,59.88,48.04,51.86,38.05,10,1,1,0,0,1,12,4,1,811,1109847.5,630956.13,300675.81,0,7383.9116,0,3364.5439 +7364,8984,16033,16032,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8358641,7.3509355,11,-1,163.89075,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5869575,7.2224579,51.86,38.05,59.88,48.04,8.333333333333334,1,1,0,0,2,12,4,1,811,1109847.5,630956.13,300675.81,0,7383.9116,0,3364.5439 +7365,8985,16034,16035,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5395389,6.6593475,12,-2,-85.758575,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7257807,6.5079427,58.15,52.91,58.05,54.52,8.333333333333334,1,1,0,0,0,2,2,1,1408.5,627314.38,76413.406,202971.28,0,0,0,1347.5776 +7365,8985,16035,16034,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,5.2087317,5.2950158,12,2,15.40801,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1645093,5.4258451,58.05,54.52,58.15,52.91,8.333333333333334,1,1,0,0,0,2,2,1,1408.5,627314.38,76413.406,202971.28,0,0,0,1347.5776 +7366,8986,16036,16037,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.9327636,7.678514,9,16,-8.2470655,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0528083,0,0,1,1,0,7.6761436,7.684402,60.72,47.63,55,54,10,1,1,0,0,0,10,3,1,710.5,515009.38,280373.91,191551.94,0,0,0,3268.7354 +7366,8986,16037,16036,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,9,-16,-16.108643,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2740815,0,55,54,60.72,47.63,5,1,1,0,0,3,10,3,1,710.5,515009.38,280373.91,191551.94,0,0,0,3268.7354 +7367,8987,16038,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.284524,8.5669565,0,0,0,-863.07501,0,-9,-9,2021,9,1,38,37,1,1,0,11.957698,11.957698,.05,.05,0,0,0,0,0,0,0,0,0,2.6828253,0,38.09,63.39,-9,-9,8.333333333333334,1,1,0,0,5,11,4,0,221,233720.05,3668.3958,0,0,0,0,1318.2396 +7368,8988,16039,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.5830069,7.6034684,0,0,0,-970.66821,0,1,1,2021,9,2,32,40,1,2,1,7.0948925,7.0948925,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,417,-113428.58,-1832.7919,0,0,0,1607.1359,491.7504 +7369,8989,16040,16041,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,50,1,29.692982,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,43.21,60.71,37.26,6.666666666666667,1,1,0,0,6,1,2,1,328,535259.25,44545.188,418769.69,0,0,0,2197.3862 +7369,8989,16041,16040,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,6.9361148,6.8381877,0,50,-1,-40.230003,0,3,-9,2021,8,0,24,24,1,0,0,4.3827147,4.3827147,0,0,0,0,0,0,0,0,1,1,0,0,0,60.71,37.26,53.63,43.21,6.666666666666667,1,1,0,0,12,1,2,1,328,535259.25,44545.188,418769.69,0,0,0,2197.3862 +7370,8990,16042,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.8776989,9.3769369,0,0,-931.09723,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6184907,9.0835524,49.12,57.28,-9,-9,5,1,1,0,0,6,6,5,1,404,3883887,3920809.8,0,0,0,0,4587.7598 +7371,8991,16043,16044,-9,-9,1,1,57,0,2,0,2,2,-9,0,3,9.0241604,9.24265,0,4,8,96.733032,0,2,2,2021,11,1,45,70,1,1,0,29.610895,29.610895,.05,.05,0,0,0,0,0,0,1,1,0,2.740119,0,49.11,49.21,45.95,51.79,8.333333333333334,1,1,0,0,14,6,4,1,553.5,135758.02,-76230.258,0,0,0,6941.6313,4362.6196 +7371,8991,16044,16043,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,6.8663206,6.8376389,0,4,-8,-42.950611,0,2,3,2021,24,12,15,22,1,12,0,7.4393449,7.4393449,0,0,0,0,0,0,0,0,1,1,0,.26828483,0,45.95,51.79,49.11,49.21,8.333333333333334,1,1,0,0,11,6,4,1,553.5,135758.02,-76230.258,0,0,0,6941.6313,4362.6196 +7371,8992,16045,-9,16044,16043,1,0,24,0,2,0,1,1,-9,0,4,8.34163,8.4200554,0,0,0,-1015.5873,0,2,2,2021,13,2,40,40,1,2,1,10.962302,10.962302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,38.16,-9,-9,6.666666666666667,1,1,0,0,5,6,4,1,451,164045.75,-52158.754,0,0,0,0,861.11957 +7372,8993,16046,16047,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.5003567,9.4063129,0,6,-1,-48.266582,0,2,2,2021,10,0,40,44,1,1,0,21.811171,21.811171,.05,.05,0,0,0,0,0,0,0,0,0,8.3374004,0,52,53,51.77,58.57,8,1,1,0,0,1,10,5,1,401,604293.5,465490.78,293878.97,105561.53,0,0,9657.3623 +7372,8993,16047,16046,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.2666683,8.7185011,0,6,1,15.505861,0,3,2,2021,10,2,50,0,1,2,0,19.71924,19.71924,.05,.05,0,0,0,0,0,0,0,0,0,3.2861087,0,51.77,58.57,52,53,8.333333333333334,1,1,0,0,6,10,5,1,401,604293.5,465490.78,293878.97,105561.53,0,0,9657.3623 +7373,8994,16048,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,7.9879856,8.0654411,0,0,0,-1095.2235,-9,-9,-9,2021,13,3,50,0,1,3,0,7.5480742,7.5480742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.11,51.29,-9,-9,3.333333333333333,1,1,0,0,3,12,4,0,452,-141218.16,-68819.805,0,0,0,0,2091.8086 +7374,8995,16049,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.524024,7.3620348,0,0,0,-952.87958,0,3,3,2021,9,0,45,48,1,0,0,4.4987912,4.4987912,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,222,175965.02,-40216.234,151507.88,38059.516,0,0,458.4375 +7375,8996,16050,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.20636,0,3,2,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.07,28.92,-9,-9,6.666666666666667,1,1,0,1,0,9,1,0,3190,71938.414,0,243733.17,0,0,516.26465,1079.2532 +7376,8997,16051,16052,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.4036489,5.9919934,0,12,-3,77.032616,0,2,2,2021,15,4,35,35,1,4,0,1.9621532,1.9621532,0,0,0,0,0,0,0,0,1,1,0,0,0,51.01,29.18,47.1,48.75,1.666666666666667,3,4,0,0,13,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7376,8997,16052,16051,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.4555173,8.0506496,0,12,3,-24.860067,0,2,2,2021,13,2,10,10,1,2,0,20.939077,20.939077,0,0,0,0,0,0,0,2,1,1,0,0,0,47.1,48.75,51.01,29.18,8.333333333333334,1,1,0,0,3,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7376,8997,16053,-9,16052,16051,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-883.91882,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7377,8998,16054,-9,16055,16057,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.6266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16055,16057,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,9.4040289,9.3915091,0,16,-3,-109.75784,0,2,2,2021,12,4,43,34,1,4,0,32.164547,32.164547,0,0,0,0,0,0,0,0,1,1,0,7.7780647,0,43.55,51.57,36.96,49.34,8.333333333333334,1,1,0,0,12,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16056,-9,16055,16057,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1016,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16057,16055,-9,-9,1,1,42,1,2,0,1,1,-9,0,2,7.4215508,7.6644912,0,17,3,-23.870354,0,2,2,2021,9,1,35,40,1,1,0,5.2374616,5.2374616,.05,.05,0,0,0,0,0,0,1,1,0,5.2193317,0,36.96,49.34,43.55,51.57,6.666666666666667,1,1,0,0,12,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7378,8999,16058,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.8809,0,2,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,51.511246,0,0,1,1,0,0,0,40.65,26.16,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,147,21245.146,0,0,0,0,0,836.86841 +7379,9000,16059,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,8.225194,8.109087,0,0,-984.69757,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5137129,8.3829956,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,331,588283.81,184976.13,206759.45,0,0,0,2545.6895 +7380,9001,16060,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2671423,8.1282158,0,1,-30,63.474743,0,3,2,2021,12,1,35,35,1,1,0,8.6612062,8.6612062,.05,.05,.05,0,0,0,0,91,1,1,0,0,0,27.14,45,47.5,40.03,0,1,1,0,1,13,12,3,1,2030,496122.75,19132.676,0,0,0,0,1503.8401 +7380,9002,16061,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.6915426,5.7984557,1,30,-67.85466,-9,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,72.789268,74.563652,690.46106,0,1,1,0,0,5.782733,47.5,40.03,27.14,45,6.666666666666667,1,1,0,0,0,12,3,1,13945,103509.14,-64621.824,162095.38,0,0,0,1491.7156 +7381,9003,16062,-9,16063,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9036,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16063,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.0861263,7.1791849,0,0,0,-1066.5813,0,2,2,2021,8,0,30,30,1,0,0,5.2432919,5.2432919,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16064,-9,16063,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.0103,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16065,-9,16063,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1141.9269,-9,2,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7382,9004,16066,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1173.2043,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.52,23.86,-9,-9,3.333333333333333,1,1,0,1,0,1,1,1,1955,125818.39,0,0,0,0,0,1477.208 +7383,9005,16067,16068,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.4592695,8.3278227,0,6,1,-29.117453,0,2,3,2021,11,0,35,35,1,0,0,16.603546,16.603546,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,28.97,46.53,6.666666666666667,1,1,0,0,9,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7383,9005,16068,16067,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.8580251,7.5359941,0,6,-1,-8.1491737,0,3,3,2021,25,10,23,23,1,10,0,13.757179,13.757179,.05,.05,0,0,0,0,0,0,1,1,0,.98117328,0,28.97,46.53,49.04,55.86,6.666666666666667,1,1,0,0,9,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7383,9005,16069,-9,16068,16067,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.9183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7384,9006,16070,16071,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.5176926,8.6576614,0,9,9,-71.314346,0,2,2,2021,6,0,45,45,1,0,0,10.825109,10.825109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,49.75,43.1,47.55,8.333333333333334,1,1,0,0,9,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7384,9006,16071,16070,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.0531979,9.0233641,4.9427748,9,0,6.6298833,0,3,2,2021,11,0,35,29,1,0,0,26.202156,26.202156,0,0,0,0,0,0,0,0,1,1,0,5.1864491,0,43.1,47.55,50.68,49.75,8.333333333333334,1,1,0,0,11,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7384,9006,16072,-9,16071,16070,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.33246,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7385,9007,16073,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.0856361,7.9588199,0,0,0,-925.28967,0,-9,-9,2021,12,0,45,48,1,0,0,5.9410033,5.9410033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,5,1,1,0,0,3,13,4,0,53,-51585.66,-11619.705,0,0,3405.5452,0,721.08826 +7385,9008,16074,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,4,7.7209644,8.1050196,0,0,0,-996.72266,-9,-9,-9,2021,9,0,66,0,1,0,0,5.0231781,5.0231781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,2,13,3,0,387,103107.07,65787.297,0,0,0,0,194.80948 +7386,9009,16075,16076,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9063015,8.6560459,0,32,0,-22.467852,0,3,3,2021,7,0,45,44,1,0,0,20.995737,20.995737,0,0,0,0,0,0,0,0,0,0,0,3.1332886,0,58.15,52.91,32.26,50.01,6.666666666666667,1,1,0,0,10,13,5,1,1182,1529570.5,984279.88,479816.19,0,6961.0898,0,3976.9351 +7386,9009,16076,16075,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.766418,7.8560014,0,32,0,-27.587772,0,2,3,2021,10,0,23,39,1,1,0,12.205377,12.205377,0,0,0,0,0,0,0,0,0,0,0,0,0,32.26,50.01,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,1182,1529570.5,984279.88,479816.19,0,6961.0898,0,3976.9351 +7386,9010,16077,-9,16076,16075,1,1,26,0,0,0,1,1,-9,0,3,8.2807798,8.509181,0,0,0,-1153.7649,0,2,2,2021,12,0,38,40,1,0,1,12.304379,12.304379,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,8,13,4,1,157,3517.1123,-68450.008,124179.08,62533.496,0,0,1128.9934 +7387,9011,16078,16079,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.4089699,9.2831211,0,22,1,71.397537,0,-9,-9,2021,12,3,60,60,1,3,0,24.967556,24.967556,.05,.05,.05,0,0,0,0,0,0,0,0,4.0899754,0,51.49,57.57,51.81,57.22,8.333333333333334,1,1,0,0,13,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9011,16079,16078,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.1021633,9.1876469,0,22,-1,-70.22403,0,-9,-9,2021,13,3,14,50,1,3,0,70.363487,70.363487,0,0,.05,0,0,0,0,0,0,0,0,1.3162482,0,51.81,57.22,51.49,57.57,8.333333333333334,1,1,0,0,13,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9011,16080,-9,16079,16078,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-967.18402,-9,1,1,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,47.99,-9,-9,5,1,1,0,0,0,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9012,16081,-9,16079,16078,1,1,19,0,1,0,2,2,1,0,5,7.9603219,7.9080429,0,0,0,-998.48383,-9,1,1,2021,4,0,35,0,1,0,1,10.245131,10.245131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,8,4,1,537,183775.45,4133.7188,0,0,0,0,843.55914 +7388,9013,16082,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-858.49774,0,2,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.75,41.96,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,1271,375271.16,144204.8,0,0,0,0,797.42212 +7388,9014,16083,-9,16082,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-987.32666,-9,3,-9,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,391,-13453.326,0,0,0,0,0,-77.717468 +7389,9015,16084,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.669353,6.6021276,0,0,-895.29785,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2791343,6.7758121,54.85,29.1,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1192,688256.88,227690.52,242140.8,0,0,0,764.94098 +7390,9016,16085,16086,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.3533735,8.2568865,0,6,-7,87.433075,0,2,2,2021,11,0,40,46,1,2,0,11.791938,11.791938,0,0,0,0,0,0,0,0,0,0,0,8.9730825,0,49,56,55.5,52.9,7,1,1,0,0,1,5,4,1,1713.5,40344.918,-14483.629,180000.38,57059.09,0,0,5828.4551 +7390,9016,16086,16085,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,7.6430335,7.3398137,0,6,7,17.878113,0,3,2,2021,7,1,45,48,1,1,0,3.8005085,3.8005085,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.5,52.9,49,56,10,1,1,0,0,9,5,4,1,1713.5,40344.918,-14483.629,180000.38,57059.09,0,0,5828.4551 +7391,9017,16087,-9,16088,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-975.45587,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,4,5,1,1,4524,0,0,0,0,0,0,941.62073 +7391,9018,16088,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.2845,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,5,1,1,1417,-102411.8,0,0,0,0,0,-807.09418 +7392,9019,16089,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.1925974,8.2653942,0,0,0,-1026.7188,0,1,1,2021,10,1,55,55,1,1,0,10.255282,10.255282,0,0,0,0,0,0,0,0,0,0,0,0,0,53.38,52.51,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,510,-32810.969,0,0,0,0,0,1464.3367 +7393,9020,16090,16091,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.3706722,7.9930882,55,4,5.9029593,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5225501,60.05,42.65,60.69,53.18,10,1,1,0,0,0,10,3,1,1685.5,310658.5,128506.17,0,0,1311.5266,0,1915.9868 +7393,9020,16091,16090,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,55,-4,-81.317184,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9512291,0,60.69,53.18,60.05,42.65,10,1,1,0,0,0,10,3,1,1685.5,310658.5,128506.17,0,0,1311.5266,0,1915.9868 +7394,9021,16092,16093,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1524229,7.4796715,11,-1,-82.188339,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4295325,48.48,37.25,35.9,26.98,6.666666666666667,1,1,0,0,0,6,2,0,177,664875.75,182459.45,211803.53,0,0,777.08301,1642.4321 +7394,9021,16093,16092,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,52,1,16.409107,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.5626602,0,0,1,1,0,.008097861,0,35.9,26.98,48.48,37.25,6.666666666666667,1,1,0,0,0,6,2,0,177,664875.75,182459.45,211803.53,0,0,777.08301,1642.4321 +7394,9022,16094,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.2019811,7.3838134,0,0,0,-886.38776,-9,-9,-9,2021,12,0,40,0,1,2,0,4.8308606,4.8308606,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,6,0,0,1,6,3,0,1594,-121417.77,0,0,0,0,0,1262.6058 +7395,9023,16095,16096,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.7190199,9.7501831,0,9,4,-97.007538,0,2,1,2021,11,0,40,40,1,0,0,39.726246,39.726246,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.72,48.03,6.666666666666667,2,3,0,0,11,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16096,16095,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.1428146,8.2109556,0,15,-4,-18.065742,0,1,1,2021,12,0,20,0,1,0,0,15.549186,15.549186,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.72,48.03,57.16,56.15,6.666666666666667,2,3,0,0,2,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16097,-9,16096,16095,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5714,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16098,-9,16096,16095,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-936.54974,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7396,9024,16099,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.2841768,8.288064,0,0,0,-1105.8573,0,2,2,2021,17,4,55,52,1,4,0,7.5764384,7.5764384,0,0,0,0,0,0,0,27,0,0,0,0,0,34.71,42.42,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,585,753468.56,0,7475.3892,0,1476.4561,0,1480.3467 +7397,9025,16100,16103,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.8698406,8.7699776,0,16,0,-50.45517,0,2,1,2021,10,0,42,41,1,0,0,19.538258,19.538258,.05,.05,0,0,0,0,0,2,1,1,0,5.9819708,0,56.47,59.4,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16101,-9,16103,16100,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1868,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16102,-9,16103,16100,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.138,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16103,16100,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.0588236,8.3734255,0,17,0,-11.354692,0,3,2,2021,7,0,25,23,1,0,0,18.249029,18.249029,0,0,0,0,0,0,0,2,1,1,0,6.9771023,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,8,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7398,9026,16104,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1035.2773,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,-9,-9,1.666666666666667,1,1,0,1,8,5,1,1,180,4395.6182,0,0,0,-1367.4353,1452.9495,773.37164 +7399,9027,16105,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.90382,8.6014433,0,0,0,-980.89893,0,2,2,2021,12,0,30,30,1,0,0,33.297489,33.297489,.05,.05,0,0,0,0,0,0,0,0,0,8.9976234,0,65.06,41.58,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,354,30479.559,91110.43,111427.41,85634.664,7817.9565,0,5481.0278 +7400,9028,16106,-9,16107,16108,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.16266,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7400,9028,16107,16108,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.5635357,8.5136347,0,6,-3,-29.285841,0,-9,-9,2021,8,0,40,40,1,0,0,15.494257,15.494257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,49.86,55.31,8.333333333333334,1,1,0,0,6,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7400,9028,16108,16107,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.1326437,9.4489012,0,6,3,113.63326,0,2,2,2021,11,2,38,40,1,2,0,23.79093,23.79093,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,51.73,58.82,8.333333333333334,1,1,0,0,7,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7401,9029,16109,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-899.4151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61532843,0,54.73,38.17,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,282,-20906.309,0,0,0,2329.9275,0,545.48724 +7402,9030,16110,-9,16111,16112,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-936.53308,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16111,16112,-9,-9,1,0,35,0,2,0,1,1,0,0,4,0,0,0,2,-2,-56.675846,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1379614,0,33.49,64.26000000000001,34.79,58.34,6.666666666666667,1,1,0,0,9,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16112,16111,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.4880848,8.4539175,0,2,2,-87.258682,0,-9,-9,2021,12,0,43,38,1,0,0,12.70111,12.70111,.05,.05,0,0,0,0,0,2,1,1,0,0,0,34.79,58.34,33.49,64.26000000000001,8.333333333333334,1,1,0,0,10,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16113,-9,16111,16112,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.89868,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7403,9031,16114,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5858383,6.3578868,0,0,-1023.601,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3518796,6.3038664,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,768,441953.03,289093.66,236240.69,0,0,0,361.49606 +7404,9032,16115,16116,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.7833509,8.2053375,0,41,-3,-38.950745,0,3,3,2021,12,0,25,25,1,0,0,11.428738,11.428738,.05,.05,0,0,0,0,0,0,0,0,0,.29754746,0,54.74,57.22,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,452,845372.44,245263.05,351094.06,0,0,-762.53314,3423.7651 +7404,9032,16116,16115,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.6506243,8.726737,0,12,3,-36.657413,0,-9,-9,2021,8,0,50,40,1,0,0,13.269341,13.269341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.74,57.22,8.333333333333334,1,1,0,0,13,9,5,1,452,845372.44,245263.05,351094.06,0,0,-762.53314,3423.7651 +7404,9033,16117,-9,16115,16116,1,0,31,0,0,0,2,2,-9,0,3,7.8028703,7.7520771,0,0,0,-1004.3281,0,2,2,2021,12,2,41,40,1,2,1,6.9422407,6.9422407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,9,3,1,490,90250.039,-29842.912,0,0,0,0,1351.2811 +7405,9034,16118,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0642405,8.1129293,0,0,0,-1032.7538,0,1,2,2021,12,1,38,38,1,1,1,8.5715141,8.5715141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.76,57.81,-9,-9,8.333333333333334,1,1,0,0,3,9,4,0,987,-69950.25,-66228.07,0,0,0,0,1324.743 +7405,9035,16119,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.6677,0,1,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0907041,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,9,1,0,1971,230486.03,0,0,0,0,0,-253.81404 +7406,9036,16120,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,8.1883917,8.1716671,0,0,-1154.4668,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7193527,7.7637506,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1535,335895.81,109071.05,105414.38,0,0,0,1700.2227 +7407,9037,16121,16122,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,6.3437028,6.2017536,0,1,-4,-98.143303,-9,-9,-9,2021,12,0,12,0,1,0,0,5.8095021,5.8095021,0,0,0,0,0,0,0,0,0,0,0,1.6114279,0,32.61,51.57,54.1,59.11,3.333333333333333,1,1,0,0,0,12,4,1,570,184260.83,166.83398,145650.84,82062.094,0,557.82471,4087.5022 +7407,9037,16122,16121,-9,-9,1,1,31,0,0,0,1,1,1,0,5,8.9979477,8.5374594,0,1,4,-94.975166,-9,1,1,2021,5,0,48,0,1,0,0,12.439248,12.439248,.05,.05,0,0,0,0,0,0,0,0,0,8.4472742,0,54.1,59.11,32.61,51.57,8.333333333333334,1,1,0,0,3,12,4,1,570,184260.83,166.83398,145650.84,82062.094,0,557.82471,4087.5022 +7407,9038,16123,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-1218.9039,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.87,64.32000000000001,-9,-9,5,1,1,0,0,0,12,1,1,563,-135289.53,0,0,0,0,0,0 +7408,9039,16124,16125,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,0,0,0,1,-10,0,-9,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,37.25,57.25,62.4,25.39,3.333333333333333,4,2,1,1,5,9,1,0,835,44278.234,80791.211,0,0,0,0,221.00832 +7408,9039,16125,16124,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,0,0,0,1,10,0,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,62.4,25.39,37.25,57.25,5,1,1,1,1,0,9,1,0,835,44278.234,80791.211,0,0,0,0,221.00832 +7409,9040,16126,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.9341893,6.9617739,0,0,-1031.1672,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9817283,6.7782426,58.32,50.22,-9,-9,10,1,1,0,0,0,2,2,1,1056,653333.44,470078.59,97424.25,0,0,0,508.84845 +7410,9041,16127,-9,16128,16129,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.75208,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7410,9041,16128,16129,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.9940925,8.1240511,0,4,2,73.420181,0,-9,-9,2021,11,1,30,31,1,1,0,19.404636,19.404636,0,0,0,0,0,0,0,2,1,1,0,0,0,55.2,43.52,33.55,62.9,8.333333333333334,1,1,0,0,4,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7410,9041,16129,16128,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.9985886,9.0445795,0,4,-2,-59.051571,0,2,2,2021,18,8,37,38,1,8,0,21.403027,21.403027,.05,.05,0,0,0,0,0,0,1,1,0,2.3312514,0,33.55,62.9,55.2,43.52,8.333333333333334,1,1,0,0,8,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7411,9042,16130,-9,16132,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.47443,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7411,9042,16131,-9,16132,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6018,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7411,9042,16132,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.0324106,7.7066669,0,0,0,-1054.3882,0,2,2,2021,15,3,29,35,1,3,0,13.223505,13.223505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.09,51.81,-9,-9,6.666666666666667,1,1,0,0,13,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7412,9043,16133,16134,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,48,-2,-103.89658,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.135653,0,48.87,58.55,55.76,44.76,8.333333333333334,1,1,0,0,9,2,2,1,590,350483.63,124973.91,167436.11,0,0,0,2087.8069 +7412,9043,16134,16133,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.2962666,7.4733768,48,2,30.680273,0,3,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1938252,7.0189848,55.76,44.76,48.87,58.55,8.333333333333334,1,1,0,0,0,2,2,1,590,350483.63,124973.91,167436.11,0,0,0,2087.8069 +7413,9044,16135,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.1005201,7.9056292,0,0,0,-956.44141,0,-9,-9,2021,6,0,40,40,1,0,0,10.88436,10.88436,0,0,0,0,0,0,0,0,1,1,0,0,0,51.31,49.39,-9,-9,8.333333333333334,1,1,0,0,6,11,4,1,591,92262.445,0,0,0,0,0,788.03979 +7414,9045,16136,-9,16137,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.75977,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7414,9045,16137,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.9388185,8.1392431,0,0,0,-1056.3733,0,2,2,2021,6,0,40,37,1,0,0,7.4630666,7.4630666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,1,8,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7414,9045,16138,-9,16137,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-914.1535,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7415,9046,16139,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.1417675,8.0903654,0,0,-1003.4868,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8580279,8.0780544,54.04,33.04,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,447,546736.31,401150.31,191711.08,0,654.82898,0,1828.6968 +7416,9047,16140,16141,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.9137135,9.2084866,0,9,0,-47.297997,0,-9,-9,2021,7,0,43,43,1,0,0,19.341423,19.341423,.05,.05,0,0,0,0,0,0,0,0,0,8.7004147,0,57.92,51.82,60.12,54.8,8.333333333333334,2,3,0,0,5,8,5,1,1616,1501741.4,1280996.5,678450.31,460565.06,0,0,8411.2051 +7416,9047,16141,16140,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.4978895,9.0049047,0,14,0,-33.340267,0,2,2,2021,8,0,42,45,1,0,0,34.084118,34.084118,.05,.05,0,0,0,0,0,0,0,0,0,4.9288988,0,60.12,54.8,57.92,51.82,8.333333333333334,2,3,0,0,7,8,5,1,1616,1501741.4,1280996.5,678450.31,460565.06,0,0,8411.2051 +7417,9048,16142,16143,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6386175,7.9349475,0,40,-3,27.80492,0,3,3,2021,23,11,35,30,1,11,0,9.1018286,9.1018286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.8,45.51,50,49,6.666666666666667,1,1,0,0,8,9,4,1,494,518869.28,306708.41,183967.88,0,0,0,2610.5889 +7417,9048,16143,16142,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.7495599,8.3691263,5.5141459,40,3,15.357996,0,3,3,2021,10,0,40,45,1,1,0,9.2009325,9.2009325,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5546041,50,49,33.8,45.51,7,1,1,0,0,1,9,4,1,494,518869.28,306708.41,183967.88,0,0,0,2610.5889 +7418,9049,16144,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.435039,6.5784774,0,0,-944.81824,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2779217,6.4584851,47.79,53.79,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2489,253676.08,-99780.328,0,0,0,0,1108.0339 +7419,9050,16145,-9,16147,16146,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.26447,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,2,3,-9,0,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9050,16146,16147,-9,-9,1,1,54,0,1,0,3,3,-9,0,2,0,0,0,34,4,0,0,2,1,2021,24,12,0,0,3,12,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,36.52,22.6,51,54,1.666666666666667,2,3,1,1,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9050,16147,16146,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,34,-4,0,0,2,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51,54,36.52,22.6,8,2,3,0,1,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9051,16148,-9,16147,16146,1,0,26,0,1,0,2,2,-9,0,4,8.3955393,8.3981295,0,0,0,-849.8136,0,1,2,2021,11,0,43,43,1,2,1,9.0667782,9.0667782,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,1,3,8,4,0,1005,145340.08,0,0,0,-846.255,0,1185.5355 +7419,9052,16149,-9,16147,16146,1,1,25,0,1,0,2,2,1,0,3,8.1575718,8.2985125,0,0,0,-1036.579,-9,2,2,2021,12,0,50,0,1,0,1,10.785395,10.785395,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,2,3,0,0,4,8,4,0,1109,348440.78,0,386574.88,98171.289,0,0,2101.8225 +7420,9053,16150,16151,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.8188047,9.0967512,7.5548611,6,-2,171.03909,-9,-9,-9,2021,8,0,45,0,1,0,0,12.847249,12.847249,0,0,0,0,0,0,0,0,1,1,0,7.2421508,7.9831634,56,52,48.25,45.62,8,1,1,0,0,1,9,5,1,1208.5,823196,-3849.7188,453609.13,0,0,9026.5371,5111.2002 +7420,9053,16151,16150,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.3729177,4.1711593,45,2,43.767685,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79373646,4.4141526,48.25,45.62,56,52,8.333333333333334,1,1,0,0,0,9,5,1,1208.5,823196,-3849.7188,453609.13,0,0,9026.5371,5111.2002 +7420,9054,16152,-9,16151,16150,1,0,33,0,0,0,2,2,-9,0,4,7.5087452,7.4775991,0,0,0,-1082.6382,-9,2,2,2021,11,0,40,0,1,2,1,5.9809752,5.9809752,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,9,3,1,5431,-61640.602,0,0,0,0,0,1544.3578 +7421,9055,16153,16155,-9,-9,1,0,44,0,2,0,2,2,-9,0,1,0,0,0,1,-21,-54.737972,-9,-9,-9,2021,20,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.62,22.93,51,49,5,2,3,0,0,2,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16154,-9,16153,16155,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.99512,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16155,16153,-9,-9,1,1,65,0,2,0,2,2,-9,0,3,6.4892006,6.4804988,0,1,21,51.875031,-9,2,2,2021,10,0,40,0,1,1,0,1.6626393,1.6626393,0,0,0,0,0,0,0,0,1,0,1,7.9350791,0,51,49,30.62,22.93,7,2,3,0,0,1,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16156,-9,16153,16155,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.47247,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16157,-9,16153,16155,1,0,17,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.7487,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,-9,-9,8.333333333333334,2,3,0,1,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9056,16158,-9,16153,16155,1,0,25,0,2,0,3,3,-9,0,4,7.6849251,7.7260337,0,0,0,-1034.8907,-9,2,2,2021,7,0,35,0,1,0,1,8.4466362,8.4466362,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,3,0,1775,70240.672,0,0,0,0,0,463.25195 +7421,9057,16159,-9,16153,16155,1,0,21,0,2,0,2,2,-9,0,4,8.0693874,8.2996292,0,0,0,-963.24969,-9,2,2,2021,11,2,20,0,1,2,1,14.817789,14.817789,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.92,58.3,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,1206,99237.195,73803.031,0,0,0,0,1536.4128 +7421,9058,16160,-9,16153,16155,1,0,19,0,2,0,2,2,-9,0,3,6.6487312,6.9158058,0,0,0,-1143.848,-9,2,2,2021,6,0,15,0,1,0,1,5.6640253,5.6640253,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,2,8,2,0,1020,-15012.438,0,0,0,0,2068.0498,-372.65787 +7422,9059,16161,16162,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8917642,7.7052932,0,4,3,87.078369,0,3,3,2021,11,2,26,23,1,2,0,8.9128113,8.9128113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.73,53.98,55.3,55.6,8.333333333333334,1,1,0,0,11,11,4,1,1536.5,463298.25,181100.06,234773.81,0,18055.16,0,2474.3071 +7422,9059,16162,16161,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3756733,8.3199301,0,4,-3,-43.729866,0,3,2,2021,9,0,44,44,1,0,0,11.428653,11.428653,.05,.05,0,0,0,0,0,0,0,0,0,1.2993594,0,55.3,55.6,55.73,53.98,8.333333333333334,1,1,0,0,11,11,4,1,1536.5,463298.25,181100.06,234773.81,0,18055.16,0,2474.3071 +7422,9060,16163,-9,16161,16162,1,0,22,0,0,0,2,2,-9,0,4,7.7757106,7.6854544,0,0,0,-902.87726,-9,2,2,2021,12,0,39,0,1,0,1,7.3165421,7.3165421,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,345,112544.55,0,0,0,0,1545.8616,637.86829 +7423,9061,16164,16165,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,6.2488604,6.3782301,31,14,64.688576,0,1,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4884448,6.2590809,29.76,48.39,65.54000000000001,33.23,8.333333333333334,1,1,0,0,11,10,3,1,1077,1025326.3,96179.398,454193.06,0,0,0,3690.6587 +7423,9061,16165,16164,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.1219006,7.5911188,31,-14,12.094573,0,3,3,2021,8,1,0,13,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4995918,8.0457287,65.54000000000001,33.23,29.76,48.39,6.666666666666667,4,2,0,0,12,10,3,1,1077,1025326.3,96179.398,454193.06,0,0,0,3690.6587 +7424,9062,16166,-9,-9,-9,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1022.0192,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,10,1,1,1,0,0,5,1,0,297,-54822.762,0,0,0,0,0,676.23285 +7425,9063,16167,16168,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.9458323,6.6270061,8,10,-90.148064,0,-9,-9,2021,9,0,0,40,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.180325,6.5747476,52.24,50.75,40.38,34.42,6.666666666666667,3,4,0,0,7,10,3,1,497.5,853080.75,769819.25,183342.78,9141.2207,4802.4502,0,1795.4474 +7425,9063,16168,16167,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.314146,8.0353003,0,37,-10,40.764858,0,3,3,2021,22,10,37,37,1,10,0,8.2313557,8.2313557,0,0,0,0,0,0,0,2,1,1,0,0,0,40.38,34.42,52.24,50.75,5,3,4,0,0,9,10,3,1,497.5,853080.75,769819.25,183342.78,9141.2207,4802.4502,0,1795.4474 +7426,9064,16169,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4647436,7.2006121,0,0,-998.40906,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1364732,7.6406612,55.26,42.1,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,618,594549.44,105575.94,597780.56,0,0,0,1760.1699 +7427,9065,16170,16171,-9,-9,1,0,51,0,0,0,1,1,-9,1,4,0,0,0,6,-17,-8.0928326,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9298385,0,18.62,65.65000000000001,57.8,50.59,6.666666666666667,1,1,0,0,0,4,2,1,182,607426.75,308712.19,198459.47,0,0,0,1381.176 +7427,9065,16171,16170,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,6.2901597,6.672852,6,17,-83.459282,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0018325,6.4209704,57.8,50.59,18.62,65.65000000000001,8.333333333333334,1,1,0,0,7,4,2,1,182,607426.75,308712.19,198459.47,0,0,0,1381.176 +7428,9066,16172,16173,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,1,1,0,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,57.16,56.15,8,1,1,0,0,0,12,1,0,289.5,69856.742,0,0,0,0,0,1337.3496 +7428,9066,16173,16172,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,41,-1,0,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56,52,8.333333333333334,1,1,0,0,8,12,1,0,289.5,69856.742,0,0,0,0,0,1337.3496 +7429,9067,16174,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.7669549,5.9613366,0,0,-927.52338,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5792346,5.9783273,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,12,5,2,1,1266,323060.97,127098.01,63530.297,0,0,0,1255.3823 +7430,9068,16175,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.3512044,7.321753,0,0,0,-935.29193,0,2,2,2021,21,9,50,58,1,9,0,2.9355931,2.9355931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.44,60.02,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,1096,-172511.03,26387.553,0,0,0,0,895.51508 +7430,9068,16176,-9,16175,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1034.4095,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,5,2,1,1096,-172511.03,26387.553,0,0,0,0,895.51508 +7431,9069,16177,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,2.8037336,2.854254,0,0,-982.75336,0,3,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2.5221348,25.07,32.4,-9,-9,5,1,1,0,0,0,9,2,0,541,21143.168,-6080.9702,0,0,0,0,1601.5934 +7432,9070,16178,16179,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.7937093,6.0336838,45,2,-37.053799,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.02033,6.1930246,60.2,39.82,56.41,15.43,8.333333333333334,1,1,0,0,4,7,2,1,1595,1207903.3,110018.03,989163,0,0,0,2875.8953 +7432,9070,16179,16178,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,45,-2,-3.5711577,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.41,15.43,60.2,39.82,8.333333333333334,1,1,0,0,0,7,2,1,1595,1207903.3,110018.03,989163,0,0,0,2875.8953 +7433,9071,16180,16181,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8131819,9.4975138,8.6184416,31,-10,28.343668,0,3,3,2021,9,0,30,20,1,0,0,30.404926,30.404926,.05,.05,0,0,0,0,0,0,1,1,0,3.3915579,8.5147905,45.49,58.84,57.33,53.46,8.333333333333334,3,4,0,0,9,10,5,1,1513,1820792.6,612167.25,260039.91,0,0,0,6534.9355 +7433,9071,16181,16180,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.5386519,7.8482542,7.2375646,31,10,-33.414349,0,-9,-9,2021,7,0,30,30,1,0,0,6.8212323,6.8212323,.05,.05,0,0,0,0,0,0,1,1,0,6.9828825,6.8929577,57.33,53.46,45.49,58.84,8.333333333333334,1,1,0,0,9,10,5,1,1513,1820792.6,612167.25,260039.91,0,0,0,6534.9355 +7434,9072,16182,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,7.7497053,7.7171597,0,0,0,-1050.6105,0,3,3,2021,17,5,38,0,1,5,0,8.4042635,8.4042635,0,0,0,0,0,0,0,0,0,0,0,0,0,37.44,35.75,-9,-9,8.333333333333334,2,3,0,0,5,8,3,0,148,269037.06,96935.82,404709.5,42474.207,0,6879.9497,1092.6273 +7435,9073,16183,-9,16184,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.6555,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,547.5,43291.586,73356.227,0,0,0,0,836.65405 +7435,9073,16184,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,1,7.1903496,7.0505323,4.9425559,0,0,-1105.5566,0,2,2,2021,18,6,21,27,1,6,0,5.6756744,5.6756744,0,0,0,0,0,0,0,105,1,1,0,4.9116054,0,31.86,35.73,-9,-9,5,1,1,0,0,7,13,2,0,547.5,43291.586,73356.227,0,0,0,0,836.65405 +7435,9074,16185,-9,16184,-9,1,1,22,0,1,0,2,2,-9,1,3,6.998251,6.8719759,0,0,0,-1039.9978,0,2,-9,2021,13,3,40,16,1,3,1,3.1435702,3.1435702,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,43.4,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,300,0,0,0,0,0,0,891.42865 +7436,9075,16186,16187,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.6001668,7.7964249,41,-2,59.008949,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9067428,7.2667928,57.16,56.15,56.77,52.22,10,1,1,0,0,0,10,4,1,171.5,1967133,1080118.3,374790.38,0,0,0,4003.7898 +7436,9075,16187,16186,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.8647361,8.7449923,41,2,-11.095589,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6491623,0,0,1,1,0,3.3704166,8.1451712,56.77,52.22,57.16,56.15,10,1,1,0,0,0,10,4,1,171.5,1967133,1080118.3,374790.38,0,0,0,4003.7898 +7437,9076,16188,16189,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.5770817,8.8568201,0,30,-2,-41.082371,0,2,3,2021,7,0,43,41,1,0,0,19.610771,19.610771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,55.19,54.26,8.333333333333334,1,1,0,0,12,1,5,1,619.5,1160139.3,95226.148,688950.38,195877.61,0,0,5727.9531 +7437,9076,16189,16188,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0691147,9.0496016,0,12,2,-31.672754,0,-9,-9,2021,8,1,48,47,1,1,0,24.1369,24.1369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,51.73,58.82,5,1,1,0,0,13,1,5,1,619.5,1160139.3,95226.148,688950.38,195877.61,0,0,5727.9531 +7438,9077,16190,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.7435775,7.4612656,0,0,0,-1017.1751,0,3,2,2021,6,0,16,16,1,0,0,13.965623,13.965623,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,43.47,-9,-9,8.333333333333334,3,4,0,0,2,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7438,9077,16191,-9,16190,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5715,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7438,9077,16192,-9,16190,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.07208,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7439,9078,16193,16196,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.8788357,8.7857285,0,26,-2,89.78183,0,2,-9,2021,9,0,37,37,1,0,0,24.821672,24.821672,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.44,51.82,8.333333333333334,4,2,0,0,8,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16194,-9,16193,16196,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1165.595,-9,1,1,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,59.47,-9,-9,10,4,2,0,0,3,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16195,-9,16193,16196,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.781,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16196,16193,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.2771339,9.0827112,0,19,2,-71.757179,0,2,2,2021,7,1,60,60,1,1,0,20.161034,20.161034,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.44,51.82,52.23,55.6,6.666666666666667,4,2,0,0,7,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7440,9079,16197,16199,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.9672937,8.9928331,0,23,0,109.74558,0,2,-9,2021,12,1,44,40,1,1,0,17.64645,17.64645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.51,47.53,62.49,55.09,6.666666666666667,1,1,0,0,12,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9079,16198,-9,16197,16199,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-966.25629,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.404654,0,57.06,57.76,-9,-9,10,1,1,1,0,0,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9079,16199,16197,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.4065924,8.4197683,0,23,0,125.95567,0,3,2,2021,6,0,38,39,1,0,0,12.999376,12.999376,.05,.05,0,0,0,0,0,0,1,1,0,4.0490961,0,62.49,55.09,37.51,47.53,8.333333333333334,1,1,0,0,12,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9080,16200,-9,16197,16199,1,0,19,0,1,0,2,2,-9,0,2,8.127306,7.8529882,0,0,0,-989.48633,-9,2,2,2021,12,1,45,0,1,1,1,8.3981924,8.3981924,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.17,51.35,-9,-9,5,1,1,0,0,1,8,4,1,1765,-40873.922,-82642.023,0,0,7617.9385,0,1408.478 +7441,9081,16201,16202,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.7341781,7.7032666,0,1,-5,-65.326599,-9,3,3,2021,14,4,38,0,1,4,0,7.3263659,7.3263659,0,0,0,0,0,0,0,2,1,1,0,0,0,50.15,48.44,52.46,28.38,8.333333333333334,1,1,0,0,8,5,3,1,300,388336.38,47523.375,242914.75,0,0,0,1809.9199 +7441,9081,16202,16201,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.7757792,6.3938327,1,5,-24.428389,-9,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.387785,6.5394936,52.46,28.38,50.15,48.44,8.333333333333334,1,1,0,0,9,5,3,1,300,388336.38,47523.375,242914.75,0,0,0,1809.9199 +7442,9082,16203,16204,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.8968987,7.012013,0,1,-1,100.28365,0,3,-9,2021,6,0,23,0,1,0,0,5.2598581,5.2598581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,52,55,10,1,1,0,0,1,11,3,0,497,45290.48,45853.375,0,0,2819.5029,1199.123,1737.7222 +7442,9082,16204,16203,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.2005167,7.8515048,0,1,1,-30.491341,-9,-9,-9,2021,9,0,40,0,1,1,0,6.7939982,6.7939982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,56.19,46.16,8,4,1,0,0,1,11,3,0,497,45290.48,45853.375,0,0,2819.5029,1199.123,1737.7222 +7443,9083,16205,16206,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4519138,8.8277245,0,5,2,4.3773518,0,2,2,2021,11,0,38,37,1,0,0,18.094925,18.094925,.05,.05,0,0,0,0,0,0,0,0,0,6.9154639,0,51.24,58.84,49.04,55.86,1.666666666666667,1,1,0,0,14,13,5,1,344.5,549152.88,63806.93,332510.09,0,0,0,6321.7544 +7443,9083,16206,16205,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.6475887,8.889061,0,5,-2,-106.60882,0,-9,-9,2021,9,0,40,0,1,0,0,25.072992,25.072992,.05,.05,0,0,0,0,0,0,0,0,0,7.4588428,0,49.04,55.86,51.24,58.84,8.333333333333334,1,1,0,0,13,13,5,1,344.5,549152.88,63806.93,332510.09,0,0,0,6321.7544 +7443,9084,16207,-9,16205,16206,1,0,24,0,0,0,1,1,-9,0,4,7.7810783,7.6772656,0,0,0,-977.065,0,2,1,2021,10,2,37,34,1,2,1,8.0860748,8.0860748,0,0,0,0,0,0,0,0,0,0,0,0,0,33.24,65.53,-9,-9,10,1,1,0,0,5,13,3,1,750,122063.74,0,0,0,0,0,627.28613 +7444,9085,16208,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.8722763,8.7247944,0,0,0,-934.51636,0,2,2,2021,6,0,40,42,1,0,0,19.541006,19.541006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,833,625432,500317.19,142713.91,68586.109,0,0,2031.1252 +7445,9086,16209,16210,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,7.9425302,8.1718855,0,7,0,-58.780407,0,3,3,2021,10,0,40,40,1,0,0,9.0653515,9.0653515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.24,46.7,6.666666666666667,1,1,0,0,8,8,4,0,788,402341.69,302813.56,205300.11,61209.188,16973.543,0,2771.1855 +7445,9086,16210,16209,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.2228308,8.0427389,0,7,0,71.339897,0,2,3,2021,10,0,48,48,1,0,0,7.0880213,7.0880213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.24,46.7,57.33,53.46,8.333333333333334,1,1,0,0,8,8,4,0,788,402341.69,302813.56,205300.11,61209.188,16973.543,0,2771.1855 +7445,9087,16211,-9,16210,16209,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1070.3719,0,-9,3,2021,8,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,1,8,1,0,701,-2878.3069,0,0,0,0,0,0 +7446,9088,16212,-9,-9,-9,1,1,28,0,0,1,1,0,0,0,3,0,0,0,0,0,-1071.4303,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2092595,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,9,1,0,298,-228520.77,0,0,0,0,0,745.16724 +7447,9089,16213,-9,16214,16215,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.9442,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7447,9089,16214,16215,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,5.1047816,4.8337059,0,7,2,54.582104,0,2,3,2021,12,0,15,15,1,0,0,.88646919,.88646919,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,45.82,45.3,52.04,6.666666666666667,1,1,0,0,4,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7447,9089,16215,16214,-9,-9,1,1,27,0,1,0,2,2,-9,0,3,8.0101147,8.2514973,0,7,-2,-119.83379,0,-9,-9,2021,11,0,42,43,1,0,0,7.5869336,7.5869336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.3,52.04,47.19,45.82,8.333333333333334,1,1,0,0,6,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7448,9090,16216,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.5092373,6.0745502,0,0,-1015.8915,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,9.9140434,0,0,1,1,0,0,6.5753098,51,35,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,227,143028.91,121678.06,0,0,0,0,1103.5348 +7449,9091,16217,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1481962,8.0341825,0,0,0,-1051.2562,0,1,2,2021,11,0,45,60,1,0,0,9.4508209,9.4508209,.05,.05,0,0,0,0,0,0,0,0,0,2.7705879,0,48.28,60.18,-9,-9,5,1,1,0,0,9,9,4,1,869,-92403.992,8344.3525,0,0,0,0,419.89597 +7450,9092,16218,16219,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8716965,8.8926668,0,8,12,135.93005,0,3,3,2021,6,1,60,55,1,1,0,11.911701,11.911701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,38.39,48.48,10,1,1,0,0,9,6,5,1,707.5,378328.88,189979.25,88686.984,0,0,0,2964.5952 +7450,9092,16219,16218,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6760545,7.7294555,0,8,-12,-58.79858,0,3,3,2021,19,7,37,0,1,7,0,7.6797142,7.6797142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.39,48.48,61.28,48.88,8.333333333333334,1,1,0,0,8,6,5,1,707.5,378328.88,189979.25,88686.984,0,0,0,2964.5952 +7450,9093,16220,-9,16219,16218,1,1,20,0,0,0,2,2,-9,0,5,7.2421699,7.3892713,0,0,0,-943.24756,0,2,2,2021,7,0,32,27,1,0,1,5.2838454,5.2838454,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,234,6522.8809,0,0,0,7018.0811,0,997.36969 +7450,9094,16221,-9,16219,16218,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1044.2098,-9,2,2,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.64,59.49,-9,-9,6.666666666666667,1,1,0,0,3,6,1,1,2914,0,0,0,0,0,0,0 +7451,9095,16222,16223,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,45,5,-105.32597,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2404449,0,53.04,40.76,57.57,49.69,8.333333333333334,1,1,0,0,0,1,2,1,1534,114538.44,29755.893,113202.66,0,0,0,1614.7468 +7451,9095,16223,16222,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.7109756,6.0444689,12,-5,-15.219726,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1705546,5.7273612,57.57,49.69,53.04,40.76,10,1,1,0,0,12,1,2,1,1534,114538.44,29755.893,113202.66,0,0,0,1614.7468 +7452,9096,16224,16225,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.1131043,6.1378131,49,-2,83.980713,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6705127,5.8256555,57.16,56.15,57.16,56.15,10,1,1,0,0,13,10,5,1,578,1746842.3,1148263.8,276793.03,0,12815.809,0,5204.082 +7452,9096,16225,16224,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,8.6828356,8.8959808,7.2343955,49,2,-25.382484,0,3,2,2021,6,0,20,20,1,0,0,35.425289,35.425289,0,0,0,1,0,0,0,0,1,1,0,7.450223,7.148684,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,578,1746842.3,1148263.8,276793.03,0,12815.809,0,5204.082 +7453,9097,16226,16227,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.028574,8.0120583,0,6,-14,69.657249,0,-9,-9,2021,3,0,38,40,1,0,0,7.9973149,7.9973149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.3,52.91,10,2,3,0,0,9,8,4,1,838.5,617771.38,421149.94,256330.25,72735.289,996.3277,0,2710.0337 +7453,9097,16227,16226,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.1834049,8.2561598,0,27,14,3.2905955,0,3,3,2021,6,0,42,40,1,0,0,8.913517,8.913517,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.3,52.91,60.12,54.8,10,2,3,0,0,9,8,4,1,838.5,617771.38,421149.94,256330.25,72735.289,996.3277,0,2710.0337 +7453,9098,16228,-9,16226,16227,1,0,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1041.2267,-9,2,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.35,57.84,-9,-9,1.666666666666667,2,3,0,0,1,8,1,1,195,-76134.375,0,0,0,0,0,57.365948 +7453,9099,16229,-9,16226,16227,1,1,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-1079.0082,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,164,-161166.59,0,0,0,0,0,-58.802563 +7454,9100,16230,16231,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,6.3274779,6.4743099,0,23,1,-91.205627,0,3,-9,2021,11,2,6,12,1,2,0,10.976051,10.976051,0,0,0,0,0,0,0,2,1,1,0,1.9967194,0,60.6,46.43,53.56,49.66,8.333333333333334,1,1,0,0,5,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7454,9100,16231,16230,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.190012,8.5416231,0,23,-1,86.017151,0,2,2,2021,5,0,47,47,1,0,0,11.389394,11.389394,0,0,.05,0,0,0,0,2,1,1,0,1.1658012,0,53.56,49.66,60.6,46.43,8.333333333333334,1,1,0,0,5,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7454,9100,16232,-9,16230,16231,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.37427,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7455,9101,16233,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-924.36212,-9,1,1,2021,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,864,32217.477,0,0,0,0,0,0 +7456,9102,16234,16235,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.6035357,8.858386,8,-1,.58890992,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0840101,8.2139997,48.99,49.19,59.46,46.99,8.333333333333334,1,1,0,0,5,4,5,1,769,1100151.3,997254.94,123474.23,0,0,0,5180.7817 +7456,9102,16235,16234,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5170116,7.7036171,8,1,-22.786524,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8754973,7.1599865,59.46,46.99,48.99,49.19,8.333333333333334,1,1,0,0,7,4,5,1,769,1100151.3,997254.94,123474.23,0,0,0,5180.7817 +7457,9103,16236,16238,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2227554,8.1797056,0,25,9,83.40239,0,-9,2,2021,12,0,46,43,1,0,0,8.6556454,8.6556454,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.88,47.84,30.94,61.65,3.333333333333333,1,1,0,0,9,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16237,-9,16238,16236,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1045.3824,-9,2,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16238,16236,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.8181777,7.9481473,0,5,0,119.86273,0,-9,-9,2021,17,5,38,38,1,5,0,9.0071268,9.0071268,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,48.88,47.84,3.333333333333333,1,1,0,1,9,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16239,-9,16238,16236,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.93494,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9104,16240,-9,16238,16236,1,1,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-951.79456,-9,2,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,1205,-22348.605,0,0,0,0,0,1019.1471 +7458,9105,16241,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7950668,8.5282869,0,0,0,-1028.1997,0,3,3,2021,10,0,40,40,1,0,0,12.248711,12.248711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.97,59.14,-9,-9,5,1,1,0,0,11,13,5,1,880,694487,752342.56,227365.45,0,0,0,1777.2927 +7458,9106,16242,-9,16241,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-994.69135,-9,1,-9,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,10,1,1,0,0,0,13,1,1,1636,-103798.7,0,0,0,0,0,0 +7459,9107,16243,16244,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.0966043,5.9998951,58,-3,-2.4750514,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7359538,5.7612753,57.09,46.7,61.43,48.88,8.333333333333334,1,1,0,0,5,2,3,1,215,1362999.3,724350.44,274127.78,0,0,0,3296.1392 +7459,9107,16244,16243,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.9473305,8.0111303,58,3,-138.03886,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3588219,8.3092184,61.43,48.88,57.09,46.7,10,1,1,0,0,7,2,3,1,215,1362999.3,724350.44,274127.78,0,0,0,3296.1392 +7460,9108,16245,16246,-9,-9,1,1,43,0,0,0,3,3,-9,0,4,8.3845243,8.1833801,0,2,-6,42.399143,0,-9,-9,2021,10,0,30,30,1,0,0,16.107687,16.107687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.37,55.06,36.73,34.91,6.666666666666667,1,1,0,0,10,13,4,0,802,85715.891,893.92969,0,0,0,506.10416,1062.9993 +7460,9108,16246,16245,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,0,0,0,2,6,126.19032,0,2,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.73,34.91,50.37,55.06,3.333333333333333,1,1,1,0,1,13,4,0,802,85715.891,893.92969,0,0,0,506.10416,1062.9993 +7460,9109,16247,-9,16246,16245,1,0,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1043.2013,0,3,3,2021,8,0,0,21,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,1,0,1,13,1,0,1562,-85252.656,0,0,0,674.25562,0,565.52155 +7461,9110,16248,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.8806434,8.1823635,6.2954359,0,0,-1015.4751,-9,3,-9,2021,6,1,24,0,1,1,0,15.092561,15.092561,.05,.05,0,0,0,0,0,0,1,1,0,5.8234596,0,47.24,48.72,-9,-9,8.333333333333334,3,4,0,0,3,11,4,0,670,52209.605,65728.945,0,0,13124.847,0,1904.9271 +7462,9111,16249,16250,-9,-9,1,0,78,0,0,0,1,1,-9,0,1,0,8.0118999,7.908216,9,-4,64.932434,-9,2,2,2021,18,0,0,0,4,5,0,0,0,0,0,0,1,2.9175422,0,21.625109,0,1,1,0,7.0062094,8.2446032,40,23,57,51,5,1,1,0,0,0,12,3,1,413,657541.88,427153.75,201010.13,0,1866.845,0,3353.5581 +7462,9111,16250,16249,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.2504144,6.3633156,9,4,-42.739693,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.6305522,0,20.752598,120,1,1,0,5.5880008,6.2907238,57,51,40,23,8.333333333333334,1,1,0,0,0,12,3,1,413,657541.88,427153.75,201010.13,0,1866.845,0,3353.5581 +7463,9112,16251,16252,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-21,78.969322,0,3,2,2021,20,8,0,32,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.6829614,0,32.97,32.23,47.38,37.76,1.666666666666667,1,1,0,0,6,4,2,1,989,276183.34,127313.76,157642.53,0,0,0,699.45728 +7463,9112,16252,16251,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2187347,5.6916451,30,21,58.764614,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,3.5139961,0,0,1,1,0,5.2688775,6.21907,47.38,37.76,32.97,32.23,8.333333333333334,1,1,0,0,0,4,2,1,989,276183.34,127313.76,157642.53,0,0,0,699.45728 +7464,9113,16253,-9,16254,16255,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-857.12573,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7464,9113,16254,16255,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.6497812,8.9289322,0,1,-3,-18.483389,-9,2,2,2021,8,0,35,0,1,0,0,24.018862,24.018862,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.28,48.88,57.16,56.15,8.333333333333334,2,3,0,0,7,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7464,9113,16255,16254,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.4015455,8.530673,0,1,3,-16.944674,-9,2,2,2021,6,0,39,0,1,0,0,12.310047,12.310047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.28,48.88,0,2,3,0,0,8,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7465,9114,16256,16257,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.0111427,8.1576328,21,4,35.705013,0,3,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.5632081,8.1875162,57.16,56.15,39.63,51.79,10,1,1,0,0,9,7,4,1,306.5,241436.16,371528.19,0,0,0,4959.4268,2536.7632 +7465,9114,16257,16256,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.005549,6.8892608,21,-4,-63.35183,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0559793,39.63,51.79,57.16,56.15,1.666666666666667,1,1,0,0,13,7,4,1,306.5,241436.16,371528.19,0,0,0,4959.4268,2536.7632 +7466,9115,16258,16259,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,6.9769769,6.7364078,25,1,10.945439,0,3,2,2021,11,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9346633,57.33,53.46,50.51,48.51,8.333333333333334,1,1,0,0,14,4,2,1,332,752371.5,501876.75,163752.16,0,0,481.37079,1352.9824 +7466,9115,16259,16258,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.0625896,5.9740815,24,-1,3.3986723,0,1,1,2021,12,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7478094,5.7252159,50.51,48.51,57.33,53.46,8.333333333333334,1,1,0,0,14,4,2,1,332,752371.5,501876.75,163752.16,0,0,481.37079,1352.9824 +7467,9116,16260,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.1357765,8.5183439,0,0,0,-1003.6689,0,-9,-9,2021,13,4,8,40,1,4,0,37.337341,37.337341,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,9,7,4,1,110,99961.734,29116.83,0,0,0,0,1185.7772 +7468,9117,16261,-9,16262,16263,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.5663,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16262,16263,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,0,0,0,10,0,0,0,2,1,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3538463,0,16.89,46.92,51.14,60.45,3.333333333333333,1,1,0,0,8,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16263,16262,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,0,0,0,10,0,0,0,2,2,2021,11,0,0,72,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0191617,0,51.14,60.45,16.89,46.92,6.666666666666667,1,1,1,0,11,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16264,-9,16262,16263,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1079.8629,-9,1,2,2021,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,64.56,-9,-9,0,1,1,0,0,0,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7469,9118,16265,16266,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,41.21,51.34,27.23,23.84,6.666666666666667,1,1,0,0,0,2,1,1,762.5,198964.52,-16976.684,204640.86,0,0,0,286.54114 +7469,9118,16266,16265,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,6,-1,0,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,41.938679,0,0,1,1,0,0,0,27.23,23.84,41.21,51.34,5,1,1,0,0,0,2,1,1,762.5,198964.52,-16976.684,204640.86,0,0,0,286.54114 +7470,9119,16267,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.4551082,7.7303538,5.3319626,0,0,-948.73975,0,3,-9,2021,12,2,30,35,1,2,0,5.4822936,5.4822936,.05,.05,0,0,0,0,0,7,1,1,0,5.0942168,0,38.01,50.19,-9,-9,3.333333333333333,4,2,0,1,11,4,3,0,379,13937.249,100464.89,0,0,0,74.84156,1303.9343 +7471,9120,16268,16269,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,0,0,0,8,-5,15.086875,0,3,2,2021,13,3,0,27,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.3305571,0,41.29,56.37,48.87,58.55,6.666666666666667,1,1,1,0,7,5,4,1,682,-39587.652,-39512.059,0,0,17503.373,7541.0195,1993.7776 +7471,9120,16269,16268,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4170198,8.4015265,0,8,5,10.149155,0,3,3,2021,11,0,36,38,1,0,0,16.497599,16.497599,.05,.05,0,0,0,0,0,0,0,0,0,3.1859202,0,48.87,58.55,41.29,56.37,8.333333333333334,1,1,0,0,10,5,4,1,682,-39587.652,-39512.059,0,0,17503.373,7541.0195,1993.7776 +7472,9121,16270,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1697016,6.0430126,0,0,-1038.327,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.710093,63.1,37.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,473,26217.924,12118.691,50421.422,0,0,0,1302.4075 +7473,9122,16271,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.676075,5.6635976,0,0,-1033.1213,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3742106,5.6334639,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1983,156004.2,-43925.914,82357.992,0,0,0,1053.7754 +7474,9123,16272,16273,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,7.2806745,7.13943,0,41,-6,6.093482,0,3,2,2021,17,5,22,22,1,5,0,6.296989,6.296989,0,0,0,0,0,0,0,7,1,1,0,0,0,32.32,32.77,41.34,56.62,5,1,1,0,0,6,11,3,1,518.5,284587.13,242772.41,151697.34,0,0,0,1235.5841 +7474,9123,16273,16272,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.3741622,6.3545218,41,6,100.13315,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4203205,41.34,56.62,32.32,32.77,8.333333333333334,1,1,0,0,7,11,3,1,518.5,284587.13,242772.41,151697.34,0,0,0,1235.5841 +7474,9124,16274,-9,16272,16273,1,1,35,0,0,0,2,2,-9,0,5,9.4889736,9.8564501,0,0,0,-1047.0774,-9,1,2,2021,7,0,84,0,1,0,1,27.218573,27.218573,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,5,1,1539,130751.88,-21627.855,0,0,15775.17,0,6018.7437 +7475,9125,16275,16280,-9,-9,1,1,37,0,4,0,2,2,-9,1,4,0,0,0,3,4,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,20.33,36.87,8.333333333333334,1,1,1,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16276,-9,-9,16275,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.68304,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16277,-9,16280,-9,1,0,15,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1030.8165,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16278,-9,-9,16275,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1001.942,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16279,-9,-9,16275,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-963.93671,-9,-9,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16280,16275,-9,-9,1,0,33,0,4,0,2,2,-9,1,2,0,0,0,3,-4,0,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.33,36.87,54.79,55.86,3.333333333333333,1,1,0,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7476,9126,16281,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.5419264,7.400147,0,0,-1110.0327,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.7765621,0,22.898594,0,1,1,0,6.2484164,7.5567183,58.45,42.21,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,471,751842,301769.34,707057.25,0,0,0,1389.082 +7477,9127,16282,16283,-9,-9,1,1,36,0,3,0,1,1,-9,0,4,7.0536985,7.3873963,0,10,6,63.782661,0,1,1,2021,9,0,35,40,1,0,0,4.5001025,4.5001025,.05,.05,0,0,0,0,0,0,1,1,0,1.0724242,0,57.16,56.15,48.87,58.55,6.666666666666667,3,4,0,0,9,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16283,16282,-9,-9,1,0,30,0,3,0,1,1,-9,0,4,8.7225971,8.4850626,0,10,-6,20.053028,-9,-9,-9,2021,10,2,42,0,1,2,0,14.313933,14.313933,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,10,1,1,0,0,9,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16284,-9,16283,16282,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.51306,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16285,-9,16283,16282,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.4431,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16286,-9,16283,16282,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-903.00647,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7478,9128,16287,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1030.3528,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,10,1,1,0,0,1,5,1,1,374,-47528.84,0,0,0,0,0,479.87253 +7479,9129,16288,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.7517366,7.5744519,0,0,0,-965.20276,0,2,2,2021,9,0,40,40,1,0,1,7.2923951,7.2923951,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,541,-134437.11,0,0,0,0,0,239.52629 +7480,9130,16289,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.4073105,6.3026457,0,0,-1030.9996,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5493932,56.35,21.87,-9,-9,10,1,1,0,0,0,6,2,0,588,303341.06,-26165.988,177697.94,0,0,0,2033.2902 +7481,9131,16290,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.4063,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.96,56.44,-9,-9,8.333333333333334,1,1,0,0,12,12,1,1,274,462771.13,61391.258,139783.48,0,0,0,0 +7482,9132,16291,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.914825,5.845355,0,0,-943.45514,0,3,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5036583,5.7842479,41,56.99,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,724,294574.16,106600.87,0,0,0,0,395.02606 +7483,9133,16292,-9,16293,-9,1,0,17,1,1,0,2,2,1,0,2,0,5.5442986,5.4105058,0,0,-1047.639,-9,2,-9,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6922727,0,27.83,55.3,-9,-9,5,1,1,0,1,0,9,3,0,2204.5,382757.38,225948.33,367775.47,0,0,0,1773.5078 +7483,9133,16293,-9,-9,-9,1,0,50,1,1,0,2,2,-9,0,5,7.6195917,7.8227201,0,0,0,-982.54193,0,3,3,2021,20,9,27,26,1,9,0,8.3714867,8.3714867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.88,66.73999999999999,-9,-9,3.333333333333333,1,1,0,1,7,9,3,0,2204.5,382757.38,225948.33,367775.47,0,0,0,1773.5078 +7483,9134,16294,-9,16293,-9,1,0,25,1,1,0,2,2,-9,0,4,7.6784797,7.9626179,0,0,0,-1143.5568,0,2,-9,2021,7,0,42,43,1,0,1,7.583436,7.583436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,513,-23849.854,-97328.516,0,0,6103.0903,1632.4159,1654.6591 +7483,9135,16295,-9,16293,-9,1,1,24,1,1,0,2,2,-9,0,5,0,0,0,0,0,-998.56964,0,2,-9,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.059185,0,53.51,60.74,-9,-9,6.666666666666667,1,1,1,0,7,9,2,0,473,-13399.795,0,0,0,0,0,230.57651 +7484,9136,16296,16297,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,8.2564039,8.3339901,0,6,-6,7.6274924,0,2,2,2021,9,0,35,35,1,0,0,11.548284,11.548284,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,59.92,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,226,394456.63,87166.68,314239.25,-3786.0825,0,0,3405.5684 +7484,9136,16297,16296,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,8.4739494,8.4303379,0,6,6,-118.6318,0,2,2,2021,7,0,40,40,1,0,0,14.438642,14.438642,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.11,59.92,8.333333333333334,1,1,0,0,7,11,4,1,226,394456.63,87166.68,314239.25,-3786.0825,0,0,3405.5684 +7485,9137,16298,16299,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.9877052,7.6896749,0,8,-15,91.756966,0,-9,-9,2021,8,0,40,37,1,0,0,9.4472818,9.4472818,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49.07,57.66,3.333333333333333,3,4,0,0,1,7,4,0,524.5,826360.13,721926.88,422126.63,192892.11,342.03461,16701.137,2564.7612 +7485,9137,16299,16298,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,7.9482198,7.5220504,0,16,15,-34.591667,0,2,2,2021,19,7,60,8,1,7,0,6.2760711,6.2760711,.05,.05,0,0,0,0,0,0,0,0,0,.78635079,0,49.07,57.66,51.77,58.57,3.333333333333333,1,1,0,0,10,7,4,0,524.5,826360.13,721926.88,422126.63,192892.11,342.03461,16701.137,2564.7612 +7486,9138,16300,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,0,0,-721.33752,1,2,2,2021,12,0,0,42,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2304573,0,46.65,55.59,-9,-9,8.333333333333334,1,1,0,0,10,6,2,0,2381,-105517.05,42361.734,0,0,0,0,831.2489 +7487,9139,16301,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-966.67175,0,2,1,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,25.68,-9,-9,1.666666666666667,4,2,0,1,0,8,1,0,968,6280.4746,70845.297,176277.45,2680.3594,16.68326,0,2210.6135 +7488,9140,16302,16303,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0549078,8.3641748,0,9,-4,79.68512,0,2,2,2021,11,2,37,30,1,2,0,13.715351,13.715351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.85,51.26,49.86,55.31,8.333333333333334,1,1,0,0,10,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16303,16302,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.5799789,8.9870768,0,9,4,-95.485855,0,2,1,2021,9,0,38,38,1,0,0,21.880014,21.880014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.85,51.26,8.333333333333334,1,1,0,0,10,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16304,-9,16302,16303,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.1149,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16305,-9,16302,16303,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-873.61859,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7489,9141,16306,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.7021136,7.9774494,0,0,0,-996.76318,0,3,3,2021,8,1,25,0,1,1,0,9.9331408,9.9331408,0,0,0,0,0,0,0,0,1,0,1,6.4509139,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,1,6,8,3,0,370,-31051.309,0,0,0,0,0,1852.0433 +7490,9142,16307,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.7183714,8.4150028,0,0,0,-1094.6075,0,2,2,2021,8,0,40,40,1,0,0,15.43356,15.43356,.05,.05,0,0,0,0,0,7,1,1,0,0,0,67.19,37.81,-9,-9,10,1,1,0,0,12,9,5,1,279,132276.89,-73152.445,0,0,0,0,2064.8848 +7491,9143,16308,16311,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.5062647,8.7004738,0,6,0,115.0805,0,-9,-9,2021,11,0,24,37,1,1,0,24.135927,24.135927,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,38.24,63.73,7,1,1,0,0,1,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16309,-9,16308,16311,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.2656,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16310,-9,16308,16311,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-862.44629,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16311,16308,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.4728498,8.8950424,0,12,0,139.70215,0,2,2,2021,20,8,40,45,1,8,0,17.717907,17.717907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.24,63.73,50,55,6.666666666666667,1,1,0,0,7,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7492,9144,16312,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.3312893,6.5323963,0,0,-1095.7164,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1679723,6.4344354,54.1,59.11,-9,-9,0,1,1,0,0,6,4,2,0,333,285576.81,-3551.5723,0,0,0,0,1024.2864 +7493,9145,16313,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.55994,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,41.24,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,608,42696.957,0,0,0,0,0,218.47639 +7494,9146,16314,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.675621,8.6958494,0,0,0,-974.94513,0,2,2,2021,6,1,44,45,1,1,0,15.873019,15.873019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.62,53.79,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,1322,-16371.078,254728.55,87932.688,0,0,0,2396.8574 +7495,9147,16315,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3692217,8.1414604,0,0,0,-1076.3359,0,-9,-9,2021,14,3,44,40,1,3,0,9.0455151,9.0455151,0,0,.05,0,0,0,0,0,0,0,0,2.1632872,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,476,-107428.64,39828.27,0,0,0,1338.0178,1595.1073 +7496,9148,16316,16317,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.9911561,6.0838108,51,6,-184.64151,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6953678,6.1326227,49.35,59.64,47.89,56.25,3.333333333333333,1,1,0,0,0,5,2,1,2184.5,352959.03,331391.5,180166.42,0,0,0,1458.8735 +7496,9148,16317,16316,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.1175141,5.1642528,51,-6,51.610706,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6911068,5.1881299,47.89,56.25,49.35,59.64,8.333333333333334,1,1,0,0,0,5,2,1,2184.5,352959.03,331391.5,180166.42,0,0,0,1458.8735 +7497,9149,16318,16320,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.1582651,8.3745098,0,15,9,-104.56035,0,2,2,2021,5,0,35,42,1,0,0,9.7130156,9.7130156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7497,9149,16319,-9,16320,16318,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.9402,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7497,9149,16320,16318,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.6161766,7.8027844,0,13,0,34.366928,0,2,3,2021,9,0,21,21,1,0,0,9.0424919,9.0424919,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.99,51.28,6.666666666666667,1,1,0,0,13,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7498,9150,16321,16322,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.2583447,6.4758921,0,7,3,58.042,0,3,3,2021,12,0,11,11,1,0,0,5.5042114,5.5042114,0,0,0,0,0,0,0,27,1,1,0,0,0,47.96,36.6,47.55,33.8,6.666666666666667,1,1,0,0,8,11,2,0,2831.5,311250.25,42411.684,159395,0,1649.8586,0,1573.5757 +7498,9150,16322,16321,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,6.747612,6.8733735,0,7,-3,-11.260024,0,3,-9,2021,6,0,30,0,1,0,0,3.7688069,3.7688069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,33.8,47.96,36.6,6.666666666666667,1,1,0,0,1,11,2,0,2831.5,311250.25,42411.684,159395,0,1649.8586,0,1573.5757 +7498,9151,16323,-9,16321,16322,1,1,39,0,0,0,3,3,-9,1,2,0,0,0,0,0,-960.88116,0,3,2,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.24,56.58,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1064,32169.854,0,0,0,0,0,698.1391 +7499,9152,16324,16325,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.1897249,7.8402028,6,3,140.25882,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0849106,8.1480579,45.04,52.16,70.39,40.52,8.333333333333334,1,1,0,0,0,13,5,1,1085,1041310.3,851188.94,333818.09,128723.49,0,0,5561.8311 +7499,9152,16325,16324,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,8.2453575,8.5781336,6.2039437,6,-3,-44.409237,0,3,3,2021,6,0,42,48,1,0,0,9.2685556,9.2685556,.05,.05,0,0,0,0,0,0,1,1,0,7.6379662,6.6194777,70.39,40.52,45.04,52.16,8.333333333333334,1,1,0,0,7,13,5,1,1085,1041310.3,851188.94,333818.09,128723.49,0,0,5561.8311 +7500,9153,16326,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.7552481,8.6390638,0,0,0,-1011.5981,0,2,2,2021,6,0,45,42,1,0,1,17.964293,17.964293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,11,5,5,1,589,28010.275,121258.56,0,0,0,0,2654.4922 +7501,9154,16327,16328,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.6141872,8.7620573,0,35,0,-88.271194,0,3,3,2021,9,0,34,34,1,0,0,15.845958,15.845958,0,0,0,0,0,0,0,0,0,0,0,0,0,51.92,53.03,59.31,44.28,8.333333333333334,1,1,0,0,10,8,5,1,1000.5,271225,72573.078,637605.13,269518.09,10109.701,13053.01,6330.0566 +7501,9154,16328,16327,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5911131,8.9314566,8.2146988,35,0,-147.30826,0,3,3,2021,9,0,36,42,1,0,0,20.463657,20.463657,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8681898,59.31,44.28,51.92,53.03,8.333333333333334,1,1,0,0,6,8,5,1,1000.5,271225,72573.078,637605.13,269518.09,10109.701,13053.01,6330.0566 +7501,9155,16329,-9,16327,16328,1,1,27,0,0,0,2,2,-9,0,4,8.7026157,8.7670727,0,0,0,-987.4093,0,2,2,2021,12,0,42,49,1,0,1,14.901598,14.901598,0,0,0,0,0,0,0,0,0,0,0,0,0,43.14,61.33,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,1182,24749.289,0,0,0,0,0,1658.4423 +7501,9156,16330,-9,16327,16328,1,0,24,0,0,0,1,1,1,0,4,8.5025835,8.4297123,0,0,0,-930.63837,-9,2,2,2021,5,0,38,0,1,0,1,14.17242,14.17242,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,926,-71519.992,89552.117,0,0,26895.961,0,1321.8379 +7502,9157,16331,16332,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,9.3007507,9.2816954,39,17,-31.148373,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,15.071879,8.5684881,133.26384,0,1,1,0,7.687655,9.2455845,47.39,34.26,60.87,44.96,6.666666666666667,1,1,0,0,0,7,5,1,353.5,2056326.5,0,1447447.6,0,0,0,7092.1689 +7502,9157,16332,16331,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,40,-17,-10.428786,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5458827,0,60.87,44.96,47.39,34.26,8.333333333333334,1,1,0,0,0,7,5,1,353.5,2056326.5,0,1447447.6,0,0,0,7092.1689 +7503,9158,16333,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,6.8328457,7.0709157,0,0,-952.49103,0,3,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7130027,40.48,45.26,-9,-9,3.333333333333333,1,1,0,1,7,7,2,1,194,2488973.5,0,1729201.4,0,0,0,729.16187 +7504,9159,16334,16335,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,63,2,13.775339,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.5,13.1,61.04,28.88,10,1,1,0,0,0,4,2,1,1137.5,100600.91,23239.289,140650.78,0,0,0,1872.816 +7504,9159,16335,16334,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.8842278,4.5292163,63,-2,-10.593307,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4862161,4.8838992,61.04,28.88,57.5,13.1,8.333333333333334,1,1,0,0,0,4,2,1,1137.5,100600.91,23239.289,140650.78,0,0,0,1872.816 +7505,9160,16336,16337,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.8029289,8.5882626,0,6,1,-29.849285,0,-9,-9,2021,12,1,80,80,1,1,0,6.8698702,6.8698702,.05,.05,0,0,0,0,0,0,1,1,0,5.115006,0,49.63,54.22,28.52,55.04,6.666666666666667,1,1,0,0,11,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16337,16336,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.0286579,7.0566273,0,6,-1,62.437981,0,2,2,2021,21,10,24,24,1,10,0,5.4308958,5.4308958,.05,.05,0,0,0,0,0,2,1,1,0,0,0,28.52,55.04,49.63,54.22,8.333333333333334,1,1,0,0,10,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16338,-9,16337,16336,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.23,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16339,-9,16337,16336,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.0271,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7506,9161,16340,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3950815,8.7521553,0,0,0,-1012.9092,0,2,3,2021,24,12,36,36,1,12,0,19.617365,19.617365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.99,34.34,-9,-9,1.666666666666667,1,1,0,0,12,7,5,0,763,847997.81,300738.13,531473.31,149882.67,0,0,2063.8347 +7507,9162,16341,16342,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4157391,8.0162945,0,1,-2,111.01768,-9,2,2,2021,12,1,37,0,1,1,0,11.996259,11.996259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.67,51.26,57.16,56.15,8.333333333333334,1,1,0,0,15,9,5,1,323.5,50575.363,20251.322,0,0,7105.4863,0,3301.9497 +7507,9162,16342,16341,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1066084,8.4311314,0,1,2,2.1113379,-9,-9,-9,2021,7,0,40,0,1,0,0,14.246504,14.246504,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.67,51.26,6.666666666666667,1,1,0,0,15,9,5,1,323.5,50575.363,20251.322,0,0,7105.4863,0,3301.9497 +7508,9163,16343,16344,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,4.3834586,4.7449346,6,-1,55.777267,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8733063,49.91,31.75,52.3,57.2,10,1,1,0,0,0,1,2,1,268,252032.47,90721.047,118818.41,0,0,0,2066.5698 +7508,9163,16344,16343,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,4.3423405,3.9821076,50,1,-41.484604,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.6604123,4.3000169,52.3,57.2,49.91,31.75,8.333333333333334,1,1,0,0,0,1,2,1,268,252032.47,90721.047,118818.41,0,0,0,2066.5698 +7509,9164,16345,-9,16347,16346,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1172.4727,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7509,9164,16346,16347,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,9.3120518,9.512249,0,8,2,-143.89897,0,-9,-9,2021,5,0,40,40,1,0,0,38.178051,38.178051,.05,.05,0,0,0,0,0,0,0,0,0,4.3788519,0,57.16,56.15,56.68,42.62,8.333333333333334,1,1,0,0,11,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7509,9164,16347,16346,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4758005,8.7085581,0,8,-2,-37.342873,0,2,2,2021,11,1,38,38,1,1,0,15.276027,15.276027,0,0,0,0,0,0,0,0,0,0,0,.37415698,0,56.68,42.62,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7510,9165,16348,-9,16349,16351,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.5713,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16349,16351,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.5584974,8.6817493,0,18,0,-73.489677,0,3,3,2021,12,2,34,30,1,2,0,15.820866,15.820866,0,0,0,0,0,0,0,7,1,1,0,0,0,44.81,57.83,57.16,56.15,8.333333333333334,2,3,0,0,9,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16350,-9,16349,16351,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.65118,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16351,16349,16352,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5636473,8.3306932,0,7,0,-65.298012,0,3,3,2021,7,0,30,30,1,0,0,16.176886,16.176886,.05,.05,0,0,0,0,0,2,1,1,0,7.5611625,0,57.16,56.15,44.81,57.83,8.333333333333334,2,3,0,0,9,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9166,16352,-9,-9,-9,1,0,74,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1010.6043,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,73.94281,155.20871,654.11542,0,1,1,0,0,0,28.2,29.4,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,3650,0,0,0,0,0,0,1009.2229 +7511,9167,16353,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4779978,8.6786852,0,0,0,-963.91791,0,2,2,2021,7,1,38,20,1,1,0,16.458826,16.458826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.85,41.57,-9,-9,8.333333333333334,3,4,0,0,1,8,5,0,317,888427.56,720094.31,230854.36,35805.621,941.34607,0,1045.0424 +7512,9168,16354,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,9.4709435,9.4223347,0,0,0,-962.76056,0,2,2,2021,18,7,56,50,1,7,0,21.7034,21.7034,.05,.05,0,0,0,0,0,0,0,0,0,.86454058,0,41.73,51.28,-9,-9,5,2,3,0,0,12,7,5,1,5332.5,140232.52,-46183.273,406709.78,112812.5,7624.6392,3680.3535,3762.8486 +7512,9168,16355,-9,16354,-9,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-971.26508,-9,1,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.44,48.84,-9,-9,10,2,3,0,0,0,7,5,1,5332.5,140232.52,-46183.273,406709.78,112812.5,7624.6392,3680.3535,3762.8486 +7512,9169,16356,-9,16354,-9,1,0,19,0,1,0,2,2,-9,0,5,7.4847264,7.5122113,0,0,0,-876.44354,0,1,-9,2021,20,8,35,37,1,8,1,6.4708982,6.4708982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.92,68.08,-9,-9,6.666666666666667,2,3,0,0,1,7,3,1,406,121294.94,-42069.375,0,0,-390.13876,0,508.45007 +7513,9170,16357,16358,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,7.0874333,7.1712017,59,-2,4.0851526,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1628327,7.0859227,59.04,45.74,54.7,43.56,8.333333333333334,1,1,0,0,0,12,4,1,579.5,844000,353711.19,121420.36,0,0,0,2825.2007 +7513,9170,16358,16357,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.008913,7.9627929,59,2,83.983139,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,7.8880658,7.8360338,54.7,43.56,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,579.5,844000,353711.19,121420.36,0,0,0,2825.2007 +7514,9171,16359,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.420372,5.4626899,0,0,-969.47363,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,.22784303,9.1298513,25.356133,0,1,1,0,4.211082,5.2641673,62.34,25.79,-9,-9,10,1,1,0,0,0,8,2,1,2227,478239.31,165082.64,253185.88,0,0,0,1300.475 +7515,9172,16360,16361,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.756403,4.5972319,27,1,-34.283924,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7546005,4.76547,54.77,42.67,37.32,62.1,8.333333333333334,1,1,0,0,0,10,2,1,351.5,156859.69,48126.813,113437.66,0,0,0,1891.5103 +7515,9172,16361,16360,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,6.7669802,6.9414282,27,-1,-78.005241,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,6.2093549,6.3913569,37.32,62.1,54.77,42.67,10,1,1,0,0,5,10,2,1,351.5,156859.69,48126.813,113437.66,0,0,0,1891.5103 +7516,9173,16362,16363,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7349205,7.4151707,7,4,71.481453,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2890539,54.2,57.49,60.1,28.98,8.333333333333334,1,1,0,0,0,6,2,1,328.5,607728.5,575683.63,74920.867,0,0,834.12317,1734.0029 +7516,9173,16363,16362,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,.68934071,.38148883,7,-4,-78.894974,0,3,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,1,0,28.111546,0,2,1,1,0,0,.64889276,60.1,28.98,54.2,57.49,8.333333333333334,2,3,0,0,5,6,2,1,328.5,607728.5,575683.63,74920.867,0,0,834.12317,1734.0029 +7517,9174,16364,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.4815769,8.5678234,0,0,0,-876.75104,0,-9,-9,2021,8,0,41,41,1,0,0,12.263669,12.263669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.19,51.29,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,205,565007.25,-72825.414,385078.63,14596.694,0,0,1490.9269 +7518,9175,16365,16366,-9,-9,1,1,41,1,1,0,2,2,-9,0,3,9.6283169,9.7073908,0,6,7,-61.775692,0,2,2,2021,8,1,43,44,1,1,0,30.544138,30.544138,.05,.05,0,0,0,0,0,0,1,1,0,3.9929612,0,52,54.51,50.78,45.45,8.333333333333334,1,1,0,0,8,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7518,9175,16366,16365,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,8.3638678,8.5583658,0,6,-7,-36.499199,0,2,1,2021,13,3,38,38,1,3,0,16.197332,16.197332,0,0,0,0,0,0,0,0,1,1,0,2.5120208,0,50.78,45.45,52,54.51,6.666666666666667,1,1,0,0,5,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7518,9175,16367,-9,16366,16365,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.08649,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7519,9176,16368,16369,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.0878639,6.9612069,46,-1,-27.242453,0,3,3,2021,6,2,0,0,4,2,0,0,0,0,0,0,1,0,10.088871,0,74.5,1,1,0,0,6.6120448,65.17,21.38,35.21,32.44,3.333333333333333,1,1,0,0,7,7,2,0,970,731077.25,294871.34,293449.06,0,0,0,1527.3997 +7519,9176,16369,16368,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0871592,6.4775934,46,1,-115.03554,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.9669847,35.21,32.44,65.17,21.38,3.333333333333333,1,1,0,0,7,7,2,0,970,731077.25,294871.34,293449.06,0,0,0,1527.3997 +7520,9177,16370,16372,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,7.9003797,8.2345238,0,3,-2,-58.663624,0,-9,-9,2021,27,11,42,42,1,11,0,8.6854086,8.6854086,.05,.05,0,0,0,0,0,0,1,1,0,6.4547629,0,33.18,60.48,25.4,58.67,3.333333333333333,1,1,0,1,4,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7520,9177,16371,-9,16370,16372,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2142,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7520,9177,16372,16370,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,7.8446226,8.3306589,0,3,2,-22.630083,0,-9,-9,2021,16,4,42,43,1,4,0,9.4804544,9.4804544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.4,58.67,33.18,60.48,5,1,1,0,1,2,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7521,9178,16373,16374,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.8813396,7.9771848,45,0,143.56618,0,3,2,2021,18,6,0,19,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2382126,8.0401945,60.6,38.22,49.95,52.47,8.333333333333334,1,1,0,0,7,5,4,1,230.5,520729.81,274508.47,285516.41,0,12283.066,0,4110.9556 +7521,9178,16374,16373,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,8.325881,7.9912124,45,0,56.281925,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4099655,7.960546,49.95,52.47,60.6,38.22,10,1,1,0,0,4,5,4,1,230.5,520729.81,274508.47,285516.41,0,12283.066,0,4110.9556 +7522,9179,16375,-9,-9,-9,1,0,23,0,0,0,3,3,-9,0,3,6.7517371,6.6490798,0,0,0,-878.75861,0,-9,2,2021,7,0,15,14,1,0,0,7.233695,7.233695,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,490,-37155.938,0,0,0,0,0,198.70503 +7522,9180,16376,16377,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-4,31.457811,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48.26,36.14,53,46,3.333333333333333,1,1,0,0,0,4,2,1,2042,306185.5,52887.133,139416.59,0,0,1894.5154,960.33948 +7522,9180,16377,16376,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.9889979,5.8186083,6,4,83.922935,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1538386,53,46,48.26,36.14,8,4,1,0,0,0,4,2,1,2042,306185.5,52887.133,139416.59,0,0,1894.5154,960.33948 +7523,9181,16378,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,6.98177,7.0010238,0,0,0,-896.5564,0,-9,-9,2021,12,0,8,8,1,0,0,21.909546,21.909546,.05,.05,0,0,0,0,0,0,1,0,1,2.6176612,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,10,11,3,0,3400,-49246.762,16894.133,0,0,0,0,480.65616 +7523,9182,16379,-9,16378,-9,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1011.1108,-9,3,-9,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.38,63.46,-9,-9,8.333333333333334,1,1,0,0,6,11,1,0,507,0,0,0,0,0,0,0 +7523,9183,16380,-9,16378,-9,1,0,31,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1094.4147,0,3,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,42,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,247,26178.186,0,0,0,0,0,452.48285 +7524,9184,16381,16382,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.9753284,7.7120957,0,4,0,12.585815,0,-9,-9,2021,7,0,22,29,1,0,0,20.652121,20.652121,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,36.37,61.5,6.666666666666667,1,1,0,0,8,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16382,16381,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.1768608,8.6634626,0,4,0,-129.07391,-9,1,1,2021,17,6,44,0,1,6,0,11.151942,11.151942,.05,.05,0,0,0,0,0,0,1,1,0,1.9633421,0,36.37,61.5,45.91,59.89,3.333333333333333,1,1,0,0,10,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16383,-9,16381,16382,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8226,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16384,-9,16381,16382,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.0265,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7525,9185,16385,16387,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.0121241,7.9997988,0,3,0,20.568621,0,-9,-9,2021,23,11,30,41,1,11,0,10.959287,10.959287,0,0,0,0,0,0,0,0,1,1,0,0,0,23.12,51.6,54.79,55.86,3.333333333333333,1,1,0,0,3,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7525,9185,16386,-9,16385,16387,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.5862,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7525,9185,16387,16385,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.673089,8.5760889,0,3,0,63.441029,0,2,1,2021,8,0,35,35,1,0,0,17.771269,17.771269,.05,.05,0,0,0,0,1.8432318,0,1,1,0,3.0112538,0,54.79,55.86,23.12,51.6,6.666666666666667,1,1,0,0,8,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7526,9186,16388,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,8.1895523,8.015624,0,0,0,-1061.0817,0,2,2,2021,23,8,35,35,1,8,0,14.003076,14.003076,.05,.05,0,1,0,5.1163149,0,0,0,0,0,.1068279,0,37,25,-9,-9,1.666666666666667,1,1,0,0,11,2,4,1,1943,1331782.5,1111594.1,282067.59,0,0,0,1347.7428 +7526,9187,16389,-9,16388,-9,1,0,32,0,0,0,1,1,-9,0,2,7.8475657,7.9176846,4.908462,0,0,-1010.0378,0,2,1,2021,26,11,38,0,1,11,0,7.1079946,7.1079946,.05,.05,0,0,0,0,0,0,0,0,0,4.917254,0,39.72,23.74,-9,-9,5,1,1,0,0,11,2,3,1,552,260854.33,62304.715,111918.41,0,0,1442.4648,1136.9985 +7527,9188,16390,-9,16391,16392,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.93427,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7527,9188,16391,16392,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.5342922,7.8499308,0,5,-2,-59.029892,0,2,2,2021,6,0,16,20,1,0,0,12.999652,12.999652,.05,.05,0,0,0,0,0,0,1,1,0,3.8992348,0,45.63,58.55,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7527,9188,16392,16391,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.9170341,9.3109798,0,5,2,-131.95557,0,-9,-9,2021,9,0,50,56,1,0,0,15.172669,15.172669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.63,58.55,8.333333333333334,1,1,0,0,6,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7528,9189,16393,16394,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.8729792,10.057324,0,3,-6,71.822678,0,-9,-9,2021,8,2,60,40,1,2,0,48.199104,48.199104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,28.95,62.45,6.666666666666667,1,1,0,0,11,4,5,0,777.5,531956.88,101369.6,374820.91,135369.44,83365.438,0,12689.857 +7528,9189,16394,16393,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.0525723,8.1846275,0,3,6,75.854767,0,-9,-9,2021,27,12,38,0,1,12,0,10.032193,10.032193,.05,.05,0,0,0,0,0,0,0,0,0,9.2270975,0,28.95,62.45,54.2,57.49,1.666666666666667,1,1,0,0,1,4,5,0,777.5,531956.88,101369.6,374820.91,135369.44,83365.438,0,12689.857 +7529,9190,16395,-9,16396,16398,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-936.66803,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16396,16398,-9,-9,1,0,38,1,4,0,1,1,-9,0,2,0,0,0,14,-5,-50.775726,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.032939795,0,1,1,0,0,0,58.56,46.45,58.32,50.22,6.666666666666667,2,3,0,1,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16397,-9,16396,16398,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-998.06561,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16398,16396,-9,-9,1,1,43,1,4,0,3,3,-9,0,3,7.7179551,7.6553464,0,10,5,-97.981354,0,-9,-9,2021,7,0,42,40,1,0,0,5.4644704,5.4644704,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,58.56,46.45,6.666666666666667,2,3,0,1,3,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16399,-9,16396,16398,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-990.5271,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7530,9191,16400,16401,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.9062233,7.7312322,0,19,-5,11.282313,0,3,3,2021,10,0,36,32,1,0,0,8.8439703,8.8439703,.05,.05,0,0,0,0,0,0,1,1,0,2.365675,0,56.58,49.75,52.38,55.6,8.333333333333334,1,1,0,0,9,7,4,1,2935,555595.5,314949.25,314514.06,98273.719,3055.0171,1008.2308,4814.8237 +7530,9191,16401,16400,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.5450106,8.6076069,6.8806224,16,5,108.12633,0,3,3,2021,12,0,38,37,1,0,0,16.026106,16.026106,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7279811,52.38,55.6,56.58,49.75,6.666666666666667,1,1,0,0,12,7,4,1,2935,555595.5,314949.25,314514.06,98273.719,3055.0171,1008.2308,4814.8237 +7531,9192,16402,16403,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,31,16,53.289402,0,3,3,2021,13,5,0,0,4,5,0,0,0,.05,.05,0,1,0,36.547882,0,2,1,1,0,0,0,47.59,17.43,48.45,36.23,10,1,1,0,1,0,7,2,0,439.5,212302.13,118392.13,237000.47,29841.816,113.26233,0,2050.9924 +7531,9192,16403,16402,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,7.0743065,6.9126396,0,31,-16,88.225822,0,-9,-9,2021,20,8,15,15,1,8,0,9.1129551,9.1129551,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.45,36.23,47.59,17.43,5,1,1,0,0,12,7,2,0,439.5,212302.13,118392.13,237000.47,29841.816,113.26233,0,2050.9924 +7532,9193,16404,16405,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.360817,8.4395227,0,39,2,-102.27294,0,3,3,2021,8,0,48,48,1,0,0,14.937077,14.937077,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,55.4,48.28,60.18,10,1,1,0,0,9,10,5,1,229.5,1948899.4,552966,1053675.8,0,0,0,3258.0605 +7532,9193,16405,16404,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.0990639,8.3406343,0,38,-2,-89.247108,0,2,3,2021,7,0,45,44,1,0,0,9.5777988,9.5777988,0,0,0,0,0,0,0,0,0,0,0,2.6968629,0,48.28,60.18,51.64,55.4,8.333333333333334,1,1,0,0,9,10,5,1,229.5,1948899.4,552966,1053675.8,0,0,0,3258.0605 +7533,9194,16406,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7013931,8.9578905,0,0,0,-1022.978,0,2,1,2021,10,0,43,27,1,0,0,16.338087,16.338087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.92,53.1,-9,-9,5,1,1,0,0,9,8,5,1,144,438469.09,-26763.518,550225.44,167429.88,0,3006.4299,2712.2942 +7534,9195,16407,16408,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,8.2035189,7.8994598,5,0,-7.2367363,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0622368,40.71,47.62,46.41,42.57,8.333333333333334,1,1,0,0,2,7,3,1,1263,1579998.5,1006694.4,345384.22,0,0,0,1845.3569 +7534,9195,16408,16407,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,5,0,-38.176163,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.41,42.57,40.71,47.62,8.333333333333334,1,1,0,0,7,7,3,1,1263,1579998.5,1006694.4,345384.22,0,0,0,1845.3569 +7535,9196,16409,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.689929,7.8628998,5.4572744,0,0,-946.95508,0,2,2,2021,6,0,34,34,1,0,0,7.2839909,7.2839909,0,0,0,0,0,0,0,0,1,1,0,0,5.1346893,64.16,35.24,-9,-9,10,1,1,0,0,12,11,3,1,600,347470.91,1553.6699,293926.56,134065.91,10573.844,1302.5798,1263.0325 +7536,9197,16410,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,5.7051702,5.8437271,0,0,0,-998.53912,0,2,2,2021,10,1,30,30,1,1,0,1.1749988,1.1749988,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,861,541044.5,5693.6416,492535.94,24058.73,0,0,1072.3853 +7537,9198,16411,16412,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,0,0,0,7,1,-79.692459,0,3,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.99,53.98,21.78,41.87,0,1,1,0,1,0,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9198,16412,16411,-9,-9,1,1,56,0,1,0,1,1,-9,0,1,8.1085358,8.2001238,0,7,-1,59.454086,0,2,3,2021,29,12,37,77,1,12,0,9.260107,9.260107,0,0,0,0,0,0,0,0,1,0,1,0,0,21.78,41.87,33.99,53.98,1.666666666666667,1,1,0,1,8,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9198,16413,-9,16411,16412,1,0,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1094.895,-9,3,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,0,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9199,16414,-9,16411,16412,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1014.9102,0,3,1,2021,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.35,59.84,-9,-9,10,1,1,1,0,0,13,1,1,321,105882.26,0,0,0,0,0,-1145.0593 +7537,9200,16415,-9,16411,16412,1,1,19,0,1,0,1,1,1,0,4,0,0,0,0,0,-1008.994,-9,3,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,1,0,0,13,2,1,2064,-135897.16,158187.48,0,0,0,0,0 +7538,9201,16416,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.0064373,8.3472137,0,0,0,-910.96777,0,2,2,2021,7,0,36,35,1,0,0,13.684533,13.684533,.05,.05,0,0,0,0,0,0,1,1,0,4.9877472,0,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,549,130743.47,177165.09,0,0,0,0,869.58838 +7539,9202,16417,-9,16420,16419,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-833.97357,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16418,-9,16420,16419,1,1,16,0,3,1,3,0,0,0,4,0,0,0,0,0,-875.87268,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16419,16420,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.2369251,8.1239796,0,8,9,-23.888678,0,2,2,2021,9,0,60,78,1,0,0,6.953784,6.953784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,30.77,64.34,8.333333333333334,1,1,0,0,8,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16420,16419,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.5876737,6.6434956,0,8,0,18.791122,0,2,2,2021,20,8,16,16,1,8,0,6.2688885,6.2688885,0,0,0,0,0,0,.58794791,0,1,1,0,0,0,30.77,64.34,48.28,60.18,3.333333333333333,1,1,0,0,5,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16421,-9,16420,16419,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.32642,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7540,9203,16422,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1012.103,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9282227,0,0,1,1,0,0,0,40.14,16.93,-9,-9,5,1,1,0,0,0,7,1,1,268,-108131.25,0,0,0,0,0,333.45697 +7541,9204,16423,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,0,0,0,0,-969.2796,-9,2,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,7,11,1,1,447,-145477.83,0,0,0,0,1552.5811,2819.1299 +7542,9205,16424,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.265358,8.2505531,0,0,0,-920.89044,-9,3,3,2021,12,1,40,0,1,1,0,11.07427,11.07427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,5,1,1,0,0,9,8,4,0,238,-2337.4465,65534.488,0,0,0,0,1709.0103 +7543,9206,16425,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.8884668,8.5236959,0,0,0,-927.62146,0,1,1,2021,12,1,46,45,1,1,0,21.668562,21.668562,.05,.05,0,0,0,0,0,0,0,0,0,1.5269178,0,49.97,53.99,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,1902,16522.275,-245503.77,0,0,0,0,2612.1519 +7544,9207,16426,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1001.5168,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.43,52.78,-9,-9,5,4,2,1,0,0,10,2,0,660,-46220.133,0,0,0,0,0,929.40009 +7545,9208,16427,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0340109,7.9348049,0,0,0,-956.7876,0,2,2,2021,5,0,13,12,1,0,0,34.579121,34.579121,.05,.05,0,0,0,0,0,2,0,0,0,7.5906696,0,51.19,52.17,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,472,241336.16,71429.234,202471.08,86306.344,0,1482.8438,1833.5746 +7546,9209,16428,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7583551,8.6520786,0,0,0,-1044.7555,0,3,3,2021,8,0,60,48,1,0,0,14.679401,14.679401,0,0,.05,0,0,0,0,2,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,232,-17551.932,-53582.301,0,0,0,0,2635.9355 +7547,9210,16429,-9,16430,-9,1,1,57,0,0,0,2,2,-9,0,3,5.8853478,5.6927161,0,0,0,-1001.4187,0,2,1,2021,4,0,40,6,1,0,0,1.0817261,1.0817261,0,0,.05,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,8,2,1,379,117872.81,31450.549,321536.13,208995.36,0,0,-84.841164 +7547,9211,16430,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.9409361,5.8702669,0,0,-995.44257,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8834682,5.6796923,57.41,29.95,-9,-9,10,1,1,0,0,0,8,2,1,413,62963.137,-73752.617,165166.56,0,0,0,1907.9905 +7548,9212,16431,16434,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.5364437,8.3172579,0,7,-4,88.753334,0,2,2,2021,5,0,46,38,1,0,0,10.323953,10.323953,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,48.87,58.55,8.333333333333334,1,1,0,0,6,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16432,-9,16431,16434,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.59485,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16433,-9,16431,16434,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.87799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16434,16431,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,9.2625437,9.297802,0,7,4,42.478344,0,2,2,2021,10,0,45,45,1,0,0,21.499792,21.499792,.05,.05,0,0,0,0,0,0,1,1,0,6.9461708,0,48.87,58.55,56.33,51.02,8.333333333333334,1,1,0,0,8,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7549,9213,16435,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1190.5101,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,28.39,-9,-9,0,1,1,0,1,0,5,1,0,284,62741.457,96586.93,0,0,0,0,292.61932 +7550,9214,16436,-9,16437,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.01038,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,921.5,34781.672,28875.621,0,0,0,396.87097,1402.907 +7550,9214,16437,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.7329845,8.643137,0,0,0,-1017.1101,0,2,2,2021,10,0,37,37,1,0,0,18.505831,18.505831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.88,53.01,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,921.5,34781.672,28875.621,0,0,0,396.87097,1402.907 +7551,9215,16438,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,4,0,6.6931748,6.5356064,0,0,-1109.7177,0,3,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,4.6743131,0,0,1,1,0,0,6.6435695,42,41.4,-9,-9,10,1,1,0,0,0,5,2,1,236,165151.02,152342.05,155043.63,0,0,0,1147.2648 +7552,9216,16439,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,6.8983021,6.7037754,0,0,0,-1054.1257,0,-9,2,2021,11,1,50,55,1,1,0,1.9737164,1.9737164,0,0,.05,0,0,0,0,0,1,1,0,0,0,58.9,37.87,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,596,-87614.453,16233.941,0,0,3756.4448,0,527.41119 +7552,9216,16440,-9,-9,16439,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1105.8358,-9,-9,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,596,-87614.453,16233.941,0,0,3756.4448,0,527.41119 +7553,9217,16441,16442,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.1626215,5.847692,42,3,25.901745,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5221024,6.1776371,55.44,52.99,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,641.5,453874.28,156790.17,252542.25,0,0,0,1552.8711 +7553,9217,16442,16441,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7790289,7.1088924,42,-3,56.286652,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5642104,7.0456214,57.16,56.15,55.44,52.99,8.333333333333334,1,1,0,0,6,10,2,1,641.5,453874.28,156790.17,252542.25,0,0,0,1552.8711 +7554,9218,16443,16445,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.2112937,7.5473728,0,9,-1,61.769066,0,-9,-9,2021,13,2,20,20,1,2,0,12.774137,12.774137,.05,.05,0,0,0,0,0,0,0,0,0,6.6878958,0,45.69,53.27,47.15,56.66,8.333333333333334,1,1,0,0,9,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16444,-9,16443,16445,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.429,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16445,16443,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.8301449,8.6875448,0,9,1,-33.683216,0,2,3,2021,11,0,1,40,1,0,0,803.96112,803.96112,.05,.05,0,0,0,0,0,0,0,0,0,2.7194934,0,47.15,56.66,45.69,53.27,8.333333333333334,1,1,0,0,10,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16446,-9,16443,16445,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.649,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7555,9219,16447,16448,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,6.8816605,6.8380966,0,15,11,43.050346,0,3,2,2021,12,0,36,30,1,0,0,3.431742,3.431742,0,0,.05,0,0,0,0,0,1,1,0,0,0,40.63,48.56,40.64,52.96,5,2,3,0,0,10,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7555,9219,16448,16447,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,0,0,0,15,-11,-88.32653,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,40.63,48.56,5,2,3,0,0,0,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7555,9219,16449,-9,16448,16447,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8511,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7556,9220,16450,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.8706369,8.8214989,0,0,0,-1047.8615,0,2,2,2021,9,0,37,37,1,0,0,20.498821,20.498821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.56,47.56,-9,-9,3.333333333333333,1,1,0,0,12,9,5,1,1366,385947.84,109010.52,250918.89,113763.5,0,0,1806.4908 +7557,9221,16451,-9,16452,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-925.77332,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,2,1,1072,385110.44,139876.16,0,0,0,651.89966,1519.5637 +7557,9221,16452,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,4,7.2841139,7.2266755,5.7157974,0,0,-984.18066,0,2,-9,2021,12,0,22,21,1,0,0,7.7569151,7.7569151,0,0,0,0,0,0,0,2,1,1,0,5.3147259,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,1072,385110.44,139876.16,0,0,0,651.89966,1519.5637 +7558,9222,16453,-9,16455,16454,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-970.08844,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7558,9222,16454,16455,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,7.9714341,8.166049,0,6,-7,55.332703,0,1,3,2021,11,2,55,60,1,2,0,6.4829764,6.4829764,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.79,55.04,6.666666666666667,1,1,0,0,5,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7558,9222,16455,16454,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,6.7522321,7.0894146,0,6,7,89.587753,0,2,3,2021,13,2,22,13,1,2,0,3.803021,3.803021,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,55.04,54.2,57.49,5,4,2,0,0,5,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7559,9223,16456,-9,16457,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.1458,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7559,9223,16457,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,3,0,5.9336252,6.0366049,0,0,-865.97034,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,0,1,5.3995013,0,42.12,34.54,-9,-9,3.333333333333333,1,1,0,0,10,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7559,9223,16458,-9,16457,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.50439,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7560,9224,16459,16460,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,33,-16,0,0,-9,-9,2021,33,12,0,15,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,13.77,30.46,42.55,25.21,0,1,1,0,0,13,7,1,0,187,88590.977,0,0,0,0,722.05646,1243.1304 +7560,9224,16460,16459,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,33,16,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,35.166348,0,0,1,0,1,0,0,42.55,25.21,13.77,30.46,6.666666666666667,1,1,0,0,0,7,1,0,187,88590.977,0,0,0,0,722.05646,1243.1304 +7561,9225,16461,16462,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5019646,8.5181627,0,26,3,35.966938,0,3,3,2021,10,1,52,60,1,1,0,14.275336,14.275336,0,0,.05,0,0,0,0,0,0,0,0,4.1553063,0,41.4,55.39,54.1,50.87,8.333333333333334,1,1,0,0,9,2,5,1,1526.5,1141455.8,556998.25,212636.97,49756.492,0,0,3655.875 +7561,9225,16462,16461,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.2900791,8.2614069,0,26,-3,111.22302,0,2,3,2021,18,6,37,37,1,6,0,13.700272,13.700272,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,50.87,41.4,55.39,6.666666666666667,1,1,0,0,9,2,5,1,1526.5,1141455.8,556998.25,212636.97,49756.492,0,0,3655.875 +7561,9226,16463,-9,16462,16461,1,1,18,0,0,0,2,2,-9,0,4,7.6792092,7.4650006,0,0,0,-1002.5714,0,2,2,2021,7,0,25,0,1,0,1,12.578966,12.578966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,3,1,974,62163.703,8246.1904,0,0,0,0,808.12103 +7561,9227,16464,-9,16462,16461,1,1,18,0,0,0,2,2,-9,0,5,7.8079991,7.9837251,0,0,0,-964.42511,0,2,2,2021,6,0,40,0,1,0,1,8.2737284,8.2737284,.05,.05,0,0,0,0,0,0,0,0,0,1.3105686,0,48.65,53.42,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,211,101633.2,-73810.133,0,0,3278.386,0,1406.1821 +7562,9228,16465,16467,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,8.8222961,8.910573,0,27,4,14.009519,0,1,1,2021,6,0,43,40,1,0,0,20.067574,20.067574,.05,.05,0,0,0,0,0,0,1,1,0,2.9663775,0,62.39,56.71,62.39,56.71,10,2,3,0,0,7,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9228,16466,-9,16467,16465,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.83691,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9228,16467,16465,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,7.0547423,7.5809779,0,27,-4,79.31501,0,1,1,2021,6,0,24,22,1,0,0,6.4990768,6.4990768,0,0,0,0,0,0,0,0,1,1,0,7.1478238,0,62.39,56.71,62.39,56.71,10,2,3,0,0,8,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9229,16468,-9,16467,16465,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1031.5127,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,5,2,3,0,0,0,10,1,1,263,18383.936,0,0,0,0,0,0 +7563,9230,16469,16470,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.4653444,8.7047462,0,11,2,36.009953,0,2,2,2021,10,2,56,56,1,2,0,8.7304916,8.7304916,.05,.05,0,0,0,0,0,0,1,1,0,1.8017671,0,49.17,45.98,55.36,54.24,6.666666666666667,1,1,0,0,12,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7563,9230,16470,16469,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.6085663,8.4189959,0,11,-2,-65.156883,0,-9,-9,2021,4,0,50,50,1,0,0,12.881693,12.881693,.05,.05,0,0,0,0,0,0,1,1,0,2.4664288,0,55.36,54.24,49.17,45.98,6.666666666666667,1,1,0,0,11,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7563,9230,16471,-9,16470,16469,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1195.3601,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7564,9231,16472,-9,16475,16474,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3716,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16473,-9,16475,16474,1,1,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-901.33398,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16474,16475,-9,-9,1,1,38,2,3,0,1,1,-9,0,4,9.5952969,9.7078266,0,11,2,-53.66898,0,2,2,2021,6,0,53,60,1,0,0,36.155373,36.155373,.05,.05,0,0,0,0,0,0,0,0,0,3.0367589,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16475,16474,-9,-9,1,0,36,2,3,0,1,1,-9,0,4,7.4545369,7.2907171,0,11,-2,-17.783958,0,2,1,2021,11,0,26,38,1,0,0,9.4677811,9.4677811,0,0,0,0,0,0,0,0,0,0,0,4.8518353,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16476,-9,16475,16474,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-939.75574,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7565,9232,16477,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.2951565,8.2884159,5.9679222,0,0,-1066.6223,0,2,2,2021,14,2,37,26,1,2,0,12.929609,12.929609,.05,.05,0,0,0,0,0,0,1,1,0,6.1353927,0,41.3,60.77,-9,-9,3.333333333333333,1,1,0,0,7,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7565,9232,16478,-9,16477,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.65503,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7565,9232,16479,-9,16477,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.49481,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7566,9233,16480,16481,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6008968,8.6219072,0,33,-1,-143.86905,0,2,2,2021,7,1,48,54,1,1,0,15.33598,15.33598,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,49.67,51.26,8.333333333333334,1,1,0,0,13,5,5,1,1069.5,1032992.1,414952.03,356058.75,0,0,0,4408.5894 +7566,9233,16481,16480,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.643302,8.3275566,0,12,1,151.90886,0,-9,-9,2021,10,1,62,55,1,1,0,11.038071,11.038071,0,0,0,0,0,0,0,0,0,0,0,.70723283,0,49.67,51.26,58.15,52.91,8.333333333333334,1,1,0,0,10,5,5,1,1069.5,1032992.1,414952.03,356058.75,0,0,0,4408.5894 +7566,9234,16482,-9,16481,16480,1,0,23,0,0,0,1,1,-9,0,3,8.1588125,7.9239926,0,0,0,-1085.6857,0,1,1,2021,9,0,40,45,1,0,1,9.1249237,9.1249237,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,229,-46154.246,0,0,0,0,0,353.83243 +7567,9235,16483,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.4350986,8.9265451,0,0,0,-951.57617,0,1,1,2021,12,0,37,38,1,0,0,17.653845,17.653845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,37.32,-9,-9,6.666666666666667,2,3,0,0,14,1,5,1,2106,839209.19,610033.06,270528.59,54102.68,0,1590.7727,2473.7893 +7568,9236,16484,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,8.1418076,7.9070845,0,0,0,-1016.7941,0,-9,-9,2021,14,3,46,40,1,3,0,10.421154,10.421154,0,0,0,0,0,0,1.2758231,0,0,0,0,0,0,46.29,60.08,-9,-9,5,1,1,0,0,3,2,4,1,516,-97314.313,0,0,0,1465.382,0,1055.0203 +7568,9236,16485,-9,16484,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-925.42645,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,516,-97314.313,0,0,0,1465.382,0,1055.0203 +7569,9237,16486,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.6346693,7.8519878,5.8047042,0,0,-1044.929,-9,-9,2,2021,27,11,41,0,1,11,0,5.8901196,5.8901196,0,0,0,0,0,0,0,0,1,0,1,5.9507866,0,16.98,65.47,-9,-9,3.333333333333333,1,1,0,0,11,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7569,9237,16487,-9,16486,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1212.429,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7569,9237,16488,-9,16486,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.20465,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7570,9238,16489,16492,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,27,0,0,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16490,-9,16492,16489,1,0,17,0,2,0,3,3,-9,1,4,0,0,0,0,0,-942.66339,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16491,-9,16492,16489,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.30597,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16492,16489,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,27,0,0,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51,54,53,55,8,2,3,1,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16493,-9,16492,16489,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.35248,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9239,16494,-9,16492,16489,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-965.06219,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,874,103207.88,0,0,0,0,0,307.40659 +7571,9240,16495,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,0,5.8549576,6.2068605,0,0,-986.36932,0,2,2,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9924741,0,19.5,46.87,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,708,352729.44,105402.8,345521.56,220377.09,0,3612.0442,1505.8805 +7572,9241,16496,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.5875,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,10.206261,0,0,1,1,0,4.9608989,0,43.61,40.28,-9,-9,5,1,1,0,0,0,10,1,1,261,230487.38,0,275677.88,0,0,0,897.53601 +7573,9242,16497,16498,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5999794,7.8756189,45,0,-116.04935,0,3,2,2021,4,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.9106488,7.7262349,64.97,37.52,32.81,25.91,10,2,3,0,0,13,6,3,1,504.5,1347376,554673.31,436154,0,6115.6245,0,1198.0837 +7573,9242,16498,16497,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,45,0,203.46284,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,32.81,25.91,64.97,37.52,8.333333333333334,2,3,1,0,0,6,3,1,504.5,1347376,554673.31,436154,0,6115.6245,0,1198.0837 +7574,9243,16499,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.7712908,8.1032925,0,0,-973.58887,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2704248,8.263998,45.42,40.27,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,359,1493283.5,180418.75,559070.19,0,0,0,2535.72 +7575,9244,16500,-9,16502,16501,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.38965,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9244,16501,16502,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.3091488,9.1771889,0,9,2,-2.1645815,0,3,3,2021,20,9,78,43,1,9,0,16.197943,16.197943,.05,.05,.05,0,0,0,0,2,1,1,0,2.2644894,0,30.77,64.34,44.62,57.73,3.333333333333333,1,1,0,0,9,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9244,16502,16501,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5962453,7.7313247,0,9,-2,99.555046,0,3,2,2021,11,0,22,24,1,0,0,9.7393074,9.7393074,.05,.05,0,0,0,0,0,14.5,1,1,0,2.6029253,0,44.62,57.73,30.77,64.34,3.333333333333333,1,1,0,0,9,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9245,16503,-9,16502,16501,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.54626,-9,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9897269,0,33.49,64.26000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,965,0,0,0,0,0,0,-289.06808 +7576,9246,16504,16505,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.2224956,7.7498579,38,1,-85.188896,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7079177,7.3124356,55.61,50.3,54.79,55.86,8.333333333333334,1,1,0,0,0,10,3,1,812.5,1469557.4,988360.63,350783.06,77151.297,0,2082.8013,1535.6768 +7576,9246,16505,16504,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3275023,7.5686803,0,38,-1,-92.109062,0,3,3,2021,9,0,21,21,1,0,0,9.4914827,9.4914827,0,0,0,0,0,0,0,2,0,0,0,5.5130029,0,54.79,55.86,55.61,50.3,8.333333333333334,1,1,0,0,10,10,3,1,812.5,1469557.4,988360.63,350783.06,77151.297,0,2082.8013,1535.6768 +7577,9247,16506,16507,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.8928227,7.2491479,7,13,-1.6098982,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8120093,57.16,56.15,50.65,60.47,1.666666666666667,1,1,0,0,7,12,4,1,445.5,-78573.625,99175.266,0,0,0,7492.6787,2054.9829 +7577,9247,16507,16506,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3031597,8.0674725,0,7,-13,48.79211,0,3,3,2021,9,1,40,43,1,1,0,9.4332085,9.4332085,0,0,0,0,0,0,0,0,0,0,0,1.0642756,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,445.5,-78573.625,99175.266,0,0,0,7492.6787,2054.9829 +7578,9248,16508,16509,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.5616689,5.3039618,6,6,46.897102,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5390911,5.4977756,54,46,37.73,54.15,8,1,1,0,0,0,13,2,1,367,392635.09,197099.63,83483.727,0,4607.8276,0,2539.6045 +7578,9248,16509,16508,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9666605,7.0662446,6,-6,-24.813986,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,.49732602,0,1,1,0,0,7.0778561,37.73,54.15,54,46,10,1,1,0,0,0,13,2,1,367,392635.09,197099.63,83483.727,0,4607.8276,0,2539.6045 +7579,9249,16510,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.1459999,5.860095,0,0,-989.94489,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8090191,61.19,39.41,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,1305,342516.41,39159,237406.91,0,0,0,1198.8724 +7580,9250,16511,16512,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.9222369,7.4459095,0,9,-12,102.04887,0,-9,-9,2021,3,0,39,45,1,0,0,7.6579871,7.6579871,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,35.16,53,47,8.333333333333334,3,4,0,0,7,8,4,0,453.5,1217611.9,587910,445388.97,0,0,0,3626.4531 +7580,9250,16512,16511,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,7.5075259,8.0771885,6.4878206,13,12,127.9521,0,3,3,2021,10,0,36,49,1,1,0,5.3575249,5.3575249,0,0,0,0,0,0,0,0,1,1,0,3.9646921,6.5935721,53,47,47.49,35.16,7,3,4,0,0,1,8,4,0,453.5,1217611.9,587910,445388.97,0,0,0,3626.4531 +7581,9251,16513,16514,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.9515357,8.0082312,0,13,0,65.119186,0,3,3,2021,12,0,33,39,1,0,0,9.686883,9.686883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.5,54.11,57.33,53.46,5,1,1,0,0,15,2,4,1,1380,308707.63,27232.873,0,0,5094.127,2576.3276,2167.3267 +7581,9251,16514,16513,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.5104818,7.837851,0,13,0,49.159718,0,2,2,2021,7,0,36,0,1,0,0,7.0759816,7.0759816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,35.5,54.11,8.333333333333334,1,1,0,0,14,2,4,1,1380,308707.63,27232.873,0,0,5094.127,2576.3276,2167.3267 +7582,9252,16515,16516,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.0447617,7.2229462,55,8,106.68731,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2447081,7.1835818,51.88,30.78,52,54.51,8.333333333333334,2,3,0,0,0,8,2,1,584.5,254375.25,86576.508,169802.63,0,0,0,1306.6689 +7582,9252,16516,16515,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,55,-8,166.07397,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,1.8532281,0,52,54.51,51.88,30.78,8.333333333333334,2,3,0,0,0,8,2,1,584.5,254375.25,86576.508,169802.63,0,0,0,1306.6689 +7583,9253,16517,16518,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6064806,7.963593,6.75667,36,4,-11.602923,0,2,2,2021,11,0,20,28,1,0,0,10.447496,10.447496,0,0,0,0,0,0,0,0,0,0,0,0,7.2063851,50.03,52.62,44.01,41.98,6.666666666666667,1,1,0,0,10,1,3,0,2800,1753382,1210739.5,328542.28,0,3107.9482,0,2145.5708 +7583,9253,16518,16517,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,36,-4,-158.799,0,2,2,2021,13,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7613883,0,44.01,41.98,50.03,52.62,8.333333333333334,1,1,0,0,8,1,3,0,2800,1753382,1210739.5,328542.28,0,3107.9482,0,2145.5708 +7584,9254,16519,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,5.2989879,5.8766456,0,0,-1005.4774,0,3,3,2021,27,9,0,0,4,9,0,0,0,0,0,0,1,15.226974,5.2424812,120.47101,0,1,1,0,0,5.4577136,33.05,20.24,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,838,-219320.08,0,43590.273,0,0,0,1361.8151 +7585,9255,16520,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.0965157,5.6516209,0,0,-1069.4956,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5498281,52.97,31.31,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,393,167438.16,140725.58,179695.52,0,0,0,2005.998 +7585,9256,16521,-9,16520,-9,1,0,40,0,0,0,2,2,-9,0,4,7.4829321,7.1319103,0,0,0,-1030.5526,0,2,-9,2021,11,0,40,40,1,1,0,4.1752825,4.1752825,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,2,3,0,682,-18873.654,174855.92,0,0,0,641.55286,1070.3551 +7586,9257,16522,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.0071826,6.3514605,0,0,-953.01636,0,2,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,9.3136711,0,0,1,1,0,0,6.532856,44.78,19.33,-9,-9,5,1,1,0,0,0,12,2,0,1934,493113.03,102339.5,180062.64,0,0,0,1303.6206 +7587,9258,16523,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.7249269,8.5864525,0,0,0,-1013.4061,0,3,3,2021,12,1,37,37,1,1,0,18.703524,18.703524,.05,.05,0,0,0,0,0,0,1,1,0,6.618587,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,272,654554.81,537265.69,69070.789,107901.38,0,0,2348.9575 +7588,9259,16524,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1555653,6.5741296,0,0,-939.03204,0,3,2,2021,16,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2185841,5.7107687,38.76,40.19,-9,-9,10,1,1,0,0,0,12,2,1,437,163979.45,15551.616,166772.41,0,0,0,1126.2684 +7589,9260,16525,-9,16527,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-994.21631,-9,2,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,9,1,1,350,0,0,0,0,0,0,0 +7589,9261,16526,16527,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.6384239,8.8163671,0,3,8,62.848557,0,-9,-9,2021,6,0,40,60,1,0,0,16.565393,16.565393,0,0,0,0,0,0,0,0,0,0,0,7.1117125,0,57.16,56.15,47.15,56.66,8.333333333333334,1,1,0,0,2,9,5,1,807,638658.38,0,965014,544815.19,0,0,4586.1768 +7589,9261,16527,16526,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.81812,8.8746643,0,3,-8,26.230391,0,3,2,2021,7,0,40,40,1,0,0,17.513433,17.513433,0,0,0,0,0,0,0,0,0,0,0,3.7743161,0,47.15,56.66,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,807,638658.38,0,965014,544815.19,0,0,4586.1768 +7590,9262,16528,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.3356462,7.3905177,0,0,0,-1009.5057,0,-9,2,2021,10,0,30,-9,1,0,0,5.8185472,5.8185472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.11,44.4,-9,-9,10,1,1,0,0,12,4,3,0,205,-122406.27,101025.58,0,0,0,0,1154.7208 +7591,9263,16529,16530,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,11,5,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,51,48,37.81,30.29,7,1,1,0,0,0,13,1,1,527,231346.34,0,147731.19,0,0,0,1377.8678 +7591,9263,16530,16529,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,40,-5,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.81,30.29,51,48,8.333333333333334,1,1,0,0,0,13,1,1,527,231346.34,0,147731.19,0,0,0,1377.8678 +7592,9264,16531,16532,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,9.7657804,9.6817226,0,14,17,-28.698452,0,3,2,2021,10,2,50,50,1,2,0,29.793655,29.793655,.05,.05,0,0,0,0,0,0,1,1,0,4.7187467,0,55.09,55.87,45.92,51.86,8.333333333333334,1,1,0,0,10,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16532,16531,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,8.0651894,8.1257772,0,14,-17,10.276119,0,2,2,2021,15,4,40,16,1,4,0,6.9323516,6.9323516,.05,.05,0,0,0,0,0,0,1,1,0,4.1733451,0,45.92,51.86,55.09,55.87,6.666666666666667,1,1,0,0,5,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16533,-9,16532,16531,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.43341,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16534,-9,16532,16531,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.9907,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7593,9265,16535,16537,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.2541227,8.1370325,0,3,-1,-120.38559,-9,-9,-9,2021,9,0,58,0,1,1,0,9.8255911,9.8255911,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,44.4,41.62,8,4,1,0,0,1,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7593,9265,16536,-9,16537,16535,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.3591,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7593,9265,16537,16535,-9,-9,1,0,42,1,1,0,2,2,-9,0,3,7.6289611,7.851213,0,3,1,19.789236,0,3,3,2021,11,1,16,40,1,1,0,18.012142,18.012142,0,0,0,0,0,0,0,2,1,1,0,0,0,44.4,41.62,51,56,3.333333333333333,1,1,0,0,9,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7594,9266,16538,-9,16540,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1222,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7594,9266,16539,-9,16540,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.0487,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7594,9266,16540,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.8039942,7.8584924,0,0,0,-1100.0251,0,3,3,2021,9,0,35,35,1,0,0,7.9472232,7.9472232,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,8.333333333333334,2,3,0,0,8,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7595,9267,16541,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1021.8491,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.4,26.53,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1119,141786.27,0,113660.44,0,0,0,2039.2261 +7596,9268,16542,-9,-9,-9,1,1,61,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1019.1539,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.36,18.88,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,1408,23855.605,0,0,0,0,2823.196,710.6936 +7597,9269,16543,16545,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,6.4261265,6.7592621,0,3,-4,-74.76371,0,-9,-9,2021,16,4,11,20,1,4,0,8.322217,8.322217,0,0,0,0,0,0,0,0,1,1,0,0,0,49.26,54.61,38.57,58.06,6.666666666666667,1,1,0,0,4,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7597,9269,16544,-9,16543,16545,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-904.91656,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7597,9269,16545,16543,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,5.3751407,5.2179451,0,3,4,-40.581383,0,2,2,2021,13,2,42,42,1,2,0,.59705961,.59705961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,49.26,54.61,6.666666666666667,1,1,0,0,7,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7598,9270,16546,16547,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5708265,8.7002516,0,34,0,27.034838,0,3,3,2021,6,0,48,50,1,0,0,17.41868,17.41868,.05,.05,0,0,0,0,0,0,0,0,0,.75236392,0,61.12,46.03,54.2,57.49,10,1,1,0,0,8,4,5,1,1636.5,1493766,1103637.9,420423.69,20693.809,0,0,2710.0249 +7598,9270,16547,16546,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8692484,8.1994658,0,6,0,-32.70924,0,-9,-9,2021,12,1,37,39,1,1,0,8.4273396,8.4273396,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,61.12,46.03,6.666666666666667,1,1,0,0,6,4,5,1,1636.5,1493766,1103637.9,420423.69,20693.809,0,0,2710.0249 +7598,9271,16548,-9,16547,16546,1,0,29,0,0,0,2,2,-9,0,4,7.8656764,8.1344051,0,0,0,-824.74957,0,2,2,2021,10,3,30,30,1,3,1,11.195032,11.195032,0,0,0,0,0,0,0,7,0,0,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1408,76615.234,0,0,0,0,0,1255.434 +7599,9272,16549,16550,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,8.1687746,8.0902376,0,9,0,-19.584185,0,-9,-9,2021,6,0,48,37,1,0,0,9.5909452,9.5909452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.63,51.86,8.333333333333334,1,1,0,0,10,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7599,9272,16550,16549,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.6619234,7.8254814,0,9,0,47.584976,0,2,2,2021,8,1,35,32,1,1,0,8.7781839,8.7781839,0,0,0,0,0,0,0,0,1,1,0,0,0,63.63,51.86,62.49,55.09,8.333333333333334,1,1,0,0,5,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7599,9272,16551,-9,16550,16549,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.48212,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7600,9273,16552,16553,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,4.2957411,4.45399,12,9,-.79371738,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,125.19859,0,2,1,1,0,4.3999782,4.6565571,38.75,18.3,27.89,18.61,10,2,3,0,0,0,2,2,0,604,308585.47,-2122.29,0,0,0,0,4089.1655 +7600,9273,16553,16552,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,3.3960848,3.7182887,12,0,81.287827,-9,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,131.89722,0,120,1,1,0,3.55531,3.4684615,27.89,18.61,38.75,18.3,5,2,3,0,0,0,2,2,0,604,308585.47,-2122.29,0,0,0,0,4089.1655 +7601,9274,16554,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.8858814,7.8169069,0,0,0,-943.21661,0,-9,-9,2021,12,2,43,-9,1,2,0,5.8257298,5.8257298,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,50.81,-9,-9,6.666666666666667,1,1,0,0,5,8,3,0,238,-185043,63996.328,0,0,8117.1919,942.92377,1518.26 +7602,9275,16555,16556,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,6.8497276,7.1697512,0,8,5,38.428288,0,-9,-9,2021,9,0,35,40,1,0,0,3.6521807,3.6521807,.05,.05,0,0,0,0,0,0,1,1,0,2.5397854,0,60.14,44.41,59.75,37.25,6.666666666666667,1,1,0,0,10,2,4,1,2784.5,452154.28,429198.19,0,0,0,805.18835,2605.7603 +7602,9275,16556,16555,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1271019,8.4038467,0,25,-5,-26.80065,0,3,2,2021,9,0,30,27,1,0,0,14.531166,14.531166,.05,.05,0,0,0,0,0,0,1,1,0,4.7454143,0,59.75,37.25,60.14,44.41,8.333333333333334,1,1,0,0,10,2,4,1,2784.5,452154.28,429198.19,0,0,0,805.18835,2605.7603 +7603,9276,16557,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8021193,8.0164089,0,0,0,-921.55817,-9,-9,-9,2021,10,0,42,0,1,0,0,8.1107836,8.1107836,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,4,4,0,499,-111858.38,0,0,0,3709.5198,0,904.56329 +7604,9277,16558,16559,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,4,-3,-59.54784,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.7,28.27,53.85,22.4,6.666666666666667,1,1,0,0,0,7,2,1,481,473804.94,107864.42,234487.44,0,0,0,1786.6963 +7604,9277,16559,16558,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.8295622,5.3266263,4,3,4.7482171,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3535833,53.85,22.4,47.7,28.27,8.333333333333334,1,1,0,0,0,7,2,1,481,473804.94,107864.42,234487.44,0,0,0,1786.6963 +7605,9278,16560,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-920.03876,-9,-9,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.36,49.9,-9,-9,3.333333333333333,1,1,1,1,4,13,2,0,445,6238.9204,0,0,0,0,0,0 +7606,9279,16561,16562,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,1,-3,120.56236,-9,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50.43,37.79,34.09,31.98,6.666666666666667,1,1,0,0,4,6,3,1,848.5,698295.25,385637.53,277933.91,0,0,0,2302.147 +7606,9279,16562,16561,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,7.6174617,8.1104126,1,3,14.360562,-9,-9,-9,2021,20,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8022637,34.09,31.98,50.43,37.79,0,1,1,0,1,0,6,3,1,848.5,698295.25,385637.53,277933.91,0,0,0,2302.147 +7607,9280,16563,16564,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.0866823,8.7439356,0,2,0,-148.73993,-9,3,3,2021,9,0,70,0,1,1,0,9.3981094,9.3981094,.05,.05,0,0,0,0,0,56,1,1,0,0,0,53,54,48,49,8,1,1,0,0,10,13,5,1,295,-23742.668,-56476.031,104464.39,0,0,0,3873.3828 +7607,9280,16564,16563,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.316256,7.3144341,2,0,-21.069696,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1789608,48,49,53,54,7,1,1,0,0,0,13,5,1,295,-23742.668,-56476.031,104464.39,0,0,0,3873.3828 +7607,9281,16565,-9,16564,16563,1,1,22,0,0,0,2,2,-9,0,4,7.4495625,7.7230763,0,0,0,-992.8916,-9,2,2,2021,10,0,35,0,1,1,1,6.7754698,6.7754698,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,6,13,3,1,578,24102.451,-27635.65,0,0,0,0,1294.5852 +7607,9282,16566,-9,16564,16563,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-967.77246,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,.39382714,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,171,68041.375,0,0,0,0,0,0 +7608,9283,16567,16568,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.1816206,8.2173958,0,17,-2,-5.2826948,0,2,2,2021,6,0,40,45,1,0,0,10.696726,10.696726,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,13,9,4,0,1662,287777.81,97905.141,329014.81,170509.19,0,2527.9924,2650.3169 +7608,9283,16568,16567,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,7.9934859,7.708602,0,18,2,-133.77789,0,-9,2,2021,1,0,48,48,1,0,0,6.5875173,6.5875173,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,14,9,4,0,1662,287777.81,97905.141,329014.81,170509.19,0,2527.9924,2650.3169 +7609,9284,16569,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3592544,7.4414592,0,0,-1050.915,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.676118,0,0,1,1,0,0,7.9156566,57.17,34.71,-9,-9,10,1,1,0,0,0,8,3,1,304,725972.25,272720.19,316958.53,0,0,0,1973.7781 +7610,9285,16570,16571,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.6903372,8.7510757,0,30,1,-132.66653,0,1,2,2021,14,4,42,40,1,4,0,20.070768,20.070768,.05,.05,0,0,0,0,0,0,0,0,0,6.3028979,0,55.24,55.87,51.94,55.88,8.333333333333334,1,1,0,0,11,4,5,1,835,2790355.8,2263486.5,385481.03,37557.051,0,0,3713.5669 +7610,9285,16571,16570,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8128443,8.5192814,0,30,-1,28.001574,0,2,1,2021,9,0,20,20,1,0,0,25.213619,25.213619,0,0,0,0,0,0,0,0,0,0,0,5.9266667,0,51.94,55.88,55.24,55.87,8.333333333333334,1,1,0,0,11,4,5,1,835,2790355.8,2263486.5,385481.03,37557.051,0,0,3713.5669 +7611,9286,16572,16573,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.6443129,6.268465,8,8,-175.36919,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3878951,6.2350783,71.62,19.47,55.25,39.29,8.333333333333334,1,1,0,0,0,11,2,1,722.5,376532.13,146585.84,143859.27,0,0,0,1513.7585 +7611,9286,16573,16572,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,-8,-56.966572,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.25,39.29,71.62,19.47,10,1,1,0,0,0,11,2,1,722.5,376532.13,146585.84,143859.27,0,0,0,1513.7585 +7612,9287,16574,16575,-9,-9,1,0,41,1,1,0,1,1,-9,0,5,8.1956491,8.0579548,0,2,14,-49.040524,0,-9,-9,2021,6,0,40,38,1,0,0,11.176604,11.176604,0,0,0,0,0,0,.093984246,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,2,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7612,9287,16575,16574,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.6650734,8.4060106,0,2,-14,116.65314,0,-9,-9,2021,6,0,45,45,1,0,0,17.134432,17.134432,.05,.05,0,0,0,0,0,0,1,1,0,2.7349277,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7612,9287,16576,-9,16574,16575,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.54181,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7613,9288,16577,16578,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.4893537,7.366169,0,7,3,34.986313,0,2,2,2021,9,0,20,20,1,0,0,8.9732227,8.9732227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,42.53,52.15,8.333333333333334,1,1,0,0,8,9,5,1,401,130771.82,43209.637,217924.83,42683.078,0,0,3822.3325 +7613,9288,16578,16577,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.9587975,8.9181967,0,7,-3,5.0646176,0,3,-9,2021,20,8,38,44,1,8,0,26.605429,26.605429,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.53,52.15,59.53,56.44,3.333333333333333,1,1,0,0,8,9,5,1,401,130771.82,43209.637,217924.83,42683.078,0,0,3822.3325 +7614,9289,16579,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4784756,8.2552853,0,16,-13,104.91512,0,-9,3,2021,10,0,45,45,1,0,0,12.463582,12.463582,0,0,0,0,0,0,0,0,0,0,0,0,0,41.15,54.82,43.6,24.97,5,1,1,0,0,10,1,4,0,66,-216680.84,0,0,0,0,0,1714.5786 +7614,9290,16580,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,16,13,8.4119291,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,24.97,41.15,54.82,3.333333333333333,1,1,1,0,7,1,3,0,551,279921.28,0,0,0,0,0,0 +7615,9291,16581,16582,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9870501,8.2007399,0,29,-4,-111.5654,0,3,3,2021,11,0,40,40,1,0,0,10.209527,10.209527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,36.07,52.49,6.666666666666667,2,3,0,0,13,8,5,1,1264.5,312668.81,224782.28,210942.53,87207.578,0,13905.938,3248.6855 +7615,9291,16582,16581,16583,-9,1,1,52,0,0,0,1,1,-9,0,3,8.464263,8.6054525,0,11,4,-117.67018,0,2,-9,2021,17,5,42,42,1,5,0,14.40193,14.40193,.05,.05,.05,0,0,0,0,2,1,1,0,3.2638862,0,36.07,52.49,56.57,57.78,6.666666666666667,2,3,0,0,13,8,5,1,1264.5,312668.81,224782.28,210942.53,87207.578,0,13905.938,3248.6855 +7615,9292,16583,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.26062,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47,35,-9,-9,5,2,3,0,0,0,8,1,1,214,-103411.38,0,0,0,0,0,966.73077 +7616,9293,16584,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1133.5837,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,779,0,0,0,0,0,0,1068.2804 +7617,9294,16585,16586,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,5.163569,4.8791323,0,14,-1,4.7226815,0,2,2,2021,10,0,40,40,1,1,0,.42790276,.42790276,.05,.05,0,0,0,0,0,0,1,1,0,3.4040864,0,51,56,49,55,7,1,1,0,0,7,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16586,16585,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6523294,8.5375462,0,14,1,61.483143,-9,1,2,2021,11,0,37,0,1,2,0,16.078432,16.078432,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,56,7,1,1,0,0,8,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16587,-9,16586,16585,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4183,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16588,-9,16586,16585,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.84949,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7618,9295,16589,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.9849949,8.4611397,0,0,-960.07227,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.301609,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,166,1294697.4,715039.56,361833.44,0,0,0,3018.4133 +7619,9296,16590,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3591909,8.9255285,0,0,0,-1099.9255,0,2,2,2021,10,0,38,38,1,0,0,15.203214,15.203214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,176,49696.27,59044.879,0,0,0,0,2251.2178 +7620,9297,16591,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,8.3868227,7.9218006,0,0,-1012.3764,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.5857759,7.9887633,49.97,48.78,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,1910,807801.31,205074.7,506549.53,0,0,0,2191.4929 +7621,9298,16592,16593,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.9580269,6.0530286,54,-3,-47.02792,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.7135286,56.33,51.02,66.27,28.89,5,1,1,0,0,0,9,2,1,1485,538535.19,35063.758,281314.84,0,0,0,2330.4116 +7621,9298,16593,16592,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.5437422,5.7701292,54,3,-69.070412,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,76.804176,0,0,1,1,0,6.0448442,5.7032719,66.27,28.89,56.33,51.02,1.666666666666667,1,1,0,0,0,9,2,1,1485,538535.19,35063.758,281314.84,0,0,0,2330.4116 +7622,9299,16594,16595,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.8076982,8.3354397,36,1,-27.622252,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1399341,8.2880144,58.15,52.91,53.08,52.64,8.333333333333334,1,1,0,0,0,9,4,1,3386.5,2643273,1078176,1070281.9,0,0,0,3975.5918 +7622,9299,16595,16594,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.7728138,7.4580879,36,-1,79.929359,0,2,2,2021,7,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7296262,7.4158993,53.08,52.64,58.15,52.91,8.333333333333334,1,1,0,0,13,9,4,1,3386.5,2643273,1078176,1070281.9,0,0,0,3975.5918 +7622,9300,16596,-9,16595,16594,1,0,28,0,0,0,1,1,-9,0,4,8.1251411,8.1990433,0,0,0,-1004.1108,0,1,1,2021,10,1,37,40,1,1,0,10.973673,10.973673,.05,.05,0,0,0,0,0,0,0,0,0,1.1401584,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,292,0,0,0,0,0,0,2266.7073 +7623,9301,16597,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6736422,7.6771278,5.5352225,0,0,-1030.9304,0,-9,-9,2021,11,0,23,-9,1,2,0,9.5195236,9.5195236,0,0,0,0,0,0,0,0,1,1,0,5.2038379,0,49,56,-9,-9,7,1,1,0,0,12,13,3,0,764,105797.03,69140.391,108332.3,17417.736,0,2880.3735,1757.0083 +7623,9301,16598,-9,16597,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.45441,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,764,105797.03,69140.391,108332.3,17417.736,0,2880.3735,1757.0083 +7624,9302,16599,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,8.1599026,8.1106787,0,0,-985.68243,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7737589,7.6077919,46.45,46.21,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,334,996478.69,214126.86,544483.5,0,0,0,1655.299 +7625,9303,16600,-9,-9,-9,1,0,94,0,0,0,2,2,-9,0,2,0,3.4674416,3.563884,0,0,-1021.5025,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,1.958797,11.217489,15.506238,0,1,1,0,0,3.3134544,51.45,19.85,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1310,134688.8,-124563.1,167874.02,0,0,0,1475.7317 +7626,9304,16601,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,7.5470295,7.8353481,7.0017095,0,0,-1023.9346,0,3,3,2021,11,0,31,32,1,0,0,5.3489327,5.3489327,.05,.05,0,0,0,0,0,0,1,0,1,6.7967758,0,49.98,47.46,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,397,190431,-30879.457,62577.707,0,0,2576.7437,2406.4917 +7626,9304,16602,-9,16601,-9,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1137.5623,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,397,190431,-30879.457,62577.707,0,0,2576.7437,2406.4917 +7627,9305,16603,16604,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0103645,7.838726,0,1,-6,40.779148,-9,-9,-9,2021,5,0,35,0,1,0,0,8.6983128,8.6983128,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.76,59.08,44.49,55.37,8.333333333333334,1,1,0,0,7,7,4,0,414.5,134014.13,72397.766,197534.63,139967.7,23892.617,0,2260.4614 +7627,9305,16604,16603,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0121746,7.9166265,0,1,6,84.000282,-9,-9,-9,2021,9,1,39,0,1,1,0,6.9804964,6.9804964,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.49,55.37,41.76,59.08,3.333333333333333,1,1,0,0,9,7,4,0,414.5,134014.13,72397.766,197534.63,139967.7,23892.617,0,2260.4614 +7627,9306,16605,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.010499,7.5086708,0,0,0,-941.62573,-9,-9,-9,2021,11,0,25,0,1,0,0,11.130584,11.130584,0,0,0,0,0,0,0,0,1,0,1,0,0,47.34,55.48,-9,-9,6.666666666666667,1,1,0,0,0,7,3,0,154,-162811.89,0,0,0,0,0,1055.3429 +7628,9307,16606,16607,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.2545385,8.3688498,0,2,1,55.070351,0,1,-9,2021,8,1,48,48,1,1,0,11.272694,11.272694,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,42,53,6.666666666666667,1,1,0,0,12,9,5,1,301.5,0,0,0,0,0,0,2747.3369 +7628,9307,16607,16606,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1727333,8.5685587,0,2,-1,19.295212,0,-9,-9,2021,13,0,38,37,1,3,0,13.377865,13.377865,0,0,0,0,0,0,0,0,1,1,0,1.2601311,0,42,53,51.17,49.39,6,1,1,0,0,2,9,5,1,301.5,0,0,0,0,0,0,2747.3369 +7628,9308,16608,-9,-9,-9,1,1,20,0,0,0,1,1,-9,0,4,0,0,0,0,0,-764.47266,-9,-9,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,1116,38470.141,-221540.94,0,0,0,0,0 +7629,9309,16609,16611,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,7.2611904,7.8681464,0,19,-6,-53.612556,0,3,2,2021,11,0,28,28,1,2,0,10.609503,10.609503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,7,3,4,0,0,3,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16610,-9,16609,16611,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-978.59564,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16611,16609,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,7.1562643,7.39399,0,6,6,46.32222,0,-9,-9,2021,9,0,37,22,1,1,0,4.6443057,4.6443057,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,50,55,7,4,2,0,0,3,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16612,-9,16609,16611,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1018.335,-9,3,2,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.36,56.72,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16613,-9,16609,16611,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1054.8145,-9,3,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,3,4,-9,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9310,16614,-9,16609,16611,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-1120.3071,-9,3,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,0,8,1,0,259,-41143.758,0,0,0,0,0,1018.1034 +7630,9311,16615,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.7841692,9.6770105,0,0,0,-1035.8665,0,3,1,2021,18,5,35,35,1,5,0,44.796467,44.796467,0,0,0,0,0,0,0,0,1,1,0,4.3736091,0,43.06,59.91,-9,-9,5,1,1,0,0,13,11,5,1,1206,768367.69,193855.3,469553.03,312009.38,0,4843.1714,4418.2495 +7631,9312,16616,16617,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7628527,7.8856821,0,21,1,-84.082649,0,3,3,2021,11,0,40,0,1,0,0,9.3269119,9.3269119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.67,52.58,42.72,52.25,8.333333333333334,1,1,0,0,13,9,4,0,670.5,1251458,669183.88,476412.63,0,0,0,2120.2119 +7631,9312,16617,16616,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.670444,7.6029453,0,32,-1,-16.582722,0,3,3,2021,12,0,50,50,1,0,0,5.0295,5.0295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,52.25,50.67,52.58,6.666666666666667,1,1,0,0,13,9,4,0,670.5,1251458,669183.88,476412.63,0,0,0,2120.2119 +7632,9313,16618,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.9646287,7.7826123,0,0,-1070.8931,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7137027,7.315351,54.78,45.49,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,238,129206.14,-20602.68,0,0,0,0,1940.1964 +7633,9314,16619,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3040109,6.5731363,0,0,-930.10059,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6630788,53.58,46.94,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,827,461625.06,95917.461,172179.97,0,0,0,1476.8187 +7634,9315,16620,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.8464203,8.3923864,0,0,-979.30756,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2337093,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,83,1027932.4,462208.94,239652.69,0,1584.7985,0,2966.8506 +7635,9316,16621,16622,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.7257986,8.5935659,0,7,-1,138.46552,-9,-9,-9,2021,9,0,45,0,1,1,0,14.133989,14.133989,.05,.05,0,0,0,0,0,0,0,0,0,5.5619273,0,53,55,58.15,52.91,8,4,1,0,0,1,12,5,1,316.5,880338.13,837753.38,0,0,0,0,4145.8276 +7635,9316,16622,16621,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3866081,8.5856237,0,7,1,-25.992741,0,3,-9,2021,6,0,36,37,1,0,0,18.882004,18.882004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,53,55,8.333333333333334,1,1,0,0,8,12,5,1,316.5,880338.13,837753.38,0,0,0,0,4145.8276 +7636,9317,16623,16624,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,7.4372849,7.1035256,0,11,-1,40.738899,0,3,3,2021,11,0,20,20,1,0,0,9.2520924,9.2520924,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,67.33,46.18,8.333333333333334,1,1,0,0,12,11,2,0,1501.5,774852.75,278584.38,299879.13,0,0,0,1884.8071 +7636,9317,16624,16623,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,4.9697208,5.5125971,5.1821556,11,1,-20.223906,0,3,2,2021,7,0,8,8,1,0,0,2.2417729,2.2417729,0,0,0,0,0,0,0,0,1,1,0,4.9875822,5.3502359,67.33,46.18,48.87,58.55,0,1,1,0,0,12,11,2,0,1501.5,774852.75,278584.38,299879.13,0,0,0,1884.8071 +7636,9318,16625,-9,16623,16624,1,1,43,0,0,0,3,3,-9,0,2,6.1865911,6.4447651,0,0,0,-1026.2035,0,3,3,2021,10,1,25,25,1,1,0,2.8382969,2.8382969,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,36.17,-9,-9,5,1,1,0,1,11,11,2,0,3587,159423.08,35181.527,253820.05,92953.344,0,998.40875,-338.67004 +7637,9319,16626,-9,-9,-9,1,1,22,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.6859,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,10,1,1,0,0,0,2,1,1,1405,0,0,0,0,0,0,0 +7638,9320,16627,16628,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,39,-6,0,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.48,31.93,60.69,29.25,5,1,1,0,0,0,4,1,0,411,78998.445,0,98085.266,0,0,0,2991.7896 +7638,9320,16628,16627,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,38,6,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,29.25,48.48,31.93,3.333333333333333,3,4,0,0,0,4,1,0,411,78998.445,0,98085.266,0,0,0,2991.7896 +7639,9321,16629,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.9257703,7.7277861,0,0,-1015.7642,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0588989,8.1908903,38.16,44.66,-9,-9,5,1,1,0,0,0,6,4,1,229,723524.75,351725.94,172731.53,0,0,0,2021.8818 +7640,9322,16630,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,5.2434263,5.2494702,0,0,-964.60962,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5703182,5.0537205,62.59,18.99,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,172,342959.19,119377.46,397127.91,0,0,0,813.888 +7641,9323,16631,16632,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.71874,7.5355988,0,45,2,17.900715,0,3,3,2021,16,6,38,37,1,6,0,7.2777009,7.2777009,.05,.05,0,0,0,0,0,88,1,1,0,0,0,51,48,27.72,21.58,10,1,1,0,0,11,6,3,1,522.5,437769.06,212055.64,133064.69,0,0,0,1906.3905 +7641,9323,16632,16631,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,45,-2,-96.370186,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.311692,0,27.72,21.58,51,48,1.666666666666667,1,1,0,0,0,6,3,1,522.5,437769.06,212055.64,133064.69,0,0,0,1906.3905 +7642,9324,16633,16634,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,3.4636068,3.3016057,47,3,-92.701195,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0456882,3.5578523,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,7,2,2,1,338,103256.43,185855.5,0,0,0,0,3233.6548 +7642,9324,16634,16633,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.6836972,6.6678653,47,-3,26.515482,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9348845,6.3991103,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,10,2,2,1,338,103256.43,185855.5,0,0,0,0,3233.6548 +7643,9325,16635,-9,16637,16636,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.9117,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7643,9325,16636,16637,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2864847,8.1623611,0,6,-4,20.772034,0,2,2,2021,11,0,30,30,1,0,0,15.119356,15.119356,.05,.05,0,0,0,0,0,0,1,1,0,.76314628,0,37.92,53.03,43.73,54.31,6.666666666666667,1,1,0,0,14,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7643,9325,16637,16636,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5409722,7.4186206,0,6,4,-10.4158,0,-9,-9,2021,9,1,25,25,1,1,0,9.1356707,9.1356707,.05,.05,0,0,0,0,0,0,1,1,0,2.508616,0,43.73,54.31,37.92,53.03,8.333333333333334,1,1,0,0,10,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7644,9326,16638,16639,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,3,-6,0,0,3,3,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3915234,0,25.75,19.69,60.9,36.71,5,1,1,0,0,6,11,1,1,1688,482032.09,-14143.306,269030.78,0,11898.467,0,3204.2593 +7644,9326,16639,16638,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,3,6,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,8.3755198,0,60.9,36.71,25.75,19.69,8.333333333333334,1,1,0,0,8,11,1,1,1688,482032.09,-14143.306,269030.78,0,11898.467,0,3204.2593 +7645,9327,16640,-9,16641,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.3251,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,1793.5,-6487.9453,0,0,0,0,0,1685.0132 +7645,9327,16641,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,6.5568295,6.8752694,0,0,0,-985.3468,0,1,1,2021,11,0,14,0,1,2,0,11.08347,11.08347,0,0,0,0,0,0,0,0,1,1,0,3.0253732,0,47,57,-9,-9,7,2,3,0,0,10,9,2,0,1793.5,-6487.9453,0,0,0,0,0,1685.0132 +7646,9328,16642,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.1653419,7.4999299,5.2842383,0,0,-1054.1548,0,3,3,2021,10,0,20,20,1,0,0,6.9608769,6.9608769,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3247991,55.94,47.09,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,3503,334020.72,203643.25,256581.55,0,0,0,943.34009 +7647,9329,16643,16644,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4707575,6.7895589,6,4,-91.755753,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6227498,6.5667763,52,48,49,48,7,1,1,0,0,0,4,3,1,470.5,1288274.6,338655.81,451510.81,0,0,0,1755.4697 +7647,9329,16644,16643,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3242979,7.4031205,6,-4,-45.424828,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2647285,7.1322713,49,48,52,48,7,1,1,0,0,4,4,3,1,470.5,1288274.6,338655.81,451510.81,0,0,0,1755.4697 +7648,9330,16645,-9,16646,16647,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.7478,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16646,16647,-9,-9,1,0,48,0,2,0,2,2,-9,1,4,8.2610016,8.1088638,0,7,-2,11.540812,0,2,2,2021,12,0,19,19,1,0,0,21.379709,21.379709,0,0,0,0,0,0,0,107,1,1,0,0,0,49.06,58.64,49.35,59.64,8.333333333333334,1,1,0,0,8,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16647,16646,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.0172024,8.320857,0,7,2,-2.0531492,0,2,2,2021,13,1,40,40,1,1,0,14.612681,14.612681,.05,.05,.05,0,0,0,0,86,1,1,0,0,0,49.35,59.64,49.06,58.64,8.333333333333334,1,1,0,0,8,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16648,-9,16646,16647,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.21643,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7649,9331,16649,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1088.542,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,685,168252.33,0,0,0,0,0,0 +7650,9332,16650,-9,16652,16651,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-975.54822,-9,1,1,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5848937,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16651,16652,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,9.5068922,9.08811,0,20,2,-25.757635,0,2,1,2021,12,0,45,46,1,0,0,23.975334,23.975334,.05,.05,0,0,0,0,0,0,1,1,0,.014465079,0,38.79,44.82,52,54.51,3.333333333333333,1,1,0,0,11,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16652,16651,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.005764,7.9559407,0,22,-2,95.693649,0,2,2,2021,11,0,24,23,1,0,0,17.467463,17.467463,0,0,0,0,0,0,.15734215,0,1,1,0,4.7828913,0,52,54.51,38.79,44.82,8.333333333333334,1,1,0,0,11,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16653,-9,16652,16651,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0421,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7651,9333,16654,16655,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.21843,7.3265057,0,28,-10,125.73933,0,-9,2,2021,12,1,32,35,1,1,0,5.1222334,5.1222334,0,0,0,0,0,0,0,0,1,1,0,7.1667547,0,54.2,57.49,49.11,45,6.666666666666667,1,1,0,0,12,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9333,16655,16654,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4748411,8.9752846,8.1517916,28,10,-11.953918,0,3,3,2021,14,2,28,40,1,2,0,16.077101,16.077101,.05,.05,0,0,0,0,0,0,1,1,0,2.9366319,8.4570551,49.11,45,54.2,57.49,3.333333333333333,1,1,0,0,13,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9333,16656,-9,16654,16655,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-987.98053,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.55,56.21,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9334,16657,-9,16654,16655,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-922.76263,-9,2,2,2021,27,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,2,9,1,1,301,16674.227,0,0,0,0,0,0 +7652,9335,16658,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.88611,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0694308,0,60.42,43.74,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,545,11561.249,0,0,0,0,0,1815.8002 +7653,9336,16659,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8779955,9.485342,0,0,0,-897.85101,0,1,-9,2021,0,0,37,37,1,0,0,37.666885,37.666885,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,681,182160.5,301888.56,0,0,0,0,2061.9971 +7654,9337,16660,16662,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.3505001,8.5171738,0,9,0,-38.876511,0,-9,-9,2021,11,1,42,45,1,1,0,9.5115604,9.5115604,.05,.05,0,0,0,0,0,84,1,1,0,.69264096,0,28.41,64.05,33.31,51.41,8.333333333333334,1,1,0,0,9,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7654,9337,16661,-9,16662,16660,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.4445,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7654,9337,16662,16660,-9,-9,1,0,29,1,1,0,1,1,-9,0,2,8.0842619,8.0443678,0,9,0,-32.559952,0,-9,-9,2021,17,5,45,49,1,5,0,8.5295353,8.5295353,0,0,0,0,0,0,0,81,1,1,0,0,0,33.31,51.41,28.41,64.05,6.666666666666667,1,1,0,0,12,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7655,9338,16663,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.4147081,4.645155,0,0,-1048.5215,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0332251,47.21,55.3,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,389,543263.06,0,227155.91,0,0,0,207.33235 +7656,9339,16664,16665,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.8714256,6.6325212,55,4,-11.535173,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2677093,6.611124,53.67,51.01,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,517,662177.44,59518.715,207235.34,0,0,0,1051.6611 +7656,9339,16665,16664,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.1900163,5.2548633,55,-4,4.9465294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2150993,5.3928533,57.16,56.15,53.67,51.01,8.333333333333334,1,1,0,0,0,4,2,1,517,662177.44,59518.715,207235.34,0,0,0,1051.6611 +7657,9340,16666,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0227761,7.2434673,0,0,-1000.332,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3261485,7.0344825,29.52,58.03,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,871,268565.03,184973.98,0,0,0,0,763.2771 +7658,9341,16667,16670,-9,-9,1,0,36,2,2,0,2,2,-9,0,2,9.2358637,9.0424986,0,10,2,-8.4037905,0,-9,-9,2021,21,9,38,38,1,9,0,22.27743,22.27743,0,0,0,0,0,0,0,0,1,1,0,0,0,32.78,43.65,58.15,52.91,6.666666666666667,1,1,0,0,9,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16668,-9,16667,16670,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4467,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16669,-9,16667,16670,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2775,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16670,16667,-9,-9,1,1,34,2,2,0,2,2,-9,0,4,8.9327984,8.6186237,0,10,-2,36.477909,0,-9,-9,2021,7,0,45,50,1,0,0,13.319897,13.319897,.05,.05,0,0,0,0,0,0,1,1,0,1.5904725,0,58.15,52.91,32.78,43.65,8.333333333333334,1,1,0,0,15,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7659,9342,16671,16672,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,0,0,21,-8,-15.6744,0,2,2,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,27.98,61.72,6.666666666666667,1,1,0,0,8,11,5,1,446.5,728562.75,213707.75,322186.88,0,0,0,4120.918 +7659,9342,16672,16671,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,9.3539209,9.4833612,21,8,-72.900688,0,3,3,2021,21,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,9.1088572,27.98,61.72,51.14,60.45,1.666666666666667,1,1,0,0,8,11,5,1,446.5,728562.75,213707.75,322186.88,0,0,0,4120.918 +7660,9343,16673,16677,-9,-9,1,1,38,1,4,0,2,2,-9,0,4,7.2216072,7.5789614,0,15,3,23.194761,0,3,2,2021,6,0,16,25,1,0,0,11.761835,11.761835,0,0,0,0,0,0,0,0,1,1,0,0,0,48.23,42.78,51.25,52.08,8.333333333333334,2,3,0,0,9,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16674,-9,16677,16673,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.3618,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16675,-9,16677,16673,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-927.69849,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16676,-9,16677,16673,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.11328,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16677,16673,-9,-9,1,0,35,1,4,0,3,3,-9,0,3,0,0,0,15,-3,-11.690727,0,2,2,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,52.08,48.23,42.78,8.333333333333334,2,3,1,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7661,9344,16678,16679,-9,-9,1,1,55,0,1,0,2,2,-9,0,2,7.8002663,7.6353178,0,36,3,18.577127,0,-9,-9,2021,9,1,36,42,1,1,0,5.9668775,5.9668775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,40,47,50,6.666666666666667,2,3,0,0,13,10,2,1,872,133544.45,113351.59,154395.06,31248.59,4779.2241,0,698.099 +7661,9344,16679,16678,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,36,-3,75.310326,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,45,40,7,2,3,0,0,0,10,2,1,872,133544.45,113351.59,154395.06,31248.59,4779.2241,0,698.099 +7661,9345,16680,-9,16679,16678,1,1,27,0,1,0,1,1,-9,0,2,8.4934225,8.3395309,0,0,0,-835.63361,0,3,2,2021,10,0,37,35,1,0,1,14.182932,14.182932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.22,53.46,-9,-9,8.333333333333334,2,3,0,0,11,10,5,1,155,-71554.852,61728.16,0,0,0,0,1518.4263 +7661,9346,16681,-9,16679,16678,1,0,19,0,1,0,2,2,-9,0,4,7.8554206,7.9756174,0,0,0,-1094.8368,0,3,2,2021,10,2,42,8,1,2,1,7.1635389,7.1635389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,-9,-9,8.333333333333334,2,3,0,0,3,10,3,1,2898,28562.264,-41394.75,0,0,10254.98,1195.5804,1592.5754 +7662,9347,16682,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,4,7.4983592,7.3279505,6.0685487,0,0,-1095.2274,0,-9,-9,2021,13,1,33,27,1,1,0,6.3014293,6.3014293,.05,.05,0,0,0,0,0,0,1,1,0,6.0756035,0,40.18,62.68,-9,-9,3.333333333333333,4,2,0,0,2,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7662,9347,16683,-9,16682,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.13489,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7662,9347,16684,-9,16682,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.18695,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7663,9348,16685,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1128.7369,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.62,41.35,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,96,436646.72,0,185224.05,0,0,0,195.19472 +7664,9349,16686,16688,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.8070955,8.9603806,0,6,0,8.4137669,0,2,1,2021,9,1,48,53,1,1,0,15.611115,15.611115,.05,.05,.05,0,0,0,0,0,1,1,0,1.2757927,0,54.1,59.11,41.47,59.33,8.333333333333334,1,1,0,0,6,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7664,9349,16687,-9,16688,16686,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1118.1179,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7664,9349,16688,16686,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.1835814,8.4324656,0,6,0,-61.153511,-9,-9,-9,2021,12,3,47,0,1,3,0,8.6682425,8.6682425,.05,.05,0,0,0,0,0,0,1,1,0,.33175531,0,41.47,59.33,54.1,59.11,10,1,1,0,0,3,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7665,9350,16689,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5918083,6.7479892,0,0,-999.08484,0,-9,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,7.7741737,0,0,1,1,0,0,7.0810118,53,46,-9,-9,8,1,1,0,0,0,12,2,1,1259,518647.81,249031.19,155828.66,0,0,0,1655.2917 +7666,9351,16690,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,5.7837963,5.875421,0,0,0,-936.37354,0,2,-9,2021,22,9,1,1,1,9,0,41.538094,41.538094,0,0,0,0,0,0,0,0,1,0,1,0,0,30.02,32.44,-9,-9,5,4,2,0,1,2,8,2,0,479,0,0,0,0,0,0,1465.4299 +7667,9352,16691,16692,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.0737658,8.5887918,0,20,-2,-60.29784,0,2,1,2021,11,0,42,40,1,0,0,21.57864,21.57864,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,8.333333333333334,1,1,0,0,8,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16692,16691,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,7.3506627,7.3454704,0,20,2,-24.506145,0,2,2,2021,11,0,14,0,1,0,0,10.69484,10.69484,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,2,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16693,-9,16692,16691,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.43768,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16694,-9,16692,16691,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.47589,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16695,-9,16692,16691,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.77789,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7668,9353,16696,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.3970098,8.5550299,0,0,0,-1043.2019,-9,-9,-9,2021,12,3,37,0,1,3,0,12.013572,12.013572,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,63.03,22.21,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,336,281974.56,-21580.492,323695.41,58855.074,1559.85,2621.6235,1439.7739 +7668,9354,16697,-9,16696,-9,1,0,20,0,1,0,2,2,-9,0,4,7.7007093,7.7437406,0,0,0,-832.74115,-9,2,-9,2021,12,0,14,0,1,2,1,21.63867,21.63867,0,0,0,0,0,0,0,0,1,1,0,.91537368,0,46,59,-9,-9,7,3,4,0,0,1,8,3,0,248,116781.34,0,0,0,-2944.1555,0,1400.229 +7669,9355,16698,-9,16700,16699,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1037.5609,-9,1,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7669,9355,16699,16700,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.2925816,8.4565086,5.9972711,1,9,95.359756,-9,-9,-9,2021,15,2,45,0,1,2,0,10.967097,10.967097,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7751837,51.65,49.55,51.97,27.61,8.333333333333334,1,1,0,0,13,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7669,9355,16700,16699,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.1219358,8.3564968,6.7241096,1,0,17.320089,0,-9,-9,2021,12,0,37,37,1,0,0,13.845367,13.845367,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0351167,51.97,27.61,51.65,49.55,8.333333333333334,1,1,0,0,10,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7670,9356,16701,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.5251427,8.4956493,0,0,0,-921.09259,0,2,1,2021,12,1,40,40,1,1,0,14.275289,14.275289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,597,621966.56,-38075.336,403735.22,0,0,0,2195.1133 +7670,9357,16702,-9,16701,-9,1,1,25,0,0,0,1,1,-9,0,3,8.1091242,8.0846586,0,0,0,-850.03064,0,2,2,2021,13,2,45,45,1,2,1,9.4424829,9.4424829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,6,7,4,1,322,128996.67,-148253.14,0,0,0,0,1956.484 +7670,9358,16703,-9,16701,-9,1,1,22,0,0,0,2,2,-9,0,2,6.6418943,6.7992506,0,0,0,-1168.2434,0,2,-9,2021,12,1,20,12,1,1,1,4.3214335,4.3214335,0,0,0,0,0,0,0,0,0,0,0,0,0,43.89,54.51,-9,-9,3.333333333333333,1,1,0,0,3,7,2,1,534,386.03403,0,0,0,0,0,-356.66138 +7671,9359,16704,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,3.1955705,3.2560802,0,0,-1016.7627,-9,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7567959,59.93,44.12,-9,-9,10,1,1,0,0,0,7,2,0,432,40668.84,-11488.706,0,0,0,0,606.22571 +7672,9360,16705,-9,16707,16706,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.8737,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7672,9360,16706,16707,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,0,0,0,5,7,47.321442,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,41.85,56.37,5,1,1,1,1,0,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7672,9360,16707,16706,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.8111005,8.1423168,0,5,-7,3.4378946,0,-9,-9,2021,12,0,38,38,1,0,0,8.9780092,8.9780092,0,0,0,0,0,0,0,0,1,1,0,0,0,41.85,56.37,50,57,8.333333333333334,1,1,0,1,9,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7673,9361,16708,-9,16709,-9,1,0,40,0,0,0,1,1,-9,0,2,8.0663633,7.9381995,0,0,0,-895.04211,0,1,1,2021,9,1,38,35,1,1,0,9.8003654,9.8003654,0,0,0,0,0,0,0,0,1,1,0,5.1218657,0,56,35.8,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,421,166069.66,0,0,0,6702.8237,0,1174.4021 +7673,9362,16709,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.7364335,6.4596896,0,0,-1076.2448,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9253654,6.6312079,47.07,48.77,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,736,1155662.8,334564.84,592634.81,0,0,0,784.59296 +7674,9363,16710,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1055.1324,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,30.63,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,3844,0,0,0,0,0,0,1177.6139 +7675,9364,16711,-9,16715,16712,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.2341,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16712,16715,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.8736134,8.9471674,0,6,3,98.65374,0,-9,-9,2021,9,0,21,44,1,0,0,42.39204,42.39204,.05,.05,0,0,0,0,0,0,1,1,0,6.6240268,0,59.29,49.68,55.79,52.62,8.333333333333334,1,1,0,0,8,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16713,-9,16715,16712,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.8995,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16714,-9,16715,16712,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.25732,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16715,16712,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.1221504,8.1175156,0,6,-3,-35.613029,0,2,2,2021,8,0,33,38,1,0,0,10.921887,10.921887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,59.29,49.68,8.333333333333334,1,1,0,0,6,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7676,9365,16716,16717,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8174939,5.813684,48,0,142.80464,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0343037,5.7280359,61.28,48.88,56.92,49.39,10,1,1,0,0,3,1,3,1,597.5,1044507.9,661723.25,273373.22,0,0,0,2348.9893 +7676,9365,16717,16716,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4771781,7.2467499,48,0,132.88066,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8451657,7.6315246,56.92,49.39,61.28,48.88,8.333333333333334,1,1,0,0,0,1,3,1,597.5,1044507.9,661723.25,273373.22,0,0,0,2348.9893 +7677,9366,16718,-9,16719,16720,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1075.3621,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16719,16720,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.9029818,7.9446998,0,8,7,-4.7075186,0,-9,-9,2021,12,1,39,39,1,1,0,8.1890879,8.1890879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.58,53.69,47.05,56.66,8.333333333333334,1,1,0,0,11,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16720,16719,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.1041803,9.1104288,0,8,-7,-106.59207,0,2,2,2021,12,1,44,44,1,1,0,20.154411,20.154411,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.05,56.66,50.58,53.69,6.666666666666667,1,1,0,0,9,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16721,-9,16719,16720,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1031.9844,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,11,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7678,9367,16722,16723,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,-2,-38.3853,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,44.88,14.7,8,1,1,0,0,0,4,2,0,435.5,349704.88,138286.66,210259.94,0,0,0,1196.939 +7678,9367,16723,16722,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,5.6322799,5.4398899,48,2,-50.431107,-9,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,2.6690214,0,2,1,1,0,0,5.5309057,44.88,14.7,53,47,8.333333333333334,1,1,0,0,0,4,2,0,435.5,349704.88,138286.66,210259.94,0,0,0,1196.939 +7679,9368,16724,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.3538885,7.9754362,0,0,-1017.8724,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,3.7538314,8.1841879,60.12,54.8,-9,-9,10,1,1,0,0,0,4,4,1,1708,855806.13,613112.81,308715.91,0,0,0,2578.6987 +7680,9369,16725,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.5956044,7.5149708,0,0,0,-990.32355,0,-9,-9,2021,7,0,35,16,1,0,0,7.1222596,7.1222596,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,7,9,3,0,2095,-96506.852,0,0,0,0,0,1327.9855 +7681,9370,16726,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-937.72156,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7827067,0,50.33,41.27,-9,-9,10,1,1,0,0,0,7,1,1,717,-77863.797,0,0,0,0,0,836.37714 +7682,9371,16727,16728,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.6514831,7.5016847,11,-5,39.069084,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5330052,57.16,56.15,62.43,40.11,8.333333333333334,1,1,0,0,12,5,3,1,1093.5,1610178.5,1266777.8,277502.53,0,0,0,1579.0642 +7682,9371,16728,16727,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7708783,7.3321962,33,5,1.6987625,0,1,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.7393932,62.43,40.11,57.16,56.15,8.333333333333334,1,1,0,0,12,5,3,1,1093.5,1610178.5,1266777.8,277502.53,0,0,0,1579.0642 +7683,9372,16729,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-882.44073,0,3,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,19.01,22.64,-9,-9,0,2,3,0,1,0,8,1,0,147,68939.57,0,0,0,0,0,1149.3287 +7684,9373,16730,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1164.1122,1,3,3,2021,13,1,0,13,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,37.64,-9,-9,5,2,3,0,0,4,8,2,0,647,81697.023,0,0,0,0,0,-237.2628 +7685,9374,16731,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,5.3928332,5.3760734,0,0,-964.28638,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2636826,5.3692312,61.87,34.01,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,301,121971.85,55283.984,0,0,0,702.63062,1168.683 +7685,9375,16732,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-891.17163,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.77457917,0,57.78,38.59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,894,480559.34,0,297121.66,0,0,0,1527.8538 +7686,9376,16733,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.9842577,5.7026792,0,0,-873.40582,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1137123,5.5738339,52,45,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,188,138978.88,111884.3,0,0,0,0,454.42743 +7687,9377,16734,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.457335,6.3129454,0,0,-1068.6874,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2762961,6.6417427,54.2,57.49,-9,-9,5,1,1,0,0,4,6,2,1,750,1690063.9,1341255.8,145835.02,0,0,0,1059.2352 +7688,9378,16735,16738,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,8.005125,7.7353563,0,8,12,-61.525284,0,-9,-9,2021,9,0,60,60,1,1,0,5.7414012,5.7414012,0,0,0,0,0,0,0,0,1,1,0,5.6818748,0,53,55,54.1,59.11,8,4,1,0,0,1,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16736,-9,16738,16735,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.34888,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16737,-9,16738,16735,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.9478,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16738,16735,16739,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,18,-12,88.012192,0,1,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,53,55,10,1,1,0,0,1,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9379,16739,-9,-9,-9,1,0,67,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1123.1304,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0662897,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,483,2692.6538,83029.57,0,0,0,0,-105.95554 +7689,9380,16740,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.535841,7.5026512,0,0,-1044.3969,-9,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5770264,42.75,50.64,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,561,253024.77,2752.7019,109882.44,0,0,0,1022.6387 +7690,9381,16741,16742,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.7476797,9.0318108,0,6,1,-25.140724,-9,-9,-9,2021,9,0,39,0,1,1,0,18.908926,18.908926,.05,.05,0,0,0,0,0,0,1,1,0,3.9182305,0,53,55,54.2,57.49,8,1,1,0,0,1,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7690,9381,16742,16741,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.4558096,7.8696842,0,20,-1,-52.749847,0,2,2,2021,8,0,27,33,1,0,0,10.053679,10.053679,.05,.05,0,0,0,0,0,0,1,1,0,3.2626004,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7690,9381,16743,-9,16742,16741,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-945.53204,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7691,9382,16744,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.6649599,8.7844048,4.8812218,0,0,-1008.1797,0,3,3,2021,6,0,65,72,1,0,0,11.150687,11.150687,.05,.05,0,0,0,0,0,0,0,0,0,6.1657486,5.5343266,56.37,24.71,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,290,190417.08,204954.89,0,0,0,0,1768.4849 +7692,9383,16745,16746,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.4240618,8.8034372,0,10,2,-16.438643,0,2,3,2021,12,2,35,35,1,2,0,16.866852,16.866852,.05,.05,0,0,0,0,0,2,0,0,0,3.6584332,0,49.06,43.85,22.94,65.05,6.666666666666667,3,4,0,0,10,2,5,1,554.5,1184352.8,705961.13,398113.5,46032.531,6651.7842,0,3457.1089 +7692,9383,16746,16745,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7933531,8.7669678,0,10,-2,-102.36957,0,2,3,2021,18,7,43,44,1,7,0,18.405844,18.405844,.05,.05,0,0,0,0,0,0,0,0,0,5.3775225,0,22.94,65.05,49.06,43.85,1.666666666666667,1,1,0,0,12,2,5,1,554.5,1184352.8,705961.13,398113.5,46032.531,6651.7842,0,3457.1089 +7693,9384,16747,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1647501,6.9985662,0,0,-867.10974,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9952555,61.44,40.48,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,390,358018.5,97687.367,75349.547,0,6602.8853,0,1375.5713 +7694,9385,16748,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.4150691,7.5542989,0,0,0,-1024.858,0,3,3,2021,24,11,30,30,1,11,0,8.1534481,8.1534481,.05,.05,0,1,3.1249182,9.5250683,18.845064,0,1,0,1,0,0,31.04,33.39,-9,-9,3.333333333333333,1,1,0,0,15,12,3,0,553,286018.59,132649.72,0,0,0,0,844.95087 +7695,9386,16749,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.3958769,9.3252125,0,0,0,-1081.24,0,2,1,2021,24,12,57,52,1,12,0,21.918234,21.918234,.05,.05,0,0,0,0,0,0,0,0,0,4.7115555,0,28.3,65.67,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,189,1011724.1,933431.13,214711.59,0,0,0,3701.4177 +7696,9387,16750,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,9.2174988,9.2344933,0,0,0,-1027.0208,0,-9,-9,2021,18,5,40,28,1,5,0,35.827671,35.827671,.05,.05,0,0,0,0,0,0,0,0,0,.12332018,0,22.73,65.47,-9,-9,1.666666666666667,1,1,0,0,4,10,5,1,712,-35660.879,-22336.338,0,0,5597.9766,0,4103.4644 +7697,9388,16751,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1059.7037,0,2,2,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.42,32.69,-9,-9,0,1,1,0,0,0,7,1,0,259,-44711.797,0,0,0,0,0,509.16861 +7698,9389,16752,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.1795192,4.6100836,0,0,-1101.537,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5151043,5.0507545,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1235,-64289.023,54119.461,99903.633,3145.9246,446.01563,0,366.35974 +7699,9390,16753,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,7.0145025,6.8481698,0,0,-864.63464,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5117936,6.9409499,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1542,534103.94,53874.664,225484.25,0,0,0,935.66254 +7700,9391,16754,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.027154,8.3476715,0,0,0,-1114.3832,0,1,2,2021,11,0,45,23,1,0,0,7.8290658,7.8290658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,10,5,4,0,750,76729.656,13125.209,132847.09,73509.5,0,0,1087.6049 +7701,9392,16755,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,9.4339848,9.0724516,0,0,0,-1074.955,0,2,2,2021,4,0,47,55,1,0,0,32.213409,32.213409,.05,.05,0,0,0,0,0,0,0,0,0,2.0669212,0,59.43,58.05,-9,-9,10,1,1,0,0,11,7,5,1,201,591812.88,100040.8,442134.44,0,0,0,3382.6826 +7702,9393,16756,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3960996,6.3381886,0,0,-953.01752,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,2.1769333,8.0701571,18.847588,0,1,1,0,3.7403388,6.3702984,36.57,29.27,-9,-9,10,1,1,0,0,0,10,2,0,789,199060.98,111717.93,207142.97,3523.0154,0,0,2120.6328 +7703,9394,16757,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.6668234,7.1776218,0,0,0,-961.12439,0,3,3,2021,9,0,42,40,1,0,0,6.0294399,6.0294399,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,542,18107.631,61772.879,0,0,0,0,494.44077 +7704,9395,16758,-9,-9,-9,1,0,38,0,0,0,3,3,-9,1,1,0,4.6274695,4.4919515,0,0,-1118.4944,0,2,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6652274,0,21.73,26.97,-9,-9,0,4,2,0,0,2,2,2,0,520,-50038.59,0,0,0,0,0,1860.8152 +7704,9395,16759,-9,16758,-9,1,1,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-880.13043,-9,3,-9,2021,29,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.77,37.78,-9,-9,3.333333333333333,4,2,0,0,0,2,2,0,520,-50038.59,0,0,0,0,0,1860.8152 +7705,9396,16760,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.3410931,8.2701044,2.9833512,0,0,-933.15643,0,3,3,2021,9,0,42,47,1,0,0,11.990891,11.990891,.05,.05,.05,0,0,0,0,2,1,1,0,3.2985244,3.250257,44.94,49.91,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,318,1401076.6,620625.31,487206,0,0,0,1987.9679 +7706,9397,16761,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1018.2746,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.2,20.24,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,622,0,0,0,0,0,0,1345.644 +7707,9398,16762,16763,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,37,-1,-17.794031,0,-9,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.96,33.25,44.8,25.67,1.666666666666667,1,1,0,1,0,10,2,0,955.5,630150.75,341074.5,262850.06,0,0,0,447.49341 +7707,9398,16763,16762,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,6.7233295,7.0917425,0,37,1,88.746384,0,3,3,2021,20,7,15,15,1,7,0,6.8559132,6.8559132,0,0,0,0,0,0,0,0,1,1,0,0,0,44.8,25.67,45.96,33.25,3.333333333333333,1,1,0,1,3,10,2,0,955.5,630150.75,341074.5,262850.06,0,0,0,447.49341 +7707,9399,16764,16765,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,1,6,113.4474,-9,-9,-9,2021,15,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.49,49.38,41.58,52.86,3.333333333333333,1,1,1,0,0,10,2,0,1735,7023.3809,-21619.717,0,0,0,5599.3281,1006.9658 +7707,9399,16765,16764,16762,16763,1,0,26,0,0,0,2,2,-9,0,2,7.3705754,7.6813631,0,1,-6,-59.707115,0,3,3,2021,9,2,15,35,1,2,0,13.874801,13.874801,0,0,0,0,0,0,0,0,1,1,0,0,0,41.58,52.86,36.49,49.38,8.333333333333334,1,1,0,0,3,10,2,0,1735,7023.3809,-21619.717,0,0,0,5599.3281,1006.9658 +7708,9400,16766,16767,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3578091,8.2349377,0,19,-3,84.276505,0,3,3,2021,9,0,77,40,1,0,0,6.3849592,6.3849592,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.06,49.19,57.16,56.15,6.666666666666667,1,1,0,0,13,9,5,1,507.5,216659.75,135444.98,404276.56,275950.13,8450.6055,5026.0762,5355.166 +7708,9400,16767,16766,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.028471,9.3691807,0,19,3,-26.998785,0,3,3,2021,6,0,40,40,1,0,0,23.743471,23.743471,.05,.05,.05,0,0,0,0,0,0,0,0,6.1950488,0,57.16,56.15,46.06,49.19,8.333333333333334,1,1,0,0,13,9,5,1,507.5,216659.75,135444.98,404276.56,275950.13,8450.6055,5026.0762,5355.166 +7709,9401,16768,16769,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8593893,8.1383286,10,2,90.005257,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1750298,58.72,51.29,47.55,44.33,8.333333333333334,1,1,0,0,0,5,3,1,1223,970479.31,710580.5,291091.31,0,0,-527.80237,2550.7769 +7709,9401,16769,16768,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,121.52729,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,58.72,51.29,8.333333333333334,1,1,0,0,5,5,3,1,1223,970479.31,710580.5,291091.31,0,0,-527.80237,2550.7769 +7710,9402,16770,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.50476,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,4.4788575,0,0,1,1,0,0,0,54,45,-9,-9,8,1,1,0,0,0,13,1,1,508,264235.47,0,262752.38,0,0,0,902.72266 +7711,9403,16771,-9,16773,16772,1,0,16,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1055.8013,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.56,35.67,-9,-9,10,2,3,0,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16772,16773,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,9.0734196,9.0188074,0,20,-4,-71.945,0,3,3,2021,6,0,50,50,1,0,0,21.718803,21.718803,.05,.05,0,0,0,0,0,0,1,1,0,3.6173005,0,52.48,54.33,44.83,42.7,8.333333333333334,2,3,0,0,11,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16773,16772,-9,-9,1,0,43,0,4,0,1,1,-9,0,3,0,0,0,20,4,-31.874453,0,3,1,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.83,42.7,52.48,54.33,8.333333333333334,2,3,0,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16774,-9,16773,16772,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-995.93573,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16775,-9,16773,16772,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.88245,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16776,-9,16773,16772,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.46936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7712,9404,16777,16779,-9,-9,1,0,39,0,1,0,3,3,-9,0,5,6.6964664,6.2208905,0,17,-8,-164.38358,0,-9,-9,2021,5,0,6,6,1,0,0,13.003189,13.003189,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.39,56.71,10,2,3,0,0,8,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16778,-9,16777,16779,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-867.01514,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,0,0,1,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16779,16777,-9,-9,1,1,47,0,1,0,3,3,-9,0,5,7.7516851,7.4769559,0,17,8,-9.5936947,0,-9,-9,2021,5,0,37,37,1,0,0,6.2732625,6.2732625,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.02,56.42,10,2,3,0,0,10,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16780,-9,16777,16779,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.1967,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7713,9405,16781,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1024.0679,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,45.11,-9,-9,6.666666666666667,3,4,0,0,0,8,1,1,1146,145774.14,-3088.1409,0,0,0,0,2064.8025 +7714,9406,16782,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.1091318,6.32375,0,0,-1038.7848,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7692289,6.1143398,51.02,30.96,-9,-9,5,1,1,0,0,0,2,2,1,2370,198216.11,34777.789,130140.57,0,0,0,1483.6122 +7715,9407,16783,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1078.6315,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5144873,0,49.86,55.31,-9,-9,5,1,1,0,0,3,10,1,1,175,-22669.785,0,0,0,0,0,665.18927 +7716,9408,16784,16785,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,47,2,-41.39333,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0122571,0,54.62,48,54.74,57.22,5,1,1,0,0,6,6,3,1,374,1281586.9,586969.75,296083.5,0,0,0,20296.439 +7716,9408,16785,16784,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2236528,7.9878306,47,-2,28.312994,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.7741795,7.7517028,54.74,57.22,54.62,48,8.333333333333334,1,1,0,0,0,6,3,1,374,1281586.9,586969.75,296083.5,0,0,0,20296.439 +7716,9409,16786,-9,16784,16785,1,1,34,0,0,0,1,1,-9,0,2,7.5878968,7.6819553,0,0,0,-985.23584,0,2,1,2021,11,0,20,35,1,0,0,11.337035,11.337035,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.07,44.05,-9,-9,5,1,1,0,0,2,6,3,1,758,-48043.535,21950.33,120889,0,785.89465,-69.617401,960.72968 +7717,9410,16787,16788,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,9.0543041,8.8002367,36,2,123.49226,0,2,2,2021,2,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0599017,8.7571917,58.62,52.91,49.86,55.31,10,1,1,0,0,9,12,5,1,442,2924608.3,2254053,235205.75,0,0,0,5020.4253 +7717,9410,16788,16787,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.2590265,7.6915483,36,-2,.95915955,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7604575,8.0452251,49.86,55.31,58.62,52.91,10,1,1,0,0,9,12,5,1,442,2924608.3,2254053,235205.75,0,0,0,5020.4253 +7718,9411,16789,16790,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9793854,7.4690938,49,4,-29.336449,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.394084,8.0605869,61.61,37.79,51.37,35.92,8.333333333333334,1,1,0,0,0,7,3,1,1083,791591.88,378418.56,231972.05,0,0,0,2405.5151 +7718,9411,16790,16789,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,49,-4,8.6164589,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9946384,0,51.37,35.92,61.61,37.79,8.333333333333334,1,1,0,0,0,7,3,1,1083,791591.88,378418.56,231972.05,0,0,0,2405.5151 +7719,9412,16791,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.8913,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,10.987801,0,0,1,1,0,0,0,38.4,35.36,-9,-9,5,1,1,0,0,0,9,1,1,406,12899.478,0,0,0,0,0,344.62787 +7719,9413,16792,-9,16791,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5240798,7.2022929,0,0,0,-984.9256,0,3,-9,2021,8,0,28,40,1,0,0,8.0619278,8.0619278,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.14,51.28,-9,-9,5,1,1,0,0,3,9,3,1,1026,74917.586,82345.875,0,0,0,0,64.675652 +7719,9414,16793,-9,16792,-9,1,1,32,0,0,0,2,2,-9,0,4,7.782568,7.7286434,0,0,0,-1176.2499,-9,2,-9,2021,10,0,55,0,1,1,1,3.9996409,3.9996409,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,9,3,1,452,5136.3779,0,96360.328,31624.279,0,0,1489.7705 +7720,9415,16794,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.17145,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.04,54.65,-9,-9,8.333333333333334,1,1,1,0,0,2,2,0,476,7448.1279,0,0,0,0,0,239.27725 +7721,9416,16795,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1094.0737,0,3,2,2021,13,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.5,32.35,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,4086,322637.81,0,284200.84,0,0,0,1824.5714 +7722,9417,16796,-9,16797,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.6133,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,548.5,-92154.859,29874.678,89995.063,128802.28,0,0,838.00842 +7722,9417,16797,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.200985,8.1272297,0,0,0,-1099.8525,0,-9,2,2021,6,0,34,30,1,0,0,12.405173,12.405173,0,0,0,0,0,0,0,0,0,0,0,3.1323214,0,57.06,57.76,-9,-9,10,1,1,0,0,8,10,3,1,548.5,-92154.859,29874.678,89995.063,128802.28,0,0,838.00842 +7723,9418,16798,-9,16799,16800,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.24615,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7723,9418,16799,16800,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,9.4115191,9.0914536,0,7,3,34.782684,0,1,1,2021,9,3,47,50,1,3,0,22.238981,22.238981,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,51.76,44.66,57.83,8.333333333333334,1,1,0,0,8,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7723,9418,16800,16799,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.2215681,8.3239212,0,16,-3,4.2508497,0,2,1,2021,11,0,41,19,1,0,0,9.4666471,9.4666471,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.66,57.83,46.27,51.76,8.333333333333334,1,1,0,0,5,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7724,9419,16801,-9,16802,16803,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.87769,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7724,9419,16802,16803,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.9085045,8.871748,0,6,0,-.58390129,0,2,2,2021,6,0,60,45,1,0,0,14.465028,14.465028,.05,.05,0,0,0,0,0,0,1,1,0,6.1927156,0,61.27,46.03,49.35,59.64,8.333333333333334,1,1,0,0,6,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7724,9419,16803,16802,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.8658457,9.7282524,0,6,0,86.752464,0,2,2,2021,15,4,80,80,1,4,0,26.440271,26.440271,.05,.05,.05,0,0,0,0,0,1,1,0,1.4591284,0,49.35,59.64,61.27,46.03,6.666666666666667,1,1,0,1,5,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7725,9420,16804,16805,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.2406349,8.589179,0,12,5,-155.15054,0,3,1,2021,12,0,39,-9,1,0,0,9.0220127,9.0220127,0,0,0,0,0,0,0,0,1,1,0,0,0,29.97,53.91,35.92,56.78,5,2,3,0,0,10,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7725,9420,16805,16804,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,6.2533302,6.3961463,0,12,-5,81.24662,0,3,2,2021,12,0,8,-9,1,0,0,8.8634348,8.8634348,0,0,0,0,0,0,0,0,1,1,0,0,0,35.92,56.78,29.97,53.91,5,2,3,0,0,10,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7725,9420,16806,-9,16805,16804,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.606,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7726,9421,16807,16808,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,38,8,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8515358,0,57.57,49.69,55.79,52.62,8.333333333333334,1,1,0,0,7,5,1,1,1684,316252.09,0,140061.38,22631.604,0,0,633.32367 +7726,9421,16808,16807,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,39,-8,0,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.020500761,0,1,1,0,0,0,55.79,52.62,57.57,49.69,8.333333333333334,1,1,0,0,0,5,1,1,1684,316252.09,0,140061.38,22631.604,0,0,633.32367 +7727,9422,16809,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.5273438,9.5150347,6.5404935,0,0,-870.06482,0,2,2,2021,7,0,30,27,1,0,0,47.929958,47.929958,0,0,0,0,0,0,0,0,0,0,0,6.8147407,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,372,587533.94,20744.955,590763.13,199793.44,0,0,7092.9775 +7727,9423,16810,-9,16809,-9,1,1,19,0,0,0,2,2,1,0,4,7.5868711,7.5656056,0,0,0,-1064.8452,-9,2,-9,2021,9,1,35,0,1,1,1,8.4642172,8.4642172,0,0,0,0,0,0,0,0,0,0,0,1.1112354,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,9,3,1,211,371277.72,0,0,0,0,0,771.84595 +7728,9424,16811,16812,-9,-9,1,1,25,0,1,0,1,1,-9,0,3,8.265296,8.2333298,0,1,-4,35.483192,0,1,2,2021,16,5,46,48,1,5,0,12.437976,12.437976,0,0,0,0,0,0,0,0,1,1,0,2.6989083,0,34.71,56.98,39.96,46.57,5,1,1,0,0,5,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7728,9424,16812,16811,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.0707855,7.9262385,0,1,4,16.736803,-9,-9,-9,2021,9,0,30,0,1,0,0,10.474032,10.474032,0,0,0,0,0,0,0,0,1,1,0,0,0,39.96,46.57,34.71,56.98,8.333333333333334,2,3,0,0,9,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7728,9424,16813,-9,16812,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.3173,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7729,9425,16814,16815,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.8987904,9.3146629,9.4143991,48,2,-3.2340167,0,2,2,2021,3,0,10,16,1,0,0,31.781057,31.781057,0,0,0,1,0,0,0,0,1,1,0,7.4343123,8.8997784,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,12,10,5,1,528.5,1872085,392508.63,946355.88,0,0,0,9338.4609 +7729,9425,16815,16814,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.833178,7.3493695,12,-2,-82.268372,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1833506,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,12,10,5,1,528.5,1872085,392508.63,946355.88,0,0,0,9338.4609 +7730,9426,16816,-9,16817,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.72522,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,1130,32116.154,90918,0,0,0,0,1710.5139 +7730,9426,16817,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.6247997,7.5085602,0,0,0,-798.94989,-9,2,2,2021,12,0,50,0,1,2,0,3.8405235,3.8405235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,51,-9,-9,7,3,4,0,0,12,8,2,0,1130,32116.154,90918,0,0,0,0,1710.5139 +7731,9427,16818,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,8.0551891,7.8918633,0,0,-997.56854,0,2,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,7.8276358,0,0,1,1,0,0,8.1680593,49.49,26.89,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,550,245963.94,107665.27,0,0,0,0,1814.9519 +7732,9428,16819,16820,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.9195147,5.9271951,39,5,87.195198,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9596286,5.8451304,62.25,48.33,54.2,57.49,10,1,1,0,0,4,10,3,1,451,608218.63,389516.25,169986.84,0,-1247.3328,0,2076.2021 +7732,9428,16820,16819,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.4435091,7.4548216,39,-5,4.3504157,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2985392,7.7007375,54.2,57.49,62.25,48.33,10,1,1,0,0,6,10,3,1,451,608218.63,389516.25,169986.84,0,-1247.3328,0,2076.2021 +7733,9429,16821,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.8518057,8.1081219,0,0,0,-1095.761,0,3,-9,2021,6,0,40,34,1,0,0,8.728446,8.728446,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,12,9,3,1,235,-22780.422,108941.17,169393.23,72298.414,0,1869.3627,557.11462 +7734,9430,16822,-9,16824,16823,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-891.89984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7734,9430,16823,16824,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,9.2315035,9.481679,0,7,1,176.98213,0,3,3,2021,7,0,50,50,1,0,0,23.186527,23.186527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,47.19,44.55,8.333333333333334,1,1,0,0,8,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7734,9430,16824,16823,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,5.5185986,5.9544444,7,-1,-3.9021189,0,3,3,2021,15,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7003622,47.19,44.55,56.57,57.78,0,1,1,0,0,0,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7735,9431,16825,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-929.33295,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,10,1,1,1,0,2,2,1,0,730,-68221.438,0,0,0,0,0,304.81052 +7736,9432,16826,16827,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.0806675,5.8808994,43,-7,-26.329323,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.51980978,5.8565097,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,5,4,1,708,1473908,1212394,246586.44,0,0,0,2848.709 +7736,9432,16827,16826,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0071087,8.3833971,43,7,160.83075,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.653388,8.2763815,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,5,4,1,708,1473908,1212394,246586.44,0,0,0,2848.709 +7737,9433,16828,16829,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6975842,8.6961308,0,8,0,91.197556,0,1,2,2021,5,0,12,10,1,0,0,76.529266,76.529266,.05,.05,0,0,0,0,0,0,0,0,0,8.2447519,0,55.96,49.93,52.31,58.29,10,1,1,0,0,9,8,5,1,564.5,2183365.5,1150822.8,694352.38,33346.203,0,0,5749.2388 +7737,9433,16829,16828,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.156992,8.3509798,0,8,0,-8.557662,0,1,1,2021,7,0,15,15,1,0,0,29.356968,29.356968,0,0,0,0,0,0,0,0,0,0,0,2.8712401,0,52.31,58.29,55.96,49.93,0,1,1,0,0,9,8,5,1,564.5,2183365.5,1150822.8,694352.38,33346.203,0,0,5749.2388 +7737,9434,16830,-9,16829,16828,1,0,20,0,0,1,1,0,0,0,3,0,6.55756,6.3516731,0,0,-957.67792,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.43536,0,36.01,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,625,-195896.95,0,0,0,0,0,979.58057 +7738,9435,16831,16832,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.7948093,7.7452278,0,7,-5,-205.73076,0,-9,2,2021,0,0,40,50,1,0,0,7.2332129,7.2332129,0,0,0,0,0,0,0,0,0,0,0,0,0,60.2,45.35,61.28,46.17,8.333333333333334,1,1,0,0,7,5,4,0,1247,590906.75,400148.88,246938.89,103555.7,0,0,2739.0266 +7738,9435,16832,16831,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.3753843,8.0826874,0,7,5,-34.710167,0,3,3,2021,8,0,37,37,1,0,0,13.065976,13.065976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,60.2,45.35,8.333333333333334,1,1,0,0,9,5,4,0,1247,590906.75,400148.88,246938.89,103555.7,0,0,2739.0266 +7739,9436,16833,-9,16836,16835,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-990.0484,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16834,-9,16836,16835,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.5333,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16835,16836,-9,-9,1,1,42,2,2,0,2,2,-9,0,2,8.525774,8.5919809,0,6,3,20.665678,0,-9,-9,2021,10,2,48,48,1,2,0,17.505827,17.505827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.21,47.46,45.91,59.89,0,1,1,0,0,11,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16836,16835,-9,-9,1,0,39,2,2,0,1,1,-9,0,4,8.5903072,8.3957405,0,6,-3,73.887238,0,2,2,2021,12,2,38,38,1,2,0,13.801412,13.801412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.21,47.46,6.666666666666667,1,1,0,1,11,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7740,9437,16837,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.9316874,8.6584883,0,0,0,-1050.0847,0,2,2,2021,18,7,30,30,1,7,0,26.051517,26.051517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,3.333333333333333,1,1,0,0,8,8,5,0,228,28491.77,118958.48,0,0,0,431.70609,4037.0798 +7741,9438,16838,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.483511,8.2748489,0,0,0,-925.49036,0,3,2,2021,6,0,35,35,1,0,0,10.592422,10.592422,0,0,0,0,0,0,0,0,0,0,0,3.6277742,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,10,4,1,2351,2683.624,0,0,0,0,216.44234,1850.8619 +7742,9439,16839,16840,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.3052964,7.9279513,6.1783271,13,-2,-37.598557,0,-9,-9,2021,8,0,20,15,1,0,0,9.2203817,9.2203817,0,0,0,0,0,0,0,0,1,1,0,6.1654186,6.412674,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,15,2,5,1,1058.5,5662515,4233730,509397.38,0,0,0,7186.9253 +7742,9439,16840,16839,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,9.3407574,9.4848928,6.2545247,41,2,-22.143866,0,3,3,2021,8,0,25,25,1,0,0,45.936588,45.936588,0,0,0,1,0,9.2447014,0,0,1,1,0,6.8697662,6.7412939,57.06,57.76,55.79,52.62,8.333333333333334,1,1,0,0,15,2,5,1,1058.5,5662515,4233730,509397.38,0,0,0,7186.9253 +7743,9440,16841,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.3314257,8.4710102,0,0,0,-879.14282,0,1,1,2021,23,10,35,35,1,10,0,15.863966,15.863966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.62,47.06,-9,-9,3.333333333333333,1,1,0,0,11,2,5,1,203,247525.58,149885.92,211614.19,36138.492,20979.756,0,1398.2604 +7744,9441,16842,16843,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,63,-2,27.794451,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.73,29.63,61.04,39.41,8.333333333333334,1,1,0,0,0,11,2,1,344,167524.55,4385.5195,110773.09,0,0,0,1952.2252 +7744,9441,16843,16842,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9455523,6.9854245,63,2,38.726738,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.7689528,61.04,39.41,47.73,29.63,10,1,1,0,0,0,11,2,1,344,167524.55,4385.5195,110773.09,0,0,0,1952.2252 +7745,9442,16844,-9,16845,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.65143,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7745,9442,16845,-9,-9,-9,1,0,42,0,2,0,1,1,-9,1,2,8.2417173,8.4639425,7.2223206,0,0,-1005.7548,0,-9,-9,2021,21,7,37,43,1,7,0,11.343643,11.343643,.05,.05,0,0,0,0,0,0,1,1,0,3.8255506,6.9398355,41.12,27.25,-9,-9,5,1,1,0,0,6,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7745,9442,16846,-9,16845,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1021.2638,-9,1,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7746,9443,16847,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,2,0,5.5109572,5.3789701,0,0,-912.8205,0,1,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2776885,0,48.76,38.46,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1676,-257992.56,0,0,0,16174.514,5676.0605,1443.447 +7747,9444,16848,-9,16850,16851,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.06982,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16849,-9,16850,16851,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.9073,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16850,16851,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.4314461,8.2417707,0,3,-2,-15.995726,0,3,2,2021,12,0,40,40,1,0,0,14.888132,14.888132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,50.54,62.09,8.333333333333334,1,1,0,0,8,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16851,16850,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,9.1682034,9.5094957,0,3,2,-104.92979,0,-9,-9,2021,9,0,40,40,1,1,0,30.429373,30.429373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,57.06,57.76,8.333333333333334,1,1,0,0,4,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7748,9445,16852,16853,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5352736,8.6985188,0,4,3,29.791628,0,-9,-9,2021,9,0,53,39,1,0,0,9.9101343,9.9101343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,49.63,54.22,6.666666666666667,1,1,0,0,13,7,5,1,3019.5,98863.141,125200.75,220363.16,220388.45,1965.9301,0,4399.4775 +7748,9445,16853,16852,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.1926117,8.527401,0,4,-3,-9.5925064,0,-9,-9,2021,10,0,37,38,1,0,0,16.601517,16.601517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,55.3,55.6,6.666666666666667,1,1,0,0,13,7,5,1,3019.5,98863.141,125200.75,220363.16,220388.45,1965.9301,0,4399.4775 +7749,9446,16854,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,8.0498743,8.0933628,0,0,-1068.9164,-9,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0868692,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,10,4,4,1,97,2053727.8,1142009,202965.72,86361.398,0,0,1694.5869 +7749,9447,16855,-9,16854,-9,1,0,22,0,0,0,1,1,1,0,4,7.9240489,7.9313278,0,0,0,-940.75793,-9,2,-9,2021,15,3,38,0,1,3,0,7.9972501,7.9972501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.13,54.42,-9,-9,6.666666666666667,4,2,0,0,3,4,3,1,382,-211401.72,81722.875,0,0,9109.5996,0,1653.517 +7750,9448,16856,16859,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,7.9695458,7.7392554,0,9,5,-114.78783,0,2,2,2021,11,0,41,39,1,0,0,8.1712074,8.1712074,.05,.05,0,0,0,0,0,0,1,1,0,.39156628,0,55.2,49.4,57.16,56.15,8.333333333333334,1,1,0,0,10,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16857,-9,16859,16856,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1125.7347,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16858,-9,16859,16856,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.12152,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16859,16856,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.27425,7.884264,0,9,-5,47.138073,0,-9,-9,2021,4,0,24,25,1,0,0,13.623888,13.623888,0,0,0,0,0,0,0,0,1,1,0,.26213881,0,57.16,56.15,55.2,49.4,8.333333333333334,1,1,0,0,10,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7751,9449,16860,16861,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0751324,8.2251701,0,24,3,124.05436,0,2,2,2021,7,0,38,42,1,0,0,10.779156,10.779156,.05,.05,0,0,0,0,0,2,1,1,0,0,0,63.09,47.92,51,54,8.333333333333334,1,1,0,0,8,10,5,1,793,689327.19,385825.19,129271.05,81791.242,0,0,4267.251 +7751,9449,16861,16860,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.7579498,8.9579964,0,24,-3,106.82681,0,2,2,2021,10,0,38,38,1,1,0,26.674793,26.674793,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,63.09,47.92,8,1,1,0,0,8,10,5,1,793,689327.19,385825.19,129271.05,81791.242,0,0,4267.251 +7752,9450,16862,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-937.08875,0,3,3,2021,16,4,0,8,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.96,39.87,-9,-9,6.666666666666667,1,1,0,1,2,8,1,0,549,342015.25,0,435785.91,29643.283,0,0,1593.2886 +7753,9451,16863,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.9558659,7.066854,0,0,-997.49689,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.082232,7.2306271,57.16,56.15,-9,-9,10,1,1,0,0,0,7,2,1,529,76113.133,137496.23,0,0,7200.3818,0,2176.7573 +7754,9452,16864,16865,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.1442146,9.038271,0,3,3,28.427553,0,-9,-9,2021,10,0,50,50,1,0,0,24.789133,24.789133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,50.68,48.16,10,1,1,0,0,14,10,5,1,573.5,3357949,2794736.8,382460.38,0,0,0,4321.0195 +7754,9452,16865,16864,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.4610515,7.2857203,0,3,-3,.049118232,0,3,3,2021,13,2,24,22,1,2,0,8.1025925,8.1025925,0,0,0,0,0,0,0,2,0,0,0,0,0,50.68,48.16,52.93,52.64,5,1,1,0,0,14,10,5,1,573.5,3357949,2794736.8,382460.38,0,0,0,4321.0195 +7755,9453,16866,16867,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.0990438,8.6201868,0,40,2,-69.446541,0,2,2,2021,12,0,60,60,1,0,0,14.147656,14.147656,.05,.05,0,0,0,0,0,0,0,0,0,4.3847275,0,57.34,47.92,39.5,56.19,8.333333333333334,1,1,0,0,9,12,5,1,521.5,1314759.5,1065638.3,184122.8,7746.3545,8753.0039,1374.74,3270.3696 +7755,9453,16867,16866,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1448488,8.2846527,0,40,-2,-35.319324,0,3,3,2021,13,2,33,33,1,2,0,14.196417,14.196417,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,39.5,56.19,57.34,47.92,5,1,1,0,0,9,12,5,1,521.5,1314759.5,1065638.3,184122.8,7746.3545,8753.0039,1374.74,3270.3696 +7756,9454,16868,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.3199987,7.1228185,0,0,0,-866.79175,-9,3,3,2021,12,0,18,0,1,0,0,8.3870811,8.3870811,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.53,44.95,-9,-9,8.333333333333334,1,1,0,0,8,1,2,1,722,90846.508,7550.5981,143765.06,31174.793,0,0,618.44824 +7757,9455,16869,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.7078724,7.9659591,0,0,0,-1019.5974,0,2,1,2021,24,12,40,30,1,12,0,6.4296665,6.4296665,0,0,0,0,0,0,0,0,1,1,0,0,0,11.71,55.68,-9,-9,3.333333333333333,1,1,0,0,4,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7757,9455,16870,-9,16869,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.32135,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7757,9455,16871,-9,16869,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9109,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7758,9456,16872,16873,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8650317,7.7789927,0,8,5,67.802078,0,-9,-9,2021,22,10,16,20,1,10,0,21.338699,21.338699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,18.37,64.58,25.37,63.98,3.333333333333333,4,2,0,0,12,4,3,0,2864,35266.242,-22699.816,0,0,3882.4839,516.76288,1885.2218 +7758,9456,16873,16872,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.1836443,7.2303185,0,8,-5,-94.322044,0,2,-9,2021,16,4,18,18,1,4,0,8.6088295,8.6088295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.37,63.98,18.37,64.58,8.333333333333334,1,1,0,0,8,4,3,0,2864,35266.242,-22699.816,0,0,3882.4839,516.76288,1885.2218 +7759,9457,16874,16875,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5230236,8.65417,0,32,-5,141.92142,0,3,3,2021,12,0,37,75,1,0,0,14.985731,14.985731,0,0,0,0,0,0,0,2,0,0,0,0,0,7.52,68.5,44.67,52.97,1.666666666666667,1,1,0,0,8,7,5,1,723.5,444752.22,71367.023,265521.75,0,0,0,2312.8296 +7759,9457,16875,16874,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,7.3359017,7.3720446,32,5,-117.07616,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,.92028946,7.5826225,44.67,52.97,7.52,68.5,6.666666666666667,1,1,0,0,2,7,5,1,723.5,444752.22,71367.023,265521.75,0,0,0,2312.8296 +7760,9458,16876,16877,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,19,1,49.441547,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.27,44.84,30.26,18.9,6.666666666666667,1,1,0,0,6,10,2,1,798,301683,247336.38,142211.23,0,0,0,1827.1345 +7760,9458,16877,16876,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,6.4813857,6.521832,12,-1,-193.09384,0,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,1,0,12.192099,0,0,1,1,0,0,6.4122648,30.26,18.9,59.27,44.84,0,1,1,0,0,3,10,2,1,798,301683,247336.38,142211.23,0,0,0,1827.1345 +7761,9459,16878,16879,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7940845,7.5253181,43,8,-55.594448,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,5.3278341,7.2344484,51.47,53.17,58.15,52.91,8.333333333333334,1,1,0,0,10,11,3,1,1061.5,660408.5,328334.88,227298.63,-1335.8448,11591.75,3661.2813,2300.3953 +7761,9459,16879,16878,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3319526,7.3704567,5.4426088,43,-8,57.282982,0,2,2,2021,8,0,17,16,1,0,0,12.181962,12.181962,0,0,0,0,0,0,0,0,1,1,0,0,5.2101192,58.15,52.91,51.47,53.17,10,1,1,0,0,12,11,3,1,1061.5,660408.5,328334.88,227298.63,-1335.8448,11591.75,3661.2813,2300.3953 +7762,9460,16880,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.4132099,8.1483498,0,0,0,-875.60907,0,2,2,2021,12,0,48,48,1,0,0,9.3761702,9.3761702,0,0,0,0,0,0,0,0,0,0,0,.74105239,0,32.84,42.88,-9,-9,5,1,1,0,0,1,4,4,0,1295,-234757.63,0,0,0,0,0,1143.6035 +7763,9461,16881,16882,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,49,-2,-111.02067,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50.54,62.09,10,1,1,0,0,0,12,3,1,373,570034,535383.69,110673.64,0,0,0,2775.5288 +7763,9461,16882,16881,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.0879002,7.6785402,49,2,69.425613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8243284,50.54,62.09,62.39,56.71,10,1,1,0,0,5,12,3,1,373,570034,535383.69,110673.64,0,0,0,2775.5288 +7764,9462,16883,16886,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,8.3903894,8.5596533,0,8,5,-123.59775,0,2,-9,2021,8,1,47,46,1,1,0,12.703569,12.703569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.82,48.42,56.79,51.02,10,1,1,0,0,11,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16884,-9,16886,16883,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1145.6593,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16885,-9,16886,16883,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.77692,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16886,16883,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.3436389,7.3050451,0,8,-5,-86.057953,0,3,3,2021,9,0,23,20,1,0,0,7.0581064,7.0581064,0,0,0,0,0,0,0,0,1,1,0,5.8672113,0,56.79,51.02,57.82,48.42,8.333333333333334,1,1,0,0,11,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7765,9463,16887,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.9421725,7.0191121,0,0,-1032.1498,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,10.01828,0,2,1,1,0,0,6.767993,41.17,39.45,-9,-9,3.333333333333333,1,1,0,0,5,7,2,1,1200,187872.09,200768.94,0,0,0,566.49164,1148.36 +7766,9464,16888,16889,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.3928752,6.7679148,53,2,32.71273,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7653041,6.4537573,51.9,43.08,41.12,54.83,8.333333333333334,1,1,0,0,0,4,2,1,272,276687.03,-1322.9121,173341.19,0,0,0,1028.4412 +7766,9464,16889,16888,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.809824,4.9380784,53,-2,-80.949341,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6047158,4.8049011,41.12,54.83,51.9,43.08,8.333333333333334,1,1,0,0,0,4,2,1,272,276687.03,-1322.9121,173341.19,0,0,0,1028.4412 +7767,9465,16890,-9,16892,16891,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.1716,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16891,16892,-9,-9,1,1,40,2,3,0,2,2,-9,0,3,0,0,0,7,7,115.07617,0,3,3,2021,12,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.49,58.84,52.82,53.97,5,1,1,1,0,6,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16892,16891,-9,-9,1,0,33,2,3,0,2,2,-9,0,4,7.1726871,7.0059752,0,7,-7,2.296792,0,2,2,2021,6,0,23,23,1,0,0,7.3593144,7.3593144,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,45.49,58.84,8.333333333333334,1,1,0,0,4,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16893,-9,16892,16891,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3238,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7768,9466,16894,-9,16895,16896,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1019.5966,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,1,0,0,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7768,9466,16895,16896,-9,-9,1,0,60,0,1,0,3,3,-9,0,5,0,0,0,20,10,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.32,63.88,28.52,46.26,8.333333333333334,1,1,1,1,0,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7768,9466,16896,16895,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,20,-10,0,0,2,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.52,46.26,34.32,63.88,5,1,1,1,1,1,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7769,9467,16897,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.875473,6.8127189,0,0,-846.98309,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9831791,59.52,41.3,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,3014,-53061.918,11475.009,0,0,0,0,1547.9674 +7770,9468,16898,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1009.7762,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1594067,0,43.6,53.51,-9,-9,10,1,1,0,0,0,10,1,1,1436,-5915.5933,0,0,0,0,0,773.77643 +7771,9469,16899,16902,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.0515041,7.8465462,0,13,0,42.901779,0,3,3,2021,8,0,18,20,1,0,0,21.189583,21.189583,0,0,0,0,0,0,0,0,1,1,0,2.9145977,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16900,-9,16899,16902,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.1135,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16901,-9,16899,16902,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.62646,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16902,16899,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.9023085,8.705781,0,13,0,14.932005,0,2,2,2021,6,0,59,52,1,0,0,15.050813,15.050813,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,10,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7772,9470,16903,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1154.5164,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,1.6464548,2.5415146,27.643534,0,1,1,0,7.2210636,0,56.31,20.2,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,309,12052.357,0,0,0,0,0,1621.2832 +7773,9471,16904,16905,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,7.6898575,7.9434328,0,4,4,88.516708,0,-9,-9,2021,11,0,34,24,1,0,0,7.5805764,7.5805764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.62,47.44,65.06,41.58,10,2,3,0,1,11,2,3,1,456.5,14500.723,-8011.998,0,0,0,0,1836.3657 +7773,9471,16905,16904,-9,-9,1,0,34,0,0,0,3,3,-9,0,4,0,0,0,11,-4,-65.952797,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.06,41.58,46.62,47.44,10,2,3,0,0,0,2,3,1,456.5,14500.723,-8011.998,0,0,0,0,1836.3657 +7774,9472,16906,-9,16907,16909,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.96527,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16907,16909,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.8355517,8.0392551,0,20,-1,13.039045,0,2,2,2021,0,0,40,30,1,0,0,8.7256203,8.7256203,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.49,55.09,56.47,59.4,10,3,4,0,0,4,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16908,-9,16907,16909,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.4457,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16909,16907,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,6.3745999,6.2390046,0,22,1,-11.944984,0,3,2,2021,8,0,10,12,1,0,0,5.6729894,5.6729894,0,0,.05,0,0,0,0,0,0,0,0,0,0,56.47,59.4,62.49,55.09,1.666666666666667,3,4,0,0,6,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16910,-9,16907,16909,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1165.646,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7775,9473,16911,-9,16913,16914,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1021.1685,-9,1,1,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16912,-9,16913,16914,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.66327,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16913,16914,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.721365,8.5819931,0,10,1,7.0642905,0,-9,-9,2021,6,0,50,52,1,0,0,11.530505,11.530505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,12,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16914,16913,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.8725424,8.7261295,0,22,-1,-139.99583,0,1,1,2021,9,0,40,40,1,0,0,19.163492,19.163492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7776,9474,16915,16916,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.0711155,8.1260834,0,2,0,-18.170153,-9,-9,-9,2021,8,0,45,0,1,0,0,7.9420443,7.9420443,.05,.05,0,0,0,0,0,0,0,0,0,1.1176105,0,43.76,55.68,62.39,56.71,8.333333333333334,1,1,0,0,0,4,5,1,485.5,-4156.2578,294.57617,0,0,0,0,4079.9438 +7776,9474,16916,16915,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6149559,8.1103039,0,2,0,8.4995222,0,2,2,2021,7,0,37,47,1,0,0,13.635489,13.635489,.05,.05,0,0,0,0,0,0,0,0,0,1.5036851,0,62.39,56.71,43.76,55.68,10,1,1,0,0,5,4,5,1,485.5,-4156.2578,294.57617,0,0,0,0,4079.9438 +7777,9475,16917,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.7768345,7.5099244,0,0,0,-936.58252,0,2,-9,2021,13,3,50,45,1,3,0,5.8578467,5.8578467,.05,.05,0,0,0,0,0,0,0,0,0,3.8598828,0,44.25,56.64,-9,-9,5,1,1,0,1,11,8,3,1,2427,44871.695,41478.367,0,0,0,0,1309.7449 +7778,9476,16918,16920,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,7.4577942,7.5641189,0,8,-6,85.971443,0,2,2,2021,10,1,20,39,1,1,0,10.45475,10.45475,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,6.666666666666667,1,1,0,0,9,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7778,9476,16919,-9,16918,16920,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-806.84271,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7778,9476,16920,16918,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.6090155,8.5057135,0,8,6,-24.364208,0,-9,-9,2021,6,0,82,42,1,0,0,7.3556633,7.3556633,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,9,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7779,9477,16921,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9795794,7.6344032,0,0,0,-995.96448,-9,-9,-9,2021,20,7,29,0,1,7,0,11.229688,11.229688,0,0,0,0,0,0,0,0,0,0,0,1.0429301,0,24.87,49.21,-9,-9,3.333333333333333,1,1,0,0,8,5,4,0,707,-25253.148,0,0,0,0,0,1086.1814 +7780,9478,16922,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.2511,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,5,1,1,0,0,0,7,1,0,595,-69108.805,0,0,0,31905.906,0,33.768372 +7781,9479,16923,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.547513,8.9288883,0,10,-3,92.067055,0,3,3,2021,17,4,43,40,1,4,0,27.820999,27.820999,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,46.09,43.64,57.66,50.59,3.333333333333333,1,1,0,0,11,13,5,1,251,268231.59,390575.63,111986.47,53966.121,20677.168,3548.4741,3487.3235 +7781,9480,16924,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,9.0566044,9.1096954,0,10,3,17.517324,0,3,3,2021,7,0,43,43,1,0,0,21.19117,21.19117,0,0,0,0,0,0,0,0,0,0,0,5.5737548,0,57.66,50.59,46.09,43.64,10,1,1,0,0,11,13,5,1,516,145354.66,0,133973.14,973.68475,2581.2783,0,3703.3826 +7782,9481,16925,16926,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6028123,7.9629598,0,9,5,103.81171,0,2,2,2021,6,0,25,26,1,0,0,8.949955,8.949955,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,43.6,51.61,8.333333333333334,1,1,0,0,12,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7782,9481,16926,16925,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9925337,9.1344261,0,9,-5,14.41214,0,-9,-9,2021,11,0,48,48,1,0,0,21.320719,21.320719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7782,9481,16927,-9,16925,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1030.0403,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7783,9482,16928,16929,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5703239,8.5001822,0,2,20,-117.93201,0,1,1,2021,6,0,40,38,1,0,0,18.051525,18.051525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.32,44.13,49.65,57.01,8.333333333333334,4,2,0,0,9,7,5,1,1830,78545.773,22622.492,0,0,6192.9761,0,3246.5437 +7783,9482,16929,16928,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.2354803,8.4435482,0,2,-20,216.75916,0,-9,-9,2021,11,0,45,50,1,0,0,7.4773021,7.4773021,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.65,57.01,59.32,44.13,6.666666666666667,1,1,0,0,1,7,5,1,1830,78545.773,22622.492,0,0,6192.9761,0,3246.5437 +7784,9483,16930,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.6994905,7.6207399,0,0,-1076.1194,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.1972675,7.4041157,56.01,51.37,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,344,733030.5,428333.94,143068,0,0,0,2088.8159 +7784,9484,16931,-9,16930,-9,1,0,30,0,0,0,2,2,-9,0,2,8.3885336,8.5224199,0,0,0,-996.14392,0,1,-9,2021,11,2,20,50,1,2,0,26.049438,26.049438,.05,.05,0,0,0,0,0,0,1,1,0,7.9017491,0,50.32,24.46,-9,-9,6.666666666666667,1,1,0,1,6,4,4,1,90,34495.711,16241.987,0,0,0,0,2553.624 +7785,9485,16932,16934,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.6563435,8.1030493,0,20,-2,-48.238853,0,2,2,2021,19,7,37,41,1,7,0,15.883994,15.883994,.05,.05,0,0,0,0,0,0,1,1,0,2.0715086,0,42.67,55.98,52,55,6.666666666666667,1,1,0,0,9,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7785,9485,16933,-9,16932,16934,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-987.18121,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7785,9485,16934,16932,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.2387733,8.3250475,0,6,2,11.65237,0,-9,-9,2021,9,0,37,40,1,1,0,12.439591,12.439591,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,42.67,55.98,7,1,1,0,0,1,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7786,9486,16935,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.8121109,6.7142158,0,0,-1068.1879,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0374811,7.2502737,62.6,31.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1696,328179.66,51210.152,176544.59,0,0,0,724.66846 +7787,9487,16936,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.0236654,8.9457245,0,0,0,-1079.2367,0,2,2,2021,10,0,40,42,1,0,0,21.567724,21.567724,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.85,52.08,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,1236,-151551.8,197861.17,0,0,0,0,2643.5115 +7788,9488,16937,16938,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,40,-7,-21.665903,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,1775,959746.13,88753.875,306023.13,0,0,0,2274.4143 +7788,9488,16938,16937,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9990845,8.0376329,40,7,20.7138,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7256427,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,1,1775,959746.13,88753.875,306023.13,0,0,0,2274.4143 +7789,9489,16939,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8200593,7.7653337,0,0,0,-1068.532,0,-9,-9,2021,22,9,29,29,1,9,0,10.325885,10.325885,0,0,0,0,0,0,0,0,0,0,0,0,0,30.33,57.95,-9,-9,5,1,1,0,0,10,13,3,1,554,61362.613,0,0,0,0,562.9234,840.56384 +7790,9490,16940,-9,-9,-9,1,0,19,0,2,0,2,2,0,0,4,0,0,0,0,0,-987.21332,-9,3,2,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.9100858,0,36.45,62.92,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,268,-79828.664,0,0,0,0,0,264.59991 +7791,9491,16941,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7978344,7.8123159,6.3932328,0,0,-953.58002,0,3,3,2021,31,12,33,32,1,12,0,7.5275936,7.5275936,0,0,0,0,0,0,0,2,0,0,0,1.9330763,6.0474677,21.36,61.89,-9,-9,5,1,1,0,0,13,7,3,1,1109,0,0,0,0,0,0,1231.882 +7792,9492,16942,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-916.302,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.074399,0,58.44,30.31,-9,-9,0,1,1,0,0,0,10,1,0,586,465646.81,0,215161.77,0,0,0,410.5546 +7793,9493,16943,16944,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.2969675,7.9584107,10,0,-3.35063,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2857533,8.3564882,51,48,47.21,52.57,7,1,1,0,0,0,9,4,1,1768.5,2105880.5,1398383,757271.63,0,0,0,7951.5762 +7793,9493,16944,16943,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.5023227,7.8240528,45,0,-15.441369,0,2,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.9101391,7.8109994,47.21,52.57,51,48,8.333333333333334,1,1,0,0,11,9,4,1,1768.5,2105880.5,1398383,757271.63,0,0,0,7951.5762 +7793,9494,16945,-9,16944,16943,1,0,31,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1077.7975,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,1249,20910.875,123751.49,0,0,0,7.5616169,542.82196 +7794,9495,16946,16947,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.8057685,5.9647498,13,1,-13.403247,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,4.6047463,0,0,1,1,0,6.1648722,5.9089279,49.31,26.45,54.84,51.94,5,1,1,0,0,5,8,2,1,450.5,761615,136523.25,541537.13,0,0,0,2246.9011 +7794,9495,16947,16946,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.5362978,6.3181276,59,-1,-93.317589,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.1858044,54.84,51.94,49.31,26.45,8.333333333333334,1,1,0,0,0,8,2,1,450.5,761615,136523.25,541537.13,0,0,0,2246.9011 +7795,9496,16948,16949,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.7570705,8.3969755,0,7,-4,-43.21043,0,2,2,2021,11,2,48,45,1,2,0,15.781896,15.781896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.14,53.97,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16949,16948,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,0,0,0,7,4,-23.996246,0,-9,-9,2021,8,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.14,53.97,8.333333333333334,1,1,0,0,4,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16950,-9,16949,16948,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.69965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16951,-9,16949,16948,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.062,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7796,9497,16952,-9,-9,-9,1,0,25,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1071.4518,-9,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.11,51.96,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,243,-57762.375,0,0,0,0,0,-607.32385 +7797,9498,16953,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,9.0357733,8.917963,0,0,-1111.4751,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8077517,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,4,13,5,1,159,1497208.3,760190.25,425234.72,0,0,0,4358.1045 +7798,9499,16954,16955,-9,-9,1,1,62,0,0,0,2,2,-9,1,4,0,0,0,9,-1,0,0,3,3,2021,17,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,36.18,52.56,49,48,5,1,1,0,0,9,12,1,0,632.5,133661.58,-31903.781,6641.0356,0,0,0,869.31415 +7798,9499,16955,16954,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,0,0,0,9,1,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,36.18,52.56,7,1,1,0,0,0,12,1,0,632.5,133661.58,-31903.781,6641.0356,0,0,0,869.31415 +7799,9500,16956,16957,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1246996,8.6729708,49,0,15.767237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9688878,8.4297075,64.23,44.69,61.85,47.26,8.333333333333334,1,1,0,0,6,9,4,1,1114.5,1285849.6,761222,293147.31,0,0,0,4043.3892 +7799,9500,16957,16956,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.0564651,5.8781195,49,0,-100.0422,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0505524,5.9530654,61.85,47.26,64.23,44.69,10,1,1,0,0,5,9,4,1,1114.5,1285849.6,761222,293147.31,0,0,0,4043.3892 +7800,9501,16958,16959,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.0380745,8.9955873,0,11,-1,-112.29914,0,3,2,2021,14,4,40,40,1,4,0,26.315786,26.315786,0,0,.05,0,0,0,0,7,1,1,0,0,0,45.81,58.99,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16959,16958,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.3529367,6.2936163,0,11,1,-28.755756,0,2,2,2021,5,0,16,8,1,0,0,3.3342128,3.3342128,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,45.81,58.99,6.666666666666667,1,1,0,0,6,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16960,-9,16959,16958,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.93542,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16961,-9,16959,16958,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-826.34564,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7801,9502,16962,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.4891157,5.7469397,0,0,-1020.3884,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7999587,5.3491716,60.31,11.75,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,269,-44865.77,70535.523,0,0,2228.7964,0,681.12244 +7802,9503,16963,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1069.2605,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8987682,0,49.23,45.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1234,0,0,0,0,0,0,914.854 +7803,9504,16964,16965,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3432922,7.9115691,0,1,4,88.536263,0,1,1,2021,9,2,35,55,1,2,0,11.950315,11.950315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,6.666666666666667,1,1,0,0,5,5,5,0,1734,205763.09,311250.41,0,0,943.85358,0,2916.3379 +7803,9504,16965,16964,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3395691,8.3443346,0,1,-4,-94.260414,-9,-9,-9,2021,6,0,39,0,1,0,0,10.955765,10.955765,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,1,0,5,5,0,1734,205763.09,311250.41,0,0,943.85358,0,2916.3379 +7804,9505,16966,16967,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.9751506,8.1016064,41,-7,62.820625,0,3,2,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,7.6873841,51.39,59.18,37.19,23.94,8.333333333333334,1,1,0,0,7,12,4,1,209,1373426.5,1119116.3,437723.78,171698.75,0,0,4502.1563 +7804,9505,16967,16966,-9,-9,1,1,69,0,0,0,1,1,-9,0,1,0,8.1827593,8.3835182,41,7,87.904999,0,2,2,2021,20,7,0,0,4,7,0,0,0,.05,.05,0,1,0,30.868027,0,0,1,1,0,7.5012817,8.1429729,37.19,23.94,51.39,59.18,3.333333333333333,1,1,0,0,2,12,4,1,209,1373426.5,1119116.3,437723.78,171698.75,0,0,4502.1563 +7805,9506,16968,-9,16969,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.1226,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16969,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,6.9242082,7.145771,0,0,0,-1066.1951,0,3,-9,2021,12,1,20,19,1,1,0,6.4465852,6.4465852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16970,-9,16969,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.10876,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16971,-9,16969,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.53741,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7806,9507,16972,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.82013,-9,3,3,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.31,42.02,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,2654,23101.768,0,0,0,0,0,1186.4996 +7806,9508,16973,-9,16972,-9,1,1,20,0,0,0,2,2,-9,0,4,5.8919129,6.1153235,0,0,0,-902.08545,-9,2,-9,2021,0,0,30,0,1,0,1,1.3695188,1.3695188,0,0,0,0,0,0,0,0,1,1,0,0,0,31.31,56.38,-9,-9,10,1,1,0,0,0,13,2,0,995,0,0,0,0,0,0,513.84894 +7807,9509,16974,16975,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.2914867,8.2426958,0,43,0,-15.283876,0,3,3,2021,9,0,30,30,1,0,0,14.059977,14.059977,0,0,0,0,0,0,0,0,0,0,0,8.1886959,0,48.45,57.49,54.37,41.1,8.333333333333334,1,1,0,0,12,7,5,1,725,2978420,1474738,1115594.9,-2969.4121,0,-435.20514,5478.2646 +7807,9509,16975,16974,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9228301,8.445713,43,0,13.034039,0,3,3,2021,7,1,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.812748,8.0198326,54.37,41.1,48.45,57.49,8.333333333333334,1,1,0,0,11,7,5,1,725,2978420,1474738,1115594.9,-2969.4121,0,-435.20514,5478.2646 +7808,9510,16976,16977,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.3483906,6.6604023,47,-4,107.49366,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8717518,6.582788,57.16,56.15,53,47,6.666666666666667,2,3,0,0,3,8,3,1,285,4752413.5,1756834.3,1995774.8,0,0,0,3106.9741 +7808,9510,16977,16976,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8477478,7.9920526,7,4,138.06065,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6890955,53,47,57.16,56.15,7,2,3,0,0,0,8,3,1,285,4752413.5,1756834.3,1995774.8,0,0,0,3106.9741 +7809,9511,16978,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.6683,0,2,1,2021,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4208479,0,36.03,61.86,-9,-9,6.666666666666667,1,1,0,0,10,1,1,1,280,20465.971,0,0,0,0,-196.93858,-165.55583 +7810,9512,16979,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.7371559,7.6794562,0,0,-1140.2769,0,3,2,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,7.4889441,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,629,600813.06,349167.19,210839.27,41088.488,0,0,389.57462 +7811,9513,16980,-9,16983,16981,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.61017,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16981,16983,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.3735027,9.42132,0,11,3,45.438259,0,-9,-9,2021,7,0,40,35,1,0,0,44.837082,44.837082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,24.04,61.89,8.333333333333334,1,1,0,0,14,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16982,-9,16983,16981,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.4585,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16983,16981,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,11,-3,57.089745,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.04,61.89,48.87,58.55,5,1,1,0,0,9,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7812,9514,16984,16987,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.4864545,7.5819836,0,21,-5,-48.29425,0,2,1,2021,13,2,15,-9,1,2,0,13.083429,13.083429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,49.59,58.37,8.333333333333334,2,3,0,0,13,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16985,-9,16984,16987,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1091.7936,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16986,-9,16984,16987,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.954,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16987,16984,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.502429,9.0531874,0,21,5,-80.604988,0,3,2,2021,6,0,35,35,1,0,0,31.53293,31.53293,.05,.05,0,0,0,0,0,0,1,1,0,4.4797812,0,49.59,58.37,30.22,61.83,8.333333333333334,2,3,0,0,12,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7813,9515,16988,16989,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.8836999,7.1047478,2,-4,101.78481,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4102073,6.7748857,60.12,54.8,58.33,39.49,10,1,1,0,0,0,6,3,1,981.5,842797,475381.13,174541.73,0,0,0,2475.6489 +7813,9515,16989,16988,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.5294113,7.0883017,2,4,-27.038681,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8137136,6.975389,58.33,39.49,60.12,54.8,8.333333333333334,1,1,0,0,0,6,3,1,981.5,842797,475381.13,174541.73,0,0,0,2475.6489 +7814,9516,16990,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.71326,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.81,35.37,-9,-9,10,1,1,0,0,0,4,1,1,679,117986.66,0,0,0,0,0,1174.2384 +7815,9517,16991,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.8774605,8.7839127,0,0,0,-895.59406,0,2,3,2021,7,0,38,38,1,0,0,23.480312,23.480312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,1471,194565.7,298821.22,0,0,10661.289,0,2031.2893 +7816,9518,16992,16993,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.7163401,7.8310962,48,5,-110.18159,0,-9,-9,2021,21,8,0,0,4,8,0,0,0,.05,.05,0,1,0,4.7618046,0,2,1,1,0,8.85009,7.8991327,42.73,36.65,49,48,3.333333333333333,1,1,0,0,5,6,4,1,180,374539.56,14126.58,217131.72,100392.66,5170.9414,490.68985,5730.7646 +7816,9518,16993,16992,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.6957936,7.9473767,0,48,-5,-161.81146,0,2,2,2021,10,0,16,18,1,0,0,16.313265,16.313265,0,0,0,0,0,0,0,0,1,1,0,2.0960739,0,49,48,42.73,36.65,8.333333333333334,1,1,0,0,12,6,4,1,180,374539.56,14126.58,217131.72,100392.66,5170.9414,490.68985,5730.7646 +7817,9519,16994,-9,16995,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.49188,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,933.5,32505.525,-61130.625,169254.88,11737.805,0,3023.2341,1312.3258 +7817,9519,16995,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7736044,7.918571,0,0,0,-1064.8182,0,2,2,2021,12,2,27,25,1,2,0,9.2650118,9.2650118,0,0,0,0,0,0,0,0,1,0,1,0,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,12,12,3,1,933.5,32505.525,-61130.625,169254.88,11737.805,0,3023.2341,1312.3258 +7818,9520,16996,-9,16998,16997,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1142.5479,-9,2,1,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.43294162,0,40.55,43.66,-9,-9,6.666666666666667,1,1,0,0,1,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9520,16997,16998,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.7507982,9.9014492,0,26,7,8.5144434,0,2,2,2021,9,0,48,50,1,0,0,31.79178,31.79178,.05,.05,0,0,0,0,0,0,0,0,0,.93214488,0,57.84,34,58.15,52.91,8.333333333333334,1,1,0,0,11,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9520,16998,16997,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,0,0,0,25,-7,-1.8574588,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.84,34,10,1,1,0,0,5,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9521,16999,-9,16998,16997,1,1,20,0,0,0,2,2,-9,0,4,7.987679,8.3027306,0,0,0,-1096.1921,0,2,1,2021,7,0,42,35,1,0,1,12.585623,12.585623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1181,138364.95,91068.125,0,0,0,0,1622.5906 +7819,9522,17000,17001,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.290596,7.9785819,0,13,-1,69.058182,0,1,2,2021,10,1,38,19,1,1,0,8.3491077,8.3491077,.05,.05,0,0,0,0,0,0,1,1,0,.71029443,0,57.06,57.76,46.61,56.93,8.333333333333334,1,1,0,0,8,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17001,17000,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.5967226,8.5592804,0,13,1,29.583725,0,2,2,2021,16,5,45,40,1,5,0,16.706312,16.706312,.05,.05,0,0,0,0,0,0,1,1,0,1.2121137,0,46.61,56.93,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17002,-9,17000,17001,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.04053,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17003,-9,17000,17001,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.77698,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7820,9523,17004,17005,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,9.1222725,9.0223999,41,0,-66.148705,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.281167,9.1382227,42.39,56.1,33.32,50.55,8.333333333333334,1,1,0,0,9,9,5,1,590.5,2774879.8,1849547.3,682170.06,0,0,0,3894.562 +7820,9523,17005,17004,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.7942848,6.7406855,43,0,88.644745,0,3,2,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8589759,7.0717597,33.32,50.55,42.39,56.1,5,1,1,0,0,8,9,5,1,590.5,2774879.8,1849547.3,682170.06,0,0,0,3894.562 +7821,9524,17006,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.0119925,6.4250236,0,0,-947.5921,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7785854,6.3040633,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,653,252662.7,-5523.5005,128922.53,0,0,0,1038.0325 +7822,9525,17007,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3223181,8.6450415,0,0,0,-1057.3954,-9,-9,-9,2021,11,1,41,0,1,1,0,10.318807,10.318807,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,61.41,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,632,105555.08,0,0,0,623.68707,0,1662.9943 +7823,9526,17008,17009,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.6322365,9.6607971,0,27,7,-77.190742,0,2,2,2021,8,1,50,60,1,1,0,34.408394,34.408394,.05,.05,.05,0,0,0,0,2,0,0,0,6.3517842,0,54.86,47.5,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,737,898601.63,385933.75,414973.13,3755.6367,3658.7163,0,7664.7466 +7823,9526,17009,17008,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.6930628,7.4363985,0,28,-7,58.608543,0,-9,3,2021,9,0,25,30,1,0,0,8.8402348,8.8402348,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.86,47.5,10,1,1,0,0,9,5,5,1,737,898601.63,385933.75,414973.13,3755.6367,3658.7163,0,7664.7466 +7824,9527,17010,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.3052015,4.3292031,0,0,-970.36511,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,3.9603684,0,18.691595,0,1,1,0,5.0024576,4.0265779,52.76,35,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2259,181237.39,172778.14,61065.609,0,0,0,607.26758 +7825,9528,17011,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.5215616,7.4652338,0,0,0,-1001.6613,0,-9,-9,2021,13,2,20,20,1,2,0,11.994231,11.994231,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.72,33.18,-9,-9,5,1,1,0,1,12,8,3,1,1218,256770.61,22846.5,135094.58,0,0,2428.8503,1338.8364 +7826,9529,17012,17013,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3375444,8.3531542,0,6,-3,-18.192911,0,2,2,2021,14,2,43,44,1,2,0,11.13898,11.13898,.05,.05,0,0,0,0,0,7,0,0,0,3.8146331,0,42.5,53.5,39.16,62.84,3.333333333333333,1,1,0,0,11,11,5,1,3107,114238.23,10166.23,76584.133,197.15674,2792.7397,0,3280.9106 +7826,9529,17013,17012,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.975894,8.2549343,0,6,3,-59.331638,0,-9,-9,2021,8,0,43,61,1,0,0,10.934706,10.934706,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,39.16,62.84,42.5,53.5,5,1,1,0,0,5,11,5,1,3107,114238.23,10166.23,76584.133,197.15674,2792.7397,0,3280.9106 +7827,9530,17014,17015,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5079823,8.4024038,0,2,3,-39.355209,0,-9,-9,2021,11,1,48,73,1,1,0,9.1714325,9.1714325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,49.11,42.17,8.333333333333334,1,1,0,0,4,4,4,0,1030.5,139123.03,43392.066,135320.56,0,3680.2759,6676.9048,1451.4731 +7827,9530,17015,17014,-9,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,2,-3,66.231163,-9,-9,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,42.17,62.49,55.09,8.333333333333334,1,1,0,0,0,4,4,0,1030.5,139123.03,43392.066,135320.56,0,3680.2759,6676.9048,1451.4731 +7828,9531,17016,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.2998,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,-9,-9,8.333333333333334,1,1,0,0,8,9,1,1,256,-60410.711,0,0,0,0,0,941.08069 +7829,9532,17017,17018,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,3.1787429,3.065697,10,-3,37.090992,0,3,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.9034526,2.8634064,69.90000000000001,22.19,41.88,22.93,8.333333333333334,1,1,0,0,0,5,2,0,866,-63603.145,0,0,0,0,0,1849.6499 +7829,9532,17018,17017,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,3.8249137,3.557889,10,3,57.4021,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,31.611341,0,27,1,1,0,4.7241015,3.5242038,41.88,22.93,69.90000000000001,22.19,8.333333333333334,1,1,0,0,0,5,2,0,866,-63603.145,0,0,0,0,0,1849.6499 +7829,9533,17019,-9,17017,17018,1,0,27,0,0,0,2,2,-9,0,4,7.9090796,7.7392745,0,0,0,-1009.6473,0,2,3,2021,13,1,41,38,1,1,1,7.6536813,7.6536813,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43,45.99,-9,-9,6.666666666666667,1,1,0,0,10,5,4,0,480,45622.09,-6735.2236,0,0,4413.9336,0,1299.8197 +7830,9534,17020,17021,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,68,-3,134.12656,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0417571,0,48.55,28.3,43.5,38.28,10,1,1,0,0,0,2,2,1,410,37428.156,64801.84,0,0,0,0,1797.1101 +7830,9534,17021,17020,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,6.1256061,6.1569724,68,3,-46.140057,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.032619,43.5,38.28,48.55,28.3,10,1,1,0,0,0,2,2,1,410,37428.156,64801.84,0,0,0,0,1797.1101 +7831,9535,17022,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.7315774,7.2796063,0,0,-1141.3645,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4174919,52.3,43.16,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3552,339371,188540,71000.383,0,0,0,1374.7703 +7832,9536,17023,-9,-9,-9,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-1024.9718,-9,1,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5063677,0,31.86,59.67,-9,-9,6.666666666666667,4,2,0,1,5,2,1,1,396,74052.055,0,0,0,0,0,488.54849 +7833,9537,17024,17025,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.0126629,9.210557,0,30,0,16.167252,0,3,2,2021,9,0,38,40,1,0,0,25.459293,25.459293,.05,.05,0,0,0,0,0,0,1,1,0,5.4070158,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,15,5,5,1,1413.5,1138083.4,703371.25,514403.75,225494.61,0,0,3916.4429 +7833,9537,17025,17024,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.764401,7.8348403,0,30,0,-30.47641,0,2,2,2021,10,0,16,13,1,0,0,20.447676,20.447676,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,15,5,5,1,1413.5,1138083.4,703371.25,514403.75,225494.61,0,0,3916.4429 +7833,9538,17026,-9,17025,17024,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1042.2184,0,1,1,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,5,1,1,1,0,0,5,1,1,688,137075.52,0,0,0,0,0,0 +7834,9539,17027,17028,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8789072,8.7556849,0,18,0,-70.55278,0,-9,1,2021,11,0,40,40,1,0,0,25.656649,25.656649,.05,.05,0,0,0,0,0,0,0,0,0,7.0710325,0,58.15,52.91,56.11,44.4,10,1,1,0,0,14,7,5,1,1116.5,687443.38,274450.5,312347.38,88672.148,0,0,5936.79 +7834,9539,17028,17027,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.3710384,8.1234331,0,18,0,70.124847,0,2,3,2021,9,0,37,37,1,0,0,11.262875,11.262875,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.11,44.4,58.15,52.91,8.333333333333334,1,1,0,0,14,7,5,1,1116.5,687443.38,274450.5,312347.38,88672.148,0,0,5936.79 +7835,9540,17029,17030,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,7,-5,67.891579,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,52,54.51,8,1,1,0,0,0,10,3,0,1027.5,435570.63,0,537794.5,0,0,0,1556.7887 +7835,9540,17030,17029,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.5966625,8.1929312,0,7,5,4.7664871,0,3,2,2021,10,0,60,52,1,0,0,7.3460784,7.3460784,0,0,0,0,0,0,0,7,1,1,0,0,0,52,54.51,52,53,6.666666666666667,1,1,0,1,7,10,3,0,1027.5,435570.63,0,537794.5,0,0,0,1556.7887 +7836,9541,17031,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9346895,9.1597891,0,1,6,-20.551865,-9,2,2,2021,8,0,41,0,1,0,0,23.289589,23.289589,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,39.16,62.84,8.333333333333334,1,1,0,0,9,5,5,1,140,298891.84,-16524.361,128672.37,10590.3,0,0,2493.53 +7836,9542,17032,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4215784,8.3401833,0,1,-6,-174.82275,-9,-9,-9,2021,12,2,37,0,1,2,0,17.042627,17.042627,.05,.05,0,0,0,0,0,0,0,0,0,.41226694,0,39.16,62.84,51.49,57.57,5,1,1,0,0,2,5,5,1,123,-34863.809,75963.766,0,0,0,0,923.87378 +7837,9543,17033,-9,17034,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.61041,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,3,0,317.5,102895.69,-22393.764,98744.648,91438.531,0,0,1654.302 +7837,9543,17034,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,7.5215011,7.3403301,0,0,0,-1027.1626,-9,-9,-9,2021,12,0,30,0,1,0,0,8.3841696,8.3841696,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.54,53.32,-9,-9,6.666666666666667,1,1,0,0,4,2,3,0,317.5,102895.69,-22393.764,98744.648,91438.531,0,0,1654.302 +7838,9544,17035,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.3060231,7.2418637,0,0,0,-1080.4296,0,3,3,2021,20,8,50,40,1,8,0,2.8340051,2.8340051,0,0,0,0,0,0,0,2,0,0,0,0,0,38.51,51.4,-9,-9,6.666666666666667,1,1,0,0,14,2,3,1,387,543899.06,225946.14,373727.59,89620.266,0,0,296.10425 +7839,9545,17036,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,8.3475828,8.1733704,6.126482,0,0,-922.40381,0,2,3,2021,36,12,30,0,1,12,0,14.41628,14.41628,.05,.05,0,0,0,0,0,96,1,0,1,5.7406259,0,16.85,31.81,-9,-9,1.666666666666667,1,1,0,1,1,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9545,17037,-9,17036,17039,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.4496,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9545,17038,-9,17036,17039,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.7095,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9546,17039,-9,-9,-9,1,1,27,0,2,0,2,2,-9,0,2,0,0,0,0,0,-944.06543,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.44,48.18,-9,-9,6.666666666666667,1,1,1,0,3,9,1,0,1659,35249.465,0,0,0,0,0,534.34015 +7840,9547,17040,17041,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.6891479,7.8831134,47,2,-105.87234,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4393992,7.3772545,60.7,47.65,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,857,1108250.4,668211.63,270016.88,0,0,0,3093.1641 +7840,9547,17041,17040,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0458589,7.1462216,47,-2,73.160896,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3048887,7.0376172,57.16,56.15,60.7,47.65,8.333333333333334,1,1,0,0,0,10,3,1,857,1108250.4,668211.63,270016.88,0,0,0,3093.1641 +7841,9548,17042,-9,17043,17044,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.92413,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9548,17043,17044,-9,-9,1,0,53,1,2,0,3,3,-9,0,2,7.2668781,7.5138984,0,31,-12,24.621738,0,2,2,2021,19,6,32,45,1,6,0,6.0989294,6.0989294,0,0,0,0,0,0,0,0,1,1,0,0,0,45.88,41.51,52,47,3.333333333333333,1,1,0,1,6,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9548,17044,17043,-9,-9,1,1,65,1,2,0,2,2,-9,0,3,8.5448542,8.8789816,8.441638,5,12,75.620499,0,-9,-9,2021,10,0,50,50,1,1,0,10.963722,10.963722,0,0,0,1,0,0,0,0,1,1,0,0,8.4290085,52,47,45.88,41.51,7,1,1,0,0,1,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9549,17045,-9,17046,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.144,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,2,2,0,437.5,97389.664,0,0,0,0,0,1057.5646 +7841,9549,17046,-9,17043,17044,1,0,22,1,2,0,2,2,-9,0,2,6.7563033,7.0762396,0,0,0,-1083.1096,0,3,2,2021,8,1,20,20,1,1,1,4.5716276,4.5716276,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,47.88,-9,-9,10,1,1,0,0,3,2,2,0,437.5,97389.664,0,0,0,0,0,1057.5646 +7842,9550,17047,17048,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.4928894,6.2532396,0,34,-3,-186.43398,0,3,2,2021,13,2,8,10,1,2,0,9.1369467,9.1369467,0,0,0,0,0,0,0,2,1,1,0,0,0,50.08,55.33,50.59,29.61,8.333333333333334,1,1,0,0,12,10,3,1,1024.5,631722.94,310602.56,245556.59,0,0,0,1743.7198 +7842,9550,17048,17047,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2075343,7.2214203,34,3,-39.560715,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3280416,7.3643851,50.59,29.61,50.08,55.33,10,1,1,0,0,10,10,3,1,1024.5,631722.94,310602.56,245556.59,0,0,0,1743.7198 +7843,9551,17049,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,1,7.0644989,7.5956507,0,0,0,-902.72815,0,-9,-9,2021,9,0,24,0,1,0,0,6.6394324,6.6394324,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,35.33,-9,-9,3.333333333333333,1,1,0,0,3,7,3,0,104,-92465.836,0,0,0,0,0,617.76331 +7844,9552,17050,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1197.4448,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,23.78,47.59,-9,-9,5,1,1,0,0,0,6,1,0,808,30785.447,0,0,0,0,0,941.19977 +7845,9553,17051,17052,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,22,6,40.276966,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.54,46.62,57.59,46.65,8.333333333333334,1,1,0,0,0,2,2,0,1555,201274.16,144663.63,94119.234,0,0,0,1752.8882 +7845,9553,17052,17051,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.4113288,5.7268968,17,-6,84.006844,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0675101,5.8226442,57.59,46.65,48.54,46.62,8.333333333333334,1,1,0,0,7,2,2,0,1555,201274.16,144663.63,94119.234,0,0,0,1752.8882 +7846,9554,17053,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,6.9476137,7.0868554,0,0,-952.56042,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0807667,67.34,37.81,-9,-9,10,1,1,0,0,0,12,2,0,1460,121817.66,-14941.683,0,0,0,0,1879.6122 +7847,9555,17054,17055,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.1126671,8.384798,0,3,1,-69.552879,0,-9,-9,2021,10,1,88,41,1,1,0,5.2534342,5.2534342,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,33.17,56.08,8.333333333333334,1,1,0,0,4,10,5,0,544.5,212353.06,256231.33,110104.23,99003.594,15411.52,6738.1265,3814.3916 +7847,9555,17055,17054,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.3245687,8.2402315,0,3,-1,20.640425,0,-9,-9,2021,16,4,60,0,1,4,0,7.2334828,7.2334828,0,0,0,0,0,0,0,0,0,0,0,0,0,33.17,56.08,52.23,55.6,6.666666666666667,1,1,0,0,7,10,5,0,544.5,212353.06,256231.33,110104.23,99003.594,15411.52,6738.1265,3814.3916 +7848,9556,17056,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1023.1503,0,2,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,19.35,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,378,0,0,0,0,0,0,970.80408 +7849,9557,17057,17058,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,8.5891714,8.6114912,29,-1,-27.168285,0,2,2,2021,18,6,0,40,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.6926532,8.5098104,37.12,51.5,54.2,57.49,6.666666666666667,1,1,0,0,10,6,5,1,309,2995924,2331769.5,441738.94,43613.164,0,0,3536.7295 +7849,9557,17058,17057,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.1885653,8.1945381,0,29,1,83.03318,0,2,2,2021,10,0,24,24,1,0,0,21.693171,21.693171,0,0,0,0,0,0,0,0,1,1,0,4.8641787,0,54.2,57.49,37.12,51.5,8.333333333333334,1,1,0,0,9,6,5,1,309,2995924,2331769.5,441738.94,43613.164,0,0,3536.7295 +7849,9558,17059,-9,17058,17057,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-984.04596,-9,1,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6649313,0,47.45,54.03,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,1174,-24941.027,0,0,0,0,0,-736.35004 +7849,9559,17060,-9,17058,17057,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-936.50873,-9,1,2,2021,20,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6499786,0,30.07,63.04,-9,-9,8.333333333333334,1,1,1,0,1,6,1,1,1154,0,0,0,0,0,0,-851.49139 +7850,9560,17061,17062,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4616103,7.5223894,48,-4,-99.916351,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.310164,7.6388655,55.19,54.26,56,51,6.666666666666667,1,1,0,0,9,9,3,1,2168,1277473.8,667086.19,343540.25,0,0,0,3392.166 +7850,9560,17062,17061,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.4082513,7.5492406,10,4,-41.717136,0,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.502336,56,51,55.19,54.26,3.333333333333333,1,1,0,0,10,9,3,1,2168,1277473.8,667086.19,343540.25,0,0,0,3392.166 +7851,9561,17063,17064,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,53,3,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.16,44.66,49.14,35.82,5,2,3,0,1,3,8,2,1,394.5,1109608,458473.38,508506.53,0,0,0,894.62244 +7851,9561,17064,17063,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,0,0,53,-3,0,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,35.82,38.16,44.66,7,2,3,0,0,0,8,2,1,394.5,1109608,458473.38,508506.53,0,0,0,894.62244 +7852,9562,17065,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.0229611,6.9954133,0,0,-1069.7565,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.64009428,0,1,1,0,3.6187847,6.9315939,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1512,804473.88,191638.52,698458.44,0,0,0,1651.7256 +7853,9563,17066,-9,17068,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.32336,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7853,9563,17067,-9,17068,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.1113,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7853,9563,17068,-9,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.0957212,8.739809,0,0,0,-958.82477,-9,2,2,2021,17,5,47,0,1,5,0,20.046103,20.046103,.05,.05,.05,0,0,0,0,0,1,1,0,2.5888286,0,44,52,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7854,9564,17069,-9,17070,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.4516,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,0,1424,168612.13,81629.766,224368.36,197765.83,0,0,2424.7559 +7854,9564,17070,-9,-9,-9,1,0,23,0,1,0,1,1,1,0,4,8.7984486,8.9684,6.4832458,0,0,-909.70477,-9,-9,-9,2021,13,2,26,0,1,2,0,20.932304,20.932304,.05,.05,0,0,0,0,0,0,1,1,0,6.203279,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,1,13,5,0,1424,168612.13,81629.766,224368.36,197765.83,0,0,2424.7559 +7855,9565,17071,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,9.4607229,9.5778866,0,0,0,-1012.8165,0,-9,-9,2021,12,1,40,45,1,1,0,40.818974,40.818974,.05,.05,0,0,0,0,0,0,0,0,0,5.5628972,0,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,11,10,5,0,2048,166529.64,1977.1462,0,0,0,0,5038.7759 +7856,9566,17072,17073,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2464552,8.3640594,0,5,4,6.6918464,0,3,3,2021,16,4,48,48,1,4,0,10.814455,10.814455,0,0,0,0,0,0,0,0,0,0,0,0,0,41.2,49.96,44.84,53.55,3.333333333333333,2,3,0,0,10,10,5,1,160.5,3878284.8,1274146.8,737866.63,717.86011,0,0,3122.6223 +7856,9566,17073,17072,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3933802,8.5119629,0,5,-4,5.0609059,0,3,2,2021,11,0,50,50,1,0,0,10.853521,10.853521,0,0,0,0,0,0,0,0,0,0,0,0,0,44.84,53.55,41.2,49.96,6.666666666666667,2,3,0,0,10,10,5,1,160.5,3878284.8,1274146.8,737866.63,717.86011,0,0,3122.6223 +7857,9567,17074,17075,-9,-9,1,1,34,0,0,0,3,3,-9,1,4,0,0,0,2,-2,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.17,47.91,35.97,36.43,8.333333333333334,1,1,1,0,2,13,1,0,750.5,0,0,0,0,0,0,2491.7568 +7857,9567,17075,17074,-9,-9,1,0,36,0,0,0,3,3,-9,1,2,0,0,0,2,2,0,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,36.43,57.17,47.91,6.666666666666667,1,1,0,0,0,13,1,0,750.5,0,0,0,0,0,0,2491.7568 +7858,9568,17076,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.3708,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,2111,1240053.1,0,942866.81,0,0,0,2057.4275 +7859,9569,17077,17078,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.1454239,8.1031113,0,1,0,14.608456,-9,-9,-9,2021,9,0,37,0,1,0,0,10.76757,10.76757,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.71,61.53,6.666666666666667,1,1,0,0,1,8,4,0,1111.5,55032.914,-120824.71,0,0,0,0,3171.6626 +7859,9569,17078,17077,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.0109959,8.2068615,0,1,0,-51.038956,-9,-9,-9,2021,10,2,42,0,1,2,0,7.985599,7.985599,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,54.2,57.49,8.333333333333334,1,1,0,0,5,8,4,0,1111.5,55032.914,-120824.71,0,0,0,0,3171.6626 +7860,9570,17079,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-985.9472,0,-9,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2423282,0,25.64,46.2,-9,-9,6.666666666666667,1,1,0,0,9,9,1,1,337,41281.625,0,178904.19,0,0,0,556.74152 +7861,9571,17080,17081,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,8,-6,158.74577,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5247061,0,50.35,50.22,43.49,43.6,8.333333333333334,1,1,0,0,0,12,2,1,388.5,209757.47,158771.47,166110.44,0,0,0,3249.8687 +7861,9571,17081,17080,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.2885356,7.1192341,8,6,-63.779892,0,1,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.557673,7.3171048,43.49,43.6,50.35,50.22,8.333333333333334,1,1,0,0,2,12,2,1,388.5,209757.47,158771.47,166110.44,0,0,0,3249.8687 +7862,9572,17082,17083,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.1264982,7.4871874,51,4,1.5296854,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,7.4589548,7.4293804,55,45,53,45,8,1,1,0,0,0,11,3,1,1066,210477.06,0,0,0,0,0,3752.8379 +7862,9572,17083,17082,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.7432837,5.7512822,51,-4,-94.302254,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3234482,5.6623211,53,45,55,45,8,1,1,0,0,0,11,3,1,1066,210477.06,0,0,0,0,0,3752.8379 +7863,9573,17084,17085,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.7095242,8.8342638,0,10,2,-45.846684,0,2,2,2021,7,0,39,39,1,0,0,16.995951,16.995951,0,0,0,0,0,0,0,0,0,0,0,2.4326448,0,60.12,54.8,36.37,61.5,10,1,1,0,0,11,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7863,9573,17085,17084,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.3895521,9.7124805,0,10,-2,-121.25272,0,2,2,2021,21,9,54,87,1,9,0,30.633402,30.633402,.05,.05,0,0,0,0,0,0,0,0,0,4.2355905,0,36.37,61.5,60.12,54.8,5,1,1,0,0,11,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7863,9573,17086,-9,17084,17085,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-907.32727,-9,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4897664,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,4,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7864,9574,17087,17088,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.7948709,7.0780649,0,3,-12,127.47307,0,2,1,2021,11,0,20,20,1,0,0,6.3729224,6.3729224,0,0,0,0,0,0,0,0,1,1,0,0,0,49.07,38.32,60.6,43.75,6.666666666666667,1,1,0,0,10,4,3,1,982.5,34799.711,0,123063.83,12664.425,644.54285,0,2536.8279 +7864,9574,17088,17087,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.6871443,7.6260705,3,12,42.14323,0,3,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6596451,7.3211513,60.6,43.75,49.07,38.32,8.333333333333334,1,1,0,0,0,4,3,1,982.5,34799.711,0,123063.83,12664.425,644.54285,0,2536.8279 +7865,9575,17089,17090,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.800869,8.8377914,0,31,-4,-42.647869,0,2,2,2021,10,0,38,37,1,0,0,23.153786,23.153786,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,499,685106,44524.941,369124.31,62326.188,0,0,10854.68 +7865,9575,17090,17089,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.5956144,9.7592983,0,31,4,1.7007569,0,3,3,2021,5,0,46,40,1,0,0,43.208511,43.208511,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,499,685106,44524.941,369124.31,62326.188,0,0,10854.68 +7865,9576,17091,-9,17089,17090,1,1,19,0,0,0,2,2,-9,0,4,7.9083114,8.1456203,0,0,0,-983.6731,0,2,2,2021,11,0,44,45,1,0,1,8.9761515,8.9761515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.55,51.64,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,388,71888.094,-74433.094,0,0,0,0,1865.7548 +7866,9577,17092,-9,17093,17094,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-915.83875,-9,3,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9577,17093,17094,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,6.710063,6.6893663,0,33,-24,-16.366726,0,-9,-9,2021,12,0,16,16,1,2,0,6.3501525,6.3501525,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,53,47,7,4,2,0,0,1,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9577,17094,17093,-9,-9,1,1,76,0,1,0,2,2,-9,0,3,0,7.1666417,6.9959207,33,24,17.258318,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2227449,53,47,47,49,7,1,1,0,0,0,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9578,17095,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,3,0,4.4767895,4.7207365,0,0,-937.95642,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7645283,0,46.67,55.57,-9,-9,8.333333333333334,4,2,0,0,2,6,2,0,265,-94020.398,0,0,0,20677.838,4000.3367,1685.0508 +7867,9579,17096,17097,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.492732,8.4047384,0,6,1,-44.32481,0,-9,-9,2021,8,1,53,52,1,1,0,9.3586397,9.3586397,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,46.4,42.22,8.333333333333334,1,1,0,0,10,13,5,1,647.5,-115721.41,0,0,0,0,0,3556.7708 +7867,9579,17097,17096,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.0259991,7.9422441,0,6,-1,-4.7803159,0,2,2,2021,12,2,38,37,1,2,0,9.5222473,9.5222473,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,42.22,58.3,52.91,10,1,1,0,0,8,13,5,1,647.5,-115721.41,0,0,0,0,0,3556.7708 +7868,9580,17098,17099,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.9385448,7.909358,25,5,-5.1753712,0,2,2,2021,8,1,0,17,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6603265,7.8641124,55.96,49.93,32.02,49.25,8.333333333333334,1,1,0,0,6,10,3,1,700,1737648.8,0,988617.5,0,0,0,2214.9121 +7868,9580,17099,17098,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,0,0,25,-5,-22.215031,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3764687,0,32.02,49.25,55.96,49.93,6.666666666666667,1,1,0,0,0,10,3,1,700,1737648.8,0,988617.5,0,0,0,2214.9121 +7868,9581,17100,-9,17098,17099,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1064.1903,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756175,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,259,36991.652,0,0,0,0,0,124.16025 +7869,9582,17101,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.5681224,5.6268635,0,0,-979.97418,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.8832035,0,0,1,1,0,0,5.7374291,54,44,-9,-9,8,1,1,0,0,0,6,2,1,218,296943.03,150605.06,273137.09,0,0,0,314.71228 +7870,9583,17102,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.6305494,9.443305,0,0,0,-874.68378,0,2,2,2021,11,0,53,53,1,0,0,42.091587,42.091587,.05,.05,0,0,0,0,0,0,1,1,0,4.3218775,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,145,224700.27,35600.477,0,0,0,0,11378.14 +7871,9584,17103,17104,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.863934,8.0356722,0,3,-12,-133.22047,0,2,2,2021,6,0,30,36,1,0,0,10.145661,10.145661,0,0,0,0,0,0,0,0,0,0,0,1.0940267,0,60.12,54.8,53.89,41.28,10,1,1,0,0,13,10,5,1,590.5,1264631.3,232429.38,0,0,0,0,4520.4971 +7871,9584,17104,17103,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7207623,9.4416714,0,3,12,89.455933,0,2,3,2021,12,3,45,48,1,3,0,21.412361,21.412361,0,0,0,0,0,0,0,0,0,0,0,0,0,53.89,41.28,60.12,54.8,8.333333333333334,1,1,0,0,13,10,5,1,590.5,1264631.3,232429.38,0,0,0,0,4520.4971 +7872,9585,17105,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.4103522,7.084969,0,0,0,-941.30133,0,2,2,2021,34,12,15,15,1,12,0,10.967615,10.967615,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,9,4,3,0,1192,258714.75,43204.988,239502.25,0,0,0,646.75372 +7873,9586,17106,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.6055279,8.6875095,0,0,0,-947.64008,0,2,2,2021,10,0,40,40,1,0,0,19.517124,19.517124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,37.88,-9,-9,5,1,1,0,0,9,6,5,0,536,337976.19,25552.211,0,0,0,0,1829.8414 +7874,9587,17107,17110,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.3378134,8.3904266,0,10,1,120.23065,0,-9,-9,2021,14,3,39,37,1,3,0,11.238307,11.238307,.05,.05,0,0,0,0,0,0,1,1,0,4.82797,0,40.58,60.95,54.2,57.49,6.666666666666667,1,1,0,0,9,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17108,-9,17110,17107,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.63959,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17109,-9,17110,17107,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.65344,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17110,17107,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4122458,8.4960098,0,10,-1,62.948704,0,-9,-9,2021,4,0,30,30,1,0,0,18.287317,18.287317,.05,.05,0,0,0,0,0,0,1,1,0,5.2039638,0,54.2,57.49,40.58,60.95,10,1,1,0,0,11,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7875,9588,17111,-9,17112,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1143.3385,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,4,2,-9,0,0,12,2,0,342,593160.94,660014.63,0,0,0,0,2291.52 +7875,9588,17112,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,3,7.6214161,7.7245693,2.6710703,0,0,-1081.4368,0,2,1,2021,14,3,32,28,1,3,0,5.5187945,5.5187945,.05,.05,0,0,0,0,0,0,1,1,0,2.2317402,0,39.87,50.74,-9,-9,6.666666666666667,1,1,0,0,9,12,2,0,342,593160.94,660014.63,0,0,0,0,2291.52 +7876,9589,17113,17114,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,8.0058727,8.0142736,58,4,29.238369,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,33.584427,0,0,1,1,0,0,7.9479136,23.94,23.19,54.37,54.8,3.333333333333333,1,1,0,0,0,7,4,1,404,1026462.1,418463.09,526616.25,0,0,0,3349.6421 +7876,9589,17114,17113,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.027411,6.6070085,58,-4,-40.916386,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.539124,54.37,54.8,23.94,23.19,8.333333333333334,1,1,0,0,0,7,4,1,404,1026462.1,418463.09,526616.25,0,0,0,3349.6421 +7877,9590,17115,17116,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,6.9556093,7.3789721,6,4,27.021025,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.0293249,7.3636565,42.19,32.17,48.98,57.22,5,1,1,0,0,0,12,4,1,1211.5,1549532.5,528133.06,695903.25,0,0,0,3570.3706 +7877,9590,17116,17115,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,8.2150135,8.0188761,5.2646518,6,-4,-102.64146,0,3,3,2021,8,1,35,35,1,1,0,11.793942,11.793942,0,0,0,0,0,0,0,0,1,1,0,0,5.125617,48.98,57.22,42.19,32.17,8.333333333333334,1,1,0,0,6,12,4,1,1211.5,1549532.5,528133.06,695903.25,0,0,0,3570.3706 +7878,9591,17117,17121,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,6.6042953,6.8837495,0,9,0,-70.890579,0,-9,-9,2021,11,0,16,16,1,0,0,5.5377755,5.5377755,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,48.23,45.97,51.9,5,2,3,0,0,12,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17118,-9,17121,17117,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.105,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17119,-9,17121,17117,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1975,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17120,-9,17121,17117,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.47168,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17121,17117,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,0,0,0,15,0,13.55549,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,38.9,48.23,5,2,3,0,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7879,9592,17122,17123,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.9592237,9.3139353,0,9,1,-22.842607,0,-9,-9,2021,7,0,47,60,1,0,0,22.801809,22.801809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,13,7,5,1,523,55929.742,126353.38,0,0,0,0,4968.1689 +7879,9592,17123,17122,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.4423375,7.5243893,5.3034992,9,-1,60.376232,0,2,3,2021,10,1,22,21,1,1,0,7.9544759,7.9544759,.05,.05,0,0,0,0,0,0,1,1,0,4.9072046,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,523,55929.742,126353.38,0,0,0,0,4968.1689 +7880,9593,17124,17125,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.3605452,8.3813314,0,3,3,-122.13621,0,-9,-9,2021,18,6,40,38,1,6,0,10.383352,10.383352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.72,55.84,57.76,54.51,6.666666666666667,1,1,0,0,3,11,5,1,1423.5,88153.938,-67507.805,0,0,2072.8818,-629.23865,3591.1509 +7880,9593,17125,17124,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5041113,8.4857321,0,3,-3,28.452616,0,1,1,2021,8,2,37,38,1,2,0,19.479307,19.479307,0,0,0,0,0,0,0,0,0,0,0,1.9950548,0,57.76,54.51,45.72,55.84,10,1,1,0,0,9,11,5,1,1423.5,88153.938,-67507.805,0,0,2072.8818,-629.23865,3591.1509 +7881,9594,17126,17128,-9,-9,1,0,43,1,1,0,3,3,-9,0,2,6.8664193,7.038487,0,14,-18,20.590481,0,3,3,2021,18,8,16,16,1,8,0,7.7653804,7.7653804,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,31.41,56.46,49.68,5,2,3,0,0,12,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7881,9594,17127,-9,17126,17128,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.22119,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7881,9594,17128,17126,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,0,7.7520723,7.8956032,14,18,11.977551,0,3,3,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5057631,7.4275322,56.46,49.68,44.5,31.41,6.666666666666667,2,3,0,0,6,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7882,9595,17129,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.3493667,8.053751,0,0,-902.26917,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5492773,33.64,18.89,-9,-9,5,1,1,0,1,0,12,3,0,406,1006705.8,211075.31,392322.25,0,0,1131.1364,2003.8146 +7883,9596,17130,17131,17132,-9,1,0,68,0,0,0,2,2,-9,0,2,8.389883,8.1207819,0,31,10,45.155827,0,2,1,2021,12,0,50,50,1,0,0,9.3537483,9.3537483,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.89,38.06,46.61,56.93,8.333333333333334,1,1,0,0,11,11,5,1,1271.5,267869.59,249304.13,221549.47,81487.484,0,0,3957.7715 +7883,9596,17131,17130,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.8253145,8.7200193,0,31,-10,-184.67865,0,2,2,2021,12,0,60,60,1,0,0,10.728598,10.728598,0,0,.05,0,0,0,0,2,1,1,0,0,0,46.61,56.93,55.89,38.06,8.333333333333334,1,1,0,0,13,11,5,1,1271.5,267869.59,249304.13,221549.47,81487.484,0,0,3957.7715 +7883,9597,17132,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.2856,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,11,1,1,2278,-146545.38,0,0,0,0,0,1009.4395 +7884,9598,17133,17134,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,7.1672845,7.7233944,55,0,26.781631,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3406062,7.3453364,60.7,39.78,49,42.07,8.333333333333334,1,1,0,0,0,13,3,1,332,520614.13,122280.22,160754.78,0,0,0,1762.4834 +7884,9598,17134,17133,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.5482903,5.8360634,55,0,43.158321,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0410333,5.555028,49,42.07,60.7,39.78,8.333333333333334,1,1,0,0,0,13,3,1,332,520614.13,122280.22,160754.78,0,0,0,1762.4834 +7885,9599,17135,17136,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,8.0720663,8.2271824,56,2,-61.847473,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9571013,8.1053791,52.26,35.6,57.16,56.15,10,1,1,0,0,9,10,4,1,278,1163641.8,662535.81,408944.5,0,954.66913,0,3561.8213 +7885,9599,17136,17135,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1817446,7.0552182,56,-2,56.306343,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2807226,7.2064896,57.16,56.15,52.26,35.6,8.333333333333334,1,1,0,0,0,10,4,1,278,1163641.8,662535.81,408944.5,0,954.66913,0,3561.8213 +7886,9600,17137,17138,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.2375717,7.1584077,45,-1,-31.803772,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4455132,7.2378178,46.28,62.6,50.18,52.62,8.333333333333334,1,1,0,0,5,10,2,1,814,396137.94,165281.47,0,0,0,0,1737.0975 +7886,9600,17138,17137,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,0,0,44,1,11.813622,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4942012,0,50.18,52.62,46.28,62.6,8.333333333333334,1,1,0,0,12,10,2,1,814,396137.94,165281.47,0,0,0,0,1737.0975 +7887,9601,17139,17140,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.3347058,6.6465302,52,10,-68.599991,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0591524,7.0087123,67.94,30.64,50.78,35.96,8.333333333333334,1,1,0,0,0,7,4,1,667.5,3071137.3,583126.13,2370956.5,91434.781,0,0,4001.4104 +7887,9601,17140,17139,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.3313141,8.662487,52,-10,5.4410639,0,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1234446,8.8238087,50.78,35.96,67.94,30.64,8.333333333333334,1,1,0,0,13,7,4,1,667.5,3071137.3,583126.13,2370956.5,91434.781,0,0,4001.4104 +7888,9602,17141,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.4417,0,2,1,2021,11,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,53.25,36.56,-9,-9,5,1,1,1,1,14,10,1,0,246,161059.61,0,0,0,0,0,1089.7555 +7889,9603,17142,-9,17143,17144,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.11212,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7889,9603,17143,17144,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.6229057,7.9714451,0,28,-2,-56.537498,0,3,3,2021,10,0,24,24,1,0,0,14.963103,14.963103,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.59,43.82,6.666666666666667,1,1,0,0,11,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7889,9603,17144,17143,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3679876,8.57652,0,28,2,-59.085789,0,3,3,2021,6,0,45,42,1,0,0,11.50008,11.50008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.59,43.82,49.58,55.59,8.333333333333334,1,1,0,0,11,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7890,9604,17145,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.3300905,8.6047506,0,0,0,-1085.1096,0,2,2,2021,11,0,44,45,1,0,0,17.558109,17.558109,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,403,-75455.148,0,0,0,0,0,3079.3804 +7891,9605,17146,-9,17147,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.7422,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,3448.5,75216.563,0,0,0,0,0,949.25989 +7891,9605,17147,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,0,0,-956.74988,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,5,1,1,1,1,9,4,1,0,3448.5,75216.563,0,0,0,0,0,949.25989 +7892,9606,17148,17149,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.9243188,7.9731603,0,7,-1,-106.80695,0,2,2,2021,8,0,27,27,1,0,0,12.780182,12.780182,.05,.05,0,0,0,0,0,0,1,1,0,3.2281947,0,57.16,56.15,51.14,60.45,10,1,1,0,0,9,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7892,9606,17149,17148,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.3120003,9.0787144,0,7,1,9.3639145,0,2,2,2021,4,0,68,62,1,0,0,21.453943,21.453943,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7892,9606,17150,-9,17148,17149,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.03693,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7893,9607,17151,-9,17154,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1148.0405,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17152,-9,17154,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.0529,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17153,-9,17154,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.34,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17154,-9,-9,-9,1,0,32,0,3,0,2,2,-9,1,3,0,6.6036234,6.6617513,0,0,-1050.924,0,2,2,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2013459,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7894,9608,17155,17156,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.4390192,6.318985,41,-1,1.9830353,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5864906,6.3319283,56.47,51.02,51,48,8.333333333333334,1,1,0,0,4,8,3,1,1639.5,1066316.8,445585.31,403989.56,0,0,0,2321.7817 +7894,9608,17156,17155,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.1850986,7.2381401,1,1,.79796726,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4622302,7.2385178,51,48,56.47,51.02,7,1,1,0,0,0,8,3,1,1639.5,1066316.8,445585.31,403989.56,0,0,0,2321.7817 +7895,9609,17157,17158,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.9935999,9.0532694,7.516521,40,7,-54.157196,0,3,3,2021,7,0,25,31,1,0,0,37.351284,37.351284,0,0,0,0,0,0,0,0,1,1,0,6.8501568,7.5632586,57.33,53.46,59.38,41.3,8.333333333333334,1,1,0,0,14,9,5,0,1221.5,2709616.8,1231297.8,423961.25,0,0,0,5316.7231 +7895,9609,17158,17157,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,5.8121257,6.8149996,6.7084846,40,-7,15.550056,0,2,3,2021,12,0,28,28,1,0,0,1.424934,1.424934,0,0,0,0,0,0,0,0,1,1,0,5.8032503,6.5032959,59.38,41.3,57.33,53.46,5,1,1,0,0,14,9,5,0,1221.5,2709616.8,1231297.8,423961.25,0,0,0,5316.7231 +7896,9610,17159,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3802166,8.3429203,0,0,0,-996.01031,0,-9,-9,2021,12,0,42,38,1,2,0,11.669051,11.669051,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,1,3,13,4,0,930,-257460.42,0,0,0,0,0,1435.6206 +7897,9611,17160,17161,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,7.5533676,7.7032843,24,-16,-60.678085,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5141029,7.3932891,58.73,43.76,60.29,52.11,8.333333333333334,1,1,0,0,6,7,4,1,411,1646115,622435.5,613967.75,0,0,0,2416.4648 +7897,9611,17161,17160,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.2433453,7.8021564,21,16,-88.257317,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4076605,8.0411186,60.29,52.11,58.73,43.76,8.333333333333334,1,1,0,0,0,7,4,1,411,1646115,622435.5,613967.75,0,0,0,2416.4648 +7898,9612,17162,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.8268566,6.8917751,0,0,-1031.366,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,12.313345,0,0,1,1,0,2.0465174,6.6498733,53.74,31.32,-9,-9,5,1,1,0,0,0,6,2,1,5852,90370.508,55585.121,-72925.289,0,0,0,1791.1744 +7899,9613,17163,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.1266856,6.75985,0,0,-914.01184,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,13.137192,0,0,1,1,0,0,6.8294864,42.28,16.13,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,585,586865.56,356397.63,55820.645,0,6231.2495,0,1589.7924 +7900,9614,17164,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.7829514,7.5164723,0,0,0,-893.13904,0,2,2,2021,6,0,45,40,1,0,0,5.8861246,5.8861246,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,7,12,4,0,1169,-75949.328,-32393.363,0,0,12268.296,0,1071.7157 +7901,9615,17165,-9,17168,17167,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.6027,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17166,-9,17168,17167,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.99799,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,2,-9,0,0,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17167,17168,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.6865759,8.5072222,0,5,1,69.032219,0,2,2,2021,11,0,42,35,1,0,0,15.285886,15.285886,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.05,59.16,49,55,3.333333333333333,2,3,0,0,5,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17168,17167,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9783297,8.5500555,0,5,-1,-12.159215,0,-9,-9,2021,11,0,45,18,1,2,0,17.294586,17.294586,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,39.05,59.16,7,1,1,0,0,8,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7902,9616,17169,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.6522141,6.6021919,0,0,-1006.8869,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3189368,33.23,25.84,-9,-9,5,1,1,0,1,0,2,2,1,2530,234066.44,337235.66,0,0,0,0,1730.3326 +7903,9617,17170,17171,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.9542341,9.0735722,0,10,9,-34.752747,0,-9,-9,2021,5,0,40,55,1,0,0,23.873728,23.873728,.05,.05,.05,0,0,0,0,0,1,1,0,.99696887,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,2,5,1,524,509531.13,143168.44,347660.19,75571.922,0,0,4701.1563 +7903,9617,17171,17170,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.5799513,8.639699,0,16,0,-118.78726,0,3,2,2021,5,0,37,29,1,0,0,10.697789,10.697789,0,0,.05,0,0,0,0,0,1,1,0,5.7488623,0,51.73,58.82,57.16,56.15,10,1,1,0,0,11,2,5,1,524,509531.13,143168.44,347660.19,75571.922,0,0,4701.1563 +7903,9618,17172,-9,17171,17170,1,0,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1033.1107,0,1,1,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1458,-130615.94,0,0,0,0,0,1605.0629 +7904,9619,17173,17174,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1947193,8.4627934,0,15,-4,-17.766171,0,2,2,2021,21,9,26,30,1,9,0,17.218449,17.218449,.05,.05,0,0,0,0,0,0,1,1,0,7.7782559,0,25.37,63.98,32.82,56.45,5,1,1,0,1,10,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7904,9619,17174,17173,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.4245248,7.2360263,0,9,4,-26.002981,0,-9,-9,2021,22,10,85,70,1,10,0,2.5550478,2.5550478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.82,56.45,25.37,63.98,6.666666666666667,1,1,0,1,10,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7904,9619,17175,-9,17173,17174,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1111.3635,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3916227,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7905,9620,17176,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1034.058,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,30,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,442,-53351.859,0,0,0,0,0,2841.1323 +7906,9621,17177,17178,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,59,1,-1.8778208,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.73,49.07,57.18,45.76,8.333333333333334,1,1,0,0,0,2,2,1,592,-17183.82,7160.085,85292.523,0,0,0,1408.2366 +7906,9621,17178,17177,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.0952964,3.9085331,59,-1,-13.63823,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4814639,4.1988144,57.18,45.76,36.73,49.07,6.666666666666667,1,1,0,0,0,2,2,1,592,-17183.82,7160.085,85292.523,0,0,0,1408.2366 +7907,9622,17179,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8885612,8.9738445,0,0,0,-1007.5574,0,2,2,2021,9,0,42,42,1,0,0,20.235807,20.235807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,128,294753,2398.6301,226519.09,3651.8711,0,0,2595.2507 +7908,9623,17180,17182,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.0941682,7.3351631,4.0074396,8,1,23.677452,0,2,2,2021,13,2,14,15,1,2,0,9.7654743,9.7654743,0,0,0,0,0,0,0,0,1,1,0,4.4995375,0,44.42,51.06,50.03,52.62,3.333333333333333,1,1,0,0,9,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17181,-9,17180,17182,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.3375,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17182,17180,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.6519289,8.407073,0,8,-1,108.10838,0,1,2,2021,11,0,12,12,1,0,0,48.463177,48.463177,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,44.42,51.06,8.333333333333334,1,1,0,0,11,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17183,-9,17180,17182,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.50342,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7909,9624,17184,17185,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.0936947,5.4124651,45,-4,-11.713805,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.9472742,0,2,1,1,0,5.0971189,5.2434363,62.6,24.03,62.42,45.64,8.333333333333334,1,1,0,0,0,13,2,1,1388,-12406.098,41978.043,0,0,2106.5281,3056.2793,909.60754 +7909,9624,17185,17184,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,45,4,41.993965,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,62.42,45.64,62.6,24.03,8.333333333333334,1,1,0,0,0,13,2,1,1388,-12406.098,41978.043,0,0,2106.5281,3056.2793,909.60754 +7910,9625,17186,17187,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.5553951,7.5022855,0,10,-1,-8.3426743,0,2,2,2021,12,0,12,16,1,0,0,21.670431,21.670431,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,13,9,5,1,390.5,395422.59,201615.19,415337.06,213943.45,0,10910.67,9121.8652 +7910,9625,17187,17186,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,9.6885386,9.5796413,0,10,1,12.616693,0,2,3,2021,6,0,40,40,1,0,0,42.87928,42.87928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,10,1,1,0,0,13,9,5,1,390.5,395422.59,201615.19,415337.06,213943.45,0,10910.67,9121.8652 +7910,9626,17188,-9,17186,17187,1,0,22,0,1,0,2,2,-9,0,3,7.5256877,7.556931,0,0,0,-1052.9858,0,2,2,2021,14,3,32,40,1,3,1,6.7307491,6.7307491,0,0,0,0,0,0,0,0,1,1,0,0,0,19.32,59.08,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,230,-105193.41,0,0,0,0,-275.56778,1048.9792 +7911,9627,17189,17190,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3779716,8.2112751,0,10,4,43.26659,0,2,2,2021,12,0,37,37,1,0,0,13.028927,13.028927,0,0,0,0,0,0,0,0,0,0,0,1.779924,0,48,48,51.3,42.81,1.666666666666667,1,1,0,0,11,10,5,1,1145.5,4615501,512133.53,1455711.5,395948.56,0,6599.3916,2899.4312 +7911,9627,17190,17189,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.9079456,7.9286041,0,10,-4,-16.118122,-9,2,2,2021,17,5,24,0,1,5,0,12.686123,12.686123,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.3,42.81,48,48,3.333333333333333,1,1,0,0,11,10,5,1,1145.5,4615501,512133.53,1455711.5,395948.56,0,6599.3916,2899.4312 +7912,9628,17191,17192,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.188673,8.1549168,0,5,6,-21.886404,0,-9,-9,2021,13,1,42,45,1,1,0,8.1112032,8.1112032,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.58,42.99,59.14,52.5,5,1,1,0,0,10,11,5,1,440,410918.97,614484.31,0,0,2061.5596,119.59131,2816.4707 +7912,9628,17192,17191,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.3174486,8.2252245,0,5,-6,73.533539,0,2,2,2021,10,2,40,43,1,2,0,11.079408,11.079408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,50.58,42.99,8.333333333333334,1,1,0,0,10,11,5,1,440,410918.97,614484.31,0,0,2061.5596,119.59131,2816.4707 +7913,9629,17193,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5561938,7.3662634,0,0,-986.20404,0,2,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3065648,7.0928378,48.24,46.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1177,605206.88,306827.25,308771.25,0,0,0,2518.6355 +7914,9630,17194,-9,17197,17196,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.55878,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17195,-9,17197,17196,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4561,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17196,17197,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.9971418,9.048996,0,18,0,84.950844,0,3,2,2021,12,2,42,43,1,2,0,22.09741,22.09741,.05,.05,0,0,0,0,0,0,0,0,0,5.1218438,0,39.98,57.28,60.02,56.42,8.333333333333334,1,1,0,0,12,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17197,17196,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7337866,8.4354258,0,20,0,53.774227,0,3,3,2021,8,0,30,18,1,0,0,20.22934,20.22934,.05,.05,0,0,0,0,0,0,0,0,0,5.1517339,0,60.02,56.42,39.98,57.28,8.333333333333334,1,1,0,0,10,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7915,9631,17198,17200,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.0243282,8.129446,0,6,5,-52.375008,0,2,1,2021,10,0,43,45,1,1,0,9.2425194,9.2425194,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48.06,50.73,7,1,1,0,0,1,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17199,-9,17200,17198,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.6971,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17200,17198,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,5.6922383,5.4672561,0,6,-5,6.3259044,0,2,2,2021,13,2,12,0,1,2,0,2.8649771,2.8649771,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,50.73,51,56,8.333333333333334,1,1,0,1,1,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17201,-9,17200,17198,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.79022,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7916,9632,17202,-9,17203,17204,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1038.9998,-9,2,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,62.9,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7916,9632,17203,17204,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.2145462,8.2851467,0,31,-5,-81.387695,0,3,2,2021,6,0,21,40,1,0,0,15.717156,15.717156,0,0,0,0,0,0,0,0,1,1,0,0,0,58.75,48.57,53.11,40.77,6.666666666666667,1,1,0,0,14,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7916,9632,17204,17203,-9,-9,1,1,56,0,1,0,3,3,-9,0,2,7.2217469,7.3139739,0,31,5,54.085518,0,-9,-9,2021,13,2,38,38,1,2,0,4.5633159,4.5633159,.05,.05,0,0,0,0,0,0,1,1,0,1.8751934,0,53.11,40.77,58.75,48.57,6.666666666666667,1,1,0,0,14,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7917,9633,17205,-9,-9,-9,1,0,54,1,2,0,2,2,-9,0,2,7.7028337,7.4899216,0,0,0,-975.77399,0,-9,-9,2021,14,4,20,16,1,4,0,11.379188,11.379188,0,0,0,0,0,0,0,0,1,1,0,0,0,39.83,48.26,-9,-9,5,1,1,0,1,7,1,2,0,567,115804.6,98156.273,0,0,0,0,1436.084 +7917,9634,17206,-9,17207,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-856.53461,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,4,6,-9,0,0,1,3,0,697,-92218.5,0,0,0,5066.2324,0,503.31061 +7917,9634,17207,-9,17205,-9,1,0,25,1,2,0,2,2,-9,0,5,7.3427901,7.1147799,0,0,0,-1037.7201,-9,2,-9,2021,3,0,27,0,1,0,1,6.3152418,6.3152418,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,697,-92218.5,0,0,0,5066.2324,0,503.31061 +7918,9635,17208,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1038.1353,0,3,2,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.92,16.66,-9,-9,1.666666666666667,1,1,0,0,2,8,1,0,186,-5579.3784,0,0,0,0,0,2238.0876 +7919,9636,17209,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1129.0192,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,13,1,1,857,75377.07,0,0,0,0,0,-184.38632 +7920,9637,17210,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5908632,8.6681557,0,0,0,-1005.4551,0,2,2,2021,10,0,40,40,1,0,0,13.259306,13.259306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,1,10,9,5,0,1315,57208.367,-36895.676,0,0,0,84.9403,1824.4435 +7921,9638,17211,17212,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.3835993,7.6803579,2,4,-42.189602,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.29490602,7.1973214,59.43,58.05,31.98,30.27,10,1,1,0,0,5,13,3,1,392.5,216450.17,173208.23,0,0,0,0,819.36896 +7921,9638,17212,17211,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.573247,6.5336494,0,2,-4,128.68661,0,2,3,2021,24,12,19,0,1,12,0,3.9903433,3.9903433,0,0,0,0,0,0,0,0,0,0,0,1.9798212,0,31.98,30.27,59.43,58.05,1.666666666666667,1,1,0,0,6,13,3,1,392.5,216450.17,173208.23,0,0,0,0,819.36896 +7922,9639,17213,17214,-9,-9,1,0,52,0,2,0,1,1,-9,0,1,8.9864111,9.163763,0,3,-2,-49.48959,0,1,1,2021,3,1,40,37,1,1,0,25.90744,25.90744,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,21.54,57.33,53.46,8.333333333333334,1,1,0,0,11,8,5,1,1106.5,4848939,2572670.5,1132014.9,171292.22,0,0,22426.391 +7922,9639,17214,17213,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.7175941,9.3103075,0,3,2,64.184387,0,-9,-9,2021,8,0,42,40,1,0,0,40.251854,40.251854,.05,.05,0,0,0,0,0,0,0,0,0,8.8272934,0,57.33,53.46,55.09,21.54,6.666666666666667,1,1,0,0,12,8,5,1,1106.5,4848939,2572670.5,1132014.9,171292.22,0,0,22426.391 +7923,9640,17215,17216,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0006499,7.2478976,0,8,1,43.948235,0,2,2,2021,35,12,50,48,1,12,0,3.7082179,3.7082179,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.53,44.95,39.15,41.42,3.333333333333333,1,1,0,0,7,4,3,1,659.5,653026.75,237799.45,357573.25,31477.623,176.26312,298.01962,1645.766 +7923,9640,17216,17215,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.5195465,7.6802154,0,8,-1,-93.954666,0,2,1,2021,22,10,60,25,1,10,0,3.2366974,3.2366974,.05,.05,0,0,0,0,0,0,0,0,0,5.3955655,0,39.15,41.42,40.53,44.95,5,1,1,0,0,13,4,3,1,659.5,653026.75,237799.45,357573.25,31477.623,176.26312,298.01962,1645.766 +7923,9641,17217,-9,17216,17215,1,0,20,0,0,0,2,2,-9,0,3,6.5632434,6.7494373,0,0,0,-970.2807,0,2,2,2021,15,3,25,14,1,3,1,3.6654956,3.6654956,0,0,0,0,0,0,0,0,0,0,0,5.955255,0,30.94,61.65,-9,-9,5,1,1,0,0,5,4,2,1,1461,-12892.825,0,0,0,0,0,1203.106 +7924,9642,17218,-9,17219,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.67981,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7924,9642,17219,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.6267858,8.1637497,6.6981812,0,0,-1000.9678,0,-9,3,2021,16,5,30,30,1,5,0,7.6460867,7.6460867,.05,.05,0,0,0,0,0,0,1,1,0,6.9034224,0,43.81,52.59,-9,-9,8.333333333333334,1,1,0,0,12,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7924,9642,17220,-9,17219,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.6604,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7925,9643,17221,17222,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.0164404,6.2450385,0,9,-4,13.837776,0,-9,2,2021,9,0,8,2,1,0,0,5.9815984,5.9815984,0,0,0,0,0,0,0,14.5,0,0,0,3.1759415,0,58.15,52.91,47.12,46,8.333333333333334,1,1,0,0,10,7,2,1,2663.5,407957,0,204168.78,17456.287,0,0,-336.84512 +7925,9643,17222,17221,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,0,0,9,4,34.515427,0,-9,-9,2021,16,4,0,38,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1916964,0,47.12,46,58.15,52.91,5,1,1,1,0,9,7,2,1,2663.5,407957,0,204168.78,17456.287,0,0,-336.84512 +7926,9644,17223,-9,-9,-9,1,0,55,0,2,0,3,3,-9,0,3,0,0,0,0,0,-989.97998,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,2,3,0,0,0,2,2,1,635,-122612.95,0,0,0,0,4049.2488,-799.69867 +7926,9645,17224,17226,-9,-9,1,0,33,0,2,0,3,3,-9,1,2,0,0,0,5,-1,8.7834969,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,59.54,46.05,49,57,8.333333333333334,2,3,0,0,0,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7926,9645,17225,-9,17224,17226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.38275,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7926,9645,17226,17224,17223,-9,1,1,34,0,2,0,2,2,-9,0,4,8.0415964,8.0954933,0,5,1,-64.267754,0,3,-9,2021,10,0,25,25,1,1,0,12.539118,12.539118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,59.54,46.05,7,2,3,0,0,1,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7927,9646,17227,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.105392,5.9434462,0,0,-1104.8408,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1522961,5.8417029,53,47,-9,-9,7,2,3,0,0,0,8,2,1,1894,966512.19,101591.66,767129.13,0,0,0,1952.8651 +7928,9647,17228,-9,17229,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-912.33691,-9,1,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7928,9647,17229,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.9929495,8.3335352,0,0,0,-1012.2161,0,3,2,2021,6,0,43,24,1,0,0,9.1908798,9.1908798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.24,50.01,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7928,9647,17230,-9,17229,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.6331,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7929,9648,17231,17232,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.1239405,6.191977,12,-6,-10.362129,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7601216,6.8867688,54.2,57.49,51.55,51.94,8.333333333333334,1,1,0,0,9,10,2,1,623.5,387751.53,161077.75,261863.84,0,5533.5806,0,2348.6765 +7929,9648,17232,17231,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,12,6,-43.090496,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.13269,0,51.55,51.94,54.2,57.49,5,1,1,0,0,11,10,2,1,623.5,387751.53,161077.75,261863.84,0,5533.5806,0,2348.6765 +7930,9649,17233,17234,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,.23235707,0,0,7,2,52.383785,0,3,3,2021,14,3,35,42,1,3,0,.00064548379,.00064548379,0,0,0,0,0,0,0,27,0,0,0,0,0,43.12,56.93,48.39,33.39,8.333333333333334,1,1,0,0,14,13,2,1,595.5,193962.05,33104.688,159918.34,57082.016,14195.301,0,19.61731 +7930,9649,17234,17233,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,0,0,7,-2,-91.671669,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.39,33.39,43.12,56.93,8.333333333333334,1,1,1,0,0,13,2,1,595.5,193962.05,33104.688,159918.34,57082.016,14195.301,0,19.61731 +7931,9650,17235,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.0885744,6.3115783,0,0,-997.03192,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7547232,6.0656104,58.72,30.19,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,1838,491734.09,-17707.068,53212.305,0,0,0,863.71918 +7932,9651,17236,17237,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.8238678,6.4988575,11,4,44.157047,0,2,1,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7376757,32.82,35.19,64,24.84,8.333333333333334,1,1,0,0,6,7,3,1,291,1567729.6,668863.44,867733.13,0,0,0,2443.1387 +7932,9651,17237,17236,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.7576518,7.5909886,11,-4,23.123188,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3983636,7.5757885,64,24.84,32.82,35.19,8.333333333333334,1,1,0,0,10,7,3,1,291,1567729.6,668863.44,867733.13,0,0,0,2443.1387 +7933,9652,17238,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1085348,8.0251122,6.4054551,0,0,-881.89966,0,-9,-9,2021,6,0,32,33,1,0,0,10.810011,10.810011,0,0,0,0,0,0,0,0,1,1,0,4.4735489,6.4677906,60.69,45.31,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1019,426490.47,168709.69,191202.7,60287.035,3596.0823,0,2583.4063 +7934,9653,17239,17241,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.7223482,8.8474321,0,6,-2,127.20963,0,-9,-9,2021,10,0,36,36,1,0,0,18.237999,18.237999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9653,17240,-9,17241,17239,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.07941,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9653,17241,17239,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8020244,7.844451,0,6,2,131.66405,0,2,2,2021,7,0,30,19,1,0,0,9.0361214,9.0361214,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,7,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9654,17242,-9,17241,17239,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1033.9943,-9,2,1,2021,4,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,13,1,1,1041,76440.383,0,0,0,0,0,0 +7935,9655,17243,17244,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,7.9250798,8.175705,64,1,176.79379,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9967966,0,2,1,1,0,4.3448572,8.2297869,37.43,41.44,34.91,35.39,5,1,1,0,0,0,7,3,1,733,471854.19,223220.53,0,0,0,-1.1793232,2535.4165 +7935,9655,17244,17243,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,4.9791698,5.0235653,64,-1,57.940163,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,6.6801944,0,7,1,1,0,5.3842931,5.1977654,34.91,35.39,37.43,41.44,6.666666666666667,1,1,0,0,0,7,3,1,733,471854.19,223220.53,0,0,0,-1.1793232,2535.4165 +7936,9656,17245,17246,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.5943542,7.4427075,0,45,-7,65.849747,0,3,3,2021,19,7,37,45,1,7,0,6.0597305,6.0597305,0,0,0,0,0,0,0,0,1,1,0,0,0,44.51,49.63,62.84,30.79,6.666666666666667,1,1,0,0,9,7,3,1,487.5,1388348.8,556396.94,641746.13,0,0,0,1634.29 +7936,9656,17246,17245,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6377435,6.6093488,45,7,67.264519,0,3,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,6.8131967,62.84,30.79,44.51,49.63,8.333333333333334,1,1,0,0,4,7,3,1,487.5,1388348.8,556396.94,641746.13,0,0,0,1634.29 +7937,9657,17247,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,7.8811073,7.9117737,0,0,0,-1062.7887,-9,-9,-9,2021,11,0,50,0,1,0,0,7.3265109,7.3265109,0,0,0,0,0,0,0,0,0,0,0,5.1992812,0,62.62,48.33,-9,-9,10,1,1,0,0,3,11,4,1,1253,-145594.02,0,0,0,0,0,1527.4192 +7938,9658,17248,17251,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.3803406,9.3571625,0,6,0,107.52332,0,1,1,2021,6,0,45,45,1,0,0,26.510281,26.510281,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.03,52.62,51.73,58.82,6.666666666666667,4,2,0,0,12,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17249,-9,17251,17248,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.3196,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17250,-9,17251,17248,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4246,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17251,17248,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.5630569,8.7040462,0,6,0,-103.46059,0,-9,-9,2021,7,0,30,38,1,0,0,22.685486,22.685486,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50.03,52.62,8.333333333333334,1,1,0,0,9,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7939,9659,17252,17253,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.5119824,6.5169191,0,12,-5,-16.245115,0,2,3,2021,4,0,12,-9,1,0,0,6.0814266,6.0814266,.05,.05,0,0,0,0,0,0,0,0,0,3.2634904,0,59.53,56.44,57.16,56.15,8.333333333333334,1,1,0,0,5,12,5,1,1058.5,435078.38,250855.31,238509.13,98342.594,0,0,2542.009 +7939,9659,17253,17252,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9888144,8.6339636,0,12,5,63.949589,0,3,3,2021,6,0,72,40,1,0,0,11.9765,11.9765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.53,56.44,8.333333333333334,1,1,0,0,14,12,5,1,1058.5,435078.38,250855.31,238509.13,98342.594,0,0,2542.009 +7940,9660,17254,17255,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8644948,7.9834776,48,2,131.91196,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.1732569,58.07,46.29,50,47,3.333333333333333,1,1,0,0,4,5,3,1,733,723888.38,369770.47,182957,0,0,0,2265.4888 +7940,9660,17255,17254,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,48,-2,-90.28157,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,50,47,58.07,46.29,5,1,1,0,0,0,5,3,1,733,723888.38,369770.47,182957,0,0,0,2265.4888 +7941,9661,17256,17257,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.9019799,7.8945885,0,12,-11,165.91115,0,3,3,2021,10,0,40,45,1,1,0,7.8095751,7.8095751,.05,.05,0,0,0,0,0,0,0,0,0,1.422577,0,50,56,50.38,58.02,7,2,3,0,0,1,2,5,0,744,642145.25,321845.44,294088.5,108353.11,0,0,3884.1125 +7941,9661,17257,17256,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6920404,8.7460213,0,12,11,42.119343,0,3,3,2021,8,1,55,56,1,1,0,10.576807,10.576807,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,50,56,8.333333333333334,1,1,0,0,11,2,5,0,744,642145.25,321845.44,294088.5,108353.11,0,0,3884.1125 +7942,9662,17258,17259,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6526327,7.9561348,0,39,0,14.202725,0,2,2,2021,8,0,84,70,1,0,0,7.6954513,7.6954513,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,45.74,42.03,25.43,8.333333333333334,1,1,0,0,9,7,5,1,1134,995657.38,636285.88,193876.45,0,0,0,4750.3179 +7942,9662,17259,17258,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,7.6181951,7.6058502,10,9,-116.09629,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,80.811913,0,0,1,1,0,0,7.5851974,42.03,25.43,53.14,45.74,3.333333333333333,1,1,0,1,0,7,5,1,1134,995657.38,636285.88,193876.45,0,0,0,4750.3179 +7943,9663,17260,-9,17261,17262,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1154.2101,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9663,17261,17262,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.7927756,7.8198457,0,7,-2,37.59359,0,-9,-9,2021,11,0,37,37,1,0,0,7.8460536,7.8460536,0,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,38.75,59.06,10,4,2,0,0,15,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9663,17262,17261,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2913151,8.3761988,0,7,2,-44.868885,0,-9,-9,2021,21,7,40,37,1,7,0,10.156219,10.156219,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.75,59.06,49.06,58.64,5,1,1,0,0,15,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9664,17263,-9,17261,17262,1,0,19,0,1,0,2,2,-9,0,3,4.4530101,4.4934511,0,0,0,-959.1687,0,3,2,2021,28,10,30,20,1,10,1,.30829397,.30829397,0,0,0,0,0,0,0,0,1,1,0,0,0,27.12,51.19,-9,-9,1.666666666666667,4,2,0,1,3,7,2,1,554,-7299.5747,0,0,0,0,0,-507.48083 +7944,9665,17264,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2472763,8.28825,0,0,0,-998.39142,0,-9,-9,2021,5,0,38,37,1,0,0,11.065036,11.065036,.05,.05,0,0,0,0,0,0,0,0,0,1.2987297,0,53.65,51.02,-9,-9,10,1,1,0,0,10,2,4,0,215,403034.09,42503.074,348176.13,0,-1047.1937,3931.7295,1183.5089 +7945,9666,17265,17266,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.7691326,8.8104439,0,7,-6,75.764336,0,-9,-9,2021,9,0,50,55,1,0,0,17.825457,17.825457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.13,58.45,25.34,42.76,8.333333333333334,1,1,0,0,11,6,5,1,1320.5,-17394.348,78684.5,154031.42,90861.891,19454.77,0,3539.29 +7945,9666,17266,17265,-9,-9,1,0,40,0,0,0,1,1,1,0,1,0,0,0,7,6,-50.464924,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.5912712,0,25.34,42.76,41.13,58.45,6.666666666666667,1,1,0,0,8,6,5,1,1320.5,-17394.348,78684.5,154031.42,90861.891,19454.77,0,3539.29 +7946,9667,17267,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,2,0,6.8271198,6.8158164,0,0,-863.62573,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.3546848,0,41.42,32.65,-9,-9,1.666666666666667,3,4,0,0,1,8,2,0,787,-41034.555,0,0,0,0,1440.7629,1785.8003 +7947,9668,17268,17269,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1151829,8.0802145,0,4,8,-66.98365,-9,-9,-9,2021,9,0,35,0,1,1,0,12.492862,12.492862,.05,.05,0,0,0,0,0,0,0,0,0,2.1719062,0,53,54,57.16,56.15,8,4,2,0,0,1,9,5,1,530,1406150,866706.06,427033.19,-5984.2227,0,-79.506088,3493.1802 +7947,9668,17269,17268,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.4614906,8.7383852,0,4,-8,-37.247707,0,3,3,2021,11,0,10,75,1,0,0,67.947105,67.947105,.05,.05,0,0,0,0,0,0,0,0,0,1.5204035,0,57.16,56.15,53,54,8.333333333333334,4,2,0,0,11,9,5,1,530,1406150,866706.06,427033.19,-5984.2227,0,-79.506088,3493.1802 +7948,9669,17270,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,7.4562659,7.7543302,0,0,-951.74213,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,150.59251,0,0,1,0,1,0,7.5760818,48,34,-9,-9,5,3,4,0,0,0,12,3,1,604,144876.63,60448.098,0,0,0,0,1929.7577 +7948,9670,17271,-9,17270,-9,1,1,49,0,0,0,2,2,-9,0,3,0,0,0,0,0,-934.72064,0,2,2,2021,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,53.1,52.62,-9,-9,6.666666666666667,3,4,1,0,12,12,1,1,936,6899.9121,0,0,0,0,0,1179.7948 +7949,9671,17272,17273,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7498403,7.7340469,0,2,2,35.686615,0,2,2,2021,3,0,35,35,1,0,0,7.1157665,7.1157665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41,39.03,8.333333333333334,1,1,0,0,1,5,4,0,1233.5,19438.641,-14989.267,183642.03,96157.5,19140.367,15403.272,1976.6516 +7949,9671,17273,17272,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.3073921,7.2130051,0,2,-2,123.77625,-9,-9,-9,2021,9,2,25,0,1,2,0,8.125226,8.125226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,39.03,57.06,57.76,6.666666666666667,1,1,0,0,0,5,4,0,1233.5,19438.641,-14989.267,183642.03,96157.5,19140.367,15403.272,1976.6516 +7950,9672,17274,17275,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.3225784,8.5381222,0,11,-4,26.96699,0,2,2,2021,19,7,74,80,1,7,0,6.3757639,6.3757639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.1,65.8,48.52,57.47,8.333333333333334,1,1,0,0,12,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7950,9672,17275,17274,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.6290903,8.0956402,0,11,4,33.662876,0,3,3,2021,14,1,40,40,1,1,0,9.7620687,9.7620687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.52,57.47,36.1,65.8,8.333333333333334,1,1,0,0,12,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7950,9672,17276,-9,17274,17275,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-905.60828,-9,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.14979148,0,43.12,58.55,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7951,9673,17277,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,5.7190638,5.7777424,0,0,-950.13599,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8673372,5.5664778,57.16,56.15,-9,-9,10,1,1,0,0,0,6,2,1,509,382614.06,-3166.4795,189525.61,0,0,0,1952.3584 +7952,9674,17278,17279,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,9.4035387,8.9868212,0,4,-1,-16.110893,0,-9,-9,2021,9,1,52,52,1,1,0,26.513933,26.513933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,55.36,51.57,10,1,1,0,0,4,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7952,9674,17279,17278,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.5241308,8.6684284,0,4,1,14.222522,0,1,2,2021,10,0,37,37,1,0,0,20.42631,20.42631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7952,9674,17280,-9,-9,17278,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1138.5238,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7953,9675,17281,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.7155952,8.4807396,0,0,0,-1003.0804,0,3,2,2021,31,11,32,32,1,11,0,15.529273,15.529273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.65,64.05,-9,-9,1.666666666666667,1,1,0,0,12,12,5,1,3566,1244469,893125.75,198387.17,0,0,0,1568.8612 +7954,9676,17282,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.5589705,7.6897221,0,0,-1021.6206,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,4.6324863,0,22.709103,2,1,1,0,0,7.3155727,58.9,40.21,-9,-9,10,1,1,0,0,0,9,3,1,357,1117450.9,185872.77,203324.25,0,0,0,1512.3461 +7955,9677,17283,17284,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,8.366046,8.5810881,0,6,-2,70.622025,0,2,2,2021,10,1,28,28,1,1,0,23.467882,23.467882,0,0,0,0,0,0,0,0,1,1,0,0,0,44.39,63.4,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7955,9677,17284,17283,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,8.5502558,8.5512152,0,6,2,-22.064905,0,2,2,2021,4,1,25,15,1,1,0,27.88134,27.88134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.39,63.4,8.333333333333334,1,1,0,0,7,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7955,9677,17285,-9,17283,17284,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.3162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7956,9678,17286,-9,17288,17287,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1122.9446,-9,2,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.97,46.18,-9,-9,8.333333333333334,2,3,0,0,0,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17287,17288,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2161484,8.1083908,0,21,4,-73.512863,0,-9,-9,2021,12,0,54,60,1,0,0,6.7333064,6.7333064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.41,42.78,60.14,46.44,1.666666666666667,2,3,0,0,8,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17288,17287,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8884764,8.2943134,0,21,-4,4.0487537,0,2,2,2021,7,1,30,35,1,1,0,13.260909,13.260909,0,0,0,0,0,0,0,0,1,1,0,0,0,60.14,46.44,45.41,42.78,8.333333333333334,2,3,0,0,7,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17289,-9,17288,17287,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.6496,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7957,9679,17290,-9,17291,17292,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.79639,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7957,9679,17291,17292,-9,-9,1,0,26,1,1,0,2,2,-9,1,2,0,0,0,6,-2,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.61,36.14,49.04,55.86,1.666666666666667,1,1,1,0,0,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7957,9679,17292,17291,-9,-9,1,1,28,1,1,0,3,3,-9,1,3,0,0,0,6,2,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,33.61,36.14,5,1,1,1,0,2,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7958,9680,17293,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.0763397,8.2942419,0,0,0,-994.83441,0,2,2,2021,6,0,40,43,1,0,0,9.2513952,9.2513952,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,1123,158753.83,-76408.32,137631.95,58652.203,9611.3281,0,1323.3605 +7959,9681,17294,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1018.5065,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.636168,0,51,56,-9,-9,7,4,5,1,0,0,8,1,0,238,0,0,0,0,0,0,1066.7708 +7960,9682,17295,17296,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4686613,8.2850409,0,4,-5,25.251621,0,3,3,2021,9,2,37,39,1,2,0,17.265833,17.265833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.89,30.4,51,49,8.333333333333334,1,1,0,0,9,8,4,1,410.5,1338598.8,759094.25,635418.5,0,2269.8418,0,2694.02 +7960,9682,17296,17295,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0683088,8.0144987,0,4,5,1.1887597,0,3,3,2021,10,0,32,39,1,1,0,9.1837254,9.1837254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,50.89,30.4,7,1,1,0,0,1,8,4,1,410.5,1338598.8,759094.25,635418.5,0,2269.8418,0,2694.02 +7961,9683,17297,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.9752445,8.8050508,0,0,-932.78888,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3666372,8.7372475,59.32,46.98,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,3521,942447.5,124153.27,500787.44,0,0,0,5406.1123 +7962,9684,17298,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.0653133,7.2087283,0,0,0,-1002.1498,0,-9,3,2021,30,11,26,15,1,11,0,6.0384555,6.0384555,0,0,0,0,0,0,0,0,1,1,0,0,0,12.11,63.22,-9,-9,1.666666666666667,1,1,0,1,8,10,2,0,937.5,68706.063,0,0,0,-848.32483,0,541.23804 +7962,9684,17299,-9,17298,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-971.93268,-9,2,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,10,2,0,937.5,68706.063,0,0,0,-848.32483,0,541.23804 +7963,9685,17300,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,0,0,0,0,-999.74036,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.1,47.5,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,463,12367.813,0,0,0,23356.162,0,866.95233 +7964,9686,17301,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.7065439,8.6228523,0,0,0,-990.05914,-9,2,1,2021,13,1,44,0,1,1,0,16.819323,16.819323,0,0,0,0,0,0,0,0,0,0,0,1.1665708,0,46.45,51.59,-9,-9,5,1,1,0,0,12,10,5,1,719,0,0,0,0,0,0,1834.4706 +7965,9687,17302,-9,17304,17305,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0645,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17303,-9,17304,17305,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7743,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17304,17305,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,1,-1,-73.893967,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,53.59,49.64,8.333333333333334,1,1,0,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17305,17304,-9,-9,1,1,25,1,2,0,2,2,-9,0,3,8.5062208,8.4101458,0,1,1,62.388771,-9,-9,-9,2021,9,0,78,0,1,0,0,5.7615442,5.7615442,0,0,0,0,0,0,0,0,1,1,0,0,0,53.59,49.64,46.33,55.93,10,1,1,0,0,7,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7966,9688,17306,17307,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.0419197,7.8968186,0,13,-19,59.251431,0,-9,-9,2021,11,0,20,0,1,0,0,16.798744,16.798744,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,49.46,41.06,30.23,3.333333333333333,2,3,0,0,8,6,3,1,1217.5,1443403.3,844114.94,169069.36,0,0,0,1891.0897 +7966,9688,17307,17306,-9,-9,1,1,67,0,2,0,2,2,-9,0,1,0,7.2358761,7.3464055,13,19,110.99574,0,-9,-9,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4030061,41.06,30.23,48.6,49.46,5,1,1,0,0,10,6,3,1,1217.5,1443403.3,844114.94,169069.36,0,0,0,1891.0897 +7967,9689,17308,17309,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.4611254,8.6271458,0,1,9,-97.238808,-9,-9,-9,2021,9,0,46,0,1,0,0,11.117063,11.117063,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.34,56.4,10,1,1,0,0,7,6,5,0,3422,-151962.2,0,0,0,19630.729,0,3539.5896 +7967,9689,17309,17308,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8889017,7.9461956,0,1,0,11.534332,0,2,2,2021,9,1,37,33,1,1,0,10.260523,10.260523,0,0,0,0,0,0,0,0,0,0,0,.072360575,0,50.34,56.4,54.1,59.11,8.333333333333334,1,1,0,0,5,6,5,0,3422,-151962.2,0,0,0,19630.729,0,3539.5896 +7968,9690,17310,-9,-9,-9,1,0,38,0,4,0,3,3,-9,1,2,0,5.8349447,5.7522459,0,0,-908.07715,0,3,3,2021,24,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,5.7547107,0,21.55,51.46,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9690,17311,-9,17310,17315,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.8492,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9690,17312,-9,17310,17315,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.85199,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9691,17313,-9,17310,17315,1,1,19,0,4,0,2,2,1,0,5,0,0,0,0,0,-1008.9828,-9,3,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.25,53.57,-9,-9,6.666666666666667,1,1,1,0,0,5,2,0,254,0,0,0,0,0,0,635.06433 +7968,9692,17314,-9,17310,17315,1,0,18,0,4,1,2,0,-9,0,3,0,0,0,0,0,-973.21307,-9,3,2,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.99,53.75,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,2127,235507.98,0,0,0,948.90497,0,-244.03854 +7968,9693,17315,-9,-9,-9,1,1,36,0,4,0,2,2,-9,1,2,0,0,0,0,0,-919.88171,0,-9,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,25.99,49.01,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,531,-16263.624,116825.91,0,0,0,0,1775.6138 +7969,9694,17316,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.7740297,6.8628149,0,0,-1056.835,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,4.8810663,0,46.529282,0,1,1,0,5.1696715,6.891573,62.65,38.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,608,681552,133663.22,345035.66,0,0,0,1586.502 +7970,9695,17317,17318,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,37,-4,-9.846446,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.3791096,0,54.96,53.17,57.92,51.82,10,1,1,0,0,0,7,2,1,1493,697793.63,219610.63,297930,0,0,0,1443.171 +7970,9695,17318,17317,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5030131,6.3850179,37,4,-22.278522,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.44984871,6.629889,57.92,51.82,54.96,53.17,10,1,1,0,0,0,7,2,1,1493,697793.63,219610.63,297930,0,0,0,1443.171 +7971,9696,17319,17320,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1037083,7.5476103,0,7,-3,-50.198071,0,2,2,2021,13,2,34,25,1,2,0,7.4769492,7.4769492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.84,50.73,57.57,49.69,10,1,1,0,0,8,11,4,1,866,864750.44,688164,111332.05,0,5345.8691,0,1972.7203 +7971,9696,17320,17319,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.9441652,8.3358307,6.1224518,7,3,-45.050407,0,3,3,2021,9,0,60,60,1,0,0,4.6697164,4.6697164,.05,.05,0,0,0,0,0,2,0,0,0,0,6.5807333,57.57,49.69,42.84,50.73,5,1,1,0,0,8,11,4,1,866,864750.44,688164,111332.05,0,5345.8691,0,1972.7203 +7972,9697,17321,-9,17323,17324,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.42676,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17322,-9,17323,17324,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.50336,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17323,17324,-9,-9,1,0,33,0,2,0,1,1,-9,0,1,7.6350403,7.6995711,0,11,-3,48.016769,0,2,2,2021,8,0,37,23,1,0,0,6.9393349,6.9393349,0,0,0,0,0,0,0,2,1,1,0,0,0,54.89,24.95,51,56,6.666666666666667,1,1,0,0,6,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17324,17323,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5635405,8.4547234,0,6,3,-173.45076,0,-9,-9,2021,10,0,50,60,1,1,0,13.372376,13.372376,.05,.05,0,0,0,0,0,0,1,1,0,.23396862,0,51,56,54.89,24.95,7,1,1,0,0,1,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7973,9698,17325,17326,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,7,-1,0,0,-9,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.56,39.16,39.88,26.59,1.666666666666667,1,1,0,0,0,1,1,0,364.5,120036.56,0,0,0,12129.803,0,2092.937 +7973,9698,17326,17325,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,7,1,0,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.88,26.59,15.56,39.16,3.333333333333333,1,1,0,0,0,1,1,0,364.5,120036.56,0,0,0,12129.803,0,2092.937 +7974,9699,17327,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.8381739,8.6880865,0,0,0,-997.39392,0,2,3,2021,9,0,55,67,1,0,0,12.798645,12.798645,.05,.05,0,0,0,0,0,0,0,0,0,5.7370162,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,880,357956.16,82609.148,266569.44,44565.09,0,0,1960.1375 +7975,9700,17328,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-932.67688,-9,-9,-9,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.45,42.54,-9,-9,10,1,1,0,0,2,2,1,1,363,-55651.938,0,0,0,0,0,0 +7976,9701,17329,17330,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.679853,5.0546536,8,4,159.44656,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2222323,4.8716245,54.95,45.15,47.64,48.39,8.333333333333334,1,1,0,0,0,4,2,1,1397,207776.28,98289.719,96210.141,0,0,0,1838.9927 +7976,9701,17330,17329,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.4777207,5.3830795,8,-4,3.5373073,0,1,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5316272,47.64,48.39,54.95,45.15,6.666666666666667,1,1,0,0,5,4,2,1,1397,207776.28,98289.719,96210.141,0,0,0,1838.9927 +7977,9702,17331,-9,17334,17333,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.50781,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17332,-9,17334,17333,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.55084,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17333,17334,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.1221094,8.2100916,0,10,2,-97.413406,0,2,2,2021,12,0,45,43,1,0,0,9.2658997,9.2658997,.05,.05,0,0,0,0,0,0,1,1,0,8.177227,0,59.29,49.68,53.23,47.51,8.333333333333334,1,1,0,0,11,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17334,17333,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.5922728,9.7978897,0,10,-2,-160.21071,0,3,2,2021,11,0,35,30,1,0,0,43.958282,43.958282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,59.29,49.68,8.333333333333334,1,1,0,0,10,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7978,9703,17335,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,8.0025682,7.870008,0,0,-1001.7905,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,1.8251588,0,17.574938,0,1,1,0,8.3704605,6.3217802,66.14,26.06,-9,-9,8.333333333333334,1,1,0,0,0,7,4,0,316,915160.5,141294.56,409731.19,0,0,0,2549.7063 +7979,9704,17336,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1082.3208,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.78,26.65,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,44,134598.75,0,0,0,0,0,2113.99 +7980,9705,17337,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.3063917,8.3784027,0,0,-846.30078,0,3,2,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,2.7148373,0,26.644384,0,1,1,0,5.7915249,8.5837049,36.02,37.9,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,317,1290729.8,514696.41,544214.31,0,0,0,2714.4502 +7981,9706,17338,17339,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,5.9077559,5.6026335,12,-4,51.612892,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9114838,5.4521012,57.33,53.46,46.69,35.01,8.333333333333334,1,1,0,0,7,10,4,1,305,1274961.5,634653.63,383224,0,0,0,2840.5989 +7981,9706,17339,17338,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.6241064,8.6866779,12,4,-4.1421952,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.8772049,8.2879477,46.69,35.01,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,305,1274961.5,634653.63,383224,0,0,0,2840.5989 +7982,9707,17340,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.3351569,7.0839834,0,0,0,-985.31641,0,-9,2,2021,6,0,25,25,1,0,0,7.1623898,7.1623898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,12,13,2,0,204.5,-26659.328,6995.8672,0,0,1025.7139,665.1709,1339.5583 +7982,9707,17341,-9,17340,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.6897,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,0,204.5,-26659.328,6995.8672,0,0,1025.7139,665.1709,1339.5583 +7983,9708,17342,17343,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5303488,8.488431,0,3,8,-44.978714,0,-9,-9,2021,9,0,50,40,1,1,0,9.5104647,9.5104647,.05,.05,0,0,0,0,0,0,1,1,0,4.9248095,0,52,55,44.63,18.77,8,1,1,0,0,1,9,4,0,284,1087752.3,728611.31,348815.69,0,0,0,1754.7238 +7983,9708,17343,17342,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,7,-8,-125.8387,0,2,2,2021,14,4,0,55,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.63,18.77,52,55,3.333333333333333,1,1,0,1,11,9,4,0,284,1087752.3,728611.31,348815.69,0,0,0,1754.7238 +7984,9709,17344,17345,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,54,5,10.580888,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,9.1182508,0,7,1,1,0,0,0,55.17,31.58,37.78,22.44,3.333333333333333,1,1,0,1,8,5,3,1,217.5,1219040.5,408045.91,274146.38,0,0,0,1445.3818 +7984,9709,17345,17344,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.9905119,7.9442239,54,-5,61.176445,0,3,3,2021,31,11,0,0,4,11,0,0,0,0,0,0,1,1.6160225,49.017262,28.495699,27,1,1,0,8.0600138,7.5445685,37.78,22.44,55.17,31.58,3.333333333333333,1,1,0,0,2,5,3,1,217.5,1219040.5,408045.91,274146.38,0,0,0,1445.3818 +7985,9710,17346,17347,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,9.044342,8.8471289,0,8,0,23.083513,0,2,2,2021,5,1,44,41,1,1,0,21.279787,21.279787,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,51.77,58.57,5,1,1,0,0,9,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17347,17346,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1084909,8.9568272,0,8,0,-23.526718,0,3,3,2021,1,0,40,37,1,0,0,28.45257,28.45257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,46.5,58.26,6.666666666666667,1,1,0,1,9,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17348,-9,17346,17347,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.60132,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17349,-9,17346,17347,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2964,-9,1,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.9,60.31,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7986,9711,17350,17351,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.692791,8.637084,0,2,6,.64450926,0,-9,-9,2021,7,0,45,39,1,0,0,15.026492,15.026492,.05,.05,0,0,0,0,0,0,1,1,0,7.0355501,0,52.31,58.29,51.79,30.21,10,1,1,0,0,15,4,5,1,810.5,395042.69,146719.47,252808.5,0,0,0,6919.1377 +7986,9711,17351,17350,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,8.4180965,8.9038601,2,-6,10.234913,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6361351,8.4649115,51.79,30.21,52.31,58.29,8.333333333333334,1,1,0,0,0,4,5,1,810.5,395042.69,146719.47,252808.5,0,0,0,6919.1377 +7987,9712,17352,17353,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.9319334,6.5238013,11,2,61.397533,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7806501,43.41,51.96,48.97,47.62,6.666666666666667,1,1,0,0,9,4,2,1,882.5,270823.38,145008.84,143117.06,0,0,0,1146.226 +7987,9712,17353,17352,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-2,-55.727196,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.97,47.62,43.41,51.96,8.333333333333334,1,1,0,0,0,4,2,1,882.5,270823.38,145008.84,143117.06,0,0,0,1146.226 +7988,9713,17354,17355,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,45,-8,0,0,3,3,2021,10,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6869545,0,49.34,47.5,58.46,39.69,8.333333333333334,1,1,0,0,4,13,1,1,626,-44668.688,0,0,0,0,0,933.33496 +7988,9713,17355,17354,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,45,8,0,0,3,3,2021,8,0,0,30,4,0,0,0,0,0,0,0,1,0,41.607208,0,0,1,1,0,0,0,58.46,39.69,49.34,47.5,6.666666666666667,1,1,0,0,11,13,1,1,626,-44668.688,0,0,0,0,0,933.33496 +7989,9714,17356,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.2952032,7.6841836,0,0,0,-1146.2091,0,-9,-9,2021,9,1,45,45,1,1,0,7.9260283,7.9260283,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,378,-189291.66,0,0,0,0,0,1485.8069 +7990,9715,17357,17358,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,10,9,-32.572697,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,27.50325,39.659004,254.18993,0,1,1,0,2.156539,0,20.73,25.8,43.28,48.9,1.666666666666667,1,1,0,1,0,12,3,1,179.5,647743.75,428053.69,198879.11,0,0,0,2438.8059 +7990,9715,17358,17357,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,7.9343796,8.0261278,0,10,0,66.820908,0,3,3,2021,9,0,44,35,1,0,0,5.7073631,5.7073631,0,0,0,0,0,0,0,42,1,1,0,2.1520932,0,43.28,48.9,20.73,25.8,6.666666666666667,2,3,0,1,11,12,3,1,179.5,647743.75,428053.69,198879.11,0,0,0,2438.8059 +7991,9716,17359,17360,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.340313,8.1616392,0,2,-1,-23.086906,-9,-9,-9,2021,12,0,38,0,1,0,0,11.410289,11.410289,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,5,4,5,1,357,72502.609,1224.499,152364.09,108815.27,7389.3296,0,2670.52 +7991,9716,17360,17359,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5339699,8.5146227,0,2,1,170.38971,0,-9,-9,2021,11,0,38,43,1,0,0,12.477544,12.477544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,5,4,5,1,357,72502.609,1224.499,152364.09,108815.27,7389.3296,0,2670.52 +7992,9717,17361,17362,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.1181712,3.1820242,31,9,-24.456352,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9986625,3.9685805,53.5,53.7,57.16,56.15,10,1,1,0,0,0,7,3,1,390.5,679621.88,470920.5,237859.52,0,0,0,1823.6292 +7992,9717,17362,17361,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.6018167,7.616076,31,0,83.606934,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4675875,7.5470476,57.16,56.15,53.5,53.7,10,1,1,0,0,5,7,3,1,390.5,679621.88,470920.5,237859.52,0,0,0,1823.6292 +7993,9718,17363,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,6.6195226,6.5539532,0,0,-1025.2028,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4570146,7.0753679,58,52,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1657,575097.69,190074.56,235642.02,0,0,0,1562.1414 +7994,9719,17364,17365,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-11.93593,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9890494,0,54.96,53.17,64.40000000000001,42,8.333333333333334,1,1,0,0,0,12,2,1,595,385311.88,212060.55,144422.02,0,3255.6543,0,1477.981 +7994,9719,17365,17364,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1205034,7.270937,9,3,53.249584,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5578504,7.2534599,64.40000000000001,42,54.96,53.17,10,1,1,0,0,0,12,2,1,595,385311.88,212060.55,144422.02,0,3255.6543,0,1477.981 +7995,9720,17366,17367,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.4300871,8.0564337,0,9,-2,-39.679035,0,2,1,2021,11,0,37,0,1,0,0,14.213171,14.213171,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52.01,48.98,5,1,1,0,0,12,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9720,17367,17366,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.0042639,7.9645147,0,9,2,-156.55762,0,2,2,2021,7,0,28,31,1,0,0,11.497692,11.497692,.05,.05,0,0,0,0,0,0,1,1,0,2.2650502,0,52.01,48.98,46.08,57.2,6.666666666666667,1,1,0,0,11,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9720,17368,-9,17367,17366,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9721,17369,-9,17367,17366,1,1,18,0,1,0,2,2,1,0,4,6.9725513,6.9258533,0,0,0,-1014.932,-9,2,2,2021,10,0,47,0,1,0,1,2.6912024,2.6912024,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,517,192174.89,0,0,0,0,257.65961,293.78674 +7996,9722,17370,17371,17372,-9,1,1,34,0,0,0,1,1,-9,0,3,9.3777208,9.4187002,0,5,6,-42.375092,0,3,2,2021,12,1,40,41,1,1,0,33.245571,33.245571,0,0,0,0,0,0,0,0,1,1,0,9.3788815,0,55.19,46.38,52.48,54.33,8.333333333333334,2,3,0,0,9,8,5,0,1235,197098.23,21464.656,268988.56,234681.36,0,0,8917.2246 +7996,9722,17371,17370,-9,-9,1,0,28,0,0,0,1,1,1,0,4,8.77596,8.5142345,0,5,-6,41.791294,-9,-9,-9,2021,9,0,37,0,1,0,0,16.133823,16.133823,0,0,0,0,0,0,0,14.5,1,1,0,4.9278326,0,52.48,54.33,55.19,46.38,8.333333333333334,2,3,0,0,4,8,5,0,1235,197098.23,21464.656,268988.56,234681.36,0,0,8917.2246 +7996,9723,17372,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.1498551,6.3596554,0,0,-963.02954,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1977901,52,45,-9,-9,8,2,3,0,0,0,8,2,0,1209,377836.88,232739.52,350688.19,0,0,0,1345.108 +7997,9724,17373,-9,-9,-9,1,0,77,0,2,0,2,2,-9,0,4,0,6.3048978,6.4445648,0,0,-953.87408,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.776053,6.411284,58.15,52.91,-9,-9,0,1,1,0,0,0,2,2,1,204,252496.11,28503.207,233168.5,0,0,0,1316.7533 +7997,9725,17374,-9,17375,17376,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.4983,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7997,9725,17375,17376,17373,-9,1,0,47,0,2,0,2,2,-9,0,5,8.1646261,8.2044945,0,21,-2,1.7706422,-9,2,2,2021,10,0,45,0,1,0,0,10.028905,10.028905,.05,.05,0,0,0,0,0,0,1,1,0,3.7360151,0,49.17,58.56,32.01,53.98,8.333333333333334,1,1,0,0,13,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7997,9725,17376,17375,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.8341427,8.7193661,0,17,2,110.23605,0,2,2,2021,8,0,45,39,1,0,0,18.823009,18.823009,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,32.01,53.98,49.17,58.56,8.333333333333334,1,1,0,0,15,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7998,9726,17377,17378,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2145844,8.0924101,0,9,3,-89.724075,0,2,2,2021,6,0,37,37,1,0,0,10.464822,10.464822,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.86,55.31,38.34,62.12,8.333333333333334,1,1,0,0,10,11,5,1,586.5,664372.75,586636.63,147470.95,25248.871,0,0,2491.0049 +7998,9726,17378,17377,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.4447985,8.5768051,0,9,-3,-41.07439,0,2,2,2021,12,0,35,35,1,0,0,19.284445,19.284445,0,0,0,0,0,0,0,0,0,0,0,4.5274782,0,38.34,62.12,49.86,55.31,3.333333333333333,1,1,0,0,8,11,5,1,586.5,664372.75,586636.63,147470.95,25248.871,0,0,2491.0049 +7998,9727,17379,-9,17378,17377,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1084.1927,-9,1,2,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,10,1,1,0,0,0,11,1,1,1289,-52948.648,0,0,0,0,0,169.49542 +7999,9728,17380,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1031.311,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,1,0,6,2,0,3270,11859.891,0,0,0,0,0,1271.5081 +8000,9729,17381,-9,17384,17383,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.37567,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17382,-9,17384,17383,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.50317,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17383,17384,-9,-9,1,1,32,1,2,0,2,2,-9,1,3,8.6374311,8.2254429,0,5,1,112.17192,0,-9,-9,2021,7,0,42,42,1,0,0,11.976869,11.976869,.05,.05,0,0,0,0,0,2,1,1,0,3.0869288,0,52.4,52.91,37.46,55.55,8.333333333333334,1,1,0,0,12,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17384,17383,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,8.2427092,8.1799259,0,5,-1,-33.533443,0,-9,-9,2021,12,1,38,41,1,1,0,10.506119,10.506119,0,0,0,0,0,0,0,2,1,1,0,2.4136236,0,37.46,55.55,52.4,52.91,6.666666666666667,1,1,0,0,9,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8001,9730,17385,17388,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.0350294,7.6971388,0,11,0,-95.754372,0,-9,-9,2021,11,0,34,34,1,0,0,10.947788,10.947788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,33.7,54.1,6.666666666666667,2,3,0,0,12,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17386,-9,17388,17385,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.70264,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17387,-9,17388,17385,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-952.75464,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,0,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17388,17385,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.1131716,6.9137955,0,22,0,-29.829023,0,3,2,2021,12,1,15,10,1,1,0,9.1904879,9.1904879,.05,.05,0,0,0,0,0,42,1,1,0,0,0,33.7,54.1,52,54.51,6.666666666666667,2,3,0,0,7,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9731,17389,-9,17388,17385,1,1,18,0,2,0,2,2,-9,0,4,6.8370156,6.4719296,0,0,0,-1039.8531,-9,2,2,2021,11,1,10,0,1,1,1,7.5014005,7.5014005,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,1,9,2,1,1283,-50396.461,0,0,0,0,0,937.67847 +8002,9732,17390,17391,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.607018,6.2022376,53,0,-4.6725354,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3889084,6.7032752,49.26,54.61,62.42,42.94,6.666666666666667,1,1,0,0,7,9,2,1,352.5,221395.58,172980.09,199633.8,0,0,0,782.12848 +8002,9732,17391,17390,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,53,0,-82.68293,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,42.94,49.26,54.61,8.333333333333334,1,1,0,0,0,9,2,1,352.5,221395.58,172980.09,199633.8,0,0,0,782.12848 +8003,9733,17392,17393,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.5216808,8.5952644,0,11,-3,31.805946,0,3,2,2021,16,6,37,37,1,6,0,13.936622,13.936622,0,0,0,0,0,0,0,2,0,0,0,3.6397314,0,21.24,59.82,43.14,35.81,5,1,1,0,0,11,10,5,1,687.5,60306.531,-26020.941,302874.47,209828.22,37954.777,0,4597.3555 +8003,9733,17393,17392,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.8267679,9.17202,6.0405774,11,3,7.8609381,0,3,2,2021,18,6,37,40,1,6,0,19.101805,19.101805,0,0,0,0,0,0,0,2,0,0,0,6.3727903,0,43.14,35.81,21.24,59.82,5,1,1,0,0,12,10,5,1,687.5,60306.531,-26020.941,302874.47,209828.22,37954.777,0,4597.3555 +8004,9734,17394,17396,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.7386541,8.3538313,0,3,-2,-29.26487,0,-9,-9,2021,10,0,38,49,1,0,0,16.291475,16.291475,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8004,9734,17395,-9,17394,17396,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.9657,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8004,9734,17396,17394,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.4597139,8.3620262,0,3,2,36.619995,0,2,2,2021,7,0,42,41,1,0,0,10.068789,10.068789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,8,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8005,9735,17397,17398,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.874136,8.7020378,0,27,0,51.610199,0,2,3,2021,25,10,45,42,1,10,0,17.817261,17.817261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.42,42.75,48.46,41.43,8.333333333333334,1,1,0,0,11,4,5,1,4275.5,154939.09,34926.051,64531.898,64961.734,856.56946,741.16815,3489.251 +8005,9735,17398,17397,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.2763939,8.3056183,0,27,0,-116.45406,0,1,2,2021,9,0,38,38,1,0,0,11.577967,11.577967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.46,41.43,34.42,42.75,6.666666666666667,1,1,0,0,12,4,5,1,4275.5,154939.09,34926.051,64531.898,64961.734,856.56946,741.16815,3489.251 +8005,9736,17399,-9,17397,17398,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1100.9135,-9,1,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.08,58.42,-9,-9,5,1,1,0,0,0,4,1,1,346,-5174.3203,0,0,0,0,0,0 +8006,9737,17400,-9,17402,17401,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-806.01221,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8006,9737,17401,17402,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.7780552,8.7972088,0,9,1,-43.05048,0,2,2,2021,9,0,57,62,1,0,0,17.989199,17.989199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8006,9737,17402,17401,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1068878,7.9599338,0,9,-1,54.42202,0,2,2,2021,10,1,30,27,1,1,0,9.3673639,9.3673639,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8007,9738,17403,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.5828619,7.6084538,0,0,0,-1004.3535,0,1,2,2021,11,0,30,30,1,0,0,5.6897511,5.6897511,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,425,58824.137,125337.93,0,0,0,0,1289.9999 +8008,9739,17404,17405,-9,-9,1,1,55,0,1,0,1,1,-9,0,5,9.1226912,9.2023926,0,10,-3,63.97176,0,3,1,2021,11,0,38,46,1,0,0,33.827526,33.827526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.79,63.29,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9739,17405,17404,-9,-9,1,0,58,0,1,0,1,1,-9,0,5,8.778759,8.9193697,0,10,3,-137.3009,0,2,2,2021,6,0,35,35,1,0,0,27.10585,27.10585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.79,63.29,8.333333333333334,1,1,0,0,7,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9739,17406,-9,17405,17404,1,0,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1012.6949,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,1,0,0,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9740,17407,-9,17405,17404,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1056.8901,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,160,4948.1499,0,0,0,0,0,0 +8009,9741,17408,17409,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0564528,9.3921385,0,2,0,-117.34026,0,-9,-9,2021,9,0,63,63,1,0,0,19.490967,19.490967,.05,.05,0,0,0,0,0,0,0,0,0,3.5432043,0,48.28,60.18,41.3,60.77,8.333333333333334,1,1,0,0,4,5,5,1,1310.5,1271906.4,340024.69,503484.13,70632.188,0,0,8927.7988 +8009,9741,17409,17408,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.2048273,8.8323679,0,2,0,57.813896,0,1,2,2021,7,0,50,53,1,0,0,25.000597,25.000597,.05,.05,0,0,0,0,0,0,0,0,0,3.6004424,0,41.3,60.77,48.28,60.18,6.666666666666667,1,1,0,0,14,5,5,1,1310.5,1271906.4,340024.69,503484.13,70632.188,0,0,8927.7988 +8010,9742,17410,17411,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.2809238,8.4498711,0,4,0,7.7485218,0,2,3,2021,9,0,46,47,1,0,0,14.389495,14.389495,0,0,0,0,0,0,0,0,1,1,0,2.2539649,0,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,12,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8010,9742,17411,17410,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.0249805,7.9880753,0,4,0,-99.439972,0,-9,-9,2021,10,0,26,30,1,0,0,13.901711,13.901711,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.33,53.46,8.333333333333334,1,1,0,0,8,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8010,9742,17412,-9,17411,17410,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.3065,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8011,9743,17413,-9,17414,17415,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5984,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8011,9743,17414,17415,-9,-9,1,0,51,0,1,0,3,3,-9,0,4,8.0791922,8.0395107,0,5,1,155.0363,0,2,3,2021,7,0,55,50,1,0,0,6.7708426,6.7708426,.05,.05,0,0,0,0,0,0,1,1,0,5.0905447,0,55.19,54.26,55.91,39.23,8.333333333333334,1,1,0,0,14,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8011,9743,17415,17414,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.127429,8.1324282,0,5,-1,142.85048,0,2,3,2021,12,2,55,55,1,2,0,7.567349,7.567349,.05,.05,0,0,0,0,0,0,1,1,0,4.7881484,0,55.91,39.23,55.19,54.26,8.333333333333334,1,1,0,0,12,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8012,9744,17416,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.1111741,5.7128754,0,0,-966.29211,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7648182,6.1514401,57.16,56.15,-9,-9,10,1,1,0,0,2,11,2,1,1821,255257.81,92804.422,21066.824,0,0,0,617.73608 +8013,9745,17417,17418,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.9774957,8.9207764,8.6316385,6,5,-5.5053062,0,2,2,2021,6,0,33,32,1,0,0,9.8723879,9.8723879,.05,.05,0,0,0,0,0,7,0,0,0,5.8422217,7.9401073,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,7,11,5,1,1005.5,135264.58,134953.56,86336.125,-1797.3322,0,0,3251.4834 +8013,9745,17418,17417,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.803565,7.8392024,0,6,-5,70.246605,0,2,2,2021,8,0,33,33,1,0,0,7.3119669,7.3119669,.05,.05,0,0,0,0,0,7,0,0,0,.10341156,0,57.73,54.53,57.16,56.15,10,1,1,0,0,7,11,5,1,1005.5,135264.58,134953.56,86336.125,-1797.3322,0,0,3251.4834 +8014,9746,17419,17420,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,67,-1,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4601457,0,53,44,66.55,16.75,8,1,1,0,0,0,9,1,1,723.5,226987.88,71997.563,310302.75,0,14164.014,0,1688.9623 +8014,9746,17420,17419,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,0,0,67,1,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,3.8796487,.47784126,22.487167,120,1,1,0,2.3789387,0,66.55,16.75,53,44,10,1,1,0,0,0,9,1,1,723.5,226987.88,71997.563,310302.75,0,14164.014,0,1688.9623 +8015,9747,17421,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3312836,8.2400484,0,0,0,-1115.6011,0,2,1,2021,3,0,50,40,1,0,0,8.217433,8.217433,.05,.05,0,0,0,0,0,0,1,1,0,2.062717,0,53.47,52.37,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,700,265986.53,162794.64,172961.92,97221.836,0,0,1408.8119 +8016,9748,17422,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.2851267,8.4592552,0,0,0,-1034.168,0,2,2,2021,12,4,38,43,1,4,0,9.2606964,9.2606964,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.81,35.99,-9,-9,8.333333333333334,1,1,0,0,3,6,4,0,272,283990,-5191.9736,0,0,8154.2002,-243.86279,1670.8656 +8017,9749,17423,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.9526863,9.2299871,0,0,-904.31726,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1763182,8.6198368,58.01,33.98,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,204,417694.25,320090.5,91757.133,0,0,0,5390.0552 +8018,9750,17424,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4867048,8.4787846,0,0,0,-943.90167,0,2,2,2021,6,0,45,55,1,0,0,15.944152,15.944152,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,315,-84976.602,0,0,0,0,0,1027.517 +8019,9751,17425,17426,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,0,0,0,19,-1,12.37796,0,2,3,2021,17,6,0,35,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.991137,0,58.47,50.22,39,55.12,8.333333333333334,1,1,1,0,11,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17426,17425,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.9362822,8.0872421,0,18,1,-71.403503,0,3,2,2021,18,6,23,17,1,6,0,18.450436,18.450436,0,0,0,0,0,0,0,0,1,1,0,3.8957071,0,39,55.12,58.47,50.22,6.666666666666667,1,1,0,0,2,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17427,-9,17426,17425,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.6571,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17428,-9,17426,17425,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.0691,-9,2,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8020,9752,17429,17430,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,5.1024103,4.9629049,0,1,27,-55.359688,0,2,2,2021,10,0,10,20,1,1,0,1.5042958,1.5042958,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,49,58,8,1,1,0,1,6,5,2,0,456.5,15791.426,0,0,0,0,0,-66.982117 +8020,9752,17430,17429,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,1,-27,-27.701145,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,51,54,7,1,1,1,0,0,5,2,0,456.5,15791.426,0,0,0,0,0,-66.982117 +8021,9753,17431,-9,17432,17434,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5696,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17432,17434,-9,-9,1,0,44,0,1,0,1,1,1,0,4,7.9653583,7.7683659,0,9,-5,-20.240429,-9,3,3,2021,7,1,37,0,1,1,0,9.3901539,9.3901539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.28,48.88,6.666666666666667,1,1,0,0,10,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17433,-9,17432,17434,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-933.90942,-9,1,3,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.19,63.78,-9,-9,5,1,1,0,0,0,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17434,17432,-9,-9,1,1,49,0,1,0,3,3,-9,1,3,7.7001047,8.0660152,0,9,5,-2.1089058,0,3,3,2021,1,0,43,0,1,0,0,5.5459704,5.5459704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,62.49,55.09,8.333333333333334,1,1,0,0,4,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8022,9754,17435,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.3388467,7.3213906,0,0,-1084.6243,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8802595,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,467,613574.56,137277.14,317294.88,0,0,0,1757.7323 +8023,9755,17436,17438,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.5270605,8.4122438,0,10,-1,16.312954,0,3,2,2021,0,0,30,0,1,0,0,13.688792,13.688792,0,0,0,0,0,0,0,0,1,1,0,6.80198,0,57.06,57.76,35.03,52.67,10,1,1,0,0,7,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9755,17437,-9,17436,17438,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1011.0583,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,1,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9755,17438,17436,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,0,0,0,10,1,-136.90309,0,2,2,2021,22,9,0,36,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6003094,0,35.03,52.67,57.06,57.76,5,1,1,1,0,10,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9756,17439,-9,17436,17438,1,1,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-984.91254,-9,2,1,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,377,94240.367,0,0,0,0,0,0 +8024,9757,17440,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.3494997,8.5359449,0,3,9,47.458515,0,2,2,2021,22,9,39,40,1,9,0,14.446103,14.446103,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.21,48.67,10.64,60.69,1.666666666666667,1,1,0,1,11,4,5,0,185,57621.914,155564.14,127216.8,113233.67,0,3232.8811,2097.6377 +8024,9758,17441,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,8.4268436,8.3554344,0,3,0,-3.9025104,-9,-9,-9,2021,24,8,36,0,1,8,0,13.830408,13.830408,.05,.05,0,0,0,0,0,0,0,0,0,5.5226493,0,10.64,60.69,24.21,48.67,1.666666666666667,1,1,0,1,13,4,5,0,240,-113658.51,-1024.053,0,0,0,627.96667,2476.6487 +8025,9759,17442,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.5710802,6.7515135,0,0,-1081.101,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4213662,6.5075474,44.99,43.48,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1176,835447.38,206810.91,641327.38,0,0,0,414.88284 +8026,9760,17443,17444,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,3,6,-31.593859,-9,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.54,35.38,43.97,53.97,8.333333333333334,1,1,1,0,5,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8026,9760,17444,17443,-9,-9,1,1,23,0,1,0,3,3,-9,0,3,8.79109,9.0287676,0,3,-6,-88.327606,-9,-9,-9,2021,8,0,30,0,1,0,0,28.084082,28.084082,.05,.05,0,0,0,0,0,0,1,1,0,1.9469087,0,43.97,53.97,60.54,35.38,8.333333333333334,1,1,0,0,1,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8026,9760,17445,-9,17443,17444,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.8314,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8027,9761,17446,17447,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.1832504,6.8269782,54,2,97.613235,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,1.0516449,0,1,1,0,1.4994062,7.1375484,52.39,28.63,46,37,6.666666666666667,1,1,0,0,10,2,2,1,546.5,479395.63,146855.3,205466.53,0,0,0,1051.3286 +8027,9761,17447,17446,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,54,-2,27.218479,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,37,52.39,28.63,8.333333333333334,1,1,0,0,0,2,2,1,546.5,479395.63,146855.3,205466.53,0,0,0,1051.3286 +8028,9762,17448,17451,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.857985,7.85289,0,6,1,-154.81396,0,-9,-9,2021,6,0,40,40,1,0,0,6.6656799,6.6656799,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.69,57.47,10,1,1,0,0,9,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17449,-9,17451,17448,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.6499,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17450,-9,17451,17448,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.8606,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17451,17448,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.7000418,9.0124588,0,18,-1,5.971405,0,2,2,2021,7,0,39,0,1,0,0,24.880726,24.880726,.05,.05,0,0,0,0,0,0,0,0,0,8.224453,0,54.69,57.47,62.49,55.09,8.333333333333334,1,1,0,0,2,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8029,9763,17452,17453,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,7.9886632,7.841413,0,29,-3,-52.781567,0,-9,-9,2021,16,4,31,31,1,4,0,12.851096,12.851096,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.71,15.11,56.64,28.07,1.666666666666667,1,1,0,0,10,5,4,1,1114.5,733798,531680.25,150620.72,84774.297,8895.3379,0,3853.5535 +8029,9763,17453,17452,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,8.237752,8.3942738,0,29,3,-15.190721,0,-9,-9,2021,11,1,40,40,1,1,0,9.8814049,9.8814049,.05,.05,0,0,0,0,0,86,1,1,0,0,0,56.64,28.07,35.71,15.11,5,1,1,0,0,9,5,4,1,1114.5,733798,531680.25,150620.72,84774.297,8895.3379,0,3853.5535 +8030,9764,17454,17456,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9664865,7.6051984,0,9,-1,15.485174,0,2,2,2021,11,0,42,41,1,0,0,7.469861,7.469861,0,0,0,0,0,0,0,0,1,1,0,0,0,38.1,47.48,58.32,50.22,6.666666666666667,1,1,0,0,10,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9764,17455,-9,17456,17454,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1041.5256,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9764,17456,17454,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.8540201,7.0468912,0,9,1,-136.77267,0,2,2,2021,7,0,16,16,1,0,0,8.4615021,8.4615021,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,38.1,47.48,10,1,1,0,0,3,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9765,17457,-9,17456,17454,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-865.4787,-9,2,2,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,56.68,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,1239,16757.598,0,0,0,0,0,287.38571 +8031,9766,17458,-9,17460,17459,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.98822,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17459,17460,-9,-9,1,1,39,2,2,0,2,2,-9,0,4,8.306201,8.431344,0,14,2,-63.67664,0,2,2,2021,7,0,37,37,1,0,0,13.691253,13.691253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.24,44.87,8.333333333333334,1,1,0,0,11,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17460,17459,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.6644182,8.8607101,0,14,-2,-119.7261,0,2,1,2021,17,5,42,36,1,5,0,19.175575,19.175575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.24,44.87,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17461,-9,17460,17459,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.3304,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8032,9767,17462,17464,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,7.1874046,7.480916,0,3,0,-157.27708,0,2,2,2021,9,0,14,45,1,0,0,12.892984,12.892984,0,0,0,0,0,0,0,0,1,1,0,.22302303,0,59.04,54.12,54.79,55.86,8.333333333333334,1,1,0,0,8,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8032,9767,17463,-9,17462,17464,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.0682,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8032,9767,17464,17462,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.7005711,8.3186693,0,3,0,-16.605627,0,-9,-9,2021,6,0,15,15,1,0,0,31.443525,31.443525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,59.04,54.12,8.333333333333334,1,1,0,0,8,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8033,9768,17465,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.8710485,4.881393,0,0,-1146.4659,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2613692,5.1403503,59.15,49.67,-9,-9,0,1,1,0,0,0,11,2,0,1372,37297.301,-96113.875,17103.307,0,0,-401.24268,1223.0773 +8034,9769,17466,17467,-9,-9,1,0,62,0,0,0,2,2,0,0,4,0,0,0,10,-1,-11.314109,-9,3,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,24.26,51.38,8.333333333333334,1,1,0,0,9,11,4,1,308,576079.5,156948.75,278759.66,0,0,5237.0508,2248.0029 +8034,9769,17467,17466,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.3285227,8.6615696,6.6755338,10,1,8.6789322,0,3,3,2021,20,8,37,37,1,8,0,14.285465,14.285465,0,0,0,0,0,0,0,0,0,0,0,0,7.065269,24.26,51.38,55.19,54.26,3.333333333333333,1,1,0,0,11,11,4,1,308,576079.5,156948.75,278759.66,0,0,5237.0508,2248.0029 +8035,9770,17468,17469,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,49,-4,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,4.8538671,0,22.689791,0,1,1,0,3.1443644,0,52.44,27.29,51.94,55.88,3.333333333333333,1,1,0,0,0,7,1,1,484,0,0,0,0,0,0,661.10742 +8035,9770,17469,17468,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,49,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8011746,0,51.94,55.88,52.44,27.29,8.333333333333334,1,1,0,0,5,7,1,1,484,0,0,0,0,0,0,661.10742 +8036,9771,17470,-9,17471,17472,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1026.5239,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17471,17472,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.4642086,8.1165047,0,26,-3,32.399544,0,2,2,2021,18,7,20,20,1,7,0,25.9629,25.9629,0,0,0,0,0,0,0,2,1,1,0,5.9033904,0,43.28,61.68,36.97,58.59,8.333333333333334,1,1,0,0,12,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17472,17471,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,0,0,0,26,3,-42.49041,1,2,2,2021,17,5,0,0,2,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5218706,0,36.97,58.59,43.28,61.68,3.333333333333333,1,1,0,0,13,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17473,-9,17471,17472,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1008.4244,-9,1,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2483803,0,28,68.3,-9,-9,1.666666666666667,1,1,0,0,0,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8037,9772,17474,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.2974439,6.9707761,0,0,-1085.4635,0,-9,-9,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.844898,7.1438088,56.13,43.36,-9,-9,10,1,1,0,0,0,2,3,1,296,41890.738,203018.22,0,0,0,0,1556.7948 +8038,9773,17475,17476,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.8764286,6.4297867,30,5,24.844624,0,-9,2,2021,14,5,0,0,4,5,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.9604034,6.937314,52.86,24.73,42.73,51.79,8.333333333333334,1,1,0,0,11,12,4,1,1280,77237.859,151350.94,0,0,0,-37.158997,2640.5898 +8038,9773,17476,17475,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0966568,8.3143616,6.9754391,27,-5,18.029373,0,2,1,2021,18,6,17,21,1,6,0,20.571463,20.571463,0,0,0,0,0,0,0,27,1,1,0,0,7.3342404,42.73,51.79,52.86,24.73,3.333333333333333,1,1,0,0,12,12,4,1,1280,77237.859,151350.94,0,0,0,-37.158997,2640.5898 +8039,9774,17477,17478,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,6,-6,-65.892998,0,2,2,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,10.47,15.08,66.28,8.333333333333334,1,1,0,1,0,12,4,0,610,270082.91,289445.69,0,0,0,0,3182.3066 +8039,9774,17478,17477,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.2759113,8.2484903,6.3270683,6,6,15.166781,0,-9,-9,2021,31,12,49,49,1,12,0,9.07586,9.07586,.05,.05,0,0,0,0,0,27,1,1,0,6.4115,0,15.08,66.28,48.66,10.47,3.333333333333333,1,1,0,1,9,12,4,0,610,270082.91,289445.69,0,0,0,0,3182.3066 +8040,9775,17479,-9,17482,17480,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0874,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17480,17482,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.1965828,9.4333315,0,6,4,-64.05925,0,-9,-9,2021,12,0,60,54,1,0,0,16.710352,16.710352,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.42,52.94,51.24,58.84,8.333333333333334,1,1,0,0,14,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17481,-9,17482,17480,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.31335,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17482,17480,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,0,0,0,6,-4,-32.550377,0,2,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.3500662,0,51.24,58.84,46.42,52.94,8.333333333333334,1,1,0,0,9,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8041,9776,17483,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.5678916,8.06106,6.8013206,0,0,-946.76471,0,2,1,2021,28,10,1,67,1,10,0,220.31474,220.31474,.05,.05,0,0,0,0,0,0,1,0,1,4.9163585,6.2303691,60.45,24.99,-9,-9,6.666666666666667,1,1,0,0,10,8,4,1,392,3439.9797,147094.27,0,0,0,259.14621,2749.3271 +8042,9777,17484,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.0269547,6.6541729,0,0,-1018.2648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.1697121,12.474104,22.049023,0,1,1,0,1.3079849,6.8840032,52.88,18.4,-9,-9,8.333333333333334,1,1,0,0,3,7,2,0,528,308030.22,116704.16,199496.25,0,0,0,1962.1193 +8043,9778,17485,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,7.2869143,8.110631,7.6026545,0,0,-1077.3049,0,2,2,2021,14,2,15,15,1,2,0,11.480651,11.480651,.05,.05,0,0,0,0,0,0,1,1,0,7.4883599,7.5292716,50.96,24.42,-9,-9,1.666666666666667,1,1,0,1,5,9,4,0,1344,162005.78,67465.953,95233.648,-4049.7913,0,0,1788.0061 +8044,9779,17486,17487,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.7144699,8.7600842,0,25,0,-9.5716982,0,-9,-9,2021,8,0,20,20,1,0,0,39.719521,39.719521,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.56,36.3,8.333333333333334,1,1,0,0,10,4,5,1,2805.5,492931.44,341408.25,184693.09,14407.354,0,2228.7007,3295.8687 +8044,9779,17487,17486,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.8511133,7.8966041,0,24,0,35.17717,0,-9,-9,2021,11,2,5,5,1,2,0,53.388458,53.388458,.05,.05,0,0,0,0,0,0,0,0,0,3.1372232,0,47.56,36.3,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,2805.5,492931.44,341408.25,184693.09,14407.354,0,2228.7007,3295.8687 +8045,9780,17488,17489,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.0053825,7.7899728,7,2,127.46549,0,1,3,2021,8,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7254355,7.6233063,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,197.5,1899123.3,1778222.1,0,0,4498.0239,0,3148.3003 +8045,9780,17489,17488,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.7774806,8.221159,7.3579555,7,-2,-149.2607,0,2,1,2021,7,0,16,20,1,0,0,19.485369,19.485369,0,0,0,0,0,0,0,2,0,0,0,1.3602561,7.6903281,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,12,4,1,197.5,1899123.3,1778222.1,0,0,4498.0239,0,3148.3003 +8046,9781,17490,-9,17491,17492,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.67096,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6796693,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,658,-44581.172,0,0,0,0,0,517.99817 +8046,9782,17491,17492,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.2287598,9.2682819,0,2,-7,-2.4249244,0,2,2,2021,11,0,57,47,1,0,0,21.328873,21.328873,0,0,0,0,0,0,0,0,0,0,0,4.4509554,0,60.06,37.11,49.75,50.01,8.333333333333334,1,1,0,0,9,6,5,1,1062.5,1080546.5,748204.88,284958.03,0,0,0,6974.1836 +8046,9782,17492,17491,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0943089,8.9229774,0,2,7,115.76668,0,-9,-9,2021,14,4,38,40,1,4,0,29.455523,29.455523,0,0,.05,0,0,0,0,0,0,0,0,7.7306643,0,49.75,50.01,60.06,37.11,8.333333333333334,1,1,0,0,9,6,5,1,1062.5,1080546.5,748204.88,284958.03,0,0,0,6974.1836 +8047,9783,17493,17494,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.8820639,8.018054,65,6,19.07164,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,26.958559,20.941795,231.43468,120,1,1,0,4.0927219,7.7541318,34.68,35.89,53,44,3.333333333333333,1,1,0,0,0,12,3,1,441.5,731345.75,250132.23,19404.887,0,0,0,2802.7148 +8047,9783,17494,17493,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,65,-6,41.368053,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,34.68,35.89,8,1,1,0,0,0,12,3,1,441.5,731345.75,250132.23,19404.887,0,0,0,2802.7148 +8048,9784,17495,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5181,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,27.39,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,1838,59342.398,0,0,0,0,0,665.43817 +8049,9785,17496,17497,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,8.2737722,7.8435464,7,9,-63.223225,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,14.069469,17.93507,128.39879,0,1,1,0,4.81144,7.8860002,42.86,31.98,54.2,57.49,3.333333333333333,1,1,0,0,0,11,4,1,1869.5,2139409.5,662458.63,201510.28,0,0,0,4075.2471 +8049,9785,17497,17496,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.7414322,6.9003539,7,0,65.589157,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.277431,6.6338687,54.2,57.49,42.86,31.98,8.333333333333334,1,1,0,0,2,11,4,1,1869.5,2139409.5,662458.63,201510.28,0,0,0,4075.2471 +8050,9786,17498,-9,17499,17500,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.84344,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8050,9786,17499,17500,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.3351626,7.3998575,0,17,2,48.019638,0,2,2,2021,5,0,40,0,1,0,0,4.1165652,4.1165652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,53.99,48.04,6.666666666666667,1,1,0,0,8,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8050,9786,17500,17499,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.7827644,9.7273912,0,17,-2,52.594597,0,2,2,2021,6,0,60,70,1,0,0,27.9492,27.9492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,52.99,51.28,6.666666666666667,1,1,0,0,7,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8051,9787,17501,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.0417204,8.4279346,4.3429599,0,0,-1079.507,0,3,3,2021,12,0,35,40,1,0,0,11.063593,11.063593,0,0,0,0,0,0,0,0,0,0,0,5.8009481,4.4501834,43.99,60.71,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,296,-17587.777,-106623.09,0,0,534.11328,0,989.43121 +8052,9788,17502,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,8.667016,8.7238083,0,0,-1024.6034,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4500055,8.3982296,65.21000000000001,44.28,-9,-9,10,1,1,0,0,0,7,5,1,530,417728.31,38407.523,121877.05,0,0,0,3696.7615 +8053,9789,17503,17504,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.6316905,6.6107216,49,-3,-29.918453,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.131923,0,0,1,1,0,0,6.3160548,62.17,41.71,57.16,56.15,10,1,1,0,0,8,12,3,1,1597.5,663220.38,264840,251683.44,0,0,0,2581.9741 +8053,9789,17504,17503,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4407754,7.3447456,49,3,-109.41246,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6849856,57.16,56.15,62.17,41.71,10,1,1,0,0,0,12,3,1,1597.5,663220.38,264840,251683.44,0,0,0,2581.9741 +8054,9790,17505,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4414577,8.4803276,0,0,0,-936.26715,0,-9,-9,2021,11,0,37,38,1,0,1,11.607125,11.607125,.05,.05,0,0,0,0,0,2,0,0,0,3.6227384,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,213,112816.92,171644.42,84301.914,57476.406,0,0,2186.782 +8055,9791,17506,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1074.8604,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,51,-9,-9,5,1,1,0,0,0,7,1,0,306,0,0,0,0,0,0,824.27496 +8056,9792,17507,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,6.9646363,6.8889151,0,0,0,-1128.4725,0,2,2,2021,8,1,16,16,1,1,0,8.840188,8.840188,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,47.27,-9,-9,10,4,2,0,0,6,9,2,0,1607,-107885.82,0,0,0,0,0,1312.6348 +8057,9793,17508,17510,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4722157,9.2405176,0,8,2,18.405029,-9,2,1,2021,11,1,40,0,1,1,0,38.6329,38.6329,.05,.05,0,0,0,0,0,0,0,0,0,7.5668216,0,41.06,62.04,46.44,59.62,8.333333333333334,1,1,0,0,12,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17509,-9,17510,17508,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17510,17508,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.1160583,9.3940802,0,8,-2,57.908039,-9,2,1,2021,10,0,38,0,1,0,0,25.058615,25.058615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,41.06,62.04,8.333333333333334,1,1,0,0,12,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17511,-9,17510,17508,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.6849,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8058,9794,17512,17513,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.0793643,6.8034444,0,11,3,47.60981,0,2,2,2021,7,0,18,27,1,0,0,6.8410106,6.8410106,0,0,0,0,0,0,0,2,1,0,1,0,0,60.53,48.35,43.2,49.01,8.333333333333334,1,1,0,0,11,10,3,0,1467.5,573243.63,179954.09,255361.2,0,0,0,884.66931 +8058,9794,17513,17512,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.1297073,7.1354923,0,11,-3,20.794758,0,2,2,2021,9,2,12,21,1,2,0,9.7171431,9.7171431,0,0,.05,0,0,0,0,0,1,0,1,0,0,43.2,49.01,60.53,48.35,10,1,1,0,0,11,10,3,0,1467.5,573243.63,179954.09,255361.2,0,0,0,884.66931 +8059,9795,17514,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-995.01575,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,33.26,-9,-9,6.666666666666667,1,1,0,0,4,13,1,1,1221,-24581.928,0,0,0,-1567.9871,0,680.22638 +8059,9796,17515,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.91968,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,38.75,-9,-9,5,1,1,1,1,0,13,1,1,345,111437.64,27001.525,0,0,0,0,940.77814 +8060,9797,17516,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.8464499,8.9421587,0,0,0,-1038.5568,0,2,2,2021,7,0,38,39,1,0,0,23.295198,23.295198,0,0,0,0,0,0,0,0,1,1,0,2.6925907,0,59.53,56.44,-9,-9,10,1,1,0,0,11,7,5,1,3016,185003.06,105332.88,72557.344,88748.172,0,0,1984.2581 +8061,9798,17517,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,6.8187575,6.8836298,0,0,0,-984.98987,0,2,2,2021,8,0,16,16,1,0,0,8.7421541,8.7421541,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,-9,-9,8.333333333333334,1,1,0,1,7,12,2,0,843.5,3296.8496,0,0,0,9557.9316,0,2220.5625 +8061,9798,17518,-9,17517,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.80768,-9,3,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,2,0,843.5,3296.8496,0,0,0,9557.9316,0,2220.5625 +8062,9799,17519,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1056.6454,0,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.86,48.18,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1131,-147180.19,0,0,0,0,0,1299.7339 +8063,9800,17520,-9,17523,17525,1,1,18,0,4,0,2,2,-9,0,4,7.354383,7.1087646,0,0,0,-963.4928,0,2,3,2021,9,2,24,0,1,2,1,7.6842012,7.6842012,0,0,0,0,0,0,0,0,1,1,0,0,0,45.44,54.5,-9,-9,8.333333333333334,2,3,0,0,1,8,3,0,1603,184383.36,0,0,0,0,0,731.57428 +8063,9801,17521,-9,17523,17525,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.7625,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17522,-9,17523,17525,1,0,15,0,4,1,3,0,-9,0,2,0,0,0,0,0,-999.66565,-9,2,3,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17523,17525,-9,-9,1,0,36,0,4,0,2,2,-9,0,3,7.7713833,7.9067659,0,9,-12,4.0548244,0,3,2,2021,13,0,24,0,1,2,0,12.89196,12.89196,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,65.93000000000001,29.26,3.333333333333333,2,3,0,0,1,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17524,-9,17523,17525,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.8183,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17525,17523,-9,-9,1,1,48,0,4,0,3,3,-9,0,3,0,0,0,9,12,-83.944054,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4254062,0,65.93000000000001,29.26,44,52,5,2,3,1,0,14,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17526,-9,17523,17525,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.8198,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8064,9802,17527,-9,17528,17529,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.0073,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8064,9802,17528,17529,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.9192562,8.6029205,0,16,-7,112.88098,-9,1,2,2021,10,0,42,0,1,0,0,13.213071,13.213071,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,8,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8064,9802,17529,17528,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,7.8357654,7.9832997,0,12,7,-50.724499,0,3,2,2021,11,0,53,38,1,0,0,5.928587,5.928587,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,54.51,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8065,9803,17530,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,2,8.5201349,8.7865934,0,0,0,-993.51318,0,1,2,2021,33,11,38,0,1,11,0,26.831249,26.831249,0,0,0,0,0,0,0,0,1,0,1,0,0,17.74,50.51,-9,-9,0,3,4,0,1,11,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8065,9803,17531,-9,17530,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1123,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8065,9803,17532,-9,17530,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.9483,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8066,9804,17533,17534,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.4044447,6.0314326,21,5,77.278084,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0645466,6.43325,51.24,58.84,55.11,47.63,8.333333333333334,1,1,0,0,0,4,2,1,731.5,135180.19,50790.051,0,0,0,0,3681.1187 +8066,9804,17534,17533,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,-5,-80.238205,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5664248,0,55.11,47.63,51.24,58.84,10,1,1,0,0,0,4,2,1,731.5,135180.19,50790.051,0,0,0,0,3681.1187 +8067,9805,17535,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.5481415,7.2832618,0,0,-1076.1426,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7824051,7.3314505,51.22,49.35,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,696,275755.53,87715.539,57536.293,0,0,0,832.35675 +8068,9806,17536,17537,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.504179,8.6261778,0,39,0,24.117785,0,2,3,2021,6,0,37,37,1,0,0,15.790892,15.790892,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.79,55.86,47.85,52.43,1.666666666666667,1,1,0,0,13,8,5,1,953.5,807854.38,315504.31,741407,92533.406,0,0,3182.9346 +8068,9806,17537,17536,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3022499,7.7833815,0,39,0,76.149963,0,3,3,2021,9,0,20,20,1,0,0,9.960988,9.960988,0,0,0,0,0,0,0,0,0,0,0,3.6322594,0,47.85,52.43,54.79,55.86,6.666666666666667,3,4,0,0,13,8,5,1,953.5,807854.38,315504.31,741407,92533.406,0,0,3182.9346 +8069,9807,17538,17539,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.7297831,6.7048988,9,-1,-49.252296,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0030537,6.7386718,38.09,63.39,49.35,59.64,6.666666666666667,1,1,0,0,0,6,3,1,3029.5,595748.94,222683.41,227898.22,0,0,0,2954.6931 +8069,9807,17539,17538,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.1381078,7.4750772,9,1,5.9286938,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8634667,7.0798626,49.35,59.64,38.09,63.39,8.333333333333334,1,1,0,0,8,6,3,1,3029.5,595748.94,222683.41,227898.22,0,0,0,2954.6931 +8070,9808,17540,17541,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.8672991,9.7379389,0,13,5,-50.099602,0,-9,-9,2021,11,2,50,40,1,2,0,39.801674,39.801674,.05,.05,0,0,0,0,0,0,0,0,0,.37109417,0,40.16,59.89,50.5,38.58,3.333333333333333,1,1,0,0,12,9,5,0,918.5,1843866.6,307770.72,817016.75,252197.16,0,0,5587.6602 +8070,9808,17541,17540,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4711714,8.6072826,0,13,-5,-128.56705,0,2,2,2021,13,2,48,50,1,2,0,12.475206,12.475206,0,0,0,0,0,0,.84268367,0,0,0,0,0,0,50.5,38.58,40.16,59.89,6.666666666666667,1,1,0,0,7,9,5,0,918.5,1843866.6,307770.72,817016.75,252197.16,0,0,5587.6602 +8071,9809,17542,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8331423,8.4443855,0,1,1,2.2490129,-9,1,1,2021,9,0,35,0,1,0,0,23.430853,23.430853,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.46,52.7,26,27.57,8.333333333333334,1,1,0,0,9,1,4,1,804,4898.8745,-15048.927,154673.89,148545.7,0,2041.3898,1975.2198 +8071,9810,17543,-9,-9,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,1,-1,98.646652,-9,2,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0463438,0,26,27.57,47.46,52.7,1.666666666666667,1,1,0,1,0,1,4,1,2424,-268986.47,0,0,0,-1413.8042,0,1278.9927 +8071,9811,17544,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.6900167,7.7657137,0,0,0,-1151.7773,-9,-9,-9,2021,10,1,40,0,1,1,0,6.6966596,6.6966596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.91,49.9,-9,-9,3.333333333333333,1,1,0,0,0,1,3,1,240,113736.6,54344.816,51485.645,0,3120.8691,-328.44962,724.74042 +8072,9812,17545,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.6037045,6.6747837,0,0,-911.117,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.6433682,58.32,28.96,-9,-9,5,2,3,0,0,0,8,2,0,469,477933.59,72673.633,440170.44,0,0,0,1375.7802 +8072,9813,17546,-9,17545,-9,1,0,32,0,0,0,3,3,-9,1,3,0,0,0,0,0,-993.61395,-9,1,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.146234,0,43.83,40.54,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,420,0,0,0,0,0,0,615.66327 +8073,9814,17547,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7824831,8.4159107,0,0,0,-1056.7104,0,3,3,2021,12,1,55,50,1,1,0,12.067861,12.067861,.05,.05,0,0,0,0,0,0,0,0,0,4.7825646,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,820,179774.42,19471.699,0,0,0,1674.6455,2087.5186 +8073,9815,17548,-9,17547,-9,1,0,26,0,0,0,1,1,-9,0,5,8.3689775,7.961184,0,0,0,-960.21637,0,2,2,2021,20,8,45,48,1,8,1,8.4224672,8.4224672,0,0,0,0,0,0,0,0,0,0,0,0,0,27.77,65.94,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,652,-42022.277,0,0,0,0,0,1145.1289 +8073,9816,17549,-9,17547,-9,1,1,18,0,0,1,2,0,0,0,2,0,6.7568083,6.9370494,0,0,-1007.3067,-9,2,-9,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.457788,0,56.14,36.8,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,139,-131841.77,0,0,0,0,0,-289.12778 +8074,9817,17550,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9827852,8.2185678,0,0,0,-1020.5493,0,-9,-9,2021,9,0,74,42,1,0,0,4.2662706,4.2662706,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,10,4,0,343,221741.84,53968.84,-21436.797,0,-191.72667,0,1380.7632 +8075,9818,17551,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7008381,7.5323167,0,0,-1077.2384,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.02202585,7.7901378,37.23,46.2,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1753,766981.56,278080.03,349524.88,0,0,0,1635.949 +8076,9819,17552,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1071.0311,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.64,54.91,-9,-9,3.333333333333333,1,1,0,0,2,8,1,0,540,-47050.195,0,0,0,0,0,362.01205 +8076,9820,17553,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.4317217,8.4174395,0,0,0,-1151.0275,0,-9,-9,2021,11,2,45,36,1,2,0,17.980621,17.980621,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,1039,30156.826,0,0,0,0,0,1773.8104 +8077,9821,17554,17555,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.0740395,8.1881618,0,2,0,63.24321,0,2,2,2021,10,0,44,49,1,0,0,8.5178013,8.5178013,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.35,59.64,43,39,8.333333333333334,1,1,0,0,10,12,4,1,1056.5,424379.06,447232.94,230839.25,21775.207,-446.90094,0,3190.1357 +8077,9821,17555,17554,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,8.3008337,8.4999065,0,2,0,31.204239,0,3,3,2021,19,8,35,35,1,8,0,13.322666,13.322666,.05,.05,0,0,0,0,0,14.5,1,1,0,.030520322,0,43,39,49.35,59.64,1.666666666666667,1,1,0,1,8,12,4,1,1056.5,424379.06,447232.94,230839.25,21775.207,-446.90094,0,3190.1357 +8078,9822,17556,17558,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0394258,8.0422878,0,12,-19,104.29407,-9,3,2,2021,12,0,40,0,1,2,0,8.3953276,8.3953276,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,55.86,43.17,7,3,4,0,1,10,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8078,9822,17557,-9,17556,17558,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-926.8468,-9,2,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,5,3,4,0,0,0,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8078,9822,17558,17556,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.1441846,6.2081094,13,19,-16.798964,-9,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0879612,55.86,43.17,46,50,8.333333333333334,3,4,0,1,10,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8079,9823,17559,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.2411246,7.0409093,0,0,0,-959.10229,0,3,3,2021,8,0,75,90,1,0,0,2.4804585,2.4804585,.05,.05,0,0,0,0,0,0,0,0,0,4.8054509,0,55,53,-9,-9,8,1,1,0,0,8,4,3,0,1834,-131359.22,-94264.945,0,0,0,0,750.69604 +8080,9824,17560,-9,17562,17561,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.7839,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17561,17562,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.0761328,7.8233552,0,1,4,48.400692,0,2,-9,2021,12,0,42,64,1,0,0,6.9771519,6.9771519,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.44,57.54,53.82,42.86,8.333333333333334,1,1,0,0,11,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17562,17561,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,6.5631595,6.9287882,6.0358415,1,-4,94.795822,-9,-9,-9,2021,9,0,16,0,1,0,0,4.5291214,4.5291214,.05,.05,0,0,0,0,.018041892,0,1,1,0,5.8310299,0,53.82,42.86,42.44,57.54,8.333333333333334,1,1,0,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17563,-9,17562,17561,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.05225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8081,9825,17564,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.2537823,6.2764535,0,0,-792.13287,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2111797,43.15,55.67,-9,-9,10,1,1,0,0,0,10,2,0,597,273394.22,-39317.852,307680.84,0,0,0,764.68805 +8081,9826,17565,-9,17564,-9,1,1,50,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.02942,0,2,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,1,0,0,10,1,0,317,221042.63,50283.281,0,0,0,0,287.34967 +8082,9827,17566,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,3.1052556,3.3014829,0,0,-1122.5959,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,41.910522,0,0,1,1,0,0,3.2387402,54,44,-9,-9,8,1,1,0,1,0,5,2,1,454,-14389.573,-18498.199,64780.566,0,0,0,1850.89 +8082,9828,17567,-9,17566,-9,1,1,65,0,0,0,3,3,-9,1,3,0,0,0,0,0,-852.33154,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,52,48,-9,-9,7,1,1,0,1,0,5,1,1,441,48706.965,0,0,0,0,604.38025,-358.7175 +8083,9829,17568,17569,-9,-9,1,0,51,0,3,0,3,3,-9,0,3,4.5795755,4.5954962,0,7,-3,-48.858223,0,3,3,2021,12,0,9,6,1,2,0,1.0786644,1.0786644,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,54.15,48.02,7,1,1,0,0,1,13,3,1,1184.5,597721,26341.307,434127.28,24490.285,8735.123,0,5379.5288 +8083,9829,17569,17568,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.1653862,8.3541622,0,7,3,-107.6048,0,3,3,2021,7,0,48,48,1,0,0,8.4240952,8.4240952,0,0,0,0,0,0,0,0,1,1,0,0,0,54.15,48.02,48,49,5,1,1,0,0,8,13,3,1,1184.5,597721,26341.307,434127.28,24490.285,8735.123,0,5379.5288 +8084,9830,17570,17571,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.3731499,8.2821131,48,-1,23.82053,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6973004,8.0730705,56.5,48.33,56.86,50.75,8.333333333333334,1,1,0,0,9,9,3,1,245.5,1123115,574691.75,419058.06,0,0,191.48218,3040.2095 +8084,9830,17571,17570,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.4069586,5.0150514,48,1,31.045668,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.788856,5.4213958,56.86,50.75,56.5,48.33,8.333333333333334,1,1,0,0,5,9,3,1,245.5,1123115,574691.75,419058.06,0,0,191.48218,3040.2095 +8085,9831,17572,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.1475506,8.2669306,0,0,0,-1062.391,-9,2,-9,2021,9,0,42,0,1,0,0,8.6040754,8.6040754,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.42,50.8,-9,-9,5,1,1,0,0,9,4,4,0,1056,269830.41,108085.36,0,0,0,0,1909.0743 +8086,9832,17573,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.2483807,8.3064699,0,0,0,-942.46204,0,3,2,2021,8,1,42,44,1,1,0,11.077054,11.077054,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,1441,-90265.578,19279.932,0,0,0,0,1342.2755 +8087,9833,17574,17576,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.0649595,8.2392302,0,10,8,13.112444,0,-9,-9,2021,8,0,30,31,1,0,0,10.617244,10.617244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,40.64,52.96,8.333333333333334,1,1,0,0,13,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17575,-9,17574,17576,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1925,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17576,17574,-9,-9,1,1,32,0,2,0,3,3,-9,0,3,8.1081915,8.182291,0,10,-8,-60.261761,0,3,3,2021,13,1,39,40,1,1,0,11.087126,11.087126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,62.49,55.09,5,1,1,0,0,11,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17577,-9,17574,17576,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.9402,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8088,9834,17578,-9,17581,17580,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.31793,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17579,-9,17581,17580,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1039.3315,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17580,17581,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6696148,8.3944759,0,21,1,-84.87722,0,1,1,2021,21,9,37,37,1,9,0,13.679703,13.679703,.05,.05,0,0,0,0,1.4326656,0,0,0,0,2.9979203,0,26.41,62.18,53.75,54.92,8.333333333333334,1,1,0,0,13,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17581,17580,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.3504143,8.7944822,0,21,-1,-41.815384,0,2,2,2021,10,0,36,35,1,0,0,34.482147,34.482147,0,0,0,0,0,0,0,0,0,0,0,2.9062316,0,53.75,54.92,26.41,62.18,8.333333333333334,1,1,0,0,13,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8089,9835,17582,-9,17584,17583,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-984.48285,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17583,17584,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,8.7792826,8.6191425,0,13,9,27.663313,0,2,1,2021,23,9,41,37,1,9,0,15.044187,15.044187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.7,36.42,43.43,54.3,8.333333333333334,2,3,0,0,11,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17584,17583,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.4163618,8.5992327,0,13,0,18.250002,0,3,2,2021,12,2,70,60,1,2,0,8.5699549,8.5699549,.05,.05,0,0,0,0,0,2,1,1,0,.94188499,0,43.43,54.3,23.7,36.42,6.666666666666667,2,3,0,0,7,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17585,-9,17584,17583,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.27,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8090,9836,17586,17587,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7281866,8.3239689,0,6,0,25.310066,0,-9,-9,2021,10,0,42,44,1,0,0,11.98763,11.98763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,48.85,58.56,8.333333333333334,1,1,0,0,6,10,5,1,669.5,-61207.266,-34072.434,0,0,0,0,3486.5688 +8090,9836,17587,17586,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.5115223,8.4555264,0,6,0,47.748852,0,1,1,2021,11,0,55,50,1,0,0,10.53833,10.53833,.05,.05,0,0,0,0,0,0,0,0,0,3.4388578,0,48.85,58.56,54.67,57.49,8.333333333333334,1,1,0,0,8,10,5,1,669.5,-61207.266,-34072.434,0,0,0,0,3486.5688 +8091,9837,17588,17589,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1574826,6.2380223,56,0,30.986,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1558709,6.2433329,55.88,38.99,64.55,36.47,8.333333333333334,1,1,0,0,0,13,3,1,819.5,341320.56,147923.52,129892.75,0,0,0,2958.7939 +8091,9837,17589,17588,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.5038242,7.6516266,56,0,58.729546,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2287579,7.5135498,64.55,36.47,55.88,38.99,6.666666666666667,1,1,0,0,0,13,3,1,819.5,341320.56,147923.52,129892.75,0,0,0,2958.7939 +8092,9838,17590,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1138.1804,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.97,52.14,-9,-9,5,1,1,0,0,0,2,1,1,567,-104857.77,0,0,0,0,0,0 +8093,9839,17591,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2890844,8.9552164,0,0,0,-924.29352,0,2,2,2021,9,0,39,39,1,0,0,17.807808,17.807808,.05,.05,0,0,0,0,0,2,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,14,5,4,1,453,108564.52,125220.28,245174.48,79708.5,2598.9458,0,2129.1941 +8094,9840,17592,-9,17593,17595,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.07031,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17593,17595,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.3323812,7.9170208,0,7,-14,66.402115,0,1,2,2021,14,4,24,21,1,4,0,16.422297,16.422297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.49,63.38,55.09,55.87,8.333333333333334,1,1,0,0,8,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17594,-9,17593,17595,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2687,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17595,17593,-9,-9,1,1,51,1,2,0,1,1,-9,0,5,8.671175,8.6480122,0,7,14,-22.67687,0,-9,-9,2021,15,4,37,37,1,4,0,18.85597,18.85597,.05,.05,0,0,0,0,0,0,1,1,0,7.0640187,0,55.09,55.87,41.49,63.38,8.333333333333334,1,1,0,0,8,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8095,9841,17596,17597,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,14,-7,0,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6301589,0,58.15,52.91,49.98,51.13,8.333333333333334,1,1,0,0,10,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17597,17596,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,0,0,0,14,7,0,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21563214,0,49.98,51.13,58.15,52.91,6.666666666666667,1,1,1,0,7,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17598,-9,17596,17597,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-838.76611,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17599,-9,17596,17597,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.99786,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8096,9842,17600,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.1432586,6.6266451,0,0,0,-1002.1908,-9,3,3,2021,23,10,20,0,1,10,0,6.3587699,6.3587699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.37,36.9,-9,-9,5,2,3,0,0,12,8,2,1,283,172443.41,-34488.398,0,0,0,0,-240.80916 +8097,9843,17601,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,7.2564459,7.3518491,0,0,-858.9129,0,3,-9,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.087203,7.3767004,37.16,30.49,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,485,428597.03,164595.08,130763.34,0,0,0,2530.1719 +8098,9844,17602,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,8.7029743,8.4191647,0,0,-951.28601,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2938066,8.4666109,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1936,1257189.8,370843.03,253895.94,0,0,0,2995.4087 +8099,9845,17603,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.1259,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,24.5,-9,-9,5,1,1,0,0,0,12,1,0,726,176010.48,0,0,0,0,0,1402.3003 +8100,9846,17604,-9,17606,17607,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-966.4809,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17605,-9,17606,17607,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.5423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17606,17607,-9,-9,1,0,36,0,4,0,2,2,-9,0,4,7.9833245,8.2485466,0,2,-5,31.971006,0,2,2,2021,26,12,35,48,1,12,0,8.8330946,8.8330946,0,0,0,0,0,0,0,0,1,1,0,0,0,27.34,64.59,23.15,48.66,6.666666666666667,1,1,0,0,11,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17607,17606,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,5.2618756,4.9089508,0,2,5,83.169586,0,-9,-9,2021,23,9,90,-9,1,9,0,.25968575,.25968575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.15,48.66,27.34,64.59,3.333333333333333,1,1,0,1,13,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17608,-9,-9,17607,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7589,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8101,9847,17609,17610,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.5640926,6.7091045,62,3,-31.679419,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7971239,6.5756588,53,46,52.62,28.06,8.333333333333334,1,1,0,0,13,13,2,1,815.5,219284.25,45401.68,119450.11,0,0,0,2200.0972 +8101,9847,17610,17609,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,62,-3,-2.1142039,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,11.705921,0,0,1,1,0,7.2129169,0,52.62,28.06,53,46,8.333333333333334,1,1,0,0,11,13,2,1,815.5,219284.25,45401.68,119450.11,0,0,0,2200.0972 +8102,9848,17611,17612,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.5857153,6.7727041,50,0,-124.27863,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1211319,55.3,55.6,53.34,45.71,8.333333333333334,1,1,0,0,7,9,2,1,417,529065.88,52286.172,534637.75,0,0,600.80988,1598.5676 +8102,9848,17612,17611,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,50,0,51.457405,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.34,45.71,55.3,55.6,8.333333333333334,1,1,0,0,0,9,2,1,417,529065.88,52286.172,534637.75,0,0,600.80988,1598.5676 +8103,9849,17613,17614,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,0,5.969831,5.7634773,20,-8,-122.77765,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0942028,5.8408628,15.05,27.23,49.98,43.25,1.666666666666667,1,1,0,0,0,4,2,0,924,58264.68,64451.477,0,0,0,0,2055.4065 +8103,9849,17614,17613,-9,-9,1,1,63,0,1,0,3,3,-9,0,3,0,6.6187277,7.0490751,20,8,-14.257533,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,5.4698615,6.8802919,49.98,43.25,15.05,27.23,3.333333333333333,1,1,0,0,6,4,2,0,924,58264.68,64451.477,0,0,0,0,2055.4065 +8104,9850,17615,17616,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.4002275,7.9985666,0,7,-4,59.023602,0,-9,-9,2021,15,4,40,40,1,4,0,11.751486,11.751486,.05,.05,0,0,0,0,0,2,0,0,0,6.7310524,0,36.07,52.49,54.77,55.87,8.333333333333334,1,1,0,0,13,12,5,1,888.5,348113.28,328708.53,0,0,0,2713.2329,4312.8848 +8104,9850,17616,17615,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.5553789,8.588026,0,7,4,-28.653034,0,2,2,2021,6,0,38,39,1,0,0,13.273929,13.273929,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,36.07,52.49,8.333333333333334,1,1,0,0,11,12,5,1,888.5,348113.28,328708.53,0,0,0,2713.2329,4312.8848 +8105,9851,17617,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,7.121243,7.0110192,0,0,-900.18774,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0711813,60.02,56.42,-9,-9,10,1,1,0,0,0,7,3,1,885,228280.48,49185.281,86539.258,0,0,0,1454.1339 +8106,9852,17618,17619,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-3,88.13633,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4497986,0,39.93,57.19,54.96,53.17,6.666666666666667,1,1,0,0,0,12,3,1,789,642449.06,230587.73,162164.13,0,0,0,2818.4478 +8106,9852,17619,17618,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.1825275,8.1292858,6,3,-92.313278,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8559361,8.0905218,54.96,53.17,39.93,57.19,10,1,1,0,0,0,12,3,1,789,642449.06,230587.73,162164.13,0,0,0,2818.4478 +8107,9853,17620,17621,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,57,-2,78.199562,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.05,53.56,60.89,44.94,10,1,1,0,0,0,10,4,1,2596,1355914.4,550769.5,394152.38,0,0,0,3613.1526 +8107,9853,17621,17620,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.9469252,8.972868,57,2,25.465937,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5920644,8.2003927,60.89,44.94,48.05,53.56,8.333333333333334,1,1,0,0,0,10,4,1,2596,1355914.4,550769.5,394152.38,0,0,0,3613.1526 +8108,9854,17622,-9,17624,17623,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.3622,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8108,9854,17623,17624,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.3904839,8.1341848,0,22,1,-113.98273,0,2,2,2021,6,0,38,50,1,0,0,14.910846,14.910846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,51.83,57.2,10,1,1,0,0,9,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8108,9854,17624,17623,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.1177278,7.1482778,0,20,-1,79.060242,0,2,2,2021,9,0,40,12,1,0,0,2.6403267,2.6403267,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,59.43,58.05,8.333333333333334,1,1,0,0,7,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8109,9855,17625,17626,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.9466314,6.4151745,7,5,70.990089,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2809439,6.8184319,33.26,48.25,47.54,39,8.333333333333334,2,3,0,0,0,5,2,1,1870.5,515649.25,0,241830.34,0,0,0,1359.2374 +8109,9855,17626,17625,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,4.0413251,3.8310325,43,-5,-7.8739867,0,-9,-9,2021,13,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.8066025,47.54,39,33.26,48.25,0,2,3,0,0,0,5,2,1,1870.5,515649.25,0,241830.34,0,0,0,1359.2374 +8110,9856,17627,-9,17629,17628,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.67444,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17628,17629,-9,-9,1,1,56,0,2,0,2,2,-9,0,1,0,0,0,4,0,-13.729928,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,58.77,31.13,3.333333333333333,1,1,0,0,4,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17629,17628,-9,-9,1,0,56,0,2,0,1,1,-9,1,3,0,8.052578,8.1128006,5,0,106.88321,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.7831216,8.188818,58.77,31.13,30.85,17.26,5,1,1,0,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17630,-9,17629,17628,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.64966,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8111,9857,17631,17632,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,5.5981255,5.5269351,0,19,3,67.666649,0,2,3,2021,10,0,24,15,1,0,0,1.0373291,1.0373291,0,0,0,0,0,0,0,2,0,0,0,0,0,54.21,46.79,47.24,27.28,6.666666666666667,1,1,0,0,11,7,2,1,312.5,-28475.984,0,0,0,0,0,1650.4189 +8111,9857,17632,17631,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,19,-3,-83.502419,0,2,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.160244,0,47.24,27.28,54.21,46.79,8.333333333333334,1,1,0,0,10,7,2,1,312.5,-28475.984,0,0,0,0,0,1650.4189 +8112,9858,17633,17634,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.5304642,8.6662235,0,7,-3,36.545006,0,-9,-9,2021,10,0,37,37,1,1,0,17.372744,17.372744,.05,.05,0,0,0,0,0,0,0,0,0,5.8282666,0,52,53,51.77,58.57,8,1,1,0,0,1,9,5,1,1232,1002881.1,567190.13,367878.91,72767.305,8088.7461,7477.9082,6825.2104 +8112,9858,17634,17633,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9916925,9.1039009,7.9087434,34,3,-118.77129,0,2,2,2021,6,0,43,37,1,0,0,25.180994,25.180994,.05,.05,0,0,0,0,0,0,0,0,0,1.6548185,7.7893639,51.77,58.57,52,53,8.333333333333334,1,1,0,0,8,9,5,1,1232,1002881.1,567190.13,367878.91,72767.305,8088.7461,7477.9082,6825.2104 +8113,9859,17635,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.6385388,7.7781148,0,2,19,9.5291004,0,3,3,2021,1,0,37,50,1,0,0,6.5197978,6.5197978,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,36.75,54.56,10,2,3,0,0,12,6,4,1,2126,216258.63,0,0,0,0,0,1324.6893 +8113,9860,17636,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2674618,7.8881521,0,2,-19,17.769709,0,-9,-9,2021,15,3,57,61,1,3,0,6.1959691,6.1959691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.75,54.56,59.14,52.5,6.666666666666667,2,3,0,0,2,6,4,1,480,164944.67,-25848.922,0,0,0,0,1275.0028 +8114,9861,17637,17638,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.8154583,8.8108568,0,31,2,-116.57346,0,2,2,2021,8,0,45,42,1,0,0,14.651499,14.651499,0,0,0,0,0,0,0,0,0,0,0,4.8887348,0,55.19,54.26,46.38,59.89,8.333333333333334,1,1,0,0,10,1,5,1,693.5,1161098.5,966815,200256.72,0,0,9463.7246,5410.5107 +8114,9861,17638,17637,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.7112694,9.0497551,0,31,-2,-30.428108,0,2,1,2021,13,1,49,50,1,1,0,14.7693,14.7693,0,0,0,0,0,0,0,0,0,0,0,0,0,46.38,59.89,55.19,54.26,8.333333333333334,1,1,0,0,10,1,5,1,693.5,1161098.5,966815,200256.72,0,0,9463.7246,5410.5107 +8115,9862,17639,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.831706,7.8977909,0,0,0,-1064.5538,0,3,2,2021,7,0,40,43,1,0,0,5.9398623,5.9398623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.78,53.3,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,122,224032.94,-34598.488,65394.742,0,10974.596,0,974.93127 +8116,9863,17640,17641,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1216946,7.2748055,37,-1,44.052631,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3064103,7.7889738,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1616.5,1917286.3,1277344.8,368060.31,0,0,0,2319.9658 +8116,9863,17641,17640,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.6712985,7.4886203,37,1,9.1595392,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7496285,7.7538257,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,4,1,1616.5,1917286.3,1277344.8,368060.31,0,0,0,2319.9658 +8117,9864,17642,17643,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,0,0,9,15,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,6.3232198,141.39687,65.643196,0,1,1,0,0,0,54,46,50,47,8,2,3,0,0,0,8,1,0,151.5,930596.75,301981.44,460989.38,0,0,0,1601.4321 +8117,9864,17643,17642,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,51,-15,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.9962935,0,120,1,1,0,0,0,50,47,54,46,7,2,3,0,0,0,8,1,0,151.5,930596.75,301981.44,460989.38,0,0,0,1601.4321 +8117,9865,17644,-9,17643,17642,1,0,27,0,0,0,2,2,-9,0,4,7.8822942,7.7790532,0,0,0,-1014.1228,0,3,-9,2021,11,0,35,38,1,2,0,8.8267326,8.8267326,0,0,0,0,0,0,0,0,1,1,0,6.0384674,0,47,58,-9,-9,7,2,3,0,0,1,8,3,0,791,65237.035,-34043.234,0,0,5406.6011,0,1150.576 +8118,9866,17645,17646,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.7160215,8.6641226,46,6,-46.331139,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3074937,9.0842152,59.43,58.05,52.4,52.91,10,1,1,0,0,4,10,5,1,760,1906811.8,860473.31,516860.13,0,0,0,4539.7046 +8118,9866,17646,17645,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.3668571,4.2685542,46,-6,-70.052765,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1153817,4.3108797,52.4,52.91,59.43,58.05,10,1,1,0,0,0,10,5,1,760,1906811.8,860473.31,516860.13,0,0,0,4539.7046 +8119,9867,17647,-9,17648,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-959.17841,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8119,9867,17648,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-993.73065,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.95,26.83,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8119,9867,17649,-9,17648,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.7814,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8120,9868,17650,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6491556,8.8453245,0,0,0,-1039.5637,0,1,2,2021,12,3,43,43,1,3,0,18.58144,18.58144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,12,5,5,1,293,300004.91,347737.94,0,0,5990.9365,242.6976,2152.356 +8121,9869,17651,-9,-9,-9,1,1,35,0,0,0,3,3,-9,0,4,9.3957806,9.4489174,0,0,0,-1029.8442,-9,2,2,2021,12,0,45,0,1,0,0,30.760382,30.760382,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,13,6,5,0,90,-30860.738,214565.28,0,0,0,378.65964,3794.0454 +8122,9870,17652,17653,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.4656353,8.5575485,0,7,-1,-2.7648332,0,-9,-9,2021,9,0,70,60,1,1,0,8.262536,8.262536,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,47.33,54.26,8,1,1,0,0,1,5,5,0,1130,-35751.762,49317.961,0,0,10250.177,2580.7371,3176.9041 +8122,9870,17653,17652,-9,-9,1,0,45,0,0,0,3,3,-9,1,2,7.9940953,7.5865254,0,7,1,174.36823,0,3,3,2021,13,1,34,30,1,1,0,11.337965,11.337965,0,0,0,0,0,0,0,0,1,1,0,0,0,47.33,54.26,52,55,6.666666666666667,1,1,0,0,6,5,5,0,1130,-35751.762,49317.961,0,0,10250.177,2580.7371,3176.9041 +8122,9871,17654,-9,17653,17652,1,1,22,0,0,0,2,2,-9,0,4,5.620656,5.6173158,0,0,0,-900.3266,0,3,2,2021,10,0,32,28,1,1,1,1.0732012,1.0732012,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,2,0,420,-6546.792,0,0,0,0,0,37.789932 +8122,9872,17655,-9,17653,17652,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-916.24066,-9,3,2,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,329,-48893.027,0,0,0,0,0,-362.41766 +8123,9873,17656,17658,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,9.1225672,9.2536526,0,18,9,56.546886,0,3,3,2021,12,0,24,30,1,0,0,53.175552,53.175552,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.34,38.05,48,57,6.666666666666667,2,3,0,0,11,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17657,-9,17658,17656,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-978.66663,-9,3,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17658,17656,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,97.379051,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,46.34,38.05,7,2,3,0,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17659,-9,17658,17656,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59552,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17660,-9,17658,17656,1,1,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-996.69653,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8124,9874,17661,17662,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8673153,8.4723558,0,7,-13,-101.98051,0,-9,-9,2021,7,0,45,45,1,0,0,13.822412,13.822412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,49.38,48.53,58.91,8.333333333333334,1,1,0,0,10,9,4,1,1561.5,55667.078,70113.266,91622.898,-881.52344,6562.2749,0,2740.5837 +8124,9874,17662,17661,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.8514113,4.865448,7,13,-158.98518,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.019001,4.3407841,48.53,58.91,50.68,49.38,8.333333333333334,1,1,0,0,5,9,4,1,1561.5,55667.078,70113.266,91622.898,-881.52344,6562.2749,0,2740.5837 +8125,9875,17663,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.7435918,5.8534455,0,0,-1014.4355,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1521678,5.4669528,55.36,54.24,-9,-9,10,1,1,0,0,0,11,2,1,832,-175102.2,81426.672,0,0,0,0,1210.7845 +8126,9876,17664,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.7589622,8.2245588,0,0,0,-1099.6615,0,3,3,2021,8,0,40,48,1,0,0,8.9962158,8.9962158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,11,2,4,0,1233,518255.47,383701,0,0,0,0,942.99011 +8127,9877,17665,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.4044428,8.7315702,0,0,0,-1026.941,0,-9,-9,2021,12,0,39,41,1,0,0,11.239229,11.239229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,6,9,5,1,718,-279653.59,47694.418,0,0,0,0,2051.4563 +8128,9878,17666,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-929.8717,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.11,49.64,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,778,-16348.322,0,0,0,0,-1118.6238,1122.9419 +8129,9879,17667,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-917.87482,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,39.53,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,332,118893.7,0,0,0,0,0,1881.228 +8130,9880,17668,17669,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.9420743,6.6983385,41,-1,-6.3873358,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1955104,52,47,51,47,7,4,5,0,0,0,4,2,1,583.5,688361.13,248231.92,311298.91,0,0,0,1679.7773 +8130,9880,17669,17668,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.2838697,4.257688,41,1,27.970188,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4106116,51,47,52,47,7,4,5,0,0,0,4,2,1,583.5,688361.13,248231.92,311298.91,0,0,0,1679.7773 +8131,9881,17670,17671,-9,-9,1,1,39,0,1,0,1,1,-9,0,5,8.4725971,8.0377979,0,20,4,26.340147,0,3,2,2021,9,1,53,51,1,1,0,8.9970293,8.9970293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.18,54.05,45.32,54.77,8.333333333333334,1,1,0,0,13,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9881,17671,17670,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.4904795,8.3067274,0,20,-4,-65.952095,0,2,2,2021,13,1,42,41,1,1,0,12.099655,12.099655,.05,.05,0,0,0,0,0,0,1,1,0,2.7223768,0,45.32,54.77,44.18,54.05,8.333333333333334,1,1,0,0,11,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9881,17672,-9,17671,17670,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.5826,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9882,17673,-9,17671,17670,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1029.0742,-9,1,1,2021,25,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.31178349,0,18.97,54.58,-9,-9,5,1,1,0,0,1,2,1,1,555,75248.414,0,0,0,0,0,-231.55775 +8132,9883,17674,-9,-9,-9,1,0,20,0,0,1,1,0,0,0,4,0,6.3654037,6.012681,0,0,-1047.0807,-9,-9,-9,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9197907,0,56.97,33.02,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,446,32702.678,0,0,0,0,0,69.289558 +8133,9884,17675,17677,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.6626272,7.0552292,0,30,-13,-137.82159,0,-9,-9,2021,7,0,15,15,1,0,0,6.1859059,6.1859059,0,0,0,0,0,0,0,14.5,1,0,1,0,0,54.1,59.11,42.36,17.83,10,1,1,0,1,11,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17676,-9,17675,17677,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-953.73792,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17677,17675,-9,-9,1,1,63,0,1,0,2,2,-9,1,1,0,0,0,30,13,125.01232,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.8332105,0,42.36,17.83,54.1,59.11,1.666666666666667,1,1,0,1,13,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17678,-9,17675,17677,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.465,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8134,9885,17679,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.9792757,6.8252611,0,0,0,-822.11328,0,2,-9,2021,12,0,6,14,1,0,0,17.065308,17.065308,0,0,0,0,0,0,0,2,1,1,0,4.1377683,0,47.3,49.86,-9,-9,6.666666666666667,1,1,0,0,11,10,2,1,36,78951.563,38648.613,0,0,8496.208,1265.436,809.65967 +8135,9886,17680,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-951.45319,0,3,2,2021,8,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9150965,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,12,2,2,0,1791,-45088.047,0,0,0,0,0,1595.4875 +8136,9887,17681,17682,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,0,0,0,6,-1,66.979027,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.1,51.9,52.54,54.24,8.333333333333334,1,1,0,0,2,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17682,17681,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,7.6519675,7.9423246,0,6,1,40.312252,0,2,2,2021,6,0,45,37,1,0,0,7.0710292,7.0710292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.54,54.24,47.1,51.9,6.666666666666667,1,1,0,0,7,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17683,-9,17681,17682,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.0668,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17684,-9,17681,17682,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6051,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8137,9888,17685,-9,17687,17686,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-938.84698,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17686,17687,-9,-9,1,1,32,0,4,0,2,2,-9,0,2,8.0996552,8.3797464,0,9,1,86.268692,0,-9,-9,2021,19,7,55,50,1,7,0,7.3618212,7.3618212,0,0,0,0,0,0,0,0,1,1,0,0,0,32.92,55.3,33.83,57.61,1.666666666666667,1,1,0,0,5,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17687,17686,-9,-9,1,0,31,0,4,0,2,2,-9,0,3,7.1806617,7.4157095,0,9,-1,29.995586,0,2,2,2021,17,5,32,0,1,5,0,5.3723574,5.3723574,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,57.61,32.92,55.3,5,1,1,0,0,3,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17688,-9,17687,17686,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.30066,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17689,-9,17687,17686,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.22491,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17690,-9,17687,17686,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.1746,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8138,9889,17691,-9,17692,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.77362,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,472,86274.445,0,0,0,-30.486206,0,1250.5712 +8138,9889,17692,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,4,0,0,0,0,0,-897.91107,0,3,3,2021,10,0,0,18,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,1,1,0,0,7,11,1,0,472,86274.445,0,0,0,-30.486206,0,1250.5712 +8138,9890,17693,-9,17692,-9,1,1,25,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1028.9042,-9,2,-9,2021,26,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.28,54.7,-9,-9,5,1,1,1,1,0,11,2,0,103,-55477.324,0,0,0,0,0,316.91296 +8139,9891,17694,-9,17697,17698,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-988.23425,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17695,-9,17697,17698,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.86914,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17696,-9,17697,17698,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.77411,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17697,17698,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.7564535,8.5916576,6.6440344,7,0,-2.6227357,0,2,1,2021,6,0,35,34,1,0,0,14.322861,14.322861,0,0,0,0,0,0,0,0,1,1,0,6.7851415,0,51.14,60.45,44.41,56.75,6.666666666666667,1,1,0,0,9,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17698,17697,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.6465597,8.2875834,0,7,0,-11.446455,0,-9,3,2021,12,0,48,40,1,0,0,11.90353,11.90353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.41,56.75,51.14,60.45,5,1,1,0,0,8,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8140,9892,17699,-9,17701,17700,1,1,32,0,0,0,2,2,-9,0,2,7.357451,7.2313666,0,0,0,-973.65479,0,1,1,2021,8,0,60,75,1,0,0,2.9357986,2.9357986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.97,45.23,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,233,-259775.16,35694.711,0,0,0,0,71.723122 +8140,9893,17700,17701,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.2445116,8.519062,40,3,63.586712,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.42173,8.5880823,57.33,53.46,49.86,55.31,1.666666666666667,1,1,0,0,6,7,5,1,538.5,1772026.5,920399.25,643580.75,0,0,0,5130.2051 +8140,9893,17701,17700,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.5655975,8.346981,36,-3,24.503538,0,2,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3876638,49.86,55.31,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,538.5,1772026.5,920399.25,643580.75,0,0,0,5130.2051 +8141,9894,17702,17703,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,0,0,5,5,0,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,13.57,41.81,28.46,5,1,1,0,0,0,6,1,0,841.5,226138.02,125442.93,109449.95,42586.488,8713.2676,0,3172.0796 +8141,9894,17703,17702,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,29,-5,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.81,28.46,50,13.57,6.666666666666667,1,1,0,0,0,6,1,0,841.5,226138.02,125442.93,109449.95,42586.488,8713.2676,0,3172.0796 +8142,9895,17704,17705,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.4745293,8.6216335,6.3606482,44,1,.3565025,0,3,3,2021,6,0,37,35,1,0,0,13.04323,13.04323,.05,.05,0,0,0,0,0,0,0,0,0,8.4444313,6.6146612,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,451.5,274715.19,36277.684,184209.41,0,281.92456,0,3655.175 +8142,9895,17705,17704,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0902824,8.1825504,7.5724053,10,-1,86.519882,0,-9,-9,2021,6,0,11,10,1,0,0,15.908466,15.908466,0,0,0,0,0,0,0,0,0,0,0,.67589641,7.6648631,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,451.5,274715.19,36277.684,184209.41,0,281.92456,0,3655.175 +8143,9896,17706,17707,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,7.8404512,7.446486,12,0,39.067368,0,-9,-9,2021,17,5,0,45,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0614042,7.8315167,39.97,38.85,57.16,56.15,6.666666666666667,1,1,0,0,14,7,3,1,320,1733226.3,0,803659.38,0,0,0,944.86938 +8143,9896,17707,17706,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.8182578,6.1469078,41,0,-160.41628,0,3,3,2021,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,5.8456287,57.16,56.15,39.97,38.85,10,1,1,0,0,14,7,3,1,320,1733226.3,0,803659.38,0,0,0,944.86938 +8144,9897,17708,17709,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0042286,8.9795475,0,10,4,-51.762814,0,3,3,2021,9,0,48,24,1,0,0,19.870674,19.870674,.05,.05,0,0,0,0,0,0,0,0,0,2.8931737,0,57.16,56.15,49.96,56.89,8.333333333333334,1,1,0,0,12,12,5,1,1018,451221.97,207814.22,201866.5,0,0,0,3166.6309 +8144,9897,17709,17708,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.7165804,6.7822866,0,10,-4,-27.10393,0,2,3,2021,5,0,12,16,1,0,0,6.5909839,6.5909839,0,0,0,0,0,0,0,0,0,0,0,3.3037505,0,49.96,56.89,57.16,56.15,8.333333333333334,1,1,0,0,3,12,5,1,1018,451221.97,207814.22,201866.5,0,0,0,3166.6309 +8145,9898,17710,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.0652003,7.0228896,0,0,-1114.4832,0,2,2,2021,11,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9881368,6.9195685,48.93,26.59,-9,-9,8.333333333333334,1,1,0,0,12,11,3,1,673,126110.13,0,102760.63,0,0,0,1532.8761 +8146,9899,17711,17712,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4036474,8.3760548,0,6,6,-109.23367,0,-9,-9,2021,7,0,54,54,1,0,0,8.7710295,8.7710295,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52.33,48.81,10,1,1,0,0,7,4,4,1,1505,597007.63,169318.5,378698.69,163054.19,11300.19,0,2410.3801 +8146,9899,17712,17711,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.817378,8.1356688,0,6,-6,10.319122,0,3,3,2021,6,0,38,44,1,0,0,8.6215458,8.6215458,0,0,0,0,0,0,0,0,0,0,0,0,0,52.33,48.81,57.33,53.46,3.333333333333333,1,1,0,0,7,4,4,1,1505,597007.63,169318.5,378698.69,163054.19,11300.19,0,2410.3801 +8146,9900,17713,-9,17712,17711,1,0,29,0,0,0,3,3,-9,0,4,7.8126111,7.6175928,0,0,0,-860.03033,0,3,2,2021,19,7,33,43,1,7,1,7.2741976,7.2741976,0,0,0,0,0,0,0,2,0,0,0,0,0,34,53.28,-9,-9,6.666666666666667,1,1,0,0,7,4,3,1,360,68412.742,0,0,0,0,0,527.67474 +8146,9901,17714,-9,17712,17711,1,1,24,0,0,0,2,2,-9,0,4,7.8334665,7.9101934,0,0,0,-1016.4439,0,3,2,2021,5,0,45,45,1,0,1,8.2936878,8.2936878,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,3,4,4,1,551,109452.66,0,0,0,0,0,1460.7301 +8147,9902,17715,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.7661958,7.5804276,0,0,0,-951.2287,0,2,2,2021,22,10,35,30,1,10,0,7.5486212,7.5486212,0,0,0,0,0,0,0,0,1,1,0,.058224622,0,25.9,63.7,-9,-9,5,1,1,0,0,9,12,3,0,883,-35919.379,0,0,0,5832.6553,0,2467.626 +8148,9903,17716,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.913094,7.9395776,0,0,0,-963.76196,0,2,-9,2021,18,6,37,25,1,6,0,9.1394615,9.1394615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.85,37.68,-9,-9,3.333333333333333,1,1,0,0,11,11,4,0,1448,-224908.05,67937.109,0,0,0,118.21195,1425.625 +8149,9904,17717,17718,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,8.0830297,7.9232826,39,2,146.32484,0,2,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4629562,8.3347311,39.97,49.59,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,1,1772.5,1762675,962495.88,346975.97,0,0,954.01123,4288.8081 +8149,9904,17718,17717,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8917246,8.9231462,7.7591386,13,-2,-26.796562,0,2,2,2021,12,0,48,46,1,0,0,17.454525,17.454525,0,0,0,0,0,0,0,0,0,0,0,0,8.0259647,54.2,57.49,39.97,49.59,6.666666666666667,1,1,0,0,14,9,5,1,1772.5,1762675,962495.88,346975.97,0,0,954.01123,4288.8081 +8150,9905,17719,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.6281,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,0,2460,-6393.4741,0,0,0,0,0,1718.9785 +8150,9906,17720,-9,17719,-9,1,1,49,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1054.1462,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,34.08,47.75,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,1646,-138530.53,-55419.332,0,0,-153.21581,0,339.34631 +8151,9907,17721,17722,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.2593536,8.6117916,0,7,7,19.713934,0,-9,-9,2021,15,5,37,38,1,5,0,10.034571,10.034571,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,52,55,6.666666666666667,1,1,0,0,9,6,5,1,346,364195.81,180375.06,74613.672,51356.43,1234.2974,0,3431.3276 +8151,9907,17722,17721,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.423317,8.5838928,0,7,-7,-23.942192,-9,2,3,2021,9,0,38,0,1,1,0,13.043678,13.043678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,43.61,56.01,8,1,1,0,0,1,6,5,1,346,364195.81,180375.06,74613.672,51356.43,1234.2974,0,3431.3276 +8151,9908,17723,-9,17721,17722,1,0,27,0,0,0,2,2,-9,0,4,8.2844992,8.0420141,0,0,0,-1015.8624,0,2,2,2021,11,0,41,46,1,0,1,8.0141439,8.0141439,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,174,-18204.275,-7153.3867,0,0,0,0,1755.7943 +8152,9909,17724,-9,17725,17726,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.5497,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8152,9909,17725,17726,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.6196027,7.4841437,0,10,-6,-126.76655,0,2,1,2021,12,0,20,20,1,0,0,9.443593,9.443593,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,37.38,39.59,57.55,6.666666666666667,1,1,0,1,7,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8152,9909,17726,17725,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6033592,8.3123293,0,10,6,-141.55876,0,2,1,2021,15,4,47,45,1,4,0,11.911536,11.911536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.59,57.55,42.11,37.38,6.666666666666667,1,1,0,0,9,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8153,9910,17727,17728,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.2090359,6.5890155,50,-3,-37.308643,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4762487,6.9217987,52.4,49.92,59.88,48.2,8.333333333333334,1,1,0,0,11,2,3,1,817,850702.13,488767.56,273952.16,0,0,0,2655.9641 +8153,9910,17728,17727,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2405033,7.2717328,50,3,16.017414,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1729121,59.88,48.2,52.4,49.92,8.333333333333334,1,1,0,0,0,2,3,1,817,850702.13,488767.56,273952.16,0,0,0,2655.9641 +8154,9911,17729,17730,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.7280898,5.4386039,54,6,49.306889,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9469633,5.7268505,57.09,46.7,39.76,59.88,8.333333333333334,1,1,0,0,0,5,2,1,514,261801.13,0,284854.56,0,0,0,2281.7698 +8154,9911,17730,17729,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.1517401,5.1127582,54,-6,-88.58847,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3197818,5.3027091,39.76,59.88,57.09,46.7,6.666666666666667,1,1,0,0,0,5,2,1,514,261801.13,0,284854.56,0,0,0,2281.7698 +8155,9912,17731,-9,17733,17734,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-941.22156,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17732,-9,17733,17734,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1051.6189,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17733,17734,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6858087,7.5842652,0,13,-8,-13.454816,0,-9,-9,2021,4,0,38,25,1,0,0,5.7043576,5.7043576,.05,.05,0,0,0,0,0,0,1,1,0,3.283396,0,59.43,49.68,51.42,48.12,8.333333333333334,1,1,0,0,11,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17734,17733,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,7.9967465,8.0464106,0,13,8,-34.115696,0,-9,-9,2021,12,0,40,37,1,0,0,10.338693,10.338693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,59.43,49.68,5,1,1,0,0,8,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8156,9913,17735,17736,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.3925934,8.5269861,0,4,-5,.97005588,0,-9,-9,2021,11,0,35,35,1,0,0,15.346426,15.346426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.35,43.87,37.61,56.99,8.333333333333334,1,1,0,0,4,2,5,1,1128.5,197203.23,89747.969,111332.52,126230.5,-1357.7941,0,3513.7559 +8156,9913,17736,17735,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.5825925,7.7576728,5.5305495,4,5,34.331387,0,2,2,2021,11,0,45,45,1,0,0,8.1183128,8.1183128,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7683911,37.61,56.99,55.35,43.87,6.666666666666667,1,1,0,0,10,2,5,1,1128.5,197203.23,89747.969,111332.52,126230.5,-1357.7941,0,3513.7559 +8156,9914,17737,-9,17736,17735,1,1,18,0,0,0,2,2,-9,0,2,6.604311,7.1214213,0,0,0,-927.42499,0,3,1,2021,6,0,16,0,1,0,1,5.0328202,5.0328202,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,44.14,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,944,112389.48,0,0,0,0,0,850.25787 +8157,9915,17738,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.7105327,7.664927,0,0,0,-1011.262,0,-9,-9,2021,17,7,40,38,1,7,0,7.2597132,7.2597132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.05,54.95,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,1591,49447.559,16083.372,0,0,0,0,575.96185 +8158,9916,17739,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-954.35095,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,61.37,34.18,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,781,-139361.11,0,0,0,0,0,478.61932 +8159,9917,17740,-9,17742,17741,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.8563,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17741,17742,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.8113346,7.8181734,0,21,3,11.332438,0,-9,-9,2021,11,0,60,60,1,0,0,6.3346596,6.3346596,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.25,51.98,58.47,50.22,5,1,1,0,0,14,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17742,17741,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.0930882,9.3014956,0,21,-3,-24.014544,0,3,1,2021,4,0,20,20,1,0,0,32.372761,32.372761,0,0,0,0,0,0,0,0,1,0,1,0,0,58.47,50.22,43.25,51.98,8.333333333333334,1,1,0,0,9,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17743,-9,17742,17741,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-998.39178,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9918,17744,-9,17742,17741,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-995.112,-9,1,2,2021,23,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.76,64.44,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,298,1017.9064,0,0,0,0,0,0 +8160,9919,17745,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-822.67084,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.33,25.91,-9,-9,10,1,1,0,1,0,12,1,0,413,-80520.352,0,70277.141,24054.35,0,0,2100.7168 +8160,9920,17746,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-946.53601,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,1,0,0,12,1,0,306,245354.13,0,0,0,0,0,0 +8161,9921,17747,17748,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.1266427,6.3869901,0,31,-3,55.536999,0,3,2,2021,14,2,8,8,1,2,0,8.1285181,8.1285181,0,0,0,0,0,0,0,118,1,1,0,0,0,44.2,41.74,57.33,53.46,5,1,1,0,0,10,6,4,1,578,354655.69,399660.31,126834.7,89613.156,0,0,2306.1714 +8161,9921,17748,17747,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5599546,8.6052227,5.479197,32,3,19.401651,0,2,-9,2021,6,0,44,45,1,0,0,17.120083,17.120083,.05,.05,0,0,0,0,0,2,1,1,0,5.7200603,6.0763106,57.33,53.46,44.2,41.74,8.333333333333334,1,1,0,0,9,6,4,1,578,354655.69,399660.31,126834.7,89613.156,0,0,2306.1714 +8161,9922,17749,-9,17747,17748,1,1,22,0,0,0,2,2,-9,0,4,7.3237352,7.4823413,0,0,0,-1039.2521,0,2,2,2021,13,1,44,0,1,1,1,4.303122,4.303122,0,0,0,0,0,0,0,0,1,1,0,0,0,46.14,54.22,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,598,-28069.242,0,0,0,0,0,771.2149 +8162,9923,17750,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.9792724,8.2843666,0,0,0,-997.4577,0,1,1,2021,6,0,39,39,1,0,0,11.694613,11.694613,0,0,0,0,0,0,0,0,0,0,0,4.9622502,0,49.11,52.88,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,588,79035.328,-55632.047,72847.211,53104.414,-831.83569,0,1857.0945 +8163,9924,17751,17752,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9847383,9.1232147,0,4,-2,2.7382936,0,-9,-9,2021,8,1,41,40,1,1,0,28.094904,28.094904,.05,.05,0,0,0,0,0,0,0,0,0,8.8555193,0,51.09,53.64,57.16,35.48,8.333333333333334,3,4,0,0,5,8,5,1,940.5,1090936.8,435543,626645.38,111674.83,-237.51422,0,7655.0156 +8163,9924,17752,17751,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5220194,8.4012852,6.2274518,4,2,12.286574,0,2,2,2021,6,0,35,35,1,0,0,16.296762,16.296762,0,0,0,0,0,0,0,0,0,0,0,6.070539,5.7771754,57.16,35.48,51.09,53.64,8.333333333333334,3,4,0,0,7,8,5,1,940.5,1090936.8,435543,626645.38,111674.83,-237.51422,0,7655.0156 +8163,9925,17753,-9,17752,17751,1,0,25,0,0,0,1,1,-9,0,3,8.84694,8.7383795,0,0,0,-1119.6516,0,2,1,2021,15,4,50,48,1,4,1,13.313985,13.313985,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,62.92,-9,-9,6.666666666666667,3,4,0,0,3,8,5,1,629,-92983.703,69833.758,0,0,0,0,2255.2136 +8164,9926,17754,17755,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,6.5760479,6.2601089,0,4,-12,67.750259,0,1,1,2021,8,0,36,36,1,0,0,2.4102705,2.4102705,0,0,0,0,0,0,0,0,0,0,0,1.2586136,0,51.02,52.22,54.37,54.8,8.333333333333334,1,1,0,0,10,8,3,0,342.5,74844.313,39657.578,182646.86,115644.22,0,20605.941,2120.8479 +8164,9926,17755,17754,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.2987223,8.065361,0,4,12,46.499088,0,-9,-9,2021,11,0,16,16,1,0,0,19.79512,19.79512,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.02,52.22,8.333333333333334,1,1,0,0,5,8,3,0,342.5,74844.313,39657.578,182646.86,115644.22,0,20605.941,2120.8479 +8165,9927,17756,17757,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.1160402,9.0581694,0,22,4,-63.937504,0,2,2,2021,13,1,40,40,1,1,0,24.325623,24.325623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.38,58.1,30.87,65.23999999999999,5,1,1,0,0,14,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8165,9927,17757,17756,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,9.2116518,9.1979017,0,22,-4,-62.961597,0,2,-9,2021,15,3,38,35,1,3,0,28.523928,28.523928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.87,65.23999999999999,44.38,58.1,6.666666666666667,1,1,0,0,12,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8165,9927,17758,-9,17757,17756,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.60266,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8166,9928,17759,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,5.8403635,5.9851928,0,0,-975.76331,0,2,2,2021,8,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4165983,0,51.83,57.2,-9,-9,6.666666666666667,1,1,1,0,8,6,2,1,774.5,30822.877,0,0,0,0,0,-262.55731 +8166,9928,17760,-9,17759,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.0548,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,1,774.5,30822.877,0,0,0,0,0,-262.55731 +8167,9929,17761,17762,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.60886,8.4994488,0,6,1,61.224682,-9,-9,-9,2021,8,0,37,0,1,0,0,13.129127,13.129127,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8167,9929,17762,17761,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.6604242,7.3276525,0,6,-1,-13.929181,0,-9,-9,2021,12,1,15,15,1,1,0,12.820512,12.820512,0,0,0,0,0,0,0,0,1,1,0,1.1519742,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,5,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8167,9929,17763,-9,17762,17761,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.65149,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8168,9930,17764,17765,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1470232,6.8830185,0,16,5,62.268162,0,3,2,2021,12,0,18,17,1,0,0,7.9049029,7.9049029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.13,50.73,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,1331,23732.484,-55299.094,73524.156,46619.555,0,0,1651.9768 +8168,9930,17765,17764,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,7.8892388,7.9751291,0,15,-5,40.497993,0,2,3,2021,10,1,35,30,1,1,0,9.0308466,9.0308466,.05,.05,0,0,0,0,0,2,0,0,0,1.9770163,0,57.16,56.15,51.13,50.73,8.333333333333334,1,1,0,0,9,13,4,1,1331,23732.484,-55299.094,73524.156,46619.555,0,0,1651.9768 +8169,9931,17766,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.3504725,8.2651196,0,0,0,-1058.6936,0,-9,3,2021,21,9,38,37,1,9,0,12.428816,12.428816,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,55.39,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,254,835699.25,39407.227,836953.81,155649,-1233.0098,-1919.6763,1382.5828 +8169,9932,17767,-9,17766,-9,1,0,24,0,0,0,2,2,-9,0,4,7.958837,7.9608006,0,0,0,-1064.4434,0,1,-9,2021,12,0,40,38,1,2,1,9.4238434,9.4238434,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,4,1,1397,-8430.0596,0,0,0,0,0,1590.1638 +8170,9933,17768,17769,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.951468,6.1702547,22,9,111.41755,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.853157,0,0,1,1,0,5.9593096,6.3404236,40.78,20.86,59.45,33.75,6.666666666666667,1,1,0,0,0,9,2,1,1705,448214.69,0,0,0,0,0,878.47058 +8170,9933,17769,17768,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,7,0,122.97122,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.45,33.75,40.78,20.86,8.333333333333334,1,1,0,0,7,9,2,1,1705,448214.69,0,0,0,0,0,878.47058 +8171,9934,17770,17771,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9241772,7.7882452,0,5,0,-116.35056,0,-9,-9,2021,12,1,45,44,1,1,0,7.778748,7.778748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.79,56.27,57.65,56.13,8.333333333333334,1,1,0,0,3,9,5,1,930.5,44974.797,-86213.203,266160.56,217331.25,0,0,3649.5737 +8171,9934,17771,17770,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.9439201,9.1258202,0,5,0,17.444067,0,2,2,2021,6,0,55,45,1,0,0,17.902824,17.902824,.05,.05,0,0,0,0,0,0,0,0,0,3.2283278,0,57.65,56.13,50.79,56.27,8.333333333333334,1,1,0,0,5,9,5,1,930.5,44974.797,-86213.203,266160.56,217331.25,0,0,3649.5737 +8172,9935,17772,17774,-9,-9,1,1,48,0,0,0,3,3,-9,0,5,7.6403418,7.4394917,0,18,8,71.716187,0,-9,-9,2021,2,0,37,37,1,0,0,6.4225154,6.4225154,0,0,0,0,0,0,0,0,1,1,0,0,0,59.44,42.44,57.92,51.82,10,2,3,0,0,11,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9935,17773,-9,17774,17772,1,0,16,0,0,1,2,0,-9,0,5,0,0,0,0,0,-828.29974,-9,3,3,2021,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9935,17774,17772,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,.94974786,.56249726,0,18,-8,-71.85672,0,-9,-9,2021,0,0,11,6,1,0,0,.021596383,.021596383,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,59.44,42.44,10,2,3,0,0,9,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9936,17775,-9,17774,17772,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-925.19012,-9,3,3,2021,14,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,2,1,1,468,-103681.05,0,0,0,0,0,-368.48843 +8173,9937,17776,17779,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.6399899,9.1170197,0,7,0,-5.55053,0,-9,-9,2021,25,9,40,40,1,9,0,26.108114,26.108114,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.26,71.08,27.12,48.48,1.666666666666667,1,1,0,0,9,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17777,-9,17779,17776,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.72577,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17778,-9,17779,17776,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.44995,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17779,17776,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,7.5222373,7.863142,0,19,0,-97.006386,0,2,2,2021,25,11,11,12,1,11,0,19.529459,19.529459,0,0,0,0,0,0,0,0,1,1,0,0,0,27.12,48.48,22.26,71.08,1.666666666666667,1,1,0,0,9,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17780,-9,17779,17776,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1355,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8174,9938,17781,17783,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.261488,7.1638899,0,7,-1,-76.403877,0,-9,-9,2021,9,1,33,17,1,1,0,4.7388368,4.7388368,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8174,9938,17782,-9,17781,17783,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.9733,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8174,9938,17783,17781,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.6788521,8.6253128,0,7,1,-71.198402,0,-9,-9,2021,10,0,44,36,1,1,0,15.299023,15.299023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,0,0,1,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8175,9939,17784,17785,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.98703,7.8831806,0,4,0,-30.987175,0,-9,-9,2021,10,2,38,38,1,2,0,8.1835623,8.1835623,.05,.05,0,0,0,0,0,2,0,0,0,0,0,40.76,50.23,48,49,8.333333333333334,1,1,0,0,9,11,4,1,731.5,482981.97,364179.75,117129.34,-5299.3984,-477.81134,0,2603.8179 +8175,9939,17785,17784,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9108262,8.2772131,5.4221263,4,0,-170.26155,0,-9,-9,2021,11,0,30,30,1,2,0,12.424194,12.424194,.05,.05,0,0,0,0,0,0,0,0,0,.37140766,5.1107426,48,49,40.76,50.23,7,1,1,0,0,1,11,4,1,731.5,482981.97,364179.75,117129.34,-5299.3984,-477.81134,0,2603.8179 +8176,9940,17786,-9,17789,17787,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1025.582,-9,2,2,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.38,59.26,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17787,17789,-9,-9,1,1,39,0,2,0,2,2,-9,1,3,8.3397961,8.5315495,0,10,1,22.841797,0,2,3,2021,8,1,38,38,1,1,0,15.291225,15.291225,.05,.05,0,0,0,0,0,27,1,1,0,0,0,43.71,56.91,19.01,22.64,3.333333333333333,1,1,0,0,11,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17788,-9,17789,17787,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1026.036,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17789,17787,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,10,-1,-121.0812,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0333185,0,19.01,22.64,43.71,56.91,6.666666666666667,1,1,0,0,5,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8177,9941,17790,-9,17792,17791,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1149.2892,-9,3,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.85,45.17,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9941,17791,17792,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.721242,8.502799,0,6,0,72.826378,0,-9,-9,2021,9,0,40,40,1,1,0,18.381922,18.381922,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,57.9,22.03,8,1,1,0,0,1,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9941,17792,17791,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.1458068,7.2170887,0,23,0,-116.98985,0,2,2,2021,13,3,22,20,1,3,0,8.8549519,8.8549519,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,22.03,53,55,5,1,1,0,0,9,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9942,17793,-9,17792,17791,1,0,19,0,0,0,2,2,1,0,3,8.0415888,8.0008688,0,0,0,-1124.2635,-9,3,2,2021,11,1,38,0,1,1,1,6.5728116,6.5728116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,1294,86099.922,-55940,0,0,0,0,1469.7621 +8178,9943,17794,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,7.8784409,7.8041902,0,0,0,-1115.5378,0,2,2,2021,15,3,37,36,1,3,0,9.0029917,9.0029917,0,0,0,0,0,0,0,0,0,0,0,0,0,28.13,46.94,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,659,-280009.59,0,0,0,0,0,1434.6448 +8179,9944,17795,17796,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1687269,8.6924477,0,15,-1,-48.596027,0,2,2,2021,10,1,45,44,1,1,0,11.76467,11.76467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53,56,8.333333333333334,1,1,0,0,12,6,5,1,407,-97742.219,48363.195,182926.16,86556.93,0,0,3388.5869 +8179,9944,17796,17795,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.8933887,8.0365753,0,15,1,-104.68874,0,3,3,2021,9,0,34,33,1,0,0,9.2367935,9.2367935,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,56,54.2,57.49,6.666666666666667,1,1,0,0,13,6,5,1,407,-97742.219,48363.195,182926.16,86556.93,0,0,3388.5869 +8180,9945,17797,17798,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,4,-8,0,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,19.352877,0,7,1,1,0,0,0,51,48,51,46,7,1,1,0,0,0,11,1,0,773,125341.16,0,84001.406,0,0,0,1834.2323 +8180,9945,17798,17797,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,8,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,24.995441,0,27,1,1,0,0,0,51,46,51,48,7,1,1,0,0,0,11,1,0,773,125341.16,0,84001.406,0,0,0,1834.2323 +8181,9946,17799,17800,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.612112,9.5930557,0,3,6,-6.3457751,0,-9,-9,2021,8,0,80,47,1,0,0,26.193113,26.193113,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.93,46.29,10,1,1,0,0,12,12,5,0,338,3641366.5,3179808.5,701431.19,376941.19,4170.5537,0,6635.0273 +8181,9946,17800,17799,-9,-9,1,0,32,0,0,0,1,1,1,0,3,8.3446751,8.2585278,0,3,-6,-34.684212,-9,-9,-9,2021,10,0,41,0,1,0,0,14.000632,14.000632,0,0,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,62.39,56.71,8.333333333333334,1,1,0,0,4,12,5,0,338,3641366.5,3179808.5,701431.19,376941.19,4170.5537,0,6635.0273 +8182,9947,17801,-9,17803,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.8584,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8182,9947,17802,-9,17803,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6727,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8182,9947,17803,-9,-9,-9,1,0,54,0,2,0,3,3,-9,1,4,0,3.4358773,3.2687795,0,0,-1160.7385,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.407867,52.38,50.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8183,9948,17804,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.1028581,7.221839,0,0,-909.12622,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.2083588,7.1712961,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,12,2,0,824,55077.086,-106704.26,0,0,0,0,1207.2092 +8184,9949,17805,17806,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.0259123,7.8815794,0,28,-6,-138.98067,0,2,2,2021,12,0,40,40,1,0,0,9.6911983,9.6911983,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.59,47.74,37.7,59.45,6.666666666666667,1,1,0,0,12,6,4,1,1351.5,428791.69,270428.88,245930.8,0,0,1513.4342,1729.0031 +8184,9949,17806,17805,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3995581,7.612009,0,28,6,-60.287857,0,2,2,2021,12,2,25,0,1,2,0,10.289327,10.289327,0,0,0,0,0,0,0,0,0,0,0,3.3342357,0,37.7,59.45,51.59,47.74,6.666666666666667,1,1,0,0,7,6,4,1,1351.5,428791.69,270428.88,245930.8,0,0,1513.4342,1729.0031 +8184,9950,17807,-9,17806,17805,1,1,20,0,0,1,2,0,0,0,5,0,7.7730575,7.5131593,0,0,-1052.7728,-9,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.232275,0,49,62,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,584,-118225.35,-42339.176,0,0,21344.508,2650.8384,2401.1558 +8184,9951,17808,-9,17806,17805,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-980.26617,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0892048,0,35.22,59.39,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,88,-40618.281,0,0,0,0,0,815.61469 +8185,9952,17809,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.3827562,6.79177,0,0,-898.59656,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3568106,7.2837939,57.03,34.83,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1249,367656.22,151612.25,248799.75,0,0,0,1478.1989 +8186,9953,17810,17811,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,8.5316019,8.7008991,57,0,-22.206079,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4666376,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,0,7,5,1,293.5,3260003.5,1844289.3,1193662.5,0,0,0,5946.9268 +8186,9953,17811,17810,-9,-9,1,1,79,0,0,0,1,1,-9,0,5,0,8.0783863,8.358242,60,0,116.82715,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4823775,8.4844847,54.1,59.11,57.16,56.15,10,4,2,0,0,0,7,5,1,293.5,3260003.5,1844289.3,1193662.5,0,0,0,5946.9268 +8187,9954,17812,-9,17813,17815,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8517,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17813,17815,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,0,0,0,7,-12,-25.585752,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,53.17,48.87,6.666666666666667,1,1,0,0,1,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17814,-9,17813,17815,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.7372,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17815,17813,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,7.5648975,7.7190309,0,7,12,60.736965,0,-9,-9,2021,9,0,40,30,1,0,0,6.6658077,6.6658077,.05,.05,0,0,0,0,0,0,1,1,0,4.4242759,0,53.17,48.87,42.61,54.85,6.666666666666667,1,1,0,0,8,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8188,9955,17816,17818,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.1284332,8.1672764,0,11,2,-19.121233,0,2,-9,2021,10,2,47,47,1,2,0,7.6069808,7.6069808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.15,55.39,38.8,36.49,6.666666666666667,1,1,0,0,13,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8188,9955,17817,-9,17818,17816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6032,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8188,9955,17818,17816,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,6.8677893,6.7916718,0,11,-2,-.96447617,0,3,3,2021,21,8,16,19,1,8,0,7.8195782,7.8195782,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,36.49,47.15,55.39,1.666666666666667,1,1,0,0,9,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8189,9956,17819,17821,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.9773359,8.9106007,0,6,1,37.135525,0,-9,-9,2021,6,0,37,-9,1,0,0,19.391132,19.391132,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,3,4,0,0,9,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8189,9956,17820,-9,17819,17821,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.75439,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8189,9956,17821,17819,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.8785448,8.5946426,0,6,-1,10.600204,0,2,2,2021,6,0,35,35,1,0,0,24.880566,24.880566,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8190,9957,17822,17823,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.9745407,5.9081907,42,0,141.59938,0,3,-9,2021,11,0,0,27,4,0,0,0,0,0,0,0,0,0,0,.50412369,0,1,1,0,5.286274,5.736815,49.2,42.35,52.6,52.88,10,1,1,0,0,10,6,2,1,356.5,465717.81,119348.36,121547.94,0,0,0,2078.1658 +8190,9957,17823,17822,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,42,0,28.383017,0,3,3,2021,7,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,49.2,42.35,10,1,1,0,0,13,6,2,1,356.5,465717.81,119348.36,121547.94,0,0,0,2078.1658 +8191,9958,17824,17825,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0526152,7.9632235,0,8,9,185.94765,0,3,2,2021,11,1,14,14,1,1,0,17.84021,17.84021,.05,.05,.05,0,0,0,0,7,0,0,0,5.9971981,0,40.84,39.49,23.82,49.01,10,1,1,0,0,8,12,4,1,444,438117.94,405509.56,144907.31,22750.826,0,0,3271.1023 +8191,9958,17825,17824,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.8237381,7.5195894,0,8,0,122.08012,0,-9,-9,2021,24,11,35,0,1,11,0,6.267767,6.267767,0,0,0,0,0,0,0,0,0,0,0,0,0,23.82,49.01,40.84,39.49,6.666666666666667,1,1,0,1,8,12,4,1,444,438117.94,405509.56,144907.31,22750.826,0,0,3271.1023 +8192,9959,17826,17827,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-6,-53.126282,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.25,46.55,41.7,39.18,8.333333333333334,1,1,0,0,0,5,3,1,994.5,724823.5,131868.73,292623.38,0,0,0,2226.1189 +8192,9959,17827,17826,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,7.3736243,7.2519927,55,6,74.187302,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,3.6213963,0,0,1,1,0,6.9063272,7.6487417,41.7,39.18,51.25,46.55,5,1,1,0,0,0,5,3,1,994.5,724823.5,131868.73,292623.38,0,0,0,2226.1189 +8193,9960,17828,17829,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.5930891,8.3528976,0,8,0,-35.84589,0,2,2,2021,10,0,45,75,1,0,0,14.246939,14.246939,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,58.15,52.91,1.666666666666667,1,1,0,0,9,2,5,1,302,685503,426645.03,113302.93,60826.203,0,455.91351,3225.2034 +8193,9960,17829,17828,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.7557116,7.4334712,0,8,0,126.28529,0,2,2,2021,7,0,18,35,1,0,0,14.960121,14.960121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.05,54.52,8.333333333333334,1,1,0,0,9,2,5,1,302,685503,426645.03,113302.93,60826.203,0,455.91351,3225.2034 +8194,9961,17830,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1069.5374,0,-9,-9,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.26,30.38,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,932,-108104.15,0,0,0,0,0,1442.2357 +8195,9962,17831,17832,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9339733,6.3615317,49,-3,90.776489,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7278628,6.502243,60.72,47.63,56.35,51,8.333333333333334,1,1,0,0,10,2,2,1,612.5,419095.44,91261.609,187195.44,0,0,0,2387.5615 +8195,9962,17832,17831,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,2.6177731,2.4480958,49,3,10.904905,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062181,2.482702,56.35,51,60.72,47.63,10,1,1,0,0,7,2,2,1,612.5,419095.44,91261.609,187195.44,0,0,0,2387.5615 +8196,9963,17833,17834,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.8378587,7.1304002,49,2,-103.69775,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4191661,7.3109913,58.61,40.49,54.61,43.01,10,1,1,0,0,0,6,4,1,399,1352307,1073630.8,384022.5,69928.258,0,0,2157.7271 +8196,9963,17834,17833,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.1223059,7.636673,49,-2,2.5662391,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2844434,7.7219038,54.61,43.01,58.61,40.49,10,1,1,0,0,3,6,4,1,399,1352307,1073630.8,384022.5,69928.258,0,0,2157.7271 +8197,9964,17835,-9,17837,17838,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.355,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17836,-9,17837,17838,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3989,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,2,3,-9,0,0,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17837,17838,-9,-9,1,0,36,0,2,0,2,2,-9,1,1,8.7567062,8.4728918,0,12,-1,-15.820024,0,2,3,2021,23,10,24,24,1,10,0,34.660488,34.660488,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.37,19.65,47.29,55.39,6.666666666666667,2,3,0,0,12,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17838,17837,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,7.6020637,7.7006755,0,11,1,-49.526306,0,-9,-9,2021,6,0,40,40,1,0,0,5.0158014,5.0158014,.05,.05,0,0,0,0,0,0,1,0,1,0,0,47.29,55.39,43.37,19.65,8.333333333333334,2,3,0,0,11,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8198,9965,17839,17840,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,-62.811462,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2410558,0,59.31,49.81,57.91,48.98,8.333333333333334,1,1,0,0,0,10,2,1,1590.5,812762.75,273392.44,448107.5,0,0,0,2019.4058 +8198,9965,17840,17839,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.5609121,6.6594186,55,4,39.439198,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1309838,7.1197004,57.91,48.98,59.31,49.81,8.333333333333334,1,1,0,0,0,10,2,1,1590.5,812762.75,273392.44,448107.5,0,0,0,2019.4058 +8199,9966,17841,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.2615261,8.3864307,0,0,0,-1065.6068,0,2,3,2021,8,0,40,43,1,0,0,11.911732,11.911732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,669,311506,95921.336,0,0,5291.6245,0,2707.2656 +8200,9967,17842,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.2368965,8.2593908,0,0,0,-1069.5688,0,-9,-9,2021,7,0,50,50,1,0,0,11.404789,11.404789,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,1374,249268.17,0,0,0,0,0,1255.5913 +8201,9968,17843,17844,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.6522923,6.3508406,51,1,26.611418,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7644954,6.4189868,43.07,38.31,54.38,49.27,6.666666666666667,1,1,0,0,0,9,2,0,493.5,176021.25,110450.86,225039.83,0,0,0,1861.946 +8201,9968,17844,17843,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,51,-1,2.7144942,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,54.38,49.27,43.07,38.31,8.333333333333334,1,1,0,0,0,9,2,0,493.5,176021.25,110450.86,225039.83,0,0,0,1861.946 +8202,9969,17845,17846,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.028821,6.9227428,55,0,122.02484,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7550778,54.69,30.23,67.36,35.12,6.666666666666667,1,1,0,0,0,10,2,1,916.5,367912.75,0,256827.69,0,0,0,1472.9548 +8202,9969,17846,17845,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,-49.478096,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,67.36,35.12,54.69,30.23,10,1,1,0,0,0,10,2,1,916.5,367912.75,0,256827.69,0,0,0,1472.9548 +8203,9970,17847,17848,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,9.5881119,9.4140844,47,0,30.304361,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6346231,9.4555292,46.67,55.7,57.16,56.15,6.666666666666667,1,1,0,0,2,2,5,1,740.5,3780768.5,2947399,366393.34,0,0,0,9538.9805 +8203,9970,17848,17847,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.1900063,8.0798054,47,0,-89.889076,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.62836736,8.0195684,57.16,56.15,46.67,55.7,8.333333333333334,1,1,0,0,0,2,5,1,740.5,3780768.5,2947399,366393.34,0,0,0,9538.9805 +8204,9971,17849,-9,17852,17851,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.21997,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17850,-9,17852,17851,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-945.00891,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17851,17852,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.851881,8.9927845,0,8,4,144.1998,0,-9,2,2021,12,3,40,40,1,3,0,19.58963,19.58963,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,0,0,9,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17852,17851,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.8050537,6.7679658,0,8,-4,-85.938614,0,2,-9,2021,9,0,14,15,1,0,0,5.9635353,5.9635353,.05,.05,0,0,0,0,0,0,1,1,0,1.8043658,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8205,9972,17853,17854,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,8.0382528,7.9313598,28,0,128.41708,0,-9,-9,2021,8,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8755889,36.62,44.17,46.96,45.96,10,1,1,0,0,7,10,4,0,737.5,936897.5,518461.06,383652.22,0,0,0,2543.5034 +8205,9972,17854,17853,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.5824609,7.870985,6.001811,22,9,95.192734,0,3,3,2021,9,0,46,45,1,0,0,5.4824209,5.4824209,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9101892,46.96,45.96,36.62,44.17,6.666666666666667,1,1,0,1,8,10,4,0,737.5,936897.5,518461.06,383652.22,0,0,0,2543.5034 +8206,9973,17855,17857,-9,-9,1,0,47,0,1,0,3,3,-9,0,2,7.5951972,7.7258801,0,7,13,61.802021,0,-9,-9,2021,11,0,21,21,1,0,0,11.189455,11.189455,0,0,0,0,0,0,0,7,1,1,0,0,0,48.44,48.29,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9973,17856,-9,17855,17857,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.09406,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9973,17857,17855,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.9571757,7.645505,0,9,-13,-60.453583,0,-9,-9,2021,8,0,42,42,1,0,0,8.0921574,8.0921574,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.44,48.29,8.333333333333334,1,1,0,0,9,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9974,17858,-9,17855,17857,1,0,22,0,1,0,2,2,-9,0,3,8.1196566,8.4092884,0,0,0,-1006.8668,0,2,3,2021,11,0,50,46,1,0,1,7.9427772,7.9427772,0,0,0,0,0,0,0,0,1,1,0,3.2577584,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,703,-91428.797,43334.652,0,0,1823.0876,2408.3679,1189.1318 +8207,9975,17859,17860,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.5019369,5.9311876,19,4,75.210243,0,3,3,2021,7,0,0,39,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5544276,5.6402431,60.44,46.58,48,48,8.333333333333334,1,1,0,0,11,12,3,1,516.5,1081806.8,746072.94,143532.56,0,0,0,2764.6814 +8207,9975,17860,17859,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.8931136,8.0857925,5.2137375,15,-4,-105.18548,0,3,3,2021,25,11,38,37,1,11,0,12.319816,12.319816,0,0,0,0,0,0,0,0,1,1,0,5.5752082,5.8863945,48,48,60.44,46.58,3.333333333333333,1,1,0,0,13,12,3,1,516.5,1081806.8,746072.94,143532.56,0,0,0,2764.6814 +8208,9976,17861,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3415174,8.4127035,0,0,0,-1128.2565,0,3,2,2021,5,0,46,50,1,0,0,9.5948677,9.5948677,0,0,0,0,0,0,0,0,0,0,0,0,0,42.17,56.08,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,217,318371.66,6636.7813,327037.56,97077.297,0,0,885.66284 +8209,9977,17862,17863,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4938192,8.3139963,5.3206325,7,-3,66.169586,0,3,3,2021,11,0,37,37,1,0,0,12.525319,12.525319,0,0,0,0,0,0,0,0,0,0,0,5.6168494,5.388535,51.64,44.01,54.2,57.49,8.333333333333334,1,1,0,0,10,12,4,1,2007,449113.81,306204.16,186684.56,0,0,0,2452.718 +8209,9977,17863,17862,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,7.3077912,7.6770163,7,3,-20.131296,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.0289965,7.5882254,54.2,57.49,51.64,44.01,8.333333333333334,1,1,0,0,8,12,4,1,2007,449113.81,306204.16,186684.56,0,0,0,2452.718 +8210,9978,17864,17865,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.6354275,8.6875343,0,17,-1,132.63498,0,2,2,2021,18,6,38,38,1,6,0,14.484719,14.484719,.05,.05,0,0,0,0,0,42,0,0,0,0,0,34.21,55.9,50.05,23.6,3.333333333333333,1,1,0,0,13,2,5,0,407.5,135375.98,131071.22,121731.47,38276.488,759.96423,-773.02673,3339.7788 +8210,9978,17865,17864,-9,-9,1,0,47,0,0,0,1,1,-9,0,1,7.9017034,8.3427181,0,17,1,-23.359354,0,2,1,2021,12,2,38,38,1,2,0,8.8040695,8.8040695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.05,23.6,34.21,55.9,6.666666666666667,1,1,0,0,4,2,5,0,407.5,135375.98,131071.22,121731.47,38276.488,759.96423,-773.02673,3339.7788 +8210,9979,17866,-9,17865,17864,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-907.73859,-9,1,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9789741,0,51.61,61.54,-9,-9,10,1,1,0,0,0,2,2,0,706,-22894.379,0,0,0,0,0,229.98456 +8211,9980,17867,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.1929417,8.2632113,0,0,0,-1137.4667,0,2,2,2021,9,0,37,40,1,0,0,10.033528,10.033528,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,329,500675.84,448047.44,178632.61,22598.652,0,0,1544.5042 +8212,9981,17868,-9,17871,17869,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.35358,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17869,17871,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,9.5283394,9.1535044,0,8,3,17.931683,0,-9,-9,2021,10,1,51,48,1,1,0,25.059778,25.059778,.05,.05,0,0,0,0,0,0,0,0,0,5.4014177,0,55.24,55.87,54.2,57.49,10,1,1,0,0,9,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17870,-9,17871,17869,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.712,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17871,17869,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.784874,7.9406042,0,19,-3,-80.469574,0,3,2,2021,9,0,17,17,1,0,0,14.133722,14.133722,.05,.05,0,0,0,0,0,2,0,0,0,5.3570094,0,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,9,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8213,9982,17872,17873,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.970665,9.0839424,4.7811546,6,6,-51.886509,0,2,3,2021,12,0,96,84,1,0,0,14.796576,14.796576,.05,.05,0,0,0,0,0,0,1,1,0,5.8172441,4.7895064,37.69,58.7,39.81,52.1,6.666666666666667,1,1,0,0,7,12,5,1,1095.5,937097,894625.56,0,0,0,0,5369.8213 +8213,9982,17873,17872,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0718212,7.8691859,0,6,-6,-82.363869,0,2,2,2021,16,4,27,28,1,4,0,12.099753,12.099753,.05,.05,0,0,0,0,0,0,1,1,0,1.164507,0,39.81,52.1,37.69,58.7,3.333333333333333,1,1,0,0,7,12,5,1,1095.5,937097,894625.56,0,0,0,0,5369.8213 +8213,9983,17874,-9,17873,17872,1,1,25,0,0,0,2,2,-9,0,4,7.9481969,8.0154133,0,0,0,-986.12592,0,2,3,2021,5,0,49,59,1,0,1,6.4025507,6.4025507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1283,285092.28,-70151.484,0,0,0,0,1141.511 +8213,9984,17875,-9,17873,17872,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-874.94568,0,2,3,2021,23,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.85,62.81,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,621,51808.02,0,0,0,0,0,407.73322 +8214,9985,17876,17877,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.1817665,6.7112527,50,-1,43.242325,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6447859,7.1002402,61.28,35.65,52.88,32.74,8.333333333333334,1,1,0,0,10,2,2,1,524,224561.72,179908.61,132162.59,0,0,0,1864.5908 +8214,9985,17877,17876,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,50,1,-26.935976,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4992495,0,52.88,32.74,61.28,35.65,6.666666666666667,1,1,0,0,0,2,2,1,524,224561.72,179908.61,132162.59,0,0,0,1864.5908 +8215,9986,17878,17880,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,0,0,0,8,0,-50.467819,0,1,1,2021,8,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,53.4,47.49,8.333333333333334,1,1,1,1,10,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8215,9986,17879,-9,17878,17880,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8987,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8215,9986,17880,17878,-9,-9,1,1,42,0,1,0,1,1,-9,0,2,8.8096781,8.8421383,0,8,0,-21.91102,0,3,2,2021,7,0,45,43,1,0,0,13.732978,13.732978,.05,.05,0,0,0,0,0,0,1,1,0,6.6945009,0,53.4,47.49,58.15,52.91,8.333333333333334,1,1,0,0,8,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8216,9987,17881,17882,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,3.0310123,3.1999812,53,-5,145.86076,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2741911,3.1067495,47.01,58,52.48,43.75,8.333333333333334,1,1,0,0,0,4,2,1,289,456211.75,117659.53,104490.28,0,0,0,2763.1191 +8216,9987,17882,17881,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.4501638,5.8538523,23,5,-18.195353,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.506485,6.026844,52.48,43.75,47.01,58,8.333333333333334,1,1,0,0,0,4,2,1,289,456211.75,117659.53,104490.28,0,0,0,2763.1191 +8217,9988,17883,17884,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.4779253,8.4700537,0,6,-25,-22.18368,0,-9,2,2021,5,0,35,35,1,0,0,14.614139,14.614139,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,61.44,32.61,8.333333333333334,1,1,0,0,7,7,4,1,372.5,276109.03,0,371829.34,84495.273,0,0,1418.0154 +8217,9988,17884,17883,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,6,25,-66.971489,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.44,32.61,50.57,52.35,8.333333333333334,1,1,1,0,2,7,4,1,372.5,276109.03,0,371829.34,84495.273,0,0,1418.0154 +8218,9989,17885,17886,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,57,-4,61.680489,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5681245,0,45.39,51.79,53,47,8.333333333333334,1,1,0,0,0,10,2,1,461,281192.25,0,247479.44,0,0,0,1706.4524 +8218,9989,17886,17885,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.4203486,4.6923285,57,4,105.71246,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8850598,4.5287776,53,47,45.39,51.79,8.333333333333334,1,1,0,0,0,10,2,1,461,281192.25,0,247479.44,0,0,0,1706.4524 +8219,9990,17887,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.0659,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,11,1,0,455,5913.1968,0,19037.797,0,0,0,2280.2126 +8219,9991,17888,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-955.91949,0,3,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.17,40.68,-9,-9,0,1,1,0,1,0,11,1,0,668,0,0,0,0,0,0,1232.8912 +8220,9992,17889,17890,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.3236074,7.460691,0,12,3,19.466299,0,1,1,2021,20,9,54,5,1,9,0,3.6698484,3.6698484,.05,.05,0,0,0,0,0,7,0,0,0,0,0,38.21,55.59,30.24,64.61,8.333333333333334,1,1,0,0,13,5,5,1,487.5,875947.38,627696.88,531915.19,235382.88,0,0,4734.6777 +8220,9992,17890,17889,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.2001362,9.3595629,0,12,-3,43.545094,0,2,2,2021,13,3,44,43,1,3,0,24.772324,24.772324,0,0,0,0,0,0,0,2,0,0,0,0,0,30.24,64.61,38.21,55.59,8.333333333333334,1,1,0,0,12,5,5,1,487.5,875947.38,627696.88,531915.19,235382.88,0,0,4734.6777 +8221,9993,17891,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.7124701,6.1270146,0,0,-968.32172,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9258618,53.94,45.89,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,344,-143898.72,56176.207,0,0,0,0,955.33154 +8222,9994,17892,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.5864301,6.5331011,0,0,-995.17438,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1678429,6.5660372,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,1474,185483.09,128485.76,55398.125,0,0,0,721.71729 +8223,9995,17893,-9,17894,17895,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.41931,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8223,9995,17894,17895,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,6.8533096,7.2247386,6.0987372,7,0,54.63599,0,2,2,2021,11,1,8,8,1,1,0,10.441694,10.441694,0,0,0,0,0,0,0,7,1,1,0,5.403893,0,52.97,48.43,46.32,53.44,8.333333333333334,1,1,0,0,8,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8223,9995,17895,17894,-9,-9,1,1,50,0,1,0,1,1,-9,0,2,8.9801941,8.2873545,0,7,9,86.183304,0,-9,-9,2021,17,8,41,40,1,8,0,13.857732,13.857732,.05,.05,0,0,0,0,0,2,1,1,0,3.0944207,0,46.32,53.44,52.97,48.43,1.666666666666667,4,1,0,0,7,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8224,9996,17896,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.9186864,6.943902,0,0,-1057.8777,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6990075,6.9008126,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1184,1100036.9,104875.4,961649.06,0,0,0,1242.0051 +8225,9997,17897,17898,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3392243,6.1661377,11,2,16.522339,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0110984,52,53,42.97,42.82,8.333333333333334,1,1,0,0,5,11,4,1,492,1374858.1,1016046.5,276746.34,0,0,0,2992.325 +8225,9997,17898,17897,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,8.407176,8.6725273,11,-2,20.286057,-9,2,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7198491,8.3877668,42.97,42.82,52,53,8.333333333333334,1,1,0,0,0,11,4,1,492,1374858.1,1016046.5,276746.34,0,0,0,2992.325 +8226,9998,17899,17900,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.7819548,7.8527822,0,11,1,10.468967,0,3,3,2021,12,0,31,31,1,0,0,8.0268564,8.0268564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.69,43.56,61.12,51.57,6.666666666666667,1,1,0,0,12,11,4,0,196,92091.063,72271.734,12178.752,-8966.916,9882.7588,2339.2715,2203.2327 +8226,9998,17900,17899,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5033083,7.3821354,5.2057981,11,-1,-53.932365,0,2,2,2021,6,0,25,45,1,0,0,8.7137327,8.7137327,.05,.05,0,0,0,0,0,0,0,0,0,0,5.4874458,61.12,51.57,46.69,43.56,8.333333333333334,1,1,0,0,11,11,4,0,196,92091.063,72271.734,12178.752,-8966.916,9882.7588,2339.2715,2203.2327 +8227,9999,17901,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.5561104,8.8138103,0,0,0,-1017.6934,0,-9,-9,2021,3,0,47,40,1,0,0,14.574965,14.574965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,0,2,5,5,0,157,22563.855,0,0,0,4061.6865,5625.5781,2322.1272 +8228,10000,17902,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.1257753,8.1487579,0,0,-869.33472,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.2197609,7.7720842,61.44,37.81,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,901,965189.06,831101.63,115870.84,0,0,0,4814.7476 +8229,10001,17903,-9,17905,17906,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.03,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17904,-9,17905,17906,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9845,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17905,17906,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,7.0425563,7.2489963,0,13,-10,-50.828384,0,2,2,2021,12,1,6,16,1,1,0,18.158993,18.158993,0,0,0,0,0,0,0,0,1,1,0,1.4622761,0,40.89,51.69,28.2,22.68,6.666666666666667,2,3,0,0,5,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17906,17905,-9,-9,1,1,54,0,2,0,1,1,-9,1,1,0,0,0,13,10,-83.602501,0,1,1,2021,24,12,0,0,3,12,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,28.2,22.68,40.89,51.69,0,1,1,0,1,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8230,10002,17907,-9,17908,17910,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.73523,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17908,17910,-9,-9,1,0,31,0,2,0,3,3,-9,0,4,0,0,0,11,-3,-108.23023,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.79,47.07,24.68,47.06,8.333333333333334,2,3,0,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17909,-9,17908,17910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3854,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17910,17908,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,7.5370016,7.5662198,0,11,3,107.90099,0,3,2,2021,28,12,30,24,1,12,0,6.2685351,6.2685351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.68,47.06,49.79,47.07,5,2,3,0,0,5,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8231,10003,17911,-9,17912,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.4412,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,671.5,-183588.2,24051.195,0,0,0,0,515.11084 +8231,10003,17912,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,1,0,5.2248321,5.929091,0,0,-1018.1974,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7902217,0,36.06,29.88,-9,-9,0,3,4,1,1,1,2,2,0,671.5,-183588.2,24051.195,0,0,0,0,515.11084 +8232,10004,17913,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,5,6.8309436,6.9978986,0,0,0,-895.99335,0,1,3,2021,17,5,40,40,1,5,0,3.918514,3.918514,.05,.05,0,0,0,0,0,86,1,1,0,0,0,44.58,50.95,-9,-9,1.666666666666667,1,1,0,0,9,11,2,1,1063,105883.13,78132.516,0,0,0,0,841.78888 +8233,10005,17914,17915,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.88412,8.8256502,0,12,-2,1.3742588,0,2,2,2021,7,0,43,37,1,0,0,29.014555,29.014555,0,0,.05,0,0,0,0,0,0,0,0,3.7439167,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8233,10005,17915,17914,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.8424425,9.4692564,0,12,2,-30.873928,0,2,2,2021,7,0,50,55,1,0,0,36.257725,36.257725,.05,.05,.05,0,0,0,0,0,0,0,0,4.820004,0,54.2,57.49,51.83,57.2,10,1,1,0,0,13,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8233,10005,17916,-9,17914,17915,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.50165,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8234,10006,17917,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.53284,-9,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,43.528652,9.9436493,415.64175,0,1,1,0,0,0,45,37,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,959,180568.25,0,0,0,0,0,221.17009 +8235,10007,17918,17920,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.2936139,7.3561811,0,8,-1,86.606049,0,-9,2,2021,7,0,20,22,1,0,0,11.213585,11.213585,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.71,53.58,8.333333333333334,1,1,0,0,10,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8235,10007,17919,-9,17918,17920,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.27094,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8235,10007,17920,17918,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.8651867,9.0912132,0,8,1,-12.52994,0,-9,-9,2021,12,0,42,40,1,0,0,21.202526,21.202526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.71,53.58,57.16,56.15,6.666666666666667,1,1,0,0,5,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8236,10008,17921,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.647182,6.559833,0,0,-1141.8,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5434489,52,47,-9,-9,7,1,1,0,0,0,8,2,0,642,640651.69,143939.2,380647.31,0,0,-596.60956,1894.8162 +8236,10009,17922,-9,-9,17921,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1042.4895,0,-9,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.39,37.66,-9,-9,5,1,1,1,0,0,8,1,0,621,-18183.311,0,0,0,2112.7878,788.89124,324.86746 +8237,10010,17923,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7547002,6.9689555,0,0,-886.28259,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6991601,6.7212186,59.7,32.49,-9,-9,6.666666666666667,1,1,0,0,12,6,2,1,1243,-4226.2402,75437.5,0,0,0,1700.9615,977.11395 +8238,10011,17924,17925,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.5769796,6.5854087,10,-4,-77.993202,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3748932,54.1,59.11,58.56,46.45,8.333333333333334,1,1,0,0,0,12,3,1,702.5,569403.75,217259.75,310828.44,0,0,0,2270.5054 +8238,10011,17925,17924,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.4295192,7.3111839,10,4,-102.06326,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,19.966881,0,0,1,1,0,7.2299085,7.1419129,58.56,46.45,54.1,59.11,8.333333333333334,1,1,0,0,0,12,3,1,702.5,569403.75,217259.75,310828.44,0,0,0,2270.5054 +8239,10012,17926,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.7212582,8.3326941,0,0,-1188.1826,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.783556,8.5755234,46.81,43.46,-9,-9,6.666666666666667,1,1,0,0,5,1,5,1,189,-103394.33,-123257.14,0,0,8944.5791,0,3257.6099 +8240,10013,17927,17929,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,8.1285992,8.2855339,0,9,6,-34.932434,0,-9,-9,2021,12,0,55,55,1,0,0,9.6757183,9.6757183,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.83,57.2,6.666666666666667,1,1,0,0,10,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17928,-9,17929,17927,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9093,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17929,17927,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.8660169,7.8221416,0,9,-6,-29.490927,0,2,3,2021,12,0,38,28,1,0,0,8.2810659,8.2810659,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.08,57.2,8.333333333333334,1,1,0,0,10,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17930,-9,17929,17927,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-919.01721,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8241,10014,17931,17932,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.6617436,6.1869373,52,2,48.059399,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0852404,6.0453606,57.16,56.15,47.07,53.97,8.333333333333334,1,1,0,0,4,9,2,1,931,557034.94,84233.391,320773.91,0,0,0,1468.6042 +8241,10014,17932,17931,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.2755609,6.0308318,52,-2,44.910835,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3505015,47.07,53.97,57.16,56.15,6.666666666666667,1,1,0,0,6,9,2,1,931,557034.94,84233.391,320773.91,0,0,0,1468.6042 +8242,10015,17933,17934,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.7466793,7.7835894,0,2,-11,29.68754,0,-9,-9,2021,8,0,37,37,1,0,0,7.1948161,7.1948161,0,0,0,0,0,0,0,0,1,0,1,0,0,61.94,37.61,56.19,46.16,8.333333333333334,1,1,0,0,1,13,3,0,2067,354587.22,287102.94,130650.4,43226.191,0,0,2092.5359 +8242,10015,17934,17933,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,6.9928536,6.9355636,0,2,11,47.418488,0,3,3,2021,8,0,20,20,1,0,0,7.1548452,7.1548452,.05,.05,0,0,0,0,0,0,1,0,1,0,0,56.19,46.16,61.94,37.61,8.333333333333334,1,1,0,0,9,13,3,0,2067,354587.22,287102.94,130650.4,43226.191,0,0,2092.5359 +8243,10016,17935,-9,17938,-9,1,0,17,0,2,1,2,0,0,0,3,0,4.4278994,3.6345234,0,0,-1049.2546,-9,2,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0052924,0,51.36,36.04,-9,-9,5,1,1,0,0,2,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17936,-9,17938,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.5526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17937,-9,17938,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.3138,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17938,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.8517756,6.8977809,0,0,0,-1110.057,0,2,2,2021,12,1,30,18,1,1,0,4.1395249,4.1395249,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,1,6,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8244,10017,17939,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,0,5.1913462,5.2518091,0,0,-923.10101,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,5.3835621,0,35.91,36.92,-9,-9,5,1,1,1,1,4,12,2,0,982,69478.289,0,0,0,0,0,418.78088 +8245,10018,17940,17941,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.0938454,7.919066,0,9,0,-80.733154,0,1,2,2021,3,0,12,12,1,0,0,25.650274,25.650274,.05,.05,0,0,0,0,0,0,0,0,0,7.3830528,0,54.96,53.17,50.08,55.33,8.333333333333334,1,1,0,0,10,8,4,1,334,490366.19,110111.34,245589.81,0,0,0,4389.5635 +8245,10018,17941,17940,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4611292,8.3633995,0,9,0,-117.39057,0,1,1,2021,8,0,20,15,1,0,0,21.984947,21.984947,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,55.33,54.96,53.17,10,1,1,0,0,10,8,4,1,334,490366.19,110111.34,245589.81,0,0,0,4389.5635 +8245,10019,17942,-9,17941,17940,1,1,24,0,0,0,1,1,-9,0,5,0,6.9643526,6.6717076,0,0,-1077.3062,1,1,1,2021,20,9,0,43,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3836646,0,36,64.90000000000001,-9,-9,10,1,1,0,0,3,8,2,1,187,136035.38,0,0,0,0,0,-176.51926 +8245,10020,17943,-9,17941,17940,1,0,21,0,0,1,1,0,0,0,3,0,0,0,0,0,-918.56775,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.55,48.59,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,756,-72208.922,0,0,0,0,0,0 +8246,10021,17944,17945,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6115623,7.2062049,0,29,-6,-108.50479,0,2,2,2021,13,2,24,0,1,2,0,7.2007141,7.2007141,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.67,55.57,8.333333333333334,1,1,0,0,8,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10021,17945,17944,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.388545,8.5070944,0,29,6,-70.751129,0,3,3,2021,8,0,42,50,1,0,0,13.631936,13.631936,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,51.24,58.84,8.333333333333334,1,1,0,0,9,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10021,17946,-9,17944,17945,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-962.31189,-9,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,56.72,-9,-9,5,1,1,0,0,1,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10022,17947,-9,17944,17945,1,1,22,0,0,0,2,2,-9,0,4,7.8664923,8.2032356,0,0,0,-1031.442,0,2,2,2021,9,0,42,39,1,0,1,9.2007523,9.2007523,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,108,37581.91,63797.465,0,0,0,0,2144.6584 +8246,10023,17948,-9,17944,17945,1,0,19,0,0,0,2,2,1,0,5,7.9443903,8.1947365,0,0,0,-1060.0964,-9,2,2,2021,12,0,45,0,1,0,1,7.5543518,7.5543518,0,0,0,0,0,0,0,0,1,1,0,0,0,40.61,53.29,-9,-9,5,1,1,0,0,2,8,4,1,341,92118.094,0,0,0,0,0,1340.583 +8247,10024,17949,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6820397,5.4472966,0,0,-1167.7854,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.9712377,0,28.454239,0,1,1,0,0,5.652843,64.48,41.06,-9,-9,10,1,1,0,0,0,4,2,0,556,89475.172,52705.699,0,0,0,0,1382.5056 +8248,10025,17950,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.1326,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.717515,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,13,1,0,461,106300.12,0,106405.83,0,0,0,1035.0123 +8249,10026,17951,17952,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.5419888,7.6285939,0,36,-1,63.412441,0,3,3,2021,12,0,60,30,1,0,0,4.0507822,4.0507822,0,0,0,0,0,0,0,0,0,0,0,0,0,39.59,54.7,60.21,36.96,6.666666666666667,1,1,0,0,13,5,5,1,1598,1699977.8,1183763.3,436928.34,30921.875,0,0,4353.521 +8249,10026,17952,17951,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.2094755,8.809247,7.5401902,36,1,28.74321,0,3,3,2021,10,0,40,-9,1,0,0,12.261102,12.261102,.05,.05,0,1,0,6.7320118,0,0,0,0,0,6.8283892,7.8838887,60.21,36.96,39.59,54.7,6.666666666666667,1,1,0,0,14,5,5,1,1598,1699977.8,1183763.3,436928.34,30921.875,0,0,4353.521 +8250,10027,17953,17954,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3849916,9.1835327,0,26,1,4.8271227,0,1,2,2021,8,0,31,32,1,0,0,33.105198,33.105198,0,0,0,0,0,0,0,7,0,0,0,2.0419264,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,13,12,5,1,525.5,764488,399290.5,539985.25,169431.25,1812.5596,16844.834,11106.861 +8250,10027,17954,17953,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.8136883,9.5639286,0,26,-1,-61.287457,0,2,2,2021,8,1,50,85,1,1,0,37.65551,37.65551,.05,.05,0,0,0,0,0,0,0,0,0,6.2821612,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,13,12,5,1,525.5,764488,399290.5,539985.25,169431.25,1812.5596,16844.834,11106.861 +8250,10028,17955,-9,17953,17954,1,0,21,0,0,1,2,0,-9,0,4,0,7.2291546,7.2842746,0,0,-1026.3457,-9,1,1,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9288568,0,51.36,54.65,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,1675,146806.58,0,0,0,0,0,808.24872 +8251,10029,17956,17957,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3177962,6.1506743,8,1,33.772827,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8935766,54.21,49.46,54.96,53.17,8.333333333333334,3,4,0,0,0,2,3,1,461,665249.25,566467.31,161164.84,0,0,917.41565,3292.0273 +8251,10029,17957,17956,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.6206346,7.5835404,8,-1,-180.13023,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8314509,7.3513141,54.96,53.17,54.21,49.46,10,1,1,0,0,0,2,3,1,461,665249.25,566467.31,161164.84,0,0,917.41565,3292.0273 +8252,10030,17958,17959,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.3657007,8.1082935,44,4,50.217178,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8340917,8.3296413,58.72,43.42,58.47,50.22,8.333333333333334,1,1,0,0,9,8,5,1,447.5,3294920.8,1824287.8,1189707,0,0,0,5885.2764 +8252,10030,17959,17958,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.617548,8.4272022,44,-4,37.872814,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.037734,8.6039286,58.47,50.22,58.72,43.42,8.333333333333334,1,1,0,0,9,8,5,1,447.5,3294920.8,1824287.8,1189707,0,0,0,5885.2764 +8253,10031,17960,17961,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.6786265,7.7544336,0,7,1,-31.00935,0,2,2,2021,10,0,45,65,1,0,0,8.1661186,8.1661186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,52.57,36.83,8.333333333333334,1,1,0,0,8,4,5,1,746,1148562.8,859033,137263.91,0,4641.6899,0,3053.6191 +8253,10031,17961,17960,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3709459,8.5199213,0,7,-1,-102.10918,0,3,2,2021,12,2,40,45,1,2,0,15.415173,15.415173,0,0,0,0,0,0,0,7,0,0,0,0,0,52.57,36.83,55.76,52.64,6.666666666666667,1,1,0,0,8,4,5,1,746,1148562.8,859033,137263.91,0,4641.6899,0,3053.6191 +8254,10032,17962,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.5119305,8.6128635,0,0,0,-989.35657,0,2,2,2021,8,0,47,45,1,0,0,9.4947081,9.4947081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,46.68,-9,-9,3.333333333333333,1,1,0,0,12,5,4,1,295,21734.479,-62492.383,18433.504,55215.387,0,0,1003.7351 +8255,10033,17963,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,5.3143563,5.4457211,0,0,-932.05994,-9,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.0933795,5.5333028,30.07,18.8,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,114,298186.22,142387.72,141038.92,0,0,0,1823.7999 +8255,10034,17964,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.14307,-9,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.83,36.61,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,579,18042.113,0,0,0,0,0,1026.9132 +8256,10035,17965,17967,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.7476768,9.8922691,0,13,13,145.78044,0,2,1,2021,9,1,32,30,1,1,0,65.616386,65.616386,0,0,0,0,0,0,0,0,1,1,0,2.7505476,0,52.4,55.58,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17966,-9,17967,17965,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1099.4044,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17967,17965,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.8216209,7.6131368,0,14,-13,-42.065777,0,3,3,2021,7,1,10,10,1,1,0,22.883986,22.883986,0,0,0,0,0,0,0,0,1,1,0,4.4250402,0,57.06,57.76,52.4,55.58,8.333333333333334,1,1,0,0,5,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17968,-9,17967,17965,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.56458,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8257,10036,17969,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.4010839,5.9446039,0,0,-955.28876,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.34129,62.9,48.63,-9,-9,8.333333333333334,3,4,0,0,11,8,2,0,739,541487.5,509621.69,107279.84,0,0,0,658.18488 +8258,10037,17970,17971,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.1596832,7.1972923,49,0,-19.278679,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9732876,0,0,1,1,0,0,6.9624038,41.42,32.65,62.49,55.09,3.333333333333333,1,1,0,0,3,7,3,1,829,1019732.6,492307.25,190135.8,0,0,0,2919.1704 +8258,10037,17971,17970,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.6937089,7.6851625,49,0,-63.667881,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0737715,7.5713782,62.49,55.09,41.42,32.65,8.333333333333334,1,1,0,0,4,7,3,1,829,1019732.6,492307.25,190135.8,0,0,0,2919.1704 +8259,10038,17972,17973,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,53,0,-212.12714,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3235917,0,41.17,60.71,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,386.5,1094326.8,576311.5,289100.16,0,0,0,2615.6572 +8259,10038,17973,17972,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9607987,7.9108186,53,0,76.782402,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8725357,57.33,53.46,41.17,60.71,8.333333333333334,1,1,0,0,6,9,3,1,386.5,1094326.8,576311.5,289100.16,0,0,0,2615.6572 +8260,10039,17974,17975,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,5,-11,-9.7419538,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.53,47.65,57.33,40.23,6.666666666666667,1,1,0,1,0,13,2,0,781.5,196519.22,0,119482.3,0,2973.1223,0,1597.8015 +8260,10039,17975,17974,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.7282839,3.817395,5,11,26.041267,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7678287,57.33,40.23,40.53,47.65,8.333333333333334,1,1,0,1,0,13,2,0,781.5,196519.22,0,119482.3,0,2973.1223,0,1597.8015 +8261,10040,17976,17977,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.2799654,7.3449044,48,-3,39.906132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4655414,7.3202968,60.02,56.42,54.2,57.49,8.333333333333334,1,1,0,0,10,6,4,1,981,1704498,963356.88,268102.03,0,1001.3528,0,3122.8982 +8261,10040,17977,17976,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.8656731,7.8712258,48,3,-20.145023,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0264444,54.2,57.49,60.02,56.42,1.666666666666667,1,1,0,0,3,6,4,1,981,1704498,963356.88,268102.03,0,1001.3528,0,3122.8982 +8262,10041,17978,-9,17981,17979,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.1859,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17979,17981,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,9.1302252,9.2095423,0,8,-7,-67.942268,0,2,2,2021,12,1,40,40,1,1,0,31.412937,31.412937,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,48.4,40.09,6.666666666666667,1,1,0,0,10,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17980,-9,17981,17979,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.7045,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17981,17979,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,7.1872525,7.0234022,0,8,7,70.879143,0,-9,-9,2021,11,0,16,16,1,0,0,8.2851048,8.2851048,0,0,0,0,0,0,0,7,1,1,0,0,0,48.4,40.09,49.41,58.28,8.333333333333334,1,1,0,0,9,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17982,-9,17981,17979,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1173.0411,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8263,10042,17983,17986,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6487579,8.5891905,0,18,1,20.600826,0,2,2,2021,15,3,37,42,1,3,0,21.368324,21.368324,.05,.05,0,0,0,0,0,0,1,1,0,1.6601263,0,43.54,59.6,55.19,54.26,5,1,1,0,0,8,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17984,-9,17986,17983,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3232,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17985,-9,17986,17983,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.7942,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17986,17983,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.5520163,7.499023,0,18,-1,-81.795197,0,2,3,2021,12,0,25,25,1,0,0,9.174921,9.174921,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,43.54,59.6,8.333333333333334,1,1,0,0,8,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8264,10043,17987,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.8474364,7.0837512,0,0,-1009.2932,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7203717,44.75,47.24,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,972,312678,128466.23,68311.211,0,0,0,2048.7024 +8264,10044,17988,-9,17987,-9,1,0,55,0,0,0,3,3,-9,0,4,7.6591239,7.6107821,0,0,0,-946.21729,0,2,-9,2021,8,0,37,40,1,0,0,6.1042762,6.1042762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.4,42.8,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,631,367515.75,117239.01,169879.66,0,9422.6514,0,1676.4872 +8265,10045,17989,17990,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.1542473,8.119319,0,1,2,15.240037,0,2,2,2021,6,0,45,38,1,0,0,7.8692536,7.8692536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.39,13.18,8.333333333333334,1,1,0,0,7,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8265,10045,17990,17989,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.5104866,8.4333477,5.6188745,1,-2,85.622589,-9,-9,-9,2021,8,0,36,0,1,0,0,14.299266,14.299266,0,0,0,0,0,0,0,2,1,1,0,5.4853692,0,51.39,13.18,57.16,56.15,10,1,1,0,0,8,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8265,10045,17991,-9,17990,17989,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.33044,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8266,10046,17992,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.3356876,8.5524435,0,0,0,-1026.006,0,2,2,2021,8,0,37,37,1,0,0,16.685896,16.685896,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,211,38007.602,78215.344,0,0,0,0,983.08533 +8267,10047,17993,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.116519,8.3030672,0,0,0,-970.0235,0,2,2,2021,23,8,38,37,1,8,0,9.465682,9.465682,.05,.05,0,0,0,0,0,0,0,0,0,1.0504242,0,43.47,36.46,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,1924,37604.762,0,96024.141,25149.652,0,0,1263.0908 +8268,10048,17994,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.690836,5.2759619,0,0,-910.58173,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1412673,34.81,28.72,-9,-9,6.666666666666667,1,1,0,0,4,11,2,1,1044,18607.924,-58298.836,0,0,0,0,473.80856 +8269,10049,17995,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,8.7346506,8.8751755,0,0,0,-882.60681,0,3,2,2021,32,12,50,50,1,12,0,15.136437,15.136437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.29,27.04,-9,-9,0,1,1,0,0,10,5,5,0,459,126240.58,429760.56,8957.3057,57880.586,20548.061,2642.6367,1638 +8270,10050,17996,17997,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,3.7908638,3.8225956,41,-1,-23.674965,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0674829,3.6299856,62,41.73,57.41,54.88,8.333333333333334,1,1,0,0,8,1,3,1,1040,1208232.8,565146.13,334785.25,0,0,0,2088.8652 +8270,10050,17997,17996,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.0701294,8.2761078,41,1,123.05554,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.2085257,8.2809486,57.41,54.88,62,41.73,10,1,1,0,0,8,1,3,1,1040,1208232.8,565146.13,334785.25,0,0,0,2088.8652 +8271,10051,17998,17999,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,8.1094112,8.0305548,0,1,-1,160.26944,-9,-9,-9,2021,0,0,38,0,1,0,0,10.274799,10.274799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,35.36,39.05,10,1,1,0,0,1,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8271,10051,17999,17998,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,7.9111485,8.01478,0,1,1,-44.064991,-9,-9,-9,2021,10,0,37,0,1,0,0,9.5080938,9.5080938,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.36,39.05,62.49,55.09,6.666666666666667,1,1,0,0,7,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8271,10051,18000,-9,17998,17999,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.79053,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8272,10052,18001,-9,18003,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.9294,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8272,10052,18002,-9,18003,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.90173,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8272,10052,18003,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.600214,8.8335791,0,0,0,-933.66852,0,-9,-9,2021,15,3,46,45,1,3,0,12.686765,12.686765,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8273,10053,18004,18005,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,6.8691812,6.8433094,0,1,-1,-37.850845,-9,-9,-9,2021,25,9,16,0,1,9,0,7.0549545,7.0549545,0,0,0,0,0,0,0,14.5,0,0,0,0,0,34.96,42.14,41.64,54.12,1.666666666666667,1,1,0,1,8,13,3,1,416.5,57327.109,0,133439.06,125305.79,6408.9736,0,1277.7816 +8273,10053,18005,18004,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.5832782,8.0878849,0,1,1,19.660786,-9,3,3,2021,11,4,33,0,1,4,0,7.5209098,7.5209098,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,54.12,34.96,42.14,3.333333333333333,1,1,0,1,4,13,3,1,416.5,57327.109,0,133439.06,125305.79,6408.9736,0,1277.7816 +8274,10054,18006,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.9366779,8.9255524,0,0,0,-1054.6105,0,2,1,2021,26,10,52,52,1,10,0,14.916098,14.916098,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.92,61.06,-9,-9,3.333333333333333,1,1,0,0,13,8,5,1,465,1035176.6,10352.999,339931.22,0,0,0,3686.9902 +8275,10055,18007,18008,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,30,2,38.405949,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0823219,0,46.56,37.03,40.51,55.74,8.333333333333334,1,1,0,0,0,2,3,1,437.5,1332597.4,700953.38,207551.06,0,0,0,2237.6023 +8275,10055,18008,18007,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,7.7447619,8.1107082,6.9574385,30,-2,5.1818027,0,2,3,2021,13,1,36,29,1,1,0,7.6348982,7.6348982,.05,.05,0,0,0,0,0,0,1,1,0,5.0512753,7.374711,40.51,55.74,46.56,37.03,5,1,1,0,0,9,2,3,1,437.5,1332597.4,700953.38,207551.06,0,0,0,2237.6023 +8276,10056,18009,18010,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,9,7,0,0,3,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.77,54.15,48.87,58.55,3.333333333333333,1,1,0,0,0,5,1,0,616,-155483.3,0,0,0,2617.2065,0,1113.3534 +8276,10056,18010,18009,-9,-9,1,1,41,0,0,0,3,3,-9,0,4,0,0,0,9,-7,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,15.77,54.15,6.666666666666667,1,1,1,0,0,5,1,0,616,-155483.3,0,0,0,2617.2065,0,1113.3534 +8277,10057,18011,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.4548078,7.5824027,0,0,0,-1045.979,0,-9,-9,2021,10,1,56,55,1,1,0,4.093905,4.093905,0,0,0,0,0,0,0,0,0,0,0,2.9611595,0,37.15,58.69,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,1183,0,0,0,0,0,0,1749.5182 +8278,10058,18012,18013,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.7980242,7.5923486,28,-5,138.81056,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3868742,7.7520194,48.33,38.96,39.06,49.8,6.666666666666667,2,3,0,0,0,8,4,1,473,1944213.9,618779.5,1410039.3,0,6714.6035,0,2517.3271 +8278,10058,18013,18012,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.0423489,7.278944,2,5,-207.46335,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0595665,7.6440663,39.06,49.8,48.33,38.96,6.666666666666667,1,1,0,0,0,8,4,1,473,1944213.9,618779.5,1410039.3,0,6714.6035,0,2517.3271 +8279,10059,18014,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.6570311,7.6201935,0,0,0,-945.54315,0,3,3,2021,6,0,35,30,1,0,0,6.8197522,6.8197522,0,0,0,0,0,0,0,0,0,0,0,4.5053368,0,55.36,51.57,-9,-9,8.333333333333334,2,3,0,0,13,8,3,1,81,375512.53,0,530146.44,119743.76,799.08655,7349.3228,1040.1273 +8280,10060,18015,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1635771,8.2443676,0,0,0,-1030.8867,0,2,2,2021,11,0,54,60,1,0,0,8.7839041,8.7839041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,1,8,4,4,1,307,82468.047,133505.05,110126.63,92015.516,0,0,759.37494 +8281,10061,18016,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.6745076,7.7742305,0,0,0,-1003.8149,0,-9,-9,2021,10,0,37,37,1,0,0,7.8533263,7.8533263,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.07,55.17,-9,-9,5,1,1,0,0,8,2,3,0,312,63698.223,-79544.227,0,0,0,0,1397.1924 +8282,10062,18017,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4241896,7.2235742,0,0,-992.50848,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4197712,7.4109793,54.2,57.49,-9,-9,10,1,1,0,0,3,5,3,1,1012,358203,356146.47,204761.45,0,0,0,1552.9795 +8283,10063,18018,-9,18022,18023,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.9929,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18019,-9,18022,18023,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.9742,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18020,-9,18022,18023,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.37213,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18021,-9,18022,18023,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.03687,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18022,18023,-9,-9,1,0,42,0,4,0,2,2,-9,0,3,8.4031143,8.399745,0,11,6,74.149323,0,2,2,2021,11,0,37,37,1,0,0,11.221619,11.221619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.92,49.51,6.666666666666667,1,1,0,0,8,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18023,18022,-9,-9,1,1,36,0,4,0,1,1,-9,0,2,8.0608616,7.9325752,0,11,-6,-54.507225,0,1,2,2021,13,3,38,38,1,3,0,7.8537736,7.8537736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.92,49.51,46.08,57.2,5,1,1,0,1,10,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8284,10064,18024,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.9910579,8.0313082,0,0,0,-1047.1716,0,1,1,2021,11,0,15,25,1,0,0,18.366943,18.366943,0,0,0,0,0,0,0,0,1,1,0,4.1918478,0,49.61,54.24,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,231,1703226.9,875139.31,435267.22,0,0,0,1462.7189 +8285,10065,18025,18026,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8860769,9.0097017,0,4,1,-25.251137,0,-9,-9,2021,12,1,45,45,1,1,0,16.762793,16.762793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,32.9,49.4,6.666666666666667,1,1,0,0,10,10,5,1,670,547788.63,128283.88,534454.88,154421.95,8458.042,0,4609.7295 +8285,10065,18026,18025,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.1667204,8.3555365,0,4,-1,-116.63547,0,2,3,2021,18,5,40,40,1,5,0,9.3352766,9.3352766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.9,49.4,46.67,55.57,5,1,1,0,1,10,10,5,1,670,547788.63,128283.88,534454.88,154421.95,8458.042,0,4609.7295 +8286,10066,18027,18028,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.8361669,7.615293,0,6,-1,-170.80653,0,2,2,2021,11,0,40,42,1,0,0,7.6385469,7.6385469,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,56.47,59.4,1.666666666666667,1,1,0,0,6,6,5,1,2191,259332.11,82778.883,102052.81,84664.023,0,2265.6306,3722.5962 +8286,10066,18028,18027,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.9995975,8.9679365,0,6,1,-69.804848,0,2,2,2021,12,0,45,48,1,0,0,18.589882,18.589882,.05,.05,0,0,0,0,0,0,0,0,0,2.774765,0,56.47,59.4,48.28,60.18,8.333333333333334,1,1,0,0,9,6,5,1,2191,259332.11,82778.883,102052.81,84664.023,0,2265.6306,3722.5962 +8287,10067,18029,-9,18031,18032,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.77997,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18030,-9,18031,18032,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6135,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18031,18032,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,4.6871052,4.6343603,0,7,-2,42.581795,0,-9,-9,2021,7,0,45,50,1,0,0,.28928927,.28928927,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.18,60.48,8.333333333333334,1,1,0,0,8,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18032,18031,-9,-9,1,1,37,0,3,0,1,1,-9,0,3,8.6918736,8.7355928,0,7,2,178.71432,0,2,1,2021,14,2,35,35,1,2,0,17.151724,17.151724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.18,60.48,57.16,56.15,5,1,1,0,0,8,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18033,-9,18031,18032,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.9259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8288,10068,18034,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,0,0,-860.69165,0,-9,2,2021,35,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.55,37.7,-9,-9,1.666666666666667,1,1,1,0,12,4,1,0,1836,-182328.94,0,0,0,11186.482,0,91.098778 +8289,10069,18035,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.4727235,7.738625,6.4575381,0,0,-901.6214,0,1,2,2021,9,0,10,0,1,0,0,14.412118,14.412118,.05,.05,0,0,0,0,0,0,1,1,0,6.3538547,0,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8289,10069,18036,-9,18035,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.3921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8289,10069,18037,-9,18035,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.43378,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8290,10070,18038,-9,18039,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.18921,-9,1,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,924.5,1771091,635312.13,569068.38,0,0,0,1860.51 +8290,10070,18039,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.1170835,8.1541872,0,0,0,-1000.9073,0,3,2,2021,10,0,46,40,1,0,0,10.031297,10.031297,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,8,5,3,1,924.5,1771091,635312.13,569068.38,0,0,0,1860.51 +8290,10071,18040,-9,18039,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-959.724,0,1,-9,2021,11,3,0,29,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3784211,0,18.44,63.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,1409,89979,0,0,0,0,973.60522,-503.37057 +8291,10072,18041,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.3132906,8.3489275,0,0,0,-1007.4786,0,-9,-9,2021,8,0,78,0,1,0,0,6.252286,6.252286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,9,4,0,173,70535.281,1006.8309,243245.08,98759.961,0,0,1336.6488 +8292,10073,18042,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4079914,8.2222281,0,0,0,-1082.4366,0,2,2,2021,12,0,35,38,1,0,0,9.9832535,9.9832535,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,309,-33893.309,-3577.8474,0,0,0,0,621.86108 +8293,10074,18043,18044,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,7.2148037,7.5430636,9,8,-111.88373,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5733123,7.2935996,53.53,29.67,60.44,36.05,5,1,1,0,0,0,12,2,1,1273.5,426009.06,280838.13,128287.59,0,0,0,2192.7485 +8293,10074,18044,18043,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,9,-8,-27.020849,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93671995,0,60.44,36.05,53.53,29.67,1.666666666666667,1,1,0,0,0,12,2,1,1273.5,426009.06,280838.13,128287.59,0,0,0,2192.7485 +8294,10075,18045,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.2836299,7.4700546,0,0,-806.58081,0,2,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,3.8954952,0,20.860586,0,1,1,0,7.9224839,7.4340057,56.75,25.8,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,942,987567.75,336667.19,608091.88,0,0,0,2969.9155 +8295,10076,18046,18049,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.2944746,8.0698862,6.5404639,7,4,47.953529,0,2,-9,2021,8,0,23,23,1,0,0,12.094976,12.094976,0,0,0,0,0,0,0,0,1,0,1,6.8175116,0,45.15,57.46,41.76,59.08,8.333333333333334,1,1,0,0,11,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18047,-9,18046,18049,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.33112,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18048,-9,18046,18049,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4398,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18049,18046,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.9797282,7.9409513,6.4010572,7,-4,8.6837969,0,-9,-9,2021,8,0,38,37,1,0,0,8.3237152,8.3237152,.05,.05,0,0,0,0,0,0,1,0,1,6.5625367,0,41.76,59.08,45.15,57.46,6.666666666666667,1,1,0,0,8,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8296,10077,18050,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.6915617,7.7841101,0,0,-958.4032,0,3,3,2021,7,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.559072,59.14,52.5,-9,-9,1.666666666666667,1,1,0,0,10,10,3,1,586,461426.22,489008.44,119607.69,0,0,0,1471.2255 +8297,10078,18051,18052,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.4937754,8.0446758,0,8,-5,-43.883022,0,2,3,2021,6,0,37,39,1,0,0,14.566325,14.566325,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,339.5,418579.91,293459.72,208222.25,30858.469,9489.5244,0,3492.7036 +8297,10078,18052,18051,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.9781671,8.0806952,0,8,5,-81.125664,0,3,3,2021,6,0,36,40,1,0,0,9.5347919,9.5347919,.05,.05,0,0,0,0,0,0,0,0,0,1.2354149,0,60.12,54.8,58.05,54.52,8.333333333333334,1,1,0,0,9,12,5,1,339.5,418579.91,293459.72,208222.25,30858.469,9489.5244,0,3492.7036 +8298,10079,18053,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,6.5646162,7.013278,0,0,0,-964.86554,0,3,-9,2021,9,0,16,20,1,0,0,6.1172509,6.1172509,0,0,0,0,0,0,0,0,1,1,0,0,0,42.41,56.11,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,328,-234876.34,0,0,0,0,0,826.73444 +8299,10080,18054,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,2.8866148,3.1013615,0,0,0,-1100.0077,0,2,2,2021,12,0,12,12,1,0,0,.17421934,.17421934,0,0,0,0,0,0,0,2,0,0,0,0,0,32.48,59.49,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,2396,345181.97,0,118429.13,0,5251.3271,0,-264.0433 +8300,10081,18055,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.8454294,7.215735,0,0,-994.14404,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3044314,67.92,41.85,-9,-9,10,1,1,0,0,0,12,3,1,340,381007.66,212671.06,94273.531,0,9110.4736,0,1452.3698 +8301,10082,18056,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6841221,8.6465063,0,0,0,-929.42133,0,1,1,2021,9,1,42,0,1,1,0,17.342653,17.342653,.05,.05,0,0,0,0,0,0,0,0,0,7.5042753,0,58.07,46.29,-9,-9,8.333333333333334,4,2,0,0,5,9,5,0,84,-32410.334,13739.209,0,0,0,0,2383.8591 +8302,10083,18057,18058,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.537076,8.6728134,0,34,2,-19.736521,0,3,2,2021,8,0,45,40,1,0,0,15.076628,15.076628,.05,.05,0,0,0,0,0,0,1,1,0,3.3063288,0,50.43,53.69,54.1,59.11,8.333333333333334,1,1,0,0,12,4,5,1,152.5,872243.63,729673.38,67201.719,0,0,0,2831.8003 +8302,10083,18058,18057,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.728209,7.3531709,0,34,-2,-166.23514,0,2,2,2021,6,0,20,20,1,0,0,9.0845041,9.0845041,.05,.05,0,0,0,0,0,7,1,1,0,3.1650302,0,54.1,59.11,50.43,53.69,10,1,1,0,0,12,4,5,1,152.5,872243.63,729673.38,67201.719,0,0,0,2831.8003 +8303,10084,18059,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.238081,6.4258828,0,0,-871.76849,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1058497,61.62,34.93,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,780,343202.69,24998.604,288245.5,28581.359,1676.4481,0,1011.6434 +8304,10085,18060,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1021.7588,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.73,37.22,-9,-9,5,1,1,0,0,0,2,1,1,1985,123749.55,0,0,0,0,0,1049.0314 +8305,10086,18061,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.0522795,9.1751404,0,0,0,-963.97815,-9,-9,-9,2021,6,0,42,0,1,0,0,24.852015,24.852015,.05,.05,0,0,0,0,0,0,0,0,0,2.5146399,0,58.55,51.64,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,1140,135509.2,137133.13,0,0,0,0,3452.8003 +8306,10087,18062,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1028.9995,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,28.484041,0,254.37231,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,10,2,0,478,59876.125,0,31121.783,0,0,0,3055.7219 +8307,10088,18063,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,7.059454,7.8860712,0,0,-1020.0952,0,2,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5757189,31.25,27.77,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,685,176274.5,209591.3,0,0,0,0,1905.4672 +8308,10089,18064,18065,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,9.269537,8.932766,0,26,-5,-62.345245,0,2,3,2021,15,5,38,38,1,5,0,25.367788,25.367788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,57.54,42.36,6.666666666666667,1,1,0,0,10,11,5,1,1362,558662.44,516630.5,239371.67,24665.672,9962.0918,1928.6594,4486.7979 +8308,10089,18065,18064,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.2369108,8.0804634,0,26,5,-110.56539,0,3,2,2021,6,0,38,38,1,0,0,13.59001,13.59001,.05,.05,0,0,0,0,0,0,1,1,0,3.2341399,0,57.54,42.36,43.95,53.15,8.333333333333334,1,1,0,0,11,11,5,1,1362,558662.44,516630.5,239371.67,24665.672,9962.0918,1928.6594,4486.7979 +8308,10090,18066,-9,18064,18065,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-936.06061,-9,1,3,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.82,57.72,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,152,-3209.4211,0,0,0,0,0,0 +8309,10091,18067,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3263016,8.5690145,0,0,0,-999.04895,0,3,3,2021,6,0,41,41,1,0,0,13.372125,13.372125,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,11,1,4,1,824,-40305.777,100937.31,0,0,9960.9395,4395.084,1643.5316 +8310,10092,18068,18069,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.1303196,8.0783558,60,3,-9.830286,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9360309,8.3752356,55.58,52.99,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,432.5,1127065.5,674270,165482,0,0,0,2861.6582 +8310,10092,18069,18068,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,60,-3,-210.34995,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1976414,0,54.2,57.49,55.58,52.99,10,1,1,0,0,0,10,3,1,432.5,1127065.5,674270,165482,0,0,0,2861.6582 +8311,10093,18070,18071,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,4,-1,-48.119507,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,40.83,27.59,54,53,6.666666666666667,2,3,0,0,0,6,3,1,1257.5,110053.67,-68078.391,111618.75,0,0,0,2243.179 +8311,10093,18071,18070,-9,-9,1,1,61,0,0,0,3,3,-9,1,4,8.4451036,8.2522964,0,4,1,42.306221,0,-9,-9,2021,11,1,44,0,1,1,0,12.13633,12.13633,.05,.05,0,0,0,0,0,27,1,1,0,0,0,54,53,40.83,27.59,6.666666666666667,2,3,0,0,7,6,3,1,1257.5,110053.67,-68078.391,111618.75,0,0,0,2243.179 +8311,10094,18072,-9,18070,18071,1,1,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1034.7479,-9,3,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.58910751,0,49,58,-9,-9,7,2,3,0,0,0,6,1,1,3257,-77422.461,0,0,0,0,0,851.81 +8311,10095,18073,-9,18070,18071,1,1,28,0,0,0,1,1,-9,0,5,8.6877174,8.6552019,0,0,0,-1092.0558,0,3,3,2021,5,0,40,37,1,0,1,14.592266,14.592266,0,0,0,0,0,0,0,2,1,1,0,2.2023385,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,4,6,5,1,311,117043.55,0,0,0,0,0,2881.8225 +8312,10096,18074,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5377641,6.4922776,0,0,-1006.3717,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0838199,6.728549,58.15,52.91,-9,-9,10,1,1,0,0,0,10,2,1,2288,83665.398,249773.92,0,0,0,0,1546.8422 +8313,10097,18075,18076,-9,-9,1,1,91,0,0,0,1,1,-9,0,1,0,6.150281,6.1196976,49,16,-155.53101,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.4829679,5.7119827,47.3,15.55,34.84,29.3,5,1,1,0,0,0,4,3,1,594.5,709146.13,392170.56,130349.97,0,0,0,3377.9053 +8313,10097,18076,18075,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.8209763,8.2659063,47,-16,-29.553556,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,.82061452,4.897191,28.673124,120,1,1,0,0,8.1220274,34.84,29.3,47.3,15.55,1.666666666666667,1,1,0,0,0,4,3,1,594.5,709146.13,392170.56,130349.97,0,0,0,3377.9053 +8314,10098,18077,18078,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8780079,8.0342245,0,1,0,-118.56187,-9,2,2,2021,23,10,40,0,1,10,0,9.0840044,9.0840044,0,0,0,0,0,0,0,0,0,0,0,0,0,17.63,68.89,41.07,60.93,5,1,1,0,0,8,2,5,0,935,7034.4531,21416.633,176514.33,91809.891,3167.0269,0,3384.6345 +8314,10098,18078,18077,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.8826542,8.8067617,0,1,0,-110.09756,-9,-9,-9,2021,6,0,40,0,1,0,0,17.160179,17.160179,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,17.63,68.89,8.333333333333334,1,1,0,0,0,2,5,0,935,7034.4531,21416.633,176514.33,91809.891,3167.0269,0,3384.6345 +8315,10099,18079,-9,18080,18081,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.2359,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8315,10099,18080,18081,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.1646252,8.2742815,0,9,-8,46.698662,0,2,2,2021,14,2,25,25,1,2,0,16.377613,16.377613,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.37,49.31,60.44,36.05,8.333333333333334,1,1,0,0,11,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8315,10099,18081,18080,-9,-9,1,1,50,0,1,0,2,2,-9,1,2,8.921525,8.9957228,0,9,8,-25.096998,0,2,2,2021,5,0,37,35,1,0,0,23.568733,23.568733,.05,.05,0,0,0,0,0,0,1,1,0,7.2959065,0,60.44,36.05,48.37,49.31,8.333333333333334,1,1,0,0,11,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8316,10100,18082,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.2598257,8.1920137,0,1,6,-62.723606,0,3,3,2021,6,0,40,40,1,0,0,11.867601,11.867601,.05,.05,0,0,0,0,0,0,0,0,0,4.1682377,0,57.06,57.76,50,57,8.333333333333334,1,1,0,0,9,11,5,1,599,122688.6,-16775.266,129279.59,46870.57,0,0,1685.0532 +8316,10101,18083,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7711697,8.3570671,0,1,-6,11.372665,-9,-9,-9,2021,10,0,40,0,1,1,0,17.291079,17.291079,.05,.05,0,0,0,0,0,0,0,0,0,4.4460201,0,50,57,57.06,57.76,7,1,1,0,0,1,11,5,1,279,-25125.434,97405.797,0,0,0,0,659.039 +8317,10102,18084,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9191918,8.5222473,5.7287254,0,0,-1006.5032,0,2,2,2021,6,0,38,38,1,0,0,12.143933,12.143933,.05,.05,0,0,0,0,0,7,1,1,0,5.1042209,5.8567662,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,57,407530.34,46469.324,0,0,0,0,2074.0361 +8318,10103,18085,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.7068467,7.3692522,0,0,0,-1007.1282,0,2,2,2021,26,11,28,28,1,11,0,9.7172203,9.7172203,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,1,11,12,3,0,187,6028.9023,29486.428,0,0,1270.6411,2835.5811,1519.6113 +8318,10103,18086,-9,18085,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.7217,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,187,6028.9023,29486.428,0,0,1270.6411,2835.5811,1519.6113 +8319,10104,18087,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.4397593,7.4234056,0,0,-1094.3959,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.9951839,7.4178467,61.11,48.86,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,264,846136.5,277470.72,253618.8,0,0,0,3168.4404 +8320,10105,18088,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,5.9555345,5.8830981,3.937438,0,0,-973.14697,-9,2,2,2021,6,0,8,0,1,0,0,7.8294449,7.8294449,0,0,0,0,0,0,0,0,0,0,0,5.0523667,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,10,2,0,2539,101533.03,0,0,0,0,0,838.50922 +8321,10106,18089,18090,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,42,-5,-86.426041,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.46,43.33,57.73,54.53,10,1,1,0,0,0,6,5,1,398.5,3098565,2000450.5,536836.5,0,0,0,6163.6191 +8321,10106,18090,18089,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,10.012098,10.124434,8.0441504,42,5,-70.127525,0,2,2,2021,10,0,47,47,1,0,0,35.725475,35.725475,0,0,0,0,0,0,0,0,0,0,0,6.2626762,8.7088184,57.73,54.53,61.46,43.33,8.333333333333334,1,1,0,0,10,6,5,1,398.5,3098565,2000450.5,536836.5,0,0,0,6163.6191 +8321,10107,18091,-9,18089,18090,1,0,19,0,0,1,2,0,0,0,4,0,6.6274276,6.155961,0,0,-971.62988,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0302691,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,1817,-168130.36,0,0,0,0,0,501.07343 +8322,10108,18092,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3883162,9.3398695,0,0,0,-1028.5264,0,1,2,2021,6,0,40,40,1,0,0,32.555332,32.555332,.05,.05,0,0,0,0,0,0,0,0,0,6.1827807,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,346,880610,659888.19,295369.34,73303.906,13780.126,3231.0364,2653.6621 +8323,10109,18093,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.4706135,8.4728937,0,0,-1020.1466,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9272261,8.2279987,47.7,47.03,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,585,1032259.1,309523.97,477096.88,0,4284.1187,1171.0286,3538.1897 +8324,10110,18094,18095,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,9,-4,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,1.5415514,0,35.55,50.24,27.56,30.95,5,4,2,0,0,0,11,1,0,470,47834.797,0,0,0,2996.3491,0,2281.1633 +8324,10110,18095,18094,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,9,4,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.56,30.95,35.55,50.24,4,1,1,0,0,0,11,1,0,470,47834.797,0,0,0,2996.3491,0,2281.1633 +8324,10111,18096,-9,18095,18094,1,1,22,0,0,0,2,2,-9,0,3,8.3209467,8.3990126,0,0,0,-1040.5127,-9,2,2,2021,11,1,40,0,1,1,1,10.021445,10.021445,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,807,49537.324,-65550.906,0,0,1226.6926,0,2127.9634 +8325,10112,18097,18098,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.5769033,9.6709118,0,9,-3,36.793186,0,-9,-9,2021,6,0,50,85,1,0,0,38.900047,38.900047,.05,.05,0,0,0,0,0,0,1,1,0,.8087371,0,57.16,56.15,56.34,53.98,8.333333333333334,1,1,0,0,11,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18098,18097,-9,-9,1,1,52,0,2,0,2,2,-9,0,5,8.8729534,8.3993397,0,9,3,-16.099791,0,2,2,2021,11,0,82,40,1,0,0,8.6473389,8.6473389,.05,.05,0,0,0,0,0,0,1,1,0,1.7398092,0,56.34,53.98,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18099,-9,18097,18098,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.77826,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18100,-9,18097,18098,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.8268,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8326,10113,18101,18102,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7805653,5.869329,48,-4,51.613312,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,1.5736271,30.02808,16.846903,0,1,1,0,5.897047,5.691927,63.17,32.94,54.02,37.2,6.666666666666667,1,1,0,0,4,9,2,1,345,495443.19,229692.34,347323.75,0,0,0,2780.7344 +8326,10113,18102,18101,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7774873,6.7222767,6,4,-25.796618,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.373415,6.8483186,54.02,37.2,63.17,32.94,8.333333333333334,1,1,0,0,0,9,2,1,345,495443.19,229692.34,347323.75,0,0,0,2780.7344 +8326,10114,18103,-9,18101,18102,1,1,41,0,0,0,2,2,-9,0,4,8.0111237,8.0606661,0,0,0,-944.66638,0,2,3,2021,11,1,37,37,1,1,0,9.7409935,9.7409935,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,573,0,0,0,0,0,0,1072.2018 +8327,10115,18104,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.355814,8.0781622,7.314908,0,0,-1152.7854,0,3,3,2021,11,0,12,22,1,2,0,15.093467,15.093467,.05,.05,.05,0,0,0,0,0,1,1,0,4.0741925,7.5877628,32.23,48.68,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,706,158925.41,136288.11,0,0,0,0,1613.5616 +8328,10116,18105,18106,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.101819,7.3070216,0,5,12,8.8875532,0,3,3,2021,7,0,30,40,1,0,0,5.4185748,5.4185748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.78,46.93,53.05,52.71,8.333333333333334,3,4,0,0,7,6,4,0,645,129381.72,32864.805,0,0,0,0,1908.1758 +8328,10116,18106,18105,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,7.8472581,7.9065399,0,5,-12,-76.78978,0,-9,-9,2021,10,1,37,40,1,1,0,8.5169935,8.5169935,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,42.78,46.93,8.333333333333334,3,4,0,0,3,6,4,0,645,129381.72,32864.805,0,0,0,0,1908.1758 +8329,10117,18107,18108,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,49,0,-60.642159,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20225169,0,46.55,58.3,60.69,37.28,8.333333333333334,1,1,0,0,0,6,2,0,692.5,117033.98,63496.352,0,0,0,0,1838.6289 +8329,10117,18108,18107,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,5.1054201,5.2855802,49,9,82.375504,-9,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9035239,5.197741,60.69,37.28,46.55,58.3,1.666666666666667,1,1,0,0,0,6,2,0,692.5,117033.98,63496.352,0,0,0,0,1838.6289 +8330,10118,18109,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.4701986,7.8756585,0,0,0,-1119.1622,0,3,2,2021,7,0,50,50,1,0,0,4.6047964,4.6047964,.05,.05,0,0,0,0,0,0,0,0,0,3.2507584,0,57.33,53.46,-9,-9,10,1,1,0,0,13,6,3,1,277,106349.05,256765.91,0,0,0,0,282.24957 +8331,10119,18110,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,7.6637402,7.1617842,0,0,-881.73779,0,-9,-9,2021,28,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6012659,16.04,23.99,-9,-9,0,1,1,0,1,0,12,3,0,503,972325.63,419151.97,162821.69,0,0,0,972.27313 +8332,10120,18111,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.5153499,6.711688,0,0,-988.79468,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.7218731,7.1759725,54.95,44.79,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,909,128602.71,197596.5,319443.72,264625.97,0,0,663.20978 +8333,10121,18112,18113,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7943335,8.9719372,0,13,0,97.335518,0,2,2,2021,13,3,43,45,1,3,0,18.172569,18.172569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.06,46.76,54.19,38.77,8.333333333333334,1,1,0,0,9,8,5,1,633,157696.94,35611.773,657380.69,513178.69,0,0,4803.0801 +8333,10121,18113,18112,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.0399542,8.8656006,0,7,0,29.313927,0,2,2,2021,5,1,40,40,1,1,0,18.986305,18.986305,.05,.05,0,0,0,0,0,0,0,0,0,2.3243647,0,54.19,38.77,54.06,46.76,8.333333333333334,1,1,0,0,6,8,5,1,633,157696.94,35611.773,657380.69,513178.69,0,0,4803.0801 +8334,10122,18114,18115,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,8.3147888,8.4156637,0,17,4,-72.852615,0,1,1,2021,8,0,40,40,1,0,0,10.393653,10.393653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.19,51.24,30.67,65.95,10,1,1,0,0,15,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10122,18115,18114,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.4821367,8.5671034,0,17,-4,55.831493,0,1,2,2021,24,12,34,34,1,12,0,15.638157,15.638157,.05,.05,0,0,0,0,0,27,1,1,0,0,0,30.67,65.95,53.19,51.24,8.333333333333334,1,1,0,0,13,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10122,18116,-9,18115,18114,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-958.03577,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10123,18117,-9,18115,18114,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1077.8027,-9,1,3,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37,58.52,-9,-9,5,1,1,0,0,0,13,1,1,451,0,0,0,0,0,0,0 +8335,10124,18118,18119,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,3.8520255,4.1605315,10,2,-8.3273067,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.228632,4.2104845,50.05,55.41,34.47,19.62,6.666666666666667,1,1,0,0,6,10,2,1,316.5,243264.77,-19244.092,283308.91,0,0,0,1769.3987 +8335,10124,18119,18118,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,10,-2,-32.764385,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,41.51564,0,0,1,1,0,0,0,34.47,19.62,50.05,55.41,1.666666666666667,1,1,0,0,3,10,2,1,316.5,243264.77,-19244.092,283308.91,0,0,0,1769.3987 +8336,10125,18120,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.8699713,6.3691859,0,0,-1054.801,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1846504,6.425488,57.06,29.28,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,936,119878.08,40789.215,0,0,0,-492.23602,1231.5815 +8337,10126,18121,18122,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.9064822,8.1785002,0,6,-2,-56.19352,0,3,2,2021,8,1,35,35,1,1,0,13.174094,13.174094,.05,.05,0,0,0,0,0,0,0,0,0,7.1773958,0,52,54.51,50.43,53.69,8.333333333333334,1,1,0,0,7,11,5,1,1070.5,1955290.4,1509238.3,184837.98,10731.883,-1017.4952,1109.0728,3866.3594 +8337,10126,18122,18121,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7372904,8.9051018,7.0690708,6,2,-50.761665,0,3,2,2021,18,6,35,35,1,6,0,15.827366,15.827366,.05,.05,0,0,0,0,0,0,0,0,0,7.3520126,7.0530958,50.43,53.69,52,54.51,6.666666666666667,1,1,0,0,7,11,5,1,1070.5,1955290.4,1509238.3,184837.98,10731.883,-1017.4952,1109.0728,3866.3594 +8338,10127,18123,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.1321173,4.323987,0,0,-896.80585,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9581039,4.2829566,64.73,28.09,-9,-9,6.666666666666667,1,1,0,1,0,5,2,0,436,86372.016,74532.281,249026.69,0,0,0,1231.696 +8339,10128,18124,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,0,7.0603318,6.7372708,0,0,-1063.7809,0,3,2,2021,12,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7129159,0,31.49,33.59,-9,-9,8.333333333333334,2,3,0,0,5,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8339,10128,18125,-9,18124,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1125.7839,-9,2,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.16,44.25,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8339,10128,18126,-9,18124,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.51654,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8340,10129,18127,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-871.53119,0,2,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,26.77,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,2077,-71122.586,0,0,0,0,2184.2732,423.82968 +8341,10130,18128,18129,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.7855282,8.595252,0,8,3,39.887096,0,-9,-9,2021,8,0,39,39,1,0,0,19.867491,19.867491,.05,.05,0,0,0,0,0,0,0,0,0,2.0501523,0,54.1,59.11,54.1,49.39,10,1,1,0,0,9,9,5,1,682.5,24667.912,34458.465,0,0,14127.082,0,3352.2048 +8341,10130,18129,18128,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.744751,7.5685887,0,37,-3,3.8382766,0,3,3,2021,12,0,25,25,1,0,0,10.794643,10.794643,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,49.39,54.1,59.11,8.333333333333334,1,1,0,0,9,9,5,1,682.5,24667.912,34458.465,0,0,14127.082,0,3352.2048 +8341,10131,18130,-9,18129,18128,1,0,27,0,0,0,2,2,-9,0,3,7.7169743,7.8848381,0,0,0,-960.13037,0,2,2,2021,15,5,40,36,1,5,1,5.8912377,5.8912377,0,0,0,0,0,0,0,0,0,0,0,0,0,47.19,53.98,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,806,135963.08,0,0,0,0,0,1065.4951 +8342,10132,18131,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2664285,7.1285214,0,0,0,-1088.0455,0,2,2,2021,25,10,20,40,1,10,0,7.066606,7.066606,0,0,0,0,0,0,0,0,1,1,0,0,0,29.48,62.52,-9,-9,1.666666666666667,1,1,0,1,5,4,3,0,546,43129.074,0,0,0,0,0,-232.24443 +8343,10133,18132,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,6.7913265,6.9633164,0,0,-884.64844,0,2,2,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,7.7987385,0,62.397964,0,1,1,0,0,6.3437047,40.25,19.86,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1561,129435.03,6675.4097,244763.28,0,0,0,490.60443 +8344,10134,18133,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,7.2200818,6.801085,0,0,-1052.2861,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8548856,7.0814047,54,51,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,2050,632711.06,366148.31,238432.63,0,0,0,1090.2262 +8345,10135,18134,-9,-9,-9,1,1,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-857.79224,-9,-9,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.6,49.19,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,520,56409.559,0,0,0,0,0,801.50909 +8346,10136,18135,18136,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.188201,8.4504375,0,21,2,67.555618,0,3,3,2021,12,0,45,44,1,0,0,9.696414,9.696414,0,0,0,0,0,0,0,14.5,0,0,0,0,0,38.86,59.06,45.09,52.41,5,1,1,0,0,9,1,4,1,818,264703.53,-31260.447,171510.55,41094.402,0,0,3062.3989 +8346,10136,18136,18135,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.938396,8.013545,0,21,-2,119.0382,0,2,2,2021,11,0,37,42,1,0,0,12.507936,12.507936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.09,52.41,38.86,59.06,8.333333333333334,1,1,0,0,6,1,4,1,818,264703.53,-31260.447,171510.55,41094.402,0,0,3062.3989 +8347,10137,18137,18138,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,58,-6,93.051987,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8855057,0,57.33,53.46,47.94,53.79,10,1,1,0,0,10,1,2,1,747,230132.19,113814.26,151760.09,0,0,0,1898.7249 +8347,10137,18138,18137,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.7467308,6.9927411,58,6,-34.424026,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.78021,6.9517112,47.94,53.79,57.33,53.46,10,1,1,0,0,0,1,2,1,747,230132.19,113814.26,151760.09,0,0,0,1898.7249 +8348,10138,18139,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.4876823,6.7521849,0,0,-1023.176,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.833437,7.0334864,64.23999999999999,44.83,-9,-9,10,1,1,0,0,1,13,2,1,3015,74931.055,85081.43,0,0,5931.752,0,650.02075 +8349,10139,18140,18141,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0999203,8.0256195,0,1,-4,109.38461,-9,-9,-9,2021,16,4,49,0,1,4,0,8.0368986,8.0368986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.59,34.4,27.45,63.27,3.333333333333333,1,1,0,0,1,2,4,0,554,-7221.2285,-12225.683,130706.16,111099.67,0,0,2643.9766 +8349,10139,18141,18140,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9205861,8.0949593,0,1,4,-76.53862,0,3,3,2021,13,2,45,52,1,2,0,7.372519,7.372519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,45.59,34.4,3.333333333333333,1,1,0,0,4,2,4,0,554,-7221.2285,-12225.683,130706.16,111099.67,0,0,2643.9766 +8350,10140,18142,18143,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-4,81.967125,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9294126,0,58.9,45.74,62,52.77,8.333333333333334,1,1,0,0,0,2,2,1,1367,390076.16,152994.41,153580.28,0,0,0,2918.4482 +8350,10140,18143,18142,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.8543282,7.4504118,58,4,-15.676502,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9615083,7.2097416,62,52.77,58.9,45.74,8.333333333333334,1,1,0,0,0,2,2,1,1367,390076.16,152994.41,153580.28,0,0,0,2918.4482 +8351,10141,18144,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5198355,6.5253296,0,0,-848.64935,0,2,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.0084839,6.086514,50.37,55.06,-9,-9,3.333333333333333,1,1,0,0,7,11,2,1,698,281781.5,0,204664.73,0,0,0,1013.8 +8352,10142,18145,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9600282,6.4751768,0,0,-1025.6724,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3617954,41.34,56.62,-9,-9,10,1,1,0,0,0,12,2,0,2729,47582.121,44789.957,79575.695,0,0,0,287.28845 +8353,10143,18146,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.3595614,7.2604313,0,0,-951.56128,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3999739,6.645927,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,214,15170.079,0,0,0,0,0,392.46393 +8354,10144,18147,18148,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.7215414,8.2695351,0,7,-1,64.077118,0,3,3,2021,7,0,55,60,1,0,0,13.328242,13.328242,.05,.05,0,0,0,0,0,0,0,0,0,1.4263784,0,67.33,43.48,44.08,59.33,8.333333333333334,1,1,0,0,7,9,5,1,311,382424.81,48274.156,240780.16,44071.406,0,0,3848.8179 +8354,10144,18148,18147,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1767473,8.3116579,0,37,1,74.826401,0,3,3,2021,13,1,36,36,1,1,0,11.722289,11.722289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,67.33,43.48,6.666666666666667,1,1,0,1,10,9,5,1,311,382424.81,48274.156,240780.16,44071.406,0,0,3848.8179 +8355,10145,18149,18150,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,9.2229128,9.3965416,0,16,1,-63.98579,0,2,3,2021,9,0,35,30,1,0,0,34.832626,34.832626,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,48.98,49,50,5,2,3,0,0,5,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10145,18150,18149,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.1360455,8.4842625,0,12,-1,75.584938,-9,-9,-9,2021,11,0,70,0,1,2,0,6.674396,6.674396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,57.76,48.98,7,2,3,0,0,1,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10145,18151,-9,18149,18150,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.8999,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10146,18152,-9,18149,18150,1,1,26,0,1,0,1,1,-9,0,4,8.548296,8.2270193,0,0,0,-1078.2372,0,2,2,2021,11,0,35,0,1,2,1,13.592861,13.592861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,400,-50717.797,29182,0,0,0,0,2049.3367 +8356,10147,18153,18154,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.3734932,8.0923462,0,17,4,-34.805168,0,3,3,2021,9,0,40,40,1,1,0,9.130928,9.130928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,38.01,61.37,8,2,3,0,0,1,7,5,1,939.5,2213568.5,1030306.3,621509,0,0,0,4439.6084 +8356,10147,18154,18153,-9,18156,1,0,50,0,0,0,1,1,-9,0,5,8.8901234,9.0274429,0,16,-4,-19.458954,0,3,3,2021,20,8,64,60,1,8,0,13.854712,13.854712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.01,61.37,54,54,3.333333333333333,2,3,0,0,8,7,5,1,939.5,2213568.5,1030306.3,621509,0,0,0,4439.6084 +8356,10148,18155,-9,18154,18153,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-831.17883,-9,1,1,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,0,7,1,1,625,-88898.82,0,0,0,0,0,447.90622 +8356,10149,18156,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,0,0,0,0,-994.1203,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5.7418127,0,54,46,-9,-9,7,4,6,0,0,0,7,1,1,500,-179925.08,0,0,0,0,0,637.66156 +8356,10150,18157,-9,18154,18153,1,1,26,0,0,0,1,1,-9,0,4,7.9106874,7.5981464,0,0,0,-950.29095,0,1,1,2021,10,0,40,37,1,1,1,7.8656206,7.8656206,0,0,0,0,0,0,0,0,0,0,0,7.0063858,0,50,58,-9,-9,7,2,3,0,0,1,7,3,1,481,-109200.66,0,0,0,0,0,1205.7174 +8357,10151,18158,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.4837179,6.4424624,0,0,-970.45111,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7506223,6.8597836,56.39,40.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1008,668737.19,106796.92,388972.34,0,2377.5247,-421.24139,1584.2344 +8358,10152,18159,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,5.9182582,6.1881294,0,0,-904.66968,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4193451,6.2452655,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1740,420053.84,0,417885.53,0,0,0,276.71533 +8359,10153,18160,18161,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,-109.02474,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,43.93,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,1118,629126.5,314837.34,397069.59,0,0,0,2688.8469 +8359,10153,18161,18160,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.9768949,7.653429,46,4,-.44225538,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3010273,7.7561822,57.33,53.46,45.22,43.93,8.333333333333334,1,1,0,0,0,5,3,1,1118,629126.5,314837.34,397069.59,0,0,0,2688.8469 +8360,10154,18162,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,0,0,0,0,0,-1045.9437,0,2,2,2021,21,10,0,30,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.67,62.26,-9,-9,6.666666666666667,1,1,1,0,12,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18163,-9,18162,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-914.64307,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18164,-9,18162,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6321,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18165,-9,18162,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.3386,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8361,10155,18166,-9,-9,-9,1,0,100,0,0,0,3,3,-9,0,3,0,0,0,0,0,-969.95599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,25.742052,0,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,4,1,1,525,261666.13,0,0,0,0,0,703.29126 +8362,10156,18167,18168,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.0212555,8.8182049,0,1,16,14.414674,0,1,1,2021,12,0,42,40,1,0,0,17.439316,17.439316,0,0,0,0,0,0,0,0,0,0,0,.061634094,0,47.77,56.48,53.31,51.24,8.333333333333334,2,3,0,0,11,8,5,0,333,-11213.509,0,0,0,0,0,3626.8921 +8362,10156,18168,18167,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.9816294,8.374135,0,1,-16,9.8154631,-9,-9,-9,2021,7,1,37,0,1,1,0,9.6222296,9.6222296,0,0,0,0,0,0,0,0,0,0,0,0,0,53.31,51.24,47.77,56.48,6.666666666666667,2,3,0,0,1,8,5,0,333,-11213.509,0,0,0,0,0,3626.8921 +8363,10157,18169,-9,18172,18171,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.5848,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18170,-9,18172,18171,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.5108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18171,18172,-9,-9,1,1,27,1,3,0,2,2,-9,1,3,7.2349253,7.2019377,0,5,-1,-71.977348,0,-9,-9,2021,20,6,24,0,1,6,0,6.9624414,6.9624414,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.97,28.18,19.82,53.15,5,1,1,0,0,1,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18172,18171,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,0,0,0,5,1,-39.153755,-9,-9,-9,2021,25,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,19.82,53.15,40.97,28.18,5,1,1,1,1,4,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18173,-9,18172,18171,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.9531,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8364,10158,18174,-9,18176,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8364,10158,18175,-9,18176,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.46484,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8364,10158,18176,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,6.7088985,7.1870337,4.9557157,0,0,-895.78577,0,2,2,2021,12,0,28,28,1,0,0,3.0549755,3.0549755,0,0,0,0,0,0,0,0,1,1,0,5.4302711,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,1,10,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8365,10159,18177,18178,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3845644,8.3904991,0,7,-2,-9.4040194,0,-9,-9,2021,8,1,40,42,1,1,0,18.753649,18.753649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,48.87,58.55,8.333333333333334,1,1,0,0,7,7,5,1,775.5,-96029.617,21049.488,346673.81,375894.19,0,950.46832,5309.3408 +8365,10159,18178,18177,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.7906609,9.194129,0,7,2,22.789314,0,2,3,2021,8,0,38,38,1,0,0,16.832336,16.832336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,59.53,56.44,8.333333333333334,1,1,0,0,12,7,5,1,775.5,-96029.617,21049.488,346673.81,375894.19,0,950.46832,5309.3408 +8366,10160,18179,18180,-9,-9,1,1,43,2,4,0,2,2,-9,0,3,7.2058649,7.3912168,0,6,11,11.285291,0,3,2,2021,16,4,24,0,1,4,0,6.7154851,6.7154851,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.12,43.31,37.28,45.17,3.333333333333333,1,1,0,1,12,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18180,18179,-9,-9,1,0,32,2,4,0,3,3,-9,0,3,0,0,0,6,-11,168.60719,0,3,1,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.28,45.17,41.12,43.31,3.333333333333333,2,3,0,1,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18181,-9,18180,18179,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-982.25983,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18182,-9,18180,18179,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.4097,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18183,-9,18180,18179,1,0,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.848,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18184,-9,18180,18179,1,0,5,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.0805,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8367,10161,18185,18186,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6548338,8.3245621,0,8,2,-73.450233,0,3,2,2021,8,0,49,45,1,0,0,9.7430277,9.7430277,.05,.05,0,0,0,0,0,0,0,0,0,2.9803972,0,56.33,51.02,50,55,8.333333333333334,1,1,0,0,11,11,5,1,200.5,338892.03,31471.385,177617.03,75298.891,23655.74,1106.8074,3552.0483 +8367,10161,18186,18185,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.2922697,8.1092339,0,8,-2,-3.5075705,0,3,2,2021,10,0,39,39,1,1,0,10.473301,10.473301,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,56.33,51.02,8,1,1,0,0,1,11,5,1,200.5,338892.03,31471.385,177617.03,75298.891,23655.74,1106.8074,3552.0483 +8368,10162,18187,18188,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,39,9,9.0214968,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,1,0,10.720583,0,27,1,1,0,5.3806667,0,26.83,29.97,55.66,46.03,5,1,1,0,0,0,12,3,1,542,874181.06,604491.5,187347.28,0,0,0,3353.8037 +8368,10162,18188,18187,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9846644,7.8328166,44,0,57.493717,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.4288549,8.2501688,55.66,46.03,26.83,29.97,8.333333333333334,1,1,0,0,6,12,3,1,542,874181.06,604491.5,187347.28,0,0,0,3353.8037 +8368,10163,18189,-9,18187,18188,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1021.3317,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,1,1,0,0,0,12,2,1,244,-1492.1868,0,0,0,0,0,412.72714 +8368,10164,18190,-9,18187,18188,1,0,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-829.22119,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6452322,0,52,53,-9,-9,8,1,1,0,0,0,12,1,1,915,8966.8994,0,103380.66,0,0,0,2102.8115 +8369,10165,18191,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-902.95374,0,3,2,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.67,33.58,-9,-9,3.333333333333333,1,1,0,1,2,1,1,1,289,27684.428,0,0,0,0,-439.89447,981.97284 +8369,10166,18192,-9,18191,-9,1,0,25,0,0,0,2,2,-9,0,5,7.9327273,7.822566,0,0,0,-1146.9794,0,3,3,2021,9,0,42,40,1,0,0,6.2764182,6.2764182,0,0,0,0,0,0,0,27,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,638,8392.3213,0,0,0,8675.2373,0,1373.2498 +8370,10167,18193,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.753396,7.7486854,0,0,-1055.9546,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.176877,7.6891389,43.48,60.97,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,764,276055.34,362799.75,127655.23,0,2835.4829,2662.2173,1046.3008 +8371,10168,18194,18195,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.8754916,6.8394303,6,-2,-69.9188,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7862248,53,44,55,45,8,1,1,0,0,0,7,3,1,997,831977.69,-9566.6582,580338.63,0,0,0,2998.752 +8371,10168,18195,18194,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.8861532,8.0190086,6,2,-64.500366,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.4647117,7.6820526,55,45,53,44,8.333333333333334,1,1,0,0,0,7,3,1,997,831977.69,-9566.6582,580338.63,0,0,0,2998.752 +8372,10169,18196,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.1246,0,3,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,34.27,-9,-9,5,2,3,0,0,0,8,1,0,456,50341.895,74132.477,195448.55,59682.258,1664.5782,0,0 +8372,10170,18197,-9,18196,-9,1,0,24,0,0,0,1,1,-9,0,3,7.2900991,7.5025172,0,0,0,-993.29901,0,3,-9,2021,17,5,37,37,1,5,1,4.5381484,4.5381484,0,0,0,0,0,0,0,0,0,0,0,0,0,30.8,45.19,-9,-9,5,2,3,0,0,6,8,3,0,757,-120769.14,0,0,0,0,0,1171.818 +8373,10171,18198,18199,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.545723,8.4920998,0,16,0,-14.503758,0,2,2,2021,32,12,35,35,1,12,0,20.336878,20.336878,0,0,0,0,0,0,0,0,1,1,0,0,0,21.01,49.03,60.85,44.82,1.666666666666667,2,3,0,0,11,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18199,18198,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6479874,8.8244486,0,16,0,-55.018478,0,3,1,2021,7,0,39,35,1,0,0,18.858168,18.858168,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.85,44.82,21.01,49.03,8.333333333333334,2,3,0,0,12,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18200,-9,18198,18199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.1898,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18201,-9,18198,18199,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.15295,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8374,10172,18202,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.1412,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,53.5,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,50,-223981.44,0,0,0,0,0,988.70605 +8375,10173,18203,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-924.83606,0,2,3,2021,12,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4910973,0,43.72,31.36,-9,-9,3.333333333333333,1,1,1,0,12,11,2,1,1685,0,0,0,0,0,0,-628.55096 +8376,10174,18204,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,6.8170991,8.4004898,7.6376476,0,0,-889.3075,0,2,2,2021,11,0,37,37,1,0,0,2.7753546,2.7753546,.05,.05,0,0,0,0,0,0,0,0,0,5.0038176,8.1375027,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,7,11,4,0,100,309267.94,91118.742,10525.734,-13153.326,0,0,2237.5818 +8377,10175,18205,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.3012066,8.0087566,0,0,-1035.9955,0,2,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.4147854,8.0140238,47.01,55.33,-9,-9,5,1,1,0,0,0,9,4,1,1035,363405.72,407533.44,0,0,0,0,7228.4639 +8378,10176,18206,18207,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0938845,6.5792713,8,5,42.123634,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,36.430607,0,0,1,1,0,0,6.416924,25.84,40.22,54.21,47.1,6.666666666666667,1,1,0,0,0,4,2,0,402.5,410856.38,124729.92,103968.66,0,0,0,1763.0542 +8378,10176,18207,18206,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,5.5949717,5.8594556,8,-5,-.78526306,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.1868477,6.1071191,54.21,47.1,25.84,40.22,8.333333333333334,1,1,0,0,4,4,2,0,402.5,410856.38,124729.92,103968.66,0,0,0,1763.0542 +8379,10177,18208,18209,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,5.8334212,5.5319519,10,5,-34.667309,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1157665,5.5214386,62.49,55.09,54.2,57.49,8.333333333333334,1,1,0,0,9,1,2,1,2932,321383.38,191349.59,201110.31,0,-259.07629,0,1662.1062 +8379,10177,18209,18208,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,10,-5,-40.647327,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.49,55.09,8.333333333333334,1,1,0,0,7,1,2,1,2932,321383.38,191349.59,201110.31,0,-259.07629,0,1662.1062 +8379,10178,18210,-9,18209,18208,1,1,33,0,0,0,1,1,-9,0,5,8.3242912,8.4048319,0,0,0,-995.48969,0,2,2,2021,7,0,30,30,1,0,0,13.605013,13.605013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,624,46263.445,-7950.5962,0,0,0,0,2724.5093 +8379,10179,18211,-9,18209,18208,1,1,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1100.7924,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.45,55.84,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,1642,233807.8,0,0,0,0,0,79.637711 +8380,10180,18212,-9,18214,18215,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7423,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18213,-9,18214,18215,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.04938,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18214,18215,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.9442215,7.8782187,0,6,0,88.304565,0,3,2,2021,7,0,34,40,1,0,0,9.2200651,9.2200651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48.53,58.91,8.333333333333334,1,1,0,0,6,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18215,18214,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,9.2892551,8.9091425,0,6,0,49.014107,0,2,2,2021,12,0,55,45,1,0,0,26.10721,26.10721,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,54.79,55.86,3.333333333333333,1,1,0,0,7,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8381,10181,18216,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9058614,6.6900158,0,0,-1124.4005,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4123297,42.05,58.8,-9,-9,5,1,1,0,0,10,9,2,1,389,73304.141,0,0,0,0,0,644.5769 +8382,10182,18217,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.2941432,7.6405568,0,0,-1052.3282,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5968995,46.46,54.53,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,129,490185.34,209879.56,222604.36,0,0,0,2111.2402 +8383,10183,18218,18219,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.855772,8.3520718,11,4,129.62018,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1432137,8.1061039,57.33,53.46,35.2,50.61,8.333333333333334,1,1,0,0,6,2,3,1,312,1043350.4,758777.19,190780.84,0,0,0,2405.7305 +8383,10183,18219,18218,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,11,-4,138.80989,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.693697,0,35.2,50.61,57.33,53.46,5,1,1,0,0,11,2,3,1,312,1043350.4,758777.19,190780.84,0,0,0,2405.7305 +8384,10184,18220,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.4490242,9.5176497,0,0,0,-989.20258,0,1,1,2021,5,0,80,72,1,0,0,24.909281,24.909281,.05,.05,0,0,0,0,0,0,0,0,0,5.0299592,0,62.39,56.71,-9,-9,10,1,1,0,0,9,12,5,1,1281,993902.19,737040.38,293863.91,30266.193,0,0,5962.1504 +8385,10185,18221,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7675147,8.2321968,0,0,0,-852.50482,0,2,-9,2021,6,0,40,36,1,0,0,7.941134,7.941134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,2,3,0,0,8,7,4,0,797,424563.56,295672.56,288933.66,0,0,0,1278.2733 +8385,10186,18222,-9,18221,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-967.1767,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,0,1087,-90778.641,0,0,0,0,0,-357.27594 +8386,10187,18223,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.623055,5.4517274,0,0,-984.17175,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4048543,5.7126126,42.86,27.38,-9,-9,5,1,1,0,0,0,2,2,1,330,594011.75,83190.461,102750.23,0,0,0,255.61957 +8387,10188,18224,18225,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6524825,7.3720002,0,28,-5,76.914352,0,3,2,2021,12,0,32,30,1,0,0,7.7173119,7.7173119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.29,49.06,51.83,57.2,1.666666666666667,1,1,0,0,9,2,5,1,746.5,707620.38,588147.63,100366.28,0,5590.0029,0,3470.0806 +8387,10188,18225,18224,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.4951563,8.6193733,5.3907466,28,5,15.909074,0,-9,-9,2021,7,0,30,35,1,0,0,20.334072,20.334072,.05,.05,0,0,0,0,0,0,0,0,0,0,5.276855,51.83,57.2,49.29,49.06,6.666666666666667,1,1,0,0,10,2,5,1,746.5,707620.38,588147.63,100366.28,0,5590.0029,0,3470.0806 +8387,10189,18226,-9,18224,18225,1,0,28,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1032.0996,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.374588,0,54.1,59.11,-9,-9,6.666666666666667,1,1,1,0,2,2,1,1,1513,-52774.066,0,0,0,0,23.902758,-265.3049 +8387,10190,18227,-9,18224,18225,1,0,27,0,0,0,1,1,-9,0,4,8.0635233,8.2282963,0,0,0,-948.58667,0,2,2,2021,16,5,38,37,1,5,1,9.1708317,9.1708317,.05,.05,0,0,0,0,0,0,0,0,0,1.8554132,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,169,-156488.03,23998.557,97410.352,71915.758,0,0,1113.4106 +8388,10191,18228,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-962.95184,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,332,-11850.631,0,0,0,0,0,0 +8389,10192,18229,18231,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.0736389,7.9436345,0,9,8,134.05467,0,2,3,2021,9,0,44,42,1,0,0,8.2381067,8.2381067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,38.16,52.53,8.333333333333334,1,1,0,0,10,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18230,-9,18231,18229,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-942.44232,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18231,18229,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8715501,8.4467306,0,9,-8,-101.19935,0,2,3,2021,18,6,38,38,1,6,0,9.7267485,9.7267485,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.16,52.53,58.15,52.91,6.666666666666667,1,1,0,0,9,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18232,-9,18231,18229,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-978.07147,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10193,18233,-9,18231,18229,1,1,23,0,2,0,2,2,-9,0,4,7.6035576,8.1260824,0,0,0,-974.90179,0,2,2,2021,10,0,38,39,1,0,1,10.571165,10.571165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,208,25475.807,-11530.529,0,0,6352.9644,0,408.98254 +8390,10194,18234,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,9.0542917,9.0798807,0,0,0,-949.34698,0,2,3,2021,14,5,52,49,1,5,0,21.411556,21.411556,.05,.05,0,0,0,0,0,0,0,0,0,7.8695025,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,8,6,5,1,229,84637.688,274373.19,57610.383,49672.391,14949.657,0,3406.1506 +8391,10195,18235,-9,18237,18236,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1077.8063,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10195,18236,18237,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.5811357,8.737277,0,8,-1,-87.789597,0,2,1,2021,7,0,38,37,1,0,0,18.027569,18.027569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,47.9,40.01,8.333333333333334,1,1,0,0,9,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10195,18237,18236,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.2688122,8.1840487,0,8,1,-43.546368,0,3,3,2021,17,6,42,35,1,6,0,13.816773,13.816773,.05,.05,0,0,0,0,0,0,1,1,0,3.8366823,0,47.9,40.01,61.12,51.57,6.666666666666667,1,1,0,0,8,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10196,18238,-9,18237,18236,1,1,27,0,1,0,2,2,-9,0,5,8.2055378,7.95191,0,0,0,-988.05945,-9,2,2,2021,4,0,38,0,1,0,1,8.2771158,8.2771158,0,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,714,41427.207,0,0,0,0,0,1138.9867 +8392,10197,18239,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.8363676,6.3999391,0,0,0,-1111.5977,0,3,2,2021,10,0,40,55,1,1,0,2.7492499,2.7492499,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,3,4,0,0,1,9,2,0,258,87370.422,70577.172,0,0,4679.5215,0,518.4444 +8392,10198,18240,-9,18239,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1112.6979,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,0,9,1,0,905,26201.682,0,0,0,0,0,0 +8392,10199,18241,-9,18239,-9,1,1,31,0,0,0,2,2,-9,0,4,8.6521502,8.2015753,0,0,0,-1086.7532,0,2,-9,2021,10,0,40,40,1,1,1,12.516612,12.516612,.05,.05,0,0,0,0,0,0,1,1,0,5.2017374,0,50,57,-9,-9,7,3,4,0,0,1,9,4,0,191,83754.836,58606.137,113004.13,95827.828,17262.67,0,1297.3373 +8393,10200,18242,18243,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,12,-3,-186.08865,0,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.22,20.89,38.91,23.49,5,1,1,0,0,1,12,2,0,271.5,-147839.73,0,0,0,0,0,2881.9077 +8393,10200,18243,18242,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,3.9001124,3.741854,12,3,40.978569,0,2,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.8555412,3.5986407,38.91,23.49,34.22,20.89,5,1,1,0,0,4,12,2,0,271.5,-147839.73,0,0,0,0,0,2881.9077 +8394,10201,18244,18245,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7601995,7.821846,0,29,-2,124.52359,0,2,2,2021,10,0,31,32,1,0,0,9.9777451,9.9777451,0,0,0,0,0,0,0,0,1,1,0,4.3724456,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,12,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10201,18245,18244,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,0,.22381683,0,29,2,-6.2617493,0,2,2,2021,7,0,40,40,1,0,0,.000520445,.000520445,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,15,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10201,18246,-9,18244,18245,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1086.4324,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,57.02,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10202,18247,-9,18244,18245,1,0,20,0,0,0,2,2,-9,0,5,7.6206269,7.9949455,0,0,0,-1061.8679,0,2,3,2021,5,1,37,41,1,1,1,9.0332174,9.0332174,.05,.05,0,0,0,0,0,0,1,1,0,.17567632,0,56.47,59.4,-9,-9,10,1,1,0,0,4,9,3,1,689,76653.828,140799.08,0,0,0,-447.99005,1547.0968 +8395,10203,18248,18249,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,0,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,40.91,32.91,47.14,8.333333333333334,1,1,0,0,0,13,1,1,710,251507.81,-19456.521,240498.77,0,0,0,814.09479 +8395,10203,18249,18248,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,7,9,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.91,47.14,49.41,40.91,6.666666666666667,1,1,0,0,0,13,1,1,710,251507.81,-19456.521,240498.77,0,0,0,814.09479 +8396,10204,18250,-9,18251,18253,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-841.53442,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18251,18253,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,8.2948103,8.2510576,0,13,-1,-25.864624,-9,2,2,2021,11,0,30,0,1,2,0,15.726343,15.726343,.05,.05,0,0,0,0,0,0,1,1,0,6.836194,0,48,56,52,54.51,7,1,1,0,0,13,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18252,-9,18251,18253,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.0436,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18253,18251,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,9.05474,8.6959028,0,13,1,-104.04052,0,2,3,2021,4,0,40,30,1,0,0,18.339437,18.339437,.05,.05,0,0,0,0,0,0,1,1,0,5.0347342,0,52,54.51,48,56,6.666666666666667,2,3,0,0,13,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8397,10205,18254,-9,18256,18257,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.02435,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18255,-9,18256,18257,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-934.23193,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18256,18257,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,9.2930937,8.8881025,0,19,0,67.145782,0,1,2,2021,24,11,55,55,1,11,0,17.192472,17.192472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.33,45.47,40.32,56.92,5,1,1,0,0,9,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18257,18256,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.5201674,8.9515524,0,20,0,-22.076073,0,1,2,2021,12,0,40,37,1,0,0,12.304449,12.304449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.32,56.92,36.33,45.47,6.666666666666667,1,1,0,0,12,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8398,10206,18258,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-974.79822,0,3,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,30.89,-9,-9,1.666666666666667,1,1,0,1,0,5,1,0,2568,-243974.86,0,0,0,0,1198.214,1612.3938 +8399,10207,18259,18260,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.8111186,6.9985685,0,24,3,-111.91789,0,2,2,2021,8,0,10,35,1,0,0,9.2132998,9.2132998,0,0,.05,0,0,0,0,2,0,0,0,0,0,54.37,54.8,47,30.79,8.333333333333334,1,1,0,0,6,8,4,1,654,298817.81,107607.78,258036.06,44152.633,11276.844,13822.359,1833.873 +8399,10207,18260,18259,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.2552395,8.1380272,0,24,-3,53.320255,0,1,2,2021,8,0,21,35,1,0,0,20.624722,20.624722,0,0,0,0,0,0,0,0,0,0,0,0,0,47,30.79,54.37,54.8,8.333333333333334,1,1,0,0,8,8,4,1,654,298817.81,107607.78,258036.06,44152.633,11276.844,13822.359,1833.873 +8400,10208,18261,-9,18262,18263,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.528,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8400,10208,18262,18263,-9,-9,1,0,42,0,4,0,1,1,-9,0,5,7.6309228,7.7087483,0,11,0,-29.013487,0,2,1,2021,12,0,60,-9,1,0,0,2.9083114,2.9083114,0,0,0,0,0,0,0,14.5,0,0,0,0,0,36.33,53.82,36,29,5,1,1,0,0,12,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8400,10208,18263,18262,-9,-9,1,1,42,0,4,0,2,2,-9,0,1,3.141747,3.0461683,0,11,0,-38.558826,-9,2,3,2021,19,0,46,0,1,6,0,.05847694,.05847694,0,0,0,0,0,0,0,0,0,0,0,0,0,36,29,36.33,53.82,4,1,1,0,0,7,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8401,10209,18264,-9,18266,18265,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-830.18549,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8401,10209,18265,18266,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.1119919,7.8485031,0,4,4,14.833417,0,-9,-9,2021,7,0,45,45,1,0,0,8.2142286,8.2142286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.21,48.32,6.666666666666667,1,1,0,0,3,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8401,10209,18266,18265,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.5813003,7.4961615,0,4,-4,-53.626667,0,2,-9,2021,11,0,21,21,1,0,0,9.050334,9.050334,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,48.32,57.06,57.76,6.666666666666667,1,1,0,0,8,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8402,10210,18267,-9,18269,18268,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.0475,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18268,18269,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.3276873,9.2346649,0,19,2,-58.620487,0,2,2,2021,6,0,72,37,1,0,0,16.395182,16.395182,0,0,0,0,0,0,0,0,0,0,0,6.0355377,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,12,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18269,18268,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,0,0,19,-2,11.373161,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,2,3,0,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18270,-9,18269,18268,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.254,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8403,10211,18271,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.94806,0,-9,-9,2021,11,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1482265,0,45.49,58.84,-9,-9,8.333333333333334,1,1,1,0,14,6,1,1,371,0,0,0,0,0,0,-596.99548 +8404,10212,18272,18273,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.290369,7.3303447,0,24,0,24.435902,0,2,2,2021,8,0,10,10,1,0,0,13.736511,13.736511,0,0,0,0,0,0,0,0,0,0,0,6.9336543,0,54.2,57.49,45.04,53.77,8.333333333333334,1,1,0,0,12,2,2,1,3751,-38262.242,-15398.689,19426.852,50235.141,0,0,1610.4238 +8404,10212,18273,18272,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,24,9,58.194965,0,3,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,54.2,57.49,6.666666666666667,1,1,1,0,9,2,2,1,3751,-38262.242,-15398.689,19426.852,50235.141,0,0,1610.4238 +8405,10213,18274,-9,18277,18275,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.67877,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18275,18277,-9,-9,1,1,63,0,2,0,1,1,-9,0,4,0,3.9032564,4.2343774,23,23,3.2999012,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1759486,3.8907416,51.24,58.84,56.11,44.4,5,1,1,0,0,5,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18276,-9,18277,18275,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1059.7249,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18277,18275,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.1060123,8.7636566,7.9789748,24,-23,47.870907,0,3,3,2021,8,0,30,30,1,0,0,11.915899,11.915899,0,0,0,0,0,0,0,0,1,1,0,1.9580739,8.3311396,56.11,44.4,51.24,58.84,8.333333333333334,1,1,0,0,8,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8406,10214,18278,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.7899337,7.6348157,0,0,0,-959.57874,0,2,2,2021,6,0,37,37,1,0,0,7.7315736,7.7315736,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,3,0,560,-18883.582,99136.234,0,0,6891.6572,891.06952,2128.0081 +8406,10215,18279,-9,18278,-9,1,0,18,0,0,0,3,3,0,0,4,0,0,0,0,0,-856.9812,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,1,0,141,-14101.657,0,0,0,0,0,309.38312 +8407,10216,18280,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-969.9173,1,2,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,254,-54683.941,0,0,0,14060.939,0,0 +8408,10217,18281,18282,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,6,-3,0,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,23.61,41.07,60.93,5,1,1,0,0,0,1,1,0,587,-25405.291,0,0,0,0,0,2304.8428 +8408,10217,18282,18281,-9,-9,1,1,58,0,0,0,3,3,-9,1,5,0,0,0,6,3,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,41.07,60.93,43.1,23.61,10,1,1,0,0,0,1,1,0,587,-25405.291,0,0,0,0,0,2304.8428 +8409,10218,18283,18284,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.8747516,7.9029059,0,37,4,76.311714,0,3,3,2021,7,0,24,24,1,0,0,8.2770081,8.2770081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.47,53.17,8.333333333333334,2,3,0,0,14,5,3,1,645,249129.34,339325.19,141783,16966.762,2454.9446,0,3463.4661 +8409,10218,18284,18283,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6005344,7.7246037,0,13,-4,155.18262,0,-9,-9,2021,11,0,25,16,1,0,0,10.091054,10.091054,0,0,0,0,0,0,0,0,0,0,0,8.2520285,0,51.47,53.17,54.1,59.11,6.666666666666667,2,3,0,0,14,5,3,1,645,249129.34,339325.19,141783,16966.762,2454.9446,0,3463.4661 +8410,10219,18285,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1062.6141,0,2,2,2021,16,6,0,40,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,42.77,-9,-9,8.333333333333334,3,4,1,1,4,4,1,1,1713,95629.094,13409.619,0,0,0,0,329.05963 +8411,10220,18286,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,5.1607761,4.9703026,0,0,-931.16064,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,14.898783,4.1582146,132.26277,0,1,1,0,1.9109585,5.3317704,58.26,37.88,-9,-9,1.666666666666667,1,1,0,0,0,1,2,1,1202,88816.5,45408.203,169791.2,0,0,0,510.3237 +8412,10221,18287,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-929.6781,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,23.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,703,251899.8,0,0,0,0,628.93909,2302.9812 +8412,10222,18288,-9,18287,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-936.70178,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.26,12.2,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,84,-62784.719,0,0,0,0,0,866.62592 +8413,10223,18289,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.8969479,6.82057,0,0,-899.29718,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7375112,6.5346437,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,657,73334.516,1718.0636,65391.715,0,0,0,1555.5591 +8414,10224,18290,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.086081,6.1589332,0,0,-1044.262,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2519517,57.92,41.29,-9,-9,10,1,1,0,0,0,12,2,1,872,-14679.605,51760.953,0,0,0,0,84.639732 +8415,10225,18291,18292,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,5.4954896,5.3748617,0,3,-2,-62.446827,0,3,3,2021,8,0,75,60,1,0,0,.31046999,.31046999,.05,.05,0,0,0,0,0,0,0,0,0,3.126791,0,58.87,51.29,65.06,41.58,8.333333333333334,1,1,0,0,9,12,5,1,295.5,490663.25,503799.78,111746.3,0,0,0,3833.2383 +8415,10225,18292,18291,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.7821178,9.1405382,0,3,2,9.1831541,0,-9,-9,2021,9,0,29,34,1,0,0,32.112488,32.112488,.05,.05,0,0,0,0,0,0,0,0,0,8.140028,0,65.06,41.58,58.87,51.29,8.333333333333334,1,1,0,0,7,12,5,1,295.5,490663.25,503799.78,111746.3,0,0,0,3833.2383 +8415,10226,18293,-9,18292,18291,1,0,22,0,0,0,2,2,-9,0,4,7.8296657,7.6480927,0,0,0,-1000.7253,0,3,2,2021,11,0,40,25,1,2,1,6.4975429,6.4975429,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,3,1,2485,-102410.47,0,0,0,0,0,698.6532 +8416,10227,18294,18295,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,3.8093429,3.7261643,9,4,-34.696926,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3822618,3.8764336,66.93000000000001,23.51,55.43,45.88,10,1,1,0,0,4,7,2,1,465,520657.5,0,499976.66,0,0,0,2190.3108 +8416,10227,18295,18294,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,9,-4,68.399323,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9534073,0,55.43,45.88,66.93000000000001,23.51,6.666666666666667,1,1,0,0,0,7,2,1,465,520657.5,0,499976.66,0,0,0,2190.3108 +8417,10228,18296,18297,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,22,-1,124.62251,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.93,17.54,38.77,48.67,0,1,1,0,0,3,10,3,1,2366,566286.38,107361.58,296344.56,0,0,0,2134.0647 +8417,10228,18297,18296,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.1714878,7.7103934,0,22,1,-18.847237,0,-9,-9,2021,11,0,34,34,1,0,0,8.0879564,8.0879564,0,0,0,0,0,0,0,2,1,1,0,0,0,38.77,48.67,44.93,17.54,3.333333333333333,1,1,0,0,6,10,3,1,2366,566286.38,107361.58,296344.56,0,0,0,2134.0647 +8417,10229,18298,-9,18296,18297,1,0,22,0,0,0,2,2,-9,0,3,7.1218877,7.1618237,0,0,0,-1097.9164,0,2,2,2021,15,3,16,18,1,3,1,9.4540482,9.4540482,0,0,0,0,0,0,0,2,1,1,0,0,0,44.75,47.24,-9,-9,5,1,1,0,0,6,10,3,1,258,-111819.99,0,0,0,0,0,1273.9495 +8417,10230,18299,-9,18296,18297,1,1,27,0,0,0,2,2,-9,0,4,8.2571831,8.3160381,0,0,0,-1129.0188,0,3,2,2021,18,7,41,49,1,7,1,10.073663,10.073663,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.38,61.38,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,3781,-81290.844,45975.973,0,0,0,0,1886.4374 +8418,10231,18300,18301,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,26,-3,53.654018,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.08,30.23,64.93000000000001,45.93,3.333333333333333,1,1,0,0,11,9,2,1,387.5,683664.13,332258.78,372997.88,0,0,0,1782.4153 +8418,10231,18301,18300,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.377058,7.4960384,26,3,196.71915,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5036874,7.4667501,64.93000000000001,45.93,58.08,30.23,8.333333333333334,1,1,0,0,3,9,2,1,387.5,683664.13,332258.78,372997.88,0,0,0,1782.4153 +8419,10232,18302,18303,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.8427768,8.2427473,0,5,-5,-72.285774,0,-9,-9,2021,9,2,40,24,1,2,0,7.0683308,7.0683308,0,0,0,0,0,0,0,2,1,1,0,0,0,52.24,20.93,59.26,45.49,8.333333333333334,1,1,0,0,3,5,5,1,235.5,520005.16,128981.45,91761.281,0,0,0,4597.4634 +8419,10232,18303,18302,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7779207,8.7613783,5.2384796,5,5,-34.2537,0,2,2,2021,7,0,60,48,1,0,0,12.355735,12.355735,.05,.05,0,0,0,0,0,2,1,1,0,7.2821169,5.5446682,59.26,45.49,52.24,20.93,8.333333333333334,1,1,0,0,11,5,5,1,235.5,520005.16,128981.45,91761.281,0,0,0,4597.4634 +8419,10233,18304,-9,18302,18303,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1105.7645,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.76,50.55,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,933,62150,0,0,0,0,0,0 +8420,10234,18305,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,6.4070554,6.3358502,0,0,0,-964.04669,-9,3,3,2021,7,0,37,0,1,0,0,2.0013523,2.0013523,0,0,0,0,0,0,0,0,1,1,0,0,0,57.56,49.35,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,619,70977.977,0,82043.391,0,0,0,-116.06251 +8421,10235,18306,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8536983,7.6081142,0,0,-1036.715,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7577152,7.4433413,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,196,579414.88,263840.53,237267.11,0,0,0,1518.6211 +8422,10236,18307,18310,-9,-9,1,0,46,0,2,0,2,2,-9,1,3,0,0,0,2,-1,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.49,50.87,55.83,37.52,5,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18308,-9,18307,18310,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1054.3308,-9,2,2,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.63,51.83,-9,-9,5,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18309,-9,18307,18310,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1255,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18310,18307,-9,-9,1,1,47,0,2,0,2,2,-9,1,3,0,0,0,2,1,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,55.83,37.52,36.49,50.87,10,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8423,10237,18311,18312,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.9074535,4.9017262,12,-1,-167.28273,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.911099,63.25,37.54,44.42,14.06,10,1,1,0,0,0,8,2,1,667.5,328059.94,79083.719,275219.16,0,0,0,1237.531 +8423,10237,18312,18311,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.7319922,6.4184818,12,1,36.893921,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6918731,6.8481584,44.42,14.06,63.25,37.54,6.666666666666667,1,1,0,0,0,8,2,1,667.5,328059.94,79083.719,275219.16,0,0,0,1237.531 +8424,10238,18313,18314,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.7436519,9.127243,8.1195621,2,3,179.23579,0,-9,-9,2021,6,0,60,25,1,0,0,4.0348277,4.0348277,0,0,.05,0,0,0,0,0,1,1,0,8.2077703,8.3222399,49.56,43.62,54.62,53.53,6.666666666666667,1,1,0,0,11,10,5,1,831,755238.38,251938.13,732218.88,200440.47,0,0,5865.4263 +8424,10238,18314,18313,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9268861,6.9401479,0,2,-3,-50.030125,0,3,-9,2021,10,0,12,40,1,0,0,8.5108042,8.5108042,0,0,0,0,0,0,0,0,1,1,0,6.8463173,0,54.62,53.53,49.56,43.62,5,1,1,0,0,10,10,5,1,831,755238.38,251938.13,732218.88,200440.47,0,0,5865.4263 +8425,10239,18315,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.5047998,8.2910213,0,0,0,-1093.5339,0,2,2,2021,9,0,45,45,1,0,0,13.829073,13.829073,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.8,57.28,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,1422,-44757.309,36785.078,0,0,0,0,2128.2222 +8426,10240,18316,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.7043352,8.6857576,0,0,0,-845.84235,0,-9,1,2021,10,0,10,10,1,0,0,73.423401,73.423401,0,0,0,0,0,0,0,0,0,0,0,.55348492,0,35.91,58.14,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,849,50203.199,220806.36,130976.99,98586.836,12623.592,0,2555.675 +8427,10241,18317,18318,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6585598,9.5793076,0,4,-3,112.60634,0,3,2,2021,7,1,24,24,1,1,0,75.245522,75.245522,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52.23,55.6,8.333333333333334,1,1,0,0,14,10,5,1,1478,376320.63,120983.6,340573.06,201738.88,0,0,9409.2764 +8427,10241,18318,18317,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0510063,7.8787956,0,4,3,19.474615,0,2,2,2021,12,0,16,16,1,0,0,17.89802,17.89802,0,0,.05,0,0,0,0,0,0,0,0,3.8574429,0,52.23,55.6,51.24,58.84,8.333333333333334,1,1,0,0,13,10,5,1,1478,376320.63,120983.6,340573.06,201738.88,0,0,9409.2764 +8428,10242,18319,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.1729784,7.300221,0,0,-996.71661,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1502099,7.1712222,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,572,520244.03,508118.25,228690.25,0,0,1282.8049,1774.7865 +8429,10243,18320,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.4683418,8.4768047,0,3,-3,-78.617203,-9,-9,-9,2021,4,0,37,0,1,0,0,12.571953,12.571953,.05,.05,0,0,0,0,0,0,0,0,0,.48043463,0,57.06,57.76,49.02,58.89,8.333333333333334,1,1,0,0,7,10,5,1,238,246043.22,122722.54,270812.13,128825.77,1587.4065,820.68695,2084.6079 +8429,10244,18321,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0039463,8.9533796,0,3,3,24.890829,0,1,2,2021,6,0,38,43,1,0,0,23.779388,23.779388,.05,.05,0,0,0,0,0,0,0,0,0,6.3552094,0,49.02,58.89,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,416,92855.695,475276.91,0,0,0,0,3478.4243 +8430,10245,18322,18323,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.5853467,8.056406,51,2,-62.327511,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1495981,7.8451805,59.7,43.22,49.63,54.22,8.333333333333334,1,1,0,0,0,4,3,1,1833.5,984668.69,749571,198376.41,0,945.6153,0,1710.9857 +8430,10245,18323,18322,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.0771317,3.928437,51,-2,7.7957792,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2762551,4.1531625,49.63,54.22,59.7,43.22,8.333333333333334,1,1,0,0,0,4,3,1,1833.5,984668.69,749571,198376.41,0,945.6153,0,1710.9857 +8431,10246,18324,18325,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,9,-8,-94.658958,0,3,2,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,12.522749,0,0,1,1,0,0,0,19.01,22.64,60.29,52.11,1.666666666666667,1,1,0,0,0,12,2,0,1041,276755.06,82681.008,151884.75,0,0,0,1855.4368 +8431,10246,18325,18324,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8526058,5.9839568,9,8,101.21902,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7975883,5.569725,60.29,52.11,19.01,22.64,10,1,1,0,0,4,12,2,0,1041,276755.06,82681.008,151884.75,0,0,0,1855.4368 +8432,10247,18326,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-943.0307,-9,-9,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.33,65.93000000000001,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,4542,73941.148,0,0,0,0,0,0 +8433,10248,18327,18328,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.285006,6.0402341,49,-2,-102.69138,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.4075265,43.59,31.81,54,46,1.666666666666667,1,1,0,0,0,4,2,1,618,677321.19,400905.38,203127.66,0,0,0,2465.5293 +8433,10248,18328,18327,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.1153398,7.2530766,49,2,25.695173,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.1916721,126.49352,12.70343,0,1,1,0,3.7282543,7.4219966,54,46,43.59,31.81,8,2,3,0,0,0,4,2,1,618,677321.19,400905.38,203127.66,0,0,0,2465.5293 +8434,10249,18329,18330,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.777215,7.5778389,0,36,2,24.426676,0,3,2,2021,11,0,27,21,1,0,0,9.9706917,9.9706917,.05,.05,0,0,0,0,0,0,0,0,0,3.062253,0,54.2,57.49,54,54,8.333333333333334,1,1,0,0,9,9,5,1,1091.5,925014.88,575102.88,376689.91,60222.121,7493.3789,8054.5713,4603.4819 +8434,10249,18330,18329,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.2573586,9.0734806,0,7,-2,-49.218685,0,-9,-9,2021,8,0,40,45,1,0,0,27.19483,27.19483,.05,.05,0,0,0,0,0,0,0,0,0,.75457788,0,54,54,54.2,57.49,8,1,1,0,0,1,9,5,1,1091.5,925014.88,575102.88,376689.91,60222.121,7493.3789,8054.5713,4603.4819 +8435,10250,18331,18332,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,7,8,-58.644608,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,55.18,49.42,39.17,23,6.666666666666667,1,1,0,0,2,2,2,1,1283.5,634129.5,375509.19,172740.66,0,0,0,1479.8352 +8435,10250,18332,18331,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.900178,7.0236921,7,-8,-75.122581,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5398822,6.1054559,39.17,23,55.18,49.42,5,1,1,0,0,0,2,2,1,1283.5,634129.5,375509.19,172740.66,0,0,0,1479.8352 +8436,10251,18333,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,9.0724325,9.5641232,0,0,0,-1003.7325,-9,-9,-9,2021,11,0,40,0,1,2,0,36.74157,36.74157,0,0,0,0,0,0,0,0,0,0,0,3.0334654,0,46,58,-9,-9,7,4,6,0,0,1,8,5,0,1078,10420.721,0,0,0,0,0,3162.2852 +8436,10252,18334,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.835968,8.9362545,0,0,0,-909.14471,-9,-9,-9,2021,11,0,40,0,1,2,0,18.366251,18.366251,.05,.05,0,0,0,0,0,0,0,0,0,1.7396569,0,46,58,-9,-9,7,4,6,0,0,1,8,5,0,2458,-137572.53,94856.211,0,0,5905.9658,0,2738.1416 +8436,10253,18335,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1083403,8.4105921,0,0,0,-1056.5588,-9,-9,-9,2021,11,0,40,0,1,2,0,11.38575,11.38575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,6,0,0,1,8,4,0,539,119937.57,60869.117,0,0,0,0,1935.5909 +8436,10254,18336,-9,-9,-9,1,0,25,0,0,0,2,2,0,0,3,0,0,0,0,0,-979.53979,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.31,56.51,-9,-9,6.666666666666667,1,1,0,0,7,8,1,0,1302,-104681.49,0,0,0,0,0,527.13141 +8437,10255,18337,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1068.6996,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7476974,0,52.24,38.11,-9,-9,10,1,1,0,0,0,1,1,1,512,-142925.95,0,0,0,0,0,1470.7051 +8438,10256,18338,18339,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.603579,7.5156121,63,5,-41.335106,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6664801,8.0288219,58.33,39.49,54.21,45.2,8.333333333333334,1,1,0,0,0,6,3,1,416,538617.06,297427.31,264674.81,0,0,0,2848.6787 +8438,10256,18339,18338,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.51124,6.8867812,63,-5,-157.0788,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3555102,6.6775661,54.21,45.2,58.33,39.49,8.333333333333334,1,1,0,0,0,6,3,1,416,538617.06,297427.31,264674.81,0,0,0,2848.6787 +8439,10257,18340,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.3454952,8.4802437,0,0,0,-1070.8615,0,3,3,2021,11,2,28,28,1,2,0,16.505293,16.505293,.05,.05,0,0,0,0,0,98,0,0,0,1.0350561,0,49.47,27.45,-9,-9,8.333333333333334,2,3,0,0,11,8,4,1,827,1163532.8,327127.88,466395.72,50447.188,1547.9059,2896.4583,1376.2057 +8440,10258,18341,18342,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,0,-9.4531536,0,3,2,2021,3,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,42.94,58.32,50.22,10,1,1,0,0,0,4,2,1,445,213692.34,140613.81,0,0,0,0,2181.5769 +8440,10258,18342,18341,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5896297,6.8531475,9,0,-10.445198,0,3,3,2021,2,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2959585,58.32,50.22,62.42,42.94,8.333333333333334,1,1,0,0,0,4,2,1,445,213692.34,140613.81,0,0,0,0,2181.5769 +8441,10259,18343,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.1919074,6.1956558,0,0,-962.0918,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,1.1764727,0,0,1,1,0,0,5.9729929,44.24,30.31,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,474,402746.38,131531.7,188452.55,0,0,0,1325.0321 +8442,10260,18344,18345,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.6820831,9.5267029,0,42,-2,17.015686,0,2,2,2021,10,0,40,40,1,1,0,38.552765,38.552765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,5,5,1,319,1450972.5,1358078.3,262676.88,0,0,0,6606.8784 +8442,10260,18345,18344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.6957455,7.5428491,0,42,2,99.723587,0,2,2,2021,6,0,28,37,1,0,0,6.9801793,6.9801793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,48,8.333333333333334,1,1,0,0,9,5,5,1,319,1450972.5,1358078.3,262676.88,0,0,0,6606.8784 +8443,10261,18346,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.1623526,9.3785133,7.949892,0,0,-1065.434,0,2,2,2021,12,0,90,55,1,0,0,8.050745,8.050745,.05,.05,0,0,0,0,0,0,0,0,0,8.7331352,0,46.98,59.35,-9,-9,8.333333333333334,4,5,0,0,11,2,5,1,189,1715854.5,1300877.1,433226,0,7239.3013,0,4594.2266 +8444,10262,18347,18348,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1258373,7.9984131,0,8,-5,.78946918,0,2,-9,2021,2,0,40,40,1,0,0,9.2663708,9.2663708,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,48.53,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,93,500389.84,454627.63,128550.59,34752.223,-261.43805,0,2027.8567 +8444,10262,18348,18347,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.8817587,7.9844584,0,11,5,106.66618,0,3,3,2021,16,4,40,40,1,4,0,6.132762,6.132762,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.34,48.53,3.333333333333333,1,1,0,0,10,4,4,1,93,500389.84,454627.63,128550.59,34752.223,-261.43805,0,2027.8567 +8445,10263,18349,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2930937,6.3514075,0,0,-1012.9481,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9845748,47.91,53.86,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,292,322018.09,0,270664.59,0,0,0,1499.7905 +8446,10264,18350,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.7031746,5.9569144,0,0,-925.06567,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7653966,6.0012493,52.4,47.71,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,928,172532.06,21665.037,321157.81,0,0,0,1064.877 +8447,10265,18351,-9,-9,-9,1,0,23,0,0,0,2,2,0,0,4,0,5.9534583,6.2593346,0,0,-1069.9805,-9,2,2,2021,29,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5977178,0,27.28,65.96000000000001,-9,-9,3.333333333333333,1,1,0,0,0,1,2,0,962,0,0,0,0,0,0,769.68787 +8448,10266,18352,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.2653656,8.2754068,0,0,0,-1122.5605,0,2,2,2021,10,0,48,58,1,0,0,9.5386915,9.5386915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.74,50.46,-9,-9,5,1,1,0,0,14,9,4,1,515,277681.13,91121.203,251261.89,462.1221,0,1499.8793,646.35339 +8448,10267,18353,-9,18352,-9,1,1,24,0,0,0,1,1,-9,0,3,8.2794447,7.9509006,0,0,0,-956.7605,0,1,-9,2021,15,3,38,38,1,3,1,9.6790771,9.6790771,0,0,0,0,0,0,0,0,0,0,0,.54717457,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,716,-9605.6025,0,0,0,0,0,763.81812 +8448,10268,18354,-9,18352,-9,1,0,19,0,0,0,2,2,-9,0,3,5.0940166,5.7994699,4.5389109,0,0,-1097.5383,0,1,-9,2021,10,0,24,24,1,0,1,.94056308,.94056308,0,0,0,0,0,0,0,0,0,0,0,5.1057343,0,47.55,55.06,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1032,-38401.238,0,0,0,0,0,2.5488963 +8449,10269,18355,18356,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.5817089,8.6968002,0,15,-1,33.008816,0,3,-9,2021,9,2,40,38,1,2,0,19.009333,19.009333,.05,.05,0,0,0,0,0,0,1,1,0,3.4613972,0,53.77,47.24,38.51,59.43,6.666666666666667,1,1,0,0,11,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18356,18355,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.786891,8.7427378,0,15,1,-59.487556,0,2,-9,2021,14,3,42,45,1,3,0,16.461102,16.461102,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.77,47.24,6.666666666666667,1,1,0,0,11,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18357,-9,18355,18356,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3998,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18358,-9,18355,18356,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0052,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8450,10270,18359,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5980196,8.7992144,6.0413527,0,0,-1030.6807,0,3,3,2021,22,10,40,38,1,10,0,18.678968,18.678968,.05,.05,0,0,0,0,0,0,1,1,0,6.0958519,0,40.71,62.41,-9,-9,3.333333333333333,1,1,0,1,5,8,4,0,676.5,609690.19,355704.16,267778.06,100496.8,0,0,2620.2441 +8450,10270,18360,-9,18359,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.85614,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,0,676.5,609690.19,355704.16,267778.06,100496.8,0,0,2620.2441 +8451,10271,18361,18362,-9,-9,1,0,43,0,2,0,3,3,-9,0,5,0,0,0,1,2,-6.1699905,-9,2,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,57.33,53.46,10,1,1,0,0,2,6,5,1,549,1240461.5,414709.94,746231.75,0,0,0,4581.377 +8451,10271,18362,18361,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,9.6725349,9.4416628,0,1,-2,20.281179,-9,2,2,2021,9,0,60,0,1,0,0,28.890125,28.890125,0,0,0,0,0,0,0,0,0,0,0,3.6587203,0,57.33,53.46,48.77,60.16,8.333333333333334,1,1,0,0,7,6,5,1,549,1240461.5,414709.94,746231.75,0,0,0,4581.377 +8452,10272,18363,18364,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.3628883,8.1716223,0,3,10,97.806595,0,-9,-9,2021,25,10,36,36,1,10,0,12.477496,12.477496,0,0,0,0,0,0,0,0,1,1,0,0,0,22.33,50.64,47.57,51.43,3.333333333333333,1,1,0,1,3,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8452,10272,18364,18363,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.3171296,7.4595013,0,3,-10,-23.610403,0,2,3,2021,17,5,23,24,1,5,0,7.0910711,7.0910711,0,0,0,0,0,0,0,0,1,1,0,0,0,47.57,51.43,22.33,50.64,1.666666666666667,1,1,0,0,5,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8452,10272,18365,-9,18364,18363,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.06677,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8453,10273,18366,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,8.4880304,8.5009317,0,0,0,-978.85156,0,2,2,2021,27,11,41,35,1,11,0,13.925117,13.925117,.05,.05,0,0,0,0,0,2,0,0,0,3.5380695,0,32.32,54.65,-9,-9,1.666666666666667,1,1,0,1,9,4,5,1,1275,486265.75,222116.22,183034.58,91260.516,0,0,1530.3586 +8454,10274,18367,-9,18368,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5514,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,226,-27650.281,-16485.105,0,0,0,0,1651.5668 +8454,10274,18368,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.9396181,6.8220873,0,0,0,-1178.7893,0,-9,-9,2021,13,1,21,16,1,1,0,5.0712147,5.0712147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.21,51.34,-9,-9,5,4,2,0,0,3,6,2,0,226,-27650.281,-16485.105,0,0,0,0,1651.5668 +8455,10275,18369,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.371273,5.4829693,0,0,-970.50415,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9439473,5.2418895,55.39,54.22,-9,-9,10,1,1,0,0,0,6,2,1,503,98238.242,0,90912.891,0,0,0,1380.3829 +8456,10276,18370,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,3,0,6.2583275,6.1180058,0,0,-1023.2203,0,2,1,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2924752,0,37.94,57.43,-9,-9,10,4,2,0,0,0,4,2,0,633,96771.703,154587.83,0,0,0,1221.6636,437.9523 +8457,10277,18371,18372,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.8439722,8.000102,0,29,-12,-15.251558,0,3,-9,2021,9,0,53,0,1,0,0,7.0730996,7.0730996,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,38.34,20.38,8.333333333333334,1,1,0,0,8,6,3,0,2851.5,425228.19,171889.25,123309.9,0,0,0,2519.604 +8457,10277,18372,18371,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,29,12,-14.298461,0,2,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,43.061432,0,0,1,1,0,0,0,38.34,20.38,58.15,52.91,0,1,1,0,1,0,6,3,0,2851.5,425228.19,171889.25,123309.9,0,0,0,2519.604 +8457,10278,18373,-9,18371,18372,1,0,19,0,0,0,2,2,1,0,3,6.8351369,6.7999654,0,0,0,-932.24133,-9,3,3,2021,15,3,21,0,1,3,1,4.3429012,4.3429012,0,0,0,0,0,0,0,2,1,1,0,0,0,33.08,49.65,-9,-9,3.333333333333333,1,1,0,0,1,6,2,0,87,-7761.2061,0,0,0,0,0,772.68024 +8457,10279,18374,-9,18371,18372,1,1,18,0,0,0,2,2,-9,0,3,7.4225945,7.3577948,0,0,0,-957.04486,0,3,3,2021,11,1,45,0,1,1,1,4.7287931,4.7287931,0,0,0,0,0,0,0,0,1,1,0,5.1083455,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,778,168230.86,0,0,0,0,0,816.78619 +8458,10280,18375,18376,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6573997,7.4342046,0,5,-2,-19.153496,-9,-9,2,2021,13,1,28,0,1,1,0,9.8370371,9.8370371,.05,.05,0,0,0,0,0,0,1,1,0,2.2920859,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,6,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18376,18375,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.7028742,9.0237246,0,5,2,-92.198608,-9,-9,-9,2021,11,0,43,0,1,0,0,12.222392,12.222392,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.24,58.84,10,1,1,0,0,10,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18377,-9,18375,18376,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.8145,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18378,-9,18375,18376,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1070.5875,-9,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,57.75,-9,-9,10,1,1,0,0,0,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8459,10281,18379,18380,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0044193,8.9135218,0,8,3,77.346321,0,2,2,2021,10,1,35,35,1,1,0,26.457115,26.457115,.05,.05,0,0,0,0,0,0,0,0,0,7.1749496,0,55.79,52.62,54.51,44.28,8.333333333333334,1,1,0,0,13,6,5,1,1660.5,192606.94,-26284.311,102571.84,25860.162,0,0,6245.7915 +8459,10281,18380,18379,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.3583097,8.2752724,0,8,-3,-39.601238,0,-9,-9,2021,11,0,25,22,1,0,0,21.594908,21.594908,.05,.05,0,0,0,0,0,0,0,0,0,6.7278237,0,54.51,44.28,55.79,52.62,5,1,1,0,0,14,6,5,1,1660.5,192606.94,-26284.311,102571.84,25860.162,0,0,6245.7915 +8460,10282,18381,-9,18382,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.991,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,2157,44848.949,0,0,0,0,-15.555603,2889.448 +8460,10282,18382,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,7.3873262,7.9763827,6.4782386,0,0,-925.35565,0,2,2,2021,23,11,53,58,1,11,0,4.0913358,4.0913358,0,0,0,0,0,0,0,0,1,1,0,7.13662,0,30.91,22.6,-9,-9,3.333333333333333,1,1,0,0,13,9,3,1,2157,44848.949,0,0,0,0,-15.555603,2889.448 +8461,10283,18383,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.6320734,8.7077465,0,0,0,-1101.1387,0,2,3,2021,6,0,75,38,1,0,0,7.0317831,7.0317831,.05,.05,0,0,0,0,0,0,0,0,0,7.0700412,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,1617,-77609.227,-31336.324,0,0,0,0,1720.8102 +8462,10284,18384,18385,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.2213764,8.1838713,0,20,2,36.028343,0,2,2,2021,12,0,40,39,1,0,0,10.585616,10.585616,.05,.05,0,0,0,0,0,0,0,0,0,7.8398733,0,50.51,42.98,60.12,54.8,8.333333333333334,2,3,0,0,9,12,5,1,1319,264227.28,217724.38,179209.16,151267.55,352.08926,5518.7368,4844.3086 +8462,10284,18385,18384,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.9676704,8.9226484,0,20,-2,62.598927,0,3,3,2021,6,0,39,38,1,0,0,22.280203,22.280203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,50.51,42.98,8.333333333333334,2,3,0,0,10,12,5,1,1319,264227.28,217724.38,179209.16,151267.55,352.08926,5518.7368,4844.3086 +8463,10285,18386,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.590487,7.6972775,0,0,-1017.7828,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0439095,7.5078201,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,247,1049460.5,135114.67,953072.25,0,0,0,2553.5808 +8464,10286,18387,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.1119795,7.0008426,0,0,0,-949.85596,0,2,2,2021,8,0,50,60,1,0,0,2.2663651,2.2663651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,-9,-9,3.333333333333333,1,1,0,1,9,9,2,1,545,271818.16,38538.707,304077.53,0,0,0,-60.656269 +8465,10287,18388,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1069.089,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,40,-9,-9,5,1,1,0,0,0,5,1,0,1920,0,0,0,0,0,0,890.55109 +8466,10288,18389,18390,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.233408,7.8500237,0,2,0,61.679859,0,-9,-9,2021,8,0,40,39,1,0,0,10.359727,10.359727,.05,.05,0,0,0,0,0,0,0,0,0,5.8865886,0,63.98,40.76,45.91,59.89,10,1,1,0,0,1,2,5,1,873,98793.523,18515.904,116636.31,69732.156,-363.59775,-.011123657,3590.3865 +8466,10288,18390,18389,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.7599945,8.431551,0,2,0,44.653759,0,2,3,2021,12,0,46,45,1,0,0,11.655916,11.655916,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,63.98,40.76,8.333333333333334,1,1,0,0,15,2,5,1,873,98793.523,18515.904,116636.31,69732.156,-363.59775,-.011123657,3590.3865 +8467,10289,18391,18392,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.9208541,7.6128407,29,-16,-8.8503971,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5394998,7.4099836,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,6,7,4,1,1602.5,1708914.8,550620.5,840502.13,0,0,0,3757.6338 +8467,10289,18392,18391,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.8640804,8.2574186,26,16,-9.9519253,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7585777,8.1073408,57.33,53.46,58.32,50.22,8.333333333333334,1,1,0,0,0,7,4,1,1602.5,1708914.8,550620.5,840502.13,0,0,0,3757.6338 +8468,10290,18393,18394,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9807415,8.3185778,33,1,26.956923,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3637452,8.3093004,60.27,49.27,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,601.5,2193502,173032.28,855478,0,0,0,4552.3818 +8468,10290,18394,18393,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.6408896,8.1054211,7.5109062,33,-1,-15.407196,0,3,3,2021,7,0,10,11,1,0,0,11.578019,11.578019,0,0,0,0,0,0,0,0,1,1,0,4.4114327,7.9581513,57.16,56.15,60.27,49.27,8.333333333333334,1,1,0,0,9,7,5,1,601.5,2193502,173032.28,855478,0,0,0,4552.3818 +8469,10291,18395,18396,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9984746,7.7218866,49,1,11.989558,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7307386,7.6992669,54.2,57.49,63.48,51.85,8.333333333333334,1,1,0,0,0,4,4,1,561,1208157.5,754912.63,304676.84,0,0,0,2951.7246 +8469,10291,18396,18395,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.764535,7.3661733,49,-1,-44.854416,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6156917,63.48,51.85,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,561,1208157.5,754912.63,304676.84,0,0,0,2951.7246 +8470,10292,18397,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.3045969,8.5530014,0,0,0,-941.28802,0,3,3,2021,10,0,42,35,1,0,0,12.656312,12.656312,0,0,0,0,0,0,0,2,1,1,0,0,0,37.47,56,-9,-9,3.333333333333333,1,1,0,0,8,7,5,1,409,251600.81,-35409.746,170324.67,0,0,0,2535.6548 +8471,10293,18398,-9,18402,18399,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-992.86395,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,2,1,0,330,0,0,0,0,0,0,0 +8471,10294,18399,18402,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.6605024,8.3183107,0,2,7,92.361877,0,-9,-9,2021,12,1,60,55,1,1,0,9.4104052,9.4104052,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,45.18,54.77,5,1,1,0,0,2,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18400,-9,18402,18399,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.4321,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18401,-9,18402,18399,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.83453,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18402,18399,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.7804685,7.4832635,0,2,-7,46.634399,0,2,2,2021,12,0,30,30,1,0,0,10.040448,10.040448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,46.33,55.93,8.333333333333334,1,1,0,0,4,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8472,10295,18403,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,7.1649342,7.0775404,0,0,-1057.6353,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7984004,0,40.72,54.38,-9,-9,10,1,1,0,0,3,4,3,0,169,-121780.77,131025.32,0,0,0,178.36526,910.93347 +8473,10296,18404,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.86145,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9767403,0,55.65,41.83,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,651,20046.941,0,0,0,-1679.0109,0,607.87512 +8474,10297,18405,-9,-9,-9,1,1,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-840.81165,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.277566,0,52.48,55.6,-9,-9,8.333333333333334,2,3,0,0,3,4,1,0,1456,60402.188,0,0,0,0,0,1426.5588 +8475,10298,18406,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.6095238,6.5078826,0,0,-1038.9147,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.756705,6.3832083,42.08,21.69,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,162,261406.77,-36271.93,385545.13,0,0,10163.448,1648.6996 +8476,10299,18407,18408,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.5291848,5.6688375,40,1,27.23748,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7156105,0,0,1,1,0,0,5.6942353,42.35,36.31,38.41,28.6,8.333333333333334,1,1,0,0,0,11,3,1,344,104075.89,9981.0723,0,0,0,0,1949.0081 +8476,10299,18408,18407,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,7.288229,7.3500834,5,-1,56.640671,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5006876,38.41,28.6,42.35,36.31,5,1,1,0,0,9,11,3,1,344,104075.89,9981.0723,0,0,0,0,1949.0081 +8477,10300,18409,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.0742707,8.3660355,8.1445141,0,0,-1065.7705,0,2,2,2021,8,0,25,25,1,0,0,5.1928811,5.1928811,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1984634,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,6,12,4,1,623,53101.438,-18333.674,0,0,8744.6455,0,1970.0345 +8478,10301,18410,18411,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,37,0,-63.221897,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7710576,0,66.09999999999999,42.66,60.12,54.8,10,1,1,0,0,0,9,3,1,678.5,1142269,624656.75,409222.25,0,0,0,2114.7266 +8478,10301,18411,18410,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8322625,7.7787995,37,0,-86.447792,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1549692,7.7016182,60.12,54.8,66.09999999999999,42.66,10,1,1,0,0,0,9,3,1,678.5,1142269,624656.75,409222.25,0,0,0,2114.7266 +8479,10302,18412,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.7881365,5.6276169,0,0,-1072.6516,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1815248,6.0247774,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,383,185379.78,11941.993,163346.59,20844.322,9114.6416,734.06012,2410.5808 +8480,10303,18413,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,5.7825727,5.4117899,0,0,-900.91199,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,.98714161,0,25.254732,0,1,1,0,0,5.4388871,37.56,21.57,-9,-9,5,1,1,0,0,0,13,2,1,1093,-51309.043,168914.39,0,0,0,0,1938.2208 +8481,10304,18414,18417,-9,-9,1,0,35,0,3,0,1,1,-9,0,4,6.9418516,7.1317568,0,8,1,93.93927,0,2,2,2021,6,0,16,0,1,0,0,6.6045828,6.6045828,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.69,57.47,10,1,1,0,0,8,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18415,-9,18414,18417,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.0188,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18416,-9,18414,18417,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-816.31824,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18417,18414,-9,-9,1,1,34,0,3,0,1,1,-9,0,5,9.1119833,8.9384069,0,8,-1,-4.2871265,0,2,2,2021,6,0,40,38,1,0,0,30.525631,30.525631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,8,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8482,10305,18418,18419,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.9621754,9.2060575,6.4354005,26,-3,-73.477097,0,2,2,2021,8,0,30,35,1,0,0,28.977999,28.977999,.05,.05,0,0,0,0,0,0,1,1,0,6.4714456,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18419,18418,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.2283201,8.5628185,0,8,3,79.408028,0,-9,-9,2021,8,1,40,40,1,1,0,13.94793,13.94793,.05,.05,0,0,0,0,0,2,1,1,0,3.6855035,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,6,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18420,-9,18418,18419,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1142.1483,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18421,-9,18418,18419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.6135,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8483,10306,18422,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1023.8326,-9,-9,-9,2021,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.53797823,0,16.74,41.19,-9,-9,3.333333333333333,1,1,0,0,1,1,1,0,1300,78578.195,0,0,0,0,0,573.67303 +8483,10307,18423,18424,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.1787605,8.2260265,0,1,10,74.705902,-9,-9,-9,2021,4,0,70,0,1,0,0,3.6536102,3.6536102,.05,.05,0,0,0,0,0,0,1,1,0,6.2651014,0,47.07,61.06,41.17,52.68,10,1,1,0,0,3,1,5,0,2607.5,-71812.781,107402.89,144937.33,145571.69,7343.4878,0,4888.6553 +8483,10307,18424,18423,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8369665,8.5449438,0,1,-10,31.79114,-9,-9,-9,2021,13,1,98,0,1,1,0,7.3419743,7.3419743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,52.68,47.07,61.06,6.666666666666667,1,1,0,0,2,1,5,0,2607.5,-71812.781,107402.89,144937.33,145571.69,7343.4878,0,4888.6553 +8484,10308,18425,18426,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.8824372,7.8840113,0,39,-1,10.605147,0,2,2,2021,10,1,37,38,1,1,0,11.098395,11.098395,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,0,235,603534.69,272288.84,286275.53,80500.289,10511.203,2705.2266,3486.4805 +8484,10308,18426,18425,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6070061,8.5863266,0,39,1,-97.293449,0,3,3,2021,10,0,43,46,1,0,0,15.40097,15.40097,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,51.24,58.84,5,1,1,0,0,7,7,5,0,235,603534.69,272288.84,286275.53,80500.289,10511.203,2705.2266,3486.4805 +8485,10309,18427,18428,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,5.2932835,4.9804807,0,22,2,42.813709,0,2,1,2021,7,0,60,60,1,0,0,.27933294,.27933294,0,0,0,0,0,0,.78813988,0,1,1,0,1.1794116,0,50.03,52.62,51.41,56.15,6.666666666666667,4,2,0,0,6,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18428,18427,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,5.5847015,5.4680429,0,22,-2,-13.661525,0,2,2,2021,9,0,9,9,1,0,0,2.893867,2.893867,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,50.03,52.62,8.333333333333334,1,1,0,1,7,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18429,-9,18428,18427,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.25378,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18430,-9,18428,18427,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.88525,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8486,10310,18431,18432,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.5542746,9.8861885,7.2326856,38,1,-.9962967,0,2,2,2021,12,3,35,40,1,3,0,53.649654,53.649654,0,0,0,0,0,0,0,0,0,0,0,7.6192636,8.1225376,55.51,30.31,44.19,58.01,8.333333333333334,1,1,0,0,8,6,5,1,522.5,3410370.3,1806318,1035788,0,0,0,7036.2197 +8486,10310,18432,18431,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,38,-1,77.402405,0,3,2,2021,16,5,0,20,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7176738,0,44.19,58.01,55.51,30.31,8.333333333333334,1,1,0,0,6,6,5,1,522.5,3410370.3,1806318,1035788,0,0,0,7036.2197 +8487,10311,18433,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.759819,7.5530233,0,0,0,-914.58887,-9,-9,-9,2021,14,3,3,0,1,3,0,72.592911,72.592911,0,0,0,0,0,0,0,0,1,1,0,6.0356207,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,241,406733.31,0,528074.44,0,0,0,649.53223 +8488,10312,18434,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.5878968,7.7257962,5.520669,0,0,-997.53906,0,1,2,2021,10,0,16,17,1,0,0,15.845795,15.845795,.05,.05,0,0,0,0,0,2,1,1,0,5.9294372,0,48.2,44.16,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8488,10312,18435,-9,18434,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.48431,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8488,10312,18436,-9,18434,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.98505,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3319975,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8489,10313,18437,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1050.1252,0,2,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,20.59,47.81,-9,-9,5,1,1,0,1,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8489,10313,18438,-9,18437,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.7562,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8489,10313,18439,-9,18437,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.09314,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8490,10314,18440,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,2.9738076,2.9890726,0,0,-1080.3745,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0562444,2.9531479,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,2323,-56149.934,-13065.036,0,0,0,0,1306.7875 +8491,10315,18441,18442,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,32,-1,0,0,1,1,2021,5,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3918762,0,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,12,7,1,1,1600,1260518.5,8160.5137,514432.69,0,0,0,3812.3623 +8491,10315,18442,18441,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,32,1,0,0,2,2,2021,4,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4923353,0,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,7,1,1,1600,1260518.5,8160.5137,514432.69,0,0,0,3812.3623 +8491,10316,18443,-9,18441,18442,1,0,20,0,0,0,1,1,1,0,4,8.2825537,8.4034452,0,0,0,-1002.6163,-9,1,1,2021,7,1,38,0,1,1,0,13.266737,13.266737,0,0,0,0,0,0,0,0,0,0,0,4.6555228,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,346,-161756.17,0,0,0,0,0,1214.4847 +8491,10317,18444,-9,18441,18442,1,1,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-927.17157,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5585468,0,37.07,46.74,-9,-9,5,1,1,1,0,0,7,1,1,409,0,0,0,0,0,0,-384.93469 +8492,10318,18445,18446,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.1865959,9.1781321,0,13,-4,165.15826,0,2,2,2021,16,4,41,40,1,4,0,27.586744,27.586744,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,28.97,59.76,8.333333333333334,1,1,0,0,14,11,5,1,912,374872.06,105460.71,73947.703,48918.535,24691.063,0,6220.6929 +8492,10318,18446,18445,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0033188,9.0573416,0,3,4,-42.594013,0,-9,-9,2021,23,9,42,37,1,9,0,19.847515,19.847515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.97,59.76,41.23,51.32,1.666666666666667,1,1,0,0,7,11,5,1,912,374872.06,105460.71,73947.703,48918.535,24691.063,0,6220.6929 +8493,10319,18447,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.0055332,9.2035961,7.2741838,0,0,-993.25861,0,1,2,2021,12,0,50,56,1,0,0,20.908598,20.908598,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8610091,48.71,61.53,-9,-9,3.333333333333333,1,1,0,0,11,13,5,1,991,1035506.1,809404,344646.25,184992.61,0,0,3076.3027 +8494,10320,18448,18449,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.0615377,9.3744555,0,7,-7,96.427048,0,2,2,2021,6,0,37,39,1,0,0,31.013393,31.013393,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,63.89,45.4,8.333333333333334,1,1,0,0,8,9,5,1,1321.5,1150987.8,177724.05,737927.63,66957.172,0,0,4682.3359 +8494,10320,18449,18448,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.8191247,6.6392179,0,7,7,56.069443,0,2,3,2021,7,0,72,56,1,0,0,1.6494299,1.6494299,.05,.05,0,1,0,0,0,0,1,1,0,6.8567019,0,63.89,45.4,61.01,53.18,6.666666666666667,1,1,0,0,8,9,5,1,1321.5,1150987.8,177724.05,737927.63,66957.172,0,0,4682.3359 +8494,10321,18450,-9,18449,18448,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-988.98248,-9,3,1,2021,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0761259,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,950,79422.609,0,0,0,0,0,-159.38751 +8495,10322,18451,18452,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.8659263,8.0747814,51,-3,-167.76578,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.1678693,7.7227354,48.85,51.81,47.31,37.56,8.333333333333334,1,1,0,0,0,2,3,1,802,681556.75,356006.44,16735.334,0,25128.555,0,2770.3071 +8495,10322,18452,18451,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.4590387,6.0536838,51,3,81.86338,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5198302,6.099165,47.31,37.56,48.85,51.81,3.333333333333333,1,1,0,0,0,2,3,1,802,681556.75,356006.44,16735.334,0,25128.555,0,2770.3071 +8496,10323,18453,-9,18456,18455,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.8421,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18454,-9,18456,18455,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.7558,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18455,18456,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.6370907,8.525568,0,6,0,-32.817371,0,2,2,2021,15,4,40,42,1,4,0,18.486357,18.486357,.05,.05,0,0,0,0,0,0,1,1,0,.51720166,0,43.6,54.11,51.24,58.84,3.333333333333333,4,2,0,0,7,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18456,18455,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7787418,8.7255316,0,6,0,-36.192921,0,2,2,2021,12,2,50,28,1,2,0,13.008342,13.008342,.05,.05,0,0,0,0,.72778934,0,1,1,0,1.4545875,0,51.24,58.84,43.6,54.11,8.333333333333334,1,1,0,0,7,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8497,10324,18457,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.917707,8.2859097,7.2157955,0,0,-924.4071,0,3,3,2021,10,0,24,24,1,0,0,18.677397,18.677397,.05,.05,0,0,0,0,0,7,0,0,0,7.2633119,7.0415349,58.15,52.91,-9,-9,10,1,1,0,0,13,6,5,1,2151,445365.81,-17350.096,133198.25,0,-165.18231,2372.5913,2252.8623 +8498,10325,18458,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-848.95135,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,49.39,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,461,152487.39,100083.15,0,0,0,0,1090.0872 +8499,10326,18459,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6239014,7.4136276,0,0,0,-1139.1078,0,2,3,2021,10,1,40,40,1,1,0,5.4357104,5.4357104,.05,.05,0,0,0,0,0,0,1,1,0,1.0432363,0,53.39,52.35,-9,-9,8.333333333333334,3,4,0,0,9,5,3,0,1082.5,53544.352,-38341.281,0,0,0,0,1626.511 +8499,10326,18460,-9,18459,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.43579,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,1082.5,53544.352,-38341.281,0,0,0,0,1626.511 +8500,10327,18461,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.5277686,7.5720348,0,0,-982.13861,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3008785,53,47,-9,-9,8,1,1,0,0,0,13,3,1,772,473268.06,189361.88,41327.523,0,0,0,1639.8621 +8501,10328,18462,18465,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.7484951,9.0020237,0,15,-2,-59.140106,0,2,2,2021,9,0,35,35,1,0,0,20.19903,20.19903,.05,.05,0,0,0,0,0,0,1,1,0,1.3994484,0,54.96,53.17,48.28,60.18,8.333333333333334,2,3,0,0,10,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18463,-9,18465,18462,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.8324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18464,-9,18465,18462,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2148,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18465,18462,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.1648531,7.7457528,0,15,2,-5.7152257,0,2,2,2021,8,0,25,25,1,0,0,14.876877,14.876877,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.96,53.17,8.333333333333334,2,3,0,0,6,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8502,10329,18466,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4229088,8.728713,0,0,0,-946.30426,0,1,1,2021,11,2,35,36,1,2,0,17.991257,17.991257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,6.666666666666667,1,1,0,0,14,12,5,0,609,144942.94,143944.22,202277.67,0,19396.725,0,1291.2566 +8503,10330,18467,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.9803748,8.3253803,0,0,-966.47473,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.0772305,8.0420952,55.12,39.4,-9,-9,10,1,1,0,0,0,10,4,1,311,1806366.3,486154.22,995894.56,0,0,0,2431.0972 +8504,10331,18468,18469,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.6973419,8.4838123,0,6,2,31.806561,0,2,2,2021,8,0,38,38,1,0,0,21.88912,21.88912,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,51.65,52.38,8.333333333333334,3,4,0,1,7,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18469,18468,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.3828926,8.3890066,0,6,-2,-156.71854,0,3,3,2021,16,6,90,60,1,6,0,6.7570133,6.7570133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,58.47,50.22,5,3,4,0,0,7,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18470,-9,18468,18469,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.9908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18471,-9,18468,18469,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1118,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8505,10332,18472,-9,18474,18473,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1089.1938,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,0,0,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8505,10332,18473,18474,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.6109447,8.6138992,0,21,2,98.910805,0,2,1,2021,15,3,38,73,1,3,0,17.833403,17.833403,.05,.05,.05,0,0,0,0,0,1,1,0,4.255794,0,38.37,51.52,45.91,59.89,3.333333333333333,1,1,0,0,14,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8505,10332,18474,18473,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.994194,7.8744154,0,21,-2,-26.301746,0,2,1,2021,12,1,24,27,1,1,0,14.762998,14.762998,.05,.05,0,0,0,0,0,0,1,1,0,5.9618297,0,45.91,59.89,38.37,51.52,5,1,1,0,0,13,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8506,10333,18475,-9,18476,18477,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-948.63019,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8506,10333,18476,18477,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,6.014318,5.7570691,1,-7,18.10763,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,6.5518074,0,35.67,48.56,48.8,49.1,5,1,1,0,1,4,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8506,10333,18477,18476,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.2117691,8.2435131,0,1,7,8.5174198,-9,-9,-9,2021,10,0,40,0,1,0,0,9.3838253,9.3838253,0,0,0,0,0,0,0,0,1,0,1,0,0,48.8,49.1,35.67,48.56,8.333333333333334,1,1,0,0,10,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8507,10334,18478,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.680501,8.9640322,0,0,0,-1080.6526,0,2,2,2021,6,0,98,98,1,0,0,8.389863,8.389863,.05,.05,0,0,0,0,0,28,1,1,0,7.1501789,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,11,5,1,1655,1527369.4,1171553.8,116853.23,0,0,0,3100.6692 +8507,10335,18479,-9,18478,-9,1,1,28,0,0,0,1,1,-9,0,4,7.478157,7.3941174,0,0,0,-940.56348,0,1,-9,2021,12,0,30,35,1,0,1,6.7615337,6.7615337,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,384,42691.273,0,0,0,0,0,1372.0048 +8507,10336,18480,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1153.6342,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.39,54.22,-9,-9,10,1,1,0,0,0,11,1,1,296,-233998.33,0,0,0,240.63039,60.919838,1202.8979 +8507,10337,18481,-9,-9,-9,1,1,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1000.0663,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,10,1,1,0,0,0,11,1,1,970,17710.453,0,0,0,0,0,1921.1323 +8508,10338,18482,18483,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.7555375,7.8816147,0,4,-7,139.24423,0,-9,-9,2021,11,1,30,24,1,1,0,7.9226594,7.9226594,0,0,0,0,0,0,0,0,0,0,0,4.7004161,0,48.56,48.19,55.79,52.62,8.333333333333334,1,1,0,0,12,11,4,0,493,350393.06,185204.47,143658.69,0,12642.68,-319.16919,2038.2668 +8508,10338,18483,18482,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.8606586,8.1297436,0,4,7,-47.561218,0,3,2,2021,6,0,37,38,1,0,0,8.3134871,8.3134871,0,0,0,0,0,0,0,0,0,0,0,6.2190723,0,55.79,52.62,48.56,48.19,8.333333333333334,1,1,0,0,9,11,4,0,493,350393.06,185204.47,143658.69,0,12642.68,-319.16919,2038.2668 +8509,10339,18484,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.8831387,5.9999261,0,0,-1020.8988,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,8.0533113,0,0,1,1,0,0,5.8700876,68.94,17.02,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,211,362642.09,150100.36,248056.23,0,0,0,1333.5596 +8510,10340,18485,18487,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,8.0949373,7.9777479,0,7,10,71.220573,0,2,2,2021,9,0,40,35,1,0,0,7.0596304,7.0596304,.05,.05,0,0,0,0,0,0,1,1,0,.95920342,0,58.32,50.22,48.18,61.8,10,1,1,0,0,10,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8510,10340,18486,-9,18487,18485,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-947.1012,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8510,10340,18487,18485,-9,-9,1,0,26,1,1,0,1,1,-9,0,5,7.8125081,8.0976582,0,7,-10,-21.62097,0,-9,-9,2021,11,0,22,38,1,0,0,12.453859,12.453859,.05,.05,0,0,0,0,0,0,1,1,0,1.365398,0,48.18,61.8,58.32,50.22,5,1,1,0,0,10,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8511,10341,18488,18489,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.7370286,7.7593436,0,9,-4,82.532578,0,-9,-9,2021,24,12,25,26,1,12,0,7.1102862,7.1102862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.02,37.37,42.61,49.31,5,1,1,0,0,9,4,3,1,3442,225214.67,-20094.445,173592.7,0,0,0,1663.5925 +8511,10341,18489,18488,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.3484473,7.4608045,0,9,4,-20.749531,0,3,2,2021,17,4,42,42,1,4,0,6.527741,6.527741,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.61,49.31,37.02,37.37,6.666666666666667,1,1,0,0,12,4,3,1,3442,225214.67,-20094.445,173592.7,0,0,0,1663.5925 +8511,10342,18490,-9,18488,18489,1,1,25,0,0,0,2,2,-9,0,3,8.2988873,8.3632765,0,0,0,-1101.6204,0,2,2,2021,14,3,47,40,1,3,1,9.1736174,9.1736174,.05,.05,0,0,0,0,0,0,0,0,0,.43637463,0,29.57,58.13,-9,-9,5,1,1,0,0,7,4,4,1,1944,-78891.039,-91084.438,0,0,5504.3223,0,2335.6006 +8512,10343,18491,18492,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.6381149,7.7842827,0,7,7,-44.815159,0,3,3,2021,20,6,50,40,1,6,0,6.7561202,6.7561202,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,52,46.54,52.96,6.666666666666667,1,1,0,0,5,11,4,0,244.5,-30248.693,11673.053,0,0,0,0,2043.7218 +8512,10343,18492,18491,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.8081198,7.7816596,0,7,-7,-114.44884,0,3,3,2021,12,0,40,50,1,0,0,6.6758466,6.6758466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.54,52.96,47,52,6.666666666666667,1,1,0,0,10,11,4,0,244.5,-30248.693,11673.053,0,0,0,0,2043.7218 +8513,10344,18493,18494,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9729939,8.3252115,7.9219394,39,-5,59.555683,-9,3,3,2021,6,0,37,0,1,0,0,8.2592974,8.2592974,0,0,0,0,0,0,0,0,1,1,0,.81302279,7.5606804,58.5,47.34,57.76,54.51,10,3,4,0,0,13,6,5,1,268,539883.88,175062.5,292990.69,0,0,0,5145.999 +8513,10344,18494,18493,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,9.0481186,8.5245657,0,38,5,-91.029045,-9,-9,-9,2021,6,0,40,0,1,0,0,23.884102,23.884102,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.76,54.51,58.5,47.34,10,3,4,0,0,13,6,5,1,268,539883.88,175062.5,292990.69,0,0,0,5145.999 +8513,10345,18495,-9,18493,18494,1,0,28,0,0,0,1,1,0,0,3,0,0,0,0,0,-920.10571,-9,2,3,2021,23,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.15,51.76,-9,-9,6.666666666666667,3,4,0,0,3,6,1,1,381,-81787.164,0,0,0,0,0,763.94067 +8514,10346,18496,18497,-9,-9,1,1,91,0,0,0,2,2,-9,0,2,0,7.6424642,7.1437149,69,3,-80.625015,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.8064675,7.6794634,54.61,51.04,29.77,41.95,5,1,1,0,0,0,6,2,1,1535,397016.66,47436.359,47705.953,0,0,0,2442.9932 +8514,10346,18497,18496,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,69,-3,-89.753342,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,18.820791,0,0,1,1,0,.84020537,0,29.77,41.95,54.61,51.04,6.666666666666667,1,1,0,0,0,6,2,1,1535,397016.66,47436.359,47705.953,0,0,0,2442.9932 +8515,10347,18498,18499,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,4.6946812,4.8403134,0,10,-2,19.430845,0,-9,-9,2021,12,0,13,11,1,0,0,.86700034,.86700034,0,0,0,0,0,0,0,0,0,0,0,0,0,34.96,54.38,50,49,5,1,1,0,0,10,7,2,1,601,35512.52,0,0,0,0,0,3716.1357 +8515,10347,18499,18498,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4167628,7.1676559,0,10,2,-125.38433,0,-9,-9,2021,11,0,60,60,1,1,0,2.582067,2.582067,0,0,0,0,0,0,0,0,0,0,0,.91822767,0,50,49,34.96,54.38,7,1,1,0,0,1,7,2,1,601,35512.52,0,0,0,0,0,3716.1357 +8516,10348,18500,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.3786006,7.1441436,0,0,-992.91687,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0027652,6.8401141,62.11,48.33,-9,-9,10,1,1,0,0,0,13,2,1,429,417092.84,47356.066,203088.66,0,0,0,951.41309 +8517,10349,18501,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1017.5793,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,1,1,0,0,8,11,1,1,907,-59713.039,0,0,0,0,0,0 +8518,10350,18502,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.7465,8.9987116,0,0,0,-984.58215,0,1,2,2021,15,3,59,45,1,3,0,16.382612,16.382612,.05,.05,0,0,0,0,0,0,0,0,0,3.4664977,0,52.83,56.93,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,177,46855.785,-93200.445,0,0,0,0,2540.8694 +8519,10351,18503,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8130665,7.6973734,0,0,0,-937.52545,-9,3,3,2021,10,0,36,0,1,1,0,6.1929507,6.1929507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,3,4,0,0,11,8,3,1,92,84585.047,73749.883,0,0,0,0,1408.962 +8520,10352,18504,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1062.1002,-9,2,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,1,0,0,12,1,1,1076,83341.867,0,0,0,0,0,-311.17291 +8521,10353,18505,18506,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1477795,8.1403389,0,2,4,-42.914688,0,2,2,2021,6,0,44,44,1,0,0,10.572884,10.572884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,57.06,57.76,10,1,1,0,0,8,10,4,1,716.5,38947.746,70646.578,0,0,0,0,3057.8521 +8521,10353,18506,18505,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.1506596,7.8927546,0,2,-4,-61.142467,0,-9,-9,2021,9,0,22,38,1,0,0,15.89445,15.89445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.34,56.62,10,1,1,0,0,8,10,4,1,716.5,38947.746,70646.578,0,0,0,0,3057.8521 +8522,10354,18507,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.787591,7.7955389,0,0,0,-1153.6428,0,3,2,2021,27,12,35,35,1,12,0,8.3534727,8.3534727,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.26,52.16,-9,-9,1.666666666666667,1,1,0,1,11,11,3,1,380,304776.16,186209.17,0,0,0,0,709.07709 +8523,10355,18508,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.2431021,9.2625723,0,0,0,-833.16296,0,2,2,2021,8,0,37,75,1,0,0,23.982988,23.982988,.05,.05,0,0,0,0,0,0,1,1,0,4.6990838,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,212,1011711.9,579564.5,257974.22,0,0,0,3992.8848 +8524,10356,18509,-9,18513,18510,1,1,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1028.8102,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18510,18513,-9,-9,1,1,46,1,3,0,2,2,-9,0,2,9.1390076,9.32374,0,2,17,175.94987,0,-9,-9,2021,17,6,52,50,1,6,0,25.83672,25.83672,0,0,0,0,0,0,0,0,1,1,0,2.9896088,0,43.95,53.15,54.77,55.87,6.666666666666667,1,1,0,0,2,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18511,-9,18513,18510,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.90643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18512,-9,18513,18510,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.2211,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18513,18510,-9,-9,1,0,29,1,3,0,2,2,-9,1,4,7.9486117,7.949616,0,2,-17,-149.54974,0,2,2,2021,9,0,25,15,1,0,0,10.00321,10.00321,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,43.95,53.15,8.333333333333334,1,1,0,0,1,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8525,10357,18514,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.0518508,7.0025826,0,0,0,-988.31909,-9,-9,-9,2021,10,0,27,0,1,0,0,6.4915004,6.4915004,0,0,0,0,0,0,.22045384,0,0,0,0,0,0,48.12,42.71,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,618,177775.41,0,0,0,-1618.0199,0,427.7861 +8526,10358,18515,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.8562713,7.6872082,0,0,0,-1027.7241,0,3,3,2021,6,0,36,36,1,0,0,8.8049192,8.8049192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,11,13,3,1,322,199696.48,338817.66,0,0,0,0,876.79492 +8527,10359,18516,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.5998898,9.7555714,4.6581545,31,2,41.426899,0,3,3,2021,15,4,35,35,1,4,0,51.04171,51.04171,0,0,0,0,0,0,0,0,1,1,0,5.4600868,5.0775352,49.04,55.86,59.04,54.12,8.333333333333334,1,1,0,0,10,9,5,1,1274,2314983,1449210.5,436769.38,0,0,0,9250.6826 +8527,10360,18517,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.6071916,7.6865549,31,-2,-23.767904,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4315813,7.5886946,59.04,54.12,49.04,55.86,10,1,1,0,0,8,9,5,1,1328,681393.06,281798.91,330841.41,0,0,0,766.94397 +8528,10361,18518,18519,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2695093,8.3558836,0,3,-4,-68.078209,0,2,2,2021,13,2,37,37,1,2,0,11.310102,11.310102,0,0,0,0,0,0,0,0,0,0,0,2.3697855,0,46.85,60.98,25.37,63.98,3.333333333333333,1,1,0,0,6,10,5,1,662.5,194157.14,306405,0,0,0,0,3333.179 +8528,10361,18519,18518,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.169035,8.2610006,0,3,4,14.877286,0,-9,-9,2021,20,7,38,39,1,7,0,12.926438,12.926438,0,0,0,0,0,0,0,0,0,0,0,3.4415655,0,25.37,63.98,46.85,60.98,1.666666666666667,1,1,0,0,7,10,5,1,662.5,194157.14,306405,0,0,0,0,3333.179 +8529,10362,18520,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.9495544,6.9498329,0,0,-882.87494,0,2,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.632072,6.9366698,58.2,54.53,-9,-9,6.666666666666667,1,1,0,0,6,7,2,1,629,367675.88,32780.676,276671.59,254115.56,0,0,1948.0232 +8530,10363,18521,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4568901,8.6912756,0,0,0,-1026.6366,0,3,3,2021,18,6,42,40,1,6,0,15.498775,15.498775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,1074,-44203.383,5719.8398,72503.023,69051.141,0,0,2615.2202 +8530,10363,18522,-9,18521,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.3445,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,1074,-44203.383,5719.8398,72503.023,69051.141,0,0,2615.2202 +8531,10364,18523,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.9237895,7.9661989,0,0,0,-992.64923,0,2,1,2021,15,3,35,5,1,3,0,8.322649,8.322649,0,0,.05,0,0,0,0,0,0,0,0,6.2469716,0,50.04,49.76,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,929,983735.19,-4999.9878,366689.88,0,0,1451.4218,1683.3594 +8532,10365,18524,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.7580132,7.9488044,0,0,0,-1128.5439,0,3,3,2021,12,2,40,44,1,2,0,7.8360763,7.8360763,0,0,0,0,0,0,0,0,1,1,0,0,0,39.85,55.83,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,895,-108860.76,0,0,0,0,0,1514.9036 +8533,10366,18525,18526,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.6494279,5.398035,61,3,-83.903351,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.548202,5.3735704,66.77,36.75,60.12,54.8,10,1,1,0,0,0,10,2,1,1100.5,478703.56,150129.3,255323.13,0,0,0,845.05481 +8533,10366,18526,18525,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,61,-3,131.60457,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,66.77,36.75,8.333333333333334,1,1,0,0,0,10,2,1,1100.5,478703.56,150129.3,255323.13,0,0,0,845.05481 +8533,10367,18527,-9,18526,18525,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.82587,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1966431,0,44.07,32.5,-9,-9,5,1,1,0,0,0,10,1,1,486,107704.84,85756.938,0,0,0,1782.6967,641.07648 +8534,10368,18528,18529,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.607337,7.7055469,54,0,-62.818764,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7785354,57.03,45.36,44.93,31.16,8.333333333333334,1,1,0,0,11,11,3,1,570.5,876568.44,257304.17,111004.78,0,0,0,2737.4072 +8534,10368,18529,18528,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.0221753,6.347147,54,0,45.710278,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1783811,6.4233322,44.93,31.16,57.03,45.36,8.333333333333334,1,1,0,0,0,11,3,1,570.5,876568.44,257304.17,111004.78,0,0,0,2737.4072 +8535,10369,18530,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.862154,7.2081294,0,0,-945.18427,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7200146,6.9234624,54.19,42.36,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,660,227040.88,156889.64,0,0,0,990.16559,-188.30202 +8536,10370,18531,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8829155,8.834465,0,0,0,-930.90045,0,3,2,2021,12,0,40,45,1,0,0,19.840002,19.840002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,403,111.72207,15562.614,0,0,0,-400.6535,2632.4546 +8536,10371,18532,-9,18531,-9,1,1,27,0,0,0,1,1,-9,0,5,7.6592121,7.488142,0,0,0,-996.40302,0,2,-9,2021,2,0,22,16,1,0,1,9.6063719,9.6063719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,3217,-97566.922,30526.182,0,0,0,0,427.08456 +8536,10372,18533,-9,18531,-9,1,1,24,0,0,0,2,2,-9,0,4,8.0734978,7.9154077,0,0,0,-1222.4464,0,2,-9,2021,3,0,40,40,1,0,1,8.9175434,8.9175434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.58,45.78,-9,-9,10,3,4,0,0,3,8,4,1,1188,50425.004,128511.85,0,0,0,0,1614.6659 +8537,10373,18534,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.2620087,6.3721871,0,0,-968.01581,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5884423,6.0897932,54,44,-9,-9,8,1,1,0,0,0,6,2,1,593,266335.31,9289.5137,0,0,0,0,1383.7717 +8538,10374,18535,18536,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9016523,7.9584513,0,22,0,-136.54512,-9,-9,-9,2021,8,0,20,0,1,0,0,13.318385,13.318385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,7,4,5,1,627,601661.13,399303.69,144570.16,20322.676,0,0,5426.1328 +8538,10374,18536,18535,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.8746548,9.0025978,0,21,0,128.38074,-9,-9,-9,2021,6,0,38,0,1,0,0,22.421192,22.421192,.05,.05,0,0,0,0,0,0,0,0,0,7.2947145,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,5,4,5,1,627,601661.13,399303.69,144570.16,20322.676,0,0,5426.1328 +8539,10375,18537,-9,-9,-9,1,1,18,0,0,0,2,2,-9,0,3,8.595109,8.5085859,0,0,0,-1100.6479,0,1,-9,2021,11,0,80,0,1,0,1,6.9759235,6.9759235,0,0,0,0,0,0,0,0,-9,-9,0,0,0,41.1,53.94,-9,-9,6.666666666666667,1,1,0,0,1,6,4,0,3384,-48464.484,0,0,0,0,0,2497.0798 +8540,10376,18538,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.628695,3.9506025,0,0,-1039.6697,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.8184326,0,29.69898,0,1,1,0,4.0652785,3.9037263,54,46,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1016,233636.64,4503.3052,336880.28,0,0,0,1319.2731 +8541,10377,18539,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.2384715,7.667212,0,0,-1094.7411,0,3,3,2021,15,5,0,27,4,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.2300396,37.45,51.94,-9,-9,5,1,1,0,0,12,12,3,0,427,480119,372924.91,250087.81,0,0,0,1165.688 +8542,10378,18540,18541,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,7,-3,-50.989536,0,2,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,29.78,25.84,30.91,22.6,1.666666666666667,1,1,0,1,1,12,2,0,722,0,0,0,0,0,0,2015.1438 +8542,10378,18541,18540,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,3.8411009,3.8459256,7,3,11.40661,0,2,3,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7709844,3.8330877,30.91,22.6,29.78,25.84,0,1,1,0,1,4,12,2,0,722,0,0,0,0,0,0,2015.1438 +8543,10379,18542,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.4655948,7.4873357,5.2298474,0,0,-987.46948,0,2,2,2021,9,0,38,43,1,0,0,7.1328931,7.1328931,0,0,0,0,0,0,0,0,1,1,0,0,4.8634043,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,190,-70475.164,0,179995.94,0,0,0,1394.9469 +8544,10380,18543,18544,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3571949,8.8034105,0,6,-4,-84.687317,0,-9,-9,2021,10,0,37,37,1,0,0,17.551828,17.551828,0,0,0,0,0,0,0,0,1,1,0,5.1504617,0,44.72,57.73,62.39,56.71,8.333333333333334,1,1,0,0,6,9,5,1,284,94314.523,142445.19,0,0,0,0,4846.0586 +8544,10380,18544,18543,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.9777708,8.9558363,0,6,4,-223.19859,0,2,2,2021,6,0,37,37,1,0,0,19.300743,19.300743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.72,57.73,10,1,1,0,0,8,9,5,1,284,94314.523,142445.19,0,0,0,0,4846.0586 +8545,10381,18545,18546,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4288392,7.9841323,32,-3,5.1274023,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.90554529,7.5337353,40.15,55.99,54.39,35.71,8.333333333333334,1,1,0,0,5,9,3,1,1985.5,1000072.5,610618.75,311609.75,0,4882.4521,1137.4633,2260.259 +8545,10381,18546,18545,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.6255994,6.7696676,13,3,25.811766,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7580314,6.4307952,54.39,35.71,40.15,55.99,6.666666666666667,1,1,0,0,10,9,3,1,1985.5,1000072.5,610618.75,311609.75,0,4882.4521,1137.4633,2260.259 +8546,10382,18547,18549,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,11,3,43.812477,0,2,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.22,40.47,39.81,50.5,8.333333333333334,1,1,0,1,5,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18548,-9,18547,18549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0459,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18549,18547,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.5377855,8.4467154,0,11,-3,155.10947,0,2,2,2021,14,2,44,38,1,2,0,13.810306,13.810306,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.81,50.5,52.22,40.47,6.666666666666667,1,1,0,0,12,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18550,-9,18547,18549,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7534,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8547,10383,18551,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.0463171,8.4545298,5.7871799,0,0,-1011.7021,0,2,2,2021,9,2,48,58,1,2,0,9.3517952,9.3517952,.05,.05,0,0,0,0,0,0,1,1,0,0,5.9894853,57.18,42.58,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,577,75776.813,134758.17,0,0,0,0,2983.0684 +8548,10384,18552,-9,18553,18555,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4078,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18553,18555,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,8.2347641,8.1191349,0,21,-22,-22.685535,0,3,3,2021,8,0,40,43,1,0,0,10.94629,10.94629,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.98,42.13,8.333333333333334,2,3,0,0,7,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18554,-9,18553,18555,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.1852,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18555,18553,-9,-9,1,1,67,0,2,0,2,2,-9,0,2,0,7.2565718,7.3510714,21,22,138.06761,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2266903,55.98,42.13,57.33,53.46,8.333333333333334,1,1,0,0,11,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8549,10385,18556,18557,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,8,-1,-46.43898,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3523369,0,57.16,56.15,52.77,55.33,1.666666666666667,1,1,0,0,6,7,2,1,1386.5,143447.66,132303.67,0,0,0,0,2094.9856 +8549,10385,18557,18556,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.9835925,5.9386678,8,1,43.705715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1992555,5.7727642,52.77,55.33,57.16,56.15,8.333333333333334,1,1,0,0,4,7,2,1,1386.5,143447.66,132303.67,0,0,0,0,2094.9856 +8550,10386,18558,18559,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,7.9950571,8.095582,3,5,-72.370781,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4540663,55.6,7.62,46.4,57.35,3.333333333333333,1,1,0,0,0,1,3,1,1188,205388.56,7499.9551,231055.44,5140.2671,4289.5303,0,2771.9309 +8550,10386,18559,18558,-9,-9,1,0,52,0,0,0,2,2,-9,1,4,6.3567104,6.4569025,0,3,-5,157.40485,0,-9,-9,2021,8,0,8,0,1,0,0,9.7354393,9.7354393,0,0,0,0,0,0,0,7,1,1,0,0,0,46.4,57.35,55.6,7.62,8.333333333333334,1,1,0,0,2,1,3,1,1188,205388.56,7499.9551,231055.44,5140.2671,4289.5303,0,2771.9309 +8550,10387,18560,-9,18559,18558,1,0,29,0,0,0,2,2,-9,0,4,7.3587208,7.6178236,0,0,0,-1082.4843,-9,2,2,2021,11,0,37,0,1,2,1,5.0091853,5.0091853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,3,1,73,77306.547,86887.148,0,0,0,590.22137,629.48657 +8550,10388,18561,18562,18559,18558,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,3,0,-94.89415,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,15.95,55.57,49.3,59.89,3.333333333333333,1,1,1,0,1,1,3,1,1283,-8617.3477,-6818.998,0,0,1683.438,0,881.0755 +8550,10388,18562,18561,-9,-9,1,0,24,0,0,0,2,2,1,0,5,7.8246469,7.6069083,0,3,0,40.692486,-9,-9,-9,2021,11,0,53,0,1,0,0,5.4570904,5.4570904,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,59.89,15.95,55.57,6.666666666666667,3,4,0,0,5,1,3,1,1283,-8617.3477,-6818.998,0,0,1683.438,0,881.0755 +8551,10389,18563,18564,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2891541,8.1595211,0,9,-2,-61.792042,0,2,2,2021,9,0,39,39,1,0,0,9.0430765,9.0430765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,40.14,52.54,5,1,1,0,0,10,11,3,1,493,-94449.281,225397.47,0,0,71.735962,0,1961.3773 +8551,10389,18564,18563,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.153141,6.9371233,0,9,2,-31.93189,0,3,2,2021,28,11,16,16,1,11,0,8.7795782,8.7795782,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,52.54,52.48,55.6,5,1,1,0,1,10,11,3,1,493,-94449.281,225397.47,0,0,71.735962,0,1961.3773 +8552,10390,18565,18568,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.9013548,8.3045111,0,5,-4,0,0,-9,-9,2021,11,0,37,37,1,0,0,10.505264,10.505264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,7,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18566,-9,18568,18565,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0206,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18567,-9,18568,18565,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5708,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18568,18565,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,7.9365301,8.1797781,0,5,4,0,0,2,2,2021,8,0,20,20,1,0,0,16.282587,16.282587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,7,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8553,10391,18569,18570,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.9274588,8.0589056,44,4,-174.20442,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4498968,7.7018285,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,4,6,3,1,514.5,1459749.6,843656.13,530891.44,0,373.00629,0,3036.6313 +8553,10391,18570,18569,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.5332074,6.6799107,8,-4,-39.511055,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1752105,6.8287468,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,514.5,1459749.6,843656.13,530891.44,0,373.00629,0,3036.6313 +8554,10392,18571,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.9171615,7.7591896,0,0,-1086.0698,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7563958,8.040185,46.81,43.46,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,756,786281.19,138633.58,623097.69,0,0,0,2900.2546 +8555,10393,18572,-9,18573,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1088.7476,-9,2,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52840483,0,33.77,65.26000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,435,267881.53,137803.5,303786.06,56038.164,0,2193.8477,2660.9312 +8555,10393,18573,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7800364,7.979538,0,0,0,-898.59692,0,-9,-9,2021,8,1,30,30,1,1,0,8.308135,8.308135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,435,267881.53,137803.5,303786.06,56038.164,0,2193.8477,2660.9312 +8556,10394,18574,18576,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.8316221,8.6977959,0,9,3,-38.453167,0,-9,2,2021,8,0,44,42,1,0,0,18.238707,18.238707,.05,.05,.05,0,0,0,0,2,1,1,0,4.199029,0,55.21,43.87,44.19,56.73,6.666666666666667,1,1,0,0,10,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18575,-9,18576,18574,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.43707,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18576,18574,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,9.5859976,9.8148422,0,9,-3,-34.99958,0,2,2,2021,11,1,35,31,1,1,0,61.682644,61.682644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,56.73,55.21,43.87,6.666666666666667,1,1,0,0,10,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18577,-9,18576,18574,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-866.51434,-9,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.08,59.22,-9,-9,3.333333333333333,1,1,0,0,1,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10395,18578,-9,18576,18574,1,0,19,0,1,0,2,2,1,0,3,6.0286708,5.8697124,0,0,0,-1002.4907,-9,2,2,2021,20,8,6,0,1,8,1,5.5997753,5.5997753,0,0,0,0,0,0,0,2,1,1,0,.26056343,0,30.08,56.63,-9,-9,3.333333333333333,1,1,0,0,3,4,2,1,825,-92652.148,0,0,0,0,0,431.49863 +8557,10396,18579,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.6263962,7.785316,0,0,-988.82642,0,1,1,2021,25,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.5882845,7.6904426,32.78,52.15,-9,-9,6.666666666666667,1,1,0,0,0,11,4,1,456,954265.31,580989.63,353729.31,0,0,0,2329.5667 +8558,10397,18580,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,0,0,0,0,0,-942.64703,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.26,38.44,-9,-9,5,1,1,0,0,3,10,2,0,402,-2367.3259,0,0,0,0,0,1451.2075 +8559,10398,18581,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,5.0411439,5.0783653,0,0,0,-921.8089,0,2,2,2021,8,0,20,20,1,0,0,.88212913,.88212913,0,0,0,0,0,0,0,0,0,0,0,7.4099073,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,891,-175933.39,0,0,0,0,0,1258.5938 +8560,10399,18582,-9,-9,-9,1,0,75,0,2,0,2,2,-9,0,5,0,6.8248725,6.5584679,0,0,-963.21075,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3510342,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,3072,-60125.785,71220.859,0,0,0,-1277.0048,658.85736 +8560,10400,18583,-9,18585,18584,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.2911,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18584,18585,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.3863544,8.2197895,0,15,2,2.1142914,0,2,2,2021,10,2,35,80,1,2,0,15.69272,15.69272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,1,13,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18585,18584,18582,-9,1,0,45,0,2,0,2,2,-9,0,5,8.0557909,8.2368736,0,19,-2,138.63396,0,2,2,2021,12,0,45,50,1,0,0,9.6912355,9.6912355,0,0,0,0,0,0,0,0,1,1,0,2.5624833,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,11,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18586,-9,18585,18584,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1043.1556,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8561,10401,18587,18588,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.5092535,5.7492123,30,5,66.932785,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8216596,5.7494369,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,6,4,5,1,848.5,1829981.4,1804493.5,163501.89,34067.953,362.59894,-364.42255,5004.9487 +8561,10401,18588,18587,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.2063704,9.225153,0,13,-5,-77.261391,0,3,3,2021,6,0,36,39,1,0,0,32.792656,32.792656,.05,.05,0,0,0,0,0,0,1,1,0,2.2537,0,60.12,54.8,61.04,39.41,8.333333333333334,1,1,0,0,15,4,5,1,848.5,1829981.4,1804493.5,163501.89,34067.953,362.59894,-364.42255,5004.9487 +8562,10402,18589,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4773741,8.5294514,0,0,0,-910.16492,0,2,2,2021,9,0,43,44,1,0,0,13.076098,13.076098,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,37.52,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,865,-14702.136,-19684.016,97784.063,12956.68,3311.6553,0,2147.542 +8563,10403,18590,18591,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4687705,6.313056,34,-3,50.443993,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0284343,6.0934,43.42,62.33,58.15,52.91,8.333333333333334,1,1,0,0,6,4,2,1,1469,469823.47,325143.5,173583.31,0,0,0,2433.6199 +8563,10403,18591,18590,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2326961,6.125659,8,3,-36.371315,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4742026,6.2744207,58.15,52.91,43.42,62.33,8.333333333333334,1,1,0,0,6,4,2,1,1469,469823.47,325143.5,173583.31,0,0,0,2433.6199 +8564,10404,18592,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.529624,8.4501562,0,0,0,-1038.9886,0,-9,-9,2021,12,1,40,40,1,1,0,12.950734,12.950734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,0,8,13,4,1,1140,-2061.0999,16692.76,0,0,3282.5862,0,1285.1047 +8565,10405,18593,18595,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.898181,9.0670395,0,9,-7,47.343174,0,2,3,2021,6,0,28,28,1,0,0,33.914425,33.914425,0,0,0,0,0,0,0,0,1,1,0,3.2004602,0,57.06,57.76,43.76,58.35,8.333333333333334,1,1,0,0,10,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18594,-9,18593,18595,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.8466,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18595,18593,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0566864,9.298995,0,9,7,99.519966,0,2,1,2021,9,1,20,19,1,1,0,55.166107,55.166107,0,0,.05,0,0,0,0,0,1,1,0,5.8995347,0,43.76,58.35,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18596,-9,18593,18595,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.77289,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8566,10406,18597,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,5.8348756,5.9662437,0,0,-1074.1591,-9,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7547979,49.43,29.2,-9,-9,6.666666666666667,3,4,0,1,0,8,2,0,566,180416.3,156357.11,0,0,0,0,1021.1558 +8567,10407,18598,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,8.3589792,8.5810795,0,0,-964.20001,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9811554,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1264,623611.25,286317.72,297988.34,0,0,0,2858.8213 +8568,10408,18599,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.6869,1,2,2,2021,23,8,0,33,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.02,61.9,-9,-9,1.666666666666667,4,2,0,1,6,12,1,0,223,105381.53,0,0,0,0,0,1267.8788 +8569,10409,18600,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.854733,6.931335,0,0,-991.9577,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3820539,38.05,53.92,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1322,405748.53,70696.914,114117.04,0,0,0,1570.7638 +8570,10410,18601,-9,18605,18602,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.1473,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18602,18605,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.9962234,8.7589664,0,9,-2,-98.377487,0,3,3,2021,8,0,50,100,1,0,0,14.858703,14.858703,0,0,0,0,0,0,0,0,1,1,0,3.4302435,0,51.83,57.2,49.52,56.95,8.333333333333334,1,1,0,0,10,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18603,-9,18605,18602,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9267,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18604,-9,18605,18602,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.2007,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18605,18602,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,8.3189907,8.1419125,0,9,2,-123.05902,0,1,2,2021,10,1,30,0,1,1,0,16.144644,16.144644,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,51.83,57.2,8.333333333333334,1,1,0,0,5,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8571,10411,18606,-9,18607,18609,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18607,18609,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.3637938,6.1771564,0,29,0,-66.89167,0,-9,3,2021,7,0,9,9,1,0,0,7.1334763,7.1334763,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18608,-9,18607,18609,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.8619,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18609,18607,-9,-9,1,1,56,0,2,0,2,2,-9,0,4,8.2846241,7.999784,0,29,9,10.742795,0,2,2,2021,11,1,37,37,1,1,0,13.166357,13.166357,.05,.05,0,0,0,0,0,2,1,1,0,1.6720744,0,54.2,57.49,52,54.51,6.666666666666667,1,1,0,0,12,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8572,10412,18610,18611,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0022373,7.9894652,0,34,5,149.39174,0,2,3,2021,8,0,8,8,1,0,0,55.07354,55.07354,.05,.05,0,0,0,0,0,0,0,0,0,3.9453251,0,41.34,56.62,57.33,53.46,6.666666666666667,1,1,0,0,11,2,5,1,1206,950756.63,564441.88,300506.5,0,0,0,3474.751 +8572,10412,18611,18610,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6225624,8.6270657,0,34,-5,96.651932,0,3,3,2021,11,0,40,18,1,0,0,16.742485,16.742485,.05,.05,0,0,0,0,0,0,0,0,0,4.0113416,0,57.33,53.46,41.34,56.62,1.666666666666667,1,1,0,0,15,2,5,1,1206,950756.63,564441.88,300506.5,0,0,0,3474.751 +8573,10413,18612,18613,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,46,-4,0,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.47,51.38,44.05,59.35,8.333333333333334,1,1,0,0,0,12,1,1,646.5,629892.81,23384.414,470291.44,0,0,1016.8876,844.92285 +8573,10413,18613,18612,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,0,0,46,4,0,0,-9,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.05,59.35,40.47,51.38,8.333333333333334,1,1,0,0,0,12,1,1,646.5,629892.81,23384.414,470291.44,0,0,1016.8876,844.92285 +8574,10414,18614,18615,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.392077,7.2253494,36,-8,-9.8259172,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1741331,7.1273689,55.36,51.57,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,372,1357826.8,674554.25,454758.72,0,0,0,2215.0776 +8574,10414,18615,18614,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.0928764,7.2206278,36,8,74.090515,0,-9,-9,2021,9,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9862764,7.3683648,57.33,53.46,55.36,51.57,8.333333333333334,1,1,0,0,9,7,3,1,372,1357826.8,674554.25,454758.72,0,0,0,2215.0776 +8575,10415,18616,-9,18619,18620,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-969.08636,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18617,-9,18619,18620,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.6929,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18618,-9,18619,18620,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-972.75586,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18619,18620,-9,-9,1,0,46,0,4,0,2,2,-9,0,3,8.3151112,8.1695671,0,15,6,72.942467,0,2,2,2021,12,0,40,42,1,0,0,11.299109,11.299109,.05,.05,0,0,0,0,0,0,1,1,0,1.9946971,0,49.04,55.86,46.32,53.44,6.666666666666667,1,1,0,0,12,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18620,18619,-9,-9,1,1,40,0,4,0,1,1,-9,0,2,8.647644,8.5794516,5.2826915,15,-6,-103.15948,0,1,2,2021,22,9,44,38,1,9,0,16.596157,16.596157,.05,.05,0,0,0,0,0,0,1,1,0,5.203867,0,46.32,53.44,49.04,55.86,6.666666666666667,1,1,0,0,14,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18621,-9,18619,18620,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-984.24237,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8576,10416,18622,18623,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,5.359695,5.0056601,14,6,-101.43928,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3143835,4.9905705,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,7,10,2,1,326.5,584246,0,481244.94,0,0,0,18430.27 +8576,10416,18623,18622,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.4601641,5.5845966,29,-6,36.384884,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6886683,5.3669815,58.47,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,326.5,584246,0,481244.94,0,0,0,18430.27 +8577,10417,18624,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.2946472,6.9325871,0,0,0,-942.08124,0,-9,2,2021,13,1,15,16,1,1,0,9.953434,9.953434,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.3,31.1,-9,-9,5,1,1,0,0,14,12,3,0,174,259691.5,17060.105,0,0,4624.3472,0,991.39868 +8578,10418,18625,-9,18626,18628,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.909,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18626,18628,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.5550795,8.7838736,0,3,0,-11.711123,0,-9,-9,2021,7,0,40,40,1,0,0,13.30628,13.30628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,46.98,59.35,8.333333333333334,3,4,0,0,2,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18627,-9,18626,18628,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.06604,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18628,18626,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.060956,8.0802813,0,3,0,132.71642,0,2,1,2021,9,0,38,40,1,0,0,11.828534,11.828534,.05,.05,0,0,0,0,0,0,1,1,0,1.9366159,0,46.98,59.35,62.49,55.09,8.333333333333334,3,4,0,0,6,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8579,10419,18629,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.2866106,7.8864608,0,0,-1002.8467,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4316648,8.5477047,52,47,-9,-9,7,1,1,0,0,0,5,4,0,654,944600.5,783593.88,267900.56,0,17394.914,0,3256.6245 +8580,10420,18630,18631,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,0,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.653811,0,57.16,56.15,57.33,53.46,10,1,1,0,0,5,13,1,1,590.5,47651.34,-63929.758,0,0,0,0,1048.7153 +8580,10420,18631,18630,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,9,1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7675257,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,13,1,1,590.5,47651.34,-63929.758,0,0,0,0,1048.7153 +8581,10421,18632,-9,18638,18635,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1010.6817,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18633,-9,18638,18635,1,1,4,2,5,1,3,0,-9,0,4,0,0,0,0,0,-885.65466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18634,-9,18638,18635,1,1,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.2954,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18635,18638,-9,-9,1,1,37,2,5,0,2,2,-9,0,4,8.6003923,8.5965652,0,16,0,100.25771,0,2,-9,2021,10,0,45,48,1,0,0,15.240108,15.240108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.39,44.54,57.16,56.15,8.333333333333334,1,1,0,0,11,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18636,-9,18638,18635,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1060.4038,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18637,-9,18638,18635,1,1,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-943.80078,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18638,18635,-9,-9,1,0,37,2,5,0,2,2,-9,0,4,7.466548,7.4907069,0,16,0,6.4873443,0,-9,-9,2021,4,0,19,19,1,0,0,13.38661,13.38661,.05,.05,0,0,0,0,0,0,1,1,0,6.4386926,0,57.16,56.15,58.39,44.54,10,1,1,0,0,11,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8582,10422,18639,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,2,0,4.8631611,4.8960266,0,0,-1027.7369,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0501132,51.99,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1481,104667.94,64113.316,194604.91,0,0,0,1388.9408 +8583,10423,18640,18642,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5178547,8.2775888,0,7,4,-49.843658,0,3,3,2021,12,2,49,50,1,2,0,11.448103,11.448103,0,0,0,0,0,0,0,0,1,1,0,0,0,56.48,45.49,42.22,56.11,8.333333333333334,1,1,0,0,9,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18641,-9,18640,18642,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.7592,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18642,18640,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.8734016,7.9134054,0,7,-4,114.55219,0,3,3,2021,14,2,35,35,1,2,0,10.598601,10.598601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,56.48,45.49,8.333333333333334,1,1,0,0,9,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18643,-9,18640,18642,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.68262,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8584,10424,18644,18645,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,3.5042918,3.6009104,0,8,0,54.089817,0,2,2,2021,24,8,20,23,1,8,0,.27202144,.27202144,0,0,0,0,0,0,0,0,0,0,0,7.0400205,0,52.23,55.6,54.2,57.49,1.666666666666667,1,1,0,0,9,12,3,1,281.5,1297616.1,0,1432073.1,441411.03,0,29262.57,924.75958 +8584,10424,18645,18644,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7843943,7.7227869,0,8,0,-86.290169,-9,1,2,2021,11,0,80,0,1,0,0,4.3650556,4.3650556,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,9,12,3,1,281.5,1297616.1,0,1432073.1,441411.03,0,29262.57,924.75958 +8585,10425,18646,18647,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,11,-7,55.513813,1,1,1,2021,18,6,0,25,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2706678,0,39.2,61.5,48.14,53.42,3.333333333333333,1,1,0,0,10,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18647,18646,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.4317837,7.1997213,0,11,7,94.611229,0,2,2,2021,12,0,40,40,1,0,0,4.7625332,4.7625332,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.14,53.42,39.2,61.5,6.666666666666667,1,1,0,0,12,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18648,-9,18646,18647,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.9176,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18649,-9,18646,18647,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.41046,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8586,10426,18650,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.6839514,4.2868972,0,0,-1121.8434,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,3.0576105,0,22.54187,0,1,1,0,4.9235301,4.5390024,46.05,27.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,61,-94242.313,-94117.508,0,0,1545.3495,0,257.88727 +8587,10427,18651,18653,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,0,0,0,17,-1,-47.677563,-9,2,1,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,1.6901038,0,51,52.08,54.2,57.49,8.333333333333334,1,1,0,0,7,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18652,-9,18651,18653,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.3109,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3381624,0,58.05,54.52,-9,-9,10,1,1,0,0,8,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18653,18651,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.476469,9.2957821,0,17,1,57.47015,-9,1,1,2021,6,0,40,0,1,0,0,27.652719,27.652719,.05,.05,.05,0,0,0,0,2,0,0,0,3.5828307,0,54.2,57.49,51,52.08,8.333333333333334,1,1,0,0,8,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18654,-9,18651,18653,1,0,16,0,1,1,3,0,-9,0,3,0,5.51261,5.3624268,0,0,-1052.7147,-9,1,1,2021,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.657052,0,31.69,59.68,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8588,10428,18655,18656,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.2035661,7.5603027,46,3,-147.91508,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9696755,7.3218479,57.06,57.76,61.11,48.86,8.333333333333334,1,1,0,0,5,9,3,1,831.5,773567.44,691081.19,217575.28,0,0,0,2740.3838 +8588,10428,18656,18655,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.9006124,5.7907405,46,-3,-81.091072,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6882992,6.3139071,61.11,48.86,57.06,57.76,0,1,1,0,0,5,9,3,1,831.5,773567.44,691081.19,217575.28,0,0,0,2740.3838 +8589,10429,18657,-9,18658,18659,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1037.6807,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.13,43.87,-9,-9,10,1,1,0,0,0,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8589,10429,18658,18659,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7636061,8.6723242,0,24,0,54.296288,0,3,3,2021,9,0,40,38,1,0,0,16.915243,16.915243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,58.15,52.91,10,1,1,0,0,14,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8589,10429,18659,18658,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.6051855,8.7711954,0,13,0,40.256336,0,-9,-9,2021,8,1,88,40,1,1,0,7.8943672,7.8943672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.74,57.22,6.666666666666667,1,1,0,0,14,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8590,10430,18660,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.1910887,8.178154,0,0,0,-976.01489,0,2,2,2021,5,1,38,38,1,1,0,9.9322319,9.9322319,.05,.05,0,0,0,0,0,0,0,0,0,1.0332692,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,1897,112543,-30038.094,278703.75,78755.633,0,0,755.81696 +8591,10431,18661,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.9521,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2745297,0,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,536,72576.422,0,0,0,0,341.4707,325.83978 +8592,10432,18662,18663,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.4046879,5.350461,49,-1,65.858955,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0171614,5.4612432,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,6,6,2,1,1238,431541.75,303339.69,58639.828,2497.2661,0,0,2415.0103 +8592,10432,18663,18662,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.6538067,6.5669594,49,1,-159.92586,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.842648,6.6767588,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,6,6,2,1,1238,431541.75,303339.69,58639.828,2497.2661,0,0,2415.0103 +8593,10433,18664,-9,18665,18666,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2596,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18665,18666,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.0423841,8.3880816,0,7,2,60.071125,0,-9,-9,2021,6,0,40,40,1,0,0,8.8691187,8.8691187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18666,18665,-9,-9,1,1,34,1,2,0,3,3,-9,0,4,8.1309414,8.4378767,0,7,-2,-11.909264,0,2,3,2021,7,0,48,45,1,0,0,8.7949409,8.7949409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18667,-9,18665,18666,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-844.02655,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8594,10434,18668,18669,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,8.156785,8.7945671,8.0943356,30,7,60.029732,0,3,2,2021,7,0,35,35,1,0,0,15.487103,15.487103,.05,.05,0,0,0,0,0,0,1,1,0,7.5329003,8.0428638,54.07,52.08,60.02,56.42,0,4,2,0,0,13,8,5,1,371,2090957.8,1255933.3,821537.63,295482.28,0,0,7894.7085 +8594,10434,18669,18668,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7980299,8.7314434,0,10,-7,5.8248439,0,-9,-9,2021,6,0,45,45,1,0,0,20.439209,20.439209,.05,.05,0,0,0,0,0,0,1,1,0,4.5899472,0,60.02,56.42,54.07,52.08,10,3,4,0,0,13,8,5,1,371,2090957.8,1255933.3,821537.63,295482.28,0,0,7894.7085 +8595,10435,18670,18671,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8585067,7.7777615,11,-4,-39.011936,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8379021,8.0205526,49.41,58.28,59.44,39.94,8.333333333333334,1,1,0,0,3,5,3,1,1149.5,1207202.1,611970.88,267118.47,0,0,0,3768.9517 +8595,10435,18671,18670,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8163199,6.6890793,11,4,15.166248,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5432243,7.2905655,59.44,39.94,49.41,58.28,8.333333333333334,1,1,0,0,4,5,3,1,1149.5,1207202.1,611970.88,267118.47,0,0,0,3768.9517 +8596,10436,18672,18673,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.2098675,8.3205547,0,8,-3,55.493889,0,2,3,2021,27,11,35,35,1,11,0,11.927942,11.927942,0,0,0,0,0,0,0,0,0,0,0,7.5909491,0,27.71,67.3,38.76,58.16,6.666666666666667,2,3,0,0,8,8,5,1,485.5,-87701.211,1604.9727,0,0,0,4405.1606,3704.4268 +8596,10436,18673,18672,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3824463,8.3358479,0,8,3,-65.92244,0,2,2,2021,12,0,38,38,1,0,0,15.143913,15.143913,.05,.05,0,0,0,0,0,0,0,0,0,3.4912941,0,38.76,58.16,27.71,67.3,3.333333333333333,1,1,0,0,11,8,5,1,485.5,-87701.211,1604.9727,0,0,0,4405.1606,3704.4268 +8597,10437,18674,18675,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.0030246,7.2792549,0,4,0,-21.543465,0,-9,-9,2021,15,4,23,23,1,4,0,5.7481985,5.7481985,0,0,0,0,0,0,0,0,1,1,0,0,0,34.83,60.66,60.03,45.37,6.666666666666667,1,1,0,1,2,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8597,10437,18675,18674,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.1912451,8.3110466,0,4,0,63.906731,0,3,3,2021,9,0,42,41,1,0,0,10.032612,10.032612,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,45.37,34.83,60.66,6.666666666666667,1,1,0,0,8,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8597,10437,18676,-9,18674,18675,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.5085,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8598,10438,18677,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.5840492,7.2790051,0,0,-1115.6523,0,2,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1566911,7.5740385,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,1308,-51007.574,44214.07,0,0,0,0,1482.1495 +8598,10439,18678,-9,18677,-9,1,1,35,0,0,0,2,2,-9,0,4,8.1137819,8.1068459,0,0,0,-993.5116,-9,1,2,2021,6,0,36,0,1,0,0,14.34569,14.34569,.05,.05,0,0,0,0,0,0,1,1,0,.53984976,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,15,13,4,1,699,128038.46,35492.578,0,0,6381.2251,0,1403.7325 +8599,10440,18679,18680,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.0900059,7.0208497,0,7,-1,-54.474762,0,3,3,2021,6,0,21,41,1,0,0,7.5080729,7.5080729,0,0,0,0,0,0,0,0,1,1,0,4.3000069,0,62.25,48.33,45.32,61.53,10,1,1,0,0,8,13,4,1,474,196538.66,210009.14,85492.672,0,0,0,2860.2207 +8599,10440,18680,18679,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2533607,8.2402439,4.8695531,7,1,-53.552731,0,3,-9,2021,9,0,46,45,1,0,0,8.5170441,8.5170441,0,0,.05,0,0,0,0,0,1,1,0,0,4.660388,45.32,61.53,62.25,48.33,1.666666666666667,1,1,0,0,8,13,4,1,474,196538.66,210009.14,85492.672,0,0,0,2860.2207 +8600,10441,18681,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-997.5965,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.75,48.15,-9,-9,0,4,2,1,1,0,9,1,0,483,286746.59,0,390311.19,0,0,0,0 +8601,10442,18682,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.3895683,6.4086037,0,0,-962.38287,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1675987,6.5587702,48.52,41.11,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,1100,607769.88,139561,233038.03,0,0,0,1304.6007 +8602,10443,18683,18684,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,6.8911743,6.9527235,49,-2,-143.74651,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2029557,6.7798376,47.86,41.84,51.77,58.57,8.333333333333334,1,1,0,0,0,10,3,1,1087,86884.516,143543.44,0,0,0,0,2490.7095 +8602,10443,18684,18683,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.5529752,6.6756601,49,2,-41.329655,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8017373,51.77,58.57,47.86,41.84,1.666666666666667,1,1,0,0,0,10,3,1,1087,86884.516,143543.44,0,0,0,0,2490.7095 +8603,10444,18685,-9,18686,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-973.80164,-9,2,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36512813,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,950.5,85295.281,0,0,0,0,0,1423.0901 +8603,10444,18686,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-885.9353,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.43,22.56,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,950.5,85295.281,0,0,0,0,0,1423.0901 +8603,10445,18687,-9,18686,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1132.4886,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,3101,0,0,0,0,0,0,-554.14282 +8604,10446,18688,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,5.4066033,7.3703694,7.222774,0,0,-1065.4435,0,3,3,2021,14,2,13,12,1,2,0,2.243027,2.243027,0,0,0,0,0,0,0,2,1,1,0,0,7.3243833,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,13,12,3,0,120,480121.22,-17015.354,242976.03,0,0,0,1702.2942 +8605,10447,18689,18690,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.9695921,8.192914,0,7,1,105.43623,0,2,2,2021,6,0,60,55,1,0,0,5.8153911,5.8153911,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52,54.51,8.333333333333334,1,1,0,0,10,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18690,18689,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,7.3770566,7.1317682,0,7,-1,20.379814,0,-9,-9,2021,9,0,23,29,1,0,0,7.6385016,7.6385016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,48.28,60.18,8.333333333333334,1,1,0,0,7,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18691,-9,18690,18689,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.51825,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18692,-9,18690,18689,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26111,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8606,10448,18693,18694,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,0,0,11,-8,17.940231,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.53,51.79,8.333333333333334,1,1,0,0,5,10,2,1,1445,434294.03,123255.86,194052.7,0,0,0,636.80963 +8606,10448,18694,18693,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.8596573,6.0283775,11,8,30.492197,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6684251,5.5991225,45.53,51.79,57.16,56.15,3.333333333333333,1,1,0,0,0,10,2,1,1445,434294.03,123255.86,194052.7,0,0,0,636.80963 +8607,10449,18695,18696,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.4261417,6.7390447,42,4,59.678188,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,9.4218845,6.6251135,58.56,46.45,36.48,61.57,8.333333333333334,1,1,0,0,10,11,5,1,875.5,698895.13,542455.69,97956.688,56659.625,0,0,12332.255 +8607,10449,18696,18695,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.9348564,9.2964592,5.1218204,42,-4,-64.806213,0,2,2,2021,10,0,2,-9,1,0,0,531.91565,531.91565,.05,.05,0,0,0,0,0,0,1,1,0,8.4701052,5.3027077,36.48,61.57,58.56,46.45,6.666666666666667,1,1,0,0,10,11,5,1,875.5,698895.13,542455.69,97956.688,56659.625,0,0,12332.255 +8608,10450,18697,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,6.8145132,6.7659984,0,0,-937.93488,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6909199,6.9314952,56.8,13.83,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,388,217941.28,80782.383,0,0,0,0,670.91602 +8609,10451,18698,18699,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.1325655,7.676825,0,16,-6,58.456783,0,2,2,2021,11,1,22,19,1,1,0,14.803996,14.803996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.6,56.17,45.15,57.46,8.333333333333334,1,1,0,0,14,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8609,10451,18699,18698,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6728573,8.6409216,0,16,6,3.9203298,0,2,1,2021,13,2,36,37,1,2,0,19.306684,19.306684,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.15,57.46,36.6,56.17,8.333333333333334,1,1,0,0,14,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8609,10451,18700,-9,18698,18699,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9417,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8610,10452,18701,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2439127,8.0027723,0,0,0,-941.8761,0,3,3,2021,11,1,38,38,1,1,0,11.5395,11.5395,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.61,54.5,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,80,1036571.1,450804.16,502369.88,0,0,1950.4185,589.59021 +8611,10453,18702,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.211525,8.406909,0,0,-905.54315,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8119831,8.3633242,59.53,56.44,-9,-9,10,1,1,0,0,6,9,4,1,399,1009243.1,682452.44,0,0,0,0,3029.6995 +8612,10454,18703,18705,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,6.1324234,6.2474871,0,27,1,50.319073,0,3,3,2021,15,5,60,50,1,5,0,1.0650324,1.0650324,.05,.05,0,0,0,0,0,0,1,1,0,3.088618,0,51.24,58.84,51.14,60.45,8.333333333333334,1,1,0,0,8,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8612,10454,18704,-9,18705,18703,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1054.6575,-9,1,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60760343,0,35.75,66.17,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8612,10454,18705,18703,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.31215,8.0540476,0,26,-1,-14.800221,0,1,1,2021,12,1,35,35,1,1,0,10.390142,10.390142,.05,.05,0,0,0,0,0,0,1,1,0,4.6136994,0,51.14,60.45,51.24,58.84,8.333333333333334,1,1,0,0,9,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8613,10455,18706,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.8627586,8.9093876,0,0,0,-1130.4911,0,3,2,2021,8,0,50,0,1,0,0,11.901305,11.901305,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.51,37.28,-9,-9,5,1,1,0,0,7,4,5,0,351,168321.27,64976.184,0,0,0,0,1997.1498 +8614,10456,18707,-9,18710,18708,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.1311,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18708,18710,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.8064909,9.7642889,0,7,4,126.07907,0,-9,-9,2021,11,0,60,70,1,0,0,25.815704,25.815704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.64,52.35,24.19,65.5,6.666666666666667,2,3,0,0,14,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18709,-9,18710,18708,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3679,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18710,18708,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.7163572,7.930295,0,12,-4,98.942009,0,1,3,2021,16,3,55,35,1,3,0,5.3759627,5.3759627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.19,65.5,47.64,52.35,5,2,3,0,0,12,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8615,10457,18711,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.3606691,7.2180839,0,0,0,-1005.7108,0,3,3,2021,5,0,22,22,1,0,0,8.3239431,8.3239431,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,37.35,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1032,903029.25,-17111.803,371559.22,33839.078,4329.4922,0,685.58893 +8616,10458,18712,18713,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.194169,8.6725569,0,9,-12,14.455616,0,2,2,2021,13,2,38,40,1,2,0,10.601582,10.601582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.78,24.44,50.27,48.86,8.333333333333334,1,1,0,0,10,9,5,1,709,1659061.8,1256351,372523.81,64340.941,0,2384.3359,3808.3601 +8616,10458,18713,18712,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.816824,8.6614647,0,9,12,11.254062,0,2,2,2021,6,0,37,37,1,0,0,20.927095,20.927095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,53.78,24.44,6.666666666666667,1,1,0,0,11,9,5,1,709,1659061.8,1256351,372523.81,64340.941,0,2384.3359,3808.3601 +8617,10459,18714,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,1,0,1.5072877,1.5509353,0,0,-1001.3952,0,2,1,2021,17,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6147127,0,46.26,28.04,-9,-9,0,2,3,1,1,6,8,2,0,1416,461161.56,0,496098.16,71558.438,0,0,1185.5688 +8617,10460,18715,-9,-9,18714,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.4022,-9,-9,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2442644,0,62.66,52.4,-9,-9,10,2,3,0,0,0,8,1,0,1163,138422.8,0,0,0,0,0,-367.96149 +8618,10461,18716,18717,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.8760037,7.1525059,5.7759252,2,3,-46.343384,0,2,1,2021,10,0,30,40,1,0,0,3.2621739,3.2621739,0,0,0,0,0,0,0,0,0,0,0,1.7170267,5.3790326,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,9,9,2,1,782.5,1085926,738843.13,342186.09,0,3096.2976,0,1029.863 +8618,10461,18717,18716,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.7022982,5.320704,0,2,-3,-90.70742,0,-9,-9,2021,8,0,30,48,1,0,0,1.3533974,1.3533974,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.2,57.49,10,3,4,0,0,9,9,2,1,782.5,1085926,738843.13,342186.09,0,3096.2976,0,1029.863 +8619,10462,18718,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.9303989,6.68859,0,0,0,-921.3327,0,2,-9,2021,7,0,50,60,1,0,0,1.9307934,1.9307934,.05,.05,0,0,0,0,0,0,0,0,0,1.611297,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,405,354149.56,-95206.336,119789.7,0,0,0,511.9794 +8620,10463,18719,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.3997,0,2,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.21,34.98,-9,-9,5,1,1,1,1,0,2,1,0,1360,70244.078,0,0,0,0,0,665.25568 +8621,10464,18720,-9,-9,-9,1,0,80,0,1,0,3,3,-9,0,2,0,7.3251157,7.4298654,0,0,-1065.5972,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9271779,7.6122179,56.35,29.9,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1399,522868.41,142589.58,264736.59,0,0,0,2451.1809 +8622,10465,18721,18722,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.3755846,8.3929176,0,12,0,-51.483082,0,2,3,2021,4,0,37,40,1,0,0,16.546558,16.546558,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.73,54.53,54.1,59.11,10,1,1,0,0,8,7,5,1,878,1394258.1,830664.19,682997.38,39083.414,0,0,5628.9033 +8622,10465,18722,18721,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.9931736,9.262248,0,12,0,59.001717,0,-9,1,2021,12,0,40,40,1,0,0,18.790955,18.790955,.05,.05,.05,0,0,0,0,0,0,0,0,6.9977555,0,54.1,59.11,57.73,54.53,8.333333333333334,1,1,0,0,8,7,5,1,878,1394258.1,830664.19,682997.38,39083.414,0,0,5628.9033 +8622,10466,18723,-9,18721,18722,1,0,22,0,0,0,2,2,-9,0,3,8.0614986,7.9877305,0,0,0,-991.03473,0,1,2,2021,10,0,47,0,1,0,1,5.2611265,5.2611265,.05,.05,0,0,0,0,0,0,0,0,0,3.3516109,0,50.6,44.34,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,615,41833.012,-88407.648,0,0,1425.5862,0,735.62054 +8623,10467,18724,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.2628202,8.1926699,0,0,0,-938.15497,0,3,3,2021,11,0,44,44,1,2,0,8.6377697,8.6377697,.05,.05,0,0,0,0,0,7,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,8,7,4,1,355,465301.25,135829.95,261574.97,0,0,0,-15.660603 +8623,10468,18725,-9,18726,-9,1,0,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1062.1465,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18726,-9,18724,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.8428,1,1,-9,2021,7,0,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,10,3,4,0,0,4,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18727,-9,18726,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1051.3485,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18728,-9,18726,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1069.2803,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,6,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8624,10469,18729,18731,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.8309412,8.8969879,0,12,0,-199.45354,0,2,2,2021,12,2,42,48,1,2,0,15.358919,15.358919,.05,.05,0,0,0,0,0,7,1,1,0,2.9254944,0,48.7,56.22,47.16,50.53,6.666666666666667,1,1,0,0,12,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8624,10469,18730,-9,18731,18729,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.13611,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8624,10469,18731,18729,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9198651,7.8241134,0,12,0,-90.283501,0,-9,-9,2021,11,0,30,0,1,0,0,10.430291,10.430291,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.16,50.53,48.7,56.22,8.333333333333334,1,1,0,0,13,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8625,10470,18732,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,5.9873481,6.2526217,0,0,-854.80042,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5106661,6.284687,47.15,23.24,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,499,391286.56,9437.4668,95909.227,0,0,0,587.31567 +8626,10471,18733,18734,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.3727264,8.5524273,0,25,2,-1.3256011,0,3,3,2021,7,0,60,50,1,0,0,10.860702,10.860702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,48.5,41.65,8.333333333333334,1,1,0,0,13,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10471,18734,18733,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8968525,7.755477,0,22,-2,28.715101,0,3,3,2021,12,0,34,34,1,0,0,6.1203814,6.1203814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.5,41.65,55.36,51.57,6.666666666666667,1,1,0,0,14,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10471,18735,-9,18734,18733,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1160.271,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.24,63.73,-9,-9,10,1,1,0,0,0,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10472,18736,-9,18734,18733,1,0,20,0,1,0,2,2,1,0,5,7.3986511,7.4237885,0,0,0,-1032.2506,-9,2,3,2021,13,2,36,0,1,2,1,4.9771738,4.9771738,0,0,0,0,0,0,0,0,1,1,0,7.9324465,0,41.48,59.77,-9,-9,10,1,1,0,0,4,5,3,1,646,-37884.234,0,0,0,0,2297.6799,1795.2786 +8627,10473,18737,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.2575,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,14.6537,0,7,1,1,0,0,0,59.18,14.99,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,523,-175409.09,0,0,0,0,0,2234.7805 +8628,10474,18738,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.8877897,6.4126768,0,0,-1044.1857,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0525627,64.64,45.9,-9,-9,10,1,1,0,0,0,12,2,0,572,464681.28,131188.11,214698.39,0,0,0,2282.5593 +8629,10475,18739,18740,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.7146759,9.5971832,0,30,-1,52.643959,0,2,2,2021,9,1,44,44,1,1,0,38.685383,38.685383,.05,.05,0,0,0,0,0,0,1,1,0,8.5595074,0,48.96,60.26,60.3,46.58,8.333333333333334,1,1,0,0,9,7,5,1,471.5,92811.844,35240,259440.22,188720.19,0,0,13094.293 +8629,10475,18740,18739,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.0109415,8.2295275,0,29,1,13.949908,0,3,3,2021,6,0,50,17,1,0,0,5.4265542,5.4265542,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,48.96,60.26,8.333333333333334,1,1,0,0,9,7,5,1,471.5,92811.844,35240,259440.22,188720.19,0,0,13094.293 +8629,10476,18741,-9,18740,18739,1,0,22,0,0,0,2,2,-9,0,4,7.9249377,7.9220576,0,0,0,-1041.4313,0,1,1,2021,21,9,37,36,1,9,1,9.1279736,9.1279736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,1,8,7,3,1,1331,23338.543,-67884.922,0,0,1241.405,0,2114.0105 +8630,10477,18742,-9,18743,18744,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.95483,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18743,18744,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.0252581,7.6428547,0,7,-4,63.226402,0,2,2,2021,12,2,60,50,1,2,0,4.386374,4.386374,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.61,59.06,8.333333333333334,1,1,0,0,10,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18744,18743,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,4.7287674,4.9053845,0,7,4,151.38243,0,2,1,2021,7,0,50,50,1,0,0,.36024949,.36024949,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.61,59.06,48.87,58.55,8.333333333333334,1,1,0,0,7,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18745,-9,18743,18744,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.37421,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8631,10478,18746,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.6084547,8.9206591,5.6141863,0,0,-879.37878,0,2,2,2021,16,4,50,45,1,4,0,12.313217,12.313217,0,0,.05,0,0,0,0,0,1,1,0,5.8151779,0,40.09,52.06,-9,-9,3.333333333333333,1,1,0,0,14,7,5,0,426,131560.16,71862.242,201340.75,137839.2,0,1894.0441,2358.5715 +8632,10479,18747,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.4016299,6.5856943,0,0,-1069.8638,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8488441,6.9232121,54.94,47.65,-9,-9,10,1,1,0,0,11,5,2,1,712,481599.09,226306.61,210180.48,0,0,0,1449.5657 +8633,10480,18748,18749,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.5157852,9.5092201,0,6,0,177.98108,0,2,3,2021,5,0,40,40,1,0,0,41.883747,41.883747,.05,.05,0,0,0,0,0,0,0,0,0,4.3433056,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,7,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8633,10480,18749,18748,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.8492985,8.7577429,0,6,0,23.824402,0,2,1,2021,5,0,36,36,1,0,0,21.10257,21.10257,0,0,0,0,0,0,0,0,0,0,0,4.8260107,0,50.65,60.47,57.06,57.76,8.333333333333334,1,1,0,0,7,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8633,10480,18750,-9,18749,18748,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.46246,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8634,10481,18751,18753,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.3239002,8.2129574,0,5,1,-40.351307,0,-9,-9,2021,8,0,25,25,1,0,0,19.664562,19.664562,.05,.05,0,0,0,0,0,0,0,0,0,6.8740716,0,55.53,51.55,34.49,52.94,10,1,1,0,0,13,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18752,-9,18751,18753,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.27332,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18753,18751,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.5183887,9.7242918,0,5,-1,134.3777,0,2,2,2021,12,0,46,50,1,0,0,34.170601,34.170601,.05,.05,0,0,0,0,0,0,0,0,0,4.3856378,0,34.49,52.94,55.53,51.55,6.666666666666667,1,1,0,0,11,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18754,-9,18751,18753,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.48108,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8635,10482,18755,18756,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.9331388,8.3476152,0,14,3,131.35104,0,3,3,2021,6,0,37,37,1,0,0,10.518535,10.518535,.05,.05,0,0,0,0,0,0,0,0,0,2.2982535,0,57.33,53.46,38.28,63.48,8.333333333333334,1,1,0,0,11,6,5,1,404,647076.13,394674.47,194047.06,-7877.5132,18616.273,2598.9009,3980.9224 +8635,10482,18756,18755,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.6036644,8.4364738,0,14,-3,-163.0636,0,2,2,2021,18,7,39,37,1,7,0,12.170362,12.170362,.05,.05,0,0,0,0,0,0,0,0,0,4.0143142,0,38.28,63.48,57.33,53.46,6.666666666666667,1,1,0,0,11,6,5,1,404,647076.13,394674.47,194047.06,-7877.5132,18616.273,2598.9009,3980.9224 +8636,10483,18757,-9,18761,18760,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.5045,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18758,-9,18761,18760,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.6598,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18759,-9,18761,18760,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.506,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18760,18761,-9,-9,1,1,42,1,3,0,1,1,-9,0,4,7.7667089,7.9053988,0,2,4,-33.287437,0,-9,-9,2021,9,0,50,25,1,1,0,5.7637296,5.7637296,0,0,.05,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,5,0,0,3,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18761,18760,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,2,-4,142.29597,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,4,5,0,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8637,10484,18762,-9,18765,18763,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.7349,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18763,18765,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,0,0,0,5,5,0,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.92,60.42,24.12,50.38,3.333333333333333,1,1,1,1,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18764,-9,18765,18763,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4707,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18765,18763,-9,-9,1,0,41,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,24.12,50.38,35.92,60.42,3.333333333333333,1,1,0,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8638,10485,18766,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.6006,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,37.87,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,941,246793.63,0,0,0,0,0,1092.0615 +8639,10486,18767,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.8760443,7.7985644,0,0,0,-949.12268,0,3,-9,2021,13,1,39,40,1,1,0,5.9692631,5.9692631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.51,52.17,-9,-9,5,1,1,0,0,6,12,3,0,347,54899.055,71577.141,0,0,4694.2905,1709.4928,1256.3589 +8640,10487,18768,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.3894877,5.3587341,0,0,-1055.321,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2634759,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,648,903.03741,0,69166.453,70224.156,0,0,2131.5054 +8641,10488,18769,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.73138,7.8032584,0,0,0,-886.60828,0,2,2,2021,12,0,50,40,1,0,0,6.0334139,6.0334139,.05,.05,0,0,0,0,0,0,0,0,0,1.1166037,0,58.15,52.91,-9,-9,5,1,1,0,0,10,4,4,1,1020,80118.742,163740.5,0,0,9747.9531,0,851.01703 +8642,10489,18770,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.4751692,8.3366728,0,0,0,-986.72778,0,2,2,2021,8,1,35,35,1,1,0,15.571055,15.571055,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,9,12,5,1,453,1020082.3,642113.5,315620.94,0,0,0,979.76849 +8643,10490,18771,18773,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,0,0,0,25,-2,-116.86742,0,2,3,2021,2,0,0,47,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,5.9610257,0,57.16,56.15,51.24,58.84,10,1,1,1,0,11,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10490,18772,-9,18773,18771,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.56952,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.78080106,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10490,18773,18771,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.2121177,7.1691189,0,27,2,-44.912094,0,2,2,2021,12,1,20,24,1,1,0,6.9673209,6.9673209,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10491,18774,-9,18773,18771,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1018.3055,-9,2,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.53,55.51,-9,-9,8.333333333333334,1,1,1,0,0,10,1,1,439,0,0,0,0,0,0,-447.20203 +8644,10492,18775,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.798624,8.7564697,0,0,0,-1112.3162,0,2,-9,2021,11,2,40,35,1,2,0,20.575176,20.575176,.05,.05,0,0,0,0,0,0,0,0,0,2.9800885,0,43.86,63.67,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,814,-6741.1504,76004.82,0,0,0,0,1527.4905 +8645,10493,18776,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.6479,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18059477,0,40.94,40.39,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,788,-28702.807,0,0,0,0,0,583.33173 +8646,10494,18777,-9,18779,18778,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.08435,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8646,10494,18778,18779,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,9.2496243,8.8332624,0,5,-1,27.164026,0,-9,-9,2021,12,0,43,48,1,0,0,24.856346,24.856346,0,0,0,0,0,0,0,0,1,1,0,7.4602518,0,62.39,56.71,57.73,54.53,8.333333333333334,2,3,0,0,14,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8646,10494,18779,18778,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.634902,8.5640192,0,5,1,-28.029161,0,2,3,2021,8,1,43,40,1,1,0,14.530193,14.530193,0,0,0,0,0,0,0,2,1,1,0,7.1103172,0,57.73,54.53,62.39,56.71,6.666666666666667,1,1,0,0,14,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8647,10495,18780,18781,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.5366812,8.7934713,0,6,-1,-.81260318,0,1,3,2021,9,1,40,40,1,1,0,13.293089,13.293089,0,0,0,0,0,0,0,0,0,0,0,7.4238591,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,340,829141.5,420860,697221.19,299955.06,0,0,6752.3047 +8647,10495,18781,18780,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,8.8912334,8.7971525,0,6,1,12.439949,0,1,1,2021,12,3,50,41,1,3,0,21.039011,21.039011,.05,.05,0,0,0,0,0,0,0,0,0,7.9031887,0,57.06,57.76,51.83,57.2,10,1,1,0,0,7,9,5,1,340,829141.5,420860,697221.19,299955.06,0,0,6752.3047 +8648,10496,18782,18783,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2868481,7.9758677,0,8,-1,-8.8643274,0,2,2,2021,14,2,41,40,1,2,0,10.58387,10.58387,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.51,45.46,39.54,54.5,5,1,1,0,0,9,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10496,18783,18782,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.8661094,6.6691537,0,8,1,-55.887699,0,2,2,2021,9,0,16,13,1,0,0,4.5062809,4.5062809,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,54.5,39.51,45.46,10,1,1,0,0,2,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10496,18784,-9,18783,18782,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1051.8691,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10497,18785,-9,18783,18782,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1040.432,-9,2,2,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.8,54.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,345,-201670.97,0,0,0,0,514.84344,164.36914 +8649,10498,18786,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.2964106,4.9378428,0,0,-920.75671,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3636789,51.47,42.8,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,526,77232.422,36613.262,0,0,0,0,1044.0623 +8650,10499,18787,18788,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.558856,10.222889,0,7,1,80.35955,0,3,1,2021,9,0,50,37,1,0,0,39.961739,39.961739,.05,.05,.05,0,0,0,0,0,0,0,0,5.9832458,0,62.42,45.64,51.73,56.3,8.333333333333334,2,3,0,0,9,7,5,1,1344.5,846364.13,394725.81,327164.88,34745.723,0,0,7451.0332 +8650,10499,18788,18787,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.5454035,8.5346298,0,7,-1,-109.6924,0,-9,-9,2021,10,0,28,28,1,0,0,23.996241,23.996241,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.73,56.3,62.42,45.64,8.333333333333334,2,3,0,0,9,7,5,1,1344.5,846364.13,394725.81,327164.88,34745.723,0,0,7451.0332 +8651,10500,18789,18790,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,9.4210396,9.2792397,0,7,3,88.626015,0,2,2,2021,10,0,35,36,1,0,0,34.482246,34.482246,.05,.05,0,0,0,0,0,0,0,0,0,7.3882265,0,57.1,43.84,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,342,1155804,661304.88,243386.69,46807.906,0,0,5749.9395 +8651,10500,18790,18789,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3318396,7.9529057,0,7,-3,-56.177849,0,2,2,2021,8,0,18,23,1,0,0,25.595783,25.595783,0,0,0,0,0,0,0,0,0,0,0,4.1121268,0,57.16,56.15,57.1,43.84,8.333333333333334,1,1,0,0,7,10,5,1,342,1155804,661304.88,243386.69,46807.906,0,0,5749.9395 +8652,10501,18791,-9,18795,18792,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.6548,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18792,18795,-9,-9,1,1,46,0,4,0,3,3,-9,0,3,7.5263267,7.1633339,0,23,5,54.693562,0,3,2,2021,6,0,24,24,1,0,0,5.6774025,5.6774025,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,50.21,48,56,5,2,3,0,0,9,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18793,-9,18795,18792,1,0,15,0,4,1,3,0,-9,0,5,0,0,0,0,0,-959.50873,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18794,-9,18795,18792,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-990.21497,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18795,18792,-9,-9,1,0,41,0,4,0,3,3,-9,0,4,0,0,0,23,-5,-117.23159,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52.4,50.21,7,2,3,0,1,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18796,-9,18795,18792,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.0394,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10502,18797,-9,18795,18792,1,1,18,0,4,1,2,0,0,0,3,0,0,0,0,0,-903.87341,-9,3,3,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,781,0,0,0,0,0,0,444.40866 +8653,10503,18798,18799,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8956943,8.4421225,8,-1,-34.169395,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0569134,8.1829395,53.98,50.87,46.1,59.99,8.333333333333334,1,1,0,0,0,8,4,1,2703.5,1985008.5,1027317.4,489226.28,0,0,0,4338.5781 +8653,10503,18799,18798,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4243364,7.2379336,8,1,-152.5941,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.5637217,7.4087873,46.1,59.99,53.98,50.87,10,1,1,0,0,0,8,4,1,2703.5,1985008.5,1027317.4,489226.28,0,0,0,4338.5781 +8654,10504,18800,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1915731,8.0047321,0,0,0,-939.25403,0,2,2,2021,17,6,42,42,1,6,0,10.833704,10.833704,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,5,4,2,0,0,2,8,4,0,678,-116101.67,0,0,0,0,0,1959.0027 +8654,10505,18801,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.502346,8.626646,0,0,0,-886.86298,-9,-9,-9,2021,11,0,37,0,1,2,0,14.05261,14.05261,.05,.05,0,0,0,0,0,0,0,0,0,.89574772,0,47,57,-9,-9,7,4,6,0,0,1,8,5,0,537,-11956.574,46580.883,357685.59,179635.52,0,18.692162,1279.0579 +8654,10506,18802,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.5393763,8.1899748,0,0,0,-1080.5347,-9,-9,-9,2021,11,0,37,0,1,2,0,10.410448,10.410448,.05,.05,0,0,0,0,0,0,0,0,0,.99274373,0,47,57,-9,-9,7,4,6,0,0,1,8,4,0,218,177853.89,-19338.922,0,0,28314.764,0,1089.7798 +8654,10507,18803,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.9861498,9.0542641,0,0,0,-997.82233,-9,-9,-9,2021,10,0,37,0,1,1,0,19.152195,19.152195,0,0,0,0,0,0,0,0,0,0,0,2.8619618,0,49,58,-9,-9,7,4,6,0,0,1,8,5,0,344,-27346.236,0,0,0,0,0,2850.4209 +8655,10508,18804,18805,18807,-9,1,0,42,0,1,0,1,1,-9,0,4,7.8877974,7.8263469,0,18,1,-42.517559,0,2,3,2021,16,2,29,29,1,2,0,10.156693,10.156693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.99,62.58,57.06,57.76,5,2,3,0,0,7,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10508,18805,18804,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,9.1707535,9.0913553,0,18,-1,1.4012285,0,1,1,2021,6,0,62,60,1,0,0,19.007162,19.007162,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.99,62.58,8.333333333333334,2,3,0,0,8,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10508,18806,-9,18804,18805,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.02557,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10509,18807,-9,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,0,0,0,0,0,-983.62671,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,1,0,0,8,1,1,169,98592.969,0,0,0,0,0,0 +8656,10510,18808,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,7.0269775,7.082716,0,0,-910.03931,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7893219,57.06,57.76,-9,-9,10,1,1,0,0,0,6,2,1,341,490030,260548.7,112424.25,0,0,0,1005.2621 +8657,10511,18809,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1510887,7.5770168,0,0,0,-931.6972,0,-9,-9,2021,26,9,37,38,1,9,0,8.599453,8.599453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.67,63.54,-9,-9,3.333333333333333,1,1,0,1,9,10,4,0,469,69810.211,61639.285,0,0,0,0,1029.2566 +8657,10512,18810,-9,18809,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8559213,7.8987994,0,0,0,-1016.2493,0,2,-9,2021,10,1,20,35,1,1,1,17.845312,17.845312,.05,.05,0,0,0,0,0,0,0,0,0,2.042285,0,32.65,59.14,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,602,-18005.521,32610.811,0,0,3450.2297,0,1683.4205 +8657,10513,18811,-9,18809,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7022505,7.4624987,0,0,0,-962.6767,0,3,-9,2021,11,0,42,45,1,0,1,7.5120783,7.5120783,0,0,0,0,0,0,0,0,0,0,0,0,0,38.57,58.06,-9,-9,5,1,1,0,0,4,10,3,0,483,155614.94,0,0,0,0,0,1619.9979 +8658,10514,18812,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.91363,7.6232247,0,0,0,-1025.2318,0,2,2,2021,12,1,40,0,1,1,0,7.3507361,7.3507361,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,1,10,2,3,1,520,-28881.178,309.56351,0,0,1024.6133,2638.2825,896.53363 +8659,10515,18813,18814,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.8789577,8.6758661,0,22,-1,-57.57238,0,-9,-9,2021,8,0,54,55,1,0,0,15.793271,15.793271,.05,.05,0,0,0,0,0,0,1,1,0,6.4231319,0,47.38,57.75,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18814,18813,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.6662621,7.7559409,0,22,1,39.822487,0,2,2,2021,8,0,40,44,1,0,0,6.7842822,6.7842822,.05,.05,0,0,0,0,0,0,1,1,0,6.9636655,0,57.16,56.15,47.38,57.75,8.333333333333334,1,1,0,0,13,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18815,-9,18813,18814,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1134.6827,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18816,-9,18813,18814,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.16571,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8660,10516,18817,-9,18818,18820,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-998.03357,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18818,18820,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,0,0,0,10,-10,-99.359726,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,54.96,53.17,7,2,3,0,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18819,-9,18818,18820,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1119.1472,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18820,18818,-9,-9,1,1,46,1,4,0,2,2,-9,0,3,7.287724,7.5650907,0,10,10,-36.411259,0,-9,-9,2021,6,0,30,24,1,0,0,4.8097868,4.8097868,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48,56,5,2,3,0,1,6,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18821,-9,18818,18820,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1124.6073,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18822,-9,18818,18820,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-912.77032,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8661,10517,18823,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,3.7188513,3.6756294,0,0,-995.33759,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.0610662,3.3151295,19.12269,0,1,1,0,4.2650461,4.3694243,51,46,-9,-9,8,1,1,0,0,0,4,2,0,138,259786.33,0,168684.31,0,0,0,1369.1133 +8662,10518,18824,-9,18825,18826,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.4987,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18825,18826,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.2921867,8.3915014,0,20,2,91.52536,0,2,2,2021,7,0,25,30,1,0,0,20.003042,20.003042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.16,55.59,5,2,3,0,0,11,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18826,18825,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3981991,9.268446,0,20,-2,80.256439,0,2,2,2021,10,0,35,35,1,0,0,30.372938,30.372938,.05,.05,0,0,0,0,0,0,1,1,0,7.2576404,0,49.16,55.59,57.33,53.46,8.333333333333334,2,3,0,0,15,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18827,-9,18825,18826,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.08936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.80105728,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8663,10519,18828,18829,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,51,1,2.9278891,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,12.378907,0,0,1,1,0,1.2513987,0,55.52,35.3,41.88,25.43,8.333333333333334,1,1,0,0,6,4,2,1,930.5,689818.5,175616.42,223295.41,0,0,0,1531.7635 +8663,10519,18829,18828,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.2369146,6.31003,51,-1,17.76296,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.1595192,0,120,1,1,0,1.3587824,6.2220583,41.88,25.43,55.52,35.3,10,1,1,0,0,0,4,2,1,930.5,689818.5,175616.42,223295.41,0,0,0,1531.7635 +8664,10520,18830,18831,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.9232898,3.8705652,45,-3,-41.594429,0,3,3,2021,23,10,0,22,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9109476,4.2092218,31.63,37.11,57.33,53.46,1.666666666666667,1,1,0,0,10,6,2,1,279.5,432396.69,102345.88,118807.53,0,798.07983,0,1530.3088 +8664,10520,18831,18830,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.3897719,6.1631937,45,3,32.982273,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6163187,6.4514647,57.33,53.46,31.63,37.11,8.333333333333334,1,1,0,0,6,6,2,1,279.5,432396.69,102345.88,118807.53,0,798.07983,0,1530.3088 +8665,10521,18832,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.8210397,8.357667,6.9566593,0,0,-1096.5177,0,3,2,2021,10,0,24,39,1,0,0,11.789343,11.789343,0,0,0,0,0,0,0,2,1,1,0,7.3246136,5.3820395,58.15,52.91,-9,-9,5,1,1,0,0,10,9,4,1,295,224456.69,0,0,0,0,0,1497.6954 +8666,10522,18833,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1057.3086,0,3,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.98,27.24,-9,-9,0,1,1,1,1,0,2,1,1,281,55646.68,0,0,0,0,0,1331.7205 +8667,10523,18834,18835,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.2028327,6.4527426,51,-1,-28.812546,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1463099,6.4231648,60.05,42.65,57.06,57.76,6.666666666666667,1,1,0,0,0,9,4,1,388.5,1865457.8,1001926.9,671693.63,0,2364.4478,0,3907.4883 +8667,10523,18835,18834,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.2710381,8.2922697,51,1,84.804825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9961863,8.0399132,57.06,57.76,60.05,42.65,10,1,1,0,0,4,9,4,1,388.5,1865457.8,1001926.9,671693.63,0,2364.4478,0,3907.4883 +8668,10524,18836,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.4775,0,2,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,23.34,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,1041,0,0,0,0,0,0,1981.8795 +8668,10525,18837,-9,18836,-9,1,1,28,0,0,0,2,2,-9,0,4,7.0419993,6.7885499,0,0,0,-1107.4227,0,2,2,2021,10,1,16,0,1,1,1,6.8863544,6.8863544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,1.666666666666667,3,4,0,0,5,8,2,0,645,60782.699,-10944.03,0,0,0,0,714.17999 +8669,10526,18838,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.2794685,8.1249285,0,0,0,-994.07318,0,2,3,2021,6,0,50,50,1,0,0,8.8249922,8.8249922,0,0,0,0,0,0,0,7,0,0,0,6.4893165,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,203,1456.2019,-3815.103,62852.652,136074.55,3210.1204,0,1543.1378 +8670,10527,18839,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,6.4936838,6.5043125,0,0,-1031.4148,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0801005,38.4,35.36,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,1926,0,0,0,0,0,0,905.38824 +8670,10528,18840,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.6223917,6.4033217,0,0,-1026.5393,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6022804,6.5605259,55,45,-9,-9,8,4,6,0,0,0,6,2,0,559,170702.02,255263.41,0,0,0,0,1163.7262 +8671,10529,18841,-9,18844,18845,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.00134,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18842,-9,18844,18845,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.25806,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18843,-9,18844,18845,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-1028.9672,-9,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.45,50.26,-9,-9,3.333333333333333,1,1,0,0,1,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18844,18845,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,6,-3,-74.837326,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.62,52.23,55.6,5,1,1,0,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18845,18844,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.7189093,9.7230196,0,6,3,-18.974014,0,2,2,2021,9,0,43,40,1,0,0,37.178417,37.178417,.05,.05,0,0,0,0,0,0,0,0,0,4.221714,0,52.23,55.6,50.18,52.62,8.333333333333334,1,1,0,0,9,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10530,18846,-9,18844,18845,1,0,19,0,2,0,2,2,-9,0,3,6.97716,7.0267167,0,0,0,-1094.3824,0,2,2,2021,16,4,12,22,1,4,1,10.374135,10.374135,0,0,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,5,1,1,0,0,5,9,2,1,1056,-318021.06,0,0,0,0,0,752.30682 +8672,10531,18847,18849,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.1246204,8.3117085,0,3,3,-23.870905,0,-9,-9,2021,10,0,47,39,1,0,0,9.5935221,9.5935221,0,0,0,0,0,0,0,0,1,1,0,.16017357,0,47.01,58,54.79,55.86,8.333333333333334,1,1,0,0,10,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8672,10531,18848,-9,18849,18847,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1681,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8672,10531,18849,18847,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.1590986,7.4541759,0,3,-3,132.25452,0,2,2,2021,7,0,30,30,1,0,0,5.0553684,5.0553684,0,0,0,0,0,0,0,0,1,1,0,4.4885044,0,54.79,55.86,47.01,58,8.333333333333334,1,1,0,0,8,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8673,10532,18850,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.5159,0,-9,-9,2021,10,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,-9,-9,3.333333333333333,1,1,1,0,5,1,1,0,507,-249692.56,0,0,0,0,0,651.11316 +8673,10533,18851,-9,18850,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1027.6587,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,810,327174.22,0,0,0,0,0,0 +8674,10534,18852,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,6.2658343,6.4773111,0,0,0,-876.75903,0,3,2,2021,21,7,16,16,1,7,0,4.0681033,4.0681033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.02,64.34,-9,-9,1.666666666666667,1,1,0,1,6,2,2,0,171,-177745.48,-14626.416,209601.97,103957.81,0,0,1199.5237 +8674,10535,18853,-9,18852,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1118.5538,-9,1,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.26,58.67,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,280,17165.82,0,0,0,0,0,0 +8675,10536,18854,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5960393,7.4600215,0,0,0,-1097.1136,0,3,2,2021,17,5,35,36,1,5,0,7.1676974,7.1676974,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,1,10,11,3,1,681,24223.352,69395.781,88270.563,25685.021,0,0,1210.4745 +8675,10537,18855,-9,18854,-9,1,1,32,0,0,0,2,2,-9,0,4,7.7842698,7.8152409,0,0,0,-859.03198,0,2,2,2021,6,0,35,55,1,0,1,7.5048013,7.5048013,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,734,54948.582,-21839.223,0,0,0,0,129.94905 +8676,10538,18856,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7740049,7.6902823,0,0,0,-887.4436,0,3,3,2021,18,5,36,35,1,5,0,7.9906783,7.9906783,.05,.05,0,0,0,0,0,0,0,0,0,6.1603608,0,34.51,47.72,-9,-9,3.333333333333333,2,3,0,0,9,5,3,1,926,255754.14,122488.2,0,0,0,0,1248.8206 +8676,10539,18857,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.447845,7.6014237,0,0,0,-1004.7838,0,2,2,2021,8,2,38,38,1,2,0,7.1069703,7.1069703,0,0,.05,0,0,0,0,0,0,0,0,0,0,39.22,32.94,-9,-9,1.666666666666667,2,3,0,0,9,5,3,1,797,308716.47,65318.68,0,0,0,0,821.00677 +8677,10540,18858,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1028337,8.0692701,0,0,0,-1007.6426,0,-9,-9,2021,9,0,37,37,1,0,0,10.741846,10.741846,.05,.05,0,0,0,0,0,2,1,1,0,4.2415261,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,11,6,4,1,196,969369.94,845949.5,206623.92,0,-523.24377,2403.2454,2270.1069 +8678,10541,18859,18860,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,0,36.334354,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1748095,0,53.14,45.74,58.02,44.82,8.333333333333334,1,1,0,0,0,6,3,1,1000.5,1497139.5,499170.69,250079.47,0,0,0,2722.2532 +8678,10541,18860,18859,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.7615557,7.6049089,51,0,102.23732,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4794331,7.940793,58.02,44.82,53.14,45.74,8.333333333333334,1,1,0,0,0,6,3,1,1000.5,1497139.5,499170.69,250079.47,0,0,0,2722.2532 +8679,10542,18861,18862,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.4579325,8.5916233,0,10,1,-45.033169,0,2,2,2021,11,0,55,50,1,0,0,12.122108,12.122108,0,0,0,0,0,0,0,0,0,0,0,0,0,47.64,50.3,39.93,57.19,6.666666666666667,1,1,0,0,12,7,5,1,1194.5,613109.13,301461.56,193575.13,0,0,0,3955.6333 +8679,10542,18862,18861,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9734035,8.1730309,0,10,-1,-77.241318,0,2,2,2021,10,0,37,37,1,0,0,10.142418,10.142418,0,0,0,0,0,0,0,0,0,0,0,0,0,39.93,57.19,47.64,50.3,6.666666666666667,1,1,0,0,11,7,5,1,1194.5,613109.13,301461.56,193575.13,0,0,0,3955.6333 +8679,10543,18863,-9,18862,18861,1,0,28,0,0,0,1,1,-9,0,2,0,0,0,0,0,-993.2583,1,2,3,2021,12,1,0,38,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.3,48.12,-9,-9,6.666666666666667,1,1,0,1,7,7,1,1,277,-83874.016,15911.406,0,0,0,0,0 +8680,10544,18864,18865,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,12,-4,-63.766674,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.72,51.08,50.25,51.37,8.333333333333334,1,1,0,1,0,9,2,1,450,674453.13,322763.81,441371.38,0,586.20251,0,1938.8208 +8680,10544,18865,18864,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.2473831,7.281539,47,4,-140.78571,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4621758,7.3237672,50.25,51.37,41.72,51.08,5,1,1,0,1,3,9,2,1,450,674453.13,322763.81,441371.38,0,586.20251,0,1938.8208 +8681,10545,18866,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8117743,8.8742924,0,0,0,-882.90833,0,2,1,2021,9,0,45,42,1,0,0,17.087847,17.087847,0,0,0,0,0,0,0,0,0,0,0,4.431581,0,57.16,56.15,-9,-9,6.666666666666667,4,5,0,0,6,8,5,0,487,-168.87131,0,0,0,22304.826,0,3455.0928 +8682,10546,18867,18868,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,0,0,45,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,59,54,57.16,56.15,10,1,1,0,0,0,4,1,1,432.5,75039.195,0,0,0,0,0,1071.9568 +8682,10546,18868,18867,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,45,-4,0,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,59,54,1.666666666666667,1,1,0,0,3,4,1,1,432.5,75039.195,0,0,0,0,0,1071.9568 +8683,10547,18869,-9,-9,-9,1,0,23,0,2,0,1,1,-9,0,4,7.8193946,7.7643633,0,0,0,-956.85938,-9,3,2,2021,11,0,37,0,1,0,1,9.7170439,9.7170439,.05,.05,0,0,0,0,0,0,1,1,0,4.8983941,0,45.91,59.89,-9,-9,6.666666666666667,2,3,0,0,2,6,3,0,406,-134205.17,-53122.895,0,0,5332.0864,0,2015.1846 +8684,10548,18870,18872,-9,-9,1,1,52,1,1,0,3,3,-9,0,4,7.1772628,7.3392396,0,24,10,-39.30732,0,-9,-9,2021,9,0,24,25,1,1,0,9.7522659,9.7522659,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,49,55,8,2,3,0,0,1,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10548,18871,-9,18872,18870,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.20325,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10548,18872,18870,-9,-9,1,0,42,1,1,0,2,2,-9,0,4,0,0,0,5,-10,-9.9438381,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,54,8,2,3,0,0,0,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10549,18873,-9,18872,18870,1,1,23,1,1,1,2,0,-9,0,4,0,0,0,0,0,-923.03162,-9,2,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,6,6,1,1,566,-194072.58,0,0,0,0,0,383.39035 +8684,10550,18874,-9,18872,18870,1,0,22,1,1,0,2,2,-9,0,4,0,0,0,0,0,-936.10626,-9,2,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,1,0,0,6,1,1,887,0,0,0,0,0,0,0 +8684,10551,18875,-9,18872,18870,1,1,18,1,1,1,2,0,0,0,4,0,0,0,0,0,-1273.3435,-9,2,3,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,6,1,1,185,-170784.45,0,0,0,0,0,0 +8685,10552,18876,-9,18877,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6497,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8685,10552,18877,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.4721928,8.4795637,0,0,0,-1010.3066,0,3,2,2021,25,12,37,40,1,12,0,13.58956,13.58956,0,0,0,0,0,0,0,0,1,1,0,0,0,19.77,66.82000000000001,-9,-9,1.666666666666667,4,2,0,0,8,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8685,10552,18878,-9,18877,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1024.9637,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,0,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8686,10553,18879,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.0405083,8.1674747,0,0,0,-912.46619,0,3,3,2021,11,0,40,42,1,0,0,9.9490585,9.9490585,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,2,3,0,0,7,6,4,1,1331,7055.8057,40847.453,0,0,0,0,36.793831 +8687,10554,18880,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.6510301,7.5453329,0,0,0,-905.35022,0,2,-9,2021,13,1,45,45,1,1,0,5.0970106,5.0970106,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,53.95,-9,-9,5,1,1,0,1,14,12,3,1,1046,211117.98,0,73424.391,0,0,0,1019.2695 +8687,10555,18881,-9,18880,-9,1,0,20,0,0,0,2,2,-9,0,3,6.4998136,6.191772,0,0,0,-1178.537,0,2,-9,2021,8,0,20,0,1,0,1,3.2290826,3.2290826,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,53.59,-9,-9,5,1,1,0,0,2,12,2,1,1545,65753.117,0,0,0,0,0,571.3913 +8688,10556,18882,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,7.7834382,7.8412938,0,0,0,-966.96686,0,3,3,2021,9,0,38,38,1,0,0,7.7865376,7.7865376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.76,36.38,-9,-9,6.666666666666667,1,1,0,1,6,2,4,0,161,40720.086,-48102.059,0,0,0,-39.472187,1273.91 +8689,10557,18883,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.830914,7.539083,0,0,0,-1006.3427,0,-9,-9,2021,12,0,56,56,1,0,0,3.5927186,3.5927186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,59.6,-9,-9,5,1,1,0,0,9,7,3,0,1587,-268140.66,-26287.717,0,0,0,0,1234.4653 +8690,10558,18884,18885,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.2655182,5.3403835,64,-1,49.58292,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,5.1920047,60.45,43.72,53.05,39.99,8.333333333333334,1,1,0,0,0,6,2,1,281.5,81807.727,68518.758,218242,0,0,0,1113.7076 +8690,10558,18885,18884,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,6,1,-27.11219,0,-9,-9,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,14.108861,0,0,1,1,0,0,0,53.05,39.99,60.45,43.72,8.333333333333334,1,1,0,0,0,6,2,1,281.5,81807.727,68518.758,218242,0,0,0,1113.7076 +8691,10559,18886,18887,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.0559549,4.3988485,47,-4,68.287392,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.044755,4.296958,40.36,44.84,54.2,49.26,6.666666666666667,1,1,0,0,8,5,2,1,1139.5,775323.13,542406.06,232801.09,9348.7324,4327.8066,0,1639.6699 +8691,10559,18887,18886,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.9684982,7.0615911,47,4,-48.023766,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9440365,6.6126475,54.2,49.26,40.36,44.84,8.333333333333334,1,1,0,0,9,5,2,1,1139.5,775323.13,542406.06,232801.09,9348.7324,4327.8066,0,1639.6699 +8692,10560,18888,18890,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.7910385,8.4590597,0,8,-5,-21.016027,0,2,2,2021,11,0,47,50,1,0,0,14.233898,14.233898,.05,.05,0,0,0,0,0,0,1,1,0,.043866444,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,10,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18889,-9,18888,18890,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1228.5603,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18890,18888,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.6008081,8.8335924,0,8,5,82.961327,0,-9,-9,2021,9,0,36,36,1,0,0,17.98921,17.98921,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.79,55.86,8.333333333333334,1,1,0,0,10,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18891,-9,18888,18890,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.12317,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8693,10561,18892,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-975.89264,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,27.568514,0,237.9279,0,1,1,0,0,0,37.85,49.05,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,136,-79434.602,0,0,0,0,0,480.11826 +8694,10562,18893,-9,18896,18895,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.3185,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18894,-9,18896,18895,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1151.811,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18895,18896,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,7.84512,7.2639322,0,7,0,-36.252209,-9,-9,-9,2021,10,0,60,0,1,0,0,3.6326566,3.6326566,.05,.05,0,0,0,0,0,2,0,0,0,2.5454788,0,55.19,54.26,55.21,45.89,8.333333333333334,1,1,0,0,9,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18896,18895,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.5922828,7.8387637,0,7,0,98.504387,0,-9,3,2021,9,0,28,28,1,0,0,8.5724154,8.5724154,0,0,0,0,0,0,0,7,0,0,0,0,0,55.21,45.89,55.19,54.26,8.333333333333334,1,1,0,0,9,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8695,10563,18897,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,9.1964989,9.7636175,0,0,0,-879.12494,0,1,2,2021,3,0,40,40,1,0,0,26.47015,26.47015,.05,.05,0,0,0,0,0,0,0,0,0,1.8465679,0,54.1,59.11,-9,-9,10,1,1,0,0,7,8,5,0,457,80156.805,-47225.414,0,0,0,0,2699.7498 +8696,10564,18898,-9,-9,-9,1,1,29,0,0,1,1,0,0,0,3,0,0,0,0,0,-909.52478,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4827843,0,47.4,55.39,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,652,35469.977,0,0,0,0,0,1149.9369 +8697,10565,18899,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,3,7.7808867,7.8878136,0,0,0,-970.68372,0,-9,-9,2021,11,0,36,26,1,0,0,6.7744684,6.7744684,.05,.05,0,0,0,0,0,7,0,0,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,6,6,3,0,149,-18873.9,60300.699,0,0,-250.07274,0,795.99969 +8698,10566,18900,18901,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.434742,8.5439034,0,7,1,-83.957298,0,2,3,2021,10,0,38,35,1,1,0,13.85393,13.85393,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,60.02,56.42,7,2,3,0,0,1,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8698,10566,18901,18900,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,6.5362844,6.731761,0,7,-1,-68.609665,0,2,2,2021,4,0,8,43,1,0,0,8.4715929,8.4715929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50,57,8.333333333333334,2,3,0,0,6,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8698,10566,18902,-9,18901,18900,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.5465,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8699,10567,18903,18904,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.788991,8.6194096,0,5,-4,12.428879,0,-9,-9,2021,11,0,85,57,1,0,0,6.1458406,6.1458406,0,0,0,0,0,0,0,0,0,0,0,3.1959283,0,59.15,49.67,55.77,42.25,8.333333333333334,1,1,0,0,9,12,5,1,857,209243.91,116340.16,311786.88,110574.66,0,0,7864.6221 +8699,10567,18904,18903,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.8206224,9.4357815,0,5,4,80.497063,0,3,3,2021,10,0,45,45,1,0,0,45.583813,45.583813,0,0,0,0,0,0,0,0,0,0,0,2.8893199,0,55.77,42.25,59.15,49.67,6.666666666666667,1,1,0,0,7,12,5,1,857,209243.91,116340.16,311786.88,110574.66,0,0,7864.6221 +8700,10568,18905,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.8659344,5.6081643,0,0,-1023.5645,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,5.6420221,46.64,47.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,452,462558.38,8371.7695,203038.84,0,0,1068.1434,875.18878 +8701,10569,18906,-9,18910,18908,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-977.37897,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18907,-9,18910,18908,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1116.9908,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18908,18910,-9,-9,1,1,41,1,4,0,1,1,-9,0,3,8.8808975,8.50632,0,1,1,-111.44904,-9,-9,-9,2021,10,0,47,0,1,0,0,14.495004,14.495004,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,40.66,52.94,8.333333333333334,1,1,0,0,10,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18909,-9,18910,18908,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-898.91577,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18910,18908,-9,-9,1,0,40,1,4,0,1,1,-9,0,3,7.8346839,7.9492116,0,1,-1,-159.86185,-9,2,3,2021,12,0,25,0,1,2,0,12.226432,12.226432,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.66,52.94,44.7,53.68,3.333333333333333,1,1,0,0,10,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18911,-9,18910,18908,1,1,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.163,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8702,10570,18912,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1010.6921,0,3,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.14,47.56,-9,-9,3.333333333333333,1,1,1,0,2,4,1,0,776,78551.891,248515.83,129601.25,87392.961,0,0,2042.3862 +8702,10571,18913,-9,18912,-9,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-889.52332,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18914,-9,-9,18913,1,1,11,0,0,1,3,0,-9,0,3,0,0,0,0,0,-960.58673,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18915,-9,-9,18913,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-940.54462,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18916,-9,-9,18913,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-952.58221,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8703,10572,18917,-9,18920,18919,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.90497,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18918,-9,18920,18919,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.71033,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18919,18920,-9,-9,1,1,30,1,2,0,1,1,-9,0,3,9.1637249,9.1416969,0,6,-8,-175.13675,0,1,1,2021,11,0,44,42,1,0,0,26.288815,26.288815,.05,.05,0,0,0,0,0,0,1,1,0,4.2549968,0,51.41,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18920,18919,-9,-9,1,0,38,1,2,0,2,2,-9,0,3,7.1325026,7.4850116,0,6,8,-39.597599,0,-9,-9,2021,6,0,16,21,1,0,0,8.6721287,8.6721287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.41,56.15,10,1,1,0,0,9,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8704,10573,18921,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4961352,6.7140684,0,0,-993.53992,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8329011,6.8278627,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,9,8,2,1,152,422536.63,52919.07,331714.16,0,0,0,701.8623 +8705,10574,18922,18923,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.068047,7.533196,0,32,-3,112.54689,0,3,3,2021,14,3,17,15,1,3,0,11.754622,11.754622,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.39,32.12,36.09,34.95,5,1,1,0,0,12,11,4,1,871,-44736.336,-15621.113,31250.502,33922.117,8846.1563,0,2466.1868 +8705,10574,18923,18922,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.102354,8.4335747,0,32,3,42.348835,0,2,2,2021,20,8,80,58,1,8,0,6.6107802,6.6107802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.09,34.95,39.39,32.12,3.333333333333333,1,1,0,0,11,11,4,1,871,-44736.336,-15621.113,31250.502,33922.117,8846.1563,0,2466.1868 +8706,10575,18924,18925,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,9.3528385,9.1071339,0,25,5,.67446071,-9,-9,-9,2021,8,0,47,0,1,0,0,16.85214,16.85214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.53,36.87,58.32,50.22,10,1,1,0,0,15,6,5,1,390.5,2111366.8,1597538.9,480400.38,16271.714,0,0,4242.9336 +8706,10575,18925,18924,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0969954,7.9757161,0,25,-5,14.428208,-9,2,3,2021,7,0,42,0,1,0,0,8.4247379,8.4247379,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,61.53,36.87,3.333333333333333,1,1,0,0,15,6,5,1,390.5,2111366.8,1597538.9,480400.38,16271.714,0,0,4242.9336 +8706,10576,18926,-9,18925,18924,1,0,25,0,0,0,2,2,-9,0,3,7.7767262,7.8040729,0,0,0,-982.63214,0,2,2,2021,9,0,37,38,1,0,1,9.4754295,9.4754295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,54.77,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,224,-42448.414,58487.086,0,0,-1329.9427,0,380.57776 +8707,10577,18927,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.1011868,7.9604893,0,0,0,-1059.8176,0,2,2,2021,13,2,55,50,1,2,0,6.1563673,6.1563673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.67,59.9,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,300,348020.47,137556.19,230662.91,26408.115,0,2671.8015,1368.8281 +8708,10578,18928,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.0643196,8.092948,0,0,-1038.8831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7076352,8.1442261,59.13,34.1,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,572,1479387.4,898406.13,321565.22,0,2338.2437,0,3007.4719 +8709,10579,18929,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,2.0946715,2.4938123,0,0,-935.56171,-9,3,2,2021,30,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2.3588862,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,851,41960.145,-85401.742,139779.38,0,0,0,318.17163 +8710,10580,18930,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.4211397,7.5479493,0,0,-1175.4805,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2200217,7.4793706,46.99,55.66,-9,-9,10,1,1,0,0,0,11,3,1,2481,751968.38,308649.56,374924.5,0,0,0,2649.6294 +8711,10581,18931,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,0,4.2829199,4.4493375,0,0,-1055.6523,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.2128954,0,33.87,54.68,-9,-9,3.333333333333333,1,1,1,0,3,7,2,0,530,-54883.23,0,0,0,0,0,50.354053 +8712,10582,18932,18934,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.182972,8.0357895,0,6,4,-71.837563,0,-9,-9,2021,8,0,39,37,1,0,0,12.572516,12.572516,0,0,0,0,0,0,0,0,1,1,0,.79317546,0,54.2,57.49,52,56,8.333333333333334,1,1,0,0,7,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18933,-9,18932,18934,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.11987,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18934,18932,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.3965569,8.5607243,0,6,-4,35.774506,0,-9,-9,2021,9,0,40,40,1,1,0,13.437985,13.437985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18935,-9,18932,18934,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.06079,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8713,10583,18936,18937,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.285718,5.2943163,10,-5,58.503639,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2250955,5.1762772,45.91,59.89,41.87,44.37,6.666666666666667,1,1,0,0,1,7,2,1,427,271464.91,124392.2,223435.59,0,0,0,1609 +8713,10583,18937,18936,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.1912818,6.4896369,10,5,47.723133,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6486158,6.354856,41.87,44.37,45.91,59.89,5,1,1,0,0,0,7,2,1,427,271464.91,124392.2,223435.59,0,0,0,1609 +8714,10584,18938,18939,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1568727,8.2788086,0,36,1,-119.09336,0,3,2,2021,13,1,45,45,1,1,0,9.1186905,9.1186905,.05,.05,0,0,0,0,0,27,0,0,0,0,0,42.46,41.62,52.88,43.27,5,1,1,0,0,13,5,4,1,454.5,484160.75,58619.699,225869.91,8866.5645,0,1276.3785,2261.4495 +8714,10584,18939,18938,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.3095889,7.0910082,0,36,-1,9.3770761,0,3,-9,2021,11,0,20,20,1,0,0,6.5573549,6.5573549,0,0,0,0,0,0,0,74.5,0,0,0,0,0,52.88,43.27,42.46,41.62,6.666666666666667,1,1,0,0,13,5,4,1,454.5,484160.75,58619.699,225869.91,8866.5645,0,1276.3785,2261.4495 +8715,10585,18940,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,0,0,0,0,0,-944.16315,0,2,2,2021,10,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.7148511,0,53.37,52.37,-9,-9,6.666666666666667,3,4,1,0,10,8,1,1,259,-207205.64,77336.57,0,0,0,0,276.56238 +8716,10586,18941,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1490173,7.9779234,0,0,0,-808.2384,0,3,3,2021,8,0,40,40,1,0,0,7.8887882,7.8887882,.05,.05,0,0,0,0,0,0,1,1,0,5.8116078,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,418,27782.973,-8659.5996,0,0,0,0,931.60059 +8717,10587,18942,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.827137,7.9209414,0,0,0,-1163.5304,0,2,2,2021,7,2,18,17,1,2,0,15.804481,15.804481,.05,.05,0,0,0,0,0,0,0,0,0,2.5695312,0,54.85,28.19,-9,-9,5,1,1,0,0,11,8,3,1,1791,-35952.629,-62890.848,0,0,0,0,1285.384 +8718,10588,18943,18944,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1814184,6.1949263,49,1,-26.999533,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9662294,6.1668701,57.16,56.15,57.16,56.15,10,1,1,0,0,5,5,2,1,851.5,99950.242,151703.27,0,0,0,0,1757.8525 +8718,10588,18944,18943,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,-1,-43.53669,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.944555,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,5,2,1,851.5,99950.242,151703.27,0,0,0,0,1757.8525 +8719,10589,18945,18946,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.2649913,6.0750952,44,-2,13.207219,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.8279102,6.2234216,45.32,54.77,58.17,39.35,8.333333333333334,1,1,0,0,6,5,3,1,1326,768886.81,766079.06,131531.78,0,0,0,3512.0083 +8719,10589,18946,18945,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.1680746,7.7635016,44,2,-33.115906,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4790268,7.9402728,58.17,39.35,45.32,54.77,8.333333333333334,1,1,0,0,0,5,3,1,1326,768886.81,766079.06,131531.78,0,0,0,3512.0083 +8720,10590,18947,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-944.35632,0,-9,-9,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.01,28.39,-9,-9,1.666666666666667,2,3,0,1,0,2,1,0,793,-10757.299,-76125.266,0,0,1699.6036,0,392.79874 +8720,10591,18948,-9,18947,-9,1,0,26,0,0,0,1,1,-9,0,5,7.6249032,7.452457,0,0,0,-1021.4578,0,2,-9,2021,10,0,44,44,1,0,1,5.3455987,5.3455987,.05,.05,0,0,0,0,0,0,1,0,1,0,0,66.67,38.34,-9,-9,6.666666666666667,2,3,0,0,4,2,3,0,518,-179557.48,103396.25,0,0,41288.617,0,535.00519 +8720,10592,18949,-9,18947,-9,1,0,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1094.5726,0,3,-9,2021,16,0,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,43,-9,-9,5,2,3,1,0,0,2,1,0,927,77974.578,0,0,0,0,0,1383.9102 +8720,10593,18950,-9,18947,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-905.56476,1,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,0,2,1,0,2101,-116539.6,0,0,0,0,0,0 +8720,10594,18951,-9,18947,-9,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1035.4044,-9,3,-9,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.9,56.09,-9,-9,6.666666666666667,2,3,0,0,0,2,1,0,1653,0,0,0,0,0,0,719.72845 +8720,10595,18952,-9,18947,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-869.12347,-9,3,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.38,57.1,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,891,165809.39,0,0,0,0,0,0 +8721,10596,18953,18954,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.452302,8.3086166,9,3,111.15599,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1088486,59.46,46.99,58.15,52.91,6.666666666666667,1,1,0,0,9,9,3,1,324,1294435.3,818164.63,312554,0,0,0,2742.5537 +8721,10596,18954,18953,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,9,-3,22.851059,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.0889015,0,58.15,52.91,59.46,46.99,6.666666666666667,1,1,0,0,4,9,3,1,324,1294435.3,818164.63,312554,0,0,0,2742.5537 +8722,10597,18955,18956,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.3101025,8.9423075,0,6,-1,-78.89827,0,3,3,2021,9,0,45,39,1,1,0,10.384808,10.384808,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54,54,52,53,8,1,1,0,0,6,12,4,1,587.5,653527.38,345012.75,370212.78,93601.125,3914.3447,0,2905.7747 +8722,10597,18956,18955,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5195293,7.8267612,0,36,1,65.770248,0,3,3,2021,10,0,39,41,1,1,0,5.7749524,5.7749524,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,54,54,8,1,1,0,0,8,12,4,1,587.5,653527.38,345012.75,370212.78,93601.125,3914.3447,0,2905.7747 +8723,10598,18957,18958,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.4076505,5.4427185,34,5,-82.583466,0,2,1,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0682211,59.14,52.5,66.34,49.42,10,1,1,0,0,0,4,2,1,2466,194845.92,45042.719,203577.91,0,0,0,1274.6674 +8723,10598,18958,18957,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,33,-5,-111.8831,0,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,59.14,52.5,10,2,3,0,0,5,4,2,1,2466,194845.92,45042.719,203577.91,0,0,0,1274.6674 +8724,10599,18959,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1089.9551,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,73.200676,0,0,1,1,0,0,0,33.56,17.19,-9,-9,5,1,1,0,0,0,4,1,0,1008,55772.43,0,0,0,0,0,2099.5989 +8725,10600,18960,18961,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.080822,8.7459183,7.8236794,27,1,-84.592567,0,3,3,2021,13,2,35,38,1,2,0,13.689839,13.689839,.05,.05,0,0,0,0,0,2,0,0,0,2.0809584,8.1703234,41.7,39.18,43.24,34.14,8.333333333333334,1,1,0,0,10,2,5,1,1024.5,2321723.5,2084991.3,147370.33,0,0,9538.5225,4886.5498 +8725,10600,18961,18960,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.2257662,8.3393288,6.2939253,27,-1,-8.5354948,0,3,2,2021,12,1,35,35,1,1,0,10.31106,10.31106,0,0,0,0,0,0,0,7,0,0,0,6.5567951,6.6344333,43.24,34.14,41.7,39.18,8.333333333333334,1,1,0,0,10,2,5,1,1024.5,2321723.5,2084991.3,147370.33,0,0,9538.5225,4886.5498 +8725,10601,18962,-9,18961,18960,1,1,24,0,0,0,2,2,-9,0,4,8.3490705,8.5640793,0,0,0,-1009.9111,0,3,2,2021,10,0,40,38,1,1,1,10.16175,10.16175,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,4,1,901,-161202.89,0,0,0,0,0,1170.3868 +8726,10602,18963,-9,18965,18964,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1192.7837,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8726,10602,18964,18965,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,0,0,0,2,2,-15.922256,0,2,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,33.83,63.9,8.333333333333334,1,1,1,1,2,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8726,10602,18965,18964,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4089146,8.4461908,0,2,-2,36.865849,0,2,3,2021,21,8,41,45,1,8,0,13.496657,13.496657,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,63.9,57.33,53.46,3.333333333333333,1,1,0,1,10,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8727,10603,18966,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-968.41199,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,197,-112561.47,0,0,0,0,0,397.98013 +8728,10604,18967,18968,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1197681,7.9813399,0,34,5,-57.352314,0,-9,-9,2021,8,0,41,38,1,0,0,9.5901423,9.5901423,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.07,55.46,8.333333333333334,1,1,0,0,13,8,4,1,603,562349.44,458634,149102.28,0,0,9251.166,3112.3313 +8728,10604,18968,18967,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.1098213,8.0872631,0,34,-5,-197.53508,0,2,2,2021,8,0,50,52,1,0,0,10.291557,10.291557,0,0,0,0,0,0,0,0,0,0,0,0,0,56.07,55.46,54.2,57.49,8.333333333333334,1,1,0,0,13,8,4,1,603,562349.44,458634,149102.28,0,0,9251.166,3112.3313 +8729,10605,18969,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.3479481,8.3831043,7.4185324,0,0,-938.46918,-9,1,2,2021,18,6,30,0,1,6,0,11.496025,11.496025,.05,.05,0,0,0,0,0,0,1,1,0,7.0913501,0,38.91,52.63,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8729,10605,18970,-9,18969,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1079.7277,-9,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15797891,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8729,10605,18971,-9,18969,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1166.4473,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8730,10606,18972,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7233763,7.6487269,0,0,0,-997.26349,0,3,3,2021,28,11,30,28,1,11,0,7.5813103,7.5813103,0,0,0,0,0,0,0,0,0,0,0,0,0,26.86,63.5,-9,-9,1.666666666666667,1,1,0,0,10,8,3,1,575,745083.5,278864.16,351269.63,0,0,0,419.11191 +8731,10607,18973,18974,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,62,-1,16.724619,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,47.62,26.56,27.55,25.55,6.666666666666667,1,1,0,0,0,2,2,1,870,46827.086,87729.461,0,0,0,0,1897.7766 +8731,10607,18974,18973,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.9752841,6.2446961,62,1,117.71215,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,8.5016947,0,0,1,1,0,0,5.6709604,27.55,25.55,47.62,26.56,8.333333333333334,1,1,0,0,0,2,2,1,870,46827.086,87729.461,0,0,0,0,1897.7766 +8732,10608,18975,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.0197582,7.870265,0,0,-976.96832,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3891702,7.8062763,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,1773,-2940.8701,0,0,0,0,0,1781.3396 +8733,10609,18976,-9,-9,18977,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6683,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,4,0,1087.5,127114.97,0,0,0,0,0,1561.5317 +8733,10609,18977,-9,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.0546942,7.9823799,0,0,0,-927.55225,0,-9,-9,2021,11,0,37,38,1,0,0,11.289165,11.289165,0,0,0,0,0,0,0,0,0,0,0,0,0,47.72,40.36,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,1087.5,127114.97,0,0,0,0,0,1561.5317 +8734,10610,18978,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1078.6082,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3103781,0,44.59,44.54,-9,-9,8.333333333333334,1,1,0,0,11,11,1,1,1657,160837.8,53426.016,121098.8,0,0,0,2144.415 +8735,10611,18979,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.4413481,9.5606546,0,0,0,-890.83344,0,3,2,2021,9,0,50,60,1,0,0,28.956934,28.956934,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,72,607235.81,421904,244266.22,45234.414,0,8711.9756,3993.6316 +8736,10612,18980,-9,18981,18982,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8513,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18981,18982,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-104.84608,0,1,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,56.07,31.93,58.41,8.333333333333334,1,1,0,0,7,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18982,18981,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.5835605,7.1573682,0,9,8,62.856888,0,-9,3,2021,18,6,40,40,1,6,0,4.147377,4.147377,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,58.41,42.85,56.07,5,1,1,0,1,10,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18983,-9,18981,18982,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8296,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8737,10613,18984,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.3477459,8.6483564,0,0,0,-1075.8575,0,2,3,2021,25,11,39,37,1,11,0,12.475976,12.475976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.26,58.67,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,4047,-26366.438,-31768.385,0,0,4063.6523,6891.5142,2309.7297 +8738,10614,18985,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,4.3760529,4.49541,0,0,-959.74884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5174041,4.7217188,54.18,50.75,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,231,292573.53,120530.12,134129.97,0,0,81.603722,277.2933 +8739,10615,18986,18987,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8871994,7.7091837,0,2,-5,47.694717,0,-9,-9,2021,12,0,38,39,1,0,0,6.6440802,6.6440802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,41.29,45.8,6.666666666666667,1,1,0,0,12,4,4,0,483,-125689.55,101216.8,0,0,0,0,2287.1743 +8739,10615,18987,18986,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,7.7678475,7.9466028,0,2,5,-52.780022,0,-9,-9,2021,12,2,35,37,1,2,0,9.4084826,9.4084826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.29,45.8,44.19,58.01,5,1,1,0,0,2,4,4,0,483,-125689.55,101216.8,0,0,0,0,2287.1743 +8740,10616,18988,18989,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.6743464,8.4098606,7.7248406,40,5,93.120926,0,2,3,2021,8,0,19,19,1,0,0,17.006023,17.006023,.05,.05,0,0,0,0,0,0,0,0,0,7.6074882,7.9603596,55.57,48.59,47.22,53.97,8.333333333333334,1,1,0,0,10,5,5,1,753,191138.73,23831.033,127032.33,72747.734,166.88765,5607.0537,4411.5605 +8740,10616,18989,18988,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2853031,8.3977203,0,40,-5,-53.357178,0,3,3,2021,12,0,37,37,1,0,0,15.538179,15.538179,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.22,53.97,55.57,48.59,5,1,1,0,0,13,5,5,1,753,191138.73,23831.033,127032.33,72747.734,166.88765,5607.0537,4411.5605 +8740,10617,18990,-9,18989,18988,1,1,26,0,0,0,1,1,-9,0,4,8.8083754,8.6694946,0,0,0,-863.46649,-9,2,2,2021,10,0,60,0,1,0,1,12.835057,12.835057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,5,5,1,534,54605.336,-5131.9619,0,0,0,0,3165.613 +8741,10618,18991,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4468555,5.9856648,0,0,-969.04901,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0541892,6.248271,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,323,47459.285,53903.914,65733.789,0,0,0,1145.2228 +8742,10619,18992,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.1350851,7.809567,0,0,-1049.8586,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.421515,7.9153652,54.33,42.47,-9,-9,10,1,1,0,0,6,9,3,1,568,174647,97573.969,0,0,0,0,2380.7996 +8743,10620,18993,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.9949,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.518881,0,0,1,1,0,0,0,35.61,20.5,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,547,69172.477,0,0,0,0,0,891.07623 +8744,10621,18994,18995,18996,18997,1,0,22,0,0,0,2,2,-9,0,3,8.2100382,8.5425024,0,2,-1,144.76028,0,3,3,2021,19,7,38,40,1,7,0,13.263261,13.263261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.43,62.51,33.13,55.72,5,1,1,0,0,6,11,4,1,544.5,117990.78,-109079.26,0,0,0,0,3210.946 +8744,10621,18995,18994,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,7.9588909,7.9641209,0,2,1,-11.197179,-9,-9,-9,2021,10,0,40,0,1,0,0,5.9131942,5.9131942,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.13,55.72,23.43,62.51,3.333333333333333,1,1,0,0,5,11,4,1,544.5,117990.78,-109079.26,0,0,0,0,3210.946 +8744,10622,18996,18997,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.4444661,7.577786,0,10,7,55.751507,0,-9,-9,2021,24,12,27,35,1,12,0,8.4116001,8.4116001,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.05,57.26,47.93,49.39,6.666666666666667,1,1,0,0,10,11,5,1,157.5,376799.13,242770.11,80028.023,67305.266,0,1059.5555,2609.6826 +8744,10622,18997,18996,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.5802565,8.2539053,0,10,-7,106.32558,0,2,3,2021,13,1,38,41,1,1,0,17.270885,17.270885,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,47.93,49.39,40.05,57.26,5,1,1,0,0,11,11,5,1,157.5,376799.13,242770.11,80028.023,67305.266,0,1059.5555,2609.6826 +8745,10623,18998,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.5923338,8.7319994,.81479621,0,0,-1065.2415,0,1,1,2021,10,2,44,42,1,2,0,13.823877,13.823877,.05,.05,0,0,0,0,0,0,1,1,0,3.3469923,0,40.89,51.69,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,2121,157489.77,5797.0703,94494.773,142261.92,0,0,1744.1049 +8746,10624,18999,19000,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,0,0,0,4,-1,49.89986,-9,-9,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,50.81,34.62,10,1,1,1,0,8,11,2,0,827.5,-296.49023,-39333.336,0,0,0,0,657.73767 +8746,10624,19000,18999,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,4.9476838,4.8044477,0,18,1,23.625921,0,3,3,2021,11,0,41,40,1,0,0,.46107718,.46107718,0,0,0,0,0,0,0,0,1,0,1,0,0,50.81,34.62,62.49,55.09,5,1,1,0,0,7,11,2,0,827.5,-296.49023,-39333.336,0,0,0,0,657.73767 +8747,10625,19001,19002,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.3554482,5.0305433,6,0,91.575546,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1109163,5.1871433,53.56,49.66,57.18,45.76,10,1,1,0,0,0,9,2,1,2685.5,552547.63,86378.078,404526.97,0,0,0,1316.4514 +8747,10625,19002,19001,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,6.931231,7.4772401,6,9,-.58624798,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8391032,57.18,45.76,53.56,49.66,6.666666666666667,1,1,0,0,0,9,2,1,2685.5,552547.63,86378.078,404526.97,0,0,0,1316.4514 +8748,10626,19003,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.6157122,8.6279068,0,0,0,-1068.7887,0,2,1,2021,10,0,37,37,1,0,0,20.734423,20.734423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.54,53.26,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,373,436898.59,187670.56,112532.91,66897.422,0,0,3019.3203 +8748,10627,19004,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1052.3121,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.43,52.88,-9,-9,5,1,1,1,0,6,1,2,1,633,-70391.625,0,0,0,0,0,0 +8749,10628,19005,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7125897,8.5753469,7.8248119,0,0,-1044.0358,0,2,2,2021,19,7,36,36,1,7,0,7.8212171,7.8212171,.05,.05,0,0,0,0,0,7,0,0,0,8.0131817,6.038414,39.9,49.39,-9,-9,5,1,1,0,0,11,12,5,1,1185,1065659.4,902822.13,215009.3,-603.82947,0,0,3136.7422 +8749,10629,19006,-9,19005,-9,1,0,26,0,0,0,2,2,-9,0,4,8.0971575,8.2023697,0,0,0,-1008.117,-9,1,1,2021,10,0,36,0,1,0,1,11.718597,11.718597,.05,.05,0,0,0,0,0,0,0,0,0,1.2650843,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,918,16310.389,-8788.8301,0,0,0,0,973.15106 +8750,10630,19007,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.3967466,8.4962378,0,0,0,-875.64899,0,-9,-9,2021,8,0,40,40,1,0,0,10.894411,10.894411,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,8,4,4,0,949,18795.314,-55480.895,0,0,0,0,1817.0178 +8751,10631,19008,19009,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.9375696,8.770586,0,4,0,-97.948135,0,-9,-9,2021,7,0,44,40,1,0,0,18.068783,18.068783,.05,.05,0,0,0,0,0,0,0,0,0,6.6003823,0,59.43,58.05,54.63,58.83,8.333333333333334,2,3,0,0,5,12,5,1,985.5,530249.31,445780.69,314513,225990.05,4368.6719,0,5673.4414 +8751,10631,19009,19008,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3971777,8.7759256,0,4,0,-67.488747,0,-9,-9,2021,9,1,41,39,1,1,0,14.654941,14.654941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,59.43,58.05,6.666666666666667,2,3,0,0,5,12,5,1,985.5,530249.31,445780.69,314513,225990.05,4368.6719,0,5673.4414 +8752,10632,19010,19011,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8178234,8.963335,0,1,4,-8.620409,-9,1,2,2021,10,1,48,0,1,1,0,20.054338,20.054338,.05,.05,0,0,0,0,0,0,0,0,0,5.4866381,0,57.33,53.46,51.14,60.45,5,1,1,0,0,10,9,5,0,379.5,-135983,-22003.219,0,0,0,0,3492.9644 +8752,10632,19011,19010,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.404798,7.2377596,0,1,-4,17.861437,-9,-9,-9,2021,7,0,42,0,1,0,0,3.2146375,3.2146375,0,0,0,0,0,0,0,0,0,0,0,1.7278097,0,51.14,60.45,57.33,53.46,8.333333333333334,1,1,0,0,0,9,5,0,379.5,-135983,-22003.219,0,0,0,0,3492.9644 +8753,10633,19012,19013,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.8250351,7.5803828,30,13,-27.316673,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.17416,8.0219584,58.15,52.91,53.39,28.41,10,1,1,0,0,0,10,3,1,630,947394,488186.47,295835.38,0,3953.1414,1419.0347,4540.6963 +8753,10633,19013,19012,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3364387,6.3090363,30,-13,-64.256645,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.3854299,6.4626026,53.39,28.41,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,630,947394,488186.47,295835.38,0,3953.1414,1419.0347,4540.6963 +8754,10634,19014,-9,19015,19016,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.6729,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8754,10634,19015,19016,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4517927,8.7541533,0,7,1,80.59687,0,2,2,2021,11,2,52,60,1,2,0,13.548748,13.548748,0,0,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,55.79,52.62,8.333333333333334,1,1,0,0,7,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8754,10634,19016,19015,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.8916388,8.8260679,0,7,-1,-135.50467,0,2,2,2021,5,0,47,45,1,0,0,18.393824,18.393824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,51.84,51.67,10,1,1,0,0,8,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8755,10635,19017,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1285505,9.3126602,0,0,0,-1014.8745,0,1,1,2021,9,0,40,40,1,0,0,32.034855,32.034855,.05,.05,0,0,0,0,0,0,0,0,0,1.8625318,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,8,5,1,240,59984.586,-38018.555,0,0,0,0,4361.0342 +8756,10636,19018,-9,19020,19019,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.7262,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10636,19019,19020,-9,-9,1,1,57,0,1,0,1,1,-9,0,2,9.4568825,9.3382759,0,12,4,-87.51268,0,2,2,2021,21,9,35,75,1,9,0,37.442398,37.442398,0,0,.05,0,0,0,0,0,0,0,0,0,0,33.07,57.08,48.87,58.55,6.666666666666667,1,1,0,0,13,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10636,19020,19019,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.5257378,8.500021,0,12,-4,83.373093,0,3,3,2021,8,0,38,42,1,0,0,14.487783,14.487783,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.87,58.55,33.07,57.08,8.333333333333334,1,1,0,0,13,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10637,19021,-9,19020,19019,1,1,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1058.1833,1,2,1,2021,8,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,922,102446.06,0,0,0,0,0,1308.3557 +8756,10638,19022,-9,19020,19019,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.02332,-9,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6671839,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,9,1,1,4408,-60381.375,0,0,0,0,0,539.14893 +8757,10639,19023,19024,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7887831,9.0967464,7.8784351,6,11,146.12694,0,2,3,2021,11,0,25,24,1,0,0,30.914587,30.914587,.05,.05,0,0,0,0,0,0,0,0,0,0,8.017045,51.02,49.39,51.24,58.84,8.333333333333334,1,1,0,0,11,9,5,1,1099.5,1654633.8,817211.69,367283.22,0,14436.497,0,2387.0837 +8757,10639,19024,19023,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,0,0,0,6,-11,-29.270542,0,-9,-9,2021,6,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,51.02,49.39,8.333333333333334,1,1,0,0,6,9,5,1,1099.5,1654633.8,817211.69,367283.22,0,14436.497,0,2387.0837 +8758,10640,19025,-9,19027,19026,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1099.2069,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0329821,0,54.79,55.86,-9,-9,10,1,1,0,0,0,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10640,19026,19027,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.5313463,9.4495001,0,29,-1,-79.311699,0,2,2,2021,12,2,20,25,1,2,0,95.134811,95.134811,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.65,53.71,49.35,59.64,8.333333333333334,1,1,0,0,13,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10640,19027,19026,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3452864,8.2721825,0,29,1,29.184736,0,2,2,2021,12,2,20,20,1,2,0,15.044778,15.044778,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,50.65,53.71,8.333333333333334,1,1,0,0,13,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10641,19028,-9,19027,19026,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1094.543,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2626152,0,47.89,53.42,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,240,30649.807,0,0,0,0,0,508.32584 +8759,10642,19029,19030,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.420023,8.4621449,0,3,-1,-38.184319,0,1,1,2021,5,1,45,50,1,1,0,10.384419,10.384419,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.18,51.37,60.12,54.8,10,1,1,0,0,8,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8759,10642,19030,19029,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.8899016,7.9659944,0,3,1,48.447594,-9,-9,-9,2021,10,0,35,0,1,0,0,8.2477961,8.2477961,.05,.05,0,0,0,0,0,0,1,1,0,1.3467903,0,60.12,54.8,53.18,51.37,8.333333333333334,1,1,0,0,2,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8759,10642,19031,-9,19030,19029,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.93164,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8760,10643,19032,19033,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,1,-6,0,-9,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4324713,0,30.85,17.26,34.13,61.39,0,1,1,0,0,6,11,1,1,1283,2678931.8,944608.25,635958.13,0,0,0,2547.9377 +8760,10643,19033,19032,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,1,6,0,-9,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.5589123,0,34.13,61.39,30.85,17.26,1.666666666666667,1,1,0,0,7,11,1,1,1283,2678931.8,944608.25,635958.13,0,0,0,2547.9377 +8761,10644,19034,-9,19038,19035,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1070.0345,-9,2,2,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,58.08,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19035,19038,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,7.1059732,7.2246418,0,35,9,-39.899803,0,-9,2,2021,12,0,20,20,1,0,0,6.759429,6.759429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.08,40.76,8.333333333333334,1,1,0,0,11,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19036,-9,19038,19035,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.29785,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19037,-9,19038,19035,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.2421,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19038,19035,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.6188622,7.299799,0,35,0,2.1928544,0,2,2,2021,6,0,25,25,1,0,0,9.4329405,9.4329405,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.08,40.76,58.15,52.91,8.333333333333334,1,1,0,0,11,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8762,10645,19039,19040,-9,-9,1,0,54,0,0,0,2,2,-9,1,3,8.6840801,8.8747454,0,7,-18,7.345067,0,2,3,2021,9,0,41,40,1,0,0,19.922129,19.922129,0,0,0,0,0,0,0,27,1,1,0,0,0,54.27,48.04,35.42,25.76,8.333333333333334,1,1,0,0,8,8,5,1,511.5,2334340.5,1235241.3,504481.88,0,0,0,4181.6143 +8762,10645,19040,19039,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.8464818,6.9275513,7,18,113.27198,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3769512,35.42,25.76,54.27,48.04,5,1,1,0,0,0,8,5,1,511.5,2334340.5,1235241.3,504481.88,0,0,0,4181.6143 +8762,10646,19041,19042,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,0,0,0,2,0,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.51,54.26,54.37,54.8,8.333333333333334,1,1,0,0,1,8,1,1,358.5,-84748.883,-39489.883,0,0,17741.031,0,0 +8762,10646,19042,19041,19039,19040,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,2,0,0,0,2,3,2021,7,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,52.51,54.26,6.666666666666667,1,1,0,0,7,8,1,1,358.5,-84748.883,-39489.883,0,0,17741.031,0,0 +8763,10647,19043,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.1754599,8.1814318,0,0,0,-1022.4858,0,1,1,2021,31,11,42,42,1,11,0,8.6312208,8.6312208,0,0,0,0,0,0,0,0,0,0,0,0,0,9.77,70.12,-9,-9,3.333333333333333,1,1,0,1,12,12,4,0,1108,-291307.5,-85777.961,0,0,6813.7666,962.75751,1802.6405 +8764,10648,19044,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.3297091,8.1097088,0,0,0,-841.0498,0,-9,-9,2021,13,1,34,34,1,1,0,12.678821,12.678821,0,0,0,0,0,0,0,27,1,1,0,0,0,37.98,59.7,-9,-9,5,1,1,0,0,11,4,4,1,429,531690.88,314848.03,255721.86,98362.031,975.71094,0,2496.7893 +8764,10649,19045,-9,19044,-9,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-888.54626,1,3,-9,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.47,65.17,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,194,72051.648,0,0,0,0,0,0 +8765,10650,19046,19047,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.4539785,8.4875717,0,14,4,84.887192,0,2,2,2021,6,0,53,49,1,0,0,10.827866,10.827866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,10,1,1,0,0,6,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19047,19046,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9050155,7.8650393,0,14,-4,5.9625983,0,2,2,2021,10,0,31,32,1,0,0,9.4638624,9.4638624,.05,.05,0,0,0,0,0,0,1,1,0,2.5906577,0,51.83,57.2,57.06,57.76,6.666666666666667,1,1,0,0,7,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19048,-9,19047,19046,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9596,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19049,-9,19047,19046,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.2416,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8766,10651,19050,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.0494289,6.2105751,0,0,-1091.8474,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.0692811,55.34,30.32,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,193,510696.16,0,152703.8,0,0,0,1028.6116 +8767,10652,19051,-9,19054,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.60718,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19052,-9,19054,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-924.17084,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,55.32,-9,-9,10,1,1,0,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19053,-9,19054,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-822.83154,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19054,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.2679067,7.7231011,7.1981993,0,0,-961.49561,-9,2,3,2021,7,0,36,0,1,0,0,5.7717657,5.7717657,.05,.05,0,0,0,0,0,0,1,1,0,7.3419905,0,54.69,57.47,-9,-9,10,1,1,0,0,6,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8768,10653,19055,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.239862,5.3131065,0,0,-871.89355,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.233407,52,48,-9,-9,7,1,1,0,0,0,11,2,0,911,76666.594,37879.078,0,0,0,0,1073.452 +8768,10654,19056,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-962.36682,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,11,1,0,1150,70390.813,0,92139.961,0,0,0,-828.25446 +8769,10655,19057,19058,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.3403983,6.9132195,46,5,-2.4457903,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1902564,7.2675362,48.87,58.55,41.04,26.17,8.333333333333334,1,1,0,0,0,2,2,1,1346.5,231570.27,322910.94,129883.78,0,0,0,2091.8218 +8769,10655,19058,19057,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,47,-5,-134.98706,0,2,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.04,26.17,48.87,58.55,6.666666666666667,1,1,0,0,8,2,2,1,1346.5,231570.27,322910.94,129883.78,0,0,0,2091.8218 +8770,10656,19059,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.2287912,8.1738901,0,0,0,-910.15399,0,2,1,2021,7,0,38,43,1,0,0,9.9902391,9.9902391,.05,.05,0,0,0,0,0,0,1,1,0,2.0743675,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1474,-51848.473,-45623.004,0,0,7914.4888,0,1796.3949 +8771,10657,19060,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.36084,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1100,-49096.008,0,0,0,5666.167,0,540.47052 +8772,10658,19061,-9,19062,-9,1,1,33,0,0,0,2,2,-9,0,3,8.9043722,8.8333082,0,0,0,-847.93805,0,1,2,2021,12,1,41,51,1,1,1,21.410524,21.410524,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,53.23,-9,-9,6.666666666666667,2,3,0,0,7,5,5,1,1460,-277089.56,0,0,0,0,0,3454.0676 +8772,10659,19062,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,6.0706854,5.9383659,0,0,0,-938.20801,0,-9,-9,2021,24,11,16,4,1,11,0,2.1718442,2.1718442,.05,.05,0,0,0,0,0,0,0,0,0,1.7170358,0,46.76,23.57,-9,-9,1.666666666666667,2,3,0,0,4,5,2,1,867,355346.78,36583.23,186538.45,0,0,0,725.02289 +8773,10660,19063,19064,-9,-9,1,0,52,0,0,0,1,1,-9,0,1,8.9722052,8.5550566,0,13,-4,-54.798782,0,2,2,2021,30,10,35,35,1,10,0,32.653511,32.653511,.05,.05,0,0,0,0,0,0,0,0,0,6.6017661,0,25.34,49.8,43.09,61.58,1.666666666666667,1,1,0,0,13,8,5,1,433,3623926,2278257.8,1297635.4,87712.75,0,0,5394.9468 +8773,10660,19064,19063,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,8.3913488,8.5761614,0,13,4,-72.907547,0,2,2,2021,13,4,35,39,1,4,0,11.83059,11.83059,.05,.05,0,0,0,0,0,2,0,0,0,6.6080785,0,43.09,61.58,25.34,49.8,6.666666666666667,1,1,0,0,9,8,5,1,433,3623926,2278257.8,1297635.4,87712.75,0,0,5394.9468 +8774,10661,19065,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-946.09644,-9,-9,-9,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,517,0,0,0,0,0,0,175.61151 +8775,10662,19066,19067,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.6575108,7.7454562,0,7,2,-52.122608,0,2,2,2021,14,3,22,31,1,3,0,9.6199427,9.6199427,.05,.05,0,0,0,0,0,7,0,0,0,5.0488191,0,49.53,48.56,49.29,54.59,8.333333333333334,1,1,0,0,10,7,5,1,263.5,3223693.5,2170339,668854.63,0,0,0,5123.8828 +8775,10662,19067,19066,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.4115849,9.7480211,0,27,-2,-37.981144,0,2,2,2021,7,0,38,43,1,0,0,35.894848,35.894848,.05,.05,0,0,0,0,0,0,0,0,0,5.7057142,0,49.29,54.59,49.53,48.56,8.333333333333334,1,1,0,0,10,7,5,1,263.5,3223693.5,2170339,668854.63,0,0,0,5123.8828 +8775,10663,19068,-9,19066,19067,1,1,22,0,0,0,1,1,1,0,4,0,6.3732443,6.0968513,0,0,-1015.6515,-9,1,1,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8648853,0,45.81,58.99,-9,-9,3.333333333333333,1,1,1,0,3,7,2,1,443,-108059.1,0,0,0,0,0,363.28564 +8775,10664,19069,-9,19066,19067,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-996.30542,-9,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.56615633,0,57.16,56.15,-9,-9,10,1,1,0,0,1,7,2,1,4802,51004.789,0,0,0,0,-105.49239,-457.32779 +8776,10665,19070,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.5280399,8.0487461,0,0,0,-918.77289,0,1,1,2021,12,0,42,42,1,0,1,12.386097,12.386097,.05,.05,0,0,0,0,0,0,0,0,0,.040701773,0,47.32,52.7,-9,-9,6.666666666666667,3,4,0,0,5,7,5,1,374,-103526.16,139378.8,0,0,0,0,2665.0818 +8777,10666,19071,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0999346,8.2124901,0,0,0,-970.81366,0,2,2,2021,11,0,40,41,1,0,0,10.4972,10.4972,.05,.05,0,0,0,0,0,0,0,0,0,.067578308,0,51.83,57.2,-9,-9,5,1,1,0,0,5,13,4,1,495,-90071.234,-82595.156,0,0,4801.8682,0,1194.1466 +8778,10667,19072,-9,19074,19073,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.24567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19073,19074,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.7045631,8.8323402,0,13,3,89.952209,0,2,1,2021,10,0,39,38,1,0,0,18.400925,18.400925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.35,41.97,8.333333333333334,2,3,0,0,7,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19074,19073,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,0,0,0,13,-3,-69.888031,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.35,41.97,54.2,57.49,8.333333333333334,2,3,0,0,7,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19075,-9,19074,19073,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.83447,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8779,10668,19076,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,5.6031771,6.0125327,0,0,-952.23309,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4997382,0,0,1,1,0,0,5.8185058,59.56,32.49,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,818,167526.28,149091.75,124419.5,0,0,0,1024.9258 +8780,10669,19077,19078,-9,-9,1,1,35,2,2,0,2,2,-9,0,3,8.3316956,8.1324024,0,10,-1,-81.414963,0,2,2,2021,11,1,37,60,1,1,0,13.108464,13.108464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52.16,46.15,8.333333333333334,1,1,0,0,12,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19078,19077,-9,-9,1,0,36,2,2,0,1,1,-9,0,3,8.6065044,8.5831757,0,10,1,-15.566895,0,2,3,2021,11,0,42,77,1,0,0,9.8347435,9.8347435,.05,.05,0,0,0,0,0,0,1,1,0,.9344697,0,52.16,46.15,52,54.51,6.666666666666667,1,1,0,0,12,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19079,-9,19078,19077,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0385,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19080,-9,19078,19077,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5276,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8781,10670,19081,19082,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,7,1,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,21.251842,0,27,1,1,0,0,0,45.75,28.07,34.47,18.63,8.333333333333334,1,1,0,0,0,11,1,0,719.5,170525.52,0,261200.63,0,0,0,2550.9922 +8781,10670,19082,19081,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,64,-1,0,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,1,0,46.502724,0,0,1,1,0,0,0,34.47,18.63,45.75,28.07,1.666666666666667,1,1,0,0,0,11,1,0,719.5,170525.52,0,261200.63,0,0,0,2550.9922 +8782,10671,19083,-9,-9,-9,1,0,33,1,4,0,2,2,-9,1,3,0,5.1084838,5.1253729,0,0,-812.57007,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.7131467,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19084,-9,19083,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9009,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19085,-9,19083,-9,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.228,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19086,-9,19083,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1102.8948,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8783,10672,19087,19088,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.0641317,7.4860525,12,9,-85.343323,0,3,3,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.343132,6.7449799,51,48,57.16,56.15,7,1,1,0,0,0,13,2,1,1686,213998.11,13092.754,148769,0,0,0,1553.374 +8783,10672,19088,19087,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,6.1351948,6.0936065,0,12,0,61.966095,0,3,3,2021,9,0,7,8,1,0,0,7.781436,7.781436,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,51,48,10,1,1,0,0,8,13,2,1,1686,213998.11,13092.754,148769,0,0,0,1553.374 +8784,10673,19089,19090,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0296698,7.0040622,39,18,28.488997,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1630778,61.04,39.41,54.1,59.11,5,1,1,0,0,8,6,2,1,371.5,371545.72,202346.72,164938.63,0,0,0,5140.4619 +8784,10673,19090,19089,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,4.6234689,4.5702362,0,39,-18,-74.871758,0,3,-9,2021,10,0,40,-9,1,0,0,.26902512,.26902512,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.04,39.41,10,1,1,0,0,10,6,2,1,371.5,371545.72,202346.72,164938.63,0,0,0,5140.4619 +8784,10674,19091,-9,19093,-9,1,0,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1035.8174,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8784,10674,19092,-9,19093,-9,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1026.2246,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8784,10674,19093,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.5203104,8.4347239,0,0,0,-1114.1304,0,-9,-9,2021,12,0,48,48,1,0,0,12.446397,12.446397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8785,10675,19094,-9,19096,19095,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8785,10675,19095,19096,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.2823448,8.2099314,0,13,8,4.8532557,0,-9,3,2021,9,0,60,60,1,0,0,7.1429815,7.1429815,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.45,57.49,55.96,49.93,6.666666666666667,1,1,0,0,14,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8785,10675,19096,19095,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4662695,7.9653816,0,13,-8,-33.080555,0,1,2,2021,6,0,30,40,1,0,0,15.542481,15.542481,.05,.05,0,0,0,0,0,7,1,0,1,0,0,55.96,49.93,48.45,57.49,10,1,1,0,0,11,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8786,10676,19097,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-884.80212,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,32.42,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,268,0,0,0,0,0,0,1029.7338 +8786,10677,19098,-9,19097,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9039745,7.6736426,0,0,0,-989.76288,0,2,-9,2021,11,0,40,38,1,2,1,7.0395031,7.0395031,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,380,-77492.938,0,0,0,0,0,850.59137 +8786,10678,19099,-9,19097,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.52057,0,2,-9,2021,11,0,0,16,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.39789265,0,46,58,-9,-9,7,1,1,1,0,0,2,1,0,783,70289.938,0,0,0,0,0,-104.40469 +8787,10679,19100,19101,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7626638,6.6848888,24,-1,9.3794765,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5319605,6.9680996,60.3,46.58,53.33,53.71,10,1,1,0,0,5,9,2,1,211,864785,421645.28,267654.88,0,0,0,1497.7371 +8787,10679,19101,19100,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.8933134,5.1518149,24,1,91.272987,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9430327,5.6456089,53.33,53.71,60.3,46.58,8.333333333333334,1,1,0,0,5,9,2,1,211,864785,421645.28,267654.88,0,0,0,1497.7371 +8788,10680,19102,19103,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.539958,6.7430706,35,0,-59.437611,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3346243,6.7661471,48.28,60.18,57.33,53.46,6.666666666666667,1,1,0,0,0,10,3,1,327.5,996176,613161.88,301858.44,0,15080.947,0,1913.7853 +8788,10680,19103,19102,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.0774574,8.0569353,35,0,-66.244118,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6862254,8.1724834,57.33,53.46,48.28,60.18,8.333333333333334,1,1,0,0,11,10,3,1,327.5,996176,613161.88,301858.44,0,15080.947,0,1913.7853 +8789,10681,19104,19105,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.5172338,7.3016653,46,0,15.236926,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2268729,6.9219298,46.55,44.15,51.42,49.68,6.666666666666667,1,1,0,0,0,10,2,1,384.5,347350.38,350215.44,0,0,3692.2148,2541.7134,2351.9307 +8789,10681,19105,19104,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,5.2629442,5.0552068,46,9,-26.612297,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,3.8442204,0,0,1,1,0,0,5.0771875,51.42,49.68,46.55,44.15,10,1,1,0,0,0,10,2,1,384.5,347350.38,350215.44,0,0,3692.2148,2541.7134,2351.9307 +8790,10682,19106,19107,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.5205975,6.8179517,9,-3,-83.723969,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.797677,7.0681515,46.48,55.6,62.49,55.09,5,1,1,0,0,2,1,4,1,359.5,1165537.5,530815.75,234728.59,0,0,0,4331.998 +8790,10682,19107,19106,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.458395,8.593915,9,3,62.706314,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9965343,8.5726414,62.49,55.09,46.48,55.6,8.333333333333334,1,1,0,0,4,1,4,1,359.5,1165537.5,530815.75,234728.59,0,0,0,4331.998 +8791,10683,19108,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.578,0,2,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.04,48.15,-9,-9,5,2,3,0,0,0,7,1,0,6728,0,0,0,0,0,0,107.84496 +8791,10684,19109,-9,19108,-9,1,1,26,0,0,0,2,2,-9,0,4,7.927177,7.7709379,0,0,0,-1048.858,0,3,2,2021,10,0,24,0,1,1,1,8.6966791,8.6966791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,7,3,0,1037,248648.64,11331.543,0,0,0,0,1002.84 +8791,10685,19110,-9,19108,-9,1,1,24,0,0,0,2,2,-9,0,5,8.1391048,8.1837635,0,0,0,-970.55865,0,3,2,2021,0,0,40,40,1,0,1,10.0634,10.0634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,7,4,0,836,-240838.25,-31480.691,0,0,0,0,1162.8525 +8791,10686,19111,-9,19108,-9,1,0,18,0,0,0,3,3,-9,0,4,0,0,0,0,0,-940.42188,1,3,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,-9,-9,10,2,3,0,0,0,7,1,0,1663,51536.465,0,0,0,0,0,0 +8791,10687,19112,-9,19108,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1018.02,0,3,-9,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,55.81,-9,-9,8.333333333333334,2,3,1,0,0,7,2,0,351,-17435.266,0,0,0,0,0,610.93213 +8792,10688,19113,19114,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.6740551,6.7236743,12,0,-32.132587,0,-9,-9,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2898502,6.5752225,54.2,57.49,65.54000000000001,35.93,10,1,1,0,0,12,4,2,1,504.5,643755.81,210693.58,153348.81,0,0,0,37.560974 +8792,10688,19114,19113,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,40,0,-144.29248,0,3,3,2021,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.54000000000001,35.93,54.2,57.49,8.333333333333334,1,1,0,0,14,4,2,1,504.5,643755.81,210693.58,153348.81,0,0,0,37.560974 +8793,10689,19115,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.8489599,7.803123,0,0,0,-1064.1198,0,2,3,2021,9,0,45,20,1,0,0,6.5877452,6.5877452,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.27,48.04,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,827,112350.6,189904.59,20924.971,0,0,0,2144.8335 +8794,10690,19116,19117,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,24,-7,75.716293,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2640061,0,58.96,31.62,60.12,54.8,8.333333333333334,1,1,0,0,11,11,2,1,650,561532.06,462789.69,169171.13,0,0,0,1645.927 +8794,10690,19117,19116,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.2211428,7.3797588,0,24,7,-65.712616,0,1,3,2021,7,0,60,65,1,0,0,2.298918,2.298918,0,0,0,0,0,0,0,0,0,0,0,6.5899525,0,60.12,54.8,58.96,31.62,8.333333333333334,1,1,0,0,15,11,2,1,650,561532.06,462789.69,169171.13,0,0,0,1645.927 +8795,10691,19118,19119,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5598702,6.3809891,31,9,3.579344,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1690402,6.5952711,51.41,56.15,44.85,53.68,8.333333333333334,1,1,0,0,0,4,2,1,429,461497.06,154237.08,78034.016,0,0,0,1774.8096 +8795,10691,19119,19118,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.4165487,6.2007842,31,0,131.36186,0,2,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.241631,44.85,53.68,51.41,56.15,3.333333333333333,1,1,0,0,0,4,2,1,429,461497.06,154237.08,78034.016,0,0,0,1774.8096 +8796,10692,19120,19121,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1393805,8.348299,0,27,-7,-20.21393,0,3,3,2021,7,0,30,33,1,0,0,14.914998,14.914998,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.18,52.62,40.8,38.34,6.666666666666667,1,1,0,0,12,2,5,1,1256.5,2347372.5,1448191.5,0,0,4430.0635,0,3174.5518 +8796,10692,19121,19120,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8118067,8.5408936,0,28,7,102.94983,0,3,2,2021,11,1,48,51,1,1,0,15.565637,15.565637,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.8,38.34,50.18,52.62,6.666666666666667,1,1,0,0,12,2,5,1,1256.5,2347372.5,1448191.5,0,0,4430.0635,0,3174.5518 +8797,10693,19122,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,5.3845048,6.5385203,6.3845801,0,0,-839.72522,0,2,1,2021,6,0,40,40,1,0,0,.86248463,.86248463,0,0,0,0,0,0,0,0,1,1,0,5.6015086,6.2064495,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,3282,533317.75,394675.22,0,0,0,0,1505.801 +8798,10694,19123,-9,19124,19125,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.6061,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8798,10694,19124,19125,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,9.2328892,9.817194,0,15,-3,98.012268,0,2,2,2021,12,2,34,30,1,2,0,36.991856,36.991856,0,0,0,0,0,0,0,0,1,1,0,7.3770924,0,47.24,53.95,36.38,53.47,6.666666666666667,1,1,0,0,11,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8798,10694,19125,19124,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.4628973,9.7709799,0,16,3,56.74564,0,2,2,2021,13,2,40,45,1,2,0,36.405285,36.405285,.05,.05,0,0,0,0,0,0,1,1,0,3.6385021,0,36.38,53.47,47.24,53.95,5,1,1,0,0,11,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8799,10695,19126,19128,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.5044699,8.6277828,0,22,1,-63.570915,0,2,2,2021,12,1,30,30,1,1,0,17.387159,17.387159,0,0,0,0,0,0,0,2,1,1,0,7.6608953,0,40.38,59.14,30.2,62.35,8.333333333333334,1,1,0,0,13,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19127,-9,19128,19126,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1148.244,-9,2,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83142614,0,47,61,-9,-9,10,1,1,0,0,0,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19128,19126,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,6.5876431,6.5786533,0,22,-1,100.04566,0,3,3,2021,22,10,10,10,1,10,0,9.6214819,9.6214819,0,0,0,0,0,0,0,2,1,1,0,6.8837438,0,30.2,62.35,40.38,59.14,5,1,1,0,0,10,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19129,-9,19128,19126,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.7916,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8800,10696,19130,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3364835,7.6790085,0,0,0,-950.40271,0,2,3,2021,9,0,23,23,1,0,0,10.491606,10.491606,0,0,0,0,0,0,0,2,0,0,0,6.926837,0,57.9,51.84,-9,-9,1.666666666666667,1,1,0,0,11,13,3,1,176,82210.25,-13322.295,160370.09,11683.466,0,3207.1509,1551.6396 +8801,10697,19131,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.1190414,9.1946306,0,0,0,-1022.1567,0,1,2,2021,7,0,46,9,1,0,0,23.688499,23.688499,.05,.05,.05,0,0,0,0,0,0,0,0,5.9825411,0,27.43,58.92,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,647,565400.63,414213.22,0,0,0,0,3115.4617 +8802,10698,19132,19133,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.2660742,8.3551846,0,26,2,-142.27779,0,2,2,2021,17,5,20,25,1,5,0,25.843866,25.843866,0,0,0,0,0,0,0,0,1,1,0,0,0,34,61.21,33.2,63.27,6.666666666666667,1,1,0,0,12,6,5,1,536.5,291397.84,180470,360128,185863.34,0,14179.24,5173.0732 +8802,10698,19133,19132,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.2461596,9.232254,0,27,-2,2.8738141,0,2,2,2021,11,2,37,50,1,2,0,35.419346,35.419346,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.2,63.27,34,61.21,6.666666666666667,1,1,0,0,12,6,5,1,536.5,291397.84,180470,360128,185863.34,0,14179.24,5173.0732 +8802,10699,19134,-9,19132,19133,1,0,19,0,1,0,2,2,-9,0,3,5.2461743,5.1909113,0,0,0,-894.2688,-9,2,1,2021,32,12,40,0,1,12,1,.46576706,.46576706,0,0,0,0,0,0,0,0,1,1,0,2.3791966,0,14.49,55.48,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,783,19327.211,90288.586,0,0,0,0,5.1505327 +8803,10700,19135,-9,19136,19137,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.88812,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8803,10700,19136,19137,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,6.3683543,6.3529525,0,4,-11,-1.1760405,0,-9,-9,2021,18,6,10,20,1,6,0,8.1498737,8.1498737,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,47.71,38.99,8.333333333333334,1,1,0,0,6,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8803,10700,19137,19136,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.6629829,8.7161999,0,4,11,72.528183,0,1,2,2021,11,0,46,50,1,0,0,14.929411,14.929411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.71,38.99,46.63,59.72,5,1,1,0,0,10,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8804,10701,19138,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7814884,7.8955669,0,0,0,-1045.8243,0,2,2,2021,12,0,38,23,1,0,0,7.5122447,7.5122447,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,57.73,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,403,28599.865,-45040.918,0,0,0,0,2031.004 +8804,10701,19139,-9,19138,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.75031,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,403,28599.865,-45040.918,0,0,0,0,2031.004 +8804,10702,19140,-9,19138,-9,1,1,19,0,1,0,3,3,-9,0,5,0,0,0,0,0,-927.83258,0,2,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,2,1,0,135,0,0,0,0,0,0,-360.28299 +8805,10703,19141,19142,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,0,0,0,8,1,-126.92342,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,2,3,0,0,0,4,2,1,722,20332.926,205179.41,0,0,2490.2559,0,1031.7587 +8805,10703,19142,19141,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,7.5787144,7.9232607,0,28,-1,73.359489,0,-9,-9,2021,6,0,15,16,1,0,0,13.338313,13.338313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,8.333333333333334,2,3,0,0,11,4,2,1,722,20332.926,205179.41,0,0,2490.2559,0,1031.7587 +8805,10704,19143,-9,19141,19142,1,0,22,0,1,1,1,0,0,0,3,0,0,0,0,0,-970.82971,-9,-9,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,248,289240.78,0,0,0,0,0,0 +8805,10705,19144,-9,19141,19142,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1025.7478,-9,-9,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,1,1,333,45628.344,0,0,0,791.62177,0,0 +8806,10706,19145,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.7022257,7.4570704,0,0,0,-1026.1116,0,3,2,2021,28,11,30,30,1,11,0,7.6254058,7.6254058,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,15.72,50.17,-9,-9,5,2,3,0,0,6,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8806,10706,19146,-9,19145,-9,1,0,17,0,1,0,2,2,1,1,1,0,0,0,0,0,-951.21307,-9,2,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.07,27.63,-9,-9,0,2,3,0,0,0,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8806,10706,19147,-9,19145,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.50043,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8807,10707,19148,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.6511183,7.6952977,0,0,-929.95111,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6503701,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,641,890493.06,424124.75,109584.95,0,0,0,1601.3887 +8808,10708,19149,19150,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.105072,6.2349496,6,2,90.830925,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.522882,43.5,52.88,57.78,40.89,8.333333333333334,1,1,0,0,1,4,2,1,550,407171.81,281951.06,129954.45,0,1681.9783,0,1262.3098 +8808,10708,19150,19149,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,6,-2,34.993782,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.78,40.89,43.5,52.88,10,1,1,0,0,2,4,2,1,550,407171.81,281951.06,129954.45,0,1681.9783,0,1262.3098 +8809,10709,19151,19152,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0443983,8.0946932,0,11,2,-83.345901,0,3,2,2021,11,0,22,22,1,0,0,16.932928,16.932928,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,52.23,56.9,49.4,10,1,1,0,0,13,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19152,19151,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.0477495,8.964016,0,11,-2,9.5774899,0,3,3,2021,8,0,45,40,1,0,0,21.512846,21.512846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,56.74,52.23,8.333333333333334,1,1,0,0,13,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19153,-9,19151,19152,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.05646,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19154,-9,19151,19152,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.5968,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8810,10710,19155,19157,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,9,-10,-70.868065,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19156,-9,19155,19157,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.51,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19157,19155,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.7815986,7.4966245,0,22,10,40.134609,0,2,2,2021,9,0,63,40,1,1,0,4.8167615,4.8167615,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19158,-9,19155,19157,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1012.3096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19159,-9,19155,19157,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.03876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10711,19160,-9,19155,19157,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1089.5811,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,2,8,1,0,485,0,0,0,0,0,0,0 +8811,10712,19161,19162,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.9530802,7.0016222,57,3,18.567993,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.0761385,7.3432398,53.01,38.93,51,46,8.333333333333334,1,1,0,0,0,6,2,0,563,267143.41,200247.25,252077.72,0,0,0,2971.8191 +8811,10712,19162,19161,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-3,43.420601,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,13.434786,0,0,1,1,0,0,0,51,46,53.01,38.93,8,1,1,0,0,0,6,2,0,563,267143.41,200247.25,252077.72,0,0,0,2971.8191 +8812,10713,19163,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1138105,7.9525294,0,0,0,-1010.8287,0,-9,-9,2021,8,0,37,37,1,0,0,10.498174,10.498174,.05,.05,0,0,0,0,0,0,0,0,0,2.7771208,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,6,4,1,1270,-63978.668,-89887.289,0,0,0,0,1425.723 +8813,10714,19164,19165,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4522076,7.6476054,9,1,2.2445931,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.7060366,7.3250136,46.03,55.71,54.55,49.25,8.333333333333334,1,1,0,0,0,8,4,1,325,2697981,1865925,858217.38,0,0,0,5033.542 +8813,10714,19165,19164,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9157577,8.5694618,9,-1,54.845036,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6130672,8.1950235,54.55,49.25,46.03,55.71,8.333333333333334,1,1,0,0,0,8,4,1,325,2697981,1865925,858217.38,0,0,0,5033.542 +8814,10715,19166,-9,19167,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.48395,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,684.5,-14163.883,85790.344,0,0,35916.684,0,1254.1936 +8814,10715,19167,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,5.5168834,5.6939406,0,0,0,-967.48907,0,-9,-9,2021,8,1,4,0,1,1,0,6.4417562,6.4417562,0,0,0,0,0,0,0,0,1,0,1,0,0,52.88,54,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,684.5,-14163.883,85790.344,0,0,35916.684,0,1254.1936 +8815,10716,19168,-9,19170,19171,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7235,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19169,-9,19170,19171,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9243,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19170,19171,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.3732224,7.2446942,0,5,-7,-164.67395,0,1,2,2021,9,0,24,20,1,0,0,10.912233,10.912233,.05,.05,0,0,0,0,.33438775,0,0,0,0,0,0,55.52,38,52,55,8.333333333333334,1,1,0,0,8,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19171,19170,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.6232777,8.3121958,0,5,7,42.308605,0,3,-9,2021,9,0,40,46,1,1,0,13.713272,13.713272,.05,.05,0,0,0,0,0,0,0,0,0,.50484556,0,52,55,55.52,38,7,1,1,0,0,1,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8816,10717,19172,19173,-9,-9,1,1,40,0,2,0,2,2,-9,1,3,0,0,0,13,-1,0,0,3,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,27.39,21.15,8.333333333333334,2,3,0,0,1,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8816,10717,19173,19172,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,13,1,0,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,21.15,55.96,49.93,8.333333333333334,2,3,0,0,0,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8816,10717,19174,-9,19173,19172,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.74408,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8817,10718,19175,19176,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1326609,9.3433847,0,5,-2,43.016624,0,1,1,2021,17,5,55,55,1,5,0,15.132284,15.132284,.05,.05,0,0,0,0,0,2,0,0,0,5.2037635,0,36.54,57.54,49.35,59.64,3.333333333333333,1,1,0,0,11,12,5,1,358.5,925816.19,772179.25,120109.87,23584.822,0,0,3013.5601 +8817,10718,19176,19175,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,5,2,51.296513,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.8107178,0,49.35,59.64,36.54,57.54,8.333333333333334,1,1,0,0,10,12,5,1,358.5,925816.19,772179.25,120109.87,23584.822,0,0,3013.5601 +8818,10719,19177,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.2533541,9.1901503,8.2789679,0,0,-995.05823,-9,2,2,2021,6,0,30,0,1,0,0,41.540867,41.540867,.05,.05,0,0,0,0,0,0,0,0,0,0,8.5071449,52.37,51.4,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,542,-52341.125,-69176.648,0,0,21937.559,6422.3286,5293.6577 +8818,10720,19178,-9,-9,19177,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-961.44037,-9,-9,2,2021,32,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.28,69.26000000000001,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,952,-13672.487,0,0,0,0,0,0 +8819,10721,19179,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.3330894,6.4859014,0,0,-1182.6298,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.609262,64.87,12.68,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,938,244733.73,-50986.242,209012.34,0,0,0,1618.8032 +8820,10722,19180,19181,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.2576447,8.4922047,0,7,-1,-83.668404,0,1,2,2021,13,2,37,38,1,2,0,14.526639,14.526639,.05,.05,0,0,0,0,0,0,0,0,0,3.7871132,0,46.39,60.99,52.23,55.6,3.333333333333333,4,5,0,0,6,8,5,1,725.5,115901.01,105071.92,315663.5,245419.59,0,0,3573.9661 +8820,10722,19181,19180,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.3578434,8.4490442,0,7,1,-33.774254,0,1,1,2021,7,0,40,20,1,0,0,12.124787,12.124787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,46.39,60.99,8.333333333333334,4,5,0,0,8,8,5,1,725.5,115901.01,105071.92,315663.5,245419.59,0,0,3573.9661 +8821,10723,19182,19183,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.8687906,9.0428848,0,36,0,71.97242,0,2,2,2021,9,0,8,8,1,0,0,115.66451,115.66451,.05,.05,0,0,0,0,0,118,1,1,0,4.8562307,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,13,4,5,1,208.5,3090032.5,2584455.8,527654,99574.25,0,0,7583.4087 +8821,10723,19183,19182,19185,-9,1,1,54,0,0,0,1,1,-9,0,5,9.4400177,9.448554,0,36,0,19.130978,0,2,2,2021,8,0,20,20,1,0,0,68.935547,68.935547,.05,.05,0,0,0,0,0,106,1,1,0,3.371212,0,54.1,59.11,48.77,60.16,10,1,1,0,0,13,4,5,1,208.5,3090032.5,2584455.8,527654,99574.25,0,0,7583.4087 +8821,10724,19184,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.14471,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.988245,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,454,112725.15,0,0,0,0,0,1033.3926 +8821,10725,19185,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,8.4026756,8.5123768,0,0,-946.85901,0,-9,-9,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,14.801505,0,0,1,1,0,4.5981975,8.5288172,52.47,11.65,-9,-9,7,1,1,0,0,0,4,5,1,452,657028.19,447674.97,148958.09,0,0,0,3797.8416 +8822,10726,19186,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2992487,8.3996019,0,0,0,-959.93512,0,1,1,2021,8,0,58,65,1,0,0,8.8063602,8.8063602,.05,.05,0,0,0,0,.035705119,0,1,1,0,5.9475431,0,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,3267,102634.27,66261.555,0,0,137.24847,0,1989.6382 +8823,10727,19187,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.5803156,7.422359,0,0,0,-1084.697,0,2,2,2021,12,1,26,26,1,1,0,7.4843206,7.4843206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.88,41.04,-9,-9,1.666666666666667,1,1,0,0,11,7,3,1,1198,46165.094,32823.773,0,0,0,0,1196.5863 +8824,10728,19188,-9,19189,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.7292,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,601,-79634.594,0,0,0,0,0,1426.0244 +8824,10728,19189,-9,-9,-9,1,0,33,0,1,0,2,2,-9,1,2,0,5.5165925,5.60425,0,0,-1043.5499,0,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.3880019,0,41.24,43.73,-9,-9,5,1,1,0,0,0,6,2,0,601,-79634.594,0,0,0,0,0,1426.0244 +8825,10729,19190,-9,19191,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6332,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8825,10729,19191,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.3229003,8.3174896,7.5395684,0,0,-881.58502,0,2,1,2021,9,0,16,12,1,0,0,10.038306,10.038306,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1837525,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,12,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8825,10729,19192,-9,19191,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1112.2098,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8826,10730,19193,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.6453538,6.3179603,0,0,0,-932.69086,-9,2,2,2021,14,2,8,0,1,2,0,9.5428925,9.5428925,.05,.05,0,0,0,0,0,118,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,2,9,2,0,2604,169307.8,-28089.066,0,0,0,0,906.16467 +8827,10731,19194,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.5499821,8.437788,0,0,0,-1064.6869,0,3,3,2021,11,0,38,38,1,0,0,13.068814,13.068814,0,0,0,0,0,0,0,0,0,0,0,2.5367501,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,184,190005.36,53346.973,103459.87,0,0,0,1542.7238 +8827,10732,19195,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.6626854,8.7700586,0,0,0,-1009.9769,0,-9,3,2021,7,0,50,38,1,0,0,12.406776,12.406776,.05,.05,0,0,0,0,0,0,0,0,0,2.824162,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,651,426386.31,101563.59,448325.97,82225.039,11282.771,0,2264.8054 +8828,10733,19196,19197,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.5535364,8.5943356,0,9,6,44.093208,0,2,2,2021,9,0,40,41,1,0,0,19.604156,19.604156,.05,.05,0,0,0,0,0,0,1,1,0,1.5327319,0,51.08,52.1,57.06,57.76,6.666666666666667,1,1,0,0,11,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8828,10733,19197,19196,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.0633001,8.2278261,0,9,-6,-28.728981,0,-9,-9,2021,6,0,30,38,1,0,0,9.6405039,9.6405039,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.08,52.1,10,1,1,0,0,11,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8828,10733,19198,-9,19197,19196,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1135.507,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8829,10734,19199,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.5466156,7.8632684,0,0,0,-875.08765,0,2,2,2021,12,0,18,18,1,0,0,13.709221,13.709221,0,0,0,0,0,0,0,0,0,0,0,3.3958926,0,44.87,53.79,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,283,-77875.008,140130.47,0,0,0,0,-182.24763 +8830,10735,19200,-9,19203,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.91412,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19201,-9,19203,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-924.8551,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19202,-9,19203,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.9777,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19203,-9,-9,-9,1,0,31,1,3,0,2,2,-9,1,4,0,0,0,0,0,-951.7019,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,3,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8831,10736,19204,19205,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.1184864,7.9203386,0,18,10,28.448055,0,3,3,2021,8,1,38,23,1,1,0,9.2263088,9.2263088,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.53,56.37,48,56,6.666666666666667,2,3,0,0,10,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19205,19204,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,18,-10,-68.636406,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.53,56.37,7,2,3,0,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19206,-9,19205,19204,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.45776,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19207,-9,19205,19204,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.547,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19208,-9,19205,19204,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.65698,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8832,10737,19209,19210,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0236311,8.1525965,12,3,48.647205,0,3,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.2052193,8.3226862,58.15,52.91,60.44,36.05,8.333333333333334,1,1,0,0,12,10,4,1,502.5,1884147.3,1058135.3,481567.09,0,0,0,7130.1421 +8832,10737,19210,19209,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.4122477,7.1700134,12,-3,12.189808,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4421558,7.0399613,60.44,36.05,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,502.5,1884147.3,1058135.3,481567.09,0,0,0,7130.1421 +8833,10738,19211,19212,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.1497922,7.4589667,0,10,5,129.01837,0,3,2,2021,9,0,45,40,1,0,0,4.2556729,4.2556729,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,59.46,46.99,54.48,42.8,8.333333333333334,1,1,0,0,12,2,4,1,251,956221.63,548235.38,272333.16,0,0,0,3289.3882 +8833,10738,19212,19211,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3349657,8.1598873,0,10,-5,-134.01987,0,-9,-9,2021,8,1,40,45,1,1,0,9.0560932,9.0560932,0,0,0,0,0,0,0,2,0,0,0,7.2702761,0,54.48,42.8,59.46,46.99,8.333333333333334,1,1,0,0,10,2,4,1,251,956221.63,548235.38,272333.16,0,0,0,3289.3882 +8833,10739,19213,-9,19212,19211,1,1,30,0,0,0,2,2,-9,0,3,8.4051628,8.3517628,0,0,0,-1057.8007,0,1,2,2021,15,3,46,0,1,3,1,14.1496,14.1496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.24,52.48,-9,-9,5,1,1,0,1,6,2,5,1,2768,53058.355,28859.43,0,0,0,0,2780.7446 +8834,10740,19214,19215,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.6126852,7.7016187,0,3,5,-5.2783136,0,-9,-9,2021,12,0,20,15,1,0,0,11.615419,11.615419,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,52.99,51.28,5,1,1,0,0,3,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8834,10740,19215,19214,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.5926504,7.6555638,0,3,-5,-40.244205,0,-9,-9,2021,10,1,30,30,1,1,0,8.0814724,8.0814724,0,0,0,0,0,0,0,0,1,1,0,1.4358515,0,52.99,51.28,41.34,56.62,8.333333333333334,1,1,0,0,7,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8834,10740,19216,-9,19215,19214,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.5415,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8835,10741,19217,19218,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,8.1963873,8.0381813,25,-1,-10.0479,0,1,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6882906,7.8336177,60.02,56.42,62.49,55.09,10,1,1,0,0,8,6,4,1,1337,1756314,1288344.8,373506.94,0,0,0,5561.3799 +8835,10741,19218,19217,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9475894,8.2351465,28,1,-24.783737,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9863243,8.1203852,62.49,55.09,60.02,56.42,10,1,1,0,0,7,6,4,1,1337,1756314,1288344.8,373506.94,0,0,0,5561.3799 +8836,10742,19219,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.4387684,9.0955572,0,0,0,-1031.0636,0,2,-9,2021,12,0,46,47,1,0,0,18.73971,18.73971,.05,.05,0,0,0,0,0,0,0,0,0,2.2534471,0,52.53,47.24,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,376,418997.84,257481.78,543925.19,466352.63,22250.535,0,2691.8203 +8837,10743,19220,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,6,31,-59.389805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,54.34,53.29,0,1,1,0,0,7,5,5,1,1621,-131383.7,0,0,0,0,0,760.27026 +8837,10744,19221,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,9.6014595,9.9025774,0,6,-31,17.612442,0,2,2,2021,9,0,40,35,1,0,0,51.659447,51.659447,0,0,.05,0,0,0,0,2,1,1,0,3.6056399,0,54.34,53.29,58.89,48.6,8.333333333333334,1,1,0,0,7,5,5,1,2993,-13200.291,-34065.543,0,0,0,0,5446.4717 +8838,10745,19222,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.1405187,7.1028805,0,0,0,-1018.5154,0,2,2,2021,6,0,20,25,1,0,0,8.5717802,8.5717802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,256,54092.5,-106873.38,144439.61,0,0,807.28998,1119.5431 +8839,10746,19223,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.5756664,8.7965517,0,0,0,-970.82782,0,2,1,2021,6,0,18,18,1,0,0,39.555492,39.555492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10746,19224,-9,19223,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-975.40967,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10746,19225,-9,19223,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1080.8536,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.64,56.25,-9,-9,6.666666666666667,4,2,0,0,1,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10747,19226,-9,19223,-9,1,0,21,0,1,0,2,2,-9,0,5,6.9559474,6.8840203,0,0,0,-998.60925,0,2,2,2021,8,1,24,24,1,1,1,5.6203809,5.6203809,0,0,0,0,0,0,0,0,1,1,0,0,0,66.64,46.59,-9,-9,10,4,2,0,0,2,8,2,1,1634,95884.141,0,0,0,0,0,778.39862 +8840,10748,19227,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.3803911,8.3296099,0,0,0,-1063.05,0,2,2,2021,22,10,40,40,1,10,0,15.153199,15.153199,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.88,54.48,-9,-9,6.666666666666667,1,1,0,0,13,4,5,1,274,455718.88,557524.44,0,0,0,0,1221.0465 +8841,10749,19228,19229,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.708878,5.5525217,12,-1,-158.98584,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.491014,5.6857734,44.02,55.16,54.73,40.87,8.333333333333334,1,1,0,0,7,9,5,1,645.5,1737488.4,1195541,345923,0,7166.8535,0,8030.7773 +8841,10749,19229,19228,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.9980221,8.7243967,12,1,-173.0703,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.6512995,8.6461382,54.73,40.87,44.02,55.16,8.333333333333334,1,1,0,0,11,9,5,1,645.5,1737488.4,1195541,345923,0,7166.8535,0,8030.7773 +8842,10750,19230,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.1588,-9,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,4.2384634,0,42.293884,0,1,1,0,0,0,55.45,9.790000000000001,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,2205,-267002.28,0,0,0,1493.5262,0,1633.8271 +8843,10751,19231,-9,-9,-9,1,1,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-994.83319,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.82,26.83,-9,-9,1.666666666666667,1,1,1,0,0,10,1,0,219,211838.61,0,69848.578,0,0,0,1549.9856 +8844,10752,19232,-9,19236,19235,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.98694,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19233,-9,19236,19235,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-950.94067,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19234,-9,19236,19235,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19235,19236,-9,-9,1,1,35,1,3,0,2,2,-9,0,4,8.7202435,8.5204477,0,7,1,149.18309,0,-9,-9,2021,10,0,43,57,1,1,0,18.797953,18.797953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,12.47,65.98,7,4,1,0,0,1,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19236,19235,-9,-9,1,0,34,1,3,0,2,2,-9,1,4,8.2645121,8.2371464,0,7,-1,-80.391342,0,3,3,2021,32,12,29,26,1,12,0,12.412949,12.412949,0,0,0,0,0,0,0,2,1,1,0,0,0,12.47,65.98,50,57,6.666666666666667,1,1,0,0,8,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8845,10753,19237,19238,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.2681236,8.0317602,0,33,-2,96.598717,0,2,3,2021,8,0,46,40,1,0,0,9.3936739,9.3936739,0,0,.05,0,0,0,0,2,0,0,0,0,0,55.51,51.57,40.01,44.17,8.333333333333334,1,1,0,0,6,5,5,1,502,964775.81,987975.13,148873.16,0,0,0,3160.3398 +8845,10753,19238,19237,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.4871721,8.5580263,0,33,2,-54.453018,0,-9,-9,2021,13,3,41,40,1,3,0,13.02834,13.02834,0,0,0,0,0,0,0,14.5,0,0,0,0,0,40.01,44.17,55.51,51.57,3.333333333333333,1,1,0,0,6,5,5,1,502,964775.81,987975.13,148873.16,0,0,0,3160.3398 +8845,10754,19239,-9,19238,19237,1,1,21,0,0,0,2,2,-9,0,4,7.5659814,7.9690161,0,0,0,-1211.5776,0,2,1,2021,8,0,37,38,1,0,1,7.5608406,7.5608406,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,671,126301.18,31871.873,0,0,0,0,1277.2999 +8846,10755,19240,-9,19241,19242,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.6052,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8846,10755,19241,19242,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.2416487,8.2342625,0,15,-15,-85.103554,0,2,2,2021,12,0,35,25,1,0,0,10.059802,10.059802,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,57.35,54.74,57.22,8.333333333333334,2,3,0,0,12,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8846,10755,19242,19241,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.0288706,8.1913538,0,15,15,20.595274,0,2,2,2021,3,0,14,30,1,0,0,26.904602,26.904602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,46.4,57.35,8.333333333333334,2,3,0,0,12,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8847,10756,19243,19244,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,8.0441847,8.2995949,0,27,-5,25.816103,-9,3,-9,2021,8,0,30,0,1,0,0,13.376145,13.376145,0,0,0,0,0,0,0,7,1,1,0,0,0,38.97,31.24,61.99,34.03,8.333333333333334,1,1,0,0,11,8,4,1,1051.5,473897.06,146830.48,188055.41,0,0,0,3973.7861 +8847,10756,19244,19243,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.3034449,8.1663761,27,5,11.87683,-9,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,14.5,1,1,0,0,8.3014212,61.99,34.03,38.97,31.24,5,1,1,0,0,7,8,4,1,1051.5,473897.06,146830.48,188055.41,0,0,0,3973.7861 +8848,10757,19245,-9,19247,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.10931,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8848,10757,19246,-9,19247,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9379,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8848,10757,19247,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,0,0,0,0,0,-884.83838,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.6,46.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8849,10758,19248,19249,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.017683,9.2655058,0,19,13,-51.531075,0,2,2,2021,12,0,37,37,1,0,0,20.927738,20.927738,.05,.05,0,0,0,0,0,2,1,1,0,4.4325361,0,55.51,51.57,41.99,53.75,8.333333333333334,1,1,0,0,8,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8849,10758,19249,19248,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.5785227,8.6623001,0,19,-13,-30.801491,0,2,2,2021,12,0,40,40,1,0,0,13.31229,13.31229,.05,.05,0,0,0,0,0,7,1,1,0,4.4904013,0,41.99,53.75,55.51,51.57,6.666666666666667,1,1,0,0,10,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8849,10758,19250,-9,19248,19249,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1079.4639,-9,1,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8850,10759,19251,-9,19254,19252,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1993,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19252,19254,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.614603,8.3214245,0,20,8,67.936523,0,3,3,2021,9,0,37,37,1,1,0,12.901754,12.901754,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,10,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19253,-9,19254,19252,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.35168,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19254,19252,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,20,-8,122.10696,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8851,10760,19255,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.986939,6.965487,0,0,0,-997.86475,0,2,2,2021,15,2,21,21,1,2,0,5.7408423,5.7408423,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,8.333333333333334,1,1,0,1,12,9,2,1,616,420419.31,101137.16,264670.19,98191.938,0,0,878.06305 +8852,10761,19256,19257,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.6208501,6.6391749,56,-3,57.453857,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6395111,6.4541073,56.35,43.13,57.93,46.29,8.333333333333334,1,1,0,0,3,4,2,1,387,790218,518622.19,228927.58,0,0,5442.5659,1788.8224 +8852,10761,19257,19256,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.9145274,5.7405281,56,3,-68.862991,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.2662292,0,23.233221,0,1,1,0,6.3995399,6.2888775,57.93,46.29,56.35,43.13,8.333333333333334,1,1,0,0,0,4,2,1,387,790218,518622.19,228927.58,0,0,5442.5659,1788.8224 +8853,10762,19258,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.9094434,7.1990771,0,0,0,-973.38831,0,3,-9,2021,12,0,21,16,1,0,0,5.211729,5.211729,0,0,0,0,0,0,0,2,1,1,0,0,0,48.18,53.42,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,288,101447.05,0,0,0,0,-383.14667,754.03265 +8854,10763,19259,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.2052927,8.1129541,0,0,0,-950.54407,-9,2,2,2021,8,0,37,0,1,0,0,11.194226,11.194226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,10,12,3,0,710,64173.645,33686.242,0,0,28710.334,0,852.13208 +8854,10764,19260,-9,-9,19259,1,0,18,0,1,0,2,2,1,0,3,7.0503573,7.1567535,0,0,0,-980.6994,-9,-9,2,2021,20,8,20,0,1,8,1,5.1460752,5.1460752,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,45.07,-9,-9,1.666666666666667,1,1,0,0,1,12,2,0,138,-87218.055,0,0,0,1352.6984,0,731.21051 +8855,10765,19261,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.2804594,8.233819,0,0,0,-946.91797,0,2,2,2021,12,0,42,45,1,0,0,10.700621,10.700621,0,0,0,0,0,0,0,0,0,0,0,2.4085288,0,35.8,59.5,-9,-9,3.333333333333333,1,1,0,0,11,2,4,0,641,156386.45,31098.057,219704.8,161489.84,0,0,2221.6677 +8856,10766,19262,19263,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7569752,6.9495802,55,-1,-8.0697088,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1444802,6.3781886,54.03,47.14,48.85,42.66,10,1,1,0,0,0,10,2,1,499.5,486528.56,41610.516,509248.97,0,0,0,2244.7537 +8856,10766,19263,19262,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.784225,6.7336345,55,1,25.44496,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4860301,6.703033,48.85,42.66,54.03,47.14,6.666666666666667,1,1,0,0,0,10,2,1,499.5,486528.56,41610.516,509248.97,0,0,0,2244.7537 +8857,10767,19264,19265,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,39,-3,-124.18853,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8902915,0,64.40000000000001,42,60.12,54.8,8.333333333333334,1,1,0,0,8,7,2,1,947.5,301803.19,161360.77,132380.73,0,4437.855,0,2548.9509 +8857,10767,19265,19264,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.014925,7.2820916,39,3,46.656784,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7409286,6.9477582,60.12,54.8,64.40000000000001,42,10,1,1,0,0,2,7,2,1,947.5,301803.19,161360.77,132380.73,0,4437.855,0,2548.9509 +8858,10768,19266,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1025.4009,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.19,34.68,-9,-9,6.666666666666667,1,1,0,0,4,10,1,1,643,105098.75,0,0,0,0,0,321.55719 +8859,10769,19267,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0735784,6.9450836,0,0,0,-990.18091,0,2,2,2021,8,1,16,16,1,1,0,9.3178148,9.3178148,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,291,401953.44,-23215.666,327111.88,40095.539,0,0,1629.4658 +8860,10770,19268,19271,-9,-9,1,0,54,0,2,0,2,2,-9,0,5,6.3278542,6.2521124,0,17,6,74.499352,0,2,3,2021,9,1,8,9,1,1,0,9.1114578,9.1114578,.05,.05,0,0,0,0,0,7,1,0,1,0,0,48.77,60.16,60.12,54.8,6.666666666666667,1,1,0,1,6,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19269,-9,19268,19271,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.13818,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19270,-9,19268,19271,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2244,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19271,19268,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.1977358,8.3874846,0,17,-6,85.139336,0,3,3,2021,7,0,60,50,1,0,0,7.4612498,7.4612498,.05,.05,0,0,0,0,0,2,1,0,1,1.975561,0,60.12,54.8,48.77,60.16,6.666666666666667,1,1,0,0,12,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8861,10771,19272,19273,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.7312703,5.7521315,65,2,-50.044605,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4360871,5.8666415,59.31,29.15,62.49,55.09,6.666666666666667,1,1,0,0,0,5,2,1,1582,428476.56,136874.22,149611.31,0,0,0,884.59021 +8861,10771,19273,19272,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,65,-2,10.929529,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,59.31,29.15,10,1,1,0,0,0,5,2,1,1582,428476.56,136874.22,149611.31,0,0,0,884.59021 +8862,10772,19274,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.7634563,7.4720483,0,0,-960.86749,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.153791,7.4085174,61.01,40.76,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,926,526325.69,380634.88,140614.69,0,0,0,681.83472 +8863,10773,19275,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8637252,7.6725464,0,0,0,-942.65485,0,3,3,2021,9,0,30,21,1,0,0,10.723328,10.723328,.05,.05,0,0,0,0,0,7,1,1,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,9,12,4,0,175,124814.16,266269.53,0,0,0,0,1342.6937 +8864,10774,19276,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2412062,8.5422421,0,0,0,-1056.4506,0,2,2,2021,14,2,40,40,1,2,0,12.750769,12.750769,.05,.05,0,0,0,0,0,0,0,0,0,3.6432619,0,27.87,59.87,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,370,56804.758,38285.766,0,0,0,0,2245.4087 +8865,10775,19277,19278,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,3.3247454,3.3546662,8,-6,166.18925,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.0899425,50.71,39.12,45.56,24.24,10,1,1,0,0,0,11,3,1,1601.5,764230,393207.53,255680.59,0,0,0,2586.3691 +8865,10775,19278,19277,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,7.3780985,7.3719401,8,6,7.3028312,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,24.665224,0,0,1,1,0,0,7.466116,45.56,24.24,50.71,39.12,8.333333333333334,1,1,0,0,0,11,3,1,1601.5,764230,393207.53,255680.59,0,0,0,2586.3691 +8866,10776,19279,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7379436,8.6125202,0,0,0,-1045.7511,0,1,2,2021,5,0,42,45,1,0,0,13.154776,13.154776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,6,5,1,559,-190756.63,-26020.316,0,0,0,-91.860947,2108.009 +8867,10777,19280,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.2986431,7.4180393,0,0,-1082.183,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.238883,7.5264206,28.94,36.18,-9,-9,5,1,1,0,0,0,9,3,1,195,615625.69,204099.61,299021.41,0,0,4484.4067,1635.6833 +8868,10778,19281,19282,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,0,93.686203,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,49,50,8.333333333333334,2,3,0,0,1,4,4,1,577.5,314382.09,6140.8887,152645.81,53571.199,0,0,2839.9253 +8868,10778,19282,19281,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7379208,8.7788591,0,10,0,-27.139236,0,-9,-9,2021,11,0,50,20,1,1,0,19.631771,19.631771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,46.92,60.71,7,2,3,0,0,1,4,4,1,577.5,314382.09,6140.8887,152645.81,53571.199,0,0,2839.9253 +8868,10779,19283,-9,19281,19282,1,1,33,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1008.5238,0,2,3,2021,6,0,0,35,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,1,0,4,4,1,1,332,68037.438,0,0,0,0,0,0 +8868,10780,19284,-9,19281,19282,1,1,28,0,0,0,1,1,-9,0,4,8.4289265,8.374795,0,0,0,-1013.6796,0,2,3,2021,6,0,37,37,1,0,1,14.910052,14.910052,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,899,26239.305,30540.779,0,0,0,0,2272.0491 +8869,10781,19285,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.9582367,9.0842066,0,0,0,-995.45026,0,2,2,2021,10,2,38,38,1,2,0,17.712729,17.712729,.05,.05,.05,0,0,0,0,0,0,0,0,2.9379413,0,28.41,64.05,-9,-9,5,1,1,0,0,12,8,5,0,896,449785,138630.86,317281.59,35647.734,2405.4695,0,2847.8828 +8870,10782,19286,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,0,0,0,0,0,-898.11255,-9,3,3,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,1,1,0,983,204790.8,0,0,0,0,0,613.17236 +8871,10783,19287,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8081188,7.8534837,0,0,0,-980.78052,0,2,3,2021,12,3,38,38,1,3,0,8.5966749,8.5966749,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.36,56.72,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,730,-55957.586,61679.59,0,0,0,1076.5356,1297.9388 +8871,10783,19288,-9,19287,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-965.18976,-9,2,-9,2021,26,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.88,65.75,-9,-9,5,1,1,0,1,2,2,4,1,730,-55957.586,61679.59,0,0,0,1076.5356,1297.9388 +8872,10784,19289,19290,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,9.6040926,9.6527748,0,6,2,9.6254377,0,3,2,2021,13,2,6,12,1,2,0,302.68414,302.68414,0,0,0,0,0,0,0,0,1,1,0,0,0,46.86,39.2,51,48,1.666666666666667,1,1,0,0,7,13,5,1,1120,2372466.5,2245901.3,203582.45,0,3319.8926,0,6626.2344 +8872,10784,19290,19289,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4337072,8.6530561,0,6,-2,118.03532,-9,-9,-9,2021,10,0,12,0,1,1,0,38.636795,38.636795,0,0,0,0,0,0,0,0,1,1,0,4.7899342,0,51,48,46.86,39.2,7,4,1,0,0,1,13,5,1,1120,2372466.5,2245901.3,203582.45,0,3319.8926,0,6626.2344 +8873,10785,19291,19292,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.8562193,9.0316057,7.3560205,18,-5,-32.291737,0,2,2,2021,18,6,41,40,1,6,0,20.289446,20.289446,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.8167114,37.85,54.28,49.92,34.09,8.333333333333334,1,1,0,0,14,10,5,1,394.5,2343874.5,1492112.8,534781.38,0,0,0,3225.0835 +8873,10785,19292,19291,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,18,5,58.220058,0,-9,3,2021,8,1,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,34.09,37.85,54.28,8.333333333333334,1,1,0,0,11,10,5,1,394.5,2343874.5,1492112.8,534781.38,0,0,0,3225.0835 +8874,10786,19293,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.4636583,8.1070242,0,0,0,-1000.8188,0,2,2,2021,9,2,24,24,1,2,0,15.287668,15.287668,.05,.05,0,0,0,0,0,14.5,0,0,0,2.6926265,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,502,132963.58,9739.3906,121048.67,0,0,0,1335.9141 +8875,10787,19294,19295,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.3112764,6.4248004,49,-2,-4.5014815,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2362015,6.4488468,35.03,63.83,38.6,52.76,6.666666666666667,1,1,0,0,4,6,3,1,241,935895.38,431845.53,293867.97,0,0,0,2474.7117 +8875,10787,19295,19294,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0000515,7.7262645,49,2,-135.56316,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0531607,38.6,52.76,35.03,63.83,8.333333333333334,1,1,0,0,8,6,3,1,241,935895.38,431845.53,293867.97,0,0,0,2474.7117 +8876,10788,19296,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.7016611,8.4671831,0,0,0,-1010.3908,0,2,1,2021,13,1,40,40,1,1,0,13.798441,13.798441,.05,.05,0,0,0,0,0,0,0,0,0,.086350478,0,35.85,45.71,-9,-9,3.333333333333333,1,1,0,0,15,9,5,0,483,492701.91,230522.48,380181.41,3907.2202,0,0,2654.8115 +8877,10789,19297,19298,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.7857881,8.104538,10,1,1.714488,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8894739,57.06,57.76,59.15,49.67,10,1,1,0,0,5,13,3,1,859.5,1040256.6,620053.75,256053.19,0,0,0,3306.9995 +8877,10789,19298,19297,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-1,-23.712961,0,2,1,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.15,49.67,57.06,57.76,8.333333333333334,1,1,0,0,6,13,3,1,859.5,1040256.6,620053.75,256053.19,0,0,0,3306.9995 +8878,10790,19299,19301,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.6302032,7.3193693,0,20,4,1.3272272,0,2,2,2021,5,0,30,30,1,0,0,7.6146307,7.6146307,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,50.5,52.77,10,1,1,0,0,10,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8878,10790,19300,-9,19299,19301,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1138.2382,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,0,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8878,10790,19301,19299,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2522602,9.4072361,0,7,-4,45.14978,0,-9,-9,2021,9,1,40,50,1,1,0,25.636763,25.636763,.05,.05,.05,0,0,0,0,0,0,0,0,2.4803064,0,50.5,52.77,55.19,54.26,6.666666666666667,1,1,0,0,10,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8879,10791,19302,-9,19303,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.29095,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,1,0,542,75523.422,18210.898,0,0,0,0,854.78479 +8879,10791,19303,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,0,0,0,0,0,-978.59613,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,58.42,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,542,75523.422,18210.898,0,0,0,0,854.78479 +8880,10792,19304,-9,19305,19306,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4945,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19305,19306,-9,-9,1,0,31,1,2,0,1,1,-9,1,3,5.0741186,5.497869,0,7,0,83.974411,0,2,3,2021,12,1,2,0,1,1,0,9.3244019,9.3244019,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,34.94,46.15,45.99,6.666666666666667,1,1,0,0,7,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19306,19305,-9,-9,1,1,31,1,2,0,3,3,-9,1,4,7.8234296,7.8833785,0,7,0,-115.35491,0,3,2,2021,13,2,38,39,1,2,0,7.7494674,7.7494674,0,0,0,0,0,0,0,0,1,1,0,0,0,46.15,45.99,52.48,34.94,5,1,1,0,0,8,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19307,-9,19305,19306,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.69843,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8881,10793,19308,-9,19310,19309,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-761.16583,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19309,19310,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0172462,9.1739922,0,11,0,87.94101,0,2,2,2021,10,0,35,35,1,0,0,30.737568,30.737568,.05,.05,0,0,0,0,0,0,1,1,0,3.8614526,0,43.54,59.6,39.26,60.13,6.666666666666667,1,1,0,0,13,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19310,19309,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.0157766,8.2103863,0,11,0,100.43713,0,2,2,2021,20,7,21,21,1,7,0,18.598215,18.598215,0,0,0,0,0,0,0,2,1,1,0,0,0,39.26,60.13,43.54,59.6,5,1,1,0,0,14,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19311,-9,19310,19309,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.14758,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8882,10794,19312,19313,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0198898,7.6779494,0,2,-3,38.947002,0,-9,-9,2021,9,1,40,38,1,1,0,7.7298541,7.7298541,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,49.46,41.13,46.59,8.333333333333334,1,1,0,0,5,5,5,0,305,102159.63,0,0,0,0,0,3256.5313 +8882,10794,19313,19312,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,8.37675,8.491663,0,2,3,-42.599506,0,2,2,2021,19,7,44,45,1,7,0,14.287952,14.287952,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,46.59,48.6,49.46,6.666666666666667,1,1,0,0,6,5,5,0,305,102159.63,0,0,0,0,0,3256.5313 +8883,10795,19314,19315,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7925396,8.6790714,0,19,2,173.05962,-9,-9,-9,2021,8,0,45,0,1,0,0,19.252172,19.252172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,33.85,41.94,8.333333333333334,1,1,0,0,12,11,5,1,578.5,752692.63,679738.5,221670.11,86288.469,3070.4277,5934.0161,3888.9888 +8883,10795,19315,19314,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,8.042923,7.7807441,0,16,-2,27.985836,0,-9,-9,2021,20,9,70,65,1,9,0,5.6243086,5.6243086,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.85,41.94,55.19,54.26,8.333333333333334,1,1,0,0,11,11,5,1,578.5,752692.63,679738.5,221670.11,86288.469,3070.4277,5934.0161,3888.9888 +8884,10796,19316,19317,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.527853,7.5177445,0,7,12,109.8717,0,2,-9,2021,6,0,20,20,1,0,0,10.378484,10.378484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,50,54,8.333333333333334,1,1,0,0,5,4,5,1,833.5,1652852.8,1544173.6,227114.38,109825.88,1414.594,0,2784.1885 +8884,10796,19317,19316,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8904238,8.8158236,0,7,-12,-43.525127,0,2,2,2021,10,0,40,37,1,1,0,21.199574,21.199574,0,0,0,0,0,0,0,0,1,1,0,4.1856618,0,50,54,60.29,52.11,8,1,1,0,0,1,4,5,1,833.5,1652852.8,1544173.6,227114.38,109825.88,1414.594,0,2784.1885 +8885,10797,19318,19319,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.0480886,6.1258631,9,-1,-95.526688,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9070616,47.96,34.1,36.35,40.14,6.666666666666667,1,1,0,0,4,8,2,0,309,383560.59,168246.69,120190.73,0,4069.2422,1220.4399,2564.8608 +8885,10797,19319,19318,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.0279517,4.975914,9,1,104.52584,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0093966,4.647418,36.35,40.14,47.96,34.1,5,1,1,0,0,0,8,2,0,309,383560.59,168246.69,120190.73,0,4069.2422,1220.4399,2564.8608 +8886,10798,19320,19321,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,57,-4,50.860111,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3083141,0,60.3,43.72,60.87,47.63,10,1,1,0,0,0,7,4,1,474,1646976.3,380856.66,1344775.5,0,0,0,3889.8174 +8886,10798,19321,19320,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.3705997,8.3054848,57,4,-19.598255,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9330626,8.577692,60.87,47.63,60.3,43.72,10,1,1,0,0,0,7,4,1,474,1646976.3,380856.66,1344775.5,0,0,0,3889.8174 +8887,10799,19322,-9,19327,19326,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1033.0035,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19323,-9,19327,19326,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1085.2678,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19324,-9,19327,19326,1,1,16,1,4,0,2,2,-9,0,5,0,0,0,0,0,-1112.4182,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19325,-9,19327,19326,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.52643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19326,19327,-9,-9,1,1,56,1,4,0,2,2,-9,0,3,8.3487806,8.2103834,0,3,5,64.394081,0,1,2,2021,10,0,48,40,1,1,0,10.161714,10.161714,0,0,0,0,0,0,0,0,1,1,0,4.334022,0,50,49,49.53,58.64,7,1,1,0,0,1,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19327,19326,-9,-9,1,0,51,1,4,0,2,2,-9,0,5,0,0,0,3,-5,64.394684,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4880023,0,49.53,58.64,50,49,8.333333333333334,1,1,0,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10800,19328,-9,19329,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1144.3325,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,385,7115.3018,2006.2715,0,0,1059.8948,0,1558.6428 +8887,10800,19329,-9,19327,19326,1,0,26,1,4,0,2,2,-9,0,4,7.5651112,7.4948764,0,0,0,-1136.1111,0,2,2,2021,13,2,30,30,1,2,1,6.7538009,6.7538009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.97,53.41,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,385,7115.3018,2006.2715,0,0,1059.8948,0,1558.6428 +8887,10801,19330,-9,19327,19326,1,1,24,1,4,0,1,1,-9,0,4,7.944314,7.9705849,0,0,0,-940.89478,0,2,2,2021,15,4,40,40,1,4,1,8.8059778,8.8059778,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,-9,-9,5,1,1,0,0,2,13,4,0,5776,100040.98,0,0,0,2613.1404,0,1119.3568 +8887,10802,19331,-9,19327,19326,1,1,22,1,4,0,2,2,-9,0,4,8.093852,8.1530161,0,0,0,-1068.2711,0,2,2,2021,10,0,37,40,1,1,1,8.5482244,8.5482244,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,4,0,477,27206.012,0,0,0,0,0,2281.0474 +8887,10803,19332,-9,19327,19326,1,1,21,1,4,0,2,2,-9,0,4,8.3412914,8.3820419,0,0,0,-990.36438,0,2,2,2021,6,1,40,58,1,1,1,14.613069,14.613069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,5,13,5,0,417,92232.656,-107521.18,0,0,1763.083,0,2529.0615 +8887,10804,19333,-9,19327,19326,1,0,19,1,4,0,2,2,-9,0,5,8.0147905,7.8158536,0,0,0,-1018.9124,0,2,2,2021,12,1,36,36,1,1,1,8.5798273,8.5798273,0,0,0,0,0,0,0,0,1,1,0,1.0432734,0,49.02,58.89,-9,-9,0,1,1,0,0,2,13,3,0,2668,-62941.539,0,74470.086,76373.805,0,0,1231.1077 +8888,10805,19334,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.62891,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,52.64,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,159,-59047.012,0,0,0,0,0,2078.623 +8889,10806,19335,19336,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.7338886,8.6186953,0,14,2,-56.310997,0,3,3,2021,9,0,47,43,1,0,0,17.101786,17.101786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,41.37,42.7,8.333333333333334,3,4,0,1,9,7,5,1,527.5,6362.8657,51015.133,0,0,4914.1611,2653.1963,2333.9646 +8889,10806,19336,19335,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,6.4964342,6.472806,0,14,-2,23.150599,0,3,3,2021,13,2,15,18,1,2,0,5.3356957,5.3356957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.37,42.7,43.57,62.68,3.333333333333333,1,1,0,1,8,7,5,1,527.5,6362.8657,51015.133,0,0,4914.1611,2653.1963,2333.9646 +8890,10807,19337,19338,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.8673501,6.9394765,53,0,9.5971489,0,3,-9,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.102788,29.47,53.27,41.74,44.5,3.333333333333333,1,1,0,0,3,11,2,1,502.5,381115.5,282067.06,224796.67,0,0,0,1816.5776 +8890,10807,19338,19337,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.735137,5.8314548,53,0,40.973988,0,3,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6414242,41.74,44.5,29.47,53.27,3.333333333333333,1,1,0,0,0,11,2,1,502.5,381115.5,282067.06,224796.67,0,0,0,1816.5776 +8891,10808,19339,-9,19340,19341,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.51276,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10808,19340,19341,-9,-9,1,0,45,1,2,0,2,2,-9,0,4,7.6122947,7.5861292,0,3,-11,-128.44801,0,-9,-9,2021,20,8,30,36,1,8,0,8.4820452,8.4820452,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,40.21,39.84,3.333333333333333,1,1,0,0,6,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10808,19341,19340,-9,-9,1,1,56,1,2,0,2,2,-9,0,2,8.1777344,8.2902889,0,3,11,-14.912049,-9,-9,-9,2021,24,12,38,0,1,12,0,12.352221,12.352221,.05,.05,.05,0,0,0,0,0,1,1,0,4.3381939,0,40.21,39.84,40.48,60.05,3.333333333333333,1,1,0,0,9,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10809,19342,19344,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,8.093708,8.1114187,0,1,0,67.848259,-9,-9,-9,2021,16,5,25,0,1,5,0,12.142365,12.142365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.13,50.05,51.24,58.84,6.666666666666667,1,1,0,0,0,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8891,10809,19343,-9,19342,19344,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.98456,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8891,10809,19344,19342,19340,19341,1,1,25,1,2,0,2,2,-9,0,4,7.8591523,8.0832224,0,1,0,-48.44577,-9,2,2,2021,12,0,37,0,1,0,0,8.4506693,8.4506693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,38.13,50.05,8.333333333333334,1,1,0,0,8,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8892,10810,19345,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-879.62769,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.48047474,0,1,1,0,0,0,33.3,26.82,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,734,-177921.42,77500.117,0,0,0,0,789.90735 +8892,10811,19346,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1047.1282,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,21.51,-9,-9,5,1,1,0,0,0,12,1,0,2325,89567.188,61736.598,0,0,0,0,2102.1494 +8893,10812,19347,-9,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,7.9054289,7.8706279,0,12,-10,46.239498,0,-9,2,2021,12,0,37,-9,1,0,0,11.056867,11.056867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.44,61.22,53.44,55.06,10,1,1,0,0,13,5,4,1,1436.5,-111435.11,52766.762,0,0,0,0,1438.3253 +8893,10812,19348,-9,19347,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-916.02698,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,5,4,1,1436.5,-111435.11,52766.762,0,0,0,0,1438.3253 +8893,10813,19349,-9,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,8.218873,7.8946409,0,12,10,-32.745342,0,3,2,2021,7,0,38,38,1,0,0,8.3360977,8.3360977,0,0,0,0,0,0,0,0,0,0,0,0,0,53.44,55.06,43.44,61.22,8.333333333333334,1,1,0,0,13,5,4,1,772,-89876.07,0,0,0,3808.6248,1686.292,1367.6357 +8894,10814,19350,19351,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.9663696,9.2674236,0,4,1,36.644905,0,-9,-9,2021,14,2,50,50,1,2,0,20.22876,20.22876,0,0,0,0,0,0,0,0,0,0,0,1.1904134,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,3,8,5,0,708,217051.38,-20438.553,279988.38,194930.75,2538.5325,-231.40955,5351.5771 +8894,10814,19351,19350,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.0433998,9.0307312,0,4,-1,-44.647926,0,1,1,2021,3,0,55,50,1,0,0,13.174879,13.174879,.05,.05,.05,0,0,0,0,0,0,0,0,5.1971278,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,6,8,5,0,708,217051.38,-20438.553,279988.38,194930.75,2538.5325,-231.40955,5351.5771 +8895,10815,19352,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.7280846,5.7990279,0,0,-1094.11,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0372791,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,362,329893.88,127164.91,143199.45,0,0,0,-320.08585 +8896,10816,19353,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.7002654,6.9282098,0,0,-1133.985,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5395637,7.0341988,49.35,59.64,-9,-9,5,1,1,0,0,0,11,2,1,1687,598077,9183.582,299660.88,0,0,0,1900.5466 +8897,10817,19354,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0566368,8.2206659,0,2,-8,130.90958,-9,-9,-9,2021,10,0,40,0,1,1,0,11.78495,11.78495,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.17,30.53,7,4,1,0,0,1,11,4,1,486,73069.328,142743.23,0,0,11346.298,0,1965.8296 +8897,10818,19355,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.8386269,7.7700019,0,2,8,3.4893882,0,2,2,2021,6,0,32,32,1,0,0,8.5656939,8.5656939,0,0,0,0,0,0,0,0,0,0,0,8.5204716,0,52.17,30.53,50,57,8.333333333333334,1,1,0,0,7,11,4,1,1275,-81564.297,0,0,0,2895.9592,0,2049.0735 +8898,10819,19356,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.2500105,5.9027185,0,0,-945.95032,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8532414,50.45,46.95,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,811,99587.758,139197.22,106168.57,0,0,0,111.72774 +8899,10820,19357,19358,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.5033054,7.7191138,0,25,-4,45.155106,0,3,3,2021,6,0,10,40,1,0,0,24.640902,24.640902,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.05,52.71,8.333333333333334,1,1,0,0,10,2,5,1,910.5,2672899.5,2246536.5,414407.56,23505.77,0,0,3929.1375 +8899,10820,19358,19357,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.1729174,9.1805639,0,8,4,103.85265,0,-9,-9,2021,8,0,47,46,1,0,0,23.734547,23.734547,.05,.05,0,0,0,0,0,2,0,0,0,8.243619,0,53.05,52.71,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,910.5,2672899.5,2246536.5,414407.56,23505.77,0,0,3929.1375 +8900,10821,19359,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.0789537,9.3422661,0,0,0,-957.27661,0,2,2,2021,21,9,36,36,1,9,0,22.155401,22.155401,.05,.05,0,0,0,0,0,0,1,1,0,5.0213599,0,20.17,66.48999999999999,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,828,280734.47,14456.089,0,0,0,0,3372.2585 +8901,10822,19360,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1075.442,0,3,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.23,51.37,-9,-9,1.666666666666667,1,1,1,1,0,4,1,0,1070,8017.2573,0,0,0,0,0,836.00629 +8902,10823,19361,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,8.0928144,8.227459,0,0,-938.26135,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5769219,8.3607655,56.76,39.94,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,765,1041696.8,264320.09,742307.31,0,0,0,2954.1421 +8903,10824,19362,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,8.1396894,8.0370922,0,0,-1018.3632,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0639653,8.1305189,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,248,1161629.3,549499.69,300241.59,0,0,0,1041.9023 +8904,10825,19363,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.8362236,8.8794651,0,0,0,-1006.5115,0,-9,-9,2021,16,4,38,38,1,4,0,22.139429,22.139429,0,0,0,0,0,0,0,0,0,0,0,0,0,43.43,54.3,-9,-9,5,1,1,0,0,9,2,5,1,734,47508.695,0,0,0,0,0,2832.127 +8905,10826,19364,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.797,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.76,54.68,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,567,0,0,0,0,0,0,395.81656 +8906,10827,19365,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.4842844,8.6857395,0,0,0,-922.43506,0,-9,-9,2021,12,0,42,42,1,0,0,15.024267,15.024267,.05,.05,0,0,0,0,0,0,0,0,0,3.4040122,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,280,-114469.88,95669.969,0,0,0,0,2438.9775 +8907,10828,19366,19367,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,6.4260454,6.106235,0,18,1,39.46241,0,2,2,2021,11,1,5,7,1,1,0,8.866683,8.866683,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,41.13,58.45,59.43,58.05,5,1,1,0,1,8,9,5,1,575.5,553603.56,344671.25,430297.59,95171.461,2581.5842,0,4599.3418 +8907,10828,19367,19366,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,9.528966,9.5899134,0,18,-1,8.2846603,0,2,2,2021,11,0,40,40,1,0,0,46.619743,46.619743,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,59.43,58.05,41.13,58.45,10,1,1,0,0,10,9,5,1,575.5,553603.56,344671.25,430297.59,95171.461,2581.5842,0,4599.3418 +8907,10829,19368,-9,19366,19367,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1139.2229,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,9,1,1,800,-36951.168,0,0,0,4052.0955,0,0 +8907,10830,19369,-9,19366,19367,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-973.69891,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,9,1,1,355,-21336.953,0,0,0,7455.8257,0,0 +8908,10831,19370,19371,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,61,-7,-3.9886405,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,9.6353102,0,27,1,1,0,0,0,61.85,44.55,43.82,23.43,8.333333333333334,2,3,0,0,0,8,2,1,1089.5,397319,73970.492,337747.84,0,0,0,918.80011 +8908,10831,19371,19370,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,6.2657928,6.3611488,61,7,47.270908,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,52.059685,0,0,1,1,0,0,6.3294578,43.82,23.43,61.85,44.55,8.333333333333334,2,3,0,0,0,8,2,1,1089.5,397319,73970.492,337747.84,0,0,0,918.80011 +8908,10832,19372,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6978788,8.3283043,0,0,0,-1028.4391,0,-9,-9,2021,10,0,42,38,1,0,0,13.824807,13.824807,.05,.05,0,0,0,0,0,14.5,1,1,0,7.2690797,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,49,685521.13,255296.78,298163.13,0,0,0,2703.5286 +8909,10833,19373,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.7107983,6.7180252,0,0,-1095.6594,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2684088,6.619154,52.55,44.88,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1991,604770.13,206318.03,302014.47,0,0,0,1239.3424 +8910,10834,19374,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1389666,7.9302111,0,0,0,-1014.0362,0,3,3,2021,11,0,54,60,1,0,0,7.3370156,7.3370156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.85,52.43,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,91,419797.56,290457,0,0,13079.25,1926.9248,1063.4653 +8911,10835,19375,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.7486763,6.7419348,0,0,0,-905.80646,0,2,2,2021,10,0,40,42,1,0,0,2.4266698,2.4266698,0,0,0,0,0,0,0,0,0,0,0,7.5048976,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,746,-112043.38,0,0,0,0,302.99884,636.28497 +8912,10836,19376,19377,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,51,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,50.5,46.02,38.75,18.3,5,1,1,0,0,0,7,1,1,1522.5,401018.41,0,435250.94,0,0,0,2195.8774 +8912,10836,19377,19376,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,51,-5,0,0,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,1,5.2932029,17.59054,48.281055,2,1,1,0,3.8044457,0,38.75,18.3,50.5,46.02,5,1,1,0,0,0,7,1,1,1522.5,401018.41,0,435250.94,0,0,0,2195.8774 +8913,10837,19378,-9,-9,-9,1,0,39,0,0,0,3,3,-9,1,1,0,4.4578743,4.3366151,0,0,-971.89771,0,2,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3795285,0,31.27,29.34,-9,-9,1.666666666666667,4,2,0,0,2,2,2,0,1125,-136085.69,0,0,0,0,0,1991.2955 +8913,10838,19379,-9,19378,-9,1,1,18,0,0,1,3,0,0,1,1,0,0,0,0,0,-993.21454,-9,3,-9,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.57,38.46,-9,-9,0,4,2,0,1,0,2,1,0,688,0,0,0,0,0,0,-246.37987 +8914,10839,19380,19381,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1257954,8.1103849,0,18,-5,40.615986,0,2,2,2021,11,0,42,16,1,0,0,9.4526806,9.4526806,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,42.07,25.52,8.333333333333334,1,1,0,0,14,11,4,1,1336.5,139918.13,139489.97,195727.34,65902.063,8441.9805,0,2099.7195 +8914,10839,19381,19380,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,8.1270313,8.0120182,0,18,5,7.2721896,-9,2,3,2021,12,0,37,0,1,0,0,10.891079,10.891079,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.07,25.52,51.83,57.2,5,1,1,0,0,14,11,4,1,1336.5,139918.13,139489.97,195727.34,65902.063,8441.9805,0,2099.7195 +8914,10840,19382,-9,19380,19381,1,0,18,0,0,0,2,2,-9,0,4,7.1317034,7.2132235,0,0,0,-898.84204,0,2,3,2021,24,9,26,0,1,9,1,6.9185576,6.9185576,.05,.05,0,0,0,0,0,0,1,0,1,0,0,23.58,63.74,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,486,24888.027,-46558.273,0,0,0,0,656.08832 +8915,10841,19383,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.1623702,5.3861918,0,0,-1077.5413,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0946622,64.98,34.69,-9,-9,10,4,2,0,0,0,2,2,0,916,123713.45,-78582.938,139935.13,0,0,963.82483,1482.9746 +8916,10842,19384,-9,19386,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.91089,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8916,10842,19385,-9,19386,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.2416,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8916,10842,19386,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3645582,7.8414502,6.0055594,0,0,-979.37054,0,-9,-9,2021,16,4,25,24,1,4,0,8.4025002,8.4025002,.05,.05,0,0,0,0,0,0,1,1,0,6.4013391,0,43.83,52.7,-9,-9,3.333333333333333,1,1,0,0,7,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8917,10843,19387,-9,-9,-9,1,0,37,0,1,0,3,3,-9,1,2,0,0,0,0,0,-889.34369,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.47,32.32,-9,-9,1.666666666666667,4,2,0,1,2,2,1,0,645,85054.852,15145.822,0,0,-620.39008,0,1866.5787 +8917,10843,19388,-9,19387,-9,1,1,16,0,1,1,3,0,-9,1,2,0,0,0,0,0,-1113.627,-9,3,-9,2021,29,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.73,53.97,-9,-9,3.333333333333333,4,2,0,0,0,2,1,0,645,85054.852,15145.822,0,0,-620.39008,0,1866.5787 +8918,10844,19389,19390,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.030417,4.9314961,22,1,18.229784,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9571557,58.15,52.91,52.84,40.35,8.333333333333334,1,1,0,0,5,9,2,1,1247.5,182998.56,267296.94,56311.453,0,0,0,1573.6614 +8918,10844,19390,19389,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.1005254,6.7261033,22,-1,1.1079603,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,82.441162,0,0,1,1,0,7.4955039,7.0200176,52.84,40.35,58.15,52.91,8.333333333333334,1,1,0,0,5,9,2,1,1247.5,182998.56,267296.94,56311.453,0,0,0,1573.6614 +8919,10845,19391,19392,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.463572,5.376338,34,4,-58.571095,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,126.70784,128.94746,1141.2712,0,1,1,0,0,5.6571383,66.36,30.66,42.5,63.22,8.333333333333334,1,1,0,0,0,7,2,1,1058.5,-41702.992,66304.859,0,0,0,0,1314.2747 +8919,10845,19392,19391,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,34,-4,-96.556,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,42.5,63.22,66.36,30.66,10,1,1,0,0,0,7,2,1,1058.5,-41702.992,66304.859,0,0,0,0,1314.2747 +8920,10846,19393,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.4415145,7.4324832,0,0,0,-1026.4418,0,2,2,2021,13,1,25,25,1,1,0,6.3700333,6.3700333,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,-9,-9,5,1,1,0,0,10,7,3,0,595,159237.02,51312.965,0,0,0,1003.5531,523.66888 +8921,10847,19394,19395,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,3.4950216,2.9670844,6,-7,7.5368867,0,1,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.0626416,58.14,44.9,64.07000000000001,47.52,8.333333333333334,1,1,0,0,13,9,3,1,301,1730554,1234826.1,297727.31,0,0,0,3656.9285 +8921,10847,19395,19394,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2042065,8.3315516,6,7,-85.782272,0,3,1,2021,8,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.3656445,7.5495534,64.07000000000001,47.52,58.14,44.9,8.333333333333334,1,1,0,0,11,9,3,1,301,1730554,1234826.1,297727.31,0,0,0,3656.9285 +8922,10848,19396,19397,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.4728227,7.8818688,12,-10,-29.86515,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6133614,7.7077651,45.32,53.5,50.21,50.22,8.333333333333334,1,1,0,0,12,4,4,1,541.5,1286192,773878.75,173061.8,0,0,0,5332.7607 +8922,10848,19397,19396,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.8912935,8.0786304,12,10,18.161972,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2840061,7.9356332,50.21,50.22,45.32,53.5,8.333333333333334,1,1,0,0,10,4,4,1,541.5,1286192,773878.75,173061.8,0,0,0,5332.7607 +8923,10849,19398,19399,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.7456121,8.7847614,8,1,38.568188,0,3,3,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9494524,8.7993498,59.07,43.05,57.33,53.46,8.333333333333334,1,1,0,0,9,2,4,1,912,1249542,774647.5,359019.72,0,0,508.38281,2723.3521 +8923,10849,19399,19398,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,6.7330995,7.0168486,8,-1,34.38773,0,3,3,2021,6,0,0,44,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.0161409,6.9656696,57.33,53.46,59.07,43.05,8.333333333333334,1,1,0,0,8,2,4,1,912,1249542,774647.5,359019.72,0,0,508.38281,2723.3521 +8924,10850,19400,19401,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.6988745,7.7630925,0,40,-6,-93.733475,0,3,-9,2021,8,0,40,48,1,0,0,5.1571259,5.1571259,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.02,58.57,8.333333333333334,1,1,0,0,8,4,3,1,701.5,321604.38,193296.91,135658.75,40497.496,0,0,2111.2681 +8924,10850,19401,19400,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1416168,7.0169592,5.3119531,40,6,39.021469,0,3,3,2021,10,0,40,36,1,0,0,3.2016547,3.2016547,0,0,0,0,0,0,0,0,0,0,0,4.6346521,5.3291898,46.02,58.57,57.16,56.15,6.666666666666667,1,1,0,0,8,4,3,1,701.5,321604.38,193296.91,135658.75,40497.496,0,0,2111.2681 +8924,10851,19402,-9,19400,19401,1,1,28,0,0,0,2,2,-9,0,4,8.1371489,8.4056053,0,0,0,-1123.7504,0,3,2,2021,8,1,35,43,1,1,1,10.952203,10.952203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,5,1,1,0,0,5,4,4,1,1903,-208318.84,57570.512,0,0,0,0,1137.9163 +8925,10852,19403,19404,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.8362379,8.1695004,53,2,100.34501,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0205426,8.146821,51.41,56.15,54.96,53.17,6.666666666666667,1,1,0,0,2,4,4,1,868.5,1483150.3,1100735.9,328099.03,0,0,0,3495.5083 +8925,10852,19404,19403,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5406795,7.5696807,53,-2,-29.387192,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1838179,7.5262332,54.96,53.17,51.41,56.15,8.333333333333334,1,1,0,0,0,4,4,1,868.5,1483150.3,1100735.9,328099.03,0,0,0,3495.5083 +8926,10853,19405,19406,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.4491501,8.5580702,0,1,-1,2.3045011,-9,-9,-9,2021,10,1,45,0,1,1,0,13.730601,13.730601,.05,.05,0,0,0,0,0,7,0,0,0,0,0,44.26,59.43,47.49,52.68,8.333333333333334,1,1,0,0,0,8,5,0,194,258368.06,106293.51,369892.47,164458.72,0,0,4159.9023 +8926,10853,19406,19405,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4797449,8.4336681,0,1,1,67.136009,0,-9,-9,2021,10,1,45,45,1,1,0,14.227536,14.227536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.49,52.68,44.26,59.43,8.333333333333334,1,1,0,0,6,8,5,0,194,258368.06,106293.51,369892.47,164458.72,0,0,4159.9023 +8927,10854,19407,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.9075851,8.9362278,0,0,0,-847.35052,-9,2,1,2021,12,3,35,0,1,3,0,26.180975,26.180975,.05,.05,0,0,0,0,0,0,0,0,0,8.7469749,0,42.84,55.93,-9,-9,6.666666666666667,2,3,0,0,7,8,5,0,1277,219639.16,62054.637,0,0,0,0,4603.3413 +8928,10855,19408,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,6.8453169,7.2291937,0,0,0,-926.93738,0,1,1,2021,4,0,38,37,1,0,0,2.9883184,2.9883184,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,993,311035.91,0,0,0,0,0,723.81451 +8929,10856,19409,-9,19410,19411,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.54553,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8929,10856,19410,19411,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.7051048,8.5848179,0,5,0,-6.127605,0,-9,-9,2021,6,0,35,35,1,0,0,22.269857,22.269857,.05,.05,0,0,0,0,0,0,0,0,0,3.1511281,0,62.39,56.71,50.01,55.31,10,1,1,0,0,9,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8929,10856,19411,19410,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,0,0,0,5,0,-112.48721,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,62.39,56.71,5,4,2,1,0,5,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8930,10857,19412,19413,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,63,-5,1.2120489,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.94,38.87,50.65,60.47,6.666666666666667,1,1,0,0,0,1,2,1,881.5,386545.75,222254.14,124359.73,0,0,0,1753.8621 +8930,10857,19413,19412,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,7.107419,7.0166907,63,5,-28.951353,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7062845,50.65,60.47,37.94,38.87,10,1,1,0,0,0,1,2,1,881.5,386545.75,222254.14,124359.73,0,0,0,1753.8621 +8931,10858,19414,19415,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.9443746,7.9456015,59,1,-8.1213074,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.843956,57.33,53.46,60.29,52.11,5,1,1,0,0,0,5,3,1,309,865229.88,250330.42,440470.97,0,0,0,2397.063 +8931,10858,19415,19414,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,59,-1,23.604313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.33,53.46,10,1,1,0,0,4,5,3,1,309,865229.88,250330.42,440470.97,0,0,0,2397.063 +8932,10859,19416,19417,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.8648109,8.2924109,6.5127454,5,-4,-94.431236,0,-9,-9,2021,10,0,40,35,1,0,0,6.763351,6.763351,0,0,0,0,0,0,0,7,1,1,0,5.908524,0,57.06,57.76,50.82,29.76,8.333333333333334,1,1,0,0,4,4,3,1,620,304074.44,0,97927.234,3399.3765,0,0,2752.1543 +8932,10859,19417,19416,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,0,6.1134572,5.9704595,5,4,19.665741,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2016358,6.2779503,50.82,29.76,57.06,57.76,5,1,1,0,0,0,4,3,1,620,304074.44,0,97927.234,3399.3765,0,0,2752.1543 +8932,10860,19418,-9,19416,19417,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1024.2898,-9,2,2,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,306,-91089.078,0,0,0,0,0,0 +8933,10861,19419,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.5589,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,40.932022,0,0,0,0,0,0,0,54.5,30.27,-9,-9,5,1,1,0,0,0,8,1,0,188,49529.402,-62269.559,0,0,0,0,0 +8934,10862,19420,19421,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.6669064,5.8383102,2,1,127.22849,0,3,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1702352,0,58.15,52.91,56.78,49.38,0,1,1,0,0,0,10,2,0,856.5,369625.19,103689.81,178352.13,0,0,0,2918.0562 +8934,10862,19421,19420,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,2,-1,31.050686,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7810073,0,56.78,49.38,58.15,52.91,6.666666666666667,1,1,0,0,0,10,2,0,856.5,369625.19,103689.81,178352.13,0,0,0,2918.0562 +8935,10863,19422,-9,19423,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5851,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8935,10863,19423,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,5,0,0,0,0,0,-993.72168,-9,2,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,61.31,-9,-9,10,1,1,1,1,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8935,10863,19424,-9,19423,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.3625,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8936,10864,19425,19426,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.7715001,7.9312444,50,2,-32.872288,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6679144,58.3,52.91,60.63,27.47,8.333333333333334,1,1,0,0,8,7,3,1,1168,973005.5,449937.63,284744.16,0,0,204.01935,2353.3752 +8936,10864,19426,19425,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.1763887,6.5434937,50,-2,-10.618783,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,7.0024605,0,0,1,1,0,0,7.3536906,60.63,27.47,58.3,52.91,8.333333333333334,1,1,0,0,0,7,3,1,1168,973005.5,449937.63,284744.16,0,0,204.01935,2353.3752 +8937,10865,19427,19428,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.6226149,7.8829527,18,0,51.206722,-9,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4693599,7.8032451,45.07,40.64,49.82,32.53,5,1,1,0,0,6,5,3,1,859,583741.25,418272,251129.63,52309.078,14948.619,0,3074.1899 +8937,10865,19428,19427,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,6.1328516,6.3523321,0,16,0,91.711784,-9,-9,-9,2021,20,8,30,0,1,8,0,1.9791094,1.9791094,0,0,0,0,0,0,0,0,1,1,0,8.3036184,0,49.82,32.53,45.07,40.64,6.666666666666667,1,1,0,0,10,5,3,1,859,583741.25,418272,251129.63,52309.078,14948.619,0,3074.1899 +8938,10866,19429,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.5251179,7.7226839,0,0,0,-879.90027,0,3,3,2021,6,0,30,30,1,0,0,7.3995543,7.3995543,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,13,3,0,795,-13927.614,-19042.488,0,0,0,0,-59.547417 +8938,10867,19430,-9,19429,-9,1,1,23,0,0,0,2,2,-9,0,5,8.5955133,8.7271957,0,0,0,-935.5528,0,2,-9,2021,9,0,47,55,1,0,1,14.436999,14.436999,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,6,13,5,0,2866,-119035.02,20815.307,0,0,0,0,2256.8701 +8939,10868,19431,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3771811,7.5193257,0,0,0,-1066.8826,-9,3,2,2021,15,4,35,0,1,4,0,5.334456,5.334456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,82,-47038.984,-1654.2723,36953.34,-9202.9893,0,0,1137.2546 +8940,10869,19432,19433,-9,-9,1,1,62,0,0,0,2,2,1,0,2,0,7.9048009,8.0875006,36,3,-92.992241,-9,3,3,2021,20,7,0,0,4,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.329936,7.5229535,29.2,40.86,52.31,25.68,8.333333333333334,1,1,0,0,6,6,3,1,410.5,152733.03,66442.219,86852.875,0,5333.6172,0,1729.8444 +8940,10869,19433,19432,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.4991512,6.2302623,0,36,-3,-33.41523,0,2,2,2021,11,0,10,12,1,0,0,7.9308238,7.9308238,0,0,0,0,0,0,0,14.5,1,1,0,4.3253107,0,52.31,25.68,29.2,40.86,3.333333333333333,1,1,0,0,5,6,3,1,410.5,152733.03,66442.219,86852.875,0,5333.6172,0,1729.8444 +8941,10870,19434,19435,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.9400873,9.0485945,0,5,-1,-44.557701,0,-9,-9,2021,29,12,38,0,1,12,0,27.378283,27.378283,.05,.05,0,0,0,0,0,0,0,0,0,6.274199,0,24.85,67.03,44.74,48.1,3.333333333333333,1,1,0,0,3,4,5,1,386.5,1100569.8,970431.81,188439.61,43811.102,10619.957,0,7578.9717 +8941,10870,19435,19434,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.520175,9.8544836,0,23,1,-60.77623,0,-9,-9,2021,15,4,44,47,1,4,0,30.735655,30.735655,.05,.05,0,0,0,0,0,0,0,0,0,4.2882495,0,44.74,48.1,24.85,67.03,8.333333333333334,1,1,0,0,8,4,5,1,386.5,1100569.8,970431.81,188439.61,43811.102,10619.957,0,7578.9717 +8942,10871,19436,19437,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.0290051,5.3952327,6,0,-19.199537,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3725877,54.67,43.45,44.04,26.14,10,1,1,0,0,0,5,2,0,1124,394077.19,70099.586,260013.5,0,0,0,1150.3088 +8942,10871,19437,19436,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.7047248,5.3704181,6,0,53.653492,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7336178,44.04,26.14,54.67,43.45,8.333333333333334,1,1,0,0,0,5,2,0,1124,394077.19,70099.586,260013.5,0,0,0,1150.3088 +8943,10872,19438,19439,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.8687239,6.6479344,9,3,109.11124,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5045223,6.6289291,54.2,57.49,40.58,43.59,10,1,1,0,0,0,13,3,1,909,876619.38,607599.75,127485.81,0,0,0,2137.9565 +8943,10872,19439,19438,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2157035,7.471086,9,-3,-49.046806,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3198805,7.1442533,40.58,43.59,54.2,57.49,5,1,1,0,0,0,13,3,1,909,876619.38,607599.75,127485.81,0,0,0,2137.9565 +8944,10873,19440,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.9933529,6.7473998,0,0,-985.66467,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0255866,6.8787103,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,444,149813.48,49901.289,89529.5,0,0,0,878.04041 +8945,10874,19441,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,3,0,7.6946535,7.8439503,0,0,-1150.1335,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.5497198,0,0,1,1,0,0,7.5830169,59.87,15.89,-9,-9,1.666666666666667,1,1,0,0,0,8,3,1,720,437060.5,363775.78,87269.008,0,0,0,910.08215 +8945,10875,19442,-9,-9,19441,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1096.2618,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,359,173448.69,-24090.383,325593.66,0,0,0,572.59467 +8946,10876,19443,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1229.7789,0,2,1,2021,10,0,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,8,1,1,0,0,8,8,1,1,780.5,433257.66,59883.164,382575.09,27491.141,12488.942,0,0 +8946,10876,19444,-9,19443,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1072.1117,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.0183973,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,780.5,433257.66,59883.164,382575.09,27491.141,12488.942,0,0 +8946,10877,19445,-9,19443,-9,1,1,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1042.5682,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,8,1,1,3021,0,0,0,0,0,0,0 +8947,10878,19446,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2785339,8.4239922,0,0,0,-1217.4933,0,-9,-9,2021,7,1,38,40,1,1,0,11.09507,11.09507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,280,-81262.414,41145.375,0,0,0,0,635.03632 +8948,10879,19447,19448,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.5364723,8.8613195,8.0922699,21,2,127.1866,0,2,-9,2021,14,3,37,36,1,3,0,14.143883,14.143883,0,0,0,0,0,0,0,2,1,1,0,0,8.2880278,51.67,60.18,46.22,53,6.666666666666667,1,1,0,0,8,2,5,1,213.5,1065577,675281.88,284974.03,0,0,0,5443.0127 +8948,10879,19448,19447,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.8295603,8.9481468,0,38,-2,-19.214436,0,3,2,2021,7,1,42,51,1,1,0,16.843729,16.843729,0,0,0,0,0,0,0,2,1,1,0,0,0,46.22,53,51.67,60.18,6.666666666666667,2,3,0,0,10,2,5,1,213.5,1065577,675281.88,284974.03,0,0,0,5443.0127 +8948,10880,19449,-9,19448,19447,1,1,33,0,0,0,1,1,-9,0,4,8.1945562,8.2484198,0,0,0,-974.46136,0,2,1,2021,13,1,25,22,1,1,0,14.662098,14.662098,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,4,2,0,1,7,2,4,1,970,-42591.836,0,0,0,0,0,2705.5356 +8949,10881,19450,19451,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,6.946444,6.7635608,10,4,-55.926422,0,2,2,2021,19,7,0,37,3,7,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.18223681,6.6768036,29.88,38.26,47.36,43.76,1.666666666666667,1,1,1,0,11,10,3,1,1018,253305.44,-31215.477,213799.53,27276.684,6056.6445,0,1148.77 +8949,10881,19451,19450,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7731495,7.7438526,0,10,-4,-52.095661,0,2,3,2021,9,2,30,24,1,2,0,9.0363064,9.0363064,0,0,0,0,0,0,0,14.5,0,0,0,0,0,47.36,43.76,29.88,38.26,8.333333333333334,1,1,0,0,11,10,3,1,1018,253305.44,-31215.477,213799.53,27276.684,6056.6445,0,1148.77 +8950,10882,19452,19453,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.9408941,6.8335104,1,1,-12.428007,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5081618,6.9510345,47,49,54.2,57.49,6.666666666666667,1,1,0,0,3,6,4,1,463,488452,264507.78,95693.195,13863.534,0,0,3099.699 +8950,10882,19453,19452,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.458806,8.2386847,0,23,-1,1.0175302,-9,3,3,2021,11,0,42,0,1,0,0,15.482921,15.482921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47,49,5,1,1,0,0,13,6,4,1,463,488452,264507.78,95693.195,13863.534,0,0,3099.699 +8950,10883,19454,-9,19452,19453,1,1,26,0,0,0,2,2,-9,0,5,8.0955753,7.9482255,0,0,0,-1033.8339,-9,2,3,2021,6,0,20,0,1,0,1,20.435078,20.435078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,5,6,4,1,204,83421.969,-15065.814,0,0,0,0,1504.7062 +8951,10884,19455,19456,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.4248381,7.9970794,0,10,13,141.74524,0,3,3,2021,7,0,40,35,1,0,0,13.420337,13.420337,.05,.05,0,0,0,0,0,0,0,0,0,1.6731017,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,11,7,4,1,475,567257.63,115309.78,414101.94,0,0,0,3526.4229 +8951,10884,19456,19455,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.8539734,6.7599936,0,10,-13,21.03554,0,2,3,2021,9,0,42,40,1,0,0,2.5557222,2.5557222,0,0,0,0,0,0,0,0,0,0,0,7.9362106,0,49.41,58.28,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,1,475,567257.63,115309.78,414101.94,0,0,0,3526.4229 +8952,10885,19457,19458,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.6114511,8.3806944,0,11,-1,103.63678,0,2,2,2021,11,0,38,41,1,0,0,14.590454,14.590454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37,53.29,8.333333333333334,1,1,0,0,12,2,5,1,350,-37481.016,-95903.625,0,0,5977.7134,17361.059,3543.3796 +8952,10885,19458,19457,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9847198,8.1826124,0,11,1,-162.77257,0,3,3,2021,14,3,53,43,1,3,0,7.1515298,7.1515298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37,53.29,54.2,57.49,6.666666666666667,1,1,0,0,5,2,5,1,350,-37481.016,-95903.625,0,0,5977.7134,17361.059,3543.3796 +8953,10886,19459,19460,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,3.8238604,4.1129012,22,-11,-13.827754,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,4.58108,0,120,1,1,0,3.7150011,3.8041372,62.92,12.95,48.36,28.21,10,1,1,0,0,0,5,2,0,640.5,120703.55,-12337.374,113082.82,67526.063,0,0,1844.1804 +8953,10886,19460,19459,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.3352437,4.286684,21,11,66.059875,0,3,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.95121,48.36,28.21,62.92,12.95,3.333333333333333,1,1,0,0,0,5,2,0,640.5,120703.55,-12337.374,113082.82,67526.063,0,0,1844.1804 +8954,10887,19461,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-999.14941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3766881,0,53.53,22.75,-9,-9,5,1,1,0,0,0,2,1,0,306,121577.48,0,0,0,0,0,681.16052 +8955,10888,19462,19463,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,39,0,23.0581,0,-9,-9,2021,9,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7456865,0,57.33,53.46,48,49,8.333333333333334,1,1,1,0,10,12,3,1,400,74211.742,0,44714.191,26825.205,8106.6504,0,669.57654 +8955,10888,19463,19462,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.7123642,8.0451889,0,9,0,65.233315,0,-9,-9,2021,12,0,15,16,1,2,0,17.258244,17.258244,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,57.33,53.46,7,1,1,0,0,1,12,3,1,400,74211.742,0,44714.191,26825.205,8106.6504,0,669.57654 +8955,10889,19464,-9,19463,19462,1,1,34,0,0,0,1,1,-9,0,4,8.4928799,8.2486954,0,0,0,-903.43628,0,-9,2,2021,10,0,40,50,1,1,1,11.532798,11.532798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,4,1,2030,49929.121,116958.37,0,0,0,0,1933.1637 +8956,10890,19465,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,6.3299041,6.3971481,0,0,-851.57416,0,-9,-9,2021,34,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2890692,0,20.09,38.61,-9,-9,1.666666666666667,1,1,0,0,7,2,2,0,2013,-42232.863,50819.945,0,0,-1096.6716,0,2585.4553 +8956,10891,19466,-9,-9,19467,1,1,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-980.26727,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8956,10891,19467,19468,-9,-9,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,1,1,0,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.03,55.95,25.81,49.24,3.333333333333333,1,1,0,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8956,10891,19468,19467,19465,-9,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,1,-1,0,-9,3,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,25.81,49.24,22.03,55.95,3.333333333333333,1,1,0,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8957,10892,19469,-9,19471,19472,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1003.6126,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19470,-9,19471,19472,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.04303,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19471,19472,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.1874599,8.3008127,0,13,-6,-74.193054,0,2,2,2021,9,0,28,23,1,0,0,16.938452,16.938452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,1,11,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19472,19471,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.5277929,8.4559069,0,13,6,41.169933,0,2,2,2021,12,0,40,40,1,0,0,14.443087,14.443087,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8958,10893,19473,19474,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,20,-1,0,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,26.08,26.32,53,54,1.666666666666667,1,1,0,0,0,5,1,0,980,-43946.445,0,0,0,0,0,1984.6318 +8958,10893,19474,19473,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,20,1,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,26.08,26.32,8,1,1,0,0,0,5,1,0,980,-43946.445,0,0,0,0,0,1984.6318 +8959,10894,19475,19476,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.3663397,8.3758001,28,2,46.679974,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1793122,8.1293802,59.46,46.99,55.19,54.26,8.333333333333334,1,1,0,0,0,2,4,1,486,1792166.1,782361.13,391927.06,0,0,0,4188.8984 +8959,10894,19476,19475,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2639136,7.5620456,28,-2,21.595482,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.3272834,7.4890571,55.19,54.26,59.46,46.99,10,1,1,0,0,0,2,4,1,486,1792166.1,782361.13,391927.06,0,0,0,4188.8984 +8960,10895,19477,19478,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.6403127,8.0491219,0,2,2,52.814972,0,-9,-9,2021,10,0,44,45,1,0,0,6.9438419,6.9438419,.05,.05,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,45,58,6.666666666666667,1,1,0,0,3,4,3,0,405.5,92949.75,201990.38,0,0,12480.109,42.736099,1708.5801 +8960,10895,19478,19477,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,6.7345114,6.8424706,0,2,-2,-50.864033,-9,-9,-9,2021,12,0,8,0,1,2,0,11.942156,11.942156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,58,49.46,56.91,7,4,1,0,0,1,4,3,0,405.5,92949.75,201990.38,0,0,12480.109,42.736099,1708.5801 +8961,10896,19479,19480,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.5576835,6.9620738,7,4,71.3078,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5907531,7.1931224,61.68,28.84,51.83,57.2,8.333333333333334,1,1,0,0,4,7,2,1,2497,856818.75,478552.81,472187.25,0,0,0,2636.1802 +8961,10896,19480,19479,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.3432131,5.2681284,7,-4,64.689743,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4059873,0,51.83,57.2,61.68,28.84,8.333333333333334,1,1,0,0,0,7,2,1,2497,856818.75,478552.81,472187.25,0,0,0,2636.1802 +8962,10897,19481,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.0522833,7.9645243,6.6549449,0,0,-1044.2748,0,3,-9,2021,12,0,38,38,1,0,0,7.140379,7.140379,0,0,0,0,0,0,0,0,0,0,0,4.6864705,6.2984643,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,6,4,1,1548,96623.922,48022.785,67129.164,0,0,0,1656.1281 +8963,10898,19482,19483,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.9158626,6.1294389,44,0,-.18447173,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,.76273805,0,0,0,0,6.2847753,5.8453794,57.91,46.31,54.96,53.17,8.333333333333334,1,1,0,0,0,5,5,1,721.5,459461,423083.47,21312.377,0,0,0,4257.0435 +8963,10898,19483,19482,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.8199129,8.8551617,44,0,2.2980113,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4027371,8.636776,54.96,53.17,57.91,46.31,8.333333333333334,1,1,0,0,2,5,5,1,721.5,459461,423083.47,21312.377,0,0,0,4257.0435 +8964,10899,19484,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.0701427,6.7936673,0,0,-1050.5583,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9076042,7.0543237,37.12,38.27,-9,-9,10,1,1,0,0,0,12,3,1,1361,268307.34,-40808.355,108559.66,0,0,0,1610.9996 +8965,10900,19485,19486,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.5277557,8.4620008,0,3,-2,-112.56653,0,-9,-9,2021,24,9,62,49,1,9,0,7.7219296,7.7219296,0,0,0,0,0,0,0,0,0,0,0,0,0,21.39,56.34,45.1,46.88,6.666666666666667,1,1,0,0,4,9,5,1,1698,133724.75,0,0,0,0,0,2232.9253 +8965,10900,19486,19485,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.7456598,7.9315219,0,3,2,-154.6996,0,-9,-9,2021,12,1,50,45,1,1,0,7.8349085,7.8349085,0,0,0,0,0,0,0,0,0,0,0,0,0,45.1,46.88,21.39,56.34,8.333333333333334,1,1,0,0,5,9,5,1,1698,133724.75,0,0,0,0,0,2232.9253 +8966,10901,19487,-9,19488,19490,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-972.89618,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19488,19490,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.3413568,7.4094706,0,19,-5,-74.2397,0,2,2,2021,13,1,26,29,1,1,0,6.1563621,6.1563621,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52,55,6.666666666666667,1,1,0,0,11,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19489,-9,19488,19490,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.1395,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19490,19488,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.1716337,8.4418764,0,19,5,-54.092411,0,-9,-9,2021,9,0,40,40,1,1,0,12.971908,12.971908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,51.49,57.57,8,1,1,0,0,1,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19491,-9,19488,19490,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-985.50098,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8967,10902,19492,19493,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,10,3,0,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,28.13,58.32,50.22,5,1,1,0,0,0,13,1,0,613.5,-79537.648,0,0,0,0,0,2623.5798 +8967,10902,19493,19492,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,50.22,30.76,28.13,8.333333333333334,1,1,0,0,0,13,1,0,613.5,-79537.648,0,0,0,0,0,2623.5798 +8967,10903,19494,-9,19493,19492,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1133.9761,-9,3,3,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.18620026,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,1,1,2,13,2,0,1937,0,0,0,0,0,0,90.350273 +8968,10904,19495,19496,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.1928916,7.4800858,0,8,-2,22.683784,0,3,-9,2021,6,0,37,37,1,0,0,3.77723,3.77723,.05,.05,0,0,0,0,0,0,0,0,0,7.1369157,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,473.5,197207.42,108799.03,0,0,0,0,3062.4177 +8968,10904,19496,19495,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0477934,8.0341272,6.7320204,8,2,-10.992625,0,3,3,2021,8,0,19,19,1,0,0,15.194868,15.194868,0,0,0,0,0,0,0,0,0,0,0,7.5243678,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,473.5,197207.42,108799.03,0,0,0,0,3062.4177 +8968,10905,19497,-9,19496,-9,1,1,24,0,0,0,1,1,-9,0,5,7.675076,7.9395466,0,0,0,-1171.0624,0,1,2,2021,6,0,48,8,1,0,1,6.4600029,6.4600029,.05,.05,0,0,0,0,0,0,0,0,0,9.8105965,0,54.1,59.11,-9,-9,10,1,1,0,0,3,10,3,1,909,134050.55,89253.555,0,0,0,0,7476.2437 +8969,10906,19498,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.6612072,8.5064697,7.6538281,0,0,-1011.5171,0,3,3,2021,7,0,39,41,1,0,0,7.8424125,7.8424125,0,0,.05,0,0,0,0,0,1,1,0,1.6226163,7.7153897,60.75,43.73,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,538,104098.48,76472.313,0,0,0,0,1910.646 +8970,10907,19499,-9,19501,19502,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-880.49969,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19500,-9,19501,19502,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.0808,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19501,19502,-9,-9,1,0,51,0,3,0,1,1,-9,0,4,6.0197411,5.9582009,0,18,-8,-141.88498,0,3,3,2021,12,0,80,8,1,0,0,.50666982,.50666982,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,57.02,51.41,56.15,8.333333333333334,1,1,0,0,14,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19502,19501,-9,-9,1,1,59,0,3,0,3,3,-9,0,3,6.8561602,6.8968554,0,13,8,69.779297,-9,-9,-9,2021,12,0,90,0,1,0,0,1.4459376,1.4459376,.05,.05,0,0,0,0,0,0,1,1,0,6.8647318,0,51.41,56.15,46.56,57.02,6.666666666666667,1,1,0,0,15,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19503,-9,19501,19502,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.59698,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10908,19504,-9,19501,19502,1,0,23,0,3,0,1,1,0,0,5,0,4.8121672,5.1142554,0,0,-896.79169,-9,1,3,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7855697,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,504,199261.36,0,0,0,0,0,596.67523 +8971,10909,19505,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7386093,7.8378844,0,0,0,-929.57404,0,-9,-9,2021,11,0,30,25,1,0,0,9.7188721,9.7188721,0,0,0,0,0,0,0,0,1,1,0,0,0,35.34,46.41,-9,-9,6.666666666666667,1,1,0,1,8,5,3,0,279,-44391.383,0,0,0,11915.039,0,1269.3939 +8972,10910,19506,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.8578043,8.2501116,0,0,0,-1075.9022,0,2,1,2021,9,0,60,55,1,0,0,9.2251072,9.2251072,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,855,133469.36,74782.039,142311.66,58465.359,0,0,1592.3708 +8973,10911,19507,19508,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.7958918,8.6486244,0,2,-6,-14.901407,0,-9,-9,2021,7,1,43,47,1,1,0,16.148386,16.148386,0,0,0,0,0,0,0,0,1,1,0,3.9976697,0,44.02,60.7,54.2,57.49,8.333333333333334,1,1,0,0,1,8,4,1,746.5,-4685.2305,0,0,0,0,0,3530.1426 +8973,10911,19508,19507,-9,-9,1,0,34,0,0,0,1,1,1,0,4,5.8406076,6.0098858,0,2,6,48.086838,-9,1,2,2021,6,0,40,0,1,0,0,.92073596,.92073596,0,0,0,0,0,0,0,0,1,1,0,3.8693585,0,54.2,57.49,44.02,60.7,10,1,1,0,0,6,8,4,1,746.5,-4685.2305,0,0,0,0,0,3530.1426 +8974,10912,19509,-9,19510,19511,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.4006,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8974,10912,19510,19511,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.6047673,7.5873046,0,6,-1,26.392138,0,-9,-9,2021,24,12,15,15,1,12,0,12.962175,12.962175,0,0,0,0,0,0,0,0,1,1,0,3.3719428,0,26.58,59.49,34.9,58.41,8.333333333333334,1,1,0,0,5,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8974,10912,19511,19510,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,8.2157125,8.3425837,0,6,1,-38.252197,-9,2,2,2021,11,0,42,0,1,0,0,10.760381,10.760381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.9,58.41,26.58,59.49,8.333333333333334,1,1,0,0,10,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8975,10913,19512,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,6.8349586,7.3140054,6.3824015,0,0,-989.34052,0,1,1,2021,5,1,13,25,1,1,0,8.8427076,8.8427076,0,0,0,0,0,0,0,2,1,1,0,2.4654834,6.3469787,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,743,149814.36,97627.305,177339.33,0,0,0,2016.663 +8976,10914,19513,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1046.3308,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.4247208,0,20.85914,0,1,1,0,2.6033804,0,52.08,26.8,-9,-9,5,1,1,0,0,0,10,1,0,136,816.04254,0,0,0,0,0,1491.0848 +8977,10915,19514,-9,19515,19516,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1554,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8977,10915,19515,19516,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.9834404,8.9273701,0,17,0,-47.08144,0,3,2,2021,14,3,31,31,1,3,0,25.835932,25.835932,.05,.05,0,0,0,0,0,0,1,1,0,4.0464721,0,45.58,47.97,45.92,53.14,6.666666666666667,2,3,0,0,10,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8977,10915,19516,19515,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.8623171,8.7924871,0,17,9,59.213524,0,3,3,2021,10,0,50,40,1,0,0,12.8739,12.8739,.05,.05,0,0,0,0,0,2,1,1,0,5.6049328,0,45.92,53.14,45.58,47.97,10,2,3,0,0,10,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8978,10916,19517,19518,-9,-9,1,0,70,0,1,0,1,1,-9,0,3,0,6.0997176,6.3301544,48,1,50.969223,-9,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.6645255,51.61,50.58,53.44,55.06,8.333333333333334,1,1,0,0,5,9,3,1,810.5,1680169,928641.13,566558.56,0,0,0,2768.7678 +8978,10916,19518,19517,-9,-9,1,1,69,0,1,0,1,1,-9,0,4,0,8.1930809,8.1509142,48,-1,56.666271,-9,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.2962875,8.3078241,53.44,55.06,51.61,50.58,8.333333333333334,1,1,0,0,7,9,3,1,810.5,1680169,928641.13,566558.56,0,0,0,2768.7678 +8978,10917,19519,-9,19521,19520,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-810.0957,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8978,10917,19520,19521,-9,-9,1,1,32,0,1,0,2,2,-9,1,1,0,0,0,5,-5,66.306412,0,-9,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.94,37.16,34.47,34.75,3.333333333333333,1,1,0,0,0,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8978,10917,19521,19520,19517,19518,1,0,37,0,1,0,2,2,-9,0,1,7.0827785,6.8360462,0,5,5,64.518745,0,1,1,2021,17,5,18,18,1,5,0,7.0191517,7.0191517,0,0,0,0,0,0,0,7,1,1,0,0,0,34.47,34.75,22.94,37.16,3.333333333333333,1,1,0,0,3,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8979,10918,19522,19523,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.9824615,7.0730829,0,18,0,11.159819,0,3,2,2021,16,7,17,17,1,7,0,6.6956058,6.6956058,0,0,0,0,0,0,0,0,1,1,0,0,0,34.49,41.76,52,55,5,2,3,0,1,5,4,2,1,1301.5,96612.625,0,0,0,0,0,1548.8503 +8979,10918,19523,19522,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,6.8965974,6.5999594,0,18,0,118.49035,0,3,3,2021,9,0,40,40,1,1,0,2.8669138,2.8669138,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,34.49,41.76,7,2,3,0,0,1,4,2,1,1301.5,96612.625,0,0,0,0,0,1548.8503 +8979,10919,19524,-9,19522,19523,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-870.5993,0,2,3,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.24,49.68,-9,-9,0,2,3,1,1,0,4,1,1,727,-83354.305,0,0,0,0,0,0 +8979,10920,19525,-9,19522,19523,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1043.3937,-9,2,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,4,1,1,1308,-68591.008,0,0,0,0,0,0 +8980,10921,19526,19527,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.3235035,6.4964881,54,2,-43.052212,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1716223,6.5005717,54.37,54.8,39.07,17.47,8.333333333333334,1,1,0,0,0,9,2,1,307.5,361795.94,77839.563,323863.56,0,0,0,1863.5961 +8980,10921,19527,19526,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.0605168,3.9008608,54,-2,134.7319,0,2,-9,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,2.4164548,25.069101,21.512154,0,1,1,0,4.4311004,3.9065003,39.07,17.47,54.37,54.8,5,1,1,0,0,0,9,2,1,307.5,361795.94,77839.563,323863.56,0,0,0,1863.5961 +8981,10922,19528,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.4024863,5.4278946,0,0,-921.10748,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.2747693,50.68,44.55,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,570,498177,102169.13,286957.13,119738.03,0,0,629.87671 +8982,10923,19529,19531,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.4819221,8.3627367,0,8,0,-49.657852,0,2,3,2021,10,0,40,40,1,1,0,14.718925,14.718925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,57.06,57.76,7,1,1,0,0,1,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8982,10923,19530,-9,19531,19529,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.5471,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8982,10923,19531,19529,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.2027216,8.494957,0,27,0,70.095528,0,2,3,2021,8,0,32,37,1,0,0,15.249066,15.249066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,10,1,1,0,0,10,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8983,10924,19532,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.693644,6.3715854,0,0,-1042.0396,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6312709,58.32,52.89,-9,-9,10,1,1,0,0,0,1,2,1,359,41824.527,168524.16,0,0,0,0,1185.1326 +8984,10925,19533,19535,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.2929859,7.9934587,0,1,1,16.443933,-9,3,2,2021,16,5,24,0,1,5,0,10.900514,10.900514,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,59.43,58.05,8.333333333333334,1,1,0,0,14,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8984,10925,19534,-9,19533,19535,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.43561,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8984,10925,19535,19533,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.0252275,8.555604,0,1,-1,94.299545,-9,-9,-9,2021,6,0,36,0,1,0,0,13.107871,13.107871,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,43.54,59.6,10,1,1,0,0,6,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8985,10926,19536,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.8831935,8.1173592,0,0,0,-990.67322,0,2,2,2021,6,0,30,29,1,0,0,10.478191,10.478191,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1304,125827.39,-28554.719,0,0,0,3580.106,1105.9644 +8985,10926,19537,-9,19536,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.68152,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,1304,125827.39,-28554.719,0,0,0,3580.106,1105.9644 +8986,10927,19538,-9,19541,19540,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4978,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19539,-9,19541,19540,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.01477,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19540,19541,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.4346781,8.3998003,0,11,-2,-47.906651,0,2,2,2021,25,12,40,43,1,12,0,15.996076,15.996076,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.27,61.56,35.61,65.82000000000001,5,1,1,0,0,10,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19541,19540,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.2086334,8.4744148,0,11,2,-28.545345,0,2,3,2021,15,5,35,30,1,5,0,12.566736,12.566736,0,0,0,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,27.27,61.56,8.333333333333334,1,1,0,0,10,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8987,10928,19542,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.7656775,7.942286,0,0,0,-1112.6167,0,-9,-9,2021,23,11,38,38,1,11,0,7.4322977,7.4322977,0,0,0,0,0,0,0,27,0,0,0,2.9715037,0,29.54,58.14,-9,-9,3.333333333333333,3,4,0,0,6,6,3,1,477,3252.9578,0,0,0,0,0,722.54718 +8988,10929,19543,19544,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,44,-16,-64.978142,0,-9,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,55,44,6.666666666666667,1,1,0,0,0,6,2,1,799.5,398305.63,91314.727,142487.47,0,0,0,2072.6299 +8988,10929,19544,19543,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.4173622,6.5413556,44,16,-79.459534,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1028862,6.5107551,55,44,57.16,56.15,8,1,1,0,0,0,6,2,1,799.5,398305.63,91314.727,142487.47,0,0,0,2072.6299 +8989,10930,19545,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-871.70221,-9,-9,-9,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6812313,0,36.27,60.6,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,1509,200727.88,0,0,0,0,0,112.6956 +8990,10931,19546,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3886547,7.9332986,0,0,0,-1061.3846,0,3,3,2021,10,0,40,40,1,1,1,13.688848,13.688848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,2,6,4,1,2163,-122266.95,88572.297,0,0,9782.9873,0,779.76044 +8991,10932,19547,19548,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.3672953,6.5730338,7,6,5.5722146,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0740633,62.11,36.75,43.1,34.14,1.666666666666667,1,1,0,0,0,12,2,0,675,639958.38,110333.28,425302.97,0,0,0,1810.6157 +8991,10932,19548,19547,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.3428116,4.4856949,7,-6,-57.704086,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4156485,43.1,34.14,62.11,36.75,5,1,1,0,0,0,12,2,0,675,639958.38,110333.28,425302.97,0,0,0,1810.6157 +8992,10933,19549,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-954.19299,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,31.71,19.27,-9,-9,1.666666666666667,1,1,0,1,4,9,1,0,5708,141615.11,183799.05,0,0,10237.772,0,1206.4926 +8993,10934,19550,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.8685732,7.5114756,6.5106511,0,0,-962.22223,0,3,3,2021,9,1,16,16,1,1,0,8.8094759,8.8094759,.05,.05,0,0,0,0,0,110,1,1,0,5.7344847,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,440.5,69837.094,-97878.172,71212.352,27431.684,0,0,2546.8765 +8993,10934,19551,-9,19550,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.4328,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,440.5,69837.094,-97878.172,71212.352,27431.684,0,0,2546.8765 +8994,10935,19552,19553,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2925797,6.4391198,8,1,-27.495539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2765474,57.16,56.15,65.62,37.83,8.333333333333334,1,1,0,0,6,1,3,1,899.5,1329824.5,516435.06,258806.22,0,0,0,2247.6465 +8994,10935,19553,19552,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.6417484,7.5426116,8,-1,2.4235439,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3903668,7.7223597,65.62,37.83,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,1,899.5,1329824.5,516435.06,258806.22,0,0,0,2247.6465 +8995,10936,19554,19555,-9,-9,1,1,31,0,0,0,1,1,-9,0,2,7.2655964,7.1348858,0,3,3,63.935852,-9,-9,-9,2021,8,0,24,0,1,0,0,7.5900636,7.5900636,.05,.05,0,0,0,0,0,0,0,0,0,.73073214,0,48.29,18.73,57.06,57.76,6.666666666666667,1,1,0,0,1,12,3,1,1527,140329.25,75688.516,111769.24,70628.305,8843.707,0,1304.2721 +8995,10936,19555,19554,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,6.9161768,6.9377794,0,3,-3,109.87851,0,-9,-9,2021,5,0,15,28,1,0,0,7.7310905,7.7310905,0,0,0,0,0,0,0,0,0,0,0,.44460288,0,57.06,57.76,48.29,18.73,8.333333333333334,1,1,0,0,8,12,3,1,1527,140329.25,75688.516,111769.24,70628.305,8843.707,0,1304.2721 +8996,10937,19556,-9,19559,19558,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-991.20282,-9,3,2,2021,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.18,50.78,-9,-9,3.333333333333333,3,4,0,1,0,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19557,-9,19559,19558,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-944.98395,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,3,4,-9,0,0,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19558,19559,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.2968507,7.1164579,0,9,6,-63.688042,0,-9,-9,2021,8,2,30,30,1,2,0,4.3725281,4.3725281,0,0,0,0,0,0,0,0,1,1,0,0,0,39.79,42.84,42.99,39.78,5,4,2,0,0,6,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19559,19558,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.7114987,7.4305863,0,22,-6,27.847977,0,3,2,2021,5,1,30,28,1,1,0,7.5962367,7.5962367,0,0,0,0,0,0,0,0,1,1,0,0,0,42.99,39.78,39.79,42.84,6.666666666666667,3,4,0,0,6,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10938,19560,-9,19559,19558,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-906.85706,-9,3,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9358697,0,38.46,59.39,-9,-9,5,3,4,0,0,0,8,1,0,403,-165946.88,0,0,0,0,0,636.47198 +8997,10939,19561,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.8285861,7.743855,0,0,-1140.9728,0,3,3,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8210421,7.8304224,57.91,46.31,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,346,556909.69,135423.95,278267.44,0,0,0,1916.7678 +8998,10940,19562,19563,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.297617,7.0808001,0,8,-12,-3.7127259,0,-9,-9,2021,12,0,25,40,1,2,0,5.512485,5.512485,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,50,49,7,3,4,0,0,6,6,2,0,734.5,117868.25,1408.8069,152372.34,0,0,0,762.15631 +8998,10940,19563,19562,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,8,12,-108.9381,0,3,3,2021,10,0,0,30,3,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,0,50,49,46,50,7,3,4,1,1,10,6,2,0,734.5,117868.25,1408.8069,152372.34,0,0,0,762.15631 +8999,10941,19564,19565,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0603938,6.9783301,57,1,-10.782907,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1740618,7.2829752,53.23,42.9,34.57,46.49,8.333333333333334,1,1,0,0,0,5,4,1,4096,1488038.8,862132.88,248300.06,0,0,0,4040.658 +8999,10941,19565,19564,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.4110146,7.9239426,10,-1,-26.535841,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1712852,7.9318948,34.57,46.49,53.23,42.9,8.333333333333334,1,1,0,0,0,5,4,1,4096,1488038.8,862132.88,248300.06,0,0,0,4040.658 +9000,10942,19566,19567,-9,-9,1,1,43,1,4,0,3,3,-9,0,5,7.8878241,7.9568663,0,21,9,-52.808594,-9,3,3,2021,6,0,24,0,1,0,0,14.559964,14.559964,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,57,46.76,31.57,8.333333333333334,2,3,0,0,4,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9000,10942,19567,19566,-9,-9,1,0,34,1,4,0,2,2,-9,0,4,8.0988035,8.4247389,0,1,0,-116.47384,-9,-9,-9,2021,6,0,25,0,1,0,0,16.755451,16.755451,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.76,31.57,54,57,8.333333333333334,2,3,0,0,4,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9000,10942,19568,-9,19567,19566,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-900.59717,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9001,10943,19569,19570,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4713163,8.391222,0,4,3,54.067078,0,2,3,2021,15,4,45,55,1,4,0,12.34658,12.34658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.39,56.58,45.03,37.58,5,1,1,0,1,10,9,5,0,1160.5,33268.125,-33462.773,210303.78,78806.453,0,0,2614.1313 +9001,10943,19570,19569,-9,-9,1,0,28,0,0,0,2,2,-9,0,2,7.8693724,7.4167662,0,4,-3,-31.334568,0,-9,-9,2021,12,3,39,35,1,3,0,6.7209601,6.7209601,0,0,0,0,0,0,0,0,0,0,0,2.5936024,0,45.03,37.58,30.39,56.58,3.333333333333333,1,1,0,0,3,9,5,0,1160.5,33268.125,-33462.773,210303.78,78806.453,0,0,2614.1313 +9002,10944,19571,19572,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.3546853,7.3244905,29,-6,57.90292,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.487412,128.72005,20.49996,0,1,1,0,6.2620893,7.2791381,62.62,21.31,56.64,53.85,10,1,1,0,0,0,5,4,1,969,534473.5,240913.91,196995.28,0,0,0,3852.0063 +9002,10944,19572,19571,-9,-9,1,1,83,0,0,0,3,3,-9,0,5,0,7.7137051,7.5873795,29,6,21.44232,0,3,2,2021,4,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,5.8789091,7.6217818,56.64,53.85,62.62,21.31,10,1,1,0,0,0,5,4,1,969,534473.5,240913.91,196995.28,0,0,0,3852.0063 +9003,10945,19573,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-952.18353,0,-9,-9,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,19.74,-9,-9,3.333333333333333,4,2,0,0,0,9,1,0,331,123400.08,0,0,0,0,0,1240.4254 +9004,10946,19574,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-952.03571,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,6,4,1,1,520,0,0,0,0,0,0,537.11603 +9005,10947,19575,19576,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,36,-2,36.971645,0,-9,-9,2021,24,10,0,20,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.49,44.86,31.62,18.37,1.666666666666667,1,1,0,0,10,2,2,0,1285,29522.967,0,0,0,0,0,1596.302 +9005,10947,19576,19575,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,4.4593911,4.4419703,36,2,21.253515,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,29.364058,0,74.5,1,1,0,0,4.3858585,31.62,18.37,41.49,44.86,6.666666666666667,1,1,0,0,0,2,2,0,1285,29522.967,0,0,0,0,0,1596.302 +9005,10948,19577,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6156168,7.9004993,0,0,0,-1016.7774,0,-9,-9,2021,11,0,51,32,1,0,0,5.2010837,5.2010837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.89,53.77,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,240,-34358.703,-18156.582,0,0,4609.1753,0,1232.4078 +9006,10949,19578,19579,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2420816,8.3360186,0,19,-1,-124.01968,0,2,1,2021,11,0,35,35,1,0,0,11.247703,11.247703,.05,.05,0,0,0,0,0,0,0,0,0,1.6065809,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,657,281448.72,215199.78,210293.67,81989.328,4532.7588,4068.115,3110.9097 +9006,10949,19579,19578,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.5714788,8.8152361,0,20,1,-102.97003,0,2,2,2021,14,5,50,47,1,5,0,13.991342,13.991342,.05,.05,0,0,0,0,0,0,0,0,0,1.1976042,0,51.77,58.57,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,657,281448.72,215199.78,210293.67,81989.328,4532.7588,4068.115,3110.9097 +9007,10950,19580,19581,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.8087506,6.3028479,44,1,-108.74201,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2808366,53.64,52.35,59.67,52.23,8.333333333333334,1,1,0,0,10,12,2,1,1841.5,466989.13,36885.563,290385.38,0,61996.66,0,2346.7769 +9007,10950,19581,19580,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.828712,5.9528685,6,-1,36.408688,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0761538,59.67,52.23,53.64,52.35,8.333333333333334,1,1,0,0,12,12,2,1,1841.5,466989.13,36885.563,290385.38,0,61996.66,0,2346.7769 +9008,10951,19582,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-834.3974,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,38.79,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,4316,40420.184,-129244.69,0,0,0,0,451.82089 +9009,10952,19583,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.7488861,6.6777115,0,0,-1004.8621,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9852829,61.2,31.05,-9,-9,10,1,1,0,0,0,12,2,1,481,258839.59,222467.63,0,0,0,0,1215.4335 +9010,10953,19584,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,7.3601813,7.1846237,0,0,-932.74268,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2282858,7.3548112,57.06,57.76,-9,-9,0,1,1,0,0,0,5,3,1,115,27655.498,146010.48,147133.72,0,0,3145.177,1204.6169 +9011,10954,19585,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1292353,7.9638176,0,0,0,-902.85144,0,2,2,2021,14,2,38,30,1,2,0,10.784724,10.784724,.05,.05,0,0,0,0,0,7,0,0,0,3.6531811,0,47.77,56.48,-9,-9,5,1,1,0,0,2,8,4,0,437,370824.09,47565.18,497851.41,158356.5,0,604.44739,1978.2164 +9011,10955,19586,-9,19585,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6689081,7.491487,0,0,0,-964.32544,0,2,-9,2021,10,0,35,35,1,1,1,6.1744199,6.1744199,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,3,0,256,192428.19,0,0,0,0,0,50.262222 +9012,10956,19587,19588,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,-2,107.12598,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,53.17,60.29,52.11,8.333333333333334,1,1,0,0,5,2,2,1,3242.5,933098.38,286550.13,433693.09,0,0,0,2176.7451 +9012,10956,19588,19587,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2990017,7.3446426,49,2,-51.460598,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8780646,60.29,52.11,51.47,53.17,8.333333333333334,1,1,0,0,3,2,2,1,3242.5,933098.38,286550.13,433693.09,0,0,0,2176.7451 +9013,10957,19589,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1050.4707,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,.10451097,30.405348,20.357119,0,1,1,0,6.6862588,0,42.04,47.49,-9,-9,0,1,1,0,0,0,4,1,0,879,31573.742,0,0,0,0,0,1099.6528 +9014,10958,19590,19591,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.2120152,8.5814457,0,6,-16,-120.9287,0,2,2,2021,8,0,40,40,1,0,0,11.117047,11.117047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.75,49.75,8.333333333333334,1,1,0,0,9,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10958,19591,19590,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.3850956,7.6840682,0,6,16,54.315697,0,3,3,2021,9,0,30,25,1,0,0,8.290432,8.290432,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,49.75,57.16,56.15,8.333333333333334,1,1,0,0,9,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10958,19592,-9,19591,19590,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.6729,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10959,19593,-9,19591,19590,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-942.57312,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,975,120234.6,0,0,0,0,0,0 +9015,10960,19594,-9,-9,-9,1,1,32,0,0,0,3,3,-9,0,4,7.7838602,7.7913384,0,0,0,-906.21869,-9,-9,-9,2021,31,12,20,0,1,12,0,18.993341,18.993341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.62,49.25,-9,-9,3.333333333333333,4,2,0,0,1,6,3,0,2164,-74110.836,14611.438,0,0,0,0,1206.9883 +9016,10961,19595,19596,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.4065351,8.3018475,0,8,4,42.249577,0,3,3,2021,11,0,76,43,1,0,0,10.711987,10.711987,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,41.99,53.75,3.333333333333333,1,1,0,0,11,7,5,1,613,178234.36,62193.293,0,0,7451.9497,3305.075,2735.9412 +9016,10961,19596,19595,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.8026896,7.811058,0,8,-4,-56.305386,0,2,2,2021,12,0,50,45,1,0,0,4.6037159,4.6037159,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.99,53.75,49.12,57.28,3.333333333333333,1,1,0,0,11,7,5,1,613,178234.36,62193.293,0,0,7451.9497,3305.075,2735.9412 +9017,10962,19597,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,3.680541,3.608217,0,0,-1041.4388,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6239076,67.04000000000001,42.15,-9,-9,10,1,1,0,0,2,4,2,0,507,493819.09,120904.95,191584.5,0,0,0,996.1889 +9018,10963,19598,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6069722,7.8116426,0,0,-1079.5356,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4465203,7.5895538,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,467,653428.69,412941.44,268060,0,0,959.17114,2245.5862 +9019,10964,19599,19601,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,9.8142452,9.4998369,0,3,3,-9.3472395,0,-9,-9,2021,5,0,49,49,1,0,0,31.659464,31.659464,.05,.05,0,0,0,0,0,0,0,0,0,2.5265639,0,53.96,50.73,30.59,64.25,8.333333333333334,1,1,0,0,8,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9019,10964,19600,-9,19601,19599,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-951.31915,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9019,10964,19601,19599,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,3,-3,188.92859,0,-9,-9,2021,22,9,0,5,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,64.25,53.96,50.73,8.333333333333334,1,1,0,0,2,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9020,10965,19602,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,6.4701824,6.8509865,0,0,0,-832.68011,0,2,-9,2021,12,0,30,20,1,0,0,2.8308816,2.8308816,0,0,0,0,0,0,0,2,1,1,0,0,0,45.52,57.21,-9,-9,3.333333333333333,1,1,0,1,7,11,2,0,768,-6478.6479,0,0,0,0,0,825.76178 +9021,10966,19603,-9,19605,19606,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1108.4912,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19604,-9,19605,19606,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.4176,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19605,19606,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.8605824,8.6335382,0,26,-3,105.53844,0,2,2,2021,10,0,50,46,1,0,0,15.623135,15.623135,.05,.05,0,0,0,0,0,0,1,1,0,4.5578098,0,51.83,57.2,57.33,53.46,10,1,1,0,0,9,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19606,19605,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.7630434,7.8998961,0,26,3,248.27628,0,1,1,2021,12,0,30,45,1,0,0,10.742811,10.742811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9022,10967,19607,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,6.0110826,5.921936,0,0,-869.89197,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.9347095,43.96,39.58,-9,-9,5,1,1,0,1,9,12,2,0,979,33632.637,0,98724.438,7425.4976,0,0,1114.7362 +9023,10968,19608,-9,19611,19612,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1143.472,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19609,-9,19611,19612,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.0392,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19610,-9,19611,19612,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.6195,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19611,19612,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,0,0,0,7,-1,-54.846603,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,51,56,8.333333333333334,1,1,0,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19612,19611,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.188798,9.2893448,0,7,1,-58.332306,0,3,3,2021,9,0,37,37,1,1,0,37.936253,37.936253,.05,.05,0,0,0,0,0,0,1,1,0,8.8822193,0,51,56,51.14,60.45,8,2,3,0,0,1,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9024,10969,19613,19616,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.6191082,6.9934244,0,10,-1,70.46714,0,3,3,2021,11,0,18,18,1,2,0,5.4741459,5.4741459,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,41.98,44.15,8.333333333333334,1,1,0,0,7,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19614,-9,19613,19616,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.1795,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19615,-9,19613,19616,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-983.14349,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19616,19613,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,8.3979492,8.4892864,0,10,1,-22.495499,0,-9,-9,2021,12,0,50,50,1,0,0,12.458801,12.458801,0,0,0,0,0,0,0,0,1,1,0,0,0,41.98,44.15,48,57,8.333333333333334,1,1,0,0,11,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19617,-9,19613,19616,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.7211,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9025,10970,19618,19619,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1523371,8.139266,0,5,-8,-34.967045,0,-9,-9,2021,8,1,37,37,1,1,0,10.23813,10.23813,0,0,0,0,0,0,0,0,0,0,0,3.2105582,0,59.53,56.44,58.3,52.91,10,1,1,0,0,9,12,5,1,627,418671.06,120526.79,192185.97,26436.471,0,0,3659.8225 +9025,10970,19619,19618,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.6394558,9.0260534,0,5,8,-128.04506,0,3,3,2021,10,0,35,42,1,0,0,17.953434,17.953434,.05,.05,0,0,0,0,0,0,0,0,0,3.4672236,0,58.3,52.91,59.53,56.44,8.333333333333334,1,1,0,0,8,12,5,1,627,418671.06,120526.79,192185.97,26436.471,0,0,3659.8225 +9026,10971,19620,19621,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.4560242,9.3379669,0,30,6,112.52121,0,1,1,2021,11,0,70,60,1,0,0,19.217371,19.217371,0,0,0,0,0,0,0,0,0,0,0,0,0,46.94,47.09,41.69,56.83,5,4,5,0,0,11,7,5,1,765,3127861.3,1188378.5,1125565.5,0,0,0,3621.314 +9026,10971,19621,19620,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,30,-6,86.753845,0,2,1,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.69,56.83,46.94,47.09,5,4,5,0,0,0,7,5,1,765,3127861.3,1188378.5,1125565.5,0,0,0,3621.314 +9026,10972,19622,-9,19621,19620,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.64258,-9,1,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,57.07,-9,-9,5,4,5,0,1,0,7,1,1,877,228915.09,0,0,0,0,0,0 +9027,10973,19623,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.7724123,7.3095541,0,0,-947.77484,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1483713,7.6900764,40.61,33.04,-9,-9,5,1,1,0,0,0,5,3,1,305,192623.56,127121.28,68785.344,0,5079.6211,0,1667.1757 +9028,10974,19624,-9,19625,-9,1,1,16,0,1,1,2,0,-9,0,4,0,3.5747905,3.508219,0,0,-1085.6378,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8069201,0,49.35,59.64,-9,-9,10,1,1,0,0,0,7,2,0,1110,-7415.4063,0,0,0,8402.9219,0,1496.5443 +9028,10974,19625,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,6.9247952,7.0329885,0,0,0,-1084.2869,0,2,-9,2021,5,0,25,25,1,0,0,5.2716556,5.2716556,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,6,7,2,0,1110,-7415.4063,0,0,0,8402.9219,0,1496.5443 +9029,10975,19626,-9,19627,19629,1,1,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9166,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19627,19629,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,0,3.8830671,3.7780876,3,1,139.65077,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5107296,0,41.06,28.62,52.97,53.97,8.333333333333334,1,1,0,0,2,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19628,-9,19627,19629,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.93256,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19629,19627,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.1243191,8.4300547,0,3,-1,-84.21312,0,-9,-9,2021,10,1,42,37,1,1,0,8.3502846,8.3502846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,41.06,28.62,8.333333333333334,1,1,0,0,9,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9030,10976,19630,19631,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,48,-1,0,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,40.2,34.77,3.333333333333333,1,1,0,0,3,4,1,0,623,78499.008,-68845.25,102075.88,0,0,0,2626.5791 +9030,10976,19631,19630,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,13,1,0,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,40.2,34.77,30.6,18.53,3.333333333333333,1,1,0,0,8,4,1,0,623,78499.008,-68845.25,102075.88,0,0,0,2626.5791 +9031,10977,19632,19633,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,6.7581844,6.4972172,0,34,4,46.001152,0,-9,-9,2021,23,11,6,8,1,11,0,17.835474,17.835474,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,32.51,32.5,23.29,29.99,6.666666666666667,1,1,0,0,7,6,4,1,698.5,815273.88,375642.19,203101.78,0,0,0,1353.5115 +9031,10977,19633,19632,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1990118,7.9524794,0,34,-4,-30.622648,0,-9,-9,2021,30,11,35,36,1,11,0,10.849276,10.849276,.05,.05,0,0,0,0,0,0,1,1,0,1.4185505,0,23.29,29.99,32.51,32.5,5,1,1,0,0,11,6,4,1,698.5,815273.88,375642.19,203101.78,0,0,0,1353.5115 +9032,10978,19634,-9,-9,-9,1,0,50,0,1,0,2,2,-9,1,3,7.9973764,8.1595716,0,0,0,-923.54175,0,-9,-9,2021,8,0,28,28,1,0,0,12.486555,12.486555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.36,44.28,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,590,443437.84,104740.3,99996.984,21514.416,1587.196,0,2444.7134 +9033,10979,19635,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,6.2742457,6.3651829,0,0,0,-1078.7538,0,-9,-9,2021,16,4,8,16,1,4,0,7.6795144,7.6795144,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,53.77,-9,-9,6.666666666666667,1,1,0,0,4,1,2,0,693,-204956.97,779.25433,0,0,0,-726.34259,812.93414 +9034,10980,19636,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.4322133,6.2064595,0,0,-1041.0793,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8865997,6.5197415,39.3,42.85,-9,-9,1.666666666666667,1,1,0,0,5,4,2,1,1028,127729.74,182125.23,0,0,0,0,966.23389 +9035,10981,19637,-9,19638,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1010.2116,-9,1,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,1,0,1360.5,322562.75,43344.672,484325.31,173389.19,0,6133.1904,2324.4277 +9035,10981,19638,-9,-9,-9,1,0,51,0,1,0,1,1,-9,1,3,0,0,0,0,0,-824.67224,0,2,2,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.95,54.89,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1360.5,322562.75,43344.672,484325.31,173389.19,0,6133.1904,2324.4277 +9036,10982,19639,-9,19641,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.55743,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9036,10982,19640,-9,19641,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0352,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9036,10982,19641,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,0,0,0,0,0,-886.03821,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,26.26,-9,-9,5,1,1,1,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9037,10983,19642,19643,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.3535595,8.3935041,6.4840903,11,1,90.793495,0,3,3,2021,14,3,38,37,1,3,0,10.219703,10.219703,0,0,0,0,0,0,0,7,1,1,0,1.8633467,6.4269924,40.69,59.62,57.16,56.15,6.666666666666667,1,1,0,0,14,13,4,1,934.5,1126973.5,848528.25,227077.73,0,0,0,3118.6702 +9037,10983,19643,19642,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,11,-1,63.96059,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.9687985,0,57.16,56.15,40.69,59.62,8.333333333333334,1,1,0,0,0,13,4,1,934.5,1126973.5,848528.25,227077.73,0,0,0,3118.6702 +9038,10984,19644,19645,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,21,0,55.251629,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.43,47.48,55.44,48.73,8.333333333333334,1,1,0,0,1,1,2,1,678.5,329129.38,337759.19,27416.523,0,0,3469.4182,2101.5669 +9038,10984,19645,19644,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.1605501,7.2652602,21,0,56.705208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.729867,7.3682904,55.44,48.73,53.43,47.48,8.333333333333334,1,1,0,0,2,1,2,1,678.5,329129.38,337759.19,27416.523,0,0,3469.4182,2101.5669 +9039,10985,19646,-9,19648,19647,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-911.13928,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10985,19647,19648,-9,-9,1,1,42,0,1,0,2,2,-9,1,3,8.2854319,7.9698038,0,7,-8,-8.7409163,0,2,2,2021,14,2,44,46,1,2,0,9.6968765,9.6968765,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.52,48.31,52.09,30.08,8.333333333333334,1,1,0,0,8,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10985,19648,19647,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,7.2379332,7.1042762,0,7,8,.088272192,0,2,2,2021,5,0,36,30,1,0,0,4.6563787,4.6563787,0,0,0,0,0,0,0,0,1,1,0,2.2774897,0,52.09,30.08,56.52,48.31,6.666666666666667,1,1,0,0,6,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10986,19649,-9,19648,19647,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1047.1849,-9,1,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.55132335,0,53.18,51.37,-9,-9,8.333333333333334,1,1,0,0,2,10,1,0,925,0,0,0,0,0,0,313.82553 +9040,10987,19650,19651,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2471247,8.2893429,0,4,0,-153.12292,0,1,1,2021,7,0,52,48,1,0,0,12.497813,12.497813,.05,.05,0,0,0,0,0,0,0,0,0,5.1476655,0,54.1,59.11,54.1,59.11,6.666666666666667,1,1,0,0,3,10,5,1,631.5,67085.391,-36177.73,0,0,0,0,4583.1836 +9040,10987,19651,19650,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.863616,8.6856947,0,4,0,37.821991,0,-9,-9,2021,8,0,47,43,1,0,0,16.781754,16.781754,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,10,1,1,0,0,5,10,5,1,631.5,67085.391,-36177.73,0,0,0,0,4583.1836 +9041,10988,19652,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1075.0026,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.26,23.78,-9,-9,3.333333333333333,1,1,0,1,8,5,1,1,1310,0,0,0,0,0,0,974.8277 +9042,10989,19653,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0480423,8.3106747,0,0,0,-1009.3224,0,3,3,2021,9,0,38,38,1,0,0,9.147501,9.147501,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.17,50.61,-9,-9,10,1,1,0,0,11,4,4,1,702,195452.13,97946.891,57274.266,26870.32,0,0,1527.23 +9043,10990,19654,19655,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9724579,8.8079605,0,25,-1,3.4332654,0,2,2,2021,16,6,40,0,1,6,0,30.122158,30.122158,.05,.05,0,0,0,0,0,0,0,0,0,6.5149188,0,54.2,57.49,43.46,40.88,8.333333333333334,1,1,0,0,12,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10990,19655,19654,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,9.4238405,9.3957176,0,25,1,-57.26836,0,2,2,2021,13,1,85,43,1,1,0,17.700968,17.700968,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.46,40.88,54.2,57.49,5,1,1,0,0,12,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10990,19656,-9,19655,19654,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1145.8844,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.13,47.49,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10991,19657,-9,19655,19654,1,0,19,0,1,0,2,2,-9,0,3,7.6348047,7.729239,0,0,0,-973.05798,0,2,1,2021,12,0,35,43,1,0,1,8.648427,8.648427,.05,.05,0,0,0,0,0,0,0,0,0,.64048743,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,3,8,3,1,363,14487.652,87169.828,0,0,9717.8643,0,182.32126 +9044,10992,19658,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.603282,6.0050025,0,0,-889.87274,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.67820162,6.8999491,53,46,-9,-9,7,1,1,0,0,0,7,2,0,666,914128.81,280002.56,437512.75,0,0,93.132263,939.99286 +9045,10993,19659,19660,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.7258611,7.6848211,0,7,1,31.014662,0,-9,-9,2021,9,0,30,30,1,1,0,8.0129099,8.0129099,.05,.05,.05,0,0,0,0,0,0,0,0,4.1759944,0,53,54,46.48,53.76,8,1,1,0,0,1,8,4,1,1761,421822.63,328131.5,183444.47,0,0,0,1425.1599 +9045,10993,19660,19659,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.5410004,7.6749182,0,34,-1,-4.5931315,0,2,2,2021,9,0,21,21,1,0,0,9.4275961,9.4275961,.05,.05,0,0,0,0,0,0,0,0,0,2.9972184,0,46.48,53.76,53,54,6.666666666666667,4,2,0,0,8,8,4,1,1761,421822.63,328131.5,183444.47,0,0,0,1425.1599 +9046,10994,19661,19662,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7013974,7.8819509,0,8,-7,89.486084,-9,3,3,2021,7,0,29,0,1,0,0,11.831524,11.831524,0,0,0,0,0,0,0,0,1,1,0,.73591107,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,10,12,4,1,742.5,860184.75,620201,171950.16,0,0,284.27026,2351.5459 +9046,10994,19662,19661,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.6520228,7.3052316,50,7,-97.581848,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.27096441,7.4077311,56.47,59.4,54.2,57.49,8.333333333333334,1,1,0,0,11,12,4,1,742.5,860184.75,620201,171950.16,0,0,284.27026,2351.5459 +9047,10995,19663,-9,-9,-9,1,0,42,1,2,0,3,3,-9,1,2,0,0,0,0,0,-1015.5925,0,3,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.63,34.65,-9,-9,1.666666666666667,1,1,1,1,0,13,1,0,989,-71874.586,0,0,0,-423.44626,0,871.15497 +9047,10996,19664,-9,19663,-9,1,1,21,1,2,0,3,3,-9,0,5,0,0,0,0,0,-957.89581,-9,3,-9,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,52.7,-9,-9,5,1,1,1,0,0,13,1,0,463,5808.6084,0,0,0,0,0,25.532887 +9047,10997,19665,-9,19663,-9,1,0,23,1,2,0,3,3,-9,0,4,0,0,0,0,0,-947.59729,-9,3,-9,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,5,1,1,1,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10997,19666,-9,19665,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5125,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10997,19667,-9,19665,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.1586,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10998,19668,-9,19663,-9,1,1,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1062.3066,0,3,-9,2021,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.35,39.53,-9,-9,1.666666666666667,1,1,1,1,0,13,1,0,204,70444.227,0,0,0,0,0,-69.670135 +9048,10999,19669,19670,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,4,-24,76.039833,0,-9,-9,2021,6,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.04,54.12,10,2,3,0,0,0,9,4,1,289.5,1075116.9,598973.75,399999.81,0,0,0,3510.6489 +9048,10999,19670,19669,-9,-9,1,1,90,0,0,0,1,1,-9,0,5,0,8.317215,8.356698,4,24,42.044529,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.2404213,8.582242,59.04,54.12,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,289.5,1075116.9,598973.75,399999.81,0,0,0,3510.6489 +9049,11000,19671,19672,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,8.0163059,8.1000528,26,11,-139.22119,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0285702,7.9410648,34.44,48.18,62.39,56.71,5,1,1,0,0,11,4,4,1,647.5,1694518.9,1095880.3,291396.69,0,0,0,3183.499 +9049,11000,19672,19671,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.0204234,7.0930338,0,25,-11,15.125313,0,2,1,2021,11,3,20,20,1,3,0,6.8539391,6.8539391,0,0,0,0,0,0,0,0,0,0,0,6.9444156,0,62.39,56.71,34.44,48.18,10,1,1,0,0,10,4,4,1,647.5,1694518.9,1095880.3,291396.69,0,0,0,3183.499 +9049,11001,19673,-9,19672,19671,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-993.76154,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4992609,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,950,-24670.873,0,0,0,0,0,118.39039 +9049,11002,19674,-9,19672,19671,1,0,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-980.75964,-9,2,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,1544,-46785.656,0,0,0,0,0,0 +9050,11003,19675,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.4284906,8.3799238,0,0,0,-914.82794,0,2,2,2021,7,0,50,50,1,0,0,8.7099276,8.7099276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,303,222855.77,-47934.742,368922,125714.23,0,0,1852.9833 +9051,11004,19676,19677,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.6563234,6.7241693,54,-1,-45.270477,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2766426,6.7082081,43.21,47.68,55.71,40.47,8.333333333333334,1,1,0,0,0,10,3,1,6061.5,820786.38,229019.92,381397.06,0,0,22.537201,2984.7537 +9051,11004,19677,19676,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6819763,7.3221469,54,1,144.14133,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7605429,7.6996446,55.71,40.47,43.21,47.68,6.666666666666667,1,1,0,0,1,10,3,1,6061.5,820786.38,229019.92,381397.06,0,0,22.537201,2984.7537 +9052,11005,19678,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6307106,7.846622,0,0,0,-972.60645,-9,-9,-9,2021,9,1,60,0,1,1,0,5.6571774,5.6571774,0,0,0,0,0,0,0,0,0,0,0,2.5953529,0,33.24,65.53,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,491,-104468.02,0,0,0,0,0,964.75153 +9053,11006,19679,19680,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.3248215,8.7789516,7.3457584,27,7,-42.88847,0,3,3,2021,11,0,40,35,1,0,0,12.686474,12.686474,.05,.05,0,0,0,0,0,0,0,0,0,.59354001,7.3149786,43.45,38.38,50.3,56.65,3.333333333333333,1,1,0,0,9,9,5,1,777,854688.88,809116.31,185145.31,0,0,6595.4644,4064.0552 +9053,11006,19680,19679,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.7762275,7.5194468,0,27,-7,18.26885,0,2,3,2021,11,0,40,35,1,0,0,5.5843983,5.5843983,.05,.05,0,0,0,0,0,0,0,0,0,.65856904,0,50.3,56.65,43.45,38.38,3.333333333333333,1,1,0,0,9,9,5,1,777,854688.88,809116.31,185145.31,0,0,6595.4644,4064.0552 +9054,11007,19681,19682,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,8.7212782,8.7588358,0,10,0,.13886906,0,-9,-9,2021,9,1,107,107,1,1,0,6.4318662,6.4318662,.05,.05,0,0,0,0,0,19,0,0,0,0,0,56.92,41.31,46.4,39.55,10,1,1,0,0,12,5,5,0,1132.5,362349.63,9183.4844,145771.72,2240.7378,0,0,3580.3223 +9054,11007,19682,19681,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.2858615,6.9895563,0,10,0,123.07514,0,-9,-9,2021,16,4,20,20,1,4,0,8.3337545,8.3337545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.4,39.55,56.92,41.31,5,1,1,0,0,6,5,5,0,1132.5,362349.63,9183.4844,145771.72,2240.7378,0,0,3580.3223 +9055,11008,19683,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,3,0,0,0,0,0,-970.30176,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.08,42.03,-9,-9,3.333333333333333,4,2,1,0,0,8,1,0,810,251563.58,0,0,0,0,0,1888.5061 +9056,11009,19684,-9,19686,19688,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-883.33093,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19685,-9,19686,19688,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.50751,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19686,19688,-9,-9,1,0,36,1,3,0,1,1,-9,0,1,9.1076565,9.4316292,0,6,-12,95.950233,0,1,1,2021,33,12,120,60,1,12,0,8.2031965,8.2031965,0,0,0,0,0,0,0,0,0,0,0,3.0358431,0,11.24,45.24,49.44,56.93,3.333333333333333,1,1,0,0,7,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19687,-9,19686,19688,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.2937,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19688,19686,-9,-9,1,1,48,1,3,0,1,1,-9,0,4,9.4174204,9.5008583,0,6,12,.23445287,0,3,3,2021,12,2,46,45,1,2,0,38.530426,38.530426,.05,.05,0,0,0,0,0,0,0,0,0,1.7078643,0,49.44,56.93,11.24,45.24,5,1,1,0,0,7,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9057,11010,19689,-9,19690,19692,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.312,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19690,19692,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,8.2811308,8.1794024,0,15,-3,79.379684,0,2,2,2021,18,6,32,31,1,6,0,13.176717,13.176717,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,31.93,45.18,8.333333333333334,1,1,0,0,10,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19691,-9,19690,19692,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.57275,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19692,19690,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.8544893,8.7173061,0,15,3,-147.25493,0,1,1,2021,15,3,23,28,1,3,0,40.65844,40.65844,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,45.18,45.81,61.51,5,1,1,0,0,9,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9058,11011,19693,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.5556192,5.3997331,0,0,-948.32483,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5293651,63.56,36.87,-9,-9,10,1,1,0,0,0,9,2,1,312,-143723.67,0,0,0,0,0,1383.9976 +9059,11012,19694,-9,19695,19696,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.21014,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9059,11012,19695,19696,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.685709,8.6421223,0,24,3,-66.654205,0,3,-9,2021,11,0,40,39,1,1,0,14.62795,14.62795,0,0,0,0,0,0,0,2,1,1,0,0,0,49,55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9059,11012,19696,19695,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.9960737,8.8532915,0,24,-3,30.447992,0,2,2,2021,6,0,47,49,1,0,0,16.422485,16.422485,.05,.05,.05,0,0,0,0,0,1,1,0,4.5446057,0,58.15,52.91,49,55,8.333333333333334,1,1,0,0,10,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9060,11013,19697,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.9227242,5.8314891,0,0,-950.96051,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,3.7359314,.78632379,21.100367,0,1,1,0,0,5.9816866,44.35,23.51,-9,-9,5,1,1,0,0,0,5,2,1,1791,126876.52,-55862.887,57039.301,0,0,0,620.28583 +9061,11014,19698,19699,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3934021,8.6879845,0,8,3,68.428696,0,-9,-9,2021,9,0,42,43,1,1,0,12.443537,12.443537,.05,.05,0,0,0,0,0,0,1,1,0,4.56392,0,51,56,57.06,57.76,8,1,1,0,0,1,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19699,19698,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.3577847,7.5196157,0,20,-3,105.81467,0,3,3,2021,7,0,36,48,1,0,0,5.3778787,5.3778787,0,0,0,0,0,0,0,14.5,1,1,0,2.9809875,0,57.06,57.76,51,56,8.333333333333334,1,1,0,0,4,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19700,-9,19699,19698,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19701,-9,19699,19698,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.5607,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9062,11015,19702,19703,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.2029133,8.8456049,0,10,-2,-72.582458,0,2,2,2021,9,0,50,44,1,0,0,16.488647,16.488647,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,38.16,44.66,5,1,1,0,0,11,9,5,1,932,1443251.3,75498.281,930801.75,0,0,0,5383.502 +9062,11015,19703,19702,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.9571571,7.9057708,36,2,37.247581,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,4.6439705,8.3379726,38.16,44.66,46.61,56.93,3.333333333333333,1,1,0,0,8,9,5,1,932,1443251.3,75498.281,930801.75,0,0,0,5383.502 +9063,11016,19704,19705,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.1563911,7.8656397,0,2,-1,55.770164,0,-9,-9,2021,12,1,39,37,1,1,0,9.8036022,9.8036022,0,0,0,0,0,0,0,0,0,0,0,2.2517989,0,30.67,65.95,43.48,60.97,8.333333333333334,1,1,0,0,4,2,3,1,398,2764.3242,0,0,0,0,0,2122.0737 +9063,11016,19705,19704,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,2,1,-45.132675,1,-9,-9,2021,11,2,0,52,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3290186,0,43.48,60.97,30.67,65.95,6.666666666666667,1,1,0,0,2,2,3,1,398,2764.3242,0,0,0,0,0,2122.0737 +9064,11017,19706,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.751812,9.1473293,0,0,0,-1002.4468,0,2,1,2021,8,0,40,41,1,0,0,22.505173,22.505173,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.38,55.95,-9,-9,8.333333333333334,1,1,0,0,13,8,5,0,5171,364145.22,211950.7,301018.25,88793.445,0,4177.1196,2807.375 +9065,11018,19707,-9,-9,-9,1,0,50,0,0,0,2,2,1,0,3,7.7077937,7.7309284,0,0,0,-1094.6804,-9,2,1,2021,7,1,20,0,1,1,0,11.36865,11.36865,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1116,506088.81,120008.38,159143.16,0,0,0,788.133 +9065,11019,19708,-9,19707,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1076.9598,-9,2,-9,2021,7,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,339,4334.2852,0,0,0,0,0,-360.36545 +9066,11020,19709,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5619516,6.9364829,0,0,-892.25787,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8645644,57.16,56.15,-9,-9,10,1,1,0,0,0,12,2,1,529,242281.06,99968.508,190696.23,0,0,0,878.90466 +9067,11021,19710,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.3294024,6.5571799,0,0,0,-1029.0713,0,-9,-9,2021,12,0,7,8,1,0,0,8.0905724,8.0905724,0,0,0,0,0,0,0,2,1,0,1,0,0,40.09,50.73,-9,-9,5,1,1,0,0,15,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19711,-9,19710,-9,1,1,12,0,0,1,3,0,-9,0,2,0,0,0,0,0,-1116.7936,-9,-9,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19712,-9,19710,-9,1,0,10,0,0,1,3,0,-9,0,3,0,0,0,0,0,-892.44379,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19713,-9,19710,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1038.3868,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9068,11022,19714,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.77643,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.29,19.42,-9,-9,5,1,1,0,0,0,13,1,0,3457,59622.637,0,0,0,0,0,1597.1654 +9068,11023,19715,-9,19714,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1021.9417,0,2,-9,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,22.08,62.06,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,793,21850.994,0,0,0,4714.0215,0,1118.2551 +9069,11024,19716,-9,19719,19717,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4563,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19717,19719,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,9.4245214,9.5230627,0,21,12,85.831436,0,2,2,2021,8,1,42,42,1,1,0,37.302345,37.302345,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19718,-9,19719,19717,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0065,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19719,19717,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2216368,8.4640331,0,21,-12,41.492149,0,2,2,2021,9,0,40,40,1,0,0,9.6195593,9.6195593,0,0,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9070,11025,19720,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.3783627,8.1065426,0,0,0,-1125.7675,0,-9,3,2021,25,10,52,51,1,10,0,9.0854816,9.0854816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,59.91,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,730,-33062.586,103233.46,0,0,0,0,1251.6459 +9071,11026,19721,19722,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.9759655,9.1958122,0,25,13,-4.532681,-9,-9,-9,2021,10,0,37,0,1,1,0,28.189644,28.189644,0,0,0,0,0,0,0,0,1,1,0,.4072102,0,53,52,56.55,42.76,8,1,1,0,0,1,9,5,1,524,1638642.4,573721.63,594745.94,695.40961,0,0,11422.201 +9071,11026,19722,19721,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.8927326,9.5111647,0,1,-13,-70.478073,-9,2,2,2021,7,0,47,0,1,0,0,42.918167,42.918167,.05,.05,.05,0,0,0,0,0,1,1,0,3.6463125,0,56.55,42.76,53,52,8.333333333333334,1,1,0,0,8,9,5,1,524,1638642.4,573721.63,594745.94,695.40961,0,0,11422.201 +9072,11027,19723,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.5219378,6.1555209,0,0,-1009.143,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.485713,32.53,48.19,-9,-9,5,1,1,0,0,0,11,2,1,654,272367.47,72675.813,282841.91,0,0,0,1641.7676 +9073,11028,19724,19726,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.8069801,7.716866,0,18,-1,-73.670166,0,2,3,2021,5,0,31,25,1,0,0,7.1764131,7.1764131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.44,52.99,48.87,58.55,6.666666666666667,1,1,0,0,12,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9073,11028,19725,-9,19724,19726,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.12103,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9073,11028,19726,19724,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,9.0147753,9.3490744,0,18,1,-116.10999,0,1,3,2021,11,1,42,55,1,1,0,30.50609,30.50609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.44,52.99,8.333333333333334,1,1,0,0,12,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9074,11029,19727,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.4030738,7.5322466,0,0,0,-1058.9794,0,3,3,2021,9,0,25,25,1,0,0,8.5869513,8.5869513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,-9,-9,3.333333333333333,3,4,0,1,11,9,3,0,356,108164.02,-4651.8779,0,0,0,-812.90741,819.53888 +9075,11030,19728,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.4568391,5.0361738,0,0,-970.49622,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6549854,55.52,45.88,-9,-9,10,1,1,0,0,3,11,2,1,548,673637.19,0,299784.53,0,0,0,1227.6378 +9076,11031,19729,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,7.9678621,7.7672644,5.8244953,0,0,-915.74182,0,2,3,2021,6,0,4,10,1,0,0,58.918278,58.918278,0,0,0,0,0,0,0,0,1,1,0,0,6.1473193,64.64,45.93,-9,-9,10,1,1,0,1,14,9,3,1,324,1364579.6,595885.44,756447.75,0,0,0,2197.1646 +9077,11032,19730,-9,19731,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-975.48077,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,3,4,-9,0,0,7,5,0,389.5,70502.359,5860.6123,0,0,3759.9954,132.92685,1997.4304 +9077,11032,19731,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.675436,8.7288847,5.4791856,0,0,-895.76599,0,2,2,2021,8,2,38,37,1,2,0,19.380663,19.380663,0,0,.05,0,0,0,0,0,1,1,0,5.5934076,0,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,13,7,5,0,389.5,70502.359,5860.6123,0,0,3759.9954,132.92685,1997.4304 +9078,11033,19732,-9,19733,19735,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-789.37921,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19733,19735,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.1085806,8.3549662,0,19,0,18.620235,0,2,2,2021,8,0,26,23,1,0,0,16.320086,16.320086,.05,.05,0,0,0,0,0,0,1,1,0,1.522485,0,57.16,56.15,57.33,53.46,8.333333333333334,3,4,0,0,12,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19734,-9,19733,19735,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1925,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19735,19733,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.3339005,8.515007,0,19,0,122.12092,0,2,3,2021,8,0,35,40,1,0,0,19.994732,19.994732,.05,.05,0,0,0,0,0,0,1,1,0,3.4408801,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9079,11034,19736,-9,19737,19738,1,0,26,0,0,0,2,2,-9,0,3,8.2136354,8.1221437,0,0,0,-934.61169,0,2,3,2021,9,0,39,39,1,0,1,7.9309354,7.9309354,.05,.05,0,0,0,0,0,0,1,1,0,.64921767,0,46.55,58.3,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,2696,24172.012,35940.297,0,0,7789.2534,-483.38873,1155.2303 +9079,11035,19737,19738,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,9.3583889,9.2522907,0,9,-10,65.193962,0,-9,-9,2021,12,1,30,30,1,1,0,48.769367,48.769367,0,0,0,0,0,0,0,0,1,1,0,2.3460901,0,46.55,58.3,53.33,53.71,8.333333333333334,1,1,0,0,10,11,5,1,1668.5,505574.59,317423.31,129240.66,1270.5396,0,0,6680.0762 +9079,11035,19738,19737,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.0238676,7.892365,9,10,78.812157,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4987326,8.0081882,53.33,53.71,46.55,58.3,5,1,1,0,0,7,11,5,1,1668.5,505574.59,317423.31,129240.66,1270.5396,0,0,6680.0762 +9080,11036,19739,19740,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,0,0,29,-5,30.398909,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.398283,0,30.52,47.21,59.46,46.99,5,1,1,0,0,0,10,3,1,629,1424615.5,517503.25,694671.88,0,0,0,5079.1396 +9080,11036,19740,19739,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.878056,7.7550573,29,5,11.080482,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5852609,7.4429483,59.46,46.99,30.52,47.21,8.333333333333334,1,1,0,0,6,10,3,1,629,1424615.5,517503.25,694671.88,0,0,0,5079.1396 +9081,11037,19741,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,5.3113093,5.3889174,0,0,-982.61896,0,2,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5585074,5.2603188,30.44,36.36,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,925,46506,-27217.363,0,0,0,0,864.47491 +9082,11038,19742,19743,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.204607,8.0008669,0,36,3,2.4101532,0,3,3,2021,10,0,35,40,1,0,0,13.762612,13.762612,.05,.05,.05,0,0,0,0,2,0,0,0,.92032534,0,49.63,54.22,44.84,44.4,5,1,1,0,0,12,9,4,1,299,953849.75,431454.13,411786.88,0,0,0,2136.8416 +9082,11038,19743,19742,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.2063613,7.1607203,0,36,-3,-98.04525,0,2,1,2021,19,7,23,23,1,7,0,7.3332653,7.3332653,0,0,.05,0,0,0,0,0,0,0,0,4.3766155,0,44.84,44.4,49.63,54.22,8.333333333333334,1,1,0,0,12,9,4,1,299,953849.75,431454.13,411786.88,0,0,0,2136.8416 +9082,11039,19744,-9,19743,19742,1,0,29,0,0,0,1,1,-9,0,3,8.0433102,7.787384,0,0,0,-925.81921,0,2,2,2021,15,4,38,39,1,4,1,9.5485344,9.5485344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.2,57.77,-9,-9,3.333333333333333,1,1,0,0,8,9,4,1,229,-63983.961,-42577.176,0,0,0,0,1407.7686 +9083,11040,19745,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.4244061,8.123353,0,0,0,-1079.7772,0,-9,-9,2021,12,0,40,37,1,0,0,11.253282,11.253282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.58,58.88,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,1526,-211165.31,0,0,0,5344.2144,5038.7422,1396.399 +9084,11041,19746,19747,-9,-9,1,1,95,0,0,0,1,1,-9,0,3,0,8.3026514,8.3170042,42,21,75.507721,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,5.1552348,0,0,1,1,0,3.7979517,7.7437673,29.37,47.76,57.16,56.15,5,1,1,0,0,0,7,4,1,885,0,0,0,0,0,0,4331.8062 +9084,11041,19747,19746,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.257926,8.1329355,42,-21,-61.464272,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6408248,8.2893572,57.16,56.15,29.37,47.76,10,1,1,0,0,0,7,4,1,885,0,0,0,0,0,0,4331.8062 +9085,11042,19748,-9,19749,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.8005,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,1392.5,-35942.934,30861.369,0,0,0,0,1889.2776 +9085,11042,19749,-9,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3970118,8.7443275,0,0,0,-1115.4508,0,-9,-9,2021,12,0,45,45,1,2,0,12.358401,12.358401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,10,4,4,1,1392.5,-35942.934,30861.369,0,0,0,0,1889.2776 +9086,11043,19750,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,7.4838185,7.6008005,0,0,0,-992.94336,0,-9,-9,2021,3,0,33,30,1,0,0,11.08392,11.08392,.05,.05,0,0,0,0,0,0,0,0,0,6.0663075,0,43.57,43.17,-9,-9,0,1,1,0,0,10,10,3,1,226,27097.244,12711.527,0,0,0,0,502.92484 +9087,11044,19751,19752,-9,-9,1,0,63,0,0,0,2,2,-9,1,2,7.8401318,7.9737096,0,38,-11,97.127731,0,3,3,2021,21,9,38,38,1,9,0,5.9542618,5.9542618,0,0,0,0,0,0,0,0,1,0,1,2.9534128,0,26.34,51.67,35.8,38.24,0,1,1,0,0,13,2,4,1,1295.5,1237120.1,1085297,171689.41,0,519.39313,0,4794.3276 +9087,11044,19752,19751,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,8.0956154,8.1241808,34,11,-46.01757,0,3,3,2021,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.6180148,7.853076,35.8,38.24,26.34,51.67,6.666666666666667,1,1,0,0,0,2,4,1,1295.5,1237120.1,1085297,171689.41,0,519.39313,0,4794.3276 +9088,11045,19753,19754,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.8185749,5.949904,38,0,14.825098,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,5.4760885,3.5361369,64.863808,7,1,1,0,0,6.5285759,51.5,26.51,43.21,22.28,6.666666666666667,1,1,0,0,0,10,2,1,601,603688.88,149136.33,286341.31,0,0,2133.7273,2206.0112 +9088,11045,19754,19753,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,38,0,-16.249193,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,2.0701134,0,2,1,1,0,0,0,43.21,22.28,51.5,26.51,8.333333333333334,1,1,0,0,0,10,2,1,601,603688.88,149136.33,286341.31,0,0,2133.7273,2206.0112 +9089,11046,19755,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1061.5985,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,36.86,-9,-9,5,1,1,0,0,0,4,1,0,1488,60969.914,0,0,0,0,0,761.65826 +9090,11047,19756,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.0185719,7.8639789,0,0,-943.84106,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9599123,56.58,45.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,845,720638.19,363424.66,286335.41,0,0,0,2584.0693 +9091,11048,19757,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.9706912,7.4563208,0,0,-1023.7008,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.450182,8.1124773,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1733,868275.19,250423.09,356094.88,0,0,0,2350.1575 +9092,11049,19758,19759,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.870183,8.7868299,0,35,-1,-199.33591,0,2,2,2021,7,0,38,38,1,0,0,22.520395,22.520395,.05,.05,0,0,0,0,0,27,0,0,0,0,0,58.76,52.91,54.96,53.17,8.333333333333334,1,1,0,0,14,11,5,1,518.5,930935.13,783513.25,265933.78,0,0,0,4244.0801 +9092,11049,19759,19758,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4651546,8.3897381,0,35,1,4.4476118,0,2,3,2021,8,0,38,38,1,0,0,14.361695,14.361695,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.76,52.91,8.333333333333334,1,1,0,0,14,11,5,1,518.5,930935.13,783513.25,265933.78,0,0,0,4244.0801 +9093,11050,19760,19761,-9,-9,1,1,58,0,3,0,3,3,-9,1,2,0,5.3478632,5.0905976,12,19,11.643825,0,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8275518,20.28,42.63,57.16,56.15,5,2,3,1,0,6,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19761,19760,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,8,-19,-27.691687,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,20.28,42.63,10,2,3,0,0,1,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19762,-9,19761,19760,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.4696,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19763,-9,19761,19760,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.59564,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19764,-9,19761,19760,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.5163,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9094,11051,19765,19766,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,1,-12,0,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.265655,0,46,50,50,49,7,1,1,0,1,0,4,1,0,721,145700.83,0,119515.75,0,0,0,2198.0054 +9094,11051,19766,19765,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,1,12,0,-9,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,49,46,50,6,1,1,0,0,0,4,1,0,721,145700.83,0,119515.75,0,0,0,2198.0054 +9095,11052,19767,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.8416657,7.7752995,0,0,-1042.8634,0,3,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5578351,41.24,45.79,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1520,565544.94,269643,179423.48,0,0,0,1507.7904 +9096,11053,19768,-9,19769,19772,1,0,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-939.12469,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19769,19772,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,7.908669,7.9671192,5.8961444,1,-1,21.257801,-9,1,1,2021,18,6,37,0,1,6,0,8.5228519,8.5228519,.05,.05,0,0,0,0,0,0,1,1,0,6.5469084,0,44.55,60.42,55.34,54.26,8.333333333333334,1,1,0,0,9,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19770,-9,19769,19772,1,0,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.37787,-9,2,2,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.61,60.88,-9,-9,6.666666666666667,1,1,0,1,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19771,-9,19769,19772,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-907.62695,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19772,19769,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.4659452,8.6665907,0,1,1,57.345428,-9,-9,-9,2021,6,1,37,0,1,1,0,21.461285,21.461285,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,44.55,60.42,6.666666666666667,1,1,0,0,6,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9097,11054,19773,-9,19774,19775,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1073.9961,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11054,19774,19775,-9,-9,1,0,49,0,1,0,2,2,-9,1,4,0,0,0,28,-6,0,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,54,53,54,8,2,3,0,1,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11054,19775,19774,-9,-9,1,1,55,0,1,0,3,3,-9,1,4,0,0,0,28,6,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11055,19776,-9,19774,19775,1,1,23,0,1,0,2,2,-9,0,4,8.0145264,7.8035202,0,0,0,-1024.4641,0,3,3,2021,10,0,15,15,1,1,1,21.225082,21.225082,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,3,0,375,63829.316,0,0,0,0,0,380.2001 +9097,11056,19777,-9,19774,19775,1,0,22,0,1,0,2,2,-9,0,3,7.9149961,8.0487547,0,0,0,-1069.2941,0,3,3,2021,11,0,39,10,1,0,1,10.33199,10.33199,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,49.4,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,479,209441.78,0,0,0,1334.6718,0,1482.9452 +9098,11057,19778,19779,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8373489,8.7582798,0,1,0,0,-9,2,2,2021,6,0,45,0,1,0,0,13.326364,13.326364,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,57.64,8.333333333333334,1,1,0,0,3,7,5,1,962,1939794.8,1645665.8,321738.31,96394.047,1368.5377,0,4957.7461 +9098,11057,19779,19778,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9310293,8.9042902,0,22,0,0,-9,2,2,2021,12,0,50,0,1,0,0,20.612688,20.612688,0,0,0,0,0,0,0,0,0,0,0,3.0607669,0,48.77,57.64,57.16,56.15,1.666666666666667,1,1,0,0,9,7,5,1,962,1939794.8,1645665.8,321738.31,96394.047,1368.5377,0,4957.7461 +9098,11058,19780,-9,19779,19778,1,0,20,0,0,0,2,2,-9,0,4,8.1300631,7.6382852,0,0,0,-859.78094,-9,1,2,2021,12,0,60,0,1,0,1,5.4075756,5.4075756,.05,.05,0,0,0,0,0,0,0,0,0,1.9082303,0,41.49,60.87,-9,-9,6.666666666666667,1,1,0,0,2,7,4,1,242,29483.986,14712.742,0,0,0,0,1557.8639 +9099,11059,19781,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.5952959,4.9886179,0,0,-1045.3429,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.417944,4.6712651,51,46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,604,568773.81,0,353241.47,0,0,0,450.89984 +9099,11060,19782,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.702795,6.6033773,0,0,-912.06848,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3536277,53,46,-9,-9,7,1,1,0,0,0,5,2,0,563,349828.28,36359.395,0,0,0,0,2072.512 +9100,11061,19783,19784,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.8662472,8.6517925,0,4,4,-15.194613,0,2,2,2021,10,1,37,40,1,1,0,17.482962,17.482962,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,42.73,58.53,8.333333333333334,1,1,0,0,6,9,5,1,1291,237103.72,66215.094,0,0,0,0,3864.7146 +9100,11061,19784,19783,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7859745,8.6818962,0,4,-4,121.75307,0,-9,-9,2021,11,1,40,37,1,1,0,18.132519,18.132519,0,0,0,0,0,0,0,0,0,0,0,4.3054442,0,42.73,58.53,49.25,61.25,6.666666666666667,1,1,0,0,4,9,5,1,1291,237103.72,66215.094,0,0,0,0,3864.7146 +9101,11062,19785,19786,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.4250517,8.6020861,0,34,2,76.135788,0,3,3,2021,12,0,50,50,1,0,0,11.630177,11.630177,0,0,0,0,0,0,0,2,1,1,0,0,0,37.36,58.26,50.89,20.14,3.333333333333333,1,1,0,1,15,8,5,1,653.5,3441584.5,1110944,737799.13,0,0,0,3738.2441 +9101,11062,19786,19785,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,7.5487919,7.6701412,0,34,-2,63.188698,0,2,2,2021,12,1,20,20,1,1,0,10.557264,10.557264,0,0,0,0,0,0,0,2,1,1,0,6.4445481,0,50.89,20.14,37.36,58.26,8.333333333333334,2,3,0,0,14,8,5,1,653.5,3441584.5,1110944,737799.13,0,0,0,3738.2441 +9102,11063,19787,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.4149714,8.1532011,0,0,0,-1066.0587,0,-9,-9,2021,12,4,40,40,1,4,0,12.794471,12.794471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.65,27.56,-9,-9,5,1,1,0,0,10,2,5,1,158,58752.313,64498.059,0,0,1403.4635,0,2768.7966 +9103,11064,19788,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.0576248,9.3954,0,0,0,-1014.0082,0,2,2,2021,7,0,40,37,1,0,0,31.889893,31.889893,.05,.05,0,0,0,0,1.435493,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,764,973379,769454.56,198675.77,54170.223,14229.242,0,4211.8838 +9104,11065,19789,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1030.3212,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.92,22.81,-9,-9,3.333333333333333,1,1,0,1,0,13,1,1,4089,102218.74,0,0,0,0,0,704.62756 +9105,11066,19790,19791,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,51,7,0,0,-9,3,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,24.717354,0,0,1,1,0,0,0,42,23,57.34,50.6,8.333333333333334,1,1,0,0,0,5,1,1,3784.5,341111.75,-16590.584,277959.75,0,0,0,715.97681 +9105,11066,19791,19790,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,51,-7,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,57.34,50.6,42,23,10,1,1,0,0,0,5,1,1,3784.5,341111.75,-16590.584,277959.75,0,0,0,715.97681 +9106,11067,19792,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.0108089,7.9354944,0,0,0,-1065.468,0,-9,-9,2021,32,12,52,46,1,12,0,5.3568888,5.3568888,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.98,53.63,-9,-9,3.333333333333333,1,1,0,1,8,6,4,0,1298,92387.867,98913.742,0,0,4064.2725,0,1118.9825 +9106,11068,19793,-9,19792,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-863.26062,-9,3,-9,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,52.45,-9,-9,5,1,1,0,0,0,6,1,0,97,-67257.992,0,0,0,0,0,0 +9107,11069,19794,19795,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.1978683,7.0689502,46,3,-66.059563,0,1,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7739661,6.8871861,35.52,53.53,32.54,55.45,6.666666666666667,1,1,0,0,0,10,3,1,513,1771474.1,904872.56,561320.25,0,0,0,3528.8699 +9107,11069,19795,19794,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.7946663,7.8369551,46,-3,36.934013,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.384583,7.840198,32.54,55.45,35.52,53.53,6.666666666666667,1,1,0,0,4,10,3,1,513,1771474.1,904872.56,561320.25,0,0,0,3528.8699 +9108,11070,19796,19797,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,53,0,0,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,39.3,35.89,39.26,18.84,3.333333333333333,1,1,0,0,0,7,1,0,3017,-143626.73,0,0,0,0,0,1773.7882 +9108,11070,19797,19796,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,53,0,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,126.4419,0,0,1,1,0,1.764693,0,39.26,18.84,39.3,35.89,3.333333333333333,1,1,0,0,0,7,1,0,3017,-143626.73,0,0,0,0,0,1773.7882 +9109,11071,19798,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.14429,0,3,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,23.66,-9,-9,0,1,1,0,0,0,12,1,0,856,-338666.38,0,0,0,0,0,1459.9742 +9110,11072,19799,19800,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.8861709,4.9172125,58,1,12.691506,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.0458913,4.8683252,48.45,57.49,57.92,51.82,10,1,1,0,0,0,9,2,1,1163,193912.61,-689.10742,209875.88,0,0,0,390.40845 +9110,11072,19800,19799,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-1,78.109268,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.92,51.82,48.45,57.49,5,1,1,0,0,0,9,2,1,1163,193912.61,-689.10742,209875.88,0,0,0,390.40845 +9111,11073,19801,19802,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.1911397,6.7917094,55,7,-30.305414,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9278421,63.1,42.39,66.37,22.3,10,1,1,0,0,0,10,2,1,715,688814.88,94909.125,335491.56,0,0,0,2076.4707 +9111,11073,19802,19801,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.8301716,6.3483615,55,-7,-95.81926,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0224519,66.37,22.3,63.1,42.39,8.333333333333334,1,1,0,0,0,10,2,1,715,688814.88,94909.125,335491.56,0,0,0,2076.4707 +9112,11074,19803,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,9.758749,10.059817,8.394908,0,0,-1146.8507,0,3,2,2021,10,0,7,50,1,0,0,341.08978,341.08978,.05,.05,0,0,0,0,0,0,1,1,0,8.9029522,8.6522846,61.43,43.34,-9,-9,5,1,1,0,0,10,10,5,1,308,1638335.4,1400061.3,203877,120804.65,0,0,9311.4131 +9113,11075,19804,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-958.95093,1,-9,-9,2021,18,7,0,40,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,6.666666666666667,1,1,0,1,2,4,1,0,221,-177144.25,0,0,0,0,0,0 +9114,11076,19805,19806,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.9360189,8.3298054,6.7741227,31,6,-27.595181,0,3,2,2021,10,0,37,37,1,0,0,9.1704712,9.1704712,0,0,0,0,0,0,0,0,0,0,0,7.4450216,7.3366952,56.33,51.02,54.79,55.86,0,1,1,0,0,11,11,5,1,507,2466588,1937224.3,186776.84,0,0,0,4502.2295 +9114,11076,19806,19805,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,8.5497808,8.7984514,32,-6,93.512154,0,2,2,2021,8,0,0,40,4,0,0,0,0,0,0,0,0,0,0,1.3272917,0,0,0,0,8.4591293,8.5250988,54.79,55.86,56.33,51.02,8.333333333333334,1,1,0,0,10,11,5,1,507,2466588,1937224.3,186776.84,0,0,0,4502.2295 +9114,11077,19807,-9,19806,19805,1,1,21,0,0,0,2,2,-9,0,3,7.9131036,8.182395,0,0,0,-957.12274,0,1,1,2021,12,0,48,41,1,2,1,6.7807698,6.7807698,0,0,0,0,0,0,0,0,0,0,0,0,0,24.29,57.94,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,1115,80172.641,0,0,0,0,0,447.20169 +9115,11078,19808,19809,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3806438,8.3121796,0,2,-4,32.645447,-9,-9,-9,2021,7,0,35,0,1,0,0,15.323404,15.323404,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.9,60.29,52.11,10,1,1,0,0,12,2,5,1,1709.5,259561.7,-22529.449,84247.875,51219.07,1919.2653,0,2912.7979 +9115,11078,19809,19808,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5971279,7.9888248,0,2,4,-57.957981,0,3,2,2021,7,0,38,37,1,0,0,12.584141,12.584141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,64.64,45.9,8.333333333333334,1,1,0,0,10,2,5,1,1709.5,259561.7,-22529.449,84247.875,51219.07,1919.2653,0,2912.7979 +9116,11079,19810,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-913.41077,0,3,3,2021,12,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49.14,51.53,-9,-9,6.666666666666667,1,1,0,0,14,13,1,1,182,411714.22,131490.84,249930.5,0,0,0,-38.145809 +9117,11080,19811,19812,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,6.7847533,6.8539863,5.1315804,6,-6,106.32525,0,-9,-9,2021,13,6,14,14,1,6,0,6.638474,6.638474,0,0,0,0,0,0,0,0,1,1,0,5.2844968,5.2663946,48.27,33.43,54,46,8.333333333333334,1,1,0,0,9,4,3,1,313,569412.38,438526.78,123499.5,0,0,0,6536.915 +9117,11080,19812,19811,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,8.0142279,8.1234589,6,6,-62.207344,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3747196,8.441412,54,46,48.27,33.43,8,4,1,0,0,0,4,3,1,313,569412.38,438526.78,123499.5,0,0,0,6536.915 +9118,11081,19813,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.7632122,7.8286347,0,0,0,-986.92352,0,-9,-9,2021,7,0,38,38,1,0,0,7.3785558,7.3785558,0,0,0,0,0,0,0,0,0,0,0,2.6033547,0,62.39,56.71,-9,-9,0,1,1,0,0,10,12,4,0,96,-37076.559,90585.07,0,0,0,0,1055.9178 +9119,11082,19814,19815,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.5780973,6.5906725,0,8,0,-97.299355,0,3,1,2021,9,0,40,30,1,0,0,2.5211427,2.5211427,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,13,13,3,1,610,241828.67,51690.508,0,0,5755.5566,2678.8853,889.38696 +9119,11082,19815,19814,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,7.4552164,7.4938588,8,0,22.604055,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,7.684238,50.03,52.62,57.16,56.15,5,1,1,0,0,13,13,3,1,610,241828.67,51690.508,0,0,5755.5566,2678.8853,889.38696 +9119,11083,19816,-9,19814,19815,1,1,20,0,0,0,2,2,1,0,2,7.0995889,7.2577014,0,0,0,-966.63,-9,1,1,2021,17,5,38,0,1,5,1,3.4959929,3.4959929,0,0,0,0,0,0,0,0,1,1,0,5.7300782,0,39.25,43.32,-9,-9,5,1,1,0,0,2,13,2,1,1814,6154.1284,0,0,0,0,0,237.49266 +9120,11084,19817,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,7.7240224,7.7020555,35,0,101.60302,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.1185217,7.6504903,58.44,35.51,52,48,10,1,1,0,0,9,7,4,1,817,721866.44,226980.56,262855.78,0,0,0,1674.8121 +9120,11085,19818,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1601772,7.8992229,0,37,0,9.5199108,0,-9,-9,2021,10,0,40,41,1,1,0,10.984753,10.984753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,48,58.44,35.51,7,1,1,0,0,1,7,4,1,2229,358736.44,89963.641,0,0,0,0,2501.9319 +9121,11086,19819,19820,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,0,0,0,1,-6,77.232475,-9,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6380057,0,38.36,61,45.04,47.98,10,2,3,0,0,2,2,2,0,435.5,1043982.3,46338.676,415580.38,36044.891,0,0,1162.8179 +9121,11086,19820,19819,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.202538,7.2127275,0,13,6,-34.235462,-9,3,3,2021,18,5,70,0,1,5,0,2.2668705,2.2668705,.05,.05,0,0,0,0,0,0,0,0,0,2.9271429,0,45.04,47.98,38.36,61,10,2,3,0,0,7,2,2,0,435.5,1043982.3,46338.676,415580.38,36044.891,0,0,1162.8179 +9122,11087,19821,19822,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.7627697,7.5221925,0,39,-3,54.895592,0,-9,2,2021,11,0,24,24,1,0,0,9.5002985,9.5002985,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,45.58,47.97,54.87,15.54,8.333333333333334,1,1,0,0,10,6,3,1,1342,1726077,1305470.5,313526.63,0,4867.6895,0,1904.1724 +9122,11087,19822,19821,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.0779581,6.8684254,39,3,-30.555475,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.2645197,9.5679693,18.964199,0,1,1,0,0,7.420804,54.87,15.54,45.58,47.97,6.666666666666667,1,1,0,0,0,6,3,1,1342,1726077,1305470.5,313526.63,0,4867.6895,0,1904.1724 +9123,11088,19823,-9,19825,19826,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4009,-9,3,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19824,-9,19825,19826,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.01031,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19825,19826,-9,-9,1,0,38,1,3,0,3,3,-9,0,3,0,0,0,12,2,-91.886696,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,48.28,60.18,6.666666666666667,1,1,0,0,2,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19826,19825,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.6012516,9.6026497,0,14,-2,-5.7770605,0,2,3,2021,9,0,40,40,1,0,0,33.731873,33.731873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,46.61,56.93,6.666666666666667,1,1,0,0,7,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19827,-9,19825,19826,1,0,12,1,3,1,3,0,-9,0,3,0,0,0,0,0,-919.25336,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9124,11089,19828,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.43335,0,-9,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36,27,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,495,59323.188,-56908.523,58084.023,0,0,0,1245.3973 +9125,11090,19829,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.6370149,7.7548108,0,0,0,-1118.8013,0,2,2,2021,22,10,22,37,1,10,0,11.028958,11.028958,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.92,67.76000000000001,-9,-9,3.333333333333333,1,1,0,1,8,11,3,0,186,-135788.11,-158498.75,134208.94,0,0,0,1182.2725 +9126,11091,19830,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.9049864,8.8050632,0,0,0,-1042.6161,0,3,3,2021,15,4,44,41,1,4,0,17.6385,17.6385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,3,4,0,0,11,8,5,0,4312,-163513.58,114339.5,0,0,0,0,1645.9115 +9127,11092,19831,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.95483,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,55.42,-9,-9,6.666666666666667,1,1,0,0,3,9,1,0,178,-177127.56,0,0,0,0,0,0 +9128,11093,19832,-9,-9,-9,1,0,37,0,1,0,3,3,-9,0,5,7.0993123,7.3349748,0,0,0,-1041.285,0,2,2,2021,6,0,40,39,1,0,0,4.3491149,4.3491149,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,5,1,1,0,0,7,5,3,0,650.5,76004.039,80151.344,116619.26,72534.672,0,0,1730.9119 +9128,11093,19833,-9,19832,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-983.30139,-9,3,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,3,0,650.5,76004.039,80151.344,116619.26,72534.672,0,0,1730.9119 +9128,11094,19834,-9,19832,-9,1,0,20,0,1,0,2,2,-9,0,4,6.3218369,6.8730397,0,0,0,-960.32721,-9,3,-9,2021,6,1,40,0,1,1,1,1.8951839,1.8951839,0,0,0,0,0,0,0,0,1,0,1,0,0,66.68000000000001,39.44,-9,-9,6.666666666666667,1,1,0,0,4,5,2,0,209,90734.813,0,0,0,-349.22772,259.09149,412.19495 +9129,11095,19835,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,3.6123164,3.9167523,0,0,-1077.5043,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9631662,3.629096,60.02,56.42,-9,-9,10,1,1,0,0,0,13,2,1,386,174324.16,102567.94,22797.127,0,0,-457.81348,392.80426 +9130,11096,19836,19837,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.7356763,7.7530684,52,2,-52.108444,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.361886,7.615581,51.65,39.74,54.21,49.46,8.333333333333334,1,1,0,0,0,9,3,1,1067,1068180.5,399394.25,332839.53,0,0,0,3238.2434 +9130,11096,19837,19836,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.9121656,7.3180394,52,-2,64.021507,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.202466,7.5165577,54.21,49.46,51.65,39.74,8.333333333333334,1,1,0,0,0,9,3,1,1067,1068180.5,399394.25,332839.53,0,0,0,3238.2434 +9131,11097,19838,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0866785,8.2391815,0,0,0,-927.66956,0,2,2,2021,6,0,28,28,1,0,0,10.236909,10.236909,.05,.05,0,0,0,0,0,0,1,1,0,3.1405883,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,2109,39325.156,115748.51,121689.45,58613.109,0,0,1819.3748 +9132,11098,19839,19840,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3968854,7.8401875,47,-2,105.82093,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8784208,46.16,54.36,52,54.51,8.333333333333334,1,1,0,0,0,6,4,1,423.5,2034558.9,666046.5,596310.63,0,0,0,3419.5554 +9132,11098,19840,19839,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8796754,7.6688471,47,2,186.12538,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0647638,7.7462721,52,54.51,46.16,54.36,5,1,1,0,0,0,6,4,1,423.5,2034558.9,666046.5,596310.63,0,0,0,3419.5554 +9133,11099,19841,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.9576554,7.811842,0,0,0,-1123.3607,0,2,-9,2021,6,0,40,38,1,0,0,8.7355433,8.7355433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,1009,134310.22,2497.8667,61254.445,33740.129,0,0,1954.7217 +9134,11100,19842,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.6327887,7.8797631,6.2733855,0,0,-1092.85,0,1,3,2021,8,0,28,25,1,0,0,9.7247381,9.7247381,.05,.05,0,0,0,0,0,0,0,0,0,0,5.9087706,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,604,29151.818,-77013.664,0,0,0,0,1902.1332 +9135,11101,19843,-9,19844,19845,1,0,46,0,0,0,2,2,-9,0,3,7.4339538,7.8709188,0,0,0,-1166.9973,0,2,2,2021,18,7,43,45,1,7,0,4.2625427,4.2625427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.59,41.04,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,673,53318.719,-52027.996,0,0,0,0,1275.8627 +9135,11102,19844,19845,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.6912355,4.673717,7,0,-74.596176,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1369457,4.5602694,61.43,43.34,62.18,36.18,8.333333333333334,1,1,0,0,0,9,2,1,2425,396292.53,108895.8,272221.31,0,0,0,1833.6416 +9135,11102,19845,19844,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,4.9782481,5.1376081,7,0,-94.533409,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,.10617376,0,1,1,0,4.5970917,5.0922279,62.18,36.18,61.43,43.34,8.333333333333334,1,1,0,0,0,9,2,1,2425,396292.53,108895.8,272221.31,0,0,0,1833.6416 +9136,11103,19846,19847,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4235058,8.4385195,0,7,5,24.083923,0,-9,-9,2021,9,0,38,39,1,1,0,13.49159,13.49159,0,0,.05,0,0,0,0,0,0,0,0,4.5488334,0,53,54,46.67,55.57,8,1,1,0,0,1,10,5,1,1373.5,693305.75,221462,370165.5,68785.672,2301.8372,0,3800.3101 +9136,11103,19847,19846,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9017696,8.1598043,0,13,-5,-29.035625,0,3,2,2021,4,0,44,47,1,0,0,7.8953042,7.8953042,0,0,0,0,0,0,0,27,0,0,0,3.7821507,0,46.67,55.57,53,54,10,1,1,0,0,8,10,5,1,1373.5,693305.75,221462,370165.5,68785.672,2301.8372,0,3800.3101 +9137,11104,19848,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8010206,9.140974,0,0,0,-976.4884,0,2,1,2021,11,0,43,43,1,0,0,25.475693,25.475693,.05,.05,0,0,0,0,0,0,0,0,0,4.7556014,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,630,1040859,853520.69,234302.34,0,18556.303,0,2198.5122 +9138,11105,19849,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8185506,7.8065419,0,0,0,-978.58368,-9,-9,-9,2021,15,3,39,0,1,3,0,7.96663,7.96663,0,0,0,0,0,0,0,0,0,0,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,7,7,3,0,292,-246494.83,0,0,0,0,0,1504.3704 +9139,11106,19850,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,8.1541233,8.0199413,7,0,56.614223,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8506337,8.0606375,54.77,31.94,50.75,39.21,8.333333333333334,1,1,0,0,0,4,4,1,298,587549.13,333369.25,286733.84,0,0,0,1642.7828 +9139,11107,19851,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.5264139,7.9468675,7,0,13.083984,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6164374,7.1642313,50.75,39.21,54.77,31.94,10,1,1,0,0,7,4,4,1,1179,746284.56,623362.06,178539.91,0,6059.7661,3284.8049,1450.1965 +9140,11108,19852,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.5904608,8.6939964,0,0,0,-980.7655,0,1,1,2021,15,3,40,42,1,3,0,17.602648,17.602648,.05,.05,0,0,0,0,0,0,1,1,0,5.4711971,0,42.61,49.31,-9,-9,3.333333333333333,1,1,0,0,11,4,5,1,416,264453.09,307445.72,111254.66,0,0,6943.8643,2044.0039 +9141,11109,19853,-9,19854,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8365,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,428.5,49186.656,46118.602,71925.016,15818.799,0,0,2707.8662 +9141,11109,19854,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.9868641,8.9958153,6.0748744,0,0,-1065.7966,0,2,3,2021,8,1,38,38,1,1,0,24.705368,24.705368,0,0,0,0,0,0,0,0,1,1,0,6.3595691,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,428.5,49186.656,46118.602,71925.016,15818.799,0,0,2707.8662 +9142,11110,19855,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4986515,8.0090971,0,0,0,-1070.6655,0,2,2,2021,14,2,60,50,1,2,0,8.190484,8.190484,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,9,9,4,0,858,157413.91,0,0,0,0,0,1283.5406 +9143,11111,19856,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.6280208,5.5524693,0,0,-1018.2313,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7641563,5.9135027,50.06,44.82,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1627,360192.84,138254.2,0,0,0,0,1314.8889 +9144,11112,19857,19859,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.5138483,8.3748264,0,8,1,23.007284,0,2,1,2021,6,1,39,21,1,1,0,12.244755,12.244755,0,0,0,0,0,0,0,0,1,1,0,0,0,54.49,50.46,42.22,56.11,8.333333333333334,1,1,0,0,10,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9144,11112,19858,-9,19857,19859,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.46686,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9144,11112,19859,19857,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.7548265,8.632575,0,8,-1,-29.889336,0,3,2,2021,13,1,35,55,1,1,0,22.058168,22.058168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,54.49,50.46,8.333333333333334,1,1,0,0,10,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9145,11113,19860,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.1745358,7.9864278,0,0,0,-915.19025,-9,-9,-9,2021,23,11,41,0,1,11,0,8.4291706,8.4291706,0,0,0,0,0,0,0,0,1,1,0,0,0,1.94,70.82000000000001,-9,-9,5,1,1,0,0,3,12,4,0,421,161257.5,74516.773,0,0,0,0,746.25592 +9146,11114,19861,-9,19863,19864,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.5899,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19862,-9,19863,19864,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.98096,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19863,19864,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.6629758,7.4910097,0,22,-1,133.98479,0,2,2,2021,11,0,16,17,1,0,0,12.97261,12.97261,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.97,51.29,53.75,59.47,6.666666666666667,1,1,0,0,8,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19864,19863,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.1756411,8.927846,0,22,1,-7.272181,0,-9,-9,2021,7,0,60,60,1,0,0,16.520296,16.520296,.05,.05,0,0,0,0,0,2,1,1,0,3.184449,0,53.75,59.47,52.97,51.29,8.333333333333334,1,1,0,0,9,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9147,11115,19865,19866,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,4.0258875,4.3073015,10,6,111.83528,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.294631,4.2032495,53.17,43.67,57.33,53.46,6.666666666666667,1,1,0,0,0,2,2,1,890,131750.73,1330.75,120067.9,0,0,0,1586.476 +9147,11115,19866,19865,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,10,-6,44.861774,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1203771,0,57.33,53.46,53.17,43.67,6.666666666666667,1,1,0,0,0,2,2,1,890,131750.73,1330.75,120067.9,0,0,0,1586.476 +9148,11116,19867,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,5,0,7.6004262,7.7521319,0,0,-990.25836,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7721014,7.6199536,58.2,48.99,-9,-9,10,1,1,0,0,0,1,3,1,981,725581.56,165807.25,267513.34,0,0,0,2340.9192 +9149,11117,19868,19869,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.1385632,9.1657495,0,13,-4,-37.30294,-9,3,1,2021,11,1,55,0,1,1,0,21.648071,21.648071,.05,.05,0,0,0,0,0,0,0,0,0,1.2076261,0,51.49,57.57,34.51,38.58,6.666666666666667,1,1,0,0,13,9,5,1,298,551622.44,292178.44,433130.81,140000.7,0,4897.5249,5070.6782 +9149,11117,19869,19868,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,13,4,93.954071,-9,3,1,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.084548,0,34.51,38.58,51.49,57.57,5,1,1,1,0,8,9,5,1,298,551622.44,292178.44,433130.81,140000.7,0,4897.5249,5070.6782 +9150,11118,19870,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-988.27014,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.76,40.54,-9,-9,5,1,1,0,0,8,12,2,1,215,147818.8,0,0,0,0,0,746.93524 +9151,11119,19871,19872,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5991974,8.4761019,0,19,5,-8.8539047,0,2,3,2021,14,4,38,38,1,4,0,14.396121,14.396121,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,41.34,37.2,46.98,59.35,8.333333333333334,1,1,0,0,14,10,5,1,541.5,1563427.8,1081595.4,441805.56,0,-463.42545,0,4383.2324 +9151,11119,19872,19871,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.8449612,9.0018053,0,19,-5,-.35173044,0,2,3,2021,11,0,3,41,1,0,0,262.77124,262.77124,0,0,0,0,0,0,0,0,0,0,0,3.076719,0,46.98,59.35,41.34,37.2,6.666666666666667,1,1,0,0,12,10,5,1,541.5,1563427.8,1081595.4,441805.56,0,-463.42545,0,4383.2324 +9152,11120,19873,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1175117,8.2912369,0,0,0,-1090.5787,0,2,1,2021,11,0,35,35,1,0,0,10.434258,10.434258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.49,54.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,0,179,152295.05,-32640.266,633543.75,428427.09,0,561.66608,1274.9506 +9153,11121,19874,19875,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.8031464,7.2346702,0,10,-6,70.439415,0,-9,-9,2021,12,0,31,-9,1,0,0,7.7012401,7.7012401,.05,.05,0,0,0,0,0,0,0,0,0,1.9427183,0,28.3,22.31,54.58,46.41,1.666666666666667,4,5,0,1,2,7,5,0,1667.5,211421.63,202588.17,0,0,0,0,4668.7295 +9153,11121,19875,19874,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.5607033,8.6752214,7.2245932,10,6,95.070137,0,2,1,2021,12,0,43,-9,1,0,0,12.50426,12.50426,.05,.05,0,0,0,0,0,0,0,0,0,8.4422865,7.2833209,54.58,46.41,28.3,22.31,5,1,1,0,0,14,7,5,0,1667.5,211421.63,202588.17,0,0,0,0,4668.7295 +9154,11122,19876,-9,-9,-9,1,1,40,0,1,0,1,1,-9,1,2,8.1964378,8.1090384,0,0,0,-896.34717,0,2,2,2021,16,6,48,48,1,6,0,10.758152,10.758152,.05,.05,.05,0,0,0,0,0,1,1,0,1.3025832,0,23.64,47.83,-9,-9,3.333333333333333,1,1,0,1,13,4,4,1,1153,222870.91,97684.938,97924.234,43886.695,0,0,2476.0146 +9154,11122,19877,-9,19878,19876,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.69897,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1153,222870.91,97684.938,97924.234,43886.695,0,0,2476.0146 +9154,11123,19878,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.4403658,8.1273365,0,0,0,-943.88983,0,-9,-9,2021,23,11,53,38,1,11,0,9.9926672,9.9926672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.39,64.96000000000001,-9,-9,3.333333333333333,1,1,0,0,12,4,4,1,457,72866.203,-11925.713,0,0,0,1537.7922,2806.7954 +9155,11124,19879,-9,19881,19880,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-911.53552,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9155,11124,19880,19881,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.3989697,8.2726593,0,4,3,52.740627,0,-9,-9,2021,13,1,43,43,1,1,0,9.6893549,9.6893549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,58.32,50.22,5,1,1,0,0,3,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9155,11124,19881,19880,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,8.3105774,8.1169348,0,4,-3,6.2218342,0,2,1,2021,10,0,50,50,1,0,0,8.3814678,8.3814678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,45.91,59.89,6.666666666666667,1,1,0,0,11,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9156,11125,19882,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,3.9864438,3.9824996,0,0,-1051.8912,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3671885,4.2100744,59.31,33.75,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,381,-51365.773,-52709.316,112939.51,54723.648,0,0,1200.8834 +9157,11126,19883,19884,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1027155,8.2244034,35,-2,76.47007,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7314682,7.84267,60.3,46.58,57.33,53.46,10,1,1,0,0,0,7,3,1,447.5,2633812.5,854155.5,1428585.8,0,0,0,3471.4482 +9157,11126,19884,19883,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,12,2,-72.53154,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5571709,0,57.33,53.46,60.3,46.58,10,1,1,0,0,0,7,3,1,447.5,2633812.5,854155.5,1428585.8,0,0,0,3471.4482 +9158,11127,19885,-9,19886,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.43024,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1599,421810.41,324160.78,174974,47010.586,0,476.30255,2877.3271 +9158,11127,19886,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.8989487,9.2423849,6.7240386,0,0,-1146.8558,0,2,3,2021,7,0,33,33,1,0,0,20.453102,20.453102,.05,.05,0,0,0,0,0,0,1,1,0,7.0128946,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,1599,421810.41,324160.78,174974,47010.586,0,476.30255,2877.3271 +9159,11128,19887,19891,-9,-9,1,1,58,0,3,0,3,3,-9,1,1,0,0,0,7,28,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,35.36,52.01,48.98,1.666666666666667,1,1,0,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19888,-9,19891,19887,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.0609,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19889,-9,19891,19887,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9631,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19890,-9,19891,19887,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6725,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19891,19887,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,7,-28,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.01,48.98,32.43,35.36,6.666666666666667,1,1,0,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9160,11129,19892,-9,19893,19894,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1128.2582,-9,3,3,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19893,19894,-9,-9,1,0,45,0,2,0,3,3,-9,0,2,0,0,0,27,0,-44.333195,0,3,2,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,40,52.05,48.08,6,2,3,0,1,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19894,19893,-9,-9,1,1,54,0,2,0,3,3,-9,0,3,7.1920366,7.356812,0,27,9,74.467003,0,3,3,2021,9,0,24,24,1,0,0,7.4693394,7.4693394,0,0,0,0,0,0,0,2,1,0,1,0,0,52.05,48.08,42,40,8.333333333333334,2,3,0,0,4,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19895,-9,19893,19894,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.84808,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11130,19896,-9,19893,19894,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-1055.0533,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.906734,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,203,16728.922,0,0,0,0,638.28198,143.12212 +9160,11131,19897,-9,19893,19894,1,1,19,0,2,0,2,2,-9,0,4,7.0210934,7.1961122,0,0,0,-945.68256,0,3,3,2021,12,0,41,0,1,0,1,2.8699021,2.8699021,.05,.05,0,0,0,0,0,2,1,0,1,0,0,57.73,54.53,-9,-9,6.666666666666667,2,3,0,0,9,7,2,0,661,-148405.11,77184.336,0,0,0,0,-456.26947 +9161,11132,19898,19899,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.8631353,8.0932741,0,27,-1,44.496918,0,3,2,2021,8,0,37,37,1,0,0,9.1316442,9.1316442,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.17,59.31,47,50,5,2,3,0,0,11,5,3,1,911.5,46982.398,15912.758,112750.88,31010.023,0,0,2158.8103 +9161,11132,19899,19898,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,28,1,94.7985,0,3,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,41.17,59.31,8.333333333333334,4,2,0,0,0,5,3,1,911.5,46982.398,15912.758,112750.88,31010.023,0,0,2158.8103 +9161,11133,19900,-9,19899,19898,1,1,22,0,0,0,2,2,-9,0,4,8.0440407,7.6505532,0,0,0,-1137.7679,0,2,2,2021,6,0,40,40,1,0,1,9.7133818,9.7133818,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,4,2,0,0,3,5,4,1,1068,-9765.1855,-54409.262,0,0,0,0,297.22363 +9162,11134,19901,-9,19902,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.2795,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,7,3,1,1495.5,12836.973,-64593.625,0,0,0,1419.4707,2301.6245 +9162,11134,19902,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9843473,8.4060507,6.8913007,0,0,-1012.4911,0,-9,-9,2021,6,1,37,37,1,1,0,9.4219398,9.4219398,.05,.05,.05,0,0,0,0,0,1,1,0,7.0143795,0,53.61,39.14,-9,-9,5,2,3,0,0,7,7,3,1,1495.5,12836.973,-64593.625,0,0,0,1419.4707,2301.6245 +9163,11135,19903,19904,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.361886,7.7257576,0,2,-1,-15.831532,0,1,2,2021,9,0,22,11,1,0,0,9.6495018,9.6495018,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,48.81,59.91,8.333333333333334,1,1,0,0,9,8,4,1,1716.5,62009.031,2646.7429,0,0,0,0,3768.9514 +9163,11135,19904,19903,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4637661,8.4247236,6.0276084,2,1,117.10562,0,-9,-9,2021,9,1,41,43,1,1,0,14.629913,14.629913,.05,.05,0,0,0,0,0,0,0,0,0,6.4493151,0,48.81,59.91,49.63,54.22,8.333333333333334,1,1,0,0,7,8,4,1,1716.5,62009.031,2646.7429,0,0,0,0,3768.9514 +9164,11136,19905,19906,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5028381,8.4616623,0,1,-1,44.394356,0,2,3,2021,6,0,35,36,1,0,0,15.428825,15.428825,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.76,54.51,8.333333333333334,1,1,0,0,13,13,5,1,206,909259.69,339942.63,571915,30040.129,0,0,3458.8999 +9164,11136,19906,19905,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3715506,8.304287,0,1,1,-6.9997811,0,-9,-9,2021,7,0,37,38,1,0,0,12.558475,12.558475,.05,.05,0,0,0,0,0,0,0,0,0,.10942423,0,57.76,54.51,54.79,55.86,8.333333333333334,1,1,0,0,5,13,5,1,206,909259.69,339942.63,571915,30040.129,0,0,3458.8999 +9165,11137,19907,-9,19908,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1043.64,-9,2,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,456,-60147.867,0,0,0,0,385.65808,1880.426 +9165,11137,19908,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.674983,8.4946136,0,0,0,-1042.2979,0,2,2,2021,11,0,36,37,1,0,0,15.306859,15.306859,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,51.49,-9,-9,6.666666666666667,1,1,0,0,9,8,4,0,456,-60147.867,0,0,0,0,385.65808,1880.426 +9166,11138,19909,19911,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.7522221,8.4691248,0,10,-1,4.2295327,0,2,2,2021,11,0,40,0,1,0,0,18.547115,18.547115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48.28,60.18,5,1,1,0,0,3,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19910,-9,19909,19911,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.4504,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19911,19909,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4631138,8.4649944,0,10,1,41.446568,0,-9,-9,2021,10,0,43,50,1,0,0,13.932582,13.932582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,55.36,51.57,6.666666666666667,1,1,0,0,12,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19912,-9,19909,19911,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.9929,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9167,11139,19913,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.7807469,6.7352996,0,0,-895.94519,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4541538,6.5803699,25.26,60.58,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,153,465885.16,112722.38,297835.03,0,0,0,1880.7458 +9168,11140,19914,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4939299,8.5116386,0,0,0,-922.26862,0,2,2,2021,12,0,37,37,1,0,0,13.685327,13.685327,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,45.88,-9,-9,3.333333333333333,1,1,0,0,14,12,5,0,1500,-71134.25,0,0,0,0,0,1200.1722 +9169,11141,19915,19917,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,0,0,0,20,-2,-138.79639,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.19,51.55,54.1,59.11,8.333333333333334,2,3,1,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19916,-9,19915,19917,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-928.54169,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19917,19915,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,9.4018784,9.2793455,0,20,2,82.454742,0,2,2,2021,6,0,35,72,1,0,0,33.822708,33.822708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,52.19,51.55,8.333333333333334,1,1,0,0,13,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19918,-9,19915,19917,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.5117,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9170,11142,19919,-9,19920,19921,1,0,26,0,1,0,2,2,-9,0,4,8.7436438,8.4760685,0,0,0,-876.95874,0,3,3,2021,9,0,45,35,1,0,1,14.613623,14.613623,0,0,0,0,0,0,0,0,1,0,1,0,0,63.63,51.86,-9,-9,1.666666666666667,2,3,0,0,8,8,5,1,663,-264015.78,-99255.781,0,0,990.01178,0,2794.2908 +9170,11143,19920,19921,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,0,0,0,9,-7,52.685497,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50,55,53,55,8,2,3,0,0,0,8,3,1,943.5,351171.31,35761.547,186842.66,0,0,0,2530.2314 +9170,11143,19921,19920,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,7.940208,7.8479333,0,9,7,-23.461336,0,-9,-9,2021,9,0,24,40,1,1,0,17.308142,17.308142,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53,55,50,55,8,2,3,0,0,4,8,3,1,943.5,351171.31,35761.547,186842.66,0,0,0,2530.2314 +9170,11144,19922,-9,19920,19921,1,1,24,0,1,0,2,2,-9,0,4,7.9750261,7.6968756,0,0,0,-1097.505,0,3,3,2021,10,0,35,0,1,1,1,9.9495993,9.9495993,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,7,8,3,1,239,50053.383,0,0,0,0,0,2212.4104 +9170,11145,19923,-9,19920,19921,1,0,19,0,1,0,2,2,1,0,2,0,0,0,0,0,-772.89966,-9,3,3,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.75,55.66,-9,-9,5,2,3,1,0,0,8,1,1,898,-44426.531,0,0,0,0,0,334.17392 +9171,11146,19924,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.6318521,6.612093,0,0,-874.76141,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.55259115,6.5723238,54.07,49.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1543,57554.793,-27949.115,93502.555,0,5105.6802,3797.0989,778.59332 +9172,11147,19925,19926,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.9001698,4.6546268,51,0,-103.55602,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9236755,4.9442844,57.1,30.43,42.7,46.47,10,1,1,0,0,0,2,2,1,362.5,103679.27,54445.383,66699.789,0,0,0,1168.2266 +9172,11147,19926,19925,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,51,0,26.347435,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.7,46.47,57.1,30.43,8.333333333333334,1,1,0,0,0,2,2,1,362.5,103679.27,54445.383,66699.789,0,0,0,1168.2266 +9173,11148,19927,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.3137512,9.8796635,0,0,0,-1090.2836,0,2,2,2021,8,1,70,96,1,1,0,22.777586,22.777586,0,0,0,0,0,0,0,0,0,0,0,7.7191277,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,150,1464544.1,419903.09,844849.81,0,0,0,4817.6675 +9174,11149,19928,19929,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,5.8531737,5.974,0,40,1,46.786579,0,2,2,2021,8,0,6,5,1,0,0,7.6817961,7.6817961,0,0,0,0,0,0,0,14.5,1,1,0,7.5679331,0,54.2,57.49,57.5,29.51,8.333333333333334,1,1,0,0,9,6,4,1,282,583069.44,326834.41,265681,46202.844,0,0,5223.27 +9174,11149,19929,19928,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,8.1959553,8.6420488,7.7179413,40,-1,79.090866,0,2,2,2021,6,0,12,10,1,0,0,33.091236,33.091236,.05,.05,0,0,0,0,0,2,1,1,0,7.3227191,7.849422,57.5,29.51,54.2,57.49,10,1,1,0,0,9,6,4,1,282,583069.44,326834.41,265681,46202.844,0,0,5223.27 +9175,11150,19930,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.1473293,8.2356806,0,0,0,-1074.4281,0,1,1,2021,12,3,48,18,1,3,1,8.3560858,8.3560858,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,65.09,-9,-9,3.333333333333333,1,1,0,0,4,7,4,1,630,65408.27,0,0,0,0,0,1072.6844 +9176,11151,19931,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1069.8099,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.83,54.46,-9,-9,5,4,2,1,0,0,4,1,0,197,-95690.953,0,0,0,0,0,-528.97607 +9176,11152,19932,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-932.11292,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4456234,0,33,29,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,1160,-141339.94,0,0,0,0,0,912.77271 +9177,11153,19933,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,0,0,0,0,0,-969.75311,1,3,2,2021,5,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,1,13,8,2,0,131,250119.39,0,0,0,0,0,-492.15439 +9178,11154,19934,19935,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,5.1915889,6.4204793,6.3630157,8,4,7.228097,0,1,2,2021,6,0,30,30,1,0,0,.54199743,.54199743,0,0,0,0,0,0,0,0,0,0,0,4.1264591,5.9420209,46.34,61.24,57.16,56.15,8.333333333333334,1,1,0,0,8,9,2,1,224.5,262911.47,0,0,0,0,0,1959.3149 +9178,11154,19935,19934,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,8,-4,99.195877,0,2,2,2021,8,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7549434,0,57.16,56.15,46.34,61.24,8.333333333333334,1,1,0,0,8,9,2,1,224.5,262911.47,0,0,0,0,0,1959.3149 +9179,11155,19936,19937,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.8225069,8.7321787,0,11,-2,16.655767,-9,-9,-9,2021,6,0,56,0,1,0,0,13.841294,13.841294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,14,5,4,1,1261,367393.97,143480.03,174122.31,24102.387,0,0,3137.915 +9179,11155,19937,19936,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.7679825,7.3521013,0,24,2,-64.13076,0,2,2,2021,12,0,20,18,1,0,0,9.2125263,9.2125263,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,5,4,1,1261,367393.97,143480.03,174122.31,24102.387,0,0,3137.915 +9179,11156,19938,-9,19937,19936,1,1,18,0,2,0,2,2,-9,0,3,0,0,0,0,0,-987.88324,0,2,2,2021,13,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,1,0,0,5,1,1,2027,-281905.81,0,0,0,0,0,0 +9180,11157,19939,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,1,0,0,0,0,0,-924.53717,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.8,20.65,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,557.5,-45210.32,0,0,0,1280.1532,0,2038.8267 +9180,11157,19940,-9,19939,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.0149,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,557.5,-45210.32,0,0,0,1280.1532,0,2038.8267 +9180,11158,19941,-9,19939,-9,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-968.25867,-9,2,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,57.88,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,673,0,0,0,0,0,0,807.34241 +9181,11159,19942,19943,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.0847025,8.0659657,0,30,0,-4.484971,0,3,3,2021,9,1,47,50,1,1,0,7.510529,7.510529,0,0,0,0,0,0,0,0,0,0,0,5.8683219,0,55.36,51.57,46.62,48.9,3.333333333333333,1,1,0,0,3,8,5,1,969.5,526141.31,80049.992,518111.56,63975.781,0,0,3580.4229 +9181,11159,19943,19942,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.156992,8.4265852,0,30,0,-22.276768,0,3,3,2021,9,0,40,40,1,0,0,13.367442,13.367442,0,0,.05,0,0,0,0,0,0,0,0,5.9737301,0,46.62,48.9,55.36,51.57,8.333333333333334,1,1,0,0,9,8,5,1,969.5,526141.31,80049.992,518111.56,63975.781,0,0,3580.4229 +9181,11160,19944,-9,19942,19943,1,0,24,0,0,0,1,1,-9,0,3,7.9644551,7.7704921,0,0,0,-1147.4182,0,2,2,2021,8,1,42,46,1,1,1,8.7719765,8.7719765,0,0,0,0,0,0,0,0,0,0,0,2.9558139,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,420,-36387.609,0,0,0,19666.279,0,1536.8849 +9181,11161,19945,-9,19942,19943,1,1,20,0,0,0,2,2,-9,0,4,6.8221941,6.5840077,0,0,0,-894.0105,0,2,2,2021,9,0,40,40,1,0,1,3.1277871,3.1277871,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,8,2,1,1498,0,0,0,0,0,0,561.32056 +9182,11162,19946,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.6253319,9.6311169,0,0,0,-1024.1255,0,2,1,2021,12,0,42,40,1,0,0,37.946774,37.946774,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,582,1998219.4,700261,638394.38,0,0,0,3866.4902 +9183,11163,19947,-9,19949,19948,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.478,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19948,19949,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.7825727,8.9405785,0,9,-15,-18.245602,0,-9,-9,2021,21,8,37,37,1,8,0,20.877449,20.877449,.05,.05,0,0,0,0,0,0,1,1,0,2.1819298,0,40.89,46.15,57.16,56.15,3.333333333333333,1,1,0,1,11,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19949,19948,-9,-9,1,0,53,0,2,0,3,3,-9,0,4,7.7130046,7.8333354,0,9,15,-85.777145,0,2,3,2021,5,0,20,0,1,0,0,16.037729,16.037729,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.89,46.15,8.333333333333334,1,1,0,0,8,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19950,-9,19949,19948,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.38525,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9184,11164,19951,-9,19953,19952,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.7326,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9184,11164,19952,19953,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.6235886,8.8794107,0,2,4,20.439346,0,2,2,2021,10,1,63,47,1,1,0,9.8214312,9.8214312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9184,11164,19953,19952,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.9822502,8.149888,0,2,-4,-86.466171,0,-9,-9,2021,12,0,25,25,1,0,0,16.59655,16.59655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,5,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9185,11165,19954,19955,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.1589565,7.6683521,21,-4,-126.56212,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6260548,8.0181093,54.2,57.49,41.87,35.22,8.333333333333334,1,1,0,0,8,10,4,1,2567.5,2441719.8,1839137.1,414273.63,0,0,1134.8948,3410.5273 +9185,11165,19955,19954,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1085081,7.9965177,21,4,-29.18412,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6309557,8.0909128,41.87,35.22,54.2,57.49,5,1,1,0,0,6,10,4,1,2567.5,2441719.8,1839137.1,414273.63,0,0,1134.8948,3410.5273 +9186,11166,19956,19957,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-5,-88.901039,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1547959,0,50,47,39.45,46.82,7,1,1,0,0,0,5,2,1,376.5,343714.38,109657.84,57728.566,0,5348.7686,0,1556.228 +9186,11166,19957,19956,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.4592886,7.4312205,47,5,-59.383629,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7374244,7.2162752,39.45,46.82,50,47,8.333333333333334,1,1,0,0,0,5,2,1,376.5,343714.38,109657.84,57728.566,0,5348.7686,0,1556.228 +9187,11167,19958,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.2526464,8.1828871,0,0,0,-1021.053,0,-9,-9,2021,9,0,38,38,1,0,0,11.619799,11.619799,.05,.05,0,0,0,0,0,0,0,0,0,2.1727965,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,334,405027.41,107469.98,268319.16,0,15058.008,0,1633.4165 +9187,11168,19959,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9837923,8.0154448,0,0,0,-1122.6646,0,-9,-9,2021,12,1,39,35,1,1,0,9.2839756,9.2839756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,4,2,0,0,2,4,4,0,423,-54825.902,21719.266,0,0,0,0,836.62976 +9188,11169,19960,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4994931,7.3666105,0,0,0,-976.20935,0,1,3,2021,7,0,35,35,1,0,0,6.8849859,6.8849859,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,6806,-3463.7617,0,0,0,0,0,715.48444 +9189,11170,19961,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-925.73029,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.84,43.22,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,932,-84834.203,0,0,0,0,0,1240.2365 +9190,11171,19962,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.70343,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2202287,0,56,44,-9,-9,8,1,1,0,0,0,2,1,1,114,-122643.86,0,0,0,0,0,1954.4868 +9190,11172,19963,-9,-9,19962,1,1,59,0,0,0,2,2,-9,0,2,8.1457787,7.9580693,0,0,0,-1038.881,0,2,2,2021,17,5,12,12,1,5,0,27.51655,27.51655,.05,.05,0,0,0,0,0,14.5,1,1,0,1.8574257,0,40.85,39.8,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,332,418824.13,153550.72,0,0,0,0,1484.6295 +9191,11173,19964,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0958891,7.884294,0,0,0,-1038.7826,0,2,2,2021,10,0,39,75,1,1,1,10.786284,10.786284,.05,.05,0,0,0,0,2.9237511,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,1,708,276442.53,22716.027,0,0,0,0,1731.8918 +9192,11174,19965,19966,-9,-9,1,1,45,0,1,0,3,3,-9,1,1,0,0,0,22,-3,-71.023941,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.11,27.77,57.06,57.76,6.666666666666667,1,1,0,0,5,6,3,1,1393.5,94295.234,21643.813,18322.764,23519.707,0,0,2056.3293 +9192,11174,19966,19965,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.819119,7.648932,0,22,3,101.00806,0,2,2,2021,6,0,42,35,1,0,0,8.327981,8.327981,0,0,0,0,0,0,0,84,1,1,0,1.711695,0,57.06,57.76,31.11,27.77,6.666666666666667,1,1,0,0,10,6,3,1,1393.5,94295.234,21643.813,18322.764,23519.707,0,0,2056.3293 +9193,11175,19967,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.5924015,7.7952313,0,0,0,-1130.0037,0,3,3,2021,20,8,45,42,1,8,0,6.1533556,6.1533556,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.92,31.03,-9,-9,5,1,1,0,0,4,11,3,0,1112,-10873.318,3681.8523,0,0,0,0,1188.2223 +9194,11176,19968,19969,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7040305,6.749589,62,1,-21.094231,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1364775,60.29,52.11,62.63,34.54,0,1,1,0,0,0,4,2,1,1284.5,528254.06,190544.34,97255.828,0,0,0,2775.1997 +9194,11176,19969,19968,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5333862,5.3515067,62,-1,68.930077,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8933172,5.4371357,62.63,34.54,60.29,52.11,8.333333333333334,1,1,0,0,0,4,2,1,1284.5,528254.06,190544.34,97255.828,0,0,0,2775.1997 +9195,11177,19970,19971,-9,-9,1,1,30,0,0,0,3,3,-9,0,3,8.0686531,8.048068,0,5,2,-194.2581,0,-9,-9,2021,12,0,37,37,1,0,0,9.9199753,9.9199753,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.62,55.66,30.9,57.35,5,1,1,0,0,9,10,5,0,740,340274.75,153882.64,200772.39,161483.72,0,0,2792.2583 +9195,11177,19971,19970,-9,-9,1,0,28,0,0,0,3,3,-9,0,3,8.4701672,8.6167498,0,5,-2,-138.03284,-9,-9,-9,2021,18,6,37,0,1,6,0,17.616945,17.616945,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.9,57.35,37.62,55.66,3.333333333333333,1,1,0,0,6,10,5,0,740,340274.75,153882.64,200772.39,161483.72,0,0,2792.2583 +9196,11178,19972,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,.062143069,.43279046,0,0,0,-906.93054,0,2,-9,2021,29,12,40,35,1,12,0,.00073076063,.00073076063,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.54,33.04,-9,-9,1.666666666666667,1,1,0,1,6,6,2,0,3010,48021.563,0,0,0,8039.8906,0,1117.8024 +9197,11179,19973,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.2469,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19974,19977,-9,-9,1,0,35,3,3,0,1,1,-9,0,3,9.0324526,8.8065815,0,4,0,37.389763,0,2,2,2021,6,0,40,49,1,0,0,19.85718,19.85718,.05,.05,0,0,0,0,0,0,1,1,0,6.6974382,0,53.14,51.28,51,56,8.333333333333334,1,1,0,0,8,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19975,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-910.36102,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19976,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-987.0434,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19977,19974,-9,-9,1,1,35,3,3,0,1,1,-9,0,4,9.4746199,9.3466635,0,4,0,-54.20623,0,-9,-9,2021,10,0,40,45,1,1,0,31.554476,31.554476,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,53.14,51.28,7,1,1,0,0,1,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9198,11180,19978,19979,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,6,1,0,0,3,3,2021,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,62.49,55.09,10,1,1,0,0,7,13,1,1,408.5,124122.18,112045.3,156287.03,0,0,0,1072.5155 +9198,11180,19979,19978,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.76,54.51,10,1,1,0,0,5,13,1,1,408.5,124122.18,112045.3,156287.03,0,0,0,1072.5155 +9199,11181,19980,19981,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2531939,8.6245375,8.2631197,34,-5,-46.302895,0,3,3,2021,9,0,28,29,1,0,0,17.367252,17.367252,.05,.05,0,0,0,0,0,0,1,1,0,8.3177071,0,59.47,42.13,23.97,45.78,6.666666666666667,1,1,0,0,11,13,5,1,573.5,1622468.8,1484989.4,152024.66,14544.342,0,0,4736.4971 +9199,11181,19981,19980,-9,-9,1,0,61,0,0,0,2,2,-9,1,3,0,0,0,33,5,-81.086624,0,2,3,2021,12,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,6.7765374,0,23.97,45.78,59.47,42.13,6.666666666666667,1,1,0,0,8,13,5,1,573.5,1622468.8,1484989.4,152024.66,14544.342,0,0,4736.4971 +9200,11182,19982,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1029.575,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9180319,0,37.22,63.68,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,793,893518.19,-1358.7673,544496.63,0,0,0,450.27139 +9201,11183,19983,-9,19985,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4299,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9201,11183,19984,-9,19985,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.98175,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9201,11183,19985,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-933.62164,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.35,15.58,-9,-9,5,1,1,0,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9202,11184,19986,-9,19989,19987,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.04694,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19987,19989,-9,-9,1,1,36,1,3,0,2,2,-9,0,3,8.1319838,8.4207916,0,16,2,41.842327,0,3,3,2021,9,1,50,65,1,1,0,9.306181,9.306181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.92,40.35,43.48,60.97,1.666666666666667,1,1,0,0,6,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19988,-9,19989,19987,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-858.62317,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19989,19987,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,7.3899484,7.7716165,0,16,-2,-52.324253,0,3,3,2021,12,0,21,21,1,0,0,10.409415,10.409415,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,58.92,40.35,8.333333333333334,1,1,0,0,10,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19990,-9,19989,19987,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.5223,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9203,11185,19991,19992,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.2053614,8.0216732,0,37,-2,98.434402,0,2,2,2021,12,0,40,40,1,2,0,10.908935,10.908935,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,2,3,0,0,14,8,3,1,520.5,759041.38,242994.91,425456.63,0,0,0,1429.4797 +9203,11185,19992,19991,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,37,2,45.540733,0,3,3,2021,10,0,0,12,3,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,50,49,48,48,7,2,3,1,1,4,8,3,1,520.5,759041.38,242994.91,425456.63,0,0,0,1429.4797 +9203,11186,19993,-9,19991,19992,1,1,25,0,0,0,2,2,1,0,3,0,0,0,0,0,-1039.2319,-9,2,2,2021,19,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.06,65.75,-9,-9,3.333333333333333,2,3,1,0,0,8,1,1,847,-171560.89,0,0,0,0,0,0 +9204,11187,19994,-9,19995,19998,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.8604,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19995,19998,-9,-9,1,0,32,0,3,0,1,1,-9,0,3,8.1016188,8.3022881,5.9262104,7,1,-59.4272,0,2,1,2021,12,0,40,13,1,0,0,9.3470268,9.3470268,.05,.05,0,0,0,0,0,0,1,1,0,6.0030751,0,46.33,55.93,40.65,57.36,6.666666666666667,4,2,0,0,4,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19996,-9,19995,19998,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.09198,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19997,-9,19995,19998,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1036.4325,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19998,19995,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,7.8420262,8.1196356,0,7,-1,25.223598,-9,-9,-9,2021,12,0,40,0,1,0,0,8.4316425,8.4316425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,46.33,55.93,6.666666666666667,1,1,0,0,5,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11188,19999,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,2,7.8066692,7.5812836,0,0,0,-954.55481,0,-9,-9,2021,14,2,45,45,1,2,0,6.4707069,6.4707069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.41,44.7,-9,-9,1.666666666666667,1,1,0,0,5,6,3,0,324,21908.631,-48970.551,0,0,896.36127,10442.665,985.97705 +9205,11189,20000,20001,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.0979085,6.9501996,46,-3,-6.2333145,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.17174934,6.9660096,27.23,23.84,61.85,44.55,5,1,1,0,0,0,10,2,0,853.5,481464.5,-26553.852,158988.27,0,0,0,2584.1868 +9205,11189,20001,20000,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5122299,6.3893037,46,3,70.184776,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.3580327,6.1082044,61.85,44.55,27.23,23.84,8.333333333333334,1,1,0,0,3,10,2,0,853.5,481464.5,-26553.852,158988.27,0,0,0,2584.1868 +9205,11190,20002,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-960.25696,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,16.79,61.42,-9,-9,5,1,1,1,0,0,10,1,0,1066,-28517.553,0,0,0,0,0,24.929356 +9206,11191,20003,-9,-9,-9,1,1,27,0,0,0,3,3,-9,0,5,7.993825,8.2442999,0,0,0,-994.95703,0,-9,-9,2021,6,0,48,55,1,0,0,8.0193815,8.0193815,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,3,4,0,0,6,8,4,0,603,134524.72,0,0,0,0,0,640.13257 +9207,11192,20004,-9,20005,20006,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4154,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20005,20006,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,26,0,-34.763279,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,51,56,8,2,3,0,1,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20006,20005,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,9.4211836,9.6422939,0,26,0,57.742901,0,3,3,2021,9,0,36,35,1,1,0,37.242779,37.242779,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51,56,50,55,8,2,3,0,1,9,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20007,-9,20005,20006,1,0,16,0,2,0,2,2,-9,0,3,0,5.4371667,5.7012882,0,0,-997.0224,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2111311,0,36.88,47.89,-9,-9,6.666666666666667,2,3,0,0,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11193,20008,-9,20005,20006,1,1,22,0,2,0,2,2,-9,0,4,7.4638352,7.3847842,0,0,0,-855.52661,0,2,3,2021,24,10,20,0,1,10,1,14.174434,14.174434,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,58.11,-9,-9,3.333333333333333,2,3,0,0,1,8,3,0,1476,21483.377,-54974.762,0,0,0,0,874.49341 +9207,11194,20009,-9,20005,20006,1,0,21,0,2,0,2,2,1,0,4,8.066659,8.2414331,0,0,0,-1009.0553,-9,2,3,2021,7,0,42,0,1,0,1,8.8576546,8.8576546,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,2,3,0,0,0,8,4,0,1266,21795.361,0,0,0,0,0,1020.5698 +9207,11195,20010,-9,20005,20006,1,1,19,0,2,0,2,2,-9,0,4,6.1010585,6.0848656,0,0,0,-1141.9755,0,2,3,2021,10,0,40,0,1,2,1,1.8323489,1.8323489,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,2346,51672.27,59807.238,0,0,3272.3894,0,670.49786 +9208,11196,20011,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0036879,7.8048148,0,0,0,-854.25909,0,2,2,2021,6,0,40,47,1,0,0,7.7573919,7.7573919,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,121,909358.38,367508.88,243614.25,0,0,0,881.99475 +9209,11197,20012,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.7024698,7.9998484,6.671701,0,0,-1102.3517,0,3,3,2021,12,0,23,27,1,0,0,15.646873,15.646873,0,0,0,1,0,0,0,0,1,1,0,.96973616,6.846827,39.36,55.19,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,318,18581.416,0,0,0,0,81.10379,2081.0486 +9210,11198,20013,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.16956,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,583,325251.22,0,246770.67,0,0,0,-418.43823 +9211,11199,20014,-9,20017,20016,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.58838,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20015,-9,20017,20016,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.91113,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20016,20017,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,0,0,0,14,10,122.63362,0,3,2,2021,10,0,0,43,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1592298,0,50.48,56.4,46.5,58.26,8.333333333333334,2,3,0,0,9,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20017,20016,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.458364,7.1147633,0,12,-10,-60.489616,0,1,2,2021,12,3,35,35,1,3,0,5.0037417,5.0037417,0,0,0,0,0,0,0,0,1,1,0,2.8878517,0,46.5,58.26,50.48,56.4,8.333333333333334,1,1,0,0,7,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9212,11200,20018,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-985.8551,0,3,3,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.75,50.17,-9,-9,0,1,1,0,1,0,12,1,1,963,-360260.88,-44176.066,0,0,0,0,180.94133 +9213,11201,20019,20020,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3740544,6.3976316,51,0,-109.69653,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3415163,6.7211518,58.32,50.22,64.40000000000001,42,10,1,1,0,0,0,9,4,1,828.5,1587271.3,747983.13,529182.5,0,0,0,4267.207 +9213,11201,20020,20019,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6768017,8.3884296,51,0,101.77605,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4965303,8.912055,64.40000000000001,42,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,828.5,1587271.3,747983.13,529182.5,0,0,0,4267.207 +9214,11202,20021,-9,20024,20022,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.095,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20022,20024,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,9.1634245,9.0125961,0,5,10,189.59308,0,1,1,2021,9,0,38,77,1,0,0,25.545742,25.545742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.37,54.85,54.2,57.49,8.333333333333334,4,5,0,0,13,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20023,-9,20024,20022,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.7007,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20024,20022,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,4.7574201,4.7577987,0,5,-10,79.076775,0,-9,-9,2021,9,1,2,0,1,1,0,10.342223,10.342223,.05,.05,0,0,0,0,0,0,0,0,0,8.0885477,0,54.2,57.49,39.37,54.85,10,4,2,0,0,3,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9215,11203,20025,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-939.02856,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.61,25.13,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,890,36133.746,0,0,0,0,0,1187.0123 +9216,11204,20026,20027,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.6868472,7.6648493,38,0,13.212629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7720113,49.51,46.42,50.84,45.33,8.333333333333334,1,1,0,0,0,9,4,1,735,1422002.5,239979.58,662100,0,0,0,3488.7646 +9216,11204,20027,20026,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.7081542,8.1059332,38,9,9.1112947,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1299211,8.085041,50.84,45.33,49.51,46.42,8.333333333333334,1,1,0,0,0,9,4,1,735,1422002.5,239979.58,662100,0,0,0,3488.7646 +9217,11205,20028,20029,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,7,-13,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,2.6809487,0,2,1,1,0,0,0,61.69,15.28,61.54,26.01,6.666666666666667,2,3,0,0,0,12,1,1,1535.5,3637.998,0,0,0,0,0,936.57849 +9217,11205,20029,20028,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,7,13,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.54,26.01,61.69,15.28,8.333333333333334,2,3,0,0,0,12,1,1,1535.5,3637.998,0,0,0,0,0,936.57849 +9217,11206,20030,20031,20028,20029,1,1,45,0,0,0,2,2,-9,0,3,8.3570375,8.1266928,0,7,-2,24.773048,0,3,3,2021,11,0,37,37,1,0,0,15.876051,15.876051,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,55.87,64.23999999999999,34.3,8.333333333333334,2,3,0,0,8,12,4,1,1670,61480.363,-10897.102,0,0,0,6608.1035,1847.5884 +9217,11206,20031,20030,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,4.7994676,5.036747,0,7,2,-5.3729844,0,2,2,2021,12,0,25,50,1,0,0,.44847018,.44847018,0,0,0,0,0,0,0,0,1,1,0,1.5082837,0,64.23999999999999,34.3,49.02,55.87,8.333333333333334,2,3,0,0,8,12,4,1,1670,61480.363,-10897.102,0,0,0,6608.1035,1847.5884 +9217,11207,20032,-9,20031,20030,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.3149,-9,2,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.33,55.91,-9,-9,6.666666666666667,2,3,0,0,3,12,1,1,479,30566.816,0,0,0,3020.5066,0,187.08743 +9217,11208,20033,-9,20031,20030,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.1539,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,6.666666666666667,2,3,0,0,0,12,1,1,975,-65721.266,0,0,0,0,0,-575.78809 +9218,11209,20034,20035,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,6,4,-1.5046698,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.3677207,0,58.25,22.01,57.16,56.15,5,1,1,1,0,7,7,4,1,569.5,1708330.8,1181566,313672.19,0,0,0,2576.6992 +9218,11209,20035,20034,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.7602158,8.6585016,0,28,-4,47.46949,0,2,3,2021,7,0,42,55,1,0,0,18.893654,18.893654,0,0,0,0,0,0,0,7,1,1,0,.34557572,0,57.16,56.15,58.25,22.01,8.333333333333334,1,1,0,0,9,7,4,1,569.5,1708330.8,1181566,313672.19,0,0,0,2576.6992 +9218,11210,20036,-9,20035,20034,1,1,24,0,0,0,2,2,-9,0,4,7.4784122,7.6442084,0,0,0,-934.75354,0,2,2,2021,6,0,43,37,1,0,1,5.1815934,5.1815934,0,0,0,0,0,0,0,0,1,1,0,3.121815,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,2122,-70177.586,0,0,0,0,0,804.66187 +9219,11211,20037,-9,20038,20039,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.3561,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9219,11211,20038,20039,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,8,2,107.40504,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,58.05,54.52,1.666666666666667,1,1,0,0,2,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9219,11211,20039,20038,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.7772741,9.3369064,0,8,-2,-117.26563,0,2,3,2021,7,0,27,34,1,0,0,64.61731,64.61731,.05,.05,0,0,0,0,0,0,0,0,0,4.4605494,0,58.05,54.52,57.51,47.91,8.333333333333334,1,1,0,0,11,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9220,11212,20040,-9,-9,-9,1,0,60,0,2,0,3,3,-9,1,4,8.7016592,8.4693489,0,0,0,-980.54187,0,3,3,2021,9,0,120,120,1,0,0,6.1667433,6.1667433,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,687,-102656.55,-142275.8,0,0,7928.043,0,5890.8301 +9220,11213,20041,-9,20040,-9,1,1,36,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1049.7616,0,3,-9,2021,10,0,0,38,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5546746,0,51,56,-9,-9,7,1,1,1,0,0,2,1,1,205,-24133.717,0,0,0,0,0,1585.8712 +9221,11214,20042,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.4715967,6.5532913,0,0,-1032.2566,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4131043,6.3620224,51.37,46.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1411,155089.08,75729.094,0,0,0,0,512.4657 +9222,11215,20043,20044,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.1794362,7.4171071,0,7,7,43.101326,0,3,1,2021,11,0,16,16,1,0,0,6.7828312,6.7828312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,36.62,60.23,8.333333333333334,1,1,0,0,8,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9222,11215,20044,20043,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,9.6883678,9.4934464,0,7,-7,97.747292,0,-9,-9,2021,16,5,50,55,1,5,0,28.466133,28.466133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,45.43,53.5,3.333333333333333,1,1,0,0,9,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9222,11215,20045,-9,20043,20044,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.293,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9223,11216,20046,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,5,8.2099791,8.5899572,0,0,0,-1015.0623,0,3,3,2021,6,0,50,40,1,0,0,8.8166265,8.8166265,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,4,4,1,372,90572.336,-39030.621,0,0,0,0,2123.0557 +9224,11217,20047,20048,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,8.2065516,8.2818193,0,6,1,25.952999,-9,-9,2,2021,4,0,50,0,1,0,0,8.1776237,8.1776237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.92,51.94,1.666666666666667,1,1,0,0,11,1,5,0,758.5,270967.69,115973.84,238348.72,158855.41,0,0,4010.9604 +9224,11217,20048,20047,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.6057272,8.8490496,0,6,-1,-41.331764,-9,-9,-9,2021,16,4,37,0,1,4,0,20.776892,20.776892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.92,51.94,57.16,56.15,5,1,1,0,0,6,1,5,0,758.5,270967.69,115973.84,238348.72,158855.41,0,0,4010.9604 +9224,11218,20049,-9,20048,20047,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1030.295,-9,1,3,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,1714,165314.5,0,0,0,0,0,-613.82233 +9225,11219,20050,20051,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,54,-3,-4.2765517,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,7.1488848,0,44.76,50.85,49.01,28.95,8.333333333333334,1,1,0,0,4,10,2,0,533.5,460462.72,146811.11,320701.44,0,0,0,2007.5688 +9225,11219,20051,20050,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.5920548,6.346736,54,3,157.48546,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6517153,0,0,1,1,0,0,6.4927197,49.01,28.95,44.76,50.85,5,1,1,0,0,0,10,2,0,533.5,460462.72,146811.11,320701.44,0,0,0,2007.5688 +9226,11220,20052,20053,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.1864753,5.0872698,50,-2,62.917191,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3262153,5.0055671,62.5,49.56,35.82,51.7,8.333333333333334,1,1,0,0,0,5,3,1,992.5,890479.75,494996.06,236564.66,0,0,0,1782.7544 +9226,11220,20053,20052,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.7714863,7.7456727,50,2,67.016655,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8130932,7.4681244,35.82,51.7,62.5,49.56,8.333333333333334,1,1,0,0,0,5,3,1,992.5,890479.75,494996.06,236564.66,0,0,0,1782.7544 +9227,11221,20054,20055,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.457201,8.2741175,0,7,1,-22.855314,0,-9,-9,2021,9,0,47,48,1,0,0,9.5893373,9.5893373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,0,14,12,5,1,1759,196308.66,118497.32,156556.98,101911.63,0,1137.9272,3698.438 +9227,11221,20055,20054,-9,-9,1,0,33,0,0,0,2,2,-9,0,5,8.5393543,8.7703247,0,7,-1,33.933372,0,2,3,2021,8,1,40,40,1,1,0,12.076702,12.076702,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,10,1,1,0,0,10,12,5,1,1759,196308.66,118497.32,156556.98,101911.63,0,1137.9272,3698.438 +9228,11222,20056,20057,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4663239,8.4460707,0,3,5,78.851517,0,-9,-9,2021,8,0,38,38,1,0,0,13.929477,13.929477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.54,59.6,10,1,1,0,0,8,11,5,1,696,28586.609,-51803.559,0,0,0,1060.2893,3576.9722 +9228,11222,20057,20056,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1921768,8.2553701,0,3,-5,38.724232,0,1,2,2021,19,8,46,0,1,8,0,7.8233542,7.8233542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,51.83,57.2,6.666666666666667,1,1,0,0,4,11,5,1,696,28586.609,-51803.559,0,0,0,1060.2893,3576.9722 +9229,11223,20058,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.0890627,7.3306808,0,0,-1032.254,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.5684152,135.35144,12.939561,0,1,1,0,0,7.1968608,54,43,-9,-9,8,1,1,0,0,0,4,3,0,767,334562.47,10783.95,226338.08,0,0,0,1175.3672 +9230,11224,20059,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,9.320899,9.4359264,0,0,-1024.1425,0,1,1,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9625506,9.2069635,45.46,61.87,-9,-9,10,2,3,0,0,0,8,5,1,1543,445676.25,453608.47,0,0,0,0,6283.3848 +9231,11225,20060,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.2302299,6.0369525,0,0,-976.24554,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7941041,6.3290763,66.34,49.42,-9,-9,10,1,1,0,0,0,5,2,1,900,496861.75,39632.563,175241.63,0,0,0,-47.968231 +9232,11226,20061,20063,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.0805855,9.1833067,0,12,-2,-62.406544,0,2,1,2021,7,0,53,50,1,0,0,15.307356,15.307356,.05,.05,0,0,0,0,0,0,0,0,0,5.3444538,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9232,11226,20062,-9,20061,20063,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1054.9147,-9,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9232,11226,20063,20061,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.368906,9.3685875,0,12,2,-22.9711,0,1,2,2021,9,0,44,45,1,0,0,33.946499,33.946499,.05,.05,0,0,0,0,0,0,0,0,0,3.842248,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9233,11227,20064,20065,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8503976,8.1047039,0,9,-7,60.42342,0,2,2,2021,5,0,38,38,1,0,0,9.0887814,9.0887814,0,0,0,0,0,0,0,7,1,1,0,0,0,55.39,54.22,54.45,50.69,8.333333333333334,1,1,0,0,10,4,3,1,977.5,190178.55,287941.84,0,0,0,0,1646.0731 +9233,11227,20065,20064,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,9,7,-38.307369,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.45,50.69,55.39,54.22,8.333333333333334,1,1,0,0,8,4,3,1,977.5,190178.55,287941.84,0,0,0,0,1646.0731 +9234,11228,20066,20067,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.3499594,8.4680309,0,9,0,46.752472,-9,3,2,2021,12,0,39,0,1,0,0,14.995521,14.995521,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,38.66,43.37,6.666666666666667,1,1,0,0,10,9,5,1,280,342112.16,218629.41,355388.69,248286.31,8850.5547,0,4351.3203 +9234,11228,20067,20066,-9,-9,1,1,42,0,1,0,1,1,-9,0,2,8.8486757,9.0044661,0,1,0,-75.989143,-9,-9,-9,2021,15,3,37,0,1,3,0,19.996149,19.996149,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.66,43.37,45.69,53.27,5,1,1,0,1,10,9,5,1,280,342112.16,218629.41,355388.69,248286.31,8850.5547,0,4351.3203 +9235,11229,20068,20069,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0688057,9.2905674,0,1,8,35.786713,-9,-9,-9,2021,7,0,60,0,1,0,0,20.420286,20.420286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.49,47.77,8.333333333333334,1,1,0,0,1,5,5,0,2699.5,721484.13,227184.41,369655,0,5434.0649,0,5470.2158 +9235,11229,20069,20068,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.9325581,8.837635,0,1,-8,-46.160583,0,2,2,2021,12,1,57,60,1,1,0,14.274568,14.274568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.49,47.77,51.83,57.2,6.666666666666667,1,1,0,0,9,5,5,0,2699.5,721484.13,227184.41,369655,0,5434.0649,0,5470.2158 +9236,11230,20070,20071,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1563845,7.7925715,0,16,-1,-45.028599,0,2,2,2021,8,0,40,40,1,0,0,7.4806561,7.4806561,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.51,40.91,13.6,64.02,10,1,1,0,0,6,9,4,0,1237,78865.703,12043.27,208754.84,131496.7,1917.7021,194.28688,2216.2764 +9236,11230,20071,20070,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.0291977,7.9756718,0,17,1,58.463596,0,2,2,2021,26,9,40,38,1,9,0,8.2006559,8.2006559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.6,64.02,52.51,40.91,5,1,1,0,0,14,9,4,0,1237,78865.703,12043.27,208754.84,131496.7,1917.7021,194.28688,2216.2764 +9236,11231,20072,-9,20070,20071,1,1,25,0,0,0,2,2,-9,0,3,8.1575718,8.346488,0,0,0,-1000.5444,-9,2,2,2021,8,0,48,0,1,0,1,10.414745,10.414745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.2,31.05,-9,-9,8.333333333333334,1,1,0,0,2,9,4,0,1931,-600.03137,623.8681,0,0,0,0,1216.3356 +9237,11232,20073,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,9.6106882,9.36304,0,0,0,-979.99011,0,2,1,2021,22,7,50,55,1,7,0,32.286392,32.286392,.05,.05,0,0,0,0,0,0,0,0,0,.79177904,0,7.640000000000001,64.44,-9,-9,1.666666666666667,1,1,0,0,13,4,5,1,619,135400.34,71125.422,0,0,0,-834.49982,3490.4502 +9238,11233,20074,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,6.8029919,6.6668034,0,0,0,-1034.8679,-9,2,2,2021,6,2,16,0,1,2,0,5.2685966,5.2685966,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,8.333333333333334,4,2,0,0,4,9,2,0,198,-135238.88,0,0,0,0,0,1751.5701 +9239,11234,20075,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,0,0,-973.3457,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,7.1402001,13.212792,64.417984,0,1,1,0,0,0,61.75,14.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,274,-13812.408,427.8671,161092.58,0,0,0,1067.303 +9240,11235,20076,-9,20078,20077,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.8081,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9240,11235,20077,20078,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,7.984509,8.0209312,0,5,0,-165.06642,0,3,3,2021,7,1,42,42,1,1,0,9.6133833,9.6133833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,33.43,59.21,8.333333333333334,1,1,0,0,9,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9240,11235,20078,20077,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.1033177,7.1497483,0,5,0,-168.87767,0,-9,-9,2021,21,9,24,23,1,9,0,7.2307234,7.2307234,.05,.05,0,0,0,0,0,0,1,1,0,.8342666,0,33.43,59.21,55.36,51.57,3.333333333333333,1,1,0,0,3,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9241,11236,20079,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.774919,6.6429262,0,0,-819.19995,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7347393,51.77,36.69,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,453,220727.16,18439.643,188820.97,0,0,0,2306.7302 +9242,11237,20080,20083,-9,-9,1,0,33,0,5,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.44,47.24,18.13,62.09,8.333333333333334,1,1,1,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20081,-9,20080,20083,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-873.29315,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20082,-9,20080,20083,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1109.7689,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20083,20080,-9,-9,1,1,33,0,5,0,2,2,-9,1,3,0,0,0,6,0,0,0,2,2,2021,20,5,0,40,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.13,62.09,41.44,47.24,5,1,1,0,0,6,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20084,-9,20080,20083,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-989.28326,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20085,-9,20080,20083,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-903.6073,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20086,-9,20080,20083,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-978.97052,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9243,11238,20087,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.0564404,5.7545996,0,0,-984.73615,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,13.776388,9.1308317,117.93002,0,1,0,1,0,6.0030928,52,48,-9,-9,7,1,1,0,0,0,8,2,1,182,92649.93,163856.02,0,0,0,0,2912.3337 +9244,11239,20088,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1107.2651,-9,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.22449346,0,56.47,59.4,-9,-9,10,1,1,1,0,6,4,1,0,533,153182.84,0,0,0,0,0,-304.03638 +9244,11239,20089,-9,20088,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.99536,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,533,153182.84,0,0,0,0,0,-304.03638 +9245,11240,20090,20091,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.0019865,7.5117149,58,7,59.923237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4371777,53,46,57.57,9.51,8.333333333333334,1,1,0,0,0,5,2,1,2255,392355.88,174722.5,181342.28,0,0,0,2054.4814 +9245,11240,20091,20090,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,57,-7,-112.89613,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,9.51,53,46,5,1,1,0,0,0,5,2,1,2255,392355.88,174722.5,181342.28,0,0,0,2054.4814 +9246,11241,20092,20093,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7390509,7.7558918,66,3,-3.6005487,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7641304,7.2483692,55.33,42.18,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,560,261320.22,77354.063,146350.19,0,0,0,1206.6461 +9246,11241,20093,20092,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,66,-3,48.313622,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1893494,0,59.14,52.5,55.33,42.18,6.666666666666667,1,1,0,0,0,5,2,1,560,261320.22,77354.063,146350.19,0,0,0,1206.6461 +9247,11242,20094,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1535416,6.7052808,0,0,-885.17572,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.036911,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1108,138301.72,-20311.654,0,0,0,0,354.91922 +9248,11243,20095,20096,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.07512,7.9294558,0,9,7,170.88713,-9,-9,-9,2021,11,0,29,0,1,2,0,14.661657,14.661657,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,57.16,56.15,7,1,1,0,0,1,4,5,1,459.5,770109.5,579695.38,135433.41,28325.717,20151.082,677.25287,3949.2446 +9248,11243,20096,20095,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.0286388,8.5549717,0,9,-7,-170.09752,0,3,3,2021,6,0,59,59,1,0,0,16.394396,16.394396,.05,.05,0,0,0,0,0,0,0,0,0,1.2806596,0,57.16,56.15,49,48,8.333333333333334,1,1,0,0,11,4,5,1,459.5,770109.5,579695.38,135433.41,28325.717,20151.082,677.25287,3949.2446 +9249,11244,20097,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5424109,8.4573069,0,0,0,-1090.9147,0,2,-9,2021,6,0,47,87,1,0,0,17.997696,17.997696,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,1062,849656.75,526765.44,155730.22,40400.027,3468.4373,2095.0256,2480.5105 +9250,11245,20098,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.2189369,6.6611481,0,0,0,-1027.1627,-9,-9,-9,2021,6,0,6,0,1,0,0,22.471283,22.471283,0,0,0,0,0,0,0,0,0,0,0,2.3771138,0,62.49,55.09,-9,-9,10,4,6,0,0,14,13,2,1,270,-67349.742,0,150565.7,32003.832,0,0,-124.45624 +9250,11246,20099,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,6.8309622,6.9830842,0,0,0,-970.60382,0,3,3,2021,7,2,70,70,1,2,0,1.7556506,1.7556506,0,0,0,0,0,0,0,0,0,0,0,0,0,43.05,57.29,-9,-9,10,1,1,0,0,13,13,2,1,283,334757.22,130567.02,0,0,0,0,722.08582 +9251,11247,20100,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.595,-9,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,413,131211.5,0,0,0,0,0,175.93832 +9252,11248,20101,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,9.0700464,9.6000109,5.8423758,0,0,-1205.8031,0,2,2,2021,10,0,70,65,1,0,0,18.877489,18.877489,0,0,0,0,0,0,4.0287304,0,1,1,0,7.5513387,6.3057089,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,889,184725.61,-21045.574,0,0,1534.5416,1762.8408,3820.916 +9253,11249,20102,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9425511,7.8550358,0,0,0,-1073.516,0,3,3,2021,11,0,37,39,1,0,0,9.5163507,9.5163507,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,5,1,1,0,0,11,7,4,0,3148,-23706.285,0,0,0,0,0,602.87183 +9254,11250,20103,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.6400466,5.8720474,0,0,-782.33063,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5807967,47.91,28.34,-9,-9,6.666666666666667,1,1,0,1,0,6,2,1,1097,-118343.87,244479.86,0,0,0,0,288.37308 +9255,11251,20104,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1008.6153,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,30.860929,0,0,1,1,0,1.2440624,0,56.19,5.98,-9,-9,10,1,1,0,0,0,5,1,0,1227,37408.293,0,12153.391,0,521.71332,0,1902.4869 +9256,11252,20105,20106,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.4559569,7.4753032,0,1,-1,95.557716,-9,3,2,2021,16,6,36,0,1,6,0,6.8517523,6.8517523,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.24,47.55,52.44,51.54,5,3,4,0,1,5,6,2,0,637,-145852.31,94140.789,0,0,0,0,1654.4048 +9256,11252,20106,20105,-9,-9,1,0,31,0,0,0,2,2,-9,0,5,0,0,0,1,1,-79.21225,-9,-9,-9,2021,17,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.44,51.54,43.24,47.55,3.333333333333333,3,4,0,0,0,6,2,0,637,-145852.31,94140.789,0,0,0,0,1654.4048 +9257,11253,20107,-9,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,0,7.3875203,7.019691,0,0,-1068.0201,0,2,-9,2021,36,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,7.497211,18.01,25.88,-9,-9,0,1,1,0,0,8,12,2,0,649,352994.47,164274.88,0,0,20241.135,0,2956.6565 +9258,11254,20108,20109,-9,-9,1,0,54,1,1,0,3,3,-9,0,4,0,0,0,6,-18,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,53,57.16,56.15,8,2,3,0,0,0,9,1,1,1548,53022.504,0,0,0,0,0,1344.7299 +9258,11254,20109,20108,-9,-9,1,1,72,1,1,0,3,3,-9,0,4,0,0,0,6,18,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,53,8.333333333333334,2,3,0,0,0,9,1,1,1548,53022.504,0,0,0,0,0,1344.7299 +9258,11255,20110,-9,20108,20109,1,0,24,1,1,0,1,1,-9,0,4,8.1745186,7.9821177,0,0,0,-948.90186,0,3,3,2021,10,0,35,35,1,0,1,10.733086,10.733086,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1064,-193163.17,0,0,0,0,0,1566.2977 +9258,11256,20111,-9,20108,20109,1,0,21,1,1,1,2,0,0,0,5,0,0,0,0,0,-1096.9832,-9,3,3,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,2,1,1427,-183505.45,0,0,0,0,0,0 +9258,11257,20112,-9,20108,20109,1,0,18,1,1,1,2,0,0,0,5,0,0,0,0,0,-1016.4341,-9,3,3,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,828,-57386.059,0,0,0,0,0,0 +9258,11258,20113,20115,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.0914898,8.1972675,0,4,1,145.98888,0,-9,-9,2021,0,0,70,45,1,0,0,5.7035913,5.7035913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.75,56.99,8.333333333333334,2,3,0,0,3,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9258,11258,20114,-9,20115,20113,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-944.21704,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9258,11258,20115,20113,20108,20109,1,0,26,1,1,0,1,1,-9,0,4,8.0066204,7.7604275,0,4,-1,-20.316099,0,3,3,2021,12,0,38,38,1,0,0,10.722179,10.722179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.75,56.99,54.2,57.49,1.666666666666667,2,3,0,0,1,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9259,11259,20116,20117,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.4249744,7.5905933,46,-8,-132.47993,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5481,7.670927,54.27,53.56,59,53,8.333333333333334,1,1,0,0,4,10,3,0,846,1156435.4,488068.19,530383.31,0,0,0,1766.9075 +9259,11259,20117,20116,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.4337792,6.441267,46,8,-26.168655,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1002359,6.9115725,59,53,54.27,53.56,9,1,1,0,0,10,10,3,0,846,1156435.4,488068.19,530383.31,0,0,0,1766.9075 +9260,11260,20118,20119,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.8546543,8.8046694,0,2,6,19.527626,0,3,3,2021,10,0,36,37,1,0,0,19.748444,19.748444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.43,55.57,8.333333333333334,1,1,0,0,9,13,5,1,195,291384.31,104341.18,133500.67,35291.211,4745.1465,0,3689.209 +9260,11260,20119,20118,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2707376,8.2498579,0,2,-6,9.3448858,-9,-9,-9,2021,9,0,42,0,1,0,0,9.496254,9.496254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,57.06,57.76,8.333333333333334,1,1,0,0,2,13,5,1,195,291384.31,104341.18,133500.67,35291.211,4745.1465,0,3689.209 +9261,11261,20120,-9,20121,20123,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3149,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20121,20123,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,12,1,-28.943995,0,1,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.15366186,0,54.96,53.17,54.37,54.8,6.666666666666667,1,1,0,0,6,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20122,-9,20121,20123,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.048,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20123,20121,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.164299,9.1655025,0,12,-1,30.802382,0,2,1,2021,10,0,42,43,1,0,0,20.20635,20.20635,.05,.05,0,0,0,0,0,0,1,1,0,1.304933,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,10,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9262,11262,20124,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.284,0,-9,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,30.77,26.8,-9,-9,0,1,1,0,0,0,12,1,0,926,106723.9,0,0,0,0,0,1946.7098 +9263,11263,20125,20126,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,23,6,-73.042496,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,.05,1,0,2.1401861,0,0,1,1,0,0,0,62.73,16.34,59.88,45.34,10,1,1,0,0,4,7,4,1,1558.5,708867.5,114381.16,434941.41,0,0,0,3108.4868 +9263,11263,20126,20125,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.6817741,8.5067663,5.2653155,23,-6,59.558079,0,1,1,2021,9,0,55,50,1,0,0,12.022068,12.022068,0,0,0,0,0,0,0,7,1,1,0,0,5.4953384,59.88,45.34,62.73,16.34,10,1,1,0,0,10,7,4,1,1558.5,708867.5,114381.16,434941.41,0,0,0,3108.4868 +9264,11264,20127,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.4467421,8.7465696,0,0,0,-1048.6232,0,1,1,2021,6,0,90,55,1,0,0,8.8598938,8.8598938,.05,.05,0,0,0,0,0,0,0,0,0,6.1310568,0,66.06,38.34,-9,-9,6.666666666666667,1,1,0,0,6,7,5,0,3524,-74105.867,-74353.773,0,0,0,0,2926.8096 +9265,11265,20128,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,5.0206075,5.142487,0,0,-1048.0514,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,6.5171275,0,0,1,1,0,.2351127,5.340414,34.71,18.35,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,501,116821.59,0,0,0,0,0,1042.7705 +9266,11266,20129,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.5946,-9,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,1,0,0,1,1,0,1074,77284.625,0,0,0,0,0,1089.2961 +9266,11267,20130,-9,-9,20129,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-961.46338,0,1,2,2021,6,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,0,1,1,1,0,3,1,1,0,302,-54746.539,0,0,0,0,0,162.21829 +9267,11268,20131,20133,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,7.8543463,7.8119025,0,3,3,-84.477425,-9,-9,-9,2021,6,0,40,0,1,0,0,7.0274639,7.0274639,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,45.43,52.23,8.333333333333334,1,1,0,0,7,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20132,-9,20133,20131,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.0978,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20133,20131,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,7.0789022,7.1289248,0,3,-3,2.1868062,-9,2,2,2021,9,0,19,0,1,0,0,8.3782854,8.3782854,0,0,0,0,0,0,0,0,1,0,1,0,0,45.43,52.23,60.02,56.42,5,1,1,0,1,9,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20134,-9,20133,20131,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.02118,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9268,11269,20135,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.6279078,7.9138775,6.5865865,0,0,-914.42114,0,2,2,2021,12,3,35,25,1,3,0,6.8983903,6.8983903,0,0,0,0,0,0,0,0,1,1,0,6.597023,0,46.79,40.85,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,168,99079.305,0,0,0,0,0,3121.6174 +9269,11270,20136,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.0969639,6.8554063,0,0,0,-1069.793,0,-9,-9,2021,8,1,16,16,1,1,0,7.3707204,7.3707204,0,0,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,714,-217788.64,0,0,0,0,0,1238.2351 +9270,11271,20137,20139,-9,-9,1,1,57,2,1,0,2,2,-9,0,3,8.2785444,8.412447,0,28,8,64.034973,0,2,3,2021,11,0,30,16,1,0,0,13.981568,13.981568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.7,54.28,32.58,46.39,6.666666666666667,1,1,0,0,14,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20138,-9,-9,20137,1,1,0,2,1,1,3,0,-9,0,4,0,0,0,0,0,-946.94562,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,4,6,-9,0,0,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20139,20137,-9,-9,1,0,49,2,1,0,1,1,-9,0,2,8.6564322,8.7159595,0,26,-8,-57.62154,0,2,2,2021,22,8,98,98,1,8,0,5.4363928,5.4363928,.05,.05,0,0,0,0,0,28,1,1,0,0,0,32.58,46.39,37.7,54.28,1.666666666666667,1,1,0,0,11,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20140,-9,20139,20137,1,0,15,2,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.6809,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11272,20141,-9,20139,20137,1,1,21,2,1,0,2,2,0,0,2,0,0,0,0,0,-957.46881,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3047061,0,29.35,55.99,-9,-9,3.333333333333333,1,1,0,0,4,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20142,-9,-9,20141,1,1,13,2,1,1,3,0,-9,0,3,0,0,0,0,0,-961.51361,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20143,-9,-9,20141,1,1,12,2,1,1,3,0,-9,0,4,0,0,0,0,0,-988.18048,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20144,-9,-9,20141,1,0,1,2,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.6093,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9271,11273,20145,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.2536864,7.5857973,0,0,0,-1030.3572,0,-9,2,2021,8,1,38,38,1,1,0,4.2847881,4.2847881,0,0,0,0,0,0,0,0,0,0,0,5.0453939,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,965,-170878.78,185381.84,0,0,0,-374.52274,67.776344 +9272,11274,20146,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1360788,7.6796689,0,0,0,-1088.8387,0,-9,-9,2021,12,0,55,42,1,0,0,5.3503504,5.3503504,.05,.05,0,0,0,0,0,42,1,1,0,0,0,44.53,56.37,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,742,116438.05,114891.41,0,0,0,0,907.36151 +9272,11275,20147,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-968.31799,-9,-9,-9,2021,18,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.41,24.28,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,575,-51716.355,0,0,0,0,0,2133.5498 +9273,11276,20148,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.0900841,8.2676449,0,0,0,-1032.7916,0,2,-9,2021,7,0,50,53,1,0,0,5.9316421,5.9316421,0,0,0,0,0,0,0,0,0,0,0,7.5388665,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,1028,138854.28,-71971.055,110842.16,161563.81,0,0,2117.3552 +9274,11277,20149,20150,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,8.8415432,9.0865202,7.3608561,51,5,169.72046,0,3,2,2021,9,0,40,20,1,0,0,16.677769,16.677769,0,0,0,0,0,0,0,0,1,1,0,7.3605423,7.2611532,57.16,56.15,51.81,57.22,8.333333333333334,1,1,0,0,13,1,5,1,1112.5,746679.81,130102.52,143189.41,0,1242.282,0,6725.7295 +9274,11277,20150,20149,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.8219023,7.7298422,0,49,-5,33.262691,0,3,3,2021,7,0,17,17,1,0,0,19.920912,19.920912,0,0,0,0,0,0,0,0,1,1,0,7.1286745,0,51.81,57.22,57.16,56.15,8.333333333333334,1,1,0,0,13,1,5,1,1112.5,746679.81,130102.52,143189.41,0,1242.282,0,6725.7295 +9275,11278,20151,20152,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0968513,8.2239914,0,1,-1,-28.55275,-9,-9,-9,2021,11,1,60,0,1,1,0,7.7521191,7.7521191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,32.85,56.43,6.666666666666667,1,1,0,0,0,2,4,1,537,44505.719,-1879.8547,0,0,5133.3062,0,2145.6357 +9275,11278,20152,20151,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.8105578,7.9052725,0,1,1,-4.3359218,-9,-9,-9,2021,9,1,40,0,1,1,0,7.4544148,7.4544148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.85,56.43,48.45,57.49,5,1,1,0,0,7,2,4,1,537,44505.719,-1879.8547,0,0,5133.3062,0,2145.6357 +9276,11279,20153,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1000.6909,0,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,3.6810849,2.9173152,22.891518,0,1,1,0,0,0,27.26,38.11,-9,-9,5,1,1,0,0,0,9,1,0,84,65004.004,0,0,0,0,0,1050.1141 +9277,11280,20154,20155,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0112557,6.8388052,0,9,0,59.259655,0,2,2,2021,13,2,45,45,1,2,0,2.6427655,2.6427655,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.94,54.05,53.19,51.24,8.333333333333334,1,1,0,0,10,13,4,1,616,98811.43,16452.43,100226.55,37552.078,0,0,2000.8442 +9277,11280,20155,20154,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2709637,8.3060808,0,9,0,7.5717607,0,1,2,2021,6,0,60,45,1,0,0,6.7162914,6.7162914,.05,.05,0,0,0,0,0,0,0,0,0,5.1006455,0,53.19,51.24,43.94,54.05,8.333333333333334,1,1,0,0,10,13,4,1,616,98811.43,16452.43,100226.55,37552.078,0,0,2000.8442 +9277,11281,20156,-9,20154,20155,1,0,23,0,1,0,1,1,-9,0,3,7.903378,8.0022421,0,0,0,-1034.439,0,2,2,2021,6,0,32,26,1,0,1,5.6146336,5.6146336,0,0,0,0,0,0,0,0,0,0,0,0,0,53.63,51.24,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,3114,-82877.211,0,0,0,0,0,595.70886 +9277,11282,20157,-9,20154,20155,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1110.2754,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,0,13,1,1,312,-10845.957,0,0,0,0,0,0 +9278,11283,20158,20159,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.6814127,6.4569073,60,-2,42.580826,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.6386828,61.64,16.18,40.14,16.93,6.666666666666667,1,1,0,0,0,12,2,0,910,238738.06,24826.791,169545.66,0,0,0,2254.6128 +9278,11283,20159,20158,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.3917646,4.2023029,60,2,-24.260464,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,29.099434,0,0,1,1,0,4.11725,3.8877089,40.14,16.93,61.64,16.18,5,1,1,0,0,0,12,2,0,910,238738.06,24826.791,169545.66,0,0,0,2254.6128 +9279,11284,20160,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.8974,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,1,0,1,1,0,734,185423.91,0,0,0,0,0,921.02881 +9280,11285,20161,20162,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6473303,7.4579659,0,6,-8,48.210903,0,3,-9,2021,7,0,23,25,1,0,0,9.7536449,9.7536449,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,55.19,54.26,8.333333333333334,1,1,0,0,10,12,4,1,1008,505439.06,247188.05,100297.78,56014.125,0,0,2239.3115 +9280,11285,20162,20161,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1118145,8.4430351,6.5851059,6,8,83.52034,0,-9,-9,2021,9,0,37,41,1,0,0,9.1876631,9.1876631,.05,.05,0,0,0,0,0,0,0,0,0,0,7.1645598,55.19,54.26,56.33,51.02,10,1,1,0,0,7,12,4,1,1008,505439.06,247188.05,100297.78,56014.125,0,0,2239.3115 +9281,11286,20163,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.0214968,7.9431229,0,0,0,-905.51373,0,1,3,2021,12,0,15,-9,1,0,0,27.185295,27.185295,0,0,0,0,0,0,0,0,0,0,0,5.3137875,0,45.73,57.57,-9,-9,5,1,1,0,0,10,9,4,1,175,66328.406,170132.88,0,0,0,12270.765,1815.7455 +9282,11287,20164,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1114.871,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,10.583929,0,0,1,1,0,0,0,51.06,25.63,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,285,274427.19,0,229939.5,0,0,0,2194.7214 +9283,11288,20165,20166,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.9325018,8.0737591,0,10,-3,30.282551,0,2,1,2021,8,0,38,37,1,0,0,8.0206451,8.0206451,.05,.05,0,0,0,0,0,0,0,0,0,1.7049279,0,52.23,55.6,51.83,57.2,8.333333333333334,1,1,0,0,11,10,4,1,664,1727049,709277.13,613555.81,0,0,0,2054.6477 +9283,11288,20166,20165,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.7648964,7.7451205,0,10,3,90.687225,0,2,1,2021,12,0,36,0,1,0,0,7.1819921,7.1819921,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.23,55.6,8.333333333333334,1,1,0,0,11,10,4,1,664,1727049,709277.13,613555.81,0,0,0,2054.6477 +9284,11289,20167,20168,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,10,0,56.473209,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.89,27.8,60.27,25.33,5,1,1,0,0,0,11,2,0,694.5,291954.63,50190.117,121098.73,0,0,0,3046.2847 +9284,11289,20168,20167,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.4763932,6.2656059,10,9,-95.42038,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,4.2819009,0,42,1,1,0,0,6.5086675,60.27,25.33,28.89,27.8,6.666666666666667,1,1,0,0,0,11,2,0,694.5,291954.63,50190.117,121098.73,0,0,0,3046.2847 +9285,11290,20169,-9,20171,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5479,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9285,11290,20170,-9,20171,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9429,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9285,11290,20171,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.0216689,7.7051964,6.7801337,0,0,-1020.3403,0,2,2,2021,13,1,20,20,1,1,0,6.923471,6.923471,.05,.05,0,0,0,0,0,42,1,1,0,6.9018912,0,25.61,62.71,-9,-9,5,1,1,0,0,8,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9286,11291,20172,-9,20175,-9,1,0,26,0,1,0,2,2,-9,0,5,8.2062063,8.1639023,0,0,0,-951.65027,0,3,3,2021,8,1,40,45,1,1,1,9.2048025,9.2048025,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,4,5,0,0,4,8,4,0,603,-100036.64,0,0,0,-45.595665,0,1742.0313 +9286,11292,20173,20175,-9,-9,1,1,61,0,1,0,3,3,-9,0,3,7.2924776,7.289629,0,7,12,172.03793,0,-9,-9,2021,10,0,25,20,1,1,0,6.110188,6.110188,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,50,54,7,1,1,0,0,7,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9286,11292,20174,-9,20175,20173,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1152.7809,-9,3,3,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,1,0,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9286,11292,20175,20173,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,7,-12,32.912464,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,51,48,8,4,5,0,0,0,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9287,11293,20176,20177,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.8363934,7.1984954,45,2,-29.029501,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6998787,6.9853387,40.75,54.3,47.95,56.13,8.333333333333334,1,1,0,0,2,9,3,1,351.5,1630616,855231.5,582451.75,0,0,0,2574.5752 +9287,11293,20177,20176,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.292387,7.3072467,45,-2,-42.423641,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7927203,7.1220818,47.95,56.13,40.75,54.3,6.666666666666667,1,1,0,0,0,9,3,1,351.5,1630616,855231.5,582451.75,0,0,0,2574.5752 +9288,11294,20178,20179,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,7.8205371,7.9049821,61,2,-1.3178536,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2378664,8.2047148,59.07,40.19,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,1288.5,1109827.9,587168.88,290020.09,0,-109.52059,0,2829.9778 +9288,11294,20179,20178,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,7.4098277,7.2171125,61,-2,-39.318798,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5849214,7.3440638,59.04,45.74,59.07,40.19,8.333333333333334,1,1,0,0,0,12,4,1,1288.5,1109827.9,587168.88,290020.09,0,-109.52059,0,2829.9778 +9289,11295,20180,-9,20181,20182,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.39282,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9289,11295,20181,20182,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.9003744,8.9456749,0,5,0,28.053217,0,-9,-9,2021,10,1,43,43,1,1,0,21.377771,21.377771,0,0,0,0,0,0,0,0,1,1,0,8.2477798,0,64.16,27,46.08,57.2,8.333333333333334,1,1,0,0,6,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9289,11295,20182,20181,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.5001993,8.5071859,0,5,0,-82.707527,0,3,-9,2021,11,1,32,49,1,1,0,22.094034,22.094034,.05,.05,0,0,0,0,0,0,1,1,0,9.5320492,0,46.08,57.2,64.16,27,8.333333333333334,1,1,0,0,9,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9290,11296,20183,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.5127,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,25.458893,0,0,1,1,0,0,0,50.76,41.71,-9,-9,10,1,1,0,0,0,13,2,1,914,1633.2932,0,0,0,0,0,504.94299 +9291,11297,20184,20185,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.7584243,8.0509243,0,5,4,66.222839,0,-9,-9,2021,9,0,35,40,1,1,0,10.170527,10.170527,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51,56,43.84,58.37,8,2,3,0,0,1,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20185,20184,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,7.3005033,7.2043347,0,16,-4,32.838833,0,-9,-9,2021,12,0,22,22,1,0,0,10.308931,10.308931,0,0,0,0,0,0,0,0,1,0,1,0,0,43.84,58.37,51,56,6.666666666666667,2,3,0,0,9,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20186,-9,20185,20184,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.03046,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20187,-9,20185,20184,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.2948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9292,11298,20188,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.3043108,7.3941016,0,0,-950.27972,0,3,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3848433,7.5679021,42.05,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,319,634957.56,185552.59,330169,0,0,0,1669.8367 +9293,11299,20189,20190,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.8729935,5.7223592,66,-1,-54.777729,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.9977851,0,14.5,1,1,0,2.6787822,5.3914108,52.1,34.81,65.22,38.75,8.333333333333334,1,1,0,0,0,9,2,1,1806.5,456501.44,20397.926,0,0,0,0,838.41779 +9293,11299,20190,20189,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.3662825,6.2942152,66,1,-15.70233,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.6720352,6.29914,65.22,38.75,52.1,34.81,8.333333333333334,1,1,0,0,0,9,2,1,1806.5,456501.44,20397.926,0,0,0,0,838.41779 +9294,11300,20191,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0563011,8.444211,0,0,0,-897.74902,0,3,3,2021,12,1,46,56,1,1,0,13.043504,13.043504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,472,-4644.6035,74081.555,0,0,0,0,2429.6975 +9295,11301,20192,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7944956,7.9262185,0,0,-1063.3406,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0791159,8.0269852,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1679,1133300.6,450468.63,352812.16,0,0,0,1080.309 +9296,11302,20193,20194,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.761735,8.5935001,7.8444457,10,-3,24.633472,0,3,3,2021,7,0,17,18,1,0,0,24.202374,24.202374,.05,.05,0,0,0,0,0,14.5,0,0,0,5.5434656,7.399488,60.7,39.78,60.3,36.05,8.333333333333334,1,1,0,0,13,13,4,1,488,657487.31,409496.81,198698.39,-3603.7927,1310.0667,20299.289,2848.7144 +9296,11302,20194,20193,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.5376301,7.4086385,0,10,3,1.5904683,0,-9,-9,2021,8,0,40,30,1,0,0,4.5389113,4.5389113,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.3,36.05,60.7,39.78,8.333333333333334,1,1,0,0,13,13,4,1,488,657487.31,409496.81,198698.39,-3603.7927,1310.0667,20299.289,2848.7144 +9297,11303,20195,20196,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,8.8640089,8.6173792,0,1,1,75.693581,-9,3,3,2021,11,0,15,0,1,0,0,43.79015,43.79015,.05,.05,.05,0,0,0,0,42,1,1,0,0,0,59.46,46.99,60.12,54.8,1.666666666666667,1,1,0,0,4,4,5,0,1686,576254.5,434038.31,202927.94,137405.38,0,1243.8529,4784.4355 +9297,11303,20196,20195,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1055527,7.9944205,0,1,-1,66.175903,-9,-9,-9,2021,6,0,48,0,1,0,0,8.5500669,8.5500669,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,60.12,54.8,59.46,46.99,8.333333333333334,1,1,0,0,7,4,5,0,1686,576254.5,434038.31,202927.94,137405.38,0,1243.8529,4784.4355 +9297,11304,20197,-9,20195,20196,1,0,22,0,0,0,2,2,-9,0,3,7.4581785,7.5377312,0,0,0,-948.36328,-9,3,2,2021,11,0,35,0,1,0,1,5.981338,5.981338,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,6.666666666666667,1,1,0,0,4,4,3,0,1042,-46712.949,-1581.4982,0,0,0,0,660.8371 +9298,11305,20198,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1021.4542,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.16,37.37,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,1190,238374.45,-173480.11,0,0,0,0,473.59222 +9298,11306,20199,-9,20198,-9,1,0,32,0,0,0,2,2,-9,0,4,8.2594233,8.2130775,0,0,0,-1004.3963,0,3,-9,2021,21,9,37,36,1,9,1,22.689564,22.689564,.05,.05,0,0,0,0,0,7,1,0,1,0,0,33.26,61.9,-9,-9,6.666666666666667,2,3,0,0,10,8,5,0,371,155956.58,-10900.979,0,0,0,0,1760.4188 +9298,11307,20200,-9,20198,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1154.6752,0,3,3,2021,9,1,0,44,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,10,2,3,1,0,6,8,1,0,582,112419.74,0,0,0,0,0,0 +9298,11308,20201,-9,20198,-9,1,0,25,0,0,0,2,2,-9,0,3,7.6438141,7.7840924,0,0,0,-1076.7781,0,3,3,2021,13,0,28,28,1,3,1,7.7951565,7.7951565,0,0,0,0,0,0,0,0,1,0,1,0,0,41.69,48.36,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,347,67823.477,0,0,0,0,0,1820.9084 +9299,11309,20202,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.6468201,6.7342362,0,0,-1059.3746,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4357022,7.0284362,49.61,37.25,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,298,157682.14,69897.5,0,0,5194.6206,0,1496.0087 +9300,11310,20203,20206,-9,-9,1,1,38,0,3,0,3,3,-9,1,4,0,0,0,9,4,0,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.28,60.18,38.5,26.21,10,1,1,1,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20204,-9,20206,20203,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-974.28015,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20205,-9,20206,20203,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1087.8071,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20206,20203,-9,-9,1,0,34,0,3,0,2,2,-9,1,2,0,0,0,9,-4,0,0,-9,-9,2021,15,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.5,26.21,48.28,60.18,10,1,1,0,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20207,-9,20206,20203,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-933.43939,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9301,11311,20208,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1120.3743,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,1,151.85318,0,1335.8141,0,1,1,0,1.6754061,0,40,25,-9,-9,0,1,1,0,0,0,5,2,0,395,-232569.94,0,0,0,0,0,685.39172 +9302,11312,20209,20210,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,9,-5,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.49,48.71,29.36,51.92,5,1,1,1,0,1,12,1,1,1537.5,-67880.031,-22083.418,0,0,0,7300.7549,1281.8055 +9302,11312,20210,20209,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,0,0,0,9,5,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.36,51.92,35.49,48.71,3.333333333333333,1,1,0,0,0,12,1,1,1537.5,-67880.031,-22083.418,0,0,0,7300.7549,1281.8055 +9303,11313,20211,20212,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4852343,8.677227,0,27,6,-12.287425,0,-9,-9,2021,3,0,45,30,1,0,0,15.176378,15.176378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,58.56,46.45,8.333333333333334,1,1,0,0,13,12,5,1,1478.5,760229.13,442967.78,624269.38,213941.72,0,1332.4033,2824.9189 +9303,11313,20212,20211,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.1639585,8.0863056,0,27,-6,-23.428225,0,3,3,2021,7,0,28,28,1,0,0,12.731413,12.731413,0,0,0,0,0,0,0,2,0,0,0,6.7032127,0,58.56,46.45,59.43,49.68,8.333333333333334,1,1,0,0,13,12,5,1,1478.5,760229.13,442967.78,624269.38,213941.72,0,1332.4033,2824.9189 +9303,11314,20213,-9,20212,20211,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-988.39453,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,-9,-9,1.666666666666667,1,1,0,0,2,12,1,1,2754,-96615.148,0,0,0,0,0,0 +9304,11315,20214,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1318769,8.1934195,0,3,0,6.3733826,0,2,2,2021,7,0,40,37,1,0,0,11.226021,11.226021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,3,9,3,0,1379,-138974.48,-46810.746,73099.266,79012.453,20790.549,0,1553.4996 +9304,11316,20215,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,3,0,-6.9218731,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,1,0,0,9,3,0,707,182433.34,-69494.133,0,0,0,0,-160.07507 +9305,11317,20216,20217,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,6.5036569,6.4390898,0,41,1,-38.968014,0,3,3,2021,0,0,60,50,1,0,0,1.103568,1.103568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,0,1,1,0,0,12,2,3,1,1083,387451.13,238135.5,82731.484,0,0,0,482.83923 +9305,11317,20217,20216,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.2407122,7.4538803,0,10,-1,143.66621,0,-9,-9,2021,6,0,8,12,1,0,0,20.239517,20.239517,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,2,3,1,1083,387451.13,238135.5,82731.484,0,0,0,482.83923 +9306,11318,20218,20219,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,7.4139719,7.7709613,5.7771478,21,11,24.65617,0,3,2,2021,7,0,30,30,1,0,0,8.3206673,8.3206673,0,0,0,0,0,0,0,0,1,1,0,8.8010101,5.9166923,57.91,46.15,60.04,39.68,8.333333333333334,1,1,0,0,11,9,3,1,1227.5,1006107,167246.03,509375.22,0,0,0,3534.5852 +9306,11318,20219,20218,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,21,-11,53.882206,0,2,3,2021,9,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9745317,0,60.04,39.68,57.91,46.15,8.333333333333334,1,1,0,0,10,9,3,1,1227.5,1006107,167246.03,509375.22,0,0,0,3534.5852 +9306,11319,20220,-9,20219,20218,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-990.97601,-9,1,1,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4068937,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,259,-22198.98,0,0,0,0,0,1791.8054 +9307,11320,20221,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.6440487,7.0354733,0,0,-1022.1741,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,1.9820073,0,1,1,0,5.4420629,6.6519299,59.18,14.93,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1282,919333.56,48526.859,131046.37,0,0,0,1422.8326 +9308,11321,20222,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.4483237,7.5249867,0,0,0,-986.24719,0,2,3,2021,8,0,40,48,1,0,0,5.3624053,5.3624053,0,0,0,0,0,0,0,7,0,0,0,0,0,50.52,47.59,-9,-9,6.666666666666667,1,1,0,1,11,9,3,0,540,77370.461,0,241041.02,0,0,0,511.4028 +9308,11322,20223,-9,-9,20222,1,1,25,0,0,0,2,2,-9,0,3,7.8033566,7.7709565,0,0,0,-987.27417,0,3,2,2021,11,0,39,37,1,0,1,8.5278416,8.5278416,0,0,0,0,0,0,0,0,0,0,0,2.0184774,0,56.67,48.31,-9,-9,6.666666666666667,1,1,0,0,5,9,4,0,275,-132986.31,0,0,0,0,0,590.90405 +9309,11323,20224,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.6110711,7.6450925,0,0,0,-1039.8547,0,3,2,2021,7,1,33,0,1,1,0,7.2072873,7.2072873,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,53.82,-9,-9,0,1,1,0,0,2,8,3,0,238,36606.605,0,0,0,5887.3696,0,2933.0037 +9309,11324,20225,-9,20224,-9,1,1,22,0,0,0,2,2,-9,0,5,7.9351797,8.2808943,0,0,0,-1087.5439,0,3,-9,2021,0,0,35,41,1,0,0,10.400899,10.400899,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,8,3,0,629,157260.09,0,0,0,0,0,888.71869 +9310,11325,20226,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1349316,7.9721451,0,0,0,-1071.2455,0,2,3,2021,11,0,35,35,1,1,0,8.8620338,8.8620338,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,222,15628.93,0,0,0,0,0,1465.5162 +9311,11326,20227,20228,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,9.1551161,9.288147,7.6702123,5,22,-12.387097,0,-9,-9,2021,10,0,20,20,1,1,0,53.864822,53.864822,0,0,0,0,0,0,0,0,1,1,0,7.1698966,7.8706236,53,46,57.06,57.76,7,1,1,0,0,1,9,5,1,1047.5,1334821.5,0,486195.91,0,0,0,6872.6743 +9311,11326,20228,20227,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.9906416,7.9311056,0,26,-22,-87.8936,0,3,3,2021,8,0,20,0,1,0,0,19.864355,19.864355,0,0,0,0,0,0,0,0,1,1,0,4.4800882,0,57.06,57.76,53,46,10,1,1,0,0,1,9,5,1,1047.5,1334821.5,0,486195.91,0,0,0,6872.6743 +9312,11327,20229,20230,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.2894073,6.0955439,36,8,-72.237968,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.2709112,6.3930249,59.29,49.68,36.77,14.57,8.333333333333334,1,1,0,0,0,4,2,1,1172,415134.66,116498.12,308441.78,0,0,0,1342.3196 +9312,11327,20230,20229,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,36,-8,-43.819897,0,2,2,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,14.57,59.29,49.68,6.666666666666667,1,1,0,0,0,4,2,1,1172,415134.66,116498.12,308441.78,0,0,0,1342.3196 +9313,11328,20231,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.37779,6.8216147,0,0,-953.10022,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8258238,6.7618752,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,819,335383.81,1159.1356,249721.53,0,0,0,238.2245 +9314,11329,20232,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.46893,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.71,54.32,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,556,0,0,0,0,0,0,431.40927 +9315,11330,20233,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,0,0,0,0,0,-922.24347,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.2,37.56,-9,-9,5,1,1,0,0,0,12,1,0,466,-39125.223,25813.994,74617.766,0,0,0,1562.7589 +9316,11331,20234,-9,20235,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.5838,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9316,11331,20235,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,5,5.8464656,5.987011,0,0,0,-978.00305,0,2,-9,2021,16,4,28,0,1,4,0,1.7308115,1.7308115,0,0,0,0,0,0,0,0,1,1,0,0,0,35.03,66.34999999999999,-9,-9,5,1,1,0,1,1,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9316,11331,20236,-9,20235,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.5714,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9317,11332,20237,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-858.6275,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,13,1,0,558,179859.44,0,0,0,0,644.17834,2038.647 +9318,11333,20238,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.6717043,8.4840565,0,0,-992.20544,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.425108,8.597991,47.1,21.74,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,1821,2062579.9,1533965.5,111131.85,0,0,0,3016.4958 +9319,11334,20239,20240,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.6480374,7.8195596,36,5,140.89296,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8831062,7.3491178,47.05,37.79,66.14,26.06,6.666666666666667,1,1,0,0,0,9,4,1,592.5,1987937,1057082.5,626451.63,0,0,0,2060.7783 +9319,11334,20240,20239,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7468119,7.7721601,2.7698364,36,-5,-24.579317,0,2,2,2021,7,0,26,31,1,0,0,10.486504,10.486504,0,0,0,0,0,0,0,2,0,0,0,2.2679,2.5150094,66.14,26.06,47.05,37.79,8.333333333333334,1,1,0,0,11,9,4,1,592.5,1987937,1057082.5,626451.63,0,0,0,2060.7783 +9319,11335,20241,-9,20240,20239,1,1,31,0,0,0,2,2,-9,0,3,7.8922296,7.6652164,0,0,0,-1117.561,0,2,1,2021,8,0,41,40,1,0,1,10.408366,10.408366,.05,.05,0,0,0,0,0,0,0,0,0,1.8582869,0,55.22,46.37,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,1358,1642.2937,-42357.863,0,0,0,0,2143.2217 +9320,11336,20242,20243,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.4301963,7.4149346,0,9,-2,-45.092182,0,-9,-9,2021,15,3,24,25,1,3,0,10.192021,10.192021,.05,.05,0,0,0,0,0,0,1,1,0,.32355157,0,36.87,58.96,59.43,58.05,8.333333333333334,1,1,0,0,11,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20243,20242,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.9128428,8.9837456,0,9,2,99.339233,0,-9,-9,2021,6,0,37,40,1,0,0,21.17408,21.17408,.05,.05,0,0,0,0,0,0,1,1,0,.45653591,0,59.43,58.05,36.87,58.96,1.666666666666667,1,1,0,0,10,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20244,-9,20242,20243,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.6448,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20245,-9,20242,20243,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.05762,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9321,11337,20246,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.6524258,4.7710738,0,0,-894.29797,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8929954,34.42,33.26,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,1020,215080.66,96834.438,0,0,0,0,352.11081 +9322,11338,20247,-9,20251,20248,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.40051,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20248,20251,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6640739,8.7555475,0,8,-2,-96.374893,0,2,-9,2021,14,2,42,46,1,2,0,16.332962,16.332962,.05,.05,0,0,0,0,0,0,1,1,0,2.2981386,0,51.49,53.31,57.59,46.65,8.333333333333334,1,1,0,0,11,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20249,-9,20251,20248,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1032.817,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20250,-9,20251,20248,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1052.1686,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.25,45.63,-9,-9,10,1,1,0,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20251,20248,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2790413,8.3633013,0,8,2,-.54870409,0,2,3,2021,5,0,33,5,1,0,0,15.933982,15.933982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.59,46.65,51.49,53.31,8.333333333333334,1,1,0,0,4,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9323,11339,20252,20254,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,6.7759318,6.9799385,0,8,6,13.106644,0,3,2,2021,9,2,18,15,1,2,0,7.323215,7.323215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.45,43.78,56.64,39.81,6.666666666666667,1,1,0,0,11,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9323,11339,20253,-9,20254,20252,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.66718,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9323,11339,20254,20252,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,0,0,0,8,-6,128.63582,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.64,39.81,51.45,43.78,6.666666666666667,1,1,0,0,9,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9324,11340,20255,20256,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.6997967,7.8399277,54,1,84.286232,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8384109,54,46,40,23,8,1,1,0,0,0,7,3,1,752.5,791413.63,143876.06,445279.06,0,0,0,2187.0356 +9324,11340,20256,20255,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,54,-1,40.82806,0,2,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5320992,0,40,23,54,46,3.333333333333333,1,1,0,0,0,7,3,1,752.5,791413.63,143876.06,445279.06,0,0,0,2187.0356 +9325,11341,20257,20258,-9,-9,1,0,46,1,2,0,2,2,-9,0,3,6.6705475,6.5562944,0,6,5,-45.241436,0,-9,2,2021,14,3,11,11,1,3,0,7.9821424,7.9821424,0,0,0,0,0,0,0,2,1,1,0,6.1704669,0,43.71,56.91,52,54.51,8.333333333333334,1,1,0,0,5,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20258,20257,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.9091654,8.821249,0,6,-5,-71.145821,0,2,2,2021,8,0,53,47,1,0,0,15.488569,15.488569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,43.71,56.91,8.333333333333334,1,1,0,0,13,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20259,-9,20257,20258,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.11908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20260,-9,20257,20258,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.63055,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9326,11342,20261,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,2,8.4183254,8.4921255,0,0,0,-1035.8002,0,1,3,2021,14,2,83,43,1,2,0,6.7586746,6.7586746,.05,.05,0,0,0,0,0,7,1,1,0,0,0,41.23,53.22,-9,-9,3.333333333333333,1,1,0,0,12,13,4,1,1726,46822.988,-335.11133,0,0,0,2528.2432,2081.4399 +9326,11342,20262,-9,20261,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.45404,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1726,46822.988,-335.11133,0,0,0,2528.2432,2081.4399 +9327,11343,20263,-9,-9,-9,1,0,46,1,2,0,2,2,0,0,2,0,0,0,0,0,-959.11017,-9,2,-9,2021,34,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.02,32.44,-9,-9,1.666666666666667,3,4,0,1,2,8,1,0,4035,0,0,0,0,0,0,-239.84752 +9327,11344,20264,-9,20263,-9,1,1,22,1,2,0,2,2,-9,0,5,9.0175505,8.3312712,0,0,0,-963.04156,0,2,-9,2021,4,1,90,50,1,1,1,6.601985,6.601985,0,0,0,0,0,0,0,0,1,0,1,2.47577,0,63.38,53.47,-9,-9,10,3,4,0,0,2,8,5,0,294,222713.95,0,283333.91,121185.64,0,0,2836.2002 +9327,11345,20265,-9,20263,-9,1,1,18,1,2,1,2,0,0,0,5,0,0,0,0,0,-885.09204,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.06,49.22,-9,-9,5,3,4,0,0,0,8,1,0,63,-77031.555,0,0,0,0,0,0 +9327,11346,20266,-9,20268,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-850.33136,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9327,11346,20267,-9,20268,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5333,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9327,11346,20268,-9,20263,-9,1,0,27,1,2,0,2,2,-9,0,5,0,0,0,0,0,-760.79114,-9,2,-9,2021,3,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,10,3,4,1,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9328,11347,20269,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1004.5159,-9,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,1,1,0,6,1,0,522,0,0,0,0,0,0,176.14764 +9329,11348,20270,20271,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.7924609,7.0755453,21,-2,-58.175621,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7542248,6.8048706,60.12,41.6,58.15,52.91,10,1,1,0,0,5,9,2,1,369.5,773591.38,333438.25,421766.94,0,0,0,1264.7305 +9329,11348,20271,20270,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.1937032,5.3616037,21,2,34.649487,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.9385262,58.15,52.91,60.12,41.6,8.333333333333334,1,1,0,0,5,9,2,1,369.5,773591.38,333438.25,421766.94,0,0,0,1264.7305 +9330,11349,20272,20273,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.9769735,8.9937735,0,6,3,-73.933678,0,-9,-9,2021,6,0,40,38,1,0,0,26.411114,26.411114,.05,.05,0,0,0,0,0,0,0,0,0,2.4511693,0,57.06,57.76,38.21,54.03,10,1,1,0,0,9,8,5,1,1046,411621.63,129281.34,209564.86,33629.656,2112.2039,0,3162.9277 +9330,11349,20273,20272,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,6.7352929,6.6215754,0,6,-3,30.994299,0,2,2,2021,23,11,15,0,1,11,0,6.3692074,6.3692074,0,0,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.06,57.76,5,1,1,0,0,7,8,5,1,1046,411621.63,129281.34,209564.86,33629.656,2112.2039,0,3162.9277 +9331,11350,20274,20275,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,6.2500544,6.4792252,24,7,49.753864,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,5.8326478,41.69,41.7,46.98,59.35,6.666666666666667,1,1,0,0,6,5,4,1,482.5,793657,576347.81,191499.92,0,-563.12268,0,1497.9827 +9331,11350,20275,20274,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.4869261,8.6400967,0,23,-7,-8.6086464,0,3,2,2021,9,0,49,47,1,0,0,12.201836,12.201836,0,0,0,0,0,0,0,2,0,0,0,2.2154436,0,46.98,59.35,41.69,41.7,5,1,1,0,0,10,5,4,1,482.5,793657,576347.81,191499.92,0,-563.12268,0,1497.9827 +9331,11351,20276,-9,20275,20274,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1172.6139,0,2,2,2021,10,0,0,41,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,1,52,0,0,0,0,0,0,-83.010399 +9332,11352,20277,-9,20278,-9,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-960.47375,-9,2,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,5,1,1,0,0,4,4,3,1,591.5,118073.02,31162.633,161609.19,19029.48,0,0,1635.8226 +9332,11352,20278,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.0951996,7.3105202,6.3664637,0,0,-941.22626,0,2,2,2021,9,0,20,24,1,0,0,8.2934113,8.2934113,.05,.05,0,0,0,0,0,0,1,0,1,6.7355013,0,51.42,48.12,-9,-9,5,1,1,0,0,14,4,3,1,591.5,118073.02,31162.633,161609.19,19029.48,0,0,1635.8226 +9332,11353,20279,-9,20278,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4265079,8.4713707,0,0,0,-980.05316,0,2,-9,2021,12,0,39,41,1,0,1,12.926494,12.926494,0,0,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,856,-48090.516,0,0,0,0,0,2492.5051 +9332,11354,20280,-9,20278,-9,1,1,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1081.5115,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.8442392,0,17.17,47.92,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,2375,0,0,0,0,0,0,250.1143 +9333,11355,20281,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.9860888,7.0824413,0,0,0,-878.97589,0,3,-9,2021,19,7,17,0,1,7,0,7.3334475,7.3334475,0,0,0,0,0,0,0,0,1,0,1,0,0,42.44,57.54,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,535,113056.78,0,0,0,0,0,929.59595 +9333,11356,20282,-9,20281,-9,1,0,22,0,0,0,1,1,1,0,5,7.5872993,7.6492658,0,0,0,-878.89636,-9,2,-9,2021,16,4,30,0,1,4,1,7.6407237,7.6407237,0,0,0,0,0,0,0,0,1,0,1,.32907817,0,37.42,63,-9,-9,5,4,2,0,1,7,8,3,0,568,-106963.96,0,0,0,0,0,448.94736 +9334,11357,20283,20284,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.6881447,8.5970974,0,8,0,16.62677,0,2,2,2021,6,0,49,40,1,0,0,17.19998,17.19998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.58,52.86,8.333333333333334,1,1,0,0,10,9,5,0,1368.5,157200.16,100952.64,0,0,0,0,3113.7954 +9334,11357,20284,20283,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.5002189,6.9280744,0,8,0,24.152805,0,2,2,2021,12,2,30,30,1,2,0,5.8573794,5.8573794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,57.33,53.46,5,1,1,0,0,10,9,5,0,1368.5,157200.16,100952.64,0,0,0,0,3113.7954 +9335,11358,20285,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,5.5846758,5.3237939,0,0,-1013.0936,0,-9,-9,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,25.036917,0,27,1,1,0,0,5.1457605,24.93,19.95,-9,-9,0,1,1,0,1,0,8,2,0,368,-101040.02,0,0,0,0,0,1743.2987 +9335,11359,20286,-9,20285,-9,1,1,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.9353,0,3,-9,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,25.98,34.53,-9,-9,0,4,2,0,1,0,8,1,0,141,231323.41,0,0,0,0,0,7.0769582 +9336,11360,20287,20289,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,9,14,0,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.83,36.36,46.8,57.03,0,1,1,0,0,0,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11360,20288,-9,20287,20289,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1045.7958,-9,2,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.56,60.86,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11360,20289,20287,-9,-9,1,1,31,0,1,0,2,2,-9,1,3,0,0,0,9,-14,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.8,57.03,24.83,36.36,5,1,1,1,0,3,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11361,20290,-9,20287,20289,1,1,18,0,1,0,2,2,-9,1,4,0,0,0,0,0,-913.24243,1,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.26,56.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,642,0,0,0,0,0,0,218.97107 +9337,11362,20291,20292,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.7186804,8.6847944,0,5,-13,-28.92861,0,2,2,2021,6,0,37,37,1,0,0,16.000446,16.000446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,48.28,60.18,8.333333333333334,1,1,0,0,9,10,5,1,674,1660893.5,959561.38,470150.06,93944.516,0,0,3861.062 +9337,11362,20292,20291,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4650774,8.4169016,6.7709579,5,13,-10.54128,0,-9,-9,2021,8,0,68,52,1,0,0,6.9297414,6.9297414,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.112906,48.28,60.18,49.86,55.31,8.333333333333334,1,1,0,0,9,10,5,1,674,1660893.5,959561.38,470150.06,93944.516,0,0,3861.062 +9338,11363,20293,20294,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,52,-1,-48.710182,0,1,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,17.955231,0,7,1,1,0,0,0,55.84,49.96,51.66,28.08,6.666666666666667,1,1,0,0,5,1,3,1,1309,668162.5,356854.06,238509.19,0,0,0,2073.9792 +9338,11363,20294,20293,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.961762,7.9161148,50,1,-1.0178185,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8536787,51.66,28.08,55.84,49.96,6.666666666666667,1,1,0,0,0,1,3,1,1309,668162.5,356854.06,238509.19,0,0,0,2073.9792 +9339,11364,20295,20296,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8046064,8.8810625,0,9,5,-3.6568217,-9,-9,-9,2021,10,1,37,0,1,1,0,21.107853,21.107853,.05,.05,.05,0,0,0,0,2,0,0,0,1.9509287,0,55.53,51.55,60.35,31.58,8.333333333333334,1,1,0,0,14,9,5,1,801,84277.297,99940.18,426769.94,277342.56,8354.543,5112.5889,5067.3975 +9339,11364,20296,20295,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5387087,8.2169237,0,9,-5,-4.2444272,0,2,2,2021,10,2,37,37,1,2,0,14.793164,14.793164,.05,.05,0,0,0,0,0,0,0,0,0,.177424,0,60.35,31.58,55.53,51.55,6.666666666666667,2,3,0,0,13,9,5,1,801,84277.297,99940.18,426769.94,277342.56,8354.543,5112.5889,5067.3975 +9340,11365,20297,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-930.00989,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,9.7784939,5.2981553,81.744949,0,1,1,0,0,0,49.09,22.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,386,112611.7,0,33995.254,0,0,0,203.04753 +9341,11366,20298,20299,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0376644,8.3038015,0,17,2,-100.66117,0,2,2,2021,7,0,38,42,1,0,0,11.338243,11.338243,0,0,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,377,39620.555,44530.84,0,0,15441.775,0,1974.1621 +9341,11366,20299,20298,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.908102,7.7975168,0,17,-2,-1.3237089,0,3,3,2021,6,0,38,38,1,0,0,7.8406138,7.8406138,0,0,0,0,0,0,0,2,0,0,0,3.9240403,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,2,4,1,377,39620.555,44530.84,0,0,15441.775,0,1974.1621 +9342,11367,20300,20301,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.2984838,7.2771502,5,-2,-18.571817,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1726875,7.6876273,58.05,54.52,58.05,54.52,0,1,1,0,0,2,10,5,1,639.5,2009636.3,1259644.4,295517.72,0,0,0,5882.231 +9342,11367,20301,20300,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.4415092,8.6362009,5,2,92.9673,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6133075,8.9118099,58.05,54.52,58.05,54.52,10,1,1,0,0,0,10,5,1,639.5,2009636.3,1259644.4,295517.72,0,0,0,5882.231 +9343,11368,20302,20303,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.7194352,8.2137156,0,13,-3,-29.159615,0,-9,-9,2021,12,2,8,8,1,2,0,37.981972,37.981972,.05,.05,0,0,0,0,0,0,0,0,0,8.9735069,0,50.95,47.91,44.59,59.08,10,1,1,0,0,14,8,4,1,1510,38527.859,264162.84,0,0,0,0,8914.874 +9343,11368,20303,20302,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.1751242,8.1060238,0,33,3,-111.09203,0,2,2,2021,10,1,1,1,1,1,0,349.09805,349.09805,0,0,0,0,0,0,0,0,0,0,0,9.8383741,0,44.59,59.08,50.95,47.91,8.333333333333334,1,1,0,0,2,8,4,1,1510,38527.859,264162.84,0,0,0,0,8914.874 +9344,11369,20304,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0622272,9.0249548,0,0,0,-1019.6185,0,2,3,2021,15,3,38,41,1,3,0,21.00536,21.00536,.05,.05,0,0,0,0,0,0,0,0,0,2.2564647,0,43.84,58.37,-9,-9,5,1,1,0,1,10,9,5,0,326,533716.31,527946.94,330714.75,181127.06,0,0,2931.5864 +9345,11370,20305,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.5741377,8.5654068,7.413394,0,0,-970.37933,0,2,2,2021,8,0,55,48,1,0,0,9.7536402,9.7536402,0,0,0,0,0,0,0,0,1,1,0,0,7.289073,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,168,-20961.457,0,45525.352,33594.289,0,0,4196.3115 +9346,11371,20306,20308,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.6745558,9.3375082,0,10,4,-38.604156,0,1,1,2021,6,0,40,50,1,0,0,43.954185,43.954185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.53,56.44,8.333333333333334,2,3,0,0,11,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20307,-9,20308,20306,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.7608,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20308,20306,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,0,0,0,10,-4,34.168613,0,1,1,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,60.12,54.8,10,2,3,0,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20309,-9,20308,20306,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.83691,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9347,11372,20310,20311,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,9.1277971,9.008028,0,9,-1,85.212669,0,2,1,2021,14,3,46,45,1,3,0,23.012424,23.012424,0,0,.05,0,0,0,0,0,1,1,0,1.335407,0,31.57,58.67,36.13,54.74,3.333333333333333,1,1,0,0,8,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11372,20311,20310,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.1275663,8.159544,0,29,1,45.353069,0,2,2,2021,22,10,38,23,1,10,0,10.698266,10.698266,0,0,.05,0,0,0,0,0,1,1,0,1.8970585,0,36.13,54.74,31.57,58.67,3.333333333333333,1,1,0,0,9,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11372,20312,-9,20310,20311,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-936.18854,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,0,0,0,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11373,20313,-9,20310,20311,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1039.731,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,1973,-31372.803,0,0,0,0,0,0 +9348,11374,20314,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,6.7483139,6.5830765,0,0,-935.44733,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4079566,58.65,52.89,-9,-9,10,1,1,0,0,0,1,2,1,560,375099.88,-157886.84,123448.03,0,0,0,1100.726 +9349,11375,20315,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.3517365,7.3375316,0,0,-1015.1642,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8096364,0,0,1,1,0,3.4090791,7.8180141,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,211,381336.19,236316.22,145932.83,0,0,0,1559.8904 +9350,11376,20316,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0071745,8.9964809,0,0,0,-935.92719,0,2,2,2021,7,0,39,40,1,0,0,23.403313,23.403313,0,0,0,0,0,0,0,0,0,0,0,7.184721,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,242,446430.41,252093.47,0,0,0,0,3644.2756 +9351,11377,20317,20318,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,12,-1,-28.32477,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.75,30.25,58.75,51.28,8.333333333333334,1,1,0,0,10,11,4,1,1768,1172908.1,767744.69,383910.94,0,0,0,2091.8801 +9351,11377,20318,20317,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.641716,8.5671663,0,12,1,41.773418,0,2,2,2021,10,0,48,74,1,0,0,14.240843,14.240843,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.75,51.28,68.75,30.25,8.333333333333334,1,1,0,0,13,11,4,1,1768,1172908.1,767744.69,383910.94,0,0,0,2091.8801 +9352,11378,20319,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7929006,7.701364,5.1133304,0,0,-1010.6984,0,3,3,2021,6,0,37,31,1,0,0,9.3868637,9.3868637,0,0,0,0,0,0,0,0,1,1,0,4.7935619,5.1423593,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1023,88741.977,47137.617,0,0,8155.4395,0,1514.8778 +9353,11379,20320,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0018082,6.9374814,0,0,-968.7135,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.980958,0,0,1,1,0,0,6.6499834,69.48999999999999,28.65,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,417,-69719.406,89380.141,0,0,0,0,1773.4075 +9354,11380,20321,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.248426,7.3356385,0,0,0,-963.29382,0,2,1,2021,10,0,35,35,1,0,0,6.549603,6.549603,.05,.05,0,0,0,0,0,7,0,0,0,0,0,56.18,48.68,-9,-9,6.666666666666667,1,1,0,0,13,2,3,1,490,255734.88,60240.664,0,0,0,-289.33746,457.87384 +9354,11381,20322,-9,20321,-9,1,1,22,0,0,0,3,3,-9,0,4,0,0,0,0,0,-963.25824,0,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,6.666666666666667,1,1,1,1,2,2,1,1,645,0,0,0,0,0,0,0 +9355,11382,20323,20324,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,8.124629,8.1931963,53,-5,-12.329295,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8686419,43.1,34.14,39.53,27.92,6.666666666666667,1,1,0,0,0,8,5,1,395,3551906.8,594308.25,1169050.9,0,0,0,5498.2402 +9355,11382,20324,20323,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,8.5144567,8.6149416,53,5,-122.8788,0,2,1,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4425564,39.53,27.92,43.1,34.14,5,2,3,0,0,0,8,5,1,395,3551906.8,594308.25,1169050.9,0,0,0,5498.2402 +9356,11383,20325,20326,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.0007524,7.7470264,0,21,-4,-5.355999,0,2,3,2021,10,0,34,34,1,1,0,11.200689,11.200689,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,50.5,50.42,8,2,3,0,0,8,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11383,20326,20325,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,8.3968964,8.330513,0,21,4,-27.02393,0,2,2,2021,15,2,47,37,1,2,0,10.949279,10.949279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.5,50.42,49,55,5,2,3,0,1,9,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11383,20327,-9,20325,20326,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-998.47418,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11384,20328,-9,20325,20326,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1031.3245,-9,2,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,4,1,1,982,-400320.97,0,0,0,0,0,0 +9357,11385,20329,-9,20331,20330,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.1223,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20330,20331,-9,-9,1,1,24,1,2,0,2,2,-9,0,3,7.98524,8.1897182,0,5,-1,-142.14256,0,2,2,2021,12,3,45,50,1,3,0,7.2597194,7.2597194,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.23,41.93,48.45,57.21,6.666666666666667,1,1,0,0,6,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20331,20330,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.0927892,7.0992699,0,5,1,-54.382923,0,-9,-9,2021,6,0,24,18,1,0,0,4.9159284,4.9159284,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.21,43.23,41.93,10,1,1,0,0,2,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20332,-9,20331,20330,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8993,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9358,11386,20333,20336,-9,-9,1,1,38,1,2,0,2,2,-9,1,4,8.0580616,8.0514593,0,8,-1,-66.982231,0,2,2,2021,11,0,40,-9,1,0,0,9.6262407,9.6262407,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.74,43.46,51.42,48.12,6.666666666666667,1,1,0,0,10,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20334,-9,20336,20333,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6561,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20335,-9,20336,20333,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0543,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20336,20333,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,8,1,-48.658016,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,57.74,43.46,6.666666666666667,1,1,0,0,7,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9359,11387,20337,20338,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9472041,6.8535943,48,-2,116.3898,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4963565,7.1289029,48.37,44.11,60.12,54.8,8.333333333333334,1,1,0,0,6,7,3,1,1125,467364.88,15096.771,384034.31,0,0,0,3259.6851 +9359,11387,20338,20337,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.6614037,7.2165737,6.3724785,48,2,35.59539,0,-9,-9,2021,5,0,10,16,1,0,0,10.493494,10.493494,.05,.05,.05,0,0,0,0,0,1,1,0,6.5589409,6.9629302,60.12,54.8,48.37,44.11,10,1,1,0,0,12,7,3,1,1125,467364.88,15096.771,384034.31,0,0,0,3259.6851 +9360,11388,20339,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.6179695,9.0030022,0,0,0,-1004.9335,0,2,2,2021,10,1,50,0,1,1,0,13.572763,13.572763,0,0,0,0,0,0,0,0,0,0,0,4.3260899,0,36.44,56.63,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,626,164084.8,0,0,0,0,0,2822.2488 +9361,11389,20340,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.4900599,7.4786434,0,0,-919.20612,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.2392142,0,18.197012,0,1,1,0,0,7.487999,40.38,23.69,-9,-9,3.333333333333333,1,1,0,0,0,4,3,0,2216,347639.28,164708.44,311509.72,0,0,0,1560.932 +9362,11390,20341,20342,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.1977301,7.3785806,0,6,-6,50.780132,0,-9,-9,2021,21,8,24,18,1,8,0,9.3172922,9.3172922,0,0,0,0,0,0,0,0,0,0,0,.024077045,0,29.08,51.96,42.72,36.19,6.666666666666667,1,1,0,0,13,9,4,1,281.5,518552.5,335091.69,135814.2,0,2196.8569,0,2771.99 +9362,11390,20342,20341,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.189332,7.8538251,0,6,6,-176.25954,0,3,3,2021,14,4,37,38,1,4,0,9.346468,9.346468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,36.19,29.08,51.96,5,1,1,0,0,13,9,4,1,281.5,518552.5,335091.69,135814.2,0,2196.8569,0,2771.99 +9363,11391,20343,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0033617,8.0232267,0,0,0,-946.52948,0,1,1,2021,14,2,42,38,1,2,0,8.0340176,8.0340176,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,136,-63973.066,0,0,0,0,0,666.11121 +9363,11392,20344,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.7992773,8.9700413,0,0,0,-927.12805,-9,-9,-9,2021,14,3,78,0,1,3,0,10.566501,10.566501,.05,.05,0,0,0,0,0,0,0,0,0,3.6009068,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,13,5,1,288,213404.66,-21724.85,179744.61,110616.77,7874.1665,0,1891.6201 +9364,11393,20345,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.4769,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,2,11,1,0,629,72358.406,0,155567.03,40921.828,0,0,-92.192009 +9364,11394,20346,-9,20345,-9,1,0,28,0,0,0,3,3,-9,0,4,7.5804701,7.9918332,0,0,0,-1065.3568,0,3,-9,2021,10,0,38,38,1,0,1,6.652205,6.652205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,445,-130728.66,42944.5,0,0,-1061.472,0,1268.213 +9365,11395,20347,20348,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,48,6,0,0,2,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.19,58.01,19.01,22.64,5,1,1,0,0,0,10,1,0,265,-53468.137,0,0,0,0,0,1884.7927 +9365,11395,20348,20347,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,48,-6,0,0,2,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,123.25329,0,0,1,1,0,0,0,19.01,22.64,44.19,58.01,1.666666666666667,1,1,0,0,0,10,1,0,265,-53468.137,0,0,0,0,0,1884.7927 +9366,11396,20349,20350,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.1202946,7.9198656,0,6,-8,-136.40654,0,-9,-9,2021,19,5,50,43,1,5,0,7.8188829,7.8188829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.2,61.24,62.26,40.09,1.666666666666667,1,1,0,0,7,6,4,0,497,91705.406,38812.512,219497.84,126550.06,0,0,2103.2373 +9366,11396,20350,20349,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.7656398,7.8798327,0,6,8,-13.224474,0,2,2,2021,8,0,47,43,1,0,0,8.2855234,8.2855234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.26,40.09,37.2,61.24,8.333333333333334,1,1,0,0,7,6,4,0,497,91705.406,38812.512,219497.84,126550.06,0,0,2103.2373 +9367,11397,20351,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,5.6232967,6.7835307,6.4170451,0,0,-984.88763,0,2,1,2021,7,0,35,40,1,0,0,1.1105628,1.1105628,0,0,0,0,0,0,0,0,1,1,0,4.8176675,6.5476227,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,234,490590.81,453406.53,174968.3,0,0,0,1243.6808 +9368,11398,20352,20353,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.8731165,7.8130779,7.2635279,35,-3,55.880356,0,2,2,2021,8,1,22,6,1,1,0,7.5297909,7.5297909,0,0,0,0,0,0,0,0,1,1,0,1.8595724,7.7232895,56.34,40.63,55.09,55.87,8.333333333333334,1,1,0,0,12,9,4,1,242.5,3487020.5,1873109.8,378532.63,0,0,0,3873.9153 +9368,11398,20353,20352,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.48629,8.2637558,33,3,94.09082,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2692108,55.09,55.87,56.34,40.63,8.333333333333334,1,1,0,0,8,9,4,1,242.5,3487020.5,1873109.8,378532.63,0,0,0,3873.9153 +9369,11399,20354,20357,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,8.8922882,8.916441,0,11,-1,2.8760743,0,2,3,2021,8,1,60,60,1,1,0,15.871456,15.871456,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.05,54.52,46.63,59.72,8.333333333333334,1,1,0,0,13,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20355,-9,20357,20354,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.15082,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20356,-9,20357,20354,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.4187,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20357,20354,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.1272364,8.542697,0,11,1,-5.6418858,0,2,1,2021,13,3,40,50,1,3,0,9.2051783,9.2051783,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.63,59.72,58.05,54.52,8.333333333333334,1,1,0,0,11,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9370,11400,20358,20359,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.2317085,5.1897492,10,-1,33.776585,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0145707,5.1304512,52,45,57.16,56.15,8,1,1,0,0,0,4,4,1,2027.5,967540.25,198186.89,437201.41,0,0,0,2731.9504 +9370,11400,20359,20358,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,8.0983248,8.120079,10,1,17.288342,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0893002,57.16,56.15,52,45,8.333333333333334,1,1,0,0,0,4,4,1,2027.5,967540.25,198186.89,437201.41,0,0,0,2731.9504 +9371,11401,20360,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1481619,8.143364,0,0,0,-1015.051,0,2,2,2021,6,0,37,37,1,0,0,8.3268986,8.3268986,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,285,10170.847,-29986.57,0,0,0,193.52371,994.16663 +9372,11402,20361,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1069.1411,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.87,34.54,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,2134,293524.84,197281.08,119182.59,0,0,0,258.88123 +9373,11403,20362,20363,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,3,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,54.79,55.86,6.666666666666667,1,1,0,0,0,5,1,0,200,466910.53,0,285269,0,0,0,3221.521 +9373,11403,20363,20362,-9,-9,1,1,63,0,0,0,3,3,-9,1,4,0,0,0,1,1,0,-9,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,27.89,18.61,1.666666666666667,1,1,1,0,12,5,1,0,200,466910.53,0,285269,0,0,0,3221.521 +9374,11404,20364,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,3.546257,3.6138923,0,0,-1122.8328,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.873769,3.5236669,53.35,42.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2474,234553.97,0,139682.09,0,0,0,1318.2572 +9375,11405,20365,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.173398,8.3757782,0,0,-1033.1431,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.7392912,8.0770569,48.68,38.59,-9,-9,8.333333333333334,1,1,0,1,6,2,4,1,194,1476655.4,851961,118864.31,0,0,0,1946.7651 +9376,11406,20366,20369,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.278677,7.2740874,0,7,1,-28.657568,0,-9,-9,2021,0,0,36,84,1,0,0,4.7368984,4.7368984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20367,-9,20369,20366,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.15521,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20368,-9,20369,20366,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.98767,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20369,20366,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,9.411293,9.1107025,0,8,-1,-160.62897,0,2,3,2021,0,0,60,48,1,0,0,23.194317,23.194317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,0,2,3,0,0,8,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9377,11407,20370,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.7212,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.99,28.62,-9,-9,6.666666666666667,1,1,0,0,5,11,1,0,1219,88791.672,0,0,0,0,0,462.23035 +9378,11408,20371,20372,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.0997782,8.270668,7,6,15.603559,0,-9,-9,2021,15,3,0,37,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7754253,7.6608634,39.52,58.98,51.83,57.2,3.333333333333333,1,1,0,0,5,2,3,1,1184.5,1227877.5,477155.84,251439.55,0,-1504.2963,0,2607.6902 +9378,11408,20372,20371,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,10,-6,-38.285957,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3490629,0,51.83,57.2,39.52,58.98,8.333333333333334,1,1,0,0,5,2,3,1,1184.5,1227877.5,477155.84,251439.55,0,-1504.2963,0,2607.6902 +9379,11409,20373,20374,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.2272549,6.2849121,37,-11,-15.921343,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8636408,6.3296347,54.2,57.49,57.33,37.4,8.333333333333334,1,1,0,0,12,9,3,1,1683,425822.94,294380.38,0,0,591.35632,373.67847,2385.9106 +9379,11409,20374,20373,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.1703873,8.2291059,37,11,40.291206,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.3968697,8.1980696,57.33,37.4,54.2,57.49,6.666666666666667,1,1,0,0,1,9,3,1,1683,425822.94,294380.38,0,0,591.35632,373.67847,2385.9106 +9379,11410,20375,-9,20373,20374,1,1,29,0,0,0,2,2,-9,0,4,7.499629,8.0059166,0,0,0,-1021.7722,0,2,2,2021,20,9,45,40,1,9,0,5.9218192,5.9218192,0,0,0,0,0,0,0,0,1,1,0,4.3164654,0,30.81,66.61,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,760,34540.383,0,0,0,0,1243.3152,1291.9602 +9380,11411,20376,20377,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.9800634,6.7299562,49,3,55.896713,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8675733,60.53,48.35,60.29,52.11,0,1,1,0,0,7,12,2,0,592,117555.59,18529.121,158523.59,0,0,0,1747.0858 +9380,11411,20377,20376,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,47,-3,-138.08466,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,60.53,48.35,10,1,1,0,0,7,12,2,0,592,117555.59,18529.121,158523.59,0,0,0,1747.0858 +9381,11412,20378,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.9193983,5.691021,0,0,-1107.8326,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2824874,6.0090857,61.78,37.78,-9,-9,10,1,1,0,0,0,9,2,0,470,533262.06,93739.07,178244.22,711.05432,12274.974,2333.1948,1183.4918 +9382,11413,20379,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1106.8282,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.0994291,46.828972,26.413862,0,1,1,0,6.8776479,0,42.12,46.37,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,148,247368.23,0,242529.95,0,0,0,2019.45 +9383,11414,20380,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.5041051,5.5725374,0,0,-1079.267,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,51.058533,0,0,1,0,1,0,5.6397309,46.98,22.01,-9,-9,5,1,1,0,0,13,5,2,1,240,199791.39,86419.078,99471.461,0,0,0,1586.6976 +9383,11415,20381,-9,20380,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.64935,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,31.5,31.7,-9,-9,3.333333333333333,1,1,0,1,0,5,2,1,2307,-37247.309,-7922.1294,223509.66,84360.773,0,0,1380.8143 +9384,11416,20382,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,7.1670489,7.1801982,0,0,-1034.877,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9772549,41.07,60.93,-9,-9,10,1,1,0,0,0,12,2,1,109,331815.09,288243.31,144198.3,0,0,0,1460.5192 +9385,11417,20383,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.6301637,7.302289,0,0,-971.33923,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9080992,7.6079659,46.4,57.35,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,285,1024199.8,536529.44,304538.97,0,0,8029.3242,669.15082 +9386,11418,20384,20385,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.0461974,4.9457054,32,-4,190.2774,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3420177,55.23,43.45,55.95,47.23,6.666666666666667,1,1,0,0,9,11,2,1,402.5,121206.08,108216.41,0,0,-423.95709,3290.4321,1624.5886 +9386,11418,20385,20384,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.2775493,5.2605357,32,4,-194.73576,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.805182,55.95,47.23,55.23,43.45,8.333333333333334,1,1,0,0,0,11,2,1,402.5,121206.08,108216.41,0,0,-423.95709,3290.4321,1624.5886 +9387,11419,20386,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7813039,8.0530233,0,0,-942.18744,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1872215,8.256628,57.51,47.91,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,1482,769930.94,765059,196224.64,0,0,0,2134.1824 +9388,11420,20387,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.781527,7.8801589,5.5350137,0,0,-1049.8994,0,-9,2,2021,15,4,25,25,1,4,0,14.293414,14.293414,.05,.05,0,0,0,0,0,0,0,0,0,2.3910389,5.5221705,48.28,60.18,-9,-9,10,1,1,0,0,14,10,4,1,84,70960.742,75081.344,0,0,0,5102.8696,2274.834 +9389,11421,20388,20389,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.2890086,6.1079612,8,12,-7.4015684,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5924296,67.7,27.38,60.34,14.48,8.333333333333334,1,1,0,0,0,1,2,0,1118.5,1234552,147224.05,450579.25,0,0,0,2390.04 +9389,11421,20389,20388,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.3822098,6.7927909,8,-12,67.015488,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1299334,0,2,1,1,0,3.6772962,6.7394648,60.34,14.48,67.7,27.38,10,1,1,0,0,0,1,2,0,1118.5,1234552,147224.05,450579.25,0,0,0,2390.04 +9390,11422,20390,-9,20392,20393,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.8617,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20391,-9,20392,20393,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.7478,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20392,20393,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,7,-5,-47.219597,0,1,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,51.24,58.84,8,2,3,0,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20393,20392,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.608139,9.4227629,0,4,5,-10.058271,0,-9,-9,2021,12,0,45,50,1,0,0,40.751003,40.751003,.05,.05,0,0,0,0,0,0,1,1,0,7.5956392,0,51.24,58.84,50.65,53.71,6.666666666666667,2,3,0,0,7,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9391,11423,20394,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.72302,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.46,38.22,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,2118,32935.336,0,0,0,0,0,659.71069 +9391,11424,20395,-9,20394,-9,1,1,44,0,0,0,1,1,-9,0,4,8.2012339,8.2640247,0,0,0,-936.46771,-9,3,-9,2021,9,0,40,0,1,1,0,10.757467,10.757467,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,2,4,1,1699,43280.07,109021.17,66349.078,44070.809,0,0,1894.9829 +9391,11425,20396,-9,20394,-9,1,1,54,0,0,0,2,2,-9,0,3,7.9755287,7.9399047,0,0,0,-1036.7108,-9,3,-9,2021,10,0,40,0,1,1,0,10.369745,10.369745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,2,4,1,1023,121957.41,161237.81,0,0,1241.3036,0,1499.3575 +9392,11426,20397,20398,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,31,-2,0,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,51.25,13.47,7,2,3,0,0,0,4,1,1,1260.5,404178.56,286191.09,268316.75,8005.6289,0,0,558.27423 +9392,11426,20398,20397,-9,-9,1,1,49,0,1,0,2,2,-9,0,1,0,0,0,9,2,0,0,-9,-9,2021,11,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.47,47,50,5,2,3,1,0,0,4,1,1,1260.5,404178.56,286191.09,268316.75,8005.6289,0,0,558.27423 +9392,11427,20399,-9,20397,20398,1,1,20,0,1,0,2,2,-9,0,3,8.5573912,8.7044945,0,0,0,-981.61688,0,3,2,2021,5,1,40,48,1,1,1,16.00527,16.00527,0,0,0,0,0,0,0,0,1,1,0,0,0,46.02,58.57,-9,-9,5,2,3,0,0,2,4,5,1,523,60064.891,2903.6731,0,0,0,0,1436.8546 +9392,11428,20400,-9,20397,20398,1,1,19,0,1,0,2,2,-9,0,5,6.6023493,6.7516818,0,0,0,-1037.2048,0,3,2,2021,3,0,40,40,1,0,1,2.8463299,2.8463299,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,544,61836.102,0,0,0,0,0,-22.768576 +9393,11429,20401,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.4790215,6.4458189,0,0,-988.37738,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1376448,6.0040121,30.46,24.29,-9,-9,3.333333333333333,1,1,0,0,3,9,2,1,1131,365124.44,79782.57,0,0,0,0,58.040234 +9394,11430,20402,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,6.731636,6.6971021,0,0,-1040.4004,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6395683,63.88,16.59,-9,-9,10,1,1,0,0,0,11,2,1,389,81288.039,1015.5367,0,0,0,0,1152.8997 +9394,11431,20403,20404,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.9706144,8.04245,0,12,3,72.278915,0,3,3,2021,10,0,40,40,1,0,0,8.7577543,8.7577543,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.21,37.4,8.333333333333334,1,1,0,0,13,11,4,1,1591,1104417.3,870715.63,244002.25,0,0,0,2424.1187 +9394,11431,20404,20403,20402,-9,1,0,61,0,0,0,1,1,-9,0,2,7.968832,8.0031624,0,12,-3,201.37662,0,2,3,2021,9,0,37,38,1,0,0,9.112277,9.112277,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.21,37.4,54.37,54.8,10,1,1,0,0,13,11,4,1,1591,1104417.3,870715.63,244002.25,0,0,0,2424.1187 +9395,11432,20405,20406,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.3601298,7.6402721,9,2,105.7795,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4917164,7.7097826,55.3,55.6,57.16,56.15,10,1,1,0,0,0,10,3,1,514.5,1139970.6,664592.63,360302.63,0,0,0,2522.7852 +9395,11432,20406,20405,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.2350788,7.2955122,9,-2,-17.835819,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4765258,0,0,1,1,0,4.3999028,7.2289991,57.16,56.15,55.3,55.6,10,1,1,0,0,0,10,3,1,514.5,1139970.6,664592.63,360302.63,0,0,0,2522.7852 +9396,11433,20407,20408,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,9.3375416,9.4858341,0,2,11,-88.831131,0,-9,-9,2021,12,1,45,45,1,1,0,30.829531,30.829531,0,0,.05,0,0,0,0,0,0,0,0,0,0,39.1,57.79,55.19,54.26,6.666666666666667,1,1,0,0,2,8,5,0,628.5,593027.44,57759.023,856571.13,550590.63,27995.648,0,5887.6006 +9396,11433,20408,20407,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.6723804,8.687748,0,2,-11,68.961418,0,1,2,2021,10,2,48,48,1,2,0,20.13151,20.13151,0,0,.05,0,0,0,0,0,0,0,0,0,0,55.19,54.26,39.1,57.79,8.333333333333334,1,1,0,0,11,8,5,0,628.5,593027.44,57759.023,856571.13,550590.63,27995.648,0,5887.6006 +9397,11434,20409,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.1753688,7.83953,0,0,-1076.434,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,41.485699,35.214039,418.32236,0,1,1,0,0,7.1789804,27.41,25.55,-9,-9,3.333333333333333,1,1,0,0,0,13,3,0,295,899672.94,798068.94,45769.305,0,0,0,1678.2179 +9398,11435,20410,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.7067,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.12,27.25,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,601,904.2475,0,0,0,0,0,1199.3843 +9399,11436,20411,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,6.1721363,6.4804134,0,0,0,-990.15118,0,-9,-9,2021,18,6,60,70,1,6,0,1.0304557,1.0304557,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,1,7,4,2,1,455,-85830.594,0,0,0,0,0,457.72287 +9399,11437,20412,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.0080605,8.1579714,0,0,0,-1108.6611,-9,-9,-9,2021,23,10,57,0,1,10,0,5.3735275,5.3735275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.9,45.56,-9,-9,1.666666666666667,1,1,0,1,9,4,4,1,737,-83870.805,0,0,0,0,0,314.98633 +9400,11438,20413,20414,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.4664459,9.5937614,0,21,1,-42.678898,0,2,-9,2021,6,0,57,57,1,0,0,20.387299,20.387299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,55.02,40.87,10,1,1,0,0,14,12,5,1,3312.5,469509,7226.3125,487862.63,347528.56,0,0,4853.27 +9400,11438,20414,20413,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,6.9989038,7.0415945,0,22,-1,-77.434799,0,2,2,2021,8,1,35,37,1,1,0,4.3717818,4.3717818,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,40.87,62.49,55.09,8.333333333333334,1,1,0,0,10,12,5,1,3312.5,469509,7226.3125,487862.63,347528.56,0,0,4853.27 +9401,11439,20415,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.9461002,8.853199,0,0,0,-968.78595,0,-9,2,2021,6,0,38,40,1,0,0,15.141206,15.141206,0,0,0,0,0,0,0,0,1,1,0,6.2776947,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,11,5,1,383,-2498.2427,0,159019.7,123426.4,0,0,2673.884 +9402,11440,20416,-9,20418,20419,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.14594,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20417,-9,20418,20419,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.8842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20418,20419,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,7.5034819,7.3309193,0,2,-11,-45.271278,0,-9,-9,2021,6,0,23,23,1,0,0,9.3722563,9.3722563,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,38.06,38.9,8.333333333333334,1,1,0,0,5,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20419,20418,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,8.0171709,8.1737061,0,2,11,86.6418,0,3,3,2021,12,0,45,38,1,0,0,8.0074921,8.0074921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.06,38.9,48.87,58.55,5,1,1,0,0,11,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9403,11441,20420,20421,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,26,21,-21.684505,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,22.975353,0,2,1,1,0,0,0,35.46,16.38,27.01,48.84,8.333333333333334,1,1,0,0,7,4,3,0,963,1176468.3,881293.75,243993.88,0,0,0,2544.9644 +9403,11441,20421,20420,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.7672911,8.290967,7.1474762,12,-21,-31.896458,0,-9,-9,2021,19,6,76,39,1,6,0,4.9743552,4.9743552,0,0,0,0,0,0,0,2,1,1,0,0,7.3232551,27.01,48.84,35.46,16.38,6.666666666666667,1,1,0,0,14,4,3,0,963,1176468.3,881293.75,243993.88,0,0,0,2544.9644 +9404,11442,20422,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.5804033,5.9842739,0,0,-904.52545,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0434976,5.7539606,48.55,40.5,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,213,-101325.55,126073.67,0,0,0,0,329.62189 +9405,11443,20423,20424,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,45,-1,-18.881443,0,3,3,2021,28,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.52,23.87,52.99,51.28,10,1,1,0,0,0,11,4,1,2058,1301316.6,518795.5,135644.75,0,0,0,3863.9187 +9405,11443,20424,20423,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.6054287,8.3972254,0,45,1,58.902229,0,3,3,2021,9,1,63,66,1,1,0,12.327312,12.327312,0,0,0,0,0,0,0,0,1,1,0,2.7727509,0,52.99,51.28,30.52,23.87,8.333333333333334,1,1,0,0,9,11,4,1,2058,1301316.6,518795.5,135644.75,0,0,0,3863.9187 +9406,11444,20425,20426,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,5.6674933,6.1316328,0,10,-2,25.567329,0,1,1,2021,6,0,4,4,1,0,0,11.991032,11.991032,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,53.46,44.67,8.333333333333334,2,3,0,0,12,8,4,1,1153,1506555.5,456270.84,215643.09,0,0,0,2199.2585 +9406,11444,20426,20425,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.1966581,8.114357,37,2,29.201372,0,2,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,8.0184507,8.4381933,53.46,44.67,51.25,52.08,8.333333333333334,2,3,0,0,10,8,4,1,1153,1506555.5,456270.84,215643.09,0,0,0,2199.2585 +9406,11445,20427,-9,20425,20426,1,1,28,0,0,0,1,1,-9,0,1,8.8673725,9.0038433,0,0,0,-1141.2643,0,1,1,2021,36,12,40,40,1,12,1,21.561899,21.561899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.75,50.17,-9,-9,10,2,3,0,0,3,8,5,1,115,119430.88,114023.97,0,0,0,0,2440.4602 +9407,11446,20428,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,0,7.2289667,7.2026691,0,0,-1097.9775,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9746008,57.57,49.69,-9,-9,10,1,1,0,0,8,9,2,1,832,79510.555,220601.5,0,0,0,0,130.1321 +9407,11447,20429,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,8.7417803,8.564044,0,0,-1054.6664,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3272977,8.419919,60.14,38.88,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,195,907070.56,684596.69,272935.03,0,0,0,2091.9255 +9408,11448,20430,20431,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.8472857,7.701818,32,-10,36.525822,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7813931,7.5587945,54.51,50.6,63.01,41.3,10,1,1,0,0,6,7,3,1,2005,301662.78,247815.06,0,0,0,0,2466.5408 +9408,11448,20431,20430,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,32,10,-42.723701,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6870368,0,63.01,41.3,54.51,50.6,10,1,1,0,0,0,7,3,1,2005,301662.78,247815.06,0,0,0,0,2466.5408 +9409,11449,20432,-9,20436,20435,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.0734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20433,-9,20436,20435,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-984.41125,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20434,-9,20436,20435,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.06006,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20435,20436,-9,-9,1,1,39,1,4,0,2,2,-9,0,2,8.4139853,8.2423439,0,19,5,86.340446,0,2,1,2021,11,1,38,38,1,1,0,11.439159,11.439159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.58,52.86,57.06,57.76,5,1,1,0,0,8,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20436,20435,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,7.0481277,7.4995546,0,19,-5,20.092896,0,2,2,2021,7,0,24,24,1,0,0,5.6293983,5.6293983,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.58,52.86,10,1,1,0,0,8,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20437,-9,20436,20435,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-987.01727,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9410,11450,20438,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.1170235,7.8778715,0,0,0,-1037.1796,0,-9,-9,2021,12,0,40,30,1,2,0,9.6362267,9.6362267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,50,-9,-9,7,1,1,0,0,13,11,4,1,277,208552.36,271008.56,56361.004,0,0,0,2070.9202 +9411,11451,20439,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,4.6591835,5.0291896,0,0,-1058.6049,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7711525,0,44.13,57.97,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,6459,-14981.219,76621.086,139109.38,36117.867,0,0,834.27789 +9412,11452,20440,20441,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6846209,8.9148245,0,33,1,-8.7993507,0,-9,-9,2021,11,0,40,40,1,0,0,19.6213,19.6213,.05,.05,.05,0,0,0,0,0,0,0,0,6.4944906,0,53.33,53.71,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,1488,1134419.5,775128.75,237713.59,0,0,0,5919.4951 +9412,11452,20441,20440,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.637104,8.5088577,0,33,-1,-6.858336,0,2,3,2021,10,1,38,38,1,1,0,16.14415,16.14415,.05,.05,0,0,0,0,0,0,0,0,0,7.5563641,0,54.2,57.49,53.33,53.71,8.333333333333334,1,1,0,0,9,5,5,1,1488,1134419.5,775128.75,237713.59,0,0,0,5919.4951 +9413,11453,20442,20443,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.1104956,8.0538254,41,-5,76.531967,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9165745,8.0462084,57.06,57.76,57.16,56.15,10,1,1,0,0,7,5,4,1,1036.5,1768270.8,1204162.1,326604.63,0,0,0,3991.8618 +9413,11453,20443,20442,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.016758,7.9982128,41,5,-145.35542,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6208467,7.9475703,57.16,56.15,57.06,57.76,10,1,1,0,0,0,5,4,1,1036.5,1768270.8,1204162.1,326604.63,0,0,0,3991.8618 +9414,11454,20444,-9,20445,20446,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8802,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9414,11454,20445,20446,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.4123898,8.2721472,0,3,-4,31.296471,0,-9,-9,2021,4,0,35,35,1,0,0,16.858181,16.858181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,51,56,10,2,3,0,0,4,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9414,11454,20446,20445,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.3070049,8.0613213,0,3,4,-84.895325,0,2,2,2021,10,0,80,60,1,1,0,5.2689061,5.2689061,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,60.02,56.42,7,2,3,0,0,1,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9415,11455,20447,20448,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,6.6887603,6.5119572,0,5,-2,-19.667683,0,2,2,2021,31,12,16,16,1,12,0,5.8095436,5.8095436,0,0,0,0,0,0,0,0,1,1,0,0,0,10.62,59.12,39.43,32.24,6.666666666666667,1,1,0,1,5,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9415,11455,20448,20447,-9,-9,1,1,37,0,1,0,2,2,-9,0,2,8.4540205,8.3400164,0,5,2,-46.815357,0,2,1,2021,22,10,43,38,1,10,0,12.112514,12.112514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.43,32.24,10.62,59.12,5,1,1,0,1,8,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9415,11455,20449,-9,20447,20448,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9416,11456,20450,-9,20452,20451,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-905.45728,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3740053,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11456,20451,20452,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.1147318,8.7743826,0,7,0,25.486979,0,2,2,2021,5,0,40,42,1,0,0,24.26799,24.26799,.05,.05,0,0,0,0,0,0,1,1,0,1.5565771,0,58.15,52.91,54.04,60.47,8.333333333333334,1,1,0,0,8,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11456,20452,20451,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,6.7886372,6.6629243,0,7,0,7.4016652,0,3,2,2021,11,0,30,8,1,0,0,3.3059449,3.3059449,.05,.05,0,0,0,0,0,0,1,1,0,3.0653803,0,54.04,60.47,58.15,52.91,6.666666666666667,1,1,0,0,8,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11457,20453,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,8.2471848,7.7911363,0,0,0,-1067.7549,-9,-9,-9,2021,9,0,38,0,1,0,0,12.815845,12.815845,.05,.05,0,0,0,0,0,0,1,1,0,2.922576,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,698,-143611.83,32813.016,0,0,0,0,2817.636 +9417,11458,20454,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3799887,8.46735,0,0,0,-929.7771,-9,3,3,2021,21,9,37,0,1,9,0,12.604439,12.604439,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.91,61.11,-9,-9,3.333333333333333,3,4,0,1,14,5,4,1,412,223058.59,75695.148,327074.88,43539.836,3784.2988,0,1586.0579 +9418,11459,20455,20456,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.3873796,9.6988363,7.3446012,38,1,72.664749,0,2,3,2021,13,4,84,84,1,4,0,15.958714,15.958714,.05,.05,0,0,0,0,0,0,0,0,0,0,7.4891839,57.16,56.15,54.2,57.49,5,1,1,0,0,13,2,5,1,368.5,1359954.4,1002203.6,149102.72,0,0,11749.139,5933.6074 +9418,11459,20456,20455,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1110635,6.701272,0,38,-1,-16.386492,0,3,3,2021,7,0,20,20,1,0,0,7.295579,7.295579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,368.5,1359954.4,1002203.6,149102.72,0,0,11749.139,5933.6074 +9418,11460,20457,-9,20456,20455,1,0,26,0,0,0,2,2,-9,0,4,7.0040526,6.764215,0,0,0,-980.26923,0,2,1,2021,18,7,40,10,1,7,1,3.4065661,3.4065661,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,325,-44853.754,0,0,0,0,0,384.71997 +9419,11461,20458,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.6742787,5.0369716,0,0,-965.72589,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1397743,0,0,1,1,0,.33677626,5.2928462,66.82000000000001,34.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,237,265694.84,0,41894.348,0,0,0,2086.8101 +9420,11462,20459,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3268681,8.9468107,6.8336143,0,0,-979.66919,0,2,2,2021,22,9,41,35,1,9,0,11.520684,11.520684,.05,.05,0,0,0,0,0,0,1,1,0,6.4732542,6.7173634,28.72,55.83,-9,-9,3.333333333333333,1,1,0,0,8,1,5,1,309,-49188.156,-2412.2288,0,0,6934.7222,1461.0803,2753.873 +9421,11463,20460,-9,20462,-9,1,0,42,0,1,0,2,2,-9,0,4,7.1867323,7.3151588,5.5468178,0,0,-1051.5425,0,3,3,2021,12,0,17,17,1,0,0,7.3108034,7.3108034,.05,.05,0,0,0,0,0,2,1,1,0,6.8415365,0,43.74,55.28,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,1728.5,30199.621,105037.05,0,0,0,0,1022.6629 +9421,11463,20461,-9,20460,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-999.17035,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,2,1,1728.5,30199.621,105037.05,0,0,0,0,1022.6629 +9421,11464,20462,-9,-9,-9,1,0,76,0,1,0,3,3,-9,0,2,0,0,0,0,0,-932.27722,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3249331,0,59.85,37.69,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,422,431334.34,0,446610.75,0,0,0,1228.4648 +9422,11465,20463,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-955.20624,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.991618,0,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,11,1,0,901,66956.773,0,0,0,0,0,1683.7992 +9423,11466,20464,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8599982,8.1103516,0,0,0,-805.901,0,2,2,2021,8,0,50,50,1,0,0,5.5807624,5.5807624,.05,.05,0,0,0,0,0,2,0,0,0,5.9713326,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,888,296126.38,19877.311,52978.086,26599.354,0,0,1315.5548 +9424,11467,20465,20466,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,24,-3,72.48925,0,2,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,54.2,57.49,1.666666666666667,1,1,0,0,4,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11467,20466,20465,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6150608,8.2855568,0,5,3,8.3151169,-9,-9,-9,2021,10,0,37,0,1,0,0,17.200636,17.200636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.9,51.84,1.666666666666667,1,1,0,0,14,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11467,20467,-9,20465,20466,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1016.2638,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3262645,0,59.53,56.44,-9,-9,0,1,1,0,0,0,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11468,20468,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1340418,7.5867476,0,0,0,-1119.7024,0,-9,-9,2021,12,0,34,30,1,0,0,11.268991,11.268991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,6,1,3,0,667,95043.984,-37731.438,0,0,739.2807,0,1738.6981 +9425,11469,20469,20470,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,4.1045356,4.5669613,54,2,-24.720263,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3494205,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,7,2,0,285.5,277661.22,193799.95,0,0,0,0,1273.3859 +9425,11469,20470,20469,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-2,7.0651307,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,0,7,2,0,285.5,277661.22,193799.95,0,0,0,0,1273.3859 +9426,11470,20471,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2958317,7.4871225,0,0,0,-1027.3008,0,3,3,2021,11,0,40,38,1,0,0,5.2999749,5.2999749,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1267,196280.36,0,276146.25,95712.148,0,0,744.00421 +9427,11471,20472,20473,-9,-9,1,1,49,1,3,0,1,1,-9,0,4,8.2125893,8.5427675,0,27,-1,-17.835258,0,3,3,2021,16,4,40,40,1,4,0,13.751637,13.751637,.05,.05,0,0,0,0,0,0,1,0,1,8.8020725,0,41.61,52.41,51.66,54.88,6.666666666666667,2,3,0,0,14,9,3,1,312,320526.59,190857.33,0,0,0,0,3739.6816 +9427,11471,20473,20472,-9,-9,1,0,50,1,3,0,3,3,-9,0,3,0,0,0,27,1,22.521145,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.66,54.88,41.61,52.41,6.666666666666667,2,3,0,0,0,9,3,1,312,320526.59,190857.33,0,0,0,0,3739.6816 +9427,11472,20474,20475,-9,-9,1,0,26,1,3,0,2,2,-9,0,3,0,0,0,4,0,11.237466,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.65,53.71,57.16,56.15,7,2,3,0,0,0,9,3,1,1968,140776.95,-839.33008,183362.88,157474.28,2413.1731,0,2371.3958 +9427,11472,20475,20474,20473,20472,1,1,26,1,3,0,1,1,-9,0,4,8.6392803,8.275013,0,4,0,1.7479715,0,3,1,2021,8,1,40,40,1,1,0,15.092265,15.092265,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,50.65,53.71,8,2,3,0,0,6,9,3,1,1968,140776.95,-839.33008,183362.88,157474.28,2413.1731,0,2371.3958 +9427,11473,20476,-9,20477,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.46106,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20477,-9,-9,-9,1,0,24,1,3,0,2,2,-9,0,4,0,0,0,0,0,-920.73627,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.77,57.64,-9,-9,5,2,3,0,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20478,-9,20477,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.528,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20479,-9,20477,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6592,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9428,11474,20480,-9,20483,20482,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1152.3303,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20481,-9,20483,20482,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1237,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20482,20483,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,0,0,0,5,3,115.05033,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.15,40.86,42.52,57.56,8.333333333333334,3,4,1,1,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20483,20482,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.3170424,8.4030457,0,5,-3,-16.829744,0,3,2,2021,14,2,35,35,1,2,0,15.360626,15.360626,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,57.56,43.15,40.86,3.333333333333333,3,4,0,1,9,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9429,11475,20484,-9,20487,20488,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.0558,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20485,-9,20487,20488,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.68536,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20486,-9,20487,20488,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.93182,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20487,20488,-9,-9,1,0,46,0,3,0,1,1,-9,1,3,0,0,0,15,5,-37.748734,0,2,2,2021,9,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,44.54,51.51,8.333333333333334,1,1,0,0,3,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20488,20487,-9,-9,1,1,41,0,3,0,1,1,-9,0,2,8.1322498,8.2871113,0,15,-5,-36.17971,0,3,3,2021,18,7,40,40,1,7,0,11.259736,11.259736,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.54,51.51,49.04,55.86,6.666666666666667,1,1,0,0,9,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9430,11476,20489,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.437027,7.5192757,6.4571366,0,0,-1025.903,0,2,2,2021,10,0,24,22,1,0,0,8.0581636,8.0581636,0,0,0,0,0,0,0,0,1,0,1,6.7091775,0,53.78,48.41,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,2622,1362.8014,112242.22,0,0,0,0,2692.7756 +9431,11477,20490,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,4.8913441,5.3263907,0,0,-1031.8435,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9235101,57.96,43.41,-9,-9,10,3,4,0,0,0,8,2,0,225,-116353.73,0,0,0,0,0,750.68109 +9432,11478,20491,20492,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.4938922,6.1567655,55,-1,-60.323837,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.7193949,140.09525,22.029821,0,1,1,0,6.5160136,6.1183701,29.85,28.86,52.71,36.71,5,1,1,0,0,3,2,2,1,302.5,437127.06,91148.531,68396.102,0,0,0,2015.168 +9432,11478,20492,20491,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.9846721,4.6786041,55,1,-6.0004654,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5120158,4.6398096,52.71,36.71,29.85,28.86,5,1,1,0,0,2,2,2,1,302.5,437127.06,91148.531,68396.102,0,0,0,2015.168 +9433,11479,20493,20495,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5488234,7.6338458,0,21,-3,32.053146,0,2,2,2021,8,0,26,24,1,0,0,6.8079548,6.8079548,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.5,48.33,1.666666666666667,1,1,0,0,11,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11479,20494,-9,20493,20495,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1027.7942,-9,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11479,20495,20493,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.72826,8.887764,0,21,3,58.882088,0,2,2,2021,11,0,45,45,1,0,0,16.253847,16.253847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,58.15,52.91,6.666666666666667,1,1,0,0,11,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11480,20496,-9,20493,20495,1,1,18,0,0,0,2,2,1,0,4,7.20188,7.7365174,0,0,0,-1047.4353,-9,2,3,2021,7,0,20,0,1,0,1,9.0853777,9.0853777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,10,1,1,0,0,4,10,3,1,854,34677.711,10140.601,0,0,0,0,316.32495 +9434,11481,20497,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,7.9579334,8.014513,0,0,0,-1058.6073,0,2,2,2021,7,0,40,40,1,0,1,9.792345,9.792345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,10,3,4,0,0,4,8,4,1,650,-132349.58,-42884.715,0,0,0,0,994.40704 +9434,11482,20498,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.4037,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,8,1,1,3700,-77774.5,0,0,0,0,915.52893,1455.168 +9435,11483,20499,20500,-9,-9,1,1,89,0,0,0,1,1,-9,0,2,0,8.2574778,8.2863264,68,-3,82.282928,0,1,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,13.511744,0,129.55185,0,1,1,0,0,8.5627441,64.83,29.96,47.81,31.99,6.666666666666667,1,1,0,0,0,9,4,0,308.5,1676169.8,106111.55,530230.75,0,0,0,3601.9722 +9435,11483,20500,20499,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,68,3,31.205643,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.3921661,10.804453,27.642529,2,1,1,0,0,0,47.81,31.99,64.83,29.96,8.333333333333334,1,1,0,0,7,9,4,0,308.5,1676169.8,106111.55,530230.75,0,0,0,3601.9722 +9436,11484,20501,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.6794496,7.6810155,0,0,-1027.7941,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,3.2757955,11.689512,17.698164,0,1,1,0,.59162664,7.9375606,50.66,28.63,-9,-9,5,1,1,0,0,0,13,3,1,734,328191.84,420190.38,266257.41,0,0,0,2353.4043 +9437,11485,20502,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,5.8952107,5.7254658,0,0,-1079.8569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2044075,5.7580013,53.42,52.33,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,541,412082.78,135318.66,60966.625,0,0,0,1378.2917 +9438,11486,20503,20504,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,7.9396806,7.7670622,0,7,-4,-29.979618,-9,-9,-9,2021,10,0,40,0,1,0,0,6.935523,6.935523,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,51.28,51.66,54.88,8.333333333333334,1,1,0,0,9,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20504,20503,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.2920179,8.7157183,0,7,4,-78.9618,0,1,2,2021,6,0,60,60,1,0,0,8.0344791,8.0344791,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,53.14,51.28,8.333333333333334,1,1,0,0,7,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20505,-9,20504,20503,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-856.30536,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20506,-9,20504,20503,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.13739,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9439,11487,20507,20508,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4257736,8.4137449,0,2,0,-64.320007,0,-9,-9,2021,9,0,40,45,1,1,0,11.833524,11.833524,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,35.25,55.37,8,1,1,0,0,1,8,5,1,1802,143298.55,0,305624.69,156181.7,21011.938,1175.1713,4079.7693 +9439,11487,20508,20507,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.0981874,8.2148676,0,2,0,-211.08363,0,2,2,2021,14,2,37,36,1,2,0,13.1007,13.1007,0,0,0,0,0,0,0,0,0,0,0,7.6776361,0,35.25,55.37,52,55,5,1,1,0,0,8,8,5,1,1802,143298.55,0,305624.69,156181.7,21011.938,1175.1713,4079.7693 +9439,11488,20509,-9,20508,20507,1,1,21,0,0,0,2,2,-9,0,4,8.21626,8.3345356,0,0,0,-999.59894,0,3,3,2021,11,0,45,40,1,0,1,7.9285965,7.9285965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.11,51.96,-9,-9,5,1,1,0,0,4,8,4,1,2426,-51954.91,-91020.336,0,0,0,0,1068.8345 +9440,11489,20510,-9,20511,20513,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.13635,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20511,20513,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,6.8446317,6.9777598,0,9,-14,-38.023121,0,2,2,2021,6,0,24,24,1,0,0,4.42349,4.42349,0,0,0,0,0,0,0,27,1,1,0,0,0,46.28,62.6,45,39,6.666666666666667,1,1,0,0,10,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20512,-9,20511,20513,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8602,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20513,20511,-9,-9,1,1,55,0,2,0,3,3,-9,1,2,0,0,0,9,14,53.186699,0,-9,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,39,46.28,62.6,3.333333333333333,1,1,0,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9441,11490,20514,20516,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.1393738,8.7888412,0,2,-1,-89.885078,0,1,1,2021,1,0,40,40,1,0,0,29.992128,29.992128,.05,.05,0,0,0,0,0,0,0,0,0,4.514472,0,60.39,47.79,33.64,53.56,8.333333333333334,1,1,0,0,10,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20515,-9,-9,20516,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.79474,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20516,20514,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,9.3949537,9.8751764,0,2,1,-163.61748,0,-9,-9,2021,21,8,38,43,1,8,0,47.170158,47.170158,.05,.05,0,0,0,0,0,0,0,0,0,3.512367,0,33.64,53.56,60.39,47.79,3.333333333333333,1,1,0,0,2,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20517,-9,-9,20516,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.83929,-9,-9,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9442,11491,20518,20520,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3488398,8.0166416,0,11,-1,-43.026798,0,2,1,2021,7,0,40,38,1,0,0,11.171289,11.171289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51.61,23.91,8.333333333333334,1,1,0,0,12,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9442,11491,20519,-9,20520,20518,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.51483,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9442,11491,20520,20518,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.3228884,8.2354145,0,11,1,4.5328403,0,3,3,2021,22,10,48,56,1,10,0,10.282061,10.282061,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.61,23.91,60.12,54.8,3.333333333333333,1,1,0,0,11,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9443,11492,20521,-9,20522,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.4917,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,3,4,-9,0,0,5,1,0,540,127177.09,0,0,0,3457.7302,0,0 +9443,11492,20522,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,0,0,-900.30536,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,5,3,4,0,0,4,5,1,0,540,127177.09,0,0,0,3457.7302,0,0 +9444,11493,20523,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.4786372,6.6933169,0,0,-956.58936,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5380545,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,517,693489,135214.17,137916.67,0,0,0,1580.7329 +9445,11494,20524,-9,20525,20527,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.07776,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20525,20527,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.7106104,8.6969204,0,9,-4,-102.50249,0,2,2,2021,14,3,42,2,1,3,0,16.719757,16.719757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.14,64.63,51.67,60.18,6.666666666666667,1,1,0,0,10,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20526,-9,20525,20527,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.82111,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20527,20525,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.4256229,8.4920082,0,9,4,-86.220032,0,3,3,2021,7,0,40,40,1,0,0,15.068488,15.068488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,33.14,64.63,8.333333333333334,1,1,0,0,10,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9446,11495,20528,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.3991041,7.5744648,0,0,-976.28375,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9190159,7.7926326,55.06,22.2,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,688,626348.94,222051.3,307436.84,0,0,0,1644.2827 +9447,11496,20529,20530,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.3259001,6.7860551,43,-2,19.51865,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403455,6.67416,59.39,27.3,36.38,55.37,8.333333333333334,1,1,0,0,7,2,2,1,963,692383.25,370980.81,91436.141,0,0,0,781.11371 +9447,11496,20530,20529,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.2165279,5.7788372,43,2,-19.478428,0,3,2,2021,20,8,0,21,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0265012,5.6253276,36.38,55.37,59.39,27.3,6.666666666666667,1,1,0,0,13,2,2,1,963,692383.25,370980.81,91436.141,0,0,0,781.11371 +9448,11497,20531,20532,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,9.3118343,8.7961149,0,6,2,-36.692993,0,1,2,2021,7,0,45,50,1,0,0,23.948557,23.948557,0,0,0,0,0,0,0,0,0,0,0,4.2661228,0,58.15,52.91,27.92,64.36,8.333333333333334,1,1,0,0,10,10,5,1,847,226780.91,0,526594.88,292872.09,114.46509,0,4881.4893 +9448,11497,20532,20531,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.3017683,8.6009064,0,6,-2,6.3173904,0,-9,-9,2021,24,10,40,40,1,10,0,14.658113,14.658113,0,0,0,0,0,0,0,0,0,0,0,3.5379491,0,27.92,64.36,58.15,52.91,8.333333333333334,1,1,0,0,5,10,5,1,847,226780.91,0,526594.88,292872.09,114.46509,0,4881.4893 +9449,11498,20533,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6673155,8.6922064,0,3,1,79.913132,0,1,1,2021,13,3,37,35,1,3,0,19.38443,19.38443,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.78,55.1,34.64,24.8,8.333333333333334,1,1,0,0,11,1,4,1,1616,-11166.938,16863.889,50399.551,65665.336,6150.3862,0,2779.991 +9449,11499,20534,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,5.4757681,5.8703637,3,-1,11.953035,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.2157965,0,34.64,24.8,35.78,55.1,3.333333333333333,1,1,0,0,0,1,4,1,754,86599.242,26344.617,0,0,0,0,307.15607 +9450,11500,20535,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,9.6394882,9.5824175,6.7818837,0,0,-1054.14,0,2,1,2021,17,5,40,40,1,5,0,49.24585,49.24585,.05,.05,0,0,0,0,0,74.5,0,0,0,7.2352352,0,23.45,56.76,-9,-9,1.666666666666667,1,1,0,0,14,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9450,11500,20536,-9,20535,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1076.9969,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9450,11500,20537,-9,20535,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1078.2012,-9,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.1855033,0,36.33,59.23,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9451,11501,20538,20540,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,6,-12,7.5353751,0,-9,-9,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.36,46.66,61.86,20.46,5,1,1,1,1,3,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9451,11501,20539,-9,20538,20540,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.25171,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9451,11501,20540,20538,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.5446711,7.2051611,0,6,12,20.413273,0,-9,-9,2021,8,0,24,24,1,0,0,6.8831215,6.8831215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.86,20.46,27.36,46.66,8.333333333333334,1,1,0,1,4,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9452,11502,20541,20542,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.9303799,9.2307768,7.5183425,6,1,-84.469017,0,1,2,2021,11,0,55,50,1,0,0,14.99641,14.99641,.05,.05,0,0,0,0,0,0,0,0,0,7.2565975,0,54.1,59.11,51.82,25.25,8.333333333333334,1,1,0,0,7,5,5,1,754.5,727981.5,355721.94,211535.84,0,18937.439,0,5038.4902 +9452,11502,20542,20541,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1640368,7.7454648,0,6,-1,-41.663162,0,2,1,2021,18,6,30,35,1,6,0,15.353102,15.353102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.82,25.25,54.1,59.11,8.333333333333334,1,1,0,0,6,5,5,1,754.5,727981.5,355721.94,211535.84,0,18937.439,0,5038.4902 +9452,11503,20543,-9,20542,20541,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1101.5103,1,2,1,2021,9,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,5,2,1,1433,0,0,0,0,0,0,0 +9452,11504,20544,-9,20542,20541,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1031.0352,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,2,5,1,1,1169,38389.266,0,0,0,0,0,0 +9453,11505,20545,-9,20546,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.0215,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,1,0,528.5,-124393.52,32530.098,0,0,-319.84882,0,1392.998 +9453,11505,20546,-9,-9,-9,1,0,40,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1044.7125,-9,3,3,2021,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.95,25.48,-9,-9,6.666666666666667,2,3,0,1,0,6,1,0,528.5,-124393.52,32530.098,0,0,-319.84882,0,1392.998 +9453,11506,20547,-9,20546,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-839.84973,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,6.916173,0,28.39,57.31,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,312,-91137.797,0,0,0,0,0,820.38202 +9454,11507,20548,20551,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.4413185,8.5987644,0,3,-11,21.242479,0,3,3,2021,35,12,38,37,1,12,0,14.073895,14.073895,0,0,0,0,0,0,0,0,1,1,0,1.3929522,0,20.13,58.37,41.7,60.44,6.666666666666667,1,1,0,0,8,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20549,-9,20548,-9,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-920.20825,-9,1,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,-9,-9,5,1,1,0,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20550,-9,20548,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1013.2473,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20551,20548,-9,-9,1,1,65,0,1,0,3,3,-9,0,3,0,6.4894171,6.6435027,3,11,-21.289167,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7624359,41.7,60.44,20.13,58.37,0,1,1,0,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9455,11508,20552,20553,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,6.4333215,6.4241362,8,0,151.14471,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8261275,6.6939988,36.91,38.64,57.09,46.7,1.666666666666667,3,4,0,0,0,8,2,1,398,779516.69,153170.02,588971,0,0,0,2376.146 +9455,11508,20553,20552,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.7667475,6.9456353,8,9,-179.48271,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.297883,6.711473,57.09,46.7,36.91,38.64,8.333333333333334,1,1,0,0,0,8,2,1,398,779516.69,153170.02,588971,0,0,0,2376.146 +9455,11509,20554,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.7853351,8.0293093,0,0,0,-1127.0704,0,-9,-9,2021,10,0,40,40,1,0,0,6.6779408,6.6779408,.05,.05,0,0,0,0,0,0,1,1,0,4.5007463,0,46.63,59.72,-9,-9,5,1,1,0,0,9,8,3,1,520,255926.05,-14600.275,0,0,0,0,759.46362 +9456,11510,20555,20556,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.5154705,8.6919718,0,12,1,152.96207,0,-9,-9,2021,6,0,50,52,1,0,0,9.2570171,9.2570171,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,54.1,59.11,10,1,1,0,0,14,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9456,11510,20556,20555,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,8.9433908,9.102478,0,24,-1,26.969744,0,1,1,2021,9,0,35,35,1,0,0,19.004135,19.004135,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.73,58.82,8.333333333333334,1,1,0,0,11,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9456,11510,20557,-9,20555,20556,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-910.08551,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9457,11511,20558,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0254812,8.5261841,0,0,0,-1047.5559,0,3,2,2021,16,4,40,40,1,4,0,11.638738,11.638738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,609,207520.22,83930.82,33478.945,-7938.0068,0,518.10327,2137.4207 +9457,11512,20559,-9,20558,-9,1,1,19,0,0,1,2,0,0,0,4,0,4.0010667,3.9590111,0,0,-862.33667,-9,1,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,7,0,0,0,6.9957957,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1488,-126755.08,0,0,0,0,0,488.52997 +9458,11513,20560,20561,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,3.3569269,4.1126003,3.3742352,40,1,-13.281714,0,2,2,2021,14,0,9,12,1,3,0,.28964078,.28964078,0,0,0,0,0,0,0,2,0,0,0,0,3.154377,42.6,29.19,42.85,45.55,5,1,1,0,0,11,10,3,1,290.5,530344,169733.3,238941.56,0,0,0,1990.1086 +9458,11513,20561,20560,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.2568941,8.2210093,40,-1,72.102303,0,2,3,2021,25,11,0,30,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1198134,8.0275316,42.85,45.55,42.6,29.19,8.333333333333334,1,1,0,1,9,10,3,1,290.5,530344,169733.3,238941.56,0,0,0,1990.1086 +9458,11514,20562,-9,20560,20561,1,1,29,0,0,0,1,1,-9,0,3,7.6520391,7.722187,0,0,0,-1073.7268,0,2,1,2021,18,6,24,12,1,6,1,10.048955,10.048955,0,0,0,0,0,0,0,0,0,0,0,0,0,46,53,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,2294,-154695.77,0,0,0,0,0,1710.8354 +9459,11515,20563,20565,-9,-9,1,1,24,1,1,0,2,2,-9,0,5,8.6352501,8.4968958,0,4,-1,7.700459,0,-9,-9,2021,6,0,35,39,1,0,0,17.175516,17.175516,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,30.25,57.85,8.333333333333334,1,1,0,0,9,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9459,11515,20564,-9,20565,20563,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.9987,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9459,11515,20565,20563,-9,-9,1,0,25,1,1,0,1,1,-9,0,3,6.6915517,6.8669558,0,4,1,6.684751,0,-9,-9,2021,17,5,16,16,1,5,0,7.1964474,7.1964474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.25,57.85,57.06,57.76,1.666666666666667,1,1,0,0,3,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9460,11516,20566,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-869.68243,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,37,-9,-9,5,1,1,0,0,0,7,1,0,1378,-47296.551,0,0,0,0,0,2651.071 +9461,11517,20567,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1061.0916,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,235,0,0,0,0,0,0,-417.80298 +9462,11518,20568,20569,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,11,6,47.823593,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.08,43.13,37.99,47.35,6.666666666666667,1,1,0,0,1,13,3,1,859,1299623.6,1044525.1,243875.94,0,0,0,1259.2318 +9462,11518,20569,20568,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1890259,8.1288319,0,11,-6,71.763199,0,3,3,2021,13,2,38,38,1,2,0,9.8243942,9.8243942,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,45.08,43.13,6.666666666666667,1,1,0,0,12,13,3,1,859,1299623.6,1044525.1,243875.94,0,0,0,1259.2318 +9462,11519,20570,-9,20569,20568,1,0,30,0,0,0,1,1,-9,0,3,8.4018478,8.3555136,0,1,-1,-9.7363367,0,3,3,2021,10,0,38,38,1,0,0,14.487062,14.487062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,46,58,6.666666666666667,1,1,0,0,8,13,4,1,1442,-131225.97,3306.3269,157309.89,55652.758,0,0,1667.8916 +9463,11520,20571,20572,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4291744,8.5984964,7.4315615,26,-12,47.709785,0,2,2,2021,9,0,36,36,1,0,0,15.853636,15.853636,.05,.05,0,0,0,0,0,2,0,0,0,0,7.5010943,46.98,59.35,58.63,40.57,1.666666666666667,1,1,0,0,14,9,5,1,594.5,873055.13,494478.78,349432.25,0,0,0,5313.4365 +9463,11520,20572,20571,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5392742,8.7694502,7.7372613,25,12,68.71669,0,2,3,2021,8,0,40,40,1,0,0,15.019913,15.019913,.05,.05,0,0,0,0,0,0,0,0,0,8.0296545,8.2017431,58.63,40.57,46.98,59.35,6.666666666666667,1,1,0,0,14,9,5,1,594.5,873055.13,494478.78,349432.25,0,0,0,5313.4365 +9463,11521,20573,-9,20571,20572,1,1,22,0,0,0,1,1,-9,0,4,7.7191038,8.0654821,7.2293448,0,0,-927.8559,0,2,2,2021,9,3,40,0,1,3,1,5.872777,5.872777,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0163965,47,60,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,2478,47093.398,109510.48,0,0,0,0,1223.2941 +9463,11522,20574,-9,20571,20572,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-981.06592,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2114215,0,56.41,53.71,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1588,-19999.318,0,0,0,0,0,2010.0732 +9464,11523,20575,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.267045,7.4416795,0,0,0,-1066.5824,0,2,-9,2021,35,12,15,15,1,12,0,12.809852,12.809852,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.72,39.2,-9,-9,3.333333333333333,3,4,0,1,4,8,2,0,308,30422.342,188758.13,0,0,0,0,226.75456 +9464,11524,20576,-9,20575,-9,1,1,24,0,2,0,2,2,-9,0,5,6.4599977,6.5266948,0,0,0,-1102.0604,0,2,-9,2021,6,1,40,30,1,1,1,2.0180452,2.0180452,0,0,0,0,0,0,0,0,0,0,0,0,0,70.29000000000001,42.14,-9,-9,10,3,4,0,0,4,8,2,0,2159,-23802.695,0,0,0,0,161.89459,459.77502 +9464,11525,20577,-9,20575,-9,1,1,20,0,2,0,2,2,1,0,3,0,0,0,0,0,-956.93817,-9,2,-9,2021,22,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.08,38.91,-9,-9,5,3,4,0,0,1,8,1,0,57,0,0,0,0,0,0,756.78009 +9465,11526,20578,20579,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.3289146,7.7463999,39,-6,68.870758,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3285937,7.7234368,57.16,56.15,60.12,54.8,10,1,1,0,0,14,5,5,1,266,862578.88,238110.84,586230.88,79919.523,0,0,4395.6704 +9465,11526,20579,20578,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.425458,8.927659,38,6,31.52247,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,6.5244131,9.1455812,60.12,54.8,57.16,56.15,0,1,1,0,0,15,5,5,1,266,862578.88,238110.84,586230.88,79919.523,0,0,4395.6704 +9466,11527,20580,20581,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.5749216,5.3110671,59,-5,118.83839,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,16.804159,0,0,1,1,0,5.4168916,5.5185261,49.96,40.18,54.96,53.17,10,1,1,0,0,0,5,2,1,2328.5,138897.88,153639.05,0,0,0,0,1486.988 +9466,11527,20581,20580,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.1275077,6.2761383,10,5,171.53687,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0438066,0,54.96,53.17,49.96,40.18,6.666666666666667,1,1,0,0,0,5,2,1,2328.5,138897.88,153639.05,0,0,0,0,1486.988 +9466,11528,20582,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9365911,6.8376217,0,0,-1051.1492,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8515761,6.6397424,52,47,-9,-9,7,4,6,0,0,0,5,2,1,1000,35142.805,261609.91,68396.18,0,4841.606,0,1213.3478 +9467,11529,20583,-9,20585,20587,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.28241,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20584,-9,20585,20587,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.55963,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20585,20587,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,5.6329789,5.7157269,0,6,2,92.805038,0,1,1,2021,6,0,1,20,1,0,0,32.132851,32.132851,.05,.05,0,0,0,0,0,0,1,1,0,2.5597279,0,57.06,57.76,38.79,56.81,10,2,3,0,0,6,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20586,-9,20585,20587,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.50616,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20587,20585,-9,-9,1,1,31,1,3,0,1,1,-9,0,3,8.8719149,9.0886145,0,6,-2,112.26959,0,-9,-9,2021,15,3,50,54,1,3,0,18.390123,18.390123,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.79,56.81,57.06,57.76,6.666666666666667,1,1,0,0,7,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9468,11530,20588,20591,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,25,1,104.61724,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.32,50.22,10,1,1,0,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20589,-9,20588,20591,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.82629,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20590,-9,20588,20591,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20591,20588,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.2887793,8.4785938,0,7,-1,7.1566648,0,-9,-9,2021,11,0,43,40,1,0,0,11.088022,11.088022,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,6.666666666666667,1,1,0,0,8,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20592,-9,20588,20591,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.86383,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9469,11531,20593,20594,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.2817688,7.9395962,0,3,4,-22.615009,0,3,3,2021,24,8,40,45,1,8,0,9.8822317,9.8822317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.35,52.43,29.55,44.58,1.666666666666667,1,1,0,0,6,2,4,0,315.5,91620.891,-13602.67,51263.063,70550.188,0,911.08527,2972.3362 +9469,11531,20594,20593,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.0112343,8.4289818,0,3,-4,-29.013695,0,-9,-9,2021,17,5,51,49,1,5,0,5.57621,5.57621,0,0,0,0,0,0,0,0,0,0,0,0,0,29.55,44.58,36.35,52.43,3.333333333333333,1,1,0,0,3,2,4,0,315.5,91620.891,-13602.67,51263.063,70550.188,0,911.08527,2972.3362 +9470,11532,20595,20596,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.0789108,8.0048733,0,10,0,69.86129,0,2,2,2021,14,4,37,35,1,4,0,10.995766,10.995766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9470,11532,20596,20595,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.2907934,9.5877905,0,10,0,64.26873,0,-9,-9,2021,7,0,55,55,1,0,0,25.143877,25.143877,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.84,58.37,8.333333333333334,1,1,0,0,11,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9470,11532,20597,-9,20595,20596,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1013.2528,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9471,11533,20598,20599,-9,20600,1,0,60,0,0,0,1,1,-9,0,4,9.3371754,9.4295626,7.7946858,41,-4,-123.25885,0,1,1,2021,17,4,60,55,1,4,0,20.679825,20.679825,0,0,0,0,0,0,0,2,1,1,0,0,7.8683014,47.36,48.15,66.78,36.6,8.333333333333334,1,1,0,0,13,5,5,0,907.5,3473593.3,484495.06,557421.44,0,0,0,7979.8447 +9471,11533,20599,20598,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.8593283,9.4964447,7.8860855,41,4,-80.716606,0,2,2,2021,9,1,45,50,1,1,0,20.315744,20.315744,.05,.05,.05,0,0,0,0,2,1,1,0,.56541318,7.9019175,66.78,36.6,47.36,48.15,8.333333333333334,1,1,0,0,10,5,5,0,907.5,3473593.3,484495.06,557421.44,0,0,0,7979.8447 +9471,11534,20600,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.1002817,8.5420542,0,0,-934.15869,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4465356,0,0,1,1,0,4.185554,7.8395276,65.89,22.13,-9,-9,6.666666666666667,1,1,0,0,0,5,4,0,3851,201825.69,221120.83,134607.39,0,0,0,3291.0193 +9472,11535,20601,-9,20604,20602,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1043.1986,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20602,20604,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.6432142,8.7691841,0,8,1,13.386912,0,-9,-9,2021,8,0,48,40,1,0,0,16.71825,16.71825,.05,.05,0,0,0,0,0,0,1,1,0,5.088294,0,54.77,55.87,49.35,59.64,6.666666666666667,1,1,0,0,10,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20603,-9,20604,20602,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.66479,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20604,20602,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,8.0693865,7.7276988,0,19,-1,-19.084732,0,3,3,2021,7,0,10,8,1,0,0,24.253685,24.253685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,54.77,55.87,8.333333333333334,1,1,0,0,10,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20605,-9,20604,20602,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-826.51959,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9473,11536,20606,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.9682531,7.7679839,0,0,-1149.1041,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1216235,7.4919395,39.95,42.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1286,852795.94,289822.31,574072.25,0,0,0,1527.5343 +9474,11537,20607,20608,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.0288124,8.2947922,0,21,3,-113.86806,0,-9,-9,2021,6,0,45,45,1,0,0,9.4106236,9.4106236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.07,51.88,6.666666666666667,2,3,0,0,14,6,4,1,774.5,542538.38,276545.53,192668.94,94512.328,0,2859.8457,1930.9006 +9474,11537,20608,20607,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.0458746,6.6872492,0,21,-3,-46.949837,0,-9,-9,2021,13,1,25,32,1,1,0,5.0741234,5.0741234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.07,51.88,57.06,57.76,8.333333333333334,2,3,0,0,14,6,4,1,774.5,542538.38,276545.53,192668.94,94512.328,0,2859.8457,1930.9006 +9474,11538,20609,-9,20608,20607,1,1,24,0,0,0,1,1,-9,0,4,8.3816423,8.6045942,0,0,0,-1108.9028,0,3,3,2021,8,0,40,38,1,0,1,11.494978,11.494978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,6,6,5,1,7364,-165905.75,-64689.582,0,0,0,0,2626.3789 +9475,11539,20610,-9,20611,20612,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.36035,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9475,11539,20611,20612,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,0,0,0,7,-7,43.983215,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,41,52,56,6.666666666666667,4,5,0,0,0,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9475,11539,20612,20611,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,9.2489281,9.2730713,0,7,7,152.07983,0,-9,-9,2021,9,0,50,42,1,1,0,25.398556,25.398556,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,56,41,41,8,4,2,0,0,1,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9476,11540,20613,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,0,0,0,0,0,-928.6275,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,-9,-9,8,1,1,1,1,0,13,2,1,556,-37236.102,0,0,0,0,0,310.95587 +9476,11541,20614,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1020.3506,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,1,0,13,1,1,283,-113636.71,0,0,0,0,0,-47.221779 +9477,11542,20615,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.1393,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6714797,0,63.97,43.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,477,364026.5,0,128825.39,0,0,0,2148.8608 +9478,11543,20616,20617,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.3517461,6.937572,0,37,-2,-39.268562,0,2,2,2021,6,0,37,37,1,0,0,5.0183616,5.0183616,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,6,5,4,0,694.5,497848.06,82448.539,318571.09,37869.719,0,0,2884.6533 +9478,11543,20617,20616,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5652227,8.5033464,0,37,2,6.9154196,0,3,1,2021,8,1,19,39,1,1,0,25.59931,25.59931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,1.666666666666667,2,3,0,0,11,5,4,0,694.5,497848.06,82448.539,318571.09,37869.719,0,0,2884.6533 +9479,11544,20618,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1110.0708,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.38,38.31,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,934,0,0,0,0,0,0,1896.2365 +9480,11545,20619,20620,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.6028719,9.5614862,0,29,3,131.24055,0,2,2,2021,11,1,50,50,1,1,0,35.879509,35.879509,.05,.05,0,0,0,0,0,0,0,0,0,.62964845,0,44.85,53.68,58.9,45.74,6.666666666666667,1,1,0,0,9,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11545,20620,20619,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.9294949,8.8967485,0,29,-3,54.887341,0,2,1,2021,8,0,28,28,1,0,0,18.262909,18.262909,.05,.05,0,0,0,0,0,0,0,0,0,4.934648,0,58.9,45.74,44.85,53.68,8.333333333333334,1,1,0,0,10,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11545,20621,-9,20620,20619,1,1,11,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1013.3799,-9,1,1,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11546,20622,-9,20620,20619,1,1,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-1120.1614,-9,1,1,2021,15,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.04,50.19,-9,-9,3.333333333333333,1,1,1,1,3,8,1,1,813,-54980.801,0,0,0,0,1850.028,-872.20837 +9480,11547,20623,-9,20620,20619,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-984.92236,-9,1,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6104393,0,43.69,59.95,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,428,-44214.934,62597.684,0,0,0,320.87619,-377.96005 +9481,11548,20624,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.2106781,8.2979689,0,0,0,-1008.6248,0,2,2,2021,17,5,37,0,1,5,0,12.395911,12.395911,.05,.05,0,0,0,0,0,0,0,0,0,4.0693812,0,26.1,57.67,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,215,330038.53,113500.52,230562.38,22477.688,0,3784.1899,1637.5785 +9482,11549,20625,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.0837498,7.936758,0,0,0,-1039.9561,0,3,2,2021,12,0,37,37,1,0,0,10.5194,10.5194,.05,.05,0,0,0,0,0,0,1,1,0,1.741171,0,49.04,55.86,-9,-9,5,1,1,0,0,15,2,4,1,184,83365.734,-122119.7,0,0,13002.611,0,1332.745 +9483,11550,20626,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.8434258,7.1847167,0,0,-992.88892,0,2,2,2021,10,1,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9637125,7.2138505,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,494,350414.66,280408.03,190392.41,0,0,0,752.18787 +9484,11551,20627,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.3416104,7.0667706,0,0,0,-1076.4216,0,3,3,2021,9,0,25,15,1,0,0,6.7023091,6.7023091,.05,.05,0,0,0,0,0,7,0,0,0,.20042905,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,6,2,3,0,3553,43249.211,55791.953,0,0,0,0,212.21008 +9485,11552,20628,20629,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.8760433,8.1120529,0,9,0,-87.718552,0,3,3,2021,9,0,38,38,1,0,0,8.1237545,8.1237545,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,51.41,56.15,6.666666666666667,1,1,0,0,8,2,4,0,624,-9958.959,23267.5,0,0,33074.398,0,1710.2542 +9485,11552,20629,20628,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,7.7345834,7.8880329,0,9,0,-92.63765,0,-9,-9,2021,15,3,38,38,1,3,0,8.1266041,8.1266041,0,0,0,0,0,0,0,14.5,0,0,0,0,0,51.41,56.15,46.4,57.35,8.333333333333334,1,1,0,0,6,2,4,0,624,-9958.959,23267.5,0,0,33074.398,0,1710.2542 +9486,11553,20630,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,0,7.770968,7.9046645,0,0,-1005.9839,0,1,1,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1105032,57.06,57.76,-9,-9,10,1,1,0,0,12,11,4,1,1499,-34611.367,-30479.975,0,0,0,0,1369.0028 +9487,11554,20631,-9,20633,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.0332,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9487,11554,20632,-9,20633,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-954.13538,-9,2,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9487,11554,20633,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,6.8886986,7.4414473,6.0271602,0,0,-1065.3187,0,3,2,2021,18,8,12,17,1,8,0,9.341114,9.341114,.05,.05,0,0,0,0,0,27,1,0,1,6.35356,0,27.97,56.89,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9488,11555,20634,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.5117655,9.0230455,0,0,0,-856.81885,0,2,2,2021,14,2,41,41,1,2,0,19.105726,19.105726,.05,.05,0,0,0,0,0,2,0,0,0,1.6668599,0,40.62,51.79,-9,-9,5,1,1,0,0,10,6,5,1,271,290636.47,375521.19,171518.2,92705.406,3213.9048,1068.4521,1628.6115 +9489,11556,20635,20636,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.2533979,8.0202541,12,8,51.96373,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0701752,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,0,6,4,1,2286,978314.13,493016.69,161572.86,0,0,0,3339.8672 +9489,11556,20636,20635,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.2011056,6.7351246,26,-8,-41.808399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.54422426,6.3584437,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,11,6,4,1,2286,978314.13,493016.69,161572.86,0,0,0,3339.8672 +9490,11557,20637,20638,-9,-9,1,1,49,0,0,0,2,2,-9,0,1,8.1386814,8.4655619,0,7,-12,46.891846,0,2,3,2021,11,2,36,36,1,2,0,14.648132,14.648132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.61,41.04,36.6,48.26,5,1,1,0,0,7,4,4,1,1001.5,238839.72,123047.31,113943.09,16429.447,0,0,2353.3594 +9490,11557,20638,20637,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.9797378,8.0058918,0,7,12,-6.71977,0,3,-9,2021,16,4,40,38,1,4,0,9.5607748,9.5607748,0,0,0,0,0,0,0,0,0,0,0,0,0,36.6,48.26,49.61,41.04,8.333333333333334,1,1,0,0,9,4,4,1,1001.5,238839.72,123047.31,113943.09,16429.447,0,0,2353.3594 +9491,11558,20639,20640,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.0767269,8.0512791,0,8,11,175.66632,0,3,2,2021,7,0,32,37,1,0,0,13.202934,13.202934,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,40.71,62.41,8.333333333333334,1,1,0,0,12,5,5,1,641,39880.703,121211.27,120428.81,86456.813,35342.559,19044.789,3110.1042 +9491,11558,20640,20639,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2870865,8.3566084,0,8,-11,66.814056,0,2,2,2021,5,0,40,0,1,0,0,15.923099,15.923099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,55.96,49.93,10,1,1,0,0,12,5,5,1,641,39880.703,121211.27,120428.81,86456.813,35342.559,19044.789,3110.1042 +9492,11559,20641,20642,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,42,-1,-52.77898,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6826587,0,66.44,47.81,58.56,44.55,10,1,1,0,0,0,10,2,1,683,452956.28,313094.34,223355.59,0,0,0,1745.8997 +9492,11559,20642,20641,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.2659039,7.106842,0,42,1,-33.581276,0,3,3,2021,9,0,50,50,1,0,0,3.4158051,3.4158051,0,0,0,0,0,0,0,0,0,0,0,3.4041834,0,58.56,44.55,66.44,47.81,8.333333333333334,1,1,0,0,12,10,2,1,683,452956.28,313094.34,223355.59,0,0,0,1745.8997 +9493,11560,20643,20644,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,3,0,0,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.01,22.04,31.9,19.36,1.666666666666667,1,1,0,1,0,12,1,0,315.5,59278.406,-34639.211,0,0,0,10211.947,1639.9846 +9493,11560,20644,20643,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,3,0,0,0,3,3,2021,32,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,31.9,19.36,26.01,22.04,3.333333333333333,1,1,0,1,0,12,1,0,315.5,59278.406,-34639.211,0,0,0,10211.947,1639.9846 +9494,11561,20645,20647,-9,-9,1,1,63,0,1,0,3,3,-9,0,3,8.9864054,8.7218637,6.7996354,9,10,65.212753,0,3,3,2021,6,0,38,38,1,0,0,21.53842,21.53842,0,0,0,0,0,0,0,0,1,1,0,3.1242769,7.2132254,48.91,50.44,37.2,56.1,8.333333333333334,1,1,0,0,11,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9494,11561,20646,-9,20647,20645,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.8483,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9494,11561,20647,20645,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,6.6681514,7.0236945,0,9,-10,32.796432,0,3,3,2021,9,0,15,15,1,0,0,5.8247457,5.8247457,0,0,0,0,0,0,0,111,1,1,0,0,0,37.2,56.1,48.91,50.44,5,1,1,0,0,8,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9495,11562,20648,-9,20650,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1009.2552,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9495,11562,20649,-9,20650,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1002.6755,-9,3,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,1,1,-9,0,0,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9495,11562,20650,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.5041137,7.6477232,6.7420211,0,0,-1017.7198,0,-9,-9,2021,11,0,29,29,1,0,0,7.9905453,7.9905453,.05,.05,0,0,0,0,0,0,1,0,1,7.0092077,0,55.76,52.64,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9496,11563,20651,20652,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5130506,7.5622826,0,26,-5,23.352058,0,2,2,2021,9,0,29,34,1,0,0,7.7399707,7.7399707,0,0,0,0,0,0,0,14.5,0,0,0,2.8001282,0,58.32,50.22,61.01,50.48,8.333333333333334,1,1,0,0,11,4,5,1,207,726105.38,98487.375,444762.38,0,0,0,4297.5273 +9496,11563,20652,20651,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.9445505,9.3937654,5.5155983,27,5,110.30483,0,-9,-9,2021,7,0,35,37,1,0,0,38.087029,38.087029,0,0,0,0,0,0,0,0,0,0,0,5.8063321,5.8038931,61.01,50.48,58.32,50.22,10,1,1,0,0,10,4,5,1,207,726105.38,98487.375,444762.38,0,0,0,4297.5273 +9497,11564,20653,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.974184,7.3556981,0,0,-916.96124,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0298686,7.179729,45.38,47.41,-9,-9,10,1,1,0,0,0,9,3,1,1597,382708.94,350949.53,284226.25,0,0,0,1109.8102 +9498,11565,20654,20655,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.9710503,8.9268913,0,6,-4,44.592129,0,-9,-9,2021,22,9,33,32,1,9,0,28.620544,28.620544,0,0,0,0,0,0,0,93,1,1,0,0,0,37.52,61.39,51.83,57.2,3.333333333333333,1,1,0,0,7,6,4,1,280,489039.63,352315.31,67323.898,24115.156,7497.5488,0,3092.2534 +9498,11565,20655,20654,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,0,0,0,6,4,-55.500557,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,37.52,61.39,6.666666666666667,1,1,0,0,2,6,4,1,280,489039.63,352315.31,67323.898,24115.156,7497.5488,0,3092.2534 +9499,11566,20656,20657,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,6.922008,6.6919079,16,24,71.610962,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8808112,6.7795467,47.13,48.65,53.23,42.31,8.333333333333334,1,1,0,0,12,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9499,11566,20657,20656,-9,-9,1,0,54,0,1,0,1,1,-9,1,2,0,0,0,16,-24,-13.801474,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,42.31,47.13,48.65,6.666666666666667,1,1,0,1,5,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9499,11566,20658,-9,20657,20656,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-963.8606,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9500,11567,20659,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.2482347,9.1911888,0,0,0,-1048.5483,0,-9,3,2021,10,0,44,48,1,0,0,24.413675,24.413675,0,0,0,0,0,0,0,0,0,0,0,0,0,53.39,50.01,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,936,1372623.6,527275.19,534989.81,0,0,0,3245.5574 +9501,11568,20660,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.4409146,8.0991201,7.2154374,0,0,-1023.8292,0,3,3,2021,6,0,24,24,1,0,0,8.3865767,8.3865767,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2145739,58.89,48.6,-9,-9,1.666666666666667,3,4,0,0,13,8,4,1,115,926040.38,195587.64,743125.44,0,0,0,1974.1918 +9502,11569,20661,-9,20663,20664,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.0827,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20662,-9,20663,20664,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1123.4362,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20663,20664,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.2997103,8.3325834,0,8,-4,-34.317924,0,3,3,2021,13,2,38,38,1,2,0,7.1272874,7.1272874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,33.21,53.72,8.333333333333334,1,1,0,0,11,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20664,20663,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2653589,8.6434803,0,24,4,40.833515,0,3,3,2021,9,2,55,55,1,2,0,13.578072,13.578072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.21,53.72,46.63,59.72,8.333333333333334,1,1,0,0,11,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9503,11570,20665,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.1794815,6.2390723,0,0,-979.39288,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,.43943048,0,0,1,1,0,5.6289387,6.531579,41.95,35.21,-9,-9,5,1,1,0,0,12,7,2,1,750,471189.53,158766.2,198150.95,0,2384.5068,0,1553.1337 +9504,11571,20666,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-969.09583,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.41,16.97,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,473,223893.16,0,201586.48,0,0,0,903.7478 +9505,11572,20667,-9,20668,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-932.21332,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20668,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,3,7.6228881,7.9349914,6.0488205,0,0,-953.25031,0,2,2,2021,12,1,36,39,1,1,0,5.5429225,5.5429225,.05,.05,0,0,0,0,0,0,1,1,0,5.623673,0,35.34,44.5,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20669,-9,20668,-9,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-891.16528,-9,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20670,-9,20668,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.06238,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9506,11573,20671,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.9758368,7.8183131,7.0926933,0,0,-878.20288,0,3,3,2021,10,0,32,24,1,0,0,5.6941018,5.6941018,.05,.05,0,0,0,0,0,0,0,0,0,2.3500977,7.2898655,46.05,33,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,1628,207406.88,8551.6914,0,0,15538.938,0,1228.7861 +9507,11574,20672,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.7979355,8.8673458,0,0,0,-934.10535,0,1,2,2021,10,0,45,59,1,0,0,18.136126,18.136126,.05,.05,0,0,0,0,0,0,0,0,0,3.2713194,0,42.34,59.15,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,1032,4361.6353,21930.262,416372.31,350468.06,1568.7899,0,2853.0151 +9508,11575,20673,20674,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.56,19.32,52.47,11.65,8.333333333333334,1,1,0,0,0,7,1,1,1209.5,35664.363,0,0,0,0,0,1986.3691 +9508,11575,20674,20673,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,79.065811,0,0,1,1,0,0,0,52.47,11.65,49.56,19.32,8.333333333333334,1,1,0,0,0,7,1,1,1209.5,35664.363,0,0,0,0,0,1986.3691 +9509,11576,20675,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.8454647,8.7452526,0,0,0,-935.9939,0,3,3,2021,13,1,57,40,1,1,0,12.157317,12.157317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.86,41.35,-9,-9,5,1,1,0,0,7,1,5,1,1027,601360.25,569029.13,0,0,0,0,1533.9821 +9510,11577,20676,20677,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.1973734,8.9404001,6.2113667,5,0,-7.3500671,0,-9,-9,2021,7,0,40,48,1,0,0,31.432028,31.432028,.05,.05,0,0,0,0,0,0,1,1,0,6.5532665,0,54.2,57.49,47.55,57.73,8.333333333333334,1,1,0,0,12,2,5,1,399,1730956.5,951538.63,535025.81,15123.262,0,6526.2622,4445.9126 +9510,11577,20677,20676,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.8532548,7.6634102,0,5,0,69.621445,0,2,2,2021,7,0,30,30,1,0,0,9.6784754,9.6784754,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,57.73,54.2,57.49,8.333333333333334,1,1,0,0,10,2,5,1,399,1730956.5,951538.63,535025.81,15123.262,0,6526.2622,4445.9126 +9511,11578,20678,20679,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.0027719,7.4255786,9,1,-2.8213751,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0107422,7.4473333,54.36,39.67,55.19,54.26,8.333333333333334,1,1,0,0,0,9,4,1,993,963287.25,571969,189389.09,0,0,0,4384.2393 +9511,11578,20679,20678,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.4039068,8.4556551,9,-1,84.610405,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8210325,8.4903421,55.19,54.26,54.36,39.67,8.333333333333334,1,1,0,0,5,9,4,1,993,963287.25,571969,189389.09,0,0,0,4384.2393 +9512,11579,20680,20681,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.3864284,7.7371926,48,5,-3.570926,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9874694,7.823401,47.55,44.33,55.48,57.1,8.333333333333334,1,1,0,0,0,5,3,1,836.5,665196.88,343567.31,306819.72,0,4360.208,0,1227.7455 +9512,11579,20681,20680,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,48,-5,72.288986,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0022426,0,55.48,57.1,47.55,44.33,8.333333333333334,1,1,0,0,0,5,3,1,836.5,665196.88,343567.31,306819.72,0,4360.208,0,1227.7455 +9513,11580,20682,20683,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.5730791,9.83358,0,11,8,-104.77583,0,1,1,2021,9,0,39,39,1,0,0,41.729809,41.729809,0,0,.05,0,0,0,0,0,0,0,0,4.1571174,0,51.83,57.2,55.79,52.62,8.333333333333334,1,1,0,0,11,7,5,1,351.5,2424764,231014.16,1060346.8,0,0,0,6177.1807 +9513,11580,20683,20682,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7701998,8.7536545,0,11,-8,60.320488,0,1,1,2021,11,2,38,37,1,2,0,16.24848,16.24848,0,0,.05,0,0,0,0,0,0,0,0,6.7815804,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,11,7,5,1,351.5,2424764,231014.16,1060346.8,0,0,0,6177.1807 +9514,11581,20684,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.26855,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,35.22,-9,-9,5,1,1,0,0,0,12,1,0,713,-47942.016,0,0,0,0,0,1388.6149 +9515,11582,20685,20686,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,53,3,124.95821,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,56.36,45.47,7,1,1,0,0,0,4,2,1,1483,115947.38,-19849.518,99170.352,0,0,0,1999.3408 +9515,11582,20686,20685,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.4125085,4.685688,53,-3,174.14943,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3211193,4.443068,56.36,45.47,53,47,10,1,1,0,0,0,4,2,1,1483,115947.38,-19849.518,99170.352,0,0,0,1999.3408 +9516,11583,20687,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.9733515,6.0611176,0,0,-980.26154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3605409,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2069,191216.83,217369.73,0,0,1039.0989,0,565.84167 +9517,11584,20688,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,9.0257387,9.2879725,0,0,0,-1095.6931,0,2,2,2021,17,5,74,42,1,5,0,13.119664,13.119664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,54.62,-9,-9,1.666666666666667,1,1,0,0,14,10,5,1,421,873718,841566.94,169962.03,0,0,0,2492.8196 +9518,11585,20689,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.1529922,7.093235,0,0,-911.4939,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.38759285,7.1591964,46.93,37.9,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2267,41761.063,-10964.169,0,0,0,0,396.92349 +9519,11586,20690,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.6453066,7.5962629,5.5538583,0,0,-1068.7887,0,3,3,2021,12,0,42,37,1,0,0,6.5617785,6.5617785,.05,.05,0,0,0,0,0,0,1,1,0,5.3699012,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,473,109838.52,165748.83,109634.98,-11493.203,3215.4307,0,1364.6493 +9519,11587,20691,-9,20690,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3490772,8.4412766,0,0,0,-942.41528,-9,1,-9,2021,7,0,38,0,1,0,1,14.841499,14.841499,.05,.05,0,0,0,0,0,0,1,1,0,.27041313,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,4,4,5,1,1793,-131913.63,38292.883,62533.867,89134.422,1154.9935,3581.6235,1387.9026 +9519,11588,20692,-9,20690,-9,1,1,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-963.55328,-9,1,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,4,1,1,1266,-265130.78,0,0,0,0,0,0 +9520,11589,20693,-9,20694,20695,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.7767,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9520,11589,20694,20695,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.20223,6.126307,0,8,-14,91.982475,0,3,2,2021,9,0,8,0,1,0,0,7.7338853,7.7338853,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51.14,60.45,6.666666666666667,1,1,0,0,6,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9520,11589,20695,20694,-9,-9,1,1,41,1,1,0,2,2,-9,0,5,7.1491947,7.2745314,0,8,14,127.56692,0,2,2,2021,7,0,60,35,1,0,0,3.7925525,3.7925525,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,52,54.51,8.333333333333334,1,1,0,0,10,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9521,11590,20696,20697,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,19,-5,70.16375,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.65,28.19,60.02,56.42,8.333333333333334,4,2,0,0,9,9,5,0,994.5,1197198,463650.19,452883.06,0,0,0,3771.2026 +9521,11590,20697,20696,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.9845266,8.943965,0,13,5,70.175194,0,-9,-9,2021,6,0,53,50,1,0,0,19.951765,19.951765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,59.65,28.19,6.666666666666667,1,1,0,0,9,9,5,0,994.5,1197198,463650.19,452883.06,0,0,0,3771.2026 +9522,11591,20698,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1048.0157,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,1.9757879,3.395777,19.714535,0,1,1,0,0,0,44.72,21.01,-9,-9,6.666666666666667,1,1,0,1,5,7,2,0,5107,-12300.915,0,0,0,8102.1938,0,933.74042 +9523,11592,20699,20700,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.2051401,8.2908306,0,11,2,-104.43315,0,2,2,2021,15,3,40,40,1,3,0,12.694201,12.694201,.05,.05,0,0,0,0,0,0,1,1,0,4.3119717,0,38.89,52.49,41.78,52.4,8.333333333333334,1,1,0,0,12,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9523,11592,20700,20699,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.0276623,8.3667927,0,11,-2,85.900948,0,2,2,2021,16,4,42,40,1,4,0,8.3045273,8.3045273,0,0,0,0,0,0,0,2,1,1,0,6.4913192,0,41.78,52.4,38.89,52.49,8.333333333333334,1,1,0,0,12,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9523,11592,20701,-9,20700,20699,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-887.99945,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9524,11593,20702,20703,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.2052803,7.4567628,52,3,31.00795,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0031214,7.3075199,59.7,32.49,59.53,56.44,8.333333333333334,1,1,0,0,0,10,2,0,2574,649654.25,-14393.45,298474.63,0,0,0,1821.499 +9524,11593,20703,20702,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.5282865,5.0725412,52,-3,24.976551,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2230043,5.4876146,59.53,56.44,59.7,32.49,10,1,1,0,0,0,10,2,0,2574,649654.25,-14393.45,298474.63,0,0,0,1821.499 +9525,11594,20704,20705,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.0236578,7.1032481,9,-2,108.4844,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9995971,6.5717363,59.63,41.44,58.75,51.28,8.333333333333334,1,1,0,0,0,12,4,1,679,1331142.8,751747.31,206130.45,0,22127.383,1516.3784,6271.5835 +9525,11594,20705,20704,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.3391399,8.3421392,9,2,-100.73579,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7058187,8.6256752,58.75,51.28,59.63,41.44,10,1,1,0,0,0,12,4,1,679,1331142.8,751747.31,206130.45,0,22127.383,1516.3784,6271.5835 +9526,11595,20706,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,6.7115197,7.1901455,6.3345833,0,0,-1080.0962,0,2,3,2021,15,3,10,0,1,3,0,9.4627419,9.4627419,0,0,0,0,0,0,0,0,0,0,0,6.8156819,0,21.17,57.13,-9,-9,1.666666666666667,1,1,0,1,13,7,3,1,579,589483.25,468179.88,243313.73,108141.18,0,0,680.27692 +9527,11596,20707,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.935843,7.2462091,0,0,0,-1061.1409,0,-9,-9,2021,5,0,24,20,1,0,0,7.3377566,7.3377566,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,352,498510.84,101997.64,250540.34,0,0,0,845.53503 +9528,11597,20708,20709,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.2667093,8.3779163,0,18,-18,36.973427,0,1,1,2021,6,0,39,38,1,0,0,11.160848,11.160848,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,52.84,43.58,6.666666666666667,1,1,0,0,12,10,4,1,936.5,2342444.8,1814992.6,402118.06,0,0,-189.21103,2277.8545 +9528,11597,20709,20708,-9,-9,1,1,62,0,1,0,1,1,-9,0,2,7.8586574,7.696959,5.6045856,18,18,-13.873543,0,3,1,2021,8,0,60,60,1,0,0,4.8846068,4.8846068,0,0,0,0,0,0,0,0,1,1,0,5.7826872,5.8611374,52.84,43.58,52.24,50.75,5,1,1,0,1,9,10,4,1,936.5,2342444.8,1814992.6,402118.06,0,0,-189.21103,2277.8545 +9529,11598,20710,20711,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7864995,6.5220962,46,6,-35.594028,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4806809,57.76,54.51,35.62,17.95,10,1,1,0,0,7,11,3,1,1124.5,243061.08,59323.109,197597.08,0,4707.1968,0,2240.9365 +9529,11598,20711,20710,-9,-9,1,0,65,0,0,0,1,1,-9,1,1,7.0633483,7.5841107,3.2402825,46,-6,-18.677635,0,3,2,2021,13,4,23,23,1,4,0,8.0724487,8.0724487,0,0,0,0,0,0,0,2,1,1,0,0,2.9373608,35.62,17.95,57.76,54.51,10,1,1,0,0,11,11,3,1,1124.5,243061.08,59323.109,197597.08,0,4707.1968,0,2240.9365 +9530,11599,20712,-9,20714,20715,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1073.4664,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20713,-9,20714,20715,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.23279,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20714,20715,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.3579712,8.3734798,0,22,-3,-14.774258,0,1,1,2021,12,0,45,45,1,0,0,11.649835,11.649835,.05,.05,0,0,0,0,0,0,0,0,0,3.2867482,0,40.02,49.16,62.66,52.4,5,1,1,0,0,8,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20715,20714,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,9.4363089,9.3559027,0,22,3,66.177589,0,1,1,2021,12,0,60,60,1,0,0,24.195669,24.195669,.05,.05,.05,0,0,0,0,0,0,0,0,4.4900956,0,62.66,52.4,40.02,49.16,8.333333333333334,1,1,0,0,9,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9531,11600,20716,20717,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.7160053,6.9687696,49,-1,56.088596,0,3,2,2021,13,3,0,10,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8480444,6.8905172,50.91,40.78,54.87,40.87,6.666666666666667,1,1,0,0,10,9,2,0,2062.5,747174.63,119259.07,299417.81,0,132.67566,0,1994.9995 +9531,11600,20717,20716,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.3856311,6.1417303,48,1,13.12671,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1124091,54.87,40.87,50.91,40.78,8.333333333333334,1,1,0,0,7,9,2,0,2062.5,747174.63,119259.07,299417.81,0,132.67566,0,1994.9995 +9532,11601,20718,20719,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.0300446,6.6754103,0,6,-7,17.737816,0,-9,-9,2021,13,2,16,16,1,2,0,7.1562824,7.1562824,0,0,0,0,0,0,0,0,0,0,0,5.3417611,0,43.44,49.45,46.73,54.33,5,1,1,0,0,7,10,3,1,158.5,615353,324287.88,366988.06,45349.359,0,0,1031.5325 +9532,11601,20719,20718,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.1217299,6.8635907,6,7,23.166763,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9631333,6.9060011,46.73,54.33,43.44,49.45,1.666666666666667,1,1,0,0,3,10,3,1,158.5,615353,324287.88,366988.06,45349.359,0,0,1031.5325 +9533,11602,20720,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7500553,7.7356033,0,0,0,-1000.9283,0,3,3,2021,12,0,30,30,1,0,0,8.6738386,8.6738386,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,41.97,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,583,270489.84,67381.344,263969.41,135127.81,10525.166,3930.5779,895.55621 +9534,11603,20721,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.4626303,5.4357352,0,0,-986.07837,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.757874,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,0,690,58492.184,0,0,0,0,0,630.32159 +9535,11604,20722,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,7.3155589,7.4710746,0,0,-1008.9921,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4708414,64.37,53.06,-9,-9,8.333333333333334,1,1,0,0,11,8,3,0,301,558036.06,373813.28,0,0,0,0,1534.5149 +9535,11605,20723,-9,20722,-9,1,0,30,0,0,0,2,2,-9,0,4,8.6955557,8.4170666,0,0,0,-1003.2337,0,2,2,2021,12,0,44,49,1,0,0,12.715609,12.715609,0,0,0,0,0,0,0,0,1,1,0,2.0755768,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,2308,-110816.07,50605.57,0,0,3290.2119,968.19708,1867.0258 +9536,11606,20724,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.7209425,7.5090032,0,0,-1116.949,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8494086,7.3116646,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,406,539600.81,292856.22,184057.8,0,0,0,1965.1635 +9537,11607,20725,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.588172,8.4796839,0,0,0,-1040.1239,0,2,2,2021,14,3,70,65,1,3,0,9.8321781,9.8321781,0,0,0,0,0,0,0,7,0,0,0,0,0,34.99,54.36,-9,-9,6.666666666666667,1,1,0,0,14,10,5,1,816,735579.63,504859.34,111570.13,0,0,0,1900.61 +9538,11608,20726,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.3040047,7.1545424,0,0,-926.32513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3449292,6.8178983,49.91,39.62,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,528,527139.63,12126.677,215978.3,0,7834.5283,4917.2866,1334.6471 +9539,11609,20727,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6380377,8.6085415,4.9327483,0,0,-982.26392,0,2,2,2021,8,0,38,37,1,0,0,15.657595,15.657595,0,0,0,0,0,0,0,2,0,0,0,5.4089918,5.7644463,52.58,51.28,-9,-9,10,1,1,0,0,9,8,5,1,729,3661152.8,1286868.9,1829880.9,0,0,0,1606.1626 +9540,11610,20728,20729,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.4047413,9.0284605,8.8140507,11,-2,98.293846,0,-9,-9,2021,7,0,15,14,1,0,0,35.882065,35.882065,.05,.05,0,0,0,0,0,0,0,0,0,0,8.6079845,60.03,45.37,57.07,46.71,8.333333333333334,1,1,0,0,13,8,5,1,2126.5,1846786.9,799311.88,824327.13,0,0,0,5825.6509 +9540,11610,20729,20728,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,5.4506879,5.5853581,0,43,2,51.920673,0,2,1,2021,10,0,4,2,1,0,0,7.5072675,7.5072675,0,0,0,0,0,0,0,0,0,0,0,7.7194614,0,57.07,46.71,60.03,45.37,8.333333333333334,1,1,0,0,13,8,5,1,2126.5,1846786.9,799311.88,824327.13,0,0,0,5825.6509 +9541,11611,20730,-9,20731,20733,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1014.9562,-9,3,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.79,57.73,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20731,20733,-9,-9,1,0,40,0,2,0,3,3,-9,1,2,0,0,0,20,-5,84.651199,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.28,44.47,53.14,51.28,6.666666666666667,2,3,0,0,6,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20732,-9,20731,20733,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1075.1,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20733,20731,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,6.4532547,6.4892478,0,10,5,-31.046766,0,-9,-9,2021,11,0,24,24,1,0,0,3.4474516,3.4474516,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.14,51.28,45.28,44.47,6.666666666666667,2,3,0,0,12,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20734,-9,20731,20733,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.01721,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9542,11612,20735,20736,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1400318,8.3483334,0,2,1,-104.28437,0,-9,-9,2021,8,0,60,55,1,0,0,8.053483,8.053483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.65,60.41,8.333333333333334,1,1,0,0,9,2,5,0,1194.5,122807.84,32703.879,0,0,4784.7925,0,2700.5874 +9542,11612,20736,20735,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.1022768,8.1220284,0,2,-1,-64.166916,0,2,1,2021,19,8,44,47,1,8,0,9.8404169,9.8404169,0,0,0,0,0,0,0,0,0,0,0,.19242568,0,41.65,60.41,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,0,1194.5,122807.84,32703.879,0,0,4784.7925,0,2700.5874 +9543,11613,20737,20738,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4462881,8.4284191,0,8,-1,48.669487,0,-9,-9,2021,11,0,37,37,1,0,0,16.206591,16.206591,.05,.05,0,0,0,0,0,0,0,0,0,1.0166943,0,51.83,57.2,54.79,55.86,10,1,1,0,0,10,11,5,1,642,1640915,1194561.3,435410.63,200645.47,1619.385,0,4118.8643 +9543,11613,20738,20737,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7930565,8.8676023,0,8,1,-68.373718,0,2,2,2021,8,0,37,37,1,0,0,24.71623,24.71623,.05,.05,0,0,0,0,0,0,0,0,0,1.5504538,0,54.79,55.86,51.83,57.2,10,1,1,0,0,10,11,5,1,642,1640915,1194561.3,435410.63,200645.47,1619.385,0,4118.8643 +9544,11614,20739,-9,-9,-9,1,1,55,1,1,0,2,2,-9,0,2,8.5964222,8.8508806,7.4482641,0,0,-987.65991,0,3,2,2021,27,10,38,38,1,10,0,16.604544,16.604544,.05,.05,.05,0,0,0,0,0,1,0,1,0,7.1321115,36.72,21.24,-9,-9,1.666666666666667,1,1,0,0,8,2,5,1,1128,203884.03,71422.656,0,0,0,0,2902.7515 +9544,11615,20740,20742,-9,-9,1,1,23,1,1,0,2,2,-9,0,3,7.6560965,7.8783503,0,2,-1,99.068962,0,-9,-9,2021,6,0,43,38,1,0,0,5.4994302,5.4994302,0,0,0,0,0,0,0,0,1,0,1,0,0,59.04,48.6,38.39,48.48,10,1,1,0,0,4,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11615,20741,-9,20742,20740,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.43549,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11615,20742,20740,-9,20739,1,0,24,1,1,0,2,2,-9,0,3,6.4145923,6.5958819,0,2,1,7.9742584,0,3,2,2021,11,2,20,15,1,2,0,3.6134968,3.6134968,0,0,0,0,0,0,0,0,1,0,1,0,0,38.39,48.48,59.04,48.6,6.666666666666667,1,1,0,0,6,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11616,20743,-9,-9,20739,1,1,29,1,1,0,2,2,-9,0,3,0,0,0,0,0,-831.64832,-9,-9,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.31,49.81,-9,-9,3.333333333333333,1,1,1,0,0,2,1,1,201,-13813.403,0,0,0,0,0,-56.703754 +9545,11617,20744,20745,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,8.7103634,9.1012268,0,36,-1,56.445663,0,3,3,2021,6,0,38,38,1,0,0,22.49193,22.49193,0,0,0,0,0,0,0,0,1,1,0,0,0,57.13,44.09,55.76,52.64,10,1,1,0,0,11,6,5,1,544,356602.63,203403.59,319706.72,0,19108.547,0,4042.7046 +9545,11617,20745,20744,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.2525349,8.2246609,7.8868632,36,1,-.31568396,0,2,3,2021,13,2,40,6,1,2,0,3.9609544,3.9609544,.05,.05,0,0,0,0,0,2,1,1,0,0,8.087923,55.76,52.64,57.13,44.09,8.333333333333334,1,1,0,0,12,6,5,1,544,356602.63,203403.59,319706.72,0,19108.547,0,4042.7046 +9545,11618,20746,-9,20744,20745,1,1,31,0,0,0,2,2,-9,0,4,8.1064711,8.0756388,0,0,0,-972.65442,0,2,1,2021,12,0,46,42,1,0,1,6.9063001,6.9063001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,6,6,4,1,302,-129114.2,-56875.723,0,0,0,0,1144.4158 +9546,11619,20747,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,7.0347962,7.1366835,0,0,0,-973.71368,0,2,-9,2021,10,0,90,50,1,0,0,1.4822454,1.4822454,.05,.05,0,0,0,0,0,36,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,180,55656.453,-64864.859,0,0,7446.4702,0,1064.2976 +9547,11620,20748,-9,20751,20750,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.24609,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20749,-9,20751,20750,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.6066,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20750,20751,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.2388582,6.9900255,0,17,-4,-12.293039,0,3,2,2021,8,0,40,40,1,0,0,3.779897,3.779897,.05,.05,0,0,0,0,0,0,1,1,0,1.1362784,0,54.2,57.49,54.96,53.17,6.666666666666667,1,1,0,0,11,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20751,20750,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,18,4,-199.89284,0,3,2,2021,8,0,0,3,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7474384,0,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,7,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9548,11621,20752,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.242651,8.0872602,0,0,0,-995.49084,-9,1,1,2021,17,5,40,0,1,5,0,10.161386,10.161386,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,-9,-9,1.666666666666667,1,1,0,0,7,4,4,0,499,264429.28,206658.52,253096.64,0,1192.0986,3562.3789,1033.6731 +9549,11622,20753,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1018.4991,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50170106,0,56.18,48.32,-9,-9,0,1,1,0,0,0,9,1,0,1784,-71568.156,0,0,0,0,0,1487.9946 +9550,11623,20754,20756,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,9.4081717,9.340826,0,3,-7,-.40154824,0,-9,-9,2021,11,1,30,30,1,1,0,33.11824,33.11824,.05,.05,0,0,0,0,0,0,0,0,0,8.0556278,0,47.32,47.16,53.14,51.28,8.333333333333334,1,1,0,0,5,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20755,-9,20754,20756,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33295,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20756,20754,-9,-9,1,1,45,1,2,0,1,1,-9,0,3,8.9909468,8.9300098,0,3,7,-61.605446,0,2,2,2021,8,0,47,45,1,0,0,15.409312,15.409312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,47.32,47.16,8.333333333333334,4,2,0,0,12,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20757,-9,20754,20756,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.40753,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9551,11624,20758,-9,-9,-9,1,1,47,0,0,0,1,1,-9,1,1,0,0,0,0,0,-945.26196,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,21.05,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,452,4005.0332,0,0,0,0,0,86.408783 +9552,11625,20759,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.5871062,6.7083325,0,0,-987.31799,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,7.7871523,5.0829954,72.340256,0,1,1,0,4.3485365,6.7621217,44.44,31.22,-9,-9,8.333333333333334,1,1,0,0,6,6,2,1,468,53421.125,-59792.152,0,0,0,0,2379.8098 +9553,11626,20760,20761,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,0,0,0,12,0,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.95,51.13,57.06,57.76,5,1,1,1,0,10,12,1,1,368,120931.95,0,0,0,0,0,-815.71008 +9553,11626,20761,20760,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,12,0,0,0,3,2,2021,4,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,29.95,51.13,10,1,1,0,0,9,12,1,1,368,120931.95,0,0,0,0,0,-815.71008 +9553,11627,20762,-9,20761,20760,1,1,20,0,0,0,2,2,0,0,5,0,6.9174581,6.8177066,0,0,-905.70612,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7035723,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,2,1,135,59404.23,0,0,0,0,-106.87754,927.84503 +9553,11628,20763,-9,20761,20760,1,1,18,0,0,0,2,2,-9,0,4,0,7.0056796,7.2085037,0,0,-1019.5435,1,2,1,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6297555,0,54.2,57.49,-9,-9,10,1,1,0,0,2,12,3,1,332,36429.895,0,0,0,-1178.6251,0,656.10468 +9554,11629,20764,20765,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.6720877,7.7821741,0,25,-4,-60.352566,0,3,3,2021,11,0,29,30,1,0,0,7.6559134,7.6559134,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,6.666666666666667,1,1,0,0,12,4,3,1,583.5,155163.52,59092.605,196122.38,27020.227,0,7905.2539,2189.688 +9554,11629,20765,20764,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.0154047,7.5475326,0,25,4,25.443947,0,-9,-9,2021,6,0,39,39,1,0,0,11.005856,11.005856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,9,4,3,1,583.5,155163.52,59092.605,196122.38,27020.227,0,7905.2539,2189.688 +9555,11630,20766,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.9329,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.18,18.65,-9,-9,6.666666666666667,1,1,1,0,4,5,2,1,4352,45909.809,0,0,0,0,0,0 +9556,11631,20767,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,4.6503196,4.9088664,0,0,-889.69983,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9378185,59.66,22.66,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1352,133761.89,0,0,0,0,0,482.60605 +9557,11632,20768,20769,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6722531,8.2393332,7.429955,8,-10,-91.725067,0,2,2,2021,11,3,30,40,1,3,0,7.8347912,7.8347912,0,0,0,0,0,0,0,0,0,0,0,8.2628803,7.5195923,51.43,29.35,47.58,56.39,8.333333333333334,1,1,0,0,9,4,5,1,279.5,1447384.3,1381626.6,270376.69,0,2344.2227,1325.4832,6536.2686 +9557,11632,20769,20768,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.8353205,8.6967211,5.6497145,8,10,-113.89226,0,-9,-9,2021,8,0,37,37,1,0,0,23.405031,23.405031,.05,.05,0,0,0,0,0,2,0,0,0,2.9490237,5.6134357,47.58,56.39,51.43,29.35,8.333333333333334,1,1,0,0,8,4,5,1,279.5,1447384.3,1381626.6,270376.69,0,2344.2227,1325.4832,6536.2686 +9558,11633,20770,20771,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.2914438,5.5394115,47,-3,132.51616,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0651212,58.73,35.03,62.84,46.85,8.333333333333334,1,1,0,0,6,13,2,1,3520.5,268215.09,164738.03,115980.05,0,0,0,1456.8645 +9558,11633,20771,20770,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.2629862,7.195519,7,3,41.249451,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6609883,7.2784424,62.84,46.85,58.73,35.03,8.333333333333334,1,1,0,0,8,13,2,1,3520.5,268215.09,164738.03,115980.05,0,0,0,1456.8645 +9559,11634,20772,20773,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,55,3,0,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8361382,0,53,46,50.69,52.35,8,1,1,0,0,0,13,1,1,406,-2519.1738,61505.68,0,0,0,0,1014.9873 +9559,11634,20773,20772,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,55,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,50.69,52.35,53,46,10,1,1,0,0,0,13,1,1,406,-2519.1738,61505.68,0,0,0,0,1014.9873 +9560,11635,20774,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.0481157,6.9175811,0,0,-1018.9016,0,2,2,2021,22,10,0,42,3,10,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,6.7393236,54.15,22.63,-9,-9,6.666666666666667,1,1,1,0,12,11,2,0,766,1802968.4,154636.08,1328645.5,0,0,0,-23.918003 +9561,11636,20775,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6086302,8.7204857,0,0,0,-1035.3413,0,3,3,2021,14,3,37,40,1,3,0,17.964987,17.964987,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,-9,-9,5,1,1,0,0,11,12,5,0,375,938696.19,369127.88,327670.63,0,3272.7354,0,1895.0994 +9562,11637,20776,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.7708,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,7.0650291,6.9762311,78.029144,0,1,1,0,0,0,46.4,29.37,-9,-9,5,1,1,0,1,0,12,1,1,130,48210.469,930.83667,101136.72,0,0,0,1161.2349 +9563,11638,20777,20780,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.8550835,8.948844,0,8,2,25.403801,0,-9,-9,2021,7,0,45,40,1,0,0,18.190845,18.190845,.05,.05,0,0,0,0,0,0,1,1,0,2.4861116,0,54.96,53.17,61.01,53.18,8.333333333333334,1,1,0,0,10,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20778,-9,20780,20777,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.73779,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20779,-9,20780,20777,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.20734,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20780,20777,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.0278821,6.8552094,0,15,-2,-79.825951,0,3,2,2021,5,0,17,17,1,0,0,8.0393229,8.0393229,0,0,0,0,0,0,0,2,1,1,0,2.7719367,0,61.01,53.18,54.96,53.17,10,1,1,0,0,7,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9564,11639,20781,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,0,0,-916.98419,0,1,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,26.59,-9,-9,1.666666666666667,1,1,0,0,4,7,1,0,688,-92802.523,151424.39,0,0,0,0,923.35052 +9565,11640,20782,20783,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6373777,8.4057808,0,3,0,-5.7488084,-9,2,1,2021,4,0,47,0,1,0,0,12.602948,12.602948,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,57.33,53.46,1.666666666666667,1,1,0,0,6,9,5,0,317,775132.5,138894.69,387755.91,66327.273,0,678.82794,3294.9824 +9565,11640,20783,20782,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4326429,8.742403,0,3,0,102.39711,0,2,3,2021,6,0,42,43,1,0,0,12.809253,12.809253,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,62.49,55.09,8.333333333333334,1,1,0,0,10,9,5,0,317,775132.5,138894.69,387755.91,66327.273,0,678.82794,3294.9824 +9566,11641,20784,20785,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.8655853,8.6117592,0,7,-1,59.995998,0,2,1,2021,10,1,43,58,1,1,0,15.319192,15.319192,.05,.05,.05,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,8,5,5,1,770,1309145.8,841051.19,343685,65081.566,0,0,5299.7285 +9566,11641,20785,20784,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,8.5098553,8.2672768,7,1,-96.231178,0,3,3,2021,4,0,0,70,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,5.6051931,8.7203627,55.96,49.93,57.16,56.15,10,1,1,0,0,8,5,5,1,770,1309145.8,841051.19,343685,65081.566,0,0,5299.7285 +9567,11642,20786,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.9117651,8.0930204,0,0,0,-1046.338,0,-9,-9,2021,10,0,40,40,1,1,0,7.0686712,7.0686712,.05,.05,0,0,0,0,0,0,0,0,0,.047569662,0,48,59,-9,-9,7,1,1,0,0,7,5,3,0,1063,213580.41,-17849.285,0,0,0,0,944.59369 +9568,11643,20787,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.2167935,7.0145168,0,0,-1036.2528,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.65412325,7.3918715,38.63,63.11,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,435,415493.25,168960.95,166219.17,0,0,0,1937.5365 +9569,11644,20788,20789,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.6700859,8.6280966,0,4,-4,-205.43193,0,-9,-9,2021,10,0,35,35,1,0,0,16.968281,16.968281,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,57.06,57.76,8.333333333333334,1,1,0,0,6,12,5,1,1348,44448.711,16743.66,185236.88,163738.28,12397.449,0,9413.5215 +9569,11644,20789,20788,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,9.5643206,9.632123,0,4,4,23.730307,0,2,2,2021,7,0,60,60,1,0,0,32.683777,32.683777,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.53,58.91,10,1,1,0,0,10,12,5,1,1348,44448.711,16743.66,185236.88,163738.28,12397.449,0,9413.5215 +9570,11645,20790,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.3349648,8.5587788,0,1,2,37.506504,0,3,3,2021,9,0,38,37,1,0,0,18.752151,18.752151,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,61.51,52.79,6.666666666666667,1,1,0,0,9,9,5,0,966,-80856.25,0,0,0,0,0,2090.2527 +9570,11646,20791,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.964179,7.9489346,0,1,-2,-9.9020596,0,2,2,2021,5,0,38,38,1,0,0,8.623744,8.623744,0,0,0,0,0,0,0,0,0,0,0,0,0,61.51,52.79,50.54,62.09,8.333333333333334,1,1,0,0,9,9,5,0,309,-126182.24,0,0,0,0,0,1157.3029 +9571,11647,20792,20793,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,7.9885955,7.9995255,0,8,12,60.863197,0,-9,-9,2021,7,0,55,30,1,0,0,6.1259251,6.1259251,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.75,39.98,8.333333333333334,2,3,0,0,10,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20793,20792,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,8.1511765,8.3052788,0,8,-12,2.3802919,0,3,2,2021,21,8,40,40,1,8,0,9.6789761,9.6789761,0,0,0,0,0,0,0,0,1,1,0,0,0,44.75,39.98,57.33,53.46,6.666666666666667,1,1,0,0,8,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20794,-9,20793,20792,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.56403,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20795,-9,20793,20792,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.34149,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9572,11648,20796,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.12445,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,2.5350235,0,0,1,1,0,.96667176,0,18.84,25.33,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,558,426653.88,0,146265.83,0,0,0,284.6759 +9573,11649,20797,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.4034414,8.211957,0,0,0,-957.95538,0,1,1,2021,7,0,39,42,1,0,0,16.31801,16.31801,.05,.05,0,0,0,0,0,0,0,0,0,1.1607082,0,54.1,59.11,-9,-9,10,1,1,0,0,7,8,4,0,208,63287.969,106357.7,0,0,0,0,1400.7721 +9574,11650,20798,20799,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7616663,8.8580132,0,8,-1,22.673376,0,-9,-9,2021,17,6,38,38,1,6,0,18.072334,18.072334,0,0,0,0,0,0,0,0,0,0,0,0,0,40.93,53.95,46.08,57.2,6.666666666666667,1,1,0,0,10,12,5,1,364.5,1635450.5,1323663.5,365499.69,28328.793,0,0,4991.436 +9574,11650,20799,20798,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.032939,9.0132771,0,8,1,-85.829124,0,2,2,2021,11,0,38,40,1,0,0,25.619545,25.619545,.05,.05,0,0,0,0,0,0,0,0,0,2.4236879,0,46.08,57.2,40.93,53.95,8.333333333333334,1,1,0,0,9,12,5,1,364.5,1635450.5,1323663.5,365499.69,28328.793,0,0,4991.436 +9575,11651,20800,20801,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8625708,9.070982,0,6,3,-75.192406,0,2,2,2021,12,0,43,48,1,0,0,20.472681,20.472681,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.67,56.17,25.2,66.67,6.666666666666667,1,1,0,0,12,7,5,1,1496.5,379440.66,-31971.805,243894.59,0,10497.201,3112.4971,4328.668 +9575,11651,20801,20800,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.1129217,8.2003794,0,6,-3,15.470813,0,-9,-9,2021,17,5,44,46,1,5,0,9.2625914,9.2625914,.05,.05,0,0,0,0,0,0,0,0,0,2.5722826,0,25.2,66.67,39.67,56.17,3.333333333333333,1,1,0,0,7,7,5,1,1496.5,379440.66,-31971.805,243894.59,0,10497.201,3112.4971,4328.668 +9576,11652,20802,20803,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.1,45.61,52,47,1.666666666666667,1,1,0,0,2,6,1,0,381,2253.8887,42075.238,0,0,0,0,2145.6943 +9576,11652,20803,20802,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2820172,0,52,47,42.1,45.61,7,1,1,0,0,0,6,1,0,381,2253.8887,42075.238,0,0,0,0,2145.6943 +9577,11653,20804,20805,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.1170616,7.7906737,0,7,4,76.03746,0,3,2,2021,11,2,40,40,1,2,0,8.56357,8.56357,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.8,36.69,41.28,54.03,3.333333333333333,1,1,0,0,8,12,5,1,707,695223.75,478641.5,268804.44,79290.891,0,2680.4917,2392.4712 +9577,11653,20805,20804,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.2030582,8.2773542,0,7,-4,102.16514,0,2,3,2021,14,2,42,42,1,2,0,12.465603,12.465603,.05,.05,0,0,0,0,0,7,0,0,0,0,0,41.28,54.03,49.8,36.69,6.666666666666667,1,1,0,0,8,12,5,1,707,695223.75,478641.5,268804.44,79290.891,0,2680.4917,2392.4712 +9577,11654,20806,-9,20805,20804,1,0,21,0,0,0,1,1,1,0,3,7.8251009,7.7456141,0,0,0,-1209.6558,-9,2,2,2021,8,0,42,0,1,0,1,6.9628463,6.9628463,0,0,0,0,0,0,0,2,0,0,0,2.6561449,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,336,-322631.94,0,0,0,0,0,418.49829 +9578,11655,20807,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,1.9710823,2.4301279,0,0,0,-956.76825,0,2,3,2021,23,9,40,0,1,9,0,.022447098,.022447098,0,0,0,0,0,0,0,0,0,0,0,0,0,25.2,55.96,-9,-9,3.333333333333333,2,3,0,1,3,8,2,0,538,60533.547,0,0,0,0,0,-315.29211 +9579,11656,20808,-9,-9,-9,1,1,44,0,0,0,2,2,0,1,3,0,0,0,0,0,-825.32599,-9,2,2,2021,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,28.35,37.13,-9,-9,0,1,1,0,1,2,12,1,0,807,9467.6992,0,0,0,0,0,1535.6526 +9580,11657,20809,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.3544455,9.3833952,0,0,0,-1021.3085,0,3,2,2021,7,0,40,50,1,0,0,27.920361,27.920361,.05,.05,0,0,0,0,0,0,0,0,0,7.4300914,0,63.55,39.7,-9,-9,8.333333333333334,2,3,0,0,11,9,5,1,368,410331.72,277142.38,226659.5,175606.75,0,0,3845.1252 +9581,11658,20810,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.5498,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,33.09,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,351,332009.88,0,0,0,0,0,0 +9582,11659,20811,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.7191787,7.7947035,6.9177222,0,0,-946.67657,0,2,2,2021,13,2,37,40,1,2,0,7.8957505,7.8957505,0,0,0,0,0,0,0,0,1,1,0,6.3553276,0,40.72,34.06,-9,-9,3.333333333333333,1,1,0,0,10,10,3,0,437,101442.61,0,0,0,1422.5483,0,1942.7809 +9582,11659,20812,-9,20811,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1049.72,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,3,0,437,101442.61,0,0,0,1422.5483,0,1942.7809 +9583,11660,20813,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6241517,7.5160127,0,0,0,-1025.4611,0,3,2,2021,12,0,31,33,1,0,0,9.434742,9.434742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.89,53.77,-9,-9,6.666666666666667,1,1,0,0,8,6,3,0,1779,-34912.168,-68841.102,0,0,-1953.0598,0,407.1662 +9584,11661,20814,20815,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9091229,6.8680415,28,3,109.79006,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.104825,7.2370386,61.12,51.57,46.54,48.69,8.333333333333334,1,1,0,0,0,10,3,1,1658.5,1128600.8,780187.63,245386.81,7866.4121,0,3778.2197,2324.2954 +9584,11661,20815,20814,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.8687034,7.550292,28,-3,20.427885,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9347672,7.8214078,46.54,48.69,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,1658.5,1128600.8,780187.63,245386.81,7866.4121,0,3778.2197,2324.2954 +9585,11662,20816,20817,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1041718,7.7201796,0,9,7,-62.040283,0,2,2,2021,12,0,10,10,1,2,0,30.189222,30.189222,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,49,60.6,43.75,7,1,1,0,0,1,7,5,1,1088.5,360934.44,177659.59,0,0,0,0,4205.7168 +9585,11662,20817,20816,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.51089,8.7298918,0,9,-7,-73.474815,0,2,2,2021,11,0,40,47,1,0,0,14.627148,14.627148,.05,.05,0,0,0,0,0,0,1,1,0,7.4944973,0,60.6,43.75,47,49,8.333333333333334,1,1,0,0,10,7,5,1,1088.5,360934.44,177659.59,0,0,0,0,4205.7168 +9585,11663,20818,-9,20816,20817,1,1,21,0,0,0,2,2,-9,0,4,7.8912005,7.9303174,0,0,0,-1025.725,0,2,2,2021,11,0,40,37,1,2,1,11.574544,11.574544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,4,1,2422,-124049.54,126729.35,0,0,8556.8379,0,1270.6796 +9586,11664,20819,20820,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,8.0524902,8.008997,11,-6,111.41961,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0104675,7.9408898,41.97,55.33,50.49,50.87,8.333333333333334,1,1,0,0,0,10,4,1,261,1178242,584681,306272.03,0,1904.3088,0,4199.875 +9586,11664,20820,20819,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3608518,7.2145824,11,6,46.671658,0,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9185977,7.4600029,50.49,50.87,41.97,55.33,8.333333333333334,1,1,0,0,0,10,4,1,261,1178242,584681,306272.03,0,1904.3088,0,4199.875 +9587,11665,20821,20822,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,11,0,115.82756,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52,54.51,55.36,51.57,8.333333333333334,1,1,0,0,7,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20822,20821,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1507969,8.4801989,0,11,0,-13.912966,0,-9,-9,2021,8,0,44,39,1,0,0,9.8050985,9.8050985,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,9,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20823,-9,20821,20822,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.83508,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20824,-9,20821,20822,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1092.8129,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.9531078,0,44.85,52.06,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20825,-9,20821,20822,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.4476,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9588,11666,20826,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1012.4178,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5394483,0,62.85,38.46,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,230,-203805.44,0,0,0,0,0,912.14081 +9589,11667,20827,20828,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,8.2476635,8.5917435,0,8,-3,-59.748974,0,-9,-9,2021,11,0,30,45,1,0,0,17.090576,17.090576,0,0,0,0,0,0,0,0,1,1,0,0,0,47.13,48.65,38.52,53.3,8.333333333333334,1,1,0,0,8,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9589,11667,20828,20827,-9,-9,1,1,34,1,1,0,1,1,-9,0,2,9.3387203,9.186018,0,8,3,78.647232,0,2,2,2021,14,2,44,42,1,2,0,25.811617,25.811617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.52,53.3,47.13,48.65,6.666666666666667,1,1,0,0,9,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9589,11667,20829,-9,20827,20828,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.573,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9590,11668,20830,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.4574966,7.2793016,0,0,-999.43524,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2606263,39.64,57.52,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,512,183844.17,104134.98,0,0,0,0,1109.4807 +9591,11669,20831,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.2417107,8.1788216,0,0,-941.45776,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1789856,43.73,53.97,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,1323,1092318.3,691428.13,304867.38,0,-463.18463,0,1860.1254 +9592,11670,20832,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1056.9274,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.55,54.69,-9,-9,3.333333333333333,1,1,1,1,3,4,1,0,2993,-20753.682,0,0,0,0,0,1017.462 +9593,11671,20833,20835,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.1764894,6.8025875,0,15,0,25.811909,0,3,2,2021,8,0,16,16,1,0,0,6.8101354,6.8101354,0,0,0,0,0,0,0,0,1,1,0,0,0,54.01,44.29,48.47,52.25,8.333333333333334,2,3,0,0,14,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9593,11671,20834,-9,20833,20835,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5013,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9593,11671,20835,20833,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.2617807,6.5177469,0,15,0,4.4458055,0,2,1,2021,9,0,30,28,1,0,0,2.5892997,2.5892997,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.47,52.25,54.01,44.29,8.333333333333334,2,3,0,0,12,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9594,11672,20836,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.8352041,7.8914137,0,0,0,-964.50299,0,3,3,2021,10,0,47,48,1,1,0,7.140583,7.140583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,12,5,4,1,434,109801.91,-22842.461,0,0,0,0,1732.8926 +9595,11673,20837,-9,20838,20839,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1084.3182,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.99,60.73,-9,-9,5,2,3,0,0,1,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20838,20839,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.1859236,7.9387069,0,27,-4,-11.074032,0,3,3,2021,7,0,25,16,1,0,0,10.538833,10.538833,.05,.05,0,0,0,0,0,2,1,1,0,.061407678,0,62.49,55.09,53.11,35.9,8.333333333333334,2,3,0,0,12,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20839,20838,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9297876,8.7819319,0,27,4,15.668094,0,3,3,2021,11,1,70,40,1,1,0,8.7411661,8.7411661,.05,.05,0,0,0,0,0,0,1,1,0,3.2238624,0,53.11,35.9,62.49,55.09,10,2,3,0,0,12,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20840,-9,20838,20839,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.9836,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.273684,0,54.1,59.11,-9,-9,10,2,3,0,0,1,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20841,-9,20838,20839,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1106.5975,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9596,11674,20842,20843,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,23,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.34,56.62,40.89,31.37,8.333333333333334,1,1,0,0,0,4,1,0,413.5,0,0,0,0,0,0,1256.9955 +9596,11674,20843,20842,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,7,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.89,31.37,41.34,56.62,5,1,1,0,0,0,4,1,0,413.5,0,0,0,0,0,0,1256.9955 +9597,11675,20844,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.2819,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,5,1,1,1,0,3,4,1,0,1813,-10388.591,0,0,0,0,0,1267.9677 +9598,11676,20845,-9,20847,20846,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-934.91986,-9,2,1,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11676,20846,20847,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.4232302,8.9178886,0,31,2,-85.693405,0,3,3,2021,9,0,38,43,1,0,0,32.427181,32.427181,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.28,61.68,51.13,50.73,5,1,1,0,0,13,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11676,20847,20846,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3409443,8.1245975,0,31,-2,-172.94118,0,2,2,2021,9,0,32,33,1,0,0,14.866853,14.866853,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.13,50.73,43.28,61.68,8.333333333333334,1,1,0,0,13,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11677,20848,-9,20847,20846,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-985.06311,1,2,1,2021,13,2,0,37,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4220586,0,26.21,61.07,-9,-9,6.666666666666667,1,1,0,0,3,2,1,1,566,-40049.238,0,0,0,0,0,29.557156 +9599,11678,20849,20850,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,3.7441168,3.9113679,0,9,-2,.99102783,0,2,2,2021,30,11,44,0,1,11,0,.10889136,.10889136,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,38.57,64.48,6.666666666666667,1,1,0,1,4,5,5,1,555.5,731531.25,612525,296416.97,78282.836,12782.028,16056.429,6984.3589 +9599,11678,20850,20849,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.6198692,9.7160892,0,9,2,-10.579104,0,2,2,2021,23,11,55,53,1,11,0,31.442776,31.442776,.05,.05,0,0,0,0,.65574992,0,0,0,0,4.8365612,0,38.57,64.48,34.54,59.67,6.666666666666667,1,1,0,0,10,5,5,1,555.5,731531.25,612525,296416.97,78282.836,12782.028,16056.429,6984.3589 +9600,11679,20851,20852,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5634832,6.4757342,0,34,1,-65.364861,0,2,3,2021,11,2,10,10,1,2,0,8.2049198,8.2049198,.05,.05,0,0,0,0,0,0,0,0,0,1.6524749,0,46.09,49.17,51.64,50.48,8.333333333333334,1,1,0,0,3,9,4,1,318.5,754539.38,304240.5,394949.25,0,0,0,2293.6128 +9600,11679,20852,20851,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5640669,8.5725355,0,34,-1,12.192754,0,2,2,2021,15,3,43,42,1,3,0,12.480484,12.480484,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.64,50.48,46.09,49.17,8.333333333333334,1,1,0,0,10,9,4,1,318.5,754539.38,304240.5,394949.25,0,0,0,2293.6128 +9600,11680,20853,-9,20851,20852,1,1,22,0,0,0,2,2,-9,0,4,7.1560397,7.4295669,0,0,0,-1000.264,0,2,2,2021,12,0,24,26,1,0,1,8.2010765,8.2010765,0,0,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,6,9,3,1,799,120951.95,0,0,0,0,0,459.32816 +9601,11681,20854,-9,20855,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1049.4928,-9,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,8,5,0,1076.5,1039241,118209.34,679731.75,0,24232.703,0,3519.8101 +9601,11681,20855,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0359192,9.2439766,0,0,0,-970.28052,0,3,3,2021,21,9,39,38,1,9,0,19.263826,19.263826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,52.68,-9,-9,8.333333333333334,1,1,0,1,7,8,5,0,1076.5,1039241,118209.34,679731.75,0,24232.703,0,3519.8101 +9602,11682,20856,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.2251382,7.2360482,0,0,0,-1065.3462,0,3,3,2021,5,0,26,0,1,0,0,6.9485521,6.9485521,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,54.37,54.8,-9,-9,5,1,1,0,0,1,12,3,0,272,341330.03,156908.86,139304.39,0,0,0,667.22748 +9603,11683,20857,20858,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.8386083,7.8270335,0,4,0,90.163979,0,-9,-9,2021,10,1,40,36,1,1,0,7.7509089,7.7509089,0,0,0,0,0,0,0,0,1,1,0,2.0747836,0,55.79,52.62,54.1,59.11,10,1,1,0,0,8,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9603,11683,20858,20857,-9,-9,1,1,27,1,1,0,1,1,-9,0,5,8.0402775,8.0836544,0,4,0,-6.5197258,0,2,3,2021,8,0,37,38,1,0,0,8.4198008,8.4198008,.05,.05,0,0,0,0,0,0,1,1,0,1.2476916,0,54.1,59.11,55.79,52.62,8.333333333333334,1,1,0,0,7,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9603,11683,20859,-9,20857,20858,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.6972,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9604,11684,20860,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,8.4177055,8.1888371,0,0,-920.73938,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8625822,8.2530451,48.93,44.08,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1044,306767.53,30701.244,0,0,0,0,2906.5969 +9605,11685,20861,20862,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,44,1,0,0,3,3,2021,11,0,0,40,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,37.17,52.5,7,1,1,0,1,8,13,1,1,3130.5,82725.57,0,0,0,0,0,572.09735 +9605,11685,20862,20861,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,44,-1,0,0,3,3,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.5,50,47,0,1,1,1,1,0,13,1,1,3130.5,82725.57,0,0,0,0,0,572.09735 +9606,11686,20863,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.7455592,6.6522026,0,0,0,-1149.9226,-9,-9,2,2021,12,0,16,0,1,0,0,6.5670819,6.5670819,0,0,0,0,0,0,0,0,1,1,0,0,0,29.99,65.88,-9,-9,1.666666666666667,1,1,0,1,9,10,2,0,189.5,0,0,0,0,0,0,1186.8875 +9606,11686,20864,-9,20863,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.49921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,2,0,189.5,0,0,0,0,0,0,1186.8875 +9607,11687,20865,20866,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.5699544,6.0135407,39,1,19.513557,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8960795,45.37,27.67,37.81,45.02,5,1,1,0,0,0,8,2,0,445.5,57016.258,-7455.9551,0,0,0,0,2742.1621 +9607,11687,20866,20865,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,39,-1,-34.628075,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.87569851,0,37.81,45.02,45.37,27.67,8.333333333333334,1,1,0,0,0,8,2,0,445.5,57016.258,-7455.9551,0,0,0,0,2742.1621 +9607,11688,20867,-9,20870,-9,1,0,10,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1149.9974,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20868,-9,20870,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-916.13794,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20869,-9,20870,-9,1,0,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-929.80579,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20870,-9,20866,20865,1,0,27,0,0,0,2,2,-9,0,2,8.3324566,8.1470165,0,0,0,-948.86157,0,3,3,2021,8,0,49,49,1,0,1,8.3114719,8.3114719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.68,47.98,-9,-9,6.666666666666667,1,1,0,0,5,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9608,11689,20871,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1007.223,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.27,60.85,-9,-9,8.333333333333334,1,1,0,0,4,4,1,0,1130.5,-78129.859,0,0,0,0,0,1294.847 +9608,11689,20872,-9,20871,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-871.93549,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1130.5,-78129.859,0,0,0,0,0,1294.847 +9609,11690,20873,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.9882326,6.9043055,0,0,-848.22534,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3223982,41.14,30.1,-9,-9,5,1,1,0,0,0,1,2,0,1246,450950.53,171944.05,122411.7,0,0,0,1483.1559 +9610,11691,20874,20875,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,8.236701,8.6542377,0,8,0,-33.442516,0,-9,-9,2021,6,0,30,30,1,0,0,21.53978,21.53978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.34,54.09,8.333333333333334,1,1,0,0,9,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9610,11691,20875,20874,-9,-9,1,1,34,1,1,0,1,1,-9,0,2,8.8839998,8.7483597,0,8,0,25.466114,0,-9,-9,2021,10,0,37,39,1,0,0,21.391008,21.391008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.34,54.09,51.24,58.84,6.666666666666667,1,1,0,0,7,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9610,11691,20876,-9,20874,20875,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-961.24628,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9611,11692,20877,20880,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,13,-7,-73.871742,0,-9,-9,2021,5,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,52,50,56,10,2,3,0,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20878,-9,20877,20880,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-922.12018,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20879,-9,20877,20880,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59399,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20880,20877,20882,-9,1,1,41,0,3,0,1,1,-9,0,4,8.7301893,8.5925484,0,13,7,-21.940413,0,3,-9,2021,10,0,37,37,1,1,0,17.763702,17.763702,.05,.05,0,0,0,0,0,0,1,1,0,6.2967091,0,50,56,44,52,7,2,3,0,0,1,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20881,-9,20877,20880,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1104.3868,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11693,20882,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1058.5657,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,1,1,1415,-28942.742,0,0,0,0,0,348.98578 +9612,11694,20883,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.6879897,7.7458019,0,0,-974.03357,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,5.066987,0,0,1,1,0,8.7366753,8.3079262,35.17,15.39,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,201,349869.78,237499.13,212213.38,0,0,0,3526.6096 +9613,11695,20884,20885,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.6486859,7.7331629,6,2,-67.513603,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.964828,0,0,1,1,0,5.3681703,7.7782516,53,47,51,46,7,1,1,0,0,0,13,3,1,1239,1472180,378128.56,210514.44,0,0,0,3445.5261 +9613,11695,20885,20884,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.611937,7.2319403,6,-2,-91.391838,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.3010488,7.3648729,51,46,53,47,7,1,1,0,0,0,13,3,1,1239,1472180,378128.56,210514.44,0,0,0,3445.5261 +9614,11696,20886,20887,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.4688711,6.5748205,6,-1,49.075581,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.7707739,50.59,27.4,51.83,57.2,8.333333333333334,4,2,0,0,5,4,3,1,572,1164770.3,899240.63,247656,0,0,0,1769.7285 +9614,11696,20887,20886,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.783514,7.9933867,6,1,22.749111,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6987391,8.1396189,51.83,57.2,50.59,27.4,3.333333333333333,1,1,0,0,5,4,3,1,572,1164770.3,899240.63,247656,0,0,0,1769.7285 +9615,11697,20888,20891,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.8892508,8.6852789,0,7,4,23.894032,0,3,2,2021,7,0,40,43,1,0,0,18.049356,18.049356,.05,.05,0,0,0,0,0,0,1,1,0,2.2927999,0,52,54.51,35.67,64.46000000000001,6.666666666666667,1,1,0,0,8,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20889,-9,20891,20888,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-908.63855,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20890,-9,20891,20888,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-863.58545,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20891,20888,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.3265696,8.5332689,0,7,-4,19.783844,0,2,2,2021,17,6,41,33,1,6,0,11.646658,11.646658,.05,.05,0,0,0,0,0,0,1,1,0,3.7515688,0,35.67,64.46000000000001,52,54.51,6.666666666666667,1,1,0,0,8,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9616,11698,20892,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1007.1331,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.8,17.58,-9,-9,5,1,1,0,0,0,12,1,0,913,30339.098,0,0,0,0,0,1198.1964 +9616,11699,20893,-9,20892,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1078.0973,0,2,2,2021,18,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.64,8.960000000000001,-9,-9,0,1,1,0,0,4,12,1,0,192,-203825.77,226752.64,0,0,3741.2314,0,1325.5673 +9617,11700,20894,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7348204,7.5471778,0,0,-940.05219,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.981936,7.5632915,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,1398,645035.44,313837.44,261654.61,0,6581.2866,0,2149.8972 +9617,11701,20895,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.325263,8.3827534,0,0,0,-1030.5557,0,-9,-9,2021,7,0,30,30,1,0,0,15.697324,15.697324,0,0,0,0,0,0,0,0,1,1,0,1.4731994,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,4,5,1,359,707263.81,463749,120762.09,0,0,0,1670.9628 +9618,11702,20896,20897,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3016958,8.1961622,0,26,3,-84.154327,0,2,2,2021,9,0,35,35,1,1,0,14.187934,14.187934,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,50.86,50.74,8,3,4,0,0,1,8,5,1,677,365727.19,318615.88,177300.47,77155.813,-61.91452,0,4473.3384 +9618,11702,20897,20896,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.9706059,8.8739862,0,26,-3,-2.8925154,0,2,2,2021,10,0,40,40,1,0,0,16.562704,16.562704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.86,50.74,53,54,6.666666666666667,3,4,0,0,10,8,5,1,677,365727.19,318615.88,177300.47,77155.813,-61.91452,0,4473.3384 +9618,11703,20898,-9,20897,20896,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-989.59027,-9,1,2,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,648,-43320.262,0,0,0,0,0,214.34308 +9619,11704,20899,20901,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,10.000703,9.4865589,0,21,0,107.54707,0,2,2,2021,6,0,60,51,1,0,0,34.550148,34.550148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.22,52.7,47.76,48.16,8.333333333333334,1,1,0,0,12,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9619,11704,20900,-9,20901,20899,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5511,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9619,11704,20901,20899,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.2701502,8.2895727,0,21,0,25.865728,0,1,1,2021,24,12,24,22,1,12,0,17.377102,17.377102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.76,48.16,53.22,52.7,5,1,1,0,0,14,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9620,11705,20902,20904,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.0196047,8.0696745,0,22,-6,115.20992,0,2,2,2021,10,0,34,34,1,0,0,8.6677237,8.6677237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,47.79,40.56,6.666666666666667,1,1,0,0,6,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20903,-9,20904,20902,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.87146,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20904,20902,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,0,0,0,22,6,-85.212158,0,2,2,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9984097,0,47.79,40.56,58.05,54.52,6.666666666666667,1,1,0,0,6,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20905,-9,20904,20902,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5461,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9621,11706,20906,20907,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,0,0,11,-2,72.35791,-9,3,2,2021,11,1,0,0,3,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,7.4489484,0,51.14,60.45,54.2,57.49,10,1,1,0,0,10,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20907,20906,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.5460339,9.4351244,0,11,2,-40.695995,-9,-9,-9,2021,10,0,50,0,1,0,0,29.753769,29.753769,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.14,60.45,8.333333333333334,1,1,0,0,11,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20908,-9,20906,20907,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.85614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20909,-9,20906,20907,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1224.8112,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9622,11707,20910,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.9042654,7.1092267,0,0,-973.94183,0,2,2,2021,15,4,0,23,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0720482,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,10,7,2,1,461,341762.72,255255.83,343501.22,2304.4365,0,8655.2188,-180.13997 +9623,11708,20911,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.7572975,9.6012926,0,0,0,-1011.565,0,1,1,2021,6,0,57,80,1,0,0,31.189169,31.189169,.05,.05,0,0,0,0,0,7,0,0,0,6.5226583,0,62.39,56.71,-9,-9,10,1,1,0,0,10,12,5,1,434,593653.94,193197.36,212403.38,135147.89,0,5477.3213,5599.7002 +9624,11709,20912,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.3195524,8.2625685,0,0,0,-1082.2406,0,3,-9,2021,12,0,41,25,1,0,1,13.180406,13.180406,.05,.05,0,0,0,0,0,0,0,0,0,1.6558954,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,746,65869.742,19880.93,0,0,0,0,2069.5012 +9624,11710,20913,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,7.8187566,7.8402686,0,0,0,-1067.4041,0,3,-9,2021,12,1,36,36,1,1,1,6.979403,6.979403,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,56.4,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,527,-26072.869,0,0,0,0,0,1474.7609 +9625,11711,20914,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1060.9403,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,969,28583.484,157125.63,92617.984,-839.68982,0,0,0 +9626,11712,20915,20916,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.5005455,9.532958,0,11,1,-144.86313,0,2,1,2021,15,3,63,52,1,3,0,17.976053,17.976053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,34.21,51.94,8.333333333333334,1,1,0,0,11,9,5,1,543,227897.06,126832.78,0,0,0,0,6804.9375 +9626,11712,20916,20915,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.1249094,9.0586615,0,11,-1,21.071287,0,-9,-9,2021,12,0,40,35,1,0,0,28.806572,28.806572,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,48.28,60.18,6.666666666666667,1,1,0,0,13,9,5,1,543,227897.06,126832.78,0,0,0,0,6804.9375 +9627,11713,20917,-9,-9,-9,1,1,22,0,0,0,2,2,1,0,4,6.7643585,6.8420415,0,0,0,-960.63794,-9,-9,-9,2021,20,9,19,0,1,9,0,5.653789,5.653789,0,0,0,0,0,0,0,0,1,1,0,0,0,24.72,65.57000000000001,-9,-9,6.666666666666667,1,1,0,0,7,11,2,0,622,-84404.75,0,0,0,0,0,-241.94388 +9628,11714,20918,20919,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.7488923,6.0360804,25,-1,-46.735886,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9893074,5.6182814,60.05,26.59,66.94,12.8,10,1,1,0,0,0,4,2,1,2274.5,360688.63,177065,167947.53,0,0,5214.5044,4532.375 +9628,11714,20919,20918,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.4728527,6.1158323,26,1,-41.080551,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1787624,6.1264119,66.94,12.8,60.05,26.59,6.666666666666667,1,1,0,0,0,4,2,1,2274.5,360688.63,177065,167947.53,0,0,5214.5044,4532.375 +9629,11715,20920,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-935.74561,-9,2,3,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.75,30.08,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,1213,-2372.1013,0,0,0,0,0,299.9877 +9630,11716,20921,20922,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,7.5774565,7.1369362,0,5,-2,53.368385,0,2,3,2021,21,8,30,40,1,8,0,6.0491228,6.0491228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.37,63.98,54.85,54.62,8.333333333333334,1,1,0,1,8,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9630,11716,20922,20921,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.0642204,8.2336884,0,5,2,81.222931,0,-9,-9,2021,9,1,73,48,1,1,0,5.9663234,5.9663234,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.85,54.62,25.37,63.98,8.333333333333334,1,1,0,0,4,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9630,11716,20923,-9,20921,20922,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.6236,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9631,11717,20924,20925,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6659451,8.9119339,0,36,2,-17.758371,0,2,2,2021,15,3,50,0,1,3,0,14.338878,14.338878,.05,.05,.05,0,0,0,0,0,0,0,0,4.1052575,0,37.61,43.58,50.63,50.99,6.666666666666667,1,1,0,0,6,5,5,1,2102.5,1405067.8,1126255.5,176244.91,22221.773,10216.461,6599.5903,3546.6553 +9631,11717,20925,20924,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4410429,7.52811,0,29,-2,62.605297,0,2,2,2021,11,2,15,17,1,2,0,16.379808,16.379808,.05,.05,0,0,0,0,0,2,0,0,0,3.8413024,0,50.63,50.99,37.61,43.58,8.333333333333334,1,1,0,0,10,5,5,1,2102.5,1405067.8,1126255.5,176244.91,22221.773,10216.461,6599.5903,3546.6553 +9632,11718,20926,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.603796,6.4547906,0,0,0,-962.65265,0,3,3,2021,8,0,40,25,1,0,0,1.8084606,1.8084606,0,0,.05,0,0,0,0,0,1,1,0,.33552539,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,2,0,629,544788.81,158787.31,382526.53,0,0,0,733.10724 +9633,11719,20927,20928,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.4206734,8.4110022,0,16,2,-83.224609,0,-9,-9,2021,24,8,39,44,1,8,0,13.840539,13.840539,.05,.05,.05,0,0,0,0,0,0,0,0,2.8118615,0,18.08,56.67,22.29,49.49,5,1,1,0,0,12,8,5,1,526,-47536.059,89788.531,83768.727,67938.844,828.29486,0,4009.9229 +9633,11719,20928,20927,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.7411213,8.6236887,0,11,-2,27.10821,0,2,1,2021,15,2,35,35,1,2,0,13.976132,13.976132,0,0,0,0,0,0,0,0,0,0,0,0,0,22.29,49.49,18.08,56.67,1.666666666666667,4,5,0,0,9,8,5,1,526,-47536.059,89788.531,83768.727,67938.844,828.29486,0,4009.9229 +9634,11720,20929,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.596303,8.5877647,0,0,0,-1009.6802,0,2,2,2021,24,11,45,42,1,11,0,15.098948,15.098948,.05,.05,0,0,0,0,0,2,0,0,0,0,0,30.49,63.34,-9,-9,0,1,1,0,1,8,10,5,1,545,476769.75,480295.13,163671.64,59858.051,1502.5494,0,2315.7026 +9635,11721,20930,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2957773,8.153492,0,0,0,-1030.4249,0,-9,-9,2021,13,3,35,35,1,3,0,11.540692,11.540692,0,0,0,0,0,0,0,0,0,0,0,1.4495844,0,46.88,60.96,-9,-9,6.666666666666667,1,1,0,0,5,4,4,0,211,154574.86,0,0,0,1506.6268,0,1690.9174 +9636,11722,20931,20932,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,6,3,-179.91559,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,41.86,41.35,50.51,53.71,8.333333333333334,1,1,1,0,5,13,5,1,568.5,3799013,2530088.8,560557.13,0,0,0,2672.2017 +9636,11722,20932,20931,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.1609373,8.8872547,0,6,-3,190.84094,0,2,3,2021,12,0,38,38,1,0,0,28.538397,28.538397,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,53.71,41.86,41.35,8.333333333333334,1,1,0,0,11,13,5,1,568.5,3799013,2530088.8,560557.13,0,0,0,2672.2017 +9637,11723,20933,20934,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9527373,8.1799192,0,11,-1,-47.854721,0,3,2,2021,15,4,20,20,1,4,0,17.988567,17.988567,0,0,0,1,0,0,0,0,1,1,0,0,0,43.71,56.91,66.29000000000001,15.67,8.333333333333334,1,1,0,0,11,9,3,1,836.5,710004.13,319192.13,335126.44,0,0,2856.1973,2007.4752 +9637,11723,20934,20933,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,11,1,-.24709976,0,3,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.8569846,0,66.29000000000001,15.67,43.71,56.91,8.333333333333334,1,1,0,0,8,9,3,1,836.5,710004.13,319192.13,335126.44,0,0,2856.1973,2007.4752 +9638,11724,20935,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.5375614,6.9444122,0,0,-1031.757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5555873,7.3570447,58.57,35.72,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,124,548902,289132.75,56558.492,0,1428.4041,0,1049.679 +9639,11725,20936,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.8544803,7.8582263,0,0,0,-923.34442,0,-9,-9,2021,5,0,23,37,1,0,0,11.595666,11.595666,.05,.05,0,0,0,0,1.4027994,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20937,-9,20936,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1008.2169,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20938,-9,20936,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.44202,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20939,-9,20936,-9,1,1,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1026.0339,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9640,11726,20940,20941,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.8468504,8.570262,12,0,64.495056,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.577764,8.7135887,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1193,1355698.4,1136674.9,254919.13,0,0,0,3960.9165 +9640,11726,20941,20940,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7098193,7.0058761,48,0,-24.472067,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1206236,7.023108,57.16,56.15,58.32,50.22,10,1,1,0,0,5,1,4,1,1193,1355698.4,1136674.9,254919.13,0,0,0,3960.9165 +9641,11727,20942,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1019.9791,0,2,3,2021,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.77,47.24,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,1429,-1452.3796,61031.789,0,0,0,0,-893.547 +9642,11728,20943,20944,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.3689928,8.46453,0,6,4,-5.6507893,0,2,1,2021,15,3,42,42,1,3,0,9.8854218,9.8854218,.05,.05,0,0,0,0,0,0,1,1,0,4.6872864,0,37.47,39.94,36.52,53.47,5,1,1,0,0,6,12,4,1,442,150465.06,82261.266,0,0,0,2002.1604,2867.8113 +9642,11728,20944,20943,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.2656302,8.0549965,0,6,-4,-49.182236,0,2,2,2021,8,0,20,16,1,0,0,8.8571901,8.8571901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.52,53.47,37.47,39.94,8.333333333333334,1,1,0,0,7,12,4,1,442,150465.06,82261.266,0,0,0,2002.1604,2867.8113 +9642,11729,20945,-9,20944,20943,1,0,20,0,0,0,2,2,-9,0,3,7.830205,7.6885433,0,0,0,-1112.2891,0,2,2,2021,8,0,45,50,1,0,1,8.7344542,8.7344542,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,550,-137139.02,0,0,0,0,0,819.7981 +9642,11730,20946,-9,20944,20943,1,0,18,0,0,0,2,2,1,0,5,6.7400112,7.0418439,0,0,0,-1007.7523,-9,2,2,2021,6,0,15,0,1,0,1,6.1886873,6.1886873,0,0,0,0,0,0,0,0,1,1,0,0,0,57.22,50.06,-9,-9,10,1,1,0,0,5,12,2,1,469,-70387.273,0,0,0,0,0,340.09799 +9643,11731,20947,20948,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5481167,8.7887611,0,4,3,31.256201,0,-9,-9,2021,10,0,38,47,1,0,0,16.035532,16.035532,.05,.05,0,0,0,0,0,7,0,0,0,3.9763992,0,51.65,39.74,42.77,25.22,5,1,1,0,0,11,2,4,1,404,978252.31,742342.06,80297.195,0,0,0,2041.0522 +9643,11731,20948,20947,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.0187197,6.9951925,0,35,-3,13.844644,0,3,3,2021,19,8,20,20,1,8,0,6.0326757,6.0326757,.05,.05,0,0,0,0,0,0,0,0,0,2.5755465,0,42.77,25.22,51.65,39.74,6.666666666666667,1,1,0,0,11,2,4,1,404,978252.31,742342.06,80297.195,0,0,0,2041.0522 +9644,11732,20949,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1562529,8.4015589,0,0,0,-983.07245,0,-9,-9,2021,14,2,38,42,1,2,0,12.512957,12.512957,.05,.05,0,0,0,0,0,0,1,1,0,1.3251542,0,32.01,62.01,-9,-9,8.333333333333334,1,1,0,1,6,8,5,0,272,57367.441,55343.93,0,0,0,0,1707.3038 +9645,11733,20950,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-884.74017,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,26.379578,27.42478,250.16443,0,1,1,0,0,0,40,23,-9,-9,10,1,1,0,0,10,8,1,0,273,337314.5,0,357776.94,0,0,0,1134.0078 +9646,11734,20951,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,5.9990911,5.9041471,0,0,0,-991.18372,-9,2,1,2021,8,0,7,0,1,0,0,8.0785093,8.0785093,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,3,4,0,0,6,4,2,0,1168,951618.44,0,0,0,0,0,-242.16197 +9647,11735,20952,20953,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,38,-6,28.347101,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.4021695,0,48.26,50.7,34.8,29.64,3.333333333333333,1,1,0,0,7,4,2,1,862,288924,-91975.273,270863.88,0,110.74341,0,341.07733 +9647,11735,20953,20952,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,3.8910799,3.9324062,37,6,-71.546974,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,18.083818,0,0,1,1,0,5.3443441,4.2085104,34.8,29.64,48.26,50.7,8.333333333333334,1,1,0,0,6,4,2,1,862,288924,-91975.273,270863.88,0,110.74341,0,341.07733 +9648,11736,20954,20955,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.8432331,8.0121355,50,11,69.779335,0,2,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8440995,44.33,41.95,51.21,44.28,8.333333333333334,1,1,0,0,0,2,4,1,484.5,1139291.4,572561.06,701204.75,0,0,0,3303.7773 +9648,11736,20955,20954,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.5095963,7.5677404,50,-11,-104.51414,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2461805,7.5624437,51.21,44.28,44.33,41.95,8.333333333333334,1,1,0,0,0,2,4,1,484.5,1139291.4,572561.06,701204.75,0,0,0,3303.7773 +9649,11737,20956,20957,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,6,13,-24.489647,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7513323,0,55.68,54.24,57.16,56.15,8.333333333333334,1,1,0,0,6,9,2,1,933,144952.72,0,0,0,0,0,3242.4299 +9649,11737,20957,20956,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.2760057,7.4504519,0,6,-13,10.183449,0,1,1,2021,6,0,30,15,1,0,0,5.6160026,5.6160026,0,0,0,0,0,0,0,0,0,0,0,7.5143752,0,57.16,56.15,55.68,54.24,8.333333333333334,1,1,0,0,8,9,2,1,933,144952.72,0,0,0,0,0,3242.4299 +9649,11738,20958,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1219.767,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,550,339340.59,0,0,0,0,0,283.44202 +9650,11739,20959,-9,20961,20960,1,0,45,0,0,0,2,2,-9,0,3,7.8688617,8.0282841,0,0,0,-1026.2028,0,2,2,2021,11,1,45,38,1,1,0,6.1430101,6.1430101,0,0,0,0,0,0,0,0,1,1,0,6.3986449,0,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,860,109424.14,0,168894.78,32793.949,0,0,935.89368 +9650,11740,20960,20961,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.5876346,5.2739182,6,0,85.062897,0,3,-9,2021,2,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7666364,5.4067783,48.85,58.56,57.8,50.59,1.666666666666667,1,1,0,0,0,9,2,1,1010.5,552279.44,-17427.539,325017.31,0,0,0,1491.9822 +9650,11740,20961,20960,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,5.0529261,4.725656,6,0,-74.969826,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.541564,4.6737118,57.8,50.59,48.85,58.56,8.333333333333334,1,1,0,0,0,9,2,1,1010.5,552279.44,-17427.539,325017.31,0,0,0,1491.9822 +9651,11741,20962,-9,-9,20963,1,1,56,0,0,0,2,2,-9,0,3,7.7956815,7.5480418,0,0,0,-1107.229,0,3,3,2021,6,0,40,40,1,0,0,8.144639,8.144639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1621,-17672.027,44560.723,0,0,0,1760.9254,1205.9519 +9651,11742,20963,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.5396,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,353,-35397.074,0,0,0,17196.641,0,1329.9315 +9652,11743,20964,20965,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6787176,6.6435242,59,3,-45.758762,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8199091,6.766212,54,46,52,46,8,1,1,0,0,8,11,2,0,270.5,360148.56,53393.906,138853.33,0,0,0,1255.0881 +9652,11743,20965,20964,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,59,-3,-58.155525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7077672,0,19.397747,120,1,1,0,2.0096784,0,52,46,54,46,8,1,1,0,0,0,11,2,0,270.5,360148.56,53393.906,138853.33,0,0,0,1255.0881 +9653,11744,20966,20967,-9,-9,1,0,52,1,0,0,2,2,-9,0,4,8.0912046,7.9895897,0,5,1,93.905441,0,-9,-9,2021,8,1,49,37,1,1,0,9.6448898,9.6448898,.05,.05,0,0,0,0,0,77,1,0,1,0,0,54.2,57.49,45.87,21.83,8.333333333333334,1,1,0,0,7,9,3,0,1072.5,67913.805,-7806.5933,0,0,1722.6292,0,2590.7427 +9653,11744,20967,20966,-9,-9,1,1,51,1,0,0,3,3,-9,1,2,0,0,0,5,-1,-4.921196,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.87,21.83,54.2,57.49,3.333333333333333,1,1,0,0,0,9,3,0,1072.5,67913.805,-7806.5933,0,0,1722.6292,0,2590.7427 +9653,11745,20968,-9,-9,20969,1,1,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-991.96399,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,6,-9,0,0,9,4,0,547.5,16897.855,0,0,0,0,0,1750.2742 +9653,11745,20969,-9,20966,20967,1,1,24,1,0,0,2,2,-9,0,2,8.3609266,8.590167,0,0,0,-990.60449,0,2,3,2021,8,0,48,69,1,0,1,9.4877968,9.4877968,0,0,0,0,0,0,0,0,1,0,1,.69248295,0,47.45,50.2,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,547.5,16897.855,0,0,0,0,0,1750.2742 +9654,11746,20970,20971,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,6.6681843,6.980619,0,43,0,-17.028202,0,2,3,2021,8,0,12,20,1,0,0,8.8500977,8.8500977,0,0,0,0,0,0,0,0,1,1,0,2.5130105,0,54.79,55.86,42.39,56.1,8.333333333333334,1,1,0,0,13,11,3,1,202,1448403.8,914992.38,317806.81,0,0,0,2933.801 +9654,11746,20971,20970,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.3131304,7.6482,0,43,0,35.332935,0,2,2,2021,11,0,24,40,1,0,0,9.2096386,9.2096386,.05,.05,0,0,0,0,0,0,1,1,0,6.4194074,0,42.39,56.1,54.79,55.86,8.333333333333334,1,1,0,0,13,11,3,1,202,1448403.8,914992.38,317806.81,0,0,0,2933.801 +9655,11747,20972,20973,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.31359,8.1903458,0,35,1,38.717827,0,2,2,2021,8,0,40,91,1,0,0,11.558643,11.558643,.05,.05,0,0,0,0,0,0,0,0,0,7.2949834,0,53.35,32.27,48.87,58.55,8.333333333333334,1,1,0,0,15,9,5,1,917.5,997718.75,562738.38,415583.5,0,0,0,4466.5659 +9655,11747,20973,20972,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8629322,8.0728521,0,35,-1,-31.244854,0,2,2,2021,10,0,43,42,1,0,0,7.5081997,7.5081997,.05,.05,0,0,0,0,0,0,0,0,0,7.5184846,0,48.87,58.55,53.35,32.27,8.333333333333334,1,1,0,0,15,9,5,1,917.5,997718.75,562738.38,415583.5,0,0,0,4466.5659 +9656,11748,20974,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0849571,7.9734421,0,0,0,-979.3205,0,-9,-9,2021,12,0,37,-9,1,2,0,7.7511396,7.7511396,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,3,6,4,0,381,299963.25,26939.727,88348.875,58534.539,0,0,1259.814 +9657,11749,20975,-9,20976,20977,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.43896,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9657,11749,20976,20977,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.215878,6.9824762,0,2,0,26.635788,-9,2,1,2021,16,5,16,0,1,5,0,7.0185494,7.0185494,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,35.85,31.79,47.48,0,1,1,0,0,9,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9657,11749,20977,20976,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.089077,8.0428867,0,2,0,170.69809,-9,-9,-9,2021,30,12,42,0,1,12,0,9.934576,9.934576,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.79,47.48,41.47,35.85,1.666666666666667,1,1,0,0,1,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9658,11750,20978,-9,20980,20979,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.736,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9658,11750,20979,20980,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,8.3922129,8.4163399,0,22,5,110.6603,0,2,1,2021,6,0,41,37,1,0,0,12.588005,12.588005,.05,.05,0,0,0,0,0,14.5,1,1,0,4.2664337,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9658,11750,20980,20979,-9,-9,1,0,49,0,1,0,1,1,-9,1,4,0,0,0,22,-5,77.113884,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.2991886,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9659,11751,20981,-9,20985,20984,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.72498,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20982,-9,20985,20984,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-999.17505,-9,1,3,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,48.3,-9,-9,8.333333333333334,1,1,0,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20983,-9,20985,20984,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1145.3693,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20984,20985,-9,-9,1,1,36,0,3,0,3,3,-9,0,3,7.9961219,7.9553456,0,12,0,-15.776207,0,2,2,2021,13,2,40,48,1,2,0,8.9769135,8.9769135,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97,56.45,51.41,50.61,3.333333333333333,1,1,0,0,7,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20985,20984,-9,-9,1,0,36,0,3,0,1,1,-9,0,3,7.2743006,6.9666896,0,12,0,-33.642036,0,2,2,2021,8,4,28,31,1,4,0,7.725316,7.725316,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,50.61,32.97,56.45,1.666666666666667,1,1,0,0,7,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9660,11752,20986,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1004.4321,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.077611461,0,31.68,17,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,669,-57498.301,0,0,0,0,338.52194,853.29779 +9661,11753,20987,20988,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,8,-4,3.9323282,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.41,23.62,58.15,52.91,8.333333333333334,1,1,0,0,8,1,3,1,1457,973746.88,649233.81,230463.53,0,0,0,2629.5562 +9661,11753,20988,20987,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,7.0766191,8.6771221,7.843545,8,4,47.831623,0,2,2,2021,8,0,39,45,1,0,0,4.1852307,4.1852307,0,0,0,0,0,0,0,2,1,1,0,3.9773448,7.9476738,58.15,52.91,52.41,23.62,8.333333333333334,1,1,0,0,9,1,3,1,1457,973746.88,649233.81,230463.53,0,0,0,2629.5562 +9661,11754,20989,-9,20987,20988,1,0,28,0,0,0,2,2,-9,0,5,7.7584219,7.5542912,0,0,0,-1146.8107,0,2,2,2021,7,0,30,34,1,0,1,7.4790797,7.4790797,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,898,87232.188,0,0,0,0,0,868.73663 +9662,11755,20990,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2495432,7.9759288,0,0,0,-880.79236,0,2,2,2021,15,4,40,39,1,4,0,10.39296,10.39296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.48,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,2224,372738.81,399496.44,0,0,9342.9072,0,1628.8226 +9663,11756,20991,20992,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0317688,8.0328331,49,0,64.546326,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.5248475,8.3234024,59.88,45.37,54.37,54.8,8.333333333333334,1,1,0,0,0,6,3,1,979.5,1443582.3,967885.5,243433.22,0,0,0,2737.2498 +9663,11756,20992,20991,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,48,0,-26.94898,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0059471,0,54.37,54.8,59.88,45.37,8.333333333333334,1,1,0,0,0,6,3,1,979.5,1443582.3,967885.5,243433.22,0,0,0,2737.2498 +9664,11757,20993,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.5672956,7.5439024,0,0,0,-880.73492,0,3,-9,2021,11,0,32,37,1,0,0,9.2779455,9.2779455,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,6,2,0,1444,-98975.055,118988.27,0,0,0,0,1371.1202 +9665,11758,20994,-9,20995,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1050.4374,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,4,1,0,802.5,-38682.883,0,0,0,0,0,1679.937 +9665,11758,20995,-9,-9,-9,1,0,44,0,1,0,2,2,-9,1,3,0,0,0,0,0,-955.17529,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.47,38.4,-9,-9,0,3,4,1,0,0,4,1,0,802.5,-38682.883,0,0,0,0,0,1679.937 +9666,11759,20996,20997,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3623724,8.1940222,0,12,-5,16.872873,0,-9,-9,2021,12,0,44,41,1,0,0,11.474258,11.474258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.57,52.89,64.26000000000001,36.46,6.666666666666667,1,1,0,0,13,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20997,20996,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.7707486,8.1334229,6.4051881,12,5,10.379613,0,-9,-9,2021,7,0,35,35,1,0,0,7.8943896,7.8943896,.05,.05,0,0,0,0,0,0,1,1,0,6.20083,0,64.26000000000001,36.46,52.57,52.89,8.333333333333334,1,1,0,0,13,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20998,-9,20997,20996,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.8503,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20999,-9,20997,20996,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-908.64343,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9667,11760,21000,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.6031427,8.7267323,0,0,0,-919.14282,0,2,2,2021,18,7,37,0,1,7,0,20.184221,20.184221,.05,.05,0,0,0,0,0,0,0,0,0,.1424083,0,46.85,53.17,-9,-9,6.666666666666667,3,4,0,0,9,9,5,0,842,-66880.453,171268.25,0,0,882.31763,1941.2191,2818.6836 +9668,11761,21001,21002,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.9440985,7.0257297,48,-1,-1.351773,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.231051,7.0536156,40.2,24.84,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,1283,2049575.4,752195.25,175330.56,0,0,0,3841.3438 +9668,11761,21002,21001,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.3647738,8.4803038,48,1,-34.198933,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2184799,8.0381498,58.15,52.91,40.2,24.84,8.333333333333334,1,1,0,0,0,5,4,1,1283,2049575.4,752195.25,175330.56,0,0,0,3841.3438 +9669,11762,21003,21004,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.7519226,7.2774081,31,-4,-23.460962,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9864573,42.11,40.08,58.64,44.67,8.333333333333334,1,1,0,0,7,6,3,1,427.5,865158.13,387301.75,203072.47,0,0,0,2590.5801 +9669,11762,21004,21003,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3430328,6.0605602,31,4,-106.85656,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.66679,6.3196049,58.64,44.67,42.11,40.08,8.333333333333334,1,1,0,0,0,6,3,1,427.5,865158.13,387301.75,203072.47,0,0,0,2590.5801 +9670,11763,21005,21006,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.620513,7.4717908,58,-1,-45.466454,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,15.541061,0,0,1,1,0,3.8164258,7.9150491,36.99,42.92,27.8,52.82,5,1,1,0,0,0,10,4,1,374.5,257541.72,-36265.785,413700.88,260879.47,0,29821.053,3992.8276 +9670,11763,21006,21005,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,8.1045952,8.4840956,58,1,9.1839886,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.51596653,8.0048447,27.8,52.82,36.99,42.92,5,1,1,0,0,0,10,4,1,374.5,257541.72,-36265.785,413700.88,260879.47,0,29821.053,3992.8276 +9671,11764,21007,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.1147928,8.9243584,0,0,0,-988.82349,0,1,1,2021,12,0,56,50,1,0,0,15.72226,15.72226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,1724,196743.27,77813.773,164667.92,31660.238,0,0,2529.9597 +9672,11765,21008,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.1969767,8.069747,0,0,0,-1078.1552,0,-9,3,2021,11,0,39,39,1,0,0,9.4004335,9.4004335,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.98,51.26,-9,-9,5,1,1,0,0,7,5,4,0,375,313260.13,25624.074,153662.28,0,0,0,1275.2396 +9672,11766,21009,-9,-9,21008,1,1,25,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1144.9141,0,-9,3,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,-9,-9,5,1,1,1,1,5,5,1,0,93,16317.446,0,0,0,0,0,121.28946 +9673,11767,21010,21012,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.0633602,8.2236557,0,10,-2,37.082481,0,-9,-9,2021,11,0,35,35,1,0,0,12.147157,12.147157,0,0,0,0,0,0,0,0,1,1,0,7.2423668,0,53.82,45.2,52.39,42.38,10,1,1,0,0,9,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9673,11767,21011,-9,21010,21012,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.75275,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9673,11767,21012,21010,-9,-9,1,1,34,1,1,0,2,2,-9,0,5,8.1396818,8.2702484,0,10,2,87.577675,0,2,2,2021,9,1,38,41,1,1,0,12.557331,12.557331,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.39,42.38,53.82,45.2,8.333333333333334,1,1,0,0,9,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9674,11768,21013,21014,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.0033545,6.2558956,6,-2,-28.818619,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.804256,5.9503179,53.4,30.91,61.86,44.4,8.333333333333334,1,1,0,0,0,10,3,1,440.5,1212930.3,237273.95,569882.13,0,0,0,2629.8438 +9674,11768,21014,21013,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6475458,7.4371066,6,2,17.251024,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3323016,7.6080065,61.86,44.4,53.4,30.91,8.333333333333334,1,1,0,0,0,10,3,1,440.5,1212930.3,237273.95,569882.13,0,0,0,2629.8438 +9675,11769,21015,21016,-9,-9,1,1,44,1,3,0,3,3,-9,0,4,6.727982,7.1932864,0,14,13,32.428493,0,3,2,2021,9,0,10,10,1,1,0,10.026122,10.026122,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,1,11,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21016,21015,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,9,-13,-22.75584,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21017,-9,21016,21015,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.9231,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21018,-9,21016,21015,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.1835,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21019,-9,21016,21015,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.15558,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9676,11770,21020,21023,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,9.0963793,8.9914846,0,15,5,-46.526203,0,-9,-9,2021,7,0,37,40,1,0,0,32.154549,32.154549,.05,.05,0,0,0,0,0,0,1,1,0,3.7683907,0,57.33,53.46,42.26,55.21,8.333333333333334,2,3,0,0,7,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21021,-9,21023,21020,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-888.80908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21022,-9,21023,21020,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.56714,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21023,21020,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,5.9094553,5.7838459,0,15,-5,20.54598,0,-9,-9,2021,18,6,6,12,1,6,0,7.4804206,7.4804206,0,0,0,0,0,0,0,0,1,1,0,7.4680266,0,42.26,55.21,57.33,53.46,6.666666666666667,2,3,0,0,4,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21024,-9,21023,21020,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-836.46832,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9677,11771,21025,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1001.7088,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,20.35,-9,-9,3.333333333333333,1,1,0,0,3,12,1,0,849,102651.99,0,0,0,0,0,1471.9447 +9678,11772,21026,21027,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,9.3419533,8.9215221,58,7,0,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.9136381,42.84,25.21,54.1,49.39,6.666666666666667,1,1,0,0,0,6,5,1,1341,0,0,0,0,0,0,11334.934 +9678,11772,21027,21026,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,9.067153,9.2406616,58,-7,0,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1744995,8.9730854,54.1,49.39,42.84,25.21,8.333333333333334,1,1,0,0,0,6,5,1,1341,0,0,0,0,0,0,11334.934 +9679,11773,21028,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.0195727,7.1165247,0,0,-1045.1635,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2713189,6.8311362,60.36,35.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,891,239516.47,215080.83,319328.25,0,0,0,1896.1812 +9680,11774,21029,21030,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.2208924,5.9611163,12,-2,20.22271,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.2730284,6.0506706,46.39,60.99,57.33,53.46,8.333333333333334,1,1,0,0,12,10,4,1,1515,57195.844,-3590.043,0,0,0,2900.5786,4729.6353 +9680,11774,21030,21029,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.5854635,8.475646,0,12,2,-33.01907,0,2,2,2021,7,0,19,18,1,0,0,24.861851,24.861851,0,0,0,0,0,0,0,0,0,0,0,6.9416084,0,57.33,53.46,46.39,60.99,8.333333333333334,1,1,0,0,12,10,4,1,1515,57195.844,-3590.043,0,0,0,2900.5786,4729.6353 +9681,11775,21031,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.2128325,7.3858175,0,0,-997.14697,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,74.069733,0,0,1,1,0,6.791605,6.5092807,58.14,26.29,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,808,-26398.076,0,0,0,0,0,1522.5029 +9682,11776,21032,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.8947568,8.1844969,0,0,0,-1083.2393,0,2,2,2021,6,0,36,36,1,0,0,9.5544376,9.5544376,.05,.05,0,0,0,0,0,0,1,1,0,3.3527765,0,55.18,48.86,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,8108,9961.9258,4128.103,282870.19,25508.48,0,0,1955.0135 +9683,11777,21033,-9,21034,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.58374,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9683,11777,21034,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-934.30945,1,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,59.17,-9,-9,8.333333333333334,4,2,0,1,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9683,11777,21035,-9,21034,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.4066,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9684,11778,21036,-9,21038,21037,1,0,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-1026.6088,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,298,259038.69,0,0,0,0,0,580.43158 +9684,11779,21037,21038,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4763556,8.3626432,0,7,4,-51.717346,0,-9,-9,2021,9,0,38,37,1,1,0,12.915933,12.915933,.05,.05,0,0,0,0,0,0,1,1,0,3.7421651,0,51,56,51.83,57.2,8,1,1,0,0,1,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21038,21037,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7312489,7.6248918,0,7,-4,-9.3563433,0,3,2,2021,9,1,21,28,1,1,0,9.5532665,9.5532665,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51,56,6.666666666666667,1,1,0,0,8,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21039,-9,21038,21037,1,1,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1075.6464,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21040,-9,21038,21037,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.61737,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21041,-9,21038,21037,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-942.25208,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9685,11780,21042,21043,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4250917,8.5954361,0,27,-7,-16.45714,0,2,2,2021,10,1,37,40,1,1,0,16.707169,16.707169,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,60.33,55.72,51.28,6.666666666666667,2,3,0,0,10,9,5,1,527,808564.25,365162.19,369891.25,87838.883,0,0,3646.4968 +9685,11780,21043,21042,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.6472445,8.6519814,0,27,7,-49.266247,0,-9,-9,2021,8,0,38,37,1,0,0,18.518396,18.518396,0,0,0,0,0,0,0,0,0,0,0,0,0,55.72,51.28,42.85,60.33,8.333333333333334,2,3,0,0,10,9,5,1,527,808564.25,365162.19,369891.25,87838.883,0,0,3646.4968 +9685,11781,21044,-9,21042,21043,1,0,25,0,0,0,1,1,-9,0,2,8.3726473,8.8716784,0,0,0,-1003.4379,0,2,2,2021,30,10,51,51,1,10,1,11.672012,11.672012,0,0,0,0,0,0,0,0,0,0,0,0,0,7.51,66,-9,-9,1.666666666666667,2,3,0,0,3,9,5,1,249,-78801.273,0,0,0,0,0,1747.4979 +9686,11782,21045,21046,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3495302,8.0786371,0,12,2,-29.58569,0,3,3,2021,16,4,39,39,1,4,0,8.1134815,8.1134815,.05,.05,0,0,0,0,0,0,0,0,0,1.3896691,0,56.28,42,58.56,46.45,5,1,1,0,1,13,6,5,1,772,908815.19,565145.5,275771.56,0,0,0,3531.9438 +9686,11782,21046,21045,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,8.5142212,8.7431211,0,12,-2,-105.54005,0,3,3,2021,7,0,25,25,1,0,0,26.250841,26.250841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,56.28,42,8.333333333333334,1,1,0,0,13,6,5,1,772,908815.19,565145.5,275771.56,0,0,0,3531.9438 +9687,11783,21047,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1061.6593,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.93000000000001,17.44,-9,-9,10,1,1,0,0,4,2,1,1,764,-20471.348,0,0,0,0,0,1258.3694 +9688,11784,21048,-9,21051,21049,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.53491,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21049,21051,-9,-9,1,1,42,1,2,0,1,1,-9,0,5,8.5705624,8.4791842,0,5,4,-8.0472383,0,-9,-9,2021,6,0,55,60,1,0,0,12.150262,12.150262,.05,.05,0,0,0,0,0,0,1,1,0,.505144,0,57.06,57.76,49.28,50.19,10,1,1,0,0,8,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21050,-9,21051,21049,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.05505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21051,21049,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.0035143,8.3378429,0,5,-4,-140.32455,0,-9,-9,2021,13,1,35,30,1,1,0,11.734122,11.734122,0,0,0,0,0,0,0,0,1,1,0,6.2609901,0,49.28,50.19,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9689,11785,21052,21053,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6452122,7.4358439,52,-1,2.7540061,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.691226,7.4098258,55.73,53.98,56.58,44.22,10,1,1,0,0,11,12,3,1,549.5,592727.25,513323.84,190225.98,68959.203,0,0,7144.9727 +9689,11785,21053,21052,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.6309624,7.2848692,52,1,-54.58849,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.265018,7.1340451,56.58,44.22,55.73,53.98,8.333333333333334,1,1,0,0,0,12,3,1,549.5,592727.25,513323.84,190225.98,68959.203,0,0,7144.9727 +9690,11786,21054,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1047.1381,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,29.51,-9,-9,5,1,1,1,0,0,8,1,0,494,-161558.34,0,0,0,0,0,1214.4745 +9691,11787,21055,21056,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.6363177,7.9463329,11,0,204.3291,0,3,3,2021,21,9,0,0,4,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9226801,7.7911515,33.95,22.68,20.24,28.84,5,2,3,0,0,10,6,3,1,479,1013451.8,976029.88,151615.36,6912.2554,-2227.8796,1017.4399,1379.2932 +9691,11787,21056,21055,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.7251182,7.2124739,11,0,-108.17396,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7318978,7.5461373,20.24,28.84,33.95,22.68,3.333333333333333,2,3,0,0,0,6,3,1,479,1013451.8,976029.88,151615.36,6912.2554,-2227.8796,1017.4399,1379.2932 +9692,11788,21057,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,8.5828304,8.5556221,0,0,0,-962.07819,0,2,2,2021,23,11,37,75,1,11,0,18.860907,18.860907,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.53,54.1,-9,-9,1.666666666666667,1,1,0,1,15,13,5,0,190,-69822.648,31778.885,0,0,0,0,2256.1785 +9693,11789,21058,-9,21059,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8367,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9693,11789,21059,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,3,0,6.4551091,6.1161709,0,0,-904.1712,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,6.4015203,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,7,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9693,11789,21060,-9,21059,-9,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1076.0178,-9,1,-9,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,37.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9694,11790,21061,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.7494421,9.4667797,0,0,0,-1025.5723,0,-9,-9,2021,19,7,48,47,1,7,0,33.652634,33.652634,.05,.05,0,0,0,0,0,0,0,0,0,6.0373507,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,1137,295643.97,133687.25,0,0,0,0,5102.4355 +9695,11791,21062,21064,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,7.0810618,6.6076183,0,5,1,36.968395,-9,-9,-9,2021,4,0,20,0,1,0,0,5.8599849,5.8599849,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,31.93,58.41,8.333333333333334,1,1,0,1,8,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9695,11791,21063,-9,21064,21062,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.95532,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9695,11791,21064,21062,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,7.7207608,8.0902328,0,5,-1,-7.1863298,-9,2,1,2021,16,4,24,0,1,4,0,12.866754,12.866754,0,0,0,0,0,0,0,42,1,1,0,0,0,31.93,58.41,57.33,53.46,8.333333333333334,1,1,0,1,1,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9696,11792,21065,21067,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.2890348,8.1491261,0,4,-2,-.75199002,0,1,2,2021,8,0,28,28,1,0,0,14.307911,14.307911,0,0,0,0,0,0,0,0,1,1,0,6.8859434,0,48.87,58.55,50,57,10,1,1,0,0,8,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9696,11792,21066,-9,21065,21067,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.9633,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9696,11792,21067,21065,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.409977,9.5833254,0,4,2,75.958145,0,-9,2,2021,10,0,37,38,1,1,0,51.837677,51.837677,.05,.05,0,0,0,0,0,0,1,1,0,4.0119843,0,50,57,48.87,58.55,7,1,1,0,0,1,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9697,11793,21068,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,6.8354249,7.0835238,0,0,-951.78687,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2471094,7.2582846,51.83,57.2,-9,-9,5,1,1,0,0,8,9,2,0,397,451652.31,213330.5,170202.63,0,0,0,475.08884 +9698,11794,21069,21070,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,6.3840003,6.4137998,18,-14,63.430012,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.426456,46.65,23.49,30.21,32.24,8.333333333333334,1,1,0,0,0,5,2,1,2544,-3988.6797,134220.55,151012.47,49562.063,0,0,3800.668 +9698,11794,21070,21069,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,2.2174127,2.5159609,18,14,-36.767517,0,3,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,26.961157,20.451893,258.4621,0,1,1,0,2.6101222,2.538146,30.21,32.24,46.65,23.49,8.333333333333334,1,1,0,0,0,5,2,1,2544,-3988.6797,134220.55,151012.47,49562.063,0,0,3800.668 +9699,11795,21071,21072,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.104846,8.1272154,0,6,-5,-166.96286,0,2,2,2021,16,4,37,37,1,4,0,10.328522,10.328522,.05,.05,0,0,0,0,0,0,0,0,0,.12020367,0,45.26,45.46,42.29,58.81,8.333333333333334,1,1,0,0,7,12,5,1,471.5,381401.22,37854.316,369764.38,201546.11,17560.688,4290.9858,3169.0981 +9699,11795,21072,21071,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.6843204,8.4234686,0,6,5,-56.397411,0,-9,-9,2021,7,0,43,46,1,0,0,13.857708,13.857708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.29,58.81,45.26,45.46,6.666666666666667,1,1,0,0,9,12,5,1,471.5,381401.22,37854.316,369764.38,201546.11,17560.688,4290.9858,3169.0981 +9700,11796,21073,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.276268,7.5156665,0,0,-933.57819,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,4.2516499,13.131484,47.18396,2,1,1,0,4.1568317,7.381238,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1459,281340.22,11217.095,224051.64,0,0,0,2306.9517 +9701,11797,21074,-9,21075,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.12219,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,751.5,87771.711,0,122754.21,12221.033,0,0,864.78455 +9701,11797,21075,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,0,0,-954.36511,0,-9,-9,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,35.85,-9,-9,6.666666666666667,3,4,1,1,0,8,1,0,751.5,87771.711,0,122754.21,12221.033,0,0,864.78455 +9701,11798,21076,-9,21075,-9,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1108.2716,1,2,-9,2021,17,6,0,7,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,48.11,-9,-9,6.666666666666667,3,4,0,0,2,8,1,0,1473,-136198.52,0,0,0,0,0,897.05029 +9702,11799,21077,21078,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,8,-3,128.48363,0,3,-9,2021,19,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.31,51.41,36.03,55.74,6.666666666666667,1,1,1,0,2,11,2,0,1190.5,143343.83,0,103259.15,18527.9,18998.24,1182.5391,1802.5955 +9702,11799,21078,21077,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.2514524,6.4153638,0,8,3,-56.719685,0,3,3,2021,14,2,11,11,1,2,0,7.3726554,7.3726554,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,55.74,33.31,51.41,6.666666666666667,1,1,0,1,9,11,2,0,1190.5,143343.83,0,103259.15,18527.9,18998.24,1182.5391,1802.5955 +9702,11800,21079,-9,21078,21077,1,1,40,0,0,0,3,3,-9,1,1,0,0,0,0,0,-961.01636,0,3,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.34,51.96,-9,-9,5,1,1,0,0,0,11,1,0,592,129694.08,0,0,0,1166.0903,0,547.6969 +9703,11801,21080,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0539823,6.5938811,0,0,-1012.3171,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3562346,6.7315192,54.77,50.34,-9,-9,8.333333333333334,1,1,0,0,9,8,2,1,1787,489810.16,264036.19,304801.31,235168.11,0,0,1425.9296 +9704,11802,21081,21082,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.215888,7.5769539,35,5,-24.731478,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5703292,7.3141422,56.93,29.72,54.79,55.86,8.333333333333334,1,1,0,0,11,6,3,1,935.5,1473683.5,1127407.8,229550.34,0,0,0,1988.3118 +9704,11802,21082,21081,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9852014,7.8102283,0,35,-5,-20.429308,0,2,2,2021,6,0,33,30,1,0,0,10.467133,10.467133,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.93,29.72,8.333333333333334,1,1,0,0,15,6,3,1,935.5,1473683.5,1127407.8,229550.34,0,0,0,1988.3118 +9705,11803,21083,21084,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8135619,8.2090836,11,6,-19.638256,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,8.3858681,54.45,51.96,52.75,41.81,8.333333333333334,1,1,0,0,14,10,5,1,320,1802754.9,1273435,360713.88,0,0,0,3833.9497 +9705,11803,21084,21083,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8156538,9.0594101,0,11,-6,58.904503,0,-9,-9,2021,11,0,60,29,1,0,0,18.829245,18.829245,0,0,0,0,0,0,0,2,1,1,0,.72116888,0,52.75,41.81,54.45,51.96,8.333333333333334,1,1,0,0,9,10,5,1,320,1802754.9,1273435,360713.88,0,0,0,3833.9497 +9706,11804,21085,21086,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.8796177,5.8485498,12,6,115.14225,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8823557,5.6777315,59.07,43.05,65.19,28.39,10,1,1,0,0,0,4,2,1,696.5,206325.73,85984.922,177698.5,0,0,0,1505.0784 +9706,11804,21086,21085,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,12,-6,-45.140823,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.19,28.39,59.07,43.05,10,1,1,0,0,0,4,2,1,696.5,206325.73,85984.922,177698.5,0,0,0,1505.0784 +9707,11805,21087,21088,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.7191858,8.8088703,0,3,-11,24.73,0,1,2,2021,7,2,38,38,1,2,0,17.878469,17.878469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.02,59.5,54.2,57.49,8.333333333333334,1,1,0,0,12,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9707,11805,21088,21087,-9,-9,1,1,45,1,1,0,3,3,-9,0,4,9.4513512,9.6339455,0,3,11,-30.107817,0,-9,-9,2021,10,0,50,45,1,0,0,28.177845,28.177845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.02,59.5,6.666666666666667,1,1,0,0,3,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9707,11805,21089,-9,21087,21088,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.76172,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9708,11806,21090,21092,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.654151,8.3819485,0,10,2,19.493839,0,1,2,2021,8,0,36,37,1,0,0,15.962721,15.962721,.05,.05,0,0,0,0,0,0,1,1,0,3.5232697,0,49.46,56.91,50.43,53.69,8.333333333333334,1,1,0,0,10,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9708,11806,21091,-9,21092,21090,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.1311,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9708,11806,21092,21090,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.1825829,8.3254519,0,10,-2,-113.69051,0,1,1,2021,6,0,25,22,1,0,0,14.189433,14.189433,.05,.05,0,0,0,0,0,0,1,1,0,2.4944267,0,50.43,53.69,49.46,56.91,8.333333333333334,1,1,0,0,8,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9709,11807,21093,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7517195,7.7389679,0,0,-1062.6261,0,-9,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6430988,7.6083393,60.29,52.11,-9,-9,10,1,1,0,0,4,13,3,1,390,666032.19,352515.5,295578.09,0,7153.9082,0,797.48889 +9710,11808,21094,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.5240841,7.3932195,0,0,-911.19019,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7682805,7.4900222,54.7,34.63,-9,-9,1.666666666666667,1,1,0,0,0,13,3,1,780,129957.06,132377.91,224633.88,0,0,0,1894.6003 +9711,11809,21095,21096,21098,-9,1,0,52,0,0,0,2,2,-9,0,2,7.4986115,7.4877505,0,34,-4,-132.83618,0,2,2,2021,13,1,25,22,1,1,0,5.2848682,5.2848682,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,36.99,45.33,49.24,5,1,1,0,0,14,5,4,1,1000,325881.44,71193.734,97580.68,0,985.73364,0,2715.3403 +9711,11809,21096,21095,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2501469,7.949553,7.1364083,34,4,-35.811878,0,-9,-9,2021,6,0,42,55,1,0,0,3.7852252,3.7852252,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5002995,45.33,49.24,58.32,36.99,5,1,1,0,0,12,5,4,1,1000,325881.44,71193.734,97580.68,0,985.73364,0,2715.3403 +9711,11810,21097,-9,21095,21096,1,1,18,0,0,0,2,2,1,0,3,6.2890429,6.3669643,0,0,0,-960.84735,-9,2,2,2021,6,0,8,0,1,0,1,6.2972345,6.2972345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,0,5,2,1,427,-114524.58,36570.492,0,0,0,0,593.03674 +9711,11811,21098,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.6976748,6.9946871,0,0,-974.54858,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0727644,43.81,51.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,225,640986.88,160816.7,387129.28,0,0,0,990.91211 +9712,11812,21099,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.4870772,7.7264128,0,0,-1055.5021,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1276436,7.625526,44.51,49.63,-9,-9,6.666666666666667,1,1,0,0,5,10,3,1,926,241354.39,254274.83,0,0,0,0,1871.6647 +9713,11813,21100,21101,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.8520775,8.1889734,40,0,-73.07151,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4698329,8.8844376,39.5,56.19,37.46,55.55,8.333333333333334,1,1,0,0,9,9,5,1,585.5,2940070.8,1895571,651160.63,0,0,0,5040.7803 +9713,11813,21101,21100,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.1725445,7.9774051,42,0,-23.431591,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8113251,7.7585649,37.46,55.55,39.5,56.19,8.333333333333334,1,1,0,0,8,9,5,1,585.5,2940070.8,1895571,651160.63,0,0,0,5040.7803 +9714,11814,21102,21103,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.5935936,8.69485,0,1,2,-61.764278,-9,3,3,2021,10,0,38,0,1,0,0,17.591631,17.591631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.61,61.54,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9714,11814,21103,21102,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.4551587,7.411458,0,1,-2,151.00615,-9,-9,-9,2021,7,0,37,0,1,0,0,5.844142,5.844142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.61,61.54,8.333333333333334,1,1,0,0,8,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9714,11814,21104,-9,21103,21102,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.95331,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9715,11815,21105,21106,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.9415498,5.290061,51,-3,-101.973,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9607263,48.12,42.71,61.04,44.94,6.666666666666667,1,1,0,0,5,4,2,1,2432,407173.56,163838.19,173657.66,0,0,0,1648.7659 +9715,11815,21106,21105,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4777393,5.4805255,51,3,175.18056,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8426085,5.4248109,61.04,44.94,48.12,42.71,10,1,1,0,0,5,4,2,1,2432,407173.56,163838.19,173657.66,0,0,0,1648.7659 +9716,11816,21107,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1073.1133,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.44,32.61,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,128,-28756.811,0,0,0,0,0,1078.2229 +9717,11817,21108,21109,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.4924345,8.5593491,0,5,-2,7.6792026,0,3,3,2021,7,0,37,37,1,0,0,13.942501,13.942501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,59.62,59.31,49.81,8.333333333333334,1,1,0,0,7,7,5,1,247,1242450.5,294186.69,714370,144398.34,0,0,4705.5078 +9717,11817,21109,21108,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.746707,8.7096844,0,5,2,-14.439435,0,2,-9,2021,10,0,47,47,1,0,0,16.066099,16.066099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,49.84,59.62,5,1,1,0,0,7,7,5,1,247,1242450.5,294186.69,714370,144398.34,0,0,4705.5078 +9717,11818,21110,-9,21108,21109,1,0,19,0,0,0,3,3,-9,0,4,7.3767381,7.3498483,0,0,0,-989.69745,0,2,2,2021,4,0,40,8,1,0,1,5.2657728,5.2657728,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,444,14245.818,80763.445,0,0,0,0,856.13251 +9718,11819,21111,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,9.0168285,9.2202682,0,0,0,-977.39832,0,3,3,2021,5,0,80,75,1,0,0,10.501138,10.501138,0,0,0,0,0,0,0,0,1,1,0,0,0,51.97,40.05,-9,-9,10,1,1,0,0,9,10,5,0,243,1001389.3,909606.94,335981.69,55960.633,0,0,4477.814 +9719,11820,21112,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1007.1599,0,2,3,2021,36,12,0,36,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.49,46.06,-9,-9,0,1,1,1,1,9,7,2,0,1023,0,0,0,0,0,0,408.63049 +9719,11821,21113,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-961.11652,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.8488097,0,29.61,28.53,-9,-9,5,1,1,0,1,0,7,1,0,424,39451.773,0,0,0,0,0,1386.996 +9720,11822,21114,21115,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.6188483,6.9073114,4.4152956,12,3,65.975426,0,-9,-9,2021,20,7,14,14,1,7,0,9.5265732,9.5265732,0,0,0,0,0,0,0,0,0,0,0,3.3587253,3.9898832,28.29,54.83,45.69,49.31,6.666666666666667,1,1,0,0,11,9,3,1,770,764781.88,330038.13,444422.88,0,0,-213.65794,1997.0247 +9720,11822,21115,21114,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1987095,7.7859592,7.4226284,12,-3,-38.994144,0,3,3,2021,9,0,21,17,1,0,0,6.5663233,6.5663233,.05,.05,0,0,0,0,0,0,0,0,0,5.0550084,7.5029798,45.69,49.31,28.29,54.83,8.333333333333334,1,1,0,0,13,9,3,1,770,764781.88,330038.13,444422.88,0,0,-213.65794,1997.0247 +9721,11823,21116,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.4000559,6.4202452,0,0,-1044.0011,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.7080252,4.198772,14.281981,0,1,1,0,6.794683,6.4311442,54.38,22.81,-9,-9,5,1,1,0,0,0,9,2,0,719,207183.42,129107.46,0,0,0,0,416.90079 +9722,11824,21117,21118,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,7.6462984,7.4141469,0,8,-1,-158.86269,0,-9,3,2021,11,0,30,30,1,0,0,8.4906197,8.4906197,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,36.57,51.62,47.75,8.333333333333334,1,1,0,1,9,7,4,1,404,1368075,568429.44,420407.88,0,0,0,3564.3943 +9722,11824,21118,21117,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.0194769,7.6944361,0,8,1,-133.4155,0,3,3,2021,6,0,40,55,1,0,0,11.096763,11.096763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.62,47.75,39.16,36.57,6.666666666666667,1,1,0,1,9,7,4,1,404,1368075,568429.44,420407.88,0,0,0,3564.3943 +9722,11825,21119,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,7.5337958,7.5835075,0,0,0,-1050.0005,-9,-9,-9,2021,12,1,36,0,1,1,0,6.6232929,6.6232929,0,0,0,0,0,0,0,0,1,1,0,0,0,50.74,38.9,-9,-9,8.333333333333334,1,1,0,1,3,7,3,1,2325,0,0,0,0,0,0,754.54047 +9723,11826,21120,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1139126,8.0025921,0,0,-1035.9821,0,1,3,2021,8,1,0,36,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1253743,8.0720243,50.01,49.78,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,627,1168604.1,417885.53,298009.81,0,0,0,1853.5463 +9724,11827,21121,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.0405989,8.1887445,0,0,0,-994.67554,0,2,2,2021,22,7,37,37,1,7,0,12.547324,12.547324,.05,.05,0,0,0,0,0,0,0,0,0,2.1387043,0,44.39,63.4,-9,-9,3.333333333333333,1,1,0,1,11,10,4,1,296,397313.66,168289.7,289247.66,77017.07,0,7387.3657,1540.7802 +9725,11828,21122,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1538086,6.9284339,0,0,-936.51825,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3124404,66.61,45.12,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,410,-13759.213,260369.73,89536.492,0,0,0,763.0343 +9726,11829,21123,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-970.85303,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,14.574613,31.458914,140.04169,14.5,1,1,0,0,0,20.44,24.81,-9,-9,0,1,1,0,0,0,12,1,0,575,43726.844,43552.703,0,0,0,0,2301.9622 +9727,11830,21124,21125,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,7.8673143,8.098012,6.7165008,37,-4,78.050636,0,1,2,2021,12,0,20,22,1,0,0,14.435861,14.435861,0,0,0,0,0,0,0,7,1,1,0,0,6.9383349,64.90000000000001,22.54,53.05,28.78,8.333333333333334,1,1,0,0,9,2,5,1,807,375867,195205.09,153693.09,7999.1338,0,0,3005.509 +9727,11830,21125,21124,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2555027,8.2787867,5.948482,37,4,87.539948,0,3,3,2021,12,1,42,40,1,1,0,11.001336,11.001336,.05,.05,0,0,0,0,0,2,1,1,0,1.5812576,6.1305256,53.05,28.78,64.90000000000001,22.54,6.666666666666667,1,1,0,0,9,2,5,1,807,375867,195205.09,153693.09,7999.1338,0,0,3005.509 +9728,11831,21126,21127,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,9.2282715,9.3494978,0,13,-2,41.079906,0,2,1,2021,5,0,45,44,1,0,0,31.436689,31.436689,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,34.68,33.06,8.333333333333334,1,1,0,0,10,9,5,1,816,179511.77,174269.16,0,0,16530.639,9467.2637,4142.6279 +9728,11831,21127,21126,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,13,2,21.313168,0,-9,2,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.68,33.06,55.68,54.24,6.666666666666667,1,1,0,0,6,9,5,1,816,179511.77,174269.16,0,0,16530.639,9467.2637,4142.6279 +9728,11832,21128,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3647547,8.2644405,0,0,0,-1104.546,-9,-9,-9,2021,11,0,40,0,1,2,0,12.114853,12.114853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,4,6,0,0,1,9,4,1,1546,-26747.76,-14350.719,0,0,2575.5898,8046.3003,1777.3748 +9729,11833,21129,21133,-9,-9,1,1,45,0,4,0,1,1,-9,0,4,8.0799656,8.087718,0,3,8,44.249199,0,-9,-9,2021,9,0,40,40,1,1,0,6.9982114,6.9982114,.05,.05,0,0,0,0,0,0,1,1,0,8.1276264,0,53,55,32.79,44.66,8,3,4,0,0,1,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21130,-9,21133,21129,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-955.37451,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21131,-9,21133,21129,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-993.85614,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21132,-9,21133,21129,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-965.13263,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21133,21129,-9,-9,1,0,37,0,4,0,3,3,-9,0,4,0,0,0,3,-8,-5.6624618,0,-9,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.79,44.66,53,55,3.333333333333333,3,4,1,0,4,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21134,-9,21133,21129,1,0,16,0,4,1,2,0,-9,0,2,0,0,0,0,0,-926.23053,-9,3,1,2021,9,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,43,-9,-9,5,3,4,0,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11834,21135,-9,21133,21129,1,0,18,0,4,0,2,2,1,0,4,8.0114365,7.9243164,0,0,0,-1128.6027,-9,3,1,2021,12,0,12,0,1,2,1,33.514053,33.514053,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,341,-35279.484,0,0,0,34.183014,0,1620.3171 +9730,11835,21136,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.4628773,7.4483333,0,0,-902.32092,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.3106976,7.6943693,54,45,-9,-9,8,2,3,0,0,0,8,3,1,2479,862315.19,114791.05,414589.66,0,0,0,3100.9668 +9731,11836,21137,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0986776,7.1906385,0,0,-977.35815,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3517857,7.0686245,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,1366,195502.39,226660.11,122542.29,0,1492.7999,0,1871.1323 +9732,11837,21138,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.04297,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,701,-9323.5088,0,0,0,0,0,1529.9669 +9732,11838,21139,-9,21138,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0294638,7.5779128,0,0,0,-1090.8237,0,3,-9,2021,11,0,20,40,1,2,0,13.725224,13.725224,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,1,1,4,1,695,-58117.449,0,0,0,1387.5692,3244.0642,1481.4968 +9733,11839,21140,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.7346601,7.7076411,0,0,-887.10181,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7001748,7.7151546,56.74,33.83,-9,-9,8.333333333333334,1,1,0,0,15,4,3,0,872,912142.5,428586.69,185275.02,0,0,0,-254.5011 +9733,11840,21141,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3336372,8.191597,0,0,0,-963.34875,0,-9,-9,2021,21,9,40,44,1,9,0,9.5410862,9.5410862,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,1821,0,0,0,0,0,0,1732.6447 +9734,11841,21142,21143,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.4080586,7.2437515,0,25,1,-152.59045,0,2,2,2021,14,3,50,50,1,3,0,3.2170811,3.2170811,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,50.21,47.07,8.333333333333334,1,1,0,0,9,12,4,1,787.5,376548.16,314080.19,0,0,0,0,2583.1414 +9734,11841,21143,21142,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2033539,8.1817961,0,27,-1,-49.234283,0,2,2,2021,17,6,32,50,1,6,0,10.394642,10.394642,0,0,0,0,0,0,0,0,0,0,0,2.3845396,0,50.21,47.07,53.99,48.04,8.333333333333334,1,1,0,0,6,12,4,1,787.5,376548.16,314080.19,0,0,0,0,2583.1414 +9734,11842,21144,-9,21143,21142,1,1,23,0,0,0,2,2,-9,0,5,7.5156975,7.6620698,0,0,0,-1108.8734,0,2,2,2021,11,2,40,45,1,2,1,6.4213896,6.4213896,0,0,0,0,0,0,0,0,0,0,0,0,0,53.23,55.33,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,266,24314.676,96810,0,0,0,0,1059.038 +9734,11843,21145,-9,21143,21142,1,1,21,0,0,0,2,2,-9,0,3,7.7660861,7.8005271,0,0,0,-954.07959,0,2,2,2021,9,0,75,70,1,0,1,3.8441861,3.8441861,0,0,0,0,0,0,0,0,0,0,0,0,0,31.49,60.05,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,405,-69198.789,-45047.445,0,0,0,0,381.71854 +9735,11844,21146,21147,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.851018,8.5932999,8,4,-82.574371,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,7.6029139,0,65.856361,0,1,1,0,5.9776802,8.8428183,60.03,42.51,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,452,928972.94,0,715613.88,0,0,0,6157.3389 +9735,11844,21147,21146,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.3261762,6.2908587,8,-4,101.97552,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9869609,6.66607,57.16,56.15,60.03,42.51,10,1,1,0,0,6,8,4,1,452,928972.94,0,715613.88,0,0,0,6157.3389 +9736,11845,21148,-9,21151,21150,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1097.3213,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21149,-9,21151,21150,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1000.916,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21150,21151,-9,-9,1,1,57,0,2,0,3,3,-9,0,2,7.2260542,7.3167744,0,21,7,85.175781,0,2,2,2021,13,3,29,44,1,3,0,6.1080852,6.1080852,0,0,0,0,0,0,0,0,1,1,0,0,0,51.95,39.82,39.98,36.02,8.333333333333334,2,3,0,1,4,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21151,21150,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,0,0,0,21,-7,65.910797,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,51.95,39.82,5,2,3,1,1,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21152,-9,21151,21150,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-891.81464,-9,2,3,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9737,11846,21153,21154,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,4.967021,4.9857507,55,6,56.798023,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.6672478,4.8661981,64.57000000000001,33.75,54.22,36.37,10,1,1,0,0,0,9,2,1,1024,804412.38,23812.086,484618.63,0,0,0,2104.4214 +9737,11846,21154,21153,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,55,-6,5.5950975,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3010337,0,54.22,36.37,64.57000000000001,33.75,8.333333333333334,1,1,0,0,0,9,2,1,1024,804412.38,23812.086,484618.63,0,0,0,2104.4214 +9738,11847,21155,21156,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,42,-5,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3186646,0,46.92,60.71,56,52,8.333333333333334,1,1,0,0,0,9,1,1,1291,61525.141,-1447.9688,222007.05,0,2701.3142,0,982.33716 +9738,11847,21156,21155,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,6,5,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,46.92,60.71,8,1,1,0,0,0,9,1,1,1291,61525.141,-1447.9688,222007.05,0,2701.3142,0,982.33716 +9739,11848,21157,21159,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4450703,9.9765558,0,23,-4,-69.317696,0,2,1,2021,21,9,45,60,1,9,0,31.269178,31.269178,.05,.05,0,0,0,0,0,0,0,0,0,2.9358141,0,33.14,64.63,38.33,57.72,3.333333333333333,4,2,0,0,13,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21158,-9,21159,21157,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-889.12146,-9,1,1,2021,14,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,51.26,-9,-9,6.666666666666667,4,2,0,0,1,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21159,21157,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,9.0157661,9.085063,0,21,4,-39.399887,0,2,2,2021,12,0,42,31,1,0,0,17.304857,17.304857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.33,57.72,33.14,64.63,8.333333333333334,1,1,0,0,13,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21160,-9,21159,21157,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.6906,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9740,11849,21161,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5256519,8.1053047,7.8698092,0,0,-1138.1791,0,2,2,2021,12,0,26,25,1,0,0,7.1401038,7.1401038,.05,.05,0,0,0,0,0,0,1,1,0,4.855794,7.9206858,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,1555,335302.94,196282.47,117207.27,0,0,0,2975.1497 +9741,11850,21162,21163,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,.09870293,0,8,2,-48.618927,0,3,3,2021,12,0,30,35,1,0,0,.00055048749,.00055048749,0,0,0,0,0,0,0,0,0,0,0,0,0,51.47,53.17,35.44,34.8,6.666666666666667,1,1,0,0,15,13,2,1,770.5,266435.06,297853.44,0,0,0,4756.7529,215.36816 +9741,11850,21163,21162,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,8,-2,2.5541942,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,34.8,51.47,53.17,3.333333333333333,1,1,1,0,0,13,2,1,770.5,266435.06,297853.44,0,0,0,4756.7529,215.36816 +9742,11851,21164,21165,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.5652966,7.4660254,35,11,-44.655468,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7352042,7.4334288,25.11,37.41,45.72,55.07,8.333333333333334,1,1,0,0,0,1,3,1,377.5,787461.31,435299.81,113881.67,0,0,0,1791.8704 +9742,11851,21165,21164,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.3359475,5.8932786,36,-11,-6.9205656,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7083411,6.0956469,45.72,55.07,25.11,37.41,5,1,1,0,0,6,1,3,1,377.5,787461.31,435299.81,113881.67,0,0,0,1791.8704 +9743,11852,21166,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2569017,8.3176012,0,0,0,-976.75684,0,3,2,2021,7,0,42,44,1,0,0,7.9068518,7.9068518,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,12,4,1,846,473046.06,47692.66,183509.77,0,0,0,1638.1277 +9744,11853,21167,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,8.0121117,7.9907928,0,0,-900.11877,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1274309,8.2477312,48.29,26.63,-9,-9,5,1,1,0,0,0,4,4,1,896,733214.69,56226.266,318695.72,0,0,0,2192.6763 +9745,11854,21168,21169,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.614584,7.7810235,6,12,-129.38103,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.631701,7.9563894,37.36,54.65,54.13,45.34,6.666666666666667,1,1,0,0,6,10,4,1,1171.5,1813540.8,896422.5,368302.5,0,0,0,3135.7429 +9745,11854,21169,21168,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,8.2068062,8.074214,6,-12,-50.383541,0,2,2,2021,12,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1591253,54.13,45.34,37.36,54.65,8.333333333333334,1,1,0,0,9,10,4,1,1171.5,1813540.8,896422.5,368302.5,0,0,0,3135.7429 +9746,11855,21170,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,5,0,7.0146732,7.3055725,0,0,-996.88123,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2311244,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,259,-127704.45,43870.879,0,0,0,0,658.97815 +9746,11856,21171,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,3.4790099,3.5370958,0,0,-957.1803,-9,-9,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5117688,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,250,177331.98,0,0,0,0,0,-147.68324 +9746,11857,21172,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.86865,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,2,0,595,163642.78,0,0,0,0,0,467.38342 +9747,11858,21173,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,9.0853701,9.2716169,0,0,0,-1073.0907,0,1,1,2021,11,0,40,38,1,0,0,22.916451,22.916451,.05,.05,0,0,0,0,0,0,0,0,0,.79954946,0,33.64,53.56,-9,-9,5,1,1,0,0,11,8,5,1,1474,-13361.867,43901.457,0,0,-95.194168,1732.7621,2943.7517 +9748,11859,21174,-9,21175,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.7616,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11859,21175,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.7777977,7.8927932,0,0,0,-1111.4772,0,2,2,2021,13,2,38,40,1,2,0,7.636127,7.636127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.53,37.25,-9,-9,5,1,1,0,1,4,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11859,21176,-9,21175,-9,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.3594,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11860,21177,-9,21175,-9,1,1,19,0,2,0,2,2,-9,0,4,7.5628738,7.5888925,0,0,0,-987.85938,0,2,-9,2021,4,0,53,60,1,0,1,3.4510834,3.4510834,0,0,0,0,0,0,0,0,1,1,0,0,0,52.59,55.68,-9,-9,10,1,1,0,0,3,7,3,0,366,1814.5389,0,0,0,0,0,988.60522 +9749,11861,21178,21179,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.6690545,5.3127313,52,2,109.51482,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,4.2305694,0,0,1,1,0,5.3943262,5.8508334,41.9,37.91,46.92,54.3,10,1,1,0,0,0,2,2,1,1865.5,627670.13,29810.676,189102.91,0,0,0,1433.0261 +9749,11861,21179,21178,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,52,-2,2.2734661,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.92,54.3,41.9,37.91,8.333333333333334,1,1,0,0,0,2,2,1,1865.5,627670.13,29810.676,189102.91,0,0,0,1433.0261 +9750,11862,21180,21181,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.3850226,7.7754445,6,6,-54.20776,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2670116,57.06,57.76,60.3,46.58,10,1,1,0,0,0,12,4,0,395.5,1059203.4,989300.13,383386.69,127677.43,0,0,3614.1682 +9750,11862,21181,21180,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.532177,8.2556238,0,6,-6,-60.803833,0,2,3,2021,6,0,43,40,1,0,0,11.444047,11.444047,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,57.06,57.76,8.333333333333334,1,1,0,0,7,12,4,0,395.5,1059203.4,989300.13,383386.69,127677.43,0,0,3614.1682 +9751,11863,21182,21183,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,39,2,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.22,39.67,47.7,24.01,10,2,3,0,0,7,8,1,1,1584.5,51293.809,-72764.625,0,0,0,0,0 +9751,11863,21183,21182,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,39,-2,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,35.988758,0,0,0,0,0,0,0,47.7,24.01,54.22,39.67,1.666666666666667,2,3,0,0,0,8,1,1,1584.5,51293.809,-72764.625,0,0,0,0,0 +9752,11864,21184,21185,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.9171863,6.7064567,11,2,-100.57047,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3805995,54.37,54.8,57.63,45.09,10,1,1,0,0,8,4,3,1,515.5,796894.5,694939,165293.13,0,-315.97144,0,2042.9443 +9752,11864,21185,21184,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.0740275,7.4531603,11,-2,24.417379,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6022635,57.63,45.09,54.37,54.8,5,1,1,0,0,8,4,3,1,515.5,796894.5,694939,165293.13,0,-315.97144,0,2042.9443 +9753,11865,21186,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.2820849,7.0402904,0,0,0,-1043.8871,0,2,2,2021,11,0,19,19,1,0,0,8.0282555,8.0282555,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,61.85,-9,-9,5,1,1,0,0,8,7,3,0,5049,177744.75,0,0,0,0,0,3107.4355 +9754,11866,21187,21188,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.5858116,9.5427418,0,27,0,-62.027264,0,1,1,2021,6,0,40,38,1,0,0,33.81501,33.81501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,51.48,47.2,8.333333333333334,1,1,0,0,10,12,5,1,2709.5,954317.38,607131.06,452306.69,151085.09,3855.6606,453.16376,3958.1157 +9754,11866,21188,21187,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.2674642,7.5489197,0,27,0,10.4995,0,1,1,2021,14,4,25,20,1,4,0,9.5414343,9.5414343,0,0,0,0,0,0,0,0,0,0,0,4.101573,0,51.48,47.2,57.73,54.53,8.333333333333334,1,1,0,0,11,12,5,1,2709.5,954317.38,607131.06,452306.69,151085.09,3855.6606,453.16376,3958.1157 +9754,11867,21189,-9,21188,21187,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1048.1526,-9,1,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9782369,0,46.4,59.87,-9,-9,10,1,1,0,0,0,12,1,1,481,1708.9375,0,0,0,0,0,-257.21146 +9755,11868,21190,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,2,8.6124935,8.5472527,0,0,0,-901.90125,0,3,3,2021,22,9,40,40,1,9,0,16.02352,16.02352,.05,.05,0,0,0,0,0,0,1,1,0,6.0866785,0,35.88,51.34,-9,-9,3.333333333333333,1,1,0,0,8,12,5,1,321,147113.98,160857.56,87377.586,75704.305,3556.541,0,2246.9885 +9756,11869,21191,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1048.4009,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.58,46.43,-9,-9,8.333333333333334,1,1,1,0,2,2,2,0,306,-125692.16,0,0,0,0,0,240.2231 +9757,11870,21192,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.6838,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.74,20.47,-9,-9,1.666666666666667,1,1,0,0,11,12,1,0,151,174159.55,0,57932.844,0,0,0,1118.7056 +9757,11871,21193,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,2,7.5403442,7.3345885,0,0,0,-994.17755,-9,-9,-9,2021,23,9,20,0,1,9,0,7.8304043,7.8304043,0,0,0,0,0,0,0,0,1,1,0,7.7436142,0,22.77,57.16,-9,-9,10,1,1,0,0,7,12,3,0,330,-16446.439,0,0,0,0,0,2148.3354 +9758,11872,21194,21195,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.5358896,7.9465642,0,28,0,160.88383,0,3,3,2021,16,4,35,45,1,4,0,7.0103135,7.0103135,0,0,0,0,0,0,0,0,0,0,0,3.1927035,0,41.34,56.62,43.23,42.23,8.333333333333334,1,1,0,0,8,4,4,1,720.5,586843.5,85427.648,309835.13,78653.266,0,0,3553.4221 +9758,11872,21195,21194,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5195065,8.2120981,0,7,9,-120.56931,0,-9,2,2021,23,11,36,42,1,11,0,17.287619,17.287619,.05,.05,0,0,0,0,0,7,0,0,0,3.4900417,0,43.23,42.23,41.34,56.62,3.333333333333333,1,1,0,0,8,4,4,1,720.5,586843.5,85427.648,309835.13,78653.266,0,0,3553.4221 +9758,11873,21196,-9,21194,21195,1,1,22,0,0,0,2,2,-9,0,3,7.817317,7.865448,0,0,0,-979.45258,0,2,2,2021,19,7,42,40,1,7,1,6.4697475,6.4697475,0,0,0,0,0,0,0,0,0,0,0,.14639637,0,25.27,63.07,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,530,0,0,0,0,0,0,1068.9025 +9759,11874,21197,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3530817,8.4994135,0,0,0,-1043.7426,0,2,2,2021,17,6,41,41,1,6,0,13.924997,13.924997,0,0,0,0,0,0,0,0,0,0,0,1.3463478,0,29.53,39.4,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,532,1866555.4,980324.19,0,0,4877.3169,0,2305.7124 +9759,11875,21198,-9,21197,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-939.41541,0,2,-9,2021,25,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,48.66,-9,-9,3.333333333333333,1,1,0,0,7,2,2,1,1453,-94002.781,0,0,0,0,0,-337.99353 +9760,11876,21199,21202,-9,-9,1,1,45,2,2,0,1,1,-9,0,3,9.0235281,8.5495853,0,4,5,7.2802277,0,-9,-9,2021,6,0,35,35,1,0,0,26.982363,26.982363,.05,.05,0,0,0,0,0,0,1,1,0,4.2259564,0,57.33,53.46,57.06,57.76,10,4,2,0,0,10,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21200,-9,21202,21199,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.6774,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21201,-9,21202,21199,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8491,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21202,21199,-9,-9,1,0,40,2,2,0,1,1,-9,0,5,8.4818802,7.9537101,0,4,-5,58.184303,0,2,2,2021,8,0,22,21,1,0,0,25.314911,25.314911,.05,.05,0,0,0,0,0,0,1,1,0,7.3801141,0,57.06,57.76,57.33,53.46,10,4,2,0,0,10,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9761,11877,21203,21204,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,0,0,49,1,66.406883,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,54.94,50.33,8.333333333333334,1,1,0,1,11,5,3,1,774,1236402,523628.31,373368.16,0,0,0,2567.521 +9761,11877,21204,21203,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.912467,8.1388254,49,-1,-185.39185,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8409605,54.94,50.33,41.23,51.32,8.333333333333334,1,1,0,1,9,5,3,1,774,1236402,523628.31,373368.16,0,0,0,2567.521 +9762,11878,21205,21206,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.4214888,8.6014585,0,6,2,94.58844,0,2,2,2021,13,1,38,38,1,1,0,12.568537,12.568537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.27,50.59,50.03,52.62,6.666666666666667,1,1,0,0,8,1,5,0,514,123068.81,125193.28,68711.625,53131.383,0,0,3008.0413 +9762,11878,21206,21205,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2088327,8.3524704,0,6,-2,-7.257431,0,-9,-9,2021,7,0,38,38,1,0,0,11.654435,11.654435,.05,.05,0,0,0,0,0,0,0,0,0,7.3306079,0,50.03,52.62,40.27,50.59,8.333333333333334,1,1,0,0,6,1,5,0,514,123068.81,125193.28,68711.625,53131.383,0,0,3008.0413 +9763,11879,21207,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.0401087,8.1060047,0,0,-1010.6779,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0599833,57.16,56.15,-9,-9,10,1,1,0,0,5,11,4,1,1855,540441.75,308851.38,84156.781,0,0,0,2120.6584 +9763,11880,21208,-9,-9,21207,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-991.18085,-9,-9,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0239989,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,963,-36733.984,0,0,0,0,0,-578.61121 +9764,11881,21209,-9,21210,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-872.79663,-9,2,-9,2021,15,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.66,52.4,-9,-9,5,1,1,0,0,0,7,3,1,1286.5,25334.242,-19617,0,0,0,0,1159.239 +9764,11881,21210,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7371287,7.9031239,0,0,0,-1002.0973,0,3,3,2021,16,5,32,32,1,5,0,9.1728086,9.1728086,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,5,1,1,0,0,12,7,3,1,1286.5,25334.242,-19617,0,0,0,0,1159.239 +9764,11882,21211,-9,21210,-9,1,0,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-883.22888,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.6997414,0,28.63,54.27,-9,-9,3.333333333333333,1,1,0,1,3,7,1,1,124,58258.129,0,0,0,0,0,273.26944 +9765,11883,21212,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1579399,8.1646166,0,0,0,-945.33374,0,-9,-9,2021,20,8,46,46,1,8,0,10.640578,10.640578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,54.55,-9,-9,3.333333333333333,1,1,0,0,10,11,4,1,1282,-18628.896,-32447.211,0,0,0,0,2001.0114 +9766,11884,21213,-9,21215,21218,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-901.7666,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21214,-9,21215,21218,1,1,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1024.9832,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21215,21218,-9,-9,1,0,34,1,6,0,2,2,-9,1,3,7.8033409,7.4838772,0,7,-6,-97.718872,0,2,3,2021,18,5,39,33,1,5,0,7.7975674,7.7975674,0,0,0,0,0,0,0,0,1,1,0,0,0,36.55,46.8,38.86,59.06,3.333333333333333,1,1,0,0,2,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21216,-9,21215,21218,1,0,13,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1051.3497,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21217,-9,21215,21218,1,1,15,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1052.9276,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21218,21215,-9,-9,1,1,40,1,6,0,2,2,-9,0,3,0,0,0,7,6,-48.708321,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.86,59.06,36.55,46.8,6.666666666666667,1,1,0,0,3,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21219,-9,21215,21218,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-995.66809,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21220,-9,21215,21218,1,0,11,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1019.4124,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9767,11885,21221,-9,21223,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-964.58258,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21222,-9,21223,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.847,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21223,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,7.67101,8.353672,7.9367976,0,0,-1062.5199,0,2,2,2021,13,1,20,37,1,1,0,13.121556,13.121556,.05,.05,0,0,0,0,0,0,1,1,0,7.39397,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,1,7,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21224,-9,21223,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1117.3987,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9768,11886,21225,21226,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,12,6,-48.604504,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.65,41.83,57.17,50.61,6.666666666666667,1,1,0,0,1,13,3,1,620.5,1383011.5,1010842.1,174919.16,0,0,0,2265.1011 +9768,11886,21226,21225,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2033815,7.9599447,0,12,-6,-39.713066,0,3,3,2021,11,0,38,38,1,0,0,9.811162,9.811162,0,0,0,0,0,0,0,0,1,0,1,0,0,57.17,50.61,55.65,41.83,8.333333333333334,1,1,0,0,13,13,3,1,620.5,1383011.5,1010842.1,174919.16,0,0,0,2265.1011 +9768,11887,21227,-9,21226,21225,1,1,34,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1120.16,-9,3,3,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.99,55.7,-9,-9,5,1,1,1,0,5,13,2,1,151,97966.828,0,0,0,0,0,33.983078 +9768,11888,21228,-9,21226,21225,1,0,31,0,0,0,1,1,-9,0,3,8.4785471,8.633378,0,2,-1,162.1185,0,3,3,2021,10,0,38,38,1,0,0,18.174883,18.174883,.05,.05,0,0,0,0,0,0,1,0,1,0,0,50.03,52.62,47,57,6.666666666666667,1,1,0,0,9,13,4,1,210,18591.123,-83581.102,179774.19,67954.055,1802.1017,0,2272.3752 +9769,11889,21229,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,3,0,4.5794668,4.5577364,0,0,-993.82928,-9,-9,-9,2021,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2151871,0,21.67,59.26,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,853,10853.248,0,0,0,0,0,-91.259964 +9769,11890,21230,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,7.3470798,7.3159213,0,0,-1015.9691,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5031552,0,32.03,56.92,-9,-9,6.666666666666667,2,3,0,0,0,6,3,0,619,-180734.67,0,0,0,0,0,525.60095 +9770,11891,21231,-9,-9,-9,1,1,58,0,3,0,2,2,-9,0,4,8.1232433,8.210474,0,0,0,-1017.07,0,2,2,2021,7,0,37,37,1,0,0,11.57906,11.57906,.05,.05,.05,0,0,0,0,0,1,1,0,2.7205944,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,314,513724.56,280254.13,66290.883,5531.5366,9399.7686,4315.7822,535.84235 +9771,11892,21232,21233,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.8274965,7.5993967,0,26,-8,119.88152,0,2,2,2021,12,0,35,41,1,0,0,7.2068524,7.2068524,0,0,0,0,0,0,0,91,1,1,0,0,0,46.16,58.62,40.6,15.23,5,1,1,0,0,11,1,4,1,235,143861.16,3826.4248,0,0,0,0,2370.9619 +9771,11892,21233,21232,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,7.4680133,7.7481604,23,8,113.93597,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,7.5719028,7.5998998,40.6,15.23,46.16,58.62,6.666666666666667,1,1,0,0,10,1,4,1,235,143861.16,3826.4248,0,0,0,0,2370.9619 +9771,11893,21234,-9,21232,21233,1,0,19,0,0,1,2,0,0,0,4,0,6.5759673,6.6000462,0,0,-1159.9773,-9,2,2,2021,24,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7704864,0,44.55,60.42,-9,-9,6.666666666666667,1,1,0,0,3,1,2,1,495,-221915.53,0,0,0,0,0,592.89832 +9772,11894,21235,21236,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.6109695,8.3689814,0,29,-6,-44.671257,0,3,3,2021,13,1,52,0,1,1,0,8.0917931,8.0917931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.12,54.23,57.33,53.46,5,1,1,0,0,12,6,5,1,826,986349.44,471589.75,422541,74595.695,0,0,4088.2832 +9772,11894,21236,21235,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5627766,8.3498869,0,12,6,36.595592,0,-9,-9,2021,6,0,48,48,1,0,0,12.6016,12.6016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,29.12,54.23,8.333333333333334,1,1,0,0,14,6,5,1,826,986349.44,471589.75,422541,74595.695,0,0,4088.2832 +9773,11895,21237,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,7.8492489,7.8592677,0,0,0,-839.62823,0,2,-9,2021,16,4,8,8,1,4,1,51.909744,51.909744,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.19,51.54,-9,-9,3.333333333333333,4,2,0,0,7,2,4,0,1961,73741.445,63822.488,162811.98,110494.48,0,2029.5164,749.14813 +9774,11896,21238,21239,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3326426,8.2115927,0,32,3,-186.95399,0,2,1,2021,9,0,38,38,1,0,0,11.667127,11.667127,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.9,44.55,45.62,57.46,6.666666666666667,4,2,0,0,14,6,5,1,342.5,3490803.5,99808.328,286273.91,0,0,0,4971.561 +9774,11896,21239,21238,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.2758026,9.0154781,0,31,-3,132.96429,0,2,2,2021,10,0,40,45,1,0,0,33.284351,33.284351,0,0,0,0,0,0,0,14.5,0,0,0,0,0,45.62,57.46,56.9,44.55,8.333333333333334,3,4,0,0,14,6,5,1,342.5,3490803.5,99808.328,286273.91,0,0,0,4971.561 +9775,11897,21240,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.9250679,8.064311,0,0,0,-975.12561,0,3,2,2021,1,0,35,35,1,0,0,9.123168,9.123168,0,0,0,0,0,0,0,7,0,0,0,4.1865621,0,47.62,56.48,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,71,27408.092,0,-9824.0898,0,-142.40312,0,1293.5126 +9776,11898,21241,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.197166,7.608758,0,0,-1025.3619,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5994654,7.2849464,60.05,26.59,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,3054,552152.5,305334.72,202219.2,0,0,0,1754.2072 +9777,11899,21242,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-986.47986,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,260,145953.5,0,0,0,0,0,617.31726 +9777,11900,21243,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1031.0504,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.35,38.97,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,438,0,0,0,0,0,0,832.76685 +9778,11901,21244,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.210156,7.2025256,0,0,-970.28033,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.209038,6.9348707,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,295,135632.19,167875.33,195267.72,0,0,0,647.30042 +9779,11902,21245,-9,21247,21246,1,1,24,0,0,0,1,1,-9,0,4,8.4865017,8.4659882,0,0,0,-1146.0179,0,2,2,2021,11,0,40,40,1,0,1,13.745779,13.745779,.05,.05,0,0,0,0,0,0,0,0,0,3.2722824,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,470,-6008.8721,-44176.313,0,0,794.80151,1866.2614,2585.1995 +9779,11903,21246,21247,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6534739,8.5963526,0,33,-1,76.064308,0,3,3,2021,7,0,37,37,1,0,0,19.405252,19.405252,.05,.05,0,0,0,0,0,0,0,0,0,4.433866,0,57.91,46.31,51.06,32.08,10,1,1,0,0,11,4,5,1,698,255227.53,69342.672,167621.59,-1662.3647,0,0,3190.7603 +9779,11903,21247,21246,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4417257,7.3582783,0,33,1,9.4732456,0,3,3,2021,11,2,17,17,1,2,0,14.159703,14.159703,.05,.05,0,0,0,0,0,0,0,0,0,5.8384619,0,51.06,32.08,57.91,46.31,8.333333333333334,1,1,0,0,11,4,5,1,698,255227.53,69342.672,167621.59,-1662.3647,0,0,3190.7603 +9780,11904,21248,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9892225,5.6925912,0,0,-932.01593,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4427209,47.41,33.59,-9,-9,10,1,1,0,0,0,9,2,1,392,156511.53,158996.78,176462.84,0,0,785.08765,742.75745 +9781,11905,21249,21250,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.2023363,9.4190893,0,10,-2,-.37926754,0,2,2,2021,9,1,50,50,1,1,0,23.864134,23.864134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,24.45,55.43,6.666666666666667,1,1,0,0,10,4,5,1,1279,2425408.5,1957004.3,491762,14083.112,0,0,5627.7842 +9781,11905,21250,21249,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.969141,8.6614246,0,10,2,-3.5571914,0,2,2,2021,13,1,55,55,1,1,0,11.013463,11.013463,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.45,55.43,57.33,53.46,3.333333333333333,1,1,0,0,11,4,5,1,1279,2425408.5,1957004.3,491762,14083.112,0,0,5627.7842 +9781,11906,21251,-9,21250,21249,1,0,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-1003.8957,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4306674,0,54.2,57.49,-9,-9,5,1,1,0,1,2,4,1,1,1122,0,0,0,0,0,0,5876.2427 +9781,11907,21252,-9,21250,21249,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1082.952,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,4,1,1,1467,36393.082,0,0,0,0,0,2468.3005 +9781,11908,21253,-9,21250,21249,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-945.01837,-9,1,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2717521,0,49.04,55.86,-9,-9,8.333333333333334,1,1,1,0,0,4,1,1,1338,164796.31,0,0,0,0,0,14.510964 +9782,11909,21254,21255,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0324612,8.1037178,0,4,4,14.710377,0,3,3,2021,13,3,38,38,1,3,0,8.2221031,8.2221031,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.54,54.5,34.06,30.84,8.333333333333334,1,1,0,0,12,5,5,1,751.5,1172676,1020816.6,172654,29717.227,35876.965,0,3000.0078 +9782,11909,21255,21254,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,8.4589291,8.1735859,0,4,-4,-50.461239,0,-9,-9,2021,28,12,36,40,1,12,0,13.519533,13.519533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.06,30.84,48.54,54.5,5,1,1,0,0,6,5,5,1,751.5,1172676,1020816.6,172654,29717.227,35876.965,0,3000.0078 +9782,11910,21256,-9,21255,21254,1,0,22,0,0,0,1,1,-9,0,4,6.7596879,6.9774394,0,0,0,-1117.418,0,2,2,2021,14,1,39,0,1,1,1,2.7947555,2.7947555,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1731,68014.016,0,0,0,-192.39786,0,10.630415 +9782,11911,21257,-9,21255,21254,1,1,21,0,0,1,2,0,0,1,2,0,6.0592928,5.9365439,0,0,-1018.4615,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,.52218962,0,1,1,0,7.4633279,0,46.32,53.44,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1046,206687.22,0,0,0,6423.3569,0,773.63721 +9783,11912,21258,-9,21259,21260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.33435,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21259,21260,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,5.0545645,4.8904042,0,15,1,4.4265523,0,-9,2,2021,12,0,16,16,1,0,0,1.153484,1.153484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.52,62.31,36.95,53.75,8.333333333333334,1,1,0,0,10,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21260,21259,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,9.0632839,9.1597052,0,14,-1,-65.660057,0,2,-9,2021,10,0,45,60,1,0,0,19.816328,19.816328,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.95,53.75,40.52,62.31,6.666666666666667,1,1,0,0,10,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21261,-9,21259,21260,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.6371,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9784,11913,21262,21264,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.2341495,5.982307,37,16,38.552414,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,20.266819,0,14.5,1,1,0,5.9103427,5.9917417,42.13,24.16,50.89,41.27,6.666666666666667,1,1,0,0,3,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9784,11913,21263,-9,21264,21262,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-801.71191,-9,-9,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9784,11913,21264,21262,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,6.4597769,6.5910573,5.7314525,35,-16,-50.850483,0,3,3,2021,15,4,16,20,1,4,0,4.3221726,4.3221726,0,0,0,0,0,0,0,7,1,1,0,5.021307,0,50.89,41.27,42.13,24.16,3.333333333333333,1,1,0,1,11,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9785,11914,21265,21266,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.5724773,6.4431911,11,0,-102.06584,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7182307,46.17,46.33,57.33,53.46,6.666666666666667,3,4,0,0,0,2,2,1,1475.5,441335,156877.81,140294.06,0,0,0,1076.9377 +9785,11914,21266,21265,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.2786999,6.3302903,11,0,-49.665146,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3792639,57.33,53.46,46.17,46.33,10,1,1,0,0,0,2,2,1,1475.5,441335,156877.81,140294.06,0,0,0,1076.9377 +9786,11915,21267,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-925.83826,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,42.5,25.25,-9,-9,5,1,1,0,0,0,12,1,0,1099,0,0,0,0,0,0,1210.6624 +9787,11916,21268,-9,21269,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8375,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,500.5,638412.94,-48534.27,588034.69,116885.02,0,0,2422.312 +9787,11916,21269,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.0761118,8.1003857,0,0,0,-1090.7988,0,2,2,2021,11,0,35,45,1,0,0,12.882549,12.882549,0,0,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,8,3,0,500.5,638412.94,-48534.27,588034.69,116885.02,0,0,2422.312 +9788,11917,21270,21271,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,4.8625102,4.9111543,0,6,10,16.333124,0,3,3,2021,6,0,1,60,1,0,0,12.550037,12.550037,0,0,0,0,0,0,0,0,0,0,0,10.001751,0,62.39,56.71,58.62,52.91,10,1,1,0,0,8,10,2,1,609.5,1891037.6,0,936944.38,0,0,0,13885.566 +9788,11917,21271,21270,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,7.3615365,7.1589789,0,6,-10,70.695229,0,2,2,2021,6,0,60,60,1,0,0,2.7455122,2.7455122,0,0,0,0,0,0,0,0,0,0,0,8.9277039,0,58.62,52.91,62.39,56.71,8.333333333333334,1,1,0,0,8,10,2,1,609.5,1891037.6,0,936944.38,0,0,0,13885.566 +9789,11918,21272,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,5.6603408,6.0992322,0,0,-1053.7559,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8546233,5.4906058,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1245,-29139.09,0,0,0,0,0,1989.1028 +9790,11919,21273,-9,21275,21276,1,0,21,0,0,0,1,1,-9,0,4,7.7794619,8.1844597,0,0,0,-1049.5024,0,1,1,2021,13,3,43,0,1,3,1,7.7793822,7.7793822,.05,.05,0,0,0,0,0,0,0,0,0,1.1806524,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,2056,115597.51,-29078.135,0,0,0,0,1617.2902 +9790,11920,21274,-9,21275,21276,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.7569,0,1,1,2021,7,1,0,7,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,1,0,2,9,1,1,349,-84081.359,0,0,0,0,0,0 +9790,11921,21275,21276,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.0485697,7.8748941,0,6,-2,72.622459,0,2,2,2021,12,0,25,27,1,0,0,15.355858,15.355858,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,9,5,1,3050,1261614.3,661324.25,552979.75,26709.875,5860.2109,0,3430.9592 +9790,11921,21276,21275,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.9701385,8.7985792,0,6,2,-98.216141,0,-9,-9,2021,7,0,43,41,1,0,0,17.162291,17.162291,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,9,5,1,3050,1261614.3,661324.25,552979.75,26709.875,5860.2109,0,3430.9592 +9791,11922,21277,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,10.803142,10.929964,0,0,0,-992.63702,0,3,2,2021,10,0,4,1,1,0,0,1459.3613,1459.3613,0,0,0,0,0,0,0,0,0,0,0,4.9283962,0,54.37,54.8,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,256,649793.13,297909.69,89975.703,0,3027.7903,0,24811.418 +9792,11923,21278,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,1,7.2222519,6.5585256,0,0,0,-893.90527,-9,2,2,2021,36,12,20,0,1,12,0,7.8794613,7.8794613,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,50.69,-9,-9,0,1,1,0,1,5,2,3,0,1372,79118.672,0,0,0,0,0,75.576195 +9793,11924,21279,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.5246897,9.5447206,0,0,0,-892.18256,0,2,1,2021,18,7,42,42,1,7,0,41.690083,41.690083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,119,869973.19,612123.94,280613.97,90156.133,12818.966,4316.9404,4472.7266 +9794,11925,21280,21281,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,47,1,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9192777,0,53,47,47.9,42.16,8,1,1,0,0,0,4,1,0,2486,126262.74,-59351.414,16358.519,0,0,0,1216.2177 +9794,11925,21281,21280,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,47.9,42.16,53,47,1.666666666666667,1,1,0,1,8,4,1,0,2486,126262.74,-59351.414,16358.519,0,0,0,1216.2177 +9795,11926,21282,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.3303585,7.7218671,0,0,0,-971.03711,0,3,3,2021,12,2,25,25,1,2,0,10.107955,10.107955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.42,60.49,-9,-9,10,1,1,0,0,11,13,3,1,3232,124081.71,-40866.484,0,0,0,0,310.55112 +9796,11927,21283,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.1235428,6.0602241,0,0,-831.39697,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8240457,6.1649036,46.31,51.53,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,542,218371.27,-45621.445,176702.02,0,0,0,870.20245 +9797,11928,21284,-9,21285,21286,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-961.39618,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9797,11928,21285,21286,-9,-9,1,0,45,1,1,0,3,3,-9,0,4,8.6702757,8.5349379,0,7,-2,134.59833,0,2,3,2021,12,1,35,30,1,1,0,14.517364,14.517364,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.07,51.53,49.04,55.86,6.666666666666667,1,1,0,0,8,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9797,11928,21286,21285,-9,-9,1,1,47,1,1,0,3,3,-9,0,3,8.683363,8.6781435,0,7,2,85.165321,0,2,2,2021,10,1,40,42,1,1,0,15.614213,15.614213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,46.07,51.53,8.333333333333334,1,1,0,0,6,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9798,11929,21287,-9,21288,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.81635,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9798,11929,21288,-9,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,7.4655976,7.6151276,5.8340988,0,0,-960.38458,0,2,3,2021,23,9,16,0,1,9,0,10.19355,10.19355,.05,.05,0,0,0,0,0,0,1,0,1,6.1309948,0,26.26,49.31,-9,-9,3.333333333333333,1,1,0,0,9,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9798,11929,21289,-9,21288,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.48822,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9799,11930,21290,21292,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.2380791,8.6263952,0,9,-8,-99.831215,0,-9,-9,2021,21,9,35,20,1,9,0,11.975019,11.975019,.05,.05,0,0,0,0,0,0,1,1,0,1.1098833,0,25.02,64.34,51.41,56.15,3.333333333333333,1,1,0,0,11,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21291,-9,21290,21292,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0988,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21292,21290,-9,-9,1,1,49,1,2,0,1,1,-9,0,3,9.5852718,9.698245,0,9,8,-69.811401,0,3,2,2021,11,0,45,44,1,0,0,37.571777,37.571777,.05,.05,0,0,0,0,0,0,1,1,0,2.4537728,0,51.41,56.15,25.02,64.34,8.333333333333334,1,1,0,0,10,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21293,-9,21290,21292,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.40692,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.5282073,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9800,11931,21294,21295,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,8,-5,0,0,-9,-9,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,34.98,23.32,37.51,19.98,1.666666666666667,1,1,0,0,1,10,1,1,1187,1367666.4,-16884.668,768359.06,0,0,0,1191.9729 +9800,11931,21295,21294,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,8,5,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.51,19.98,34.98,23.32,0,1,1,0,0,0,10,1,1,1187,1367666.4,-16884.668,768359.06,0,0,0,1191.9729 +9800,11932,21296,-9,21294,21295,1,0,24,0,0,0,2,2,-9,0,3,8.1191626,8.2178745,0,0,0,-963.1983,0,2,2,2021,16,4,40,40,1,4,1,9.1342306,9.1342306,0,0,0,0,0,0,0,2,1,1,0,.69264668,0,34,57.6,-9,-9,3.333333333333333,1,1,0,0,4,10,4,1,3349,131635.69,0,0,0,0,0,2295.7466 +9801,11933,21297,21298,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.38131,7.3190904,29,1,-53.844749,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.841794,62.42,42.94,40.49,27.09,8.333333333333334,1,1,0,0,10,2,3,1,382,1131991,804243.63,237101.25,0,0,0,2518.9902 +9801,11933,21298,21297,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.1291356,7.6309819,29,-1,85.198769,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.8519092,7.3037238,40.49,27.09,62.42,42.94,6.666666666666667,1,1,0,0,10,2,3,1,382,1131991,804243.63,237101.25,0,0,0,2518.9902 +9801,11934,21299,-9,21298,21297,1,1,26,0,0,0,2,2,-9,0,3,8.2169571,7.8639326,0,0,0,-944.3631,0,3,2,2021,11,0,40,40,1,0,0,10.897799,10.897799,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,291,50729.938,0,0,0,39242.18,0,1616.9714 +9802,11935,21300,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1047688,8.3472023,6.4933157,0,0,-922.43268,0,-9,2,2021,6,0,38,38,1,0,0,11.14531,11.14531,0,0,0,0,0,0,0,0,0,0,0,2.3099823,6.6250424,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,11,12,4,1,682,262146.84,0,117614.36,8671.7744,250.18462,0,1569.1235 +9803,11936,21301,-9,21304,21302,1,0,17,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1125.3851,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.75,53.57,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21302,21304,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.6335773,8.6741095,0,12,3,-63.741215,0,-9,-9,2021,18,5,46,38,1,5,0,12.588821,12.588821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.59,53.52,47.49,55.02,8.333333333333334,1,1,0,0,13,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21303,-9,21304,21302,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.06464,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21304,21302,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8752894,7.8527818,0,12,-3,-27.525282,0,2,2,2021,9,0,30,30,1,0,0,10.075836,10.075836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,33.59,53.52,6.666666666666667,1,1,0,0,13,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9804,11937,21305,21306,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.904006,8.6547775,0,8,5,-21.504618,0,3,2,2021,11,0,40,30,1,0,0,14.273451,14.273451,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,62,47.26,54.23,44.07,6.666666666666667,1,1,0,0,10,2,5,1,521.5,178944.06,262366.25,80653.719,50486.281,3640.4985,2426.5405,5591.3018 +9804,11937,21306,21305,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.3102961,8.4194279,0,8,-5,12.621691,0,-9,-9,2021,9,0,46,46,1,0,0,14.806122,14.806122,0,0,0,0,0,0,0,7,0,0,0,7.5342975,0,54.23,44.07,62,47.26,6.666666666666667,1,1,0,0,8,2,5,1,521.5,178944.06,262366.25,80653.719,50486.281,3640.4985,2426.5405,5591.3018 +9804,11938,21307,-9,21306,21305,1,1,28,0,0,0,2,2,-9,0,4,7.9849243,8.1990347,0,0,0,-949.70892,0,1,2,2021,6,0,45,50,1,0,1,7.5567117,7.5567117,.05,.05,0,0,0,0,0,0,0,0,0,4.8973694,0,56.35,51,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,744,118857.8,0,95406.734,29967.813,1997.4132,0,1369.8212 +9805,11939,21308,21309,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,7.1193089,6.6413321,43,-2,-33.201153,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3507731,6.5139766,58,54,46.99,45.79,8.333333333333334,1,1,0,0,0,9,2,1,646,417052.44,24542.047,347780.47,0,0,0,806.9054 +9805,11939,21309,21308,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,-93.884987,0,3,3,2021,7,3,0,0,4,3,0,0,0,0,0,0,1,0,4.9926286,0,0,1,1,0,1.9293653,0,46.99,45.79,58,54,8.333333333333334,1,1,0,0,0,9,2,1,646,417052.44,24542.047,347780.47,0,0,0,806.9054 +9806,11940,21310,21311,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.0013294,9.0874863,0,7,0,-126.8063,0,-9,-9,2021,7,0,48,38,1,0,0,19.271967,19.271967,0,0,0,0,0,0,0,2,1,1,0,5.1346612,0,62.39,56.71,34.42,55.98,8.333333333333334,1,1,0,0,10,13,5,1,2276,866804.5,186245.5,579582.5,61160.859,0,0,6402.2529 +9806,11940,21311,21310,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.3400793,9.1778641,0,7,0,42.859848,0,3,3,2021,20,8,40,40,1,8,0,24.919641,24.919641,.05,.05,0,0,0,0,0,14.5,1,1,0,4.1991735,0,34.42,55.98,62.39,56.71,6.666666666666667,1,1,0,0,8,13,5,1,2276,866804.5,186245.5,579582.5,61160.859,0,0,6402.2529 +9806,11941,21312,-9,21310,21311,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.53,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.15441138,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,357,-230865.22,0,0,0,0,0,364.33032 +9807,11942,21313,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6699123,8.3237238,0,0,0,-1016.856,0,1,1,2021,11,0,36,43,1,0,0,19.202875,19.202875,0,0,0,0,0,0,0,0,0,0,0,3.9876311,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,1334,68959.344,55384.086,169119.33,0,0,0,805.73267 +9807,11943,21314,-9,-9,21313,1,1,23,0,0,0,1,1,-9,0,4,8.4392929,8.5526905,0,0,0,-1081.2706,0,-9,2,2021,12,0,42,37,1,0,1,10.438556,10.438556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.09,39.69,-9,-9,1.666666666666667,1,1,0,0,6,6,4,1,780,38874.379,0,0,0,0,0,2076.5801 +9808,11944,21315,21316,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.3495636,5.7727156,42,2,36.007717,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.408371,5.4389482,56.74,33.83,55.32,19.61,6.666666666666667,1,1,0,0,4,7,2,1,734,105540.39,89190.648,0,0,0,0,1056.0347 +9808,11944,21316,21315,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,42,-2,32.04364,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,17.647276,0,0,1,1,0,.029414404,0,55.32,19.61,56.74,33.83,6.666666666666667,1,1,0,0,0,7,2,1,734,105540.39,89190.648,0,0,0,0,1056.0347 +9809,11945,21317,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.7203865,8.8264866,0,0,0,-1148.5592,-9,2,-9,2021,8,0,47,0,1,0,0,13.589935,13.589935,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,10,5,0,557,92038.961,-81579.055,0,0,4141.728,2254.4656,1223.9773 +9810,11946,21318,21322,-9,-9,1,1,32,0,4,0,3,3,-9,0,3,0,0,0,7,2,-19.055614,0,2,2,2021,18,4,0,60,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,58.05,51.81,57.22,8.333333333333334,1,1,0,0,7,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21319,-9,21322,21318,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.9252,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21320,-9,21322,21318,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.6306,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21321,-9,21322,21318,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-852.51215,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21322,21318,-9,-9,1,0,30,0,4,0,2,2,-9,0,4,7.9538999,7.8104544,0,7,-2,-21.825758,0,-9,-9,2021,10,0,42,16,1,0,0,7.0672765,7.0672765,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,32.42,58.05,8.333333333333334,1,1,0,0,2,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21323,-9,21322,21318,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-933.28943,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9811,11947,21324,21325,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.542603,7.4744692,31,13,108.77705,0,3,3,2021,12,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.41613284,7.5997639,54.37,54.8,49.42,50.19,6.666666666666667,1,1,0,0,10,7,5,1,440.5,948868.94,244187.34,590997.38,0,0,0,2510.4028 +9811,11947,21325,21324,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6336699,8.7004795,0,33,-13,23.999022,0,2,2,2021,11,0,47,89,1,0,0,12.695098,12.695098,0,0,0,0,0,0,0,0,0,0,0,3.2793634,0,49.42,50.19,54.37,54.8,6.666666666666667,1,1,0,0,10,7,5,1,440.5,948868.94,244187.34,590997.38,0,0,0,2510.4028 +9811,11948,21326,-9,21325,21324,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.461,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0388451,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,496,-134707.72,0,0,0,0,0,-700.58594 +9812,11949,21327,21328,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.6555462,8.4969616,0,1,-3,21.106634,0,2,3,2021,19,7,37,38,1,7,0,21.514467,21.514467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,51,56,3.333333333333333,1,1,0,0,5,12,5,1,215,82204.953,17588.453,177865.31,76653.438,695.45001,0,4077.3906 +9812,11949,21328,21327,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.2921791,8.2315826,0,1,3,40.333599,-9,-9,-9,2021,10,0,40,0,1,1,0,13.396217,13.396217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,38.47,66.09,7,1,1,0,0,1,12,5,1,215,82204.953,17588.453,177865.31,76653.438,695.45001,0,4077.3906 +9813,11950,21329,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1023.0121,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.68,32.5,-9,-9,3.333333333333333,1,1,0,1,6,9,1,0,1468,253248.48,0,182944.14,117170.02,0,0,73.820847 +9813,11950,21330,-9,21329,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.2749,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,1468,253248.48,0,182944.14,117170.02,0,0,73.820847 +9814,11951,21331,-9,21334,-9,1,0,37,1,1,0,2,2,-9,1,1,0,0,0,0,0,-990.91425,0,3,2,2021,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,0,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11951,21332,-9,21331,-9,1,0,17,1,1,1,2,0,0,0,2,0,0,0,0,0,-882.38501,-9,2,-9,2021,24,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.77,42.9,-9,-9,3.333333333333333,2,3,0,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11951,21333,-9,21331,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.1711,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11952,21334,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,3,0,0,0,0,0,-905.50098,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,6,1,1,254,130261.83,0,0,0,0,0,1419.6134 +9815,11953,21335,21336,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,6.8787317,7.1487093,47,0,60.972095,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46083426,7.3205094,51.14,60.45,57.63,56.14,8.333333333333334,1,1,0,0,0,10,5,1,391.5,3497842.5,2239195,556722.75,115634.66,0,0,6088.3076 +9815,11953,21336,21335,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,8.4414225,9.1097279,8.6425886,47,0,134.46919,0,2,2,2021,6,0,7,10,1,0,0,74.865799,74.865799,0,0,0,0,0,0,0,0,1,1,0,8.1625357,8.9496794,57.63,56.14,51.14,60.45,8.333333333333334,1,1,0,0,9,10,5,1,391.5,3497842.5,2239195,556722.75,115634.66,0,0,6088.3076 +9816,11954,21337,21338,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5332651,8.3600636,4.5177135,6,2,25.121424,0,3,3,2021,10,0,44,45,1,0,0,13.442413,13.442413,.05,.05,0,0,0,0,0,0,0,0,0,5.8536687,5.5536423,50.51,42.98,37.51,58.26,10,1,1,0,0,7,5,5,1,429,639532.88,646348.88,130673.02,52662.148,0,0,2382.4404 +9816,11954,21338,21337,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4163065,7.048841,4.4788799,6,-2,-21.380241,0,3,3,2021,18,6,26,26,1,6,0,6.0378885,6.0378885,.05,.05,0,0,0,0,0,7,0,0,0,0,4.4965725,37.51,58.26,50.51,42.98,6.666666666666667,1,1,0,0,7,5,5,1,429,639532.88,646348.88,130673.02,52662.148,0,0,2382.4404 +9817,11955,21339,21342,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.969985,8.934062,0,20,1,50.807583,0,2,2,2021,9,0,45,50,1,0,0,26.869364,26.869364,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51.53,49.1,6.666666666666667,1,1,0,0,12,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21340,-9,21342,21339,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-931.185,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21341,-9,21342,21339,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.26886,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21342,21339,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.8384943,8.7061682,0,20,-1,-102.39475,0,1,1,2021,9,0,40,38,1,0,0,14.50319,14.50319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.53,49.1,52.23,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21343,-9,21342,21339,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1017.2436,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9818,11956,21344,21345,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,45,-4,0,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.74,16.46,42.64,31.78,3.333333333333333,1,1,0,0,0,12,1,0,622.5,-130235.8,0,0,0,0,0,2047.3695 +9818,11956,21345,21344,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,45,4,0,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,120,1,0,1,0,0,42.64,31.78,32.74,16.46,1.666666666666667,1,1,0,0,0,12,1,0,622.5,-130235.8,0,0,0,0,0,2047.3695 +9818,11957,21346,-9,21344,21345,1,1,37,0,0,0,1,1,-9,0,4,7.1246672,6.952795,0,0,0,-995.0448,0,2,2,2021,12,0,45,45,1,0,0,3.4577494,3.4577494,0,0,0,0,0,0,0,0,1,0,1,1.0977693,0,48.81,59.91,-9,-9,5,1,1,0,0,12,12,3,0,293,-77479.328,0,0,0,0,0,421.17993 +9819,11958,21347,21348,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.0507803,8.9363518,0,5,4,-56.362869,0,3,3,2021,6,0,65,70,1,0,0,18.641558,18.641558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,52,53,8.333333333333334,1,1,0,0,7,4,5,1,725,1192898.1,1017963.3,276897.06,58920.254,10959.207,0,5592.5732 +9819,11958,21348,21347,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.5312157,8.4744148,0,5,-4,-32.918446,-9,-9,-9,2021,10,0,37,0,1,1,0,20.029964,20.029964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,53,54.1,59.11,8,4,1,0,0,1,4,5,1,725,1192898.1,1017963.3,276897.06,58920.254,10959.207,0,5592.5732 +9820,11959,21349,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.403223,6.0088186,0,0,-1086.8414,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9625382,62,28.5,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1232,161705.97,10664.745,102056.43,0,0,0,1158.9757 +9821,11960,21350,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3092356,7.8737388,0,0,0,-1052.5176,0,2,3,2021,15,3,41,45,1,3,0,9.7419786,9.7419786,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.58,60.95,-9,-9,6.666666666666667,1,1,0,1,11,9,4,1,1058,-78189.406,-47562.652,0,0,0,0,1932.0151 +9822,11961,21351,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.5617228,7.519558,0,0,0,-1095.2937,0,2,-9,2021,11,0,40,8,1,2,0,5.8590541,5.8590541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,3,8,3,0,860,347710.25,68965.031,236232.7,3335.8823,0,0,893.26556 +9822,11962,21352,-9,21351,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8886652,8.7590485,0,0,0,-910.1048,0,3,-9,2021,10,0,40,40,1,1,1,17.111994,17.111994,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,6,8,5,0,363,-77210.773,0,0,0,0,0,2610.0098 +9823,11963,21353,21354,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.1767216,9.0037861,0,1,-2,-15.170815,-9,-9,-9,2021,10,0,50,0,1,1,0,20.741112,20.741112,.05,.05,0,0,0,0,0,0,0,0,0,7.1047482,0,49,57,48.77,60.16,7,4,1,0,0,1,8,5,0,1067,188500.8,45863.559,404544.5,287419.44,0,0,8488.6572 +9823,11963,21354,21353,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.662262,8.9375906,0,1,2,-66.495041,0,-9,-9,2021,10,0,50,40,1,0,0,28.05788,28.05788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49,57,8.333333333333334,1,1,0,0,4,8,5,0,1067,188500.8,45863.559,404544.5,287419.44,0,0,8488.6572 +9824,11964,21355,21356,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.5576973,8.4301538,0,7,-2,-72.621468,0,2,2,2021,9,0,47,52,1,0,0,15.864674,15.864674,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,8,9,5,1,505.5,831745.31,383044.34,539896.25,230082.8,4821.3657,0,3915.4146 +9824,11964,21356,21355,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5094271,8.7026815,0,7,2,91.063927,0,-9,-9,2021,9,0,40,40,1,1,0,15.225166,15.225166,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,9,5,1,505.5,831745.31,383044.34,539896.25,230082.8,4821.3657,0,3915.4146 +9825,11965,21357,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.5139918,5.8562646,0,0,-950.1062,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.161078,79.705009,134.60069,0,1,1,0,0,5.6747522,53,44,-9,-9,8,3,4,0,0,0,12,2,1,1568,194975.78,65625.477,71831.539,0,0,0,416.01953 +9825,11966,21358,-9,21357,-9,1,1,45,0,0,0,2,2,-9,0,3,7.5452805,7.6172237,0,0,0,-1054.8145,0,2,2,2021,8,0,38,38,1,0,0,6.5445113,6.5445113,0,0,.05,0,0,0,0,88,1,1,0,0,0,52,54.51,-9,-9,10,3,4,0,0,9,12,3,1,2174,257100.03,110246.78,357490.44,75466.789,0,0,1146.6465 +9826,11967,21359,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,5.8675337,5.8168893,0,0,-1031.1733,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,2.0825582,0,0,1,1,0,0,5.9152551,51.39,21.21,-9,-9,0,1,1,0,0,0,5,2,1,1291,475431.78,208921.77,0,0,0,0,197.18869 +9827,11968,21360,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-894.80078,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0224066,0,0,1,1,0,0,0,55.56,46,-9,-9,10,1,1,0,0,0,11,1,1,534,-135536.88,0,0,0,0,0,780.10083 +9828,11969,21361,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8233256,7.7855911,0,0,0,-1106.92,0,2,3,2021,6,0,35,36,1,0,0,7.9360499,7.9360499,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.76,44.76,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,1120,201506.92,108016.35,104395.28,83361.867,0,0,2017.889 +9829,11970,21362,21364,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,9.5596762,9.5299511,0,17,-1,86.387749,0,3,3,2021,18,6,20,20,1,6,0,81.704071,81.704071,.05,.05,0,0,0,0,0,0,1,0,1,0,0,27.89,56.24,46.16,58.62,5,2,3,0,0,8,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21363,-9,21362,21364,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-962.54272,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,2,3,-9,0,0,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21364,21362,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,8.509057,8.7501965,0,17,1,-35.921642,0,3,3,2021,10,0,8,8,1,0,0,84.191223,84.191223,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.16,58.62,27.89,56.24,6.666666666666667,2,3,0,0,15,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21365,-9,21362,21364,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1124.7672,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9830,11971,21366,21367,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,18,-5,-17.538828,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,34.44,60.12,54.8,10,4,2,0,0,8,9,5,0,400.5,2899334.5,1552605.3,617688.25,0,0,0,3371.9802 +9830,11971,21367,21366,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.1282568,9.3817949,0,12,5,33.299557,0,-9,-9,2021,11,1,50,51,1,1,0,20.39538,20.39538,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,65.95,34.44,8.333333333333334,1,1,0,0,8,9,5,0,400.5,2899334.5,1552605.3,617688.25,0,0,0,3371.9802 +9831,11972,21368,21369,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8976564,8.7779608,0,17,3,19.097738,0,1,1,2021,8,0,50,50,1,0,0,15.720004,15.720004,.05,.05,0,0,0,0,.31323841,2,0,0,0,4.2608442,0,54.37,54.8,41.31,59.79,8.333333333333334,4,2,0,0,8,9,5,0,840.5,607804.44,382421.19,155153.88,34937.32,0,0,2531.5161 +9831,11972,21369,21368,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,0,0,0,8,-3,47.813004,0,-9,-9,2021,12,1,0,34,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.681713,0,41.31,59.79,54.37,54.8,5,4,2,1,0,9,9,5,0,840.5,607804.44,382421.19,155153.88,34937.32,0,0,2531.5161 +9832,11973,21370,21371,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6089706,6.5651569,8,3,-34.287285,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,124.27734,0,0,1,1,0,6.6833129,6.5818133,53,46,51,46,7,1,1,0,0,0,13,2,1,394,477649.97,247217.69,185118.41,0,0,1274.7594,1397.1049 +9832,11973,21371,21370,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-3,46.595936,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,13,2,1,394,477649.97,247217.69,185118.41,0,0,1274.7594,1397.1049 +9833,11974,21372,-9,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,7.5914602,7.9707642,6.2435675,0,0,-882.72937,-9,-9,-9,2021,11,0,27,0,1,2,0,10.435346,10.435346,0,0,0,0,0,0,0,0,1,1,0,6.4096589,0,47,58,-9,-9,7,1,1,0,1,8,2,3,0,988.5,-83939.031,0,0,0,0,1959.5194,898.40698 +9833,11974,21373,-9,21372,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.06775,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,0,988.5,-83939.031,0,0,0,0,1959.5194,898.40698 +9834,11975,21374,21375,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,.2409467,5.8347001,5.3593278,46,-4,23.96711,0,3,3,2021,8,0,10,25,1,0,0,.0017682099,.0017682099,0,0,0,0,0,0,0,2,1,1,0,6.1760387,4.9808631,56.52,48.31,49.86,55.31,8.333333333333334,1,1,0,0,9,9,2,1,277,268051,0,308741.75,0,1423.9138,0,1452.5565 +9834,11975,21375,21374,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,.024403276,6.4651775,6.5256262,46,4,70.294205,0,3,3,2021,10,0,20,25,1,0,0,.00089861522,.00089861522,0,0,0,0,0,0,0,2,1,1,0,7.003716,6.5445862,49.86,55.31,56.52,48.31,8.333333333333334,1,1,0,0,9,9,2,1,277,268051,0,308741.75,0,1423.9138,0,1452.5565 +9835,11976,21376,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,9.2747259,8.7873011,0,0,0,-1007.2862,0,-9,-9,2021,10,1,36,37,1,1,0,22.512735,22.512735,0,0,0,0,0,0,0,0,0,0,0,4.9529572,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,356,53976.035,0,0,0,0,0,2427.9275 +9836,11977,21377,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.522,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41.81,36.58,-9,-9,5,1,1,1,0,0,12,1,0,170,0,0,0,0,0,0,701.36951 +9837,11978,21378,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,7.1344557,7.9587288,7.1726546,0,0,-892.37201,0,2,3,2021,17,6,16,16,1,6,0,7.6495953,7.6495953,.05,.05,0,0,0,0,0,0,1,0,1,0,7.3560863,33.46,45.88,-9,-9,3.333333333333333,1,1,0,0,6,9,4,1,1161,129945.34,-115231.27,0,0,0,0,2419.6829 +9838,11979,21379,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,7.7943401,7.8623419,0,0,-967.99213,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,14.412288,0,0,1,1,0,0,7.7660699,40.71,29.78,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1168,672398.5,345321.34,166402.19,0,0,0,1438.4651 +9839,11980,21380,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,8.5478678,8.308692,0,0,-980.66266,0,3,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.2920322,73.83,14.77,-9,-9,10,1,1,0,0,0,13,4,1,1008,487366.38,85117.039,230753.08,0,0,2103.9404,2833.3699 +9840,11981,21381,21384,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,4.5184546,4.3426123,0,7,-12,89.95163,0,-9,-9,2021,15,3,28,25,1,3,0,.36310709,.36310709,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.24,41.22,40.07,54.57,8.333333333333334,1,1,0,0,8,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21382,-9,21381,21384,1,1,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1168.1663,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,6.666666666666667,1,1,0,0,11,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21383,-9,21381,21384,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.3729,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21384,21381,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.9523144,8.9438334,0,7,12,-18.740631,0,2,-9,2021,12,1,60,60,1,1,0,11.021698,11.021698,.05,.05,0,0,0,0,0,0,1,1,0,3.7832665,0,40.07,54.57,42.24,41.22,6.666666666666667,1,1,0,0,11,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21385,-9,21381,21384,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-991.28845,-9,2,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.23,58.28,-9,-9,6.666666666666667,1,1,0,0,0,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9841,11982,21386,21387,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,22,-2,-85.123924,0,2,2,2021,6,0,0,8,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.211586,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,1260,1777310.3,729649.75,639296.81,0,0,0,7154.7666 +9841,11982,21387,21386,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1111403,8.4601049,22,2,52.354546,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9628196,8.1098499,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,7,3,1,1260,1777310.3,729649.75,639296.81,0,0,0,7154.7666 +9842,11983,21388,21389,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.5484996,5.5249338,10,4,-12.712233,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8966284,5.5465035,57.99,43.47,50.42,41.42,8.333333333333334,1,1,0,0,9,8,2,1,551,271402.25,138784.47,160922.78,0,0,0,1789.8694 +9842,11983,21389,21388,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6204395,6.5081162,10,-4,-74.689735,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.424294,50.42,41.42,57.99,43.47,3.333333333333333,1,1,0,0,9,8,2,1,551,271402.25,138784.47,160922.78,0,0,0,1789.8694 +9843,11984,21390,21391,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,6.2491007,6.0846405,38,-13,20.482941,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.3407414,6.0889678,36.53,14.85,34.73,25.09,0,1,1,0,0,0,10,2,0,1133.5,62935.898,0,0,0,0,0,2606.5735 +9843,11984,21391,21390,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.0492215,4.7670412,38,13,-44.294395,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,5.5674047,0,120,1,1,0,0,4.5424881,34.73,25.09,36.53,14.85,5,1,1,0,0,0,10,2,0,1133.5,62935.898,0,0,0,0,0,2606.5735 +9843,11985,21392,-9,21391,21390,1,1,34,0,0,0,2,2,-9,1,2,7.0499725,7.4441915,0,0,0,-995.9989,0,3,2,2021,17,5,36,34,1,5,0,4.5184689,4.5184689,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.53,37.66,-9,-9,1.666666666666667,1,1,0,0,7,10,3,0,1278,201005.88,0,0,0,0,0,519.10333 +9844,11986,21393,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1017.6635,0,-9,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.4,23.46,-9,-9,3.333333333333333,1,1,0,1,0,10,1,0,251,-135787.39,0,0,0,0,0,1727.9928 +9845,11987,21394,21395,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.7761259,8.1170015,49,-2,-79.953026,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9686661,68.34,16.31,47.16,55.83,8.333333333333334,1,1,0,0,0,9,3,1,2447,1624402.4,1084587.8,369707.34,0,5217.3423,0,1595.0028 +9845,11987,21395,21394,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.1544099,4.4559708,49,2,68.120857,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9970899,4.0118222,47.16,55.83,68.34,16.31,5,1,1,0,0,3,9,3,1,2447,1624402.4,1084587.8,369707.34,0,5217.3423,0,1595.0028 +9845,11988,21396,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,7.7595701,7.7648067,0,0,-1023.6628,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5797682,7.6544247,57.75,12.77,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,1069,-113721.04,0,0,0,0,0,1760.8074 +9845,11989,21397,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7642851,7.390305,0,0,0,-1038.0372,0,-9,-9,2021,8,0,21,43,1,0,0,12.271879,12.271879,0,0,0,0,0,0,0,0,1,1,0,0,0,51.35,42.57,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,512,-236033.56,0,0,0,0,1031.514,623.38562 +9846,11990,21398,21400,-9,-9,1,1,55,0,3,0,1,1,-9,0,5,9.2562323,9.4700174,0,33,2,-39.031975,0,2,3,2021,8,0,40,48,1,0,0,38.922546,38.922546,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21399,-9,21400,21398,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-973.43982,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21400,21398,-9,-9,1,0,53,0,3,0,1,1,-9,0,4,8.4738159,8.5223122,0,33,-2,-12.986938,0,2,3,2021,14,3,40,24,1,3,0,10.897214,10.897214,0,0,0,0,0,0,0,0,0,0,0,3.3375134,0,45.91,59.89,54.1,59.11,6.666666666666667,1,1,0,0,8,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21401,-9,21400,21398,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-978.65948,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21402,-9,21400,21398,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3734,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9847,11991,21403,21405,-9,-9,1,1,56,0,1,0,3,3,-9,1,1,0,0,0,27,5,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,25.76,29.19,28.59,1.666666666666667,1,1,0,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9847,11991,21404,-9,21405,21403,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.9385,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9847,11991,21405,21403,-9,-9,1,0,51,0,1,0,2,2,-9,1,1,0,0,0,27,-5,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,28.59,24.39,25.76,6.666666666666667,1,1,0,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9848,11992,21406,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,9.1372137,8.9805622,0,0,0,-1084.9406,0,2,2,2021,8,0,45,47,1,0,0,23.044773,23.044773,.05,.05,0,0,0,0,0,0,1,1,0,5.0382509,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,214,-114295.5,71387.813,0,0,0,0,2451.6919 +9849,11993,21407,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5654,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,21.72,-9,-9,10,1,1,0,0,0,9,1,1,5004,203985.73,0,0,0,0,0,1281.2948 +9850,11994,21408,21409,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,58,-4,34.432201,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,61.83,44.42,8.333333333333334,1,1,0,0,0,10,2,1,351.5,276388.84,167163.64,249332.59,0,0,0,1737.677 +9850,11994,21409,21408,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.645751,6.7022977,57,4,92.946831,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6765108,61.83,44.42,59.07,43.05,5,1,1,0,0,0,10,2,1,351.5,276388.84,167163.64,249332.59,0,0,0,1737.677 +9851,11995,21410,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1100.8896,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,5,1,1,0,0,10,5,2,1,310,-199114.31,0,0,0,0,0,400.01047 +9852,11996,21411,-9,21413,21412,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.17578,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11996,21412,21413,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,7.9221768,7.9942589,0,2,2,41.838966,0,3,3,2021,12,0,30,27,1,0,0,9.816391,9.816391,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.12,37.78,33.85,40.08,3.333333333333333,4,5,0,0,7,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11996,21413,21412,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,2,-2,91.970482,-9,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,33.85,40.08,41.12,37.78,5,1,1,0,0,0,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11997,21414,-9,21413,21412,1,1,20,0,1,0,2,2,-9,0,4,5.9592204,6.015183,0,0,0,-982.90576,0,2,3,2021,9,2,16,0,1,2,1,3.2832377,3.2832377,0,0,0,0,0,0,0,0,1,0,1,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,888,-49022.82,0,0,0,0,0,875.37946 +9852,11998,21415,-9,21413,21412,1,1,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-924.4812,-9,2,3,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,588,139097.55,0,0,0,0,0,-505.57324 +9853,11999,21416,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.636796,7.7763157,5.9518971,0,0,-867.59027,0,2,2,2021,10,1,40,30,1,1,0,5.4829216,5.4829216,.05,.05,0,0,0,0,0,0,1,1,0,5.5353518,0,31.23,62.65,-9,-9,5,1,1,0,0,13,10,3,1,645,227948.31,-9242.04,179593.56,0,0,0,2378.6558 +9854,12000,21417,21418,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7154627,7.8911772,7,2,17.519976,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6801667,7.4542999,49.7,45.87,51,48,8.333333333333334,1,1,0,0,2,9,5,1,964,2769631,1803718.8,781726.25,0,0,0,4154.8887 +9854,12000,21418,21417,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.0745602,9.0598211,.63421112,7,-2,20.715136,0,-9,-9,2021,10,0,40,40,1,1,0,25.381981,25.381981,0,0,0,0,0,0,0,0,1,1,0,4.2691584,1.1840456,51,48,49.7,45.87,7,1,1,0,0,1,9,5,1,964,2769631,1803718.8,781726.25,0,0,0,4154.8887 +9855,12001,21419,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.8180218,6.4742846,0,0,-1059.7961,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5497179,6.6579118,55,45,-9,-9,8,1,1,0,0,0,13,2,1,544,405292.5,131959.56,322581.41,0,0,0,970.05792 +9856,12002,21420,21421,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,41,1,77.868919,0,2,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2243571,0,46.22,34.7,54.96,53.17,8.333333333333334,1,1,0,0,0,7,5,1,1054.5,1685929.8,877912.38,646526.38,0,0,0,4189.8164 +9856,12002,21421,21420,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.9492979,9.2915859,6.7226362,41,-1,34.803539,0,3,3,2021,6,0,37,40,1,0,0,30.979103,30.979103,0,0,0,0,0,0,0,2,1,1,0,4.7652907,6.5289469,54.96,53.17,46.22,34.7,10,1,1,0,0,9,7,5,1,1054.5,1685929.8,877912.38,646526.38,0,0,0,4189.8164 +9857,12003,21422,21423,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,30,3,0,0,-9,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.15,28.42,36.03,40.6,8.333333333333334,1,1,0,0,0,7,1,0,580.5,104279.38,-17957.078,0,0,0,0,1823.5859 +9857,12003,21423,21422,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,30,-3,0,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.03,40.6,53.15,28.42,5,1,1,0,0,0,7,1,0,580.5,104279.38,-17957.078,0,0,0,0,1823.5859 +9858,12004,21424,-9,21426,-9,1,0,25,0,1,0,2,2,0,0,3,0,0,0,0,0,-1138.5282,-9,2,1,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,114,170065.09,0,0,0,0,0,286.38367 +9858,12005,21425,21426,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.1310577,8.035696,0,5,2,70.399963,0,-9,-9,2021,9,1,40,40,1,1,0,10.083346,10.083346,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9858,12005,21426,21425,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,7.7831874,8.0243397,6.6516552,5,-2,-66.534775,0,2,2,2021,7,0,30,34,1,0,0,7.9438586,7.9438586,.05,.05,0,0,0,0,0,0,1,1,0,6.9822273,0,54.2,57.49,47.49,55.02,8.333333333333334,1,1,0,0,12,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9858,12005,21427,-9,21426,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-944.95752,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9859,12006,21428,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.7294087,7.4364958,0,0,-1042.2942,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,3.1547086,7.7065105,52.36,37.07,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,498,389949.69,111934.44,307250.94,110414.45,0,0,962.82288 +9860,12007,21429,21430,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,9.6249018,9.6304884,0,4,-4,36.527927,0,-9,-9,2021,8,0,60,48,1,0,0,28.841339,28.841339,0,0,0,0,0,0,0,0,0,0,0,6.7385306,0,62.39,56.71,41.36,45.21,10,1,1,0,0,10,6,5,1,599.5,2766400.3,675185.19,1483942.6,0,0,0,10424.902 +9860,12007,21430,21429,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4745789,8.6794319,0,4,4,-61.37672,0,2,2,2021,12,0,43,24,1,0,0,13.841479,13.841479,0,0,.05,0,0,0,0,0,0,0,0,4.9374499,0,41.36,45.21,62.39,56.71,6.666666666666667,1,1,0,0,8,6,5,1,599.5,2766400.3,675185.19,1483942.6,0,0,0,10424.902 +9861,12008,21431,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.2790556,8.7082148,5.4002566,0,0,-805.0968,0,-9,-9,2021,14,3,37,38,1,3,0,15.954167,15.954167,0,0,0,0,0,0,0,0,0,0,0,5.9725823,0,34.65,58.34,-9,-9,5,1,1,0,0,4,7,5,0,118,-20674.701,0,0,0,0,0,2840.5313 +9862,12009,21432,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,5.3699503,5.2180843,0,0,-996.24603,0,1,3,2021,11,0,0,41,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7606368,5.0554261,38.66,21.8,-9,-9,5,1,1,0,0,12,12,2,1,103,289961.19,168924.02,0,0,0,1000.6738,1245.4552 +9863,12010,21433,21434,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0196686,7.9020224,0,42,2,-103.32704,0,3,2,2021,10,0,37,60,1,1,0,11.880644,11.880644,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,44.47,27.14,7,1,1,0,0,1,11,3,1,589.5,738578.44,582070.44,152447.59,0,0,0,1431.3535 +9863,12010,21434,21433,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,4.3469734,4.0865273,42,-2,35.177704,0,3,2,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4562883,44.47,27.14,52,47,8.333333333333334,1,1,0,0,0,11,3,1,589.5,738578.44,582070.44,152447.59,0,0,0,1431.3535 +9864,12011,21435,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-910.5589,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,-9,-9,0,1,1,0,0,0,11,1,0,5786,102462.25,0,0,0,4228.958,0,1407.6576 +9865,12012,21436,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,5.4539456,5.7577481,0,0,-965.01727,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3550625,5.4181862,40.48,42.43,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1181,335358.63,29879.27,226629.73,0,0,0,630.40491 +9866,12013,21437,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.98419,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.15,21.68,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,755,50952.164,0,0,0,0,0,758.49463 +9867,12014,21438,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6207123,6.702745,0,0,-859.87585,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8136044,6.346981,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,507,335868.22,135471.64,348926.75,0,0,0,963.13263 +9868,12015,21439,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.790801,9.8590956,8.2532578,0,0,-1074.4327,0,2,2,2021,11,1,19,27,1,1,0,103.894,103.894,.05,.05,0,0,0,0,0,0,0,0,0,3.4506006,8.7456532,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,10,10,5,1,77,552302.63,208062.38,340959.53,176993.17,0,0,8057.0605 +9869,12016,21440,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2479267,8.6753702,7.5836296,0,0,-1061.3865,0,2,2,2021,12,0,39,37,1,0,0,11.403277,11.403277,0,0,0,0,0,0,0,0,1,1,0,7.0447826,0,35.19,63.37,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,1267,1287746,850554.75,235642.92,-12748.038,0,0,2779.2256 +9869,12017,21441,-9,21440,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1014.2736,-9,1,-9,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,5,1,1,0,0,1,10,1,1,261,77150.766,0,0,0,0,0,0 +9869,12018,21442,-9,21440,-9,1,1,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-1025.9908,-9,1,-9,2021,29,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.02,61.67,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,334,51604.531,0,0,0,0,0,0 +9870,12019,21443,21444,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.3213606,8.2061501,0,7,0,23.184454,0,-9,-9,2021,10,0,40,30,1,1,0,13.22336,13.22336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,48.53,58.91,7,2,3,0,0,1,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21444,21443,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.0110922,7.0951648,0,16,0,53.5355,0,3,2,2021,11,0,17,6,1,0,0,8.1880569,8.1880569,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,50,57,8.333333333333334,2,3,0,0,3,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21445,-9,21444,21443,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.5188,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21446,-9,21444,21443,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.38397,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9871,12020,21447,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.0387583,5.1161532,0,0,-1029.2788,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.25061917,0,0,1,1,0,5.6393394,4.9554052,50.12,49.78,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,133,-101421.13,0,0,0,0,0,1434.9247 +9872,12021,21448,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.4206514,7.1605601,0,6,-6,-3.5399232,0,2,2,2021,8,0,64,35,1,0,0,2.0211651,2.0211651,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,43.76,55.68,8.333333333333334,1,1,0,0,9,2,4,0,2467,91700.195,-73501.266,0,0,0,0,1575.7411 +9872,12022,21449,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.2191315,8.4819365,6,6,-56.034016,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3445344,8.1907167,43.76,55.68,51.83,57.2,8.333333333333334,1,1,0,0,0,2,4,0,292,182172.55,70133.094,163497.17,0,0,0,3308.4275 +9873,12023,21450,21451,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.266675,8.2680206,0,15,10,-62.203217,0,2,2,2021,10,0,49,37,1,0,0,10.033751,10.033751,0,0,0,0,0,0,0,0,1,1,0,0,0,36.52,48.47,33.72,60.21,6.666666666666667,2,3,0,1,6,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21451,21450,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,0,0,0,6,-10,-133.33443,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.72,60.21,36.52,48.47,6.666666666666667,2,3,0,1,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21452,-9,21451,21450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8716,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21453,-9,21451,21450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.62122,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9874,12024,21454,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2439051,8.2638416,3.668057,0,0,-1077.345,0,3,3,2021,15,4,30,30,1,4,0,12.910105,12.910105,.05,.05,0,0,0,0,0,0,0,0,0,0,3.6624038,48.53,58.91,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,110,-1664.9841,30860.254,0,0,0,0,1352.2524 +9875,12025,21455,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.4541,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,48,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,1697,511801.53,0,271344,0,0,2403.2893,252.14978 +9876,12026,21456,21457,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,9.1151934,8.8972321,48,2,20.053429,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.0349426,9.3043652,59.04,54.12,48.69,48.96,10,1,1,0,0,0,7,5,1,490,1917107,926572.25,732683.63,0,0,0,7081.1338 +9876,12026,21457,21456,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.2317834,5.8100357,48,-2,23.457767,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,2,1,1,0,8.0399542,6.2526898,48.69,48.96,59.04,54.12,10,1,1,0,0,0,7,5,1,490,1917107,926572.25,732683.63,0,0,0,7081.1338 +9877,12027,21458,21459,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,38,0,-92.943207,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.29,42.88,45.53,8.333333333333334,1,1,0,0,5,6,3,0,1981,1065479.3,531932.13,467078,99743.953,0,5032.0205,-19.809052 +9877,12027,21459,21458,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.1686468,8.4182196,0,38,0,-39.75449,0,3,1,2021,11,1,50,65,1,1,0,9.2099018,9.2099018,0,0,0,0,0,0,0,0,0,0,0,6.45505,0,42.88,45.53,54.34,53.29,5,1,1,0,0,9,6,3,0,1981,1065479.3,531932.13,467078,99743.953,0,5032.0205,-19.809052 +9878,12028,21460,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,1,8.671833,8.3736019,0,0,0,-984.81128,0,2,2,2021,14,3,35,35,1,3,0,21.907812,21.907812,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,49.27,19.94,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,1040,924888.56,655491.31,363183.88,0,0,0,2195.4229 +9879,12029,21461,-9,-9,-9,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1078.8555,-9,-9,-9,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.79,68.68000000000001,-9,-9,3.333333333333333,1,1,0,0,5,11,1,0,725,132700.67,0,0,0,0,0,0 +9880,12030,21462,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.05658,0,3,2,2021,10,2,0,35,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,1,1,9,8,1,1,142,0,0,0,0,0,0,263.15683 +9880,12031,21463,-9,21462,-9,1,0,19,0,0,0,2,2,1,0,4,8.7707825,8.348567,0,0,0,-1061.7377,-9,2,-9,2021,11,0,25,0,1,2,1,19.119383,19.119383,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,5,1,1610,77634.734,0,0,0,0,0,2399.9475 +9881,12032,21464,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1066.5834,0,3,2,2021,23,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,30.32,17.53,-9,-9,5,1,1,0,0,0,7,2,0,1034,-51797.141,-7544.8379,0,0,7747.0054,0,2947.2307 +9882,12033,21465,21466,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.4336224,8.469697,0,26,-2,61.079678,-9,3,3,2021,10,1,60,0,1,1,0,7.09517,7.09517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.9,45.74,42.13,56.25,5,1,1,0,0,12,12,4,1,1520.5,548123.63,459063.44,143075.91,0,0,0,2068.2744 +9882,12033,21466,21465,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5244575,7.5829039,0,25,2,16.342215,0,3,3,2021,11,1,22,22,1,1,0,10.538699,10.538699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.13,56.25,58.9,45.74,8.333333333333334,1,1,0,0,12,12,4,1,1520.5,548123.63,459063.44,143075.91,0,0,0,2068.2744 +9882,12034,21467,-9,21466,21465,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-981.99988,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.52,57.75,-9,-9,6.666666666666667,1,1,0,1,2,12,2,1,150,38417.758,0,0,0,0,0,363.10587 +9883,12035,21468,21469,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.8910122,9.2249231,0,3,-8,-56.087776,0,-9,-9,2021,8,1,45,42,1,1,0,19.199867,19.199867,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,24.37,28.12,8.333333333333334,4,2,0,0,8,8,4,0,316.5,124901.73,128313.78,266572.75,191728.69,0,0,2929.3525 +9883,12035,21469,21468,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,0,0,0,3,8,24.12401,0,3,-9,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.37,28.12,49.04,55.86,3.333333333333333,1,1,1,1,10,8,4,0,316.5,124901.73,128313.78,266572.75,191728.69,0,0,2929.3525 +9884,12036,21470,-9,21472,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-843.23273,1,2,1,2021,8,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,56.08,-9,-9,5,1,1,0,0,4,11,1,0,306,0,0,0,0,0,0,-398.85751 +9884,12037,21471,-9,21472,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.6023,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,1577,-14448.498,0,0,0,0,0,1194.9434 +9884,12038,21472,21473,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,4,-6,0,0,2,-9,2021,15,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,56.54,57.33,53.46,3.333333333333333,1,1,1,1,5,11,1,0,2230.5,-37116.531,0,155821.97,28519.377,7812.9038,0,893.74097 +9884,12038,21473,21472,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,4,6,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.33,56.54,6.666666666666667,1,1,1,0,3,11,1,0,2230.5,-37116.531,0,155821.97,28519.377,7812.9038,0,893.74097 +9885,12039,21474,21475,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.7474079,8.7606602,0,6,3,-67.382683,0,-9,-9,2021,10,0,44,44,1,0,0,16.283636,16.283636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.9,42.63,41.38,44.64,6.666666666666667,1,1,0,0,14,1,5,0,376.5,5825.8994,82524.148,188110,96488.758,0,0,3576.0313 +9885,12039,21475,21474,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.1522026,8.1614199,0,6,-3,10.606523,0,-9,-9,2021,10,0,38,-9,1,2,0,11.64434,11.64434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.38,44.64,53.9,42.63,1.666666666666667,1,1,0,0,12,1,5,0,376.5,5825.8994,82524.148,188110,96488.758,0,0,3576.0313 +9886,12040,21476,21478,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.4903784,9.2660646,0,12,0,23.300209,0,2,1,2021,9,0,40,42,1,1,0,26.964048,26.964048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,56,32.95,64.54000000000001,7,1,1,0,0,1,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21477,-9,21478,21476,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6769,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21478,21476,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.6940627,7.8081117,0,12,0,128.50287,0,2,2,2021,12,0,21,21,1,0,0,14.619122,14.619122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,52,56,6.666666666666667,1,1,0,0,9,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21479,-9,21478,21476,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.104,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9887,12041,21480,21482,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.4426665,7.2825532,0,1,0,14.012604,-9,1,1,2021,7,0,30,0,1,0,0,5.2997608,5.2997608,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.06,37.15,8.333333333333334,1,1,0,1,10,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21481,-9,21482,21480,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.9143,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21482,21480,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,6.8311992,7.0293822,0,1,9,51.317142,-9,2,3,2021,16,5,20,0,1,5,0,6.225688,6.225688,0,0,0,0,0,0,0,0,1,1,0,6.2032633,0,43.06,37.15,51.24,58.84,5,1,1,0,1,11,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21483,-9,21482,21480,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.27728,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9888,12042,21484,21487,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,20,-13,72.162193,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9440188,0,35.61,59.41,57.33,53.46,10,1,1,0,0,8,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21485,-9,21484,21487,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.08038,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21486,-9,21484,21487,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1111.0549,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21487,21484,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.3444414,9.5838261,0,20,13,-4.3019423,0,2,2,2021,8,0,55,40,1,0,0,28.41099,28.41099,.05,.05,0,0,0,0,0,0,1,1,0,8.6543751,0,57.33,53.46,35.61,59.41,8.333333333333334,1,1,0,0,8,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9889,12043,21488,21489,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7111511,8.8744602,5,0,6.1113191,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,0,8.9179554,44.24,59.44,51.24,58.84,8.333333333333334,1,1,0,0,3,12,5,1,436,2794533,1685881.5,430207.75,0,0,0,3752.7153 +9889,12043,21489,21488,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.5471435,6.1658001,5,0,22.61005,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2349696,6.1903186,51.24,58.84,44.24,59.44,8.333333333333334,1,1,0,0,0,12,5,1,436,2794533,1685881.5,430207.75,0,0,0,3752.7153 +9889,12044,21490,-9,21489,21488,1,0,28,0,0,0,1,1,-9,0,4,8.3875523,8.3245497,0,0,0,-987.49927,0,2,1,2021,12,0,46,43,1,0,0,12.210476,12.210476,.05,.05,0,0,0,0,0,0,0,0,0,2.7365036,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,619,110197.18,26047.568,0,0,0,0,2540.8872 +9889,12045,21491,-9,21489,21488,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.77979,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,12,1,1,573,-20284.93,0,0,0,0,0,0 +9890,12046,21492,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.3037634,7.2071977,0,0,-1043.4703,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60326338,7.4636869,60.12,54.8,-9,-9,10,1,1,0,0,5,12,3,1,563,308442.72,260928.19,128534.8,0,0,0,1494.048 +9891,12047,21493,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.7018414,7.7752042,5.4133644,0,0,-984.84198,0,3,3,2021,11,0,50,50,1,2,0,5.0733724,5.0733724,.05,.05,0,0,0,0,0,0,0,0,0,6.9708967,5.3483219,49,48,-9,-9,7,1,1,0,0,7,8,3,1,1551,285094.59,205470.7,340605.44,0,0,0,1945.0261 +9891,12048,21494,-9,21493,-9,1,0,24,0,0,0,1,1,1,0,4,7.8281307,7.8953776,0,0,0,-985.66638,-9,1,-9,2021,11,0,45,0,1,2,1,7.2884998,7.2884998,0,0,0,0,0,0,0,0,0,0,0,1.5624596,0,47,58,-9,-9,7,1,1,0,0,6,8,4,1,1501,114481.13,0,0,0,14424.578,0,1050.4945 +9892,12049,21495,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3378987,7.3939128,0,0,-941.97205,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9787812,7.1893106,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,6252,468412.56,194456.5,110155.84,0,0,0,1725.9628 +9893,12050,21496,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.8234243,8.7815504,0,0,0,-1199.998,-9,2,2,2021,7,0,55,0,1,0,0,12.891047,12.891047,.05,.05,0,0,0,0,0,7,0,0,0,2.6845033,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,4719,135696.83,157031.48,108441.55,101730.33,0,0,2712.02 +9893,12051,21497,-9,21496,-9,1,1,25,0,0,0,2,2,-9,0,4,7.8064928,7.8437572,0,0,0,-1028.0276,-9,2,-9,2021,10,0,37,0,1,1,1,7.1747389,7.1747389,.05,.05,0,0,0,0,0,0,0,0,0,3.7589848,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,469,-95861.492,0,0,0,0,0,1111.3704 +9894,12052,21498,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-894.75012,1,1,2,2021,8,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.54,49.68,-9,-9,8.333333333333334,1,1,0,0,12,10,1,0,589,70664.813,0,0,0,0,0,0 +9895,12053,21499,21500,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.9369087,9.066123,6.5347543,34,-1,93.191284,0,3,3,2021,7,0,40,55,1,0,0,24.977177,24.977177,.05,.05,0,0,0,0,0,2,0,0,0,0,6.7350121,51.15,37.61,49,48,8.333333333333334,1,1,0,0,11,1,5,1,1255,500266.13,294995.56,0,0,1509.6219,4791.6543,3117.6074 +9895,12053,21500,21499,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.9255762,6.5564055,0,9,1,217.10091,-9,-9,-9,2021,11,0,16,0,1,2,0,7.2473035,7.2473035,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,51.15,37.61,7,1,1,0,0,1,1,5,1,1255,500266.13,294995.56,0,0,1509.6219,4791.6543,3117.6074 +9896,12054,21501,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,8.3576841,8.3459978,0,0,-1120.5203,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5659146,8.2470932,71.76000000000001,19.47,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,379,303452.94,86127.383,55405.281,0,0,0,3130.0566 +9897,12055,21502,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6072941,7.1961393,0,0,-1012.3049,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,5.3334641,4.0596819,56.375374,0,1,1,0,.027896771,7.3640633,52,45,-9,-9,8,1,1,0,0,0,11,3,1,4785,815071.5,211884.66,396489.31,0,0,0,1010.2366 +9898,12056,21503,21504,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,42,1,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49.45,46.54,7,1,1,0,0,0,8,1,0,581,274669.41,-37586.133,205921.7,0,0,0,3448.0269 +9898,12056,21504,21503,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,42,-1,0,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.45,46.54,52,48,6.666666666666667,1,1,0,0,0,8,1,0,581,274669.41,-37586.133,205921.7,0,0,0,3448.0269 +9899,12057,21505,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.0154319,6.193696,0,0,-1017.8971,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1280723,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,280,472661.06,6457.3486,228976.53,0,0,1318.8057,393.65411 +9900,12058,21506,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1124.7922,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.76,29.31,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,469,5234.9683,0,0,0,0,0,924.96674 +9900,12059,21507,-9,-9,21506,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1023.2014,-9,-9,2,2021,14,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.1309361,0,29.67,50.13,-9,-9,3.333333333333333,1,1,0,0,1,2,1,0,408,135438.84,0,0,0,0,0,971.67065 +9901,12060,21508,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.58252,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.03,35.66,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,519,50389.785,0,0,0,0,634.97955,526.59021 +9902,12061,21509,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1382685,8.2391043,0,0,0,-934.19128,0,2,-9,2021,22,11,38,39,1,11,0,12.172873,12.172873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,1.666666666666667,1,1,0,0,7,13,4,1,451,168482.42,135417.8,0,0,10023.888,0,2463.6665 +9903,12062,21510,21511,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7548695,7.8854203,44,-2,-23.437954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2419062,7.6675696,55.11,47.63,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,911.5,2095164.8,1563230.5,304555.72,0,0,0,4541.5483 +9903,12062,21511,21510,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.2367468,8.2022724,44,2,-33.375229,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.951961,7.9920526,54.2,57.49,55.11,47.63,8.333333333333334,1,1,0,0,0,4,4,1,911.5,2095164.8,1563230.5,304555.72,0,0,0,4541.5483 +9904,12063,21512,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,2.7236459,2.7772295,0,0,-1136.1691,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.4281418,51.42,29.35,-9,-9,5,1,1,0,0,0,4,2,0,502,27917.664,-77319.313,117912.27,0,0,0,842.27802 +9905,12064,21513,-9,21514,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1054.027,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,42.43,-9,-9,5,2,3,1,0,0,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9905,12064,21514,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.7350817,7.9959941,0,0,0,-939.45911,0,3,3,2021,7,0,35,35,1,0,0,8.6147804,8.6147804,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,10,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9905,12064,21515,-9,21514,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1166.1075,-9,1,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,1,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9906,12065,21516,21517,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.2130213,9.1956425,0,8,0,32.112041,0,-9,-9,2021,14,3,43,44,1,3,0,24.816854,24.816854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.85,52.43,6.666666666666667,1,1,0,1,12,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9906,12065,21517,21516,-9,-9,1,0,44,1,1,0,1,1,-9,0,3,8.112752,8.4059782,0,8,9,56.391956,0,-9,-9,2021,12,1,41,42,1,1,0,11.03536,11.03536,.05,.05,0,0,0,0,0,0,1,1,0,2.1434536,0,47.85,52.43,51.24,58.84,6.666666666666667,1,1,0,0,9,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9906,12065,21518,-9,21517,21516,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.9256,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9907,12066,21519,21520,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.9935117,6.6560349,0,11,-2,54.166672,0,2,2,2021,6,0,17,17,1,0,0,8.0242701,8.0242701,.05,.05,0,0,0,0,0,0,1,1,0,4.5084901,0,54.2,57.49,51.41,56.15,8.333333333333334,1,1,0,0,12,4,4,1,627,-80320.953,24550.662,0,0,10375.582,0,2792.1433 +9907,12066,21520,21519,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4675236,8.5313301,0,11,2,78.097855,0,-9,-9,2021,12,1,40,40,1,1,0,17.604752,17.604752,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.41,56.15,54.2,57.49,10,1,1,0,0,13,4,4,1,627,-80320.953,24550.662,0,0,10375.582,0,2792.1433 +9908,12067,21521,21522,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-8,0,0,-9,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,31.17,16.78,35.79,6.666666666666667,1,1,0,0,1,5,1,0,776.5,29986.713,0,0,0,0,0,2390.376 +9908,12067,21522,21521,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,6,8,0,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.78,35.79,55.96,31.17,3.333333333333333,1,1,0,0,5,5,1,0,776.5,29986.713,0,0,0,0,0,2390.376 +9909,12068,21523,-9,21524,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1099.1047,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,2392.5,-194096.38,0,0,0,0,0,3027.719 +9909,12068,21524,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.8943052,8.2072182,0,0,0,-970.01471,0,2,2,2021,26,8,28,16,1,8,0,10.493254,10.493254,0,0,0,0,0,0,0,0,1,1,0,0,0,19.47,63.92,-9,-9,5,1,1,0,0,7,11,2,0,2392.5,-194096.38,0,0,0,0,0,3027.719 +9910,12069,21525,-9,21528,21527,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.1357,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21526,-9,21528,21527,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.37531,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21527,21528,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,0,7.699748,7.4496307,10,19,77.252014,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.2634239,7.5298123,53.67,37.78,46.67,55.57,6.666666666666667,1,1,0,0,7,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21528,21527,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.4645777,6.41998,0,10,-19,41.354847,0,-9,-9,2021,8,0,3,6,1,0,0,29.654047,29.654047,0,0,0,0,0,0,0,7,1,1,0,0,0,46.67,55.57,53.67,37.78,3.333333333333333,2,3,0,0,5,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9911,12070,21529,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,1,8.0870733,8.1544399,6.1304092,0,0,-919.83063,0,2,-9,2021,20,7,30,27,1,7,0,10.090039,10.090039,.05,.05,0,0,0,0,0,0,1,1,0,6.8838973,0,34.51,37.02,-9,-9,1.666666666666667,3,4,0,0,12,9,4,0,545,32213.074,-4054.6699,0,0,0,0,2523.3301 +9911,12070,21530,-9,21529,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.8414,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,0,545,32213.074,-4054.6699,0,0,0,0,2523.3301 +9912,12071,21531,21532,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.4418926,8.6114864,0,6,2,10.672235,0,3,-9,2021,14,3,37,42,1,3,0,20.05015,20.05015,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,331,297168.16,333600.5,230398.14,152918.33,6437.833,0,3895.4312 +9912,12071,21532,21531,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.3794394,8.759428,0,6,-2,-133.54128,0,-9,-9,2021,12,0,37,37,1,0,0,15.258577,15.258577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,331,297168.16,333600.5,230398.14,152918.33,6437.833,0,3895.4312 +9913,12072,21533,21534,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.8243413,8.1510544,39,-1,-118.97036,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1779795,57.16,56.15,54.46,10.85,8.333333333333334,1,1,0,0,14,12,3,1,891.5,1151388.3,881089.5,128053.03,0,0,0,1927.441 +9913,12072,21534,21533,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.458509,6.2171731,39,1,25.574205,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5304809,54.46,10.85,57.16,56.15,3.333333333333333,1,1,0,0,8,12,3,1,891.5,1151388.3,881089.5,128053.03,0,0,0,1927.441 +9914,12073,21535,21536,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.2318316,8.2157412,6.8295202,38,-2,279.1105,0,3,3,2021,23,11,25,26,1,11,0,14.837675,14.837675,0,0,0,0,0,0,0,0,0,0,0,0,7.3442473,42.26,46.74,49.62,46.21,6.666666666666667,1,1,0,0,14,7,5,0,261,360754.63,82922.898,217745.09,45900.684,1452.1207,12722.639,2951.334 +9914,12073,21536,21535,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9421406,8.1108646,6.8458591,38,2,85.02243,0,3,3,2021,13,2,31,38,1,2,0,9.781292,9.781292,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8354826,49.62,46.21,42.26,46.74,8.333333333333334,1,1,0,0,14,7,5,0,261,360754.63,82922.898,217745.09,45900.684,1452.1207,12722.639,2951.334 +9914,12074,21537,-9,21535,21536,1,1,40,0,0,0,2,2,-9,0,3,7.8035717,7.7056093,0,0,0,-1008.8818,0,2,3,2021,10,1,38,38,1,1,1,8.2184525,8.2184525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.88,41.73,-9,-9,5,1,1,0,0,14,7,4,0,1880,-129059.8,19707.758,0,0,0,-489.66763,1389.8041 +9915,12075,21538,21539,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.0673304,8.024085,0,12,8,-104.23764,0,2,2,2021,10,0,34,41,1,0,0,12.299991,12.299991,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,58.79,38.08,8.333333333333334,1,1,0,0,13,12,5,1,857.5,1531555.6,1333821.6,109832.52,0,0,0,2702.7188 +9915,12075,21539,21538,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.3279209,8.3988142,0,12,-8,-55.488125,0,3,3,2021,11,0,40,40,1,0,0,9.118638,9.118638,0,0,0,0,0,0,0,0,0,0,0,0,0,58.79,38.08,48.81,59.91,6.666666666666667,1,1,0,0,13,12,5,1,857.5,1531555.6,1333821.6,109832.52,0,0,0,2702.7188 +9916,12076,21540,21541,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.1273441,7.7304821,25,11,-71.661736,0,2,2,2021,16,6,0,24,4,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.9750128,7.9441972,31.73,48.25,56.47,59.4,6.666666666666667,1,1,0,0,11,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12076,21541,21540,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.4306412,7.2272534,0,24,-11,22.279657,0,2,1,2021,6,0,20,20,1,0,0,8.9832554,8.9832554,.05,.05,0,0,0,0,0,0,0,0,0,7.6175284,0,56.47,59.4,31.73,48.25,10,1,1,0,0,9,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12076,21542,-9,21541,21540,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.9967,1,2,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.41465,0,34.81,61.47,-9,-9,5,1,1,0,0,1,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12077,21543,-9,21541,21540,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-914.75244,-9,2,1,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5178406,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,569,44276.055,0,0,0,0,0,-243.23917 +9917,12078,21544,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.4943209,8.6944056,0,0,0,-1018.309,0,-9,-9,2021,6,0,40,50,1,0,0,15.754418,15.754418,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,11,5,1,225,-78820.648,84871.281,191169.55,64387.832,3322.6084,1285.8163,2187.8711 +9918,12079,21545,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.2666655,8.3339977,0,0,0,-1007.9127,0,2,2,2021,10,0,21,20,1,0,0,21.186592,21.186592,0,0,0,0,0,0,0,0,1,1,0,1.875932,0,46.41,37.03,-9,-9,3.333333333333333,1,1,0,0,12,8,4,1,450,55056.168,114925.65,0,0,0,0,1326.4908 +9919,12080,21546,-9,21547,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.81995,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21547,-9,-9,-9,1,0,27,1,3,0,3,3,-9,1,3,0,6.4731679,6.4905534,0,0,-963.89221,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8530531,0,52.81,38.08,-9,-9,5,1,1,0,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21548,-9,21547,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.7136,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21549,-9,21547,-9,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.14691,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9920,12081,21550,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.5463896,8.8574963,0,0,0,-1011.2258,0,3,3,2021,8,0,57,45,1,0,0,18.032181,18.032181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,52.5,-9,-9,10,2,3,0,0,9,8,5,0,1556,534054.44,469136.22,123520.93,0,-954.90192,0,2312.4543 +9921,12082,21551,21552,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.7344494,8.5168114,39,-3,84.507874,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6052446,8.7013588,52.71,48.66,60.03,45.37,8.333333333333334,2,3,0,0,0,8,4,1,137.5,1156255.5,760108.5,289197.31,0,0,0,5466.2363 +9921,12082,21552,21551,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,4.8790703,4.5857234,8,3,-156.26538,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2632442,4.6030245,60.03,45.37,52.71,48.66,10,2,3,0,0,0,8,4,1,137.5,1156255.5,760108.5,289197.31,0,0,0,5466.2363 +9922,12083,21553,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.4818583,8.5575094,0,0,0,-961.52539,0,2,1,2021,8,1,40,47,1,1,0,11.839098,11.839098,.05,.05,0,0,0,0,0,2,0,0,0,.46744531,0,42.35,36.31,-9,-9,1.666666666666667,3,4,0,0,7,8,4,0,860,315478.53,-11004.87,0,0,0,1203.0076,1849.7279 +9923,12084,21554,21556,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.2019691,8.240283,0,16,2,-21.342787,0,3,2,2021,11,0,39,33,1,0,0,10.897367,10.897367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.93,42.87,42.46,54.85,8.333333333333334,2,3,0,0,11,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12084,21555,-9,21554,21556,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.96002,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12084,21556,21554,-9,21557,1,1,45,0,1,0,1,1,-9,0,3,8.5428228,8.5535717,0,16,-2,27.659225,0,3,2,2021,12,0,46,46,1,0,0,17.969917,17.969917,.05,.05,0,0,0,0,0,7,1,1,0,7.6596894,0,42.46,54.85,53.93,42.87,5,2,3,0,0,11,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12085,21557,-9,-9,-9,1,1,80,0,1,0,3,3,-9,0,3,0,0,0,0,0,-969.88165,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0175039,0,54,46,-9,-9,8,2,3,0,0,0,8,1,1,512,-6900.2231,0,0,0,0,0,1018.1271 +9924,12086,21558,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,7.116045,6.85676,0,0,0,-1147.7404,0,1,1,2021,11,0,45,45,1,0,0,2.5363722,2.5363722,0,0,0,0,0,0,0,0,0,0,0,2.9267483,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,4,8,2,0,1883,43897.109,0,0,0,0,0,1170.6604 +9925,12087,21559,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6404104,7.9068723,0,0,-1009.4314,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5871954,7.7548766,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,2637,429944.5,196588.64,166777.81,0,0,0,2364.5071 +9926,12088,21560,21561,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.0460567,9.0648422,0,2,8,48.596237,0,2,-9,2021,14,4,40,37,1,4,0,30.465815,30.465815,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,58.2,48.99,8.333333333333334,1,1,0,0,8,8,5,1,532.5,911796,695171.75,560026.31,239768.31,-1796.79,0,6275.127 +9926,12088,21561,21560,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.9771719,9.5428724,0,2,-8,32.449551,0,-9,-9,2021,13,3,45,40,1,3,0,17.444452,17.444452,.05,.05,0,0,0,0,0,0,0,0,0,6.7621512,0,58.2,48.99,51.14,60.45,8.333333333333334,1,1,0,0,1,8,5,1,532.5,911796,695171.75,560026.31,239768.31,-1796.79,0,6275.127 +9927,12089,21562,-9,-9,21563,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-975.6684,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,0,1053.5,98300.578,-52510.531,0,0,0,0,2951.0762 +9927,12089,21563,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.9855776,8.5040979,0,0,0,-959.64862,0,-9,2,2021,8,0,55,50,1,0,0,17.825653,17.825653,.05,.05,0,0,0,0,0,7,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,1053.5,98300.578,-52510.531,0,0,0,0,2951.0762 +9928,12090,21564,21565,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.2125258,7.4736719,0,11,-2,41.413219,0,2,2,2021,12,4,24,40,1,4,0,7.3870306,7.3870306,0,0,0,0,0,0,0,0,0,0,0,2.5894783,0,54.25,31.66,55.36,51.57,8.333333333333334,2,3,0,0,10,8,4,0,836.5,194448.33,0,276243.31,139451.41,0,8712.042,2113.3853 +9928,12090,21565,21564,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,7.939508,7.8955956,0,3,2,27.958813,0,2,2,2021,6,0,40,40,1,0,0,10.142921,10.142921,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.25,31.66,8.333333333333334,2,3,0,0,10,8,4,0,836.5,194448.33,0,276243.31,139451.41,0,8712.042,2113.3853 +9929,12091,21566,21567,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.9344373,5.7762613,7,7,28.083792,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5945187,44.68,56.37,52.81,41.69,8.333333333333334,1,1,0,0,7,12,2,1,247.5,197782.41,36857.934,114741.67,0,0,0,1416.2588 +9929,12091,21567,21566,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-7,-75.149002,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,41.69,44.68,56.37,5,1,1,0,0,7,12,2,1,247.5,197782.41,36857.934,114741.67,0,0,0,1416.2588 +9930,12092,21568,21569,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.0779719,6.1851006,32,0,10.242771,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2965779,54.77,55.87,57.16,56.15,8.333333333333334,1,1,1,0,11,13,4,1,824,2048866.5,1183243.9,220206.61,0,0,0,2254.6721 +9930,12092,21569,21568,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.682126,9.292902,0,10,0,-31.537266,0,-9,-9,2021,7,0,40,46,1,0,0,20.509596,20.509596,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,6.666666666666667,1,1,0,0,12,13,4,1,824,2048866.5,1183243.9,220206.61,0,0,0,2254.6721 +9930,12093,21570,-9,21568,21569,1,0,25,0,0,0,2,2,-9,0,4,8.3913164,8.0252819,0,0,0,-1054.2451,0,2,2,2021,12,0,50,36,1,0,1,10.894042,10.894042,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,3892,121587.35,-86521.109,93707.352,50340.996,18.478285,0,2011.4873 +9931,12094,21571,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.366209,8.5481539,0,0,0,-978.98877,0,3,3,2021,17,5,40,40,1,5,0,13.454129,13.454129,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.8,58.32,-9,-9,5,2,3,0,0,1,4,5,0,902,106391.33,-49543.176,0,0,0,0,1310.2074 +9931,12095,21572,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,6.1736846,6.4400778,0,0,0,-1046.0458,-9,-9,-9,2021,22,6,12,0,1,6,0,5.3555179,5.3555179,0,0,0,0,0,0,0,42,1,0,1,0,0,24.19,61.89,-9,-9,0,2,3,0,1,3,4,2,0,482,622691.5,0,0,0,0,0,-550.9292 +9932,12096,21573,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,7.702013,7.7432899,0,0,-1054.0159,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2631049,8.0497856,36.51,20.26,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,865,415349.72,120203.34,88469.781,0,0,0,2667.2759 +9933,12097,21574,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8516226,7.7242436,0,0,0,-1012.0485,0,2,3,2021,2,0,16,10,1,0,0,16.125566,16.125566,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,6,3,0,1739,126620.02,118978.75,79098.82,14945.638,10856.278,1904.1815,1252.7123 +9934,12098,21575,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.2792354,6.2228851,0,0,-1059.5768,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,6.1838102,0,0,1,1,0,0,6.4767513,66.37,22.3,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,479,236887.34,-100395.69,199633.75,0,0,0,1312.6655 +9935,12099,21576,21577,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4838786,6.9328675,52,0,83.1586,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3864188,7.4426117,51.64,50.48,62.42,37.4,8.333333333333334,1,1,0,0,7,6,3,1,1121.5,745118.38,456879.44,260149.44,0,0,0,2737.0747 +9935,12099,21577,21576,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.5509357,7.4075742,52,0,181.45396,0,2,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7492166,7.7651315,62.42,37.4,51.64,50.48,8.333333333333334,1,1,0,0,2,6,3,1,1121.5,745118.38,456879.44,260149.44,0,0,0,2737.0747 +9936,12100,21578,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.1932516,6.3489733,0,0,-998.83295,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8759007,6.0506525,52,47,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,748,532860.25,104624.34,104998.12,0,0,0,2023.7773 +9937,12101,21579,21580,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.7078872,6.37361,46,-4,61.077698,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4721756,6.5448494,47.08,48.43,60.69,39.98,8.333333333333334,1,1,0,0,2,10,3,1,1512.5,927512.81,359435.84,355911.19,0,0,0,2678.7329 +9937,12101,21580,21579,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0845165,7.3269124,44,4,5.7230425,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.360548,7.1397662,60.69,39.98,47.08,48.43,10,1,1,0,0,0,10,3,1,1512.5,927512.81,359435.84,355911.19,0,0,0,2678.7329 +9938,12102,21581,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.6962671,6.6763301,0,0,-848.40228,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8608801,6.6946888,42.16,36.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,570,350654.5,96711.484,416235.75,0,10920.398,26178.82,1544.9128 +9939,12103,21582,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.2212896,5.1356106,0,0,-852.28857,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3964596,62.49,55.09,-9,-9,10,1,1,0,0,0,1,2,1,1678,170222.28,-27230.662,0,0,0,0,457.22403 +9940,12104,21583,-9,21585,21584,1,1,10,0,1,1,3,0,-9,0,2,0,0,0,0,0,-971.09564,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9940,12104,21584,21585,-9,-9,1,1,54,0,1,0,1,1,-9,0,2,0,0,0,25,10,64.928055,0,3,3,2021,12,4,0,20,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,43.12,58.55,3.333333333333333,1,1,0,1,14,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9940,12104,21585,21584,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.2649183,9.2947483,0,12,-10,37.872704,0,2,1,2021,14,5,48,45,1,5,0,23.627075,23.627075,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.12,58.55,41.46,55.58,6.666666666666667,1,1,0,0,14,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9941,12105,21586,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,6.8810759,6.9370947,0,0,0,-919.36523,0,2,2,2021,10,0,14,0,1,0,0,7.25666,7.25666,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.45,18.32,-9,-9,3.333333333333333,1,1,0,1,9,9,2,0,529,204390.31,124989.16,246168.81,44826.008,0,0,1270.6796 +9942,12106,21587,-9,21588,-9,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-927.42548,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,578.5,-106993.48,0,0,0,-325.54227,513.09583,822.71588 +9942,12106,21588,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,0,0,0,0,0,-883.61169,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.88,53.03,-9,-9,5,1,1,0,1,0,2,2,0,578.5,-106993.48,0,0,0,-325.54227,513.09583,822.71588 +9943,12107,21589,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-876.23547,0,3,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,28.212852,0,0,1,1,0,0,0,40.39,15.94,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,839,48528.555,0,0,0,0,0,832.17834 +9943,12108,21590,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.3392715,8.2774639,0,0,0,-889.33099,0,-9,-9,2021,12,0,48,48,1,2,0,11.463712,11.463712,.05,.05,0,0,0,0,0,0,1,1,0,.03841012,0,46,58,-9,-9,10,1,1,0,0,3,4,4,0,610,39254.379,73265.531,0,0,0,0,1747.0519 +9944,12109,21591,21592,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.610043,7.5509667,51,-4,-13.229601,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.032907,7.7957697,60.63,38.2,51.83,57.2,8.333333333333334,1,1,0,0,0,4,3,1,374,639631.13,625848.5,0,0,0,-617.43457,3204.4207 +9944,12109,21592,21591,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6099539,7.3707161,12,4,-26.907715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3376594,7.3758278,51.83,57.2,60.63,38.2,10,1,1,0,0,0,4,3,1,374,639631.13,625848.5,0,0,0,-617.43457,3204.4207 +9945,12110,21593,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-897.39423,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.36,15.07,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,1531,-150561.2,0,0,0,0,0,2124.2893 +9946,12111,21594,21595,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.2251577,5.2743187,5,-5,-45.522388,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5876412,5.0059776,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,7,2,1,1066,905198.38,211402.16,597729.75,0,0,0,867.27094 +9946,12111,21595,21594,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.7791266,5.9673729,5,5,-33.588387,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5673933,5.8487191,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,1066,905198.38,211402.16,597729.75,0,0,0,867.27094 +9947,12112,21596,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,6.8943539,7.2516451,5.2808833,0,0,-1054.2789,0,3,-9,2021,10,0,16,17,1,0,0,6.6184874,6.6184874,0,0,0,0,0,0,0,2,1,1,0,5.48206,0,55.36,51.57,-9,-9,5,1,1,0,0,13,12,2,0,1995,-105468.29,-60375.359,0,0,0,798.44977,1061.2565 +9948,12113,21597,21598,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.8336287,6.9881573,0,42,2,36.617508,0,3,3,2021,11,0,3,15,1,0,0,32.195511,32.195511,0,0,0,0,0,0,0,0,0,0,0,0,0,44.45,47.38,54.69,39.97,8.333333333333334,1,1,0,0,12,2,4,1,397.5,270612.22,-54832.758,242252.05,0,0,0,1802.5388 +9948,12113,21598,21597,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.2633066,8.434206,0,41,-2,-107.04939,0,3,3,2021,13,1,41,41,1,1,0,11.403528,11.403528,.05,.05,0,0,0,0,0,0,0,0,0,3.5311637,0,54.69,39.97,44.45,47.38,8.333333333333334,1,1,0,0,12,2,4,1,397.5,270612.22,-54832.758,242252.05,0,0,0,1802.5388 +9949,12114,21599,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.9486618,7.3381782,0,0,-980.61951,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9917164,7.0643334,47.92,54.31,-9,-9,10,1,1,0,0,10,13,3,1,754,548469.75,233115.97,171684.63,0,0,0,1791.9108 +9950,12115,21600,21601,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7278404,8.4505644,0,32,4,110.69734,0,2,2,2021,7,0,50,50,1,0,0,12.722385,12.722385,0,0,0,0,0,0,0,0,0,0,0,4.2994499,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,8,4,5,1,1193.5,3220317.3,35736.516,741087.63,0,0,0,2901.8943 +9950,12115,21601,21600,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0506763,8.195262,0,32,-4,-58.809349,0,3,2,2021,7,0,50,45,1,0,0,6.5293965,6.5293965,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,10,1,1,0,0,5,4,5,1,1193.5,3220317.3,35736.516,741087.63,0,0,0,2901.8943 +9951,12116,21602,21604,-9,-9,1,0,50,0,0,0,1,1,-9,1,2,8.7846308,8.9663754,0,20,-5,-16.967329,0,2,2,2021,21,9,53,42,1,9,0,12.101481,12.101481,0,0,0,0,0,0,0,27,1,1,0,0,0,38.4,35.36,38,28,5,1,1,0,0,14,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9951,12116,21603,-9,21602,21604,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1014.6193,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9951,12116,21604,21602,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,7.643219,8.0009813,20,5,-59.586655,0,3,3,2021,25,10,0,0,4,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8547187,38,28,38.4,35.36,5,1,1,0,0,7,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9952,12117,21605,21607,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,0,0,9,-6,43.656448,0,3,3,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.42,27.74,49.02,47.84,5,1,1,0,0,0,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9952,12117,21606,-9,21605,21607,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1094.0823,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,61.73,-9,-9,8.333333333333334,1,1,0,1,0,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9952,12117,21607,21605,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.0901604,8.6734409,0,9,6,-88.299286,0,-9,-9,2021,11,0,32,24,1,0,0,15.444644,15.444644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,47.84,37.42,27.74,8.333333333333334,1,1,0,0,10,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9953,12118,21608,21609,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,8.5115728,8.7258921,0,21,0,12.624979,0,2,2,2021,10,0,35,36,1,0,0,14.831026,14.831026,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,45.52,26.86,10,1,1,0,0,11,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9953,12118,21609,21608,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.6567335,8.4318151,0,21,0,49.874077,0,2,2,2021,21,9,40,50,1,9,0,13.406844,13.406844,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.52,26.86,41.06,62.04,3.333333333333333,1,1,0,0,11,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9953,12118,21610,-9,21608,21609,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.9967,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9954,12119,21611,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.9275293,9.5637102,0,0,0,-1044.0103,-9,3,3,2021,10,1,60,0,1,1,0,27.781242,27.781242,.05,.05,0,0,0,0,0,0,0,0,0,1.8015312,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,563,965257.56,558563.81,196001.86,0,0,0,6184.4229 +9955,12120,21612,21613,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,6.5009856,6.5512056,0,8,-7,91.20208,0,3,3,2021,12,0,12,24,1,0,0,7.4790888,7.4790888,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,42.66,53.64,43.21,6.666666666666667,1,1,0,0,3,11,2,1,933,1451643.8,626288.63,846167.88,0,11512.482,0,1699.7306 +9955,12120,21613,21612,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,7,23.997286,0,3,3,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.64,43.21,48.85,42.66,8.333333333333334,1,1,0,0,9,11,2,1,933,1451643.8,626288.63,846167.88,0,11512.482,0,1699.7306 +9955,12121,21614,-9,21612,21613,1,0,22,0,0,0,2,2,-9,0,3,7.4865351,7.5292068,0,0,0,-910.59863,0,3,3,2021,8,1,40,38,1,1,1,6.8764753,6.8764753,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,5,11,3,1,1423,107389.07,0,0,0,0,0,1183.8423 +9956,12122,21615,21616,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.5313549,8.4892349,0,7,1,-50.755898,0,-9,-9,2021,10,0,44,42,1,0,0,13.613472,13.613472,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,59.64,46.44,59.62,6.666666666666667,1,1,0,0,6,10,5,1,1072.5,-193532.56,116743.98,0,0,8598.293,302.08768,3831.54 +9956,12122,21616,21615,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4921246,8.7962503,0,7,-1,52.206924,0,1,1,2021,11,1,52,55,1,1,0,12.589731,12.589731,.05,.05,0,0,0,0,0,2,0,0,0,.21906686,0,46.44,59.62,46.89,59.64,8.333333333333334,1,1,0,0,9,10,5,1,1072.5,-193532.56,116743.98,0,0,8598.293,302.08768,3831.54 +9957,12123,21617,-9,21618,21619,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9957,12123,21618,21619,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9508276,7.7568531,0,6,-4,108.94971,0,1,2,2021,13,2,43,43,1,2,0,7.2235923,7.2235923,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.86,59.06,57.33,53.46,6.666666666666667,1,1,0,0,7,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9957,12123,21619,21618,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.7195711,8.81497,0,6,4,-103.61702,0,2,1,2021,6,0,42,42,1,0,0,15.181224,15.181224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,38.86,59.06,8.333333333333334,1,1,0,0,7,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9958,12124,21620,21622,-9,-9,1,1,62,0,2,0,1,1,-9,0,4,9.7516394,10.149387,7.4767303,6,27,17.639967,-9,-9,-9,2021,7,0,35,0,1,0,0,53.318676,53.318676,.05,.05,.05,0,0,0,0,0,1,1,0,0,7.8882923,57.16,56.15,45.73,57.57,8.333333333333334,3,4,0,0,8,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21621,-9,21622,21620,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-814.29901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21622,21620,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.5936451,9.0204468,0,6,-27,-82.64772,-9,2,1,2021,10,0,35,0,1,0,0,18.042795,18.042795,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,57.16,56.15,6.666666666666667,3,4,0,0,9,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21623,-9,21622,21620,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.76843,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9959,12125,21624,21625,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.9654469,4.9971375,9,-2,35.548878,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5679483,4.5950284,54.98,44.8,48.28,60.18,0,1,1,0,0,4,10,3,1,339,1131616,282586.06,384519.81,0,0,0,2910.7529 +9959,12125,21625,21624,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.0609598,8.6414709,9,2,-93.936943,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8302879,8.2655478,48.28,60.18,54.98,44.8,10,1,1,0,0,0,10,3,1,339,1131616,282586.06,384519.81,0,0,0,2910.7529 +9960,12126,21626,-9,21629,21627,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8822,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21627,21629,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.9835196,7.9026198,0,16,6,18.587376,0,3,3,2021,8,1,33,21,1,1,0,9.3934631,9.3934631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.44,54.26,50.05,36.01,8.333333333333334,2,3,0,0,10,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21628,-9,21629,21627,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.70697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21629,21627,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.0431395,8.4542465,0,16,-6,-31.45672,0,3,3,2021,9,0,37,38,1,0,0,11.355117,11.355117,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,36.01,55.44,54.26,6.666666666666667,2,3,0,0,13,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9961,12127,21630,-9,21632,21634,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9882,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21631,-9,21632,21634,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.0118,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21632,21634,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,9,2,27.942961,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21633,-9,21632,21634,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.86206,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21634,21632,-9,-9,1,1,37,0,3,0,3,3,-9,0,4,8.1261892,8.2071199,0,9,-2,126.37587,0,-9,-9,2021,8,0,42,36,1,0,0,7.9177704,7.9177704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.37,56.93,8.333333333333334,1,1,0,0,10,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12128,21635,-9,21632,21634,1,1,18,0,3,0,2,2,-9,0,4,7.6113653,7.573638,0,0,0,-1029.8413,0,2,3,2021,7,0,36,3,1,0,1,7.5931821,7.5931821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.99,56.77,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,342,7765.7407,-20800.861,0,0,6234.6675,0,928.40826 +9962,12129,21636,21637,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8249741,8.1532555,7,1,9.0327845,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.7972417,8.3096294,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,1151,1340002,615142.06,505542.06,0,0,0,1267.2979 +9962,12129,21637,21636,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.820097,5.5014081,45,-1,68.682014,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4644442,5.823523,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,9,3,1,1151,1340002,615142.06,505542.06,0,0,0,1267.2979 +9963,12130,21638,21639,-9,-9,1,1,33,1,2,0,3,3,-9,0,4,8.3605976,8.5730915,0,5,3,25.244339,0,-9,-9,2021,8,0,13,55,1,0,0,47.226345,47.226345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21639,21638,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,7.4133644,7.4475222,0,5,-3,187.55974,0,3,2,2021,6,0,19,19,1,0,0,10.91755,10.91755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21640,-9,21639,21638,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.62653,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21641,-9,21639,21638,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2872,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9964,12131,21642,21643,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,34,-2,108.57881,0,2,2,2021,12,0,0,37,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,52.54,54.24,5,1,1,1,0,10,4,3,0,566,462492.63,416527.19,151564.02,38052.301,0,0,2055.7307 +9964,12131,21643,21642,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9882131,8.1179724,0,40,2,7.8740149,0,-9,-9,2021,6,0,37,37,1,0,0,8.9183807,8.9183807,0,0,0,0,0,0,0,0,1,1,0,.011620779,0,52.54,54.24,39.98,36.02,6.666666666666667,1,1,0,0,15,4,3,0,566,462492.63,416527.19,151564.02,38052.301,0,0,2055.7307 +9964,12132,21644,-9,21643,21642,1,0,20,0,0,0,2,2,-9,0,4,7.0064082,6.9188247,0,0,0,-1048.6288,0,3,2,2021,12,0,16,19,1,0,1,7.2316499,7.2316499,0,0,0,0,0,0,0,0,1,1,0,7.0916543,0,37.28,62.32,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,582,-40325.852,0,0,0,0,0,628.33356 +9965,12133,21645,-9,21647,21646,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1010.4936,-9,1,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.8,59.76,-9,-9,6.666666666666667,2,3,0,0,0,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21646,21647,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.0204334,9.1049175,0,20,5,-27.187586,0,2,2,2021,12,1,35,35,1,1,0,28.900791,28.900791,.05,.05,0,0,0,0,0,0,1,1,0,4.5158796,0,41.17,52.68,57.52,42.6,6.666666666666667,2,3,0,0,8,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21647,21646,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.1627502,8.2277403,0,20,-5,16.200998,0,2,2,2021,3,0,40,40,1,0,0,8.8797235,8.8797235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.52,42.6,41.17,52.68,10,2,3,0,0,10,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21648,-9,21647,21646,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.28424,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9966,12134,21649,21650,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,35,-6,-23.373146,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3081551,0,53.98,42.84,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,1146.5,1905024.8,1161948.8,698180.63,0,6867.832,0,2645.1255 +9966,12134,21650,21649,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.7685928,8.3162107,35,6,-48.10294,0,3,3,2021,6,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0066724,8.5906363,57.06,57.76,53.98,42.84,10,1,1,0,0,10,7,4,1,1146.5,1905024.8,1161948.8,698180.63,0,6867.832,0,2645.1255 +9967,12135,21651,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4028611,7.5352407,0,0,0,-1039.1206,0,3,3,2021,10,0,24,30,1,0,0,9.6161633,9.6161633,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,29.18,-9,-9,1.666666666666667,1,1,0,1,10,13,3,0,801,265623.59,114307.02,0,0,1091.2982,0,965.65155 +9967,12136,21652,-9,21651,-9,1,1,25,0,0,0,2,2,-9,0,4,8.2117214,8.467555,0,0,0,-883.32892,0,2,-9,2021,11,0,98,52,1,0,1,4.4329762,4.4329762,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,465,-170062.19,76961.711,0,0,9976.041,0,1333.0181 +9968,12137,21653,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-994.73956,0,3,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.08,24.12,-9,-9,0,1,1,0,1,0,12,2,0,461,-64784.66,0,0,0,0,0,1857.845 +9969,12138,21654,21655,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,45,-1,-236.11075,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6830022,0,51.3,30.49,63.5,33.23,10,1,1,0,0,0,6,2,1,882,453089.53,265975.97,145502.16,0,0,0,1781.3662 +9969,12138,21655,21654,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.1183114,7.221395,44,1,45.718048,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7957339,7.2904096,63.5,33.23,51.3,30.49,8.333333333333334,1,1,0,0,0,6,2,1,882,453089.53,265975.97,145502.16,0,0,0,1781.3662 +9970,12139,21656,-9,21657,21659,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.7106,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21657,21659,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,13,-8,-73.296623,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,56.41,48.18,8.333333333333334,2,3,1,0,5,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21658,-9,21657,21659,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.6474,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21659,21657,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,7.7657413,7.6781812,0,13,8,114.16642,0,1,1,2021,7,1,40,35,1,1,0,5.9089742,5.9089742,0,0,.05,0,0,0,0,0,1,0,1,0,0,56.41,48.18,51.83,57.2,8.333333333333334,2,3,0,0,11,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9971,12140,21660,-9,21661,21663,1,0,25,0,2,0,2,2,-9,0,4,7.8784318,8.0500774,0,0,0,-1062.0901,0,2,1,2021,9,0,35,35,1,0,1,9.2374611,9.2374611,0,0,0,0,0,0,0,0,1,1,0,0,0,55,47.5,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,482,-33254.074,0,0,0,1879.8618,0,918.11639 +9971,12141,21661,21663,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.4559541,7.3379455,5.7661858,6,-1,-8.3487091,0,2,3,2021,13,4,21,21,1,4,0,8.4960709,8.4960709,0,0,.05,0,0,0,0,0,1,1,0,6.2486787,0,40.71,62.41,54.96,53.17,6.666666666666667,1,1,0,0,8,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21662,-9,21661,21663,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.13763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21663,21661,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.977375,8.9949617,0,6,1,-58.195637,0,-9,-9,2021,6,0,60,60,1,0,0,24.874313,24.874313,.05,.05,.05,0,0,0,0,0,1,1,0,3.3225589,0,54.96,53.17,40.71,62.41,8.333333333333334,1,1,0,0,10,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21664,-9,21661,21663,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1170.9841,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9972,12142,21665,-9,21666,21668,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4523,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21666,21668,-9,-9,1,0,28,1,2,0,1,1,-9,0,5,7.252677,7.306396,0,3,-3,-56.371635,0,3,2,2021,6,0,18,28,1,0,0,10.958623,10.958623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.16,56.15,10,1,1,0,0,7,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21667,-9,21666,21668,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2281,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21668,21666,-9,-9,1,1,31,1,2,0,3,3,-9,0,4,8.1364889,8.3870144,0,3,3,-139.80045,0,-9,-9,2021,7,0,22,72,1,0,0,18.209339,18.209339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,5,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9973,12143,21669,21670,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,7.3990517,7.5261683,0,8,2,-19.914114,0,2,2,2021,12,1,21,20,1,1,0,11.275059,11.275059,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,57,1.666666666666667,1,1,0,0,10,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9973,12143,21670,21669,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.5920134,8.5112133,0,8,-2,32.435551,-9,-9,-9,2021,10,0,12,0,1,1,0,37.932552,37.932552,.05,.05,0,0,0,0,0,0,1,1,0,4.6852546,0,50,57,57.06,57.76,7,4,1,0,0,1,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9973,12143,21671,-9,21669,21670,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.03162,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9974,12144,21672,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1417956,7.3928452,0,0,0,-959.62299,0,2,2,2021,22,10,40,30,1,10,0,4.0393476,4.0393476,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.78,41.13,-9,-9,3.333333333333333,2,3,0,0,9,2,3,1,252,131458.73,54636.738,0,0,0,0,1074.3802 +9975,12145,21673,21674,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0965977,8.5889883,8.0822802,9,-2,-6.1369095,0,-9,-9,2021,11,0,28,25,1,2,0,5.2122264,5.2122264,0,0,0,0,0,0,0,0,1,1,0,0,8.2191477,49,48,46.33,50.4,7,1,1,0,0,1,10,4,1,308,2363879,1795374.6,567823.69,455285.88,0,0,4267.4355 +9975,12145,21674,21673,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,6.1747236,7.1635876,7.245532,20,2,-105.48149,0,3,2,2021,15,5,5,37,1,5,0,13.142694,13.142694,0,0,0,0,0,0,0,0,1,1,0,7.36656,0,46.33,50.4,49,48,8.333333333333334,1,1,0,0,11,10,4,1,308,2363879,1795374.6,567823.69,455285.88,0,0,4267.4355 +9976,12146,21675,21676,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.1175718,8.3177843,44,0,111.75478,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2279444,46.73,54.33,60.12,54.8,8.333333333333334,1,1,0,0,2,2,5,1,264,1685679.6,894637.38,432190.59,0,0,0,5921.0581 +9976,12146,21676,21675,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.7545147,8.3553658,44,0,15.723365,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6963353,8.838748,60.12,54.8,46.73,54.33,8.333333333333334,1,1,0,0,0,2,5,1,264,1685679.6,894637.38,432190.59,0,0,0,5921.0581 +9977,12147,21677,-9,21678,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.7609,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,0,929,242386.25,221608.47,155170.31,0,0,0,1702.6116 +9977,12147,21678,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1013.6319,0,3,3,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,2.7930415,42,1,1,0,0,0,16.76,52.18,-9,-9,0,2,3,1,1,4,6,1,0,929,242386.25,221608.47,155170.31,0,0,0,1702.6116 +9977,12148,21679,-9,21678,-9,1,1,21,0,1,0,2,2,-9,0,3,6.5262146,6.2062311,0,0,0,-1127.0133,0,2,2,2021,2,0,16,16,1,0,1,5.0345936,5.0345936,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,37.02,-9,-9,0,2,3,0,0,5,6,2,0,389,-157344.5,0,0,0,0,0,-520.94305 +9977,12149,21680,-9,21678,-9,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-932.23279,-9,2,-9,2021,10,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.61,48.71,-9,-9,5,2,3,0,0,0,6,1,0,424,-143569.38,0,0,0,0,0,0 +9978,12150,21681,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.7461753,7.6576338,0,0,0,-966.55066,0,3,3,2021,14,2,30,40,1,2,0,7.9048839,7.9048839,0,0,0,0,0,0,0,0,1,0,1,0,0,56.7,32.47,-9,-9,6.666666666666667,1,1,0,1,10,6,3,0,1658,112402.55,-139291.75,0,0,0,0,157.12421 +9978,12151,21682,-9,21681,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8551235,8.0383129,0,0,0,-947.57843,-9,2,-9,2021,14,2,45,0,1,2,1,6.234859,6.234859,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.1,55.1,-9,-9,6.666666666666667,1,1,0,0,5,6,4,0,599,-161729.27,-74106.125,0,0,0,0,1822.9524 +9979,12152,21683,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.4945951,4.4507599,0,0,-939.69556,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,7.9139328,0,0,1,1,0,0,4.3718367,37.67,27.38,-9,-9,5,1,1,0,0,2,2,2,0,310,-46642.34,71172.977,0,0,0,0,611.1897 +9980,12153,21684,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.9394369,9.1175966,0,0,0,-976.49695,0,3,3,2021,9,0,37,37,1,0,0,27.616516,27.616516,0,0,0,0,0,0,0,0,0,0,0,5.701489,0,47.09,58.02,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,559,167168.48,163787.3,199207.55,0,0,0,2587.043 +9981,12154,21685,21686,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6892624,8.6602926,0,6,2,-29.925287,0,-9,-9,2021,3,0,50,50,1,0,0,10.448428,10.448428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.56,43.2,43.44,39.31,8.333333333333334,4,2,0,0,5,7,5,1,657,1085333.5,485277.13,539592,75669.102,0,0,4545.6172 +9981,12154,21686,21685,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4974566,8.8042545,0,25,-2,4.1472263,0,-9,-9,2021,15,6,58,37,1,6,0,13.866421,13.866421,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,39.31,61.56,43.2,8.333333333333334,4,2,0,0,11,7,5,1,657,1085333.5,485277.13,539592,75669.102,0,0,4545.6172 +9982,12155,21687,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1754951,8.1162024,0,0,0,-980.32813,0,3,2,2021,6,1,23,23,1,1,0,17.282398,17.282398,.05,.05,0,0,0,0,0,2,0,0,0,3.3201158,0,48.4,53.5,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,471,378187.81,323424.38,0,0,0,0,254.47025 +9983,12156,21688,-9,21690,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-917.91766,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9983,12156,21689,21690,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,9.5504742,9.5547686,0,1,0,-34.676464,0,1,2,2021,9,0,60,50,1,0,0,25.090616,25.090616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9983,12156,21690,21689,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.4739976,7.3532047,6.3232946,1,0,-18.163803,-9,-9,-9,2021,8,0,27,0,1,0,0,9.6573544,9.6573544,.05,.05,0,0,0,0,0,0,1,1,0,6.2266836,0,57.16,56.15,41.17,59.31,10,1,1,0,0,3,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9984,12157,21691,21692,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.6437144,7.7689266,51,2,63.604317,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5201559,7.7544956,59.46,46.99,56.92,49.39,8.333333333333334,1,1,0,0,1,4,4,1,785,1468733.5,1110227,242076.25,0,0,0,4112.54 +9984,12157,21692,21691,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.7975459,7.5573039,51,-2,74.964561,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1159668,7.7834058,56.92,49.39,59.46,46.99,8.333333333333334,1,1,0,0,0,4,4,1,785,1468733.5,1110227,242076.25,0,0,0,4112.54 +9985,12158,21693,21694,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6824236,8.7927132,0,30,2,100.64211,0,2,2,2021,6,0,45,45,1,0,0,17.80332,17.80332,.05,.05,0,0,0,0,0,0,0,0,0,3.7697201,0,57.16,56.15,53.3,55.06,8.333333333333334,1,1,0,0,11,5,5,1,588.5,495526.13,378747.94,219799.56,105179.05,0,3717.4058,3219.605 +9985,12158,21694,21693,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0477905,7.9714923,0,32,-2,33.771927,0,2,1,2021,8,0,37,40,1,0,0,10.328551,10.328551,.05,.05,0,0,0,0,0,0,0,0,0,3.8834462,0,53.3,55.06,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,588.5,495526.13,378747.94,219799.56,105179.05,0,3717.4058,3219.605 +9985,12159,21695,-9,21694,21693,1,0,25,0,0,0,1,1,-9,0,3,7.8150611,8.2174444,0,0,0,-1042.6768,0,2,2,2021,8,0,45,40,1,0,1,6.6899562,6.6899562,0,0,0,0,0,0,0,0,0,0,0,3.4023943,0,36.13,54.74,-9,-9,6.666666666666667,1,1,0,0,5,5,4,1,993,-54335.418,0,0,0,0,0,1566.9966 +9986,12160,21696,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,0,0,0,0,0,-966.61456,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,2,1,0,628,-37478.719,0,0,0,0,0,146.78851 +9986,12160,21697,-9,21696,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0105,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,628,-37478.719,0,0,0,0,0,146.78851 +9987,12161,21698,-9,-9,-9,1,0,38,0,2,0,1,1,-9,1,5,6.4967427,7.1710334,5.6655402,0,0,-894.40167,0,2,2,2021,5,0,21,32,1,0,0,4.8086267,4.8086267,.05,.05,0,0,0,0,0,105,1,1,0,6.1200557,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9987,12161,21699,-9,21698,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.20404,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9987,12161,21700,-9,21698,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5967,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9988,12162,21701,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9469481,6.3614316,0,0,-1013.1688,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,4.6749668,0,50.069458,0,1,1,0,6.9948487,6.506176,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,632,1730400.1,1400208.5,59162.563,0,0,0,1651.4299 +9989,12163,21702,21703,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.8554106,7.9888935,0,31,0,-16.50588,0,3,3,2021,10,0,30,40,1,0,0,12.051762,12.051762,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,62.39,56.71,45.65,33.48,8.333333333333334,1,1,0,0,7,2,4,1,904,487597.91,129041.87,374165.06,-1489.9741,0,0,1636.1998 +9989,12163,21703,21702,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.2656331,7.2226496,5.5942292,31,0,169.17554,0,2,2,2021,7,0,20,0,1,0,0,9.8283396,9.8283396,0,0,0,0,0,0,0,0,0,0,0,0,5.7690697,45.65,33.48,62.39,56.71,6.666666666666667,1,1,0,0,10,2,4,1,904,487597.91,129041.87,374165.06,-1489.9741,0,0,1636.1998 +9990,12164,21704,21706,-9,-9,1,0,42,0,2,0,2,2,-9,1,5,6.7798772,6.7643929,0,6,-1,-74.516914,0,2,2,2021,10,0,14,16,1,0,0,6.2729964,6.2729964,.05,.05,0,0,0,0,0,112,1,1,0,0,0,22.88,65.82000000000001,51,56,0,1,1,0,0,9,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21705,-9,21704,21706,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.00122,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21706,21704,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5741396,8.3350868,0,6,1,-17.052233,0,-9,-9,2021,9,0,1,35,1,1,0,726.45477,726.45477,.05,.05,0,0,0,0,0,0,1,1,0,2.1310365,0,51,56,22.88,65.82000000000001,8,1,1,0,0,1,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21707,-9,21704,21706,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.365,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9991,12165,21708,21709,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,9.4315033,9.1312952,0,6,2,-23.088469,0,-9,-9,2021,14,3,35,42,1,3,0,32.030045,32.030045,.05,.05,0,0,0,0,0,0,0,0,0,4.2076683,0,51.83,57.2,46.44,59.62,5,1,1,0,0,9,10,5,1,1111.5,427968.75,69622.539,486501.13,186471.69,0,0,4872.939 +9991,12165,21709,21708,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.312171,8.3357334,0,6,-2,4.2504392,0,2,2,2021,6,0,39,38,1,0,0,11.540323,11.540323,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,51.83,57.2,8.333333333333334,1,1,0,0,7,10,5,1,1111.5,427968.75,69622.539,486501.13,186471.69,0,0,4872.939 +9992,12166,21710,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.9587259,5.9640574,0,0,-991.81189,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,9.5836391,0,0,1,1,0,0,5.6736369,38.94,54.95,-9,-9,5,1,1,0,0,0,10,2,0,767,225143.48,5904.0649,151296.14,0,0,0,917.02655 +9993,12167,21711,21712,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,6,1,21.333406,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.64439702,0,44.36,54.04,50,57,6.666666666666667,1,1,0,0,0,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9993,12167,21712,21711,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,7.9939618,7.718276,0,6,-1,38.088741,0,-9,-9,2021,10,0,47,48,1,1,0,5.5855198,5.5855198,.05,.05,0,0,0,0,0,0,1,1,0,.0460159,0,50,57,44.36,54.04,7,1,1,0,0,7,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9993,12167,21713,-9,21711,21712,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.4849,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9994,12168,21714,21715,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,11,-8,15.130894,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,50.19,57.73,54.53,6.666666666666667,1,1,0,0,4,2,2,1,1241.5,481138.16,0,398597.63,0,0,0,1642.4504 +9994,12168,21715,21714,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.2937679,4.3000827,11,8,33.80542,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.12399954,0,1,1,0,4.205421,4.2624893,57.73,54.53,49.42,50.19,8.333333333333334,1,1,0,0,1,2,2,1,1241.5,481138.16,0,398597.63,0,0,0,1642.4504 +9995,12169,21716,21718,21719,-9,1,0,46,1,0,0,1,1,-9,1,1,0,0,0,4,-6,-54.49461,0,2,2,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.2,32.63,56.19,46.16,5,1,1,0,0,8,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12169,21717,-9,21716,21718,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-947.41998,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,6,-9,0,0,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12169,21718,21716,-9,-9,1,1,52,1,0,0,3,3,-9,0,2,8.4493484,8.5455284,0,4,6,17.584349,0,-9,2,2021,6,0,40,40,1,0,0,13.409463,13.409463,.05,.05,0,0,0,0,0,0,1,0,1,0,0,56.19,46.16,18.2,32.63,6.666666666666667,1,1,0,0,13,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12170,21719,-9,-9,21718,1,0,22,1,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.4304,0,-9,3,2021,36,12,0,20,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,11.26,42.52,-9,-9,0,1,1,0,0,3,1,1,0,1178,-38161.254,0,0,0,0,0,943.85931 +9996,12171,21720,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,3.6738894,3.5092521,0,0,-993.24286,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,3.4068532,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,84,235891.38,8136.1304,0,0,0,-1521.2212,2073.9272 +9997,12172,21721,21722,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.8778758,7.6986709,0,8,1,21.675196,0,3,3,2021,11,0,21,21,1,0,0,10.051124,10.051124,0,0,0,0,0,0,0,2,1,1,0,0,0,46.67,55.57,52,56,6.666666666666667,1,1,0,0,11,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9997,12172,21722,21721,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.0923424,7.8763995,0,8,-1,-75.049217,-9,2,2,2021,9,0,60,0,1,1,0,5.4626007,5.4626007,.05,.05,.05,0,0,0,0,0,1,1,0,6.465301,0,52,56,46.67,55.57,8,1,1,0,0,1,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9997,12172,21723,-9,21721,21722,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.03394,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9998,12173,21724,21725,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.023344,9.1726627,7.8783193,36,1,-51.600822,0,3,2,2021,7,0,47,50,1,0,0,17.09347,17.09347,.05,.05,0,0,0,0,0,2,0,0,0,3.3348935,7.9415784,61.12,51.57,57.16,56.15,1.666666666666667,1,1,0,0,10,6,5,1,755.5,894462.81,671713.19,265061.72,124417.02,0,0,6230.0073 +9998,12173,21725,21724,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2547569,8.1991253,0,36,-1,-24.101593,0,3,3,2021,8,0,38,38,1,0,0,14.431886,14.431886,0,0,0,0,0,0,0,0,0,0,0,6.8839192,0,57.16,56.15,61.12,51.57,10,1,1,0,0,10,6,5,1,755.5,894462.81,671713.19,265061.72,124417.02,0,0,6230.0073 +9999,12174,21726,21727,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,10,-1,64.814453,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.7,33.47,50.28,51.35,6.666666666666667,1,1,0,0,10,11,5,1,505.5,868771.38,442816.5,564015,206659.25,0,925.4375,1596.6367 +9999,12174,21727,21726,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.963376,8.7730865,0,10,1,48.819271,0,2,2,2021,8,0,42,38,1,0,0,21.719849,21.719849,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,53.7,33.47,5,1,1,0,0,11,11,5,1,505.5,868771.38,442816.5,564015,206659.25,0,925.4375,1596.6367 +10000,12175,21728,21729,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.0503283,9.0949354,0,3,-3,-66.765175,0,1,2,2021,26,12,44,44,1,12,0,24.688475,24.688475,0,0,0,0,0,0,0,2,0,0,0,6.9361067,0,43.77,26.98,36.66,36.04,8.333333333333334,1,1,0,0,13,13,5,1,1904,303107.44,229700.41,130252.04,110054.95,7748.7451,3395.8408,5520.9209 +10000,12175,21729,21728,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.3755608,7.9711471,0,3,3,-6.0735111,0,-9,-9,2021,20,8,20,16,1,8,0,22.764448,22.764448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.66,36.04,43.77,26.98,8.333333333333334,1,1,0,0,3,13,5,1,1904,303107.44,229700.41,130252.04,110054.95,7748.7451,3395.8408,5520.9209 +10001,12176,21730,21731,-9,-9,1,0,45,0,1,0,3,3,-9,0,5,7.919982,7.6381083,0,1,-2,72.38311,-9,-9,-9,2021,6,0,30,0,1,0,0,8.9590578,8.9590578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.35,57.86,10,1,1,0,0,8,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10001,12176,21731,21730,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.9218235,8.9269447,0,1,2,-4.7917566,-9,-9,-9,2021,9,0,60,0,1,0,0,11.878262,11.878262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.35,57.86,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10001,12176,21732,-9,21730,21731,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.117,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10002,12177,21733,21734,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.254509,8.1266012,0,7,-1,-20.770912,0,-9,-9,2021,25,11,82,40,1,11,0,6.2866759,6.2866759,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,64.06,42.3,57.48,8.333333333333334,1,1,0,0,2,12,4,1,785.5,190908.38,0,169433.44,69099.992,0,0,2522.2251 +10002,12177,21734,21733,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.4636703,7.7675261,0,7,1,-31.66361,0,3,3,2021,14,3,28,36,1,3,0,9.292758,9.292758,0,0,0,0,0,0,0,7,0,0,0,5.6692839,0,42.3,57.48,32.09,64.06,5,1,1,0,0,11,12,4,1,785.5,190908.38,0,169433.44,69099.992,0,0,2522.2251 +10003,12178,21735,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.0099125,8.0280609,0,0,0,-818.73749,-9,-9,-9,2021,11,0,36,0,1,2,0,9.9473295,9.9473295,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,10,13,4,1,144,186194.41,224813.64,0,0,0,0,835.31512 +10004,12179,21736,21737,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.9198642,8.0184402,9,8,42.943249,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4427176,7.9584026,37.36,53.06,59.54,46.05,10,1,1,0,0,1,10,4,1,141,1553450.6,963263.25,405909.66,0,0,0,3128.8535 +10004,12179,21737,21736,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.1150193,7.4369116,9,-8,57.515541,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3597858,7.144568,59.54,46.05,37.36,53.06,10,1,1,0,0,9,10,4,1,141,1553450.6,963263.25,405909.66,0,0,0,3128.8535 +10005,12180,21738,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.3932829,8.140707,0,0,0,-874.11029,-9,2,2,2021,10,0,42,0,1,0,0,12.504588,12.504588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,10,9,5,1,122,775198.94,612337.63,0,0,0,6170.3433,2411.3333 +10006,12181,21739,21740,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.3627872,7.715148,38,-1,12.970858,0,2,1,2021,4,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.7662947,7.2627645,53.44,55.06,60.12,54.8,8.333333333333334,1,1,0,0,10,12,4,1,1258.5,2367338,1416611.5,266799.25,0,0,0,2003.7029 +10006,12181,21740,21739,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.1131506,7.9220533,38,1,-234.12038,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.4515872,8.401639,60.12,54.8,53.44,55.06,8.333333333333334,1,1,0,0,12,12,4,1,1258.5,2367338,1416611.5,266799.25,0,0,0,2003.7029 +10007,12182,21741,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1079.923,0,3,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,38.15,34.13,-9,-9,5,1,1,0,0,0,10,1,0,45,20832.412,-73406.125,0,0,0,0,2136.9543 +10007,12183,21742,-9,21741,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9416556,8.2183838,0,0,0,-922.58984,0,2,3,2021,9,0,40,40,1,0,1,8.402504,8.402504,0,0,0,0,0,0,0,0,1,0,1,0,0,52,54.51,-9,-9,5,1,1,0,0,7,10,4,0,669,13924.597,0,0,0,-1279.9307,0,261.37122 +10008,12184,21743,21746,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,9.1661854,9.3757286,0,11,-3,-32.655918,0,1,1,2021,12,4,35,35,1,4,0,37.660313,37.660313,0,0,0,0,0,0,0,0,0,0,0,2.2771342,0,41.72,57.71,57.16,56.15,8.333333333333334,2,3,0,0,9,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21744,-9,21743,21746,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5667,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21745,-9,21743,21746,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.6171,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21746,21743,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.924037,9.2295713,0,11,3,18.120285,0,-9,-9,2021,6,0,45,41,1,0,0,24.188034,24.188034,0,0,0,0,0,0,0,0,0,0,0,1.2188056,0,57.16,56.15,41.72,57.71,10,1,1,0,0,13,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10009,12185,21747,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.6606,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,38.46,46.19,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,225,0,0,0,0,0,0,272.49268 +10009,12186,21748,-9,21747,-9,1,0,23,0,0,0,2,2,-9,0,2,6.7724223,6.8744111,0,0,0,-919.05243,0,3,-9,2021,20,8,14,17,1,8,1,7.7725267,7.7725267,0,0,0,0,0,0,0,0,1,0,1,0,0,19.8,46.73,-9,-9,3.333333333333333,4,2,0,0,5,2,2,0,467,53881.277,21567.775,0,0,2413.604,0,922.89349 +10010,12187,21749,21750,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,2.7241156,2.9245396,46,1,-63.451157,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.7241926,60.02,56.42,57.65,56.13,10,1,1,0,0,0,6,3,1,890.5,1042871.1,505421,367472.13,0,5913.5405,0,2510.5195 +10010,12187,21750,21749,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.0424414,8.1277571,46,-1,-103.39485,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5321007,7.9616046,57.65,56.13,60.02,56.42,8.333333333333334,1,1,0,0,9,6,3,1,890.5,1042871.1,505421,367472.13,0,5913.5405,0,2510.5195 +10011,12188,21751,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.2878,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,-9,-9,8,2,3,0,0,0,7,2,0,813,143621.8,0,0,0,0,0,278.50989 +10011,12189,21752,-9,21751,-9,1,1,31,0,0,0,1,1,-9,0,5,8.8748064,8.5781384,0,0,0,-991.20679,0,3,-9,2021,12,0,49,49,1,0,0,16.466166,16.466166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,64.27,-9,-9,5,2,3,0,0,7,7,5,0,546,333807.09,24122.018,284607.91,95011.867,0,0,2253.322 +10012,12190,21753,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.4720998,5.3162251,0,0,-992.67963,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.532393,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,514,-140897.67,0,0,0,0,0,1137.2273 +10013,12191,21754,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,7.9463744,8.1466312,0,0,0,-1057.3386,0,3,3,2021,17,6,40,40,1,6,0,11.162317,11.162317,0,0,0,0,0,0,0,0,1,1,0,0,0,40.49,33.09,-9,-9,1.666666666666667,1,1,0,0,12,7,4,1,568,1424918,713768,328702.44,0,0,0,1230.8386 +10014,12192,21755,21756,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.90236,5.9951019,11,1,.58318013,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.1150026,5.764205,59.31,49.81,45.58,31.91,8.333333333333334,1,1,0,0,0,4,2,0,569,248930.69,240676.5,145815.86,0,0,659.43652,1936.6045 +10014,12192,21756,21755,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.6496,5.299099,11,-1,-43.13792,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5816929,5.2949953,45.58,31.91,59.31,49.81,8.333333333333334,1,1,0,0,0,4,2,0,569,248930.69,240676.5,145815.86,0,0,659.43652,1936.6045 +10015,12193,21757,21758,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.8925219,7.9194365,0,11,2,-110.73041,0,2,2,2021,11,0,29,29,1,0,0,12.388841,12.388841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.68,55.46,55.05,49,5,1,1,0,0,13,7,5,1,1392,183959.17,264861.69,0,0,0,0,3638.9707 +10015,12193,21758,21757,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8906574,8.7803144,0,11,-2,-148.47017,0,2,1,2021,3,0,35,0,1,0,0,20.830925,20.830925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.05,49,38.68,55.46,8.333333333333334,1,1,0,0,14,7,5,1,1392,183959.17,264861.69,0,0,0,0,3638.9707 +10016,12194,21759,21760,-9,-9,1,0,26,1,1,0,1,1,-9,0,5,8.6093616,8.3103876,0,6,0,-83.814056,0,-9,-9,2021,6,1,38,51,1,1,0,18.138435,18.138435,.05,.05,0,0,0,0,0,0,1,1,0,2.6525834,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,9,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10016,12194,21760,21759,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.7103686,7.8735828,0,6,9,-66.541618,0,2,2,2021,10,0,35,40,1,0,0,9.4385891,9.4385891,.05,.05,.05,0,0,0,0,0,1,1,0,1.8307741,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10016,12194,21761,-9,21759,21760,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.68317,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10017,12195,21762,-9,21764,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.5745,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21763,21764,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.7381678,8.0157251,0,11,7,13.912887,0,-9,-9,2021,10,0,38,39,1,1,0,7.9817677,7.9817677,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,8,1,1,0,0,11,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21764,21763,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,11,-7,-4.4738126,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,6,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21765,-9,21764,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.0214,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10018,12196,21766,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7370057,7.8769789,0,0,0,-887.80139,0,-9,-9,2021,8,1,40,0,1,1,0,5.1243119,5.1243119,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,4,2,0,0,2,5,3,0,317,101668.22,0,0,0,0,0,1485.9392 +10019,12197,21767,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4329777,8.470809,0,0,0,-1047.4054,-9,2,2,2021,8,0,70,0,1,0,0,8.8902245,8.8902245,.05,.05,0,0,0,0,0,7,0,0,0,3.2281959,0,52.29,42.41,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,186,375324.97,385565.31,95523.094,53911.727,0,0,1452.6289 +10019,12198,21768,-9,21767,-9,1,1,23,0,0,0,2,2,-9,0,4,7.6140027,7.560967,0,0,0,-1120.6125,-9,2,-9,2021,10,0,40,0,1,1,1,6.907752,6.907752,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,2649,57937.258,-64414.91,0,0,0,0,1291.8099 +10020,12199,21769,-9,21770,21772,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3251,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21770,21772,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.2845492,7.0833206,0,7,-3,25.939758,0,2,2,2021,10,0,30,24,1,0,0,5.9681287,5.9681287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,54.2,57.49,8.333333333333334,1,1,0,0,3,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21771,-9,21770,21772,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1106.5695,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,-9,-9,10,1,1,1,0,0,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21772,21770,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.9151525,9.1245775,0,7,3,72.938286,0,2,2,2021,6,1,80,62,1,1,0,11.073196,11.073196,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.57,62.68,8.333333333333334,1,1,0,0,9,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10021,12200,21773,21774,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.5319219,7.6672463,46,-2,-16.086079,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4564352,50.42,14.63,62.67,41.67,8.333333333333334,1,1,0,0,0,8,4,1,1073,1769056,960219,456720,0,0,0,4539.75 +10021,12200,21774,21773,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,8.2453442,8.321023,46,2,-121.44938,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.41959,8.1788406,62.67,41.67,50.42,14.63,8.333333333333334,1,1,0,0,0,8,4,1,1073,1769056,960219,456720,0,0,0,4539.75 +10022,12201,21775,-9,21776,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.93323,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,416,96551.125,62759.773,0,0,541.97321,7024.2627,2377.9109 +10022,12201,21776,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,3,8.1984301,8.2855616,5.3262291,0,0,-949.51459,0,2,3,2021,10,0,22,22,1,0,0,19.95606,19.95606,0,0,0,0,0,0,0,27,1,1,0,5.7567825,0,40.88,48.98,-9,-9,5,1,1,0,0,9,4,3,1,416,96551.125,62759.773,0,0,541.97321,7024.2627,2377.9109 +10023,12202,21777,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,3.8981268,3.702147,0,0,-1087.2961,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3963799,4.2606397,64.84999999999999,21.6,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,472,116856.55,133212.84,0,0,0,0,1029.5355 +10024,12203,21778,-9,21779,-9,1,0,32,0,0,0,2,2,-9,0,3,7.76127,7.6911545,0,0,0,-900.72382,0,2,2,2021,11,2,38,37,1,2,1,5.8770847,5.8770847,.05,.05,0,0,0,0,0,7,1,1,0,.80344957,0,44.19,58.01,-9,-9,3.333333333333333,1,1,0,0,9,4,3,1,666,-77834.859,74162.969,0,0,0,0,1185.3102 +10024,12204,21779,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,5.7629385,5.943326,0,0,-933.35443,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8210063,31.16,24.94,-9,-9,0,1,1,0,1,0,4,2,1,247,322622.53,184736.92,63082.758,0,0,0,997.12335 +10025,12205,21780,-9,21781,21782,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-998.51691,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.66,50.85,-9,-9,5,1,1,0,0,0,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10025,12205,21781,21782,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,18,-1,12.260925,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,60.26,41.6,5,1,1,0,1,0,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10025,12205,21782,21781,-9,-9,1,1,53,0,1,0,3,3,-9,0,2,6.8359661,7.1941109,0,19,1,92.983566,0,3,3,2021,10,1,60,50,1,1,0,2.5255723,2.5255723,.05,.05,.05,0,0,0,0,66,1,1,0,0,0,60.26,41.6,16.04,23.99,6.666666666666667,1,1,0,0,10,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10026,12206,21783,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8707356,7.6955347,0,0,0,-965.6908,0,3,3,2021,6,1,40,40,1,1,0,6.8693609,6.8693609,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,1.666666666666667,1,1,0,0,9,12,3,0,2201,104934.45,155953.13,100241.01,29508.623,848.8125,0,1090.9854 +10026,12207,21784,-9,21783,-9,1,0,19,0,0,0,2,2,1,1,5,7.2004747,7.1536288,0,0,0,-1103.7604,-9,2,-9,2021,6,0,18,0,1,0,1,5.9254837,5.9254837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,532,8506.3135,0,0,0,0,0,1845.5043 +10027,12208,21785,21786,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.9433928,8.4557734,31,6,17.204662,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7224276,8.0208969,44.47,34.13,37.35,51.04,8.333333333333334,1,1,0,0,0,10,3,1,995,1211149.3,328235.56,483340.06,0,0,0,2279.8799 +10027,12208,21786,21785,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-32.205338,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4257598,0,37.35,51.04,44.47,34.13,8.333333333333334,1,1,0,0,0,10,3,1,995,1211149.3,328235.56,483340.06,0,0,0,2279.8799 +10028,12209,21787,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5824308,5.1160769,0,0,-872.42383,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0327415,5.1774745,41.01,41.97,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,338,163409.63,-130138.02,0,0,0,1310.3605,1466.3324 +10029,12210,21788,21789,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.695116,7.8072658,5,5,3.665504,0,-9,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.30019,7.6243973,51.24,58.84,44.92,57.6,8.333333333333334,1,1,0,0,0,2,4,1,605.5,1921341.6,1371875.6,405259.81,0,0,1025.9492,1528.8528 +10029,12210,21789,21788,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,7.8770895,7.4408793,5,-5,83.155243,-9,2,1,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8823056,7.6479392,44.92,57.6,51.24,58.84,8.333333333333334,1,1,0,0,13,2,4,1,605.5,1921341.6,1371875.6,405259.81,0,0,1025.9492,1528.8528 +10029,12211,21790,-9,21789,21788,1,1,24,0,0,0,1,1,-9,0,5,7.9971514,7.7287674,0,0,0,-1022.4271,-9,1,2,2021,7,1,42,0,1,1,0,8.6451187,8.6451187,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,1434,-100100.59,-112543.73,0,0,0,0,788.72797 +10030,12212,21791,21794,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.6821771,7.773241,0,17,3,67.355782,0,3,3,2021,22,6,44,42,1,6,0,7.2354293,7.2354293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.39,47.19,42.63,45.19,1.666666666666667,2,3,0,1,10,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21792,-9,21794,21791,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.07507,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21793,-9,21794,21791,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.1912,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21794,21791,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4927502,8.3911905,0,17,-3,8.638401,0,3,3,2021,7,0,38,47,1,0,0,12.347631,12.347631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.63,45.19,32.39,47.19,1.666666666666667,2,3,0,1,10,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10031,12213,21795,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,6.8225956,7.2567296,0,0,0,-886.56354,-9,-9,-9,2021,10,1,38,0,1,1,0,3.2597787,3.2597787,0,0,0,0,0,0,0,0,0,0,0,1.8510169,0,50.74,46.8,-9,-9,5,1,1,0,0,6,7,2,0,1558,54408.563,0,0,0,0,0,1419.0656 +10032,12214,21796,21799,-9,-9,1,1,24,1,3,0,2,2,-9,0,4,8.5848331,8.6587515,0,2,-5,-84.893646,0,-9,-9,2021,10,0,55,45,1,0,0,9.781476,9.781476,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.44,50.28,38.74,61.79,6.666666666666667,1,1,0,0,7,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21797,-9,21799,21796,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.60468,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21798,-9,21799,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.712,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21799,21796,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,7.1451731,7.2090039,0,2,5,105.68941,0,3,3,2021,13,1,20,37,1,1,0,5.7758517,5.7758517,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.74,61.79,55.44,50.28,5,1,1,0,0,6,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21800,-9,21799,-9,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-913.27277,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10033,12215,21801,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.5877404,6.5644636,0,0,-952.28467,0,3,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6332259,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,4,13,2,1,1250,164549.19,13716.93,192690.75,0,0,0,771.5697 +10034,12216,21802,21803,-9,-9,1,1,28,1,2,0,3,3,-9,1,4,0,0,0,4,6,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,34.79,49.19,8.333333333333334,1,1,1,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21803,21802,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,4,-6,0,0,3,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,49.19,54.2,57.49,10,4,2,0,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21804,-9,21803,21802,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.271,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21805,-9,21803,21802,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.64374,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10035,12217,21806,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-971.92181,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.55,36.21,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,242,-58394.434,0,0,0,1305.255,0,909.19763 +10035,12218,21807,-9,-9,21806,1,1,23,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1126.798,0,-9,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,127,0,0,0,0,0,0,468.62708 +10036,12219,21808,21809,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2592745,8.2486372,0,36,-12,-39.528633,0,2,3,2021,9,0,28,30,1,0,0,13.920774,13.920774,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,10,12,4,1,686,781447.88,453255.19,229608.63,0,856.57678,0,2648.104 +10036,12219,21809,21808,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7962599,6.668293,36,12,-50.838573,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8152368,7.4487581,60.29,52.11,54.2,57.49,10,1,1,0,0,10,12,4,1,686,781447.88,453255.19,229608.63,0,856.57678,0,2648.104 +10037,12220,21810,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.3066998,8.4595222,6.6499448,0,0,-1018.526,0,2,2,2021,11,0,48,48,1,0,0,11.188122,11.188122,0,0,.05,0,0,0,0,0,1,1,0,0,6.5446453,58.87,45.76,-9,-9,8.333333333333334,1,1,0,0,12,4,5,1,1661,645319.56,402107.59,235012.06,97830.922,1444.5591,0,1960.1111 +10038,12221,21811,21812,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,33,2,-21.197258,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,59.31,49.81,33.57,51.18,8.333333333333334,1,1,0,0,0,4,3,1,984.5,897070,642579.5,205188.34,0,10482.408,0,2827.3008 +10038,12221,21812,21811,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.6849589,7.8935757,33,-2,-75.263268,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4934812,33.57,51.18,59.31,49.81,6.666666666666667,1,1,0,0,5,4,3,1,984.5,897070,642579.5,205188.34,0,10482.408,0,2827.3008 +10039,12222,21813,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.0369186,7.9620857,0,0,0,-1001.1586,0,-9,-9,2021,11,2,37,37,1,2,0,10.192034,10.192034,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.34,60.31,-9,-9,1.666666666666667,1,1,0,0,10,11,4,1,423,718534.13,588431.94,0,0,1285.687,1149.7737,1843.948 +10039,12223,21814,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-989.20703,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.0792184,0,12.01,68.95,-9,-9,1.666666666666667,1,1,1,0,11,11,1,1,2237,478354.63,138941.89,0,0,0,0,767.38855 +10040,12224,21815,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1007.0314,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,1,5.7854958,0,66.804283,0,1,1,0,0,0,23.92,31.55,-9,-9,0,1,1,0,0,0,10,1,0,1616,90602.672,-68034.68,0,0,0,0,1131.4521 +10041,12225,21816,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.2544928,7.5492001,0,0,0,-905.26746,0,3,3,2021,12,1,39,38,1,1,0,3.9943364,3.9943364,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.89,39.19,-9,-9,5,1,1,0,0,9,13,3,1,1318,713263.94,65823.375,551810.06,0,0,0,905.54114 +10041,12226,21817,-9,-9,21816,1,0,22,0,0,0,1,1,1,0,4,6.6606998,6.9557652,0,0,0,-789.25732,-9,2,3,2021,10,2,15,0,1,2,1,6.096293,6.096293,.05,.05,0,0,0,0,0,27,0,0,0,0,0,39.93,57.25,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,320,-125826.63,-72089.617,0,0,0,0,536.5246 +10042,12227,21818,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0531034,8.077302,0,0,0,-1041.7855,0,3,3,2021,12,0,37,37,1,0,0,11.82953,11.82953,0,0,0,0,0,0,0,0,0,0,0,.96220785,0,48.29,52.15,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,950,898146.81,885407.75,0,0,0,0,1330 +10042,12228,21819,-9,21818,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0712147,7.3186812,0,0,0,-960.76758,0,2,-9,2021,18,6,16,17,1,6,1,8.6066608,8.6066608,0,0,0,0,0,0,0,0,0,0,0,0,0,41.99,53.75,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,676,39015.914,0,0,0,0,0,558.01544 +10043,12229,21820,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.6288786,8.7007332,0,0,0,-923.46948,0,2,3,2021,11,0,30,30,1,0,1,20.404625,20.404625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,5,6,5,1,730,98230.078,86847.727,164645.81,72219.492,0,0,2430.2354 +10044,12230,21821,21823,-9,-9,1,0,29,2,3,0,2,2,-9,0,3,7.1597114,7.167851,0,8,-5,79.688995,0,2,-9,2021,13,1,17,17,1,1,0,7.2252822,7.2252822,0,0,0,0,0,0,0,0,1,1,0,0,0,29.57,58.13,53.33,50.04,6.666666666666667,1,1,0,0,11,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21822,-9,21821,21823,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.2462,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21823,21821,-9,-9,1,1,34,2,3,0,2,2,-9,0,3,8.1558189,8.0180721,0,8,5,-6.502007,0,2,2,2021,8,0,60,65,1,0,0,5.8723097,5.8723097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.33,50.04,29.57,58.13,8.333333333333334,1,1,0,0,8,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21824,-9,21821,21823,1,0,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-792.11072,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21825,-9,21821,21823,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-948.33313,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10045,12231,21826,-9,21828,21827,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-969.03088,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12231,21827,21828,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.3432436,8.3976688,0,4,6,13.102607,0,-9,-9,2021,10,0,50,45,1,0,0,11.130401,11.130401,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.99,51.28,34.76,38.42,8.333333333333334,1,1,0,0,12,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12231,21828,21827,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.3287811,7.618741,0,20,-6,46.559822,0,2,2,2021,17,5,27,26,1,5,0,9.2677469,9.2677469,0,0,0,0,0,0,0,7,1,1,0,0,0,34.76,38.42,52.99,51.28,5,1,1,0,0,12,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12232,21829,-9,21828,21827,1,1,20,0,1,0,2,2,-9,0,2,7.3886919,7.213501,0,0,0,-972.05023,0,2,2,2021,18,6,45,21,1,6,1,3.9838698,3.9838698,0,0,0,0,0,0,0,2,1,1,0,0,0,14.6,62.69,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,169,154986.34,0,0,0,0,15606.232,467.77396 +10045,12233,21830,-9,21828,21827,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-953.49988,0,2,2,2021,6,0,0,16,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,294,-113321.47,0,0,0,0,0,0 +10046,12234,21831,-9,-9,21832,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1656,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10046,12234,21832,-9,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.0624037,8.9636145,0,0,0,-1170.9784,0,1,1,2021,11,0,43,40,1,0,0,24.808964,24.808964,.05,.05,0,0,0,0,0,0,0,0,0,4.2957506,0,49.28,52.09,-9,-9,3.333333333333333,2,3,0,1,12,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10046,12234,21833,-9,-9,21832,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.79944,-9,-9,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10047,12235,21834,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.5944896,6.7904744,0,0,-833.94543,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,27.003225,0,252.13391,0,1,1,0,3.0284021,6.798595,55.4,19.5,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,799,754436.38,-5683.2866,654847.06,0,0,0,828.62714 +10048,12236,21835,-9,-9,-9,1,0,25,1,2,0,2,2,-9,1,3,0,0,0,0,0,-1085.1888,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10048,12236,21836,-9,21835,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.5947,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10048,12236,21837,-9,21835,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.04761,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10049,12237,21838,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2733269,8.5145779,6.9564085,0,0,-923.2597,0,2,2,2021,10,1,37,0,1,1,0,11.95922,11.95922,.05,.05,.05,0,0,0,0,7,1,1,0,7.6519279,0,38.3,47.36,-9,-9,5,1,1,0,0,1,5,5,1,749,126664.01,92479.563,101464.28,0,0,0,3250.3865 +10050,12238,21839,21840,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.4456301,8.1330538,0,1,-10,67.091003,0,-9,-9,2021,9,0,40,44,1,0,0,11.277678,11.277678,0,0,0,0,0,0,0,2,0,0,0,4.8369155,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,5,6,4,0,1071,170716.39,0,73737.195,22397.457,11542.176,1690.9104,2824.3025 +10050,12238,21840,21839,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.8937702,8.1451159,0,1,10,-55.051777,-9,-9,-9,2021,6,0,36,0,1,0,0,9.0242891,9.0242891,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,0,1071,170716.39,0,73737.195,22397.457,11542.176,1690.9104,2824.3025 +10051,12239,21841,-9,21844,21842,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.59753,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21842,21844,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.3202658,9.6772013,0,8,-2,-10.469801,0,-9,-9,2021,12,0,36,40,1,0,0,39.967121,39.967121,.05,.05,0,0,0,0,0,0,0,0,0,4.6063805,0,52.99,51.28,65.06,41.58,8.333333333333334,1,1,0,0,9,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21843,-9,21844,21842,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4084,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21844,21842,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,20,2,38.285278,0,3,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,52.99,51.28,8.333333333333334,1,1,0,0,1,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10052,12240,21845,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.7599874,7.183269,0,0,-994.5708,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0566506,6.702693,60.7,47.65,-9,-9,10,1,1,0,0,0,13,2,1,553,122353.31,72517.57,0,0,0,0,1545.5245 +10053,12241,21846,21847,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.3384137,6.5328398,57,0,104.10516,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2233891,6.8143697,43.95,39.24,50.16,46.82,8.333333333333334,1,1,0,0,0,7,2,1,1014.5,151682.05,72147.719,0,0,0,0,1580.8032 +10053,12241,21847,21846,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,2.2029274,2.1495545,57,0,47.047825,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4249277,1.9977605,50.16,46.82,43.95,39.24,5,1,1,0,0,0,7,2,1,1014.5,151682.05,72147.719,0,0,0,0,1580.8032 +10054,12242,21848,21849,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.8975086,7.4863901,8,3,58.235741,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1185403,7.8341866,61.26,51.57,53.38,36.78,8.333333333333334,1,1,0,0,4,11,3,1,358,738969.63,358498.81,173959.16,0,3494.6863,0,2073.2737 +10054,12242,21849,21848,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,8,-3,27.894438,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.38,36.78,61.26,51.57,8.333333333333334,1,1,0,0,0,11,3,1,358,738969.63,358498.81,173959.16,0,3494.6863,0,2073.2737 +10055,12243,21850,21851,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,8.5602322,8.5132856,0,23,6,23.482729,0,1,1,2021,4,0,45,42,1,0,0,9.7221441,9.7221441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,55.27,44.81,8.333333333333334,2,3,0,0,7,5,3,1,579,935589.06,509252.53,203659.3,0,0,0,2525.3389 +10055,12243,21851,21850,-9,-9,1,0,39,0,1,0,3,3,-9,0,3,7.4604402,7.3328228,0,23,-6,61.878929,0,2,2,2021,12,0,20,25,1,2,0,8.6388693,8.6388693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.27,44.81,60.02,56.42,6.666666666666667,2,3,0,1,8,5,3,1,579,935589.06,509252.53,203659.3,0,0,0,2525.3389 +10055,12244,21852,-9,21851,21850,1,0,18,0,1,0,2,2,1,0,3,5.7628813,5.7113676,0,0,0,-1076.5944,-9,3,1,2021,16,5,6,0,1,5,1,5.6101885,5.6101885,0,0,0,0,0,0,0,0,1,1,0,0,0,35.11,44.64,-9,-9,6.666666666666667,2,3,0,0,3,5,2,1,5523,-133997.19,0,0,0,0,0,-623.00696 +10056,12245,21853,21854,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,8.1516123,8.1557236,0,3,-2,-129.66112,0,3,3,2021,12,0,37,37,1,0,0,9.0148525,9.0148525,.05,.05,0,0,0,0,0,0,0,0,0,2.6218064,0,43.37,57.28,45.43,52.23,8.333333333333334,1,1,0,0,10,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10056,12245,21854,21853,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.4764271,8.5594511,0,3,2,-107.20088,0,-9,-9,2021,12,0,48,47,1,0,0,13.119814,13.119814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.43,52.23,43.37,57.28,8.333333333333334,1,1,0,0,10,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10056,12245,21855,-9,21853,21854,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.74915,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10057,12246,21856,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.4031801,7.8473792,0,0,-1119.5481,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.353287,8.0005732,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1067,-92933.047,-72007.695,0,0,0,0,749.22943 +10058,12247,21857,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.9425263,5.9370942,0,0,-956.52875,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5702438,6.5045691,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1534,-27853.758,95251.914,0,0,0,0,1782.7517 +10059,12248,21858,21859,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,9.1644936,9.0413828,6,6,3.8335578,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7029762,9.0832968,55.11,47.63,60.02,56.42,8.333333333333334,2,3,0,0,0,11,5,1,967,1911757.5,1030888.2,341585.34,0,0,0,5262.5918 +10059,12248,21859,21858,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,6,-6,-7.4038472,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,55.11,47.63,10,2,3,0,0,0,11,5,1,967,1911757.5,1030888.2,341585.34,0,0,0,5262.5918 +10060,12249,21860,-9,21862,21861,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2649,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21861,21862,-9,-9,1,1,49,0,2,0,1,1,-9,1,2,8.8023739,8.6072025,0,7,1,88.308968,0,-9,-9,2021,13,2,35,47,1,2,0,20.141668,20.141668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.33,18.29,52.23,55.6,8.333333333333334,1,1,0,0,13,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21862,21861,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2402868,8.7173405,0,15,-1,-36.983871,0,1,2,2021,11,2,32,45,1,2,0,17.747587,17.747587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,49.33,18.29,8.333333333333334,1,1,0,0,11,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21863,-9,21862,21861,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-787.3316,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10061,12250,21864,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1201.8846,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,33.34,-9,-9,5,1,1,0,0,0,5,1,0,377,283899.84,0,0,0,0,0,84.127754 +10062,12251,21865,21866,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.4223652,8.2833939,0,8,1,-41.420578,0,3,3,2021,8,0,44,44,1,0,0,8.9668217,8.9668217,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.6,36.51,6.666666666666667,1,1,0,0,10,6,4,1,1071,529208.19,352521.34,155280.03,71442.234,0,0,2623.9844 +10062,12251,21866,21865,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.3549089,7.2525344,0,8,-1,-128.25462,0,3,3,2021,13,1,30,26,1,1,0,6.8148489,6.8148489,0,0,0,0,0,0,0,0,1,1,0,0,0,50.6,36.51,57.16,56.15,1.666666666666667,1,1,0,0,10,6,4,1,1071,529208.19,352521.34,155280.03,71442.234,0,0,2623.9844 +10063,12252,21867,21868,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.5660248,7.7384148,0,3,3,-45.38673,0,-9,2,2021,17,5,31,35,1,5,0,6.1391902,6.1391902,.05,.05,0,0,0,0,0,0,0,0,0,.48838231,0,40.31,48.9,50.43,53.69,8.333333333333334,1,1,0,1,9,7,4,1,198.5,152630.45,151353.13,0,0,0,0,1879.1809 +10063,12252,21868,21867,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.8356781,7.9949427,0,3,-3,-25.307478,0,-9,-9,2021,5,1,44,20,1,1,0,8.5773487,8.5773487,.05,.05,0,0,0,0,0,0,0,0,0,2.8816268,0,50.43,53.69,40.31,48.9,8.333333333333334,1,1,0,0,3,7,4,1,198.5,152630.45,151353.13,0,0,0,0,1879.1809 +10064,12253,21869,21870,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.8239231,9.6952457,0,21,-4,-21.003098,0,3,3,2021,22,10,46,48,1,10,0,33.537815,33.537815,.05,.05,0,0,0,0,0,0,0,0,0,5.4640851,0,35.53,63.81,54.2,57.49,3.333333333333333,1,1,0,0,8,5,5,1,1204.5,901823.13,801205.38,0,0,0,0,6064.4316 +10064,12253,21870,21869,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4278674,7.8981357,0,21,4,-3.0082979,0,-9,-9,2021,11,2,25,25,1,2,0,11.689387,11.689387,.05,.05,0,0,0,0,0,0,0,0,0,2.0741754,0,54.2,57.49,35.53,63.81,8.333333333333334,1,1,0,0,9,5,5,1,1204.5,901823.13,801205.38,0,0,0,0,6064.4316 +10064,12254,21871,-9,21870,21869,1,1,28,0,0,0,1,1,-9,0,4,8.059371,8.3274994,0,0,0,-976.78986,0,2,2,2021,10,0,38,37,1,1,1,11.338273,11.338273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,677,-141406.77,21919.107,0,0,2551.0076,0,2613.6653 +10065,12255,21872,-9,21873,21874,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1033.2914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21873,21874,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.4805379,7.5350418,0,15,0,149.43187,0,2,1,2021,13,1,28,28,1,1,0,9.460165,9.460165,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,59.49,57.16,48.27,1.666666666666667,1,1,0,0,8,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21874,21873,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.8744049,8.6045408,0,15,0,71.630524,0,3,3,2021,10,0,42,38,1,0,0,20.191229,20.191229,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,48.27,32.48,59.49,5,1,1,0,0,10,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21875,-9,21873,21874,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1061.7386,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21876,-9,21873,21874,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-942.47528,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10066,12256,21877,21878,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.5583663,7.4559236,33,4,-33.806583,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8543272,7.3398447,54.69,57.47,44.14,50.07,8.333333333333334,1,1,0,0,10,11,5,1,662,486726.75,250564.5,267436.5,0,0,0,7430.7388 +10066,12256,21878,21877,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4998264,8.9345226,7.6585689,33,-4,-20.697704,0,2,3,2021,13,1,25,25,1,1,0,21.613911,21.613911,0,0,0,0,0,0,0,0,0,0,0,5.8751817,7.5565462,44.14,50.07,54.69,57.47,8.333333333333334,1,1,0,0,13,11,5,1,662,486726.75,250564.5,267436.5,0,0,0,7430.7388 +10067,12257,21879,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0437284,6.9045339,0,0,-995.47333,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4570951,6.9060478,61.45,29.78,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,2705,607877.31,409094.78,367112.94,0,0,0,1653.6919 +10068,12258,21880,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.7816238,6.9608307,0,0,-1106.2314,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5764549,6.7369528,60.12,54.8,-9,-9,0,1,1,0,0,7,7,2,1,1529,131483.27,261894.3,0,0,1426.5203,0,373.52103 +10069,12259,21881,21882,-9,-9,1,1,67,0,2,0,2,2,-9,0,3,7.7470331,8.1844254,7.2065001,10,29,-33.556698,0,3,-9,2021,10,0,30,30,1,0,0,9.3596287,9.3596287,0,0,0,0,0,0,0,0,1,1,0,0,7.1160688,54.97,47.63,29.13,46.2,8.333333333333334,1,1,0,0,10,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21882,21881,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.5083003,7.4911876,0,10,-29,36.258152,0,2,2,2021,18,6,36,30,1,6,0,4.989603,4.989603,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,46.2,54.97,47.63,3.333333333333333,1,1,0,0,12,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21883,-9,21882,21881,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.6549,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21884,-9,21882,21881,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-987.87817,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10070,12260,21885,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,8.2553587,7.9549541,0,0,-1109.0406,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6353197,7.8135948,56.19,41.56,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1042,172766.66,94932.422,0,0,0,0,3362.0642 +10071,12261,21886,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3873529,8.5047369,0,0,0,-1028.0137,0,1,1,2021,8,0,35,35,1,0,0,17.861473,17.861473,0,0,0,0,0,0,0,0,1,1,0,1.4632072,0,53.46,53.93,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,414,-62040.844,0,0,0,0,0,2149.7307 +10072,12262,21887,21888,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,8.3386602,8.5258608,0,31,-2,32.649666,0,2,2,2021,8,0,32,35,1,0,0,16.055651,16.055651,.05,.05,0,0,0,0,0,0,0,0,0,4.9303489,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,14,13,4,1,455.5,1592521.9,1054794.5,354728.72,0,0,0,3363.5718 +10072,12262,21888,21887,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,8.2782001,8.1916504,0,31,2,-74.770355,0,3,3,2021,8,0,60,50,1,0,0,10.550294,10.550294,.05,.05,0,0,0,0,0,0,0,0,0,2.310684,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,4,1,455.5,1592521.9,1054794.5,354728.72,0,0,0,3363.5718 +10073,12263,21889,21890,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.4821515,6.8530874,5.7655282,36,-6,-34.573635,0,3,3,2021,10,0,10,10,1,0,0,6.8171067,6.8171067,0,0,0,0,0,0,0,0,1,1,0,0,5.7412171,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,12,10,2,1,494,928714,96202.891,314853.38,0,0,0,1712.1345 +10073,12263,21890,21889,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.0135269,6.9358916,31,6,77.013054,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6091752,6.9544902,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,10,2,1,494,928714,96202.891,314853.38,0,0,0,1712.1345 +10074,12264,21891,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.2019787,6.183424,0,0,-964.33154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8562155,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,525,1121197.5,-27524.039,858165.94,0,0,0,1358.8521 +10075,12265,21892,21893,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9376388,8.0700836,0,35,-8,-116.47421,0,2,2,2021,15,4,19,18,1,4,0,16.876768,16.876768,0,0,0,0,0,0,0,0,0,0,0,4.529511,0,51.01,41.69,59.98,41.37,10,1,1,0,0,10,9,5,1,631.5,1554106,1025293.5,360910,-15541.209,-69.718689,0,4449.7744 +10075,12265,21893,21892,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3820076,8.7180014,7.8232088,35,8,16.864317,0,3,-9,2021,9,0,20,20,1,0,0,22.660408,22.660408,.05,.05,0,0,0,0,0,0,0,0,0,5.8271918,8.2175102,59.98,41.37,51.01,41.69,8.333333333333334,1,1,0,0,10,9,5,1,631.5,1554106,1025293.5,360910,-15541.209,-69.718689,0,4449.7744 +10076,12266,21894,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.2608089,8.4374399,0,0,0,-926.89392,0,2,2,2021,8,0,37,37,1,0,1,11.513849,11.513849,0,0,.05,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,5,2,3,0,0,7,9,4,1,719,48574.516,49105.402,77397.641,84136.391,0,0,754.59576 +10077,12267,21895,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.1500177,7.1823039,0,0,-945.51465,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9970603,7.0429978,60.13,49.27,-9,-9,8.333333333333334,4,2,0,0,7,8,2,1,513,382218.16,47719.867,398477.44,0,0,0,1088.2755 +10078,12268,21896,21898,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,8.5681419,8.8113766,6.6626039,3,-8,92.341698,0,-9,-9,2021,6,0,44,44,1,0,0,13.66736,13.66736,0,0,0,0,0,0,0,0,1,1,0,6.5817461,0,51.73,58.82,50.03,52.62,8.333333333333334,1,1,0,0,8,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21897,-9,21896,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.8177,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21898,21896,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.0228205,7.7517934,0,3,8,-95.636894,0,2,2,2021,12,0,40,0,1,0,0,8.9834957,8.9834957,.05,.05,0,0,0,0,0,0,1,1,0,3.6835093,0,50.03,52.62,51.73,58.82,6.666666666666667,1,1,0,0,10,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21899,-9,21896,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.2088,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10079,12269,21900,21901,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,9.0392265,9.0097513,0,3,-4,-66.551926,0,2,1,2021,14,4,37,39,1,4,0,22.777782,22.777782,0,0,0,0,0,0,0,0,0,0,0,4.8757682,0,43.86,63.67,55.79,52.62,8.333333333333334,1,1,0,0,7,7,5,1,2142.5,-2469.1094,18872.387,0,0,8233.9512,0,4630.5933 +10079,12269,21901,21900,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8100471,8.7672148,0,3,4,29.397339,0,-9,-9,2021,7,0,37,41,1,0,0,22.568686,22.568686,.05,.05,0,0,0,0,0,0,0,0,0,7.2594399,0,55.79,52.62,43.86,63.67,8.333333333333334,2,3,0,0,8,7,5,1,2142.5,-2469.1094,18872.387,0,0,8233.9512,0,4630.5933 +10080,12270,21902,21903,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,7.3284125,7.4798799,38,0,-13.106355,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,4.1558833,0,0,1,1,0,0,7.6806908,38.73,47.65,57.16,56.15,5,1,1,0,0,9,12,3,1,464,602922.38,385364.13,293462.59,0,0,0,2290.8872 +10080,12270,21903,21902,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.5667071,8.0560989,33,9,66.131706,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3214946,57.16,56.15,38.73,47.65,6.666666666666667,1,1,0,0,11,12,3,1,464,602922.38,385364.13,293462.59,0,0,0,2290.8872 +10081,12271,21904,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6132631,8.110508,0,0,0,-976.35022,0,2,2,2021,12,0,36,36,1,0,0,17.759443,17.759443,.05,.05,0,0,0,0,.97722316,0,0,0,0,0,0,31.46,57.32,-9,-9,5,2,3,0,0,10,8,5,1,2200,882626.69,573338.44,310445.19,0,6603.3701,0,2117.5122 +10081,12272,21905,-9,21904,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1056.006,-9,2,-9,2021,21,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0922025,0,41.34,56.62,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,492,9530.124,0,0,0,0,0,-5.2487445 +10082,12273,21906,-9,21907,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.41351,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,166,-113030,8308.2598,0,0,0,0,2118.157 +10082,12273,21907,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.5042257,8.9355717,3.8223543,0,0,-1025.3724,0,1,1,2021,10,0,41,45,1,0,0,17.038906,17.038906,.05,.05,0,0,0,0,0,0,1,1,0,3.9830084,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,166,-113030,8308.2598,0,0,0,0,2118.157 +10083,12274,21908,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.4704428,9.693285,0,0,0,-801.8468,0,1,-9,2021,7,0,60,55,1,0,0,28.318367,28.318367,.05,.05,0,0,0,0,0,0,1,1,0,1.4412766,0,52.46,49.49,-9,-9,6.666666666666667,1,1,0,0,14,12,5,1,3001,1138842.9,357248.06,329742.69,0,0,478.39001,5025.5376 +10084,12275,21909,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.0792122,8.3380079,0,0,0,-981.90131,0,-9,-9,2021,12,0,36,35,1,0,0,9.848794,9.848794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,59.94,-9,-9,6.666666666666667,1,1,0,0,4,7,4,0,445,-167260.39,43676.98,0,0,0,5528.7075,2281.0667 +10085,12276,21910,21911,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9917803,7.2156348,0,11,-1,-.83494067,0,3,3,2021,19,7,10,10,1,7,0,23.366966,23.366966,.05,.05,0,0,0,0,0,7,0,0,0,0,0,39.36,39.13,52.4,52.91,1.666666666666667,1,1,0,0,12,11,5,1,1159,1267374,1108573.5,201433.09,-12946.598,34887.43,0,2732.2278 +10085,12276,21911,21910,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4733782,8.4793949,0,11,1,26.35578,0,2,2,2021,9,0,47,47,1,0,0,13.344595,13.344595,.05,.05,0,0,0,0,2.5921233,7,0,0,0,0,0,52.4,52.91,39.36,39.13,8.333333333333334,1,1,0,0,12,11,5,1,1159,1267374,1108573.5,201433.09,-12946.598,34887.43,0,2732.2278 +10086,12277,21912,21913,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,36,3,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.29,34.87,40.89,31.37,5,1,1,1,0,0,4,1,0,669.5,1384.75,28384.943,0,0,0,0,2249.3174 +10086,12277,21913,21912,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,36,-3,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.89,31.37,42.29,34.87,8.333333333333334,1,1,0,0,0,4,1,0,669.5,1384.75,28384.943,0,0,0,0,2249.3174 +10086,12278,21914,-9,21913,21912,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1033.2123,1,2,3,2021,4,0,0,43,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,550,40557.094,0,0,0,0,0,2714.5024 +10087,12279,21915,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6491652,8.1067352,0,0,0,-1001.9599,0,2,-9,2021,12,2,43,43,1,2,0,10.945149,10.945149,.05,.05,.05,0,0,0,0,0,0,0,0,6.2491312,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,617,191544.52,128376.55,0,0,-39.140644,0,1966.6785 +10088,12280,21916,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.9168987,4.9708672,0,0,-1007.7523,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5292964,5.2743368,52.95,32.42,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1223,271009.84,0,95596.094,20295.934,0,-561.94464,1067.2886 +10089,12281,21917,-9,21920,21919,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.39441,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21918,-9,21920,21919,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1029.266,-9,1,2,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21919,21920,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.9055099,9.4586,0,6,2,112.2445,0,2,3,2021,9,0,60,65,1,0,0,29.456533,29.456533,.05,.05,0,0,0,0,0,2,1,1,0,5.5421777,0,54.2,57.49,62.39,56.71,1.666666666666667,1,1,0,0,9,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21920,21919,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,0,0,0,6,-2,-88.259804,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6753101,0,62.39,56.71,54.2,57.49,8.333333333333334,1,1,0,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21921,-9,21920,21919,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.56396,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10090,12282,21922,21924,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.5177298,8.0123472,0,16,-10,14.068419,0,2,1,2021,6,0,37,37,1,0,0,12.352033,12.352033,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.39,59.18,8.333333333333334,2,3,0,0,4,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21923,-9,21922,21924,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.7449,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21924,21922,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.5836849,8.6773987,0,16,10,-29.11108,0,3,1,2021,11,0,36,36,1,0,0,20.411884,20.411884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,57.16,56.15,1.666666666666667,2,3,0,0,10,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21925,-9,21922,21924,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.4948,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10091,12283,21926,21927,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,11,-10,-4.3395891,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,.46971634,0,0,1,1,0,4.0878234,0,51.85,43.98,53,47,8.333333333333334,1,1,0,0,0,4,3,1,1800.5,734457.25,286577.41,352483.09,0,0,0,1589.2771 +10091,12283,21927,21926,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.5544419,7.6881618,11,10,145.0311,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5671105,53,47,51.85,43.98,8,1,1,0,0,0,4,3,1,1800.5,734457.25,286577.41,352483.09,0,0,0,1589.2771 +10092,12284,21928,21929,-9,-9,1,0,28,1,2,0,3,3,-9,0,4,0,0,0,11,-2,-143.61328,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,49.63,34.8,6.666666666666667,1,1,0,0,6,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21929,21928,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.2244482,8.4649754,0,7,2,99.036598,-9,2,2,2021,18,7,43,0,1,7,0,12.342574,12.342574,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.63,34.8,38.34,62.12,1.666666666666667,1,1,0,0,7,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21930,-9,21928,21929,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.045,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21931,-9,21928,21929,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.07928,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10093,12285,21932,21933,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.2188172,7.371078,9,0,98.036858,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,3.5579581,11.700464,20.792631,7,1,1,0,.84401524,7.3128996,33.68,21.16,57.06,21.25,6.666666666666667,1,1,0,0,0,11,2,1,503.5,409753.34,254339.22,56936.77,0,0,0,2908.2007 +10093,12285,21933,21932,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,0,19.271002,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,1.1438972,0,57.06,21.25,33.68,21.16,8.333333333333334,1,1,0,0,0,11,2,1,503.5,409753.34,254339.22,56936.77,0,0,0,2908.2007 +10094,12286,21934,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6982636,7.0701632,0,0,-949.99738,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5351267,24.79,50.46,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,663,96268,168203.05,0,0,0,0,167.64107 +10095,12287,21935,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.9055462,9.4222631,0,0,0,-1078.1036,0,-9,-9,2021,15,3,50,55,1,3,0,24.089155,24.089155,0,0,0,0,0,0,0,0,0,0,0,6.0785546,0,48.36,52.17,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,541,79860.891,0,0,0,0,0,2415.4019 +10096,12288,21936,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,6.4359779,6.3579416,0,0,-1040.97,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6934552,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,475,-121032.75,0,0,0,0,0,986.81519 +10097,12289,21937,21938,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4992952,6.3852544,7,4,-30.82131,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,.091281131,0,7,1,1,0,0,6.4253726,53,46,51,46,8,1,1,0,0,0,11,2,1,1881.5,210477.67,110994.75,101285.78,0,0,0,2129.1536 +10097,12289,21938,21937,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-11.698733,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,26.351168,0,14.5,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,11,2,1,1881.5,210477.67,110994.75,101285.78,0,0,0,2129.1536 +10098,12290,21939,-9,21943,21941,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.08881,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21940,-9,21943,21941,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1056.7371,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21941,21943,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,6.2270465,6.2979922,0,8,0,-81.294151,0,-9,-9,2021,15,4,16,12,1,4,0,3.9771771,3.9771771,.05,.05,0,0,0,0,0,0,1,1,0,4.0684657,0,49.04,45.33,54.2,57.49,8.333333333333334,1,1,0,0,10,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21942,-9,21943,21941,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-945.7417,-9,1,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,1.666666666666667,1,1,0,0,10,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21943,21941,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.5643387,8.5845852,0,26,0,92.945251,0,2,1,2021,9,1,27,29,1,1,0,31.236944,31.236944,0,0,0,0,0,0,0,2,1,1,0,3.7957642,0,54.2,57.49,49.04,45.33,8.333333333333334,1,1,0,0,8,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10099,12291,21944,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,8.776392,9.2618513,7.416307,0,0,-965.09381,0,3,3,2021,8,0,45,39,1,0,0,20.07601,20.07601,.05,.05,0,0,0,0,0,0,1,1,0,4.9068828,7.6894555,60.13,49.27,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,455,751940.31,498430.66,318262.91,0,0,0,3434.6008 +10100,12292,21945,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.9044986,7.6538963,0,0,-1046.2007,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.676321,8.3185291,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,239,1102625.5,269580.09,397572.47,0,0,0,2496.7126 +10101,12293,21946,21947,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.5719252,7.5261798,0,41,-3,52.535816,0,3,3,2021,6,0,28,25,1,0,0,5.0604472,5.0604472,.05,.05,0,0,0,0,0,0,0,0,0,2.7219496,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,8,2,5,1,233,1143237,501564.06,218114.28,0,0,0,3703.7207 +10101,12293,21947,21946,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.7662926,8.8360777,0,41,3,-51.430279,0,3,2,2021,6,0,48,50,1,0,0,19.033527,19.033527,.05,.05,.05,0,0,0,0,0,0,0,0,4.511775,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,233,1143237,501564.06,218114.28,0,0,0,3703.7207 +10101,12294,21948,-9,21946,21947,1,1,33,0,0,0,2,2,-9,0,4,7.683043,7.5604124,0,0,0,-1032.8143,0,3,2,2021,6,0,44,44,1,0,0,6.7098846,6.7098846,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,2,3,1,867,-132051.11,-96167.297,0,0,0,0,1049.1365 +10102,12295,21949,21950,-9,-9,1,1,61,1,1,0,3,3,-9,0,4,7.8353891,7.7882781,0,7,1,-122.76384,0,3,3,2021,12,0,36,36,1,0,0,10.718184,10.718184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,6,13,5,1,906,348411.47,199477.67,194857.81,31933.84,32565.619,14880.824,5201.8472 +10102,12295,21950,21949,-9,-9,1,0,60,1,1,0,2,2,-9,0,4,8.7887087,9.224556,0,7,-1,51.108463,0,3,3,2021,12,2,29,32,1,2,0,23.62698,23.62698,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,4,13,5,1,906,348411.47,199477.67,194857.81,31933.84,32565.619,14880.824,5201.8472 +10102,12296,21951,21955,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,0,0,0,1,-1,43.184875,-9,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,58.06,49.04,55.86,6.666666666666667,1,1,0,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21952,-9,-9,21955,1,0,17,1,1,1,3,0,0,0,3,0,5.4346313,5.5663285,0,0,-1023.2651,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0778289,0,47.01,43.22,-9,-9,6.666666666666667,1,1,0,1,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21953,-9,-9,21955,1,1,15,1,1,1,3,0,-9,0,3,0,0,0,0,0,-908.14301,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21954,-9,21951,21955,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.8574,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21955,21951,21950,21949,1,1,31,1,1,0,2,2,-9,0,3,8.682169,8.7727232,0,1,1,24.378668,0,3,3,2021,10,0,40,40,1,0,0,23.309155,23.309155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.62,58.06,3.333333333333333,1,1,0,0,8,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10103,12297,21956,21959,-9,-9,1,1,32,2,2,0,2,2,-9,0,4,9.2492151,9.2267265,0,10,0,5.3627381,0,1,2,2021,12,0,91,42,1,0,0,14.687156,14.687156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,54.28,53.62,43.07,6.666666666666667,1,1,0,0,9,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21957,-9,21959,21956,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4957,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21958,-9,21959,21956,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-989.50427,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21959,21956,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.2937527,7.9720039,0,10,0,33.994194,0,2,3,2021,10,4,30,30,1,4,0,12.958591,12.958591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.62,43.07,40.53,54.28,8.333333333333334,1,1,0,0,12,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10104,12298,21960,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.6285667,7.486083,0,0,-1017.8478,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5849116,7.5215559,44.13,32.58,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1379,379786.84,163513.91,148991.73,0,0,0,866.67871 +10105,12299,21961,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.85114,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,10,1,1,0,0,3,9,1,0,1560,11711.348,0,0,0,0,0,-159.30627 +10106,12300,21962,21963,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7655816,7.5053682,1,-3,21.479351,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4342217,61.04,44.94,50,47,10,1,1,0,0,0,7,2,1,595,760896.06,0,249482.44,0,6845.165,0,2225.9106 +10106,12300,21963,21962,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,1,3,-109.85014,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5161285,0,50,47,61.04,44.94,7,4,1,0,0,0,7,2,1,595,760896.06,0,249482.44,0,6845.165,0,2225.9106 +10107,12301,21964,21967,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,9.5838413,9.6127071,0,1,5,-82.239052,-9,1,1,2021,7,0,40,0,1,0,0,35.349155,35.349155,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,9,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21965,-9,21967,21964,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.54724,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21966,-9,21967,21964,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-816.81122,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21967,21964,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,8.4490013,8.6752262,0,1,-5,16.396879,-9,-9,-9,2021,11,0,45,0,1,0,0,11.677228,11.677228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,10,1,1,0,0,9,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10108,12302,21968,21969,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.5648375,5.31108,31,-6,-33.757977,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0944824,5.6266532,51.24,58.84,57.16,56.15,5,1,1,0,0,0,10,2,1,1494.5,438991.81,0,387166.22,0,0,0,7156.0889 +10108,12302,21969,21968,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,5.9370975,6.0347042,16,6,89.619484,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3662596,5.7602715,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,10,2,1,1494.5,438991.81,0,387166.22,0,0,0,7156.0889 +10109,12303,21970,21971,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.9987602,8.1696358,0,21,2,23.667879,0,3,2,2021,11,0,25,30,1,0,0,13.124976,13.124976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,48.45,57.49,8.333333333333334,1,1,0,0,11,13,4,1,848,118040.52,-18612.887,116866.08,43169.219,0,1763.5889,3612.4333 +10109,12303,21971,21970,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4739552,8.3657618,0,9,-2,-4.1968384,0,2,2,2021,12,1,16,40,1,1,0,25.62112,25.62112,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,41.07,60.93,8.333333333333334,1,1,0,0,11,13,4,1,848,118040.52,-18612.887,116866.08,43169.219,0,1763.5889,3612.4333 +10110,12304,21972,-9,21973,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7253,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10110,12304,21973,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.2644758,8.4408903,4.9511099,0,0,-932.04022,0,2,1,2021,15,3,25,24,1,3,0,16.697519,16.697519,0,0,0,0,0,0,0,0,1,1,0,5.8757243,0,35.78,55.1,-9,-9,3.333333333333333,1,1,0,1,7,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10110,12304,21974,-9,21973,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.98975,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10111,12305,21975,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-893.33356,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.01,24.91,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1183,127976.25,0,102404.61,0,0,0,419.40308 +10112,12306,21976,21977,-9,-9,1,0,54,0,0,0,1,1,-9,0,1,0,0,0,37,0,82.811569,0,2,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.14,23.4,44.39,45.63,6.666666666666667,2,3,0,0,0,8,2,0,534,459697,214690.22,194734.06,0,0,0,1741.4725 +10112,12306,21977,21976,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.5293326,6.679008,37,9,-73.948624,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7898846,44.39,45.63,59.14,23.4,8.333333333333334,2,3,0,1,0,8,2,0,534,459697,214690.22,194734.06,0,0,0,1741.4725 +10112,12307,21978,-9,21976,21977,1,0,24,0,0,0,1,1,-9,0,4,8.514864,8.7296219,0,0,0,-940.28577,0,1,1,2021,11,0,40,37,1,2,1,16.566521,16.566521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,1,8,5,0,666,-1275.2822,7735.4409,0,0,0,0,3044.8916 +10112,12308,21979,-9,21976,21977,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.69147,-9,1,2,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.58,54.91,-9,-9,5,2,3,0,0,0,8,1,0,933,184731.22,0,0,0,0,0,-127.35419 +10113,12309,21980,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.626256,5.6251888,0,0,-863.1203,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.6114582,0,25.850641,0,1,1,0,0,5.5975261,48.56,39.35,-9,-9,6.666666666666667,1,1,0,0,7,6,2,1,128,-20686.023,0,0,0,0,0,1429.3685 +10114,12310,21981,-9,21983,21984,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.7977,0,3,3,2021,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,1,0,0,6,1,0,116,107064.42,0,0,0,0,0,264.20212 +10114,12311,21982,-9,21983,21984,1,0,26,0,0,0,1,1,1,0,3,0,0,0,0,0,-1025.4058,-9,3,3,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,-9,-9,5,2,3,1,0,0,6,1,0,1537,-276879.31,0,0,0,0,0,244.99065 +10114,12312,21983,21984,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,31,4,0,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.35,35.33,37.56,35.77,5,2,3,0,0,0,6,1,0,745,36373.773,81437.609,0,0,0,0,550.61145 +10114,12312,21984,21983,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,-4,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.56,35.77,39.35,35.33,5,2,3,0,0,0,6,1,0,745,36373.773,81437.609,0,0,0,0,550.61145 +10114,12313,21985,-9,21983,21984,1,1,23,0,0,0,2,2,-9,0,4,7.7699752,8.1088486,0,0,0,-1013.5695,0,3,3,2021,10,0,40,40,1,1,1,7.0660315,7.0660315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,0,1323,56444.742,78865.172,0,0,0,0,1067.9551 +10114,12314,21986,-9,21983,21984,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1001.6052,-9,3,3,2021,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,10,2,3,1,0,0,6,1,0,690,-72263.414,0,0,0,0,0,0 +10115,12315,21987,-9,21990,21988,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.17834,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21988,21990,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.1030703,7.770318,0,15,10,5.0406041,0,-9,2,2021,11,0,55,18,1,0,0,5.554986,5.554986,.05,.05,0,0,0,0,0,2,1,0,1,0,0,31.93,58.41,36.99,19.58,6.666666666666667,1,1,0,0,3,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21989,-9,21990,21988,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1178.7764,-9,1,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.53,64.73,-9,-9,10,1,1,0,0,1,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21990,21988,-9,-9,1,0,38,0,1,0,1,1,-9,1,1,0,0,0,15,-10,20.86779,0,2,2,2021,23,7,0,18,3,7,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,36.99,19.58,31.93,58.41,8.333333333333334,1,1,0,1,1,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10116,12316,21991,21992,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8918028,8.4372101,0,7,12,25.836233,0,-9,-9,2021,7,0,63,45,1,0,0,9.2356291,9.2356291,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,49.46,56.91,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,879,707580.75,262205.06,253386.66,104124.48,0,1163.6526,4154.7661 +10116,12316,21992,21991,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.3199053,8.6054049,0,7,-12,37.3493,0,2,-9,2021,6,0,74,44,1,0,0,6.0782971,6.0782971,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.46,56.91,8.333333333333334,1,1,0,0,9,12,5,1,879,707580.75,262205.06,253386.66,104124.48,0,1163.6526,4154.7661 +10117,12317,21993,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9755268,8.0288486,0,0,0,-962.62097,0,2,2,2021,7,0,37,39,1,0,0,9.4794197,9.4794197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,372,239236.61,58162.363,98655.711,78683.5,0,0,1347.2086 +10117,12318,21994,-9,21993,-9,1,1,19,0,0,0,2,2,1,0,3,7.742907,7.7311807,0,0,0,-1038.3524,-9,2,-9,2021,7,0,35,0,1,0,1,7.6232753,7.6232753,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,58.63,-9,-9,5,1,1,0,0,2,12,3,1,331,-28644.469,0,0,0,0,0,1396.3899 +10118,12319,21995,21996,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9045744,7.7136245,0,8,-1,10.856455,-9,-9,-9,2021,7,0,37,0,1,0,0,7.7634444,7.7634444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.1,39.2,8.333333333333334,1,1,0,0,9,6,5,1,994,596307.5,227589.16,283094.84,127469.19,0,0,4013.9824 +10118,12319,21996,21995,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.7441912,9.0671978,0,8,1,-82.702141,0,-9,-9,2021,8,1,35,38,1,1,0,20.944309,20.944309,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.1,39.2,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,994,596307.5,227589.16,283094.84,127469.19,0,0,4013.9824 +10119,12320,21997,21998,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.6320906,8.5615225,0,12,2,-112.19381,0,2,1,2021,17,5,42,48,1,5,0,18.233372,18.233372,0,0,0,0,0,0,0,2,1,0,1,0,0,41.17,52.68,52,55,3.333333333333333,1,1,0,0,8,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10119,12320,21998,21997,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.7027378,8.8441744,0,12,-2,38.601551,0,-9,-9,2021,9,0,40,38,1,1,0,21.101101,21.101101,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,55,41.17,52.68,7,1,1,0,0,1,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10119,12320,21999,-9,21997,21998,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.28625,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10120,12321,22000,-9,22002,22001,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.1053,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10120,12321,22001,22002,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.078083,8.0275326,0,10,6,-21.836773,0,-9,-9,2021,12,0,40,45,1,0,0,9.3874435,9.3874435,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.87,65.23999999999999,23.34,55.42,6.666666666666667,1,1,0,0,7,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10120,12321,22002,22001,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,10,-6,-18.172462,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.34,55.42,30.87,65.23999999999999,5,1,1,0,0,6,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10121,12322,22003,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.1156,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.30978394,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1382.5,-141293.25,0,0,0,1896.1809,0,1595.5143 +10121,12322,22004,-9,22003,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-941.88043,-9,2,-9,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,26.15,62.44,-9,-9,5,1,1,0,0,0,6,1,0,1382.5,-141293.25,0,0,0,1896.1809,0,1595.5143 +10121,12323,22005,-9,22003,-9,1,1,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-954.58661,0,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.24,50.75,-9,-9,5,1,1,1,0,0,6,1,0,348,62883.266,0,0,0,0,0,-234.16621 +10122,12324,22006,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.8861809,5.6734962,0,0,-1012.4096,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0999122,5.930521,65.79000000000001,31.96,-9,-9,10,1,1,0,0,12,9,2,1,1088,-56793.102,31907.826,0,0,0,0,842.83673 +10123,12325,22007,-9,22010,22008,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22008,22010,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,8.0602455,8.2395926,0,2,2,174.73676,0,-9,-9,2021,4,1,68,45,1,1,0,6.1835637,6.1835637,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,50.19,39.84,56.29,8.333333333333334,2,3,0,0,6,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22009,-9,22010,22008,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-853.79004,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22010,22008,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,0,0,0,2,-2,47.429611,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,56.29,45.64,50.19,8.333333333333334,2,3,0,0,3,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10124,12326,22011,22012,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.6613889,7.6307898,0,28,0,-42.513821,0,2,2,2021,14,2,23,22,1,2,0,8.2632465,8.2632465,.05,.05,0,0,0,0,0,7,1,1,0,7.2854486,0,38.74,40.53,18.77,31.02,5,2,3,0,0,12,8,3,1,506.5,-18426.797,174519.34,0,0,1497.2749,1973.8267,2338.6157 +10124,12326,22012,22011,-9,-9,1,1,58,0,0,0,1,1,-9,0,1,0,7.6612601,7.8936086,30,9,13.603841,0,3,3,2021,34,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.6806283,18.77,31.02,38.74,40.53,3.333333333333333,2,3,0,1,0,8,3,1,506.5,-18426.797,174519.34,0,0,1497.2749,1973.8267,2338.6157 +10124,12327,22013,-9,22011,22012,1,1,26,0,0,0,2,2,-9,0,4,8.1125727,8.3605337,0,0,0,-908.94385,0,3,1,2021,11,0,41,0,1,0,1,8.2762899,8.2762899,.05,.05,0,0,0,0,0,0,1,1,0,6.5052004,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,1,3,8,4,1,283,103225.27,95633.336,0,0,0,0,1310.2472 +10124,12328,22014,-9,22011,22012,1,0,24,0,0,0,2,2,0,1,2,0,0,0,0,0,-935.23688,-9,3,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.12,46.76,-9,-9,5,2,3,0,0,0,8,1,1,1377,27005.193,0,0,0,0,0,1027.9886 +10125,12329,22015,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,8.9109631,8.4695253,0,0,0,-832.59442,0,2,2,2021,11,0,39,45,1,0,1,15.153679,15.153679,.05,.05,0,0,0,0,0,0,0,0,0,1.6972218,0,46.51,53.53,-9,-9,6.666666666666667,1,1,0,0,2,5,5,1,232,-72260.523,-24816.09,0,0,0,0,2327.9832 +10126,12330,22016,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,2,6.9882445,6.7495956,0,0,0,-1055.5621,0,2,2,2021,21,9,24,20,1,9,0,5.9891062,5.9891062,0,0,0,0,0,0,0,0,1,1,0,0,0,23.82,53.21,-9,-9,1.666666666666667,1,1,0,1,8,1,2,0,53,165335.08,0,0,0,0,0,2305.4233 +10127,12331,22017,22019,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,9.1750698,8.969388,0,6,2,-9.4567642,0,2,2,2021,15,4,42,40,1,4,0,22.382517,22.382517,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,44.94,47.21,15.56,48.81,3.333333333333333,1,1,0,0,7,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12331,22018,-9,22019,22017,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.5192,-9,2,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.403451,0,41,50.3,-9,-9,6.666666666666667,1,1,0,1,0,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12331,22019,22017,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,6,-2,-34.214729,0,2,2,2021,31,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,15.56,48.81,44.94,47.21,0,1,1,0,1,6,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12332,22020,-9,22019,22017,1,0,18,0,0,0,2,2,1,1,1,0,0,0,0,0,-1072.1738,-9,2,1,2021,25,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2411005,0,35.08,21.06,-9,-9,0,1,1,0,0,0,11,1,1,1296,0,0,0,0,0,0,551.78833 +10128,12333,22021,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.3507891,7.3155026,0,0,0,-959.28601,-9,2,2,2021,10,0,60,0,1,0,0,3.8047409,3.8047409,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.8,48.61,-9,-9,8.333333333333334,1,1,0,1,12,6,3,0,755,-26944.113,84965.656,0,0,0,166.43742,1603.6221 +10128,12333,22022,-9,22021,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.54724,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,755,-26944.113,84965.656,0,0,0,166.43742,1603.6221 +10129,12334,22023,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1091.6678,-9,2,2,2021,19,0,0,0,4,6,0,0,0,0,0,0,1,0,26.557617,0,0,1,1,0,0,0,27.41,25.55,-9,-9,5,1,1,0,0,0,1,1,0,2297,236703.8,0,116336.36,0,0,0,1442.3827 +10130,12335,22024,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,8.3060169,8.4327917,0,0,-1058.8883,0,3,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6036108,8.0249014,60.7,39.78,-9,-9,8.333333333333334,1,1,0,0,0,4,4,0,525,269872.41,121145.77,204492.91,0,0,11078.045,2993.6455 +10131,12336,22025,-9,22029,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,0,0,-888.53021,0,3,3,2021,13,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22026,-9,22025,-9,1,1,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-936.29382,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22027,-9,22025,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.8284,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22028,-9,22025,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.65283,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12337,22029,-9,-9,-9,1,0,70,1,3,0,3,3,-9,0,3,0,0,0,0,0,-995.42932,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,2.25278,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,0,961,-290690.41,0,0,0,0,0,1392.0232 +10132,12338,22030,-9,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,7.627955,7.7249522,0,0,0,-899.36755,0,2,3,2021,12,0,30,30,1,0,0,7.7661228,7.7661228,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,1004,160952.63,62604.145,0,0,0,0,2108.3489 +10133,12339,22031,22032,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6077514,7.7305622,0,11,4,-18.964754,0,2,3,2021,7,0,35,35,1,0,0,9.3483305,9.3483305,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.47,51.38,10,1,1,0,0,10,10,4,0,251,394757.25,186926,142518.84,-8226.9238,0,0,1910.8707 +10133,12339,22032,22031,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.7386317,7.5843935,0,11,-4,-41.32169,0,3,3,2021,10,0,45,45,1,0,0,6.6493554,6.6493554,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.47,51.38,54.2,57.49,6.666666666666667,1,1,0,0,8,10,4,0,251,394757.25,186926,142518.84,-8226.9238,0,0,1910.8707 +10134,12340,22033,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.0337515,5.9749589,0,0,-979.94855,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9075875,5.9849696,60.24,50.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1285,839822.44,-28918.316,583412.94,0,0,0,880.76788 +10135,12341,22034,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3249388,5.1897922,0,0,-954.92029,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5727229,5.3039932,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,206,339211.78,92961.414,73603.164,0,0,0,616.17157 +10136,12342,22035,22036,-9,-9,1,1,28,0,0,0,2,2,0,0,1,0,0,0,2,5,-25.731426,-9,-9,-9,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.11,40.75,35.78,49.9,3.333333333333333,1,1,0,0,0,7,3,0,1834.5,9253.5234,0,0,0,0,0,1448.8455 +10136,12342,22036,22035,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.5228581,7.9206481,6.1825085,2,-5,97.038971,0,-9,-9,2021,21,8,24,30,1,8,0,12.27477,12.27477,0,0,0,0,0,0,0,0,0,0,0,5.7438745,0,35.78,49.9,36.11,40.75,8.333333333333334,1,1,0,0,3,7,3,0,1834.5,9253.5234,0,0,0,0,0,1448.8455 +10137,12343,22037,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,7.0926332,7.1705866,0,0,-970.76147,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6365066,7.1178746,40.86,21.98,-9,-9,5,1,1,0,0,11,13,3,0,116,1078510.3,775585.75,115332.18,0,0,0,1454.8489 +10138,12344,22038,22039,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,11,-11,0,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.6485395,0,46.65,25.83,41.1,23.01,6.666666666666667,1,1,0,0,0,12,1,0,2293,75492.219,0,0,0,0,0,2339.3003 +10138,12344,22039,22038,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,0,0,11,11,0,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.1,23.01,46.65,25.83,6.666666666666667,1,1,0,0,1,12,1,0,2293,75492.219,0,0,0,0,0,2339.3003 +10139,12345,22040,22041,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,31,7,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,27.89,18.61,5,1,1,0,0,0,12,1,0,286.5,-68230.469,0,0,0,0,0,1888.7793 +10139,12345,22041,22040,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,31,-7,0,0,3,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,27.89,18.61,33.32,18.46,1.666666666666667,1,1,0,0,0,12,1,0,286.5,-68230.469,0,0,0,0,0,1888.7793 +10140,12346,22042,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.2688189,7.2797098,0,0,-915.89954,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0670948,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,749,218697.88,241347.94,0,0,0,0,1522.3514 +10141,12347,22043,22044,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.9347134,8.7543144,0,22,0,173.19356,0,3,2,2021,8,1,37,40,1,1,0,18.116716,18.116716,.05,.05,0,0,0,0,0,0,0,0,0,3.6622548,0,50.26,46.01,48.3,49.79,8.333333333333334,1,1,0,0,8,4,5,1,716,2172929.5,1927108.8,191424.58,35424.902,7043.6582,0,4712.4023 +10141,12347,22044,22043,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.2459307,8.9440184,0,6,0,-78.640999,0,2,2,2021,14,2,37,41,1,2,0,27.318861,27.318861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.3,49.79,50.26,46.01,8.333333333333334,1,1,0,0,8,4,5,1,716,2172929.5,1927108.8,191424.58,35424.902,7043.6582,0,4712.4023 +10142,12348,22045,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.4591837,6.1554847,0,0,-875.617,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.707397,5.9620357,42.17,56.08,-9,-9,10,1,1,0,0,11,5,2,1,335,296402.09,93647.742,95594.031,0,0,0,576.7868 +10143,12349,22046,22047,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.2877793,7.3783898,0,2,2,-47.052856,0,-9,-9,2021,12,0,16,16,1,0,0,11.189335,11.189335,0,0,0,0,0,0,0,2,1,0,1,0,0,33.74,57.46,36.59,38.99,3.333333333333333,1,1,0,1,4,5,3,0,1263,-90379,0,116357.83,118974.08,4932.4922,0,701.51831 +10143,12349,22047,22046,-9,-9,1,0,28,0,0,0,2,2,-9,0,2,6.2851167,6.0917773,0,2,-2,-49.7728,0,-9,-9,2021,19,8,16,40,1,8,0,2.7635555,2.7635555,0,0,0,0,0,0,0,0,1,0,1,0,0,36.59,38.99,33.74,57.46,5,1,1,0,1,1,5,3,0,1263,-90379,0,116357.83,118974.08,4932.4922,0,701.51831 +10144,12350,22048,22049,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,68,2,-106.07162,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.56,39.66,60.97,16.73,8.333333333333334,1,1,0,0,0,9,2,1,776.5,538268.88,10528.873,385849.81,0,0,0,1706.66 +10144,12350,22049,22048,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.9856639,4.6875172,68,-2,65.672829,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4234324,60.97,16.73,52.56,39.66,5,1,1,0,0,0,9,2,1,776.5,538268.88,10528.873,385849.81,0,0,0,1706.66 +10145,12351,22050,-9,22051,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.35089,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,612.5,931497.13,947795.44,153422.94,28577.752,0,2193.6335,2184.1938 +10145,12351,22051,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1149693,7.6688156,0,0,0,-986.80408,0,1,-9,2021,6,0,44,44,1,0,0,6.3618193,6.3618193,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,44.56,-9,-9,1.666666666666667,3,4,0,0,8,8,3,0,612.5,931497.13,947795.44,153422.94,28577.752,0,2193.6335,2184.1938 +10146,12352,22052,22053,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,6.6250386,6.5525155,0,7,7,-57.630211,0,-9,2,2021,7,0,25,25,1,0,0,3.7306321,3.7306321,.05,.05,0,0,0,0,0,7,1,1,0,0,0,59.54,24.47,52.82,36.16,8.333333333333334,1,1,0,0,8,9,3,1,1074,503239.5,363091.78,136480.45,105434.05,0,0,1457.2107 +10146,12352,22053,22052,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.1866007,7.5311785,0,7,-7,-91.831177,0,2,3,2021,11,2,38,40,1,2,0,7.6251841,7.6251841,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,36.16,59.54,24.47,5,1,1,0,1,9,9,3,1,1074,503239.5,363091.78,136480.45,105434.05,0,0,1457.2107 +10146,12353,22054,-9,22053,22052,1,1,27,0,0,0,2,2,-9,0,3,6.5411139,6.4850636,0,0,0,-1039.2783,0,2,2,2021,20,8,22,14,1,8,1,3.6441357,3.6441357,0,0,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,1.666666666666667,1,1,0,0,6,9,2,1,721,7106.6152,0,0,0,0,0,803.78882 +10147,12354,22055,-9,22057,22056,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.2159,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10147,12354,22056,22057,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.1206522,8.1151018,0,5,-2,235.42912,0,-9,-9,2021,9,1,44,39,1,1,0,9.3050518,9.3050518,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.8,50.31,60.12,54.8,6.666666666666667,1,1,0,0,15,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10147,12354,22057,22056,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.6677513,8.0027666,0,5,2,12.711917,0,-9,-9,2021,8,0,39,39,1,0,0,4.6826005,4.6826005,0,0,0,0,0,0,0,87,1,1,0,0,0,60.12,54.8,34.8,50.31,10,1,1,0,0,13,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10148,12355,22058,-9,22060,22061,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.0306,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22059,-9,22060,22061,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.3849,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22060,22061,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,13,-3,-48.132587,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,.70805371,0,1,1,0,0,0,48,56,51,56,7,2,3,0,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22061,22060,22063,22062,1,1,38,0,3,0,1,1,-9,0,4,8.4075832,8.5222664,0,6,3,67.30381,0,3,2,2021,10,0,35,35,1,1,0,14.307106,14.307106,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51,56,48,56,7,2,3,0,0,11,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12356,22062,22063,-9,-9,1,1,74,0,3,0,2,2,-9,0,3,0,0,0,6,2,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,51,46,8,2,3,0,0,0,8,1,1,261.5,256715.47,-53020.055,225380.59,0,0,0,1320.9701 +10148,12356,22063,22062,-9,-9,1,0,72,0,3,0,3,3,-9,0,3,0,0,0,6,-2,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,8,1,1,261.5,256715.47,-53020.055,225380.59,0,0,0,1320.9701 +10149,12357,22064,22065,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,63,-1,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,40.57,25.84,51.25,33.32,5,1,1,0,0,0,11,1,0,982,219212.59,0,211910.34,0,0,0,1538.2078 +10149,12357,22065,22064,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,6,1,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,120.6249,0,27,1,1,0,0,0,51.25,33.32,40.57,25.84,8.333333333333334,1,1,0,0,0,11,1,0,982,219212.59,0,211910.34,0,0,0,1538.2078 +10150,12358,22066,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.2710581,7.1791644,0,0,-945.83319,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.1612978,0,44.621655,0,1,1,0,0,7.3798947,59.15,20.54,-9,-9,1.666666666666667,1,1,0,0,0,5,3,0,589,299463.72,132945.2,187868.88,0,0,0,1277.1019 +10150,12359,22067,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.3789043,4.4762378,0,0,-965.24841,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,4.2286825,42.72,27.94,-9,-9,10,1,1,0,0,0,5,2,0,112,231260.69,0,0,0,0,0,1497.5535 +10151,12360,22068,22069,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,30.23,28.4,0,1,1,0,0,0,12,1,0,1330.5,354365.13,0,285553,87534.375,0,0,1808.9099 +10151,12360,22069,22068,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.23,28.4,16.04,23.99,1.666666666666667,1,1,0,1,0,12,1,0,1330.5,354365.13,0,285553,87534.375,0,0,1808.9099 +10152,12361,22070,-9,22071,22073,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1023.8345,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22071,22073,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,7.5496488,7.7226815,0,16,3,-69.360809,0,3,3,2021,12,1,10,10,1,1,0,20.11709,20.11709,.05,.05,0,0,0,0,0,0,1,1,0,6.8668175,0,43.49,39.65,54.94,35.22,3.333333333333333,1,1,0,0,9,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22072,-9,22071,22073,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.12292,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22073,22071,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.4254656,7.2820172,0,6,-3,28.6388,0,-9,-9,2021,10,1,60,30,1,1,0,2.5267603,2.5267603,.05,.05,0,0,0,0,0,0,1,1,0,7.602107,0,54.94,35.22,43.49,39.65,8.333333333333334,1,1,0,0,9,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10153,12362,22074,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4052281,7.2585588,0,0,-1059.1869,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0103507,49.91,50.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,938,396874.53,27998.189,154877.42,0,0,0,946.00085 +10154,12363,22075,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.1849,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3719649,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,254,-70300.43,0,0,0,0,0,682.37518 +10155,12364,22076,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.7428131,5.7918377,0,0,-1215.8616,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,2.8026183,0,22.674484,0,1,1,0,0,5.6380181,43.64,27.74,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,647,298928,10787.102,183339.78,0,0,0,2055.9292 +10156,12365,22077,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,0,0,0,0,-933.74048,-9,-9,-9,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.96,56.33,-9,-9,3.333333333333333,1,1,1,0,8,11,1,0,652.5,40124.996,0,0,0,0,0,1595.134 +10156,12365,22078,-9,22077,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-935.8114,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,1,0,652.5,40124.996,0,0,0,0,0,1595.134 +10157,12366,22079,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.9003639,8.8332644,0,0,0,-1046.0375,0,3,3,2021,8,1,36,60,1,1,0,21.765463,21.765463,.05,.05,0,0,0,0,0,90,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,5,0,813,757963.44,439617.47,262633.56,18310.582,0,3026.0566,1864.7456 +10158,12367,22080,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.244791,8.2579117,0,0,0,-1034.1422,0,1,1,2021,13,1,35,57,1,1,0,12.116467,12.116467,.05,.05,0,0,0,0,0,0,1,1,0,1.8192533,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,759,-30918.066,149337.77,120072.64,59098.773,12416.498,4045.6792,2291.02 +10159,12368,22081,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.9049087,5.9461656,0,0,-1002.4108,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0818954,5.7262797,51.41,56.15,-9,-9,8.333333333333334,3,4,0,1,10,8,2,1,177,703078.06,175630.09,337936,0,0,0,644.73254 +10160,12369,22082,22083,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6200438,8.9858627,0,36,4,42.17374,0,3,3,2021,5,0,55,40,1,0,0,13.476397,13.476397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.67,56.74,41.06,62.04,8.333333333333334,1,1,0,0,10,5,5,1,810,645376.13,194083.31,201694.39,0,0,0,3307.7729 +10160,12369,22083,22082,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3673744,8.3049898,0,36,-4,31.700022,0,2,2,2021,6,0,37,37,1,0,0,15.39397,15.39397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,48.67,56.74,5,1,1,0,0,10,5,5,1,810,645376.13,194083.31,201694.39,0,0,0,3307.7729 +10161,12370,22084,22085,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5434661,7.3657722,31,0,37.819073,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5764675,7.1863198,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,5,4,3,1,399.5,1664341.5,875752,378132.69,0,0,0,3499.8271 +10161,12370,22085,22084,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.9568706,6.7408366,32,0,-7.3580451,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8649297,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,7,4,3,1,399.5,1664341.5,875752,378132.69,0,0,0,3499.8271 +10161,12371,22086,-9,22085,22084,1,1,33,0,0,0,2,2,-9,0,4,8.4599075,8.5345736,0,0,0,-1176.8972,0,2,2,2021,12,1,47,40,1,1,0,11.485581,11.485581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.76,57.79,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,678,444435.56,301658.47,115626.38,105104.26,12524.808,504.03497,1786.6406 +10162,12372,22087,22088,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,8.9348717,9.1063271,0,8,11,70.129677,0,3,3,2021,6,0,10,10,1,0,0,66.30722,66.30722,.05,.05,0,0,0,0,0,0,1,1,0,5.3225412,0,64.97,32.14,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10162,12372,22088,22087,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.9648728,7.9186139,0,8,-11,55.098351,0,2,2,2021,7,0,35,25,1,0,0,7.6820016,7.6820016,0,0,0,0,0,0,0,0,1,1,0,7.7716031,0,57.16,56.15,64.97,32.14,8.333333333333334,1,1,0,0,10,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10162,12372,22089,-9,22088,22087,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.8794,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10163,12373,22090,22091,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.1729755,7.944447,43,-1,8.7161379,0,3,3,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2509079,47.19,53.98,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,195.5,2017573,1033161.8,733616.88,0,0,0,2758.5825 +10163,12373,22091,22090,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,7.7546768,7.964108,0,43,1,-57.841061,0,2,1,2021,18,4,20,25,1,4,0,10.897951,10.897951,0,0,0,0,0,0,0,0,0,0,0,4.361114,0,54.96,53.17,47.19,53.98,8.333333333333334,1,1,0,0,13,9,4,1,195.5,2017573,1033161.8,733616.88,0,0,0,2758.5825 +10164,12374,22092,-9,22095,22093,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0459,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22093,22095,-9,-9,1,1,36,1,2,0,1,1,-9,0,5,8.5208845,8.4037027,0,19,0,-35.760365,0,1,1,2021,8,1,70,55,1,1,0,8.2631502,8.2631502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,28.25,55.98,10,1,1,0,0,11,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22094,-9,22095,22093,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.80878,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22095,22093,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,0,0,0,19,0,-103.69082,0,2,2,2021,23,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.25,55.98,51.14,60.45,1.666666666666667,1,1,0,1,6,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10165,12375,22096,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,5,0,7.5316234,7.8270416,0,0,-1143.0909,-9,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.936276,7.9964342,20.89,67.56,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22097,-9,22096,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.95026,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22098,-9,22096,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0554,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22099,-9,22096,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-876.56805,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10166,12376,22100,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,5.2794638,5.4960294,0,0,-936.77429,0,3,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8421068,42.26,19.76,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,2542,250573.16,-16058.097,-19530.947,17682.779,0,0,1114.3276 +10167,12377,22101,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-983.10413,0,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,38.9,-9,-9,10,1,1,0,0,0,4,1,1,681,26935.24,0,4693.5674,0,0,0,503.82001 +10168,12378,22102,-9,22105,22103,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.49567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22103,22105,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,8.5325289,8.169733,0,7,0,-29.782061,0,2,2,2021,5,0,38,39,1,0,0,14.189792,14.189792,.05,.05,.05,0,0,0,0,0,1,1,0,2.1092105,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22104,-9,22105,22103,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.21588,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22105,22103,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.6307859,8.5705404,0,7,0,79.674568,0,-9,-9,2021,9,0,30,32,1,0,0,20.194372,20.194372,.05,.05,0,0,0,0,0,0,1,1,0,6.6317677,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10169,12379,22106,22107,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.9558654,7.7250667,40,-15,-53.929314,0,-9,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.6744461,53.32,22.68,55.12,44.8,1.666666666666667,3,4,0,1,6,9,3,1,1000.5,618054.75,215427.97,229272.88,0,0,0,2373.6394 +10169,12379,22107,22106,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.0193062,4.875104,40,15,-29.852274,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,16.886488,0,0,1,1,0,6.7003613,5.0223031,55.12,44.8,53.32,22.68,3.333333333333333,4,2,0,0,9,9,3,1,1000.5,618054.75,215427.97,229272.88,0,0,0,2373.6394 +10170,12380,22108,22109,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4394445,8.578702,0,31,-5,45.601189,0,2,-9,2021,12,0,37,37,1,0,0,13.348372,13.348372,0,0,0,0,0,0,0,0,1,1,0,0,0,48.94,34.29,61.85,34.03,8.333333333333334,1,1,0,0,9,1,5,0,2285,738976.06,278088.38,460494.34,152454.95,8260.3262,823.46466,4134.8066 +10170,12380,22109,22108,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.6855955,8.0503826,5.6173582,31,5,123.23165,0,2,2,2021,6,0,30,30,1,0,0,9.3709917,9.3709917,.05,.05,.05,0,0,0,0,0,1,1,0,1.2964154,5.7447062,61.85,34.03,48.94,34.29,8.333333333333334,1,1,0,0,11,1,5,0,2285,738976.06,278088.38,460494.34,152454.95,8260.3262,823.46466,4134.8066 +10170,12381,22110,-9,22108,22109,1,0,24,0,0,0,1,1,1,0,4,8.2190685,8.1980715,0,0,0,-1040.7278,-9,2,2,2021,13,1,37,0,1,1,1,11.718246,11.718246,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,1,4,0,493,114705.89,-7821.6812,0,0,0,0,1563.4564 +10171,12382,22111,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2741928,8.3174877,0,0,0,-1061.33,0,-9,2,2021,18,6,37,38,1,6,0,9.6718063,9.6718063,0,0,0,0,0,0,0,0,0,0,0,3.1636295,0,34.21,49.64,-9,-9,1.666666666666667,1,1,0,0,14,4,4,1,722,180705.7,0,263924.28,0,0,0,2214.8816 +10172,12383,22112,22113,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,8.423748,8.7652082,7.2311687,51,2,1.0363959,0,3,2,2021,6,0,20,16,1,0,0,27.649134,27.649134,0,0,0,1,0,0,0,0,1,1,0,6.2591481,7.3706651,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,15,10,5,1,1072,3468430.5,1016046.6,1106929.6,0,0,0,4585.9883 +10172,12383,22113,22112,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6657419,6.1548486,51,-2,-56.653233,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3904057,6.2549458,55.19,54.26,57.16,56.15,10,1,1,0,0,15,10,5,1,1072,3468430.5,1016046.6,1106929.6,0,0,0,4585.9883 +10173,12384,22114,22115,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.7291899,9.0008059,0,28,-1,63.373253,0,2,-9,2021,30,12,56,50,1,12,0,17.476706,17.476706,0,0,0,0,0,0,0,2,1,1,0,0,0,31.04,62.55,30.33,45.18,3.333333333333333,4,2,0,1,12,2,4,1,746.5,684540.75,434363.22,431588.16,190185.52,0,0,5232.5938 +10173,12384,22115,22114,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.0196571,8.0496149,0,28,1,-59.226559,0,2,2,2021,21,8,46,46,1,8,0,8.2323351,8.2323351,.05,.05,0,0,0,0,0,7,1,1,0,3.2238581,0,30.33,45.18,31.04,62.55,6.666666666666667,1,1,0,0,8,2,4,1,746.5,684540.75,434363.22,431588.16,190185.52,0,0,5232.5938 +10174,12385,22116,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.784936,7.9000382,0,0,0,-996.23999,0,2,2,2021,11,0,40,50,1,0,0,7.2250557,7.2250557,.05,.05,0,0,0,0,0,0,0,0,0,1.6988088,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,155,275991.97,-61256.594,0,0,0,0,1604.5795 +10175,12386,22117,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.5761819,6.413888,0,0,-1034.9857,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,7.8667188,0,58.084934,0,1,1,0,0,6.5804014,66.13,18.36,-9,-9,5,1,1,0,0,0,12,2,0,1005,319736.06,229005.84,197791.64,0,5792.6133,0,2904.4751 +10176,12387,22118,22119,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,7.8747444,7.9253621,0,48,0,36.660309,0,3,1,2021,10,0,18,20,1,0,0,15.985656,15.985656,0,0,0,1,0,5.6518149,0,0,1,1,0,6.9251938,0,54.9,41.3,58.14,48.07,8.333333333333334,1,1,0,0,14,2,4,1,679.5,970724.25,681900.5,130568.63,0,0,0,5207.6758 +10176,12387,22119,22118,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.0715857,7.9300427,13,0,159.11922,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.10499,7.9450641,58.14,48.07,54.9,41.3,8.333333333333334,1,1,0,0,13,2,4,1,679.5,970724.25,681900.5,130568.63,0,0,0,5207.6758 +10177,12388,22120,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.2380977,5.5232019,0,0,-1025.6815,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,3.8239939,0,0,1,1,0,0,5.3247552,60.25,22.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,3094,-19128.338,20843.096,0,0,0,0,457.84027 +10178,12389,22121,22122,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.725503,9.4128265,0,9,0,100.18419,0,2,1,2021,8,0,60,60,1,0,0,31.549099,31.549099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.38,58.02,8.333333333333334,1,1,0,0,9,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12389,22122,22121,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,9,0,-24.295343,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12389,22123,-9,22122,22121,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-882.25781,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12390,22124,-9,22122,22121,1,0,21,0,1,1,2,0,0,0,4,0,7.8527594,7.5116267,0,0,-1000.3613,-9,2,1,2021,17,4,0,0,2,4,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.4435644,0,48.27,47.75,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1050,145712.33,55657.793,0,0,1426.8385,0,400.91037 +10178,12391,22125,-9,22122,22121,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1114.7081,-9,2,1,2021,22,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,0,13,1,1,1455,-86014.625,0,0,0,0,0,0 +10179,12392,22126,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1021.0637,0,-9,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,222,6972.4375,0,0,0,0,1105.3491,2389.1526 +10180,12393,22127,22128,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,0,0,54,0,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,19.194424,0,0,1,1,0,1.994994,0,43.08,37.18,41.36,34.01,8.333333333333334,2,3,0,0,11,4,1,1,1220.5,815009.25,519753.78,251949.36,0,0,0,183.2747 +10180,12393,22128,22127,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,11,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,35.355827,0,0,1,1,0,0,0,41.36,34.01,43.08,37.18,6.666666666666667,2,3,0,0,0,4,1,1,1220.5,815009.25,519753.78,251949.36,0,0,0,183.2747 +10180,12394,22129,-9,22128,22127,1,0,47,0,0,0,1,1,-9,0,2,7.3877439,7.2509174,0,0,0,-877.8656,0,3,1,2021,19,7,30,30,1,7,0,4.9103708,4.9103708,0,0,0,0,0,0,0,96,1,1,0,0,0,47.79,40.56,-9,-9,6.666666666666667,2,3,0,0,8,4,3,1,222,32461.502,-68083.992,126700.43,0,0,0,684.84198 +10180,12395,22130,-9,22129,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-992.61951,-9,1,-9,2021,13,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,37.58,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,2085,9977.8906,0,0,0,0,0,538.51355 +10180,12396,22131,-9,22129,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1114.348,-9,1,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,1751,0,0,0,0,0,0,0 +10181,12397,22132,22134,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.4172029,8.487957,0,18,5,-39.128971,0,2,2,2021,9,0,40,40,1,0,0,15.217795,15.217795,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,38.1,55.36,8.333333333333334,2,3,0,0,13,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22133,-9,22134,22132,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.13763,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22134,22132,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6414871,8.6045866,0,18,-5,22.765297,0,2,3,2021,15,4,43,38,1,4,0,15.030828,15.030828,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.1,55.36,51.41,56.15,8.333333333333334,2,3,0,0,13,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22135,-9,22134,22132,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.0499,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10182,12398,22136,22137,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.7152801,7.6841879,0,6,-1,-70.034187,0,-9,-9,2021,14,3,22,37,1,3,0,11.777434,11.777434,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,28.03,54.96,10,1,1,0,0,10,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10182,12398,22137,22136,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.0946789,8.0786448,0,6,1,53.099987,0,-9,-9,2021,24,10,46,50,1,10,0,7.475646,7.475646,.05,.05,0,0,0,0,.40382087,0,1,1,0,0,0,28.03,54.96,41,56.99,6.666666666666667,1,1,0,0,7,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10182,12398,22138,-9,22136,22137,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-851.16132,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10183,12399,22139,22140,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,30,8,104.80005,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,57.16,56.15,10,1,1,0,0,3,4,3,1,771.5,622031.63,298609.03,285468.53,0,0,0,1105.5376 +10183,12399,22140,22139,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5307846,7.4955502,0,30,-8,-100.01071,0,3,3,2021,9,0,40,40,1,0,0,6.819901,6.819901,.05,.05,0,0,0,0,0,0,1,1,0,1.1675032,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,8,4,3,1,771.5,622031.63,298609.03,285468.53,0,0,0,1105.5376 +10184,12400,22141,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.9874687,6.9731197,0,0,0,-989.23926,0,3,3,2021,14,2,35,30,1,2,0,2.9306653,2.9306653,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,51.27,34.89,-9,-9,5,1,1,0,0,7,13,2,1,1716,-196540.86,-26084.377,0,0,-1925.7776,601.35358,981.90112 +10184,12401,22142,-9,22141,-9,1,0,21,0,0,0,2,2,1,0,3,7.8202591,7.5890412,0,0,0,-962.94196,-9,2,-9,2021,18,6,37,0,1,6,1,7.3050756,7.3050756,0,0,0,0,0,0,0,14.5,1,0,1,0,0,52.93,52.64,-9,-9,8.333333333333334,1,1,0,1,3,13,3,1,160,116172.33,0,0,0,0,0,1356.9011 +10185,12402,22143,-9,22144,-9,1,1,30,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1011.1893,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,1,0,0,8,1,0,1199,-184840.84,0,0,0,0,0,0 +10185,12403,22144,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,0,0,-899.70825,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,2,3,0,0,0,8,1,0,807,227841.53,0,0,0,0,0,-306.2294 +10186,12404,22145,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,7.1861916,7.5109367,0,0,0,-1096.9817,0,2,2,2021,12,0,16,16,1,0,0,10.659007,10.659007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,-9,-9,6.666666666666667,1,1,0,0,13,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10186,12404,22146,-9,22145,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.93292,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10186,12404,22147,-9,22145,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7781,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10187,12405,22148,22149,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,6.34549,6.1433201,0,16,6,-92.622437,0,2,3,2021,6,0,9,9,1,0,0,5.2397628,5.2397628,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,62.39,56.71,5,1,1,0,1,5,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22149,22148,-9,-9,1,1,47,0,2,0,3,3,-9,0,5,8.1653805,8.0993834,0,16,-6,-135.02576,0,3,3,2021,6,0,50,60,1,0,0,8.3499022,8.3499022,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.39,56.71,54.79,55.86,8.333333333333334,1,1,0,1,11,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22150,-9,22148,22149,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-996.11731,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22151,-9,22148,22149,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8455,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10188,12406,22152,-9,-9,-9,1,0,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1125.4471,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.836031,0,12.36,55.98,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,695,-143417.72,0,0,0,0,0,1928.5977 +10189,12407,22153,-9,-9,22154,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-844.52893,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,0,700,940050.25,1004818.9,0,0,0,0,1729.8909 +10189,12407,22154,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.3082585,7.3325849,0,0,0,-954.67084,0,-9,-9,2021,9,0,36,38,1,0,0,5.2780166,5.2780166,0,0,0,0,0,0,0,0,1,1,0,0,0,54.8,50.32,-9,-9,8.333333333333334,1,1,0,0,9,10,3,0,700,940050.25,1004818.9,0,0,0,0,1729.8909 +10190,12408,22155,22156,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.7669268,7.2990913,9,4,-23.356441,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.25918379,7.0180206,54,46,55.36,51.57,8,1,1,0,0,0,6,2,1,870.5,725272.44,-35444.961,678229.5,0,0,0,1580.0364 +10190,12408,22156,22155,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.9817069,3.8471241,57,-4,-3.8296907,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7855339,3.6184666,55.36,51.57,54,46,10,1,1,0,0,0,6,2,1,870.5,725272.44,-35444.961,678229.5,0,0,0,1580.0364 +10191,12409,22157,22158,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.2658772,5.4112,11,11,90.988365,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2220421,59.31,49.81,56.1,49.93,8.333333333333334,1,1,0,0,7,6,4,1,541,470928.38,255050.28,107126.51,25349.508,0,0,2674.2559 +10191,12409,22158,22157,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5318241,8.5154705,0,11,-11,-35.165192,0,2,1,2021,6,0,56,56,1,0,0,14.025469,14.025469,.05,.05,0,0,0,0,0,0,1,1,0,2.5434978,0,56.1,49.93,59.31,49.81,8.333333333333334,1,1,0,0,11,6,4,1,541,470928.38,255050.28,107126.51,25349.508,0,0,2674.2559 +10192,12410,22159,22160,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-45.98991,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.06,38.34,60.2,39.82,8.333333333333334,1,1,0,0,3,11,2,1,579,92086.609,27448.621,109311.84,0,0,0,1624.7283 +10192,12410,22160,22159,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.3477707,6.4037867,6,3,-20.692207,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4638968,60.2,39.82,66.06,38.34,8.333333333333334,1,1,0,0,0,11,2,1,579,92086.609,27448.621,109311.84,0,0,0,1624.7283 +10193,12411,22161,-9,22163,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-806.37244,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12411,22162,-9,22163,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.9497,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12411,22163,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,4,6.6842628,7.2315698,6.4114347,2,6,-74.936684,0,2,2,2021,7,0,29,27,1,0,0,3.1025424,3.1025424,.05,.05,0,0,0,0,0,42,1,1,0,6.8286591,0,59.14,52.5,38.28,57.07,8.333333333333334,1,1,0,0,10,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12412,22164,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7334509,7.7037935,0,2,-6,-1.1346433,-9,-9,-9,2021,22,9,30,0,1,9,0,8.4213066,8.4213066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.28,57.07,59.14,52.5,3.333333333333333,1,1,0,1,10,4,3,1,494,-4208.8589,-35593.695,0,0,0,123.69985,1059.1182 +10194,12413,22165,22166,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.4385133,7.5635471,0,21,8,96.96315,0,3,1,2021,10,0,24,24,1,0,0,7.1960926,7.1960926,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,42.24,47.53,45.46,8.333333333333334,2,3,0,0,6,8,2,0,1397.5,203882.5,-40283.328,236354.91,42609.535,0,0,832.9729 +10194,12413,22166,22165,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,22,-8,35.597088,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.53,45.46,46.95,42.24,8.333333333333334,2,3,0,0,0,8,2,0,1397.5,203882.5,-40283.328,236354.91,42609.535,0,0,832.9729 +10194,12414,22167,-9,22166,22165,1,0,26,0,0,0,1,1,-9,0,3,7.9354191,8.362505,0,0,0,-972.65295,0,3,2,2021,12,0,35,35,1,0,1,11.786876,11.786876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.65,56.19,-9,-9,6.666666666666667,2,3,0,0,7,8,4,0,564,-288065.38,77580.289,0,0,0,0,2427.0552 +10194,12415,22168,-9,22166,22165,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.46466,0,3,2,2021,9,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,244,-49650.398,0,0,0,0,0,0 +10195,12416,22169,22170,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,6,-13.987406,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5774527,0,52,48,40.69,38.36,7,1,1,0,0,0,6,5,1,364.5,1493159.6,1209017.5,259541.72,0,297.09665,0,3609.1904 +10195,12416,22170,22169,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.8912516,9.0320225,0,27,-6,-89.390831,0,3,3,2021,17,5,35,35,1,5,0,23.795813,23.795813,0,0,0,0,0,0,0,42,1,1,0,0,0,40.69,38.36,52,48,3.333333333333333,1,1,0,0,10,6,5,1,364.5,1493159.6,1209017.5,259541.72,0,297.09665,0,3609.1904 +10195,12417,22171,-9,22170,22169,1,0,30,0,0,0,1,1,-9,0,4,7.7662115,7.5927877,0,0,0,-1038.4741,0,3,3,2021,11,0,20,20,1,2,1,13.896839,13.896839,.05,.05,0,0,0,0,0,0,1,1,0,1.0374321,0,48,57,-9,-9,7,1,1,0,0,1,6,3,1,767,55103.52,-61730.598,0,0,0,0,1591.587 +10196,12418,22172,22173,-9,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,5,14,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.96,56.44,48,57,8.333333333333334,2,3,0,0,6,2,1,1,320.5,-154447.11,-21126.832,0,0,0,0,874.88324 +10196,12418,22173,22172,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,0,0,0,5,-14,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,41.96,56.44,7,4,3,0,0,0,2,1,1,320.5,-154447.11,-21126.832,0,0,0,0,874.88324 +10196,12419,22174,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1096.1772,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,0,0,0,2,1,1,1187,21275.67,60666.965,0,0,0,0,1207.5763 +10196,12420,22175,-9,-9,-9,1,0,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1133.6168,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,2,3,0,0,0,2,1,1,5541,-130001.39,0,0,0,0,0,458.64532 +10197,12421,22176,22177,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.1910467,7.9492397,0,9,14,-6.5620675,0,-9,-9,2021,13,1,40,40,1,1,0,8.1221895,8.1221895,0,0,0,0,0,0,0,0,1,1,0,7.6508455,0,49.04,55.86,48.77,60.16,5,1,1,0,1,12,7,3,1,194.5,620227.38,155464.55,640928.56,63045.781,0,0,3427.1035 +10197,12421,22177,22176,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,0,0,0,9,-14,-55.276337,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6754913,0,48.77,60.16,49.04,55.86,5,1,1,0,1,1,7,3,1,194.5,620227.38,155464.55,640928.56,63045.781,0,0,3427.1035 +10197,12422,22178,-9,22177,22176,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1002.3963,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5397915,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,996,-181426.44,0,0,0,0,0,1550.6687 +10198,12423,22179,22180,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.612565,7.1020389,10,5,160.89569,-9,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3954878,7.3710308,50,46,51,48,7,1,1,0,0,0,9,3,1,1196.5,1159842.4,518976.13,447039.44,0,0,0,2896.3472 +10198,12423,22180,22179,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0355806,7.31006,10,-5,80.033768,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4650631,6.8810744,51,48,50,46,7,1,1,0,0,0,9,3,1,1196.5,1159842.4,518976.13,447039.44,0,0,0,2896.3472 +10199,12424,22181,22182,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.6590147,8.718894,0,37,0,-37.319828,0,2,2,2021,12,0,35,33,1,0,0,19.544151,19.544151,.05,.05,0,0,0,0,0,0,0,0,0,3.1344583,0,53.09,44.28,52.23,55.6,8.333333333333334,1,1,0,0,11,4,5,1,452,2803566,2223180.8,402485,-11545.908,-1059.1348,3170.519,4619.9824 +10199,12424,22182,22181,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.9277096,9.1179409,0,37,0,-4.7482071,0,2,2,2021,12,2,44,41,1,2,0,15.422918,15.422918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,53.09,44.28,8.333333333333334,1,1,0,0,10,4,5,1,452,2803566,2223180.8,402485,-11545.908,-1059.1348,3170.519,4619.9824 +10200,12425,22183,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6451178,8.5123434,0,0,0,-968.21521,0,2,3,2021,9,0,45,37,1,0,0,15.535191,15.535191,0,0,0,0,0,0,0,0,0,0,0,0,0,44.78,56.37,-9,-9,5,1,1,0,0,12,11,5,1,261,998339.56,826437.5,97956.719,0,0,0,1690.1508 +10200,12426,22184,-9,22183,-9,1,1,38,0,0,0,1,1,-9,0,2,7.6323566,7.4606104,0,0,0,-1021.8431,0,2,2,2021,22,7,38,37,1,7,1,7.3687267,7.3687267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.54,48.17,-9,-9,3.333333333333333,1,1,0,1,12,11,3,1,564,-19163.484,-51667.402,0,0,0,0,26.320776 +10201,12427,22185,-9,22186,22187,1,1,33,0,0,0,2,2,-9,0,2,6.7398186,6.3935356,0,0,0,-929.22687,0,1,1,2021,22,10,70,60,1,10,0,.98299921,.98299921,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,49.01,-9,-9,5,1,1,0,1,10,7,2,1,918,-107927.05,0,0,0,0,0,458.74371 +10201,12428,22186,22187,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.5764494,8.9548941,37,-3,-48.459217,0,2,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4514632,8.3122311,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,1207.5,3007910.5,1531844.5,967875.13,0,0,0,5790.8457 +10201,12428,22187,22186,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.5189924,8.6096735,41,3,-64.846504,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7665642,8.695693,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,1207.5,3007910.5,1531844.5,967875.13,0,0,0,5790.8457 +10202,12429,22188,22189,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,7.8636198,7.5358057,0,11,-1,-69.164108,0,2,2,2021,16,3,50,60,1,3,0,5.725172,5.725172,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.09,55.36,52.43,55.57,8.333333333333334,1,1,0,1,12,11,4,1,788,678682.38,118860.64,288388.22,6343.6411,0,949.35144,1886.1903 +10202,12429,22189,22188,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7554407,7.446578,0,11,1,51.011299,0,3,3,2021,12,0,25,25,1,0,0,7.0238414,7.0238414,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,48.09,55.36,10,1,1,0,0,12,11,4,1,788,678682.38,118860.64,288388.22,6343.6411,0,949.35144,1886.1903 +10202,12430,22190,-9,22189,22188,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-935.14514,-9,3,3,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1138,89201.258,0,0,0,0,0,0 +10203,12431,22191,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.0131903,4.5434256,0,0,-1072.0546,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.450953,11.980997,132.27812,0,1,1,0,0,4.620584,53,45,-9,-9,10,3,4,0,0,0,8,2,1,2493,384702.69,0,182170.53,0,0,0,1333.0868 +10204,12432,22192,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.4792843,7.7359872,6.207119,0,0,-918.99072,0,3,-9,2021,15,5,24,21,1,5,0,7.9451241,7.9451241,0,0,0,0,0,0,0,27,1,1,0,6.5710101,0,43.46,30.35,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,158,-243877.25,131308.63,0,0,0,0,710.70251 +10205,12433,22193,22194,-9,-9,1,1,31,1,2,0,2,2,-9,0,1,8.3578596,8.5235815,0,6,1,107.80507,0,-9,-9,2021,22,8,38,38,1,8,0,14.161794,14.161794,.05,.05,0,0,0,0,0,0,1,1,0,2.6425745,0,26.91,36.32,48.32,42.34,6.666666666666667,1,1,0,0,10,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22194,22193,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,9.0464754,9.0857391,0,6,-1,36.691673,0,2,2,2021,12,0,16,7,1,0,0,52.006145,52.006145,0,0,0,0,0,0,0,0,1,1,0,.42633933,0,48.32,42.34,26.91,36.32,8.333333333333334,1,1,0,0,10,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22195,-9,22194,22193,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2651,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22196,-9,22194,22193,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-884.00757,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10206,12434,22197,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.88953,0,-9,-9,2021,22,9,0,40,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.97,35.26,-9,-9,1.666666666666667,1,1,1,1,9,5,1,0,256,60570.266,55205.336,0,0,0,0,52.232742 +10207,12435,22198,22200,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9137025,7.9061675,0,16,-2,-87.951622,0,1,1,2021,12,2,57,38,1,2,0,4.2323999,4.2323999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,50.65,60.47,10,1,1,0,0,12,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22199,-9,22198,22200,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2008,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22200,22198,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.882369,9.0126915,0,16,2,-14.292778,0,3,3,2021,7,0,60,55,1,0,0,13.887701,13.887701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,41.17,59.31,10,1,1,0,0,12,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22201,-9,22198,22200,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4574,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10208,12436,22202,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-900.94928,0,3,2,2021,10,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,6,9,1,1,1890,958931.06,-24343.178,547876.38,0,0,0,0 +10208,12437,22203,-9,22202,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2557402,8.5385942,0,0,0,-1032.176,0,1,-9,2021,9,2,38,39,1,2,0,12.634062,12.634062,.05,.05,0,0,0,0,0,0,0,0,0,4.3394227,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,4,9,5,1,383,190211.67,90747.602,217185.25,104556.74,0,0,1577.1991 +10209,12438,22204,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9341884,8.126976,0,0,0,-877.35828,0,2,-9,2021,14,3,43,41,1,3,0,7.8520045,7.8520045,0,0,0,0,0,0,0,2,0,0,0,2.4115324,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,14,11,4,1,602,106856.73,0,0,0,0,0,2405.4666 +10209,12439,22205,-9,22204,-9,1,0,24,0,0,0,1,1,-9,0,5,8.4118595,8.2055712,0,0,0,-956.77429,0,2,-9,2021,3,0,35,30,1,0,1,12.799911,12.799911,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,7,11,4,1,400,284496.31,35213.406,313914.59,0,0,0,927.86804 +10210,12440,22206,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9067669,9.1323156,6.0521998,0,0,-1027.65,0,2,2,2021,8,0,40,40,1,0,0,21.063845,21.063845,.05,.05,0,0,0,0,0,0,1,1,0,6.4815273,0,49.27,55.11,-9,-9,5,3,4,0,0,6,8,5,1,730,-22418.348,61359.012,0,0,2267.9077,0,4051.6121 +10210,12440,22207,-9,22206,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.66718,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,730,-22418.348,61359.012,0,0,2267.9077,0,4051.6121 +10211,12441,22208,22209,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.3132362,8.3144846,0,22,1,-.89721531,0,2,2,2021,10,0,43,42,1,0,0,13.054907,13.054907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,12,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10211,12441,22209,22208,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.9238605,9.0906029,0,22,-1,19.287794,0,2,1,2021,12,0,41,40,1,0,0,19.04262,19.04262,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,13,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10211,12441,22210,-9,22208,22209,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.80127,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10212,12442,22211,22212,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,46,2,-116.55786,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8240883,0,0,1,1,0,0,0,36.79,56.27,57.6,46.44,8.333333333333334,1,1,0,0,0,9,2,1,1274,350923,40097.34,159817.75,0,0,0,1308.45 +10212,12442,22212,22211,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8166232,7.1747551,46,-2,60.871525,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.055843156,6.6250997,57.6,46.44,36.79,56.27,6.666666666666667,1,1,0,0,0,9,2,1,1274,350923,40097.34,159817.75,0,0,0,1308.45 +10213,12443,22213,22214,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.5588522,9.5625734,0,22,4,-122.13014,-9,-9,-9,2021,11,2,40,0,1,2,0,44.719143,44.719143,0,0,0,0,0,0,0,0,0,0,0,7.5919061,0,42.52,57.56,50.08,51.72,8.333333333333334,2,3,0,0,10,8,5,1,907,746431.75,-24106.387,285667.06,75700.758,10096.381,0,8538.6738 +10213,12443,22214,22213,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.5317631,9.7015114,0,7,-4,-107.82419,0,1,1,2021,13,1,46,48,1,1,0,35.830849,35.830849,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,51.72,42.52,57.56,6.666666666666667,2,3,0,0,6,8,5,1,907,746431.75,-24106.387,285667.06,75700.758,10096.381,0,8538.6738 +10214,12444,22215,22216,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.7032452,9.3594599,0,24,1,-16.681789,0,2,2,2021,9,0,20,20,1,0,0,90.388885,90.388885,.05,.05,0,0,0,0,0,2,0,0,0,7.7759023,0,61.56,43.2,59.29,42.77,10,1,1,0,0,13,1,5,1,700,1868458.5,1384148,262375.88,0,0,0,10261.244 +10214,12444,22216,22215,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.7469745,7.883153,0,12,-1,27.967865,0,-9,-9,2021,6,0,65,40,1,0,0,4.1724558,4.1724558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,42.77,61.56,43.2,10,1,1,0,0,9,1,5,1,700,1868458.5,1384148,262375.88,0,0,0,10261.244 +10215,12445,22217,-9,22218,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.8526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,227,30753.461,0,0,0,0,0,1295.9282 +10215,12445,22218,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,7.0744228,7.0589671,0,0,0,-964.07996,0,2,2,2021,6,0,18,20,1,0,0,8.7393494,8.7393494,0,0,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,-9,-9,5,1,1,0,0,6,11,2,0,227,30753.461,0,0,0,0,0,1295.9282 +10216,12446,22219,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-857.80737,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1209192,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,410,54765.039,0,324791.84,0,0,0,618.0813 +10217,12447,22220,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.7554779,8.6682444,0,0,0,-996.80792,0,3,2,2021,6,0,35,50,1,0,0,16.53067,16.53067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,459,106046.74,-13347.447,136770.97,28299.201,11696.251,0,1997.2842 +10217,12447,22221,-9,22220,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1233.4556,-9,2,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.9726237,0,56.47,59.4,-9,-9,10,1,1,0,0,0,2,4,1,459,106046.74,-13347.447,136770.97,28299.201,11696.251,0,1997.2842 +10217,12448,22222,-9,22220,-9,1,0,27,0,1,0,2,2,-9,0,5,8.0231285,8.0252285,0,0,0,-1057.9967,0,2,3,2021,11,0,45,35,1,0,1,6.6011939,6.6011939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,521,274887.03,-102276.17,129098.18,121015.95,0,2379.884,1242.9305 +10218,12449,22223,-9,22224,22226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.9557,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22224,22226,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,7.6759257,8.1093864,0,7,-1,4.6218863,0,2,3,2021,16,4,16,16,1,4,0,15.581896,15.581896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.73,53,44.93,54.77,5,1,1,0,0,8,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22225,-9,22224,22226,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.4412,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22226,22224,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.4283142,8.5526438,0,7,1,.82638192,0,-9,-9,2021,14,3,37,42,1,3,0,18.303068,18.303068,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.93,54.77,28.73,53,8.333333333333334,1,1,0,0,8,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22227,-9,22224,22226,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-849.42914,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10219,12450,22228,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.5777268,7.5381446,0,0,-929.41888,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.129137,7.3360171,42.84,55.93,-9,-9,8.333333333333334,2,3,0,0,3,12,3,1,683,660358.75,517865,145139.33,27937.113,0,0,1501.5403 +10220,12451,22229,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.683599,8.124711,7.1533899,0,0,-1071.2299,0,3,3,2021,11,0,7,38,1,0,0,40.711273,40.711273,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.452528,44.56,59.1,-9,-9,6.666666666666667,1,1,0,0,12,13,4,1,491,188202.95,148686.45,211796.83,0,0,0,2086.3335 +10220,12452,22230,-9,22229,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3875389,8.513298,0,0,0,-949.7724,-9,2,-9,2021,11,0,42,0,1,0,1,10.350802,10.350802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,601,43216.98,90.160927,203452.02,0,0,0,1814.8738 +10221,12453,22231,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0176196,7.2594576,0,0,-1023.8967,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8095684,6.8534513,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,419,462767.28,194443.03,47036.059,0,0,0,1267.6714 +10222,12454,22232,22233,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,7.1201444,7.1409173,0,4,1,111.82925,0,3,3,2021,17,4,16,0,1,4,0,9.9598408,9.9598408,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.4,31.71,19.01,22.64,3.333333333333333,1,1,0,0,1,12,2,0,615,111280.7,-12726.741,0,0,0,0,2217.5359 +10222,12454,22233,22232,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,4,-1,-15.957546,-9,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,43.4,31.71,0,1,1,0,1,0,12,2,0,615,111280.7,-12726.741,0,0,0,0,2217.5359 +10223,12455,22234,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.1279564,6.9112668,0,0,-955.86145,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6170254,7.3855548,42.36,56.12,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,182,1005019.1,296485.59,344735.13,0,0,0,1673.0677 +10224,12456,22235,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.6231022,7.4761219,0,0,-1074.4855,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5770979,7.4504881,51.41,45.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,234,565743.5,118211.85,201376.14,0,0,0,1542.2869 +10225,12457,22236,-9,22237,22238,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.0955,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22237,22238,-9,-9,1,0,35,0,2,0,2,2,0,0,3,0,0,0,10,-5,12.917114,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.23,43.46,53.08,47.11,5,1,1,0,0,4,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22238,22237,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.9258299,9.8211174,0,10,5,-54.291737,0,-9,-9,2021,8,0,45,40,1,0,0,37.043274,37.043274,.05,.05,.05,0,0,0,0,0,1,1,0,.51577264,0,53.08,47.11,58.23,43.46,6.666666666666667,1,1,0,0,9,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22239,-9,22237,22238,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.09833,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10226,12458,22240,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-887.15869,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,0,13,1,1,1318,170165.27,0,0,0,0,0,1108.2559 +10227,12459,22241,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,4.0601077,4.4671164,0,0,-1052.4646,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1893148,28.97,20.69,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,450,1635.5205,-51128,0,0,7155.4956,0,1165.3857 +10228,12460,22242,22243,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,3.1594648,3.1638463,10,0,-96.360634,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,27.045668,15.193103,246.19336,0,1,1,0,0,3.3069654,51.53,49.1,42.27,39.62,8.333333333333334,1,1,0,0,0,5,2,1,2268.5,692587.38,363615.75,259507.59,0,0,0,1424.5139 +10228,12460,22243,22242,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,55,0,-73.119347,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,39.62,51.53,49.1,3.333333333333333,1,1,0,0,0,5,2,1,2268.5,692587.38,363615.75,259507.59,0,0,0,1424.5139 +10229,12461,22244,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8675499,7.4935203,0,0,0,-946.75818,0,1,2,2021,8,1,40,40,1,1,0,6.4444251,6.4444251,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,2178,113645.64,-99570.086,0,0,0,1065.7606,277.20291 +10229,12462,22245,-9,22244,-9,1,0,19,0,0,0,2,2,-9,0,2,7.444767,7.4409804,0,0,0,-1005.2404,0,2,-9,2021,25,9,20,50,1,9,1,9.1820793,9.1820793,0,0,0,0,0,0,0,0,0,0,0,0,0,22.24,55.25,-9,-9,1.666666666666667,1,1,0,1,2,7,3,1,1531,-137804.7,0,0,0,0,0,1360.8088 +10230,12463,22246,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.9637122,7.9144158,0,0,0,-869.30457,0,2,2,2021,9,1,30,30,1,1,0,11.469593,11.469593,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,569,34934.797,0,0,0,0,0,1276.0845 +10231,12464,22247,22248,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,32,-6,79.22847,0,3,3,2021,10,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.7352834,0,37.87,61.03,44.82,47.44,3.333333333333333,1,1,0,0,0,2,4,1,270,1048117.4,475620.63,535408.88,92669.453,0,0,3443.1501 +10231,12464,22248,22247,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,8.4098234,8.660305,32,6,80.765617,0,2,2,2021,21,10,0,0,4,10,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.2580714,8.7980633,44.82,47.44,37.87,61.03,5,1,1,0,0,0,2,4,1,270,1048117.4,475620.63,535408.88,92669.453,0,0,3443.1501 +10232,12465,22249,22250,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,6,2,78.325821,0,3,3,2021,36,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,27.89,18.61,54.96,53.17,1.666666666666667,1,1,0,0,0,6,2,1,465,225116.13,-30102.168,184280.66,0,0,0,1009.4433 +10232,12465,22250,22249,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,6.1349692,6.0702424,0,6,-2,-52.993191,0,3,3,2021,7,0,10,10,1,0,0,4.6366291,4.6366291,0,0,0,0,0,0,0,0,1,0,1,0,0,54.96,53.17,27.89,18.61,8.333333333333334,1,1,0,0,7,6,2,1,465,225116.13,-30102.168,184280.66,0,0,0,1009.4433 +10233,12466,22251,-9,22252,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.3246,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10233,12466,22252,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6082144,8.7855864,0,0,0,-1031.7008,0,3,1,2021,12,0,52,47,1,0,0,12.113284,12.113284,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,6.666666666666667,1,1,0,0,4,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10233,12466,22253,-9,22252,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.758,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10234,12467,22254,22255,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,50,-2,-1.6036851,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9744167,0,0,1,1,0,0,0,51.89,35.98,60.12,30.87,6.666666666666667,1,1,0,0,6,12,2,0,445.5,157609.95,105961.31,111884.98,0,9195.7188,0,1763.2314 +10234,12467,22255,22254,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9488864,6.0461764,11,2,35.881344,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.292639,0,0,1,1,0,0,6.2322116,60.12,30.87,51.89,35.98,8.333333333333334,1,1,0,0,0,12,2,0,445.5,157609.95,105961.31,111884.98,0,9195.7188,0,1763.2314 +10235,12468,22256,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8256025,8.9121504,5.7342229,0,0,-950.94165,-9,3,2,2021,9,0,35,0,1,0,0,27.910418,27.910418,.05,.05,0,0,0,0,0,0,1,1,0,7.2620687,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,993,399728.31,411905.34,128316.45,109598.05,1595.0344,0,2841.9763 +10236,12469,22257,22258,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,28,-7,-49.145821,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,34.07,41.21,8.333333333333334,1,1,0,0,5,10,5,1,4325,164572.52,-12030.548,266975.09,158203.97,0,0,6291.0288 +10236,12469,22258,22257,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.687315,9.5131235,0,29,7,41.871536,0,2,2,2021,12,0,65,65,1,0,0,26.713234,26.713234,.05,.05,0,0,0,0,0,0,0,0,0,.70863146,0,34.07,41.21,52,54.51,8.333333333333334,1,1,0,0,14,10,5,1,4325,164572.52,-12030.548,266975.09,158203.97,0,0,6291.0288 +10236,12470,22259,-9,22257,22258,1,1,19,0,0,0,2,2,-9,0,4,8.7330551,8.7822704,0,0,0,-964.15735,0,2,1,2021,16,4,40,35,1,4,1,21.213787,21.213787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.87,61.63,-9,-9,6.666666666666667,1,1,0,0,4,10,5,1,518,-108735.06,53316.734,0,0,0,5506.8569,1875.3225 +10237,12471,22260,22262,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7112303,8.6503525,0,12,-8,-57.888691,0,2,1,2021,6,0,37,37,1,0,0,21.243248,21.243248,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,60.53,48.35,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10237,12471,22261,-9,22260,22262,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1060.7531,-9,1,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10237,12471,22262,22260,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.4745731,8.3151598,0,12,8,-5.8490119,0,2,2,2021,7,0,40,37,1,0,0,11.814124,11.814124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,62.49,55.09,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10238,12472,22263,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,3,6.6486292,6.8920197,0,0,0,-988.19208,0,2,1,2021,10,1,10,6,1,1,0,10.573605,10.573605,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,46.48,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,154,91122.305,0,163507.7,0,0,1623.6924,1484.6129 +10239,12473,22264,22268,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.1648207,9.1305037,0,9,1,-80.73317,0,1,2,2021,6,0,39,41,1,0,0,31.094488,31.094488,.05,.05,0,0,0,0,0,0,1,1,0,4.8298621,0,52.83,49.11,59.29,49.68,8.333333333333334,1,1,0,0,12,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22265,-9,22268,22264,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.05573,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22266,-9,22268,22264,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1017.0628,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22267,-9,22268,22264,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.36005,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22268,22264,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,0,0,0,9,-1,-2.7229187,0,2,3,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1329317,0,59.29,49.68,52.83,49.11,10,1,1,0,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10240,12474,22269,22270,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1028423,8.0485325,0,30,5,102.9939,0,3,3,2021,10,1,50,38,1,1,0,8.6394501,8.6394501,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,46.05,57.22,8.333333333333334,1,1,0,0,14,9,5,1,692,-3018.7178,56941.102,0,0,0,404.79791,3689.5713 +10240,12474,22270,22269,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2947493,8.4985867,5.574605,30,-5,-15.262856,0,2,2,2021,10,2,41,42,1,2,0,14.483622,14.483622,.05,.05,0,0,0,0,0,0,0,0,0,2.962822,6.0199847,46.05,57.22,58.3,52.91,8.333333333333334,1,1,0,0,14,9,5,1,692,-3018.7178,56941.102,0,0,0,404.79791,3689.5713 +10240,12475,22271,-9,22269,22270,1,1,22,0,0,0,2,2,-9,0,4,8.4353247,8.4293919,0,0,0,-837.2392,0,2,2,2021,21,9,43,43,1,9,1,12.077756,12.077756,0,0,0,0,0,0,0,0,0,0,0,1.9262878,0,25.26,61.35,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,691,-27081.869,171175.02,0,0,0,339.17484,2388.1499 +10241,12476,22272,22273,-9,-9,1,1,46,1,1,0,2,2,-9,0,3,7.8159952,7.9558496,0,11,5,-19.355715,0,3,3,2021,12,0,37,37,1,0,0,8.7968597,8.7968597,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.76,59.4,6.666666666666667,1,1,0,0,9,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10241,12476,22273,22272,-9,-9,1,0,41,1,1,0,2,2,-9,0,5,8.7079611,8.595767,0,11,-5,27.209356,0,2,2,2021,13,3,37,40,1,3,0,17.615513,17.615513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.76,59.4,54.96,53.17,5,1,1,0,0,14,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10241,12476,22274,-9,22273,22272,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.184,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10242,12477,22275,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.27075,8.3806915,0,0,0,-1083.8883,0,3,2,2021,16,3,40,36,1,3,0,11.46945,11.46945,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,725,100802.45,74845.609,254095.98,0,0,0,1541.8895 +10242,12478,22276,-9,22275,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1075.0642,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,452,-141069.66,0,0,0,0,0,0 +10243,12479,22277,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,0,0,0,0,0,-982.66821,0,3,3,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,2,2,1,0,795,157057.33,0,0,0,0,598.00208,-87.704918 +10244,12480,22278,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.7325568,7.6865463,0,0,-899.20605,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4696236,7.7842631,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,246,831082.75,590637.31,211867.13,0,0,0,2538.0178 +10245,12481,22279,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.2157726,7.9460149,0,0,-981.16144,0,3,3,2021,16,5,0,0,4,5,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,0,7.9570537,50.85,54.91,-9,-9,8.333333333333334,1,1,0,0,13,4,4,1,5577,48225.391,-15362.468,0,0,0,6010.5566,1254.3715 +10246,12482,22280,22281,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1558547,7.2186513,6.3032784,6,-3,100.82146,0,3,3,2021,1,0,7,18,1,0,0,22.410946,22.410946,0,0,0,0,0,0,0,0,0,0,0,7.4206429,6.2688117,60.12,54.8,51,48,8.333333333333334,1,1,0,0,7,11,5,1,1292.5,1497246.9,1199210.8,360575.59,24917.145,0,0,6283.9238 +10246,12482,22281,22280,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.4658918,9.3455544,0,6,3,33.533863,0,-9,-9,2021,10,0,36,36,1,1,0,34.437725,34.437725,.05,.05,0,0,0,0,0,0,0,0,0,7.244453,0,51,48,60.12,54.8,7,1,1,0,0,1,11,5,1,1292.5,1497246.9,1199210.8,360575.59,24917.145,0,0,6283.9238 +10247,12483,22282,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,3.0032983,3.8109181,0,0,-1132.0613,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1026659,2.9699745,53.5,53.7,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,530,113507.13,0,0,0,0,0,1594.9358 +10247,12484,22283,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.599535,8.2258949,0,0,0,-1025.2524,0,-9,-9,2021,13,1,40,40,1,1,0,11.302269,11.302269,0,0,0,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,1,1,0,0,1,6,4,1,662,-6999.668,0,0,0,0,684.30115,1930.6252 +10247,12485,22284,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0466299,8.3116503,0,0,0,-935.29016,0,-9,-9,2021,6,0,41,40,1,0,0,8.1291618,8.1291618,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,267,-224299.8,-57746.25,0,0,0,0,561.73883 +10248,12486,22285,22286,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0787711,7.3718123,5.4936247,5,-10,-23.873264,0,2,2,2021,7,0,20,20,1,0,0,7.5486717,7.5486717,0,0,0,0,0,0,0,0,0,0,0,0,5.4572983,57.06,57.76,52,48,10,1,1,0,0,9,10,4,0,230,828324.94,135219.11,722189.75,198831.31,0,0,3127.6621 +10248,12486,22286,22285,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.2875175,8.5193796,5.521749,5,10,-43.575974,0,-9,-9,2021,10,0,40,35,1,1,0,13.341182,13.341182,0,0,.05,0,0,0,0,0,0,0,0,0,5.8470778,52,48,57.06,57.76,7,1,1,0,0,1,10,4,0,230,828324.94,135219.11,722189.75,198831.31,0,0,3127.6621 +10249,12487,22287,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.5424948,7.7360249,5.7489734,0,0,-1027.2959,0,3,2,2021,1,0,30,0,1,0,0,7.9517455,7.9517455,.05,.05,0,0,0,0,0,2,1,1,0,5.9517608,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,3,6,3,1,513.5,-194039.78,46997.531,0,0,4350.8096,0,2387.5232 +10249,12487,22288,-9,22287,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.3058,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,513.5,-194039.78,46997.531,0,0,4350.8096,0,2387.5232 +10250,12488,22289,22290,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.1579046,7.3244557,9,-1,144.93692,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.8184776,4.3718743,31.107094,0,1,1,0,7.7070823,7.0952091,65.79000000000001,32.28,56.59,39.96,8.333333333333334,1,1,0,0,2,12,2,1,2264,531641.25,218220.88,157906.45,0,0,0,2683.9524 +10250,12488,22290,22289,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,9,1,102.19073,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6892858,0,0,1,1,0,2.1762009,0,56.59,39.96,65.79000000000001,32.28,8.333333333333334,1,1,0,0,0,12,2,1,2264,531641.25,218220.88,157906.45,0,0,0,2683.9524 +10251,12489,22291,22292,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1940746,7.8409204,36,-2,-40.953602,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9713879,8.048274,58.47,50.22,54.79,55.86,8.333333333333334,1,1,0,0,6,7,4,1,1214.5,1272360.9,1053393.6,0,0,907.198,9746.5205,2528.6123 +10251,12489,22292,22291,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.3501463,7.464932,37,2,63.096916,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2006035,7.3206921,54.79,55.86,58.47,50.22,8.333333333333334,1,1,0,0,5,7,4,1,1214.5,1272360.9,1053393.6,0,0,907.198,9746.5205,2528.6123 +10252,12490,22293,22294,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1312761,8.1398096,0,31,3,-78.530441,-9,-9,-9,2021,6,0,38,0,1,0,0,8.7064686,8.7064686,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.7,49.11,6.666666666666667,2,3,0,0,12,9,4,0,828.5,178853.67,-92160.172,251513.64,0,5919.0518,0,2371.7256 +10252,12490,22294,22293,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4817381,7.6875219,0,10,-3,20.504818,-9,3,3,2021,3,0,55,0,1,0,0,4.7954931,4.7954931,0,0,0,0,0,0,0,0,0,0,0,.563743,0,51.7,49.11,52,54.51,6.666666666666667,2,3,0,0,11,9,4,0,828.5,178853.67,-92160.172,251513.64,0,5919.0518,0,2371.7256 +10252,12491,22295,-9,22294,22293,1,1,25,0,0,0,1,1,-9,0,4,7.9569073,8.0240889,0,0,0,-887.53015,-9,3,2,2021,6,0,55,0,1,0,1,5.6096964,5.6096964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.06,55.28,-9,-9,10,2,3,0,0,6,9,4,0,423,100714.4,-44760.582,0,0,0,0,1468.3635 +10252,12492,22296,-9,22294,22293,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-977.6781,-9,3,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1190665,0,41.46,53.68,-9,-9,6.666666666666667,2,3,0,0,3,9,1,0,1277,270036.47,0,0,0,0,0,-55.455055 +10253,12493,22297,-9,-9,-9,1,0,24,1,2,0,1,1,-9,0,3,8.00389,8.3742132,0,0,0,-1046.6798,0,3,3,2021,14,4,53,33,1,4,0,5.4617391,5.4617391,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.94,58.35,-9,-9,3.333333333333333,2,3,0,1,3,7,3,1,1268,-128923.68,103703.01,0,0,0,0,1253.9468 +10254,12494,22298,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.908,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.54,45.64,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1090,-57062.074,0,0,0,0,0,1884.2926 +10255,12495,22299,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.8916001,5.8518796,0,0,-1030.8925,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8460565,60.4,31.55,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,717,452051.69,0,332487.69,0,0,0,990.52985 +10256,12496,22300,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.0401239,7.5629935,0,0,-955.76947,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4199924,7.669838,56.33,51.02,-9,-9,5,1,1,0,0,0,11,3,1,349,244160.08,133940.48,0,0,0,0,2782.3857 +10257,12497,22301,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.8352942,7.9864001,0,0,-955.30658,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.550262,0,0,1,1,0,0,7.6635108,45.41,41.2,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1677,210864.7,174618.52,174433.75,0,0,0,1014.324 +10258,12498,22302,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.7860737,8.814229,0,11,-5,10.482295,0,2,2,2021,22,9,38,43,1,9,0,17.294363,17.294363,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.18,46.97,39.39,37.66,6.666666666666667,1,1,0,0,12,7,5,1,1194,575956.75,145488.97,319193.81,104214.28,0,0,3239.7507 +10258,12499,22303,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.264349,7.6758161,0,11,5,83.667732,0,3,3,2021,17,5,42,38,1,5,0,13.150172,13.150172,0,0,0,0,0,0,0,0,0,0,0,0,0,39.39,37.66,37.18,46.97,6.666666666666667,1,1,0,0,13,7,5,1,1676,2522866,1785829.4,532651.38,45998.453,6114.4658,16602.357,1529.2539 +10259,12500,22304,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.19104,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,.18904795,0,53,44,-9,-9,8,1,1,0,0,0,6,1,1,764,148520.3,0,0,0,0,0,-522.29834 +10260,12501,22305,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0008197,5.5867953,0,0,-1070.5378,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,6.8750167,.2620416,0,1,1,0,0,6.1591325,50.23,47.06,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,178,118205.95,86891.555,135844.31,0,0,0,1041.0559 +10261,12502,22306,22307,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,6,3,0,0,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,0,0,0,4.7403212,0,21.47,62.18,57.16,56.15,3.333333333333333,1,1,0,0,4,6,1,1,1308,54176.68,48544.504,0,0,0,0,17.738731 +10261,12502,22307,22306,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,6,-3,0,0,2,2,2021,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5001211,0,57.16,56.15,21.47,62.18,8.333333333333334,1,1,0,0,4,6,1,1,1308,54176.68,48544.504,0,0,0,0,17.738731 +10262,12503,22308,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4344821,6.259655,0,0,-1048.0282,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4294052,38.87,58.23,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,810,568035.25,178078.5,289863.53,0,0,0,1889.2379 +10263,12504,22309,-9,22311,22310,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.611,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10263,12504,22310,22311,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.5734243,8.5887785,0,19,1,-111.01593,0,2,2,2021,7,0,45,50,1,0,0,12.183441,12.183441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,12,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10263,12504,22311,22310,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.8515744,7.6078629,0,19,-1,117.05257,0,2,2,2021,8,0,30,30,1,0,0,9.509984,9.509984,0,0,0,0,0,0,0,0,1,1,0,8.0282326,0,54.96,53.17,57.33,53.46,6.666666666666667,1,1,0,0,12,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10264,12505,22312,22313,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.0087824,8.6188564,0,6,1,32.349594,0,3,2,2021,11,0,50,50,1,0,0,13.723385,13.723385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.94,45.86,35.09,55.76,6.666666666666667,1,1,0,0,13,9,5,1,863,150408.75,167745.81,0,0,12491.903,0,4444.2153 +10264,12505,22313,22312,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6598387,8.496294,0,6,-1,43.632431,0,-9,-9,2021,13,2,37,37,1,2,0,15.559473,15.559473,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,55.76,49.94,45.86,3.333333333333333,1,1,0,0,8,9,5,1,863,150408.75,167745.81,0,0,12491.903,0,4444.2153 +10264,12506,22314,-9,22313,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.8016,0,2,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.45,48,-9,-9,3.333333333333333,1,1,0,0,14,9,1,1,578,-313806.69,0,0,0,0,0,0 +10265,12507,22315,22317,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.5691795,8.4874487,0,11,-4,64.815941,0,2,2,2021,5,0,37,38,1,0,0,16.081253,16.081253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,5,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10265,12507,22316,-9,22315,22317,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.0686,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10265,12507,22317,22315,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.0228939,7.9654002,0,11,4,55.894299,0,2,2,2021,13,2,44,43,1,2,0,8.433239,8.433239,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,57.06,57.76,6.666666666666667,1,1,0,0,9,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10266,12508,22318,22319,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.0347891,8.1901846,11,5,-32.215153,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6809492,8.2587605,58.47,50.22,48.77,57.64,8.333333333333334,1,1,0,0,0,9,3,1,289.5,960832,543466.38,285591.19,0,0,0,1872.47 +10266,12508,22319,22318,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,47,-5,62.97073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,58.47,50.22,10,1,1,0,0,0,9,3,1,289.5,960832,543466.38,285591.19,0,0,0,1872.47 +10267,12509,22320,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.0567212,6.7637258,0,0,-972.94702,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7763605,6.6466956,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,12,9,2,1,289,292246.72,282929.94,0,0,0,0,493.01675 +10268,12510,22321,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,9.6974173,9.8170719,0,0,-1039.5167,0,-9,-9,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4872465,9.6455135,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,468,1547713.5,975922.81,308908.09,0,0,0,8293.9795 +10269,12511,22322,22323,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.646162,7.5913792,43,4,-91.93264,0,-9,-9,2021,13,2,0,20,4,2,0,0,0,0,0,0,0,0,0,.24366875,0,1,1,0,0,7.7306175,58.72,51.29,61.43,43.34,10,1,1,0,0,15,5,3,1,675.5,824153.13,421766.63,72432.813,0,0,0,1858.4441 +10269,12511,22323,22322,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1392126,7.0481224,43,-4,-45.152103,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4343157,6.9951057,61.43,43.34,58.72,51.29,8.333333333333334,1,1,0,0,4,5,3,1,675.5,824153.13,421766.63,72432.813,0,0,0,1858.4441 +10270,12512,22324,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-920.93909,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.66,44.07,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,439,8175.6108,-30788.117,0,0,0,0,819.47888 +10271,12513,22325,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1006.7933,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.15,56.54,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,295,-102140.08,0,0,0,0,0,586.61438 +10272,12514,22326,22327,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.7592831,7.0940008,39,-5,199.40337,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9305258,54.95,44.79,46.89,40.3,5,1,1,0,0,0,10,4,1,254.5,866204.31,379712.06,287496.41,0,0,0,3596.2656 +10272,12514,22327,22326,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.9163418,8.004858,39,5,120.27346,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,7.0254774,0,0,1,1,0,6.6556697,7.9302464,46.89,40.3,54.95,44.79,6.666666666666667,1,1,0,0,0,10,4,1,254.5,866204.31,379712.06,287496.41,0,0,0,3596.2656 +10273,12515,22328,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4047499,8.2453623,0,0,0,-1021.6888,0,3,3,2021,12,0,40,37,1,0,0,10.18285,10.18285,.05,.05,0,0,0,0,0,0,0,0,0,.41017842,0,42.61,49.31,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,274,444390.5,410635.56,76796.547,0,0,0,1521.1658 +10273,12516,22329,-9,22328,-9,1,1,27,0,0,0,2,2,-9,0,3,7.3386393,7.2899866,0,0,0,-1138.3185,0,2,-9,2021,11,0,32,25,1,0,1,7.1430259,7.1430259,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,354,79933.297,0,0,0,0,0,586.19745 +10274,12517,22330,-9,22332,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.3518,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12517,22331,-9,22332,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.6734,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12517,22332,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1115.8732,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,43.99,-9,-9,8.333333333333334,3,4,0,1,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12518,22333,-9,22332,-9,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.7207,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,2,0,306,177730.72,0,0,0,0,0,0 +10274,12519,22334,-9,22332,-9,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-980.3465,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,1,0,370,130125.48,0,0,0,0,0,0 +10275,12520,22335,22336,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,8.1428595,8.6108952,0,23,-20,66.830559,0,-9,-9,2021,8,0,40,41,1,0,0,12.158451,12.158451,0,0,0,0,0,0,0,0,1,1,0,5.1446934,0,54.2,57.49,54,46,8.333333333333334,1,1,0,0,10,8,4,1,608,1200344.3,710877.13,392117.56,0,0,0,3059.4763 +10275,12520,22336,22335,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1134152,7.0277948,23,20,-77.863213,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9225997,7.2098699,54,46,54.2,57.49,8,1,1,0,0,0,8,4,1,608,1200344.3,710877.13,392117.56,0,0,0,3059.4763 +10276,12521,22337,22338,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.9339581,7.3846879,59,0,185.93442,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2312894,28.11,26.85,28.87,25.58,3.333333333333333,1,1,0,0,0,2,2,1,522,376298.5,191197.98,207351.88,-9540.2344,1317.0979,5277.3477,2554.2354 +10276,12521,22338,22337,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,59,0,29.210552,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.87,25.58,28.11,26.85,5,1,1,0,0,0,2,2,1,522,376298.5,191197.98,207351.88,-9540.2344,1317.0979,5277.3477,2554.2354 +10277,12522,22339,22340,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.4776754,8.6780596,0,10,3,-29.048058,0,2,2,2021,9,1,35,45,1,1,0,20.025089,20.025089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,40.71,44.01,8.333333333333334,1,1,0,0,9,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22340,22339,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,0,0,0,10,-3,-53.03347,0,2,-9,2021,12,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.71,44.01,54.1,59.11,5,1,1,0,0,8,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22341,-9,22340,22339,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8085,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22342,-9,22340,22339,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10278,12523,22343,-9,-9,-9,1,0,25,0,0,0,2,2,-9,1,3,7.9304252,7.9329648,0,0,0,-823.46393,0,2,2,2021,14,3,48,32,1,3,0,6.3007169,6.3007169,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,0,0,7,7,3,0,234,184405.05,0,0,0,0,0,983.10638 +10279,12524,22344,22345,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.3540916,8.4152565,0,6,-2,-33.257706,0,2,2,2021,8,0,37,37,1,0,0,13.972171,13.972171,.05,.05,0,0,0,0,0,0,0,0,0,1.5840265,0,51.73,58.82,54.2,57.49,10,1,1,0,0,6,2,5,1,907.5,301778.81,235343.14,48112.539,76722.25,7966.9595,0,3506.9253 +10279,12524,22345,22344,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.0336218,8.3973837,0,6,2,-2.2636094,0,3,2,2021,10,0,43,43,1,0,0,11.486278,11.486278,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,6,2,5,1,907.5,301778.81,235343.14,48112.539,76722.25,7966.9595,0,3506.9253 +10279,12525,22346,-9,22345,22344,1,1,23,0,0,0,1,1,1,0,4,7.1953659,7.3605599,0,0,0,-1004.1506,-9,1,1,2021,10,0,20,0,1,0,1,9.4513683,9.4513683,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,299,88197.328,0,0,0,0,0,942.06512 +10280,12526,22347,22348,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9968777,6.9405718,7,2,79.989136,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0705876,6.8675504,54.43,49.12,57.48,47.92,8.333333333333334,1,1,0,0,0,4,3,1,914.5,802860.5,441157.97,305232.41,0,0,0,3218.9155 +10280,12526,22348,22347,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.7986403,7.5568585,7,-2,-4.6876769,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6419001,57.48,47.92,54.43,49.12,8.333333333333334,1,1,0,0,4,4,3,1,914.5,802860.5,441157.97,305232.41,0,0,0,3218.9155 +10281,12527,22349,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.0789404,7.944325,0,0,0,-971.85962,0,2,2,2021,12,0,40,40,1,0,0,9.3375473,9.3375473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.36,53.42,-9,-9,3.333333333333333,1,1,0,1,6,7,4,0,786,58171.273,37946.738,112387.87,51112.832,0,97.711563,1553.5985 +10282,12528,22350,22351,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.2666836,8.4472218,0,6,2,56.648899,0,-9,-9,2021,11,0,40,40,1,0,0,11.270017,11.270017,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.47,56.81,8.333333333333334,1,1,0,0,9,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10282,12528,22351,22350,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.8367367,7.9012017,0,6,-2,51.491714,0,3,3,2021,10,0,40,40,1,0,0,7.2318716,7.2318716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,56.81,54.2,57.49,6.666666666666667,1,1,0,0,9,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10282,12528,22352,-9,22351,22350,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.54114,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10283,12529,22353,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.5759358,2.358743,0,0,-996.52942,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5887837,1.9900271,48.2,31.39,-9,-9,5,1,1,0,0,0,1,2,0,108,270176.25,-37401.148,149303.27,0,0,0,385.01202 +10284,12530,22354,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-946.60187,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.76,23.91,-9,-9,0,1,1,0,0,0,4,1,0,853,109890.05,81596.945,0,0,174.59308,0,1477.3641 +10285,12531,22355,-9,22356,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.67999,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10285,12531,22356,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.7049665,8.575922,0,0,0,-1102.1254,0,2,-9,2021,7,0,38,38,1,0,0,16.044228,16.044228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10285,12531,22357,-9,22356,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.743,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10286,12532,22358,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.7714863,6.6562648,0,0,-897.67871,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7091942,52.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,383,838403.69,189071.27,163549.48,0,0,0,1104.5201 +10287,12533,22359,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.3206549,8.135582,0,0,0,-905.30524,-9,-9,-9,2021,15,3,36,0,1,3,0,13.83274,13.83274,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,555,-53299.004,0,0,0,0,0,867.43481 +10288,12534,22360,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1068.3876,1,3,2,2021,7,0,0,46,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,8,5,1,1,595.5,1293538.4,0,466901.69,0,0,0,1158.0151 +10288,12534,22361,-9,22360,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1083.8646,-9,1,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1927838,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,595.5,1293538.4,0,466901.69,0,0,0,1158.0151 +10288,12535,22362,-9,22360,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-993.63184,0,1,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6157353,0,42.96,48.48,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,103,-108416.44,0,0,0,0,0,314.58374 +10289,12536,22363,22364,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,1.9178393,2.096904,46,0,3.3163989,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.287199,1.7979598,56.47,46.82,48.91,43.45,8.333333333333334,1,1,0,0,9,9,2,1,569.5,291364.69,195677.06,174732.88,0,0,0,2294.8779 +10289,12536,22364,22363,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7673392,6.8120661,49,0,118.37553,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4489412,6.5822396,48.91,43.45,56.47,46.82,10,1,1,0,0,0,9,2,1,569.5,291364.69,195677.06,174732.88,0,0,0,2294.8779 +10290,12537,22365,22366,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-2,14.590569,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6902499,0,51.83,57.2,52,48,8.333333333333334,1,1,0,0,0,9,5,1,1679.5,487013.47,146496.41,357786.88,130083.66,0,0,4225.0518 +10290,12537,22366,22365,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.550395,8.9899883,7.2193546,9,2,-76.609253,0,-9,-9,2021,10,0,45,45,1,1,0,15.881071,15.881071,.05,.05,0,0,0,0,0,0,1,1,0,4.5314779,7.7430863,52,48,51.83,57.2,7,1,1,0,0,1,9,5,1,1679.5,487013.47,146496.41,357786.88,130083.66,0,0,4225.0518 +10291,12538,22367,-9,22368,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1004.9967,-9,2,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,5,3,4,0,0,0,8,1,0,1747.5,88938.266,0,0,0,0,0,595.43475 +10291,12538,22368,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1084.5491,0,2,1,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,38.87,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,1747.5,88938.266,0,0,0,0,0,595.43475 +10292,12539,22369,22370,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,9.0167522,8.7247581,0,15,0,-65.008698,0,2,2,2021,7,0,35,35,1,0,0,26.576342,26.576342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.33,55.93,8.333333333333334,2,3,0,0,9,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22370,22369,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0182486,7.8969526,0,15,0,103.43147,0,2,1,2021,10,0,20,20,1,0,0,15.805946,15.805946,.05,.05,0,0,0,0,0,0,1,1,0,2.4932222,0,46.33,55.93,57.16,56.15,8.333333333333334,2,3,0,0,5,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22371,-9,22370,22369,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5595,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22372,-9,22370,22369,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1167.9486,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10293,12540,22373,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.2483964,4.188643,0,0,-1071.1694,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,.1516162,0,14.5,1,1,0,0,4.6087766,34.6,32.91,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,269,43195.922,0,120310.19,0,0,0,896.29932 +10294,12541,22374,22375,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,-1,-30.921692,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.39496812,0,50.25,56.54,58.73,54.25,10,1,1,0,0,0,2,5,1,1028.5,783550.63,472230.38,274397.63,143854.63,1862.957,4731.4746,4093.7197 +10294,12541,22375,22374,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,9.4165058,9.3274212,0,8,1,34.450779,0,3,3,2021,7,0,50,50,1,0,0,26.311363,26.311363,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.73,54.25,50.25,56.54,0,1,1,0,0,9,2,5,1,1028.5,783550.63,472230.38,274397.63,143854.63,1862.957,4731.4746,4093.7197 +10295,12542,22376,22377,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,6.9197426,7.4214706,0,26,-2,8.1034794,0,2,2,2021,6,0,15,15,1,0,0,8.3266153,8.3266153,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.41,56.15,8.333333333333334,2,3,0,0,9,4,2,1,416.5,256065.34,0,320993.38,0,0,1161.9923,1223.3174 +10295,12542,22377,22376,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.1082315,5.9854751,0,6,2,-12.84203,0,-9,-9,2021,6,0,40,45,1,0,0,1.3506371,1.3506371,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,54.79,55.86,8.333333333333334,2,3,0,0,9,4,2,1,416.5,256065.34,0,320993.38,0,0,1161.9923,1223.3174 +10295,12543,22378,-9,22376,22377,1,0,18,0,0,0,2,2,1,0,4,7.1002173,7.009058,0,0,0,-827.78723,-9,2,2,2021,9,0,12,0,1,0,1,12.196935,12.196935,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,10,2,3,0,0,1,4,2,1,367,-140169.67,0,0,0,0,0,1233.5854 +10295,12544,22379,-9,22376,22377,1,1,20,0,0,0,2,2,1,0,5,6.4056106,6.3299956,0,0,0,-992.22791,-9,2,2,2021,8,2,18,0,1,2,1,3.2491598,3.2491598,0,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,5,2,3,0,0,6,4,2,1,2060,0,0,0,0,0,0,467.31131 +10296,12545,22380,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-862.67236,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,454,217539.25,0,0,0,0,0,1346.4087 +10297,12546,22381,-9,22382,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.78406,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,565.5,157088.92,85588.727,92694.281,59032.703,1775.734,160.15399,1678.7535 +10297,12546,22382,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.9274445,7.8920851,0,0,0,-988.31305,0,2,2,2021,25,12,40,40,1,12,0,8.6429691,8.6429691,.05,.05,0,0,0,0,0,2,1,1,0,0,0,18.2,56.57,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,565.5,157088.92,85588.727,92694.281,59032.703,1775.734,160.15399,1678.7535 +10298,12547,22383,22384,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,6.4073806,6.5389209,0,22,-10,-38.317558,0,1,1,2021,18,7,24,24,1,7,0,2.6411262,2.6411262,0,0,0,0,0,0,0,0,1,1,0,0,0,29.72,52.59,36.25,33.82,1.666666666666667,2,3,0,0,11,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10298,12547,22384,22383,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,7.3702707,7.170311,0,22,10,107.35584,0,3,1,2021,19,6,16,27,1,6,0,11.028824,11.028824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.25,33.82,29.72,52.59,0,2,3,0,1,14,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10298,12547,22385,-9,22383,22384,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.75482,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10299,12548,22386,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,9.4296417,9.4049711,0,0,-1012.7237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7397954,9.0439825,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,362,1945316.1,699605.56,192978.27,0,0,0,4016.6997 +10300,12549,22387,22389,-9,-9,1,1,32,2,2,0,1,1,-9,0,3,8.5366898,8.2423325,0,9,1,73.147552,0,2,2,2021,18,6,37,37,1,6,0,20.994286,20.994286,.05,.05,0,0,0,0,0,2,1,1,0,0,0,26.61,59.47,32.96,56.51,6.666666666666667,1,1,0,0,9,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22388,-9,22389,22387,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0165,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22389,22387,-9,-9,1,0,31,2,2,0,1,1,-9,0,4,7.7605562,7.7057438,0,9,-1,74.48114,0,2,2,2021,13,3,29,29,1,3,0,12.39638,12.39638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.96,56.51,26.61,59.47,8.333333333333334,1,1,0,0,9,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22390,-9,22389,22387,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-916.87384,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10301,12550,22391,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.8406,0,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.1,49.01,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,858,234540.59,0,0,0,437.7113,0,298.92462 +10302,12551,22392,22393,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4847212,8.4572983,0,28,1,-19.742701,0,-9,-9,2021,4,0,40,40,1,0,0,13.536789,13.536789,.05,.05,0,0,0,0,0,0,0,0,0,6.9385571,0,62.49,55.09,59.53,56.44,10,1,1,0,0,14,2,5,1,946.5,306743.25,140124.86,208481.61,0,0,3351.4255,4358.29 +10302,12551,22393,22392,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.8808627,7.7012038,0,27,-1,78.141121,0,3,2,2021,7,0,32,33,1,0,0,7.4202347,7.4202347,.05,.05,0,0,0,0,0,0,0,0,0,8.0839243,0,59.53,56.44,62.49,55.09,10,1,1,0,0,14,2,5,1,946.5,306743.25,140124.86,208481.61,0,0,3351.4255,4358.29 +10302,12552,22394,-9,22393,22392,1,1,24,0,0,0,1,1,-9,0,4,8.3799524,8.1348314,0,0,0,-891.11053,0,1,2,2021,12,1,48,40,1,1,1,8.8118753,8.8118753,.05,.05,0,0,0,0,0,0,0,0,0,7.3670306,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,231,538893.75,34263.355,226237.11,0,1285.4307,3021.281,1633.9419 +10302,12553,22395,-9,22393,22392,1,0,23,0,0,0,1,1,1,0,4,7.9616451,7.6462626,0,0,0,-1153.6438,-9,1,2,2021,6,0,37,0,1,0,1,9.7813616,9.7813616,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,377,-34825.797,75319.445,0,0,0,0,820.02618 +10303,12554,22396,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.0623,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.68,37.85,-9,-9,5,1,1,0,0,8,9,1,0,1350,112338.69,87776.797,0,0,0,0,846.61621 +10304,12555,22397,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1055.7606,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0258839,0,60.47,41.03,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,601,1115787.9,1106597.1,403304.22,127484.36,4766.8774,27362.961,1213.6934 +10305,12556,22398,-9,22399,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4095,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12556,22399,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.5623732,8.8093672,0,12,2,-61.901039,0,2,1,2021,11,0,43,43,1,0,0,11.860838,11.860838,0,0,0,0,0,0,0,0,1,1,0,0,0,30.67,65.95,41.17,59.31,8.333333333333334,1,1,0,0,11,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12556,22400,-9,22399,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.42432,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12557,22401,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0645018,8.0814028,0,12,-2,-52.087196,0,3,3,2021,5,0,20,19,1,0,0,22.214087,22.214087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,30.67,65.95,8.333333333333334,1,1,0,0,5,2,4,1,559,-80135.773,29277.629,0,0,0,0,356.26193 +10306,12558,22402,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.6369152,7.1043711,0,0,0,-935.59583,0,2,3,2021,6,0,13,13,1,0,0,13.382669,13.382669,0,0,0,0,0,0,0,0,0,0,0,2.8870652,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,619,-153569.56,0,0,0,358.40652,0,1179.2444 +10307,12559,22403,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.9042,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.1046937,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,653,55690.129,0,0,0,0,0,1892.3768 +10308,12560,22404,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.2307215,6.1454964,0,0,-1031.326,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.83075958,5.991354,52,45,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,384,325754.41,93184.094,159662.56,0,0,0,1594.9049 +10309,12561,22405,-9,22406,22408,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8775,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22406,22408,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.7581501,9.0150318,6.1083617,1,0,114.7542,-9,-9,-9,2021,9,0,72,0,1,0,0,7.0998006,7.0998006,0,0,0,0,0,0,0,0,1,1,0,6.1718473,0,58.32,50.22,49.79,51.62,8.333333333333334,1,1,0,0,5,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22407,-9,22406,22408,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.70984,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22408,22406,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.8649778,9.0283995,0,1,9,-74.65136,0,2,2,2021,10,0,50,50,1,0,0,15.817376,15.817376,.05,.05,0,0,0,0,0,0,1,1,0,3.6104796,0,49.79,51.62,58.32,50.22,8.333333333333334,1,1,0,0,9,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10310,12562,22409,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1032.1759,0,3,2,2021,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6045613,0,29.64,52.79,-9,-9,1.666666666666667,1,1,0,0,11,7,1,1,951,0,0,0,0,0,0,508.54825 +10311,12563,22410,22411,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,8.3263798,8.2584505,0,13,2,-157.45032,0,3,3,2021,20,8,55,50,1,8,0,8.7469244,8.7469244,.05,.05,0,0,0,0,0,0,1,1,0,.20177589,0,45.28,34.98,19.4,51.97,5,1,1,0,1,11,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10311,12563,22411,22410,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,7.9249053,7.750514,0,13,-2,-21.464104,0,1,2,2021,24,12,43,42,1,12,0,7.6483278,7.6483278,0,0,0,0,0,0,0,0,1,1,0,2.7853761,0,19.4,51.97,45.28,34.98,3.333333333333333,1,1,0,0,9,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10311,12563,22412,-9,22411,22410,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.95068,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10312,12564,22413,-9,22414,22415,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.1488,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22414,22415,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.4534078,7.2466764,0,8,-5,-112.03744,0,2,2,2021,15,4,11,9,1,4,0,17.09186,17.09186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.51,54.51,6.666666666666667,1,1,0,0,10,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22415,22414,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.9865713,8.9448948,0,8,5,94.312515,0,1,1,2021,8,0,50,56,1,0,0,18.706177,18.706177,.05,.05,.05,0,0,0,0,0,1,1,0,.61982906,0,48.51,54.51,51.73,58.82,8.333333333333334,1,1,0,0,10,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22416,-9,22414,22415,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.79205,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10313,12565,22417,22418,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.6242371,7.9685612,30,-3,86.753517,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.9767311,7.5545373,28.86,65.16,51.19,52.17,8.333333333333334,1,1,0,0,5,9,3,1,1103,1018344.6,714458.5,286249.06,0,7346.356,1015.1414,2943.105 +10313,12565,22418,22417,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.5733523,6.5864482,11,3,-112.15401,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2902312,6.9218926,51.19,52.17,28.86,65.16,8.333333333333334,1,1,0,0,9,9,3,1,1103,1018344.6,714458.5,286249.06,0,7346.356,1015.1414,2943.105 +10314,12566,22419,22420,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,7.1678586,7.4230947,62,4,86.051102,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5387502,7.3797703,31.75,19.7,43.26,41.24,3.333333333333333,1,1,0,0,0,1,3,1,506,286574.41,163829.14,79621.047,0,0,0,2679.6001 +10314,12566,22420,22419,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0776086,6.3602381,62,-4,-14.472859,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.6179252,6.0248322,43.26,41.24,31.75,19.7,6.666666666666667,1,1,0,0,0,1,3,1,506,286574.41,163829.14,79621.047,0,0,0,2679.6001 +10315,12567,22421,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.7370372,6.9243746,0,0,-990.90308,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4924459,6.5655251,64.79000000000001,40.37,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,3762,196334.56,205185.84,123411.46,0,15616.8,1781.2747,677.96124 +10315,12568,22422,-9,-9,22421,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.1764,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.84,24.64,-9,-9,5,1,1,0,0,0,9,1,1,1327,100095.71,0,0,0,0,0,-681.09302 +10316,12569,22423,-9,22424,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.51257,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10316,12569,22424,-9,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,6.5843425,6.3138795,0,0,0,-939.06323,0,2,2,2021,2,0,30,44,1,0,0,2.9716527,2.9716527,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10316,12569,22425,-9,22424,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-857.74609,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10317,12570,22426,22428,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,9.8662453,9.8924799,7.2536836,11,2,-88.589203,0,3,2,2021,11,0,10,10,1,0,0,159.11797,159.11797,.05,.05,0,0,0,0,0,0,1,1,0,0,6.8678937,64.96000000000001,40.38,48.28,60.18,8.333333333333334,1,1,0,0,9,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22427,-9,22428,22426,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2741,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22428,22426,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.2521639,8.3668137,0,11,-2,52.075729,0,2,2,2021,10,0,37,35,1,0,0,10.381478,10.381478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,64.96000000000001,40.38,8.333333333333334,1,1,0,0,8,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22429,-9,22428,22426,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.95728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10318,12571,22430,22431,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5206575,8.6794662,0,11,-12,-18.776518,0,2,3,2021,2,0,90,40,1,0,0,3.9977043,3.9977043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,51.4,51.6,38.59,8.333333333333334,1,1,0,0,10,4,5,1,974,399471.63,142962.97,144339.28,0,9492.2168,0,3342.2007 +10318,12571,22431,22430,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,8.031621,8.2975245,6.980629,11,12,49.536575,0,3,-9,2021,10,0,37,0,1,0,0,7.0809355,7.0809355,.05,.05,0,0,0,0,0,0,0,0,0,1.8115754,6.8855476,51.6,38.59,41.58,51.4,8.333333333333334,1,1,0,0,13,4,5,1,974,399471.63,142962.97,144339.28,0,9492.2168,0,3342.2007 +10319,12572,22432,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.6493616,8.285965,0,0,-917.76978,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9268007,8.2276592,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,178,563512.94,371717.19,133722.83,0,0,0,2934.6577 +10320,12573,22433,-9,22434,22435,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.5835,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12573,22434,22435,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.9987173,7.7801538,0,26,0,125.68326,0,3,3,2021,14,4,23,23,1,4,0,12.888734,12.888734,.05,.05,0,0,0,0,0,0,1,1,0,4.6705112,0,52.62,45.08,45.13,54.73,8.333333333333334,1,1,0,0,10,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12573,22435,22434,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.4022388,8.8113489,0,26,0,-173.82918,0,-9,2,2021,12,3,37,37,1,3,0,14.679272,14.679272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.13,54.73,52.62,45.08,3.333333333333333,1,1,0,0,9,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12574,22436,-9,22434,22435,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-895.88477,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.19,40.02,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,505,-69866.273,0,0,0,-239.27208,0,232.62578 +10321,12575,22437,22438,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.7815418,8.0643177,0,2,-2,-132.06277,0,-9,-9,2021,13,2,45,40,1,2,0,6.3937631,6.3937631,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,59.68,42.85,62.85,6.666666666666667,1,1,0,0,2,5,4,0,1115,-2074.2334,0,0,0,-8.9321899,0,2021.0181 +10321,12575,22438,22437,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.8956332,7.899961,0,2,2,-17.164721,0,2,2,2021,13,3,50,40,1,3,0,6.5924239,6.5924239,0,0,0,0,0,0,0,2,1,1,0,0,0,42.85,62.85,40.83,59.68,6.666666666666667,1,1,0,0,5,5,4,0,1115,-2074.2334,0,0,0,-8.9321899,0,2021.0181 +10322,12576,22439,22440,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.2702746,5.1896138,5,0,82.446457,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5267339,5.2720246,42.17,56.08,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,669,1192325.3,779341.38,275870.31,0,0,0,3059.7305 +10322,12576,22440,22439,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.2247725,7.944953,46,0,-19.119738,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4085784,8.3276577,57.16,56.15,42.17,56.08,8.333333333333334,1,1,0,0,0,1,3,1,669,1192325.3,779341.38,275870.31,0,0,0,3059.7305 +10323,12577,22441,22442,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.7613549,7.7106891,0,2,1,-22.961718,0,-9,-9,2021,8,0,40,41,1,0,0,7.2773905,7.2773905,0,0,0,0,0,0,0,0,0,0,0,6.6543632,0,42.35,55.99,40.41,50.59,8.333333333333334,1,1,0,0,8,6,4,1,551.5,26921.943,20617.967,105200.11,118576.3,0,668.59564,3478.7334 +10323,12577,22442,22441,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.2492571,8.2755575,0,2,-1,21.237873,0,-9,-9,2021,12,1,44,44,1,1,0,11.853084,11.853084,.05,.05,0,0,0,0,0,0,0,0,0,6.405231,0,40.41,50.59,42.35,55.99,5,4,2,0,0,7,6,4,1,551.5,26921.943,20617.967,105200.11,118576.3,0,668.59564,3478.7334 +10323,12578,22443,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,7.8902011,8.0120382,0,0,0,-1176.7281,0,-9,-9,2021,21,6,39,39,1,6,0,8.2102089,8.2102089,0,0,0,0,0,0,0,0,0,0,0,0,0,23.22,50.45,-9,-9,1.666666666666667,1,1,0,1,3,6,4,1,3671,-268967.94,0,0,0,3377.6323,0,1136.1182 +10324,12579,22444,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.123836,6.2543802,0,0,-1026.9614,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.396163,0,69.84,17.55,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,1006,484170.91,234540.41,211235.77,0,0,0,1048.7725 +10325,12580,22445,22446,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2133183,6.8667626,7,0,-88.961304,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3689785,7.352344,57.16,56.15,60.3,46.58,10,1,1,0,0,3,9,5,1,1198.5,1926311.3,1794080.4,266025.5,11610.779,4485.3608,0,6571.6377 +10325,12580,22446,22445,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,9.2263126,8.9933863,6.6821618,7,0,-108.0153,0,3,3,2021,8,0,30,30,1,0,0,28.964115,28.964115,.05,.05,0,0,0,0,0,0,1,1,0,7.0828156,6.5200992,60.3,46.58,57.16,56.15,10,1,1,0,0,8,9,5,1,1198.5,1926311.3,1794080.4,266025.5,11610.779,4485.3608,0,6571.6377 +10325,12581,22447,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.2152948,8.2751427,0,0,0,-992.06879,0,-9,-9,2021,9,0,35,30,1,1,0,18.188128,18.188128,.05,.05,0,0,0,0,0,0,1,1,0,4.7416835,0,51,56,-9,-9,8,1,1,0,0,1,9,4,1,454,394115.41,172875.44,625846.38,504599.47,24001.764,0,2171.7961 +10326,12582,22448,22449,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4352636,8.3354368,0,7,-1,73.553162,0,2,1,2021,13,2,43,30,1,2,0,9.7894526,9.7894526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.17,17.7,49.17,56.72,6.666666666666667,1,1,0,0,7,5,5,1,295.5,1919802.3,1773648.4,227439.78,0,1552.8682,0,3875.6191 +10326,12582,22449,22448,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.0033846,8.9752216,0,7,1,17.449673,0,1,2,2021,9,0,50,55,1,0,0,22.282551,22.282551,.05,.05,0,0,0,0,0,0,0,0,0,7.2455983,0,49.17,56.72,55.17,17.7,8.333333333333334,1,1,0,0,8,5,5,1,295.5,1919802.3,1773648.4,227439.78,0,1552.8682,0,3875.6191 +10326,12583,22450,-9,22448,22449,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-940.90295,-9,2,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1052,-6834.0552,0,0,0,0,2077.8445,0 +10326,12584,22451,-9,22448,22449,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-978.92133,-9,2,1,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,-9,-9,10,1,1,0,0,3,5,1,1,364,-128957.8,0,0,0,0,2546.7319,221.47496 +10327,12585,22452,-9,22454,-9,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.3305,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22453,-9,22454,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-990.4873,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22454,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,8.2756929,8.096364,0,0,0,-1004.8218,0,2,1,2021,8,1,37,0,1,1,0,14.026067,14.026067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.85,53.07,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22455,-9,22454,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-997.44104,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22456,-9,22454,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1097.2887,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10328,12586,22457,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1129.0017,-9,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.13,33.59,-9,-9,0,1,1,1,0,0,12,1,0,559,-32762.977,0,0,0,0,0,-322.33081 +10329,12587,22458,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.3039551,9.0496635,0,0,0,-943.83459,0,2,2,2021,11,0,50,45,1,0,0,20.64134,20.64134,.05,.05,.05,0,0,0,0,0,0,0,0,6.1230192,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,9,5,1,295,33206.328,188550.53,0,0,16904.066,2270.2249,3198.3774 +10330,12588,22459,22460,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.6902518,7.9749007,10,-1,-20.820351,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.7807775,8.1802845,57.66,45.08,52.08,41.15,6.666666666666667,1,1,0,0,11,2,4,1,589.5,217121.03,57494.938,179814.66,38239.086,0,0,2051.4023 +10330,12588,22460,22459,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0219603,7.685451,0,10,1,-83.683067,0,3,2,2021,8,0,32,32,1,0,0,8.3637991,8.3637991,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,41.15,57.66,45.08,8.333333333333334,1,1,0,0,9,2,4,1,589.5,217121.03,57494.938,179814.66,38239.086,0,0,2051.4023 +10331,12589,22461,22462,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.9502568,6.9378905,49,-3,108.04276,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,4.3970485,0,0,1,1,0,0,7.2946129,49,47,58.32,50.22,7,1,1,0,0,0,10,2,0,876,352807.94,119895.17,252338.02,0,0,0,3187.8057 +10331,12589,22462,22461,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.974596,6.0451021,49,3,-61.154831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.094243,58.32,50.22,49,47,10,1,1,0,0,3,10,2,0,876,352807.94,119895.17,252338.02,0,0,0,3187.8057 +10331,12590,22463,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,6.2221274,6.327126,0,0,0,-982.30127,0,-9,-9,2021,5,0,12,0,1,0,0,6.94416,6.94416,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,0,10,2,0,745,100804.63,0,0,0,0,0,237.45137 +10332,12591,22464,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8079462,6.8624701,0,0,-781.21027,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3225727,6.5245223,66.87,27.26,-9,-9,10,1,1,0,0,0,10,2,1,1237,138175.02,134020.5,0,0,0,0,1668.7953 +10333,12592,22465,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.43399,7.1869173,0,0,-1044.5574,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2.4314282,7.7219191,46.65,53.97,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,328,535203.44,376923.81,0,0,0,0,426.41626 +10334,12593,22466,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1072.9373,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,0,4,1,0,1076,58548.547,0,0,0,0,-995.48755,1368.1613 +10335,12594,22467,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,7.7802815,7.9811072,0,0,-794.93665,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9508886,8.1714773,61.52,39.23,-9,-9,10,1,1,0,0,0,10,4,1,865,649331.75,161970.77,254368.17,0,0,0,2580.24 +10336,12595,22468,22469,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.1077175,6.1322236,59,1,-50.825859,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1379285,52,45,56.57,57.78,8,1,1,0,0,0,11,2,1,398,234156.5,199865.8,0,0,0,0,2359.1833 +10336,12595,22469,22468,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.9123578,6.9707289,59,-1,117.53641,-9,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.6605778,56.57,57.78,52,45,8.333333333333334,1,1,0,0,9,11,2,1,398,234156.5,199865.8,0,0,0,0,2359.1833 +10337,12596,22470,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3241282,8.26369,0,0,0,-996.36499,0,2,1,2021,14,2,42,24,1,2,0,11.314981,11.314981,.05,.05,0,0,0,0,0,0,1,1,0,7.3165731,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,971,-48059.078,-92261.977,0,0,0,0,2763.7083 +10338,12597,22471,22475,-9,-9,1,1,39,2,3,0,1,1,-9,0,3,9.702816,9.6192093,0,12,4,5.8756776,0,3,2,2021,9,0,35,40,1,0,0,64.226288,64.226288,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,51.57,57.06,57.76,8.333333333333334,2,3,0,0,7,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22472,-9,22475,22471,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.2906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22473,-9,22475,22471,1,1,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.791,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22474,-9,22475,22471,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.1642,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22475,22471,-9,-9,1,0,35,2,3,0,1,1,-9,0,5,9.0536184,9.1721058,0,12,-4,102.75126,0,2,1,2021,9,0,20,30,1,0,0,63.060402,63.060402,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.51,51.57,8.333333333333334,2,3,0,0,5,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10339,12598,22476,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.9304037,5.2588935,0,0,-940.62109,-9,2,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0884967,45.22,33.2,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,672,199638.91,69715.5,64639.039,0,0,0,1368.0607 +10340,12599,22477,22478,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.8073983,7.2657566,0,39,1,-16.056137,0,3,3,2021,6,0,55,50,1,0,0,2.0517726,2.0517726,0,0,0,0,0,0,0,0,0,0,0,3.2622929,0,60.69,53.18,57.06,57.76,10,1,1,0,0,9,10,2,1,591.5,-146743.48,0,0,0,0,0,1310.7886 +10340,12599,22478,22477,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,39,-1,79.399696,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4382458,0,57.06,57.76,60.69,53.18,10,1,1,0,0,0,10,2,1,591.5,-146743.48,0,0,0,0,0,1310.7886 +10341,12600,22479,22480,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,29,-7,19.77153,0,3,3,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.01,54.06,40.32,53.3,8.333333333333334,1,1,0,0,10,2,3,1,732.5,304688.56,304683.28,0,0,0,778.245,1533.8026 +10341,12600,22480,22479,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.2436819,8.0220985,0,28,7,-33.800644,0,3,3,2021,11,0,31,32,1,0,0,12.552273,12.552273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.32,53.3,53.01,54.06,8.333333333333334,1,1,0,0,14,2,3,1,732.5,304688.56,304683.28,0,0,0,778.245,1533.8026 +10341,12601,22481,-9,22479,22480,1,1,22,0,0,0,2,2,-9,0,3,7.1064863,7.3249836,0,0,0,-923.99463,0,2,3,2021,9,0,25,15,1,0,1,5.5981193,5.5981193,0,0,0,0,0,0,0,0,0,0,0,0,0,54.89,36.69,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,336,67424.961,0,0,0,0,0,-191.23123 +10342,12602,22482,22483,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,5.5196872,5.6959028,45,0,79.231865,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062129,5.4206009,48.87,58.55,35.79,52.24,8.333333333333334,1,1,0,0,0,2,2,1,449,794909.56,437435.44,233253.63,0,0,0,2202.7791 +10342,12602,22483,22482,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.7908344,6.9210296,45,0,141.58331,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1291776,6.8794208,35.79,52.24,48.87,58.55,8.333333333333334,1,1,0,0,1,2,2,1,449,794909.56,437435.44,233253.63,0,0,0,2202.7791 +10343,12603,22484,22485,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9438457,9.0395432,5.2541499,34,2,-116.17259,0,3,3,2021,12,0,44,45,1,0,0,19.101469,19.101469,.05,.05,.05,0,0,0,0,0,0,0,0,5.7865372,0,48.53,58.91,49.04,55.86,8.333333333333334,4,2,0,0,10,5,5,1,537.5,1026730.2,602117.75,261880.94,12900.706,0,0,4215.6943 +10343,12603,22485,22484,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.8798838,8.6725578,5.509614,34,-2,-91.930336,0,3,3,2021,13,1,47,45,1,1,0,14.133036,14.133036,.05,.05,0,0,0,0,0,0,0,0,0,5.464313,0,49.04,55.86,48.53,58.91,6.666666666666667,1,1,0,1,8,5,5,1,537.5,1026730.2,602117.75,261880.94,12900.706,0,0,4215.6943 +10344,12604,22486,22487,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6818819,8.5985146,0,19,2,56.788403,0,2,1,2021,4,0,38,38,1,0,0,19.62784,19.62784,.05,.05,0,0,0,0,0,0,0,0,0,2.3820937,0,55.32,46.24,24.14,64.69,8.333333333333334,2,3,0,0,13,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10344,12604,22487,22486,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.6570606,7.4576297,0,10,-2,-11.497243,-9,-9,-9,2021,6,0,38,0,1,0,0,6.1709819,6.1709819,.05,.05,0,0,0,0,0,0,0,0,0,2.0458639,0,24.14,64.69,55.32,46.24,8.333333333333334,2,3,0,0,4,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10344,12604,22488,-9,22486,22487,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.93158,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10345,12605,22489,22490,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5868034,8.4739447,0,12,0,89.677742,0,3,2,2021,8,0,50,48,1,0,0,10.79433,10.79433,.05,.05,0,0,0,0,0,0,0,0,0,.78792226,0,54.96,53.17,45.47,54.49,8.333333333333334,1,1,0,0,13,4,5,1,1484.5,80822.328,33931.719,185686.92,95902.406,3633.9375,0,3317.6396 +10345,12605,22490,22489,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4714842,7.6207404,0,12,9,-35.092567,0,3,-9,2021,18,6,23,28,1,6,0,7.5589027,7.5589027,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.47,54.49,54.96,53.17,8.333333333333334,4,2,0,0,12,4,5,1,1484.5,80822.328,33931.719,185686.92,95902.406,3633.9375,0,3317.6396 +10346,12606,22491,-9,22493,22492,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.64001,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10346,12606,22492,22493,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,0,0,0,8,-8,0,0,2,2,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.6,52.77,51.24,58.84,5,1,1,1,0,8,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10346,12606,22493,22492,-9,-9,1,0,45,0,1,0,3,3,-9,1,4,0,0,0,8,8,0,0,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.24,58.84,44.6,52.77,3.333333333333333,3,4,0,0,0,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10347,12607,22494,22495,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,8.248929,7.9819336,1,-5,77.857964,-9,-9,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90805817,8.2853231,55.83,54.24,53.11,47.09,8.333333333333334,1,1,0,0,0,2,4,1,1080,2132913,1382362.5,453981.56,0,0,0,4255.5029 +10347,12607,22495,22494,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.2194691,8.1734295,1,5,8.4081812,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,4.162375,0,27,1,1,0,4.3011975,8.4753723,53.11,47.09,55.83,54.24,5,1,1,0,0,6,2,4,1,1080,2132913,1382362.5,453981.56,0,0,0,4255.5029 +10348,12608,22496,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.2436304,7.2556491,0,0,0,-1004.1597,-9,3,2,2021,11,0,22,0,1,0,0,7.3825917,7.3825917,.05,.05,0,0,0,0,0,2,1,0,1,0,0,42.28,52.7,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,588,-15982.852,-48896.988,107207.64,26991.988,0,0,789.37549 +10348,12609,22497,-9,22496,-9,1,1,21,0,1,0,2,2,-9,0,2,0,0,0,0,0,-972.0943,-9,2,-9,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.44,44.52,-9,-9,5,1,1,1,0,0,12,1,1,390,-57474.512,0,0,0,0,0,60.935795 +10349,12610,22498,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.5050435,7.3824239,0,0,-1169.1735,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0465379,62.39,56.71,-9,-9,10,1,1,0,0,0,12,3,1,946,147465.34,309363.28,41977.266,59649.391,0,2431.6462,1641.4558 +10350,12611,22499,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.160296,5.833518,0,0,-1086.9,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5314846,5.978797,40.3,42.59,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,1508,154717.98,-94451.008,0,0,0,0,162.92368 +10351,12612,22500,-9,-9,-9,1,0,62,1,1,0,2,2,-9,0,2,0,0,0,0,0,-997.65302,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.29,25.79,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,235,172287.56,67964.242,111467.9,29081.322,0,7186.5776,474.11249 +10352,12613,22501,22502,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1020575,9.1108761,0,15,7,-13.262433,0,1,1,2021,12,0,50,45,1,0,0,20.036678,20.036678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.96,50.74,50.03,52.62,5,4,5,0,0,11,8,5,1,665,1636905.8,607712.75,813793.25,0,0,0,6630.8057 +10352,12613,22502,22501,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.5406189,9.6037169,0,15,-7,82.053535,0,3,2,2021,10,0,70,60,1,0,0,20.649979,20.649979,.05,.05,0,0,0,0,0,2,0,0,0,3.9085455,0,50.03,52.62,44.96,50.74,6.666666666666667,1,1,0,0,10,8,5,1,665,1636905.8,607712.75,813793.25,0,0,0,6630.8057 +10353,12614,22503,22504,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3521547,7.4423599,0,7,-8,-44.54211,0,3,3,2021,20,9,28,36,1,9,0,8.9615765,8.9615765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,8.333333333333334,1,1,0,0,8,8,4,1,1190.5,737497.38,117843.83,283884.47,0,0,0,5067.5459 +10353,12614,22504,22503,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.0440836,8.1787024,0,7,8,86.480705,0,3,3,2021,10,0,40,40,1,1,0,8.5083151,8.5083151,.05,.05,0,0,0,0,0,0,1,1,0,7.8911276,0,52,47,50.03,52.62,7,1,1,0,0,1,8,4,1,1190.5,737497.38,117843.83,283884.47,0,0,0,5067.5459 +10354,12615,22505,-9,22507,22506,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-870.5614,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10354,12615,22506,22507,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,0,0,0,2,2,-69.717453,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.356926,0,34.57,50.44,42.73,58.53,3.333333333333333,1,1,1,0,7,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10354,12615,22507,22506,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.9950676,8.2251072,0,22,-2,20.162657,0,2,1,2021,19,8,24,25,1,8,0,14.722074,14.722074,0,0,0,0,0,0,0,0,1,1,0,.70847541,0,42.73,58.53,34.57,50.44,5,1,1,0,0,6,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10355,12616,22508,22509,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.8029222,5.5162196,53,5,92.780083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5491867,5.9583406,65.95,37.11,52,46,10,1,1,0,0,0,10,2,1,581,321518.97,111931.72,218647.25,0,0,0,1617.877 +10355,12616,22509,22508,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-5,92.306465,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.7559114,0,0,1,1,0,0,0,52,46,65.95,37.11,8,1,1,0,0,0,10,2,1,581,321518.97,111931.72,218647.25,0,0,0,1617.877 +10356,12617,22510,22511,-9,-9,1,1,55,0,1,0,1,1,-9,0,2,8.3853006,8.1702862,0,12,3,12.541776,0,3,3,2021,12,0,48,57,1,0,0,9.9769077,9.9769077,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.36,34.01,50.05,55.41,3.333333333333333,1,1,0,0,12,12,4,1,1214.5,922913.75,773861.81,162969.56,55776.57,5947.6504,654.05835,3654.6563 +10356,12617,22511,22510,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.3931284,8.825635,0,12,-3,70.642067,0,3,2,2021,10,0,35,30,1,0,0,17.821175,17.821175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.05,55.41,41.36,34.01,6.666666666666667,1,1,0,0,13,12,4,1,1214.5,922913.75,773861.81,162969.56,55776.57,5947.6504,654.05835,3654.6563 +10356,12618,22512,-9,22511,22510,1,1,19,0,1,0,2,2,-9,0,4,7.7349176,7.9484344,0,0,0,-1001.82,0,2,1,2021,8,0,37,0,1,0,1,8.4569836,8.4569836,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,625,-35634.852,0,0,0,0,682.8252,949.47357 +10357,12619,22513,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.5943456,7.4570017,0,0,-1025.4231,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.4611716,7.5397534,63.22,37.55,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,730,402540.22,442516.81,239058.44,49242.449,18199.771,0,1791.6079 +10358,12620,22514,-9,22515,22516,1,0,16,0,1,1,2,0,-9,0,3,0,3.5342541,3.759872,0,0,-1172.8834,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3017416,0,28.91,61.12,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12620,22515,22516,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.2566752,7.4037299,0,24,-8,-21.932087,0,3,3,2021,11,0,25,25,1,0,0,8.1725636,8.1725636,0,0,0,0,0,0,0,0,1,1,0,0,0,46.72,39.2,57.16,56.15,5,1,1,0,0,9,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12620,22516,22515,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,7.2803421,7.2653165,0,24,8,24.058563,0,2,2,2021,10,0,50,50,1,0,0,3.4516015,3.4516015,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.72,39.2,6.666666666666667,1,1,0,0,9,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12621,22517,-9,22515,22516,1,1,29,0,1,0,2,2,-9,0,3,7.99894,8.4075298,0,0,0,-982.97363,-9,2,3,2021,22,6,61,0,1,6,1,7.647644,7.647644,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,1.666666666666667,1,1,0,0,4,6,4,1,658,28159.408,0,0,0,0,0,1221.2601 +10359,12622,22518,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.8817101,8.1723566,0,0,-1046.728,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9614916,8.4463081,55.79,27.1,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,531,273510.19,182464.8,0,0,0,0,3100.9312 +10360,12623,22519,22521,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4386892,8.3481264,0,8,4,-159.9184,0,1,1,2021,19,6,30,32,1,6,0,17.104023,17.104023,0,0,0,0,0,0,0,0,1,1,0,1.9819622,0,33.97,57.61,51.14,60.45,8.333333333333334,1,1,0,0,1,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22520,-9,22519,22521,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.26007,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22521,22519,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.2132578,7.8223577,0,8,-4,-9.6163874,0,-9,-9,2021,12,0,40,25,1,0,0,10.673726,10.673726,0,0,.05,0,0,0,0,0,1,1,0,4.1029553,0,51.14,60.45,33.97,57.61,8.333333333333334,1,1,0,0,8,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22522,-9,22519,22521,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.92963,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10361,12624,22523,22524,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,8.0105305,7.9071994,0,1,-18,-54.587963,-9,-9,-9,2021,15,2,41,0,1,2,0,8.3680239,8.3680239,0,0,0,0,0,0,0,0,1,1,0,0,0,37.77,54.26,46.5,58.26,8.333333333333334,1,1,0,0,5,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10361,12624,22524,22523,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.645587,8.6189041,0,1,18,79.907234,0,2,2,2021,11,2,38,80,1,2,0,19.844614,19.844614,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,37.77,54.26,8.333333333333334,1,1,0,0,14,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10361,12624,22525,-9,22523,22524,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.7843,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10362,12625,22526,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.1723843,8.9516029,0,0,0,-847.99396,0,2,2,2021,8,0,40,40,1,0,0,26.991049,26.991049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,547,345884.94,235247.28,316681.44,207651.52,6001.2236,0,4447.0581 +10363,12626,22527,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,0,0,0,0,-971.14594,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,6,4,1,1,932,886136.63,479818.03,90813.352,0,0,814.99402,1104.5508 +10363,12627,22528,-9,22527,-9,1,0,25,0,0,0,2,2,-9,0,4,7.1168847,7.1751604,0,0,0,-975.50226,0,1,2,2021,8,2,22,40,1,2,0,7.8446841,7.8446841,0,0,0,0,0,0,2.0418246,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,952,-116173.23,0,0,0,0,0,1106.2611 +10364,12628,22529,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.9696722,7.8174906,0,0,-1144.5396,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,6.355392,0,7,1,1,0,1.5333209,7.7712636,52.13,40.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,2732,942304.63,252048.39,683812.63,0,0,0,1939.7325 +10364,12629,22530,-9,22529,-9,1,1,38,0,0,0,2,2,-9,1,3,8.7045975,8.4845047,0,0,0,-938.45337,0,3,3,2021,6,0,46,50,1,0,0,17.339527,17.339527,.05,.05,0,0,0,0,0,27,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,669,426971.88,84582.672,218733.41,108564.45,7666.8926,0,2836.2109 +10364,12630,22531,-9,22529,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1080.7648,0,2,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,3,4,0,0,0,8,1,1,467,120396.83,0,0,0,0,0,-67.620537 +10365,12631,22532,22534,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,5.8392487,5.8372955,0,8,3,51.59724,0,-9,-9,2021,5,1,4,4,1,1,0,9.6598234,9.6598234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.15,52.91,10,1,1,0,0,6,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10365,12631,22533,-9,22534,22532,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.96515,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10365,12631,22534,22532,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.5126615,7.71064,0,8,-3,-72.548286,0,2,2,2021,8,0,20,20,1,0,0,9.6284695,9.6284695,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,62.49,55.09,10,1,1,0,0,9,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10366,12632,22535,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.6684079,6.2654576,0,0,-1014.5551,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6041903,6.0894246,43.01,42.51,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,28,231564.36,0,187264.13,34089.801,0,0,1376.2013 +10367,12633,22536,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-928.25226,0,3,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,39.96,-9,-9,6.666666666666667,1,1,0,0,1,8,1,0,409,382149.13,0,398139.28,0,0,0,2105.0193 +10367,12634,22537,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,4,8.267519,8.0389185,0,0,0,-1018.2672,0,-9,-9,2021,7,1,55,0,1,1,0,6.0544858,6.0544858,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,8,4,0,385,72115.844,-60340.848,0,0,0,0,1664.4417 +10368,12635,22538,-9,22540,22539,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.3774,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22539,22540,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.2469482,8.5810099,0,23,8,52.605698,0,3,3,2021,12,0,42,60,1,0,0,13.246903,13.246903,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.84,55.93,48.76,53.24,8.333333333333334,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22540,22539,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.1622763,8.0969372,0,23,-8,-109.34164,0,2,2,2021,12,0,37,36,1,0,0,9.805131,9.805131,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,42.84,55.93,6.666666666666667,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22541,-9,22540,22539,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.00604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22542,-9,22540,22539,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-952.94574,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12636,22543,-9,22540,22539,1,1,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-915.84967,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.92259294,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,1189,0,0,0,0,0,0,292.74631 +10369,12637,22544,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-938.92426,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,2,3,0,0,0,5,1,0,657,0,0,0,0,0,0,1180.5742 +10370,12638,22545,22546,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8769464,8.9521999,0,3,-2,243.55489,-9,-9,-9,2021,7,0,40,0,1,0,0,26.611208,26.611208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.36,45.47,8.333333333333334,1,1,0,0,5,12,5,0,885,853457,495792.69,263752.84,76797.719,0,0,2704.7227 +10370,12638,22546,22545,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,0,0,0,3,2,126.70733,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.36,45.47,54.2,57.49,6.666666666666667,1,1,1,0,9,12,5,0,885,853457,495792.69,263752.84,76797.719,0,0,2704.7227 +10371,12639,22547,-9,22550,22549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-776.13153,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22548,-9,22550,22549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.8927,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22549,22550,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.1378107,8.424612,0,10,7,-61.632969,0,3,3,2021,10,1,41,42,1,1,0,9.5374155,9.5374155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.41,30.5,44.93,20.46,8.333333333333334,1,1,0,0,10,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22550,22549,-9,-9,1,0,47,0,2,0,1,1,-9,0,1,8.4167509,8.6819916,0,11,-7,-74.625504,0,2,2,2021,9,0,31,30,1,0,0,20.162918,20.162918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.93,20.46,56.41,30.5,3.333333333333333,1,1,0,0,11,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12640,22551,-9,22550,22549,1,1,21,0,2,1,2,0,-9,0,2,0,4.2957215,4.2381468,0,0,-900.55029,-9,1,2,2021,25,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0832443,0,34.45,42.64,-9,-9,3.333333333333333,1,1,0,1,0,7,2,1,1168,11260.87,0,0,0,0,0,-37.210308 +10371,12641,22552,-9,22550,22549,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1038.1455,1,1,2,2021,23,8,0,8,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,41.13,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,657,-84333.422,0,0,0,0,0,0 +10372,12642,22553,22554,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.3853755,7.4638643,40,1,83.251183,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3624969,55.31,44.9,46.36,41.48,8.333333333333334,1,1,0,0,10,2,3,1,427,730613.81,391339,188048.63,0,0,31.078949,280.39899 +10372,12642,22554,22553,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,40,-1,-28.083401,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.36,41.48,55.31,44.9,8.333333333333334,1,1,0,0,0,2,3,1,427,730613.81,391339,188048.63,0,0,31.078949,280.39899 +10372,12643,22555,-9,22554,22553,1,0,35,0,0,0,1,1,-9,0,3,8.4678698,8.2362051,0,0,0,-864.86292,0,2,2,2021,16,4,39,41,1,4,0,11.306258,11.306258,.05,.05,0,0,0,0,0,0,0,0,0,2.0001354,0,35.41,52.74,-9,-9,5,1,1,0,0,12,2,4,1,126,210965.31,22136.52,21495.373,33415.879,3020.8369,1703.7002,1125.167 +10373,12644,22556,22557,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,6.8900299,6.8887286,0,3,-3,36.500149,0,-9,-9,2021,7,0,15,2,1,0,0,8.0125065,8.0125065,0,0,0,0,0,0,0,0,1,1,0,0,0,53.96,26.8,20.51,66.12,10,1,1,0,0,5,4,3,1,483.5,544226.38,375875.16,183310.41,0,9648.3643,0,1261.2175 +10373,12644,22557,22556,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.5979023,7.5500255,0,3,3,44.600563,0,2,2,2021,25,10,35,40,1,10,0,7.2151618,7.2151618,0,0,0,0,0,0,0,0,1,1,0,0,0,20.51,66.12,53.96,26.8,1.666666666666667,1,1,0,0,8,4,3,1,483.5,544226.38,375875.16,183310.41,0,9648.3643,0,1261.2175 +10374,12645,22558,-9,22560,22559,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-935.32098,-9,1,1,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12645,22559,22560,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.1281395,8.8939486,0,6,0,-52.97662,0,3,3,2021,23,11,40,50,1,11,0,26.822699,26.822699,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.9,57.07,38.02,58.85,6.666666666666667,1,1,0,0,7,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12645,22560,22559,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.9612284,9.1143665,0,6,0,-62.341667,0,-9,-9,2021,7,0,38,46,1,0,0,27.273092,27.273092,0,0,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,34.9,57.07,8.333333333333334,1,1,0,0,9,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12646,22561,-9,22560,22559,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-989.61188,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,55.72,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,244,-167850.69,0,0,0,0,0,0 +10375,12647,22562,-9,22565,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.07526,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22563,-9,22565,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.8548,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22564,-9,22565,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4077,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22565,-9,-9,-9,1,0,39,0,3,0,1,1,-9,1,4,7.2270303,8.4036636,7.6432238,0,0,-1083.6958,0,3,1,2021,9,2,19,0,1,2,0,12.846324,12.846324,.05,.05,0,0,0,0,0,107,1,1,0,7.8803105,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10376,12648,22566,22568,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,0,0,0,2,-1,77.18663,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,57.33,53.46,5,1,1,0,0,5,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10376,12648,22567,-9,22566,22568,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.25647,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10376,12648,22568,22566,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,7.6430435,7.8732228,0,2,1,25.533035,0,2,3,2021,6,0,40,60,1,0,0,7.7239957,7.7239957,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.6,52.88,8.333333333333334,1,1,0,0,6,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10377,12649,22569,22570,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2979927,8.3016338,0,2,-1,-37.111092,0,1,2,2021,12,1,58,55,1,1,0,9.596673,9.596673,.05,.05,0,0,0,0,0,0,0,0,0,1.3924514,0,46.46,50.26,54.1,59.11,8.333333333333334,1,1,0,0,13,2,5,1,275.5,116869.18,130546.16,0,0,-951.37897,0,3822.2847 +10377,12649,22570,22569,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2211628,8.1788044,0,2,1,-22.966307,-9,-9,-9,2021,7,0,37,0,1,0,0,9.8981171,9.8981171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.46,50.26,8.333333333333334,1,1,0,0,6,2,5,1,275.5,116869.18,130546.16,0,0,-951.37897,0,3822.2847 +10378,12650,22571,22572,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.4121337,7.5551538,19,7,-29.231039,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1543207,7.3261423,55.79,52.62,59.14,52.5,8.333333333333334,1,1,0,0,6,4,5,1,1039,2341447.5,361897.22,850158.81,0,0,0,5125.3506 +10378,12650,22572,22571,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,9.0055447,9.1249733,19,-7,-156.78078,0,-9,-9,2021,6,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,9.2619143,59.14,52.5,55.79,52.62,10,1,1,0,0,11,4,5,1,1039,2341447.5,361897.22,850158.81,0,0,0,5125.3506 +10379,12651,22573,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.1833668,7.1403413,0,0,0,-1078.0215,0,3,3,2021,6,0,20,18,1,0,0,6.7805619,6.7805619,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,6,2,0,154,116646.7,-39006.074,0,0,0,0,1864.0735 +10379,12652,22574,-9,22573,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-934.90393,-9,3,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,6,1,0,215,90700.133,0,0,0,0,0,0 +10380,12653,22575,22576,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.4486637,5.2642522,6,-2,-39.173378,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.163765,5.6285496,53.98,50.87,40.86,44.79,8.333333333333334,1,1,0,0,3,8,2,0,900,710930.44,0,411688.06,0,0,0,1955.5588 +10380,12653,22576,22575,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.1729794,6.4404221,6,2,103.53964,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0373034,6.3108549,40.86,44.79,53.98,50.87,5,1,1,0,0,0,8,2,0,900,710930.44,0,411688.06,0,0,0,1955.5588 +10381,12654,22577,22578,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.6778917,8.3532238,43,2,-64.259674,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.0164318,8.6066122,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,1,4,1,523,1184344.5,740516.63,263284.34,0,0,0,3505.0676 +10381,12654,22578,22577,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,0,0,43,-2,-77.262283,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.8613922,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,0,1,4,1,523,1184344.5,740516.63,263284.34,0,0,0,3505.0676 +10382,12655,22579,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-919.38068,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,126,-125435.73,0,0,0,0,0,-61.86739 +10383,12656,22580,22581,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.7027369,8.828701,0,8,-5,56.817501,0,-9,2,2021,6,0,32,30,1,0,0,20.76409,20.76409,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,51.71,38.38,8.333333333333334,1,1,0,0,9,6,5,1,759,556938.13,124200.28,365188.78,52777.516,1797.3524,0,5314.0449 +10383,12656,22581,22580,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4026022,8.842823,7.7518721,8,5,-19.99839,0,3,2,2021,6,0,30,37,1,0,0,15.534461,15.534461,0,0,0,0,0,0,0,0,0,0,0,3.965239,8.1730747,51.71,38.38,55.79,52.62,8.333333333333334,1,1,0,0,9,6,5,1,759,556938.13,124200.28,365188.78,52777.516,1797.3524,0,5314.0449 +10384,12657,22582,-9,22584,22583,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.25189,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22583,22584,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.6423178,9.2996416,0,15,6,45.46381,0,-9,-9,2021,10,2,48,51,1,2,0,31.699131,31.699131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,52.23,55.6,8.333333333333334,1,1,0,0,9,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22584,22583,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6671829,8.5922928,0,12,-6,-77.334198,0,2,2,2021,2,0,32,34,1,0,0,16.93158,16.93158,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,46.16,58.62,8.333333333333334,1,1,0,0,9,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22585,-9,22584,22583,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.49701,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10385,12658,22586,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-854.8335,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1172,32508.428,0,0,0,0,0,1179.1697 +10386,12659,22587,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.2440529,7.1405506,0,0,-985.13965,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2504436,7.2330899,30.57,33.57,-9,-9,5,1,1,0,0,13,6,3,1,422,391555.78,97089.305,150813.28,0,3255.6208,2599.7683,611.49579 +10387,12660,22588,22589,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0496483,8.0650816,0,31,2,83.786217,0,2,3,2021,10,0,37,37,1,1,0,10.020721,10.020721,0,0,0,0,0,0,0,0,0,0,0,1.906662,0,52,53,54.79,55.86,8,1,1,0,0,1,9,5,1,717.5,550823.13,368971.5,347823.72,206661.17,0,10369.225,5387.5771 +10387,12660,22589,22588,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.1811523,9.4167814,0,31,-2,-41.717609,0,2,2,2021,7,0,40,48,1,0,0,43.898655,43.898655,.05,.05,0,0,0,0,0,0,0,0,0,7.5514808,0,54.79,55.86,52,53,8.333333333333334,1,1,0,0,10,9,5,1,717.5,550823.13,368971.5,347823.72,206661.17,0,10369.225,5387.5771 +10388,12661,22590,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1077404,8.1842194,0,0,-981.04852,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2633181,59.44,44.14,-9,-9,10,1,1,0,0,3,8,4,1,783,746646.81,926754.19,217091.3,0,0,0,1909.9202 +10389,12662,22591,22592,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.1200085,6.8052359,61,6,-91.155037,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.511275,0,0,1,1,0,0,6.9857121,47.75,36.39,63.4,45.23,8.333333333333334,1,1,0,0,0,5,2,1,285.5,422228.47,120484.13,151941.52,0,0,0,2580.3469 +10389,12662,22592,22591,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.5645056,6.6908965,9,-6,-20.957996,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.8826847,0,0,1,1,0,0,6.1660233,63.4,45.23,47.75,36.39,8.333333333333334,1,1,0,0,0,5,2,1,285.5,422228.47,120484.13,151941.52,0,0,0,2580.3469 +10390,12663,22593,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.6322799,8.0433016,0,0,0,-990.59698,0,2,2,2021,12,0,30,30,1,0,1,9.9647532,9.9647532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.75,58.32,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,712,33591.121,-1061.7437,0,0,0,0,807.24298 +10391,12664,22594,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.7490997,8.5352726,0,0,0,-1024.4943,0,2,2,2021,6,0,37,38,1,0,0,21.526623,21.526623,0,0,.05,0,0,0,0,0,1,1,0,1.9222986,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,579,-78997.227,-108374.79,111020.52,91752.523,0,0,1731.9946 +10392,12665,22595,22596,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.8508797,7.0343432,6,-7,-52.981003,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3858752,6.9966359,61.29,22.08,50.12,49.78,8.333333333333334,1,1,0,0,0,2,3,1,389.5,752830.13,588054.13,173438.75,0,6852.1738,2035.1616,2105.6431 +10392,12665,22596,22595,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.2256231,7.4241471,6,7,106.15856,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9985385,7.4659467,50.12,49.78,61.29,22.08,10,1,1,0,0,0,2,3,1,389.5,752830.13,588054.13,173438.75,0,6852.1738,2035.1616,2105.6431 +10393,12666,22597,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-975.80176,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,14.17,-9,-9,5,1,1,0,0,0,9,1,1,800,38999.164,248129.42,0,0,0,0,629.96301 +10393,12667,22598,-9,22597,-9,1,1,26,0,0,0,2,2,-9,0,3,8.8519659,8.7233591,0,0,0,-1032.6635,0,2,-9,2021,10,1,50,60,1,1,1,16.94607,16.94607,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,585,-4419.1045,125800.72,0,0,3913.4736,0,3069.2744 +10394,12668,22599,22602,-9,-9,1,1,43,1,3,0,2,2,-9,0,5,4.9566073,4.8725715,0,12,1,86.269341,0,2,2,2021,8,0,35,35,1,0,0,.52849948,.52849948,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,14,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22600,-9,22602,22599,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-827.62958,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22601,-9,22602,22599,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-899.9245,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22602,22599,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,7.4163427,7.2505188,0,12,-1,-31.300259,0,3,3,2021,8,0,24,25,1,0,0,9.2586832,9.2586832,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,14,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10395,12669,22603,22604,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4679508,8.4486876,0,4,3,47.816376,0,1,2,2021,10,1,45,50,1,1,0,14.780772,14.780772,.05,.05,0,0,0,0,0,0,0,0,0,3.2999554,0,39.16,62.84,41.51,55.12,8.333333333333334,1,1,0,0,7,1,5,1,1088,164396.34,-16611.553,231411.09,148888.69,44890.461,0,3410.3516 +10395,12669,22604,22603,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1239166,8.033474,0,4,-3,-13.804816,0,-9,-9,2021,14,2,38,38,1,2,0,9.5936594,9.5936594,.05,.05,0,0,0,0,0,0,0,0,0,2.3164871,0,41.51,55.12,39.16,62.84,8.333333333333334,1,1,0,0,3,1,5,1,1088,164396.34,-16611.553,231411.09,148888.69,44890.461,0,3410.3516 +10396,12670,22605,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.5167,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.42,30.58,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,279,34389.727,0,0,0,0,2211.8169,-14.83226 +10397,12671,22606,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.5417395,6.4987841,0,0,-1117.974,0,3,3,2021,10,1,0,26,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61204177,6.4500675,56.73,44.22,-9,-9,10,1,1,0,0,12,9,2,1,893,212998.41,95062.273,265643.22,0,0,0,1144.8021 +10398,12672,22607,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.807806,9.6168823,0,0,0,-986.64056,0,1,2,2021,19,7,47,45,1,7,0,30.328568,30.328568,.05,.05,0,0,0,0,0,0,0,0,0,5.1485744,0,38.51,59.43,-9,-9,5,1,1,0,0,9,8,5,1,223,654421.75,268900.13,667165,293314.06,0,0,4794.1943 +10399,12673,22608,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.5360146,8.1669302,6.8098402,0,0,-971.41327,0,2,2,2021,9,0,37,37,1,0,0,10.697786,10.697786,0,0,0,0,0,0,0,2,0,0,0,5.4515228,6.3825579,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,9,11,4,1,391,51665.609,0,149323.92,34298.844,-1419.8086,0,1503.2572 +10400,12674,22609,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.455205,5.2509341,0,0,-1051.2885,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0885873,54,51,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,551,179756.13,0,72266.219,0,0,0,560.8327 +10401,12675,22610,-9,22613,22611,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.8075,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22611,22613,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6226339,8.8751411,0,21,4,182.07425,0,-9,-9,2021,12,0,40,40,1,0,0,18.947691,18.947691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.61,48.15,46.91,51.8,5,1,1,0,0,12,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22612,-9,22613,22611,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.77472,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22613,22611,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.5794415,7.6927471,0,21,-4,95.091095,0,2,2,2021,11,0,23,24,1,0,0,9.6313181,9.6313181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.91,51.8,41.61,48.15,5,1,1,0,0,12,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10402,12676,22614,22615,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,28,6,-31.320267,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.14791229,0,57.66,45.08,48,52.43,5,1,1,0,0,0,8,5,1,332,438273.16,24215.762,413492.03,58185.496,0,0,3356.6851 +10402,12676,22615,22614,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.0067482,9.2972059,0,28,-6,-81.696129,0,2,2,2021,12,0,21,27,1,0,0,52.530319,52.530319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,52.43,57.66,45.08,5,1,1,0,0,13,8,5,1,332,438273.16,24215.762,413492.03,58185.496,0,0,3356.6851 +10403,12677,22616,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,3.8706064,4.3671465,0,0,-967.5498,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,4.4518747,0,0,1,1,0,1.6114663,3.9243231,56.6,23.1,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,2330,84051.148,0,0,0,0,0,2786.8145 +10404,12678,22617,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4471431,6.1962762,0,0,-943.99774,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9251995,6.2573371,59.01,44.42,-9,-9,10,1,1,0,0,0,12,2,1,107,111384.95,163695.02,0,0,0,0,821.89551 +10405,12679,22618,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-960.97644,0,3,2,2021,19,8,0,12,3,8,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,47.18,34.65,-9,-9,6.666666666666667,1,1,1,1,9,2,1,0,1339,2407.4463,0,0,0,0,0,873.63715 +10406,12680,22619,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.8316159,7.4165826,0,0,-990.85992,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9547036,7.7766633,37.9,51.46,-9,-9,6.666666666666667,1,1,0,0,5,5,3,1,1600,795098,529063.31,255815.67,0,0,0,1811.311 +10407,12681,22620,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3121562,7.3876143,4.9106803,0,0,-1125.6998,0,2,2,2021,10,0,16,20,1,0,0,10.279529,10.279529,.05,.05,0,0,0,0,0,0,1,1,0,5.6454563,5.354907,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,14,7,3,1,416,588360.25,239279.34,386045.5,102762.4,0,0,1144.6497 +10407,12682,22621,-9,22620,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8199964,8.1035995,0,0,0,-1029.1602,0,2,-9,2021,10,0,21,21,1,0,1,16.06432,16.06432,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,227,63638.453,-20903.686,0,0,0,0,1523.9084 +10408,12683,22622,-9,22625,-9,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-959.24878,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22623,-9,22625,-9,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-918.08295,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22624,-9,22625,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-910.91174,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22625,-9,-9,-9,1,0,29,2,3,0,2,2,-9,0,4,7.1363997,7.3150401,5.645246,0,0,-956.35565,0,2,2,2021,20,8,16,0,1,8,0,8.421401,8.421401,.05,.05,0,0,0,0,0,0,1,1,0,6.2126665,0,44.19,56.73,-9,-9,5,1,1,0,0,7,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10409,12684,22626,22627,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.0848064,5.7187605,2,1,-118.66928,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.76754,43.69,21.98,64.23999999999999,44.83,0,1,1,0,0,4,12,4,1,1260.5,1786024.4,829360.5,215399.47,0,0,0,3201.8682 +10409,12684,22627,22626,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7010202,8.4435453,6.094377,2,-1,6.8119788,0,-9,-9,2021,6,0,45,45,1,0,0,13.330232,13.330232,.05,.05,0,0,0,0,0,14.5,1,1,0,5.2140031,6.1709023,64.23999999999999,44.83,43.69,21.98,6.666666666666667,1,1,0,0,13,12,4,1,1260.5,1786024.4,829360.5,215399.47,0,0,0,3201.8682 +10410,12685,22628,22630,-9,-9,1,0,42,1,2,0,1,1,-9,0,2,8.6273375,8.73388,0,10,-1,12.316557,0,2,2,2021,13,2,55,55,1,2,0,12.341218,12.341218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.8,52.21,49.41,58.28,6.666666666666667,1,1,0,0,9,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22629,-9,22628,22630,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9347,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22630,22628,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,6.8601637,6.6254139,0,10,1,33.971428,0,1,2,2021,11,0,25,15,1,0,0,4.3022428,4.3022428,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,34.8,52.21,8.333333333333334,1,1,0,1,12,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22631,-9,22628,22630,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0679,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10411,12686,22632,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.5985613,8.5129557,0,0,0,-1011.6846,0,2,2,2021,5,0,38,67,1,0,0,17.876551,17.876551,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,33.24,-9,-9,3.333333333333333,1,1,0,0,12,12,5,0,127,1556018.9,1151530.9,235738.73,-15834.585,6813.0239,6776.5664,3282.1333 +10412,12687,22633,22634,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.1082644,7.2728024,5.4400196,39,-3,-42.753826,0,2,2,2021,12,1,19,19,1,1,0,10.473926,10.473926,.05,.05,0,0,0,0,0,14.5,1,1,0,5.1537867,5.2485967,42.25,57.44,51.83,57.2,3.333333333333333,1,1,0,0,14,5,5,1,442.5,1978732.5,1832583.5,193348.56,29586.66,6919.8765,0,7860.7446 +10412,12687,22634,22633,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.5850172,8.3249969,6.7770152,39,3,-2.9335999,0,-9,-9,2021,9,1,44,48,1,1,0,16.429092,16.429092,.05,.05,0,0,0,0,0,2,1,1,0,8.9395618,7.1161957,51.83,57.2,42.25,57.44,6.666666666666667,1,1,0,0,14,5,5,1,442.5,1978732.5,1832583.5,193348.56,29586.66,6919.8765,0,7860.7446 +10413,12688,22635,22636,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.2245865,8.2877693,53,-1,70.943588,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.951324,8.0705013,57.16,56.15,67.94,25.11,8.333333333333334,1,1,0,0,6,12,3,1,767.5,950485.88,479939.69,373460.44,0,0,0,3579.9482 +10413,12688,22636,22635,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.1016474,6.8763037,53,1,-.50501573,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1816998,7.275331,67.94,25.11,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,767.5,950485.88,479939.69,373460.44,0,0,0,3579.9482 +10414,12689,22637,22638,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,2,-1,27.994581,0,2,3,2021,20,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.371078,0,44.24,59.44,47.77,56.48,8.333333333333334,1,1,0,0,8,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22638,22637,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.4049339,9.6420307,0,2,1,56.350491,0,2,1,2021,9,0,45,40,1,0,0,42.259441,42.259441,.05,.05,0,0,0,0,0,0,1,1,0,1.439597,0,47.77,56.48,44.24,59.44,8.333333333333334,1,1,0,0,13,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22639,-9,22637,22638,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.24481,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22640,-9,22637,22638,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.02594,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10415,12690,22641,-9,22642,-9,1,1,60,0,0,0,2,2,-9,1,1,8.3032188,8.5374451,6.5754628,0,0,-997.05646,0,3,3,2021,30,12,50,48,1,12,0,8.2969952,8.2969952,0,0,0,0,0,0,0,27,1,1,0,7.3956542,7.1386828,37.74,19.51,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,891,817667.81,888951.5,151866.05,22557.754,0,0,2380.7852 +10415,12691,22642,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.6618066,6.5683365,0,0,-1016.2289,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,6.4922919,0,0,1,1,0,3.6628046,6.5167413,48.2,20.19,-9,-9,5,1,1,0,0,0,4,2,0,1933,243112.84,69038.352,0,0,0,0,1733.6633 +10416,12692,22643,22644,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3652992,7.3697491,10,-3,104.57036,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6037121,7.268692,50,47,53,47,7,1,1,0,0,0,13,3,1,558,668878.63,298288.53,334829.81,0,4722.0303,0,2767.6328 +10416,12692,22644,22643,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.7937026,6.8787098,10,3,-41.807178,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.75148761,6.6873055,53,47,50,47,7,1,1,0,0,0,13,3,1,558,668878.63,298288.53,334829.81,0,4722.0303,0,2767.6328 +10417,12693,22645,22646,-9,-9,1,1,74,0,0,0,1,1,-9,0,1,0,8.6173754,8.4437628,10,1,90.072205,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8239422,8.1324558,56.71,32.38,51.41,56.15,8.333333333333334,1,1,0,0,6,5,4,1,456.5,1060211.6,584368.63,345447.69,0,0,0,3217.2852 +10417,12693,22646,22645,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.7705922,6.6175756,10,-1,-63.958347,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6486502,51.41,56.15,56.71,32.38,5,1,1,0,0,9,5,4,1,456.5,1060211.6,584368.63,345447.69,0,0,0,3217.2852 +10418,12694,22647,22648,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.0425158,6.8784919,36,3,71.72654,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0280526,7.007154,54.2,57.49,57.57,49.69,8.333333333333334,1,1,0,0,6,9,3,1,522.5,1139992.5,477435.94,297365.94,0,6265.9937,-34.987213,1406.5017 +10418,12694,22648,22647,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.6203532,8.0062227,12,-3,140.49464,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7369432,57.57,49.69,54.2,57.49,6.666666666666667,1,1,0,0,7,9,3,1,522.5,1139992.5,477435.94,297365.94,0,6265.9937,-34.987213,1406.5017 +10418,12695,22649,-9,22647,22648,1,1,29,0,0,0,1,1,-9,0,3,7.8439412,7.9397216,0,0,0,-1108.8929,0,2,2,2021,8,0,40,40,1,0,0,8.977622,8.977622,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,486,112425.6,39536.941,0,0,0,0,1185.8459 +10419,12696,22650,22651,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.8351688,9.0782499,0,7,2,103.13258,0,2,2,2021,10,0,49,47,1,0,0,19.242266,19.242266,.05,.05,0,0,0,0,0,0,0,0,0,7.6201434,0,50.91,46.32,54.2,57.49,6.666666666666667,1,1,0,0,10,7,5,1,627.5,89181.477,124691.63,465380.56,321637.38,0,0,5076.1504 +10419,12696,22651,22650,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.4256725,8.8937349,0,7,-2,-57.440731,0,-9,-9,2021,12,2,53,63,1,2,0,14.857407,14.857407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.91,46.32,8.333333333333334,1,1,0,0,5,7,5,1,627.5,89181.477,124691.63,465380.56,321637.38,0,0,5076.1504 +10420,12697,22652,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.75983,0,-9,-9,2021,13,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,1,0,1,5,1,0,768,-228987.28,0,0,0,0,0,0 +10421,12698,22653,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,5.9641294,5.8641996,0,0,-1022.1732,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0523663,5.6145964,57.28,46.43,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,575,274726.91,-33779.695,166075.92,0,0,0,731.37195 +10422,12699,22654,-9,-9,22655,1,1,35,0,0,0,2,2,-9,0,3,7.9392452,7.9512835,0,0,0,-1080.7662,0,3,3,2021,12,1,40,40,1,1,1,11.405758,11.405758,.05,.05,0,0,0,0,0,0,0,0,0,6.7280955,0,48.93,50.55,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,996,52764.934,997.22931,0,0,0,0,1318.2422 +10422,12700,22655,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.0220518,8.5305347,6.8763814,0,0,-1044.1674,-9,-9,-9,2021,8,0,60,0,1,0,0,5.9084339,5.9084339,.05,.05,0,0,0,0,0,0,0,0,0,0,6.791801,55,52,-9,-9,8,4,6,0,0,1,7,4,1,1279,513671.09,461876.69,0,0,0,0,2222.0701 +10423,12701,22656,-9,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,6.0534058,6.2831044,0,0,-1125.1678,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1437769,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10423,12701,22657,-9,22656,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.49011,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10423,12701,22658,-9,22656,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.55121,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10424,12702,22659,22660,-9,22663,1,1,53,0,0,0,2,2,-9,0,2,7.7956347,7.355535,0,34,3,-74.550957,-9,-9,3,2021,10,0,16,0,1,0,0,10.466394,10.466394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.43,31.34,41.71,27.21,8.333333333333334,2,3,0,0,9,5,3,1,519,590660.25,127212.06,232887,31279.676,0,0,1959.8657 +10424,12702,22660,22659,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-3,38.628242,0,-9,-9,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.71,27.21,53.43,31.34,5,2,3,0,1,0,5,3,1,519,590660.25,127212.06,232887,31279.676,0,0,1959.8657 +10424,12703,22661,-9,22660,22659,1,1,22,0,0,0,2,2,-9,0,3,8.0103521,7.8928008,0,0,0,-1071.9358,0,3,2,2021,7,1,38,53,1,1,1,10.991274,10.991274,.05,.05,0,0,0,0,0,2,1,1,0,.60042822,0,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,6,5,3,1,268,-125917.02,182429.91,0,0,0,0,772.5094 +10424,12704,22662,-9,22660,22659,1,0,21,0,0,0,2,2,-9,0,4,7.5843577,8.0725412,0,0,0,-843.84833,0,2,2,2021,25,11,38,40,1,11,1,6.3560495,6.3560495,.05,.05,0,0,0,0,0,7,1,1,0,0,0,21.14,57.91,-9,-9,1.666666666666667,2,3,0,0,4,5,3,1,423,-150483.48,-49675.152,0,0,0,0,1243.9399 +10424,12705,22663,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1109.385,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,75.503189,0,0,1,1,0,7.3493509,0,55,45,-9,-9,8,2,3,0,0,0,5,1,1,2140,63364.949,0,100645.05,0,0,0,3342.9978 +10425,12706,22664,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.55651,8.0231876,5.8262544,0,0,-1138.811,0,-9,-9,2021,8,0,21,21,1,0,0,13.656927,13.656927,.05,.05,0,0,0,0,0,7,1,1,0,5.8337622,0,62.15,38.9,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,3207,-135947.45,43222.203,0,0,0,0,2584.9829 +10426,12707,22665,-9,22666,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1118.4877,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,1506,144037.94,0,0,0,1687.6516,0,856.73376 +10426,12707,22666,-9,-9,-9,1,0,23,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1026.5018,-9,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,8.550000000000001,45.3,-9,-9,0,1,1,1,1,4,5,1,0,1506,144037.94,0,0,0,1687.6516,0,856.73376 +10427,12708,22667,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.0510511,8.9060507,0,0,0,-984.10889,0,-9,-9,2021,22,10,40,40,1,10,0,17.252584,17.252584,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,1.666666666666667,1,1,0,0,12,12,5,1,857,334982.03,287995.81,135176.81,0,0,0,3238.3679 +10428,12709,22668,-9,22672,22670,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.647,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22669,-9,22672,22670,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.5502,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22670,22672,22673,22674,1,1,36,0,3,0,1,1,-9,0,4,8.0594463,8.041132,0,4,3,53.14938,0,3,2,2021,10,0,37,40,1,1,0,9.0057745,9.0057745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,45.23,32.27,7,2,3,0,0,1,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22671,-9,22672,22670,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.22742,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22672,22670,-9,-9,1,0,33,0,3,0,2,2,-9,0,2,0,0,0,11,-3,-125.07735,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,45.23,32.27,51,56,6.666666666666667,2,3,0,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12710,22673,22674,-9,-9,1,0,70,0,3,0,3,3,-9,0,3,0,0,0,4,-2,-6.3205209,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,2,3,0,0,0,8,2,1,727,461904.84,0,21012.129,0,0,0,2239.6196 +10428,12710,22674,22673,-9,-9,1,1,72,0,3,0,2,2,-9,0,3,0,3.3669825,3.7394292,4,2,44.646023,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.3406825,54,46,51,46,7,2,3,0,0,0,8,2,1,727,461904.84,0,21012.129,0,0,0,2239.6196 +10429,12711,22675,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.272028,8.2728806,0,0,0,-1032.6422,0,2,2,2021,11,1,41,40,1,1,0,11.57283,11.57283,0,0,0,0,0,0,0,27,0,0,0,0,0,55.44,46.02,-9,-9,5,1,1,0,0,8,13,4,1,203,-136816.7,0,0,0,0,0,1888.0433 +10430,12712,22676,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.8978167,9.0546741,0,8,0,-188.07187,0,1,1,2021,11,0,35,43,1,0,0,26.603127,26.603127,.05,.05,0,0,0,0,0,0,0,0,0,3.7197618,0,51.24,58.84,43.42,62.33,8.333333333333334,1,1,0,0,10,8,5,1,242,68523.492,57234.91,0,0,0,0,3115.9661 +10430,12713,22677,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.6714315,9.5529547,0,8,0,113.44997,0,1,2,2021,11,2,40,40,1,2,0,48.239986,48.239986,.05,.05,0,0,0,0,0,0,0,0,0,4.2528305,0,43.42,62.33,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,1225,387666.88,-24930.701,507784.81,333656.88,0,0,5329.5947 +10431,12714,22678,-9,22679,22680,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.35114,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10431,12714,22679,22680,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.4260106,7.3339639,0,10,-5,-67.858681,0,2,2,2021,3,0,22,18,1,0,0,7.282146,7.282146,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.71,64,8.333333333333334,1,1,0,0,12,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10431,12714,22680,22679,-9,-9,1,1,32,0,1,0,2,2,-9,0,5,8.3412914,8.4522161,0,10,5,-98.612045,0,2,2,2021,10,1,52,40,1,1,0,9.3535919,9.3535919,.05,.05,.05,0,0,0,0,0,1,1,0,3.8480105,0,37.71,64,57.16,56.15,8.333333333333334,1,1,0,0,12,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10432,12715,22681,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.5569,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,15.304976,0,0,1,1,0,0,0,63.76,18.07,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,462,284546.31,0,202131.28,0,0,0,242.61656 +10433,12716,22682,22683,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,5.448925,5.5422802,0,11,-1,27.850798,0,2,2,2021,12,0,3,0,1,0,0,9.5192852,9.5192852,.05,.05,0,0,0,0,0,0,0,0,0,3.4161608,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22683,22682,-9,-9,1,1,35,1,2,0,1,1,-9,0,5,9.6938438,9.4853754,0,11,1,104.67104,0,-9,-9,2021,10,1,98,70,1,1,0,19.117067,19.117067,.05,.05,0,0,0,0,0,0,0,0,0,8.254405,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22684,-9,22682,22683,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.93921,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22685,-9,22682,22683,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.66571,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10434,12717,22686,-9,22689,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-868.77094,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22687,-9,22689,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-944.18768,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22688,-9,22689,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.21881,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22689,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,3,0,0,0,0,0,-1098.3339,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,51,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10435,12718,22690,22691,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,8,4,-90.249794,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,50,47,7,1,1,0,0,0,7,2,1,1089.5,276471.97,97015.07,162613.84,0,0,0,2188.104 +10435,12718,22691,22690,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.3850179,6.0353632,8,-4,-13.320125,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0025008,6.4969306,50,47,52,47,10,1,1,0,0,0,7,2,1,1089.5,276471.97,97015.07,162613.84,0,0,0,2188.104 +10436,12719,22692,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-948.28925,0,3,3,2021,10,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,1,7,1,0,974,88155.727,0,0,0,0,0,311.38202 +10437,12720,22693,22694,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.1721506,8.3570824,0,7,2,.25793418,0,3,3,2021,9,0,37,37,1,0,0,11.627976,11.627976,.05,.05,0,0,0,0,0,0,0,0,0,2.399116,0,54.69,57.47,58.15,52.91,8.333333333333334,1,1,0,0,8,13,5,1,961.5,292872,115887.63,185809,27896.824,0,129.74158,3303.1213 +10437,12720,22694,22693,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6364269,8.5986919,0,7,-2,-90.718864,0,2,2,2021,9,0,37,37,1,0,0,19.18302,19.18302,.05,.05,.05,0,0,0,0,0,0,0,0,.090792648,0,58.15,52.91,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,961.5,292872,115887.63,185809,27896.824,0,129.74158,3303.1213 +10437,12721,22695,-9,22693,22694,1,1,23,0,0,0,2,2,-9,0,4,7.1864076,6.9934111,0,0,0,-1103.6301,-9,2,2,2021,10,0,37,0,1,1,1,3.2022793,3.2022793,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,3,1,892,-146912.16,0,0,0,0,0,1133.1888 +10437,12722,22696,-9,22693,22694,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1018.201,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,5607,-67109.344,0,0,0,0,0,413.21384 +10438,12723,22697,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.7633839,8.1165524,0,0,0,-953.14087,0,2,2,2021,14,2,40,9,1,2,0,8.6779242,8.6779242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.83,57.79,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,354,-18858.861,33659.973,0,0,0,0,1392.6871 +10439,12724,22698,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,8.139226,7.8572412,0,0,-927.91174,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0271268,7.9968972,45.49,58.84,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,4020,668249.81,219860.72,117003.94,0,5146.7935,0,2804.561 +10440,12725,22699,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1212654,8.0776253,0,0,0,-1015.5931,0,3,3,2021,16,4,28,30,1,4,0,14.824507,14.824507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.35,43.19,-9,-9,3.333333333333333,1,1,0,0,11,12,4,0,542,357483.38,182363.95,202794.08,93330.602,3415.6609,0,1374.5126 +10440,12726,22700,-9,22699,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0801077,7.8196726,0,0,0,-943.38745,0,2,-9,2021,12,0,40,45,1,0,1,8.1810398,8.1810398,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.87,61.03,-9,-9,6.666666666666667,1,1,0,1,7,12,4,0,653,119748.73,63246.852,0,0,2179.1775,0,1358.0917 +10441,12727,22701,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-934.46521,0,1,2,2021,32,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,32.23,-9,-9,1.666666666666667,1,1,0,1,2,9,2,1,310,354237.53,0,282185.72,0,0,0,1243.1777 +10442,12728,22702,22703,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4481244,7.6590261,0,6,-2,-32.216202,0,2,3,2021,10,1,25,24,1,1,0,9.8656845,9.8656845,.05,.05,0,0,0,0,0,0,0,0,0,1.5538622,0,49.14,44.06,54.1,59.11,6.666666666666667,1,1,0,0,7,4,5,1,340.5,500810.16,248475.33,211774.25,-7012.8247,0,0,3714.3491 +10442,12728,22703,22702,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.6013699,8.5358534,0,6,2,-13.996123,0,1,2,2021,14,5,50,47,1,5,0,10.804,10.804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.14,44.06,3.333333333333333,1,1,0,0,7,4,5,1,340.5,500810.16,248475.33,211774.25,-7012.8247,0,0,3714.3491 +10443,12729,22704,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.2448578,8.1917257,0,0,0,-1021.1836,0,3,3,2021,8,0,38,38,1,0,0,16.18261,16.18261,.05,.05,0,0,0,0,0,0,0,0,0,.087670766,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,950,-7405.6909,-3747.8799,0,0,0,0,1332.2732 +10444,12730,22705,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.4064455,8.6491928,0,0,0,-970.14575,0,2,2,2021,7,0,40,35,1,0,0,13.001499,13.001499,.05,.05,0,0,0,0,0,0,0,0,0,5.0916405,0,57.16,56.15,-9,-9,10,1,1,0,0,5,9,5,1,179,49347.59,3164.4446,76850.945,110372.83,0,0,906.01422 +10445,12731,22706,22707,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.0912113,8.0065975,10,2,38.961864,0,3,1,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.5081654,7.9945879,58.15,52.91,61.76,34.96,8.333333333333334,1,1,0,0,10,10,4,1,1062,1238879.5,610852.63,356514.56,0,0,0,6157.9824 +10445,12731,22707,22706,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4142895,7.4908447,10,-2,75.163971,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9722886,7.2680111,61.76,34.96,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,1062,1238879.5,610852.63,356514.56,0,0,0,6157.9824 +10446,12732,22708,-9,-9,-9,1,0,75,0,2,0,3,3,-9,0,3,0,0,0,0,0,-885.17072,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,14.36298,0,0,1,1,0,0,0,50,47,-9,-9,8,2,3,0,0,0,6,2,1,112,-88600.82,0,0,0,0,0,487.10959 +10446,12733,22709,22710,22708,-9,1,1,34,0,2,0,1,1,-9,0,4,8.8974953,8.946434,0,2,2,-87.797409,0,3,2,2021,12,0,41,41,1,0,0,23.538605,23.538605,.05,.05,0,0,0,0,0,0,1,1,0,7.5544753,0,55.19,54.26,54.96,53.17,5,2,3,0,0,10,6,4,1,2981,206753.61,25431.145,168620.38,91420.078,28622.584,1197.311,4443.1182 +10446,12733,22710,22709,-9,-9,1,0,32,0,2,0,1,1,-9,0,3,0,0,0,2,-2,-78.397034,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.19,54.26,6.666666666666667,2,3,1,0,0,6,4,1,2981,206753.61,25431.145,168620.38,91420.078,28622.584,1197.311,4443.1182 +10446,12734,22711,22712,-9,-9,1,0,28,0,2,0,1,1,-9,1,4,0,0,0,1,-3,29.608362,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.44,45.91,24.95,67.94,10,2,3,1,0,0,6,2,1,544.5,74572.32,25337.338,0,0,4595.6494,4133.7617,520.01306 +10446,12734,22712,22711,22708,-9,1,1,31,0,2,0,1,1,-9,0,4,6.5344315,6.7268257,0,1,3,-59.663986,0,3,-9,2021,20,8,30,0,1,8,0,3.0377574,3.0377574,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,24.95,67.94,53.44,45.91,8.333333333333334,2,3,0,0,1,6,2,1,544.5,74572.32,25337.338,0,0,4595.6494,4133.7617,520.01306 +10447,12735,22713,-9,22716,22714,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-923.37042,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22714,22716,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,9.5857153,9.6261568,0,36,-1,-151.49754,0,2,2,2021,11,0,45,40,1,0,0,39.110237,39.110237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.31,47.65,59.14,52.5,10,1,1,0,0,12,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22715,-9,22716,22714,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-919.09698,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,.46755165,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22716,22714,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,36,1,-211.31795,0,2,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,61.31,47.65,6.666666666666667,1,1,0,1,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12736,22717,-9,22716,22714,1,0,22,0,1,0,3,3,-9,0,4,7.2783637,7.5559816,0,0,0,-880.49597,0,2,2,2021,6,0,20,16,1,0,1,9.0412655,9.0412655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,10,1,1,0,0,4,8,3,1,1115,76872.016,-118198.2,0,0,9761.5928,4153.522,1162.6401 +10447,12737,22718,-9,22716,22714,1,1,19,0,1,1,3,0,0,0,4,0,0,0,0,0,-879.39209,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,3402,0,0,0,0,0,0,0 +10447,12738,22719,-9,22716,22714,1,1,23,0,1,1,3,0,0,0,4,0,0,0,0,0,-1130.8599,-9,2,2,2021,11,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9783309,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,175,0,0,0,0,0,0,320.5773 +10448,12739,22720,22723,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0202351,7.8800611,0,18,0,112.88396,0,2,2,2021,12,0,25,25,1,0,0,14.026024,14.026024,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.53,58.91,36.85,21.48,6.666666666666667,1,1,0,0,9,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22721,-9,22723,22720,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.75037,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22722,-9,22723,22720,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3884,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22723,22720,-9,-9,1,0,41,0,2,0,1,1,-9,1,1,0,0,0,18,0,-43.971088,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.85,21.48,48.53,58.91,8.333333333333334,1,1,0,0,5,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10449,12740,22724,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1103.1722,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,2.6955981,3.4812179,15.631375,0,1,1,0,0,0,51.45,23.46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,456,-82651.125,0,90511.367,0,0,0,1832.0082 +10450,12741,22725,-9,22726,-9,1,0,17,0,1,1,3,0,-9,0,2,0,0,0,0,0,-986.80499,-9,2,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,8.333333333333334,4,2,0,1,0,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10450,12741,22726,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,5,9.5853634,9.6238594,0,0,0,-1017.153,0,3,3,2021,5,0,16,16,1,0,0,100.42443,100.42443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,0,2,3,0,0,7,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10450,12741,22727,-9,22726,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.2013,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10451,12742,22728,22730,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.3272514,8.1533365,0,8,6,-6.7655168,0,3,2,2021,34,11,36,36,1,11,0,11.586294,11.586294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.22,44.89,45.91,59.89,0,1,1,0,1,10,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10451,12742,22729,-9,22730,22728,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-911.48657,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10451,12742,22730,22728,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.4681273,8.3898687,0,8,-6,29.127007,-9,3,3,2021,7,0,38,0,1,0,0,15.865101,15.865101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,12.22,44.89,6.666666666666667,1,1,0,0,10,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10452,12743,22731,-9,-9,22732,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-941.61066,-9,-9,3,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3860726,0,38.81,54.3,-9,-9,5,1,1,0,0,0,10,1,1,335,-57733.602,0,0,0,0,1953.5839,183.37866 +10452,12744,22732,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6703281,8.9266376,7.1234803,0,0,-918.53802,0,-9,-9,2021,13,1,30,37,1,1,0,24.119799,24.119799,0,0,0,0,0,0,0,0,0,0,0,5.2069664,7.4263744,43.95,51.24,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,493,248859.77,184256.63,77521.648,0,0,4211.917,2690.0918 +10453,12745,22733,22734,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.5859089,7.0522909,49,-3,-10.186256,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5348787,57.63,56.14,62.39,56.71,10,1,1,0,0,0,7,4,1,302,2166421.5,1368115.3,574902.25,0,2778.4795,0,2898.8884 +10453,12745,22734,22733,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.0414639,7.6500187,49,3,-6.1675739,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1893616,7.9397426,62.39,56.71,57.63,56.14,10,1,1,0,0,0,7,4,1,302,2166421.5,1368115.3,574902.25,0,2778.4795,0,2898.8884 +10454,12746,22735,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1055.2386,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,55.74,-9,-9,5,1,1,0,0,4,2,1,0,870,-19066.594,0,0,0,0,0,863.328 +10454,12746,22736,-9,22735,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9793,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,870,-19066.594,0,0,0,0,0,863.328 +10455,12747,22737,22738,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.2948451,7.684092,0,8,-1,49.161015,0,-9,-9,2021,23,10,17,16,1,10,0,8.1487484,8.1487484,0,0,0,0,0,0,0,0,1,1,0,0,0,32.76,57.87,41.17,59.31,8.333333333333334,1,1,0,0,9,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22738,22737,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,9.8663311,9.3836231,0,8,1,-5.3597517,0,2,2,2021,12,0,45,45,1,0,0,40.50124,40.50124,.05,.05,0,0,0,0,0,0,1,1,0,6.3138275,0,41.17,59.31,32.76,57.87,5,1,1,0,0,9,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22739,-9,22737,22738,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.63257,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22740,-9,22737,22738,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.4563,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10456,12748,22741,-9,22742,22744,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1050.9044,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22742,22744,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9129062,7.0094938,0,11,-3,30.340244,0,2,2,2021,13,1,20,20,1,1,0,6.90418,6.90418,0,0,0,0,0,0,0,0,1,1,0,0,0,46.14,54.22,44.42,52.34,8.333333333333334,1,1,0,0,12,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22743,-9,22742,22744,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1169.3771,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22744,22742,-9,-9,1,1,43,0,2,0,3,3,-9,0,3,5.2708879,5.418118,0,11,3,-48.257492,0,-9,-9,2021,6,0,4,4,1,0,0,6.7125192,6.7125192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,52.34,46.14,54.22,10,1,1,0,0,9,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10457,12749,22745,-9,22746,22747,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-1156.6528,-9,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.72,59.87,-9,-9,1.666666666666667,1,1,0,0,0,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10457,12749,22746,22747,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,9,-1,-110.62904,0,3,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,19.85,57.39,34.57,6.666666666666667,1,1,0,0,0,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10457,12749,22747,22746,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.8332047,7.7154751,6.0000734,9,1,-34.598869,0,-9,-9,2021,9,0,42,38,1,0,0,8.2629852,8.2629852,0,0,0,0,0,0,0,0,1,1,0,0,6.0132442,57.39,34.57,45.69,19.85,8.333333333333334,1,1,0,0,9,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10458,12750,22748,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.266,0,3,3,2021,25,12,0,30,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4790549,0,28.94,26.24,-9,-9,1.666666666666667,1,1,0,0,8,12,1,1,528,-53008.805,0,0,0,0,0,706.56512 +10459,12751,22749,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,3,7.9952202,7.9514227,0,0,0,-1073.6243,0,2,2,2021,13,4,36,33,1,4,0,6.8635111,6.8635111,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.09,53.39,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,612,4526.7363,54063.949,78709.094,35964.555,0,0,1709.8298 +10459,12751,22750,-9,22749,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6816,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,612,4526.7363,54063.949,78709.094,35964.555,0,0,1709.8298 +10459,12752,22751,-9,22749,-9,1,1,21,0,1,0,2,2,-9,0,5,7.4900537,7.7439575,0,0,0,-1007.7894,0,2,-9,2021,6,0,28,29,1,0,1,8.914257,8.914257,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,0,0,3,13,3,1,1638,136336.17,109910.19,0,0,3885.5828,0,870.58002 +10459,12753,22752,-9,22749,-9,1,1,18,0,1,0,2,2,-9,0,4,6.503541,6.9371858,0,0,0,-1044.0552,0,2,-9,2021,8,0,33,0,1,0,1,2.4331665,2.4331665,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.61,59.73,-9,-9,1.666666666666667,1,1,0,0,2,13,2,1,1832,146820.92,-30372.633,0,0,0,0,961.06531 +10460,12754,22753,22754,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.272294,7.3415427,13,-4,5.0353646,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4679666,7.2187853,58.3,52.91,44.19,58.01,8.333333333333334,1,1,0,0,4,10,2,1,723.5,562677.25,418583.5,113424.5,0,0,2452.7109,2066.9668 +10460,12754,22754,22753,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,13,4,-43.081184,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5413942,0,44.19,58.01,58.3,52.91,3.333333333333333,1,1,0,0,4,10,2,1,723.5,562677.25,418583.5,113424.5,0,0,2452.7109,2066.9668 +10461,12755,22755,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.2891779,7.3844447,0,0,-1032.6534,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1595845,7.3764024,62.67,41.67,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,156,386370.63,137600.42,178835.53,0,0,0,1821.2726 +10462,12756,22756,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2707253,6.8070159,0,0,-1049.5143,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4515529,51.65,38.47,-9,-9,5,4,2,0,0,11,6,3,1,486,910451.25,302256.91,222031.02,0,0,0,1772.6053 +10463,12757,22757,22759,-9,-9,1,1,62,0,1,0,2,2,-9,0,4,0,7.6048894,7.561964,15,18,32.544041,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0318956,7.7931581,50,56.64,46.8,40.97,8.333333333333334,2,3,0,0,6,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10463,12757,22758,-9,22759,22757,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.9636,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10463,12757,22759,22757,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,7.0613108,6.9762621,0,15,-18,-79.035851,0,3,3,2021,11,1,16,16,1,1,0,8.0156879,8.0156879,0,0,0,0,0,0,0,0,1,1,0,3.5903931,0,46.8,40.97,50,56.64,8.333333333333334,2,3,0,0,13,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10464,12758,22760,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1100.2252,-9,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.14,64.63,-9,-9,5,1,1,1,0,6,13,1,0,1078,-28543.588,0,0,0,0,0,231.64011 +10465,12759,22761,22762,-9,-9,1,0,60,0,2,0,3,3,-9,0,3,0,0,0,6,-4,11.801987,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,55.44,38.2,7,2,3,1,0,0,4,3,1,509,-52496.676,0,0,0,0,0,3322.2393 +10465,12759,22762,22761,-9,-9,1,1,64,0,2,0,3,3,-9,1,2,8.1749544,8.154355,0,44,4,-1.8403308,-9,-9,-9,2021,7,0,20,0,1,0,0,17.236179,17.236179,0,0,0,0,0,0,0,0,1,1,0,7.8692832,0,55.44,38.2,50,47,8.333333333333334,2,3,0,0,5,4,3,1,509,-52496.676,0,0,0,0,0,3322.2393 +10465,12760,22763,22764,-9,-9,1,0,20,0,2,1,2,0,-9,0,4,0,0,0,1,-8,0,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7747447,0,47,58,50,57,7,4,3,0,0,0,4,1,1,1046,63212.008,0,0,0,2401.5276,0,1850.4789 +10465,12760,22764,22763,22761,22762,1,1,28,0,2,0,1,1,-9,0,4,0,0,0,1,8,0,-9,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,58,7,2,3,0,0,0,4,1,1,1046,63212.008,0,0,0,2401.5276,0,1850.4789 +10465,12761,22765,22768,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,0,0,0,3,-2,-30.078327,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,51,56,7,2,3,0,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22766,-9,22765,22768,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.4393,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22767,-9,22765,22768,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.11218,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22768,22765,22761,22762,1,1,36,0,2,0,2,2,-9,0,4,8.2079744,8.1157103,0,3,2,-35.376854,-9,3,3,2021,10,0,24,0,1,1,0,13.840083,13.840083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46,51,7,2,3,0,0,1,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12762,22769,-9,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1057.8442,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,4,6,0,0,0,4,1,1,16,-147425.56,0,0,0,0,601.69525,0 +10466,12763,22770,22771,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.0198431,7.9288306,31,-3,83.695221,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4724374,8.0489922,58.47,50.22,51.48,39.76,8.333333333333334,1,1,0,0,6,5,4,1,690,2535897.8,2172870,345139.81,0,0,0,4828.3369 +10466,12763,22771,22770,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.0864849,7.6879363,31,3,-51.990734,0,3,2,2021,11,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9110951,7.9829111,51.48,39.76,58.47,50.22,8.333333333333334,1,1,0,0,8,5,4,1,690,2535897.8,2172870,345139.81,0,0,0,4828.3369 +10467,12764,22772,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.4382753,8.6726866,0,0,0,-1070.411,0,3,3,2021,6,0,43,39,1,0,0,9.6617966,9.6617966,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,41.87,-9,-9,1.666666666666667,1,1,0,0,10,13,5,0,3093,43221.234,-10607.267,0,0,-84.266136,0,2156.5181 +10468,12765,22773,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.3669825,4.9358916,0,0,-964.55542,0,3,-9,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,5.9812379,0,0,1,1,0,2.7703154,5.1634169,41.36,34.01,-9,-9,5,2,3,0,0,0,2,2,1,19,49560.691,44802.746,135552.95,0,0,0,45.700851 +10469,12766,22774,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-934.20862,0,2,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.29,37.27,-9,-9,10,1,1,0,0,0,10,1,0,865,-174187.08,0,0,0,0,0,288.63727 +10470,12767,22775,22778,-9,-9,1,0,42,0,3,0,2,2,-9,1,1,0,0,0,8,5,0,0,3,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.15,18.09,35.63,62.19,0,1,1,0,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22776,-9,22775,22778,1,0,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1000.1533,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22777,-9,22775,22778,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.47015,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22778,22775,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,0,0,0,8,-5,0,0,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.63,62.19,32.15,18.09,3.333333333333333,1,1,1,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22779,-9,22775,22778,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.3011,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10471,12768,22780,22781,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,5,7,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.73,26.01,39.59,32.09,5,1,1,0,0,0,13,1,0,1240,48897.559,-10955.084,33756.211,0,0,0,2081.0574 +10471,12768,22781,22780,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,5,-7,0,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,39.59,32.09,37.73,26.01,5,1,1,0,0,0,13,1,0,1240,48897.559,-10955.084,33756.211,0,0,0,2081.0574 +10471,12769,22782,-9,22781,22780,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1043.6738,0,2,3,2021,21,7,0,40,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,-9,-9,5,1,1,1,0,3,13,1,0,392,-139346.7,0,0,0,0,0,0 +10472,12770,22783,22784,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.1289654,8.3367577,7,-2,146.64491,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2144551,8.2083025,36.37,60.23,44.13,48.64,10,1,1,0,0,0,4,4,1,480.5,2229939.5,1549238,506161.34,0,0,0,4410.751 +10472,12770,22784,22783,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.8444033,7.8777623,7,2,-26.504139,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2974596,8.0802584,44.13,48.64,36.37,60.23,7,1,1,0,0,0,4,4,1,480.5,2229939.5,1549238,506161.34,0,0,0,4410.751 +10473,12771,22785,22786,-9,-9,1,0,59,1,3,0,3,3,-9,0,3,0,0,0,10,-4,-83.485489,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,51,48,7,2,3,0,0,0,2,2,1,850,266170.63,16724.857,308886.91,11265.929,0,0,1112.4939 +10473,12771,22786,22785,-9,-9,1,1,63,1,3,0,3,3,-9,0,3,7.7307663,7.7160826,0,10,4,-94.177246,0,3,2,2021,10,0,50,48,1,1,0,5.3945627,5.3945627,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,48,48,7,2,3,0,0,12,2,2,1,850,266170.63,16724.857,308886.91,11265.929,0,0,1112.4939 +10473,12772,22787,22790,22785,22786,1,1,32,1,3,0,2,2,-9,0,5,6.8807964,6.944128,0,12,3,-79.853508,0,3,3,2021,2,0,35,48,1,0,0,3.1818559,3.1818559,0,0,0,0,0,0,0,0,1,1,0,0,0,55.24,53.7,36.9,53.64,10,2,3,0,0,12,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22788,-9,22790,22787,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.67224,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22789,-9,22790,22787,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.1541,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22790,22787,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,12,-3,63.605118,0,3,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.9,53.64,55.24,53.7,8.333333333333334,2,3,0,0,5,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22791,-9,22790,22787,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.3208,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12773,22792,-9,22785,22786,1,0,18,1,3,0,2,2,0,0,2,0,0,0,0,0,-904.80994,-9,3,3,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.73,31.2,-9,-9,5,2,3,0,0,0,2,1,1,677,49032.59,0,0,0,32192.125,0,0 +10474,12774,22793,22795,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.7519999,8.5545483,0,11,12,17.172533,-9,3,3,2021,7,1,35,0,1,1,0,19.127764,19.127764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,53.68,54.2,57.49,8.333333333333334,2,3,0,1,10,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10474,12774,22794,-9,22795,22793,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-999.43195,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,0,0,0,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10474,12774,22795,22793,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,0,0,0,11,-12,-66.078964,-9,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.6,53.68,8.333333333333334,2,3,0,0,0,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10475,12775,22796,22797,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,24,-24,0,0,3,3,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,28,40.37,42.45,1.666666666666667,1,1,0,0,0,1,1,0,640.5,-58754.098,0,0,0,13334.757,0,2300.0334 +10475,12775,22797,22796,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,22,24,0,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,6.1482077,0,120,1,1,0,0,0,40.37,42.45,38,28,8.333333333333334,1,1,0,0,0,1,1,0,640.5,-58754.098,0,0,0,13334.757,0,2300.0334 +10476,12776,22798,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1081.7885,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.24,37.01,-9,-9,5,1,1,0,0,0,13,1,0,3768,118260.19,0,0,0,0,0,1313.4092 +10476,12777,22799,-9,22798,-9,1,0,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1042.5988,-9,3,-9,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,233,-72197.875,0,0,0,0,0,523.01141 +10476,12778,22800,-9,22798,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1093.686,-9,3,-9,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,54.48,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,510,37265.711,0,0,0,0,0,297.82764 +10477,12779,22801,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-938.2887,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.86,45.31,-9,-9,5,1,1,0,0,1,2,1,0,264,0,0,0,0,0,0,1528.8427 +10478,12780,22802,22803,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.5978765,8.9107866,0,12,-5,-85.145859,0,2,2,2021,9,1,46,43,1,1,0,13.719067,13.719067,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,5,1,1,0,0,9,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12780,22803,22802,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,7.6980181,7.7217388,0,12,5,31.037134,0,-9,2,2021,7,0,36,38,1,0,0,8.6946163,8.6946163,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12780,22804,-9,22803,22802,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.5217,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12781,22805,-9,22803,22802,1,0,19,0,3,0,2,2,1,0,5,8.3638535,8.2683372,0,0,0,-977.13977,-9,2,1,2021,7,0,48,0,1,0,1,9.14433,9.14433,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,4,2,0,0,2,8,4,1,4399,90020.695,0,0,0,2766.5159,0,1249.3419 +10479,12782,22806,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.63916,0,2,3,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.57,53.5,-9,-9,3.333333333333333,1,1,1,0,0,12,1,1,359,0,0,0,0,0,0,-221.84685 +10480,12783,22807,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.2954874,7.4720368,0,0,-853.6275,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.09863,7.0050149,54.1,59.11,-9,-9,10,1,1,0,0,3,5,3,1,1271,493348.06,404631.81,156270.34,76188.438,0,0,2458.6726 +10481,12784,22808,-9,22809,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1056.1116,-9,2,-9,2021,21,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27,60.7,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,859,122553.46,13326.887,0,0,0,0,1400.4165 +10481,12784,22809,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8664131,7.7816625,0,0,0,-856.46625,0,-9,3,2021,12,0,39,24,1,0,0,6.715137,6.715137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.71,53.58,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,859,122553.46,13326.887,0,0,0,0,1400.4165 +10481,12785,22810,-9,22809,-9,1,1,20,0,0,0,2,2,-9,0,2,7.7739062,7.9455795,0,0,0,-1107.96,0,2,-9,2021,15,4,38,37,1,4,1,7.2491508,7.2491508,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.25,55.15,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,595,221328.27,81397.859,0,0,13242.773,0,877.51465 +10482,12786,22811,22812,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6856222,8.5071735,0,7,-10,-9.5036211,0,3,2,2021,7,0,53,50,1,0,0,14.154364,14.154364,0,0,0,0,0,0,0,0,1,1,0,.41137874,0,51.24,58.84,27.51,61.9,8.333333333333334,1,1,0,0,10,11,5,1,1473,996796,731400.69,446723.25,225915.91,0,0,8089.0381 +10482,12786,22812,22811,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,7.9967861,9.358881,8.9024773,7,10,115.53953,0,2,2,2021,24,11,24,34,1,11,0,16.994881,16.994881,0,0,0,0,0,0,0,0,1,1,0,3.8066621,8.9088221,27.51,61.9,51.24,58.84,3.333333333333333,1,1,0,0,10,11,5,1,1473,996796,731400.69,446723.25,225915.91,0,0,8089.0381 +10483,12787,22813,-9,22815,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-953.98053,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22814,-9,22815,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.5339,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22815,-9,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,5.9958119,7.2262201,7.1799326,0,0,-1110.4656,0,2,1,2021,22,10,33,38,1,10,0,1.3797204,1.3797204,.05,.05,0,0,0,0,0,2,1,1,0,7.1465058,0,30.41,51.39,-9,-9,3.333333333333333,1,1,0,0,9,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22816,-9,22815,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1056.1758,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10484,12788,22817,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,7.3458214,7.7463026,0,0,0,-881.57538,0,3,3,2021,8,0,25,30,1,0,0,9.5287333,9.5287333,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,916,130350.03,18821.238,0,0,-247.86215,630.39044,1110.6553 +10484,12788,22818,-9,22817,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-925.18604,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,916,130350.03,18821.238,0,0,-247.86215,630.39044,1110.6553 +10485,12789,22819,22820,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.1383252,5.0090637,11,3,-25.127586,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7846599,5.3770585,35.58,30,54.2,57.49,5,1,1,0,0,7,12,3,1,1579.5,929126.63,746359.75,137296.92,0,8779.1641,0,1945.1827 +10485,12789,22820,22819,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9840336,8.0949688,11,-3,-23.283768,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2165332,8.2493744,54.2,57.49,35.58,30,8.333333333333334,1,1,0,0,7,12,3,1,1579.5,929126.63,746359.75,137296.92,0,8779.1641,0,1945.1827 +10486,12790,22821,22822,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.6246805,8.4504471,0,1,-2,-4.9739914,-9,-9,-9,2021,6,1,47,0,1,1,0,11.884995,11.884995,.05,.05,0,0,0,0,0,0,0,0,0,1.0285084,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,2,10,5,0,478.5,208824.69,-27108.227,0,0,0,0,4020.2764 +10486,12790,22822,22821,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.601162,8.8306084,0,1,2,-13.115986,0,-9,-9,2021,11,1,40,39,1,1,0,17.714867,17.714867,.05,.05,0,0,0,0,0,0,0,0,0,2.117125,0,55.09,55.87,57.16,56.15,1.666666666666667,1,1,0,0,4,10,5,0,478.5,208824.69,-27108.227,0,0,0,0,4020.2764 +10487,12791,22823,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9803038,6.958951,0,0,-1075.1322,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5696392,7.0099502,44.92,37.29,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,269,346172.28,175361.13,72921.813,0,0,0,1807.7789 +10488,12792,22824,22826,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,0,0,0,8,-5,-41.665623,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,2,3,1,0,1,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12792,22825,-9,22824,22826,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-981.62097,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12792,22826,22824,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,8.7337942,8.657752,0,24,5,-67.006172,0,2,2,2021,6,0,38,38,1,0,0,16.309738,16.309738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,2,3,0,0,8,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12793,22827,-9,22824,22826,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-994.18896,-9,1,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3114572,0,54.1,59.11,-9,-9,10,2,3,0,0,0,8,1,1,602,0,0,0,0,0,0,173.62079 +10489,12794,22828,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.0725765,7.1067848,0,0,-1021.7619,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.998899,53.25,45.63,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,482,342327.84,205917.84,113944.63,0,0,1008.6907,791.81073 +10490,12795,22829,22830,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0646362,6.8867931,39,-7,54.835938,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4443178,58.61,40.49,50.03,52.62,8.333333333333334,1,1,0,0,9,6,2,1,3455,752356.13,383576.69,214224.72,0,0,0,1968.8102 +10490,12795,22830,22829,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.2818809,5.9864345,8,7,11.59112,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1268535,6.4302468,50.03,52.62,58.61,40.49,10,1,1,0,0,0,6,2,1,3455,752356.13,383576.69,214224.72,0,0,0,1968.8102 +10491,12796,22831,22832,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.6709085,5.4190197,54,3,-23.564539,0,-9,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,2.7560296,0,0,1,1,0,0,5.3089471,55.06,26.24,43.35,28.92,6.666666666666667,1,1,0,1,0,11,2,1,1103,661822.13,194591.14,115175.16,0,0,0,1060.3091 +10491,12796,22832,22831,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,54,-3,-77.113312,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,28.92,55.06,26.24,6.666666666666667,1,1,0,1,0,11,2,1,1103,661822.13,194591.14,115175.16,0,0,0,1060.3091 +10492,12797,22833,22834,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.2201896,5.5476708,56,-1,59.205078,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9847584,52,45,54,46,7,1,1,0,0,0,4,3,1,1806.5,924311.31,304586.81,389515,0,0,0,2389.8672 +10492,12797,22834,22833,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.6841507,8.0951309,56,1,-82.702271,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8112674,54,46,52,45,7,1,1,0,0,0,4,3,1,1806.5,924311.31,304586.81,389515,0,0,0,2389.8672 +10492,12798,22835,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0863972,8.0383692,0,0,0,-970.28424,0,-9,-9,2021,12,0,37,20,1,2,0,8.3054533,8.3054533,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,7,4,3,1,325,24483.879,0,0,0,0,0,666.27948 +10493,12799,22836,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7798147,7.6345477,0,0,0,-1034.5999,0,2,1,2021,14,2,30,32,1,2,0,7.5005388,7.5005388,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.57,46.18,-9,-9,1.666666666666667,1,1,0,1,12,1,3,1,296,-36923.938,15749.073,0,0,801.98212,0,1719.2562 +10493,12800,22837,-9,22836,-9,1,1,18,0,0,0,3,3,-9,0,3,6.2149553,6.1330028,0,0,0,-1072.6121,0,2,-9,2021,10,1,15,0,1,1,1,4.7498555,4.7498555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,475,57308.535,-10646.165,0,0,0,0,319.63867 +10494,12801,22838,22839,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,5.8923826,5.9321284,47,3,79.441605,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68128455,5.8745265,57.06,57.76,59.14,52.5,8.333333333333334,1,1,0,0,5,9,3,1,311.5,277681.91,190153.41,0,0,1271.073,0,2475.5483 +10494,12801,22839,22838,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5386257,7.5765958,47,-3,-50.906303,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9291015,7.5050759,59.14,52.5,57.06,57.76,10,1,1,0,0,5,9,3,1,311.5,277681.91,190153.41,0,0,1271.073,0,2475.5483 +10495,12802,22840,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,3.4296353,3.3816831,0,0,-905.37958,0,2,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7012064,3.5835931,41.54,19.65,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,601,27640.129,-54462.73,24138.107,0,0,0,393.07773 +10496,12803,22841,-9,22842,22843,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.7466,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10496,12803,22842,22843,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,8.0619698,7.9089656,0,4,1,-194.84071,0,-9,-9,2021,9,0,23,34,1,0,0,16.443995,16.443995,0,0,0,0,0,0,0,0,0,0,0,3.8089011,0,51.73,58.82,48.53,58.91,8.333333333333334,1,1,0,0,6,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10496,12803,22843,22842,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.5905361,8.9387941,0,4,-1,85.730476,0,-9,-9,2021,9,1,46,45,1,1,0,15.107414,15.107414,0,0,0,0,0,0,0,0,0,0,0,5.1068206,0,48.53,58.91,51.73,58.82,6.666666666666667,1,1,0,0,10,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10497,12804,22844,22845,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,7.461782,7.6668706,3,4,49.359993,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.8973951,7.6545157,62.39,56.71,43.79,32.5,8.333333333333334,1,1,0,0,5,13,3,1,2334,307278.09,154916.09,312047.44,64033.855,0,0,1509.6748 +10497,12804,22845,22844,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.2661276,7.3053288,0,3,-4,206.18507,0,2,3,2021,10,0,19,19,1,0,0,6.8572636,6.8572636,0,0,0,0,0,0,0,0,0,0,0,2.5381124,0,43.79,32.5,62.39,56.71,3.333333333333333,1,1,0,0,6,13,3,1,2334,307278.09,154916.09,312047.44,64033.855,0,0,1509.6748 +10498,12805,22846,22847,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.4843187,8.7243547,0,2,3,-53.182743,0,2,2,2021,8,0,38,38,1,0,0,14.182713,14.182713,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,638,-21050.668,47747.43,0,0,13855.143,0,4062.146 +10498,12805,22847,22846,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.3633099,8.2498188,0,2,-3,11.683765,0,-9,-9,2021,5,0,45,53,1,0,0,9.6334724,9.6334724,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,53.98,50.87,8.333333333333334,1,1,0,0,9,9,5,1,638,-21050.668,47747.43,0,0,13855.143,0,4062.146 +10499,12806,22848,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-959.06982,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.28,35.7,-9,-9,5,1,1,0,0,0,11,1,0,204,13259.12,0,0,0,0,0,314.86932 +10500,12807,22849,22851,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.4964828,8.5020094,0,5,0,92.568108,0,2,2,2021,7,1,33,36,1,1,0,19.988461,19.988461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,57.16,56.15,8.333333333333334,1,1,0,0,7,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10500,12807,22850,-9,22849,22851,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-883.55841,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10500,12807,22851,22849,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.2578068,8.4247427,0,5,0,-72.155739,0,-9,-9,2021,8,0,35,36,1,0,0,14.656132,14.656132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.22,63.14,8.333333333333334,1,1,0,0,8,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10501,12808,22852,22853,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.3332052,5.0888233,11,5,48.059902,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9680295,5.3816829,60.53,48.35,45.45,49.66,10,1,1,0,0,0,12,2,1,271,182053.78,124128.72,26326.566,0,0,0,902.79614 +10501,12808,22853,22852,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,3.1213815,3.2174644,11,-5,39.681061,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6831877,3.2502697,45.45,49.66,60.53,48.35,6.666666666666667,1,1,0,1,5,12,2,1,271,182053.78,124128.72,26326.566,0,0,0,902.79614 +10502,12809,22854,22855,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,9.342783,9.2764215,0,18,3,-8.9324827,0,2,2,2021,9,0,98,48,1,0,0,10.796986,10.796986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,55.26,55.85,8.333333333333334,1,1,0,0,11,9,5,1,1118.5,144489.75,50942.117,0,0,0,2500.0999,5659.2041 +10502,12809,22855,22854,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.3648815,8.455677,0,21,-3,-70.244812,0,-9,3,2021,6,0,39,37,1,0,0,13.152743,13.152743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.26,55.85,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,1118.5,144489.75,50942.117,0,0,0,2500.0999,5659.2041 +10502,12810,22856,-9,22855,22854,1,1,22,0,0,0,2,2,-9,0,3,9.0962925,9.1847,0,0,0,-1037.8265,0,3,2,2021,9,0,67,37,1,0,1,15.655257,15.655257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,10,1,1,0,0,1,9,5,1,717,33079.879,29476.131,0,0,3308.8711,0,3676.0571 +10503,12811,22857,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,2,8.8017931,8.6515894,0,0,0,-961.4726,0,2,1,2021,11,2,40,42,1,2,0,17.856726,17.856726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.13,44.46,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,315,63473.852,91037.43,0,0,1636.7321,1144.5814,2434.302 +10504,12812,22858,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.9648142,7.7083592,0,0,0,-1129.3839,0,3,3,2021,0,0,49,38,1,0,0,6.9081306,6.9081306,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.85,44,-9,-9,0,1,1,0,0,14,12,4,1,141,1088249.8,872648.63,42464.504,45921.941,0,0,1717.2618 +10505,12813,22859,22860,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.0723667,8.2768574,10,4,-83.66082,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.899879,8.3012133,53,47,50,46,7,1,1,0,0,0,8,4,1,1096,1420148,329608.44,612782.69,0,0,0,3461.4453 +10505,12813,22860,22859,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.4759312,7.8576732,50,-4,59.023518,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6606965,7.9372268,50,46,53,47,7,1,1,0,0,9,8,4,1,1096,1420148,329608.44,612782.69,0,0,0,3461.4453 +10506,12814,22861,22862,-9,-9,1,1,48,0,0,0,3,3,-9,0,5,9.0816212,9.2525282,0,11,0,51.15435,0,-9,-9,2021,6,0,71,66,1,0,0,14.127136,14.127136,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.06,57.76,24.86,33.64,8.333333333333334,1,1,0,0,14,12,5,1,1270,222786.13,68334.859,0,0,0,0,4738.6641 +10506,12814,22862,22861,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,11,0,-70.002548,0,3,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.86,33.64,57.06,57.76,1.666666666666667,1,1,0,0,3,12,5,1,1270,222786.13,68334.859,0,0,0,0,4738.6641 +10507,12815,22863,22864,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,61,-2,-30.122114,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,36.77,35.93,43.1,22.05,8.333333333333334,1,1,0,0,0,7,2,0,638.5,619.43066,-53787.563,103524.33,21899.842,0,0,1889.5026 +10507,12815,22864,22863,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,6.584095,6.3789682,61,2,91.655403,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,124.31216,0,0,1,1,0,0,6.5187488,43.1,22.05,36.77,35.93,3.333333333333333,1,1,0,0,0,7,2,0,638.5,619.43066,-53787.563,103524.33,21899.842,0,0,1889.5026 +10508,12816,22865,22866,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6034079,7.5772033,0,20,9,-94.128716,0,3,3,2021,12,2,48,36,1,2,0,4.8333859,4.8333859,0,0,0,0,0,0,0,0,0,0,0,0,0,39.37,54.73,53,54,5,1,1,0,0,6,2,3,0,889,425523.5,296285.5,134227.36,-10627.135,617.15527,0,802.10339 +10508,12816,22866,22865,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,4.6263528,4.6315613,21,0,49.938499,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0297942,53,54,39.37,54.73,8,1,1,0,0,0,2,3,0,889,425523.5,296285.5,134227.36,-10627.135,617.15527,0,802.10339 +10509,12817,22867,22868,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.2360849,8.3334208,0,34,-3,-2.8112297,0,3,3,2021,17,5,38,36,1,5,0,16.2724,16.2724,.05,.05,0,0,0,0,0,0,0,0,0,1.0663327,0,47.73,48.92,35.9,60.41,3.333333333333333,2,3,0,0,14,8,5,1,379,801706.5,241839.75,333625.09,0,-1051.7809,0,3557.7424 +10509,12817,22868,22867,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4955359,8.503665,0,34,3,46.73904,0,3,3,2021,12,1,39,39,1,1,0,13.473364,13.473364,.05,.05,0,0,0,0,0,0,0,0,0,6.8870382,0,35.9,60.41,47.73,48.92,1.666666666666667,2,3,0,0,14,8,5,1,379,801706.5,241839.75,333625.09,0,-1051.7809,0,3557.7424 +10510,12818,22869,-9,22870,22871,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3956,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22870,22871,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9553981,8.2664366,0,5,-10,-77.268639,0,2,3,2021,8,0,36,37,1,0,0,10.493624,10.493624,.05,.05,0,0,0,0,0,0,1,1,0,3.0411673,0,60.29,52.11,33.31,60.67,8.333333333333334,1,1,0,0,11,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22871,22870,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.7000885,7.8666592,0,5,10,21.621578,0,2,2,2021,21,9,31,31,1,9,0,8.5535164,8.5535164,.05,.05,0,0,0,0,0,2,1,1,0,3.9911382,0,33.31,60.67,60.29,52.11,3.333333333333333,1,1,0,0,11,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22872,-9,22870,22871,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.21423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10511,12819,22873,22874,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2942877,8.4997206,6.8484187,26,2,-114.51775,0,2,3,2021,5,0,37,38,1,0,0,12.719653,12.719653,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.267684,60.12,54.8,57.06,57.76,10,1,1,0,0,7,9,5,1,436.5,223362.95,136998.23,191440.06,40064.68,0,0,4783.2607 +10511,12819,22874,22873,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.4775047,8.3110647,0,26,-2,77.183029,0,-9,-9,2021,10,0,38,38,1,0,0,13.590304,13.590304,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,10,1,1,0,0,10,9,5,1,436.5,223362.95,136998.23,191440.06,40064.68,0,0,4783.2607 +10511,12820,22875,-9,22874,22873,1,1,22,0,0,0,2,2,-9,0,4,8.0039415,8.0117483,0,0,0,-816.17291,0,2,2,2021,4,0,49,42,1,0,1,6.0931191,6.0931191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,566,91803.867,72793.852,0,0,12339.956,0,1898.0166 +10512,12821,22876,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,3,0,7.1709104,6.8030152,0,0,-1089.9219,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.9419808,0,23.183937,0,1,1,0,0,6.9461975,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,626,216084.67,101731.82,168370.83,0,0,0,1158.5624 +10513,12822,22877,22878,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,46,3,64.530952,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,43.33,38.61,30.24,27.26,5,1,1,0,1,2,2,2,0,301,457644.16,101649.67,108722.05,0,0,0,1902.0083 +10513,12822,22878,22877,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,5.0460725,5.0534973,46,-3,-2.0212681,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5598979,5.1539783,30.24,27.26,43.33,38.61,8.333333333333334,1,1,0,1,0,2,2,0,301,457644.16,101649.67,108722.05,0,0,0,1902.0083 +10514,12823,22879,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.363636,8.2458849,0,0,0,-1130.9675,0,2,3,2021,9,0,40,43,1,0,0,11.932974,11.932974,0,0,0,0,0,0,0,2,0,0,0,0,0,54.61,51.04,-9,-9,8.333333333333334,3,4,0,0,8,9,4,1,2631,50496.098,-44032.512,112476.23,-8127.6191,0,0,1579.3821 +10515,12824,22880,22882,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.530098,9.2318068,0,12,6,143.37012,0,2,3,2021,6,0,47,50,1,0,0,35.05687,35.05687,.05,.05,0,0,0,0,0,0,0,0,0,8.139966,0,54.2,57.49,45.89,53.15,8.333333333333334,1,1,0,0,15,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10515,12824,22881,-9,22882,22880,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.9288,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10515,12824,22882,22880,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.9664392,9.1625261,0,12,-6,-59.133907,0,2,2,2021,11,0,43,42,1,0,0,32.844131,32.844131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.89,53.15,54.2,57.49,6.666666666666667,1,1,0,0,14,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10516,12825,22883,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-921.19952,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.55,48.92,-9,-9,5,1,1,1,0,2,1,1,0,1232,-29972.789,117434.98,0,0,0,0,743.76245 +10517,12826,22884,22885,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9599462,6.8545594,10,3,-47.834591,0,-9,-9,2021,8,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.84865373,7.1243067,56.1,49.93,57.33,53.46,10,1,1,0,0,14,9,3,1,541.5,1298155.5,295135.38,634939.63,0,0,0,1425.755 +10517,12826,22885,22884,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7581511,7.7626987,0,10,-3,-118.08727,0,2,2,2021,8,0,35,40,1,0,0,6.1897583,6.1897583,.05,.05,0,0,0,0,0,7,0,0,0,.30639991,0,57.33,53.46,56.1,49.93,8.333333333333334,1,1,0,0,13,9,3,1,541.5,1298155.5,295135.38,634939.63,0,0,0,1425.755 +10518,12827,22886,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.7197237,7.9496603,0,0,-992.40936,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.1828985,7.9804482,59.3,34.68,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,564,236963.47,0,325261.81,3992.2095,0,0,1840.9991 +10519,12828,22887,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.5258203,7.6067772,0,0,0,-1022.6944,0,2,3,2021,5,0,40,30,1,0,0,5.1371279,5.1371279,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.54,46.05,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,361,198442.33,160027.88,0,0,0,0,1296.9119 +10519,12829,22888,-9,-9,22887,1,1,28,0,0,0,2,2,-9,0,3,8.0133104,7.7506256,0,0,0,-1179.7689,0,3,2,2021,11,2,37,37,1,2,1,8.9745941,8.9745941,0,0,0,0,0,0,0,0,0,0,0,.18115723,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,0,7,9,4,0,299,-1759.9396,0,0,0,2691.0952,0,1870.6908 +10520,12830,22889,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.98193,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.08,65.11,-9,-9,10,1,1,0,0,0,4,1,0,1443,0,0,0,0,0,0,1349.5319 +10521,12831,22890,22893,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,13,-7,64.087631,0,2,2,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6914043,0,25.8,62.8,25.56,42.81,6.666666666666667,1,1,0,0,2,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22891,-9,22890,22893,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-977.87683,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22892,-9,22890,22893,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.152,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22893,22890,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,8.9295959,8.9263535,0,13,7,222.39342,0,2,3,2021,29,11,46,47,1,11,0,22.07041,22.07041,.05,.05,0,0,0,0,0,0,1,1,0,4.3564429,0,25.56,42.81,25.8,62.8,6.666666666666667,1,1,0,0,14,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10522,12832,22894,22895,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.5004168,8.3254356,0,18,9,82.419518,0,3,3,2021,13,2,37,37,1,2,0,12.088865,12.088865,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,44.7,53.68,8.333333333333334,1,1,0,0,12,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22895,22894,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.4178562,8.3133154,0,17,0,203.97218,0,2,3,2021,10,0,37,37,1,0,0,9.8669901,9.8669901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,44.3,55.28,8.333333333333334,1,1,0,0,12,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22896,-9,22895,22894,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.04919,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22897,-9,22895,22894,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-983.36902,-9,2,3,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.997231,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10523,12833,22898,22899,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.8732724,7.8708348,27,5,12.468597,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0943332,7.8273878,58.32,50.22,30.49,43.02,8.333333333333334,1,1,0,0,6,10,3,1,745,1253672.3,93068.5,645659.81,0,0,0,3116.0269 +10523,12833,22899,22898,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,27,-5,113.62455,0,2,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5507669,0,30.49,43.02,58.32,50.22,6.666666666666667,1,1,0,0,0,10,3,1,745,1253672.3,93068.5,645659.81,0,0,0,3116.0269 +10523,12834,22900,-9,22898,22899,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1131.9117,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.977529,0,53.61,59.13,-9,-9,10,1,1,0,0,6,10,1,1,300,77525.375,0,0,0,0,0,-60.208679 +10524,12835,22901,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4143267,8.0810356,0,0,0,-856.57385,0,-9,-9,2021,23,11,40,40,1,11,0,12.72474,12.72474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,5,7,4,0,495,90871.664,214866.94,0,0,5420.7017,2000.6901,1795.5182 +10524,12836,22902,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9644384,8.1932888,0,0,0,-1060.4821,0,-9,-9,2021,4,0,50,50,1,0,0,7.6223793,7.6223793,0,0,0,0,0,0,0,0,0,0,0,6.5654173,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,887,0,0,0,0,0,0,2012.6246 +10525,12837,22903,22906,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.249567,8.1476164,0,12,4,32.555473,0,3,3,2021,12,0,46,46,1,0,0,8.7897387,8.7897387,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,44.11,44.49,50.3,5,2,3,0,0,14,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22904,-9,22906,22903,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.4989,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22905,-9,22906,22903,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.7487,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22906,22903,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,0,0,0,16,-4,108.36295,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,50.3,50.25,44.11,5,2,3,1,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22907,-9,22906,22903,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-943.00378,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10526,12838,22908,22909,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3202157,7.2503929,10,-3,-17.074726,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.0291781,0,0,1,1,0,1.8358282,7.3411741,60.71,37.26,52.83,49.11,8.333333333333334,1,1,0,0,2,11,2,1,661,867579.5,430977.41,238369.41,0,0,1224.8278,1789.7764 +10526,12838,22909,22908,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.9254494,5.3604965,10,3,32.784779,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.62997299,0,0,1,1,0,2.0378609,5.0855832,52.83,49.11,60.71,37.26,8.333333333333334,1,1,0,0,0,11,2,1,661,867579.5,430977.41,238369.41,0,0,1224.8278,1789.7764 +10527,12839,22910,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.5645008,8.7641773,0,0,0,-965.62933,0,3,3,2021,12,0,44,43,1,0,0,15.806945,15.806945,0,0,0,0,0,0,0,2,0,0,0,1.8055454,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,14,7,5,0,67,211671.25,0,0,0,0,0,1263.6682 +10528,12840,22911,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1138.8335,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8164527,0,52.83,43.23,-9,-9,10,1,1,0,0,0,7,1,1,1000,-15019.9,0,0,0,0,0,1073.2156 +10529,12841,22912,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7920656,8.6398106,0,0,0,-880.5965,0,2,2,2021,20,9,36,36,1,9,0,22.770203,22.770203,.05,.05,0,0,0,0,0,0,0,0,0,2.9490721,0,14.91,68.97,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,199,374546.75,1818.0864,280938.09,93105.094,0,0,2266.7454 +10530,12842,22913,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.2954035,8.3227777,0,0,0,-965.1189,0,3,2,2021,12,0,41,41,1,0,0,14.256178,14.256178,.05,.05,0,0,0,0,0,14.5,0,0,0,9.1647234,0,55.21,43.87,-9,-9,6.666666666666667,2,3,0,0,9,9,4,1,2003,70651.281,-72609.641,0,0,3704.7434,0,4005.1213 +10531,12843,22914,-9,-9,-9,1,0,41,1,1,0,2,2,-9,0,3,7.501771,7.5528426,0,0,0,-949.95923,0,2,3,2021,12,0,35,35,1,0,0,9.3813219,9.3813219,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,-9,-9,5,1,1,0,0,2,11,3,0,1466.5,25142.137,1877.9404,79817.68,2760.6587,0,3692.2686,1729.6588 +10531,12843,22915,-9,22914,-9,1,0,17,1,1,1,2,0,0,0,3,0,0,0,0,0,-1073.3749,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,-9,-9,5,1,1,0,0,0,11,3,0,1466.5,25142.137,1877.9404,79817.68,2760.6587,0,3692.2686,1729.6588 +10531,12844,22916,-9,22914,-9,1,1,22,1,1,0,2,2,-9,0,3,0,0,0,0,0,-982.50653,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.71,56.91,-9,-9,5,1,1,1,0,0,11,1,0,258,0,0,0,0,0,0,230.94151 +10531,12845,22917,-9,22914,-9,1,0,20,1,1,0,2,2,-9,0,4,7.5647469,7.4791117,0,0,0,-954.81384,0,2,-9,2021,14,1,40,40,1,1,1,5.2473125,5.2473125,0,0,0,0,0,0,0,0,1,0,1,0,0,33.05,57.87,-9,-9,5,1,1,0,0,2,11,3,0,1462,-66380.063,0,0,0,0,1267.283,1506.1262 +10531,12845,22918,-9,22917,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.2001,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1462,-66380.063,0,0,0,0,1267.283,1506.1262 +10532,12846,22919,-9,-9,22920,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.96124,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,650,1117.043,26237.158,0,0,0,335.57794,2069.1182 +10532,12846,22920,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.4937868,7.4822168,0,0,0,-1037.0343,0,-9,-9,2021,6,0,24,24,1,0,0,7.3880663,7.3880663,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,650,1117.043,26237.158,0,0,0,335.57794,2069.1182 +10533,12847,22921,22922,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5364323,7.9691973,0,7,1,2.6219025,0,3,3,2021,10,1,39,43,1,1,0,13.294861,13.294861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.87,45.12,55.05,34.27,6.666666666666667,1,1,0,0,8,13,4,1,971.5,90031.859,-8722.7305,179585.67,74666.961,3746.2034,0,2364.655 +10533,12847,22922,22921,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.9037528,8.0060253,0,7,-1,16.871809,0,3,3,2021,10,0,26,26,1,0,0,9.819191,9.819191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.05,34.27,37.87,45.12,8.333333333333334,1,1,0,0,8,13,4,1,971.5,90031.859,-8722.7305,179585.67,74666.961,3746.2034,0,2364.655 +10533,12848,22923,-9,22922,22921,1,0,32,0,0,0,2,2,-9,0,5,7.5594921,7.815733,0,0,0,-990.50958,0,3,2,2021,2,0,40,0,1,0,1,7.2767005,7.2767005,0,0,0,0,0,0,0,0,0,0,0,0,0,66.09999999999999,39.96,-9,-9,10,1,1,0,0,6,13,3,1,841,-81688.313,0,0,0,1565.9752,0,488.76657 +10533,12849,22924,-9,22922,22921,1,1,19,0,0,0,2,2,-9,0,4,6.4600964,6.7264233,0,0,0,-948.76312,0,3,2,2021,9,0,16,12,1,0,1,5.1936193,5.1936193,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,2,13,2,1,395,-165172.58,0,0,0,0,0,828.68494 +10534,12850,22925,22926,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,42,5,-97.69149,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7230916,0,57.35,42.91,55.54,49.16,8.333333333333334,1,1,0,0,0,4,4,1,635.5,1655342.8,1540959.5,257294.17,116821.2,26023.129,808.32251,1541.9409 +10534,12850,22926,22925,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.7012882,8.7101669,0,43,-5,-122.22527,0,3,3,2021,17,5,42,42,1,5,0,15.942525,15.942525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.54,49.16,57.35,42.91,10,1,1,0,0,13,4,4,1,635.5,1655342.8,1540959.5,257294.17,116821.2,26023.129,808.32251,1541.9409 +10535,12851,22927,22928,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,4.1142597,4.1592011,7,1,28.41304,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0476184,4.2149067,63.41,29.17,57.92,51.82,8.333333333333334,1,1,0,0,5,6,2,1,425,174057.81,37209.887,89225.594,0,0,479.0166,652.68896 +10535,12851,22928,22927,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,53,-1,2.6965261,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.92,51.82,63.41,29.17,8.333333333333334,1,1,0,0,4,6,2,1,425,174057.81,37209.887,89225.594,0,0,479.0166,652.68896 +10536,12852,22929,22930,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2970715,7.9673228,0,8,3,46.158161,0,-9,-9,2021,8,0,37,37,1,0,0,11.731817,11.731817,.05,.05,0,0,0,0,0,2,0,0,0,1.9763314,0,57.23,42.49,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,721,182446.31,217461,143415,0,0,0,3017.8406 +10536,12852,22930,22929,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.7985573,7.6771541,0,37,-3,-10.877903,0,2,2,2021,10,0,43,44,1,0,0,7.2056756,7.2056756,.05,.05,0,0,0,0,0,2,0,0,0,1.7175533,0,59.43,58.05,57.23,42.49,8.333333333333334,1,1,0,0,9,2,4,1,721,182446.31,217461,143415,0,0,0,3017.8406 +10536,12853,22931,-9,22929,22930,1,1,27,0,0,0,2,2,-9,0,3,8.1231546,7.6406503,0,0,0,-1106.0107,0,2,2,2021,6,0,44,45,1,0,1,8.323247,8.323247,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,234,42682.813,-165677.94,0,0,1481.6434,456.1662,970.87573 +10537,12854,22932,22934,-9,-9,1,1,75,0,2,0,3,3,-9,0,3,0,3.7318292,4.0179486,4,38,-39.334995,0,3,3,2021,6,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8326266,4.0577717,55.51,51.57,48.18,61.8,8.333333333333334,1,1,0,0,14,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22933,-9,22934,22932,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2504,-9,-9,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22934,22932,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,0,0,0,4,-38,-113.6705,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,55.51,51.57,10,2,3,1,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22935,-9,22934,22932,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-969.12897,-9,-9,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,4,2,0,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10538,12855,22936,22937,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.5627632,8.1460342,0,39,0,70.971291,0,3,1,2021,15,3,70,50,1,3,0,6.9062419,6.9062419,0,0,0,0,0,0,0,0,0,0,0,2.2895722,0,45.73,45.45,54.78,53.3,3.333333333333333,1,1,0,0,10,6,3,0,1138,2096785.5,1458574.3,185782.17,0,0,0,1939.0986 +10538,12855,22937,22936,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,0,0,39,0,-1.5840288,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.78,53.3,45.73,45.45,8.333333333333334,1,1,0,0,5,6,3,0,1138,2096785.5,1458574.3,185782.17,0,0,0,1939.0986 +10539,12856,22938,22939,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.2385769,8.3005524,0,12,1,-82.047005,0,-9,-9,2021,8,0,48,44,1,0,0,9.321372,9.321372,0,0,0,0,0,0,0,0,1,1,0,0,0,59.13,44.84,52.99,51.28,5,1,1,0,0,10,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22939,22938,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,12,-1,64.681503,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,59.13,44.84,8.333333333333334,1,1,0,0,7,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22940,-9,22939,22938,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9272,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22941,-9,22939,22938,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.7238,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12857,22942,-9,22939,22938,1,1,18,0,2,0,2,2,1,0,5,6.7670331,6.6734676,0,0,0,-988.10211,-9,2,2,2021,11,0,34,0,1,0,1,3.2497654,3.2497654,0,0,0,0,0,0,0,0,1,1,0,0,0,66.96000000000001,35.51,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,570,-140463.81,0,0,0,4441.0884,0,703.14502 +10540,12858,22943,22944,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5326233,8.5256376,0,1,-5,-15.238667,0,-9,-9,2021,8,0,39,39,1,0,0,18.038645,18.038645,0,0,0,0,0,0,0,0,0,0,0,2.1788292,0,41.3,60.77,52.44,51.54,8.333333333333334,1,1,0,0,9,10,5,1,1187.5,32297.412,0,0,0,0,0,4378.6084 +10540,12858,22944,22943,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.833437,8.8161097,0,1,5,79.418495,-9,-9,-9,2021,8,0,37,0,1,0,0,20.359966,20.359966,0,0,0,0,0,0,0,0,0,0,0,5.9715481,0,52.44,51.54,41.3,60.77,8.333333333333334,1,1,0,0,0,10,5,1,1187.5,32297.412,0,0,0,0,0,4378.6084 +10541,12859,22945,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.7378049,5.8187404,0,0,-980.17224,0,2,3,2021,11,0,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2197037,5.4610596,51,46,-9,-9,7,1,1,1,0,8,9,2,1,874,605301.63,-167026.83,354717.25,0,0,0,1003.9962 +10542,12860,22946,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4366617,8.5091057,0,0,0,-998.57544,0,3,3,2021,9,0,37,36,1,0,0,15.214292,15.214292,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,11,8,4,0,559,670135.13,-38829.078,486007.16,48272.332,0,0,1008.2626 +10543,12861,22947,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.9045229,8.9052172,0,0,0,-1008.2748,0,-9,-9,2021,19,7,42,39,1,7,0,20.944679,20.944679,0,0,0,0,0,0,0,0,1,1,0,0,0,34.26,53.13,-9,-9,3.333333333333333,1,1,0,0,6,12,5,1,1159,-346.15714,0,0,0,0,0,2460.9558 +10544,12862,22948,22949,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,43,11,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.91,59.89,55.13,35.63,5,1,1,0,0,0,7,1,1,1454.5,47437.738,0,0,0,-468.11655,1302.7131,1162.4307 +10544,12862,22949,22948,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,43,-11,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,55.13,35.63,45.91,59.89,5,1,1,0,0,0,7,1,1,1454.5,47437.738,0,0,0,-468.11655,1302.7131,1162.4307 +10544,12863,22950,-9,22948,22949,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1008.9909,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,7,1,1,957,-31891.729,0,0,0,0,0,258.94223 +10544,12864,22951,-9,22948,22949,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1074.8008,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,7,1,1,930,0,0,0,0,0,0,481.86874 +10545,12865,22952,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.7968373,6.8223886,0,0,-992.97845,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6870036,5.3396997,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,3,5,2,1,884,401839.81,150180.7,296788.38,0,0,0,885.67755 +10546,12866,22953,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.4766464,6.3936419,0,0,-948.84766,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7100024,6.5443559,46.99,55.85,-9,-9,10,1,1,0,0,0,7,2,0,1211,757337,537465.25,233723.11,0,0,0,956.24481 +10547,12867,22954,22955,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.774766,9.0587187,6.0467591,1,0,-41.924423,-9,2,2,2021,10,1,48,0,1,1,0,14.350191,14.350191,.05,.05,0,0,0,0,0,0,0,0,0,7.2474217,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,1,8,5,0,745.5,155379.52,35155.625,237199.13,57726.914,-1859.9447,4765.9346,4094.5322 +10547,12867,22955,22954,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2894545,8.2713499,0,1,0,-76.367378,-9,-9,-9,2021,13,1,42,0,1,1,0,13.068758,13.068758,.05,.05,0,0,0,0,0,0,0,0,0,4.4744859,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,4,8,5,0,745.5,155379.52,35155.625,237199.13,57726.914,-1859.9447,4765.9346,4094.5322 +10548,12868,22956,-9,22959,22958,1,1,31,0,0,0,1,1,-9,0,3,8.4105043,8.3539515,0,0,0,-1081.4336,0,2,2,2021,12,0,53,52,1,0,0,8.6371107,8.6371107,.05,.05,0,0,0,0,0,0,1,1,0,2.7021599,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,83,115325.8,-16597.947,0,0,6155.4155,0,1621.6033 +10548,12869,22957,-9,22959,22958,1,1,39,0,0,0,1,1,-9,0,3,7.6476684,7.2926226,0,0,0,-1054.7338,0,3,2,2021,12,0,40,8,1,0,0,5.0152154,5.0152154,0,0,.05,0,0,0,0,0,1,1,0,2.5189426,0,52.4,52.91,-9,-9,8.333333333333334,2,3,0,0,10,8,3,1,259,174797.11,40012.109,730627.81,550614.31,0,0,150.96251 +10548,12870,22958,22959,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.7723947,5.6505938,47,0,49.943035,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6666622,55.36,51.57,44.72,48.59,8.333333333333334,2,3,0,0,8,8,2,1,958.5,761290.19,273578.38,249005.94,0,0,0,1539.3287 +10548,12870,22959,22958,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,0,82.898865,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,48.59,55.36,51.57,8.333333333333334,2,3,0,0,6,8,2,1,958.5,761290.19,273578.38,249005.94,0,0,0,1539.3287 +10549,12871,22960,22961,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.7835288,7.9264326,12,-7,-44.078133,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1475306,8.1890783,57.07,49.39,61.28,35.65,8.333333333333334,1,1,0,0,4,4,4,1,747.5,1172735,571020.94,263050.53,0,0,0,3833.6655 +10549,12871,22961,22960,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,7.9229302,8.0780811,12,7,-44.827717,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9012089,7.7855787,61.28,35.65,57.07,49.39,6.666666666666667,1,1,0,0,0,4,4,1,747.5,1172735,571020.94,263050.53,0,0,0,3833.6655 +10550,12872,22962,22963,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,11,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.52,28.09,42.32,54.75,5,1,1,0,0,0,4,1,0,1197,-152172.05,-44003.441,0,0,0,0,0 +10550,12872,22963,22962,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,0,0,11,23,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,42.32,54.75,42.52,28.09,5,1,1,0,0,0,4,1,0,1197,-152172.05,-44003.441,0,0,0,0,0 +10551,12873,22964,22965,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9375944,8.8030396,0,11,3,-45.484196,0,2,3,2021,11,0,43,43,1,0,0,17.172895,17.172895,.05,.05,0,0,0,0,0,0,0,0,0,4.2497745,0,47.72,55.04,54.57,49.24,8.333333333333334,1,1,0,0,12,9,5,1,1514,223981.59,39089.121,0,0,0,3162.5547,3484.8511 +10551,12873,22965,22964,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6622839,8.0496502,4.956841,11,-3,-2.1289752,0,2,2,2021,12,0,25,27,1,0,0,10.050647,10.050647,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5680542,54.57,49.24,47.72,55.04,6.666666666666667,1,1,0,0,12,9,5,1,1514,223981.59,39089.121,0,0,0,3162.5547,3484.8511 +10551,12874,22966,-9,22965,22964,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1038.9128,-9,2,2,2021,28,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0740857,0,17.8,66.2,-9,-9,1.666666666666667,1,1,0,1,1,9,1,1,1678,0,0,0,0,0,0,633.00818 +10552,12875,22967,-9,22969,22968,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.24255,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12875,22968,22969,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.1123743,8.2732353,0,24,4,-56.715694,0,-9,-9,2021,10,0,52,57,1,0,0,10.654449,10.654449,.05,.05,0,0,0,0,0,0,1,1,0,4.1555009,0,53.05,28.78,60.12,54.8,8.333333333333334,2,3,0,0,11,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12875,22969,22968,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2454071,8.2284479,0,24,-4,61.080853,0,2,2,2021,6,0,30,30,1,0,0,16.860809,16.860809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,53.05,28.78,8.333333333333334,2,3,0,0,10,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12876,22970,-9,22969,22968,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-977.53644,-9,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,1,0,11,1,1,236,-177782.19,0,0,0,0,0,0 +10553,12877,22971,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.9720469,7.5842795,0,0,0,-996.5968,0,3,3,2021,6,0,38,40,1,0,0,7.6423125,7.6423125,0,0,0,0,0,0,0,0,0,0,0,3.5708442,0,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,1340,205819.28,133566.48,0,0,0,0,1823.554 +10554,12878,22972,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,4.6722341,4.2673187,0,0,-932.39069,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.7467103,0,30.44,21.51,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,164,89753.32,1765.6896,221449.86,0,-1955.246,2452.2788,2386.7266 +10555,12879,22973,22974,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.485116,9.5986519,0,23,4,-26.635494,0,2,3,2021,6,0,75,80,1,0,0,18.903963,18.903963,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.69,47.21,8.333333333333334,1,1,0,0,9,1,5,1,563.5,827219.25,304819.56,286595.88,44795.809,0,0,5022.5234 +10555,12879,22974,22973,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.1945567,7.0563002,0,23,-4,-84.49527,0,3,3,2021,10,0,10,15,1,0,0,22.251265,22.251265,0,0,0,0,0,0,0,2,0,0,0,0,0,41.69,47.21,57.16,56.15,3.333333333333333,1,1,0,0,9,1,5,1,563.5,827219.25,304819.56,286595.88,44795.809,0,0,5022.5234 +10556,12880,22975,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,4.8532343,5.2579808,0,0,-889.68707,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2204847,5.0154366,58.24,32.39,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,252,55771.391,-40526.145,0,0,0,0,85.36248 +10557,12881,22976,22977,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1581306,8.2703676,0,1,-15,63.967808,-9,-9,-9,2021,9,0,36,0,1,0,0,11.418556,11.418556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,41.28,57.99,8.333333333333334,1,1,0,0,1,5,5,0,709.5,106099.26,210301.66,48773.688,100728.63,0,428.19818,3366.0586 +10557,12881,22977,22976,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1742229,8.4502316,6.0076199,1,15,-21.506432,-9,-9,-9,2021,7,1,60,0,1,1,0,9.4617872,9.4617872,.05,.05,0,0,0,0,0,0,0,0,0,6.5547805,0,41.28,57.99,48.98,57.22,6.666666666666667,1,1,0,0,11,5,5,0,709.5,106099.26,210301.66,48773.688,100728.63,0,428.19818,3366.0586 +10557,12882,22978,-9,22977,22976,1,1,21,0,0,0,2,2,-9,0,4,8.4484529,8.3060284,0,0,0,-1161.0227,-9,2,2,2021,10,1,37,0,1,1,1,14.858901,14.858901,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,932,-46450.027,17474.959,0,0,8047.0366,0,1513.4132 +10558,12883,22979,22980,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.8892608,7.8198786,42,1,21.75374,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3310075,7.7197871,60.28,43.74,56.52,48.31,8.333333333333334,1,1,0,0,5,9,4,1,687,1849245.1,1062324.3,547093.38,0,0,0,3490.3157 +10558,12883,22980,22979,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.0020542,8.49617,42,-1,-26.352163,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6719666,8.1089487,56.52,48.31,60.28,43.74,8.333333333333334,1,1,0,0,4,9,4,1,687,1849245.1,1062324.3,547093.38,0,0,0,3490.3157 +10559,12884,22981,-9,22982,22983,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1135.4625,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22982,22983,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,7.2096701,7.4027901,5.0551295,5,3,17.099932,0,-9,-9,2021,12,1,40,20,1,1,0,3.5948124,3.5948124,0,0,0,0,0,0,0,2,1,1,0,5.4076777,0,47.89,56.25,35.17,21.8,10,1,1,0,0,5,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22983,22982,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.7823019,8.5769548,0,5,-3,-20.899895,0,2,2,2021,24,11,42,42,1,11,0,15.842452,15.842452,0,0,0,0,0,0,0,2,1,1,0,3.4502993,0,35.17,21.8,47.89,56.25,3.333333333333333,1,1,0,0,11,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22984,-9,22982,22983,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.09387,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10560,12885,22985,22986,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,8.8261614,8.676486,0,19,3,-41.227081,0,3,3,2021,7,0,44,42,1,0,0,15.133591,15.133591,0,0,0,0,0,0,0,0,0,0,0,4.3875175,0,58.32,50.22,51,49,1.666666666666667,1,1,0,0,10,7,4,1,458.5,722576.56,535730.13,259594.28,0,6041.1841,0,3220.1914 +10560,12885,22986,22985,-9,-9,1,1,60,0,0,0,2,2,-9,1,3,0,0,0,19,-3,30.524605,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.0730124,0,51,49,58.32,50.22,7,1,1,0,0,0,7,4,1,458.5,722576.56,535730.13,259594.28,0,6041.1841,0,3220.1914 +10561,12886,22987,22988,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,0,0,0,7,-8,-17.732483,0,2,1,2021,20,8,0,39,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.05,46.56,45.34,41.21,5,1,1,1,0,7,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10561,12886,22988,22987,-9,-9,1,0,63,0,1,0,2,2,-9,0,3,0,4.6526709,4.4752121,7,8,42.151649,0,3,2,2021,15,4,0,16,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7177887,4.8470497,45.34,41.21,40.05,46.56,8.333333333333334,1,1,0,0,7,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10561,12886,22989,-9,22988,22987,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1071.2943,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0317858,0,28.9,55.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10562,12887,22990,22991,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-3,0,-9,-9,-9,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.7,36.46,52.37,56.93,0,2,3,0,0,0,6,1,0,1657,9571.0879,0,0,0,0,0,1936.6931 +10562,12887,22991,22990,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,28,3,0,-9,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.37,56.93,21.7,36.46,1.666666666666667,1,1,1,0,0,6,1,0,1657,9571.0879,0,0,0,0,0,1936.6931 +10563,12888,22992,22995,-9,-9,1,1,37,0,4,0,2,2,-9,0,4,7.9177527,7.8447437,0,9,-3,-84.157448,0,-9,-9,2021,3,0,44,40,1,0,0,7.0009904,7.0009904,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.9,36.73,8.333333333333334,2,3,0,0,12,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22993,-9,22995,22992,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.13861,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22994,-9,22995,22992,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-873.02478,-9,1,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22995,22992,-9,-9,1,0,40,0,4,0,1,1,-9,0,2,0,0,0,23,3,-31.713015,0,3,3,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.9,36.73,60.12,54.8,8.333333333333334,2,3,0,1,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10564,12889,22996,22997,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.4073887,8.8466434,0,3,-2,-9.2035093,0,-9,-9,2021,10,0,46,53,1,0,0,13.098493,13.098493,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.18,61.8,6.666666666666667,1,1,0,0,10,5,5,1,214.5,135552.59,157170.67,0,0,-2399.313,0,3796.9976 +10564,12889,22997,22996,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.6530762,8.4440956,0,3,2,-35.917603,0,2,-9,2021,16,4,38,37,1,4,0,13.409833,13.409833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51.24,58.84,5,1,1,0,1,11,5,5,1,214.5,135552.59,157170.67,0,0,-2399.313,0,3796.9976 +10565,12890,22998,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.0695286,8.1911411,0,0,0,-918.80725,0,2,2,2021,9,0,48,48,1,1,0,9.0835886,9.0835886,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,2,3,0,0,6,8,4,0,668,-93574.445,106645.54,0,0,3270.8425,0,1390.1161 +10565,12891,22999,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.0036764,8.1357365,0,0,0,-1060.4869,0,-9,-9,2021,10,0,50,50,1,1,0,8.8622284,8.8622284,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,4,8,4,0,211,-138596.52,-23954.254,0,0,9832.667,0,1874.6554 +10566,12892,23000,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1087.6405,-9,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,125.59242,0,1169.6998,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,6,1,0,402,82527.492,0,101570.12,0,0,0,411.72137 +10567,12893,23001,23002,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3375015,8.4829302,0,6,1,128.69313,0,-9,-9,2021,8,0,35,43,1,0,0,9.9558163,9.9558163,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,36.1,63.29,6.666666666666667,1,1,0,0,7,6,5,1,514.5,87760.453,-29227.652,182822.48,141649.97,681.7699,433.75333,2916.168 +10567,12893,23002,23001,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.9727988,8.2803106,4.6505713,6,-1,-26.088514,0,-9,-9,2021,23,11,8,45,1,11,0,40.574615,40.574615,.05,.05,0,0,0,0,0,7,0,0,0,4.8942237,0,36.1,63.29,49.04,55.86,1.666666666666667,1,1,0,0,6,6,5,1,514.5,87760.453,-29227.652,182822.48,141649.97,681.7699,433.75333,2916.168 +10568,12894,23003,23004,-9,-9,1,1,45,1,1,0,1,1,-9,0,3,8.8396063,8.6948128,0,9,7,32.240623,0,2,1,2021,1,0,40,85,1,0,0,26.084534,26.084534,.05,.05,0,0,0,0,0,0,1,1,0,5.3138461,0,58.32,50.22,58.05,54.52,8.333333333333334,1,1,0,0,9,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10568,12894,23004,23003,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,7.611485,7.328681,0,9,-7,-26.302752,0,1,1,2021,5,0,17,15,1,0,0,11.219529,11.219529,.05,.05,0,0,0,0,0,0,1,1,0,2.244158,0,58.05,54.52,58.32,50.22,10,1,1,0,0,9,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10568,12894,23005,-9,23004,23003,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.38409,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10569,12895,23006,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.3743787,6.7400632,0,0,-949.98651,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7994714,7.1305933,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,486,350498.06,216549.91,172519.81,0,0,0,758.37512 +10570,12896,23007,23008,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.6992793,7.2016072,7,6,-10.262916,0,3,3,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4383192,7.5770564,39.6,56.15,51.02,17.52,8.333333333333334,3,4,0,0,1,6,3,1,262.5,2077643.3,1266267.3,622479.25,0,0,0,2877.3384 +10570,12896,23008,23007,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6011176,7.4958501,7,-6,-16.576931,0,3,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5685124,51.02,17.52,39.6,56.15,1.666666666666667,2,3,0,0,6,6,3,1,262.5,2077643.3,1266267.3,622479.25,0,0,0,2877.3384 +10571,12897,23009,23010,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,7.5521884,7.697679,0,3,1,-118.17333,0,2,1,2021,22,9,6,15,1,9,0,46.342087,46.342087,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.89,46.32,54.1,59.11,6.666666666666667,1,1,0,0,9,6,4,1,912,40015.031,14706.34,0,0,0,0,2279.5981 +10571,12897,23010,23009,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.105689,8.2828722,0,3,-1,-11.253898,0,-9,-9,2021,8,0,43,45,1,0,0,12.088473,12.088473,.05,.05,0,0,0,0,0,0,0,0,0,.19989039,0,54.1,59.11,23.89,46.32,6.666666666666667,1,1,0,1,4,6,4,1,912,40015.031,14706.34,0,0,0,0,2279.5981 +10572,12898,23011,-9,23013,23014,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.87183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23012,-9,23013,23014,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.02991,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23013,23014,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,12,0,89.350708,0,2,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,50.73,44.02,60.7,8.333333333333334,1,1,0,0,9,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23014,23013,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8584909,8.9706593,0,12,0,47.77837,0,1,1,2021,10,0,50,50,1,0,0,13.871373,13.871373,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.02,60.7,54.1,50.73,8.333333333333334,1,1,0,0,13,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10573,12899,23015,23016,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5461597,8.8016214,0,11,-6,-10.340267,0,3,3,2021,11,0,38,38,1,0,0,16.790707,16.790707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,893.5,456100.66,188980.86,186202.44,43366.93,0,0,2776.562 +10573,12899,23016,23015,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.6625252,7.7682714,0,11,6,24.75128,0,3,3,2021,8,0,38,38,1,0,0,9.5909882,9.5909882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.58,47.97,8.333333333333334,1,1,0,0,12,13,5,1,893.5,456100.66,188980.86,186202.44,43366.93,0,0,2776.562 +10573,12900,23017,-9,23015,23016,1,0,30,0,0,0,1,1,-9,0,5,7.7253747,7.6436043,0,0,0,-998.11346,0,1,2,2021,7,0,33,30,1,0,1,7.4303503,7.4303503,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,12,13,3,1,412,1417.9229,-57601.449,0,0,0,0,1803.8273 +10573,12901,23018,-9,23015,23016,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-942.01819,0,1,2,2021,12,0,0,42,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,436,-24443.533,0,0,0,0,0,-364.55096 +10574,12902,23019,-9,23022,23021,1,1,37,0,1,0,2,2,-9,0,2,8.1639986,8.1199408,0,0,0,-1080.3721,0,3,3,2021,12,1,48,45,1,1,1,8.8392315,8.8392315,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,53.23,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,430,-95416.344,0,0,0,898.32031,0,2029.9014 +10574,12902,23020,-9,-9,23019,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.732,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,430,-95416.344,0,0,0,898.32031,0,2029.9014 +10574,12903,23021,23022,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,8.5527267,8.430604,0,5,0,9.449276,0,-9,-9,2021,3,0,45,45,1,0,0,14.516097,14.516097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.94,27.98,49.34,44.51,8.333333333333334,1,1,0,0,8,11,5,1,1261.5,548170.63,315994.94,323187.5,106427.03,0,0,3058.7671 +10574,12903,23022,23021,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,8.1374302,8.1728544,0,5,0,-70.754601,0,-9,-9,2021,7,0,38,40,1,0,0,10.018342,10.018342,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,44.51,41.94,27.98,8.333333333333334,1,1,0,0,11,11,5,1,1261.5,548170.63,315994.94,323187.5,106427.03,0,0,3058.7671 +10575,12904,23023,23024,-9,-9,1,0,37,0,0,0,2,2,-9,0,1,7.7333694,7.6260405,0,19,-4,51.962536,0,2,1,2021,20,8,30,30,1,8,0,8.9097309,8.9097309,.05,.05,0,0,0,0,0,0,0,0,0,4.3477511,0,36.26,33.72,38.03,45.9,8.333333333333334,1,1,0,0,12,11,4,1,931.5,-19302.121,88543.516,0,0,0,1313.7798,2950.9937 +10575,12904,23024,23023,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.1234627,7.8596807,0,19,4,97.72908,0,2,-9,2021,14,3,38,39,1,3,0,8.5323744,8.5323744,.05,.05,0,0,0,0,0,0,0,0,0,2.7886972,0,38.03,45.9,36.26,33.72,6.666666666666667,1,1,0,0,12,11,4,1,931.5,-19302.121,88543.516,0,0,0,1313.7798,2950.9937 +10576,12905,23025,23027,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,6.9397283,6.7643604,0,9,-7,48.167049,0,-9,-9,2021,13,1,36,15,1,1,0,4.0245209,4.0245209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.13,58.1,53.91,55.06,6.666666666666667,1,1,0,0,10,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23026,-9,23025,23027,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9575,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23027,23025,-9,-9,1,1,45,1,2,0,2,2,-9,0,5,9.1511908,9.2509518,0,9,7,114.61778,0,2,1,2021,6,0,45,45,1,0,0,24.063513,24.063513,.05,.05,0,0,0,0,0,0,0,0,0,5.7062025,0,53.91,55.06,44.13,58.1,8.333333333333334,1,1,0,0,12,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23028,-9,23025,23027,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.01831,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10577,12906,23029,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1023.5798,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.03,50.91,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,842,-37245.805,0,0,0,0,0,487.74814 +10578,12907,23030,23031,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.7195926,4.7030702,7,-2,-36.176678,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.891655,4.7225609,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,4,9,2,1,435.5,650426.13,216963.7,328507.56,0,0,247.13867,1991.0757 +10578,12907,23031,23030,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2612033,7.5058503,7,2,173.31139,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0670366,7.3719888,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,4,9,2,1,435.5,650426.13,216963.7,328507.56,0,0,247.13867,1991.0757 +10579,12908,23032,23033,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,42,-1,-59.756798,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1953235,0,39.05,57.88,44.58,40.68,6.666666666666667,1,1,0,0,3,9,2,1,217.5,4515593,1220952.8,2395317,0,0,0,1440.6973 +10579,12908,23033,23032,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.9231009,6.5825844,42,1,68.957664,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6117554,6.4775791,44.58,40.68,39.05,57.88,6.666666666666667,1,1,0,0,6,9,2,1,217.5,4515593,1220952.8,2395317,0,0,0,1440.6973 +10580,12909,23034,-9,23035,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-912.12836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1109,4372.8867,0,0,0,0,0,1556.0724 +10580,12909,23035,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.2381172,7.7187366,0,0,0,-1028.847,0,2,-9,2021,6,0,33,34,1,0,0,11.644822,11.644822,0,0,0,0,0,0,0,2,1,1,0,0,0,58.16,48.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1109,4372.8867,0,0,0,0,0,1556.0724 +10581,12910,23036,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.8206,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,29.3,-9,-9,8.333333333333334,1,1,0,0,12,12,1,0,162,-176946.25,0,0,0,0,0,1012.9744 +10582,12911,23037,23039,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,7.9368591,7.5848327,0,14,-1,23.388187,0,2,2,2021,7,0,30,35,1,0,0,10.743887,10.743887,0,0,0,0,0,0,.036642149,42,1,1,0,0,0,58.91,45.88,36.51,56.83,8.333333333333334,1,1,0,0,2,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23038,-9,23037,23039,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.3054,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23039,23037,-9,-9,1,1,43,0,2,0,3,3,-9,0,2,8.0741663,7.9966617,0,14,1,71.221565,0,3,3,2021,12,0,52,55,1,0,0,9.4121866,9.4121866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.51,56.83,58.91,45.88,6.666666666666667,2,3,0,0,8,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23040,-9,23037,23039,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.90741,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10583,12912,23041,23042,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.8817225,8.0267315,0,26,0,30.877687,0,-9,-9,2021,10,1,57,66,1,1,0,6.9888711,6.9888711,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,14,9,5,1,1176.5,2763196.5,2015036,541895.94,-503.78711,0,0,5202.7485 +10583,12912,23042,23041,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.4229078,9.3455648,0,21,0,134.03452,0,2,3,2021,9,0,55,50,1,0,0,29.195904,29.195904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,2,3,0,0,14,9,5,1,1176.5,2763196.5,2015036,541895.94,-503.78711,0,0,5202.7485 +10584,12913,23043,23044,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,8,-7,-94.475632,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.16686958,0,57.5,19.57,50.77,40.46,10,1,1,0,0,0,6,2,1,446.5,457907.19,261574.8,170675.88,0,0,0,1903.1702 +10584,12913,23044,23043,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2348814,7.1999965,46,7,-86.279694,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2951775,50.77,40.46,57.5,19.57,10,1,1,0,0,7,6,2,1,446.5,457907.19,261574.8,170675.88,0,0,0,1903.1702 +10585,12914,23045,23046,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.9836917,8.5011044,6,2,-87.377953,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2670479,8.3772669,60.03,50.88,36.08,60.5,10,1,1,0,0,5,7,3,1,197,970450.63,789830.63,212552.47,0,10665.736,0,7090.4414 +10585,12914,23046,23045,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,6,-2,87.790237,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1084614,0,36.08,60.5,60.03,50.88,8.333333333333334,1,1,0,0,0,7,3,1,197,970450.63,789830.63,212552.47,0,10665.736,0,7090.4414 +10585,12915,23047,-9,23046,23045,1,1,39,0,0,0,1,1,-9,0,3,9.7970791,9.3598366,0,0,0,-1001.0944,0,2,2,2021,16,4,46,50,1,4,0,34.721241,34.721241,.05,.05,0,0,0,0,0,0,1,1,0,3.0356383,0,46.8,57.03,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,1027,222631.56,39655.09,198256.94,148889.8,0,0,4834.6846 +10586,12916,23048,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,6.9773421,6.8301544,0,0,-994.8537,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9202042,0,0,1,1,0,0,6.8670063,47.95,21.46,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,925,49862.695,22324.523,0,0,0,0,1634.5125 +10586,12917,23049,-9,23048,-9,1,0,52,0,0,0,3,3,-9,0,3,7.3923583,7.2290621,0,0,0,-1070.9453,0,3,-9,2021,12,1,21,21,1,1,0,9.4974432,9.4974432,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,862,86743.734,245076.36,0,0,0,0,1623.6547 +10587,12918,23050,23051,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.151773,7.5646005,48,4,-46.205257,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3368278,57.33,53.46,36.77,54.7,10,1,1,0,0,0,5,2,1,494.5,559246.06,174551.16,275007.41,0,0,0,1339.7472 +10587,12918,23051,23050,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,-4,-77.500511,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,54.7,57.33,53.46,10,1,1,0,0,0,5,2,1,494.5,559246.06,174551.16,275007.41,0,0,0,1339.7472 +10588,12919,23052,23053,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,44,0,87.177589,0,2,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,56.18,53.85,10,1,1,0,0,6,5,2,1,562,113097.26,154255.25,134546.06,0,0,0,1838.1425 +10588,12919,23053,23052,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.3736267,6.0631876,44,0,39.267666,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5055432,5.2018361,56.18,53.85,54.79,55.86,5,1,1,0,0,6,5,2,1,562,113097.26,154255.25,134546.06,0,0,0,1838.1425 +10589,12920,23054,23055,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.5707746,7.3953075,0,10,-2,47.58498,0,3,3,2021,8,0,30,30,1,0,0,6.6151552,6.6151552,.05,.05,0,0,0,0,0,0,1,1,0,1.4002517,0,59.43,58.05,59.05,40.24,8.333333333333334,1,1,0,0,12,13,5,1,1337,1409959.8,1019341.8,333040.94,0,12686.926,0,3838.0291 +10589,12920,23055,23054,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4878407,8.7619343,7.7620993,10,2,146.15843,0,3,2,2021,9,0,35,35,1,0,0,14.500587,14.500587,.05,.05,0,0,0,0,0,0,1,1,0,7.6043086,8.0039749,59.05,40.24,59.43,58.05,1.666666666666667,1,1,0,0,12,13,5,1,1337,1409959.8,1019341.8,333040.94,0,12686.926,0,3838.0291 +10590,12921,23056,23057,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,7,-5,70.643929,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.67,32.3,56.31,21.31,6.666666666666667,1,1,0,0,10,5,2,1,555.5,743818.13,544401.63,221629.42,0,0,0,2281.6108 +10590,12921,23057,23056,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7309375,7.2357602,7,5,31.398623,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9111547,6.7859278,56.31,21.31,44.67,32.3,3.333333333333333,1,1,0,0,9,5,2,1,555.5,743818.13,544401.63,221629.42,0,0,0,2281.6108 +10591,12922,23058,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6079979,8.3837175,0,0,0,-946.72504,0,3,3,2021,6,0,42,38,1,0,0,13.257965,13.257965,0,0,0,0,0,0,0,0,1,1,0,6.5633755,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,7,2,5,1,281,88079.289,-13905.492,0,0,0,0,1922.7067 +10591,12923,23059,-9,-9,23060,1,1,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1162.6331,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,1,1,450.5,114606.69,0,0,0,0,0,0 +10591,12923,23060,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-989.66425,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,6.666666666666667,2,3,1,0,2,2,1,1,450.5,114606.69,0,0,0,0,0,0 +10591,12924,23061,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1029.6617,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,2,1,1,1442,304.82916,0,0,0,0,2011.6263,815.65991 +10592,12925,23062,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.6601801,8.7694979,0,0,0,-889.21759,0,-9,-9,2021,5,0,30,30,1,0,0,24.834423,24.834423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,9,11,5,0,1123,225305.55,360.40958,0,0,0,0,2712.3752 +10593,12926,23063,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,3.2891378,3.1742227,0,0,-1003.534,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.5319726,57.16,56.15,-9,-9,10,1,1,0,0,0,6,2,1,229,128269.48,104664.77,200689.61,0,0,0,1415.1267 +10594,12927,23064,23065,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1935825,7.1508493,5,1,-59.444614,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8469315,7.3287697,60.13,49.27,54.27,48.04,8.333333333333334,1,1,0,0,3,9,4,1,2671.5,1937178.3,1097980,631610.63,0,0,0,4584.5366 +10594,12927,23065,23064,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.2933607,8.548399,0,5,-1,76.511139,0,3,3,2021,12,1,60,35,1,1,0,8.7065229,8.7065229,0,0,0,0,0,0,0,2,1,1,0,7.6069241,0,54.27,48.04,60.13,49.27,8.333333333333334,1,1,0,0,7,9,4,1,2671.5,1937178.3,1097980,631610.63,0,0,0,4584.5366 +10595,12928,23066,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.649,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.56,43.11,-9,-9,0,1,1,0,0,0,7,1,0,1481,-90473.203,0,0,0,0,0,558.30011 +10596,12929,23067,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,5.5015616,5.3072023,0,0,-1083.6456,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.6598792,25.749943,53.38023,0,1,1,0,7.9863005,5.7411838,47.79,28.96,-9,-9,6.666666666666667,3,4,0,0,0,12,2,1,621,146561.08,-118633.41,128127.26,0,0,0,3461.592 +10597,12930,23068,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.3358,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,29.77,26.17,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,1191,0,0,0,0,0,0,2232.0889 +10597,12931,23069,-9,23068,-9,1,0,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1025.2391,0,3,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,16.21,59.64,-9,-9,3.333333333333333,1,1,0,0,6,13,1,0,279,187542.94,0,0,0,0,0,234.97673 +10597,12932,23070,-9,23068,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-872.11133,0,3,-9,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.65,60.29,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,232,26588.305,0,0,0,0,0,420.65222 +10598,12933,23071,-9,-9,-9,1,0,59,0,0,0,1,1,-9,1,1,0,7.1943178,7.3919625,0,0,-974.06232,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.392108,6.5659118,19.01,22.64,-9,-9,0,1,1,1,1,0,10,3,1,835,373765.06,38823.836,272295.34,0,0,0,1093.1154 +10599,12934,23072,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.034008,6.5627861,0,0,-979.49902,0,3,2,2021,6,0,0,8,4,0,0,0,0,0,0,0,1,0,7.0043774,0,0,1,1,0,4.3048992,6.7235594,61.18,34.74,-9,-9,6.666666666666667,1,1,0,0,9,6,2,1,381,322065.13,136280.13,91142.438,0,0,0,1270.119 +10600,12935,23073,-9,23075,23074,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1159.1383,0,2,3,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,5,1,1,1,0,0,2,1,0,858,177329.67,0,0,0,0,0,223.66467 +10600,12936,23074,23075,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,3,5,12.898685,0,3,3,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,46.19,41.03,27.89,18.61,5,1,1,0,0,0,2,2,0,468.5,93139.359,-43567.852,92963.586,0,0,0,968.38855 +10600,12936,23075,23074,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,7.0251188,6.8848581,0,3,-5,42.670959,0,-9,-9,2021,30,11,10,0,1,11,0,7.6773324,7.6773324,0,0,0,0,0,0,0,7,1,1,0,0,0,27.89,18.61,46.19,41.03,0,1,1,0,0,1,2,2,0,468.5,93139.359,-43567.852,92963.586,0,0,0,968.38855 +10601,12937,23076,23077,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5615525,7.8813429,8,2,-37.773964,0,-9,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6376548,7.777215,52,47,40.77,42.34,3.333333333333333,1,1,0,0,0,10,3,1,133.5,813478.25,481670.53,283875.56,0,0,1790.2639,2818.627 +10601,12937,23077,23076,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,7.3027201,7.3975353,8,-2,-60.900887,0,3,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.294704,40.77,42.34,52,47,6.666666666666667,1,1,0,0,8,10,3,1,133.5,813478.25,481670.53,283875.56,0,0,1790.2639,2818.627 +10602,12938,23078,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.5013008,8.4473667,0,0,0,-1043.3625,0,-9,-9,2021,7,0,50,55,1,0,0,10.963469,10.963469,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.35,59.64,-9,-9,1.666666666666667,1,1,0,0,8,5,5,0,594,859475.63,460932.88,210276.55,0,0,0,1774.1831 +10603,12939,23079,23080,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.327383,8.6551247,0,9,-11,23.200356,0,-9,-9,2021,12,0,46,49,1,0,0,12.08924,12.08924,0,0,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,49.31,48.84,6.666666666666667,1,1,0,0,14,9,5,1,1825,1889780.8,858799.69,766503.25,76786.516,0,948.77191,5060.1157 +10603,12939,23080,23079,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9559317,8.1401501,30,11,50.674957,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5133722,8.0601921,49.31,48.84,51.84,51.67,6.666666666666667,1,1,0,0,10,9,5,1,1825,1889780.8,858799.69,766503.25,76786.516,0,948.77191,5060.1157 +10604,12940,23081,23082,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.3729196,7.7918825,30,7,-68.756584,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3357577,7.7003822,59.14,52.5,57.16,56.15,10,1,1,0,0,0,12,3,1,511.5,751839.13,270936.41,248719.34,0,0,0,3819.3479 +10604,12940,23082,23081,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.6642108,6.8883862,30,-7,-48.905029,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0208278,7.1242442,57.16,56.15,59.14,52.5,10,1,1,0,0,0,12,3,1,511.5,751839.13,270936.41,248719.34,0,0,0,3819.3479 +10605,12941,23083,23084,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.658164,8.5124321,0,21,2,80.446571,0,3,3,2021,10,0,42,40,1,0,0,12.841705,12.841705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,42.55,52.01,8.333333333333334,1,1,0,0,14,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10605,12941,23084,23083,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6348462,7.673039,0,26,-2,-96.798889,0,3,3,2021,12,2,39,39,1,2,0,6.1640415,6.1640415,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.55,52.01,54.96,53.17,5,1,1,0,0,14,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10605,12941,23085,-9,23084,23083,1,0,16,0,0,0,3,3,-9,0,4,0,0,0,0,0,-730.96112,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.95,45.45,-9,-9,10,1,1,0,0,1,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10606,12942,23086,23087,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9158654,7.3458104,49,0,36.460743,0,1,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4821324,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,795.5,3387005.3,2276523,583442.88,86558.172,0,0,5613.0117 +10606,12942,23087,23086,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.1516857,9.0469551,8.435751,49,0,21.491722,0,2,2,2021,5,0,7,7,1,0,0,69.439354,69.439354,0,0,0,0,0,0,0,0,1,1,0,0,8.7215424,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,11,10,5,1,795.5,3387005.3,2276523,583442.88,86558.172,0,0,5613.0117 +10607,12943,23088,23090,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,7.9545722,7.6976295,0,5,0,14.627713,0,-9,-9,2021,8,0,30,30,1,0,0,6.6830692,6.6830692,0,0,0,0,0,0,0,0,1,1,0,.58747125,0,58.47,50.22,57.33,53.46,8.333333333333334,1,1,0,0,11,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10607,12943,23089,-9,23090,23088,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.7565,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10607,12943,23090,23088,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,6.32301,6.5263953,0,5,0,-77.828903,0,-9,-9,2021,8,0,20,20,1,0,0,2.6627879,2.6627879,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.47,50.22,10,1,1,0,0,11,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10608,12944,23091,23092,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.3412037,9.6032238,0,7,10,82.948669,0,3,3,2021,6,0,45,1,1,0,0,28.323202,28.323202,.05,.05,0,0,0,0,0,0,0,0,0,4.7575769,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,10,5,1,686,1719973.8,1111800.3,398684.94,0,12221.117,0,12190.232 +10608,12944,23092,23091,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.9917889,8.8407326,0,7,-10,81.213982,0,2,2,2021,8,0,55,60,1,0,0,12.401874,12.401874,.05,.05,0,0,0,0,0,0,0,0,0,10.242571,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,10,5,1,686,1719973.8,1111800.3,398684.94,0,12221.117,0,12190.232 +10609,12945,23093,23094,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,6,-11,0,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.71,26.9,21.78,32.35,3.333333333333333,1,1,0,0,0,12,2,0,894.5,252839.97,0,170504.97,0,0,0,2493.3379 +10609,12945,23094,23093,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,6,11,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,6.6609669,21.756937,60.705654,0,1,1,0,0,0,21.78,32.35,36.71,26.9,5,1,1,0,0,1,12,2,0,894.5,252839.97,0,170504.97,0,0,0,2493.3379 +10610,12946,23095,23096,-9,-9,1,0,42,1,4,0,2,2,-9,1,2,0,0,0,17,-6,49.811447,0,-9,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,40.17,50.91,54.79,6.666666666666667,1,1,0,0,4,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23096,23095,-9,-9,1,1,48,1,4,0,1,1,-9,0,4,7.1850352,7.1002998,0,17,6,43.575165,0,3,3,2021,17,5,36,40,1,5,0,4.3872662,4.3872662,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.91,54.79,37.43,40.17,3.333333333333333,1,1,0,0,6,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23097,-9,23095,23096,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.876,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23098,-9,23095,23096,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.80377,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23099,-9,23095,23096,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.47998,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23100,-9,23095,23096,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-906.58643,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23101,-9,23095,23096,1,1,17,1,4,0,2,2,-9,0,4,0,0,0,0,0,-948.95929,0,2,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10611,12947,23102,23103,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,45,-6,-43.054443,0,3,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.097826,0,53.8,43.99,50.03,31.36,8.333333333333334,1,1,1,0,7,9,3,1,659.5,909286.56,458914.06,419688.69,0,0,0,1751.1855 +10611,12947,23103,23102,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.2786994,7.510385,6.5166068,9,6,-95.130196,-9,-9,-9,2021,10,0,24,0,1,0,0,7.0460458,7.0460458,0,0,0,1,0,0,0,0,1,1,0,6.0035672,6.3329611,50.03,31.36,53.8,43.99,8.333333333333334,1,1,0,0,5,9,3,1,659.5,909286.56,458914.06,419688.69,0,0,0,1751.1855 +10612,12948,23104,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.3063612,7.846436,0,0,-1090.6746,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8155899,7.9139934,52.25,45.21,-9,-9,0,1,1,0,0,0,10,4,1,1975,424504.91,156365.67,238280.47,0,0,0,2095.4863 +10613,12949,23105,23109,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,8.7142334,8.7689791,0,8,1,23.218779,-9,-9,-9,2021,10,0,38,0,1,1,0,15.591662,15.591662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,62.39,56.71,7,1,1,0,0,1,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23106,-9,23109,23105,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.2179,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23107,-9,23109,23105,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.993,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23108,-9,23109,23105,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.6127,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23109,23105,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.9056196,8.936821,0,8,-1,73.715408,0,2,2,2021,5,0,38,37,1,0,0,23.676903,23.676903,.05,.05,0,0,0,0,0,0,0,0,0,1.3591459,0,62.39,56.71,51,56,0,1,1,0,0,8,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10614,12950,23110,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.9949241,8.0976095,0,0,-904.67603,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2358918,7.8469753,58.32,52.89,-9,-9,10,1,1,0,0,0,11,4,1,2465,694896.88,146126.02,431203.5,0,0,0,1901.5366 +10615,12951,23111,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6024446,7.813859,0,0,-1010.6255,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.97604406,7.7469845,57.1,30.43,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,597,387012.69,88930.344,206430.44,0,0,0,1755.4752 +10615,12952,23112,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.7816057,7.7979074,0,0,-947.51416,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5927062,7.9432974,45.26,56.13,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,409,282924.59,169409.81,175414.17,0,0,0,959.08612 +10616,12953,23113,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.4444,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.16,24.58,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1194,-78461.313,0,129486.31,0,0,0,610.13098 +10617,12954,23114,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1026.5668,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1260278,0,34.3,37.44,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,2082,75639.969,0,0,0,4820.6973,0,1324.9038 +10618,12955,23115,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.296936,7.754271,5.355422,0,0,-858.44196,0,2,2,2021,23,10,16,20,1,10,0,9.7649088,9.7649088,.05,.05,0,0,0,0,0,0,1,1,0,5.7033119,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,7,4,2,0,964,-69952.828,0,113302.57,73204.563,0,-292.4371,1588.9498 +10618,12955,23116,-9,23115,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-942.09644,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,964,-69952.828,0,113302.57,73204.563,0,-292.4371,1588.9498 +10619,12956,23117,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,5.3004422,5.204596,0,0,-941.50079,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5316396,5.6376557,63.83,43.62,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,865,545942.13,0,548851.56,0,0,0,791.33545 +10620,12957,23118,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,5.9886408,6.0721469,0,0,-1005.8242,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9016042,63.42,7.74,-9,-9,10,1,1,0,0,0,5,2,0,151,19281.371,170283.88,0,0,0,0,1924.1364 +10621,12958,23119,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-985.34991,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5354438,0,44.12,42.96,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,286,108985.71,0,0,0,0,0,483.01376 +10622,12959,23120,-9,23124,23121,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1006.6988,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23121,23124,-9,-9,1,1,47,0,4,0,1,1,-9,0,3,8.9830856,9.0164585,0,21,5,66.174431,0,2,-9,2021,11,0,39,38,1,0,0,21.755751,21.755751,.05,.05,0,0,0,0,0,0,1,1,0,4.4306417,0,44.41,56.75,45.81,61.51,6.666666666666667,1,1,0,0,9,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23122,-9,23124,23121,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1151.1868,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23123,-9,23124,23121,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.0394,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23124,23121,-9,-9,1,0,42,0,4,0,2,2,-9,0,5,6.6896496,6.7613358,0,21,-5,-126.32593,0,3,2,2021,5,0,15,20,1,0,0,5.8013201,5.8013201,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,44.41,56.75,8.333333333333334,1,1,0,0,2,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23125,-9,23124,23121,1,0,13,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1078.738,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10623,12960,23126,23128,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.0811329,7.9403744,0,20,-3,16.158817,0,3,2,2021,9,1,37,37,1,1,0,10.379803,10.379803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.74,22.74,58.14,48.07,5,1,1,0,0,12,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10623,12960,23127,-9,23128,23126,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1018.5827,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10623,12960,23128,23126,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.1984158,7.2940493,0,10,3,8.5130816,0,-9,-9,2021,7,0,15,15,1,0,0,9.0736599,9.0736599,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.14,48.07,58.74,22.74,10,1,1,0,0,12,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10624,12961,23129,-9,23130,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.3787,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10624,12961,23130,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,2,0,4.2658949,4.3371086,0,0,-943.42017,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.0134778,0,48.59,42.76,-9,-9,5,1,1,1,0,4,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10624,12961,23131,-9,23130,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.91473,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10625,12962,23132,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.0105,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,2.2909887,0,0,1,1,0,0,0,54.86,32.7,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,409,35495.418,0,0,0,0,0,-17.747496 +10625,12963,23133,-9,23132,-9,1,0,40,0,0,0,2,2,-9,0,3,7.2604108,6.9683509,0,0,0,-874.48486,0,3,-9,2021,21,8,10,25,1,8,0,15.769119,15.769119,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,1.666666666666667,1,1,0,1,5,7,3,0,220,34468.84,0,0,0,0,0,-162.10332 +10626,12964,23134,23135,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.4276581,6.5043278,0,9,1,-19.743385,-9,-9,-9,2021,13,2,50,0,1,2,0,1.6228951,1.6228951,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,44.66,57.83,8.333333333333334,1,1,0,0,12,8,3,1,877,114769.02,137662,127479.14,89582.594,8722.5439,0,1771.3069 +10626,12964,23135,23134,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.2045822,8.126297,0,35,-1,51.471497,0,3,3,2021,18,6,40,40,1,6,0,9.7986898,9.7986898,.05,.05,0,0,0,0,0,14.5,0,0,0,2.4981985,0,44.66,57.83,45.91,59.89,6.666666666666667,1,1,0,0,12,8,3,1,877,114769.02,137662,127479.14,89582.594,8722.5439,0,1771.3069 +10626,12965,23136,-9,23135,23134,1,1,24,0,0,0,2,2,-9,0,3,7.8140111,8.0116873,0,0,0,-1024.5278,0,3,2,2021,20,8,50,50,1,8,1,5.1127563,5.1127563,0,0,0,0,0,0,0,0,0,0,0,0,0,32.93,55.18,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,452,60028.441,0,0,0,0,0,472.12723 +10627,12966,23137,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.935195,7.8382173,0,0,-984.33783,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5727868,8.0306931,57.93,46.29,-9,-9,10,1,1,0,0,0,9,4,1,419,485208.38,124781.91,192455.13,0,0,0,2846.1067 +10628,12967,23138,23139,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0405645,8.7446804,0,8,1,-29.63908,0,-9,-9,2021,8,0,50,60,1,0,0,20.058727,20.058727,.05,.05,0,0,0,0,0,0,1,1,0,2.1353483,0,51.25,50.81,43.71,56.91,8.333333333333334,1,1,0,0,9,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23139,23138,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.5601463,8.7470427,0,8,-1,1.2231035,0,2,-9,2021,10,0,40,46,1,0,0,13.789433,13.789433,.05,.05,0,0,0,0,0,2,1,1,0,1.7546117,0,43.71,56.91,51.25,50.81,6.666666666666667,4,2,0,0,8,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23140,-9,23139,23138,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9707,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23141,-9,23139,23138,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.41876,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10629,12968,23142,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.6975093,6.8391433,0,0,-1047.3959,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6195593,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1389,73937.633,193407.78,0,0,0,0,1396.0415 +10630,12969,23143,23144,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4854383,8.1516485,0,20,4,-25.728178,-9,2,2,2021,9,0,40,0,1,1,0,10.512355,10.512355,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,51,54,8,1,1,0,0,9,9,4,1,927.5,1270384.5,192513.66,860507,0,0,0,2561.4761 +10630,12969,23144,23143,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.764461,7.7296386,0,22,-4,-34.903,-9,-9,2,2021,10,0,37,0,1,1,0,5.6881323,5.6881323,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,53,54,8,1,1,0,0,2,9,4,1,927.5,1270384.5,192513.66,860507,0,0,0,2561.4761 +10630,12970,23145,-9,23144,23143,1,0,20,0,0,0,2,2,-9,0,4,7.1187458,7.0772576,0,0,0,-1024.0659,0,2,2,2021,12,2,42,34,1,2,1,4.9377508,4.9377508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,1641,171689.95,-44803.695,0,0,0,0,646.23413 +10631,12971,23146,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8116007,8.6842384,0,0,0,-1015.5867,0,1,1,2021,5,0,43,41,1,0,0,19.277618,19.277618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.13,48.04,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,1024,184847.19,-79275.68,146836.03,96433.93,7427.9717,0,1667.5381 +10632,12972,23147,23148,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3879623,7.4537897,51,3,9.2451591,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0897398,7.5170927,64.07000000000001,47.52,60.12,54.8,10,1,1,0,0,5,7,3,1,1595,275565.28,39114.156,681997.25,433559.56,0,0,2428.771 +10632,12972,23148,23147,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.0904174,5.9581389,51,-3,-45.316109,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9616971,60.12,54.8,64.07000000000001,47.52,10,1,1,0,0,7,7,3,1,1595,275565.28,39114.156,681997.25,433559.56,0,0,2428.771 +10633,12973,23149,23150,-9,-9,1,1,50,1,0,0,2,2,-9,0,5,8.9971323,9.1620998,0,9,-2,-136.32108,0,2,3,2021,11,0,57,53,1,0,0,17.11891,17.11891,.05,.05,.05,0,0,0,0,0,1,1,0,6.7191806,0,41.6,60.78,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10633,12973,23150,23149,-9,-9,1,0,52,1,0,0,2,2,-9,0,4,6.3944664,6.3754153,0,9,2,78.611931,0,2,-9,2021,7,0,45,0,1,0,0,1.2148359,1.2148359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.6,60.78,6.666666666666667,1,1,0,0,10,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10633,12973,23151,-9,23150,23149,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1135.9843,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10634,12974,23152,23153,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,60,-1,19.980457,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1674409,0,0,1,1,0,4.2918601,0,43.85,31.58,56,51,8.333333333333334,1,1,0,0,3,7,2,1,1535.5,1341078.3,0,869916.81,0,2788.0613,0,1243.1705 +10634,12974,23153,23152,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.8133817,6.4355402,60,1,-22.620628,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1863718,6.3916783,56,51,43.85,31.58,10,1,1,0,0,0,7,2,1,1535.5,1341078.3,0,869916.81,0,2788.0613,0,1243.1705 +10635,12975,23154,23155,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.1360865,8.2068157,44,5,49.424431,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6651449,8.0953703,59.14,52.5,36.37,40.24,1.666666666666667,1,1,0,0,8,12,3,1,754.5,558782.13,0,453042.22,0,0,0,2936.5105 +10635,12975,23155,23154,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.881278,6.6603804,44,-5,-130.86655,0,2,2,2021,21,10,0,0,4,10,0,0,0,0,0,0,1,0,1.1442226,0,0,1,1,0,0,6.7300272,36.37,40.24,59.14,52.5,3.333333333333333,1,1,0,0,4,12,3,1,754.5,558782.13,0,453042.22,0,0,0,2936.5105 +10636,12976,23156,23157,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.7935853,6.4805579,8,0,-23.476965,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7322702,6.6001182,43.1,23.61,48.28,60.18,5,1,1,0,0,0,12,2,1,301.5,508884.63,249012.53,59593.922,0,0,0,1928.3003 +10636,12976,23157,23156,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.3958421,6.6731234,8,0,-1.4958168,0,3,2,2021,12,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6126056,48.28,60.18,43.1,23.61,8.333333333333334,1,1,0,0,9,12,2,1,301.5,508884.63,249012.53,59593.922,0,0,0,1928.3003 +10637,12977,23158,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.1609879,7.2021952,0,0,-997.04803,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0604854,7.4484653,59.88,45.34,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,701,496605.16,54633.57,174196.56,0,0,3514.709,1582.8704 +10638,12978,23159,-9,23160,23161,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.8263,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23160,23161,-9,-9,1,0,29,0,3,0,2,2,-9,0,1,6.894804,6.9363751,0,11,-11,-78.254013,0,2,1,2021,22,9,16,12,1,9,0,10.23333,10.23333,.05,.05,0,0,0,0,.24056239,0,1,1,0,0,0,45.17,12.09,38.57,54.11,5,1,1,0,0,6,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23161,23160,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.7267666,8.40693,0,11,11,-15.54575,0,2,3,2021,17,5,38,37,1,5,0,14.271869,14.271869,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,54.11,45.17,12.09,1.666666666666667,1,1,0,0,7,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23162,-9,23160,23161,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.64368,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23163,-9,23160,23161,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.71466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10639,12979,23164,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,6.8905616,7.1921759,0,0,-943.10504,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0641146,60.42,45.07,-9,-9,10,1,1,0,0,0,13,2,1,1877,150349.95,-18971.412,116426.73,0,0,0,1464.0994 +10640,12980,23165,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.8825569,7.0798073,0,0,-1057.5447,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3410392,7.4052439,60.06,37.11,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,613,220648.7,253380.59,55065.289,0,0,1623.9661,1045.8544 +10641,12981,23166,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0917807,8.162034,0,0,0,-1006.6592,0,3,2,2021,19,7,45,45,1,7,0,9.700079,9.700079,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.64,62.88,-9,-9,3.333333333333333,1,1,0,0,14,2,4,1,769,78425.711,168339.34,0,0,0,0,1375.0223 +10642,12982,23167,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,5.6279116,5.9761515,4.6142621,0,0,-1075.8947,0,3,3,2021,6,0,7,3,1,0,0,4.7500234,4.7500234,0,0,0,1,0,0,0,0,1,1,0,0,4.6475105,60.69,50.51,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,298,32844.703,0,58312.004,0,2866.8867,0,891.96637 +10642,12983,23168,-9,23167,-9,1,1,37,0,0,0,3,3,-9,0,2,7.9700942,8.2061367,0,0,0,-1069.762,0,3,3,2021,24,9,40,43,1,9,0,7.0301409,7.0301409,0,0,0,0,0,0,0,0,1,1,0,0,0,44.07,33.03,-9,-9,5,1,1,0,0,10,2,4,1,513,275280.72,0,0,0,0,0,1927.54 +10642,12984,23169,-9,23167,-9,1,1,39,0,0,0,2,2,-9,0,5,7.7030835,7.3938589,0,0,0,-979.37537,0,3,-9,2021,6,0,41,41,1,0,0,7.7782288,7.7782288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,2,3,1,227,86532.664,104559.66,0,0,0,0,1121.1991 +10643,12985,23170,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,6.7674704,7.0521665,0,0,-1119.7062,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,13.264579,0,119.33356,0,1,1,0,7.0537701,0,36.98,29.84,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,661,366434.22,8431.3594,218003.72,0,0,0,798.94263 +10644,12986,23171,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,8.1806221,8.637044,0,0,-1022.8708,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,4.8930058,0,23.672457,0,1,1,0,2.7617044,8.2726936,56.95,22.67,-9,-9,3.333333333333333,1,1,0,0,0,2,5,1,398,1356291.8,737148.63,201466.92,0,0,0,2954.4746 +10645,12987,23172,23173,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.2740993,8.1066637,57,3,64.640671,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.66187,8.0658112,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,565.5,919703.63,414832.56,398842.38,0,0,0,2752.262 +10645,12987,23173,23172,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,-3,84.959641,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3235719,0,57.16,56.15,56.58,49.75,10,1,1,0,0,0,10,3,1,565.5,919703.63,414832.56,398842.38,0,0,0,2752.262 +10646,12988,23174,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,4.8710642,5.3653569,0,0,-980.36047,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0075717,55.81,36.7,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,608,114538.21,0,193068.28,0,0,0,1231.1674 +10647,12989,23175,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7298412,8.6437464,6.4459295,0,0,-1016.5937,0,3,3,2021,8,0,38,38,1,0,0,19.028473,19.028473,.05,.05,0,0,0,0,0,0,1,1,0,3.4685285,7.1826243,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,311,1471614.9,516405.03,652693.31,0,0,0,2146.6897 +10648,12990,23176,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0197191,8.6756763,0,3,-17,41.129261,0,1,2,2021,9,1,40,35,1,1,0,21.888969,21.888969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,53,55,8.333333333333334,4,2,0,0,7,8,5,1,259,253176.89,-40501.574,462444.03,297920.28,0,0,3023.0735 +10649,12991,23177,23178,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9006033,8.957243,0,30,2,3.5376575,0,2,2,2021,9,0,42,44,1,1,0,17.170996,17.170996,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,54,41.17,59.31,8,1,1,0,0,9,1,5,1,711,3197216.3,1908718.4,337854.41,189817.25,7106.8203,0,4704.6265 +10649,12991,23178,23177,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.1128826,8.745573,0,30,-2,-3.5225172,0,2,1,2021,6,0,50,50,1,0,0,18.307974,18.307974,0,0,.05,0,0,0,0,0,0,0,0,0,0,41.17,59.31,54,54,8.333333333333334,1,1,0,0,9,1,5,1,711,3197216.3,1908718.4,337854.41,189817.25,7106.8203,0,4704.6265 +10649,12992,23179,-9,23178,23177,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1102.1227,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,861,156217.25,0,0,0,0,0,-340.24753 +10649,12993,23180,-9,23178,23177,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-981.47528,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,7,1,1,1,636,-212999.44,0,0,0,0,0,0 +10650,12994,23181,23182,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,8.3500128,8.1270485,0,48,-2,-1.5129189,0,-9,-9,2021,8,0,30,30,1,0,0,16.137789,16.137789,0,0,0,0,0,0,0,0,1,1,0,4.2728844,0,54,52.35,59.3,44.82,10,1,1,0,0,13,7,5,1,893,1782924.9,1294288.1,386906.56,0,0,0,5930.0283 +10650,12994,23182,23181,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.8600712,8.5596924,7.7842731,48,2,-87.493454,0,-9,-9,2021,7,0,35,24,1,0,0,8.0623159,8.0623159,0,0,0,0,0,0,0,0,1,1,0,6.1320066,7.6078815,59.3,44.82,54,52.35,6.666666666666667,1,1,0,0,13,7,5,1,893,1782924.9,1294288.1,386906.56,0,0,0,5930.0283 +10651,12995,23183,23184,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7863894,9.1796198,7.7975202,30,7,14.400201,0,2,2,2021,8,0,35,40,1,0,0,27.43585,27.43585,.05,.05,0,0,0,0,0,0,0,0,0,4.0995932,7.876677,57.9,51.84,60.12,54.8,8.333333333333334,1,1,0,0,8,9,5,1,521,1415332.8,971907.75,507212.13,0,13995.4,0,4945.6113 +10651,12995,23184,23183,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,30,-7,24.728321,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4690199,0,60.12,54.8,57.9,51.84,8.333333333333334,2,3,0,0,0,9,5,1,521,1415332.8,971907.75,507212.13,0,13995.4,0,4945.6113 +10652,12996,23185,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.3296604,7.8087864,7.9572382,0,0,-921.93073,-9,2,3,2021,13,1,8,0,1,1,0,6.2025156,6.2025156,.05,.05,0,0,0,0,0,0,0,0,0,4.6113377,7.528975,36.37,57.89,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,549,105889.84,185803.16,0,0,0,0,1185.0724 +10653,12997,23186,-9,-9,23187,1,1,36,0,0,0,2,2,-9,0,3,8.173296,8.4421282,0,0,0,-967.67395,0,3,3,2021,13,2,60,40,1,2,1,7.9376564,7.9376564,.05,.05,0,0,0,0,0,0,0,0,0,6.6299253,0,52.49,46.24,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1319,157416.22,18128.988,0,0,0,0,2442.5317 +10653,12998,23187,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5416536,8.6276875,0,0,0,-843.2049,0,-9,-9,2021,10,0,60,60,1,1,0,7.1337628,7.1337628,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,48,-9,-9,7,4,6,0,0,1,7,4,1,495,449285.16,412594.19,0,0,0,0,1875.0885 +10654,12999,23188,23189,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.1342506,8.3275232,0,4,6,-50.902508,0,-9,-9,2021,11,0,40,0,1,0,0,9.7870092,9.7870092,0,0,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,44.06,25.93,8.333333333333334,1,1,0,0,6,11,4,1,936,84238.625,0,0,0,0,1238.6842,1267.2527 +10654,12999,23189,23188,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,4,-6,-101.51871,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,25.93,57.06,57.76,8.333333333333334,1,1,0,0,2,11,4,1,936,84238.625,0,0,0,0,1238.6842,1267.2527 +10655,13000,23190,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.6855435,6.6242495,0,0,-1113.5037,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,14.045248,0,131.89032,0,1,1,0,3.1882041,6.3895354,37.39,24.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,117,329393.88,-72486.93,108853.46,0,0,0,1833.2411 +10656,13001,23191,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1129.0846,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.09,57.9,-9,-9,10,3,4,0,0,0,8,1,0,609,-161481.44,0,0,0,0,0,1412.9163 +10657,13002,23192,23193,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.190073,8.4610815,0,5,2,-37.643753,-9,-9,-9,2021,12,0,37,0,1,2,0,12.014205,12.014205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,37.51,46.26,7,1,1,0,0,1,10,5,0,1697.5,-9232.3975,48529.781,0,0,6542.627,0,3658.9824 +10657,13002,23193,23192,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5336475,8.602088,0,5,-2,-29.130289,0,1,1,2021,11,0,38,40,1,0,0,17.271866,17.271866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.51,46.26,46,58,6.666666666666667,1,1,0,0,10,10,5,0,1697.5,-9232.3975,48529.781,0,0,6542.627,0,3658.9824 +10658,13003,23194,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.070632,5.6963816,0,0,-1034.2352,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5686264,50,47,-9,-9,7,3,4,0,0,0,8,2,1,370,-132155.55,-76502.828,0,0,0,0,1357.7341 +10659,13004,23195,23196,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,51,1,0,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,26.537981,43.373268,278.34479,0,1,1,0,0,0,30.26,18.9,39.51,31.83,10,2,3,0,0,0,6,2,1,611.5,228877.73,68995.625,87804.719,0,0,0,1207.6881 +10659,13004,23196,23195,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,51,-1,0,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,127.9759,0,0,1,1,0,0,0,39.51,31.83,30.26,18.9,8.333333333333334,2,3,0,0,0,6,2,1,611.5,228877.73,68995.625,87804.719,0,0,0,1207.6881 +10659,13005,23197,23198,23196,23195,1,1,46,0,0,0,1,1,-9,0,5,7.8290734,7.6550994,0,6,8,-12.827242,0,3,3,2021,9,1,30,40,1,1,0,8.4395866,8.4395866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,55.19,31.48,46.69,10,2,3,0,0,15,6,4,1,667.5,968138.63,558008,352112.69,0,6303.4619,0,3496.5562 +10659,13005,23198,23197,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3673277,8.2988605,0,6,-8,-99.212173,0,-9,-9,2021,11,4,35,0,1,4,0,15.4671,15.4671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.48,46.69,42.36,55.19,10,2,3,0,0,14,6,4,1,667.5,968138.63,558008,352112.69,0,6303.4619,0,3496.5562 +10659,13006,23199,-9,23196,23195,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.03033,0,3,3,2021,10,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.22,57.51,-9,-9,10,2,3,0,0,10,6,2,1,302,72005.188,0,0,0,0,0,-1765.7039 +10659,13007,23200,-9,23196,23195,1,0,37,0,0,0,2,2,-9,0,5,8.331068,8.1270294,0,0,0,-983.25098,0,3,3,2021,8,1,65,35,1,1,0,7.91923,7.91923,.05,.05,0,0,0,0,0,2,1,1,0,1.9795011,0,54.69,57.47,-9,-9,10,2,3,0,0,15,6,5,1,434,308123.19,311897.56,100582.5,21473.031,0,0,1566.2263 +10660,13008,23201,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,1,8.0305862,8.1471472,0,0,0,-1011.3482,0,2,3,2021,26,10,37,37,1,10,0,8.8619871,8.8619871,0,0,0,0,0,0,0,27,1,1,0,4.4031391,0,33.96,47.24,-9,-9,1.666666666666667,1,1,0,0,11,5,4,1,762,350806.44,0,131504.08,74844.031,0,478.63342,1930.2406 +10661,13009,23202,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.3952804,5.9979391,0,0,-976.45697,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,6.8019419,0,47.15,26.85,-9,-9,5,1,1,1,1,6,9,2,0,2121,-160399.34,147977.19,0,0,0,0,1166.3416 +10662,13010,23203,-9,23204,23205,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.5743,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10662,13010,23204,23205,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6688414,8.5938902,0,12,3,-126.38805,0,1,2,2021,7,0,50,43,1,0,0,13.036745,13.036745,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.23,47.51,5,1,1,0,0,13,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10662,13010,23205,23204,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,8.6475821,8.6570625,0,12,-3,-77.990562,0,-9,-9,2021,11,0,53,46,1,0,0,9.6051035,9.6051035,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10663,13011,23206,-9,23208,23207,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.65588,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23207,23208,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.8206072,8.4328566,0,15,-6,-4.4505072,0,2,3,2021,20,8,40,40,1,8,0,18.446459,18.446459,.05,.05,0,0,0,0,0,86,1,1,0,.70389676,0,20.17,66.48999999999999,65.28,24.3,6.666666666666667,1,1,0,0,11,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23208,23207,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.1309423,8.855526,0,15,6,6.1263876,0,2,3,2021,12,0,40,40,1,0,0,20.7514,20.7514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.28,24.3,20.17,66.48999999999999,8.333333333333334,1,1,0,0,11,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23209,-9,23208,23207,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.7048,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10664,13012,23210,23212,-9,-9,1,1,50,0,3,0,1,1,-9,0,3,8.6847363,8.7306366,0,11,16,-36.875687,0,2,2,2021,7,0,36,36,1,0,0,15.855617,15.855617,.05,.05,0,0,0,0,0,0,1,1,0,2.7501805,0,51.61,50.58,40.48,60.05,8.333333333333334,1,1,0,0,13,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23211,-9,23212,23210,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.6036,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23212,23210,-9,-9,1,0,34,0,3,0,2,2,-9,1,4,0,0,0,11,-16,-72.369576,0,2,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,51.61,50.58,8.333333333333334,1,1,0,0,2,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23213,-9,23212,23210,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1120.3241,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23214,-9,23212,23210,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.3934,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10665,13013,23215,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.4908266,6.4396958,0,0,-988.52057,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,8.4859829,0,0,1,1,0,0,6.4100885,64.55,36.47,-9,-9,10,1,1,0,0,0,8,2,0,310,383967.66,39510.105,317693.66,0,0,0,1514.5345 +10666,13014,23216,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.9977207,5.7458072,0,0,-939.13281,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.3685617,70.67894,62.299076,0,1,1,0,0,5.5117698,52,45,-9,-9,8,2,3,0,0,0,6,2,1,699,260805.27,-24526.457,68842.156,0,0,0,1328.0811 +10666,13015,23217,-9,23216,-9,1,0,61,0,0,0,1,1,-9,0,2,2.777421,7.9075313,7.9955273,0,0,-1148.1281,0,3,-9,2021,19,7,6,6,1,7,0,.28761995,.28761995,0,0,0,0,0,0,0,74.5,1,1,0,2.4226332,7.5322652,33.31,51.41,-9,-9,3.333333333333333,2,3,0,0,12,6,3,1,433,786841.06,266116.66,226003.94,0,0,0,655.15479 +10667,13016,23218,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.3389111,8.7657537,0,1,-3,-269.80426,0,2,1,2021,14,2,47,39,1,2,0,22.886562,22.886562,.05,.05,.05,0,0,0,0,0,0,0,0,2.932339,0,42.95,61.24,49,57,6.666666666666667,1,1,0,0,10,8,5,1,931,285319.41,395665.06,0,0,0,0,3625.0076 +10668,13017,23219,-9,23220,23221,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.3892,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23220,23221,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.472003,8.6335087,0,6,-1,6.5342498,0,-9,-9,2021,4,0,46,36,1,0,0,10.613212,10.613212,0,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.76,54.51,5,2,3,0,0,6,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23221,23220,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,7.9862919,8.1928244,0,6,1,37.507385,0,2,1,2021,0,0,41,37,1,0,0,10.606777,10.606777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,57.63,56.14,10,2,3,0,0,7,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23222,-9,23220,23221,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.3213,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10669,13018,23223,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,7.2790251,7.6968188,5.6358514,0,0,-1027.0891,0,2,-9,2021,9,1,30,-9,1,1,0,6.5433207,6.5433207,0,0,0,0,0,0,0,0,1,1,0,4.7981567,0,46.01,47.47,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,2293,-159901.56,0,0,0,0,0,869.05396 +10669,13018,23224,-9,23223,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0134,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,2293,-159901.56,0,0,0,0,0,869.05396 +10670,13019,23225,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.4897928,8.3502989,5.7215085,0,0,-861.67261,0,3,3,2021,6,0,48,50,1,0,0,11.504385,11.504385,.05,.05,0,0,0,0,0,0,1,1,0,5.8776755,6.0627394,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,1260,300544.78,133422.2,184150.92,0,0,0,2293.458 +10671,13020,23226,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,1,7.4575162,7.2105498,0,0,0,-1009.2173,0,3,2,2021,31,12,37,30,1,12,0,6.6500587,6.6500587,0,0,0,0,0,0,0,0,0,0,0,0,0,35,27,-9,-9,3.333333333333333,2,3,0,1,10,6,3,1,1389,64022.031,37217.93,0,0,0,0,630.40106 +10671,13021,23227,-9,23226,-9,1,1,24,0,0,0,1,1,-9,0,2,7.7964258,7.9418955,0,0,0,-1071.0023,0,3,-9,2021,8,0,40,0,1,0,1,7.8450341,7.8450341,0,0,0,0,0,0,0,0,0,0,0,0,0,45.34,43.11,-9,-9,5,2,3,0,1,4,6,4,1,388,-68823.93,0,0,0,0,0,703.71838 +10672,13022,23228,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-896.1485,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,25.291853,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,7,1,0,594,-4510.689,0,0,0,0,0,1061.375 +10672,13023,23229,-9,23228,-9,1,1,52,0,0,0,3,3,-9,1,4,0,0,0,0,0,-923.44897,0,3,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2677708,0,53,55,-9,-9,8,1,1,0,0,0,7,1,0,324,129175.31,0,0,0,0,0,686.03857 +10672,13024,23230,-9,23228,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1038.3286,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.711678,0,50,55,-9,-9,8,1,1,1,0,1,7,1,0,630,10002.943,0,0,0,0,0,808.06354 +10673,13025,23231,-9,23233,23232,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.3858,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23232,23233,-9,-9,1,1,29,1,3,0,2,2,-9,0,4,8.7999296,9.0301361,0,6,-1,33.654942,0,2,1,2021,9,0,49,42,1,0,0,14.620603,14.620603,.05,.05,0,0,0,0,0,0,1,1,0,5.3115067,0,57.16,56.15,54.74,57.22,5,1,1,0,0,8,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23233,23232,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,6.8620672,6.6712098,0,6,1,60.507057,0,2,2,2021,12,0,12,20,1,0,0,8.4398584,8.4398584,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23234,-9,23233,23232,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-874.90015,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23235,-9,23233,23232,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.285,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10674,13026,23236,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.7157726,7.9428868,0,0,0,-1029.1255,0,-9,-9,2021,9,0,37,36,1,0,0,8.1720476,8.1720476,0,0,0,0,0,0,0,0,1,1,0,3.5307767,0,42.75,36.17,-9,-9,5,1,1,0,0,7,7,3,1,394,227193.53,-29729.133,224543.7,51645.957,0,0,1290.8047 +10675,13027,23237,-9,23238,23240,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.97675,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23238,23240,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.7320271,7.5915756,0,11,0,12.360401,0,3,3,2021,10,0,19,19,1,0,0,19.021824,19.021824,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,8,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23239,-9,23238,23240,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.96466,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23240,23238,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,8.7356768,8.5906935,0,11,0,106.71928,0,2,2,2021,6,0,56,43,1,0,0,7.7006083,7.7006083,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,10,1,1,0,0,8,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10676,13028,23241,23242,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.9677029,9.0635118,0,5,4,-21.522322,0,2,2,2021,7,0,38,39,1,0,0,26.952381,26.952381,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,55.76,52.64,8.333333333333334,1,1,0,0,12,9,5,1,261.5,100315.12,6028.9756,259157.5,313781.19,0,0,4789.2988 +10676,13028,23242,23241,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5330667,8.4293728,0,5,-4,27.638636,0,-9,-9,2021,6,0,35,39,1,0,0,18.46884,18.46884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,58.15,52.91,8.333333333333334,4,2,0,0,5,9,5,1,261.5,100315.12,6028.9756,259157.5,313781.19,0,0,4789.2988 +10677,13029,23243,23244,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.8048453,8.0140572,0,2,-1,39.439602,-9,-9,-9,2021,16,4,39,0,1,4,0,9.5455322,9.5455322,0,0,0,0,0,0,0,2,0,0,0,0,0,36.2,64.19,52,54.51,8.333333333333334,1,1,0,0,10,2,4,1,1272.5,266334.41,74439.539,141277.69,-4566.1172,0,-365.09772,2376.5154 +10677,13029,23244,23243,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.7398062,8.0678959,0,2,1,23.398998,0,2,2,2021,12,0,37,37,1,0,0,9.0452347,9.0452347,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52,54.51,36.2,64.19,5,1,1,0,0,8,2,4,1,1272.5,266334.41,74439.539,141277.69,-4566.1172,0,-365.09772,2376.5154 +10678,13030,23245,-9,23246,23247,1,0,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1023.4681,-9,3,3,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,0,0,0,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10678,13030,23246,23247,-9,-9,1,0,42,0,1,0,3,3,-9,1,3,0,0,0,11,-5,-122.01804,0,-9,-9,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.23,53.47,54.6,29.12,5,1,1,0,0,0,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10678,13030,23247,23246,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,7.9993467,8.0380077,0,11,5,28.889978,-9,-9,-9,2021,16,6,40,0,1,6,0,8.8515244,8.8515244,0,0,0,0,0,0,0,0,1,1,0,0,0,54.6,29.12,60.23,53.47,10,1,1,0,0,12,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10679,13031,23248,23250,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.2267733,8.3759041,0,5,0,-42.95274,0,-9,-9,2021,10,0,40,40,1,1,0,9.8468752,9.8468752,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,45.91,59.89,7,2,3,0,0,1,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23249,-9,23250,23248,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.20789,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23250,23248,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.562098,7.3563757,0,5,0,98.302879,0,-9,-9,2021,14,1,25,25,1,1,0,9.7719965,9.7719965,0,0,0,0,0,0,0,2,1,1,0,0,0,45.91,59.89,51,57,5,2,3,0,0,9,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23251,-9,23250,23248,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.12091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10680,13032,23252,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1059.0698,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.5,37.38,-9,-9,10,1,1,0,0,0,9,1,1,186,258178.23,0,182166.75,0,0,0,705.98511 +10681,13033,23253,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,6.6353931,6.3051991,0,0,-969.17767,-9,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5654116,6.1077552,54,46,-9,-9,8,2,3,0,0,0,8,2,0,94,1504005.5,0,838847.81,0,0,0,1650.2698 +10681,13034,23254,23255,-9,23253,1,1,50,0,0,0,2,2,-9,0,4,9.586544,9.3329468,0,23,11,93.744179,-9,1,1,2021,9,0,40,0,1,1,0,39.595253,39.595253,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,40.87,44.58,8,2,3,0,0,1,8,5,0,665.5,827928.5,580704.75,0,0,-1838.4365,0,5650.9868 +10681,13034,23255,23254,-9,-9,1,0,39,0,0,0,3,3,-9,0,3,7.5494146,7.7295747,0,23,-11,9.4770203,0,2,2,2021,9,0,30,30,1,0,0,7.9968247,7.9968247,0,0,0,0,0,0,0,0,1,1,0,3.0136397,0,40.87,44.58,52,55,3.333333333333333,2,3,0,0,11,8,5,0,665.5,827928.5,580704.75,0,0,-1838.4365,0,5650.9868 +10682,13035,23256,23257,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-1,-64.58506,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.746877,0,51,46,44.71,33.6,7,1,1,0,0,0,7,2,1,1003,148063.27,110393.42,0,0,0,0,1706.7915 +10682,13035,23257,23256,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2464151,6.4695649,56,1,49.09639,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.2957034,6.1249166,44.71,33.6,51,46,3.333333333333333,1,1,0,0,0,7,2,1,1003,148063.27,110393.42,0,0,0,0,1706.7915 +10683,13036,23258,23259,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8693128,7.8056388,0,39,0,50.599514,0,3,3,2021,9,0,20,20,1,0,0,17.863586,17.863586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,37.76,62.64,10,1,1,0,0,8,7,5,1,1060,1544141.9,543425,699282.38,0,0,0,3477.1489 +10683,13036,23259,23258,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.5491667,8.3104362,5.3973837,39,0,65.036423,0,3,3,2021,14,2,57,50,1,2,0,9.4889984,9.4889984,.05,.05,0,0,0,0,0,0,0,0,0,5.7056522,5.8400927,37.76,62.64,58.32,50.22,5,1,1,0,0,10,7,5,1,1060,1544141.9,543425,699282.38,0,0,0,3477.1489 +10683,13037,23260,-9,23258,23259,1,0,33,0,0,0,2,2,-9,0,2,7.8115411,8.0852909,0,0,0,-1060.7617,0,2,2,2021,11,1,40,45,1,1,1,6.5615864,6.5615864,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.87,57.15,-9,-9,5,1,1,0,0,10,7,3,1,732,-115615.09,45118.352,0,0,0,0,1229.329 +10684,13038,23261,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.209651,8.2392302,0,0,0,-911.66559,0,3,3,2021,18,6,40,37,1,6,0,13.075045,13.075045,0,0,0,0,0,0,0,0,1,1,0,0,0,37.01,50.93,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,1043,614626.69,122674.6,315140.25,0,0,0,1938.1553 +10685,13039,23262,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.3948889,8.7523937,6.9596601,0,0,-1026.23,0,2,2,2021,6,0,35,29,1,0,0,14.066548,14.066548,.05,.05,0,0,0,0,0,0,1,1,0,5.7119298,6.31883,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,1,5,1,103,-92045.625,39051.727,0,0,0,0,2049.3879 +10686,13040,23263,23264,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.470428,6.3018594,3,-2,-62.75098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.894115,6.3195543,57.16,56.15,53.96,50.73,8.333333333333334,1,1,0,0,0,7,2,1,3083.5,527294.56,249709.33,278491.19,0,0,0,1612.1747 +10686,13040,23264,23263,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.9120154,6.5350838,3,2,117.84073,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4426651,6.8792634,53.96,50.73,57.16,56.15,8.333333333333334,1,1,0,0,8,7,2,1,3083.5,527294.56,249709.33,278491.19,0,0,0,1612.1747 +10687,13041,23265,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.0180826,7.813633,0,0,0,-975.24677,0,2,3,2021,6,0,40,40,1,0,0,8.5433731,8.5433731,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,9,7,4,1,2208,672680.56,579427.13,0,0,0,0,1407.5363 +10688,13042,23266,-9,23267,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.8732,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,618.5,129319.94,-28554.277,0,0,0,0,3760.5474 +10688,13042,23267,-9,-9,-9,1,0,32,0,1,0,1,1,-9,1,5,7.0923543,7.0521178,0,0,0,-1021.5051,0,1,1,2021,5,0,10,25,1,0,0,20.340214,20.340214,.05,.05,0,0,0,0,0,116,1,1,0,8.5138531,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,8,2,1,618.5,129319.94,-28554.277,0,0,0,0,3760.5474 +10688,13043,23268,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1008.974,-9,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,1,0,0,8,1,1,1482,30810.043,0,0,0,0,0,252.88721 +10689,13044,23269,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7756519,8.4341593,0,0,0,-1080.2806,0,3,-9,2021,6,2,40,44,1,2,1,20.022152,20.022152,0,0,0,0,0,0,0,74.5,1,1,0,0,0,53.61,59.13,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,758,-145337.34,0,0,0,0,0,2562.02 +10690,13045,23270,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.9830375,4.8565388,0,0,-1035.4659,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4623194,4.9422998,53.12,37.6,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,319,142936.78,0,0,0,0,0,1161.1067 +10691,13046,23271,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1150.0933,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,24.97,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,675,0,0,0,0,0,0,1823.1842 +10692,13047,23272,23273,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.7521772,6.5868096,0,30,1,27.382774,0,2,2,2021,9,0,8,0,1,0,0,9.1747093,9.1747093,0,0,0,0,0,0,0,2,0,0,0,0,0,44.66,57.83,45.91,59.89,8.333333333333334,4,2,0,0,12,5,5,1,725,601365.13,430488.81,186064.41,1367.8265,0,-133.70224,3192.0791 +10692,13047,23273,23272,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.1191912,9.1314821,0,30,-1,-76.361244,0,-9,-9,2021,11,1,42,40,1,1,0,24.699738,24.699738,.05,.05,0,0,0,0,0,7,0,0,0,0,0,45.91,59.89,44.66,57.83,6.666666666666667,1,1,0,0,13,5,5,1,725,601365.13,430488.81,186064.41,1367.8265,0,-133.70224,3192.0791 +10693,13048,23274,-9,23276,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3232,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10693,13048,23275,-9,23276,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.49329,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10693,13048,23276,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,7.4134507,7.3173609,0,0,-833.34515,1,3,2,2021,8,0,0,23,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1533508,0,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10694,13049,23277,23279,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.2378645,8.170619,0,9,14,-51.709824,0,3,3,2021,12,0,42,42,1,0,0,10.815203,10.815203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,43.2,59.97,6.666666666666667,1,1,0,0,12,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23278,-9,23279,23277,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0552,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23279,23277,-9,-9,1,0,31,0,2,0,1,1,1,0,4,7.2336421,7.5065274,0,9,-14,-9.3435545,-9,3,2,2021,11,0,18,0,1,0,0,12.516071,12.516071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,48.45,57.49,6.666666666666667,1,1,0,0,6,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23280,-9,23279,23277,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.27631,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10695,13050,23281,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,0,0,0,31,1,-7.1268363,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.86,52.34,8.333333333333334,1,1,0,0,9,10,2,1,2403,10481.713,0,0,0,0,0,0 +10695,13051,23282,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,7.1235037,6.7878919,31,-1,68.725357,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.8267889,0,53.86,52.34,57.33,53.46,8.333333333333334,1,1,0,0,9,10,2,1,1137,614710.69,369116.41,324962.19,0,0,0,3589.8206 +10696,13052,23283,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,6.8151894,6.5108547,0,0,0,-1128.173,0,2,2,2021,1,0,6,8,1,0,0,15.980546,15.980546,0,0,0,0,0,0,0,0,1,1,0,7.2097683,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,7,8,2,0,249,78219.164,0,0,0,0,0,2583.8413 +10697,13053,23284,23285,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.3764348,5.9130402,47,-2,-46.528305,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1785626,61.23,51.58,49.52,56.95,8.333333333333334,1,1,0,0,5,1,5,1,1487.5,2534772,1650423.3,527402.38,0,391.14377,0,4893.4131 +10697,13053,23285,23284,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.5614958,8.8029661,47,2,-79.325691,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6695766,49.52,56.95,61.23,51.58,8.333333333333334,1,1,0,0,6,1,5,1,1487.5,2534772,1650423.3,527402.38,0,391.14377,0,4893.4131 +10698,13054,23286,23287,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.7682605,7.6181355,0,4,0,74.404869,0,-9,2,2021,16,4,40,35,1,4,0,6.7802758,6.7802758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,38.34,62.12,3.333333333333333,1,1,0,0,11,1,4,1,335,-32210.719,81196.242,0,0,0,0,1811.0518 +10698,13054,23287,23286,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9175501,8.1042233,0,4,0,-55.693031,0,-9,-9,2021,14,3,38,38,1,3,0,8.5763121,8.5763121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,27.98,63,6.666666666666667,1,1,0,0,6,1,4,1,335,-32210.719,81196.242,0,0,0,0,1811.0518 +10699,13055,23288,23289,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.9671874,7.9042425,44,0,-43.454224,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,6.7539115,7.7516727,58.67,44.65,49.27,56.95,8.333333333333334,1,1,0,0,8,2,4,1,3824,1081568.9,769651.5,246684.09,0,0,0,3222.5342 +10699,13055,23289,23288,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.4960165,8.2512674,8.0716209,11,0,-.38897926,0,2,2,2021,9,1,20,20,1,1,0,3.7741492,3.7741492,.05,.05,0,0,0,0,0,0,0,0,0,4.4666591,7.9677873,49.27,56.95,58.67,44.65,10,1,1,0,0,13,2,4,1,3824,1081568.9,769651.5,246684.09,0,0,0,3222.5342 +10700,13056,23290,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1128.2377,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48,48,-9,-9,7,1,1,0,0,0,13,1,1,1399,71360.359,0,184322.83,0,0,0,615.61884 +10701,13057,23291,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.7389555,6.7488413,0,0,-1049.0145,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.7058506,0,0,1,1,0,6.884562,6.7148743,38.01,26.26,-9,-9,3.333333333333333,1,1,0,0,10,9,2,1,1613,161081.84,203855.81,0,0,0,0,2204.7361 +10702,13058,23292,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1051.6115,0,-9,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.86,30.81,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,340,61946.781,0,0,0,0,0,2104.8052 +10703,13059,23293,23294,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,54,-2,174.19205,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,52.22,53.26,10,1,1,0,0,0,7,3,1,319,399722.91,245158.05,150028.72,0,1768.7729,0,2229.1885 +10703,13059,23294,23293,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8376789,7.5169301,54,2,-50.489037,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3045478,52.22,53.26,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,319,399722.91,245158.05,150028.72,0,1768.7729,0,2229.1885 +10704,13060,23295,-9,-9,-9,1,1,31,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1085.9331,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.21,53.09,-9,-9,5,1,1,0,1,0,11,1,0,1598,-35015.004,0,0,0,0,0,1094.5411 +10705,13061,23296,23297,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6262779,8.8970585,7.3984265,18,2,-40.712482,0,3,2,2021,17,5,39,38,1,5,0,20.845026,20.845026,.05,.05,0,0,0,0,0,0,0,0,0,5.6246648,7.6853991,41.11,60.68,48.19,38.83,10,1,1,0,0,13,2,5,1,1173,721356.63,67270.422,813517.25,189864.22,0,0,5363.5938 +10705,13061,23297,23296,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,9.1559095,8.5396118,0,18,-2,-14.578769,0,2,-9,2021,12,0,38,40,1,0,0,18.892874,18.892874,.05,.05,0,0,0,0,0,0,0,0,0,2.3528218,0,48.19,38.83,41.11,60.68,8.333333333333334,1,1,0,0,13,2,5,1,1173,721356.63,67270.422,813517.25,189864.22,0,0,5363.5938 +10706,13062,23298,23299,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,9,7,0,0,-9,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.39,40.89,40.56,12.97,3.333333333333333,1,1,0,0,0,12,2,0,460.5,-37257.352,0,0,0,0,0,833.7746 +10706,13062,23299,23298,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,9,-7,0,0,3,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,12.97,38.39,40.89,6.666666666666667,1,1,0,1,0,12,2,0,460.5,-37257.352,0,0,0,0,0,833.7746 +10707,13063,23300,-9,23301,23302,1,1,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-1046.9751,-9,2,2,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,52.49,-9,-9,5,1,1,0,0,0,5,1,0,236,0,0,0,0,0,0,0 +10707,13064,23301,23302,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,5,-1,0,0,3,-9,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.91,22.06,58.8,23.08,0,1,1,1,0,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10707,13064,23302,23301,-9,-9,1,1,35,0,2,0,2,2,-9,1,2,0,0,0,5,1,0,0,-9,-9,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.8,23.08,28.91,22.06,1.666666666666667,1,1,0,1,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10707,13064,23303,-9,23301,23302,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.21497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10708,13065,23304,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,6.1760592,5.962357,0,0,-931.04138,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.0776196,64.07000000000001,47.52,-9,-9,10,1,1,0,0,0,2,2,0,267,316425.13,210632.36,172040.31,0,0,0,1255.0929 +10709,13066,23305,23306,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,8.8939962,8.8428822,0,12,7,63.378796,0,3,2,2021,8,0,50,40,1,0,0,19.426086,19.426086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,40.59,62.39,56.71,6.666666666666667,2,3,0,0,13,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10709,13066,23306,23305,-9,-9,1,0,33,0,1,0,1,1,-9,0,5,7.9596062,7.9671803,0,12,-7,8.6767464,0,1,1,2021,11,0,35,25,1,0,0,7.8289986,7.8289986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,58.87,40.59,8.333333333333334,2,3,0,0,7,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10709,13066,23307,-9,23306,23305,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-861.06659,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10710,13067,23308,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.789063,7.8817091,5.4104009,0,0,-989.26733,0,3,3,2021,9,0,35,37,1,0,0,7.2837844,7.2837844,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1414943,49.18,41.13,-9,-9,3.333333333333333,1,1,0,0,6,1,3,1,615,1378.7518,50341.914,0,0,0,0,566.45557 +10710,13068,23309,-9,23308,-9,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1074.7635,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,0,1,1,1,576,0,0,0,0,0,0,2139.5527 +10710,13069,23310,-9,23308,-9,1,1,27,0,0,0,2,2,0,0,2,0,0,0,0,0,-1039.1583,-9,2,3,2021,20,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.7,53.54,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,514,-1721.2729,0,0,0,0,0,0 +10711,13070,23311,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8439345,6.7744598,0,0,-940.5022,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,23.650578,0,0,1,1,0,1.8879591,7.2188172,55.24,23.63,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,554,461247.59,204282.77,-44572.91,0,0,0,2755.4375 +10712,13071,23312,23313,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.9240513,7.8644557,7.1470327,32,5,-14.586149,0,3,3,2021,11,0,10,10,1,0,0,8.9229536,8.9229536,0,0,0,0,0,0,0,0,0,0,0,3.5743785,7.2294827,54.77,55.87,58.72,51.29,8.333333333333334,1,1,0,0,13,9,5,1,688,416978.97,73053.523,388339.44,0,0,437.31744,3599.7563 +10712,13071,23313,23312,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7637348,8.2484522,10,-5,-35.814224,0,-9,-9,2021,9,0,0,37,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.571207,8.4483356,58.72,51.29,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,688,416978.97,73053.523,388339.44,0,0,437.31744,3599.7563 +10712,13072,23314,-9,23312,23313,1,1,24,0,0,0,2,2,-9,0,4,7.8711295,7.5684791,0,0,0,-976.28271,0,2,1,2021,5,0,42,44,1,0,1,7.4883866,7.4883866,0,0,0,0,0,0,0,0,0,0,0,3.8961985,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,305,26789.92,36224.75,0,0,0,0,1255.8275 +10713,13073,23315,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.82446,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5144029,0,0,1,1,0,0,0,37.34,31.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,503,139856.05,0,53480.285,0,-3921.7813,0,1345.069 +10713,13074,23316,-9,23315,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1157.4568,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,27.89,47.15,-9,-9,5,1,1,0,0,0,13,1,0,711,-197804.69,0,0,0,0,-287.54068,722.28607 +10714,13075,23317,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1061.3663,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.98,14.09,-9,-9,0,1,1,0,1,4,7,1,0,376,-97986.68,0,0,0,0,0,1784.9395 +10715,13076,23318,23319,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.5502586,7.4913287,6,0,-63.695133,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4366889,57.16,56.15,56.67,42.78,1.666666666666667,1,1,0,0,5,9,3,1,157,1082758.8,692766.31,300808.59,0,0,0,1416.8914 +10715,13076,23319,23318,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.5619197,6.7402468,6,0,196.55234,0,3,3,2021,9,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4425797,6.2968812,56.67,42.78,57.16,56.15,8.333333333333334,1,1,0,0,6,9,3,1,157,1082758.8,692766.31,300808.59,0,0,0,1416.8914 +10716,13077,23320,23321,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.081337,8.3196068,0,29,7,-48.148731,0,3,2,2021,9,0,37,38,1,1,0,11.506629,11.506629,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,50,54,7,1,1,0,0,8,11,5,1,1467,807267.5,639979.63,416096.75,250814.16,0,0,3913.2317 +10716,13077,23321,23320,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5163212,8.8687181,0,29,-7,136.15184,0,3,1,2021,10,0,38,38,1,1,0,15.31561,15.31561,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,53,54,7,1,1,0,0,7,11,5,1,1467,807267.5,639979.63,416096.75,250814.16,0,0,3913.2317 +10716,13078,23322,-9,23321,23320,1,1,21,0,0,0,2,2,-9,0,4,6.9873195,7.3746567,0,0,0,-1021.8697,0,2,2,2021,11,0,30,20,1,2,1,5.29918,5.29918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,0,0,3,11,3,1,69,38045.73,18299.758,0,0,0,0,-348.17963 +10717,13079,23323,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8428078,8.7330122,0,0,0,-804.36053,0,2,1,2021,9,0,40,40,1,0,0,17.60837,17.60837,.05,.05,0,0,0,0,0,0,0,0,0,2.7831016,0,42.27,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,936,9392.2324,42116.375,0,0,1957.6058,0,2728.7546 +10718,13080,23324,23325,-9,-9,1,1,59,0,1,0,1,1,-9,0,5,9.7898636,9.5296497,0,3,13,-24.169559,0,2,3,2021,7,1,80,65,1,1,0,20.642723,20.642723,.05,.05,.05,0,0,0,0,0,1,1,0,8.8940716,0,43.57,62.68,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,1138.5,451233.41,111952.25,406983.56,106650.78,12719.729,1482.7656,11585.768 +10718,13080,23325,23324,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.1569548,8.4010458,0,3,-13,123.49377,0,-9,-9,2021,7,1,44,42,1,1,0,9.6110954,9.6110954,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.57,62.68,10,1,1,0,0,5,2,5,1,1138.5,451233.41,111952.25,406983.56,106650.78,12719.729,1482.7656,11585.768 +10718,13081,23326,-9,23325,23324,1,1,18,0,1,0,2,2,-9,0,3,7.2292633,7.0430002,0,0,0,-1186.2274,0,1,1,2021,10,1,42,0,1,1,1,3.4953086,3.4953086,0,0,0,0,0,0,0,0,1,1,0,.76944196,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,213,-7497.9048,0,0,0,0,0,752.11566 +10719,13082,23327,23328,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.4415607,9.593482,8.3240538,8,1,-50.049435,0,-9,-9,2021,21,7,50,55,1,7,0,26.220861,26.220861,.05,.05,0,0,0,0,0,0,0,0,0,7.9597468,8.1025848,46.62,50.93,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,1529,1345162.5,664214.63,239925.84,0,0,0,8284.666 +10719,13082,23328,23327,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.249835,7.2115922,0,8,-1,-100.19997,0,2,3,2021,11,1,24,25,1,1,0,7.639636,7.639636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,46.62,50.93,6.666666666666667,1,1,0,0,9,10,5,1,1529,1345162.5,664214.63,239925.84,0,0,0,8284.666 +10719,13083,23329,-9,23328,23327,1,1,27,0,0,0,3,3,-9,0,3,7.294672,6.9198256,0,0,0,-950.71265,0,2,2,2021,19,7,30,25,1,7,1,4.7641664,4.7641664,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,860,-93714.711,0,0,0,0,0,548.34033 +10720,13084,23330,23331,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3272934,6.9448938,0,29,-5,35.227581,0,2,3,2021,13,1,25,25,1,1,0,5.950933,5.950933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,52.24,48.84,8.333333333333334,1,1,0,0,11,13,4,1,337.5,292827,122889.27,0,0,7429.9951,869.30194,2916.7456 +10720,13084,23331,23330,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5470352,8.4829044,0,9,5,39.548717,-9,-9,-9,2021,11,0,86,0,1,0,0,5.7572212,5.7572212,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,48.84,43.6,51.61,8.333333333333334,1,1,0,0,11,13,4,1,337.5,292827,122889.27,0,0,7429.9951,869.30194,2916.7456 +10720,13085,23332,-9,23330,23331,1,1,25,0,0,0,2,2,-9,0,4,7.5907593,7.7075601,0,0,0,-1109.1763,-9,2,2,2021,12,0,45,0,1,0,1,6.1635594,6.1635594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,594,-75885.328,-38935.004,0,0,0,0,787.54114 +10720,13086,23333,-9,23330,23331,1,0,20,0,0,0,2,2,-9,0,4,7.0529904,6.819221,0,0,0,-1032.4152,-9,2,2,2021,12,0,16,0,1,0,1,8.7294245,8.7294245,0,0,0,0,0,0,0,0,0,0,0,0,0,47.38,47.02,-9,-9,8.333333333333334,1,1,0,1,2,13,2,1,307,-23166.934,0,0,0,0,0,936.5274 +10721,13087,23334,23337,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.8534174,8.5816231,0,21,-1,65.393036,0,2,3,2021,7,0,38,26,1,0,0,20.668488,20.668488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,47.1,59.71,8.333333333333334,1,1,0,0,13,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23335,-9,23334,23337,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1148.1962,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23336,-9,23334,23337,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.9447,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23337,23334,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.5552416,8.5757799,0,11,1,-41.965195,0,2,2,2021,6,0,52,62,1,0,0,13.871222,13.871222,.05,.05,0,0,0,0,0,0,0,0,0,5.1179819,0,47.1,59.71,52.72,55.58,8.333333333333334,1,1,0,0,13,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10722,13088,23338,23339,23343,23342,1,1,54,0,0,0,1,1,-9,0,4,8.3170319,8.3976374,0,35,6,219.01009,0,3,2,2021,6,0,35,33,1,0,0,18.303877,18.303877,.05,.05,0,0,0,0,0,0,1,1,0,6.3565869,0,63.09,45.22,47,50,10,2,3,0,0,9,2,4,1,488,437273.75,284977.78,161575.28,65269.102,8838.5488,0,2589.875 +10722,13088,23339,23338,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.1790557,6.9572878,0,35,-6,-132.11031,0,3,2,2021,23,11,19,19,1,11,0,8.6988087,8.6988087,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47,50,63.09,45.22,8.333333333333334,2,3,0,0,9,2,4,1,488,437273.75,284977.78,161575.28,65269.102,8838.5488,0,2589.875 +10722,13089,23340,-9,23339,23338,1,1,28,0,0,0,2,2,-9,0,3,7.6248813,7.5857401,0,0,0,-1063.3661,-9,2,2,2021,12,0,37,0,1,0,1,6.5507865,6.5507865,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,47.9,-9,-9,5,2,3,0,0,5,2,3,1,2045,-179749.78,0,0,0,0,0,709.61896 +10722,13090,23341,-9,23339,23338,1,1,18,0,0,0,2,2,1,0,3,7.6222277,7.9889255,0,0,0,-1085.6313,-9,2,1,2021,13,3,35,0,1,3,1,10.141144,10.141144,0,0,0,0,0,0,0,2,1,1,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,0,2,3,1,601,156694.31,0,0,0,0,0,1631.2786 +10722,13091,23342,23343,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,4,0,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,75.548958,0,0,1,1,0,2.286665,0,52,54.51,46.41,39.74,6.666666666666667,2,3,0,0,0,2,1,1,2934.5,126686.41,0,122433.42,-4105.4941,0,0,1399.7493 +10722,13091,23343,23342,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,4,0,0,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.41,39.74,52,54.51,8.333333333333334,2,3,0,0,0,2,1,1,2934.5,126686.41,0,122433.42,-4105.4941,0,0,1399.7493 +10723,13092,23344,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.2259269,6.0978866,0,0,0,-915.02997,0,3,3,2021,6,0,15,0,1,0,0,3.1399698,3.1399698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,2631,248307.11,164519.16,252766.41,0,0,0,426.02908 +10724,13093,23345,23346,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,7.3785868,6.9196892,27,3,137.77127,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.38850576,7.1008816,49.52,35.69,37.76,35.4,5,1,1,0,0,11,12,2,1,1302,818295.5,547039.75,188601.3,0,0,0,848.22717 +10724,13093,23346,23345,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,27,-3,-40.481709,0,1,1,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8811169,0,37.76,35.4,49.52,35.69,6.666666666666667,1,1,1,0,11,12,2,1,1302,818295.5,547039.75,188601.3,0,0,0,848.22717 +10724,13094,23347,-9,23346,23345,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-938.69757,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8940146,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,642,23310.123,0,0,0,0,0,487.7428 +10724,13095,23348,-9,23346,23345,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1051.4423,-9,1,1,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1296606,0,39,57.79,-9,-9,6.666666666666667,1,1,1,0,0,12,1,1,2620,0,0,0,0,0,0,-429.80048 +10725,13096,23349,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,5.7393942,5.4433088,0,0,-1077.1222,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.500658,63.35,20.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,465,342020.19,100355.6,126969.38,0,0,0,2017.0776 +10726,13097,23350,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.0101852,6.275589,0,0,-960.90875,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.4682584,5.2160101,41.132332,0,1,1,0,1.5582209,6.0272856,50.66,26.92,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1079,540752.94,0,245938.75,0,0,0,1596.675 +10727,13098,23351,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.6099801,7.4366317,0,0,0,-1076.9856,0,-9,2,2021,23,7,30,30,1,7,0,4.8106823,4.8106823,0,0,0,0,0,0,0,0,1,1,0,0,0,25.31,36.18,-9,-9,1.666666666666667,1,1,0,1,6,4,3,0,756,-59341.98,0,0,0,-289.73633,0,851.04559 +10727,13099,23352,-9,-9,23351,1,1,22,0,0,0,2,2,-9,0,4,4.3676434,4.5349684,0,0,0,-1080.4827,0,2,3,2021,11,0,35,30,1,2,1,.30564409,.30564409,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,2,0,455,-75959.906,0,0,0,0,0,-304.60815 +10728,13100,23353,-9,23354,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.55573,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1259,-31157.486,0,0,0,6758.6885,0,1042.8645 +10728,13100,23354,-9,-9,-9,1,0,37,1,3,0,2,2,-9,0,3,0,0,0,0,0,-1087.2202,-9,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,5,1,1,1,0,0,12,1,0,1259,-31157.486,0,0,0,6758.6885,0,1042.8645 +10729,13101,23355,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1040.2135,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,26.97,-9,-9,5,1,1,0,0,6,8,1,0,289,198276.88,0,0,0,0,0,1085.7371 +10729,13102,23356,-9,23355,-9,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1074.7015,-9,3,-9,2021,26,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.23,59.41,-9,-9,0,4,2,1,1,0,8,1,0,1238,0,0,0,0,0,0,468.75049 +10730,13103,23357,23359,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3995495,8.1433315,0,2,2,-123.54609,-9,2,1,2021,8,0,39,0,1,0,0,13.633821,13.633821,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,51.14,60.45,47.77,30.96,8.333333333333334,1,1,0,0,13,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10730,13103,23358,-9,23359,23357,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-988.09119,-9,1,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.76,56.64,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10730,13103,23359,23357,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.0564947,8.3470173,0,2,-2,.98011196,0,2,2,2021,12,2,44,44,1,2,0,9.5984621,9.5984621,0,0,0,0,0,0,0,0,0,0,0,4.2752476,0,47.77,30.96,51.14,60.45,8.333333333333334,1,1,0,0,13,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10731,13104,23360,23361,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.373312,8.3841105,0,10,3,29.044367,0,3,2,2021,12,0,58,48,1,0,0,8.6718988,8.6718988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,57.33,53.46,5,1,1,0,0,13,6,5,1,1113,362977.16,106410.05,144878.88,25249.34,0,0,2808.4675 +10731,13104,23361,23360,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7502222,7.7725477,0,10,-3,76.352211,0,2,2,2021,6,0,25,30,1,0,0,12.792525,12.792525,.05,.05,0,0,0,0,0,0,0,0,0,3.1214359,0,57.33,53.46,56.35,51.16,8.333333333333334,1,1,0,0,12,6,5,1,1113,362977.16,106410.05,144878.88,25249.34,0,0,2808.4675 +10731,13105,23362,-9,23361,23360,1,0,23,0,0,0,2,2,-9,0,4,7.843821,7.8740325,0,0,0,-1027.1453,0,2,2,2021,15,3,35,26,1,3,1,7.7937589,7.7937589,0,0,0,0,0,0,0,0,0,0,0,1.5698056,0,52.89,45.61,-9,-9,10,1,1,0,0,7,6,3,1,152,61196.563,0,0,0,0,0,1481.3209 +10732,13106,23363,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.3510628,7.5507941,0,0,0,-1008.6574,0,2,2,2021,20,8,40,36,1,8,0,5.0374355,5.0374355,0,0,0,0,0,0,0,0,1,1,0,0,0,27.98,63,-9,-9,3.333333333333333,1,1,0,0,3,12,3,0,468,-184998.39,-32644.32,0,0,0,0,457.75668 +10733,13107,23364,23365,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.5399208,8.4914865,0,6,-4,-15.196555,0,2,-9,2021,22,8,77,77,1,8,0,6.9051304,6.9051304,0,0,0,0,0,0,0,0,0,0,0,.62880707,0,27.46,58.85,39.67,38.65,6.666666666666667,1,1,0,0,12,9,5,1,567.5,-9955.668,54086.281,195231.34,182555.48,13025.466,6470.79,2749.9868 +10733,13107,23365,23364,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.7797222,7.6809382,0,6,4,7.7824202,0,-9,-9,2021,25,9,40,40,1,9,0,6.6409001,6.6409001,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.67,38.65,27.46,58.85,6.666666666666667,1,1,0,0,4,9,5,1,567.5,-9955.668,54086.281,195231.34,182555.48,13025.466,6470.79,2749.9868 +10734,13108,23366,-9,23368,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.1156,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23367,-9,23368,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.1393,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23368,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,7.7077637,7.2487936,0,0,-853.57587,-9,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9874635,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23369,-9,23368,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.27863,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10735,13109,23370,-9,-9,23371,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-974.2923,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.4632998,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,8,5,1,765.5,510424.13,-71432.945,399597.16,104825.33,0,0,3950.2461 +10735,13109,23371,-9,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.9583511,9.4809513,0,10,-3,22.265333,0,3,3,2021,10,0,38,38,1,0,0,27.511381,27.511381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.19,54.26,8.333333333333334,1,1,0,0,10,8,5,1,765.5,510424.13,-71432.945,399597.16,104825.33,0,0,3950.2461 +10735,13110,23372,-9,-9,-9,1,1,49,1,1,0,1,1,-9,0,4,8.4287825,8.5089264,0,10,3,87.755081,0,2,2,2021,8,0,30,40,1,0,0,22.371746,22.371746,0,0,.05,0,0,0,0,0,1,1,0,1.7465105,0,55.19,54.26,46.44,59.62,8.333333333333334,1,1,0,0,12,8,5,1,479,121762.68,-52382.727,0,0,0,0,2688.5039 +10736,13111,23373,-9,-9,23374,1,0,55,0,0,0,2,2,-9,0,3,7.8569551,7.7683535,0,0,0,-1020.6729,0,2,2,2021,13,1,30,30,1,1,0,13.875055,13.875055,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,10,4,1,1979,47161.605,-32017.748,0,0,0,4465.2095,1144.0212 +10736,13112,23374,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-915.07037,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.5,51.63,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,422,-144112.89,0,0,0,0,0,255.15216 +10737,13113,23375,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.1466179,6.6651597,0,0,-1029.9594,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9182591,6.6481595,33.67,28.36,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,923,528349.13,144416.55,143277.83,0,0,0,4267.0503 +10738,13114,23376,23377,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,6,6,-94.757805,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,76.680435,0,0,1,1,0,.60199767,0,55.11,47.63,55.2,9.220000000000001,10,1,1,0,0,0,10,2,1,1471.5,488178.75,271469.25,217892.16,0,0,0,1223.4908 +10738,13114,23377,23376,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.1052332,7.5284224,15,-6,143.08144,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8726947,7.3189545,55.2,9.220000000000001,55.11,47.63,6.666666666666667,1,1,0,0,0,10,2,1,1471.5,488178.75,271469.25,217892.16,0,0,0,1223.4908 +10739,13115,23378,23379,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.5698214,7.4825292,0,31,-2,94.932747,0,2,2,2021,11,0,40,45,1,0,0,4.9157271,4.9157271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.17,58.56,48.77,60.16,8.333333333333334,1,1,0,0,12,12,5,1,782,542020.5,506368.03,142117.91,58317.832,4560.564,16264.352,3118.7214 +10739,13115,23379,23378,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.5005693,8.7753477,0,31,2,-70.311813,0,2,2,2021,9,1,43,40,1,1,0,15.517144,15.517144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49.17,58.56,8.333333333333334,1,1,0,0,9,12,5,1,782,542020.5,506368.03,142117.91,58317.832,4560.564,16264.352,3118.7214 +10740,13116,23380,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0526114,8.062252,0,0,0,-1024.1027,0,2,2,2021,8,0,39,39,1,0,0,9.1271229,9.1271229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,158,408865.84,512437.69,0,0,2030.4034,0,1417.0302 +10741,13117,23381,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2796421,8.5550699,0,0,0,-959.81738,0,-9,2,2021,11,0,40,45,1,0,0,12.292283,12.292283,0,0,0,0,0,0,0,2,0,0,0,0,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,169,286906.78,121833.03,-17673.639,19017.979,0,0,1328.9358 +10742,13118,23382,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.4836416,7.7698007,0,0,-1173.8275,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7926545,7.776247,57.16,56.15,-9,-9,10,1,1,0,0,5,9,3,1,541,266064.34,61222.152,217097.63,0,0,0,1797.0714 +10743,13119,23383,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,5.1961193,5.6316915,4.1374569,0,0,-944.35516,0,2,2,2021,12,1,40,38,1,1,0,.58553153,.58553153,0,0,0,0,0,0,0,0,0,0,0,4.1324439,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,1006,-51522.605,-9562.4141,82853.266,25271.547,0,6554.8696,50.729298 +10744,13120,23384,23385,-9,-9,1,1,37,0,1,0,3,3,-9,0,4,8.091094,8.1874304,0,10,4,-52.322258,0,2,3,2021,7,0,39,37,1,0,0,11.820364,11.820364,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10744,13120,23385,23384,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.7464194,7.5823784,0,10,-4,78.238922,0,2,2,2021,9,0,23,23,1,0,0,13.256021,13.256021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10744,13120,23386,-9,23385,23384,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.65656,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10745,13121,23387,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8554111,7.7186608,0,0,0,-962.29626,0,3,3,2021,13,2,44,35,1,2,0,7.8174996,7.8174996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,340,406384.63,-51289.574,283498.41,0,0,0,1708.9297 +10746,13122,23388,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,1,8.0237589,8.2483778,0,0,0,-1031.9471,-9,3,3,2021,20,8,30,0,1,8,0,11.395045,11.395045,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,28.21,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,869,7412.2383,21350.041,147195.3,76844.156,1412.1431,0,1389.8794 +10747,13123,23389,-9,23390,23391,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-855.15674,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10747,13123,23390,23391,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.3637047,8.540267,1.2177802,8,0,99.756317,0,-9,-9,2021,10,1,43,40,1,1,0,14.56726,14.56726,.05,.05,0,0,0,0,0,0,1,1,0,.85659742,0,52.84,45.88,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10747,13123,23391,23390,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5578547,8.3043585,0,8,0,-39.906776,0,-9,-9,2021,8,0,37,40,1,0,0,12.392288,12.392288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,52.84,45.88,8.333333333333334,1,1,0,0,12,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10748,13124,23392,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.3239117,8.3618345,0,1,-4,-39.5425,0,2,-9,2021,33,11,43,42,1,11,0,8.2581892,8.2581892,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.55,67.47,50,57,0,1,1,0,1,10,13,3,0,920,215901.25,121496.11,0,0,0,0,2232.686 +10749,13125,23393,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5797338,8.9142942,7.2448673,0,0,-1095.415,0,-9,-9,2021,29,11,40,40,1,11,0,22.253933,22.253933,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.567513,27.94,60.73,-9,-9,1.666666666666667,1,1,0,1,10,12,5,1,130,184399.88,396616.91,80462.195,0,0,0,2990.7842 +10750,13126,23394,23395,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.0189209,7.3163085,0,43,-1,-77.153732,0,-9,-9,2021,6,0,40,40,1,0,0,8.1920366,8.1920366,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,60.12,54.8,10,1,1,0,0,11,2,4,1,1309.5,309226.28,198537.97,164062.92,74689.961,0,9592.6797,2854.0488 +10750,13126,23395,23394,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0473318,8.0864229,0,42,1,26.417065,0,-9,-9,2021,6,0,18,18,1,0,0,22.773085,22.773085,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.66,52.4,10,1,1,0,0,12,2,4,1,1309.5,309226.28,198537.97,164062.92,74689.961,0,9592.6797,2854.0488 +10751,13127,23396,-9,-9,-9,1,0,56,0,1,0,2,2,-9,1,1,7.0204158,7.3420701,0,0,0,-1069.842,0,3,3,2021,18,6,20,20,1,6,0,5.61764,5.61764,.05,.05,0,0,0,0,0,106,1,1,0,0,0,36.61,21.16,-9,-9,1.666666666666667,1,1,0,1,11,11,2,1,822,-30984.264,-38820.816,73656.914,0,0,1774.001,2039.2742 +10751,13128,23397,-9,23399,23398,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.2658,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13128,23398,23399,23396,-9,1,1,31,0,1,0,2,2,-9,1,2,0,0,0,7,6,0,0,2,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.17,43.96,14.55,66.55,3.333333333333333,1,1,1,0,6,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13128,23399,23398,-9,-9,1,0,25,0,1,0,2,2,-9,1,3,0,0,0,7,-6,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.55,66.55,11.17,43.96,6.666666666666667,1,1,0,0,0,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13129,23400,-9,23396,-9,1,0,28,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1059.6213,0,2,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,34.61,20.62,-9,-9,5,1,1,0,0,1,11,1,1,1781,22470.227,0,0,0,771.02325,0,971.74762 +10752,13130,23401,23402,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6137652,7.5160313,0,2,3,53.546898,0,-9,-9,2021,18,5,23,-9,1,5,0,13.624642,13.624642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.07,59.68,49.04,55.86,5,1,1,0,0,13,4,4,0,1823,144574.56,20808.318,44530.148,64394.547,0,0,3063.3113 +10752,13130,23402,23401,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.4223518,8.4619293,0,2,-3,131.03777,0,-9,-9,2021,11,0,54,19,1,0,0,10.417537,10.417537,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.04,55.86,35.07,59.68,8.333333333333334,1,1,0,0,10,4,4,0,1823,144574.56,20808.318,44530.148,64394.547,0,0,3063.3113 +10753,13131,23403,23405,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.9426765,7.9170947,0,6,-1,85.038918,0,2,2,2021,6,0,30,30,1,0,0,9.8743954,9.8743954,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,42.61,49.31,6.666666666666667,1,1,0,0,4,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10753,13131,23404,-9,23403,23405,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.19385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10753,13131,23405,23403,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.2160091,8.5801935,0,6,1,40.458763,-9,2,-9,2021,18,6,38,0,1,6,0,13.4129,13.4129,.05,.05,0,0,0,0,0,42,0,0,0,0,0,42.61,49.31,49.04,55.86,6.666666666666667,1,1,0,0,10,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10754,13132,23406,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,0,0,0,0,0,-891.92053,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,1,2,1,0,328,41343.613,0,0,0,0,0,287.99466 +10755,13133,23407,23408,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.0850239,8.1992598,0,8,5,-38.198959,0,2,3,2021,6,0,49,29,1,0,0,9.7693548,9.7693548,0,0,.05,0,0,0,0,0,1,1,0,2.1946387,0,58.15,52.91,58.15,52.91,10,1,1,0,0,9,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23408,23407,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.8462687,9.0874071,0,8,-5,77.704506,0,2,2,2021,9,0,39,41,1,0,0,18.049816,18.049816,0,0,0,0,0,0,0,0,1,1,0,3.3655124,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,9,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23409,-9,23408,23407,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1192.0316,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23410,-9,23408,23407,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1055.7463,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10756,13134,23411,23412,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.0125904,7.8493619,11,3,-7.9521952,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.146174,7.5541039,52.54,42.38,36.91,59.95,8.333333333333334,1,1,0,0,9,10,4,1,453.5,1737766.3,1070516,318750.09,0,0,0,3026.6604 +10756,13134,23412,23411,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.9141235,7.8373985,5.9859343,11,-3,-7.2921276,0,-9,-9,2021,15,3,30,30,1,3,0,8.9880075,8.9880075,.05,.05,.05,0,0,0,0,0,0,0,0,5.8335834,5.8767276,36.91,59.95,52.54,42.38,6.666666666666667,1,1,0,0,12,10,4,1,453.5,1737766.3,1070516,318750.09,0,0,0,3026.6604 +10757,13135,23413,23415,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,0,0,0,5,-6,-85.206177,0,2,1,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.17,47.9,39.12,54.85,5,2,3,1,0,8,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10757,13135,23414,-9,23413,23415,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2654,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10757,13135,23415,23413,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.8329887,8.6200495,0,5,6,68.270241,0,3,2,2021,12,0,50,40,1,0,0,13.276869,13.276869,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.12,54.85,37.17,47.9,8.333333333333334,2,3,0,0,13,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10758,13136,23416,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.9178333,8.2368441,0,0,0,-913.72498,0,-9,-9,2021,6,1,40,80,1,1,0,10.313168,10.313168,.05,.05,0,0,0,0,0,0,0,0,0,4.2239842,0,46.28,62.6,-9,-9,10,1,1,0,0,7,9,4,0,2075,-34501.996,-74766.383,0,0,0,0,1495.9651 +10759,13137,23417,23420,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.3710537,8.6949825,0,9,3,4.3093038,0,2,3,2021,11,0,40,40,1,0,0,9.723999,9.723999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,54.59,56.57,10,1,1,0,0,9,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23418,-9,23420,23417,1,1,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1114.3091,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23419,-9,23420,23417,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.7076,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23420,23417,-9,-9,1,0,34,1,4,0,3,3,-9,0,5,0,0,0,9,-3,15.782954,0,-9,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.59,56.57,41.64,54.12,10,1,1,0,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23421,-9,23420,23417,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-968.25122,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23422,-9,23420,23417,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.3583,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10760,13138,23423,23425,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.7051601,8.86833,7.9412937,7,0,13.388924,0,-9,-9,2021,10,1,46,46,1,1,0,11.331741,11.331741,.05,.05,.05,0,0,0,0,0,1,1,0,7.6990271,0,50.4,55.04,40.47,55.65,6.666666666666667,1,1,0,1,7,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10760,13138,23424,-9,23425,23423,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1191.754,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10760,13138,23425,23423,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,0,0,0,7,0,-144.65759,0,2,1,2021,14,2,0,10,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,50.4,55.04,8.333333333333334,1,1,0,1,12,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10761,13139,23426,23427,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,8.1323519,8.077795,42,6,59.858047,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0365007,7.862186,58.08,30.23,51.24,58.84,5,1,1,0,0,5,2,3,1,361.5,743617.81,537868.75,238176.06,0,2466.3521,0,2220.3975 +10761,13139,23427,23426,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,6.2573709,6.5411143,43,-6,53.851311,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4016809,51.24,58.84,58.08,30.23,8.333333333333334,1,1,0,0,8,2,3,1,361.5,743617.81,537868.75,238176.06,0,2466.3521,0,2220.3975 +10762,13140,23428,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2466002,8.8134756,0,0,0,-1142.1666,0,2,2,2021,14,2,36,36,1,2,0,15.255893,15.255893,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.61,56.64,-9,-9,3.333333333333333,1,1,0,0,12,8,5,0,413,-11986.334,94768.164,0,0,2384.3757,0,1240.2555 +10763,13141,23429,23430,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.5674734,7.1879196,12,7,-60.543884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7776923,7.1832438,58.32,50.22,58.56,41.85,8.333333333333334,1,1,0,0,7,12,2,1,1058,588184.06,452601.16,244421.88,0,0,0,2241.1641 +10763,13141,23430,23429,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,12,-7,-42.772984,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,41.85,58.32,50.22,8.333333333333334,1,1,0,0,8,12,2,1,1058,588184.06,452601.16,244421.88,0,0,0,2241.1641 +10764,13142,23431,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.0982499,6.2478743,0,0,-1022.528,0,3,3,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9699697,40.11,18.27,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,609,152558.53,83466.055,209233.53,0,0,0,621.77832 +10765,13143,23432,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.5050974,7.7113371,0,0,-1048.0521,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7263417,52.5,46.12,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,315,567259.56,172062.22,199797.88,0,0,0,1628.9548 +10766,13144,23433,23434,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.0247412,8.959569,0,7,-2,66.418282,0,2,-9,2021,5,0,50,57,1,0,0,19.507187,19.507187,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.64,53.15,6.666666666666667,1,1,0,0,9,10,5,1,545.5,759421.75,610461.81,238241.44,142537.56,0,0,4512.0186 +10766,13144,23434,23433,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6687765,8.692955,0,7,2,-166.36613,0,-9,-9,2021,8,0,43,47,1,0,0,15.208575,15.208575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.64,53.15,62.39,56.71,6.666666666666667,1,1,0,0,9,10,5,1,545.5,759421.75,610461.81,238241.44,142537.56,0,0,4512.0186 +10767,13145,23435,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,6.648922,6.7649179,0,0,0,-1043.3915,0,3,3,2021,19,7,16,16,1,7,0,5.3845882,5.3845882,0,0,0,0,0,0,0,2,1,1,0,0,0,42.12,39.15,-9,-9,6.666666666666667,1,1,0,1,12,7,2,1,290,642340.81,0,458600.5,0,0,0,1849.9274 +10767,13146,23436,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1072.5408,0,3,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.77,31.37,-9,-9,3.333333333333333,4,2,0,1,0,7,1,1,224,-64654.297,53912.762,0,0,0,-243.57118,809.7915 +10767,13147,23437,-9,23435,-9,1,1,24,0,0,0,2,2,-9,0,3,7.4886804,7.3932338,0,0,0,-825.87982,0,3,-9,2021,13,2,54,54,1,2,1,4.5386548,4.5386548,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.73,36.01,-9,-9,5,4,2,0,1,13,7,3,1,774,124707.67,41763.234,0,0,0,0,74.739571 +10768,13148,23438,-9,23439,23441,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1062.8506,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,4,5,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23439,23441,-9,-9,1,0,39,0,3,0,2,2,-9,0,5,6.9836297,7.0292735,0,20,-6,-58.849834,0,2,2,2021,11,1,20,20,1,1,0,7.9185295,7.9185295,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,55.88,28.7,44.99,8.333333333333334,2,3,0,1,12,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23440,-9,23439,23441,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-919.65436,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,2.3940547,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23441,23439,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,7.9544425,7.5542088,0,10,6,-19.482744,0,2,1,2021,28,9,38,40,1,9,0,7.662261,7.662261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.7,44.99,34.28,55.88,0,2,3,0,1,11,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23442,-9,23439,23441,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1173.7867,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10769,13149,23443,-9,23445,-9,1,0,17,0,4,1,2,0,0,0,3,0,0,0,0,0,-1141.5569,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,2,3,0,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23444,-9,23445,-9,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1055.3232,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23445,-9,-9,-9,1,0,35,0,4,0,2,2,-9,0,2,8.0477276,8.0915337,0,0,0,-1022.842,0,3,3,2021,11,0,42,32,1,0,0,9.3701162,9.3701162,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.8,46.5,-9,-9,5,2,3,0,0,4,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23446,-9,23445,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-982.69434,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23447,-9,23445,-9,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1141.7274,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,10,2,3,0,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23448,-9,23445,-9,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.3414,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10770,13150,23449,23450,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.8629694,8.9590521,0,23,-4,-21.188608,0,2,1,2021,7,0,37,37,1,0,0,20.398676,20.398676,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,54.79,55.86,6.666666666666667,1,1,0,0,14,13,4,1,302.5,453197.63,263364.72,72081.578,0,0,-107.12491,3710.2905 +10770,13150,23450,23449,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.9775357,8.166193,0,22,4,27.871641,0,1,2,2021,8,1,24,24,1,1,0,12.089329,12.089329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.57,57.72,8.333333333333334,1,1,0,0,14,13,4,1,302.5,453197.63,263364.72,72081.578,0,0,-107.12491,3710.2905 +10771,13151,23451,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.5751114,6.7085857,0,0,-1018.3223,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4320538,6.3423181,55.49,20.59,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,498,108641.49,71192.438,179541.75,0,0,0,1106.0828 +10772,13152,23452,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,6.7263432,6.4826584,0,0,-998.30609,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.079618,0,0,1,1,0,2.6290994,6.6698294,50.06,28.67,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1555,214245.47,-20863.219,81314.578,0,0,0,883.8053 +10773,13153,23453,23454,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.9371948,7.6160922,6.5918665,39,0,-113.83523,0,3,3,2021,11,0,15,18,1,0,0,7.1554518,7.1554518,.05,.05,0,0,0,0,0,0,0,0,0,8.4450321,6.8518496,48.93,50.55,53.78,48.41,1.666666666666667,2,3,0,0,15,8,5,1,686,1720478.8,1180900.8,301196.34,0,0,0,5237.459 +10773,13153,23454,23453,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4010439,8.4675312,6.9732003,39,0,-128.68942,0,2,3,2021,10,0,38,37,1,0,0,16.601473,16.601473,.05,.05,0,0,0,0,0,0,0,0,0,3.4082639,7.2579703,53.78,48.41,48.93,50.55,1.666666666666667,2,3,0,0,15,8,5,1,686,1720478.8,1180900.8,301196.34,0,0,0,5237.459 +10774,13154,23455,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3548489,8.6281252,0,0,0,-942.56274,0,1,1,2021,11,0,35,35,1,0,0,15.280999,15.280999,.05,.05,0,0,0,0,.14903682,0,1,1,0,5.8391171,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,1108,44621.32,54382.727,165589.31,32621.395,0,0,2077.7112 +10775,13155,23456,-9,23458,23457,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-854.30457,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10775,13155,23457,23458,-9,-9,1,1,29,1,1,0,1,1,-9,0,1,8.7679682,8.6171083,0,4,-1,-31.317102,0,-9,-9,2021,26,10,38,38,1,10,0,12.606094,12.606094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.21,37.4,47.1,56.62,3.333333333333333,1,1,0,0,5,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10775,13155,23458,23457,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.9911876,8.1838493,0,4,1,58.584648,0,2,2,2021,9,1,28,50,1,1,0,15.49487,15.49487,.05,.05,0,0,0,0,0,0,1,1,0,.11162011,0,47.1,56.62,37.21,37.4,8.333333333333334,1,1,0,0,13,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10776,13156,23459,23460,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.5696125,7.5821552,0,7,4,-91.250046,0,-9,-9,2021,11,2,30,30,1,2,0,8.2089701,8.2089701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,20.92,54.37,38.74,8.333333333333334,1,1,0,0,8,4,4,1,1779.5,570632.94,318132.88,221174.91,0,0,0,2315.2012 +10776,13156,23460,23459,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.7712364,7.9655399,0,7,-4,-.5345239,0,3,3,2021,11,0,47,46,1,0,0,4.9213018,4.9213018,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,54.37,38.74,49.02,20.92,5,1,1,0,0,9,4,4,1,1779.5,570632.94,318132.88,221174.91,0,0,0,2315.2012 +10776,13157,23461,-9,23459,23460,1,1,19,0,0,0,2,2,-9,0,4,6.999897,6.9505343,0,0,0,-1021.515,-9,2,2,2021,6,0,39,0,1,0,1,3.2490225,3.2490225,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,4,2,1,821,109242.02,0,0,0,0,0,869.17249 +10777,13158,23462,23463,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,37,-7,-86.515114,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,61.92,38.31,7,2,3,0,0,0,8,2,1,316.5,171686.41,0,0,0,0,0,1424.739 +10777,13158,23463,23462,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,7.478848,7.102788,0,37,7,28.047108,0,3,3,2021,10,2,24,24,1,2,0,7.5387039,7.5387039,0,0,0,0,0,0,0,0,1,1,0,0,0,61.92,38.31,48,49,8.333333333333334,2,3,0,0,11,8,2,1,316.5,171686.41,0,0,0,0,0,1424.739 +10777,13159,23464,-9,23462,23463,1,0,26,0,1,0,2,2,-9,0,3,7.9670372,7.7757654,0,0,0,-1141.5403,0,3,3,2021,15,4,37,36,1,4,1,8.0899935,8.0899935,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.01,58.96,-9,-9,6.666666666666667,2,3,0,1,8,8,4,1,1053,-60590.711,104084.85,0,0,5474.3384,0,1418.5089 +10778,13160,23465,23467,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.5537949,7.6302772,0,3,-1,-20.528103,0,-9,-9,2021,11,0,25,0,1,2,0,8.7349682,8.7349682,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,47.32,52.7,7,2,3,0,0,1,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10778,13160,23466,-9,23465,23467,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.56744,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10778,13160,23467,23465,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.6405897,8.744132,0,3,1,-105.88031,0,-9,-9,2021,7,0,48,50,1,0,0,12.010113,12.010113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,47,57,8.333333333333334,2,3,0,0,8,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10779,13161,23468,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,7.3050747,7.4714937,0,0,-881.71637,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7116852,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,454,206343.98,160467.67,100514.59,0,0,0,1177.536 +10780,13162,23469,23470,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1829004,8.0713015,0,22,2,-220.67844,0,3,3,2021,9,0,46,44,1,0,0,6.998467,6.998467,0,0,0,0,0,0,0,0,0,0,0,5.5273676,0,49.05,50.32,57.06,57.76,6.666666666666667,1,1,0,0,9,5,5,1,227,-31298.137,78809.852,0,0,0,10191.056,4877.9365 +10780,13162,23470,23469,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,9.1030846,9.5365362,0,22,-2,47.956757,0,2,2,2021,8,0,39,40,1,0,0,22.642307,22.642307,0,0,0,0,0,0,.093001299,0,0,0,0,4.362699,0,57.06,57.76,49.05,50.32,8.333333333333334,1,1,0,0,11,5,5,1,227,-31298.137,78809.852,0,0,0,10191.056,4877.9365 +10781,13163,23471,23472,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.4184012,5.5883803,8,4,-81.351044,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.674273,5.5725198,57.32,29.38,50,47,10,1,1,0,0,7,2,2,1,257,317988.47,40032.176,135406.38,0,0,0,659.00195 +10781,13163,23472,23471,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-4,-42.413315,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.32,29.38,7,4,1,0,0,0,2,2,1,257,317988.47,40032.176,135406.38,0,0,0,659.00195 +10782,13164,23473,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.706809,7.4072294,0,0,0,-997.40332,0,2,1,2021,6,0,42,45,1,0,0,7.9829607,7.9829607,0,0,0,0,0,0,0,0,0,0,0,2.1600876,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,1353,-98197.961,0,0,0,0,0,647.52814 +10783,13165,23474,23475,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.3939004,6.3695059,19,-2,100.95064,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5375366,6.2074347,54.2,57.49,49.32,22.65,8.333333333333334,1,1,0,0,13,1,3,1,1137.5,1115733.8,329650.81,256556.59,0,0,0,2910.7695 +10783,13165,23475,23474,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.8316283,7.7305641,19,2,119.58219,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,1.0906452,0,0,1,1,0,1.5725507,7.9626451,49.32,22.65,54.2,57.49,3.333333333333333,1,1,0,0,0,1,3,1,1137.5,1115733.8,329650.81,256556.59,0,0,0,2910.7695 +10784,13166,23476,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.384016,8.232132,0,0,0,-987.61987,0,-9,-9,2021,17,5,38,38,1,5,0,10.685408,10.685408,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,1109,66012.383,0,0,0,0,0,1663.4896 +10785,13167,23477,23478,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.4536352,7.8046999,24,-3,-33.190273,0,3,3,2021,7,1,0,45,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.1921873,7.7595491,59.33,51.29,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,681.5,1541429.5,1086962.8,356519.13,49879.133,7415.9121,0,3711.2651 +10785,13167,23478,23477,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0853148,8.999465,0,9,3,-41.848141,0,-9,-9,2021,10,0,45,46,1,0,0,19.392067,19.392067,.05,.05,0,0,0,0,0,0,0,0,0,4.4458842,0,51.24,58.84,59.33,51.29,8.333333333333334,1,1,0,0,13,10,5,1,681.5,1541429.5,1086962.8,356519.13,49879.133,7415.9121,0,3711.2651 +10786,13168,23479,-9,23483,23481,1,0,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.598,-9,3,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,5,1,1,0,0,0,11,1,1,551,112146.45,0,0,0,0,0,0 +10786,13169,23480,-9,23483,23481,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.85059,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23481,23483,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.6502695,8.7597609,7.0203576,6,11,-220.2865,-9,-9,-9,2021,8,0,65,0,1,0,0,9.394187,9.394187,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1192307,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23482,-9,23483,23481,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.7229,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23483,23481,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,8.0989733,8.2630358,0,6,-11,47.747639,-9,2,2,2021,10,0,40,0,1,0,0,9.8168106,9.8168106,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,7,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10787,13170,23484,23485,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.1491423,7.0956311,7,2,-61.956367,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6801333,7.0349679,53.67,51.01,48.97,42.09,8.333333333333334,1,1,0,0,6,12,3,1,589,834090.69,449930.06,211090.19,0,0,0,2753.2827 +10787,13170,23485,23484,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2471218,7.7593007,7,-2,-44.924606,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,3.1845667,0,0,1,1,0,5.088304,7.308569,48.97,42.09,53.67,51.01,5,1,1,0,0,0,12,3,1,589,834090.69,449930.06,211090.19,0,0,0,2753.2827 +10788,13171,23486,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.5038152,5.2206531,0,0,-1174.6608,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0189328,59.07,43.05,-9,-9,10,1,1,0,0,0,4,2,1,129,-114173.05,0,144618.28,0,0,0,242.5067 +10789,13172,23487,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,1,0,5.409142,5.2223897,0,0,-962.17261,0,2,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5068274,44.65,16.42,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,396,136420.52,0,0,0,0,0,-877.3244 +10790,13173,23488,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.2835598,8.4255056,0,0,0,-1010.8166,0,-9,-9,2021,15,5,45,50,1,5,0,11.493016,11.493016,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,707,79358.758,0,0,0,0,0,1029.6608 +10791,13174,23489,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.31569,5.4085503,0,0,-958.55768,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,7.4829712,6.9281168,59.956234,0,1,1,0,4.4776759,5.1099758,54,44,-9,-9,8,1,1,0,0,0,5,2,1,370,38225.797,0,0,0,0,0,774.42834 +10792,13175,23490,23491,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.64,48.69,54,46,8.333333333333334,1,1,0,0,0,7,1,1,877.5,70370.867,0,0,0,0,0,914.09186 +10792,13175,23491,23490,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.446938,0,54,46,49.64,48.69,8,1,1,0,0,0,7,1,1,877.5,70370.867,0,0,0,0,0,914.09186 +10792,13176,23492,-9,23490,23491,1,1,49,0,0,0,2,2,-9,0,4,8.567008,8.3757954,0,0,0,-1064.9985,0,2,2,2021,9,2,60,57,1,2,0,7.8460836,7.8460836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,10,1,1,0,0,6,7,5,1,674,1276610.1,517586.09,466926.81,0,0,0,1207.7987 +10793,13177,23493,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.7640328,6.5843363,0,0,-999.49628,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6336484,6.2194514,65.54000000000001,33.23,-9,-9,5,1,1,0,0,10,7,2,1,361,120739.61,158339.86,0,0,0,0,-20.234547 +10794,13178,23494,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.4194355,7.3013611,0,0,-1036.2067,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8654828,7.4017606,53.64,48.38,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,285,533740.19,104882.18,125494.52,0,0,0,2216.3657 +10795,13179,23495,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.669734,8.4635611,0,0,0,-1071.353,0,-9,-9,2021,14,2,35,42,1,2,0,19.119225,19.119225,.05,.05,0,0,0,0,0,0,1,1,0,2.3567574,0,38.89,53.76,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,4977,182728.44,89799.664,0,0,3066.3259,0,2234.5771 +10796,13180,23496,23497,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,6.051096,6.2046318,11,-2,-5.8145981,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0778751,54.37,54.8,58.87,45.76,3.333333333333333,1,1,0,0,12,12,3,1,683.5,445324,365953.41,154614.31,0,1643.0927,0,205.06348 +10796,13180,23497,23496,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.3175678,7.8775663,0,11,2,60.326321,0,-9,-9,2021,11,0,95,62,1,0,0,2.1623344,2.1623344,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.87,45.76,54.37,54.8,8.333333333333334,1,1,0,0,13,12,3,1,683.5,445324,365953.41,154614.31,0,1643.0927,0,205.06348 +10797,13181,23498,23499,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,47,-1,0,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.98,34.87,45.43,25.25,3.333333333333333,1,1,0,0,3,4,1,0,1261.5,135758.73,0,38023.844,0,0,0,3554.7261 +10797,13181,23499,23498,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,12,1,0,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.43,25.25,30.98,34.87,6.666666666666667,1,1,0,0,8,4,1,0,1261.5,135758.73,0,38023.844,0,0,0,3554.7261 +10798,13182,23500,-9,23501,23502,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.6593,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23501,23502,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,0,0,0,9,0,-12.292053,0,2,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,57.16,56.15,1.666666666666667,1,1,0,0,3,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23502,23501,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,8.7992439,8.6563015,0,9,9,105.20711,0,3,3,2021,10,0,41,45,1,0,0,18.135334,18.135334,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23503,-9,23501,23502,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-977.1676,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10799,13183,23504,23505,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.7620287,5.6164565,8,0,-50.798717,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.843462,5.3746605,46.35,43.93,44.08,33.94,10,1,1,0,0,0,4,2,1,506.5,566871.69,386013.25,170426.42,0,0,0,2036.464 +10799,13183,23505,23504,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.2724123,7.2199736,42,0,-73.321449,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1671448,6.7273016,44.08,33.94,46.35,43.93,5,1,1,0,0,6,4,2,1,506.5,566871.69,386013.25,170426.42,0,0,0,2036.464 +10800,13184,23506,-9,-9,-9,1,1,94,0,0,0,2,2,-9,0,1,0,4.7754216,5.3166246,0,0,-1043.5066,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,21.043612,0,0,1,1,0,0,5.2786112,51.43,17.06,-9,-9,6.666666666666667,1,1,0,1,0,11,2,1,563,142687.78,-19231.861,77097.75,33210.445,0,0,1288.1545 +10801,13185,23507,23508,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6853695,8.9716082,0,6,3,17.322853,0,2,2,2021,6,0,58,58,1,0,0,8.9065857,8.9065857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,31.46,57.32,6.666666666666667,1,1,0,0,8,7,5,0,1453,590467.13,0,536481.88,0,0,0,4312.3037 +10801,13185,23508,23507,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.0238514,7.8237224,0,6,-3,97.007271,0,-9,-9,2021,13,4,40,40,1,4,0,9.568553,9.568553,0,0,0,0,0,0,0,0,0,0,0,0,0,31.46,57.32,57.16,56.15,3.333333333333333,1,1,0,0,5,7,5,0,1453,590467.13,0,536481.88,0,0,0,4312.3037 +10802,13186,23509,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.7384663,6.7525663,0,0,-1085.0612,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8017688,50.4,45.58,-9,-9,10,1,1,0,0,0,11,2,1,445,323835.44,33622.305,69044.859,0,0,0,646.44818 +10803,13187,23510,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,6.9478693,6.9538503,0,0,-929.46497,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.3378129,33.88,26.99,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,405,62954.535,2833.1899,242654.13,0,0,0,3547.7463 +10804,13188,23511,23512,-9,-9,1,0,39,0,1,0,1,1,-9,0,1,7.9348407,7.8521509,0,13,-2,35.654461,0,2,2,2021,8,0,40,40,1,0,0,10.418235,10.418235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.93,22.07,51,56,6.666666666666667,2,3,0,0,10,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10804,13188,23512,23511,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.3609953,8.0244398,0,13,2,-86.585556,0,-9,-9,2021,9,0,38,40,1,1,0,9.4308939,9.4308939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,61.93,22.07,8,2,3,0,0,1,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10804,13188,23513,-9,23511,23512,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-837.58081,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10805,13189,23514,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1050.5753,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2025592,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,144,510389.94,119562.11,353910.22,0,4982.4702,0,380.50281 +10806,13190,23515,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.63843,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,8.5545979,0,0,1,0,1,0,0,53.18,38.14,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,724,-46136.773,0,0,0,0,0,1657.068 +10807,13191,23516,23517,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.4456577,3.7001245,37,6,56.625084,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2777145,0,7,1,1,0,2.9960527,3.4160464,69.48999999999999,15.42,57.93,46.29,6.666666666666667,1,1,0,0,0,8,3,0,873.5,880043.94,554654.5,379771.63,0,0,0,1145.1641 +10807,13191,23517,23516,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.7541642,7.7124848,37,-6,59.155155,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7410488,8.074007,57.93,46.29,69.48999999999999,15.42,8.333333333333334,1,1,0,0,5,8,3,0,873.5,880043.94,554654.5,379771.63,0,0,0,1145.1641 +10808,13192,23518,23519,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.4442482,8.260602,0,10,3,119.78902,0,3,3,2021,13,1,53,13,1,1,0,14.194137,14.194137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,26.53,43.58,41.3,5,1,1,0,0,10,13,4,0,501,434127.94,157286.03,188632.47,0,9354.9512,0,2299.7483 +10808,13192,23519,23518,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.1991272,7.1161013,0,10,-3,-3.060421,0,3,3,2021,12,0,4,5,1,0,0,45.131203,45.131203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.58,41.3,51.67,26.53,5,1,1,0,0,10,13,4,0,501,434127.94,157286.03,188632.47,0,9354.9512,0,2299.7483 +10808,13193,23520,-9,23519,23518,1,0,34,0,0,0,1,1,-9,0,3,8.6494904,8.6325464,0,0,0,-1047.47,0,2,2,2021,9,0,36,36,1,0,1,17.24889,17.24889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,10,13,5,0,1460,232125.69,275764,58445.57,32449.463,0,0,1644.2979 +10808,13194,23521,-9,23519,23518,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-949.31494,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,8.333333333333334,1,1,1,0,0,13,2,0,893,272283.34,0,0,0,0,0,-233.94888 +10809,13195,23522,23523,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.2691917,5.4530807,7,-5,18.943609,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1853476,37.57,56.9,25.86,55.71,8.333333333333334,1,1,0,0,4,7,3,1,1272.5,1241054.6,814214.13,0,0,2062.1958,0,2543.3027 +10809,13195,23523,23522,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4890556,8.4696121,7,5,103.1899,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,2.090416,8.4841452,25.86,55.71,37.57,56.9,3.333333333333333,1,1,0,0,0,7,3,1,1272.5,1241054.6,814214.13,0,0,2062.1958,0,2543.3027 +10810,13196,23524,-9,23525,23526,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.76904,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10810,13196,23525,23526,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,7.9306788,7.6257291,0,6,-4,83.623726,0,2,2,2021,2,0,21,21,1,0,0,14.799027,14.799027,.05,.05,0,0,0,0,0,0,0,0,0,3.1420383,0,59.58,42.78,52,55,10,1,1,0,0,4,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10810,13196,23526,23525,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,9.0244112,9.4203568,0,14,4,-94.829613,0,-9,-9,2021,9,0,37,37,1,1,0,24.790049,24.790049,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52,55,59.58,42.78,7,1,1,0,0,1,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10811,13197,23527,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-974.17572,0,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.66,35.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,364,-44885.965,0,0,0,0,0,1441.8964 +10812,13198,23528,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,.22415127,.5251897,0,0,-1062.543,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.67533797,63.48,51.85,-9,-9,8.333333333333334,4,5,1,0,2,10,2,1,516,485141.59,0,302388.47,0,0,0,-35.424747 +10813,13199,23529,23530,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.325613,7.0925741,0,16,0,-99.418785,0,3,3,2021,11,0,23,20,1,0,0,7.4737644,7.4737644,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,32.71,59.08,6.666666666666667,1,1,0,1,13,12,2,1,729.5,373603,-5664.5879,199078.13,32828.676,0,28676.711,829.26031 +10813,13199,23530,23529,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,0,0,0,18,0,69.25425,0,2,2,2021,9,1,0,41,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,32.71,59.08,54.2,57.49,5,1,1,1,1,12,12,2,1,729.5,373603,-5664.5879,199078.13,32828.676,0,28676.711,829.26031 +10814,13200,23531,23533,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.274641,8.8072157,0,12,1,-22.282351,0,2,-9,2021,12,0,40,42,1,0,0,14.136803,14.136803,0,0,0,0,0,0,0,7,1,1,0,0,0,41.98,38.62,45.18,54.77,8.333333333333334,1,1,0,0,10,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10814,13200,23532,-9,23531,23533,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.30127,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10814,13200,23533,23531,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.3752975,8.3742523,0,12,-1,-46.373024,0,2,2,2021,14,3,40,40,1,3,0,13.749588,13.749588,0,0,0,0,0,0,0,2,1,1,0,0,0,45.18,54.77,41.98,38.62,3.333333333333333,1,1,0,0,8,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10815,13201,23534,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.2807517,7.6176434,0,0,0,-1098.0426,0,3,3,2021,11,0,30,30,1,0,0,8.2268114,8.2268114,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,131,-26145.008,0,0,0,0,0,1249.131 +10815,13202,23535,-9,23534,-9,1,0,21,0,0,0,2,2,-9,0,4,7.6487765,7.7365227,0,0,0,-953.58881,0,3,-9,2021,11,0,33,27,1,2,1,5.475698,5.475698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,3,0,205,-445.44815,-94627.359,0,0,0,0,808.33099 +10816,13203,23536,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,6.7105856,6.9223638,0,0,-1052.3501,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,16.922123,0,0,1,1,0,3.3719296,6.826292,52.5,16.52,-9,-9,5,1,1,0,0,0,9,2,1,157,157311.03,56649.973,246673.08,0,0,0,1980.929 +10817,13204,23537,23538,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4760437,8.6551752,0,35,5,42.167057,0,3,3,2021,14,2,12,41,1,2,0,66.016281,66.016281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,48.93,39.82,5,1,1,0,0,15,6,5,1,491.5,480052.59,430992.44,63663.824,41228.25,11130.072,0,3164.4639 +10817,13204,23538,23537,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.6644588,8.0672712,0,35,-5,31.27998,0,3,-9,2021,7,0,35,30,1,0,0,7.4920082,7.4920082,.05,.05,0,0,0,0,0,0,0,0,0,7.2707238,0,48.93,39.82,49.84,48.57,6.666666666666667,1,1,0,0,15,6,5,1,491.5,480052.59,430992.44,63663.824,41228.25,11130.072,0,3164.4639 +10818,13205,23539,-9,-9,23540,1,1,50,0,0,0,3,3,-9,0,5,8.0275097,8.103694,0,0,0,-994.05939,0,3,3,2021,8,0,43,0,1,0,0,7.7808867,7.7808867,.05,.05,0,0,0,0,0,0,1,1,0,2.158186,0,40.03,62.02,-9,-9,10,1,1,0,0,13,13,4,1,463,270112.72,68705.602,175394.06,0,0,0,978.84296 +10818,13206,23540,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.27264,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,4,6,0,0,0,13,1,1,400,192499.34,0,117839.96,0,0,0,1262.7246 +10819,13207,23541,23542,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.6860189,8.4415874,0,14,-1,85.634232,0,2,2,2021,13,2,37,34,1,2,0,17.827532,17.827532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.7,60.38,48.77,57.64,8.333333333333334,2,3,0,0,13,12,5,1,361,498266.81,54889.336,251391.31,89964.719,0,17747.262,5010.4756 +10819,13207,23542,23541,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6958933,8.7207212,0,14,1,46.1395,0,2,2,2021,11,1,30,30,1,1,0,23.627127,23.627127,.05,.05,0,0,0,0,0,0,1,1,0,2.6650376,0,48.77,57.64,27.7,60.38,5,2,3,0,0,12,12,5,1,361,498266.81,54889.336,251391.31,89964.719,0,17747.262,5010.4756 +10820,13208,23543,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.949913,7.9299631,0,0,-980.43182,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7917514,61.1,46.17,-9,-9,10,1,1,0,0,8,13,4,1,496,1105773.9,473152.81,0,0,0,0,2494.5398 +10821,13209,23544,-9,23545,23546,1,1,44,0,0,0,1,1,-9,0,3,8.0849771,7.9423132,0,0,0,-1070.8367,0,1,3,2021,10,0,38,38,1,0,0,10.604752,10.604752,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.37,61.5,-9,-9,5,1,1,0,0,10,5,4,1,261,21030.711,34641.762,0,0,0,0,948.87817 +10821,13210,23545,23546,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,8,-5,0,0,2,3,2021,7,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,57.16,56.15,8.333333333333334,1,1,0,0,9,5,1,1,1364.5,607310.25,0,515555.47,0,0,0,2098.0825 +10821,13210,23546,23545,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,8,5,0,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.7,53.75,10,1,1,0,0,6,5,1,1,1364.5,607310.25,0,515555.47,0,0,0,2098.0825 +10822,13211,23547,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.7039623,7.7297029,0,0,-992.27771,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3871984,7.468472,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,782,702730.75,72327.742,610073.81,0,0,0,2714.448 +10823,13212,23548,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.40265,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,27.373396,0,0,1,1,0,0,0,43.36,54.78,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,465,-33276.223,0,0,0,0,0,616.83685 +10824,13213,23549,-9,23550,23551,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.7405,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23550,23551,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,0,0,0,18,-2,-98.838211,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.86110598,0,43.54,59.6,57.06,57.76,8.333333333333334,1,1,0,0,4,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23551,23550,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.5059376,9.4238005,0,8,2,25.220978,0,-9,-9,2021,7,0,40,39,1,0,0,30.63525,30.63525,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.54,59.6,8.333333333333334,1,1,0,0,8,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23552,-9,23550,23551,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.06226,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10825,13214,23553,-9,23557,23555,1,1,17,0,3,1,2,0,-9,0,2,0,0,0,0,0,-992.47559,-9,1,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23554,-9,23557,23555,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.7244,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23555,23557,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,7.8993564,8.11938,0,10,-3,-62.28495,0,-9,-9,2021,6,0,44,44,1,0,0,8.0709572,8.0709572,.05,.05,0,0,0,0,0,0,1,1,0,1.6403401,0,61.45,32.4,64.58,36.76,6.666666666666667,2,3,0,0,13,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23556,-9,23557,23555,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-937.38776,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23557,23555,-9,-9,1,0,41,0,3,0,1,1,-9,0,2,0,0,0,24,3,-57.143372,0,3,3,2021,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.58,36.76,61.45,32.4,10,2,3,0,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23558,-9,23557,23555,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.651,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13215,23559,-9,23557,23555,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1101.0586,-9,1,2,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.52,39.18,-9,-9,10,2,3,0,1,0,4,1,1,4757,180066.19,0,147028.92,0,0,0,0 +10826,13216,23560,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1070.8831,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.91,23.87,-9,-9,5,1,1,0,0,0,1,1,0,699,-112862.23,0,0,0,0,44.206841,1246.6195 +10827,13217,23561,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.7900505,8.7941647,0,0,0,-967.3623,0,2,2,2021,5,0,46,48,1,0,0,10.540061,10.540061,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1504,-59716.609,100528.35,0,0,5320.7197,0,2684.4124 +10828,13218,23562,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.9294,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.65,56.8,-9,-9,8.333333333333334,1,1,0,0,8,8,1,1,944,-37325.266,0,0,0,0,0,1177.406 +10829,13219,23563,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.832293,7.735837,0,1,30,25.8706,0,-9,3,2021,11,0,40,45,1,0,0,7.7702012,7.7702012,0,0,0,0,0,0,0,0,0,0,0,7.4159493,0,54.38,49.11,35.53,63.81,6.666666666666667,1,1,0,0,10,9,5,1,156,86758.859,-26172.369,122527.63,0,0,0,2158.4836 +10829,13220,23564,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.5497961,8.5577803,0,1,-30,-102.58224,-9,-9,-9,2021,11,2,40,0,1,2,0,13.287509,13.287509,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.53,63.81,54.38,49.11,8.333333333333334,1,1,0,0,1,9,5,1,155,44354.285,23528.012,0,0,0,0,856.41296 +10830,13221,23565,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.5742331,7.8165197,0,0,-1111.2971,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4806663,7.4993229,54.45,27.09,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,589,1301985.6,144215.08,931387.56,0,0,0,1676.7659 +10831,13222,23566,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.4370627,7.3903413,0,0,-957.67853,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2243962,7.4938679,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,5706,717171.88,105778.74,219381.69,0,0,0,1430.0439 +10832,13223,23567,23568,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.3968906,8.3063211,0,7,8,19.026558,0,2,1,2021,13,1,37,37,1,1,0,11.313382,11.313382,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.89,57.17,20.32,52.93,5,1,1,0,0,8,5,5,1,850,751666.25,458779.5,189508.31,29617.355,0,0,3249.854 +10832,13223,23568,23567,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.1740885,8.3075027,0,7,-8,63.948269,0,2,2,2021,24,12,45,44,1,12,0,6.7761865,6.7761865,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.32,52.93,36.89,57.17,5,1,1,0,0,8,5,5,1,850,751666.25,458779.5,189508.31,29617.355,0,0,3249.854 +10833,13224,23569,23570,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.7735586,8.5698996,0,1,-13,127.05016,-9,-9,-9,2021,15,5,53,0,1,5,0,11.715505,11.715505,.05,.05,.05,0,0,0,0,0,1,1,0,3.1979084,0,42.62,60.15,44.13,58.1,8.333333333333334,1,1,0,0,8,5,5,0,545,1920761.5,1516097.4,286793.94,221700.75,0,0,3838.0347 +10833,13224,23570,23569,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8306484,8.6381531,0,1,13,109.81434,0,-9,-9,2021,23,9,96,48,1,9,0,7.6038036,7.6038036,0,0,0,0,0,0,0,0,1,1,0,5.7299232,0,44.13,58.1,42.62,60.15,6.666666666666667,1,1,0,0,8,5,5,0,545,1920761.5,1516097.4,286793.94,221700.75,0,0,3838.0347 +10834,13225,23571,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5761633,8.6089029,0,0,0,-1014.7255,0,3,3,2021,12,0,40,40,1,0,0,17.02738,17.02738,.05,.05,0,0,0,0,0,0,1,1,0,1.3072354,0,38,56.63,-9,-9,5,1,1,0,0,12,1,5,1,818,890573.88,818474.56,116576.02,45866.145,15578.235,0,1511.6066 +10835,13226,23572,23573,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.0246763,7.9804449,33,6,11.271147,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.6715233,8.0579472,63.38,53.47,57.7,50.34,8.333333333333334,1,1,0,0,4,9,5,1,691.5,1365753.9,69308.766,967497.63,0,0,0,4111.3066 +10835,13226,23573,23572,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.7268648,8.6944714,0,33,-6,28.974741,0,2,3,2021,8,0,52,50,1,0,0,18.269377,18.269377,0,0,0,0,0,0,0,0,1,1,0,0,0,57.7,50.34,63.38,53.47,8.333333333333334,1,1,0,0,12,9,5,1,691.5,1365753.9,69308.766,967497.63,0,0,0,4111.3066 +10836,13227,23574,23575,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,36,2,39.188126,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9456441,0,38.16,47.36,51.83,57.2,8.333333333333334,2,3,0,0,0,9,5,1,242.5,2141178.5,1369744.8,793039.63,0,0,0,12151.91 +10836,13227,23575,23574,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.910305,9.1722946,37,-2,23.998901,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.935854,8.8011942,51.83,57.2,38.16,47.36,8.333333333333334,1,1,0,0,3,9,5,1,242.5,2141178.5,1369744.8,793039.63,0,0,0,12151.91 +10837,13228,23576,23577,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6163163,6.835772,40,3,-14.749275,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8332272,48,37,32.15,45.39,1.666666666666667,1,1,0,0,9,10,3,1,740,162276.48,46073.891,112931.58,0,0,0,1698.8975 +10837,13228,23577,23576,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.69137,6.8672786,0,40,-3,-14.787768,-9,3,3,2021,13,1,15,0,1,1,0,7.1539769,7.1539769,0,0,0,0,0,0,0,7,1,1,0,0,0,32.15,45.39,48,37,0,1,1,0,0,12,10,3,1,740,162276.48,46073.891,112931.58,0,0,0,1698.8975 +10838,13229,23578,23579,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.4273405,8.0426426,48,0,10.864581,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2628741,7.9149117,57.34,39.89,60.12,54.8,8.333333333333334,1,1,0,0,6,9,3,1,674,1790928.5,808871.38,436630.06,0,0,0,2856.2903 +10838,13229,23579,23578,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9548163,5.9367623,48,0,50.956741,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5272689,6.1082997,60.12,54.8,57.34,39.89,10,1,1,0,0,5,9,3,1,674,1790928.5,808871.38,436630.06,0,0,0,2856.2903 +10839,13230,23580,23581,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.3028836,5.9318838,31,-11,-50.583183,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5692534,0,53.81,53.56,58.62,52.91,8.333333333333334,1,1,0,0,0,13,4,1,638.5,2860523.3,2336332.5,410564.28,0,0,0,2783.6536 +10839,13230,23581,23580,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.5056686,8.2955198,31,11,61.104694,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3719177,58.62,52.91,53.81,53.56,8.333333333333334,1,1,0,0,0,13,4,1,638.5,2860523.3,2336332.5,410564.28,0,0,0,2783.6536 +10840,13231,23582,-9,23583,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.7897,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10840,13231,23583,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,0,0,-979.90302,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,48.24,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10840,13231,23584,-9,23583,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10841,13232,23585,23586,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,8.2230034,8.4647055,0,12,-2,55.970524,0,2,1,2021,8,0,32,32,1,0,0,20.508539,20.508539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.11,53.57,51.83,57.2,10,1,1,0,0,12,12,5,1,196.5,1611606.3,608334.81,408103.47,0,0,0,4643.5342 +10841,13232,23586,23585,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.1485786,9.14046,0,12,2,64.049469,0,2,1,2021,6,0,5,37,1,0,0,180.25201,180.25201,.05,.05,0,0,0,0,0,0,1,1,0,3.8169045,0,51.83,57.2,54.11,53.57,8.333333333333334,1,1,0,0,12,12,5,1,196.5,1611606.3,608334.81,408103.47,0,0,0,4643.5342 +10842,13233,23587,-9,-9,-9,1,0,25,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.25415912,0,23.1,43.9,46,58,5,1,1,1,0,0,8,1,0,475,-216816.78,0,0,0,0,0,.3150501 +10843,13234,23588,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.8263626,8.6187658,0,0,-897.08514,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1530094,9.0174389,42.95,54.48,-9,-9,3.333333333333333,1,1,0,0,5,6,5,1,80,1643991.4,899964.38,455109.09,0,0,0,5468.9355 +10843,13235,23589,-9,-9,23588,1,1,37,0,0,0,2,2,-9,0,3,8.3579741,8.7444859,0,0,0,-977.25537,0,-9,1,2021,19,7,64,60,1,7,0,9.6078653,9.6078653,.05,.05,0,0,0,0,0,2,1,1,0,3.7902391,0,41.13,58.45,-9,-9,3.333333333333333,1,1,0,0,14,6,5,1,391,454295.25,270744.66,47627.922,56790.301,0,0,1800.7871 +10844,13236,23590,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.4272685,7.5395579,0,0,0,-1022.3416,0,3,3,2021,12,0,37,37,1,0,0,6.8992987,6.8992987,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,-9,-9,6.666666666666667,1,1,0,0,11,4,3,1,741,-17198.813,124282.13,0,0,7866.7905,0,682.87988 +10845,13237,23591,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.4272718,8.3591928,6.7049098,0,0,-1089.9434,0,2,-9,2021,19,6,38,38,1,6,0,12.478404,12.478404,.05,.05,0,0,0,0,0,0,1,1,0,7.3014488,0,30.91,53.53,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,425.5,291119.53,172912.97,0,0,0,245.34344,2020.8313 +10845,13237,23592,-9,23591,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.11774,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,425.5,291119.53,172912.97,0,0,0,245.34344,2020.8313 +10846,13238,23593,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.36475,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,9.4952412,0,0,1,1,0,0,0,37.63,43.85,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,583,77131.906,0,0,0,0,0,2061.1409 +10847,13239,23594,23595,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.1448507,8.0918255,0,5,3,-117.14259,0,-9,-9,2021,7,0,38,38,1,0,0,10.692593,10.692593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.91,48.98,51.24,58.84,6.666666666666667,1,1,0,0,5,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10847,13239,23595,23594,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.9194169,7.8700399,0,5,-3,-18.472317,0,1,1,2021,10,2,19,38,1,2,0,18.588238,18.588238,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.91,48.98,8.333333333333334,1,1,0,0,11,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10847,13239,23596,-9,23595,23594,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.2831,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10848,13240,23597,23599,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.9426699,8.828702,0,22,-1,-37.494747,-9,2,2,2021,12,3,41,0,1,3,0,15.922365,15.922365,.05,.05,0,0,0,0,0,0,1,1,0,3.4946032,0,57.06,57.76,39.61,57.54,10,1,1,0,0,13,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10848,13240,23598,-9,23597,23599,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.45959,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10848,13240,23599,23597,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,8.9131899,9.0110836,0,21,1,29.126343,0,2,2,2021,10,0,45,95,1,0,0,18.359518,18.359518,.05,.05,.05,0,0,0,0,0,1,1,0,4.312273,0,39.61,57.54,57.06,57.76,6.666666666666667,1,1,0,0,13,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10849,13241,23600,23601,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.2519865,7.631022,8,4,67.853836,0,2,1,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,4.1959314,7.2749839,50.74,22.18,58.8,47.36,8.333333333333334,1,1,0,0,4,10,5,1,1454,1234050.3,849670.75,648304.31,262796.69,0,1226.2351,5849.793 +10849,13241,23601,23600,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.8205719,9.8048191,0,8,-4,-52.130711,0,1,2,2021,7,0,52,40,1,0,0,31.901093,31.901093,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,58.8,47.36,50.74,22.18,10,1,1,0,0,9,10,5,1,1454,1234050.3,849670.75,648304.31,262796.69,0,1226.2351,5849.793 +10850,13242,23602,23603,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.2034841,5.6033545,51,-1,61.398624,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6702299,5.8068953,42.94,38.88,52.48,54.33,6.666666666666667,1,1,0,0,1,6,4,1,241.5,800786.75,458688.53,155245.61,0,0,0,3038.9697 +10850,13242,23603,23602,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.524332,8.0158319,51,1,70.898911,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.4420347,8.1859722,52.48,54.33,42.94,38.88,8.333333333333334,1,1,0,0,0,6,4,1,241.5,800786.75,458688.53,155245.61,0,0,0,3038.9697 +10851,13243,23604,23606,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,7.3802748,7.5443902,0,26,2,-117.37623,0,3,3,2021,12,0,24,29,1,0,0,10.557906,10.557906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.92,42.25,55.53,35.49,5,2,3,0,0,12,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23605,-9,23606,23604,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.0363,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23606,23604,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,0,0,0,26,-2,53.920666,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.53,35.49,55.92,42.25,5,2,3,0,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23607,-9,23606,23604,1,1,17,0,1,1,3,0,0,0,2,0,0,0,0,0,-805.06891,-9,3,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.59,46.97,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13244,23608,-9,23606,23604,1,1,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-1067.9657,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.15,56.05,-9,-9,0,2,3,1,1,0,2,2,1,363,33633.078,0,0,0,0,0,0 +10851,13245,23609,-9,23606,23604,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-916.32513,-9,3,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4550362,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,2552,0,0,0,0,0,0,830.47443 +10852,13246,23610,-9,23612,23614,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23611,-9,23612,23614,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.7976,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23612,23614,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,0,0,0,5,-7,54.026989,0,-9,-9,2021,16,4,0,45,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,57.16,56.15,8.333333333333334,1,1,0,0,6,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23613,-9,23612,23614,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.8461,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23614,23612,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,9.4091682,9.4968519,0,5,7,4.4037685,0,2,2,2021,11,0,70,90,1,0,0,20.408901,20.408901,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.12,57.28,5,1,1,0,0,6,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10853,13247,23615,23617,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.8354902,8.7715244,0,20,1,-.91041142,0,2,1,2021,8,0,42,43,1,0,0,22.624962,22.624962,.05,.05,0,0,0,0,0,0,0,0,0,6.4535193,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,13,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23616,-9,23617,23615,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.1241,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23617,23615,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.0581789,8.7568502,0,20,-1,-5.1555786,0,1,1,2021,5,0,38,70,1,0,0,22.848108,22.848108,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,12,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23618,-9,23617,23615,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-868.12189,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10854,13248,23619,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1979361,8.2756071,0,4,-16,-46.55032,0,-9,-9,2021,7,0,50,45,1,0,0,10.987663,10.987663,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.36,56.72,38.9,48.23,3.333333333333333,1,1,0,0,6,12,5,0,259,-288405.97,121535.92,0,0,0,0,1602.0354 +10854,13249,23620,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.6534052,8.651185,0,4,16,24.808537,0,-9,-9,2021,12,0,43,35,1,0,0,15.538032,15.538032,0,0,0,0,0,0,0,0,0,0,0,7.7148547,0,38.9,48.23,44.36,56.72,6.666666666666667,1,1,0,0,12,12,5,0,376,-140795.86,0,0,0,0,0,2553.3723 +10855,13250,23621,23622,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.2037458,8.1394424,0,5,1,34.397732,0,-9,-9,2021,12,0,40,40,1,0,0,10.831726,10.831726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42,42.91,6.666666666666667,1,1,0,0,8,12,4,1,979.5,290308.69,4472.0381,147854.64,0,0,0,2243.2449 +10855,13250,23622,23621,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.8298798,7.61551,0,20,-1,174.93349,0,-9,-9,2021,14,3,27,27,1,3,0,8.5957203,8.5957203,0,0,0,0,0,0,0,0,1,1,0,0,0,42,42.91,54.79,55.86,8.333333333333334,1,1,0,0,10,12,4,1,979.5,290308.69,4472.0381,147854.64,0,0,0,2243.2449 +10856,13251,23623,-9,23624,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5599,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23624,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,8.0414734,8.6519766,8.2650833,0,0,-1021.0887,0,2,2,2021,12,0,37,22,1,0,0,13.160306,13.160306,.05,.05,0,0,0,0,0,0,1,1,0,7.9775658,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23625,-9,23624,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-862.4295,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23626,-9,23624,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.5477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10857,13252,23627,23630,-9,-9,1,1,33,1,2,0,3,3,-9,0,5,8.2262077,8.4364586,0,7,-7,168.56879,0,2,2,2021,10,0,55,50,1,0,0,11.499786,11.499786,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.06,60.14,41.6,53.74,8.333333333333334,1,1,0,0,8,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23628,-9,23630,23627,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.8476,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23629,-9,23630,23627,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.04675,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23630,23627,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.7957253,8.0054388,0,7,7,-66.551659,0,2,2,2021,12,0,30,30,1,0,0,10.919231,10.919231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.6,53.74,44.06,60.14,8.333333333333334,1,1,0,0,8,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10858,13253,23631,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.1780992,7.2641988,0,0,0,-909.07904,0,-9,-9,2021,8,1,25,37,1,1,0,7.2391205,7.2391205,0,0,0,0,0,0,0,0,0,0,0,1.8951908,0,52.82,53.97,-9,-9,10,1,1,0,0,7,5,3,1,2516,-57161.418,3868.3953,0,0,0,6814.2017,433.68799 +10859,13254,23632,23633,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.3702011,7.0886998,47,-4,43.438114,0,3,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.113296,59.53,56.44,57.06,57.76,10,1,1,0,0,7,7,2,1,403.5,168301.39,105721.67,267710.66,0,4466.7983,0,1843.0178 +10859,13254,23633,23632,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.4175177,6.3930874,47,4,4.7969785,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5347557,57.06,57.76,59.53,56.44,10,1,1,0,0,5,7,2,1,403.5,168301.39,105721.67,267710.66,0,4466.7983,0,1843.0178 +10860,13255,23634,-9,23638,23636,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-912.76404,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,56.96,51,-9,-9,10,1,1,0,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23635,-9,23638,23636,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.96307,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23636,23638,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,0,0,0,7,8,0,0,2,3,2021,8,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.73,54.56,49.42,27.84,5,1,1,1,1,3,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23637,-9,23638,23636,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.2406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23638,23636,-9,-9,1,0,34,0,3,0,2,2,-9,0,1,0,0,0,7,-8,0,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.42,27.84,38.73,54.56,5,1,1,0,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13256,23639,-9,23638,23636,1,1,22,0,3,0,1,1,-9,0,4,7.1167507,7.202179,0,0,0,-987.82593,0,2,3,2021,5,0,37,0,1,0,1,4.2440109,4.2440109,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,317,104638.61,-32887.836,0,0,0,0,480.83008 +10861,13257,23640,23641,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.6425076,8.3190908,1,0,158.99338,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5916815,8.4124289,53,47,54.2,57.49,8,4,1,0,0,0,13,4,1,515.5,1248421.5,633777,422443.56,0,0,0,4525.0498 +10861,13257,23641,23640,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,43,0,-70.408836,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3807478,0,54.2,57.49,53,47,8.333333333333334,1,1,0,0,0,13,4,1,515.5,1248421.5,633777,422443.56,0,0,0,4525.0498 +10862,13258,23642,-9,23645,23644,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.16821,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23643,-9,23645,23644,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1421,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23644,23645,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1508751,9.0176535,0,15,7,-17.000795,0,3,2,2021,13,4,40,40,1,4,0,30.984665,30.984665,.05,.05,0,0,0,0,0,2,1,1,0,7.686173,0,48.53,58.91,46.27,53,8.333333333333334,1,1,0,0,8,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23645,23644,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,9.4263296,9.6485386,0,15,-7,13.768017,0,1,2,2021,11,0,25,15,1,0,0,64.254105,64.254105,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,53,48.53,58.91,10,1,1,0,0,8,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10863,13259,23646,23647,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,10,1,83.547699,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.65,35.87,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,298.5,449642.78,153498.97,200105.95,0,0,0,1537.9535 +10863,13259,23647,23646,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.2257009,7.3545389,10,-1,-39.073891,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4602861,7.3908992,57.16,56.15,48.65,35.87,10,1,1,0,0,0,2,2,1,298.5,449642.78,153498.97,200105.95,0,0,0,1537.9535 +10863,13260,23648,-9,23646,23647,1,1,54,0,0,0,2,2,-9,0,4,7.7492027,7.7644405,0,0,0,-948.63989,0,2,3,2021,11,1,37,39,1,1,0,8.0254726,8.0254726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,5,1,1,0,0,11,2,3,1,270,35899.313,153401.39,0,0,0,0,848.9328 +10864,13261,23649,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.7424355,7.9222898,0,0,-991.5553,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.6413264,7.9114976,42.92,29.16,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1668,785110.31,348906.75,445374.13,0,0,0,591.63043 +10865,13262,23650,23651,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.1728268,7.1252666,63,6,5.7605705,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8741765,55,45,52,45,8,1,1,0,0,0,4,3,1,947.5,763430.25,123852.82,293728.56,0,0,0,2420.8198 +10865,13262,23651,23650,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.4786243,7.2015181,63,-6,-73.944038,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.3514695,9.5893755,30.348948,0,1,1,0,0,7.1117673,52,45,55,45,8,1,1,0,0,0,4,3,1,947.5,763430.25,123852.82,293728.56,0,0,0,2420.8198 +10866,13263,23652,23654,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.4334931,6.4522514,0,12,-1,48.960308,0,2,2,2021,15,5,22,18,1,5,0,3.5179529,3.5179529,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,60.56,50.18,50.45,8.333333333333334,2,3,0,0,11,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23653,-9,23652,23654,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23654,23652,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,7.7750382,7.2775578,0,12,1,190.37202,0,2,3,2021,9,0,38,38,1,0,0,6.5263848,6.5263848,0,0,0,0,0,0,0,0,1,1,0,0,0,50.18,50.45,36.22,60.56,8.333333333333334,2,3,0,0,13,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23655,-9,23652,23654,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.55688,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10867,13264,23656,23657,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.6473112,7.844274,0,7,-3,68.669762,0,2,3,2021,8,0,38,38,1,0,0,7.3032904,7.3032904,0,0,0,0,0,0,0,0,0,0,0,0,0,56.19,41.56,41.34,56.62,8.333333333333334,1,1,0,0,7,5,3,1,564.5,46594.918,43283.184,129535.03,23810.207,1762.6298,0,1692.6924 +10867,13264,23657,23656,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5372748,7.3232131,0,7,3,-30.612978,0,3,3,2021,7,0,28,28,1,0,0,8.2878904,8.2878904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,56.19,41.56,10,1,1,0,0,8,5,3,1,564.5,46594.918,43283.184,129535.03,23810.207,1762.6298,0,1692.6924 +10868,13265,23658,23659,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.227809,8.1691685,0,33,-1,20.780336,0,2,2,2021,11,0,42,41,1,0,0,8.8840389,8.8840389,.05,.05,0,0,0,0,0,0,0,0,0,.37547469,0,48.87,58.55,55.96,49.93,5,1,1,0,0,10,9,4,1,848,11600.625,69894.195,0,0,1797.1138,0,2300.9089 +10868,13265,23659,23658,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.4216652,6.8271637,0,33,1,32.878033,0,2,3,2021,11,0,10,0,1,0,0,10.669314,10.669314,0,0,0,0,0,0,0,0,0,0,0,2.4117987,0,55.96,49.93,48.87,58.55,8.333333333333334,1,1,0,0,2,9,4,1,848,11600.625,69894.195,0,0,1797.1138,0,2300.9089 +10868,13266,23660,-9,23659,23658,1,1,21,0,0,0,2,2,-9,0,4,6.8801727,6.8310752,0,0,0,-961.19067,-9,2,2,2021,13,1,26,0,1,1,1,3.7490919,3.7490919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,5,9,2,1,463,-209797.33,29430.379,0,0,0,0,-191.63518 +10869,13267,23661,23663,-9,-9,1,1,44,1,2,0,2,2,-9,0,5,8.8565598,8.5945024,0,5,8,67.391388,0,2,2,2021,8,0,50,46,1,0,0,18.977575,18.977575,.05,.05,.05,0,0,0,0,0,1,1,0,4.2561965,0,54.63,58.83,55.19,54.26,10,1,1,0,0,8,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23662,-9,23663,23661,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.88123,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23663,23661,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.4826922,7.7743278,0,5,-8,-32.008972,0,-9,-9,2021,12,0,27,30,1,0,0,9.8879232,9.8879232,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54.63,58.83,8.333333333333334,1,1,0,0,10,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23664,-9,23663,23661,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.89624,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10870,13268,23665,23666,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.0586147,7.7696233,8,-3,183.64999,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6715095,7.3743238,57.16,56.15,57.09,46.7,10,1,1,0,0,2,9,2,1,863,700206.75,270117.91,230283.66,0,0,0,2358.375 +10870,13268,23666,23665,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,8,3,56.378777,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3746305,0,57.09,46.7,57.16,56.15,10,1,1,0,0,1,9,2,1,863,700206.75,270117.91,230283.66,0,0,0,2358.375 +10871,13269,23667,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.9730606,8.6809292,0,0,0,-1001.4368,0,1,1,2021,18,6,35,39,1,6,0,12.323336,12.323336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6.666666666666667,2,3,0,0,3,1,4,0,1197,-46527.648,103179.75,0,0,0,0,2405.5002 +10872,13270,23668,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.5794659,7.6132212,0,0,-870.65973,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,27.177071,.97908455,234.59259,0,1,1,0,0,7.4416203,41.51,36.41,-9,-9,5,1,1,0,1,0,9,3,1,580,680655.38,383123.38,231796.66,0,0,0,1660.88 +10873,13271,23669,-9,23671,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.9318,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10873,13271,23670,-9,23671,-9,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-936.22394,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10873,13271,23671,-9,-9,-9,1,0,44,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1052.8439,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,45.39,14.45,-9,-9,5,1,1,0,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10874,13272,23672,23673,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.3209629,8.1557531,7.8738475,28,2,-34.612755,0,2,2,2021,10,0,20,30,1,0,0,19.025188,19.025188,0,0,0,0,0,0,0,2,0,0,0,.84666932,8.0616922,50.72,46.82,37.9,18.09,6.666666666666667,1,1,0,0,10,9,5,1,502.5,2809506,1991391,464197.5,0,0,0,3330.7339 +10874,13272,23673,23672,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,5.7843513,6.8529348,6.2449708,28,-2,-22.241652,0,-9,-9,2021,12,2,5,5,1,2,0,6.1672711,6.1672711,0,0,0,0,0,0,0,14.5,0,0,0,3.2333627,6.5560369,37.9,18.09,50.72,46.82,8.333333333333334,1,1,0,0,3,9,5,1,502.5,2809506,1991391,464197.5,0,0,0,3330.7339 +10874,13273,23674,-9,23673,23672,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1067.3179,1,1,1,2021,11,1,0,17,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,240,-244831.81,0,0,0,0,0,0 +10875,13274,23675,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.066658,8.1501694,0,0,0,-1098.563,0,2,1,2021,12,1,30,42,1,1,0,12.025298,12.025298,.05,.05,0,0,0,0,0,0,0,0,0,6.761919,0,43.32,54.23,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,767,88195.742,-106294.83,0,0,0,4916.854,1612.5746 +10876,13275,23676,23677,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.3430986,8.0956697,10,-8,-111.69565,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7065434,7.7945695,57.16,56.15,58.5,44.67,8.333333333333334,1,1,0,0,0,13,5,1,718.5,1464664.4,374907.5,643508.75,0,0,0,4670.3794 +10876,13275,23677,23676,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9491558,8.0418034,10,8,-12.127181,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.9893909,8.0868444,58.5,44.67,57.16,56.15,10,1,1,0,0,0,13,5,1,718.5,1464664.4,374907.5,643508.75,0,0,0,4670.3794 +10877,13276,23678,-9,23680,23679,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-881.83411,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13276,23679,23680,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.1946764,8.0496874,0,10,0,-10.5432,0,2,1,2021,12,1,40,45,1,1,0,10.421002,10.421002,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,54.12,44.39,39.12,5,1,1,0,0,11,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13276,23680,23679,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,10,0,131.32707,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5186281,0,44.39,39.12,38.54,54.12,5,1,1,1,0,0,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13277,23681,-9,23680,23679,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1032.609,0,3,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,2104,0,0,0,0,0,0,-598.92426 +10878,13278,23682,-9,23684,23685,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.3497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23683,-9,23684,23685,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-904.10181,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23684,23685,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.3343244,7.1143069,0,1,-1,-50.884045,0,2,2,2021,12,0,30,0,1,0,0,4.3159695,4.3159695,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,58,8.333333333333334,1,1,0,0,1,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23685,23684,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,7.5630608,7.5265093,0,1,1,-11.866089,0,2,2,2021,10,0,40,46,1,1,0,6.8433132,6.8433132,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,54.2,57.49,7,1,1,0,0,1,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23686,-9,23684,23685,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.76752,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10879,13279,23687,-9,23688,23690,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.646,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23688,23690,-9,-9,1,0,46,0,2,0,2,2,-9,0,1,5.9046841,5.6362,0,10,-7,-16.561995,0,3,2,2021,12,0,5,5,1,0,0,7.892169,7.892169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.35,49.42,44.02,60.7,6.666666666666667,1,1,0,0,5,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23689,-9,23688,23690,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1005.1096,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23690,23688,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.5619974,8.5511866,0,10,7,23.12986,0,2,2,2021,7,0,40,60,1,0,0,13.191673,13.191673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,52.35,49.42,1.666666666666667,1,1,0,0,12,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10880,13280,23691,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9678493,8.2582703,0,0,0,-1060.7223,0,2,-9,2021,18,6,40,39,1,6,0,7.7756944,7.7756944,0,0,0,0,0,0,0,0,0,0,0,0,0,44.13,58.1,-9,-9,6.666666666666667,2,3,0,0,6,8,4,0,192,22626.254,0,0,0,10372.509,0,949.69708 +10881,13281,23692,23693,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.8925338,7.750133,43,-1,35.02969,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7717912,7.3417664,49.04,55.86,44,38,8.333333333333334,1,1,0,0,10,10,3,1,427,1233740.8,479514.63,749377.63,0,0,0,883.08594 +10881,13281,23693,23692,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.5267353,5.7180991,43,1,-30.862309,0,2,2,2021,14,0,0,0,4,3,0,0,0,0,0,0,1,0,15.657738,0,0,0,0,0,0,6.016139,44,38,49.04,55.86,5,1,1,0,0,13,10,3,1,427,1233740.8,479514.63,749377.63,0,0,0,883.08594 +10882,13282,23694,23695,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.110486,4.0658298,36,-12,52.069363,0,2,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.8651943,4.016921,49.74,36.49,54,46,5,1,1,0,0,0,2,2,1,384.5,244393.69,-12928.859,33259.84,0,0,0,2883.3174 +10882,13282,23695,23694,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.8965764,6.9868302,36,12,-91.669739,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,3.228287,0,0,1,1,0,6.3386178,6.8154483,54,46,49.74,36.49,8,1,1,0,0,0,2,2,1,384.5,244393.69,-12928.859,33259.84,0,0,0,2883.3174 +10883,13283,23696,23697,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6386347,8.1564522,0,8,1,-200.64348,0,3,3,2021,9,1,30,0,1,1,0,14.851977,14.851977,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,43.61,56.01,8.333333333333334,1,1,0,0,9,12,5,1,905.5,467912.56,0,327540.44,0,0,0,3700.9033 +10883,13283,23697,23696,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3489227,8.6177979,0,8,-1,-128.52115,0,2,2,2021,10,0,44,44,1,0,0,11.65908,11.65908,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,905.5,467912.56,0,327540.44,0,0,0,3700.9033 +10884,13284,23698,23701,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.9866714,8.303525,0,11,1,49.766827,0,2,2,2021,10,1,47,47,1,1,0,12.575491,12.575491,.05,.05,0,0,0,0,0,7,1,1,0,6.856843,0,53.61,59.13,40.54,54.23,8.333333333333334,1,1,0,1,13,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23699,-9,23701,23698,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.1792,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23700,-9,23701,23698,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1016.2532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23701,23698,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,5.484488,6.6643333,5.8804364,11,-1,-9.5265675,0,2,3,2021,24,7,3,27,1,7,0,7.7555466,7.7555466,.05,.05,0,0,0,0,0,27,1,1,0,5.6701722,0,40.54,54.23,53.61,59.13,6.666666666666667,1,1,0,1,12,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10885,13285,23702,-9,23703,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.36304,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,398,131934.86,0,0,0,0,0,1469.658 +10885,13285,23703,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,0,0,0,0,-948.10541,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,4,2,1,0,398,131934.86,0,0,0,0,0,1469.658 +10886,13286,23704,23705,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.9764566,8.7553425,0,8,7,58.807457,0,3,2,2021,7,0,50,40,1,0,0,16.274433,16.274433,.05,.05,0,0,0,0,0,7,0,0,0,0,0,55.2,49.4,54.3,35.12,6.666666666666667,1,1,0,0,11,6,5,1,320.5,471810.88,404820.81,383102.25,234076.38,19943.994,1316.3265,4747.1768 +10886,13286,23705,23704,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.6446695,8.6023397,0,8,-7,-116.08945,0,2,1,2021,9,0,47,45,1,0,0,14.213551,14.213551,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.3,35.12,55.2,49.4,8.333333333333334,1,1,0,0,10,6,5,1,320.5,471810.88,404820.81,383102.25,234076.38,19943.994,1316.3265,4747.1768 +10887,13287,23706,-9,23708,23707,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.1215,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10887,13287,23707,23708,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.2737083,8.0346489,0,6,3,-104.39069,0,-9,-9,2021,12,0,37,48,1,0,0,11.886449,11.886449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,43.44,61.22,5,1,1,0,0,10,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10887,13287,23708,23707,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.3740158,8.8678408,0,6,-3,-17.909227,0,2,3,2021,6,0,31,30,1,0,0,17.531719,17.531719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.44,61.22,43.71,56.91,8.333333333333334,1,1,0,0,9,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10888,13288,23709,23710,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.2415338,5.3693376,10,-4,26.382223,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6805205,5.3174362,52.8,47.23,59.29,49.68,10,1,1,0,0,4,11,2,1,843,513974.81,83361.602,254440.38,0,0,0,1930.3381 +10888,13288,23710,23709,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.7825565,6.6035786,10,4,-1.5515616,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8391576,6.799521,59.29,49.68,52.8,47.23,10,1,1,0,0,3,11,2,1,843,513974.81,83361.602,254440.38,0,0,0,1930.3381 +10889,13289,23711,23712,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3193765,6.9152412,0,38,-4,33.675701,0,2,-9,2021,11,1,20,15,1,1,0,9.4884033,9.4884033,0,0,0,0,0,0,0,0,0,0,0,8.9146385,0,41.11,60.68,47.79,53.79,6.666666666666667,1,1,0,0,12,10,5,1,1270,37279.379,31763.439,134535.56,140627.19,0,4541.8252,5830.5098 +10889,13289,23712,23711,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6896753,8.8769455,0,38,4,42.17104,0,-9,-9,2021,12,2,50,40,1,2,0,12.171807,12.171807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.79,53.79,41.11,60.68,3.333333333333333,1,1,0,0,12,10,5,1,1270,37279.379,31763.439,134535.56,140627.19,0,4541.8252,5830.5098 +10890,13290,23713,23714,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.4311142,8.7781372,0,10,1,90.319633,0,2,3,2021,10,1,46,46,1,1,0,13.923318,13.923318,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,10,2,3,0,0,8,7,5,1,674.5,250395.03,36573.305,311679.56,223487.73,0,0,5773.8921 +10890,13290,23714,23713,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.0595255,8.8117552,0,10,-1,59.031879,0,-9,-9,2021,5,0,43,43,1,0,0,17.727512,17.727512,0,0,0,0,0,0,0,0,0,0,0,7.5499988,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,9,7,5,1,674.5,250395.03,36573.305,311679.56,223487.73,0,0,5773.8921 +10891,13291,23715,23716,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.2252197,8.3025818,0,5,1,32.096413,0,-9,-9,2021,11,0,42,40,1,0,0,9.5718822,9.5718822,.05,.05,0,0,0,0,0,0,0,0,0,.34735164,0,44.3,55.28,48.87,58.55,8.333333333333334,1,1,0,0,5,10,5,1,546,-80738.688,-23766.219,134842.81,116904.23,0,0,2850.8813 +10891,13291,23716,23715,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.9790902,8.2641592,0,5,-1,84.675453,0,1,-9,2021,12,2,39,39,1,2,0,7.3860264,7.3860264,.05,.05,0,0,0,0,0,0,0,0,0,.54298198,0,48.87,58.55,44.3,55.28,8.333333333333334,1,1,0,0,10,10,5,1,546,-80738.688,-23766.219,134842.81,116904.23,0,0,2850.8813 +10892,13292,23717,23720,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.7233477,8.4098568,0,6,6,-181.37239,0,2,2,2021,10,0,39,59,1,0,0,17.575274,17.575274,0,0,.05,0,0,0,0,0,1,1,0,7.84624,0,48.87,58.55,59.43,58.05,6.666666666666667,1,1,0,0,8,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23718,-9,23720,23717,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-959.12372,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23719,-9,23720,23717,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.98566,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23720,23717,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.5692463,7.4302812,0,6,-6,19.125843,0,2,2,2021,6,0,25,30,1,0,0,9.6413403,9.6413403,0,0,0,0,0,0,0,0,1,1,0,4.0748882,0,59.43,58.05,48.87,58.55,8.333333333333334,1,1,0,0,8,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10893,13293,23721,23722,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,7,6,72.497604,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.47,58.08,57.06,57.76,5,1,1,1,1,1,13,3,1,480,896697.75,603508.5,222750.31,0,0,0,1054.3688 +10893,13293,23722,23721,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0296583,8.5253258,0,7,-6,91.332573,0,3,3,2021,10,0,38,38,1,0,0,12.23726,12.23726,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.47,58.08,8.333333333333334,1,1,0,0,8,13,3,1,480,896697.75,603508.5,222750.31,0,0,0,1054.3688 +10893,13294,23723,-9,23722,23721,1,0,26,0,0,0,1,1,-9,0,3,8.3328047,8.0990915,0,0,0,-968.11334,0,3,3,2021,8,0,38,38,1,0,1,13.833152,13.833152,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,505,44232.648,-91414.063,0,0,0,0,1031.2156 +10894,13295,23724,23725,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.4811916,8.2983675,0,1,27,-67.711288,0,-9,-9,2021,11,0,40,40,1,0,0,11.951239,11.951239,.05,.05,0,0,0,0,0,0,0,0,0,2.8633888,0,38.41,58.52,57.41,54.88,8.333333333333334,1,1,0,0,11,11,4,1,586.5,63412.461,12526.99,0,0,2487.5874,3735.4126,2738.8184 +10894,13295,23725,23724,23726,-9,1,0,25,0,0,0,2,2,-9,0,4,7.1249228,6.9477897,0,1,-27,-113.70287,0,3,-9,2021,12,0,18,40,1,0,0,6.8057632,6.8057632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.41,54.88,38.41,58.52,8.333333333333334,1,1,0,0,7,11,4,1,586.5,63412.461,12526.99,0,0,2487.5874,3735.4126,2738.8184 +10894,13296,23726,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.2899919,7.3944421,0,0,0,-1008.9504,0,-9,-9,2021,12,0,18,18,1,2,0,7.2183294,7.2183294,.05,.05,0,0,0,0,0,0,0,0,0,1.90576,0,48,49,-9,-9,7,1,1,0,0,1,11,3,1,326,-83568.82,112090.05,43013.395,-21463.621,2734.6995,1345.585,1151.5167 +10895,13297,23727,23729,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,9.3040924,8.9977503,0,9,0,-51.824528,0,-9,-9,2021,11,0,37,37,1,0,0,28.968306,28.968306,.05,.05,0,0,0,0,0,0,0,0,0,4.4106493,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10895,13297,23728,-9,23729,23727,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5603,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10895,13297,23729,23727,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.6237965,8.6224422,0,9,0,161.76811,0,2,1,2021,12,0,39,40,1,0,0,18.977846,18.977846,.05,.05,0,0,0,0,0,0,0,0,0,4.9632802,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,11,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10896,13298,23730,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,4,0,6.9219742,6.9167795,0,0,-968.49963,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.629467,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,637,-92059.289,0,0,0,0,0,6.3366776 +10896,13299,23731,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,6.9969535,7.3323116,0,0,-1053.8066,-9,-9,-9,2021,23,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.439724,0,30.53,65.61,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,176,-26625.518,0,0,0,0,0,1052.0551 +10896,13300,23732,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.6248074,5.9608326,0,0,-949.99512,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0341082,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,608,-63056.109,0,0,0,0,0,-505.46506 +10897,13301,23733,23734,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.6385307,8.7928591,0,4,-16,53.145523,0,2,3,2021,12,0,65,60,1,0,0,7.0767155,7.0767155,0,0,0,0,0,0,0,0,0,0,0,0,0,35.78,63.13,14.78,60.88,8.333333333333334,1,1,0,0,9,2,5,1,407.5,178344.52,115404.03,123631.8,93572.328,2783.3757,1150.3851,4358.2451 +10897,13301,23734,23733,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.5692348,9.0707436,0,4,16,-89.392807,0,-9,-9,2021,28,12,60,56,1,12,0,11.393497,11.393497,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.78,60.88,35.78,63.13,3.333333333333333,1,1,0,0,12,2,5,1,407.5,178344.52,115404.03,123631.8,93572.328,2783.3757,1150.3851,4358.2451 +10898,13302,23735,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6681399,8.1601286,7.4799185,0,0,-912.03961,0,2,2,2021,11,0,24,24,1,0,0,11.154466,11.154466,.05,.05,0,0,0,0,0,2,0,0,0,5.1975245,7.7964864,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,332,110438.03,116963.42,0,0,0,0,2446.0334 +10899,13303,23736,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.9803553,8.5062733,0,0,0,-1077.1835,0,3,3,2021,8,0,38,40,1,0,0,23.536377,23.536377,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.45,43.74,-9,-9,6.666666666666667,1,1,0,0,12,7,5,1,444,252021.3,21478.916,263778.38,78308.164,0,0,2009.1665 +10900,13304,23737,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,4.7136674,4.4784369,0,0,-1035.1006,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8545697,5.0979528,57.74,44.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,922,-149799.5,-39691.316,0,0,0,0,843.11102 +10901,13305,23738,23739,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.2651939,8.2686605,0,32,4,47.924568,0,2,2,2021,7,0,35,34,1,0,0,12.891256,12.891256,0,0,.05,0,0,0,0,0,0,0,0,2.4299376,0,56.26,53.71,35.46,42.22,8.333333333333334,1,1,0,0,13,10,4,1,439,219519.72,26232.477,222919.09,0,17937.535,0,2869.6563 +10901,13305,23739,23738,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.4032202,7.2040014,0,28,-4,-54.564953,0,-9,-9,2021,15,3,22,25,1,3,0,7.6309237,7.6309237,0,0,0,0,0,0,0,2,0,0,0,0,0,35.46,42.22,56.26,53.71,8.333333333333334,1,1,0,0,12,10,4,1,439,219519.72,26232.477,222919.09,0,17937.535,0,2869.6563 +10902,13306,23740,-9,23742,23741,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.49597,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10902,13306,23741,23742,-9,-9,1,1,35,0,1,0,1,1,-9,0,3,8.7926893,8.56633,0,4,2,-8.9436045,0,1,1,2021,15,3,44,43,1,3,0,16.450037,16.450037,.05,.05,0,0,0,0,0,0,1,1,0,6.0918517,0,30.7,62.92,43.71,56.91,6.666666666666667,1,1,0,0,11,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10902,13306,23742,23741,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.9343052,8.0115118,0,4,-2,17.921122,0,2,3,2021,11,0,24,7,1,0,0,10.278867,10.278867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,30.7,62.92,6.666666666666667,1,1,0,0,12,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10903,13307,23743,-9,23746,23744,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.72485,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23744,23746,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,5.1618152,4.989069,0,23,0,-4.9291544,0,1,3,2021,12,0,40,40,1,0,0,.54691976,.54691976,0,0,0,0,0,0,1.4952751,0,1,1,0,0,0,40.24,54.56,43.65,58.28,5,1,1,0,0,11,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23745,-9,23746,23744,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.14752,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23746,23744,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.2642469,8.2345114,0,23,0,-28.099298,0,2,1,2021,11,0,28,45,1,0,0,11.751629,11.751629,0,0,0,0,0,0,0,0,1,1,0,0,0,43.65,58.28,40.24,54.56,5,1,1,0,0,11,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10904,13308,23747,23748,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,1,-21,70.658035,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,6.666666666666667,1,1,1,0,0,11,3,1,1718,8512.7334,0,187252.55,134385.31,0,0,1932.7988 +10904,13308,23748,23747,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.5246973,8.3108377,3.3198304,1,21,60.177097,-9,-9,-9,2021,10,0,55,0,1,0,0,6.0782681,6.0782681,0,0,0,0,0,0,0,0,1,1,0,0,3.3066077,57.65,56.13,57.16,56.15,5,1,1,0,0,8,11,3,1,1718,8512.7334,0,187252.55,134385.31,0,0,1932.7988 +10905,13309,23749,23750,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.8888884,9.0097723,0,7,0,-23.848919,0,2,3,2021,8,0,40,40,1,0,0,20.120842,20.120842,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.24,50.75,61.09,51.58,8.333333333333334,1,1,0,0,8,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13309,23750,23749,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.2451501,7.197444,0,7,0,117.7765,0,2,2,2021,6,0,20,18,1,0,0,8.0233421,8.0233421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.09,51.58,52.24,50.75,10,1,1,0,0,7,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13309,23751,-9,23750,23749,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1019.2197,-9,1,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13310,23752,-9,23750,23749,1,0,23,0,0,0,1,1,-9,0,4,8.2262135,8.1472349,0,0,0,-958.58856,0,1,2,2021,13,1,38,35,1,1,1,12.802417,12.802417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,622,91562.695,58482.617,0,0,0,0,1989.5275 +10905,13311,23753,-9,23750,23749,1,1,21,0,0,0,2,2,1,0,4,7.7443814,7.8556499,0,0,0,-1043.1635,-9,1,2,2021,11,2,38,0,1,2,1,7.0372906,7.0372906,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,3649,-10045.938,0,0,0,0,0,1763.4642 +10906,13312,23754,23755,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.9425945,7.255167,9,9,-27.072334,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9675498,50.21,45.02,50.12,53.99,6.666666666666667,2,3,0,0,11,6,3,1,1005.5,220302.56,-4161.584,0,0,1797.7208,4439.4375,2317.1758 +10906,13312,23755,23754,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.839395,7.6517229,0,9,0,69.520866,0,2,2,2021,14,2,28,28,1,2,0,10.001691,10.001691,.05,.05,0,0,0,0,0,2,1,1,0,.50544739,0,50.12,53.99,50.21,45.02,6.666666666666667,1,1,0,0,14,6,3,1,1005.5,220302.56,-4161.584,0,0,1797.7208,4439.4375,2317.1758 +10907,13313,23756,23757,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.0325785,5.8166065,9,-1,41.799088,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.212666,5.9888515,57.16,56.15,62.1,51.16,10,1,1,0,0,3,9,2,1,494.5,477238.16,78311.75,399089.34,20874.965,210.91833,0,1259.8242 +10907,13313,23757,23756,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.9037509,4.9194193,53,1,-87.343971,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2280974,4.9464869,62.1,51.16,57.16,56.15,10,1,1,0,0,7,9,2,1,494.5,477238.16,78311.75,399089.34,20874.965,210.91833,0,1259.8242 +10908,13314,23758,23759,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,8,-11,0,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,33.75,48.45,57.49,8.333333333333334,1,1,0,0,0,10,1,1,544.5,316202.81,0,348484.5,0,0,0,1865.4919 +10908,13314,23759,23758,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,8,11,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,59.45,33.75,0,1,1,0,0,0,10,1,1,544.5,316202.81,0,348484.5,0,0,0,1865.4919 +10909,13315,23760,-9,23763,23762,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.08844,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23761,-9,23763,23762,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.3952,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23762,23763,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.8890753,8.975008,0,11,-1,1.0018661,0,3,2,2021,12,0,55,65,1,0,0,18.134535,18.134535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,33.61,61.54,5,1,1,0,0,13,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23763,23762,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.6529322,7.3461275,0,11,1,-27.826735,0,2,1,2021,16,5,25,25,1,5,0,9.4955006,9.4955006,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.61,61.54,47.07,53.97,10,1,1,0,0,11,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10910,13316,23764,23765,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,8.2176065,7.8387513,0,6,-7,-16.823362,0,-9,-9,2021,9,0,72,60,1,0,0,7.5133533,7.5133533,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23765,23764,-9,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,6,7,-38.343948,0,2,-9,2021,11,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,10,1,1,0,0,5,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23766,-9,23765,23764,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.70367,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23767,-9,23765,23764,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.8444,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10911,13317,23768,-9,23769,23770,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-949.16614,-9,1,2,2021,27,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.48,65.86,-9,-9,3.333333333333333,1,1,0,0,1,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23769,23770,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,5.7879558,5.8322825,0,20,-3,20.601068,0,3,1,2021,2,0,20,4,1,0,0,2.2380209,2.2380209,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,53.59,39.94,10,1,1,0,0,8,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23770,23769,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0298338,8.0012884,0,20,3,-40.144272,0,-9,-9,2021,12,0,60,70,1,0,0,4.7117867,4.7117867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.59,39.94,50.65,53.71,3.333333333333333,1,1,0,0,13,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23771,-9,23769,23770,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.69586,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23772,-9,23769,23770,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.01807,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10912,13318,23773,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.4761095,9.1495695,0,1,-2,-52.115059,-9,-9,-9,2021,6,0,36,0,1,0,0,35.995975,35.995975,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47,57,10,1,1,0,0,4,2,5,1,1053,200421.89,74596.977,150467.55,50226.148,2226.0481,1728.7495,3556.1746 +10913,13319,23774,23775,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.2790937,9.3528242,0,20,1,-142.21098,0,1,1,2021,12,0,37,38,1,0,0,41.50779,41.50779,.05,.05,0,0,0,0,0,0,0,0,0,3.329695,0,52,54.51,54.77,55.87,8.333333333333334,1,1,0,0,11,7,5,1,1356.5,1604798.3,764561.5,563904.81,0,0,0,3484.0322 +10913,13319,23775,23774,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,6.9242387,6.9964294,0,20,-1,-42.759613,0,2,1,2021,8,0,4,18,1,0,0,31.894478,31.894478,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,52,54.51,8.333333333333334,1,1,0,0,9,7,5,1,1356.5,1604798.3,764561.5,563904.81,0,0,0,3484.0322 +10913,13320,23776,-9,23775,23774,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-995.59375,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3334152,0,61.59,34.98,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,554,0,0,0,0,0,0,-343.87457 +10913,13321,23777,-9,23775,23774,1,0,19,0,0,0,2,2,1,0,3,7.3916025,7.689579,0,0,0,-1041.3989,-9,1,1,2021,17,6,32,0,1,6,1,6.6368074,6.6368074,0,0,0,0,0,0,0,0,0,0,0,0,0,42.87,40.92,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,340,-37728.375,0,0,0,0,0,439.23489 +10914,13322,23778,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2537088,8.2645149,0,0,0,-989.21771,-9,2,2,2021,14,2,43,0,1,2,0,11.352174,11.352174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.05,54.52,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,418,48537.168,11414.018,0,0,0,0,1651.6744 +10914,13323,23779,-9,23778,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-985.58661,-9,2,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,403,-13244.405,0,0,0,0,0,0 +10915,13324,23780,23781,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1313562,8.3587952,0,4,-3,-45.718067,0,2,3,2021,6,0,45,47,1,0,0,14.84254,14.84254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,10,1,1,0,0,10,9,5,1,1308.5,452015.88,62839.938,362725,249671.03,0,565.50916,3558.2813 +10915,13324,23781,23780,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.3799706,8.7199869,0,4,3,-4.6406522,0,-9,-9,2021,5,0,38,38,1,0,0,18.227018,18.227018,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,58.32,50.22,10,1,1,0,0,2,9,5,1,1308.5,452015.88,62839.938,362725,249671.03,0,565.50916,3558.2813 +10916,13325,23782,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.7362666,8.8728142,8.4637423,0,0,-1010.2258,0,3,3,2021,7,0,30,40,1,0,0,10.033081,10.033081,.05,.05,0,0,0,0,0,0,1,1,0,7.1905036,8.8279352,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,541,1429758.6,777881.19,279951.25,0,1835.1523,0,5428.5747 +10917,13326,23783,23784,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,35,-4,-14.994066,0,3,3,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.7374806,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,605,327339.13,106031.23,165127.77,0,0,0,2074.3579 +10917,13326,23784,23783,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.6479664,7.9829578,0,35,4,119.32592,0,3,-9,2021,6,0,30,40,1,0,0,12.129694,12.129694,.05,.05,0,0,0,0,0,0,1,1,0,2.7856271,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,10,3,1,605,327339.13,106031.23,165127.77,0,0,0,2074.3579 +10918,13327,23785,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8051782,7.9756975,0,0,0,-927.62231,0,-9,-9,2021,9,0,36,36,1,0,0,9.8855066,9.8855066,.05,.05,0,0,0,0,0,0,0,0,0,5.0482593,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,426,-4950.7671,115469.2,46813.66,42393.773,-902.46881,335.177,1457.0995 +10919,13328,23786,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.0556,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.71,20.19,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1851,106593.44,0,0,0,0,0,1232.7448 +10920,13329,23787,23792,-9,-9,1,0,42,0,5,0,1,1,-9,0,3,7.2402649,7.4051557,0,17,-4,59.466312,0,2,2,2021,9,3,16,16,1,3,0,9.2077618,9.2077618,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,49.51,40.54,1.666666666666667,3,4,0,1,2,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23788,-9,23787,23792,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-943.99591,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23789,-9,23787,23792,1,0,16,0,5,1,2,0,-9,0,5,0,0,0,0,0,-1036.6859,-9,1,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23790,-9,23787,23792,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-980.46106,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23791,-9,23787,23792,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1038.226,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23792,23787,-9,-9,1,1,46,0,5,0,2,2,-9,0,4,6.7755075,6.6270404,0,18,4,37.50655,0,3,3,2021,12,0,12,25,1,0,0,7.0144811,7.0144811,0,0,0,0,0,0,0,0,1,1,0,0,0,49.51,40.54,46,50,5,3,4,0,0,5,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23793,-9,23787,23792,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-986.80273,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13330,23794,-9,23787,23792,1,1,18,0,5,1,2,0,0,0,4,0,0,0,0,0,-947.10687,-9,1,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,3666,-51713.566,0,0,0,0,0,0 +10921,13331,23795,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.72365,8.483717,0,0,0,-956.73816,0,2,2,2021,5,0,46,44,1,0,0,12.651928,12.651928,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,453,52907.262,-29430.582,0,0,0,0,2019.7426 +10922,13332,23796,23797,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.9118261,8.9075661,20,2,-34.598011,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,7.0498219,0,2,1,1,0,0,8.8401003,50,47,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,960.5,3779691.5,2979165,307012.5,0,0,0,6431.1455 +10922,13332,23797,23796,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1458807,7.6804976,20,-2,40.3391,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7248082,7.7365346,57.16,56.15,50,47,10,1,1,0,0,0,2,5,1,960.5,3779691.5,2979165,307012.5,0,0,0,6431.1455 +10923,13333,23798,23799,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.9079781,5.9396791,12,-3,-41.623219,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.3542973,0,0,1,1,0,0,5.8216352,44.08,41.97,60.29,52.11,5,1,1,0,0,0,4,3,1,761.5,635071.38,567601,0,0,0,268.66052,3122.8035 +10923,13333,23799,23798,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.9394894,8.1708994,12,3,-146.81831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2608547,60.29,52.11,44.08,41.97,8.333333333333334,1,1,0,0,0,4,3,1,761.5,635071.38,567601,0,0,0,268.66052,3122.8035 +10924,13334,23800,-9,23802,23801,1,1,24,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1092.0333,0,1,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.3,37.12,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,877,9913.2539,0,0,0,0,0,1275.0251 +10924,13335,23801,23802,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,0,0,9,7,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48.77,42.51,7,1,1,0,0,0,12,1,1,261.5,43299.578,0,143266.55,48006.199,0,0,843.52911 +10924,13335,23802,23801,-9,-9,1,0,60,0,1,0,1,1,-9,0,4,0,0,0,9,-7,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.77,42.51,51,48,8.333333333333334,1,1,0,0,4,12,1,1,261.5,43299.578,0,143266.55,48006.199,0,0,843.52911 +10925,13336,23803,-9,23804,23805,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-985.87219,1,2,3,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,35.28,53.3,-9,-9,5,1,1,0,0,0,12,2,0,826,17267.447,0,0,0,0,0,758.09613 +10925,13337,23804,23805,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,7.40272,7.310627,0,40,-1,98.43383,0,-9,-9,2021,12,0,30,80,1,0,0,6.1411324,6.1411324,0,0,0,0,0,0,0,0,1,0,1,0,0,51.66,30.94,24.93,19.95,5,1,1,0,0,12,12,2,0,827,168666.56,78570.359,59721.395,0,0,0,1086.6981 +10925,13337,23805,23804,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,0,0,4,1,-250.59354,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.93,19.95,51.66,30.94,5,1,1,0,0,0,12,2,0,827,168666.56,78570.359,59721.395,0,0,0,1086.6981 +10926,13338,23806,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,8.0446577,7.7361341,0,0,0,-862.36566,0,1,1,2021,23,9,38,45,1,9,1,9.6175919,9.6175919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.95,39.68,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,507,8910.4521,24306.482,43365.273,71958.469,0,0,792.03644 +10927,13339,23807,23808,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.2129307,5.2379713,53,3,-58.479279,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2508111,58.47,50.22,62.58,34.42,8.333333333333334,1,1,0,0,0,11,2,1,1357.5,118914.74,208745.25,0,0,8846.7266,0,1625.2231 +10927,13339,23808,23807,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.4546251,5.2188931,53,-3,49.629978,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.58918,62.58,34.42,58.47,50.22,0,1,1,0,0,0,11,2,1,1357.5,118914.74,208745.25,0,0,8846.7266,0,1625.2231 +10928,13340,23809,-9,-9,-9,1,1,29,1,2,0,3,3,-9,0,2,0,0,0,0,0,-816.97894,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.71,35.95,-9,-9,5,1,1,1,0,0,13,1,0,715,-105490.43,0,0,0,0,0,681.47632 +10928,13341,23810,23811,-9,-9,1,1,27,1,2,0,3,3,-9,0,2,0,0,0,1,1,0,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.16,37.37,39.28,28.28,5,1,1,1,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23811,23810,-9,-9,1,0,26,1,2,0,3,3,-9,1,2,0,0,0,1,-1,0,0,3,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.28,28.28,37.16,37.37,6.666666666666667,1,1,0,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23812,-9,23811,23810,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.2113,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23813,-9,23811,23810,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.75195,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10929,13342,23814,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1005.623,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.58,19.1,-9,-9,5,2,3,0,0,0,8,1,0,653,197359.64,0,0,0,0,0,916.68085 +10930,13343,23815,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.8808169,6.6160698,0,0,0,-943.64667,0,3,3,2021,10,0,16,16,1,0,0,6.7512035,6.7512035,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,1,3,9,2,0,571.5,166958.84,-57730.836,0,0,-422.50854,0,1617.9695 +10930,13343,23816,-9,23815,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.84351,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,571.5,166958.84,-57730.836,0,0,-422.50854,0,1617.9695 +10931,13344,23817,23818,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.355772,8.3165255,0,26,-6,-48.703274,-9,2,2,2021,10,0,32,0,1,1,0,15.056935,15.056935,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,54,53,8,1,1,0,0,9,9,5,1,1137.5,2631277,1209442,1272915.9,147747.81,0,0,7425.0156 +10931,13344,23818,23817,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.7030163,9.8437805,0,26,6,-39.121376,0,2,1,2021,8,0,55,50,1,0,0,35.752853,35.752853,.05,.05,0,0,0,0,0,0,0,0,0,5.1465826,0,54,53,51,54,8,1,1,0,0,9,9,5,1,1137.5,2631277,1209442,1272915.9,147747.81,0,0,7425.0156 +10931,13345,23819,-9,23817,23818,1,1,19,0,0,0,2,2,1,0,4,6.3411174,6.4361997,0,0,0,-898.9021,-9,1,1,2021,10,0,14,0,1,2,1,5.9211388,5.9211388,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,2,1,258,157268.72,0,0,0,0,0,261.29578 +10932,13346,23820,23821,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.1369882,7.0573311,0,31,4,79.520981,0,2,2,2021,13,0,8,50,1,3,0,19.225039,19.225039,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,39.58,51.24,58.84,6,1,1,0,0,15,7,5,1,275.5,579891.31,180345.09,206280.52,0,0,1642.106,2814.5894 +10932,13346,23821,23820,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.7320881,8.7050924,0,31,-4,42.785767,0,2,2,2021,8,0,90,50,1,0,0,8.0435886,8.0435886,0,0,0,0,0,0,0,0,1,1,0,3.0212014,0,51.24,58.84,43.96,39.58,8.333333333333334,1,1,0,0,13,7,5,1,275.5,579891.31,180345.09,206280.52,0,0,1642.106,2814.5894 +10933,13347,23822,-9,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.6780682,8.6892462,0,0,0,-1062.9543,0,2,3,2021,7,0,49,55,1,0,0,11.510242,11.510242,.05,.05,0,0,0,0,0,2,0,0,0,1.1466669,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13347,23823,-9,-9,23822,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1249,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13347,23824,-9,-9,23822,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1088.052,-9,-9,2,2021,25,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.77,59.32,-9,-9,1.666666666666667,1,1,0,0,0,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13348,23825,-9,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.1844263,8.3412733,0,0,0,-917.53918,0,3,3,2021,8,0,43,42,1,0,0,12.751986,12.751986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,488,20132.848,6320.1411,0,0,437.64575,0,2350.7256 +10934,13349,23826,23827,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.4244967,8.7622385,0,1,-3,-51.257271,0,-9,-9,2021,11,0,39,39,1,0,0,14.086286,14.086286,.05,.05,0,0,0,0,0,0,0,0,0,2.5483634,0,46.3,58.97,47.52,57.75,8.333333333333334,1,1,0,0,9,6,5,1,1356,60338.547,132499.08,110517.57,118907.73,14073.273,2520.1096,4432.6748 +10934,13349,23827,23826,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.826827,8.785675,0,1,3,-35.027279,-9,-9,-9,2021,11,0,40,0,1,0,0,16.29841,16.29841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.52,57.75,46.3,58.97,8.333333333333334,1,1,0,0,8,6,5,1,1356,60338.547,132499.08,110517.57,118907.73,14073.273,2520.1096,4432.6748 +10935,13350,23828,-9,23829,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.55957,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23829,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,6.8214579,7.0864005,6.0553107,0,0,-913.40509,0,2,1,2021,12,4,18,20,1,4,0,5.6510587,5.6510587,0,0,0,0,0,0,0,0,1,1,0,6.8447008,0,49.37,35.69,-9,-9,6.666666666666667,1,1,0,1,13,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23830,-9,23829,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.77979,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23831,-9,23829,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1013.441,-9,1,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67866915,0,54.2,57.49,-9,-9,10,1,1,0,0,2,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10936,13351,23832,23833,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,10,-1,-56.631516,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,11.789945,0,2,1,1,0,3.5978236,0,48.13,10.74,42.37,21.16,8.333333333333334,1,1,0,0,0,13,2,1,471.5,125728.66,-41448.672,0,0,0,0,2522.7385 +10936,13351,23833,23832,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.3173876,6.264431,10,1,69.777565,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,3.0214503,10.990895,27.144108,7,1,1,0,.92297286,6.4824595,42.37,21.16,48.13,10.74,6.666666666666667,1,1,0,0,0,13,2,1,471.5,125728.66,-41448.672,0,0,0,0,2522.7385 +10937,13352,23834,23835,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.7406101,6.6885428,52,6,-.43833682,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4916267,53,47,50,47,7,1,1,0,0,0,13,2,1,859.5,-24954.973,0,0,0,0,0,1374.1843 +10937,13352,23835,23834,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,62,-6,60.659523,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,13,2,1,859.5,-24954.973,0,0,0,0,0,1374.1843 +10938,13353,23836,23837,-9,-9,1,1,21,0,1,0,2,2,-9,1,3,4.7234321,4.4963655,0,1,-1,1.4386998,-9,-9,-9,2021,10,1,5,0,1,1,0,1.8507739,1.8507739,0,0,0,0,0,0,0,0,1,1,0,0,0,30.98,50.81,30.8,52.18,10,1,1,0,0,2,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10938,13353,23837,23836,-9,-9,1,0,22,0,1,0,2,2,-9,1,3,0,0,0,1,1,83.385262,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.8,52.18,30.98,50.81,5,1,1,0,0,1,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10938,13353,23838,-9,23837,23836,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.2668,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10939,13354,23839,23840,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.077312,6.3152704,9,7,-138.1134,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8911896,55.2,49.4,54.2,57.49,8.333333333333334,3,4,0,0,0,8,2,0,1194,615468.88,270333.81,421041.44,0,0,0,1928.3511 +10939,13354,23840,23839,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.4603534,6.6124682,47,-7,-79.684731,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7959404,54.2,57.49,55.2,49.4,8.333333333333334,3,4,0,0,10,8,2,0,1194,615468.88,270333.81,421041.44,0,0,0,1928.3511 +10940,13355,23841,-9,23842,23844,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.1033,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23842,23844,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,7.5415735,7.5334396,0,22,2,44.64077,0,2,2,2021,7,0,15,15,1,0,0,16.193563,16.193563,.05,.05,0,0,0,0,0,0,1,1,0,.86837935,0,54.69,57.47,53.39,52.35,8.333333333333334,1,1,0,0,7,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23843,-9,23842,23844,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.32428,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.57054889,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23844,23842,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.1689234,9.2353439,0,22,-2,114.79356,0,2,3,2021,9,0,55,50,1,0,0,14.809854,14.809854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,54.69,57.47,8.333333333333334,1,1,0,0,10,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23845,-9,23842,23844,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.7107,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10941,13356,23846,23847,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.9235144,9.1442347,0,5,1,-.99243748,0,-9,-9,2021,10,0,37,-9,1,2,0,31.292507,31.292507,0,0,0,0,0,0,0,0,0,0,0,0,0,50,59,58.15,52.91,8,3,4,0,0,8,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10941,13356,23847,23846,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.1780701,8.1086292,0,5,-1,-54.973877,0,2,2,2021,7,0,35,35,1,0,0,10.238837,10.238837,.05,.05,0,0,0,0,0,0,0,0,0,4.4855514,0,58.15,52.91,50,59,10,1,1,0,0,11,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10941,13356,23848,-9,23846,23847,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.11993,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10942,13357,23849,23850,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,9.367485,9.4134521,0,6,-5,25.245783,-9,3,3,2021,11,0,40,0,1,2,0,34.607544,34.607544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,1,1,0,0,9,13,5,1,1742,1136472.3,531212.19,231609.03,46615.523,433.20758,0,5869.3027 +10942,13357,23850,23849,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,7.7978497,7.7371125,0,6,5,29.614489,0,3,3,2021,8,0,56,48,1,0,0,3.9121506,3.9121506,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,8.333333333333334,1,1,0,1,7,13,5,1,1742,1136472.3,531212.19,231609.03,46615.523,433.20758,0,5869.3027 +10943,13358,23851,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.4872675,8.6829414,0,0,0,-1151.6646,-9,3,2,2021,12,0,35,0,1,0,0,11.309307,11.309307,.05,.05,0,0,0,0,0,0,0,0,0,4.9205871,0,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,5,2,4,0,636,1085.1012,-45085.566,0,0,0,0,1652.4099 +10944,13359,23852,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9761486,7.2531958,0,0,-1057.1417,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0185199,7.019073,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,193,220067.48,42417.145,297118.5,0,0,0,1710.7985 +10945,13360,23853,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1606665,8.3580494,0,0,0,-1000.7289,0,2,3,2021,12,1,40,49,1,1,0,8.634697,8.634697,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.76,51.17,-9,-9,3.333333333333333,1,1,0,1,10,6,3,0,994,95325,-82759.781,82646.445,34447.762,0,0,1993.7205 +10945,13361,23854,-9,23853,-9,1,1,25,0,1,0,3,3,-9,0,4,8.0853357,8.2254677,0,0,0,-1023.0266,0,2,-9,2021,11,0,60,0,1,0,1,5.5543842,5.5543842,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,6,4,0,124,-36195.516,140815.34,0,0,0,0,812.37292 +10946,13362,23855,-9,23857,23858,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.63892,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23856,-9,23857,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1023.287,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23857,23858,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,0,0,0,5,3,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,39.99,30.49,8.333333333333334,1,1,0,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23858,23857,-9,-9,1,1,44,0,1,0,3,3,-9,1,2,0,0,0,5,-3,0,0,-9,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.99,30.49,54.79,55.86,1.666666666666667,1,1,0,1,1,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13363,23859,-9,23857,-9,1,1,20,0,1,0,2,2,-9,1,4,0,0,0,0,0,-986.0918,0,2,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.74791014,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,48,-83834.438,0,0,0,0,0,876.9577 +10947,13364,23860,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.9240189,6.4223685,0,0,0,-1036.6045,0,1,1,2021,6,0,43,42,1,0,0,2.2952042,2.2952042,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,70,32564.445,24843.209,0,0,0,0,195.30702 +10948,13365,23861,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.7426004,8.0687218,0,0,-901.34076,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.493866,7.8774405,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,1946,577627.06,398409.72,350473.97,11158.746,4333.4614,0,1577.8751 +10949,13366,23862,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.0832419,4.8644958,0,0,-948.422,0,-9,-9,2021,11,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9262595,54.77,39.97,-9,-9,10,1,1,0,0,0,6,2,0,1324,2966.5859,0,79001.688,0,0,0,706.33331 +10950,13367,23863,-9,23865,23864,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.9341,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23864,23865,-9,-9,1,1,31,1,2,0,1,1,-9,0,4,9.0605507,8.9503403,0,9,1,37.76561,0,-9,-9,2021,12,1,35,35,1,1,0,21.181906,21.181906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.91,59.89,8.333333333333334,1,1,0,0,8,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23865,23864,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.361629,7.2770176,0,9,-1,-3.344239,0,-9,-9,2021,12,0,12,10,1,0,0,12.805124,12.805124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,48.87,58.55,10,1,1,0,0,8,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23866,-9,23865,23864,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0896,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10951,13368,23867,23868,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,32,-6,-46.197945,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,32.85,50.9,29.78,17.81,6.666666666666667,1,1,0,0,2,6,3,0,1507,581947.75,400819.47,296800.91,0,0,0,2927.4653 +10951,13368,23868,23867,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,7.9438572,7.6913123,33,6,74.127907,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,43.922997,0,0,1,1,0,0,7.5808144,29.78,17.81,32.85,50.9,0,1,1,0,0,0,6,3,0,1507,581947.75,400819.47,296800.91,0,0,0,2927.4653 +10952,13369,23869,23870,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.3989058,8.4071016,0,13,8,79.76693,0,2,1,2021,11,0,37,37,1,0,0,16.544783,16.544783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,19.72,49.57,5,1,1,0,0,14,5,5,1,779,677225.5,392968,604879.38,217557.53,0,2221.2402,2884.0925 +10952,13369,23870,23869,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.918992,7.9661918,0,13,-8,-55.99683,0,2,2,2021,30,12,35,35,1,12,0,9.0233698,9.0233698,0,0,0,0,0,0,0,0,0,0,0,0,0,19.72,49.57,47.15,56.66,5,1,1,0,0,14,5,5,1,779,677225.5,392968,604879.38,217557.53,0,2221.2402,2884.0925 +10953,13370,23871,-9,23874,23873,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.92639,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23872,-9,23874,23873,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.13898,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23873,23874,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,0,0,0,11,11,-19.247509,0,2,1,2021,15,4,0,0,3,4,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.1139927,0,42.11,40.08,55.3,52.93,3.333333333333333,2,3,0,1,11,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23874,23873,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.0225315,7.8859663,0,4,-11,-22.284863,0,2,1,2021,7,0,38,-9,1,0,0,8.1773701,8.1773701,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,52.93,42.11,40.08,6.666666666666667,4,2,0,0,12,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10954,13371,23875,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.3480673,8.1723156,0,0,0,-1163.7408,0,-9,-9,2021,7,0,39,39,1,0,0,12.016824,12.016824,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,46,-176652.09,97175.68,0,0,3655.4739,0,3033.1399 +10955,13372,23876,23877,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6118631,9.0792656,6.9678802,16,2,7.7421188,0,3,2,2021,10,0,38,38,1,0,0,15.299869,15.299869,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9792051,58.15,52.91,45.93,41.47,10,1,1,0,0,11,2,5,1,483.5,233053.06,137776.14,112427.48,23417.996,0,0,4532.5 +10955,13372,23877,23876,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.648181,8.7022762,0,16,-2,29.742918,0,2,-9,2021,12,0,39,43,1,0,0,14.426247,14.426247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.93,41.47,58.15,52.91,8.333333333333334,1,1,0,0,11,2,5,1,483.5,233053.06,137776.14,112427.48,23417.996,0,0,4532.5 +10956,13373,23878,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9036856,8.2591867,6.6370482,0,0,-953.20209,0,2,2,2021,10,1,37,37,1,1,0,9.7638664,9.7638664,.05,.05,0,0,0,0,0,0,0,0,0,4.988935,6.7527952,47.66,52.33,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,985,-56338.23,-31579.83,0,0,0,0,1702.7196 +10957,13374,23879,23880,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.4664345,7.7683711,40,0,43.509178,0,2,3,2021,9,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.3404202,7.4150872,45.56,60.26,50,47,6.666666666666667,1,1,0,0,0,7,3,1,420,1019055.9,592429.13,397756.38,0,0,0,2741.2046 +10957,13374,23880,23879,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1288667,6.9905443,10,0,97.443558,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.239987,7.1372499,50,47,45.56,60.26,7,1,1,0,0,0,7,3,1,420,1019055.9,592429.13,397756.38,0,0,0,2741.2046 +10958,13375,23881,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8858395,8.1954184,6.2500057,0,0,-1033.277,0,2,3,2021,11,0,40,38,1,0,0,7.168756,7.168756,0,0,0,0,0,0,0,0,1,1,0,6.7635679,0,53.5,53.7,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,444,-85334.719,0,0,0,0,0,1601.1045 +10958,13375,23882,-9,23881,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-918.04956,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,9,4,0,444,-85334.719,0,0,0,0,0,1601.1045 +10959,13376,23883,23884,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.3604298,8.2722206,6,4,87.232613,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2881517,56.18,28.33,57.91,27.75,8.333333333333334,1,1,0,0,6,6,4,1,2100.5,839878.56,446114.5,218608.69,0,0,0,2970.9302 +10959,13376,23884,23883,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,6,-4,-10.11494,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.21976729,0,57.91,27.75,56.18,28.33,8.333333333333334,1,1,0,0,0,6,4,1,2100.5,839878.56,446114.5,218608.69,0,0,0,2970.9302 +10960,13377,23885,23886,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.0193839,4.9978166,56,1,-20.8283,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6909513,65.79000000000001,26.43,59.45,33.75,8.333333333333334,1,1,0,0,0,13,2,1,591.5,168665.34,50876.523,192006.13,0,0,0,1276.6753 +10960,13377,23886,23885,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,-1,-79.964363,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,33.75,65.79000000000001,26.43,10,1,1,0,0,0,13,2,1,591.5,168665.34,50876.523,192006.13,0,0,0,1276.6753 +10961,13378,23887,-9,23889,23888,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.53918,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23888,23889,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.5735245,9.0849266,0,7,-2,50.424976,0,-9,-9,2021,9,0,45,-9,1,1,0,21.502447,21.502447,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,8,1,1,0,0,1,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23889,23888,-9,-9,1,0,46,0,3,0,1,1,-9,0,3,8.2410803,8.27351,0,20,2,4.69416,0,3,2,2021,6,0,30,28,1,0,0,24.051268,24.051268,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,1,1,0,0,8,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23890,-9,23889,23888,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.6991,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23891,-9,23889,23888,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.53448,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10962,13379,23892,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2070203,8.0142851,7.1996999,0,0,-1110.2419,0,2,2,2021,6,0,18,32,1,0,0,12.175958,12.175958,0,0,0,0,0,0,0,2,1,1,0,0,7.1011844,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,2551,354775.81,401245.56,166985.59,60346.711,1787.1323,0,1499.7546 +10962,13380,23893,-9,23892,-9,1,0,23,0,0,0,2,2,-9,0,5,7.0564504,7.186965,0,0,0,-1004.8084,-9,2,1,2021,10,0,20,0,1,0,1,6.1616626,6.1616626,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,4,5,0,0,7,2,2,1,360,-37213.172,0,0,0,0,0,1003.0399 +10962,13381,23894,-9,23892,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.3856,-9,2,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8438456,0,31.08,55.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,264,0,0,0,0,0,0,116.19553 +10962,13382,23895,-9,23892,-9,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-952.39233,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,-9,-9,10,1,1,0,0,0,2,1,1,272,-7582.6074,0,0,0,0,0,777.64069 +10963,13383,23896,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.0065994,3.8460784,0,0,-910.96039,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8509285,4.0222192,52.56,33.09,-9,-9,10,1,1,0,0,0,11,2,1,490,41193.84,0,0,0,0,0,314.061 +10964,13384,23897,23898,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.4757471,8.6153727,0,44,-1,128.90578,0,2,3,2021,19,7,37,37,1,7,0,15.751616,15.751616,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,57.1,49.47,32.98,5,1,1,0,0,10,13,5,1,1134.5,622450.44,0,219116.19,0,0,0,5303.7295 +10964,13384,23898,23897,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.4664249,7.5308008,44,1,-71.382362,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9436302,7.9259267,49.47,32.98,43.84,57.1,5,1,1,0,0,6,13,5,1,1134.5,622450.44,0,219116.19,0,0,0,5303.7295 +10964,13385,23899,-9,23897,23898,1,0,22,0,0,0,1,1,-9,0,5,7.9787645,8.1602774,0,0,0,-921.79108,0,2,2,2021,8,0,37,30,1,0,0,13.993377,13.993377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1449,-39162.461,64402.68,0,0,0,0,2105.3408 +10965,13386,23900,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.1201,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.44,22.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,503,-89103.367,0,0,0,0,2500.6743,659.10925 +10966,13387,23901,-9,23904,23902,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1174.213,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23902,23904,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.166749,8.1996861,0,6,-7,34.03344,0,-9,-9,2021,7,0,55,60,1,0,0,7.3173313,7.3173313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,37.11,55.92,8.333333333333334,1,1,0,0,6,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23903,-9,23904,23902,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.76685,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23904,23902,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.1000271,8.0595684,0,6,7,-84.303978,0,2,3,2021,21,8,25,49,1,8,0,16.840637,16.840637,.05,.05,0,0,0,0,0,0,1,1,0,2.8602464,0,37.11,55.92,58.15,52.91,6.666666666666667,1,1,0,0,7,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10967,13388,23905,23906,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3962159,7.7299728,6,5,27.038733,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8624477,7.4478397,29.55,60.48,25.07,58.58,3.333333333333333,1,1,0,0,0,7,3,1,1165,396724.69,231663.88,189392.61,0,1134.5286,0,1973.6066 +10967,13388,23906,23905,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.1800818,4.9024453,6,-5,-126.32899,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2858229,5.0667701,25.07,58.58,29.55,60.48,3.333333333333333,1,1,0,0,4,7,3,1,1165,396724.69,231663.88,189392.61,0,1134.5286,0,1973.6066 +10968,13389,23907,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-938.8941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.4867234,0,26.836988,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,13,2,0,1225,-95722.875,0,0,0,-1995.1667,0,547.92792 +10969,13390,23908,23909,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2681103,7.8387756,0,8,0,-62.398884,0,3,3,2021,12,0,33,33,1,0,0,11.597864,11.597864,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,55.96,49.93,6.666666666666667,1,1,0,0,9,5,4,0,341.5,250719.91,68704.125,187903.89,0,0,0,2098.7249 +10969,13390,23909,23908,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6075969,7.8461142,0,8,0,-81.178848,0,3,3,2021,7,0,39,40,1,0,0,6.4246507,6.4246507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,43.65,58.28,8.333333333333334,1,1,0,0,8,5,4,0,341.5,250719.91,68704.125,187903.89,0,0,0,2098.7249 +10969,13391,23910,-9,23908,23909,1,1,26,0,0,0,2,2,-9,0,3,7.7845888,7.581162,0,0,0,-1069.6573,0,2,2,2021,18,5,37,37,1,5,1,7.0447989,7.0447989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.79,56.27,-9,-9,8.333333333333334,1,1,0,0,4,5,3,0,193,40689.125,99171.383,0,0,0,0,1025.6993 +10969,13392,23911,-9,23908,23909,1,0,21,0,0,0,2,2,-9,0,5,8.0021105,7.9970207,0,0,0,-973.05377,-9,2,2,2021,10,1,40,0,1,1,1,7.5392289,7.5392289,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,53.83,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,281,137819.45,0,0,0,0,0,1523.1532 +10969,13393,23912,-9,23908,23909,1,0,30,0,0,0,2,2,-9,0,3,8.0535307,8.0846386,0,0,0,-1013.7249,0,2,3,2021,14,2,42,43,1,2,1,6.7451162,6.7451162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.32,42.9,-9,-9,6.666666666666667,1,1,0,1,9,5,4,0,1926,48375.5,42035.91,0,0,0,0,1583.7947 +10970,13394,23913,23914,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.2133694,6.7849059,30,7,64.330498,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1118455,49.46,56.91,58.85,23.37,5,1,1,0,0,4,7,3,0,1049,1156624.8,22770.682,885572.94,0,0,0,1092.8597 +10970,13394,23914,23913,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,6.9715977,7.5151772,6.7877922,30,-7,23.490343,0,-9,-9,2021,18,6,24,24,1,6,0,6.1503258,6.1503258,0,0,0,0,0,0,0,0,0,0,0,4.2504826,6.8058538,58.85,23.37,49.46,56.91,8.333333333333334,1,1,0,0,4,7,3,0,1049,1156624.8,22770.682,885572.94,0,0,0,1092.8597 +10970,13395,23915,-9,23914,23913,1,1,26,0,0,0,2,2,-9,0,4,8.6502647,8.6744118,0,0,0,-1082.9329,0,2,2,2021,16,6,49,0,1,6,1,14.281924,14.281924,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,463,-83340.914,-52671.879,0,0,0,0,2248.4475 +10971,13396,23916,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.5720663,7.5862103,0,0,-827.14996,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7183623,52.07,27.6,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,289,1138875.6,581628.19,272989.5,0,0,0,1393.0436 +10971,13397,23917,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.8519325,6.7635522,0,0,-950.81287,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6437774,60.12,54.8,-9,-9,10,1,1,0,0,4,7,2,1,1661,627647.56,0,564035.75,0,0,0,428.81485 +10972,13398,23918,23919,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9621429,8.9746685,0,12,4,4.6252966,0,-9,-9,2021,9,0,37,35,1,0,0,26.041023,26.041023,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,2,5,1,445.5,899162.25,931380.38,315196,340389.88,4657.4204,0,4185.5483 +10972,13398,23919,23918,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1364594,8.3791838,0,34,-4,-99.057457,0,2,2,2021,9,0,34,35,1,0,0,15.008103,15.008103,0,0,.05,0,0,0,0,0,0,0,0,4.5620575,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,445.5,899162.25,931380.38,315196,340389.88,4657.4204,0,4185.5483 +10972,13399,23920,-9,23919,23918,1,0,24,0,0,0,1,1,-9,0,4,8.4248943,8.6019249,0,0,0,-938.63916,0,2,1,2021,5,0,50,45,1,0,1,12.308175,12.308175,.05,.05,0,0,0,0,0,0,0,0,0,3.8861885,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,150,205393.73,-31819.51,0,0,1238.7336,0,1961.9341 +10973,13400,23921,23925,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,0,7.7561316,7.6612043,11,-2,-26.020802,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2937737,0,56.11,44.4,46.32,53.44,5,1,1,0,1,4,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23922,-9,23921,23925,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1168.6531,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23923,-9,23921,23925,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1082.6659,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23924,-9,23921,23925,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.522,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23925,23921,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,0,0,0,11,2,109.54459,0,2,2,2021,5,0,0,60,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,56.11,44.4,6.666666666666667,1,1,1,1,13,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10974,13401,23926,23929,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9273291,7.7301474,0,1,-1,-69.198586,-9,3,2,2021,10,1,40,0,1,1,0,8.673398,8.673398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.6,52.48,36.62,58.96,5,3,4,0,1,9,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23927,-9,23929,23926,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.43701,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23928,-9,23929,23926,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.56879,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23929,23926,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.0995216,7.0083237,0,1,1,-71.801613,-9,-9,-9,2021,18,6,10,0,1,6,0,11.163065,11.163065,0,0,0,0,0,0,0,2,1,1,0,0,0,36.62,58.96,38.6,52.48,3.333333333333333,3,4,0,1,2,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10975,13402,23930,23931,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.7519732,6.7359047,46,2,20.76465,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9518933,6.8150673,61.58,43.34,43.46,52.95,8.333333333333334,1,1,0,0,10,6,2,1,540,78720.625,27861.811,125730.25,0,0,0,1978.3783 +10975,13402,23931,23930,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-2,-105.79698,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.46,52.95,61.58,43.34,3.333333333333333,1,1,0,0,0,6,2,1,540,78720.625,27861.811,125730.25,0,0,0,1978.3783 +10976,13403,23932,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,6.0445533,5.7851782,0,0,-1204.9326,0,2,2,2021,11,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7148929,0,41.79,57.73,-9,-9,8.333333333333334,1,1,1,0,10,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10976,13403,23933,-9,23932,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6802,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10976,13403,23934,-9,23932,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7775,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10977,13404,23935,23936,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.052434,7.0752511,0,2,0,123.4874,0,3,2,2021,14,2,16,16,1,2,0,7.0825548,7.0825548,0,0,0,0,0,0,0,0,1,0,1,2.2182026,0,48.87,58.55,38.33,57.72,8.333333333333334,1,1,0,0,7,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23936,23935,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,4.8414249,4.9646134,0,2,0,-95.913551,0,2,3,2021,13,1,60,63,1,1,0,.29121354,.29121354,0,0,.05,0,0,0,0,0,1,0,1,0,0,38.33,57.72,48.87,58.55,6.666666666666667,1,1,0,0,7,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23937,-9,23935,23936,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.78314,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23938,-9,23935,23936,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.69049,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.6254995,0,57.18,48.06,-9,-9,10,1,1,0,0,0,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10978,13405,23939,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1032.8077,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,15.632913,0,0,1,1,0,0,0,50.77,9.75,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,633,127947.09,0,165474.13,0,0,0,642.17377 +10979,13406,23940,23941,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.8746824,8.7570724,0,3,0,-46.711384,0,2,2,2021,9,1,82,40,1,1,0,7.399066,7.399066,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,14,6,5,1,250,0,0,0,0,0,0,4756.4941 +10979,13406,23941,23940,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.6839752,8.7474213,0,3,0,-65.147133,0,-9,-9,2021,6,0,42,43,1,0,0,18.722038,18.722038,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6.666666666666667,1,1,0,0,6,6,5,1,250,0,0,0,0,0,0,4756.4941 +10980,13407,23942,-9,23943,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.51251,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,274.5,-287.13672,0,0,0,0,-260.94095,1691.9475 +10980,13407,23943,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1069.0481,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,274.5,-287.13672,0,0,0,0,-260.94095,1691.9475 +10981,13408,23944,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.5144176,6.9626474,5.7280912,0,0,-1021.8416,0,3,3,2021,6,0,16,16,1,0,0,6.4127498,6.4127498,0,0,0,0,0,0,0,0,1,1,0,0,6.015388,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,429,89543.672,0,0,0,0,0,1410.0382 +10982,13409,23945,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,9.2469349,8.9722157,0,0,0,-961.27448,0,2,2,2021,7,0,18,27,1,0,0,49.898029,49.898029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,909,160549.28,-63624.125,159494.13,37635.742,0,0,3515.7476 +10982,13409,23946,-9,23945,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.84924,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,909,160549.28,-63624.125,159494.13,37635.742,0,0,3515.7476 +10983,13410,23947,23948,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,0,0,0,28,-3,0,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.62,15.47,46.11,18.56,6.666666666666667,2,3,1,0,6,8,1,0,1432.5,733385.13,-22319.316,640039.13,0,0,0,1935.726 +10983,13410,23948,23947,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,28,3,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.11,18.56,55.62,15.47,3.333333333333333,2,3,0,0,0,8,1,0,1432.5,733385.13,-22319.316,640039.13,0,0,0,1935.726 +10983,13411,23949,-9,23947,23948,1,0,21,0,0,0,2,2,-9,0,5,7.7800984,7.4345756,0,0,0,-1003.7513,0,2,3,2021,2,0,40,40,1,0,1,4.1402102,4.1402102,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,2,8,3,0,375,-623.69623,0,0,0,0,0,636.70386 +10983,13412,23950,-9,23947,23948,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1021.3586,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,1,0,8,1,0,221,121886.69,0,0,0,0,0,0 +10984,13413,23951,23953,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.1297607,7.971262,0,10,2,-135.09195,0,2,3,2021,18,7,40,40,1,7,0,8.4345503,8.4345503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,57.33,53.46,5,1,1,0,0,6,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10984,13413,23952,-9,23953,23951,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.2989,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10984,13413,23953,23951,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,10,-2,-80.112297,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.28,51.35,8.333333333333334,1,1,0,0,5,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10985,13414,23954,-9,23956,23955,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7822,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23955,23956,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,0,0,0,8,4,0,0,2,2,2021,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8159928,0,49.41,58.28,46.5,58.26,3.333333333333333,1,1,0,0,6,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23956,23955,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,0,0,8,-4,0,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,49.41,58.28,3.333333333333333,1,1,0,1,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23957,-9,23956,23955,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.502,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10986,13415,23958,23959,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.0101519,6.9074941,6,6,-10.862365,0,3,3,2021,17,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9552426,36.83,19.91,45.69,53.27,3.333333333333333,1,1,0,0,0,11,3,1,1674.5,226838.27,175929.94,45113.168,0,0,0,2064.1199 +10986,13415,23959,23958,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5176711,7.1696706,0,6,-6,-138.88654,0,3,3,2021,13,1,25,21,1,1,0,9.8051357,9.8051357,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,36.83,19.91,5,1,1,0,0,7,11,3,1,1674.5,226838.27,175929.94,45113.168,0,0,0,2064.1199 +10987,13416,23960,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,8.4128513,8.5529003,6.4545622,0,0,-1073.712,0,3,-9,2021,9,0,40,43,1,0,0,14.373191,14.373191,.05,.05,0,0,0,0,0,0,1,1,0,7.2964201,0,57.06,57.76,-9,-9,5,1,1,0,0,10,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13416,23961,-9,23960,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.60278,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13416,23962,-9,23960,-9,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1039.7181,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5418494,0,48.66,47.04,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13417,23963,-9,23960,-9,1,0,19,0,1,0,2,2,-9,0,4,7.4299645,7.1970339,0,0,0,-1018.473,0,2,-9,2021,12,0,1,25,1,0,1,144.26295,144.26295,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.18,55.57,-9,-9,5,1,1,0,0,3,9,3,0,1258,77377.656,-87306.68,0,0,-92.248726,0,833.06824 +10988,13418,23964,23965,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0459347,8.2103367,0,2,-5,22.938633,0,2,1,2021,6,1,37,50,1,1,0,11.225873,11.225873,0,0,0,0,0,0,.44674242,0,0,0,0,0,0,54.2,57.49,49,58,10,1,1,0,0,7,7,5,1,1589,-68826.695,70383.453,0,0,0,0,3361.7651 +10988,13418,23965,23964,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.3133554,8.394022,0,2,5,64.052467,-9,-9,-9,2021,10,0,40,0,1,1,0,12.923566,12.923566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,54.2,57.49,7,4,1,0,0,1,7,5,1,1589,-68826.695,70383.453,0,0,0,0,3361.7651 +10989,13419,23966,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.1670952,6.6148143,0,0,-1097.6799,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.61023521,5.9452438,47.7,44.73,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,2346,126111.89,140482.56,227993.45,0,0,0,230.39362 +10990,13420,23967,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.523839,8.2387619,0,0,0,-1079.74,0,2,1,2021,5,0,38,39,1,0,0,14.811986,14.811986,.05,.05,0,0,0,0,0,0,0,0,0,3.838028,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,1202,-103927.71,80522.82,0,0,0,0,951.55414 +10991,13421,23968,-9,23969,23971,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.13721,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23969,23971,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3057432,8.3163948,0,8,1,35.481953,0,3,3,2021,10,1,33,28,1,1,0,11.1397,11.1397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.82,54.38,48.45,57.49,8.333333333333334,1,1,0,0,9,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23970,-9,23969,23971,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.27753,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23971,23969,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.9770584,8.494113,0,8,-1,92.365059,0,-9,-9,2021,12,2,44,40,1,2,0,22.856489,22.856489,.05,.05,0,0,0,0,0,0,1,1,0,1.3711252,0,48.45,57.49,48.82,54.38,8.333333333333334,1,1,0,0,9,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10992,13422,23972,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.85144,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,5,1,1,0,0,0,8,1,0,325,95345.195,70092.836,0,0,0,0,1142.9509 +10993,13423,23973,23974,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6483145,7.5917726,0,10,2,120.19864,0,-9,-9,2021,4,0,40,40,1,0,0,5.3803859,5.3803859,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,42.81,54.48,8.333333333333334,1,1,0,0,11,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10993,13423,23974,23973,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0605917,8.1235323,0,10,-2,-14.816481,0,2,-9,2021,10,1,58,55,1,1,0,5.2736368,5.2736368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.81,54.48,50.54,62.09,6.666666666666667,1,1,0,0,11,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10993,13423,23975,-9,23973,23974,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-933.61597,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10994,13424,23976,23977,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,12,0,-77.938042,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.741919,0,54.1,59.11,58.32,50.22,8.333333333333334,1,1,0,0,11,13,4,1,597,584953.63,285818.03,224152.13,7746.5337,0,-699.64587,2354.1946 +10994,13424,23977,23976,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5900168,8.4482613,7.8773789,12,0,-35.374229,0,2,3,2021,6,0,33,28,1,0,0,5.9368401,5.9368401,.05,.05,0,0,0,0,0,0,0,0,0,4.2088809,8.0785904,58.32,50.22,54.1,59.11,8.333333333333334,1,1,0,0,12,13,4,1,597,584953.63,285818.03,224152.13,7746.5337,0,-699.64587,2354.1946 +10994,13425,23978,-9,23976,23977,1,0,28,0,0,0,1,1,-9,0,3,8.5683756,8.458045,0,0,0,-994.88818,0,1,2,2021,8,1,38,38,1,1,1,17.630541,17.630541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,12,13,5,1,629,128038.53,-28186.475,0,0,0,1882.9802,1806.3051 +10994,13426,23979,-9,23976,23977,1,1,25,0,0,0,1,1,-9,0,4,8.326045,8.4379721,0,0,0,-985.66742,0,1,2,2021,17,6,40,38,1,6,1,15.395552,15.395552,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,984,51511.086,-129402.84,196382.55,139824.13,17432.592,0,2193.7036 +10994,13427,23980,-9,23976,23977,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.35553,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9268413,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,751,0,0,0,0,0,0,414.36877 +10995,13428,23981,23982,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.6860266,6.9977665,32,8,23.912037,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2112579,57.16,56.15,58.39,36.66,10,1,1,0,0,0,10,2,0,519.5,317101.72,53266.68,261850.73,0,0,0,1386.0608 +10995,13428,23982,23981,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,32,-8,-168.48074,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.39,36.66,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,0,519.5,317101.72,53266.68,261850.73,0,0,0,1386.0608 +10996,13429,23983,23984,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.0102425,6.7416792,0,41,-2,83.231766,0,3,3,2021,6,0,24,20,1,0,0,5.0000048,5.0000048,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,608.5,1260678.6,887058.94,505548.25,0,12308.027,0,4572.0488 +10996,13429,23984,23983,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.9939137,9.5042982,7.6411643,41,2,-135.8214,0,3,3,2021,7,0,42,45,1,0,0,35.494125,35.494125,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2127514,57.06,57.76,60.12,54.8,0,1,1,0,0,8,9,5,1,608.5,1260678.6,887058.94,505548.25,0,12308.027,0,4572.0488 +10997,13430,23985,23986,-9,-9,1,1,56,0,1,0,1,1,-9,0,2,8.0515509,8.1925735,7.2859268,4,10,40.145325,0,2,2,2021,10,0,15,35,1,0,0,26.761471,26.761471,.05,.05,0,0,0,0,0,0,1,1,0,0,7.134625,45.56,51,51.83,57.2,8.333333333333334,1,1,0,0,12,12,4,1,2582.5,1178325.1,713961.06,271176.94,36815.945,0,0,3634.4492 +10997,13430,23986,23985,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,8.4515438,8.3290596,4.2151208,4,-10,8.8954868,0,-9,-9,2021,12,1,44,40,1,1,0,9.0709171,9.0709171,0,0,0,0,0,0,0,0,1,1,0,4.2248278,0,51.83,57.2,45.56,51,8.333333333333334,1,1,0,0,6,12,4,1,2582.5,1178325.1,713961.06,271176.94,36815.945,0,0,3634.4492 +10998,13431,23987,23988,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.1992264,9.3907938,0,6,3,105.67265,0,2,2,2021,8,0,60,60,1,0,0,17.177866,17.177866,.05,.05,0,0,0,0,0,0,0,0,0,5.0357704,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,12,5,0,812,1362320,495672.88,488792.13,0,0,0,6466.5088 +10998,13431,23988,23987,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.8918028,8.7283459,0,6,-3,43.594917,0,2,2,2021,5,1,45,45,1,1,0,23.537365,23.537365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,12,5,0,812,1362320,495672.88,488792.13,0,0,0,6466.5088 +10998,13432,23989,-9,23988,23987,1,0,24,0,0,0,1,1,-9,0,5,7.7090998,7.5639815,0,0,0,-908.02484,0,2,2,2021,6,0,12,12,1,0,1,22.285339,22.285339,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,5,12,3,0,1226,48612.578,0,0,0,0,0,1364.0748 +10998,13433,23990,-9,23988,23987,1,0,22,0,0,0,2,2,1,0,5,6.784307,6.9349146,0,0,0,-1018.4053,-9,2,2,2021,17,6,15,0,1,6,1,7.5337863,7.5337863,0,0,0,0,0,0,0,0,0,0,0,0,0,21.13,66.29000000000001,-9,-9,1.666666666666667,1,1,0,0,5,12,2,0,338,67975.32,0,0,0,0,0,280.35757 +10999,13434,23991,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,9.5762367,9.4175615,0,0,0,-929.8949,0,2,2,2021,19,6,43,45,1,6,0,47.743565,47.743565,0,0,0,0,0,0,0,0,0,0,0,3.0917382,0,24.27,57.83,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,9199,695844.06,465103.56,175520.88,73244.383,0,0,4921.8047 +11000,13435,23992,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,3.7849131,4.0415835,0,0,-1141.9561,-9,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6639261,4.120729,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,360,262279.97,145922.55,0,0,0,0,-55.000977 +11001,13436,23993,23994,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.5033512,8.173049,0,22,1,-10.855171,0,1,2,2021,15,6,70,70,1,6,0,6.3925257,6.3925257,.05,.05,0,0,0,0,0,0,1,1,0,7.9686642,0,41.7,45.97,40.58,60.95,3.333333333333333,1,1,0,0,7,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13436,23994,23993,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.6201601,9.385601,0,9,-1,7.2267284,0,-9,-9,2021,11,1,60,48,1,1,0,18.259848,18.259848,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,40.58,60.95,41.7,45.97,6.666666666666667,1,1,0,0,8,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13436,23995,-9,23993,23994,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1021.2401,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8408637,0,39.05,59.16,-9,-9,5,1,1,0,0,0,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13437,23996,-9,23993,23994,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-847.55115,-9,1,1,2021,6,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.673115,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,3123,-92493.945,0,0,0,0,0,401.35468 +11002,13438,23997,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,6.9250541,7.4684343,0,0,-965.97583,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.89908,7.4907246,37.05,37.29,-9,-9,6.666666666666667,1,1,0,0,7,13,3,1,419,640679.81,435674.81,95740.078,0,7028.7549,0,811.90594 +11003,13439,23998,23999,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5761194,8.5764141,0,9,-12,-13.333118,0,2,3,2021,9,0,45,42,1,0,0,12.74652,12.74652,.05,.05,.05,0,0,0,0,0,0,0,0,5.744978,0,57.56,54.55,54.2,57.49,8.333333333333334,1,1,0,0,10,7,4,1,3388,344272.53,99361.633,214292.28,0,7841.1196,0,3175.3389 +11003,13439,23999,23998,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.8656869,7.5338988,7.3724999,9,12,53.293312,0,-9,-9,2021,6,0,15,15,1,0,0,8.3282804,8.3282804,0,0,0,0,0,0,0,2,0,0,0,6.8882174,6.7084212,54.2,57.49,57.56,54.55,10,1,1,0,0,11,7,4,1,3388,344272.53,99361.633,214292.28,0,7841.1196,0,3175.3389 +11004,13440,24000,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,6.0441394,5.9838037,0,0,-1028.5475,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8922596,66.2,41.05,-9,-9,10,1,1,0,0,0,13,2,1,1894,68162.617,127180.73,0,0,0,0,140.35274 +11005,13441,24001,24002,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,7,2,-141.80301,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.24,21.44,63.44,15.75,8.333333333333334,1,1,1,0,3,4,5,1,857.5,95713.281,125898.78,51953.113,33523.82,2914.1736,1908.3267,3881.9336 +11005,13441,24002,24001,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,9.0594902,8.9537096,0,7,-2,120.65047,0,-9,-9,2021,8,0,50,50,1,0,0,20.078981,20.078981,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,63.44,15.75,59.24,21.44,8.333333333333334,1,1,0,0,10,4,5,1,857.5,95713.281,125898.78,51953.113,33523.82,2914.1736,1908.3267,3881.9336 +11006,13442,24003,-9,24005,24004,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.9993,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24004,24005,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.5287218,7.3048725,0,6,4,30.301388,0,2,2,2021,11,0,60,56,1,0,0,3.4564722,3.4564722,.05,.05,0,0,0,0,0,0,1,0,1,4.943121,0,46.96,40.76,43,53,3.333333333333333,1,1,0,0,10,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24005,24004,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,5.7470126,5.6715798,0,6,-4,-8.7807369,0,-9,-9,2021,13,0,20,0,1,3,0,1.9522343,1.9522343,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43,53,46.96,40.76,6,1,1,0,0,6,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24006,-9,24005,24004,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.6996,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11007,13443,24007,24008,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.3315086,8.1098719,0,11,0,29.951153,0,-9,-9,2021,14,3,39,41,1,3,0,11.386532,11.386532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.88,25.43,31.92,55.92,6.666666666666667,1,1,0,0,9,4,4,0,609.5,452458.19,284668.31,128299.8,0,2253.77,0,2991.4026 +11007,13443,24008,24007,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,6.4485698,6.4735303,0,11,0,54.202614,0,2,3,2021,14,2,10,10,1,2,0,6.7459798,6.7459798,.05,.05,0,0,0,0,0,42,1,1,0,0,0,31.92,55.92,41.88,25.43,6.666666666666667,1,1,0,0,13,4,4,0,609.5,452458.19,284668.31,128299.8,0,2253.77,0,2991.4026 +11007,13444,24009,-9,24007,24008,1,1,30,0,0,0,2,2,-9,0,2,8.0199795,8.2983742,0,0,0,-1051.4644,0,2,2,2021,18,5,40,40,1,5,1,11.510709,11.510709,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.56,45.45,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,585,-100278.41,-68469.82,135567.31,20538.041,0,0,1221.7418 +11008,13445,24010,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.5058708,8.1781664,0,0,0,-999.83966,0,2,2,2021,11,0,40,37,1,0,0,11.048373,11.048373,.05,.05,0,0,0,0,0,2,1,1,0,4.1715913,0,46,61.6,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,459,1342139.5,936910.13,127245.59,0,0,0,1306.4574 +11009,13446,24011,24012,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,7.8071699,8.134737,42,-1,41.540539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1946201,8.3459539,62.39,56.71,58.23,43.46,10,1,1,0,0,15,6,3,1,1391,1269162.5,904749,280703.19,0,0,0,2924.561 +11009,13446,24012,24011,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.025435,7.0683746,42,1,99.009399,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9518466,58.23,43.46,62.39,56.71,8.333333333333334,1,1,0,0,0,6,3,1,1391,1269162.5,904749,280703.19,0,0,0,2924.561 +11010,13447,24013,24014,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.9338846,7.9532146,10,1,67.959984,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6710057,0,0,1,1,0,6.4882097,7.7759166,48.45,57.49,46.67,42.34,8.333333333333334,1,1,0,0,0,7,4,1,1646,1596393.8,495614,783336.63,0,0,0,4246.3018 +11010,13447,24014,24013,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.7197609,8.2471886,10,-1,-1.8663516,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5282121,7.7633953,46.67,42.34,48.45,57.49,8.333333333333334,1,1,0,0,0,7,4,1,1646,1596393.8,495614,783336.63,0,0,0,4246.3018 +11011,13448,24015,24016,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6067076,8.0692205,0,7,-2,46.145523,0,3,3,2021,7,0,30,30,1,0,0,9.2346401,9.2346401,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,0,1,1,0,0,11,12,4,1,363.5,1776259.9,826552.56,0,0,3037.7593,525.69873,2528.4788 +11011,13448,24016,24015,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.7370758,7.599164,7,2,-44.109329,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6864638,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,9,12,4,1,363.5,1776259.9,826552.56,0,0,3037.7593,525.69873,2528.4788 +11012,13449,24017,24018,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.6671877,7.9641232,0,6,0,63.870949,0,3,3,2021,8,0,44,42,1,0,0,5.9686303,5.9686303,0,0,.05,0,0,0,0,0,0,0,0,6.117002,0,51.24,58.84,48.98,57.22,8.333333333333334,1,1,0,0,8,2,5,1,263,679274.94,395403.38,135471.73,68508.883,0,0,4524.4063 +11012,13449,24018,24017,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2285442,9.5688133,0,6,9,33.084412,0,2,2,2021,14,2,37,37,1,2,0,27.514135,27.514135,0,0,.05,0,0,0,0,0,0,0,0,6.4941607,0,48.98,57.22,51.24,58.84,8.333333333333334,1,1,0,0,8,2,5,1,263,679274.94,395403.38,135471.73,68508.883,0,0,4524.4063 +11013,13450,24019,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6248674,6.3651843,0,0,-1089.9713,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.874666,6.903017,54.17,33,-9,-9,10,3,4,0,0,0,8,2,1,483,535156.69,151940.27,331401.66,0,0,0,820.14813 +11014,13451,24020,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.9834,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47775403,0,46,23.63,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,1788,181070.89,0,0,0,0,22.562475,608.35248 +11015,13452,24021,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.000659,8.2409163,0,0,0,-1056.8661,0,2,2,2021,11,0,37,53,1,0,0,8.6820154,8.6820154,.05,.05,.05,0,0,0,0,27,0,0,0,0,0,34.66,52.21,-9,-9,5,1,1,0,0,7,2,4,0,250,67938.273,54597.457,0,0,2924.822,0,1075.6024 +11015,13453,24022,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,1,7.7558851,8.1515408,0,0,0,-886.45258,-9,-9,-9,2021,17,6,37,0,1,6,0,8.9802599,8.9802599,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.43,31.26,-9,-9,1.666666666666667,1,1,0,0,4,2,3,0,1120,-156318.81,20233.805,0,0,12595.032,0,1609.7273 +11016,13454,24023,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.7144299,7.0829139,0,0,-990.26862,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.29611492,6.7505436,52.58,44.5,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2144,-104154.09,-56993.176,0,0,0,0,1352.0522 +11017,13455,24024,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,6.5929155,6.3877716,0,0,-1124.0702,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4297371,6.3813276,49.8,36.69,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,976,387407.38,81974.031,82251.023,0,0,0,298.78381 +11018,13456,24025,24027,-9,-9,1,1,42,0,3,0,2,2,-9,0,2,8.6162214,8.2554588,0,13,11,4.8641791,0,2,3,2021,27,11,38,38,1,11,0,11.756035,11.756035,.05,.05,0,0,0,0,0,14.5,1,1,0,.36824012,0,19.74,57.58,34.64,15.66,3.333333333333333,1,1,0,0,9,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11018,13456,24026,-9,24027,24025,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.14917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11018,13456,24027,24025,-9,-9,1,0,31,0,3,0,2,2,-9,0,1,7.2882261,7.5914831,4.1486039,13,-11,-149.88071,0,2,1,2021,19,6,14,12,1,6,0,11.895995,11.895995,.05,.05,0,0,0,0,0,27,1,1,0,4.0035691,0,34.64,15.66,19.74,57.58,3.333333333333333,1,1,0,0,8,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11019,13457,24028,-9,24030,24029,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.73895,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24029,24030,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,7.939187,7.5321269,0,17,4,-10.301177,0,3,3,2021,7,0,40,40,1,0,0,7.369133,7.369133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.33,53.46,6.666666666666667,1,1,0,0,11,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24030,24029,-9,-9,1,0,32,0,3,0,3,3,-9,0,3,6.7892232,6.6539645,0,17,-4,-54.265659,0,2,2,2021,7,0,20,20,1,0,0,5.7214189,5.7214189,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.15,52.91,6.666666666666667,1,1,0,0,2,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24031,-9,24030,24029,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1058.8278,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24032,-9,24030,24029,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1025.9341,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11020,13458,24033,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.4329948,8.4557552,0,0,0,-891.77325,0,2,2,2021,11,0,45,37,1,0,0,11.483626,11.483626,.05,.05,0,0,0,0,.0054526832,0,0,0,0,2.8913305,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,10,2,5,0,2173,198558.88,52407.582,0,0,0,0,1672.1279 +11021,13459,24034,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0865669,8.6507893,0,0,0,-1099.198,0,2,2,2021,8,0,41,40,1,0,0,16.512009,16.512009,0,0,0,0,0,0,0,0,0,0,0,2.8708618,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,548,-56553.434,0,0,0,0,0,3067.4358 +11022,13460,24035,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.5983372,5.6422143,0,0,-869.14343,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.7208517,7.919497,24.719379,0,1,1,0,0,5.5815496,52.42,37.76,-9,-9,10,1,1,0,0,0,6,2,1,523,254065.59,30026.094,133677.42,0,0,0,729.83063 +11023,13461,24036,24037,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.882081,5.6795554,46,4,52.247879,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7854171,49.54,53.32,52.05,36.56,8.333333333333334,1,1,0,0,8,9,2,1,1725,1043310.9,287348.63,722159.88,0,2138.9668,0,970.69196 +11023,13461,24037,24036,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,6.5566902,6.5785995,0,45,-4,-130.50554,-9,-9,3,2021,11,0,35,0,1,0,0,2.6187375,2.6187375,0,0,0,0,0,0,0,0,1,1,0,0,0,52.05,36.56,49.54,53.32,10,1,1,0,0,10,9,2,1,1725,1043310.9,287348.63,722159.88,0,2138.9668,0,970.69196 +11024,13462,24038,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.7045007,5.1356711,0,0,-1033.7268,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5819368,5.4895687,36.85,50.58,-9,-9,5,1,1,0,0,0,9,2,1,286,1070076.1,0,702163.31,0,0,0,1786.5874 +11025,13463,24039,24040,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.0627537,7.0381808,0,7,-4,5.26965,0,-9,-9,2021,11,1,28,27,1,1,0,5.9117422,5.9117422,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.84,18.76,44.64,29.82,3.333333333333333,1,1,0,1,6,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13463,24040,24039,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,8.6090708,8.4714012,0,11,4,-59.115246,0,-9,-9,2021,22,10,39,39,1,10,0,17.574125,17.574125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.64,29.82,49.84,18.76,5,1,1,0,1,11,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13463,24041,-9,24039,24040,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-888.93457,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13464,24042,-9,24039,24040,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1034.4042,-9,3,1,2021,29,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.73,46.55,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,172,-149918.22,0,0,0,0,0,0 +11026,13465,24043,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5666018,8.3906288,0,0,0,-1029.2603,0,2,2,2021,12,2,39,39,1,2,0,16.601948,16.601948,.05,.05,0,0,0,0,0,0,0,0,0,.62988323,0,41.66,59.42,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,552,575411.44,230639.98,0,0,9902.2451,-231.25009,1797.1593 +11027,13466,24044,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,5.1701956,5.263463,0,0,-1022.3469,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,6.86797,0,0,1,1,0,0,5.5308437,40.65,36.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,612,139841.22,-68410.625,94402.141,0,0,0,882.12195 +11028,13467,24045,24046,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.4481249,9.3517151,0,9,-13,8.2353592,0,1,2,2021,27,11,82,52,1,11,0,12.010448,12.010448,0,0,0,0,0,0,0,0,0,0,0,.25499791,0,30.13,56.51,54.79,55.86,3.333333333333333,1,1,0,0,11,7,5,1,468,2792357,1001141.5,1289454.9,0,0,0,6086.0337 +11028,13467,24046,24045,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.1504889,7.9359288,20,13,59.9389,0,1,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2463732,7.983747,54.79,55.86,30.13,56.51,8.333333333333334,1,1,0,0,10,7,5,1,468,2792357,1001141.5,1289454.9,0,0,0,6086.0337 +11029,13468,24047,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.453526,6.5749474,0,0,-991.71301,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.780654,6.6738653,66.869469,0,1,1,0,0,6.7348652,52,45,-9,-9,8,1,1,0,0,0,10,2,0,471,509292.81,67051.219,347534.69,0,0,385.74335,2232.7119 +11030,13469,24048,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5044403,8.1748171,0,0,0,-891.61438,0,3,3,2021,7,0,50,50,1,0,0,11.283761,11.283761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,226,2973488.3,2980576.8,186497,0,0,0,1978.8457 +11031,13470,24049,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.8711677,7.649416,7.4364738,0,0,-1078.9934,0,2,2,2021,12,2,16,16,1,2,0,6.2370839,6.2370839,0,0,0,0,0,0,0,0,1,1,0,7.4976072,7.2548418,64.40000000000001,36.46,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,499,544851.19,193643.42,136367.92,-1494.6863,0,0,947.85077 +11032,13471,24050,-9,-9,-9,1,0,42,0,1,0,2,2,1,0,3,0,0,0,0,0,-968.38281,-9,2,3,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.12,56.28,-9,-9,5,1,1,1,1,10,9,1,0,776,0,0,0,0,0,0,1144.6523 +11032,13471,24051,-9,24050,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.08179,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,1,0,776,0,0,0,0,0,0,1144.6523 +11033,13472,24052,24053,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.7474284,6.714684,0,31,-8,9.6567373,0,2,3,2021,6,0,40,40,1,0,0,2.1513267,2.1513267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.21,49.46,61.84,41.58,6.666666666666667,1,1,0,0,12,12,2,1,763,87250.094,23170.314,116000.56,0,36294.602,0,553.46216 +11033,13472,24053,24052,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,6.1232815,5.8249621,0,31,8,42.978157,0,2,2,2021,7,0,60,60,1,0,0,.7767151,.7767151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.84,41.58,54.21,49.46,1.666666666666667,1,1,0,0,11,12,2,1,763,87250.094,23170.314,116000.56,0,36294.602,0,553.46216 +11033,13473,24054,-9,24052,24053,1,1,26,0,0,0,2,2,-9,0,4,8.4811411,8.5922852,0,0,0,-995.5202,0,2,2,2021,10,0,41,40,1,0,1,15.114371,15.114371,.05,.05,0,0,0,0,0,0,0,0,0,1.5065643,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,12,5,1,521,171523.86,-127593.31,147155.41,68572.617,18887.131,442.88989,1681.2949 +11034,13474,24055,-9,24056,24057,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-865.86438,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13474,24056,24057,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.3763123,8.4710503,0,6,-1,1.1517836,0,3,3,2021,7,0,38,37,1,0,0,12.93475,12.93475,.05,.05,0,0,0,0,0,0,1,1,0,.6292572,0,57.9,51.84,59.33,51.29,8.333333333333334,1,1,0,0,15,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13474,24057,24056,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,9.31672,8.9228802,0,6,1,-17.152206,0,2,2,2021,6,0,40,40,1,0,0,19.40547,19.40547,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,59.33,51.29,57.9,51.84,8.333333333333334,1,1,0,0,15,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13475,24058,-9,24056,24057,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1069.2665,-9,1,1,2021,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,-9,-9,10,1,1,0,0,1,13,1,1,364,0,0,0,0,0,0,0 +11035,13476,24059,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-965.30426,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,10,1,1,0,0,0,7,1,0,163,73337.328,0,143727.92,0,0,0,989.69501 +11036,13477,24060,24061,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,12,7,108.3891,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6738629,0,54.39,44.26,57.16,56.15,10,1,1,0,0,13,7,2,1,1013,215581.72,188553.08,286331.25,0,0,194.45494,3773.7002 +11036,13477,24061,24060,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8928933,7.1286578,12,-7,-4.7161651,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1133571,57.16,56.15,54.39,44.26,10,1,1,0,0,0,7,2,1,1013,215581.72,188553.08,286331.25,0,0,194.45494,3773.7002 +11037,13478,24062,24064,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.299293,6.2240734,0,16,0,-15.330993,0,2,2,2021,6,0,10,8,1,0,0,6.9217734,6.9217734,0,0,0,0,0,0,0,0,1,1,0,7.6940675,0,57.16,56.15,57.33,53.46,8.333333333333334,3,4,0,0,11,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24063,-9,24062,24064,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.7667,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24064,24062,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.4502525,9.4774761,0,16,0,80.579681,0,2,1,2021,13,3,45,50,1,3,0,30.905338,30.905338,.05,.05,.05,0,0,0,0,0,1,1,0,8.1970139,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24065,-9,24062,24064,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7103,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11038,13479,24066,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1041.7892,0,2,2,2021,26,9,0,24,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.09,47.89,-9,-9,0,1,1,1,1,7,10,1,0,271,0,0,0,0,0,0,527.03223 +11039,13480,24067,24068,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,47,9,0,0,-9,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.55008286,0,52,45,52,47,8,1,1,0,0,5,4,2,1,491,258555.77,-28042.199,167332.66,0,0,0,669.6687 +11039,13480,24068,24067,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,48,0,0,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.2758703,0,52,47,52,45,7,1,1,0,0,4,4,2,1,491,258555.77,-28042.199,167332.66,0,0,0,669.6687 +11040,13481,24069,24070,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.4450254,7.5167866,40,-2,-97.409378,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.936933,7.2590332,57.16,56.15,57.51,47.91,10,1,1,0,0,0,10,4,1,806,1553706.1,698605.5,401860.5,0,0,0,4107.1006 +11040,13481,24070,24069,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.3382883,8.6771774,40,2,-137.87839,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0651445,0,0,1,1,0,3.867444,8.2896376,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,806,1553706.1,698605.5,401860.5,0,0,0,4107.1006 +11041,13482,24071,24072,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,1,6.9347539,0,2,2,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8621931,0,49,48,58.7,46.46,7,1,1,0,0,0,7,3,1,322,3338975,964777.25,1865441.5,0,0,0,1707.9717 +11041,13482,24072,24071,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.9921136,8.401474,6.301013,45,-1,-92.134949,0,3,3,2021,6,0,16,25,1,0,0,26.073496,26.073496,0,0,.05,0,0,0,0,2,1,1,0,0,6.812305,58.7,46.46,49,48,8.333333333333334,1,1,0,0,13,7,3,1,322,3338975,964777.25,1865441.5,0,0,0,1707.9717 +11042,13483,24073,-9,24075,24074,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.8149,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11042,13483,24074,24075,-9,-9,1,1,37,1,1,0,2,2,-9,0,2,8.2567396,8.4142895,0,5,4,57.970142,0,-9,-9,2021,25,10,37,38,1,10,0,10.225779,10.225779,.05,.05,0,0,0,0,0,0,1,1,0,3.5471752,0,25.6,60.21,44.04,57.07,3.333333333333333,1,1,0,0,9,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11042,13483,24075,24074,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.1129045,8.2423105,0,5,-4,22.572573,0,2,2,2021,12,2,23,37,1,2,0,14.776689,14.776689,.05,.05,0,0,0,0,0,0,1,1,0,3.0027583,0,44.04,57.07,25.6,60.21,8.333333333333334,1,1,0,0,8,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11043,13484,24076,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.9782419,5.9767375,0,0,-1034.26,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2822824,5.9191256,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,149,465250.5,190333.11,81769.82,0,5531.2109,0,1035.3502 +11044,13485,24077,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.2022915,9.42451,0,0,0,-1020.0982,0,1,2,2021,12,4,40,52,1,4,0,32.866951,32.866951,.05,.05,0,0,0,0,0,0,0,0,0,2.9827251,0,23.23,66.05,-9,-9,6.666666666666667,1,1,0,0,8,9,5,0,572,35924.285,125108.45,0,0,0,0,4311.9814 +11045,13486,24078,-9,24083,24080,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.1492,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24079,-9,24083,24080,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1095.1584,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24080,24083,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,8.6179419,8.4884262,0,16,1,130.55936,0,2,1,2021,12,1,60,63,1,1,0,11.026649,11.026649,.05,.05,0,0,0,0,0,0,1,1,0,3.1544015,0,49.35,59.64,46.56,50.26,6.666666666666667,2,3,0,0,11,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24081,-9,24083,24080,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.46143,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24082,-9,24083,24080,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-942.54266,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24083,24080,-9,-9,1,0,39,0,4,0,2,2,-9,0,3,7.1627874,6.6767354,0,16,-1,-94.241997,0,-9,-9,2021,10,0,17,11,1,0,0,8.4746428,8.4746428,.05,.05,0,0,0,0,0,0,1,1,0,2.0839128,0,46.56,50.26,49.35,59.64,3.333333333333333,1,1,0,0,7,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11046,13487,24084,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.664403,7.5632381,0,0,0,-922.71484,0,2,-9,2021,12,1,50,48,1,1,0,5.576489,5.576489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,216,258717.89,64346.629,0,0,0,160.44519,970.84314 +11046,13488,24085,24086,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.3303108,8.146637,0,9,-2,9.8708534,0,2,3,2021,22,9,42,37,1,9,0,13.871179,13.871179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.34,54.24,36.42,44.54,6.666666666666667,1,1,0,0,10,9,4,0,1210,70442.789,110962.31,0,0,0,0,1597.549 +11046,13488,24086,24085,-9,-9,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,9,2,52.338989,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,38.34,54.24,3.333333333333333,1,1,0,0,7,9,4,0,1210,70442.789,110962.31,0,0,0,0,1597.549 +11047,13489,24087,24088,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,5.137701,5.2160683,50,-4,53.013359,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,83.523636,0,0,1,1,0,5.4563789,5.3685679,52.26,21.19,45.98,56.3,8.333333333333334,1,1,0,0,0,4,2,1,377,-42609.523,74784.047,0,0,0,0,1447.1382 +11047,13489,24088,24087,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.3554835,5.6049862,50,4,78.59729,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.8430729,5.2132568,45.98,56.3,52.26,21.19,6.666666666666667,1,1,0,0,0,4,2,1,377,-42609.523,74784.047,0,0,0,0,1447.1382 +11048,13490,24089,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,6.9426794,7.0977859,0,0,0,-1129.6788,0,-9,-9,2021,17,5,20,19,1,5,0,5.918839,5.918839,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,41.22,-9,-9,3.333333333333333,1,1,0,1,5,2,2,1,1755.5,329589.38,105905.98,112202.91,0,0,0,1186.5535 +11048,13490,24090,-9,24089,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-991.84241,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,-9,-9,5,1,1,0,1,0,2,2,1,1755.5,329589.38,105905.98,112202.91,0,0,0,1186.5535 +11048,13491,24091,-9,24089,-9,1,1,20,0,1,0,2,2,-9,0,3,8.0693312,7.7002578,0,0,0,-997.68109,-9,2,-9,2021,12,0,40,0,1,0,1,6.4452887,6.4452887,0,0,0,0,0,0,0,0,1,1,0,0,0,42.04,56.46,-9,-9,3.333333333333333,1,1,0,1,1,2,4,1,1701,-129953.35,39981.77,0,0,29616.947,0,490.18893 +11049,13492,24092,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,5.0072942,5.5289416,0,0,-926.2193,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6173835,27.97,47.86,-9,-9,1.666666666666667,1,1,0,1,3,12,2,0,414,373707.91,72093.477,125306.92,0,0,3392.2449,689.48047 +11050,13493,24093,-9,-9,24096,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.3176,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24094,-9,-9,24096,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.33466,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24095,-9,-9,24096,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1015.7405,-9,-9,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24096,-9,-9,-9,1,1,68,0,3,0,3,3,-9,0,5,0,0,0,0,0,-1078.5142,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11051,13494,24097,24099,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,9.2184162,8.9638195,0,16,1,25.168657,0,2,1,2021,0,0,7,7,1,0,0,151.36459,151.36459,.05,.05,0,0,0,0,0,0,1,1,0,10.311351,0,62.96,55.09,63.09,47.92,10,3,4,0,0,11,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13494,24098,-9,24097,24099,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.2146,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13494,24099,24097,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.7487707,8.6190348,0,18,-1,97.900116,0,2,2,2021,6,0,36,37,1,0,0,22.796064,22.796064,.05,.05,0,0,0,0,0,0,1,1,0,1.18025,0,63.09,47.92,62.96,55.09,0,3,4,0,0,12,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13495,24100,-9,24097,24099,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-890.10345,1,2,1,2021,6,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.16038954,0,48.87,58.55,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,465,0,0,0,0,0,0,-93.294052 +11052,13496,24101,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8271275,7.9223289,0,0,0,-1087.7853,0,2,-9,2021,12,0,35,40,1,0,0,10.391423,10.391423,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.03,55.74,-9,-9,1.666666666666667,1,1,0,0,12,4,4,0,1754,-238861.73,54977.547,3163.9863,15509.674,0,0,3191.9961 +11053,13497,24102,-9,24104,24103,1,0,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-843.90253,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,57.05,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11053,13497,24103,24104,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.8165584,7.7044129,0,10,2,-31.676672,0,2,-9,2021,13,3,41,37,1,3,0,7.3760047,7.3760047,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.02,44.64,44.26,59.43,6.666666666666667,1,1,0,0,11,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11053,13497,24104,24103,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.4961786,8.320549,0,10,-2,-10.94214,0,2,2,2021,12,2,30,30,1,2,0,17.562117,17.562117,0,0,0,0,0,0,0,0,1,1,0,0,0,44.26,59.43,54.02,44.64,6.666666666666667,1,1,0,0,11,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11054,13498,24105,24106,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.1866646,9.5562029,0,13,4,-36.379757,0,2,1,2021,30,11,72,70,1,11,0,21.76894,21.76894,.05,.05,0,0,0,0,0,0,1,1,0,7.9893756,0,19.84,56.31,55.19,54.26,3.333333333333333,1,1,0,0,12,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24106,24105,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.918601,8.0035601,0,13,-4,-85.125877,0,-9,-9,2021,11,0,12,16,1,0,0,24.75424,24.75424,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,19.84,56.31,8.333333333333334,1,1,0,0,12,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24107,-9,24106,24105,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.70886,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24108,-9,24106,24105,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.9039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11055,13499,24109,-9,24112,24111,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-869.76532,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24110,-9,24112,24111,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.28809,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24111,24112,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.2539463,7.8863435,0,4,-2,-9.1449575,0,-9,-9,2021,11,0,40,43,1,0,0,10.461013,10.461013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,46.61,56.93,3.333333333333333,1,1,0,0,12,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24112,24111,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,0,0,0,4,2,-128.28369,0,-9,-9,2021,13,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,46.08,57.2,5,1,1,1,0,9,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11056,13500,24113,-9,-9,-9,1,0,38,1,3,0,1,1,-9,1,4,0,4.9656234,5.2122211,0,0,-865.40967,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9437008,0,35.95,61.84,-9,-9,5,1,1,0,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13500,24114,-9,24113,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.04242,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13500,24115,-9,24113,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.93823,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13501,24116,-9,24113,-9,1,1,18,1,3,1,2,0,0,0,3,0,0,0,0,0,-836.0191,-9,1,-9,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.44,55.47,-9,-9,6.666666666666667,1,1,0,0,1,6,1,0,6294,0,0,0,0,0,0,0 +11057,13502,24117,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.6601,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.05,35.48,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,418,290766.63,186693.63,20485.438,82559.859,0,0,1161.5179 +11057,13502,24118,-9,24117,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1038.6219,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,418,290766.63,186693.63,20485.438,82559.859,0,0,1161.5179 +11058,13503,24119,24120,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,7.1182656,7.1593142,0,5,5,-83.608917,0,-9,-9,2021,6,1,24,24,1,1,0,6.0811296,6.0811296,0,0,0,0,0,0,0,27,1,1,0,0,0,38.17,41.83,54.94,53.18,8.333333333333334,1,1,0,0,7,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24120,24119,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,0,0,0,5,-5,-17.986771,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,38.17,41.83,8.333333333333334,1,1,0,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24121,-9,24120,24119,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.9639,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24122,-9,24120,24119,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.8142,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24123,-9,24120,24119,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.9678,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11059,13504,24124,24125,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.290894,7.0153275,61,0,-35.37112,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,2.3309147,0,0,1,1,0,1.0926088,7.1793671,53,46,51,46,8,1,1,0,0,0,6,2,1,547.5,496458.75,191388.11,96046.328,0,0,0,1379.3591 +11059,13504,24125,24124,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,0,62.570862,0,2,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,6,2,1,547.5,496458.75,191388.11,96046.328,0,0,0,1379.3591 +11060,13505,24126,-9,24128,24129,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.2947,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24127,-9,24128,24129,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.446,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24128,24129,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.4675784,7.3547664,0,17,-10,139.10304,-9,3,3,2021,11,0,30,0,1,2,0,5.4725957,5.4725957,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,2,3,0,0,1,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24129,24128,-9,-9,1,1,45,1,3,0,1,1,-9,0,4,0,0,0,17,10,-26.144339,-9,2,2,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,2,3,1,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11061,13506,24130,24131,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7870903,8.3585386,0,6,-1,-94.020782,0,-9,-9,2021,11,1,46,46,1,1,0,13.139281,13.139281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.04,62.95,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,1523.5,512941.44,240982.78,259924.56,147776.84,0,0,4280.9644 +11061,13506,24131,24130,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.4788837,8.6053896,0,6,1,-62.671268,0,-9,-9,2021,6,0,38,39,1,0,0,12.818419,12.818419,.05,.05,0,0,0,0,0,0,0,0,0,2.3134162,0,54.79,55.86,43.04,62.95,8.333333333333334,1,1,0,0,9,6,5,1,1523.5,512941.44,240982.78,259924.56,147776.84,0,0,4280.9644 +11062,13507,24132,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4093676,8.0206642,7.8082986,0,0,-950.14166,0,2,2,2021,9,0,21,41,1,0,0,6.9795141,6.9795141,.05,.05,0,1,0,0,0,0,0,0,0,3.7625623,7.3957305,46.2,56.93,-9,-9,10,1,1,0,0,15,7,4,1,554,275201.31,138191.48,268835.06,0,0,0,1776.5887 +11063,13508,24133,24134,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.2611647,7.3146706,4,0,-80.422707,-9,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.291368,56.09,38.73,47.36,53.68,8.333333333333334,1,1,0,0,0,6,3,1,317,300939.53,245155.97,195960.64,0,0,1988.4,1479.6857 +11063,13508,24134,24133,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.0024781,5.9562778,4,9,15.137787,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5184665,6.0115719,47.36,53.68,56.09,38.73,8.333333333333334,1,1,0,0,11,6,3,1,317,300939.53,245155.97,195960.64,0,0,1988.4,1479.6857 +11064,13509,24135,24136,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,0,0,0,7,-7,0,0,2,2,2021,10,0,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,36.27,60.6,7,1,1,1,0,8,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11064,13509,24136,24135,-9,-9,1,0,43,0,1,0,3,3,-9,1,3,0,0,0,7,7,0,0,2,2,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.27,60.6,51,57,5,3,4,0,0,0,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11064,13509,24137,-9,24136,24135,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.21637,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11065,13510,24138,24139,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.389327,7.8786545,32,1,80.079643,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.281255,7.088294,47.62,56.48,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,290.5,2514346,1518232.4,561259.38,0,0,0,2441.2253 +11065,13510,24139,24138,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.1197901,8.0362444,0,32,-1,-144.56656,0,3,3,2021,8,0,25,30,1,0,0,16.214275,16.214275,.05,.05,0,0,0,0,0,0,0,0,0,5.0509801,0,57.16,56.15,47.62,56.48,8.333333333333334,1,1,0,0,15,13,4,1,290.5,2514346,1518232.4,561259.38,0,0,0,2441.2253 +11065,13511,24140,-9,24138,24139,1,0,25,0,0,0,1,1,1,0,5,6.9674473,7.0537448,0,0,0,-1218.0724,-9,2,1,2021,4,1,24,0,1,1,1,4.0796571,4.0796571,0,0,0,0,0,0,0,0,0,0,0,0,0,56.85,53.73,-9,-9,10,1,1,0,0,5,13,2,1,906,207497.88,0,0,0,-2152.7351,0,444.31076 +11065,13512,24141,-9,24138,24139,1,0,20,0,0,0,2,2,-9,0,4,7.1826801,7.3921356,0,0,0,-1204.4231,0,2,1,2021,10,0,20,0,1,0,1,6.6125126,6.6125126,0,0,0,0,0,0,0,0,0,0,0,0,0,51.62,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,91,-75647.172,-62482.621,0,0,0,0,1206.77 +11066,13513,24142,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-935.51721,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,12.294024,151.62576,123.88547,120,1,1,0,4.3798075,0,49.33,16.96,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,1171,259825.88,-10830.565,138806.17,0,0,0,893.65515 +11067,13514,24143,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.3983183,7.2161365,0,0,0,-1137.2579,-9,2,2,2021,4,0,30,0,1,0,0,6.4511509,6.4511509,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,87,-7608.2729,-133345.11,0,0,0,0,1115.2195 +11068,13515,24144,24145,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.776947,9.176878,0,6,0,26.274567,0,2,3,2021,9,0,45,50,1,0,0,15.699786,15.699786,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.94,37.73,8.333333333333334,1,1,0,0,7,11,5,1,609.5,564729.38,267592.94,288055.06,45289.805,8102.2197,0,4049.5313 +11068,13515,24145,24144,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.0609884,8.3018684,0,6,0,21.854916,0,2,3,2021,11,0,47,47,1,0,0,8.6275444,8.6275444,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,37.73,51.24,58.84,6.666666666666667,1,1,0,0,7,11,5,1,609.5,564729.38,267592.94,288055.06,45289.805,8102.2197,0,4049.5313 +11068,13516,24146,-9,24145,24144,1,0,22,0,0,0,2,2,-9,0,4,7.4638748,7.5543714,0,0,0,-896.63068,0,2,2,2021,11,0,35,36,1,2,1,9.405612,9.405612,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,1938,227343.45,0,0,0,0,0,2230.8997 +11069,13517,24147,24148,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.1573696,8.1574402,0,22,2,7.9312983,0,3,3,2021,13,1,43,45,1,1,0,10.073122,10.073122,0,0,0,0,0,0,0,7,0,0,0,0,0,42.73,54.62,46.08,57.2,5,1,1,0,0,10,1,4,1,491,851746.38,133706.09,293760.19,0,0,0,2883.3149 +11069,13517,24148,24147,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.994204,8.3757448,0,22,-2,-106.80363,0,2,2,2021,9,0,41,37,1,0,0,7.837913,7.837913,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.08,57.2,42.73,54.62,8.333333333333334,1,1,0,0,7,1,4,1,491,851746.38,133706.09,293760.19,0,0,0,2883.3149 +11070,13518,24149,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1124.7264,0,3,-9,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32,30,-9,-9,0,4,2,1,1,0,8,1,0,115,-82590.195,0,0,0,0,0,1138.8118 +11071,13519,24150,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-893.37714,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90672612,0,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,4619,87458.961,0,0,0,0,0,696.30273 +11072,13520,24151,24152,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,6,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,54,51,5,1,1,0,0,0,4,1,0,614.5,-6625.5078,0,0,0,0,0,1274.9072 +11072,13520,24152,24151,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,6,23,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54,51,39.98,36.02,5,1,1,0,0,0,4,1,0,614.5,-6625.5078,0,0,0,0,0,1274.9072 +11073,13521,24153,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.3043556,6.8213415,0,0,0,-1148.8376,0,3,3,2021,8,1,18,21,1,1,0,8.0704184,8.0704184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.8,42.45,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,1682.5,472389.97,645697.75,0,0,0,0,3694.1494 +11073,13521,24154,-9,24153,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1169.4447,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1682.5,472389.97,645697.75,0,0,0,0,3694.1494 +11073,13522,24155,-9,24153,-9,1,1,22,0,1,0,2,2,0,0,4,0,0,0,0,0,-1003.3871,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,6,12,1,0,194,171020.52,0,0,0,0,0,-33.545616 +11073,13523,24156,-9,24153,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-989.9726,1,2,-9,2021,20,8,0,19,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0068429471,0,30.3,63.25,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,209,60915.809,0,0,0,0,0,71.768539 +11073,13524,24157,-9,24153,-9,1,1,25,0,1,0,1,1,0,0,3,0,0,0,0,0,-898.41058,-9,2,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,59.7,-9,-9,3.333333333333333,1,1,0,0,9,12,1,0,641,0,0,0,0,0,0,864.31708 +11074,13525,24158,24159,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.5282464,7.3500552,0,13,-3,-83.325676,0,2,2,2021,7,0,50,50,1,0,0,3.945673,3.945673,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,40.83,59.68,8.333333333333334,1,1,0,0,5,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24159,24158,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1313486,8.2045126,0,13,3,-139.39551,0,2,2,2021,7,0,40,41,1,0,0,8.3349848,8.3349848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.83,59.68,52.72,55.58,6.666666666666667,1,1,0,0,9,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24160,-9,24158,24159,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.44769,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24161,-9,24158,24159,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.93658,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11075,13526,24162,24163,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,2,10,92.967575,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.5544364,6.2316132,12.397707,7,1,1,0,0,0,64.01000000000001,32.53,37.03,25.08,8.333333333333334,1,1,0,0,0,11,2,1,588.5,880988.13,461584.72,168101.94,0,-258.56644,0,1193.2256 +11075,13526,24163,24162,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.3115573,7.5088925,2,-10,-47.873543,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,2.4079094,0,29.466652,0,1,1,0,5.3948565,7.260035,37.03,25.08,64.01000000000001,32.53,8.333333333333334,1,1,0,0,0,11,2,1,588.5,880988.13,461584.72,168101.94,0,-258.56644,0,1193.2256 +11076,13527,24164,24165,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.9806328,6.1677117,50,3,24.286987,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,34.563828,0,0,1,1,0,0,6.1609359,53.45,31.12,61.04,39.41,10,1,1,0,0,0,10,2,0,625.5,395555.63,-36600.664,0,0,0,0,1702.0991 +11076,13527,24165,24164,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,50,-3,49.513882,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,61.04,39.41,53.45,31.12,10,1,1,0,0,4,10,2,0,625.5,395555.63,-36600.664,0,0,0,0,1702.0991 +11077,13528,24166,24167,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5555105,8.5920038,0,10,-6,-41.940655,0,2,2,2021,15,5,39,35,1,5,0,16.169174,16.169174,.05,.05,0,0,0,0,0,14.5,0,0,0,4.086463,0,35.98,56.54,38.24,63.73,8.333333333333334,1,1,0,0,12,12,5,1,1143,347672.69,210471.94,87213.508,40772.098,5672.9404,0,3461.2827 +11077,13528,24167,24166,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5145988,8.3420467,0,10,6,-125.07199,0,3,3,2021,19,8,47,37,1,8,0,12.519134,12.519134,0,0,0,0,0,0,0,0,0,0,0,3.8544798,0,38.24,63.73,35.98,56.54,3.333333333333333,1,1,0,0,12,12,5,1,1143,347672.69,210471.94,87213.508,40772.098,5672.9404,0,3461.2827 +11078,13529,24168,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.2101388,5.5693069,0,0,-1057.0868,0,3,3,2021,12,0,0,37,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3814983,48.69,41.09,-9,-9,5,1,1,0,0,11,9,2,1,591,151326.03,0,138384.52,0,0,0,1608.0991 +11079,13530,24169,24170,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,9.6320314,9.5448408,34,-12,45.91066,0,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3236361,9.1543283,46.53,61.33,43.73,47.21,8.333333333333334,1,1,0,0,10,8,5,1,883.5,4657936.5,1511509.3,655857.56,0,0,0,17510.602 +11079,13530,24170,24169,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,8.6030674,9.1856909,8.6971273,11,12,49.932079,0,-9,-9,2021,13,2,20,20,1,2,0,28.644239,28.644239,0,0,0,0,0,0,0,0,1,1,0,7.8156328,9.114852,43.73,47.21,46.53,61.33,8.333333333333334,1,1,0,0,12,8,5,1,883.5,4657936.5,1511509.3,655857.56,0,0,0,17510.602 +11080,13531,24171,-9,24176,24172,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.83423,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24172,24176,-9,-9,1,1,36,1,3,0,2,2,-9,0,2,7.8070488,8.0551014,0,8,-3,-27.74427,0,-9,-9,2021,25,10,42,54,1,10,0,6.5020623,6.5020623,.05,.05,0,0,0,0,0,7,1,1,0,0,0,26.06,42.55,35.36,53.11,3.333333333333333,1,1,0,1,8,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24173,-9,24176,24172,1,1,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-999.9953,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24174,-9,24176,24172,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2596,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24175,-9,24176,24172,1,1,16,1,3,0,2,2,1,0,4,0,0,0,0,0,-977.20898,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24176,24172,-9,-9,1,0,39,1,3,0,2,2,-9,0,3,0,0,0,8,3,8.033411,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.36,53.11,26.06,42.55,6.666666666666667,1,1,0,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11081,13532,24177,24178,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,9.0045128,8.9788666,0,7,-7,186.85559,0,2,1,2021,14,4,45,47,1,4,0,16.146811,16.146811,.05,.05,0,0,0,0,0,2,0,0,0,4.4011688,0,49.03,30.52,54.96,53.17,8.333333333333334,1,1,0,0,9,6,5,0,1199,175392.22,-64596.922,247825.63,56985.977,5014.1362,0,4861.4937 +11081,13532,24178,24177,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.6345911,8.5734015,0,7,7,-94.18177,0,3,2,2021,7,0,40,40,1,0,0,13.57803,13.57803,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,49.03,30.52,5,1,1,0,0,10,6,5,0,1199,175392.22,-64596.922,247825.63,56985.977,5014.1362,0,4861.4937 +11082,13533,24179,24180,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,2.8587885,2.9127688,0,8,-2,18.707657,0,-9,-9,2021,7,0,20,20,1,0,0,.092453443,.092453443,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,50,57,8.333333333333334,1,1,0,0,12,9,5,1,581.5,395019.31,68204.984,299656.94,128406.08,0,0,4473.4346 +11082,13533,24180,24179,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.1370258,9.2545023,0,8,2,-97.507332,0,-9,-9,2021,16,5,60,60,1,5,0,21.175619,21.175619,.05,.05,0,0,0,0,0,0,0,0,0,6.8564672,0,50,57,46.44,59.62,3.333333333333333,1,1,0,0,12,9,5,1,581.5,395019.31,68204.984,299656.94,128406.08,0,0,4473.4346 +11083,13534,24181,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,8.0988531,7.9342813,0,0,-1074.8584,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8890705,7.6692457,57.83,39.53,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,290,523849.47,282055.59,503136.31,0,0,0,3219.0891 +11084,13535,24182,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.8814178,7.0066214,0,0,-986.39081,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4648209,6.912221,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,268,376303.28,225622.38,68347.211,0,0,0,2009.7997 +11085,13536,24183,24184,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7203989,7.7716541,0,5,-2,146.89537,0,-9,-9,2021,21,9,24,24,1,9,0,11.141418,11.141418,.05,.05,0,0,0,0,0,0,0,0,0,2.783627,0,29.87,49.76,45.56,47.83,3.333333333333333,1,1,0,0,6,5,4,1,309,136707.72,58113.125,49529.773,63453.738,1259.4253,0,2968.3848 +11085,13536,24184,24183,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9781542,8.21486,0,5,2,-22.469898,-9,-9,-9,2021,12,0,40,0,1,0,0,8.5267744,8.5267744,.05,.05,0,0,0,0,0,0,0,0,0,3.1855135,0,45.56,47.83,29.87,49.76,8.333333333333334,1,1,0,0,6,5,4,1,309,136707.72,58113.125,49529.773,63453.738,1259.4253,0,2968.3848 +11086,13537,24185,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.4096603,5.3129983,0,0,-999.39929,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4222045,41.34,56.62,-9,-9,10,1,1,0,0,0,1,2,1,624,215099.25,0,245731.25,0,2929.6658,4066.272,1344.0164 +11087,13538,24186,-9,24187,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.09863,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,987.5,-31210.227,-64809.336,0,0,0,0,910.78589 +11087,13538,24187,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,6.7803273,6.7783136,0,0,0,-1071.2443,0,3,-9,2021,11,0,20,9,1,0,0,4.5877428,4.5877428,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,5,1,1,0,0,6,6,2,0,987.5,-31210.227,-64809.336,0,0,0,0,910.78589 +11087,13539,24188,-9,24187,-9,1,0,19,0,1,0,2,2,-9,0,4,7.6835694,7.698215,5.7654071,0,0,-889.45563,-9,2,-9,2021,12,0,28,0,1,0,1,11.850304,11.850304,.05,.05,0,0,0,0,0,0,1,0,1,5.3159266,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,3,6,3,0,334,13383.998,36565.738,41256.469,70177.484,0,-573.77631,1417.6404 +11088,13540,24189,24190,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.021986,8.1924858,0,25,14,-77.294128,0,3,3,2021,32,12,43,43,1,12,0,8.2932386,8.2932386,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.77,38.64,28.94,58.07,3.333333333333333,1,1,0,0,15,5,4,0,365.5,618360.06,334824.06,203455.13,13971.217,2329.3406,20294.953,2378.7319 +11088,13540,24190,24189,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.293293,8.1362009,0,25,-14,5.7368317,0,2,3,2021,30,11,40,40,1,11,0,9.872468,9.872468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.94,58.07,36.77,38.64,1.666666666666667,1,1,0,0,15,5,4,0,365.5,618360.06,334824.06,203455.13,13971.217,2329.3406,20294.953,2378.7319 +11088,13541,24191,-9,24190,24189,1,0,21,0,0,0,2,2,-9,0,3,7.6212339,7.7574892,0,0,0,-837.88422,0,3,2,2021,22,9,31,36,1,9,1,9.9705944,9.9705944,0,0,0,0,0,0,0,0,1,1,0,0,0,33.5,56.52,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,266,-16309.454,0,0,0,0,-279.47806,1067.7687 +11088,13542,24192,-9,24190,24189,1,0,18,0,0,0,2,2,1,0,3,7.1494436,6.899272,0,0,0,-985.87982,-9,3,2,2021,26,12,25,0,1,12,1,3.7052441,3.7052441,0,0,0,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,2,5,2,0,1472,96067.703,0,0,0,0,0,576.44885 +11089,13543,24193,24194,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7149673,7.8461633,34,-14,-62.934238,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1468987,7.7051105,62.39,56.71,49.47,34.02,10,1,1,0,0,0,9,4,1,228,1748219.9,456094.53,312379.81,0,0,0,5767.333 +11089,13543,24194,24193,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7783265,7.769474,33,14,31.19631,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3609343,7.8926539,49.47,34.02,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,228,1748219.9,456094.53,312379.81,0,0,0,5767.333 +11090,13544,24195,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.9583063,8.364397,0,0,0,-1006.0406,0,2,2,2021,11,0,65,12,1,0,0,7.1153178,7.1153178,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,53.23,-9,-9,5,4,2,0,0,9,6,4,1,491.5,443596.31,62394.297,232313.42,66818.109,0,0,1913.9514 +11090,13544,24196,-9,24195,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.9792,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,4,1,491.5,443596.31,62394.297,232313.42,66818.109,0,0,1913.9514 +11091,13545,24197,-9,24199,24200,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.3335,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24198,-9,24199,24200,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1057.2451,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,51,-9,-9,10,1,1,0,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24199,24200,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,7.9309597,8.451438,0,5,-4,37.830746,0,-9,-9,2021,7,0,37,50,1,0,0,9.1341591,9.1341591,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,42.99,48.84,8.333333333333334,1,1,0,0,9,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24200,24199,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.291647,8.2467461,0,5,4,49.760487,0,-9,-9,2021,17,5,41,35,1,5,0,11.901711,11.901711,0,0,0,0,0,0,0,0,1,1,0,0,0,42.99,48.84,54.1,59.11,6.666666666666667,1,1,0,0,9,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24201,-9,-9,24200,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1064.0792,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13546,24202,-9,24199,24200,1,0,22,0,1,0,2,2,-9,0,5,7.2788897,7.3297696,0,0,0,-1036.1926,0,2,2,2021,7,0,32,37,1,0,1,5.0684566,5.0684566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.83,46,-9,-9,8.333333333333334,1,1,0,1,3,11,3,1,363,-234668.23,-50494.563,0,0,0,0,787.68146 +11092,13547,24203,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.9798698,7.1645865,0,0,-1014.7242,0,2,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,.84204894,0,16.880142,0,1,1,0,6.6350288,6.8024502,51.79,43.42,-9,-9,10,1,1,0,0,0,9,2,1,772,339832.75,68392.031,171393.05,0,0,0,1151.384 +11093,13548,24204,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,1,8.7952747,8.96138,7.1013875,0,0,-1034.5242,0,2,2,2021,29,12,26,0,1,12,0,22.617714,22.617714,.05,.05,.05,0,0,0,0,2,0,0,0,6.6470218,7.2872915,35.22,32.79,-9,-9,0,1,1,0,1,14,7,5,1,3980,324066.75,250641.63,224398.55,72518.367,0,0,4458.2871 +11094,13549,24205,-9,24208,24207,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.45355,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24206,-9,24208,24207,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.22852,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24207,24208,-9,-9,1,1,43,0,2,0,2,2,-9,0,1,0,0,0,4,2,0,-9,2,3,2021,29,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7168031,0,15.94,44.42,49.04,55.86,1.666666666666667,1,1,0,0,10,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24208,24207,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,4,-2,0,-9,3,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1512232,0,49.04,55.86,15.94,44.42,8.333333333333334,1,1,0,0,5,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11095,13550,24209,-9,24211,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.1642,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11095,13550,24210,-9,24211,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4001,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11095,13550,24211,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.6133037,7.9352303,5.9054723,0,0,-855.07446,0,-9,-9,2021,11,0,25,24,1,0,0,11.849741,11.849741,.05,.05,0,0,0,0,0,2,1,1,0,6.4368911,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11096,13551,24212,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.906754,6.9405618,0,0,-935.9892,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8766041,47.56,41.5,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,457,1332127.8,669088.69,493150.28,22680.736,0,16479.564,1628.8916 +11097,13552,24213,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3601389,7.2226925,0,0,0,-1020.6307,0,1,1,2021,9,0,45,54,1,0,0,3.7777276,3.7777276,0,0,0,0,0,0,0,0,0,0,0,6.0713091,0,44.45,50.99,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,224,-34690.75,0,0,0,0,0,554.20313 +11098,13553,24214,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.957757,9.0963783,6.5501928,0,0,-1015.0569,0,-9,-9,2021,6,0,50,45,1,0,0,18.851763,18.851763,.05,.05,0,0,0,0,0,0,1,1,0,6.9538026,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11098,13553,24215,-9,24214,-9,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1114.3726,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11098,13553,24216,-9,24214,-9,1,0,17,0,0,1,2,0,0,0,4,0,4.2030487,4.6489453,0,0,-1022.4159,-9,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1670837,0,46.16,58.62,-9,-9,8.333333333333334,4,2,0,0,1,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11099,13554,24217,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5780339,7.7702832,5.7189989,0,0,-880.16211,0,3,3,2021,7,0,23,20,1,0,0,9.598835,9.598835,0,0,0,0,0,0,0,0,1,0,1,0,5.7250018,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,496,-165306.39,-31844.316,0,0,557.69177,0,1223.1687 +11099,13555,24218,-9,24217,-9,1,0,19,0,0,0,2,2,-9,0,4,7.3282633,7.4212232,0,0,0,-1039.7472,0,2,-9,2021,16,4,25,25,1,4,1,6.0426178,6.0426178,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.82,58.52,-9,-9,10,1,1,0,0,3,2,3,1,455,56001.828,-134645.39,0,0,0,0,2307.6086 +11100,13556,24219,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.7915244,5.9180708,0,0,-915.66321,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6585841,5.9977055,50.46,53.68,-9,-9,10,1,1,0,0,0,1,2,1,1531,286493.56,5726.7271,122839.77,0,0,0,1531.1377 +11101,13557,24220,24222,-9,-9,1,1,34,0,1,0,3,3,-9,0,5,8.1745758,8.5101204,0,13,-2,-22.604826,0,2,2,2021,6,0,50,60,1,0,0,11.356768,11.356768,.05,.05,0,0,0,0,0,0,1,1,0,.96746552,0,50.54,62.09,62.39,56.71,10,1,1,0,0,9,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11101,13557,24221,-9,24222,24220,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.4888,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11101,13557,24222,24220,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,8.3193359,8.126976,0,13,2,-110.32217,0,2,2,2021,11,0,40,40,1,0,0,7.802248,7.802248,0,0,0,0,0,0,0,0,1,1,0,.97863841,0,62.39,56.71,50.54,62.09,8.333333333333334,1,1,0,0,5,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11102,13558,24223,-9,24224,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1116.1947,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,2,1,1391.5,64456.375,0,0,0,0,0,1322.9016 +11102,13558,24224,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.8659744,7.4315009,6.5935411,0,0,-1007.6433,0,1,3,2021,21,10,16,10,1,10,0,6.074697,6.074697,0,0,0,0,0,0,0,0,1,1,0,6.5226107,0,47.47,44.67,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1391.5,64456.375,0,0,0,0,0,1322.9016 +11103,13559,24225,-9,24226,24227,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.551,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11103,13559,24226,24227,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.2989025,7.230113,0,5,-1,1.2347981,0,-9,-9,2021,10,0,40,0,1,1,0,4.662715,4.662715,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,32.08,37.15,8,1,1,0,0,1,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11103,13559,24227,24226,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.1472435,7.9929714,0,18,1,34.029305,0,-9,-9,2021,22,8,40,0,1,8,0,9.9731236,9.9731236,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,37.15,50,54,1.666666666666667,1,1,0,0,5,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11104,13560,24228,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.5998859,7.6493654,0,0,0,-1126.2792,0,-9,-9,2021,12,2,34,34,1,2,0,7.0669961,7.0669961,.05,.05,0,0,0,0,0,0,0,0,0,5.6391559,0,52.51,54.26,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,923,-242526.3,-82329.461,0,0,0,0,1310.1371 +11105,13561,24229,24230,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.2277517,8.3108845,0,34,0,4.7306204,0,2,3,2021,12,2,42,45,1,2,0,9.5416212,9.5416212,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.76,57.87,45.83,54.52,6.666666666666667,1,1,0,0,12,13,5,1,307,2350679,1653279,639362.75,0,0,0,4203.5449 +11105,13561,24230,24229,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7850723,8.5927439,0,34,0,40.627274,0,3,3,2021,7,0,46,46,1,0,0,17.390779,17.390779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.83,54.52,32.76,57.87,6.666666666666667,1,1,0,0,12,13,5,1,307,2350679,1653279,639362.75,0,0,0,4203.5449 +11105,13562,24231,-9,24229,24230,1,1,28,0,0,0,1,1,-9,0,4,8.7538023,8.9016533,0,0,0,-1125.4022,0,2,2,2021,11,0,38,43,1,0,1,23.543594,23.543594,.05,.05,.05,0,0,0,0,0,0,0,0,1.5419552,0,43.79,58.33,-9,-9,5,1,1,0,0,10,13,5,1,408,222912.81,-24620.248,266051.19,110847.45,49509.484,0,2494.0403 +11106,13563,24232,24233,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,7.7963524,7.4851522,0,4,4,-17.123846,-9,-9,-9,2021,36,12,37,0,1,12,0,6.4445634,6.4445634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.02,52.27,63,35.63,5,1,1,0,1,11,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11106,13563,24233,24232,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.1875029,8.5288868,6.6977849,4,-4,41.32365,0,2,2,2021,9,0,38,38,1,0,0,15.195223,15.195223,0,0,0,0,0,0,0,0,1,1,0,7.1769414,0,63,35.63,23.02,52.27,10,1,1,0,0,10,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11106,13563,24234,-9,24233,24232,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-878.30499,-9,1,2,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6297383,0,39.22,61.48,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11107,13564,24235,24237,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.9803014,7.1779232,0,6,0,-65.49192,0,3,2,2021,11,2,43,36,1,2,0,6.8778763,6.8778763,0,0,0,0,0,0,0,0,1,1,0,0,0,41.79,57.73,57.16,56.15,10,1,1,0,0,7,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11107,13564,24236,-9,24235,24237,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.83197,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11107,13564,24237,24235,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.5389338,8.4075947,0,6,0,-49.170177,-9,-9,-9,2021,7,0,40,0,1,0,0,14.294511,14.294511,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.79,57.73,8.333333333333334,1,1,0,0,6,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11108,13565,24238,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.8616138,6.7600708,0,0,-891.9566,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.8644848,49.13,41.72,-9,-9,6.666666666666667,1,1,0,0,10,4,2,0,456,365334.78,273538.09,0,0,0,0,905.27594 +11109,13566,24239,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.358345,9.2496853,0,0,0,-1012.64,0,3,1,2021,14,2,33,32,1,2,0,36.34948,36.34948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.87,41.9,-9,-9,5,1,1,0,0,13,6,5,1,192,2157442.3,1879172,221670.5,33488.371,0,0,3204.9961 +11109,13567,24240,-9,24239,-9,1,1,24,0,0,0,2,2,-9,0,3,7.2267122,6.6246872,0,0,0,-1006.6285,-9,1,-9,2021,16,4,40,0,1,4,1,3.3015292,3.3015292,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.12,59.76,-9,-9,3.333333333333333,1,1,0,1,8,6,2,1,899,100172.66,151549.13,0,0,0,0,1064.4326 +11110,13568,24241,24242,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,44,-10,-132.87813,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,896,551884.88,170064.14,46126.336,0,0,0,603.75903 +11110,13568,24242,24241,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,6.4672022,6.3491778,44,10,-81.511299,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3379288,57.16,56.15,58.3,52.91,8.333333333333334,1,1,0,0,0,4,2,1,896,551884.88,170064.14,46126.336,0,0,0,603.75903 +11111,13569,24243,24244,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.911993,8.2220106,5.4486265,11,5,64.327911,0,2,2,2021,8,0,50,55,1,0,0,6.2040305,6.2040305,.05,.05,0,0,0,0,0,0,1,1,0,1.2638421,6.0293598,63.24,42.39,55.36,51.57,8.333333333333334,1,1,0,0,11,10,4,1,799,68150.75,9419.417,0,0,0,7212.5503,3053.6792 +11111,13569,24244,24243,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7513676,8.202632,0,11,-5,13.821336,0,-9,-9,2021,11,0,43,50,1,0,0,10.58287,10.58287,0,0,0,0,0,0,0,0,1,1,0,1.346805,0,55.36,51.57,63.24,42.39,8.333333333333334,1,1,0,0,12,10,4,1,799,68150.75,9419.417,0,0,0,7212.5503,3053.6792 +11112,13570,24245,24246,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.0227957,6.329298,57,0,-45.640713,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3432865,52.6,52.88,52.43,55.57,8.333333333333334,1,1,0,0,0,13,2,1,290,484033.75,161326.72,241404.67,0,0,0,884.77185 +11112,13570,24246,24245,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.8440709,6.5201616,57,0,-61.192169,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5742369,52.43,55.57,52.6,52.88,6.666666666666667,1,1,0,0,0,13,2,1,290,484033.75,161326.72,241404.67,0,0,0,884.77185 +11113,13571,24247,24248,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.4100804,8.5616055,7.6911726,3,12,-12.731175,0,-9,-9,2021,9,0,40,40,1,1,0,5.1330152,5.1330152,0,0,0,0,0,0,0,0,1,0,1,0,7.7060099,52,55,46.97,50.36,8,1,1,0,0,2,4,5,0,299,138289.06,-18301.465,82051.586,44565.383,1543.1283,0,4217.2583 +11113,13571,24248,24247,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.986052,7.861196,0,3,-12,-49.75742,0,-9,-9,2021,11,0,50,47,1,0,0,5.7580919,5.7580919,0,0,0,0,0,0,0,7,1,0,1,0,0,46.97,50.36,52,55,8.333333333333334,1,1,0,0,2,4,5,0,299,138289.06,-18301.465,82051.586,44565.383,1543.1283,0,4217.2583 +11114,13572,24249,24251,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,9.3451309,9.1753969,0,6,12,-7.6665297,0,3,3,2021,8,0,60,63,1,0,0,17.416065,17.416065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,37.17,54.55,3.333333333333333,1,1,0,0,7,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24250,-9,24251,24249,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-918.7168,0,2,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24251,24249,24253,-9,1,0,42,0,1,0,2,2,-9,0,3,7.600687,7.4654779,0,6,-12,-80.29129,0,2,2,2021,16,4,30,28,1,4,0,8.3100824,8.3100824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,54.55,59.46,46.99,5,1,1,0,0,7,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24252,-9,24251,24249,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.2488,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13573,24253,-9,-9,-9,1,0,71,0,1,0,3,3,-9,0,2,0,6.7780685,6.6473656,0,0,-1006.4725,0,-9,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6571951,6.5869508,34.52,24.67,-9,-9,5,1,1,0,0,0,8,2,1,299,414352.34,0,370150.63,0,0,0,980.79871 +11115,13574,24254,-9,24256,24255,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-862.94952,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11115,13574,24255,24256,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.0719156,8.8201151,0,17,-2,31.461975,0,-9,-9,2021,6,0,34,43,1,0,0,23.11755,23.11755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,36.92,51.87,8.333333333333334,1,1,0,0,13,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11115,13574,24256,24255,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.777174,8.8406811,0,17,2,-172.62451,0,2,1,2021,20,8,43,43,1,8,0,16.253716,16.253716,.05,.05,0,0,0,0,0,0,1,1,0,5.295639,0,36.92,51.87,51.83,57.2,6.666666666666667,1,1,0,0,13,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11116,13575,24257,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.3597975,7.3098745,0,0,-1042.8138,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5964894,7.4692335,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,871,591328.63,350978.53,271721.72,18390.855,4293.3013,0,1107.5039 +11117,13576,24258,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.831944,5.8562036,0,0,-939.0199,0,2,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1002917,50,47,-9,-9,7,1,1,0,1,3,7,2,1,300,547236.38,65454.355,525041.63,-19156.785,0,0,1203.7885 +11118,13577,24259,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.1122789,7.8662949,0,0,0,-829.03778,-9,3,3,2021,16,4,37,0,1,4,0,9.6201487,9.6201487,0,0,0,0,0,0,0,0,0,0,0,2.3211761,0,32.51,66.52,-9,-9,1.666666666666667,1,1,0,0,8,5,4,1,246,101524.7,0,0,0,0,0,1872.2192 +11119,13578,24260,24261,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.5010853,8.4905024,0,7,1,-77.416534,-9,-9,-9,2021,10,0,40,0,1,1,0,14.570455,14.570455,0,0,0,0,0,0,.13980421,0,0,0,0,4.8289962,0,51,48,65.54000000000001,33.23,7,1,1,0,0,1,6,4,1,1255.5,1824517.6,971227.81,575320.38,0,0,0,2321.6919 +11119,13578,24261,24260,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,5.5008364,5.7065649,0,44,-1,39.380489,0,3,3,2021,9,0,5,5,1,0,0,6.7289848,6.7289848,0,0,0,0,0,0,0,0,0,0,0,2.6584258,0,65.54000000000001,33.23,51,48,8.333333333333334,1,1,0,0,7,6,4,1,1255.5,1824517.6,971227.81,575320.38,0,0,0,2321.6919 +11120,13579,24262,-9,24264,24265,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1150.1923,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24263,-9,24264,24265,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-956.12616,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24264,24265,-9,-9,1,0,36,1,3,0,3,3,-9,0,3,7.4038315,7.25423,0,16,-2,44.584393,0,2,2,2021,13,1,16,19,1,1,0,13.29371,13.29371,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,43.32,63.94,3.333333333333333,1,1,0,0,9,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24265,24264,-9,-9,1,1,38,1,3,0,2,2,-9,0,5,8.7761936,8.2091808,0,16,2,-20.794741,0,3,2,2021,12,1,55,50,1,1,0,10.860075,10.860075,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.32,63.94,30.94,61.65,6.666666666666667,1,1,0,0,11,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24266,-9,24264,24265,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-865.68127,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11121,13580,24267,24268,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.6712084,7.4970655,0,12,-8,101.83469,0,2,2,2021,15,4,45,45,1,4,0,5.3795104,5.3795104,0,0,.05,0,0,0,0,0,0,0,0,0,0,36.46,61.59,35.91,63.19,1.666666666666667,1,1,0,1,11,9,5,1,831.5,593447.06,164498.47,410484.13,64688.602,0,0,5480.2012 +11121,13580,24268,24267,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.0745182,9.2098446,0,12,8,-87.295616,0,-9,-9,2021,13,2,60,55,1,2,0,22.561071,22.561071,0,0,.05,0,0,0,0,0,0,0,0,7.8244581,0,35.91,63.19,36.46,61.59,3.333333333333333,1,1,0,1,13,9,5,1,831.5,593447.06,164498.47,410484.13,64688.602,0,0,5480.2012 +11121,13581,24269,-9,24268,24267,1,0,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-890.24597,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7939353,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,136,48787.602,0,0,0,0,0,696.98969 +11122,13582,24270,24271,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6919661,7.606564,0,1,-1,17.816948,-9,3,3,2021,7,0,32,0,1,0,0,8.4738588,8.4738588,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.76,54.51,8.333333333333334,1,1,0,0,13,13,4,0,1512.5,127013.36,51321.711,105621.59,8183.6191,0,3390.9485,1693.5464 +11122,13582,24271,24270,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.1644764,7.892518,0,1,1,26.816509,-9,-9,-9,2021,7,0,37,0,1,0,0,10.210913,10.210913,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,54.79,55.86,8.333333333333334,1,1,0,0,15,13,4,0,1512.5,127013.36,51321.711,105621.59,8183.6191,0,3390.9485,1693.5464 +11122,13583,24272,-9,24270,24271,1,1,25,0,0,0,2,2,-9,0,5,8.141696,8.1526756,0,0,0,-1081.4594,-9,2,2,2021,6,0,39,0,1,0,1,8.9789104,8.9789104,0,0,0,0,0,0,0,0,0,0,0,.42731467,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,13,4,0,3538,43650.484,0,0,0,0,0,1090.8107 +11123,13584,24273,24274,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.2279739,7.8903947,12,0,22.973196,0,3,3,2021,12,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.2523189,7.8056836,53.23,47.51,54.2,57.49,8.333333333333334,1,1,0,0,8,13,4,1,1076,1412810.5,1268127.9,106868.41,0,0,0,2583.8848 +11123,13584,24274,24273,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.549644,7.6556435,12,0,-85.697739,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3858724,7.4077945,54.2,57.49,53.23,47.51,8.333333333333334,1,1,0,0,7,13,4,1,1076,1412810.5,1268127.9,106868.41,0,0,0,2583.8848 +11124,13585,24275,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,6.5790024,6.8803844,0,0,0,-926.29437,0,3,2,2021,10,0,18,16,1,0,0,5.8845429,5.8845429,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,215,0,0,0,0,0,0,206.592 +11125,13586,24276,24278,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.7294474,8.6031342,0,22,3,22.514362,0,2,3,2021,17,5,47,49,1,5,0,13.479588,13.479588,.05,.05,.05,0,0,0,0,0,1,1,0,6.9555387,0,46.4,50.6,40.46,63.68,3.333333333333333,2,3,0,0,10,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24277,-9,24278,24276,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5294,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24278,24276,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.1459723,8.0789986,0,22,-3,3.3897946,0,3,3,2021,12,0,33,33,1,0,0,12.673496,12.673496,.05,.05,0,0,0,0,0,0,1,1,0,2.3263662,0,40.46,63.68,46.4,50.6,8.333333333333334,2,3,0,0,11,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24279,-9,24278,24276,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.2759,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11126,13587,24280,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2229586,7.7585144,0,0,0,-893.55518,0,3,3,2021,7,0,25,30,1,0,0,13.461271,13.461271,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,1006,32136.607,72970.664,0,0,0,2997.3013,905.82642 +11126,13588,24281,-9,24280,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1013.7029,0,1,1,2021,18,7,0,41,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.765815,0,27.27,53.09,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,454,-21702.016,0,0,0,1119.0577,0,1769.8263 +11126,13589,24282,-9,24280,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4905605,8.514411,0,0,0,-1101.2023,0,1,1,2021,6,0,42,37,1,0,1,13.343061,13.343061,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,1501,509.47125,85733.43,227580.91,124177.73,16967.816,0,2260.1287 +11126,13590,24283,-9,24280,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8092937,8.0016537,0,0,0,-952.74438,0,1,-9,2021,6,0,37,37,1,0,1,7.7423258,7.7423258,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,2105,-150398.61,106011.05,0,0,0,0,474.60217 +11126,13591,24284,-9,24280,-9,1,1,22,0,0,0,2,2,1,0,5,7.7958851,7.6300979,0,0,0,-956.99451,-9,1,-9,2021,6,0,37,0,1,0,1,6.9270644,6.9270644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,452,180893.06,49417.504,0,0,0,0,1002.1284 +11127,13592,24285,24286,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.2462468,6.9383016,0,27,4,125.78262,0,3,3,2021,12,0,32,30,1,0,0,4.5361934,4.5361934,0,0,0,0,0,0,0,0,0,0,0,0,0,51.78,53.03,62.39,56.71,1.666666666666667,1,1,0,0,5,5,4,1,745.5,1232282.5,1057331.3,163450.64,0,1786.7968,0,1863.5569 +11127,13592,24286,24285,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.0010166,8.3694296,4.8267107,28,-4,-57.578613,0,3,3,2021,12,0,70,100,1,0,0,6.8586593,6.8586593,.05,.05,0,0,0,0,0,0,0,0,0,5.1058478,5.0710969,62.39,56.71,51.78,53.03,5,1,1,0,0,8,5,4,1,745.5,1232282.5,1057331.3,163450.64,0,1786.7968,0,1863.5569 +11128,13593,24287,-9,24288,24289,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.3878,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11128,13593,24288,24289,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.5671306,7.4773602,0,2,-7,64.080772,0,-9,-9,2021,20,7,28,28,1,7,0,8.9508018,8.9508018,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,40.83,59.68,3.333333333333333,1,1,0,1,8,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11128,13593,24289,24288,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.1310492,8.037034,0,2,7,91.318993,0,-9,-9,2021,21,9,38,37,1,9,0,8.1622744,8.1622744,0,0,0,0,0,0,0,0,1,1,0,4.039516,0,40.83,59.68,46.08,57.2,3.333333333333333,1,1,0,0,9,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11129,13594,24290,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.4374161,7.9910693,0,0,-986.92493,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.1033192,59.71,50.89,-9,-9,10,1,1,0,0,6,7,4,1,974,1392628.5,426030.63,269128.31,0,0,0,2901.2834 +11130,13595,24291,24292,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.1675878,7.3536429,11,8,-21.933641,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2199715,7.6574779,59.72,38.6,49.04,55.86,10,1,1,0,0,0,7,5,1,1014,776727.81,345022.09,296396.84,0,0,0,4607.1001 +11130,13595,24292,24291,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.5270586,8.6649494,11,-8,60.391113,0,3,2,2021,13,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.4048038,8.6949539,49.04,55.86,59.72,38.6,8.333333333333334,1,1,0,0,0,7,5,1,1014,776727.81,345022.09,296396.84,0,0,0,4607.1001 +11131,13596,24293,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,0,5.7575078,5.5245442,0,0,-890.15179,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5769949,0,36.62,60.23,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,1315.5,37561.258,0,0,0,606.25226,0,1379.8596 +11131,13596,24294,-9,24293,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.52191,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,1315.5,37561.258,0,0,0,606.25226,0,1379.8596 +11132,13597,24295,24296,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.7855654,8.9117441,0,27,3,-17.757029,0,3,3,2021,11,1,36,36,1,1,0,18.72015,18.72015,.05,.05,0,0,0,0,0,2,0,0,0,6.7219429,0,58.39,44.54,63.32,11.35,0,1,1,0,0,8,11,5,1,613,496192.25,209380.08,164719.22,0,0,0,3290.1455 +11132,13597,24296,24295,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.6457276,7.8883953,0,9,-3,-36.596569,0,2,2,2021,12,2,32,32,1,2,0,6.8988075,6.8988075,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.32,11.35,58.39,44.54,0,1,1,0,0,7,11,5,1,613,496192.25,209380.08,164719.22,0,0,0,3290.1455 +11133,13598,24297,24298,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,42,-2,-68.058044,0,2,2,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.83338386,0,56.53,45.45,65.14,10.9,8.333333333333334,1,1,0,0,5,1,3,1,938.5,1325487,994691.31,189985.38,0,0,0,1320.8953 +11133,13598,24298,24297,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,7.8292055,8.1088676,42,2,45.540771,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.350657,8.0758133,65.14,10.9,56.53,45.45,8.333333333333334,1,1,0,0,5,1,3,1,938.5,1325487,994691.31,189985.38,0,0,0,1320.8953 +11134,13599,24299,-9,-9,24300,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.8968,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,570.5,29271.379,15707.024,90071.227,23099.588,0,2671.2629,1303.0295 +11134,13599,24300,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.4585657,8.4770889,0,0,0,-1073.2339,0,-9,-9,2021,11,1,40,40,1,1,0,12.114056,12.114056,0,0,0,0,0,0,0,0,1,1,0,1.4993064,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,570.5,29271.379,15707.024,90071.227,23099.588,0,2671.2629,1303.0295 +11135,13600,24301,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,8.300211,8.3975105,0,0,0,-971.10663,0,2,2,2021,14,3,22,22,1,3,0,16.360949,16.360949,.05,.05,0,0,0,0,0,2,0,0,0,7.1637936,0,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,1273,705140.19,156049.02,215171.94,0,17877.574,0,2558.7483 +11136,13601,24302,24303,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.1222897,6.9094834,12,-4,106.93634,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8162894,6.9661613,46.48,58.28,49.41,58.28,8.333333333333334,1,1,0,0,8,9,2,1,937.5,527384.38,333243.78,200719.77,0,0,0,3221.9048 +11136,13601,24303,24302,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.1476779,5.7049327,12,4,128.13226,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1990848,5.8010459,49.41,58.28,46.48,58.28,6.666666666666667,1,1,0,0,9,9,2,1,937.5,527384.38,333243.78,200719.77,0,0,0,3221.9048 +11137,13602,24304,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.2065473,7.5609608,5.9264426,0,0,-1043.4486,0,2,3,2021,8,0,22,8,1,0,0,7.7977958,7.7977958,0,0,0,0,0,0,0,2,1,1,0,6.3479176,0,51.31,49.39,-9,-9,6.666666666666667,1,1,0,1,2,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11137,13602,24305,-9,24304,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.8005,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11137,13602,24306,-9,24304,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.87799,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11138,13603,24307,-9,24308,24310,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-786.35608,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24308,24310,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.8767385,7.6139903,0,19,3,-12.628381,0,3,2,2021,10,1,40,40,1,1,0,7.7054553,7.7054553,.05,.05,0,0,0,0,0,0,0,0,0,.54189581,0,46.63,59.72,51,56,6.666666666666667,4,2,0,0,8,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24309,-9,24308,24310,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.52911,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24310,24308,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6189995,9.248457,0,17,-3,-63.584446,0,2,2,2021,9,0,60,50,1,1,0,12.354671,12.354671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,46.63,59.72,8,1,1,0,0,1,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11139,13604,24311,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.5181208,6.5525236,0,0,-919.11584,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2050004,0,57.16,56.15,-9,-9,5,1,1,0,0,3,9,2,0,214,-19959.316,0,0,0,0,0,78.377396 +11140,13605,24312,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.7039509,9.4397964,0,0,0,-974.79938,0,2,2,2021,7,0,49,53,1,0,0,33.452175,33.452175,.05,.05,0,0,0,0,0,0,0,0,0,2.6846197,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,208,180152.69,52275.781,131269.23,46600.02,0,0,4085.6963 +11141,13606,24313,24314,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.9980383,8.8968801,0,9,2,7.0829973,0,1,2,2021,6,0,50,50,1,0,0,19.432758,19.432758,.05,.05,0,0,0,0,3.4914992,0,0,0,0,7.802669,0,62.39,56.71,32.26,56.79,10,1,1,0,0,10,5,5,1,367,639266.5,351566.81,259748.25,10371.706,0,0,5724.2124 +11141,13606,24314,24313,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1758261,8.1406975,0,9,-2,-14.326812,0,2,1,2021,29,12,40,44,1,12,0,9.288065,9.288065,0,0,0,0,0,0,0,0,0,0,0,5.3855824,0,32.26,56.79,62.39,56.71,3.333333333333333,1,1,0,0,9,5,5,1,367,639266.5,351566.81,259748.25,10371.706,0,0,5724.2124 +11141,13607,24315,-9,24314,24313,1,1,22,0,0,0,2,2,1,0,5,8.2371311,8.2637606,0,0,0,-1167.0254,-9,2,1,2021,12,0,70,0,1,0,1,5.5719352,5.5719352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,1639,63738.141,57212.238,0,0,0,0,1698.5806 +11142,13608,24316,-9,24317,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7773,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,636,-112484.3,44161.551,0,0,0,0,2269.4326 +11142,13608,24317,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.010438,7.4066229,6.2790952,0,0,-972.31781,0,2,1,2021,7,0,17,17,1,0,0,7.2311921,7.2311921,.05,.05,0,0,0,0,0,0,1,1,0,6.0119853,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,636,-112484.3,44161.551,0,0,0,0,2269.4326 +11143,13609,24318,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1078.4122,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,45.41,18.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1138,114866.59,0,0,0,0,-590.60358,1756.9221 +11144,13610,24319,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,4.7927909,4.6464448,0,0,-904.56445,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9937549,4.7629848,54.67,57.49,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,448,28454.996,-148964.58,0,0,0,0,-132.11592 +11145,13611,24320,24321,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.6026173,6.3437724,51,4,12.966003,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3994756,6.2165608,46.73,42.22,57.16,56.15,5,1,1,0,0,0,2,2,0,367.5,334993.5,65165.496,77389.977,0,0,0,1796.7126 +11145,13611,24321,24320,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.2795668,5.307303,51,-4,23.103436,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0005918,0,57.16,56.15,46.73,42.22,8.333333333333334,1,1,0,0,0,2,2,0,367.5,334993.5,65165.496,77389.977,0,0,0,1796.7126 +11146,13612,24322,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.00372,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,100.38494,0,937.52075,0,0,0,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,0,638,258945.25,0,253924.17,0,0,0,0 +11147,13613,24323,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.0589733,8.1653261,0,0,0,-966.04425,0,2,2,2021,28,12,37,38,1,12,0,10.474464,10.474464,.05,.05,0,0,0,0,0,0,1,0,1,0,0,24.36,58.14,-9,-9,5,1,1,0,0,10,12,4,0,401,-103356.44,38896.996,0,0,19955.18,0,2160.6479 +11148,13614,24324,24325,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,47,4,90.521996,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.2708673,0,0,1,1,0,3.4274518,0,49.75,32.52,50.99,28.01,8.333333333333334,1,1,0,0,0,12,3,0,705,933285.88,355229.81,329653.78,0,0,0,1711.4473 +11148,13614,24325,24324,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7252645,8.1567974,0,47,-4,-17.572224,0,3,3,2021,12,1,35,28,1,1,0,8.4732647,8.4732647,0,0,0,0,0,0,0,0,1,1,0,4.4287796,0,50.99,28.01,49.75,32.52,5,1,1,0,0,11,12,3,0,705,933285.88,355229.81,329653.78,0,0,0,1711.4473 +11149,13615,24326,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7309608,7.4932218,0,0,0,-1097.9506,0,2,2,2021,11,0,45,45,1,0,0,6.5354862,6.5354862,0,0,0,0,0,0,0,0,0,0,0,0,0,41.57,45.88,-9,-9,6.666666666666667,1,1,0,0,4,10,3,0,667,368390.38,0,0,0,0,0,-73.591774 +11150,13616,24327,24328,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6747994,7.4266853,0,2,-13,-119.0734,0,-9,-9,2021,7,0,24,24,1,0,0,9.289794,9.289794,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.98,57.22,8.333333333333334,1,1,0,0,11,4,3,1,518.5,1037320.6,366791.34,242072.39,0,0,0,1974.577 +11150,13616,24328,24327,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.4816031,7.7016282,3.4218774,2,13,-85.749435,-9,2,2,2021,10,0,30,0,1,0,0,6.665699,6.665699,0,0,0,0,0,0,0,0,1,1,0,4.0190539,3.4545159,48.98,57.22,57.16,56.15,8.333333333333334,1,1,0,0,7,4,3,1,518.5,1037320.6,366791.34,242072.39,0,0,0,1974.577 +11151,13617,24329,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5096655,7.8239584,0,0,-969.60602,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6609983,56.67,42.78,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,328,225847.64,181817.53,206909.44,65827.375,0,0,2464.5889 +11152,13618,24330,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1014.3261,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,36.864288,0,0,1,1,0,0,0,27.41,25.55,-9,-9,5,4,5,0,1,0,8,1,0,713,0,0,0,0,0,0,1311.509 +11153,13619,24331,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1091.2036,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.52,52.14,-9,-9,5,3,4,0,0,0,8,1,0,270,132708.67,-45575.453,0,0,0,1368.9897,1055.755 +11153,13620,24332,-9,24331,-9,1,0,20,0,0,0,2,2,-9,0,3,7.6845794,7.6753545,0,0,0,-1016.1176,0,2,-9,2021,17,6,32,20,1,6,1,7.7235575,7.7235575,0,0,0,0,0,0,0,7,1,1,0,0,0,36.11,55.54,-9,-9,3.333333333333333,3,4,0,0,2,8,3,0,108,-286163,0,0,0,0,0,349.77261 +11154,13621,24333,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-922.02283,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,28.46,-9,-9,10,1,1,0,0,0,12,1,0,984,-37937.098,0,0,0,0,0,488.50684 +11155,13622,24334,24335,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.73523,7.1869979,51,-1,117.20408,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4948344,7.3848529,56.5,37.6,59.14,41.8,3.333333333333333,1,1,0,0,0,2,3,1,1003.5,791483.88,348258.13,308052.47,0,0,0,2446.7046 +11155,13622,24335,24334,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.7802482,5.3639112,51,1,45.982964,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.008007,59.14,41.8,56.5,37.6,10,1,1,0,0,0,2,3,1,1003.5,791483.88,348258.13,308052.47,0,0,0,2446.7046 +11156,13623,24336,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.91357,0,3,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,0,6,1,0,2776,107668.8,0,0,0,0,-585.77515,908.36676 +11157,13624,24337,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.2723866,7.2500787,0,0,0,-1000.2214,0,3,3,2021,20,8,20,25,1,8,0,7.7035336,7.7035336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.78,43.04,-9,-9,1.666666666666667,1,1,0,1,9,11,3,1,549,40820.219,121845.89,0,0,0,0,316.23978 +11157,13625,24338,-9,24337,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3982992,8.3277321,0,0,0,-1004.9987,0,3,3,2021,11,1,48,48,1,1,1,9.9456062,9.9456062,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.62,53.24,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,199,-120541.75,94448.836,0,0,0,0,1538.7173 +11158,13626,24339,-9,24342,24341,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.1889,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24340,-9,24342,24341,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1605,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24341,24342,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.2666035,9.1188793,0,1,5,23.436504,0,3,3,2021,10,0,60,60,1,1,0,17.539948,17.539948,.05,.05,0,0,0,0,0,0,1,1,0,2.5545108,0,51,55,54.79,55.86,8,1,1,0,0,12,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24342,24341,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,1,-5,94.347412,0,2,2,2021,9,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51,55,8.333333333333334,1,1,0,0,5,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13627,24343,-9,24342,24341,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-890.73889,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8126378,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,583,0,0,0,0,0,0,-399.76202 +11159,13628,24344,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.9792559,3.8121951,0,0,-1094.641,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9220333,3.7531826,60.45,30.52,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1332,192410.67,23567.086,128023.48,0,0,0,956.62115 +11160,13629,24345,24348,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,3,.290113,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,52.19,54.61,65.78,29.46,10,2,3,0,0,5,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24346,-9,24345,24348,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.36169,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24347,-9,24345,24348,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.3082,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24348,24345,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,7.3021874,7.5102782,0,14,-3,-37.739227,0,3,2,2021,9,0,27,21,1,0,0,7.8441777,7.8441777,0,0,0,0,0,0,0,14.5,1,0,1,0,0,65.78,29.46,52.19,54.61,10,2,3,0,0,6,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11161,13630,24349,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,1,8.9249086,9.0643072,0,0,0,-1036.4697,0,2,2,2021,27,11,38,40,1,11,0,22.849546,22.849546,0,0,0,0,0,0,0,0,1,1,0,0,0,27.09,28.51,-9,-9,1.666666666666667,1,1,0,0,13,9,5,0,469,588335.19,444148.16,0,0,0,0,3308.5735 +11162,13631,24350,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1138.2214,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.11,27.71,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,899,-108867.6,0,0,0,0,0,1113.3208 +11163,13632,24351,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1041.106,0,3,-9,2021,12,0,0,8,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.309093,0,21.07,49.37,-9,-9,5,1,1,1,1,9,6,1,1,1764,36351.387,0,0,0,0,0,389.63959 +11164,13633,24352,24353,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.0201554,5.791759,8,-1,-168.34665,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.7307341,5.206809,42.06,41.97,52.63,42.04,8.333333333333334,1,1,0,0,5,12,2,0,1491.5,358544.59,122553.23,259239.84,0,0,0,1610.1233 +11164,13633,24353,24352,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,1,-29.044699,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4595323,0,27,1,1,0,0,0,52.63,42.04,42.06,41.97,5,1,1,0,0,2,12,2,0,1491.5,358544.59,122553.23,259239.84,0,0,0,1610.1233 +11165,13634,24354,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.4609799,7.2397957,0,0,-1050.3926,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,4.5234013,2,1,1,0,.52776337,7.745605,40.48,45.26,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,1158,-113168.45,52019.684,0,0,0,1371.1177,1092.1566 +11166,13635,24355,24356,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0965815,9.485774,0,11,3,-73.939232,0,-9,-9,2021,13,1,47,47,1,1,0,21.947979,21.947979,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,51.26,57.33,53.46,5,1,1,0,0,9,13,5,1,515,1394305.5,1294686.3,174353.91,0,0,0,6142.6494 +11166,13635,24356,24355,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1146073,7.2826791,0,25,-3,-118.95055,0,3,3,2021,7,0,20,22,1,0,0,7.0616183,7.0616183,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,38.88,51.26,8.333333333333334,1,1,0,0,11,13,5,1,515,1394305.5,1294686.3,174353.91,0,0,0,6142.6494 +11166,13636,24357,-9,24356,24355,1,1,20,0,0,0,2,2,1,0,4,7.8621612,8.0762711,0,0,0,-1059.2991,-9,2,2,2021,9,1,7,0,1,1,1,47.781063,47.781063,.05,.05,0,0,0,0,0,0,0,0,0,2.0394797,0,51.77,58.57,-9,-9,10,1,1,0,0,2,13,4,1,857,-10902.054,-78409.805,0,0,0,0,1794.2134 +11166,13637,24358,-9,24356,24355,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-914.65814,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7836485,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,630,110038.46,0,0,0,0,0,-159.9823 +11167,13638,24359,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5380402,8.3823528,0,0,0,-1093.9175,0,3,2,2021,11,0,42,44,1,0,0,14.025686,14.025686,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.61,35.36,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,364,215910,242590.58,184970.64,73166.07,0,3391.6589,3055.8523 +11168,13639,24360,24361,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4416046,8.2951469,0,5,0,25.175766,0,-9,-9,2021,7,0,60,50,1,0,0,9.6279364,9.6279364,0,0,.05,0,0,0,0,0,0,0,0,7.1060686,0,60.87,44.96,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,299.5,1200914.3,853627.56,329342.63,36246.227,0,0,3220.7217 +11168,13639,24361,24360,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.2195168,7.9952559,5,9,-75.000244,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1111836,8.1785841,57.16,56.15,60.87,44.96,8.333333333333334,1,1,0,0,2,5,5,1,299.5,1200914.3,853627.56,329342.63,36246.227,0,0,3220.7217 +11169,13640,24362,24364,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.3358965,8.1536045,0,8,2,33.614609,0,-9,-9,2021,4,0,45,38,1,0,0,10.874554,10.874554,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,8,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24363,-9,24364,24362,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.85547,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24364,24362,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.3144388,8.1898775,0,8,-2,-2.1412988,0,2,2,2021,8,0,38,30,1,0,0,13.294401,13.294401,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,9,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24365,-9,24364,24362,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.6737,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11170,13641,24366,-9,24369,24367,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-999.62598,0,3,1,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.018534958,0,52,54.51,-9,-9,5,1,1,1,0,0,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24367,24369,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.38727,8.9641724,6.9522438,8,11,-99.672134,0,-9,-9,2021,5,0,53,50,1,0,0,9.9078074,9.9078074,.05,.05,0,0,0,0,0,0,1,1,0,3.0773151,6.9359875,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,9,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24368,-9,24369,24367,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1127.7384,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24369,24367,-9,-9,1,0,39,0,1,0,3,3,-9,0,4,8.3412266,8.2915306,0,8,-11,1.7682377,0,2,2,2021,12,0,40,47,1,0,0,10.142585,10.142585,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,9,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11171,13642,24370,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.2365465,7.0099797,0,0,-1127.3755,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4368076,60.93,36.01,-9,-9,8.333333333333334,3,4,0,0,2,9,3,1,1404,-65332.637,0,0,0,1894.1324,0,803.17236 +11172,13643,24371,-9,24372,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.9431,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,645,-151592.16,0,0,0,0,0,741.71301 +11172,13643,24372,-9,-9,-9,1,0,34,0,1,0,3,3,-9,0,3,0,3.6894014,3.6958401,0,0,-944.05188,0,2,-9,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4141304,0,42.46,48.53,-9,-9,10,1,1,1,0,0,12,2,0,645,-151592.16,0,0,0,0,0,741.71301 +11173,13644,24373,24374,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.0984354,7.2123599,8,-3,19.792124,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0909977,33.07,55.18,60.12,54.8,5,1,1,0,0,2,1,4,1,1132.5,1103147.8,697719.19,197799.91,0,5101.9419,0,3131.0405 +11173,13644,24374,24373,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.0132427,7.8186126,8,3,46.166904,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9026356,7.9240794,60.12,54.8,33.07,55.18,10,1,1,0,0,4,1,4,1,1132.5,1103147.8,697719.19,197799.91,0,5101.9419,0,3131.0405 +11174,13645,24375,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3069439,8.7642879,0,0,0,-1056.7441,0,2,1,2021,14,3,39,39,1,3,0,18.402655,18.402655,.05,.05,0,0,0,0,0,0,0,0,0,3.4030786,0,46.16,58.62,-9,-9,6.666666666666667,3,4,0,0,11,2,5,0,324,236608.05,72759.906,101048.34,104913.53,4285.7202,0,1812.902 +11175,13646,24376,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.2605848,8.4508133,0,0,0,-1022.6788,0,3,3,2021,11,2,40,40,1,2,0,9.372303,9.372303,.05,.05,0,0,0,0,0,7,0,0,0,0,0,51.96,42.31,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,2526,178495.34,68975.391,0,0,3961.2988,0,1459.3906 +11176,13647,24377,-9,24379,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11176,13647,24378,-9,24379,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.46381,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11176,13647,24379,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.7602968,8.5114994,6.1052241,0,0,-1041.2222,0,2,2,2021,6,0,36,33,1,0,0,18.405506,18.405506,.05,.05,0,0,0,0,0,0,1,1,0,6.7035465,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11177,13648,24380,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,2,0,0,0,0,0,-1135.7151,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.89,54.51,-9,-9,3.333333333333333,1,1,1,0,5,5,1,0,196,10280.724,0,0,0,0,0,286.88678 +11178,13649,24381,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,6.3671741,6.1723604,0,0,-803.11133,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5709939,5.9780078,58.13,40.72,-9,-9,10,1,1,0,0,0,13,2,1,472,604694,118204.91,199027.59,0,0,0,1660.077 +11179,13650,24382,-9,24384,24383,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.5828,-9,2,3,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6625631,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11179,13650,24383,24384,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.6586761,8.9333076,0,4,5,54.779438,0,3,3,2021,8,0,42,40,1,0,0,15.562044,15.562044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.17,40.45,8.333333333333334,1,1,0,0,11,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11179,13650,24384,24383,-9,-9,1,0,47,0,1,0,2,2,-9,1,2,0,0,0,4,-5,32.243668,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,40.45,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11180,13651,24385,24386,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.7264633,7.4777312,42,0,-36.394974,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.952682,7.4113631,59.29,49.68,57.16,56.15,10,1,1,0,0,5,1,4,1,278,1559113.4,1340743.9,362406.56,0,0,0,3796.7988 +11180,13651,24386,24385,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.0724621,8.3368406,6,0,40.16877,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3238668,8.3499413,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,1,4,1,278,1559113.4,1340743.9,362406.56,0,0,0,3796.7988 +11181,13652,24387,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.1058817,9.3518887,0,0,0,-922.4339,0,3,3,2021,6,0,50,50,1,0,0,28.514578,28.514578,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,524,479871.28,315301.91,165981.41,0,6225.2285,0,2539.4309 +11182,13653,24388,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,3.5649517,3.5079348,0,0,-1063.9192,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,2.1674426,7.2445717,17.415104,0,1,1,0,2.1212735,3.6341383,44.84,44.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,424,-38225.496,23772.791,0,0,0,1311.5375,738.64331 +11183,13654,24389,24390,-9,-9,1,1,60,0,1,0,2,2,-9,0,4,9.1819906,9.0710793,6.210053,10,8,50.524231,0,2,2,2021,9,0,41,45,1,0,0,26.46003,26.46003,.05,.05,0,0,0,0,0,0,0,0,0,6.3783903,6.4979105,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11183,13654,24390,24389,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,10,-8,-23.319649,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11183,13654,24391,-9,24390,24389,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1222.8595,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11184,13655,24392,24393,-9,-9,1,1,61,1,1,0,3,3,-9,1,3,0,0,0,1,-2,0,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,49,49,48,7,1,1,0,0,0,5,1,0,258,30314.775,0,0,0,3109.7512,0,1139.2587 +11184,13655,24393,24392,-9,-9,1,0,63,1,1,0,3,3,-9,1,3,0,0,0,1,2,0,-9,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,50,49,7,1,1,0,1,0,5,1,0,258,30314.775,0,0,0,3109.7512,0,1139.2587 +11184,13656,24394,-9,24395,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-884.11163,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,568,24867.855,0,0,0,0,-35.353672,382.27136 +11184,13656,24395,-9,24393,24392,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,0,0,-877.80463,-9,3,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46,58,-9,-9,7,1,1,1,0,0,5,1,0,568,24867.855,0,0,0,0,-35.353672,382.27136 +11184,13657,24396,-9,24393,24392,1,1,24,1,1,0,2,2,-9,1,4,0,0,0,0,0,-852.81519,-9,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,291,56413.953,0,0,0,0,0,0 +11185,13658,24397,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,6.9631252,7.2960391,0,0,-1031.2826,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84984529,7.0728865,58.36,24.57,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,252,977116.63,604741,208314.23,0,0,0,714.64893 +11186,13659,24398,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4227762,8.4763374,0,1,6,24.052803,0,2,3,2021,12,1,37,41,1,1,0,14.35912,14.35912,0,0,0,0,0,0,0,0,0,0,0,0,0,43.93,55.66,58.84,47.11,8.333333333333334,1,1,0,0,9,11,4,0,243,70531.664,-48079.77,82906.25,87860.594,10246.887,0,2015.7144 +11186,13660,24399,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9915915,7.7796369,0,1,-6,63.196739,-9,-9,-9,2021,9,0,35,0,1,0,0,8.3940926,8.3940926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.84,47.11,43.93,55.66,8.333333333333334,1,1,0,0,1,11,4,0,162,-107136.34,18035.609,0,0,1416.8502,0,2130.5227 +11187,13661,24400,-9,24401,24402,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.68359,0,2,1,2021,22,10,0,21,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17.16,53.26,-9,-9,1.666666666666667,1,1,0,0,3,10,1,0,801,-22804.779,0,0,0,0,0,372.92374 +11187,13662,24401,24402,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,7.6462474,7.7572942,0,12,2,-7.265142,0,-9,-9,2021,23,7,16,16,1,7,0,18.926394,18.926394,0,0,0,0,0,0,0,0,1,0,1,0,0,35.09,21.84,52.43,55.57,8.333333333333334,4,5,0,1,5,10,3,0,531,1065528,457960.13,560394.19,0,0,0,2317.4297 +11187,13662,24402,24401,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,6.3113117,6.4137397,0,12,-2,53.833851,0,2,2,2021,8,1,40,40,1,1,0,2.1843264,2.1843264,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,52.43,55.57,35.09,21.84,8.333333333333334,4,2,0,0,13,10,3,0,531,1065528,457960.13,560394.19,0,0,0,2317.4297 +11188,13663,24403,-9,24404,24405,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.59454,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11188,13663,24404,24405,-9,-9,1,0,56,0,1,0,1,1,-9,0,5,9.7664003,9.6419611,0,16,16,27.525667,0,-9,-9,2021,8,0,35,35,1,0,0,50.750687,50.750687,0,0,0,0,0,0,0,0,1,1,0,.33613375,0,57.06,57.76,40.48,60.05,8.333333333333334,1,1,0,0,9,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11188,13663,24405,24404,-9,-9,1,1,40,0,1,0,3,3,-9,0,4,7.7884665,7.968883,0,19,-16,121.18028,0,3,3,2021,11,0,39,39,1,0,0,6.9467797,6.9467797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,57.06,57.76,6.666666666666667,1,1,0,1,11,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11189,13664,24406,24407,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1630468,8.3946972,10,0,2.380403,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7578063,8.58673,51.25,46.55,54.75,39.4,8.333333333333334,1,1,0,0,0,9,4,1,1622,942457.06,585199.75,240233.86,0,0,0,3898.4241 +11189,13664,24407,24406,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.4950504,7.275507,10,0,40.522694,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2688689,7.4225531,54.75,39.4,51.25,46.55,8.333333333333334,1,1,0,0,5,9,4,1,1622,942457.06,585199.75,240233.86,0,0,0,3898.4241 +11190,13665,24408,-9,24409,24410,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.98376,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11190,13665,24409,24410,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.5266418,7.6678619,0,4,-2,47.450806,0,-9,-9,2021,13,2,28,30,1,2,0,9.4482574,9.4482574,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,34.98,22.05,6.666666666666667,1,1,0,0,10,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11190,13665,24410,24409,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.1440058,8.1753168,0,4,2,-66.819756,0,2,3,2021,23,8,55,50,1,8,0,7.8826838,7.8826838,.05,.05,0,0,0,0,0,0,1,0,1,0,0,34.98,22.05,48.87,58.55,6.666666666666667,1,1,0,0,12,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11191,13666,24411,-9,24413,24412,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-964.79663,-9,3,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24412,24413,-9,-9,1,1,56,0,2,0,3,3,-9,0,3,8.2731619,8.6790638,0,34,2,-109.50026,0,3,3,2021,6,0,38,37,1,0,0,14.948237,14.948237,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.46,37.24,8.333333333333334,1,1,0,0,14,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24413,24412,-9,-9,1,0,54,0,2,0,3,3,-9,0,3,8.1697512,8.0240564,0,34,-2,-43.756145,0,2,2,2021,7,0,38,38,1,0,0,11.988008,11.988008,0,0,0,0,0,0,0,0,1,1,0,0,0,53.46,37.24,58.32,50.22,8.333333333333334,1,1,0,0,12,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24414,-9,24413,24412,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1075.274,-9,3,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11192,13667,24415,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.602356,8.7865114,0,0,0,-1012.8615,0,1,3,2021,12,0,37,37,1,0,0,16.6607,16.6607,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,35.45,52.95,-9,-9,3.333333333333333,1,1,0,0,11,5,5,0,187,13091.628,-4705.855,85669.547,60684.254,1194.4257,0,1649.8508 +11193,13668,24416,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.147285,7.4588342,0,0,-976.17645,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7633495,7.5050426,42.75,23.98,-9,-9,5,1,1,0,0,0,9,3,0,121,334310.5,191581.59,214689.73,0,0,0,1441.427 +11194,13669,24417,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.6563072,7.2379246,0,0,-1010.8023,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5920515,7.8850031,54.47,40.3,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,370,919378.38,531221.38,175953.34,0,1772.3397,2542.7634,1219.2524 +11195,13670,24418,24419,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.0642967,8.1286459,0,4,1,141.54332,-9,-9,-9,2021,8,0,37,0,1,0,0,8.4115143,8.4115143,.05,.05,0,0,0,0,0,2,0,0,0,.65104711,0,54.74,57.22,39.41,49.43,8.333333333333334,1,1,0,0,8,13,4,0,486.5,3172.3984,6681.9224,0,0,0,1394.5178,2229.3865 +11195,13670,24419,24418,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.7726512,7.7349648,0,4,-1,54.048809,0,3,3,2021,12,1,38,40,1,1,0,9.6682606,9.6682606,0,0,0,0,0,0,0,7,0,0,0,0,0,39.41,49.43,54.74,57.22,6.666666666666667,1,1,0,0,7,13,4,0,486.5,3172.3984,6681.9224,0,0,0,1394.5178,2229.3865 +11195,13671,24420,-9,24419,24418,1,1,19,0,0,0,2,2,-9,0,5,7.4938512,7.2673368,0,0,0,-972.3913,-9,2,2,2021,6,0,36,0,1,0,1,6.593401,6.593401,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,509,-181792.89,69281.641,0,0,0,0,392.42111 +11196,13672,24421,24422,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7785892,8.5962172,0,14,3,107.92877,-9,2,2,2021,6,0,49,0,1,0,0,15.939184,15.939184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,15,9,5,1,1314,55081.594,53147.348,0,0,0,972.26929,3589.27 +11196,13672,24422,24421,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.259798,7.9540267,0,14,-3,-5.5603247,-9,-9,-9,2021,6,0,35,0,1,0,0,9.8559818,9.8559818,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,9,5,1,1314,55081.594,53147.348,0,0,0,972.26929,3589.27 +11196,13673,24423,-9,24422,24421,1,1,23,0,0,0,2,2,-9,0,4,8.0884438,8.2131186,0,0,0,-1018.2474,-9,2,2,2021,6,0,45,0,1,0,1,10.419563,10.419563,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,5,9,4,1,1327,48797.539,12804.687,0,0,0,1410.9651,1020.5479 +11197,13674,24424,24425,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,63,1,-26.999317,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,57.48,47.92,8,1,1,0,0,0,5,2,0,886,513793.5,129148.31,223734.97,0,0,0,1936.262 +11197,13674,24425,24424,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9900193,6.9478836,63,-1,89.234985,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7997212,57.48,47.92,53,45,6.666666666666667,1,1,0,0,5,5,2,0,886,513793.5,129148.31,223734.97,0,0,0,1936.262 +11198,13675,24426,24428,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,0,0,0,8,0,37.287483,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.79,52.62,8.333333333333334,1,1,0,0,9,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24427,-9,24426,24428,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.26862,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24428,24426,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,6.9453993,7.2957067,0,8,0,-85.198341,0,-9,-9,2021,6,0,35,35,1,0,0,3.308512,3.308512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.79,52.62,8.333333333333334,1,1,0,0,12,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24429,-9,24426,24428,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-907.89032,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24430,-9,24426,24428,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.9956,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11199,13676,24431,-9,24432,24433,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.66449,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11199,13676,24432,24433,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,7.2656808,7.5077648,0,12,4,125.25289,0,2,2,2021,7,0,25,28,1,0,0,7.0317888,7.0317888,.05,.05,0,0,0,0,0,2,1,1,0,7.5099483,0,53.9,52.09,48.78,39.62,8.333333333333334,1,1,0,0,14,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11199,13676,24433,24432,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.6439915,9.3294907,0,12,-4,-73.755539,0,1,1,2021,12,1,40,50,1,1,0,38.170498,38.170498,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.78,39.62,53.9,52.09,8.333333333333334,4,2,0,0,14,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11200,13677,24434,24435,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3901558,9.1041136,0,6,-5,-69.685387,0,2,2,2021,7,0,30,40,1,0,0,32.6539,32.6539,.05,.05,0,0,0,0,0,0,0,0,0,5.9194746,0,57.16,56.15,52.12,44.79,8.333333333333334,1,1,0,0,7,10,5,1,472.5,1907099.8,1622878,234764.58,0,10187.238,0,4336.4858 +11200,13677,24435,24434,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1742053,7.270226,0,6,5,-32.401051,0,2,2,2021,5,0,18,0,1,0,0,7.4117689,7.4117689,.05,.05,0,0,0,0,0,0,0,0,0,4.987144,0,52.12,44.79,57.16,56.15,8.333333333333334,1,1,0,0,4,10,5,1,472.5,1907099.8,1622878,234764.58,0,10187.238,0,4336.4858 +11201,13678,24436,24437,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.262332,8.2061911,0,41,0,-15.382183,0,3,2,2021,9,0,12,15,1,0,0,46.998638,46.998638,.05,.05,0,0,0,0,0,0,0,0,0,4.0306211,0,58.07,46.29,57.76,30.58,8.333333333333334,1,1,0,0,5,4,5,1,343,1598938.3,1085871,293846.44,0,0,0,4340.2207 +11201,13678,24437,24436,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.477807,8.7538404,6.4144754,41,0,32.221725,0,3,3,2021,7,0,70,60,1,0,0,7.4713058,7.4713058,.05,.05,0,0,0,0,0,0,0,0,0,5.8841109,6.8014584,57.76,30.58,58.07,46.29,10,1,1,0,0,5,4,5,1,343,1598938.3,1085871,293846.44,0,0,0,4340.2207 +11202,13679,24438,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,0,0,-886.32281,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,53,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,335,-165045.86,0,0,0,0,0,742.94684 +11203,13680,24439,-9,24441,24440,1,0,36,0,0,0,1,1,-9,0,3,8.5779438,8.6142302,0,0,0,-989.96454,-9,2,2,2021,17,6,42,0,1,6,0,16.507509,16.507509,.05,.05,0,0,0,0,0,0,1,1,0,2.1779037,0,40.27,50.59,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1144,-85151.469,45825.23,145117.97,132840.7,21053.412,0,2195.7517 +11203,13681,24440,24441,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.5672107,7.8322978,35,2,-64.297562,-9,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4149706,7.892396,60.02,56.42,53.99,48.04,10,1,1,0,0,9,13,5,1,558.5,1144681,450066.06,389823.84,0,0,0,5030.6465 +11203,13681,24441,24440,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.7248354,8.5654736,0,1,-2,115.75867,-9,-9,-9,2021,8,0,37,0,1,0,0,21.302395,21.302395,0,0,0,0,0,0,0,0,1,1,0,1.0128063,0,53.99,48.04,60.02,56.42,6.666666666666667,1,1,0,0,10,13,5,1,558.5,1144681,450066.06,389823.84,0,0,0,5030.6465 +11204,13682,24442,24443,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.8618517,8.8791313,0,4,2,74.774338,0,3,3,2021,12,0,45,45,1,0,0,15.83581,15.83581,0,0,0,0,0,0,0,0,0,0,0,3.2475398,0,42.3,57.54,60.02,56.42,8.333333333333334,1,1,0,0,7,7,5,1,686,966985.94,863169.5,407985.5,208204.19,0,0,4851.5205 +11204,13682,24443,24442,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.9905186,8.9846401,0,4,-2,64.03215,0,-9,-9,2021,6,0,48,42,1,0,0,16.370203,16.370203,.05,.05,0,0,0,0,0,0,0,0,0,1.5078397,0,60.02,56.42,42.3,57.54,8.333333333333334,1,1,0,0,8,7,5,1,686,966985.94,863169.5,407985.5,208204.19,0,0,4851.5205 +11205,13683,24444,24445,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,46,-2,-196.7692,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.4,22.85,48.55,19.9,3.333333333333333,1,1,0,1,0,11,2,0,160.5,6423.0625,17905.553,0,0,0,0,1375.5861 +11205,13683,24445,24444,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.7444339,6.5825801,46,2,-98.503403,0,2,2,2021,15,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.4774423,48.55,19.9,30.4,22.85,0,1,1,0,1,7,11,2,0,160.5,6423.0625,17905.553,0,0,0,0,1375.5861 +11206,13684,24446,24447,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6492844,7.4410324,6,2,-11.588288,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4515281,7.8312979,59.44,25.54,54.2,57.49,8.333333333333334,1,1,0,0,1,2,4,1,652.5,2426095,667622.63,426660.78,0,0,0,3409.6968 +11206,13684,24447,24446,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,6.3471017,7.7763739,7.4889808,6,-2,-25.857311,0,2,2,2021,6,0,15,25,1,0,0,4.3925085,4.3925085,0,0,0,0,0,0,0,0,1,1,0,1.6355896,7.6036401,54.2,57.49,59.44,25.54,10,1,1,0,0,8,2,4,1,652.5,2426095,667622.63,426660.78,0,0,0,3409.6968 +11207,13685,24448,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1012.2802,0,2,2,2021,36,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.07,24.04,-9,-9,1.666666666666667,1,1,0,0,13,2,1,0,1443,117223.63,0,0,0,0,0,787.68256 +11208,13686,24449,-9,24450,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.8405,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,3205,44867.094,0,0,0,0,0,878.94495 +11208,13686,24450,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,0,5.902668,5.8477964,0,0,-925.93842,0,3,2,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0240703,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,2,6,2,1,3205,44867.094,0,0,0,0,0,878.94495 +11209,13687,24451,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.7901096,7.7652402,0,0,-1061.5649,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,2.8009057,7.494092,60.27,49.27,-9,-9,10,1,1,0,0,0,6,3,1,449,605896.81,345520.75,231332.77,0,0,0,1848.7687 +11209,13688,24452,-9,-9,24451,1,1,48,0,0,0,2,2,-9,0,3,7.6600513,7.4507089,0,0,0,-1057.8514,0,2,1,2021,7,0,42,0,1,0,0,6.0100327,6.0100327,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.02,43.9,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,140,215476.66,-83116.32,0,0,0,0,428.34534 +11210,13689,24453,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7258554,7.6910582,0,0,-984.57886,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5196323,7.7595949,52.14,43.99,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,568,649240.69,328273.81,307391.88,0,0,0,1625.953 +11211,13690,24454,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.0287,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71866661,0,49,34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,466,154800.69,0,0,0,0,0,1833.5647 +11212,13691,24455,24456,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.6672201,8.2269764,6.4501171,8,6,48.318504,0,-9,-9,2021,10,0,40,25,1,1,0,16.843479,16.843479,.05,.05,0,0,0,0,0,0,0,0,0,0,6.6720991,51,49,39.33,58.88,7,1,1,0,0,1,4,5,1,393.5,143244.72,-79247.086,156190.22,73468.469,427.68124,0,7062.9556 +11212,13691,24456,24455,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.0787363,9.0506601,0,34,-6,-37.963333,0,3,-9,2021,22,9,23,23,1,9,0,39.055668,39.055668,0,0,0,0,0,0,0,0,0,0,0,6.8775516,0,39.33,58.88,51,49,8.333333333333334,1,1,0,0,7,4,5,1,393.5,143244.72,-79247.086,156190.22,73468.469,427.68124,0,7062.9556 +11213,13692,24457,24458,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1314592,8.3907633,0,8,3,121.75429,0,2,2,2021,8,0,37,37,1,0,0,12.275323,12.275323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,37.74,51.32,6.666666666666667,1,1,0,0,9,11,5,1,1205,831157.75,975148.25,68598.078,70172.844,23292.885,2272.8521,3477.1829 +11213,13692,24458,24457,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.3472252,8.6839066,0,8,-3,-62.827297,0,2,2,2021,12,0,35,35,1,0,0,15.077872,15.077872,0,0,0,0,0,0,0,0,1,1,0,0,0,37.74,51.32,55.36,51.57,6.666666666666667,1,1,0,0,7,11,5,1,1205,831157.75,975148.25,68598.078,70172.844,23292.885,2272.8521,3477.1829 +11214,13693,24459,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.9576292,8.8962183,0,0,0,-1074.3927,0,3,3,2021,15,3,38,38,1,3,0,19.810598,19.810598,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,33.31,51.41,-9,-9,5,1,1,0,0,15,12,5,1,1164,239297.81,-56457.277,117208.41,-3399.6057,4792.8286,0,3001.3088 +11215,13694,24460,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.2769051,8.1249714,0,0,0,-899.3197,0,2,-9,2021,9,0,41,41,1,0,0,9.1956997,9.1956997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,7,4,0,461,28580.418,-62057.391,0,0,0,0,1075.1281 +11216,13695,24461,-9,24464,24462,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.7457,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24462,24464,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.0144424,8.8136377,0,21,0,35.572926,0,2,1,2021,10,0,42,41,1,0,0,19.269756,19.269756,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,49.41,58.28,8.333333333333334,1,1,0,0,14,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24463,-9,24464,24462,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6705,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24464,24462,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.6844521,8.734374,0,20,0,-171.32411,0,2,2,2021,8,0,38,43,1,0,0,16.586222,16.586222,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,52.13,57.22,8.333333333333334,1,1,0,0,10,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11217,13696,24465,24466,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1017227,7.9683919,0,2,-5,31.375929,0,-9,-9,2021,7,0,45,45,1,0,0,9.6507072,9.6507072,0,0,0,0,0,0,0,0,0,0,0,6.2376938,0,62.11,45.63,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,0,785.5,1588746.5,1087750.3,446275.06,0,985.47955,0,4002.8513 +11217,13696,24466,24465,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.8062992,8.6403093,0,2,5,-67.752281,0,2,2,2021,8,0,40,35,1,0,0,16.325596,16.325596,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.11,45.63,8.333333333333334,1,1,0,0,13,10,5,0,785.5,1588746.5,1087750.3,446275.06,0,985.47955,0,4002.8513 +11218,13697,24467,24468,-9,-9,1,1,66,0,3,0,1,1,-9,0,2,0,1.8046625,2.059103,37,3,-25.873196,0,3,2,2021,6,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8906699,1.8884608,57.57,49.69,49,48,8.333333333333334,2,3,0,0,13,4,2,1,187.5,146378.56,109507.69,191770.16,113775.95,0,0,559.07733 +11218,13697,24468,24467,-9,-9,1,0,63,0,3,0,3,3,-9,0,3,0,0,0,37,-3,66.102928,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,57.57,49.69,7,2,3,1,0,0,4,2,1,187.5,146378.56,109507.69,191770.16,113775.95,0,0,559.07733 +11218,13698,24469,-9,24471,24473,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8804,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24470,-9,24471,24473,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.8109,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24471,24473,-9,-9,1,0,32,0,3,0,1,1,-9,0,4,0,0,0,4,-2,130.21996,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,38.8,59.15,7,2,3,0,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24472,-9,24471,24473,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.2527,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24473,24471,24468,24467,1,1,34,0,3,0,1,1,-9,0,4,7.7442622,7.9771204,0,4,2,62.262169,0,3,2,2021,17,5,32,33,1,5,0,10.975805,10.975805,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,59.15,47,57,6.666666666666667,2,3,0,1,11,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11219,13699,24474,24475,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.5217505,8.6688194,0,8,-2,-96.918243,0,2,2,2021,12,2,41,41,1,2,0,14.874267,14.874267,.05,.05,0,0,0,0,0,7,0,0,0,3.4591367,0,43.87,37.09,53,54,3.333333333333333,1,1,0,0,8,10,5,0,1225,626392.5,345623.63,189501.5,73733.109,4483.334,2191.1536,3477.1782 +11219,13699,24475,24474,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1992483,8.3686028,0,8,2,-156.12788,0,-9,-9,2021,9,0,37,30,1,1,0,11.662121,11.662121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,43.87,37.09,8,1,1,0,0,1,10,5,0,1225,626392.5,345623.63,189501.5,73733.109,4483.334,2191.1536,3477.1782 +11220,13700,24476,-9,24477,24478,1,0,16,0,0,0,3,3,-9,0,2,0,0,0,0,0,-829.84186,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,5,1,1,0,0,0,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13700,24477,24478,-9,-9,1,0,51,0,0,0,1,1,-9,0,1,8.8062105,8.769578,0,24,-4,-110.66337,0,3,3,2021,11,1,50,45,1,1,0,16.106201,16.106201,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,14.72,57.57,49.69,6.666666666666667,1,1,0,0,10,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13700,24478,24477,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.6550913,8.5035334,0,24,4,-15.821489,0,2,2,2021,7,0,40,40,1,0,0,15.76341,15.76341,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,51.17,14.72,8.333333333333334,1,1,0,0,10,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13701,24479,-9,24477,24478,1,1,18,0,0,0,2,2,1,0,3,5.8947635,5.9205651,0,0,0,-1165.3116,-9,1,1,2021,6,0,5,0,1,0,1,6.3896108,6.3896108,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,10,1,1,0,0,1,2,2,1,133,-6247.3413,0,0,0,0,0,-189.23889 +11221,13702,24480,24481,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.0987997,8.0546751,50,2,-73.358536,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8005395,59.99,44.01,46.4,21.9,8.333333333333334,1,1,0,0,0,8,5,1,1019,1523736,732895.5,391929.06,0,21458.303,0,5120.1582 +11221,13702,24481,24480,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,9.1882668,8.5965519,50,-2,13.081926,0,-9,-9,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5540876,46.4,21.9,59.99,44.01,5,1,1,0,0,0,8,5,1,1019,1523736,732895.5,391929.06,0,21458.303,0,5120.1582 +11222,13703,24482,-9,24486,24484,1,1,15,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1115.3236,-9,2,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24483,-9,24486,24484,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.2783,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24484,24486,-9,-9,1,1,38,0,3,0,1,1,-9,0,2,8.4728937,8.4444571,0,15,3,111.08007,0,2,2,2021,23,10,38,38,1,10,0,16.149611,16.149611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,41.06,62.04,3.333333333333333,1,1,0,1,13,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24485,-9,24486,24484,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-995.33795,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24486,24484,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.3663783,6.6186352,6.2937484,15,-3,55.064514,0,2,2,2021,24,9,17,18,1,9,0,4.0947399,4.0947399,0,0,0,0,0,0,0,0,1,1,0,6.8760133,0,41.06,62.04,49.28,52.09,6.666666666666667,1,1,0,0,6,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11223,13704,24487,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.5101585,8.0522451,0,0,0,-1140.757,0,3,3,2021,10,0,55,55,1,0,0,10.064677,10.064677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,-9,-9,8.333333333333334,2,3,0,0,9,6,4,1,276,204300.2,274623.56,170647.03,56538.543,0,0,2552.4658 +11223,13705,24488,-9,24487,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9889188,7.8258953,0,0,0,-1090.5948,0,3,-9,2021,10,0,48,48,1,1,1,7.6895528,7.6895528,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,2,3,0,0,1,6,4,1,1375,-196521.47,-42504.395,0,0,0,0,1215.6029 +11223,13706,24489,-9,24487,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2345076,8.4494238,0,0,0,-979.8819,0,3,-9,2021,10,0,40,40,1,1,1,12.790132,12.790132,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,1,319,248079.66,69886.18,0,0,0,0,2083.8501 +11224,13707,24490,24492,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,8.3845072,8.1271381,0,12,3,-72.917381,0,-9,-9,2021,8,0,57,39,1,0,0,8.7272348,8.7272348,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,8.333333333333334,2,3,0,0,11,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13707,24491,-9,24492,24490,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1006.6669,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60882604,0,46.34,61.24,-9,-9,6.666666666666667,2,3,0,0,0,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13707,24492,24490,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,7.7306333,7.8990622,0,21,-3,64.153969,0,3,2,2021,11,1,31,31,1,1,0,8.2556067,8.2556067,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,51.83,57.2,8.333333333333334,2,3,0,0,7,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13708,24493,-9,24492,24490,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-975.5,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9586415,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,0,10,1,1,1209,-165247.58,0,0,0,0,0,1348.1932 +11225,13709,24494,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-924.95349,0,3,3,2021,19,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.35,26.31,-9,-9,3.333333333333333,2,3,0,1,0,6,2,1,650,-47324.898,0,0,0,-1123.6163,0,734.69086 +11226,13710,24495,24496,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.0839052,7.124023,0,35,6,77.92865,0,1,1,2021,20,7,38,30,1,7,0,4.006834,4.006834,0,0,0,0,0,0,0,0,0,0,0,0,0,34.95,34.57,43.43,46.43,5,2,3,0,0,5,2,4,1,1803.5,243130.03,-882.82227,216821.88,0,0,0,2567.8599 +11226,13710,24496,24495,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.31359,7.9274306,0,35,-6,18.629433,0,3,3,2021,13,2,45,57,1,2,0,9.1007481,9.1007481,0,0,0,0,0,0,0,0,0,0,0,7.0536394,0,43.43,46.43,34.95,34.57,8.333333333333334,2,3,0,0,7,2,4,1,1803.5,243130.03,-882.82227,216821.88,0,0,0,2567.8599 +11226,13711,24497,-9,24496,24495,1,0,26,0,0,0,1,1,-9,0,4,8.0586615,8.2040558,0,0,0,-970.28131,0,1,2,2021,12,1,37,39,1,1,1,11.004499,11.004499,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,529,95704.141,0,0,0,0,0,1206.6426 +11226,13712,24498,-9,24496,24495,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-960.13953,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.74,56.95,-9,-9,10,2,3,0,0,1,2,1,1,87,0,0,0,0,0,0,838.19086 +11226,13713,24499,-9,24496,24495,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-979.32745,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,163,7401.5132,0,0,0,0,0,-688.94684 +11227,13714,24500,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.8467851,7.4784632,6.7788854,0,0,-926.32843,0,2,2,2021,12,1,16,21,1,1,0,6.0071249,6.0071249,0,0,0,0,0,0,0,0,1,1,0,7.1781712,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,1055,-77588.938,0,0,0,0,0,2824.5396 +11228,13715,24501,24502,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9795327,8.141531,0,6,1,70.161926,0,-9,-9,2021,10,0,37,38,1,0,0,8.2431288,8.2431288,0,0,0,0,0,0,0,7,0,0,0,0,0,39.21,56.41,60.11,41.26,5,1,1,0,0,6,5,4,1,1107,850156.25,213230.88,428472.09,0,0,0,2937.469 +11228,13715,24502,24501,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1473494,7.8706408,0,6,-1,-45.196606,0,2,2,2021,8,1,39,38,1,1,0,9.4436131,9.4436131,.05,.05,0,0,0,0,0,2,0,0,0,3.0696933,0,60.11,41.26,39.21,56.41,8.333333333333334,1,1,0,0,6,5,4,1,1107,850156.25,213230.88,428472.09,0,0,0,2937.469 +11229,13716,24503,24504,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1116905,8.8720407,0,6,-4,71.892021,0,3,-9,2021,12,1,44,41,1,1,0,22.780426,22.780426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.49,55.09,8.333333333333334,1,1,0,0,7,9,5,1,281,470837.31,33378.523,422236.91,59561.77,0,0,3743.0945 +11229,13716,24504,24503,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.8122644,7.717773,0,6,4,-37.795586,0,2,2,2021,8,0,20,35,1,0,0,11.778793,11.778793,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,7,9,5,1,281,470837.31,33378.523,422236.91,59561.77,0,0,3743.0945 +11230,13717,24505,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3294296,8.0215187,0,0,0,-993.77972,0,3,2,2021,12,0,39,39,1,0,0,11.372785,11.372785,0,0,0,0,0,0,0,2,0,0,0,0,0,40.48,60.05,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,458,-7340.5767,-54690.559,0,0,0,5217.7578,985.69037 +11231,13718,24506,24508,-9,-9,1,0,31,1,1,0,2,2,-9,0,5,7.9564462,8.0185156,0,6,-3,-28.178375,0,2,2,2021,9,0,22,22,1,0,0,15.213638,15.213638,0,0,0,0,0,0,0,0,1,1,0,3.3970311,0,46.06,60.24,54.79,55.86,10,1,1,0,0,7,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11231,13718,24507,-9,24506,24508,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.7253,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11231,13718,24508,24506,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.9642248,8.7057514,3.6839259,6,3,-16.667664,0,-9,-9,2021,8,0,45,49,1,0,0,20.869467,20.869467,.05,.05,0,0,0,0,0,0,1,1,0,3.954577,0,54.79,55.86,46.06,60.24,6.666666666666667,1,1,0,0,7,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11232,13719,24509,24510,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4547882,8.6290054,0,12,1,-121.36343,0,2,2,2021,10,0,46,46,1,0,0,14.006975,14.006975,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.75,37.7,8.333333333333334,1,1,0,0,13,11,5,1,879,387956.94,228437.28,218567.69,106058.59,-1594.4938,3431.925,3065.125 +11232,13719,24510,24509,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.4154949,7.4197922,0,12,-1,101.8597,0,2,2,2021,20,9,20,0,1,9,0,8.3524885,8.3524885,.05,.05,0,0,0,0,0,7,0,0,0,.6728406,0,38.75,37.7,57.16,56.15,6.666666666666667,1,1,0,0,10,11,5,1,879,387956.94,228437.28,218567.69,106058.59,-1594.4938,3431.925,3065.125 +11233,13720,24511,-9,24513,24512,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1044.8986,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24512,24513,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,9.6605835,9.9515486,0,8,2,26.590471,0,3,3,2021,7,0,55,50,1,0,0,29.294294,29.294294,.05,.05,.05,0,0,0,0,0,0,0,0,5.7168274,0,49.87,50.46,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24513,24512,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,8.8832541,8.797904,0,8,-2,55.136192,0,2,2,2021,7,0,20,46,1,0,0,31.977524,31.977524,.05,.05,0,0,0,0,0,0,0,0,0,3.1068389,0,57.06,57.76,49.87,50.46,8.333333333333334,3,4,0,0,7,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24514,-9,24513,24512,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-972.16516,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11234,13721,24515,24516,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.3294935,7.4040537,0,2,7,2.0023034,0,1,2,2021,12,0,50,60,1,0,0,4.0162344,4.0162344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,38.01,61.37,5,1,1,0,0,8,11,3,1,795.5,88492.414,-63841.313,55131.473,71853.938,0,0,1797.2932 +11234,13721,24516,24515,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.7163706,7.5544181,0,2,-7,5.2357812,0,-9,-9,2021,13,3,40,0,1,3,0,5.7653384,5.7653384,.05,.05,0,0,0,0,0,7,0,0,0,0,0,38.01,61.37,49.04,55.86,6.666666666666667,1,1,0,0,1,11,3,1,795.5,88492.414,-63841.313,55131.473,71853.938,0,0,1797.2932 +11235,13722,24517,24518,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.0170717,7.8034072,38,-1,16.74094,0,2,2,2021,7,0,0,46,4,0,0,0,0,0,0,.05,0,0,0,0,2,0,0,0,8.6126089,7.9796925,58.15,52.91,56.33,51.02,10,1,1,0,0,11,7,3,1,854,962868.38,28910.572,500099,-1090.3386,0,0,2192.5806 +11235,13722,24518,24517,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.906199,6.6290627,38,1,-48.973854,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.2412848,6.9190836,56.33,51.02,58.15,52.91,8.333333333333334,1,1,0,0,0,7,3,1,854,962868.38,28910.572,500099,-1090.3386,0,0,2192.5806 +11236,13723,24519,-9,-9,-9,1,0,34,1,4,0,3,3,-9,0,2,7.6628032,7.1973419,0,0,0,-910.6059,0,2,2,2021,19,6,30,35,1,6,0,6.0520859,6.0520859,0,0,0,0,0,0,0,0,1,0,1,0,0,24.14,54.11,-9,-9,5,1,1,0,0,6,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11236,13723,24520,-9,24519,-9,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.8575,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11236,13723,24521,-9,24519,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.644,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11237,13724,24522,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,0,0,-901.89758,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3187513,0,0,1,1,0,6.1898937,0,35.08,32.7,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,330,-34817.871,0,0,0,0,0,1912.7058 +11238,13725,24523,24525,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.5345831,7.4086041,0,17,-1,66.733376,0,2,2,2021,5,0,40,45,1,0,0,4.1600742,4.1600742,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11238,13725,24524,-9,24523,24525,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9211,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11238,13725,24525,24523,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,7.8049183,7.4167156,0,18,1,-6.6760087,0,2,2,2021,6,0,10,8,1,0,0,19.347986,19.347986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.79,55.86,0,1,1,0,0,9,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11239,13726,24526,24527,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.9103498,8.9883881,0,20,4,127.22508,0,3,2,2021,6,0,38,44,1,0,0,19.251879,19.251879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49,56,6.666666666666667,1,1,0,0,11,2,5,1,200,1153414,1030703.6,127249.77,0,25340.355,0,4659.146 +11239,13726,24527,24526,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,8.3881721,8.4341002,0,9,-4,93.574417,0,-9,-9,2021,11,0,16,17,1,1,0,32.530373,32.530373,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,57.57,49.69,7,1,1,0,0,1,2,5,1,200,1153414,1030703.6,127249.77,0,25340.355,0,4659.146 +11240,13727,24528,24529,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.4284697,8.5642233,0,8,4,-76.663422,0,-9,-9,2021,10,0,39,44,1,1,0,15.854026,15.854026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,0,0,12,8,4,1,559,1154164.5,839320.63,352124.19,0,0,0,1888.6864 +11240,13727,24529,24528,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,43,-4,124.01435,0,3,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,4,1,559,1154164.5,839320.63,352124.19,0,0,0,1888.6864 +11240,13728,24530,-9,24529,24528,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-1072.6782,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,1,8,2,1,660,66468.992,0,0,0,-2187.4614,0,0 +11240,13729,24531,-9,24529,24528,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-1075.6005,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,1,8,1,1,617,-9228.2295,0,0,0,0,0,0 +11241,13730,24532,-9,24533,24534,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.0464,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24533,24534,-9,-9,1,0,25,2,2,0,2,2,-9,0,4,0,0,0,9,-4,-124.9187,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,51.32,50,57,8.333333333333334,2,3,0,0,4,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24534,24533,-9,-9,1,1,29,2,2,0,2,2,-9,0,4,7.7368698,8.4285784,0,6,4,56.310944,0,-9,-9,2021,10,0,35,35,1,1,0,8.2946033,8.2946033,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,37.89,51.32,7,2,3,0,0,1,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24535,-9,24533,24534,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5966,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11242,13731,24536,-9,24537,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1048.7616,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,3,4,-9,0,0,5,3,0,1177.5,173443.97,126587.2,117736.89,0,0,1614.9137,1762.3585 +11242,13731,24537,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.9093761,7.8730793,0,0,0,-834.83875,0,2,3,2021,10,0,26,30,1,0,0,10.149556,10.149556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.66,47.77,-9,-9,6.666666666666667,3,4,0,0,12,5,3,0,1177.5,173443.97,126587.2,117736.89,0,0,1614.9137,1762.3585 +11243,13732,24538,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-932.04236,0,2,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,20.71,-9,-9,5,1,1,0,0,0,12,1,0,2831,0,0,0,0,0,0,1383.0802 +11244,13733,24539,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,4.6262655,4.4468508,0,0,-980.89008,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2337403,4.4288588,23.7,42.27,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,905,17619.359,209242.72,126846.54,26075.451,0,0,656.23755 +11245,13734,24540,24541,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.9401569,8.5768776,6,0,-37.203251,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,14.469954,0,0,1,1,0,8.3127642,8.5919542,53,46,52,46,8,1,1,0,0,0,4,4,1,404,2449518.5,557481.06,388908.59,0,0,0,5625.3389 +11245,13734,24541,24540,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.1022959,7.2593188,53,0,-9.459856,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6310463,7.0176668,52,46,53,46,8,1,1,0,0,0,4,4,1,404,2449518.5,557481.06,388908.59,0,0,0,5625.3389 +11246,13735,24542,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.8914,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.7069325,0,16.14242,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,717,21508.232,0,72498.148,0,0,0,1537.9105 +11247,13736,24543,-9,24544,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1868,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,0,343,26942.316,30104.715,117468.17,84067.094,0,0,1230.4274 +11247,13736,24544,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.1021423,8.2199926,0,5,2,38.82877,0,-9,-9,2021,16,4,40,40,1,4,0,10.477807,10.477807,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.58,56.37,44.58,28.35,6.666666666666667,1,1,0,0,6,6,5,0,343,26942.316,30104.715,117468.17,84067.094,0,0,1230.4274 +11247,13737,24545,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.8532343,8.8533392,0,5,-2,21.128214,0,-9,-9,2021,24,11,55,58,1,11,0,16.021881,16.021881,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,28.35,30.58,56.37,3.333333333333333,1,1,0,0,4,6,5,0,1016,154113.3,0,0,0,0,0,2765.519 +11248,13738,24546,-9,-9,-9,1,0,84,0,1,0,3,3,-9,0,1,0,5.5017776,5.4365869,0,0,-977.73969,0,2,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.41252455,5.5562344,47.59,29.43,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,451,383682.84,0,344597.38,0,0,0,226.71112 +11249,13739,24547,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1137.5967,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,37.25,-9,-9,5,1,1,0,1,0,9,1,0,700,-31423.84,-17605.719,0,0,0,0,2120.6462 +11250,13740,24548,24549,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8468666,9.1527042,0,6,-1,122.55001,0,3,3,2021,8,0,48,48,1,0,0,19.258799,19.258799,.05,.05,0,0,0,0,0,0,0,0,0,1.6446973,0,57.16,56.15,59.44,50.02,8.333333333333334,1,1,0,0,8,4,5,1,697.5,969051.13,591261.75,142043.2,0,0,0,3236.6123 +11250,13740,24549,24548,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.6637454,8.0457592,0,39,1,28.639576,0,3,3,2021,9,0,36,30,1,0,0,7.2249341,7.2249341,0,0,0,0,0,0,0,0,0,0,0,4.0000505,0,59.44,50.02,57.16,56.15,10,1,1,0,0,8,4,5,1,697.5,969051.13,591261.75,142043.2,0,0,0,3236.6123 +11250,13741,24550,-9,24549,24548,1,0,22,0,0,0,2,2,-9,0,3,7.8175249,7.7056818,0,0,0,-982.97156,0,2,2,2021,13,1,36,38,1,1,1,7.3787565,7.3787565,0,0,0,0,0,0,0,0,0,0,0,0,0,43.55,57.37,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1313,107883.63,0,0,0,0,0,1289.1073 +11251,13742,24551,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.0150709,7.9997363,0,0,0,-1052.2451,0,2,2,2021,5,0,16,27,1,0,0,20.275703,20.275703,.05,.05,0,0,0,0,0,0,1,1,0,4.972146,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,247,92485.516,-55505.777,0,0,1669.0298,0,1341.4912 +11252,13743,24552,24553,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5694275,8.8360968,0,14,-3,-60.93412,0,-9,2,2021,7,0,20,38,1,0,0,31.634995,31.634995,0,0,0,0,0,0,0,0,0,0,0,8.6277409,0,57.33,53.46,43.37,57.28,8.333333333333334,1,1,0,0,8,9,5,1,1216,2436582,1848292,494484.31,66175.891,0,0,9532.4844 +11252,13743,24553,24552,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.5563154,9.6032143,0,14,3,58.481182,0,3,3,2021,16,5,38,38,1,5,0,51.344711,51.344711,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.37,57.28,57.33,53.46,6.666666666666667,1,1,0,0,6,9,5,1,1216,2436582,1848292,494484.31,66175.891,0,0,9532.4844 +11253,13744,24554,24556,-9,-9,1,1,54,1,2,0,1,1,-9,0,4,9.5741568,9.3962069,0,20,-1,-89.224213,0,3,2,2021,5,0,45,42,1,0,0,32.703125,32.703125,.05,.05,0,0,0,0,0,0,0,0,0,8.6175108,0,51.24,58.84,50.63,50.99,8.333333333333334,1,1,0,0,13,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24555,-9,24556,24554,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.53564,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24556,24554,-9,-9,1,0,55,1,2,0,1,1,-9,0,3,9.4954691,9.3657246,0,19,1,-58.348705,0,2,1,2021,11,0,50,40,1,0,0,31.743618,31.743618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.63,50.99,51.24,58.84,3.333333333333333,1,1,0,0,12,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24557,-9,24556,24554,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.6958,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11254,13745,24558,24559,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5508585,5.5962176,9,-4,-130.33778,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8028772,5.3742146,51.14,52.08,41.18,41.95,8.333333333333334,1,1,0,0,7,9,4,1,260.5,1730332.6,967697.69,515808.84,0,-545.16467,0,3710.7573 +11254,13745,24559,24558,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.5521307,8.6484957,9,4,89.009445,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4335694,8.8451824,41.18,41.95,51.14,52.08,3.333333333333333,1,1,0,0,0,9,4,1,260.5,1730332.6,967697.69,515808.84,0,-545.16467,0,3710.7573 +11255,13746,24560,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,6.4130969,6.043932,0,0,-949.47217,0,2,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2562122,41.17,17.23,-9,-9,10,1,1,0,1,8,7,2,1,879,1369616.8,200495.67,914976.13,0,0,0,640.2196 +11256,13747,24561,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-989.0733,0,1,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.175694,0,57.09,46.7,-9,-9,8.333333333333334,1,1,1,0,1,5,2,0,567,-232067.44,-38562.398,0,0,0,0,1059.3116 +11257,13748,24562,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,2.5563121,2.3110344,0,0,-922.88574,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.6148531,42.61,18.41,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,191,603901.5,-177999.91,263476.41,0,0,0,561.91571 +11258,13749,24563,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.924396,7.71176,0,0,-1011.8714,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,2.2494924,0,22.738176,0,1,1,0,7.5449162,7.2449641,37.1,16.85,-9,-9,3.333333333333333,1,1,0,0,3,9,3,1,1301,364103,278904.5,138571.28,0,0,0,2871.7649 +11259,13750,24564,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-995.98987,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121974,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,300,-7662.6919,-19913.18,0,0,0,0,-47.473034 +11260,13751,24565,-9,24568,24569,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-972.27716,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24566,-9,24568,24569,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.845,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,3.9948213,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24567,-9,24568,24569,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.75916,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24568,24569,-9,-9,1,0,34,1,3,0,3,3,-9,0,4,0,0,0,5,-10,21.605494,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24569,24568,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,7.1323237,7.0559559,0,19,10,101.71281,0,-9,3,2021,9,0,24,24,1,1,0,6.429193,6.429193,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,8,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11261,13752,24570,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.365242,9.3331757,0,0,0,-894.53729,-9,-9,-9,2021,9,0,72,0,1,0,0,15.800434,15.800434,0,0,0,0,0,0,0,0,0,0,0,4.1300855,0,61.27,46.03,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,435,5270.8823,160022.86,0,0,0,0,2857.3726 +11262,13753,24571,-9,24573,24572,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.98456,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24572,24573,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.6369152,8.4340057,0,7,2,145.6985,0,3,3,2021,12,0,39,39,1,0,0,17.805906,17.805906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.17,50.26,48.11,49.83,5,1,1,0,0,8,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24573,24572,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,7,-2,45.27021,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,49.83,46.17,50.26,6.666666666666667,1,1,0,1,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24574,-9,24573,24572,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.42267,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11263,13754,24575,24577,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.8270302,7.7626305,0,26,-3,27.499245,-9,3,1,2021,6,0,24,0,1,0,0,10.372475,10.372475,0,0,0,0,0,0,0,102,1,1,0,0,0,51.78,53.03,52,55,8.333333333333334,2,3,0,0,5,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13754,24576,-9,24575,24577,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-995.94641,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13754,24577,24575,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,26,3,-18.456751,-9,3,2,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,51.78,53.03,8,4,2,1,0,0,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13755,24578,-9,24575,24577,1,1,23,0,1,0,1,1,1,0,4,8.0244703,7.7315226,0,0,0,-1089.6012,-9,2,2,2021,16,4,15,0,1,4,1,20.342484,20.342484,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,7,2,3,1,105,110076.15,0,0,0,0,0,1842.8254 +11263,13756,24579,-9,24575,24577,1,0,21,0,1,0,1,1,1,0,4,0,0,0,0,0,-966.85352,-9,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,3,2,1,1,2464,-58758.98,0,0,0,1579.0085,0,0 +11264,13757,24580,24581,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1522007,8.3030882,0,11,-7,2.2455633,0,3,3,2021,17,6,37,37,1,6,0,9.6890564,9.6890564,0,0,0,0,0,0,0,27,1,0,1,7.0862632,0,47.11,35.63,67.69,24.04,5,2,3,0,0,14,6,4,1,338,1751246.5,967403.13,464385.72,0,0,-1567.1218,4012.6279 +11264,13757,24581,24580,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,7.8517375,8.1571207,37,7,-34.825054,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,8.059926,67.69,24.04,47.11,35.63,6.666666666666667,2,3,0,0,0,6,4,1,338,1751246.5,967403.13,464385.72,0,0,-1567.1218,4012.6279 +11264,13758,24582,-9,24580,24581,1,0,34,0,0,0,1,1,-9,0,4,7.6549492,7.5852423,0,0,0,-909.01538,0,2,3,2021,24,12,37,6,1,12,1,7.0745916,7.0745916,.05,.05,0,0,0,0,0,7,1,0,1,0,0,36.1,63.29,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,810,-45028.441,26664.285,0,0,0,0,1721.5192 +11264,13759,24583,-9,24580,24581,1,1,31,0,0,0,1,1,-9,0,4,8.4389744,8.3501091,0,0,0,-1200.6508,0,2,2,2021,6,1,46,41,1,1,1,13.108636,13.108636,.05,.05,0,0,0,0,0,7,1,0,1,0,0,43.43,54.3,-9,-9,3.333333333333333,2,3,0,0,8,6,5,1,729,-199495.8,2729.219,0,0,0,0,870.71277 +11264,13760,24584,-9,24580,24581,1,1,28,0,0,0,2,2,-9,0,3,7.0326624,7.6063991,0,0,0,-1039.6202,-9,2,3,2021,3,0,60,0,1,0,1,2.6510792,2.6510792,.05,.05,0,0,0,0,0,14.5,1,0,1,2.745086,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,3,6,3,1,3014,-33451.824,0,0,0,0,0,1070.972 +11264,13761,24585,-9,24580,24581,1,1,25,0,0,0,1,1,-9,0,3,8.4469118,8.4451742,0,0,0,-1010.2726,0,2,3,2021,11,1,4,32,1,1,1,160.24686,160.24686,.05,.05,0,0,0,0,0,2,1,0,1,4.4456563,0,32.28,58.05,-9,-9,6.666666666666667,2,3,0,0,5,6,5,1,273,37442.832,-48914.207,0,0,0,0,2037.5033 +11265,13762,24586,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.88135,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,25.2,55.96,-9,-9,0,1,1,0,0,4,8,1,1,827,97725.016,0,0,0,0,0,526.8819 +11266,13763,24587,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.2609282,7.515666,0,0,-984.13995,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9754295,7.7467475,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,745,678951.06,362374.72,199907.41,0,3634.7017,0,7191.8257 +11267,13764,24588,24589,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6847157,7.6300039,0,26,-3,3.1510611,0,1,1,2021,6,0,30,40,1,0,0,9.4606304,9.4606304,0,0,0,0,0,0,0,0,0,0,0,0,0,45.39,51.79,51.14,60.45,8.333333333333334,1,1,0,0,14,9,3,1,1057.5,1248488,0,384825.94,0,0,0,2141.7678 +11267,13764,24589,24588,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,6.4069223,6.7197032,27,3,-3.843044,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0040054,6.8587756,51.14,60.45,45.39,51.79,6.666666666666667,1,1,0,0,12,9,3,1,1057.5,1248488,0,384825.94,0,0,0,2141.7678 +11268,13765,24590,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9514556,7.9016786,0,0,0,-1080.2529,0,3,3,2021,8,0,42,37,1,0,0,7.3874726,7.3874726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,1176,21825.316,92472.094,0,0,-1230.3635,0,1390.9509 +11269,13766,24591,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.7220473,7.8475122,0,0,0,-1099.4464,0,3,3,2021,9,3,46,40,1,3,0,7.1564422,7.1564422,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,50.16,-9,-9,6.666666666666667,3,4,0,0,10,2,3,1,394,1077687.6,357591.56,407447,0,0,0,1407.7877 +11270,13767,24592,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.8141613,8.7422848,0,0,0,-1052.8132,0,2,2,2021,8,2,40,44,1,2,0,17.857956,17.857956,.05,.05,0,0,0,0,0,0,0,0,0,4.350956,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,1127,189053.42,252044.23,-31440.643,-4857.2051,0,0,2963.9548 +11271,13768,24593,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-929.51678,0,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.79,19.89,-9,-9,0,1,1,0,0,0,9,1,0,217,-74407.07,0,0,0,0,0,1763.2928 +11271,13769,24594,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,6.3991032,6.3775682,0,0,-948.37939,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.82689357,6.3907266,45,16.05,-9,-9,0,1,1,0,0,0,9,2,0,614,463359.97,124663.48,199102.42,0,0,0,803.44922 +11272,13770,24595,-9,24598,24597,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0618,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24596,-9,24598,24597,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1788,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24597,24598,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9344845,9.0293121,0,12,3,-122.28439,0,2,1,2021,8,0,50,43,1,0,0,20.550791,20.550791,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,43.65,58.28,8.333333333333334,1,1,0,0,15,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24598,24597,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5276871,8.9419117,0,12,-3,-4.8737655,0,-9,-9,2021,7,0,72,42,1,0,0,9.1117096,9.1117096,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,51.24,58.84,6.666666666666667,1,1,0,0,14,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11273,13771,24599,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.85858,0,-9,-9,2021,15,7,0,0,4,7,0,0,0,0,0,0,1,0,7.7061071,0,0,1,1,0,0,0,50.26,16.7,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,329,121197.8,0,0,0,0,0,2617.0986 +11274,13772,24600,24602,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.1503596,7.3617854,0,18,1,85.49649,0,1,1,2021,27,11,17,17,1,11,0,9.2729549,9.2729549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.83,63.9,51.83,57.2,8.333333333333334,1,1,0,0,12,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24601,-9,24600,24602,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5566,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24602,24600,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.4518652,8.4339838,0,18,-1,-12.639985,0,2,1,2021,12,2,40,40,1,2,0,14.32728,14.32728,.05,.05,0,0,0,0,0,0,1,1,0,.28488705,0,51.83,57.2,33.83,63.9,8.333333333333334,1,1,0,0,13,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24603,-9,24600,24602,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.9171,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11275,13773,24604,-9,24605,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.1234,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24605,-9,-9,-9,1,0,29,1,3,0,2,2,-9,1,4,0,0,0,0,0,-972.58356,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,6.666666666666667,1,1,0,0,10,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24606,-9,24605,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.21582,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24607,-9,24605,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.3645,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11276,13774,24608,24609,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.600544,8.7471418,0,5,4,-24.609222,0,2,2,2021,12,0,58,84,1,0,0,12.923181,12.923181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,27.45,56.35,6.666666666666667,1,1,0,0,12,9,4,1,432,17901.094,32590.895,194074.22,134480.47,0,0,2180.7729 +11276,13774,24609,24608,-9,-9,1,0,25,0,0,0,2,2,0,0,2,0,0,0,5,-4,45.378098,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.739141,0,27.45,56.35,49.04,55.86,8.333333333333334,1,1,0,0,4,9,4,1,432,17901.094,32590.895,194074.22,134480.47,0,0,2180.7729 +11277,13775,24610,-9,-9,24611,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-985.40155,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.19,53.97,-9,-9,10,1,1,0,0,0,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13775,24611,-9,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,7.550581,7.5990486,0,0,0,-934.39648,0,2,2,2021,12,0,36,0,1,0,0,6.6881824,6.6881824,0,0,0,0,0,0,0,0,1,1,0,0,0,52.54,52.91,-9,-9,1.666666666666667,1,1,0,0,1,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13775,24612,-9,-9,24611,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.9581,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13776,24613,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1021.6062,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,51.52,-9,-9,3.333333333333333,1,1,1,1,0,11,1,0,1192,-72518.734,0,0,0,0,0,2053.043 +11278,13777,24614,24615,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-18.189377,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.7586846,0,36.93,49.01,54,45,8.333333333333334,1,1,0,0,0,7,2,1,392,-24217.637,49638.656,0,0,0,0,1225.7159 +11278,13777,24615,24614,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,4.8537951,4.9174194,6,3,-.93748903,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,10.545728,0,0,1,1,0,1.5964016,4.8644757,54,45,36.93,49.01,8,1,1,0,0,0,7,2,1,392,-24217.637,49638.656,0,0,0,0,1225.7159 +11279,13778,24616,24617,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,7.7216163,7.5597649,0,17,4,16.793734,0,-9,-9,2021,11,0,40,40,1,0,0,5.9198122,5.9198122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,60.02,56.42,8.333333333333334,2,3,0,0,13,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11279,13778,24617,24616,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.6404033,7.8075795,0,17,-4,53.124401,0,1,1,2021,6,0,20,11,1,0,0,14.018332,14.018332,.05,.05,0,0,0,0,0,0,0,0,0,3.1661985,0,60.02,56.42,51.41,56.15,10,2,3,0,0,6,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11279,13778,24618,-9,24617,24616,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.94098,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11280,13779,24619,24620,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.8516235,8.0979977,32,-3,-42.670666,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4349675,8.5162687,57.75,41.31,58.23,43.46,10,1,1,0,0,7,2,5,1,654.5,2216661.3,1786681,248911.34,0,0,0,6440.6914 +11280,13779,24620,24619,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.8359537,8.7683668,13,3,-137.17436,-9,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8174739,8.7298756,58.23,43.46,57.75,41.31,10,1,1,0,0,0,2,5,1,654.5,2216661.3,1786681,248911.34,0,0,0,6440.6914 +11281,13780,24621,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.0551348,7.9856987,0,0,-996.76385,0,3,-9,2021,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5851712,8.0252886,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,0,4,4,0,375,1063704.8,611742.5,316635.16,0,0,0,1701.9506 +11282,13781,24622,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,6.8622022,6.765871,0,0,-1040.1672,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1779752,6.9704671,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,115,372349.75,224260.31,178275.81,0,0,0,305.06079 +11283,13782,24623,-9,-9,-9,1,1,28,0,3,0,2,2,-9,0,4,8.9114294,8.9244442,0,0,0,-1053.6257,0,-9,-9,2021,12,0,20,60,1,0,0,33.901676,33.901676,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,10,1,1,0,0,11,2,4,1,1006.5,53201.441,0,0,0,0,0,2581.0623 +11283,13782,24624,-9,-9,24623,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.63239,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,1006.5,53201.441,0,0,0,0,0,2581.0623 +11284,13783,24625,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.484386,5.9867435,0,0,-1033.243,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6079426,43.65,58.28,-9,-9,6.666666666666667,2,3,0,0,4,9,2,0,970,723648.06,111342.27,534375.38,0,0,3413.4019,1294.9235 +11285,13784,24626,24627,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,1,-3,0,0,-9,2,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,18.49,43.63,47.65,1.666666666666667,1,1,0,0,0,11,1,1,377.5,-119730.22,0,0,0,0,0,0 +11285,13784,24627,24626,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,1,3,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,47.65,42.51,18.49,8.333333333333334,1,1,0,0,0,11,1,1,377.5,-119730.22,0,0,0,0,0,0 +11286,13785,24628,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4870067,6.1632943,0,0,-1031.3058,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2919407,50,47,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,367,321095.22,59146.398,166431.2,28794.723,0,0,1619.2198 +11287,13786,24629,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1018.8455,0,3,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4120321,0,37.79,36.16,-9,-9,3.333333333333333,4,2,1,0,5,8,1,0,463,-44460.5,0,0,0,0,0,1213.5212 +11288,13787,24630,24631,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.6903534,8.5541563,55,7,-35.877499,0,3,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.6934521,0,0,1,1,0,5.0411801,8.6951914,46.55,43.16,43.82,40.74,6.666666666666667,2,3,0,0,8,4,4,1,1624.5,990286.38,728819.38,0,0,0,0,4613.9795 +11288,13787,24631,24630,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,11,-7,12.38646,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.82,40.74,46.55,43.16,6.666666666666667,2,3,0,0,0,4,4,1,1624.5,990286.38,728819.38,0,0,0,0,4613.9795 +11289,13788,24632,24636,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.9430456,5.7954865,0,9,-4,4.0688863,0,2,2,2021,12,1,7,10,1,1,0,6.1582441,6.1582441,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.72,51.29,58.02,44.82,8.333333333333334,1,1,0,0,3,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24633,-9,24632,24636,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-894.45581,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24634,-9,24632,24636,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.7391,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24635,-9,24632,24636,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-974.38702,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24636,24632,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,7.073782,7.3220034,0,9,4,179.6256,0,-9,-9,2021,12,0,18,18,1,0,0,7.4602041,7.4602041,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,58.02,44.82,58.72,51.29,8.333333333333334,1,1,0,0,11,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11290,13789,24637,24638,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9894104,5.3432612,48,1,-37.184422,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4413152,5.7506337,57.16,56.15,59.69,37.34,10,1,1,0,0,0,12,2,1,1723,243880.08,152742.66,109165.03,0,0,0,1616.8989 +11290,13789,24638,24637,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6455107,6.7846284,48,-1,72.838577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4476538,6.4030004,59.69,37.34,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,1723,243880.08,152742.66,109165.03,0,0,0,1616.8989 +11291,13790,24639,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.5986352,7.5021682,0,0,0,-905.55487,0,-9,-9,2021,12,0,37,37,1,0,0,6.3768654,6.3768654,0,0,0,0,0,0,0,0,0,0,0,0,0,41.74,53.74,-9,-9,5,1,1,0,0,7,2,3,0,2606,265745.78,0,0,0,0,0,882.48566 +11292,13791,24640,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8781252,9.1046734,0,0,0,-984.21967,0,2,3,2021,7,0,63,50,1,0,0,15.242778,15.242778,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,3,4,0,0,8,6,5,1,699,80944.453,57428.984,251425.14,78955.172,4852.0815,0,2705.0742 +11293,13792,24641,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-964.41559,-9,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,47.72,-9,-9,0,1,1,1,0,0,11,1,0,2006,0,0,0,0,0,0,0 +11294,13793,24642,24643,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.879199,8.7667265,0,4,0,-22.958279,0,-9,-9,2021,13,2,43,43,1,2,0,15.548052,15.548052,.05,.05,0,0,0,0,0,0,0,0,0,3.8426147,0,48.28,60.18,40.65,57.36,8.333333333333334,1,1,0,0,6,8,5,0,892.5,119450.63,95599.156,318955.25,179253,12525.469,7277.3462,3866.0044 +11294,13793,24643,24642,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.8371611,8.1576672,0,4,0,-165.40341,0,2,1,2021,13,1,46,45,1,1,0,7.8284779,7.8284779,.05,.05,0,0,0,0,0,0,0,0,0,3.2622702,0,40.65,57.36,48.28,60.18,6.666666666666667,1,1,0,0,6,8,5,0,892.5,119450.63,95599.156,318955.25,179253,12525.469,7277.3462,3866.0044 +11295,13794,24644,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3169041,8.2956753,0,0,0,-998.54779,0,-9,-9,2021,30,11,35,40,1,11,0,12.655832,12.655832,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.41,54.29,-9,-9,5,1,1,0,0,10,12,4,1,508,149843.27,-19983.191,0,0,0,0,1651.6329 +11296,13795,24645,24646,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.6136131,8.6467514,0,1,2,-45.295361,-9,-9,-9,2021,7,0,40,0,1,0,0,14.027782,14.027782,.05,.05,0,0,0,0,0,0,0,0,0,.88483077,0,41.7,59.17,55.19,54.26,8.333333333333334,1,1,0,0,11,13,5,1,1253.5,-110460.9,19002.457,0,0,7098.1865,0,3271.0786 +11296,13795,24646,24645,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.7453394,8.0038586,0,1,-2,6.5386939,0,2,2,2021,16,7,38,38,1,7,0,10.258189,10.258189,.05,.05,0,0,0,0,0,0,0,0,0,5.9597368,0,55.19,54.26,41.7,59.17,8.333333333333334,1,1,0,0,10,13,5,1,1253.5,-110460.9,19002.457,0,0,7098.1865,0,3271.0786 +11297,13796,24647,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0614023,7.9642744,0,0,0,-984.52173,-9,-9,-9,2021,11,1,20,0,1,1,0,18.472967,18.472967,.05,.05,0,0,0,0,0,0,0,0,0,3.8008876,0,42.17,32.27,-9,-9,6.666666666666667,1,1,0,0,7,9,4,0,1299,308212.66,153583.55,237915.7,0,0,-336.31937,497.39252 +11298,13797,24648,24649,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.4971795,7.5713749,32,-2,-210.58165,0,3,2,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,.3474274,0,1,1,0,7.5583096,7.0435538,57.57,44.16,55.19,54.26,8.333333333333334,2,3,0,0,12,2,5,1,729,992449.44,253236.31,941565.13,342572.41,0,0,4897.5879 +11298,13797,24649,24648,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.6491365,8.8858929,7.8142462,15,2,12.39064,0,2,-9,2021,10,1,37,38,1,1,0,13.552082,13.552082,0,0,0,0,0,0,0,0,1,1,0,1.5711913,7.6889324,55.19,54.26,57.57,44.16,8.333333333333334,1,1,0,0,11,2,5,1,729,992449.44,253236.31,941565.13,342572.41,0,0,4897.5879 +11299,13798,24650,-9,24652,24651,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.1575,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11299,13798,24651,24652,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.5483246,8.7701874,0,11,0,79.850739,0,2,2,2021,10,0,46,45,1,1,0,16.473442,16.473442,.05,.05,.05,0,0,0,0,0,0,0,0,7.5340238,0,51,56,51.14,52.08,7,1,1,0,0,10,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11299,13798,24652,24651,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.0829105,8.8138514,0,11,0,-12.639398,-9,2,2,2021,10,0,22,0,1,0,0,47.360149,47.360149,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,52.08,51,56,6.666666666666667,1,1,0,0,5,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11300,13799,24653,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,3.9503019,3.9206131,0,0,-968.54224,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.2100191,0,0,1,1,0,0,4.0521631,46.2,27.5,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1916,4933.6538,-15231.389,0,0,0,0,1905.6563 +11301,13800,24654,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.059206,7.9051642,0,0,0,-1050.3036,0,3,3,2021,24,12,36,36,1,12,0,9.1767263,9.1767263,.05,.05,0,0,0,0,0,2,0,0,0,1.1519276,0,41.51,31.19,-9,-9,5,1,1,0,0,9,9,4,1,1549,790880.06,375624.66,489336.03,16157.539,0,0,2188.1096 +11302,13801,24655,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.4685364,7.5224409,0,0,0,-933.02106,0,1,1,2021,11,1,30,30,1,1,0,9.3873825,9.3873825,.05,.05,0,0,0,0,0,2,0,0,0,0,0,24.89,58.93,-9,-9,6.666666666666667,1,1,0,0,15,4,3,1,884,55347.859,-33788.707,0,0,0,0,661.93213 +11303,13802,24656,-9,24658,24659,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-974.25592,-9,2,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24657,-9,24658,24659,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.6753,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24658,24659,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,8.4854307,8.33008,0,20,3,-38.565311,0,2,3,2021,11,0,30,28,1,0,0,14.071124,14.071124,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.49,59.1,55.3,55.6,8.333333333333334,1,1,0,0,9,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24659,24658,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.8447971,8.6377869,0,19,-3,-73.461578,0,2,3,2021,7,1,43,40,1,1,0,17.052471,17.052471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,47.49,59.1,8.333333333333334,1,1,0,0,9,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11304,13803,24660,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.35669,0,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,25.41,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,1407,-207873.63,0,0,0,2671.3503,0,600.16925 +11305,13804,24661,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.431869,7.7669091,0,0,-881.31848,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7638724,7.5422082,45.37,54.86,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,169,857147.44,184812.58,292246.19,0,0,0,879.73969 +11306,13805,24662,24664,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.1873188,8.7629814,0,20,-3,-.22128941,0,3,2,2021,5,0,42,40,1,0,0,19.879042,19.879042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,52.65,51.64,8.333333333333334,1,1,0,0,9,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13805,24663,-9,24664,24662,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.949,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13805,24664,24662,-9,-9,1,0,52,0,3,0,2,2,-9,0,3,7.0953164,7.2903824,0,20,3,-5.4561353,0,3,2,2021,3,0,8,10,1,0,0,18.721695,18.721695,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,51.02,52.22,8.333333333333334,1,1,0,0,3,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13806,24665,-9,-9,24666,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.65442,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11306,13806,24666,-9,24664,24662,1,1,27,0,3,0,2,2,-9,0,3,0,6.7121968,6.884088,0,0,-937.20306,-9,2,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3333254,0,35.39,56.7,-9,-9,5,1,1,0,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11306,13806,24667,-9,-9,24666,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.064,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11307,13807,24668,24669,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.62498,9.506732,6.3788137,39,-3,16.646044,0,3,3,2021,6,0,35,30,1,0,0,43.884739,43.884739,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8394976,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1889,3607695.5,3268496.3,275333.47,0,0,0,6706.8477 +11307,13807,24669,24668,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.2976875,8.6979456,39,3,146.45389,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1185026,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,6,5,1,1889,3607695.5,3268496.3,275333.47,0,0,0,6706.8477 +11308,13808,24670,24673,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4677486,8.6891289,0,14,3,-13.582737,0,2,3,2021,18,6,41,42,1,6,0,11.589961,11.589961,.05,.05,0,0,0,0,0,0,1,1,0,4.0105271,0,42.95,61.24,44.95,52.41,3.333333333333333,1,1,0,0,11,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24671,-9,24673,24670,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.29626,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24672,-9,24673,24670,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.8848,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24673,24670,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.246645,8.2247372,0,14,-3,-164.91359,0,2,3,2021,16,5,36,37,1,5,0,15.211074,15.211074,.05,.05,0,0,0,0,0,0,1,1,0,3.1397943,0,44.95,52.41,42.95,61.24,3.333333333333333,1,1,0,0,11,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11309,13809,24674,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.7692261,7.7576437,0,0,0,-972.88306,0,-9,-9,2021,12,0,7,48,1,0,0,50.479782,50.479782,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.04,66.23999999999999,-9,-9,6.666666666666667,1,1,0,0,2,11,4,0,386,70203.695,11955.147,0,0,1426.2186,0,1112.1959 +11310,13810,24675,24676,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,42,0,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,35.01,43.45,38.38,5,2,3,1,0,0,6,1,1,808.5,116656.46,0,147608.61,0,0,0,1253.3728 +11310,13810,24676,24675,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,42,0,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.45,38.38,41.65,35.01,6.666666666666667,2,3,0,0,0,6,1,1,808.5,116656.46,0,147608.61,0,0,0,1253.3728 +11310,13811,24677,-9,24676,24675,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1117.6891,0,3,3,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,23.34,-9,-9,1.666666666666667,2,3,0,0,0,6,1,1,462,-100480,0,0,0,0,0,1141.2474 +11310,13812,24678,-9,24676,24675,1,1,32,0,0,0,2,2,-9,1,3,7.2832437,7.2663603,0,0,0,-875.44476,0,3,3,2021,6,0,24,25,1,0,1,6.4765387,6.4765387,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,123,-101449.46,-53502.496,0,0,0,0,1327.2924 +11311,13813,24679,-9,24682,24681,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5055,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24680,-9,24682,24681,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6378,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24681,24682,-9,-9,1,1,24,0,2,0,2,2,-9,0,3,7.5840888,7.3271232,0,2,1,143.05975,0,2,3,2021,5,0,50,0,1,0,0,3.5172756,3.5172756,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24682,24681,-9,-9,1,0,23,0,2,1,2,0,0,0,4,0,0,0,2,-1,-140.11798,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,1,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11312,13814,24683,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.614255,8.2820787,0,0,0,-1065.5693,0,-9,-9,2021,12,1,50,0,1,1,0,12.956355,12.956355,.05,.05,0,0,0,0,0,76,1,1,0,0,0,62,44.54,-9,-9,8.333333333333334,1,1,0,0,1,10,5,0,1332,324534.38,150263.89,277545.66,98609.813,0,0,2744.8264 +11313,13815,24684,24688,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.101388,8.0367632,0,7,0,-15.225425,0,-9,-9,2021,11,2,30,30,1,2,0,18.456564,18.456564,.05,.05,0,0,0,0,0,0,1,1,0,3.9450448,0,43.48,60.97,44.68,56.37,8.333333333333334,1,1,0,0,8,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24685,-9,24684,24688,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.54059,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24686,-9,24684,24688,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.24365,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24687,-9,24684,24688,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.86133,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24688,24684,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.0529556,9.1487894,0,7,0,-48.06744,0,1,1,2021,12,0,45,55,1,0,0,24.413122,24.413122,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.68,56.37,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11314,13816,24689,24691,-9,-9,1,1,26,1,1,0,2,2,-9,0,2,8.1473427,8.1947384,0,2,2,-40.85405,0,1,3,2021,14,4,38,38,1,4,0,10.774973,10.774973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.06,54.56,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11314,13816,24690,-9,24691,24689,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.5354,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11314,13816,24691,24689,-9,-9,1,0,24,1,1,0,1,1,-9,0,4,8.3979979,8.2223177,0,2,-2,13.013982,0,-9,-9,2021,8,0,37,37,1,0,0,14.728467,14.728467,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,35.06,54.56,8.333333333333334,1,1,0,0,5,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11315,13817,24692,-9,24693,24694,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.41357,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11315,13817,24693,24694,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.607399,8.9252253,0,2,1,-.483289,0,-9,-9,2021,16,5,47,40,1,5,0,15.377867,15.377867,.05,.05,0,0,0,0,0,0,1,1,0,6.7660642,0,42.44,57.54,42.06,48.42,8.333333333333334,1,1,0,0,10,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11315,13817,24694,24693,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,8.3082476,8.6666994,0,2,-1,-171.00491,0,2,2,2021,16,4,37,42,1,4,0,17.232107,17.232107,.05,.05,0,0,0,0,0,0,1,1,0,3.7008793,0,42.06,48.42,42.44,57.54,8.333333333333334,1,1,0,0,11,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11316,13818,24695,24696,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.7136469,9.5396471,0,16,2,50.732723,0,3,3,2021,9,0,65,60,1,0,0,22.874195,22.874195,0,0,.05,0,0,0,0,0,0,0,0,3.5585728,0,54.1,59.11,50,55,10,1,1,0,0,8,9,5,1,741.5,571005.19,358385.19,356826.44,-2822.6812,10425.397,0,7651.4668 +11316,13818,24696,24695,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0151043,9.0172672,0,8,-2,13.841109,0,-9,-9,2021,10,0,40,60,1,1,0,32.291573,32.291573,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,9,5,1,741.5,571005.19,358385.19,356826.44,-2822.6812,10425.397,0,7651.4668 +11317,13819,24697,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.349124,8.4741478,0,0,0,-917.16003,0,2,1,2021,21,9,40,40,1,9,0,15.389626,15.389626,.05,.05,0,0,0,0,0,2,0,0,0,5.5077324,0,34.02,51.85,-9,-9,3.333333333333333,1,1,0,0,13,6,5,1,134,385237.78,48622.855,290691.56,-818.58087,6557.6572,0,1799.9148 +11317,13820,24698,-9,24697,-9,1,0,19,0,0,0,2,2,0,0,3,0,5.7399011,6.1569557,0,0,-928.00568,-9,1,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8547144,0,22.95,57.02,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,118,77162.789,-5586.7388,0,0,0,-213.74828,2331.2336 +11318,13821,24699,24700,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8209357,6.2446103,38,3,-49.643291,0,2,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.072957,6.1591897,57.09,43.99,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,424,744854.5,671904.63,167433.44,0,0,0,2844.0698 +11318,13821,24700,24699,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6875114,7.5819845,8,-3,-80.342651,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5433249,7.8914094,57.33,53.46,57.09,43.99,8.333333333333334,1,1,0,0,0,2,3,1,424,744854.5,671904.63,167433.44,0,0,0,2844.0698 +11319,13822,24701,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1026.0771,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,56.74,33.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,296,214914.92,0,0,0,0,0,722.20776 +11320,13823,24702,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.1629448,9.0695629,0,0,0,-935.03442,0,1,1,2021,12,0,40,40,1,0,0,21.785818,21.785818,.05,.05,0,0,0,0,0,0,0,0,0,1.7454948,0,35.2,48.71,-9,-9,5,2,3,0,0,10,6,5,0,456,92852.063,9206.3301,0,0,0,0,3250.5894 +11321,13824,24703,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1059.6201,0,-9,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,25.5,44.17,-9,-9,3.333333333333333,1,1,1,1,0,9,1,0,305,102604.47,0,0,0,0,0,0 +11322,13825,24704,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.808445,8.5361023,0,0,-1006.85,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8328848,8.8996944,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,245,1756100.6,1291005.1,259316.92,0,0,0,4065.791 +11323,13826,24705,24706,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.9325628,8.2756109,0,2,-2,-46.66153,0,2,2,2021,12,0,44,43,1,0,0,6.9628873,6.9628873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.61,56.25,48.77,57.64,8.333333333333334,1,1,0,0,12,2,5,1,1696.5,311208.28,75405.961,240570.19,0,5371.543,0,2312.3267 +11323,13826,24706,24705,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.4343128,8.1240215,0,2,2,-50.023701,-9,-9,-9,2021,13,1,40,0,1,1,0,11.182497,11.182497,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.77,57.64,33.61,56.25,8.333333333333334,1,1,0,0,1,2,5,1,1696.5,311208.28,75405.961,240570.19,0,5371.543,0,2312.3267 +11324,13827,24707,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.1886249,6.7823915,0,0,0,-924.79175,-9,-9,-9,2021,8,0,40,0,1,0,0,3.472729,3.472729,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,337,173304.06,-39575.457,81768.727,16182.45,-1710.1088,285.6348,877.26587 +11325,13828,24708,-9,-9,24709,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.2509,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,910,82421.531,18001.313,0,0,0,0,1145.8181 +11325,13828,24709,-9,24710,24711,1,1,36,0,1,0,2,2,-9,0,3,8.20928,8.2034569,0,0,0,-1018.4073,0,3,3,2021,12,0,45,45,1,0,1,11.648726,11.648726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.68,52.15,-9,-9,1.666666666666667,1,1,0,1,8,11,4,1,910,82421.531,18001.313,0,0,0,0,1145.8181 +11325,13829,24710,24711,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,8.1643257,8.2015123,0,4,0,74.980598,0,-9,-9,2021,7,0,40,39,1,0,0,11.430293,11.430293,0,0,0,0,0,0,0,0,1,1,0,0,0,55.84,41.92,54.69,57.47,1.666666666666667,1,1,0,0,10,11,5,1,1117.5,665901.94,579748.38,0,0,7372.6543,1441.499,4155.7744 +11325,13829,24711,24710,-9,-9,1,1,57,0,1,0,3,3,-9,0,5,8.435338,8.2738791,0,4,0,45.026207,0,-9,-9,2021,8,0,45,45,1,0,0,11.136518,11.136518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,55.84,41.92,10,1,1,0,0,7,11,5,1,1117.5,665901.94,579748.38,0,0,7372.6543,1441.499,4155.7744 +11326,13830,24712,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1116.4192,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,10.82,-9,-9,5,1,1,0,0,0,9,1,0,1566,-82492.352,0,0,0,0,0,1225.3691 +11327,13831,24713,24714,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7610145,7.3783937,0,11,-5,-150.82825,0,3,3,2021,12,0,28,28,1,0,0,9.2732954,9.2732954,0,0,0,0,0,0,0,0,1,1,0,5.191627,0,52.22,46,57.06,57.76,8.333333333333334,1,1,0,0,12,11,3,1,909.5,495716.25,485191.25,67132.992,21370.133,0,0,2362.2385 +11327,13831,24714,24713,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.4044604,7.3417864,11,5,-125.55097,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3396502,57.06,57.76,52.22,46,10,1,1,0,0,8,11,3,1,909.5,495716.25,485191.25,67132.992,21370.133,0,0,2362.2385 +11327,13832,24715,-9,24713,24714,1,1,26,0,0,0,1,1,-9,0,5,7.9519033,7.9949198,0,0,0,-978.1333,-9,2,2,2021,5,1,36,0,1,1,1,9.4968338,9.4968338,.05,.05,0,0,0,0,0,0,1,1,0,1.6704247,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,11,4,1,184,92657.523,67196.219,0,0,0,0,1643.7712 +11328,13833,24716,-9,24718,24719,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.43402,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24717,-9,24718,24719,1,0,12,0,2,1,3,0,-9,0,1,0,0,0,0,0,-994.73901,-9,2,1,2021,22,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,4,1,1,-9,0,0,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24718,24719,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.4456739,8.0618715,0,19,1,84.587463,0,2,2,2021,17,5,39,39,1,5,0,10.737152,10.737152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,46.39,60.99,8.333333333333334,1,1,0,0,14,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24719,24718,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.6347027,8.6855145,0,19,-1,89.373665,0,2,2,2021,12,0,37,40,1,0,0,22.522474,22.522474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,38.8,60.42,8.333333333333334,1,1,0,0,14,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11329,13834,24720,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1062.2266,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.4453342,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,6971,21694.527,0,0,0,0,0,1044.0381 +11330,13835,24721,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.9753675,5.8702826,0,0,-1037.6217,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4553928,5.9767122,60.3,43.72,-9,-9,10,1,1,0,0,0,12,2,1,914,124772.73,25129.375,0,0,0,0,985.37726 +11331,13836,24722,24723,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,5.3392224,5.2272558,39,-6,-9.7116213,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9975677,5.5345988,57.06,57.76,65.68000000000001,44.28,0,1,1,0,0,4,11,2,1,481.5,1042213.9,693989.5,238826.2,0,0,0,1262.2498 +11331,13836,24723,24722,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,7.2019644,6.6908832,39,6,-128.81104,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9617882,6.9087892,65.68000000000001,44.28,57.06,57.76,10,1,1,0,0,7,11,2,1,481.5,1042213.9,693989.5,238826.2,0,0,0,1262.2498 +11332,13837,24724,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.0726366,7.9755077,0,0,-1090.9707,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1782579,7.7751493,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,244,685757.5,0,175049.95,0,0,0,1687.6194 +11333,13838,24725,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4775681,6.5958443,0,0,-886.50183,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3643274,6.56494,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,4421,353085.28,-93276.008,201595.84,22095.799,-650.31567,979.44067,303.0249 +11334,13839,24726,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,0,0,0,0,-918.67529,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.91,29.87,-9,-9,6.666666666666667,2,3,0,1,10,8,1,0,237,1811790.5,105907.6,1669391.3,0,0,0,1065.9647 +11334,13840,24727,-9,24726,-9,1,0,30,0,0,0,1,1,-9,0,5,8.2817755,8.0422888,0,0,0,-997.66736,0,2,2,2021,7,0,40,40,1,0,0,10.484666,10.484666,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,8,8,4,0,1040,65512.063,-55361.809,0,0,0,0,1383.8965 +11335,13841,24728,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,0,0,-912.55231,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2286329,0,55.26,55.85,-9,-9,10,1,1,0,0,0,9,1,1,638,-204695.56,0,0,0,0,0,1206.5435 +11336,13842,24729,-9,24732,24733,1,0,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.4775,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24730,-9,24732,24733,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42145,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24731,-9,24732,24733,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.6783,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24732,24733,-9,-9,1,0,38,3,3,0,2,2,-9,0,4,8.731576,8.7979584,0,4,4,-15.210075,0,3,2,2021,18,6,45,39,1,6,0,15.788967,15.788967,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.04,55.86,6.666666666666667,1,1,0,0,7,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24733,24732,-9,-9,1,1,34,3,3,0,2,2,-9,0,3,8.2402124,8.6601229,0,4,-4,-30.998646,0,-9,-9,2021,7,0,38,38,1,0,0,13.324747,13.324747,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.59,60.85,8.333333333333334,1,1,0,0,7,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11337,13843,24734,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,7.9063177,8.0609932,0,0,0,-1128.7838,-9,3,2,2021,16,4,41,0,1,4,1,7.2436767,7.2436767,.05,.05,0,0,0,0,0,7,1,1,0,0,0,25.99,63.8,-9,-9,5,2,3,0,0,6,4,4,1,1932,-31731.506,-7196.4741,213077.16,108737.77,0,2072.1294,1061.9338 +11338,13844,24735,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.4953647,4.7018595,0,0,-998.39655,0,3,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,7.7554703,0,42,1,1,0,0,4.2313857,33.61,30.61,-9,-9,1.666666666666667,1,1,0,1,0,12,2,1,435,-50504.137,102218.23,0,0,0,0,956.2843 +11339,13845,24736,24737,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.1526408,6.2314401,12,-4,-115.74186,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9119339,55.15,50.21,60.03,42.66,8.333333333333334,1,1,0,0,3,12,2,1,934,180785.31,185400.91,85104.063,0,0,-159.12859,2138.2217 +11339,13845,24737,24736,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.060905,6.8498693,12,4,59.798767,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.137023,60.03,42.66,55.15,50.21,10,1,1,0,0,0,12,2,1,934,180785.31,185400.91,85104.063,0,0,-159.12859,2138.2217 +11340,13846,24738,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.0587,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.26,45.23,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,211,114133.41,-15191.417,0,0,0,0,1043.6832 +11341,13847,24739,24740,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,0,0,0,2,-12,0,-9,-9,-9,2021,2,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,61.94,29.96,48,51,10,2,3,0,1,0,11,1,0,824.5,82433.391,0,0,0,0,0,860.17548 +11341,13847,24740,24739,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,0,0,0,2,12,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,51,61.94,29.96,8.333333333333334,1,1,0,0,4,11,1,0,824.5,82433.391,0,0,0,0,0,860.17548 +11342,13848,24741,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.5913458,8.4287472,0,0,0,-1110.2467,0,2,2,2021,18,6,48,42,1,6,0,13.783592,13.783592,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,14,7,5,1,1174,611112.38,-4546.7788,647875.63,252958.3,12534.859,0,3259.1299 +11343,13849,24742,24744,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.3534803,9.1722126,0,2,1,7.9943705,0,2,2,2021,12,0,50,50,1,0,0,26.852337,26.852337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.08,34.29,54.1,59.11,8.333333333333334,1,1,0,0,12,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24743,-9,24744,24742,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2899,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24744,24742,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.7795587,7.4537687,0,2,-1,4.6274738,0,-9,-9,2021,7,0,20,22,1,0,0,11.664478,11.664478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,63.08,34.29,10,1,1,0,0,12,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24745,-9,24744,24742,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05811,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11344,13850,24746,24750,-9,-9,1,0,38,0,4,0,1,1,-9,0,4,0,0,0,17,-6,160.02394,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,48.69,41.71,59.61,8.333333333333334,2,3,0,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24747,-9,24746,24750,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-883.07617,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24748,-9,24746,24750,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.75031,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24749,-9,24746,24750,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-861.06342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24750,24746,-9,-9,1,1,44,0,4,0,1,1,-9,0,4,8.523428,8.6352768,0,17,6,-103.15416,0,3,2,2021,13,2,50,50,1,2,0,9.9299517,9.9299517,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.71,59.61,38.05,48.69,8.333333333333334,2,3,0,0,10,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24751,-9,24746,24750,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-902.47461,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11345,13851,24752,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,7.1159577,7.2046456,5.3024521,0,0,-1080.5762,0,2,2,2021,6,0,12,12,1,0,0,13.42475,13.42475,0,0,0,0,0,0,0,2,1,1,0,5.8628201,5.5421762,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,448,741828.44,301939.66,282597.84,0,0,0,427.17935 +11346,13852,24753,24754,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.6895733,8.5027647,41,-3,-84.336891,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,8.7977018,51.83,57.2,46.16,58.62,8.333333333333334,1,1,0,0,5,7,4,1,1133.5,472452.31,47294.445,385431.13,0,0,0,3794.7661 +11346,13852,24754,24753,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2955317,6.9552574,41,3,-50.190731,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.249382,46.16,58.62,51.83,57.2,6.666666666666667,1,1,0,0,11,7,4,1,1133.5,472452.31,47294.445,385431.13,0,0,0,3794.7661 +11347,13853,24755,24756,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3687649,8.649909,34,5,.96930099,0,3,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.5769119,8.26299,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,717.5,1095066.8,273091.69,395635.03,46888.781,0,0,8967.4316 +11347,13853,24756,24755,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,9.1452475,8.8847408,0,34,-5,71.013069,0,2,1,2021,12,0,24,12,1,0,0,36.147278,36.147278,.05,.05,0,0,0,0,0,0,0,0,0,8.6992168,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,14,7,5,1,717.5,1095066.8,273091.69,395635.03,46888.781,0,0,8967.4316 +11348,13854,24757,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.3529501,8.2831106,0,0,0,-1160.2509,0,2,2,2021,7,0,37,40,1,0,0,14.872409,14.872409,0,0,0,0,0,0,0,0,0,0,0,0,0,52.83,56.93,-9,-9,6.666666666666667,1,1,0,0,4,13,4,0,404,150958.66,-26486.105,135318.75,89347.195,7092.0073,0,2015.2637 +11349,13855,24758,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.348918,8.2856207,0,0,0,-1046.8276,0,3,3,2021,27,12,37,40,1,12,0,12.816252,12.816252,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.46,58.73,-9,-9,5,1,1,0,0,7,11,4,1,437,644193.19,172635.98,140571.8,0,0,0,1455.1029 +11349,13856,24759,-9,24758,-9,1,1,24,0,0,0,2,2,-9,0,3,7.1039486,7.0886011,0,0,0,-968.7533,0,2,-9,2021,20,7,17,0,1,7,1,7.3263583,7.3263583,0,0,0,0,0,0,0,0,0,0,0,0,0,28.97,59.76,-9,-9,3.333333333333333,1,1,0,0,1,11,2,1,398,27711.227,0,0,0,0,0,-235.65741 +11350,13857,24760,-9,24761,24763,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.8577,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24761,24763,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,7.9370923,8.226429,0,12,-3,-70.253685,0,1,2,2021,7,0,28,30,1,0,0,9.9251013,9.9251013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.06,57.76,10,1,1,0,0,11,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24762,-9,24761,24763,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.741,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24763,24761,-9,-9,1,1,38,2,2,0,1,1,-9,0,5,9.1636906,9.0375414,0,12,3,-29.128338,0,-9,-9,2021,8,1,49,45,1,1,0,26.178022,26.178022,.05,.05,0,0,0,0,0,0,0,0,0,4.4918442,0,57.06,57.76,51.73,58.82,6.666666666666667,1,1,0,0,15,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11351,13858,24764,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.3717761,6.952004,0,0,-1029.8474,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1784883,7.571466,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,160,34286.074,45440.926,0,0,0,0,902.59149 +11351,13859,24765,-9,24764,-9,1,1,28,0,0,0,2,2,-9,0,5,8.3010416,8.1022921,0,0,0,-981.06775,0,2,-9,2021,10,0,50,50,1,0,0,5.8150282,5.8150282,0,0,0,0,0,0,0,0,0,0,0,7.2340631,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,303,128111.13,0,0,0,0,0,1910.6893 +11352,13860,24766,24767,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.6614218,8.7541838,7.8362017,20,1,-95.536713,-9,1,1,2021,6,0,15,0,1,0,0,21.194479,21.194479,.05,.05,0,0,0,0,0,0,0,0,0,2.3079345,7.832613,50.23,52.59,52.24,50.75,10,1,1,0,0,13,9,5,1,486.5,1881889.9,981214.44,421731.31,0,32109.941,0,5335.8809 +11352,13860,24767,24766,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,9.1308565,9.0144157,0,20,-1,-31.509535,-9,2,2,2021,13,3,49,0,1,3,0,18.359426,18.359426,0,0,0,0,0,0,0,0,0,0,0,.55174047,0,52.24,50.75,50.23,52.59,10,1,1,0,0,12,9,5,1,486.5,1881889.9,981214.44,421731.31,0,32109.941,0,5335.8809 +11353,13861,24768,24769,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.3612103,5.4922299,7,10,12.297856,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1564081,5.3267736,51.24,58.84,64.08,41.98,8.333333333333334,1,1,0,0,0,10,3,0,253,944270.38,28974.359,356755.13,0,0,3908.2737,1332.5659 +11353,13861,24769,24768,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.2529202,7.5005889,6.4917684,7,-10,-19.834204,0,2,2,2021,8,0,22,25,1,0,0,6.8040838,6.8040838,0,0,0,0,0,0,0,0,1,1,0,0,6.4605055,64.08,41.98,51.24,58.84,8.333333333333334,1,1,0,0,11,10,3,0,253,944270.38,28974.359,356755.13,0,0,3908.2737,1332.5659 +11354,13862,24770,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8146815,7.6067319,0,0,-1045.4786,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0707426,7.238811,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,90,486209.09,221423.47,0,0,0,0,1530.0743 +11355,13863,24771,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1054.3015,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,.039572701,0,21.472874,0,1,1,0,9.7275915,0,45.44,33.28,-9,-9,5,1,1,0,0,0,9,1,0,872,-43573.383,0,0,0,0,0,12408.585 +11356,13864,24772,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1103.6536,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.937017,0,0,1,1,0,0,0,52,47,-9,-9,7,1,1,0,0,0,9,1,1,864,2246.562,0,0,0,0,0,1355.1528 +11356,13865,24773,-9,-9,24772,1,1,28,0,0,0,2,2,-9,0,4,8.0400009,8.2814436,0,0,0,-1053.308,0,-9,2,2021,9,0,37,44,1,0,0,10.264433,10.264433,0,0,0,0,0,0,0,2,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,5301,168151.77,0,0,0,0,0,1602.5919 +11357,13866,24774,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.896615,6.4909716,0,0,0,-1052.8403,0,3,3,2021,20,7,16,0,1,7,0,5.7248816,5.7248816,0,0,0,0,0,0,0,0,1,0,1,0,0,42.49,14.43,-9,-9,3.333333333333333,1,1,0,1,9,9,2,1,2327,335306.28,18895.189,224723.8,0,15828.164,0,510.48126 +11358,13867,24775,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.7063994,6.7379732,0,0,-1007.2521,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1615572,6.3798752,38.8,60.42,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,442,329301,173363.31,294547.88,0,0,0,701.27942 +11359,13868,24776,-9,24777,24781,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.86383,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24777,24781,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.4482546,8.3142405,0,6,1,118.23479,0,2,2,2021,4,0,57,55,1,0,0,10.18094,10.18094,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.56,49.35,36.13,56.64,1.666666666666667,1,1,0,0,7,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24778,-9,24777,24781,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.5611,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24779,-9,24777,24781,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7551,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.69,53.18,-9,-9,10,1,1,0,0,1,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24780,-9,24777,24781,1,0,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-1027.1024,-9,1,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.018573003,0,44.11,55.31,-9,-9,6.666666666666667,1,1,0,0,3,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24781,24777,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.7539968,8.9837694,0,6,-1,-69.170929,0,3,1,2021,14,3,42,47,1,3,0,21.990772,21.990772,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.13,56.64,57.56,49.35,3.333333333333333,1,1,0,1,7,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13869,24782,-9,24777,24781,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1050.4674,1,1,2,2021,13,4,0,8,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,-9,-9,5,1,1,0,0,6,6,1,1,449,-11861.606,0,0,0,0,-164.51466,-505.3891 +11360,13870,24783,-9,24786,24787,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.89624,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24784,-9,24786,24787,1,1,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-972.50354,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,1,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24785,-9,24786,24787,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9535,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24786,24787,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.9473543,8.9635963,0,7,-8,149.15263,0,1,-9,2021,10,0,38,40,1,1,0,23.55196,23.55196,0,0,0,0,0,0,0,2,1,1,0,0,0,50,54,54,54,8,1,1,0,1,9,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24787,24786,-9,-9,1,1,56,0,2,0,2,2,-9,0,4,8.858161,8.8547573,0,7,8,86.288376,0,2,2,2021,9,0,50,50,1,0,0,13.967508,13.967508,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,54,54,50,54,8,1,1,0,0,10,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11361,13871,24788,24789,-9,-9,1,0,30,0,0,0,3,3,-9,0,3,8.5219374,8.3043623,0,5,-2,70.397789,0,-9,-9,2021,20,7,37,40,1,7,0,13.934406,13.934406,.05,.05,0,0,0,0,0,0,0,0,0,1.0546036,0,41.99,41.56,47.15,55.39,3.333333333333333,1,1,0,0,4,2,4,0,2103,-149147.66,55651.508,115117.7,37303.84,63002.305,0,3002.8979 +11361,13871,24789,24788,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.1347198,8.0858049,0,5,2,3.9616833,0,-9,-9,2021,5,0,35,40,1,0,0,9.4313641,9.4313641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,41.99,41.56,6.666666666666667,1,1,0,0,4,2,4,0,2103,-149147.66,55651.508,115117.7,37303.84,63002.305,0,3002.8979 +11362,13872,24790,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.7279,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.38,20.94,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,395,81019.414,0,0,0,0,0,1267.8944 +11363,13873,24791,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.718915,7.5332332,0,0,0,-994.14319,0,3,3,2021,22,10,37,28,1,10,0,7.8292861,7.8292861,0,0,0,0,0,0,0,0,0,0,0,0,0,33.91,59.03,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,768,670858.06,417419.84,176795.09,0,0,0,1041.187 +11363,13874,24792,-9,24791,-9,1,0,20,0,0,0,2,2,-9,0,4,7.23175,7.6569529,0,0,0,-1004.5838,0,2,-9,2021,11,0,36,38,1,2,1,4.9857364,4.9857364,0,0,0,0,0,0,.99560553,0,0,0,0,1.3036599,0,46,58,-9,-9,7,1,1,0,0,1,11,3,0,1018,136510.95,0,0,0,0,0,862.82336 +11364,13875,24793,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.6514893,7.6944404,0,0,0,-1113.131,-9,2,-9,2021,6,0,37,0,1,0,0,7.889236,7.889236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.23,38.89,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,1003,17968.83,-29217.469,0,0,0,0,911.39508 +11365,13876,24794,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.2073035,7.2780013,0,0,-1027.6456,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5692582,7.3463092,57.06,57.76,-9,-9,10,1,1,0,0,5,4,3,1,1376,976312.06,468534.06,427321.75,0,0,0,1172.1218 +11366,13877,24795,-9,24797,24796,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.0579,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11366,13877,24796,24797,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,9.0648661,8.8035402,0,9,3,-122.55606,0,-9,-9,2021,7,0,45,40,1,0,0,21.745031,21.745031,.05,.05,0,0,0,0,0,0,0,0,0,1.5093207,0,59.43,58.05,45.91,59.89,10,1,1,0,0,11,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11366,13877,24797,24796,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,9.0974989,9.0477085,0,9,-3,-161.60378,0,1,1,2021,5,0,35,47,1,0,0,28.779264,28.779264,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,59.43,58.05,8.333333333333334,2,3,0,0,8,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11367,13878,24798,24799,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.5334973,5.3963084,12,1,-24.579414,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5785255,60.12,54.8,61.83,49.95,8.333333333333334,1,1,0,0,6,1,3,1,886.5,683501.31,346741.94,177357.91,0,0,0,2587.4077 +11367,13878,24799,24798,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.3914332,7.5503001,12,-1,40.527199,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1174715,7.8994961,61.83,49.95,60.12,54.8,8.333333333333334,1,1,0,0,6,1,3,1,886.5,683501.31,346741.94,177357.91,0,0,0,2587.4077 +11368,13879,24800,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.1602,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.9416084,0,25.137199,0,1,1,0,7.5565181,0,61.45,24.58,-9,-9,5,1,1,0,0,0,9,1,0,555,-43581.582,0,0,0,0,0,2329.8782 +11369,13880,24801,24802,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.2656374,9.4864616,0,9,1,119.6718,0,3,2,2021,7,0,57,53,1,0,0,32.849277,32.849277,.05,.05,.05,0,0,0,.15022224,2,0,0,0,4.2289219,0,60.3,46.58,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,320,1044058.6,508880.84,479356.91,0,10762.855,0,5192.5732 +11369,13880,24802,24801,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.1448517,8.3726683,0,9,-1,-27.881838,0,1,1,2021,6,0,36,36,1,0,0,17.116463,17.116463,0,0,0,0,0,0,0,0,0,0,0,2.9866149,0,57.06,57.76,60.3,46.58,8.333333333333334,1,1,0,0,10,9,5,1,320,1044058.6,508880.84,479356.91,0,10762.855,0,5192.5732 +11370,13881,24803,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.0895762,6.3020496,0,0,-1131.6062,0,3,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,2.78162,0,0,1,1,0,0,5.8739552,53.48,31.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,1889,172539.88,77376.031,0,0,-2146.261,0,1282.6249 +11371,13882,24804,24805,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,4,-7,0,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,17.074358,0,0,1,1,0,0,0,50.91,36.18,56.76,25.26,8.333333333333334,1,1,0,0,0,11,1,0,984.5,27645.781,60597.266,0,0,0,0,1499.601 +11371,13882,24805,24804,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,0,0,4,7,0,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.4046578,0,0,1,1,0,0,0,56.76,25.26,50.91,36.18,8.333333333333334,1,1,0,0,0,11,1,0,984.5,27645.781,60597.266,0,0,0,0,1499.601 +11372,13883,24806,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.7090559,8.793355,5.3298941,0,0,-1014.2338,0,3,2,2021,8,0,55,50,1,0,0,16.632839,16.632839,.05,.05,.05,0,0,0,0,0,1,1,0,5.7391291,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,287.5,534035.88,209870.56,332597.06,121012.97,12784.203,0,2862.8291 +11372,13883,24807,-9,24806,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-858.27448,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,5,1,287.5,534035.88,209870.56,332597.06,121012.97,12784.203,0,2862.8291 +11373,13884,24808,24809,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9362736,8.8342381,0,9,-1,-65.528831,0,1,2,2021,6,0,40,45,1,0,0,21.93306,21.93306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,32.72,53.51,6.666666666666667,4,2,0,0,11,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11373,13884,24809,24808,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.4873972,8.3705606,0,9,1,-33.217747,0,1,2,2021,23,7,60,80,1,7,0,9.1032915,9.1032915,0,0,0,0,0,0,0,0,1,1,0,8.759181,0,32.72,53.51,55.36,51.57,3.333333333333333,4,2,0,0,11,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11373,13884,24810,-9,24809,24808,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5018,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11374,13885,24811,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7497153,7.8146958,0,0,0,-902.83252,0,2,3,2021,19,7,20,22,1,7,0,16.929594,16.929594,.05,.05,0,0,0,0,0,27,0,0,0,0,0,46.17,51.53,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,750,202564.98,23586.826,0,0,0,4602.3428,816.26294 +11375,13886,24812,-9,24813,24814,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-926.22815,-9,2,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.16,37.04,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13886,24813,24814,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8343472,7.6032805,0,21,-14,-40.551079,0,3,2,2021,12,4,30,31,1,4,0,8.5974579,8.5974579,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,28.25,55.98,8.333333333333334,1,1,0,0,7,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13886,24814,24813,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3852854,8.3015919,0,21,14,-127.66338,0,2,2,2021,19,7,43,42,1,7,0,13.965607,13.965607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.25,55.98,40.4,58.62,6.666666666666667,1,1,0,0,9,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13887,24815,-9,24813,24814,1,1,18,0,0,0,2,2,-9,0,4,7.777348,8.2402744,0,0,0,-1057.7076,0,2,2,2021,3,0,34,0,1,0,1,7.8311682,7.8311682,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,102,28200.07,0,0,0,0,0,1274.4862 +11376,13888,24816,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9725637,7.9448848,0,0,0,-1025.8195,0,2,3,2021,11,0,45,80,1,0,0,9.2599373,9.2599373,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,326,-25455.207,0,0,0,0,0,1347.0054 +11377,13889,24817,24818,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,40,-3,-94.368698,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,49.91,53.94,22.55,6.666666666666667,1,1,0,0,6,12,2,1,429,346584.56,221573.36,0,0,20035.176,0,1527.4326 +11377,13889,24818,24817,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,6.0833716,5.8364468,29,3,-33.857006,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8766685,53.94,22.55,49.71,49.91,5,1,1,0,0,7,12,2,1,429,346584.56,221573.36,0,0,20035.176,0,1527.4326 +11378,13890,24819,-9,24820,24821,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.274,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13890,24820,24821,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,7,0,0,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,28.55,50.85,52,56,5,1,1,0,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13890,24821,24820,-9,-9,1,1,44,0,1,0,2,2,-9,1,4,0,0,0,7,0,0,-9,2,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,28.55,50.85,8,1,1,0,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13891,24822,-9,24820,24821,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-931.46509,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.74010181,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,983,181643.17,0,0,0,0,0,620.5387 +11379,13892,24823,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1004.2394,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,14.31,34.39,-9,-9,0,1,1,0,1,0,9,2,0,534,189866.14,0,210236.69,0,0,0,962.77856 +11379,13893,24824,-9,24825,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.3182,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,2,0,419,75369.859,0,0,0,11.239136,351.83429,446.18225 +11379,13893,24825,-9,24823,-9,1,0,23,0,1,0,3,3,-9,0,3,6.7018914,6.687542,0,0,0,-1111.4398,-9,2,-9,2021,15,5,12,0,1,5,1,7.5879412,7.5879412,0,0,0,0,0,0,0,0,1,0,1,0,0,45.72,47.97,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,419,75369.859,0,0,0,11.239136,351.83429,446.18225 +11379,13894,24826,-9,24823,-9,1,0,21,0,1,0,3,3,-9,0,3,0,0,0,0,0,-956.85638,0,2,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.05,40.57,-9,-9,5,4,2,1,0,3,9,1,0,872,200601.91,0,0,0,0,0,-141.91678 +11379,13895,24827,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.1106405,7.9705586,0,0,0,-892.61725,0,-9,-9,2021,12,0,45,0,1,0,0,6.999681,6.999681,.05,.05,0,0,0,0,0,2,1,0,1,0,0,43.76,50.48,-9,-9,5,3,4,0,0,1,9,3,0,179,197792.83,104507.77,0,0,552.17993,409.53198,700.77899 +11380,13896,24828,24829,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.999455,8.2731667,40,4,-37.767616,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3676906,8.3656244,59.53,56.44,57.06,57.76,10,1,1,0,0,4,2,4,1,1703.5,1272834,548523.81,262944.56,0,0,0,3024.6865 +11380,13896,24829,24828,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.3455048,7.4532175,7.3740149,40,-4,64.139969,0,3,3,2021,6,0,3,4,1,0,0,20.622553,20.622553,0,0,0,0,0,0,0,0,0,0,0,3.2688193,7.3137827,57.06,57.76,59.53,56.44,10,1,1,0,0,7,2,4,1,1703.5,1272834,548523.81,262944.56,0,0,0,3024.6865 +11381,13897,24830,24831,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7460594,6.6410413,0,6,-5,119.59236,0,-9,-9,2021,10,0,10,8,1,1,0,9.8452978,9.8452978,0,0,0,0,0,0,0,0,0,0,0,6.8417945,0,53,52,60.03,45.37,8,1,1,0,0,1,9,5,1,539.5,2008639,1378104.4,989236.38,223394.03,0,0,5832.7275 +11381,13897,24831,24830,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.2174625,9.3312845,6.0364246,39,5,-10.355265,0,3,3,2021,9,1,30,30,1,1,0,41.755703,41.755703,.05,.05,0,0,0,0,0,0,0,0,0,6.2824216,6.6130877,60.03,45.37,53,52,6.666666666666667,1,1,0,0,8,9,5,1,539.5,2008639,1378104.4,989236.38,223394.03,0,0,5832.7275 +11381,13898,24832,-9,24830,24831,1,0,33,0,0,0,2,2,-9,0,4,8.7371473,9.0655174,0,0,0,-1092.0199,-9,2,2,2021,11,0,35,0,1,2,1,21.146902,21.146902,.05,.05,0,0,0,0,0,0,0,0,0,3.1938539,0,49,56,-9,-9,7,1,1,0,0,1,9,5,1,1230,58135.313,-75928.188,0,0,-2926.1394,0,2267.8657 +11382,13899,24833,24834,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,.66189414,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2053435,0,51,46,54,46,8,1,1,0,0,9,7,2,1,684,315831.66,142995.89,231621.19,0,0,0,1937.2776 +11382,13899,24834,24833,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6817608,6.7032976,56,4,-103.84709,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9703627,6.7407875,54,46,51,46,8,1,1,0,0,0,7,2,1,684,315831.66,142995.89,231621.19,0,0,0,1937.2776 +11383,13900,24835,24836,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.570713,8.756115,0,17,-1,-148.05385,0,2,1,2021,8,0,44,43,1,0,0,15.176125,15.176125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.24,58.84,6.666666666666667,1,1,0,0,8,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11383,13900,24836,24835,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.4924192,8.1668253,0,17,1,-128.94019,0,2,2,2021,9,0,40,40,1,0,0,11.601642,11.601642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,7,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11383,13900,24837,-9,24836,24835,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.63403,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11384,13901,24838,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,3.1071918,7.358243,7.2242293,0,0,-956.13495,0,3,3,2021,10,0,37,30,1,0,0,.061677814,.061677814,0,0,0,0,2.3969216,0,10.293162,0,1,1,0,8.3264141,7.0767655,55.39,40.82,-9,-9,10,1,1,0,0,9,9,3,1,903,651989.69,108151.8,294852.75,0,0,0,1343.3236 +11385,13902,24839,24840,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.7384324,7.5315332,39,1,57.925858,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9714718,7.7639141,57.16,56.15,51.79,55.99,10,1,1,0,0,0,4,4,1,441.5,1405571,1173857,304643.63,114456.94,0,0,3927.7251 +11385,13902,24840,24839,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.673717,7.6843481,39,-1,-4.2679758,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6624002,7.5150242,51.79,55.99,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,441.5,1405571,1173857,304643.63,114456.94,0,0,3927.7251 +11386,13903,24841,-9,24842,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.88037,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,0,582.5,-40996.82,0,0,0,0,0,2032.2473 +11386,13903,24842,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,8.0050468,8.1364918,0,0,0,-1010.2463,0,2,-9,2021,6,0,20,18,1,0,0,18.809004,18.809004,0,0,0,0,0,0,0,0,1,1,0,0,0,60.94,43.68,-9,-9,8.333333333333334,1,1,0,0,8,7,3,0,582.5,-40996.82,0,0,0,0,0,2032.2473 +11387,13904,24843,24844,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,4,3,31.786242,0,-9,-9,2021,10,1,0,12,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.2074409,0,50.05,55.41,54.2,57.49,10,1,1,0,0,4,7,5,1,1408.5,1733067.4,577023.88,758683.25,0,0,0,12597.545 +11387,13904,24844,24843,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.5147257,9.608078,0,4,-3,-40.804615,0,2,2,2021,7,0,40,40,1,0,0,50.845493,50.845493,.05,.05,0,0,0,0,0,0,0,0,0,7.7337327,0,54.2,57.49,50.05,55.41,8.333333333333334,1,1,0,0,10,7,5,1,1408.5,1733067.4,577023.88,758683.25,0,0,0,12597.545 +11388,13905,24845,24846,-9,-9,1,0,51,0,3,0,2,2,-9,0,4,0,0,0,23,2,-107.39828,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13905,24846,24845,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.1394196,7.8972793,0,23,-2,79.291756,0,-9,-9,2021,10,0,40,34,1,0,0,8.6961002,8.6961002,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13905,24847,-9,24845,24846,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1006.4246,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.01,55.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13906,24848,-9,24845,24846,1,1,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-928.11102,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,403,0,0,0,0,0,0,0 +11389,13907,24849,24850,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.9772873,7.9570036,52,2,-140.80843,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8891077,7.8630962,58.07,46.29,51.91,35.96,10,1,1,0,0,0,7,3,1,1300.5,3066885,475810,2573482.5,0,0,0,2545.4094 +11389,13907,24850,24849,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.1843395,6.8559518,52,-2,-135.91745,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9847975,6.393961,51.91,35.96,58.07,46.29,8.333333333333334,1,1,0,0,0,7,3,1,1300.5,3066885,475810,2573482.5,0,0,0,2545.4094 +11390,13908,24851,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.6598878,7.5957565,6.0107298,0,0,-994.93719,0,3,3,2021,24,12,30,30,1,12,0,10.153892,10.153892,.05,.05,0,0,0,0,0,0,1,1,0,6.3560863,0,28.28,54.63,-9,-9,1.666666666666667,1,1,0,1,11,12,4,1,500,769785.56,956563.5,146222.97,27273.16,0,0,1067.7448 +11391,13909,24852,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3001747,8.1443558,0,0,0,-1116.433,0,2,2,2021,19,7,30,40,1,7,0,14.900078,14.900078,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,8,7,4,0,568,24827.301,0,0,0,0,0,853.58783 +11391,13910,24853,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.330101,8.056428,0,0,0,-1049.2253,0,2,1,2021,8,0,32,23,1,0,0,10.682321,10.682321,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,4,5,0,0,4,7,4,0,1204,224023.95,0,231836.92,101707.23,10956.082,2231.8103,1556.1827 +11392,13911,24854,24855,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,5.5013509,5.3650856,8,0,68.431175,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2006314,5.3219395,57.57,49.69,56.35,43.13,8.333333333333334,1,1,0,0,6,2,3,1,1995.5,1123416.5,787806.75,362764.03,0,0,0,1664.0039 +11392,13911,24855,24854,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.7512112,8.1048975,8,0,46.129974,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1716728,56.35,43.13,57.57,49.69,8.333333333333334,1,1,0,0,0,2,3,1,1995.5,1123416.5,787806.75,362764.03,0,0,0,1664.0039 +11393,13912,24856,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.318049,6.717454,0,0,-1094.4603,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7375169,6.9423113,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,275,393116.53,194731.22,328020.31,0,0,0,599.40997 +11394,13913,24857,24858,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.6799803,9.2604542,0,12,-1,38.688007,0,2,1,2021,12,3,36,37,1,3,0,24.014133,24.014133,0,0,0,0,0,0,0,0,0,0,0,8.6184368,0,51.83,57.2,42.31,53.4,8.333333333333334,1,1,0,0,15,9,5,1,506,1722697.3,1008216,272587.56,0,0,932.32788,4166.8027 +11394,13913,24858,24857,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.7090578,7.8532543,0,12,1,-86.272263,0,-9,3,2021,12,1,30,29,1,1,0,8.3484612,8.3484612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.31,53.4,51.83,57.2,6.666666666666667,1,1,0,0,15,9,5,1,506,1722697.3,1008216,272587.56,0,0,932.32788,4166.8027 +11395,13914,24859,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-928.83881,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,7,2,1,649,-110091.01,0,0,0,0,0,315.98468 +11396,13915,24860,-9,24862,24861,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6952,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24861,24862,-9,-9,1,1,49,1,2,0,1,1,-9,0,4,8.9914341,8.6986589,0,2,12,90.938522,-9,3,2,2021,9,0,80,0,1,0,0,9.9380255,9.9380255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,49.63,54.22,8.333333333333334,1,1,0,0,10,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24862,24861,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.8617353,8.6424513,0,2,-12,79.903618,0,-9,-9,2021,9,0,43,57,1,0,0,19.804869,19.804869,.05,.05,0,0,0,0,0,0,1,1,0,1.5806049,0,49.63,54.22,49.46,56.91,8.333333333333334,3,4,0,0,4,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24863,-9,24862,24861,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4798,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11397,13916,24864,24866,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.2370992,7.3858166,0,6,-4,66.429108,0,2,-9,2021,7,0,25,20,1,0,0,6.706892,6.706892,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.11,55.31,10,1,1,0,0,7,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11397,13916,24865,-9,24864,24866,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.55542,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11397,13916,24866,24864,-9,-9,1,1,35,0,1,0,3,3,-9,0,3,8.7869301,8.679431,0,6,4,67.557014,0,3,3,2021,8,1,56,60,1,1,0,11.300367,11.300367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11398,13917,24867,-9,24870,24868,1,0,17,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1019.2062,1,3,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.84,18.59,-9,-9,5,3,4,0,0,1,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24868,24870,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,6.3051939,6.7180772,0,30,4,-124.79678,0,3,3,2021,10,2,20,0,1,2,0,2.7989953,2.7989953,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,38.58,50,54,3.333333333333333,3,4,0,1,2,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24869,-9,24870,24868,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.5242,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24870,24868,-9,-9,1,0,47,0,3,0,3,3,-9,0,4,6.4809961,6.8272171,0,30,-4,71.453407,0,3,2,2021,10,0,20,0,1,1,0,3.8727469,3.8727469,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,34.28,38.58,8,3,4,0,0,1,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24871,-9,24870,24868,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-947.64215,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24872,-9,24870,24868,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.37445,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13918,24873,-9,24870,24868,1,1,19,0,3,0,2,2,-9,0,5,0,0,0,0,0,-908.72955,0,3,2,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,275,-92453.719,0,0,0,0,0,0 +11399,13919,24874,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,4.7060585,5.2666831,0,0,-983.71136,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1755061,5.508842,35.42,44.62,-9,-9,10,1,1,0,0,0,8,2,0,636,581243.56,-97599.594,344034.06,0,7051.1655,0,1614.4336 +11400,13920,24875,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1005.8358,0,2,3,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,6.2428131,0,0,1,1,0,0,0,28.11,21.31,-9,-9,0,1,1,0,0,0,11,1,0,1154,30263.203,0,0,0,0,0,2190.7253 +11401,13921,24876,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.6118569,7.3038602,0,0,-990.45642,0,3,-9,2021,20,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5855203,16.56,54.74,-9,-9,10,1,1,0,0,0,5,3,1,1052,276342.19,-28140.953,0,0,0,0,2010.4918 +11402,13922,24877,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,1,0,7.5368032,7.3614469,0,0,-866.95624,0,2,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.914187,32.16,26.44,-9,-9,1.666666666666667,1,1,0,0,0,4,3,0,156,394807.34,240675.08,158938.98,0,0,0,930.2937 +11403,13923,24878,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.2604036,8.0766869,0,0,-995.85132,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9085956,8.2669182,44.05,55.39,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1480,878144.44,252767.34,212200.38,0,0,0,1994.2727 +11404,13924,24879,24880,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,4.8592052,5.0739503,0,23,-6,35.724289,0,2,2,2021,2,1,40,40,1,1,0,.4509868,.4509868,.05,.05,0,0,0,0,0,0,0,0,0,3.7810423,0,51.73,58.82,45.51,48.29,10,1,1,0,0,13,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11404,13924,24880,24879,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.5130777,8.7070198,0,25,6,81.247643,0,3,3,2021,10,2,54,29,1,2,0,11.87631,11.87631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.51,48.29,51.73,58.82,1.666666666666667,1,1,0,0,11,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11404,13924,24881,-9,24880,24879,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-945.67365,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11405,13925,24882,24883,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6360607,7.4797235,28,-1,-168.84557,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5266733,7.8655915,45.33,49.24,54.69,57.47,8.333333333333334,1,1,0,0,6,7,3,1,924,1109276,796080.75,278416.94,0,-1229.8635,233.95615,2553.1362 +11405,13925,24883,24882,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,6.5060167,6.7474804,28,1,69.002319,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.303268,6.4807992,54.69,57.47,45.33,49.24,10,1,1,0,0,4,7,3,1,924,1109276,796080.75,278416.94,0,-1229.8635,233.95615,2553.1362 +11406,13926,24884,24885,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.6348448,7.8475003,52,-2,17.432566,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6392517,7.6058731,47.66,52.33,55.86,43.17,6.666666666666667,1,1,0,0,0,4,3,1,508.5,1058861.8,675959.19,268437,0,0,0,2568.5474 +11406,13926,24885,24884,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6678543,7.6702127,52,2,74.200706,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2252526,7.5787883,55.86,43.17,47.66,52.33,8.333333333333334,1,1,0,0,2,4,3,1,508.5,1058861.8,675959.19,268437,0,0,0,2568.5474 +11407,13927,24886,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.7796001,8.1358395,0,0,0,-1029.3969,0,2,1,2021,9,0,35,37,1,0,0,7.5151772,7.5151772,0,0,0,0,0,0,0,0,0,0,0,0,0,51.65,44.35,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,409,-233859.73,0,74696.18,108625.53,0,0,1343.7135 +11408,13928,24887,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1080.0466,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.11,17.41,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,258,-150641.61,0,0,0,1602.9175,0,927.11145 +11408,13929,24888,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1007.1605,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.9,53.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1400,0,0,0,0,0,0,-532.33173 +11409,13930,24889,24890,-9,-9,1,0,65,0,0,0,3,3,-9,1,1,0,0,0,46,0,42.179695,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,1,0,6.1004477,0,0,1,0,1,0,0,31.45,22.33,53.06,38.84,6.666666666666667,2,3,1,0,0,6,2,1,490,905876.5,517452.47,315988.5,0,0,0,2042.0942 +11409,13930,24890,24889,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.7142463,7.5605912,46,0,85.900368,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.6831012,53.06,38.84,31.45,22.33,0,2,3,0,0,13,6,2,1,490,905876.5,517452.47,315988.5,0,0,0,2042.0942 +11410,13931,24891,24893,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.1997881,8.1278505,0,7,5,30.631418,0,-9,2,2021,8,0,45,45,1,0,0,11.033366,11.033366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.69,57.43,54.1,59.11,10,1,1,0,0,8,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24892,-9,24893,24891,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.8975,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24893,24891,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.677248,8.5653,0,7,-5,-55.167858,0,2,2,2021,7,0,27,27,1,0,0,20.544867,20.544867,.05,.05,0,0,0,0,0,0,1,1,0,2.1396093,0,54.1,59.11,43.69,57.43,8.333333333333334,1,1,0,0,8,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24894,-9,24893,24891,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.45447,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11411,13932,24895,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.9218969,6.8973708,0,0,0,-986.80951,0,3,3,2021,13,2,20,20,1,2,0,7.8627706,7.8627706,0,0,0,0,0,0,0,0,1,1,0,0,0,57.48,31.86,-9,-9,3.333333333333333,1,1,0,0,10,5,3,1,2826,-121390.98,0,0,0,241.41708,0,1028.2827 +11412,13933,24896,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9432101,8.0377865,0,0,0,-1112.6187,0,-9,-9,2021,11,1,30,60,1,1,0,9.2926874,9.2926874,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,2,6,4,0,559,0,0,0,0,0,0,1351.593 +11412,13934,24897,24898,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.5459661,8.5641842,0,2,1,-61.962204,0,-9,-9,2021,7,1,35,35,1,1,0,11.940743,11.940743,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,63.29,38.47,6.666666666666667,1,1,0,0,2,6,4,0,723.5,40885.77,67263.594,141454.91,76535.359,11288.804,807.52417,2730.918 +11412,13934,24898,24897,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.9169655,8.175024,0,2,-1,116.42307,0,-9,-9,2021,7,0,32,33,1,0,0,9.286705,9.286705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.29,38.47,60.02,56.42,8.333333333333334,1,1,0,0,6,6,4,0,723.5,40885.77,67263.594,141454.91,76535.359,11288.804,807.52417,2730.918 +11413,13935,24899,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1050253,8.3515491,0,0,0,-1073.4648,0,3,3,2021,9,0,39,39,1,0,0,9.1296234,9.1296234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,4014,58382.184,84391.031,0,0,0,0,861.96136 +11413,13936,24900,-9,-9,24899,1,1,25,0,0,0,2,2,-9,0,4,7.6179557,7.7646828,0,0,0,-945.70166,0,-9,2,2021,6,0,40,40,1,0,1,6.4619226,6.4619226,0,0,0,0,0,0,0,0,1,1,0,0,0,59.4,51.02,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,965,101550.79,0,0,0,1200.198,0,1782.2729 +11414,13937,24901,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.5630479,7.6329646,0,0,0,-780.65204,0,2,1,2021,14,5,36,35,1,5,0,4.5099797,4.5099797,0,0,0,0,0,0,0,14.5,0,0,0,8.6175747,0,36.97,58.53,-9,-9,8.333333333333334,1,1,0,0,13,8,3,1,118,697799.38,306572.31,364198.81,20364.523,0,0,3979.5222 +11415,13938,24902,24903,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.3249502,7.0063004,0,21,0,-35.691826,0,2,2,2021,6,0,18,30,1,0,0,7.8992095,7.8992095,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,8,5,1,884,997412.5,454799.69,482533.09,0,0,0,4692.6592 +11415,13938,24903,24902,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3835411,9.3209801,0,22,0,-118.24489,0,2,2,2021,7,0,47,46,1,0,0,29.098108,29.098108,.05,.05,0,0,0,0,0,0,0,0,0,7.2806935,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,13,8,5,1,884,997412.5,454799.69,482533.09,0,0,0,4692.6592 +11416,13939,24904,24905,-9,-9,1,0,63,1,2,0,3,3,-9,0,4,0,5.1909218,5.3306155,32,0,18.786127,0,2,2,2021,8,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1430168,5.0442243,54.2,57.49,43.76,55.68,8.333333333333334,1,1,0,0,8,9,3,1,495.5,1165805.9,588204.38,225986.5,0,0,0,1464.408 +11416,13939,24905,24904,-9,-9,1,1,63,1,2,0,2,2,-9,0,3,0,8.1482372,7.9709077,32,0,67.897301,0,-9,-9,2021,14,2,0,38,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2254744,43.76,55.68,54.2,57.49,6.666666666666667,1,1,0,0,6,9,3,1,495.5,1165805.9,588204.38,225986.5,0,0,0,1464.408 +11417,13940,24906,-9,24908,24909,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.7874,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24907,-9,24908,24909,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.24463,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24908,24909,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,8.8492966,8.5909472,0,3,-4,-36.661301,0,3,3,2021,10,1,42,30,1,1,0,14.762902,14.762902,0,0,0,0,0,0,0,0,1,1,0,3.0359409,0,38.69,61.75,49.66,55.68,10,1,1,0,0,9,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24909,24908,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.2363539,8.4765844,0,3,4,-103.86311,0,-9,-9,2021,11,0,50,50,1,0,0,8.8048925,8.8048925,0,0,0,0,0,0,0,2,1,1,0,4.1868377,0,49.66,55.68,38.69,61.75,10,1,1,0,0,10,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11418,13941,24910,24911,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,7.0456915,7.1343813,0,21,0,-163.97743,0,-9,-9,2021,6,0,16,35,1,0,0,8.797389,8.797389,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.74,57.22,10,1,1,0,0,9,7,4,0,549,604527.25,194284.84,481131.06,0,0,0,2071.439 +11418,13941,24911,24910,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0201416,7.9338288,0,21,9,5.3913603,0,3,2,2021,8,0,44,44,1,0,0,13.16502,13.16502,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.74,57.22,62.39,56.71,8.333333333333334,1,1,0,0,9,7,4,0,549,604527.25,194284.84,481131.06,0,0,0,2071.439 +11419,13942,24912,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.4797478,8.5458956,0,0,0,-909.62329,0,3,3,2021,7,0,40,40,1,0,0,10.862835,10.862835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,272,407556.06,352225.19,154666.22,85547.609,0,0,2320.5059 +11420,13943,24913,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,8.1494818,7.9051743,0,0,-1114.1155,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1408386,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1044,1359000.5,59292.254,683403.25,0,0,0,2088.9336 +11421,13944,24914,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,4.877615,4.7901754,0,0,-974.38409,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.862833,4.8551702,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,3776,-104413.98,5297.8042,28909.225,0,0,0,1416.2261 +11422,13945,24915,24916,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,8.7600889,8.7433434,0,26,0,35.055752,-9,1,1,2021,11,0,4,0,1,0,0,178.02786,178.02786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,47,49,6.666666666666667,1,1,0,0,14,6,5,1,1033,308205.38,294748.91,213820.16,96197.133,0,0,3138.4106 +11422,13945,24916,24915,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1679583,8.037138,0,26,0,3.0530741,-9,1,1,2021,12,0,36,0,1,2,0,9.3277884,9.3277884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,49,51.14,60.45,7,1,1,0,0,14,6,5,1,1033,308205.38,294748.91,213820.16,96197.133,0,0,3138.4106 +11423,13946,24917,-9,-9,-9,1,0,31,2,4,0,2,2,-9,1,4,0,0,0,0,0,-963.54858,-9,2,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,1,1,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24918,-9,24917,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-962.87756,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24919,-9,24917,-9,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-967.06085,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24920,-9,24917,-9,1,0,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-894.00214,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24921,-9,24917,-9,1,0,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.3036,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11424,13947,24922,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.108222,7.8529716,0,0,-1028.4858,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.8668871,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,684,793368.81,681479.38,101994.53,0,5629.0664,-286.01715,701.21625 +11425,13948,24923,24924,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,6,-5,68.268059,-9,1,1,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.88,48.2,0,3,4,0,0,4,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24924,24923,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.8717647,7.9724441,0,6,5,142.89035,0,-9,-9,2021,7,0,45,45,1,0,0,6.0204906,6.0204906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,62.39,56.71,8.333333333333334,3,4,0,1,3,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24925,-9,24923,24924,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.45532,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24926,-9,24923,24924,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.5657,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11426,13949,24927,24928,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.9546499,7.4532447,65,2,10.110997,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3119302,7.8512425,52.21,51.53,55.06,40.97,8.333333333333334,1,1,0,0,0,12,3,1,650.5,369938.88,264878.22,164717.7,0,0,1877.5435,2320.3716 +11426,13949,24928,24927,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,65,-2,-59.26218,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.06,40.97,52.21,51.53,8.333333333333334,1,1,0,0,3,12,3,1,650.5,369938.88,264878.22,164717.7,0,0,1877.5435,2320.3716 +11427,13950,24929,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,3,0,7.424171,7.5449805,0,0,-982.46667,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1140308,68,24.02,-9,-9,10,1,1,0,0,0,12,3,1,266,501940.97,112087.1,150059.47,0,0,0,1444.235 +11428,13951,24930,24931,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.9385405,8.1708841,31,1,91.477089,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4218466,7.6956177,57.16,56.15,47.58,56.39,10,1,1,0,0,9,4,4,1,1346.5,228343.34,156692.78,135824.91,0,0,0,2669.8511 +11428,13951,24931,24930,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,8.4599771,8.090023,31,-1,46.452084,0,2,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2970638,47.58,56.39,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,1346.5,228343.34,156692.78,135824.91,0,0,0,2669.8511 +11429,13952,24932,24933,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,7.8085165,7.8836865,0,2,1,-20.187895,-9,3,3,2021,9,0,35,0,1,1,0,9.0129576,9.0129576,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,55,41.14,36.85,8,1,1,0,0,1,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24933,24932,-9,-9,1,0,46,0,2,0,3,3,-9,1,2,8.7115011,8.5198393,0,2,-1,-63.077194,0,3,3,2021,17,4,45,0,1,4,0,11.757893,11.757893,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.14,36.85,52,55,1.666666666666667,1,1,0,0,6,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24934,-9,24933,24932,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.22174,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24935,-9,24933,24932,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.52417,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13953,24936,-9,24933,24932,1,1,19,0,2,1,2,0,0,0,1,0,0,0,0,0,-1074.5043,-9,3,3,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.95,43.4,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,315,3492.8142,0,0,0,0,0,275.54962 +11430,13954,24937,24938,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.4656544,7.8815098,0,6,3,3.2389662,0,3,-9,2021,13,1,25,27,1,1,0,7.2908182,7.2908182,0,0,0,0,0,0,0,101,0,0,0,0,0,48.28,60.18,35.13,45.54,8.333333333333334,1,1,0,0,6,11,5,1,1474,164377.48,100325.46,349992.69,144755.72,0,22297.313,4413.0723 +11430,13954,24938,24937,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0731764,9.2539873,0,6,-3,-45.112907,0,2,-9,2021,14,3,48,43,1,3,0,19.936415,19.936415,0,0,0,0,0,0,0,0,0,0,0,5.3080716,0,35.13,45.54,48.28,60.18,3.333333333333333,1,1,0,0,6,11,5,1,1474,164377.48,100325.46,349992.69,144755.72,0,22297.313,4413.0723 +11430,13955,24939,-9,24937,24938,1,0,26,0,0,0,2,2,-9,0,4,8.3304882,7.9436731,0,0,0,-1160.8472,-9,2,2,2021,10,0,55,0,1,0,1,8.7493687,8.7493687,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,1.666666666666667,1,1,0,0,6,11,4,1,84,-335668.22,0,0,0,0,0,1343.5808 +11430,13956,24940,-9,24937,24938,1,0,21,0,0,0,2,2,1,0,3,5.7341099,5.7970395,0,0,0,-929.80133,-9,2,2,2021,10,0,44,0,1,0,1,.83564436,.83564436,0,0,0,0,0,0,0,0,0,0,0,.010159248,0,35.67,56.59,-9,-9,5,1,1,0,0,5,11,2,1,804,165322.25,0,0,0,0,0,151.64471 +11431,13957,24941,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3167372,8.2766199,0,0,0,-975.83264,0,-9,-9,2021,11,0,41,42,1,0,0,12.288958,12.288958,0,0,0,0,0,0,0,2,1,1,0,.71735865,0,43.21,52.88,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,301,37266.664,0,0,0,0,0,1796.6379 +11432,13958,24942,24943,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.9458179,7.1690259,7,7,55.020653,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6428272,6.9520311,54.95,44.79,57.16,56.15,10,1,1,0,0,0,10,3,1,831,557918.63,407712.5,167576.61,0,0,0,1993.136 +11432,13958,24943,24942,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.0223675,6.875277,7,-7,89.780853,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0663965,2,1,1,0,4.597559,7.088089,57.16,56.15,54.95,44.79,8.333333333333334,1,1,0,0,6,10,3,1,831,557918.63,407712.5,167576.61,0,0,0,1993.136 +11433,13959,24944,24945,-9,-9,1,0,47,0,3,0,2,2,-9,0,2,0,0,0,20,4,-70.303497,0,1,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.74,47.8,47.44,56.39,10,1,1,0,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24945,24944,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.3711348,8.2621603,0,20,-4,93.711632,0,-9,-9,2021,6,0,62,61,1,0,0,8.2040958,8.2040958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.44,56.39,55.74,47.8,8.333333333333334,1,1,0,0,13,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24946,-9,24944,24945,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.8797,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24947,-9,24944,24945,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1043.4429,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24948,-9,24944,24945,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1053.6838,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.88,50.89,-9,-9,10,1,1,0,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11434,13960,24949,-9,24950,24951,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.20221,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11434,13960,24950,24951,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.4688692,8.3859243,0,6,0,21.965916,0,2,2,2021,6,1,38,37,1,1,0,18.596142,18.596142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.09,46.7,10,1,1,0,0,9,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11434,13960,24951,24950,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.0563726,8.4101105,0,6,0,-66.006447,0,-9,-9,2021,12,0,40,40,1,0,0,10.411736,10.411736,.05,.05,0,0,0,0,0,0,1,1,0,6.1138606,0,57.09,46.7,54.79,55.86,8.333333333333334,4,2,0,0,6,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11435,13961,24952,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.0264978,7.8176832,0,0,0,-1103.2574,-9,2,2,2021,16,4,42,0,1,4,0,8.1862926,8.1862926,0,0,0,0,0,0,0,27,0,0,0,0,0,41.12,43.31,-9,-9,5,1,1,0,0,6,13,4,1,2017,-109720.59,0,0,0,0,0,1577.4888 +11436,13962,24953,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.0976,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.0108433,0,0,1,1,0,0,0,60.61,27.8,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,396,105812.05,0,0,0,0,0,1620.1133 +11437,13963,24954,24955,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.5127482,5.6448917,52,-1,-51.78775,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6110005,63.31,32.94,62.39,56.71,8.333333333333334,1,1,0,0,0,1,2,1,1241,510649.22,268733.53,114635.63,0,0,0,935.11621 +11437,13963,24955,24954,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.8428388,7.175971,52,1,-126.07852,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7170005,62.39,56.71,63.31,32.94,8.333333333333334,1,1,0,0,8,1,2,1,1241,510649.22,268733.53,114635.63,0,0,0,935.11621 +11438,13964,24956,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,9.136632,8.9721832,0,0,0,-1120.4427,0,2,2,2021,7,0,38,50,1,0,0,22.250412,22.250412,.05,.05,.05,0,0,0,0,2,0,0,0,.52885103,0,63.02,35.77,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,893,115861.65,77623.016,258143.42,195533.44,0,0,2672.5 +11439,13965,24957,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.5499916,8.7373953,0,0,0,-1080.7627,0,-9,-9,2021,13,1,35,55,1,1,0,18.205593,18.205593,0,0,0,0,0,0,0,0,0,0,0,0,0,42.19,58.81,-9,-9,8.333333333333334,1,1,0,1,11,8,5,1,3175,-23195.174,0,0,0,0,0,2192.0344 +11440,13966,24958,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.2357388,8.4223156,0,0,0,-892.09009,0,2,2,2021,16,4,44,38,1,4,0,9.0232821,9.0232821,0,0,0,0,0,0,0,0,0,0,0,0,0,42.66,53.61,-9,-9,5,1,1,0,1,11,12,4,1,518,205548.13,11918.075,206335.08,130920.69,0,1025.1256,846.5437 +11441,13967,24959,-9,24960,24961,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.48358,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24960,24961,-9,-9,1,0,33,0,2,0,1,1,-9,0,2,8.6551399,8.7623606,0,11,-6,37.959946,0,-9,-9,2021,11,2,5,0,1,2,0,120.49392,120.49392,0,0,0,0,0,0,0,0,1,1,0,1.5692055,0,42.1,37.58,54.2,57.49,5,2,3,0,0,1,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24961,24960,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,4.3054223,3.7929418,0,11,6,4.3581429,0,2,1,2021,10,0,40,38,1,0,0,.17862658,.17862658,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.1,37.58,8.333333333333334,2,3,0,0,8,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24962,-9,24960,24961,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.84143,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11442,13968,24963,24964,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.2066402,6.8424654,9,-2,-47.732239,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1567531,65.38,31.06,68.73999999999999,28.12,10,1,1,0,0,0,13,2,1,1341,163930.22,61899.188,0,0,0,0,1981.718 +11442,13968,24964,24963,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,9,2,-15.010003,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.73999999999999,28.12,65.38,31.06,10,1,1,0,0,0,13,2,1,1341,163930.22,61899.188,0,0,0,0,1981.718 +11443,13969,24965,24966,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,44,-3,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.83,43.62,60.02,56.42,10,1,1,0,0,0,12,1,0,357.5,47800.805,0,74926.148,0,0,0,2540.5063 +11443,13969,24966,24965,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,44,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.02,56.42,63.83,43.62,10,1,1,0,0,0,12,1,0,357.5,47800.805,0,74926.148,0,0,0,2540.5063 +11444,13970,24967,24968,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,6.7909894,6.6431856,37,-1,74.427605,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4076571,0,62.49,55.09,49.22,53.46,0,1,1,0,0,9,6,3,1,1161,1766843,1364737.5,261286.2,159798,0,0,1053.1663 +11444,13970,24968,24967,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.157907,6.9139266,40,1,-66.904884,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1123481,7.274487,49.22,53.46,62.49,55.09,5,1,1,0,0,7,6,3,1,1161,1766843,1364737.5,261286.2,159798,0,0,1053.1663 +11445,13971,24969,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.0887656,6.8483148,0,0,-909.14319,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8223114,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,140,209291.86,104937.73,0,0,0,0,1353.6294 +11446,13972,24970,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,5.9625096,5.7139564,0,0,-1052.5067,0,2,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,8.1667452,0,64.429352,0,1,1,0,4.5882215,5.6384401,30.08,32.94,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,2106,204940.59,270549.41,0,0,0,0,1911.1218 +11447,13973,24971,24972,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3649602,6.6238046,63,-3,-60.086258,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3641596,52,46,60.93,36.01,8,2,3,0,0,0,7,2,1,4590.5,573428.38,253601.38,282858.72,0,0,0,2805.6182 +11447,13973,24972,24971,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.3491979,6.3244195,63,3,37.648037,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3865409,60.93,36.01,52,46,8.333333333333334,2,3,0,0,0,7,2,1,4590.5,573428.38,253601.38,282858.72,0,0,0,2805.6182 +11448,13974,24973,-9,24975,24976,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1105,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24974,-9,24975,24976,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.99646,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24975,24976,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.0009565,7.8210149,0,11,-4,-191.95508,0,-9,-9,2021,8,0,23,24,1,0,0,15.373038,15.373038,.05,.05,0,0,0,0,0,0,1,1,0,2.5449421,0,54.1,59.11,49.04,55.86,8.333333333333334,1,1,0,0,9,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24976,24975,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.4123049,8.9885969,0,11,4,82.893433,0,2,2,2021,7,0,38,38,1,0,0,18.120422,18.120422,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.1,59.11,8.333333333333334,1,1,0,0,13,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11449,13975,24977,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7406125,8.0985909,7.5599461,0,0,-825.5896,0,1,1,2021,8,0,23,19,1,0,0,15.343931,15.343931,.05,.05,.05,0,0,0,0,14.5,0,0,0,4.5846343,7.413126,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,394,245063.38,105139.83,118509.2,52292.852,0,0,2065.5605 +11450,13976,24978,-9,24979,24980,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1171.0179,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,4,2,-9,0,0,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11450,13976,24979,24980,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7346926,8.5633726,0,3,1,-46.754677,0,-9,-9,2021,15,4,38,38,1,4,0,16.504108,16.504108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11450,13976,24980,24979,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.9042864,9.0689583,0,3,-1,-59.711277,0,2,2,2021,8,0,40,42,1,0,0,23.538891,23.538891,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,4,2,0,0,13,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11451,13977,24981,24982,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.8097959,7.4516912,28,16,44.174805,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2362138,7.5712566,58.96,39.65,60.28,43.74,8.333333333333334,1,1,0,0,9,5,3,1,1391,684157.25,340133,224747.22,0,0,0,1384.8594 +11451,13977,24982,24981,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,27,-16,-8.471467,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.603622,0,60.28,43.74,58.96,39.65,8.333333333333334,4,2,0,0,0,5,3,1,1391,684157.25,340133,224747.22,0,0,0,1384.8594 +11452,13978,24983,24986,-9,-9,1,1,45,0,2,0,2,2,-9,0,1,7.7152829,7.9540601,0,8,6,54.098385,0,3,3,2021,12,2,39,39,1,2,0,6.1072974,6.1072974,0,0,0,0,0,0,0,0,1,0,1,0,0,42.83,21.19,51.24,58.84,3.333333333333333,4,2,0,0,11,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24984,-9,24986,24983,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.62842,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24985,-9,24986,24983,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.1127,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24986,24983,-9,-9,1,0,39,0,2,0,1,1,0,0,4,0,0,0,8,-6,13.111728,-9,-9,-9,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,42.83,21.19,8.333333333333334,1,1,0,0,11,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11453,13979,24987,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-896.57794,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,1,1,308,73122.453,0,0,0,0,0,577.27637 +11454,13980,24988,-9,24989,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.95483,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,594,-4713.6035,0,0,0,0,0,1905.8948 +11454,13980,24989,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-875.31824,0,2,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.36,24.02,-9,-9,5,3,4,0,0,0,8,2,0,594,-4713.6035,0,0,0,0,0,1905.8948 +11455,13981,24990,-9,24993,24992,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1074.1787,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24991,-9,24993,24992,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-908.13739,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24992,24993,-9,-9,1,1,44,0,3,0,2,2,-9,0,3,8.0867357,8.0843067,0,23,-2,5.3950973,0,2,3,2021,8,0,50,55,1,0,0,8.9248981,8.9248981,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.15,44.79,57.06,57.76,8.333333333333334,1,1,0,0,11,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24993,24992,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,7.5317807,7.6349702,0,23,2,41.80307,0,2,2,2021,7,0,15,15,1,0,0,15.61803,15.61803,.05,.05,0,0,0,0,0,0,1,1,0,3.432936,0,57.06,57.76,55.15,44.79,10,1,1,0,0,8,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24994,-9,24993,24992,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.14972,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11456,13982,24995,24997,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.7739048,9.0256281,0,8,-6,120.69108,0,2,2,2021,14,2,40,40,1,2,0,18.775669,18.775669,0,0,0,0,0,0,0,0,1,1,0,.81177455,0,33.67,45.31,51.83,57.2,6.666666666666667,1,1,0,0,10,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24996,-9,24997,24995,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.009,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24997,24995,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.5170088,7.8616419,0,8,6,-56.520649,0,2,-9,2021,9,0,25,25,1,0,0,10.61237,10.61237,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,33.67,45.31,6.666666666666667,1,1,0,0,8,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24998,-9,24997,24995,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.52368,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11457,13983,24999,25000,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,5.38761,5.5738273,36,-2,-105.26966,0,3,3,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0523152,58.75,24.64,46.08,57.2,5,1,1,0,0,0,9,4,1,313,1905827.8,848404.63,744519.88,0,0,0,3381.6104 +11457,13983,25000,24999,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.1878471,8.389473,7.6040683,36,2,-29.556925,0,3,3,2021,20,9,36,37,1,9,0,11.965301,11.965301,0,0,0,0,0,0,0,120,1,1,0,0,7.9855323,46.08,57.2,58.75,24.64,3.333333333333333,1,1,0,0,4,9,4,1,313,1905827.8,848404.63,744519.88,0,0,0,3381.6104 +11458,13984,25001,25002,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.0828452,7.4272814,30,12,6.1242566,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.5099335,37.02,37.37,50.18,47.09,6.666666666666667,1,1,0,0,6,4,4,1,499,489584.16,63587.59,259093.13,0,5203.9863,0,1619.2603 +11458,13984,25002,25001,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6569548,7.7091384,0,30,-12,30.853308,0,2,1,2021,20,8,43,42,1,8,0,8.1036644,8.1036644,0,0,0,0,0,0,0,0,0,0,0,3.3969162,0,50.18,47.09,37.02,37.37,3.333333333333333,1,1,0,0,8,4,4,1,499,489584.16,63587.59,259093.13,0,5203.9863,0,1619.2603 +11459,13985,25003,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.5150795,6.1795311,0,0,-1022.5579,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3823609,6.3652225,50.49,34.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,509,83980.523,135284.56,111679.51,0,0,0,2805.7517 +11460,13986,25004,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-981.93201,0,2,2,2021,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,59.71,50.89,-9,-9,6.666666666666667,3,4,1,0,8,8,2,1,763,-102584.02,0,0,0,0,0,0 +11461,13987,25005,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.2528095,8.2383833,0,0,0,-922.28455,0,3,3,2021,12,0,47,47,1,0,1,7.9748206,7.9748206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.01,49.23,-9,-9,3.333333333333333,2,3,0,0,11,8,4,0,2557,272222.34,-11005.715,0,0,1241.0939,2372.907,418.49207 +11461,13988,25006,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.74932,8.540287,0,0,0,-1046.1681,0,3,3,2021,17,5,35,35,1,5,1,19.6668,19.6668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.97,58.49,-9,-9,5,2,3,0,0,11,8,5,0,410,-32016.629,69740.242,199805.17,120504.38,36769.762,1823.8446,3064.1519 +11461,13989,25007,-9,-9,-9,1,1,23,0,1,0,1,1,-9,0,3,7.9615078,7.8958936,0,0,0,-1053.1923,0,3,3,2021,14,2,37,37,1,2,1,9.0425501,9.0425501,0,0,0,0,0,0,0,0,1,1,0,0,0,45.5,50.46,-9,-9,6.666666666666667,2,3,0,0,1,8,4,0,1022,177524.05,0,0,0,0,0,1458.83 +11462,13990,25008,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1028.1815,0,1,1,2021,11,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6111708,0,46.55,58.3,-9,-9,5,1,1,1,0,6,4,1,0,312,0,0,0,0,0,0,191.82388 +11463,13991,25009,25010,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5461807,8.510664,0,3,1,102.57243,0,-9,-9,2021,10,1,37,41,1,1,0,11.490622,11.490622,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,2,4,5,0,2458,335782.34,31063.607,319697.31,201152.83,0,0,4124.3799 +11463,13991,25010,25009,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.6680861,8.5018024,4.7015014,3,-1,-80.653534,0,-9,-9,2021,8,1,37,37,1,1,0,17.905527,17.905527,.05,.05,0,0,0,0,0,0,0,0,0,5.6803536,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,5,4,5,0,2458,335782.34,31063.607,319697.31,201152.83,0,0,4124.3799 +11464,13992,25011,25012,25014,-9,1,0,47,0,1,0,2,2,-9,0,5,7.1652045,7.3359156,0,29,-4,115.36105,0,2,2,2021,11,0,22,20,1,0,0,5.5657296,5.5657296,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.01,57.46,8.333333333333334,1,1,0,0,9,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13992,25012,25011,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.6727071,8.1086216,6.3056421,29,4,-127.86935,0,-9,-9,2021,9,0,47,35,1,0,0,6.9365673,6.9365673,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2092738,45.01,57.46,54.1,59.11,5,1,1,0,0,7,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13992,25013,-9,25011,25012,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.0854,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13993,25014,-9,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,7.8402629,7.9603915,0,0,-945.46039,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.743979,55.54,46.02,-9,-9,10,1,1,0,0,0,5,3,1,869,957451.63,601253.5,207805.75,0,10701.139,0,2399.1348 +11465,13994,25015,25017,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,7.8172755,7.6132421,0,3,-2,-178.19598,0,-9,-9,2021,17,6,21,35,1,6,0,11.023107,11.023107,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,22.83,61.65,8.333333333333334,1,1,0,0,3,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11465,13994,25016,-9,25015,25017,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.76282,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11465,13994,25017,25015,-9,-9,1,1,35,1,1,0,2,2,-9,0,2,8.8462,8.786418,0,3,2,56.041103,0,1,2,2021,26,9,35,35,1,9,0,17.526808,17.526808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.83,61.65,49.35,59.64,3.333333333333333,1,1,0,0,12,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11466,13995,25018,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1147.4143,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4009957,0,32.72,40.41,-9,-9,5,1,1,0,0,6,2,1,0,439,98222.188,0,99744.43,0,0,0,787.20758 +11467,13996,25019,25021,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.0358095,8.2327557,0,3,-4,94.912697,0,2,2,2021,16,4,40,40,1,4,0,8.5512981,8.5512981,.05,.05,0,0,0,0,0,0,1,1,0,2.7794311,0,46.4,59.87,53.24,50.01,8.333333333333334,1,1,0,0,7,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11467,13996,25020,-9,25019,25021,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.8503,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11467,13996,25021,25019,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,7.801075,7.9409561,0,3,4,6.1603284,0,1,1,2021,9,1,30,40,1,1,0,12.241135,12.241135,.05,.05,0,0,0,0,0,0,1,1,0,7.4173031,0,53.24,50.01,46.4,59.87,8.333333333333334,1,1,0,0,11,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11468,13997,25022,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,7.9497604,7.590929,0,0,-945.95837,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4373713,58.44,46.03,-9,-9,6.666666666666667,3,4,0,0,0,8,3,1,109,1634577.3,1055125.8,444892.09,0,0,0,1652.0814 +11468,13998,25023,-9,25022,-9,1,1,29,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1068.371,0,2,2,2021,19,8,0,29,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4676368,0,26.33,60.03,-9,-9,1.666666666666667,3,4,1,0,9,8,2,1,625,172654.59,0,0,0,0,0,1628.4525 +11469,13999,25024,25025,-9,-9,1,1,48,0,0,0,3,3,-9,0,1,0,0,0,6,-1,8.5648079,0,3,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.53,31.94,57.33,53.46,3.333333333333333,1,1,1,0,8,5,3,1,563,-6703.6963,38974.352,0,0,0,0,1941.3206 +11469,13999,25025,25024,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5611897,7.9144197,0,6,1,31.653074,-9,3,2,2021,11,0,40,0,1,0,0,6.9226117,6.9226117,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37.53,31.94,6.666666666666667,1,1,0,1,7,5,3,1,563,-6703.6963,38974.352,0,0,0,0,1941.3206 +11469,14000,25026,-9,25025,25024,1,0,23,0,0,0,2,2,-9,0,2,7.5048904,7.7435708,0,0,0,-1002.1136,-9,2,3,2021,23,9,47,0,1,9,1,5.1623282,5.1623282,0,0,0,0,0,0,0,0,0,0,0,1.378646,0,12.95,62.22,-9,-9,1.666666666666667,1,1,0,0,7,5,3,1,322,275165.53,0,0,0,0,0,1379.4225 +11470,14001,25027,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.2423077,8.7285643,0,0,0,-953.93103,0,2,2,2021,11,0,42,53,1,0,0,21.992592,21.992592,.05,.05,0,0,0,0,0,0,1,1,0,4.1558533,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,495,365115.28,70864.125,0,0,0,0,2968.8831 +11471,14002,25028,25029,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.814249,8.3343801,49,3,48.221523,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5960698,8.3979111,61.43,43.34,49.52,56.95,8.333333333333334,1,1,0,0,0,9,3,1,661,977808,308337.47,370070.38,0,0,0,2832.9023 +11471,14002,25029,25028,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,49,-3,-73.912521,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.1044078,0,49.52,56.95,61.43,43.34,8.333333333333334,1,1,0,0,0,9,3,1,661,977808,308337.47,370070.38,0,0,0,2832.9023 +11472,14003,25030,25031,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,6.9606385,7.144897,0,35,2,115.45317,0,3,-9,2021,7,0,12,-9,1,0,0,9.8967981,9.8967981,0,0,0,0,0,0,0,0,1,0,1,0,0,57.57,49.69,26.65,23.11,6.666666666666667,1,1,0,0,9,1,2,0,850.5,727141.25,290078.44,424190.75,0,0,0,298.16019 +11472,14003,25031,25030,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,37,-2,-37.215633,0,3,3,2021,9,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.65,23.11,57.57,49.69,3.333333333333333,1,1,0,0,9,1,2,0,850.5,727141.25,290078.44,424190.75,0,0,0,298.16019 +11473,14004,25032,-9,25035,25033,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1052.8943,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,4,2,-9,0,0,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25033,25035,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,7.7518554,8.0461998,4.8522363,20,5,143.90942,0,3,3,2021,21,9,42,41,1,9,0,7.0461535,7.0461535,.05,.05,0,0,0,0,0,0,1,0,1,0,4.8504391,38.98,46.38,53.14,51.28,3.333333333333333,1,1,0,1,8,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25034,-9,25035,25033,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0024,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25035,25033,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.4866319,7.5221405,0,20,-5,60.809326,0,2,2,2021,12,0,28,28,1,0,0,7.9047689,7.9047689,.05,.05,0,0,0,0,0,0,1,0,1,6.5154934,0,53.14,51.28,38.98,46.38,6.666666666666667,2,3,0,1,12,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11474,14005,25036,-9,-9,-9,1,0,56,0,1,0,1,1,-9,1,4,0,7.5138998,6.8585358,0,0,-1037.9108,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.8548279,0,54.34,53.29,-9,-9,10,1,1,0,0,5,10,2,0,803.5,280918.44,63841.586,147671.78,5317.6025,0,184.91302,2704.835 +11474,14005,25037,-9,25036,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.8556,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,2,0,803.5,280918.44,63841.586,147671.78,5317.6025,0,184.91302,2704.835 +11475,14006,25038,-9,25041,25039,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.82697,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25039,25041,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9534016,8.5946655,0,7,5,96.619156,0,2,3,2021,8,0,45,45,1,0,0,18.394548,18.394548,.05,.05,0,0,0,0,0,0,1,1,0,2.2858877,0,57.16,56.15,38.45,60.79,8.333333333333334,1,1,0,0,10,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25040,-9,25041,25039,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.31238,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25041,25039,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,0,0,0,7,-5,101.01657,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.45,60.79,57.16,56.15,8.333333333333334,1,1,0,0,6,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11476,14007,25042,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.8451247,7.8851395,0,0,0,-1121.0403,0,3,3,2021,12,0,40,40,1,0,0,7.6313605,7.6313605,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,45.82,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1132,852441.69,817648.06,133428.22,0,0,0,1585.1169 +11477,14008,25043,25044,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,8.2994204,8.0314045,0,8,3,35.137775,0,3,3,2021,6,0,40,40,1,0,0,10.583885,10.583885,.05,.05,0,0,0,0,0,0,0,0,0,3.8963797,0,57.33,53.46,51.83,57.2,1.666666666666667,1,1,0,0,9,5,4,1,1027.5,25373.85,67402.219,0,0,0,0,2182.7788 +11477,14008,25044,25043,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.7312398,7.7792244,0,8,-3,-65.590927,0,-9,-9,2021,6,0,37,39,1,0,0,8.2299585,8.2299585,0,0,0,0,0,0,0,0,0,0,0,1.2600634,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,8,5,4,1,1027.5,25373.85,67402.219,0,0,0,0,2182.7788 +11478,14009,25045,-9,25047,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.24872,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11478,14009,25046,-9,25047,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.59399,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11478,14009,25047,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,6.8070292,7.0666842,0,0,0,-968.24518,0,-9,-9,2021,11,0,16,6,1,0,0,6.5583763,6.5583763,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,4,2,0,0,2,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11479,14010,25048,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.6419849,9.0897207,4.8138657,0,0,-946.54132,0,3,2,2021,10,0,45,47,1,0,0,18.949806,18.949806,0,0,0,0,0,0,0,0,0,0,0,2.6484399,5.1651678,48.14,53.42,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,378,-78589.195,21085.711,0,0,0,0,2562.9983 +11480,14011,25049,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.921598,7.7577772,0,1,4,68.927498,0,2,-9,2021,11,0,42,37,1,0,0,7.3570209,7.3570209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,40.89,24.89,6.666666666666667,1,1,0,0,14,6,4,0,249,-261202.8,-20905.75,0,0,0,2102.5828,1826.2986 +11480,14012,25050,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,7.5511165,7.3881292,0,1,-4,120.11528,-9,-9,-9,2021,13,3,35,0,1,3,0,7.2476463,7.2476463,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,24.89,38.22,58.43,8.333333333333334,1,1,0,0,1,6,4,0,368,-59502.27,0,0,0,8955.624,0,1848.1785 +11481,14013,25051,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.5590291,7.3432083,0,0,0,-870.76007,-9,2,2,2021,31,11,24,0,1,11,0,8.6816406,8.6816406,.05,.05,0,0,0,0,0,0,1,0,1,0,0,16.47,39.98,-9,-9,1.666666666666667,1,1,0,1,4,10,3,0,609,-81081.211,41939,0,0,0,0,1274.9874 +11482,14014,25052,25053,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.1550121,8.5286589,0,2,-1,35.180798,0,2,2,2021,23,11,44,40,1,11,0,10.009794,10.009794,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,42.98,48.42,60.53,3.333333333333333,1,1,0,0,11,11,5,1,557.5,163016.3,-19884.807,0,0,0,0,2723.1663 +11482,14014,25053,25052,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,8.1645279,8.1563187,0,2,1,-193.07951,-9,-9,-9,2021,13,1,46,0,1,1,0,7.8361044,7.8361044,.05,.05,0,0,0,0,0,0,0,0,0,3.9643118,0,48.42,60.53,30.1,42.98,8.333333333333334,3,4,0,0,6,11,5,1,557.5,163016.3,-19884.807,0,0,0,0,2723.1663 +11483,14015,25054,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-939.73041,0,1,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,40.13,51.75,-9,-9,6.666666666666667,1,1,1,0,7,1,1,0,708,-67506.781,-7815.5737,0,0,0,0,792.74756 +11484,14016,25055,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-954.67438,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,690,-109243.88,0,0,0,0,0,496.3161 +11485,14017,25056,25057,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.4459467,8.5323744,6.2769985,12,16,-87.571327,0,3,3,2021,11,0,38,38,1,0,0,12.100638,12.100638,0,0,0,0,0,0,0,0,0,0,0,0,6.7397561,39.1,57.79,38.51,59.43,3.333333333333333,1,1,0,1,13,1,5,1,1781,114307.14,109658.03,116744.53,44740.418,0,0,3204.5715 +11485,14017,25057,25056,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.2835569,7.8831615,0,12,-16,-50.938473,0,2,-9,2021,15,3,38,48,1,3,0,11.993891,11.993891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,39.1,57.79,5,1,1,0,0,11,1,5,1,1781,114307.14,109658.03,116744.53,44740.418,0,0,3204.5715 +11486,14018,25058,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.4787474,7.7993073,0,0,-960.00519,0,3,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,26.44352,0,0,1,1,0,0,7.5836072,34.98,23.32,-9,-9,1.666666666666667,1,1,0,0,0,2,3,0,962,110520.05,112862.27,88535.859,0,0,0,1506.8104 +11487,14019,25059,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-869.38287,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,1.7652104,0,19.357052,0,1,1,0,0,0,18.01,25.88,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,391,0,0,0,0,0,0,1191.9202 +11488,14020,25060,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,6.8527169,7.0912709,0,0,-1015.6945,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,3.19121,0,31.10586,0,1,1,0,6.7302985,6.9318862,34.45,27.98,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,986,275218.34,-20357.889,74639.602,0,0,0,1386.908 +11489,14021,25061,25062,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,12,-7,-4.7740402,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.41,41.96,29.78,17.81,5,1,1,0,0,0,11,2,0,925,45046.945,197055.31,0,0,2015.1465,1336.6034,1981.0044 +11489,14021,25062,25061,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,4.6181564,4.4317255,12,7,-50.675285,0,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.25598034,4.2655859,29.78,17.81,53.41,41.96,1.666666666666667,1,1,0,0,0,11,2,0,925,45046.945,197055.31,0,0,2015.1465,1336.6034,1981.0044 +11490,14022,25063,25064,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.9718609,8.8669453,0,9,2,20.472773,0,2,2,2021,9,0,40,38,1,0,0,21.053402,21.053402,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,9,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25064,25063,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.6095853,7.4994912,0,9,-2,-71.132309,0,2,2,2021,7,0,18,17,1,0,0,12.907498,12.907498,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,9,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25065,-9,25064,25063,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.72089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25066,-9,25064,25063,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.0319,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11491,14023,25067,25068,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,56,-1,-17.194178,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,57.06,57.76,10,1,1,0,0,0,7,2,0,896,946574.63,234855.13,613938.81,0,0,0,1123.8414 +11491,14023,25068,25067,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,4.4275041,4.1356802,56,1,-82.477203,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.2339344,57.06,57.76,61.01,53.18,8.333333333333334,1,1,0,0,8,7,2,0,896,946574.63,234855.13,613938.81,0,0,0,1123.8414 +11492,14024,25069,25070,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,7.7113338,8.1036177,5.3951483,34,5,129.84323,0,2,2,2021,7,1,30,30,1,1,0,11.438576,11.438576,0,0,0,0,0,0,0,2,1,1,0,.34548864,5.9852347,61.11,33.16,29.47,53.86,8.333333333333334,1,1,0,0,14,1,5,0,320,595559.63,536809.06,0,0,848.86951,6962.0977,4420.9385 +11492,14024,25070,25069,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.5480576,8.6502476,0,34,-5,-38.872459,0,2,-9,2021,20,8,37,38,1,8,0,24.364838,24.364838,0,0,0,0,0,0,0,0,1,1,0,0,0,29.47,53.86,61.11,33.16,6.666666666666667,1,1,0,0,12,1,5,0,320,595559.63,536809.06,0,0,848.86951,6962.0977,4420.9385 +11492,14025,25071,-9,25070,25069,1,0,27,0,0,0,1,1,-9,0,3,8.3125896,8.339736,0,0,0,-907.91718,0,2,2,2021,15,4,38,40,1,4,1,13.508398,13.508398,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,56.81,-9,-9,8.333333333333334,1,1,0,0,4,1,5,0,315,-57276.996,0,0,0,0,0,618.5993 +11493,14026,25072,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-971.66351,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,24.26,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,814,288186.34,0,0,0,0,0,690.75806 +11494,14027,25073,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1083.822,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5127017,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,321,0,0,0,0,0,0,584.93561 +11495,14028,25074,25077,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5879774,8.5022697,0,11,1,-17.378473,0,2,3,2021,11,1,37,40,1,1,0,17.734074,17.734074,.05,.05,0,0,0,0,0,0,1,1,0,6.289917,0,46.39,60.99,51.67,60.18,8.333333333333334,1,1,0,0,13,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25075,-9,25077,25074,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.274,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25076,-9,25077,25074,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8573,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25077,25074,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.0782394,7.2975154,0,11,-1,26.304728,0,2,2,2021,6,0,20,30,1,0,0,7.5643764,7.5643764,0,0,0,0,0,0,0,0,1,1,0,6.9285283,0,51.67,60.18,46.39,60.99,8.333333333333334,1,1,0,0,10,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11496,14029,25078,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.9202,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.92,41.95,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,91,56174.188,0,0,0,5690.8394,0,562.75964 +11497,14030,25079,25080,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.9859438,7.9413376,0,7,-4,-51.044243,-9,-9,-9,2021,7,0,40,0,1,0,0,8.0892258,8.0892258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,36.75,52.99,40.75,6.666666666666667,1,1,0,0,14,10,5,0,160.5,-30593.477,-20539.477,337849.72,206429.98,0,0,2696.5901 +11497,14030,25080,25079,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2234135,8.5767822,0,7,4,-119.30067,0,-9,-9,2021,11,3,65,60,1,3,0,7.8393278,7.8393278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,40.75,61.68,36.75,3.333333333333333,1,1,0,1,13,10,5,0,160.5,-30593.477,-20539.477,337849.72,206429.98,0,0,2696.5901 +11498,14031,25081,25082,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4901037,5.9238806,1,-2,59.983604,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4444346,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,0,7,3,1,762,819219.06,516319.88,232198.92,0,0,0,2823.8159 +11498,14031,25082,25081,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,7.3544798,7.6908898,7.1485023,1,2,-255.07996,-9,2,2,2021,9,0,15,0,1,0,0,13.758091,13.758091,0,0,0,0,0,0,0,0,1,1,0,6.5537648,7.1978426,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,7,7,3,1,762,819219.06,516319.88,232198.92,0,0,0,2823.8159 +11499,14032,25083,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5895524,6.5682154,0,0,-950.50696,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0928893,6.656539,53.36,53.7,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,1117,133529.47,0,0,0,0,0,2454.5425 +11500,14033,25084,25085,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8998046,5.9300814,8,-2,-93.260132,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9518256,6.1614852,53,46,47.1,56.62,8,1,1,0,0,0,10,3,1,653,1242555.8,440126.38,236608.31,0,0,0,2361.1355 +11500,14033,25085,25084,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.5890336,7.3179417,44,2,-117.91589,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2443228,7.1625056,47.1,56.62,53,46,8.333333333333334,1,1,0,0,0,10,3,1,653,1242555.8,440126.38,236608.31,0,0,0,2361.1355 +11501,14034,25086,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,9.0249233,8.6782484,0,0,0,-920.42554,0,2,3,2021,3,0,42,43,1,0,0,15.601691,15.601691,.05,.05,0,0,0,0,0,2,1,1,0,4.1248078,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,710,-203070.45,177547.02,0,0,1486.4211,543.63049,2758.8877 +11502,14035,25087,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.470582,7.5438867,0,0,-957.8653,0,3,2,2021,27,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.3537722,6.6166148,30.11,56.52,-9,-9,1.666666666666667,1,1,1,0,9,2,3,1,555,571498,379783.44,171350.48,0,1833.7236,0,1725.937 +11503,14036,25088,25089,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7603149,8.502243,0,11,2,24.028908,0,-9,-9,2021,6,0,40,40,1,0,0,23.770439,23.770439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,56.35,51,8.333333333333334,1,1,0,0,13,12,5,1,658,1359938.3,922624.13,314309.81,0,9013.498,0,2931.595 +11503,14036,25089,25088,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1711607,7.0344963,0,11,-2,-161.99969,0,3,2,2021,10,0,22,21,1,0,0,6.1929274,6.1929274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51,54.96,53.17,8.333333333333334,1,1,0,0,13,12,5,1,658,1359938.3,922624.13,314309.81,0,9013.498,0,2931.595 +11503,14037,25090,-9,25089,-9,1,0,32,0,0,0,2,2,-9,1,2,7.5509133,7.595541,0,0,0,-904.3786,0,2,2,2021,29,12,35,35,1,12,1,5.1029377,5.1029377,0,0,0,0,0,0,0,0,1,1,0,0,0,30.11,37.76,-9,-9,3.333333333333333,1,1,0,0,13,12,3,1,376,151513,0,0,0,0,0,280.32663 +11504,14038,25091,25092,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.6684403,7.4026346,37,16,77.402382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6392674,7.6466441,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,2,4,1,797.5,1149011.8,443929.47,446721.56,0,0,0,2771.3818 +11504,14038,25092,25091,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.9915218,8.1764183,7.6095695,40,-16,43.702545,0,3,2,2021,10,0,15,14,1,0,0,10.330775,10.330775,0,0,0,0,0,0,0,0,1,1,0,5.0049982,7.6971455,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,1,797.5,1149011.8,443929.47,446721.56,0,0,0,2771.3818 +11504,14039,25093,-9,25092,25091,1,1,23,0,0,0,1,1,1,0,5,7.7115431,7.5842476,0,0,0,-1001.9902,-9,2,3,2021,11,0,40,0,1,0,1,6.6496463,6.6496463,0,0,0,0,0,0,0,0,1,1,0,3.8641536,0,40.36,58.59,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,221,-70734.258,0,0,0,0,0,1468.7351 +11505,14040,25094,25095,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.1445966,7.3718204,54,2,47.473408,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3269067,7.5118933,48.81,59.91,51.18,41.8,8.333333333333334,1,1,0,0,13,9,4,1,697.5,1476160.5,448983.97,414884.53,0,0,151.09909,2972.6458 +11505,14040,25095,25094,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,7.7851977,8.0987062,6.895988,54,-2,123.21674,0,2,1,2021,14,4,20,15,1,4,0,11.764816,11.764816,0,0,0,1,0,0,0,0,1,1,0,6.3783903,7.1002626,51.18,41.8,48.81,59.91,8.333333333333334,1,1,0,0,12,9,4,1,697.5,1476160.5,448983.97,414884.53,0,0,151.09909,2972.6458 +11506,14041,25096,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,5.130631,5.2087898,0,0,-1154.9232,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,127.10578,0,0,1,1,0,0,4.9621282,54.42,14.37,-9,-9,5,1,1,0,0,0,2,2,1,631,144851.08,3583.1729,0,0,0,0,949.6748 +11506,14042,25097,-9,25096,-9,1,0,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.114,0,3,3,2021,22,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,13.31,60.53,-9,-9,5,1,1,0,0,0,2,1,1,585,0,0,0,0,0,0,45.072968 +11506,14043,25098,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,4.790638,4.504189,0,0,-1021.6203,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,27.783466,0,2,1,1,0,0,4.8706269,61.78,24.58,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,943,79915.914,82729.102,0,0,3010.1174,0,402.46826 +11507,14044,25099,25100,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0525084,7.9811778,0,6,-13,-1.260783,0,2,1,2021,10,0,37,37,1,0,0,11.638269,11.638269,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.92,52.3,63.01,30.1,10,1,1,0,0,9,10,3,0,942.5,156710.09,-23245.414,0,0,0,1096.3394,2183.7595 +11507,14044,25100,25099,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.2288132,6.822567,6,13,122.28435,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2384541,6.7771392,63.01,30.1,44.92,52.3,8.333333333333334,1,1,0,0,7,10,3,0,942.5,156710.09,-23245.414,0,0,0,1096.3394,2183.7595 +11508,14045,25101,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-934.26825,0,2,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.63,30.38,-9,-9,0,1,1,0,0,0,9,1,0,190,-88929.859,-61311.125,0,0,0,0,1030.8658 +11509,14046,25102,-9,25103,25104,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-879.00293,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.43,64.75,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14046,25103,25104,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,30,2,-3.4098687,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.09,53.45,57.06,57.76,6.666666666666667,1,1,0,0,0,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14046,25104,25103,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.2318439,8.960331,0,27,-2,258.1897,0,2,1,2021,6,0,35,35,1,0,0,23.592569,23.592569,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,33.09,53.45,8.333333333333334,1,1,0,0,14,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14047,25105,-9,25103,25104,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1063.2943,-9,1,1,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.76,55.1,-9,-9,3.333333333333333,1,1,0,1,0,12,1,1,237,27042.273,0,0,0,0,0,0 +11510,14048,25106,25107,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.6224804,8.7515945,0,11,1,-5.4958382,0,-9,-9,2021,18,7,45,55,1,7,0,19.75375,19.75375,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,45.35,54.2,57.49,8.333333333333334,1,1,0,0,13,11,5,1,907.5,1065713.5,348443.94,344298.38,0,0,0,3906.4492 +11510,14048,25107,25106,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3657637,8.6918249,0,34,-1,8.0979567,0,3,3,2021,6,0,37,37,1,0,0,16.622864,16.622864,0,0,0,0,0,0,0,0,0,0,0,1.0585803,0,54.2,57.49,40.53,45.35,10,1,1,0,0,13,11,5,1,907.5,1065713.5,348443.94,344298.38,0,0,0,3906.4492 +11510,14049,25108,-9,25107,25106,1,1,29,0,0,0,1,1,-9,0,4,7.2806592,7.2317963,0,0,0,-1105.5615,0,2,1,2021,7,3,42,33,1,3,1,4.194026,4.194026,0,0,0,0,0,0,0,0,0,0,0,3.2215867,0,44.42,59.09,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,639,-101740.97,0,0,0,0,257.11801,598.73682 +11511,14050,25109,25111,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.8317194,8.7226934,0,1,-2,-38.030636,-9,2,2,2021,7,0,40,0,1,0,0,20.745306,20.745306,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,25.24,52.56,6.666666666666667,1,1,0,0,10,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25110,-9,25111,25109,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1013.5808,-9,2,2,2021,26,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,16.92,58.81,-9,-9,8.333333333333334,1,1,0,0,1,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25111,25109,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,0,0,1,2,-17.08111,-9,2,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.24,52.56,62.39,56.71,5,1,1,0,0,8,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25112,-9,25111,25109,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0481,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14051,25113,-9,25111,25109,1,0,19,0,2,0,2,2,-9,0,4,6.5743728,6.7180991,0,0,0,-950.85419,-9,2,2,2021,18,6,8,0,1,6,1,9.1601019,9.1601019,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,411,-127877.37,0,0,0,0,0,1271.027 +11512,14052,25114,25115,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.0139608,7.8384771,0,9,2,-10.785868,0,3,3,2021,11,0,22,22,1,0,0,15.655045,15.655045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,49,1.666666666666667,1,1,0,0,10,13,4,1,551,445265,314861.69,19553.691,0,0,0,1872.6655 +11512,14052,25115,25114,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5056243,7.0671444,0,9,-2,9.783659,0,3,2,2021,11,0,30,20,1,1,0,6.6687508,6.6687508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,10,13,4,1,551,445265,314861.69,19553.691,0,0,0,1872.6655 +11513,14053,25116,25117,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,7.8087373,8.1587715,0,9,-5,40.957561,0,3,2,2021,1,0,42,35,1,0,0,8.095274,8.095274,0,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,62.49,55.09,8.333333333333334,3,4,0,0,7,9,4,0,210.5,186080.94,116343.63,0,0,0,0,2242.6147 +11513,14053,25117,25116,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9552131,8.008234,0,9,5,-106.14351,0,3,1,2021,6,0,45,35,1,0,0,6.9653029,6.9653029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.59,54.8,8.333333333333334,3,4,0,0,7,9,4,0,210.5,186080.94,116343.63,0,0,0,0,2242.6147 +11514,14054,25118,25119,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.009304,9.1258726,0,3,-1,-1.0938342,0,2,2,2021,12,0,40,40,1,0,0,29.458092,29.458092,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.85,54.48,38.28,57.07,6.666666666666667,1,1,0,0,9,10,5,1,617.5,-77474.656,-14668.647,0,0,24735.445,0,2917.2061 +11514,14054,25119,25118,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,3,1,46.742889,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.8956065,0,38.28,57.07,42.85,54.48,6.666666666666667,1,1,0,0,0,10,5,1,617.5,-77474.656,-14668.647,0,0,24735.445,0,2917.2061 +11515,14055,25120,25121,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.1708899,8.0411692,0,8,3,32.181007,0,-9,-9,2021,9,0,37,37,1,1,0,7.3515301,7.3515301,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,45.81,58.99,8,1,1,0,0,1,4,4,1,599,171247.52,42140.914,91046.109,52902.02,2886.2808,1859.4177,2246.3457 +11515,14055,25121,25120,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9726996,8.4758263,0,8,-3,2.9384751,0,3,3,2021,11,0,37,37,1,0,0,10.930965,10.930965,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,52,55,3.333333333333333,1,1,0,0,9,4,4,1,599,171247.52,42140.914,91046.109,52902.02,2886.2808,1859.4177,2246.3457 +11515,14056,25122,-9,25121,25120,1,1,20,0,1,0,2,2,-9,0,4,6.8178959,6.4305673,0,0,0,-1055.6045,0,2,2,2021,11,0,15,18,1,2,1,5.3444405,5.3444405,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,2,1,157,-65779.102,-14228.964,0,0,5617.6431,0,-533.26654 +11516,14057,25123,-9,25124,25125,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.06641,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25124,25125,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.8717151,7.8535838,0,13,2,62.887794,0,2,1,2021,10,0,20,25,1,0,0,15.50344,15.50344,.05,.05,0,0,0,0,0,0,1,1,0,3.162571,0,59.53,56.44,46.21,58.07,6.666666666666667,2,3,0,0,3,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25125,25124,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,8.8513889,8.7568445,0,13,-2,-84.339043,0,2,2,2021,6,0,35,35,1,0,0,26.748981,26.748981,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.21,58.07,59.53,56.44,8.333333333333334,2,3,0,0,7,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25126,-9,25124,25125,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.61444,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11517,14058,25127,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.5761671,8.5915976,0,0,0,-1149.726,0,2,1,2021,11,0,45,47,1,0,0,11.409543,11.409543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,8,4,0,441,980082.31,219634.84,302882.38,0,0,0,1449.205 +11518,14059,25128,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.6579986,5.3437304,0,0,-1131.6686,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7924423,57.75,38.61,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1052,331232.97,51913.887,114356.8,0,1501.6733,0,2294.8777 +11519,14060,25129,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.950386,8.1944017,0,0,-1174.6016,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3385053,7.8261738,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,222,958711.44,360935.59,612449.63,0,0,0,2169.6084 +11519,14061,25130,-9,25129,-9,1,1,35,0,0,0,2,2,-9,0,3,9.2010984,9.3702803,0,0,0,-1022.1681,0,2,3,2021,6,1,30,30,1,1,0,39.798065,39.798065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,1,3,8,5,1,562,156451.36,104063.51,0,0,0,0,4043.6426 +11520,14062,25131,-9,-9,-9,1,0,56,1,3,0,3,3,-9,0,3,0,0,0,0,0,-883.06995,-9,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,8,1,1,771,-171263.3,0,0,0,0,0,0 +11520,14063,25132,-9,25133,25135,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.4224,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25133,25135,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,7.1523075,6.9407196,0,14,-5,58.603283,0,3,3,2021,16,5,16,16,1,5,0,9.183156,9.183156,0,0,.05,0,0,0,0,0,1,1,0,.44357976,0,30.23,32.32,33.78,48.09,1.666666666666667,2,3,0,0,7,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25134,-9,25133,25135,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1172.588,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25135,25133,25131,-9,1,1,37,1,3,0,2,2,-9,0,4,7.1829143,7.0618176,0,14,5,73.837364,0,3,3,2021,10,1,35,15,1,1,0,3.8871956,3.8871956,0,0,.05,0,0,0,0,0,1,1,0,0,0,33.78,48.09,30.23,32.32,5,2,3,0,0,10,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25136,-9,25133,25135,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.276,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11521,14064,25137,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.5235844,8.155139,0,0,0,-1077.0679,0,-9,3,2021,23,11,35,23,1,11,0,10.00549,10.00549,.05,.05,0,0,0,0,0,0,0,0,0,2.918025,0,23.68,55.51,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,4480,-55506.766,-38783.805,60543.328,0,0,0,1749.8899 +11521,14065,25138,-9,25137,-9,1,1,29,0,0,0,2,2,-9,0,5,8.0228958,8.3084259,0,0,0,-1030.0083,0,2,-9,2021,19,7,38,39,1,7,1,10.417969,10.417969,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,65,-126131.34,0,0,0,0,0,945.86774 +11522,14066,25139,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,6.6861353,6.584754,0,0,-935.50574,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.257483,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,607.5,-51586.43,-24135.406,75923.406,72780.68,0,0,1898.5271 +11522,14066,25140,-9,25139,-9,1,0,17,0,1,1,3,0,0,1,4,0,0,0,0,0,-984.7547,-9,1,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,38.73,-9,-9,0,1,1,0,0,0,1,2,0,607.5,-51586.43,-24135.406,75923.406,72780.68,0,0,1898.5271 +11523,14067,25141,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0393229,8.2714005,0,0,0,-964.62933,0,2,3,2021,6,0,36,35,1,0,0,8.7252789,8.7252789,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,3653,-140554.53,30871.68,0,0,0,0,1391.9866 +11524,14068,25142,25143,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.5453634,9.2564697,8.1889353,8,-6,-75.392159,0,2,2,2021,9,2,21,21,1,2,0,23.79225,23.79225,0,0,0,0,0,0,0,14.5,0,0,0,0,8.3737278,49.61,54.24,65.03,31.43,8.333333333333334,1,1,0,0,8,7,5,1,696.5,62799.719,21503.998,0,0,2836.9785,0,5147.2085 +11524,14068,25143,25142,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,6.8862553,8.2591057,7.8985891,28,6,45.836399,0,2,2,2021,7,0,10,30,1,0,0,15.396955,15.396955,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8523707,65.03,31.43,49.61,54.24,8.333333333333334,1,1,0,0,6,7,5,1,696.5,62799.719,21503.998,0,0,2836.9785,0,5147.2085 +11525,14069,25144,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.2957487,8.0457869,0,0,0,-946.66473,0,3,2,2021,8,0,37,37,1,0,0,9.8566628,9.8566628,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,712,684760.63,502264.84,223193.86,-6546.749,0,0,1308.0811 +11526,14070,25145,25146,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,57,-1,-62.541039,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,47.22,49.37,40.54,8.333333333333334,1,1,0,0,0,13,3,1,1248.5,870791.5,765793,240192.23,0,0,466.80237,3540.7813 +11526,14070,25146,25145,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,8.1584339,7.8906388,57,1,60.105736,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2943745,49.37,40.54,49.88,47.22,8.333333333333334,1,1,0,0,0,13,3,1,1248.5,870791.5,765793,240192.23,0,0,466.80237,3540.7813 +11527,14071,25147,-9,-9,-9,1,0,60,0,1,0,2,2,-9,0,3,8.0918436,7.9793983,5.7768016,0,0,-891.93262,0,3,3,2021,10,0,37,31,1,0,0,9.8165503,9.8165503,0,0,0,0,0,0,0,0,1,1,0,8.5558176,5.6687255,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,1464,1106392.9,747414.69,212159.05,0,0,0,3056.2861 +11528,14072,25148,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.9383998,6.027298,0,0,-996.62213,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1808329,38.42,47.13,-9,-9,1.666666666666667,1,1,0,1,3,11,2,1,470,356670.88,206236.2,115704.45,0,0,0,570.58624 +11529,14073,25149,-9,25150,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.2323,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,2041.5,0,0,0,0,0,0,1640.8357 +11529,14073,25150,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1031.8492,0,2,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,24.14,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,2041.5,0,0,0,0,0,0,1640.8357 +11530,14074,25151,25152,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9186039,4.6911402,7,-4,106.38372,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.954638,48.28,53.42,41.86,41.35,6.666666666666667,1,1,0,0,0,9,3,1,1945.5,1161735.3,780568.25,362766.94,0,-59.638638,0,2802.3147 +11530,14074,25152,25151,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7783937,7.9517508,47,4,-41.430984,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.518856,8.2189827,41.86,41.35,48.28,53.42,3.333333333333333,1,1,0,0,2,9,3,1,1945.5,1161735.3,780568.25,362766.94,0,-59.638638,0,2802.3147 +11531,14075,25153,25155,-9,-9,1,1,29,0,2,0,2,2,-9,0,2,8.3389521,8.3483324,0,6,0,47.597496,0,-9,-9,2021,28,10,40,60,1,10,0,17.373726,17.373726,0,0,0,0,0,0,0,0,1,1,0,8.0339508,0,41.18,54.59,57.33,53.46,6.666666666666667,1,1,0,0,7,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25154,-9,25155,25153,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.1737,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25155,25153,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.8062525,8.5309706,0,6,9,47.731647,0,2,3,2021,6,0,40,45,1,0,0,20.410435,20.410435,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,41.18,54.59,8.333333333333334,1,1,0,0,7,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25156,-9,25155,25153,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.4536,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11532,14076,25157,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9606214,7.9917817,0,0,0,-1041.2946,0,3,2,2021,6,0,32,28,1,0,0,10.364177,10.364177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,425,177931.88,49690.141,-1252.3384,33285.211,0,0,1815.7502 +11532,14077,25158,-9,25157,-9,1,1,25,0,0,0,2,2,-9,0,3,8.1828833,7.8608642,0,0,0,-1072.7308,0,2,3,2021,7,0,38,38,1,0,1,7.8872728,7.8872728,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,264,44621.84,0,0,0,0,0,1337.618 +11532,14078,25159,-9,25157,-9,1,0,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1131.6586,-9,2,3,2021,7,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1089892,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,1198,157521.55,0,0,0,0,0,-284.76605 +11533,14079,25160,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.6996856,6.3072977,0,0,-963.7395,0,3,3,2021,19,9,0,0,4,9,0,0,0,0,0,0,1,0,7.6386008,0,0,1,1,0,.98392552,6.6610346,46.62,26.18,-9,-9,5,1,1,0,0,0,13,2,1,369,98563.578,35417.313,129188.39,0,0,0,1961.8799 +11534,14080,25161,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1628838,8.4502516,0,0,0,-986.33435,0,2,2,2021,12,0,36,36,1,0,0,11.217868,11.217868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,478,-72158.555,-10032.852,126989.16,34053.949,0,0,1213.3168 +11535,14081,25162,25163,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.723588,7.9583468,48,5,-31.007853,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5759783,7.5937538,25.71,42.48,39.44,52.35,5,1,1,0,0,13,2,4,1,1487,1169661.3,784052.63,301713.38,0,0,0,4093.781 +11535,14081,25163,25162,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7154188,8.0293369,6.9645104,48,-5,35.589741,0,2,2,2021,15,2,8,1,1,2,0,27.311197,27.311197,0,0,0,1,0,0,0,0,1,1,0,3.2945657,6.8797793,39.44,52.35,25.71,42.48,8.333333333333334,1,1,0,0,13,2,4,1,1487,1169661.3,784052.63,301713.38,0,0,0,4093.781 +11536,14082,25164,25165,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1180487,8.1409197,0,7,-3,-68.823692,0,2,2,2021,12,1,43,43,1,1,0,10.682552,10.682552,.05,.05,0,0,0,0,0,2,0,0,0,2.6226218,0,38,62.48,49.35,59.64,3.333333333333333,1,1,0,0,12,11,5,1,565,370467.41,235063.59,106076.25,54103.93,0,1320.7117,2497.7847 +11536,14082,25165,25164,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.092288,7.9205623,0,7,3,56.946552,0,-9,-9,2021,11,0,40,43,1,0,0,9.7405062,9.7405062,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,38,62.48,5,1,1,0,0,6,11,5,1,565,370467.41,235063.59,106076.25,54103.93,0,1320.7117,2497.7847 +11537,14083,25166,-9,25167,25168,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-878.84186,0,2,3,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,1,7,1,1,393,47143.355,131389.08,0,0,0,981.15027,317.64246 +11537,14084,25167,25168,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,9,6,18.881416,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.88,31.45,59.14,52.5,8.333333333333334,1,1,0,0,9,7,3,1,1512.5,127122.72,96341.031,0,0,8404.8115,731.4801,1922.7531 +11537,14084,25168,25167,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9418731,7.7146544,0,9,-6,-4.1252055,0,-9,-9,2021,10,0,40,40,1,0,0,7.1914411,7.1914411,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,59.14,52.5,48.88,31.45,1.666666666666667,1,1,0,0,10,7,3,1,1512.5,127122.72,96341.031,0,0,8404.8115,731.4801,1922.7531 +11538,14085,25169,25170,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7705445,7.430624,0,7,-1,5.9101319,0,2,3,2021,8,0,16,12,1,0,0,17.06185,17.06185,.05,.05,0,0,0,0,0,2,0,0,0,1.5688224,0,47.85,52.43,54.67,41.24,6.666666666666667,1,1,0,0,10,12,5,1,320,158484.77,73718.914,118455.5,25239.059,0,0,3248.8047 +11538,14085,25170,25169,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.9019299,8.9491034,0,7,1,-35.607651,0,3,2,2021,10,1,44,40,1,1,0,18.627998,18.627998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,41.24,47.85,52.43,10,1,1,0,0,10,12,5,1,320,158484.77,73718.914,118455.5,25239.059,0,0,3248.8047 +11539,14086,25171,25173,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.3989811,8.1659851,0,8,0,-22.821669,0,2,1,2021,8,0,43,40,1,0,0,13.546028,13.546028,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.69,57.47,0,1,1,0,0,4,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11539,14086,25172,-9,25171,25173,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.4872,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11539,14086,25173,25171,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,9.0205708,8.9322777,0,8,0,11.463788,0,2,3,2021,10,0,38,50,1,0,0,19.55489,19.55489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.16,56.15,8.333333333333334,2,3,0,0,8,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11540,14087,25174,25175,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.8788228,7.7085309,0,1,0,-50.569126,-9,-9,-9,2021,7,0,40,0,1,0,0,6.9619823,6.9619823,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.15,42.53,17.59,57.03,10,2,3,0,0,0,4,3,1,757.5,-90309.773,-20182.379,0,0,0,0,1270.0137 +11540,14087,25175,25174,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,0,0,0,1,0,-41.425518,-9,2,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.59,57.03,60.15,42.53,3.333333333333333,4,2,0,0,3,4,3,1,757.5,-90309.773,-20182.379,0,0,0,0,1270.0137 +11541,14088,25176,25177,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2527895,7.5780115,9,-2,61.013641,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3582913,7.5965266,43.03,53.23,47.55,49.86,6.666666666666667,1,1,0,0,0,7,2,1,468.5,1165943.6,172309.72,389756.09,0,0,0,1220.6038 +11541,14088,25177,25176,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,9,2,-2.5881531,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,49.86,43.03,53.23,6.666666666666667,1,1,0,0,8,7,2,1,468.5,1165943.6,172309.72,389756.09,0,0,0,1220.6038 +11542,14089,25178,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,8.0929308,7.9294648,0,0,-1174.0782,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2773333,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,252,769053.94,443709.53,161474.14,0,0,0,1763.7152 +11543,14090,25179,25180,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,0,0,0,1,2,-66.270058,-9,-9,-9,2021,22,7,0,0,2,7,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.5078397,0,36.43,60.14,33.81,48.01,5,1,1,0,0,0,5,3,0,351,54652.699,72945.813,0,0,12946.649,0,897.03857 +11543,14090,25180,25179,-9,-9,1,0,23,0,0,0,1,1,1,0,3,8.0646439,8.2036076,0,1,-2,42.311855,-9,-9,-9,2021,22,9,37,0,1,9,0,9.9880199,9.9880199,0,0,0,0,0,0,0,0,0,0,0,1.9603461,0,33.81,48.01,36.43,60.14,5,1,1,0,0,5,5,3,0,351,54652.699,72945.813,0,0,12946.649,0,897.03857 +11544,14091,25181,25182,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.5341053,8.3601208,0,9,0,84.627487,0,3,-9,2021,14,2,104,104,1,2,0,4.5035205,4.5035205,.05,.05,0,0,0,0,0,0,0,0,0,4.0658069,0,43.88,39.38,47.15,55.39,6.666666666666667,1,1,0,0,10,5,4,1,804,239698.88,156788.28,117111.61,58366.836,1318.2012,0,2713.0742 +11544,14091,25182,25181,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.4340472,7.2593169,0,9,0,-62.974918,0,3,2,2021,14,4,39,39,1,4,0,4.470808,4.470808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,43.88,39.38,10,1,1,0,0,5,5,4,1,804,239698.88,156788.28,117111.61,58366.836,1318.2012,0,2713.0742 +11545,14092,25183,25184,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.4340057,6.5819306,10,-2,-41.127155,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0067663,6.6703358,54.2,57.49,58.72,51.29,10,1,1,0,0,7,12,2,1,675.5,277896.28,124073.88,133660.56,0,0,0,1096.5547 +11545,14092,25184,25183,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,10,2,8.0057278,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8122473,0,58.72,51.29,54.2,57.49,8.333333333333334,1,1,0,0,9,12,2,1,675.5,277896.28,124073.88,133660.56,0,0,0,1096.5547 +11546,14093,25185,25187,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,7.8374929,8.1599579,0,4,-6,-120.15177,0,2,3,2021,5,0,50,25,1,0,0,5.6263261,5.6263261,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11546,14093,25186,-9,25185,25187,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.0511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11546,14093,25187,25185,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.043582,7.7083092,0,4,6,93.682838,0,-9,-9,2021,8,0,20,15,1,0,0,12.188162,12.188162,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,10,1,1,0,0,2,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11547,14094,25188,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.90179,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.090162,0,21.96,32.36,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,428,36760.82,0,19980.197,0,0,0,2076.1702 +11548,14095,25189,25191,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.3112798,7.2958422,0,26,-4,12.4547,0,2,2,2021,10,0,26,8,1,0,0,8.004837,8.004837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,52.08,53.98,50.87,6.666666666666667,1,1,0,0,11,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25190,-9,25189,25191,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.9078,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25191,25189,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.5587263,7.9619012,0,26,4,-1.1032761,0,-9,-9,2021,8,0,54,48,1,0,0,6.8988681,6.8988681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,51.14,52.08,8.333333333333334,1,1,0,0,7,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25192,-9,25189,25191,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7581,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11549,14096,25193,25194,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5783939,8.8211231,0,13,4,59.852753,0,2,2,2021,16,6,10,3,1,6,0,64.143745,64.143745,.05,.05,0,0,0,0,0,0,0,0,0,7.2278876,0,45.09,26.67,49.04,55.86,8.333333333333334,1,1,0,0,10,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25194,25193,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.9582243,9.2436485,0,10,-4,-73.019363,0,-9,-9,2021,11,0,45,40,1,0,0,29.979588,29.979588,.05,.05,0,0,0,0,0,0,0,0,0,8.4730616,0,49.04,55.86,45.09,26.67,8.333333333333334,1,1,0,0,12,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25195,-9,25193,25194,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-999.92841,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25196,-9,25193,25194,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.1505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11550,14097,25197,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,7.3152614,7.3376241,0,0,0,-1048.4552,0,2,2,2021,17,6,16,16,1,6,0,10.987451,10.987451,.05,.05,0,0,0,0,0,7,1,0,1,0,0,39.31,52.14,-9,-9,6.666666666666667,2,3,0,0,8,8,2,0,1433,-124140.25,126932.52,0,0,0,0,1381.3414 +11550,14098,25198,-9,25197,25200,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8583,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11550,14098,25199,-9,25197,25200,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.17505,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11550,14098,25200,-9,-9,-9,1,1,57,0,2,0,1,1,-9,1,1,0,0,0,0,0,-1110.651,-9,1,1,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,19.91,25.08,-9,-9,0,1,1,0,1,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11551,14099,25201,-9,25202,25203,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-820.49872,-9,3,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14099,25202,25203,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,7.494916,7.8449502,0,23,4,73.973526,0,1,1,2021,13,1,25,30,1,1,0,9.2508831,9.2508831,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.7,45.49,51,56,6.666666666666667,1,1,0,0,12,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14099,25203,25202,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.9786949,8.7855558,0,11,-4,-71.959663,-9,-9,-9,2021,10,0,42,0,1,1,0,16.604572,16.604572,.05,.05,0,0,0,0,0,0,1,1,0,2.8476117,0,51,56,48.7,45.49,7,1,1,0,0,1,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14100,25204,-9,25202,25203,1,1,20,0,1,0,3,3,-9,0,4,7.5313296,7.6272311,0,0,0,-1034.0753,0,3,2,2021,9,0,40,0,1,0,1,5.1126871,5.1126871,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,50.52,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,371,-62910.617,0,0,0,0,0,1053.6183 +11552,14101,25205,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,3.470063,3.7419689,0,0,-1042.3397,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7033257,57.63,22.13,-9,-9,10,1,1,0,0,0,9,2,1,411,530677.81,-50185.895,274494.38,0,0,0,643.39111 +11553,14102,25206,25208,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,7.6061764,7.7349086,0,8,-8,-51.83337,0,2,3,2021,10,0,20,30,1,0,0,11.781004,11.781004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.31,61.59,51.26,50.95,6.666666666666667,1,1,0,0,9,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11553,14102,25207,-9,25206,25208,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.8465,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11553,14102,25208,25206,-9,-9,1,1,46,1,1,0,1,1,-9,0,3,9.8717098,9.3557024,0,8,8,13.616819,0,2,2,2021,10,2,49,50,1,2,0,35.181023,35.181023,.05,.05,0,0,0,0,0,0,0,0,0,3.6177917,0,51.26,50.95,36.31,61.59,8.333333333333334,1,1,0,0,9,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11554,14103,25209,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6639643,7.3286872,0,0,-965.70691,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2592268,7.6308465,57.27,35.61,-9,-9,10,1,1,0,0,0,10,3,1,3687,191778.56,236430.95,0,0,0,0,2274.7795 +11555,14104,25210,25211,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.6876769,7.9782891,0,4,-2,170.90163,0,1,2,2021,6,0,40,40,1,0,0,6.6362109,6.6362109,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,7,11,3,1,1142,12973.85,0,0,0,0,0,1439.5308 +11555,14104,25211,25210,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,4,2,-68.716736,1,-9,-9,2021,10,1,0,12,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,3,1,1142,12973.85,0,0,0,0,0,1439.5308 +11556,14105,25212,25214,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,0,0,0,2,8,24.908173,0,2,1,2021,13,2,0,44,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.17,52.08,46.27,57.3,8.333333333333334,3,4,0,0,10,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11556,14105,25213,-9,25212,25214,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.0059,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11556,14105,25214,25212,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,6.580111,6.7173328,0,2,-8,130.09016,0,-9,-9,2021,13,2,20,0,1,2,0,5.7402844,5.7402844,0,0,.05,0,0,0,0,0,1,1,0,0,0,46.27,57.3,48.17,52.08,6.666666666666667,3,4,0,0,12,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11557,14106,25215,25216,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.3314753,7.6550455,6.1942968,34,0,-153.84315,0,2,1,2021,10,0,16,16,1,0,0,9.709177,9.709177,0,0,0,0,0,0,0,0,1,1,0,2.8196077,6.1269846,45.91,59.89,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,643.5,1221556.3,1088947.5,320534,0,0,0,5410.5811 +11557,14106,25216,25215,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.6841202,8.8166494,33,0,-62.615547,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.6999731,8.4329023,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,5,9,5,1,643.5,1221556.3,1088947.5,320534,0,0,0,5410.5811 +11558,14107,25217,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.0744052,5.8887029,0,0,-999.65729,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0197945,53.4,36.44,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1088,347869.16,169852.39,311999.97,0,0,0,1617.6826 +11559,14108,25218,25219,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.2369471,7.7449899,12,0,9.989172,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2195644,37.44,35.75,39.15,41.42,5,1,1,0,0,0,12,3,1,471,948152.38,307305.63,170085.11,0,0,0,1904.1556 +11559,14108,25219,25218,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1101799,6.8503776,12,0,28.31241,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,3.7233241,0,0,1,1,0,0,6.9221034,39.15,41.42,37.44,35.75,6.666666666666667,1,1,0,0,0,12,3,1,471,948152.38,307305.63,170085.11,0,0,0,1904.1556 +11560,14109,25220,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.306776,8.0546341,0,0,0,-980.43738,0,2,2,2021,21,9,42,42,1,9,0,10.534557,10.534557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,17.63,68.89,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,3218,133971,37499.324,0,0,13159.848,-512.367,1438.8921 +11561,14110,25221,25224,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5682707,8.4378958,0,10,1,76.564507,0,3,3,2021,11,0,46,37,1,0,0,7.4978476,7.4978476,0,0,0,0,0,0,0,0,1,1,0,3.8456872,0,49.52,56.95,49.35,59.64,8.333333333333334,2,3,0,0,8,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25222,-9,25224,25221,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.644,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25223,-9,25224,25221,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.99835,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25224,25221,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.8921461,7.5781298,0,10,-1,44.209885,0,3,3,2021,9,0,52,44,1,0,0,5.2901101,5.2901101,0,0,0,0,0,0,0,0,1,1,0,4.2525764,0,49.35,59.64,49.52,56.95,8.333333333333334,2,3,0,0,7,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11562,14111,25225,25226,-9,-9,1,1,55,0,0,0,1,1,-9,1,1,0,7.2013035,7.2489357,14,16,-102.68082,0,3,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7416477,7.3545237,54.78,25.18,58.89,48.6,1.666666666666667,1,1,0,0,6,2,3,1,2204,1243449.9,915854.13,301876.38,0,0,0,2961.7769 +11562,14111,25226,25225,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.2140961,7.6072822,0,14,-16,49.961464,0,2,1,2021,4,0,34,46,1,0,0,10.680467,10.680467,0,0,0,0,0,0,0,2,1,1,0,2.5226417,0,58.89,48.6,54.78,25.18,8.333333333333334,1,1,0,0,8,2,3,1,2204,1243449.9,915854.13,301876.38,0,0,0,2961.7769 +11563,14112,25227,25228,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.3724966,8.2316971,0,8,-3,-70.781189,0,2,2,2021,4,0,39,40,1,0,0,11.748105,11.748105,0,0,0,0,0,0,0,0,0,0,0,0,0,49.65,51.62,62.39,56.71,8.333333333333334,1,1,0,0,12,5,4,1,226,-32514.34,67918.219,168012.63,64711.594,21050.516,1894.2932,1394.2361 +11563,14112,25228,25227,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,0,0,0,8,3,173.68924,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,49.65,51.62,10,1,1,0,0,13,5,4,1,226,-32514.34,67918.219,168012.63,64711.594,21050.516,1894.2932,1394.2361 +11564,14113,25229,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.5350914,8.8262968,0,0,0,-869.59668,0,3,2,2021,6,0,52,50,1,0,0,19.278101,19.278101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,1213,426275.13,311932.69,159581.95,0,46584.988,0,1925.6333 +11564,14114,25230,-9,25229,-9,1,1,20,0,0,0,2,2,-9,0,4,6.967587,6.8942027,0,0,0,-972.72449,-9,1,-9,2021,11,1,40,0,1,1,1,2.3217032,2.3217032,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,1275,147429.45,0,0,0,0,0,33.933937 +11564,14115,25231,-9,25229,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-930.39026,-9,1,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0023093,0,38.63,56.7,-9,-9,5,1,1,0,0,0,9,1,1,420,75718.602,0,0,0,15508.188,0,-524.59247 +11565,14116,25232,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5778542,8.8205471,0,0,0,-1022.627,0,-9,-9,2021,12,4,35,35,1,4,0,17.111622,17.111622,.05,.05,0,0,0,0,0,0,0,0,0,2.0847406,0,22.02,51.31,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,1612,-29617.082,12569.496,0,0,3023.9741,0,1754.3591 +11566,14117,25233,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.6604252,7.3203115,4.332674,0,0,-996.46436,0,3,3,2021,9,0,30,30,1,0,0,7.5781207,7.5781207,0,0,0,0,0,0,0,0,1,1,0,3.019851,4.1411629,57.57,49.69,-9,-9,5,1,1,0,0,6,9,3,1,764,296465.88,0,126594.02,0,0,0,515.41974 +11567,14118,25234,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.4499359,8.4307785,0,0,0,-885.24585,0,-9,-9,2021,9,0,48,48,1,0,0,10.251869,10.251869,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,13,5,5,1,591,463264.75,87001.039,130475.15,47585.004,0,0,2068.2668 +11568,14119,25235,25236,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,7.9074893,8.0375395,0,11,-1,34.465637,0,3,2,2021,6,0,15,15,1,0,0,26.266167,26.266167,.05,.05,0,0,0,0,0,0,0,0,0,5.4322276,0,57.33,53.46,46.43,47.35,8.333333333333334,2,3,0,0,11,8,3,1,688.5,234247.88,71800.211,0,0,3007.8425,-985.18811,5303.0713 +11568,14119,25236,25235,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.4380054,7.6913648,0,11,1,-142.09363,0,3,3,2021,13,1,15,15,1,1,0,16.327682,16.327682,0,0,0,0,0,0,0,0,0,0,0,8.8507891,0,46.43,47.35,57.33,53.46,8.333333333333334,2,3,0,0,9,8,3,1,688.5,234247.88,71800.211,0,0,3007.8425,-985.18811,5303.0713 +11569,14120,25237,25239,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.289629,8.1919022,0,7,-3,25.416315,0,2,2,2021,11,0,21,25,1,0,0,19.069153,19.069153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25238,-9,25237,25239,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1064.4141,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25239,25237,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.9804554,8.8744383,0,7,3,84.529472,0,2,2,2021,11,0,46,47,1,0,0,24.357019,24.357019,.05,.05,0,0,0,0,0,0,1,1,0,2.9398913,0,57.06,57.76,46.9,56.66,10,1,1,0,0,8,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25240,-9,25237,25239,1,1,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-995.19568,-9,1,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11570,14121,25241,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2388535,9.0334978,0,0,0,-985.08588,0,2,3,2021,8,0,45,52,1,0,0,21.309288,21.309288,.05,.05,0,0,0,0,0,0,0,0,0,6.8090625,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,814,1232229.6,753619.13,193251.48,0,0,0,3360.3984 +11571,14122,25242,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.18756,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.51,44.7,-9,-9,10,1,1,0,0,2,9,1,0,247,111236.6,0,0,0,0,0,1474.7736 +11572,14123,25243,-9,25245,25244,1,0,13,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1074.0686,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14123,25244,25245,-9,-9,1,1,50,2,4,0,3,3,-9,1,3,0,0,0,8,6,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,54.51,42.32,44.32,8.333333333333334,1,1,0,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14123,25245,25244,-9,-9,1,0,44,2,4,0,3,3,-9,1,2,0,0,0,8,-6,0,0,3,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.32,44.32,52,54.51,5,1,1,0,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14124,25246,-9,25248,-9,1,1,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-937.97333,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25247,-9,25248,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-890.27496,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25248,-9,25245,25244,1,0,25,2,4,0,2,2,-9,0,4,0,0,0,0,0,-939.00623,0,3,3,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,1,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25249,-9,25248,-9,1,1,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-972.77704,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14125,25250,-9,25245,25244,1,0,20,2,4,1,2,0,0,0,4,0,0,0,0,0,-891.07288,-9,3,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,13,1,0,101,0,0,0,0,0,0,2002.8616 +11572,14126,25251,-9,25245,25244,1,1,19,2,4,0,2,2,-9,0,3,7.7760253,8.1077509,0,0,0,-1048.0192,0,3,3,2021,12,0,36,20,1,0,1,7.4560876,7.4560876,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,444,79896,5719.9932,0,0,6691.8818,0,950.74988 +11573,14127,25252,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.6805592,8.8474302,0,0,0,-868.94031,0,3,3,2021,10,0,38,40,1,1,0,19.963305,19.963305,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,8,1,1,0,1,6,8,5,0,352,652101.44,290255.53,359979.72,223840.17,0,1120.0402,3000.5159 +11574,14128,25253,-9,25254,25255,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1451,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25254,25255,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,6.9870267,7.0612726,0,10,1,-121.02983,0,-9,2,2021,10,0,20,0,1,0,0,6.8019228,6.8019228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.73,49.64,41.58,52.86,10,1,1,0,0,9,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25255,25254,-9,-9,1,1,36,1,2,0,1,1,-9,0,2,8.3603306,8.3911104,0,10,-1,72.251503,0,-9,-9,2021,14,2,37,37,1,2,0,9.7140808,9.7140808,.05,.05,0,0,0,0,0,0,1,1,0,7.0935521,0,41.58,52.86,53.73,49.64,5,1,1,0,0,10,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25256,-9,25254,25255,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.75,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11575,14129,25257,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,0,0,-935.95886,0,3,2,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,5.5164161,0,0,1,1,0,1.8134549,0,33.98,26.69,-9,-9,3,1,1,0,0,0,11,1,0,146,-72059.578,0,0,0,0,0,2222.7065 +11576,14130,25258,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5233669,8.5050421,0,0,0,-1059.8479,0,3,3,2021,9,0,42,42,1,0,0,15.746554,15.746554,0,0,0,0,0,0,0,0,0,0,0,0,0,46.51,44.85,-9,-9,8.333333333333334,2,3,0,0,13,8,5,1,230,255930.77,-144571.17,345835.09,10365.324,0,0,2065.8318 +11577,14131,25259,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3071909,9.4346094,0,0,0,-1038.2881,0,3,3,2021,8,0,79,45,1,0,0,16.776314,16.776314,.05,.05,0,0,0,0,0,0,0,0,0,4.7397318,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,790,459440.34,299498.31,247607.77,108352.13,5730.0293,0,4006.4409 +11578,14132,25260,25261,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2523899,9.4091043,0,3,-2,.54946303,0,2,2,2021,6,1,40,40,1,1,0,33.770142,33.770142,0,0,0,0,0,0,0,0,0,0,0,1.6976999,0,57.16,56.15,16.68,60.08,8.333333333333334,1,1,0,0,15,5,5,1,1968,1251978.3,992123.25,102445.58,0,0,0,5458.9404 +11578,14132,25261,25260,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.6034374,8.746726,0,3,2,66.992767,0,-9,-9,2021,25,9,45,40,1,9,0,16.545982,16.545982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.68,60.08,57.16,56.15,1.666666666666667,1,1,0,0,4,5,5,1,1968,1251978.3,992123.25,102445.58,0,0,0,5458.9404 +11579,14133,25262,25263,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.8006434,7.7491064,56,2,92.958176,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9961772,7.3627725,54,46,52,45,8,1,1,0,0,0,7,3,1,406,762752,128487.64,351254.94,0,0,0,3865.7207 +11579,14133,25263,25262,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.6456313,5.5813527,3,-2,-132.69919,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3244934,5.949532,52,45,54,46,8,1,1,0,0,0,7,3,1,406,762752,128487.64,351254.94,0,0,0,3865.7207 +11580,14134,25264,25265,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1848803,8.0169535,0,39,-2,-157.92648,0,3,3,2021,15,3,33,32,1,3,0,13.554299,13.554299,0,0,0,0,0,0,0,2,0,0,0,0,0,39.86,47.68,55.13,39.27,6.666666666666667,1,1,0,0,8,12,5,1,443,1216783,788368.25,330178.53,0,0,0,3728.0286 +11580,14134,25265,25264,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.725318,8.867012,0,39,2,-122.82762,0,2,2,2021,16,4,60,60,1,4,0,12.589422,12.589422,.05,.05,.05,0,0,0,0,0,0,0,0,1.4320471,0,55.13,39.27,39.86,47.68,5,1,1,0,0,8,12,5,1,443,1216783,788368.25,330178.53,0,0,0,3728.0286 +11581,14135,25266,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1080.5087,-9,3,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,1,1,0,7,1,0,840,-175354.97,0,0,0,0,0,0 +11582,14136,25267,25268,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.2486086,8.1936092,7.7345362,34,1,94.678001,0,2,3,2021,11,0,6,10,1,0,0,26.449312,26.449312,.05,.05,0,0,0,0,0,2,1,1,0,1.2159745,7.528904,48.53,58.91,54.51,43.6,8.333333333333334,1,1,0,0,10,6,5,1,1194,211251,383364.75,201981.92,111272.98,11909.101,4212.3853,4284.3955 +11582,14136,25268,25267,-9,-9,1,0,56,0,0,0,2,2,-9,1,4,8.4322405,8.8873091,0,34,-1,-55.79694,0,3,3,2021,8,1,38,38,1,1,0,16.061102,16.061102,.05,.05,0,0,0,0,0,0,1,1,0,2.8628099,0,54.51,43.6,48.53,58.91,10,1,1,0,0,9,6,5,1,1194,211251,383364.75,201981.92,111272.98,11909.101,4212.3853,4284.3955 +11583,14137,25269,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.4276733,8.1921453,0,0,0,-928.99567,0,-9,-9,2021,20,8,35,35,1,8,0,18.522598,18.522598,0,0,0,0,0,0,0,0,1,1,0,3.6300445,0,35.45,54.01,-9,-9,5,2,3,0,0,9,7,5,1,407,-91757.109,0,0,0,0,0,1879.9844 +11584,14138,25270,25271,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.3897476,6.1335354,34,5,135.29114,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9717021,5.793385,60.12,54.8,48.28,60.18,10,1,1,0,0,10,9,2,0,487.5,394123.38,-4247.5293,289069.72,0,5509.9761,0,1037.9175 +11584,14138,25271,25270,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,34,-5,38.568668,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.12,54.8,10,1,1,0,0,0,9,2,0,487.5,394123.38,-4247.5293,289069.72,0,5509.9761,0,1037.9175 +11585,14139,25272,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4154606,8.8801718,0,0,0,-996.08984,0,2,2,2021,19,7,47,57,1,7,0,12.024685,12.024685,0,0,.05,0,0,0,0,7,0,0,0,0,0,32.84,60.85,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,1587,16921.508,142502.67,0,0,0,0,1909.4159 +11586,14140,25273,25274,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8636951,7.8814216,0,5,-3,24.592482,0,-9,2,2021,12,2,38,23,1,2,0,7.7910333,7.7910333,.05,.05,0,0,0,0,0,0,0,0,0,.054082222,0,51.77,58.57,34.41,57,8.333333333333334,1,1,0,0,14,7,5,1,201,779028.63,361743.25,328512.56,24796.172,0,0,5501.1245 +11586,14140,25274,25273,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.2442932,9.3614035,0,5,3,-16.57304,0,-9,-9,2021,16,5,50,45,1,5,0,26.270445,26.270445,.05,.05,.05,0,0,0,0,0,0,0,0,4.23353,0,34.41,57,51.77,58.57,8.333333333333334,1,1,0,0,3,7,5,1,201,779028.63,361743.25,328512.56,24796.172,0,0,5501.1245 +11587,14141,25275,25276,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.9522772,9.8267097,0,30,1,23.34268,0,2,2,2021,9,0,41,41,1,0,0,48.948559,48.948559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,13,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11587,14141,25276,25275,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,30,-1,40.937668,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4864736,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11587,14141,25277,-9,25276,25275,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.04602,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11588,14142,25278,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-927.76892,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,4.100369,20.111181,48.842197,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,2,1,563,-22654.113,0,0,0,0,0,2.9924765 +11589,14143,25279,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8003106,7.5816412,0,0,0,-997.18079,0,2,2,2021,12,2,40,36,1,2,1,6.1507673,6.1507673,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,8,4,3,1,911,-39173.043,0,0,0,0,0,1512.9563 +11590,14144,25280,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.775085,7.8513746,0,0,-975.99078,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3920498,7.50808,19.35,65.76000000000001,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,243,1036168.9,424724.69,456357.78,0,0,0,2534.6799 +11591,14145,25281,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.9401278,5.607666,0,0,-1005.2571,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2143559,5.5214405,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1272,608494,0,627605.44,0,0,0,1541.3673 +11592,14146,25282,-9,-9,-9,1,1,33,1,1,0,1,1,-9,0,5,9.7809553,9.4923544,0,0,0,-1001.3996,0,1,1,2021,0,0,55,45,1,0,0,39.494873,39.494873,.05,.05,0,0,0,0,0,0,0,0,0,4.0974898,0,39.69,62.39,-9,-9,10,1,1,0,0,10,2,5,1,1109.5,661885.75,306309.81,351178.88,156089.25,115.2449,0,24826.609 +11592,14146,25283,-9,-9,25282,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.67285,-9,-9,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1109.5,661885.75,306309.81,351178.88,156089.25,115.2449,0,24826.609 +11593,14147,25284,25285,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9074273,7.8457541,0,2,-10,-18.128563,0,2,2,2021,10,0,16,20,1,0,0,22.411182,22.411182,0,0,0,0,0,0,0,2,0,0,0,0,0,51.94,55.88,48.87,58.55,6.666666666666667,1,1,0,0,9,7,4,1,320.5,1233542.3,131118.66,420008.25,0,0,0,1993.4263 +11593,14147,25285,25284,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5388145,7.5682945,2,10,-11.004634,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3198404,7.5027604,48.87,58.55,51.94,55.88,8.333333333333334,1,1,0,0,7,7,4,1,320.5,1233542.3,131118.66,420008.25,0,0,0,1993.4263 +11594,14148,25286,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.575387,6.9460874,0,0,-918.39435,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.290338,6.9773479,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,5,10,2,1,371,20703.92,129935.07,0,0,0,0,670.61298 +11595,14149,25287,25288,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.9235325,7.9992919,0,24,3,4.2233911,0,2,2,2021,7,0,42,36,1,0,0,6.916183,6.916183,.05,.05,0,0,0,0,0,0,0,0,0,5.5374312,0,49.52,48.92,26.41,36.34,6.666666666666667,1,1,0,0,13,5,3,1,119,247597.14,263511.66,113288.77,0,0,547.09808,1361.5629 +11595,14149,25288,25287,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,5.4256358,5.5798554,0,24,-3,-.27610573,0,3,2,2021,24,10,50,50,1,10,0,.48466194,.48466194,.05,.05,.05,0,0,0,0,0,0,0,0,.40477601,0,26.41,36.34,49.52,48.92,3.333333333333333,1,1,0,0,13,5,3,1,119,247597.14,263511.66,113288.77,0,0,547.09808,1361.5629 +11596,14150,25289,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.5159,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,1.8986604,2.2582235,24.302464,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,4,2,0,431,0,0,0,0,0,0,1364.0111 +11597,14151,25290,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.5348496,8.1303329,0,0,0,-1030.26,0,1,-9,2021,11,0,36,35,1,0,0,8.7459335,8.7459335,.05,.05,0,0,0,0,0,0,0,0,0,.94478542,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,1157,-15969.371,10627.563,0,0,40004.352,0,975.48297 +11598,14152,25291,25292,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,3,3,-191.70517,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,3.7860994,0,59.74,45.34,36.08,60.5,10,1,1,0,0,5,13,5,1,457.5,2322034.8,1939231.1,271668.84,59124.492,0,9057.7822,3277.5254 +11598,14152,25292,25291,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.0831947,9.15026,0,3,-3,-53.127739,0,2,3,2021,18,5,40,52,1,5,0,30.068178,30.068178,.05,.05,0,0,0,0,0,2,0,0,0,2.2555792,0,36.08,60.5,59.74,45.34,6.666666666666667,1,1,0,0,8,13,5,1,457.5,2322034.8,1939231.1,271668.84,59124.492,0,9057.7822,3277.5254 +11599,14153,25293,25294,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.7657976,7.6603317,0,10,-12,48.817383,0,3,2,2021,8,1,5,5,1,1,0,53.825462,53.825462,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,49.96,56.89,6.666666666666667,1,1,0,0,9,10,5,1,255.5,264543.31,228043.42,233673.69,106694.02,0,2405.7173,2681.5181 +11599,14153,25294,25293,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.3046598,8.6873884,0,10,12,63.890533,0,2,2,2021,7,0,48,45,1,0,0,11.712433,11.712433,.05,.05,0,0,0,0,0,0,0,0,0,2.0689213,0,49.96,56.89,51.49,57.57,6.666666666666667,1,1,0,0,10,10,5,1,255.5,264543.31,228043.42,233673.69,106694.02,0,2405.7173,2681.5181 +11600,14154,25295,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.5758142,8.3713408,0,0,0,-976.81415,0,-9,-9,2021,11,0,47,38,1,0,0,15.701879,15.701879,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,429,49393.734,67251.445,0,0,0,0,2164.407 +11601,14155,25296,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.1328468,6.8622899,0,0,-1014.6143,-9,3,3,2021,18,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9699483,39.8,25.14,-9,-9,5,1,1,0,0,0,11,2,1,115,616822.44,145552.05,171269.98,0,0,-888.82324,2377.2764 +11602,14156,25297,-9,-9,-9,1,0,51,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1005.2389,0,2,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,33.81,39.98,-9,-9,3.333333333333333,1,1,1,1,4,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11602,14156,25298,-9,25297,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-863.44031,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11602,14156,25299,-9,25297,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1023.1836,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11603,14157,25300,25301,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3156204,8.2642288,0,9,-8,86.934204,0,3,3,2021,12,1,29,29,1,1,0,20.170343,20.170343,0,0,0,0,0,0,0,0,1,1,0,4.0351257,0,43.2,59.97,47.02,44.6,8.333333333333334,1,1,0,0,10,9,4,1,541.5,1333169.1,1022219.4,329818.19,0,0,0,2554.1157 +11603,14157,25301,25300,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6487174,7.6285753,9,8,63.567757,0,3,3,2021,16,4,0,0,4,4,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,1.9687438,7.6289282,47.02,44.6,43.2,59.97,6.666666666666667,1,1,0,0,8,9,4,1,541.5,1333169.1,1022219.4,329818.19,0,0,0,2554.1157 +11603,14158,25302,-9,25300,25301,1,1,24,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1159.3132,0,1,2,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.870000000000001,48.95,-9,-9,3.333333333333333,1,1,1,1,6,9,1,1,1063,-49861.734,0,0,0,0,0,1066.7301 +11604,14159,25303,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1044.9838,0,1,1,2021,10,0,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,7,3,4,1,0,8,9,2,1,748,-15153.125,0,0,0,0,0,-4.1008749 +11605,14160,25304,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.8863993,9.8261127,0,0,0,-1141.27,0,2,1,2021,18,7,50,58,1,7,0,30.865877,30.865877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,3.333333333333333,1,1,0,0,13,5,5,1,486,829726.13,719921.75,134567.66,0,0,-338.27191,5505.6597 +11605,14161,25305,-9,25304,-9,1,0,23,0,0,0,1,1,-9,0,4,0,5.5673862,5.5364418,0,0,-1005.9088,1,1,-9,2021,11,1,0,30,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8261847,0,38.91,60.5,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,497,-100790.52,0,0,0,0,0,387.14264 +11606,14162,25306,-9,25309,25307,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.34064,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25307,25309,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.2946405,8.240798,0,15,5,-119.67461,0,2,2,2021,4,0,38,37,1,0,0,13.437831,13.437831,.05,.05,.05,0,0,0,0,0,1,1,0,4.7490864,0,58.15,52.91,46.91,59.62,8.333333333333334,1,1,0,0,9,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25308,-9,25309,25307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.559,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25309,25307,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.6370287,8.816844,0,11,-5,-126.93921,0,2,2,2021,11,0,52,55,1,0,0,16.359638,16.359638,.05,.05,0,0,0,0,0,0,1,1,0,1.9296129,0,46.91,59.62,58.15,52.91,8.333333333333334,1,1,0,0,10,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11607,14163,25310,25311,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.3527174,7.6507897,45,3,-50.019794,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1834304,7.1589322,53,47,57.16,56.15,7,1,1,0,0,0,5,3,1,2757,431198.69,233038.22,128926.23,0,0,0,1929.4504 +11607,14163,25311,25310,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.1605697,6.3833647,45,-3,122.42723,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7782435,6.2931733,57.16,56.15,53,47,8.333333333333334,1,1,0,0,6,5,3,1,2757,431198.69,233038.22,128926.23,0,0,0,1929.4504 +11608,14164,25312,-9,-9,25313,1,1,53,0,0,0,3,3,-9,0,5,7.9754763,8.0087423,0,0,0,-1058.0898,0,2,2,2021,6,0,40,40,1,0,0,7.6156712,7.6156712,.05,.05,0,0,0,0,0,0,1,1,0,.71781301,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,600,375353.31,460115.78,0,0,13042.809,2068.9609,733.24805 +11608,14165,25313,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,3.8387094,3.4755852,0,0,-1011.187,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,2.3474524,27.932072,21.811651,0,1,1,0,5.2927942,3.7142503,55,45,-9,-9,7,1,1,0,0,0,11,2,1,818,23411.143,4354.4116,78840.609,0,0,0,1071.0032 +11609,14166,25314,25315,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.1807275,7.190578,45,3,80.204254,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7294054,7.1521888,62.39,56.71,58.98,7.33,10,1,1,0,0,14,12,3,1,190.5,893437.69,801402.88,201103.44,0,0,0,987.66797 +11609,14166,25315,25314,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.3468323,6.0868711,45,-3,131.53377,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1144552,58.98,7.33,62.39,56.71,8.333333333333334,1,1,0,0,12,12,3,1,190.5,893437.69,801402.88,201103.44,0,0,0,987.66797 +11610,14167,25316,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-939.1264,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.5577047,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,12,5,1,1,359,137227.86,0,0,0,0,0,233.53059 +11611,14168,25317,25318,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.163352,8.8474026,0,10,-4,-16.025175,0,2,2,2021,11,2,35,35,1,2,0,23.713764,23.713764,.05,.05,0,0,0,0,0,0,0,0,0,6.2178769,0,46.73,57.01,28.1,66.68000000000001,8.333333333333334,1,1,0,0,10,8,5,1,702.5,1506303.8,1447740.5,375607.44,252041.58,19720.914,10658.174,5317.7139 +11611,14168,25318,25317,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.2457037,8.2016478,0,10,4,-27.163582,0,2,2,2021,22,10,72,37,1,10,0,6.9212551,6.9212551,.05,.05,0,0,0,0,0,0,0,0,0,6.0863552,0,28.1,66.68000000000001,46.73,57.01,5,1,1,0,0,6,8,5,1,702.5,1506303.8,1447740.5,375607.44,252041.58,19720.914,10658.174,5317.7139 +11612,14169,25319,25320,-9,-9,1,1,29,0,0,0,3,3,-9,0,3,7.9358869,7.950613,0,6,2,-64.551819,0,3,2,2021,9,0,43,43,1,0,0,6.94451,6.94451,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,6.666666666666667,1,1,0,0,7,10,4,1,422.5,107272.41,-57319.172,42336.43,38057.223,6150.2842,0,1635.0791 +11612,14169,25320,25319,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.2295313,8.3534517,0,6,-2,37.931664,0,-9,-9,2021,6,0,38,33,1,0,0,12.315432,12.315432,0,0,0,0,0,0,0,0,0,0,0,3.7765665,0,51.73,58.82,52,54.51,6.666666666666667,1,1,0,0,7,10,4,1,422.5,107272.41,-57319.172,42336.43,38057.223,6150.2842,0,1635.0791 +11613,14170,25321,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,8.4682026,8.2435064,0,0,-898.86334,0,3,3,2021,4,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8736572,8.5196543,48.44,44.34,-9,-9,6.666666666666667,1,1,0,0,5,4,5,1,433,15637.965,-52582.582,0,0,0,0,3644.8733 +11614,14171,25322,25323,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.1051021,7.3546844,5,6,-75.405251,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.881279,7.4721365,44.3,58.08,57.06,57.76,6.666666666666667,1,1,0,0,1,11,4,1,829,1442124.6,741739.5,530820.13,0,1226.166,0,2079.6665 +11614,14171,25323,25322,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.1913013,8.0496922,0,5,-6,165.97162,0,3,3,2021,9,0,32,33,1,0,0,10.204885,10.204885,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.3,58.08,8.333333333333334,1,1,0,0,6,11,4,1,829,1442124.6,741739.5,530820.13,0,1226.166,0,2079.6665 +11614,14172,25324,-9,25323,25322,1,0,23,0,0,0,1,1,-9,0,5,7.2884173,7.4344683,0,0,0,-1021.5932,0,2,2,2021,18,6,15,18,1,6,1,10.243862,10.243862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,460,-106858.6,-7711.1055,0,0,8907.1348,0,1410.9406 +11615,14173,25325,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.0171409,4.7681298,0,0,-1058.5377,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9620132,5.089591,44.88,38.64,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,359,173721.2,83523.836,194500.22,0,0,0,1238.0531 +11616,14174,25326,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2646961,8.4699745,0,0,0,-1005.7737,0,2,2,2021,8,0,45,50,1,0,0,12.159213,12.159213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,402,260184.36,52622.793,253028.5,88622.07,0,0,1046.2339 +11617,14175,25327,25328,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.2671461,7.1608062,6,-2,-30.547956,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.059886,57.33,53.46,43.42,62.33,8.333333333333334,1,1,0,0,5,13,3,1,926.5,1075443.1,587645.88,167304.13,0,5960.3911,0,3436.0601 +11617,14175,25328,25327,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.9418631,7.4303575,6,2,-34.234787,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.542963,7.7584214,43.42,62.33,57.33,53.46,10,1,1,0,0,0,13,3,1,926.5,1075443.1,587645.88,167304.13,0,5960.3911,0,3436.0601 +11618,14176,25329,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-868.78448,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,39.39,-9,-9,5,1,1,0,0,0,12,1,0,281,-88318.695,6180.6909,133625.16,91621.672,0,4511.2642,21.795019 +11619,14177,25330,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3410044,8.3404722,0,0,0,-1092.4489,0,2,2,2021,7,0,35,36,1,0,0,14.873057,14.873057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,2495,161638.16,-13086.266,87308.742,18271.924,-19.80468,0,1101.4862 +11620,14178,25331,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,8.2695017,8.1029234,0,0,0,-909.7959,0,-9,-9,2021,8,0,38,28,1,0,0,8.150939,8.150939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,-9,-9,8.333333333333334,3,4,0,0,4,8,3,0,846,-15545.98,-64006.766,0,0,0,0,2930.6018 +11620,14179,25332,-9,25331,-9,1,1,19,0,2,0,3,3,-9,0,5,7.2200322,7.439024,0,0,0,-1037.7998,-9,3,-9,2021,4,1,26,0,1,1,1,5.9710979,5.9710979,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,1,8,3,0,300,53908.25,0,0,0,0,-72.990112,724.13776 +11621,14180,25333,25334,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.8134103,7.0151949,49,4,-190.24814,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.765451,6.9283957,58.15,52.91,55.36,46.37,10,1,1,0,0,8,10,2,1,365.5,640136,187594.91,241592.75,0,0,0,1975.7061 +11621,14180,25334,25333,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7729235,6.0675602,49,-4,32.10503,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4473472,5.8450971,55.36,46.37,58.15,52.91,8.333333333333334,1,1,0,0,8,10,2,1,365.5,640136,187594.91,241592.75,0,0,0,1975.7061 +11622,14181,25335,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.8904419,6.7224493,0,0,-1004.0815,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,2.1873536,3.9046514,23.019602,0,1,1,0,6.1267962,6.8830833,57.6,27.68,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,275,170066.05,44826.848,-5520.8599,0,0,0,1528.111 +11623,14182,25336,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.983201,7.7719345,0,0,0,-1023.8003,0,3,3,2021,12,0,45,16,1,0,0,6.8869448,6.8869448,0,0,0,0,0,0,0,0,1,0,1,0,0,40.64,55.63,-9,-9,1.666666666666667,1,1,0,0,9,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11623,14182,25337,-9,25336,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.9951,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11623,14182,25338,-9,25336,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4397,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11624,14183,25339,25340,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.3837833,9.4787502,0,6,3,5.7866716,0,-9,-9,2021,11,3,43,35,1,3,0,35.613976,35.613976,.05,.05,0,0,0,0,0,0,0,0,0,4.9287367,0,56.47,59.4,42.05,50.93,8.333333333333334,1,1,0,0,7,6,5,0,1250,-37894.484,83712.484,198487.97,113961.55,0,0,4253.4966 +11624,14183,25340,25339,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.6733646,7.835515,0,6,-3,-115.61419,0,1,1,2021,13,2,40,40,1,2,0,6.5469732,6.5469732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.05,50.93,56.47,59.4,8.333333333333334,1,1,0,0,9,6,5,0,1250,-37894.484,83712.484,198487.97,113961.55,0,0,4253.4966 +11625,14184,25341,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1120.9277,0,-9,-9,2021,18,6,0,37,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.2,53.11,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,903,127779.34,0,0,0,0,0,271.38974 +11626,14185,25342,25343,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.5401011,8.6740952,11,6,122.52084,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.9991245,8.8072748,50.06,27.98,57.88,43.83,5,1,1,0,0,4,11,4,1,937.5,905958.88,698732.63,137475.16,0,0,0,4918.3428 +11626,14185,25343,25342,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2327824,7.0120072,11,-6,-16.834515,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8855104,57.88,43.83,50.06,27.98,6.666666666666667,1,1,0,0,5,11,4,1,937.5,905958.88,698732.63,137475.16,0,0,0,4918.3428 +11627,14186,25344,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,5.4332685,5.1692991,0,0,-1014.8313,0,2,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8039987,5.4370675,27.34,31.17,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,908,7327.9727,12681.338,0,0,0,0,960.0694 +11628,14187,25345,25346,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2211447,6.7016068,56,7,-31.582134,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1496973,38.2,47.92,47.15,56.66,8.333333333333334,1,1,0,0,0,4,2,0,252.5,161792.41,171366.78,0,0,0,0,1204.0216 +11628,14187,25346,25345,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9659457,5.8208675,56,-7,-15.884758,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6491246,47.15,56.66,38.2,47.92,8.333333333333334,1,1,0,0,11,4,2,0,252.5,161792.41,171366.78,0,0,0,0,1204.0216 +11628,14188,25347,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,5,6.4650202,7.3249507,7.3029971,0,0,-790.04297,-9,-9,-9,2021,14,2,12,0,1,2,0,5.6156173,5.6156173,0,0,0,0,0,0,0,0,1,1,0,7.2637429,6.9123092,50.01,47.42,-9,-9,8.333333333333334,4,2,0,0,2,4,3,0,967,-24664.984,0,0,0,0,0,1010.3115 +11629,14189,25348,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-859.42554,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.86,57.42,-9,-9,1.666666666666667,4,2,1,0,5,9,1,0,304,-117488.63,0,0,0,0,0,371.06223 +11630,14190,25349,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4446115,6.7504435,0,0,-1005.5009,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0270677,6.5375271,54.6,31.3,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,425,538172.94,0,358707.66,0,0,0,1737.396 +11631,14191,25350,-9,25353,25352,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.4041,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25351,-9,25353,25352,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-871.25751,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25352,25353,-9,-9,1,1,37,2,2,0,2,2,-9,1,4,7.9372859,8.4698029,0,7,-1,-28.829008,0,2,2,2021,25,11,40,40,1,11,0,7.9058037,7.9058037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.53,44.6,32.93,61.75,3.333333333333333,1,1,0,1,9,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25353,25352,-9,-9,1,0,38,2,2,0,1,1,-9,0,3,0,0,0,7,1,-124.51502,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.93,61.75,43.53,44.6,8.333333333333334,1,1,0,0,7,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11632,14192,25354,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.76091,4.3721013,0,0,-1013.4648,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1272297,4.7659526,52.99,53.95,-9,-9,10,1,1,0,0,5,5,2,1,985,91528.398,217276.28,0,0,0,0,1477.3652 +11632,14193,25355,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1123.6921,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56242168,0,48.04,22.83,-9,-9,5,1,1,0,0,4,5,2,1,494,60159.543,0,0,0,1212.8425,1305.9111,563.96014 +11633,14194,25356,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.45679,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9598804,0,56.31,38.83,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,1532,797581.63,0,273334.47,0,0,0,-235.57545 +11634,14195,25357,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.4757214,8.8336601,0,0,0,-898.76447,0,3,3,2021,10,0,35,40,1,0,0,31.179384,31.179384,.05,.05,0,0,0,0,0,0,0,0,0,5.2049131,0,51.61,61.54,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,483,1360606.3,665467.75,201614.98,0,0,0,3656.0876 +11634,14196,25358,-9,-9,25357,1,0,25,0,0,0,2,2,-9,0,3,8.2682028,7.9875569,0,0,0,-1035.5951,0,2,2,2021,9,0,43,41,1,0,1,11.275626,11.275626,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,263,230940.63,52085.445,0,0,0,5388.7681,1933.3889 +11635,14197,25359,-9,25363,25362,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-944.69635,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25360,-9,25363,25362,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.54681,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25361,-9,25363,25362,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-863.63971,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25362,25363,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,9.5473623,9.477993,0,10,1,96.011719,0,2,2,2021,6,0,50,55,1,0,0,33.05685,33.05685,.05,.05,0,0,0,0,0,0,1,1,0,6.0680017,0,54.1,59.11,51.39,59.18,8.333333333333334,1,1,0,0,11,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25363,25362,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,7.8059831,7.9311619,0,10,-1,-22.499636,0,-9,-9,2021,11,0,15,15,1,0,0,16.779701,16.779701,.05,.05,0,0,0,0,0,0,1,1,0,7.6193867,0,51.39,59.18,54.1,59.11,8.333333333333334,1,1,0,0,9,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11636,14198,25364,25365,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.0967026,7.6571317,65,-2,2.1069088,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2556576,7.7117238,45.59,34.4,37.55,52.56,8.333333333333334,1,1,0,0,0,2,3,1,1093.5,766152,355944.94,351394.5,0,0,0,3118.7896 +11636,14198,25365,25364,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4079723,7.3536711,13,2,44.920242,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2664847,37.55,52.56,45.59,34.4,6.666666666666667,1,1,0,0,0,2,3,1,1093.5,766152,355944.94,351394.5,0,0,0,3118.7896 +11637,14199,25366,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.0964136,8.1077642,0,0,-912.84454,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4674807,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,416,29054.602,-23098.381,0,0,0,0,1556.0653 +11638,14200,25367,25368,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.0799065,8.6447935,8.9696941,38,3,85.942451,0,2,2,2021,8,2,8,8,1,2,0,17.473095,17.473095,0,0,0,0,0,0,0,0,0,0,0,5.1902847,8.4326839,47,41.31,35.47,38.09,8.333333333333334,1,1,0,0,8,9,4,1,1265,2006142.8,1255181,538497.13,0,0,0,3272.3335 +11638,14200,25368,25367,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,5.8064175,6.0506721,39,-3,2.0484204,0,2,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9513793,5.7849417,35.47,38.09,47,41.31,1.666666666666667,1,1,0,0,6,9,4,1,1265,2006142.8,1255181,538497.13,0,0,0,3272.3335 +11639,14201,25369,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.6717148,9.4350834,0,0,0,-1188.5116,0,2,2,2021,11,0,48,48,1,0,0,35.726482,35.726482,.05,.05,0,0,0,0,0,0,0,0,0,6.0063457,0,57.63,56.14,-9,-9,10,1,1,0,0,15,6,5,1,855,298117.44,182164.66,0,0,9580.6855,0,6812.3457 +11640,14202,25370,25371,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.094018,9.1595631,0,8,7,100.46317,0,3,3,2021,10,0,47,85,1,0,0,18.081036,18.081036,.05,.05,0,0,0,0,0,0,1,1,0,2.9533818,0,46.08,57.2,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,525.5,2780104.5,2241500,842826.63,244239.36,0,0,6967.7197 +11640,14202,25371,25370,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.1800299,9.1122465,0,8,-7,-4.2142715,-9,3,2,2021,8,0,44,0,1,0,0,23.502693,23.502693,.05,.05,0,0,0,0,0,0,1,1,0,4.0667729,0,57.06,57.76,46.08,57.2,8.333333333333334,1,1,0,0,8,9,5,1,525.5,2780104.5,2241500,842826.63,244239.36,0,0,6967.7197 +11641,14203,25372,25373,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,6.7757392,6.6911674,0,41,0,-18.852333,0,2,2,2021,9,0,35,41,1,0,0,3.9418643,3.9418643,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.42,48.12,63,27.76,5,1,1,0,1,9,10,3,1,846.5,638143.38,315452.69,536182,399254.5,0,0,1925.2333 +11641,14203,25373,25372,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.2412982,7.2640657,0,41,0,64.952232,0,2,2,2021,7,0,21,21,1,0,0,8.2521486,8.2521486,0,0,.05,0,0,0,0,0,1,1,0,0,0,63,27.76,51.42,48.12,8.333333333333334,1,1,0,1,9,10,3,1,846.5,638143.38,315452.69,536182,399254.5,0,0,1925.2333 +11642,14204,25374,-9,25375,25376,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.41022,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25375,25376,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.5212512,7.2944083,0,23,0,10.197492,-9,3,3,2021,12,0,29,0,1,0,0,6.6631532,6.6631532,.05,.05,0,0,0,0,0,42,1,0,1,1.8303403,0,46.67,34.44,48,50,8.333333333333334,2,3,0,1,2,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25376,25375,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,7.6415648,7.7248077,0,23,0,-26.757174,-9,3,3,2021,15,3,39,0,1,3,0,7.312037,7.312037,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48,50,46.67,34.44,6,2,3,0,0,11,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25377,-9,25375,25376,1,1,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1106.1949,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.2,40.63,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14205,25378,-9,25375,25376,1,0,18,0,2,0,2,2,-9,1,4,0,0,0,0,0,-973.79352,-9,2,3,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.1592458,0,54.79,55.86,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,167,37875.164,0,0,0,0,1042.2555,597.97955 +11643,14206,25379,25380,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.5897803,7.6743922,0,10,-4,51.720993,0,3,-9,2021,14,4,38,38,1,4,0,5.9782734,5.9782734,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,38.32,37.02,37.37,6.666666666666667,1,1,0,0,14,9,3,1,1677,1076913.8,570546.63,343528.41,0,4771.9043,0,1655.8016 +11643,14206,25380,25379,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.7129011,7.5756979,10,4,-51.593117,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3471994,37.02,37.37,46.28,38.32,5,1,1,0,0,4,9,3,1,1677,1076913.8,570546.63,343528.41,0,4771.9043,0,1655.8016 +11644,14207,25381,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.6438103,6.3017406,0,0,-1163.2557,0,3,3,2021,8,0,0,32,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.1518302,5.8097038,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,6,2,1,784,584194.63,295703.22,303265.19,0,0,-106.47385,989.88568 +11645,14208,25382,25383,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.2492342,7.9964318,29,-1,57.946304,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8243113,7.9276714,56.44,38.96,50.34,56.4,8.333333333333334,1,1,0,0,6,9,4,1,692.5,473562.66,328453.56,0,0,0,0,3410.3228 +11645,14208,25383,25382,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6579351,7.4882841,0,29,1,-86.572571,0,2,2,2021,10,0,25,17,1,0,0,9.7357225,9.7357225,0,0,0,0,0,0,0,14.5,1,1,0,3.1237788,0,50.34,56.4,56.44,38.96,1.666666666666667,1,1,0,0,9,9,4,1,692.5,473562.66,328453.56,0,0,0,0,3410.3228 +11646,14209,25384,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.4080091,7.4571328,0,0,-893.57898,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8532743,7.6516619,44.4,51.11,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,2449,504526.31,69924.039,252260.56,0,7564.8306,0,821.16809 +11647,14210,25385,25386,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3272133,8.2922306,48,0,-130.92296,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0678916,8.0995331,60.12,54.8,62.49,55.09,8.333333333333334,1,1,0,0,0,9,4,1,367,1741043,983674.94,522223.38,0,906.9809,0,4353.959 +11647,14210,25386,25385,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3909459,7.5688334,48,0,114.86217,0,1,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8313055,7.1283402,62.49,55.09,60.12,54.8,8.333333333333334,1,1,0,0,0,9,4,1,367,1741043,983674.94,522223.38,0,906.9809,0,4353.959 +11648,14211,25387,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.5814104,8.664854,0,0,0,-1124.9244,0,3,3,2021,24,9,43,48,1,9,0,17.440643,17.440643,0,0,.05,0,0,0,0,0,1,1,0,3.129297,0,24.35,65.96000000000001,-9,-9,1.666666666666667,1,1,0,0,10,2,5,1,1289,114733.98,101948.53,0,0,0,0,1753.209 +11649,14212,25388,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.7233543,7.3255939,0,0,0,-1061.7161,0,3,-9,2021,15,2,32,31,1,2,0,6.1949697,6.1949697,0,0,0,0,0,0,0,0,1,1,0,0,0,42.54,41.08,-9,-9,6.666666666666667,3,4,0,0,11,9,3,0,818,0,0,0,0,0,0,2106.3091 +11649,14212,25389,-9,25388,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.6519,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,3,0,818,0,0,0,0,0,0,2106.3091 +11649,14213,25390,-9,25388,-9,1,0,22,0,1,0,3,3,0,0,2,0,0,0,0,0,-1009.6489,-9,3,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.74,47.8,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,573,-208509.13,0,0,0,958.23407,0,392.53888 +11649,14214,25391,-9,25388,-9,1,0,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-1007.1837,-9,3,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,1.666666666666667,3,4,0,0,1,9,1,0,741,44838.086,0,0,0,3424.2849,0,0 +11650,14215,25392,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.6806,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.61,16.05,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,364,-19675.711,94960.891,0,0,0,0,1085.4371 +11651,14216,25393,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,4,7.4578853,7.5824385,0,0,0,-860.88586,-9,1,2,2021,11,2,36,0,1,2,0,7.4534106,7.4534106,0,0,0,0,0,0,0,0,1,1,0,3.8058879,0,50.97,53.42,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,448,-248970.31,0,0,0,0,0,1377.2494 +11651,14217,25394,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.2566543,6.04845,0,0,-885.1745,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5634732,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,329,20606.861,0,0,0,13309.946,0,302.45929 +11652,14218,25395,25396,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5274348,6.9182177,0,31,-5,.21377909,0,2,2,2021,12,0,15,24,1,0,0,5.4200082,5.4200082,0,0,0,0,0,0,0,2,0,0,0,8.3000221,0,42.27,53.29,50,49,8.333333333333334,1,1,0,0,10,5,3,1,2311.5,1275685.5,0,1425143.1,425357.38,0,29684.232,3910.1211 +11652,14218,25396,25395,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.690495,6.7531767,0,31,5,31.088951,0,2,2,2021,12,0,40,40,1,0,0,3.2880244,3.2880244,0,0,0,0,0,0,0,0,0,0,0,7.7034311,0,50,49,42.27,53.29,6.666666666666667,1,1,0,0,10,5,3,1,2311.5,1275685.5,0,1425143.1,425357.38,0,29684.232,3910.1211 +11652,14219,25397,-9,25395,25396,1,0,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-1046.4823,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,953,-93762.813,0,0,0,0,0,1639.4351 +11653,14220,25398,25399,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,0,0,0,1,3,-61.763073,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,27.89,50.7,33.57,43.75,8.333333333333334,1,1,0,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25399,25398,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.8873634,8.9358139,0,1,-3,27.335611,-9,3,3,2021,25,10,45,0,1,10,0,13.036944,13.036944,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,33.57,43.75,27.89,50.7,5,1,1,0,0,13,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25400,-9,25399,25398,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9979,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25401,-9,25399,25398,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5988,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11654,14221,25402,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,7.9860392,8.2245836,5.7184439,0,0,-1088.8427,0,3,3,2021,12,0,30,30,1,0,0,9.6115952,9.6115952,0,0,0,1,0,0,0,27,0,0,0,0,6.0435762,42.35,36.31,-9,-9,5,1,1,0,0,14,2,4,0,326,1565938.8,1018527,0,0,785.7912,0,1327.1062 +11655,14222,25403,-9,25404,25405,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.34119,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25404,25405,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.5684853,7.7472534,0,7,-1,-69.30101,0,2,2,2021,6,0,27,27,1,0,0,7.0020003,7.0020003,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,5,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25405,25404,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.593255,8.8617182,0,7,1,-30.95174,0,2,1,2021,6,0,48,55,1,0,0,12.885624,12.885624,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25406,-9,25404,25405,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.63568,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11656,14223,25407,25408,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,1,-3,99.839684,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3790264,0,62.66,52.4,57.06,57.76,10,1,1,0,0,8,2,2,1,394.5,-19018.404,0,46614.809,23012.637,0,1960.1147,1968.02 +11656,14223,25408,25407,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,6.3569574,6.4561567,5.3765235,38,3,64.037064,-9,-9,-9,2021,8,0,10,0,1,0,0,6.8889613,6.8889613,0,0,0,0,0,0,0,0,1,1,0,4.0622253,5.3008904,57.06,57.76,62.66,52.4,8.333333333333334,1,1,0,0,8,2,2,1,394.5,-19018.404,0,46614.809,23012.637,0,1960.1147,1968.02 +11657,14224,25409,25410,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.6382432,7.0471773,30,11,-64.370865,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,14.845302,0,0,1,1,0,6.3098798,6.8285866,55.11,24.36,63.09,47.92,8.333333333333334,1,1,0,0,5,4,2,1,295.5,134184.92,70377.461,189280.38,0,0,0,1853.8281 +11657,14224,25410,25409,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,30,-11,-68.016533,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,63.09,47.92,55.11,24.36,8.333333333333334,1,1,0,0,0,4,2,1,295.5,134184.92,70377.461,189280.38,0,0,0,1853.8281 +11657,14225,25411,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-907.59888,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,49.16,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,148,-38906.113,-6600.1406,0,0,0,0,93.921089 +11657,14226,25412,-9,25410,25409,1,1,26,0,0,0,2,2,-9,0,3,8.0439682,7.8176455,0,0,0,-1079.6992,0,2,3,2021,12,0,38,43,1,0,0,8.0419512,8.0419512,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,408,-70457.156,148120.05,0,0,0,0,1421.1251 +11658,14227,25413,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7985935,8.8016891,0,0,0,-1090.0593,0,2,3,2021,14,3,39,50,1,3,0,21.314314,21.314314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,36.37,-9,-9,3.333333333333333,1,1,0,0,7,7,5,0,1427,114478.3,187780.16,0,0,0,0,2031.1592 +11659,14228,25414,25415,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.2584214,6.2916312,6,6,-44.777409,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,13.322243,0,0,1,1,0,7.1539083,6.6124635,49.28,11.91,41.61,48.15,1.666666666666667,1,1,0,0,0,1,2,1,3586.5,901469.63,69555.109,347632.44,0,16940.602,0,2828.353 +11659,14228,25415,25414,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,6,-6,161.36259,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.1993551,0,41.61,48.15,49.28,11.91,6.666666666666667,1,1,0,0,0,1,2,1,3586.5,901469.63,69555.109,347632.44,0,16940.602,0,2828.353 +11660,14229,25416,-9,25418,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-937.72333,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14229,25417,-9,25418,-9,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-853.43805,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14229,25418,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,6.989275,7.4789038,7.1895146,0,0,-945.69342,0,2,3,2021,22,10,36,42,1,10,0,3.0596609,3.0596609,.05,.05,0,0,0,0,0,0,1,1,0,6.8151155,0,37.07,50.01,-9,-9,1.666666666666667,1,1,0,0,9,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14230,25419,-9,25418,-9,1,1,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-982.47845,-9,2,-9,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,57.8,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,305,5437.4141,0,0,0,0,0,610.2243 +11661,14231,25420,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.2583089,6.246769,0,0,-1017.741,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4883676,6.5237021,34.15,19.97,-9,-9,3.333333333333333,1,1,0,0,9,4,2,1,1101,388279.34,83182.516,112684.78,0,0,0,202.30682 +11662,14232,25421,25422,-9,-9,1,0,25,0,1,0,1,1,1,0,3,8.2014523,8.1002626,0,6,-7,31.29595,-9,-9,-9,2021,11,3,46,0,1,3,0,10.128182,10.128182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,44.19,58.01,8.333333333333334,1,1,0,0,5,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11662,14232,25422,25421,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.2597685,8.0426588,0,6,7,23.350327,0,-9,-9,2021,16,3,49,40,1,3,0,8.9668217,8.9668217,.05,.05,0,0,0,0,0,7,1,1,0,0,0,44.19,58.01,49.04,55.86,5,1,1,0,0,7,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11662,14232,25423,-9,-9,25422,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.05719,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11663,14233,25424,25425,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.7950602,9.6532955,0,6,6,-68.443398,0,-9,-9,2021,10,0,40,35,1,0,0,37.298397,37.298397,.05,.05,0,0,0,0,0,0,0,0,0,2.4936736,0,54.2,57.49,46.44,59.62,1.666666666666667,1,1,0,0,6,9,5,1,442.5,5050766,4090099.5,876763.38,0,0,0,10705.16 +11663,14233,25425,25424,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8865261,8.9049549,0,6,-6,-158.25446,0,2,3,2021,12,1,50,50,1,1,0,13.544476,13.544476,.05,.05,.05,0,0,0,0,0,0,0,0,2.5708559,0,46.44,59.62,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,442.5,5050766,4090099.5,876763.38,0,0,0,10705.16 +11664,14234,25426,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-835.02258,0,2,-9,2021,12,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,17.83,-9,-9,6.666666666666667,3,4,1,0,4,8,1,0,206,-122000.67,0,0,0,0,0,68.303322 +11664,14235,25427,-9,25426,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7845011,8.9028587,0,0,0,-950.73322,0,3,-9,2021,17,6,52,40,1,6,1,15.089466,15.089466,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.95,49.42,-9,-9,3.333333333333333,3,4,0,0,7,8,5,0,1908,220651.63,34118.48,268698.19,118587.23,0,0,2338.1106 +11665,14236,25428,25429,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.17522,8.1829672,6.7999539,7,18,-9.6399221,0,3,3,2021,10,0,24,24,1,0,0,6.54741,6.54741,0,0,0,0,0,0,0,0,1,1,0,7.155715,7.0798922,59.99,44.01,62.42,32.41,8.333333333333334,1,1,0,0,9,7,4,0,242.5,992781.69,596056.63,206216.7,0,0,0,2558.3369 +11665,14236,25429,25428,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8265123,7.9445372,0,7,-18,51.74408,0,3,3,2021,8,0,38,38,1,0,0,8.7300777,8.7300777,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,59.99,44.01,5,1,1,0,0,9,7,4,0,242.5,992781.69,596056.63,206216.7,0,0,0,2558.3369 +11666,14237,25430,-9,25433,25431,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1046.3663,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,1,1,-9,0,0,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25431,25433,-9,-9,1,1,50,0,2,0,2,2,-9,0,2,8.2051048,8.4149075,0,22,0,146.4697,0,2,2,2021,14,2,48,46,1,2,0,9.8889437,9.8889437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.56,37.03,35.47,65.17,5,1,1,0,0,14,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25432,-9,25433,25431,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4083,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25433,25431,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,7.7217083,7.602541,0,23,0,79.40448,0,2,1,2021,25,12,20,21,1,12,0,12.208133,12.208133,0,0,0,0,0,0,0,0,1,1,0,0,0,35.47,65.17,46.56,37.03,3.333333333333333,1,1,0,0,14,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11667,14238,25434,25436,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,4.2448373,4.1594567,0,9,-1,51.142063,0,1,2,2021,13,1,15,0,1,1,0,.55440724,.55440724,.05,.05,0,0,0,0,0,0,0,0,0,1.8527784,0,53.14,45.74,51.83,57.2,8.333333333333334,1,1,0,0,5,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25435,-9,25434,25436,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1033.4379,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25436,25434,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.4938288,9.2200727,0,9,1,32.164837,0,1,1,2021,9,1,85,42,1,1,0,13.599008,13.599008,.05,.05,0,0,0,0,0,0,0,0,0,4.9578462,0,51.83,57.2,53.14,45.74,6.666666666666667,1,1,0,0,10,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25437,-9,25434,25436,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.9741,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25438,-9,25434,25436,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.05579,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11668,14239,25439,-9,25440,25442,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.37848,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25440,25442,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,0,0,0,11,0,-16.143219,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51,56,5,1,1,0,0,3,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25441,-9,25440,25442,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.69043,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25442,25440,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,7.2353463,7.1724186,0,6,0,-105.37047,0,-9,-9,2021,10,0,25,25,1,1,0,6.1589198,6.1589198,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,52,54.51,7,1,1,0,0,1,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11669,14240,25443,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.7080312,7.687099,0,0,-836.66144,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6506763,7.982408,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,612,899752,295732.72,121475.31,0,0,0,2301.387 +11670,14241,25444,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-881.79816,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,1.573005,6.8317528,29.717731,0,1,1,0,0,0,33.39,30.9,-9,-9,8.333333333333334,1,1,0,1,0,1,2,0,829,29588.227,0,0,0,0,173.89006,1845.9744 +11671,14242,25445,25446,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,8,2,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,46.33,29.14,7,1,1,0,0,0,12,1,1,1436,-176876.63,0,0,0,-734.45355,49.787689,1595.905 +11671,14242,25446,25445,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,47,-2,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,34.785011,0,0,1,1,0,2.6188903,0,46.33,29.14,52,47,5,1,1,0,0,0,12,1,1,1436,-176876.63,0,0,0,-734.45355,49.787689,1595.905 +11672,14243,25447,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9039478,7.9547462,0,0,0,-1000.1928,0,-9,2,2021,6,0,55,60,1,0,0,5.3119359,5.3119359,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,3,0,1546,188591.98,190179.89,0,0,0,0,1448.8007 +11673,14244,25448,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.6305757,8.1422281,0,0,0,-978.38135,0,2,3,2021,19,8,60,50,1,8,0,4.2111197,4.2111197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.29,41.01,-9,-9,5,1,1,0,0,12,5,3,1,525,12180.158,26527.67,0,0,0,0,1022.9547 +11674,14245,25449,-9,25451,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.76331,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11674,14245,25450,-9,25451,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.27002,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11674,14245,25451,-9,-9,-9,1,0,27,0,2,0,3,3,-9,1,1,0,6.5863528,6.7085409,0,0,-954.87964,0,-9,-9,2021,11,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5076571,0,48.09,31.3,-9,-9,3.333333333333333,1,1,0,0,4,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11675,14246,25452,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.7518,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,33.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,326,-43511.457,0,0,0,0,0,1060.1823 +11676,14247,25453,25454,-9,-9,1,1,61,1,5,0,3,3,-9,0,3,8.2032776,8.4378405,0,9,5,108.86004,0,-9,-9,2021,10,0,40,0,1,1,0,8.2371197,8.2371197,0,0,.05,0,0,0,0,0,1,1,0,0,0,51,49,38.2,31.47,7,2,3,0,0,9,5,2,1,296,1255594.4,193133.27,433130.94,16134.265,0,0,1562.569 +11676,14247,25454,25453,-9,-9,1,0,56,1,5,0,3,3,-9,1,1,0,0,0,9,-5,-86.506897,-9,2,2,2021,19,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,31.47,51,49,1.666666666666667,2,3,0,0,0,5,2,1,296,1255594.4,193133.27,433130.94,16134.265,0,0,1562.569 +11676,14248,25455,-9,25454,25453,1,1,26,1,5,0,1,1,-9,0,4,8.0728931,7.964314,0,0,0,-956.50262,-9,3,3,2021,10,0,40,0,1,1,1,6.9579601,6.9579601,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,9,5,4,1,1159,98525.75,0,137523.73,43560.309,0,0,1399.4265 +11676,14249,25456,-9,25454,25453,1,1,31,1,5,0,2,2,-9,0,4,0,0,0,0,0,-943.22699,-9,3,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,5,5,1,1,273,-51379.262,0,0,0,0,0,0 +11676,14250,25457,25459,-9,-9,1,1,35,1,5,0,1,1,-9,0,4,8.3526354,8.6258698,0,7,3,205.22989,0,-9,-9,2021,10,0,35,36,1,1,0,17.75421,17.75421,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,60.12,54.8,7,2,3,0,0,6,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25458,-9,25459,25457,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-966.23511,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25459,25457,25454,25453,1,0,32,1,5,0,1,1,-9,0,4,0,0,0,7,-3,-60.881641,-9,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50,57,8.333333333333334,2,3,0,0,3,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25460,-9,25459,25457,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-945.81757,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25461,-9,25459,25457,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-972.70239,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25462,-9,25459,25457,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1027.2906,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25463,-9,25459,25457,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1086.1536,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11677,14251,25464,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3948302,7.2816858,0,0,-1116.3981,0,2,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0819359,7.4539285,50.44,37.79,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1682,1117867.6,211168.86,237542.05,0,0,0,1908.4332 +11678,14252,25465,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5696678,9.4531612,0,0,0,-1036.506,0,2,3,2021,16,3,60,60,1,3,0,29.38238,29.38238,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.66,43.48,-9,-9,6.666666666666667,1,1,0,0,5,8,5,1,187,990166.5,483017.03,171909.17,0,0,0,4563.188 +11679,14253,25466,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,7.1520658,7.4327221,0,0,-963.73578,0,3,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.71741086,7.163137,31.37,36.1,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,2519,349778.16,292923.22,105433.09,0,0,0,1961.501 +11680,14254,25467,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.0747185,8.3450165,0,0,0,-1080.9968,0,1,2,2021,10,0,48,38,1,0,0,7.0485067,7.0485067,.05,.05,0,0,0,0,0,0,0,0,0,.56431758,0,47.64,55.02,-9,-9,6.666666666666667,1,1,0,0,10,4,4,1,138,210597.2,82540.586,0,0,7807.3457,0,1395.3116 +11681,14255,25468,25469,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.689177,7.8144093,0,22,-11,-36.774822,0,3,3,2021,8,0,30,60,1,0,0,13.229386,13.229386,0,0,0,0,0,0,0,2,0,0,0,0,0,62.4,48.33,54.37,54.8,5,1,1,0,0,15,11,3,1,600,1602677,483230.31,575967.13,0,0,0,1132.165 +11681,14255,25469,25468,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,22,11,-32.308994,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,2,0,0,0,0,0,54.37,54.8,62.4,48.33,5,1,1,0,0,0,11,3,1,600,1602677,483230.31,575967.13,0,0,0,1132.165 +11682,14256,25470,25471,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,7.464076,7.3795328,48,0,86.449532,0,-9,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.63205,7.5622611,14.57,71.85000000000001,42.21,40.98,6.666666666666667,1,1,0,0,0,8,5,1,792.5,3319295.5,582781,1681005.5,0,0,0,4355.4141 +11682,14256,25471,25470,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.9020205,8.3988571,48,0,65.479134,0,3,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3475819,9.2458849,42.21,40.98,14.57,71.85000000000001,3.333333333333333,4,5,0,0,0,8,5,1,792.5,3319295.5,582781,1681005.5,0,0,0,4355.4141 +11683,14257,25472,-9,25473,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.75635,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,570,-95668.75,0,0,0,0,0,347.54959 +11683,14257,25473,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.0794325,6.654994,0,0,0,-971.94537,-9,2,2,2021,15,3,16,0,1,3,0,6.1495686,6.1495686,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,47.16,-9,-9,5,1,1,0,1,1,2,2,0,570,-95668.75,0,0,0,0,0,347.54959 +11684,14258,25474,25475,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.3943186,9.2309828,0,35,1,-29.156111,0,2,3,2021,6,0,37,40,1,0,0,33.630039,33.630039,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.14,46.97,25.65,50.6,8.333333333333334,1,1,0,0,13,9,5,1,765.5,131953.09,8569.3789,0,0,0,2275.092,7187.8413 +11684,14258,25475,25474,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.9058981,8.9454708,0,35,-1,81.893204,0,3,3,2021,16,4,39,37,1,4,0,23.590405,23.590405,.05,.05,0,0,0,0,0,0,0,0,0,2.7455659,0,25.65,50.6,59.14,46.97,5,1,1,0,0,11,9,5,1,765.5,131953.09,8569.3789,0,0,0,2275.092,7187.8413 +11684,14259,25476,-9,25475,25474,1,0,22,0,0,0,2,2,-9,0,4,7.7363601,7.3848834,0,0,0,-1002.3611,0,3,2,2021,12,0,38,48,1,0,1,6.9362712,6.9362712,.05,.05,0,0,0,0,0,0,0,0,0,3.7447977,0,37.98,52.88,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,624,133572.42,76146.531,0,0,0,0,953.63336 +11685,14260,25477,25478,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.7886176,8.3584032,6.3618903,43,2,48.942276,0,2,2,2021,20,7,40,30,1,7,0,6.8721056,6.8721056,0,0,0,0,0,0,0,0,1,1,0,0,6.8067207,41.01,46.57,33.9,19.97,6.666666666666667,1,1,0,0,5,11,3,0,502,165244.39,64190.445,0,0,0,0,1923.3167 +11685,14260,25478,25477,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,43,-2,57.058537,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,.041779466,0,1,1,0,0,0,33.9,19.97,41.01,46.57,8.333333333333334,1,1,0,0,0,11,3,0,502,165244.39,64190.445,0,0,0,0,1923.3167 +11686,14261,25479,-9,25480,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.57495,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.07,59.39,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11686,14261,25480,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,2,0,0,0,0,0,-946.83136,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.66,35.81,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11686,14261,25481,-9,25480,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.3784,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11687,14262,25482,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.0820875,8.7688093,0,0,0,-974.4422,0,2,2,2021,6,0,38,39,1,0,0,17.633207,17.633207,.05,.05,0,0,0,0,0,0,1,1,0,2.7417965,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,5,0,182,97357.32,37719.531,66237.836,67335.461,5165.0151,3619.5432,3077.1135 +11688,14263,25483,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5293598,6.313581,0,0,-849.76868,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,3.0267565,22.141785,22.188093,0,1,1,0,2.0007946,6.4365077,43.53,26.39,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,2202,98309.953,123996.07,0,0,0,0,1701.2798 +11689,14264,25484,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0928502,7.4983354,0,0,-1108.0819,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3125424,7.2644939,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,340,475366.25,446619.78,0,0,0,0,1345.5498 +11690,14265,25485,-9,25487,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-986.43439,-9,2,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.48,54.06,-9,-9,10,1,1,0,0,0,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11690,14265,25486,25487,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7896395,8.7451687,0,3,1,33.488636,0,3,3,2021,7,0,76,48,1,0,0,10.06567,10.06567,.05,.05,0,0,0,0,0,0,1,1,0,5.5527325,0,57.33,53.46,40.88,49.19,8.333333333333334,1,1,0,0,5,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11690,14265,25487,25486,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,3,-1,-138.26741,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.88,49.19,57.33,53.46,6.666666666666667,1,1,1,0,0,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11691,14266,25488,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1075.2506,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.14,34.48,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,694,0,0,0,0,0,0,1074.9009 +11692,14267,25489,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.7621222,6.5357556,0,0,-1017.0432,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.8871035,0,0,1,1,0,0,6.9791994,65.52,21.33,-9,-9,10,1,1,0,0,0,13,2,1,258,238135.52,106189.03,17126.211,0,0,0,2236.498 +11693,14268,25490,25491,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-.0072440379,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,.51138955,0,0,1,1,0,1.2118016,0,38,35.06,33.21,55.18,5,1,1,0,0,0,13,3,1,363,127591.55,210251.03,113610.02,0,10821.998,0,2392.228 +11693,14268,25491,25490,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,8.2212067,7.7682958,8,2,-42.048775,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7820225,33.21,55.18,38,35.06,6.666666666666667,1,1,0,0,0,13,3,1,363,127591.55,210251.03,113610.02,0,10821.998,0,2392.228 +11694,14269,25492,25493,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,9.9256983,9.4112463,50,3,136.09422,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6671791,9.733428,44.74,39.07,49.83,52.99,8.333333333333334,1,1,0,0,0,9,5,1,613,12935292,2054371,938863.88,0,0,0,10024.839 +11694,14269,25493,25492,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,50,-3,-88.480225,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.092947,0,49.83,52.99,44.74,39.07,3.333333333333333,1,1,0,0,0,9,5,1,613,12935292,2054371,938863.88,0,0,0,10024.839 +11695,14270,25494,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.6916723,8.5294046,4.3688903,0,0,-971.93378,0,2,3,2021,8,1,37,0,1,1,0,13.268594,13.268594,.05,.05,0,0,0,0,0,0,0,0,0,8.6957359,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,14,4,5,1,561,331434.13,318233.97,102843.48,40348.539,9210.0791,0,2306.8101 +11696,14271,25495,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.6545,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.9,32.76,-9,-9,0,1,1,1,1,0,1,2,0,4020,0,0,0,0,0,0,361.4996 +11697,14272,25496,25498,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9570646,8.6814308,0,11,6,-46.288902,-9,1,1,2021,12,0,41,0,1,0,0,18.832617,18.832617,.05,.05,0,0,0,0,0,0,1,1,0,.62781465,0,40.25,56.9,48.04,53.42,6.666666666666667,1,1,0,0,13,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25497,-9,25498,25496,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.2162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25498,25496,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.0182924,8.0203276,0,11,-6,94.167747,0,2,2,2021,11,0,25,30,1,0,0,11.252361,11.252361,.05,.05,0,0,0,0,0,0,1,1,0,2.0362587,0,48.04,53.42,40.25,56.9,8.333333333333334,1,1,0,0,9,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25499,-9,25498,25496,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.99329,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11698,14273,25500,25501,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.1369743,4.5019908,18,-5,21.371124,0,2,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6623347,4.6427832,34.51,57.34,54.79,55.86,8.333333333333334,1,1,0,0,8,12,2,1,898,1044709.3,232285.06,272465.22,0,0,0,1084.4352 +11698,14273,25501,25500,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9436746,6.6465178,16,5,-22.99267,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6946633,6.8198929,54.79,55.86,34.51,57.34,8.333333333333334,1,1,0,0,10,12,2,1,898,1044709.3,232285.06,272465.22,0,0,0,1084.4352 +11699,14274,25502,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1167.7058,0,2,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.65,34.66,-9,-9,0,1,1,0,0,0,4,1,0,209,43002.328,0,0,0,0,0,1172.7245 +11700,14275,25503,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1974211,7.9785166,0,0,0,-1016.4403,0,2,2,2021,13,4,40,43,1,4,0,7.923162,7.923162,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,1740,199285.67,255933.17,197589.41,116059.76,0,0,1170.2433 +11701,14276,25504,25505,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0595112,8.942523,0,10,-2,39.972576,0,2,2,2021,11,3,37,42,1,3,0,26.492374,26.492374,.05,.05,0,0,0,0,0,0,1,1,0,7.9842477,0,43.65,58.28,49.04,55.86,8.333333333333334,1,1,0,0,12,11,5,1,1315,989602.56,889081.5,187684.53,140806.58,2935.6772,0,6150.7109 +11701,14276,25505,25504,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.2446995,9.0516748,0,10,2,27.636702,0,3,2,2021,10,0,52,48,1,0,0,23.589706,23.589706,.05,.05,0,0,0,0,0,0,1,1,0,3.2820396,0,49.04,55.86,43.65,58.28,8.333333333333334,1,1,0,0,12,11,5,1,1315,989602.56,889081.5,187684.53,140806.58,2935.6772,0,6150.7109 +11702,14277,25506,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-902.633,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,42.41,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,386,-25225.418,0,0,0,0,0,376.84241 +11703,14278,25507,25508,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.7475309,6.0955186,7,-7,-24.013132,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1502991,6.2380524,57.46,47.78,66.84999999999999,24.44,8.333333333333334,1,1,0,0,0,10,2,1,843.5,737413.75,157186.53,413010,0,29128.477,0,4427.2217 +11703,14278,25508,25507,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.9860034,6.7815027,50,7,-20.334688,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9426894,6.7071524,66.84999999999999,24.44,57.46,47.78,10,1,1,0,0,0,10,2,1,843.5,737413.75,157186.53,413010,0,29128.477,0,4427.2217 +11704,14279,25509,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.0279665,5.5611539,0,0,-1114.3796,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6554728,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,824,419946.34,-62899.73,291403.56,0,0,0,-134.24001 +11705,14280,25510,25512,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.4104238,7.8588881,6.3934259,12,11,-68.424911,0,-9,-9,2021,8,0,25,20,1,0,0,5.7453833,5.7453833,.05,.05,0,0,0,0,0,0,1,1,0,6.2896705,0,40.08,55.57,48,58,10,1,1,0,0,11,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25511,-9,25510,25512,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.6315,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25512,25510,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,8.8361559,8.8027096,0,12,-11,-5.3965821,0,2,3,2021,10,0,1,43,1,1,0,848.98456,848.98456,.05,.05,0,0,0,0,0,0,1,1,0,2.142091,0,48,58,40.08,55.57,7,1,1,0,0,14,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25513,-9,25510,25512,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.0753,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25514,-9,25510,25512,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-999.32446,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11706,14281,25515,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0753698,8.6784306,7.4493313,0,0,-1064.6265,0,2,2,2021,7,1,18,18,1,1,0,20.674269,20.674269,0,0,0,0,0,0,0,42,0,0,0,0,7.2897668,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,1038,-204533.77,0,0,0,0,1223.1383,2698.4026 +11707,14282,25516,25517,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.2446299,9.4165735,0,21,-1,42.047901,0,-9,-9,2021,5,0,40,42,1,0,0,25.323259,25.323259,.05,.05,0,0,0,0,0,0,0,0,0,8.893939,0,59.33,51.29,54.1,59.11,8.333333333333334,1,1,0,0,11,9,5,1,3203.5,3751126.5,2377077,953009.13,0,0,0,7732.9238 +11707,14282,25517,25516,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,8.0105505,8.0703192,21,1,-51.271755,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.3198404,7.6683068,54.1,59.11,59.33,51.29,8.333333333333334,1,1,0,0,11,9,5,1,3203.5,3751126.5,2377077,953009.13,0,0,0,7732.9238 +11708,14283,25518,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.6366444,7.7975912,0,0,-1088.0317,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5782065,7.5889649,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1860,1106615.9,361866,357473.25,0,2703.9517,0,2236.9636 +11709,14284,25519,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.8010674,8.5382872,0,0,0,-1103.3668,0,2,2,2021,12,0,40,40,1,0,0,18.452463,18.452463,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,57.26,-9,-9,5,4,5,0,0,3,8,5,0,1099,401.00323,0,0,0,0,0,2854.4915 +11710,14285,25520,25521,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.6981344,8.4648457,0,24,-4,68.413452,0,2,2,2021,13,1,37,37,1,1,0,16.592031,16.592031,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.38,54.63,39.32,35.87,6.666666666666667,1,1,0,0,11,9,4,1,1337,411205.31,152780.75,265398.13,174911.19,0,0,2862.7693 +11710,14285,25521,25520,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,24,4,-5.1169019,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.32,35.87,37.38,54.63,6.666666666666667,1,1,0,0,6,9,4,1,1337,411205.31,152780.75,265398.13,174911.19,0,0,2862.7693 +11711,14286,25522,25523,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9596233,8.1924057,11,-4,-207.89474,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.7365708,55.93,49.95,61.28,35.65,8.333333333333334,1,1,0,0,4,13,4,1,1041,846648.44,439359.03,255606.2,29066.969,0,0,2857.5659 +11711,14286,25523,25522,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.8836598,7.5345016,11,4,41.945091,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6511526,61.28,35.65,55.93,49.95,8.333333333333334,1,1,0,0,3,13,4,1,1041,846648.44,439359.03,255606.2,29066.969,0,0,2857.5659 +11712,14287,25524,25525,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.5161457,7.7932177,40,9,-22.848099,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.81958616,7.8052859,57.87,47.65,54.2,57.49,5,1,1,0,0,8,2,3,1,849.5,1126468.8,581354.88,204298.5,0,0,0,1674.1755 +11712,14287,25525,25524,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,39,0,-36.546139,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7284383,0,54.2,57.49,57.87,47.65,8.333333333333334,1,1,0,0,4,2,3,1,849.5,1126468.8,581354.88,204298.5,0,0,0,1674.1755 +11713,14288,25526,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5639949,7.4611845,0,0,0,-958.52411,0,-9,-9,2021,12,0,29,29,1,0,0,10.755831,10.755831,0,0,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,1150,0,0,0,0,0,0,1122.3605 +11714,14289,25527,-9,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.7240615,6.6214375,5.7650514,0,0,-968.76398,0,3,3,2021,21,9,5,20,1,9,0,16.036081,16.036081,0,0,0,0,0,0,0,2,1,1,0,5.8132944,0,42.62,57.19,-9,-9,8.333333333333334,1,1,0,0,13,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11714,14289,25528,-9,25527,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.76349,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11714,14289,25529,-9,25527,-9,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.34711,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11715,14290,25530,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,5.6366062,5.5364447,0,0,-1193.6084,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4284434,57.65,56.13,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,472,171909.58,137649.17,119515.17,0,0,0,405.5806 +11716,14291,25531,25532,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,9.8131409,9.7962675,0,9,2,127.64706,0,-9,-9,2021,12,2,33,37,1,2,0,45.62553,45.62553,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.81,54.55,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,991.5,142134.02,120588.17,0,0,17896.09,9883.6045,5227.6323 +11716,14291,25532,25531,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.0593371,7.1429415,0,9,-2,20.209583,0,2,2,2021,5,0,44,40,1,0,0,2.5411313,2.5411313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.81,54.55,8.333333333333334,1,1,0,0,9,9,5,1,991.5,142134.02,120588.17,0,0,17896.09,9883.6045,5227.6323 +11717,14292,25533,-9,-9,-9,1,0,21,0,0,1,1,0,-9,0,5,0,0,0,0,0,-919.02527,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,427,-56387.754,0,0,0,0,0,0 +11718,14293,25534,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.7311645,6.9574556,0,0,-976.11505,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,72.803375,0,0,1,1,0,0,7.4730473,53,44,-9,-9,8,1,1,0,0,0,8,3,0,527,285823.84,238351.77,0,0,0,0,1519.8135 +11719,14294,25535,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.4196,0,3,3,2021,6,0,0,50,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,13,9,1,1,191,11834.308,0,0,0,0,0,-152.19879 +11720,14295,25536,25537,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,9.1739712,8.9405832,28,7,80.350449,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5265303,8.6592188,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,9,4,5,1,962,3572420,2354213.5,184095.95,0,0,0,5550.3525 +11720,14295,25537,25536,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,0,0,0,12,-7,87.702553,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6744204,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,0,4,5,1,962,3572420,2354213.5,184095.95,0,0,0,5550.3525 +11721,14296,25538,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1060.4116,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2302232,0,41.2,59.37,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,315,-324603.84,0,0,0,0,0,637.54938 +11722,14297,25539,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.1034508,7.2500906,0,0,-922.47406,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2788892,61.28,28.21,-9,-9,8.333333333333334,3,4,0,0,2,8,3,0,343,515383.41,163571.77,335879.25,0,0,0,1737.939 +11723,14298,25540,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.038147,8.9324408,0,0,0,-944.57727,0,2,1,2021,32,11,55,55,1,11,0,22.765366,22.765366,0,0,0,0,0,0,0,0,0,0,0,2.8100944,0,23.21,60.15,-9,-9,1.666666666666667,1,1,0,0,9,1,5,1,143,315689.19,87487.32,201922.83,83573.352,946.88531,740.50159,1806.6757 +11724,14299,25541,25542,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.43501,8.2126474,0,2,-3,-151.71976,-9,-9,-9,2021,26,11,48,0,1,11,0,11.885434,11.885434,0,0,0,0,0,0,0,0,0,0,0,0,0,31.63,39.79,48.48,49.45,5,1,1,0,0,1,7,5,1,249.5,313470.66,-20550.219,474173.75,166207.02,0,0,4225.0498 +11724,14299,25542,25541,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.7038612,8.7206392,0,2,3,85.093307,0,2,3,2021,8,1,43,43,1,1,0,17.151262,17.151262,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,48.48,49.45,31.63,39.79,6.666666666666667,1,1,0,0,9,7,5,1,249.5,313470.66,-20550.219,474173.75,166207.02,0,0,4225.0498 +11725,14300,25543,25544,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.9761353,8.9225798,0,6,4,111.48032,0,-9,-9,2021,11,0,41,45,1,0,0,29.648476,29.648476,.05,.05,.05,0,0,0,0,0,0,0,0,6.4765644,0,48.45,57.49,48.87,58.55,8.333333333333334,1,1,0,0,2,11,5,1,1158,444439.5,292090.59,167076.09,74646.141,2539.1279,0,6385.6016 +11725,14300,25544,25543,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.866065,8.9934855,0,16,-4,-.83070934,0,2,2,2021,8,0,44,39,1,0,0,25.913124,25.913124,.05,.05,.05,0,0,0,0,0,0,0,0,4.147779,0,48.87,58.55,48.45,57.49,8.333333333333334,1,1,0,0,9,11,5,1,1158,444439.5,292090.59,167076.09,74646.141,2539.1279,0,6385.6016 +11726,14301,25545,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6255035,8.8547516,0,0,0,-962.26709,0,1,1,2021,8,1,45,87,1,1,0,14.378932,14.378932,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,96,-74125.75,-100557.14,0,0,0,0,949.36029 +11727,14302,25546,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-977.50305,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,1.3143675,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,6,1,0,201,130802.03,0,181760.75,0,0,1246.3383,1060.6777 +11728,14303,25547,25548,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5544806,7.6881924,0,8,2,29.646702,0,2,2,2021,7,0,30,30,1,0,0,6.2800798,6.2800798,.05,.05,.05,0,0,0,0,0,0,0,0,8.237731,0,54.15,48.02,56.33,43.15,8.333333333333334,1,1,0,0,9,9,3,1,1428.5,947086.75,263911.75,471867.5,0,0,0,2456.8401 +11728,14303,25548,25547,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.0767484,6.3615713,0,8,-2,137.72093,0,3,3,2021,13,2,60,40,1,2,0,.94990271,.94990271,.05,.05,.05,0,0,0,0,0,0,0,0,3.0593238,0,56.33,43.15,54.15,48.02,8.333333333333334,1,1,0,0,9,9,3,1,1428.5,947086.75,263911.75,471867.5,0,0,0,2456.8401 +11728,14304,25549,-9,25548,25547,1,1,25,0,0,0,2,2,-9,0,3,8.2135925,8.5201683,0,0,0,-1011.306,0,3,2,2021,12,0,30,35,1,0,1,19.109138,19.109138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,582,-26196.902,-113300.24,0,0,0,0,2765.2251 +11728,14305,25550,-9,25548,25547,1,1,24,0,0,0,2,2,-9,0,3,2.0836282,2.0525792,0,0,0,-1044.3323,0,3,2,2021,11,0,4,40,1,0,1,.19709864,.19709864,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,1079,129654.17,0,0,0,0,0,271.91998 +11729,14306,25551,-9,25552,25553,1,0,15,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1060.0083,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25552,25553,-9,-9,1,0,39,0,5,0,3,3,-9,0,3,0,0,0,18,-2,27.140713,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,34.73,60.05,28.88,45.41,6.666666666666667,2,3,0,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25553,25552,-9,-9,1,1,41,0,5,0,3,3,-9,0,2,7.4865537,7.1115322,0,18,2,9.171442,0,3,3,2021,29,9,24,24,1,9,0,8.9663773,8.9663773,0,0,.05,0,0,0,0,0,1,1,0,0,0,28.88,45.41,34.73,60.05,3.333333333333333,2,3,0,0,11,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25554,-9,25552,25553,1,0,14,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1005.3746,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25555,-9,25552,25553,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.0748,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25556,-9,25552,25553,1,0,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1149.6949,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25557,-9,25552,25553,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1080.167,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14307,25558,-9,25552,25553,1,0,20,0,5,0,2,2,-9,1,1,0,0,0,0,0,-905.9317,0,3,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.13,27.29,-9,-9,3.333333333333333,2,3,0,0,0,2,1,0,132,0,0,0,0,0,0,0 +11730,14308,25559,25560,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.4864101,7.2569504,50,0,2.6022842,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8274932,7.5162416,42.49,49.1,55.91,39.73,5,1,1,0,0,0,9,2,1,424.5,640302.75,249312.41,394458.19,0,0,0,3912.3164 +11730,14308,25560,25559,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,0,-26.445681,0,2,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.91,39.73,42.49,49.1,10,1,1,0,0,0,9,2,1,424.5,640302.75,249312.41,394458.19,0,0,0,3912.3164 +11731,14309,25561,25562,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.2827282,4.4194884,62,-2,-23.9921,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6033964,4.3768654,56.11,28.34,54.94,53.18,8.333333333333334,1,1,0,0,0,11,4,0,970.5,966509.13,503333.53,523939.75,0,0,0,3168.2837 +11731,14309,25562,25561,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.0058517,8.3988142,62,2,81.914429,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.651485,8.4238224,54.94,53.18,56.11,28.34,8.333333333333334,1,1,0,0,0,11,4,0,970.5,966509.13,503333.53,523939.75,0,0,0,3168.2837 +11732,14310,25563,25564,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,9.5332279,9.0358543,0,10,-4,146.80241,0,2,2,2021,0,0,60,60,1,0,0,21.254848,21.254848,.05,.05,0,0,0,0,0,27,0,0,0,0,0,62.39,56.71,54.37,54.8,0,1,1,0,0,11,4,5,1,2079,158682.94,38182.02,59365.809,12945.519,0,0,5740.8105 +11732,14310,25564,25563,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8894072,7.7145734,0,10,4,17.466238,0,3,3,2021,10,2,36,24,1,2,0,11.0223,11.0223,0,0,0,0,0,0,0,27,0,0,0,0,0,54.37,54.8,62.39,56.71,1.666666666666667,1,1,0,0,11,4,5,1,2079,158682.94,38182.02,59365.809,12945.519,0,0,5740.8105 +11733,14311,25565,25566,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.3653631,6.6031957,37,2,-42.646759,-9,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8733659,52.82,35.57,54.27,22.7,6.666666666666667,1,1,0,0,5,11,2,1,149.5,689631.38,291853.25,140124.75,0,0,0,2097.5835 +11733,14311,25566,25565,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.1403151,5.0196638,37,-2,-158.9263,-9,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2448788,4.6877952,54.27,22.7,52.82,35.57,8.333333333333334,1,1,0,0,0,11,2,1,149.5,689631.38,291853.25,140124.75,0,0,0,2097.5835 +11734,14312,25567,-9,25572,-9,1,0,13,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1043.5171,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25568,-9,25572,-9,1,1,10,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1049.4285,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25569,-9,25572,-9,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-942.76672,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25570,-9,25572,-9,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.7744,-9,1,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,5.3118501,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25571,-9,25572,-9,1,1,15,2,5,1,3,0,-9,0,4,0,0,0,0,0,-907.38837,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25572,-9,-9,-9,1,0,35,2,5,0,1,1,-9,0,2,7.75037,8.0601845,0,0,0,-1071.783,0,1,3,2021,13,2,32,42,1,2,0,10.172678,10.172678,.05,.05,0,0,0,0,0,94,1,1,0,0,0,46.13,34.71,-9,-9,6.666666666666667,1,1,0,0,5,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11735,14313,25573,-9,25574,25575,1,1,55,0,0,0,2,2,-9,0,3,8.3876896,8.0433369,0,0,0,-984.88263,-9,3,3,2021,10,0,38,0,1,1,0,12.846569,12.846569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,11,4,1,790,274634.38,25034.514,0,0,0,0,2021.129 +11735,14314,25574,25575,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,8,-5,0,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0391755,0,52,45,40.72,44.92,8,4,1,0,0,0,11,1,1,1567.5,20218.094,49769.18,0,0,0,0,1156.1838 +11735,14314,25575,25574,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,8,5,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,44.92,52,45,8.333333333333334,1,1,0,0,0,11,1,1,1567.5,20218.094,49769.18,0,0,0,0,1156.1838 +11736,14315,25576,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.2942019,8.2514696,0,0,0,-938.73883,0,1,2,2021,4,0,36,38,1,0,0,12.777954,12.777954,0,0,0,0,0,0,0,2,0,0,0,0,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,626,72973.844,0,0,0,0,1177.8701,1526.059 +11737,14316,25577,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,7.1237435,6.8790207,0,0,-934.10364,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2637687,7.2895646,62.87,42.79,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1208,411137.41,91195.789,296339.09,0,0,0,689.73651 +11738,14317,25578,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.8356967,6.6528049,0,0,0,-970.99426,0,3,2,2021,12,0,17,15,1,2,0,5.9695101,5.9695101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,48.65,-9,-9,3.333333333333333,2,3,0,1,6,8,2,0,904.5,227720.34,61866.148,154138.19,53059.844,0,0,2885.1145 +11738,14317,25579,-9,25578,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2188,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,904.5,227720.34,61866.148,154138.19,53059.844,0,0,2885.1145 +11738,14318,25580,-9,25578,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1007.2396,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,587,78138.195,0,0,0,0,0,724.63763 +11739,14319,25581,25582,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7134156,6.7235975,11,6,-52.577057,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9611747,6.779952,39.89,44.99,41.99,49.8,8.333333333333334,1,1,0,0,3,4,2,1,423,575305.38,269382.38,188946.28,0,0,0,2637.0762 +11739,14319,25582,25581,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.7522078,6.1260357,11,-6,-130.10382,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0410616,6.302176,41.99,49.8,39.89,44.99,10,1,1,0,0,4,4,2,1,423,575305.38,269382.38,188946.28,0,0,0,2637.0762 +11740,14320,25583,25584,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8447909,6.9455066,51,1,13.768056,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5118651,6.8081298,54.37,54.8,48.45,57.49,6.666666666666667,1,1,0,0,0,9,3,1,821.5,820028.25,263399.31,459383.75,0,0,0,2838.1626 +11740,14320,25584,25583,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,7.6618652,7.6985598,0,51,-1,40.15295,0,2,3,2021,14,1,27,27,1,1,0,9.1354399,9.1354399,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,54.37,54.8,8.333333333333334,1,1,0,0,9,9,3,1,821.5,820028.25,263399.31,459383.75,0,0,0,2838.1626 +11741,14321,25585,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7125044,7.5637121,0,0,0,-1102.026,0,3,3,2021,5,0,31,31,1,0,0,8.7829256,8.7829256,.05,.05,0,0,0,0,0,0,1,0,1,4.7339377,0,52.4,31.65,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,372,85088.336,251105.47,111950.33,72788.016,0,0,161.56168 +11742,14322,25586,25587,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,6,0,-79.135834,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.082281157,14.5,1,1,0,0,0,50.55,16.08,62.03,36.18,8.333333333333334,1,1,0,0,5,2,2,0,430,359973.25,262915.97,0,0,0,0,880.81494 +11742,14322,25587,25586,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,3.3879907,3.0385303,0,6,0,-6.2892809,0,3,3,2021,8,0,45,55,1,0,0,.080985613,.080985613,0,0,0,0,0,0,0,27,1,1,0,0,0,62.03,36.18,50.55,16.08,1.666666666666667,1,1,0,0,7,2,2,0,430,359973.25,262915.97,0,0,0,0,880.81494 +11743,14323,25588,25589,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.1723175,7.8914194,45,-4,43.703465,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.649334,8.1837816,52.57,52.89,54.23,31.64,8.333333333333334,1,1,0,0,0,6,5,1,518.5,1364977.9,717190.5,343739.38,0,0,2337.3403,5315.7754 +11743,14323,25589,25588,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.6603546,8.2387285,45,4,70.681847,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.8458338,8.4042768,54.23,31.64,52.57,52.89,8.333333333333334,1,1,0,0,13,6,5,1,518.5,1364977.9,717190.5,343739.38,0,0,2337.3403,5315.7754 +11744,14324,25590,25591,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.0209727,6.6997304,57,4,-37.29142,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7335305,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,615,532139.19,31470.902,299716.03,0,0,0,1434.9083 +11744,14324,25591,25590,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,3.2638485,3.1390727,57,-4,9.0044432,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.0521679,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,0,1,2,1,615,532139.19,31470.902,299716.03,0,0,0,1434.9083 +11745,14325,25592,25593,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.9888959,7.7086902,53,-4,-86.440453,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8972411,54.79,55.86,57.16,56.15,10,1,1,0,0,0,6,3,1,578,554155,372127.5,280924.34,0,0,0,3631.1191 +11745,14325,25593,25592,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4494104,6.3967147,53,4,-8.4001398,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9393539,6.2130404,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,0,6,3,1,578,554155,372127.5,280924.34,0,0,0,3631.1191 +11746,14326,25594,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.4720659,8.0000753,0,0,0,-939.53796,0,-9,-9,2021,23,9,39,26,1,9,0,13.616448,13.616448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.08,63.04,-9,-9,1.666666666666667,1,1,0,0,3,11,4,0,692,-74003.758,-87264.141,0,0,15505.502,0,1934.53 +11747,14327,25595,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.0124893,7.9098425,0,2,3,49.097775,0,-9,-9,2021,24,9,38,35,1,9,0,8.593132,8.593132,0,0,.05,0,0,0,0,0,0,0,0,0,0,19.8,65.47,51,56,3.333333333333333,1,1,0,0,8,10,3,1,3587,726686.94,83130.617,579625.69,258507.45,0,0,1025.5026 +11748,14328,25596,25597,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,68,-2,-51.064083,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1429143,0,57.06,57.76,55,45,10,1,1,0,0,0,10,3,1,173.5,425743.56,239860.56,265794.84,0,0,0,2741.2134 +11748,14328,25597,25596,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,7.7302971,7.7127962,68,2,46.622154,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8024173,55,45,57.06,57.76,8,1,1,0,0,0,10,3,1,173.5,425743.56,239860.56,265794.84,0,0,0,2741.2134 +11749,14329,25598,25599,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.778625,7.8547115,0,1,0,-59.014931,-9,-9,-9,2021,12,3,45,0,1,3,0,6.3209791,6.3209791,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,55.14,54.45,56.22,3.333333333333333,1,1,0,0,0,9,4,0,912.5,83795.352,50054.352,140393.66,164229.22,0,0,3675.6626 +11749,14329,25599,25598,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4106617,8.3015175,0,1,0,-99.2351,-9,2,1,2021,9,1,47,0,1,1,0,11.774222,11.774222,0,0,0,0,0,0,0,0,0,0,0,4.1180649,0,54.45,56.22,27.27,55.14,10,1,1,0,0,5,9,4,0,912.5,83795.352,50054.352,140393.66,164229.22,0,0,3675.6626 +11750,14330,25600,25602,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.0722561,9.0547915,0,19,-5,-186.23395,0,2,2,2021,24,12,50,45,1,12,0,17.669796,17.669796,.05,.05,0,0,0,0,0,0,0,0,0,4.3299084,0,22.89,60.29,54.2,57.49,3.333333333333333,1,1,0,0,7,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11750,14330,25601,-9,25602,25600,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.83093,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11750,14330,25602,25600,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7449689,7.7766647,0,19,5,49.155586,0,2,2,2021,9,1,18,18,1,1,0,13.789985,13.789985,.05,.05,0,0,0,0,0,0,0,0,0,7.4697037,0,54.2,57.49,22.89,60.29,8.333333333333334,1,1,0,0,1,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11751,14331,25603,25604,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7084599,8.9383125,0,8,17,57.657894,0,2,1,2021,6,0,45,38,1,0,0,16.108017,16.108017,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.19,49.37,52.31,58.29,5,1,1,0,0,8,4,5,1,760.5,1253050,982114.75,119021.55,0,0,0,2407.6475 +11751,14331,25604,25603,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.8843255,6.6843715,0,9,-17,133.4469,0,1,1,2021,7,0,25,16,1,0,0,4.9252677,4.9252677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,51.19,49.37,8.333333333333334,1,1,0,0,6,4,5,1,760.5,1253050,982114.75,119021.55,0,0,0,2407.6475 +11752,14332,25605,-9,25606,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-967.32123,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,1,1,1231,81925.281,0,0,0,3146.4875,534.95825,-66.434082 +11752,14332,25606,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,0,0,0,0,0,-978.35632,0,3,3,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,32.28,31.38,-9,-9,1.666666666666667,2,3,1,1,0,4,1,1,1231,81925.281,0,0,0,3146.4875,534.95825,-66.434082 +11752,14333,25607,-9,25606,-9,1,0,24,0,1,0,2,2,-9,0,3,7.220233,7.1647067,0,0,0,-985.42358,0,2,-9,2021,15,4,57,62,1,4,1,2.9319234,2.9319234,.05,.05,0,0,0,0,0,42,1,0,1,0,0,42,54,-9,-9,6.666666666666667,2,3,0,0,5,4,3,1,1594,-177785.77,-19244.568,0,0,0,0,504.93341 +11752,14334,25608,-9,25606,-9,1,0,24,0,1,0,1,1,-9,0,3,7.34519,7.1382413,0,0,0,-987.50055,0,2,-9,2021,30,10,86,66,1,10,1,1.9775313,1.9775313,0,0,0,0,0,0,0,0,1,0,1,2.2462454,0,26.5,48.63,-9,-9,1.666666666666667,2,3,0,0,5,4,3,1,1183,48624.734,0,0,0,0,173.189,243.15007 +11753,14335,25609,-9,25610,25611,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.1039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11753,14335,25610,25611,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,9.2937908,9.0603199,0,5,1,4.986197,0,-9,-9,2021,22,9,38,41,1,9,0,31.128067,31.128067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,35.15,61.1,6.666666666666667,1,1,0,0,4,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11753,14335,25611,25610,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.4276028,8.4694738,0,5,-1,-129.2562,0,-9,-9,2021,17,5,38,41,1,5,0,12.544695,12.544695,.05,.05,0,0,0,0,0,0,1,1,0,2.4348667,0,35.15,61.1,30.47,60.56,8.333333333333334,1,1,0,0,7,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11754,14336,25612,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.2375345,9.5489368,0,0,0,-893.62616,0,2,2,2021,9,0,7,48,1,0,0,136.6649,136.6649,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,55.82,-9,-9,6.666666666666667,1,1,0,0,6,8,5,0,2023,1485548.1,604206.63,569587.31,0,0,0,2850.0403 +11755,14337,25613,25614,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.6998367,8.5853338,0,29,-10,-8.8756905,0,3,3,2021,16,4,50,40,1,4,0,15.131584,15.131584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,68.35000000000001,18.65,8.333333333333334,1,1,0,0,14,13,5,1,2671,1979500.5,1536487.5,229067,0,0,0,4417.9619 +11755,14337,25614,25613,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,8.2439213,8.1159496,0,27,10,134.6528,0,2,2,2021,14,3,24,22,1,3,0,17.811136,17.811136,0,0,0,1,4.2281919,11.324675,50.905964,0,1,1,0,0,0,68.35000000000001,18.65,52,54.51,8.333333333333334,1,1,0,0,14,13,5,1,2671,1979500.5,1536487.5,229067,0,0,0,4417.9619 +11756,14338,25615,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,6.6708717,6.3636646,0,1,4,-41.706276,0,1,1,2021,13,1,4,30,1,1,0,17.614122,17.614122,0,0,0,0,0,0,0,0,0,0,0,0,0,31.91,61.11,48,59,5,1,1,0,0,12,13,2,1,189,-171869.34,0,0,0,3830.4473,0,374.06516 +11757,14339,25616,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-977.07227,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,34.78,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1526,-99045.008,0,0,0,0,0,1857.5536 +11758,14340,25617,25620,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.9404993,9.3848143,0,19,6,-43.13372,0,3,3,2021,8,0,42,40,1,0,0,40.356453,40.356453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.87,58.55,8.333333333333334,1,1,0,0,11,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25618,-9,25620,25617,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1228,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25619,-9,25620,25617,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.95685,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25620,25617,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7790775,9.0609703,0,19,-6,-108.74112,0,2,2,2021,10,1,47,48,1,1,0,14.508506,14.508506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.14,60.45,8.333333333333334,1,1,0,0,11,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11759,14341,25621,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.2455,0,3,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.9514305,0,35.2,48.71,-9,-9,3.333333333333333,1,1,0,0,7,7,2,1,1544,-24939.477,0,32300.363,0,0,0,408.03937 +11760,14342,25622,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.5790067,7.9063644,0,0,0,-1167.8883,0,3,2,2021,6,0,40,40,1,0,0,6.3823895,6.3823895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,12,12,3,1,2651,24533.307,-8641.6582,0,0,0,0,344.20477 +11761,14343,25623,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,8.0824642,7.8388109,0,0,-958.68701,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9483008,8.4253454,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,363,1285512.3,350779.5,298229.66,0,0,0,2203.0476 +11762,14344,25624,25625,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2003326,8.2944107,0,5,-1,194.23869,0,2,2,2021,15,3,37,38,1,3,0,9.9292364,9.9292364,0,0,0,0,0,0,0,0,0,0,0,0,0,27.61,57.58,57.33,53.46,6.666666666666667,1,1,0,0,7,13,5,1,898,142011.08,77673.875,118579.04,116332.75,17743.648,0,2699.9136 +11762,14344,25625,25624,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3327332,8.3779993,0,5,1,51.041561,-9,-9,-9,2021,6,0,52,0,1,0,0,8.9964218,8.9964218,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,27.61,57.58,8.333333333333334,1,1,0,0,9,13,5,1,898,142011.08,77673.875,118579.04,116332.75,17743.648,0,2699.9136 +11763,14345,25626,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8323402,9.145771,0,0,0,-1080.6825,0,-9,-9,2021,8,0,40,42,1,0,0,21.918829,21.918829,.05,.05,0,0,0,0,0,0,0,0,0,1.1599249,0,34.55,51.58,-9,-9,6.666666666666667,1,1,0,0,14,6,5,0,513,-11711.764,94132.5,124833.7,43571.445,3292.7739,0,2402.0186 +11764,14346,25627,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.5394983,6.5394588,0,0,-865.85419,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5676157,6.3422475,41.5,37.66,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,776,408783.69,202914.42,375169.63,0,0,0,1413.0916 +11765,14347,25628,25630,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.5764427,8.5014744,0,8,0,124.97472,0,-9,-9,2021,9,0,35,48,1,1,0,20.99435,20.99435,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,51.58,50.6,8,1,1,0,0,1,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14347,25629,-9,25630,25628,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1045.0396,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14347,25630,25628,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,8.1086082,8.2031069,0,30,0,.15677136,0,2,2,2021,15,4,32,32,1,4,0,10.443788,10.443788,.05,.05,0,0,0,0,0,0,1,1,0,1.4252173,0,51.58,50.6,53,55,8.333333333333334,1,1,0,0,10,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14348,25631,-9,25630,25628,1,1,19,0,1,1,2,0,0,0,3,0,7.0135832,6.7594204,0,0,-1079.799,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.48382,0,52.12,50.33,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,358,-58650.746,-34870.25,0,0,0,0,609.02075 +11766,14349,25632,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.8394537,8.7843351,0,0,0,-925.15875,0,2,2,2021,2,0,113,97,1,0,0,6.6349835,6.6349835,.05,.05,0,0,0,0,0,13,1,1,0,0,0,60.51,40.9,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,3387,72102.125,176055.98,0,0,0,391.57928,2370.937 +11767,14350,25633,25634,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1328983,8.1172333,0,7,3,-88.099785,0,-9,-9,2021,9,0,37,37,1,0,0,11.897751,11.897751,.05,.05,0,0,0,0,0,7,0,0,0,2.1036093,0,57.79,35.56,62.39,56.71,8.333333333333334,1,1,0,0,8,2,4,1,1803.5,438656.66,177187.02,182009.34,83124.57,4170.2334,0,2376.9658 +11767,14350,25634,25633,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.9889297,7.751543,0,36,-3,-42.069946,0,2,2,2021,5,0,44,44,1,0,0,8.9534035,8.9534035,.05,.05,0,0,0,0,0,0,0,0,0,3.2367499,0,62.39,56.71,57.79,35.56,10,1,1,0,0,8,2,4,1,1803.5,438656.66,177187.02,182009.34,83124.57,4170.2334,0,2376.9658 +11767,14351,25635,-9,25633,25634,1,1,27,0,0,0,2,2,-9,0,3,8.0265865,8.1386862,0,0,0,-894.02777,0,2,2,2021,10,2,45,60,1,2,1,6.9931993,6.9931993,.05,.05,0,0,0,0,0,0,0,0,0,3.827055,0,56.53,42.78,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,5118,176189.63,32021.621,0,0,11425.191,0,847.37622 +11768,14352,25636,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3092031,8.6933823,6.2670426,0,0,-1128.5529,-9,-9,-9,2021,11,0,20,0,1,2,0,22.441462,22.441462,.05,.05,0,0,0,0,0,0,0,0,0,0,6.3946695,48,49,-9,-9,7,3,4,0,0,1,8,5,1,339,372222.75,80444.359,446338.63,0,0,2070.8938,2560.9468 +11768,14353,25637,-9,25636,-9,1,0,31,0,0,0,1,1,-9,0,4,8.95436,8.6788206,0,0,0,-1123.3003,0,2,-9,2021,11,0,52,40,1,2,1,15.995317,15.995317,.05,.05,0,0,0,0,0,0,0,0,0,4.8777876,0,47,57,-9,-9,7,3,4,0,0,5,8,5,1,253,234974.16,137177.67,0,0,0,0,2395.0605 +11769,14354,25638,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.1980162,7.6029296,0,0,-1029.8229,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8679694,8.0040083,57.16,56.15,-9,-9,10,1,1,0,0,0,2,4,1,1686,693624.81,375620.5,244190.52,0,0,0,2232.2629 +11770,14355,25639,25640,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,5.7276707,5.3540964,8,-3,-119.11682,0,2,-9,2021,13,1,0,20,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5086837,5.1413527,43.79,54.07,37.41,58.46,5,1,1,0,0,8,11,2,1,725,-40122.848,48271.527,0,0,0,0,707.51709 +11770,14355,25640,25639,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.0582819,7.0623546,8,3,127.89488,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.2174686,7.027988,37.41,58.46,43.79,54.07,8.333333333333334,1,1,0,0,8,11,2,1,725,-40122.848,48271.527,0,0,0,0,707.51709 +11770,14356,25641,-9,25640,25639,1,0,23,0,0,0,2,2,-9,0,3,7.4244022,7.5884528,0,0,0,-1039.0146,-9,2,2,2021,13,1,39,0,1,1,0,5.2220016,5.2220016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.24,55.72,-9,-9,5,1,1,0,0,7,11,3,1,4036,-28382.043,-38220.5,0,0,0,0,1192.0079 +11771,14357,25642,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,10.06435,10.499843,8.9484816,21,-7,94.621872,0,-9,-9,2021,11,0,22,65,1,0,0,123.96423,123.96423,.05,.05,0,0,0,0,0,7,1,1,0,5.8679194,9.2493362,52.38,47.57,52,54.51,8.333333333333334,1,1,0,0,12,6,5,1,2424,757221.56,672560,99833.094,73327.813,8826.1807,0,11971.861 +11771,14358,25643,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.7409468,7.6212521,20,7,5.0716372,0,1,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.1046765,0,24.494596,0,1,1,0,5.5470281,7.790853,52,54.51,52.38,47.57,8.333333333333334,1,1,0,0,8,6,5,1,372,1554930.6,639834.25,682651.38,0,0,0,1405.4075 +11772,14359,25644,25645,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,51,-5,44.233868,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.07,43.05,50.74,44.07,10,1,1,0,0,6,12,2,1,1063,254140.94,158119.81,158004.53,0,0,0,1584.2728 +11772,14359,25645,25644,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.3488593,5.5543065,51,5,-71.70546,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3599634,5.7054653,50.74,44.07,59.07,43.05,6.666666666666667,1,1,0,0,7,12,2,1,1063,254140.94,158119.81,158004.53,0,0,0,1584.2728 +11773,14360,25646,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0872827,7.1109214,0,0,-1070.6084,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.24840687,6.5547423,47.55,55.06,-9,-9,5,1,1,0,0,8,7,2,1,1016,149199,0,0,0,0,0,74.661873 +11774,14361,25647,25648,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.2125616,7.3501897,59,0,-40.465607,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.69919473,7.5563903,52,45,51.17,42.73,8,1,1,0,0,0,13,3,1,1041.5,512379.69,250684.03,52156.797,0,0,0,2700.6643 +11774,14361,25648,25647,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.8548498,6.8817682,59,0,86.384369,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7897191,6.8526349,51.17,42.73,52,45,8.333333333333334,1,1,0,0,0,13,3,1,1041.5,512379.69,250684.03,52156.797,0,0,0,2700.6643 +11775,14362,25649,25650,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,8.9336958,8.4449339,41,0,183.95192,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.052948,8.3650627,41.43,64.75,58.15,52.91,10,1,1,0,0,0,12,5,1,886,2078040.8,200129.06,737586,0,0,0,7125.5693 +11775,14362,25650,25649,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,8.5422058,9.2145815,7.9258909,41,0,-72.934044,0,3,2,2021,6,0,35,50,1,0,0,17.879961,17.879961,0,0,0,0,0,0,0,0,1,1,0,3.7889619,8.2945938,58.15,52.91,41.43,64.75,8.333333333333334,1,1,0,0,13,12,5,1,886,2078040.8,200129.06,737586,0,0,0,7125.5693 +11776,14363,25651,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4829226,9.4542122,0,0,0,-873.07117,0,3,3,2021,11,1,49,45,1,1,0,24.357508,24.357508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,496,1651275.9,1335729,130812.09,0,0,0,4461.2471 +11777,14364,25652,25653,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.9929743,8.4110622,37,-2,-54.580841,0,2,2,2021,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4283791,0,54.2,57.49,42.33,53.39,8.333333333333334,1,1,0,0,6,9,4,1,1277.5,1535338.5,811251.88,394142.41,0,0,0,2524.7161 +11777,14364,25653,25652,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.1523914,7.3648686,3.6449313,37,2,-14.549593,0,3,3,2021,8,1,56,56,1,1,0,2.6369436,2.6369436,.05,.05,0,0,0,0,0,0,0,0,0,4.2456632,3.7016642,42.33,53.39,54.2,57.49,10,1,1,0,0,6,9,4,1,1277.5,1535338.5,811251.88,394142.41,0,0,0,2524.7161 +11778,14365,25654,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.6701889,7.250174,0,0,-883.16864,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0938654,6.580267,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,816,438413.75,194255.5,35552.461,0,0,0,1039.9388 +11779,14366,25655,25656,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.8180966,7.9186597,12,12,-9.1307764,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.5829873,60.05,42.65,64.55,36.47,10,1,1,0,0,0,13,3,1,290,2542502.5,297052.47,218903.86,0,0,0,3706.4314 +11779,14366,25656,25655,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.8546071,6.4594789,12,-12,-11.680102,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9074883,64.55,36.47,60.05,42.65,10,1,1,0,0,0,13,3,1,290,2542502.5,297052.47,218903.86,0,0,0,3706.4314 +11780,14367,25657,25659,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,8.5059557,8.5607004,0,13,1,-33.362942,0,-9,-9,2021,8,0,35,41,1,0,0,19.725794,19.725794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.88,56.68,8.333333333333334,1,1,0,0,14,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11780,14367,25658,-9,25657,25659,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1030.2341,-9,2,2,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.73,52.99,-9,-9,5,1,1,0,0,0,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11780,14367,25659,25657,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3581238,8.4682493,0,23,-1,9.1150799,0,2,3,2021,6,0,37,37,1,0,0,12.260073,12.260073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,57.33,53.46,8.333333333333334,1,1,0,0,14,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11781,14368,25660,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.1505508,8.4355812,0,0,0,-969.1123,-9,-9,-9,2021,30,12,76,0,1,12,0,5.8195267,5.8195267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,18.11,51.71,-9,-9,3.333333333333333,1,1,0,1,9,1,4,1,2175,-200221.55,-235.22708,0,0,3753.269,0,1179.3777 +11782,14369,25661,-9,25662,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6127,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11782,14369,25662,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,2,8.3373632,8.3891754,5.6968894,0,0,-970.59723,0,2,-9,2021,34,12,38,47,1,12,0,11.119231,11.119231,.05,.05,0,0,0,0,0,0,1,1,0,5.7743673,0,18.77,56.85,-9,-9,1.666666666666667,1,1,0,0,8,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11782,14369,25663,-9,25662,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4252,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11783,14370,25664,25665,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,1,-47.226387,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.12,41.75,54.38,46.77,10,1,1,0,0,0,12,2,1,385,646832.63,290358.19,126676.75,0,0,0,2016.323 +11783,14370,25665,25664,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.8280463,7.2875271,8,-1,2.282603,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7868087,6.6625662,54.38,46.77,50.12,41.75,8.333333333333334,1,1,0,1,0,12,2,1,385,646832.63,290358.19,126676.75,0,0,0,2016.323 +11784,14371,25666,25667,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3322949,7.2331576,49,-6,59.01841,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7119094,7.1711731,60.12,54.8,51.05,52.04,10,1,1,0,0,7,10,2,1,1727.5,689921.88,292294.22,156459.23,0,0,0,1977.1746 +11784,14371,25667,25666,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.9194322,5.800663,49,6,-132.41278,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6498065,6.0945778,51.05,52.04,60.12,54.8,10,1,1,0,0,4,10,2,1,1727.5,689921.88,292294.22,156459.23,0,0,0,1977.1746 +11785,14372,25668,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.0334711,9.3540096,7.8600817,0,0,-1036.2308,0,2,2,2021,7,0,37,40,1,0,0,31.113361,31.113361,.05,.05,.05,0,0,0,0,0,0,0,0,4.3175192,7.546505,62.28,29.58,-9,-9,10,1,1,0,0,8,12,5,1,533,864110.81,500277.28,133506.91,27625.738,0,0,3616.2236 +11786,14373,25669,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3646841,8.2719107,0,0,0,-889.96429,0,2,2,2021,11,1,37,42,1,1,1,14.021728,14.021728,.05,.05,0,0,0,0,0,0,0,0,0,4.0775685,0,48.07,37.47,-9,-9,5,1,1,0,0,8,6,4,1,436,291252.56,83612.258,46707.746,46230.563,7864.3794,0,2145.4749 +11787,14374,25670,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.6558886,7.435885,0,0,-1044.0598,0,2,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,4.8588247,7.3705564,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,543,-130577.82,21829.578,0,0,0,0,1616.1278 +11788,14375,25671,25672,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.879674,8.918457,0,21,7,-148.47446,0,3,3,2021,16,6,39,39,1,6,0,31.802788,31.802788,0,0,0,0,0,0,0,0,1,1,0,1.8046188,0,27.4,56.6,50,55,3.333333333333333,2,3,0,0,10,8,5,1,603.5,2868938.5,1963535,560068.25,0,0,0,4190.646 +11788,14375,25672,25671,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,7.5136805,7.516923,0,21,-7,-146.32083,0,3,1,2021,10,0,31,38,1,1,0,8.7488518,8.7488518,0,0,0,0,0,0,0,2,1,1,0,7.2156215,0,50,55,27.4,56.6,8,2,3,0,0,7,8,5,1,603.5,2868938.5,1963535,560068.25,0,0,0,4190.646 +11788,14376,25673,-9,25672,25671,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-959.04486,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,2,3,0,0,0,8,1,1,600,68642.211,0,0,0,0,0,0 +11789,14377,25674,25675,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,17,2,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.7,23.15,37.84,27.36,3.333333333333333,1,1,0,0,0,10,1,0,1138,6820.5781,0,0,0,0,0,2162.2422 +11789,14377,25675,25674,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,17,-2,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,27.36,35.7,23.15,8.333333333333334,1,1,0,0,0,10,1,0,1138,6820.5781,0,0,0,0,0,2162.2422 +11790,14378,25676,25677,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8931451,5.3782415,52,3,-35.586582,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8276057,5.4002957,53,46,51,46,8,1,1,0,0,4,10,2,1,1093.5,419564.31,90621.453,213399.36,0,0,0,2435.3291 +11790,14378,25677,25676,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0743661,5.7766876,52,-3,56.427784,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,14.152123,20.779356,124.78837,0,1,1,0,5.5129342,6.0567122,51,46,53,46,7,1,1,0,0,3,10,2,1,1093.5,419564.31,90621.453,213399.36,0,0,0,2435.3291 +11791,14379,25678,25679,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.1570077,7.3452554,62,-4,-36.572193,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6730881,7.1707559,53,45,60.12,54.8,8,1,1,0,0,0,2,3,1,457.5,818112.25,316829.22,124871.07,0,0,0,2803.8071 +11791,14379,25679,25678,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,6.7696881,6.7161851,62,4,10.661844,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1736588,60.12,54.8,53,45,10,1,1,0,0,0,2,3,1,457.5,818112.25,316829.22,124871.07,0,0,0,2803.8071 +11792,14380,25680,-9,25681,25682,1,1,19,0,0,0,2,2,-9,0,4,7.3443632,7.631907,4.4804845,0,0,-1008.2366,0,2,2,2021,7,0,40,0,1,0,1,6.7475586,6.7475586,.05,.05,0,0,0,0,0,0,0,0,0,4.917531,0,62.49,55.09,-9,-9,10,1,1,0,0,10,11,3,1,1683,95112.57,40730.023,0,0,0,0,635.14618 +11792,14381,25681,25682,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.7263541,7.6129422,0,7,-7,53.395016,0,2,2,2021,6,0,28,28,1,0,0,8.5546017,8.5546017,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.19,54.26,10,1,1,0,0,8,11,4,1,492.5,-89607.844,9021.0313,0,0,12406.021,3337.0803,2558.6335 +11792,14381,25682,25681,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4535255,8.356164,0,7,7,15.537888,0,-9,-9,2021,9,0,52,40,1,0,0,10.613083,10.613083,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,8,11,4,1,492.5,-89607.844,9021.0313,0,0,12406.021,3337.0803,2558.6335 +11793,14382,25683,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.3717661,6.6269107,0,0,-947.62537,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4786687,6.4038186,53,44,-9,-9,8,1,1,0,0,0,13,2,0,88,54619.078,45735.121,0,0,0,0,1393.5647 +11794,14383,25684,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-935.37335,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,37.13,-9,-9,6.666666666666667,4,5,0,0,0,8,2,0,122,-72112.25,0,0,0,0,0,1006.7135 +11794,14384,25685,-9,25684,-9,1,0,31,0,0,0,1,1,-9,0,2,7.8792305,8.0423021,0,0,0,-1098.068,0,2,-9,2021,10,2,20,17,1,2,0,14.202677,14.202677,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.39,52.89,-9,-9,8.333333333333334,4,5,0,0,2,8,4,0,137,172385.77,124105.04,197540.72,59764.828,0,0,1400.6206 +11795,14385,25686,25687,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,4.2499599,4.2235193,46,-7,9.2107372,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.292006,39.8,23.76,47,37,8.333333333333334,2,3,0,0,0,8,2,1,745,688324.63,119229.43,366187.84,0,0,0,1012.335 +11795,14385,25687,25686,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.6822033,7.7405171,46,7,-44.77124,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.5097589,47,37,39.8,23.76,6.666666666666667,2,3,0,0,0,8,2,1,745,688324.63,119229.43,366187.84,0,0,0,1012.335 +11795,14386,25688,-9,25686,25687,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,0,0,-953.12842,0,2,2,2021,14,3,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.76,58.96,-9,-9,6.666666666666667,2,3,1,0,0,8,1,1,919,80679.461,0,362855.53,197655.23,0,0,515.71667 +11796,14387,25689,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.9880161,8.2648697,0,0,-1030.2192,0,2,2,2021,10,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9901767,8.0856705,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,612,853287.75,334028.81,178167.3,0,0,0,2287.7297 +11797,14388,25690,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.0780792,8.2221746,0,0,-1052.2325,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,7.9702754,7.1232085,58.15,52.91,-9,-9,10,1,1,0,0,0,9,4,1,197,1131979.8,789013.31,400969.88,26711.502,1505.7125,0,2960.1755 +11798,14389,25691,25693,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.7687664,8.8254213,0,11,0,6.937788,0,2,2,2021,10,0,41,40,1,0,0,17.578018,17.578018,0,0,0,0,0,0,0,0,1,1,0,1.1194514,0,54.1,59.11,54.96,53.17,8.333333333333334,1,1,0,0,12,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25692,-9,25691,25693,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1021.3616,-9,1,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25693,25691,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.1464729,8.0560694,0,11,0,-11.245361,0,2,3,2021,15,2,49,48,1,2,0,8.3186321,8.3186321,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.1,59.11,8.333333333333334,1,1,0,0,12,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25694,-9,25691,25693,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-997.18915,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11799,14390,25695,25696,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,0,0,0,2,-7,187.17104,0,-9,-9,2021,19,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,58.34,51.49,57.57,6.666666666666667,2,3,0,0,0,4,4,1,1487,142043.53,148904.16,0,0,0,0,1663.6062 +11799,14390,25696,25695,25698,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4779425,8.3558187,0,2,7,53.490944,0,3,-9,2021,12,0,37,35,1,0,0,16.07131,16.07131,.05,.05,0,0,0,0,0,0,1,1,0,.70076895,0,51.49,57.57,34.79,58.34,8.333333333333334,2,3,0,0,6,4,4,1,1487,142043.53,148904.16,0,0,0,0,1663.6062 +11799,14391,25697,-9,25698,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3083458,8.5736237,0,0,0,-1053.5775,0,3,-9,2021,10,0,45,46,1,0,0,10.571101,10.571101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,72.87,27.3,-9,-9,10,2,3,0,0,10,4,4,1,277,-140664.73,-58343.012,0,0,4581.5601,0,1342.2031 +11799,14392,25698,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.27551,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,401,367881.38,0,370336.28,0,0,0,228.26201 +11800,14393,25699,25701,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.6131301,7.6110139,0,8,3,98.656189,0,-9,-9,2021,9,0,40,47,1,0,0,6.3644066,6.3644066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11800,14393,25700,-9,25699,25701,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.21857,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11800,14393,25701,25699,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.01896,8.1871099,0,8,-3,11.760637,0,2,2,2021,2,0,35,35,1,0,0,9.7872753,9.7872753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11801,14394,25702,25703,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.4887571,8.3606863,0,12,-3,124.57889,0,2,2,2021,8,0,37,41,1,0,0,17.158768,17.158768,.05,.05,0,0,0,0,0,0,0,0,0,3.4077089,0,53.61,51.1,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,469,185889.39,73800.352,206083.06,142076.92,5044.5308,0,3107.2266 +11801,14394,25703,25702,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.3817234,8.5943813,0,12,3,51.35968,0,3,3,2021,6,0,37,37,1,0,0,18.434166,18.434166,.05,.05,0,0,0,0,0,0,0,0,0,4.7088361,0,57.16,56.15,53.61,51.1,8.333333333333334,1,1,0,0,9,6,5,1,469,185889.39,73800.352,206083.06,142076.92,5044.5308,0,3107.2266 +11802,14395,25704,25705,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.534605,6.8609118,10,4,59.747208,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8221488,6.3778577,57.16,56.15,43.12,58.55,8.333333333333334,1,1,0,0,8,5,5,1,585,2062447.5,817771.31,412369.38,0,0,0,7839.4854 +11802,14395,25705,25704,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.4767547,9.4268341,8.8092051,10,-4,-35.64576,0,2,1,2021,15,4,40,40,1,4,0,5.6923332,5.6923332,0,0,0,0,0,0,0,0,1,1,0,0,9.4481192,43.12,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,585,2062447.5,817771.31,412369.38,0,0,0,7839.4854 +11803,14396,25706,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.2674,0,2,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,15.744869,13.911938,140.47845,0,1,1,0,0,0,53.53,48.3,-9,-9,8.333333333333334,1,1,0,0,13,7,1,1,357,5797.2104,0,0,0,-3210.7178,0,1541.0614 +11804,14397,25707,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1106.9634,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,433,1501285.1,365423.78,305722.31,0,0,0,0 +11805,14398,25708,25709,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.6940727,8.2404251,5,7,-88.909317,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,1,124.98846,121.81741,1245.9104,0,1,1,0,0,7.6517463,47.88,29.98,34.79,34.46,5,1,1,0,0,6,2,4,1,611,495093.59,291619.44,150712.92,72741.516,1942.4897,0,3437.2805 +11805,14398,25709,25708,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,7.6361022,7.5867815,5,-7,5.082088,0,3,2,2021,25,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5533447,34.79,34.46,47.88,29.98,3.333333333333333,1,1,0,0,3,2,4,1,611,495093.59,291619.44,150712.92,72741.516,1942.4897,0,3437.2805 +11806,14399,25710,-9,25712,25711,1,1,34,0,0,0,2,2,-9,0,2,5.6349354,6.1086216,0,0,0,-1081.0203,0,1,1,2021,18,7,48,70,1,7,0,1.0914816,1.0914816,0,0,0,0,0,0,0,0,1,1,0,0,0,41.89,45.94,-9,-9,3.333333333333333,1,1,0,1,11,7,2,1,370,171183.38,0,0,0,0,0,-164.83 +11806,14400,25711,25712,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.2751293,8.5169172,42,3,-92.686127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8753448,8.4928274,57.33,53.46,49.35,59.64,8.333333333333334,1,1,0,0,7,7,5,1,573,2874907,1554828.9,975717.94,0,0,0,5412.9277 +11806,14400,25712,25711,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4877205,8.5262737,38,-3,-102.17179,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.138787,8.4176331,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,573,2874907,1554828.9,975717.94,0,0,0,5412.9277 +11807,14401,25713,25714,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5393934,9.5455999,0,2,5,70.981392,0,-9,-9,2021,8,0,40,15,1,0,0,43.418701,43.418701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,46.28,51.64,8.333333333333334,1,1,0,0,7,6,5,0,954.5,227938.05,245648.88,0,0,4860.3169,3370.75,6553.6777 +11807,14401,25714,25713,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,5.3902869,5.394659,0,2,-5,100.72063,0,-9,-9,2021,17,5,40,41,1,5,0,.68691736,.68691736,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.28,51.64,50.46,53.68,8.333333333333334,1,1,0,0,1,6,5,0,954.5,227938.05,245648.88,0,0,4860.3169,3370.75,6553.6777 +11808,14402,25715,-9,25717,25716,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8466,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11808,14402,25716,25717,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.0583029,9.09904,0,11,0,65.452362,0,1,1,2021,20,9,40,38,1,9,0,29.581343,29.581343,.05,.05,0,0,0,0,0,0,0,0,0,4.1508203,0,44.06,48.65,41.3,60.77,8.333333333333334,1,1,0,0,12,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11808,14402,25717,25716,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.0208263,8.8945942,0,11,0,-32.017746,0,-9,-9,2021,7,0,30,30,1,0,0,24.640343,24.640343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,44.06,48.65,8.333333333333334,4,2,0,0,11,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11809,14403,25718,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-995.3006,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,1,1,0,1295,-127587.72,0,0,0,0,0,2149.8389 +11810,14404,25719,-9,25720,25722,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.81079,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25720,25722,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,6,5,18.313904,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,60.05,54.1,59.11,6.666666666666667,1,1,0,0,1,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25721,-9,25720,25722,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.74261,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25722,25720,-9,-9,1,1,26,0,3,0,2,2,-9,0,5,8.2047434,8.1024923,0,6,-5,90.855225,0,-9,-9,2021,6,0,48,44,1,0,0,10.478766,10.478766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,31.34,60.05,8.333333333333334,1,1,0,0,6,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25723,-9,25720,25722,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.83588,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11811,14405,25724,25725,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,0,0,0,4,-6,40.885971,1,2,2,2021,16,3,0,20,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5548619,0,42.43,47.17,52,54.51,5,1,1,0,0,7,11,4,1,367,-14276.064,-13744.768,138412.34,79576.797,991.87378,1555.4297,1585.4581 +11811,14405,25725,25724,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.448369,8.2502689,0,4,6,106.82243,0,-9,-9,2021,12,0,37,37,1,0,0,11.452618,11.452618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,42.43,47.17,6.666666666666667,1,1,0,0,11,11,4,1,367,-14276.064,-13744.768,138412.34,79576.797,991.87378,1555.4297,1585.4581 +11812,14406,25726,-9,25729,25728,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.3508,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25727,-9,25729,25728,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.19836,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25728,25729,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.52108,8.9578409,0,13,7,130.03923,0,-9,-9,2021,7,0,46,47,1,0,0,14.390802,14.390802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,57.06,57.76,10,1,1,0,0,8,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25729,25728,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.2132859,7.1175032,0,13,-7,9.6315384,0,-9,-9,2021,6,0,20,20,1,0,0,5.506237,5.506237,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.28,48.88,3.333333333333333,1,1,0,0,8,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11813,14407,25730,25731,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.4416623,5.5002966,39,-3,122.00232,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9574008,4.9842391,40.73,43.99,54.18,50.75,8.333333333333334,1,1,0,0,0,10,5,1,2462.5,1666313.5,1239533.8,387528.47,16803.041,0,0,4719.4033 +11813,14407,25731,25730,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.9974146,9.1669703,12,3,49.671722,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5568743,9.2113209,54.18,50.75,40.73,43.99,8.333333333333334,1,1,0,0,11,10,5,1,2462.5,1666313.5,1239533.8,387528.47,16803.041,0,0,4719.4033 +11814,14408,25732,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9215918,6.8360376,0,0,-943.6441,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3706541,6.893353,59.88,42.66,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,176,764598.38,205670.88,569996.69,0,0,0,2216.9468 +11815,14409,25733,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1058.29,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.6,32.91,-9,-9,5,1,1,0,0,0,2,1,0,1135,-194100.56,0,0,0,0,0,1463.765 +11816,14410,25734,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.4396219,8.2384119,0,0,0,-1112.1501,0,3,2,2021,8,0,35,40,1,0,0,14.13068,14.13068,.05,.05,0,0,0,0,0,0,0,0,0,1.2580001,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,9,5,1,1718,556999,-9288.2432,280494.5,61907.82,0,-61.187229,1934.3945 +11817,14411,25735,25736,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.1909943,6.0525312,46,-4,-85.878914,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3878026,43.25,42.36,30.41,34,6.666666666666667,1,1,0,0,0,7,2,1,700,-109094.18,0,0,0,-537.00739,2083.3057,2087.9946 +11817,14411,25736,25735,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.4020882,6.243443,46,4,35.856457,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7930703,6.3696222,30.41,34,43.25,42.36,5,1,1,0,0,3,7,2,1,700,-109094.18,0,0,0,-537.00739,2083.3057,2087.9946 +11818,14412,25737,-9,25738,25739,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.24786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25738,25739,-9,-9,1,0,27,1,2,0,1,1,-9,0,3,0,0,0,5,-7,36.421604,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.95,49.92,43.66,50.25,6.666666666666667,2,3,0,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25739,25738,25741,-9,1,1,34,1,2,0,1,1,-9,0,3,8.4610443,8.1980438,0,5,7,170.25519,0,2,2,2021,9,0,38,38,1,0,0,14.334663,14.334663,.05,.05,0,0,0,0,0,0,1,1,0,6.0447021,0,43.66,50.25,49.95,49.92,6.666666666666667,2,3,0,0,8,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25740,-9,25738,25739,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.6944,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14413,25741,-9,-9,-9,1,0,67,1,2,0,3,3,-9,0,3,0,0,0,0,0,-979.21942,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,9,1,1,494,48957.293,116964.14,0,0,0,0,560.55627 +11819,14414,25742,25743,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.0497284,4.9901485,49,2,-85.991959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8803091,4.7913742,54.36,42.37,56.94,49.53,8.333333333333334,1,1,0,0,4,6,2,1,1017.5,245840.41,297972.59,0,0,0,0,1317.4121 +11819,14414,25743,25742,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.2257719,4.2042832,49,-2,-77.60125,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9340916,4.0866914,56.94,49.53,54.36,42.37,8.333333333333334,1,1,0,0,0,6,2,1,1017.5,245840.41,297972.59,0,0,0,0,1317.4121 +11820,14415,25744,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-884.0036,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.98,50.5,-9,-9,6.666666666666667,1,1,0,0,5,4,1,1,299,-62657.07,0,0,0,0,0,1247.2334 +11821,14416,25745,25748,-9,-9,1,0,28,0,2,0,3,3,-9,0,3,0,0,0,1,0,-183.92703,-9,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.69,58.7,37.41,41.3,6.666666666666667,1,1,0,0,2,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25746,-9,25745,25748,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.08057,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25747,-9,25745,25748,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9752,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25748,25745,-9,-9,1,1,28,0,2,0,2,2,-9,0,2,7.9225483,7.7427745,0,1,0,81.385132,-9,-9,-9,2021,17,5,37,0,1,5,0,8.574646,8.574646,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,37.69,58.7,6.666666666666667,1,1,0,0,4,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11822,14417,25749,25750,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6414232,8.1793413,0,2,-5,-59.466145,0,2,2,2021,8,0,38,37,1,0,0,14.266956,14.266956,.05,.05,0,0,0,0,0,0,0,0,0,2.6193919,0,51.83,57.2,39.37,50.78,8.333333333333334,1,1,0,0,10,9,5,1,431.5,321281.84,192335.11,469060.13,277280.63,0,0,4364.1689 +11822,14417,25750,25749,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.8858786,9.0117788,0,2,5,-3.8236136,0,2,2,2021,9,0,52,57,1,0,0,12.487046,12.487046,.05,.05,0,0,0,0,0,0,0,0,0,4.596921,0,39.37,50.78,51.83,57.2,6.666666666666667,1,1,0,0,13,9,5,1,431.5,321281.84,192335.11,469060.13,277280.63,0,0,4364.1689 +11823,14418,25751,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.0404139,7.8477139,0,0,0,-933.73187,-9,2,2,2021,11,0,40,0,1,0,0,7.077507,7.077507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.57,42.42,-9,-9,3.333333333333333,1,1,0,1,10,1,4,0,1137,177492.11,148924.69,117117.57,17854.947,0,0,1314.5427 +11823,14419,25752,-9,25751,-9,1,0,25,0,0,0,2,2,-9,0,4,7.7240582,7.2916813,0,0,0,-1020.9212,0,2,3,2021,10,0,35,46,1,0,1,6.5166554,6.5166554,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,268,6139.522,-14359.903,0,0,-1029.251,-47.017464,1394.3206 +11824,14420,25753,25754,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.8154101,7.8764176,0,6,5,73.262589,0,2,2,2021,11,1,40,48,1,1,0,8.2392054,8.2392054,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.03,41.98,47,57,8.333333333333334,1,1,0,0,5,4,5,0,1167,-8536.2803,-4448.9316,0,0,269.67859,1092.381,3125.2983 +11824,14420,25754,25753,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2279196,8.4553976,0,6,-5,13.939843,-9,-9,-9,2021,11,0,30,0,1,2,0,18.846447,18.846447,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,55.03,41.98,7,1,1,0,0,1,4,5,0,1167,-8536.2803,-4448.9316,0,0,269.67859,1092.381,3125.2983 +11825,14421,25755,25756,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,7.4218903,8.1735506,7.0591383,8,-5,6.2332773,0,3,3,2021,12,0,16,16,1,0,0,10.091232,10.091232,0,0,0,0,0,0,0,0,1,1,0,0,7.2587433,49.18,46.43,64.07000000000001,47.52,10,1,1,0,0,9,13,4,1,468,1119863,707232.63,268303.09,6225.4668,0,0,3767.3062 +11825,14421,25756,25755,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.4156642,7.568583,8,5,84.394371,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8292508,64.07000000000001,47.52,49.18,46.43,10,1,1,0,0,4,13,4,1,468,1119863,707232.63,268303.09,6225.4668,0,0,3767.3062 +11826,14422,25757,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1078.3215,-9,2,2,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,10,1,1,0,0,0,13,1,0,107,12103.184,0,0,0,0,0,0 +11826,14423,25758,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-998.09338,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,1,0,375,-143810.64,0,0,0,0,0,374.55508 +11827,14424,25759,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,8.5394878,8.5179815,0,0,0,-1099.9379,0,-9,2,2021,12,1,40,40,1,1,0,11.538067,11.538067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.97,44.05,-9,-9,6.666666666666667,1,1,0,0,15,5,4,1,713,1657094.8,1675207.9,208650.58,55434.242,0,0,1996.4675 +11828,14425,25760,25762,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.2049732,9.2267876,0,23,0,24.715588,0,2,2,2021,13,1,35,38,1,1,0,32.250072,32.250072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.09,46.7,6.666666666666667,1,1,0,0,14,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11828,14425,25761,-9,25760,25762,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.50653,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11828,14425,25762,25760,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.6039419,9.6297588,0,23,0,-.67573225,0,2,2,2021,11,2,40,38,1,2,0,40.235504,40.235504,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.09,46.7,49.04,55.86,8.333333333333334,1,1,0,0,13,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11829,14426,25763,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-923.05371,0,-9,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,-9,-9,5,1,1,0,0,0,8,1,0,947,203418.47,0,0,0,0,7669.0732,2074.1785 +11830,14427,25764,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1061.2999,0,2,1,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,7,1,1,274,98190.203,0,0,0,0,0,290.52155 +11831,14428,25765,25766,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.4240036,8.3073254,0,3,-5,53.740379,0,-9,-9,2021,6,0,35,35,1,0,0,12.312927,12.312927,.05,.05,0,0,0,0,0,0,0,0,0,4.8452101,0,59.43,58.05,31.18,62.61,10,1,1,0,0,6,2,5,1,1248.5,205778.13,3718.6914,150240.25,0,0,0,3632.4316 +11831,14428,25766,25765,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.8938284,8.8467045,0,3,5,29.148174,0,-9,-9,2021,8,1,45,37,1,1,0,19.091566,19.091566,.05,.05,0,0,0,0,0,0,0,0,0,1.4283198,0,31.18,62.61,59.43,58.05,8.333333333333334,1,1,0,0,10,2,5,1,1248.5,205778.13,3718.6914,150240.25,0,0,0,3632.4316 +11832,14429,25767,-9,-9,25768,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.59534,-9,-9,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11832,14429,25768,25769,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,8.3308468,8.2185593,0,2,11,-44.783592,0,3,2,2021,16,5,46,46,1,5,0,10.95822,10.95822,0,0,0,0,0,0,0,0,1,1,0,0,0,29.6,57.68,46.88,60.96,8.333333333333334,1,1,0,0,8,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11832,14429,25769,25768,-9,-9,1,0,28,1,1,0,3,3,-9,0,5,0,0,0,2,-11,-36.735809,0,3,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,60.96,29.6,57.68,8.333333333333334,2,3,0,0,0,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11833,14430,25770,25771,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,24,-8,0,0,3,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,56.13,32.4,5,1,1,0,0,0,2,1,1,343.5,148515.94,54254.219,127531.03,0,0,0,1377.0286 +11833,14430,25771,25770,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,24,8,0,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,14.246488,34.710491,133.4559,14.5,1,1,0,0,0,56.13,32.4,32.17,54.65,8.333333333333334,1,1,0,0,0,2,1,1,343.5,148515.94,54254.219,127531.03,0,0,0,1377.0286 +11834,14431,25772,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0773125,9.4980822,0,0,0,-926.71735,0,-9,-9,2021,9,0,30,40,1,0,0,25.995747,25.995747,.05,.05,0,1,0,0,0,0,0,0,0,6.8719134,0,51.08,54.77,-9,-9,8.333333333333334,4,2,0,0,12,2,5,1,858,-76335.766,56090.563,20477.861,54293.891,-2916.3499,0,4327.168 +11835,14432,25773,25774,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.8875265,8.4012451,35,-1,-130.99225,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1025634,8.6840935,60.12,54.8,60.12,54.8,10,1,1,0,0,3,4,4,1,1564,235070.39,0,204667.81,27007.277,0,382.20395,3489.8213 +11835,14432,25774,25773,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.4606223,6.0570903,35,1,51.453014,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6507301,6.2244921,60.12,54.8,60.12,54.8,0,1,1,0,0,7,4,4,1,1564,235070.39,0,204667.81,27007.277,0,382.20395,3489.8213 +11836,14433,25775,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.9326773,6.7474103,0,0,-1038.4795,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0814028,6.9247069,34.59,62.38,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,313,432228.72,112385.91,225192.47,0,0,0,1535.7628 +11837,14434,25776,25777,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.6474314,9.1415548,49,1,-28.069025,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2482085,8.9174643,40.89,40.95,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,3054,2711903.5,1383189.3,672285.63,0,0,0,6060.5923 +11837,14434,25777,25776,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1534286,7.2701187,49,-1,-108.04006,0,3,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3083105,57.16,56.15,40.89,40.95,0,1,1,0,0,3,13,5,1,3054,2711903.5,1383189.3,672285.63,0,0,0,6060.5923 +11838,14435,25778,25779,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7282057,8.9043217,0,3,-8,69.59491,0,2,2,2021,14,3,64,50,1,3,0,10.90873,10.90873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,54.79,55.86,8.333333333333334,1,1,0,0,9,6,5,1,898,140167.78,61050.063,275073.19,121112.23,0,0,4757.4971 +11838,14435,25779,25778,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.8205767,8.6755667,0,3,8,-110.91164,0,-9,-9,2021,5,0,48,47,1,0,0,16.711363,16.711363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.25,50.81,8.333333333333334,1,1,0,0,5,6,5,1,898,140167.78,61050.063,275073.19,121112.23,0,0,4757.4971 +11839,14436,25780,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,7.7041526,8.1303883,6.6066785,0,0,-1104.7961,0,3,3,2021,13,1,26,38,1,1,0,9.8353577,9.8353577,0,0,0,0,0,0,0,0,1,1,0,.85115355,6.5297937,53.22,55.2,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,147,1174947.8,557157,356022.72,0,0,0,3047.9226 +11840,14437,25781,-9,25782,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.7572,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,633.5,-39521.805,0,0,0,0,0,1365.9836 +11840,14437,25782,-9,-9,-9,1,0,29,0,2,0,3,3,-9,0,3,7.7523398,7.5491695,0,0,0,-982.01447,0,3,-9,2021,14,3,32,32,1,3,0,7.417129,7.417129,0,0,0,0,0,0,0,0,1,0,1,0,0,44,52,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,633.5,-39521.805,0,0,0,0,0,1365.9836 +11841,14438,25783,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,9.7386751,10.035273,8.4885473,0,0,-963.80145,0,3,2,2021,6,0,30,15,1,0,0,64.783165,64.783165,0,0,0,0,0,0,0,0,1,1,0,4.3125601,8.3886833,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,689,2524282.3,1450965.1,415825.66,0,0,0,15848.872 +11842,14439,25784,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.1096478,6.8432083,0,0,-974.0954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7707477,6.9538751,54.24,49.39,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,304,741147.38,141999.45,396854.59,0,0,0,663.1048 +11843,14440,25785,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,5.5169969,8.1670561,8.3300667,0,0,-933.79816,-9,2,2,2021,14,4,20,0,1,4,0,1.3116957,1.3116957,.05,.05,0,0,0,0,0,2,0,0,0,8.4605713,8.2875824,47,38,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,538,338260.06,-63075.672,137918.17,2772.4441,0,0,3636.4465 +11844,14441,25786,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.6843624,6.9193063,0,0,-1006.923,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1486769,6.8516665,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,495,661071.94,-47.387089,411576.5,0,0,0,1107.676 +11845,14442,25787,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-914.19147,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73344201,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,757,333196.03,0,0,0,0,5681.8545,909.55896 +11845,14443,25788,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,7.7911868,7.887814,0,0,0,-1064.4175,0,-9,-9,2021,12,0,30,36,1,0,0,9.5371857,9.5371857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,20.56,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,140,278588.75,142528.08,164577.02,68027.398,6233.0156,1000.8763,1577.9346 +11846,14444,25789,25790,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,7.0759811,7.276546,5.4781656,8,3,58.388016,0,2,2,2021,10,0,35,40,1,0,0,6.5347724,6.5347724,0,0,0,0,0,0,0,0,1,1,0,5.414104,5.4356627,46.98,59.35,55.19,54.26,6.666666666666667,1,1,0,1,9,8,4,1,156.5,2359654,621458.5,597738.88,0,0,0,5699.4268 +11846,14444,25790,25789,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.7258902,7.9727244,0,8,-3,4.6348205,0,-9,-9,2021,11,0,25,30,1,0,0,9.7546358,9.7546358,0,0,0,0,0,0,0,0,1,1,0,8.6607351,0,55.19,54.26,46.98,59.35,8.333333333333334,1,1,0,0,11,8,4,1,156.5,2359654,621458.5,597738.88,0,0,0,5699.4268 +11847,14445,25791,25792,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.5357428,8.9346437,0,8,-1,52.56115,0,3,2,2021,10,0,22,20,1,0,0,33.038452,33.038452,0,0,0,0,0,0,0,2,0,0,0,4.6848488,0,51.83,57.2,60.02,56.42,8.333333333333334,1,1,0,0,8,9,5,1,959,1331809,281994.22,529303.06,0,0,0,3617.4666 +11847,14445,25792,25791,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.6506453,8.5028896,0,8,1,28.778223,0,3,3,2021,6,0,25,48,1,0,0,26.589735,26.589735,.05,.05,0,0,0,0,0,0,0,0,0,3.0878377,0,60.02,56.42,51.83,57.2,10,1,1,0,0,8,9,5,1,959,1331809,281994.22,529303.06,0,0,0,3617.4666 +11848,14446,25793,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1055.7201,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,1.2943337,0,0,1,1,0,3.7423358,0,52.6,24.62,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,724,52576.344,0,0,0,0,0,1108.8702 +11849,14447,25794,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,5.2185631,5.3566461,0,0,-1032.8197,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,4.0151587,0,0,1,1,0,5.2098727,5.0928254,30.85,17.26,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,482,325997.41,40772.387,149775.52,0,0,0,1638.8392 +11850,14448,25795,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2977304,8.1263905,0,0,0,-942.83862,0,2,2,2021,9,0,40,40,1,0,0,11.890888,11.890888,.05,.05,0,0,0,0,0,2,0,0,0,1.2927912,0,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,240,422817.44,341730.72,189787.66,129301.02,0,0,1204.8708 +11851,14449,25796,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.8154287,6.8366966,0,0,-926.47388,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.6320661,0,0,1,1,0,3.9595428,6.6502213,35.2,43.17,-9,-9,10,1,1,0,0,7,1,2,0,2259,549648.69,54769.773,406653.69,0,0,0,1532.0061 +11852,14450,25797,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1602335,8.0364447,7.2560263,0,0,-950.36438,0,2,2,2021,4,0,18,18,1,0,0,18.391663,18.391663,.05,.05,0,0,0,0,0,0,1,0,1,0,7.2366962,55.35,41.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,428,362576.38,251025.06,245649.86,47655.027,5109.582,245.67505,2121.9761 +11852,14451,25798,-9,25797,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2460527,8.108901,0,0,0,-862.18237,0,2,1,2021,10,1,35,25,1,1,1,11.145786,11.145786,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,9,2,4,0,1466,-23692.287,1763.1892,0,0,0,381.17694,1170.8599 +11852,14452,25799,-9,25797,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1016.1385,0,2,-9,2021,20,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.98,42.37,-9,-9,5,1,1,0,0,0,2,1,0,727,-49846.32,0,0,0,0,0,382.94382 +11852,14453,25800,-9,25797,-9,1,0,20,0,0,0,2,2,-9,0,4,5.8705173,5.9825616,0,0,0,-904.61346,0,2,-9,2021,12,1,24,0,1,1,1,1.7993679,1.7993679,.05,.05,0,0,0,0,0,0,1,0,1,0,0,34.56,63.72,-9,-9,6.666666666666667,1,1,0,0,1,2,2,0,213,128081.32,-85634.711,0,0,0,0,869.38977 +11853,14454,25801,25802,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,56,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.64,28.07,54,46,6.666666666666667,1,1,0,0,3,5,1,1,577.5,196488.31,0,142200.3,0,0,0,2392.9404 +11853,14454,25802,25801,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,128.80031,0,0,1,1,0,2.7462623,0,54,46,56.64,28.07,8,1,1,0,0,0,5,1,1,577.5,196488.31,0,142200.3,0,0,0,2392.9404 +11854,14455,25803,25804,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.3803,6.9970436,7,0,-4.6197319,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3448462,59.53,56.44,61.51,52.79,8.333333333333334,1,1,0,0,0,4,4,1,453.5,791570.13,278371.94,369745.41,0,0,0,3085.2637 +11854,14455,25804,25803,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,8.1028166,8.0079479,7,9,-63.893009,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7115817,8.0322113,61.51,52.79,59.53,56.44,10,1,1,0,0,0,4,4,1,453.5,791570.13,278371.94,369745.41,0,0,0,3085.2637 +11855,14456,25805,-9,25807,25810,1,0,17,0,3,1,2,0,-9,0,4,0,0,0,0,0,-941.42871,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25806,-9,25807,25810,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-877.52661,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25807,25810,-9,-9,1,0,42,0,3,0,3,3,-9,0,4,0,0,0,16,1,67.53064,-9,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25808,-9,25807,25810,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.52264,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25809,-9,25807,25810,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.95782,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25810,25807,-9,-9,1,1,41,0,3,0,3,3,-9,0,4,7.4021511,7.4669137,0,16,-1,114.78245,-9,3,3,2021,9,0,40,0,1,1,0,4.3767552,4.3767552,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11856,14457,25811,25812,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8413305,8.8829727,0,25,-6,56.267632,0,3,3,2021,10,0,43,39,1,1,0,11.961057,11.961057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,53,54,53,7,1,1,0,0,8,5,5,1,1302,1533347.6,1217239.8,262397.25,15236.051,8950.9795,1361.321,4139.5239 +11856,14457,25812,25811,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2389393,8.2152805,0,5,6,-10.72156,0,3,3,2021,9,0,43,43,1,1,0,14.253469,14.253469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,51,53,7,1,1,0,0,4,5,5,1,1302,1533347.6,1217239.8,262397.25,15236.051,8950.9795,1361.321,4139.5239 +11857,14458,25813,25814,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.4608955,8.1820126,0,9,-3,123.75629,0,3,2,2021,7,0,77,37,1,0,0,6.4945359,6.4945359,0,0,0,0,0,0,0,2,0,0,0,2.3370736,0,57.33,53.46,48.29,47.89,8.333333333333334,1,1,0,0,9,10,5,1,219,245379.8,29221.734,332724.44,223305.66,39582.008,0,4310.9346 +11857,14458,25814,25813,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.9484558,8.8200235,5.695507,9,3,-47.797421,0,3,2,2021,8,0,35,36,1,0,0,18.255869,18.255869,0,0,0,0,0,0,0,2,0,0,0,5.9317975,0,48.29,47.89,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,219,245379.8,29221.734,332724.44,223305.66,39582.008,0,4310.9346 +11858,14459,25815,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,4.9096093,5.2518301,0,0,-989.06036,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.251976,47.07,26.08,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,526,-42682.641,78827.305,0,0,0,0,1753.7421 +11859,14460,25816,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.1944,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.42,31.95,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,402,270305.94,0,250407.27,0,0,0,1199.1656 +11859,14461,25817,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-919.55396,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.15,19.97,-9,-9,1.666666666666667,1,1,0,1,9,4,1,1,136,-54330.883,0,0,0,826.40015,0,991.34039 +11860,14462,25818,25819,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.4930058,7.1083136,53,4,122.30543,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4651179,7.4592433,49.28,50.19,43.07,51.88,8.333333333333334,1,1,0,0,0,10,2,1,657,1024027.3,243802.58,336782.41,0,7966.6831,0,2609.9207 +11860,14462,25819,25818,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,3.8797202,3.8471684,53,-4,-33.870758,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9854441,3.858072,43.07,51.88,49.28,50.19,6.666666666666667,1,1,0,0,0,10,2,1,657,1024027.3,243802.58,336782.41,0,7966.6831,0,2609.9207 +11861,14463,25820,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.5311,0,3,3,2021,13,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.69,40.21,-9,-9,6.666666666666667,1,1,0,0,14,4,1,1,441,8567.1768,0,0,0,1970.2058,581.32922,345.73218 +11862,14464,25821,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.3359461,8.437582,0,0,0,-930.98633,0,2,2,2021,9,0,45,48,1,0,0,9.4088011,9.4088011,0,0,0,0,0,0,0,2,1,1,0,2.1530192,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,14,10,4,0,1120,860916.88,626216.94,0,0,0,4124.8804,1056.9652 +11863,14465,25822,25823,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.9840775,8.5809498,4.6141357,8,0,-88.572914,0,3,3,2021,9,0,10,10,1,0,0,81.547447,81.547447,.05,.05,0,0,0,0,0,0,0,0,0,4.8986278,4.7767253,44.95,52.41,29.22,58.49,6.666666666666667,1,1,0,0,8,11,5,1,845.5,1358995.3,512995.91,512277.78,0,0,0,9462.5459 +11863,14465,25823,25822,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.7538309,9.8143339,8.0973005,8,0,-35.200581,0,3,3,2021,21,10,35,30,1,10,0,58.177654,58.177654,.05,.05,0,0,0,0,0,0,0,0,0,5.5412221,8.442049,29.22,58.49,44.95,52.41,5,1,1,0,0,11,11,5,1,845.5,1358995.3,512995.91,512277.78,0,0,0,9462.5459 +11864,14466,25824,25825,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.7188482,6.6350508,0,8,3,61.163124,0,-9,-9,2021,10,0,84,50,1,1,0,1.0966439,1.0966439,0,0,0,0,0,0,0,0,1,1,0,5.7141032,0,52,48,55.2,49.4,7,1,1,0,0,1,5,2,0,1446,320055.94,237980.22,97934.031,0,0,0,2058.1067 +11864,14466,25825,25824,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9778891,5.9666433,8,-3,-54.760601,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4564123,5.6700206,55.2,49.4,52,48,8.333333333333334,1,1,0,0,0,5,2,0,1446,320055.94,237980.22,97934.031,0,0,0,2058.1067 +11865,14467,25826,25827,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.3664675,4.2629004,49,-6,-87.659027,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,4.0614877,59.01,38.88,57.16,56.15,8.333333333333334,1,1,0,0,12,10,2,1,1135,649360.13,65308.047,296751.81,0,0,0,1291.3816 +11865,14467,25827,25826,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7618961,6.536274,49,6,6.5177946,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5482554,6.671989,57.16,56.15,59.01,38.88,8.333333333333334,1,1,0,0,9,10,2,1,1135,649360.13,65308.047,296751.81,0,0,0,1291.3816 +11866,14468,25828,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,5.213119,5.6084676,0,0,0,-1162.2762,-9,3,3,2021,9,0,21,0,1,0,0,.80897498,.80897498,0,0,0,0,0,0,0,0,1,1,0,0,0,39.73,57.61,-9,-9,10,1,1,0,0,7,11,2,0,621,74709.922,0,174846.63,0,4600.9019,0,1348.0178 +11867,14469,25829,-9,25830,-9,1,1,35,0,0,0,1,1,-9,0,3,7.8960719,7.4615626,0,0,0,-965.82428,0,1,1,2021,4,0,30,36,1,0,0,8.5770588,8.5770588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.88,45.37,-9,-9,5,1,1,0,0,12,10,3,1,632,-231682.09,8940.6318,0,0,0,0,1386.9263 +11867,14470,25830,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,5.8186908,5.9433565,0,0,0,-943.12732,0,-9,-9,2021,10,1,10,10,1,1,0,4.4164534,4.4164534,0,0,0,0,0,0,0,0,1,1,0,3.6700535,0,52.83,26.08,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,234,199967.5,132982.23,0,0,0,0,336.27835 +11868,14471,25831,25832,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8053575,8.0258131,0,29,2,-141.51553,0,3,3,2021,10,0,40,39,1,0,0,7.8971381,7.8971381,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.56,46.45,31.45,44.09,3.333333333333333,1,1,0,0,11,4,4,1,427.5,248696.44,79432.961,195978.02,0,0,0,2893.2622 +11868,14471,25832,25831,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0117025,7.907383,0,29,-2,4.9135804,0,2,3,2021,21,9,37,40,1,9,0,10.046268,10.046268,0,0,0,0,0,0,0,0,1,1,0,2.1890728,0,31.45,44.09,58.56,46.45,3.333333333333333,1,1,0,0,8,4,4,1,427.5,248696.44,79432.961,195978.02,0,0,0,2893.2622 +11868,14472,25833,-9,25832,25831,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1062.6737,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.21396787,0,36.37,57.89,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,337,0,0,0,0,0,0,1051.8042 +11869,14473,25834,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,9.1800375,10.067492,7.9312468,0,0,-913.12946,-9,2,2,2021,8,0,48,0,1,0,0,29.479424,29.479424,.05,.05,0,0,0,0,0,2,0,0,0,0,8.3495483,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,4,5,0,576,394206.25,230579.8,219733.02,11197.704,4765.9307,342.05368,5443.6934 +11869,14474,25835,-9,25834,-9,1,1,23,0,0,0,2,2,-9,0,3,8.3381424,8.071476,0,0,0,-947.25128,0,2,-9,2021,10,0,40,45,1,0,1,12.36014,12.36014,.05,.05,0,0,0,0,0,0,0,0,0,5.2661176,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,5,4,4,0,1157,322796.78,13527.127,0,0,16783.584,0,1381.7588 +11870,14475,25836,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8041954,8.4033728,0,1,-6,21.356943,0,3,2,2021,9,0,61,41,1,0,0,11.155469,11.155469,.05,.05,0,0,0,0,0,0,0,0,0,1.7564116,0,43.42,62.33,47.77,56.48,8.333333333333334,1,1,0,0,8,5,5,1,247,202420.61,291561.94,74837.633,0,0,0,2593.5879 +11870,14476,25837,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.937645,8.9474258,0,1,6,-225.35066,0,3,2,2021,12,2,48,54,1,2,0,20.353647,20.353647,.05,.05,0,0,0,0,0,0,0,0,0,2.4728129,0,47.77,56.48,43.42,62.33,10,1,1,0,0,8,5,5,1,387,149679.58,-46767.461,53819.027,-4965.4287,0,1537.4775,3106.7458 +11871,14477,25838,-9,25840,25839,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.17877,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25839,25840,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,2.7623894,3.0426998,0,6,11,-85.398087,0,3,3,2021,9,0,40,40,1,1,0,.049373753,.049373753,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,50,55,8,2,3,0,0,2,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25840,25839,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,0,0,0,26,-11,100.97565,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54,54,8,2,3,0,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25841,-9,25840,25839,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.0231,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14478,25842,-9,25840,25839,1,0,22,0,2,0,2,2,-9,0,4,7.8877568,7.8219519,0,0,0,-1166.1176,0,3,2,2021,11,0,35,24,1,2,1,8.1423979,8.1423979,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,308,53392.508,0,0,0,0,0,1218.2375 +11871,14479,25843,-9,25840,25839,1,1,18,0,2,0,2,2,1,0,5,0,0,0,0,0,-1054.5157,-9,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,1,0,0,8,1,0,518,0,0,0,0,0,0,0 +11872,14480,25844,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,6.5165591,6.2862349,0,0,0,-957.16461,0,2,2,2021,15,3,60,60,1,3,0,1.3224304,1.3224304,0,0,0,0,0,0,0,0,1,1,0,0,0,34.6,53.57,-9,-9,5,1,1,0,0,9,12,2,0,1041,77325.125,-15027.314,124923.45,0,0,0,689.26025 +11873,14481,25845,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.7762933,7.7904463,0,0,0,-961.74146,0,2,2,2021,9,0,47,0,1,0,0,5.2318435,5.2318435,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,940,-174153.5,37113.789,69611.531,65213.805,-293.83832,0,1981.088 +11874,14482,25846,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.6959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,69.8,25.93,-9,-9,10,1,1,0,0,0,10,1,0,73,-40067.871,0,0,0,0,0,1531.3268 +11875,14483,25847,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.4933281,8.5047312,4.6498084,0,0,-965.32544,0,2,2,2021,18,7,57,47,1,7,0,8.4791193,8.4791193,.05,.05,0,0,0,0,0,0,1,1,0,5.2472434,0,38.76,58.16,-9,-9,5,1,1,0,0,10,1,5,1,1565.5,123850.23,136362.47,98514.695,51432.031,5758.0146,8041.04,2270.6306 +11875,14483,25848,-9,25847,-9,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1015.6415,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,1565.5,123850.23,136362.47,98514.695,51432.031,5758.0146,8041.04,2270.6306 +11876,14484,25849,25850,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,6.7186236,7.1971259,6.3070388,8,-1,-6.8382583,0,3,3,2021,7,0,11,14,1,0,0,10.168427,10.168427,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2912045,59.14,52.5,59.89,34.63,10,1,1,0,0,9,10,4,1,717.5,392688.94,386835.44,166200.52,0,0,4183.0381,3513.8398 +11876,14484,25850,25849,-9,-9,1,1,68,0,0,0,2,2,-9,1,3,8.3694487,8.3025761,0,8,1,40.130047,0,-9,-9,2021,8,0,40,40,1,0,0,10.56403,10.56403,.05,.05,0,1,0,4.1218786,0,0,1,1,0,3.270263,0,59.89,34.63,59.14,52.5,8.333333333333334,1,1,0,0,9,10,4,1,717.5,392688.94,386835.44,166200.52,0,0,4183.0381,3513.8398 +11877,14485,25851,25855,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,3.9251993,3.4823818,0,1,-11,-59.511398,-9,3,2,2021,7,0,28,0,1,0,0,.14410342,.14410342,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,52.35,26.26,51.93,6.666666666666667,1,1,0,0,4,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25852,-9,25851,25855,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.60889,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25853,-9,25851,25855,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.33276,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25854,-9,25851,25855,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.60834,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25855,25851,-9,-9,1,1,41,1,3,0,2,2,-9,1,2,0,0,0,1,11,40.34856,-9,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,51.93,53.54,52.35,1.666666666666667,1,1,0,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11878,14486,25856,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1000.4745,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,990,64732.016,0,0,0,0,0,0 +11879,14487,25857,25860,-9,-9,1,0,25,1,2,0,2,2,0,0,4,0,0,0,5,-6,58.824654,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,10,1,1,0,1,4,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25858,-9,25857,25860,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5574,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25859,-9,25857,25860,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.7347,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25860,25857,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,8.5054159,8.2622766,0,5,6,36.202827,0,1,1,2021,7,0,60,60,1,0,0,8.1196003,8.1196003,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,3,4,0,0,5,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11880,14488,25861,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.1596575,8.316844,0,0,0,-990.90295,0,-9,-9,2021,9,2,38,38,1,2,0,12.14614,12.14614,.05,.05,0,0,0,0,0,0,0,0,0,2.9810905,0,49.17,58.56,-9,-9,8.333333333333334,2,3,0,0,3,10,4,0,420,281719.5,-143691.39,0,0,0,683.70038,1907.9882 +11881,14489,25862,25863,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,11,-7,10.631853,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,19.03,59.71,26.95,0,1,1,0,0,0,11,2,0,246.5,37592.477,107829.67,0,0,0,0,2852.1289 +11881,14489,25863,25862,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.5980067,6.79705,11,7,-184.95964,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.6636457,59.71,26.95,38.05,19.03,6.666666666666667,1,1,0,0,4,11,2,0,246.5,37592.477,107829.67,0,0,0,0,2852.1289 +11882,14490,25864,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,4,0,6.813623,6.3198333,0,0,-1073.5969,-9,2,2,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0449476,0,46.56,48.99,-9,-9,6.666666666666667,1,1,0,0,2,12,2,1,201,109264.22,0,0,0,817.4071,0,835.6366 +11883,14491,25865,25866,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.4977808,7.3643866,17,7,56.076637,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,6.6884995,7.3061404,62.25,45.63,46.39,60.99,8.333333333333334,1,1,0,0,0,2,3,1,1094,1343379.5,1028986.5,306916.09,5463.9678,0,0,1954.5769 +11883,14491,25866,25865,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.1026773,6.8561201,17,-7,38.272602,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.4351749,6.9769144,46.39,60.99,62.25,45.63,8.333333333333334,1,1,0,0,8,2,3,1,1094,1343379.5,1028986.5,306916.09,5463.9678,0,0,1954.5769 +11883,14492,25867,-9,25866,25865,1,1,35,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1014.6478,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.04,54.12,-9,-9,3.333333333333333,4,2,1,1,1,2,1,1,617,-262734.03,0,0,0,0,0,274.3288 +11884,14493,25868,-9,25870,25869,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.92432,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11884,14493,25869,25870,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.5519753,8.513299,0,3,12,73.928253,0,-9,-9,2021,9,0,50,50,1,1,0,12.670711,12.670711,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,50.92,33.35,8,4,1,0,0,1,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11884,14493,25870,25869,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.8633747,7.8509331,0,3,-12,-86.086487,0,-9,-9,2021,13,1,42,27,1,1,0,4.8064461,4.8064461,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,50.92,33.35,51,56,5,1,1,0,0,8,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11885,14494,25871,25873,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.296484,8.2551918,0,12,9,-8.9093704,0,-9,-9,2021,7,0,45,49,1,0,0,9.6709461,9.6709461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,48.87,32.71,6.666666666666667,1,1,0,0,8,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14494,25872,-9,25873,25871,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2677,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14494,25873,25871,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8010283,8.3807859,0,12,0,22.910664,0,2,2,2021,10,3,51,50,1,3,0,12.967353,12.967353,.05,.05,0,0,0,0,0,0,1,1,0,2.6428356,0,48.87,32.71,55.96,49.93,8.333333333333334,1,1,0,0,12,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14495,25874,-9,25873,25871,1,0,22,0,1,0,1,1,1,0,4,7.8132401,7.7528224,0,0,0,-990.94934,-9,1,2,2021,6,0,38,0,1,0,1,7.457654,7.457654,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,280,100.32301,0,0,0,0,0,813.91632 +11886,14496,25875,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.0797439,3.614696,0,0,-1025.4131,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1139035,3.640626,56.7,42.76,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,372,257636.08,-76917.469,300959.22,0,0,0,571.7804 +11887,14497,25876,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.0494518,8.0824804,0,0,0,-909.92657,-9,2,2,2021,2,0,40,0,1,0,0,11.206336,11.206336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.47,48.05,-9,-9,10,1,1,0,0,9,13,4,1,570,193602.58,111584.38,0,0,0,0,1958.8602 +11888,14498,25877,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-946.82904,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.03,32.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,428,-21772.428,0,0,0,0,0,916.56439 +11888,14499,25878,-9,25877,-9,1,1,30,0,0,0,2,2,-9,0,4,7.3353748,7.4276867,0,0,0,-1048.5464,0,3,-9,2021,10,2,37,45,1,2,0,5.3111343,5.3111343,.05,.05,0,0,0,0,0,0,1,1,0,1.6241293,0,50.65,60.47,-9,-9,10,1,1,0,0,10,13,3,0,1158,-46789.977,82760.898,0,0,0,694.52686,618.01282 +11888,14500,25879,-9,25877,-9,1,1,27,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1014.454,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,50.13,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1244,-5949.6768,0,0,0,0,0,-16.439039 +11889,14501,25880,-9,25881,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.69287,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11889,14501,25881,-9,-9,-9,1,0,30,2,2,0,1,1,-9,0,3,0,0,0,0,0,-1053.084,0,3,3,2021,11,2,0,25,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,55.04,-9,-9,6.666666666666667,2,3,0,0,6,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11889,14501,25882,-9,25881,-9,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5907,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11890,14502,25883,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,8.2706175,7.8827815,0,0,0,-926.15771,0,3,2,2021,7,0,40,0,1,0,0,9.7172241,9.7172241,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,38.53,-9,-9,6.666666666666667,1,1,0,0,1,6,4,0,2506,128686.17,159323,0,0,5726.6074,0,3649.0188 +11891,14503,25884,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7865763,8.8320351,0,0,0,-1114.8596,0,-9,-9,2021,11,0,33,43,1,0,0,23.190889,23.190889,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.46,63.68,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,294,58362.379,-21265.625,0,0,0,0,3049.3271 +11892,14504,25885,25886,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2915545,8.3790493,0,9,-7,-91.872917,0,-9,-9,2021,12,0,37,74,1,0,0,15.184308,15.184308,0,0,0,0,0,0,0,0,0,0,0,0,0,40.98,52.59,48.28,60.18,6.666666666666667,1,1,0,0,14,9,5,1,923.5,2254728.5,1441172.6,631266,0,0,0,3832.1536 +11892,14504,25886,25885,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.1021509,8.1659451,7.5807304,9,7,55.7061,0,3,2,2021,8,0,38,38,1,0,0,8.3363008,8.3363008,0,0,0,0,0,0,0,0,0,0,0,0,7.1923594,48.28,60.18,40.98,52.59,8.333333333333334,1,1,0,0,12,9,5,1,923.5,2254728.5,1441172.6,631266,0,0,0,3832.1536 +11893,14505,25887,25888,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.236412,9.1219311,0,12,4,-59.663437,0,2,2,2021,7,0,56,51,1,0,0,16.221048,16.221048,0,0,0,0,0,0,0,0,0,0,0,3.561228,0,57.06,57.76,30.85,65.26000000000001,10,1,1,0,0,12,1,5,1,1892,983208.5,0,489626.41,153453.56,0,0,4165.4365 +11893,14505,25888,25887,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.6125565,8.3223648,0,12,-4,-6.5675669,0,1,2,2021,19,7,44,40,1,7,0,12.703324,12.703324,0,0,0,0,0,0,0,0,0,0,0,0,0,30.85,65.26000000000001,57.06,57.76,8.333333333333334,1,1,0,0,12,1,5,1,1892,983208.5,0,489626.41,153453.56,0,0,4165.4365 +11894,14506,25889,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.7988181,5.8497467,0,0,-1004.4055,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,22.850965,0,0,1,1,0,0,5.7764001,53.53,19.14,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,645,-55910.348,0,0,0,0,0,1470.949 +11895,14507,25890,25891,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.1799726,8.0872202,0,9,-2,-10.988234,0,2,2,2021,12,4,32,32,1,4,0,12.450784,12.450784,.05,.05,0,0,0,0,0,2,1,1,0,.90528119,0,44.16,61.04,43.6,51.61,8.333333333333334,1,1,0,0,15,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11895,14507,25891,25890,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.6105347,8.3955135,0,9,2,27.864527,-9,2,-9,2021,12,0,50,0,1,0,0,14.905567,14.905567,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,44.16,61.04,5,1,1,0,0,15,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11895,14507,25892,-9,25890,25891,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.88928,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11896,14508,25893,25894,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,0,0,6,0,-46.326035,0,2,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6148443,0,54.02,43.98,51.8,44.35,10,1,1,0,0,0,12,3,1,382.5,287812.94,38252.852,0,0,0,0,4296.3271 +11896,14508,25894,25893,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5172987,8.0469723,6,0,77.2061,0,2,2,2021,11,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6703172,8.3026972,51.8,44.35,54.02,43.98,8.333333333333334,1,1,0,0,0,12,3,1,382.5,287812.94,38252.852,0,0,0,0,4296.3271 +11897,14509,25895,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,6.929378,7.0059667,0,0,-956.52087,1,-9,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4880619,0,51.83,57.2,-9,-9,5,1,1,0,1,3,1,2,0,188,-91895.445,0,0,0,0,0,815.83411 +11898,14510,25896,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,7.9293127,7.9157867,0,0,0,-887.92072,0,2,2,2021,10,0,59,49,1,0,0,6.6698442,6.6698442,0,0,0,0,0,0,0,0,0,0,0,3.5719934,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,9,1,4,0,290,-86541.242,0,0,0,0,0,1069.16 +11899,14511,25897,25898,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5886145,8.4687891,0,8,0,124.97421,-9,-9,-9,2021,12,1,40,0,1,1,0,15.444698,15.444698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.59,58.37,33.74,63,3.333333333333333,1,1,0,0,11,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11899,14511,25898,25897,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4193983,8.5029736,0,8,0,32.428368,0,1,1,2021,15,4,30,30,1,4,0,14.582602,14.582602,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,43.59,58.37,5,1,1,0,1,9,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11899,14511,25899,-9,25898,25897,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.54163,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11900,14512,25900,25901,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.7009883,7.800519,0,30,1,-148.78671,0,2,2,2021,12,1,17,20,1,1,0,18.917196,18.917196,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,9,5,1,651.5,347432.06,82758.859,370248.63,66176.859,32727.258,0,12591.021 +11900,14512,25901,25900,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.9068871,10.272544,0,30,-1,18.039616,0,2,2,2021,6,0,25,20,1,0,0,75.410248,75.410248,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,651.5,347432.06,82758.859,370248.63,66176.859,32727.258,0,12591.021 +11900,14513,25902,-9,25900,25901,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-988.91266,-9,1,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4064174,0,47.72,53.77,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1076,-32433.885,0,0,0,0,0,1306.1283 +11900,14514,25903,-9,25900,25901,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-964.62842,-9,1,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.58,58.88,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,570,113335.77,0,0,0,0,0,0 +11901,14515,25904,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.6750531,7.7144694,6.6101727,0,0,-987.43903,0,2,2,2021,5,0,21,21,1,0,0,12.811996,12.811996,0,0,0,1,0,0,0,27,1,1,0,1.3901939,6.4848485,60.05,42.65,-9,-9,10,1,1,0,0,8,8,3,1,479,375011.59,50463.258,331320.97,0,0,-540.49481,1871.9249 +11902,14516,25905,25906,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.9192505,7.7944107,0,7,-2,-115.53368,0,3,-9,2021,6,0,37,42,1,0,0,10.150104,10.150104,.05,.05,0,0,0,0,0,0,0,0,0,6.5282617,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,1901.5,184257.56,163500.36,192061.39,124020.81,171.24939,13351.545,3835.7891 +11902,14516,25906,25905,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.8405366,8.2824545,7.0288057,7,2,-26.021147,0,3,3,2021,8,0,19,19,1,0,0,15.931787,15.931787,0,0,0,0,0,0,0,0,0,0,0,7.7912035,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,1901.5,184257.56,163500.36,192061.39,124020.81,171.24939,13351.545,3835.7891 +11902,14517,25907,-9,25906,-9,1,1,23,0,0,0,1,1,-9,0,5,7.1415753,7.3567219,0,0,0,-1003.6117,0,1,2,2021,7,1,8,8,1,1,1,16.242527,16.242527,.05,.05,0,0,0,0,0,0,0,0,0,9.4590721,0,55.64,46.24,-9,-9,10,1,1,0,0,2,10,2,1,502,70464.156,57391.039,0,0,-1751.1141,0,6562.9233 +11903,14518,25908,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1006.0096,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.55,22.17,-9,-9,10,1,1,0,0,0,4,1,1,129,77981.086,0,0,0,0,-399.22968,-487.35086 +11904,14519,25909,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4533596,8.3423662,0,0,0,-903.25421,0,3,3,2021,7,0,37,37,1,0,0,14.562982,14.562982,0,0,0,0,0,0,0,0,0,0,0,4.9478526,0,54.1,48.06,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,1954,-87150.672,0,0,0,0,0,2076.9116 +11904,14520,25910,-9,-9,25909,1,1,22,0,0,0,1,1,1,0,3,6.6649623,6.1922874,0,0,0,-1021.9076,-9,3,2,2021,10,3,30,0,1,3,1,3.0743401,3.0743401,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,1119,-90407.883,0,0,0,6448.6772,0,-387.65417 +11905,14521,25911,25912,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.3565769,8.2138348,0,17,0,-10.835578,0,2,2,2021,6,0,40,40,1,0,0,11.873493,11.873493,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,32.09,27.36,8.333333333333334,1,1,0,0,11,1,3,1,1256.5,149899.42,96257.125,229147.83,92343.391,0,0,1183.3174 +11905,14521,25912,25911,-9,-9,1,0,52,0,0,0,1,1,-9,0,1,0,0,0,17,0,-50.000206,0,2,2,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,27.36,57.06,57.76,0,1,1,0,0,0,1,3,1,1256.5,149899.42,96257.125,229147.83,92343.391,0,0,1183.3174 +11905,14522,25913,-9,25912,25911,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1009.0325,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.94,56.26,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,323,0,0,0,0,0,0,0 +11906,14523,25914,25915,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.6187177,6.6215453,0,37,3,25.696562,0,3,3,2021,9,0,44,44,1,0,0,2.8683968,2.8683968,0,0,0,0,0,0,0,0,0,0,0,0,0,49.59,58.37,38.34,62.12,3.333333333333333,1,1,0,1,11,12,2,1,333,153651.94,78553.898,76517.719,0,0,0,-1499.1213 +11906,14523,25915,25914,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,37,-3,61.128384,0,2,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,38.34,62.12,49.59,58.37,3.333333333333333,1,1,1,1,11,12,2,1,333,153651.94,78553.898,76517.719,0,0,0,-1499.1213 +11907,14524,25916,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.1778798,7.5604477,6.3249416,0,0,-1067.4351,0,-9,-9,2021,6,0,35,0,1,0,0,5.7168951,5.7168951,0,0,0,0,0,0,0,2,1,1,0,7.2140522,6.487359,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,245,502485.28,373532.28,267545.91,-259.11191,6411.4214,0,1788.8271 +11908,14525,25917,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.834455,8.1770706,0,0,0,-1082.1758,0,3,3,2021,6,0,40,39,1,0,0,9.0528402,9.0528402,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,1,4,0,282,0,0,0,0,0,0,1223.7307 +11908,14526,25918,-9,-9,25917,1,0,23,0,0,0,2,2,-9,0,5,7.5667901,7.4292493,0,0,0,-1028.8771,0,-9,2,2021,18,4,44,44,1,4,1,4.7579875,4.7579875,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,909,-139938.69,0,0,0,0,0,206.42761 +11909,14527,25919,25920,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.9861908,5.7424192,66,-1,129.0807,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.7346187,55.95,39.4,46.64,42.72,8.333333333333334,1,1,0,0,5,9,2,1,1255,414031.25,-18075.518,315952.44,0,0,0,1475.882 +11909,14527,25920,25919,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,66,1,-153.13081,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,67.438507,0,0,1,1,0,0,0,46.64,42.72,55.95,39.4,8.333333333333334,1,1,0,0,0,9,2,1,1255,414031.25,-18075.518,315952.44,0,0,0,1475.882 +11910,14528,25921,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.6756802,6.3238082,0,0,-1022.1227,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.749208,6.7218604,67.21000000000001,37.95,-9,-9,10,1,1,0,0,5,2,2,1,288,174527.09,-61217.996,72601.813,0,0,0,2073.3083 +11911,14529,25922,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.0106697,7.9094648,0,0,-1060.1482,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2306876,7.5404034,51.77,58.57,-9,-9,10,1,1,0,0,0,10,3,1,564,133947.41,142512.11,0,0,0,0,1346.922 +11912,14530,25923,-9,-9,-9,1,0,63,0,1,0,2,2,-9,0,4,0,8.0021982,8.1354408,0,0,-1066.1003,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.2843757,8.1591406,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,4,8,3,1,1841,171173.8,214665.2,0,0,0,0,1567.1401 +11912,14531,25924,-9,25925,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3065,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,3,1,317,-14187.264,0,0,0,0,-150.29015,885.13293 +11912,14531,25925,-9,25923,-9,1,0,27,0,1,0,2,2,-9,0,3,7.8009148,7.9094715,0,0,0,-1058.3038,0,2,3,2021,12,0,25,25,1,0,0,10.305283,10.305283,0,0,0,0,0,0,0,0,1,1,0,0,0,49.84,48.57,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,317,-14187.264,0,0,0,0,-150.29015,885.13293 +11913,14532,25926,-9,25928,25927,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.32611,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11913,14532,25927,25928,-9,-9,1,1,36,1,1,0,3,3,-9,0,4,8.0166817,7.9193931,0,4,2,33.293156,0,-9,-9,2021,10,0,40,40,1,1,0,8.2334127,8.2334127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,52.99,51.28,7,4,1,0,0,1,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11913,14532,25928,25927,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,0,0,0,4,-2,-133.47598,0,2,2,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7018309,0,52.99,51.28,50,57,6.666666666666667,1,1,0,0,9,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11914,14533,25929,-9,-9,-9,1,0,55,0,2,0,1,1,-9,0,4,8.4251156,8.3598242,0,0,0,-1106.819,0,2,1,2021,8,0,35,37,1,0,0,14.777083,14.777083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.2,55.41,-9,-9,6.666666666666667,3,4,0,0,5,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11914,14533,25930,-9,25929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.55621,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11914,14533,25931,-9,25929,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-991.15723,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,3,4,-9,0,0,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11915,14534,25932,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6119242,9.0456772,0,0,0,-890.7887,0,3,3,2021,11,1,51,37,1,1,0,16.17062,16.17062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.03,48.09,-9,-9,8.333333333333334,4,2,0,0,14,8,5,0,235,590314.75,79383.617,417723.53,0,0,0,1493.2372 +11916,14535,25933,25934,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.6987162,7.5424247,0,3,-2,57.537563,0,-9,-9,2021,15,3,25,40,1,3,0,8.3670225,8.3670225,.05,.05,0,0,0,0,0,0,0,0,0,4.7290225,0,41.17,52.68,49.95,57.02,3.333333333333333,1,1,0,0,4,5,4,1,609,-18918.053,-44986.75,158517.83,104961.63,3211.5281,0,2389.7686 +11916,14535,25934,25933,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4211969,8.5933256,0,3,2,-43.176777,0,-9,-9,2021,8,1,40,40,1,1,0,15.756484,15.756484,.05,.05,0,0,0,0,0,0,0,0,0,3.7879622,0,49.95,57.02,41.17,52.68,8.333333333333334,1,1,0,0,4,5,4,1,609,-18918.053,-44986.75,158517.83,104961.63,3211.5281,0,2389.7686 +11917,14536,25935,25936,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.0965338,7.9859366,0,25,-1,-9.9683247,0,3,2,2021,6,0,49,13,1,0,0,6.1496758,6.1496758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,55,8.333333333333334,1,1,0,0,7,4,3,0,465.5,36473.594,-89298.563,134301.05,40450.188,10723.993,827.70428,1251.1338 +11917,14536,25936,25935,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,6.2713437,6.3598166,0,7,1,20.091358,0,-9,-9,2021,10,0,12,16,1,1,0,6.4421515,6.4421515,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,57.16,56.15,8,1,1,0,0,2,4,3,0,465.5,36473.594,-89298.563,134301.05,40450.188,10723.993,827.70428,1251.1338 +11917,14537,25937,-9,25936,25935,1,1,24,0,0,0,1,1,-9,0,4,7.8052168,8.2635326,0,0,0,-1064.782,0,3,2,2021,6,0,37,41,1,0,1,11.012074,11.012074,0,0,0,0,0,0,0,0,0,0,0,0,0,64.38,39.16,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,1367,0,0,0,0,0,0,1073.2531 +11917,14538,25938,-9,25936,25935,1,0,19,0,0,0,2,2,1,0,4,6.254302,6.328125,0,0,0,-927.82635,-9,2,3,2021,9,0,10,0,1,0,1,6.3772826,6.3772826,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,261,172130.53,0,0,0,0,0,-103.09721 +11918,14539,25939,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.754148,7.9990001,5.6172681,0,0,-1060.1824,0,3,3,2021,8,0,24,-9,1,0,0,12.750532,12.750532,0,0,0,0,0,0,0,0,1,1,0,3.0452652,5.9758306,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,549,543830,94522.32,164323.41,62436.289,-1615.9962,0,939.72791 +11919,14540,25940,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,7.6460075,7.6431108,0,0,0,-941.17444,0,3,-9,2021,13,2,30,30,1,2,0,5.7932606,5.7932606,.05,.05,0,0,0,0,0,0,1,1,0,2.6656144,0,49,19.72,-9,-9,3.333333333333333,1,1,0,0,9,2,3,1,1910,-82682.867,20420.107,0,0,0,0,1652.6195 +11920,14541,25941,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,4.8537512,5.1668072,0,0,-1010.6446,-9,3,2,2021,9,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7675509,5.2662573,56,25.06,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,831,3682.0461,67066.445,0,0,0,0,1524.2159 +11921,14542,25942,-9,25944,25943,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.3194,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25943,25944,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.6012259,8.7159891,0,9,3,-75.978432,0,2,2,2021,7,0,40,40,1,0,0,14.705775,14.705775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,51,40.48,60.05,8.333333333333334,1,1,0,0,9,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25944,25943,-9,-9,1,0,41,1,3,0,1,1,-9,0,4,0,0,0,15,-3,106.9335,0,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,50.6,51,6.666666666666667,1,1,0,0,3,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25945,-9,25944,25943,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.6095,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25946,-9,25944,25943,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-958.20294,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11922,14543,25947,-9,25949,25948,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1082.9282,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25948,25949,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,4.8986287,5.0216861,0,25,6,-10.36076,0,3,3,2021,6,0,35,60,1,0,0,.37782207,.37782207,0,0,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,57.06,57.76,10,1,1,0,0,13,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25949,25948,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.4187837,7.2584896,0,25,-6,35.9799,0,3,3,2021,7,0,15,11,1,0,0,9.1771336,9.1771336,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,10,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25950,-9,25949,25948,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-981.66644,-9,2,2,2021,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.42,64.81,-9,-9,5,1,1,0,0,2,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14544,25951,-9,25949,25948,1,1,19,0,1,1,2,0,-9,0,3,0,5.5561705,5.7709751,0,0,-1125.176,-9,2,2,2021,15,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,0,1,6.6262956,0,35.86,58.14,-9,-9,5,1,1,0,0,5,13,2,1,250,15844.716,-45091.496,0,0,0,0,537.07599 +11923,14545,25952,25953,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.7954826,8.8424721,0,23,-2,10.21979,0,2,2,2021,7,0,37,37,1,0,0,18.892225,18.892225,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.63,54.22,51.84,51.67,1.666666666666667,1,1,0,0,8,6,5,1,1035,200504.5,194205.94,196827.28,63237.344,0,0,4655.8271 +11923,14545,25953,25952,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.6099567,8.897644,0,7,2,-83.112419,0,2,2,2021,14,3,37,37,1,3,0,21.982527,21.982527,.05,.05,0,0,0,0,0,2,1,1,0,2.3973083,0,51.84,51.67,49.63,54.22,8.333333333333334,1,1,0,0,8,6,5,1,1035,200504.5,194205.94,196827.28,63237.344,0,0,4655.8271 +11923,14546,25954,-9,25952,25953,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.12842,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3420138,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,698,-74686.148,0,0,0,0,0,515.62225 +11924,14547,25955,25956,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,7.0550241,7.252265,0,32,0,-52.375088,0,2,2,2021,6,0,50,0,1,0,0,2.6455679,2.6455679,.05,.05,0,0,0,0,0,0,0,0,0,4.6310024,0,47.61,51.64,57.16,56.15,8.333333333333334,1,1,0,0,10,7,3,1,431.5,559110.81,433074.41,0,0,0,0,2161.5911 +11924,14547,25956,25955,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.9010468,7.6835232,0,32,0,-177.93307,0,2,3,2021,9,0,33,32,1,0,0,9.876256,9.876256,0,0,0,0,0,0,0,0,0,0,0,2.1217484,0,57.16,56.15,47.61,51.64,8.333333333333334,1,1,0,0,11,7,3,1,431.5,559110.81,433074.41,0,0,0,0,2161.5911 +11924,14548,25957,-9,25956,25955,1,0,24,0,0,0,2,2,-9,0,4,8.0832605,8.3874311,0,0,0,-1119.8903,0,2,2,2021,5,0,39,38,1,0,1,11.707072,11.707072,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,511,-48012.172,145501.28,0,0,0,0,1749.7953 +11924,14549,25958,-9,25956,25955,1,0,22,0,0,0,2,2,-9,0,3,7.5663958,7.6332893,0,0,0,-987.27454,0,2,1,2021,27,11,38,38,1,11,1,5.1485562,5.1485562,0,0,0,0,0,0,0,0,0,0,0,0,0,15.58,61.96,-9,-9,3.333333333333333,1,1,0,0,6,7,3,1,1324,-260956.84,0,0,0,0,0,1449.0703 +11925,14550,25959,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1072.2028,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.52,52.14,-9,-9,5,1,1,1,0,0,9,2,0,586,-569.35248,0,0,0,0,0,1990.4419 +11926,14551,25960,25961,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.8163519,8.890749,0,1,-5,-10.893911,-9,-9,-9,2021,9,1,44,0,1,1,0,22.107439,22.107439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,50.19,45.85,61.26,6.666666666666667,1,1,0,0,4,5,5,1,278.5,134303.92,42204.219,0,0,0,0,3875.4998 +11926,14551,25961,25960,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3922701,8.4971008,0,1,5,143.06651,0,2,1,2021,19,8,40,42,1,8,0,13.081389,13.081389,.05,.05,0,0,0,0,0,0,1,1,0,2.0618989,0,45.85,61.26,49.28,50.19,8.333333333333334,1,1,0,0,9,5,5,1,278.5,134303.92,42204.219,0,0,0,0,3875.4998 +11927,14552,25962,25963,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.2321639,7.3883252,36,-6,-37.229012,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,2.9258854,0,21.10598,120,1,1,0,0,7.2986326,31.34,38.79,54,46,3.333333333333333,1,1,0,0,4,2,3,1,1068.5,842371.19,557971.44,173441.72,0,0,0,2614.8032 +11927,14552,25963,25962,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.1533122,7.5147524,36,6,38.364902,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3148289,54,46,31.34,38.79,8,1,1,0,0,0,2,3,1,1068.5,842371.19,557971.44,173441.72,0,0,0,2614.8032 +11928,14553,25964,25965,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,8.082921,8.1037989,46,-5,-59.524128,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9627542,7.4275527,52,54.51,45.91,59.89,6.666666666666667,1,1,0,0,5,10,4,1,694.5,1469559,1033208.6,325759.75,-3454.6138,0,0,3562.9268 +11928,14553,25965,25964,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5852914,7.4191432,46,5,12.790311,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.354887,7.2589846,45.91,59.89,52,54.51,6.666666666666667,1,1,0,0,5,10,4,1,694.5,1469559,1033208.6,325759.75,-3454.6138,0,0,3562.9268 +11929,14554,25966,25967,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.932014,6.3900809,33,-3,147.48882,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.0720818,6.8609014,43.37,57.28,55.48,50.05,6.666666666666667,1,1,0,0,4,10,3,1,409,1215703.6,506988.44,375661.91,95657,0,0,2489.1655 +11929,14554,25967,25966,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.6782985,7.6377449,12,3,73.367599,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6657395,55.48,50.05,43.37,57.28,8.333333333333334,1,1,0,0,1,10,3,1,409,1215703.6,506988.44,375661.91,95657,0,0,2489.1655 +11930,14555,25968,25969,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2750683,6.9712825,0,22,1,109.69025,0,2,2,2021,7,1,18,18,1,1,0,8.4065943,8.4065943,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,61.43,43.34,10,1,1,0,0,13,8,5,1,438.5,1555554.1,791989.25,573292.13,74613.016,0,0,4558.7368 +11930,14555,25969,25968,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.3674726,9.3620939,0,23,-1,169.63739,0,2,2,2021,6,0,46,47,1,0,0,30.7822,30.7822,0,0,0,0,0,0,0,0,0,0,0,7.7874999,0,61.43,43.34,54.2,57.49,8.333333333333334,1,1,0,0,13,8,5,1,438.5,1555554.1,791989.25,573292.13,74613.016,0,0,4558.7368 +11930,14556,25970,-9,25968,25969,1,0,22,0,0,0,2,2,-9,0,5,8.2745867,8.2164402,0,0,0,-868.31964,-9,2,1,2021,6,0,35,0,1,0,1,15.091603,15.091603,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.96,56.89,-9,-9,10,1,1,0,0,6,8,4,1,455,74754.922,-16643.295,0,0,0,0,2002.5186 +11930,14557,25971,-9,25968,25969,1,0,22,0,0,0,2,2,-9,0,3,7.9984651,8.2765598,0,0,0,-973.04034,-9,2,1,2021,6,0,36,0,1,0,1,11.72779,11.72779,0,0,0,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,6,8,4,1,132,32083.811,0,0,0,0,0,1550.844 +11931,14558,25972,25973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5728254,8.5054502,5.3939972,6,-3,-67.525291,-9,2,3,2021,5,0,35,0,1,0,0,16.756071,16.756071,.05,.05,0,0,0,0,0,0,1,1,0,5.6923318,5.5665212,57.73,54.53,52.97,53.97,8.333333333333334,1,1,0,0,7,10,4,1,686.5,1291383.4,1078960.1,285554.56,0,0,0,4521.998 +11931,14558,25973,25972,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,6,3,5.3430061,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6272035,0,52.97,53.97,57.73,54.53,8.333333333333334,1,1,0,1,5,10,4,1,686.5,1291383.4,1078960.1,285554.56,0,0,0,4521.998 +11932,14559,25974,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8459711,8.6947889,0,0,0,-955.90259,0,-9,-9,2021,8,0,30,28,1,0,0,27.090067,27.090067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,236,25085.855,168567.89,0,0,0,0,1061.7808 +11933,14560,25975,25976,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5473275,7.5129676,0,25,4,180.77478,0,-9,2,2021,8,0,45,40,1,0,0,5.1258526,5.1258526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,40.23,61.31,6.666666666666667,1,1,0,0,6,5,3,1,352,393857.97,180851.38,190446.42,0,0,0,1336.2791 +11933,14560,25976,25975,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,6.6952219,6.912672,0,27,-4,-51.148956,0,2,2,2021,12,0,40,40,1,0,0,2.6787124,2.6787124,0,0,0,0,0,0,0,2,0,0,0,4.111218,0,40.23,61.31,52.97,51.29,8.333333333333334,1,1,0,0,10,5,3,1,352,393857.97,180851.38,190446.42,0,0,0,1336.2791 +11934,14561,25977,-9,25978,25979,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.931,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25978,25979,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.108376,7.0542107,0,15,-1,36.537098,0,2,2,2021,11,0,16,16,1,2,0,7.8597641,7.8597641,.05,.05,0,0,0,0,0,27,1,1,0,0,0,48,56,50,57,7,1,1,0,0,9,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25979,25978,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,8.2987757,8.2104492,0,15,1,-97.662857,0,2,2,2021,10,0,35,44,1,1,0,12.118955,12.118955,.05,.05,0,0,0,0,0,27,1,1,0,.071375705,0,50,57,48,56,7,1,1,0,0,9,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25980,-9,25978,25979,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.1225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11935,14562,25981,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.6972761,8.6924229,0,0,0,-1001.8519,0,-9,-9,2021,9,0,38,37,1,0,0,22.097643,22.097643,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,1296,290869.25,30917.379,12172.306,0,0,0,2693.9463 +11936,14563,25982,25983,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.7484155,8.0636826,0,9,-12,-46.819263,0,-9,-9,2021,21,9,38,37,1,9,0,7.5372591,7.5372591,.05,.05,0,0,0,0,0,0,1,1,0,3.4220049,0,31.49,43.99,34.57,50.44,3.333333333333333,1,1,0,1,11,6,3,1,484.5,-7992.8154,122028.37,51175.555,59576.953,19634.133,0,2295.3638 +11936,14563,25983,25982,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.3503242,6.3925552,9,12,10.414828,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2020535,6.5183053,34.57,50.44,31.49,43.99,8.333333333333334,1,1,0,0,8,6,3,1,484.5,-7992.8154,122028.37,51175.555,59576.953,19634.133,0,2295.3638 +11937,14564,25984,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4103012,8.248805,0,0,0,-1025.8433,0,-9,-9,2021,8,0,38,44,1,0,0,15.79823,15.79823,.05,.05,0,0,0,0,0,2,0,0,0,0,0,55.29,42.09,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,217,619476.5,372405.63,0,0,5596.6118,969.88623,2155.0718 +11937,14565,25985,-9,25984,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9545894,7.9384537,0,0,0,-892.20941,0,2,-9,2021,12,0,40,45,1,0,1,7.4091101,7.4091101,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,12,4,0,232,103509.06,103378.15,0,0,0,0,1091.6616 +11938,14566,25986,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1039.2437,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.06,14.36,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,448,285943.66,-69480.742,200750.09,20861.225,52237.344,0,1654.4373 +11939,14567,25987,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6373229,7.9819832,0,0,0,-954.06238,0,3,2,2021,8,0,37,35,1,0,0,7.9805498,7.9805498,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,687,236703.03,98803.031,0,0,-2230.1604,0,1745.7413 +11939,14568,25988,-9,25987,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0858917,8.134511,0,0,0,-968.53741,-9,2,-9,2021,7,0,37,0,1,0,1,9.9974756,9.9974756,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,851,27391.082,0,0,0,0,0,1766.7056 +11939,14569,25989,-9,25987,-9,1,1,21,0,0,0,2,2,-9,0,3,9.0669832,9.4015474,0,0,0,-1041.0991,0,2,-9,2021,6,1,37,40,1,1,1,29.767548,29.767548,0,0,0,0,0,0,0,0,0,0,0,1.879661,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,5,12,5,1,567,-80730.258,0,0,0,0,0,4055.2893 +11940,14570,25990,25992,-9,-9,1,0,20,1,1,0,2,2,-9,0,5,7.610002,8.2287922,0,1,0,-14.756796,0,3,2,2021,6,0,50,35,1,0,0,6.194376,6.194376,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.02,56.42,8.333333333333334,1,1,0,0,2,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11940,14570,25991,-9,25990,25992,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.53918,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11940,14570,25992,25990,-9,-9,1,1,20,1,1,0,2,2,-9,0,5,8.3957491,8.4012938,0,1,0,42.938728,-9,-9,-9,2021,6,0,58,0,1,0,0,10.657274,10.657274,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.02,56.42,10,1,1,0,0,1,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11941,14571,25993,25994,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4498324,7.4475036,8,0,-47.857178,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9280653,7.2737503,57.48,37.4,54.99,12.75,8.333333333333334,1,1,0,0,0,6,2,1,735.5,234689.81,68806.883,171632.55,0,0,0,2833.3267 +11941,14571,25994,25993,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.4799514,5.4602237,53,0,30.983955,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,1.4735289,0,0,1,1,0,6.2717996,5.179914,54.99,12.75,57.48,37.4,3.333333333333333,1,1,0,0,0,6,2,1,735.5,234689.81,68806.883,171632.55,0,0,0,2833.3267 +11942,14572,25995,25996,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.1799316,8.0034943,0,1,0,-92.695717,0,-9,-9,2021,34,12,2,38,1,12,0,229.03299,229.03299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.36,50.81,48.34,50.6,0,1,1,0,0,5,7,4,0,391,276030.03,66008.977,274094.72,154117.66,23082.941,0,3239.21 +11942,14572,25996,25995,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.0954866,7.8643775,0,1,0,13.760831,0,-9,-9,2021,9,1,40,0,1,1,0,8.4155035,8.4155035,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.34,50.6,16.36,50.81,8.333333333333334,1,1,0,0,1,7,4,0,391,276030.03,66008.977,274094.72,154117.66,23082.941,0,3239.21 +11943,14573,25997,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.47583,0,2,2,2021,13,4,0,42,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,52.22,-9,-9,5,1,1,1,1,7,1,1,1,809,0,0,0,0,0,0,-509.43536 +11944,14574,25998,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.1594267,6.2437167,0,30,-5,92.717651,0,-9,-9,2021,35,12,15,15,1,12,0,3.6403878,3.6403878,0,0,0,0,0,0,0,0,1,1,0,0,0,17.88,57.04,57.16,56.15,1.666666666666667,1,1,0,0,7,10,2,0,690,179629.67,0,0,0,0,0,1133.2101 +11944,14575,25999,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,4.7744646,4.6027679,0,30,5,-31.127073,0,2,2,2021,13,4,35,35,1,4,0,.39557102,.39557102,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,17.88,57.04,8.333333333333334,1,1,0,0,5,10,2,0,711,77600.438,0,0,0,0,0,653.06055 +11945,14576,26000,26001,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1323662,8.4021235,0,6,4,22.997593,0,2,2,2021,7,0,30,32,1,0,0,13.784036,13.784036,0,0,0,0,0,0,0,0,0,0,0,1.2111914,0,54.2,57.49,60.14,44.41,10,1,1,0,0,12,5,5,1,2275.5,1261785.8,1100294.8,299586.31,0,15654.857,8554.4961,4283.8623 +11945,14576,26001,26000,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.8466396,8.7830791,0,6,-4,-19.089451,0,-9,-9,2021,6,0,40,40,1,0,0,16.270452,16.270452,0,0,0,0,0,0,0,0,0,0,0,6.4451094,0,60.14,44.41,54.2,57.49,8.333333333333334,1,1,0,0,4,5,5,1,2275.5,1261785.8,1100294.8,299586.31,0,15654.857,8554.4961,4283.8623 +11946,14577,26002,26003,-9,26004,1,0,59,0,0,0,3,3,-9,0,4,6.5554671,6.6404257,0,39,-7,53.096481,0,3,3,2021,11,1,20,30,1,1,0,4.6518188,4.6518188,0,0,0,0,0,0,0,106,1,1,0,0,0,55.49,45.89,53.87,45.57,1.666666666666667,1,1,0,0,9,10,4,1,939,-135977.28,49147.852,0,0,0,0,2817.4224 +11946,14577,26003,26002,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.1601067,8.4972906,6.6987576,39,7,.24544349,0,2,3,2021,7,0,60,75,1,0,0,6.9562044,6.9562044,.05,.05,0,0,0,0,0,2,1,1,0,7.5681782,7.0685606,53.87,45.57,55.49,45.89,8.333333333333334,1,1,0,0,9,10,4,1,939,-135977.28,49147.852,0,0,0,0,2817.4224 +11946,14578,26004,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.6855373,5.4849114,0,0,-943.651,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1693654,5.5724449,57.22,18.21,-9,-9,10,1,1,0,0,0,10,2,1,244,168731.56,-45885.926,0,0,0,0,1775.6281 +11947,14579,26005,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1984749,7.0986762,0,0,-1002.5841,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4207802,7.2600689,64.38,34.3,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,466,479160,99248.164,295771.78,0,0,0,1177.9758 +11948,14580,26006,26008,-9,-9,1,0,38,2,5,0,2,2,-9,0,2,7.5081949,7.3728995,0,1,4,13.891172,-9,2,-9,2021,19,7,17,0,1,7,0,15.057413,15.057413,0,0,0,0,0,0,0,0,1,1,0,0,0,22.16,53.89,50,57,3.333333333333333,4,2,0,0,4,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26007,-9,26006,26008,1,0,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-951.67438,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26008,26006,-9,-9,1,1,34,2,5,0,2,2,-9,0,4,8.4132757,8.3899851,0,1,-4,12.574764,-9,-9,-9,2021,10,0,37,0,1,1,0,13.976789,13.976789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,22.16,53.89,7,1,1,0,0,1,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26009,-9,26006,26008,1,1,16,2,5,1,2,0,-9,0,4,0,0,0,0,0,-1033.2415,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1033854,0,47,59,-9,-9,7,4,2,0,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26010,-9,26006,26008,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-993.95917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26011,-9,26006,26008,1,0,12,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1041.0233,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26012,-9,26006,26008,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-944.21216,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11949,14581,26013,26014,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2402954,9.2919321,0,33,-1,83.259399,0,2,2,2021,11,2,40,23,1,2,0,37.025692,37.025692,0,0,0,0,0,0,0,0,0,0,0,7.5585189,0,35.97,61.83,28.57,61.36,5,1,1,0,0,7,10,5,1,689.5,1237778,137182.08,493550.19,0,0,0,4767.7227 +11949,14581,26014,26013,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,33,1,68.582924,0,2,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,61.36,35.97,61.83,6.666666666666667,1,1,0,0,7,10,5,1,689.5,1237778,137182.08,493550.19,0,0,0,4767.7227 +11950,14582,26015,26016,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8368568,8.8302946,0,30,-10,-84.869118,0,2,2,2021,12,0,60,50,1,0,0,14.532095,14.532095,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,50.27,44.25,8.333333333333334,1,1,0,0,12,11,5,1,1614.5,1020563.5,799815.13,144070.75,0,1740.7764,0,3690.8948 +11950,14582,26016,26015,26017,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0835714,8.2436562,0,30,10,22.198267,0,2,1,2021,12,0,50,40,1,0,0,9.3083401,9.3083401,.05,.05,0,0,0,0,0,76,1,1,0,0,0,50.27,44.25,54.37,54.8,8.333333333333334,1,1,0,0,11,11,5,1,1614.5,1020563.5,799815.13,144070.75,0,1740.7764,0,3690.8948 +11950,14583,26017,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,8.0714893,8.0469742,0,0,-1048.1273,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8983622,53,44,-9,-9,8,1,1,0,0,0,11,4,1,121,420392.47,319101.78,124863.55,0,0,0,2685.291 +11951,14584,26018,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.2843971,8.3071327,0,0,0,-995.96167,0,3,2,2021,12,0,40,40,1,0,0,16.046511,16.046511,.05,.05,0,0,0,0,0,0,0,0,0,3.9743042,0,33.04,66.23999999999999,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,249,73561.617,-7962.3936,0,0,0,0,1397.0466 +11952,14585,26019,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1060.597,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,719,-87304.07,89681.461,0,0,0,0,876.43201 +11953,14586,26020,26021,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,8.095643,7.9526963,0,30,2,-45.193836,0,2,3,2021,12,0,37,37,1,0,0,9.8836126,9.8836126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.66,47.65,46.31,51.53,5,2,3,0,0,14,2,4,1,1467,118875.15,152762.67,162211.36,99405.469,0,0,3488.366 +11953,14586,26021,26020,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3020935,8.3204556,0,30,-2,-100.4375,0,3,3,2021,10,0,37,37,1,0,0,14.114582,14.114582,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,51.53,41.66,47.65,6.666666666666667,2,3,0,0,14,2,4,1,1467,118875.15,152762.67,162211.36,99405.469,0,0,3488.366 +11953,14587,26022,-9,26021,26020,1,1,19,0,0,1,2,0,0,0,5,0,6.2360506,6.0541267,0,0,-1027.5099,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.104547,0,48.42,60.53,-9,-9,8.333333333333334,2,3,0,0,2,2,2,1,211,-154769.75,0,0,0,0,0,717.59363 +11954,14588,26023,26024,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,29,-1,13.831755,0,2,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,.92073089,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,0,9,5,1,991,1064960.8,1008576.3,386717.59,168019.14,0,0,2619.5994 +11954,14588,26024,26023,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.2512131,8.9157906,0,29,1,198.84917,0,2,3,2021,8,0,42,42,1,0,0,25.074631,25.074631,.05,.05,0,0,0,0,0,0,0,0,0,3.126086,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,991,1064960.8,1008576.3,386717.59,168019.14,0,0,2619.5994 +11954,14589,26025,-9,26023,26024,1,1,23,0,0,0,1,1,-9,0,5,8.467452,8.4187307,0,0,0,-986.83936,0,2,2,2021,17,5,39,41,1,5,1,12.998075,12.998075,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,58,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1013,58623.566,76548.055,0,0,5399.9268,0,1793.5267 +11954,14590,26026,-9,26023,26024,1,0,21,0,0,0,2,2,-9,0,2,7.5107298,7.5443401,0,0,0,-902.96191,0,2,2,2021,23,10,41,42,1,10,1,5.0481787,5.0481787,0,0,0,0,0,0,0,0,0,0,0,0,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,146,87705.688,0,0,0,0,0,1337.2336 +11954,14591,26027,-9,26023,26024,1,0,19,0,0,1,2,0,0,0,3,0,3.7982371,3.8402817,0,0,-888.19897,-9,2,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.282289,0,44.64,55.04,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,463,102387.83,0,0,0,0,0,490.43201 +11955,14592,26028,26029,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,7.0496678,7.1942368,0,52,-1,95.127502,0,3,-9,2021,12,0,16,20,1,0,0,6.453506,6.453506,0,0,0,0,0,0,0,0,1,1,0,.50756693,0,47.79,36.6,35.66,55.55,5,1,1,0,0,14,1,2,1,384,784.83228,0,73036.125,0,0,0,1634.7889 +11955,14592,26029,26028,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,52,1,28.807072,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38991657,0,35.66,55.55,47.79,36.6,8.333333333333334,1,1,0,0,6,1,2,1,384,784.83228,0,73036.125,0,0,0,1634.7889 +11956,14593,26030,26031,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,49,-3,-37.007759,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6103499,0,42.24,30.88,55.76,52.64,10,1,1,0,0,1,10,2,1,645.5,303930.22,109653.86,170606.75,0,0,8266.998,1080.7029 +11956,14593,26031,26030,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.2731276,6.9619184,51,3,-6.1221375,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9599395,7.4254799,55.76,52.64,42.24,30.88,10,1,1,0,0,4,10,2,1,645.5,303930.22,109653.86,170606.75,0,0,8266.998,1080.7029 +11957,14594,26032,26033,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.4509439,7.1830153,44,3,68.651405,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8275752,7.6352816,56.51,32.06,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,746.5,573491.69,402095.81,90213.938,0,0,0,1298.8623 +11957,14594,26033,26032,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,44,-3,-144.65085,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.1631904,0,57.16,56.15,56.51,32.06,8.333333333333334,1,1,0,0,11,5,3,1,746.5,573491.69,402095.81,90213.938,0,0,0,1298.8623 +11957,14595,26034,-9,26033,26032,1,1,34,0,0,0,2,2,-9,0,4,7.4297481,7.4315863,0,0,0,-844.02161,0,2,2,2021,6,0,25,22,1,0,0,7.3550162,7.3550162,.05,.05,0,0,0,0,0,0,1,1,0,2.7164707,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,3803,111316.8,-113204.91,0,0,0,0,-144.45421 +11958,14596,26035,-9,26036,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.8613,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,140.5,-46299.922,0,147725.91,68976.969,0,0,2211.0913 +11958,14596,26036,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,0,5.9821615,5.9452696,0,0,-1077.8759,0,-9,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0751438,0,35.28,62.56,-9,-9,6.666666666666667,1,1,0,0,6,13,2,1,140.5,-46299.922,0,147725.91,68976.969,0,0,2211.0913 +11959,14597,26037,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.9205322,9.1559515,0,0,0,-1115.0444,0,3,3,2021,9,0,45,45,1,0,0,18.116333,18.116333,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,449,1606105.8,1177828.8,234059.94,0,0,0,3346.0857 +11960,14598,26038,26041,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.6611652,9.4581785,0,4,-2,112.10529,0,-9,-9,2021,12,1,42,42,1,1,0,28.969784,28.969784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.65,60.41,45.5,47.95,6.666666666666667,1,1,0,0,9,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26039,-9,26041,26038,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.21533,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26040,-9,26041,26038,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.92145,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26041,26038,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,13,2,46.659321,0,2,3,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.5,47.95,41.65,60.41,8.333333333333334,4,2,0,0,6,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11961,14599,26042,26043,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1441069,8.3419456,0,24,-1,-123.51835,0,2,2,2021,4,0,45,47,1,0,0,9.4113302,9.4113302,.05,.05,0,0,0,0,0,2,1,1,0,2.1289086,0,58.15,52.91,57.35,47.77,8.333333333333334,1,1,0,0,6,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11961,14599,26043,26042,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,6.7231245,6.5804009,0,24,1,24.814428,0,3,-9,2021,7,0,6,6,1,0,0,11.794746,11.794746,0,0,0,0,0,0,0,0,1,1,0,2.6417832,0,57.35,47.77,58.15,52.91,8.333333333333334,1,1,0,0,6,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11961,14599,26044,-9,26043,26042,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.5548,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11962,14600,26045,-9,26046,26049,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.7733,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26046,26049,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,0,0,0,3,5,149.12393,1,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,40.46,63.68,8.333333333333334,1,1,0,0,7,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26047,-9,26046,26049,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.2242,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26048,-9,26046,26049,1,0,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1142.8208,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26049,26046,-9,-9,1,1,28,1,3,0,2,2,-9,0,4,7.5882893,7.7880611,0,3,-5,-144.91055,0,-9,-9,2021,11,0,42,52,1,0,0,7.4900723,7.4900723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.46,63.68,49.35,59.64,8.333333333333334,4,2,0,0,3,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11963,14601,26050,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-950.45026,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.37,47.98,-9,-9,1.666666666666667,1,1,1,0,0,4,2,0,2556,99563.086,0,0,0,0,0,778.52496 +11964,14602,26051,26052,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1666451,7.4114428,0,8,3,-33.614731,0,3,3,2021,12,0,16,15,1,0,0,10.077432,10.077432,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,45.58,47.97,8.333333333333334,1,1,0,0,9,5,3,1,519,273898.31,155195.31,125886.1,0,5355.1914,1792.4036,1572.9902 +11964,14602,26052,26051,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.661653,7.6585255,0,8,-3,65.600868,0,-9,-9,2021,15,3,30,40,1,3,0,9.6188145,9.6188145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,55.36,51.57,5,1,1,0,0,7,5,3,1,519,273898.31,155195.31,125886.1,0,5355.1914,1792.4036,1572.9902 +11965,14603,26053,-9,26054,-9,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1072.7462,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,842,222613.63,329029.81,54153.477,83274.766,931.68481,0,2365.0469 +11965,14603,26054,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.148406,8.4838247,0,0,0,-1152.9384,-9,-9,2,2021,13,1,42,0,1,1,0,10.578595,10.578595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.03,44.82,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,842,222613.63,329029.81,54153.477,83274.766,931.68481,0,2365.0469 +11966,14604,26055,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.97137,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.08,26.32,-9,-9,1.666666666666667,2,3,1,0,1,5,1,1,1379,155577.61,0,0,0,2311.5757,-1436.1437,808.54034 +11967,14605,26056,26057,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.5985785,8.6292906,0,20,-4,33.218761,-9,3,3,2021,10,0,30,0,1,0,0,16.357653,16.357653,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.92,34.27,61.12,51.57,5,1,1,0,0,11,11,5,1,1455,695804.88,363394.53,362418.56,46191.793,0,0,4029.0571 +11967,14605,26057,26056,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.2192316,9.2773638,0,1,4,-19.604063,-9,-9,-9,2021,5,1,38,0,1,1,0,21.789232,21.789232,.05,.05,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,43.92,34.27,10,1,1,0,0,11,11,5,1,1455,695804.88,363394.53,362418.56,46191.793,0,0,4029.0571 +11967,14606,26058,-9,26056,26057,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-966.23328,-9,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,48.27,47.75,-9,-9,8.333333333333334,1,1,0,1,0,11,1,1,777,144853.53,0,0,0,0,0,121.33817 +11967,14607,26059,-9,26056,26057,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-967.82581,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1144,-175755.63,0,0,0,0,0,0 +11967,14608,26060,-9,26056,26057,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-865.51093,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,464,-86630.781,0,0,0,0,0,0 +11968,14609,26061,26062,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,5.7471757,5.6475163,50,-2,-8.0052595,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,26.673183,0,0,1,1,0,4.7504511,5.3287444,51.65,15.81,57.97,43.33,8.333333333333334,1,1,0,0,0,4,3,1,542,874979.88,616864.25,218846.78,22655.801,0,0,1986.6467 +11968,14609,26062,26061,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.2739477,7.4794865,50,2,71.519676,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1629176,7.5715957,57.97,43.33,51.65,15.81,10,1,1,0,0,0,4,3,1,542,874979.88,616864.25,218846.78,22655.801,0,0,1986.6467 +11969,14610,26063,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.4825597,6.6611342,0,0,-945.68811,0,3,2,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4784369,6.552712,26.84,55.7,-9,-9,0,1,1,0,0,4,8,2,1,798,460801,74197.18,147445.52,0,0,0,1433.1877 +11970,14611,26064,26065,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.5104194,6.6114454,7,0,-15.640022,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6321445,52,48,50,47,7,1,1,0,0,0,6,2,1,501,428347.59,109283.34,301901.06,0,0,0,1597.0791 +11970,14611,26065,26064,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,42,0,-133.57788,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,52,48,7,4,2,0,0,5,6,2,1,501,428347.59,109283.34,301901.06,0,0,0,1597.0791 +11971,14612,26066,26067,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.7802196,8.0487919,6,1,46.37199,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0872555,64.48,48.62,61.28,48.88,8.333333333333334,1,1,0,0,1,11,3,1,1160,1379991.8,741304.88,195475.83,0,0,0,2025.0116 +11971,14612,26067,26066,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.4224024,5.1996741,6,-1,65.165016,0,3,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.4052844,61.28,48.88,64.48,48.62,8.333333333333334,1,1,0,0,0,11,3,1,1160,1379991.8,741304.88,195475.83,0,0,0,2025.0116 +11972,14613,26068,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-970.65869,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.43,38.59,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,1022,139020.23,0,120185.93,0,0,0,678.76233 +11972,14614,26069,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.4838,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.83,39.98,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,626,57798.16,0,0,0,0,0,1009.9945 +11973,14615,26070,-9,26071,26073,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.9977,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26071,26073,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,20,-11,-1.9554627,0,3,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2990539,0,54.2,57.49,49,50,5,2,3,0,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26072,-9,26071,26073,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1045.3257,-9,2,3,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26073,26071,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.4770508,8.364521,0,19,11,47.055775,0,3,2,2021,11,0,40,30,1,1,0,12.677691,12.677691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,54.2,57.49,7,2,3,0,0,13,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26074,-9,26071,26073,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1076.2783,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11974,14616,26075,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1125.7435,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.5174146,0,62.39,56.71,-9,-9,10,1,1,1,0,0,13,1,1,930,0,0,0,0,0,0,692.65619 +11975,14617,26076,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.3705158,6.4737544,0,0,-994.6264,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8738575,6.4660583,48.65,51.93,-9,-9,5,1,1,0,0,0,10,2,1,697,75736.766,970.54425,130787.09,0,0,0,983.17999 +11976,14618,26077,26078,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.7325373,6.8768411,25,-8,-74.060425,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5089566,6.3284583,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,11,6,4,1,738.5,1021639.8,502382.72,268996.06,0,6889.9419,0,2852.5559 +11976,14618,26078,26077,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.8875322,8.1749249,11,8,-7.3723989,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7529058,8.0488071,57.16,56.15,59.29,49.68,6.666666666666667,1,1,0,0,0,6,4,1,738.5,1021639.8,502382.72,268996.06,0,6889.9419,0,2852.5559 +11977,14619,26079,26080,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9415302,8.1406088,0,11,6,-14.543055,0,-9,-9,2021,7,0,40,68,1,0,0,9.5951605,9.5951605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.61,50.3,39.89,54.92,8.333333333333334,1,1,0,0,11,4,4,1,1454,126085.64,18052.949,0,0,3712.6843,0,2086.1831 +11977,14619,26080,26079,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8722425,7.0514779,0,11,-6,-65.232643,0,3,3,2021,12,0,15,13,1,0,0,8.7438345,8.7438345,0,0,0,0,0,0,0,2,1,1,0,0,0,39.89,54.92,55.61,50.3,6.666666666666667,1,1,0,0,12,4,4,1,1454,126085.64,18052.949,0,0,3712.6843,0,2086.1831 +11977,14620,26081,-9,-9,26079,1,0,34,0,0,0,3,3,-9,0,4,7.8735294,7.7485433,0,0,0,-1041.5482,0,3,2,2021,19,5,35,35,1,5,1,7.5544472,7.5544472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.87,49.77,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,638,44358.551,-16560.047,0,0,0,0,1466.6978 +11978,14621,26082,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.68561,0,3,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,27.04,28.6,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,279,0,0,0,0,0,0,2167.2598 +11978,14621,26083,-9,26082,-9,1,1,17,0,0,0,2,2,1,1,2,0,0,0,0,0,-935.44757,-9,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.14,28.57,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,279,0,0,0,0,0,0,2167.2598 +11978,14622,26084,-9,26082,-9,1,1,20,0,0,0,2,2,-9,0,3,7.711185,7.8199124,0,0,0,-1082.4894,0,2,-9,2021,11,1,47,47,1,1,1,6.7348456,6.7348456,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,4,0,531,15749.31,16757.871,0,0,0,0,884.60004 +11979,14623,26085,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1863194,8.3859835,0,0,0,-1104.2936,0,2,2,2021,10,0,37,37,1,0,0,14.057409,14.057409,.05,.05,0,0,0,0,0,0,0,0,0,2.2222774,0,48.14,53.42,-9,-9,5,1,1,0,0,10,6,4,1,4924,-196645.3,-20569.525,0,0,0,0,2130.0474 +11979,14624,26086,-9,-9,26085,1,1,29,0,0,0,2,2,-9,0,4,7.9721169,7.8543348,0,0,0,-988.68555,0,2,2,2021,0,0,33,31,1,0,1,10.194214,10.194214,0,0,0,0,0,0,0,0,0,0,0,2.0264006,0,62.49,55.09,-9,-9,10,1,1,0,0,10,6,4,1,396,190724.03,0,0,0,0,0,694.47058 +11980,14625,26087,26088,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,39,0,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,43.89,25.81,31.27,33.6,6.666666666666667,1,1,0,0,0,13,2,0,504.5,21745.791,68716.164,0,0,0,0,3802.5054 +11980,14625,26088,26087,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,35,0,0,0,3,2,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.27,33.6,43.89,25.81,5,1,1,0,0,0,13,2,0,504.5,21745.791,68716.164,0,0,0,0,3802.5054 +11981,14626,26089,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.618597,8.0433187,0,0,-949.55115,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0429153,8.039156,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,1690,668827.63,431153.03,0,0,0,0,1935.9349 +11982,14627,26090,26091,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,7.2251658,7.1527066,0,1,-2,-25.281557,-9,-9,-9,2021,12,0,16,0,1,2,0,7.914494,7.914494,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,62.39,56.71,10,1,1,0,0,0,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11982,14627,26091,26090,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,5.6856613,5.7644429,0,1,2,-95.520271,0,3,2,2021,8,0,40,40,1,0,0,.95698959,.95698959,.05,.05,0,0,0,0,0,0,1,1,0,2.2901866,0,62.39,56.71,46,58,10,1,1,0,0,10,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11982,14627,26092,-9,26090,26091,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.05402,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11983,14628,26093,26094,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,41,-20,133.25848,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.83,45.17,52.23,55.6,5,1,1,0,0,3,10,2,1,670,585149.63,0,390338.19,0,0,0,2255.3081 +11983,14628,26094,26093,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,5.591857,5.2969918,41,20,-52.590004,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.4720402,52.23,55.6,17.83,45.17,8.333333333333334,1,1,0,0,0,10,2,1,670,585149.63,0,390338.19,0,0,0,2255.3081 +11984,14629,26095,26097,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0969572,9.1774359,0,11,2,50.663666,0,2,2,2021,3,0,47,47,1,0,0,18.187393,18.187393,.05,.05,0,0,0,0,0,2,1,1,0,2.9793942,0,57.16,56.15,50.91,41.38,8.333333333333334,2,3,0,0,11,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14629,26096,-9,26097,26095,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.1427,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14629,26097,26095,26099,26098,1,0,37,0,1,0,1,1,-9,0,3,0,0,0,11,-2,-45.161316,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50.91,41.38,57.16,56.15,5,2,3,0,1,0,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14630,26098,26099,-9,-9,1,1,75,0,1,0,1,1,-9,0,3,0,0,0,6,4,0,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,8,1,1,313,728152,226822.19,558876.31,0,0,0,-45.99939 +11984,14630,26099,26098,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,0,0,6,-4,0,-9,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,1,0,8.3460045,0,0,1,1,0,0,0,51,46,53,46,7,2,3,0,0,0,8,1,1,313,728152,226822.19,558876.31,0,0,0,-45.99939 +11985,14631,26100,26101,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.3887835,8.7059727,0,15,-5,98.743484,0,2,2,2021,9,0,36,36,1,0,0,16.868492,16.868492,.05,.05,0,0,0,0,0,0,1,1,0,1.2331662,0,48.81,59.91,38.82,63.21,6.666666666666667,1,1,0,0,8,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26101,26100,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.3908033,8.4558544,0,15,5,75.290054,0,2,2,2021,11,0,35,-9,1,0,0,12.972594,12.972594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.82,63.21,48.81,59.91,8.333333333333334,1,1,0,0,10,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26102,-9,26100,26101,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-890.53497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26103,-9,26100,26101,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.4814,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11986,14632,26104,26105,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.004447,8.0174341,0,12,0,-40.313622,0,3,3,2021,7,0,37,36,1,0,0,8.5870781,8.5870781,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,33.47,61.48,8.333333333333334,1,1,0,0,12,5,4,0,637.5,576312.5,180892.91,316501.03,0,0,0,2689.3904 +11986,14632,26105,26104,-9,-9,1,0,60,0,1,0,2,2,-9,0,3,7.8744426,8.0701971,0,12,0,-2.0991495,0,3,3,2021,25,12,35,30,1,12,0,10.114481,10.114481,0,0,0,0,0,0,0,0,1,0,1,0,0,33.47,61.48,57.33,53.46,3.333333333333333,1,1,0,1,13,5,4,0,637.5,576312.5,180892.91,316501.03,0,0,0,2689.3904 +11986,14633,26106,-9,26105,26104,1,0,34,0,1,0,2,2,-9,0,3,0,0,0,0,0,-920.33795,0,2,3,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.03,53.23,-9,-9,6.666666666666667,1,1,0,1,11,5,1,0,81,15335.258,0,0,0,2033.2086,1758.8821,904.75073 +11986,14633,26107,-9,26106,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.7885,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,1,0,81,15335.258,0,0,0,2033.2086,1758.8821,904.75073 +11987,14634,26108,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7421446,7.5897655,0,0,0,-1030.3297,0,1,1,2021,6,2,27,24,1,2,0,9.5732241,9.5732241,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,912,-64334.539,103165.81,0,0,0,383.83081,1110.6923 +11987,14635,26109,-9,26108,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9609389,7.7388959,0,0,0,-920.32721,0,2,-9,2021,10,0,35,42,1,0,1,6.0246015,6.0246015,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,585,53569.691,0,0,0,0,1878.897,599.43921 +11987,14636,26110,-9,26108,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.67078,0,2,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7813587,0,47,59,-9,-9,7,1,1,0,0,0,8,1,0,298,0,0,0,0,0,0,-647.18823 +11988,14637,26111,26112,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,5.6413836,5.6594567,30,3,43.201225,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1138663,5.6941805,45.75,29.22,47.63,45.75,5,1,1,0,0,7,12,2,1,2309.5,1833011,1828067.3,71305.266,0,0,0,1455.2418 +11988,14637,26112,26111,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,41,-3,53.484684,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,45.75,45.75,29.22,8.333333333333334,1,1,0,0,6,12,2,1,2309.5,1833011,1828067.3,71305.266,0,0,0,1455.2418 +11989,14638,26113,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.2404127,7.1153331,0,0,0,-932.24988,0,-9,-9,2021,20,6,16,0,1,6,0,13.449039,13.449039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.76,57.87,-9,-9,5,2,3,0,1,1,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11989,14638,26114,-9,26113,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.49628,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11989,14638,26115,-9,26113,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.38068,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11990,14639,26116,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.0798655,6.7193518,0,0,-952.40771,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.8058963,6.8721566,61.88,44.54,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,1771,73137.75,144680.25,0,0,0,0,1493.3761 +11990,14640,26117,-9,26116,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1014.5408,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.68,22.39,-9,-9,0,1,1,0,1,5,10,1,1,433,286027.91,252825.89,0,0,0,0,1420.5776 +11991,14641,26118,26119,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,0,0,59,-2,96.288231,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7691449,0,62.39,56.71,60.12,54.8,10,1,1,0,0,0,8,5,1,711.5,2039004.5,1518467.3,461372.97,73811.063,0,0,6024.8096 +11991,14641,26119,26118,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,9.1918993,9.211442,59,2,29.407372,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.5836954,8.5184679,60.12,54.8,62.39,56.71,10,1,1,0,0,0,8,5,1,711.5,2039004.5,1518467.3,461372.97,73811.063,0,0,6024.8096 +11992,14642,26120,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.8875284,9.4469233,0,0,0,-1041.4257,0,3,3,2021,25,10,45,37,1,10,0,24.37923,24.37923,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.31,58.56,-9,-9,3.333333333333333,2,3,0,0,8,6,5,1,432,74133.25,107644.09,159512.95,142596.36,1177.8099,2138.9834,2535.1262 +11993,14643,26121,26122,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,7.2818136,8.8966131,8.3657589,53,1,-86.851189,0,1,1,2021,7,0,40,40,1,0,0,4.9736838,4.9736838,0,0,0,0,0,0,0,0,1,1,0,8.4765654,7.1299438,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,4,5,1,510.5,2508013,1114905.4,459906.63,0,0,0,6013.0513 +11993,14643,26122,26121,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.1950712,8.277236,53,-1,-90.654488,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0933037,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,4,5,1,510.5,2508013,1114905.4,459906.63,0,0,0,6013.0513 +11994,14644,26123,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.9118261,8.7824545,0,0,0,-955.07471,0,3,3,2021,12,0,41,41,1,0,0,18.888483,18.888483,.05,.05,0,0,0,0,0,0,1,1,0,6.1793652,0,52.13,57.22,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,777,505417.53,314668,123448.6,50898.035,0,0,2632.7668 +11995,14645,26124,-9,26126,26125,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.08948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26125,26126,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.3527851,8.6289768,0,5,4,88.061348,0,-9,-9,2021,5,0,57,50,1,0,0,10.616636,10.616636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,39.29,52.16,8.333333333333334,1,1,0,0,12,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26126,26125,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.206398,8.3583088,0,5,-4,95.961243,0,3,3,2021,12,1,38,48,1,1,0,12.327843,12.327843,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.29,52.16,54.2,57.49,8.333333333333334,1,1,0,1,11,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26127,-9,26126,26125,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7279,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11996,14646,26128,26129,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0786324,8.4570656,0,10,4,-22.666277,0,-9,-9,2021,12,3,40,40,1,3,0,11.804214,11.804214,0,0,.05,0,0,0,0,0,1,0,1,0,0,43.07,47.56,46.21,35.5,6.666666666666667,2,3,0,0,12,8,3,0,520,549372.63,7828.3911,340796.38,0,3103.0588,911.14502,1720.0112 +11996,14646,26129,26128,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,33,-4,-22.783781,0,3,3,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.21,35.5,43.07,47.56,5,2,3,1,0,2,8,3,0,520,549372.63,7828.3911,340796.38,0,3103.0588,911.14502,1720.0112 +11996,14647,26130,-9,26129,26128,1,1,21,0,0,0,2,2,-9,0,3,7.7392707,7.9582486,0,0,0,-983.01202,0,3,2,2021,7,0,35,35,1,0,1,10.968812,10.968812,0,0,0,0,0,0,0,0,1,0,1,0,0,55.46,32.46,-9,-9,6.666666666666667,2,3,0,0,5,8,4,0,310,-60031.684,-79254.523,0,0,0,975.17542,1417.9879 +11997,14648,26131,-9,26134,26133,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6686,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26132,-9,26134,26133,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7007,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26133,26134,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,7.8769717,8.0431185,0,1,-1,-144.57167,-9,-9,-9,2021,10,2,39,0,1,2,0,8.5201998,8.5201998,0,0,0,0,0,0,0,0,1,1,0,0,0,51.68,49.13,38.76,58.16,8.333333333333334,1,1,0,0,4,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26134,26133,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,1,1,.39776325,-9,-9,-9,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,51.68,49.13,8.333333333333334,1,1,0,0,3,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11998,14649,26135,26136,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7231054,8.8733788,0,12,-1,-81.603714,0,1,2,2021,8,0,38,38,1,0,0,18.064041,18.064041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.27,48.04,8.333333333333334,1,1,0,0,12,12,5,1,1776,1053550.6,613467.88,500756.63,219205.84,0,0,4721.8682 +11998,14649,26136,26135,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5576363,8.27775,0,12,1,40.023846,0,2,1,2021,6,0,32,28,1,0,0,17.62306,17.62306,0,0,0,0,0,0,0,0,0,0,0,0,0,54.27,48.04,49.35,59.64,8.333333333333334,1,1,0,0,13,12,5,1,1776,1053550.6,613467.88,500756.63,219205.84,0,0,4721.8682 +11999,14650,26137,26140,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0224695,7.939467,0,6,15,63.316605,0,3,2,2021,14,4,45,39,1,4,0,8.027132,8.027132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.32,57.23,31.81,62.72,5,1,1,0,0,7,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26138,-9,26140,26137,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.9862,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26139,-9,26140,26137,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.99713,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26140,26137,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,7.5566373,7.7544413,0,6,-15,-89.048454,0,-9,-9,2021,16,4,40,55,1,4,0,5.7133794,5.7133794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.81,62.72,31.32,57.23,6.666666666666667,1,1,0,0,4,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +12000,14651,26141,26143,-9,-9,1,1,21,1,1,0,2,2,-9,0,2,7.9670725,7.8125372,0,1,-1,96.00808,-9,-9,-9,2021,27,12,56,0,1,12,0,5.2000985,5.2000985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.94,55.62,45.81,58.99,5,1,1,0,0,2,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12000,14651,26142,-9,26143,26141,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-852.24353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12000,14651,26143,26141,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.1655884,7.2370901,0,1,1,114.73743,0,-9,-9,2021,13,1,20,0,1,1,0,7.3779111,7.3779111,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,32.94,55.62,8.333333333333334,1,1,0,0,2,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12001,14652,26144,-9,26146,26145,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.37109,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14652,26145,26146,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3786116,9.0345764,8.5278864,21,3,49.815975,0,3,3,2021,13,1,37,42,1,1,0,16.327129,16.327129,.05,.05,0,0,0,0,0,0,0,0,0,0,8.5036392,60.57,46.44,47.38,47.04,1.666666666666667,1,1,0,0,13,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14652,26146,26145,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4511795,7.8852124,7.1468763,21,-3,-89.344032,0,2,2,2021,12,0,23,26,1,0,0,10.843902,10.843902,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9657001,47.38,47.04,60.57,46.44,8.333333333333334,1,1,0,0,12,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14653,26147,-9,26146,26145,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.91962,1,2,2,2021,11,1,0,46,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.30043885,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,846,42998.133,0,0,0,0,0,-450.56802 +12002,14654,26148,26149,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,8.1577272,8.040863,0,5,-3,-26.219824,0,-9,-9,2021,13,1,38,19,1,1,0,8.6203585,8.6203585,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,55.61,29.04,6.666666666666667,1,1,0,0,4,9,4,0,805,-82292.719,0,0,0,0,0,2589.1211 +12002,14654,26149,26148,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,7.7400708,7.55825,0,5,3,126.97866,0,-9,-9,2021,10,0,40,40,1,0,0,5.7638183,5.7638183,0,0,0,0,0,0,0,0,0,0,0,0,0,55.61,29.04,46.32,53.44,6.666666666666667,1,1,0,0,5,9,4,0,805,-82292.719,0,0,0,0,0,2589.1211 +12003,14655,26150,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.3556986,8.4043617,0,0,0,-1138.0483,0,2,2,2021,13,2,39,76,1,2,0,12.995852,12.995852,0,0,0,0,0,0,0,2,0,0,0,4.0410037,0,42.17,38.71,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,117,8182.0425,0,0,0,0,0,1909.0404 +12004,14656,26151,26153,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9780207,8.6084719,0,14,1,152.15343,0,3,2,2021,14,2,52,52,1,2,0,16.478045,16.478045,.05,.05,0,0,0,0,0,0,1,1,0,4.3517523,0,46.56,55.44,44.75,52.77,8.333333333333334,1,1,0,0,7,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12004,14656,26152,-9,26153,26151,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-842.46912,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12004,14656,26153,26151,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.80056,8.9469881,0,14,-1,-17.969988,0,3,3,2021,12,3,50,58,1,3,0,16.261909,16.261909,0,0,0,0,0,0,0,0,1,1,0,0,0,44.75,52.77,46.56,55.44,8.333333333333334,1,1,0,0,8,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12005,14657,26154,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,9.3747463,8.6920977,0,0,-833.6366,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8067207,9.0096893,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,242,4402873,1648873,714307.06,0,0,0,6336.0894 +12006,14658,26155,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.8076916,8.7089272,0,0,0,-1145.6335,0,2,1,2021,14,3,39,40,1,3,0,20.558014,20.558014,.05,.05,0,0,0,0,0,0,0,0,0,2.7790132,0,31.04,58.94,-9,-9,6.666666666666667,1,1,0,0,4,7,5,0,779,40179.109,109055.8,0,0,4498.8223,4515.6826,2296.0811 +12007,14659,26156,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.6532421,8.0034285,0,0,-1000.8939,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5202176,7.9894152,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,611,512716.06,263756.94,214276.58,0,0,0,839.20203 +12008,14660,26157,26158,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,12,-20,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,27.01,43.15,16.95,6.666666666666667,2,3,0,0,0,6,1,1,778,675215.94,404469.13,144578.22,0,0,0,2043.8853 +12008,14660,26158,26157,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,0,0,12,20,0,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,79.474113,0,0,1,1,0,0,0,43.15,16.95,50.85,27.01,6.666666666666667,2,3,0,0,11,6,1,1,778,675215.94,404469.13,144578.22,0,0,0,2043.8853 +12008,14661,26159,-9,26157,26158,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-970.26215,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.8,46.72,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,285,90573.547,0,0,0,0,0,0 +12008,14662,26160,-9,26157,26158,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-912.80713,-9,2,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.51,51.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,719,-250345.33,0,0,0,0,0,0 +12009,14663,26161,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5352902,7.8853192,5.8272824,0,0,-953.30084,0,1,1,2021,18,5,30,30,1,5,0,6.5728359,6.5728359,.05,.05,0,0,0,0,0,0,1,0,1,5.823369,0,37.44,59.97,-9,-9,0,1,1,0,1,10,4,3,0,894,102405.18,88093.18,0,0,0,0,2291.0977 +12009,14663,26162,-9,26161,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.78125,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,894,102405.18,88093.18,0,0,0,0,2291.0977 +12010,14664,26163,26164,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.3762751,8.0285997,7,4,-32.391861,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1803646,7.8254228,53,47,51.38,54.63,8,1,1,0,0,0,6,4,1,736.5,1248016.5,615679.25,211504.02,0,0,0,4378.0713 +12010,14664,26164,26163,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5483017,7.8295121,45,-4,-28.669266,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7405305,8.1030169,51.38,54.63,53,47,8.333333333333334,1,1,0,0,0,6,4,1,736.5,1248016.5,615679.25,211504.02,0,0,0,4378.0713 +12011,14665,26165,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.6389565,7.3741698,0,0,-1057.7017,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.6709793,7.8531256,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,684,932163.13,296675.13,375534.03,0,0,0,1548.5068 +12012,14666,26166,-9,-9,-9,1,0,66,0,0,0,3,3,-9,1,4,7.7765956,7.9016318,0,0,0,-1091.6273,0,3,3,2021,10,0,60,60,1,0,0,4.5942817,4.5942817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.05,40.21,-9,-9,8.333333333333334,1,1,0,0,15,2,3,1,370,213028.17,-7217.9121,0,0,0,0,2421.2395 +12013,14667,26167,26168,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.358592,8.4542923,0,30,-4,29.96233,0,2,2,2021,11,0,41,42,1,0,0,12.227909,12.227909,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,60.11,44.43,8.333333333333334,1,1,0,0,8,4,5,1,1329.5,-44797.656,0,0,0,6139.0239,0,3913.6064 +12013,14667,26168,26167,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.725626,8.9630909,6.8058424,30,4,147.45076,0,2,2,2021,9,0,37,38,1,0,0,16.60943,16.60943,0,0,0,0,0,0,0,0,1,1,0,0,6.8986745,60.11,44.43,48.77,60.16,5,1,1,0,0,8,4,5,1,1329.5,-44797.656,0,0,0,6139.0239,0,3913.6064 +12014,14668,26169,26172,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.5949335,8.9313154,0,14,-3,152.64157,0,1,1,2021,19,8,44,47,1,8,0,14.775586,14.775586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.44,58.81,56.6,27.07,6.666666666666667,1,1,0,0,11,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26170,-9,26169,26172,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-942.46765,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26171,-9,26169,26172,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6738,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26172,26169,-9,-9,1,1,46,0,2,0,2,2,-9,0,1,0,0,0,14,3,113.45161,0,2,2,2021,7,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.4447785,0,56.6,27.07,36.44,58.81,8.333333333333334,1,1,0,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12015,14669,26173,26176,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,5.7479181,5.4961023,0,24,0,-53.304768,0,2,3,2021,16,3,11,9,1,3,0,3.8998709,3.8998709,0,0,0,0,0,0,0,0,1,0,1,1.8022404,0,49.35,59.64,47.15,55.39,6.666666666666667,1,1,0,0,10,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26174,-9,26173,26176,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.16211,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26175,-9,26173,26176,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1038.8984,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26176,26173,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.2153635,8.5818729,0,24,0,-67.757881,0,2,2,2021,12,0,38,38,1,0,0,12.0853,12.0853,0,0,0,0,0,0,0,0,1,0,1,0,0,47.15,55.39,49.35,59.64,5,1,1,0,0,11,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26177,-9,26173,26176,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1021.9145,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12016,14670,26178,26180,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.1771994,8.5247393,0,20,-2,27.362152,0,3,3,2021,12,0,38,36,1,0,0,15.82897,15.82897,.05,.05,0,0,0,0,0,0,1,1,0,3.1630535,0,46.14,54.22,53,55,6.666666666666667,1,1,0,0,9,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14670,26179,-9,26178,26180,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1123.403,-9,1,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14670,26180,26178,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,7.1632094,7.0343733,0,20,2,59.73296,-9,3,3,2021,9,0,50,0,1,1,0,3.0558181,3.0558181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,46.14,54.22,8,1,1,0,0,1,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14671,26181,-9,26178,26180,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1028.4078,-9,1,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.1,60.05,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,947,-55541.664,0,0,0,0,0,0 +12017,14672,26182,26184,-9,-9,1,0,29,0,2,0,1,1,-9,0,4,7.9924269,7.7642207,0,10,-4,-91.650665,0,1,3,2021,18,6,23,30,1,6,0,13.214731,13.214731,0,0,0,0,0,0,0,0,1,1,0,0,0,44.87,56.46,48.28,60.18,8.333333333333334,1,1,0,0,7,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26183,-9,26182,26184,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.59833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26184,26182,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,5.9904757,5.9611993,0,10,4,33.577137,0,2,2,2021,23,11,35,35,1,11,0,1.3372561,1.3372561,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.28,60.18,44.87,56.46,6.666666666666667,1,1,0,0,10,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26185,-9,26182,26184,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9121,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12018,14673,26186,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,1,8.213582,8.317812,0,0,0,-978.03717,0,2,2,2021,20,8,38,40,1,8,0,12.018709,12.018709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.82,43.58,-9,-9,5,1,1,0,1,11,6,4,0,545,1272.3961,20720.596,0,0,0,0,1601.1936 +12019,14674,26187,26188,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,8,1,36.270565,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,80.299904,0,0,1,1,0,3.3040569,0,37.96,24.76,41.12,37.78,6.666666666666667,1,1,0,0,0,13,2,1,4392.5,99805.977,33794.852,0,0,0,30.70607,1814.2766 +12019,14674,26188,26187,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.9207387,5.9469786,8,-1,31.124426,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4232979,6.2760544,41.12,37.78,37.96,24.76,8.333333333333334,1,1,0,0,0,13,2,1,4392.5,99805.977,33794.852,0,0,0,30.70607,1814.2766 +12020,14675,26189,26190,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0946321,7.9653168,0,21,-2,-17.259596,0,2,2,2021,17,5,52,50,1,5,0,6.2892327,6.2892327,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.53,62.21,29.66,30.02,3.333333333333333,1,1,0,1,11,7,3,0,226,232694.53,208444.94,0,0,0,1112.5071,2080.6089 +12020,14675,26190,26189,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,21,2,16.553701,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.66,30.02,38.53,62.21,3.333333333333333,1,1,0,0,7,7,3,0,226,232694.53,208444.94,0,0,0,1112.5071,2080.6089 +12021,14676,26191,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-957.80609,-9,1,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.23,41.37,-9,-9,3.333333333333333,1,1,1,0,8,12,1,1,915,-9531.6758,-104712.88,0,0,0,0,729.67236 +12022,14677,26192,26193,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9724798,8.3118191,50,1,-2.1603396,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30994144,8.0063715,58.32,50.22,57.06,57.76,8.333333333333334,1,1,0,0,7,5,4,1,596,956787.75,685084.81,232454.13,0,0,0,3102.9673 +12022,14677,26193,26192,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.5378871,7.6936111,50,-1,86.631851,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3647637,7.3316603,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,0,5,4,1,596,956787.75,685084.81,232454.13,0,0,0,3102.9673 +12023,14678,26194,26195,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,0,0,0,17,-6,74.6828,0,2,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.1068578,0,40.8,55.74,49.59,58.37,6.666666666666667,2,3,0,0,2,8,5,1,411.5,399021.75,124628.28,315194.22,66534.297,0,0,2740.4209 +12023,14678,26195,26194,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.9462452,9.1479321,0,17,6,50.809837,0,2,1,2021,11,0,38,40,1,0,0,25.926348,25.926348,.05,.05,0,0,0,0,0,0,0,0,0,4.2826538,0,49.59,58.37,40.8,55.74,8.333333333333334,2,3,0,0,8,8,5,1,411.5,399021.75,124628.28,315194.22,66534.297,0,0,2740.4209 +12024,14679,26196,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.9946,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,126,39022.996,0,0,0,0,0,665.03369 +12025,14680,26197,26198,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.5500822,8.7206306,0,9,3,-68.6735,0,3,3,2021,12,0,41,40,1,0,0,14.797119,14.797119,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,37.85,54.28,8.333333333333334,1,1,0,0,10,12,5,1,1902,1336313.3,908061.19,187843.88,0,0,0,4165.9536 +12025,14680,26198,26197,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.3763714,8.6290159,0,9,-3,-19.579359,0,2,3,2021,24,12,39,38,1,12,0,15.414956,15.414956,0,0,0,0,0,0,0,0,0,0,0,0,0,37.85,54.28,46.08,57.2,3.333333333333333,1,1,0,0,10,12,5,1,1902,1336313.3,908061.19,187843.88,0,0,0,4165.9536 +12026,14681,26199,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5728655,7.2900648,0,0,0,-1140.8782,0,3,3,2021,11,0,30,30,1,2,0,7.164155,7.164155,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,1,7,12,3,1,940,-70174.031,0,0,0,0,0,680.81024 +12027,14682,26200,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.8543639,7.829164,0,0,-942.28705,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.7773707,0,26.128035,0,1,1,0,8.7021255,7.7094512,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1005,781144.25,259810.61,259046.31,0,1808.0479,0,2574.6187 +12028,14683,26201,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1121.082,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.1443191,0,28.379684,0,1,1,0,0,0,43.1,36.84,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,262,212801.89,0,0,0,0,0,775.6922 +12029,14684,26202,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.5899487,7.6286211,0,0,0,-963.4328,0,3,3,2021,25,10,31,31,1,10,0,8.1007013,8.1007013,0,0,0,0,0,0,0,0,0,0,0,2.7120917,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,1,7,13,3,0,100,84950.75,118697.6,0,0,0,0,799.78766 +12029,14685,26203,-9,26202,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1072.3213,-9,3,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,226,89574.32,0,0,0,0,0,178.19464 +12030,14686,26204,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1000.6782,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.6343471,48.106148,21.381647,0,1,1,0,0,0,52.01,28.38,-9,-9,10,2,3,0,0,0,8,1,1,544,-79087.141,0,0,0,0,0,449.04932 +12031,14687,26205,26206,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,3.9896662,4.5140448,58,-1,1.0202037,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.0582151,46.88,22.99,36.92,51.87,5,1,1,0,1,7,6,2,1,1392.5,21456.814,0,0,0,0,0,1540.7351 +12031,14687,26206,26205,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.503047,4.6890049,58,1,-143.46698,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.8687415,4.5888448,36.92,51.87,46.88,22.99,8.333333333333334,1,1,0,0,0,6,2,1,1392.5,21456.814,0,0,0,0,0,1540.7351 +12032,14688,26207,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1104364,8.4458323,0,0,0,-945.591,0,3,3,2021,14,2,39,50,1,2,0,11.534019,11.534019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,9,4,1,1199,-26592.469,9550.4922,0,0,-1071.4916,2189.9941,1998.1143 +12033,14689,26208,26209,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8108191,8.2800035,6.4789553,11,0,-70.719032,0,-9,-9,2021,7,0,16,35,1,0,0,20.271164,20.271164,0,0,0,0,0,0,0,0,1,1,0,0,7.0457878,51.83,57.2,44.49,35.36,8.333333333333334,1,1,0,0,12,12,3,1,525,1266425.5,665444.5,232661.97,0,0,0,2395.2124 +12033,14689,26209,26208,-9,-9,1,0,69,0,0,0,1,1,-9,1,2,0,0,0,11,9,-13.332798,0,1,1,2021,4,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.49,35.36,51.83,57.2,3.333333333333333,1,1,0,0,11,12,3,1,525,1266425.5,665444.5,232661.97,0,0,0,2395.2124 +12034,14690,26210,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5787125,6.3811851,0,0,0,-1048.7437,0,3,3,2021,7,0,16,16,1,0,0,4.7063227,4.7063227,0,0,.05,0,0,0,0,0,0,0,0,0,0,40.76,50.23,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,201,317789.63,48271.535,128689.64,0,0,0,353.50497 +12034,14691,26211,-9,26210,-9,1,0,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1089.359,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,249,111486.53,0,0,0,0,0,0 +12035,14692,26212,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.1692262,6.970541,0,0,-1012.6911,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2819362,43.54,27.51,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1467,40053.367,-9851.4736,0,0,0,0,1059.9407 +12036,14693,26213,26214,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,7,-6,18.298765,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.7606854,0,38.75,53.76,51.83,57.2,5,1,1,0,0,7,6,4,1,271,218211.06,83441.438,119744.95,64031.555,16558.648,0,2397.6899 +12036,14693,26214,26213,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.4128637,8.5493536,6.9979625,7,6,109.76785,0,-9,-9,2021,12,0,37,40,1,0,0,12.675992,12.675992,0,0,0,0,0,0,0,0,1,1,0,0,6.9080868,51.83,57.2,38.75,53.76,6.666666666666667,1,1,0,0,8,6,4,1,271,218211.06,83441.438,119744.95,64031.555,16558.648,0,2397.6899 +12036,14694,26215,-9,26214,26213,1,0,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1038.3489,0,2,2,2021,7,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,270,68103.398,0,0,0,0,0,0 +12037,14695,26216,26217,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.5581803,6.6587539,0,8,6,32.665207,0,2,3,2021,8,0,50,72,1,0,0,1.3468698,1.3468698,.05,.05,0,1,0,0,0,0,1,1,0,7.406074,0,57.57,49.69,58.15,52.91,1.666666666666667,1,1,0,0,9,9,5,1,334,2373639.8,2065342.8,577273.38,252666.91,0,0,8320.6113 +12037,14695,26217,26216,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.5942068,9.8084497,0,8,-6,24.091564,0,2,2,2021,6,0,38,37,1,0,0,43.231819,43.231819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.57,49.69,8.333333333333334,1,1,0,0,9,9,5,1,334,2373639.8,2065342.8,577273.38,252666.91,0,0,8320.6113 +12037,14696,26218,-9,26216,26217,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.2323,-9,3,1,2021,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1231,-1547.4534,0,0,0,0,0,0 +12038,14697,26219,26222,-9,-9,1,1,47,0,4,0,1,1,-9,0,4,6.8646436,7.010735,0,18,10,-33.364193,0,3,3,2021,17,6,40,0,1,6,0,2.8608124,2.8608124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.11,33.63,36.51,54.93,10,2,3,0,0,7,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26220,-9,26222,26219,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.96979,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26221,-9,26222,26219,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-957.1131,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26222,26219,-9,-9,1,0,37,0,4,0,3,3,-9,0,3,8.3617725,8.4594202,0,18,-10,2.4328341,0,3,1,2021,12,2,45,0,1,2,0,13.864354,13.864354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.51,54.93,53.11,33.63,5,2,3,0,0,1,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26223,-9,26222,26219,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-968.03851,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26224,-9,26222,26219,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1093.8365,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12039,14698,26225,26226,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3534956,8.173955,0,2,-7,-109.69385,0,-9,-9,2021,11,2,38,57,1,2,0,12.920374,12.920374,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.01,58.61,46.59,46.3,6.666666666666667,1,1,0,0,1,4,4,1,1556.5,3644.752,18266.672,171209.28,106139.46,9062.6572,0,3442.4951 +12039,14698,26226,26225,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1854305,7.9434423,0,2,7,67.03373,0,2,2,2021,8,0,38,39,1,0,0,8.9780378,8.9780378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.59,46.3,40.01,58.61,5,1,1,0,0,6,4,4,1,1556.5,3644.752,18266.672,171209.28,106139.46,9062.6572,0,3442.4951 +12040,14699,26227,-9,-9,-9,1,0,21,0,1,0,1,1,-9,0,5,7.2223253,7.1206059,0,0,0,-899.10809,0,2,3,2021,9,0,25,25,1,0,1,6.2689042,6.2689042,0,0,0,0,0,0,0,0,1,1,0,7.5105252,0,56.65,51.02,-9,-9,10,1,1,0,0,14,13,3,1,619,-84546.188,0,0,0,0,0,1670.5646 +12041,14700,26228,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1176243,8.0642576,0,0,-1142.2225,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9349399,8.3646173,45.39,47.2,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,761,338717.13,309266.19,152243.23,0,0,0,3722.4951 +12042,14701,26229,26230,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.7389245,7.5268669,55,1,-162.73447,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3664098,60.12,54.8,59.21,43.05,8.333333333333334,1,1,0,0,3,1,3,1,665,992760.13,532231.88,318240.97,0,0,0,2114.8076 +12042,14701,26230,26229,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.8999357,5.8276649,55,-1,15.284361,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,6.6294246,0,0,1,1,0,0,5.7550755,59.21,43.05,60.12,54.8,6.666666666666667,1,1,0,0,0,1,3,1,665,992760.13,532231.88,318240.97,0,0,0,2114.8076 +12043,14702,26231,26232,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.3741894,9.5532341,7.5722237,43,2,21.533537,0,2,2,2021,14,3,35,36,1,3,0,33.979385,33.979385,0,0,.05,0,0,0,0,0,0,0,0,7.6007495,7.8979702,40.16,59.89,46.08,57.2,3.333333333333333,1,1,0,0,11,9,5,1,2404.5,1270969.3,376497.31,722990.13,0,0,0,8121.2832 +12043,14702,26232,26231,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1311188,8.1353874,0,8,-2,75.340477,0,2,1,2021,14,2,48,44,1,2,0,7.3709688,7.3709688,0,0,0,0,0,0,0,0,0,0,0,7.3974285,0,46.08,57.2,40.16,59.89,5,1,1,0,0,11,9,5,1,2404.5,1270969.3,376497.31,722990.13,0,0,0,8121.2832 +12044,14703,26233,26234,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,7.3148303,7.6145959,0,9,0,-66.096321,0,2,2,2021,12,0,30,-9,1,0,0,5.9510031,5.9510031,0,0,0,0,0,0,0,0,0,0,0,4.2809963,0,36.79,45.74,58.47,50.22,5,1,1,0,0,11,9,5,0,1225,340651.56,7946.0273,430713.88,120005.16,0,22334.41,3099.6475 +12044,14703,26234,26233,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.576539,8.3598356,0,9,0,-144.55576,0,2,2,2021,6,0,52,49,1,0,0,13.441891,13.441891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,36.79,45.74,8.333333333333334,1,1,0,0,11,9,5,0,1225,340651.56,7946.0273,430713.88,120005.16,0,22334.41,3099.6475 +12045,14704,26235,-9,26236,26237,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.08478,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26236,26237,-9,-9,1,0,40,0,2,0,1,1,1,0,4,8.413702,8.482914,0,18,1,-174.76112,-9,1,2,2021,9,0,51,0,1,0,0,10.442707,10.442707,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.32,53.44,8.333333333333334,1,1,0,0,7,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26237,26236,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,9.0840406,9.2106056,0,17,-1,58.385445,0,2,2,2021,11,0,45,55,1,0,0,22.13014,22.13014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,57.16,56.15,5,1,1,0,0,12,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26238,-9,26236,26237,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.5593,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12046,14705,26239,26240,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.1980495,9.0429382,0,14,-4,-102.13873,0,2,2,2021,10,0,41,41,1,0,0,30.624887,30.624887,.05,.05,0,0,0,0,0,0,0,0,0,3.2338402,0,46.5,58.26,45.49,58.84,8.333333333333334,1,1,0,0,15,11,5,1,596.5,1083039.6,677550.25,280135.41,0,0,0,6520.1846 +12046,14705,26240,26239,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0176573,9.1333218,0,4,4,-33.139885,0,-9,-9,2021,17,6,47,42,1,6,0,22.192139,22.192139,.05,.05,.05,0,0,0,0,0,0,0,0,6.0422263,0,45.49,58.84,46.5,58.26,6.666666666666667,1,1,0,0,8,11,5,1,596.5,1083039.6,677550.25,280135.41,0,0,0,6520.1846 +12047,14706,26241,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1487017,7.9123302,0,0,0,-1041.6025,0,1,1,2021,19,8,22,22,1,8,0,16.106178,16.106178,.05,.05,0,0,0,0,0,0,0,0,0,6.5683026,0,36.24,52.14,-9,-9,3.333333333333333,1,1,0,0,9,7,4,1,366,420090.94,54336.211,0,0,0,0,2298.1206 +12047,14707,26242,-9,-9,-9,1,1,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-962.28333,-9,-9,-9,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.54,38.08,-9,-9,1.666666666666667,2,3,0,0,0,7,1,1,627,-51380.281,0,0,0,0,0,0 +12048,14708,26243,26244,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.3543849,6.2375426,29,7,-19.262159,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9739695,5.9765849,52,41.28,64.23,44.69,8.333333333333334,1,1,0,0,6,10,3,1,573,1013342.2,424192.06,563319.88,407147.44,15117.137,0,1875.9895 +12048,14708,26244,26243,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.4284658,7.659678,0,29,-7,-40.579632,0,2,3,2021,6,0,15,20,1,0,0,14.09324,14.09324,0,0,0,0,0,0,0,2,1,1,0,4.0018148,0,64.23,44.69,52,41.28,8.333333333333334,1,1,0,0,9,10,3,1,573,1013342.2,424192.06,563319.88,407147.44,15117.137,0,1875.9895 +12049,14709,26245,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1056.9331,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,1.666666666666667,1,1,1,0,8,13,1,1,312,124267.84,0,138083.91,0,0,0,1973.7979 +12050,14710,26246,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0645843,7.0471835,0,0,-970.0141,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0353861,44.19,56.73,-9,-9,6.666666666666667,3,4,0,0,9,6,2,1,857,549091.81,128109.83,236229.39,0,0,0,143.78407 +12051,14711,26247,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,8.0617523,8.1768417,0,0,-1068.1093,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,1,2.6685898,0,29.38015,0,1,1,0,8.113266,5.7525058,68.11,27.95,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,235,1078179.3,461847.06,443006.16,0,0,0,2203.7056 +12052,14712,26248,26249,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.6968699,8.1731081,53,3,-32.506145,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,4.374495,0,0,1,1,0,7.9689164,7.7576351,37.98,43.29,51,46,8.333333333333334,1,1,0,0,11,12,3,1,1189,737827.25,407213.81,204939.78,0,0,75.557762,2860.7021 +12052,14712,26249,26248,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.6033306,5.5508709,53,-3,91.639206,-9,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1220226,5.7651191,51,46,37.98,43.29,7,1,1,0,0,0,12,3,1,1189,737827.25,407213.81,204939.78,0,0,75.557762,2860.7021 +12053,14713,26250,26251,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.5899305,7.7648768,39,-6,-98.246971,0,3,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.7522054,7.8507881,50.77,33.47,49.28,52.09,5,1,1,0,0,10,10,4,1,582.5,1395026.8,963294,555921.38,0,0,0,5045.1265 +12053,14713,26251,26250,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.4132414,8.2398453,41,6,122.63794,0,2,1,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3777599,8.4253454,49.28,52.09,50.77,33.47,8.333333333333334,1,1,0,0,7,10,4,1,582.5,1395026.8,963294,555921.38,0,0,0,5045.1265 +12054,14714,26252,26253,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.6027184,7.642262,36,3,86.96096,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.6224056,7.6900768,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,274,2332906,1027498,770096.63,0,0,0,6895.0278 +12054,14714,26253,26252,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.1859217,9.6425648,8.295475,38,-3,-13.846244,0,2,1,2021,7,0,65,48,1,0,0,20.896294,20.896294,.05,.05,0,0,0,0,0,0,0,0,0,0,8.356389,57.06,57.76,52,54.51,10,1,1,0,0,10,10,5,1,274,2332906,1027498,770096.63,0,0,0,6895.0278 +12055,14715,26254,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,7.8813725,8.9822006,7.2267895,0,0,-1008.1999,0,2,2,2021,7,1,46,25,1,1,0,8.0422153,8.0422153,0,0,0,0,0,0,0,0,1,1,0,7.2958422,0,57.77,30.72,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,483,535564.75,98350.391,186962.94,37316.934,5530.2129,0,2259.6594 +12055,14716,26255,-9,26254,-9,1,1,22,0,0,0,2,2,-9,0,4,7.501708,7.7014246,0,0,0,-1016.401,0,1,1,2021,8,0,42,40,1,0,1,5.9142909,5.9142909,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,578,-74104.828,-63790.484,0,0,0,0,1372.1755 +12055,14717,26256,-9,26254,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1026.8695,-9,1,-9,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.1,64.88,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,155,103684.62,0,0,0,0,0,826.90961 +12056,14718,26257,26258,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6134582,7.3572268,51,3,-13.242445,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1405044,7.3257761,68.5,31.88,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,244,361423,253804.88,0,0,0,0,1957.158 +12056,14718,26258,26257,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.3301759,5.39715,51,-3,-45.734367,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2886472,5.2597761,57.16,56.15,68.5,31.88,10,1,1,0,0,0,10,2,1,244,361423,253804.88,0,0,0,0,1957.158 +12057,14719,26259,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1800265,6.9510083,0,0,-988.19354,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0822375,6.907536,54.2,57.49,-9,-9,10,1,1,0,0,0,9,2,1,507,380154.47,195968.98,180581.22,0,0,0,1749.9407 +12058,14720,26260,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8693466,7.7462955,0,0,0,-1037.9242,0,2,2,2021,28,12,47,41,1,12,0,4.9084826,4.9084826,0,0,0,0,0,0,0,0,0,0,0,0,0,27.11,59.22,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,941,108459.17,96609.68,0,0,2625.396,1565.1935,143.88965 +12058,14721,26261,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.5079894,7.563498,0,0,0,-1076.4668,-9,-9,-9,2021,12,0,24,0,1,2,0,9.2571754,9.2571754,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,1,5,3,1,1517,-95400.727,0,0,0,0,0,979.46429 +12059,14722,26262,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.9380627,8.0336037,7.0540786,0,0,-989.35883,0,1,1,2021,9,1,60,60,1,1,0,4.8148856,4.8148856,0,0,0,0,0,0,0,0,1,1,0,7.318821,7.2208519,51.73,56.3,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,492,467947.66,24381.27,0,0,0,0,2066.5466 +12060,14723,26263,26264,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.3567843,7.1067281,0,28,5,69.376038,0,3,3,2021,7,0,50,50,1,0,0,3.4409811,3.4409811,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.55,44.33,8.333333333333334,1,1,0,0,11,13,2,1,362,258285.34,245833.34,113413.89,0,0,0,2067.272 +12060,14723,26264,26263,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,27,-5,10.619972,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,57.16,56.15,1.666666666666667,1,1,0,0,1,13,2,1,362,258285.34,245833.34,113413.89,0,0,0,2067.272 +12060,14724,26265,-9,26264,26263,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-910.14465,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,6,13,1,1,1334,-176218.22,0,0,0,0,0,0 +12061,14725,26266,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3385525,8.2592573,0,0,0,-972.61969,0,3,2,2021,4,1,38,38,1,1,0,14.447088,14.447088,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,43.04,-9,-9,8.333333333333334,3,4,0,0,12,8,5,0,997,1374011.9,1347601.3,0,0,0,0,1340.2622 +12062,14726,26267,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1031.0959,0,3,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.53,41.68,-9,-9,3.333333333333333,2,3,0,0,7,6,1,1,1562,8486.125,0,0,0,5618.043,0,-197.53937 +12062,14726,26268,-9,26267,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.0221,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,1,1,1562,8486.125,0,0,0,5618.043,0,-197.53937 +12063,14727,26269,26270,-9,-9,1,1,59,0,0,0,3,3,-9,1,4,0,6.1303468,5.8420463,43,3,15.916498,0,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0756783,55,53,16.04,23.99,8,1,1,0,0,0,10,2,0,1083.5,982579.69,640183,263034.28,0,0,0,1962.6824 +12063,14727,26270,26269,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,43,-3,-43.344501,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,55,53,6.666666666666667,1,1,0,0,0,10,2,0,1083.5,982579.69,640183,263034.28,0,0,0,1962.6824 +12064,14728,26271,26272,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.4698396,7.3035831,0,5,6,-21.039333,0,2,2,2021,9,0,35,40,1,0,0,7.9412851,7.9412851,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,33.01,63.17,8.333333333333334,1,1,0,0,7,6,4,1,1617,29539.172,0,60188.938,58246.773,0,0,2882.1279 +12064,14728,26272,26271,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2840815,8.2212248,0,5,-6,-71.01207,0,2,2,2021,14,2,42,55,1,2,0,10.191025,10.191025,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,54.77,55.87,6.666666666666667,1,1,0,0,8,6,4,1,1617,29539.172,0,60188.938,58246.773,0,0,2882.1279 +12065,14729,26273,-9,26274,26275,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1019.7762,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26274,26275,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,6.881587,6.8588653,0,15,-2,-21.448002,0,3,2,2021,10,0,21,28,1,0,0,4.9605446,4.9605446,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.54,62.09,8.333333333333334,2,3,0,0,7,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26275,26274,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.0829964,8.2463036,0,15,2,36.389145,0,3,3,2021,6,0,40,39,1,0,0,9.1580105,9.1580105,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,51.24,58.84,8.333333333333334,2,3,0,0,14,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26276,-9,26274,26275,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1056.933,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.73,55.81,-9,-9,8.333333333333334,2,3,0,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26277,-9,26274,26275,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.23987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12066,14730,26278,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,10.068532,10.122061,0,0,0,-912.00037,0,2,1,2021,9,1,50,40,1,1,0,45.967091,45.967091,.05,.05,.05,0,0,0,0,2,0,0,0,9.0193367,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,13,9,5,1,770,290327.66,216683.06,200129.23,52940.41,3064.2568,0,8780.957 +12067,14731,26279,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1036.1772,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.52,28.07,-9,-9,1.666666666666667,3,4,1,1,1,8,1,0,299,-66223.242,-39243.938,0,0,0,0,1294.4181 +12067,14732,26280,-9,26279,-9,1,1,31,0,0,0,2,2,-9,0,4,7.9885559,8.2499018,0,0,0,-1021.0269,0,2,2,2021,9,0,39,37,1,0,1,11.624138,11.624138,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,4,2,0,0,11,8,4,0,713,61836.516,107024.5,0,0,0,0,1883.9875 +12068,14733,26281,26282,-9,-9,1,1,70,0,1,0,1,1,-9,0,4,8.3712006,8.4227343,0,11,25,22.181032,0,-9,-9,2021,8,0,45,45,1,0,0,9.5032253,9.5032253,.05,.05,0,0,0,0,0,0,1,1,0,.83478653,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,13,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26282,26281,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.3727465,7.4618349,0,11,-25,-67.598274,0,2,2,2021,7,0,35,6,1,0,0,5.9877038,5.9877038,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,4,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26283,-9,26282,26281,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-938.19812,-9,2,1,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1159079,0,20.24,70.43000000000001,-9,-9,8.333333333333334,1,1,1,0,0,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26284,-9,26282,26281,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.31335,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14734,26285,-9,26282,26281,1,0,19,0,1,1,2,0,0,0,4,0,4.6929026,4.7005076,0,0,-885.3576,-9,2,1,2021,29,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5789256,0,17.34,67.89,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,1559,30383.137,0,0,0,0,-942.68817,233.97992 +12069,14735,26286,26288,-9,-9,1,0,38,0,3,0,2,2,-9,0,2,7.641706,7.4517541,0,18,-8,-29.921234,0,2,2,2021,9,0,21,20,1,0,0,10.529603,10.529603,.05,.05,0,0,0,0,0,0,1,1,0,3.2217073,0,57.57,49.69,58.15,52.91,1.666666666666667,1,1,0,0,10,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26287,-9,26286,26288,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.67035,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26288,26286,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,8.4016094,8.3620691,0,18,8,38.613995,0,3,2,2021,9,1,40,40,1,1,0,13.350663,13.350663,.05,.05,0,0,0,0,0,0,1,1,0,4.9451923,0,58.15,52.91,57.57,49.69,8.333333333333334,1,1,0,0,10,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26289,-9,26286,26288,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-848.9483,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12070,14736,26290,26292,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.8299785,7.2707896,0,17,-2,-59.815617,0,1,3,2021,12,3,28,29,1,3,0,8.4368534,8.4368534,.05,.05,0,0,0,0,0,0,0,0,0,5.4208221,0,40.32,53.3,37.17,50.6,6.666666666666667,1,1,0,0,12,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26291,-9,26290,26292,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.84088,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26292,26290,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.8828173,8.5999355,0,17,2,66.45845,0,2,2,2021,12,0,37,40,1,0,0,20.50322,20.50322,.05,.05,0,0,0,0,0,0,0,0,0,7.1840496,0,37.17,50.6,40.32,53.3,6.666666666666667,1,1,0,0,13,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26293,-9,26290,26292,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.7453,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12071,14737,26294,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6340094,8.8276367,0,0,0,-970.65399,0,3,2,2021,12,1,38,36,1,1,0,19.166571,19.166571,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,491,907984.94,0,662567.94,0,0,0,2953.3521 +12072,14738,26295,26296,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,30,-6,-42.585838,0,1,1,2021,7,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.21,26.99,57.16,56.15,10,1,1,1,0,11,2,3,1,425.5,1422427,1199270.8,165702.09,0,0,0,922.53687 +12072,14738,26296,26295,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,7.649828,8.4116554,8,6,-10.234585,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8121161,57.16,56.15,59.21,26.99,8.333333333333334,1,1,0,0,9,2,3,1,425.5,1422427,1199270.8,165702.09,0,0,0,922.53687 +12072,14739,26297,-9,26295,26296,1,1,21,0,0,0,2,2,-9,0,4,8.8225641,8.4059191,0,0,0,-900.6969,0,2,2,2021,11,2,60,45,1,2,1,11.665872,11.665872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.29,62.09,-9,-9,6.666666666666667,1,1,0,0,1,2,5,1,608,-128577.88,-66022.789,77912.969,141234.63,-188.72787,257.82303,2676.5427 +12073,14740,26298,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.7384906,9.6358232,9.6320295,0,0,-1086.8125,-9,-9,-9,2021,7,0,36,0,1,0,0,6.6822906,6.6822906,0,0,0,0,0,0,0,0,1,1,0,0,9.4803333,59.91,42.65,-9,-9,8.333333333333334,1,1,0,0,13,10,5,0,924,771587.5,248819.34,0,0,0,5594.9116,8071.2256 +12074,14741,26299,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.1135626,7.9530249,0,0,-1015.0189,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5991144,7.8917913,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,1214,986927.63,796376.56,0,0,4883.4419,0,2837.0784 +12075,14742,26300,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.5131893,8.4092817,0,0,0,-1006.423,0,-9,-9,2021,10,1,40,30,1,1,0,10.730557,10.730557,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,2502,373562.84,160471.69,406677.03,213153.77,579.71271,9803.5781,1589.198 +12076,14743,26301,26302,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.2071543,9.158865,0,30,0,-16.797695,0,2,1,2021,18,6,42,45,1,6,0,29.673927,29.673927,.05,.05,0,0,0,0,0,0,0,0,0,4.9896455,0,37.13,55.9,56.47,59.4,6.666666666666667,1,1,0,0,11,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14743,26302,26301,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.2944717,8.4598503,6.1283774,30,0,48.291061,0,3,1,2021,10,1,30,34,1,1,0,15.689088,15.689088,.05,.05,0,0,0,0,0,0,0,0,0,7.4749799,0,56.47,59.4,37.13,55.9,10,1,1,0,0,11,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14743,26303,-9,26302,26301,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-908.69202,-9,2,1,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2199965,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14744,26304,-9,26302,26301,1,1,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-1007.3212,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5665262,0,62.39,56.71,-9,-9,10,1,1,1,0,4,2,1,1,177,28412.029,0,0,0,22008.172,0,-258.24902 +12076,14745,26305,-9,26302,26301,1,1,20,0,0,0,2,2,0,0,5,0,6.306088,6.0420957,0,0,-882.89484,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7195911,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,669,-26760.15,0,0,0,539.69812,0,645.01654 +12077,14746,26306,26307,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.8808799,6.7096062,39,9,130.56427,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7216711,6.7858729,56.26,18.88,47.28,50.99,3.333333333333333,1,1,0,0,0,5,2,1,547.5,737735.75,275396.84,246131.13,0,0,0,2229.6409 +12077,14746,26307,26306,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,5.6727567,5.8969383,39,0,17.096455,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9960694,6.4250307,47.28,50.99,56.26,18.88,8.333333333333334,1,1,0,0,6,5,2,1,547.5,737735.75,275396.84,246131.13,0,0,0,2229.6409 +12078,14747,26308,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.0083418,7.3652263,0,0,-1000.4686,0,3,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.375587,29.83,35.21,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,383,233059.25,-36906.504,63126.879,0,0,0,825.9942 +12079,14748,26309,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.3232327,6.504807,0,0,-1099.3635,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6129546,0,0,1,1,0,6.3743014,5.9522166,58,41.98,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,350,-15580.454,129527.05,44171.082,0,0,0,1608.3835 +12080,14749,26310,26311,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.8475666,9.2657242,8.813468,40,2,-10.082064,0,1,1,2021,8,0,14,14,1,0,0,21.855438,21.855438,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4742651,55.36,51.57,53.44,36.01,8.333333333333334,2,3,0,0,15,8,5,1,463,811774.5,339566.44,197417.61,81317.672,0,18337.781,6410.5586 +12080,14749,26311,26310,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.8662848,7.9614282,40,-2,66.993301,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6476111,8.0898972,53.44,36.01,55.36,51.57,8.333333333333334,2,3,0,0,8,8,5,1,463,811774.5,339566.44,197417.61,81317.672,0,18337.781,6410.5586 +12081,14750,26312,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,0,0,0,0,-977.00232,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.48,16.73,-9,-9,10,3,4,0,0,0,8,1,0,2103,120274.7,0,0,0,0,694.40112,1386.5427 +12081,14750,26313,-9,26312,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.23773,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,2103,120274.7,0,0,0,0,694.40112,1386.5427 +12081,14751,26314,-9,26312,-9,1,0,27,0,1,0,1,1,-9,0,2,0,0,0,0,0,-993.2428,1,3,2,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,48.17,29.36,-9,-9,5,3,4,0,1,3,8,2,0,186,-141016.81,0,0,0,0,0,1239.0967 +12081,14752,26315,-9,26312,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1062.6625,-9,3,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63.33,24.58,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,464,55626.184,0,0,0,0,0,-192.40839 +12082,14753,26316,26317,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.7431126,8.9186001,0,7,-1,39.724937,0,3,2,2021,16,4,50,50,1,4,0,12.691315,12.691315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.86,55.92,59.14,52.5,8.333333333333334,1,1,0,0,8,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14753,26317,26316,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.620389,8.8872271,0,7,1,107.06059,0,3,2,2021,7,0,35,45,1,0,0,18.237968,18.237968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,42.86,55.92,8.333333333333334,1,1,0,0,8,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14753,26318,-9,26317,26316,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.11859,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14754,26319,-9,26317,26316,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-929.40607,-9,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,58.32,-9,-9,5,1,1,0,0,3,12,2,1,1911,-64334.047,0,0,0,0,-55.170868,-1026.733 +12083,14755,26320,26321,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,26,-5,0,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,23.17,55.77,29.26,31.62,3.333333333333333,1,1,0,1,0,2,1,0,596,-48139.84,126449.72,0,0,0,0,1423.6034 +12083,14755,26321,26320,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,26,5,0,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.26,31.62,23.17,55.77,1.666666666666667,1,1,0,0,0,2,1,0,596,-48139.84,126449.72,0,0,0,0,1423.6034 +12084,14756,26322,26323,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,8,-7,-86.541046,0,2,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.75,37.95,48.24,40.43,5,1,1,0,0,4,11,3,1,379.5,897041.25,597474.38,272474.13,38362.844,5454.2959,21.662914,2068.7932 +12084,14756,26323,26322,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.4034734,7.3873491,8,7,175.17181,0,2,2,2021,14,2,0,0,4,2,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,5.0589962,7.5803709,48.24,40.43,41.75,37.95,6.666666666666667,1,1,0,0,5,11,3,1,379.5,897041.25,597474.38,272474.13,38362.844,5454.2959,21.662914,2068.7932 +12085,14757,26324,26325,-9,-9,1,0,28,0,1,0,2,2,-9,1,1,0,0,0,10,-3,0,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,30.16,52.38,55.6,1.666666666666667,2,3,0,0,0,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12085,14757,26325,26324,-9,-9,1,1,31,0,1,0,1,1,-9,1,4,0,0,0,10,3,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.38,55.6,35.57,30.16,8.333333333333334,2,3,1,0,3,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12085,14757,26326,-9,26324,26325,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.43927,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12086,14758,26327,26329,-9,-9,1,1,50,0,1,0,2,2,-9,1,1,0,0,0,22,5,0,0,3,2,2021,21,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.17,33.92,36.82,54.92,1.666666666666667,1,1,0,1,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12086,14758,26328,-9,26329,26327,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-951.38812,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12086,14758,26329,26327,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,0,0,0,22,-5,0,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.82,54.92,27.17,33.92,6.666666666666667,1,1,0,0,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12087,14759,26330,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.6570868,5.5080676,0,0,-904.62177,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2580786,58.9,39.43,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,456,21509.076,107803.2,0,0,0,0,874.64752 +12088,14760,26331,26333,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7658162,6.673069,0,12,1,.39490429,0,3,1,2021,9,1,30,30,1,1,0,4.0029731,4.0029731,0,0,0,0,0,0,0,0,1,1,0,2.9460104,0,51.77,58.57,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12088,14760,26332,-9,26331,26333,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1105.6639,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12088,14760,26333,26331,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.0434561,9.124774,0,12,-1,25.869606,0,-9,-9,2021,5,0,78,41,1,0,0,15.288317,15.288317,.05,.05,0,0,0,0,0,0,1,1,0,2.4027205,0,57.06,57.76,51.77,58.57,8.333333333333334,1,1,0,0,13,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12089,14761,26334,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1057.0125,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,99.292198,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,351,237325.11,0,0,0,0,0,1442.395 +12089,14762,26335,26336,26334,-9,1,1,35,0,2,0,1,1,-9,0,3,8.1809397,8.0293598,0,6,8,-9.2210541,0,3,3,2021,17,5,37,37,1,5,0,9.0727205,9.0727205,0,0,0,0,0,0,0,74.5,1,1,0,0,0,37.28,55.9,41.14,54.03,5,2,3,0,0,12,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26336,26335,-9,-9,1,0,27,0,2,0,3,3,-9,0,3,0,0,0,6,-8,147.97691,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.14,54.03,37.28,55.9,6.666666666666667,2,3,1,1,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26337,-9,26336,26335,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.38495,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26338,-9,26336,26335,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.8748,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12090,14763,26339,26340,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.593461,8.6437368,0,4,0,12.928797,0,3,2,2021,20,8,39,38,1,8,0,10.762298,10.762298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,10,1,1,0,0,10,2,5,1,291.5,28680.686,-13161.224,0,0,4451.3159,18135.842,3439.1904 +12090,14763,26340,26339,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.328887,8.5002632,0,4,0,-48.468201,0,-9,-9,2021,16,4,47,50,1,4,0,9.0503321,9.0503321,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,8.333333333333334,1,1,0,0,10,2,5,1,291.5,28680.686,-13161.224,0,0,4451.3159,18135.842,3439.1904 +12091,14764,26341,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.8751564,6.060575,0,0,-1003.7764,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1273801,5.9316149,33.22,36.3,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1022,290894.34,184646.44,251173.11,0,0,0,817.42053 +12092,14765,26342,26343,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.1355896,8.5631332,0,25,3,-26.639015,0,3,3,2021,12,1,55,50,1,1,0,8.7514658,8.7514658,.05,.05,0,0,0,0,0,2,0,0,0,0,0,47.54,44.53,39.73,42.82,5,1,1,0,0,10,2,4,1,1343,286327.56,242830.81,96131.281,81397.219,1789.9509,1096.0316,1583.3986 +12092,14765,26343,26342,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,0,0,0,25,-3,30.8776,0,2,-9,2021,22,9,0,80,3,9,0,0,0,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,39.73,42.82,47.54,44.53,6.666666666666667,1,1,1,0,10,2,4,1,1343,286327.56,242830.81,96131.281,81397.219,1789.9509,1096.0316,1583.3986 +12093,14766,26344,-9,26347,26345,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.29425,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26345,26347,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,0,0,0,6,1,0,0,1,3,2021,12,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,64.48,30.82,44.38,10,1,1,1,1,3,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26346,-9,26347,26345,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.69061,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26347,26345,-9,-9,1,0,31,0,2,0,1,1,-9,0,2,0,0,0,6,-1,0,1,-9,-9,2021,19,8,0,37,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.82,44.38,38.57,64.48,8.333333333333334,1,1,0,1,3,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12094,14767,26348,-9,26350,26349,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-756.02704,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12094,14767,26349,26350,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.3427944,8.0231133,0,7,-1,-75.394806,0,-9,-9,2021,3,0,42,42,1,0,0,12.378962,12.378962,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.68,61,67.43000000000001,41.87,10,4,1,0,0,8,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12094,14767,26350,26349,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,8.598299,8.557004,0,7,1,-22.85224,0,3,3,2021,6,0,42,40,1,0,0,17.119947,17.119947,.05,.05,0,0,0,0,0,0,1,1,0,0,0,67.43000000000001,41.87,46.68,61,8.333333333333334,1,1,0,0,8,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12095,14768,26351,26354,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3542762,6.8925843,0,7,6,214.74423,0,2,2,2021,9,0,35,6,1,0,0,3.7216187,3.7216187,0,0,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,19.33,64.04000000000001,6.666666666666667,1,1,0,0,8,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26352,-9,26351,26354,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.32166,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26353,-9,26351,26354,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.8651,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26354,26351,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.3161182,8.359087,0,7,-6,-3.5290165,0,1,1,2021,14,5,55,52,1,5,0,8.4515257,8.4515257,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,19.33,64.04000000000001,52.91,55.33,3.333333333333333,1,1,0,0,7,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12096,14769,26355,26357,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.7623711,8.4992228,0,3,2,-36.416569,0,1,1,2021,12,2,48,48,1,2,0,16.449947,16.449947,.05,.05,.05,0,0,0,0,0,0,0,0,6.4520655,0,44.22,56.66,43.67,61.06,8.333333333333334,1,1,0,0,9,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12096,14769,26356,-9,-9,26355,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1027.7296,-9,-9,1,2021,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.83,69.67,-9,-9,1.666666666666667,1,1,0,0,0,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12096,14769,26357,26355,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.6209602,8.7629309,0,3,-2,130.94267,0,-9,-9,2021,9,0,35,38,1,0,0,19.011753,19.011753,.05,.05,.05,0,0,0,0,0,0,0,0,7.0332141,0,43.67,61.06,44.22,56.66,8.333333333333334,1,1,0,0,1,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12097,14770,26358,26359,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.8410845,7.9838452,37,-1,-107.82365,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.3582876,7.9040904,57.16,56.15,57.16,56.15,10,1,1,0,0,10,6,5,1,542.5,1229390.5,800940.06,289118.25,8033.1167,2496.9482,-829.2005,3980.2085 +12097,14770,26359,26358,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1678057,8.9224529,0,38,1,-53.720242,0,3,3,2021,7,0,48,48,1,0,0,23.599146,23.599146,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,12,6,5,1,542.5,1229390.5,800940.06,289118.25,8033.1167,2496.9482,-829.2005,3980.2085 +12098,14771,26360,26361,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3942971,6.5923915,8,1,67.542351,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3235517,69.12,34.88,59.41,39.18,1.666666666666667,1,1,0,0,0,13,2,1,624,150399.89,-41998.656,140491.59,0,0,0,836.66968 +12098,14771,26361,26360,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,-1,74.742088,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.41,39.18,69.12,34.88,1.666666666666667,1,1,0,0,0,13,2,1,624,150399.89,-41998.656,140491.59,0,0,0,836.66968 +12099,14772,26362,26365,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.2766438,8.3420467,0,22,5,-2.6483536,0,2,1,2021,13,2,44,44,1,2,0,11.172215,11.172215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.61,50.97,50.06,49.75,3.333333333333333,1,1,0,0,11,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26363,-9,26365,26362,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.45056,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26364,-9,26365,26362,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2765,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26365,26362,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.5004454,6.9551315,0,22,-5,-96.373116,0,2,2,2021,8,0,38,31,1,0,0,3.7926385,3.7926385,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.06,49.75,39.61,50.97,10,1,1,0,0,11,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14773,26366,-9,26365,26362,1,0,19,0,2,0,2,2,-9,0,3,5.3173709,4.8825464,0,0,0,-1083.447,0,2,2,2021,6,0,35,17,1,0,1,.59128547,.59128547,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,691,-64229.605,0,0,0,0,0,600.34406 +12100,14774,26367,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3826137,7.9805264,0,0,0,-1109.7563,0,3,3,2021,19,7,30,30,1,7,0,7.3072963,7.3072963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.7,54.34,-9,-9,3.333333333333333,1,1,0,1,14,11,3,1,427,-26169.656,-44506.363,0,0,0,0,1939.5267 +12100,14775,26368,-9,26367,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0986481,8.0680904,0,0,0,-1011.1393,-9,2,-9,2021,17,6,35,0,1,6,1,11.775999,11.775999,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.9,55.12,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,1255,180873.97,3335.283,0,0,5804.4131,0,1668.6323 +12101,14776,26369,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1022.1218,0,2,2,2021,9,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,1,0,11,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12101,14776,26370,-9,26369,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7711,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12101,14776,26371,-9,26369,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.8406,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12102,14777,26372,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.707674,5.8145537,0,0,-924.91455,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2324347,57.88,34.09,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,133,183412.81,56487.223,141382.88,0,0,0,1062.2434 +12103,14778,26373,26374,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.5635805,6.5396957,47,-6,-95.467972,0,3,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.26681796,6.8287449,43.26,30.71,62.17,22.95,6.666666666666667,1,1,0,0,6,7,3,1,604,1507631.8,609926.38,709995.13,0,5354.811,0,2208.5381 +12103,14778,26374,26373,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.8033743,7.4206381,47,6,-.52728826,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8483856,7.6990228,62.17,22.95,43.26,30.71,6.666666666666667,1,1,0,0,0,7,3,1,604,1507631.8,609926.38,709995.13,0,5354.811,0,2208.5381 +12104,14779,26375,26376,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.6567802,8.8250179,0,18,-7,-39.044273,0,1,1,2021,8,0,57,57,1,0,0,12.276877,12.276877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.69,52.99,8.333333333333334,1,1,0,0,9,10,5,1,899.5,65539.969,29702.949,184562.56,141511.69,3607.1958,0,4663.2441 +12104,14779,26376,26375,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.7012205,8.3820467,0,18,7,-82.453781,0,2,1,2021,15,4,43,30,1,4,0,11.17484,11.17484,0,0,0,0,0,0,0,0,0,0,0,3.6243682,0,49.69,52.99,57.33,53.46,6.666666666666667,2,3,0,0,8,10,5,1,899.5,65539.969,29702.949,184562.56,141511.69,3607.1958,0,4663.2441 +12105,14780,26377,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6806593,5.8196959,0,0,-878.74493,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3978715,64.84999999999999,21.6,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,280,155830.36,176630.03,52038.449,0,0,0,2223.8381 +12106,14781,26378,-9,26381,26380,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.00726,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26379,-9,26381,26380,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.64825,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26380,26381,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.8763056,8.9696283,0,18,0,32.037762,0,2,3,2021,4,0,40,40,1,0,0,22.888636,22.888636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.72,51.29,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26381,26380,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,7.4308047,7.2242751,0,18,0,-50.154076,0,2,2,2021,6,0,12,36,1,0,0,13.896756,13.896756,0,0,0,0,0,0,0,2,1,1,0,0,0,57.73,54.53,58.72,51.29,8.333333333333334,1,1,0,0,10,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12107,14782,26382,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,0,0,0,0,0,-978.75421,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.22,48.74,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,551,47707.418,0,0,0,0,0,1017.5126 +12108,14783,26383,26384,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3116159,7.8542523,32,7,57.8908,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0578117,7.9593339,58.87,51.29,57.16,56.15,8.333333333333334,1,1,0,0,5,12,5,1,373.5,912366.63,300321.28,192831.5,0,5809.9761,2764.4199,4481.7783 +12108,14783,26384,26383,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8296561,8.1163654,7.1737289,7,-7,-16.061069,0,3,3,2021,6,0,29,29,1,0,0,8.1430292,8.1430292,0,0,0,0,0,0,0,0,1,1,0,4.3388648,7.4580631,57.16,56.15,58.87,51.29,10,1,1,0,0,9,12,5,1,373.5,912366.63,300321.28,192831.5,0,5809.9761,2764.4199,4481.7783 +12109,14784,26385,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.8414464,7.96176,0,0,-858.13989,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7169237,7.9538393,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,537,1215652.8,423165.34,438980.66,0,0,0,2329.9551 +12110,14785,26386,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,6.5539713,6.6925025,0,0,-1035.8424,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7185552,6.3897843,40.97,32.79,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,5199,312805.66,63279.207,6917.9185,0,0,0,1287.6273 +12111,14786,26387,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.1055589,7.3209333,0,0,-1095.7319,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8475722,7.0855589,47.73,27.13,-9,-9,5,1,1,0,0,0,11,3,1,364,317212.53,198996.16,162671.16,0,0,0,1559.0292 +12112,14787,26388,26390,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,8.2124405,8.0849991,0,18,5,-17.195642,0,2,3,2021,6,0,38,37,1,0,0,11.901118,11.901118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,49.36,58.53,8.333333333333334,1,1,0,0,9,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26389,-9,26390,26388,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.44751,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26390,26388,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.5959215,8.4797916,0,18,-5,83.575607,0,2,2,2021,7,0,55,50,1,0,0,6.9244175,6.9244175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,51.73,58.82,8.333333333333334,1,1,0,0,9,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26391,-9,26390,26388,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.9701,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12113,14788,26392,-9,26393,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.69171,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,2,0,253,-106227.77,0,0,0,0,0,67.425133 +12113,14788,26393,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1134.1373,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,10,2,0,253,-106227.77,0,0,0,0,0,67.425133 +12113,14789,26394,-9,26393,-9,1,1,19,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1002.2064,0,3,-9,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,466,-20247.555,0,0,0,0,0,1267.5599 +12114,14790,26395,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.9223437,7.210052,0,0,-1035.4786,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,21.32539,0,0,1,1,0,3.7060275,7.0411654,63.83,11.31,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,597,371270.75,261860.61,111571.09,0,0,0,1468.3453 +12114,14791,26396,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-966.23022,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,48.53,44.13,-9,-9,10,1,1,0,0,0,11,1,1,506,24935.195,0,0,0,-826.59467,0,1469.4951 +12115,14792,26397,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,6.4491096,6.7852669,4.5921164,0,0,-1087.7277,0,2,2,2021,12,4,28,31,1,4,0,2.8945947,2.8945947,0,0,0,0,0,0,0,0,1,1,0,4.3068514,0,48.87,58.55,-9,-9,5,1,1,0,1,10,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12115,14792,26398,-9,26397,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.83441,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12115,14792,26399,-9,26397,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.7173,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12116,14793,26400,-9,-9,-9,1,1,41,0,3,0,2,2,-9,1,2,0,0,0,0,0,-925.07477,0,3,2,2021,18,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.16,45.38,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,1357,478230.28,0,0,0,0,0,861.13147 +12117,14794,26401,-9,26405,26402,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1028.7549,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26402,26405,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.8889084,9.032526,0,6,2,64.837021,0,2,2,2021,8,0,35,39,1,0,0,20.017685,20.017685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.66,50.59,41.44,44.42,8.333333333333334,1,1,0,0,9,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26403,-9,26405,26402,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.8854,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26404,-9,26405,26402,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.58984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26405,26402,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,6.9765372,6.9381914,0,6,-2,160.21106,0,3,3,2021,11,1,27,20,1,1,0,5.8121181,5.8121181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.44,44.42,57.66,50.59,5,1,1,0,0,9,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12118,14795,26406,26407,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.0168571,7.700139,0,10,1,48.841846,0,2,2,2021,7,0,22,37,1,0,0,14.892921,14.892921,.05,.05,.05,0,0,0,0,0,0,0,0,4.3780074,0,57.16,56.15,63.24,42.39,8.333333333333334,1,1,0,0,11,12,4,1,604.5,1305777.8,943065.25,174256.16,0,0,0,2142.9763 +12118,14795,26407,26406,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.0680532,8.2273722,0,10,-1,18.341908,0,2,2,2021,6,0,18,21,1,0,0,20.30728,20.30728,.05,.05,0,0,0,0,0,2,0,0,0,2.5901427,0,63.24,42.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,4,1,604.5,1305777.8,943065.25,174256.16,0,0,0,2142.9763 +12119,14796,26408,26409,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.5642691,8.4843092,4.5015082,41,0,-71.115952,0,2,2,2021,11,1,28,12,1,1,0,23.488016,23.488016,0,0,0,0,0,0,0,14.5,1,1,0,4.9393559,4.3860574,53.37,52.37,55,53,6.666666666666667,1,1,0,0,8,9,4,1,375,1747938,611191.25,574124.94,0,0,0,964.74207 +12119,14796,26409,26408,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,6,0,31.914316,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0628285,0,55,53,53.37,52.37,8,1,1,0,0,0,9,4,1,375,1747938,611191.25,574124.94,0,0,0,964.74207 +12119,14797,26410,-9,26408,26409,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1064.3453,-9,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4577453,0,48,57,-9,-9,7,1,1,0,0,0,9,1,1,1687,26290.045,0,0,0,0,0,-112.20798 +12120,14798,26411,-9,26413,26412,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-878.19965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26412,26413,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,8.7506113,8.8456306,0,12,7,138.52538,0,2,2,2021,7,0,45,47,1,0,0,17.593279,17.593279,.05,.05,0,0,0,0,0,0,1,1,0,6.5895853,0,57.33,53.46,46.16,53.09,8.333333333333334,3,4,0,0,13,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26413,26412,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.4288111,8.2881975,0,12,-7,-16.309277,0,2,2,2021,23,11,37,37,1,11,0,18.224541,18.224541,.05,.05,0,0,0,0,0,0,1,1,0,.51199293,0,46.16,53.09,57.33,53.46,6.666666666666667,1,1,0,0,14,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26414,-9,26413,26412,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.32855,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14799,26415,-9,26413,26412,1,0,21,0,2,0,2,2,0,0,2,0,0,0,0,0,-1101.4279,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0126696,0,45.51,36.1,-9,-9,5,4,2,0,1,3,5,1,1,1241,26999.713,0,0,0,0,0,1364.54 +12121,14800,26416,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.0046039,6.1474676,0,0,0,-1084.1969,0,3,3,2021,15,4,15,0,1,4,0,3.3676925,3.3676925,0,0,0,0,0,0,0,0,0,0,0,0,0,32.35,55.36,-9,-9,3.333333333333333,3,4,0,0,7,8,2,0,448,-110872.25,30053.844,0,0,0,1816.1572,156.42897 +12122,14801,26417,26418,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.7987852,8.9589739,0,1,-7,42.603661,-9,2,2,2021,6,2,38,0,1,2,0,22.439177,22.439177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.77,60.16,8.333333333333334,1,1,0,0,6,4,5,1,544,291620.69,173283.59,376889.94,265437.97,0,0,5688.5859 +12122,14801,26418,26417,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,9.0566416,9.0107288,0,1,7,148.63646,-9,-9,-9,2021,7,2,35,0,1,2,0,24.228851,24.228851,.05,.05,0,0,0,0,0,0,0,0,0,4.786274,0,48.77,60.16,45.91,59.89,8.333333333333334,1,1,0,0,10,4,5,1,544,291620.69,173283.59,376889.94,265437.97,0,0,5688.5859 +12123,14802,26419,-9,-9,-9,1,0,27,0,0,0,3,3,-9,0,5,8.2378712,8.3458996,0,0,0,-880.67401,-9,2,-9,2021,29,11,50,0,1,11,0,8.8046722,8.8046722,.05,.05,0,0,0,0,0,0,0,0,0,1.8181841,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,324,-173522.95,64037.938,44764.953,100903.38,0,0,2249.4097 +12124,14803,26420,26421,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.5630207,8.9340515,0,3,2,35.74976,0,-9,-9,2021,8,0,49,44,1,0,0,13.681219,13.681219,.05,.05,0,0,0,0,0,0,1,1,0,5.9287634,0,49.58,55.59,33.07,41.95,5,1,1,0,0,7,6,4,0,722.5,1361094.9,948154.63,240148.45,0,0,0,3244.7935 +12124,14803,26421,26420,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,3,-2,-34.801807,0,3,3,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,49.58,55.59,3.333333333333333,1,1,1,0,3,6,4,0,722.5,1361094.9,948154.63,240148.45,0,0,0,3244.7935 +12125,14804,26422,26426,-9,-9,1,1,34,0,3,0,1,1,-9,0,4,9.1079769,9.0037489,0,7,1,68.30291,0,1,1,2021,17,5,48,57,1,5,0,24.484039,24.484039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,50.15,39.87,58.61,8.333333333333334,1,1,0,0,6,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26423,-9,26426,26422,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.7129,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26424,-9,26426,26422,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.4215,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26425,-9,26426,26422,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.81525,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26426,26422,-9,-9,1,0,33,0,3,0,1,1,-9,1,4,0,0,0,14,-1,8.9026117,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,39.87,58.61,52.6,50.15,8.333333333333334,1,1,0,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12126,14805,26427,26428,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.2429266,6.9120059,61,-6,-8.0504675,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.1146994,7.0879798,47.928711,0,1,1,0,0,7.1079917,52.8,35.38,52,54.51,5,1,1,0,0,0,4,3,1,208.5,673816.63,377101.56,132242.38,0,0,0,3905.1138 +12126,14805,26428,26427,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7293248,7.6696491,61,6,-28.829447,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1247516,7.7761326,52,54.51,52.8,35.38,5,1,1,0,0,0,4,3,1,208.5,673816.63,377101.56,132242.38,0,0,0,3905.1138 +12127,14806,26429,26430,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,30,-2,19.514502,0,-9,-9,2021,12,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.47,66.09,57.16,56.15,10,1,1,0,0,14,9,4,1,685.5,422921.97,99843.43,271770.63,0,825.5921,2218.1196,2421.6797 +12127,14806,26430,26429,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3898239,8.8576889,7.2256894,30,2,179.32498,0,2,3,2021,4,0,39,37,1,0,0,10.245231,10.245231,.05,.05,0,0,0,0,0,2,1,1,0,0,7.7238603,57.16,56.15,38.47,66.09,8.333333333333334,1,1,0,0,11,9,4,1,685.5,422921.97,99843.43,271770.63,0,825.5921,2218.1196,2421.6797 +12128,14807,26431,26432,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7132392,7.4652538,0,12,0,7.6730952,0,2,3,2021,24,12,30,30,1,12,0,8.1264076,8.1264076,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,52.4,52.91,6.666666666666667,1,1,0,0,11,6,5,1,1204,1747525.8,1506248.9,267732.16,0,618.57745,0,2524.7788 +12128,14807,26432,26431,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4755239,8.155201,0,12,0,119.8298,0,2,3,2021,10,1,41,37,1,1,0,13.77374,13.77374,0,0,.05,0,0,0,0,2,0,0,0,2.7161872,0,52.4,52.91,30.94,61.65,8.333333333333334,1,1,0,0,14,6,5,1,1204,1747525.8,1506248.9,267732.16,0,618.57745,0,2524.7788 +12129,14808,26433,26434,-9,-9,1,1,33,1,2,0,2,2,-9,0,2,8.49405,8.1838274,0,8,-3,48.794682,0,2,2,2021,24,11,40,44,1,11,0,10.376989,10.376989,.05,.05,0,0,0,0,0,0,1,1,0,7.4957867,0,46.61,43.7,48.81,59.91,3.333333333333333,1,1,0,1,5,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26434,26433,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,5.5783048,5.7343683,8,3,-62.981472,0,2,3,2021,18,7,0,19,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9398837,0,48.81,59.91,46.61,43.7,6.666666666666667,1,1,0,1,8,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26435,-9,26434,26433,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.40466,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26436,-9,26434,26433,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-890.76013,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12130,14809,26437,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.1825838,8.1599207,0,0,0,-1023.2241,0,3,3,2021,12,0,42,42,1,0,0,8.0358009,8.0358009,0,0,0,0,0,0,0,7,0,0,0,0,0,34.19,45.24,-9,-9,3.333333333333333,1,1,0,0,13,12,4,0,250,227779.42,41763.887,316843.81,145164.13,0,8811.5635,1442.8193 +12131,14810,26438,26439,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,8.5599041,8.5898113,6.1558886,6,5,118.32588,0,3,3,2021,6,0,32,32,1,0,0,14.816666,14.816666,0,0,0,0,0,0,0,0,1,1,0,5.1738167,6.1692767,57.16,56.15,44.25,56.64,10,1,1,0,0,7,1,4,1,1082,1368394.8,720836.75,325938.31,445.76465,0,0,2837.4438 +12131,14810,26439,26438,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,6,-5,50.746395,0,2,2,2021,11,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.25,56.64,57.16,56.15,8.333333333333334,1,1,0,0,7,1,4,1,1082,1368394.8,720836.75,325938.31,445.76465,0,0,2837.4438 +12131,14811,26440,-9,26439,26438,1,1,29,0,0,0,1,1,-9,0,5,6.849319,6.6064525,0,0,0,-991.98798,0,2,2,2021,3,0,35,50,1,0,0,2.5338762,2.5338762,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,1,2,1,269,-110856.75,0,0,0,0,0,702.12604 +12131,14812,26441,-9,26439,26438,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1054.4612,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,52.68,-9,-9,1.666666666666667,1,1,0,0,0,1,1,1,766,127140.46,0,0,0,0,0,0 +12132,14813,26442,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-934.94647,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.79,38.66,-9,-9,6.666666666666667,1,1,0,1,0,2,1,1,371,26063.828,0,0,0,0,0,1354.3577 +12133,14814,26443,26446,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,9.9109716,9.5353251,0,6,6,28.281715,0,2,1,2021,16,4,50,54,1,4,0,40.956882,40.956882,.05,.05,0,0,0,0,0,0,1,1,0,5.6568327,0,32.11,60.74,48.01,38.86,6.666666666666667,1,1,0,0,7,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26444,-9,26446,26443,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.52795,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26445,-9,26446,26443,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.955,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26446,26443,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,0,0,0,6,-6,41.472034,-9,-9,-9,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.01,38.86,32.11,60.74,8.333333333333334,1,1,0,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12134,14815,26447,-9,-9,-9,1,1,24,1,1,0,2,2,-9,0,2,0,5.7636786,5.5389757,0,0,-1100.0586,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4890995,0,50.5,40.48,-9,-9,6.666666666666667,1,1,1,1,5,9,2,1,654,-84488.164,0,0,0,0,0,111.9742 +12134,14816,26448,-9,26449,26450,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.9537,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12134,14816,26449,26450,-9,-9,1,0,21,1,1,0,2,2,-9,1,3,7.4992337,7.2352085,0,1,-1,96.009743,-9,-9,-9,2021,18,4,16,0,1,4,0,12.115884,12.115884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.91,27.97,49,58,8.333333333333334,1,1,0,0,0,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12134,14816,26450,26449,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,8.0660582,8.2234383,0,1,1,-47.318398,0,2,2,2021,10,0,30,0,1,1,0,12.573515,12.573515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,56.91,27.97,7,1,1,0,0,1,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12135,14817,26451,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,5.7525182,5.6370826,0,0,-989.04547,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6352425,51,48,-9,-9,7,1,1,0,0,4,13,2,1,275,409821.25,10611.15,215006.98,0,0,0,1128.9351 +12136,14818,26452,26454,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5961962,8.4402504,0,13,2,-148.43048,0,2,2,2021,8,0,10,50,1,0,0,54.913109,54.913109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.99,48.84,54.79,55.86,8.333333333333334,2,3,0,1,10,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12136,14818,26453,-9,26454,26452,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.15796,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12136,14818,26454,26452,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,13,-2,-51.091503,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.99,48.84,8.333333333333334,2,3,0,1,2,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12137,14819,26455,-9,26458,26457,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.49463,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26456,-9,26458,26457,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9474,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26457,26458,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.5390415,9.626235,0,15,11,-112.95303,-9,-9,-9,2021,12,1,58,0,1,1,0,31.514381,31.514381,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,48.7,56.22,6.666666666666667,4,2,0,0,10,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26458,26457,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.9024343,7.9406514,0,15,-11,51.711475,0,2,2,2021,11,2,16,20,1,2,0,23.8039,23.8039,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,51.41,56.15,6.666666666666667,2,3,0,0,9,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12138,14820,26459,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.4879,0,-9,-9,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,14.469462,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,373,42987.707,0,0,0,0,0,1481.5398 +12139,14821,26460,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.6938148,7.9988647,0,0,-1064.1851,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.95487154,0,1,1,0,4.5180659,7.9231806,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1389,625146.69,232204.28,177789.03,0,0,1982.0621,1463.5023 +12140,14822,26461,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1099472,7.9191041,6.0916944,0,0,-968.55078,-9,2,2,2021,17,5,40,0,1,5,0,10.737947,10.737947,.05,.05,0,0,0,0,0,0,1,1,0,6.4816384,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1695,75273.805,140961.55,0,0,1889.4969,0,1736.1132 +12140,14823,26462,-9,26461,-9,1,0,23,0,0,0,1,1,-9,0,5,7.8396711,7.915134,0,0,0,-944.68542,-9,2,-9,2021,9,0,38,0,1,0,1,8.0784864,8.0784864,0,0,0,0,0,0,0,0,1,1,0,3.0290432,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,49,-61863.129,0,0,0,0,0,1664.1708 +12140,14824,26463,-9,26461,-9,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.92096,-9,2,-9,2021,7,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,50.73,-9,-9,10,1,1,1,0,0,7,1,1,735,129680.03,0,0,0,0,0,0 +12141,14825,26464,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,3,7.1587901,7.6414695,0,0,0,-1074.6558,0,2,-9,2021,19,7,41,41,1,7,1,4.1452985,4.1452985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.7,53.66,-9,-9,6.666666666666667,4,2,0,0,6,6,3,0,518,-105173.23,120576.95,0,0,0,-747.48218,7.378449 +12142,14826,26465,-9,-9,26466,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.97522,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,435,-156582.75,-1070.8613,110325.28,116062.34,4550.6548,0,2503.6587 +12142,14826,26466,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.178031,8.4114189,0,0,0,-922.34399,0,3,3,2021,9,0,40,45,1,0,0,13.540158,13.540158,.05,.05,.05,0,0,0,0,0,1,1,0,2.6401145,0,51.23,49.24,-9,-9,6.666666666666667,1,1,0,0,13,4,4,1,435,-156582.75,-1070.8613,110325.28,116062.34,4550.6548,0,2503.6587 +12142,14827,26467,26468,-9,-9,1,1,18,0,1,0,2,2,-9,0,3,7.460886,7.2904387,0,2,-1,84.286644,-9,-9,-9,2021,8,0,44,0,1,0,0,4.3901143,4.3901143,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,39.33,60.15,6.666666666666667,1,1,0,0,3,4,3,1,1520.5,11842.037,0,0,0,0,4898.9976,1908.3732 +12142,14827,26468,26467,-9,26466,1,0,19,0,1,0,2,2,-9,0,3,7.8301048,7.7524443,0,2,1,-17.284931,0,-9,2,2021,12,3,55,5,1,3,0,5.5927892,5.5927892,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,60.15,54.37,54.8,8.333333333333334,1,1,0,0,3,4,3,1,1520.5,11842.037,0,0,0,0,4898.9976,1908.3732 +12143,14828,26469,26470,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.2421174,6.0798988,0,27,1,-24.181038,0,2,2,2021,6,0,9,0,1,0,0,6.3805342,6.3805342,0,0,0,0,0,0,0,0,0,0,0,2.0512793,0,58.48,33.96,51.49,57.57,8.333333333333334,1,1,0,0,8,6,3,1,1420.5,303379,113714.98,163967.03,13447.746,-979.77216,0,2257.1045 +12143,14828,26470,26469,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4776955,8.2574282,0,11,-1,-36.246029,0,3,3,2021,9,2,37,35,1,2,0,9.5358286,9.5358286,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,58.48,33.96,8.333333333333334,1,1,0,0,13,6,3,1,1420.5,303379,113714.98,163967.03,13447.746,-979.77216,0,2257.1045 +12143,14829,26471,-9,26469,26470,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.89117,-9,2,2,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,752,144368.16,0,0,0,0,0,0 +12144,14830,26472,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,2.205862,2.2617674,0,0,-1129.8358,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.164875,2.4831438,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,761,424211.44,0,391884,0,0,0,1413.5234 +12145,14831,26473,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9592385,5.6539288,0,0,-1121.5176,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1733453,5.8603702,50,47,-9,-9,7,1,1,0,0,0,7,2,0,530,62421.07,24007.379,0,0,0,0,965.55475 +12146,14832,26474,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.1616812,9.1521387,0,0,0,-886.02441,0,1,1,2021,13,2,40,80,1,2,0,29.296375,29.296375,.05,.05,0,0,0,0,0,0,0,0,0,.55580378,0,34.38,62.3,-9,-9,5,1,1,0,0,14,7,5,1,352,21273.814,63324.551,0,0,0,0,3338.667 +12146,14833,26475,-9,-9,26474,1,0,18,0,0,0,2,2,-9,0,4,6.903707,6.9192576,0,0,0,-963.62048,-9,-9,1,2021,7,1,12,0,1,1,1,10.182903,10.182903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,1,7,2,1,780,205657.42,-58938.648,0,0,0,0,413.96945 +12147,14834,26476,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,7.513649,7.5771027,0,0,-1001.582,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7127724,7.9064178,55.69,48.7,-9,-9,10,1,1,0,0,0,13,3,1,177,454081.28,156050.33,131088.63,0,0,0,1865.8763 +12148,14835,26477,-9,26478,-9,1,0,34,0,0,0,3,3,-9,0,4,8.3031826,8.5931196,0,0,0,-972.97375,0,3,-9,2021,7,2,40,40,1,2,0,13.50211,13.50211,.05,.05,0,0,0,0,0,2,1,1,0,5.6142068,0,42.31,47.25,-9,-9,10,3,4,0,0,7,8,5,0,2113,37834.059,-12476.141,0,0,0,0,1764.6927 +12148,14836,26478,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-998.12323,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.05,44.11,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,845,43344.621,0,0,0,0,0,881.90192 +12149,14837,26479,26480,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2564726,8.1383057,0,1,0,115.28679,-9,2,2,2021,9,0,24,0,1,0,0,18.457315,18.457315,.05,.05,0,0,0,0,0,0,1,1,0,9.1148281,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,1914.5,377423.41,281175.78,0,0,4905.7544,0,8825.583 +12149,14837,26480,26479,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,6.8665667,7.8303504,7.067462,1,0,-.75681978,-9,2,3,2021,8,0,24,0,1,0,0,4.7670164,4.7670164,.05,.05,0,0,0,0,0,0,1,1,0,7.3052421,7.1347666,57.16,56.15,59.46,46.99,1.666666666666667,1,1,0,0,8,11,4,1,1914.5,377423.41,281175.78,0,0,4905.7544,0,8825.583 +12150,14838,26481,26482,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.4286451,6.5424452,45,-1,-200.44524,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.158505,25.74,31.76,50,47,8.333333333333334,4,5,0,0,0,4,2,1,914,108911.56,86444.047,132715.19,0,0,0,1597.8459 +12150,14838,26482,26481,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,45,1,-83.04818,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,8.6767902,0,0,1,1,0,0,0,50,47,25.74,31.76,7,4,5,0,1,0,4,2,1,914,108911.56,86444.047,132715.19,0,0,0,1597.8459 +12151,14839,26483,26484,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9547806,8.7843256,0,7,-1,31.211445,0,3,2,2021,8,0,63,67,1,0,0,15.478348,15.478348,.05,.05,0,0,0,0,0,0,0,0,0,4.4966817,0,58.15,52.91,49.04,55.86,8.333333333333334,1,1,0,0,11,9,5,1,355.5,3835837.5,2407544.3,929611.5,0,0,0,6570.0752 +12151,14839,26484,26483,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.035058,9.2538586,0,7,1,-36.525925,0,-9,-9,2021,7,0,48,47,1,0,0,24.073383,24.073383,.05,.05,0,0,0,0,0,0,0,0,0,7.440505,0,49.04,55.86,58.15,52.91,10,1,1,0,0,11,9,5,1,355.5,3835837.5,2407544.3,929611.5,0,0,0,6570.0752 +12152,14840,26485,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,6.3639941,7.3397746,7.3329625,0,0,-935.59875,0,2,2,2021,9,0,20,40,1,0,0,4.1155286,4.1155286,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0295591,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,10,12,3,1,523,350659.31,352877.97,93392.148,0,0,0,1544.7048 +12153,14841,26486,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.0105047,8.3801594,0,0,0,-979.73285,0,3,2,2021,10,1,40,40,1,1,0,22.268986,22.268986,.05,.05,0,0,0,0,0,0,0,0,0,.70387965,0,51.83,57.2,-9,-9,6.666666666666667,4,2,0,0,11,6,4,1,195,109503.8,214580.39,237249.69,106009.63,0,778.09039,3374.1165 +12154,14842,26487,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4097853,8.5275307,0,11,6,-33.13102,0,3,3,2021,14,5,40,37,1,5,0,10.665256,10.665256,0,0,0,0,0,0,0,0,0,0,0,0,0,40.68,50.42,34,59.94,6.666666666666667,1,1,0,0,12,12,5,1,1083,429214.5,5792.7266,214384.47,0,0,0,1935.777 +12154,14843,26488,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.6612988,8.6421709,0,11,-6,71.923935,0,3,3,2021,23,11,43,43,1,11,0,19.690826,19.690826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,59.94,40.68,50.42,5,1,1,0,0,12,12,5,1,155,64128.645,68470.938,170653.2,49970.336,0,0,3105.3879 +12155,14844,26489,-9,26490,26492,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.6249,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26490,26492,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.3014431,8.3872347,0,10,-1,-64.639015,0,2,2,2021,7,0,22,22,1,0,0,17.382753,17.382753,.05,.05,0,0,0,0,0,0,1,1,0,7.053329,0,57.73,54.53,54.96,53.17,8.333333333333334,1,1,0,0,10,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26491,-9,26490,26492,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26492,26490,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.5814972,8.3421164,0,10,1,69.785446,0,2,3,2021,5,0,38,37,1,0,0,12.467704,12.467704,.05,.05,0,0,0,0,0,0,1,1,0,5.0393815,0,54.96,53.17,57.73,54.53,8.333333333333334,2,3,0,0,10,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12156,14845,26493,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-948.95398,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,25.05,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,140,40244.742,0,207541.14,0,0,0,469.22589 +12157,14846,26494,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.4077868,6.9880075,0,0,0,-1052.7362,0,-9,-9,2021,3,0,18,0,1,0,0,11.14416,11.14416,.05,.05,0,0,0,0,0,0,0,0,0,.96414953,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,1,10,3,0,596,-132254.13,104095.24,0,0,-440.8887,0,1218.1906 +12158,14847,26495,26496,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,4.7456551,4.6288333,24,1,-48.225994,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3289857,4.9848385,60.44,18.44,57.48,31.86,8.333333333333334,1,1,0,0,0,4,2,1,1255.5,352943.91,71681.906,204767.47,0,0,0,3865.9004 +12158,14847,26496,26495,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.694118,5.7637687,23,-1,165.05447,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8922389,5.8123231,57.48,31.86,60.44,18.44,8.333333333333334,1,1,0,0,0,4,2,1,1255.5,352943.91,71681.906,204767.47,0,0,0,3865.9004 +12159,14848,26497,26498,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.2822709,8.245718,7.3657246,11,-2,-27.065321,0,2,2,2021,7,0,25,25,1,0,0,6.4640861,6.4640861,0,0,0,0,0,0,0,0,1,1,0,4.7649336,7.1533132,61.43,43.34,61.04,39.41,6.666666666666667,1,1,0,0,12,10,4,1,374.5,702659.25,290631.44,107891.09,0,0,0,2739.8586 +12159,14848,26498,26497,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0493116,7.1299376,11,2,-23.361198,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.697669,7.5408397,61.04,39.41,61.43,43.34,6.666666666666667,1,1,0,0,10,10,4,1,374.5,702659.25,290631.44,107891.09,0,0,0,2739.8586 +12160,14849,26499,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.9380584,7.772131,0,0,0,-1126.2209,0,3,2,2021,10,0,28,28,1,0,0,12.51381,12.51381,0,0,0,0,0,0,0,0,0,0,0,.81536579,0,38.82,56.79,-9,-9,3.333333333333333,3,4,0,0,11,8,4,0,466,0,0,0,0,0,0,1551.2062 +12161,14850,26500,26501,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,7.9336967,7.7284856,34,-1,-41.560558,0,2,1,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.2201953,8.2665224,56.1,49.93,55.19,54.26,8.333333333333334,1,1,0,0,14,4,5,1,295,448182,79047.93,329116.09,35205.277,0,0,3448.1206 +12161,14850,26501,26500,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.6345501,8.7704573,0,34,1,-15.009196,0,1,2,2021,9,0,41,40,1,0,0,20.180473,20.180473,.05,.05,0,0,0,0,0,0,0,0,0,2.5973444,0,55.19,54.26,56.1,49.93,8.333333333333334,1,1,0,0,15,4,5,1,295,448182,79047.93,329116.09,35205.277,0,0,3448.1206 +12162,14851,26502,26503,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,7,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.76843393,0,57.57,49.69,54.36,12.12,8.333333333333334,1,1,0,0,0,4,1,1,534.5,324914.28,-22531.543,230180.47,0,3542.459,-154.39757,1676.4043 +12162,14851,26503,26502,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,7,8,0,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,39.489891,0,0,1,1,0,0,0,54.36,12.12,57.57,49.69,3.333333333333333,1,1,0,0,0,4,1,1,534.5,324914.28,-22531.543,230180.47,0,3542.459,-154.39757,1676.4043 +12163,14852,26504,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.5091562,8.4823551,6.3372655,0,0,-944.64783,0,2,2,2021,13,2,35,35,1,2,0,15.369884,15.369884,0,0,0,0,0,0,0,0,0,0,0,0,6.4589014,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,14,4,5,1,606,839137.75,498773.31,239430.81,0,0,0,1801.631 +12164,14853,26505,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.2820749,5.3227506,0,0,-909.19373,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.398375,60.24,50.62,-9,-9,10,1,1,0,0,0,2,2,1,257,105438.3,143859.88,133732.52,0,0,0,574.06989 +12165,14854,26506,26507,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6737361,6.4470572,42,-7,-41.681705,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3693795,57.06,57.76,66.27,21.07,10,1,1,0,0,0,7,2,1,1163.5,942883.44,153136.88,638029.5,0,2575.0115,0,2105.2241 +12165,14854,26507,26506,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.0393109,6.0180612,42,7,33.695122,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.7834163,0,0,1,1,0,4.6075711,6.1229234,66.27,21.07,57.06,57.76,10,1,1,0,0,0,7,2,1,1163.5,942883.44,153136.88,638029.5,0,2575.0115,0,2105.2241 +12165,14855,26508,-9,26506,26507,1,1,35,0,0,0,2,2,-9,0,4,8.3850241,8.2850847,0,0,0,-1073.8126,-9,2,2,2021,10,0,55,0,1,1,0,10.834939,10.834939,.05,.05,0,0,0,0,0,0,1,1,0,5.9914327,0,50,57,-9,-9,7,1,1,0,0,1,7,4,1,1133,-103425.98,-25105.186,0,0,5001.3232,0,2272.7732 +12166,14856,26509,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.2836523,8.4938717,0,0,0,-1027.9409,0,3,3,2021,7,0,45,45,1,0,0,8.2627287,8.2627287,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,4,4,0,1274,429782.25,314607.47,51023.895,40091.105,9614.2041,0,848.63531 +12167,14857,26510,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1079.2202,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.68,35.54,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,2869,-46305.285,0,0,0,0,0,1642.2754 +12168,14858,26511,-9,26513,26512,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.64624,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12168,14858,26512,26513,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.2665014,9.389389,0,1,4,65.302689,-9,-9,-9,2021,27,12,41,0,1,12,0,32.656631,32.656631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.69,64.48,34.79,47.81,3.333333333333333,2,3,0,0,4,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12168,14858,26513,26512,-9,-9,1,0,30,1,1,0,1,1,-9,0,2,8.0204248,7.7060356,0,1,-4,16.60293,-9,-9,-9,2021,13,2,32,0,1,2,0,11.374815,11.374815,.05,.05,0,0,0,0,0,0,0,0,0,7.6173897,0,34.79,47.81,16.69,64.48,5,2,3,0,0,2,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12169,14859,26514,26515,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,55,3,0,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3163493,0,59.21,43.05,53.04,50.37,8.333333333333334,1,1,0,0,13,9,1,0,3014.5,294233.69,0,271427.13,0,0,0,1044.2552 +12169,14859,26515,26514,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4552877,0,53.04,50.37,59.21,43.05,10,1,1,0,0,0,9,1,0,3014.5,294233.69,0,271427.13,0,0,0,1044.2552 +12170,14860,26516,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.8014069,8.5993614,0,0,0,-839.40857,0,2,2,2021,19,7,40,40,1,7,0,17.006664,17.006664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,21.36,61.89,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,5721,-92975.094,66475.297,0,0,12575.679,11972.271,1861.3503 +12171,14861,26517,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.3236156,7.3184199,0,0,-919.84576,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8338428,7.4183807,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1497,522566.22,219177.52,182044.84,0,0,0,1749.8336 +12172,14862,26518,-9,-9,-9,1,0,43,0,2,0,3,3,-9,1,4,0,0,0,0,0,-915.22546,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,13,2,1,187,161639.83,0,129514.38,99279.781,0,0,543.16486 +12173,14863,26519,26520,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,52,-3,-65.879402,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,3.4458568,0,28.946157,7,1,1,0,3.316524,0,57.16,56.15,57.06,57.76,10,1,1,0,0,3,2,2,1,1253,992404.56,386356.88,333024.22,0,0,0,1116.4242 +12173,14863,26520,26519,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.1488714,6.8388047,10,3,53.673485,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2263737,6.8533616,57.06,57.76,57.16,56.15,10,1,1,0,0,0,2,2,1,1253,992404.56,386356.88,333024.22,0,0,0,1116.4242 +12174,14864,26521,26522,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,6.9955831,7.200644,0,1,-2,-99.937416,-9,-9,-9,2021,11,0,18,0,1,0,0,7.5543575,7.5543575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,27.02,40.76,41.18,8.333333333333334,1,1,0,0,1,5,4,1,917,566214.69,173019.41,253878.09,4919.9268,0,1316.988,1887.5637 +12174,14864,26522,26521,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.9684806,7.8707781,0,1,2,-132.54802,0,3,2,2021,16,4,45,37,1,4,0,8.8948841,8.8948841,0,0,0,0,0,0,0,0,1,1,0,0,0,40.76,41.18,53.78,27.02,6.666666666666667,1,1,0,1,8,5,4,1,917,566214.69,173019.41,253878.09,4919.9268,0,1316.988,1887.5637 +12175,14865,26523,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.99072,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.83,47.27,-9,-9,10,1,1,0,0,0,9,1,1,1021,211021.94,0,0,0,0,0,428.42853 +12176,14866,26524,26525,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.8013597,7.9644718,7.1218762,8,-5,-33.797634,0,3,3,2021,6,0,35,35,1,0,0,8.0448933,8.0448933,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1876788,62.42,45.64,52.38,50.07,8.333333333333334,1,1,0,0,10,10,3,1,862,669542.5,441150.19,154667.72,0,0,0,4122.1797 +12176,14866,26525,26524,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,40,5,125.32276,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3162603,0,52.38,50.07,62.42,45.64,8.333333333333334,1,1,0,0,0,10,3,1,862,669542.5,441150.19,154667.72,0,0,0,4122.1797 +12177,14867,26526,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.3573,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,10.055724,0,0,1,1,0,0,0,48.68,25.96,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,255,-729.75763,0,0,0,0,0,1174.4728 +12178,14868,26527,26528,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.4152374,7.5142889,0,11,0,63.836475,0,-9,3,2021,6,0,25,25,1,0,0,7.7218208,7.7218208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,0,557,842379.19,99355.07,291865.5,91279.172,17812.672,0,3922.2568 +12178,14868,26528,26527,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,9.1793728,8.9335709,0,11,0,19.799406,0,3,2,2021,11,0,32,40,1,0,0,22.486465,22.486465,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,59.43,58.05,6.666666666666667,1,1,0,0,12,10,5,0,557,842379.19,99355.07,291865.5,91279.172,17812.672,0,3922.2568 +12178,14869,26529,-9,26527,26528,1,0,24,0,0,0,2,2,-9,0,4,7.8693514,7.793469,0,0,0,-973.40948,0,2,3,2021,18,6,30,30,1,6,1,10.328003,10.328003,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.14,54.22,-9,-9,1.666666666666667,1,1,0,0,5,10,4,0,392,144925.63,79241.914,0,0,0,0,789.92444 +12178,14870,26530,-9,26527,26528,1,1,22,0,0,0,2,2,-9,0,4,8.2083855,8.5161467,0,0,0,-952.7677,0,2,3,2021,4,0,70,0,1,0,1,7.2375007,7.2375007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,6,10,4,0,389,189189.66,-17320.541,0,0,2922.9675,81.550644,2323.0693 +12179,14871,26531,26532,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4290872,7.7340965,0,6,0,119.021,0,-9,-9,2021,13,2,40,37,1,2,0,6.4355078,6.4355078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.05,51.54,20.76,53,5,1,1,0,0,4,12,3,1,1119.5,390789.81,19124.85,299730.13,0,17597.262,1794.7314,1352.594 +12179,14871,26532,26531,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,0,0,0,6,0,-80.594482,0,2,3,2021,18,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,27,0,0,0,5.6170173,0,20.76,53,35.05,51.54,3.333333333333333,1,1,1,0,2,12,3,1,1119.5,390789.81,19124.85,299730.13,0,17597.262,1794.7314,1352.594 +12180,14872,26533,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.8374939,7.9842281,5.9644971,0,0,-1031.1216,0,3,3,2021,32,11,50,-9,1,11,0,5.6792693,5.6792693,0,0,0,0,0,0,0,0,0,0,0,7.5922728,6.2135272,12.36,63.85,-9,-9,10,1,1,0,0,9,8,4,1,812,1307955.8,659679.94,436667.03,33241.277,0,0,1521.0647 +12181,14873,26534,-9,26536,26535,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3052,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26535,26536,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1051483,8.9595556,0,6,0,134.60127,0,2,2,2021,9,0,85,52,1,1,0,10.934521,10.934521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.96,53.17,8.333333333333334,1,1,0,0,8,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26536,26535,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.7523823,7.870244,0,6,0,74.01474,0,2,2,2021,6,0,35,43,1,0,0,7.8117428,7.8117428,.05,.05,0,0,0,0,0,0,0,0,0,2.3808174,0,54.96,53.17,62.49,55.09,8.333333333333334,1,1,0,0,8,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26537,-9,26536,26535,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4623,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12182,14874,26538,-9,26540,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-855.05243,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,5,-9,0,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12182,14874,26539,-9,26540,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.3763,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12182,14874,26540,-9,-9,-9,1,0,51,0,2,0,1,1,-9,1,3,0,0,0,0,0,-1022.7703,-9,1,1,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.57,33.09,-9,-9,5,4,5,0,1,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12183,14875,26541,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,7.5154757,7.3708382,0,0,0,-1106.1062,0,-9,-9,2021,8,0,36,37,1,0,0,6.4544792,6.4544792,0,0,0,0,0,0,0,0,1,1,0,0,0,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,1277,1625.9675,0,0,0,1766.8479,0,1585.3596 +12184,14876,26542,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.8329387,6.8801031,0,0,0,-1081.2841,0,-9,-9,2021,11,0,12,12,1,0,0,7.7585444,7.7585444,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,48.36,-9,-9,5,1,1,0,0,14,2,2,0,286,277727.13,12476.952,69867.383,0,0,0,749.71497 +12184,14877,26543,-9,26542,-9,1,1,33,0,0,0,1,1,-9,1,3,0,0,0,0,0,-871.6004,0,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,1,1,1,0,0,2,1,0,2102,85844.32,0,0,0,0,0,1483.5664 +12185,14878,26544,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,5.931942,5.4319849,0,0,-1011.5596,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.5296903,0,25.968292,0,1,1,0,0,5.4510136,51.81,28.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1003,189198.73,-107225.41,89895.891,0,0,0,348.24222 +12186,14879,26545,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.3876343,7.7224593,5.7693629,0,0,-987.87775,0,2,1,2021,11,2,10,10,1,2,0,17.810598,17.810598,0,0,0,0,0,0,0,0,0,0,0,5.2850876,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,9,3,1,1692,149288.69,0,178808.69,0,0,985.32306,1092.5769 +12187,14880,26546,-9,26547,26548,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.8459,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14880,26547,26548,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.3506346,7.2553849,0,24,8,-6.3951268,0,2,-9,2021,7,0,18,0,1,0,0,9.0342131,9.0342131,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51,56,8.333333333333334,1,1,0,0,9,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14880,26548,26547,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.1389008,9.1621666,0,11,-8,85.943466,-9,-9,-9,2021,10,0,40,0,1,1,0,26.39389,26.39389,.05,.05,0,0,0,0,0,0,1,1,0,7.0741968,0,51,56,54.79,55.86,7,1,1,0,0,1,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14881,26549,-9,26547,26548,1,0,18,0,1,0,3,3,-9,0,4,7.932085,7.9152126,0,0,0,-983.24719,-9,2,2,2021,12,0,40,0,1,2,1,7.4394565,7.4394565,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,9,3,0,356,-148293.72,0,0,0,-1256.6707,0,1012.4977 +12188,14882,26550,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.8355227,6.7149053,0,0,-1037.5369,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9639459,6.7033076,27.4,40.54,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,440,264921.63,77283.758,45808.82,0,0,0,524.31097 +12189,14883,26551,-9,-9,-9,1,0,19,0,0,0,3,3,1,0,4,6.806911,7.1575336,0,1,-11,3.8811069,-9,-9,-9,2021,11,1,19,0,1,1,0,5.8991375,5.8991375,0,0,0,0,0,0,0,0,0,0,0,0,0,53.03,44.7,48,57,6.666666666666667,1,1,0,0,1,10,2,0,784,60886.402,0,0,0,0,0,608.00958 +12190,14884,26552,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1101.8828,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,1,1,0,8,2,0,3440,271762.66,0,104337.95,0,0,0,121.76938 +12191,14885,26553,26554,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.3840265,8.5804853,0,30,7,-33.760895,0,2,3,2021,12,0,45,48,1,0,0,12.573649,12.573649,.05,.05,0,0,0,0,0,0,0,0,0,6.1842546,0,50.34,56.4,58.15,52.91,8.333333333333334,1,1,0,0,10,12,5,1,909.5,1690635.4,1179280.5,345315.63,0,0,0,5146.1709 +12191,14885,26554,26553,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.064106,9.1628218,0,30,-7,-113.19762,0,2,1,2021,11,0,42,46,1,0,0,26.263136,26.263136,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.15,52.91,50.34,56.4,8.333333333333334,1,1,0,0,8,12,5,1,909.5,1690635.4,1179280.5,345315.63,0,0,0,5146.1709 +12191,14886,26555,-9,26553,26554,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-965.31146,-9,2,1,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,1,0,6,12,1,1,957,0,0,0,0,0,0,0 +12192,14887,26556,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-943.11292,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,2,1,0,243,290548.78,0,0,0,0,0,947.28082 +12193,14888,26557,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.6557388,6.9741864,0,0,-1046.3567,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.568121,6.5231948,54,46,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,538,133315.81,190939.17,0,0,0,0,657.71832 +12194,14889,26558,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1048.1804,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,46.05,-9,-9,1.666666666666667,2,3,1,1,2,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12194,14889,26559,-9,26558,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.76788,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,2,3,-9,0,0,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12194,14889,26560,-9,26558,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.9618,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12195,14890,26561,26562,-9,-9,1,1,60,0,0,0,3,3,-9,1,4,0,5.1630659,4.9191079,44,3,103.4879,0,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6585789,54,53,15.47,33.84,8,1,1,0,0,0,10,2,0,281.5,305968.44,131113.83,167290.78,0,0,0,1168.7809 +12195,14890,26562,26561,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,44,-3,26.482029,0,-9,-9,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.47,33.84,54,53,0,1,1,0,0,0,10,2,0,281.5,305968.44,131113.83,167290.78,0,0,0,1168.7809 +12196,14891,26563,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6289535,7.9810591,0,0,0,-966.80798,0,3,3,2021,11,0,36,38,1,0,0,6.8174772,6.8174772,.05,.05,0,0,0,0,0,0,0,0,0,1.1732607,0,50.57,52.35,-9,-9,6.666666666666667,1,1,0,0,15,7,3,1,1011,343183.31,209745.52,207581.66,0,0,7871.9546,372.10825 +12197,14892,26564,26566,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.4649162,8.4711657,0,1,-2,12.955292,-9,-9,-9,2021,15,3,65,0,1,3,0,7.9000497,7.9000497,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.63,38.2,8.333333333333334,1,1,0,0,8,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12197,14892,26565,-9,26566,26564,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1123.0797,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12197,14892,26566,26564,-9,-9,1,0,32,0,1,0,2,2,-9,1,3,0,0,0,1,2,17.750135,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,60.63,38.2,57.33,53.46,6.666666666666667,1,1,0,0,0,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12198,14893,26567,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-960.83759,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.28,44.53,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,1046,-1089.3502,0,0,0,0,0,778.4826 +12199,14894,26568,26569,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.8222604,8.0194559,4.5218134,45,3,40.595562,0,2,3,2021,6,0,30,35,1,0,0,8.6178799,8.6178799,0,0,0,0,0,0,0,0,1,1,0,6.0315266,4.3305788,57.16,56.15,56.89,50.73,8.333333333333334,1,1,0,0,14,2,3,1,864,749666.19,446080.13,235076.48,0,676.99341,0,1963.0862 +12199,14894,26569,26568,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.3314223,5.0241728,45,-3,-86.778931,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.1970062,56.89,50.73,57.16,56.15,10,1,1,0,0,12,2,3,1,864,749666.19,446080.13,235076.48,0,676.99341,0,1963.0862 +12199,14895,26570,-9,26569,26568,1,1,38,0,0,0,2,2,-9,0,3,7.359817,7.2178802,0,0,0,-941.94995,0,1,2,2021,11,0,38,18,1,0,0,5.5102792,5.5102792,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,14,2,3,1,1370,104738.38,-27516.748,0,0,-616.11438,0,1648.5524 +12200,14896,26571,26572,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,6.7042742,6.6020555,50,-2,31.092962,-9,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3737478,6.48771,61.68,29.28,53,45,10,1,1,0,0,3,7,2,1,1380.5,294795.94,159908,0,0,0,0,6234.6113 +12200,14896,26572,26571,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.40766,6.7688799,50,2,-109.15794,-9,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7674303,53,45,61.68,29.28,8,1,1,0,0,0,7,2,1,1380.5,294795.94,159908,0,0,0,0,6234.6113 +12201,14897,26573,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,4.8346763,4.9254622,0,0,-941.4292,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,15.161716,0,0,1,1,0,0,4.4981375,67.26000000000001,25.66,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,75,789624.13,109353.24,505947.69,0,0,0,-240.50485 +12202,14898,26574,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-856.29742,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,182,8236.1836,0,0,0,0,0,1172.1276 +12203,14899,26575,26578,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.8147135,8.5577049,0,18,0,57.860279,0,2,2,2021,20,8,47,42,1,8,0,12.990341,12.990341,0,0,0,0,0,0,0,0,0,0,0,4.5725522,0,25.14,68.03,51.17,49.39,6.666666666666667,1,1,0,0,8,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26576,-9,26575,26578,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.89716,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26577,-9,26575,26578,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.0852,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26578,26575,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,9.4389,9.5211935,0,7,0,-150.6413,0,-9,-9,2021,8,1,45,42,1,1,0,25.086926,25.086926,.05,.05,0,0,0,0,0,0,0,0,0,4.6552896,0,51.17,49.39,25.14,68.03,8.333333333333334,1,1,0,0,4,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26579,-9,26575,26578,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.3217,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12204,14900,26580,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5525904,8.7757778,0,0,0,-963.40576,0,2,2,2021,9,1,41,40,1,1,0,11.956437,11.956437,.05,.05,0,0,0,0,0,0,0,0,0,.94750482,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1701,465486.44,151740.61,76182.859,0,0,2475.7649,2370.2407 +12204,14901,26581,-9,26580,-9,1,1,24,0,0,0,2,2,-9,0,2,7.1312075,7.00524,0,0,0,-1030.0323,0,2,-9,2021,12,0,20,18,1,0,1,6.9483027,6.9483027,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,49.91,-9,-9,3.333333333333333,1,1,0,1,5,12,2,1,139,102799.45,0,0,0,0,0,1246.9692 +12205,14902,26582,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.7775488,6.5818481,0,0,0,-1044.3335,0,2,2,2021,6,0,12,12,1,0,0,6.7437677,6.7437677,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,9,2,0,965,215930.36,-111712.77,220267.92,95640.016,0,0,459.17752 +12206,14903,26583,26584,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.709342,8.7709112,0,32,-6,-97.04673,0,2,2,2021,10,1,46,45,1,1,0,20.569874,20.569874,0,0,0,0,0,0,0,2,0,0,0,7.0791926,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,10,7,5,1,445,81711.633,84199.023,0,0,5398.873,0,6633.1484 +12206,14903,26584,26583,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,6.9611316,7.394505,5.0487876,33,6,-28.21347,0,2,2,2021,10,0,20,20,1,0,0,6.8073878,6.8073878,.05,.05,0,0,0,0,0,0,0,0,0,8.9528627,4.959269,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,445,81711.633,84199.023,0,0,5398.873,0,6633.1484 +12207,14904,26585,-9,26586,26588,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.20245,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26586,26588,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,0,0,0,1,-12,-42.553474,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,43.34,58.15,52.91,8.333333333333334,4,1,0,0,3,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26587,-9,26586,26588,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.96362,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26588,26586,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9852877,8.8332386,0,1,12,-33.23243,-9,3,3,2021,10,0,44,0,1,0,0,15.906596,15.906596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,61.43,43.34,1.666666666666667,1,1,0,0,8,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12208,14905,26589,-9,26591,26592,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1080.9425,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26590,-9,26591,26592,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1062.1904,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26591,26592,-9,-9,1,0,43,0,4,0,1,1,-9,0,4,8.7924156,8.6506147,0,17,-5,74.429497,0,3,1,2021,6,0,30,30,1,0,0,24.510193,24.510193,0,0,0,0,0,0,0,0,1,1,0,.73619342,0,59.53,56.44,44.19,58.01,8.333333333333334,1,1,0,0,12,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26592,26591,-9,-9,1,1,48,0,4,0,3,3,-9,0,3,8.6746016,8.7647963,0,17,5,9.9968176,0,2,3,2021,10,0,40,35,1,0,0,18.102636,18.102636,0,0,0,0,0,0,0,0,1,1,0,.34909961,0,44.19,58.01,59.53,56.44,8.333333333333334,1,1,0,0,14,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12209,14906,26593,26594,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.3577085,7.1213655,0,25,-3,-14.73347,0,2,1,2021,7,1,40,38,1,1,0,4.3421774,4.3421774,.05,.05,0,0,0,0,0,2,0,0,0,3.4370561,0,68.36,31.88,48.46,42.34,10,1,1,0,0,11,6,4,1,326,246791.66,106613.2,135317.48,41261.816,2610.9807,4095.5679,1803.7559 +12209,14906,26594,26593,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3887615,8.2524986,0,25,3,-23.34194,0,2,2,2021,10,1,41,37,1,1,0,11.457318,11.457318,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.46,42.34,68.36,31.88,10,1,1,0,0,11,6,4,1,326,246791.66,106613.2,135317.48,41261.816,2610.9807,4095.5679,1803.7559 +12210,14907,26595,26596,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.313674,8.3520384,0,2,1,-91.365524,0,2,2,2021,16,4,45,42,1,4,0,9.2327929,9.2327929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,47.37,55.41,10,1,1,0,0,8,4,5,1,2957,186643.39,58452.422,292779.59,139676.66,0,-438.03024,2984.9131 +12210,14907,26596,26595,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5591154,8.0939875,0,2,-1,53.928646,-9,-9,-9,2021,11,0,37,0,1,0,0,12.561725,12.561725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,40.96,61.14,8.333333333333334,1,1,0,0,1,4,5,1,2957,186643.39,58452.422,292779.59,139676.66,0,-438.03024,2984.9131 +12211,14908,26597,-9,26599,26598,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.43079,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26598,26599,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.8393574,9.1070881,0,17,-3,108.1194,0,-9,-9,2021,11,1,55,60,1,1,0,14.885215,14.885215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.91,46.31,48.87,58.55,3.333333333333333,1,1,0,0,12,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26599,26598,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,17,3,13.943132,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.91,46.31,3.333333333333333,3,4,0,1,6,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26600,-9,26599,26598,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.60266,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12212,14909,26601,26602,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.3033519,7.2568455,10,3,47.883495,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.074717,7.4324174,58.3,52.91,56.19,41.56,8.333333333333334,1,1,0,0,0,11,4,1,1365.5,984269.19,477346.5,355738,0,0,0,3512.8545 +12212,14909,26602,26601,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2612886,8.024128,10,-3,41.676743,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.365947,7.8475184,56.19,41.56,58.3,52.91,10,1,1,0,0,0,11,4,1,1365.5,984269.19,477346.5,355738,0,0,0,3512.8545 +12213,14910,26603,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.9013696,8.1512451,0,0,-988.78888,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0489526,7.7666035,35.58,35.21,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,37,455180.5,152502.84,205272.77,0,0,0,2487.679 +12214,14911,26604,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,8.143012,8.0935955,0,3,1,100.60062,0,2,1,2021,14,2,23,20,1,2,0,19.863005,19.863005,.05,.05,0,0,0,0,0,0,0,0,0,1.0702207,0,20.71,60.09,50,58,1.666666666666667,4,2,0,0,9,12,3,1,285,-147399.63,26588.271,0,0,630.61719,0,1309.9521 +12215,14912,26605,-9,26606,26607,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.3015,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14912,26606,26607,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,0,0,0,30,-10,-46.666744,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,38.26,54.03,8,2,3,1,0,0,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14912,26607,26606,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,8.3994379,8.6049957,0,30,10,27.737925,0,3,2,2021,14,3,54,50,1,3,0,9.5956593,9.5956593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.26,54.03,50,55,5,2,3,0,0,8,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14913,26608,-9,26606,26607,1,0,26,0,1,0,1,1,-9,0,4,7.7155461,7.6283498,0,0,0,-983.08807,0,2,2,2021,11,0,30,40,1,2,1,7.2022414,7.2022414,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,1,168,89515.703,10713.973,0,0,651.34692,0,976.13849 +12215,14914,26609,-9,26606,26607,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1105.3221,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,1,8,1,1,1406,-105264.77,0,0,0,0,0,0 +12216,14915,26610,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5889111,8.3595228,0,0,0,-837.1239,0,-9,-9,2021,13,1,40,41,1,1,0,13.348044,13.348044,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,6,13,5,0,457,148086.77,111496.33,0,0,0,0,2376.0417 +12217,14916,26611,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.86578,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.59,35.14,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,699,161448.84,0,0,0,0,0,503.87433 +12218,14917,26612,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.2648249,8.7882347,0,0,0,-981.98334,0,1,1,2021,11,2,48,48,1,2,0,24.684795,24.684795,0,0,0,0,0,0,0,0,0,0,0,3.102824,0,49.8,56.68,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,1759,1479637.3,134490.09,1792204.3,394061.69,0,0,3738.1514 +12218,14918,26613,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.912878,8.9397488,0,0,0,-956.8609,0,3,3,2021,9,1,37,44,1,1,0,20.486588,20.486588,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.7,67.47,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,289,186730.53,-46948.934,0,0,-2052.0725,0,3058.1497 +12219,14919,26614,26616,-9,-9,1,1,38,1,2,0,1,1,-9,0,2,8.3156815,8.552516,0,9,2,-54.265724,0,2,2,2021,8,0,46,53,1,0,0,11.799939,11.799939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.7,46.46,45.12,58.81,8.333333333333334,1,1,0,0,10,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26615,-9,26616,26614,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2351,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26616,26614,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2947769,8.3310823,0,9,-2,44.348801,0,2,3,2021,10,1,28,30,1,1,0,14.461276,14.461276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,58.7,46.46,8.333333333333334,1,1,0,0,7,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26617,-9,26616,26614,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4553,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12220,14920,26618,26619,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.5352335,8.4656067,56,0,12.453902,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5539303,8.4928713,54,46,46.31,56.45,8.333333333333334,1,1,0,0,0,12,4,1,621,912122.44,724338.75,102765.72,0,0,0,3740.5134 +12220,14920,26619,26618,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.4308076,4.437726,56,0,19.725754,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8163924,4.3816967,46.31,56.45,54,46,10,1,1,0,0,0,12,4,1,621,912122.44,724338.75,102765.72,0,0,0,3740.5134 +12221,14921,26620,26621,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.2049751,8.2440891,0,18,-7,42.04501,0,1,3,2021,13,2,40,34,1,2,0,7.7453427,7.7453427,.05,.05,0,0,0,0,0,0,1,1,0,4.4275246,0,49.65,44.4,51.95,50.34,8.333333333333334,1,1,0,0,9,5,5,1,2114,600125.75,397617,287997.09,43200.652,13254.914,0,3549.5471 +12221,14921,26621,26620,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.7703314,8.674612,0,18,7,6.6724677,0,2,2,2021,13,1,50,20,1,1,0,15.853742,15.853742,.05,.05,0,0,0,0,0,0,1,1,0,3.9458561,0,51.95,50.34,49.65,44.4,8.333333333333334,1,1,0,0,9,5,5,1,2114,600125.75,397617,287997.09,43200.652,13254.914,0,3549.5471 +12222,14922,26622,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.7178426,5.9759097,0,0,-1108.0273,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.0311029,0,24.430475,0,1,1,0,0,5.7707872,48,35,-9,-9,5,1,1,0,0,0,10,2,0,766,351982.53,153468.23,183319.94,0,0,0,1019.476 +12223,14923,26623,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,5.7501864,5.8662062,0,0,0,-1000.9482,-9,-9,-9,2021,11,2,6,0,1,2,0,6.9827719,6.9827719,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,1182,47394.801,0,0,0,0,0,1060.5437 +12224,14924,26624,26625,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3492417,7.419724,26,2,-23.724417,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6867013,7.4915028,58.32,50.22,55.68,54.24,8.333333333333334,1,1,0,0,6,7,2,1,2117,836534.06,445174.81,282861.13,0,0,0,1390.8147 +12224,14924,26625,26624,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,3.910722,3.4991906,25,-2,77.601494,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1951818,3.6436322,55.68,54.24,58.32,50.22,10,1,1,0,0,9,7,2,1,2117,836534.06,445174.81,282861.13,0,0,0,1390.8147 +12225,14925,26626,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3844376,7.3401313,0,0,0,-1007.7165,0,-9,-9,2021,12,2,45,40,1,2,0,5.8017449,5.8017449,0,0,0,0,0,0,0,0,0,0,0,6.4196095,0,43.18,55.57,-9,-9,8.333333333333334,3,4,0,0,9,8,3,1,397,151106.52,7032.666,118783.44,0,0,0,2149.7976 +12226,14926,26627,26628,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.4884129,8.2374001,0,2,7,38.18055,0,-9,-9,2021,2,0,50,50,1,0,0,9.7742634,9.7742634,.05,.05,0,0,0,0,0,0,1,1,0,.97912908,0,51.14,60.45,23.34,58.25,8.333333333333334,1,1,0,0,2,2,4,0,579.5,83618.953,-106007.22,0,0,0,0,2261.3516 +12226,14926,26628,26627,-9,-9,1,0,20,0,0,0,2,2,0,0,3,0,0,0,2,-7,-83.095139,-9,1,2,2021,30,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,58.25,51.14,60.45,6.666666666666667,1,1,0,0,3,2,4,0,579.5,83618.953,-106007.22,0,0,0,0,2261.3516 +12227,14927,26629,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.8926501,6.8952136,0,0,-909.56677,0,3,3,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8830185,6.9614553,36.96,29.14,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,2920,673089.06,36639.199,276304.81,0,0,0,1472.4113 +12228,14928,26630,26631,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.7764206,9.5072737,0,23,0,-1.5682834,0,2,2,2021,7,0,40,50,1,0,0,43.017292,43.017292,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,950,610776.5,252909.78,555797.75,226745.3,11527.866,5322.96,5594.1348 +12228,14928,26631,26630,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.0604458,6.7962236,0,23,0,-54.187733,-9,2,2,2021,6,0,20,0,1,0,0,7.3645968,7.3645968,.05,.05,0,0,0,0,0,0,0,0,0,1.6916153,0,57.06,57.76,60.12,54.8,10,1,1,0,0,5,7,5,1,950,610776.5,252909.78,555797.75,226745.3,11527.866,5322.96,5594.1348 +12228,14929,26632,-9,26631,26630,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1133.7107,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,3,7,1,1,381,196151.98,0,0,0,0,0,1066.7922 +12228,14930,26633,-9,26631,26630,1,1,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1083.5641,-9,2,2,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8167582,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,213,-132071.3,0,0,0,0,0,84.1483 +12229,14931,26634,26636,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,8.1049719,8.0343618,0,2,-7,17.642303,0,-9,-9,2021,26,9,45,43,1,9,0,9.1273193,9.1273193,0,0,0,0,0,0,0,2,1,1,0,0,0,21.24,48.67,35.5,38.04,1.666666666666667,1,1,0,0,3,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12229,14931,26635,-9,-9,26636,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1099.6489,-9,-9,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.78,60.04,-9,-9,3.333333333333333,1,1,0,0,0,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12229,14931,26636,26634,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,6.9975376,6.6680322,0,2,7,93.391632,0,2,3,2021,14,3,40,40,1,3,0,3.1248224,3.1248224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.5,38.04,21.24,48.67,6.666666666666667,1,1,0,0,5,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12230,14932,26637,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.6562767,9.067997,0,0,0,-1049.2338,0,2,-9,2021,10,2,38,37,1,2,0,21.579283,21.579283,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,564,-28350.676,0,72241.836,4828.9453,0,0,2552.9446 +12230,14933,26638,-9,26637,-9,1,1,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-943.79718,0,2,-9,2021,20,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,51.08,-9,-9,3.333333333333333,1,1,1,1,1,4,1,1,3250,0,0,0,0,0,0,0 +12231,14934,26639,-9,26644,26643,1,1,39,0,3,0,2,2,-9,0,3,0,0,0,0,0,-995.01929,0,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,5,2,3,1,1,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26640,-9,-9,26639,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.96375,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26641,-9,-9,26639,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1121.7175,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26642,-9,-9,26639,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.29883,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14935,26643,26644,-9,-9,1,1,62,0,3,0,3,3,-9,0,3,0,0,0,3,-5,-7.848752,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,50,48,49,47,7,2,3,0,0,1,4,2,0,676,113811.01,39139.914,0,0,8028.3174,2554.7925,1324.4946 +12231,14935,26644,26643,-9,-9,1,0,67,0,3,0,3,3,-9,0,3,8.1233177,7.7739329,5.1482372,3,5,72.016586,0,-9,-9,2021,11,0,40,40,1,1,0,8.1093407,8.1093407,0,0,0,0,0,0,0,0,1,1,0,0,5.5635405,49,47,50,48,7,2,3,0,0,1,4,2,0,676,113811.01,39139.914,0,0,8028.3174,2554.7925,1324.4946 +12232,14936,26645,26647,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.7779331,6.8896093,0,21,-4,8.6245975,0,2,3,2021,12,0,12,16,1,0,0,6.873951,6.873951,0,0,0,0,0,0,0,0,1,1,0,0,0,52.41,42.18,52,56,5,1,1,0,0,11,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14936,26646,-9,26645,26647,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.66461,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14936,26647,26645,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.0694075,8.1701441,0,16,4,-.45772067,0,3,3,2021,9,0,45,50,1,1,0,6.3626671,6.3626671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,52.41,42.18,8,1,1,0,0,1,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14937,26648,-9,26645,26647,1,1,18,0,1,0,3,3,-9,0,3,0,0,0,0,0,-939.36969,-9,2,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.92,49.24,-9,-9,1.666666666666667,1,1,1,1,0,13,1,1,269,-93315.555,0,0,0,0,0,0 +12233,14938,26649,26650,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4699955,8.3873816,0,31,3,43.256176,0,3,3,2021,10,0,37,37,1,0,0,15.163701,15.163701,.05,.05,.05,0,0,0,0,2,0,0,0,1.0758699,0,56.35,51.16,55.96,49.93,8.333333333333334,1,1,0,0,10,13,5,1,1549.5,903982.75,738706.75,225498.09,27468.41,0,5468.8242,3517.6487 +12233,14938,26650,26649,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4867554,8.2262182,0,32,-3,112.83746,0,2,-9,2021,10,0,37,38,1,0,0,12.287566,12.287566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,56.35,51.16,8.333333333333334,1,1,0,0,10,13,5,1,1549.5,903982.75,738706.75,225498.09,27468.41,0,5468.8242,3517.6487 +12233,14939,26651,-9,26650,26649,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.9548,1,2,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1813852,0,55.61,50.3,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,531,-240223.95,0,0,0,0,0,-102.01004 +12234,14940,26652,26653,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.4459887,7.0893412,51,9,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7745051,51.32,37.6,57.06,57.76,8.333333333333334,1,1,0,0,0,6,2,1,448,477837.56,288152.69,146497.69,0,0,0,1742.4915 +12234,14940,26653,26652,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,7.1839943,6.8374381,26,0,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2631865,6.9436212,57.06,57.76,51.32,37.6,8.333333333333334,1,1,0,0,0,6,2,1,448,477837.56,288152.69,146497.69,0,0,0,1742.4915 +12235,14941,26654,26655,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.2904482,8.3461227,57,-1,-65.696609,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2479868,8.1148205,57.16,56.15,52.16,43.45,8.333333333333334,1,1,0,0,0,4,4,1,156.5,2210182,756171,492023.13,0,0,0,4392.4414 +12235,14941,26655,26654,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.7300458,7.65204,57,1,-50.887039,0,3,-9,2021,14,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1512389,7.7251344,52.16,43.45,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,156.5,2210182,756171,492023.13,0,0,0,4392.4414 +12236,14942,26656,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.701448,5.8731728,0,0,-1083.1938,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9620829,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,2636,425256.75,0,304484.44,0,0,0,-155.46933 +12237,14943,26657,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,6.2346745,6.3438358,0,0,-974.0506,0,3,3,2021,23,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.0752907,0,39.38,22.52,-9,-9,6.666666666666667,2,3,1,0,0,8,2,0,213,40906.633,37820.984,0,0,0,0,1741.3433 +12238,14944,26658,26659,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.0378418,6.9011211,38,5,-68.518845,0,3,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,2.6187766,7.1130638,58.33,47.36,47.27,53.93,8.333333333333334,1,1,0,0,11,10,5,1,511.5,2494887.5,1619636,488410.06,0,761.95807,0,3977.2793 +12238,14944,26659,26658,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.8284302,8.7104845,0,37,-5,129.98213,0,2,-9,2021,12,2,42,40,1,2,0,20.571722,20.571722,0,0,0,0,0,0,0,0,1,1,0,2.5257561,0,47.27,53.93,58.33,47.36,6.666666666666667,1,1,0,0,14,10,5,1,511.5,2494887.5,1619636,488410.06,0,761.95807,0,3977.2793 +12239,14945,26660,26661,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.8877587,7.1416531,1,-5,61.936829,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8333048,7.0093513,41.07,60.93,52.15,27.72,10,1,1,0,0,0,11,3,1,307.5,612635.31,351002.25,302746.78,0,0,0,2232.8694 +12239,14945,26661,26660,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.8319201,6.6129484,1,5,61.474781,-9,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6699419,6.8107643,52.15,27.72,41.07,60.93,8.333333333333334,1,1,0,0,5,11,3,1,307.5,612635.31,351002.25,302746.78,0,0,0,2232.8694 +12240,14946,26662,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-948.37854,-9,-9,-9,2021,15,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.05,59.07,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,776,0,0,0,0,0,0,0 +12241,14947,26663,26664,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.2227268,8.3291187,52,1,-87.017601,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3028288,8.119297,63.97,49.13,63.43,26.45,10,1,1,0,0,0,9,4,1,1189,1784323.6,883157.75,680322,0,0,0,5195.7632 +12241,14947,26664,26663,-9,-9,1,0,73,0,0,0,1,1,-9,1,2,8.0336313,7.7931924,6.2533464,52,-1,-64.005959,0,3,2,2021,6,0,15,20,1,0,0,21.230148,21.230148,0,0,0,1,0,3.4173265,0,0,1,1,0,5.3480673,6.1406741,63.43,26.45,63.97,49.13,10,1,1,0,0,8,9,4,1,1189,1784323.6,883157.75,680322,0,0,0,5195.7632 +12242,14948,26665,26666,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,50,-4,-46.516308,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9544806,0,57.16,56.15,57.18,45.76,8.333333333333334,1,1,0,0,0,5,3,1,444.5,852059,19848.354,196355.78,0,0,0,2157.7839 +12242,14948,26666,26665,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7028508,7.6806765,50,4,-27.217077,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8150923,7.6009955,57.18,45.76,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,444.5,852059,19848.354,196355.78,0,0,0,2157.7839 +12243,14949,26667,26668,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.5603113,7.6629648,9,-3,-16.443136,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0823011,7.3106537,53.2,45.6,45.66,46.37,8.333333333333334,1,1,0,0,9,11,3,1,1268.5,928885.5,560871.25,304230.31,0,6448.4336,0,1738.55 +12243,14949,26668,26667,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,7.0064545,6.8400326,9,3,-16.781683,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8901302,7.0793552,45.66,46.37,53.2,45.6,8.333333333333334,1,1,0,0,9,11,3,1,1268.5,928885.5,560871.25,304230.31,0,6448.4336,0,1738.55 +12243,14950,26669,-9,26668,26667,1,0,24,0,0,0,2,2,-9,0,2,7.6438336,7.8415909,0,0,0,-935.17371,0,2,2,2021,13,3,40,39,1,3,0,6.4828157,6.4828157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.74,42.66,-9,-9,6.666666666666667,1,1,0,0,8,11,3,1,537,131383.34,117111.19,0,0,0,0,1162.2175 +12244,14951,26670,-9,26672,26671,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-926.21912,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.70554793,0,57.33,53.46,-9,-9,6.666666666666667,4,2,0,0,0,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26671,26672,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,9.1122952,8.8300161,0,21,8,-74.099434,0,-9,-9,2021,0,0,51,51,1,0,0,20.369789,20.369789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.68,46.69,36.37,51.76,6.666666666666667,3,4,0,0,15,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26672,26671,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,0,0,0,21,-8,-132.50418,0,2,3,2021,23,11,0,42,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,51.76,53.68,46.69,3.333333333333333,2,3,1,0,13,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26673,-9,26672,26671,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1061.0277,-9,2,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,4,2,0,0,0,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12245,14952,26674,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.593565,7.4493904,0,0,-1045.9949,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7732887,7.7331095,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,701,509727.78,195349.56,164475.42,44297.043,0,0,1753.3636 +12246,14953,26675,-9,26676,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-930.29633,-9,1,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,4,0,473.5,1604895.5,788207.44,702514.25,10292.315,0,0,2091.6006 +12246,14953,26676,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.2965355,8.3288431,0,0,0,-837.46075,0,2,2,2021,12,0,37,37,1,2,0,12.300043,12.300043,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,3,10,4,0,473.5,1604895.5,788207.44,702514.25,10292.315,0,0,2091.6006 +12247,14954,26677,26678,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.8131237,8.2806406,0,9,-5,41.395283,0,2,3,2021,21,8,43,37,1,8,0,9.1570759,9.1570759,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,37.09,43.92,37.91,5,1,1,0,1,10,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26678,26677,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,4.1668143,3.9750271,0,9,5,56.013561,0,2,2,2021,10,0,9,34,1,0,0,.67292994,.67292994,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,37.91,40.94,37.09,3.333333333333333,1,1,0,0,10,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26679,-9,26677,26678,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1048.8904,-9,2,1,2021,19,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,40.58,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26680,-9,26677,26678,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-957.81085,-9,2,1,2021,24,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.71,54.45,-9,-9,1.666666666666667,1,1,0,0,0,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12248,14955,26681,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,6.0419421,6.5744505,0,0,-979.98071,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1813154,30.14,29.78,-9,-9,0,2,3,0,1,0,2,2,1,556,238878.91,28693.279,56362.07,0,0,0,-308.55637 +12248,14956,26682,-9,-9,-9,1,1,44,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1060.7841,0,-9,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,0,0,0,2,1,1,356,-40789.965,0,0,0,0,0,64.579742 +12249,14957,26683,26684,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.6965952,8.4828634,0,6,0,183.44394,0,2,2,2021,12,0,37,37,1,0,0,16.617214,16.617214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.37,52.37,8.333333333333334,1,1,0,0,6,12,5,1,1214.5,173115.34,16498.609,120973.24,66969.219,0,0,2619.5774 +12249,14957,26684,26683,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8844924,7.4813709,0,6,0,-31.094679,0,-9,2,2021,2,0,15,15,1,0,0,12.928028,12.928028,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.37,52.37,54.1,59.11,10,1,1,0,0,6,12,5,1,1214.5,173115.34,16498.609,120973.24,66969.219,0,0,2619.5774 +12250,14958,26685,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4655719,7.4939737,0,0,0,-1019.7356,0,3,-9,2021,16,4,30,39,1,4,0,6.4978404,6.4978404,0,0,0,0,0,0,0,0,0,0,0,0,0,47.35,54.15,-9,-9,6.666666666666667,1,1,0,0,9,11,3,1,1523,-122600.06,-14114.037,0,0,0,0,769.31677 +12251,14959,26686,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0632162,8.2295446,0,0,-1021.2581,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1467881,8.1175261,58.47,50.22,-9,-9,10,1,1,0,0,6,1,4,1,1127,841497.06,542764.81,267607.44,0,0,0,1838.7584 +12252,14960,26687,-9,26690,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.14941,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26688,26690,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9485884,8.934083,0,4,4,12.64707,0,1,2,2021,9,2,37,37,1,2,0,21.522055,21.522055,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,33.01,63.17,8.333333333333334,1,1,0,0,12,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26689,-9,26690,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.87,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26690,26688,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.2909374,8.7993965,6.1883407,4,-4,-25.608877,0,-9,-9,2021,16,4,43,35,1,4,0,12.993585,12.993585,0,0,0,0,0,0,0,0,1,1,0,6.1656609,0,33.01,63.17,43.2,59.97,8.333333333333334,1,1,0,0,3,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12253,14961,26691,26692,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5727453,7.8787465,0,11,3,-71.291542,0,3,3,2021,8,0,30,30,1,0,0,9.6659536,9.6659536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.92,47.86,46,51,6.666666666666667,2,3,0,0,11,8,3,0,1161,571869.38,229442.98,241832.47,0,0,3327.043,1635.2804 +12253,14961,26692,26691,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,31,-3,67.914597,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4346344,0,46,51,51.92,47.86,6.666666666666667,2,3,0,0,0,8,3,0,1161,571869.38,229442.98,241832.47,0,0,3327.043,1635.2804 +12253,14962,26693,-9,26692,26691,1,0,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-944.82123,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.84,49.18,-9,-9,6.666666666666667,2,3,0,0,5,8,1,0,800,-133481.2,0,0,0,0,0,-2.9036579 +12254,14963,26694,26696,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.1103344,9.2320986,0,5,1,50.242115,-9,2,3,2021,9,0,60,0,1,1,0,20.829952,20.829952,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26695,-9,26696,26694,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.7074,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26696,26694,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.4905338,7.7857733,6.2729402,5,-1,83.645447,-9,2,2,2021,10,0,10,0,1,0,0,21.85128,21.85128,.05,.05,0,0,0,0,0,0,1,1,0,6.558588,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,8,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26697,-9,26696,26694,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1087.0691,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26698,-9,26696,26694,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.2442,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12255,14964,26699,26700,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.8628421,7.0582771,53,-6,-133.4857,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,21.012745,0,0,1,1,0,4.9543781,7.1968875,30.27,25.47,39.45,36.29,1.666666666666667,1,1,0,0,3,2,3,1,481.5,904106.13,440459.09,260585.81,0,3652.0796,0,2902.9033 +12255,14964,26700,26699,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.5393014,7.65063,53,6,.26010418,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1978793,7.7259007,39.45,36.29,30.27,25.47,3.333333333333333,1,1,0,0,0,2,3,1,481.5,904106.13,440459.09,260585.81,0,3652.0796,0,2902.9033 +12256,14965,26701,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.608674,8.6678972,0,0,0,-978.53021,-9,2,2,2021,15,4,41,0,1,4,0,15.704181,15.704181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.87,59.15,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,961,11150.23,-75481.398,110673.81,68227.313,6960.3926,4310.7334,2065.979 +12257,14966,26702,26703,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,2,3,0,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,21.69,38.3,24.4,5,1,1,0,0,0,13,1,0,211.5,216525.38,0,0,0,0,0,3089.7183 +12257,14966,26703,26702,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,2,-3,0,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.3,24.4,32.33,21.69,6.666666666666667,1,1,0,0,0,13,1,0,211.5,216525.38,0,0,0,0,0,3089.7183 +12258,14967,26704,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.8985443,8.0376062,0,0,-1073.5051,0,1,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7855887,37.86,43.87,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,914,869376.5,460967.06,120988.75,0,0,0,1700.9147 +12259,14968,26705,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,4.4386773,4.2239618,0,0,-1048.1827,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9515858,4.290884,52,44,-9,-9,8,1,1,0,0,0,6,2,1,475,401186.63,5979.0386,164368.28,0,0,0,903.09857 +12260,14969,26706,26707,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,0,-83.487602,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,16.955814,0,0,1,1,0,0,0,55.78,44.75,54,46,8.333333333333334,1,1,0,0,0,7,2,1,802.5,582010.25,153323.14,332493.13,0,0,0,892.93799 +12260,14969,26707,26706,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.2604833,6.2023807,7,0,71.085922,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6058016,6.201808,54,46,55.78,44.75,8,1,1,0,0,0,7,2,1,802.5,582010.25,153323.14,332493.13,0,0,0,892.93799 +12260,14970,26708,-9,26706,26707,1,1,50,0,0,0,2,2,-9,0,5,8.5803337,8.6509886,0,0,0,-1017.5662,0,2,2,2021,6,0,56,60,1,0,0,8.0244513,8.0244513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.07,52.23,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,810,1071808.1,768785.56,292575.63,90680.07,0,0,2873.0259 +12261,14971,26709,26710,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,6.1585774,6.5626659,10,13,-77.920868,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.0082650837,0,0,1,1,0,6.075192,6.0582218,61.69,15.28,49.42,19.32,8.333333333333334,1,1,0,0,0,1,2,0,439,1144250.5,139626.56,380923.41,0,0,0,3019.7813 +12261,14971,26710,26709,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.638586,6.4141731,10,-13,-50.066242,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3361554,6.448842,49.42,19.32,61.69,15.28,8.333333333333334,1,1,0,0,0,1,2,0,439,1144250.5,139626.56,380923.41,0,0,0,3019.7813 +12262,14972,26711,26712,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,11,-3,-9.1903267,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.07,49.95,51.02,52.22,8.333333333333334,1,1,0,0,0,4,4,1,704,2152975.8,1460470.4,365017.75,0,0,0,3911.7839 +12262,14972,26712,26711,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.6848469,8.7752295,49,3,-51.696449,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0997486,8.6537523,51.02,52.22,56.07,49.95,8.333333333333334,1,1,0,0,9,4,4,1,704,2152975.8,1460470.4,365017.75,0,0,0,3911.7839 +12263,14973,26713,26714,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,26,0,74.887047,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.88,43.27,40.44,46.26,3.333333333333333,2,3,0,0,0,8,2,0,2525,632051.06,218330.36,388979.5,0,0,0,2953.2725 +12263,14973,26714,26713,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,3.194587,3.8616393,0,26,9,60.830692,0,2,1,2021,15,4,30,40,1,4,0,.098311417,.098311417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.44,46.26,52.88,43.27,1.666666666666667,2,3,0,0,10,8,2,0,2525,632051.06,218330.36,388979.5,0,0,0,2953.2725 +12263,14974,26715,-9,26713,26714,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1114.1119,-9,2,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.39,38.74,-9,-9,10,2,3,0,0,0,8,2,0,290,52203.418,35192.449,0,0,0,-1027.0988,1342.8717 +12264,14975,26716,26717,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.1580324,7.1012421,21,-2,-107.18859,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2929044,7.0533295,60.02,56.42,58.72,51.29,10,1,1,0,0,10,11,2,1,736.5,575729.25,468227.75,157321.08,0,0,684.3418,2373.1289 +12264,14975,26717,26716,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9460301,5.9587526,9,2,-11.985532,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6131654,58.72,51.29,60.02,56.42,8.333333333333334,1,1,0,0,6,11,2,1,736.5,575729.25,468227.75,157321.08,0,0,684.3418,2373.1289 +12265,14976,26718,26719,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,29,0,-18.861162,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,40.75,39.44,63.66,3.333333333333333,1,1,0,0,0,1,3,1,1125,166787.63,0,110756.77,26756.566,3925.5139,-378.58234,1246.1295 +12265,14976,26719,26718,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.9578552,8.1842747,0,14,0,42.919132,0,3,3,2021,12,1,45,35,1,1,0,7.9646969,7.9646969,0,0,0,0,0,0,0,2,1,1,0,0,0,39.44,63.66,32.48,40.75,6.666666666666667,1,1,0,0,5,1,3,1,1125,166787.63,0,110756.77,26756.566,3925.5139,-378.58234,1246.1295 +12266,14977,26720,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.7399068,7.9544039,0,0,-901.89954,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9354763,61.11,48.86,-9,-9,10,1,1,0,0,4,12,4,1,430,905032.56,757679.94,207825.14,0,0,0,1959.2859 +12267,14978,26721,26722,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.1223745,7.5910921,61,-2,-63.884651,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,.83824265,0,0,1,1,0,0,7.4523706,61.43,30.11,58.07,46.29,8.333333333333334,1,1,0,0,0,12,4,1,445,805598.38,710222.94,132678.45,0,0,0,3833.8232 +12267,14978,26722,26721,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,8.0382318,8.1503468,61,2,203.15132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2930079,8.2392159,58.07,46.29,61.43,30.11,8.333333333333334,1,1,0,0,0,12,4,1,445,805598.38,710222.94,132678.45,0,0,0,3833.8232 +12268,14979,26723,26724,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.2005444,8.9900188,0,11,-4,116.71091,0,3,3,2021,6,0,22,15,1,0,0,37.18642,37.18642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,12,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12268,14979,26724,26723,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5027647,8.5924768,0,11,4,-65.140358,0,3,3,2021,10,0,48,45,1,0,0,11.683138,11.683138,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,4,2,0,0,12,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12268,14979,26725,-9,26723,26724,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.0697,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12269,14980,26726,-9,-9,-9,1,0,37,0,0,0,1,1,0,0,2,0,0,0,0,0,-1159.5286,-9,1,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,6.666666666666667,3,4,0,1,6,8,1,0,465.5,-59987.285,-13034.224,0,0,0,0,1324.7434 +12269,14980,26727,-9,26726,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-949.05035,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,465.5,-59987.285,-13034.224,0,0,0,0,1324.7434 +12270,14981,26728,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.7102919,9.5776262,0,0,0,-846.43939,0,2,2,2021,12,0,53,45,1,0,0,32.484932,32.484932,0,0,.05,0,0,0,0,0,0,0,0,4.1394906,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,3067,877855.31,-2740.8438,857833.31,353812.34,0,0,5538.1064 +12271,14982,26729,26732,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.2925215,9.3692036,0,20,10,-61.236176,0,2,2,2021,17,4,70,53,1,4,0,20.59409,20.59409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.99,36.66,35.67,64.46000000000001,8.333333333333334,1,1,0,1,5,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26730,-9,26732,26729,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3684,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26731,-9,26732,26729,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1129.8954,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26732,26729,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.1798749,7.1334105,4.6391444,20,-10,31.961943,0,2,2,2021,15,4,23,23,1,4,0,6.287796,6.287796,.05,.05,0,0,0,0,0,0,1,1,0,4.6003909,0,35.67,64.46000000000001,40.99,36.66,6.666666666666667,1,1,0,0,7,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12272,14983,26733,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.7820807,9.4354763,0,0,0,-1040.8059,0,1,1,2021,32,12,37,46,1,12,0,41.032261,41.032261,.05,.05,0,0,0,0,0,0,0,0,0,3.2692585,0,3.79,74.17,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,156,256414.2,171776.02,183074,77512.406,0,0,4124.2432 +12273,14984,26734,26735,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8585587,8.8328571,0,4,-1,-72.509041,0,-9,-9,2021,8,0,53,44,1,0,0,16.996048,16.996048,.05,.05,0,0,0,0,.87485337,27,0,0,0,0,0,52.54,54.24,47.6,50.99,6.666666666666667,1,1,0,0,8,12,5,1,1553.5,890803,385777.22,259234.44,0,0,0,4606.2065 +12273,14984,26735,26734,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3983059,8.6905861,5.1561894,4,1,-75.355141,0,2,3,2021,11,0,43,41,1,0,0,11.528265,11.528265,0,0,0,0,0,0,0,42,0,0,0,7.2812042,5.1918173,47.6,50.99,52.54,54.24,8.333333333333334,1,1,0,0,8,12,5,1,1553.5,890803,385777.22,259234.44,0,0,0,4606.2065 +12274,14985,26736,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.8947005,7.6692162,0,4,5,-21.326328,0,2,2,2021,19,9,42,43,1,9,0,9.4632263,9.4632263,0,0,0,0,0,0,0,0,1,1,0,2.5331533,0,28.25,59.94,47.46,39,6.666666666666667,1,1,0,0,6,4,3,0,1155,-27318.484,41326.957,0,0,0,0,807.94855 +12274,14986,26737,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,7.0094609,6.8110485,4,-5,15.735175,1,-9,-9,2021,11,0,0,37,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5014453,0,47.46,39,28.25,59.94,6.666666666666667,1,1,0,0,3,4,3,0,1296,52067.84,0,0,0,0,0,1089.25 +12275,14987,26738,26739,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,6.9080477,7.5381255,6.4024639,9,7,-154.05406,0,-9,2,2021,6,0,12,0,1,0,0,9.0903454,9.0903454,.05,.05,0,0,0,0,0,14.5,1,1,0,5.966527,6.367681,55.33,42.18,27.05,46.91,8.333333333333334,1,1,0,0,9,9,3,1,1510.5,456943.56,94496.539,326629.53,-6513.2866,0,1296.7507,2596.2451 +12275,14987,26739,26738,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7570834,7.7641444,0,9,-7,8.3088694,0,2,3,2021,25,11,37,40,1,11,0,7.1829958,7.1829958,0,0,0,0,0,0,0,0,1,1,0,0,0,27.05,46.91,55.33,42.18,3.333333333333333,1,1,0,1,11,9,3,1,1510.5,456943.56,94496.539,326629.53,-6513.2866,0,1296.7507,2596.2451 +12275,14988,26740,-9,26739,26738,1,1,30,0,0,0,2,2,-9,0,2,5.8259859,5.8942871,0,0,0,-1064.668,0,2,2,2021,19,7,30,20,1,7,1,1.3590999,1.3590999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,50.61,-9,-9,1.666666666666667,1,1,0,0,8,9,2,1,891,56137.289,-8498.9346,0,0,311.04163,1806.9542,451.60037 +12276,14989,26741,-9,26742,26743,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1020.2444,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14989,26742,26743,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.9286823,8.4380846,0,31,0,68.240166,0,2,3,2021,11,0,33,35,1,0,0,11.089788,11.089788,.05,.05,0,0,0,0,0,0,1,1,0,2.8849218,0,46.08,57.2,32.72,57.72,6.666666666666667,1,1,0,0,12,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14989,26743,26742,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.4029827,9.3431759,0,30,0,-39.976543,0,2,2,2021,33,12,37,40,1,12,0,30.550364,30.550364,.05,.05,0,0,0,0,0,0,1,1,0,4.6058178,0,32.72,57.72,46.08,57.2,3.333333333333333,1,1,0,0,10,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14990,26744,-9,26742,26743,1,0,22,0,1,0,2,2,-9,0,4,8.0672359,7.9420595,0,0,0,-999.05615,0,2,2,2021,8,0,40,42,1,0,1,8.1105728,8.1105728,.05,.05,0,0,0,0,0,0,1,1,0,1.6161803,0,40.48,60.05,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,2231,-64567.828,27327.828,0,0,0,2654.4614,1045.9326 +12277,14991,26745,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2428179,7.3404713,0,0,0,-945.70081,0,2,3,2021,12,0,25,25,1,0,0,7.0433989,7.0433989,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,1109,377564.22,28710.316,193980.44,21692.635,0,0,479.39911 +12278,14992,26746,26747,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,9.2764549,9.081212,0,3,2,85.478493,0,-9,-9,2021,7,0,43,43,1,0,0,31.458784,31.458784,0,0,0,0,0,0,0,0,0,0,0,6.6520071,0,57.16,56.15,47.26,54.06,6.666666666666667,1,1,0,0,8,7,5,1,954.5,216411.05,0,243114.44,122430.05,1268.0438,0,4713.9424 +12278,14992,26747,26746,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.8650804,7.6464419,0,3,-2,-118.97877,0,3,2,2021,13,2,40,40,1,2,0,8.7735224,8.7735224,0,0,0,0,0,0,0,0,0,0,0,0,0,47.26,54.06,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,954.5,216411.05,0,243114.44,122430.05,1268.0438,0,4713.9424 +12279,14993,26748,-9,26750,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.76068,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12279,14993,26749,-9,26750,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.6703,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12279,14993,26750,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.199369,7.3344641,0,0,0,-959.21405,0,-9,-9,2021,12,0,14,13,1,0,0,10.060826,10.060826,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.34,59.15,-9,-9,8.333333333333334,1,1,0,0,14,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12280,14994,26751,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-971.50305,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.21,65.58,-9,-9,0,3,4,1,1,0,8,1,0,1348,-264770.47,0,0,0,0,0,692.10168 +12281,14995,26752,26753,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,8,0,0,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,33.93,19.89,44.57,14.71,6.666666666666667,1,1,0,0,0,1,1,0,1206,197648.19,0,186715.53,0,0,0,2542.1228 +12281,14995,26753,26752,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,8,9,0,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.57,14.71,33.93,19.89,8.333333333333334,1,1,0,0,0,1,1,0,1206,197648.19,0,186715.53,0,0,0,2542.1228 +12282,14996,26754,26755,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,8,-13,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7611113,0,54.2,57.49,50.16,55.32,10,1,1,0,0,2,8,1,1,575.5,17249,64056.922,0,0,0,0,1442.2983 +12282,14996,26755,26754,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,0,0,28,13,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3483284,0,50.16,55.32,54.2,57.49,6.666666666666667,1,1,0,0,0,8,1,1,575.5,17249,64056.922,0,0,0,0,1442.2983 +12282,14997,26756,-9,26755,26754,1,1,20,0,0,0,2,2,-9,0,3,8.2626724,8.1394548,0,0,0,-1077.0251,0,2,2,2021,5,1,40,46,1,1,0,10.997148,10.997148,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,3,4,0,0,3,8,4,1,456,-2271.4595,0,0,0,0,0,1101.9854 +12282,14998,26757,26758,26755,26754,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,2,-1,22.396235,1,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48999533,0,48.87,58.55,57.16,56.15,6.666666666666667,4,2,0,0,1,8,3,1,670,-23790.633,0,0,0,10504.758,0,1070.2229 +12282,14998,26758,26757,-9,-9,1,0,25,0,0,0,1,1,1,0,4,8.0831203,8.0153866,0,2,1,-69.242744,-9,-9,-9,2021,5,0,53,0,1,0,0,6.7139091,6.7139091,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,2,8,3,1,670,-23790.633,0,0,0,10504.758,0,1070.2229 +12283,14999,26759,26760,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.1935358,9.1202354,0,8,-12,13.202948,0,3,2,2021,7,0,46,42,1,0,0,16.864101,16.864101,.05,.05,0,0,0,0,0,0,1,1,0,8.5807943,0,57.06,57.76,58.08,43.46,8.333333333333334,1,1,0,0,11,6,5,1,398.5,286975.75,57334.508,84759.391,38633.18,0,0,7110.6235 +12283,14999,26760,26759,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.2963719,7.4696088,6.685369,8,12,1.157835,0,3,3,2021,6,0,18,18,1,0,0,7.4918346,7.4918346,0,0,0,0,0,0,0,0,1,1,0,4.9191628,6.2671309,58.08,43.46,57.06,57.76,1.666666666666667,1,1,0,0,8,6,5,1,398.5,286975.75,57334.508,84759.391,38633.18,0,0,7110.6235 +12284,15000,26761,-9,-9,-9,1,1,52,0,0,0,3,3,0,0,4,0,0,0,0,0,-878.93982,-9,3,3,2021,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.29,44.54,-9,-9,6.666666666666667,2,3,0,0,0,6,1,0,604,-8298.1855,0,0,0,0,0,811.34412 +12285,15001,26762,-9,26765,26764,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26763,-9,26765,26764,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.72394,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26764,26765,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.4713831,8.359169,0,7,1,124.56776,0,2,2,2021,5,0,40,48,1,0,0,14.254913,14.254913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26765,26764,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,7,-1,10.19011,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12286,15002,26766,26767,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.6293554,7.8161883,0,3,-7,89.955643,0,2,-9,2021,8,0,60,50,1,0,0,3.8904359,3.8904359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,20.32,42.4,6.666666666666667,1,1,0,0,10,12,3,1,700,203443.72,106406.96,0,0,0,0,1447.4296 +12286,15002,26767,26766,-9,-9,1,0,47,0,0,0,2,2,1,1,2,0,0,0,3,7,50.788925,-9,2,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.32,42.4,51.41,56.15,5,1,1,0,0,5,12,3,1,700,203443.72,106406.96,0,0,0,0,1447.4296 +12287,15003,26768,26769,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,46,0,100.77148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,1030.5,332562.91,120666.5,163088.5,0,0,0,2227.8616 +12287,15003,26769,26768,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2763891,8.2680874,0,7,0,7.3060803,0,3,3,2021,8,0,35,37,1,0,0,13.520739,13.520739,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,12,4,1,1030.5,332562.91,120666.5,163088.5,0,0,0,2227.8616 +12288,15004,26770,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.5182762,7.9177074,0,0,0,-957.01294,-9,-9,-9,2021,11,0,28,0,1,0,0,9.7115288,9.7115288,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,5,1,1,0,0,8,9,3,0,689,9768.7383,0,0,0,0,0,2678.3696 +12288,15004,26771,-9,26770,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.80182,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,689,9768.7383,0,0,0,0,0,2678.3696 +12289,15005,26772,26773,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.3621492,6.1285629,0,32,5,-43.587269,0,3,3,2021,8,0,15,3,1,0,0,4.5522609,4.5522609,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,46.63,59.72,8.333333333333334,1,1,0,0,11,1,4,1,720.5,2196524.8,1086180.1,529298.5,0,0,0,3318.2627 +12289,15005,26773,26772,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.4272327,8.6237459,7.1087136,32,-5,177.89336,0,2,3,2021,10,0,40,40,1,0,0,13.798033,13.798033,0,0,0,0,0,0,0,0,1,1,0,0,7.3432384,46.63,59.72,56.33,51.02,6.666666666666667,1,1,0,0,10,1,4,1,720.5,2196524.8,1086180.1,529298.5,0,0,0,3318.2627 +12289,15006,26774,-9,26772,26773,1,1,24,0,0,0,2,2,-9,0,4,8.3836517,8.51509,0,0,0,-1010.6581,0,2,1,2021,6,0,44,46,1,0,1,10.817459,10.817459,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,1792,-1968.3906,-2647.1079,0,0,0,0,2215.9893 +12290,15007,26775,26776,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.0873079,7.9405413,0,11,-4,99.987724,0,-9,-9,2021,7,0,40,65,1,0,0,7.3627481,7.3627481,.05,.05,0,0,0,0,0,2,1,1,0,4.4856148,0,54.1,59.11,50,47,10,1,1,0,0,9,6,3,1,1743.5,211622.78,68823.969,98820.531,0,0,0,2014.5449 +12290,15007,26776,26775,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,2,4,36.824203,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0243011,0,50,47,54.1,59.11,7,1,1,0,0,0,6,3,1,1743.5,211622.78,68823.969,98820.531,0,0,0,2014.5449 +12291,15008,26777,26778,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4367933,8.6101809,0,8,-3,-42.154404,0,2,2,2021,22,9,45,40,1,9,0,13.101397,13.101397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.97,41.91,54,32.93,6.666666666666667,2,3,0,1,10,8,5,1,467.5,1833259,748476.75,326687.25,225058.59,0,11747.307,4808.2573 +12291,15008,26778,26777,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2811499,9.554512,0,27,3,73.917747,0,2,1,2021,14,2,45,41,1,2,0,35.631924,35.631924,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,32.93,44.97,41.91,8.333333333333334,2,3,0,0,8,8,5,1,467.5,1833259,748476.75,326687.25,225058.59,0,11747.307,4808.2573 +12291,15009,26779,-9,26777,26778,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.9633,1,2,1,2021,7,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.412277,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,1,8,1,1,1764,50795.559,0,0,0,0,0,92.574799 +12292,15010,26780,26781,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,0,7.5804367,8.056674,21,22,66.58017,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6310489,7.8951011,40.94,64.77,46.42,54.11,6.666666666666667,1,1,0,0,5,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26781,26780,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.0395641,8.1007366,0,22,-22,15.485596,0,3,3,2021,15,4,30,30,1,4,0,12.680091,12.680091,0,0,0,0,0,0,0,0,1,1,0,0,0,46.42,54.11,40.94,64.77,8.333333333333334,1,1,0,0,6,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26782,-9,26781,26780,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.10114,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26783,-9,26781,26780,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.4067,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12293,15011,26784,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,8.1007671,7.9411402,0,0,0,-853.75806,0,3,3,2021,6,0,48,46,1,0,0,7.0794225,7.0794225,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,14,5,4,1,2677,253552.92,217253.25,152689.64,0,0,0,2041.9292 +12294,15012,26785,26786,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.3033705,8.0975637,0,6,-3,3.6302731,0,-9,-9,2021,10,0,40,40,1,1,0,7.3545346,7.3545346,0,0,0,0,0,0,0,86,1,1,0,0,0,50,57,48,56,7,1,1,0,0,5,13,3,0,2849.5,-38970.031,0,0,0,0,0,2383.7046 +12294,15012,26786,26785,-9,-9,1,0,41,0,0,0,3,3,-9,1,4,0,0,0,6,3,-2.301724,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,1,1,0,1,0,13,3,0,2849.5,-38970.031,0,0,0,0,0,2383.7046 +12294,15013,26787,-9,26786,-9,1,1,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.7755,0,3,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47,60,-9,-9,7,1,1,0,1,0,13,1,0,979,0,0,0,0,0,0,900.64301 +12295,15014,26788,-9,26789,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.65308,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,12,1,0,2004,130979.52,0,0,0,0,0,1054.2894 +12295,15014,26789,-9,-9,-9,1,0,32,1,1,0,3,3,-9,0,1,0,0,0,0,0,-899.56354,0,2,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.53,40.76,-9,-9,5,1,1,1,1,5,12,1,0,2004,130979.52,0,0,0,0,0,1054.2894 +12296,15015,26790,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,8.0518456,7.9999313,0,0,-1029.4915,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,2.2568371,0,0,1,1,0,0,7.9034452,59.49,38.73,-9,-9,10,1,1,0,0,0,6,3,1,468,188275.19,155866.61,73800.836,0,0,0,1892.097 +12297,15016,26791,26792,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,47,0,0,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0391183,0,50,47,33.07,44.65,7,1,1,0,0,0,11,1,1,412.5,-56822.473,0,0,0,0,0,1152.4436 +12297,15016,26792,26791,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,47,0,0,0,3,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7913499,0,33.07,44.65,50,47,3.333333333333333,1,1,0,0,3,11,1,1,412.5,-56822.473,0,0,0,0,0,1152.4436 +12298,15017,26793,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4950714,8.6122742,0,0,0,-985.27222,0,3,3,2021,6,0,35,35,1,0,0,16.335381,16.335381,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,728,586484.75,259107.81,86298.766,0,0,0,2253.8884 +12299,15018,26794,26795,-9,-9,1,1,34,0,2,0,3,3,-9,0,4,8.2598314,7.7380738,0,10,5,32.13765,0,3,3,2021,10,0,30,45,1,1,0,12.455624,12.455624,0,0,0,0,0,0,0,0,1,1,0,7.3705187,0,50,57,57.65,56.13,7,2,3,0,0,9,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12299,15018,26795,26794,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,0,0,0,10,-5,36.705502,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,50,57,8.333333333333334,2,3,0,0,0,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12299,15018,26796,-9,26795,26794,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.28918,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12300,15019,26797,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6844153,6.2335906,0,0,-1045.7916,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8618441,40.78,27.62,-9,-9,6.666666666666667,4,2,0,0,5,8,2,1,543,217856.56,150409.73,221396.2,0,0,0,1144.2487 +12301,15020,26798,26799,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,48,-1,29.112707,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9736519,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,1588,760322.63,334345.38,514315.97,0,0,0,3576.3887 +12301,15020,26799,26798,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.2852716,8.0981617,48,1,113.05438,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4085736,8.2209435,57.06,57.76,57.16,56.15,10,1,1,0,0,5,13,3,1,1588,760322.63,334345.38,514315.97,0,0,0,3576.3887 +12302,15021,26800,26801,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.8182535,8.6919022,0,5,2,-78.432877,0,-9,-9,2021,11,0,35,45,1,2,0,25.106167,25.106167,.05,.05,0,0,0,0,0,0,0,0,0,4.9465494,0,48,57,51.83,57.2,7,1,1,0,0,1,2,5,1,1228.5,184638.38,51408.961,190235.06,155994.25,0,0,5468.1992 +12302,15021,26801,26800,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5408211,8.680088,0,5,-2,56.303967,0,1,1,2021,12,0,58,48,1,0,0,9.9237194,9.9237194,.05,.05,0,0,0,0,0,0,0,0,0,.68174601,0,51.83,57.2,48,57,8.333333333333334,1,1,0,0,9,2,5,1,1228.5,184638.38,51408.961,190235.06,155994.25,0,0,5468.1992 +12303,15022,26802,-9,-9,-9,1,1,19,0,1,1,2,0,0,0,3,0,5.8952851,5.866601,0,0,-1113.4855,-9,2,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6227207,0,46.59,56.95,-9,-9,6.666666666666667,1,1,0,0,2,7,2,1,1619,-220349.73,0,0,0,0,0,787.2785 +12304,15023,26803,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5093813,8.3065796,0,0,0,-1068.8596,-9,3,3,2021,15,5,43,0,1,5,0,12.627636,12.627636,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,13,7,5,0,2477,99513.406,4694.7861,0,0,0,0,1600.869 +12305,15024,26804,-9,-9,-9,1,0,21,0,1,0,1,1,-9,0,3,7.4905243,7.2643666,0,0,0,-964.42529,0,-9,-9,2021,10,0,30,0,1,0,0,8.7502909,8.7502909,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.92,56.78,-9,-9,5,1,1,0,0,6,13,3,0,4551,-25492.141,52221.406,0,0,0,0,1913.7521 +12305,15024,26805,-9,26804,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-811.57825,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,4551,-25492.141,52221.406,0,0,0,0,1913.7521 +12306,15025,26806,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.2458782,7.0256505,0,0,0,-1146.2657,0,3,1,2021,16,3,16,0,1,3,0,8.402853,8.402853,0,0,0,0,0,0,0,0,1,1,0,0,0,38.72,44.37,-9,-9,3.333333333333333,4,5,0,0,7,2,2,1,720.5,-67854.195,-63036.828,0,0,0,0,1061.8762 +12306,15025,26807,-9,26806,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.3787,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,-9,0,0,2,2,1,720.5,-67854.195,-63036.828,0,0,0,0,1061.8762 +12306,15026,26808,-9,26806,-9,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.75177,-9,1,-9,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.061889328,0,45.75,62.87,-9,-9,10,4,5,0,0,0,2,1,1,258,64099.543,0,0,0,0,0,-92.841103 +12307,15027,26809,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,4.0446787,3.7813096,0,0,-1003.8533,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5096774,4.2588983,50,49,-9,-9,7,1,1,0,0,0,10,2,0,790,579103,141329.56,222631.53,0,0,0,1158.6761 +12308,15028,26810,26811,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.7767887,7.5426636,0,2,3,52.433159,0,2,1,2021,8,0,24,15,1,0,0,9.9216709,9.9216709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,49.06,58.64,6.666666666666667,1,1,0,0,3,9,3,0,714,70123.719,-55049.781,0,0,0,0,1595.9941 +12308,15028,26811,26810,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.614831,7.8916683,0,2,-3,27.907606,0,-9,-9,2021,8,0,34,36,1,0,0,8.6762152,8.6762152,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,38.88,61.85,6.666666666666667,1,1,0,0,1,9,3,0,714,70123.719,-55049.781,0,0,0,0,1595.9941 +12309,15029,26812,-9,26815,26813,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-903.17651,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26813,26815,-9,-9,1,1,27,3,3,0,3,3,-9,0,3,0,0,0,3,2,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,33.77,58.85,5,1,1,1,1,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26814,-9,26815,26813,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-953.5882,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26815,26813,-9,-9,1,0,25,3,3,0,3,3,-9,0,3,0,0,0,3,-2,0,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.77,58.85,46.08,57.2,10,1,1,1,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26816,-9,26815,26813,1,0,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-889.16284,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12310,15030,26817,26819,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,6,-3,71.370171,0,1,1,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.5987787,0,48.87,58.55,53.78,48.41,8.333333333333334,1,1,0,0,8,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12310,15030,26818,-9,26817,26819,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.6516,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12310,15030,26819,26817,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.7781944,9.3201027,7.4149437,6,3,-16.416176,0,-9,-9,2021,7,0,46,43,1,0,0,19.385178,19.385178,.05,.05,0,0,0,0,0,0,1,1,0,5.5715528,7.5701976,53.78,48.41,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12311,15031,26820,26821,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.3823342,6.5417986,9,5,-2.7592337,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0589614,6.1300964,58.49,50.2,59.29,25.74,8.333333333333334,1,1,0,0,0,5,2,1,489.5,273957.75,171756.13,58158.188,0,0,0,1963.1218 +12311,15031,26821,26820,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.8868151,5.2495022,9,-5,18.278107,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7040606,0,59.29,25.74,58.49,50.2,10,1,1,0,0,0,5,2,1,489.5,273957.75,171756.13,58158.188,0,0,0,1963.1218 +12312,15032,26822,26823,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,6.3566871,7.1268015,6.7374649,3,-21,-55.213036,0,2,3,2021,25,9,8,0,1,9,0,7.7917819,7.7917819,0,0,0,0,0,0,0,118,1,1,0,0,6.6056924,34.62,35.98,54,46,0,1,1,0,0,7,11,2,1,264,598921.69,475697,145542.5,0,4774.7993,0,1436.5173 +12312,15032,26823,26822,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,0,0,3,21,98.185333,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.62,35.98,8,1,1,0,0,0,11,2,1,264,598921.69,475697,145542.5,0,4774.7993,0,1436.5173 +12312,15033,26824,-9,26822,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-992.11151,0,2,-9,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.34,48.15,-9,-9,6.666666666666667,1,1,1,0,3,11,1,1,741.5,-10875.971,0,0,0,0,0,413.64465 +12312,15033,26825,-9,26824,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.63239,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,1,741.5,-10875.971,0,0,0,0,0,413.64465 +12313,15034,26826,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,8.003624,7.8239074,0,0,-1121.5469,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0837073,7.8211098,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,779,620357.25,230277.41,248861.16,0,0,0,2591.9563 +12314,15035,26827,26829,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,10,-10,78.797836,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26828,-9,26827,26829,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1080.2372,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,57.26,-9,-9,5,2,3,0,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26829,26827,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.2418222,7.2259474,0,23,10,-37.617924,0,2,2,2021,9,0,40,63,1,1,0,4.2166929,4.2166929,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,8,2,3,0,0,10,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26830,-9,26827,26829,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0056,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15036,26831,-9,26827,26829,1,1,20,0,2,0,2,2,1,0,4,0,0,0,0,0,-1041.757,-9,2,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,1,0,0,8,1,0,1994,0,0,0,0,0,0,361.15146 +12314,15037,26832,-9,26827,26829,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-947.03467,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,3361,0,0,0,0,0,0,0 +12315,15038,26833,26834,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.5705156,8.5569992,0,13,-3,30.741196,0,2,1,2021,15,3,36,42,1,3,0,29.557859,29.557859,.05,.05,0,0,0,0,0,0,1,1,0,3.5637038,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12315,15038,26834,26833,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.2043819,8.7548943,0,13,3,-9.1589756,0,2,2,2021,6,0,37,37,1,0,0,15.665936,15.665936,.05,.05,0,0,0,0,0,0,1,1,0,.10769568,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12315,15038,26835,-9,26833,26834,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0493,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12316,15039,26836,26837,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.9202433,8.995409,0,6,0,29.897898,0,-9,-9,2021,11,0,35,50,1,0,0,28.012903,28.012903,.05,.05,0,0,0,0,0,0,0,0,0,3.8009474,0,51.14,52.08,52.88,56.68,6.666666666666667,1,1,0,0,5,4,5,1,651,1509247.8,939790.06,545453.13,131434.72,0,0,8616.002 +12316,15039,26837,26836,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.3374844,9.9617348,0,6,0,98.05899,0,2,2,2021,3,0,32,28,1,0,0,50.886787,50.886787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.88,56.68,51.14,52.08,8.333333333333334,1,1,0,0,10,4,5,1,651,1509247.8,939790.06,545453.13,131434.72,0,0,8616.002 +12317,15040,26838,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1005.0479,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,538,899452.25,22848.133,589453.5,0,0,0,695.26312 +12318,15041,26839,-9,26841,26840,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.5225,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12318,15041,26840,26841,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.4360628,8.3913498,0,6,-2,21.690563,0,-9,-9,2021,10,2,3,2,1,2,0,216.01845,216.01845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.22,61.48,30.08,59.22,6.666666666666667,1,1,0,0,5,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12318,15041,26841,26840,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.8162432,8.5171471,0,6,2,-94.035683,0,2,3,2021,13,2,13,13,1,2,0,63.404793,63.404793,.05,.05,0,0,0,0,0,0,1,1,0,.95656306,0,30.08,59.22,39.22,61.48,8.333333333333334,1,1,0,0,11,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12319,15042,26842,-9,26844,26843,1,0,19,0,0,1,2,0,-9,1,3,0,0,0,0,0,-1017.0893,-9,2,2,2021,33,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9373376,0,15.77,52.25,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,1788,-22422.16,0,0,0,0,0,416.05145 +12319,15043,26843,26844,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.3310251,7.0450196,0,10,8,-7.3591418,0,2,2,2021,11,0,45,40,1,0,0,3.7502005,3.7502005,0,0,.05,0,0,0,0,0,1,1,0,7.4262805,0,56.18,51.02,55.19,54.26,8.333333333333334,1,1,0,0,11,11,3,1,795,448388.31,76822.156,281391.53,0,0,0,1716.1079 +12319,15043,26844,26843,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,6.537498,6.8697953,0,10,-8,99.09948,0,2,2,2021,11,0,36,40,1,0,0,2.3148987,2.3148987,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,56.18,51.02,6.666666666666667,1,1,0,0,11,11,3,1,795,448388.31,76822.156,281391.53,0,0,0,1716.1079 +12320,15044,26845,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.388175,7.5394411,0,0,-1079.9487,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5853028,7.6788182,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,124,487816.44,247062.44,177965.22,0,0,0,1887.282 +12321,15045,26846,26847,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3970423,8.3652582,0,39,2,155.78252,0,3,3,2021,9,1,38,38,1,1,0,12.339402,12.339402,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,32.21,51.83,57.2,8.333333333333334,1,1,0,0,13,2,4,1,566.5,795900,561328.81,135152.7,0,0,0,2594.5791 +12321,15045,26847,26846,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7593155,7.8379202,0,38,-2,1.2620056,0,1,3,2021,12,0,32,32,1,0,0,9.8989649,9.8989649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,32.21,8.333333333333334,1,1,0,0,12,2,4,1,566.5,795900,561328.81,135152.7,0,0,0,2594.5791 +12322,15046,26848,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.4882607,6.6332402,0,0,-962.0564,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4905553,61.26,48.89,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,297,827345.69,98551.68,665227.31,0,0,0,2033.1831 +12323,15047,26849,26850,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.5819654,6.7757573,56,1,227.58971,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8267732,57.9,35.78,59.29,46.97,8.333333333333334,1,1,0,0,0,11,3,1,1497,1025362.2,768402.19,186199.09,0,0,0,3784.1108 +12323,15047,26850,26849,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.693254,7.7451177,56,-1,-99.264565,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7699456,59.29,46.97,57.9,35.78,8.333333333333334,1,1,0,0,0,11,3,1,1497,1025362.2,768402.19,186199.09,0,0,0,3784.1108 +12324,15048,26851,26852,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.8644876,7.5824842,0,3,-2,-109.95783,0,-9,-9,2021,12,1,46,45,1,1,0,7.0338302,7.0338302,0,0,0,0,0,0,0,0,0,0,0,0,0,42.89,42.49,29.47,61.08,8.333333333333334,1,1,0,0,3,5,4,0,693,46041.375,77472.328,91214.844,64843.328,5180.8096,0,2369.803 +12324,15048,26852,26851,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,7.9537139,8.1963587,0,3,2,20.683437,0,2,2,2021,16,5,45,50,1,5,0,9.2691193,9.2691193,.05,.05,0,0,0,0,0,2,0,0,0,0,0,29.47,61.08,42.89,42.49,10,1,1,0,0,6,5,4,0,693,46041.375,77472.328,91214.844,64843.328,5180.8096,0,2369.803 +12325,15049,26853,26856,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.5388622,8.5758448,0,3,-7,-10.161986,0,2,2,2021,12,3,39,10,1,3,0,15.114984,15.114984,.05,.05,0,0,0,0,0,0,1,1,0,.66345322,0,43.48,60.97,51.67,60.18,8.333333333333334,1,1,0,0,4,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26854,-9,26853,26856,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-969.61639,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26855,-9,26853,26856,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3419,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26856,26853,-9,-9,1,1,39,2,2,0,2,2,-9,0,5,8.6168299,9.0687647,0,3,7,41.066414,0,-9,-9,2021,9,0,40,45,1,0,0,17.487307,17.487307,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12326,15050,26857,26858,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.9497952,8.2972145,0,7,-2,144.34024,0,3,3,2021,6,0,40,40,1,0,0,13.084556,13.084556,0,0,0,0,0,0,0,0,0,0,0,0,0,53.67,51.01,48.71,51.81,6.666666666666667,1,1,0,0,8,6,5,1,794,831687.13,202410.81,284369.06,60630.641,0,0,4325.1738 +12326,15050,26858,26857,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.9997854,9.129941,0,7,2,-109.59834,0,3,2,2021,8,0,50,60,1,0,0,18.535278,18.535278,0,0,.05,1,0,0,0,0,0,0,0,0,0,48.71,51.81,53.67,51.01,8.333333333333334,1,1,0,0,8,6,5,1,794,831687.13,202410.81,284369.06,60630.641,0,0,4325.1738 +12327,15051,26859,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.5863228,8.5020704,8.8736391,0,0,-911.22552,0,2,2,2021,10,0,12,16,1,0,0,6.2433648,6.2433648,.05,.05,0,0,0,0,0,0,0,0,0,0,8.7347984,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,367,-23919.779,32761.297,0,0,0,1460.89,2680.5564 +12328,15052,26860,26861,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.4799967,8.2927809,0,4,5,190.0056,0,-9,-9,2021,11,0,43,45,1,2,0,10.78413,10.78413,0,0,0,0,0,0,0,0,0,0,0,1.5448825,0,48,56,54.1,59.11,7,1,1,0,0,5,1,5,1,989.5,166356.88,28192.744,42743.637,43360.934,0,0,4766.3799 +12328,15052,26861,26860,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.9404211,9.1235523,0,4,-5,-90.078705,0,-9,-9,2021,7,0,61,57,1,0,0,15.362724,15.362724,.05,.05,0,0,0,0,0,0,0,0,0,.1190786,0,54.1,59.11,48,56,8.333333333333334,1,1,0,0,9,1,5,1,989.5,166356.88,28192.744,42743.637,43360.934,0,0,4766.3799 +12329,15053,26862,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.8623114,9.2820187,0,0,0,-953.4101,0,2,3,2021,7,0,37,59,1,0,0,25.983912,25.983912,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,48.72,-9,-9,6.666666666666667,4,2,0,0,11,4,5,1,1477,37335.969,-135362.95,145784.27,81259.977,12710.155,357.68173,2829.7339 +12330,15054,26863,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,5.6045961,5.7446814,0,0,-866.06348,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5098171,0,48.87,58.55,-9,-9,0,1,1,1,1,3,5,2,1,1769.5,-94300.461,0,0,0,6971.7056,0,721.2583 +12330,15054,26864,-9,26863,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00641,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,1769.5,-94300.461,0,0,0,6971.7056,0,721.2583 +12331,15055,26865,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7799911,7.207181,0,0,-1025.5793,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4765961,7.114203,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,302,368836.69,57202.941,339318.31,0,0,0,1988.2516 +12332,15056,26866,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,6.3231668,6.0296655,0,0,-1031.7418,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.83069855,0,0,1,1,0,5.2693491,6.3468938,59.53,56.44,-9,-9,10,1,1,0,0,0,10,2,1,343,559700.94,68868.578,114920.4,0,0,0,1153.0782 +12333,15057,26867,26868,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6694226,7.981338,0,1,3,73.813881,-9,2,2,2021,8,1,38,0,1,1,0,9.4320698,9.4320698,0,0,0,0,0,0,0,0,0,0,0,1.0330538,0,46.98,59.35,48,58,8.333333333333334,4,2,0,0,8,8,3,0,1942,243144.34,-21950.813,0,0,0,0,1139.3069 +12333,15057,26868,26867,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,1,-3,-90.03318,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,48,58,46.98,59.35,7,1,1,0,0,0,8,3,0,1942,243144.34,-21950.813,0,0,0,0,1139.3069 +12334,15058,26869,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.1812015,6.5397434,0,0,-909.36945,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6378376,6.1464295,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,2042,0,0,0,0,0,0,1622.9005 +12335,15059,26870,26871,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,0,6.8813481,6.6138573,34,-1,96.282608,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1312828,48.45,23.16,62.39,56.71,6.666666666666667,1,1,0,0,6,2,4,0,872,1415983.9,985248.63,338917.13,0,0,0,2073.5955 +12335,15059,26871,26870,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.4938049,8.3020382,0,34,1,66.666473,-9,-9,-9,2021,6,0,38,0,1,0,0,15.165288,15.165288,.05,.05,0,0,0,0,0,88,1,1,0,0,0,62.39,56.71,48.45,23.16,8.333333333333334,1,1,0,0,7,2,4,0,872,1415983.9,985248.63,338917.13,0,0,0,2073.5955 +12336,15060,26872,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,3.5052729,3.5239193,0,0,-905.45984,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7996373,3.1623788,56.06,38.05,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,266,445732.69,143497.75,424622.97,0,0,0,1038.6958 +12337,15061,26873,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4587612,8.5642595,0,0,0,-1067.6951,0,2,2,2021,12,1,38,38,1,1,0,14.173913,14.173913,.05,.05,0,0,0,0,0,2,0,0,0,3.3182304,0,48.57,45.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,709,213685.66,-10581.943,307115.03,73819.258,0,0,1779.8202 +12338,15062,26874,26875,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,10,1,91.288574,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.31,38.98,50,49,8.333333333333334,1,1,1,0,2,13,2,1,797,446467.31,269143.94,140153.25,0,0,0,1256.084 +12338,15062,26875,26874,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,6.4703918,6.7461581,0,10,-1,103.43255,-9,-9,-9,2021,10,0,50,0,1,1,0,1.5787449,1.5787449,.05,.05,0,0,0,0,0,0,1,1,0,1.0757444,0,50,49,36.31,38.98,7,1,1,0,0,1,13,2,1,797,446467.31,269143.94,140153.25,0,0,0,1256.084 +12339,15063,26876,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.14397,5.4362617,0,0,-824.71472,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4356809,4.8729038,58.5,44.67,-9,-9,10,1,1,0,0,0,5,2,1,2889,241145.83,26538.021,42604.488,0,0,0,1844.6637 +12340,15064,26877,26878,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.3211446,7.6865816,0,9,-3,-27.588737,0,-9,3,2021,9,0,30,30,1,0,0,6.0565605,6.0565605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.79,55.86,10,1,1,0,0,6,12,4,0,384.5,406307.94,336361.94,105407.15,54528.852,17248.973,876.25323,1999.8911 +12340,15064,26878,26877,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.2341127,8.1751642,0,9,3,-74.582733,-9,-9,-9,2021,6,0,42,0,1,0,0,11.006082,11.006082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.82,53.97,0,1,1,0,0,11,12,4,0,384.5,406307.94,336361.94,105407.15,54528.852,17248.973,876.25323,1999.8911 +12341,15065,26879,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.4753666,8.2774315,0,0,0,-960.61255,0,-9,2,2021,17,5,37,35,1,5,0,15.789991,15.789991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.06,49.02,-9,-9,5,1,1,0,0,10,4,4,1,1266,193182.19,120481.77,0,0,0,0,2597.6006 +12341,15066,26880,-9,-9,26879,1,0,23,0,0,0,1,1,-9,0,4,7.9951081,7.8555431,0,0,0,-932.70197,0,1,2,2021,11,0,4,0,1,2,1,97.714256,97.714256,.05,.05,0,0,0,0,0,0,0,0,0,.0086052343,0,47,58,-9,-9,7,1,1,0,0,1,4,4,1,1442,-221952.69,6287.6563,0,0,0,0,1057.0911 +12342,15067,26881,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1038.0208,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,8.333333333333334,1,1,0,0,7,2,1,1,1087,36547.574,0,0,0,0,0,0 +12343,15068,26882,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-998.39935,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.36,50.02,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,544,75580.789,0,0,0,0,0,1544.6353 +12344,15069,26883,26884,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,6.5099864,6.4392052,6,-8,-34.313583,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4077873,41.58,16.41,68.57000000000001,41.34,8.333333333333334,1,1,0,0,0,5,2,1,1747,895263.25,475520,315146.94,0,0,0,2246.2771 +12344,15069,26884,26883,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,5.5696635,5.7596049,6,8,19.682463,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0804977,68.57000000000001,41.34,41.58,16.41,10,1,1,0,0,0,5,2,1,1747,895263.25,475520,315146.94,0,0,0,2246.2771 +12344,15070,26885,-9,26884,26883,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.5442,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,2,1,803,-246915.06,0,0,0,0,0,0 +12345,15071,26886,26887,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6341672,7.6983318,0,6,1,15.78756,0,3,2,2021,11,0,28,26,1,0,0,6.0790472,6.0790472,0,0,0,0,0,0,0,7,0,0,0,0,0,49.04,55.86,53,55,8.333333333333334,1,1,0,0,7,4,4,1,1317.5,480705.13,54341.84,314626,47184.422,3906.9268,0,2387.1143 +12345,15071,26887,26886,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3825665,8.1935825,0,6,-1,165.80144,0,-9,-9,2021,9,0,40,40,1,1,0,11.665176,11.665176,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.04,55.86,8,4,1,0,0,1,4,4,1,1317.5,480705.13,54341.84,314626,47184.422,3906.9268,0,2387.1143 +12346,15072,26888,26889,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.9511142,5.2739854,56,0,-37.306274,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1.8197249,0,0,1,1,0,0,5.3884892,49.46,35.16,47.02,45.1,8.333333333333334,1,1,0,0,0,7,2,1,614,360713.88,-20841.441,273095.28,0,0,0,2199.3333 +12346,15072,26889,26888,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,0,0,6,0,-57.551678,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,45.1,49.46,35.16,10,1,1,0,0,0,7,2,1,614,360713.88,-20841.441,273095.28,0,0,0,2199.3333 +12347,15073,26890,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1485915,7.1078825,0,0,-1010.3978,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.245729,6.9345903,46.91,41.66,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1358,240678.31,165708.55,129526.15,0,7665.8291,0,773.19891 +12348,15074,26891,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.4528251,6.2240586,0,0,-987.8847,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4085026,6.3530555,36.34,26.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1421,1728924.8,914909.5,581858.31,0,0,0,1484.3767 +12349,15075,26892,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,7.4240446,7.5828242,0,0,-988.65686,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2507725,7.596014,57.41,46.64,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1230,164217.63,67405.602,192157.73,0,0,0,2173.656 +12350,15076,26893,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.9984,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.87,31.31,-9,-9,10,1,1,0,0,0,4,1,1,1264,-36341.371,0,0,0,0,0,846.73187 +12351,15077,26894,26895,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,7.6905594,7.7566619,5.4933929,26,-2,-31.388273,0,-9,-9,2021,12,1,15,40,1,1,0,15.994729,15.994729,0,0,0,0,0,0,0,0,1,1,0,5.6790977,5.1916442,51.13,50.73,51.57,44.14,8.333333333333334,1,1,0,0,12,9,4,1,1091.5,2755145,870340.13,1056601.8,0,2999.7007,0,4361.7441 +12351,15077,26895,26894,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.8419352,7.8553362,26,2,28.799051,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3241172,7.9566016,51.57,44.14,51.13,50.73,8.333333333333334,1,1,0,0,0,9,4,1,1091.5,2755145,870340.13,1056601.8,0,2999.7007,0,4361.7441 +12352,15078,26896,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.0038624,6.0618052,0,0,-1061.8262,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0279055,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,299,485226.63,144253.09,136028.84,0,0,0,1809.1887 +12353,15079,26897,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2426963,7.3527164,0,0,-857.84631,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2550726,7.0012121,60.26,37,-9,-9,10,1,1,0,0,7,2,3,1,483,552670.56,113374.81,275874.91,0,0,0,400.88071 +12354,15080,26898,26899,-9,-9,1,0,56,0,1,0,2,2,-9,0,1,0,5.8900843,5.7353997,21,-8,-57.607742,0,2,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3531561,31.68,17,43.29,31.87,0,1,1,0,1,0,4,2,0,195.5,34467.332,-50165.863,0,0,0,0,2726.1963 +12354,15080,26899,26898,-9,-9,1,1,64,0,1,0,3,3,-9,0,2,0,6.7747436,7.1382675,21,8,42.17725,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,.05,0,0,0,0,27,1,1,0,6.4196916,6.7759719,43.29,31.87,31.68,17,1.666666666666667,1,1,0,0,7,4,2,0,195.5,34467.332,-50165.863,0,0,0,0,2726.1963 +12355,15081,26900,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.8414,0,3,3,2021,23,10,0,38,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1321411,0,27.65,24.28,-9,-9,3.333333333333333,1,1,0,0,12,7,2,1,2606,76363.422,0,0,0,0,1466.6633,1500.9049 +12356,15082,26901,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.2718601,7.1936302,0,0,0,-1077.1302,0,-9,2,2021,10,1,30,30,1,1,0,5.632134,5.632134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.53,44.55,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,281,-86741.625,64800.898,0,0,0,0,1340.161 +12357,15083,26902,26903,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,10,2,-88.31485,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.2403045,0,53.37,52.37,55.11,47.63,8.333333333333334,1,1,0,0,2,7,4,1,3312,1396671.6,767244,709503.38,0,2355.9978,0,1758.0515 +12357,15083,26903,26902,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.752018,8.6075697,0,10,-2,72.542267,0,2,2,2021,14,2,38,42,1,2,0,16.016729,16.016729,0,0,0,0,0,0,0,0,0,0,0,3.8373382,0,55.11,47.63,53.37,52.37,8.333333333333334,1,1,0,0,9,7,4,1,3312,1396671.6,767244,709503.38,0,2355.9978,0,1758.0515 +12358,15084,26904,26905,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1677065,7.9900551,0,9,-12,56.906467,0,2,2,2021,9,0,50,40,1,0,0,9.1555262,9.1555262,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,54.26,46.26,52.9,8.333333333333334,1,1,0,0,9,11,4,1,989.5,-94520.578,-43048.695,0,0,0,6796.2129,2027.9244 +12358,15084,26905,26904,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.9801617,7.2180052,0,9,12,-194.46103,0,2,2,2021,11,0,10,0,1,0,0,13.628563,13.628563,0,0,0,0,0,0,0,0,0,0,0,0,0,46.26,52.9,52.51,54.26,10,1,1,0,0,7,11,4,1,989.5,-94520.578,-43048.695,0,0,0,6796.2129,2027.9244 +12358,15085,26906,-9,26905,26904,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1052.9409,-9,3,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.14,53.66,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,160,-7014.1929,0,0,0,0,0,505.79025 +12359,15086,26907,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.8891072,6.9880962,0,0,0,-964.46179,0,2,-9,2021,10,0,30,25,1,0,0,4.9972739,4.9972739,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,1,10,11,2,0,410,0,0,0,0,0,0,960.88342 +12360,15087,26908,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.8403158,5.7558112,0,0,-869.42926,0,2,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3479066,5.9612923,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,754,727382.19,176721.02,150265.02,0,0,0,1564.46 +12360,15088,26909,-9,26908,-9,1,1,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-1018.7781,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.72680032,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,3714,-146106.98,0,0,0,0,0,-291.55093 +12361,15089,26910,26911,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.2611241,6.1635714,44,-2,-93.095306,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3953049,6.2209592,48.81,59.91,62.49,55.09,8.333333333333334,1,1,0,0,5,9,2,1,1041.5,912011.88,107722.98,544167.56,0,0,0,1615.2502 +12361,15089,26911,26910,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.1019216,6.0990119,6,2,5.7911839,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,7.4078569,0,0,1,1,0,6.3406553,6.1595964,62.49,55.09,48.81,59.91,0,1,1,0,0,0,9,2,1,1041.5,912011.88,107722.98,544167.56,0,0,0,1615.2502 +12362,15090,26912,26913,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1103377,7.2072382,0,31,1,14.182142,0,3,3,2021,8,0,35,24,1,0,0,3.9746115,3.9746115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,49.35,59.64,8.333333333333334,1,1,0,0,13,12,4,1,2355,487982.06,248737.28,145549.52,0,0,0,2309.5425 +12362,15090,26913,26912,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2829151,8.3241034,0,28,-1,75.912079,0,3,3,2021,11,0,70,70,1,0,0,6.6123605,6.6123605,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,55.96,49.93,8.333333333333334,1,1,0,0,13,12,4,1,2355,487982.06,248737.28,145549.52,0,0,0,2309.5425 +12363,15091,26914,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8488917,7.8147774,0,0,-967.7077,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2010231,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1849,639218,423149.31,199829.7,0,0,0,2872.2966 +12364,15092,26915,-9,26917,26918,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1077.2799,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.9604882,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26916,-9,26917,26918,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.7616,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26917,26918,-9,-9,1,0,54,0,2,0,2,2,-9,0,4,7.8876286,7.5219426,0,30,2,-78.64048,0,3,3,2021,10,0,30,18,1,0,0,9.6793289,9.6793289,.05,.05,0,0,0,0,0,0,1,1,0,.22172409,0,48.87,58.55,57.16,56.15,5,1,1,0,0,8,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26918,26917,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.2332478,8.4485731,0,30,-2,32.216984,0,2,3,2021,7,0,60,60,1,0,0,8.1160879,8.1160879,.05,.05,0,0,0,0,0,0,1,1,0,1.3144869,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12365,15093,26919,26920,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.3745689,7.4122787,11,11,-83.586197,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6244664,53,46,57.16,56.15,8,1,1,0,0,2,13,3,1,555.5,240524.69,99706.227,64596.777,0,0,0,2447.5137 +12365,15093,26920,26919,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.3876061,4.2952614,11,-11,114.56998,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2711101,57.16,56.15,53,46,8.333333333333334,1,1,0,0,2,13,3,1,555.5,240524.69,99706.227,64596.777,0,0,0,2447.5137 +12366,15094,26921,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.3122425,6.2759557,0,0,-915.6908,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1877837,33.62,43.84,-9,-9,5,1,1,0,0,0,7,2,1,4242,175404,0,282308.97,0,0,0,1272.1379 +12367,15095,26922,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7904835,6.7785506,0,0,-976.19684,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4582527,6.5546279,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,9,8,2,1,889,3509603.3,21440.5,1598785.9,0,0,0,490.20764 +12368,15096,26923,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.185214,8.2007389,0,0,0,-891.65436,0,2,3,2021,11,2,51,55,1,2,0,9.5967531,9.5967531,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,6439,256770.44,94816.188,0,0,0,0,1351.85 +12369,15097,26924,26925,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.0147052,6.160243,5,6,118.44048,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6684468,6.3263841,57.57,49.69,57.16,56.15,5,3,4,0,0,6,6,3,1,509.5,577386.38,348805.53,0,0,7896.3018,0,1596.2573 +12369,15097,26925,26924,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.0103159,7.9375362,0,5,-6,-8.7263756,0,3,3,2021,7,0,38,37,1,0,0,7.8577499,7.8577499,.05,.05,0,0,0,0,0,0,1,1,0,4.6962366,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,7,6,3,1,509.5,577386.38,348805.53,0,0,7896.3018,0,1596.2573 +12370,15098,26926,26929,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.3667803,8.3565512,0,19,-5,-151.14711,0,-9,-9,2021,8,0,40,55,1,0,0,14.383976,14.383976,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,14,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26927,-9,26929,26926,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1076.1901,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2147231,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26928,-9,26929,26926,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.71997,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26929,26926,-9,-9,1,0,54,0,2,0,2,2,-9,0,4,7.9109526,7.4949508,0,19,5,10.43376,0,2,1,2021,7,0,26,30,1,0,0,11.86131,11.86131,0,0,0,0,0,0,0,0,0,0,0,7.7281342,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12371,15099,26930,26931,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.9775915,8.4114428,7.7569957,11,-7,103.58552,0,2,2,2021,7,0,36,36,1,0,0,10.168097,10.168097,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5449047,57.16,56.15,52.83,45.73,8.333333333333334,1,1,0,0,12,10,4,1,565.5,772029.25,516361.63,149072.48,0,1162.2407,1155.2941,2325.4456 +12371,15099,26931,26930,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,11,7,106.88522,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.83,45.73,57.16,56.15,10,1,1,0,0,8,10,4,1,565.5,772029.25,516361.63,149072.48,0,1162.2407,1155.2941,2325.4456 +12372,15100,26932,26933,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.4713116,5.9209428,8,-2,69.199379,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83675057,6.2394352,61.09,31.59,60.45,46.42,8.333333333333334,1,1,0,0,12,5,2,1,660.5,735684.63,96879,391730.5,0,0,0,1304.2922 +12372,15100,26933,26932,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,8,2,38.404263,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,38.224545,0,0,1,1,0,1.2729183,0,60.45,46.42,61.09,31.59,10,1,1,0,0,10,5,2,1,660.5,735684.63,96879,391730.5,0,0,0,1304.2922 +12373,15101,26934,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-913.99835,-9,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.64,15.97,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,3450,154430.97,0,0,0,0,8629.7178,1534.5393 +12374,15102,26935,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.6438031,7.4384217,0,0,-869.00037,0,1,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0426683,7.5783701,51.41,45.62,-9,-9,5,1,1,0,0,5,7,3,1,695,987510,514111.59,284775.47,0,0,0,1910.0819 +12375,15103,26936,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.3784399,8.4816694,0,0,0,-1087.6324,0,-9,2,2021,15,3,40,40,1,3,0,14.01759,14.01759,0,0,0,0,0,0,0,0,0,0,0,3.2364843,0,43.83,55.87,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,116,200922.36,0,0,0,0,0,980.43658 +12376,15104,26937,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,6.9876022,6.9280534,0,0,0,-1067.951,0,2,3,2021,29,10,25,12,1,10,0,6.2601862,6.2601862,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.2,56.57,-9,-9,5,1,1,0,0,3,13,2,0,130,-31696.945,0,0,0,0,0,2170.6182 +12377,15105,26938,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.6067696,7.2740183,0,0,-1014.3309,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,24.282005,0,0,1,1,0,5.572681,7.0564623,41.28,27.39,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,2883,96526.227,0,0,0,0,0,1906.2881 +12378,15106,26939,-9,26941,26940,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0529,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12378,15106,26940,26941,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6074915,8.1443453,0,9,7,-7.6652145,0,2,1,2021,9,0,40,55,1,0,0,19.983713,19.983713,.05,.05,0,0,0,0,0,2,1,1,0,2.1650853,0,51.47,53.17,58.75,48.57,8.333333333333334,1,1,0,0,8,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12378,15106,26941,26940,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.1515455,9.1768551,0,9,-7,17.271065,0,-9,-9,2021,11,2,39,33,1,2,0,23.526346,23.526346,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.75,48.57,51.47,53.17,8.333333333333334,1,1,0,0,10,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12379,15107,26942,26944,-9,-9,1,0,51,0,1,0,1,1,-9,1,4,0,0,0,24,-5,78.091942,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.83,57.2,61.11,48.86,8.333333333333334,1,1,0,0,0,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15107,26943,-9,26942,26944,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-960.18243,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15107,26944,26942,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.4633169,8.284771,0,24,5,60.42424,0,2,1,2021,6,0,37,39,1,0,0,15.640886,15.640886,.05,.05,0,0,0,0,0,89,1,1,0,0,0,61.11,48.86,51.83,57.2,8.333333333333334,1,1,0,0,12,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15108,26945,-9,26942,26944,1,1,22,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1017.0958,-9,1,1,2021,11,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4596002,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,532,-52215.781,0,0,0,0,0,882.53223 +12380,15109,26946,26947,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.1929679,7.428544,0,30,-3,-78.904732,0,2,2,2021,11,0,24,30,1,0,0,6.3006778,6.3006778,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,55.96,49.93,8.333333333333334,1,1,0,0,9,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12380,15109,26947,26946,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,30,3,-22.566406,0,2,2,2021,7,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,45.58,47.97,8.333333333333334,1,1,1,0,3,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12380,15109,26948,-9,26946,26947,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.53931,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12381,15110,26949,26950,-9,-9,1,0,52,0,0,0,1,1,-9,1,1,0,5.0336738,5.0581079,24,4,-6.7499948,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8035364,0,42.34,18.5,48,51,3.333333333333333,2,3,0,0,5,2,3,1,1184.5,523729.59,300562.84,222434.88,29634.129,8753.5332,0,2028.0408 +12381,15110,26950,26949,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.8472285,7.8135972,0,24,-4,-134.62653,0,3,3,2021,11,0,39,40,1,2,0,8.8815107,8.8815107,.05,.05,0,0,0,0,0,42,1,1,0,0,0,48,51,42.34,18.5,7,2,3,0,0,13,2,3,1,1184.5,523729.59,300562.84,222434.88,29634.129,8753.5332,0,2028.0408 +12381,15111,26951,-9,26949,26950,1,0,22,0,0,0,1,1,1,0,2,8.0566931,8.1768341,0,0,0,-1003.9039,-9,1,2,2021,19,7,37,0,1,7,1,12.538646,12.538646,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.91,48.45,-9,-9,5,2,3,0,0,1,2,4,1,424,255694.81,58665.852,0,0,0,0,1757.0897 +12381,15112,26952,-9,26949,26950,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.82086,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,2,3,0,0,1,2,1,1,1202,4957.2749,0,0,0,0,0,0 +12382,15113,26953,26954,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9804072,8.124053,0,3,-1,-53.114014,0,-9,-9,2021,10,0,40,40,1,1,0,6.7938967,6.7938967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,56,46.63,59.72,8,4,1,0,0,1,12,5,1,689.5,367076.19,75869.078,226857.25,110834.41,0,0,3853.6992 +12382,15113,26954,26953,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.0085831,8.8484535,0,3,1,-59.637569,0,2,3,2021,14,3,50,55,1,3,0,20.29188,20.29188,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49,56,5,1,1,0,0,7,12,5,1,689.5,367076.19,75869.078,226857.25,110834.41,0,0,3853.6992 +12383,15114,26955,26956,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.520586,8.2158947,6,13,208.36026,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6174419,8.028944,59.64,29.24,52,45,8.333333333333334,1,1,0,0,0,4,3,1,450.5,1266790.8,336533.31,418853.44,0,0,0,2419.2263 +12383,15114,26956,26955,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.6305103,4.8894196,6,-13,43.032509,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6958251,52,45,59.64,29.24,8,1,1,0,0,0,4,3,1,450.5,1266790.8,336533.31,418853.44,0,0,0,2419.2263 +12384,15115,26957,26960,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.2181244,8.3958454,0,6,-2,-110.83047,0,2,2,2021,19,7,43,38,1,7,0,8.9289551,8.9289551,0,0,0,0,0,0,0,0,1,1,0,0,0,29.63,55.43,51.24,58.84,3.333333333333333,1,1,0,0,7,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26958,-9,26957,26960,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.97589,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26959,-9,26957,26960,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.54626,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26960,26957,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.8840971,7.9996786,0,6,2,69.81517,0,2,-9,2021,12,0,40,0,1,0,0,8.7677536,8.7677536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,29.63,55.43,8.333333333333334,1,1,0,0,5,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12385,15116,26961,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1022.4131,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,19.7,-9,-9,6.666666666666667,2,3,0,0,0,4,2,0,790,-100418.01,0,0,0,0,0,1227.9487 +12386,15117,26962,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.7231479,5.9068389,0,0,-942.98035,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8073487,5.915854,54.58,14.54,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1203,92420.359,49669.656,0,0,9799.1875,0,664.24554 +12387,15118,26963,26964,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.1143365,6.9049101,55,9,42.078712,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4519019,6.9399581,50.75,39.21,48.71,51.81,6.666666666666667,1,1,0,0,0,1,2,1,465.5,121901.26,47778.379,134421.06,0,0,0,2849.8789 +12387,15118,26964,26963,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,0,-132.97563,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6710076,0,48.71,51.81,50.75,39.21,8.333333333333334,1,1,0,0,3,1,2,1,465.5,121901.26,47778.379,134421.06,0,0,0,2849.8789 +12388,15119,26965,26966,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4375143,8.5747795,0,7,-5,-12.796181,0,-9,-9,2021,6,0,40,40,1,0,0,16.367933,16.367933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54,55,10,3,4,0,0,9,8,5,0,492,387922.88,223097.75,589585.13,47477.734,0,0,3430.873 +12388,15119,26966,26965,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2115822,8.5084066,0,28,5,-94.103592,0,1,1,2021,2,0,41,40,1,0,0,12.280774,12.280774,0,0,0,0,0,0,0,0,0,0,0,0,0,54,55,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,0,492,387922.88,223097.75,589585.13,47477.734,0,0,3430.873 +12388,15120,26967,-9,26966,26965,1,0,24,0,0,0,2,2,-9,0,4,7.8534584,7.6420941,0,0,0,-1012.6694,0,2,1,2021,14,2,35,19,1,2,1,6.3548398,6.3548398,0,0,0,0,0,0,0,0,0,0,0,0,0,29.95,63.61,-9,-9,3.333333333333333,3,4,0,0,5,8,3,0,208,85698.477,-46483.84,0,0,0,0,598.90198 +12389,15121,26968,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.3619909,7.2988796,0,0,0,-1037.9928,0,-9,-9,2021,8,0,19,0,1,0,0,9.354043,9.354043,.05,.05,0,0,0,0,0,0,0,0,0,.88150537,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,536,-165830.63,2332.4214,0,0,3680.8127,0,477.26767 +12390,15122,26969,26970,-9,-9,1,1,61,0,1,0,1,1,-9,0,3,0,8.1542892,7.806304,31,9,-158.08121,0,2,2,2021,5,0,0,45,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9393349,8.1661396,55.96,49.93,55.23,32.92,10,1,1,0,0,9,13,3,1,503.5,1310980.3,941460.13,278158.84,0,0,0,2270.251 +12390,15122,26970,26969,-9,-9,1,0,52,0,1,0,2,2,-9,0,2,7.1177897,7.009913,0,31,0,71.399452,0,2,2,2021,8,0,22,22,1,0,0,7.8102789,7.8102789,0,0,0,0,0,0,0,2,1,1,0,0,0,55.23,32.92,55.96,49.93,8.333333333333334,1,1,0,0,10,13,3,1,503.5,1310980.3,941460.13,278158.84,0,0,0,2270.251 +12390,15123,26971,-9,26972,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.65192,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,386.5,-77017.227,0,0,0,0,0,944.1145 +12390,15123,26972,-9,26970,26969,1,0,26,0,1,0,2,2,1,0,2,0,6.2381344,6.3719668,0,0,-931.53729,-9,2,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0844264,0,40.88,41.16,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,386.5,-77017.227,0,0,0,0,0,944.1145 +12391,15124,26973,-9,26975,26974,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.5635,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15124,26974,26975,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.2551441,8.0288124,0,7,-6,55.087105,0,-9,-9,2021,12,0,40,40,1,0,0,8.4546738,8.4546738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.69,48.95,44.41,43.96,3.333333333333333,1,1,0,0,6,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15124,26975,26974,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.9343967,8.1512747,6.5568552,7,6,169.38977,0,-9,3,2021,13,1,35,35,1,1,0,7.1415696,7.1415696,0,0,0,0,0,0,0,0,1,1,0,6.9034252,0,44.41,43.96,31.69,48.95,8.333333333333334,1,1,0,0,7,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15125,26976,-9,26975,26974,1,0,20,0,1,0,2,2,-9,0,2,7.1508069,6.8604074,0,0,0,-1287.2896,0,2,2,2021,12,0,17,0,1,0,1,6.0869837,6.0869837,0,0,0,0,0,0,0,0,1,1,0,0,0,18.73,52.8,-9,-9,0,1,1,0,0,0,7,2,0,83,92799.43,0,0,0,0,726.37152,425.70773 +12392,15126,26977,-9,26979,26978,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12392,15126,26978,26979,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.8436413,8.9453306,0,6,6,-14.16779,0,-9,-9,2021,9,0,49,49,1,0,0,15.76156,15.76156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,33.64,53.56,6.666666666666667,1,1,0,0,11,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12392,15126,26979,26978,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.8845558,8.8272133,0,6,-6,-37.209187,0,2,1,2021,23,10,53,40,1,10,0,14.513927,14.513927,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.64,53.56,43.71,56.91,6.666666666666667,1,1,0,0,11,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12393,15127,26980,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1026.0825,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,125.94981,0,0,1,1,0,0,0,68.42,9.200000000000001,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,780,152163.25,0,0,0,0,0,1216.6781 +12393,15128,26981,-9,26980,-9,1,1,33,0,0,0,1,1,-9,0,3,8.4070511,8.1754751,0,0,0,-923.5191,0,2,2,2021,23,7,50,70,1,7,0,12.956877,12.956877,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.34,56.62,-9,-9,10,3,4,0,0,5,8,5,0,1147,157437.73,119133.2,300182.69,193613.19,0,0,1884.4063 +12393,15128,26982,-9,-9,26981,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1096.1769,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,5,0,1147,157437.73,119133.2,300182.69,193613.19,0,0,1884.4063 +12394,15129,26983,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-991.34619,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0693073,0,47.2,34.16,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,342,-26514.328,77216.758,0,0,0,0,-750.87476 +12395,15130,26984,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.9110436,7.9541616,0,0,-1073.7456,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.71631,7.9711576,58.47,44.69,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,314,934268.5,265087.44,482409.25,0,13519.078,0,2401.7749 +12396,15131,26985,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,7.9010696,7.9557805,0,0,0,-906.46454,0,2,3,2021,15,2,44,45,1,2,0,6.9676065,6.9676065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.92,45.61,-9,-9,3.333333333333333,1,1,0,0,10,10,4,0,153,-87061.578,22646.502,0,0,0,0,1202.5131 +12397,15132,26986,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-971.45709,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.95,52.58,-9,-9,5,1,1,0,0,0,12,1,0,1002,-220644.53,0,0,0,0,0,1773.1393 +12398,15133,26987,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,8.0966873,8.4095068,5.8157797,0,0,-1015.7255,0,2,2,2021,6,0,25,25,1,0,0,18.253216,18.253216,.05,.05,0,0,0,0,0,0,1,1,0,0,5.6181521,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,1079,278415.81,68659.242,0,0,0,0,1812.1364 +12399,15134,26988,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6452985,7.4848804,0,0,0,-952.14227,0,2,2,2021,11,0,38,40,1,0,0,5.3884678,5.3884678,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.49,42.78,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,3343,-38977.586,9040.6553,0,0,0,1557.1439,899.01508 +12399,15135,26989,-9,26988,-9,1,0,24,0,0,0,1,1,-9,0,3,7.1723919,7.4371395,0,0,0,-1040.3096,0,2,-9,2021,10,0,20,0,1,0,1,6.3487492,6.3487492,0,0,0,0,0,0,0,0,1,0,1,.066918291,0,35.9,60.41,-9,-9,6.666666666666667,1,1,0,0,2,9,3,0,1110,-184440.27,0,0,0,39347.539,0,688.92078 +12400,15136,26990,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.3629613,7.1636095,0,0,-1132.6273,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8957763,7.4908552,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,418,2487035.8,957594.94,769362.25,0,0,0,2304.7102 +12401,15137,26991,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1047.3857,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,12,1,1,234,107691.44,0,0,0,0,0,353.20255 +12402,15138,26992,26993,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,0,0,11,0,-17.76626,0,-9,2,2021,31,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20.84,23.2,48.28,60.18,3.333333333333333,1,1,0,1,0,13,3,1,1258.5,861592.38,491052.25,243628.03,0,0,0,1734.8831 +12402,15138,26993,26992,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.5967574,7.8303676,0,11,0,-12.166677,0,3,2,2021,12,3,60,55,1,3,0,4.0189581,4.0189581,0,0,0,0,0,0,0,14.5,1,0,1,.89314842,0,48.28,60.18,20.84,23.2,3.333333333333333,1,1,0,1,12,13,3,1,1258.5,861592.38,491052.25,243628.03,0,0,0,1734.8831 +12402,15139,26994,-9,26992,26993,1,0,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-971.60553,0,1,1,2021,23,8,0,12,3,8,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,41.45,54.15,-9,-9,5,1,1,0,0,2,13,1,1,425,-148826.45,0,0,0,261.59631,0,1163.1112 +12403,15140,26995,-9,26996,26997,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.2919,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12403,15140,26996,26997,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,7.3416224,7.3651581,19,-1,-3.4482172,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1160202,0,52,54.51,43.03,53.23,8.333333333333334,1,1,0,0,0,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12403,15140,26997,26996,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,9.0384197,9.0501423,0,19,1,-116.44244,0,2,1,2021,8,0,40,40,1,0,0,29.034353,29.034353,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.03,53.23,52,54.51,5,1,1,0,0,9,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12404,15141,26998,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0003409,7.1154528,0,0,-1139.4419,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7477721,7.0849719,49,47,-9,-9,7,1,1,0,0,0,2,3,1,1227,41222.605,244997.23,202674.25,0,0,0,714.69958 +12405,15142,26999,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.9302316,7.7287545,0,0,-1034.5125,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2330713,47.52,47.13,-9,-9,10,1,1,0,0,0,9,4,1,389,2333415.5,156671.39,687481.63,0,0,0,1745.5343 +12406,15143,27000,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9329777,8.859271,0,0,0,-1129.8673,0,3,2,2021,12,0,39,39,1,0,0,17.71558,17.71558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3.333333333333333,1,1,0,0,11,12,5,1,403,402112.94,188749.72,160504.84,26337.77,0,27502.871,2410.5054 +12407,15144,27001,27002,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.4938755,9.5730686,0,12,-3,45.455452,0,-9,-9,2021,9,0,40,42,1,0,0,32.723286,32.723286,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.58,55.59,52.15,32.92,8.333333333333334,1,1,0,0,13,10,5,1,447,488706.38,111442.16,315491.44,212728.84,0,0,5059.1245 +12407,15144,27002,27001,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.1387482,7.5493045,5.5241399,36,3,-249.31618,0,-9,2,2021,11,2,11,10,1,2,0,15.44225,15.44225,0,0,.05,0,0,0,0,0,0,0,0,0,5.9509873,52.15,32.92,49.58,55.59,10,1,1,0,0,11,10,5,1,447,488706.38,111442.16,315491.44,212728.84,0,0,5059.1245 +12408,15145,27003,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-979.01001,0,3,-9,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,13.916503,0,0,1,1,0,0,0,46.7,20.01,-9,-9,3.333333333333333,1,1,0,0,6,2,1,0,482,122672.99,0,0,0,0,0,1976.4836 +12409,15146,27004,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.915781,7.5581884,0,0,0,-997.15686,0,-9,2,2021,12,0,34,34,1,0,0,7.3771591,7.3771591,.05,.05,0,0,0,0,.35463774,0,0,0,0,0,0,35.24,56.7,-9,-9,5,1,1,0,0,6,12,3,0,953,44054.598,-8396.252,91036.594,0,0,0,1355.5154 +12409,15147,27005,-9,27004,-9,1,0,24,0,0,0,1,1,-9,0,4,8.40662,8.5397348,0,0,0,-1009.8577,0,1,-9,2021,8,0,35,0,1,0,1,12.149961,12.149961,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,0,12,4,0,1754,-71427.406,0,0,0,0,0,1994.3489 +12410,15148,27006,-9,27008,27009,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.64752,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27007,-9,27008,27009,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.48688,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27008,27009,-9,-9,1,0,34,1,2,0,2,2,-9,0,5,8.0153885,8.0337667,0,4,-18,-61.38258,0,-9,-9,2021,12,0,36,24,1,0,0,12.326459,12.326459,.05,.05,0,0,0,0,0,0,1,1,0,7.1736054,0,39.66,61.49,47.99,57.75,8.333333333333334,1,1,0,0,7,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27009,27008,-9,-9,1,1,52,1,2,0,2,2,-9,0,5,8.2747564,7.9283609,0,4,18,128.04428,0,2,1,2021,12,1,40,50,1,1,0,12.730845,12.730845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.99,57.75,39.66,61.49,8.333333333333334,1,1,0,0,12,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12411,15149,27010,-9,27013,27011,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-876.39612,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27011,27013,-9,-9,1,1,38,1,3,0,1,1,-9,0,3,8.4790277,8.3525133,0,6,1,7.8411107,0,-9,-9,2021,18,7,42,37,1,7,0,12.555107,12.555107,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,34.89,55.63,6.666666666666667,1,1,0,0,7,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27012,-9,27013,27011,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.88947,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27013,27011,-9,-9,1,0,37,1,3,0,1,1,-9,0,3,7.8984733,7.779356,0,6,-1,-49.178322,0,2,3,2021,22,10,16,16,1,10,0,16.764347,16.764347,0,0,0,0,0,0,0,0,1,1,0,0,0,34.89,55.63,47.07,53.97,3.333333333333333,1,1,0,0,7,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27014,-9,27013,27011,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.2278,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12412,15150,27015,27016,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.941967,7.3615155,0,6,0,90.041,0,-9,-9,2021,12,0,26,20,1,0,0,4.8477979,4.8477979,0,0,0,0,0,0,0,0,0,0,0,0,0,38.98,44.11,48.48,47.99,5,1,1,0,0,9,11,3,1,588.5,-7237.7803,0,0,0,0,0,1987.2463 +12412,15150,27016,27015,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.6407695,7.8814464,0,6,0,30.064707,0,-9,-9,2021,12,0,40,45,1,0,0,7.7698326,7.7698326,0,0,0,0,0,0,0,0,0,0,0,0,0,48.48,47.99,38.98,44.11,8.333333333333334,1,1,0,0,9,11,3,1,588.5,-7237.7803,0,0,0,0,0,1987.2463 +12412,15151,27017,-9,27015,27016,1,0,23,0,0,0,2,2,-9,0,4,7.8775072,7.724422,0,0,0,-968.61792,-9,3,3,2021,11,0,36,0,1,2,1,8.5653057,8.5653057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,11,3,1,3564,-197936.55,-10705.462,0,0,4817.478,0,1295.6201 +12413,15152,27018,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5237193,7.3840432,0,0,0,-991.93445,0,3,3,2021,10,0,20,18,1,0,0,8.4802437,8.4802437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,5,0,0,9,8,3,1,165,365090.28,14682.221,176596.02,0,0,0,524.62579 +12414,15153,27019,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.9038448,5.4842696,0,0,-1025.2188,-9,2,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,72.830444,0,0,1,1,0,5.8353066,6.2133961,56.01,34.94,-9,-9,10,1,1,0,0,0,9,2,1,1266,119999.18,-15174.734,0,0,0,0,278.06326 +12415,15154,27020,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.1068392,8.9645252,0,0,0,-1035.9739,0,-9,-9,2021,11,1,44,37,1,1,0,19.286161,19.286161,.05,.05,0,0,0,0,0,0,0,0,0,9.8933697,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,150,944326.06,366675.22,252243.81,12907.43,0,0,40140.977 +12416,15155,27021,27022,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4539909,8.407052,50,2,-55.469082,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7528296,8.5338469,56.44,52.37,58.3,52.91,8.333333333333334,1,1,0,0,0,12,4,1,2192.5,1272072.3,751706.38,389591.31,0,7630.7275,0,4590.8262 +12416,15155,27022,27021,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.4605474,7.4423041,50,-2,-21.361271,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6686172,7.6206889,58.3,52.91,56.44,52.37,10,1,1,0,0,0,12,4,1,2192.5,1272072.3,751706.38,389591.31,0,7630.7275,0,4590.8262 +12417,15156,27023,27024,-9,-9,1,1,35,2,6,0,2,2,-9,0,4,0,0,0,7,6,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.93,54.76,68.03,40.23,5,1,1,1,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27024,27023,-9,-9,1,0,29,2,6,0,2,2,-9,0,4,0,0,0,7,-6,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.03,40.23,44.93,54.76,10,1,1,0,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27025,-9,27024,27023,1,0,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-901.961,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27026,-9,27024,27023,1,0,11,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1228.4363,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27027,-9,27024,27023,1,0,4,2,6,1,3,0,-9,0,4,0,0,0,0,0,-979.67059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27028,-9,27024,27023,1,0,10,2,6,1,3,0,-9,0,4,0,0,0,0,0,-970.07953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27029,-9,27024,27023,1,0,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-875.71094,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27030,-9,27024,27023,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-893.0697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12418,15157,27031,27032,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.8753018,7.8963094,0,16,2,-32.603535,0,2,-9,2021,11,0,30,30,1,0,0,9.631815,9.631815,0,0,0,0,0,0,0,0,0,0,0,0,0,41.12,37.78,42.72,45.33,5,4,2,0,0,14,8,4,0,484,629611.25,172692.19,523524.19,39459.082,0,0,3255.4043 +12418,15157,27032,27031,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.3523607,8.6881065,0,16,-2,77.606682,0,2,-9,2021,12,0,48,38,1,0,0,11.201336,11.201336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,45.33,41.12,37.78,3.333333333333333,4,2,0,0,15,8,4,0,484,629611.25,172692.19,523524.19,39459.082,0,0,3255.4043 +12419,15158,27033,27034,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-70.830521,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1702327,0,59.71,50.89,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,1093,835502.25,451245.66,449142.69,0,0,0,1353.5708 +12419,15158,27034,27033,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.4445543,7.5988665,8,4,-79.59285,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8335328,7.7642479,54.2,57.49,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,1093,835502.25,451245.66,449142.69,0,0,0,1353.5708 +12420,15159,27035,27036,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.523684,7.3423162,48,14,-135.86615,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.9231329,52.64,38.41,13.82,37.14,5,1,1,0,0,0,1,2,1,517,971957,394824.19,172053.84,0,0,0,1923.4614 +12420,15159,27036,27035,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,48,-14,-61.524837,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,33.877464,0,0,1,1,0,0,0,13.82,37.14,52.64,38.41,0,1,1,0,0,0,1,2,1,517,971957,394824.19,172053.84,0,0,0,1923.4614 +12421,15160,27037,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-895.80139,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2311203,0,42,40,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,2125,0,0,0,0,0,0,1451.3138 +12422,15161,27038,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7958937,7.9132929,0,0,-1127.2075,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7981863,7.873807,58.15,52.91,-9,-9,8.333333333333334,2,3,0,0,5,8,3,1,1469,563391.88,498302.72,325217.81,0,0,0,2434.9092 +12423,15162,27039,27040,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9134965,7.0877447,23,-3,-193.47501,0,1,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6978784,7.1494961,52.94,41.91,58.89,48.6,8.333333333333334,1,1,0,0,6,10,3,1,1275,1275820.1,719062.5,352035.38,0,0,0,2243.2939 +12423,15162,27040,27039,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.9917765,7.4837399,16,3,-74.844963,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5297227,7.8552022,58.89,48.6,52.94,41.91,8.333333333333334,1,1,0,0,0,10,3,1,1275,1275820.1,719062.5,352035.38,0,0,0,2243.2939 +12424,15163,27041,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3192959,8.2989998,0,0,0,-1038.8136,0,-9,-9,2021,6,0,40,40,1,0,0,11.851976,11.851976,0,0,0,0,0,0,0,0,0,0,0,.10678163,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,4885,18256.334,0,34056.027,0,0,0,2077.0635 +12425,15164,27042,-9,27043,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.59039,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,1,664.5,45537.984,-31746.125,0,0,0,1593.0198,1112.226 +12425,15164,27043,-9,-9,-9,1,0,30,1,1,0,2,2,-9,0,2,7.5303988,7.6703959,0,0,0,-1009.4045,-9,1,2,2021,20,8,37,0,1,8,0,6.535655,6.535655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.82,51.63,-9,-9,5,1,1,0,0,14,7,3,1,664.5,45537.984,-31746.125,0,0,0,1593.0198,1112.226 +12426,15165,27044,27045,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9007502,7.8181419,5.8230443,36,-5,-14.53971,0,2,2,2021,19,9,37,0,1,9,0,7.7425032,7.7425032,0,0,0,0,0,0,0,0,0,0,0,0,5.668581,46.9,56.66,48.25,45.62,8.333333333333334,1,1,0,0,13,7,3,1,858.5,2968786.8,1544573.9,650882.69,0,0,2254.5078,3208.6423 +12426,15165,27045,27044,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,6.7419672,6.7066889,12,5,42.98542,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1670914,6.8285022,48.25,45.62,46.9,56.66,8.333333333333334,1,1,0,0,12,7,3,1,858.5,2968786.8,1544573.9,650882.69,0,0,2254.5078,3208.6423 +12427,15166,27046,27047,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,9,-3,-4.7673693,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,24.313278,0,0,1,1,0,7.1083121,0,37.2,22.33,59.56,32.49,3.333333333333333,1,1,0,0,0,5,3,1,1290,1130524.6,1011129.4,281639.13,0,1487.4849,0,3533.2637 +12427,15166,27047,27046,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.1348124,7.9847078,9,3,-93.64032,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7326279,8.4354429,59.56,32.49,37.2,22.33,8.333333333333334,1,1,0,0,1,5,3,1,1290,1130524.6,1011129.4,281639.13,0,1487.4849,0,3533.2637 +12428,15167,27048,27049,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,12,8,-6.7030096,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,2.9362161,0,36.75,46.68,38.33,49.84,5,1,1,0,0,12,8,2,1,360,1023176.7,361501.13,497250.91,0,0,0,825.9021 +12428,15167,27049,27048,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0266447,7.0841298,0,41,-8,34.906036,0,3,3,2021,19,7,17,16,1,7,0,7.6739745,7.6739745,0,0,0,0,0,0,0,0,1,1,0,2.5943103,0,38.33,49.84,36.75,46.68,6.666666666666667,1,1,0,0,12,8,2,1,360,1023176.7,361501.13,497250.91,0,0,0,825.9021 +12429,15168,27050,27051,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,9.0924654,9.0340061,6.3487954,7,-7,-130.78918,0,3,3,2021,13,2,60,60,1,2,0,16.360052,16.360052,0,0,0,0,0,0,0,0,1,1,0,1.4410892,6.6600451,53.98,34.81,64.47,51.45,6.666666666666667,1,1,0,0,8,10,5,1,345.5,5620599,2670368,1177769.8,28163.082,0,0,5868.7139 +12429,15168,27051,27050,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.335578,7.8775849,7,7,10.17903,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,8.4817753,64.47,51.45,53.98,34.81,8.333333333333334,1,1,0,0,3,10,5,1,345.5,5620599,2670368,1177769.8,28163.082,0,0,5868.7139 +12430,15169,27052,-9,27053,27054,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1096.505,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12430,15169,27053,27054,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7872143,6.9530811,0,15,-1,85.974792,0,3,3,2021,12,1,40,45,1,1,0,2.4118733,2.4118733,0,0,0,0,0,0,0,0,1,1,0,0,0,47.68,55.12,40.37,39.95,8.333333333333334,1,1,0,1,10,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12430,15169,27054,27053,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.9529848,7.4558687,0,13,1,-64.55983,0,2,2,2021,19,7,48,45,1,7,0,5.065424,5.065424,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,40.37,39.95,47.68,55.12,3.333333333333333,1,1,0,0,8,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12431,15170,27055,27056,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.3075075,8.2083797,11,15,169.85619,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4548512,8.3081541,61.85,47.26,58.32,50.22,10,1,1,0,0,0,9,3,1,1619,1450536.9,761696.44,324369.03,0,0,0,3006.9551 +12431,15170,27056,27055,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,11,-15,40.574642,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3000195,0,58.32,50.22,61.85,47.26,8.333333333333334,1,1,0,0,5,9,3,1,1619,1450536.9,761696.44,324369.03,0,0,0,3006.9551 +12432,15171,27057,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.5647826,7.8093805,5.0293159,0,0,-942.40247,0,2,2,2021,12,0,30,30,1,0,0,7.8738179,7.8738179,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1995325,39.99,30.49,-9,-9,5,1,1,0,0,10,2,3,0,757,122976.69,72276.391,0,0,0,0,378.78979 +12433,15172,27058,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4587564,8.3273678,0,0,0,-1049.7725,0,1,1,2021,11,0,35,35,1,0,0,12.898958,12.898958,.05,.05,0,0,0,0,0,0,1,1,0,3.5624588,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,1079,71579.289,150753.03,0,0,0,2373.4783,1031.813 +12434,15173,27059,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.4014645,7.5860953,0,0,0,-881.46631,-9,-9,-9,2021,10,0,39,0,1,1,0,4.5270514,4.5270514,0,0,.05,0,0,0,0,0,0,0,0,.10242206,0,52,48,-9,-9,7,1,1,0,0,5,4,3,1,1249,759721.19,51132.195,345132.16,0,53089.129,0,695.98621 +12435,15174,27060,27061,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0956907,8.1578798,45,2,212.20766,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5419455,8.1722565,54.02,40.03,58.15,52.91,10,1,1,0,0,0,6,5,1,2136.5,2636622,1625958.8,926134.63,0,0,0,5072.4741 +12435,15174,27061,27060,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.3384953,8.1100912,45,-2,-65.689835,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4454937,8.0374537,58.15,52.91,54.02,40.03,10,1,1,0,0,5,6,5,1,2136.5,2636622,1625958.8,926134.63,0,0,0,5072.4741 +12436,15175,27062,27063,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.39114,8.4280691,7.9246469,1,-8,-5.8075833,-9,-9,-9,2021,5,1,14,0,1,1,0,11.944201,11.944201,0,0,0,0,0,0,0,0,0,0,0,3.3374126,7.9608746,42.44,57.54,35.8,59.5,8.333333333333334,1,1,0,0,1,1,5,1,789,1547442.3,1251960.6,178284.69,0,-1624.9563,0,3621.1084 +12436,15175,27063,27062,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.4299459,7.9681911,1,8,-20.080355,-9,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5904918,7.8898134,35.8,59.5,42.44,57.54,8.333333333333334,1,1,0,0,0,1,5,1,789,1547442.3,1251960.6,178284.69,0,-1624.9563,0,3621.1084 +12437,15176,27064,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.6703501,8.7062855,0,0,0,-1007.4827,0,1,1,2021,21,10,37,38,1,10,0,20.921581,20.921581,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.39,40.89,-9,-9,3.333333333333333,4,2,0,0,13,9,5,1,2370,1034537.4,869060,220758.64,0,20437.387,0,2095.9138 +12438,15177,27065,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.3550396,8.4038258,0,0,0,-956.42072,0,3,2,2021,11,0,37,37,1,0,0,12.814757,12.814757,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,10,8,5,1,1067,76745.5,0,0,0,0,0,1304.4249 +12438,15178,27066,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6502533,8.6340113,0,0,0,-1030.9493,0,2,2,2021,8,0,79,45,1,0,0,6.9546504,6.9546504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,307,8605.4111,84255.492,81158.234,44971.809,5142.6216,2937.4028,1390.446 +12439,15179,27067,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.2374,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.63,45.52,-9,-9,0,2,3,0,0,0,5,1,0,634,-5239.4551,0,0,0,0,0,-58.940075 +12440,15180,27068,27069,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.523119,9.5075016,0,7,2,-133.81975,0,2,2,2021,10,0,55,45,1,1,0,26.796753,26.796753,.05,.05,0,0,0,0,0,0,0,0,0,2.8166835,0,51,56,51.24,58.84,7,1,1,0,0,1,8,5,1,419,750408.5,421854.88,476363.59,269227.09,2597.4409,0,6479.7192 +12440,15180,27069,27068,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.1983252,8.8037815,0,7,-2,32.502335,-9,2,2,2021,9,2,65,0,1,2,0,19.508272,19.508272,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,51,56,8.333333333333334,1,1,0,0,9,8,5,1,419,750408.5,421854.88,476363.59,269227.09,2597.4409,0,6479.7192 +12441,15181,27070,27071,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6794577,8.7507238,0,11,1,26.615808,0,2,1,2021,12,2,45,40,1,2,0,14.58707,14.58707,.05,.05,0,0,0,0,0,0,0,0,0,7.1717114,0,52.88,56.68,0,70.90000000000001,8.333333333333334,1,1,0,0,12,5,5,1,591,728480,494444.31,148605,0,5503.2896,0,8581.916 +12441,15181,27071,27070,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.8297291,9.742754,0,11,-1,-13.777695,0,-9,-9,2021,33,11,45,42,1,11,0,39.783115,39.783115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,0,70.90000000000001,52.88,56.68,1.666666666666667,1,1,0,0,12,5,5,1,591,728480,494444.31,148605,0,5503.2896,0,8581.916 +12441,15182,27072,-9,27071,27070,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.48944,-9,1,2,2021,26,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.37,60.83,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,890,-84810.172,0,0,0,0,0,0 +12442,15183,27073,27074,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.3180609,6.4831905,54,-1,92.046883,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0047464,6.3688936,59.78,35.9,55.36,30.31,8.333333333333334,1,1,0,0,0,10,3,1,240.5,708398.13,332085.19,287963.44,0,0,0,2949.2896 +12442,15183,27074,27073,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.129961,7.9577565,54,1,101.27815,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8903093,7.8199229,55.36,30.31,59.78,35.9,1.666666666666667,1,1,0,0,0,10,3,1,240.5,708398.13,332085.19,287963.44,0,0,0,2949.2896 +12443,15184,27075,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.7759151,8.4879103,8.2996264,0,0,-958.07257,0,2,1,2021,9,0,24,14,1,0,0,13.972854,13.972854,.05,.05,0,0,0,0,0,0,0,0,0,8.1817837,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,515,624181.06,44936.906,416479.72,7171.3325,0,0,2307.325 +12444,15185,27076,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,4.7915249,5.2885675,0,0,-1073.8297,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.6750715,0,24.492979,0,1,1,0,3.8535528,4.7770481,41.56,22.16,-9,-9,6.666666666666667,1,1,0,0,5,4,2,1,1234,199424.56,67200.414,0,0,0,324.28281,1357.3323 +12445,15186,27077,27080,-9,-9,1,1,59,0,2,0,3,3,-9,0,5,7.8469281,7.7113738,0,19,10,-135.09059,0,-9,-9,2021,6,0,36,36,1,0,0,7.3490572,7.3490572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,18.99,61.6,10,1,1,0,0,12,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27078,-9,27080,27077,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-991.23431,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,0,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27079,-9,27080,27077,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.11603,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27080,27077,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,0,0,0,19,-10,57.38541,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3916936,0,18.99,61.6,62.39,56.71,8.333333333333334,1,1,0,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12446,15187,27081,27082,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.4585857,8.6424084,0,4,1,23.271441,0,-9,-9,2021,12,0,45,45,1,0,0,11.888586,11.888586,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,29.57,58.13,8.333333333333334,1,1,0,0,11,9,5,1,772.5,51079.664,132819.34,0,0,0,628.58917,3735.8853 +12446,15187,27082,27081,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.3117609,8.499445,0,4,-1,68.739059,0,-9,-9,2021,16,4,38,38,1,4,0,14.668066,14.668066,0,0,0,0,0,0,0,0,0,0,0,0,0,29.57,58.13,54.96,53.17,6.666666666666667,1,1,0,0,5,9,5,1,772.5,51079.664,132819.34,0,0,0,628.58917,3735.8853 +12447,15188,27083,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4523382,7.2676549,0,0,0,-1051.5487,0,3,2,2021,8,0,40,35,1,0,0,6.7131815,6.7131815,0,0,0,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,828,823172.25,453388.22,262755.13,0,11615.635,0,1458.7893 +12448,15189,27084,27085,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,9,-4,-34.55677,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,29.803307,46.565987,277.02063,0,1,1,0,0,0,37.84,27.49,27.71,29.33,5,2,3,0,0,0,9,2,1,868.5,201887.5,115424.83,59940.469,0,0,0,1916.9246 +12448,15189,27085,27084,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.9627681,6.9991374,61,4,-32.735313,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6801815,0,7,1,1,0,0,7.0155888,27.71,29.33,37.84,27.49,6.666666666666667,2,3,0,0,0,9,2,1,868.5,201887.5,115424.83,59940.469,0,0,0,1916.9246 +12449,15190,27086,-9,27087,27089,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.91351,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27087,27089,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.142417,8.2663565,0,6,-1,33.198235,0,-9,-9,2021,10,0,26,33,1,0,0,17.227482,17.227482,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,8.333333333333334,1,1,0,0,11,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27088,-9,27087,27089,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.58789,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27089,27087,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.1269999,9.1028633,0,6,1,50.44286,0,2,1,2021,12,1,45,43,1,1,0,25.366665,25.366665,.05,.05,0,0,0,0,0,0,1,1,0,3.878166,0,51.83,57.2,49.46,56.91,8.333333333333334,1,1,0,0,9,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12450,15191,27090,27091,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.8403544,7.7922583,0,6,11,45.086468,0,2,1,2021,18,6,30,37,1,6,0,8.9495306,8.9495306,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,37.6,51,56,3.333333333333333,1,1,0,0,7,6,5,1,1198,322669.06,82452.063,154191.63,68488.188,0,0,3628.7705 +12450,15191,27091,27090,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4293919,8.5241175,0,6,-11,-42.831512,0,2,1,2021,9,0,37,37,1,1,0,14.131819,14.131819,.05,.05,0,0,0,0,0,0,0,0,0,.78586781,0,51,56,46.67,37.6,8,1,1,0,0,1,6,5,1,1198,322669.06,82452.063,154191.63,68488.188,0,0,3628.7705 +12451,15192,27092,27094,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,14,-3,74.002884,-9,2,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,55,7,1,1,0,0,2,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27093,-9,27092,27094,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-962.10687,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27094,27092,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,5.7480636,5.7262597,0,14,3,-121.00459,-9,3,3,2021,9,0,40,0,1,1,0,1.1878747,1.1878747,0,0,0,0,0,0,0,0,1,1,0,0,0,51,55,49,55,8,1,1,0,0,11,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27095,-9,27092,27094,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.2631,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27096,-9,27092,27094,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15193,27097,-9,27092,27094,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-978.11896,-9,2,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,5,2,3,0,0,2,5,1,1,326,-152780.17,0,0,0,0,0,-221.96732 +12452,15194,27098,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3433738,6.2997055,0,0,-996.28699,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6824536,51,46,-9,-9,7,1,1,0,0,0,2,2,0,657,156864.81,83287.828,0,0,0,0,3168.813 +12453,15195,27099,27100,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,8.1858072,8.2030973,59,7,-60.220932,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9511163,8.2700891,46.46,14.25,44.17,48.41,6.666666666666667,1,1,0,0,0,6,5,1,495.5,1076744.1,141007.09,152571.41,0,0,0,4217.6768 +12453,15195,27100,27099,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.0430565,8.5819616,59,-7,-2.3120553,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.913424,8.3085918,44.17,48.41,46.46,14.25,8.333333333333334,1,1,0,0,0,6,5,1,495.5,1076744.1,141007.09,152571.41,0,0,0,4217.6768 +12454,15196,27101,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.54022,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.36,16.34,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,505,-190335.8,9224.5,0,0,0,0,1462.1251 +12455,15197,27102,-9,27103,27105,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.76929,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27103,27105,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.9915819,7.0478482,0,11,2,-145.08429,0,2,2,2021,8,0,40,24,1,0,0,3.8823493,3.8823493,0,0,0,0,0,0,0,0,0,0,0,3.5280833,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,5,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27104,-9,27103,27105,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2161,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27105,27103,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.6611414,9.5948448,0,11,-2,25.678215,0,-9,-9,2021,8,1,60,40,1,1,0,26.775908,26.775908,.05,.05,0,0,0,0,0,0,0,0,0,3.9700789,0,59.43,58.05,59.53,56.44,8.333333333333334,1,1,0,0,6,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12456,15198,27106,27107,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-1,4.761838,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.56,46,8.333333333333334,1,1,0,0,6,13,2,1,939.5,477710.78,94876.18,119638.85,0,11216.982,0,2019.3132 +12456,15198,27107,27106,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.2140331,6.9718518,0,47,1,46.641369,0,3,3,2021,7,0,70,70,1,0,0,2.1199598,2.1199598,0,0,0,0,0,0,0,0,1,1,0,2.0886722,0,55.56,46,54.96,53.17,8.333333333333334,1,1,0,0,14,13,2,1,939.5,477710.78,94876.18,119638.85,0,11216.982,0,2019.3132 +12457,15199,27108,27110,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7191563,8.9168406,0,29,0,-13.324012,0,2,2,2021,20,8,40,79,1,8,0,26.67473,26.67473,.05,.05,.05,0,0,0,0,0,1,1,0,3.8507824,0,40.94,58.35,43.6,53.51,6.666666666666667,1,1,0,0,9,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15199,27109,-9,27110,27108,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.88031,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15199,27110,27108,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.3111296,8.7555618,0,30,0,-64.543465,0,2,3,2021,12,0,35,33,1,0,0,18.52919,18.52919,0,0,0,0,0,0,0,0,1,1,0,2.8234875,0,43.6,53.51,40.94,58.35,5,1,1,0,0,11,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15200,27111,-9,27110,27108,1,0,21,0,1,0,2,2,-9,0,4,7.7732487,8.1144133,0,0,0,-937.97107,0,2,2,2021,12,3,42,46,1,3,1,6.1669188,6.1669188,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,1311,-40745.324,-56432.941,0,0,0,590.72931,1232.2124 +12458,15201,27112,27114,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.8650589,8.8911161,0,10,0,-131.41357,0,-9,-9,2021,8,0,42,43,1,0,0,17.920038,17.920038,.05,.05,0,0,0,0,0,0,0,0,0,8.6020985,0,54.2,57.49,57.92,51.82,8.333333333333334,2,3,0,0,6,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12458,15201,27113,-9,27112,27114,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-940.72217,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12458,15201,27114,27112,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,9.3780413,9.1022778,0,15,0,99.648392,0,2,2,2021,8,0,42,42,1,0,0,35.049072,35.049072,.05,.05,0,0,0,0,0,0,0,0,0,5.9584646,0,57.92,51.82,54.2,57.49,8.333333333333334,2,3,0,0,9,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12459,15202,27115,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.1539583,8.1088486,0,0,0,-971.88873,0,3,3,2021,6,0,34,46,1,0,0,14.787879,14.787879,.05,.05,0,0,0,0,0,0,1,1,0,5.5627604,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,958,-193680.27,-59027.965,0,0,0,0,2219.9246 +12460,15203,27116,27117,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,53,1,-62.310966,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,52.88,60.59,54.8,8.333333333333334,1,1,0,0,0,9,3,1,2957.5,1314353.8,534590.19,366338.34,0,0,0,5867.0127 +12460,15203,27117,27116,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.5007477,8.2708893,53,-1,13.917665,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.809001,8.4804716,60.59,54.8,49.11,52.88,10,1,1,0,0,0,9,3,1,2957.5,1314353.8,534590.19,366338.34,0,0,0,5867.0127 +12461,15204,27118,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.094027,7.319459,0,0,-835.16852,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9130793,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,875,280203.06,232101.3,133178.89,0,0,0,539.99438 +12462,15205,27119,27120,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.699173,7.9388676,43,-5,-108.91727,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3035843,8.0997019,56.33,51.02,55.19,54.26,10,1,1,0,0,7,5,4,1,513.5,2320196,1497538,618091.69,67951.781,0,0,3653.8315 +12462,15205,27120,27119,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.9428625,8.071455,43,5,-13.212837,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7955091,7.8749318,55.19,54.26,56.33,51.02,8.333333333333334,1,1,0,0,0,5,4,1,513.5,2320196,1497538,618091.69,67951.781,0,0,3653.8315 +12463,15206,27121,27122,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,6.5887475,6.4084969,45,3,59.503197,0,1,1,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3404722,6.5210381,60.02,56.42,54.79,55.86,10,1,1,0,0,10,10,3,1,2543.5,2656052.5,0,822904.75,0,0,0,2005.2913 +12463,15206,27122,27121,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.3821883,7.1897001,0,45,-3,-39.862972,0,2,1,2021,7,0,6,37,1,0,0,29.7584,29.7584,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.02,56.42,8.333333333333334,1,1,0,0,8,10,3,1,2543.5,2656052.5,0,822904.75,0,0,0,2005.2913 +12464,15207,27123,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,5.2228842,5.0574932,0,0,-1049.8231,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3291001,5.156631,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,13,2,1,1099,261632.25,244844.52,0,0,0,-411.21738,553.41534 +12465,15208,27124,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.2046132,4.2663331,0,0,-1108.1674,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8689861,4.7731218,60.29,52.11,-9,-9,10,1,1,0,0,0,5,2,1,1665,190595.41,0,147787.77,0,0,0,1013.9387 +12466,15209,27125,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.1774654,9.1905594,0,0,0,-1058.1188,0,3,2,2021,6,0,39,41,1,0,0,24.261986,24.261986,.05,.05,0,0,0,0,0,0,0,0,0,3.1865761,0,46.17,54.21,-9,-9,6.666666666666667,1,1,0,0,9,13,5,0,823,229613.44,306614.34,47847.113,9883.9961,13451.969,0,4075.9424 +12467,15210,27126,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.0044622,7.2939487,0,0,0,-1034.6383,0,-9,-9,2021,15,3,18,40,1,3,0,8.9809828,8.9809828,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.39,58.79,-9,-9,3.333333333333333,1,1,0,0,13,10,3,1,425,12945.004,32148.945,163687.34,0,0,0,148.06982 +12468,15211,27127,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,6.7724161,8.6823645,8.2665548,14,-19,-26.634848,0,2,1,2021,11,1,12,15,1,1,0,8.6013927,8.6013927,.05,.05,0,0,0,0,0,14.5,1,1,0,7.70017,8.1538239,44.25,56.64,51,46,6.666666666666667,1,1,0,0,10,10,4,1,1766,785221.88,472760.19,137219.22,0,0,1629.1255,3113.4917 +12469,15212,27128,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,9.3165512,9.3642626,0,0,-963.35864,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.4725018,62.39,56.71,-9,-9,10,1,1,0,0,2,12,5,1,459,1831121.5,658350.25,492717.72,0,0,0,5586.0791 +12470,15213,27129,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.0867119,8.4278488,0,0,0,-1103.6171,0,2,3,2021,17,5,38,38,1,5,0,9.8897667,9.8897667,0,0,0,0,0,0,0,0,0,0,0,0,0,34.04,44.46,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,814,1194760.5,512589.47,371425.72,0,0,0,1452.5074 +12471,15214,27130,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.3978043,5.6273813,0,0,-887.39569,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7553248,54,51,-9,-9,10,1,1,0,0,0,11,2,1,232,277483.5,-6191.4141,99953.188,0,0,0,617.17554 +12472,15215,27131,27132,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,3,3,108.97092,0,1,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.18,54.59,16.3,50.96,3.333333333333333,1,1,0,0,7,11,2,0,876,-31850.221,0,0,0,0,0,443.80746 +12472,15215,27132,27131,-9,-9,1,0,24,0,0,0,1,1,-9,0,1,6.8325911,7.1466489,0,3,-3,112.05375,0,-9,-9,2021,33,12,15,16,1,12,0,6.6361232,6.6361232,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.3,50.96,41.18,54.59,0,1,1,0,1,2,11,2,0,876,-31850.221,0,0,0,0,0,443.80746 +12473,15216,27133,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,2,0,4.8778081,4.8483539,0,0,-974.88141,1,-9,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9528823,0,30.37,52.74,-9,-9,5,1,1,0,0,0,4,2,0,806,-102686.95,0,0,0,0,0,922.76489 +12474,15217,27134,-9,27136,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8424,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12474,15217,27135,-9,27136,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.93286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12474,15217,27136,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,9.3683262,9.7306089,7.7195749,0,0,-965.67981,0,2,2,2021,17,4,40,25,1,4,0,39.770039,39.770039,.05,.05,0,0,0,0,0,0,1,1,0,8.8213854,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12475,15218,27137,27138,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,0,0,7,-10,3.4108579,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,.49922636,0,74.5,1,1,0,0,0,30.66,29.4,18.01,25.88,1.666666666666667,1,1,0,0,4,8,2,1,831.5,64678.184,122678.88,0,0,0,0,1543.2297 +12475,15218,27138,27137,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,6.4112577,6.1391358,7,10,-111.83692,0,2,2,2021,34,11,0,0,4,11,0,0,0,0,0,0,1,0,26.015476,0,0,1,1,0,0,5.8311467,18.01,25.88,30.66,29.4,0,1,1,0,0,5,8,2,1,831.5,64678.184,122678.88,0,0,0,0,1543.2297 +12476,15219,27139,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.9649668,8.1607151,0,0,0,-959.04114,0,1,1,2021,12,3,43,35,1,3,0,8.1354418,8.1354418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,3.333333333333333,4,2,0,0,1,8,4,0,421,179960.44,58408.688,0,0,30971.941,0,1778.1594 +12476,15220,27140,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.1758814,8.5138655,0,0,0,-846.04156,-9,-9,-9,2021,16,6,45,0,1,6,0,9.4636374,9.4636374,0,0,0,0,0,0,0,0,0,0,0,0,0,27.97,60.5,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,696,135122.73,0,0,0,0,0,1174.6284 +12477,15221,27141,-9,27142,27143,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.995,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27142,27143,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,8.0857658,7.982758,0,19,-4,126.64658,0,3,3,2021,13,2,35,30,1,2,0,10.323234,10.323234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.88,52.95,6.666666666666667,3,4,0,0,11,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27143,27142,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.2517872,7.2417707,0,19,4,-99.349846,0,2,2,2021,8,1,38,38,1,1,0,4.5863867,4.5863867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.88,52.95,49.12,57.28,8.333333333333334,3,4,0,0,9,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27144,-9,27142,27143,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2499,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12478,15222,27145,27146,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,48,-1,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3308105,0,60.7,47.65,47.9,43.96,8.333333333333334,1,1,0,0,0,4,1,1,1020.5,970258,233711.64,684585.13,0,32880.672,0,6000.5908 +12478,15222,27146,27145,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,48,1,0,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6632071,0,47.9,43.96,60.7,47.65,8.333333333333334,1,1,0,0,0,4,1,1,1020.5,970258,233711.64,684585.13,0,32880.672,0,6000.5908 +12479,15223,27147,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4959345,8.719842,6.8107562,0,0,-1035.6366,0,3,3,2021,12,1,37,37,1,1,0,17.112112,17.112112,.05,.05,0,0,0,0,0,2,1,1,0,7.0010428,7.1510949,38.86,59.06,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,795,1430744.5,564010.75,295265.72,0,0,0,2665.5239 +12480,15224,27148,27149,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.122159,8.5516739,10,-6,92.139366,0,1,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7766814,8.2929955,38.91,52.63,45.06,45.73,8.333333333333334,1,1,0,0,8,4,4,1,260,2978939.3,764358.63,672805.69,0,0,0,3551.4717 +12480,15224,27149,27148,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.0473547,7.6540546,10,6,37.251019,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5.2942934,8.0138969,45.06,45.73,38.91,52.63,8.333333333333334,1,1,0,0,8,4,4,1,260,2978939.3,764358.63,672805.69,0,0,0,3551.4717 +12481,15225,27150,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1054.4303,0,3,3,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.80681139,0,41.3,34.16,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1247,130645.3,0,0,0,-544.43457,0,1816.2351 +12482,15226,27151,27152,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,0,0,26,-4,35.289902,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,24.79,50.28,51.35,3.333333333333333,2,3,0,0,0,2,2,0,343,473497.25,252143.5,349246.69,0,0,0,1230.2297 +12482,15226,27152,27151,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.7179084,7.501987,0,26,4,-14.981219,0,3,2,2021,17,6,30,26,1,6,0,5.971436,5.971436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,47.15,24.79,8.333333333333334,2,3,0,0,2,2,2,0,343,473497.25,252143.5,349246.69,0,0,0,1230.2297 +12482,15227,27153,-9,27151,27152,1,1,22,0,0,0,2,2,-9,0,5,6.4245648,6.0839143,0,0,0,-1001.2617,0,1,1,2021,18,7,10,10,1,7,1,7.151165,7.151165,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,49.62,-9,-9,8.333333333333334,2,3,0,0,3,2,2,0,731,31059.148,0,0,0,5035.6563,0,-53.921539 +12482,15228,27154,-9,27151,27152,1,1,19,0,0,0,2,2,1,0,5,7.2816124,6.7840791,0,0,0,-977.91321,-9,1,1,2021,5,0,31,0,1,0,1,4.7773085,4.7773085,0,0,0,0,0,0,1.2306143,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,1,2,2,0,1352,34660.527,0,0,0,0,0,611.73926 +12483,15229,27155,27156,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,9.0804005,8.9057531,0,29,-1,58.970402,0,2,-9,2021,25,10,50,56,1,10,0,13.354019,13.354019,0,0,0,0,0,0,0,2,1,1,0,2.0270526,0,34.98,49.96,42.26,39.72,8.333333333333334,4,2,0,1,13,2,5,1,429.5,1708429.3,994939.38,497620.84,1651.2725,0,7046.2236,4051.356 +12483,15229,27156,27155,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.5199251,8.3486395,0,29,1,-43.67424,0,2,2,2021,13,2,42,42,1,2,0,16.108395,16.108395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.26,39.72,34.98,49.96,8.333333333333334,1,1,0,0,9,2,5,1,429.5,1708429.3,994939.38,497620.84,1651.2725,0,7046.2236,4051.356 +12483,15230,27157,-9,27155,27156,1,0,19,0,1,0,2,2,-9,0,4,7.6030083,7.7805939,0,0,0,-1093.0601,-9,1,2,2021,7,2,16,0,1,2,1,14.533353,14.533353,0,0,0,0,0,0,0,7,1,1,0,.61758542,0,15.91,65.73,-9,-9,6.666666666666667,4,2,0,0,3,2,3,1,141,-230657.22,0,0,0,0,0,912.89661 +12484,15231,27158,27159,-9,-9,1,1,63,0,0,0,1,1,-9,1,1,0,5.3553786,5.2441826,9,5,156.80499,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3300686,54.29,16.4,57.06,57.76,5,1,1,0,0,0,10,3,0,825,1383971.3,746436.69,416466,0,0,0,1164.6272 +12484,15231,27159,27158,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.862103,7.7783833,0,9,-5,-40.486294,0,3,3,2021,11,0,39,32,1,0,0,7.1690793,7.1690793,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.29,16.4,8.333333333333334,1,1,0,0,10,10,3,0,825,1383971.3,746436.69,416466,0,0,0,1164.6272 +12484,15232,27160,-9,27159,27158,1,0,23,0,0,0,1,1,-9,0,5,8.0671215,8.0139008,0,0,0,-933.59558,0,2,1,2021,8,0,37,39,1,0,1,11.712841,11.712841,0,0,0,0,0,0,0,0,1,1,0,.9556396,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,430,26788.436,0,0,0,0,0,988.23303 +12485,15233,27161,-9,27162,27163,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5157,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12485,15233,27162,27163,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,6.6552215,6.4543195,0,5,-11,19.520161,0,-9,-9,2021,9,0,17,10,1,0,0,4.4528694,4.4528694,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,41.53,56.72,8.333333333333334,1,1,0,0,7,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12485,15233,27163,27162,-9,-9,1,1,41,1,1,0,2,2,-9,0,3,8.4322157,8.53162,0,5,11,-18.437769,0,1,2,2021,7,0,44,46,1,0,0,21.299932,21.299932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.53,56.72,49.35,59.64,6.666666666666667,1,1,0,0,11,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12486,15234,27164,-9,27167,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1068.7369,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,45.22,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,267,0,0,0,0,0,0,0 +12486,15235,27165,-9,27167,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1048.9403,-9,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12486,15235,27166,27167,-9,-9,1,1,67,0,1,0,3,3,-9,0,4,0,7.086184,6.9769058,4,12,16.005323,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1742296,62.49,55.09,36.62,60.23,10,1,1,0,0,0,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12486,15235,27167,27166,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.1855345,8.3840466,7.3077383,4,-12,-27.477919,0,3,3,2021,11,2,23,38,1,2,0,18.965712,18.965712,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0864167,36.62,60.23,62.49,55.09,8.333333333333334,1,1,0,0,9,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12487,15236,27168,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.1419754,5.0630322,0,0,-1050.8074,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,6.0694928,0,63.892323,0,1,1,0,0,5.0645742,50,47,-9,-9,7,1,1,0,0,2,13,2,0,986,-10110.753,50746.879,0,0,0,0,1640.2803 +12488,15237,27169,27170,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,11,-2,-6.7114577,0,-9,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.7,23.15,62.36,47,3.333333333333333,1,1,1,0,8,11,4,0,1278.5,1302761,757823,286430.88,0,0,0,1893.2964 +12488,15237,27170,27169,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7028046,8.6096563,0,11,2,58.992191,0,3,3,2021,11,0,48,52,1,0,0,13.361889,13.361889,0,0,0,0,0,0,0,27,0,0,0,0,0,62.36,47,35.7,23.15,8.333333333333334,1,1,0,0,13,11,4,0,1278.5,1302761,757823,286430.88,0,0,0,1893.2964 +12489,15238,27171,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.6399775,5.6491427,0,0,-1057.6299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6222377,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,4201,182827.2,-81131.852,0,0,0,0,1816.2904 +12490,15239,27172,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.6695452,6.3716798,0,0,-1076.4755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.24245144,6.3926182,58.15,50.21,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,74,84323.508,152103.3,0,0,0,-228.57799,712.44904 +12491,15240,27173,-9,27174,27176,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.14349,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27174,27176,-9,-9,1,0,54,0,2,0,1,1,-9,0,5,8.621809,8.5712261,0,6,3,-43.906834,0,2,2,2021,6,0,35,36,1,0,0,21.520424,21.520424,.05,.05,0,0,0,0,0,0,1,1,0,1.3379453,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,3,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27175,-9,27174,27176,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5847,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27176,27174,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.9300661,8.7519836,0,6,-3,-72.103378,0,3,1,2021,9,2,42,47,1,2,0,24.870899,24.870899,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12492,15241,27177,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.6429996,7.3446875,0,0,-945.68451,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6716428,7.8026633,42.74,48.15,-9,-9,10,1,1,0,0,0,7,3,1,718,148335.83,68037.133,24608.48,0,0,0,672.8653 +12493,15242,27178,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.6794167,6.4962306,0,0,-1066.3871,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5126679,6.536922,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,437,486688.84,-29473.803,189419.03,0,0,0,799.40131 +12494,15243,27179,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.6233535,6.643672,0,0,-991.30164,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4611449,52,45,-9,-9,8,1,1,0,0,0,2,2,1,95,209762.39,33877.742,143102.83,0,0,0,7.4228144 +12495,15244,27180,27181,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.6561222,7.4040127,0,33,1,-4.2450762,0,2,2,2021,11,0,40,40,1,0,0,7.0204582,7.0204582,.05,.05,0,0,0,0,0,0,0,0,0,8.8326235,0,49.12,53.02,46.23,49.17,8.333333333333334,1,1,0,0,11,10,3,1,1038.5,544555.13,390694.94,204068.98,0,0,0,2459.9084 +12495,15244,27181,27180,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,34,-1,128.37422,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,49.17,49.12,53.02,5,1,1,0,0,7,10,3,1,1038.5,544555.13,390694.94,204068.98,0,0,0,2459.9084 +12495,15245,27182,-9,27181,27180,1,1,24,0,0,0,1,1,-9,0,4,7.9635277,8.2605019,0,0,0,-886.03461,0,2,2,2021,4,0,40,35,1,0,1,8.0005817,8.0005817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,372,-77322.273,36945.824,0,0,0,0,957.78809 +12495,15246,27183,-9,27181,27180,1,1,23,0,0,0,1,1,-9,0,4,7.8836045,8.0835533,0,0,0,-1057.5681,0,2,2,2021,7,0,39,0,1,0,1,9.7251692,9.7251692,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,10,1,1,0,0,3,10,4,1,329,12845.69,-34081.77,0,0,0,0,852.44415 +12495,15247,27184,-9,27181,27180,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.5496,1,2,2,2021,14,2,0,28,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,143,0,0,0,0,0,0,0 +12496,15248,27185,27186,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4265356,8.5117416,44,1,11.644498,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2799141,8.2900229,57.16,56.15,54.96,53.17,10,1,1,0,0,0,5,4,1,1000.5,1897786.8,1359039.3,227885.41,0,0,0,3297.3977 +12496,15248,27186,27185,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,45,-1,-100.09051,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0846834,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,1000.5,1897786.8,1359039.3,227885.41,0,0,0,3297.3977 +12496,15249,27187,-9,27186,27185,1,1,39,0,0,0,2,2,-9,0,3,7.0476785,7.0518289,0,0,0,-1046.2101,0,2,2,2021,6,0,5,2,1,0,0,24.072735,24.072735,0,0,0,0,0,0,0,0,1,1,0,2.4978127,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,606,-51593.813,0,122051.55,96032.492,0,0,616.34241 +12497,15250,27188,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,0,7.1035881,6.8431683,0,0,-868.49994,-9,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1148105,0,30.08,23.2,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,677,106610.44,-99554.445,0,0,0,0,1917.9685 +12498,15251,27189,27190,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.0696363,8.1554699,0,6,1,-72.088478,0,3,2,2021,14,3,39,40,1,3,0,10.038249,10.038249,.05,.05,0,0,0,0,0,0,0,0,0,4.2206554,0,45.42,51,60.3,46.58,8.333333333333334,1,1,0,0,8,5,4,1,675.5,119418.97,35924.664,0,0,0,0,3171.4189 +12498,15251,27190,27189,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.937254,8.2156639,0,6,-1,7.2556505,0,-9,-9,2021,6,0,40,40,1,0,0,8.6010075,8.6010075,.05,.05,0,0,0,0,0,0,0,0,0,5.9444723,0,60.3,46.58,45.42,51,8.333333333333334,1,1,0,0,2,5,4,1,675.5,119418.97,35924.664,0,0,0,0,3171.4189 +12499,15252,27191,27192,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.3924894,9.4892893,0,10,2,16.687132,0,3,2,2021,9,0,42,45,1,0,0,41.922981,41.922981,.05,.05,0,0,0,0,0,0,0,0,0,1.9244244,0,57.16,56.15,38.35,54.09,8.333333333333334,1,1,0,0,11,9,5,1,595,123440.29,18029.559,0,0,0,2342.9419,4900.0342 +12499,15252,27192,27191,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.1976633,6.6909251,0,10,-2,41.615219,0,2,2,2021,17,7,19,19,1,7,0,5.3855114,5.3855114,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.35,54.09,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,595,123440.29,18029.559,0,0,0,2342.9419,4900.0342 +12500,15253,27193,27194,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.66786,9.0309496,0,10,5,22.674618,0,2,2,2021,6,0,52,56,1,0,0,12.909307,12.909307,.05,.05,0,0,0,0,0,0,1,1,0,2.4726624,0,57.16,56.15,44.75,56.39,8.333333333333334,1,1,0,0,12,6,4,1,592.5,60258.891,11180.537,93783.305,30883.316,488.12949,0,3022.3423 +12500,15253,27194,27193,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.5584788,7.5614896,0,10,-5,-68.341751,0,3,3,2021,12,0,10,10,1,0,0,19.06547,19.06547,.05,.05,0,0,0,0,0,7,1,1,0,2.2972112,0,44.75,56.39,57.16,56.15,8.333333333333334,1,1,0,0,12,6,4,1,592.5,60258.891,11180.537,93783.305,30883.316,488.12949,0,3022.3423 +12501,15254,27195,27197,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.4133382,7.7808309,0,10,-11,3.2481887,-9,3,2,2021,22,10,60,0,1,10,0,3.4689989,3.4689989,.05,.05,0,0,0,0,0,0,1,1,0,6.9863801,0,23.44,54.28,54.79,55.86,1.666666666666667,1,1,0,1,9,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27196,-9,27195,27197,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5642,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27197,27195,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.5383873,8.5897408,0,10,11,42.150383,-9,-9,-9,2021,5,0,37,0,1,0,0,15.257086,15.257086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,23.44,54.28,6.666666666666667,2,3,0,0,12,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27198,-9,27195,27197,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.34821,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12502,15255,27199,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.0850196,5.9973769,0,0,-951.27936,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,6.9555511,0,14.5,1,1,0,3.7706707,6.308722,63.01,25.24,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,440,505023.81,98758.094,418735.41,0,0,0,2208.2258 +12502,15256,27200,-9,27199,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1053.1998,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.68,18.74,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,540,-164567.34,124690.4,0,0,0,0,1119.452 +12502,15257,27201,-9,27199,-9,1,0,48,0,0,0,3,3,-9,0,4,7.3344021,7.3320842,0,0,0,-951.53589,0,3,3,2021,10,0,36,0,1,1,0,6.8959231,6.8959231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,13,3,1,331,-143694.38,-97263.133,0,0,7131.4829,0,-86.889542 +12503,15258,27202,27203,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,40,-6,-47.559563,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,39.28,48.28,60.18,5,1,1,0,0,0,7,4,0,1242.5,162955.55,117954.39,0,0,19278.23,0,2326.6809 +12503,15258,27203,27202,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.6155987,8.4853458,4.5574002,40,6,30.129797,0,3,3,2021,10,0,8,45,1,0,0,73.823441,73.823441,0,0,0,0,0,0,0,0,0,0,0,6.5700617,4.8843622,48.28,60.18,44,39.28,0,1,1,0,0,8,7,4,0,1242.5,162955.55,117954.39,0,0,19278.23,0,2326.6809 +12504,15259,27204,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,1,8.311017,8.6194124,0,0,0,-994.57831,0,-9,-9,2021,18,6,37,42,1,6,0,14.589274,14.589274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.58,42.55,-9,-9,1.666666666666667,1,1,0,0,12,9,5,0,600,28500.33,5321.7148,0,0,0,0,1540.0403 +12505,15260,27205,27206,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9292054,6.7799802,11,-1,-85.991219,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7429912,7.0490699,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,740.5,457578.19,0,428822.69,0,0,0,2640.022 +12505,15260,27206,27205,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7857952,7.8941226,11,1,-18.611248,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8596644,7.8391504,57.16,56.15,54.2,57.49,10,1,1,0,0,0,5,3,1,740.5,457578.19,0,428822.69,0,0,0,2640.022 +12506,15261,27207,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.4112368,8.5979729,0,0,-955.35962,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5477967,8.3134937,50.96,51.08,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,401,1568659,944219.69,180154.67,0,0,0,3019.5264 +12507,15262,27208,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.8850923,7.6517839,0,0,0,-920.42883,0,-9,-9,2021,12,0,37,30,1,0,0,7.630578,7.630578,0,0,0,0,0,0,0,0,0,0,0,0,0,38.24,63.73,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,299,-161715.8,0,0,0,0,0,1103.725 +12508,15263,27209,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,8.1749468,8.3927221,0,0,0,-1060.1589,0,2,2,2021,6,0,36,36,1,0,0,9.882988,9.882988,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,1145,-34017.648,0,0,0,0,0,2730.0376 +12508,15264,27210,-9,27209,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1180.8488,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.52,63.52,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,621,100795.26,0,0,0,0,0,0 +12509,15265,27211,27212,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5801878,7.4153976,0,38,1,96.583855,0,2,3,2021,25,11,18,30,1,11,0,12.198128,12.198128,.05,.05,0,0,0,0,0,7,0,0,0,2.9534945,0,22.56,57.29,60.18,39.83,5,1,1,0,0,12,6,5,1,1476,341455.25,222786.16,138315.52,130111.84,7410.7871,14767.148,3336.1128 +12509,15265,27212,27211,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.8542356,8.791317,0,38,-1,15.552761,0,3,3,2021,11,1,35,35,1,1,0,20.391165,20.391165,.05,.05,0,0,0,0,0,0,0,0,0,3.6601121,0,60.18,39.83,22.56,57.29,8.333333333333334,1,1,0,0,12,6,5,1,1476,341455.25,222786.16,138315.52,130111.84,7410.7871,14767.148,3336.1128 +12510,15266,27213,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,5,7.902514,7.5289545,0,0,0,-961.17761,0,3,3,2021,7,0,32,27,1,0,1,6.9852533,6.9852533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,8.333333333333334,2,3,0,0,2,8,3,1,1086,-108226.68,71975.313,0,0,6989.4014,0,1081.9127 +12511,15267,27214,27215,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1048698,7.8643942,0,6,-2,121.94639,-9,-9,-9,2021,10,0,37,0,1,1,0,6.4810452,6.4810452,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,59.29,49.68,8,1,1,0,0,1,11,5,1,185.5,1323366.5,515921.75,237738.73,0,0,0,4449.8003 +12511,15267,27215,27214,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0536356,9.6343098,0,28,2,-77.194756,0,2,2,2021,6,0,60,61,1,0,0,17.424185,17.424185,.05,.05,0,0,0,0,0,0,1,1,0,4.8806014,0,59.29,49.68,51,54,8.333333333333334,1,1,0,0,9,11,5,1,185.5,1323366.5,515921.75,237738.73,0,0,0,4449.8003 +12511,15268,27216,-9,27214,27215,1,0,23,0,0,0,2,2,-9,0,4,7.1710558,7.2360921,0,0,0,-1044.3044,-9,2,2,2021,11,0,40,0,1,2,1,4.0204682,4.0204682,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,11,3,1,314,17784.373,0,0,0,4027.7668,0,761.62396 +12511,15269,27217,-9,27214,27215,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-990.39459,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,1,418,0,0,0,0,0,0,0 +12512,15270,27218,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.1434379,7.2864184,7.0476556,0,0,-1079.2861,0,2,3,2021,11,0,18,18,1,0,0,9.3988934,9.3988934,0,0,0,1,0,0,0,0,1,1,0,7.0987058,6.9282212,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,209,427020.38,85196.398,173293.52,0,278.03085,0,824.34375 +12513,15271,27219,-9,-9,-9,1,0,56,0,1,0,2,2,-9,1,1,0,0,0,0,0,-888.32886,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,31.48,-9,-9,6.666666666666667,1,1,0,0,7,12,1,1,732,80823.898,-2881.4478,0,0,1246.5684,0,83.767021 +12514,15272,27220,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5442491,6.8704424,0,0,-1074.6803,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3826404,61.19,39.41,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,84,584994.75,453072.06,269316.03,0,0,0,531.00513 +12515,15273,27221,27222,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.6465292,8.6428518,33,1,18.608057,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6512952,8.7296095,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,6,9,4,1,204.5,1536268.5,1045138.1,602492.63,139130.81,8766.9697,0,3781.8235 +12515,15273,27222,27221,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,5.4779353,5.4199181,33,-1,8.8225269,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6435237,5.4710884,57.16,56.15,54.37,54.8,10,1,1,0,0,8,9,4,1,204.5,1536268.5,1045138.1,602492.63,139130.81,8766.9697,0,3781.8235 +12516,15274,27223,27225,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,8.8560772,8.9132576,5.8701854,10,0,-96.087616,0,2,1,2021,9,0,38,43,1,0,0,19.355507,19.355507,.05,.05,0,0,0,0,0,0,1,1,0,6.2012491,0,52,54.51,32.85,51.49,6.666666666666667,1,1,0,0,11,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27224,-9,27225,27223,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.65356,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27225,27223,-9,-9,1,0,45,0,3,0,2,2,-9,0,3,8.7393856,8.9821434,0,10,0,77.848587,0,-9,-9,2021,17,7,38,38,1,7,0,19.009941,19.009941,.05,.05,0,0,0,0,0,0,1,1,0,7.1866593,0,32.85,51.49,52,54.51,6.666666666666667,1,1,0,0,14,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27226,-9,27225,27223,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-941.41193,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27227,-9,27225,27223,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.3801,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12517,15275,27228,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-930.22638,0,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.48,37.7,-9,-9,5,1,1,1,0,0,11,1,1,142,96754.219,0,0,0,3030.9292,0,0 +12518,15276,27229,27231,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.0607376,8.3123169,0,8,-5,158.64764,0,3,2,2021,10,0,25,29,1,0,0,13.352614,13.352614,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.06,53.95,6.666666666666667,1,1,0,0,9,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27230,-9,27229,27231,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-832.7951,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27231,27229,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.5933714,8.8689117,0,8,5,-61.107849,0,2,3,2021,17,5,37,40,1,5,0,23.002682,23.002682,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,42.06,53.95,48.77,60.16,5,1,1,0,0,9,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27232,-9,27229,27231,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.16876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12519,15277,27233,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.5274897,8.6146851,0,0,0,-962.72949,0,3,3,2021,17,5,35,50,1,5,0,18.146416,18.146416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,47.76,-9,-9,5,1,1,0,0,7,4,5,1,1186,91134.68,63406.242,134599.73,76562.523,0,0,2042.8649 +12520,15278,27234,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.0563107,6.646944,0,0,-923.82227,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8128643,50.17,27.29,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1005,234463.47,54473.402,161531.81,0,3239.4548,0,250.24774 +12521,15279,27235,27236,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,7.9555449,7.9285049,6,1,-70.09111,0,3,3,2021,26,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,7.9959493,24.33,21.59,35.53,55.43,1.666666666666667,1,1,0,0,9,12,4,1,1417.5,541797.69,400425.69,149031.16,87830.078,93583.977,3575.4854,3136.3354 +12521,15279,27236,27235,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.190053,7.9873304,0,6,-1,48.459625,0,2,2,2021,12,0,40,37,1,0,0,11.065926,11.065926,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.53,55.43,24.33,21.59,6.666666666666667,1,1,0,0,11,12,4,1,1417.5,541797.69,400425.69,149031.16,87830.078,93583.977,3575.4854,3136.3354 +12521,15280,27237,-9,27235,27236,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.16388,0,1,2,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,2,1,0,1,3.4414773,0,31.42,52.91,-9,-9,8.333333333333334,1,1,1,0,3,12,1,1,767,187325.08,0,0,0,0,0,97.093414 +12522,15281,27238,27239,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,11,1,56.740856,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,2.159272,0,49.03,40.72,54.96,53.17,8.333333333333334,1,1,0,0,1,11,5,1,621,1271023.8,951627.38,382165.13,57419.754,9884.4287,0,3657.2693 +12522,15281,27239,27238,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.1904039,9.1988716,0,11,-1,54.606804,0,2,2,2021,9,0,47,49,1,0,0,29.572838,29.572838,.05,.05,0,0,0,0,0,2,1,1,0,2.9002721,0,54.96,53.17,49.03,40.72,6.666666666666667,1,1,0,0,12,11,5,1,621,1271023.8,951627.38,382165.13,57419.754,9884.4287,0,3657.2693 +12522,15282,27240,-9,27238,27239,1,1,35,0,0,0,2,2,-9,0,4,7.2802505,7.1602821,0,0,0,-924.01068,0,2,2,2021,9,1,15,15,1,1,1,10.618462,10.618462,.05,.05,0,0,0,0,0,0,1,1,0,4.0120106,0,43.82,51.33,-9,-9,6.666666666666667,1,1,0,0,12,11,2,1,2893,123258.2,3075.1089,0,0,0,0,757.90289 +12523,15283,27241,-9,27243,27246,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1033.0686,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27242,-9,27243,27246,1,0,11,1,4,1,3,0,-9,0,2,0,0,0,0,0,-904.06036,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27243,27246,-9,-9,1,0,34,1,4,0,2,2,-9,0,1,0,0,0,14,-1,0,0,3,3,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.7,24.29,51,56,5,2,3,0,1,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27244,-9,27243,27246,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.5936,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.41980168,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27245,-9,27243,27246,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-990.31134,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27246,27243,-9,-9,1,1,35,1,4,0,2,2,-9,1,4,0,0,0,14,1,0,0,3,2,2021,10,0,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,24.7,24.29,7,2,3,0,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12524,15284,27247,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.5986209,7.4884539,0,0,0,-1109.8116,0,3,3,2021,9,0,25,25,1,0,0,10.753574,10.753574,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,411,-94656.852,236.85117,0,0,0,-753.32135,923.77747 +12525,15285,27248,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.5107393,7.056704,0,0,0,-1131.7587,0,1,1,2021,12,0,28,30,1,0,0,6.3813996,6.3813996,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,219,93213.945,0,0,0,0,0,1261.8285 +12526,15286,27249,27250,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.8788037,7.4137926,6,10,-256.2832,0,3,3,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2181783,7.5200286,57.33,53.46,34.15,55.68,8.333333333333334,1,1,0,0,12,7,4,1,982,1745603.8,878773.75,642903.13,0,0,0,2278.4773 +12526,15286,27250,27249,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9384298,8.1171236,0,6,-10,-45.838924,0,-9,-9,2021,21,8,35,35,1,8,0,11.956158,11.956158,0,0,0,0,0,0,0,0,1,1,0,0,0,34.15,55.68,57.33,53.46,6.666666666666667,1,1,0,0,9,7,4,1,982,1745603.8,878773.75,642903.13,0,0,0,2278.4773 +12527,15287,27251,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.9185843,6.3257647,0,0,-931.27338,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2960951,6.2872243,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,480,163249.89,46344.234,131051.76,0,0,0,1329.7299 +12528,15288,27252,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,7.7558579,7.9696064,0,0,0,-1080.734,0,2,2,2021,14,2,32,25,1,2,0,8.7678366,8.7678366,.05,.05,0,0,0,0,0,0,0,0,0,.46231145,0,30.73,64.59,-9,-9,6.666666666666667,1,1,0,0,9,10,3,0,587,82738.141,76964.266,0,0,0,0,680.96606 +12529,15289,27253,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,4.8009853,5.1952481,0,0,0,-987.02216,0,-9,-9,2021,17,5,4,6,1,5,0,4.6117816,4.6117816,0,0,0,0,0,0,0,0,0,0,0,8.5089283,0,49.92,47.32,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,3082,0,0,0,0,0,0,2930.4368 +12530,15290,27254,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.7973795,8.1373301,7.9145441,0,0,-1014.2339,0,3,3,2021,19,7,43,60,1,7,0,6.7005787,6.7005787,.05,.05,0,0,0,0,0,0,0,0,0,6.4160142,7.851131,37.7,54.28,-9,-9,3.333333333333333,1,1,0,0,11,2,5,1,558,1083851.1,901438,175691.08,0,0,0,1800.98 +12531,15291,27255,27256,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.4590845,8.8023777,0,7,4,-39.734188,0,-9,-9,2021,8,0,52,42,1,0,0,9.9256811,9.9256811,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.4,52.91,58.32,50.22,8.333333333333334,1,1,0,0,6,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12531,15291,27256,27255,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.9923959,7.6117754,0,7,-4,-78.64003,0,2,-9,2021,6,0,28,28,1,0,0,9.1252823,9.1252823,0,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,52.4,52.91,8.333333333333334,1,1,0,0,9,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12531,15291,27257,-9,27256,27255,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.9267,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12532,15292,27258,27259,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,6.6247067,6.5586729,0,7,-15,-40.559799,0,2,2,2021,9,0,25,16,1,0,0,4.3211551,4.3211551,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,53.14,45.74,8.333333333333334,1,1,0,0,7,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27259,27258,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.3188744,8.1745462,0,7,15,.61808157,0,2,2,2021,12,0,40,40,1,0,0,11.065361,11.065361,0,0,0,0,0,0,0,0,1,1,0,1.0762465,0,53.14,45.74,49.04,55.86,5,1,1,0,0,9,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27260,-9,27258,27259,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.4607,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27261,-9,27258,27259,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7443,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27262,-9,27258,27259,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.0697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12533,15293,27263,27264,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,49,-1,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,7.6461287,0,74.5,1,1,0,0,0,60.2,39.82,36.18,16.21,10,1,1,0,0,3,2,1,0,601,100889.75,7838.6172,150997.86,0,0,0,2787.0894 +12533,15293,27264,27263,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,50,1,0,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,42.018696,0,0,1,1,0,0,0,36.18,16.21,60.2,39.82,8.333333333333334,1,1,0,0,0,2,1,0,601,100889.75,7838.6172,150997.86,0,0,0,2787.0894 +12533,15294,27265,-9,27264,27263,1,0,44,0,0,0,2,2,-9,0,3,8.073638,8.0617476,0,0,0,-847.5849,0,2,2,2021,0,0,38,30,1,0,0,11.376643,11.376643,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,59.33,30.72,-9,-9,10,1,1,0,0,11,2,4,0,1299,129074.27,-34556.691,91326.766,58602.84,7944.5073,0,1192.7438 +12534,15295,27266,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.8518424,7.9485521,0,0,0,-960.41577,-9,1,1,2021,6,1,38,0,1,1,0,9.2124434,9.2124434,0,0,0,0,0,0,0,0,0,0,0,0,0,53.43,47.4,-9,-9,8.333333333333334,1,1,0,0,6,7,4,0,682,-161175.03,0,0,0,0,0,1593.1483 +12535,15296,27267,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1015.4835,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,9.6870337,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1352,-48460.734,0,0,0,0,0,920.57556 +12536,15297,27268,27269,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.9425373,6.8305392,0,7,-4,14.806849,0,3,2,2021,12,0,25,23,1,0,0,4.4878736,4.4878736,0,0,0,0,0,0,0,0,1,1,0,0,0,51.09,40.44,51,56,5,1,1,0,0,9,7,4,1,669,605984.63,275745,437802.88,188951.5,0,0,3171.3711 +12536,15297,27269,27268,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5246286,8.307251,0,7,4,96.738182,0,-9,-9,2021,9,0,40,40,1,1,0,12.982688,12.982688,0,0,0,0,0,0,0,0,1,1,0,.23329411,0,51,56,51.09,40.44,8,1,1,0,0,1,7,4,1,669,605984.63,275745,437802.88,188951.5,0,0,3171.3711 +12537,15298,27270,27271,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.2286224,9.0867138,0,8,1,62.474503,0,2,2,2021,11,1,38,38,1,1,0,26.751398,26.751398,0,0,0,0,0,0,0,0,0,0,0,0,0,49.5,54.11,52.99,51.28,8.333333333333334,1,1,0,0,9,13,5,1,755.5,2279617.8,2031508.6,358001.88,225376.36,0,0,5033.752 +12537,15298,27271,27270,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7574272,8.4415789,0,8,-1,-118.25539,0,-9,-9,2021,11,0,50,50,1,0,0,12.899428,12.899428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,49.5,54.11,8.333333333333334,1,1,0,0,9,13,5,1,755.5,2279617.8,2031508.6,358001.88,225376.36,0,0,5033.752 +12537,15299,27272,-9,27270,27271,1,0,21,0,0,0,2,2,-9,0,4,7.432754,7.66783,0,0,0,-1085.7166,0,1,1,2021,9,0,32,30,1,0,1,5.8822412,5.8822412,.05,.05,0,0,0,0,0,0,0,0,0,.60429317,0,50.4,55.04,-9,-9,6.666666666666667,1,1,0,0,5,13,3,1,461,163320.17,82122.891,0,0,0,0,918.53644 +12538,15300,27273,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.5407534,8.4880199,0,6,-13,21.047146,0,-9,-9,2021,12,3,38,38,1,3,0,15.28683,15.28683,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,38.63,56.7,6.666666666666667,1,1,0,0,6,5,5,1,1498,331666.56,0,0,0,0,0,1512.2737 +12539,15301,27274,27275,-9,-9,1,1,63,0,1,0,2,2,-9,1,1,0,3.3824995,3.1857257,17,14,-31.473608,0,-9,-9,2021,24,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.6014411,3.3477454,30.76,28.13,32.84,60.85,3.333333333333333,1,1,0,0,0,2,4,1,949,717616.94,142386.88,718014.38,267772.13,0,0,3829.0479 +12539,15301,27275,27274,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8331604,8.8526249,0,18,-14,-52.93808,0,2,2,2021,11,1,40,39,1,1,0,22.760416,22.760416,0,0,0,0,0,0,0,27,1,1,0,.48921081,0,32.84,60.85,30.76,28.13,6.666666666666667,1,1,0,0,12,2,4,1,949,717616.94,142386.88,718014.38,267772.13,0,0,3829.0479 +12540,15302,27276,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.8405137,8.0479765,0,0,0,-1093.8938,0,2,2,2021,12,0,20,0,1,0,0,18.549181,18.549181,0,0,0,0,0,0,0,2,0,0,0,3.0126886,0,34.21,51.94,-9,-9,5,1,1,0,0,10,5,4,1,1488,175707.42,86364.391,0,0,0,0,809.58411 +12541,15303,27277,27278,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,17,-1,21.964144,0,2,2,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,62.39,56.71,7,1,1,0,0,3,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27278,27277,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.3778982,9.5951633,0,17,1,48.000187,0,-9,-9,2021,2,0,50,55,1,0,0,36.35696,36.35696,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,48,56,8.333333333333334,1,1,0,0,10,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27279,-9,27277,27278,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.9496,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27280,-9,27277,27278,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.8088,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12542,15304,27281,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.8166299,7.7865081,0,0,0,-1020.9929,-9,1,2,2021,6,0,37,0,1,0,0,8.6311636,8.6311636,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,3922,19614.023,57530.574,0,0,7026.5293,1186.4689,1848.6243 +12542,15305,27282,-9,27281,-9,1,0,18,0,0,0,2,2,-9,0,4,6.8961835,7.0600338,0,0,0,-937.50903,-9,2,-9,2021,13,1,13,0,1,1,1,9.843998,9.843998,0,0,0,0,0,0,0,0,0,0,0,0,0,32.5,59.47,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,379,-62223.816,0,0,0,0,0,410.32401 +12543,15306,27283,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.5719013,9.4906683,7.1317568,0,0,-1169.8608,0,2,1,2021,10,0,38,38,1,0,0,30.005589,30.005589,.05,.05,0,0,0,0,0,0,0,0,0,7.0643978,0,46.33,50.4,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1246,408310.25,64194.41,215315.98,0,0,0,5732.4126 +12544,15307,27284,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.58354,8.4830008,0,0,0,-877.88977,0,3,3,2021,6,0,34,33,1,0,0,13.201137,13.201137,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,658,0,0,0,0,0,-1697.4282,1490.0299 +12545,15308,27285,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-889.87842,0,2,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.7,36.95,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,862,82169.539,53355.082,0,0,1231.3765,0,531.48291 +12546,15309,27286,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.1115918,5.8406172,0,0,-1109.1913,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.51126611,5.8910313,44.33,27.14,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1109,223234.61,-15896.377,225388.23,0,0,0,1178.7662 +12547,15310,27287,27288,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,6.6179309,6.9308696,0,6,1,-92.474869,0,-9,-9,2021,9,0,40,36,1,1,0,2.9396944,2.9396944,.05,.05,0,0,0,0,0,0,1,1,0,4.3814964,0,54,54,40.36,47.64,8,2,3,0,0,1,8,4,1,832,69251.211,302684.63,0,0,0,0,2846.0498 +12547,15310,27288,27287,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4842339,8.1780834,0,27,-1,-25.666903,0,2,1,2021,11,0,20,25,1,0,0,33.040878,33.040878,0,0,0,0,0,0,0,0,1,1,0,8.3752003,0,40.36,47.64,54,54,1.666666666666667,2,3,0,0,9,8,4,1,832,69251.211,302684.63,0,0,0,0,2846.0498 +12547,15311,27289,-9,27288,27287,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-881.53998,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,2,1,1577,0,0,0,0,0,0,801.36505 +12547,15312,27290,-9,27288,27287,1,1,23,0,0,0,2,2,-9,0,4,8.2585402,8.3850689,0,0,0,-1033.0399,0,2,2,2021,10,0,37,40,1,1,1,12.689142,12.689142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,1201,91587.305,6427.0083,0,0,3331.7322,2255.1274,1501.4437 +12548,15313,27291,27292,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,7,-4,10.728722,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,4,1,662,2107472.5,761948,141934.73,0,0,0,3824.1694 +12548,15313,27292,27291,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.2994785,8.7336988,7,4,32.765808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.146945,8.4149733,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,4,1,662,2107472.5,761948,141934.73,0,0,0,3824.1694 +12549,15314,27293,27294,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,7,-7,-101.77255,0,3,3,2021,18,7,0,37,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,35.77,62.49,55.09,8.333333333333334,1,1,1,0,7,11,5,1,622,86315.461,51671.148,346396.44,202643.41,0,0,4115.896 +12549,15314,27294,27293,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1648998,8.934659,0,7,7,63.853306,0,2,2,2021,6,0,50,48,1,0,0,25.630627,25.630627,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,37.42,35.77,8.333333333333334,1,1,0,0,8,11,5,1,622,86315.461,51671.148,346396.44,202643.41,0,0,4115.896 +12549,15315,27295,-9,27293,27294,1,1,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-1026.7723,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,1,1,2058,0,0,0,0,0,0,-278.15277 +12550,15316,27296,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1044.9773,0,2,2,2021,9,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5449736,0,57.17,50.61,-9,-9,8.333333333333334,1,1,1,0,10,2,1,1,1533,3306.5481,0,0,0,0,0,439.83862 +12550,15317,27297,-9,27296,-9,1,1,23,0,0,0,2,2,-9,0,4,7.8707972,7.8842287,0,0,0,-958.72314,0,2,-9,2021,10,0,20,24,1,1,1,10.731284,10.731284,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,988,-131845.8,-55915.891,0,0,0,0,1483.5461 +12551,15318,27298,27299,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,0,0,54,-3,0,0,3,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2762399,0,47.3,41.7,33.66,50.84,10,2,3,0,0,0,8,1,1,1575,1068825.8,347217.22,455529.94,0,0,337.41443,697.24457 +12551,15318,27299,27298,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,0,0,54,3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,50.84,47.3,41.7,1.666666666666667,2,3,0,0,4,8,1,1,1575,1068825.8,347217.22,455529.94,0,0,337.41443,697.24457 +12552,15319,27300,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,5.7135291,6.1134448,0,0,-1049.6271,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0545578,5.9416957,50,49,-9,-9,7,1,1,0,0,5,7,2,1,1113,112383.77,0,0,0,0,0,808.56683 +12553,15320,27301,27303,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.1643353,7.1633954,0,32,-2,41.514267,0,-9,-9,2021,15,3,20,24,1,3,0,8.1877155,8.1877155,0,0,0,0,0,0,0,2,1,1,0,0,0,47.3,45.59,45.18,54.77,6.666666666666667,1,1,0,0,9,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27302,-9,27301,27303,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.5083,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27303,27301,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,7.6184354,7.4950857,0,32,2,63.56987,0,2,2,2021,13,1,40,35,1,1,0,5.728929,5.728929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,47.3,45.59,5,1,1,0,0,11,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27304,-9,27301,27303,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.08618,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6771116,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12554,15321,27305,-9,-9,-9,1,1,83,0,1,0,2,2,-9,0,4,0,7.3329997,7.2931342,0,0,-938.77679,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4400115,62.93,37.21,-9,-9,10,1,1,0,0,0,7,2,1,729,99926.031,127474.33,0,0,0,0,1991.9214 +12554,15322,27306,-9,27307,27309,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-947.45782,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,0,0,0,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27307,27309,-9,27305,1,0,39,0,1,0,2,2,-9,0,3,6.4671102,6.5090828,0,3,-14,-164.16689,0,-9,2,2021,10,0,40,60,1,0,0,1.4905906,1.4905906,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,1,8,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27308,-9,27307,27309,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1056.1118,-9,2,2,2021,23,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,1,4,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27309,27307,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1887207,8.2139797,0,3,14,14.324358,0,-9,-9,2021,9,0,50,50,1,0,0,8.9582739,8.9582739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,12,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12555,15323,27310,27311,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.8802142,7.50314,0,10,0,-40.898323,0,3,3,2021,6,0,43,38,1,0,0,5.4543004,5.4543004,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,49.55,55.6,1.666666666666667,1,1,0,0,8,11,4,0,876.5,587352.81,81485.219,478502.81,0,0,0,2704.3682 +12555,15323,27311,27310,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.4076595,7.4464474,0,33,0,71.030312,0,-9,1,2021,10,0,25,35,1,0,0,8.156827,8.156827,0,0,0,0,0,0,0,0,0,0,0,0,0,49.55,55.6,58.32,50.22,6.666666666666667,1,1,0,0,6,11,4,0,876.5,587352.81,81485.219,478502.81,0,0,0,2704.3682 +12555,15324,27312,-9,27311,27310,1,1,24,0,0,0,2,2,-9,0,2,8.0604658,7.7711492,0,0,0,-951.50812,0,3,3,2021,8,0,36,38,1,0,1,8.8249941,8.8249941,0,0,0,0,0,0,0,0,0,0,0,0,0,48.43,52.37,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,283,4014.8484,0,0,0,0,0,718.15088 +12555,15325,27313,-9,27311,27310,1,0,26,0,0,0,2,2,-9,0,3,7.8448806,7.8581886,0,2,-5,106.34763,0,3,3,2021,12,0,40,39,1,0,0,7.6036005,7.6036005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.6,50.07,17.28,63.4,5,1,1,0,0,7,11,4,0,1188,-20798.621,62401.73,0,0,0,0,849.22937 +12555,15326,27314,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.654808,7.7855506,0,2,5,41.363163,0,-9,-9,2021,31,12,35,0,1,12,0,7.0804763,7.0804763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.28,63.4,44.6,50.07,3.333333333333333,1,1,0,0,1,11,4,0,316,-116627.95,-36790.898,0,0,0,0,-123.82665 +12556,15327,27315,27316,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,35,7,0,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,26.59091,0,7,1,1,0,0,0,36.53,38.79,35.73,27,3.333333333333333,2,3,0,0,0,8,1,0,704,1053148.3,430478.56,333731.34,0,0,0,3048.6431 +12556,15327,27316,27315,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,35,-7,0,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,27,36.53,38.79,1.666666666666667,2,3,0,1,0,8,1,0,704,1053148.3,430478.56,333731.34,0,0,0,3048.6431 +12556,15328,27317,-9,27316,27315,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-952.70306,-9,3,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.1,56.68,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,2077,-247378.14,0,0,0,0,0,-153.58768 +12557,15329,27318,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9068475,8.2806625,0,0,0,-865.48773,0,3,3,2021,11,0,38,42,1,0,0,9.981678,9.981678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.7,51.43,-9,-9,5,1,1,0,0,12,13,4,0,535,-93154.18,124710.09,0,0,0,0,354.48746 +12558,15330,27319,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,2.2452192,2.2676191,0,0,0,-1007.7072,-9,2,2,2021,25,11,40,0,1,11,0,.036068231,.036068231,0,0,0,1,0,0,0,7,0,0,0,7.8898354,0,33.81,63.92,-9,-9,5,1,1,0,0,11,6,2,1,2344,-76527,-9667.373,0,0,0,0,810.44244 +12559,15331,27320,27321,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.0171757,8.0791254,0,6,3,-26.83872,0,3,3,2021,13,1,38,38,1,1,0,11.446154,11.446154,0,0,0,0,0,0,0,2,1,1,0,0,0,37.49,55.42,35.28,47.77,5,1,1,0,0,7,4,3,1,743,746.03125,37531.891,0,0,6130.0347,0,1522.8813 +12559,15331,27321,27320,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-32.246311,0,2,1,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,35.28,47.77,37.49,55.42,5,1,1,1,1,1,4,3,1,743,746.03125,37531.891,0,0,6130.0347,0,1522.8813 +12559,15332,27322,-9,27321,27320,1,1,20,0,0,0,2,2,-9,0,3,7.2268424,7.183815,0,0,0,-1108.8125,0,2,2,2021,8,0,45,36,1,0,1,4.8514438,4.8514438,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,3,4,3,1,742,3693.4399,0,0,0,0,0,565.84436 +12559,15333,27323,-9,27321,27320,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-998.26575,-9,2,2,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,1,0,3,4,1,1,393,162204.14,0,0,0,0,0,0 +12559,15334,27324,-9,27321,27320,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1061.7844,-9,2,2,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.62,39.5,-9,-9,6.666666666666667,1,1,0,1,0,4,1,1,610,148415.78,0,0,0,0,0,0 +12560,15335,27325,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.6484866,6.3387523,0,0,-992.4187,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3892536,6.499784,53.37,32.38,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1745,297006.19,62683.688,120198.45,0,0,0,837.61829 +12561,15336,27326,27327,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,8.7576914,8.6164513,55,-1,70.929153,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.7558017,8.5465136,53.34,56.67,32.16,35.9,8.333333333333334,1,1,0,0,10,6,4,1,534,1210027.5,838378.75,371216.81,0,0,1514.7854,5929.2109 +12561,15336,27327,27326,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,6.9803977,6.92519,55,1,-35.22303,0,3,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3866262,7.0650282,32.16,35.9,53.34,56.67,1.666666666666667,1,1,0,0,0,6,4,1,534,1210027.5,838378.75,371216.81,0,0,1514.7854,5929.2109 +12562,15337,27328,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,9.6254835,9.7795706,0,0,0,-1005.6916,0,2,2,2021,7,0,15,15,1,0,0,104.04505,104.04505,0,0,.05,0,0,0,0,0,1,1,0,6.3262649,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,6,2,5,1,1165,534967.81,255833.83,155771.61,0,0,0,8303.0479 +12563,15338,27329,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.3451562,7.476193,0,0,-1145,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.21501367,7.3648582,62.49,55.09,-9,-9,10,1,1,0,0,0,12,3,1,2505,150995.22,199778.84,60021.273,0,0,0,788.12769 +12564,15339,27330,27332,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.5436258,8.3712254,0,11,-4,-52.689754,0,3,3,2021,13,3,42,35,1,3,0,11.027954,11.027954,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.26,50.58,5,1,1,0,0,12,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15339,27331,-9,27330,27332,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.3767,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15339,27332,27330,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.2774286,9.1632767,0,11,4,-59.552402,0,2,2,2021,12,0,75,40,1,0,0,18.734947,18.734947,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.26,50.58,46.08,57.2,6.666666666666667,1,1,0,0,12,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15340,27333,-9,27330,27332,1,1,23,0,1,0,1,1,1,0,4,7.4396095,7.6679435,0,0,0,-867.76208,-9,2,1,2021,11,0,20,0,1,0,1,9.291276,9.291276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,595,118702.57,-205754.38,0,0,0,0,365.84164 +12565,15341,27334,27335,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7973671,9.055809,5.9425464,7,4,-134.0191,0,-9,-9,2021,11,0,50,55,1,0,0,15.442604,15.442604,.05,.05,0,0,0,0,0,0,1,1,0,5.399128,5.617929,52,54.51,43.42,62.33,8.333333333333334,1,1,0,0,8,5,5,1,472.5,1540518.5,1185080.5,261277.69,0,12659.273,0,6124.4121 +12565,15341,27335,27334,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5191603,8.563508,0,7,-4,20.798666,0,-9,-9,2021,21,8,82,49,1,8,0,6.1938939,6.1938939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,52,54.51,3.333333333333333,1,1,0,1,8,5,5,1,472.5,1540518.5,1185080.5,261277.69,0,12659.273,0,6124.4121 +12566,15342,27336,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,6.1068912,6.7120366,0,0,0,-912.76587,0,-9,-9,2021,14,2,25,32,1,2,0,2.2985818,2.2985818,0,0,0,0,0,0,0,0,1,1,0,0,0,40.52,34.42,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,3029,-177334.22,108278.71,45255.855,0,0,0,1306.6396 +12567,15343,27337,27338,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.2757015,8.3500319,0,8,4,-25.158459,0,-9,-9,2021,10,0,50,50,1,0,0,10.803591,10.803591,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.63,51.79,35.97,61.83,5,1,1,0,0,11,11,4,1,346.5,498902.81,605910.63,0,0,8907.4863,1861.0393,3441.3535 +12567,15343,27338,27337,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.1323748,8.344552,0,28,-4,-16.554106,0,2,2,2021,13,4,33,30,1,4,0,13.076981,13.076981,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,61.83,48.63,51.79,5,1,1,0,0,11,11,4,1,346.5,498902.81,605910.63,0,0,8907.4863,1861.0393,3441.3535 +12568,15344,27339,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.82025,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,5,1,1,827,-41686.898,0,0,0,0,0,1071.8724 +12569,15345,27340,27341,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,8,6,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,42.52,38.79,8,1,1,1,0,0,12,1,0,660,-17815.914,0,0,0,-1988.3525,0,1363.6704 +12569,15345,27341,27340,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,8,-6,0,0,3,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.52,38.79,54,53,0,1,1,1,0,0,12,1,0,660,-17815.914,0,0,0,-1988.3525,0,1363.6704 +12570,15346,27342,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,9.0679541,9.2960024,0,0,0,-885.25983,0,2,1,2021,12,0,46,46,1,0,0,21.903423,21.903423,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,12,8,5,1,697,661192.19,142034.2,606364.75,247233.97,0,732.33258,2178.9192 +12571,15347,27343,27345,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.414257,8.3353415,0,21,-6,36.318108,0,3,2,2021,19,8,32,36,1,8,0,16.395018,16.395018,0,0,0,0,0,0,0,0,1,1,0,0,0,34.27,44.45,50.48,56.4,6.666666666666667,1,1,0,0,14,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27344,-9,27343,27345,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27345,27343,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.7691593,8.5628109,0,19,6,32.615032,0,3,3,2021,9,1,85,40,1,1,0,6.0253081,6.0253081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,34.27,44.45,8.333333333333334,2,3,0,0,14,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27346,-9,27343,27345,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-953.18744,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,4,2,-9,0,0,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12572,15348,27347,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,3,5.0264645,5.280014,0,0,0,-935.21649,0,2,3,2021,19,7,6,0,1,7,0,3.1228027,3.1228027,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,45.36,-9,-9,1.666666666666667,1,1,0,0,1,7,2,1,750,131634.92,0,0,0,0,0,178.11305 +12573,15349,27348,27349,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.836627,7.7239327,0,9,11,-67.107567,0,2,3,2021,8,0,38,41,1,0,0,6.8716059,6.8716059,.05,.05,0,0,0,0,0,0,0,0,0,1.7376842,0,57.76,48.98,38.21,54.03,6.666666666666667,1,1,0,0,10,5,4,1,694.5,-13389.448,-3804.2993,0,0,2313.6489,780.90729,2809.5068 +12573,15349,27349,27348,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.2271576,8.1179047,0,9,-11,-29.07649,0,-9,-9,2021,14,2,55,50,1,2,0,9.1158581,9.1158581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.76,48.98,6.666666666666667,1,1,0,0,10,5,4,1,694.5,-13389.448,-3804.2993,0,0,2313.6489,780.90729,2809.5068 +12574,15350,27350,-9,-9,-9,1,0,66,1,2,0,2,2,-9,0,3,0,7.5190272,7.7528014,0,0,-1031.0454,0,3,3,2021,6,0,0,30,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4260073,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,166,50902.184,88972.109,0,0,0,0,1355.4274 +12574,15351,27351,-9,27352,27354,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.8939,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27352,27354,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.474545,7.5439467,0,2,-6,12.680416,0,-9,-9,2021,12,1,40,42,1,1,0,4.6390448,4.6390448,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,46.67,55.57,8.333333333333334,1,1,0,0,8,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27353,-9,27352,27354,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.9032,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27354,27352,27350,-9,1,1,37,1,2,0,2,2,-9,0,3,0,0,0,2,6,-50.293751,0,2,-9,2021,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4274025,0,46.67,55.57,43.96,55.64,5,1,1,0,0,6,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12575,15352,27355,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.1177664,7.7878137,0,0,0,-1116.1106,0,2,2,2021,7,0,45,40,1,0,0,7.8719859,7.8719859,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,1327,-57970.477,0,0,0,0,0,1428.4414 +12576,15353,27356,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.5778513,7.2380371,0,0,-895.13159,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7169962,7.5671515,54.85,45.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,911,413775.13,453928.81,187823.33,0,11785.365,0,1183.2135 +12577,15354,27357,27358,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.7450576,7.5912509,36,-1,-8.383502,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9384985,7.5030994,63.95,43.63,51.14,60.45,8.333333333333334,1,1,0,0,6,4,3,1,2314.5,2352083.5,1254761.3,263029.31,0,0,0,5073.417 +12577,15354,27358,27357,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.4596639,8.0065441,36,1,107.87431,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2027378,7.7240424,51.14,60.45,63.95,43.63,8.333333333333334,1,1,0,0,10,4,3,1,2314.5,2352083.5,1254761.3,263029.31,0,0,0,5073.417 +12578,15355,27359,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.04346,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,1129,171647.5,0,77544.539,0,0,0,1102.3893 +12578,15356,27360,-9,27359,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3353186,8.2886267,0,0,0,-1024.254,0,3,-9,2021,8,0,40,40,1,0,0,14.452914,14.452914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,12,6,4,1,836,35510.734,-29421.309,56397.637,18359.377,5860.0322,7072.9888,1947.4658 +12579,15357,27361,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5570335,8.6009855,0,0,0,-1057.6909,-9,2,2,2021,18,6,81,0,1,6,0,7.711483,7.711483,.05,.05,0,0,0,0,0,7,0,0,0,2.472923,0,29.91,57.76,-9,-9,5,1,1,0,0,12,12,5,1,1951,410557.56,-68241.891,143800.31,0,0,0,3010.8406 +12580,15358,27362,27363,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.8120117,8.2416325,28,1,33.282784,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.3238292,7.8125072,55.94,47.09,43.59,46.41,8.333333333333334,1,1,0,0,5,8,4,1,669.5,2282586,1250553.1,589190.75,0,0,0,3451.394 +12580,15358,27363,27362,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.1780438,7.5827827,28,-1,111.97688,0,1,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.8951602,7.1168051,43.59,46.41,55.94,47.09,8.333333333333334,1,1,0,0,10,8,4,1,669.5,2282586,1250553.1,589190.75,0,0,0,3451.394 +12581,15359,27364,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,7.6159496,7.41155,0,0,-1198.7939,0,3,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,125.89291,0,1173.3698,0,1,1,0,0,7.6221232,28.7,26.71,-9,-9,5,1,1,0,0,0,13,3,0,520,311674.88,256551.33,230033.22,0,0,0,1789.5682 +12582,15360,27365,27366,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.8802199,6.9220219,6.4965396,5,0,121.64843,0,-9,-9,2021,6,0,16,21,1,0,0,5.5932193,5.5932193,0,0,0,0,0,0,0,0,1,1,0,0,6.4307976,44.13,57.97,37.83,42.07,10,1,1,0,0,11,1,2,1,425.5,965173.5,214773.56,640187.13,0,0,0,2411.5273 +12582,15360,27366,27365,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,4.8815713,5.1689944,42,9,146.62508,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.6960139,5.2060738,37.83,42.07,44.13,57.97,5,1,1,0,0,8,1,2,1,425.5,965173.5,214773.56,640187.13,0,0,0,2411.5273 +12583,15361,27367,-9,27369,27368,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.62457,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27368,27369,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,8.5069056,8.6418657,0,19,5,141.24933,0,3,3,2021,12,0,40,40,1,0,0,13.839737,13.839737,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.36,39.55,61.05,28.35,6.666666666666667,2,3,0,0,9,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27369,27368,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,19,-5,92.179794,0,2,2,2021,15,4,0,10,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,61.05,28.35,41.36,39.55,10,2,3,0,0,2,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27370,-9,27369,27368,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.53418,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15362,27371,-9,27369,27368,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1066.3716,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,65.66,30.39,-9,-9,10,2,3,0,0,2,7,1,1,458,54029.551,0,0,0,0,149.11879,0 +12584,15363,27372,-9,27373,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2217,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12584,15363,27373,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1065.4841,0,3,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12584,15363,27374,-9,27373,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.2468,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12585,15364,27375,-9,27377,27378,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.38098,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27376,-9,27377,27378,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.4541,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27377,27378,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,0,0,0,2,-2,22.416662,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.48,59.49,38.18,55.38,6.666666666666667,1,1,0,0,10,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27378,27377,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,8.6850491,8.7610044,0,2,2,68.106575,0,-9,-9,2021,20,7,45,46,1,7,0,13.712503,13.712503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.18,55.38,32.48,59.49,5,1,1,0,0,12,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27379,-9,27377,27378,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.46539,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12586,15365,27380,27381,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.6401815,8.5290022,51,0,91.679306,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5990562,8.7207098,58.3,52.91,52.4,52.91,8.333333333333334,1,1,0,0,11,10,5,1,2403.5,1668544,871259.19,415614.88,0,0,0,4874.9873 +12586,15365,27381,27380,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.2806058,7.5673838,51,0,-1.276898,0,1,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0057993,52.4,52.91,58.3,52.91,8.333333333333334,1,1,0,0,0,10,5,1,2403.5,1668544,871259.19,415614.88,0,0,0,4874.9873 +12587,15366,27382,27383,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6906848,7.6991582,0,7,-8,16.380068,0,-9,-9,2021,8,0,34,35,1,0,0,7.3647451,7.3647451,0,0,0,0,0,0,0,2,0,0,0,.2937071,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,914.5,555058.19,299523.22,244554.81,21045.479,443.21729,0,2823.3291 +12587,15366,27383,27382,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.3885355,8.2083292,4.6216726,7,8,-32.107212,0,3,3,2021,8,0,38,43,1,0,0,11.29046,11.29046,.05,.05,.05,0,0,0,0,0,0,0,0,3.4532411,4.5855389,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,8,9,4,1,914.5,555058.19,299523.22,244554.81,21045.479,443.21729,0,2823.3291 +12587,15367,27384,-9,27382,27383,1,1,27,0,0,0,1,1,-9,0,4,8.1965246,8.5405226,0,0,0,-919.18622,0,3,3,2021,11,0,39,0,1,0,1,12.401903,12.401903,.05,.05,0,0,0,0,0,0,0,0,0,5.572382,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,576,240505.92,111027.76,0,0,0,0,1369.6854 +12587,15368,27385,-9,27382,27383,1,1,25,0,0,0,1,1,-9,0,3,7.3220816,7.8276639,0,0,0,-887.68945,0,2,2,2021,15,4,33,12,1,4,1,6.1670804,6.1670804,0,0,0,0,0,0,0,0,0,0,0,0,0,24.09,61.92,-9,-9,5,1,1,0,0,1,9,3,1,980,15130.343,0,0,0,0,0,-160.54257 +12588,15369,27386,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.3092232,7.9600096,0,0,-921.67023,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8006227,8.2371864,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,385,1375816.1,1153125,0,0,0,10164.676,3007.197 +12589,15370,27387,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1008.6321,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,53.3,24.34,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,915,-96886.359,0,0,0,0,0,956.86591 +12590,15371,27388,27390,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.4695807,8.6375875,0,6,0,8.3058004,0,-9,-9,2021,4,0,24,20,1,0,0,35.969715,35.969715,.05,.05,0,0,0,0,0,0,1,1,0,7.2964826,0,51.68,58.85,57.16,56.15,10,1,1,0,0,9,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27389,-9,27390,27388,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.92621,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27390,27388,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.7042007,7.480391,0,6,0,105.62897,0,-9,-9,2021,5,0,9,7,1,0,0,30.162128,30.162128,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.68,58.85,10,1,1,0,0,10,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27391,-9,27390,27388,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0667,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12591,15372,27392,27393,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.7150917,6.8886037,45,2,-21.544788,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4146442,6.8279047,60.44,46.58,47.22,53.97,6.666666666666667,1,1,0,0,10,6,2,1,3496,184544.8,82193.359,112003.67,0,0,0,1609.1011 +12591,15372,27393,27392,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,46,-2,14.863678,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.22,53.97,60.44,46.58,6.666666666666667,1,1,0,0,0,6,2,1,3496,184544.8,82193.359,112003.67,0,0,0,1609.1011 +12592,15373,27394,27396,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,0,6.4684763,5.9342556,1,3,-179.01274,0,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0652361,0,54.69,57.47,57.57,49.69,8.333333333333334,1,1,0,0,6,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27395,-9,27394,27396,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.4412,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27396,27394,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,7.9322395,7.8122787,0,1,-3,37.000938,-9,-9,-9,2021,6,0,36,0,1,0,0,8.6352386,8.6352386,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,54.69,57.47,10,1,1,0,1,2,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27397,-9,27394,27396,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4004,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12593,15374,27398,27399,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.7627025,5.0060496,67,3,-46.179184,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,1.5728381,5.0911264,54.53,43.74,66.01000000000001,31.02,8.333333333333334,1,1,0,0,0,2,2,1,824,427606.81,166421.53,184271.28,0,0,175.35022,2442.0078 +12593,15374,27399,27398,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,67,-3,140.18307,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,27.064245,0,0,1,1,0,2.259665,0,66.01000000000001,31.02,54.53,43.74,0,1,1,0,0,0,2,2,1,824,427606.81,166421.53,184271.28,0,0,175.35022,2442.0078 +12594,15375,27400,-9,27401,27402,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.6203,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12594,15375,27401,27402,-9,-9,1,0,41,0,2,0,2,2,-9,1,3,8.1199503,8.0041475,0,8,-3,62.753166,0,3,2,2021,9,0,48,36,1,0,0,6.0676208,6.0676208,0,0,0,0,0,0,0,78,1,1,0,0,0,52,54.51,60.12,54.8,8.333333333333334,1,1,0,0,8,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12594,15375,27402,27401,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.9382405,7.9394822,0,8,3,-.023190286,0,-9,-9,2021,9,0,39,43,1,0,0,8.1351156,8.1351156,0,0,.05,0,0,0,0,87,1,1,0,0,0,60.12,54.8,52,54.51,8.333333333333334,1,1,0,0,11,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12595,15376,27403,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.6587,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87325263,0,45.59,34.4,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,1251,105575.01,0,0,0,0,0,387.08701 +12596,15377,27404,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,5.2259574,5.1556706,0,0,0,-943.24634,0,3,3,2021,16,4,40,32,1,4,0,.47902015,.47902015,0,0,0,0,0,0,0,2,0,0,0,0,0,46.07,37.4,-9,-9,5,1,1,0,0,11,2,2,1,403,81127.555,-8054.647,0,0,0,-60.044453,-297.27335 +12597,15378,27405,27406,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,25,0,0,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,24.43,37.96,52,47,3.333333333333333,1,1,0,0,0,5,1,0,363,-14423.859,0,129935.1,0,0,0,1483.5848 +12597,15378,27406,27405,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,25,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,24.43,37.96,7,1,1,0,0,0,5,1,0,363,-14423.859,0,129935.1,0,0,0,1483.5848 +12598,15379,27407,27408,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5833721,8.7812109,0,4,1,115.57188,0,-9,-9,2021,8,0,40,40,1,0,0,15.961161,15.961161,.05,.05,0,0,0,0,0,0,0,0,0,.030930288,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,5,6,5,1,670.5,559228.38,246987.83,274538.53,142524.2,2541.9243,0,5549.0732 +12598,15379,27408,27407,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0964546,9.1515856,0,4,-1,-61.851955,0,1,3,2021,12,2,37,40,1,2,0,33.503323,33.503323,.05,.05,0,0,0,0,0,0,0,0,0,4.4512591,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,9,6,5,1,670.5,559228.38,246987.83,274538.53,142524.2,2541.9243,0,5549.0732 +12599,15380,27409,27411,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,0,0,0,27,-1,47.316025,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8876238,0,57.06,57.76,57.16,56.15,10,1,1,1,0,11,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12599,15380,27410,-9,27409,27411,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.55298,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12599,15380,27411,27409,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.7634125,9.42383,0,27,1,96.06221,0,2,2,2021,10,0,45,41,1,0,0,42.869007,42.869007,.05,.05,0,0,0,0,0,0,0,0,0,7.5349398,0,57.16,56.15,57.06,57.76,10,1,1,0,0,10,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12600,15381,27412,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.4697089,6.3366227,0,0,-1127.2898,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.9278502,3.4803441,63.849655,0,1,1,0,0,6.4200559,56.14,17.24,-9,-9,10,1,1,0,0,0,5,2,0,396,307833.69,32936.082,0,0,0,0,1303.3571 +12601,15382,27413,27414,-9,-9,1,1,48,1,3,0,2,2,-9,0,3,8.0764227,7.9849782,0,5,14,10.563264,0,-9,-9,2021,11,2,50,46,1,2,0,5.1517859,5.1517859,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.44,52.07,47.11,43.13,8.333333333333334,1,1,0,0,3,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27414,27413,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,5,-14,-38.422653,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,43.13,43.44,52.07,6.666666666666667,1,1,0,0,7,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27415,-9,27414,27413,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1082.2843,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27416,-9,27414,27413,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.9426,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12602,15383,27417,27419,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8628378,7.5770531,0,20,4,-3.728013,0,2,2,2021,6,0,20,18,1,0,0,13.09201,13.09201,.05,.05,0,0,0,0,0,0,0,0,0,7.0462794,0,54.2,57.49,46.98,59.35,8.333333333333334,1,1,0,0,2,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12602,15383,27418,-9,27417,27419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.51154,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12602,15383,27419,27417,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.5475006,9.7000961,0,20,-4,14.05574,0,2,2,2021,12,0,40,50,1,0,0,42.942364,42.942364,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12603,15384,27420,-9,27423,27421,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.266,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27421,27423,-9,-9,1,1,63,0,1,0,2,2,-9,0,4,8.0692558,7.9115977,0,20,-1,-22.488159,0,3,-9,2021,6,0,40,40,1,0,0,7.628006,7.628006,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,53.97,55.5,50.04,8.333333333333334,2,3,0,0,9,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27422,-9,-9,27421,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1103.7126,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,58.81,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27423,27421,-9,-9,1,0,64,0,1,0,1,1,-9,0,4,0,0,0,22,1,109.52252,0,3,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.5,50.04,46.65,53.97,10,2,3,0,0,5,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12604,15385,27424,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.6760688,7.25425,0,0,-1035.3132,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.834662,48.8,49.1,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,216,506200.03,146510.64,298045.19,0,0,0,792.50055 +12605,15386,27425,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.5008283,7.4117098,0,0,-1082.6542,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0424055,7.1648359,50.27,44.25,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,832,1207761.1,218039.13,658976.06,0,0,0,1323.1323 +12606,15387,27426,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.2216134,6.3879499,0,0,-1000.4173,0,2,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9948916,9.960000000000001,48.45,-9,-9,3.333333333333333,1,1,0,1,0,8,2,1,246,173169.27,0,0,0,0,0,455.27258 +12607,15388,27427,27428,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.4366636,8.3190928,37,7,72.740814,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.0226655,8.5263805,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,621.5,1694789.1,1265370.9,175490.86,0,0,1159.9558,2158.5188 +12607,15388,27428,27427,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.548409,6.0850387,38,-7,72.094078,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4146266,6.3416429,57.16,56.15,54.61,51.04,8.333333333333334,1,1,0,0,8,2,4,1,621.5,1694789.1,1265370.9,175490.86,0,0,1159.9558,2158.5188 +12608,15389,27429,-9,27431,27430,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.32855,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12608,15389,27430,27431,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.62115,7.2144141,0,4,3,-34.71616,0,-9,-9,2021,2,0,30,0,1,0,0,6.0995116,6.0995116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.13,49.27,55.79,52.62,8.333333333333334,1,1,0,0,8,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12608,15389,27431,27430,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.9402881,7.0373974,0,4,-3,-15.555064,0,2,3,2021,7,0,17,24,1,0,0,6.9802475,6.9802475,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,60.13,49.27,10,1,1,0,0,6,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12609,15390,27432,27433,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.0180922,7.7487636,9,8,86.842369,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8981924,7.944078,55.35,41.97,30.29,21.51,8.333333333333334,1,1,0,0,2,2,4,1,485,1822208.8,488540.88,354863.13,0,0,0,4026.3135 +12609,15390,27433,27432,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,6.775063,6.7373548,9,-8,-65.541519,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,2.3615234,0,0,1,1,0,4.052372,7.1618943,30.29,21.51,55.35,41.97,6.666666666666667,1,1,0,0,7,2,4,1,485,1822208.8,488540.88,354863.13,0,0,0,4026.3135 +12610,15391,27434,27435,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,2.202508,2.0312393,0,11,-4,-49.044155,0,3,3,2021,18,7,23,26,1,7,0,.045594439,.045594439,0,0,0,0,0,0,0,0,0,0,0,1.5580704,0,43.65,58.28,48.31,49.46,5,1,1,0,0,12,6,5,1,1996,1903316.6,1382355,287639.5,0,662.78784,0,2692.177 +12610,15391,27435,27434,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9653921,8.9500008,0,11,4,14.76081,0,2,2,2021,12,0,36,46,1,0,0,28.409689,28.409689,0,0,.05,0,0,0,0,0,0,0,0,2.6612062,0,48.31,49.46,43.65,58.28,8.333333333333334,1,1,0,0,12,6,5,1,1996,1903316.6,1382355,287639.5,0,662.78784,0,2692.177 +12611,15392,27436,27437,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,-8,109.66047,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2776484,0,63.41,39.7,51.83,57.2,10,1,1,0,0,0,10,4,1,766.5,613376.75,178867.27,355948,0,0,0,3917.9668 +12611,15392,27437,27436,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.8171787,8.9201908,50,8,8.3307962,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5099707,51.83,57.2,63.41,39.7,8.333333333333334,1,1,0,0,0,10,4,1,766.5,613376.75,178867.27,355948,0,0,0,3917.9668 +12612,15393,27438,-9,27440,27439,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1045.1993,-9,2,1,2021,6,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6486874,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15393,27439,27440,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,7.6559649,7.655827,0,8,-7,-40.336491,0,2,2,2021,7,0,37,40,1,0,0,6.2318788,6.2318788,.05,.05,0,0,0,0,0,0,0,0,0,2.478914,0,62.39,56.71,57.18,48.06,5,1,1,0,0,9,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15393,27440,27439,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,8.2700291,8.1896496,6.1138487,8,7,-32.265812,0,2,2,2021,5,0,38,45,1,0,0,10.67747,10.67747,.05,.05,0,0,0,0,0,42,0,0,0,6.2843156,0,57.18,48.06,62.39,56.71,6.666666666666667,1,1,0,0,8,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15394,27441,-9,27440,27439,1,1,19,0,1,0,2,2,-9,0,5,7.9068642,7.8826184,0,0,0,-1095.395,0,2,1,2021,9,0,40,45,1,0,1,7.3062401,7.3062401,.05,.05,0,0,0,0,0,0,0,0,0,2.5977855,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,584,-128226.44,-123620.86,0,0,4694.6196,0,1044.6934 +12613,15395,27442,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.771524,7.7628269,0,0,-1062.7561,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2274289,7.8168077,33.86,52.18,-9,-9,3.333333333333333,1,1,0,0,7,10,3,0,807,556655.44,67766.555,250333.84,0,0,0,2333.2595 +12614,15396,27443,-9,27444,27445,1,0,47,0,0,0,2,2,-9,0,3,9.2645187,9.0219965,0,0,0,-964.06573,0,2,3,2021,11,0,41,43,1,0,0,24.954779,24.954779,.05,.05,0,0,0,0,0,0,1,1,0,7.5448923,0,54.38,49.27,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,286,-113279.04,102819.18,0,0,0,768.53174,3905.0264 +12614,15397,27444,27445,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,2,-7,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,38.46,44.97,52.64,6.666666666666667,1,1,0,0,0,8,1,1,1184,0,0,0,0,0,0,864.97351 +12614,15397,27445,27444,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,2,7,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.97,52.64,48.76,38.46,5,1,1,0,0,0,8,1,1,1184,0,0,0,0,0,0,864.97351 +12615,15398,27446,27448,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.6331339,8.612606,0,8,1,9.1755009,0,2,-9,2021,8,0,40,40,1,0,0,19.99889,19.99889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,44.83,55.13,8.333333333333334,1,1,0,0,9,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27447,-9,27448,27446,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.28479,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27448,27446,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.3906136,8.4393692,0,8,-1,-42.944408,0,2,-9,2021,11,0,25,41,1,0,0,16.303595,16.303595,0,0,0,0,0,0,0,0,1,1,0,4.3496141,0,44.83,55.13,58.15,52.91,8.333333333333334,1,1,0,0,10,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27449,-9,27448,27446,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.98871,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12616,15399,27450,27451,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1614757,6.6703715,55,-6,-62.299744,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5439806,51,46,54,46,8.333333333333334,1,1,0,0,0,11,2,1,626,304665.41,135091.92,145033.84,0,5292.8447,0,2141.3071 +12616,15399,27451,27450,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.3940215,6.7792544,55,6,4.7889104,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7115154,54,46,51,46,8,1,1,0,0,0,11,2,1,626,304665.41,135091.92,145033.84,0,5292.8447,0,2141.3071 +12617,15400,27452,27455,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,8.952529,9.3492451,0,17,-1,44.192604,0,2,2,2021,3,0,36,50,1,0,0,32.272964,32.272964,0,0,0,0,0,0,0,2,0,0,0,4.3039713,0,57.16,56.15,35.97,61.83,10,1,1,0,0,12,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27453,-9,27455,27452,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.5321,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27454,-9,27455,27452,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.54272,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27455,27452,-9,-9,1,0,58,0,2,0,1,1,-9,0,4,9.0214281,9.178174,0,37,1,-62.38718,0,2,1,2021,19,6,20,15,1,6,0,41.832001,41.832001,0,0,0,0,0,0,0,2,0,0,0,0,0,35.97,61.83,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12618,15401,27456,27458,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-14,92.507515,0,3,2,2021,11,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,53.05,52.71,8.333333333333334,1,1,0,0,5,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12618,15401,27457,-9,27456,27458,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.81165,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12618,15401,27458,27456,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.6719499,7.8150868,0,7,14,63.314152,0,2,2,2021,12,0,35,40,1,0,0,8.2796917,8.2796917,0,0,0,0,0,0,0,0,1,1,0,0,0,53.05,52.71,45.91,59.89,8.333333333333334,1,1,0,0,9,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12619,15402,27459,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.7471957,7.6755047,0,0,-1071.8688,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5378642,7.9581828,59.53,56.44,-9,-9,10,1,1,0,0,0,10,3,1,258,867180.94,328736.09,449109.16,0,0,0,1761.1267 +12620,15403,27460,27461,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4686122,6.637567,43,-1,118.94019,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6871185,46.08,57.2,51.14,60.45,6.666666666666667,1,1,0,0,9,2,2,1,691.5,572996.19,380781.22,154450.83,0,0,0,574.87158 +12620,15403,27461,27460,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.189055,6.7305074,43,1,-18.314434,0,3,3,2021,10,0,0,42,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6.9610267,51.14,60.45,46.08,57.2,6.666666666666667,1,1,0,0,12,2,2,1,691.5,572996.19,380781.22,154450.83,0,0,0,574.87158 +12621,15404,27462,27463,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.2452469,8.4969072,54,1,23.979769,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5415549,8.1936512,44.76,50.85,38.15,42.16,6.666666666666667,1,1,0,0,0,10,5,1,535.5,1792071.8,898903.19,691360.25,0,11000.843,0,6596.1885 +12621,15404,27463,27462,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.5757418,8.6881838,54,-1,-32.737045,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0101767,8.6153164,38.15,42.16,44.76,50.85,3.333333333333333,1,1,0,0,0,10,5,1,535.5,1792071.8,898903.19,691360.25,0,11000.843,0,6596.1885 +12622,15405,27464,27465,-9,-9,1,1,63,0,0,0,3,3,-9,1,4,7.9259381,7.8026032,6.5106082,8,7,89.092552,0,3,-9,2021,10,0,37,42,1,0,0,8.1290064,8.1290064,0,0,0,0,0,0,0,14.5,1,1,0,0,6.7553873,48.76,53.24,43.51,21.54,8.333333333333334,1,1,0,0,9,2,3,1,227.5,1182798.6,942530.81,293797.5,0,0,0,2224.6919 +12622,15405,27465,27464,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,8,-7,-60.676865,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.51,21.54,48.76,53.24,5,1,1,0,0,1,2,3,1,227.5,1182798.6,942530.81,293797.5,0,0,0,2224.6919 +12623,15406,27466,-9,27467,27469,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-945.80511,-9,1,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27467,27469,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.6088462,7.441134,0,7,-3,-15.318652,0,3,2,2021,16,5,19,19,1,5,0,9.4576578,9.4576578,.05,.05,0,0,0,0,0,0,1,1,0,.51374471,0,45.81,61.51,35.62,64.71000000000001,6.666666666666667,1,1,0,1,11,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27468,-9,27467,27469,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.41852,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27469,27467,-9,-9,1,1,35,0,2,0,3,3,-9,0,5,8.248003,8.3185368,0,7,3,-89.6119,0,-9,-9,2021,15,4,77,80,1,4,0,6.0025864,6.0025864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.62,64.71000000000001,45.81,61.51,3.333333333333333,1,1,0,0,9,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12624,15407,27470,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.8706722,6.2091422,0,0,-1031.7177,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0041361,6.2758121,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,2,6,2,1,969,251577.89,142758.64,0,0,0,0,576.51831 +12625,15408,27471,27472,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.1793251,7.1494565,6,0,-47.888996,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7544928,7.1856699,57.16,56.15,50.12,48.45,8.333333333333334,1,1,0,0,4,6,3,1,2932,575314,170585.45,173695.09,0,0,0,2725.6794 +12625,15408,27472,27471,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.1774101,6.8409133,0,6,0,-69.669479,0,3,3,2021,6,0,21,21,1,0,0,8.0964441,8.0964441,0,0,0,1,0,0,0,0,1,1,0,5.636548,0,50.12,48.45,57.16,56.15,8.333333333333334,1,1,0,0,9,6,3,1,2932,575314,170585.45,173695.09,0,0,0,2725.6794 +12626,15409,27473,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.9194112,7.3063345,0,0,-1082.3104,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9157815,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,296,849087.56,314129.25,571041.75,0,2925.2048,0,1214.2529 +12627,15410,27474,27475,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.1227551,9.5063248,0,19,-1,-95.879387,0,3,3,2021,12,0,2,41,1,0,0,555.63641,555.63641,.05,.05,.05,0,0,0,0,0,0,0,0,5.5044732,0,37.99,47.35,57.06,57.76,6.666666666666667,2,3,0,0,10,8,5,1,965,1994119,996323.13,846948.63,-1180.303,0,0,8706.8223 +12627,15410,27475,27474,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.6527987,9.9014053,0,19,1,-93.294022,0,2,2,2021,2,0,40,40,1,0,0,50.008801,50.008801,.05,.05,.05,0,0,0,0,0,0,0,0,4.2931385,0,57.06,57.76,37.99,47.35,8.333333333333334,1,1,0,0,9,8,5,1,965,1994119,996323.13,846948.63,-1180.303,0,0,8706.8223 +12628,15411,27476,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5083809,8.656827,0,0,0,-1073.1383,0,2,3,2021,6,0,37,37,1,0,0,10.799416,10.799416,.05,.05,0,0,0,0,0,0,0,0,0,6.6878562,0,60.33,41,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,1087,190823.36,-28747.25,122316.34,44155.57,5553.3003,3776.8855,1276.1293 +12629,15412,27477,-9,27479,27478,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.21906,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12629,15412,27478,27479,-9,-9,1,1,34,0,1,0,2,2,-9,0,5,8.6392498,8.6507902,0,8,-4,-67.035728,0,-9,-9,2021,7,0,39,36,1,0,0,13.541986,13.541986,.05,.05,0,0,0,0,.16173974,0,1,1,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,8,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12629,15412,27479,27478,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.6797228,8.5138512,0,8,4,-50.306629,0,2,2,2021,10,0,77,37,1,0,0,9.4064169,9.4064169,0,0,0,0,0,0,0,0,1,1,0,2.2175155,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12630,15413,27480,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-956.01654,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.07,39.47,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1592,158222.38,0,0,0,6291.521,0,1417.5468 +12631,15414,27481,27482,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.013495,7.4564452,48,4,45.377876,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4205537,7.450151,62.18,38.88,60.29,52.11,8.333333333333334,1,1,0,0,1,12,2,1,1691,1307823.1,574467.5,431944.19,0,0,0,2304.3972 +12631,15414,27482,27481,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7966523,5.9907317,48,-4,6.6690183,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,10.85718,0,0,1,1,0,2.3834679,6.0985141,60.29,52.11,62.18,38.88,8.333333333333334,1,1,0,0,4,12,2,1,1691,1307823.1,574467.5,431944.19,0,0,0,2304.3972 +12632,15415,27483,27484,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9887075,7.0780149,49,9,-9.2205896,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9440489,6.8519392,56.5,48.33,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,577,372597.38,257652.41,91241.688,0,0,0,2320.7275 +12632,15415,27484,27483,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,48,0,-26.029253,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.5,48.33,8.333333333333334,1,1,0,0,3,1,2,1,577,372597.38,257652.41,91241.688,0,0,0,2320.7275 +12633,15416,27485,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.00317,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.39,16.93,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,3778,138054.31,-26057.773,0,0,5867.9263,0,1107.4255 +12634,15417,27486,-9,27490,27488,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1064.7515,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27487,-9,27490,27488,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.9834,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27488,27490,-9,-9,1,1,44,0,4,0,2,2,-9,0,3,8.4591322,8.2616329,0,7,0,26.52804,0,2,3,2021,12,0,46,50,1,0,0,11.063951,11.063951,.05,.05,0,0,0,0,0,0,1,1,0,3.3460438,0,51.65,39.74,54.2,57.49,6.666666666666667,1,1,0,0,7,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27489,-9,27490,27488,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-958.31305,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27490,27488,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,8.8781462,8.7638359,0,7,0,-4.8431573,0,2,3,2021,10,0,47,33,1,0,0,14.815419,14.815419,.05,.05,0,0,0,0,0,0,1,1,0,1.8101711,0,54.2,57.49,51.65,39.74,8.333333333333334,1,1,0,0,7,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27491,-9,27490,27488,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-994.78436,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12635,15418,27492,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.8558493,8.1269569,0,0,0,-1076.8176,0,1,2,2021,8,0,40,16,1,0,0,7.5222797,7.5222797,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,521,62148.465,0,0,0,0,0,1253.0686 +12636,15419,27493,-9,-9,-9,1,0,36,0,0,0,2,2,0,0,2,0,0,0,0,0,-964.81592,-9,1,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,34.93,-9,-9,5,1,1,0,0,3,8,2,0,323,-100625.51,0,0,0,0,0,3284.0459 +12636,15420,27494,-9,27493,-9,1,0,18,0,0,0,3,3,1,0,4,0,0,0,0,0,-1002.2344,-9,2,-9,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.89,65.32000000000001,-9,-9,5,1,1,1,0,0,8,1,0,445,116161.17,0,0,0,0,0,0 +12637,15421,27495,27496,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.2126136,7.5001183,51,-2,-20.987898,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5271993,6.2136292,53.4,35.3,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,2190,1544366.5,895720.81,414372.5,0,12185.973,0,3679.4912 +12637,15421,27496,27495,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,7.9951234,7.9591236,51,2,33.32243,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4390025,7.6958299,62.39,56.71,53.4,35.3,10,1,1,0,0,6,9,4,1,2190,1544366.5,895720.81,414372.5,0,12185.973,0,3679.4912 +12638,15422,27497,27498,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.6303263,6.032536,51,3,81.72216,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9571662,59.7,43.22,64.40000000000001,25.94,10,1,1,0,0,0,1,2,1,726,255339.44,78327.188,157284.64,0,0,0,736.89954 +12638,15422,27498,27497,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,51,-3,2.0548348,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.40000000000001,25.94,59.7,43.22,6.666666666666667,1,1,0,0,0,1,2,1,726,255339.44,78327.188,157284.64,0,0,0,736.89954 +12639,15423,27499,27500,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.1133251,8.8384047,0,6,2,64.247353,0,3,3,2021,9,0,30,30,1,1,0,30.803219,30.803219,.05,.05,0,0,0,0,0,0,1,1,0,3.3823197,0,52,55,57.33,53.46,7,2,3,0,0,1,8,5,0,942,45223.977,-8595.3457,88769.813,46506.441,743.57965,0,3130.2632 +12639,15423,27500,27499,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,0,0,0,26,-2,88.742012,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,2,3,0,0,0,8,5,0,942,45223.977,-8595.3457,88769.813,46506.441,743.57965,0,3130.2632 +12639,15424,27501,-9,27500,27499,1,0,19,0,0,0,2,2,1,0,4,6.0500841,6.1389155,0,0,0,-1111.8264,-9,2,2,2021,19,7,5,0,1,7,1,7.7313337,7.7313337,0,0,0,0,0,0,0,7,1,1,0,0,0,43.84,57.1,-9,-9,6.666666666666667,2,3,0,0,3,8,2,0,465,0,0,0,0,0,0,-655.90961 +12640,15425,27502,-9,27503,-9,1,1,17,0,0,1,2,0,0,0,4,0,5.2456183,4.8520107,0,0,-938.58142,-9,1,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2274594,0,41.45,60.44,-9,-9,8.333333333333334,1,1,0,0,0,12,5,0,1227,581281.13,502963.09,236245.61,0,0,0,2805.1243 +12640,15425,27503,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.7966461,8.9209375,4.9179869,0,0,-1082.5277,0,3,-9,2021,19,7,35,44,1,7,0,20.529512,20.529512,.05,.05,.05,0,0,0,0,0,1,1,0,4.560389,0,26.45,55.98,-9,-9,3.333333333333333,1,1,0,0,5,12,5,0,1227,581281.13,502963.09,236245.61,0,0,0,2805.1243 +12641,15426,27504,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.4349709,7.3450508,0,0,-784.11981,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1144624,7.5356331,50.34,56.4,-9,-9,10,1,1,0,0,0,1,3,1,207,454851.69,142295.53,0,0,0,0,844.72333 +12642,15427,27505,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1630373,8.0564041,5.288548,20,1,25.115877,0,3,3,2021,7,0,38,38,1,0,0,10.884499,10.884499,0,0,0,0,0,0,0,2,0,0,0,3.6575313,5.8504577,59.43,58.05,41.24,55.72,10,1,1,0,0,14,7,4,1,1524,249611.03,0,0,0,0,0,1256.4115 +12642,15428,27506,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9491963,7.6950936,0,19,-1,11.602131,0,3,3,2021,9,1,35,35,1,1,0,7.8203073,7.8203073,.05,.05,0,0,0,0,0,0,0,0,0,3.6720414,0,41.24,55.72,59.43,58.05,10,1,1,0,0,14,7,4,1,475,56080.68,35606.887,0,0,1659.4038,-24.964615,1398.3219 +12643,15429,27507,27508,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,49,6,-90.050964,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.265759,40.77512,24.336649,0,1,1,0,0,0,55.68,16.88,59.95,22.66,8.333333333333334,1,1,0,0,0,11,2,1,689.5,425601,46020.391,201074.48,0,0,0,1622.4182 +12643,15429,27508,27507,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.8794999,5.6376748,49,-6,-19.995848,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3403158,5.6563849,59.95,22.66,55.68,16.88,6.666666666666667,1,1,0,0,0,11,2,1,689.5,425601,46020.391,201074.48,0,0,0,1622.4182 +12644,15430,27509,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.321167,6.6369476,0,0,-1071.1746,0,-9,-9,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.422791,7.1254396,61.04,28.88,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,95,301243.09,0,270179.34,0,0,0,1172.9115 +12645,15431,27510,27513,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.2030697,8.842782,0,15,-2,-51.655647,0,2,2,2021,9,0,51,50,1,0,0,18.350342,18.350342,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23,49.17,36.93,43.04,3.333333333333333,1,1,0,0,11,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27511,-9,27510,27513,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0536,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27512,-9,27510,27513,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.92291,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27513,27510,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.6837783,7.7121639,0,14,2,68.491432,0,2,2,2021,15,3,12,12,1,3,0,24.086191,24.086191,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,43.04,46.23,49.17,5,1,1,0,0,11,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12646,15432,27514,27515,-9,-9,1,0,57,1,3,0,2,2,-9,0,2,7.5470753,7.5464468,0,39,-1,25.375364,0,2,2,2021,25,9,29,27,1,9,0,7.0196371,7.0196371,.05,.05,0,0,0,0,0,7,1,1,0,0,0,35.3,34.21,57.33,53.46,1.666666666666667,1,1,0,0,11,10,4,1,806,1176939.5,973533.5,435668.81,119818.17,0,56286.211,2104.8274 +12646,15432,27515,27514,-9,-9,1,1,58,1,3,0,2,2,-9,0,3,8.8944225,8.8619118,0,39,1,-70.81955,0,2,2,2021,13,3,45,41,1,3,0,17.505064,17.505064,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.3,34.21,6.666666666666667,1,1,0,1,11,10,4,1,806,1176939.5,973533.5,435668.81,119818.17,0,56286.211,2104.8274 +12646,15433,27516,-9,27514,27515,1,1,34,1,3,0,2,2,-9,0,5,7.9741249,8.4506607,0,0,0,-1057.0861,0,2,2,2021,14,2,42,37,1,2,1,10.265598,10.265598,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,405,-230497.92,0,0,0,10496.65,0,1573.1648 +12646,15434,27517,-9,27514,27515,1,1,24,1,3,0,2,2,-9,0,3,8.0797644,8.0456896,0,0,0,-967.76044,0,2,2,2021,13,4,50,45,1,4,1,9.1109581,9.1109581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.81,56.92,-9,-9,1.666666666666667,1,1,0,0,7,10,4,1,3095,88723.711,-99185.242,0,0,6716.8735,0,2015.6273 +12646,15435,27518,-9,27520,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1118.9147,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27519,-9,27520,-9,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.20416,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27520,-9,27514,27515,1,0,32,1,3,0,2,2,-9,0,5,6.6461201,6.6838069,0,0,0,-981.53375,-9,2,2,2021,15,4,24,0,1,4,1,5.516675,5.516675,0,0,0,0,0,0,0,0,1,1,0,0,0,28.3,65.67,-9,-9,5,1,1,0,1,11,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27521,-9,27520,-9,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1120.1503,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12647,15436,27522,27523,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,6.9362888,6.6214871,0,6,6,35.321983,-9,-9,-9,2021,25,9,45,0,1,9,0,2.4970708,2.4970708,0,0,0,0,0,0,0,0,0,0,0,0,0,27.89,18.61,47.75,53.7,6.666666666666667,1,1,0,0,5,12,4,0,1574.5,729430.38,545035.38,307743.13,68107.188,0,0,2048.4302 +12647,15436,27523,27522,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2682447,8.2260675,0,6,-6,87.568527,0,3,3,2021,10,0,44,45,1,0,0,8.046792,8.046792,0,0,0,0,0,0,0,0,0,0,0,0,0,47.75,53.7,27.89,18.61,6.666666666666667,1,1,0,0,11,12,4,0,1574.5,729430.38,545035.38,307743.13,68107.188,0,0,2048.4302 +12648,15437,27524,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1100.7631,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,2,1,0,432,12055.388,0,0,0,0,0,859.4458 +12649,15438,27525,27526,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.504344,9.7788277,0,6,3,-35.591362,0,3,2,2021,10,0,60,50,1,1,0,26.919771,26.919771,0,0,.05,0,0,0,0,0,0,0,0,4.7539063,0,52,48,60.7,47.65,7,1,1,0,0,1,6,5,1,1290.5,821160.69,226926.47,273576.41,64098.859,0,0,5723.1445 +12649,15438,27526,27525,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,8.1635256,8.5432301,0,6,-3,14.056731,0,3,3,2021,7,0,40,40,1,0,0,13.829478,13.829478,0,0,0,0,0,0,0,0,0,0,0,0,0,60.7,47.65,52,48,6.666666666666667,1,1,0,0,7,6,5,1,1290.5,821160.69,226926.47,273576.41,64098.859,0,0,5723.1445 +12650,15439,27527,27528,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.448328,8.2154245,0,12,0,63.824467,0,-9,3,2021,14,4,40,38,1,4,0,12.648083,12.648083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.87,48.57,39.61,54.48,3.333333333333333,1,1,0,0,13,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12650,15439,27528,27527,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.7322493,8.8476124,3.6153038,12,0,-9.5536966,0,2,1,2021,17,5,25,35,1,5,0,30.364367,30.364367,0,0,0,0,0,0,0,0,1,1,0,4.1591492,0,39.61,54.48,41.87,48.57,3.333333333333333,1,1,0,0,14,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12650,15439,27529,-9,27528,27527,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.56519,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12651,15440,27530,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.010026,8.2207737,0,0,0,-842.04205,0,3,-9,2021,10,0,35,32,1,1,0,11.747066,11.747066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,8,3,4,0,0,1,8,4,1,897,1060297.5,735182.13,323423.31,0,7771.1577,0,866.96667 +12651,15441,27531,-9,27530,-9,1,1,24,0,0,0,1,1,0,0,2,0,0,0,0,0,-1115.9187,-9,2,-9,2021,9,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,44.06,-9,-9,10,3,4,0,0,0,8,1,1,163,-255464.45,0,0,0,0,0,0 +12652,15442,27532,27533,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,5,-3,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.43,47.35,54.61,51.04,8.333333333333334,2,3,0,0,0,8,1,0,2259.5,7699.123,0,0,0,0,391.81326,1729.6438 +12652,15442,27533,27532,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,0,0,5,3,0,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,46.43,47.35,8.333333333333334,2,3,0,0,4,8,1,0,2259.5,7699.123,0,0,0,0,391.81326,1729.6438 +12653,15443,27534,27535,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,7.8970642,7.5061851,0,8,3,-104.88198,0,2,2,2021,6,0,40,40,1,0,0,8.2357111,8.2357111,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,35.86,58.14,6.666666666666667,1,1,0,0,11,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27535,27534,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,7.8296046,7.8572359,0,8,-3,-61.309143,0,1,1,2021,10,0,5,8,1,0,0,50.016754,50.016754,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,58.14,54.79,55.86,5,1,1,0,0,7,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27536,-9,27535,27534,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-945.77557,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27537,-9,27535,27534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.19769,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12654,15444,27538,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.457099,6.4175587,0,0,0,-983.48932,0,3,3,2021,10,0,25,30,1,0,0,2.8638272,2.8638272,0,0,0,0,0,0,0,0,1,1,0,7.6384649,0,49.42,57.29,-9,-9,8.333333333333334,2,3,0,0,10,8,2,1,435,-101249.64,0,0,0,0,0,2189.4338 +12654,15445,27539,27540,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.884409,8.9138613,0,1,-8,-121.01472,-9,-9,-9,2021,17,5,40,0,1,5,0,20.406767,20.406767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.38,62.64,48.77,60.16,6.666666666666667,2,3,0,0,1,8,5,1,1315,61360.586,71769.273,0,0,0,0,3689.4363 +12654,15445,27540,27539,27538,-9,1,1,37,0,0,0,1,1,-9,0,5,7.6138024,7.5336733,0,1,8,-185.84972,0,3,2,2021,11,0,40,45,1,0,0,6.153769,6.153769,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,34.38,62.64,8.333333333333334,2,3,0,0,10,8,5,1,1315,61360.586,71769.273,0,0,0,0,3689.4363 +12655,15446,27541,27542,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4888239,9.5574217,0,10,9,63.504169,0,-9,-9,2021,10,0,38,43,1,0,0,43.237961,43.237961,.05,.05,0,0,0,0,0,0,0,0,0,5.1227784,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12655,15446,27542,27541,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.7405405,7.8232903,0,24,0,-89.20134,0,2,2,2021,7,0,27,25,1,0,0,13.036499,13.036499,.05,.05,0,0,0,0,0,0,0,0,0,4.3419414,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12655,15446,27543,-9,27542,27541,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.7405,-9,1,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737803,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12656,15447,27544,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.5211535,4.5595269,0,0,-1029.6956,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7717843,4.5793943,52.21,51.53,-9,-9,10,1,1,0,0,0,10,2,0,1182,326058.44,39765.148,0,0,0,0,1228.8627 +12657,15448,27545,27546,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6596622,8.8785286,0,2,0,43.58371,-9,-9,-9,2021,4,0,45,0,1,0,0,17.586361,17.586361,0,0,0,0,0,0,0,0,0,0,0,.89185667,0,59.43,58.05,51.68,51.94,10,1,1,0,0,3,10,5,0,296.5,76667.313,-17581.947,177515.19,106525.77,10687.563,0,3437.4758 +12657,15448,27546,27545,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.9536262,8.2938881,0,2,0,74.120583,0,-9,-9,2021,6,0,36,36,1,0,0,11.200644,11.200644,0,0,0,0,0,0,0,0,0,0,0,0,0,51.68,51.94,59.43,58.05,10,1,1,0,0,11,10,5,0,296.5,76667.313,-17581.947,177515.19,106525.77,10687.563,0,3437.4758 +12658,15449,27547,27548,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,60,-1,39.536392,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.181802,0,57.16,56.15,41.37,52.32,8.333333333333334,1,1,0,0,4,5,2,1,816.5,327076.44,112884.14,113388.3,0,0,415.73645,2188.2778 +12658,15449,27548,27547,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0931611,7.6764336,60,1,38.524261,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0879588,7.5456228,41.37,52.32,57.16,56.15,10,1,1,0,0,0,5,2,1,816.5,327076.44,112884.14,113388.3,0,0,415.73645,2188.2778 +12659,15450,27549,27550,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.5330777,8.3475981,7.4959335,27,9,61.932739,0,3,3,2021,21,9,22,36,1,9,0,12.667107,12.667107,0,0,0,0,0,0,0,0,0,0,0,0,7.776711,49.91,31.39,53,54,8.333333333333334,1,1,0,0,8,6,5,1,723.5,839322,88267.125,537431.88,0,3648.8511,3373.1055,4211.1738 +12659,15450,27550,27549,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.0083637,9.052206,0,27,0,-70.207741,0,3,3,2021,9,0,42,44,1,1,0,24.471321,24.471321,.05,.05,.05,0,0,0,0,0,0,0,0,6.7404113,0,53,54,49.91,31.39,7,1,1,0,0,8,6,5,1,723.5,839322,88267.125,537431.88,0,3648.8511,3373.1055,4211.1738 +12660,15451,27551,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.6355724,5.4538074,0,0,-1082.7709,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.604871,5.8386049,57.34,45.06,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,973,187927.3,29440.387,0,0,0,0,1425.4406 +12661,15452,27552,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1039.3878,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0035124,0,54.55,49.25,-9,-9,6.666666666666667,1,1,0,0,6,6,1,1,974,-109319.4,0,0,0,0,0,2323.9246 +12662,15453,27553,27554,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,0,0,0,15,-3,6.4717159,0,2,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,40.88,38.46,8.333333333333334,1,1,0,0,3,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12662,15453,27554,27553,-9,-9,1,1,46,0,3,0,1,1,-9,0,2,8.8172541,9.2820253,0,14,3,40.628304,0,2,2,2021,12,2,48,45,1,2,0,18.741161,18.741161,.05,.05,0,0,0,0,0,0,1,1,0,2.9734325,0,40.88,38.46,57.06,57.76,6.666666666666667,1,1,0,0,11,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12662,15453,27555,-9,27553,27554,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.64178,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12663,15454,27556,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.2188234,8.5792036,6.8682551,0,0,-872.3869,0,3,2,2021,19,7,42,52,1,7,0,10.144016,10.144016,.05,.05,0,0,0,0,0,7,0,0,0,7.3711925,7.0514917,30.89,38.92,-9,-9,5,4,2,0,0,15,6,5,1,111,96871.891,-4356.2588,0,0,1832.8693,7252.4673,1923.3826 +12664,15455,27557,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.4053216,6.097661,0,0,-998.8418,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,3.9617877,0,23.40135,0,1,1,0,0,6.2312078,50.96,27,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,205,446216.63,86771.313,365749,0,0,0,1520.6591 +12665,15456,27558,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.0304327,7.7218142,0,0,-1067.3938,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.8230805,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,799,718858.19,168644.55,368780.31,0,0,0,1498.3175 +12666,15457,27559,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.5515552,5.8117733,0,0,-857.88019,0,3,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,29.147778,5.230176,276.99866,0,1,1,0,0,5.4644403,66.92,15.49,-9,-9,10,1,1,0,0,0,4,2,0,382,41787.129,0,0,0,0,0,2354.0095 +12667,15458,27560,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,4.4707594,4.155086,0,0,-884.85175,0,3,2,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,3.0379665,0,0,1,1,0,0,4.5070629,44.42,14.06,-9,-9,5,1,1,0,0,0,1,2,0,194,-113684.29,10506.195,0,0,0,0,1030.5206 +12668,15459,27561,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1048.6422,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.1951,0,0,1,1,0,0,0,60.37,15.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2605,299933.78,0,0,0,0,0,343.34909 +12669,15460,27562,27564,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,8.0932961,8.1562862,0,8,0,-27.435244,0,3,2,2021,12,1,38,37,1,1,0,9.8412733,9.8412733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.51,48.09,55.53,51.55,10,1,1,0,0,14,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12669,15460,27563,-9,27562,27564,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-893.46771,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12669,15460,27564,27562,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.7181692,8.7185059,0,8,0,28.319645,0,-9,-9,2021,7,0,45,46,1,0,0,14.566687,14.566687,.05,.05,0,0,0,0,0,0,1,1,0,2.0695143,0,55.53,51.55,42.51,48.09,8.333333333333334,1,1,0,0,14,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12670,15461,27565,27566,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.0794687,9.1092749,0,10,-2,49.052448,0,3,2,2021,7,0,45,37,1,0,0,19.763365,19.763365,0,0,0,0,0,0,0,0,0,0,0,5.1187806,0,58.76,52.91,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,520.5,1054498.1,588972.81,446437.06,36104.766,0,0,4253.9258 +12670,15461,27566,27565,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.8509731,7.7081213,10,2,-22.77368,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.0547948,7.67942,57.06,57.76,58.76,52.91,8.333333333333334,1,1,0,0,8,12,5,1,520.5,1054498.1,588972.81,446437.06,36104.766,0,0,4253.9258 +12671,15462,27567,27568,-9,-9,1,0,44,0,4,0,2,2,-9,0,5,7.0583143,6.981566,0,23,-5,118.60539,0,3,2,2021,9,2,25,15,1,2,0,4.9094553,4.9094553,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.53,63.81,57.33,53.46,8.333333333333334,1,1,0,0,4,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27568,27567,-9,-9,1,1,49,0,4,0,1,1,-9,0,3,9.1760845,9.1635933,0,23,5,-19.287216,0,2,-9,2021,10,0,37,37,1,0,0,24.986261,24.986261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.53,63.81,3.333333333333333,1,1,0,0,11,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27569,-9,27567,27568,1,1,10,0,4,1,3,0,-9,0,2,0,0,0,0,0,-997.17114,-9,2,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27570,-9,27567,27568,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-878.9068,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27571,-9,27567,27568,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.9409,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27572,-9,27567,27568,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.4022,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12672,15463,27573,27574,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.5531011,6.5386438,9,-7,-64.701851,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4677062,42.17,14.78,64.47,51.45,5,1,1,0,0,8,10,3,1,1431,1480735.3,756526.44,560177.88,0,0,0,3601.6929 +12672,15463,27574,27573,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.9800224,7.8023176,9,7,-21.811186,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.3139629,64.47,51.45,42.17,14.78,8.333333333333334,1,1,0,0,3,10,3,1,1431,1480735.3,756526.44,560177.88,0,0,0,3601.6929 +12673,15464,27575,27576,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9094224,6.7152944,6,-3,-144.60938,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8408637,54.55,41.22,48.19,26.32,8.333333333333334,1,1,0,0,1,13,2,1,318.5,181929.81,-59090.156,74789.359,0,0,0,1532.1926 +12673,15464,27576,27575,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,6,3,-81.708771,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.19,26.32,54.55,41.22,1.666666666666667,1,1,0,0,0,13,2,1,318.5,181929.81,-59090.156,74789.359,0,0,0,1532.1926 +12674,15465,27577,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1081.5155,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,41.395939,0,42,1,0,1,0,0,44.92,20.33,-9,-9,5,1,1,0,0,0,4,1,0,143,-157384.2,0,0,0,0,0,1971.0461 +12674,15466,27578,-9,27577,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.83936,0,3,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41.14,30.1,-9,-9,5,1,1,0,1,5,4,1,0,133,-57593.965,0,0,0,0,0,441.03433 +12675,15467,27579,27580,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.3837709,6.8395953,62,-6,-29.574924,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.275475,6.8239951,33.22,39.12,53.41,34.09,8.333333333333334,1,1,0,0,0,7,3,1,1350.5,1396532.3,628418.63,398701.75,0,0,0,2674.4482 +12675,15467,27580,27579,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,7.7927532,7.3906822,62,6,120.4043,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7214029,7.6155748,53.41,34.09,33.22,39.12,3.333333333333333,1,1,0,0,0,7,3,1,1350.5,1396532.3,628418.63,398701.75,0,0,0,2674.4482 +12676,15468,27581,27582,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.1616182,7.1721201,0,7,2,-46.100697,0,2,2,2021,5,0,20,21,1,0,0,6.9108243,6.9108243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.2,59.97,10,1,1,0,0,8,11,4,0,1040,653963.5,469476.69,46530.777,13726.293,0,438.29745,1710.6947 +12676,15468,27582,27581,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1297045,8.321332,0,7,-2,51.445259,0,2,2,2021,14,3,45,37,1,3,0,8.8921404,8.8921404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,58.15,52.91,6.666666666666667,1,1,0,0,8,11,4,0,1040,653963.5,469476.69,46530.777,13726.293,0,438.29745,1710.6947 +12676,15469,27583,-9,27582,27581,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.4882,1,2,2,2021,10,0,0,30,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,11,1,0,594,0,0,0,0,0,0,511.23999 +12677,15470,27584,27585,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,44,-1,50.28006,0,3,3,2021,18,6,0,6,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.9772397,0,45.87,24.32,53.22,48.44,1.666666666666667,1,1,0,0,8,9,4,1,827,1460391.3,742329.69,432595.31,0,0,0,3426.7832 +12677,15470,27585,27584,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.7984667,8.4952459,44,1,50.674526,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4109612,8.6670322,53.22,48.44,45.87,24.32,8.333333333333334,1,1,0,0,0,9,4,1,827,1460391.3,742329.69,432595.31,0,0,0,3426.7832 +12678,15471,27586,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.541574,7.6406937,0,0,0,-1013.3918,0,3,3,2021,11,0,40,40,1,0,0,5.8018441,5.8018441,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.94,49.91,-9,-9,5,1,1,0,0,5,2,3,1,1377.5,95588.422,91492.023,0,0,1606.1926,0,1785.6107 +12678,15471,27587,-9,27586,-9,1,0,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-852.05945,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.39,44.67,-9,-9,5,1,1,0,0,0,2,3,1,1377.5,95588.422,91492.023,0,0,1606.1926,0,1785.6107 +12679,15472,27588,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.8697381,6.612587,0,0,-903.05536,0,3,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6845207,42.67,34.72,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,254,174993.14,-102742.57,263799.31,0,0,0,803.2489 +12680,15473,27589,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.1817698,7.580874,6.6478815,0,0,-1050.5133,0,3,3,2021,15,3,20,20,1,3,0,6.2965302,6.2965302,0,0,0,0,0,0,0,7,0,0,0,0,6.5030274,44.02,44.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,784,620340.19,353566.09,96048.477,0,0,0,824.28455 +12681,15474,27590,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.68221,8.4111853,0,0,0,-875.54675,0,2,2,2021,9,0,36,37,1,0,0,14.118883,14.118883,.05,.05,0,0,0,0,0,0,0,0,0,1.6004429,0,50.51,56.39,-9,-9,8.333333333333334,1,1,0,0,13,10,5,1,1370,-101463.23,32753.207,0,0,3899.2195,-719.36707,1610.7897 +12682,15475,27591,27592,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.6597538,8.817421,0,19,-1,144.87747,0,3,3,2021,12,0,60,60,1,2,0,15.04458,15.04458,.05,.05,0,0,0,0,0,0,1,1,0,.98371208,0,46,50,35.67,64.46000000000001,7,1,1,0,0,13,1,5,1,907.5,859414,288354.88,368701.66,0,0,0,5665.3486 +12682,15475,27592,27591,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.8009243,9.0382729,0,19,1,-106.56109,0,3,2,2021,12,0,47,45,1,0,0,17.550301,17.550301,.05,.05,0,0,0,0,0,0,1,1,0,1.0402786,0,35.67,64.46000000000001,46,50,8.333333333333334,1,1,0,0,12,1,5,1,907.5,859414,288354.88,368701.66,0,0,0,5665.3486 +12683,15476,27593,-9,27595,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.14398,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12683,15476,27594,-9,27595,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.81158,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12683,15476,27595,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1072.8098,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.91,51.8,-9,-9,5,1,1,0,0,1,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12684,15477,27596,27597,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4122219,8.04533,0,9,1,13.446912,0,3,3,2021,10,0,50,50,1,0,0,8.211297,8.211297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,62.39,56.71,6.666666666666667,1,1,0,0,9,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15477,27597,27596,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9958134,8.0714321,0,9,-1,-28.019529,-9,3,3,2021,6,0,28,0,1,0,0,12.50288,12.50288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,46.92,54.3,10,1,1,0,0,10,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15477,27598,-9,27597,27596,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-851.84729,1,2,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.78807706,0,24.35,62,-9,-9,5,1,1,0,0,1,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15478,27599,-9,27597,27596,1,1,21,0,0,0,2,2,-9,0,5,8.1161022,8.2622986,0,0,0,-1077.2897,0,2,-9,2021,7,0,38,40,1,0,1,9.3199568,9.3199568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,5,4,1,315,42153.527,39989.242,0,0,5898.145,0,1056.6194 +12684,15479,27600,-9,27597,27596,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1021.0113,1,2,-9,2021,13,1,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,1,4,5,1,1,715,73543.5,0,0,0,0,0,0 +12685,15480,27601,27602,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.1285219,7.4167519,0,39,-1,-120.47618,0,2,2,2021,19,8,40,30,1,8,0,5.1691113,5.1691113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.45,52.35,43.75,53.95,5,1,1,0,0,14,7,5,1,403.5,451556.75,278083.06,0,0,0,0,3282.9631 +12685,15480,27602,27601,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.6509991,8.420393,0,39,1,164.76309,0,2,2,2021,16,6,12,35,1,6,0,59.442905,59.442905,0,0,0,0,0,0,0,0,0,0,0,0,0,43.75,53.95,42.45,52.35,5,1,1,0,0,13,7,5,1,403.5,451556.75,278083.06,0,0,0,0,3282.9631 +12686,15481,27603,27604,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.9560165,8.4091902,0,10,-11,-29.286528,0,1,2,2021,10,1,38,46,1,1,0,16.517384,16.517384,.05,.05,0,0,0,0,0,0,0,0,0,2.5750391,0,54.1,59.11,45.4,56.19,8.333333333333334,1,1,0,0,12,4,5,1,299.5,175568.5,-8716.4766,0,0,5441.75,0,2128.8477 +12686,15481,27604,27603,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.0795541,7.2696576,0,10,11,-47.82291,0,3,3,2021,10,0,20,19,1,0,0,9.2910786,9.2910786,.05,.05,0,0,0,0,0,0,0,0,0,3.2962797,0,45.4,56.19,54.1,59.11,10,1,1,0,0,12,4,5,1,299.5,175568.5,-8716.4766,0,0,5441.75,0,2128.8477 +12687,15482,27605,27608,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,7.7322011,7.9626994,0,14,10,18.740784,0,-9,2,2021,15,4,18,0,1,4,0,12.997678,12.997678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.07,39.41,31.93,19.35,5,1,1,0,1,2,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27606,-9,27608,27605,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-931.14307,-9,1,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,0,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27607,-9,27608,27605,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1033.5231,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27608,27605,-9,-9,1,0,37,0,2,0,1,1,1,1,1,7.0861716,7.2407641,0,14,-10,-78.08519,-9,2,2,2021,25,8,18,0,1,8,0,7.611331,7.611331,.05,.05,0,0,0,0,0,7,1,1,0,0,0,31.93,19.35,53.07,39.41,0,1,1,0,1,1,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12688,15483,27609,27610,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.7998495,6.6177044,8,-10,-104.96412,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.927423,6.7352128,57.33,53.46,52.5,31.31,8.333333333333334,1,1,0,0,3,4,2,1,1028,706838.63,500695.56,413416.38,142137.72,0,0,1590.5775 +12688,15483,27610,27609,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.8038707,6.2810621,8,10,-72.311127,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.866447,5.9526496,52.5,31.31,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1028,706838.63,500695.56,413416.38,142137.72,0,0,1590.5775 +12689,15484,27611,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-903.60254,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.6374705,0,25.932829,0,1,1,0,0,0,52.01,25.55,-9,-9,5,1,1,0,0,0,13,1,1,221,-11590.572,0,0,0,0,0,961.27478 +12690,15485,27612,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.2998333,7.0740051,0,0,-1064.3494,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2385864,42.93,27.57,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,964,539149.81,123653.13,313875.75,0,0,0,1349.1047 +12691,15486,27613,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1105.8456,0,2,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.24,26.05,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,209,-143392.61,0,0,0,0,0,2744.1013 +12692,15487,27614,27615,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.0976171,7.0247607,47,-2,-7.911346,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.335165,6.9617248,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,6,7,3,1,454,430108.19,49788.859,339435.5,0,0,0,3793.6082 +12692,15487,27615,27614,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.0593324,7.9173298,6.7611985,47,2,17.123465,0,-9,-9,2021,5,0,16,12,1,0,0,11.842943,11.842943,.05,.05,.05,0,0,0,0,0,1,1,0,7.6305618,6.8621788,60.12,54.8,61.04,39.41,10,1,1,0,0,11,7,3,1,454,430108.19,49788.859,339435.5,0,0,0,3793.6082 +12693,15488,27616,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0201273,8.2808647,0,0,0,-1038.4535,0,1,1,2021,6,0,38,38,1,0,0,12.599461,12.599461,.05,.05,0,0,0,0,0,0,0,0,0,1.6970865,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1243,1029112.1,845389.88,276308.5,-11950.276,0,0,1638.2875 +12693,15489,27617,-9,27616,-9,1,1,43,0,0,0,2,2,-9,0,4,7.1681819,7.0186424,0,0,0,-1087.7498,0,2,-9,2021,8,0,40,40,1,0,1,3.5100105,3.5100105,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,8.333333333333334,4,2,0,0,12,11,3,1,368,75688.008,0,0,0,0,0,1011.6952 +12694,15490,27618,27619,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.6513104,4.5652013,37,13,18.730221,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,5.374681,0,27,1,0,1,0,4.6033788,24.96,26.48,26.46,23.15,5,1,1,0,0,0,10,2,0,674,549332.19,311271.88,199542.16,0,0,0,3984.8921 +12694,15490,27619,27618,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,6.3689957,6.0654268,37,-13,-49.042007,0,3,3,2021,34,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,6.1903415,26.46,23.15,24.96,26.48,1.666666666666667,1,1,0,0,0,10,2,0,674,549332.19,311271.88,199542.16,0,0,0,3984.8921 +12694,15491,27620,-9,27618,27619,1,1,33,0,0,0,2,2,-9,1,3,7.3974366,7.272368,0,0,0,-1014.3353,0,3,2,2021,17,6,34,43,1,6,0,4.8553138,4.8553138,0,0,0,0,0,0,0,14.5,1,0,1,0,0,43.2,46.56,-9,-9,3.333333333333333,1,1,0,0,6,10,3,0,1182,10506.432,0,0,0,0,0,735.54999 +12695,15492,27621,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7028995,7.6035585,0,0,0,-1041.2428,0,3,3,2021,9,0,43,43,1,0,0,6.2084684,6.2084684,.05,.05,0,0,0,0,0,2,1,1,0,4.008276,0,46.25,52.95,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,107,86797.836,-86336.398,0,0,0,771.36249,697.16864 +12696,15493,27622,27623,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,60,2,-94.47084,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.9289479,0,0,1,1,0,5.394371,0,62.77,23.34,51.02,46.68,10,1,1,0,0,0,4,2,1,573.5,469895.81,126218.66,311165.88,0,0,0,1587.9856 +12696,15493,27623,27622,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.2985668,7.1212354,60,-2,53.578438,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3373427,7.060935,51.02,46.68,62.77,23.34,8.333333333333334,1,1,0,0,0,4,2,1,573.5,469895.81,126218.66,311165.88,0,0,0,1587.9856 +12697,15494,27624,27625,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3762794,7.3373952,48,-2,173.48756,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1452293,7.4238839,49.52,56.95,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,1820,2818033.5,2305164,449254.47,0,0,0,6975.5464 +12697,15494,27625,27624,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,9.2996168,9.3680658,48,2,25.711378,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.375994,9.3041639,57.16,56.15,49.52,56.95,8.333333333333334,1,1,0,0,5,2,5,1,1820,2818033.5,2305164,449254.47,0,0,0,6975.5464 +12698,15495,27626,27627,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,9.1016798,9.1755791,42,1,46.853085,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.4696026,9.805542,46.54,52.96,54.79,55.86,8.333333333333334,1,1,0,0,3,2,5,1,599,7757741,566221.13,1363754.4,0,0,0,6329.0586 +12698,15495,27627,27626,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,42,-1,18.265615,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,54.79,55.86,46.54,52.96,8.333333333333334,1,1,0,0,8,2,5,1,599,7757741,566221.13,1363754.4,0,0,0,6329.0586 +12699,15496,27628,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,0,0,0,0,0,-996.79181,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,46.98,-9,-9,3.333333333333333,1,1,1,1,1,12,1,0,459,14675.783,100245.69,0,0,0,-472.46085,411.42914 +12700,15497,27629,27630,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9495993,8.9832172,0,1,0,22.133152,-9,3,3,2021,9,0,45,0,1,1,0,13.422289,13.422289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,36.4,41.6,8,1,1,0,0,1,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15497,27630,27629,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.1898017,7.2393842,0,1,0,31.179087,-9,3,-9,2021,15,4,30,0,1,4,0,4.9244766,4.9244766,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.4,41.6,52,55,8.333333333333334,1,1,0,0,7,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15497,27631,-9,27630,27629,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-971.71021,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,0,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15498,27632,-9,27630,27629,1,0,21,0,0,0,2,2,-9,1,4,0,0,0,0,0,-918.19415,-9,3,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7755687,0,46,58,-9,-9,7,1,1,0,0,0,6,1,1,1594,53541.59,0,0,0,0,1086.124,754.49402 +12701,15499,27633,27634,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,6,4,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,12.95863,0,0,1,1,0,.73358327,0,50.68,25.79,54.79,55.86,8.333333333333334,1,1,0,0,0,2,1,0,412,-41245.375,0,61923.313,0,0,0,754.02039 +12701,15499,27634,27633,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.68,25.79,8.333333333333334,1,1,0,0,0,2,1,0,412,-41245.375,0,61923.313,0,0,0,754.02039 +12702,15500,27635,-9,27636,27637,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-942.24316,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12702,15500,27636,27637,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6253362,7.580965,0,10,1,84.889885,0,2,2,2021,8,0,32,29,1,0,0,5.9860353,5.9860353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.6,51.61,8.333333333333334,1,1,0,0,10,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12702,15500,27637,27636,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.3822565,8.5378408,0,10,-1,-106.1506,0,2,2,2021,12,0,43,40,1,0,0,12.105308,12.105308,.05,.05,0,0,0,0,0,0,1,1,0,.40248322,0,43.6,51.61,57.16,56.15,8.333333333333334,1,1,0,0,10,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12703,15501,27638,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,5.8759947,6.1298423,0,0,-1074.5237,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9580808,38.39,40.89,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,67,301170.03,102176.34,129936.43,0,0,0,513.95239 +12704,15502,27639,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,8.1525888,8.2368069,0,0,-1085.3842,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4151111,8.188962,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,476,1602512.6,973512.31,363317.72,0,0,0,2438.3079 +12705,15503,27640,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-996.74677,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.4,51.64,-9,-9,8.333333333333334,1,1,0,0,6,13,1,1,1448,-221425.22,0,0,0,0,0,406.21408 +12706,15504,27641,27642,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,12,-4,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,36.78,53.77,39.32,17.47,3.333333333333333,4,2,0,0,0,11,1,0,605.5,1331508.9,1269736,145524.75,0,3353.7788,0,2587.6458 +12706,15504,27642,27641,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,12,4,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.32,17.47,36.78,53.77,3.333333333333333,1,1,0,0,0,11,1,0,605.5,1331508.9,1269736,145524.75,0,3353.7788,0,2587.6458 +12707,15505,27643,27646,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,8.2306976,7.9900537,0,7,0,171.03493,0,2,2,2021,19,7,24,26,1,7,0,14.949161,14.949161,.05,.05,0,0,0,0,0,0,1,1,0,7.0388875,0,35.62,64.71000000000001,51.24,58.84,6.666666666666667,1,1,0,0,8,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27644,-9,27643,27646,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.0166,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27645,-9,27643,27646,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.7827,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27646,27643,-9,-9,1,1,32,0,2,0,1,1,-9,0,4,8.6693153,9.1208344,0,7,0,-18.236101,0,-9,-9,2021,11,0,56,56,1,0,0,11.544853,11.544853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,35.62,64.71000000000001,8.333333333333334,1,1,0,0,8,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12708,15506,27647,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-997.11163,0,-9,-9,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,329,29050.16,55775.945,0,0,0,0,1543.1417 +12709,15507,27648,-9,27650,27649,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.1271,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15507,27649,27650,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.6938229,9.2015762,0,6,-2,-17.744276,0,-9,-9,2021,10,0,42,48,1,0,0,14.779716,14.779716,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,41.07,60.93,6.666666666666667,1,1,0,0,3,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15507,27650,27649,-9,-9,1,0,43,0,1,0,2,2,-9,1,5,0,0,0,6,2,13.04678,0,-9,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,60.93,60.29,52.11,10,1,1,0,0,0,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15508,27651,-9,27650,27649,1,1,24,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1109.3414,0,2,2,2021,14,4,0,30,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.72,48.65,-9,-9,8.333333333333334,1,1,0,0,2,4,1,0,778,67948.117,0,0,0,0,0,-449.11539 +12710,15509,27652,-9,27653,27654,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5511,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52636862,0,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27653,27654,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,0,0,0,7,-1,18.848236,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.37,54.8,50.45,51.34,8.333333333333334,1,1,0,0,5,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27654,27653,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.4905186,8.5245905,0,7,1,90.36013,0,3,2,2021,12,3,45,45,1,3,0,9.6051168,9.6051168,.05,.05,0,0,0,0,0,0,1,1,0,3.8109093,0,50.45,51.34,54.37,54.8,5,1,1,0,0,8,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27655,-9,27653,27654,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.3635,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12711,15510,27656,27657,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,68,-5,-57.343647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.0694976,0,57.96,42.54,56,44,10,1,1,0,0,0,10,2,1,2492.5,496264.53,173583.27,295603.44,0,0,0,1372.7356 +12711,15510,27657,27656,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,4.7055669,4.9424806,68,5,-102.29969,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,129.00116,0,0,1,1,0,5.8109674,4.7559595,56,44,57.96,42.54,8,1,1,0,0,0,10,2,1,2492.5,496264.53,173583.27,295603.44,0,0,0,1372.7356 +12712,15511,27658,27659,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,9.9491129,9.5714455,0,17,-1,.32065833,0,2,1,2021,9,0,50,60,1,0,0,36.49609,36.49609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,55.79,52.62,5,1,1,0,0,10,6,5,1,465.5,565854.69,496711.81,227845.53,184186.06,0,0,11574.937 +12712,15511,27659,27658,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.6705647,9.9944658,6.8987846,17,1,-167.74036,0,3,2,2021,5,0,10,40,1,0,0,225.64758,225.64758,.05,.05,0,0,0,0,0,0,0,0,0,7.370924,7.4610662,55.79,52.62,46.5,58.26,8.333333333333334,1,1,0,0,8,6,5,1,465.5,565854.69,496711.81,227845.53,184186.06,0,0,11574.937 +12713,15512,27660,27661,-9,-9,1,1,42,1,1,0,1,1,-9,0,5,9.1141739,9.1510391,0,2,4,-54.706818,0,-9,-9,2021,6,1,40,58,1,1,0,29.835957,29.835957,.05,.05,0,0,0,0,0,0,0,0,0,7.466567,0,51.73,58.82,56.78,49.38,8.333333333333334,1,1,0,0,4,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12713,15512,27661,27660,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,0,0,0,2,-4,9.5932293,0,2,1,2021,10,0,0,43,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.78,49.38,51.73,58.82,6.666666666666667,1,1,1,0,9,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12713,15512,27662,-9,27661,27660,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-892.98669,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12714,15513,27663,27665,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.1756277,8.4223614,0,2,12,-6.9718275,0,-9,2,2021,10,1,34,34,1,1,0,13.363526,13.363526,0,0,0,0,0,0,0,2,1,1,0,5.7583833,0,42.57,42.96,55.84,55.33,5,1,1,0,0,12,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12714,15513,27664,-9,27663,27665,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.13806,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12714,15513,27665,27663,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.7056637,8.4729528,0,2,-12,-123.42155,0,-9,-9,2021,6,0,37,38,1,0,0,15.063402,15.063402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.84,55.33,42.57,42.96,6.666666666666667,1,1,0,0,5,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12715,15514,27666,27667,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.3167877,8.1217556,0,8,0,-117.74535,0,2,2,2021,12,1,36,36,1,1,0,9.4932775,9.4932775,.05,.05,0,0,0,0,0,0,0,0,0,1.0005352,0,40.48,62.56,57.16,56.15,6.666666666666667,1,1,0,0,7,5,5,1,276.5,273537.38,237052.47,125609.79,66783.539,0,0,3166.7339 +12715,15514,27667,27666,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.1457939,8.1865835,0,10,0,-53.024452,0,2,1,2021,6,0,36,36,1,0,0,11.164582,11.164582,.05,.05,0,0,0,0,0,0,0,0,0,.67952555,0,57.16,56.15,40.48,62.56,8.333333333333334,1,1,0,0,11,5,5,1,276.5,273537.38,237052.47,125609.79,66783.539,0,0,3166.7339 +12716,15515,27668,27669,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6969681,8.5746651,0,4,1,13.993779,0,2,2,2021,7,0,37,37,1,0,0,20.995371,20.995371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.19,48.81,58.14,42.54,8.333333333333334,3,4,0,0,14,8,5,1,627.5,406699.63,87456.875,281236.75,98079.367,2798.2227,1276.4736,3590.7446 +12716,15515,27669,27668,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.0973978,7.6850157,0,4,-1,49.092709,0,-9,-9,2021,8,0,35,50,1,0,0,6.9549422,6.9549422,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.14,42.54,43.19,48.81,5,1,1,0,0,8,8,5,1,627.5,406699.63,87456.875,281236.75,98079.367,2798.2227,1276.4736,3590.7446 +12716,15516,27670,-9,27668,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.55731,-9,1,-9,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2573187,0,29.93,60.54,-9,-9,5,3,4,1,0,2,8,1,1,675,-14694.152,0,0,0,0,0,649.83661 +12717,15517,27671,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,9.1641359,8.9378433,4.5906401,0,0,-1003.2006,0,2,2,2021,7,0,46,47,1,0,0,20.430168,20.430168,0,0,0,0,0,0,0,0,0,0,0,5.3400979,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,240,590413.19,363749.19,165673.52,0,2913.3313,0,3647.8982 +12718,15518,27672,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.8143673,7.0731139,0,0,-1051.7617,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3753862,6.7248697,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1214,514924.31,155438.06,263733.97,0,0,0,1805.3396 +12719,15519,27673,-9,27674,27676,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-925.56433,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6093236,0,44,59,-9,-9,7,1,1,0,0,0,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27674,27676,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.1972265,7.8239274,0,25,-5,-12.314424,0,2,2,2021,14,2,46,50,1,2,0,9.5243769,9.5243769,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,62.66,52.4,5,1,1,0,0,13,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27675,-9,27674,27676,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.6072,-9,1,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27676,27674,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,10,5,75.905815,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,41.34,56.62,6.666666666666667,1,1,0,0,1,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15520,27677,-9,27674,27676,1,0,21,0,0,0,1,1,1,0,3,7.1996903,7.0631747,0,0,0,-1091.0361,-9,1,2,2021,20,8,18,0,1,8,1,5.5618958,5.5618958,0,0,0,0,0,0,0,0,0,0,0,0,0,32.38,58.28,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,178,144848.98,0,0,0,0,0,-199.45174 +12719,15521,27678,-9,27674,27676,1,0,20,0,0,0,2,2,-9,0,3,5.1165867,5.389607,0,0,0,-1009.6824,0,1,2,2021,12,3,32,32,1,3,1,.90880346,.90880346,0,0,0,0,0,0,0,0,0,0,0,7.0667791,0,39.03,49.56,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,1752,158186.53,0,0,0,0,0,1177.6255 +12719,15522,27679,-9,27674,27676,1,0,20,0,0,0,2,2,-9,0,4,7.8079872,7.9688039,0,0,0,-874.41766,0,1,2,2021,12,0,40,0,1,0,1,6.9020247,6.9020247,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,322,20898.787,0,0,0,0,0,1335.9618 +12720,15523,27680,27681,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.2052259,8.9201822,0,3,-21,16.362194,0,-9,-9,2021,12,0,40,40,1,0,0,19.135759,19.135759,.05,.05,0,0,0,0,0,0,1,1,0,7.0410657,0,42.64,57.17,37.27,51.5,5,1,1,0,0,13,4,5,1,1406.5,1215096.1,651582.63,170131.56,0,0,0,5032.7129 +12720,15523,27681,27680,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.5969782,7.463717,0,3,21,12.513801,0,2,3,2021,14,2,60,60,1,2,0,3.5892982,3.5892982,.05,.05,0,0,0,0,0,0,1,1,0,3.7189202,0,37.27,51.5,42.64,57.17,3.333333333333333,1,1,0,0,12,4,5,1,1406.5,1215096.1,651582.63,170131.56,0,0,0,5032.7129 +12720,15524,27682,-9,27680,27681,1,1,29,0,0,0,2,2,-9,0,3,7.8536878,7.761795,0,0,0,-945.16284,0,2,2,2021,16,4,80,65,1,4,1,4.2663736,4.2663736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,44.34,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,15314,-12310.409,-57984.277,0,0,0,764.05872,1306.4729 +12721,15525,27683,27684,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,.098101072,0,1,-7,-94.201981,-9,-9,-9,2021,7,0,80,0,1,0,0,.00025358031,.00025358031,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,61.16,53.18,10,1,1,0,0,1,12,2,1,1026,251560.16,313602.84,0,0,0,4074.5581,171.80679 +12721,15525,27684,27683,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,0,0,1,7,64.890068,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5416863,0,61.16,53.18,59.43,58.05,10,1,1,0,0,5,12,2,1,1026,251560.16,313602.84,0,0,0,4074.5581,171.80679 +12722,15526,27685,27686,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.1455665,7.0135417,8,4,-11.148535,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9308639,7.4417276,46.33,55.93,38.67,45.86,8.333333333333334,1,1,0,0,2,13,2,1,303.5,362032.63,113065.85,133344.27,0,0,-85.561066,1920.5071 +12722,15526,27686,27685,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,8,-4,-107.80143,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.67,45.86,46.33,55.93,6.666666666666667,1,1,0,0,7,13,2,1,303.5,362032.63,113065.85,133344.27,0,0,-85.561066,1920.5071 +12723,15527,27687,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.4520941,8.2813778,0,0,0,-985.52368,0,-9,-9,2021,12,0,37,37,1,0,0,14.373636,14.373636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.02,58.89,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,205,432571.97,318919.72,0,0,7714.7646,0,1949.3268 +12724,15528,27688,27689,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.6327982,8.7225237,7.2432046,35,0,-10.944124,0,-9,2,2021,6,0,37,37,1,0,0,19.078161,19.078161,0,0,0,0,0,0,0,0,0,0,0,2.1531894,7.733747,58.08,43.46,60.12,54.8,8.333333333333334,1,1,0,0,10,5,5,1,457.5,1209927.6,924925.88,0,0,0,0,3175.5688 +12724,15528,27689,27688,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.9689202,5.0185952,45,0,-28.822119,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7904582,4.6160121,60.12,54.8,58.08,43.46,8.333333333333334,1,1,0,0,0,5,5,1,457.5,1209927.6,924925.88,0,0,0,0,3175.5688 +12725,15529,27690,27691,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.9514909,6.7305365,41,-10,-125.27254,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2401581,36.77,62.57,44.47,39.33,8.333333333333334,1,1,0,0,8,9,3,1,110.5,747552,581784.75,474101.31,132513.56,0,7015.5205,1728.8184 +12725,15529,27691,27690,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.1392117,7.5226421,11,10,46.387875,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3529754,7.1436648,44.47,39.33,36.77,62.57,5,1,1,0,0,0,9,3,1,110.5,747552,581784.75,474101.31,132513.56,0,7015.5205,1728.8184 +12726,15530,27692,27696,-9,-9,1,0,35,1,3,0,3,3,-9,0,3,0,0,0,14,0,-25.209673,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,51.14,57.33,53.46,6.666666666666667,2,3,0,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27693,-9,27692,27696,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6252,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27694,-9,27692,27696,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.2299,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27695,-9,27692,27696,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3044,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27696,27692,-9,-9,1,1,35,1,3,0,2,2,-9,0,3,6.5832233,7.0849237,0,8,0,-11.100537,0,-9,-9,2021,11,0,16,16,1,0,0,5.2101269,5.2101269,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.2,51.14,6.666666666666667,2,3,0,0,11,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12727,15531,27697,27699,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.0257092,7.7622561,0,7,-4,-63.26688,0,2,1,2021,27,12,15,0,1,12,0,23.66297,23.66297,.05,.05,0,0,0,0,0,0,1,1,0,7.2675815,0,24.37,64.5,51.49,57.57,5,2,3,0,0,2,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27698,-9,27697,27699,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.8011,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27699,27697,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.3494549,8.2249174,0,7,4,79.522057,0,-9,-9,2021,12,0,37,37,1,0,0,12.884607,12.884607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,24.37,64.5,8.333333333333334,2,3,0,0,10,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27700,-9,27697,27699,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6981,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27701,-9,27697,27699,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.67426,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12728,15532,27702,-9,27706,27705,1,1,10,1,5,1,3,0,-9,0,3,0,0,0,0,0,-923.01434,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27703,-9,27706,27705,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1020.7956,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27704,-9,27706,27705,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-942.87872,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27705,27706,-9,-9,1,1,37,1,5,0,2,2,-9,0,3,8.3457546,8.3001595,0,17,4,97.094078,0,2,1,2021,25,8,37,37,1,8,0,13.103996,13.103996,.05,.05,0,0,0,0,0,7,1,1,0,6.998879,0,14.9,66.18000000000001,25.44,65.40000000000001,0,1,1,0,0,11,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27706,27705,-9,-9,1,0,33,1,5,0,2,2,-9,1,4,0,0,0,17,-4,-18.010872,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.44,65.40000000000001,14.9,66.18000000000001,6.666666666666667,1,1,0,0,1,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27707,-9,27706,27705,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-930.87854,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27708,-9,27706,27705,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1087.6095,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12729,15533,27709,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1073.6874,-9,-9,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,735,-47713.719,0,0,0,0,0,0 +12730,15534,27710,27711,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5580206,8.043395,0,28,2,-8.9468842,0,2,3,2021,10,1,39,45,1,1,0,15.809263,15.809263,.05,.05,0,0,0,0,0,2,1,1,0,3.803349,0,54.79,55.86,53.46,53.93,1.666666666666667,1,1,0,0,9,7,5,1,2757.5,716224.88,388222.06,444709.88,220185.19,12472.832,6561.4404,3416.4126 +12730,15534,27711,27710,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.5274677,8.4959488,0,28,-2,-35.883991,0,3,3,2021,7,0,40,40,1,0,0,14.614933,14.614933,.05,.05,.05,0,0,0,0,2,1,1,0,3.4879539,0,53.46,53.93,54.79,55.86,10,1,1,0,0,8,7,5,1,2757.5,716224.88,388222.06,444709.88,220185.19,12472.832,6561.4404,3416.4126 +12730,15535,27712,-9,27710,27711,1,1,22,0,0,0,1,1,-9,0,4,7.8838611,7.9139662,0,0,0,-980.34503,0,2,2,2021,12,0,44,48,1,0,1,6.63938,6.63938,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,1534,-38345.676,0,0,0,0,0,1390.1813 +12731,15536,27713,27715,-9,-9,1,1,31,0,1,0,1,1,-9,1,2,0,0,0,1,-4,0,-9,-9,-9,2021,6,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.94,49.91,36.79,61.46,10,1,1,1,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12731,15536,27714,-9,27715,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.1689,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12731,15536,27715,27713,-9,-9,1,0,35,0,1,0,2,2,-9,1,5,0,0,0,1,4,0,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,61.46,44.94,49.91,6.666666666666667,1,1,1,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12732,15537,27716,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.986938,6.175004,0,0,-985.81378,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0647159,0,0,1,1,0,2.295661,6.1112514,49.11,43.42,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,870,-42325.234,28015.996,0,0,0,0,1030.286 +12733,15538,27717,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-921.75446,-9,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.35,60.18,-9,-9,5,1,1,0,1,6,7,1,0,238,-21750.514,0,0,0,0,0,996.63342 +12734,15539,27718,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1005.1281,-9,-9,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.42,35.77,-9,-9,10,1,1,1,0,0,8,1,0,720,-58670.891,0,0,0,0,0,596.67596 +12735,15540,27719,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.8662281,8.8002234,0,0,0,-1086.4685,0,-9,-9,2021,9,0,59,39,1,0,0,15.940829,15.940829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.69,42.53,-9,-9,0,3,4,0,0,9,8,5,0,1288,663453.06,419227.34,0,0,0,1612.0302,1718.3702 +12735,15541,27720,-9,27719,-9,1,1,22,0,0,0,2,2,1,0,3,6.1360559,6.1933017,0,0,0,-930.09882,-9,2,-9,2021,12,2,12,0,1,2,1,3.8110993,3.8110993,0,0,0,0,0,0,0,0,0,0,0,0,0,45.16,56.56,-9,-9,10,3,4,0,0,0,8,2,0,490,-125736.16,0,0,0,0,0,179.7827 +12735,15542,27721,-9,27719,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.50873,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,1064,239696.42,0,0,0,0,0,-31.255045 +12736,15543,27722,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1065.0311,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0282974,0,40.67,51.61,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,283,1205078.3,1109197.4,446279.84,135206.75,6568.2871,26529.059,3781.2627 +12737,15544,27723,-9,27724,27725,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.9859,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27724,27725,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0912876,8.0334673,0,18,-2,-21.270128,0,2,2,2021,10,0,22,20,1,1,0,21.285759,21.285759,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.06,57.76,8,1,1,0,0,1,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27725,27724,-9,-9,1,1,43,0,2,0,2,2,-9,1,5,8.1261339,8.0829983,0,18,2,53.257122,0,2,1,2021,7,0,38,37,1,0,0,13.441706,13.441706,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,49,55,8.333333333333334,1,1,0,0,8,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27726,-9,27724,27725,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7212,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12738,15545,27727,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.0841,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.42,42.58,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,1177,37054.109,0,0,0,0,0,1496.9238 +12739,15546,27728,27729,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.5796318,8.5104084,0,14,-2,87.834053,0,2,2,2021,10,0,94,14,1,0,0,6.7812486,6.7812486,.05,.05,0,0,0,0,0,2,0,0,0,7.2857652,0,51.14,60.45,42.95,61.24,8.333333333333334,1,1,0,0,15,10,4,1,223,531871.81,272242.69,290727.41,141797.81,20300.703,9552.8896,3073.1523 +12739,15546,27729,27728,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.0751586,7.2356405,4.7637496,14,2,136.56218,0,2,1,2021,10,0,50,60,1,0,0,3.6744637,3.6744637,.05,.05,0,0,0,0,0,0,0,0,0,5.2415352,0,42.95,61.24,51.14,60.45,6.666666666666667,1,1,0,0,13,10,4,1,223,531871.81,272242.69,290727.41,141797.81,20300.703,9552.8896,3073.1523 +12740,15547,27730,27731,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-8,14.671276,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3412967,0,59.1,39.65,58.47,50.22,8.333333333333334,1,1,0,0,0,12,2,1,939.5,319557.06,129499.3,151784.72,0,0,0,1444.1062 +12740,15547,27731,27730,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,7.4455051,7.4483247,7,8,-14.416269,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5656285,7.5513597,58.47,50.22,59.1,39.65,8.333333333333334,1,1,0,0,0,12,2,1,939.5,319557.06,129499.3,151784.72,0,0,0,1444.1062 +12741,15548,27732,27733,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.7339783,8.7816439,0,32,0,18.776863,0,1,3,2021,7,0,50,49,1,0,0,12.102808,12.102808,0,0,0,0,0,0,0,2,0,0,0,6.8354993,0,57.06,57.76,53,54,10,1,1,0,0,7,2,5,1,1226,73407.719,157987.38,194594.67,52412.641,7273.6274,0,6912.7725 +12741,15548,27733,27732,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.1990919,9.4054785,7.2863884,7,0,5.0371857,0,-9,-9,2021,9,0,40,40,1,1,0,28.921711,28.921711,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.1771464,53,54,57.06,57.76,8,1,1,0,0,1,2,5,1,1226,73407.719,157987.38,194594.67,52412.641,7273.6274,0,6912.7725 +12741,15549,27734,-9,27732,27733,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1106.5681,-9,2,2,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.47102749,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,260,87706.734,0,0,0,0,0,-408.09186 +12742,15550,27735,-9,27737,27736,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.42267,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,54.78,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12742,15550,27736,27737,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.5038261,9.1505156,0,9,2,-78.621201,0,1,1,2021,10,0,24,32,1,1,0,62.148289,62.148289,0,0,0,0,0,0,0,0,0,0,0,2.0733745,0,50,49,59.33,51.29,7,1,1,0,0,1,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12742,15550,27737,27736,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,9,-2,-42.701935,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6513145,0,59.33,51.29,50,49,8.333333333333334,1,1,0,0,0,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12743,15551,27738,27739,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0235643,8.2393064,7.0541315,16,-5,-80.079033,0,2,2,2021,24,12,40,40,1,12,0,8.3894272,8.3894272,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9928408,44.09,30.9,57.33,53.46,6.666666666666667,1,1,0,0,14,10,3,1,767,122161.33,-105665.58,0,0,4712.9238,4043.5925,2241.8369 +12743,15551,27739,27738,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,4.9548888,4.9351954,0,26,5,-28.81097,0,2,2,2021,6,0,10,12,1,0,0,1.1736438,1.1736438,.05,.05,0,0,0,0,0,0,1,1,0,2.1022115,0,57.33,53.46,44.09,30.9,8.333333333333334,1,1,0,0,13,10,3,1,767,122161.33,-105665.58,0,0,4712.9238,4043.5925,2241.8369 +12744,15552,27740,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.218008,8.4102449,0,0,0,-978.34149,0,-9,-9,2021,24,11,60,33,1,11,0,6.2140708,6.2140708,.05,.05,0,0,0,0,0,0,0,0,0,1.2784745,0,12.37,66.34999999999999,-9,-9,3.333333333333333,1,1,0,0,6,10,4,0,638,-22390.559,-94769.844,0,0,0,0,1486.3311 +12745,15553,27741,27742,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.505374,7.6583233,0,28,-8,-24.110472,0,-9,-9,2021,16,4,25,25,1,4,0,9.4935198,9.4935198,0,0,0,0,0,0,0,0,0,0,0,0,0,33.35,53.53,32.31,42.22,0,1,1,0,0,11,5,4,0,2830,-76053.383,102518.56,16860.482,6652.6577,16407.598,0,2155.3936 +12745,15553,27742,27741,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.1085443,7.9788723,0,28,8,118.83527,0,-9,-9,2021,21,7,50,60,1,7,0,6.3759103,6.3759103,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.31,42.22,33.35,53.53,6.666666666666667,1,1,0,0,10,5,4,0,2830,-76053.383,102518.56,16860.482,6652.6577,16407.598,0,2155.3936 +12745,15554,27743,-9,27741,27742,1,0,23,0,0,0,2,2,-9,0,4,6.7833233,6.7631936,0,0,0,-1029.4635,0,2,2,2021,23,8,21,40,1,8,1,4.6423965,4.6423965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,53.13,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,1013,90092.859,28613.795,0,0,0,0,429.91229 +12746,15555,27744,27745,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,6,1,-52.569805,0,3,2,2021,9,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,55.37,40.83,8.333333333333334,1,1,1,0,5,2,3,1,568,916560.88,786121.88,175312.25,0,0,0,1626.5352 +12746,15555,27745,27744,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.1823902,7.7351294,6,-1,-106.65473,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1382372,7.7999029,55.37,40.83,49.61,54.24,8.333333333333334,1,1,0,0,7,2,3,1,568,916560.88,786121.88,175312.25,0,0,0,1626.5352 +12747,15556,27746,27747,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.2255325,8.1469278,0,31,-11,.60742724,0,3,1,2021,21,9,18,22,1,9,0,28.326977,28.326977,0,0,0,0,0,0,0,0,1,1,0,8.7878952,0,47.59,55.4,51.42,48.12,8.333333333333334,1,1,0,0,9,8,5,1,1393,4668837,3339883,663784.25,0,0,0,12372.838 +12747,15556,27747,27746,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.1113138,9.3572311,8.3009939,8,11,56.510418,0,-9,-9,2021,12,1,25,42,1,1,0,38.451881,38.451881,0,0,0,0,0,0,0,0,1,1,0,8.6578588,8.7168436,51.42,48.12,47.59,55.4,8.333333333333334,1,1,0,0,9,8,5,1,1393,4668837,3339883,663784.25,0,0,0,12372.838 +12747,15557,27748,-9,27746,27747,1,0,25,0,0,0,1,1,1,0,3,8.4581423,8.4329338,0,0,0,-1126.182,-9,2,1,2021,6,0,38,0,1,0,1,9.0535975,9.0535975,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,291,30932.08,0,0,0,26651.68,275.72733,538.66956 +12747,15558,27749,-9,27746,27747,1,1,23,0,0,0,1,1,-9,0,3,8.4825678,8.3301535,0,0,0,-956.3938,-9,2,1,2021,5,0,38,0,1,0,1,10.534861,10.534861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,1330,-11266.025,106792.33,0,0,0,0,1915.6389 +12748,15559,27750,-9,27751,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.00433,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,836.5,44629.703,0,0,0,11677.351,0,1804.4216 +12748,15559,27751,-9,-9,-9,1,0,32,0,2,0,3,3,-9,1,2,6.6232152,6.9172454,6.068841,0,0,-1040.5253,0,2,3,2021,13,3,17,16,1,3,0,5.0029597,5.0029597,0,0,0,0,0,0,0,14.5,1,1,0,5.3392034,0,39.39,52.79,-9,-9,5,1,1,0,0,4,2,2,0,836.5,44629.703,0,0,0,11677.351,0,1804.4216 +12749,15560,27752,27753,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.6793303,8.6035166,8.2605133,9,0,-60.439068,0,3,3,2021,6,0,16,16,1,0,0,25.056763,25.056763,0,0,0,0,0,0,0,7,1,1,0,8.5771465,8.4862022,58.15,52.91,42.65,15.87,8.333333333333334,1,1,0,0,11,2,4,1,580,497514.56,397602.09,53335.629,58301.156,0,2008.2195,4221.3892 +12749,15560,27753,27752,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,9,0,-85.114075,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.7290063,0,42.65,15.87,58.15,52.91,6.666666666666667,1,1,0,0,8,2,4,1,580,497514.56,397602.09,53335.629,58301.156,0,2008.2195,4221.3892 +12750,15561,27754,27755,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.5925207,8.3417006,0,22,1,234.44685,0,-9,-9,2021,12,0,41,41,1,0,0,12.766328,12.766328,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,2,3,0,0,9,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27755,27754,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.6371961,7.3439922,0,6,-1,-4.3577881,0,-9,2,2021,9,0,6,27,1,0,0,39.976566,39.976566,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.33,53.46,6.666666666666667,2,3,0,0,3,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27756,-9,27755,27754,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.9812,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27757,-9,27755,27754,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.32654,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15562,27758,-9,27755,27754,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1107.4568,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,1011,-82001.211,0,0,0,0,0,0 +12751,15563,27759,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.6240692,8.6439323,5.8929577,0,0,-1026.6322,0,3,2,2021,7,0,35,35,1,0,0,14.716694,14.716694,.05,.05,0,0,0,0,0,0,1,1,0,7.0207677,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,917.5,210651.89,142509.86,0,0,0,1108.3506,3255.0459 +12751,15563,27760,-9,27759,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-965.08649,-9,1,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.31,61.31,-9,-9,5,1,1,0,0,0,12,4,1,917.5,210651.89,142509.86,0,0,0,1108.3506,3255.0459 +12752,15564,27761,27763,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.6781902,8.0134382,0,30,-3,70.571228,0,3,2,2021,33,12,40,36,1,12,0,5.5999355,5.5999355,0,0,0,0,0,0,0,0,1,1,0,0,0,7.28,63.64,46.08,57.2,5,1,1,0,0,11,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15564,27762,-9,27761,27763,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-980.31635,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15564,27763,27761,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.3359051,9.032362,0,30,3,-32.510727,0,2,2,2021,9,0,40,40,1,0,0,22.936905,22.936905,0,0,0,0,0,0,0,0,1,1,0,1.2955052,0,46.08,57.2,7.28,63.64,8.333333333333334,1,1,0,0,14,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15565,27764,-9,27761,27763,1,0,18,0,1,0,2,2,1,0,1,6.6822667,6.6069684,0,0,0,-970.42267,-9,2,1,2021,36,12,28,0,1,12,1,2.5774722,2.5774722,0,0,0,0,0,0,0,0,1,1,0,.59555829,0,13.27,46.77,-9,-9,3.333333333333333,1,1,0,0,1,9,2,1,54,-44415.48,0,0,0,-1852.5792,1227.7737,142.28555 +12753,15566,27765,27766,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.9154172,7.2445154,8,5,55.326759,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,41.841858,0,0,1,1,0,0,7.6455812,59.81,35.89,49.86,55.31,6.666666666666667,1,1,0,0,0,9,3,1,243.5,1177831,176054.05,611620.13,0,0,0,2578.9824 +12753,15566,27766,27765,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,6.107717,6.3439813,8,-5,15.652826,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.2488422,6.2777448,49.86,55.31,59.81,35.89,6.666666666666667,1,1,0,0,1,9,3,1,243.5,1177831,176054.05,611620.13,0,0,0,2578.9824 +12754,15567,27767,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.1970544,7.4769731,0,0,-1008.2669,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.937758,7.515492,55.56,46,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,502,438890.31,201261.63,230042.06,0,0,0,1406.7671 +12755,15568,27768,27769,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.2031412,8.4421005,0,3,0,-149.74347,0,-9,-9,2021,9,0,25,25,1,0,0,17.318155,17.318155,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,7,8,5,0,375.5,766684.38,769054.25,365711.94,259031.78,0,13055.458,4230.9741 +12755,15568,27769,27768,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.9626188,8.971674,0,3,0,-67.787155,0,3,3,2021,7,0,40,40,1,0,0,27.038839,27.038839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,13,8,5,0,375.5,766684.38,769054.25,365711.94,259031.78,0,13055.458,4230.9741 +12756,15569,27770,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,6.3726015,6.7270708,0,0,-1074.9636,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0028677,6.8689213,50.74,17.64,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,467,605056.56,487269.5,0,0,0,0,1366.7885 +12757,15570,27771,27772,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.471848,7.560308,44,1,148.14085,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2940264,7.8925424,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,2084,1042657.8,659362.69,280490.03,0,0,0,3140.4688 +12757,15570,27772,27771,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.2949562,7.2789211,44,-1,-74.280617,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1030874,7.3476591,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,7,3,1,2084,1042657.8,659362.69,280490.03,0,0,0,3140.4688 +12758,15571,27773,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.5038724,7.2956753,0,0,-1133.7042,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8806689,7.281394,40.84,31.46,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,183,496397.97,298739.94,374612.09,24879.906,18800.469,0,1151.0176 +12759,15572,27774,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,9.1164722,8.6532154,6.1547098,0,0,-1134.3882,0,2,3,2021,12,0,55,40,1,0,0,18.428558,18.428558,.05,.05,0,0,0,0,0,0,1,1,0,6.859436,0,32.08,58.42,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,3295.5,12129.855,17242.023,0,0,15453.624,0,2870.3125 +12759,15572,27775,-9,27774,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.34485,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,3295.5,12129.855,17242.023,0,0,15453.624,0,2870.3125 +12760,15573,27776,27778,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.109334,6.8189378,0,10,1,86.367599,0,2,1,2021,9,0,40,40,1,0,0,2.9332352,2.9332352,.05,.05,0,0,0,0,0,0,0,0,0,8.5306568,0,50.65,53.71,35.36,56.72,8.333333333333334,1,1,0,0,11,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12760,15573,27777,-9,27778,27776,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-999.07648,-9,1,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12760,15573,27778,27776,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.5923567,9.4617653,0,10,-1,-89.299118,-9,-9,-9,2021,26,9,42,0,1,9,0,39.638069,39.638069,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.36,56.72,50.65,53.71,3.333333333333333,1,1,0,0,11,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12761,15574,27779,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.6521,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,24.38,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,658,-171844.14,0,0,0,0,-884.99554,1731.1857 +12762,15575,27780,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.9531198,6.7250366,0,0,-1001.3529,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7634645,57.77,33.07,-9,-9,10,1,1,0,0,0,12,2,1,191,201558.28,256608.33,110833.21,0,0,0,2054.4199 +12763,15576,27781,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1104.7173,0,3,3,2021,11,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,1,0,13,8,1,0,342,270094.59,0,0,0,-31.865643,0,1067.1106 +12764,15577,27782,27783,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,5.6406116,5.8969827,0,34,-1,-11.131888,0,3,3,2021,13,3,25,25,1,3,0,1.2084229,1.2084229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.41,51.2,52,54.51,8.333333333333334,1,1,0,0,11,1,4,0,695.5,1244307.5,889638.63,164971.3,7769.5488,8404.041,0,2760.6047 +12764,15577,27783,27782,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6337843,8.838747,0,34,1,81.218613,0,3,3,2021,11,0,40,40,1,0,0,19.990276,19.990276,.05,.05,0,0,0,0,0,0,0,0,0,6.0467257,0,52,54.51,47.41,51.2,6.666666666666667,1,1,0,0,11,1,4,0,695.5,1244307.5,889638.63,164971.3,7769.5488,8404.041,0,2760.6047 +12765,15578,27784,27785,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,6.2565746,6.3663564,2,3,143.53477,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7128453,0,54.79,55.86,54.74,57.22,8.333333333333334,1,1,0,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27785,27784,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.1201315,8.2946348,0,2,-3,2.4874437,0,2,2,2021,9,0,46,50,1,0,0,9.1902046,9.1902046,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.79,55.86,6.666666666666667,1,1,0,0,11,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27786,-9,27784,27785,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.3875,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27787,-9,27784,27785,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.9162,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27788,-9,27784,27785,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.1001,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12766,15579,27789,27790,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9227867,8.6004143,0,16,11,207.17139,0,-9,-9,2021,6,0,44,44,1,0,0,17.627377,17.627377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52,33.25,8.333333333333334,1,1,0,0,11,10,5,1,431,1268495.8,890278.19,399828,0,0,0,5286.7959 +12766,15579,27790,27789,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,7.754107,7.7004642,0,16,-11,68.975784,0,2,3,2021,7,0,13,22,1,0,0,25.713133,25.713133,0,0,0,0,0,0,0,0,1,1,0,7.5377064,0,52,33.25,60.12,54.8,8.333333333333334,1,1,0,0,11,10,5,1,431,1268495.8,890278.19,399828,0,0,0,5286.7959 +12766,15580,27791,-9,27790,27789,1,1,19,0,0,0,2,2,1,0,5,7.7684035,7.8348775,0,0,0,-954.24109,-9,2,2,2021,11,2,40,0,1,2,1,9.0891256,9.0891256,.05,.05,0,0,0,0,0,0,1,1,0,3.2853761,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,513,-169292.17,-115568.26,0,0,0,0,1180.7753 +12767,15581,27792,27793,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.1754861,6.9484563,8,20,50.272808,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,27.573946,0,120,1,1,0,5.6809034,6.9642749,51.73,17.23,32.48,31.29,5,1,1,0,0,0,10,2,0,1026,594844.88,368620.44,128687.36,0,0,0,2857.5908 +12767,15581,27793,27792,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,8,-20,24.001234,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,32.48,31.29,51.73,17.23,5,1,1,0,0,0,10,2,0,1026,594844.88,368620.44,128687.36,0,0,0,2857.5908 +12768,15582,27794,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,9.0301075,8.8663216,0,1,-2,-58.545258,0,2,2,2021,9,1,38,38,1,1,0,22.160473,22.160473,.05,.05,0,0,0,0,0,0,0,0,0,4.6065297,0,43.92,62.31,48,58,6.666666666666667,2,3,0,0,8,8,5,0,801,78695.023,162853.28,0,0,0,0,2773.1836 +12769,15583,27795,27796,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,10,2,22.976782,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.23999999999999,8.66,52.3,46.15,5,1,1,0,0,0,11,3,1,1156.5,874172.5,672333.13,79687.297,0,0,0,2123.291 +12769,15583,27796,27795,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1878252,8.3685522,0,10,-2,-90.311577,0,-9,-9,2021,11,0,40,40,1,0,0,10.916467,10.916467,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52.3,46.15,69.23999999999999,8.66,5,1,1,0,0,13,11,3,1,1156.5,874172.5,672333.13,79687.297,0,0,0,2123.291 +12770,15584,27797,27798,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,7.6768446,7.5025182,0,2,1,42.299068,0,-9,-9,2021,6,0,23,38,1,0,0,8.672761,8.672761,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,58,10,1,1,0,0,8,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12770,15584,27798,27797,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,8.1140442,8.2393436,0,2,-1,-112.53149,0,1,3,2021,10,0,60,0,1,1,0,8.4321032,8.4321032,.05,.05,0,0,0,0,0,7,1,1,0,0,0,50,58,57.06,57.76,7,4,2,0,0,2,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12770,15584,27799,-9,27797,27798,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.2518,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12771,15585,27800,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.6721973,9.7016363,0,5,0,-117.58514,0,2,1,2021,8,0,55,50,1,0,0,28.650352,28.650352,.05,.05,0,0,0,0,0,0,0,0,0,7.7213693,0,57.16,56.15,50,58,8.333333333333334,1,1,0,0,12,8,5,0,539,93537.891,234624.59,0,0,0,0,4228.0298 +12772,15586,27801,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1099.7076,0,2,2,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,53.5,-9,-9,3.333333333333333,1,1,0,0,5,2,1,1,779,-37357.652,0,0,0,0,0,414.2373 +12773,15587,27802,27803,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.3959875,6.8847718,6,2,14.099892,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9532322,7.1330113,55,45,53,44,8,1,1,0,0,0,11,3,1,544,140543.94,0,0,0,0,0,2481.2163 +12773,15587,27803,27802,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2597313,6.971055,6,-2,-6.9775357,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9954886,7.4901838,53,44,55,45,8,1,1,0,0,0,11,3,1,544,140543.94,0,0,0,0,0,2481.2163 +12774,15588,27804,27805,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2788749,7.421123,44,1,-31.958624,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4215479,7.2065697,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,2166.5,2088466.3,1408544.8,128420.73,0,0,0,3380.6084 +12774,15588,27805,27804,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.4352827,8.4083729,44,-1,-18.403465,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6113186,8.416317,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,2166.5,2088466.3,1408544.8,128420.73,0,0,0,3380.6084 +12775,15589,27806,27807,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.4293079,8.2907972,6.0661006,3,10,-4.0389915,0,-9,-9,2021,10,0,40,40,1,1,0,11.76869,11.76869,.05,.05,0,0,0,0,0,0,1,1,0,0,5.6995659,52,47,55.19,54.26,7,1,1,0,0,1,10,5,0,340,671961.69,480042.06,223870.59,59131.289,0,0,4543.1353 +12775,15589,27807,27806,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1994181,7.689631,6.9506059,3,-10,132.07127,0,2,2,2021,7,0,25,34,1,0,0,6.7399335,6.7399335,.05,.05,0,0,0,0,0,0,1,1,0,5.5913858,6.8753533,55.19,54.26,52,47,8.333333333333334,1,1,0,0,7,10,5,0,340,671961.69,480042.06,223870.59,59131.289,0,0,4543.1353 +12776,15590,27808,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-866.1955,0,2,-9,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.8,51.86,-9,-9,10,1,1,0,0,0,9,1,1,440,-60981.07,0,0,0,0,0,-92.644814 +12777,15591,27809,27810,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.4555573,7.7278705,0,2,3,-19.490713,0,-9,-9,2021,9,0,48,50,1,0,0,5.2089396,5.2089396,.05,.05,.05,0,0,0,0,0,0,0,0,.30197519,0,57.09,46.7,51.83,57.2,8.333333333333334,1,1,0,0,9,10,5,1,1018.5,384305.88,239515.13,130166.45,110229.16,1059.0364,0,3175.3 +12777,15591,27810,27809,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3663654,8.8258476,0,2,-3,5.0282645,0,1,2,2021,6,0,40,45,1,0,0,17.33744,17.33744,0,0,0,0,0,0,0,0,0,0,0,5.049849,0,51.83,57.2,57.09,46.7,8.333333333333334,1,1,0,0,7,10,5,1,1018.5,384305.88,239515.13,130166.45,110229.16,1059.0364,0,3175.3 +12778,15592,27811,27812,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2461233,6.067647,10,4,-46.498909,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,13.587802,0,0,1,1,0,0,5.7184892,42.95,29.14,42.35,33.61,5,1,1,0,0,0,11,2,1,768.5,182366.75,22646.047,73836.938,0,0,0,2120.4121 +12778,15592,27812,27811,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,10,-4,28.25054,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.35,33.61,42.95,29.14,6.666666666666667,1,1,0,0,0,11,2,1,768.5,182366.75,22646.047,73836.938,0,0,0,2120.4121 +12779,15593,27813,-9,27814,27815,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.08173,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12779,15593,27814,27815,-9,-9,1,0,45,0,1,0,2,2,-9,1,5,6.6203227,6.7414732,0,10,2,-41.561337,0,2,2,2021,12,1,15,10,1,1,0,7.2282586,7.2282586,0,0,0,0,0,0,0,27,1,1,0,0,0,44.29,56.64,63.65,35.93,1.666666666666667,1,1,0,0,11,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12779,15593,27815,27814,-9,-9,1,1,43,0,1,0,2,2,-9,0,2,7.7768488,7.8464837,0,10,-2,-22.529873,0,-9,-9,2021,10,0,37,38,1,0,0,6.2518244,6.2518244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.65,35.93,44.29,56.64,5,4,2,0,0,10,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12780,15594,27816,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1057.0588,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.902117,0,0,1,1,0,0,0,56.97,42.63,-9,-9,10,2,3,0,1,0,8,1,1,347,64106.445,0,0,0,0,0,246.48947 +12780,15595,27817,-9,-9,27820,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.64038,-9,-9,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,53.39,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,4772,-180765.19,0,0,0,0,0,0 +12780,15596,27818,-9,27819,27820,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.2617,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,391,0,0,0,0,0,0,0 +12780,15597,27819,27820,27816,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0487995,7.9778166,0,4,-3,35.805161,0,3,-9,2021,12,0,30,30,1,0,0,10.896975,10.896975,0,0,0,0,0,0,0,7,1,1,0,0,0,40.7,47.27,35.56,52.74,8.333333333333334,2,3,0,0,11,8,3,1,560.5,1264556.5,1055223.8,203689.97,0,0,0,1228.1304 +12780,15597,27820,27819,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,4,3,27.954033,0,-9,-9,2021,12,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,52.74,40.7,47.27,8.333333333333334,2,3,1,0,10,8,3,1,560.5,1264556.5,1055223.8,203689.97,0,0,0,1228.1304 +12781,15598,27821,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.3784542,8.4145498,0,0,0,-969.62512,0,-9,-9,2021,6,0,50,51,1,0,0,9.3238525,9.3238525,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1282,-64015.738,0,0,0,0,0,2307.821 +12782,15599,27822,-9,27824,27823,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.38208,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12782,15599,27823,27824,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0335674,8.9133635,0,10,2,-60.476822,0,2,3,2021,16,5,44,47,1,5,0,21.869595,21.869595,0,0,0,0,0,0,0,0,1,1,0,0,0,33.08,60.14,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12782,15599,27824,27823,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,7.7735596,7.7688355,0,10,-2,-122.17474,0,2,2,2021,10,0,7,38,1,0,0,40.183193,40.183193,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.08,60.14,8.333333333333334,1,1,0,0,10,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12783,15600,27825,-9,27827,27826,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79382,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12783,15600,27826,27827,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.4333677,8.2633047,0,23,1,3.2963793,0,2,2,2021,8,0,36,35,1,0,0,15.013984,15.013984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12783,15600,27827,27826,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.3999329,8.4545288,0,22,-1,28.580265,0,2,2,2021,12,0,30,29,1,0,0,19.100403,19.100403,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.1,49.93,6.666666666666667,1,1,0,0,12,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12784,15601,27828,27831,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.7240257,8.4668522,0,1,-2,83.009148,-9,3,2,2021,12,2,38,0,1,2,0,17.021118,17.021118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.6,47.37,39.1,57.79,8.333333333333334,1,1,0,0,7,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27829,-9,27828,27831,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1098.9875,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27830,-9,27828,27831,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1029.6866,-9,1,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27831,27828,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,7.964889,7.814589,0,1,2,86.026329,-9,3,3,2021,9,1,55,0,1,1,0,4.6926713,4.6926713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.1,57.79,47.6,47.37,10,1,1,0,0,9,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27832,-9,27828,27831,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1336,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15602,27833,-9,27828,27831,1,1,20,0,3,0,2,2,-9,0,5,7.8904233,7.5072274,0,0,0,-835.65515,-9,1,2,2021,13,5,42,0,1,5,1,5.9506412,5.9506412,0,0,0,0,0,0,0,0,1,1,0,0,0,53.99,53.8,-9,-9,3.333333333333333,1,1,0,0,1,4,3,1,815,-215358.94,131655.45,0,0,0,0,735.01288 +12785,15603,27834,27835,27836,-9,1,0,38,0,0,0,2,2,-9,0,4,8.5711861,8.6574326,0,8,6,35.630211,0,3,2,2021,12,0,38,37,1,0,0,17.804209,17.804209,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,5,5,1,1111.5,630422.94,572688.63,104501.09,64721.992,0,0,3717.9331 +12785,15603,27835,27834,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3391371,8.379427,0,8,-6,112.61771,0,3,3,2021,7,0,38,38,1,0,0,14.814634,14.814634,.05,.05,0,0,0,0,0,0,1,1,0,2.603374,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,5,5,1,1111.5,630422.94,572688.63,104501.09,64721.992,0,0,3717.9331 +12785,15604,27836,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7120419,6.5705781,0,0,-1125.4065,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.341655,0,0,1,1,0,0,7.0505991,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,633,236656.36,214349.02,0,0,0,-410.80304,1615.6185 +12786,15605,27837,27839,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.2278743,7.1947293,0,9,1,50.618286,0,1,2,2021,14,2,22,24,1,2,0,7.9937673,7.9937673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,35.93,55.1,8.333333333333334,1,1,0,0,10,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27838,-9,27837,27839,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.2415,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27839,27837,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.6864729,8.6513157,0,9,-1,69.681175,0,2,2,2021,12,0,42,48,1,0,0,13.271603,13.271603,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.93,55.1,45.22,63.14,6.666666666666667,1,1,0,0,10,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27840,-9,27837,27839,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.9984,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27841,-9,27837,27839,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.4987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12787,15606,27842,-9,27843,27844,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.5132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27843,27844,-9,-9,1,0,25,1,3,0,2,2,-9,0,1,7.2499318,6.9567099,0,6,-1,-73.410324,0,-9,-9,2021,14,2,18,0,1,2,0,6.1339498,6.1339498,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46.42,54.2,57.49,6.666666666666667,1,1,0,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27844,27843,-9,-9,1,1,26,1,3,0,2,2,-9,0,4,7.8740468,7.2896857,0,6,1,-35.15892,0,-9,-9,2021,4,0,40,35,1,0,0,5.4673223,5.4673223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53,46.42,8.333333333333334,1,1,0,0,6,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27845,-9,27843,27844,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27846,-9,27843,27844,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.748,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12788,15607,27847,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.726922,8.8343935,0,0,0,-945.57648,0,-9,-9,2021,16,4,50,45,1,4,0,16.637796,16.637796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.03,63.01,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,569,-103121.38,47988.516,0,0,0,0,2703.6672 +12789,15608,27848,27849,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,7,3,50.512783,0,3,3,2021,33,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5397277,0,43.75,13,62.42,32.41,1.666666666666667,1,1,0,0,2,4,2,1,449.5,306749.44,3932.3931,129013.37,0,1859.7202,0,1577.0129 +12789,15608,27849,27848,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.7353168,4.989584,7,-3,-24.960815,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.8633561,62.42,32.41,43.75,13,5,1,1,0,0,5,4,2,1,449.5,306749.44,3932.3931,129013.37,0,1859.7202,0,1577.0129 +12790,15609,27850,27851,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4933796,8.3171768,0,1,2,175.14133,-9,-9,-9,2021,7,0,48,0,1,0,0,13.826261,13.826261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,38.34,62.12,8.333333333333334,1,1,0,0,1,5,5,0,710,93685.5,6629.0508,184670.41,130150.73,0,72.60321,3152.8901 +12790,15609,27851,27850,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.1572056,8.2555428,0,1,-2,109.59957,0,-9,-9,2021,13,1,40,37,1,1,0,6.5384955,6.5384955,0,0,0,0,0,0,0,0,0,0,0,.35901812,0,38.34,62.12,52.23,55.6,6.666666666666667,2,3,0,0,6,5,5,0,710,93685.5,6629.0508,184670.41,130150.73,0,72.60321,3152.8901 +12791,15610,27852,27853,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,8.3649454,8.3465567,6,4,-38.130646,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5869665,0,14.5,1,1,0,5.7465796,8.7140093,33.18,38.12,48.53,58.91,6.666666666666667,1,1,0,0,6,12,4,1,715.5,2083432.4,698281.5,177771,0,0,0,3318.1003 +12791,15610,27853,27852,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,6,-4,-80.744133,0,3,3,2021,12,2,0,5,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.3658352,0,48.53,58.91,33.18,38.12,6.666666666666667,1,1,0,0,7,12,4,1,715.5,2083432.4,698281.5,177771,0,0,0,3318.1003 +12792,15611,27854,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9394689,7.8964987,5.087605,0,0,-937.26691,0,2,1,2021,14,4,39,43,1,4,0,9.0629168,9.0629168,0,0,0,0,0,0,0,0,1,1,0,4.4977393,0,43.97,53.97,-9,-9,5,3,4,0,1,8,7,3,0,512.5,-76448,0,0,0,0,0,1404.6458 +12792,15611,27855,-9,27854,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.96875,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,512.5,-76448,0,0,0,0,0,1404.6458 +12793,15612,27856,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,1.4129809,1.0036565,0,0,0,-1084.0829,-9,3,3,2021,0,0,37,0,1,0,0,.0063829627,.0063829627,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,543,-78818.859,127747.16,0,0,9129.918,2389.2661,190.80736 +12794,15613,27857,27858,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2442303,8.4167233,0,35,3,-27.626802,0,3,3,2021,10,0,40,40,1,0,0,11.119072,11.119072,0,0,0,0,0,0,0,2,0,0,0,1.0855823,0,41.82,57.72,62.03,36.18,5,1,1,0,0,11,9,4,1,276,1675637.3,676466.06,646177.81,0,0,0,2620.0508 +12794,15613,27858,27857,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0145378,7.0603266,0,35,-3,38.523582,0,2,1,2021,9,0,23,23,1,0,0,5.5563169,5.5563169,0,0,0,0,0,0,0,0,0,0,0,.46406591,0,62.03,36.18,41.82,57.72,8.333333333333334,1,1,0,0,11,9,4,1,276,1675637.3,676466.06,646177.81,0,0,0,2620.0508 +12794,15614,27859,-9,27858,27857,1,0,28,0,0,0,1,1,-9,0,4,7.9434257,7.7811394,0,0,0,-911.0896,0,2,2,2021,13,2,39,39,1,2,1,7.1659741,7.1659741,.05,.05,0,0,0,0,0,0,0,0,0,1.0172065,0,33.61,61.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,888,-32170.32,0,0,0,0,0,1157.1083 +12795,15615,27860,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.2362423,8.3972979,0,0,0,-973.20874,-9,-9,-9,2021,4,0,50,0,1,0,0,8.0140753,8.0140753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,312,-73683.047,-23162.109,0,0,0,0,1993.6664 +12796,15616,27861,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.518836,8.4105091,0,0,0,-889.68579,0,2,2,2021,11,1,55,45,1,1,0,11.409593,11.409593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,5,1,1,0,0,9,8,5,0,464,27218.223,138210.44,88479.398,90518.633,0,0,2476.647 +12797,15617,27862,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.0936565,8.1428013,0,0,0,-994.08118,0,-9,-9,2021,36,12,36,72,1,12,0,14.196028,14.196028,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.24,59.17,-9,-9,3.333333333333333,1,1,0,0,8,6,4,0,179,34485.137,44766.586,0,0,3765.0876,0,1301.8503 +12798,15618,27863,-9,27864,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.72046,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,412.5,16707.273,-5669.1694,0,0,0,4639.7354,1795.1208 +12798,15618,27864,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.918838,7.8295794,0,0,0,-961.73401,0,2,2,2021,6,0,32,30,1,0,0,10.03167,10.03167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,412.5,16707.273,-5669.1694,0,0,0,4639.7354,1795.1208 +12799,15619,27865,27866,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,8.0937529,8.0924892,42,-1,128.18362,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4501448,7.8345981,44.94,49.91,53.62,46.84,8.333333333333334,1,1,0,0,0,10,3,1,1031,-25595.803,0,0,0,0,0,2433.8655 +12799,15619,27866,27865,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,42,1,-4.9949169,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8732219,0,53.62,46.84,44.94,49.91,8.333333333333334,1,1,0,0,0,10,3,1,1031,-25595.803,0,0,0,0,0,2433.8655 +12800,15620,27867,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,1,0,5.1049328,5.3660779,0,0,-965.68268,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,16.206511,0,126.20284,0,1,1,0,2.6639321,5.3999372,34.12,19.99,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,678,158376.19,0,0,0,0,0,1508.9736 +12801,15621,27868,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.8961158,7.5850339,0,0,0,-840.349,0,-9,-9,2021,5,0,20,18,1,0,0,16.150488,16.150488,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.8,50.32,-9,-9,10,1,1,0,0,2,5,3,0,592,-57623.852,-31929.227,0,0,4127.6909,0,2493.3645 +12801,15621,27869,-9,27868,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.11041,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,592,-57623.852,-31929.227,0,0,4127.6909,0,2493.3645 +12802,15622,27870,-9,27872,27871,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.32727,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12802,15622,27871,27872,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.2254219,8.7866488,0,5,2,32.426853,0,-9,-9,2021,8,0,63,60,1,0,0,11.088482,11.088482,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.06,57.76,6.666666666666667,1,1,0,0,5,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12802,15622,27872,27871,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,8.2249517,7.7273598,0,5,-2,-7.14012,0,2,2,2021,4,0,40,40,1,0,0,7.046598,7.046598,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.47,59.4,10,1,1,0,0,9,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12803,15623,27873,27875,-9,-9,1,1,46,1,2,0,2,2,-9,0,2,7.1951213,7.0210252,0,20,5,135.20734,0,3,3,2021,11,0,30,24,1,0,0,5.0318418,5.0318418,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49,55,6.666666666666667,2,3,0,0,6,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27874,-9,27875,27873,1,1,16,1,2,1,2,0,-9,0,5,0,0,0,0,0,-1128.1375,-9,2,2,2021,3,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.41,53.98,-9,-9,10,2,3,0,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27875,27873,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,0,0,0,20,-5,-20.017309,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.57,49.69,8,2,3,0,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27876,-9,27875,27873,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.38763,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12804,15624,27877,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,7.8562846,7.3741231,0,0,0,-1048.8539,0,2,3,2021,24,8,22,16,1,8,0,11.804354,11.804354,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.25,41.73,-9,-9,1.666666666666667,3,4,0,0,11,8,3,1,940.5,704205.63,13378.629,417984.19,0,0,0,1774.1953 +12804,15624,27878,-9,27877,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.16199,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,1,940.5,704205.63,13378.629,417984.19,0,0,0,1774.1953 +12804,15625,27879,-9,27877,-9,1,0,19,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1054.9418,0,1,-9,2021,24,10,0,7,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.77,44.4,-9,-9,3.333333333333333,3,4,1,1,0,8,2,1,375,77559.016,0,0,0,0,0,-418.03775 +12804,15626,27880,-9,27877,-9,1,0,18,0,1,1,2,0,0,0,1,0,0,0,0,0,-916.29333,-9,1,-9,2021,35,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,5.14,57.84,-9,-9,0,3,4,0,1,0,8,1,1,538,13722.831,0,0,0,0,0,0 +12805,15627,27881,27882,-9,-9,1,1,28,1,3,0,3,3,-9,0,3,0,0,0,2,4,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,51.01,39.06,46.75,10,3,4,1,0,3,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27882,27881,-9,-9,1,0,24,1,3,0,2,2,-9,0,3,0,0,0,2,-4,0,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,46.75,55.09,51.01,10,1,1,0,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27883,-9,27882,27881,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-934.47479,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27884,-9,27882,27881,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.7302,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27885,-9,27882,27881,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.0293,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12806,15628,27886,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.8744717,6.6443315,0,0,-1051.1797,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9599991,47.09,58.02,-9,-9,0,1,1,0,0,0,2,2,1,266,262160.38,-1976.5118,35447.867,0,0,0,1176.7286 +12807,15629,27887,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1103.5613,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.34,33.08,-9,-9,8.333333333333334,1,1,0,0,10,8,1,0,1503,-145143.25,0,0,0,0,0,1698.7301 +12808,15630,27888,-9,27889,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1022.577,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,1,0,706.5,0,0,0,0,0,0,691.27008 +12808,15630,27889,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,4,0,0,0,0,0,-932.04218,0,3,-9,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.63,36.9,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,706.5,0,0,0,0,0,0,691.27008 +12809,15631,27890,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.8509817,7.8427029,0,0,0,-958.31628,0,3,3,2021,11,0,35,11,1,0,0,6.6154761,6.6154761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.21,53.24,-9,-9,6.666666666666667,4,5,0,0,13,11,3,0,2536,251058.11,20845.316,61425.77,29714.039,0,0,976.25549 +12810,15632,27891,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.3068137,7.015666,0,0,0,-974.21051,0,-9,-9,2021,25,12,50,36,1,12,0,3.4463079,3.4463079,0,0,0,0,0,0,0,0,0,0,0,0,0,24.63,60.41,-9,-9,3.333333333333333,1,1,0,0,7,8,2,0,612,0,0,0,0,0,0,893.02417 +12810,15632,27892,-9,27891,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.3313,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,2,0,612,0,0,0,0,0,0,893.02417 +12811,15633,27893,-9,27896,27895,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13806,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27894,-9,27896,27895,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.94971,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27895,27896,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.9357157,8.9536886,0,11,3,4.7783699,0,2,1,2021,9,0,43,50,1,0,0,22.600428,22.600428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,23.22,62.43,8.333333333333334,1,1,0,0,14,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27896,27895,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.6388254,7.5997996,0,11,-3,10.534587,0,-9,-9,2021,23,10,42,20,1,10,0,6.9523396,6.9523396,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.22,62.43,51.83,57.2,8.333333333333334,1,1,0,0,13,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12812,15634,27897,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.5200324,7.6635752,0,0,-864.52417,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7679605,7.1252484,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3833,209982.89,57878.309,0,0,0,2094.3354,682.90173 +12813,15635,27898,-9,-9,27899,1,1,41,0,0,0,1,1,-9,0,3,8.3303537,8.1935101,0,0,0,-941.96082,0,2,2,2021,13,1,74,0,1,1,0,5.0240521,5.0240521,.05,.05,0,0,0,0,0,52,1,0,1,0,0,38.16,44.66,-9,-9,5,2,3,0,0,1,9,4,1,1734,-6829.0503,74637.992,0,0,0,0,1489.9896 +12813,15636,27899,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-993.64282,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.04,25.52,-9,-9,5,2,3,0,0,0,9,1,1,259,-4389.8262,0,0,0,0,0,266.40439 +12814,15637,27900,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1026.8712,0,2,2,2021,26,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.62,24.46,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,532,82438.227,0,0,0,1332.0657,2772.272,-16.973574 +12815,15638,27901,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,3.6815002,3.4604182,0,0,-997.88733,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7196417,3.4478161,41.27,48.92,-9,-9,0,1,1,0,1,7,6,2,1,947,381005.53,65343.102,226520.03,0,0,0,502.16275 +12816,15639,27902,27903,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.3,35.07,63.8,33.11,8.333333333333334,1,1,0,0,0,7,1,1,840.5,1085007.3,0,1034840.1,0,0,0,1093.2347 +12816,15639,27903,27902,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,48,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3204045,0,63.8,33.11,53.3,35.07,8.333333333333334,1,1,0,0,0,7,1,1,840.5,1085007.3,0,1034840.1,0,0,0,1093.2347 +12817,15640,27904,27905,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,8.255374,8.7622776,0,5,0,10.204329,0,-9,-9,2021,14,0,38,37,1,3,0,13.760348,13.760348,0,0,0,0,0,0,0,0,1,1,0,0,0,52.87,38.87,46.95,53.05,6.666666666666667,2,3,0,0,14,8,5,1,294,99608.484,36490.563,355499.38,179734.61,0,0,4104.8184 +12817,15640,27905,27904,-9,27906,1,1,28,0,1,0,1,1,-9,0,5,8.4813757,8.7589207,0,5,0,69.928963,0,3,3,2021,9,0,37,43,1,1,0,19.488096,19.488096,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,53.05,52.87,38.87,0,2,3,0,0,6,8,5,1,294,99608.484,36490.563,355499.38,179734.61,0,0,4104.8184 +12817,15641,27906,-9,-9,-9,1,1,72,0,1,0,2,2,-9,0,3,0,5.2211118,5.1723905,0,0,-980.24323,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,3.1631067,0,0,1,1,0,0,4.9434142,41.01,55.32,-9,-9,10,2,3,0,0,0,8,2,1,1060,168692.61,0,0,0,0,0,698.383 +12817,15642,27907,-9,-9,27906,1,0,30,0,1,0,2,2,-9,0,4,8.1468906,8.2657909,0,0,0,-1055.2654,0,3,3,2021,9,0,30,30,1,0,0,14.487773,14.487773,0,0,0,0,0,0,0,0,1,1,0,0,0,54.29,50.83,-9,-9,1.666666666666667,2,3,0,0,11,8,4,1,623.5,10368.68,0,0,0,0,0,1302.6279 +12817,15642,27908,-9,27907,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.28461,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,4,1,623.5,10368.68,0,0,0,0,0,1302.6279 +12817,15643,27909,27910,-9,27906,1,1,26,0,1,0,2,2,-9,0,3,7.9302931,8.1160603,0,4,1,111.55947,0,3,3,2021,12,0,40,40,1,0,0,9.0943975,9.0943975,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.76,59.08,50.03,52.62,6.666666666666667,2,3,0,0,9,8,4,1,1171.5,-100632.23,63451.781,0,0,7481.6553,638.14563,3777.3398 +12817,15643,27910,27909,-9,-9,1,0,25,0,1,0,1,1,-9,0,3,8.3358755,8.5916357,0,4,-1,85.06739,0,-9,-9,2021,12,0,15,53,1,0,0,27.498783,27.498783,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,41.76,59.08,6.666666666666667,2,3,0,0,14,8,4,1,1171.5,-100632.23,63451.781,0,0,7481.6553,638.14563,3777.3398 +12818,15644,27911,27912,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3671112,8.5338411,0,4,1,-18.263138,0,-9,-9,2021,5,0,38,38,1,0,0,13.412506,13.412506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.75,49.4,54.79,55.86,10,1,1,0,0,11,13,5,0,285,149937.75,179738.64,160131.69,51748.563,5892.2598,0,3714.4375 +12818,15644,27912,27911,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4628658,8.5874376,0,4,-1,-153.86302,0,3,2,2021,7,0,40,40,1,0,0,14.192668,14.192668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,56.75,49.4,8.333333333333334,1,1,0,0,11,13,5,0,285,149937.75,179738.64,160131.69,51748.563,5892.2598,0,3714.4375 +12819,15645,27913,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,7.468822,7.3165965,0,11,0,145.76744,0,2,3,2021,13,2,45,45,1,2,0,5.2059102,5.2059102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.36,36.72,46.98,59.35,8.333333333333334,1,1,0,0,14,4,5,1,465,-124825.59,135664.42,0,0,0,0,1410.865 +12820,15646,27914,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,0,8.2620449,8.136838,0,0,-1016.4026,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6475282,8.0683165,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,2048,158943.88,52371.449,0,0,0,0,1135.856 +12820,15647,27915,-9,-9,27914,1,1,18,0,0,0,2,2,0,0,5,0,0,0,0,0,-1159.0315,-9,-9,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,569,80522.922,0,0,0,0,0,87.956192 +12821,15648,27916,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.5042,0,2,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.1,34.14,-9,-9,5,1,1,1,0,9,12,1,0,914,143945.31,0,0,0,0,0,950.17719 +12822,15649,27917,27920,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,0,0,0,12,7,42.848522,0,2,2,2021,13,1,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.42,48.12,48.87,58.55,6.666666666666667,1,1,1,0,12,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27918,-9,27920,27917,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.63263,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27919,-9,27920,27917,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.7948,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27920,27917,-9,-9,1,0,41,0,2,0,1,1,1,0,4,8.1321058,8.0146217,0,12,-7,-113.36758,-9,1,1,2021,10,0,18,0,1,0,0,17.36026,17.36026,0,0,0,0,0,0,0,0,0,0,0,1.8208503,0,48.87,58.55,51.42,48.12,6.666666666666667,1,1,0,0,11,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12823,15650,27921,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7414842,7.7991819,0,0,0,-916.45471,0,3,2,2021,9,0,34,34,1,0,0,7.1555667,7.1555667,.05,.05,0,0,0,0,0,0,1,1,0,1.8827881,0,41.7,60.44,-9,-9,1.666666666666667,1,1,0,0,9,6,4,1,624,67502.75,183901.06,59752.148,72482.789,0,0,954.12451 +12824,15651,27922,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-971.08386,0,3,2,2021,12,0,0,56,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,43.84,-9,-9,3.333333333333333,1,1,1,0,3,8,1,0,715,-26959.24,0,0,0,0,0,844.43109 +12825,15652,27923,27924,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9259834,8.8613119,7.5665836,17,2,31.086647,0,3,2,2021,8,0,38,38,1,0,0,24.872038,24.872038,.05,.05,0,0,0,0,0,0,0,0,0,4.0204468,7.6690392,54.2,57.49,45.42,40.27,10,1,1,0,0,12,2,5,1,343.5,6318464,234851.97,1131350.1,0,0,0,4953.0537 +12825,15652,27924,27923,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.7353125,8.6407461,0,17,-2,-18.984907,0,2,-9,2021,11,0,40,39,1,0,0,18.282518,18.282518,0,0,0,0,0,0,0,0,0,0,0,0,0,45.42,40.27,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,343.5,6318464,234851.97,1131350.1,0,0,0,4953.0537 +12826,15653,27925,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,7.3966708,7.6224689,5.0006595,0,0,-936.53516,0,-9,-9,2021,8,1,25,20,1,1,0,8.9444017,8.9444017,0,0,0,0,0,0,0,0,1,1,0,4.5650206,5.3565483,57.34,45.06,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,645,378818.47,163934.44,191480.11,0,0,0,1736.0076 +12827,15654,27926,27928,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,8.0620975,8.1085081,0,6,-6,31.115068,0,2,2,2021,13,4,40,32,1,4,0,8.3707018,8.3707018,0,0,0,0,0,0,0,0,1,1,0,.51703674,0,53.73,38.44,38.5,56.93,10,1,1,0,0,6,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15654,27927,-9,27926,27928,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0136,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15654,27928,27926,-9,-9,1,1,49,0,1,0,3,3,-9,0,2,8.4005957,8.4535046,0,6,6,77.741821,0,-9,3,2021,13,2,48,54,1,2,0,9.803689,9.803689,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.5,56.93,53.73,38.44,5,1,1,0,0,7,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15655,27929,-9,27926,27928,1,0,18,0,1,0,2,2,-9,0,2,7.9055753,8.0140896,0,0,0,-1068.3918,0,3,3,2021,19,7,37,0,1,7,1,7.5825629,7.5825629,0,0,0,0,0,0,0,0,1,1,0,.53947288,0,36.95,48.22,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,2093,14074.139,7243.8452,0,0,0,0,767.24408 +12828,15656,27930,-9,-9,-9,1,1,81,0,3,0,3,3,-9,0,3,0,0,0,0,0,-882.4632,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8930349,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,644,131370.81,0,0,0,0,0,1292.9718 +12828,15657,27931,27934,-9,-9,1,0,43,0,3,0,3,3,-9,0,3,7.7399549,7.7002201,0,16,-5,-55.013622,0,3,3,2021,6,0,27,32,1,0,0,11.028101,11.028101,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,55.77,55.6,10,1,1,0,0,8,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27932,-9,27931,27934,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.7087,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27933,-9,27931,27934,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-954.88824,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27934,27931,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,7.7734447,7.6460042,0,16,5,114.2439,0,3,3,2021,9,0,40,40,1,0,0,6.1433091,6.1433091,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.77,55.6,60.29,52.11,8.333333333333334,1,1,0,0,10,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27935,-9,27931,27934,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.3297,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12829,15658,27936,27937,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,0,0,0,7,0,-66.629387,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,0,0,19.18,61.69,45.33,44.04,5,1,1,0,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27937,27936,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.7488174,8.9216566,0,7,0,-160.58972,0,3,2,2021,17,5,40,43,1,5,0,21.189825,21.189825,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,45.33,44.04,19.18,61.69,8.333333333333334,1,1,0,0,8,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27938,-9,27936,27937,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.57538,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27939,-9,27936,27937,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.18958,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15659,27940,-9,27936,27937,1,1,19,0,2,0,2,2,0,0,4,0,0,0,0,0,-862.5155,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,0,956,79828.922,0,0,0,0,0,0 +12830,15660,27941,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1199.7616,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.5990448,0,0,1,1,0,0,0,29.61,21.77,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,448,22493.414,0,40041.102,0,3.2394831,0,785.70367 +12831,15661,27942,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-931.28839,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20.48,46.47,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,474,92327.633,0,0,0,0,0,293.70688 +12831,15662,27943,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1018.7445,0,-9,-9,2021,23,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.03,58.21,-9,-9,3.333333333333333,1,1,1,0,4,13,1,0,1061,172341.78,24098.15,135922.06,91557.391,0,3701.4849,572.14819 +12832,15663,27944,27945,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3175411,8.0144815,0,7,2,-84.731293,0,-9,-9,2021,13,1,45,45,1,1,0,12.617382,12.617382,0,0,0,0,0,0,0,0,0,0,0,6.2573495,0,57.09,43.99,18.6,59.26,6.666666666666667,1,1,0,0,13,9,5,1,806,450708.13,190142.81,217244.17,0,0,0,3033.8115 +12832,15663,27945,27944,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1688871,8.2494726,0,7,-2,-107.32204,0,2,2,2021,19,8,76,76,1,8,0,5.0645895,5.0645895,0,0,0,0,0,0,0,0,0,0,0,0,0,18.6,59.26,57.09,43.99,3.333333333333333,1,1,0,1,13,9,5,1,806,450708.13,190142.81,217244.17,0,0,0,3033.8115 +12833,15664,27946,27947,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.7420168,4.5310373,2,9,232.94165,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.2663689,4.8974323,55.32,36.78,51,46,8.333333333333334,1,1,0,0,0,12,2,1,216,71508.563,0,55800.953,0,0,0,1754.7939 +12833,15664,27947,27946,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,2,0,94.920921,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,21.43,0,0,1,1,0,7.319541,0,51,46,55.32,36.78,7,1,1,0,0,0,12,2,1,216,71508.563,0,55800.953,0,0,0,1754.7939 +12833,15665,27948,-9,27947,27946,1,1,46,0,0,0,2,2,-9,0,4,8.3795996,8.6933184,0,0,0,-962.33685,0,2,3,2021,6,0,37,37,1,0,0,13.567157,13.567157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,873,401427.78,195575.67,202768.58,103657.23,0,0,1247.7632 +12834,15666,27949,27950,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-1,13.231153,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,58.9,45.74,52.36,17.31,8.333333333333334,1,1,0,0,7,11,2,1,1053.5,15319.051,27533.338,108014.42,54584.953,0,0,936.68201 +12834,15666,27950,27949,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.4728408,6.6959481,51,1,9.7992096,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7091641,52.36,17.31,58.9,45.74,6.666666666666667,1,1,0,0,0,11,2,1,1053.5,15319.051,27533.338,108014.42,54584.953,0,0,936.68201 +12835,15667,27951,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4077082,8.3621054,0,0,0,-978.89209,0,3,2,2021,13,2,40,40,1,2,0,12.089084,12.089084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.47,38.04,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,405,-165827.92,121439.3,176176.64,323901.34,1766.1884,0,1813.1885 +12836,15668,27952,27953,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.4101219,7.7176785,10,6,-39.259212,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0031452,7.3060193,35.11,34.11,54.64,13.18,8.333333333333334,1,1,0,0,1,11,3,1,1572,872632,452861.13,156411.84,0,0,0,3213.1877 +12836,15668,27953,27952,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.3775425,7.4097309,10,-6,31.892714,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4458001,0,0,1,1,0,2.7212069,7.5532613,54.64,13.18,35.11,34.11,8.333333333333334,1,1,0,0,3,11,3,1,1572,872632,452861.13,156411.84,0,0,0,3213.1877 +12837,15669,27954,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-972.72369,0,-9,-9,2021,19,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.99,48.07,-9,-9,0,4,2,1,1,0,9,1,0,217,-6092.5615,0,0,0,0,0,632.81226 +12838,15670,27955,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1018.1455,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.96,18,-9,-9,1.666666666666667,1,1,0,0,1,2,1,1,514,-58354.098,0,0,0,0,0,557.14545 +12839,15671,27956,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1029.0698,-9,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.19465385,0,36.81,35.7,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,464,-35169.676,0,0,0,0,0,1674.3243 +12840,15672,27957,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.221797,7.7875862,0,0,-1037.5499,0,2,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6859784,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,67,1639952,433039.5,881475.38,0,0,0,1562.911 +12841,15673,27958,27959,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.7974997,8.1309805,50,1,-64.508224,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7736015,8.1603489,56.75,49.4,57.73,54.53,8.333333333333334,1,1,0,0,0,2,4,1,797.5,1595644.8,1085644.3,382848.78,0,0,0,3793.9941 +12841,15673,27959,27958,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.8747683,7.9532619,50,-1,145.20323,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3531427,7.8414154,57.73,54.53,56.75,49.4,8.333333333333334,1,1,0,0,3,2,4,1,797.5,1595644.8,1085644.3,382848.78,0,0,0,3793.9941 +12842,15674,27960,27961,-9,-9,1,1,72,0,1,0,2,2,-9,0,2,0,7.9628749,7.6716294,12,5,8.7812138,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2990057,7.5165758,43.51,44.58,46.61,56.93,8.333333333333334,1,1,0,0,4,11,2,1,599.5,1127924.5,299545.41,321744.69,0,0,0,1579.178 +12842,15674,27961,27960,-9,-9,1,0,67,0,1,0,2,2,-9,0,3,0,5.0314918,4.7448845,1,-5,87.104836,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1871538,4.8310866,46.61,56.93,43.51,44.58,6.666666666666667,1,1,0,0,0,11,2,1,599.5,1127924.5,299545.41,321744.69,0,0,0,1579.178 +12842,15675,27962,-9,27961,27960,1,1,44,0,1,0,3,3,-9,0,3,7.8856058,8.0830898,0,0,0,-1042.6322,0,2,1,2021,8,0,40,37,1,0,0,5.9810171,5.9810171,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,12,11,3,1,392.5,67182.898,91239.563,0,0,-2236.01,3354.9795,937.37195 +12842,15675,27963,-9,-9,27962,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-915.96228,-9,-9,3,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,392.5,67182.898,91239.563,0,0,-2236.01,3354.9795,937.37195 +12843,15676,27964,27966,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,7.9420862,8.0421944,0,9,0,70.135406,0,2,2,2021,12,0,30,61,1,0,0,9.7252302,9.7252302,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.61,56.93,54.37,54.8,6.666666666666667,1,1,0,0,10,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27965,-9,27964,27966,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.5327,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27966,27964,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,7.6919475,7.3079729,0,9,0,8.594635,0,1,2,2021,6,0,40,40,1,0,0,4.6807365,4.6807365,.05,.05,0,0,0,0,0,0,1,1,0,5.6722388,0,54.37,54.8,46.61,56.93,8.333333333333334,1,1,0,0,10,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27967,-9,27964,27966,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.38562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27968,-9,27964,27966,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-941.57166,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12844,15677,27969,27970,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.9791465,6.9612274,0,10,19,51.8288,0,2,2,2021,21,9,10,40,1,9,0,15.019991,15.019991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.64,55.04,32.08,58.42,3.333333333333333,1,1,0,0,9,1,4,1,320,217612.36,139413.19,164620.5,0,0,0,2392.6785 +12844,15677,27970,27969,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.6536655,8.817997,0,10,-19,12.211066,0,2,2,2021,25,12,42,44,1,12,0,14.468184,14.468184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.08,58.42,44.64,55.04,1.666666666666667,1,1,0,0,12,1,4,1,320,217612.36,139413.19,164620.5,0,0,0,2392.6785 +12845,15678,27971,27972,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.1808414,5.9051976,62,-3,-85.717247,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0735292,6.0299125,59.14,52.5,59.63,41.44,10,1,1,0,0,0,7,3,1,955.5,392244.94,223703.63,0,0,0,0,2147.4448 +12845,15678,27972,27971,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.3443513,7.6980715,62,3,-12.86902,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.457298,7.2117786,59.63,41.44,59.14,52.5,8.333333333333334,1,1,0,0,0,7,3,1,955.5,392244.94,223703.63,0,0,0,0,2147.4448 +12846,15679,27973,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.6487246,7.4793096,0,0,0,-996.71918,0,2,-9,2021,20,8,28,25,1,8,0,8.0076694,8.0076694,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,38.4,-9,-9,1.666666666666667,1,1,0,0,10,6,3,0,3030,61064.109,43388.777,0,0,-1109.3845,0,898.88647 +12847,15680,27974,27975,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,38,0,0,0,3,3,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.26,10.99,26.65,24.7,6.666666666666667,1,1,0,0,0,13,1,0,914,-161326.91,0,0,0,0,0,2133.6963 +12847,15680,27975,27974,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,34,0,0,0,3,2,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,26.65,24.7,62.26,10.99,1.666666666666667,1,1,0,0,0,13,1,0,914,-161326.91,0,0,0,0,0,2133.6963 +12848,15681,27976,27977,-9,-9,1,1,97,0,0,0,3,3,-9,0,3,0,6.8010077,7.1603928,17,21,74.384003,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.826376,74.988945,22.696289,0,1,1,0,0,7.2659364,57,43,39.15,41.42,8,1,1,0,0,0,10,2,1,1044.5,513269.13,58585.828,620653.75,0,0,0,2183.1636 +12848,15681,27977,27976,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,17,-21,-43.414646,0,3,-9,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8221231,0,39.15,41.42,57,43,5,1,1,0,0,0,10,2,1,1044.5,513269.13,58585.828,620653.75,0,0,0,2183.1636 +12849,15682,27978,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9426408,7.7102199,0,0,0,-1000.0121,0,2,2,2021,15,5,33,31,1,5,0,7.9557123,7.9557123,.05,.05,0,0,0,0,0,7,1,1,0,2.2753901,0,25.61,62.71,-9,-9,5,1,1,0,1,12,12,3,1,336,142837.48,161428.7,0,0,0,1373.4834,1136.7399 +12850,15683,27979,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,8.3658123,8.6464186,6.9802189,0,0,-1118.0043,0,3,3,2021,12,1,37,37,1,1,0,12.521136,12.521136,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9647498,47.39,56.64,-9,-9,6.666666666666667,1,1,0,0,13,7,5,1,173,1507499,1212271.4,359853.34,14015.209,5904.3276,1502.6389,3060.6138 +12851,15684,27980,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.1369762,8.1642809,0,0,0,-984.47137,0,3,3,2021,4,0,32,35,1,0,0,11.632882,11.632882,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.56,59.44,-9,-9,8.333333333333334,2,3,0,0,7,8,3,0,2035.5,-34944.016,-45797.969,0,0,5128.4043,0,2003.8658 +12851,15684,27981,-9,27980,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.5213,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,2035.5,-34944.016,-45797.969,0,0,5128.4043,0,2003.8658 +12852,15685,27982,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.0289717,7.3887296,0,0,0,-939.30383,-9,-9,-9,2021,14,0,9,0,1,3,0,18.598385,18.598385,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,5,1,1,0,0,6,12,3,0,560,-41534.801,0,0,0,1708.5057,0,687.59802 +12853,15686,27983,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-981.58673,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,55.3,-9,-9,5,2,3,1,1,0,7,1,1,493,100972.93,0,0,0,0,0,0 +12854,15687,27984,-9,-9,-9,1,0,52,0,2,0,3,3,-9,1,2,0,5.7243233,6.034822,0,0,-946.37274,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0123034,0,31.6,39.8,-9,-9,5,1,1,0,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12854,15687,27985,-9,27984,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-850.54718,-9,3,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12854,15687,27986,-9,27984,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1076.8865,-9,3,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.05,57,-9,-9,5,1,1,0,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12855,15688,27987,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.0669975,8.2598019,0,0,0,-1064.1354,0,2,2,2021,12,2,38,32,1,2,0,14.617198,14.617198,.05,.05,0,0,0,0,0,0,0,0,0,1.6520607,0,47.85,39.2,-9,-9,6.666666666666667,1,1,0,0,13,10,4,0,2017,491264,86395.438,195690.98,64469.516,0,6050.6772,1829.9139 +12856,15689,27988,27989,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,9.7995434,9.4068689,0,26,7,40.308266,0,2,2,2021,4,0,50,45,1,0,0,40.133472,40.133472,.05,.05,0,0,0,0,0,2,0,0,0,4.4684067,0,55.68,54.24,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,401.5,1142902,893348,394619,52972.242,7028.5244,0,9493.7168 +12856,15689,27989,27988,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,9.0654325,8.6608343,0,26,-7,24.831911,0,2,2,2021,6,0,42,47,1,0,0,20.643736,20.643736,0,0,0,0,0,0,0,2,0,0,0,2.4426484,0,57.06,57.76,55.68,54.24,8.333333333333334,1,1,0,0,9,8,5,1,401.5,1142902,893348,394619,52972.242,7028.5244,0,9493.7168 +12857,15690,27990,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-955.81128,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.58,35.92,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,4724,-198611.34,0,0,0,0,0,1605.5712 +12858,15691,27991,27992,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,33,-2,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.78,11.17,48.79,53.17,1.666666666666667,2,3,0,1,0,1,1,1,852.5,0,0,0,0,0,0,1496.8699 +12858,15691,27992,27991,-9,-9,1,1,55,0,0,0,2,2,-9,1,3,0,0,0,33,2,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,48.79,53.17,56.78,11.17,6.666666666666667,2,3,0,0,0,1,1,1,852.5,0,0,0,0,0,0,1496.8699 +12858,15692,27993,-9,27991,27992,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-921.34601,-9,3,2,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,8.0204115,0,46.53,33.44,-9,-9,5,2,3,0,0,0,1,1,1,1290,143316.17,0,0,0,0,0,1407.5927 +12859,15693,27994,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9211154,6.6663747,0,0,-1038.6074,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9365263,6.4647174,56.58,45.49,-9,-9,1.666666666666667,1,1,0,0,9,6,2,1,661,250803.94,129642.35,135143.09,0,0,1576.2344,1192.5485 +12860,15694,27995,27996,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.7929411,9.07693,5.8985295,5,0,97.105209,0,1,1,2021,14,2,46,41,1,2,0,16.820799,16.820799,0,0,0,0,0,0,0,0,0,0,0,6.076941,6.5782204,51.17,30.62,54.2,36.06,3.333333333333333,1,1,0,0,7,9,5,1,3626,294331.5,32358.07,431958.25,69811.547,0,0,3284.9033 +12860,15694,27996,27995,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.0419874,8.0486288,0,5,0,-20.582434,0,-9,-9,2021,10,0,40,40,1,0,0,8.7349014,8.7349014,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,36.06,51.17,30.62,3.333333333333333,1,1,0,0,4,9,5,1,3626,294331.5,32358.07,431958.25,69811.547,0,0,3284.9033 +12861,15695,27997,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.5313721,7.6206074,0,0,0,-1067.0298,0,3,3,2021,16,4,26,26,1,4,0,8.8035173,8.8035173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.79,55.33,-9,-9,5,1,1,0,0,14,12,2,0,1043,307684.5,-16780.305,211219.52,0,0,1853.7291,1282.7421 +12862,15696,27998,27999,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,0,0,31,0,21.106956,0,1,1,2021,11,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8660322,0,50.79,48.24,54.69,57.47,10,1,1,0,0,1,5,5,1,785,2924069.5,2689579,317063.81,109890.85,0,0,2209.1025 +12862,15696,27999,27998,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.1657066,9.2058477,0,33,0,44.325794,0,1,2,2021,8,0,40,41,1,0,0,22.225407,22.225407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,50.79,48.24,10,1,1,0,0,15,5,5,1,785,2924069.5,2689579,317063.81,109890.85,0,0,2209.1025 +12863,15697,28000,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.2562408,7.8718605,0,0,-1106.7621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9959207,48.87,58.55,-9,-9,5,1,1,0,0,4,11,3,1,564,829747.88,333318.31,0,0,0,0,1177.1349 +12864,15698,28001,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,7.9674788,7.9816418,4.991735,0,0,-1094.9246,0,2,2,2021,13,2,20,30,1,2,0,15.945109,15.945109,0,0,0,0,0,0,0,0,1,1,0,4.9890146,4.8392673,51.86,60.27,-9,-9,3.333333333333333,1,1,0,1,8,8,4,1,254,592080.19,143877.16,441887.66,0,0,0,1887.1227 +12865,15699,28002,28003,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.588738,5.6944976,45,5,-16.990536,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9291182,5.4053411,53.51,42.63,51.02,49.39,8.333333333333334,1,1,0,0,0,7,2,1,781,-34410.559,0,0,0,0,0,1470.3395 +12865,15699,28003,28002,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.9240718,6.8335991,0,45,-5,19.61993,0,3,3,2021,10,0,16,12,1,0,0,4.9969935,4.9969935,0,0,0,0,0,0,0,7,1,1,0,0,0,51.02,49.39,53.51,42.63,8.333333333333334,1,1,0,0,9,7,2,1,781,-34410.559,0,0,0,0,0,1470.3395 +12866,15700,28004,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.7624111,8.9616518,0,0,0,-850.86829,0,-9,-9,2021,12,3,45,45,1,3,0,17.617651,17.617651,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,12,5,1,320,46194.73,-125167.16,0,0,0,0,2316.449 +12867,15701,28005,28006,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.3468781,8.7370644,0,12,2,98.135208,-9,-9,-9,2021,15,3,50,0,1,3,0,9.7822828,9.7822828,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.2,57.49,8.333333333333334,1,1,0,0,13,10,5,1,710,523342.31,94349.156,569394.06,341376.56,0,8590.4121,4464.0073 +12867,15701,28006,28005,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.2204046,9.2069607,0,12,-2,1.9412345,0,2,-9,2021,11,2,48,54,1,2,0,19.673412,19.673412,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.19,58.01,6.666666666666667,1,1,0,0,13,10,5,1,710,523342.31,94349.156,569394.06,341376.56,0,8590.4121,4464.0073 +12868,15702,28007,28008,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3084459,8.1774883,0,13,3,-131.54315,0,-9,-9,2021,11,0,48,48,1,0,0,9.8238392,9.8238392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.32,52.34,46.34,42.37,8.333333333333334,3,4,0,0,9,5,4,1,847,920741,713023.56,83020.984,0,0,0,1604.6796 +12868,15702,28008,28007,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,13,-3,87.217377,1,3,2,2021,6,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1331549,0,46.34,42.37,50.32,52.34,6.666666666666667,3,4,0,0,9,5,4,1,847,920741,713023.56,83020.984,0,0,0,1604.6796 +12869,15703,28009,28010,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.4370589,6.8419967,9,3,111.69264,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6893437,6.6632013,49.98,55.33,55.18,36.42,8.333333333333334,1,1,0,0,0,6,2,1,790.5,146023.39,0,75171.578,0,0,0,1936.2189 +12869,15703,28010,28009,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.700841,4.5597987,9,-3,58.53297,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,1.4729651,0,0,1,1,0,3.9075551,4.5868306,55.18,36.42,49.98,55.33,8.333333333333334,1,1,0,0,0,6,2,1,790.5,146023.39,0,75171.578,0,0,0,1936.2189 +12870,15704,28011,28014,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.2110958,9.1907015,0,2,1,152.96022,-9,-9,-9,2021,9,0,37,0,1,1,0,29.956503,29.956503,0,0,.05,0,0,0,0,0,0,0,0,8.6211071,0,51,56,48.77,60.16,8,4,1,0,0,1,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28012,-9,28014,28011,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-888.65735,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28013,-9,28014,28011,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.94867,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28014,28011,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,0,0,0,2,-1,-110.91405,0,1,1,2021,11,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,7.9668727,0,48.77,60.16,51,56,8.333333333333334,1,1,0,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28015,-9,28014,28011,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.41632,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12871,15705,28016,28017,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.3780317,9.169754,0,2,0,65.86377,0,-9,-9,2021,6,0,43,50,1,0,0,31.228128,31.228128,0,0,.05,0,0,0,0,0,0,0,0,7.5832915,0,51.24,58.84,46.33,50.4,1.666666666666667,1,1,0,0,13,8,5,1,502.5,902438.5,176506.34,753610.19,0,0,0,5683.4961 +12871,15705,28017,28016,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.7222624,7.599103,0,25,0,8.6102657,0,2,1,2021,18,6,25,23,1,6,0,9.0291767,9.0291767,0,0,0,0,0,0,0,0,0,0,0,1.996755,0,46.33,50.4,51.24,58.84,3.333333333333333,1,1,0,0,7,8,5,1,502.5,902438.5,176506.34,753610.19,0,0,0,5683.4961 +12872,15706,28018,28019,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-21.482832,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.0971599,0,54.96,53.17,57.33,53.46,10,1,1,0,0,7,5,2,0,1469.5,137507.36,154636.53,0,0,0,0,2527.8975 +12872,15706,28019,28018,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.4742427,4.9304662,46,1,9.5088615,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1860023,5.5656509,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,5,2,0,1469.5,137507.36,154636.53,0,0,0,0,2527.8975 +12873,15707,28020,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.1414161,7.3371911,6.0704503,0,0,-1105.8086,0,3,3,2021,7,0,30,40,1,0,0,5.1914525,5.1914525,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8015666,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,1097,661255.38,75978.086,305872.53,0,0,0,1429.7766 +12874,15708,28021,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4851055,7.6974263,0,0,-941.94025,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5523844,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,917,315849.09,184916.48,0,0,0,0,2442.5439 +12875,15709,28022,28023,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.2630281,6.2135658,18,-7,12.57797,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.8102827,5.9088702,51,46,54,46,7,1,1,0,0,0,8,2,1,1759,31853.645,0,0,0,0,0,2367.8838 +12875,15709,28023,28022,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,0,0,6,7,43.512722,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7812343,0,54,46,51,46,7,1,1,0,0,0,8,2,1,1759,31853.645,0,0,0,0,0,2367.8838 +12876,15710,28024,-9,28026,-9,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1048.0498,-9,1,-9,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33984661,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12876,15710,28025,-9,28026,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-947.19672,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12876,15710,28026,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.090333,8.8653879,7.7513614,0,0,-971.16406,0,2,2,2021,17,5,40,37,1,5,0,8.9518137,8.9518137,.05,.05,0,0,0,0,0,0,1,1,0,7.9167767,0,25.12,65.25,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12877,15711,28027,28028,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.6890249,8.8475561,6,10,-136.56479,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1804237,8.6760683,45.4,56.19,43.91,18.05,10,1,1,0,0,6,9,5,1,463,1558725,976589.44,331691.41,0,0,0,5758.6387 +12877,15711,28028,28027,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,0,0,6,-10,-96.715569,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.91,18.05,45.4,56.19,5,1,1,0,0,0,9,5,1,463,1558725,976589.44,331691.41,0,0,0,5758.6387 +12878,15712,28029,28031,-9,-9,1,0,28,1,3,0,2,2,-9,1,4,6.7674036,6.7410731,0,1,-17,184.45712,0,2,2,2021,9,0,15,0,1,0,0,6.1993074,6.1993074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,56.62,31.11,8.333333333333334,1,1,0,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28030,-9,28029,28031,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.78815,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28031,28029,-9,-9,1,1,45,1,3,0,2,2,-9,0,2,8.8403244,9.0528078,0,1,17,39.105747,-9,-9,-9,2021,10,0,50,0,1,0,0,22.736628,22.736628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.62,31.11,54.2,57.49,6.666666666666667,1,1,0,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28032,-9,28029,28031,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-860.93054,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28033,-9,28029,28031,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.108,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12879,15713,28034,28035,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,7.165854,6.7914381,0,20,-1,24.523596,0,2,2,2021,7,0,27,19,1,0,0,5.0670938,5.0670938,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,2443.5,380299.31,-12886.631,546727.38,335015.38,0,0,4835.6392 +12879,15713,28035,28034,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.5180187,9.5978003,0,19,1,-48.029404,0,2,-9,2021,8,0,57,51,1,0,0,21.356749,21.356749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,12,12,5,1,2443.5,380299.31,-12886.631,546727.38,335015.38,0,0,4835.6392 +12880,15714,28036,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1114.1761,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.48,48.31,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,5404,-154794.53,0,0,0,0,0,569.03693 +12881,15715,28037,28038,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.0792203,6.2895789,46,6,25.880323,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,11.266469,0,0,1,1,0,5.5254202,6.1898475,40.62,19.29,48.36,57.34,3.333333333333333,1,1,0,0,0,7,2,1,1076,220225.03,215934.91,0,0,0,0,2266.5669 +12881,15715,28038,28037,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.2378211,4.4487243,46,-6,49.825165,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.2976561,4.9097013,48.36,57.34,40.62,19.29,8.333333333333334,1,1,0,0,0,7,2,1,1076,220225.03,215934.91,0,0,0,0,2266.5669 +12882,15716,28039,28041,-9,28044,1,1,32,1,1,0,2,2,-9,1,2,0,0,0,2,5,0,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.14,29.18,57.33,53.46,5,2,3,0,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15716,28040,-9,28041,28039,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-892.91089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15716,28041,28039,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,0,0,0,2,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.14,29.18,8.333333333333334,2,3,1,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15717,28042,28043,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.2728338,8.1330948,0,2,-1,100.18711,0,-9,-9,2021,12,0,37,37,1,0,0,11.675995,11.675995,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,48.74,35.29,40.33,5,2,3,0,0,3,8,5,1,1261,-75290.422,7497.1484,0,0,4356.5825,1615.2727,4567.7051 +12882,15717,28043,28042,-9,28044,1,1,29,1,1,0,2,2,-9,0,3,8.6514311,8.7832546,0,2,1,13.222951,0,-9,2,2021,5,0,38,45,1,0,0,20.297661,20.297661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.29,40.33,33.12,48.74,6.666666666666667,2,3,0,0,13,8,5,1,1261,-75290.422,7497.1484,0,0,4356.5825,1615.2727,4567.7051 +12882,15718,28044,-9,-9,-9,1,1,58,1,1,0,2,2,-9,0,1,8.7501831,8.5254488,0,0,0,-984.60687,0,-9,-9,2021,19,7,37,38,1,7,0,20.594482,20.594482,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,26.49,27.53,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,1195,346833.09,162218.38,294708.56,67258.313,0,0,2168.4985 +12883,15719,28045,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.6254663,7.3112588,0,0,-900.42413,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9979267,7.6869431,44.86,48.89,-9,-9,10,1,1,0,0,0,12,3,1,292,575535.31,303467.13,176854.97,0,0,0,1331.4703 +12884,15720,28046,28047,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.8369875,9.3045874,0,8,3,.52970862,0,2,2,2021,11,0,43,46,1,0,0,20.847839,20.847839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,51.62,28.69,65.05,5,1,1,0,0,14,7,5,1,355.5,719295.63,403236.38,776329.38,484812.25,0,0,4657.1182 +12884,15720,28047,28046,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3693953,8.1445913,0,8,-3,4.1258264,0,-9,-9,2021,17,5,54,46,1,5,0,8.0386057,8.0386057,.05,.05,0,0,0,0,0,0,0,0,0,3.254575,0,28.69,65.05,44.7,51.62,6.666666666666667,1,1,0,0,9,7,5,1,355.5,719295.63,403236.38,776329.38,484812.25,0,0,4657.1182 +12885,15721,28048,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1116.0974,0,2,3,2021,10,2,0,45,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,52.66,36.05,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,996,401895.06,0,375136.56,0,0,0,16.832197 +12886,15722,28049,28050,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.4025722,5.8883886,11,-2,204.91663,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,2.9768598,0,28.383736,0,1,1,0,0,6.0958328,59.45,41.59,57.92,51.82,8.333333333333334,1,1,0,0,4,4,3,1,383,840748.38,243087.84,165226.94,0,0,0,2744.8218 +12886,15722,28050,28049,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.417861,7.6546926,11,2,-83.077484,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8570299,57.92,51.82,59.45,41.59,10,1,1,0,0,0,4,3,1,383,840748.38,243087.84,165226.94,0,0,0,2744.8218 +12887,15723,28051,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,7.902792,8.5337744,0,0,0,-934.80756,-9,-9,-9,2021,6,0,35,0,1,0,0,7.6708627,7.6708627,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,4,0,391,172794.59,2786.8535,0,0,0,0,1585.2946 +12888,15724,28052,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.3299,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,475,153821.33,0,91456.469,0,0,0,1546.8804 +12889,15725,28053,28054,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.6402416,7.6890693,0,14,0,192.36711,0,2,3,2021,7,0,21,21,1,0,0,10.322639,10.322639,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.5,58.26,8.333333333333334,1,1,0,1,14,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12889,15725,28054,28053,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,16,9,4.221076,0,2,2,2021,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,48.87,58.55,3.333333333333333,1,1,1,1,12,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12889,15725,28055,-9,28053,28054,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.0037,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12890,15726,28056,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.8492432,8.5020161,0,0,0,-1012.7213,0,-9,-9,2021,13,2,82,48,1,2,0,9.4185171,9.4185171,.05,.05,0,0,0,0,0,0,1,1,0,2.9436297,0,52.38,55.95,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,448,147861.64,137999.83,161864.8,87618.211,0,7454.8799,2029.6329 +12891,15727,28057,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.8023114,6.5669589,0,0,-904.32538,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.3949804,0,0,1,1,0,4.3796053,6.3003569,60.89,44.94,-9,-9,10,1,1,0,0,1,13,2,1,214,297711.47,0,178508.94,0,0,0,1558.8533 +12892,15728,28058,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,6.5256486,7.6715465,6.7449937,0,0,-1016.5031,0,3,3,2021,6,1,14,18,1,1,0,5.8657403,5.8657403,0,0,0,0,0,0,2.0391645,0,0,0,0,7.4329715,0,57.46,56.16,-9,-9,8.333333333333334,1,1,0,0,11,1,3,1,1271,365823.91,167533.36,213506.75,0,0,0,878.59277 +12893,15729,28059,-9,28062,28061,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.46442,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28060,-9,28062,28061,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8257,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28061,28062,-9,-9,1,1,36,0,2,0,1,1,-9,0,5,8.2145014,8.1613779,0,10,1,-27.041964,0,-9,-9,2021,0,0,40,60,1,0,0,11.24468,11.24468,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,45.63,58.55,1.666666666666667,2,3,0,0,10,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28062,28061,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.8301563,8.648385,0,11,-1,15.783663,0,2,3,2021,1,0,24,60,1,0,0,28.896877,28.896877,0,0,0,0,0,0,0,0,1,1,0,0,0,45.63,58.55,62.39,56.71,10,2,3,0,0,11,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12894,15730,28063,-9,28067,28066,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.2544,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28064,-9,28067,28066,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.0314,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28065,-9,28067,28066,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.78564,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28066,28067,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.9737501,9.0325441,0,7,3,-14.025794,0,-9,-9,2021,8,0,46,21,1,0,0,23.328062,23.328062,.05,.05,0,0,0,0,0,0,0,0,0,5.8966165,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28067,28066,-9,-9,1,0,37,0,3,0,1,1,-9,0,4,8.1996717,7.738821,0,7,-3,32.194481,0,2,2,2021,7,0,31,33,1,0,0,10.754823,10.754823,.05,.05,0,0,0,0,0,0,0,0,0,3.1791029,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,8,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12895,15731,28068,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,5.9295998,6.04353,0,0,0,-977.62695,0,3,3,2021,11,0,6,10,1,0,0,5.5021625,5.5021625,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,501,-21565.115,0,0,0,0,0,1158.0389 +12895,15732,28069,-9,28068,-9,1,1,27,0,0,0,2,2,-9,0,3,7.1967688,7.7491689,0,0,0,-1035.4431,0,3,-9,2021,10,0,30,0,1,0,1,5.3244605,5.3244605,0,0,0,0,0,0,0,0,0,0,0,.84989393,0,46.86,55.66,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,456,138736.97,0,0,0,5701.1587,0,443.11017 +12896,15733,28070,-9,28072,28071,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.3932,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12896,15733,28071,28072,-9,-9,1,1,39,0,1,0,3,3,-9,0,2,8.3691225,8.4199944,0,10,4,39.532608,0,3,3,2021,12,0,47,43,1,0,0,10.045345,10.045345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.84,42.92,46.08,57.2,6.666666666666667,1,1,0,0,11,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12896,15733,28072,28071,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.5722528,7.5060797,0,10,-4,-185.42313,0,2,-9,2021,12,0,30,26,1,0,0,7.0058198,7.0058198,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,36.84,42.92,8.333333333333334,1,1,0,0,11,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12897,15734,28073,28074,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5185852,8.6235447,0,5,1,79.626259,0,-9,2,2021,10,1,37,37,1,1,0,15.557192,15.557192,.05,.05,0,0,0,0,0,0,0,0,0,3.1460671,0,50.5,52.77,35.91,63.19,10,1,1,0,0,7,6,5,1,2296,291506.5,256658.03,180667.22,148508.83,1258.458,0,3346.3601 +12897,15734,28074,28073,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.3962793,8.4489479,0,5,-1,40.019901,0,-9,-9,2021,14,2,39,42,1,2,0,15.775881,15.775881,.05,.05,0,0,0,0,0,0,0,0,0,5.1682663,0,35.91,63.19,50.5,52.77,8.333333333333334,1,1,0,0,5,6,5,1,2296,291506.5,256658.03,180667.22,148508.83,1258.458,0,3346.3601 +12898,15735,28075,28076,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,0,30.265577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.25,21.39,8.333333333333334,1,1,0,0,0,12,2,1,319,372767.03,179989.88,345219.63,0,0,0,1110.8389 +12898,15735,28076,28075,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.2010651,7.0841327,49,0,6.5865002,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0793271,55.25,21.39,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,319,372767.03,179989.88,345219.63,0,0,0,1110.8389 +12899,15736,28077,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.6509,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,46.26,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,753,-80164.125,0,0,0,483.69702,0,830.45227 +12900,15737,28078,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0676994,8.1445208,0,0,0,-995.99158,0,3,3,2021,10,0,9,35,1,0,0,37.663372,37.663372,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,14,8,4,1,1088,0,0,0,0,0,0,937.3587 +12901,15738,28079,-9,28081,-9,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-920.24249,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15738,28080,28081,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7122831,9.8047552,0,1,6,-38.749817,-9,2,3,2021,7,0,50,0,1,0,0,29.802671,29.802671,.05,.05,0,0,0,0,0,0,1,1,0,5.5974169,0,51.54,46.93,64.47,51.45,1.666666666666667,1,1,0,0,8,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15738,28081,28080,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.7645979,9.0652018,6.056828,1,-6,-9.7486944,-9,-9,-9,2021,6,0,35,0,1,0,0,24.494793,24.494793,0,0,0,0,0,0,0,0,1,1,0,6.5840993,0,64.47,51.45,51.54,46.93,8.333333333333334,1,1,0,0,9,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15739,28082,-9,28081,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.4797,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,0,2488,14882.539,0,0,0,0,0,529.06732 +12902,15740,28083,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.54633,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.03,51.08,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,1424,199832.36,0,79061.844,0,0,0,1186.9561 +12903,15741,28084,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1021.6567,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,495,216698.47,0,0,0,0,733.90613,1251.9769 +12904,15742,28085,-9,28086,28087,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.97888,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12904,15742,28086,28087,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.3118653,6.1157026,0,6,-7,59.807957,0,2,2,2021,6,0,10,0,1,0,0,6.7418942,6.7418942,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,57.16,56.15,10,1,1,0,0,6,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12904,15742,28087,28086,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.5504761,8.3683367,0,6,7,-35.430378,0,-9,-9,2021,5,0,41,37,1,0,0,11.244278,11.244278,.05,.05,0,0,0,0,0,0,0,0,0,1.6765257,0,57.16,56.15,49.76,56.93,10,1,1,0,0,11,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12905,15743,28088,28089,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.3037157,7.0274978,0,9,-1,137.31657,0,2,2,2021,6,0,18,18,1,0,0,9.6875801,9.6875801,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,8,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12905,15743,28089,28088,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,8.2937613,8.3157635,0,9,1,-26.197258,0,2,2,2021,6,0,37,40,1,0,0,9.102788,9.102788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,10,1,1,0,0,8,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12905,15743,28090,-9,28088,28089,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.7754,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12906,15744,28091,-9,28092,28094,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-929.12866,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28092,28094,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,1,4,0,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,53.54,52.35,5,1,1,1,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28093,-9,28092,28094,1,1,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1063.324,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28094,28092,28096,28095,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,1,-4,0,0,2,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,52.35,51.24,58.84,8.333333333333334,1,1,0,0,1,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15745,28095,28096,-9,-9,1,1,49,0,0,0,3,3,-9,0,5,7.5029426,7.5097361,0,6,-1,70.55677,0,2,3,2021,8,0,40,40,1,0,0,5.0597301,5.0597301,0,0,0,0,0,0,0,0,1,1,0,0,0,56.68,51,50.85,54.91,10,1,1,0,0,7,11,4,1,1756.5,48938.289,0,178106.19,115711.16,5921.6841,0,3997.3992 +12906,15745,28096,28095,28097,28098,1,0,50,0,0,0,2,2,-9,0,4,8.0788555,7.9171734,0,6,1,20.287966,0,2,1,2021,5,0,35,35,1,0,0,8.132473,8.132473,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,56.68,51,8.333333333333334,1,1,0,0,7,11,4,1,1756.5,48938.289,0,178106.19,115711.16,5921.6841,0,3997.3992 +12906,15746,28097,28098,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.6417265,4.350893,6,-3,33.711601,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.890295,0,0,1,1,0,0,4.9073305,60.89,28.48,50.74,51,10,1,1,0,0,0,11,3,1,704.5,232931.44,0,0,0,0,0,2793.4939 +12906,15746,28098,28097,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.4540644,8.2902422,6,3,4.3687768,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2884331,50.74,51,60.89,28.48,8.333333333333334,1,1,0,0,7,11,3,1,704.5,232931.44,0,0,0,0,0,2793.4939 +12907,15747,28099,28100,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.0867352,7.6269827,48,-3,-117.83982,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3493383,7.1035957,57.33,53.46,47.26,46.15,10,1,1,0,0,0,4,2,0,1723,713919.63,389612.44,199483.16,0,0,0,1792.2283 +12907,15747,28100,28099,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,48,3,17.398731,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.26,46.15,57.33,53.46,5,1,1,0,0,1,4,2,0,1723,713919.63,389612.44,199483.16,0,0,0,1792.2283 +12908,15748,28101,28102,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,10,6,0,0,2,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.01,22.64,44.09,21.65,0,1,1,0,1,0,5,1,0,585,-52830.563,0,0,0,0,0,1863.6857 +12908,15748,28102,28101,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,0,0,10,-6,0,0,-9,-9,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,44.09,21.65,19.01,22.64,3.333333333333333,1,1,0,1,0,5,1,0,585,-52830.563,0,0,0,0,0,1863.6857 +12909,15749,28103,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1049.389,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,2.824662,1.1661155,26.76371,0,1,1,0,0,0,38.24,25.76,-9,-9,3.333333333333333,1,1,0,0,8,12,1,1,268,213385.58,0,0,0,0,0,571.43848 +12910,15750,28104,28105,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,24,6,-72.231293,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9637098,0,7,1,1,0,0,0,65.84999999999999,10.28,64.38,39.16,10,1,1,0,0,4,7,3,1,1279,1468522.4,712288.13,507983.44,0,7497.3281,0,3092.0623 +12910,15750,28105,28104,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1846476,8.1123285,5.174612,24,-6,-34.214035,0,1,1,2021,6,0,30,55,1,0,0,13.699481,13.699481,0,0,0,0,0,0,0,7,1,1,0,5.5877457,5.3565845,64.38,39.16,65.84999999999999,10.28,10,1,1,0,0,11,7,3,1,1279,1468522.4,712288.13,507983.44,0,7497.3281,0,3092.0623 +12911,15751,28106,28107,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.6861343,8.6912956,5.615869,6,-5,-2.8107524,0,3,3,2021,7,0,40,40,1,0,0,15.227123,15.227123,.05,.05,0,0,0,0,0,0,1,1,0,6.4339972,6.3917594,57.16,56.15,65.62,32.29,8.333333333333334,1,1,0,0,7,1,4,1,979.5,897987.44,657972.13,300524.28,0,0,0,2527.3074 +12911,15751,28107,28106,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,39,5,-37.344894,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0520172,0,65.62,32.29,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,979.5,897987.44,657972.13,300524.28,0,0,0,2527.3074 +12912,15752,28108,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-989.84723,0,3,3,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.78,48.45,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,334,-12853.298,0,0,0,0,0,1214.8585 +12913,15753,28109,28110,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-3,55.838055,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,9,11,3,1,1892.5,759342.13,356091.19,254812.34,0,0,1899.6616,1075.0347 +12913,15753,28110,28109,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4970975,7.8338943,42,3,98.10611,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7077022,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,1892.5,759342.13,356091.19,254812.34,0,0,1899.6616,1075.0347 +12914,15754,28111,-9,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,8.4749355,8.4032946,0,0,0,-1074.1356,0,-9,-9,2021,8,0,80,48,1,0,0,8.9776287,8.9776287,.05,.05,0,0,0,0,0,0,1,1,0,4.743185,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,443,69708.484,107203.1,0,0,0,0,1480.1854 +12915,15755,28112,28113,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,28,-4,-88.254265,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,30.28,53,54,1.666666666666667,1,1,0,0,0,1,3,0,879,449468.38,348139.56,0,0,8338.793,0,601.37347 +12915,15755,28113,28112,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.2195568,8.585844,0,30,4,-11.097576,0,-9,-9,2021,9,0,40,39,1,1,0,9.4274521,9.4274521,.05,.05,0,0,0,0,0,2,1,1,0,3.4164443,0,53,54,47.63,30.28,7,1,1,0,0,1,1,3,0,879,449468.38,348139.56,0,0,8338.793,0,601.37347 +12916,15756,28114,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.3717136,9.1220741,0,0,0,-960.39679,0,2,2,2021,7,0,35,40,1,0,0,38.430672,38.430672,0,0,0,0,0,0,0,2,1,1,0,5.1939063,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,1,329,450080.94,64340.871,0,0,0,0,3528.1572 +12917,15757,28115,28116,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,5.1406679,4.4569778,47,-3,16.698292,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1952891,5.2073832,43.03,14.16,61.43,43.34,1.666666666666667,1,1,0,0,0,4,4,1,334.5,892962.25,531265.13,276025.66,0,3208.7478,0,4900.2285 +12917,15757,28116,28115,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.0653725,8.4787989,7.9262214,8,3,58.169117,0,-9,-9,2021,6,0,18,24,1,0,0,27.714254,27.714254,.05,.05,0,0,0,0,0,42,1,1,0,8.0171423,7.9374166,61.43,43.34,43.03,14.16,8.333333333333334,1,1,0,0,10,4,4,1,334.5,892962.25,531265.13,276025.66,0,3208.7478,0,4900.2285 +12918,15758,28117,28118,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.2638807,9.2718716,0,31,0,33.472855,0,2,1,2021,8,0,46,50,1,0,0,27.617523,27.617523,.05,.05,0,0,0,0,0,2,0,0,0,2.1890652,0,54.2,57.49,49.55,55.6,8.333333333333334,1,1,0,0,14,10,5,1,871.5,1108105.3,557152.81,377764.56,0,0,-445.2326,3776.9404 +12918,15758,28118,28117,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,31,0,-43.524311,0,3,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49.55,55.6,54.2,57.49,8.333333333333334,1,1,0,0,3,10,5,1,871.5,1108105.3,557152.81,377764.56,0,0,-445.2326,3776.9404 +12918,15759,28119,-9,28118,28117,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1036.386,0,1,1,2021,9,0,0,20,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1599667,0,53.75,54.92,-9,-9,6.666666666666667,1,1,1,0,4,10,1,1,319,-74790.492,0,0,0,0,0,-379.49631 +12918,15760,28120,-9,28118,28117,1,1,24,0,0,0,1,1,-9,0,4,7.4248223,7.2460237,0,0,0,-952.31818,0,1,1,2021,13,1,22,22,1,1,1,8.0759268,8.0759268,0,0,0,0,0,0,0,0,0,0,0,.31577983,0,35.91,63.19,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,86,49588.969,0,0,0,0,0,925.14685 +12919,15761,28121,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,0,0,-911.45374,0,3,3,2021,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.26,64.39,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,83,102854.99,0,0,0,0,1444.1945,0 +12920,15762,28122,28123,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1215739,7.0163693,0,40,-5,101.32075,0,2,2,2021,10,0,15,15,1,0,0,9.5958328,9.5958328,0,0,0,0,0,0,0,14.5,0,0,0,.71097684,0,52,54.51,43.17,58.55,6.666666666666667,1,1,0,0,15,8,4,1,2616.5,683642,162064.56,330138.13,0,1445.8224,0,3036.0493 +12920,15762,28123,28122,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,8.177844,8.8297815,42,5,-115.02205,0,2,1,2021,15,4,0,0,4,4,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,3.5276423,8.5120764,43.17,58.55,52,54.51,5,2,3,0,0,7,8,4,1,2616.5,683642,162064.56,330138.13,0,1445.8224,0,3036.0493 +12921,15763,28124,28125,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,4.855804,5.3260698,9,1,-99.70607,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4199839,5.066606,64,38.07,62.49,55.09,10,1,1,0,0,0,8,4,1,800,1966394.5,633076.25,763495.75,0,181.8441,0,4349.9941 +12921,15763,28125,28124,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.6313572,8.5078526,53,-1,45.179237,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9289818,8.8992062,62.49,55.09,64,38.07,10,1,1,0,0,6,8,4,1,800,1966394.5,633076.25,763495.75,0,181.8441,0,4349.9941 +12922,15764,28126,28127,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.7392757,3.8097272,58,0,-33.728657,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.64851058,3.8331158,49.11,51.55,46.55,37.63,10,1,1,0,0,0,7,2,1,534.5,0,0,0,0,0,0,1607.083 +12922,15764,28127,28126,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,2.2617521,2.0548468,58,0,-11.159451,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7242782,1.8587959,46.55,37.63,49.11,51.55,5,1,1,0,0,0,7,2,1,534.5,0,0,0,0,0,0,1607.083 +12923,15765,28128,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1090.7719,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.75,30.37,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,203,43782.66,0,0,0,0,0,475.25742 +12924,15766,28129,-9,28130,28131,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9608,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28130,28131,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,7.2915163,7.6392117,0,1,-1,37.302769,-9,3,-9,2021,12,0,28,0,1,0,0,9.0895739,9.0895739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,31.81,62.72,10,1,1,0,0,12,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28131,28130,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.9379492,8.8163519,0,1,1,18.296696,-9,-9,-9,2021,12,0,40,0,1,0,0,25.894867,25.894867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.81,62.72,57.06,57.76,10,1,1,0,0,10,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28132,-9,28130,28131,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.28253,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12925,15767,28133,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,2,0,0,0,0,0,-895.94409,0,3,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.6,19.2,-9,-9,1.666666666666667,1,1,0,1,3,6,1,0,322,62313.578,0,0,0,3537.6797,0,499.02039 +12926,15768,28134,28135,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.4281731,8.5343142,0,10,-4,-104.37067,0,-9,-9,2021,12,2,39,39,1,2,0,14.638,14.638,.05,.05,0,0,0,0,0,0,1,1,0,1.9860759,0,54.1,59.11,17.88,67.62,8.333333333333334,1,1,0,0,10,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12926,15768,28135,28134,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.7192221,8.6681786,0,10,4,-115.39752,0,2,2,2021,22,10,39,39,1,10,0,20.430586,20.430586,.05,.05,0,0,0,0,0,0,1,1,0,3.2293379,0,17.88,67.62,54.1,59.11,6.666666666666667,1,1,0,0,10,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12926,15768,28136,-9,28135,28134,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1095,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12927,15769,28137,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,2,8.1219158,8.028264,0,0,0,-1042.3011,-9,-9,-9,2021,5,0,37,0,1,0,0,6.3329191,6.3329191,0,0,0,0,0,0,0,0,0,0,0,0,0,55.99,49.03,-9,-9,6.666666666666667,1,1,0,0,3,2,4,0,2094,30775.473,148502.47,0,0,0,0,1390.2427 +12928,15770,28138,28139,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,7.1017656,7.2615585,0,4,-15,-76.114609,0,-9,-9,2021,4,0,17,17,1,0,0,9.9771099,9.9771099,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,61.28,48.88,10,1,1,0,0,5,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12928,15770,28139,28138,-9,-9,1,1,45,1,1,0,2,2,-9,0,3,8.1990385,8.2982731,0,4,15,-77.841522,0,-9,-9,2021,8,0,37,48,1,0,0,14.253816,14.253816,.05,.05,0,0,0,0,0,0,1,1,0,6.6436024,0,61.28,48.88,60.02,56.42,10,1,1,0,0,6,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12928,15770,28140,-9,28138,28139,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.7049,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12929,15771,28141,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.7905869,6.6981406,0,0,-1062.6217,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5409198,6.8304138,60.05,42.65,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,2501,839059.88,755810.75,0,0,0,0,1487.1077 +12930,15772,28142,-9,28143,28144,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-928.51959,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12930,15772,28143,28144,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,7.5835357,7.7000656,0,2,0,-123.02441,0,-9,-9,2021,5,1,35,34,1,1,0,5.9785795,5.9785795,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,54.37,54.8,10,1,1,0,0,3,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12930,15772,28144,28143,-9,-9,1,1,21,1,1,0,2,2,-9,0,3,8.3362255,8.5859642,0,2,0,-18.620419,0,-9,-9,2021,10,0,39,40,1,0,0,13.421902,13.421902,.05,.05,0,0,0,0,0,0,1,1,0,2.7189848,0,54.37,54.8,46.1,59.99,8.333333333333334,1,1,0,0,5,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12931,15773,28145,28146,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.3919353,4.319191,55,-3,25.982952,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0490708,4.4372792,62.16,36.04,60.12,54.8,6.666666666666667,1,1,0,0,3,2,2,1,2109.5,300803.91,458447.38,0,0,0,0,868.96576 +12931,15773,28146,28145,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.0703225,6.7225275,13,3,122.32169,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8593712,7.2310634,60.12,54.8,62.16,36.04,8.333333333333334,1,1,0,0,0,2,2,1,2109.5,300803.91,458447.38,0,0,0,0,868.96576 +12932,15774,28147,28148,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.6068411,8.4176655,0,31,-6,-89.912613,0,3,1,2021,22,9,37,37,1,9,0,16.878477,16.878477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.9,49.04,56.75,31,1.666666666666667,1,1,0,0,9,11,5,1,635.5,522599.59,364497.75,206792.34,30246.84,0,0,2951.8613 +12932,15774,28148,28147,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6592426,8.2682829,0,31,6,-10.853517,0,3,2,2021,15,4,37,37,1,4,0,15.7318,15.7318,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.04,3.333333333333333,1,1,0,0,10,11,5,1,635.5,522599.59,364497.75,206792.34,30246.84,0,0,2951.8613 +12932,15775,28149,-9,28147,28148,1,1,23,0,0,0,2,2,-9,0,5,7.610795,7.3903623,0,0,0,-1015.9441,0,2,2,2021,10,0,40,37,1,0,1,4.1976857,4.1976857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,1,4,11,3,1,2519,49573.75,49876.883,0,0,0,0,808.51025 +12933,15776,28150,28151,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.4832611,8.5777817,0,4,-2,-45.739223,0,-9,-9,2021,19,8,37,36,1,8,0,17.572298,17.572298,.05,.05,0,0,0,0,0,0,0,0,0,5.1881971,0,29.03,58.4,33.49,64.26000000000001,5,1,1,0,0,9,9,5,1,1453.5,1180905.8,148274.44,764926.75,62713.609,0,0,3997.5479 +12933,15776,28151,28150,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6615801,8.8605299,0,4,2,-17.135328,0,3,3,2021,25,12,38,0,1,12,0,17.200325,17.200325,.05,.05,0,0,0,0,0,7,0,0,0,3.1105397,0,33.49,64.26000000000001,29.03,58.4,6.666666666666667,1,1,0,0,4,9,5,1,1453.5,1180905.8,148274.44,764926.75,62713.609,0,0,3997.5479 +12934,15777,28152,-9,28153,28155,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-961.45734,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28153,28155,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4753876,8.372014,0,17,-4,-21.51,0,1,2,2021,12,2,20,47,1,2,0,25.369936,25.369936,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,48.87,58.55,8.333333333333334,1,1,0,0,14,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28154,-9,28153,28155,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0977,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28155,28153,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.1948566,9.0493917,0,17,4,-24.20505,0,2,2,2021,7,0,44,46,1,0,0,21.469831,21.469831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,14,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12935,15778,28156,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.994812,8.9910154,0,0,0,-975.58099,0,-9,-9,2021,6,0,49,48,1,0,0,23.033426,23.033426,0,0,0,0,0,0,0,0,0,0,0,4.7219968,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,3225,6072147.5,22489.494,417014.47,0,0,0,3315.0862 +12935,15779,28157,-9,-9,28156,1,1,25,0,0,0,2,2,1,0,5,7.0690527,7.124434,0,0,0,-1085.7373,-9,-9,2,2021,5,1,37,0,1,1,1,3.7967985,3.7967985,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,1429,0,0,0,0,0,0,508.46841 +12936,15780,28158,28161,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,8.5263128,8.7153664,0,6,0,101.93188,0,-9,-9,2021,24,11,29,29,1,11,0,19.090054,19.090054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.19,55.56,57.06,57.76,5,1,1,0,0,6,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28159,-9,28158,28161,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.3808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28160,-9,28158,28161,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5006,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28161,28158,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,9.0197105,8.9320679,0,6,0,-4.0563464,0,2,1,2021,7,0,35,35,1,0,0,28.300785,28.300785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,26.19,55.56,8.333333333333334,1,1,0,0,11,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12937,15781,28162,28164,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.6738262,8.7127314,5.2396097,7,0,-44.379196,0,3,2,2021,14,3,33,33,1,3,0,22.146683,22.146683,0,0,0,0,0,0,0,0,1,1,0,5.7237434,0,41.92,39.98,45.73,57.57,6.666666666666667,1,1,0,0,9,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12937,15781,28163,-9,28162,28164,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.2612,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12937,15781,28164,28162,-9,-9,1,1,44,0,1,0,3,3,-9,0,3,8.8449373,8.7547474,0,7,9,-65.593559,0,2,2,2021,7,0,40,40,1,0,0,17.133545,17.133545,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,41.92,39.98,6.666666666666667,1,1,0,0,7,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12938,15782,28165,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.4482098,8.1492834,0,0,0,-1001.135,0,-9,-9,2021,9,0,40,40,1,0,0,11.806262,11.806262,.05,.05,0,0,0,0,0,0,0,0,0,7.5347619,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,3,4,4,0,642,161829.02,127810.05,37530.891,27042.018,0,0,1987.7257 +12938,15783,28166,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.8868332,8.0409193,0,0,0,-1037.1989,-9,-9,-9,2021,6,0,37,0,1,0,0,10.46459,10.46459,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,923,247303.66,-180440.09,0,0,9205.6846,0,1624.4261 +12939,15784,28167,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9151659,8.1042547,0,0,-948.60535,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1027541,8.0918407,29.72,61.25,-9,-9,10,1,1,0,0,4,1,4,1,169,602596.38,424591.59,155010.88,0,0,0,1660.3594 +12940,15785,28168,28169,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.2857533,8.1867037,8,0,-26.173498,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5466776,0,0,1,1,0,5.0801048,8.0399961,42.7,46.47,29.82,32.56,5,1,1,0,0,0,6,3,1,752,856655.5,706162.31,232955.69,0,12794.416,0,3315.1538 +12940,15785,28169,28168,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,8,0,45.914074,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,2.5653775,0,0,1,1,0,1.5541905,0,29.82,32.56,42.7,46.47,6.666666666666667,1,1,0,0,0,6,3,1,752,856655.5,706162.31,232955.69,0,12794.416,0,3315.1538 +12940,15786,28170,-9,28169,28168,1,1,45,0,0,0,2,2,-9,0,2,8.540431,8.5907869,0,0,0,-1039.4481,0,2,2,2021,6,0,42,44,1,0,0,10.221106,10.221106,0,0,0,0,0,0,0,2,1,1,0,2.3549466,0,52.24,50.75,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,152,25717.635,0,0,0,0,492.90924,1540.7977 +12941,15787,28171,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1034.7406,0,2,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.39,34.81,-9,-9,3.333333333333333,4,2,0,0,0,2,1,0,393,-57693.77,0,0,0,0,747.08221,936.47418 +12942,15788,28172,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.2533388,8.1295233,0,0,-1049.6093,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9908605,8.3654823,61.58,43.34,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,389,574351.44,500744.97,193212.69,0,0,0,2880.8774 +12943,15789,28173,28174,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.6891608,7.7382803,0,27,-3,-98.819916,0,-9,-9,2021,9,0,32,22,1,0,0,8.4665833,8.4665833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,49,50,10,1,1,0,0,8,1,4,0,1518.5,65126.68,132848.52,112376.56,0,5448.2764,0,2038.3469 +12943,15789,28174,28173,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.7892776,7.7390919,0,27,3,68.882133,0,-9,2,2021,7,0,40,-9,1,0,0,6.9214044,6.9214044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,62.27,48.47,8.333333333333334,1,1,0,0,10,1,4,0,1518.5,65126.68,132848.52,112376.56,0,5448.2764,0,2038.3469 +12943,15790,28175,-9,28173,28174,1,1,22,0,0,0,2,2,-9,1,4,0,0,0,0,0,-940.55396,0,2,3,2021,26,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.03,57.49,-9,-9,3.333333333333333,1,1,0,0,1,1,1,0,2788,31087.547,0,0,0,0,0,311.15558 +12943,15791,28176,28177,-9,-9,1,1,20,0,0,0,2,2,-9,0,2,6.4056129,6.3188286,0,1,2,29.097677,-9,-9,-9,2021,10,1,25,0,1,1,0,3.0684471,3.0684471,.05,.05,0,0,0,0,0,0,1,1,0,4.0311828,0,48.76,38.46,31,32,8.333333333333334,1,1,0,1,0,1,2,0,449,-16331.599,-65554.57,0,0,0,0,665.52698 +12943,15791,28177,28176,28173,28174,1,0,18,0,0,0,3,3,-9,1,1,0,0,0,1,-2,49.243298,0,2,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.011479,0,31,32,48.76,38.46,0,1,1,1,0,0,1,2,0,449,-16331.599,-65554.57,0,0,0,0,665.52698 +12944,15792,28178,-9,28180,28179,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6761,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28179,28180,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.0384436,9.3189621,0,9,0,-19.652273,0,3,3,2021,3,1,47,40,1,1,0,21.269104,21.269104,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.94,59.6,8.333333333333334,1,1,0,0,10,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28180,28179,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.904273,9.1639233,0,9,0,120.83143,0,2,2,2021,10,3,45,44,1,3,0,18.725019,18.725019,0,0,0,0,0,0,0,0,0,0,0,0,0,46.94,59.6,54.79,55.86,5,1,1,0,0,10,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28181,-9,28180,28179,1,0,16,0,2,1,2,0,0,0,4,0,2.8404059,3.1482675,0,0,-1000.2206,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.455061,0,41.14,59.2,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12945,15793,28182,-9,-9,-9,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-976.02167,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,421,0,0,0,0,0,0,-385.77615 +12946,15794,28183,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1087.2762,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,569,61709.746,0,0,0,0,0,0 +12947,15795,28184,-9,28186,28185,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1014.7153,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28185,28186,-9,-9,1,1,58,0,2,0,2,2,-9,0,4,5.2674942,5.425983,0,2,13,-26.959684,0,2,2,2021,11,0,65,60,1,0,0,.30072805,.30072805,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,28.73,50.3,6.666666666666667,1,1,0,0,11,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28186,28185,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,9.1093683,8.9803562,0,2,-13,.94009024,0,-9,2,2021,23,11,43,40,1,11,0,19.230076,19.230076,0,0,0,0,0,0,0,0,0,0,0,0,0,28.73,50.3,49.41,58.28,5,1,1,0,0,9,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28187,-9,28186,28185,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.24139,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12948,15796,28188,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.3629632,5.7747049,0,0,-907.48718,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3953991,5.6316481,31.67,54.34,-9,-9,1.666666666666667,1,1,0,1,9,12,2,1,324,194747.06,102535.06,0,0,167.12039,1036.4265,1151.4465 +12948,15797,28189,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.7436132,6.7133498,0,0,0,-788.59009,0,-9,-9,2021,6,0,11,11,1,0,0,9.6537819,9.6537819,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,1086,38829.738,-47157.605,0,0,0,0,437.3244 +12949,15798,28190,28191,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,8.0503283,8.1987715,50,16,-120.7453,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,17.136791,0,0,1,1,0,0,8.274724,46.65,20.63,30.39,57.87,8.333333333333334,1,1,0,0,0,4,5,1,955.5,4023130.5,2246181,972502.44,0,0,0,9623.6982 +12949,15798,28191,28190,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,9.6102228,9.5800962,48,-16,-24.651432,0,3,3,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,9.5399857,30.39,57.87,46.65,20.63,8.333333333333334,1,1,0,0,0,4,5,1,955.5,4023130.5,2246181,972502.44,0,0,0,9623.6982 +12950,15799,28192,-9,28193,28196,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.3409,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28193,28196,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4959641,8.3945103,0,17,-6,6.7794976,0,3,2,2021,10,0,38,41,1,0,0,18.758493,18.758493,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,3,4,0,0,8,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28194,-9,28193,28196,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1160.108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28195,-9,28193,28196,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.80487,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28196,28193,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,7.7738786,7.9588246,0,7,6,77.037392,0,-9,-9,2021,8,0,39,39,1,0,0,8.0610075,8.0610075,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,9,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12951,15800,28197,28198,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,9.3710375,9.0576468,43,3,-65.731903,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2883353,9.1789999,58.15,52.91,55.1,34.09,8.333333333333334,1,1,0,0,9,9,5,1,628,8525095,357333.22,2321716.5,0,0,0,9111.6055 +12951,15800,28198,28197,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,8.3902531,8.7011166,43,-3,-63.084099,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1499104,8.819994,55.1,34.09,58.15,52.91,5,1,1,0,0,5,9,5,1,628,8525095,357333.22,2321716.5,0,0,0,9111.6055 +12952,15801,28199,28200,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3262854,8.1428652,0,2,2,33.04884,-9,-9,-9,2021,8,0,38,0,1,0,0,13.319011,13.319011,0,0,0,0,0,0,0,0,0,0,0,5.4821186,0,44,53,44.67,52.97,8.333333333333334,1,1,0,0,2,2,4,1,1170,-97090.375,23253.455,0,0,-731.03302,842.55933,2095.752 +12952,15801,28200,28199,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.7543535,7.7209792,0,2,-2,55.003567,0,1,1,2021,12,1,30,39,1,1,0,10.841043,10.841043,.05,.05,0,0,0,0,0,0,0,0,0,.52766722,0,44.67,52.97,44,53,5,1,1,0,1,7,2,4,1,1170,-97090.375,23253.455,0,0,-731.03302,842.55933,2095.752 +12953,15802,28201,28202,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4306378,7.4349809,38,-13,106.45387,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1965508,6.9456387,57.73,54.53,51.19,52.17,10,1,1,0,0,6,10,3,1,507.5,108067.81,0,91446.555,0,0,0,2889.3848 +12953,15802,28202,28201,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.9039721,7.749825,38,13,15.527213,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8603163,7.1630054,51.19,52.17,57.73,54.53,8.333333333333334,1,1,0,0,0,10,3,1,507.5,108067.81,0,91446.555,0,0,0,2889.3848 +12954,15803,28203,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.2183218,6.1866674,0,0,-1029.4843,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,4.1310096,0,0,1,1,0,5.1055632,6.0105247,51.66,29.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,239,-69263.805,-196625.36,32379.594,0,0,0,1720.6942 +12955,15804,28204,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1084.8154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3516834,0,57.11,33.45,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,932,81060.711,0,0,0,0,0,510.26932 +12956,15805,28205,28207,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,7.9515433,7.6471162,0,9,2,-17.649523,0,3,2,2021,8,0,40,40,1,0,0,8.3756723,8.3756723,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,46.08,57.2,5,1,1,0,0,10,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28206,-9,28207,28205,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.9717,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28207,28205,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,9,-2,-8.241168,0,-9,-9,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52,54.51,5,1,1,0,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28208,-9,28207,28205,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1023.0067,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12957,15806,28209,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-886.68872,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.58,37.25,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,2186,183221.42,0,0,0,0,0,270.71063 +12958,15807,28210,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-954.35693,0,2,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2081876,0,44.75,33.78,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,548,-259615.19,0,0,0,0,0,202.3533 +12959,15808,28211,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-846.27014,0,2,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.52,25.02,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,1039,0,0,0,0,0,0,487.07407 +12960,15809,28212,28213,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,11,4,54.860596,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,44.09,36.44,8.333333333333334,1,1,0,0,10,13,2,1,618.5,638627.5,269958.94,156172.44,0,7947.0068,0,182.2729 +12960,15809,28213,28212,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.1261716,7.0569725,4.5802956,11,-4,-31.561975,0,3,2,2021,12,0,32,31,1,0,0,4.6417665,4.6417665,0,0,0,0,0,0,0,0,1,1,0,4.9529462,5.0613899,44.09,36.44,40.87,44.58,3.333333333333333,1,1,0,0,12,13,2,1,618.5,638627.5,269958.94,156172.44,0,7947.0068,0,182.2729 +12960,15810,28214,-9,28213,28212,1,1,34,0,0,0,3,3,-9,0,3,5.4389086,5.1550455,0,0,0,-965.83728,0,3,2,2021,10,0,40,45,1,0,0,.50892544,.50892544,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,0,1,1,0,0,10,13,2,1,98,42203.387,0,0,0,0,0,138.30267 +12961,15811,28215,-9,-9,-9,1,1,59,0,1,0,1,1,-9,0,2,0,8.0036764,7.6961975,0,0,-1034.0669,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.6704445,50.15,46.38,-9,-9,6.666666666666667,2,3,0,0,1,8,3,1,766,16198.729,-16619.734,0,0,9129.8828,0,1969.7904 +12962,15812,28216,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.3334527,7.4979448,0,0,0,-922.37958,0,3,3,2021,12,0,22,16,1,0,0,8.320076,8.320076,0,0,0,0,0,0,0,7,1,0,1,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,12,3,0,1514,-246617.27,0,0,0,0,0,1180.604 +12963,15813,28217,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-955.9115,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.09,26.01,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,386,104677.74,46638.301,144913.03,0,0,0,1107.5662 +12964,15814,28218,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,0,0,-907.73108,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,13,1,1,365,115734.05,0,0,0,5412.9419,0,229.4691 +12965,15815,28219,-9,-9,-9,1,0,20,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1021.24,-9,2,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.18,54.59,-9,-9,5,4,2,0,0,0,10,1,0,408,-188781.95,0,0,0,0,0,0 +12966,15816,28220,28221,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.3596601,8.1014137,46,2,48.608559,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9940281,8.1670284,51.76,47.75,62.18,36.18,1.666666666666667,2,3,0,0,0,9,4,1,462,1813245.5,817610.81,632447.94,0,0,0,6819.8916 +12966,15816,28221,28220,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,6.4916372,7.9202518,7.9567504,46,-2,-68.525314,0,-9,-9,2021,7,0,20,20,1,0,0,4.8806391,4.8806391,0,0,0,0,0,0,0,2,1,1,0,7.8874602,7.9351044,62.18,36.18,51.76,47.75,8.333333333333334,1,1,0,0,13,9,4,1,462,1813245.5,817610.81,632447.94,0,0,0,6819.8916 +12967,15817,28222,28224,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,5.1178904,4.979012,0,14,15,104.4015,0,2,2,2021,5,0,30,16,1,0,0,.65607965,.65607965,0,0,0,0,0,0,0,0,1,1,0,0,0,59.78,55.17,47.68,55.12,8.333333333333334,2,3,0,0,11,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12967,15817,28223,-9,28224,28222,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2549,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12967,15817,28224,28222,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.6779041,7.6278739,0,14,-15,-73.122833,0,2,2,2021,4,0,25,60,1,0,0,8.5643644,8.5643644,0,0,0,0,0,0,0,0,1,1,0,0,0,47.68,55.12,59.78,55.17,8.333333333333334,2,3,0,0,11,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12968,15818,28225,28226,-9,-9,1,1,33,0,1,0,1,1,-9,0,5,8.6489038,8.4954386,0,5,-8,-129.99538,0,-9,-9,2021,6,0,36,39,1,0,0,17.313177,17.313177,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,8,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15818,28226,28225,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.955646,8.3956289,0,5,8,-20.680269,0,2,2,2021,7,0,34,34,1,0,0,12.054078,12.054078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,62.39,56.71,8.333333333333334,1,1,0,0,12,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15818,28227,-9,28226,28225,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.69177,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15819,28228,-9,28226,28225,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1016.7368,1,2,1,2021,8,0,0,26,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,1689,-167694.58,0,0,0,0,314.06982,767.96857 +12969,15820,28229,28230,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.6484022,6.6865396,9,2,-24.853849,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,22.934599,0,0,1,1,0,0,6.749999,53.8,32.82,56.94,49.53,6.666666666666667,1,1,0,0,0,11,2,1,347,460934.19,159900.25,241718.06,0,0,0,1592.4243 +12969,15820,28230,28229,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,44.11071,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,53.8,32.82,8.333333333333334,1,1,0,0,0,11,2,1,347,460934.19,159900.25,241718.06,0,0,0,1592.4243 +12970,15821,28231,-9,28235,28233,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.8022,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28232,-9,28235,28233,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-896.04828,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28233,28235,-9,-9,1,1,42,1,4,0,3,3,-9,0,2,8.5505371,8.2788019,0,9,5,-15.310292,0,-9,-9,2021,9,0,40,35,1,0,0,11.159058,11.159058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.42,34.56,40.97,40.61,5,2,3,0,1,2,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28234,-9,28235,28233,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.9212,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28235,28233,-9,-9,1,0,37,1,4,0,1,1,-9,0,3,0,0,0,13,-5,-4.171556,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,40.61,57.42,34.56,6.666666666666667,2,3,0,1,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28236,-9,28235,28233,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.25275,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12971,15822,28237,28238,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.1350861,8.6420279,0,19,-3,-105.84544,0,2,2,2021,8,0,42,40,1,0,0,19.911234,19.911234,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,1,5,1,401,365754.81,158210.2,339003.81,253995.97,0,0,4062.4375 +12971,15822,28238,28237,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.4815254,8.2611303,0,19,3,63.97924,0,3,3,2021,7,0,40,40,1,0,0,14.786119,14.786119,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,13,1,5,1,401,365754.81,158210.2,339003.81,253995.97,0,0,4062.4375 +12972,15823,28239,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1386118,9.4256067,0,0,0,-1081.8871,0,2,3,2021,11,0,45,44,1,2,0,25.659481,25.659481,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,12,11,5,1,195,1497383.4,1014446.6,609378.13,94910.016,0,0,4240.0107 +12973,15824,28240,28241,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.1655121,8.7558546,0,9,3,-8.1621695,0,-9,-9,2021,6,0,51,51,1,0,0,26.005665,26.005665,0,0,.05,0,0,0,0,0,0,0,0,7.2000852,0,58.15,52.91,50.99,49.74,8.333333333333334,2,3,0,0,11,8,5,1,146.5,489903.13,85419.922,281298.56,0,0,0,3983.5815 +12973,15824,28241,28240,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.8759112,7.0645032,0,35,-3,-121.4716,0,3,3,2021,12,1,17,40,1,1,0,7.6523824,7.6523824,0,0,0,0,0,0,0,2,0,0,0,4.07728,0,50.99,49.74,58.15,52.91,8.333333333333334,2,3,0,0,11,8,5,1,146.5,489903.13,85419.922,281298.56,0,0,0,3983.5815 +12973,15825,28242,-9,28241,28240,1,0,25,0,0,0,1,1,-9,0,3,9.1273546,8.9534616,0,0,0,-1105.2173,0,2,2,2021,14,2,38,38,1,2,1,30.124126,30.124126,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,3,8,5,1,809,-88972.82,0,0,0,0,0,3629.8584 +12973,15826,28243,-9,28241,28240,1,0,25,0,0,0,1,1,-9,0,4,8.4959831,8.4035492,0,0,0,-941.71558,0,2,2,2021,9,0,43,43,1,0,1,14.188898,14.188898,.05,.05,0,0,0,0,0,0,0,0,0,.50051707,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,336,64976.078,-188386.61,0,0,0,0,1770.948 +12973,15827,28244,-9,28241,28240,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-860.06818,1,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4209769,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,387,43839.348,0,0,0,0,296.87524,-206.40546 +12974,15828,28245,-9,28246,-9,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-909.26538,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,6,2,1,1495,146505.84,0,0,0,0,-370.13428,965.06189 +12974,15828,28246,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,4.7569308,4.7943225,0,0,0,-1000.2703,0,-9,-9,2021,15,4,60,10,1,4,0,.2481197,.2481197,0,0,0,0,0,0,0,0,1,1,0,0,0,34.29,33.04,-9,-9,5,3,4,0,1,12,6,2,1,1495,146505.84,0,0,0,0,-370.13428,965.06189 +12975,15829,28247,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,5.0581713,5.3335519,0,0,-1002.0981,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2868729,5.2482862,62.77,34.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,244,245136.17,77974.609,81404.102,0,0,0,693.24707 +12976,15830,28248,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,5,0,7.2371664,7.2500129,0,0,-961.91693,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.3788829,0,26.344048,0,1,1,0,7.0579739,7.6528683,66.23999999999999,42.66,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,228,86568.242,29134.33,52673.727,0,0,0,2264.3889 +12977,15831,28249,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1015.7218,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,9,13,1,0,113,-249917.48,0,0,0,0,0,621.59003 +12977,15832,28250,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-912.508,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.92,56.25,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,146,-32451.525,-136683.73,159169.55,109705.77,0,2395.895,1066.9171 +12978,15833,28251,28253,-9,-9,1,0,62,0,1,0,2,2,-9,0,3,7.975266,8.3976269,5.2864046,6,9,28.665257,0,3,2,2021,11,2,16,16,1,2,0,24.678699,24.678699,0,0,0,0,0,0,0,0,1,1,0,4.6214514,5.1621976,43.6,40.88,40.14,38.19,8.333333333333334,1,1,0,0,6,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12978,15833,28252,-9,28251,28253,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12978,15833,28253,28251,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.1279316,8.0649099,0,6,0,14.779771,0,2,1,2021,20,8,39,39,1,8,0,11.222528,11.222528,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,38.19,43.6,40.88,6.666666666666667,1,1,0,1,6,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12979,15834,28254,28255,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,0,0,0,7,-3,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.06,53.47,60.12,54.8,0,1,1,0,0,0,13,1,1,735.5,337813.25,26423.84,195012.63,0,0,0,1774.1976 +12979,15834,28255,28254,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,7,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,63.06,53.47,10,1,1,0,0,7,13,1,1,735.5,337813.25,26423.84,195012.63,0,0,0,1774.1976 +12979,15835,28256,-9,28254,28255,1,1,26,0,0,0,2,2,1,0,5,7.853054,7.8163252,0,0,0,-1007.2885,-9,3,3,2021,12,4,40,0,1,4,0,7.5189142,7.5189142,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,4,13,3,1,116,192209.28,0,0,0,0,0,1856.8369 +12980,15836,28257,-9,28260,28259,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-926.55786,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28258,-9,28260,28259,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-920.3938,-9,1,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28259,28260,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,6.1468253,6.1753397,0,12,-1,-72.409462,0,3,2,2021,8,0,40,-9,1,0,0,1.3114958,1.3114958,0,0,0,0,0,0,0,7,0,0,0,6.4985309,0,48.87,58.55,57.16,56.15,10,1,1,0,0,4,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28260,28259,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.345067,7.1096196,0,12,1,-50.091793,0,2,2,2021,7,0,40,-9,1,0,0,3.4836049,3.4836049,0,0,0,0,0,0,0,2,0,0,0,7.2577839,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,12,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12981,15837,28261,28262,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.667346,7.5279179,49,-4,140.8849,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4447584,7.5979857,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,0,2,4,1,767,1689243,877886.38,842266.5,0,0,0,4440.9512 +12981,15837,28262,28261,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.2273712,8.228447,49,4,77.403313,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.765316,8.1346283,60.12,54.8,57.06,57.76,10,1,1,0,0,0,2,4,1,767,1689243,877886.38,842266.5,0,0,0,4440.9512 +12982,15838,28263,28264,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,47,-1,-24.338875,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.827558,0,57.33,53.46,57.06,57.76,5,1,1,0,0,0,7,3,1,552.5,1532511.5,1003749,358686.13,0,3910.2705,0,2165.397 +12982,15838,28264,28263,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.9224944,8.0736399,47,1,56.669159,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.7556086,7.851892,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,552.5,1532511.5,1003749,358686.13,0,3910.2705,0,2165.397 +12983,15839,28265,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.723918,5.6847601,0,0,-961.91632,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1372724,57.69,37.47,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,701,292360.34,213244.09,261175.94,0,0,0,836.24335 +12984,15840,28266,28267,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.173737,6.2997141,9,-2,80.763237,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41077501,6.4781599,53.99,48.04,45.18,44.04,8.333333333333334,1,1,0,0,0,7,4,1,1228.5,929193.5,584767.88,364155.44,0,0,401.97537,3670.3728 +12984,15840,28267,28266,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.0477991,8.0501471,9,2,65.227859,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8238211,8.2159176,45.18,44.04,53.99,48.04,10,1,1,0,0,0,7,4,1,1228.5,929193.5,584767.88,364155.44,0,0,401.97537,3670.3728 +12985,15841,28268,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.0882015,7.036231,0,0,-1101.5261,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.469214,50.34,30.88,-9,-9,10,1,1,0,0,0,12,3,0,318,421323.69,177458.27,0,0,0,0,1454.7261 +12986,15842,28269,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1126.1279,0,-9,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.91,33.56,-9,-9,0,1,1,1,0,0,1,1,0,1517,0,0,0,0,0,0,1457.0366 +12987,15843,28270,28271,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.7010531,7.8961201,5.8169713,49,4,34.61586,0,3,3,2021,6,0,50,60,1,0,0,5.5946317,5.5946317,.05,.05,0,0,0,0,0,0,1,1,0,5.8584037,5.8005638,57.33,53.46,40.31,40.07,8.333333333333334,1,1,0,0,11,7,4,1,942,588575,121305.78,466512.19,0,532.04327,0,4506.0137 +12987,15843,28271,28270,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,7.7210507,7.7499471,0,49,-4,-24.202551,0,3,2,2021,17,5,60,60,1,5,0,3.93187,3.93187,0,0,0,0,0,0,0,0,1,1,0,5.9107141,0,40.31,40.07,57.33,53.46,5,1,1,0,0,11,7,4,1,942,588575,121305.78,466512.19,0,532.04327,0,4506.0137 +12988,15844,28272,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1081.2538,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,9,2,1,203,57604.777,0,0,0,0,2494.5679,0 +12988,15845,28273,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.524,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,49.66,18.67,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,984,-95880.578,0,0,0,0,0,374.80249 +12989,15846,28274,28275,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.1805444,7.2349219,0,5,-8,-56.819172,0,3,2,2021,13,3,20,26,1,3,0,7.664362,7.664362,0,0,0,0,0,0,0,2,0,0,0,6.4569573,0,48.77,60.16,63.09,47.92,8.333333333333334,1,1,0,0,14,4,3,1,591.5,429909.47,152430.47,220720.06,0,0,0,1052.7054 +12989,15846,28275,28274,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3776388,7.3566513,5,8,44.864391,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8889717,7.4002109,63.09,47.92,48.77,60.16,10,1,1,0,0,6,4,3,1,591.5,429909.47,152430.47,220720.06,0,0,0,1052.7054 +12990,15847,28276,-9,28277,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-961.99036,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12990,15847,28277,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.5801153,8.6859722,0,0,0,-1053.0173,0,2,3,2021,11,2,37,30,1,2,0,15.377899,15.377899,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12990,15847,28278,-9,28277,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.1642,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12991,15848,28279,-9,28280,28281,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.7865,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15848,28280,28281,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.6586919,8.029603,0,7,3,120.11684,0,1,1,2021,12,0,38,38,1,0,0,7.2085462,7.2085462,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.98,59.35,46.39,60.99,6.666666666666667,1,1,0,0,7,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15848,28281,28280,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.2948475,8.5246534,0,7,-3,-106.62429,0,1,1,2021,5,0,36,40,1,0,0,17.265253,17.265253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,46.98,59.35,8.333333333333334,1,1,0,0,8,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15849,28282,-9,28280,28281,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1071.4142,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,531,-105205.45,0,0,0,-562.29645,0,0 +12992,15850,28283,28284,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.1107688,4.8230376,56,-6,-23.431355,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2299848,57.89,19.53,49.35,36.82,8.333333333333334,1,1,0,0,0,5,2,0,498,104263.82,30633.039,119359.68,0,0,0,1583.1196 +12992,15850,28284,28283,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,9,6,35.583229,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.35,36.82,57.89,19.53,6.666666666666667,1,1,0,0,0,5,2,0,498,104263.82,30633.039,119359.68,0,0,0,1583.1196 +12993,15851,28285,28286,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,2,2,64.467896,1,-9,-9,2021,12,1,0,45,2,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,40.83,59.68,3.333333333333333,1,1,0,0,4,11,3,0,770,50322.051,-24991.783,0,0,4704.9775,0,1257.5394 +12993,15851,28286,28285,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.67766,7.3647499,0,2,-2,-32.119808,0,-9,-9,2021,13,3,33,33,1,3,0,5.7086091,5.7086091,0,0,0,0,0,0,0,2,1,1,0,0,0,40.83,59.68,49.52,56.95,10,1,1,0,0,2,11,3,0,770,50322.051,-24991.783,0,0,4704.9775,0,1257.5394 +12994,15852,28287,28288,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,7.3862767,7.0002785,64,1,-81.323395,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2609529,33.42,46.88,41.72,51.08,3.333333333333333,1,1,0,1,3,13,2,1,655.5,761782.25,207734.55,390272.63,0,0,0,1168.9861 +12994,15852,28288,28287,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,64,-1,5.1664934,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,2.205596,0,0,1,1,0,0,0,41.72,51.08,33.42,46.88,5,1,1,0,0,10,13,2,1,655.5,761782.25,207734.55,390272.63,0,0,0,1168.9861 +12995,15853,28289,28291,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,7.970459,7.9321966,0,8,-7,-110.37013,0,-9,-9,2021,7,0,60,55,1,0,0,5.2215958,5.2215958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.99,49.19,6.666666666666667,1,1,0,0,8,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28290,-9,28291,28289,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1030.8531,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28291,28289,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.8179455,8.001791,0,8,7,-54.476093,0,2,3,2021,12,1,32,46,1,1,0,6.2343254,6.2343254,0,0,0,0,0,0,0,0,1,1,0,.26373643,0,48.99,49.19,51.73,58.82,8.333333333333334,1,1,0,1,9,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28292,-9,28291,28289,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.34027,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12996,15854,28293,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,4.074379,4.5133486,0,0,-1048.4592,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6409492,52,47,-9,-9,7,1,1,0,0,0,13,2,0,740,-186738.56,95951.945,0,0,0,0,1665.8407 +12997,15855,28294,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-862.46094,0,-9,-9,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.48,25.61,-9,-9,10,1,1,0,0,0,2,1,0,679,110728.79,72652.781,0,0,914.44043,0,1725.5295 +12998,15856,28295,28296,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.3164864,8.2829256,0,12,-7,-107.02058,0,2,3,2021,11,0,43,38,1,0,0,11.955667,11.955667,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.54,52.91,56.58,39.93,8.333333333333334,1,1,0,0,13,11,4,1,246.5,1226316.5,1048444.1,166615.92,14519.229,32981.703,0,2424.3149 +12998,15856,28296,28295,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6273088,8.0221491,0,12,7,25.461103,0,-9,-9,2021,13,1,25,27,1,1,0,7.8597794,7.8597794,.05,.05,0,0,0,0,0,2,0,0,0,0,0,56.58,39.93,52.54,52.91,8.333333333333334,1,1,0,0,12,11,4,1,246.5,1226316.5,1048444.1,166615.92,14519.229,32981.703,0,2424.3149 +12999,15857,28297,28298,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4330401,7.5392594,5.3271642,37,-3,.011072217,0,2,2,2021,16,4,19,19,1,4,0,8.2128849,8.2128849,.05,.05,0,0,0,0,0,2,0,0,0,5.0148301,5.4149723,31.67,59.57,49.3,59.89,3.333333333333333,1,1,0,0,12,5,5,1,2009.5,2552766,1628008.1,575421,0,0,0,3607.522 +12999,15857,28298,28297,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8801107,8.8682251,6.8106341,37,3,-16.321356,0,-9,-9,2021,10,0,48,45,1,0,0,14.495288,14.495288,.05,.05,0,0,0,0,0,2,0,0,0,6.1585546,7.2308717,49.3,59.89,31.67,59.57,5,1,1,0,0,12,5,5,1,2009.5,2552766,1628008.1,575421,0,0,0,3607.522 +13000,15858,28299,28300,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,9.0481253,8.9884214,14,2,60.795883,0,3,3,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,1,3.8182051,0,16.903364,7,1,1,0,9.2106361,8.5818844,38.89,16.47,27.15,39.31,6.666666666666667,1,1,0,0,1,2,5,1,458.5,2080911.8,1093826.1,435184.31,0,731.06354,0,10428.829 +13000,15858,28300,28299,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,3.8887091,3.5527825,14,-2,-150.88931,0,3,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,1.8491652,8.0305338,25.130144,7,1,1,0,4.1880212,3.4057541,27.15,39.31,38.89,16.47,3.333333333333333,1,1,0,0,0,2,5,1,458.5,2080911.8,1093826.1,435184.31,0,731.06354,0,10428.829 +13001,15859,28301,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,7.8789725,7.6629968,0,0,0,-889.8924,0,3,2,2021,19,8,40,82,1,8,0,6.8094401,6.8094401,0,0,0,0,0,0,0,0,1,1,0,0,0,37.39,37.24,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,313.5,160981.09,91949.727,86884.875,0,0,0,1391.282 +13001,15859,28302,-9,28301,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-937.14014,-9,1,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.02,57.99,-9,-9,3.333333333333333,1,1,0,0,0,2,3,0,313.5,160981.09,91949.727,86884.875,0,0,0,1391.282 +13001,15860,28303,-9,28301,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-881.57031,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.77,39.62,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,345,-166957.53,0,0,0,0,0,201.63133 +13002,15861,28304,28305,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.198688,6.2834587,60,-3,-48.78479,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.1509271,0,24.400599,0,1,1,0,1.7800702,6.4745183,61.27,46.03,60.12,54.8,8.333333333333334,1,1,0,0,6,10,2,1,1388,172444.67,182441.88,0,0,2224.1487,0,4089.8774 +13002,15861,28305,28304,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,6.5084276,6.824841,60,3,-74.372879,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.9726532,0,24.293896,0,1,1,0,8.119566,6.575192,60.12,54.8,61.27,46.03,10,1,1,0,0,6,10,2,1,1388,172444.67,182441.88,0,0,2224.1487,0,4089.8774 +13003,15862,28306,28307,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4176855,9.7669039,6.8036532,9,-1,10.858534,0,-9,-9,2021,9,0,42,60,1,0,0,37.832958,37.832958,.05,.05,0,0,0,0,0,0,0,0,0,7.9778337,6.7802987,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,12,1,5,1,495,3171599.3,2653603,227502.61,0,0,0,7867.9741 +13003,15862,28307,28306,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.8443952,7.7075691,0,16,1,70.994331,0,3,2,2021,7,0,55,60,1,0,0,5.5925903,5.5925903,.05,.05,0,0,0,0,0,0,0,0,0,4.7937732,0,54.96,53.17,54.96,53.17,10,1,1,0,0,10,1,5,1,495,3171599.3,2653603,227502.61,0,0,0,7867.9741 +13004,15863,28308,-9,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,7.8743176,7.4458795,0,0,-940.22931,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5537119,35.48,38.25,-9,-9,5,1,1,0,0,0,9,4,1,962,33609.539,-80076.055,0,0,0,0,2986.0486 +13005,15864,28309,28310,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,2.7233593,2.9084277,4,4,99.826042,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,2.8336711,57.59,25.39,58.92,43.05,8.333333333333334,1,1,0,0,0,6,2,0,250.5,209486.78,118468.31,150820.66,0,7972.5625,0,2392.8037 +13005,15864,28310,28309,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,6.9804029,6.8499103,4,-4,-21.378031,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0319157,58.92,43.05,57.59,25.39,8.333333333333334,1,1,0,0,0,6,2,0,250.5,209486.78,118468.31,150820.66,0,7972.5625,0,2392.8037 +13006,15865,28311,28312,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.3206034,6.8831072,66,-1,-34.389782,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9201183,6.0847988,45.73,39.34,48.94,30.52,5,1,1,0,0,0,2,2,1,556,735344.69,98496.516,176364.8,0,0,0,1392.2485 +13006,15865,28312,28311,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.4580026,5.9433455,66,1,61.281734,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,5.375484,0,0,1,1,0,5.2606201,6.2950296,48.94,30.52,45.73,39.34,5,1,1,0,0,0,2,2,1,556,735344.69,98496.516,176364.8,0,0,0,1392.2485 +13006,15866,28313,-9,28312,28311,1,1,54,0,0,0,1,1,-9,0,3,7.8661389,8.1434679,0,0,0,-1004.5386,0,3,2,2021,9,0,47,40,1,0,0,6.5101285,6.5101285,.05,.05,0,0,0,0,0,2,1,1,0,1.3650774,0,52.15,48.98,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,395,29768.748,39457.453,24893.389,0,0,788.17914,974.46667 +13007,15867,28314,28315,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,0,0,0,2,6,-66.335709,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,45.91,59.89,1.666666666666667,1,1,1,0,0,4,5,0,1012.5,160223.39,68926.922,227293.83,180580.47,7048.5547,0,4203.4849 +13007,15867,28315,28314,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.3861456,9.2455568,0,2,-6,12.233291,0,-9,-9,2021,11,2,40,40,1,2,0,42.535164,42.535164,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,17.51,65.2,6.666666666666667,1,1,0,0,10,4,5,0,1012.5,160223.39,68926.922,227293.83,180580.47,7048.5547,0,4203.4849 +13008,15868,28316,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.8255568,7.2228384,0,0,-1009.4933,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2620368,6.8425574,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,644,340344.91,104929.58,333527.38,0,0,0,1083.9329 +13009,15869,28317,28318,-9,-9,1,0,36,0,1,0,2,2,-9,0,1,7.1804695,7.042017,0,10,-2,65.780434,0,-9,-9,2021,20,8,30,30,1,8,0,4.3043761,4.3043761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.08,44.19,47.15,55.39,6.666666666666667,1,1,0,0,13,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13009,15869,28318,28317,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.760994,8.8615999,0,10,2,-30.584867,0,-9,-9,2021,12,0,53,58,1,0,0,16.4438,16.4438,.05,.05,0,0,0,0,0,0,0,0,0,.75994551,0,47.15,55.39,40.08,44.19,8.333333333333334,1,1,0,0,15,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13009,15869,28319,-9,28317,28318,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.052,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13010,15870,28320,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.3371,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,2.1009414,0,16.956966,0,1,1,0,0,0,32.49,43.65,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,928,170529.02,0,299655.69,7756.6157,0,0,1653.0557 +13011,15871,28321,-9,28322,28323,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.3987,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13011,15871,28322,28323,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.9650536,9.1683979,0,20,0,1.1941054,0,2,2,2021,9,0,74,40,1,0,0,12.965687,12.965687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,7,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13011,15871,28323,28322,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.3143253,9.4235487,0,20,0,44.930965,0,3,2,2021,11,1,50,47,1,1,0,24.090654,24.090654,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,51.83,57.2,6.666666666666667,1,1,0,0,11,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13012,15872,28324,28325,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,9.7711926,9.860877,0,2,3,63.081348,0,2,3,2021,12,0,55,55,1,0,0,28.33086,28.33086,.05,.05,0,0,0,0,0,0,1,1,0,5.5150599,0,57.33,53.46,45.49,50.81,8.333333333333334,1,1,0,0,14,12,5,0,708,237815.59,24440.621,0,0,1569.8698,3132.6287,10556.07 +13012,15872,28325,28324,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.372529,8.5478945,0,2,-3,63.972317,0,-9,-9,2021,18,6,40,42,1,6,0,11.8568,11.8568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.49,50.81,57.33,53.46,6.666666666666667,1,1,0,0,2,12,5,0,708,237815.59,24440.621,0,0,1569.8698,3132.6287,10556.07 +13013,15873,28326,28327,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0316038,8.2021866,0,6,-1,16.547304,0,3,3,2021,21,8,35,35,1,8,0,8.3383141,8.3383141,0,0,0,0,0,0,0,0,0,0,0,4.9638352,0,35.63,62.19,34.5,46.81,8.333333333333334,1,1,0,0,7,11,4,1,821,562795.5,328218.72,335762.5,52215.484,0,0,2479.9448 +13013,15873,28327,28326,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.0925713,8.2428713,0,6,1,54.948116,0,3,3,2021,18,6,37,37,1,6,0,13.209234,13.209234,.05,.05,0,0,0,0,0,0,0,0,0,4.9734778,0,34.5,46.81,35.63,62.19,3.333333333333333,1,1,0,0,7,11,4,1,821,562795.5,328218.72,335762.5,52215.484,0,0,2479.9448 +13014,15874,28328,-9,28329,28330,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.00562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28329,28330,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,9.1705818,9.0059013,0,23,-7,39.054493,0,2,2,2021,10,0,42,49,1,0,0,30.575525,30.575525,0,0,0,0,0,0,0,0,0,0,0,.33275139,0,45.49,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28330,28329,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.6038866,8.4796047,0,20,7,100.29058,0,-9,-9,2021,11,0,36,41,1,0,0,14.271504,14.271504,.05,.05,0,0,0,0,0,0,0,0,0,2.0058341,0,57.16,56.15,45.49,58.84,8.333333333333334,1,1,0,0,9,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28331,-9,28329,28330,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.40906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13015,15875,28332,-9,28333,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7944,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13015,15875,28333,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.0848999,8.4988251,6.0009379,0,0,-1020.8077,0,1,2,2021,7,0,37,37,1,0,0,17.313507,17.313507,.05,.05,0,0,0,0,0,0,1,1,0,5.8245435,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13015,15875,28334,-9,28333,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.9503,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13016,15876,28335,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.19061,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.32,24.55,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,814,15088.849,0,54077.813,22711.373,2517.3435,0,2195.198 +13017,15877,28336,28337,-9,-9,1,0,22,0,0,0,1,1,1,0,3,8.1813898,8.307909,0,1,-4,36.469772,-9,-9,-9,2021,7,2,11,0,1,2,0,37.328983,37.328983,.05,.05,0,0,0,0,0,0,0,0,0,.27444723,0,42,54,54.37,54.8,8.333333333333334,1,1,0,0,6,2,5,0,1068,-139025.25,94207.422,0,0,26042.947,-79.818588,2944.7051 +13017,15877,28337,28336,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.2965899,8.147893,0,1,4,14.098825,-9,-9,-9,2021,6,0,39,0,1,0,0,12.278555,12.278555,.05,.05,0,0,0,0,0,0,0,0,0,5.0007377,0,54.37,54.8,42,54,8.333333333333334,1,1,0,0,4,2,5,0,1068,-139025.25,94207.422,0,0,26042.947,-79.818588,2944.7051 +13018,15878,28338,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.3667283,7.4151487,0,0,0,-1098.8868,0,3,3,2021,14,2,45,35,1,2,0,4.7784719,4.7784719,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,941,65208.285,-37643.68,68482.867,27838.158,0,0,362.40427 +13019,15879,28339,28340,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.9949379,3.8179502,8,5,-.67039311,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,123.3922,0,0,1,1,0,3.4576485,3.8555977,54,46,51,46,8,1,1,0,0,0,2,2,1,463,44783.457,0,141995.78,0,0,0,2559.6992 +13019,15879,28340,28339,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,-5,4.9932184,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,2,2,1,463,44783.457,0,141995.78,0,0,0,2559.6992 +13020,15880,28341,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1126.2239,0,3,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,0,1,1,0,0,0,13,1,0,627,286505.06,0,196576.2,58693.387,0,0,1134.3551 +13021,15881,28342,-9,28344,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-991.31714,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.35,59.64,-9,-9,8.333333333333334,2,3,0,0,1,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13021,15881,28343,-9,28344,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1052.9097,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13021,15881,28344,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.6373763,7.6880841,0,0,0,-1126.7511,-9,2,3,2021,28,12,35,0,1,12,0,7.4041038,7.4041038,.05,.05,0,0,0,0,0,2,1,0,1,0,0,18,56.93,-9,-9,0,2,3,0,1,8,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13022,15882,28345,28346,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8692579,8.8781404,0,8,-5,25.986723,0,-9,-9,2021,10,0,45,50,1,0,0,14.626893,14.626893,.05,.05,0,0,0,0,0,0,0,0,0,3.2851791,0,51.66,54.88,31.95,55.47,5,1,1,0,0,12,6,5,1,835.5,-31017.211,140626.63,139679.31,88997.617,19053.443,0,4482.1514 +13022,15882,28346,28345,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.3487968,7.6040807,0,8,5,-68.918442,0,-9,-9,2021,10,2,20,0,1,2,0,10.240412,10.240412,.05,.05,0,0,0,0,0,0,0,0,0,3.758975,0,31.95,55.47,51.66,54.88,10,1,1,0,0,9,6,5,1,835.5,-31017.211,140626.63,139679.31,88997.617,19053.443,0,4482.1514 +13023,15883,28347,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1070.8533,0,2,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,2,0,403,154337.17,0,0,0,0,0,0 +13024,15884,28348,28349,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,0,0,0,21,0,-42.182308,0,3,2,2021,0,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0481787,0,60.12,54.8,62.18,36.18,8.333333333333334,1,1,1,0,10,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13024,15884,28349,28348,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2011805,8.3577642,0,21,0,72.591095,0,2,2,2021,6,0,30,30,1,0,0,15.790669,15.790669,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,36.18,60.12,54.8,8.333333333333334,1,1,0,0,10,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13024,15884,28350,-9,28349,28348,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-994.36603,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13025,15885,28351,-9,28353,28352,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.38123,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13025,15885,28352,28353,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.2605906,8.2995863,7.9907355,23,3,-82.570854,0,-9,-9,2021,6,0,20,20,1,0,0,6.3223877,6.3223877,.05,.05,.05,0,0,0,0,0,1,1,0,8.4458971,0,54.1,59.11,22.15,60.02,6.666666666666667,1,1,0,0,9,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13025,15885,28353,28352,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0907745,9.2186766,0,23,-3,102.08162,0,-9,-9,2021,35,12,49,49,1,12,0,22.112329,22.112329,0,0,0,0,0,0,0,0,1,1,0,5.202177,0,22.15,60.02,54.1,59.11,1.666666666666667,2,3,0,0,12,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13026,15886,28354,-9,-9,-9,1,1,38,0,0,0,1,1,1,0,3,9.586977,9.4535236,0,0,0,-1102.8464,-9,2,2,2021,9,2,76,0,1,2,0,24.481323,24.481323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,47.65,-9,-9,5,2,3,0,0,6,7,5,1,719,404467.38,89303.664,446532,302183.47,0,0,3743.075 +13027,15887,28355,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.7240968,5.5316257,0,0,-954.75085,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8729584,6.080708,49.1,20.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,2679,100285.99,6564.7651,46804.695,0,0,0,1403.2947 +13028,15888,28356,28357,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.3207674,4.6596971,10,3,151.09265,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,28.008234,0,0,1,1,0,0,5.2313433,55,45,59.61,41.45,8,1,1,0,0,0,2,2,1,671.5,88223.242,67863.078,0,0,0,0,657.13977 +13028,15888,28357,28356,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,10,-3,62.914814,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,18.606577,0,0,1,1,0,0,0,59.61,41.45,55,45,8.333333333333334,1,1,0,0,7,2,2,1,671.5,88223.242,67863.078,0,0,0,0,657.13977 +13029,15889,28358,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1186.7552,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.0661166,3.3567562,23.728153,0,1,1,0,0,0,30.24,36.75,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,576,434898.47,0,331759.44,0,0,0,1100.2452 +13030,15890,28359,28360,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3931522,6.5355167,48,-2,-150.16747,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7390034,5.8071752,54.2,57.49,54.18,50.75,8.333333333333334,1,1,0,0,4,6,3,1,524.5,949747.75,428602.81,340413,0,0,0,2770.5474 +13030,15890,28360,28359,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1617861,7.8035808,48,2,-26.551149,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5189576,54.18,50.75,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,524.5,949747.75,428602.81,340413,0,0,0,2770.5474 +13031,15891,28361,28362,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,6.8554511,6.8088226,0,2,9,103.5663,0,-9,-9,2021,9,0,45,35,1,1,0,2.7607214,2.7607214,.05,.05,0,0,0,0,0,0,0,0,0,7.5409913,0,51,56,51.83,57.2,8,1,1,0,0,4,9,3,0,347.5,124473.39,66430.117,0,0,7598.4688,0,2515.9248 +13031,15891,28362,28361,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.5041409,8.1728258,0,2,0,69.724426,0,2,3,2021,8,2,40,55,1,2,0,7.4098678,7.4098678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51,56,8.333333333333334,1,1,0,0,6,9,3,0,347.5,124473.39,66430.117,0,0,7598.4688,0,2515.9248 +13032,15892,28363,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-933.91559,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,374,-75797.969,0,0,0,0,0,1972.2633 +13033,15893,28364,28365,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.712903,8.6780109,0,14,-12,43.251831,0,2,3,2021,12,0,65,0,1,0,0,11.440138,11.440138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,54.96,53.17,6.666666666666667,1,1,0,0,12,7,5,1,269.5,1180339.5,427563.47,450322.06,17512.996,-2213.4802,4979.0332,4216.9907 +13033,15893,28365,28364,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4579716,8.5069313,0,13,12,41.70013,0,2,2,2021,6,0,62,60,1,0,0,9.5786963,9.5786963,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,43.54,59.6,8.333333333333334,1,1,0,0,13,7,5,1,269.5,1180339.5,427563.47,450322.06,17512.996,-2213.4802,4979.0332,4216.9907 +13034,15894,28366,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.4067879,8.8923712,6.9374194,0,0,-1003.8091,0,-9,-9,2021,7,0,38,40,1,0,0,13.078477,13.078477,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0627389,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,5930,187098.13,45804.938,293751.31,98721.273,6114.5493,0,1608.5215 +13034,15895,28367,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3076162,7.611403,6.8106012,0,0,-1105.2698,0,-9,-9,2021,23,11,30,27,1,11,0,5.4985805,5.4985805,.05,.05,0,0,0,0,0,0,0,0,0,7.2196202,6.53195,29.54,47.61,-9,-9,3.333333333333333,1,1,0,0,10,8,3,1,457,22173.154,-37407,0,0,0,0,1456.052 +13035,15896,28368,28369,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,53,-5,16.782459,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,49.03,34.15,10,1,1,0,0,0,7,2,0,1233,1098447.1,84519.672,840921.38,26879.816,0,0,1759.7889 +13035,15896,28369,28368,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.6942701,5.7782454,53,5,-53.079556,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5288882,49.03,34.15,57.73,54.53,8.333333333333334,1,1,0,0,7,7,2,0,1233,1098447.1,84519.672,840921.38,26879.816,0,0,1759.7889 +13036,15897,28370,28371,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.4482427,7.5633097,6,-5,8.3138256,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4424958,7.3892069,54.37,54.8,38.75,48.22,8.333333333333334,1,1,0,0,2,11,2,1,606,594142.75,283347.19,116942.14,0,0,0,2249.4023 +13036,15897,28371,28370,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,5,-13.504605,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1311901,0,38.75,48.22,54.37,54.8,3.333333333333333,1,1,0,0,0,11,2,1,606,594142.75,283347.19,116942.14,0,0,0,2249.4023 +13037,15898,28372,28373,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.1678586,7.2664337,42,-1,-63.448265,0,3,2,2021,17,5,0,23,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7781866,7.542542,45.39,40.29,37.19,34.68,5,1,1,0,0,12,12,3,1,594,1138177,638307,326524.31,68033.367,0,0,1937.8396 +13037,15898,28373,28372,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,7.1618629,7.3132238,42,1,-67.318962,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3325086,37.19,34.68,45.39,40.29,6.666666666666667,1,1,0,0,5,12,3,1,594,1138177,638307,326524.31,68033.367,0,0,1937.8396 +13038,15899,28374,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6740117,7.6462827,0,0,0,-992.62634,0,3,3,2021,11,0,40,42,1,0,0,7.3883901,7.3883901,0,0,0,0,0,0,0,0,0,0,0,1.4368993,0,56.76,44.55,-9,-9,5,1,1,0,1,12,6,3,1,850,132676,0,90573.391,14183.459,0,0,1429.8309 +13039,15900,28375,-9,-9,28378,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.04395,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28376,-9,-9,28378,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-986.48999,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28377,-9,-9,28378,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.78357,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28378,-9,-9,-9,1,1,23,1,3,0,2,2,-9,0,4,8.360899,8.335207,0,0,0,-878.68964,0,-9,-9,2021,12,0,45,50,1,0,0,14.028184,14.028184,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,6,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13040,15901,28379,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2602158,8.1887703,0,0,0,-963.83795,-9,-9,-9,2021,5,0,41,0,1,0,0,10.986403,10.986403,.05,.05,0,0,0,0,0,0,0,0,0,6.1026011,0,51.64,57.24,-9,-9,10,1,1,0,0,4,13,4,1,142,-41490.625,31551.469,0,0,0,0,2305.7483 +13041,15902,28380,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.6758657,7.6796336,0,0,-1041.8082,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,1.7728341,0,26.432615,0,1,1,0,4.5643091,7.7207575,34.03,18.62,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,1465,822123.88,375244.97,348232.56,0,0,0,1670.7095 +13042,15903,28381,28384,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,9.3476648,8.947216,0,3,-25,-46.124504,0,-9,-9,2021,7,0,48,50,1,0,0,21.300653,21.300653,0,0,.05,0,0,0,0,0,1,1,0,0,0,56.5,51,54.96,53.17,8.333333333333334,1,1,0,0,7,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28382,-9,28381,28384,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.5072,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28383,-9,28381,28384,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.7842,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28384,28381,-9,-9,1,1,57,2,2,0,2,2,-9,0,3,9.9463148,9.2048283,0,3,25,-5.0766935,0,3,2,2021,8,0,50,50,1,0,0,41.437527,41.437527,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,56.5,51,8.333333333333334,1,1,0,0,14,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13043,15904,28385,28386,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.205184,7.6855936,5.9759016,29,-1,48.099079,0,2,2,2021,14,3,17,32,1,3,0,12.534781,12.534781,.05,.05,0,0,0,0,0,0,1,1,0,6.0823445,0,42.94,42.84,58.08,43.46,3.333333333333333,1,1,0,1,8,12,4,1,1103.5,585598.5,483560.5,97666.031,10236.555,0,487.36792,2562.8853 +13043,15904,28386,28385,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.7013144,7.8019762,0,27,1,29.819218,0,2,2,2021,10,0,35,40,1,0,0,8.1975498,8.1975498,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.08,43.46,42.94,42.84,8.333333333333334,1,1,0,1,11,12,4,1,1103.5,585598.5,483560.5,97666.031,10236.555,0,487.36792,2562.8853 +13043,15905,28387,-9,28385,28386,1,1,25,0,0,0,2,2,-9,0,5,8.0272779,7.8896742,0,0,0,-1068.3468,0,2,2,2021,12,3,45,45,1,3,1,7.3716421,7.3716421,.05,.05,0,0,0,0,0,0,1,1,0,.53091592,0,47.45,47.37,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1245,-302779.16,97339.813,0,0,0,0,1226.3707 +13044,15906,28388,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.7525668,7.8254538,0,0,-1023.9156,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2896647,7.7319307,46.41,37.03,-9,-9,5,1,1,0,0,0,7,3,1,961,1030783.3,112551.47,576334.5,0,0,0,1866.3882 +13045,15907,28389,28390,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.8910995,7.0762901,28,10,-139.40208,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3706164,6.987011,62.49,55.09,57.16,56.15,10,1,1,0,0,4,9,2,1,1570,483736.38,290838.13,189549.84,0,0,0,690.69025 +13045,15907,28390,28389,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,28,-10,79.62439,0,3,2,2021,8,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,62.49,55.09,10,1,1,0,0,8,9,2,1,1570,483736.38,290838.13,189549.84,0,0,0,690.69025 +13046,15908,28391,28392,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,10,-6,1.0991576,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.7691364,1.3365028,21.651159,0,1,1,0,0,0,45.3,26.65,57.57,49.69,8.333333333333334,1,1,0,0,0,11,3,1,2214,1672666.5,345721.38,333385,0,6183.832,0,2533.7358 +13046,15908,28392,28391,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.3325539,8.3452215,10,6,-113.49224,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8374491,7.9293303,57.57,49.69,45.3,26.65,6.666666666666667,2,3,0,0,0,11,3,1,2214,1672666.5,345721.38,333385,0,6183.832,0,2533.7358 +13047,15909,28393,-9,28395,28394,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.58203,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28394,28395,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.6748314,7.6273699,0,6,6,56.329624,0,-9,-9,2021,5,0,37,35,1,0,0,8.6077156,8.6077156,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.98,59.35,48.77,60.16,8.333333333333334,1,1,0,0,3,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28395,28394,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,6,-6,-32.436504,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,46.98,59.35,8.333333333333334,1,1,0,0,6,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28396,-9,28395,28394,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.35602,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13048,15910,28397,28398,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,47,-1,-193.52954,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.57,52.23,8.333333333333334,1,1,0,0,7,10,2,1,731,108968.54,36593.707,0,0,0,0,1777.8502 +13048,15910,28398,28397,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,4.5008731,4.3207254,47,1,10.523709,0,1,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0513716,4.7423525,45.57,52.23,57.06,57.76,8.333333333333334,1,1,0,0,3,10,2,1,731,108968.54,36593.707,0,0,0,0,1777.8502 +13049,15911,28399,28400,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,9.5338278,9.3879499,0,34,3,11.13448,-9,-9,2,2021,6,0,10,0,1,0,0,194.04337,194.04337,.05,.05,0,0,0,0,0,0,0,0,0,2.4547608,0,59.88,16.23,49.41,58.28,6.666666666666667,1,1,0,0,9,10,5,1,984.5,1147928.3,835517.5,633578.13,277032,0,1025.5835,12696.215 +13049,15911,28400,28399,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0921021,9.3650417,0,10,-3,142.76572,0,-9,-9,2021,14,2,42,45,1,2,0,33.510639,33.510639,.05,.05,.05,0,0,0,0,0,0,0,0,8.0487947,0,49.41,58.28,59.88,16.23,10,1,1,0,0,11,10,5,1,984.5,1147928.3,835517.5,633578.13,277032,0,1025.5835,12696.215 +13050,15912,28401,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3679156,6.6279402,0,0,-971.76941,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2180419,52.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2105,-54766.82,98755.898,0,0,0,0,458.63019 +13051,15913,28402,28403,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.7995281,8.3646622,0,17,-1,97.523552,0,2,2,2021,8,0,40,40,1,0,0,18.493471,18.493471,.05,.05,0,0,0,0,0,2,0,0,0,4.6791439,0,55.36,51.57,54.1,59.11,8.333333333333334,1,1,0,0,8,4,5,1,344.5,2716387.5,2112683.5,397323.66,54687.852,0,0,6700.0107 +13051,15913,28403,28402,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,9.5135632,9.4226904,0,16,1,88.357033,0,2,1,2021,9,0,55,48,1,0,0,35.982349,35.982349,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,55.36,51.57,8.333333333333334,1,1,0,0,8,4,5,1,344.5,2716387.5,2112683.5,397323.66,54687.852,0,0,6700.0107 +13052,15914,28404,28405,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9943919,8.1135015,5.2531552,3,1,5.3617191,0,-9,-9,2021,10,0,40,40,1,1,0,8.9553595,8.9553595,.05,.05,0,0,0,0,0,0,0,0,0,5.9704819,5.5779667,51,48,58,37.34,7,1,1,0,0,1,1,4,1,1085.5,693886.88,627600,79850.391,34279.383,12500.516,0,2294.9329 +13052,15914,28405,28404,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9049149,6.4928107,0,39,-1,-35.885159,0,3,3,2021,11,0,16,26,1,0,0,5.0396681,5.0396681,0,0,0,0,0,0,0,0,0,0,0,0,0,58,37.34,51,48,8.333333333333334,1,1,0,0,2,1,4,1,1085.5,693886.88,627600,79850.391,34279.383,12500.516,0,2294.9329 +13053,15915,28406,28407,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5129318,8.4936075,0,33,-1,80.785164,0,-9,-9,2021,11,0,50,45,1,0,0,13.894865,13.894865,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,60.29,52.11,8.333333333333334,1,1,0,0,14,12,5,1,562,321077.19,193681.56,215496.22,91418.141,0,0,3557.1223 +13053,15915,28407,28406,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4591141,8.1943111,0,33,1,-35.366768,0,2,2,2021,12,0,40,40,1,0,0,12.296252,12.296252,0,0,0,0,0,0,0,2,0,0,0,2.0736516,0,60.29,52.11,58.15,52.91,8.333333333333334,1,1,0,0,14,12,5,1,562,321077.19,193681.56,215496.22,91418.141,0,0,3557.1223 +13053,15916,28408,-9,28407,28406,1,0,24,0,0,0,2,2,-9,0,4,6.1453571,6.1732793,0,0,0,-1006.6656,0,2,2,2021,9,2,35,35,1,2,1,1.9922729,1.9922729,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,3019,-48392.012,0,0,0,0,0,-9.403656 +13054,15917,28409,28410,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.7266564,7.5646501,0,13,1,-101.41887,0,-9,-9,2021,9,0,30,32,1,0,0,7.4191256,7.4191256,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.9,44,10,1,1,0,0,14,4,4,1,792,1360567,936189.63,403054.66,21068.121,11034.959,0,2394.9302 +13054,15917,28410,28409,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3281841,8.3463497,5.8928838,44,-1,117.2952,0,2,2,2021,7,0,39,39,1,0,0,15.027968,15.027968,.05,.05,0,0,0,0,0,0,0,0,0,0,6.4408984,54.9,44,58.15,52.91,6.666666666666667,1,1,0,0,14,4,4,1,792,1360567,936189.63,403054.66,21068.121,11034.959,0,2394.9302 +13055,15918,28411,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.8143883,7.9656897,0,0,-875.85205,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6902263,7.2332029,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,1242,990839.56,330891.41,378997.34,0,0,0,1481.7023 +13055,15919,28412,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-994.68726,-9,-9,-9,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9988747,0,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,1,8,1,1,3016,26017.064,0,0,0,0,0,226.14519 +13056,15920,28413,28414,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,9.241662,9.4229565,0,29,-4,-50.988682,0,2,2,2021,8,0,45,48,1,0,0,26.465675,26.465675,0,0,0,0,0,0,0,7,1,1,0,3.3583114,0,54.2,57.49,59.54,48.41,8.333333333333334,1,1,0,0,9,4,5,1,803,387079.25,222835.36,213562.27,94764.648,0,0,5763.0806 +13056,15920,28414,28413,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.6072607,8.2243834,29,4,-4.2782807,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.33407,8.6259909,59.54,48.41,54.2,57.49,10,1,1,0,0,6,4,5,1,803,387079.25,222835.36,213562.27,94764.648,0,0,5763.0806 +13057,15921,28415,28416,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6116381,8.5207958,0,1,1,-71.981102,-9,-9,-9,2021,7,0,76,0,1,0,0,8.6547594,8.6547594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,57.06,57.76,8.333333333333334,1,1,0,0,1,12,5,1,2275.5,1103697,365190.09,570967.25,77843.938,0,0,5625.2373 +13057,15921,28416,28415,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.9508314,8.9237862,6.2057452,1,-1,-75.224838,0,1,2,2021,9,0,55,53,1,0,0,16.753315,16.753315,.05,.05,0,0,0,0,0,0,0,0,0,6.3857965,0,57.06,57.76,51.77,58.57,8.333333333333334,1,1,0,0,8,12,5,1,2275.5,1103697,365190.09,570967.25,77843.938,0,0,5625.2373 +13058,15922,28417,28418,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.3159704,8.2745476,32,2,51.168674,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8959589,8.3477964,59.46,46.99,58.15,52.91,8.333333333333334,2,3,0,0,11,7,3,1,436.5,1715214.8,1003945.5,499157.31,0,0,0,3746.9229 +13058,15922,28418,28417,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,2,-2,-104.03802,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1559777,0,58.15,52.91,59.46,46.99,8.333333333333334,2,3,0,0,10,7,3,1,436.5,1715214.8,1003945.5,499157.31,0,0,0,3746.9229 +13058,15923,28419,-9,28418,28417,1,1,33,0,0,0,1,1,-9,0,4,9.1798801,8.6607761,0,0,0,-961.79242,0,2,1,2021,11,0,72,45,1,0,0,13.853246,13.853246,0,0,0,0,0,0,0,0,0,0,0,0,0,61.83,49.95,-9,-9,8.333333333333334,2,3,0,0,6,7,5,1,185,170042.44,-55859.742,474704.25,307698.97,0,8057.3159,2391.8489 +13059,15924,28420,28421,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.2723475,8.1851606,0,13,-1,8.3161383,0,2,1,2021,11,1,40,32,1,1,0,12.220597,12.220597,0,0,0,0,0,0,0,2,1,1,0,0,0,40.19,50.39,45.81,61.51,6.666666666666667,1,1,0,0,8,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28421,28420,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,9.2375479,9.1380548,0,13,1,-71.762779,0,2,3,2021,10,0,36,46,1,0,0,24.451534,24.451534,.05,.05,0,0,0,0,0,2,1,1,0,0,0,45.81,61.51,40.19,50.39,8.333333333333334,1,1,0,0,9,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28422,-9,28420,28421,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.66815,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28423,-9,28420,28421,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.36707,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13060,15925,28424,28425,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.4216185,9.577446,8.2983007,6,2,43.32222,0,-9,2,2021,10,0,50,50,1,0,0,22.636688,22.636688,.05,.05,0,0,0,0,0,7,0,0,0,0,8.2138062,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,1518.5,950559.25,644173.63,329239.06,0,5709.5366,0,5899.1113 +13060,15925,28425,28424,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.5428448,6.8624868,6.7012076,6,-2,-70.246368,0,2,2,2021,15,5,11,11,1,5,0,5.0350394,5.0350394,0,0,0,0,0,0,0,0,0,0,0,0,6.6319637,51.24,58.84,54.2,57.49,10,1,1,0,0,7,2,5,1,1518.5,950559.25,644173.63,329239.06,0,5709.5366,0,5899.1113 +13061,15926,28426,-9,28427,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.6917,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1006.5,301409.63,247848.66,142370.77,47150.688,4702.0786,0,2647.0569 +13061,15926,28427,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.9321651,8.7928219,5.4320426,0,0,-969.6239,0,2,2,2021,26,12,37,37,1,12,0,24.483753,24.483753,.05,.05,0,0,0,0,0,0,1,1,0,6.3209925,0,27.39,64.63,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,1006.5,301409.63,247848.66,142370.77,47150.688,4702.0786,0,2647.0569 +13062,15927,28428,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.4352379,7.4128404,0,0,0,-1161.6066,0,2,3,2021,12,0,28,30,1,0,0,8.5826902,8.5826902,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,7,13,3,0,228,272664.78,42606.738,0,0,7694.8232,0,1066.6031 +13062,15928,28429,-9,28428,-9,1,0,20,0,0,0,2,2,-9,0,4,6.8167357,6.9466233,0,0,0,-1032.5072,0,2,-9,2021,10,2,12,12,1,2,1,8.0871954,8.0871954,0,0,0,0,0,0,0,0,1,0,1,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,4,13,2,0,1033,343348.44,0,0,0,0,0,1018.2982 +13063,15929,28430,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.2801189,8.2929888,0,0,0,-1125.509,0,2,2,2021,12,0,40,40,1,0,0,11.188524,11.188524,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,3,13,4,0,845,58688.664,26958.818,150178.53,74825.289,0,0,1847.6156 +13064,15930,28431,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,3,7.0870953,7.3330879,5.6155791,0,0,-1112.5137,-9,2,2,2021,13,1,37,0,1,1,0,4.0267429,4.0267429,.05,.05,0,0,0,0,0,0,1,0,1,5.8134661,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13064,15930,28432,-9,28431,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.41064,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13064,15930,28433,-9,28431,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9348,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13065,15931,28434,28435,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,3.694643,3.8534725,9,-2,148.83806,0,3,3,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,1.077022,0,0,1,1,0,0,3.658211,37.74,27.39,52,47,6.666666666666667,1,1,0,0,0,13,2,1,305,149570.06,0,127400.96,0,0,0,1311.4377 +13065,15931,28435,28434,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,9,2,1.6363068,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,49.740276,0,0,1,1,0,0,0,52,47,37.74,27.39,7,1,1,0,0,3,13,2,1,305,149570.06,0,127400.96,0,0,0,1311.4377 +13065,15932,28436,-9,28434,28435,1,1,40,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1072.4633,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,56,-9,-9,7,1,1,0,0,0,13,1,1,734,239714.98,0,0,0,0,0,735.82208 +13065,15933,28437,-9,28434,28435,1,1,40,0,0,0,2,2,-9,0,3,7.3992147,7.1540799,0,0,0,-1014.8118,0,3,3,2021,10,0,30,20,1,0,0,6.6915946,6.6915946,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,2159,244974.13,-49576.441,0,0,0,0,514.56549 +13065,15934,28438,-9,28434,28435,1,1,36,0,0,0,2,2,-9,0,4,7.8520103,7.6257854,0,0,0,-978.51776,0,3,3,2021,10,0,40,40,1,1,0,7.8981981,7.8981981,.05,.05,0,0,0,0,0,2,1,1,0,2.9079938,0,50,57,-9,-9,7,1,1,0,0,10,13,3,1,1005,-103445.49,-92609.133,84575.242,84495.188,13001.156,0,1644.6385 +13066,15935,28439,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.5197783,9.4130602,0,0,0,-991.16064,0,2,2,2021,14,4,36,39,1,4,0,42.062824,42.062824,.05,.05,0,0,0,0,0,0,1,1,0,6.9604621,0,38.18,65.09,-9,-9,5,1,1,0,0,14,9,5,1,1047,753771.63,518922.94,322188.09,86897.664,12773.986,3590.1445,5027.1953 +13066,15936,28440,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,6.7419748,6.5257521,0,0,-1040.7894,0,2,2,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2717352,0,21.86,48.49,-9,-9,0,1,1,1,1,13,9,2,1,803,719254.69,650227.81,0,0,0,0,1148.7673 +13067,15937,28441,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.0512533,8.0264177,0,0,0,-993.86591,0,2,2,2021,11,0,37,35,1,0,0,12.078825,12.078825,.05,.05,0,0,0,0,0,0,0,0,0,2.9154243,0,38.69,61.75,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,289,686697.88,512145.63,0,0,0,0,1772.9702 +13068,15938,28442,28443,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0395122,7.0526648,11,0,54.90303,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5941329,7.0780864,60.12,54.8,44,24.49,10,1,1,0,0,8,5,3,1,327.5,1298907.3,745657.88,463012.56,0,0,843.97314,2009.3706 +13068,15938,28443,28442,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,6.9163752,7.2158871,11,0,-25.381392,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4777846,7.0039735,44,24.49,60.12,54.8,6.666666666666667,1,1,0,0,10,5,3,1,327.5,1298907.3,745657.88,463012.56,0,0,843.97314,2009.3706 +13069,15939,28444,28446,-9,-9,1,0,59,0,0,0,2,2,-9,1,4,0,5.5205173,5.8097754,43,-3,-41.875397,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.7153192,52.48,54.33,20.07,28.86,8.333333333333334,1,1,1,0,0,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13069,15939,28445,-9,28444,28446,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1055.9882,1,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,1,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13069,15939,28446,28444,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,43,3,1.4137836,0,3,3,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.07,28.86,52.48,54.33,1.666666666666667,1,1,0,0,0,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13070,15940,28447,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1064.6176,0,3,3,2021,17,3,0,0,4,3,0,0,0,0,0,0,1,0,3.6081202,0,0,1,1,0,0,0,25.38,30.76,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,683,210607.03,0,0,0,0,0,-161.74075 +13071,15941,28448,28449,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.670064,9.7529736,0,5,-2,-151.21234,0,2,2,2021,8,0,40,40,1,0,0,49.986843,49.986843,.05,.05,0,0,0,0,0,2,0,0,0,5.7326407,0,57.16,56.15,56.19,36.03,6.666666666666667,1,1,0,0,11,10,5,0,1122,817324.25,493168.69,264618.56,0,8619.2012,0,51078.078 +13071,15941,28449,28448,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.2780609,8.329771,0,5,2,-37.753643,0,-9,-9,2021,8,0,39,39,1,0,0,12.722644,12.722644,.05,.05,0,0,0,0,0,0,0,0,0,8.4137316,0,56.19,36.03,57.16,56.15,5,1,1,0,0,6,10,5,0,1122,817324.25,493168.69,264618.56,0,8619.2012,0,51078.078 +13072,15942,28450,28451,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.4254999,9.6926041,0,9,0,11.51974,0,2,2,2021,3,0,95,0,1,0,0,21.272816,21.272816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,43.63,51.59,8.333333333333334,1,1,0,0,5,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15942,28451,28450,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.7215967,9.8381205,0,9,0,-90.120461,0,2,3,2021,12,1,42,42,1,1,0,44.87048,44.87048,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.63,51.59,59.88,48.2,6.666666666666667,1,1,0,0,7,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15942,28452,-9,28450,28451,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1255.7177,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.59827542,0,41.3,60.77,-9,-9,10,1,1,0,0,0,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15943,28453,-9,28450,28451,1,1,19,0,0,1,3,0,0,0,4,0,4.587657,4.5262194,0,0,-959.4317,-9,1,1,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5700283,0,45.91,59.89,-9,-9,5,1,1,0,0,3,8,2,1,356,147198.61,0,0,0,0,0,-546.40125 +13073,15944,28454,28455,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,41,1,147.45665,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.02,7.46,42.51,50.99,6.666666666666667,1,1,0,0,10,1,4,1,703,1475037.8,1222679.8,159501.75,0,0,1308.394,2494.0742 +13073,15944,28455,28454,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0528107,8.8687954,7.0703659,41,-1,39.841526,0,3,2,2021,15,5,25,22,1,5,0,18.223776,18.223776,0,0,0,0,0,0,0,42,1,1,0,3.200515,7.3361654,42.51,50.99,61.02,7.46,5,1,1,0,0,10,1,4,1,703,1475037.8,1222679.8,159501.75,0,0,1308.394,2494.0742 +13074,15945,28456,28457,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.6103029,5.8280826,51,1,44.659924,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,1,0,1.1097239,0,0,1,1,0,4.0362148,5.8857889,32.95,20.3,54.2,57.49,1.666666666666667,1,1,0,0,0,9,5,1,317,1783712.8,877460.5,956347.94,0,0,0,5706.4199 +13074,15945,28457,28456,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.9536619,9.188447,51,-1,124.19075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.0986772,9.2365341,54.2,57.49,32.95,20.3,8.333333333333334,1,1,0,0,0,9,5,1,317,1783712.8,877460.5,956347.94,0,0,0,5706.4199 +13075,15946,28458,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.89465,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.23,27.55,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,624,28841.488,0,0,0,0,0,1514.7297 +13076,15947,28459,-9,28460,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5104,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,594.5,54340.57,-40817.523,323406.81,152529.47,0,0,7912.2842 +13076,15947,28460,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.4476967,8.7412357,7.2777972,0,0,-946.48669,0,-9,-9,2021,6,0,24,0,1,0,0,19.331966,19.331966,0,0,0,0,0,0,0,0,1,1,0,9.6471291,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,594.5,54340.57,-40817.523,323406.81,152529.47,0,0,7912.2842 +13077,15948,28461,-9,28463,28462,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.79926,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28462,28463,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.8681216,7.9069285,0,25,4,-152.95166,0,2,2,2021,8,0,50,50,1,0,0,5.4734855,5.4734855,.05,.05,0,0,0,0,0,0,1,1,0,.30166703,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28463,28462,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.8202314,8.6823025,0,25,-4,-138.94151,0,2,2,2021,9,0,60,50,1,0,0,14.571317,14.571317,.05,.05,0,0,0,0,0,0,1,1,0,2.841933,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,7,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28464,-9,28463,28462,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13078,15949,28465,28466,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.168108,8.5477705,5.7168651,26,-2,118.69488,0,3,3,2021,9,0,34,34,1,0,0,14.451246,14.451246,0,0,0,0,0,0,0,0,0,0,0,0,5.7772412,57.33,53.46,49.35,59.64,10,1,1,0,0,11,5,5,1,666.5,720923.88,599582,396676.78,256602.5,0,17993.834,3191.2954 +13078,15949,28466,28465,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.2584972,8.2921839,4.3629251,26,2,-28.848669,0,-9,-9,2021,11,0,44,40,1,0,0,9.6711864,9.6711864,.05,.05,0,0,0,0,0,0,0,0,0,5.5543561,4.9752426,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,11,5,5,1,666.5,720923.88,599582,396676.78,256602.5,0,17993.834,3191.2954 +13079,15950,28467,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,3.6394682,3.1091738,0,0,-849.3313,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9228456,3.1101167,49.99,36.78,-9,-9,5,1,1,0,0,0,13,2,1,694,374156.56,39807.879,186121.66,0,0,0,769.06708 +13080,15951,28468,-9,28469,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.6171,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13080,15951,28469,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.0294504,7.6125917,0,0,0,-835.31262,0,2,3,2021,12,1,25,27,1,1,0,12.089602,12.089602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13080,15951,28470,-9,28469,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7343,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13081,15952,28471,28472,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.2817354,7.1359048,60,3,85.055107,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9626882,7.5517044,46.67,55.57,60.05,24.25,8.333333333333334,1,1,0,0,0,5,3,1,1843.5,349338.97,146934.08,210326.34,0,0,0,1519.0228 +13081,15952,28472,28471,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.1824136,4.8091202,60,-3,-112.53482,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,12.776128,0,0,1,1,0,2.9247911,4.9704819,60.05,24.25,46.67,55.57,8.333333333333334,1,1,0,0,0,5,3,1,1843.5,349338.97,146934.08,210326.34,0,0,0,1519.0228 +13082,15953,28473,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1532316,8.4227104,5.842546,0,0,-979.61047,0,2,2,2021,6,0,38,38,1,0,0,8.1536093,8.1536093,0,0,0,0,0,0,0,0,0,0,0,6.0685186,6.0421219,56.71,35.18,-9,-9,6.666666666666667,3,4,0,1,9,8,4,1,278,855479.5,129148.1,634387.44,0,0,0,1109.9355 +13083,15954,28474,28475,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,6.2386813,7.0412784,6.6554632,43,-3,42.27346,0,3,3,2021,11,1,6,6,1,1,0,11.745638,11.745638,0,0,0,0,0,0,0,0,0,0,0,0,6.5250034,59.43,58.05,54,53,10,1,1,0,0,6,1,4,0,437.5,723901.69,610228.38,102016.36,42875.145,10143.732,0,1341.7921 +13083,15954,28475,28474,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9901295,8.0876617,0,43,3,18.214893,0,-9,-9,2021,6,0,37,37,1,0,0,10.382174,10.382174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,59.43,58.05,10,1,1,0,0,8,1,4,0,437.5,723901.69,610228.38,102016.36,42875.145,10143.732,0,1341.7921 +13084,15955,28476,28477,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.0368776,8.0192242,6,5,35.952591,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.9926715,54,53,57.16,56.15,8,1,1,0,0,7,10,4,1,648,551096.19,179090.3,263435.28,0,0,0,2397.2642 +13084,15955,28477,28476,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.8096566,8.018136,0,35,-5,54.304581,0,2,2,2021,8,0,33,40,1,0,0,9.2052174,9.2052174,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,8,10,4,1,648,551096.19,179090.3,263435.28,0,0,0,2397.2642 +13085,15956,28478,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.3563209,6.2167692,0,0,-955.66925,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8186927,6.2968802,53.98,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,1665,477074.84,31675.035,187006.84,0,0,0,-235.84018 +13086,15957,28479,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,3,8.2431679,8.5735922,7.7014098,0,0,-1063.6855,0,2,2,2021,26,10,38,20,1,10,0,11.882457,11.882457,.05,.05,0,0,0,0,0,0,1,1,0,8.1520042,0,21.07,60.89,-9,-9,6.666666666666667,1,1,0,1,11,9,4,1,377,441657.78,219168.38,375622.19,43398.992,5584.9868,774.24146,4899.2817 +13087,15958,28480,28481,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,49,-3,136.39322,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8653278,0,51.25,46.55,48.68,53.73,6.666666666666667,1,1,0,0,7,2,4,1,718.5,971993.75,710794.5,271978.81,0,0,0,3558.7249 +13087,15958,28481,28480,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,8.398036,8.6263714,0,49,3,-84.214302,0,3,3,2021,14,4,80,70,1,4,0,6.5783544,6.5783544,0,0,0,0,0,0,0,0,1,1,0,3.3455248,0,48.68,53.73,51.25,46.55,5,1,1,0,0,12,2,4,1,718.5,971993.75,710794.5,271978.81,0,0,0,3558.7249 +13088,15959,28482,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.4320993,6.3546047,0,0,-1047.8188,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,5.5153055,0,0,1,1,0,5.9525495,5.9932423,45.66,29.07,-9,-9,5,1,1,0,0,0,12,2,1,556,374247.47,106741,93324.133,0,0,0,215.35098 +13089,15960,28483,28484,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,1,-5,3.6950624,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.20039743,0,45,59,54.1,59.11,7,4,2,1,0,0,4,3,0,269,20292.355,2884.207,0,0,0,0,2123.7896 +13089,15960,28484,28483,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.0386333,8.1209888,0,1,5,-36.108398,0,1,1,2021,5,0,32,0,1,0,0,10.128144,10.128144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,45,59,8.333333333333334,1,1,0,0,11,4,3,0,269,20292.355,2884.207,0,0,0,0,2123.7896 +13090,15961,28485,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0148287,8.2712831,5.8515363,0,0,-1028.6395,0,-9,-9,2021,11,1,34,0,1,1,0,9.9205427,9.9205427,.05,.05,0,0,0,0,0,0,1,1,0,6.5432267,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,202,-57399.715,-45564.203,0,0,0,68.796555,1609.6946 +13091,15962,28486,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1449928,8.1746988,0,0,0,-1009.9587,0,2,2,2021,9,0,43,45,1,0,0,8.4039965,8.4039965,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,14,9,4,0,126,-192034.53,0,0,0,0,0,1683.0106 +13092,15963,28487,28488,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8877459,9.003088,0,18,0,41.708015,0,2,2,2021,7,0,28,48,1,0,0,26.963385,26.963385,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,59.53,56.44,8.333333333333334,1,1,0,0,9,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13092,15963,28488,28487,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.7549267,8.6952295,0,18,0,38.497429,0,2,2,2021,2,0,40,37,1,0,0,15.134109,15.134109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,48.87,58.55,6.666666666666667,1,1,0,0,8,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13092,15963,28489,-9,28487,28488,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.5276,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13093,15964,28490,28491,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,9.8929396,10.047738,8.9549417,32,0,-1.5690182,0,1,1,2021,8,0,45,43,1,0,0,40.212402,40.212402,0,0,0,0,0,0,0,0,0,0,0,9.3661003,5.7867217,57.66,47.89,60.02,56.42,8.333333333333334,1,1,0,0,12,8,5,1,1114.5,2468262,1328283.8,109868.54,0,0,0,22318.664 +13093,15964,28491,28490,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,9.4656687,9.5622549,7.6855226,4,0,-70.476089,0,-9,-9,2021,6,0,35,35,1,0,0,46.114258,46.114258,.05,.05,.05,0,0,0,0,0,0,0,0,9.8106575,7.39642,60.02,56.42,57.66,47.89,8.333333333333334,1,1,0,0,12,8,5,1,1114.5,2468262,1328283.8,109868.54,0,0,0,22318.664 +13094,15965,28492,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,4.9599771,4.9611144,0,0,-945.48987,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,4.6885233,30.44,36.36,-9,-9,0,1,1,1,1,0,2,2,1,352,112266.52,0,0,0,0,0,78.256516 +13095,15966,28493,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,0,0,0,0,-922.67963,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.8,46.31,-9,-9,10,3,4,0,0,14,8,1,0,1445,-162225.5,0,0,0,0,0,389.00049 +13096,15967,28494,-9,28495,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1050.0874,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,0,8,1,0,2313,-183507.92,0,0,0,0,0,1599.7841 +13096,15968,28495,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,0,0,-953.11853,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,8,1,0,907,32372.328,0,0,0,0,0,1428.3491 +13097,15969,28496,28497,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.910759,8.4834671,5.1846418,10,-5,79.816902,0,3,3,2021,15,3,52,45,1,3,0,13.203356,13.203356,.05,.05,0,0,0,0,0,27,1,1,0,0,5.0812244,39.62,31.99,44.49,37.85,5,1,1,0,0,9,6,4,0,875,328396.91,150295.13,83435.109,0,0,0,3008.0356 +13097,15969,28497,28496,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,10,5,-41.987095,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,2.4425068,0,0,1,1,0,0,0,44.49,37.85,39.62,31.99,6.666666666666667,4,5,0,0,9,6,4,0,875,328396.91,150295.13,83435.109,0,0,0,3008.0356 +13098,15970,28498,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.2235546,7.5946169,0,0,0,-975.42212,0,2,3,2021,6,0,30,28,1,0,0,9.3619967,9.3619967,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.32,46.98,-9,-9,6.666666666666667,3,4,0,0,14,8,3,1,1073,129611.24,55691.09,0,0,0,1932.5461,1329.4514 +13098,15971,28499,-9,28498,-9,1,0,21,0,1,0,2,2,1,0,1,0,0,0,0,0,-968.27112,-9,1,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.43,29.79,-9,-9,1.666666666666667,3,4,1,0,0,8,1,1,3184,92763.477,20556.764,0,0,0,-131.18384,415.37369 +13099,15972,28500,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.0965047,7.2330999,0,0,-1030.766,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9707065,53.72,24.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,852,330574.44,143381.28,99592.664,0,0,0,1491.4515 +13100,15973,28501,28502,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,12,-11,45.746326,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.04,55,54.79,55.86,8.333333333333334,1,1,0,0,0,7,2,1,443,1047744.1,10442.713,955580.13,31405.424,0,0,1502.7766 +13100,15973,28502,28501,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.1843052,5.9517803,12,11,32.889435,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9369831,54.79,55.86,51.04,55,10,1,1,0,0,0,7,2,1,443,1047744.1,10442.713,955580.13,31405.424,0,0,1502.7766 +13101,15974,28503,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.1511974,4.8680873,0,0,-988.96924,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0181677,5.1338606,44.32,38.2,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,349,109630.66,103699.79,156685.5,0,0,0,1118.4506 +13102,15975,28504,28505,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.1515188,8.911602,7.0469012,8,-3,-60.118088,0,3,3,2021,21,9,37,39,1,9,0,25.880671,25.880671,.05,.05,0,0,0,0,0,0,1,1,0,6.0438862,7.4721518,36.61,38.65,52.31,40.94,3.333333333333333,1,1,0,0,11,2,5,1,838.5,332940,64307.469,240320.09,0,0,0,3856.981 +13102,15975,28505,28504,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,1.6174724,2.2768743,8,3,10.462252,0,3,3,2021,11,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.4057727,2.1203909,52.31,40.94,36.61,38.65,6.666666666666667,1,1,0,0,2,2,5,1,838.5,332940,64307.469,240320.09,0,0,0,3856.981 +13103,15976,28506,28510,-9,-9,1,1,32,1,3,0,3,3,-9,0,4,8.1152925,8.1160202,0,13,0,45.04842,0,3,2,2021,10,0,43,43,1,1,0,9.3370352,9.3370352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,37,40.09,7,2,3,0,0,6,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28507,-9,28510,28506,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7427,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28508,-9,28510,28506,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.8993,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28509,-9,28510,28506,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.57941,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28510,28506,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,0,0,0,13,0,-8.3262491,0,3,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37,40.09,51,57,3.333333333333333,2,3,0,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13104,15977,28511,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.4895382,8.6068811,0,0,0,-1066.7384,-9,2,2,2021,11,2,42,0,1,2,0,10.149123,10.149123,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,46.89,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,884,-21423.777,97503.727,0,0,0,0,1222.4089 +13105,15978,28512,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1014.4764,0,-9,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.41,38.6,-9,-9,6.666666666666667,1,1,0,1,0,10,1,0,324,174332.11,0,283479.31,0,0,0,1284.1744 +13106,15979,28513,-9,28515,28514,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.261,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13106,15979,28514,28515,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.2214947,9.0497942,0,18,-7,-40.183308,-9,2,1,2021,14,2,45,0,1,2,0,16.413158,16.413158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.75,63.75,46.39,60.99,8.333333333333334,3,4,0,0,12,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13106,15979,28515,28514,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.0048752,7.790822,0,12,7,-35.307777,0,-9,-9,2021,12,0,20,19,1,0,0,15.746573,15.746573,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.39,60.99,37.75,63.75,6.666666666666667,1,1,0,0,15,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13107,15980,28516,28517,-9,-9,1,1,73,2,2,0,2,2,-9,0,1,0,7.9000974,7.8402739,52,3,-17.895906,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.576755,50.09,31.4,53.14,45.74,6.666666666666667,1,1,0,0,0,7,3,1,844.5,915157.19,606371.81,233276.8,0,0,0,2822.2288 +13107,15980,28517,28516,-9,-9,1,0,70,2,2,0,2,2,-9,0,3,6.2182522,6.4362645,0,52,-3,113.30149,0,-9,-9,2021,7,0,7,9,1,0,0,10.226217,10.226217,0,0,0,0,0,0,0,0,1,1,0,3.7105811,0,53.14,45.74,50.09,31.4,8.333333333333334,1,1,0,0,8,7,3,1,844.5,915157.19,606371.81,233276.8,0,0,0,2822.2288 +13108,15981,28518,28519,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.1138887,8.7144794,0,7,-4,-63.939949,0,2,2,2021,6,0,35,18,1,0,0,22.175674,22.175674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.39,56.71,0,4,2,0,0,11,4,5,1,1687,2327776,1420922.5,547311,0,0,0,6749.3037 +13108,15981,28519,28518,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.2237406,9.300663,0,7,4,14.564709,0,-9,-9,2021,6,0,35,40,1,0,0,36.496998,36.496998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.39,56.71,5,1,1,0,0,11,4,5,1,1687,2327776,1420922.5,547311,0,0,0,6749.3037 +13109,15982,28520,28521,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,7.1276779,7.348846,19,-11,-46.838634,0,2,3,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.083755,0,61.67,39.58,51,48,8.333333333333334,1,1,0,0,9,6,4,1,383.5,1014180.4,519780.31,451524.09,106727.41,0,4596.5078,3293.0088 +13109,15982,28521,28520,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.68398,8.3971272,0,7,11,-52.348583,-9,-9,-9,2021,10,0,40,0,1,1,0,14.177489,14.177489,0,0,0,0,0,0,0,0,0,0,0,7.2394147,0,51,48,61.67,39.58,7,1,1,0,0,1,6,4,1,383.5,1014180.4,519780.31,451524.09,106727.41,0,4596.5078,3293.0088 +13110,15983,28522,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7401824,8.0483055,6.758317,0,0,-876.83093,0,3,2,2021,11,0,35,35,1,0,0,7.1282187,7.1282187,0,0,0,0,0,0,0,0,1,1,0,6.4389277,6.4500928,45.18,54.77,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,425,383608.78,0,260792.66,0,0,0,1843.2491 +13111,15984,28523,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.7373161,8.8102884,0,0,0,-952.23364,0,1,2,2021,17,4,32,32,1,4,0,22.590471,22.590471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.28,61.68,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,574,365160.13,148851.89,0,0,0,0,2884.7949 +13112,15985,28524,28526,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.4374123,9.8146181,9.4345932,12,0,84.022781,0,-9,-9,2021,19,7,45,45,1,7,0,51.088196,51.088196,.05,.05,0,0,0,0,0,0,1,1,0,0,9.6009321,36.67,53.14,45.91,59.89,5,1,1,0,0,13,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13112,15985,28525,-9,28526,28524,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.44373,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13112,15985,28526,28524,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.4901485,7.3814573,0,12,0,-111.91605,0,1,1,2021,14,4,35,35,1,4,0,4.6146584,4.6146584,.05,.05,0,0,0,0,0,0,1,1,0,4.5188608,0,45.91,59.89,36.67,53.14,8.333333333333334,1,1,0,0,13,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13113,15986,28527,28528,-9,-9,1,1,53,0,2,0,2,2,-9,0,5,8.5630932,8.7384119,0,19,7,97.091522,0,3,2,2021,0,0,35,23,1,0,0,16.000713,16.000713,.05,.05,0,0,0,0,0,0,1,1,0,9.2609386,0,57.06,57.76,54.09,34.23,10,1,1,0,0,12,10,5,1,388.5,1130756.9,730983.63,273112.94,41966.664,0,1112.293,7040.7627 +13113,15986,28528,28527,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.8054428,8.7219687,0,19,-7,67.774864,0,1,2,2021,6,0,8,15,1,0,0,100.1508,100.1508,.05,.05,0,0,0,0,0,0,1,1,0,6.6835999,0,54.09,34.23,57.06,57.76,0,1,1,0,0,12,10,5,1,388.5,1130756.9,730983.63,273112.94,41966.664,0,1112.293,7040.7627 +13114,15987,28529,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.4327521,5.4419913,0,0,-1074.5917,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.916399,5.5651922,60.69,53.18,-9,-9,10,1,1,0,0,11,9,2,1,300,555212.69,400734.03,184727.7,81863.125,0,0,.50519437 +13115,15988,28530,-9,28532,28533,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6171,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28531,-9,28532,28533,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.76978,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28532,28533,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,6.7257166,6.5092168,0,9,5,21.616642,0,1,1,2021,8,0,11,0,1,0,0,8.6547718,8.6547718,0,0,0,0,0,0,0,2,1,1,0,2.8098764,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,6,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28533,28532,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.7521429,8.3934526,0,9,-5,19.468781,0,-9,-9,2021,10,0,40,39,1,0,0,15.603722,15.603722,.05,.05,.05,0,0,0,0,0,1,1,0,.91558522,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,9,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13116,15989,28534,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.4840555,8.4539404,0,0,0,-1031.2528,0,-9,-9,2021,15,4,39,37,1,4,0,19.802631,19.802631,.05,.05,0,0,0,0,0,0,0,0,0,1.2864074,0,34.87,54.25,-9,-9,3.333333333333333,1,1,0,0,8,4,5,0,2895,-126789.64,40472.461,25687.977,57118.742,0,0,1561.3799 +13117,15990,28535,28536,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.7554002,6.7341976,46,0,-83.01577,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.829989,34.99,34.34,38.89,16.13,8.333333333333334,1,1,0,0,0,5,2,0,682.5,254202.81,167859.63,75312.781,0,0,0,2767.8047 +13117,15990,28536,28535,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.8337922,6.6609888,46,0,10.980577,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,128.67743,0,0,1,1,0,0,6.5341454,38.89,16.13,34.99,34.34,6.666666666666667,1,1,0,0,0,5,2,0,682.5,254202.81,167859.63,75312.781,0,0,0,2767.8047 +13118,15991,28537,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.9276829,7.9804273,0,0,0,-963.20697,0,-9,3,2021,12,0,40,40,1,0,0,7.9559875,7.9559875,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,7,5,4,0,868,70193.289,103751.96,0,0,0,0,1402.4006 +13118,15992,28538,-9,-9,28537,1,1,26,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.965,0,-9,3,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.35,50.73,-9,-9,5,1,1,1,1,5,5,1,0,150,0,0,0,0,0,0,-34.340958 +13119,15993,28539,28540,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.4185562,5.5508595,48,-4,-25.610374,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9017572,5.6635275,62.03,36.18,58.72,51.29,8.333333333333334,1,1,0,0,0,10,4,1,777,1588034.6,1254267,307834.91,0,0,0,3506.2261 +13119,15993,28540,28539,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.3334904,8.5510788,48,4,-75.192513,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7065516,8.3102522,58.72,51.29,62.03,36.18,8.333333333333334,1,1,0,0,0,10,4,1,777,1588034.6,1254267,307834.91,0,0,0,3506.2261 +13120,15994,28541,-9,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,6.8022542,6.6716709,0,0,0,-1105.4203,0,3,2,2021,10,0,16,8,1,1,0,4.2390194,4.2390194,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,4,2,0,0,4,8,2,0,187.5,76003.68,0,0,0,0,0,1838.6189 +13120,15994,28542,-9,28541,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.20056,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,2,0,187.5,76003.68,0,0,0,0,0,1838.6189 +13121,15995,28543,-9,-9,-9,1,0,55,0,1,0,2,2,-9,1,3,0,0,0,0,0,-964.01636,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.53,51,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,968.5,194009.66,0,0,0,0,0,3794.2332 +13121,15995,28544,-9,28543,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.9951,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,968.5,194009.66,0,0,0,0,0,3794.2332 +13122,15996,28545,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6679306,8.650322,0,0,0,-979.22729,0,-9,-9,2021,18,5,40,40,1,5,0,18.611021,18.611021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.17,45.06,-9,-9,5,1,1,0,0,2,12,5,1,2451,248230.8,-35393.188,32039.848,81059.555,0,0,2369.2622 +13123,15997,28546,28547,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.810061,6.9943867,7,-5,-89.293526,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5391159,6.8695683,40.88,59.72,42.03,42.92,6.666666666666667,1,1,0,0,0,4,3,1,444,827945.63,546748.13,204409.89,0,0,0,2288.5891 +13123,15997,28547,28546,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.9267216,7.1899185,7,5,-10.690536,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1016712,7.0044932,42.03,42.92,40.88,59.72,5,1,1,0,0,0,4,3,1,444,827945.63,546748.13,204409.89,0,0,0,2288.5891 +13124,15998,28548,28549,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4462695,7.3452516,0,1,1,42.103104,-9,-9,-9,2021,10,0,36,0,1,1,0,4.7328801,4.7328801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,32.53,44.92,7,1,1,0,0,1,4,4,0,544,75522.18,21982.063,97606.828,37730.551,369.44257,0,2000.3843 +13124,15998,28549,28548,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,8.3004122,7.7203069,0,1,-1,144.00708,0,2,2,2021,17,5,24,38,1,5,0,12.739715,12.739715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.53,44.92,49,58,8.333333333333334,1,1,0,0,4,4,4,0,544,75522.18,21982.063,97606.828,37730.551,369.44257,0,2000.3843 +13124,15999,28550,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1081219,8.4949131,0,0,0,-1110.0446,0,-9,-9,2021,14,4,35,36,1,4,0,9.2317877,9.2317877,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,48.01,-9,-9,6.666666666666667,1,1,0,0,5,4,4,0,345,67104.039,0,0,0,0,0,988.28802 +13125,16000,28551,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-924.14197,0,3,2,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.81,39.12,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,611,222292.39,0,0,0,0,0,1684.2428 +13126,16001,28552,28553,28554,-9,1,1,66,0,0,0,2,2,-9,0,2,8.5744686,8.9398012,5.792192,30,0,4.6641355,0,3,-9,2021,18,5,50,100,1,5,0,10.598877,10.598877,.05,.05,.05,0,0,0,0,0,1,1,0,2.9415774,5.8320613,34.42,36.67,52,53,5,2,3,0,0,13,5,4,1,1061.5,155549.06,68515.242,0,0,8185.5352,13.897324,3657.3135 +13126,16001,28553,28552,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.9289365,6.6972499,30,0,90.29496,0,-9,-9,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4355927,52,53,34.42,36.67,1.666666666666667,2,3,0,0,3,5,4,1,1061.5,155549.06,68515.242,0,0,8185.5352,13.897324,3657.3135 +13126,16002,28554,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.3638282,5.5442638,0,0,-841.02472,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6808906,52,45,-9,-9,8,2,3,0,0,0,5,2,1,896,337163.06,-168780.69,210596.44,0,0,0,2093.0044 +13127,16003,28555,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.0034914,7.9917121,0,0,0,-1026.8696,0,-9,3,2021,17,5,50,60,1,5,0,8.0863876,8.0863876,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,64.88,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,575,397543.69,268504.66,0,0,0,0,611.96106 +13128,16004,28556,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-935.71771,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.25,55.21,-9,-9,5,1,1,0,1,0,1,1,0,3147,0,0,0,0,0,0,264.55615 +13129,16005,28557,-9,28558,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.60834,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,2,0,541.5,97336.75,0,0,0,12839.83,0,862.78735 +13129,16005,28558,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,0,0,0,0,0,-1069.993,-9,1,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.04,38.83,-9,-9,8.333333333333334,4,2,0,0,9,8,2,0,541.5,97336.75,0,0,0,12839.83,0,862.78735 +13130,16006,28559,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.9795599,7.705821,0,0,0,-947.36279,0,2,2,2021,12,0,48,48,1,0,1,8.8645334,8.8645334,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,1,6,4,4,1,2002,-19589.826,0,0,0,0,0,1063.0713 +13131,16007,28560,28561,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.0020094,8.7630539,0,1,1,-68.777885,-9,-9,-9,2021,8,0,40,0,1,0,0,21.136896,21.136896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,55.36,51.57,6.666666666666667,1,1,0,0,10,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13131,16007,28561,28560,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.2341194,7.211338,0,18,-1,58.545345,-9,2,2,2021,9,1,2,0,1,1,0,72.276047,72.276047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,46.33,55.93,8.333333333333334,1,1,0,0,10,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13131,16007,28562,-9,28561,28560,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1007.7285,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13132,16008,28563,28564,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,0,6.6362257,6.9798808,8,1,-81.956032,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.956636,7.3928504,57.33,53.46,62.18,36.18,8.333333333333334,1,1,0,0,8,5,3,1,628.5,924702.19,842768.63,142984.63,145920.38,4355.3965,0,1073.8612 +13132,16008,28564,28563,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.6248927,7.2084732,8,-1,-39.774624,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8572664,7.1038527,62.18,36.18,57.33,53.46,8.333333333333334,1,1,0,0,2,5,3,1,628.5,924702.19,842768.63,142984.63,145920.38,4355.3965,0,1073.8612 +13133,16009,28565,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.6915,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,30.1,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,813,-129407.05,0,0,0,0,0,0 +13134,16010,28566,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.3922563,7.2655196,0,0,0,-1034.7744,0,2,2,2021,10,0,15,15,1,0,0,9.7001972,9.7001972,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,1,6,9,3,0,745,171101.45,16811.879,231904.34,0,0,0,1009.6362 +13134,16011,28567,-9,28566,-9,1,0,27,0,0,0,2,2,-9,0,3,8.3777075,8.4716301,0,0,0,-956.82709,0,1,2,2021,17,5,32,36,1,5,1,19.660748,19.660748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.82,56.45,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,1347,33746.863,22276.967,0,0,0,0,2101.1074 +13135,16012,28568,28569,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.0656581,6.2326941,58,3,31.070221,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1376066,6.4292045,52.82,53.97,57.09,46.7,8.333333333333334,1,1,0,0,5,10,2,1,1316.5,669143.38,136642.08,434348.94,0,0,0,833.99591 +13135,16012,28569,28568,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.184803,6.315927,58,-3,-2.6807899,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2148147,57.09,46.7,52.82,53.97,10,1,1,0,0,5,10,2,1,1316.5,669143.38,136642.08,434348.94,0,0,0,833.99591 +13136,16013,28570,-9,28571,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.9231,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28571,28572,-9,-9,1,0,38,0,3,0,1,1,0,0,4,0,6.400207,6.6277089,2,-3,44.345123,-9,-9,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.406702,0,36.79,62.55,56.49,36.35,3.333333333333333,1,1,0,1,12,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28572,28571,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,7.7330227,7.9451499,0,2,3,-43.476173,0,2,2,2021,17,6,20,50,1,6,0,15.699835,15.699835,.05,.05,.05,0,0,0,1.3478074,2,1,1,0,0,0,56.49,36.35,36.79,62.55,8.333333333333334,1,1,0,0,11,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28573,-9,28571,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.6925,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13137,16014,28574,28575,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0355749,7.7213783,0,31,-1,98.957916,0,2,-9,2021,8,0,40,40,1,0,0,7.0456209,7.0456209,0,0,.05,0,0,0,0,0,0,0,0,9.2932615,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,326,457294.56,111929.97,334462.53,0,0,0,8107.1904 +13137,16014,28575,28574,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9776888,7.6627593,0,31,1,89.061142,0,2,2,2021,10,1,22,22,1,1,0,13.115811,13.115811,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,10,9,4,1,326,457294.56,111929.97,334462.53,0,0,0,8107.1904 +13137,16015,28576,-9,28575,28574,1,1,26,0,0,0,2,2,-9,0,3,8.1937609,8.3594685,0,0,0,-1008.4778,0,2,2,2021,10,0,39,43,1,0,1,10.323618,10.323618,.05,.05,0,0,0,0,0,0,0,0,0,5.0444465,0,51.17,49.39,-9,-9,6.666666666666667,1,1,0,0,4,9,4,1,598,-86747.484,24059.553,0,0,5167.9546,0,1574.436 +13137,16016,28577,-9,28575,28574,1,0,22,0,0,0,1,1,-9,0,4,7.9058599,8.1119537,0,0,0,-1119.3656,0,2,1,2021,11,0,38,38,1,0,1,8.8926258,8.8926258,.05,.05,0,0,0,0,0,0,0,0,0,5.2530842,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,444,54264.668,38353.781,0,0,0,0,1381.8456 +13138,16017,28578,28580,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,0,0,0,9,6,-122.82566,0,2,3,2021,10,1,0,0,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.99,51.28,48.29,49.79,6.666666666666667,1,1,0,0,6,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28579,-9,28580,28578,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.32965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28580,28578,-9,-9,1,0,32,0,2,0,1,1,-9,0,2,8.5574026,8.6860046,0,9,-6,15.68429,0,2,2,2021,8,1,47,51,1,1,0,15.716553,15.716553,0,0,0,0,0,0,0,0,1,1,0,0,0,48.29,49.79,52.99,51.28,6.666666666666667,1,1,0,0,8,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28581,-9,28580,28578,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.47906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13139,16018,28582,-9,28583,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.3471,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,525,708603.5,569368.25,286184.88,99571.031,2660.6885,10245.211,2272.5095 +13139,16018,28583,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,0,8.4080038,8.3521519,0,0,-1075.1981,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3140497,0,50.95,43.05,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,525,708603.5,569368.25,286184.88,99571.031,2660.6885,10245.211,2272.5095 +13140,16019,28584,-9,28588,28585,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.68304,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28585,28588,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,9.6920013,9.3838921,0,16,0,-50.525337,0,2,2,2021,11,0,84,70,1,0,0,14.162813,14.162813,.05,.05,0,0,0,0,0,2,1,1,0,4.545382,0,54.1,59.11,37.27,62.66,8.333333333333334,1,1,0,0,15,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28586,-9,28588,28585,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.0143,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28587,-9,28588,28585,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1156.3883,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28588,28585,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.1584997,7.293664,0,16,0,29.392536,0,2,2,2021,20,7,20,20,1,7,0,9.4263935,9.4263935,.05,.05,0,0,0,0,0,2,1,1,0,3.1322107,0,37.27,62.66,54.1,59.11,8.333333333333334,1,1,0,0,12,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13141,16020,28589,28590,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3458958,7.2298536,48,5,-27.177967,0,3,2,2021,7,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7400846,7.3222218,57,51,66.94,20.68,5,1,1,0,0,0,2,3,1,1633.5,423824.13,496196.75,35766.848,0,152444.97,0,2034.6261 +13141,16020,28590,28589,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.8537707,5.8093948,48,-5,136.65257,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7201743,5.7867875,66.94,20.68,57,51,8.333333333333334,1,1,0,0,0,2,3,1,1633.5,423824.13,496196.75,35766.848,0,152444.97,0,2034.6261 +13142,16021,28591,28592,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,9.1319571,9.416193,0,2,2,15.735443,-9,-9,-9,2021,18,6,80,0,1,6,0,15.786995,15.786995,.05,.05,0,0,0,0,0,0,0,0,0,1.5831596,0,52.89,22.95,43.61,56.01,8.333333333333334,1,1,0,0,12,12,5,1,1211,4540603.5,3891109,466465.88,232526.25,7788.8105,0,6493.4448 +13142,16021,28592,28591,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6117134,8.6738663,0,2,-2,67.895996,0,3,3,2021,14,3,38,38,1,3,0,19.165758,19.165758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,52.89,22.95,6.666666666666667,1,1,0,0,10,12,5,1,1211,4540603.5,3891109,466465.88,232526.25,7788.8105,0,6493.4448 +13142,16022,28593,-9,28592,28591,1,0,26,0,0,0,1,1,-9,0,2,8.1582613,7.9671426,0,0,0,-914.66675,0,2,-9,2021,14,3,37,37,1,3,1,9.366127,9.366127,0,0,0,0,0,0,0,0,0,0,0,0,0,28.6,53.56,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,724,-157277.31,0,0,0,0,0,879.94653 +13143,16023,28594,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.2096748,8.4871578,0,0,0,-962.21753,0,3,2,2021,11,1,49,55,1,1,0,8.6420584,8.6420584,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.17,51.53,-9,-9,6.666666666666667,2,3,0,0,13,8,4,0,1161,-56697.273,46909.625,0,0,0,0,2362.9692 +13144,16024,28595,28596,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9784455,7.1931696,7,2,42.657341,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9087892,6.873661,56.1,49.93,59.07,43.05,8.333333333333334,1,1,0,0,0,2,3,1,1189.5,699578.56,307841.78,197237.22,0,0,0,2489.6533 +13144,16024,28596,28595,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6274662,6.4272833,7,-2,11.400397,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9943166,6.6276889,59.07,43.05,56.1,49.93,8.333333333333334,1,1,0,0,0,2,3,1,1189.5,699578.56,307841.78,197237.22,0,0,0,2489.6533 +13145,16025,28597,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.1514,-9,1,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,8,1,1,326,69169.289,0,0,0,0,0,0 +13146,16026,28598,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.571476,7.0707135,0,0,-950.89673,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1338058,7.5228486,59.73,50.87,-9,-9,10,1,1,0,0,11,11,3,1,1924,71209.508,-40337.637,0,0,0,0,1080.0093 +13147,16027,28599,28600,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5106678,7.9235373,5,-3,192.08426,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5024233,7.5080061,51.83,57.2,51,48,8.333333333333334,1,1,0,0,1,5,3,1,983.5,878266.31,103404.58,314845,0,0,0,2640.9238 +13147,16027,28600,28599,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,5,3,-41.044228,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2382646,0,51,48,51.83,57.2,7,1,1,0,0,0,5,3,1,983.5,878266.31,103404.58,314845,0,0,0,2640.9238 +13148,16028,28601,-9,28604,28602,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.3502,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28602,28604,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.394475,9.3848619,0,14,1,40.255306,0,1,1,2021,20,7,50,50,1,7,0,29.571632,29.571632,.05,.05,0,0,0,0,0,0,0,0,0,7.8417268,0,26.01,63.78,48.18,61.8,5,1,1,0,0,9,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28603,-9,28604,28602,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6698,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28604,28602,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,14,-1,43.85873,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.5720425,0,48.18,61.8,26.01,63.78,8.333333333333334,1,1,0,0,2,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13149,16029,28605,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,6.0715904,5.9656615,0,0,-1079.5918,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0868483,52.9,39.64,-9,-9,5,1,1,0,0,0,6,2,1,4761,592863.75,43595.91,363551.59,0,0,0,1367.6942 +13150,16030,28606,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1553726,8.2975254,0,2,2,-10.940915,0,3,3,2021,11,0,38,38,1,1,0,15.429487,15.429487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,55,57.33,53.46,7,1,1,0,0,10,9,4,0,1624,78483.266,36736.07,0,0,0,0,1867.0857 +13150,16031,28607,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.9931574,8.1889524,0,2,-2,-38.009624,0,2,2,2021,3,0,37,38,1,0,0,10.097216,10.097216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49,55,8.333333333333334,1,1,0,0,10,9,4,0,1605,5715.7334,53912.527,0,0,5541.2012,0,1484.6587 +13151,16032,28608,28610,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.2445602,7.4330869,0,3,12,-27.910292,0,-9,-9,2021,6,0,60,60,1,0,0,4.5443172,4.5443172,0,0,0,0,0,0,0,0,1,0,1,0,0,47.58,63.43,60.02,56.42,8.333333333333334,1,1,0,0,2,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28609,-9,28610,28608,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.73499,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28610,28608,-9,-9,1,0,25,1,2,0,2,2,-9,0,5,6.9542732,7.0179586,0,3,-12,-52.481358,0,-9,-9,2021,6,0,16,28,1,0,0,10.07926,10.07926,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,47.58,63.43,8.333333333333334,1,1,0,0,11,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28611,-9,28610,28608,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.50793,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13152,16033,28612,28613,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.0692539,8.9211025,0,6,9,15.732875,0,2,2,2021,8,0,50,70,1,0,0,15.446717,15.446717,.05,.05,0,0,0,0,0,0,0,0,0,7.1708636,0,58.15,52.91,46.5,58.26,8.333333333333334,1,1,0,0,7,7,5,1,936.5,423533.19,10729.775,781018,295825.63,2950.1033,0,5133.2241 +13152,16033,28613,28612,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.3449259,8.1640701,0,6,0,45.247562,0,-9,-9,2021,12,0,42,52,1,0,0,12.542847,12.542847,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,58.15,52.91,6.666666666666667,1,1,0,0,3,7,5,1,936.5,423533.19,10729.775,781018,295825.63,2950.1033,0,5133.2241 +13153,16034,28614,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2147999,7.3061399,0,0,-1054.3633,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2159033,7.5376291,50.88,26.88,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,87,400000.41,20700.809,321607.22,0,0,0,2490.6462 +13154,16035,28615,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.099205,8.190033,0,0,0,-1044.9633,0,-9,-9,2021,12,0,74,38,1,0,0,5.0351782,5.0351782,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,616,-90018.266,0,0,0,0,0,872.65527 +13155,16036,28616,28617,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.2540026,8.6994228,0,4,-7,32.23888,0,2,2,2021,11,2,43,49,1,2,0,10.190065,10.190065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,51.77,58.57,8.333333333333334,1,1,0,0,9,7,5,1,521.5,22483.09,103086.65,0,0,8238.2852,0,3324.4138 +13155,16036,28617,28616,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.3169699,8.104207,0,4,7,36.162228,0,-9,-9,2021,10,1,42,50,1,1,0,10.791525,10.791525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.5,58.26,8.333333333333334,1,1,0,0,2,7,5,1,521.5,22483.09,103086.65,0,0,8238.2852,0,3324.4138 +13156,16037,28618,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,8.6319733,8.7184763,0,0,0,-1094.8995,0,2,2,2021,9,0,55,55,1,0,0,13.671401,13.671401,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,393,75145.125,-6358.6289,128018.3,70678.891,0,0,2417.4451 +13156,16037,28619,-9,28618,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-824.65887,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,393,75145.125,-6358.6289,128018.3,70678.891,0,0,2417.4451 +13157,16038,28620,-9,28621,28622,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2585,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28621,28622,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1440172,7.5309973,0,8,2,.19449227,0,-9,-9,2021,11,0,14,13,1,0,0,12.237726,12.237726,0,0,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,49.86,55.31,6.666666666666667,1,1,0,0,10,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28622,28621,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.50986,8.5026608,0,8,-2,-19.23192,0,-9,-9,2021,10,0,49,50,1,0,0,13.012434,13.012434,0,0,0,0,0,0,0,0,0,0,0,2.6659234,0,49.86,55.31,56.1,49.93,8.333333333333334,1,1,0,0,10,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28623,-9,28621,28622,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.95599,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13158,16039,28624,28625,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.3271503,8.6319256,0,7,-5,-175.32942,0,2,3,2021,7,0,10,12,1,0,0,48.173485,48.173485,0,0,0,0,0,0,0,7,1,1,0,0,0,56.94,49.53,56,37.82,10,1,1,0,0,8,5,4,1,1109.5,438707.94,125652.71,144464.13,0,2971.6099,0,3035.6362 +13158,16039,28625,28624,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.0614696,7.3691969,7,5,-33.931309,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9571071,7.5267816,56,37.82,56.94,49.53,8.333333333333334,1,1,0,0,2,5,4,1,1109.5,438707.94,125652.71,144464.13,0,2971.6099,0,3035.6362 +13159,16040,28626,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7775507,9.1777792,7.1686945,0,0,-946.84955,0,-9,-9,2021,10,0,42,42,1,0,0,17.160273,17.160273,.05,.05,0,0,0,0,.44210124,0,1,1,0,0,7.5558686,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,424,131047.21,57791.848,0,0,0,0,2914.0105 +13160,16041,28627,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.6095419,5.5460467,0,0,-1051.7603,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.050138,5.483398,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1467,1016426.7,49731.137,633771.31,0,0,0,597.77802 +13161,16042,28628,28630,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,9.3129463,9.3080826,0,10,-7,74.743187,0,2,3,2021,6,0,28,28,1,0,0,60.34782,60.34782,0,0,.05,0,0,0,0,0,0,0,0,5.8985987,0,57.06,57.76,47.01,44.8,8.333333333333334,1,1,0,0,11,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28629,-9,28628,28630,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1061.049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28630,28628,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.8064518,9.0292759,0,10,7,18.638288,0,2,1,2021,14,4,21,20,1,4,0,41.173916,41.173916,.05,.05,.05,0,0,0,0,0,0,0,0,5.6633973,0,47.01,44.8,57.06,57.76,6.666666666666667,1,1,0,0,11,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28631,-9,28628,28630,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-940.93427,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7069297,0,50.05,55.41,-9,-9,10,1,1,0,0,0,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13162,16043,28632,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.1010218,8.2454233,0,0,0,-1030.2765,0,2,2,2021,26,10,37,37,1,10,0,12.290185,12.290185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.3,38.76,-9,-9,3.333333333333333,1,1,0,0,12,10,4,1,677,775057.69,425866.03,231925.59,26568.623,0,0,2453.1804 +13163,16044,28633,28634,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.8703966,8.0882082,0,25,-2,-35.603397,0,1,1,2021,8,0,25,27,1,0,0,12.605488,12.605488,0,0,0,0,0,0,0,14.5,0,0,0,2.3783388,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,13,8,5,1,473.5,593936.63,242389.22,486732.03,84383.016,6098.6484,0,4641.1943 +13163,16044,28634,28633,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5990992,8.8076725,0,25,2,88.616562,0,2,3,2021,9,0,37,37,1,0,0,16.711542,16.711542,.05,.05,0,0,0,0,0,2,0,0,0,8.4244089,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,13,8,5,1,473.5,593936.63,242389.22,486732.03,84383.016,6098.6484,0,4641.1943 +13163,16045,28635,-9,28633,28634,1,0,19,0,0,0,2,2,-9,0,3,7.5886455,7.7370152,0,0,0,-998.97144,-9,1,1,2021,13,1,33,0,1,1,1,7.332212,7.332212,0,0,0,0,0,0,0,0,0,0,0,0,0,30.73,61.57,-9,-9,6.666666666666667,1,1,0,0,1,8,3,1,842,171949.31,0,0,0,0,0,1212.1062 +13164,16046,28636,-9,28638,-9,1,0,16,0,4,0,2,2,-9,0,3,0,4.614819,4.393805,0,0,-987.58698,-9,2,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6781902,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13164,16046,28637,28638,-9,-9,1,1,38,0,4,0,2,2,-9,1,2,0,0,0,4,4,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.38,46.32,25.1,30.31,3.333333333333333,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13164,16046,28638,28637,-9,-9,1,0,34,0,4,0,2,2,-9,1,2,0,0,0,4,-4,0,0,2,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.1,30.31,41.38,46.32,5,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13165,16047,28639,28640,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.9984484,8.2270212,0,29,5,-14.695862,0,3,2,2021,14,3,38,38,1,3,0,11.580617,11.580617,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,53.14,45.74,33.92,56.68,3.333333333333333,1,1,0,0,14,11,5,1,611,943261.25,799818.13,242306.19,0,0,0,4049.3074 +13165,16047,28640,28639,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.1696386,9.2754593,0,29,-5,93.067032,0,2,3,2021,17,6,38,38,1,6,0,26.311897,26.311897,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.92,56.68,53.14,45.74,8.333333333333334,1,1,0,0,13,11,5,1,611,943261.25,799818.13,242306.19,0,0,0,4049.3074 +13165,16048,28641,-9,28640,28639,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1075.491,-9,1,3,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4433923,0,32.7,60.75,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,1039,-60775.633,0,0,0,0,0,580.94708 +13165,16049,28642,-9,28640,28639,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-936.22296,-9,1,3,2021,13,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0451922,0,47.75,53.7,-9,-9,10,1,1,0,0,0,11,2,1,553,124037.13,0,0,0,0,0,1518.0922 +13166,16050,28643,28645,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,9.0930214,9.5049362,0,4,-2,-35.904499,0,3,2,2021,7,0,47,45,1,0,0,21.34157,21.34157,.05,.05,0,0,0,0,0,0,0,0,0,4.7315149,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13166,16050,28644,-9,28645,28643,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.10651,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13166,16050,28645,28643,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.0983558,6.9461312,0,4,2,-115.14209,0,-9,-9,2021,7,0,44,42,1,0,0,3.2070065,3.2070065,.05,.05,0,0,0,0,0,0,0,0,0,6.4994292,0,54.2,57.49,54.79,55.86,10,1,1,0,0,8,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13167,16051,28646,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.0195589,5.1351461,0,0,-1044.8011,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8080311,5.0135412,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,379,629430,33398.094,716861.44,0,0,0,1640.9265 +13168,16052,28647,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.6585832,5.6407208,0,0,-954.87878,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8099022,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,2447,362640.91,268777.72,148514.97,0,0,0,1431.9539 +13169,16053,28648,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.0433798,9.3233738,6.5970945,0,0,-1032.9822,0,2,2,2021,11,3,42,35,1,3,0,24.993053,24.993053,.05,.05,0,0,0,0,0,0,1,1,0,6.3334584,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,201,1298038.5,1043570,116747.09,53409.41,959.29932,0,3543.5522 +13170,16054,28649,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.3442283,7.5092554,6.5329986,0,0,-1093.7899,0,3,2,2021,19,4,25,25,1,4,0,8.8851995,8.8851995,0,0,0,0,0,0,0,0,1,1,0,0,6.7059841,46.09,20.01,-9,-9,3.333333333333333,1,1,0,0,11,2,3,1,1333,182912.33,10234.075,49494.648,0,0,742.12909,1295.5869 +13171,16055,28650,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.9885378,9.2496119,0,0,0,-1058.3324,0,-9,-9,2021,18,6,60,50,1,6,0,20.065271,20.065271,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,442,537125,332602.03,299559.47,202737.23,0,0,3215.1282 +13172,16056,28651,28652,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8383965,8.0542421,5.5564384,37,0,-102.68731,0,2,3,2021,8,0,23,23,1,0,0,12.937828,12.937828,0,0,0,0,0,0,0,0,0,0,0,4.3924332,5.8546157,54.2,57.49,60.26,41.6,8.333333333333334,1,1,0,0,13,9,3,1,1190.5,423826.44,238683.03,284891.06,140037.59,0,0,1796.9133 +13172,16056,28652,28651,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,38,0,71.558899,-9,3,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,0,0,60.26,41.6,54.2,57.49,8.333333333333334,1,1,1,0,12,9,3,1,1190.5,423826.44,238683.03,284891.06,140037.59,0,0,1796.9133 +13173,16057,28653,28654,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.2328916,6.0388579,49,4,83.179108,0,3,3,2021,11,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5689702,5.9353614,53.14,51.28,57.27,41.15,8.333333333333334,1,1,0,0,12,9,2,1,394.5,1040020.9,276933.56,313625.56,0,0,0,1874.5468 +13173,16057,28654,28653,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,5.4412847,6.1519661,6.1364012,49,-4,-16.835363,0,3,3,2021,7,0,2,3,1,0,0,16.985188,16.985188,0,0,0,0,0,0,0,0,1,1,0,5.6948094,5.8477097,57.27,41.15,53.14,51.28,8.333333333333334,1,1,0,0,12,9,2,1,394.5,1040020.9,276933.56,313625.56,0,0,0,1874.5468 +13174,16058,28655,28656,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3287506,8.0543747,0,21,0,-8.345314,0,-9,-9,2021,11,0,36,41,1,0,0,12.55664,12.55664,0,0,0,0,0,0,0,0,1,1,0,0,0,58.9,37.87,60.1,30.88,8.333333333333334,1,1,0,0,12,13,5,1,529.5,686390.88,390391.25,293464.38,96291.391,0,1589.1094,2999.9907 +13174,16058,28656,28655,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2812271,8.3880892,0,26,0,-82.272598,0,-9,-9,2021,7,0,37,37,1,0,0,13.93223,13.93223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.1,30.88,58.9,37.87,6.666666666666667,1,1,0,0,12,13,5,1,529.5,686390.88,390391.25,293464.38,96291.391,0,1589.1094,2999.9907 +13175,16059,28657,28658,-9,-9,1,0,70,1,0,0,1,1,-9,0,4,0,6.0780444,5.5397425,10,1,-86.32019,0,2,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8662882,5.7675886,54.2,57.49,43.32,52.98,6.666666666666667,1,1,0,0,4,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13175,16059,28658,28657,-9,-9,1,1,69,1,0,0,1,1,-9,0,3,0,7.2591214,7.7168007,10,-1,21.677031,0,-9,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.302237,43.32,52.98,54.2,57.49,3.333333333333333,1,1,0,0,6,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13175,16059,28659,-9,28657,28658,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1026.9994,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13176,16060,28660,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.76296,5.8880596,0,0,-1078.6466,0,-9,-9,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2226806,0,28.6,27.36,-9,-9,5,1,1,0,0,0,10,2,0,652,676659.38,162983.69,203372.77,0,0,0,1130.9971 +13177,16061,28661,-9,28663,28662,1,1,29,0,0,0,1,1,-9,0,2,7.4617844,7.2687187,0,0,0,-885.15369,0,1,1,2021,16,4,44,30,1,4,0,4.4877667,4.4877667,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.56,52.17,-9,-9,1.666666666666667,1,1,0,1,6,5,3,1,451,-58777.074,35230.176,0,0,1066.989,0,1101.76 +13177,16062,28662,28663,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,2,0,16.452538,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.98,44.6,8.333333333333334,1,1,0,0,0,5,5,1,1612.5,1913488.8,1117960.1,317170.75,0,0,0,3748.0596 +13177,16062,28663,28662,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,8.4140482,8.7481117,2,0,-81.926147,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8630192,8.9578142,41.98,44.6,54.2,57.49,6.666666666666667,1,1,0,0,0,5,5,1,1612.5,1913488.8,1117960.1,317170.75,0,0,0,3748.0596 +13178,16063,28664,28665,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,-1,-18.767195,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.7732377,0,55.25,25,64.55,36.47,6.666666666666667,2,3,0,0,0,8,2,1,137.5,-84455.102,0,0,0,0,0,1374.271 +13178,16063,28665,28664,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.6072807,4.6126275,8,1,-54.764297,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1023889,4.9380031,64.55,36.47,55.25,25,8.333333333333334,2,3,0,0,4,8,2,1,137.5,-84455.102,0,0,0,0,0,1374.271 +13179,16064,28666,-9,28667,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-935.62787,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,356.5,44008.617,0,0,0,0,0,1924.0525 +13179,16064,28667,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-931.99542,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.75,28.9,-9,-9,5,1,1,0,0,0,12,1,0,356.5,44008.617,0,0,0,0,0,1924.0525 +13180,16065,28668,28669,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2553296,7.2012086,35,6,6.9448957,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0733762,7.5789809,58.15,52.91,52.99,38.05,10,1,1,0,0,0,1,2,1,298.5,713298.63,249092.34,182064.41,0,0,0,2925.9028 +13180,16065,28669,28668,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,35,-6,1.8463962,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,38.05,58.15,52.91,6.666666666666667,1,1,0,0,0,1,2,1,298.5,713298.63,249092.34,182064.41,0,0,0,2925.9028 +13180,16066,28670,-9,28669,28668,1,0,28,0,0,0,1,1,-9,0,4,5.9342008,5.7663479,0,0,0,-975.53925,0,2,2,2021,14,3,15,0,1,3,0,2.6408753,2.6408753,0,0,0,0,0,0,0,0,1,1,0,4.601233,0,39.22,61.48,-9,-9,6.666666666666667,1,1,0,0,1,1,2,1,1803,-59008.238,0,0,0,0,0,26.841267 +13180,16067,28671,-9,28669,28668,1,1,25,0,0,0,1,1,-9,0,5,0,0,0,0,0,-846.57556,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,1,1,1,1294,-16985.791,0,0,0,0,0,0 +13181,16068,28672,-9,28673,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-955.58453,-9,3,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,658,88890.008,71030.656,40962.141,0,0,1657.7271,1742.157 +13181,16068,28673,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.4651914,7.6074114,0,0,0,-983.66327,0,2,2,2021,16,4,25,26,1,4,0,10.103797,10.103797,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.82,62.57,-9,-9,1.666666666666667,1,1,0,1,13,12,2,1,658,88890.008,71030.656,40962.141,0,0,1657.7271,1742.157 +13181,16069,28674,-9,28673,-9,1,0,22,0,1,1,2,0,0,0,5,0,0,0,0,0,-967.815,-9,3,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.61,61.54,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,807,110396.8,0,0,0,0,0,701.13129 +13182,16070,28675,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,2,7.9296746,8.2467299,0,0,0,-919.18738,0,3,-9,2021,26,10,40,40,1,10,1,7.9190845,7.9190845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.12,53.4,-9,-9,3.333333333333333,1,1,0,1,3,4,4,1,114,-236228.16,55493.152,0,0,0,0,633.89496 +13183,16071,28676,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1037.3667,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,24.23,-9,-9,5,1,1,1,1,1,12,1,0,313,260686.31,0,0,0,0,876.8559,794.69598 +13184,16072,28677,28678,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,33,3,-104.15772,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,42.555809,0,0,1,1,0,0,0,43.96,37.54,52.97,30.03,8.333333333333334,1,1,0,0,0,2,2,1,629.5,218438.75,0,141429.13,0,0,0,1213.2228 +13184,16072,28678,28677,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.8884835,4.9136505,33,-3,20.911375,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,14.156549,0,120,1,1,0,5.5811534,4.6688743,52.97,30.03,43.96,37.54,6.666666666666667,1,1,0,0,0,2,2,1,629.5,218438.75,0,141429.13,0,0,0,1213.2228 +13185,16073,28679,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2822714,8.5473814,0,0,0,-991.71753,0,2,2,2021,12,0,45,42,1,0,0,13.840327,13.840327,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,10,7,5,1,295,-2613.78,0,0,0,0,0,1859.491 +13186,16074,28680,28681,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.0940609,6.0393219,0,39,-2,-60.343838,0,3,3,2021,7,0,16,0,1,0,0,3.4630272,3.4630272,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.99,52.49,31.69,41.13,6.666666666666667,1,1,0,0,2,9,3,0,938,137437.52,-26131.18,0,0,0,0,1665.5012 +13186,16074,28681,28680,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,7.9668088,8.3184853,6.6060953,39,2,-38.197262,0,-9,3,2021,11,0,58,41,1,0,0,5.7865391,5.7865391,.05,.05,0,0,0,0,0,0,0,0,0,0,6.6273918,31.69,41.13,38.99,52.49,5,1,1,0,0,9,9,3,0,938,137437.52,-26131.18,0,0,0,0,1665.5012 +13186,16075,28682,-9,28680,28681,1,0,30,0,0,0,2,2,-9,0,3,8.0071135,7.8333602,0,0,0,-839.40576,0,2,3,2021,13,1,88,54,1,1,1,3.4995067,3.4995067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.79,57.73,-9,-9,5,1,1,0,0,8,9,3,0,1326,-101643.48,16615.713,0,0,-1041.0645,3306.635,963.98242 +13186,16076,28683,-9,28680,28681,1,1,23,0,0,0,2,2,-9,0,3,7.8177252,7.5715137,0,0,0,-1002.1504,0,2,3,2021,12,0,35,25,1,2,1,7.9381881,7.9381881,0,0,0,0,0,0,0,0,0,0,0,0,0,37.52,32.51,-9,-9,5,1,1,0,1,5,9,3,0,561,-51588.363,0,0,0,0,0,697.02563 +13187,16077,28684,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.0317407,7.04107,5.2558379,0,0,-920.11218,0,2,2,2021,6,0,20,20,1,0,0,7.0017161,7.0017161,.05,.05,0,0,0,0,0,0,1,1,0,4.802669,4.7546825,55.09,55.87,-9,-9,0,1,1,0,0,13,7,3,1,246,261349.5,213386.66,0,0,0,0,1509.0541 +13187,16078,28685,-9,28684,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1128626,8.0121374,0,0,0,-1002.0541,0,2,-9,2021,12,0,39,37,1,0,1,9.2876701,9.2876701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2204,155673.27,52295.289,0,0,0,0,906.91534 +13187,16079,28686,-9,28684,-9,1,0,21,0,0,0,2,2,-9,0,4,7.779676,7.668313,0,0,0,-1063.5413,0,2,-9,2021,16,6,16,-9,1,6,1,16.62079,16.62079,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,194,134912.06,-9264.3906,0,0,0,0,1090.077 +13188,16080,28687,-9,28689,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7396,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13188,16080,28688,-9,28689,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.13373,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13188,16080,28689,-9,-9,-9,1,0,25,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1006.0438,0,3,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,35.24,-9,-9,6.666666666666667,4,2,0,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13189,16081,28690,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.7275,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.641243,0,59.27,31.95,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,363,149734.69,0,0,0,0,0,-182.28325 +13190,16082,28691,28692,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.8192139,7.729465,0,30,-2,-37.330017,0,2,2,2021,19,7,35,34,1,7,0,7.2265115,7.2265115,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.33,56.18,42.39,50.87,6.666666666666667,1,1,0,0,15,6,4,1,240,92001.039,-24493.051,0,0,0,3684.4863,3144.8108 +13190,16082,28692,28691,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.1819906,8.2736149,0,30,2,-16.903637,0,2,2,2021,11,0,84,84,1,0,0,6.1068134,6.1068134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.39,50.87,36.33,56.18,8.333333333333334,1,1,0,0,15,6,4,1,240,92001.039,-24493.051,0,0,0,3684.4863,3144.8108 +13191,16083,28693,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,0,0,-882.19989,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.64,54.12,-9,-9,5,1,1,0,0,0,13,1,0,492,137090.75,0,0,0,0,0,395.29749 +13191,16083,28694,-9,28693,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9479,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,492,137090.75,0,0,0,0,0,395.29749 +13191,16084,28695,-9,28693,-9,1,1,23,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1000.8848,0,2,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1231,-220532.64,0,0,0,0,0,1270.1779 +13192,16085,28696,28697,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,6.386981,6.4816384,42,-1,83.883194,0,3,3,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2483821,39.26,31.07,44.75,56.39,6.666666666666667,1,1,0,0,9,1,5,1,818.5,973467.19,487630.41,357818.19,0,0,0,3443.8582 +13192,16085,28697,28696,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.0921421,9.05756,6.7628803,42,1,-14.192871,0,3,3,2021,14,2,41,44,1,2,0,25.707237,25.707237,0,0,0,0,0,0,0,0,0,0,0,7.6752348,7.3161845,44.75,56.39,39.26,31.07,6.666666666666667,1,1,0,0,10,1,5,1,818.5,973467.19,487630.41,357818.19,0,0,0,3443.8582 +13193,16086,28698,28700,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.0345454,6.9815192,0,8,0,25.009113,0,-9,-9,2021,12,0,4,0,1,2,0,26.12956,26.12956,0,0,.05,0,0,0,0,0,1,1,0,3.1040373,0,41.47,58.08,49.58,55.59,8.333333333333334,1,1,0,0,5,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28699,-9,28698,28700,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.76147,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28700,28698,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.1626768,9.1964626,0,8,0,-51.761772,0,2,2,2021,11,0,38,38,1,0,0,27.254299,27.254299,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.58,55.59,41.47,58.08,8.333333333333334,4,5,0,0,9,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28701,-9,28698,28700,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4537,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13194,16087,28702,28704,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.502739,8.5963707,0,10,7,-111.54372,0,1,2,2021,9,0,40,45,1,1,0,14.613054,14.613054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,41.62,42.02,8,1,1,0,0,1,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13194,16087,28703,-9,28704,28702,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.7916,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13194,16087,28704,28702,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,8.9142675,8.9905109,0,10,-7,-60.41983,0,-9,-9,2021,18,5,40,55,1,5,0,21.214596,21.214596,.05,.05,0,0,0,0,0,14.5,1,1,0,5.8765864,0,41.62,42.02,51,56,3.333333333333333,1,1,0,0,13,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13195,16088,28705,28706,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.1017637,6.0754375,50,-4,-55.158257,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9498162,57.33,53.46,54.89,44.93,10,1,1,0,0,4,12,4,1,385,1245954,567725,299803.44,0,0,0,3018.2483 +13195,16088,28706,28705,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.4353504,8.5068922,50,4,-33.376991,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3299074,54.89,44.93,57.33,53.46,8.333333333333334,1,1,0,0,1,12,4,1,385,1245954,567725,299803.44,0,0,0,3018.2483 +13196,16089,28707,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.5908394,7.80516,0,0,-940.68018,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7629781,7.983789,48.12,42.71,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,1389,1095899.9,430512.28,225500.22,0,0,-21.190187,2085.6643 +13197,16090,28708,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,4,0,6.9348588,6.9179072,0,0,-959.82861,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2881007,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,250,390429.75,251474.81,273831.97,0,0,0,1497.5223 +13197,16091,28709,-9,28708,-9,1,1,61,0,0,0,3,3,-9,0,3,7.8884287,7.8157749,0,0,0,-996.46906,0,3,2,2021,19,7,39,39,1,7,0,7.0316515,7.0316515,.05,.05,0,0,0,0,0,7,1,1,0,1.3119282,0,39.37,58.81,-9,-9,3.333333333333333,1,1,0,0,10,9,3,1,457,401936.56,216789.25,0,0,0,885.97742,816.80377 +13198,16092,28710,28714,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.1647081,8.4035139,0,5,1,3.4572177,0,3,2,2021,9,0,39,39,1,0,0,11.033716,11.033716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,47.84,63.41,39.7,1.666666666666667,1,1,0,0,8,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28711,-9,28714,28710,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.56317,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,58.79,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28712,-9,28714,28710,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3915,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28713,-9,28714,28710,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.2242,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28714,28710,-9,-9,1,0,45,0,3,0,2,2,-9,1,3,6.9558825,7.119679,0,5,-1,118.26902,0,3,2,2021,8,0,25,22,1,0,0,5.347446,5.347446,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,49.02,47.84,6.666666666666667,1,1,0,0,8,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13199,16093,28715,28716,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,6.7292504,6.3714089,0,6,3,19.40114,0,2,2,2021,8,0,45,45,1,0,0,1.8593262,1.8593262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.44,50.84,61.27,46.03,3.333333333333333,1,1,0,0,7,5,2,1,320.5,109128.44,17453.027,0,0,0,0,467.91983 +13199,16093,28716,28715,-9,-9,1,0,51,0,0,0,3,3,-9,1,4,0,0,0,6,-3,35.218109,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.9645553,0,61.27,46.03,41.44,50.84,8.333333333333334,1,1,0,0,1,5,2,1,320.5,109128.44,17453.027,0,0,0,0,467.91983 +13199,16094,28717,-9,28716,28715,1,1,24,0,0,0,2,2,-9,0,5,8.3949347,8.50387,0,0,0,-972.13568,0,3,3,2021,7,0,34,20,1,0,1,16.599775,16.599775,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,-9,-9,10,1,1,0,0,7,5,5,1,171,-41743.938,0,0,0,0,0,2152.9395 +13200,16095,28718,28719,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,-1,44.365395,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.26,16.35,55.78,47.42,10,1,1,0,0,0,6,2,1,213,378694.56,115124.09,137393.88,0,0,0,2189.2834 +13200,16095,28719,28718,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.0498409,7.4356322,43,1,-188.39075,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0929623,55.78,47.42,59.26,16.35,10,1,1,0,0,0,6,2,1,213,378694.56,115124.09,137393.88,0,0,0,2189.2834 +13201,16096,28720,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.4415712,8.3545542,0,0,-1100.475,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6623769,8.291729,50.62,53.79,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,238,555973.19,388866.31,392870.47,0,0,0,2191.3281 +13202,16097,28721,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.8840523,6.8585191,0,0,-976.70947,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9365783,6.6027226,59.48,46.97,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,220,190954.27,42980.656,0,0,0,0,1176.8147 +13203,16098,28722,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.25983,0,3,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,31.345869,0,0,1,1,0,0,0,23.4,23.46,-9,-9,0,1,1,0,1,2,1,1,1,585,0,0,0,0,0,0,709.41553 +13203,16099,28723,-9,28722,-9,1,0,26,0,0,0,2,2,-9,0,4,8.0648489,7.925271,0,0,0,-945.78857,0,3,3,2021,10,2,42,42,1,2,0,7.1155524,7.1155524,.05,.05,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,-9,-9,3.333333333333333,1,1,0,0,5,1,4,1,293,17661.145,0,0,0,0,338.01886,1053.4561 +13204,16100,28724,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.9893508,5.8168826,0,0,-980.04419,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3039799,56.6,33.83,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,314,558782.75,88449.227,153315.45,0,0,0,792.22394 +13205,16101,28725,-9,28726,28727,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.07507,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28726,28727,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3619146,8.1244202,0,10,0,-48.390102,-9,2,2,2021,8,0,20,0,1,0,0,25.811821,25.811821,.05,.05,0,0,0,0,0,0,0,0,0,6.8310652,0,44.49,61.79,51,56,10,1,1,0,0,6,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28727,28726,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4944954,9.8554697,0,1,0,135.47993,-9,-9,-9,2021,9,0,50,0,1,1,0,45.082626,45.082626,.05,.05,0,0,0,0,0,0,0,0,0,6.8554764,0,51,56,44.49,61.79,8,1,1,0,0,1,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28728,-9,28726,28727,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.36407,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13206,16102,28729,28730,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.0801511,7.1915708,0,2,0,46.758862,0,2,2,2021,6,1,24,25,1,1,0,5.3437262,5.3437262,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,51.83,57.2,10,2,3,0,0,7,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28730,28729,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,6.8937554,7.0541682,5.4458213,2,0,29.191334,0,2,2,2021,17,6,16,30,1,6,0,6.0526071,6.0526071,.05,.05,0,0,0,0,0,0,1,1,0,5.0541816,0,51.83,57.2,57.73,54.53,6.666666666666667,2,3,0,0,8,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28731,-9,28729,28730,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5116,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28732,-9,28729,28730,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.9363,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13207,16103,28733,28734,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.0565882,7.3795328,5.8413978,49,-4,93.853592,0,3,3,2021,9,0,20,25,1,0,0,7.5831542,7.5831542,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7439899,51.32,50.83,54.79,55.86,5,1,1,0,0,10,10,3,1,2254.5,374756.38,82905.711,262887.25,0,0,0,2714.0183 +13207,16103,28734,28733,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,7.6864185,7.4428434,0,49,4,69.905388,0,3,3,2021,7,0,45,40,1,0,0,4.5171628,4.5171628,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.32,50.83,1.666666666666667,1,1,0,0,11,10,3,1,2254.5,374756.38,82905.711,262887.25,0,0,0,2714.0183 +13208,16104,28735,28736,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,45,-5,18.71611,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9986503,0,52.4,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,483,1543546.3,659680.25,762714.75,0,0,0,4025.6841 +13208,16104,28736,28735,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,8.7784166,8.2898645,45,5,-71.339249,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0673723,8.4693327,57.16,56.15,52.4,52.91,8.333333333333334,1,1,0,0,0,4,4,1,483,1543546.3,659680.25,762714.75,0,0,0,4025.6841 +13209,16105,28737,-9,28739,28740,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.04187,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28738,-9,28739,28740,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1081.4797,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28739,28740,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,7.2575731,7.4004359,6.0967455,7,3,-52.530193,0,-9,-9,2021,10,0,25,30,1,0,0,6.3812399,6.3812399,.05,.05,0,0,0,0,0,0,1,1,0,6.9142489,0,60.44,46.58,30.14,51.22,8.333333333333334,1,1,0,0,7,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28740,28739,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.8668861,8.4747925,0,7,-3,77.716713,0,2,2,2021,12,0,42,42,1,0,0,15.939981,15.939981,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.14,51.22,60.44,46.58,3.333333333333333,1,1,0,0,13,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13210,16106,28741,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.7398405,5.9887943,0,0,-1076.6053,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6808462,5.8495941,57.18,42.93,-9,-9,10,1,1,0,0,0,6,2,1,1671,503262.38,-110930.09,252944.92,0,0,0,708.22644 +13211,16107,28742,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,5,0,4.562427,4.3969569,0,0,-961.42725,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8452187,0,50.98,50.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,704,360519.09,0,313453.25,0,0,-1287.1855,1625.8713 +13212,16108,28743,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.735568,8.842411,0,0,0,-1073.5267,0,1,2,2021,5,0,40,46,1,0,0,19.169867,19.169867,.05,.05,0,0,0,0,0,0,0,0,0,4.1426778,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,11,2,5,1,1192,873917.63,478996.41,303997.03,25121.674,0,0,3165.0681 +13213,16109,28744,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,6.575706,6.9738302,6.0776854,0,0,-1096.1044,0,2,2,2021,14,2,16,18,1,2,0,5.6705818,5.6705818,0,0,0,0,0,0,0,0,1,1,0,7.060791,0,47.32,42.17,-9,-9,3.333333333333333,1,1,0,0,2,7,2,0,1072.5,119855.15,0,0,0,0,4332.4502,1484.3901 +13213,16109,28745,-9,28744,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.13354,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1072.5,119855.15,0,0,0,0,4332.4502,1484.3901 +13214,16110,28746,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.6162767,8.7636747,5.8992505,0,0,-823.54059,0,2,3,2021,8,0,50,43,1,0,0,12.050337,12.050337,.05,.05,0,0,0,0,0,0,0,0,0,6.1998143,0,49,55,-9,-9,5,1,1,0,0,8,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13214,16110,28747,-9,28746,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-946.41559,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13214,16110,28748,-9,28746,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.6245,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13215,16111,28749,28750,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.9494095,9.1765299,0,7,2,-79.806725,0,3,3,2021,9,0,45,50,1,0,0,19.71501,19.71501,0,0,0,0,0,0,0,2,0,0,0,3.2495358,0,54.37,54.8,35.78,41.87,6.666666666666667,1,1,0,0,8,12,5,1,238,835524.56,638814.38,208640.3,0,25502.891,0,4872.978 +13215,16111,28750,28749,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.7574339,8.6821079,0,7,-2,-.60825837,0,3,3,2021,12,0,43,43,1,0,0,16.251831,16.251831,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.78,41.87,54.37,54.8,3.333333333333333,1,1,0,0,8,12,5,1,238,835524.56,638814.38,208640.3,0,25502.891,0,4872.978 +13215,16112,28751,-9,28749,28750,1,1,22,0,0,0,1,1,-9,0,5,8.0712166,8.1218319,0,0,0,-932.17035,0,1,2,2021,7,1,38,32,1,1,1,10.015192,10.015192,.05,.05,0,0,0,0,0,0,0,0,0,3.8938849,0,60.42,54.81,-9,-9,10,1,1,0,0,5,12,4,1,181,-132937.89,-48274.441,0,0,0,0,1636.3342 +13216,16113,28752,28753,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.7810888,8.9627066,0,1,-17,43.634315,-9,-9,-9,2021,11,1,44,0,1,1,0,15.948801,15.948801,.05,.05,0,0,0,0,0,0,1,1,0,6.339673,0,48.14,53.42,44.19,58.01,6.666666666666667,1,1,0,0,11,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16113,28753,28752,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.7090364,6.2950692,0,6,17,-71.827911,-9,3,2,2021,9,0,50,0,1,0,0,1.5233316,1.5233316,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.14,53.42,8.333333333333334,1,1,0,0,11,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16113,28754,-9,28753,28752,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.86755,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16114,28755,-9,28753,28752,1,0,19,0,1,0,2,2,-9,0,5,7.9924545,8.0546618,0,0,0,-932.26715,-9,2,2,2021,11,0,30,0,1,0,1,15.116519,15.116519,.05,.05,0,0,0,0,0,0,1,1,0,1.2794124,0,57.06,57.76,-9,-9,10,1,1,0,0,2,4,4,1,496,150908.89,-86628.953,0,0,0,0,1258.442 +13217,16115,28756,-9,28759,28757,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-989.58154,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28757,28759,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,0,0,0,19,-1,-90.594856,0,2,1,2021,7,0,0,30,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8323021,0,49.27,56.95,54.2,57.49,8.333333333333334,1,1,1,0,11,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28758,-9,28759,28757,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.02783,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28759,28757,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,8.1133451,8.1925983,0,19,1,-106.98463,0,1,1,2021,8,0,52,48,1,0,0,9.2814388,9.2814388,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.27,56.95,8.333333333333334,1,1,0,0,12,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28760,-9,28759,28757,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.0342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13218,16116,28761,28762,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-7,-19.961021,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7426116,0,58.87,51.29,52,47,8.333333333333334,1,1,0,0,2,13,3,1,623.5,1509283.9,1150146.9,373834.31,0,0,0,2943.8552 +13218,16116,28762,28761,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.3123989,8.1056547,0,42,7,-27.408123,0,3,3,2021,10,0,25,50,1,1,0,16.724014,16.724014,0,0,0,1,0,23.768131,0,0,1,1,0,0,0,52,47,58.87,51.29,7,1,1,0,0,9,13,3,1,623.5,1509283.9,1150146.9,373834.31,0,0,0,2943.8552 +13219,16117,28763,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.6939077,7.7370272,0,0,0,-900.7204,0,3,-9,2021,31,11,10,16,1,11,0,20.598898,20.598898,.05,.05,0,0,0,0,0,7,1,1,0,6.9988194,0,20.16,52.02,-9,-9,1.666666666666667,3,4,0,1,4,8,3,0,422,-79272.719,-34056.469,0,0,0,0,3205.3418 +13219,16117,28764,-9,28763,-9,1,1,17,0,0,1,2,0,0,0,4,0,5.1149969,5.4769511,0,0,-1054.9026,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7838573,0,49.35,59.64,-9,-9,6.666666666666667,4,2,0,0,0,8,3,0,422,-79272.719,-34056.469,0,0,0,0,3205.3418 +13220,16118,28765,28768,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.8323812,8.640316,0,3,-5,-124.59439,0,1,2,2021,6,0,43,42,1,0,0,16.81555,16.81555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.56,52.33,43.54,59.6,8.333333333333334,1,1,0,0,7,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28766,-9,28765,28768,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.0503,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28767,-9,28765,28768,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.1188,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28768,28765,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.6306181,8.5294752,0,3,5,-48.170433,0,-9,-9,2021,22,10,49,55,1,10,0,10.5879,10.5879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,53.56,52.33,1.666666666666667,1,1,0,0,9,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13221,16119,28769,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.0599742,6.94138,0,0,-1005.0089,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1338751,7.0352054,57.16,56.15,-9,-9,10,1,1,0,0,7,11,3,1,277,115930.12,31626.922,137750.48,0,34251.586,0,1771.6819 +13222,16120,28770,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.2091637,8.0768089,0,0,0,-1053.45,0,2,2,2021,9,1,50,60,1,1,0,8.1837711,8.1837711,0,0,0,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,237,-22245.73,0,0,0,0,0,455.27396 +13222,16121,28771,-9,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,6.8287258,6.6927676,0,0,-960.07672,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4430385,0,59.41,45.49,-9,-9,8.333333333333334,2,3,0,0,2,8,2,0,879,-36691.641,0,0,0,0,0,474.27884 +13222,16122,28772,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,4,7.7420425,7.782505,0,0,0,-1032.6201,-9,-9,-9,2021,13,3,40,0,1,3,0,7.94344,7.94344,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,40.35,-9,-9,8.333333333333334,2,3,0,0,1,8,3,0,1079,49463.031,0,0,0,0,0,1770.254 +13223,16123,28773,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5600557,9.9783783,9.0121632,0,0,-1101.0027,0,3,2,2021,21,9,37,37,1,9,0,41.563484,41.563484,.05,.05,0,0,0,0,0,0,0,0,0,9.2870665,8.7533321,23.22,61.16,-9,-9,3.333333333333333,1,1,0,1,13,9,5,1,638,1269512,250248.72,681342.06,0,0,0,10131.524 +13223,16124,28774,-9,-9,28773,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-905.98004,-9,-9,1,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.22227898,0,22.23,61.44,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,981,-62512.555,0,0,0,0,0,233.64713 +13224,16125,28775,28777,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.1678782,8.0729418,0,20,0,34.811501,0,2,2,2021,10,0,26,27,1,0,0,21.425001,21.425001,.05,.05,0,0,0,0,0,0,0,0,0,2.6368477,0,49.66,55.68,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13224,16125,28776,-9,28775,28777,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1080.6046,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13224,16125,28777,28775,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.5410213,8.4731207,0,19,0,-42.224972,0,-9,3,2021,12,0,38,37,1,0,0,13.765838,13.765838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49.66,55.68,5,1,1,0,0,13,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13225,16126,28778,28779,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.1344461,7.4309492,56,-1,21.632023,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0018282,7.1104984,51.88,42.11,48.18,50.46,8.333333333333334,1,1,0,0,4,7,2,1,1026.5,877782.25,383022.06,414786.5,0,0,0,1321.278 +13225,16126,28779,28778,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.2119498,4.2590652,56,1,49.471893,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5542505,4.0058017,48.18,50.46,51.88,42.11,8.333333333333334,1,1,0,0,0,7,2,1,1026.5,877782.25,383022.06,414786.5,0,0,0,1321.278 +13226,16127,28780,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.8130035,6.8340597,0,0,-1047.0016,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7547662,6.9335246,55,45,-9,-9,8,1,1,0,0,0,7,2,1,182,424086.5,112689.13,259234.27,0,0,0,1531.8678 +13227,16128,28781,-9,28784,28783,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.07581,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28782,-9,28784,28783,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.6492,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28783,28784,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,8.7230396,8.4624748,0,8,1,-54.006466,0,2,2,2021,10,0,100,65,1,0,0,5.6511083,5.6511083,.05,.05,.05,0,0,0,0,0,0,0,0,5.3014598,0,48.18,61.8,54.1,59.11,8.333333333333334,1,1,0,0,9,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28784,28783,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,7.4254651,7.0094447,0,8,-1,37.781078,0,-9,-9,2021,8,0,10,10,1,0,0,20.928896,20.928896,.05,.05,0,0,0,0,0,0,0,0,0,6.5136037,0,54.1,59.11,48.18,61.8,8.333333333333334,1,1,0,0,7,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28785,-9,28784,28783,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.61871,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13228,16129,28786,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.1984124,6.9498138,0,0,-1035.202,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9213052,44.46,38.2,-9,-9,6.666666666666667,4,2,0,0,0,8,2,1,818,896925.19,193610.8,597465.5,0,0,0,541.26709 +13229,16130,28787,28788,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.8392096,8.0825491,6,1,12.532871,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0104508,7.8709617,57.16,56.15,44.41,56.75,10,1,1,0,0,3,12,4,1,826,1047306.9,981776.25,240060.06,0,8925.7793,0,3207.0486 +13229,16130,28788,28787,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6758051,7.276083,6,-1,118.78761,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58672595,7.3577051,44.41,56.75,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,826,1047306.9,981776.25,240060.06,0,8925.7793,0,3207.0486 +13229,16131,28789,-9,28788,28787,1,1,37,0,0,0,1,1,-9,0,4,8.0107508,7.7304645,0,0,0,-1020.1597,0,1,1,2021,11,0,38,39,1,0,0,9.9785299,9.9785299,0,0,0,0,0,0,0,0,1,1,0,5.9443669,0,42.37,55.29,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,576,55247.742,15536.517,0,0,12818.173,0,1326.5162 +13230,16132,28790,-9,28792,28791,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.07483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13230,16132,28791,28792,-9,-9,1,1,38,1,1,0,2,2,-9,0,5,8.1011286,8.0883884,0,10,0,-32.91296,0,1,2,2021,12,0,44,92,1,0,0,9.9858389,9.9858389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.91,43.16,52.6,52.88,8.333333333333334,1,1,0,0,9,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13230,16132,28792,28791,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,7.7461658,7.4590974,0,10,0,-51.621014,0,3,3,2021,9,0,41,36,1,0,0,6.1495056,6.1495056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,55.91,43.16,8.333333333333334,1,1,0,0,9,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13231,16133,28793,28794,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.8423862,8.5983524,0,8,0,21.791771,0,-9,-9,2021,9,0,43,48,1,0,0,17.258545,17.258545,0,0,0,0,0,0,0,0,1,1,0,1.5012524,0,55.19,54.26,38.69,61.75,8.333333333333334,1,1,0,0,5,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13231,16133,28794,28793,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.0417008,7.285274,0,8,0,70.700127,0,2,2,2021,9,0,16,20,1,0,0,9.0172663,9.0172663,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,55.19,54.26,8.333333333333334,1,1,0,0,10,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13231,16133,28795,-9,28794,28793,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.9618,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13232,16134,28796,28797,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.0870366,7.1245184,7,1,.78377974,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3086309,6.9647865,53,47,59.3,39.29,7,1,1,0,0,0,10,2,1,2665,745700.31,257187.22,137002.91,0,0,0,1893.6013 +13232,16134,28797,28796,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,7,-1,32.247654,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6989868,0,59.3,39.29,53,47,8.333333333333334,1,1,0,0,0,10,2,1,2665,745700.31,257187.22,137002.91,0,0,0,1893.6013 +13233,16135,28798,28799,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.8466272,6.7518401,0,8,-5,3.4202642,0,-9,-9,2021,34,12,16,0,1,12,0,8.1190271,8.1190271,.05,.05,0,0,0,0,0,0,0,0,0,3.1508265,0,28.37,42.65,55.19,54.26,1.666666666666667,1,1,0,1,12,5,5,1,536.5,1820590.5,1651406.3,335665.31,0,0,0,3472.8643 +13233,16135,28799,28798,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6502724,8.9376478,7.655519,8,5,-67.0839,0,2,2,2021,8,0,42,42,1,0,0,15.941114,15.941114,.05,.05,0,0,0,0,0,0,0,0,0,6.8628612,8.1172714,55.19,54.26,28.37,42.65,8.333333333333334,1,1,0,0,13,5,5,1,536.5,1820590.5,1651406.3,335665.31,0,0,0,3472.8643 +13234,16136,28800,28801,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.8390856,6.2560024,60,-5,.18769509,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1668768,6.2045178,42.93,31.66,55.47,52.91,8.333333333333334,1,1,0,0,12,12,2,1,1032.5,255394.53,108633.23,137042.84,0,0,0,1429.3557 +13234,16136,28801,28800,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0048137,6.7628279,60,5,83.005028,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1076171,7.0823665,55.47,52.91,42.93,31.66,8.333333333333334,1,1,0,0,0,12,2,1,1032.5,255394.53,108633.23,137042.84,0,0,0,1429.3557 +13235,16137,28802,28803,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.5963292,7.933229,41,5,-100.74424,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6920695,61.12,51.57,58.15,52.91,10,1,1,0,0,6,1,5,1,1025,1450650,1273387.5,199458.06,0,-570.13733,0,3798.8145 +13235,16137,28803,28802,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5637894,8.9039774,6.7502623,41,-5,-13.170264,0,3,3,2021,6,0,38,37,1,0,0,14.546869,14.546869,0,0,0,0,0,0,0,0,1,1,0,0,6.9998994,58.15,52.91,61.12,51.57,8.333333333333334,1,1,0,0,9,1,5,1,1025,1450650,1273387.5,199458.06,0,-570.13733,0,3798.8145 +13235,16138,28804,-9,28803,28802,1,1,28,0,0,0,1,1,-9,0,5,8.3161306,8.2232418,0,0,0,-1013.5829,0,2,2,2021,2,0,50,62,1,0,1,8.7488489,8.7488489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,6,1,4,1,510,-25016.365,84709.484,0,0,0,0,1535.5159 +13236,16139,28805,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6728363,9.0636234,0,0,0,-1015.9943,0,1,2,2021,8,0,42,39,1,0,0,14.868019,14.868019,.05,.05,0,0,0,0,0,0,0,0,0,8.917963,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,121,468082.66,-118087.14,393948.81,146383.36,0,0,2655.1309 +13237,16140,28806,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6156716,6.8672323,0,0,-899.4035,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5565696,7.205627,58.56,41.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1675,415091.03,53927.953,260421.47,0,0,0,388.43411 +13238,16141,28807,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,4,0,0,0,0,0,-945.52673,0,-9,-9,2021,6,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,2,4,1,0,773,6587.6597,0,0,0,0,2012.2565,882.32855 +13238,16142,28808,-9,28807,-9,1,1,18,0,0,0,2,2,-9,0,5,7.7871404,7.9088788,0,0,0,-916.05359,0,3,-9,2021,6,0,50,0,1,0,1,6.7286086,6.7286086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,0,4,4,0,891,-119072.8,25211.367,0,0,2072.3765,0,1259.6422 +13239,16143,28809,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,4.9721203,5.4931569,0,0,-920.72302,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,17.023924,0,150.31778,0,1,1,0,4.358459,4.959775,52.8,19.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,127,38829.055,0,161619.97,0,0,0,957.9046 +13240,16144,28810,-9,-9,-9,1,1,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-898.30737,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,478,203134.61,0,135588.73,0,0,0,0 +13240,16145,28811,-9,-9,-9,1,0,19,0,4,0,2,2,1,0,4,8.1138258,8.0993252,0,0,0,-965.77136,-9,1,-9,2021,6,0,33,0,1,0,1,12.390069,12.390069,.05,.05,0,0,0,0,0,0,1,1,0,.29018039,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,644,142787.36,39848.121,0,0,0,0,962.89435 +13241,16146,28812,28813,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0692596,8.1825924,0,3,-3,56.095898,0,2,2,2021,9,0,45,43,1,0,0,10.570645,10.570645,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,664,15961.722,20727.096,114891.6,115703.77,6639.3066,0,2761.8765 +13241,16146,28813,28812,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.8629723,8.1070623,0,3,3,114.56203,0,-9,-9,2021,7,0,40,40,1,0,0,10.770501,10.770501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.09,55.87,8.333333333333334,1,1,0,0,7,4,4,0,664,15961.722,20727.096,114891.6,115703.77,6639.3066,0,2761.8765 +13242,16147,28814,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,6.9473443,7.0609393,0,0,0,-1107.087,0,2,2,2021,35,12,55,-9,1,12,0,2.2477067,2.2477067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,11.71,59.88,-9,-9,1.666666666666667,1,1,0,1,13,6,2,0,731,231883.27,74883.977,0,0,0,0,951.71887 +13243,16148,28815,28816,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8270712,9.0199165,5.5502048,37,3,-4.1565742,0,2,-9,2021,6,0,42,42,1,0,0,18.783039,18.783039,.05,.05,.05,0,0,0,0,0,1,1,0,5.6353388,5.6887779,57.33,53.46,31.1,40.06,5,1,1,0,0,14,6,4,1,345,301703.84,96867.438,74484.656,0,0,868.76855,2865.0786 +13243,16148,28816,28815,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,36,-3,76.705482,0,3,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,31.1,40.06,57.33,53.46,3.333333333333333,1,1,0,0,13,6,4,1,345,301703.84,96867.438,74484.656,0,0,868.76855,2865.0786 +13244,16149,28817,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,7.865541,7.7852464,0,0,-914.82422,1,2,2,2021,6,0,0,56,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.4671021,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,10,3,0,1399,714412.38,496742.5,-9976.9854,55460.453,14099,0,417.49088 +13245,16150,28818,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.5292,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,2.733011,0,0,1,1,0,0,0,32.47,38.38,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1956,208772.67,0,172157.75,0,0,0,1617.5018 +13245,16151,28819,28820,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7154856,7.5051503,0,6,-4,-79.331467,0,-9,-9,2021,8,0,40,37,1,0,0,6.8455391,6.8455391,0,0,0,0,0,0,0,2,1,1,0,0,0,41.85,59.17,33.37,57.87,8.333333333333334,1,1,0,0,4,10,4,1,616.5,374401.81,47817.18,268442.41,47343.477,9258.3184,0,1586.522 +13245,16151,28820,28819,28818,-9,1,1,57,0,0,0,3,3,-9,0,5,8.0525045,8.0332718,0,6,4,-105.58247,0,3,3,2021,12,1,30,39,1,1,0,10.309637,10.309637,0,0,0,0,0,0,0,7,1,1,0,0,0,33.37,57.87,41.85,59.17,8.333333333333334,1,1,0,0,6,10,4,1,616.5,374401.81,47817.18,268442.41,47343.477,9258.3184,0,1586.522 +13246,16152,28821,28822,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.8708134,7.0323582,10,2,-28.612751,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1144867,7.3755431,62.66,41.87,33.55,29.48,10,1,1,0,0,0,1,3,1,887,1212419,484458.13,225280.38,0,0,0,2679.8613 +13246,16152,28822,28821,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0130877,7.3749294,24,-2,-.89099205,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4274626,33.55,29.48,62.66,41.87,6.666666666666667,1,1,0,0,10,1,3,1,887,1212419,484458.13,225280.38,0,0,0,2679.8613 +13247,16153,28823,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.6360302,9.1536798,8.416501,9,18,12.765037,0,3,3,2021,12,0,35,40,1,0,0,21.319096,21.319096,0,0,.05,0,0,0,0,0,0,0,0,.9090814,8.2777081,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,440,24479.219,12590.947,162714.89,86631.781,0,16898.176,4201.1162 +13247,16154,28824,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6516457,8.4062853,0,9,-18,49.250587,0,2,2,2021,6,0,40,44,1,0,0,14.439677,14.439677,.05,.05,.05,0,0,0,0,0,0,0,0,1.02675,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,10,4,5,1,555,801523,236018.77,271778.66,0,0,0,1653.4987 +13248,16155,28825,28827,-9,-9,1,1,63,0,2,0,2,2,-9,0,3,8.2092915,7.9861455,0,10,22,57.041855,0,2,2,2021,7,0,38,37,1,0,0,7.9644804,7.9644804,0,0,0,0,0,0,0,0,1,1,0,0,0,48.14,44.28,32.68,55.45,6.666666666666667,3,4,0,0,9,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28826,-9,28827,28825,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.92188,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28827,28825,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.7417526,7.6065526,0,10,-22,18.007212,0,3,3,2021,13,2,37,40,1,2,0,5.7099686,5.7099686,0,0,0,0,0,0,0,0,1,1,0,0,0,32.68,55.45,48.14,44.28,3.333333333333333,3,4,0,1,3,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28828,-9,28827,28825,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.9325,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13249,16156,28829,28830,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.1152325,7.82375,30,10,-27.915709,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.7382283,45.32,54.77,50.05,55.41,8.333333333333334,1,1,0,0,8,9,3,1,625,995727.63,523925.13,378254.69,0,0,0,2660.9719 +13249,16156,28830,28829,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,5.5647593,5.7862134,0,30,-10,-26.751842,0,-9,-9,2021,12,0,6,6,1,0,0,5.0003452,5.0003452,.05,.05,0,0,0,0,0,42,1,1,0,1.1080629,0,50.05,55.41,45.32,54.77,8.333333333333334,1,1,0,0,9,9,3,1,625,995727.63,523925.13,378254.69,0,0,0,2660.9719 +13249,16157,28831,-9,28829,28830,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-901.52435,0,1,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,2,1,298,0,0,0,0,0,0,0 +13249,16158,28832,-9,28829,28830,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1015.7854,0,1,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.317111,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,596,0,0,0,0,0,0,-42.297234 +13250,16159,28833,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.6529093,8.4945354,0,0,0,-939.96344,0,2,1,2021,10,0,37,38,1,0,0,15.601177,15.601177,.05,.05,0,0,0,0,0,0,0,0,0,4.3390198,0,37.95,58.19,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,412,111021.88,70533.563,0,0,0,-42.881023,1323.5979 +13250,16160,28834,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.8203506,7.9496169,0,0,0,-1072.4247,0,-9,-9,2021,9,1,37,25,1,1,0,9.516346,9.516346,0,0,0,0,0,0,0,0,0,0,0,0,0,49.15,46.68,-9,-9,3.333333333333333,1,1,0,0,4,1,4,1,1199,-85733.461,-4306.1143,0,0,0,2993.9495,1301.6896 +13251,16161,28835,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-988.67505,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,132,63660.176,0,126752.81,0,0,0,449.50562 +13252,16162,28836,28837,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.3387036,6.453939,55,2,-79.237846,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3858356,58.15,52.91,57.92,51.82,10,1,1,0,0,0,4,2,1,5502.5,1333079,364234.38,508899.38,0,0,0,1175.8696 +13252,16162,28837,28836,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.2249379,5.2935319,55,-2,-75.468719,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4615221,57.92,51.82,58.15,52.91,10,1,1,0,0,0,4,2,1,5502.5,1333079,364234.38,508899.38,0,0,0,1175.8696 +13253,16163,28838,28839,-9,-9,1,0,40,0,1,0,3,3,-9,1,2,7.1266718,7.2629728,0,5,-8,-68.71563,0,-9,-9,2021,13,1,20,25,1,1,0,9.3327017,9.3327017,0,0,0,0,0,0,0,0,1,1,0,0,0,33.97,42.88,39.81,49.73,5,1,1,0,0,9,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13253,16163,28839,28838,-9,-9,1,1,48,0,1,0,3,3,-9,0,2,0,0,0,5,8,21.535187,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.81,49.73,33.97,42.88,3.333333333333333,1,1,1,0,0,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13253,16163,28840,-9,28838,28839,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-843.12152,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13254,16164,28841,28842,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.8555861,8.8707666,0,32,0,-66.438431,0,-9,-9,2021,10,0,60,40,1,1,0,12.794368,12.794368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,49,49.46,56.91,7,4,2,0,0,1,8,5,1,407,489714.31,394381.88,197872.34,71751.836,1575.5062,0,2910.8818 +13254,16164,28842,28841,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,2.88516,3.001332,0,32,0,-16.666748,0,-9,-9,2021,9,0,40,40,1,0,0,.074661359,.074661359,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,51,49,8.333333333333334,1,1,0,0,9,8,5,1,407,489714.31,394381.88,197872.34,71751.836,1575.5062,0,2910.8818 +13254,16165,28843,-9,28842,28841,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1013.3888,-9,3,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,1,0,0,8,1,1,2314,-162348.17,0,0,0,14189.229,0,345.51257 +13255,16166,28844,-9,28846,28847,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.9657,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28845,-9,28846,28847,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.5563,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28846,28847,-9,-9,1,0,32,0,2,0,2,2,-9,1,1,8.4624271,8.3831167,0,6,-6,-146.26567,0,-9,-9,2021,20,6,60,100,1,6,0,9.7242165,9.7242165,0,0,0,0,0,0,0,2,1,1,0,0,0,16.01,55.49,42.37,48.08,5,1,1,0,0,6,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28847,28846,-9,-9,1,1,38,0,2,0,2,2,-9,1,3,0,0,0,6,6,-26.050667,0,1,3,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,42.37,48.08,16.01,55.49,5,1,1,1,0,3,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13256,16167,28848,-9,28851,28850,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.91412,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28849,-9,28851,28850,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.28912,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28850,28851,-9,-9,1,1,41,0,3,0,2,2,-9,1,4,8.3846254,8.9460468,0,18,0,18.547276,0,3,3,2021,7,0,50,45,1,0,0,15.802939,15.802939,0,0,0,0,0,0,0,7,1,1,0,5.4367948,0,57.16,56.15,49,55,10,1,1,0,0,9,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28851,28850,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,6.7873559,6.8352041,0,7,0,188.29501,-9,-9,-9,2021,10,0,30,0,1,1,0,3.0898106,3.0898106,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.16,56.15,8,1,1,0,0,1,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13257,16168,28852,28853,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.5028486,8.3164768,0,1,1,-15.743134,0,2,2,2021,9,0,70,40,1,0,0,8.4337521,8.4337521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,26.86,42.08,6.666666666666667,1,1,0,0,6,1,5,0,1515,80289.172,-41418.672,0,0,0,0,2526.1565 +13257,16168,28853,28852,-9,-9,1,0,30,0,0,0,2,2,-9,0,1,7.8848028,7.7227268,0,1,-1,14.664809,-9,-9,-9,2021,12,1,42,0,1,1,0,8.7387409,8.7387409,0,0,0,0,0,0,0,0,0,0,0,0,0,26.86,42.08,51.41,56.15,6.666666666666667,1,1,0,0,0,1,5,0,1515,80289.172,-41418.672,0,0,0,0,2526.1565 +13258,16169,28854,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6514764,7.3292532,0,0,0,-1093.0535,-9,2,3,2021,12,0,19,0,1,0,0,9.9344463,9.9344463,0,0,0,0,0,0,0,27,1,1,0,4.6128001,0,64.40000000000001,25.94,-9,-9,5,1,1,0,0,10,6,3,0,502,260366.33,-30098.602,193240.97,0,0,0,1085.5773 +13258,16170,28855,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-955.85486,-9,-9,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.46,45.88,-9,-9,5,1,1,0,0,0,6,1,0,295,139787.63,16680.289,0,0,137.21689,0,905.40875 +13259,16171,28856,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.0919242,3.9882586,0,0,-950.86975,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8454547,3.7859135,27.23,31.1,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,1986,200591.72,332550.94,0,0,0,0,1240.6392 +13259,16172,28857,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3482857,6.5059938,0,0,-1045.4387,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4562588,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1305,-29094.879,59173.746,0,0,0,206.03409,257.65274 +13260,16173,28858,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.3405914,8.4482985,0,0,0,-976.11255,0,3,-9,2021,15,4,37,37,1,4,0,15.218424,15.218424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,1,15,11,4,1,888,153962.42,105850.05,0,0,-1659.3811,694.04242,1545.7504 +13261,16174,28859,28860,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.4635296,8.9579458,7.6407413,6,-2,35.663433,0,-9,-9,2021,10,0,36,36,1,1,0,18.732517,18.732517,.05,.05,0,0,0,0,0,0,1,1,0,3.7636352,7.4295354,52,47,59.89,42.51,7,4,1,0,0,1,8,5,1,649.5,470492.63,70156.313,372997.88,0,1493.9602,0,6777.4551 +13261,16174,28860,28859,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,8.752985,8.7673998,5.25385,6,2,10.103298,0,3,3,2021,5,0,36,38,1,0,0,17.856293,17.856293,0,0,0,0,0,0,0,0,1,1,0,1.638888,5.5194101,59.89,42.51,52,47,8.333333333333334,1,1,0,0,7,8,5,1,649.5,470492.63,70156.313,372997.88,0,1493.9602,0,6777.4551 +13262,16175,28861,-9,28863,28865,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.9242,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28862,-9,28863,28865,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.4891,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28863,28865,-9,-9,1,0,33,1,3,0,2,2,-9,0,2,0,0,0,20,-3,-98.948074,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.03,55.84,51,56,8.333333333333334,1,1,0,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28864,-9,28863,28865,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1201.0739,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28865,28863,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.6259689,8.4658833,0,20,3,.085349374,0,3,-9,2021,10,0,42,42,1,1,0,13.932837,13.932837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,38.03,55.84,7,1,1,0,0,1,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13263,16176,28866,28867,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,7,-1,107.17535,0,3,3,2021,6,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,7,2,2,1,934.5,223455.05,-42778.145,138640.16,0,0,0,907.59912 +13263,16176,28867,28866,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.2448988,4.6770573,7,1,-68.072792,0,3,3,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6440988,3.7199507,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,2,2,1,934.5,223455.05,-42778.145,138640.16,0,0,0,907.59912 +13264,16177,28868,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2992134,8.0453548,0,0,0,-1030.1389,0,3,-9,2021,9,0,38,40,1,0,0,12.227145,12.227145,.05,.05,0,0,0,0,0,2,0,0,0,1.4676801,0,44.42,54.24,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,7125,102662.88,15127.402,0,0,4034.782,0,1621.7271 +13265,16178,28869,28871,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.5825815,8.3294144,0,11,-2,-62.315933,0,3,3,2021,12,2,40,41,1,2,0,12.686102,12.686102,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.39,52.89,57.33,53.46,8.333333333333334,1,1,0,0,11,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16178,28870,-9,28871,28869,1,1,16,0,1,1,2,0,-9,0,4,0,3.7632122,3.8426108,0,0,-1069.3816,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.697257,0,60.12,54.8,-9,-9,10,1,1,0,0,0,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16178,28871,28869,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.3558397,8.4311848,0,11,2,-115.26252,0,3,3,2021,8,0,77,37,1,0,0,6.0296926,6.0296926,.05,.05,0,0,0,0,0,0,1,1,0,2.459866,0,57.33,53.46,47.39,52.89,8.333333333333334,1,1,0,0,11,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16179,28872,-9,28871,28869,1,0,18,0,1,1,2,0,0,0,3,0,7.4533029,7.4788523,0,0,-1085.7076,-9,1,2,2021,14,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5776176,0,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1312,51926.734,-114650.16,0,0,0,0,1309.5201 +13266,16180,28873,28874,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3449755,8.4819632,0,7,-6,3.7408452,0,-9,-9,2021,9,0,40,58,1,1,0,11.530697,11.530697,.05,.05,0,0,0,0,0,0,1,1,0,8.3345699,0,53,55,41.76,24.04,8,1,1,0,0,1,5,4,1,1142.5,633102.44,563564.63,184462.84,30522.781,8241.998,0,4187.1611 +13266,16180,28874,28873,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.7423792,6.2539639,7,6,-81.494072,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2149887,41.76,24.04,53,55,8.333333333333334,1,1,0,0,6,5,4,1,1142.5,633102.44,563564.63,184462.84,30522.781,8241.998,0,4187.1611 +13267,16181,28875,28877,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.4743681,8.5822268,0,3,1,-72.920158,0,3,3,2021,11,0,37,37,1,2,0,14.342848,14.342848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.5,58.67,43.2,59.97,5,2,3,0,0,9,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13267,16181,28876,-9,28877,28875,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0195,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13267,16181,28877,28875,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,0,0,0,3,-1,144.18904,0,-9,-9,2021,14,3,0,35,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,28.5,58.67,3.333333333333333,2,3,1,0,5,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13268,16182,28878,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1163.2002,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.56,35.07,-9,-9,8.333333333333334,3,4,0,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13268,16182,28879,-9,28878,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4147,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13268,16182,28880,-9,28878,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.40302,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13269,16183,28881,28882,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.0289793,6.0495257,58,-5,-11.162365,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.28229,50.92,36.96,54,46,8.333333333333334,1,1,0,0,0,5,2,0,535.5,386833.94,124463.71,255474.2,0,0,0,1989.9446 +13269,16183,28882,28881,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,4.1909933,4.3422213,11,5,86.396408,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,14.181745,0,0,1,1,0,0,4.1316576,54,46,50.92,36.96,8,1,1,0,0,0,5,2,0,535.5,386833.94,124463.71,255474.2,0,0,0,1989.9446 +13270,16184,28883,28884,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.9129438,8.7718048,0,8,-1,-15.2324,0,2,1,2021,14,4,40,45,1,4,0,18.868319,18.868319,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,44.28,52.65,51.64,3.333333333333333,2,3,0,0,8,13,5,1,998.5,1477456.4,660227.44,700442.31,0,0,0,6124.3843 +13270,16184,28884,28883,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.1355982,9.5174093,0,8,1,44.434441,0,2,1,2021,12,0,50,50,1,0,0,26.8867,26.8867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,43.1,44.28,6.666666666666667,2,3,0,0,8,13,5,1,998.5,1477456.4,660227.44,700442.31,0,0,0,6124.3843 +13271,16185,28885,28886,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,8.3380375,8.1839266,0,38,12,3.9876802,0,3,2,2021,24,12,25,30,1,12,0,22.252815,22.252815,0,0,0,0,0,0,0,0,1,1,0,0,0,34.55,51.58,45.12,34.87,3.333333333333333,1,1,0,0,14,2,4,1,449,596132.31,80365.813,398808.78,11973.685,0,0,4009.4766 +13271,16185,28886,28885,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6919527,7.7643061,0,38,-12,-88.669052,0,3,3,2021,12,2,45,45,1,2,0,4.7164254,4.7164254,0,0,0,0,0,0,0,0,1,1,0,4.6450052,0,45.12,34.87,34.55,51.58,3.333333333333333,1,1,0,0,14,2,4,1,449,596132.31,80365.813,398808.78,11973.685,0,0,4009.4766 +13272,16186,28887,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-957.94012,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,21.75,37.68,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,420,172770.05,37103.586,0,0,0,0,643.42261 +13273,16187,28888,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,8.7795753,8.7820654,0,0,-993.0658,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,10.661858,0,92.180557,2,1,1,0,0,8.6770916,51.32,24.19,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,630,1535251.4,854669.75,589989.31,52287.309,0,0,2861.7739 +13274,16188,28889,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,7.8287692,7.941772,0,1,7,41.72448,-9,3,3,2021,12,2,37,0,1,2,0,8.4412918,8.4412918,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.14,60.45,55.75,50.3,5,1,1,0,0,5,7,4,1,124,200282.2,143629.55,307475,33599.477,0,0,778.0957 +13274,16189,28890,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.0221443,8.0326958,0,1,-7,93.345184,-9,-9,-9,2021,9,0,35,0,1,0,0,9.855032,9.855032,0,0,0,0,0,0,0,0,0,0,0,6.5133042,0,55.75,50.3,51.14,60.45,8.333333333333334,1,1,0,0,8,7,4,1,359,-81837.688,0,0,0,0,0,1167.7007 +13275,16190,28891,28894,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.6938648,8.1251411,0,12,-1,-48.426571,0,3,3,2021,11,1,35,32,1,1,0,14.672767,14.672767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.99,55.83,44.42,54.24,6.666666666666667,1,1,0,0,12,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28892,-9,28891,28894,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.8215,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28893,-9,28891,28894,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.36438,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28894,28891,-9,-9,1,1,38,1,2,0,2,2,-9,0,2,8.4608307,8.3643064,0,12,1,69.135345,0,-9,-9,2021,9,0,37,37,1,0,0,13.657887,13.657887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,54.24,39.99,55.83,8.333333333333334,1,1,0,0,13,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13276,16191,28895,28896,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.9493103,3.0100751,47,2,-67.227486,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4574521,3.0542519,62.82,33.31,55.96,49.93,8.333333333333334,1,1,0,0,0,6,3,1,342.5,856119.69,415052.94,236102.2,0,0,0,2492.7859 +13276,16191,28896,28895,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.7928681,7.4410763,47,-2,31.912853,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1420588,7.7572861,55.96,49.93,62.82,33.31,8.333333333333334,1,1,0,0,4,6,3,1,342.5,856119.69,415052.94,236102.2,0,0,0,2492.7859 +13277,16192,28897,28898,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,10,-1,-84.493103,-9,2,2,2021,18,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.69,20.71,62.51,39.17,5,1,1,0,1,0,12,4,0,427,554900.31,457718.66,188577.17,0,4427.1807,48.042702,3529.0137 +13277,16192,28898,28897,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4820404,8.4071674,0,10,1,-23.836721,-9,2,2,2021,11,0,42,0,1,0,0,14.053485,14.053485,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.51,39.17,34.69,20.71,8.333333333333334,1,1,0,0,13,12,4,0,427,554900.31,457718.66,188577.17,0,4427.1807,48.042702,3529.0137 +13278,16193,28899,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,7.9166079,8.3423548,0,0,0,-1041.3636,0,1,1,2021,6,0,32,52,1,0,0,10.233529,10.233529,.05,.05,0,0,0,0,0,0,1,1,0,7.3644567,0,54.99,42.62,-9,-9,8.333333333333334,1,1,0,0,14,10,4,0,291,796707.69,503626.47,304580.97,0,0,0,1705.5503 +13279,16194,28900,28901,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.57619,7.0212407,0,6,-3,122.49861,0,-9,-9,2021,19,4,16,16,1,4,0,5.5314727,5.5314727,0,0,0,0,0,0,0,0,1,1,0,0,0,37.77,60.12,35.2,48.71,6.666666666666667,1,1,0,0,7,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13279,16194,28901,28900,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.4691763,8.154891,0,6,3,49.710655,0,2,2,2021,17,5,40,35,1,5,0,12.873274,12.873274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,37.77,60.12,6.666666666666667,1,1,0,0,13,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13279,16194,28902,-9,28900,28901,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.81714,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13280,16195,28903,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.8245583,7.7773252,5.7281165,0,0,-1064.2891,0,3,2,2021,9,0,23,23,1,0,0,8.6138411,8.6138411,0,0,0,1,0,0,0,0,1,1,0,6.9178057,5.5131364,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,326,431300.97,427553.31,137123.16,0,11263.503,2345.7437,1514.7098 +13281,16196,28904,28905,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.6586089,6.4851418,12,-3,-32.935959,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4676828,6.5933337,54.79,55.86,59.43,58.05,10,1,1,0,0,7,12,5,1,1192,1331193.8,956993,316439.03,16634.656,0,0,4707.5137 +13281,16196,28905,28904,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.0846624,8.8809967,0,12,3,-22.170479,0,3,3,2021,7,0,70,30,1,0,0,14.617473,14.617473,.05,.05,0,0,0,0,0,0,0,0,0,4.9852376,0,59.43,58.05,54.79,55.86,10,1,1,0,0,13,12,5,1,1192,1331193.8,956993,316439.03,16634.656,0,0,4707.5137 +13282,16197,28906,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.0244899,4.9175978,0,0,-945.61188,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.09097,50,47,-9,-9,7,1,1,0,1,0,13,2,1,231,441914.56,0,317264.31,0,0,0,609.37817 +13283,16198,28907,28908,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.0986643,9.5976381,0,7,-3,39.225437,0,2,2,2021,12,0,47,42,1,0,0,31.438457,31.438457,0,0,0,0,0,0,0,7,0,0,0,0,0,45.85,61.26,45.46,57.33,8.333333333333334,1,1,0,0,8,5,5,1,576,1004055.9,196466.25,504425,66308.453,0,0,5768.5586 +13283,16198,28908,28907,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6718712,8.8890057,0,7,3,63.04623,0,1,1,2021,16,5,30,20,1,5,0,25.78215,25.78215,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.46,57.33,45.85,61.26,8.333333333333334,1,1,0,0,8,5,5,1,576,1004055.9,196466.25,504425,66308.453,0,0,5768.5586 +13284,16199,28909,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-882.03961,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.43,30.75,-9,-9,0,4,2,0,1,0,8,2,0,1007,47526.68,0,0,0,0,0,851.58234 +13285,16200,28910,28911,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,8.7797041,9.112956,5.9573417,5,2,-18.065443,0,2,2,2021,11,1,60,60,1,1,0,14.825186,14.825186,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4503708,44.02,60.7,53.97,13.39,8.333333333333334,1,1,0,0,9,12,5,1,421,361861.63,40793.867,145884.34,74686.563,-490.82224,5637.8418,3504.115 +13285,16200,28911,28910,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,5,-2,32.516697,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.97,13.39,44.02,60.7,6.666666666666667,1,1,0,0,8,12,5,1,421,361861.63,40793.867,145884.34,74686.563,-490.82224,5637.8418,3504.115 +13286,16201,28912,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.0234,-9,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.51,33.67,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,164,-93572.195,0,0,0,0,0,96.434898 +13286,16202,28913,-9,28912,-9,1,1,36,0,0,0,3,3,-9,0,4,8.5280914,8.7432718,0,0,0,-888.79883,-9,2,2,2021,10,0,36,0,1,1,0,20.47459,20.47459,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,5,1,521,-130881.06,0,0,0,0,0,1537.6686 +13287,16203,28914,28915,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.3660736,8.1954603,6.6738596,31,5,-135.47585,0,2,2,2021,12,1,3,18,1,1,0,76.430908,76.430908,.05,.05,.05,0,0,0,0,0,0,0,0,8.8434191,6.3989496,54.37,54.8,38,39.66,8.333333333333334,1,1,0,0,13,1,4,1,327,122790.15,46356.469,0,0,0,0,5440.6035 +13287,16203,28915,28914,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6551538,7.6716714,0,31,-5,-25.395292,0,2,3,2021,19,7,6,0,1,7,0,43.108276,43.108276,.05,.05,0,0,0,0,0,0,0,0,0,6.3760815,0,38,39.66,54.37,54.8,5,1,1,0,0,9,1,4,1,327,122790.15,46356.469,0,0,0,0,5440.6035 +13287,16204,28916,-9,28915,28914,1,0,27,0,0,0,1,1,-9,0,4,7.7271576,8.1934366,0,0,0,-1022.0703,0,2,2,2021,11,0,42,41,1,0,1,9.429039,9.429039,.05,.05,.05,0,0,0,0,0,0,0,0,7.6589723,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,397,42602.078,42490.762,116146.38,47395.578,0,0,2671.2722 +13288,16205,28917,28918,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.4463434,8.1849775,0,6,-4,98.394714,0,-9,-9,2021,9,0,40,40,1,1,0,13.993804,13.993804,0,0,0,0,0,0,0,0,0,0,0,5.9320879,0,53,55,42.96,47.67,8,1,1,0,0,1,7,5,0,2595.5,298156.5,0,288403.91,110455.86,0,0,3122.5891 +13288,16205,28918,28917,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.121767,8.4034882,0,6,4,68.580627,0,3,3,2021,12,2,51,39,1,2,0,9.3515091,9.3515091,0,0,0,0,0,0,0,0,0,0,0,0,0,42.96,47.67,53,55,8.333333333333334,1,1,0,0,6,7,5,0,2595.5,298156.5,0,288403.91,110455.86,0,0,3122.5891 +13289,16206,28919,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.27832,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6.666666666666667,2,3,0,0,2,5,1,1,1488,-619.31769,0,0,0,0,0,571.21838 +13290,16207,28920,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.2102003,7.857254,0,0,0,-895.87103,0,2,2,2021,6,0,35,35,1,0,0,9.3406687,9.3406687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,719,-11484.921,61464.57,0,0,0,0,1058.1433 +13291,16208,28921,28922,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.8080163,7.7708421,0,23,4,40.278156,0,3,3,2021,11,0,39,39,1,0,0,9.6304665,9.6304665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,36.99,39.07,53.41,6.666666666666667,1,1,0,0,15,2,4,1,475,243538.13,103994.23,284196.28,0,0,0,2808.6099 +13291,16208,28922,28921,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9123101,7.9753108,0,23,-4,167.29849,0,3,2,2021,11,0,20,20,1,0,0,17.364635,17.364635,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.07,53.41,58.32,36.99,1.666666666666667,1,1,0,0,15,2,4,1,475,243538.13,103994.23,284196.28,0,0,0,2808.6099 +13292,16209,28923,28924,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5648823,8.4750309,0,24,-5,66.947708,-9,2,2,2021,17,3,50,0,1,3,0,11.212934,11.212934,0,0,0,0,0,0,0,0,1,1,0,0,0,39.6,55.82,43.47,50.15,5,1,1,0,0,12,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28924,28923,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1169548,7.855526,0,9,5,-92.501312,-9,-9,-9,2021,12,1,39,0,1,1,0,10.209542,10.209542,0,0,0,0,0,0,0,0,1,1,0,5.0730324,0,43.47,50.15,39.6,55.82,6.666666666666667,1,1,0,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28925,-9,28923,28924,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.93134,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28926,-9,28923,28924,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.35046,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16210,28927,-9,28923,28924,1,0,20,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1167.8969,-9,1,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.46,58.79,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,252,-165377.77,0,0,0,0,0,0 +13292,16211,28928,-9,28923,28924,1,0,19,0,2,0,2,2,-9,0,4,7.8088813,7.5952473,0,0,0,-886.0459,-9,1,2,2021,11,2,32,0,1,2,1,5.9287443,5.9287443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,56.13,-9,-9,5,1,1,0,1,3,9,3,0,415,-165804.53,-63543.922,0,0,0,0,855.0874 +13293,16212,28929,28931,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.6402307,7.6623979,0,8,0,77.840599,0,1,-9,2021,16,4,28,18,1,4,0,6.2341738,6.2341738,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,42.22,48.08,6.666666666666667,1,1,0,0,9,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28930,-9,28929,28931,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.45789,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28931,28929,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,7.8619719,8.2055359,0,8,0,-64.855698,0,2,2,2021,10,0,35,35,1,0,0,11.139666,11.139666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,48.08,36.18,48.3,5,1,1,0,0,11,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28932,-9,28929,28931,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1152,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13294,16213,28933,28934,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,6,-7,-56.624966,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.246033,0,51.14,60.45,53,47,8.333333333333334,1,1,0,0,1,11,2,1,332,642839.13,501189.19,296926.25,0,0,0,1594.0222 +13294,16213,28934,28933,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3557096,7.5665574,6,7,-66.099014,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5527649,53,47,51.14,60.45,8,4,1,0,0,0,11,2,1,332,642839.13,501189.19,296926.25,0,0,0,1594.0222 +13295,16214,28935,28936,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,22,-4,0,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.3,43.91,52.63,25.89,5,1,1,0,0,0,6,1,0,140,-52694.879,143442.56,0,0,0,0,688.3493 +13295,16214,28936,28935,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,22,4,0,-9,3,3,2021,18,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,52.63,25.89,37.3,43.91,5,1,1,0,0,0,6,1,0,140,-52694.879,143442.56,0,0,0,0,688.3493 +13295,16215,28937,-9,28935,28936,1,1,26,0,0,0,3,3,-9,0,3,0,0,0,0,0,-850.01636,-9,3,3,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.81,54.55,-9,-9,5,1,1,1,1,0,6,1,0,164,-297252.22,0,0,0,0,0,-44.486599 +13295,16216,28938,-9,28935,28936,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-922.80261,0,3,3,2021,32,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1.73,60.66,-9,-9,0,1,1,1,1,0,6,2,0,602,-123335.09,0,0,0,0,0,0 +13296,16217,28939,28940,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,8.1459494,8.0264816,54,3,10.061397,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9780908,50.55,53.71,39.14,52.21,8.333333333333334,1,1,0,0,0,4,3,1,442.5,879744.25,323140.53,277051.63,0,0,0,2131.5439 +13296,16217,28940,28939,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,54,-3,.22319885,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5232189,0,39.14,52.21,50.55,53.71,8.333333333333334,1,1,0,0,0,4,3,1,442.5,879744.25,323140.53,277051.63,0,0,0,2131.5439 +13297,16218,28941,-9,28944,28943,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.66064,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28942,-9,28944,28943,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5637,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28943,28944,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.8383827,8.5975952,0,7,0,53.327938,0,2,2,2021,24,12,60,50,1,12,0,12.692359,12.692359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.09,40.45,46.33,55.93,3.333333333333333,1,1,0,0,7,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28944,28943,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.2570624,7.2725358,0,7,0,20.111916,0,-9,-9,2021,12,2,30,0,1,2,0,6.6880322,6.6880322,0,0,0,0,0,0,0,0,1,1,0,1.7438467,0,46.33,55.93,16.09,40.45,8.333333333333334,1,1,0,0,6,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13298,16219,28945,28946,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.761981,8.5653152,0,1,-4,-44.007694,0,-9,-9,2021,7,0,44,38,1,0,0,15.934943,15.934943,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,6,8,5,0,450.5,80744.227,45501.008,0,0,0,0,4462.376 +13298,16219,28946,28945,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.7755136,8.7896891,0,1,4,-19.256329,-9,-9,-9,2021,9,1,48,0,1,1,0,19.514118,19.514118,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,2,8,5,0,450.5,80744.227,45501.008,0,0,0,0,4462.376 +13299,16220,28947,-9,28948,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.09583,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28948,-9,-9,-9,1,0,44,1,2,0,1,1,-9,0,3,9.1877937,9.1815319,6.5363102,0,0,-999.12714,0,2,-9,2021,12,0,58,42,1,0,0,16.724508,16.724508,.05,.05,0,0,0,0,0,0,1,1,0,7.3181496,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,1,9,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28949,-9,28948,-9,1,0,16,1,2,1,2,0,-9,0,2,0,0,0,0,0,-858.3197,-9,1,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,49.92,-9,-9,3.333333333333333,3,4,0,0,1,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28950,-9,28948,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.80298,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16221,28951,-9,28948,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1026.845,-9,1,-9,2021,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.11,61.28,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,328,0,0,0,0,0,0,804.8219 +13299,16221,28952,-9,-9,28951,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.54828,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,328,0,0,0,0,0,0,804.8219 +13300,16222,28953,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.28137,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1762872,0,51.9,21.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,173,176865.05,90984.688,0,0,11084.49,0,1678.4299 +13301,16223,28954,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.4619002,4.6139455,0,0,-1121.1805,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.7831769,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,86,54939.75,50817.66,105936.33,0,0,0,1054.1187 +13302,16224,28955,28956,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.8871145,8.748147,0,13,7,19.976976,0,3,2,2021,10,0,50,50,1,1,0,15.06619,15.06619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.2,51.4,50.43,45.82,6.666666666666667,2,3,0,0,13,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13302,16224,28956,28955,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.5998363,8.3472881,0,13,-7,-23.744917,0,1,1,2021,12,0,38,35,1,0,0,14.300882,14.300882,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.43,45.82,46.2,51.4,5,2,3,0,0,8,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13302,16224,28957,-9,28956,28955,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-965.84009,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13303,16225,28958,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1052.2494,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,17.84,-9,-9,1.666666666666667,1,1,1,0,0,12,2,0,318,197632.39,0,0,0,0,181.94624,1590.3021 +13304,16226,28959,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.3219519,8.4035883,0,0,0,-1072.0604,0,2,2,2021,7,0,50,48,1,0,0,9.9329967,9.9329967,.05,.05,0,0,0,0,0,0,0,0,0,3.6805389,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,429,162568.33,132452.28,153252,117813.23,0,0,2177.8679 +13305,16227,28960,28961,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-8,0,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,49.84,61.12,51.57,6.666666666666667,1,1,0,0,0,9,1,1,767.5,492543.44,0,454297.44,0,0,0,1554.3879 +13305,16227,28961,28960,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,9,8,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,38.18,49.84,10,1,1,0,0,3,9,1,1,767.5,492543.44,0,454297.44,0,0,0,1554.3879 +13306,16228,28962,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,7.5763412,7.3957038,0,0,-971.94226,0,2,2,2021,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.6964016,7.5313735,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,925,752686.56,266464.47,166607.14,0,0,0,1392.0535 +13307,16229,28963,28964,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,6.2829356,6.5143962,0,7,0,-22.781004,0,2,2,2021,7,0,15,15,1,0,0,3.5759528,3.5759528,.05,.05,0,0,0,0,0,0,0,0,0,7.8977838,0,54.69,57.47,57.06,57.76,10,1,1,0,0,8,9,5,1,554.5,1038382.8,887567.13,327347.19,55131.566,0,0,6694.5186 +13307,16229,28964,28963,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.4889793,9.3685684,0,7,0,-57.959274,0,3,2,2021,6,0,46,44,1,0,0,35.173683,35.173683,.05,.05,0,0,0,0,0,0,0,0,0,8.6039686,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,8,9,5,1,554.5,1038382.8,887567.13,327347.19,55131.566,0,0,6694.5186 +13307,16230,28965,-9,28963,28964,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-918.78387,-9,1,1,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,.096487164,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,2528,0,0,0,0,0,0,0 +13307,16231,28966,-9,28963,28964,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-975.20654,-9,1,1,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,2197,-91532.5,0,0,0,0,0,0 +13308,16232,28967,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-938.68469,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,10,1,1,0,0,0,10,1,0,1440,58930.566,0,133490.67,0,0,0,1676.1251 +13308,16233,28968,-9,28967,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8007216,7.5728073,0,0,0,-899.90747,0,3,3,2021,11,0,38,38,1,0,0,6.5811963,6.5811963,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,35.78,-9,-9,5,1,1,0,0,11,10,3,0,309,-44746.207,-169940.55,171341.05,17829.947,0,0,506.89948 +13309,16234,28969,-9,28971,28970,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1049.0992,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13309,16234,28970,28971,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.3311081,8.4878473,0,7,6,-78.123161,0,3,2,2021,0,0,38,48,1,0,0,13.54987,13.54987,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,19.52,68.09,8.333333333333334,1,1,0,0,10,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13309,16234,28971,28970,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.5460043,8.7816906,0,7,-6,-20.196997,0,-9,-9,2021,24,10,48,55,1,10,0,14.082665,14.082665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.52,68.09,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13310,16235,28972,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-892.28326,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.26,38.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,348,-24781.967,0,0,0,0,0,863.17517 +13311,16236,28973,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.9727163,7.0700951,0,0,-956.0705,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2249093,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,527,140800.7,53450.148,0,0,0,0,579.50952 +13312,16237,28974,28975,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,55,-3,27.391121,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.63,35.06,52,47,6.666666666666667,1,1,0,0,0,11,2,1,1392.5,384631.19,197903.19,161346.78,0,0,0,1638.0994 +13312,16237,28975,28974,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.3853645,5.2470779,55,3,8.415966,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2242732,52,47,64.63,35.06,8.333333333333334,1,1,0,0,0,11,2,1,1392.5,384631.19,197903.19,161346.78,0,0,0,1638.0994 +13313,16238,28976,28977,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2606964,8.3867846,0,7,2,45.246563,0,3,3,2021,15,4,30,32,1,4,0,14.650793,14.650793,0,0,0,0,0,0,0,0,0,0,0,6.5992041,0,50.03,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,1,4,1,2745,396773.66,368634.78,138541.56,75292.656,0,0,2774.9697 +13313,16238,28977,28976,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5765576,7.857933,0,7,-2,-29.232931,0,3,3,2021,8,0,40,50,1,0,0,6.0613523,6.0613523,.05,.05,0,0,0,0,0,0,0,0,0,1.9342353,0,58.15,52.91,50.03,52.62,1.666666666666667,1,1,0,0,10,1,4,1,2745,396773.66,368634.78,138541.56,75292.656,0,0,2774.9697 +13314,16239,28978,28979,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4040222,9.4563828,0,12,1,-41.358398,0,2,2,2021,18,7,53,48,1,7,0,32.998451,32.998451,.05,.05,0,0,0,0,0,0,0,0,0,7.3575311,0,42.19,58.81,39.41,49.43,5,1,1,0,0,13,5,5,0,1128.5,932239.75,751742.5,251965.63,92528.141,0,0,5301.9463 +13314,16239,28979,28978,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0861816,7.9175711,0,12,-1,-47.1054,0,2,2,2021,13,1,37,37,1,1,0,9.8663807,9.8663807,.05,.05,0,0,0,0,0,0,0,0,0,4.4488387,0,39.41,49.43,42.19,58.81,8.333333333333334,1,1,0,0,13,5,5,0,1128.5,932239.75,751742.5,251965.63,92528.141,0,0,5301.9463 +13314,16240,28980,-9,28979,28978,1,0,18,0,0,0,2,2,1,0,5,6.2030807,6.1467233,0,0,0,-930.52496,-9,2,2,2021,6,1,20,0,1,1,1,3.6487885,3.6487885,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,58.29,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,472,-76462.117,0,0,0,0,0,714.60498 +13315,16241,28981,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6262646,8.5949993,0,0,0,-983.0672,0,3,-9,2021,22,10,47,37,1,10,0,10.723624,10.723624,0,0,.05,0,0,0,0,0,0,0,0,0,0,35.71,47.21,-9,-9,5,1,1,0,0,12,4,5,1,418,165769,103896.76,145291.45,0,0,0,1603.6777 +13316,16242,28982,-9,28985,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.7134,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28983,28985,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.4751453,8.4344339,0,2,16,-8.8096848,0,-9,-9,2021,24,12,60,60,1,12,0,6.8060012,6.8060012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,56.73,43.37,57.28,6.666666666666667,1,1,0,0,10,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28984,-9,28985,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.30933,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28985,28983,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,2,-16,-21.997774,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,44.19,56.73,6.666666666666667,1,1,0,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13317,16243,28986,28987,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1342669,9.0501528,0,18,4,96.378365,0,2,2,2021,19,7,40,42,1,7,0,23.378969,23.378969,0,0,0,0,0,0,0,0,1,1,0,.8823365,0,35.38,63.46,33.3,64.17,6.666666666666667,1,1,0,0,10,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13317,16243,28987,28986,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.7734671,8.8283672,0,18,-4,7.9961834,0,2,-9,2021,14,2,37,36,1,2,0,25.957472,25.957472,0,0,0,0,0,0,0,0,1,1,0,.47844589,0,33.3,64.17,35.38,63.46,8.333333333333334,1,1,0,0,8,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13317,16243,28988,-9,28987,28986,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.4724,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13318,16244,28989,28991,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.5040874,8.4496984,0,8,2,27.112051,0,2,2,2021,10,0,40,40,1,0,0,9.7853012,9.7853012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.79,56.27,8.333333333333334,1,1,0,0,9,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13318,16244,28990,-9,28991,28989,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.55243,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13318,16244,28991,28989,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0010366,8.8741112,0,8,-2,63.988094,0,2,1,2021,14,3,42,40,1,3,0,20.215139,20.215139,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,57.06,57.76,3.333333333333333,1,1,0,0,9,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13319,16245,28992,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-990.3606,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.15000000000001,32.53,-9,-9,5,1,1,0,0,0,9,1,0,198,136071.42,0,0,0,2918.8823,0,836.84326 +13320,16246,28993,28994,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.1811094,7.8607063,0,7,-4,-33.848701,0,-9,-9,2021,19,7,38,40,1,7,0,9.9989653,9.9989653,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.48,42.45,42.46,54.85,3.333333333333333,2,3,0,0,2,8,5,1,409.5,1575301.3,877319.13,701849.69,23792.484,0,0,5055.04 +13320,16246,28994,28993,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.2133636,8.9072733,6.3342996,28,4,-28.013681,0,3,3,2021,16,5,55,60,1,5,0,18.129019,18.129019,.05,.05,.05,0,0,0,0,0,1,1,0,0,6.5897455,42.46,54.85,48.48,42.45,8.333333333333334,2,3,0,0,8,8,5,1,409.5,1575301.3,877319.13,701849.69,23792.484,0,0,5055.04 +13320,16247,28995,28996,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,3,20.37348,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.58,56.45,59.94,34.64,8.333333333333334,2,3,1,0,0,8,3,1,1229.5,32489.164,31394.551,0,0,5573.3013,0,971.92407 +13320,16247,28996,28995,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.8221006,7.9074402,0,7,-3,92.596405,0,-9,-9,2021,4,0,38,38,1,0,0,6.3986549,6.3986549,0,0,0,0,0,0,0,0,1,1,0,0,0,59.94,34.64,38.58,56.45,8.333333333333334,2,3,0,0,5,8,3,1,1229.5,32489.164,31394.551,0,0,5573.3013,0,971.92407 +13320,16248,28997,-9,28993,28994,1,1,24,0,0,0,2,2,-9,0,4,8.3356209,8.0943298,0,0,0,-1123.1852,0,1,2,2021,2,1,40,40,1,1,1,11.265066,11.265066,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,1679,42522.785,0,0,0,0,0,1319.9122 +13320,16249,28998,-9,28996,28995,1,1,22,0,0,0,2,2,-9,0,4,7.6783509,7.8379068,0,0,0,-1093.7363,0,2,2,2021,9,1,40,45,1,1,1,6.4584832,6.4584832,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,4,8,3,1,152,52316.465,0,0,0,0,0,858.62341 +13320,16250,28999,-9,28993,28994,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1044.6193,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,7975,-69129.727,0,0,0,0,0,712.64905 +13320,16251,29000,-9,28996,28995,1,1,19,0,0,0,2,2,1,0,4,6.7174106,6.6255231,0,0,0,-1035.9926,-9,2,2,2021,7,0,20,0,1,0,1,4.494235,4.494235,0,0,0,0,0,0,0,0,1,1,0,0,0,58.59,35.27,-9,-9,6.666666666666667,2,3,0,0,3,8,2,1,279,-184851.8,0,0,0,0,0,-42.117912 +13321,16252,29001,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,7.4434471,7.4643359,0,0,0,-934.54498,0,3,-9,2021,21,10,32,32,1,10,0,8.3649502,8.3649502,0,0,0,0,0,0,0,7,1,1,0,0,0,26.48,25.8,-9,-9,1.666666666666667,1,1,0,0,9,13,3,0,285,527743.38,85647.469,369355.19,0,0,0,1253.2303 +13322,16253,29002,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.953752,8.7236519,7.3000436,0,0,-954.11603,0,3,3,2021,8,1,10,12,1,1,0,39.130608,39.130608,0,0,.05,0,0,0,0,0,0,0,0,.76001316,7.5923986,43.51,51.46,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,440,252054.3,-5982.7915,62612.664,0,0,0,2233.8113 +13323,16254,29003,-9,29004,29005,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1130.3378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13323,16254,29004,29005,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.2769041,7.3545008,0,9,-2,-68.486137,0,3,3,2021,12,0,25,53,1,0,0,7.730484,7.730484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.47,53.17,49,57,8.333333333333334,1,1,0,0,11,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13323,16254,29005,29004,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.2542009,8.1680393,0,9,2,5.157773,0,-9,-9,2021,10,0,48,48,1,1,0,9.4955225,9.4955225,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,51.47,53.17,7,4,1,0,0,1,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13324,16255,29006,29007,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,11,8,0,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,58.5,44.67,8.333333333333334,1,1,0,0,3,9,1,1,456.5,329343.72,71613.539,234398.53,0,0,0,1347.583 +13324,16255,29007,29006,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,11,-8,0,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0130574,0,58.5,44.67,56.19,46.16,8.333333333333334,1,1,0,1,0,9,1,1,456.5,329343.72,71613.539,234398.53,0,0,0,1347.583 +13325,16256,29008,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.4593048,8.123003,0,0,0,-996.45764,0,2,3,2021,12,2,37,36,1,2,0,13.709532,13.709532,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,715,115329.05,119605.72,154617.27,70803,0,0,1037.2457 +13326,16257,29009,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-966.84406,0,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.76,34.83,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,395,99038.695,0,0,0,0,-103.26472,768.83667 +13327,16258,29010,29011,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.5202684,7.402287,0,6,-6,11.876206,0,3,3,2021,16,4,35,35,1,4,0,8.0563364,8.0563364,0,0,0,0,0,0,0,0,0,0,0,.41261581,0,40.15,38.5,39.82,28.05,8.333333333333334,1,1,0,0,7,4,4,1,138.5,499008.28,231924.59,176246.45,31819.941,4753.9814,0,2730.5508 +13327,16258,29011,29010,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.1483374,8.6821156,5.0178528,6,6,106.6222,0,3,3,2021,13,3,52,49,1,3,0,7.9916806,7.9916806,.05,.05,0,0,0,0,0,0,0,0,0,4.9766531,4.8793769,39.82,28.05,40.15,38.5,5,1,1,0,0,7,4,4,1,138.5,499008.28,231924.59,176246.45,31819.941,4753.9814,0,2730.5508 +13327,16259,29012,-9,29010,29011,1,0,34,0,0,0,2,2,-9,0,4,8.12395,8.1304064,0,0,0,-911.22205,0,2,3,2021,11,0,37,35,1,2,1,11.729362,11.729362,.05,.05,.05,0,0,0,0,0,0,0,0,1.2941692,0,48,56,-9,-9,7,1,1,0,0,7,4,4,1,310,181965.91,-87880.734,0,0,0,0,577.25122 +13328,16260,29013,29014,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0991907,8.0435972,0,7,-1,-52.72683,0,3,3,2021,6,0,37,37,1,0,0,14.486187,14.486187,.05,.05,0,0,0,0,0,0,0,0,0,3.1741121,0,62.49,55.09,55.44,52.99,10,1,1,0,0,8,11,4,1,787,212186.67,80077.047,0,0,22103.697,0,2373.5386 +13328,16260,29014,29013,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9389324,7.9467463,0,7,1,92.834625,0,-9,-9,2021,10,0,35,43,1,0,0,8.3344145,8.3344145,0,0,0,0,0,0,0,0,0,0,0,2.2174892,0,55.44,52.99,62.49,55.09,8.333333333333334,1,1,0,0,8,11,4,1,787,212186.67,80077.047,0,0,22103.697,0,2373.5386 +13329,16261,29015,29016,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.8248138,8.6286469,0,12,-4,-119.27851,0,2,2,2021,11,0,35,41,1,0,0,23.678427,23.678427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,51.29,55.36,51.57,6.666666666666667,1,1,0,0,12,11,4,1,916.5,218254.33,75571.406,149927.73,83256.5,0,0,3482.0708 +13329,16261,29016,29015,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,7.7166128,7.9135323,0,12,4,-59.507889,0,2,2,2021,14,4,28,28,1,4,0,11.063313,11.063313,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,58.87,51.29,8.333333333333334,1,1,0,0,3,11,4,1,916.5,218254.33,75571.406,149927.73,83256.5,0,0,3482.0708 +13330,16262,29017,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.123807,6.7589579,0,0,-829.70142,0,1,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0852313,55.93,49.95,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,638,621148.5,0,261941.67,0,0,0,1930.1603 +13331,16263,29018,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-992.83923,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,1,1,2,1,1,0,107,293659.41,0,248828.17,0,0,0,-401.95779 +13332,16264,29019,29021,-9,-9,1,0,31,1,4,0,2,2,-9,0,4,0,0,0,14,-5,-26.986496,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0163903,0,47,57,50,57,7,2,3,0,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29020,-9,29019,29021,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-947.67358,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29021,29019,-9,-9,1,1,36,1,4,0,2,2,-9,0,4,7.8097124,7.5908332,0,14,5,124.77266,0,3,2,2021,10,0,30,40,1,1,0,9.1049519,9.1049519,.05,.05,0,0,0,0,0,0,1,1,0,1.817387,0,50,57,47,57,7,2,3,0,0,11,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29022,-9,29019,29021,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.67389,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13333,16265,29023,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.0457091,6.9806833,0,0,-1060.6757,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9800282,7.1171999,52.88,43.27,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,601,199345.52,124775.75,0,0,0,0,1144.1722 +13333,16266,29024,-9,29023,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5634556,8.822032,4.2341614,0,0,-926.51917,-9,2,1,2021,0,0,54,0,1,0,0,12.348237,12.348237,.05,.05,0,0,0,0,0,0,1,1,0,0,4.4311395,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,476,847850.94,817981.75,130863.85,28614.242,7095.1357,0,1749.7764 +13334,16267,29025,29026,-9,-9,1,0,54,0,0,0,1,1,-9,1,4,0,0,0,9,-17,-21.733576,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8125343,0,20.11,66.45,58.55,46.11,3.333333333333333,1,1,0,0,0,4,2,1,343.5,286916.69,101304.74,149575.33,0,0,0,741.98865 +13334,16267,29026,29025,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.702435,6.6845536,9,17,7.4333539,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0809321,6.4958534,58.55,46.11,20.11,66.45,8.333333333333334,1,1,0,0,7,4,2,1,343.5,286916.69,101304.74,149575.33,0,0,0,741.98865 +13335,16268,29027,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.3136463,7.7389054,0,0,-914.13013,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5244193,62.1,51.16,-9,-9,10,1,1,0,0,12,2,3,1,3064,166402.53,207368.73,0,0,0,0,599.06226 +13336,16269,29028,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-988.0835,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,34.56,-9,-9,10,1,1,0,0,0,4,1,0,197,223845.86,-26843.014,0,0,0,0,2109.1499 +13337,16270,29029,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.0222692,8.0429268,0,0,0,-1007.7894,0,-9,-9,2021,5,0,39,40,1,0,0,10.320748,10.320748,0,0,0,0,0,0,0,7,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,12,4,0,849,-112432.88,0,0,0,0,0,995.29602 +13337,16271,29030,-9,29029,-9,1,0,22,0,0,0,2,2,-9,0,4,7.5057569,7.2918696,0,0,0,-1002.312,-9,2,-9,2021,13,1,37,0,1,1,1,5.7827568,5.7827568,0,0,0,0,0,0,0,0,0,0,0,0,0,42.21,55.17,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1772,16699.111,0,0,0,0,0,149.78395 +13338,16272,29031,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1044.7882,-9,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.52,48.73,-9,-9,6.666666666666667,1,1,0,0,7,2,1,1,1245,-50464.43,0,0,0,0,0,100.90482 +13339,16273,29032,29033,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.9182348,8.8981915,0,4,2,64.54438,0,-9,-9,2021,19,7,40,40,1,7,0,23.635374,23.635374,.05,.05,0,0,0,0,0,0,1,1,0,7.1134539,0,40.95,63.66,60.06,37.76,3.333333333333333,1,1,0,0,7,4,5,1,2772.5,-47445.172,-65720.969,75264.563,51034.258,-147.53282,0,3017.085 +13339,16273,29033,29032,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,6.9505224,6.696919,0,4,-2,-118.56249,0,-9,-9,2021,5,1,30,20,1,1,0,3.9456465,3.9456465,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,37.76,40.95,63.66,1.666666666666667,1,1,0,0,5,4,5,1,2772.5,-47445.172,-65720.969,75264.563,51034.258,-147.53282,0,3017.085 +13340,16274,29034,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.2694306,6.9026117,0,0,-997.39655,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,36.563381,0,0,1,1,0,2.2132449,7.0516853,52,48,-9,-9,7,1,1,0,0,0,13,3,1,561,262230.13,393764.28,108726.81,0,0,0,1528.8278 +13341,16275,29035,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,8.4268122,8.5521288,0,0,0,-951.52643,0,2,3,2021,12,2,39,37,1,2,0,10.02798,10.02798,.05,.05,0,0,0,0,1.3012494,0,1,1,0,0,0,13.24,63.22,-9,-9,5,1,1,0,0,9,6,4,1,2567,-2293.8916,-60381.5,-9434.999,58691.598,0,0,2395.5737 +13342,16276,29036,29038,-9,-9,1,0,55,0,2,0,1,1,-9,0,3,8.8005638,8.3686361,0,3,-8,35.580029,0,2,2,2021,12,1,37,37,1,1,0,19.226839,19.226839,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.58,53.71,54.1,59.11,3.333333333333333,1,1,0,0,11,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13342,16276,29037,-9,29036,29038,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1155.8796,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,63.48,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13342,16276,29038,29036,-9,-9,1,1,63,0,2,0,1,1,-9,0,5,9.211195,8.9784546,4.4227381,3,8,-119.68649,0,2,3,2021,8,0,38,41,1,0,0,26.842505,26.842505,.05,.05,0,0,0,0,0,0,1,1,0,4.9389925,5.1636109,54.1,59.11,47.58,53.71,6.666666666666667,1,1,0,0,9,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13343,16277,29039,29040,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.7704339,6.9824634,0,28,10,119.90532,0,3,-9,2021,33,12,15,27,1,12,0,7.0746512,7.0746512,0,0,0,0,0,0,0,0,1,1,0,0,0,28.84,41.06,39.43,60.46,5,1,1,0,0,9,9,4,1,471,1131182.4,778125.44,443625.53,0,0,0,3364.7373 +13343,16277,29040,29039,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.648097,9.0189381,0,28,-10,-85.392273,0,3,2,2021,11,3,42,41,1,3,0,23.554274,23.554274,.05,.05,0,0,0,0,0,0,1,1,0,1.4756702,0,39.43,60.46,28.84,41.06,1.666666666666667,1,1,0,0,8,9,4,1,471,1131182.4,778125.44,443625.53,0,0,0,3364.7373 +13344,16278,29041,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.5753379,7.5377669,0,0,-973.88965,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.3581147,7.7418265,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,271,198956.67,108593.5,193809.44,0,0,0,1621.5782 +13345,16279,29042,29043,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,3.8860745,4.0308876,11,-1,48.745487,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4099348,4.1207938,61.12,51.57,57.16,56.15,10,1,1,0,0,7,12,4,1,1739.5,1432481.6,1082519.1,330839.44,0,802.14728,0,3052.3027 +13345,16279,29043,29042,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.1172905,7.8025551,11,1,-14.593401,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.1693325,8.1329937,57.16,56.15,61.12,51.57,10,1,1,0,0,4,12,4,1,1739.5,1432481.6,1082519.1,330839.44,0,802.14728,0,3052.3027 +13346,16280,29044,29045,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.4737134,7.1818733,40,-12,93.434586,0,2,3,2021,11,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5981412,6.8014193,50.51,53.71,59.63,41.44,8.333333333333334,1,1,0,0,11,5,3,1,1083.5,1097869.8,550204.75,321093.88,0,0,0,2981.9648 +13346,16280,29045,29044,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.5763321,7.8520832,40,12,1.1548326,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5165625,7.518877,59.63,41.44,50.51,53.71,8.333333333333334,1,1,0,0,4,5,3,1,1083.5,1097869.8,550204.75,321093.88,0,0,0,2981.9648 +13347,16281,29046,29047,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-10,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2512984,0,34.51,57.34,59.7,53.75,8.333333333333334,1,1,0,0,0,10,1,0,383,176124.42,0,181283.59,0,0,0,1086.0352 +13347,16281,29047,29046,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,57,10,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.4857721,0,59.7,53.75,34.51,57.34,3.333333333333333,1,1,0,0,0,10,1,0,383,176124.42,0,181283.59,0,0,0,1086.0352 +13348,16282,29048,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.2894964,5.930449,0,0,-924.87134,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.3331833,6.2870717,55.61,50.3,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,257,609684.25,199738.61,405228.88,0,0,0,6002.6758 +13349,16283,29049,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.3218617,7.3848448,0,0,-862.95758,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9377518,7.2221246,60.12,54.8,-9,-9,10,1,1,0,0,3,9,3,1,491,1061983.3,172639.14,887701.06,0,0,0,1575.6528 +13350,16284,29050,29051,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.9231639,5.9634533,40,3,39.488205,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.6217247,5.8264823,49.38,58.29,55.53,51.55,8.333333333333334,1,1,0,0,6,12,3,1,385,1053570.5,687491.94,167506.38,0,0,0,2557.2805 +13350,16284,29051,29050,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.8191242,7.7498026,40,-3,4.003098,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1815138,8.1125898,55.53,51.55,49.38,58.29,8.333333333333334,1,1,0,0,4,12,3,1,385,1053570.5,687491.94,167506.38,0,0,0,2557.2805 +13351,16285,29052,29053,-9,-9,1,1,77,0,1,0,1,1,-9,0,3,0,0,0,56,4,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.2219021,0,47.5,37.66,51,46,8.333333333333334,2,3,0,0,0,8,1,1,357,756830.25,0,432784,0,0,0,715.04633 +13351,16285,29053,29052,-9,-9,1,0,73,0,1,0,2,2,-9,0,3,0,0,0,56,-4,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,32.51165,0,0,1,1,0,0,0,51,46,47.5,37.66,7,2,3,0,0,0,8,1,1,357,756830.25,0,432784,0,0,0,715.04633 +13351,16286,29054,29055,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.2847772,7.0816765,0,9,-4,167.64421,0,-9,-9,2021,12,1,14,0,1,1,0,12.194502,12.194502,0,0,0,0,0,0,0,0,1,1,0,0,0,49.2,47.47,31.4,48.1,6.666666666666667,2,3,0,0,11,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13351,16286,29055,29054,29053,29052,1,1,51,0,1,0,1,1,-9,0,1,8.3150272,8.3149414,0,9,4,-70.792503,0,3,2,2021,31,12,38,45,1,12,0,11.310942,11.310942,.05,.05,0,0,0,0,0,0,1,1,0,3.5764911,0,31.4,48.1,49.2,47.47,0,2,3,0,1,11,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13351,16286,29056,-9,29054,29055,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-885.4043,-9,1,1,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.12,46.01,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13352,16287,29057,29058,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,0,0,0,26,-1,74.097282,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,2,12,5,1,1400,1278210.6,974788.75,252511.94,39986.48,326.01849,303.04938,5976.9058 +13352,16287,29058,29057,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.6700583,9.6126537,0,27,1,22.179249,0,-9,-9,2021,6,0,55,50,1,0,0,32.689739,32.689739,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,57.06,57.76,8.333333333333334,1,1,0,0,13,12,5,1,1400,1278210.6,974788.75,252511.94,39986.48,326.01849,303.04938,5976.9058 +13352,16288,29059,-9,29057,29058,1,1,20,0,0,0,2,2,1,0,5,7.7608933,7.7815118,0,0,0,-888.8421,-9,1,2,2021,6,0,36,0,1,0,1,9.4252157,9.4252157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,3,12,3,1,1035,-52629.043,-21601.137,0,0,0,0,1041.9336 +13352,16289,29060,-9,29057,29058,1,1,18,0,0,0,2,2,1,0,5,7.7017779,7.6132536,0,0,0,-981.52844,-9,1,2,2021,6,0,27,0,1,0,1,7.6397691,7.6397691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,12,3,1,710,32282.15,81387.086,0,0,0,0,1295.6799 +13353,16290,29061,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.6463981,6.9924903,0,0,-1053.7594,0,3,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,7.5438948,0,0,1,1,0,0,6.7366891,32.07,42.69,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1395,78562.039,58375.629,0,0,0,0,1913.6743 +13354,16291,29062,29063,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3481688,6.996521,12,-1,84.618118,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1712766,7.1871886,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,0,2,3,1,484.5,1023587.8,373351.5,258721.05,0,0,0,3103.5986 +13354,16291,29063,29062,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.5164437,6.8546667,12,1,-50.384392,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0328321,6.5306458,55.36,51.57,51.24,58.84,8.333333333333334,1,1,0,0,0,2,3,1,484.5,1023587.8,373351.5,258721.05,0,0,0,3103.5986 +13355,16292,29064,29065,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,3.9146502,3.907068,44,-2,-2.8915956,0,3,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3753564,3.7680407,29.53,19.07,55.71,46,1.666666666666667,4,2,0,1,7,9,3,1,711,1708817.5,813481.19,376608.88,0,0,0,3066.9832 +13355,16292,29065,29064,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9361649,7.8633933,44,2,-95.004372,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6765656,8.0660067,55.71,46,29.53,19.07,5,1,1,0,0,11,9,3,1,711,1708817.5,813481.19,376608.88,0,0,0,3066.9832 +13356,16293,29066,29067,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.1985154,7.3267088,44,0,-51.437576,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8740263,7.0702567,57.06,57.76,52.12,50.33,8.333333333333334,1,1,0,0,10,7,4,1,293,2105523,1206389,598172.63,0,0,0,4184.0498 +13356,16293,29067,29066,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.092495,8.328577,42,0,-70.425201,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9918113,8.0269346,52.12,50.33,57.06,57.76,8.333333333333334,1,1,0,0,10,7,4,1,293,2105523,1206389,598172.63,0,0,0,4184.0498 +13357,16294,29068,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,7.0545588,7.0572615,0,0,0,-964.43066,0,-9,2,2021,16,4,18,18,1,4,0,8.2978849,8.2978849,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.68,47.44,-9,-9,6.666666666666667,1,1,0,0,2,12,2,0,850,-31493.566,100119.03,0,0,0,0,878.62177 +13357,16295,29069,-9,29068,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.299397,5.9414186,0,0,-1096.8276,-9,1,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.440114,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,552,226841.83,51541.84,0,0,0,0,442.86383 +13358,16296,29070,29071,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.4662075,8.3300266,0,2,15,85.235916,0,3,3,2021,12,3,10,10,1,3,0,46.292568,46.292568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,37.73,60.03,6.666666666666667,2,3,0,0,5,4,5,1,1181,-34838.883,48078.691,184501.22,103976.28,19032.674,0,3243.3401 +13358,16296,29071,29070,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8108735,8.1033535,0,2,-15,85.536064,0,-9,-9,2021,22,9,35,35,1,9,0,8.9408846,8.9408846,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.73,60.03,46.67,55.57,10,1,1,0,0,1,4,5,1,1181,-34838.883,48078.691,184501.22,103976.28,19032.674,0,3243.3401 +13359,16297,29072,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.9584308,8.1465244,0,0,-1025.4343,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2404346,60.52,53.2,-9,-9,10,1,1,0,0,8,13,4,1,623,1198447.1,812234.56,312586.97,0,0,0,2130.8884 +13360,16298,29073,29074,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,21,-12,35.753754,0,3,3,2021,32,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.3551922,0,15.46,43.43,51.24,58.84,5,1,1,0,1,12,7,4,1,1808,1473065.3,942359.5,421306.13,0,0,1741.5034,2205.9634 +13360,16298,29074,29073,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4703884,8.507596,0,21,12,41.671276,0,-9,2,2021,8,0,48,46,1,0,0,9.3704014,9.3704014,.05,.05,0,0,0,0,0,0,0,0,0,3.4824483,0,51.24,58.84,15.46,43.43,8.333333333333334,1,1,0,0,12,7,4,1,1808,1473065.3,942359.5,421306.13,0,0,1741.5034,2205.9634 +13361,16299,29075,-9,29076,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.709,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,467.5,-8548.7832,0,0,0,2657.1938,0,1661.885 +13361,16299,29076,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.4641075,7.773066,6.0212002,0,0,-1081.2625,0,-9,-9,2021,9,0,30,36,1,0,0,8.8764067,8.8764067,0,0,0,0,0,0,0,0,1,1,0,5.748394,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,467.5,-8548.7832,0,0,0,2657.1938,0,1661.885 +13362,16300,29077,29078,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.3864655,6.8637695,0,2,-5,-60.249203,0,-9,-9,2021,11,2,16,35,1,2,0,9.1215849,9.1215849,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.93,55.71,28.55,40.71,8.333333333333334,1,1,0,0,5,7,5,0,542.5,170705.45,64926.578,505002.5,338095.75,0,0,3737.3198 +13362,16300,29078,29077,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,9.0026608,8.9379225,0,2,5,-130.90041,0,-9,-9,2021,17,5,43,45,1,5,0,23.074991,23.074991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.55,40.71,37.93,55.71,0,1,1,0,0,7,7,5,0,542.5,170705.45,64926.578,505002.5,338095.75,0,0,3737.3198 +13363,16301,29079,29081,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.9410143,7.6154008,0,16,-2,-21.44492,0,2,3,2021,13,2,25,16,1,2,0,11.047968,11.047968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.13,47.75,61.52,37.8,8.333333333333334,1,1,0,0,13,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13363,16301,29080,-9,29079,29081,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.5612,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13363,16301,29081,29079,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.3600664,6.3264012,0,16,2,-86.765762,0,2,2,2021,5,1,56,56,1,1,0,1.1812954,1.1812954,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.52,37.8,48.13,47.75,8.333333333333334,1,1,0,0,13,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13364,16302,29082,29083,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.4014692,8.8064079,0,35,-6,-65.563934,0,3,3,2021,7,0,37,37,1,0,0,15.593249,15.593249,.05,.05,0,0,0,0,0,0,0,0,0,7.7959108,0,57.06,57.76,60.02,56.42,10,1,1,0,0,11,5,5,1,1479.5,900602.5,456721.81,215075,0,8184.6602,0,6897.8696 +13364,16302,29083,29082,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.7808123,8.8032751,8.7999134,34,6,-94.334259,0,2,2,2021,6,0,2,4,1,0,0,39.899849,39.899849,.05,.05,0,0,0,0,0,14.5,0,0,0,7.847332,8.6892557,60.02,56.42,57.06,57.76,10,1,1,0,0,11,5,5,1,1479.5,900602.5,456721.81,215075,0,8184.6602,0,6897.8696 +13365,16303,29084,29085,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.549118,8.8448839,8,0,143.34715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9429455,8.83461,51.73,46.4,59.07,40.19,8.333333333333334,1,1,0,0,0,7,4,1,1436.5,1751813,723484.75,596029.44,0,0,0,4500.0244 +13365,16303,29085,29084,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.156991,5.546277,8,0,82.287933,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3256936,4.9718571,59.07,40.19,51.73,46.4,8.333333333333334,1,1,0,0,0,7,4,1,1436.5,1751813,723484.75,596029.44,0,0,0,4500.0244 +13366,16304,29086,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5834713,8.4209604,0,0,0,-1024.7133,0,2,2,2021,7,0,40,38,1,0,0,14.481833,14.481833,.05,.05,0,0,0,0,0,0,0,0,0,6.6666226,0,62.67,44.01,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,353,268704.41,43688.355,210212.55,60851.043,0,0,2510.3503 +13367,16305,29087,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.7618246,8.5969477,0,0,0,-1022.5555,0,2,2,2021,7,0,51,37,1,0,0,12.73703,12.73703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.31,43.75,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,668,198881.91,125198.12,174812.7,49159.387,4012.395,22855.768,2201.0193 +13368,16306,29088,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,1,0,7.6271648,7.73245,0,0,-1215.1073,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,6.0912566,5.0014133,47.727249,0,1,1,0,2.193167,7.677135,51.19,15.16,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1089,272806.16,110629.41,90599.102,0,0,0,2252.2063 +13369,16307,29089,29090,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.9037876,5.8778634,11,2,117.37527,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4461002,5.7268844,52.82,53.97,51.74,35.98,8.333333333333334,1,1,0,0,0,4,2,1,969.5,148845.09,36631.188,149577.91,0,0,0,1268.8489 +13369,16307,29090,29089,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,50,-2,41.774246,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,16.324196,0,0,1,1,0,.1962209,0,51.74,35.98,52.82,53.97,6.666666666666667,1,1,0,0,0,4,2,1,969.5,148845.09,36631.188,149577.91,0,0,0,1268.8489 +13370,16308,29091,29092,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9034181,8.0292835,0,7,-4,28.197481,0,2,2,2021,8,0,29,28,1,0,0,11.529612,11.529612,0,0,0,0,0,0,0,0,1,1,0,7.657373,0,46.44,59.62,46.16,58.62,8.333333333333334,1,1,0,0,7,9,5,1,5341.5,364126.25,186844.36,438082.44,116839.88,0,0,8122.3359 +13370,16308,29092,29091,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.6329098,9.5610561,5.5767517,7,4,52.568771,0,1,2,2021,7,0,30,35,1,0,0,51.872654,51.872654,0,0,0,0,0,0,0,2,1,1,0,7.635603,6.1527381,46.16,58.62,46.44,59.62,8.333333333333334,1,1,0,0,7,9,5,1,5341.5,364126.25,186844.36,438082.44,116839.88,0,0,8122.3359 +13370,16309,29093,-9,29092,29091,1,1,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-1068.1146,-9,1,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4213777,0,38.53,64.73,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,364,-112905.28,0,0,0,0,0,-154.01471 +13371,16310,29094,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.4551764,7.47926,6.9025159,0,0,-996.26465,0,1,2,2021,11,0,5,3,1,0,0,17.602283,17.602283,.05,.05,0,0,0,0,0,2,1,1,0,0,7.0318065,62.49,55.09,-9,-9,10,1,1,0,0,14,1,3,1,289,543894,363904.41,104293.65,0,0,0,1798.0994 +13372,16311,29095,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,9.15588,9.3516598,6.1091385,0,0,-983.54858,0,2,2,2021,11,3,20,20,1,3,0,46.818981,46.818981,.05,.05,0,0,0,0,0,0,0,0,0,6.81742,0,50.66,47.59,-9,-9,6.666666666666667,1,1,0,1,7,7,5,1,588,360865.03,128681.74,0,0,0,0,3193.999 +13373,16312,29096,29097,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.8116264,8.5339737,0,14,1,-44.728661,-9,3,3,2021,9,0,30,0,1,0,0,22.075489,22.075489,0,0,0,0,0,0,0,0,0,0,0,0,0,49.79,44.4,60.44,46.58,10,1,1,0,0,13,6,4,1,2047,2651473,368575.03,768511.63,0,0,0,1716.8311 +13373,16312,29097,29096,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,5.309896,5.3471012,0,14,-1,-159.13289,-9,3,3,2021,11,0,30,0,1,0,0,.63911849,.63911849,0,0,0,0,0,0,0,0,0,0,0,0,0,60.44,46.58,49.79,44.4,8.333333333333334,1,1,0,0,13,6,4,1,2047,2651473,368575.03,768511.63,0,0,0,1716.8311 +13374,16313,29098,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2356396,8.2004089,0,0,-948.88623,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.153873,8.3786697,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,750,723372.06,408208.81,162310.19,0,0,0,3122.1489 +13375,16314,29099,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1112.0787,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,144,413714.44,370912.13,117151.2,42660.609,6540.333,10617.854,-407.44165 +13376,16315,29100,29101,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,58,-1,13.293218,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8320336,0,58.32,50.22,65,34.83,8.333333333333334,1,1,0,0,0,5,3,1,1632.5,576300.63,350687.88,0,0,0,0,2339.2886 +13376,16315,29101,29100,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.787961,7.598711,9,1,-53.326714,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.282517,7.4793363,65,34.83,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,1632.5,576300.63,350687.88,0,0,0,0,2339.2886 +13377,16316,29102,-9,-9,-9,1,0,27,1,3,0,2,2,1,0,4,7.5994034,7.4153376,0,0,0,-907.12671,-9,1,2,2021,16,3,40,0,1,3,0,6.0455647,6.0455647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29103,-9,29102,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.3073,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29104,-9,29102,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.6542,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29105,-9,29102,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-781.46954,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13378,16317,29106,29107,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,7.5318727,7.9507203,6.7814035,7,2,-50.848766,0,2,2,2021,15,4,5,5,1,4,0,41.982174,41.982174,0,0,0,0,0,0,0,0,0,0,0,0,6.739943,42.71,40.35,57.9,51.84,3.333333333333333,1,1,0,0,8,8,4,1,1147.5,771615.63,492186.56,275391.22,0,10460.521,0,2371.5342 +13378,16317,29107,29106,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0277328,8.1969748,0,7,-2,-22.369423,0,3,2,2021,7,0,40,37,1,0,0,8.6334953,8.6334953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,42.71,40.35,6.666666666666667,1,1,0,0,4,8,4,1,1147.5,771615.63,492186.56,275391.22,0,10460.521,0,2371.5342 +13379,16318,29108,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.6610212,8.4724503,0,0,0,-937.96057,0,3,3,2021,10,0,70,50,1,0,0,8.4297428,8.4297428,0,0,0,0,0,0,0,0,0,0,0,6.9425941,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,13,5,0,1549,550084.44,285761.28,120218.84,0,0,0,3720.7522 +13380,16319,29109,-9,-9,-9,1,0,38,0,1,0,3,3,-9,1,2,0,0,0,0,0,-894.00171,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.76,51.85,-9,-9,5,1,1,1,0,0,6,1,0,1643,-101206.27,0,0,0,0,0,1207.2655 +13380,16319,29110,-9,29109,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4813,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,1,0,1643,-101206.27,0,0,0,0,0,1207.2655 +13381,16320,29111,29112,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3460932,8.5249338,0,7,1,3.2344022,0,2,2,2021,7,0,37,37,1,0,0,16.750175,16.750175,0,0,0,0,0,0,0,0,0,0,0,0,0,49.21,36.61,41.47,58.08,6.666666666666667,1,1,0,0,8,11,5,1,832.5,58085.027,11723.074,0,0,12733.926,0,3159.6133 +13381,16320,29112,29111,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.2002211,8.5221691,0,7,-1,-96.313438,0,2,2,2021,13,3,40,51,1,3,0,13.035437,13.035437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,49.21,36.61,6.666666666666667,1,1,0,0,8,11,5,1,832.5,58085.027,11723.074,0,0,12733.926,0,3159.6133 +13382,16321,29113,-9,29115,29117,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29114,-9,29115,29117,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.7207,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29115,29117,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,7.1926446,7.1728244,0,7,-7,-62.619747,0,-9,-9,2021,12,0,18,18,1,0,0,9.7908297,9.7908297,.05,.05,0,0,0,0,0,0,1,1,0,.65162915,0,44.53,56.37,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29116,-9,29115,29117,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-885.01318,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29117,29115,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,9.5389452,9.7020464,0,7,7,-80.147369,0,-9,-9,2021,9,0,45,50,1,0,0,48.726757,48.726757,.05,.05,0,0,0,0,0,0,1,1,0,6.797575,0,51.83,57.2,44.53,56.37,8.333333333333334,1,1,0,0,8,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13383,16322,29118,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.3195953,9.3939934,0,0,0,-1073.9664,0,-9,-9,2021,6,0,60,60,1,0,0,22.313236,22.313236,0,0,0,0,0,0,0,0,1,1,0,.46957842,0,62.39,56.71,-9,-9,10,1,1,0,0,14,2,5,0,584,1327193,297478.69,484812.16,0,0,0,5312.5664 +13384,16323,29119,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.243567,6.2566438,0,0,-999.27191,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3688688,49.35,19.8,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,3076,-14198.143,199702.53,0,0,0,0,1147.2943 +13385,16324,29120,29121,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.2710524,7.9415121,0,8,11,-72.80764,0,2,3,2021,12,1,41,43,1,1,0,11.751882,11.751882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.4,58.62,6.666666666666667,1,1,0,0,9,5,5,1,615,152932.09,205475.97,210132.41,45961.742,0,10196.409,3383.5674 +13385,16324,29121,29120,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.6601563,8.5847321,0,8,-11,-3.2582181,0,-9,-9,2021,14,3,50,60,1,3,0,9.2903328,9.2903328,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,615,152932.09,205475.97,210132.41,45961.742,0,10196.409,3383.5674 +13386,16325,29122,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.9869,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,34.32,51.71,-9,-9,5,1,1,1,0,3,7,1,0,1540,0,0,0,0,0,0,-19.008486 +13387,16326,29123,29124,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.3516502,9.2154036,0,29,12,-7.9490461,0,3,2,2021,6,0,38,38,1,0,0,34.018673,34.018673,.05,.05,0,0,0,0,0,0,0,0,0,6.5097747,0,51.83,57.2,24.04,59.55,8.333333333333334,1,1,0,0,13,12,5,1,1749,1984151.8,1043969.6,519493.72,114156.38,0,0,6966.3286 +13387,16326,29124,29123,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.1666517,8.9861155,0,29,-12,76.569183,0,2,2,2021,13,1,77,41,1,1,0,14.246093,14.246093,0,0,0,0,0,0,0,0,0,0,0,4.5729375,0,24.04,59.55,51.83,57.2,6.666666666666667,1,1,0,0,13,12,5,1,1749,1984151.8,1043969.6,519493.72,114156.38,0,0,6966.3286 +13388,16327,29125,29126,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5779552,9.4290085,0,9,-2,12.785071,0,-9,-9,2021,9,0,30,35,1,1,0,44.620228,44.620228,.05,.05,.05,0,0,0,0,0,0,0,0,5.1899691,0,53,54,62.39,56.71,8,1,1,0,0,1,10,5,1,481,377012.63,209851.7,294280.44,210931.84,0,0,6536.5684 +13388,16327,29126,29125,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.4430885,8.6153631,0,27,2,-69.832413,0,2,1,2021,6,0,17,20,1,0,0,33.926807,33.926807,0,0,.05,0,0,0,0,0,0,0,0,5.2728987,0,62.39,56.71,53,54,10,1,1,0,0,12,10,5,1,481,377012.63,209851.7,294280.44,210931.84,0,0,6536.5684 +13389,16328,29127,29128,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,5.1505761,4.9891157,46,-4,-17.837887,0,3,3,2021,21,9,0,37,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3139062,35.59,24.47,45.13,35.32,5,1,1,0,0,10,12,2,1,607.5,423917.19,0,219500,0,0,0,2039.0038 +13389,16328,29128,29127,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,0,0,8,4,1.3553308,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61615914,0,45.13,35.32,35.59,24.47,6.666666666666667,1,1,0,1,6,12,2,1,607.5,423917.19,0,219500,0,0,0,2039.0038 +13390,16329,29129,-9,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,0,0,-976.17224,0,2,3,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.94,42.34,-9,-9,5,1,1,1,0,8,1,1,1,263,0,0,0,0,0,0,-532.63361 +13391,16330,29130,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9862571,6.940918,0,0,-1011.8615,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6305847,6.902926,48.65,42.44,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,234,507492.59,117459.74,288352.69,0,0,0,1315.6425 +13392,16331,29131,29132,-9,-9,1,0,25,0,0,1,2,0,0,0,5,0,0,0,3,1,-.64929819,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.82291079,0,60.02,56.42,54.69,57.47,8.333333333333334,1,1,0,0,4,6,3,1,691.5,20580.521,43729.859,0,0,320.85449,0,1843.6052 +13392,16331,29132,29131,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0331135,7.7640743,0,3,-1,124.20895,0,2,2,2021,9,0,58,64,1,0,0,5.3501325,5.3501325,.05,.05,0,0,0,0,0,0,1,1,0,2.8504732,0,54.69,57.47,60.02,56.42,8.333333333333334,1,1,0,0,9,6,3,1,691.5,20580.521,43729.859,0,0,320.85449,0,1843.6052 +13393,16332,29133,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5860815,8.6906309,0,0,0,-1010.275,0,2,3,2021,22,10,42,37,1,10,0,18.630627,18.630627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.99,50.67,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,219,395047.78,170605.69,25664.607,68404.422,0,0,2786.1707 +13394,16333,29134,29135,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.9088845,7.884048,52,0,51.305729,0,2,2,2021,21,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6971946,7.8445435,37.33,29.48,20.45,42.61,1.666666666666667,1,1,0,0,0,10,4,1,239.5,1750881.3,1255291.5,243185.19,0,12902.765,0,4440.0122 +13394,16333,29135,29134,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,8.4694061,8.3933086,52,0,155.27026,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.4110639,8.5060921,20.45,42.61,37.33,29.48,1.666666666666667,1,1,0,0,0,10,4,1,239.5,1750881.3,1255291.5,243185.19,0,12902.765,0,4440.0122 +13395,16334,29136,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,6.7341118,6.9001307,0,0,-1062.5313,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,14.801637,0,122.00308,0,1,1,0,3.5422626,6.9319754,55,43,-9,-9,8,1,1,0,0,0,9,2,1,1265,458912.66,1609.5074,119793.84,0,0,0,1588.9915 +13395,16335,29137,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.8087,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5518247,0,56,44,-9,-9,8,1,1,0,0,0,9,1,1,103,157231.84,0,0,0,0,0,833.12164 +13396,16336,29138,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.119998,8.0891438,0,0,0,-1010.2908,0,1,-9,2021,12,0,40,43,1,0,0,9.5392895,9.5392895,.05,.05,0,0,0,0,0,0,1,1,0,3.0438533,0,40.89,51.69,-9,-9,5,1,1,0,1,10,8,4,0,410,-70572.297,-109239.55,0,0,2869.9048,0,1745.6735 +13397,16337,29139,29141,-9,-9,1,0,31,0,1,0,2,2,-9,1,4,0,0,0,1,-2,29.96092,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,1,0,6,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13397,16337,29140,-9,29139,29141,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.832,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13397,16337,29141,29139,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.3048964,8.0617933,0,1,2,50.286736,-9,-9,-9,2021,10,0,40,0,1,1,0,9.898488,9.898488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13398,16338,29142,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.5877247,7.4687796,0,0,-837.38611,0,-9,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9821646,7.4342566,49.81,51.82,-9,-9,10,1,1,0,0,0,2,3,1,560,833454.13,309831.66,192120.2,0,0,0,1965.3959 +13399,16339,29143,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.05898,6.8078499,0,0,-964.40668,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4566257,6.5852561,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,231,707389.44,391617.09,175091.52,0,0,0,1498.4969 +13400,16340,29144,29146,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.5576277,8.23141,0,11,7,78.266899,0,-9,-9,2021,13,2,37,37,1,2,0,11.684778,11.684778,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.94,49.7,46.67,55.57,5,1,1,0,1,12,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29145,-9,29146,29144,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.74335,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29146,29144,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.3118191,8.0564728,0,19,-7,-97.345314,0,2,3,2021,8,0,37,37,1,0,0,8.8768282,8.8768282,0,0,0,0,0,0,0,0,1,0,1,0,0,46.67,55.57,41.94,49.7,6.666666666666667,1,1,0,0,12,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29147,-9,29146,29144,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.3167,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13401,16341,29148,-9,-9,-9,1,0,71,0,1,0,2,2,-9,0,2,0,9.107666,9.3392029,0,0,-1087.0564,0,-9,-9,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,18.738871,0,0,1,1,0,0,9.2173529,33.24,36.4,-9,-9,3.333333333333333,1,1,0,0,0,12,5,1,101,-98661.273,110777.16,0,0,0,10225.877,5604.7549 +13401,16342,29149,29152,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,8.4352303,8.2309599,0,5,6,-21.710188,0,2,2,2021,9,0,42,40,1,0,0,10.268361,10.268361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,42.09,54.2,57.49,8.333333333333334,1,1,0,0,12,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29150,-9,29152,29149,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1070.1176,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29151,-9,29152,29149,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1064.2582,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.98,51.72,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29152,29149,29148,-9,1,0,41,0,1,0,2,2,-9,0,4,8.7636576,8.6345921,0,5,-6,139.73485,0,2,1,2021,9,0,78,42,1,0,0,10.743027,10.743027,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.03,42.09,8.333333333333334,1,1,0,0,12,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13402,16343,29153,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.3404617,8.2672224,0,0,0,-1047.623,0,2,2,2021,36,12,50,50,1,12,0,7.4151344,7.4151344,.05,.05,0,0,0,0,0,2,0,0,0,3.013027,0,45.04,47.98,-9,-9,10,2,3,0,0,9,6,4,1,3567,89946.078,-15890.735,0,0,0,0,1619.5614 +13403,16344,29154,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8929405,7.8238025,0,0,0,-949.02716,0,3,1,2021,10,0,44,49,1,0,0,5.6963973,5.6963973,0,0,0,0,0,0,0,0,0,0,0,0,0,42,40,-9,-9,3.333333333333333,3,4,0,0,11,8,4,1,186,-84513.445,0,0,0,0,12297.099,1470.6234 +13404,16345,29155,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.1013093,4.6171932,0,0,-1020.7899,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6368937,51,47,-9,-9,7,1,1,0,0,0,1,2,1,733,182011.8,-21407.012,62106.777,0,0,0,343.34564 +13404,16346,29156,-9,29155,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2355175,8.1959639,0,0,0,-934.64783,0,2,-9,2021,11,0,37,37,1,0,0,8.5720129,8.5720129,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,392,132214.75,0,0,0,0,1156.791,1615.6689 +13404,16347,29157,-9,29155,-9,1,1,39,0,0,0,1,1,-9,0,3,8.4464808,8.373497,0,0,0,-943.6416,0,3,3,2021,8,0,37,43,1,0,0,14.794293,14.794293,0,0,0,0,0,0,0,0,1,1,0,3.4485016,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,530,-82302.625,0,109497.25,63646.176,0,0,1420.1936 +13405,16348,29158,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.5971632,6.8869028,0,0,-933.46222,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.375206,36.79,45.74,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,720,235158.17,177267.3,0,0,0,0,1529.7285 +13406,16349,29159,29160,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.803791,9.7735844,0,21,0,-58.699886,0,2,2,2021,16,5,65,52,1,5,0,33.456139,33.456139,0,0,0,0,0,0,0,0,0,0,0,8.0070858,0,35.67,64.46000000000001,33.2,52.68,3.333333333333333,2,3,0,0,13,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29160,29159,-9,-9,1,0,43,0,3,0,1,1,-9,0,2,8.0193071,7.812861,0,21,0,43.426693,0,2,2,2021,17,6,13,13,1,6,0,27.304262,27.304262,0,0,0,0,0,0,0,0,0,0,0,7.5032973,0,33.2,52.68,35.67,64.46000000000001,6.666666666666667,2,3,0,0,11,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29161,-9,29160,29159,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.30835,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29162,-9,29160,29159,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-901.23676,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29163,-9,29160,29159,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.10718,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13407,16350,29164,29165,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2578125,6.7617483,11,-3,-38.384109,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.3121648,6.6589298,63.83,27.55,45.07,38.73,6.666666666666667,1,1,0,0,0,8,2,1,334.5,1496633.8,531520.75,651200.69,0,0,0,2157.8904 +13407,16350,29165,29164,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.1393986,6.5506668,44,3,12.364429,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3844342,45.07,38.73,63.83,27.55,10,1,1,0,0,0,8,2,1,334.5,1496633.8,531520.75,651200.69,0,0,0,2157.8904 +13408,16351,29166,29167,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.5098124,8.3982458,4.7718568,44,-3,-29.393841,0,2,2,2021,4,0,14,20,1,0,0,26.45787,26.45787,0,0,0,0,0,0,0,0,0,0,0,0,5.2210126,53.75,54.92,59.32,25.72,8.333333333333334,1,1,0,0,12,9,5,1,316,452954.75,256009.59,228354.66,20662.211,0,1012.423,5080.6006 +13408,16351,29167,29166,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,7.8498898,9.1988487,8.5548496,44,3,-120.47698,0,2,2,2021,11,1,46,45,1,1,0,5.5262251,5.5262251,.05,.05,0,0,0,0,0,0,0,0,0,8.9899549,5.0671816,59.32,25.72,53.75,54.92,6.666666666666667,1,1,0,0,12,9,5,1,316,452954.75,256009.59,228354.66,20662.211,0,1012.423,5080.6006 +13409,16352,29168,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,9.2836885,9.2144909,0,0,0,-1045.9362,0,2,3,2021,13,3,42,40,1,3,0,19.758183,19.758183,.05,.05,0,0,0,0,0,0,0,0,0,1.2826053,0,47.97,26.07,-9,-9,3.333333333333333,1,1,0,1,5,5,5,1,798,334981.97,260717.42,54692.996,1010.5212,3734.5334,408.6745,4182.4268 +13410,16353,29169,-9,29170,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-927.91638,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,2,0,788.5,145592.44,41558.57,187857.66,75548.789,0,0,1450.1394 +13410,16353,29170,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.3394065,6.981432,0,0,0,-982.16095,0,2,2,2021,6,0,27,25,1,0,0,6.1457806,6.1457806,0,0,0,0,0,0,0,0,1,1,0,0,0,41.4,58.06,-9,-9,6.666666666666667,1,1,0,0,11,5,2,0,788.5,145592.44,41558.57,187857.66,75548.789,0,0,1450.1394 +13411,16354,29171,-9,-9,-9,1,0,38,0,0,0,3,3,-9,0,3,8.6021404,8.7644997,0,0,0,-1028.052,0,2,-9,2021,9,2,49,45,1,2,0,13.603106,13.603106,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,6.666666666666667,3,4,0,0,13,8,5,0,1668,18592.682,-35531.477,0,0,3990.0181,1222.3795,2963.293 +13411,16355,29172,-9,29171,-9,1,0,24,0,0,0,1,1,-9,0,3,8.0773211,8.0847063,0,0,0,-996.51648,-9,3,-9,2021,12,1,45,0,1,1,0,8.8977795,8.8977795,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,52.64,-9,-9,5,3,4,0,0,4,8,4,0,186,-92791.023,-105810.25,0,0,0,0,1957.5267 +13412,16356,29173,-9,29175,29174,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.6554,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16356,29174,29175,-9,-9,1,1,48,0,1,0,2,2,-9,1,3,0,0,0,8,-6,48.000687,0,2,2,2021,29,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,40.06,41.03,31.11,60.36,3.333333333333333,1,1,0,0,4,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16356,29175,29174,29176,-9,1,0,54,0,1,0,1,1,-9,0,4,8.9764166,8.7369814,0,8,6,-16.374001,0,2,2,2021,19,7,45,43,1,7,0,21.582607,21.582607,0,0,0,0,0,0,0,27,1,1,0,0,0,31.11,60.36,40.06,41.03,6.666666666666667,1,1,0,0,9,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16357,29176,-9,-9,-9,1,0,89,0,1,0,3,3,-9,0,1,0,0,0,0,0,-1149.3307,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,6.8422966,11.058784,62.195915,0,1,1,0,0,0,48.27,28.91,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,586,0,0,0,0,0,0,608.00977 +13413,16358,29177,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,7.819428,7.9618163,0,0,0,-934.73285,0,2,1,2021,12,2,37,35,1,2,1,8.0498104,8.0498104,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,50.23,-9,-9,5,1,1,0,0,1,12,4,1,216,-77677.297,0,0,0,2833.0066,0,1447.9097 +13413,16359,29178,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-937.19629,0,2,1,2021,28,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8487654,0,17.76,49.37,-9,-9,0,1,1,1,1,0,12,1,1,1294,96923.414,0,0,0,0,0,-864.91016 +13414,16360,29179,29180,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.6060247,8.3762369,0,2,1,-80.403931,0,-9,-9,2021,7,0,41,49,1,0,0,10.137893,10.137893,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,12.72,65.98999999999999,6.666666666666667,1,1,0,0,3,10,3,0,2265,114917.22,-7632.6636,0,0,8637.2158,0,307.69061 +13414,16360,29180,29179,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,2,-1,7.0038366,0,-9,-9,2021,20,8,0,38,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.72,65.98999999999999,51.83,57.2,6.666666666666667,1,1,1,0,6,10,3,0,2265,114917.22,-7632.6636,0,0,8637.2158,0,307.69061 +13415,16361,29181,29182,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.9495578,7.8379111,0,4,-17,-13.335044,0,-9,-9,2021,8,0,40,40,1,0,0,8.1964397,8.1964397,.05,.05,0,0,0,0,0,0,0,0,0,4.6540751,0,55.53,51.55,48.82,53.15,6.666666666666667,1,1,0,0,10,10,5,1,660.5,235292.48,270063.97,121692.63,131953.45,17694.645,7834.999,2959.7917 +13415,16361,29182,29181,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.060071,8.3192625,0,4,17,9.6887445,0,-9,-9,2021,12,2,37,37,1,2,0,10.811994,10.811994,0,0,0,0,0,0,0,0,0,0,0,1.2834355,0,48.82,53.15,55.53,51.55,6.666666666666667,1,1,0,0,13,10,5,1,660.5,235292.48,270063.97,121692.63,131953.45,17694.645,7834.999,2959.7917 +13416,16362,29183,29184,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,6.9743605,7.2035246,0,7,6,35.7439,0,3,3,2021,19,7,42,40,1,7,0,3.4413371,3.4413371,0,0,0,0,0,0,0,0,1,1,0,0,0,48.33,35.78,40.15,33.33,1.666666666666667,2,3,0,0,5,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29184,29183,-9,-9,1,0,39,0,2,0,2,2,-9,0,1,0,0,0,20,-6,-100.228,0,3,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,33.33,48.33,35.78,6.666666666666667,2,3,0,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29185,-9,29184,29183,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.47156,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29186,-9,29184,29183,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-954.47559,1,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13417,16363,29187,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.5054812,6.8859458,0,0,-1050.363,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.358099,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,281,755576.94,365805.22,515765.63,0,0,0,1464.062 +13418,16364,29188,-9,29189,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.21387,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29189,-9,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,9.6679792,10.10296,7.9098001,0,0,-1074.5386,0,1,1,2021,10,0,10,47,1,0,0,178.30746,178.30746,0,0,.05,0,0,0,0,0,1,1,0,8.2607336,0,43.48,60.97,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29190,-9,29189,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.37115,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29191,-9,29189,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.8786,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13419,16365,29192,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,0,6.4634681,6.5621924,0,0,-1132.676,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2875314,0,45.84,41.48,-9,-9,5,1,1,1,0,7,9,2,1,3042,543423.38,352168.31,0,0,0,0,-184.76503 +13420,16366,29193,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.2470045,8.3752499,6.7189727,0,0,-954.16162,0,-9,2,2021,9,1,38,38,1,1,0,9.7248192,9.7248192,0,0,0,0,0,0,0,0,0,0,0,3.5084536,6.7368784,54.21,47.1,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,671,-41858.047,0,0,0,0,0,1995.6873 +13421,16367,29194,-9,-9,-9,1,1,43,0,1,0,2,2,-9,1,2,0,4.1216416,3.9880791,0,0,-917.13104,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.4313798,0,50.69,47.57,-9,-9,5,1,1,0,0,0,9,2,0,340.5,35987.359,0,0,0,0,0,1738.6825 +13421,16367,29195,-9,-9,29194,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1017.9274,-9,-9,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,2,0,340.5,35987.359,0,0,0,0,0,1738.6825 +13421,16368,29196,-9,-9,29194,1,0,18,0,1,0,3,3,-9,0,3,0,0,0,0,0,-916.4223,0,-9,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.43,60.14,-9,-9,10,1,1,1,0,0,9,1,0,405,-70075.391,0,0,0,4828.5083,3927.6243,0 +13422,16369,29197,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.0391803,6.9175773,0,0,0,-960.91443,0,3,2,2021,16,4,24,0,1,4,0,5.1781907,5.1781907,0,0,0,0,0,0,0,0,0,0,0,0,0,46.42,47.56,-9,-9,10,1,1,0,0,1,6,2,1,322,271652.94,-117735.37,187364.53,0,0,1355.8213,241.58522 +13423,16370,29198,29199,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,39,-4,0,0,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.67,26.77,44.93,52.43,10,1,1,0,0,0,12,1,0,386.5,326921.28,0,317710.56,0,0,0,881.23785 +13423,16370,29199,29198,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,7,4,0,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.93,52.43,44.67,26.77,8.333333333333334,1,1,0,0,0,12,1,0,386.5,326921.28,0,317710.56,0,0,0,881.23785 +13423,16371,29200,-9,29198,29199,1,1,30,0,0,0,2,2,-9,0,4,8.1034374,7.6529393,0,0,0,-1098.4967,0,2,3,2021,10,0,37,38,1,1,1,7.872746,7.872746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,3,0,740,-150385.28,-36729.82,0,0,2403.1953,0,846.08716 +13424,16372,29201,29202,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4345455,8.6972675,0,23,-18,-80.168716,0,2,3,2021,8,0,37,43,1,0,0,13.771921,13.771921,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,3,4,0,0,15,6,4,1,1396,955271.88,474512.72,184489.25,0,0,0,1844.1499 +13424,16372,29202,29201,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,4.2960715,4.4331207,24,18,-23.641418,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7511005,4.4695544,55.36,51.57,54.37,54.8,6.666666666666667,3,4,0,0,0,6,4,1,1396,955271.88,474512.72,184489.25,0,0,0,1844.1499 +13425,16373,29203,29204,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9814882,6.2654152,9,3,233.96405,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1036644,34.51,49.44,26.28,50.13,6.666666666666667,1,1,0,0,1,11,2,1,637.5,297425.06,30657.164,146428.83,0,0,0,1617.7981 +13425,16373,29204,29203,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-56.235329,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,26.28,50.13,34.51,49.44,6.666666666666667,1,1,0,0,3,11,2,1,637.5,297425.06,30657.164,146428.83,0,0,0,1617.7981 +13426,16374,29205,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.4976749,8.7510843,5.3283892,0,0,-872.21588,0,2,2,2021,20,9,42,41,1,9,0,13.162772,13.162772,.05,.05,0,0,0,0,0,7,1,1,0,0,5.3261857,40.01,34.68,-9,-9,3.333333333333333,1,1,0,0,12,7,5,1,140,68385.172,-109810.86,0,0,2333.4172,482.46127,2394.4341 +13427,16375,29206,29207,-9,29208,1,0,53,0,0,0,2,2,-9,1,3,8.09196,8.0489759,0,1,4,5.8595161,-9,-9,3,2021,8,1,45,0,1,1,0,8.4687109,8.4687109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.78,42.96,52,55,6.666666666666667,1,1,0,0,9,13,3,1,887.5,36524.684,354.47168,0,0,0,3555.8767,2990.7466 +13427,16375,29207,29206,-9,-9,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,1,-4,-88.980545,-9,3,3,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,50.78,42.96,8,4,1,0,0,0,13,3,1,887.5,36524.684,354.47168,0,0,0,3555.8767,2990.7466 +13427,16376,29208,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.666811,6.4610863,0,0,-944.04767,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3546357,6.3461537,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,688,191656.58,64848.602,48584.801,0,0,0,718.47833 +13428,16377,29209,-9,29210,29211,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0627,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13428,16377,29210,29211,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,16,0,30.433573,-9,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,42.74,59.45,38.61,8.333333333333334,2,3,0,0,5,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13428,16377,29211,29210,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.6074638,8.4172916,0,16,9,170.16093,-9,-9,-9,2021,12,0,50,0,1,0,0,10.872806,10.872806,.05,.05,0,0,0,0,0,0,1,1,0,6.7853384,0,59.45,38.61,57.17,42.74,6.666666666666667,2,3,0,0,1,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13429,16378,29212,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1024.5104,-9,3,3,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.65,57.36,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,210,78407.742,0,0,0,0,0,-29.086079 +13430,16379,29213,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-949.5083,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,45.26,-9,-9,6.666666666666667,1,1,1,0,1,13,1,0,1030,0,0,0,0,0,0,402.58511 +13430,16380,29214,-9,29213,-9,1,1,20,0,0,0,2,2,-9,0,4,6.9214892,6.6006036,0,0,0,-937.14746,0,2,-9,2021,11,0,16,35,1,0,1,6.1755056,6.1755056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,2,13,2,0,1413,103279.05,-46102.547,0,0,0,0,-198.77931 +13431,16381,29215,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.9187,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,46,-9,-9,8,1,1,0,0,10,13,1,1,315,-144273.41,0,0,0,0,0,544.23633 +13431,16382,29216,-9,29215,-9,1,0,37,0,0,0,1,1,-9,0,4,8.0381289,8.023181,0,0,0,-900.69427,0,3,3,2021,11,1,35,35,1,1,0,8.5604,8.5604,.05,.05,0,0,0,0,0,0,1,1,0,2.0762045,0,52.08,55.93,-9,-9,10,1,1,0,0,14,13,4,1,819,13963.533,-19016.916,145896.73,95548.664,0,0,1684.9912 +13431,16383,29217,-9,29215,-9,1,0,37,0,0,0,1,1,-9,0,3,7.887588,8.2191992,0,0,0,-1033.7065,0,3,3,2021,11,0,48,40,1,0,0,7.9825821,7.9825821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,-9,-9,8.333333333333334,1,1,0,0,13,13,4,1,235,8545.5615,128825.41,0,0,0,8744.6543,1337.8201 +13432,16384,29218,-9,-9,29219,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.88,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,3,0,652,105606.86,66403.031,0,0,0,0,1230.3669 +13432,16384,29219,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.5353169,7.5851254,0,0,0,-1028.418,0,2,-9,2021,11,0,39,36,1,0,0,6.8253155,6.8253155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,4,2,3,0,652,105606.86,66403.031,0,0,0,0,1230.3669 +13433,16385,29220,29221,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1288338,8.2345114,0,39,-4,-2.0801914,0,2,3,2021,12,0,34,30,1,0,0,12.743958,12.743958,0,0,0,0,0,0,0,0,0,0,0,2.3609946,0,39.33,60.15,52,54.51,6.666666666666667,1,1,0,0,13,13,5,1,1334,1276534.1,746383,425902.13,0,0,0,4249.751 +13433,16385,29221,29220,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.040906,8.8430309,8.0521278,38,4,17.44976,0,3,3,2021,7,0,22,22,1,0,0,18.791891,18.791891,.05,.05,0,0,0,0,0,0,0,0,0,2.8105452,7.9106226,52,54.51,39.33,60.15,6.666666666666667,1,1,0,0,13,13,5,1,1334,1276534.1,746383,425902.13,0,0,0,4249.751 +13433,16386,29222,-9,29220,29221,1,0,29,0,0,0,1,1,-9,0,3,8.5334663,8.4662695,0,0,0,-982.90039,0,2,2,2021,8,0,39,37,1,0,1,12.503923,12.503923,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,403,-76816.367,132710.45,0,0,0,0,2017.5084 +13433,16387,29223,-9,29220,29221,1,0,28,0,0,0,2,2,-9,0,5,8.2620811,8.3463278,0,0,0,-963.302,0,2,2,2021,12,0,44,38,1,0,1,11.548583,11.548583,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,413,104599.81,53978.59,0,0,0,0,1735.1694 +13434,16388,29224,29225,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,61,2,60.801838,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1895866,0,0,1,1,0,2.7421987,0,61.94,23.88,57.34,47.92,10,1,1,0,0,0,4,2,1,462.5,601272,26138.582,182603.94,0,0,0,1051.824 +13434,16388,29225,29224,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.3154054,6.8850608,61,-2,10.508937,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2136173,7.3444691,57.34,47.92,61.94,23.88,8.333333333333334,1,1,0,0,0,4,2,1,462.5,601272,26138.582,182603.94,0,0,0,1051.824 +13435,16389,29226,29229,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6795416,8.7165041,0,16,2,-109.63301,0,2,2,2021,12,0,43,60,1,0,0,21.043787,21.043787,0,0,.05,0,0,0,0,0,1,1,0,0,0,56.18,43.12,43.09,61.58,8.333333333333334,1,1,0,0,9,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29227,-9,29229,29226,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.53955,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29228,-9,29229,29226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.0614,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29229,29226,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.5350609,7.5421176,0,8,-2,-21.900988,0,-9,-9,2021,17,6,16,25,1,6,0,11.01157,11.01157,0,0,0,0,0,0,0,0,1,1,0,6.9025888,0,43.09,61.58,56.18,43.12,6.666666666666667,4,2,0,0,8,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13436,16390,29230,29231,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2457075,8.0306864,7,1,24.280645,0,-9,-9,2021,10,0,0,10,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6498082,8.1583252,52,48,57.06,57.76,7,1,1,0,0,0,5,3,1,749.5,1387852.4,630286.63,252146.77,0,0,0,2988.9846 +13436,16390,29231,29230,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,42,-1,-79.83593,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0675879,0,57.06,57.76,52,48,8.333333333333334,1,1,0,0,5,5,3,1,749.5,1387852.4,630286.63,252146.77,0,0,0,2988.9846 +13437,16391,29232,-9,29233,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-941.23505,0,2,3,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.83,47.86,-9,-9,0,1,1,0,0,6,11,1,1,765,-180190.86,0,0,0,0,0,1387.7446 +13437,16392,29233,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.6653962,6.8502846,0,0,-931.96228,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,28.5595,0,2,1,1,0,1.5457357,7.1245804,63.1,22.4,-9,-9,5,1,1,0,0,0,11,2,1,374,580503.75,139043.13,187670.03,0,0,0,1199.8997 +13438,16393,29234,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.8477325,7.1036987,0,0,0,-1045.6874,0,-9,-9,2021,9,0,40,40,1,0,0,3.0338347,3.0338347,0,0,0,0,0,0,0,0,0,0,0,7.4055257,0,52.88,56.68,-9,-9,8.333333333333334,3,4,0,0,11,8,2,1,339,860793.19,0,702947.63,0,0,0,1524.5177 +13439,16394,29235,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1028.623,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.61,18.47,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,415,58835.797,0,149900.17,59110.055,0,0,113.62061 +13440,16395,29236,29237,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,2,2,0,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.52000427,0,0,1,1,0,0,0,43.91,31.46,54,54,6.666666666666667,1,1,0,0,0,7,1,0,1007.5,970866,330349.06,340639.19,0,0,0,487.358 +13440,16395,29237,29236,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,0,0,2,-2,0,0,3,3,2021,9,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,43.91,31.46,10,1,1,0,0,10,7,1,0,1007.5,970866,330349.06,340639.19,0,0,0,487.358 +13441,16396,29238,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.6107159,8.7898455,0,0,0,-911.08557,0,3,3,2021,8,0,39,37,1,0,0,20.885664,20.885664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,330.5,103569.7,24279.809,86602.531,81094.969,1269.5332,0,2385.4348 +13441,16396,29239,-9,29238,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.6031,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,330.5,103569.7,24279.809,86602.531,81094.969,1269.5332,0,2385.4348 +13442,16397,29240,-9,29242,29241,1,0,19,0,0,0,2,2,1,0,3,0,4.9090943,4.7061954,0,0,-1087.1992,-9,1,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5851998,0,55.05,32.62,-9,-9,8.333333333333334,1,1,0,0,3,7,2,1,718,50634.406,0,0,0,0,0,-106.68288 +13442,16398,29241,29242,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.2895174,9.5000362,7.1840644,5,8,-91.980927,0,-9,-9,2021,9,0,38,38,1,0,0,32.630093,32.630093,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2694554,55.93,39.42,38.68,51.38,3.333333333333333,1,1,0,1,6,7,5,1,1576.5,2267211.8,1166268.8,775941.63,0,0,0,8358.7393 +13442,16398,29242,29241,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,9.1089172,8.8923607,0,5,-8,48.065231,0,2,2,2021,17,6,47,42,1,6,0,15.473643,15.473643,.05,.05,0,0,0,0,0,0,0,0,0,4.9147906,0,38.68,51.38,55.93,39.42,8.333333333333334,1,1,0,0,6,7,5,1,1576.5,2267211.8,1166268.8,775941.63,0,0,0,8358.7393 +13443,16399,29243,29247,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.1971245,8.351779,0,10,-5,8.0500631,0,-9,-9,2021,11,0,50,39,1,0,0,11.244973,11.244973,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,41.12,47.92,8.333333333333334,1,1,0,0,7,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29244,-9,29243,29247,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-991.28888,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29245,-9,29243,29247,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-952.65289,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29246,-9,29243,29247,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-990.60449,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29247,29243,-9,-9,1,1,52,0,3,0,2,2,-9,0,2,8.9822302,9.2947321,0,10,5,42.305756,0,-9,-9,2021,11,1,35,40,1,1,0,30.503712,30.503712,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.12,47.92,57.16,56.15,6.666666666666667,1,1,0,0,12,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16400,29248,-9,-9,-9,1,0,83,0,3,0,3,3,-9,0,4,0,6.156261,6.3173132,0,0,-1006.5393,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,2.0954268,0,0,1,1,0,0,6.2127028,36.19,49.06,-9,-9,10,1,1,0,0,0,9,2,1,388,467238.91,95446.375,145421.56,0,0,0,189.04134 +13444,16401,29249,-9,29250,29253,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-875.84943,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29250,29253,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,15,-3,89.523575,0,-9,-9,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,47,52,6,2,3,1,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29251,-9,29250,29253,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1097.2813,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29252,-9,29250,29253,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-827.60583,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29253,29250,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,7.9596438,8.3316126,0,8,3,178.81764,-9,3,2,2021,11,0,37,0,1,2,0,9.2028456,9.2028456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,52,40,41,7,2,3,0,0,13,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13445,16402,29254,29255,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2679243,8.7453747,0,33,3,.99732667,0,2,-9,2021,13,1,38,38,1,1,0,15.43331,15.43331,.05,.05,0,0,0,0,0,0,0,0,0,2.7320719,0,47.91,37.83,58.72,51.29,6.666666666666667,1,1,0,0,13,13,5,1,659,948527.88,543469.13,189799.16,0,6095.4492,1155.3361,4253.708 +13445,16402,29255,29254,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6398745,9.2465391,0,32,-3,77.922409,0,2,3,2021,8,0,38,38,1,0,0,25.357468,25.357468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,47.91,37.83,8.333333333333334,1,1,0,0,13,13,5,1,659,948527.88,543469.13,189799.16,0,6095.4492,1155.3361,4253.708 +13445,16403,29256,-9,29255,29254,1,1,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1079.6567,1,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.99,-9,-9,8.333333333333334,1,1,0,1,2,13,1,1,654,2305.5388,0,0,0,0,0,0 +13446,16404,29257,29258,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,2,22.551451,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,4.6730003,0,0,1,1,0,0,0,41.91,53.55,56.46,38.75,8.333333333333334,1,1,0,0,0,9,2,1,1245.5,801103,115872.52,466836.31,0,0,0,2025.3123 +13446,16404,29258,29257,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.3772192,5.6817956,8,-2,-169.3649,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8404764,5.5270419,56.46,38.75,41.91,53.55,8.333333333333334,1,1,0,0,0,9,2,1,1245.5,801103,115872.52,466836.31,0,0,0,2025.3123 +13447,16405,29259,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5137844,8.3490524,0,0,0,-1105.9945,0,-9,2,2021,12,0,40,40,1,0,0,13.050406,13.050406,.05,.05,0,0,0,0,0,0,0,0,0,4.1472869,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,206,957868.13,1102274.4,107884.94,1198.6031,7382.6865,0,1994.9878 +13448,16406,29260,29261,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,43,-6,0,0,2,2,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,17.48,41.23,59.35,1.666666666666667,1,1,0,1,0,10,1,0,1317.5,176403.72,0,108520.33,0,0,0,2066.6973 +13448,16406,29261,29260,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,43,6,0,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.23,59.35,35.93,17.48,3.333333333333333,1,1,0,1,0,10,1,0,1317.5,176403.72,0,108520.33,0,0,0,2066.6973 +13449,16407,29262,-9,29263,29265,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.90845,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29263,29265,-9,-9,1,0,37,0,3,0,1,1,-9,0,5,8.5531025,8.6689157,0,17,-1,136.42644,0,2,2,2021,6,0,40,38,1,0,0,16.346043,16.346043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,58.07,59.54,40.17,10,1,1,0,0,9,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29264,-9,29263,29265,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.8139,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29265,29263,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,9.3187428,9.1105938,0,16,1,75.06076,0,2,3,2021,12,1,35,35,1,1,0,29.171553,29.171553,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.54,40.17,46.21,58.07,8.333333333333334,1,1,0,0,9,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29266,-9,29263,29265,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.29462,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13450,16408,29267,29268,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.844099,9.162138,6.9786549,4,-10,-123.01332,0,-9,-9,2021,8,1,70,76,1,1,0,16.717113,16.717113,0,0,0,0,0,0,0,0,0,0,0,8.6783981,0,40.11,51.05,53.95,50.89,10,1,1,0,0,9,9,5,1,1132,3757913.5,406122.31,998074.88,121271.11,0,0,12149.519 +13450,16408,29268,29267,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.8082943,9.7750607,6.2290792,4,10,33.85244,0,-9,-9,2021,7,0,80,80,1,0,0,21.551014,21.551014,0,0,.05,0,0,0,0,0,0,0,0,0,6.9099922,53.95,50.89,40.11,51.05,6.666666666666667,1,1,0,0,8,9,5,1,1132,3757913.5,406122.31,998074.88,121271.11,0,0,12149.519 +13451,16409,29269,-9,29271,29270,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06732,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29270,29271,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.4920473,7.261683,0,6,3,-7.5091319,0,1,2,2021,16,4,30,20,1,4,0,5.881875,5.881875,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.65,48.78,33.62,36.14,6.666666666666667,1,1,0,0,5,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29271,29270,-9,-9,1,0,37,0,3,0,2,2,-9,1,3,0,0,0,6,-3,-11.36354,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.62,36.14,52.65,48.78,3.333333333333333,1,1,0,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29272,-9,29271,29270,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.4068,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29273,-9,29271,29270,1,1,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-868.91504,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13452,16410,29274,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.42334,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,28.37,22.33,-9,-9,0,1,1,0,1,6,6,1,0,2371,-118165.35,0,0,0,0,0,270.33505 +13452,16411,29275,-9,29274,-9,1,1,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.55792,0,3,-9,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.79,19.61,-9,-9,1.666666666666667,1,1,0,1,4,6,1,0,767,-56070.02,0,0,0,0,0,-109.31487 +13453,16412,29276,29277,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.2268505,9.1280212,0,9,-2,-10.38158,0,2,2,2021,5,0,42,45,1,0,0,30.164379,30.164379,.05,.05,0,0,0,0,0,0,0,0,0,7.0600863,0,57.06,57.76,62.49,55.09,6.666666666666667,1,1,0,0,11,11,5,1,1398.5,1514971.1,614783.5,659148,0,0,0,7723.1465 +13453,16412,29277,29276,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.8642921,9.2420311,0,9,2,66.123581,0,-9,-9,2021,6,0,30,37,1,0,0,40.724827,40.724827,0,0,0,0,0,0,0,0,0,0,0,.77244091,0,62.49,55.09,57.06,57.76,10,1,1,0,0,9,11,5,1,1398.5,1514971.1,614783.5,659148,0,0,0,7723.1465 +13454,16413,29278,-9,29279,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1086.3022,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,1,0,1050,80219.656,0,0,0,0,4649.7935,3018.4839 +13454,16413,29279,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,0,0,0,0,-989.08905,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.48,17.04,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1050,80219.656,0,0,0,0,4649.7935,3018.4839 +13454,16414,29280,-9,29279,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1136.9298,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,96,33958.219,0,0,0,0,0,0 +13455,16415,29281,29282,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.4981928,8.39499,37,6,68.827576,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4171867,8.1509933,54.96,53.17,40.61,64.02,8.333333333333334,1,1,0,0,3,9,3,1,687.5,1664923.8,750546.75,760924.5,0,0,0,2943.2813 +13455,16415,29282,29281,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,5,-6,22.137165,0,-9,-9,2021,20,8,0,20,4,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7707882,0,40.61,64.02,54.96,53.17,5,1,1,0,0,6,9,3,1,687.5,1664923.8,750546.75,760924.5,0,0,0,2943.2813 +13456,16416,29283,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.8655834,6.8260517,0,0,-1068.4084,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9166312,6.8437753,49.76,42.45,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1593,143844.73,170785.17,0,0,0,0,1582.1456 +13457,16417,29284,29286,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.0517817,8.1965427,0,10,4,-120.28068,0,3,1,2021,14,2,39,38,1,2,0,10.104657,10.104657,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.93,56.27,35.26,47.34,5,2,3,0,0,8,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13457,16417,29285,-9,29286,29284,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.46484,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13457,16417,29286,29284,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,6.0417023,6.2577009,0,10,-4,54.25758,0,3,2,2021,12,2,8,12,1,2,0,7.3155556,7.3155556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.26,47.34,36.93,56.27,3.333333333333333,2,3,0,0,8,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13458,16418,29287,29288,-9,-9,1,0,38,0,2,0,3,3,-9,0,3,8.2773018,8.3173523,0,18,-16,11.97898,0,3,2,2021,7,0,45,50,1,0,0,8.7140322,8.7140322,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,54.96,53.17,8.333333333333334,2,3,0,0,4,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29288,29287,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.7325602,8.6532383,0,18,16,-70.518776,0,3,2,2021,6,0,58,58,1,0,0,11.46152,11.46152,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,43.71,56.91,1.666666666666667,1,1,0,0,9,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29289,-9,29287,29288,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-922.89343,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29290,-9,29287,29288,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-896.52454,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13459,16419,29291,29292,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.4405799,7.619802,0,7,-2,61.711632,0,3,-9,2021,3,0,16,16,1,0,0,11.706107,11.706107,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.17,47.9,54.96,53.17,8.333333333333334,1,1,0,0,9,12,5,0,600,396196.63,225027.31,243053.42,133600.47,4335.8765,1648.1472,4673.4639 +13459,16419,29292,29291,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,9.3175774,9.3360691,0,7,2,-83.641792,0,-9,-9,2021,6,0,70,60,1,0,0,14.782144,14.782144,.05,.05,0,0,0,0,0,0,0,0,0,6.9998326,0,54.96,53.17,37.17,47.9,8.333333333333334,1,1,0,0,12,12,5,0,600,396196.63,225027.31,243053.42,133600.47,4335.8765,1648.1472,4673.4639 +13460,16420,29293,29296,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,8.373395,8.446311,0,10,-3,46.274017,0,2,2,2021,12,0,60,55,1,0,0,8.0269175,8.0269175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.59,47.04,55.93,20.81,6.666666666666667,1,1,0,0,10,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29294,-9,29296,-9,1,0,16,0,1,0,2,2,-9,0,3,0,6.4413648,6.4241533,0,0,-1003.236,-9,1,-9,2021,28,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5496325,0,28.05,56.1,-9,-9,3.333333333333333,1,1,0,0,0,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29295,-9,29296,29293,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1134.4213,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29296,29293,-9,-9,1,0,41,0,1,0,1,1,-9,1,1,8.1524057,8.4239292,0,10,3,22.389944,0,2,2,2021,10,1,38,39,1,1,0,8.7323675,8.7323675,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.93,20.81,45.59,47.04,6.666666666666667,1,1,0,0,8,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13461,16421,29297,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.21509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,37.78,-9,-9,10,1,1,0,0,0,7,2,0,802,155426.86,0,83790.805,0,0,0,245.9171 +13462,16422,29298,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.708807,7.7179394,0,0,-967.9599,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,6.3807163,6.4950509,74.428909,0,1,1,0,3.1317046,7.5632253,25.43,29.19,-9,-9,1.666666666666667,1,1,0,0,3,4,3,1,3659,352409.44,244642.3,0,0,0,0,2208.8596 +13463,16423,29299,29300,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,57,-5,-29.75271,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.9976578,0,0,1,1,0,0,0,57.16,56.15,62.42,45.64,8.333333333333334,1,1,0,0,0,6,2,1,348.5,10488.063,14796.705,98875.242,0,0,0,1964.1997 +13463,16423,29300,29299,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.0612173,5.7652612,57,5,-8.5106621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7137785,5.6229873,62.42,45.64,57.16,56.15,8.333333333333334,1,1,0,0,0,6,2,1,348.5,10488.063,14796.705,98875.242,0,0,0,1964.1997 +13464,16424,29301,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2252688,7.046525,0,0,-1059.0192,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.253159,54.96,53.17,-9,-9,10,1,1,0,0,10,4,2,0,828,533992.31,406852.09,54677.227,0,0,0,-153.8526 +13465,16425,29302,29303,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,8,7,0,0,3,1,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.9,36.42,33.64,33.57,5,2,3,1,0,5,2,1,1,634,29660.852,0,0,0,0,0,302.76663 +13465,16425,29303,29302,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,35,-7,0,0,3,2,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.64,33.57,45.9,36.42,5,2,3,0,0,0,2,1,1,634,29660.852,0,0,0,0,0,302.76663 +13465,16426,29304,-9,29303,29302,1,1,29,0,0,0,2,2,-9,1,2,0,0,0,0,0,-896.06781,0,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.34,30.37,-9,-9,5,2,3,1,0,0,2,1,1,1601,-73354.359,0,0,0,0,0,1788.8022 +13466,16427,29305,29306,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.2795382,9.5048294,7.6557517,36,3,-8.103529,0,2,2,2021,7,0,45,43,1,0,0,25.918066,25.918066,0,0,0,0,0,0,0,0,1,1,0,3.5024252,7.631331,54.2,57.49,49,48,8.333333333333334,1,1,0,0,10,9,5,1,1488.5,2026663,1226357.8,872862.81,0,133.45728,0,5310.5098 +13466,16427,29306,29305,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-131.04272,0,-9,-9,2021,11,0,0,40,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,54.2,57.49,7,1,1,0,0,0,9,5,1,1488.5,2026663,1226357.8,872862.81,0,133.45728,0,5310.5098 +13467,16428,29307,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.8497305,9.8656683,0,0,-1061.5061,0,2,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.2179403,8.5355911,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,2753,993143.75,900747.75,165020.61,0,0,0,7323.8975 +13468,16429,29308,29309,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,8.7791271,8.8337851,9,6,-9.3016758,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1632075,8.5505142,57.16,56.15,68.11,22.42,8.333333333333334,1,1,0,0,3,13,4,1,288,773063.5,361906.25,0,0,0,0,3625.96 +13468,16429,29309,29308,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-6,76.928635,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1848068,0,68.11,22.42,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,288,773063.5,361906.25,0,0,0,0,3625.96 +13469,16430,29310,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.750248,8.8427601,0,0,0,-1124.4568,0,3,3,2021,12,0,50,43,1,0,0,16.434174,16.434174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,6,5,1,732,441698.38,411191.5,125788.98,20066.801,0,0,2828.5786 +13469,16431,29311,-9,29310,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7845764,7.6442657,5.0474405,0,0,-953.26862,0,1,-9,2021,11,0,36,42,1,0,1,7.8296614,7.8296614,0,0,0,0,0,0,0,0,0,0,0,5.2371907,0,52.88,56.68,-9,-9,10,4,2,0,0,8,6,3,1,1192,-9490.6084,0,0,0,0,0,894.76587 +13469,16432,29312,-9,29310,-9,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1019.9915,-9,1,-9,2021,21,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,63,-9,-9,6.666666666666667,4,2,0,0,4,6,1,1,298,0,0,0,0,0,0,0 +13469,16433,29313,-9,29310,-9,1,1,23,0,0,0,1,1,1,0,5,7.7831883,7.9592309,0,0,0,-998.586,-9,1,-9,2021,4,0,36,0,1,0,1,6.9072366,6.9072366,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,4,2,0,0,7,6,3,1,856,73579.742,0,0,0,0,0,627.81616 +13470,16434,29314,29315,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7280637,0,63.26,42.53,50.48,52.79,8.333333333333334,1,1,0,0,9,12,1,0,468.5,80143.109,0,150881.03,-2866.0171,0,0,1109.8363 +13470,16434,29315,29314,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,2,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46167704,0,50.48,52.79,63.26,42.53,8.333333333333334,1,1,0,0,7,12,1,0,468.5,80143.109,0,150881.03,-2866.0171,0,0,1109.8363 +13471,16435,29316,-9,29317,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.2038,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,694,-105466.88,-43453.352,159963.47,105754.02,0,0,2362.4092 +13471,16435,29317,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.383193,8.4272442,6.8618908,0,0,-842.09296,0,3,2,2021,8,0,40,37,1,0,0,16.544546,16.544546,.05,.05,0,0,0,0,0,0,1,1,0,6.3291874,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,694,-105466.88,-43453.352,159963.47,105754.02,0,0,2362.4092 +13472,16436,29318,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,8.1036062,8.0536022,0,0,0,-860.26123,0,3,3,2021,13,1,38,26,1,1,0,11.033161,11.033161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.11,46.74,-9,-9,5,1,1,0,0,13,12,4,0,1133,227728.81,288906.16,0,0,7092.3291,2479.7915,1962.4586 +13472,16437,29319,-9,29318,-9,1,0,29,0,1,0,1,1,-9,0,3,8.1004353,8.1352777,0,0,0,-996.28925,0,2,-9,2021,12,0,82,36,1,0,1,4.8244548,4.8244548,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.29,61.29,-9,-9,5,1,1,0,0,9,12,4,0,1577,-242574.09,5961.8843,0,0,0,0,2094.7351 +13473,16438,29320,29321,-9,-9,1,1,61,0,0,0,3,3,-9,1,4,6.8519616,7.1206551,0,8,1,158.94893,0,3,3,2021,7,0,12,12,1,0,0,7.1752138,7.1752138,0,0,0,0,0,0,0,42,1,1,0,0,0,45.53,53.13,49,48,10,1,1,0,0,9,5,2,0,2555,289835.53,18360.676,160469.11,0,0,0,2076.373 +13473,16438,29321,29320,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,8,-1,80.5494,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.53,53.13,7,1,1,0,0,0,5,2,0,2555,289835.53,18360.676,160469.11,0,0,0,2076.373 +13474,16439,29322,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.9403963,9.2690525,0,0,0,-1049.4186,0,3,2,2021,9,0,20,20,1,0,0,53.876457,53.876457,.05,.05,0,0,0,0,0,2,0,0,0,10.334849,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,409,528839.63,509511.47,0,0,0,0,8606.7734 +13475,16440,29323,29324,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.2348971,6.9170508,12,13,50.454205,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2200565,59.71,45.35,42.07,45.18,8.333333333333334,1,1,0,0,7,10,4,0,839,1572675.3,952187.38,258584.27,0,0,0,2368.196 +13475,16440,29324,29323,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.0789003,8.213438,0,12,-13,-74.849342,0,2,1,2021,24,9,37,37,1,9,0,9.0907526,9.0907526,0,0,0,0,0,0,0,2,1,1,0,0,0,42.07,45.18,59.71,45.35,8.333333333333334,1,1,0,0,15,10,4,0,839,1572675.3,952187.38,258584.27,0,0,0,2368.196 +13476,16441,29325,29326,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,7.0673623,7.1171393,29,11,21.48595,0,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1677303,47,38,51,54,6.666666666666667,2,3,0,1,0,6,2,1,480,1224365.3,805383.25,191155.5,0,0,0,447.4985 +13476,16441,29326,29325,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,29,-11,-133.20146,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6391759,0,51,54,47,38,8,2,3,0,0,0,6,2,1,480,1224365.3,805383.25,191155.5,0,0,0,447.4985 +13476,16442,29327,-9,29326,29325,1,1,29,0,0,0,1,1,-9,0,3,7.5596123,7.6690764,0,0,0,-910.18396,0,3,3,2021,5,0,37,40,1,0,1,7.2019176,7.2019176,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,6,3,1,1875,48989.57,0,0,0,0,0,109.70628 +13477,16443,29328,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-907.76489,-9,2,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,52.88,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,312,0,0,0,0,0,0,493.98184 +13478,16444,29329,29330,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.296339,8.2497673,38,0,-97.247917,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5094347,8.0659475,43.59,59.64,60.7,47.65,6.666666666666667,1,1,0,0,10,9,4,1,1039,2008413.9,1190697,705619.75,0,0,0,3596.373 +13478,16444,29330,29329,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.0875373,7.045958,38,0,-5.4814672,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0665722,6.7581758,60.7,47.65,43.59,59.64,8.333333333333334,1,1,0,0,5,9,4,1,1039,2008413.9,1190697,705619.75,0,0,0,3596.373 +13479,16445,29331,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.668611,7.8721604,0,0,0,-995.15717,0,2,2,2021,24,12,40,35,1,12,0,6.9915948,6.9915948,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.12,51.92,-9,-9,5,1,1,0,1,11,1,3,0,96,47275.371,95304.617,0,0,0,-1526.1678,1212.8167 +13480,16446,29332,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,6.0219431,5.8157768,0,0,-1080.0718,0,-9,-9,2021,21,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6052179,5.8452406,33.88,36.39,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,448,113723.08,0,124310.32,0,0,0,3068.5369 +13481,16447,29333,29334,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,47,1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,58.31,42.52,8.333333333333334,1,1,0,0,0,6,1,0,472.5,-83375.406,0,0,0,0,0,2246.7312 +13481,16447,29334,29333,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,62.66,52.4,0,1,1,0,0,0,6,1,0,472.5,-83375.406,0,0,0,0,0,2246.7312 +13482,16448,29335,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-826.59839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,57.63,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1216,190004.56,0,0,0,0,0,1803.3783 +13483,16449,29336,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.7317638,8.3598585,0,0,0,-897.70496,0,3,2,2021,24,12,36,32,1,12,0,16.724995,16.724995,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.28,58.05,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,295,366677.38,240679.69,171852.64,96163.734,0,0,1904.0634 +13484,16450,29337,29340,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,7.5906372,7.1773539,0,23,3,-32.563942,0,3,2,2021,9,0,40,40,1,1,0,5.6106071,5.6106071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,48.72,45.68,8,1,1,0,0,1,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29338,-9,29340,29337,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.41766,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29339,-9,29340,29337,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2276,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29340,29337,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.7479196,7.84447,0,23,-3,8.8879337,0,2,2,2021,8,2,30,30,1,2,0,10.725471,10.725471,.05,.05,0,0,0,0,0,0,1,1,0,1.6718634,0,48.72,45.68,52,55,6.666666666666667,1,1,0,0,6,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13485,16451,29341,29342,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.0232391,8.0854216,53,4,-24.597198,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9570158,8.2384911,52.39,43.31,50.03,53.84,8.333333333333334,1,1,0,0,0,12,3,1,1107,1116633.1,595939.88,277554.25,0,1005.6931,0,3060.7588 +13485,16451,29342,29341,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1311007,5.0214872,53,-4,35.215034,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3656702,4.6563363,50.03,53.84,52.39,43.31,10,1,1,0,0,0,12,3,1,1107,1116633.1,595939.88,277554.25,0,1005.6931,0,3060.7588 +13486,16452,29343,-9,-9,-9,1,1,19,0,0,0,2,2,-9,1,2,0,0,0,0,0,-932.27118,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.8,47.08,-9,-9,1.666666666666667,4,2,1,0,0,10,1,0,675,122753.82,0,0,0,0,0,416.34552 +13487,16453,29344,29345,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,8.3730307,7.9912224,0,11,8,113.58302,0,3,3,2021,6,0,40,40,1,0,0,8.494585,8.494585,0,0,0,0,0,0,0,14.5,1,1,0,.39159545,0,57.06,57.76,61.12,51.57,10,1,1,0,0,12,8,4,1,475,1957258.8,1074060.5,486894.81,0,5781.1338,4921.9917,3046.156 +13487,16453,29345,29344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8381405,8.0831404,0,11,-8,-82.225822,0,3,3,2021,7,0,20,32,1,0,0,14.86608,14.86608,0,0,0,0,0,0,0,7,1,1,0,0,0,61.12,51.57,57.06,57.76,10,1,1,0,0,12,8,4,1,475,1957258.8,1074060.5,486894.81,0,5781.1338,4921.9917,3046.156 +13488,16454,29346,29347,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,59,-3,-51.59008,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0427797,0,57.65,56.13,63.48,51.85,10,1,1,0,0,0,7,2,1,525.5,687827.19,9676.1289,324787.22,0,0,0,1221.9745 +13488,16454,29347,29346,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.1052594,5.0608501,59,3,97.864632,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7007599,5.4699664,63.48,51.85,57.65,56.13,10,1,1,0,0,0,7,2,1,525.5,687827.19,9676.1289,324787.22,0,0,0,1221.9745 +13489,16455,29348,29349,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.7828407,7.0032911,59,4,-106.68381,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9072254,6.7597404,65.63,45.52,41.18,41.95,10,1,1,0,0,0,1,2,1,302.5,168726.83,142991.67,144524.5,0,0,0,1559.6478 +13489,16455,29349,29348,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,4.168366,4.1407576,59,-4,131.58206,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,9.371911,0,0,1,1,0,6.9155836,4.3227053,41.18,41.95,65.63,45.52,8.333333333333334,1,1,0,0,0,1,2,1,302.5,168726.83,142991.67,144524.5,0,0,0,1559.6478 +13490,16456,29350,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.2158689,7.4000597,0,0,0,-1041.4193,-9,-9,-9,2021,10,1,42,0,1,1,0,3.6380813,3.6380813,0,0,0,0,0,0,0,0,0,0,0,0,0,36.12,59.15,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,285,157023.7,0,0,0,0,0,-64.17128 +13491,16457,29351,29352,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.3674965,8.4084682,0,31,4,-56.913239,0,3,1,2021,10,0,25,35,1,1,0,20.83856,20.83856,.05,.05,0,0,0,0,0,0,0,0,0,1.9142954,0,50,49,50.73,55.14,7,2,3,0,0,1,7,5,1,340.5,1301273,533421.5,321849,0,0,0,3341.0083 +13491,16457,29352,29351,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.1512804,7.9484715,0,31,-4,-8.1334238,0,3,1,2021,11,0,15,20,1,0,0,33.836552,33.836552,.05,.05,0,0,0,0,0,0,0,0,0,5.9708753,0,50.73,55.14,50,49,8.333333333333334,2,3,0,0,13,7,5,1,340.5,1301273,533421.5,321849,0,0,0,3341.0083 +13491,16458,29353,-9,29352,29351,1,0,21,0,0,0,1,1,1,0,3,0,0,0,0,0,-1003.9689,-9,1,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.79,58.34,-9,-9,8.333333333333334,2,3,1,0,0,7,1,1,2261,-63610.223,0,0,0,0,0,0 +13492,16459,29354,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.8803158,8.8344307,0,0,0,-1002.2241,0,-9,-9,2021,8,0,35,35,1,0,0,21.587742,21.587742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.09,54.54,-9,-9,6.666666666666667,4,2,0,0,13,7,5,1,1026,1450000.9,666056.19,397262.09,123696.98,0,0,3464.6089 +13493,16460,29355,29356,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.7859049,8.4147558,0,8,1,104.0753,0,3,3,2021,13,2,47,42,1,2,0,12.687203,12.687203,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.19,52.45,31.1,53.29,5,2,3,0,0,14,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29356,29355,-9,-9,1,0,39,1,2,0,2,2,-9,0,3,0,0,0,8,-1,9.0140982,0,-9,-9,2021,17,6,0,37,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,53.29,33.19,52.45,5,2,3,0,0,10,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29357,-9,29356,29355,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.70044,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29358,-9,29356,29355,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.6756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13494,16461,29359,-9,29360,29361,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.3708,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29360,29361,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.8106775,7.8873987,0,9,6,56.398857,-9,-9,-9,2021,19,6,37,0,1,6,0,8.5821152,8.5821152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.53,17.26,57.25,53.31,5,1,1,0,0,10,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29361,29360,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.9625874,8.091506,0,9,-6,-15.17811,0,-9,-9,2021,7,0,45,50,1,0,0,6.009038,6.009038,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.25,53.31,51.53,17.26,5,1,1,0,1,10,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29362,-9,29360,29361,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.7326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13495,16462,29363,29364,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.1597853,8.5417929,7.2601485,22,6,-14.740717,0,2,3,2021,8,0,15,32,1,0,0,40.315659,40.315659,.05,.05,0,0,0,0,0,0,1,1,0,5.2667971,7.4807515,55.76,44.76,54.2,57.49,8.333333333333334,1,1,0,0,11,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13495,16462,29364,29363,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.4919615,9.5074396,0,12,-6,-34.70586,0,-9,-9,2021,9,0,38,43,1,0,0,45.891827,45.891827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.76,44.76,8.333333333333334,1,1,0,0,9,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13495,16462,29365,-9,29363,29364,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-961.67474,-9,1,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,1,0,0,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13496,16463,29366,29367,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.3282061,9.3628654,0,9,4,-31.577044,0,-9,-9,2021,7,0,40,40,1,0,0,37.710609,37.710609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.22,47.48,35.79,48.98,8.333333333333334,1,1,0,0,11,5,5,1,1565.5,1636183.3,1283722.5,351783.19,58606.391,0,0,3980.7544 +13496,16463,29367,29366,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.0470352,6.989234,0,9,-4,-35.127743,0,3,3,2021,11,0,21,21,1,0,0,6.4674935,6.4674935,0,0,0,0,0,0,0,0,0,0,0,0,0,35.79,48.98,49.22,47.48,8.333333333333334,1,1,0,0,9,5,5,1,1565.5,1636183.3,1283722.5,351783.19,58606.391,0,0,3980.7544 +13497,16464,29368,29370,-9,-9,1,0,32,1,2,0,2,2,-9,0,5,8.0085936,8.2102365,0,8,-2,8.0552559,0,-9,-9,2021,6,0,38,38,1,0,0,9.7678776,9.7678776,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29369,-9,29368,29370,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-855.20532,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29370,29368,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.5659513,8.2177944,0,8,2,91.109283,0,3,2,2021,6,0,47,50,1,0,0,10.117375,10.117375,.05,.05,0,0,0,0,0,0,1,1,0,4.2239065,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,14,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29371,-9,29368,29370,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1576,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13498,16465,29372,29373,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.4989157,9.9234037,8.1505442,26,9,62.803226,0,2,2,2021,6,0,52,45,1,0,0,31.847525,31.847525,0,0,.05,0,0,0,0,0,0,0,0,3.0809085,7.9747591,51.41,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,295,3819982,1699388.8,963388.5,0,5467.3818,0,7165.3789 +13498,16465,29373,29372,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,28,0,-73.839836,0,1,1,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.41,56.15,8.333333333333334,1,1,0,0,0,10,5,1,295,3819982,1699388.8,963388.5,0,5467.3818,0,7165.3789 +13498,16466,29374,-9,29373,29372,1,1,23,0,0,0,1,1,-9,0,4,8.371377,8.1814709,0,0,0,-982.04572,0,1,2,2021,4,0,35,0,1,0,1,15.532931,15.532931,.05,.05,0,0,0,0,0,0,0,0,0,2.0754905,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,612,-68599.125,-5507.0933,0,0,0,0,1856.3055 +13498,16467,29375,-9,29373,29372,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1056.9984,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,952,0,0,0,0,0,0,157.53259 +13499,16468,29376,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.5246,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.53,29.4,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1371,31366.227,0,0,0,0,0,1253.9344 +13500,16469,29377,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,4.2223701,4.5163321,0,0,-1031.3354,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3297386,4.4731884,40.39,15.66,-9,-9,5,1,1,0,1,0,10,2,1,1183,160991.86,29875.184,168425.11,0,0,0,1070.0712 +13501,16470,29378,29379,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,9.6961632,9.8970642,0,11,2,-83.260002,0,3,3,2021,7,0,38,0,1,0,0,51.404461,51.404461,.05,.05,0,0,0,0,0,0,1,1,0,5.0126886,0,54.37,54.8,49.04,55.86,8.333333333333334,1,1,0,0,10,2,5,1,1338,2395059,2247809,392046.19,252306.14,0,0,8159.3955 +13501,16470,29379,29378,-9,-9,1,0,54,0,2,0,1,1,-9,0,3,8.7814951,8.8063316,0,11,-2,-1.7026379,0,2,2,2021,13,1,32,32,1,1,0,22.129988,22.129988,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,3.333333333333333,3,4,0,0,10,2,5,1,1338,2395059,2247809,392046.19,252306.14,0,0,8159.3955 +13502,16471,29380,29381,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.7309103,8.6741161,29,-11,157.16309,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3594198,8.2772055,37.43,53.73,42.36,56.12,10,1,1,0,0,0,2,5,1,2929.5,2288144.5,918717.25,598800.13,0,0,0,6452.2866 +13502,16471,29381,29380,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6567144,7.7667866,11,11,-.96003741,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.222435,7.5433168,42.36,56.12,37.43,53.73,8.333333333333334,1,1,0,0,0,2,5,1,2929.5,2288144.5,918717.25,598800.13,0,0,0,6452.2866 +13503,16472,29382,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.6705227,7.5648808,0,0,0,-994.51666,0,3,3,2021,34,12,33,31,1,12,0,7.5910916,7.5910916,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51,54,-9,-9,1.666666666666667,1,1,0,1,8,13,3,0,166,-106900.21,84653.031,0,0,0,0,1438.0134 +13503,16473,29383,-9,29382,-9,1,0,22,0,0,0,1,1,1,0,5,8.07306,8.1914196,0,0,0,-1012.9296,-9,3,-9,2021,11,3,37,0,1,3,1,11.517745,11.517745,0,0,0,0,0,0,0,0,0,0,0,0,0,57,59.12,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,196,140470.78,0,0,0,0,0,1382.2233 +13504,16474,29384,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.7556109,7.7333322,0,0,-1084.3524,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0877433,7.7839255,38.18,47.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,605,1037129.3,401200.13,237092.7,0,0,0,2824.1235 +13505,16475,29385,29387,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.9732628,8.6722298,0,10,-2,1.8480333,0,-9,-9,2021,12,0,36,36,1,0,0,25.204575,25.204575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,11,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29386,-9,29387,29385,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5332,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29387,29385,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,0,0,0,22,2,-30.075033,0,3,2,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,57.16,56.15,6.666666666666667,1,1,0,0,1,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29388,-9,29387,29385,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1080.0228,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13506,16476,29389,29390,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.8847537,8.3184996,0,28,-6,36.449421,0,2,3,2021,18,7,35,35,1,7,0,10.052698,10.052698,0,0,0,0,0,0,0,0,0,0,0,0,0,36.46,54.56,57.78,38.59,8.333333333333334,1,1,0,0,10,11,5,1,472,309957.19,7556.2344,0,0,0,0,4823.603 +13506,16476,29390,29389,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1008778,8.9238691,8.3720446,28,6,97.806099,0,3,3,2021,7,0,35,40,1,0,0,9.8194742,9.8194742,0,0,0,0,0,0,0,0,0,0,0,2.4225791,8.3435211,57.78,38.59,36.46,54.56,8.333333333333334,1,1,0,0,11,11,5,1,472,309957.19,7556.2344,0,0,0,0,4823.603 +13507,16477,29391,-9,29392,29393,1,1,22,0,0,0,2,2,-9,0,5,7.5735884,7.4403367,0,0,0,-1063.5018,0,2,2,2021,10,0,37,40,1,0,1,6.369,6.369,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,2,9,3,1,966,-35812.902,0,0,0,0,0,1136.9188 +13507,16478,29392,29393,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9522724,7.8813314,0,4,-2,-252.94527,0,2,2,2021,10,0,37,34,1,0,0,10.754416,10.754416,.05,.05,0,0,0,0,0,2,0,0,0,0,0,55.54,46.02,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,1050.5,-99847.398,14728.274,0,0,0,924.8302,2600.9121 +13507,16478,29393,29392,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4355507,8.3463297,0,4,2,-171.20326,0,-9,-9,2021,7,0,42,37,1,0,0,11.032998,11.032998,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,55.54,46.02,8.333333333333334,1,1,0,0,10,9,4,1,1050.5,-99847.398,14728.274,0,0,0,924.8302,2600.9121 +13508,16479,29394,29395,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1913118,8.2668819,0,16,3,58.741997,0,3,2,2021,11,1,35,35,1,1,0,12.486362,12.486362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.42,38.37,57.21,42.51,8.333333333333334,1,1,0,0,13,7,4,1,1548,244270.41,109239.11,342050.56,100755.41,5675.2646,-58.014114,4075.0278 +13508,16479,29395,29394,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8808641,8.7222052,0,16,-3,83.385971,0,2,2,2021,7,0,50,50,1,0,0,13.020747,13.020747,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.21,42.51,45.42,38.37,8.333333333333334,1,1,0,0,13,7,4,1,1548,244270.41,109239.11,342050.56,100755.41,5675.2646,-58.014114,4075.0278 +13509,16480,29396,-9,29398,29397,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-828.9447,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13509,16480,29397,29398,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,7.1298718,7.0574198,0,8,4,143.85951,0,-9,-9,2021,10,1,26,25,1,1,0,5.9847145,5.9847145,0,0,0,0,0,0,0,0,1,0,1,7.3206024,0,52.99,51.28,55.51,51.57,8.333333333333334,2,3,0,0,12,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13509,16480,29398,29397,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,7.8315682,7.9895649,0,19,-4,-42.500309,0,-9,-9,2021,12,0,21,22,1,0,0,10.757477,10.757477,0,0,0,0,0,0,0,0,1,0,1,0,0,55.51,51.57,52.99,51.28,1.666666666666667,2,3,0,0,12,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13510,16481,29399,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,7.7849751,7.8320937,0,0,-1076.5839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.936172,8.0124969,54.69,57.47,-9,-9,10,1,1,0,0,0,7,4,1,558,801348.63,205286.47,605320.06,0,0,0,2131.1758 +13511,16482,29400,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.599,0,3,3,2021,12,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,5,0,0,9,11,1,0,126,0,0,0,0,0,0,-800.21783 +13512,16483,29401,-9,-9,-9,1,1,21,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1084.5724,-9,-9,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,378,-44794.906,0,0,0,0,0,0 +13512,16484,29402,-9,-9,29405,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.3608,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29403,-9,-9,29405,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.44531,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29404,-9,-9,29405,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.86218,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29405,-9,-9,-9,1,1,38,0,3,0,2,2,0,0,2,0,0,0,0,0,-935.33655,-9,3,3,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.2,34.16,-9,-9,5,1,1,0,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13513,16485,29406,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.8131781,6.9432225,0,0,-976.56616,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.5235437,7.1307549,33.77,37.71,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,42,365387.28,116145.27,275960,0,0,0,1164.5072 +13514,16486,29407,29408,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.113348,7.1008115,39,0,-43.535168,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6269009,6.8769941,50,47,52,47,7,1,1,0,0,6,4,2,1,553,476599.47,206986.53,161379.23,0,0,0,1301.9894 +13514,16486,29408,29407,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,5,0,59.192818,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,50,47,7,1,1,0,0,0,4,2,1,553,476599.47,206986.53,161379.23,0,0,0,1301.9894 +13515,16487,29409,-9,-9,-9,1,0,103,0,0,0,3,3,-9,0,2,0,0,0,0,0,-845.35925,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,17.301695,0,0,1,1,0,0,0,53.14,26.97,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,978,1606.1051,0,173185.94,0,0,0,1068.4324 +13516,16488,29410,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4428539,9.0322542,0,0,0,-1078.4512,-9,2,2,2021,11,0,35,0,1,0,0,14.985038,14.985038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.25,48.45,-9,-9,3.333333333333333,3,4,0,0,7,8,5,1,733,32853.684,-186455.91,0,0,0,0,1466.3911 +13517,16489,29411,-9,-9,-9,1,1,49,0,2,0,2,2,-9,1,1,0,5.8465514,6.0406523,0,0,-980.09039,0,1,3,2021,15,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,5.4793587,0,35.62,25.98,-9,-9,1.666666666666667,1,1,0,1,7,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13517,16489,29412,-9,-9,29411,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.26227,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13517,16489,29413,-9,-9,29411,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.95953,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13518,16490,29414,29415,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.08358,8.0350428,0,36,2,58.630398,0,3,-9,2021,23,11,40,38,1,11,0,14.657603,14.657603,.05,.05,0,0,0,0,0,0,1,0,1,1.3983845,0,33.66,40.31,32.3,54.21,5,1,1,0,0,13,2,4,1,984.5,248021.88,40770.445,192240.53,0,0,0,2330.6218 +13518,16490,29415,29414,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.5101724,7.7091951,0,36,-2,50.146542,0,3,2,2021,15,3,42,42,1,3,0,7.2258377,7.2258377,.05,.05,0,0,0,0,0,0,1,0,1,0,0,32.3,54.21,33.66,40.31,5,1,1,0,0,15,2,4,1,984.5,248021.88,40770.445,192240.53,0,0,0,2330.6218 +13518,16491,29416,-9,29415,29414,1,0,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1013.0519,0,2,2,2021,23,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,19.57,46.86,-9,-9,1.666666666666667,1,1,1,1,8,2,1,1,619,-10902.76,0,0,0,0,0,776.16724 +13519,16492,29417,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.7845955,8.5273781,0,0,0,-1059.9122,0,3,3,2021,8,0,38,38,1,0,0,18.629583,18.629583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,658,410815.78,278830.44,146169.98,30915.465,0,0,1666.5498 +13520,16493,29418,29419,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.7194834,8.6778774,4.9566183,10,-5,-59.17849,0,2,1,2021,16,5,45,50,1,5,0,18.163738,18.163738,0,0,0,0,0,0,0,0,1,1,0,4.9485297,5.3437853,46.5,58.26,47.55,44.33,5,1,1,0,1,12,10,5,0,485,447183.5,275762.19,429080.03,188494.77,12253.529,24541.129,3416.644 +13520,16493,29419,29418,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.7831235,6.4543953,10,5,-117.57768,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3031735,6.9211946,47.55,44.33,46.5,58.26,8.333333333333334,1,1,0,0,12,10,5,0,485,447183.5,275762.19,429080.03,188494.77,12253.529,24541.129,3416.644 +13521,16494,29420,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.8254766,5.9656696,0,0,-882.28552,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2397065,5.8359179,46.76,49.87,-9,-9,10,1,1,0,0,0,4,2,0,768,219946.94,34479.633,0,0,0,0,856.13257 +13522,16495,29421,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.1887913,7.8404779,0,0,0,-1087.4662,0,-9,-9,2021,10,0,34,34,1,0,0,11.460067,11.460067,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.06,35.5,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,606.5,75524.539,148094.36,0,0,0,1093.0084,1553.6926 +13522,16495,29422,-9,29421,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.4894,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,606.5,75524.539,148094.36,0,0,0,1093.0084,1553.6926 +13522,16496,29423,-9,29421,-9,1,1,20,0,1,0,2,2,-9,0,2,0,0,0,0,0,-967.2818,0,2,-9,2021,7,0,0,37,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.02,50.35,-9,-9,8.333333333333334,1,1,1,0,2,5,1,0,1745,0,0,0,0,0,0,1089.4702 +13523,16497,29424,-9,29425,29426,1,0,23,0,0,0,1,1,-9,0,4,6.5020156,7.1438689,5.1668806,0,0,-870.25153,-9,1,2,2021,12,0,15,0,1,0,1,6.3106031,6.3106031,0,0,0,0,0,0,0,0,0,0,0,5.6939492,0,44.05,55.39,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,392,107484.45,0,0,0,0,0,281.65265 +13523,16498,29425,29426,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.2932367,9.3671551,0,6,-6,35.854919,0,2,2,2021,8,0,47,62,1,0,0,32.318924,32.318924,0,0,0,0,0,0,0,2,0,0,0,4.544806,0,44.02,60.7,52.6,50.15,8.333333333333334,1,1,0,0,13,6,5,1,768,351903.06,5725.7266,212956.48,26109.301,12682.072,4499.7129,5992.9697 +13523,16498,29426,29425,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,7.7559519,8.1342001,6,6,67.12072,0,-9,-9,2021,10,1,0,20,4,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.1908355,7.9993458,52.6,50.15,44.02,60.7,8.333333333333334,1,1,0,0,12,6,5,1,768,351903.06,5725.7266,212956.48,26109.301,12682.072,4499.7129,5992.9697 +13524,16499,29427,29428,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5221758,8.6199627,0,1,0,-28.306482,-9,-9,-9,2021,7,0,42,0,1,0,0,16.406569,16.406569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,2,5,0,528.5,198548.45,86047.445,0,0,0,-1048.8239,2903.9561 +13524,16499,29428,29427,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.5518436,7.8752494,0,1,0,-12.526381,-9,-9,-9,2021,6,0,32,0,1,0,0,9.2459221,9.2459221,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.04,55.86,8.333333333333334,1,1,0,0,2,2,5,0,528.5,198548.45,86047.445,0,0,0,-1048.8239,2903.9561 +13525,16500,29429,29430,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1665144,8.6257067,8.2059879,26,6,82.935265,0,2,2,2021,10,0,9,43,1,0,0,45.316074,45.316074,.05,.05,0,0,0,0,0,0,0,0,0,6.4142437,7.754858,48.87,58.55,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,1467,488562.34,215314.41,355092.81,76390.969,0,0,4384.7891 +13525,16500,29430,29429,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.0476103,8.1099586,0,10,-6,-95.20652,0,-9,-9,2021,9,0,35,1,1,0,0,12.65471,12.65471,.05,.05,0,0,0,0,0,27,0,0,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,12,6,5,1,1467,488562.34,215314.41,355092.81,76390.969,0,0,4384.7891 +13525,16501,29431,-9,29430,29429,1,0,21,0,0,0,1,1,1,0,3,7.277308,7.1010671,0,0,0,-862.02051,-9,2,2,2021,21,7,40,0,1,7,1,3.919204,3.919204,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.99,60.99,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,412,94331.008,35187.59,0,0,0,0,-97.135338 +13526,16502,29432,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1001.5757,1,1,1,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.9058123,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,1123,617146.13,31183.525,640551.69,0,0,4724.4727,3815.8975 +13527,16503,29433,-9,29435,29434,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.80792,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13527,16503,29434,29435,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,7.1365519,7.0766029,0,1,0,-44.140995,-9,-9,-9,2021,15,3,45,0,1,3,0,3.6981134,3.6981134,.05,.05,0,0,0,0,0,0,0,0,0,5.5921359,0,43.32,44.74,36.98,56.27,8.333333333333334,1,1,0,0,0,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13527,16503,29435,29434,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,8.062458,7.9181895,0,1,0,118.5444,0,-9,-9,2021,15,3,35,-9,1,3,0,8.5005913,8.5005913,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,56.27,43.32,44.74,5,1,1,0,0,8,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13528,16504,29436,-9,-9,-9,1,0,22,1,0,0,1,1,-9,0,3,8.1459322,7.9973826,0,0,0,-1062.4893,0,-9,-9,2021,11,1,41,39,1,1,0,8.533123,8.533123,0,0,0,0,0,0,0,0,0,0,0,2.5929742,0,49.85,36.59,-9,-9,8.333333333333334,4,2,0,0,3,8,4,0,760,-4859.3125,0,0,0,0,0,1514.5151 +13528,16504,29437,-9,29436,-9,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-868.49146,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,8,4,0,760,-4859.3125,0,0,0,0,0,1514.5151 +13529,16505,29438,29440,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.1403313,8.2452745,0,12,-1,38.803017,0,-9,-9,2021,12,2,45,45,1,2,0,9.3937235,9.3937235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.49,49.64,51.67,50.46,8.333333333333334,1,1,0,0,13,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29439,-9,29440,29438,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1146.6921,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29440,29438,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,6.470757,6.4162216,0,30,1,69.790672,0,2,2,2021,12,0,10,84,1,0,0,7.6743236,7.6743236,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,50.46,44.49,49.64,8.333333333333334,1,1,0,0,3,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29441,-9,29440,29438,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.75232,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29442,-9,29440,29438,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-982.92633,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,0,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13530,16506,29443,29444,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,11,-4,49.609272,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1952175,0,43.79,32.94,48.79,39.82,6.666666666666667,2,3,0,0,0,9,2,1,484,642129.5,242224.41,445230,0,0,0,1447.27 +13530,16506,29444,29443,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8547902,6.51369,52,4,-14.275516,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6043748,7.1921964,48.79,39.82,43.79,32.94,6.666666666666667,2,3,0,0,0,9,2,1,484,642129.5,242224.41,445230,0,0,0,1447.27 +13531,16507,29445,29446,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.5570855,7.3347783,0,12,-2,44.50803,0,2,2,2021,26,11,42,30,1,11,0,4.65417,4.65417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,48.28,48.45,57.49,8.333333333333334,1,1,0,0,5,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13531,16507,29446,29445,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,8.2305508,8.0439367,0,12,2,-26.712944,-9,2,2,2021,8,1,48,0,1,1,0,6.5198841,6.5198841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,41.3,48.28,5,1,1,0,0,9,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13531,16507,29447,-9,29445,29446,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8551,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13532,16508,29448,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4988537,8.7281733,3.6946254,0,0,-939.98236,0,2,3,2021,7,0,35,39,1,0,0,14.804473,14.804473,0,0,0,0,0,0,0,0,0,0,0,4.5127935,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,547,56896.418,0,0,0,20283.043,10167.146,1437.7295 +13533,16509,29449,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,7.21135,7.0165296,0,0,-909.29462,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,43.198318,0,0,1,1,0,0,7.1909518,64.58,4.48,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,591,222368.61,82934.594,117215.88,0,0,0,998.51337 +13534,16510,29450,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.2379642,5.0165491,0,0,-889.50854,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6206214,5.1769605,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,230,320299.34,137031.92,0,0,0,0,1099.6533 +13535,16511,29451,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.6745901,7.3913999,0,0,0,-1139.1754,0,2,2,2021,11,1,28,33,1,1,0,8.7064896,8.7064896,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,1,11,9,2,1,784,346648.5,142294.86,423600.63,108477.13,0,0,1390.4424 +13535,16511,29452,-9,29451,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-956.23743,-9,1,-9,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32,33,-9,-9,3,1,1,-9,0,0,9,2,1,784,346648.5,142294.86,423600.63,108477.13,0,0,1390.4424 +13535,16512,29453,-9,29451,-9,1,0,19,0,1,0,2,2,1,0,4,7.2746482,6.7623196,0,0,0,-1004.355,-9,1,-9,2021,26,11,24,0,1,11,1,7.4728341,7.4728341,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,436,12014.847,77412.242,0,0,1936.2733,0,707.26996 +13536,16513,29454,29455,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,8.5834942,8.0536776,0,8,-3,61.612793,0,3,-9,2021,10,0,38,48,1,0,0,12.347943,12.347943,.05,.05,0,0,0,0,0,0,0,0,0,3.6777263,0,62.57,40.11,62.18,20.12,8.333333333333334,1,1,0,0,9,7,4,0,446.5,892366.63,448406.81,329026.69,0,101.63159,0,2369.3225 +13536,16513,29455,29454,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.2845345,7.2765121,0,8,3,-63.273514,0,-9,-9,2021,10,0,27,27,1,0,0,8.3568964,8.3568964,.05,.05,0,0,0,0,0,0,0,0,0,3.3008056,0,62.18,20.12,62.57,40.11,8.333333333333334,1,1,0,0,9,7,4,0,446.5,892366.63,448406.81,329026.69,0,101.63159,0,2369.3225 +13537,16514,29456,-9,29458,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.61316,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.63955814,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13537,16514,29457,-9,29458,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.82343,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13537,16514,29458,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,0,0,0,0,0,-863.13184,0,2,1,2021,12,1,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.92,47.22,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13538,16515,29459,29460,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5488839,7.5303059,59,1,78.237274,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0500934,7.4500599,59.91,42.65,54.96,53.17,6.666666666666667,1,1,0,0,0,6,3,1,4642.5,429921.94,183188.78,157347.34,0,0,0,3014.4543 +13538,16515,29460,29459,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.2722468,6.3031521,59,-1,-125.70509,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8378172,6.2308087,54.96,53.17,59.91,42.65,8.333333333333334,1,1,0,0,8,6,3,1,4642.5,429921.94,183188.78,157347.34,0,0,0,3014.4543 +13539,16516,29461,29462,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,5,-4,13.437802,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.2,36.82,60.29,52.11,6.666666666666667,1,1,0,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29462,29461,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,7.5193653,7.6227541,0,5,4,12.996341,0,-9,-9,2021,9,1,25,50,1,1,0,9.4924965,9.4924965,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,40.2,36.82,8.333333333333334,1,1,0,0,7,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29463,-9,29461,29462,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.8186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29464,-9,29461,29462,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.0133,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13540,16517,29465,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.5055656,8.6260719,0,4,-6,.45432928,0,3,2,2021,24,12,38,38,1,12,0,20.938404,20.938404,.05,.05,0,0,0,0,0,0,0,0,0,3.9681041,0,32.38,61.1,46.54,48.69,10,1,1,0,0,11,5,5,1,1756,1522744.3,1333365.4,49627.117,0,0,0,1893.9819 +13540,16518,29466,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,9.0604563,9.1492891,0,4,6,152.42795,0,3,2,2021,9,0,55,43,1,0,0,15.981856,15.981856,.05,.05,0,0,0,0,0,0,0,0,0,2.5746117,0,46.54,48.69,32.38,61.1,6.666666666666667,1,1,0,0,11,5,5,1,2632,342145.59,234353.03,157638.22,0,0,1789.2551,2391.1226 +13541,16519,29467,29468,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.3032217,8.1390638,0,10,-2,5.6540027,0,-9,-9,2021,10,0,46,39,1,0,0,9.8930235,9.8930235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.27,48.86,40.58,60.95,6.666666666666667,1,1,0,0,9,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29468,29467,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.4738674,8.3597336,0,10,2,-22.658236,0,1,2,2021,11,1,38,38,1,1,0,13.716633,13.716633,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,50.27,48.86,5,1,1,0,0,11,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29469,-9,29468,29467,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.07037,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29470,-9,29468,29467,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.3503,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13542,16520,29471,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.6222148,7.5794201,0,0,0,-923.43463,0,3,2,2021,10,0,30,31,1,0,0,7.8207712,7.8207712,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,263,195202.67,262599.81,0,0,0,0,1468.8173 +13542,16521,29472,-9,29471,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-925.92761,-9,3,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,2319,0,0,0,0,0,0,0 +13543,16522,29473,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1030.7007,-9,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,472.5,-49303.543,8389.4766,0,0,0,0,2097.6519 +13543,16522,29474,-9,29473,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.73468,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,472.5,-49303.543,8389.4766,0,0,0,0,2097.6519 +13544,16523,29475,29476,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,4,-3,44.724182,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.74,33.83,38.88,31.2,5,1,1,0,0,4,6,3,1,1093,-98133.813,24403.711,0,0,11700.469,4798.3491,1738.2056 +13544,16523,29476,29475,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,0,7.7076998,7.5514598,4,3,61.094646,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,1,0,126.45252,0,0,1,1,0,0,7.6109705,38.88,31.2,56.74,33.83,5,1,1,0,0,0,6,3,1,1093,-98133.813,24403.711,0,0,11700.469,4798.3491,1738.2056 +13545,16524,29477,29478,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7070694,6.8800302,48,-1,-60.465778,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6342607,6.6293554,64.64,35.4,46.85,32.5,8.333333333333334,1,1,0,0,6,1,2,1,987.5,550587.13,140349.34,335074.22,0,1847.6776,0,1413.6816 +13545,16524,29478,29477,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,48,1,59.711864,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4952936,0,46.85,32.5,64.64,35.4,5,1,1,0,0,3,1,2,1,987.5,550587.13,140349.34,335074.22,0,1847.6776,0,1413.6816 +13546,16525,29479,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.7557163,8.4263258,0,0,-1098.6556,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0888662,8.6354494,46.27,57.3,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,932,1168633.8,928950.19,-15578.562,251.9742,0,0,4032.0938 +13547,16526,29480,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,2,8.1980724,8.2329006,0,0,0,-958.45374,0,-9,3,2021,13,3,26,24,1,3,0,18.050777,18.050777,.05,.05,0,0,0,0,0,0,1,1,0,2.3820879,0,44.48,39.77,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,244,814107.75,851425.44,105182.24,108157.38,0,0,2397.3867 +13548,16527,29481,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.5477,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,27.419226,1.1446016,243.25493,0,1,1,0,0,0,60.48,24.97,-9,-9,8.333333333333334,1,1,0,1,0,2,1,0,629,248422.05,0,143019.61,0,0,0,1222.7583 +13549,16528,29482,29484,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,0,0,24,-2,-32.517727,0,2,2,2021,6,1,0,8,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.8083112,0,60.21,34.28,48,51,6.666666666666667,1,1,0,0,8,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13549,16528,29483,-9,29482,29484,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1183,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13549,16528,29484,29482,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.416482,8.2522573,0,25,2,79.385826,0,2,2,2021,11,0,45,44,1,2,0,8.3606215,8.3606215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,51,60.21,34.28,7,1,1,0,0,1,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13550,16529,29485,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.2856708,6.6534042,0,0,-1024.1077,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3120389,6.5288191,56.73,12.41,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,169,218465.59,51411.957,212593.17,0,0,0,779.45483 +13551,16530,29486,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.60956,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0325966,0,64.57000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,684,70961.211,0,257958.97,0,0,0,1475.2656 +13552,16531,29487,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-971.42279,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,325,163190,0,216249.28,0,0,985.15247,1086.1942 +13553,16532,29488,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,6.8690968,6.8423824,0,0,-1021.3191,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9547844,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,240,268299.5,58088.559,45717.242,0,0,0,1761.3378 +13554,16533,29489,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,2,0,0,0,0,0,-1022.1692,-9,-9,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,190,-76025.18,0,0,0,0,0,607.32135 +13555,16534,29490,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.210741,8.4669838,0,0,0,-965.28766,0,3,3,2021,9,1,37,37,1,1,0,15.319078,15.319078,.05,.05,.05,0,0,0,0,0,1,1,0,4.3295226,0,45.92,53.14,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,986,176800.89,137753,83472.383,0,0,0,1529.4847 +13556,16535,29491,-9,29493,29492,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1185.3699,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13556,16535,29492,29493,-9,-9,1,1,40,1,1,0,2,2,-9,0,1,8.2661028,8.3425074,0,12,2,-125.24313,0,3,3,2021,26,9,50,50,1,9,0,11.819798,11.819798,.05,.05,0,0,0,0,0,0,1,1,0,3.0528014,0,16.12,49.52,38.28,57.07,3.333333333333333,1,1,0,0,9,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13556,16535,29493,29492,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,8.1122942,7.9439931,0,12,-2,-60.36636,0,-9,-9,2021,14,3,38,38,1,3,0,10.330207,10.330207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.28,57.07,16.12,49.52,6.666666666666667,1,1,0,0,11,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13557,16536,29494,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.2575054,8.248745,1.7920554,0,0,-964.88837,0,3,3,2021,9,0,39,39,1,0,0,10.980584,10.980584,.05,.05,0,0,0,0,0,0,0,0,0,0,2.6158772,41.6,53.07,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,606,-6403.6646,-49341.09,47196.793,3244.1494,0,0,1538.027 +13557,16537,29495,-9,-9,29494,1,1,30,0,0,0,2,2,-9,0,3,7.7653408,7.9281006,0,0,0,-1078.5819,0,-9,3,2021,20,8,39,39,1,8,1,7.3921642,7.3921642,0,0,0,0,0,0,0,0,0,0,0,0,0,41.28,57.99,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,159,12012.317,0,119130.51,89309.922,0,0,1307.4083 +13558,16538,29496,29497,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,5.9769692,5.8465657,38,2,148.02722,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4016638,5.4881825,25.35,32.03,43.12,58.55,3.333333333333333,1,1,0,0,1,9,2,1,6203.5,750757.44,216243.72,269789.56,0,0,0,1066.2955 +13558,16538,29497,29496,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,38,-2,42.535583,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.12,58.55,25.35,32.03,6.666666666666667,1,1,0,0,8,9,2,1,6203.5,750757.44,216243.72,269789.56,0,0,0,1066.2955 +13559,16539,29498,29500,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.7006083,9.6071615,0,28,3,93.430458,0,2,2,2021,17,5,50,55,1,5,0,45.513203,45.513203,.05,.05,.05,0,0,0,0,0,0,0,0,.47266808,0,53.86,44.13,53.54,41.65,6.666666666666667,1,1,0,0,8,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16539,29499,-9,29500,29498,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-915.93115,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16539,29500,29498,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.9237995,8.9627008,0,28,-3,18.734833,0,2,1,2021,9,0,28,28,1,0,0,26.226938,26.226938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,41.65,53.86,44.13,6.666666666666667,1,1,0,0,9,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16540,29501,-9,29500,29498,1,1,21,0,1,1,2,0,0,0,2,0,0,0,0,0,-1081.3752,-9,1,1,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,44.35,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,473,0,0,0,0,0,0,-77.566856 +13559,16541,29502,-9,29500,29498,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-980.61316,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,268,-55278.441,0,0,0,0,188.99576,0 +13560,16542,29503,29507,-9,-9,1,1,26,1,3,0,2,2,-9,0,4,0,0,0,2,-1,-101.78941,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,48.93,47.85,7,1,1,0,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29504,-9,29507,29503,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.2185,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29505,-9,29507,29503,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.0803,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29506,-9,29507,29503,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.13251,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29507,29503,-9,-9,1,0,27,1,3,0,2,2,0,0,3,0,5.7407184,6.1921659,2,1,102.70327,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4139013,0,48.93,47.85,49,58,8.333333333333334,4,2,0,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13561,16543,29508,29509,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.3464212,8.5553274,0,1,1,-42.119289,-9,-9,-9,2021,27,12,37,0,1,12,0,13.037674,13.037674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.09,41.37,34.57,50.44,1.666666666666667,1,1,0,1,8,4,5,1,1729,617871.06,220370.69,208668.03,0,7741.6821,0,4214.8511 +13561,16543,29509,29508,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0389452,7.9541516,0,21,-1,146.40204,-9,2,3,2021,21,9,40,0,1,9,0,10.010931,10.010931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.57,50.44,19.09,41.37,1.666666666666667,1,1,0,1,15,4,5,1,1729,617871.06,220370.69,208668.03,0,7741.6821,0,4214.8511 +13562,16544,29510,29511,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.4580088,8.3645611,7,0,4.5716839,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5126982,8.0128975,57.06,57.76,30.53,48.59,8.333333333333334,1,1,0,0,10,11,4,1,782.5,2074002.8,1032624.3,295604.81,0,0,0,3112.5461 +13562,16544,29511,29510,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.4844995,6.3540645,7,0,-148.61514,0,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4803014,6.3893266,30.53,48.59,57.06,57.76,8.333333333333334,1,1,0,0,13,11,4,1,782.5,2074002.8,1032624.3,295604.81,0,0,0,3112.5461 +13563,16545,29512,29513,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.5612292,7.978981,7,-2,102.07507,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1368241,7.7648864,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,0,9,3,1,872.5,1055645,122142.08,654051.31,0,0,0,2699.5 +13563,16545,29513,29512,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,7,2,71.729233,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7258425,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,0,9,3,1,872.5,1055645,122142.08,654051.31,0,0,0,2699.5 +13564,16546,29514,29515,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9958787,7.7211967,0,32,-5,28.723181,0,2,2,2021,3,0,36,36,1,0,0,7.0388303,7.0388303,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,10,8,5,1,1375,1727373,1401297.8,279829.13,94618.875,16816.676,0,3833.293 +13564,16546,29515,29514,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0578222,8.7641201,0,32,5,-56.818134,0,3,3,2021,10,0,55,35,1,0,0,15.630754,15.630754,.05,.05,0,0,0,0,0,0,0,0,0,.49620914,0,57.33,53.46,54.2,57.49,1.666666666666667,1,1,0,0,11,8,5,1,1375,1727373,1401297.8,279829.13,94618.875,16816.676,0,3833.293 +13564,16547,29516,-9,29514,29515,1,1,25,0,0,0,2,2,-9,0,4,8.8448925,8.4970989,0,0,0,-1196.0891,0,2,2,2021,11,3,55,55,1,3,1,9.6075449,9.6075449,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,300,-55426.684,0,0,0,0,0,1711.8984 +13564,16548,29517,-9,29514,29515,1,0,22,0,0,0,2,2,-9,0,2,8.0571365,8.164794,0,0,0,-984.93927,0,2,2,2021,19,5,45,45,1,5,1,7.0952816,7.0952816,0,0,0,0,0,0,0,0,0,0,0,.5838719,0,23.46,62.28,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,920,-201324.22,0,0,0,12126.251,-45.521919,1352.6559 +13564,16549,29518,-9,29514,29515,1,0,19,0,0,0,2,2,-9,0,3,7.5663095,7.4154892,0,0,0,-932.43506,0,2,2,2021,27,11,33,33,1,11,1,6.5049844,6.5049844,.05,.05,0,0,0,0,0,0,0,0,0,1.8088813,0,18.05,59.4,-9,-9,1.666666666666667,1,1,0,0,3,8,3,1,2074,57775.594,20195.291,0,0,0,0,1212.5748 +13565,16550,29519,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.7193956,7.9265852,0,0,0,-1008.2594,0,-9,-9,2021,8,0,35,32,1,0,0,8.3319883,8.3319883,0,0,0,0,0,0,0,0,0,0,0,1.2583551,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,10,3,0,823,-7143.3628,0,0,0,0,1209.4286,1609.4441 +13566,16551,29520,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,7.2816639,7.6070151,0,0,-1075.0878,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.436594,46.95,35.43,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1304,-98457.734,0,151958.11,0,0,0,515.29358 +13567,16552,29521,29523,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,7.0864053,6.9808016,0,6,-2,63.894478,0,3,3,2021,6,0,60,70,1,0,0,1.7722057,1.7722057,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.68,53.7,8.333333333333334,1,1,0,0,7,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16552,29522,-9,29521,29523,1,1,16,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1072.0164,-9,2,3,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.72,58.13,-9,-9,10,1,1,0,0,1,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16552,29523,29521,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.4459496,8.3979998,0,6,2,-138.73521,0,3,3,2021,11,0,45,40,1,0,0,9.0717192,9.0717192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,53.7,52.21,59.91,8.333333333333334,1,1,0,0,7,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16553,29524,-9,29521,29523,1,0,22,0,0,0,1,1,1,0,3,7.9841814,7.9257965,0,0,0,-1073.0034,-9,2,3,2021,9,0,38,0,1,0,1,7.9995346,7.9995346,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,232,-146903.73,28146.52,0,0,0,0,1118.1627 +13567,16554,29525,-9,29521,29523,1,1,20,0,0,0,2,2,1,0,3,6.6021914,6.6930127,0,0,0,-1016.3256,-9,2,3,2021,10,0,16,0,1,0,1,6.9653878,6.9653878,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,294,-84.436409,0,0,0,0,0,284.25583 +13568,16555,29526,-9,29529,29528,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2573,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29527,-9,29529,29528,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.77289,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29528,29529,-9,-9,1,1,52,0,2,0,2,2,-9,0,5,8.3342896,8.4427767,0,22,10,35.383858,0,3,3,2021,6,0,50,46,1,0,0,9.7910099,9.7910099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.55,55.06,8.333333333333334,1,1,0,0,6,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29529,29528,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5699077,7.3744969,0,22,-10,-67.964912,0,2,2,2021,9,0,28,28,1,0,0,8.5292816,8.5292816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,55.06,57.06,57.76,6.666666666666667,1,1,0,0,8,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13569,16556,29530,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,7.836441,8.4704361,7.9378381,0,0,-941.89972,0,-9,-9,2021,4,0,15,20,1,0,0,16.34828,16.34828,0,0,.05,0,0,0,0,0,0,0,0,6.1520119,7.6025624,57.06,57.76,-9,-9,10,1,1,0,0,10,4,5,1,351,81647.078,123412.77,145192.72,0,0,0,2783.6995 +13570,16557,29531,-9,-9,-9,1,0,21,0,1,0,2,2,0,0,5,0,0,0,0,0,-913.59583,-9,1,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,929,-1714.5023,0,0,0,0,0,-102.79343 +13571,16558,29532,29533,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,12,3,-51.386806,0,2,2,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9650657,0,44.06,48.65,57.33,34.69,6.666666666666667,1,1,0,0,0,12,5,1,515,1221821.4,980127.19,193246.97,0,0,0,3667.9097 +13571,16558,29533,29532,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,9.1385221,9.421236,0,12,-3,30.200893,-9,2,-9,2021,7,0,83,0,1,0,0,14.543852,14.543852,0,0,0,0,0,0,0,0,0,0,0,4.2000604,0,57.33,34.69,44.06,48.65,8.333333333333334,1,1,0,0,13,12,5,1,515,1221821.4,980127.19,193246.97,0,0,0,3667.9097 +13572,16559,29534,-9,29535,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.08478,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13572,16559,29535,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.8970122,6.911593,0,0,0,-1057.3542,0,1,1,2021,7,0,25,20,1,0,0,5.5158277,5.5158277,0,0,0,0,0,0,0,101,1,1,0,0,0,52.4,55.58,-9,-9,8.333333333333334,1,1,0,1,4,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13572,16559,29536,-9,29535,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1084.2086,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13573,16560,29537,29538,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.3664026,8.4778891,0,40,-3,111.23016,0,3,3,2021,26,10,53,43,1,10,0,11.098694,11.098694,0,0,.05,0,0,0,0,0,0,0,0,0,0,24.99,44.43,57.06,57.76,3.333333333333333,4,2,0,0,11,9,5,1,1218.5,1198220.8,155611.78,492942.19,0,0,0,8073.4067 +13573,16560,29538,29537,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.4968138,10.173459,7.3248267,40,3,83.050995,0,3,3,2021,8,0,60,50,1,0,0,35.315727,35.315727,.05,.05,.05,0,0,0,0,0,0,0,0,3.7668023,7.8727503,57.06,57.76,24.99,44.43,8.333333333333334,1,1,0,0,11,9,5,1,1218.5,1198220.8,155611.78,492942.19,0,0,0,8073.4067 +13574,16561,29539,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.3213692,7.4729905,0,0,-1007.9169,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0317597,7.5510888,54.59,46.29,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,330,522528.66,45899.832,383402.06,0,0,0,1421.8011 +13575,16562,29540,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.070343,9.2175303,0,0,0,-1026.9747,0,1,2,2021,7,0,40,45,1,0,0,21.529091,21.529091,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,241,-99999.555,112056.87,196517.36,103393.27,0,0,4214.7651 +13576,16563,29541,-9,29544,29545,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1041.1633,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29542,-9,29544,29545,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-835.71808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29543,-9,29544,29545,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-940.44061,-9,2,2,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29544,29545,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.8788595,7.6370082,0,21,1,-64.121643,0,3,3,2021,10,0,32,32,1,0,0,9.3507175,9.3507175,0,0,0,0,0,0,0,0,1,1,0,4.8393044,0,45.91,59.89,55.6,47.8,6.666666666666667,1,1,0,0,11,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29545,29544,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,8.1332464,7.9677176,0,21,-1,-62.129108,0,3,3,2021,7,1,40,40,1,1,0,9.6695242,9.6695242,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.6,47.8,45.91,59.89,8.333333333333334,1,1,0,0,6,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13577,16564,29546,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-938.69275,0,3,3,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50027227,0,48.7,19.5,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,1103,-229984.02,0,0,0,0,0,2041.0994 +13578,16565,29547,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.3910007,8.5153799,0,0,0,-980.4292,0,3,2,2021,10,0,47,44,1,0,0,12.594264,12.594264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,588,23058.215,22200.846,165048.58,50509.492,0,0,2197.6138 +13579,16566,29548,29550,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.8691702,8.5761967,0,14,-7,81.30114,0,2,1,2021,11,2,75,40,1,2,0,10.631632,10.631632,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,51.73,58.82,8.333333333333334,3,4,0,0,8,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13579,16566,29549,-9,29550,29548,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.9346,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13579,16566,29550,29548,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.2675638,8.3998079,0,8,7,-23.066839,0,-9,-9,2021,9,1,19,15,1,1,0,28.119209,28.119209,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.28,60.18,8.333333333333334,1,1,0,0,11,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13580,16567,29551,29552,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,48,5,32.33197,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,26.374126,0,0,1,1,0,5.4784393,0,63.66,46.31,45.32,61.53,10,1,1,0,0,6,7,2,1,220,4342434.5,2276174.5,1128894.1,0,0,0,3139.9243 +13580,16567,29552,29551,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.2859979,4.9822397,48,-5,-40.30117,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4326258,5.507575,45.32,61.53,63.66,46.31,8.333333333333334,1,1,0,0,0,7,2,1,220,4342434.5,2276174.5,1128894.1,0,0,0,3139.9243 +13581,16568,29553,29554,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,11,23,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.98,44.11,50.85,52.08,5,1,1,0,0,0,9,1,0,1032,619091.5,0,512139.19,0,0,0,1724.5801 +13581,16568,29554,29553,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,23,-23,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.85,52.08,38.98,44.11,1.666666666666667,1,1,0,0,7,9,1,0,1032,619091.5,0,512139.19,0,0,0,1724.5801 +13582,16569,29555,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,3.8837829,3.9987252,0,0,-934.62836,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.8127951,4.0050282,56.29,44.49,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,517,55312.285,0,88680.789,0,0,0,1182.1549 +13583,16570,29556,29558,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,0,0,0,2,-11,-28.411236,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.5,45.52,7,2,3,0,0,0,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13583,16570,29557,-9,29556,29558,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.8008,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13583,16570,29558,29556,-9,-9,1,1,44,1,1,0,3,3,-9,0,3,8.0970707,8.3348732,0,2,11,55.455139,0,3,2,2021,11,0,55,41,1,2,0,7.9897928,7.9897928,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,45.52,49,56,3.333333333333333,2,3,0,1,9,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13584,16571,29559,29560,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0434079,6.3933244,57,-1,18.448725,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.2264748,0,0,1,1,0,4.2657018,5.9954681,44.33,35.37,47.93,49.39,8.333333333333334,1,1,0,0,1,6,3,1,426,959010.88,574935.5,250314.91,0,11233.217,1477.3756,3432.9636 +13584,16571,29560,29559,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9138775,8.1614923,57,1,-52.676533,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0809774,7.5387926,47.93,49.39,44.33,35.37,8.333333333333334,1,1,0,0,0,6,3,1,426,959010.88,574935.5,250314.91,0,11233.217,1477.3756,3432.9636 +13585,16572,29561,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,3.4608099,3.6009121,0,0,-867.97314,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.864918,3.619904,43.66,21.99,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,1541,105455.16,0,122177.5,0,0,0,1125.8987 +13586,16573,29562,-9,29563,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.58148,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,512,101219.39,-16601.186,163826.78,97538.398,0,0,1492.8999 +13586,16573,29563,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.3617907,7.2674928,0,0,0,-980.46942,0,3,2,2021,11,0,20,0,1,0,0,6.0331974,6.0331974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,9,13,2,1,512,101219.39,-16601.186,163826.78,97538.398,0,0,1492.8999 +13586,16574,29564,-9,29563,-9,1,1,21,0,1,0,2,2,-9,0,5,7.6287198,7.6960478,0,0,0,-983.49438,0,2,-9,2021,8,0,37,0,1,0,1,6.2076359,6.2076359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,155,21910.791,128003.88,0,0,0,0,863.89496 +13587,16575,29565,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.8276482,8.6712446,0,0,0,-870.28021,0,-9,-9,2021,8,1,35,35,1,1,0,23.443377,23.443377,0,0,0,0,0,0,0,2,0,0,0,0,0,44.91,53.85,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,1164,-259175.84,0,0,0,0,0,2470.9749 +13588,16576,29566,-9,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,8.2343149,8.2669821,0,0,0,-948.38214,0,-9,-9,2021,14,3,38,70,1,3,0,10.848789,10.848789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,10,1,1,0,1,7,9,3,0,1255,309921.44,37302.133,203911.88,129432.14,0,0,1253.946 +13589,16577,29567,29568,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.8302202,8.9423161,0,30,-1,79.287666,0,3,3,2021,8,0,60,50,1,0,0,14.504175,14.504175,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,42.98,41.15,6.666666666666667,1,1,0,0,13,5,5,1,274.5,86312.641,55069.348,176519.69,0,0,0,3921.8604 +13589,16577,29568,29567,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7888899,7.8071947,0,30,1,50.336487,0,2,2,2021,22,9,44,37,1,9,0,6.8819261,6.8819261,0,0,0,0,0,0,0,0,0,0,0,2.7284462,0,42.98,41.15,52.24,50.75,8.333333333333334,1,1,0,0,13,5,5,1,274.5,86312.641,55069.348,176519.69,0,0,0,3921.8604 +13589,16578,29569,-9,29568,29567,1,1,26,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.33966,0,2,2,2021,11,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4550452,0,48.52,57.47,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,481,-11626.285,0,0,0,0,0,-275.60345 +13589,16579,29570,-9,29568,29567,1,0,21,0,0,0,2,2,-9,0,4,7.5727773,7.7535763,0,0,0,-1116.2866,0,2,2,2021,11,0,45,35,1,0,1,5.2569427,5.2569427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,203,105058.98,16577.477,0,0,0,0,1131.2126 +13590,16580,29571,29572,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.8497772,8.7967014,0,12,-2,-.8739177,0,3,-9,2021,12,0,42,47,1,0,0,17.630547,17.630547,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,57.06,57.76,8.333333333333334,1,1,0,0,12,10,4,1,1183,1254069,756087.63,395759.44,0,0,0,2706.6104 +13590,16580,29572,29571,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,0,0,0,12,2,49.289986,0,2,-9,2021,6,0,0,45,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46,50,10,1,1,1,0,12,10,4,1,1183,1254069,756087.63,395759.44,0,0,0,2706.6104 +13591,16581,29573,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.655055,6.9427047,0,0,-914.90167,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4403667,7.0856857,56.57,57.78,-9,-9,10,1,1,0,0,5,6,2,1,447,127446.42,98855.844,77675.609,0,0,0,635.26794 +13592,16582,29574,29575,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.1847229,8.1580439,0,5,4,-115.80787,0,-9,-9,2021,6,0,44,42,1,0,0,10.585084,10.585084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,50.99,49.74,8.333333333333334,1,1,0,0,9,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13592,16582,29575,29574,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,7.9982452,8.2128916,0,5,-4,38.407337,0,-9,-9,2021,10,1,30,38,1,1,0,12.811754,12.811754,0,0,0,0,0,0,0,0,1,1,0,0,0,50.99,49.74,56.33,51.02,10,1,1,0,0,4,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13592,16582,29576,-9,29575,29574,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-852.54596,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13593,16583,29577,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1017.8922,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,10.406539,1.5238054,84.963806,0,1,1,0,0,0,53.21,20.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,120,-88031.844,0,0,0,0,0,2389.6226 +13594,16584,29578,29579,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,7.765368,7.5491695,0,8,0,-18.10269,0,3,3,2021,17,6,37,38,1,6,0,5.2726345,5.2726345,0,0,0,0,0,0,0,42,1,1,0,1.0746095,0,37.62,44.93,26.57,20.42,5,2,3,0,1,9,12,3,1,841,146926.42,-6510.2227,218650.53,0,0,0,2301.1255 +13594,16584,29579,29578,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,8,9,-39.043377,0,3,3,2021,30,12,0,0,4,12,0,0,0,.05,.05,0,1,0,23.991899,0,0,1,1,0,0,0,26.57,20.42,37.62,44.93,1.666666666666667,1,1,0,1,0,12,3,1,841,146926.42,-6510.2227,218650.53,0,0,0,2301.1255 +13595,16585,29580,29581,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.360961,8.3224688,0,23,-5,2.3956294,0,2,2,2021,9,0,37,23,1,0,0,14.203554,14.203554,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.57,43.81,42.64,25.36,6.666666666666667,1,1,0,0,9,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29581,29580,-9,-9,1,1,50,0,3,0,1,1,-9,0,1,0,7.5869017,7.6002045,23,5,-119.32758,0,3,3,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0353093,7.6785321,42.64,25.36,57.57,43.81,1.666666666666667,1,1,0,0,7,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29582,-9,29580,29581,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.61615,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29583,-9,29580,29581,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.4587,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29584,-9,29580,29581,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-936.49908,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.29,54.84,-9,-9,5,1,1,0,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13596,16586,29585,-9,-9,-9,1,0,66,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1041.5974,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,95.373833,0,0,1,1,0,0,0,35.01,28.95,-9,-9,5,2,3,0,0,0,6,1,1,657,-104641.59,0,25021.104,0,0,0,1217.3374 +13596,16587,29586,-9,29587,29589,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.98914,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29587,29589,-9,-9,1,0,28,0,2,0,3,3,-9,1,3,0,0,0,7,-8,149.12852,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.03,53.83,28.14,57.31,6.666666666666667,2,3,0,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29588,-9,29587,29589,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7267,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29589,29587,29585,-9,1,1,36,0,2,0,1,1,-9,0,4,8.2774792,7.9461608,0,7,8,-15.30637,0,3,3,2021,19,8,37,37,1,8,0,10.079587,10.079587,0,0,.05,0,0,0,0,42,1,1,0,0,0,28.14,57.31,36.03,53.83,6.666666666666667,2,3,0,0,13,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13597,16588,29590,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2896795,8.3714981,0,0,0,-962.84454,0,-9,3,2021,9,1,38,38,1,1,0,11.64093,11.64093,0,0,0,0,0,0,0,2,0,0,0,2.5012276,0,44.02,60.7,-9,-9,8.333333333333334,3,4,0,0,9,8,4,1,1309,842064.25,305586.84,253599.11,0,0,0,1878.3898 +13598,16589,29591,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8657727,5.4301739,0,0,-1052.145,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7303557,6.0864286,47,38,-9,-9,5,1,1,0,0,5,4,2,1,493,230463.73,199348.55,60164.293,0,0,0,723.62286 +13599,16590,29592,-9,29594,29593,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-824.4035,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16590,29593,29594,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.4586325,9.6238623,0,22,0,3.9043362,0,2,3,2021,12,0,45,45,1,0,0,43.887177,43.887177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.03,58.4,62.67,44.01,5,1,1,0,0,11,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16590,29594,29593,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,22,0,66.66983,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2276952,0,62.67,44.01,43.03,58.4,8.333333333333334,1,1,0,0,0,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16591,29595,-9,29594,29593,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1090.3488,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2277313,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1419,0,0,0,0,0,0,-203.22835 +13600,16592,29596,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9054418,8.1589994,0,0,0,-1028.5863,0,-9,-9,2021,20,9,33,35,1,9,0,9.0788078,9.0788078,0,0,.05,0,0,0,0,0,1,0,1,2.0570588,0,57.29,22.49,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,226,455363.19,448.74481,286201.31,0,0,0,1306.6191 +13600,16593,29597,-9,29596,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.9628,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,157,26111.811,0,0,0,0,0,380.61981 +13601,16594,29598,29599,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.3669314,6.3622069,54,0,61.703224,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,120.44573,0,0,1,1,0,5.9437413,6.5937328,35.78,17.81,44.58,40.68,6.666666666666667,1,1,0,0,3,2,2,1,1049.5,128499.94,170141.95,72808.828,0,0,0,1572.443 +13601,16594,29599,29598,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.8268752,4.7442021,54,0,-9.6990566,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0349393,4.9827456,44.58,40.68,35.78,17.81,8.333333333333334,1,1,0,0,2,2,2,1,1049.5,128499.94,170141.95,72808.828,0,0,0,1572.443 +13601,16595,29600,-9,29599,29598,1,0,49,0,0,0,2,2,-9,0,4,8.4373283,8.5364275,5.5996847,0,0,-975.06897,0,2,2,2021,6,0,37,38,1,0,0,15.898171,15.898171,.05,.05,0,0,0,0,0,2,1,1,0,7.4537954,5.7246237,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1321,209825.36,289068.28,82689.641,55382.777,11198.096,0,3018.864 +13602,16596,29601,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.8731709,8.9307222,7.0958648,0,0,-929.89301,0,3,2,2021,10,0,44,45,1,0,0,16.481047,16.481047,.05,.05,0,0,0,0,0,0,1,1,0,7.5601668,0,51.39,53.65,-9,-9,8.333333333333334,1,1,0,0,13,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29602,-9,29601,-9,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1076.0015,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29603,-9,29601,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-919.4765,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29604,-9,29601,-9,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-991.57587,-9,1,-9,2021,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93314898,0,30.67,65.95,-9,-9,10,1,1,0,0,1,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29605,-9,29601,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8967,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13603,16597,29606,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1041.5525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.87,36.1,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,868,-157020.52,-34127.184,0,0,0,0,980.31891 +13604,16598,29607,29609,-9,-9,1,0,40,0,1,0,1,1,-9,0,2,7.2183003,7.4112267,0,13,1,-91.377106,0,2,3,2021,22,7,26,27,1,7,0,6.1519737,6.1519737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.32,44.48,37.58,57.01,5,1,1,0,0,7,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13604,16598,29608,-9,29607,29609,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.35742,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13604,16598,29609,29607,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.3246088,8.154376,0,13,-1,-4.0317655,0,-9,-9,2021,16,4,38,38,1,4,0,17.068794,17.068794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.58,57.01,24.32,44.48,8.333333333333334,1,1,0,0,14,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13605,16599,29610,29611,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5221305,7.6290488,23,4,10.881363,0,-9,-9,2021,18,5,0,25,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0663886,6.9328942,54.2,57.49,40.33,55.64,6.666666666666667,1,1,0,0,10,5,2,1,418.5,96758.43,58933.105,93903.047,0,0,0,941.50061 +13605,16599,29611,29610,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,23,-4,152.78748,0,3,3,2021,14,2,0,47,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.9895232,0,40.33,55.64,54.2,57.49,6.666666666666667,1,1,0,0,10,5,2,1,418.5,96758.43,58933.105,93903.047,0,0,0,941.50061 +13606,16600,29612,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.0744162,7.9306622,5.6888928,0,0,-1047.7002,0,3,3,2021,11,0,36,36,1,2,0,10.680849,10.680849,.05,.05,0,0,0,0,.34388834,0,0,0,0,1.4826497,5.7318454,49,48,-9,-9,7,1,1,0,0,11,11,4,0,532,570572.56,342497.09,146202.48,0,0,1759.406,1641.7046 +13607,16601,29613,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.4646626,9.6043825,0,0,0,-980.51318,0,2,2,2021,6,0,48,53,1,0,0,34.952103,34.952103,.05,.05,0,0,0,0,0,0,0,0,0,5.4649434,0,57.06,57.76,-9,-9,10,1,1,0,0,12,6,5,1,973,132031.67,32618.811,0,0,0,0,4908.7695 +13608,16602,29614,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.8483086,8.4430714,0,5,-6,26.870792,0,3,2,2021,11,3,37,38,1,3,0,15.065547,15.065547,.05,.05,0,0,0,0,0,0,0,0,0,1.8345443,0,31.64,66.34999999999999,50.51,53.71,8.333333333333334,1,1,0,0,12,5,5,1,695,1748817.1,1220873.9,252223.03,0,0,0,1962.7583 +13608,16603,29615,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8816757,8.8161058,0,5,6,-94.123611,0,3,2,2021,10,2,40,55,1,2,0,20.52338,20.52338,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,53.71,31.64,66.34999999999999,10,1,1,0,0,12,5,5,1,565,96204.586,0,133271.77,2890.2192,166.94479,0,2022.2019 +13609,16604,29616,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,7.7101846,7.8394647,5.8018408,0,0,-1073.408,0,3,3,2021,13,1,31,29,1,1,0,10.198339,10.198339,.05,.05,0,0,0,0,0,0,1,1,0,8.6850033,6.2767062,26.69,60.83,-9,-9,3.333333333333333,1,1,0,0,13,6,3,1,165,170521.55,64630.617,179132.16,50542.18,0,0,3109.3813 +13609,16604,29617,-9,29616,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.21155,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,165,170521.55,64630.617,179132.16,50542.18,0,0,3109.3813 +13610,16605,29618,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1050.7225,0,3,2,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,14.92,-9,-9,5,1,1,0,0,3,13,2,0,297,-37358.508,0,0,0,508.65033,0,1275.5742 +13610,16606,29619,-9,29618,-9,1,0,28,0,0,0,1,1,-9,0,3,8.2156715,8.0195284,0,0,0,-999.35321,0,2,3,2021,13,0,40,46,1,3,1,9.7054558,9.7054558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,291,-120919.63,-31077.836,0,0,0,0,1150.9567 +13611,16607,29620,-9,29621,29623,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-834.7417,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29621,29623,-9,-9,1,0,42,1,2,0,2,2,-9,0,2,8.5466089,8.5653734,0,7,0,-51.069962,0,-9,-9,2021,11,1,36,36,1,1,0,14.79732,14.79732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.84,52.41,47.27,53.93,6.666666666666667,1,1,0,0,11,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29622,-9,29621,29623,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.1622,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29623,29621,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,8.2182379,8.1762056,0,7,0,73.67643,0,2,1,2021,7,0,38,43,1,0,0,13.382653,13.382653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,36.84,52.41,8.333333333333334,1,1,0,0,8,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13612,16608,29624,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.2027,0,-9,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8041427,0,48.75,61.27,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,295,142973.03,0,0,0,0,0,980.04279 +13613,16609,29625,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.9250717,9.0006638,0,0,-972.97919,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6429753,9.0266666,59.46,36.25,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,1205,804872.81,150622.34,369000.91,0,0,0,6487.9644 +13614,16610,29626,-9,29627,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.4089,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,539,6237.7344,-37208.227,86333.234,36770.156,6574.8271,5713.6455,4736.498 +13614,16610,29627,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.1468391,9.1903811,7.4305511,0,0,-819.23145,0,-9,-9,2021,8,0,58,80,1,0,0,16.010277,16.010277,.05,.05,0,0,0,0,0,0,1,1,0,5.8195481,7.1204066,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,11,5,0,539,6237.7344,-37208.227,86333.234,36770.156,6574.8271,5713.6455,4736.498 +13615,16611,29628,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.6553407,5.7738085,0,0,-1002.9045,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3365664,5.4027996,58.2,54.53,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,373,655289.75,0,459306.84,0,0,0,1441.3859 +13616,16612,29629,-9,29630,29631,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.3513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29630,29631,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,8.0130444,8.1747465,0,7,-1,73.709129,0,3,2,2021,20,9,37,37,1,9,0,10.203765,10.203765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.66,31.97,57.73,54.53,8.333333333333334,1,1,0,0,9,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29631,29630,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,8.5781202,8.5385656,0,7,1,-50.2048,0,3,3,2021,6,0,42,49,1,0,0,14.08951,14.08951,0,0,0,0,0,0,0,0,1,1,0,7.3022637,0,57.73,54.53,50.66,31.97,8.333333333333334,1,1,0,0,8,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29632,-9,29630,29631,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.62421,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13617,16613,29633,29634,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.1500835,6.3657179,48,2,-94.78508,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.1364989,6.2933559,58.49,50.2,36.03,60.59,8.333333333333334,1,1,0,0,4,9,2,1,1022,474013.25,168286.59,168938.8,0,0,0,2344.8259 +13617,16613,29634,29633,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.536808,5.9653769,48,-2,114.48866,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.9823074,6.4912457,36.03,60.59,58.49,50.2,6.666666666666667,1,1,0,0,6,9,2,1,1022,474013.25,168286.59,168938.8,0,0,0,2344.8259 +13617,16614,29635,-9,29634,29633,1,1,41,0,0,0,2,2,-9,0,4,8.2904844,8.3639059,0,0,0,-1067.8948,0,3,2,2021,8,0,49,49,1,0,0,9.5681992,9.5681992,0,0,0,0,0,0,0,0,1,1,0,1.671141,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1246,248770.97,0,0,0,0,0,1914.5743 +13618,16615,29636,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,5.4482222,5.7870455,0,0,-901.0683,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2861342,4.8025227,51.63,42.78,-9,-9,8.333333333333334,1,1,0,1,0,8,2,0,223,196067.61,-173698.06,0,0,0,0,531.45862 +13619,16616,29637,29640,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.2429581,6.1006966,0,12,-8,-25.120699,0,3,2,2021,11,3,12,0,1,3,0,5.2963142,5.2963142,0,0,0,0,0,0,0,0,1,1,0,.84546804,0,47.13,48.65,54.79,55.86,6.666666666666667,2,3,0,0,5,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29638,-9,29637,29640,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5375,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29639,-9,29637,29640,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29640,29637,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.322298,8.2448463,0,12,8,13.317342,0,2,2,2021,9,0,40,45,1,0,0,10.527474,10.527474,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.13,48.65,6.666666666666667,1,1,0,0,7,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13620,16617,29641,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.2607622,6.9964943,0,0,0,-896.14661,0,3,-9,2021,11,0,23,22,1,0,0,6.4073396,6.4073396,0,0,0,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,5,1,1,0,1,11,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29642,-9,29641,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.7321,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29643,-9,29641,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4538,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29644,-9,29641,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-897.21429,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13621,16618,29645,29646,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,6,-1,-7.4054165,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,41.47,58.08,3.333333333333333,1,1,1,1,9,6,4,1,1644,66509.344,-32957.578,205899.19,131320.94,4914.1182,0,1545.2114 +13621,16618,29646,29645,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.6479311,8.673645,0,6,1,-4.1023531,0,-9,-9,2021,16,6,40,35,1,6,0,18.573153,18.573153,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,52.4,52.91,8.333333333333334,1,1,0,0,6,6,4,1,1644,66509.344,-32957.578,205899.19,131320.94,4914.1182,0,1545.2114 +13622,16619,29647,29648,-9,-9,1,0,58,0,0,0,3,3,-9,0,1,7.4866114,7.5742064,0,31,-5,7.647553,0,3,-9,2021,16,5,25,25,1,5,0,10.641446,10.641446,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.34,28.18,62.1,51.16,5,1,1,0,0,15,8,5,1,813.5,358338.28,93722.953,215147.78,0,0,0,4520.0039 +13622,16619,29648,29647,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.3115454,8.3037205,31,5,65.079338,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,5.5038166,8.2213268,62.1,51.16,36.34,28.18,8.333333333333334,1,1,0,0,7,8,5,1,813.5,358338.28,93722.953,215147.78,0,0,0,4520.0039 +13623,16620,29649,-9,29650,29651,1,0,15,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.6926,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16620,29650,29651,-9,-9,1,0,41,1,2,0,2,2,-9,0,2,6.43327,6.7320237,0,17,-3,-25.562843,0,-9,-9,2021,16,3,10,8,1,3,0,5.7619925,5.7619925,0,0,0,0,0,0,0,0,1,0,1,0,0,54.61,51.04,52,56,8.333333333333334,1,1,0,1,7,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16620,29651,29650,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,7.8171639,7.9965439,0,6,3,125.76293,0,-9,-9,2021,9,0,17,17,1,1,0,17.416065,17.416065,0,0,0,0,0,0,0,0,1,0,1,0,0,52,56,54.61,51.04,8,1,1,0,0,1,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16621,29652,-9,29650,29651,1,0,20,1,2,0,2,2,-9,0,5,0,0,0,0,0,-950.38354,0,2,2,2021,5,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,71.28,38.9,-9,-9,10,1,1,0,0,1,7,2,0,1459,43574.805,0,0,0,0,0,398.78595 +13623,16621,29653,-9,29652,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.04584,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1459,43574.805,0,0,0,0,0,398.78595 +13623,16622,29654,-9,29650,29651,1,1,19,1,2,0,2,2,-9,0,4,0,0,0,0,0,-947.04602,1,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.79000000000001,40.37,-9,-9,8.333333333333334,1,1,0,0,2,7,1,0,516,0,0,0,0,0,0,0 +13624,16623,29655,-9,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,0,0,0,0,0,-977.1615,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,8.333333333333334,1,1,1,0,9,9,1,0,300,111788.41,0,0,0,0,0,1590.1068 +13624,16623,29656,-9,29655,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-920.63892,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,1,0,300,111788.41,0,0,0,0,0,1590.1068 +13625,16624,29657,29658,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.3120003,8.13696,29,7,32.103401,0,2,2,2021,10,2,0,10,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.812716,66.36,30.66,57.16,56.15,8.333333333333334,1,1,0,0,7,10,5,1,869.5,2912618.5,2631025,159517.56,0,0,0,4261.2666 +13625,16624,29658,29657,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,8.4896755,7.9628315,9,-7,2.6531336,0,2,2,2021,5,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8889618,57.16,56.15,66.36,30.66,8.333333333333334,1,1,1,0,8,10,5,1,869.5,2912618.5,2631025,159517.56,0,0,0,4261.2666 +13626,16625,29659,29660,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,6.5960479,6.6071286,0,1,-2,120.66655,0,-9,-9,2021,14,0,20,-9,1,3,0,4.6157308,4.6157308,0,0,0,0,0,0,0,0,0,0,0,4.0922141,0,42,54,44,55,6.666666666666667,1,1,0,0,4,11,4,1,1208.5,92812.281,-8841.124,215895.25,48858.887,70364.406,1030.5386,2249.6929 +13626,16625,29660,29659,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.51756,8.5637054,0,1,2,31.190842,-9,-9,-9,2021,7,0,60,0,1,0,0,9.3223591,9.3223591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,55,42,54,7,1,1,0,0,0,11,4,1,1208.5,92812.281,-8841.124,215895.25,48858.887,70364.406,1030.5386,2249.6929 +13627,16626,29661,-9,29663,29662,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-940.9209,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29662,29663,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,7.1717138,7.3248649,0,6,4,27.704433,0,2,1,2021,12,0,70,40,1,0,0,2.2351708,2.2351708,.05,.05,0,0,0,0,0,2,1,1,0,4.8010063,0,56.92,46.68,50.74,49.6,8.333333333333334,1,1,0,0,8,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29663,29662,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.6319933,8.6638317,0,23,-4,-45.909809,0,3,2,2021,10,1,20,25,1,1,0,39.354347,39.354347,.05,.05,0,0,0,0,0,27,1,1,0,3.2411544,0,50.74,49.6,56.92,46.68,3.333333333333333,1,1,0,0,8,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29664,-9,29663,29662,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1092.1494,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13628,16627,29665,29666,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,36,1,-59.315132,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,12.03297,0,0,1,1,0,0,0,59.3,34.68,61.55,25.93,8.333333333333334,1,1,0,0,0,7,2,1,848.5,371204.5,0,299174.13,0,0,0,910.14825 +13628,16627,29666,29665,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.9074264,2.736897,36,-1,9.7185335,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0583186,2.8095877,61.55,25.93,59.3,34.68,6.666666666666667,1,1,0,0,0,7,2,1,848.5,371204.5,0,299174.13,0,0,0,910.14825 +13629,16628,29667,29668,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,4.7899189,4.566175,50,-3,-83.935997,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1516781,4.4917793,32.29,19.42,61.61,37.79,5,1,1,0,0,0,4,5,1,888,600847,0,367717.19,0,0,5389.4209,5622.1709 +13629,16628,29668,29667,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.1083059,8.6390533,8.1552992,11,3,8.3290119,0,-9,-9,2021,6,0,16,16,1,0,0,24.971909,24.971909,0,0,0,0,0,0,0,27,1,1,0,6.4247274,8.3452272,61.61,37.79,32.29,19.42,8.333333333333334,1,1,0,0,14,4,5,1,888,600847,0,367717.19,0,0,5389.4209,5622.1709 +13630,16629,29669,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0518246,7.6393185,0,0,0,-1010.9994,0,3,3,2021,10,0,44,44,1,0,0,6.5480275,6.5480275,0,0,.05,0,0,0,0,0,1,0,1,0,0,52.51,54.26,-9,-9,8.333333333333334,3,4,0,1,7,7,4,1,1278,649819.88,220828.63,525381.75,0,0,0,1635.3224 +13630,16630,29670,-9,29673,-9,1,0,12,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1105.5483,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,3,4,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29671,-9,29673,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1009.2052,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,4,6,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29672,-9,29673,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1088.7513,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29673,-9,29669,-9,1,0,19,0,0,0,2,2,1,0,4,7.5728765,7.4077935,0,0,0,-1106.5333,-9,1,-9,2021,12,0,40,0,1,2,1,4.8198156,4.8198156,0,0,0,0,0,0,0,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,1,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13631,16631,29674,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,8.5755148,8.2265654,0,0,-914.09363,0,2,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7758342,8.496707,23.52,27.15,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,272,856546.19,533195.5,81958.102,0,0,0,2932.8936 +13632,16632,29675,29676,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.9875546,8.6620483,0,8,-12,.24016391,0,-9,-9,2021,4,0,45,60,1,0,0,19.344416,19.344416,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.57,57.51,10,1,1,0,0,12,10,5,1,962.5,2380353,1722498.5,550049.88,0,0,0,4251.9414 +13632,16632,29676,29675,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,8.4085484,8.6530056,7.3542361,8,12,27.063681,0,-9,-9,2021,7,0,51,45,1,0,0,10.214309,10.214309,.05,.05,0,0,0,0,0,0,0,0,0,0,7.3233218,57.57,57.51,62.39,56.71,8.333333333333334,1,1,0,0,12,10,5,1,962.5,2380353,1722498.5,550049.88,0,0,0,4251.9414 +13633,16633,29677,29678,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.9095564,8.9050055,0,10,6,1.3733373,0,2,2,2021,6,0,40,44,1,0,0,19.324705,19.324705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,8.333333333333334,1,1,0,0,11,10,5,1,2524.5,528644.63,90324.594,609910.75,197720.81,27311.6,920.40173,4703.8818 +13633,16633,29678,29677,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7843924,9.1196861,0,10,-6,-28.768976,0,2,2,2021,15,4,52,48,1,4,0,14.560193,14.560193,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,5,1,1,0,0,11,10,5,1,2524.5,528644.63,90324.594,609910.75,197720.81,27311.6,920.40173,4703.8818 +13633,16634,29679,-9,29677,29678,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1028.4066,1,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4292104,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,267,0,0,0,0,0,0,193.59123 +13634,16635,29680,29683,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.3798132,9.5367584,0,10,-3,-149.7551,0,-9,-9,2021,13,1,45,44,1,1,0,29.017046,29.017046,.05,.05,0,0,0,0,1.2597878,0,0,0,0,0,0,38.91,60.5,39.8,58.53,5,1,1,0,0,11,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29681,-9,29680,29683,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.5861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29682,-9,29680,29683,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0636,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29683,29680,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6045513,8.6195374,0,10,3,-61.18037,0,2,2,2021,14,2,47,47,1,2,0,19.556787,19.556787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.8,58.53,38.91,60.5,3.333333333333333,1,1,0,0,10,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13635,16636,29684,29686,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6603003,7.2507653,0,19,-6,53.407444,0,-9,-9,2021,9,1,26,27,1,1,0,8.5648527,8.5648527,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,51,56,8.333333333333334,1,1,0,0,11,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29685,-9,29684,29686,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.76605,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29686,29684,-9,-9,1,1,44,0,2,0,3,3,-9,0,4,8.4986401,8.6750422,0,15,6,-31.62352,0,-9,-9,2021,9,0,60,40,1,1,0,9.4195814,9.4195814,.05,.05,0,0,0,0,0,0,1,1,0,3.006573,0,51,56,44.7,53.68,7,1,1,0,0,1,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29687,-9,29684,29686,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.239,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13636,16637,29688,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.8053007,6.9297533,0,0,-932.58203,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0771251,38.16,44.66,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,533,593801.44,524840.06,169844.36,0,0,0,1093.7894 +13637,16638,29689,29690,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,1,-13,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.23,47.51,35.99,16.11,8.333333333333334,1,1,0,0,0,1,1,1,1071,196610.3,0,160211.47,0,0,0,1271.0662 +13637,16638,29690,29689,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,1,13,0,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,126.48344,0,0,1,1,0,0,0,35.99,16.11,53.23,47.51,5,1,1,0,1,0,1,1,1,1071,196610.3,0,160211.47,0,0,0,1271.0662 +13638,16639,29691,29692,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.0447402,6.0782418,7,-1,-74.560173,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,8.1097593,0,0,1,1,0,5.5566387,5.9724755,36.37,40.24,43.53,41.07,8.333333333333334,1,1,0,0,3,2,2,1,1072.5,221110.81,16490.699,196899.47,0,0,0,1953.0002 +13638,16639,29692,29691,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,7,1,41.161751,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.9620204,19.49641,69.6894,0,1,1,0,1.2995228,0,43.53,41.07,36.37,40.24,8.333333333333334,1,1,0,0,0,2,2,1,1072.5,221110.81,16490.699,196899.47,0,0,0,1953.0002 +13639,16640,29693,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.3847857,8.0639906,0,0,0,-1037.3511,0,2,2,2021,18,4,60,60,1,4,0,7.9142394,7.9142394,.05,.05,0,0,0,0,0,0,0,0,0,6.630578,0,42.95,29.14,-9,-9,1.666666666666667,1,1,0,0,15,10,4,0,712,-87100.969,66636.164,0,0,0,995.25104,1918.3862 +13640,16641,29694,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.1295414,8.4429131,0,0,-1004.993,-9,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.9569778,8.2290268,52.27,31.44,-9,-9,5,1,1,0,0,9,5,4,1,631,818233.94,392954.59,144718.48,0,0,0,5279.6694 +13641,16642,29695,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-937.36353,0,2,1,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,36.9,-9,-9,5,1,1,0,0,1,6,1,0,207,115606.27,0,0,0,0,0,1100.4186 +13642,16643,29696,29697,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.0150299,8.7325897,0,5,-1,31.569176,0,-9,2,2021,7,0,38,37,1,0,0,19.961742,19.961742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,58.07,20.42,46.66,8.333333333333334,1,1,0,0,8,9,4,0,242,498870.94,-294.89258,227726.86,103812.23,1572.8555,1365.0476,2424.6479 +13642,16643,29697,29696,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,23,1,-33.828392,0,3,2,2021,30,11,0,10,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.42,46.66,46.21,58.07,5,1,1,0,0,9,9,4,0,242,498870.94,-294.89258,227726.86,103812.23,1572.8555,1365.0476,2424.6479 +13642,16644,29698,-9,29697,29696,1,1,21,0,0,0,2,2,-9,0,4,7.9301982,7.8429413,0,0,0,-943.00085,0,2,2,2021,5,0,45,41,1,0,1,4.8919606,4.8919606,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,226,-158361.73,0,0,0,0,0,1004.3206 +13643,16645,29699,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,1,8.6046467,8.5163155,0,0,0,-1111.8508,0,2,3,2021,30,10,45,40,1,10,0,12.5205,12.5205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.37,43.7,-9,-9,0,1,1,0,1,7,9,5,0,481,-25831.885,107052.32,357130,254627.89,3505.6006,0,2595.6633 +13643,16646,29700,-9,-9,29699,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-935.38782,-9,-9,3,2021,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.25,62,-9,-9,1.666666666666667,1,1,1,0,1,9,1,0,515,0,0,0,0,0,0,192.6622 +13644,16647,29701,29702,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.6371546,7.4653625,46,2,27.18388,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.470273,7.8082581,51.77,58.57,59.43,58.05,10,1,1,0,0,7,7,3,1,1172,1011747.5,522577.81,360300.69,0,11770.414,0,2912.0698 +13644,16647,29702,29701,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.4100833,7.1988659,4,-2,36.149979,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9171019,59.43,58.05,51.77,58.57,10,1,1,0,0,0,7,3,1,1172,1011747.5,522577.81,360300.69,0,11770.414,0,2912.0698 +13645,16648,29703,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,9.3875647,9.3216705,0,0,0,-1162.2461,0,2,2,2021,10,0,70,70,1,0,0,17.360611,17.360611,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.82,60.48,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,2847,-92967.688,21240.641,0,0,0,0,3363.4973 +13646,16649,29704,29705,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.3399906,8.1637049,0,32,1,89.824348,0,2,2,2021,3,0,42,42,1,0,0,11.946539,11.946539,0,0,0,0,0,0,0,0,0,0,0,4.4580555,0,60.6,46.43,57.9,51.84,6.666666666666667,1,1,0,1,12,12,4,0,1653.5,1649831,1093203.8,298538.81,0,0,0,1206.558 +13646,16649,29705,29704,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,32,-1,22.992922,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,60.6,46.43,8.333333333333334,1,1,0,0,7,12,4,0,1653.5,1649831,1093203.8,298538.81,0,0,0,1206.558 +13647,16650,29706,29707,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,5.183404,5.1112823,2,0,151.40176,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.78525,0,14.5,1,1,0,3.6332884,5.158711,48.02,34.89,59.33,51.29,8.333333333333334,1,1,0,0,0,12,2,1,623,199447.19,95175.719,36009.297,0,0,0,4566.0303 +13647,16650,29707,29706,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,6.3100567,6.0267148,2,0,22.327082,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1499176,5.9623332,59.33,51.29,48.02,34.89,8.333333333333334,1,1,0,0,2,12,2,1,623,199447.19,95175.719,36009.297,0,0,0,4566.0303 +13648,16651,29708,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.5770011,7.467988,0,0,-1079.6749,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5936389,58.76,38.19,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,476,323888.97,287975.28,152347.06,0,0,0,2100.906 +13649,16652,29709,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.7693524,7.976182,0,0,0,-1143.1919,0,3,-9,2021,11,0,18,17,1,0,0,17.870871,17.870871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,9,4,4,0,520,27079.873,15528.174,0,0,0,0,741.28119 +13649,16653,29710,-9,29709,-9,1,1,27,0,0,0,2,2,-9,0,3,7.0814991,7.2385478,0,0,0,-959.28906,0,1,1,2021,12,1,58,2,1,1,1,2.4015119,2.4015119,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,49.78,-9,-9,5,3,4,0,1,6,4,3,0,609,-193550.44,0,0,0,0,0,665.27112 +13650,16654,29711,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.15869,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,1014,-112665.95,0,0,0,0,0,470.7229 +13651,16655,29712,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.231782,6.8672647,0,0,-1071.4359,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.7973437,0,0,1,1,0,0,7.180419,61.69,36.86,-9,-9,10,1,1,0,0,0,5,2,1,897,65335.02,75417.445,0,0,0,0,1148.8014 +13652,16656,29713,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5396214,8.3688936,0,0,0,-994.32965,0,2,2,2021,11,2,20,40,1,2,0,28.428782,28.428782,.05,.05,0,0,0,0,3.5671868,0,0,0,0,0,0,43.85,50.34,-9,-9,5,1,1,0,0,10,2,5,1,3515,539362.44,198084.3,0,0,0,0,2566.0403 +13653,16657,29714,29716,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.7657185,8.6755447,0,15,6,-145.19922,0,3,3,2021,6,0,40,38,1,0,0,16.347902,16.347902,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.01,47.22,8.333333333333334,2,3,0,0,10,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29715,-9,29716,29714,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.15063,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29716,29714,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.3989725,8.5420389,0,17,-6,-14.393523,0,3,2,2021,10,2,32,32,1,2,0,13.132398,13.132398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.01,47.22,54.37,54.8,8.333333333333334,1,1,0,0,10,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29717,-9,29716,29714,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.7129,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13654,16658,29718,-9,29720,29719,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-996.29596,-9,2,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,5,1,1,0,1,0,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13654,16658,29719,29720,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.4504948,6.6540213,0,40,2,-78.042206,0,3,3,2021,10,0,50,45,1,0,0,1.9340314,1.9340314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.95,41.59,35.8,59.5,3.333333333333333,1,1,0,1,11,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13654,16658,29720,29719,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.9890924,7.0760412,0,41,-2,51.929211,0,3,3,2021,13,3,16,7,1,3,0,6.8983545,6.8983545,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.8,59.5,45.95,41.59,3.333333333333333,1,1,0,0,11,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13655,16659,29721,29723,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.243227,8.1279335,0,6,13,19.133503,0,-9,-9,2021,6,0,46,45,1,0,0,10.125015,10.125015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,9,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29722,-9,29723,29721,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-870.23334,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29723,29721,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,8.4273443,8.2259865,0,6,-13,-26.257349,0,2,2,2021,10,1,50,31,1,1,0,8.4286156,8.4286156,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29724,-9,29723,29721,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.4314,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13656,16660,29725,29726,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7392149,8.9939413,0,8,0,-66.338829,0,-9,-9,2021,19,8,38,40,1,8,0,19.951756,19.951756,.05,.05,0,0,0,0,0,0,0,0,0,6.3908987,0,45.15,57.46,55.19,54.26,6.666666666666667,1,1,0,0,13,6,5,1,570.5,637194.75,155449.59,366595.81,0,4471.6958,0,4749.0039 +13656,16660,29726,29725,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6599932,8.4886284,0,8,0,-54.884319,0,1,1,2021,2,0,35,40,1,0,0,18.360582,18.360582,0,0,0,0,0,0,0,0,0,0,0,7.5380101,0,55.19,54.26,45.15,57.46,8.333333333333334,1,1,0,0,12,6,5,1,570.5,637194.75,155449.59,366595.81,0,4471.6958,0,4749.0039 +13657,16661,29727,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1028.5686,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.38,34.77,-9,-9,3.333333333333333,2,3,1,1,7,6,1,1,1643,-87890.93,0,0,0,0,0,972.75421 +13657,16662,29728,-9,29727,-9,1,0,33,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1063.6418,0,3,-9,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,41.26,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,312,129361.45,0,0,0,-239.78867,0,438.25009 +13657,16663,29729,-9,29727,-9,1,1,32,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1131.9437,0,3,3,2021,7,0,0,27,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,2,3,1,0,6,6,1,1,330,-4397.9702,0,0,0,0,0,876.17438 +13657,16664,29730,-9,29727,-9,1,0,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-957.52209,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,3.333333333333333,2,3,1,0,5,6,1,1,409,-31010.336,0,0,0,0,0,446.73679 +13657,16665,29731,-9,29727,-9,1,1,26,0,0,0,2,2,-9,0,4,7.7309361,7.7985525,0,0,0,-830.82117,0,2,-9,2021,15,3,57,40,1,3,1,5.0912008,5.0912008,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,54.92,-9,-9,5,2,3,0,0,6,6,3,1,759,245833.8,0,0,0,0,0,1186.5995 +13657,16666,29732,-9,29727,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-858.3197,0,3,-9,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3623519,0,31.61,55.71,-9,-9,6.666666666666667,2,3,1,1,0,6,1,1,443,-22455.641,0,0,0,0,0,-156.05075 +13658,16667,29733,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.6077089,6.7803187,0,0,-908.86847,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1686621,6.8974619,64.16,29.7,-9,-9,10,1,1,0,0,0,1,2,1,867,252928.3,164515.23,97138.141,0,0,0,757.87109 +13659,16668,29734,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.0430479,6.0509262,0,0,-948.74841,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,.72740519,0,0,1,1,0,0,6.4817705,20.56,41.72,-9,-9,1.666666666666667,1,1,0,0,4,9,2,1,929,-142679.95,220021.59,0,0,0,0,1309.4768 +13660,16669,29735,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.4269867,7.1362257,0,0,-914.30701,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2948685,45.17,30.49,-9,-9,5,1,1,0,0,0,4,3,1,1061,542398.06,275415.16,248995.64,0,0,0,1153.9478 +13661,16670,29736,29737,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,20,6,-21.827042,0,3,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54088241,0,46.98,59.35,49.58,55.59,8.333333333333334,1,1,1,0,12,11,3,0,703,1208443.3,574054.38,232694.78,0,0,0,2271.8491 +13661,16670,29737,29736,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2006607,8.2942057,0,19,-6,-62.72617,0,2,3,2021,14,4,38,38,1,4,0,12.194068,12.194068,.05,.05,0,0,0,0,0,0,0,0,0,7.229856,0,49.58,55.59,46.98,59.35,6.666666666666667,1,1,0,0,14,11,3,0,703,1208443.3,574054.38,232694.78,0,0,0,2271.8491 +13662,16671,29738,29739,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.7144718,8.0591955,0,32,-4,-46.769459,0,2,1,2021,13,3,47,42,1,3,0,12.393163,12.393163,0,0,0,0,0,0,0,74.5,1,1,0,0,0,42,40,57.16,56.15,6.666666666666667,1,1,0,0,14,1,4,1,378,595814.44,297252.5,167420.06,0,6875.3535,0,1233.6992 +13662,16671,29739,29738,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,33,4,-44.153156,0,2,3,2021,7,0,0,24,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.5975884,0,57.16,56.15,42,40,10,1,1,0,0,13,1,4,1,378,595814.44,297252.5,167420.06,0,6875.3535,0,1233.6992 +13663,16672,29740,29741,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,7,6,64.42746,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,29.365269,0,0,1,1,0,0,0,58.04,31.83,53.14,51.28,8.333333333333334,1,1,0,0,0,7,2,0,654.5,414218.5,134949,346853.19,0,0,0,2172.3052 +13663,16672,29741,29740,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6501417,5.2210355,7,-6,-64.341896,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.5085282,53.14,51.28,58.04,31.83,8.333333333333334,1,1,0,0,0,7,2,0,654.5,414218.5,134949,346853.19,0,0,0,2172.3052 +13664,16673,29742,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-934.62604,0,3,3,2021,21,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.37,38.64,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,605,-119106.44,0,0,0,0,753.69397,833.37946 +13665,16674,29743,29744,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9958334,9.0177965,0,4,1,13.875172,0,2,2,2021,8,0,65,55,1,0,0,19.787916,19.787916,.05,.05,0,0,0,0,0,0,1,1,0,.11489786,0,52.82,53.97,43.61,56.01,6.666666666666667,1,1,0,0,11,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29744,29743,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8654723,7.7989793,0,4,-1,-85.602432,0,3,2,2021,13,2,38,38,1,2,0,8.5043888,8.5043888,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,52.82,53.97,6.666666666666667,1,1,0,0,6,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29745,-9,29744,29743,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.57178,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29746,-9,29744,29743,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-852.52313,-9,3,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13666,16675,29747,-9,29749,29750,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9551,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29748,-9,29749,29750,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.90729,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29749,29750,-9,-9,1,0,43,0,2,0,3,3,-9,1,1,0,0,0,27,-2,0,0,-9,-9,2021,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.33,13.73,52,54.51,0,1,1,0,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29750,29749,-9,-9,1,1,45,0,2,0,2,2,-9,1,3,0,0,0,27,2,0,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,54.51,60.33,13.73,6.666666666666667,1,1,0,0,1,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13667,16676,29751,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.2345858,7.2662888,0,0,-1029.7954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3517246,56.77,44.34,-9,-9,10,1,1,0,0,0,10,3,1,479,478505.06,192291.31,382781.41,0,0,0,1640.6179 +13668,16677,29752,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8212624,8.0512018,0,0,0,-873.45734,0,2,3,2021,6,0,40,40,1,0,0,8.9163675,8.9163675,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,-9,-9,0,1,1,0,0,6,4,4,1,848,225343.05,51326.859,0,0,0,0,1683.4146 +13668,16678,29753,-9,29752,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3891268,8.3638353,0,0,0,-1090.9358,0,2,2,2021,8,0,55,70,1,0,1,9.2393932,9.2393932,0,0,0,0,0,0,0,0,0,0,0,0,0,61.13,43.2,-9,-9,3.333333333333333,1,1,0,1,5,4,4,1,484,-112210.62,-46287.98,0,0,0,0,1658.4056 +13668,16679,29754,-9,29752,-9,1,1,31,0,0,0,2,2,-9,0,4,7.7808104,8.0303087,0,0,0,-967.43561,0,2,-9,2021,1,0,40,48,1,0,1,7.9512486,7.9512486,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,774,85147.039,0,0,0,0,0,1184.7789 +13669,16680,29755,29756,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,5.9552279,5.910852,10,8,-42.550503,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6643615,61.11,48.86,54.96,53.17,8.333333333333334,1,1,0,0,0,4,3,0,581.5,707296.75,19003.242,0,0,4289.6753,0,1282.9509 +13669,16680,29756,29755,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7036529,7.3686504,0,10,-8,94.656906,0,-9,-9,2021,7,0,30,30,1,0,0,6.1857653,6.1857653,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,61.11,48.86,8.333333333333334,1,1,0,0,9,4,3,0,581.5,707296.75,19003.242,0,0,4289.6753,0,1282.9509 +13670,16681,29757,29759,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,5.9641185,6.2273602,0,9,0,94.736992,0,2,2,2021,6,0,6,31,1,0,0,9.6064634,9.6064634,.05,.05,0,0,0,0,0,7,1,1,0,2.5751741,0,48.28,60.18,38.64,55.03,8.333333333333334,1,1,0,0,7,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13670,16681,29758,-9,29757,29759,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.5443,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13670,16681,29759,29757,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.265646,8.5787678,0,9,0,-10.286288,0,1,1,2021,21,9,42,40,1,9,0,13.118222,13.118222,.05,.05,0,0,0,0,0,2,1,1,0,3.5692911,0,38.64,55.03,48.28,60.18,5,1,1,0,0,9,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13671,16682,29760,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.9933681,7.9402585,0,0,0,-980.18915,0,3,3,2021,10,0,40,40,1,0,0,7.1677642,7.1677642,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,53.24,-9,-9,5,1,1,0,0,12,12,4,0,572,-44032.215,47422.258,0,0,0,446.75967,1412.032 +13672,16683,29761,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.709445,6.120234,0,0,-965.44202,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0868702,5.8424993,42.63,47.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,968,403717.22,62355.961,306475.81,0,0,0,911.29749 +13673,16684,29762,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.0649,0,3,1,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.89,18.68,-9,-9,5,1,1,0,0,0,9,2,0,1605,52846.086,0,0,0,0,0,1480.522 +13673,16685,29763,-9,-9,-9,1,1,19,0,0,0,3,3,-9,0,5,7.9377241,7.7163076,0,0,0,-1131.4414,0,-9,-9,2021,18,5,36,0,1,5,0,6.5884032,6.5884032,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.44,49.63,-9,-9,10,1,1,0,1,1,9,3,0,1305,88814.859,53222.949,0,0,0,0,811.44513 +13674,16686,29764,29765,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0847788,8.4263468,0,7,-1,119.00926,0,-9,-9,2021,10,0,39,40,1,0,0,10.039495,10.039495,.05,.05,0,0,0,0,0,0,0,0,0,3.9404504,0,54.2,57.49,52.05,55.95,8.333333333333334,1,1,0,0,8,4,5,1,678,356599.72,252751.28,326077.78,111164.81,0,0,2852.5696 +13674,16686,29765,29764,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5307503,8.3007946,0,7,1,-41.941662,0,2,1,2021,10,0,43,37,1,0,0,10.734035,10.734035,.05,.05,0,0,0,0,0,0,0,0,0,3.5350404,0,52.05,55.95,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,678,356599.72,252751.28,326077.78,111164.81,0,0,2852.5696 +13675,16687,29766,29767,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7674785,7.7733994,0,12,2,11.207408,0,2,2,2021,13,2,39,50,1,2,0,8.4508467,8.4508467,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.96,49.32,41.55,43.6,0,2,3,0,0,14,5,4,1,1631,106643.42,186695.59,0,0,18525.344,1408.553,3297.1316 +13675,16687,29767,29766,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1392241,8.3641663,0,26,-2,3.0412176,0,3,3,2021,20,8,40,0,1,8,0,10.711257,10.711257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.55,43.6,36.96,49.32,5,4,2,0,1,1,5,4,1,1631,106643.42,186695.59,0,0,18525.344,1408.553,3297.1316 +13675,16688,29768,-9,29767,29766,1,0,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-901.76398,-9,2,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.1,54.56,-9,-9,10,2,3,1,0,0,5,2,1,425,-23496.666,8797.3066,0,0,0,0,0 +13675,16689,29769,-9,29767,29766,1,0,20,0,0,0,2,2,1,0,5,0,0,0,0,0,-918.2099,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,1,0,0,5,1,1,904,-82724.406,0,0,0,0,0,0 +13676,16690,29770,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1051.6287,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.63,58.55,-9,-9,5,1,1,1,1,0,8,1,0,2109,936522.81,36970.324,814179.44,0,0,0,859.27844 +13677,16691,29771,29772,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.4561491,7.3330803,52,0,37.86137,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75478399,7.4471617,53,47,62.01,38.87,1.666666666666667,1,1,0,0,0,5,2,1,346,1867194.6,335820.44,208418.25,0,0,0,2036.2463 +13677,16691,29772,29771,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,0,-44.729507,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5182571,0,62.01,38.87,53,47,10,1,1,0,0,0,5,2,1,346,1867194.6,335820.44,208418.25,0,0,0,2036.2463 +13678,16692,29773,-9,29775,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4673986,8.2888365,0,0,0,-1082.4176,0,3,-9,2021,11,0,39,-9,1,0,0,12.502356,12.502356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,302,-20748.885,-93602.625,0,0,0,0,1891.0601 +13678,16693,29774,-9,29775,-9,1,0,41,0,0,0,2,2,-9,0,4,8.7876816,8.7460833,0,0,0,-885.85785,0,3,-9,2021,11,0,38,38,1,1,0,17.039709,17.039709,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,4,5,1,949,47980.391,-47266.813,158994.72,56609.105,2143.7534,0,2172.8706 +13678,16694,29775,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-971.76917,0,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,115.34223,0,0,1,1,0,0,0,21.31,31.29,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,1026,-81076.125,0,0,0,0,0,1289.5095 +13679,16695,29776,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.7561431,6.8058934,0,0,-1060.7133,0,1,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.99756,7.0829239,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,532,474050.09,474295.81,97822.406,0,0,0,1461.3116 +13680,16696,29777,29778,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.4136372,7.1791816,11,2,15.242532,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3449001,7.6428857,57.16,56.15,51.58,50.6,8.333333333333334,1,1,0,0,0,5,4,1,648.5,1589104.3,623293.75,344224.94,0,0,0,5209.9844 +13680,16696,29778,29777,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,7.8330746,8.2913694,7.5357947,38,-2,-8.3308916,0,-9,2,2021,21,8,16,12,1,8,0,25.238995,25.238995,0,0,0,0,0,0,0,0,1,1,0,7.9542713,7.526454,51.58,50.6,57.16,56.15,8.333333333333334,1,1,0,0,13,5,4,1,648.5,1589104.3,623293.75,344224.94,0,0,0,5209.9844 +13681,16697,29779,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-946.78345,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,21.02566,0,0,1,1,0,0,0,56.18,14.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,320,-44550.703,0,0,0,0,0,621.83978 +13682,16698,29780,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.5792923,7.424078,0,0,0,-960.90601,0,3,3,2021,14,2,4,22,1,2,0,50.978664,50.978664,0,0,0,0,0,0,0,0,0,0,0,0,0,51.85,48.84,-9,-9,8.333333333333334,3,4,0,0,10,8,3,0,428,-79924.242,95042.055,0,0,0,807.82709,213.39388 +13683,16699,29781,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.0142827,7.1215944,0,0,-1072.1664,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,35.493229,0,0,1,1,0,0,6.810092,50.91,16.5,-9,-9,5,1,1,0,0,0,2,3,0,627,339229.47,237649.36,330574.03,0,0,0,1180.6682 +13684,16700,29782,29783,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,9.0140505,9.2181778,0,17,-5,123.25761,0,2,2,2021,5,0,47,37,1,0,0,18.75448,18.75448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.94,58.01,10,1,1,0,0,9,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29783,29782,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,7.6739841,7.8234916,0,18,5,-138.93816,0,2,2,2021,10,0,12,26,1,0,0,23.932148,23.932148,.05,.05,0,0,0,0,0,0,1,1,0,2.8524811,0,49.94,58.01,54.1,59.11,6.666666666666667,1,1,0,0,12,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29784,-9,29782,29783,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.4205,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29785,-9,29782,29783,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.52606,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13685,16701,29786,29788,-9,-9,1,1,25,0,1,0,2,2,-9,0,3,8.1502676,8.0370455,0,4,-2,54.128239,0,-9,-9,2021,5,0,39,39,1,0,0,11.71417,11.71417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.4,39.55,8.333333333333334,1,1,0,0,4,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13685,16701,29787,-9,29788,29786,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.4447,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13685,16701,29788,29786,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.9534473,7.2245607,0,4,2,-102.6418,0,-9,-9,2021,8,1,14,14,1,1,0,10.959292,10.959292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.4,39.55,57.33,53.46,10,1,1,0,0,6,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13686,16702,29789,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.3858566,6.642262,0,0,-1077.4355,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3422737,55,45,-9,-9,8,3,4,0,0,0,4,2,1,889,42727.512,61496.762,38448.727,0,0,-492.45325,830.99646 +13687,16703,29790,-9,29794,29791,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5027,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29791,29794,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,7.068635,7.1285706,0,19,4,39.835129,0,3,3,2021,12,2,60,24,1,2,0,2.2861271,2.2861271,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,50.26,56.2,48.66,8.333333333333334,2,3,0,0,9,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29792,-9,29794,29791,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.1559,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29793,-9,29794,29791,1,0,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.69452,-9,3,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.13,63.25,-9,-9,5,2,3,0,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29794,29791,-9,-9,1,0,37,1,3,0,3,3,-9,0,3,0,0,0,19,-4,-47.476532,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.2,48.66,38.54,50.26,10,2,3,0,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13688,16704,29795,-9,29797,29798,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.13556,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29796,-9,29797,29798,1,0,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.3595,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29797,29798,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,0,0,0,13,-4,-17.281887,0,1,1,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.25,61.25,10,2,3,0,0,1,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29798,29797,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,9.0007553,9.3054686,0,7,4,-73.029152,0,2,1,2021,9,0,40,40,1,0,0,26.763973,26.763973,.05,.05,0,0,0,0,0,0,0,0,0,9.5813227,0,49.25,61.25,59.53,56.44,8.333333333333334,2,3,0,0,9,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13689,16705,29799,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.9086347,6.9970369,0,0,-980.63513,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,17.987976,0,0,1,1,0,1.6310195,6.8790188,53.64,22.54,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,224,125785.3,94511.055,274815.75,0,0,0,1453.7592 +13690,16706,29800,29801,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.0200291,9.0657387,0,5,-6,142.4062,0,-9,-9,2021,13,1,60,57,1,1,0,12.504323,12.504323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,63.65,49.16,8.333333333333334,1,1,0,0,8,7,5,1,964,1087605.8,559574.13,583835.63,248639.91,-1268.6387,0,9955.1426 +13690,16706,29801,29800,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1354713,9.2042503,0,5,6,-6.0714002,0,3,2,2021,8,0,45,45,1,0,0,27.551205,27.551205,.05,.05,0,0,0,0,0,0,0,0,0,8.8289213,0,63.65,49.16,45.81,61.51,8.333333333333334,1,1,0,0,9,7,5,1,964,1087605.8,559574.13,583835.63,248639.91,-1268.6387,0,9955.1426 +13691,16707,29802,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.2082624,8.1351595,0,0,-1013.7775,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4114323,37.47,39.94,-9,-9,5,1,1,0,0,5,11,4,1,881,697252.25,627548.63,24560.469,0,0,0,1919.0386 +13692,16708,29803,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7042246,8.4721031,7.2960472,0,0,-1068.4875,0,-9,-9,2021,11,0,38,39,1,0,0,8.8616362,8.8616362,.05,.05,0,0,0,0,0,0,0,0,0,7.7819824,5.8124623,44.19,58.01,-9,-9,5,1,1,0,0,8,7,4,0,180,130667.81,-30409.908,0,0,0,0,1318.692 +13692,16709,29804,-9,29803,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8530197,8.4267111,0,0,0,-895.54712,0,3,-9,2021,11,0,35,35,1,2,1,8.9998569,8.9998569,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,4,0,82,-14048.194,0,0,0,0,0,1429.4105 +13692,16710,29805,-9,29803,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8788748,7.969573,0,0,0,-926.43774,0,3,-9,2021,10,0,38,35,1,1,1,8.6143427,8.6143427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,4,0,330,-59029.684,3652.0256,0,0,0,0,1136.5756 +13693,16711,29806,29807,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.023572,7.9633918,0,6,26,-9.9589319,0,-9,-9,2021,12,0,8,60,1,0,0,41.542717,41.542717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.49,44.77,50.34,56.4,1.666666666666667,1,1,0,0,9,1,4,0,857.5,214534.61,-13509.563,224223.03,0,4106.6724,0,2635.9312 +13693,16711,29807,29806,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.0509014,7.8993082,0,6,-26,41.17144,0,2,2,2021,22,10,40,40,1,10,0,8.7673435,8.7673435,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,44.49,44.77,6.666666666666667,1,1,0,0,7,1,4,0,857.5,214534.61,-13509.563,224223.03,0,4106.6724,0,2635.9312 +13694,16712,29808,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.4036651,7.3455901,0,0,0,-998.80884,0,-9,-9,2021,7,0,30,18,1,0,0,5.0231352,5.0231352,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,10,12,3,0,207,96398.477,-10936.712,149222.81,0,0,1887.8018,1525.8711 +13694,16713,29809,-9,29808,-9,1,0,20,0,1,0,2,2,-9,0,3,7.3965068,7.5797696,0,0,0,-936.14087,0,2,-9,2021,6,0,30,0,1,0,1,6.9249392,6.9249392,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,132,-13238.941,65758.633,0,0,3579.9844,0,983.95178 +13695,16714,29810,-9,29811,29812,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1178,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29811,29812,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.3499584,8.088747,0,4,-4,103.88872,0,-9,-9,2021,11,0,40,40,1,0,0,9.3436956,9.3436956,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.78,50.88,18.48,54.07,3.333333333333333,2,3,0,0,4,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29812,29811,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.4419165,9.4163761,0,4,4,-106.46546,0,-9,-9,2021,12,0,40,42,1,0,0,43.057114,43.057114,.05,.05,0,0,0,0,0,0,0,0,0,7.8807869,0,18.48,54.07,42.78,50.88,3.333333333333333,2,3,0,0,7,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29813,-9,29811,29812,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.19153,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13696,16715,29814,-9,29815,29816,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.0294,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13696,16715,29815,29816,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,8.3191948,8.3979168,0,11,2,-117.2499,0,1,1,2021,12,3,37,37,1,3,0,11.239829,11.239829,0,0,0,0,0,0,0,0,1,1,0,1.4894974,0,39.05,59.16,25.6,47.78,8.333333333333334,1,1,0,0,10,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13696,16715,29816,29815,-9,-9,1,1,35,1,1,0,1,1,-9,0,2,8.6347055,8.662631,0,11,-2,-59.808712,0,1,1,2021,19,7,38,38,1,7,0,19.215067,19.215067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.6,47.78,39.05,59.16,6.666666666666667,1,1,0,0,12,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13697,16716,29817,29818,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.208004,7.9751325,0,1,-5,-6.171525,-9,-9,-9,2021,6,0,38,0,1,0,0,10.704055,10.704055,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.55,49.25,8.333333333333334,1,1,0,0,14,7,5,1,114.5,929472.63,149461.92,810979.88,0,0,0,10054.988 +13697,16716,29818,29817,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.4807234,9.7002325,8.5655985,1,5,-16.726543,0,3,1,2021,16,6,20,24,1,6,0,75.249008,75.249008,.05,.05,0,0,0,0,0,0,1,1,0,2.8588235,8.9818401,54.55,49.25,54.79,55.86,3.333333333333333,1,1,0,0,14,7,5,1,114.5,929472.63,149461.92,810979.88,0,0,0,10054.988 +13698,16717,29819,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,7.5148692,7.5814605,6.1045861,0,0,-1037.0006,0,-9,-9,2021,3,0,16,16,1,0,0,14.213435,14.213435,.05,.05,0,0,0,0,0,0,1,1,0,5.9677052,0,54.65,27.97,-9,-9,10,1,1,0,0,9,9,3,1,788.5,52458.395,-10533.301,0,0,0,0,2223.3813 +13698,16717,29820,-9,29819,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1031.2511,1,2,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,1,9,3,1,788.5,52458.395,-10533.301,0,0,0,0,2223.3813 +13698,16718,29821,-9,29819,-9,1,0,22,0,0,0,1,1,-9,0,3,7.4022369,7.4037457,0,0,0,-1061.6376,0,2,-9,2021,26,10,25,29,1,10,1,6.7259383,6.7259383,0,0,0,0,0,0,0,7,1,1,0,0,0,42.91,54.71,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,1173,-36706.707,0,0,0,0,0,453.94 +13699,16719,29822,-9,29823,29825,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.7823,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29823,29825,-9,-9,1,0,30,0,2,0,2,2,-9,0,5,8.9708004,8.843524,0,10,-5,102.102,0,2,2,2021,20,7,50,70,1,7,0,15.126409,15.126409,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.58,66.45,57.06,57.76,6.666666666666667,1,1,0,0,7,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29824,-9,29823,29825,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.01898,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29825,29823,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,8.4301043,8.2320061,0,12,5,75.666504,0,1,1,2021,8,0,45,50,1,0,0,10.683905,10.683905,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,20.58,66.45,8.333333333333334,1,1,0,0,7,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13700,16720,29826,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.83149,7.8554263,0,0,0,-1064.9945,0,-9,-9,2021,13,1,37,37,1,1,0,9.1040964,9.1040964,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,1.666666666666667,1,1,0,0,4,11,4,0,3125,49715.016,0,0,0,0,0,1682.9277 +13701,16721,29827,29828,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5457745,8.5814743,0,14,-2,-84.636322,0,-9,-9,2021,5,0,45,45,1,0,0,16.484793,16.484793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,59.15,49.67,8.333333333333334,1,1,0,0,7,1,4,1,378,110344.27,104492.41,137481.84,151436,0,0,3879.2881 +13701,16721,29828,29827,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.297122,8.2416782,0,14,2,19.71397,0,-9,-9,2021,9,0,58,60,1,0,0,7.8554611,7.8554611,.05,.05,0,0,0,0,0,0,1,1,0,6.5898662,0,59.15,49.67,59.53,56.44,8.333333333333334,1,1,0,0,8,1,4,1,378,110344.27,104492.41,137481.84,151436,0,0,3879.2881 +13702,16722,29829,29830,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.6376667,8.6636162,47,-6,15.250237,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9337983,7.7889829,57.16,56.15,46.05,57.22,8.333333333333334,1,1,0,0,6,12,4,1,488.5,1105948.3,563275.88,366537.78,0,0,0,4787.7637 +13702,16722,29830,29829,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.2160835,6.5790515,47,6,3.5824542,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4227591,6.6168866,46.05,57.22,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,488.5,1105948.3,563275.88,366537.78,0,0,0,4787.7637 +13703,16723,29831,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.7113581,10.052668,0,0,0,-1027.1075,-9,2,3,2021,7,0,55,0,1,0,0,32.964272,32.964272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,7,8,5,0,647,810754.81,194441.05,176360.13,43310.359,0,0,3779.4644 +13704,16724,29832,-9,29836,29834,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.80872,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29833,-9,29836,29834,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-931.32324,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29834,29836,-9,-9,1,1,44,0,4,0,3,3,-9,0,4,8.7238026,8.7108679,0,13,5,-108.11262,0,2,3,2021,9,0,40,45,1,1,0,15.744678,15.744678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,59.53,56.44,8,1,1,0,0,1,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29835,-9,29836,29834,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.90271,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29836,29834,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,9.2371616,9.5106773,0,13,-5,125.15105,0,3,1,2021,6,0,38,30,1,0,0,30.185114,30.185114,.05,.05,0,0,0,0,0,0,1,1,0,3.4645994,0,59.53,56.44,52,56,8.333333333333334,1,1,0,0,9,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29837,-9,29836,29834,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.8867,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13705,16725,29838,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.7465944,7.5094485,0,0,0,-891.6181,0,1,1,2021,12,0,25,0,1,0,0,10.391701,10.391701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,10,5,3,0,1736,-22931.174,55155.563,0,0,0,1296.2394,1096.8478 +13706,16726,29839,29840,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2965012,8.4981728,0,6,-2,36.566944,0,3,3,2021,8,0,50,45,1,0,0,9.4429989,9.4429989,.05,.05,0,0,0,0,0,0,0,0,0,3.7682242,0,55.73,53.98,54.79,55.86,8.333333333333334,1,1,0,0,9,1,5,1,373.5,800083.44,751504.88,154647.03,39474.66,0,0,3142.176 +13706,16726,29840,29839,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2067327,8.2247896,0,6,2,140.77182,0,3,3,2021,11,2,32,30,1,2,0,15.107303,15.107303,0,0,0,0,0,0,0,0,0,0,0,3.2383554,0,54.79,55.86,55.73,53.98,8.333333333333334,1,1,0,0,9,1,5,1,373.5,800083.44,751504.88,154647.03,39474.66,0,0,3142.176 +13707,16727,29841,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.8374,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,38.05,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,110,-63587.691,97204.297,28885.326,4601.4038,0,0,616.06378 +13708,16728,29842,29844,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.1797085,8.5020008,0,8,3,38.394032,0,-9,-9,2021,9,0,40,40,1,1,0,14.790904,14.790904,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,57.06,57.76,8,1,1,0,0,1,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13708,16728,29843,-9,29844,29842,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.7228,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13708,16728,29844,29842,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6829104,7.7591958,0,8,-3,-21.43384,0,3,3,2021,9,0,20,20,1,0,0,15.019672,15.019672,0,0,0,0,0,0,0,0,1,1,0,1.3750435,0,57.06,57.76,52,55,1.666666666666667,1,1,0,0,11,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13709,16729,29845,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1049719,8.5857372,0,7,-1,-106.2053,0,3,3,2021,6,0,40,30,1,0,0,10.781037,10.781037,.05,.05,0,0,0,0,0,0,0,0,0,6.8987761,0,57.51,45.08,60.12,54.8,8.333333333333334,1,1,0,0,6,2,5,1,4179,95433.898,271022.59,165204.63,51179.773,6593.543,1592.4985,1831.2091 +13709,16730,29846,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.2876205,8.2179718,0,7,1,86.956741,0,-9,-9,2021,7,0,15,30,1,0,0,30.907307,30.907307,.05,.05,0,0,0,0,0,0,0,0,0,6.685605,0,60.12,54.8,57.51,45.08,10,1,1,0,0,8,2,5,1,676,607636.63,401282.44,291228.88,0,946.29254,657.09717,2181.927 +13710,16731,29847,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9721823,8.2007399,6.5026774,0,0,-1155.9509,0,3,3,2021,11,0,47,37,1,0,0,9.3527718,9.3527718,0,0,0,0,0,0,0,2,0,0,0,6.3938947,7.0532503,54.22,42.37,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,487,660105.38,638705.94,46203.566,0,0,0,1856.1506 +13711,16732,29848,29849,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,8.6730862,8.8707647,0,1,0,53.148357,-9,-9,-9,2021,10,0,48,0,1,1,0,16.597368,16.597368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50,57,35.22,56.72,7,1,1,0,0,1,11,5,1,282,1957370.8,1569934,354712.41,227672.09,0,0,4390.0273 +13711,16732,29849,29848,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.7909269,8.636261,0,1,0,-78.939964,0,2,2,2021,16,4,41,43,1,4,0,14.307004,14.307004,0,0,0,0,0,0,0,0,0,0,0,3.5273702,0,35.22,56.72,50,57,8.333333333333334,1,1,0,0,7,11,5,1,282,1957370.8,1569934,354712.41,227672.09,0,0,4390.0273 +13712,16733,29850,29851,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.4473219,7.4568629,0,6,21,131.17516,0,-9,-9,2021,7,0,12,14,1,0,0,18.051361,18.051361,0,0,0,0,0,0,0,0,1,1,0,4.9171891,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,7,3,1,1460,607583.38,293423.66,177856.61,0,4257.7578,0,1141.3691 +13712,16733,29851,29850,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,6.0599041,6.0750532,6,-21,119.35635,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8491468,0,57.06,57.76,57.16,56.15,10,1,1,0,0,5,7,3,1,1460,607583.38,293423.66,177856.61,0,4257.7578,0,1141.3691 +13713,16734,29852,-9,29853,29854,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-913.28839,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.47,66.09,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13713,16734,29853,29854,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,9.1098089,8.8352757,0,30,1,-65.094795,0,2,2,2021,8,1,65,60,1,1,0,15.245479,15.245479,0,0,0,0,0,0,0,0,1,1,0,0,0,58.6,37.67,53,54,6.666666666666667,1,1,0,0,8,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13713,16734,29854,29853,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.9256907,7.8835425,0,30,-1,77.424988,0,3,2,2021,9,0,45,55,1,1,0,6.2547841,6.2547841,.05,.05,0,0,0,0,0,0,1,1,0,2.3342223,0,53,54,58.6,37.67,8,1,1,0,0,1,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13714,16735,29855,29856,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.8417702,8.3479366,50,-2,-84.044411,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,8.0169716,8.5518236,47.98,48.03,52,52,8.333333333333334,1,1,0,0,9,4,4,1,376,907307.75,658017.75,116310.58,34864.594,0,0,4105.6934 +13714,16735,29856,29855,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.2979217,6.0250154,50,2,-32.209961,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.986907,52,52,47.98,48.03,8.333333333333334,1,1,0,0,7,4,4,1,376,907307.75,658017.75,116310.58,34864.594,0,0,4105.6934 +13715,16736,29857,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.0658908,7.2389784,5.5599232,0,0,-1061.3132,0,3,-9,2021,10,0,16,20,1,0,0,9.1856852,9.1856852,.05,.05,0,0,0,0,0,0,1,1,0,5.3712187,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,2,0,4254,-94030.625,-3910.9875,95125.328,41332.254,5373.4697,977.85034,1616.2134 +13716,16737,29858,-9,29859,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6261,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13716,16737,29859,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,7.1116152,7.0422497,0,0,-1006.1838,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9358592,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,1,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13716,16737,29860,-9,29859,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.1016,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13717,16738,29861,29862,-9,-9,1,1,32,0,0,0,1,1,-9,1,5,0,0,0,5,3,0,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51,59,47,57,1.666666666666667,1,1,1,0,1,6,1,0,586.5,15781.291,17805.844,225764.39,41680.156,0,0,1994.9663 +13717,16738,29862,29861,-9,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,5,-3,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,59,7,1,1,0,0,0,6,1,0,586.5,15781.291,17805.844,225764.39,41680.156,0,0,1994.9663 +13718,16739,29863,29864,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.3451824,7.737071,28,-4,8.34027,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.774847,42.12,39.15,45.17,41.54,1.666666666666667,1,1,0,0,7,6,3,1,635,1027269.8,630256,218168.06,0,0,0,2388.875 +13718,16739,29864,29863,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.0454569,5.5815797,28,4,-23.78302,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6056328,5.6598592,45.17,41.54,42.12,39.15,8.333333333333334,1,1,0,0,0,6,3,1,635,1027269.8,630256,218168.06,0,0,0,2388.875 +13719,16740,29865,-9,29868,29869,1,1,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1142.4139,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29866,-9,29868,29869,1,1,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-973.16302,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29867,-9,29868,29869,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-883.25873,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29868,29869,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,8.0070276,8.2937708,6.1321874,1,8,-15.101865,0,2,2,2021,10,0,24,35,1,0,0,14.031228,14.031228,0,0,0,0,0,0,0,0,1,1,0,6.3298492,0,45.91,59.89,44.81,44.57,10,1,1,0,0,13,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29869,29868,-9,-9,1,1,28,1,4,0,2,2,-9,0,1,7.6694756,7.6586032,0,1,-8,-97.460365,-9,-9,-9,2021,17,4,80,0,1,4,0,3.1572735,3.1572735,0,0,0,0,0,0,0,0,1,1,0,0,0,44.81,44.57,45.91,59.89,6.666666666666667,4,5,0,0,4,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29870,-9,29868,29869,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-995.06671,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13720,16741,29871,29873,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.4870834,8.2999439,0,12,2,101.15584,0,2,2,2021,26,10,40,40,1,10,0,14.332483,14.332483,.05,.05,0,0,0,0,0,7,1,1,0,6.8870254,0,27.9,62.98,28.84,38.44,3.333333333333333,1,1,0,0,13,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13720,16741,29872,-9,29873,29871,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.7109,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13720,16741,29873,29871,-9,-9,1,0,52,0,1,0,1,1,-9,0,1,8.1329546,8.4589624,0,12,-2,-5.5653148,0,2,2,2021,34,12,69,42,1,12,0,6.663754,6.663754,0,0,0,0,0,0,0,2,1,1,0,4.2511435,0,28.84,38.44,27.9,62.98,3.333333333333333,1,1,0,0,13,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13721,16742,29874,29875,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,6.2764053,6.5896668,37,16,-64.259949,0,2,2,2021,22,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7428327,6.3981371,40.62,18.3,46.56,57.02,0,3,4,0,0,0,8,3,1,719.5,1415074.3,810085.38,550390,0,0,0,2767.8896 +13721,16742,29875,29874,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.4969783,8.015274,6.8483305,37,-16,59.83387,0,3,3,2021,7,1,16,16,1,1,0,14.461921,14.461921,0,0,0,0,0,0,0,0,1,1,0,0,7.0208478,46.56,57.02,40.62,18.3,8.333333333333334,3,4,0,0,9,8,3,1,719.5,1415074.3,810085.38,550390,0,0,0,2767.8896 +13721,16743,29876,-9,29875,29874,1,1,26,0,0,0,2,2,-9,1,3,6.0793028,6.3139663,0,0,0,-950.03082,0,1,3,2021,7,0,8,8,1,0,1,7.952642,7.952642,0,0,0,0,0,0,0,0,1,1,0,.25989068,0,49.18,46.58,-9,-9,5,3,4,0,0,3,8,2,1,355,33629.523,0,0,0,0,0,554.72119 +13721,16744,29877,-9,29875,29874,1,1,50,0,0,0,2,2,-9,0,5,7.7095895,7.9228196,0,0,0,-1084.835,0,1,3,2021,8,1,40,20,1,1,1,6.5226879,6.5226879,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.47,57.49,-9,-9,6.666666666666667,3,4,0,0,3,8,3,1,244,483789.31,41636.906,408331.31,-10151.901,0,0,1586.8442 +13722,16745,29878,29879,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.2402821,8.5018291,0,8,-3,-65.525314,-9,2,3,2021,6,0,26,0,1,0,0,20.255327,20.255327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29879,29878,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.0946989,8.4065075,0,8,3,-87.59893,-9,2,2,2021,8,0,57,0,1,0,0,15.812403,15.812403,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29880,-9,29878,29879,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.34619,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29881,-9,29878,29879,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1063.589,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29882,-9,29878,29879,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.73798,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13723,16746,29883,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9735222,5.9595065,0,0,-962.2597,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2731571,6.1228509,65.64,18.73,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,690,394781.47,68379.273,190937.58,0,0,0,1287.6975 +13724,16747,29884,29885,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2717924,8.2957716,0,41,3,-119.85842,0,2,2,2021,9,1,40,40,1,1,0,14.505836,14.505836,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,2,4,1,738,2338889.5,2180829,132887.69,0,-551.04871,0,2476.3901 +13724,16747,29885,29884,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.2333364,7.4905138,0,40,-3,-34.520103,0,3,2,2021,9,0,28,29,1,0,0,9.5040932,9.5040932,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,45.49,58.84,8.333333333333334,1,1,0,0,8,2,4,1,738,2338889.5,2180829,132887.69,0,-551.04871,0,2476.3901 +13724,16748,29886,-9,29885,29884,1,1,34,0,0,0,2,2,-9,0,4,7.6903133,7.6770573,0,0,0,-921.77106,0,2,1,2021,11,0,34,40,1,0,1,8.6813059,8.6813059,0,0,0,0,0,0,0,0,0,0,0,1.0893427,0,38.34,62.12,-9,-9,1.666666666666667,1,1,0,0,5,2,3,1,640,-210953.84,0,0,0,0,0,1136.5815 +13725,16749,29887,29888,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.5562224,7.3891921,0,30,1,25.146749,0,3,3,2021,15,4,12,50,1,4,0,12.961484,12.961484,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,30.67,60.6,43.75,5,1,1,0,0,9,7,3,1,511,202355.27,-69178.359,417846.34,26321.482,0,0,1223.8989 +13725,16749,29888,29887,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.0761409,6.9630733,0,31,-1,8.1952,0,2,2,2021,9,0,45,45,1,0,0,3.8142068,3.8142068,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,43.75,55.02,30.67,8.333333333333334,1,1,0,0,9,7,3,1,511,202355.27,-69178.359,417846.34,26321.482,0,0,1223.8989 +13725,16750,29889,-9,29887,29888,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-976.89343,1,1,1,2021,20,8,0,37,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.52,48.67,-9,-9,6.666666666666667,1,1,0,0,9,7,1,1,1117,308063.25,0,0,0,0,0,-108.97079 +13725,16751,29890,-9,29887,29888,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1105.821,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6100399,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,498,0,0,0,0,0,0,256.27365 +13726,16752,29891,29893,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,6.7649555,7.0985284,0,13,0,116.30655,0,2,3,2021,11,0,13,7,1,0,0,7.5348406,7.5348406,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,59.07,47.62,56.48,8.333333333333334,1,1,0,0,6,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29892,-9,29891,29893,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.18744,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29893,29891,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,9.7057352,9.4018497,0,8,0,32.296936,0,2,2,2021,11,1,50,45,1,1,0,39.44635,39.44635,.05,.05,0,0,0,0,0,0,0,0,0,3.9428058,0,47.62,56.48,44.91,59.07,6.666666666666667,1,1,0,0,11,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29894,-9,29891,29893,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.40228,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13727,16753,29895,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.221971,7.0696502,0,0,-887.53992,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0673141,6.7867227,13.11,65.94,-9,-9,0,1,1,0,0,10,7,2,1,733,465510.91,246371.73,440033.56,0,0,0,931.06403 +13728,16754,29896,29897,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,0,0,0,13,-1,0,0,-9,-9,2021,6,0,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,39.48,58.54,10,1,1,1,1,10,1,1,1,626.5,0,0,0,0,0,0,0 +13728,16754,29897,29896,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,25,1,0,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.48,58.54,62.27,48.47,3.333333333333333,1,1,1,0,13,1,1,1,626.5,0,0,0,0,0,0,0 +13729,16755,29898,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.0890036,8.6291304,6.6862407,0,0,-989.77783,-9,3,1,2021,8,0,20,0,1,0,0,18.906816,18.906816,.05,.05,0,0,0,0,0,0,1,1,0,7.6056566,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,1733,169447.89,214739.66,224418.48,214600.19,2225.6206,0,1991.0181 +13730,16756,29899,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.5366545,6.6794925,0,0,-1008.2957,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3363829,5.4537911,54,44,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,578,-5965.0391,-40509.137,0,0,0,0,2052.3586 +13731,16757,29900,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.6461964,7.5824971,0,0,-899.23566,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7784715,7.6958375,45.91,55.94,-9,-9,10,1,1,0,0,0,4,3,1,569,211320.75,152359.48,220428.95,0,0,0,1838.0178 +13732,16758,29901,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1044.7267,-9,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.48,37.81,-9,-9,10,4,2,0,0,0,7,1,1,1064,-5222.8779,0,0,0,0,0,254.79298 +13733,16759,29902,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1197.8058,0,3,3,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,0,8.2033386,0,0,1,1,0,0,0,17.48,26.15,-9,-9,0,2,3,0,1,0,6,1,1,763,216269.61,0,0,0,0,0,1317.7664 +13733,16760,29903,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.7585011,8.0531769,0,0,0,-1076.7115,0,-9,-9,2021,22,10,36,0,1,10,0,7.4794846,7.4794846,0,0,0,0,0,0,0,0,1,1,0,0,0,32.1,52.67,-9,-9,1.666666666666667,2,3,0,0,5,6,3,1,414,233069.39,0,0,0,0,0,1240.6378 +13734,16761,29904,29905,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.1267176,8.0154238,6.6820869,5,-4,-21.500101,0,3,3,2021,6,0,49,49,1,0,0,8.1658983,8.1658983,0,0,0,0,0,0,0,0,1,1,0,6.6816373,6.3103628,59.43,58.05,38.34,62.12,8.333333333333334,1,1,0,0,7,7,4,1,1984,125026.66,0,0,0,0,0,3219.9775 +13734,16761,29905,29904,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7873335,7.9083681,0,5,4,17.083717,0,2,1,2021,13,3,34,36,1,3,0,9.2645063,9.2645063,0,0,0,0,0,0,0,7,1,1,0,3.6515613,0,38.34,62.12,59.43,58.05,3.333333333333333,1,1,0,0,7,7,4,1,1984,125026.66,0,0,0,0,0,3219.9775 +13735,16762,29906,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-997.49042,-9,-9,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.97,56.54,-9,-9,5,1,1,0,1,0,7,1,0,289,151422.02,0,0,0,0,0,555.62701 +13736,16763,29907,-9,29909,29908,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.84406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13736,16763,29908,29909,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.5521717,8.404851,0,12,5,-42.132244,0,-9,-9,2021,12,0,35,38,1,0,0,14.527169,14.527169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.79,55.65,37.28,55.9,8.333333333333334,1,1,0,0,13,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13736,16763,29909,29908,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.6324735,8.0297461,0,12,-5,38.722347,0,2,2,2021,12,0,30,30,1,0,0,9.1021824,9.1021824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.28,55.9,37.79,55.65,8.333333333333334,1,1,0,0,12,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13737,16764,29910,29911,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.6336594,6.7000155,0,11,-2,54.740288,0,1,2,2021,12,0,15,0,1,0,0,5.4767385,5.4767385,.05,.05,0,0,0,0,0,0,0,0,0,8.6042757,0,46.1,59.99,44.19,58.01,8.333333333333334,1,1,0,0,4,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29911,29910,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.4041271,9.234437,0,11,2,-2.3594308,0,3,3,2021,14,1,45,77,1,1,0,33.197113,33.197113,.05,.05,.05,0,0,0,0,0,0,0,0,7.8760257,0,44.19,58.01,46.1,59.99,6.666666666666667,1,1,0,0,12,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29912,-9,29910,29911,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.36871,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29913,-9,29910,29911,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.03979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.87710941,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13738,16765,29914,-9,29916,29917,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-987.15137,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.2,52.31,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,933,164539.67,0,0,0,4114.0098,0,690.43372 +13738,16766,29915,-9,29916,29917,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.93195,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13738,16766,29916,29917,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.5468044,8.5250254,0,8,-4,37.478722,0,-9,-9,2021,6,0,35,37,1,0,0,17.719496,17.719496,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,46.9,36.8,8.333333333333334,1,1,0,0,11,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13738,16766,29917,29916,-9,-9,1,1,50,0,1,0,2,2,-9,1,2,8.1172285,8.2031326,0,8,4,-28.968693,0,-9,-9,2021,10,1,57,56,1,1,0,5.5236702,5.5236702,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.9,36.8,57.33,53.46,5,4,2,0,0,13,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13739,16767,29918,29919,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,6.5339956,6.6661491,0,42,0,42.258369,0,2,-9,2021,11,0,15,15,1,0,0,5.8226414,5.8226414,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,51,58.15,52.91,5,1,1,0,0,10,8,4,1,963.5,921329.25,365082.25,232885.06,0,0,0,2107.3906 +13739,16767,29919,29918,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3742685,8.15413,0,42,0,-3.1916399,0,2,-9,2021,7,0,35,45,1,0,0,11.699784,11.699784,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.42,51,6.666666666666667,1,1,0,0,10,8,4,1,963.5,921329.25,365082.25,232885.06,0,0,0,2107.3906 +13739,16768,29920,-9,29918,29919,1,1,30,0,0,0,1,1,-9,1,5,0,0,0,0,0,-1085.1677,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,1,0,4,8,1,1,2266,0,0,0,0,0,0,1047.052 +13739,16769,29921,-9,29918,29919,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1008.5088,0,2,2,2021,11,0,0,45,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,1,0,0,8,1,1,413,4692.5356,0,0,0,0,0,21.995089 +13740,16770,29922,29923,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,25,-14,0,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,49.26,34.67,53.73,30.88,5,1,1,0,0,0,4,1,0,602.5,-23656.973,-25935.164,56076.391,0,0,0,1823.6492 +13740,16770,29923,29922,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,13,14,0,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.73,30.88,49.26,34.67,6.666666666666667,1,1,0,0,0,4,1,0,602.5,-23656.973,-25935.164,56076.391,0,0,0,1823.6492 +13741,16771,29924,-9,29926,29925,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.67114,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29925,29926,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.1469636,7.1368551,0,12,11,37.864628,0,2,1,2021,6,0,24,24,1,0,0,5.6035833,5.6035833,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,8.333333333333334,3,4,0,0,5,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29926,29925,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,12,-11,-27.532206,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.29,52.11,57.33,53.46,10,3,4,0,0,3,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29927,-9,29926,29925,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.1304,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13742,16772,29928,-9,29929,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.43256,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13742,16772,29929,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,8.5832739,8.7105522,0,0,0,-947.6662,0,-9,-9,2021,25,10,45,39,1,10,0,11.565033,11.565033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.85,64.06,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13742,16772,29930,-9,29929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.2416,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13743,16773,29931,29932,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.176919,8.2078009,0,3,-1,4.3854156,-9,-9,-9,2021,12,0,43,0,1,0,0,8.8820734,8.8820734,0,0,0,0,0,0,0,0,0,0,0,0,0,56.86,50.75,51.83,57.2,8.333333333333334,1,1,0,0,4,2,5,1,176,114351.27,148546.63,0,0,5584.998,0,3670.2603 +13743,16773,29932,29931,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.8278685,8.9060431,0,3,1,-102.00697,0,2,1,2021,8,1,47,37,1,1,0,23.072449,23.072449,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,56.86,50.75,10,1,1,0,0,5,2,5,1,176,114351.27,148546.63,0,0,5584.998,0,3670.2603 +13743,16774,29933,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1078386,8.2578201,0,0,0,-1036.4845,0,-9,-9,2021,2,0,44,40,1,0,0,9.4788723,9.4788723,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,787,31542.42,0,0,0,0,0,1285.8489 +13744,16775,29934,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1069.8916,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.37,51.39,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1020,50738.781,0,0,0,0,0,1192.4454 +13745,16776,29935,29936,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2601295,7.3357792,53,3,-48.984699,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5375481,51.42,42.58,60.27,49.27,8.333333333333334,1,1,0,0,0,5,3,1,2225.5,847020.75,448253.69,311631.13,0,0,0,2105.0686 +13745,16776,29936,29935,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8623495,6.5471921,53,-3,121.80945,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8419333,60.27,49.27,51.42,42.58,8.333333333333334,1,1,0,0,0,5,3,1,2225.5,847020.75,448253.69,311631.13,0,0,0,2105.0686 +13746,16777,29937,29938,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.8643923,8.9404478,0,12,3,21.521782,0,-9,-9,2021,8,0,10,50,1,0,0,82.258705,82.258705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.25,55.03,41.06,62.04,8.333333333333334,1,1,0,0,14,9,5,1,521,181498.16,103666.3,0,0,0,0,7143.1953 +13746,16777,29938,29937,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.3968077,9.434864,0,12,-3,38.238464,0,1,1,2021,16,4,46,44,1,4,0,30.045691,30.045691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,44.25,55.03,5,1,1,0,0,14,9,5,1,521,181498.16,103666.3,0,0,0,0,7143.1953 +13747,16778,29939,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.2195463,8.1302643,1.9630305,0,0,-968.37909,0,3,3,2021,12,1,38,39,1,1,0,12.214757,12.214757,.05,.05,0,0,0,0,0,0,0,0,0,0,2.4616189,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,2151,114410.67,64820.445,79917.664,21782.955,0,0,1213.5924 +13747,16779,29940,-9,-9,29939,1,1,32,0,0,0,2,2,-9,0,3,7.9381418,8.2263699,0,0,0,-932.59326,0,-9,3,2021,17,5,39,39,1,5,1,8.2770081,8.2770081,0,0,0,0,0,0,0,0,0,0,0,0,0,37.11,55.92,-9,-9,5,1,1,0,0,12,2,4,1,721,287684.81,0,0,0,0,0,1602.2911 +13748,16780,29941,29942,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,7.0635281,6.9798155,0,21,-8,40.747276,0,2,2,2021,13,1,17,17,1,1,0,10.103551,10.103551,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,32.82,48.76,53.24,5,1,1,0,0,12,2,3,1,996.5,310233.56,244049.58,44977.961,22865.537,1881.5107,0,2033.8647 +13748,16780,29942,29941,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.0257139,7.8986316,0,21,8,97.164825,0,2,2,2021,16,4,40,44,1,4,0,9.4844246,9.4844246,.05,.05,0,0,0,0,0,0,1,1,0,.91525578,0,48.76,53.24,44.41,32.82,5,1,1,0,0,12,2,3,1,996.5,310233.56,244049.58,44977.961,22865.537,1881.5107,0,2033.8647 +13749,16781,29943,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9415097,6.9602356,0,0,-1096.5582,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2567964,7.1526217,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,6,4,2,1,78,170698.52,235256.19,0,0,0,0,997.63849 +13750,16782,29944,29945,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,42,0,85.769928,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,50.51,26.92,8.333333333333334,1,1,0,0,0,6,2,1,1020.5,459228.81,163121.64,155193.34,0,0,0,1680.5001 +13750,16782,29945,29944,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.2616296,6.1238995,42,0,-154.62471,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,8.6937971,0,0,1,1,0,1.0059375,6.1335869,50.51,26.92,56.1,49.93,8.333333333333334,1,1,0,0,0,6,2,1,1020.5,459228.81,163121.64,155193.34,0,0,0,1680.5001 +13751,16783,29946,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,8.3317471,8.5047083,5.989738,0,0,-942.21313,0,1,2,2021,10,0,17,17,1,0,0,26.768,26.768,.05,.05,0,0,0,0,0,14.5,1,1,0,5.7079072,0,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,12,13,4,0,131,136896.88,190315.95,0,0,5159.562,0,2680.3013 +13752,16784,29947,29948,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0749102,7.907434,0,16,-1,146.74594,0,3,3,2021,6,0,21,36,1,0,0,15.502165,15.502165,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.09,55.87,6.666666666666667,4,5,0,0,6,8,3,1,878.5,2009623.3,1158703,758877.06,0,5284.2681,0,1556.1469 +13752,16784,29948,29947,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.2011819,7.0757799,0,16,1,-23.801777,0,-9,-9,2021,10,0,9,13,1,0,0,17.012407,17.012407,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,60.12,54.8,8.333333333333334,1,1,0,0,9,8,3,1,878.5,2009623.3,1158703,758877.06,0,5284.2681,0,1556.1469 +13752,16785,29949,-9,29948,29947,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-970.09198,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,8,1,1,344,86966.703,0,0,0,0,0,941.3006 +13752,16786,29950,-9,29948,29947,1,1,29,0,0,0,2,2,-9,0,4,7.3880148,7.4404182,0,0,0,-1114.941,0,2,1,2021,10,0,35,35,1,1,1,4.5920434,4.5920434,0,0,0,0,0,0,0,0,1,1,0,1.4851882,0,49,58,-9,-9,7,4,5,0,0,1,8,3,1,364,-10732.718,0,0,0,0,0,702.94403 +13753,16787,29951,29952,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5138321,7.5263214,0,16,0,-20.67754,-9,2,2,2021,9,1,27,0,1,1,0,7.2431912,7.2431912,.05,.05,0,0,0,0,0,0,1,1,0,.23831478,0,61.01,53.18,50,56,1.666666666666667,2,3,0,0,9,4,3,1,498.5,163184.55,36712.34,186095.5,46964.383,5295.5674,0,2807.9087 +13753,16787,29952,29951,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1126556,8.1243296,0,16,0,73.935181,0,2,2,2021,10,0,37,40,1,1,0,12.558726,12.558726,.05,.05,.05,0,0,0,0,0,1,1,0,4.0343814,0,50,56,61.01,53.18,7,2,3,0,0,12,4,3,1,498.5,163184.55,36712.34,186095.5,46964.383,5295.5674,0,2807.9087 +13754,16788,29953,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,5.1961017,5.2406702,0,0,-1024.1815,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.6632035,25.601078,18.798449,0,1,1,0,0,5.2503266,58.35,15.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,331,84349.07,-37115.375,0,0,0,0,808.01221 +13755,16789,29954,29955,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.0756807,7.8638196,49,-1,58.762768,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,6.3729582,7.9919696,56.52,45.61,57.93,46.29,6.666666666666667,1,1,0,0,0,8,4,1,673.5,2858348.3,981312,633927.25,0,0,0,5008.7939 +13755,16789,29955,29954,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,8.0314293,8.0652218,49,1,-43.345161,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9010758,8.4561253,57.93,46.29,56.52,45.61,10,1,1,0,0,0,8,4,1,673.5,2858348.3,981312,633927.25,0,0,0,5008.7939 +13756,16790,29956,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,8.2499838,8.1560364,0,0,0,-938.29675,0,-9,-9,2021,10,0,43,40,1,0,0,9.5573673,9.5573673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,904,185989.58,114115.27,0,0,0,0,514.31012 +13757,16791,29957,29958,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.375217,6.1915689,63,-1,19.165176,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.63648158,6.7657866,40.21,25.75,60.05,26.59,5,1,1,0,0,0,12,2,0,941,134589.66,-5068.8164,87932.75,0,0,0,2208.833 +13757,16791,29958,29957,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.4047136,4.2127447,63,1,-3.4320548,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1954484,4.407033,60.05,26.59,40.21,25.75,8.333333333333334,1,1,0,0,0,12,2,0,941,134589.66,-5068.8164,87932.75,0,0,0,2208.833 +13758,16792,29959,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.4288464,8.7786341,0,0,0,-1168.4641,0,2,2,2021,6,0,45,46,1,0,0,17.240091,17.240091,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.38,49.11,-9,-9,6.666666666666667,1,1,0,0,9,12,5,0,1791,114336.89,116874.73,131546.81,76866.93,6031.6519,1715.3186,2125.5232 +13759,16793,29960,29961,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,10,-2,15.712057,0,3,1,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,0,1,1.2328091,0,22.55,52.62,33.42,56.72,0,1,1,0,0,9,9,3,1,1397,1841012.5,208743.66,866930,0,0,0,2600.3542 +13759,16793,29961,29960,-9,-9,1,1,54,0,0,0,1,1,-9,1,2,0,8.0130262,7.8798089,10,2,-17.730858,0,2,1,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,120,1,0,1,9.1827383,0,33.42,56.72,22.55,52.62,3.333333333333333,1,1,0,1,9,9,3,1,1397,1841012.5,208743.66,866930,0,0,0,2600.3542 +13759,16794,29962,-9,29960,29961,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-857.30579,0,2,1,2021,8,0,0,8,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,274,160312.89,0,0,0,0,0,0 +13759,16795,29963,-9,29960,29961,1,0,18,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1060.9038,-9,2,1,2021,19,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.12,18.4,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,335,96489.828,0,0,0,0,0,874.16266 +13760,16796,29964,29965,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.0689507,9.188982,0,11,-4,63.211411,-9,-9,-9,2021,12,0,45,0,1,0,0,23.776701,23.776701,0,0,0,0,0,0,0,2,0,0,0,0,0,49.04,55.86,38.38,50.07,8.333333333333334,1,1,0,0,12,12,5,1,766.5,2102895,1834351.3,320003.78,139355.16,49589.773,13611.021,6921.9385 +13760,16796,29965,29964,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.5449238,9.6215878,0,11,4,-62.205166,0,1,1,2021,14,2,45,45,1,2,0,27.515894,27.515894,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.38,50.07,49.04,55.86,6.666666666666667,1,1,0,0,11,12,5,1,766.5,2102895,1834351.3,320003.78,139355.16,49589.773,13611.021,6921.9385 +13761,16797,29966,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.6322608,6.5638824,0,0,-959.09503,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.7783566,5.992661,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,14,6,2,1,33,759445.69,537646.94,0,0,0,0,866.62225 +13762,16798,29967,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,8.8472109,9.0526714,0,0,-1031.1621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6488295,9.1901493,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,303,1335368.5,590354.5,630946.69,0,0,0,6081.3599 +13763,16799,29968,29970,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.5835276,9.2411804,0,7,-2,14.514889,0,2,2,2021,9,1,45,50,1,1,0,37.126358,37.126358,.05,.05,0,0,0,0,0,0,1,1,0,2.130862,0,48.87,58.55,38.51,59.43,8.333333333333334,1,1,0,1,8,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29969,-9,29970,29968,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1089.6244,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29970,29968,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.7303743,8.555727,0,7,2,6.310761,0,2,2,2021,16,4,52,52,1,4,0,14.216906,14.216906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,48.87,58.55,6.666666666666667,1,1,0,0,8,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29971,-9,29970,29968,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1051.1079,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16800,29972,-9,29970,29968,1,0,19,0,2,0,2,2,0,0,3,0,0,0,0,0,-952.90112,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,430,0,0,0,0,0,0,792.84998 +13764,16801,29973,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.8026395,7.6687589,0,0,0,-893.05621,0,-9,-9,2021,9,2,38,38,1,2,0,6.5897002,6.5897002,0,0,0,0,0,0,0,0,0,0,0,0,0,39.19,51.25,-9,-9,10,1,1,0,0,3,9,3,0,375,-152199.61,0,0,0,0,0,222.4328 +13765,16802,29974,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9403033,8.0019989,0,0,0,-1089.0883,0,3,3,2021,11,0,38,38,1,0,0,9.0918026,9.0918026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,14,13,3,1,789.5,1423922.8,1254793.5,110446.63,0,2951.4717,0,1435.7362 +13765,16802,29975,-9,29974,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.46783,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,789.5,1423922.8,1254793.5,110446.63,0,2951.4717,0,1435.7362 +13766,16803,29976,29977,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.5044622,6.537375,12,3,-92.666557,0,-9,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,62.651749,0,0,1,1,0,2.6364553,6.641336,26.54,21.77,28.62,21.06,1.666666666666667,1,1,0,0,9,11,2,1,2378.5,309637.53,229025.13,109965.48,0,0,0,2796.877 +13766,16803,29977,29976,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,12,-3,-11.9434,0,-9,-9,2021,20,7,0,15,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,28.62,21.06,26.54,21.77,3.333333333333333,1,1,0,0,13,11,2,1,2378.5,309637.53,229025.13,109965.48,0,0,0,2796.877 +13767,16804,29978,29979,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4017963,8.2053242,0,6,0,-21.464006,0,3,3,2021,6,0,38,38,1,0,0,12.667678,12.667678,.05,.05,0,0,0,0,0,0,0,0,0,6.3654943,0,44.7,48.48,54,54,6.666666666666667,1,1,0,0,7,12,4,1,1795,676485.88,669070.56,192902.13,11761.114,0,0,2619.3872 +13767,16804,29979,29978,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.715414,8.0139513,5.305481,6,0,-96.73304,0,3,3,2021,10,0,37,37,1,0,0,8.5900326,8.5900326,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8444257,54,54,44.7,48.48,10,1,1,0,0,7,12,4,1,1795,676485.88,669070.56,192902.13,11761.114,0,0,2619.3872 +13768,16805,29980,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,0,0,-996.5415,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.44,35.92,-9,-9,5,3,4,0,0,6,8,1,0,1668,113477.02,0,0,0,0,0,718.64685 +13768,16806,29981,-9,29980,-9,1,0,25,0,0,0,2,2,-9,0,3,7.1485047,7.4173074,0,0,0,-942.16382,0,1,-9,2021,12,0,20,16,1,0,0,7.3630266,7.3630266,0,0,0,0,0,0,0,0,1,1,0,3.484951,0,23.95,56.72,-9,-9,6.666666666666667,3,4,0,0,1,8,3,0,1325,246244.97,0,0,0,0,0,839.03516 +13769,16807,29982,29983,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8149967,8.7405481,0,25,1,-36.938129,0,-9,-9,2021,6,0,40,44,1,0,0,20.524569,20.524569,.05,.05,0,0,0,0,0,7,0,0,0,7.5597563,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,11,2,5,1,747.5,1156882.3,672883.5,217850.92,0,0,0,6407.9131 +13769,16807,29983,29982,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.9234838,9.0673685,0,24,-1,-89.40934,0,3,2,2021,11,0,40,45,1,0,0,29.009941,29.009941,.05,.05,0,0,0,0,0,7,0,0,0,7.9014139,0,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,747.5,1156882.3,672883.5,217850.92,0,0,0,6407.9131 +13769,16808,29984,-9,29983,29982,1,1,21,0,0,0,1,1,1,0,5,8.108079,8.4167547,0,0,0,-1007.5981,-9,1,2,2021,5,0,40,0,1,0,1,11.127627,11.127627,.05,.05,0,0,0,0,0,0,0,0,0,1.1072559,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,546,50388.82,-150245.3,0,0,0,0,1512.3827 +13769,16809,29985,-9,29983,29982,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1036.0083,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,10,1,1,0,0,2,2,1,1,460,129423.38,0,0,0,0,2491.4316,0 +13770,16810,29986,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5138235,8.2281113,0,0,0,-895.16656,0,1,1,2021,6,1,42,44,1,1,0,12.938694,12.938694,0,0,0,0,0,0,0,0,0,0,0,3.99283,0,63.95,51.85,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,176,112071.77,22243.418,0,0,0,0,1894.7312 +13771,16811,29987,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7706847,7.8453989,0,0,0,-1005.4611,0,3,2,2021,9,0,35,35,1,0,0,9.9092674,9.9092674,0,0,0,0,0,0,0,2,0,0,0,0,0,44.36,54.04,-9,-9,5,1,1,0,0,11,11,4,1,306,0,0,0,0,0,0,654.97583 +13772,16812,29988,29989,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.7534361,8.6225224,0,36,0,16.881899,0,3,1,2021,12,1,52,45,1,1,0,13.284031,13.284031,0,0,0,0,0,0,0,0,1,1,0,.64016151,0,45.32,53.5,53,47,6.666666666666667,4,5,0,0,11,10,4,1,1190,3315634.5,810681.38,653879.38,0,0,0,3282.5059 +13772,16812,29989,29988,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,46,9,85.354073,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7193496,0,53,47,45.32,53.5,8,4,5,0,0,0,10,4,1,1190,3315634.5,810681.38,653879.38,0,0,0,3282.5059 +13773,16813,29990,29991,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.3241262,7.2030745,0,12,-2,-91.151772,0,-9,-9,2021,12,2,42,30,1,2,0,3.8658047,3.8658047,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.41,61.92,39.34,49.42,6.666666666666667,1,1,0,0,11,5,4,1,961.5,-3288.9824,-30060.563,99034.078,52613.469,0,0,2646.0396 +13773,16813,29991,29990,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2931242,8.235219,0,12,2,136.67296,0,1,2,2021,19,8,38,38,1,8,0,10.287904,10.287904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.34,49.42,30.41,61.92,3.333333333333333,1,1,0,0,12,5,4,1,961.5,-3288.9824,-30060.563,99034.078,52613.469,0,0,2646.0396 +13774,16814,29992,29993,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.2717009,8.2435579,0,7,-7,-102.77876,0,1,1,2021,9,0,24,24,1,0,0,15.064447,15.064447,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,36.25,52.6,52.88,8.333333333333334,1,1,0,0,7,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13774,16814,29993,29992,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,0,0,0,7,7,-49.519573,0,2,2,2021,12,0,37,40,1,0,0,.00054775359,.00054775359,.05,.05,0,0,0,0,0,0,0,0,0,8.6332293,0,52.6,52.88,59.46,36.25,8.333333333333334,1,1,0,0,8,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13774,16814,29994,-9,29992,29993,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.321,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13775,16815,29995,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,1,0,5.659606,5.5348487,0,0,-945.13757,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8400917,0,45.41,10.82,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16815,29996,-9,29995,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.9472,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16815,29997,-9,29995,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.6788,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16816,29998,-9,29995,-9,1,1,18,0,2,1,2,0,0,1,3,0,0,0,0,0,-974.96515,-9,2,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,53.15,-9,-9,10,1,1,0,0,0,4,1,0,225,308368.63,0,0,0,2587.4355,0,-405.50455 +13776,16817,29999,-9,30002,30001,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-825.82953,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30000,-9,30002,30001,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.46033,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30001,30002,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3107662,8.950778,0,6,2,-112.84958,0,-9,-9,2021,9,0,37,40,1,1,0,37.83461,37.83461,.05,.05,.05,0,0,0,0,0,0,0,0,.90195304,0,52,55,52,54.51,7,1,1,0,0,1,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30002,30001,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.8814311,6.855361,0,20,-2,21.943499,0,2,3,2021,11,0,20,20,1,0,0,5.2501931,5.2501931,0,0,.05,0,0,0,0,0,0,0,0,5.1065202,0,52,54.51,52,55,8.333333333333334,1,1,0,0,4,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13777,16818,30003,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1154.1793,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,51.04,-9,-9,3.333333333333333,1,1,1,1,4,1,1,1,1034,25437.912,-47755.016,0,0,0,0,0 +13778,16819,30004,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.7389407,8.022048,6.2144365,0,0,-1103.8938,0,3,2,2021,10,0,35,35,1,0,0,8.9455109,8.9455109,0,0,0,0,0,0,0,0,1,1,0,1.4520588,6.2096658,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,390,63742.055,-62105.555,0,0,0,2447.0806,2566.9666 +13779,16820,30005,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1071.5723,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,14.89,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,965,60685.68,0,214248.73,0,0,0,714.40509 +13780,16821,30006,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.5724,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.62,37.27,-9,-9,10,1,1,0,0,5,4,1,1,308,-71631.102,0,0,0,0,0,1370.0913 +13781,16822,30007,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,3,0,0,0,0,0,-912.02039,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,-9,-9,5,1,1,0,0,0,4,1,0,558,0,0,0,0,0,0,1034.9915 +13782,16823,30008,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,0,9.1123657,9.139801,0,0,-997.86621,0,3,2,2021,25,11,0,38,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.0184708,0,7.99,62.46,-9,-9,3.333333333333333,4,5,1,0,6,8,5,1,476,508329.5,56826.875,281920.22,70143.906,0,0,4564.4927 +13783,16824,30009,30010,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.133234,4.8821011,10,8,119.72672,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7837977,5.3617883,60.29,52.11,41.44,19.03,8.333333333333334,1,1,0,0,4,12,2,0,2281,368241.88,131904.84,194087,0,0,0,1812.8484 +13783,16824,30010,30009,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,-8,-53.008003,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,15.720805,0,0,1,1,0,0,0,41.44,19.03,60.29,52.11,8.333333333333334,1,1,0,0,0,12,2,0,2281,368241.88,131904.84,194087,0,0,0,1812.8484 +13784,16825,30011,-9,30012,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.51111,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16825,30012,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1058.0836,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.52,48.67,-9,-9,10,2,3,0,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16825,30013,-9,30012,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-906.95917,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16826,30014,-9,30012,-9,1,0,18,0,2,0,2,2,1,0,5,6.296648,6.3833585,0,0,0,-997.18494,-9,2,-9,2021,11,3,16,0,1,3,1,3.7345085,3.7345085,0,0,0,0,0,0,0,0,1,1,0,0,0,58.17,54.54,-9,-9,10,2,3,0,0,2,8,2,0,122,0,0,0,0,0,0,563.96271 +13785,16827,30015,30016,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8622069,8.1636181,10,3,15.391982,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2899373,7.8090577,56.29,52.37,59.86,40.18,8.333333333333334,1,1,0,0,4,12,3,1,686.5,947314.38,463243.63,240219.88,0,0,0,2610.6396 +13785,16827,30016,30015,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.9394093,5.3354521,10,-3,-43.204884,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.32295451,5.3346109,59.86,40.18,56.29,52.37,8.333333333333334,1,1,0,0,1,12,3,1,686.5,947314.38,463243.63,240219.88,0,0,0,2610.6396 +13786,16828,30017,30018,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.4142427,9.247056,0,4,7,29.884411,0,-9,-9,2021,20,8,50,50,1,8,0,24.915476,24.915476,0,0,0,0,0,0,0,0,0,0,0,4.7305493,0,25.92,66.48999999999999,43.69,59.95,6.666666666666667,1,1,0,0,5,8,5,1,854,930847.81,264523.69,701995,436602.75,70.450867,0,5665.9961 +13786,16828,30018,30017,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.7552137,9.0850754,0,4,-7,-19.974579,0,-9,-9,2021,11,2,38,39,1,2,0,22.322334,22.322334,0,0,0,0,0,0,0,0,0,0,0,1.832472,0,43.69,59.95,25.92,66.48999999999999,10,1,1,0,0,11,8,5,1,854,930847.81,264523.69,701995,436602.75,70.450867,0,5665.9961 +13787,16829,30019,30020,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5944557,7.1723037,7,-3,92.800743,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.8695779,7.5668497,62.1,51.16,57.06,57.76,10,1,1,0,0,9,5,4,1,433,1119832.1,541638.06,152739.14,0,0,0,2390.3413 +13787,16829,30020,30019,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,8.2708445,8.5917187,0,7,3,22.299442,0,-9,-9,2021,7,0,30,32,1,0,0,17.716696,17.716696,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.1,51.16,10,1,1,0,0,9,5,4,1,433,1119832.1,541638.06,152739.14,0,0,0,2390.3413 +13788,16830,30021,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.5367365,6.7743425,0,0,-974.55389,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7417765,6.4866977,40.51,26.99,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1899,97939.164,60727.902,132521.92,0,0,0,2057.6975 +13789,16831,30022,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.2364535,7.1799674,0,0,0,-999.16357,0,-9,-9,2021,11,0,23,24,1,0,0,6.5922976,6.5922976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.98,49.06,-9,-9,6.666666666666667,2,3,0,0,7,4,2,1,355,272560.5,105748.61,104798.05,44906.074,0,0,1726.4979 +13790,16832,30023,-9,-9,-9,1,0,79,1,2,0,3,3,-9,0,3,0,0,0,0,0,-966.88232,-9,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,3.4492309,0,0,1,1,0,0,0,65.14,32.13,-9,-9,10,1,1,0,0,0,8,1,1,2086,-58705.258,0,0,0,0,0,1006.0816 +13791,16833,30024,30025,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7566061,8.6873751,0,25,2,-112.16238,0,3,3,2021,12,4,40,40,1,4,0,19.495234,19.495234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.29,49.66,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,676,180194.7,92351.609,94983.453,64313.555,2771.2341,650.73889,3922.4756 +13791,16833,30025,30024,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.1575184,8.5142593,0,25,-2,104.25745,0,3,3,2021,7,0,30,30,1,0,0,15.179903,15.179903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,42.29,49.66,8.333333333333334,1,1,0,0,9,4,5,1,676,180194.7,92351.609,94983.453,64313.555,2771.2341,650.73889,3922.4756 +13791,16834,30026,-9,30025,30024,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1117.403,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1558,151113.78,0,0,0,0,0,1040.2184 +13792,16835,30027,30028,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8915286,6.9545035,44,0,73.82415,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8174019,6.8694072,35.01,36.82,33.98,56,6.666666666666667,1,1,0,0,8,2,2,1,449,625058.13,491982.75,104902.55,0,0,0,1980.1899 +13792,16835,30028,30027,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.699244,5.6612072,44,0,-130.87694,0,2,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,5.0890455,0,0,1,1,0,4.5493207,5.5617895,33.98,56,35.01,36.82,8.333333333333334,1,1,0,0,1,2,2,1,449,625058.13,491982.75,104902.55,0,0,0,1980.1899 +13793,16836,30029,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,6.4133916,6.3570704,0,0,-886.98163,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.9199185,6.1551929,45.58,47.97,-9,-9,5,1,1,0,0,7,5,2,1,3720,218930.63,177975.53,174644.27,0,0,0,732.76062 +13794,16837,30030,30031,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2765799,8.4326754,0,1,0,16.688128,0,2,2,2021,5,0,30,34,1,0,0,15.646168,15.646168,0,0,0,0,0,0,0,0,1,1,0,7.1392179,0,57.16,56.15,56.77,52.22,8.333333333333334,1,1,0,0,5,8,5,1,217,1350998.4,346987.13,598009.69,0,0,0,5243.0317 +13794,16837,30031,30030,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.6254482,8.5911932,1,9,45.99263,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,4.9949789,8.5714178,56.77,52.22,57.16,56.15,10,1,1,0,0,0,8,5,1,217,1350998.4,346987.13,598009.69,0,0,0,5243.0317 +13795,16838,30032,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1122.498,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.54,39.94,-9,-9,10,1,1,0,0,0,5,1,0,510,41012.504,0,0,0,0,0,1263.0912 +13796,16839,30033,-9,30034,30036,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.35413,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30034,30036,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3457909,8.4478502,0,17,0,-11.465691,0,2,2,2021,7,0,38,40,1,0,0,19.462828,19.462828,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.69,57.47,8.333333333333334,1,1,0,0,7,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30035,-9,30034,30036,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-987.77942,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30036,30034,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.9815922,9.0169163,0,18,0,39.116482,0,2,1,2021,9,0,37,37,1,0,0,21.143206,21.143206,.05,.05,0,0,0,0,0,0,1,1,0,5.5006242,0,54.69,57.47,52.82,53.97,8.333333333333334,1,1,0,0,11,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13797,16840,30037,30038,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.830492,7.0518231,0,2,-6,-1.4149656,0,2,3,2021,7,0,40,45,1,0,0,3.4966393,3.4966393,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,60.12,54.8,8.333333333333334,1,1,0,0,6,13,3,1,798.5,119881.28,64966.844,116765.89,92297.375,4186.8369,12507.013,899.59387 +13797,16840,30038,30037,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.483686,7.723393,0,2,6,-28.243723,-9,-9,-9,2021,5,0,44,0,1,0,0,5.7091646,5.7091646,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.88,48.2,8.333333333333334,1,1,0,0,8,13,3,1,798.5,119881.28,64966.844,116765.89,92297.375,4186.8369,12507.013,899.59387 +13798,16841,30039,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.6219788,6.7699575,0,0,0,-963.3457,0,-9,-9,2021,10,2,26,26,1,2,0,3.779588,3.779588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.13,54.7,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,267,-3632.4104,24071.91,0,0,0,0,288.64874 +13799,16842,30040,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.1042304,3.7964411,0,0,-1021.7502,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6046181,4.2849422,58.72,43.42,-9,-9,10,1,1,0,0,13,9,2,1,540,255680.78,78769.852,370895.5,0,132.32079,0,2152.196 +13800,16843,30041,30042,-9,-9,1,1,31,0,0,0,2,2,0,0,5,0,0,0,1,0,74.728462,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,4,4,4,1,403,125802.95,56556.984,179494.31,57477.102,0,0,1882.332 +13800,16843,30042,30041,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.4736795,8.4725933,0,1,0,-109.87903,-9,-9,-9,2021,7,0,37,0,1,0,0,13.429305,13.429305,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,4,4,1,403,125802.95,56556.984,179494.31,57477.102,0,0,1882.332 +13801,16844,30043,30044,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.5527496,8.6596069,0,35,-6,15.29002,0,3,1,2021,13,1,38,38,1,1,0,13.775674,13.775674,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,38.84,56.52,36.33,3.333333333333333,1,1,0,0,13,11,4,1,433,1444259.3,1431123,97090.969,0,0,0,2422.9219 +13801,16844,30044,30043,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,6.419198,6.8961282,35,6,46.925526,0,3,2,2021,8,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7102928,56.52,36.33,41.95,38.84,6.666666666666667,1,1,0,0,13,11,4,1,433,1444259.3,1431123,97090.969,0,0,0,2422.9219 +13802,16845,30045,30046,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.601099,8.4424286,0,23,-3,72.346611,0,2,1,2021,8,0,37,40,1,0,0,20.228397,20.228397,.05,.05,0,0,0,0,0,0,0,0,0,3.0439966,0,62.25,48.33,52.99,48.57,8.333333333333334,1,1,0,0,9,6,5,1,792.5,1134630.5,1197031.4,149213.06,70635.578,7296.8955,0,3619.2952 +13802,16845,30046,30045,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.283803,8.5352144,0,23,3,-52.179832,0,2,2,2021,7,0,37,37,1,0,0,10.083229,10.083229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,48.57,62.25,48.33,10,1,1,0,0,9,6,5,1,792.5,1134630.5,1197031.4,149213.06,70635.578,7296.8955,0,3619.2952 +13803,16846,30047,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3065815,8.0792255,0,0,0,-1032.2417,0,-9,-9,2021,10,1,48,46,1,1,0,8.3157434,8.3157434,.05,.05,0,0,0,0,0,0,0,0,0,4.333456,0,45.75,54.5,-9,-9,10,1,1,0,0,8,5,4,1,833,-40792.555,88961.023,0,0,0,0,1461.5549 +13803,16847,30048,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.1100807,7.9254975,0,0,0,-929.08978,0,-9,-9,2021,10,0,38,40,1,0,0,8.4845352,8.4845352,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,10,1,1,0,0,4,5,4,1,488,-164346.2,0,0,0,0,0,888.07104 +13804,16848,30049,30050,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.208405,7.3050461,40,0,-52.772148,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,2.5384946,0,0,1,1,0,0,7.6303959,52,48,50,47,7,1,1,0,0,0,8,2,0,331,1299017.8,562063.75,631886.88,0,8410.3721,0,2582.5874 +13804,16848,30050,30049,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,40,0,59.559769,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,52,48,7,1,1,0,0,0,8,2,0,331,1299017.8,562063.75,631886.88,0,8410.3721,0,2582.5874 +13805,16849,30051,30052,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.3157907,7.550252,51,14,-9.929925,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.0820079,52.25,45.21,35.73,21.8,6.666666666666667,1,1,0,0,0,1,2,1,294,314667.25,118761,277984.88,0,0,0,2280.5146 +13805,16849,30052,30051,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,51,-14,.23266155,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9756426,0,35.73,21.8,52.25,45.21,1.666666666666667,1,1,0,0,0,1,2,1,294,314667.25,118761,277984.88,0,0,0,2280.5146 +13806,16850,30053,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1027.8318,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,27.93,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1279,359189.16,0,308960.44,0,0,0,1892.6425 +13807,16851,30054,30055,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,56,1,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,45,53,45,8,4,5,0,0,0,8,1,1,757.5,48103.336,0,0,0,0,0,0 +13807,16851,30055,30054,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,2.3897681,0,24.142143,0,0,0,0,0,0,53,45,55,45,8,4,5,0,0,0,8,1,1,757.5,48103.336,0,0,0,0,0,0 +13807,16852,30056,-9,30055,30054,1,0,50,0,0,0,1,1,-9,0,2,7.0778203,7.0174661,0,0,0,-974.24414,0,1,1,2021,7,0,18,18,1,0,0,8.6357536,8.6357536,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,726,119527.51,0,0,0,715.05219,0,1757.0585 +13807,16853,30057,-9,30056,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.1437,-9,1,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,0,8,1,1,422,64885.789,0,0,0,0,0,0 +13807,16854,30058,-9,30056,-9,1,1,23,0,0,0,2,2,1,0,4,8.6519918,8.3084393,0,0,0,-741.50055,-9,1,1,2021,10,0,40,0,1,1,1,13.344022,13.344022,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,423,51735.684,0,0,0,0,0,1997.9526 +13808,16855,30059,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8789606,7.8514876,4.133791,0,0,-1084.7426,0,3,3,2021,9,1,35,35,1,1,0,8.4568691,8.4568691,.05,.05,0,0,0,0,0,7,1,1,0,4.6059866,4.18082,44.94,45.95,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,542,239595.61,218503.66,0,0,3470.5369,0,163.8985 +13808,16856,30060,-9,30059,-9,1,1,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-969.98376,0,3,-9,2021,22,9,0,37,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.41,44.32,-9,-9,1.666666666666667,1,1,1,0,10,13,1,1,1811,-86496.625,0,0,0,0,0,-580.95734 +13809,16857,30061,30062,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.0293579,7.7576466,8,1,31.457411,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.106627,7.6350913,30.59,36.36,26.3,40.84,5,1,1,0,0,1,11,3,1,592.5,1328905.8,1008444.4,470267.25,0,0,0,3045.45 +13809,16857,30062,30061,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.5927463,6.6784196,8,-1,50.709152,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4252119,26.3,40.84,30.59,36.36,3.333333333333333,1,1,0,1,5,11,3,1,592.5,1328905.8,1008444.4,470267.25,0,0,0,3045.45 +13809,16858,30063,-9,30062,30061,1,0,31,0,0,0,1,1,-9,0,3,8.0032549,8.0632706,0,0,0,-869.3277,0,1,2,2021,9,1,37,38,1,1,0,11.310208,11.310208,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.33,53.99,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,200,-15640.162,-18264.508,101155.66,96807.859,0,0,1731.9871 +13810,16859,30064,30065,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.6231956,6.2653465,10,5,111.26181,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,14.490265,0,14.5,1,1,0,2.407959,6.1336012,43.17,37.04,60.93,36.01,10,1,1,0,0,0,4,2,0,641,403536.88,176808.59,107974.37,0,0,0,2379.127 +13810,16859,30065,30064,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.7881093,6.2418566,10,-5,-64.100136,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,6.7889576,5.8231544,60.93,36.01,43.17,37.04,10,1,1,0,0,4,4,2,0,641,403536.88,176808.59,107974.37,0,0,0,2379.127 +13811,16860,30066,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,6.9183526,6.5747175,0,0,0,-1059.754,0,-9,-9,2021,6,0,16,0,1,0,0,6.0224795,6.0224795,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,1,2,1,801,217700.05,0,121982.33,0,0,0,841.45502 +13812,16861,30067,30068,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.1692123,8.7459888,0,28,3,-14.222634,0,3,2,2021,12,1,40,40,1,1,0,10.550163,10.550163,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.41,56.15,58.5,44.67,8.333333333333334,1,1,0,0,15,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16861,30068,30067,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.1552563,8.2174692,0,28,-3,41.173332,0,2,2,2021,12,1,43,38,1,1,0,11.030838,11.030838,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,51.41,56.15,3.333333333333333,1,1,0,0,11,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16861,30069,-9,30068,30067,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.33673,-9,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,1,0,0,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16862,30070,-9,30068,30067,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-889.64258,0,2,3,2021,6,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,4,5,1,1,1193,-40427.688,0,0,0,0,0,-1032.8274 +13813,16863,30071,30072,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.551661,7.9001284,59,3,21.945642,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.855619,41.38,53.82,51,52.08,8.333333333333334,1,1,0,0,0,5,3,1,2165.5,1456369.8,122612.37,436860.31,0,5283.5835,0,3175.9702 +13813,16863,30072,30071,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.1847529,4.992661,59,-3,24.804531,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6028271,0,0,1,1,0,4.0087652,4.781291,51,52.08,41.38,53.82,8.333333333333334,1,1,0,0,0,5,3,1,2165.5,1456369.8,122612.37,436860.31,0,5283.5835,0,3175.9702 +13814,16864,30073,30074,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.137517,8.641551,0,9,-1,127.60448,0,2,1,2021,24,11,44,46,1,11,0,20.117729,20.117729,.05,.05,0,0,0,0,0,0,1,1,0,2.6201119,0,37.42,56.9,35.97,61.83,3.333333333333333,1,1,0,0,11,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30074,30073,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.5473061,8.4123707,0,9,1,9.0278378,0,2,1,2021,18,8,45,34,1,8,0,15.280621,15.280621,.05,.05,0,0,0,0,0,0,1,1,0,7.3434067,0,35.97,61.83,37.42,56.9,6.666666666666667,1,1,0,0,11,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30075,-9,30074,30073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.2794,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30076,-9,30074,30073,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6633,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13815,16865,30077,30078,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6610918,7.4447074,0,1,-11,-90.004929,-9,-9,-9,2021,7,0,37,0,1,0,0,6.235847,6.235847,0,0,0,0,0,0,0,0,1,0,1,0,0,52.8,40.58,48.28,53.42,10,1,1,0,0,0,13,3,0,1444,-185136.28,0,0,0,0,0,2006.0491 +13815,16865,30078,30077,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.0685363,7.5713978,0,1,11,50.44178,0,3,3,2021,12,0,20,24,1,0,0,5.8295083,5.8295083,0,0,0,0,0,0,0,0,1,0,1,0,0,48.28,53.42,52.8,40.58,8.333333333333334,1,1,0,0,8,13,3,0,1444,-185136.28,0,0,0,0,0,2006.0491 +13816,16866,30079,30080,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,5.9591956,6.37889,36,1,53.672428,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9907866,38.24,25.76,60.27,41.4,3.333333333333333,1,1,0,0,0,8,2,0,254,15864.736,112802.95,0,0,0,0,3055.5752 +13816,16866,30080,30079,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,36,-1,25.672176,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.27,41.4,38.24,25.76,1.666666666666667,1,1,0,0,0,8,2,0,254,15864.736,112802.95,0,0,0,0,3055.5752 +13816,16867,30081,-9,30082,-9,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-866.81689,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13816,16867,30082,-9,30080,30079,1,0,24,0,0,0,2,2,-9,0,4,3.2198319,3.0585999,0,0,0,-1126.2416,0,3,3,2021,12,0,30,0,1,0,1,.084787875,.084787875,0,0,0,0,0,0,0,2,1,1,0,0,0,55.44,52.99,-9,-9,5,1,1,0,0,2,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13816,16867,30083,-9,30082,-9,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1061.0543,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13817,16868,30084,30085,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4948864,8.3782492,0,6,10,-30.27548,0,2,2,2021,8,0,50,45,1,0,0,10.086629,10.086629,0,0,0,0,0,0,0,0,0,0,0,0,0,53.47,52.37,48.28,60.18,8.333333333333334,1,1,0,0,7,8,5,0,948,3472880.5,137341.39,1999070.3,731655.38,0,0,4532.4307 +13817,16868,30085,30084,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.8285217,8.627718,0,6,-10,18.775875,0,2,2,2021,6,0,38,35,1,0,0,18.897848,18.897848,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53.47,52.37,1.666666666666667,1,1,0,0,7,8,5,0,948,3472880.5,137341.39,1999070.3,731655.38,0,0,4532.4307 +13817,16869,30086,-9,30084,30085,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.9703,1,1,2,2021,26,11,0,40,2,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.51,63.69,-9,-9,6.666666666666667,1,1,0,0,1,8,1,0,355,185278.98,0,0,0,0,0,1400.6852 +13818,16870,30087,30088,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,7.0580549,6.8121786,0,6,2,-91.572975,0,-9,-9,2021,7,0,50,50,1,0,0,2.5656734,2.5656734,0,0,0,0,0,0,0,0,1,1,0,8.466958,0,57.06,57.76,58.23,43.46,8.333333333333334,1,1,0,0,7,2,2,0,746,161117.7,-23620.912,89678.5,0,0,0,3551.4673 +13818,16870,30088,30087,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.2516484,5.1856856,6,-2,4.4011488,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8586631,5.664207,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,5,2,2,0,746,161117.7,-23620.912,89678.5,0,0,0,3551.4673 +13819,16871,30089,30090,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.9833965,7.3560719,31,3,87.462624,0,3,3,2021,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0885372,36.48,35.74,64.37,44.69,8.333333333333334,1,1,0,0,11,12,5,1,551.5,771841.06,386815.84,340568.31,0,0,0,3153.4414 +13819,16871,30090,30089,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.4254198,8.8203735,8.0567236,31,-3,26.4636,0,3,-9,2021,7,0,35,40,1,0,0,15.716647,15.716647,.05,.05,.05,0,0,0,0,0,0,0,0,4.1094208,8.0961828,64.37,44.69,36.48,35.74,8.333333333333334,1,1,0,0,12,12,5,1,551.5,771841.06,386815.84,340568.31,0,0,0,3153.4414 +13819,16872,30091,-9,30089,30090,1,1,25,0,0,0,2,2,-9,0,3,7.7577038,7.9261475,0,0,0,-970.1106,0,2,2,2021,14,2,38,35,1,2,1,6.6815019,6.6815019,.05,.05,0,0,0,0,0,0,0,0,0,2.2867982,0,36.93,56.27,-9,-9,3.333333333333333,1,1,0,1,9,12,3,1,2465,-143543.7,109086.96,0,0,0,0,1039.8518 +13820,16873,30092,30093,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.7503791,7.3629966,8,0,79.521896,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.7925057,7.4771442,48.81,46.83,57.06,57.76,10,1,1,0,0,4,12,3,1,839.5,1201417.6,894185.31,230637.03,0,0,0,2101.5547 +13820,16873,30093,30092,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.5471153,7.6613503,8,0,2.4559565,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0967522,7.6215997,57.06,57.76,48.81,46.83,8.333333333333334,1,1,0,0,0,12,3,1,839.5,1201417.6,894185.31,230637.03,0,0,0,2101.5547 +13821,16874,30094,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.1176691,5.2578878,0,0,-1105.1428,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1651559,50.38,29.54,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1436,1531981,164229.28,594577.06,0,0,0,1283.0323 +13822,16875,30095,-9,30096,30097,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.48535,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13822,16875,30096,30097,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.5810499,7.5379395,0,7,0,-65.713188,0,-9,-9,2021,11,0,19,20,1,0,0,12.285266,12.285266,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,49.35,59.64,8.333333333333334,1,1,0,0,11,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13822,16875,30097,30096,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.0969381,7.8822856,0,7,0,-30.180742,0,2,3,2021,8,0,37,37,1,0,0,12.812729,12.812729,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,46.9,56.66,8.333333333333334,1,1,0,0,10,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13823,16876,30098,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.6308675,7.8018909,0,0,0,-1105.7505,0,2,2,2021,17,5,32,32,1,5,0,7.141993,7.141993,0,0,0,0,0,0,0,0,0,0,0,0,0,33.05,57.87,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,171,-127549.99,42721.227,0,0,2527.1323,3677.9319,1726.2228 +13824,16877,30099,-9,30102,30101,1,0,22,0,1,0,2,2,1,0,2,6.245028,6.2206292,0,0,0,-994.12653,-9,2,2,2021,34,11,4,0,1,11,1,17.3827,17.3827,0,0,0,0,0,0,0,0,1,1,0,0,0,24.98,32.38,-9,-9,0,2,3,0,1,1,4,2,1,259,-250563.13,0,0,0,0,0,1147.7571 +13824,16878,30100,-9,30102,30101,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.21735,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13824,16878,30101,30102,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.4731722,7.5022779,0,6,1,-68.856422,0,3,3,2021,16,5,12,12,1,5,0,17.764826,17.764826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.51,45.46,2.19,69.56,6.666666666666667,2,3,0,1,10,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13824,16878,30102,30101,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,6.6679187,7.1409683,0,6,-1,-78.932396,0,3,3,2021,29,10,18,18,1,10,0,5.7901697,5.7901697,0,0,0,0,0,0,0,0,1,1,0,0,0,2.19,69.56,39.51,45.46,5,2,3,0,1,10,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13825,16879,30103,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.3318038,7.3509288,0,0,0,-1122.3578,0,3,3,2021,11,0,34,30,1,0,0,5.213202,5.213202,0,0,0,0,0,0,0,0,1,1,0,0,0,36.38,55.37,-9,-9,5,1,1,0,0,12,6,3,1,530,123165.09,0,93636.063,0,0,0,550.01471 +13826,16880,30104,30105,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.7485037,9.2813282,0,39,6,-38.026581,0,2,2,2021,8,0,72,42,1,0,0,18.647491,18.647491,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55,53,45.91,59.89,8,1,1,0,0,1,12,5,1,2087.5,1726780,1317583.8,282526.06,0,0,0,5358.499 +13826,16880,30105,30104,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6156006,7.5638866,0,38,-6,-12.692378,0,2,2,2021,12,1,24,32,1,1,0,9.198,9.198,.05,.05,0,0,0,0,0,14.5,0,0,0,5.1420879,0,45.91,59.89,55,53,8.333333333333334,1,1,0,0,9,12,5,1,2087.5,1726780,1317583.8,282526.06,0,0,0,5358.499 +13827,16881,30106,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.24884,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.32,38.2,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1280,206121.63,0,0,0,0,0,1450.8777 +13828,16882,30107,-9,30110,30109,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.59497,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30108,-9,30110,30109,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.24377,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30109,30110,-9,-9,1,1,47,0,3,0,3,3,-9,0,3,9.4744167,9.2515821,0,5,7,3.6127059,0,2,2,2021,5,0,40,40,1,0,0,38.37096,38.37096,.05,.05,0,0,0,0,0,0,1,1,0,10.073166,0,48.01,41.89,57.06,57.76,8.333333333333334,1,1,0,0,13,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30110,30109,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.8659229,7.9490829,0,5,-7,85.382019,0,-9,-9,2021,6,0,40,45,1,0,0,7.6270003,7.6270003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.01,41.89,10,3,4,0,0,2,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13829,16883,30111,30112,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,9,-4,-87.243805,0,2,2,2021,7,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.36233,0,52.82,53.97,59.46,46.99,8.333333333333334,1,1,0,0,12,12,5,1,535.5,553970.38,298587.06,269271.78,-9409.8311,0,1043.043,4340.1621 +13829,16883,30112,30111,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.9069996,8.9981184,9,4,-28.04599,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.3926973,8.7887688,59.46,46.99,52.82,53.97,10,1,1,0,0,10,12,5,1,535.5,553970.38,298587.06,269271.78,-9409.8311,0,1043.043,4340.1621 +13830,16884,30113,30114,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2982283,8.147562,0,15,1,-9.7469358,0,2,2,2021,11,0,38,38,1,0,0,11.767385,11.767385,.05,.05,0,0,0,0,0,0,0,0,0,7.399992,0,45.65,57.42,54.79,55.86,8.333333333333334,2,3,0,0,13,12,5,1,2211.5,1250554.1,859456.06,387658.06,0,0,0,4530.4355 +13830,16884,30114,30113,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.8940239,9.3057632,0,15,-1,96.369797,0,3,3,2021,7,0,37,38,1,0,0,29.045244,29.045244,.05,.05,0,0,0,0,.91910678,2,0,0,0,0,0,54.79,55.86,45.65,57.42,8.333333333333334,2,3,0,0,14,12,5,1,2211.5,1250554.1,859456.06,387658.06,0,0,0,4530.4355 +13831,16885,30115,-9,30116,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1000.9982,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23707864,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,482,121514.85,174139.97,121445.3,81208.906,0,0,1485.0276 +13831,16885,30116,-9,-9,-9,1,0,43,0,1,0,1,1,-9,1,2,7.4065928,7.582624,0,0,0,-980.29749,0,2,2,2021,14,3,21,32,1,3,0,14.018381,14.018381,.05,.05,0,0,0,0,0,0,1,1,0,.060569286,0,52.19,14.27,-9,-9,3.333333333333333,1,1,0,0,8,6,3,1,482,121514.85,174139.97,121445.3,81208.906,0,0,1485.0276 +13831,16886,30117,-9,30116,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-946.26721,-9,1,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8536861,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,638,227007.81,0,0,0,0,0,334.46893 +13832,16887,30118,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,3.2038743,3.354881,0,0,-902.92725,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7230361,3.3286014,36.27,39.93,-9,-9,5,1,1,0,0,0,8,2,1,117,-261200.2,70077.055,0,0,0,0,692.9093 +13833,16888,30119,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3342304,8.3126135,0,0,0,-1031.438,0,2,3,2021,13,3,38,42,1,3,1,10.742228,10.742228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,8.333333333333334,1,1,0,1,8,11,4,0,2910,6098.5415,156650.61,0,0,0,0,1785.1687 +13834,16889,30120,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,7.0442982,7.5604343,5.8493977,0,0,-902.35626,0,3,3,2021,9,0,20,20,1,0,0,7.3621292,7.3621292,0,0,0,0,0,0,0,0,1,1,0,1.7262496,6.0279751,55.36,54.24,-9,-9,1.666666666666667,1,1,0,1,7,12,3,1,762,319804.22,348767,119571.23,0,2765.8899,0,880.01746 +13835,16890,30121,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.961659,6.1899371,0,0,-988.64374,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0302331,5.7413878,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,976,329691.38,31972.6,70477.148,0,0,0,541.41541 +13836,16891,30122,30123,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,8.7079439,8.6760778,0,3,0,49.598446,0,2,3,2021,20,8,30,45,1,8,0,24.285517,24.285517,0,0,0,0,0,0,0,0,1,1,0,0,0,24.27,37.82,40.48,60.05,3.333333333333333,1,1,0,0,9,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16891,30123,30122,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,9.1088839,9.3272152,0,3,0,3.3304696,0,-9,-9,2021,13,1,43,50,1,1,0,23.266224,23.266224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,24.27,37.82,6.666666666666667,1,1,0,0,12,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16891,30124,-9,30122,30123,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.496,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16892,30125,-9,30122,30123,1,1,20,1,1,0,2,2,1,0,4,0,0,0,0,0,-950.62653,-9,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,1,1,0,1,2,8,1,1,2225,0,0,0,0,0,0,-304.57431 +13837,16893,30126,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.6897745,7.5522408,0,0,0,-981.04877,0,-9,-9,2021,15,4,42,4,1,4,0,6.4107747,6.4107747,0,0,0,0,0,0,0,0,1,1,0,0,0,48.66,54.86,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,433,-108321.03,0,0,0,0,0,1454.9697 +13837,16894,30127,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.9635282,7.7902718,0,0,-962.40204,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5091612,7.5421267,52,45,-9,-9,8,1,1,0,0,0,5,4,1,66,510266.84,99977.758,0,0,0,0,1872.1544 +13838,16895,30128,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.3745999,7.4682884,5.2764516,0,0,-1006.8122,0,2,3,2021,12,0,30,33,1,0,0,6.2332525,6.2332525,0,0,0,0,0,0,0,0,1,1,0,5.4887714,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,722,14833.147,-23649.48,0,0,3039.1729,434.17584,1296.7476 +13838,16896,30129,-9,30128,-9,1,0,19,0,0,0,2,2,-9,0,4,6.3151236,6.0372066,0,0,0,-1000.6594,0,2,-9,2021,8,2,12,24,1,2,1,4.4407182,4.4407182,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,230,-126756.97,0,0,0,0,0,627.45721 +13839,16897,30130,30131,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.6662126,7.6764598,0,11,-1,51.855015,0,2,2,2021,7,0,19,18,1,0,0,13.910324,13.910324,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.37,54.8,10,1,1,0,0,12,9,4,1,429.5,303534.38,69462.32,0,0,0,405.12677,2992.6743 +13839,16897,30131,30130,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.9442973,7.9960179,0,11,1,19.77557,0,2,3,2021,6,0,40,40,1,0,0,9.9633703,9.9633703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,429.5,303534.38,69462.32,0,0,0,405.12677,2992.6743 +13840,16898,30132,30133,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.9752927,6.7924795,10,2,-219.66396,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7427576,7.2314763,57.16,56.15,52.65,50.06,8.333333333333334,1,1,0,0,3,5,2,1,594.5,722241.56,397258.13,226433.81,0,0,0,1779.2739 +13840,16898,30133,30132,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.5272708,5.2423,10,-2,72.559425,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5074852,5.5268302,52.65,50.06,57.16,56.15,8.333333333333334,1,1,0,0,5,5,2,1,594.5,722241.56,397258.13,226433.81,0,0,0,1779.2739 +13841,16899,30134,-9,30135,30136,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.54968,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30135,30136,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.406745,8.4094582,0,13,-1,-2.2661409,0,2,2,2021,6,0,30,23,1,0,0,18.9366,18.9366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,53.68,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30136,30135,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.9299068,8.9667711,0,13,1,8.8021946,0,2,2,2021,8,0,48,43,1,0,0,19.259069,19.259069,.05,.05,0,0,0,0,0,0,1,1,0,2.1305943,0,51.83,57.2,50.6,53.68,8.333333333333334,1,1,0,0,9,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30137,-9,30135,30136,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.68073,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13842,16900,30138,-9,30140,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.371,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13842,16900,30139,-9,30140,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6886,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13842,16900,30140,-9,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1033.042,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13843,16901,30141,30142,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,6.6986847,6.7884207,0,21,-6,141.46152,0,2,2,2021,12,0,10,14,1,0,0,10.610596,10.610596,0,0,0,0,0,0,0,116,1,1,0,0,0,57.33,53.46,53,55,8.333333333333334,1,1,0,0,2,10,3,1,1206,528182.44,308555.63,227973.27,0,0,0,1701.8354 +13843,16901,30142,30141,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,7.2664232,7.2788072,9,6,-103.79771,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.9627824,7.4838986,53,55,57.33,53.46,8,1,1,0,0,0,10,3,1,1206,528182.44,308555.63,227973.27,0,0,0,1701.8354 +13844,16902,30143,30144,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.0864439,8.2597876,0,4,-3,64.048264,0,-9,-9,2021,6,0,35,35,1,0,0,10.083428,10.083428,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,59.31,49.81,10,3,4,0,0,11,9,4,1,137,2136166.3,1234830.5,563296.63,0,0,0,2593.9084 +13844,16902,30144,30143,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.4484692,7.3602104,4,3,102.32439,0,2,1,2021,9,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0121837,6.9148602,59.31,49.81,59.7,53.75,8.333333333333334,1,1,0,0,10,9,4,1,137,2136166.3,1234830.5,563296.63,0,0,0,2593.9084 +13845,16903,30145,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0004902,8.2691574,0,0,0,-978.41028,-9,1,1,2021,16,3,38,0,1,3,0,13.3148,13.3148,0,0,0,0,0,0,0,0,1,0,1,0,0,32.5,53.18,-9,-9,5,3,4,0,0,7,8,4,0,301,178175.05,56974.645,0,0,0,4647.2988,1274.3828 +13846,16904,30146,30147,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,2,1,-28.506187,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6416383,0,38.51,48.9,57.29,44.28,6.666666666666667,1,1,0,0,0,13,2,1,2372.5,230294.41,105641.95,163313.34,0,0,0,587.74152 +13846,16904,30147,30146,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,6.8816981,6.5515161,0,2,-1,-46.576233,0,3,3,2021,8,0,40,30,1,0,0,2.7743938,2.7743938,0,0,0,0,0,0,0,0,0,0,0,0,0,57.29,44.28,38.51,48.9,8.333333333333334,1,1,0,0,4,13,2,1,2372.5,230294.41,105641.95,163313.34,0,0,0,587.74152 +13846,16905,30148,-9,30146,30147,1,1,19,0,0,0,3,3,1,0,4,7.5649481,7.401093,0,0,0,-1154.7321,-9,2,3,2021,8,0,40,0,1,0,1,5.78616,5.78616,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,378,16847.648,0,0,0,0,0,1506.5654 +13847,16906,30149,-9,30150,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-981.3548,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,636.5,-59043.676,0,0,0,0,0,802.01318 +13847,16906,30150,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.402823,7.653852,0,0,0,-980.35999,0,-9,-9,2021,9,0,25,27,1,0,0,8.159256,8.159256,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,7,5,3,0,636.5,-59043.676,0,0,0,0,0,802.01318 +13848,16907,30151,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1126.2148,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.642422,0,63.23,50.78,-9,-9,10,1,1,0,0,0,1,1,0,3416,-116437.66,0,0,0,0,0,2261.2764 +13849,16908,30152,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.888545,6.8883185,0,0,-1018.1221,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,1.0172137,3.0944717,22.609663,0,1,1,0,3.7612963,6.7816577,42.93,27.57,-9,-9,5,1,1,0,0,0,11,2,0,639,220582.23,65496.531,84841.383,0,0,0,1719.8513 +13850,16909,30153,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,7.834444,7.5947871,0,0,0,-982.8493,0,2,-9,2021,8,0,42,35,1,0,0,5.8258457,5.8258457,0,0,.05,0,0,0,0,0,1,1,0,2.4479256,0,49.23,45.42,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1063,-100757.57,109060.27,0,0,4072.1309,0,1161.9409 +13851,16910,30154,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-967.86499,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.95,62.22,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,1700,-207457.81,-35668.309,0,0,2939.3599,0,0 +13852,16911,30155,30156,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.3723898,7.2413902,45,0,-16.292671,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0360823,7.4650569,51.77,58.57,54.96,53.17,8.333333333333334,1,1,0,0,11,9,2,1,271.5,525393.13,289786.19,193674.25,0,0,0,2628.3174 +13852,16911,30156,30155,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,46,0,-211.82901,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1747265,0,54.96,53.17,51.77,58.57,8.333333333333334,1,1,0,0,10,9,2,1,271.5,525393.13,289786.19,193674.25,0,0,0,2628.3174 +13853,16912,30157,30158,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,7.1433067,7.3907442,0,18,-2,-12.812525,0,2,2,2021,6,0,12,12,1,0,0,14.315323,14.315323,.05,.05,0,0,0,0,0,0,0,0,0,3.899683,0,63.38,53.47,52.65,51.64,8.333333333333334,2,3,0,0,14,12,2,0,800.5,189551.88,88514.219,98497.094,90147.109,0,0,653.24219 +13853,16912,30158,30157,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,0,0,0,18,2,-20.889011,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,63.38,53.47,3.333333333333333,2,3,0,1,1,12,2,0,800.5,189551.88,88514.219,98497.094,90147.109,0,0,653.24219 +13853,16913,30159,-9,30158,30157,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1083.4485,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6403952,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,0,12,1,0,111,-79343.602,0,0,0,0,0,394.10074 +13853,16914,30160,-9,30158,30157,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1068.7461,-9,1,1,2021,18,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2035646,0,33.98,61.23,-9,-9,1.666666666666667,2,3,0,0,0,12,1,0,196,0,0,0,0,0,0,590.22028 +13853,16915,30161,-9,30158,30157,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1048.7097,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4256291,0,34.36,57.34,-9,-9,6.666666666666667,2,3,0,0,0,12,1,0,1409,12644.194,0,0,0,0,0,-89.921768 +13854,16916,30162,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,6.9255691,7.6506643,0,0,-944.37915,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,15.03372,0,135.71608,0,1,1,0,0,7.3439646,28,39.86,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,954,568936.38,126660.34,229039.72,0,0,0,3427.2495 +13855,16917,30163,30164,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.1224756,6.8669548,54,1,96.407288,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2695296,6.9576573,64.84,39.17,47.02,56.67,8.333333333333334,1,1,0,0,0,4,2,1,357,339284.25,161117.28,154773.77,0,0,0,1596.9974 +13855,16917,30164,30163,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.0482197,6.2497025,54,-1,61.072582,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1955247,47.02,56.67,64.84,39.17,8.333333333333334,1,1,0,0,0,4,2,1,357,339284.25,161117.28,154773.77,0,0,0,1596.9974 +13856,16918,30165,30166,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.0198994,6.0557384,8,-2,36.770065,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,14.001924,9.3391914,125.04831,0,1,1,0,1.4685431,5.7121797,48.88,14.16,41.57,25.62,6.666666666666667,1,1,0,0,0,11,2,1,1512.5,353593.22,158257.66,197257.45,0,0,0,2613.2524 +13856,16918,30166,30165,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,7.0321131,6.9989915,8,2,17.859297,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.6757288,6.8260465,41.57,25.62,48.88,14.16,3.333333333333333,1,1,0,0,0,11,2,1,1512.5,353593.22,158257.66,197257.45,0,0,0,2613.2524 +13857,16919,30167,30168,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.824296,8.4753723,0,6,1,-79.216751,0,1,1,2021,9,1,45,47,1,1,0,19.247488,19.247488,.05,.05,0,0,0,0,0,0,1,1,0,2.1423078,0,46.99,58.02,47.81,46.8,8.333333333333334,1,1,0,0,8,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13857,16919,30168,30167,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,8.6086664,8.5401802,0,6,-1,77.530731,0,2,2,2021,10,2,38,47,1,2,0,14.082958,14.082958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.81,46.8,46.99,58.02,8.333333333333334,1,1,0,0,7,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13857,16919,30169,-9,30168,30167,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5004,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13858,16920,30170,30171,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.9568496,7.9781551,53,2,100.19772,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0717559,8.024581,58.14,48.07,55.6,47.8,8.333333333333334,1,1,0,0,0,11,3,1,1421,964016.44,461610.75,403024.69,0,0,0,2939.0913 +13858,16920,30171,30170,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,13,-2,-30.513601,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0600982,0,55.6,47.8,58.14,48.07,8.333333333333334,1,1,0,0,5,11,3,1,1421,964016.44,461610.75,403024.69,0,0,0,2939.0913 +13859,16921,30172,30173,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.4905787,6.5370321,10,-1,14.430539,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,3.6337895,0,20.96467,0,1,1,0,3.4635978,6.7661777,56.78,30.78,57.47,42.93,10,1,1,0,0,6,12,2,0,798,332047.28,8726.582,183291.94,0,0,0,2138.897 +13859,16921,30173,30172,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,10,1,15.145283,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,42.93,56.78,30.78,10,1,1,0,0,1,12,2,0,798,332047.28,8726.582,183291.94,0,0,0,2138.897 +13860,16922,30174,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.9455,0,-9,-9,2021,11,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.95,39.4,-9,-9,3.333333333333333,1,1,0,0,10,12,1,0,554,77136.641,0,0,0,3335.9417,1489.4177,851.14819 +13861,16923,30175,30176,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,48,0,-40.33353,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.22,44.27,63.41,29.17,8.333333333333334,1,1,0,0,0,6,2,1,331,123483.28,0,197201.34,0,0,0,1944.7517 +13861,16923,30176,30175,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.805438,4.5837736,48,0,3.5794845,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.052285962,4.5455351,63.41,29.17,54.22,44.27,5,1,1,0,0,0,6,2,1,331,123483.28,0,197201.34,0,0,0,1944.7517 +13862,16924,30177,30178,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.1817389,7.0117445,0,30,0,-11.000816,0,2,2,2021,6,0,40,45,1,0,0,5.316587,5.316587,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,58.15,52.91,10,1,1,0,0,8,4,4,1,446.5,25696.297,71502.438,115888.66,43550.816,29262.66,4013.9346,2287.355 +13862,16924,30178,30177,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4606638,8.8114939,0,30,0,13.672453,0,2,2,2021,6,0,35,40,1,0,0,17.098288,17.098288,.05,.05,0,0,0,0,0,0,0,0,0,4.4103012,0,58.15,52.91,62.27,42.94,8.333333333333334,1,1,0,0,10,4,4,1,446.5,25696.297,71502.438,115888.66,43550.816,29262.66,4013.9346,2287.355 +13862,16925,30179,-9,30178,30177,1,0,27,0,0,0,2,2,-9,0,4,8.2172394,8.1361389,0,0,0,-957.00244,0,2,2,2021,7,0,42,40,1,0,1,9.1079178,9.1079178,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,219,-83082.336,0,0,0,0,0,1333.3055 +13863,16926,30180,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1038.2153,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,643,195025.36,0,0,0,0,0,795.00537 +13864,16927,30181,30182,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.490263,6.9903502,0,42,0,6.0764771,0,3,3,2021,12,1,12,12,1,1,0,6.4184651,6.4184651,0,0,0,0,0,0,0,0,1,1,0,0,0,47.4,49.86,59.74,45.34,8.333333333333334,1,1,0,1,12,4,4,1,994,166827.8,37929.328,185729.67,0,2088.7495,0,1604.0074 +13864,16927,30182,30181,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.1217346,8.3328295,5.0347314,42,0,-60.74712,0,3,3,2021,7,0,55,56,1,0,0,6.623848,6.623848,.05,.05,0,0,0,0,0,0,1,1,0,5.0164065,5.1004124,59.74,45.34,47.4,49.86,10,1,1,0,0,12,4,4,1,994,166827.8,37929.328,185729.67,0,2088.7495,0,1604.0074 +13865,16928,30183,30184,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.62745,8.3881016,0,9,2,90.449043,-9,-9,-9,2021,19,7,48,0,1,7,0,15.386892,15.386892,.05,.05,0,0,0,0,0,7,0,0,0,0,0,37.77,43.43,33.96,47.68,8.333333333333334,1,1,0,1,14,4,4,1,2595,386754.38,266438.75,232865.66,16481.402,8109.4766,0,3403.877 +13865,16928,30184,30183,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3421326,7.3172975,0,9,-2,-28.114897,0,-9,-9,2021,27,12,30,25,1,12,0,6.6999822,6.6999822,0,0,0,0,0,0,0,7,0,0,0,0,0,33.96,47.68,37.77,43.43,3.333333333333333,1,1,0,0,12,4,4,1,2595,386754.38,266438.75,232865.66,16481.402,8109.4766,0,3403.877 +13866,16929,30185,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,5.3573194,5.2236843,0,0,-868.6853,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0565262,58.26,19.15,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,751,-97290.336,-31006.037,0,0,0,0,1027.9415 +13867,16930,30186,30187,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.1624403,9.0350351,0,10,4,207.92992,0,2,1,2021,7,0,44,37,1,0,0,19.93298,19.93298,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,45.24,51.95,8.333333333333334,1,1,0,0,12,1,5,1,909.5,97429.875,201046.31,130276.54,68339.359,5836.7437,0,4411.1514 +13867,16930,30187,30186,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.1400709,8.2073107,0,10,-4,-134.10262,0,-9,-9,2021,6,0,39,39,1,0,0,9.9796076,9.9796076,.05,.05,0,0,0,0,0,7,0,0,0,0,0,45.24,51.95,57.06,57.76,6.666666666666667,1,1,0,0,10,1,5,1,909.5,97429.875,201046.31,130276.54,68339.359,5836.7437,0,4411.1514 +13868,16931,30188,-9,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,7.3439221,7.4252934,0,0,-1080.9984,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.788156,7.2071562,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,742,420266.28,168884.13,182135.53,0,0,0,1195.4476 +13869,16932,30189,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.2823849,8.0271921,0,0,-896.12671,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6648698,8.0547419,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,961,840753.44,230416.58,474367.31,0,0,0,1723.6296 +13870,16933,30190,30192,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4198656,8.497467,24,15,-78.825829,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9602194,8.2697744,57.91,48.98,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30191,-9,30192,30190,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-976.71198,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30192,30190,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.2830677,9.4462967,0,25,-15,-41.735703,0,2,2,2021,6,0,50,40,1,0,0,27.705698,27.705698,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,9,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30193,-9,30192,30190,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-982.47461,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7593899,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13871,16934,30194,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3249741,8.7558203,0,0,0,-1012.7451,0,3,2,2021,28,12,37,42,1,12,0,12.750587,12.750587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.1,55.77,-9,-9,3.333333333333333,1,1,0,0,12,12,4,0,420,447213,121213.16,0,0,7903.5747,670.69171,1827.391 +13872,16935,30195,30196,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.2472906,7.3888264,0,20,-2,-96.906151,0,3,3,2021,11,0,19,19,1,0,0,8.2467299,8.2467299,.05,.05,0,0,0,0,0,0,1,1,0,2.9415112,0,50.27,48.86,46.44,59.62,6.666666666666667,1,1,0,0,9,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30196,30195,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6988659,8.9076147,0,20,2,-83.703781,0,2,2,2021,11,2,42,45,1,2,0,24.363583,24.363583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,50.27,48.86,6.666666666666667,1,1,0,0,9,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30197,-9,30195,30196,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.31244,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30198,-9,30195,30196,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68176,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13873,16936,30199,30200,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7253666,8.9009562,0,11,1,77.212158,0,1,2,2021,12,1,120,120,1,1,0,6.9631419,6.9631419,.05,.05,0,0,0,0,0,6,1,1,0,0,0,49.24,40.9,31.54,58.69,8.333333333333334,1,1,0,0,13,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30200,30199,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3335505,8.8105326,0,18,-1,28.285347,0,2,3,2021,29,10,80,45,1,10,0,7.1834836,7.1834836,.05,.05,0,0,0,0,0,0,1,1,0,7.4207382,0,31.54,58.69,49.24,40.9,1.666666666666667,1,1,0,0,13,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30201,-9,30199,30200,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.37292,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30202,-9,30199,30200,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-836.33905,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13874,16937,30203,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.1972027,5.5009851,0,0,-951.82733,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1253071,60.12,54.8,-9,-9,10,1,1,0,0,0,9,2,0,246,150988.52,0,0,0,0,0,-258.12656 +13875,16938,30204,30205,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.6667595,8.0079098,12,-12,-12.128822,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.4817629,50.74,51,33.45,37.41,8.333333333333334,1,1,0,1,12,10,4,1,1621.5,1210674.8,740461.38,267839.94,0,0,0,3673.0977 +13875,16938,30205,30204,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.3798003,7.7986512,12,12,23.603045,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1545734,7.5785909,33.45,37.41,50.74,51,3.333333333333333,1,1,0,0,6,10,4,1,1621.5,1210674.8,740461.38,267839.94,0,0,0,3673.0977 +13876,16939,30206,30207,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,-8,47.150356,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1381721,0,35.54,45.64,55.89,39.77,3.333333333333333,1,1,0,0,1,12,4,1,397,2300360,811446.63,507823.56,0,0,0,3024.501 +13876,16939,30207,30206,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.3419781,8.7721434,8,8,-44.994671,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5237842,8.2065086,55.89,39.77,35.54,45.64,8.333333333333334,1,1,0,0,0,12,4,1,397,2300360,811446.63,507823.56,0,0,0,3024.501 +13877,16940,30208,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,6.5235567,6.4535799,0,0,-1049.9427,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,7.099937,0,0,1,1,0,0,6.5550914,53.11,32.53,-9,-9,10,1,1,0,0,0,10,2,1,240,86221.859,10549.002,0,0,0,0,1104.1343 +13877,16941,30209,-9,30208,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.1155186,6.6062298,0,0,-1018.0699,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1269879,58.72,48.95,-9,-9,0,1,1,1,0,0,10,2,1,3725,848779.38,648359.75,0,0,0,0,1294.6848 +13878,16942,30210,30211,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.4420843,8.65236,0,9,0,66.814423,0,2,2,2021,11,0,36,36,1,0,0,14.538299,14.538299,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.43,53.15,8.333333333333334,1,1,0,0,10,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30211,30210,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.7572927,8.7723455,0,9,0,69.645439,0,2,2,2021,12,1,28,28,1,1,0,18.334017,18.334017,.05,.05,0,0,0,0,0,0,1,1,0,3.6916826,0,48.43,53.15,48.87,58.55,8.333333333333334,1,1,0,0,9,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30212,-9,30211,30210,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.09747,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30213,-9,30211,30210,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.69855,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13879,16943,30214,30215,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.7695723,8.3650904,0,18,1,106.67811,0,2,2,2021,10,2,55,47,1,2,0,11.09676,11.09676,0,0,.05,0,0,0,0,0,0,0,0,1.4832525,0,48.28,60.18,46.5,58.26,8.333333333333334,1,1,0,0,10,10,5,1,979.5,1067220.8,779578.63,263635.38,0,0,0,3069.356 +13879,16943,30215,30214,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.0936966,7.9218235,0,17,-1,34.274509,0,2,1,2021,8,0,35,37,1,0,0,11.628306,11.628306,0,0,0,0,0,0,0,0,0,0,0,1.1653507,0,46.5,58.26,48.28,60.18,6.666666666666667,1,1,0,0,7,10,5,1,979.5,1067220.8,779578.63,263635.38,0,0,0,3069.356 +13880,16944,30216,30217,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,0,0,0,7,-6,79.316635,0,2,2,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,49.97,53.99,8.333333333333334,2,3,1,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30217,30216,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.0590563,7.6796141,0,22,6,18.86058,0,3,3,2021,8,0,38,38,1,0,0,9.7784281,9.7784281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,59.43,58.05,5,2,3,0,0,9,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30218,-9,30216,30217,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.1093,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30219,-9,30216,30217,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.43274,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30220,-9,30216,30217,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1081.0566,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,.32951933,0,1,1,0,0,0,44.13,59.37,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13881,16945,30221,-9,30224,30222,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-856.8573,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30222,30224,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.8698053,9.0567741,0,8,-8,-29.23768,0,-9,-9,2021,9,0,40,40,1,1,0,24.296265,24.296265,.05,.05,0,0,0,0,0,0,1,1,0,5.1343198,0,51,56,52.25,53.24,8,1,1,0,0,1,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30223,-9,30224,30222,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.35059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30224,30222,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.9566536,7.6766648,0,21,8,51.669167,0,2,-9,2021,11,0,28,28,1,0,0,10.707077,10.707077,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.25,53.24,51,56,6.666666666666667,1,1,0,0,7,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13882,16946,30225,30226,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8074632,7.6766458,0,9,-12,4.6023946,0,2,3,2021,6,0,28,28,1,0,0,12.137794,12.137794,.05,.05,0,0,0,0,0,0,0,0,0,7.0855894,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,8,5,1,3312,3101042.8,1725459,999706.19,0,0,0,5619.9434 +13882,16946,30226,30225,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.8920145,9.0616989,0,9,12,-45.675007,0,2,2,2021,7,0,53,49,1,0,0,19.530256,19.530256,.05,.05,0,0,0,0,0,0,0,0,0,7.5151124,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,8,5,1,3312,3101042.8,1725459,999706.19,0,0,0,5619.9434 +13883,16947,30227,-9,30229,30228,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.01459,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30228,30229,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.1519222,9.0468321,0,11,6,-68.424553,0,2,2,2021,8,0,84,72,1,0,0,10.943281,10.943281,.05,.05,0,0,0,0,0,0,1,1,0,4.925601,0,55.47,52.91,62.49,55.09,8.333333333333334,1,1,0,0,13,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30229,30228,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.5218124,8.6663637,0,21,-6,-72.382462,0,2,3,2021,10,0,24,27,1,0,0,22.706411,22.706411,.05,.05,0,0,0,0,0,2,1,1,0,0,0,62.49,55.09,55.47,52.91,8.333333333333334,1,1,0,0,13,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30230,-9,30229,30228,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.6601,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13884,16948,30231,30232,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,12,-1,37.862164,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.78,23.65,47.8,32.53,5,1,1,1,1,0,12,2,0,745.5,153835.56,173226.73,0,0,0,0,1602.5162 +13884,16948,30232,30231,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.6149945,5.4474468,12,1,-.58970064,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,1,0,6.6097159,0,0,1,0,1,0,6.010252,47.8,32.53,39.78,23.65,5,1,1,0,0,10,12,2,0,745.5,153835.56,173226.73,0,0,0,0,1602.5162 +13884,16949,30233,-9,30231,30232,1,0,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-994.52148,0,3,2,2021,31,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.63,52.8,-9,-9,0,1,1,1,0,0,12,1,0,2792,-11887.916,0,0,0,0,0,1092.9974 +13885,16950,30234,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.4554844,8.3435278,0,0,-938.51617,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2909524,8.34408,38.27,39.23,-9,-9,5,1,1,0,0,0,11,5,1,162,397934.41,195939.92,0,0,0,0,3644.7844 +13886,16951,30235,30236,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-62.041214,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,.38264838,0,44.7,50.97,54,46,10,1,1,0,0,0,6,2,1,241.5,381672.13,145807.83,135534.16,0,0,0,1426.8845 +13886,16951,30236,30235,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9943638,7.1738033,47,2,-90.826927,0,-9,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,127.61301,0,0,1,1,0,0,6.7968955,54,46,44.7,50.97,8,1,1,0,0,0,6,2,1,241.5,381672.13,145807.83,135534.16,0,0,0,1426.8845 +13887,16952,30237,30238,-9,-9,1,0,50,1,4,0,3,3,-9,0,5,6.5474572,6.6451182,0,8,-7,-25.295376,0,3,3,2021,8,0,10,10,1,0,0,7.6007514,7.6007514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,52.64,38.41,5,2,3,0,0,6,4,3,1,613,264972.94,263823.5,0,0,0,0,735.1759 +13887,16952,30238,30237,-9,-9,1,1,57,1,4,0,3,3,-9,0,2,7.9798565,8.0641241,0,34,7,147.31067,0,3,3,2021,9,0,35,35,1,0,0,11.920252,11.920252,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.64,38.41,51.39,59.18,5,2,3,0,0,11,4,3,1,613,264972.94,263823.5,0,0,0,0,735.1759 +13887,16953,30239,-9,30237,30238,1,1,28,1,4,0,1,1,-9,0,5,7.0741277,6.9697437,0,0,0,-1079.741,0,3,3,2021,1,0,37,37,1,0,1,3.5075154,3.5075154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,7,4,2,1,1137,-82285.805,-8405.4717,0,0,0,0,570.9859 +13887,16954,30240,-9,30237,30238,1,1,26,1,4,0,2,2,-9,0,3,8.1410608,8.0230064,0,0,0,-881.33649,0,3,3,2021,12,0,20,-9,1,0,1,17.273415,17.273415,0,0,0,0,0,0,0,0,1,1,0,0,0,44.09,57.1,-9,-9,3.333333333333333,2,3,0,1,3,4,4,1,1167,223682.14,-38842.582,0,0,0,0,949.63513 +13887,16955,30241,-9,30245,30246,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-820.8858,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30242,-9,30245,30246,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-922.84229,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30243,-9,30245,30246,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1139.7482,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30244,-9,30245,30246,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1114.8062,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30245,30246,-9,-9,1,0,32,1,4,0,1,1,-9,0,4,0,0,0,8,0,51.161469,0,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.04,55.86,5,2,3,0,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30246,30245,30237,30238,1,1,32,1,4,0,1,1,-9,0,3,8.8800154,8.5989838,0,8,0,109.09677,0,3,3,2021,8,1,33,33,1,1,0,16.587585,16.587585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,49.12,57.28,8.333333333333334,2,3,0,0,9,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13888,16956,30247,30249,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.8006811,8.8132639,0,13,-1,-41.289112,0,2,1,2021,12,1,45,48,1,1,0,19.18083,19.18083,.05,.05,0,0,0,0,0,0,1,1,0,7.0744586,0,35.73,52.39,41.68,59.06,6.666666666666667,1,1,0,0,14,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13888,16956,30248,-9,30249,30247,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.04327,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13888,16956,30249,30247,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7682409,8.6475916,0,13,1,28.98616,0,2,1,2021,12,2,35,35,1,2,0,19.995476,19.995476,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.68,59.06,35.73,52.39,6.666666666666667,1,1,0,0,15,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13889,16957,30250,30251,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.1412382,8.130229,0,29,-1,-80.475555,0,3,3,2021,14,2,85,55,1,2,0,5.2557487,5.2557487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.81,61.51,10,1,1,0,0,13,13,4,1,608,485182.63,-5739.6016,238214.84,0,0,0,2469.02 +13889,16957,30251,30250,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.6482968,7.2732234,0,12,1,84.541946,0,-9,-9,2021,17,6,17,22,1,6,0,13.194278,13.194278,0,0,0,0,0,0,0,0,0,0,0,.79578,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,12,13,4,1,608,485182.63,-5739.6016,238214.84,0,0,0,2469.02 +13890,16958,30252,30254,-9,-9,1,1,53,0,2,0,2,2,-9,1,2,0,0,0,2,19,48.99041,-9,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,37.25,54.45,56.22,6.666666666666667,1,1,0,1,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30253,-9,30254,30252,1,0,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-972.48859,-9,2,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30254,30252,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.5661097,6.448266,0,2,-19,-102.24358,0,3,2,2021,9,0,14,16,1,0,0,5.6254005,5.6254005,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,40.37,37.25,8.333333333333334,2,3,0,0,5,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30255,-9,30254,30252,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.56177,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13891,16959,30256,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-887.23792,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,36.19,-9,-9,3.333333333333333,1,1,1,0,6,4,1,0,664,0,0,0,0,0,0,-284.51385 +13892,16960,30257,30258,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,17,11,46.684917,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.54,28.69,49.89,47.39,8.333333333333334,1,1,0,0,0,7,2,0,850.5,83489.602,0,0,0,0,0,583.56726 +13892,16960,30258,30257,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.6525335,6.8338709,0,17,-11,25.398027,0,2,1,2021,9,1,18,12,1,1,0,6.3249135,6.3249135,0,0,0,0,0,0,0,108,1,1,0,0,0,49.89,47.39,52.54,28.69,3.333333333333333,2,3,0,1,3,7,2,0,850.5,83489.602,0,0,0,0,0,583.56726 +13893,16961,30259,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-951.82355,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.01,63.17,-9,-9,8.333333333333334,2,3,0,0,6,2,1,1,493,0,0,0,0,0,0,979.1311 +13893,16962,30260,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-833.15509,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,1,0,0,2,1,1,584,85789.055,-8883.9756,0,0,0,0,399.18268 +13893,16963,30261,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,0,0,0,0,0,-901.07538,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,2,3,1,0,0,2,1,1,8187,98245.867,0,0,0,0,0,1196.8806 +13894,16964,30262,30263,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.8288069,7.1659741,8,-1,-119.93695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7376809,6.2366748,63.49,41.12,57.98,29.33,10,1,1,0,0,0,11,2,1,395.5,146575.75,101774.45,138226.28,0,0,0,2585.5791 +13894,16964,30263,30262,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.2451181,6.4395843,8,1,73.938637,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.534658,0,0,1,1,0,6.3663282,6.3398042,57.98,29.33,63.49,41.12,8.333333333333334,1,1,0,0,0,11,2,1,395.5,146575.75,101774.45,138226.28,0,0,0,2585.5791 +13895,16965,30264,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.8223324,4.8422055,0,0,-876.97943,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1496696,0,0,1,1,0,1.6156474,5.1629329,44.66,37.84,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,894,-145816.05,0,0,0,0,0,605.81335 +13896,16966,30265,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,7.7466369,7.3560467,0,0,0,-1054.6105,0,1,-9,2021,15,4,21,21,1,4,0,13.10638,13.10638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.24,35.51,-9,-9,5,3,4,0,0,14,8,2,0,204,71752.672,-47237.313,0,0,0,0,3928.2295 +13896,16967,30266,-9,30265,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-918.95892,-9,2,-9,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,1019,-80137.641,0,0,0,0,0,0 +13897,16968,30267,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-914.65009,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7305311,0,52,46,-9,-9,5,1,1,0,0,0,10,1,1,2648,25510.021,0,0,0,607.06689,0,924.80182 +13898,16969,30268,30269,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,7.902832,7.821095,0,6,1,122.45441,0,3,3,2021,8,0,44,44,1,0,0,8.6393166,8.6393166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.17,27.83,5,1,1,0,0,8,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13898,16969,30269,30268,-9,-9,1,0,51,0,1,0,3,3,-9,0,2,7.5685587,7.3966665,0,6,-1,-3.7863913,0,3,3,2021,12,0,26,26,1,0,0,7.1069355,7.1069355,0,0,0,0,0,0,0,0,1,1,0,0,0,52.17,27.83,51.83,57.2,5,1,1,0,0,8,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13898,16969,30270,-9,30269,30268,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1023.4522,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13899,16970,30271,30272,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.624691,8.4551306,0,3,0,100.34766,0,1,1,2021,12,3,46,48,1,3,0,14.673918,14.673918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,50.01,55.31,8.333333333333334,1,1,0,0,9,10,5,0,1685.5,244892.81,-67519.641,425097,231868.05,-254.48396,4954.9453,5016.2461 +13899,16970,30272,30271,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4479418,8.8781767,0,3,0,78.710686,-9,-9,-9,2021,13,1,45,0,1,1,0,15.336298,15.336298,.05,.05,0,0,0,0,0,0,0,0,0,6.831233,0,50.01,55.31,46.16,58.62,6.666666666666667,1,1,0,0,10,10,5,0,1685.5,244892.81,-67519.641,425097,231868.05,-254.48396,4954.9453,5016.2461 +13900,16971,30273,30274,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.952734,8.7441721,0,7,0,107.73942,0,2,3,2021,4,0,38,45,1,0,0,21.588696,21.588696,.05,.05,0,0,0,0,0,0,0,0,0,.33351964,0,55.93,52.62,53.23,47.51,6.666666666666667,1,1,0,0,7,7,5,1,327,35206.613,-86459.82,0,0,8514.251,0,5459.4185 +13900,16971,30274,30273,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.918149,8.7210846,0,7,0,120.79938,0,2,3,2021,9,0,50,50,1,0,0,15.544016,15.544016,0,0,0,0,0,0,0,0,0,0,0,1.4496467,0,53.23,47.51,55.93,52.62,6.666666666666667,1,1,0,0,8,7,5,1,327,35206.613,-86459.82,0,0,8514.251,0,5459.4185 +13901,16972,30275,-9,30278,-9,1,1,22,0,1,0,2,2,-9,0,4,7.6757832,7.8745008,0,0,0,-1004.0702,0,3,3,2021,10,0,40,0,1,1,1,6.6967831,6.6967831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,0,945,-142382.13,73655.719,0,0,0,0,932.54883 +13901,16973,30276,-9,30278,-9,1,0,22,0,1,0,2,2,-9,0,4,7.4874544,7.6229692,0,0,0,-972.71497,0,3,2,2021,9,0,32,32,1,0,1,5.3910875,5.3910875,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,3,6,3,0,837,102160.99,0,0,0,0,0,1406.8633 +13901,16974,30277,-9,30278,-9,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-996.56274,1,3,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8167968,0,57.57,43.81,-9,-9,10,2,3,0,0,2,6,1,0,224,151826.44,0,0,0,0,0,245.95134 +13901,16975,30278,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,6.7317076,7.1033792,0,0,0,-943.26929,0,3,3,2021,10,0,16,16,1,1,0,5.4756074,5.4756074,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,2,3,0,1,2,6,2,0,791,52787.523,0,0,0,0,0,1868.0984 +13901,16975,30279,-9,30278,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.0938,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,791,52787.523,0,0,0,0,0,1868.0984 +13902,16976,30280,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,9.1905622,9.1359205,0,0,0,-1107.0557,0,2,2,2021,11,0,40,38,1,0,0,28.156765,28.156765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,699,63787.961,21483.947,90469.016,31378.859,13993.392,2308.1536,3451.6189 +13903,16977,30281,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,8.533536,8.2663565,0,0,0,-991.64545,0,-9,-9,2021,10,1,32,33,1,1,0,19.002958,19.002958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.03,59.09,-9,-9,6.666666666666667,1,1,0,0,14,2,4,1,439,-38866.613,76129.367,124655.69,68977.016,3645.9133,-247.83664,1794.5569 +13903,16977,30282,-9,30281,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.7771,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,439,-38866.613,76129.367,124655.69,68977.016,3645.9133,-247.83664,1794.5569 +13904,16978,30283,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7171588,7.9572973,6.3793626,0,0,-926.77887,-9,3,3,2021,11,1,48,0,1,1,0,5.1941729,5.1941729,0,0,0,0,0,0,0,0,0,0,0,1.3139322,6.4983501,47.93,49.39,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,322,987216.44,630351.19,390185.09,0,0,0,1553.6819 +13905,16979,30284,30285,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,8.4651833,8.6230087,0,10,-1,68.153481,-9,1,3,2021,11,1,37,0,1,1,0,13.094411,13.094411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.16,48.66,37.44,35.75,5,1,1,0,0,12,2,5,1,580,932367.5,-28574.496,992445.56,393910.69,9587.6914,0,2963.2759 +13905,16979,30285,30284,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.5125456,8.6029663,0,8,1,-143.32892,-9,3,-9,2021,14,4,35,0,1,4,0,14.984694,14.984694,0,0,0,0,0,0,0,0,1,1,0,2.2152658,0,37.44,35.75,45.16,48.66,3.333333333333333,1,1,0,0,12,2,5,1,580,932367.5,-28574.496,992445.56,393910.69,9587.6914,0,2963.2759 +13906,16980,30286,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6244211,8.3477688,0,0,0,-1106.8749,0,3,-9,2021,6,0,25,25,1,0,0,16.607042,16.607042,0,0,0,0,0,0,0,0,0,0,0,7.2668672,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,1486,419442.81,-2260.7468,0,0,0,0,2260.0261 +13907,16981,30287,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9476509,8.9867086,0,0,0,-959.1546,0,2,2,2021,11,2,45,55,1,2,0,20.709562,20.709562,0,0,0,0,0,0,1.2384801,0,0,0,0,4.1633363,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,250,599182.56,121914.7,548486.44,64800.664,0,0,3649.4358 +13908,16982,30288,-9,30290,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.42041,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13908,16982,30289,-9,30290,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.40393,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13908,16982,30290,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.431531,7.7309809,6.4516888,0,0,-907.75488,0,2,3,2021,11,1,20,1,1,1,0,10.789407,10.789407,.05,.05,0,0,0,0,0,0,1,1,0,5.8753695,0,35.57,57.14,-9,-9,5,1,1,0,0,5,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13909,16983,30291,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3821483,7.5388255,0,0,-945.18103,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.231142,7.3796349,39.49,48.49,-9,-9,6.666666666666667,1,1,0,0,5,9,3,0,271,690626.06,234276.38,320751.03,0,29050.766,0,1623.5095 +13910,16984,30292,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.0107355,6.0038128,0,0,-993.54681,-9,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.9359155,6.1476064,46.08,57.2,-9,-9,10,1,1,0,0,0,12,2,1,750,243648.05,-22858.586,110613.03,0,0,0,1218.5529 +13911,16985,30293,30294,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.9979963,8.4163113,0,41,1,-37.097252,0,2,2,2021,8,0,39,38,1,0,0,11.363921,11.363921,.05,.05,.05,0,0,0,0,0,0,0,0,2.7086918,0,48.94,54.95,41.29,55.13,6.666666666666667,1,1,0,0,11,9,5,1,822.5,1993343.6,1448831.4,325410.41,62735.102,0,0,3438.292 +13911,16985,30294,30293,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.9172258,8.4694977,0,41,-1,-40.706207,0,3,2,2021,15,4,44,37,1,4,0,16.137093,16.137093,.05,.05,.05,0,0,0,0,2,0,0,0,4.1233506,0,41.29,55.13,48.94,54.95,5,1,1,0,0,11,9,5,1,822.5,1993343.6,1448831.4,325410.41,62735.102,0,0,3438.292 +13912,16986,30295,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.8846145,6.7895298,0,0,-989.03894,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7540123,7.1687369,40.87,44.58,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,744,90424.508,133990.84,226023.75,204419.13,0,0,1037.1394 +13913,16987,30296,30297,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1596994,8.1504641,0,12,-4,95.948128,0,3,3,2021,10,0,42,44,1,0,0,7.8580461,7.8580461,.05,.05,.05,0,0,0,0,0,0,0,0,2.7465866,0,54.2,57.49,55.32,45.22,8.333333333333334,1,1,0,0,10,12,4,1,424.5,554802.63,155978.22,179088.53,0,0,0,2863.9502 +13913,16987,30297,30296,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.0571756,8.1815739,0,12,4,-69.452736,0,2,1,2021,6,0,30,25,1,0,0,13.581287,13.581287,0,0,0,0,0,0,0,0,0,0,0,1.8524097,0,55.32,45.22,54.2,57.49,8.333333333333334,1,1,0,0,6,12,4,1,424.5,554802.63,155978.22,179088.53,0,0,0,2863.9502 +13914,16988,30298,-9,30299,-9,1,1,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-858.48163,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16988,30299,-9,-9,-9,1,0,37,2,4,0,2,2,-9,1,4,0,0,0,0,0,-1140.7903,0,2,-9,2021,11,0,0,16,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49,55,-9,-9,7,4,2,0,1,1,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16988,30300,-9,30299,-9,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-964.03876,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16989,30301,-9,30299,-9,1,1,21,2,4,0,2,2,-9,1,5,0,0,0,0,0,-993.04114,0,2,3,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.32,54.19,-9,-9,5,4,2,1,0,0,6,1,0,796,103165.31,0,0,0,0,0,921.8407 +13914,16990,30302,-9,30299,-9,1,0,20,2,4,0,2,2,-9,0,2,0,0,0,0,0,-912.87793,0,2,3,2021,19,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.88,55.82,-9,-9,6.666666666666667,4,2,0,0,0,6,1,0,334.5,126058.64,0,0,0,0,0,251.8217 +13914,16990,30303,-9,30302,-9,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-930.20667,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,334.5,126058.64,0,0,0,0,0,251.8217 +13915,16991,30304,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.4365,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.21,39.31,-9,-9,10,1,1,0,0,0,2,1,0,394,-67099.625,0,0,0,0,0,1323.4523 +13915,16992,30305,-9,-9,30304,1,1,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1029.4089,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,2,1,0,436,0,0,0,0,0,0,619.81329 +13916,16993,30306,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.9986663,7.7506399,0,0,-1049.5005,0,3,3,2021,8,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7828665,57.09,43.99,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,626,903355.56,446062.91,90503.633,0,0,0,1116.3839 +13917,16994,30307,30308,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.554636,8.8558722,0,42,0,-133.21884,0,3,3,2021,6,0,25,34,1,0,0,27.46489,27.46489,0,0,0,0,0,0,0,0,0,0,0,7.6423254,0,58.15,52.91,58.81,52.66,6.666666666666667,1,1,0,0,10,7,5,1,263,3296429.5,799948.63,1681112.4,0,0,0,4319.6421 +13917,16994,30308,30307,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0747986,8.0507593,0,42,0,-182.29764,0,3,3,2021,9,0,30,26,1,0,0,13.337334,13.337334,0,0,0,0,0,0,0,0,0,0,0,0,0,58.81,52.66,58.15,52.91,6.666666666666667,1,1,0,0,11,7,5,1,263,3296429.5,799948.63,1681112.4,0,0,0,4319.6421 +13918,16995,30309,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,5.8407569,5.7733126,0,0,-1145.2273,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.7285671,0,53.38,52.51,-9,-9,8.333333333333334,1,1,0,0,14,4,2,1,1834,29030.717,0,0,0,0,0,1901.2582 +13919,16996,30310,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,6.76333,7.1198325,5.1031265,0,0,-1035.1427,0,-9,-9,2021,10,0,59,65,1,0,0,2.0769055,2.0769055,0,0,0,0,0,0,0,0,0,0,0,5.0696106,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,944,-10090.784,0,0,0,0,0,-535.96082 +13920,16997,30311,30312,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,7.6370745,7.8868313,0,16,-3,-207.54889,-9,2,2,2021,28,11,37,0,1,11,0,6.4416895,6.4416895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.41,65.22,51.41,56.15,1.666666666666667,1,1,0,1,8,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13920,16997,30312,30311,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.9877443,9.1987238,0,16,3,88.507759,-9,2,2,2021,17,6,37,0,1,6,0,20.471163,20.471163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,20.41,65.22,3.333333333333333,1,1,0,1,10,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13920,16997,30313,-9,30311,30312,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-994.82129,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13921,16998,30314,-9,-9,-9,1,0,68,0,1,0,2,2,-9,0,4,0,7.0502877,6.8679309,0,0,-945.13293,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.965333,55.19,54.26,-9,-9,3.333333333333333,1,1,0,0,7,2,2,1,2316,320918.75,246177.97,175693.14,0,7506.7319,0,9.0837164 +13921,16999,30315,-9,30316,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.01343,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,1124,101732.86,2762.4658,85157.422,30192.301,0,0,1121.4111 +13921,16999,30316,-9,30314,-9,1,0,36,0,1,0,2,2,-9,0,3,8.0862207,8.2699242,4.1822715,0,0,-985.461,0,2,2,2021,9,0,36,36,1,0,0,12.963582,12.963582,.05,.05,0,0,0,0,0,0,1,1,0,5.4357462,0,50.14,53.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,1124,101732.86,2762.4658,85157.422,30192.301,0,0,1121.4111 +13922,17000,30317,-9,30319,30318,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.75031,-9,3,3,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13922,17000,30318,30319,-9,-9,1,1,53,0,1,0,3,3,-9,0,3,8.3662672,8.5112896,0,9,-1,-37.362503,0,2,2,2021,11,2,50,60,1,2,0,10.134274,10.134274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.89,56.79,32.03,55.7,6.666666666666667,1,1,0,0,10,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13922,17000,30319,30318,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,7.5034342,7.1969829,0,9,1,-2.8660586,0,3,3,2021,21,9,25,20,1,9,0,7.1173759,7.1173759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.03,55.7,35.89,56.79,5,1,1,0,0,10,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13923,17001,30320,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.7296963,8.4210863,0,0,0,-903.65424,0,2,2,2021,13,3,35,37,1,3,0,21.866503,21.866503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.24,60.65,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,1030,506165,420557,192527.5,43851.301,0,0,2388.4514 +13924,17002,30321,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,4.5625634,5.0767632,0,0,-838.64661,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7157626,36.86,19.89,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,143,-214291.3,0,0,0,0,0,494.19711 +13925,17003,30322,30323,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,41,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.52,38.36,10,1,1,0,0,0,12,1,0,377.5,274069.69,0,170447.75,0,0,0,43.438507 +13925,17003,30323,30322,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52,38.36,62.66,52.4,6.666666666666667,1,1,0,0,0,12,1,0,377.5,274069.69,0,170447.75,0,0,0,43.438507 +13926,17004,30324,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,9.9557638,10.085687,0,0,-892.41943,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,9.861721,0,90.325172,0,1,1,0,6.5505018,9.7901487,39.97,20.89,-9,-9,8.333333333333334,1,1,0,0,0,12,5,0,1251,512557.44,377234.66,324129.03,0,0,0,13091.002 +13927,17005,30325,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.8166709,7.693367,0,0,-1086.5814,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.86023,71.69677,136.16197,0,1,1,0,.16533276,7.9024572,53,44,-9,-9,8,3,4,0,0,0,12,3,1,358,579461,192918.5,373229.84,0,0,0,2233.6589 +13927,17006,30326,-9,30325,-9,1,1,46,0,0,0,2,2,-9,0,3,7.9622049,7.9032717,0,0,0,-1009.9877,0,2,2,2021,9,0,38,38,1,0,0,8.4045162,8.4045162,0,0,0,0,0,0,0,42,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,10,12,3,1,673,-164894.56,0,0,0,186.64763,0,407.70291 +13928,17007,30327,30328,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,4.7653246,4.9942517,51,-3,99.157028,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0646229,4.7686872,33.92,22.81,57.34,47.92,3.333333333333333,1,1,0,0,0,4,3,1,1313.5,1876377,1365943.6,399606.63,0,0,0,4076.165 +13928,17007,30328,30327,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.1358089,7.9624791,12,3,91.314598,0,-9,-9,2021,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.3030591,8.2971725,57.34,47.92,33.92,22.81,8.333333333333334,1,1,0,0,14,4,3,1,1313.5,1876377,1365943.6,399606.63,0,0,0,4076.165 +13929,17008,30329,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.3309717,8.3765869,0,0,0,-893.18524,0,2,2,2021,8,0,45,45,1,0,0,8.9294186,8.9294186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,10,4,0,920,996649.19,601670.94,308974,0,0,0,1093.924 +13930,17009,30330,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1038933,8.0153618,0,0,0,-1027.0916,0,2,3,2021,12,1,39,39,1,1,0,8.5177145,8.5177145,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.61,22.34,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,545,651782.75,277395.81,103589.08,0,0,0,1178.5409 +13931,17010,30331,30333,-9,-9,1,1,41,0,2,0,2,2,-9,1,1,0,0,0,3,2,0,-9,3,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,36.77,43.96,5,1,1,0,0,9,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30332,-9,30333,30331,1,1,17,0,2,1,2,0,-9,0,5,0,5.4776125,5.1927691,0,0,-952.52716,-9,2,2,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6875196,0,57.26,48.5,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30333,30331,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,3,-2,0,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.77,43.96,21.97,21.3,6.666666666666667,1,1,0,0,9,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30334,-9,30333,30331,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.36908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.3162716,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17011,30335,-9,30333,30331,1,1,19,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1050.8778,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,441,0,0,0,0,0,0,-431.16479 +13932,17012,30336,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.27161,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3422527,0,0,1,1,0,0,0,41.93,31.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1098,463943.06,0,326677.75,0,0,0,654.77228 +13933,17013,30337,-9,30339,30338,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.90497,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30338,30339,-9,-9,1,1,35,0,2,0,2,2,-9,1,2,8.8222055,8.2941008,0,8,1,129.35681,0,3,2,2021,20,8,43,35,1,8,0,11.02123,11.02123,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,22.88,55.89,24.87,53.81,3.333333333333333,1,1,0,1,9,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30339,30338,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.2685013,7.0361791,0,8,-1,-57.335644,0,-9,-9,2021,25,12,32,32,1,12,0,5.5404744,5.5404744,.05,.05,0,0,0,0,0,0,1,0,1,0,0,24.87,53.81,22.88,55.89,3.333333333333333,1,1,0,0,9,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30340,-9,30339,30338,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1865,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13934,17014,30341,-9,30344,30343,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.92126,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30342,-9,30344,30343,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0735,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30343,30344,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.9122124,8.7867012,0,4,8,-76.168571,0,2,2,2021,9,0,40,41,1,0,0,20.474878,20.474878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.9,52.64,60.44,27.34,6.666666666666667,1,1,0,0,9,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30344,30343,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.1065693,7.9725075,0,4,-8,-111.06298,0,-9,-9,2021,7,0,26,38,1,0,0,17.590889,17.590889,0,0,0,0,0,0,0,0,1,1,0,0,0,60.44,27.34,55.9,52.64,8.333333333333334,1,1,0,0,8,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13935,17015,30345,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,9.1507721,8.8310509,0,0,-1080.3186,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8975132,9.0943031,52.99,53.95,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,173,6485338.5,971210.19,596563.13,0,0,0,4194.4395 +13936,17016,30346,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.4159598,7.1696482,0,0,-951.98834,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7572207,7.669682,55.51,43.54,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,230,710459.5,399105.97,133951.13,0,0,0,1276.6586 +13937,17017,30347,30348,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,113.36539,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,51.24,60.29,52.11,8.333333333333334,1,1,0,0,7,7,2,1,377,578588.63,240285.14,184008.28,0,0,0,1236.1638 +13937,17017,30348,30347,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7789569,6.8287091,55,0,21.378281,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9984713,60.29,52.11,43.95,51.24,8.333333333333334,1,1,0,0,6,7,2,1,377,578588.63,240285.14,184008.28,0,0,0,1236.1638 +13938,17018,30349,30350,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3121166,8.7082043,0,35,-4,-83.118355,0,2,2,2021,6,0,36,36,1,0,0,14.422296,14.422296,0,0,0,0,0,0,0,14.5,0,0,0,4.8009868,0,46.1,54.45,62.51,39.17,1.666666666666667,1,1,0,0,10,13,5,1,851,1518185,1102025,269866.72,0,1159.8171,0,4103.6055 +13938,17018,30350,30349,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.0440722,8.380497,35,4,-66.880241,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,14.5,0,0,0,6.0360532,8.1092615,62.51,39.17,46.1,54.45,10,1,1,0,0,0,13,5,1,851,1518185,1102025,269866.72,0,1159.8171,0,4103.6055 +13939,17019,30351,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.8730145,6.7629662,0,0,-1021.1255,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9173456,6.5724173,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,447,266068.47,117730.28,0,0,0,0,121.99015 +13940,17020,30352,30353,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3385353,7.905817,0,13,0,130.27196,0,1,2,2021,7,0,30,0,1,0,0,14.971304,14.971304,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,53.53,51,8.333333333333334,1,1,0,0,11,2,4,1,865,425578.56,224165.59,127174.11,13407.009,8679.668,0,2464.3118 +13940,17020,30353,30352,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.232173,7.8970008,0,13,0,-5.1037412,0,1,-9,2021,6,0,40,35,1,0,0,11.001173,11.001173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.53,51,58.89,48.6,8.333333333333334,1,1,0,0,15,2,4,1,865,425578.56,224165.59,127174.11,13407.009,8679.668,0,2464.3118 +13941,17021,30354,-9,30355,30356,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.77911,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13941,17021,30355,30356,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,8.3900986,8.0705614,0,23,-8,-44.575211,0,1,2,2021,7,0,26,50,1,0,0,14.068699,14.068699,0,0,0,0,0,0,0,0,1,1,0,7.3559151,0,54.96,53.17,57.16,56.15,10,1,1,0,0,9,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13941,17021,30356,30355,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.8689127,8.7073212,0,19,8,-23.506372,0,1,1,2021,8,0,45,45,1,0,0,16.166229,16.166229,0,0,0,0,0,0,0,0,1,1,0,3.8653173,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,11,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13942,17022,30357,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3530235,7.3880253,0,4,9,37.938339,0,3,3,2021,16,4,8,9,1,4,0,24.123892,24.123892,0,0,0,0,0,0,0,0,0,0,0,2.1156983,0,39.04,52.49,33.14,64.63,6.666666666666667,1,1,0,0,12,11,3,1,782,151583.14,281616.72,252282.39,15812.843,0,0,2.0694158 +13942,17023,30358,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.6437311,7.6926003,0,4,0,124.11025,0,-9,-9,2021,21,9,33,32,1,9,0,7.4106469,7.4106469,.05,.05,0,0,0,0,0,0,0,0,0,6.8635583,0,33.14,64.63,39.04,52.49,8.333333333333334,1,1,0,0,14,11,3,1,684,184178.08,25032.863,131929.58,0,0,0,1092.9167 +13943,17024,30359,30360,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.9814796,7.3865137,0,26,-7,-82.152534,0,2,2,2021,18,6,20,18,1,6,0,7.5222816,7.5222816,0,0,0,0,0,0,0,7,1,1,0,0,0,43.79,35.64,52.4,52.91,1.666666666666667,1,1,0,0,7,1,3,0,2036,298205.25,17105.762,153060.83,0,0,0,1907.5295 +13943,17024,30360,30359,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.7428427,8.2383852,0,26,7,-83.21769,0,3,3,2021,11,0,59,79,1,0,0,5.0099983,5.0099983,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,52.4,52.91,43.79,35.64,10,1,1,0,0,9,1,3,0,2036,298205.25,17105.762,153060.83,0,0,0,1907.5295 +13943,17025,30361,-9,30359,30360,1,0,20,0,0,0,2,2,1,0,2,0,0,0,0,0,-853.32257,-9,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,37.91,-9,-9,3.333333333333333,1,1,1,0,0,1,1,0,841,81949.422,0,0,0,0,0,931.99695 +13943,17026,30362,-9,30359,30360,1,1,18,0,0,0,2,2,1,1,3,0,0,0,0,0,-783.84399,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.18,54.39,-9,-9,5,1,1,0,0,0,1,1,0,303,83016.672,0,0,0,0,0,535.77551 +13944,17027,30363,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.8008881,8.6526012,3.7371609,0,0,-935.26031,0,1,3,2021,10,0,37,37,1,0,0,15.795221,15.795221,.05,.05,0,0,0,0,0,0,1,1,0,4.0325809,0,48,52.43,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,264,458640.88,403919.63,244751.77,0,47879.445,0,2066.0652 +13945,17028,30364,30365,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0616884,7.7212844,27,-2,-44.171772,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8526168,7.8513565,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,0,7,3,1,966,1635848.8,847099.13,871062.25,221988,0,0,2083.9902 +13945,17028,30365,30364,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,31,2,-57.324799,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9722252,0,54.1,59.11,54.2,57.49,10,1,1,0,0,0,7,3,1,966,1635848.8,847099.13,871062.25,221988,0,0,2083.9902 +13946,17029,30366,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.7877,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,725,0,0,0,0,0,0,496.06079 +13947,17030,30367,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,6.253119,6.1296377,0,0,0,-1105.8774,0,3,3,2021,9,0,10,20,1,0,0,4.1725769,4.1725769,.05,.05,0,0,0,0,0,42,1,1,0,0,0,39.93,57.25,-9,-9,10,4,2,0,0,8,5,2,0,2542,149095.8,115057.47,114241.73,0,10741.17,0,597.841 +13948,17031,30368,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,4.4253683,3.8961897,0,0,-1037.6395,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4288464,57.57,49.69,-9,-9,6.666666666666667,3,4,0,0,0,7,2,1,245,242920.78,143593.63,0,0,0,0,49.982101 +13949,17032,30369,30370,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,0,0,0,2,-24,37.606026,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,66.59999999999999,39.44,7,1,1,0,0,0,4,5,1,223.5,426220.44,150896.17,210925.89,77845.852,14517.291,0,6909.0215 +13949,17032,30370,30369,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6892738,10.045257,0,2,24,-31.258677,0,2,2,2021,4,0,50,57,1,0,0,43.319851,43.319851,.05,.05,0,0,0,0,0,0,1,1,0,0,0,66.59999999999999,39.44,48,56,1.666666666666667,2,3,0,0,8,4,5,1,223.5,426220.44,150896.17,210925.89,77845.852,14517.291,0,6909.0215 +13950,17033,30371,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.9956779,5.6594534,0,0,-1062.9139,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2002711,5.8731036,59.06,37.38,-9,-9,8.333333333333334,1,1,0,0,8,2,2,1,126,93736.992,79070.703,0,0,0,0,623.36877 +13951,17034,30372,30373,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.8617554,7.3299518,5.1752105,37,0,55.919212,0,3,2,2021,8,0,21,20,1,0,0,7.2639809,7.2639809,0,0,0,0,0,0,0,2,0,0,0,3.763253,4.8366766,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,5,4,1,1006,442228.69,523942.19,0,0,14009.697,0,3038.6836 +13951,17034,30373,30372,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.426322,8.4764309,6.8389487,37,0,-139.15717,0,2,3,2021,9,0,30,20,1,0,0,18.173843,18.173843,0,0,0,0,0,0,0,2,0,0,0,7.0628257,6.7773466,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,1006,442228.69,523942.19,0,0,14009.697,0,3038.6836 +13952,17035,30374,30375,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,6,-80.254097,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.68,54.3,50.98,39.67,5,1,1,0,0,2,9,3,0,477,784824.5,507260.25,308781.91,0,0,0,1908.5297 +13952,17035,30375,30374,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,7.6598067,7.6169529,0,10,-6,95.120987,0,-9,-9,2021,14,1,21,21,1,1,0,12.581264,12.581264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.98,39.67,37.68,54.3,1.666666666666667,1,1,0,0,14,9,3,0,477,784824.5,507260.25,308781.91,0,0,0,1908.5297 +13953,17036,30376,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.1542525,7.2777414,0,0,-972.48138,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0051384,7.0635605,49.22,24.76,-9,-9,5,1,1,0,0,0,12,3,1,154,84107.75,191955.42,0,0,0,0,1794.2585 +13954,17037,30377,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.040709,7.0825043,0,0,0,-1063.7852,0,2,3,2021,25,9,17,17,1,9,0,7.3407121,7.3407121,0,0,0,0,0,0,0,27,1,1,0,0,0,31.25,34.53,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,221,-157212.41,0,0,0,0,10933.187,2077.5066 +13955,17038,30378,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.5482283,7.6801386,0,0,0,-974.23712,0,2,3,2021,10,1,25,30,1,1,0,7.9679523,7.9679523,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,253,53888.625,0,0,0,0,0,1878.0699 +13956,17039,30379,30380,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,6.6555209,6.4400301,0,37,3,11.846577,0,3,2,2021,11,1,24,25,1,1,0,4.2122173,4.2122173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,32.31,56.7,6.666666666666667,1,1,0,0,13,8,4,1,1410,672421.75,149059.91,273765.81,0,10388.003,0,3438.0093 +13956,17039,30380,30379,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.2781334,8.1895962,0,37,-3,-16.281574,0,3,2,2021,22,11,31,37,1,11,0,11.903445,11.903445,0,0,0,0,0,0,0,0,0,0,0,8.1830635,0,32.31,56.7,48.77,60.16,3.333333333333333,3,4,0,0,10,8,4,1,1410,672421.75,149059.91,273765.81,0,10388.003,0,3438.0093 +13957,17040,30381,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.3603487,8.1317263,5.5530357,0,0,-1075.6729,0,-9,-9,2021,10,0,40,35,1,0,0,13.864692,13.864692,0,0,.05,0,0,0,0,0,0,0,0,5.3776746,5.5743885,62.27,40.23,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,784,-28734.092,41321.258,0,0,0,0,2662.3037 +13957,17041,30382,-9,-9,30381,1,0,21,0,0,0,2,2,-9,0,4,7.9867187,8.1565247,0,0,0,-899.599,-9,-9,2,2021,8,0,50,0,1,0,1,7.6335788,7.6335788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,10,1,1,0,0,3,6,4,1,1216,-146116.89,36605.363,0,0,6647.5635,0,1159.6689 +13958,17042,30383,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.6113172,7.7074323,0,0,0,-1152.1675,0,3,2,2021,12,0,37,37,1,0,0,8.1701555,8.1701555,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,419,77994.148,0,536.6239,0,685.90662,0,1206.2203 +13959,17043,30384,30385,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.7054243,8.2186584,0,24,-6,2.8136709,0,-9,-9,2021,6,0,55,40,1,0,0,10.052454,10.052454,0,0,0,0,0,0,0,0,1,1,0,2.6713238,0,54.2,57.49,49.41,58.28,8.333333333333334,1,1,0,0,9,7,5,1,717,1077639.3,382725.72,771347,0,0,0,4150.8643 +13959,17043,30385,30384,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.5699167,8.4105959,5.481708,24,6,-71.49897,0,2,2,2021,8,0,55,50,1,0,0,9.8264999,9.8264999,0,0,0,0,0,0,0,0,1,1,0,3.733681,5.030643,49.41,58.28,54.2,57.49,6.666666666666667,1,1,0,0,9,7,5,1,717,1077639.3,382725.72,771347,0,0,0,4150.8643 +13959,17044,30386,-9,30384,30385,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-937.18756,-9,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4315641,0,25.33,61.71,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,1023,-55817.445,0,0,0,0,0,-270.44348 +13959,17045,30387,-9,30384,30385,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1036.8741,-9,1,1,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,64.46000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,1466,7080.8745,0,0,0,0,0,8.5822582 +13960,17046,30388,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3693924,8.4226732,0,0,0,-1146.0105,0,1,1,2021,10,1,40,39,1,1,0,10.050471,10.050471,0,0,0,0,0,0,0,0,0,0,0,.3424184,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,1201,186191.19,-11034.297,0,0,0,4673.9482,1071.3918 +13961,17047,30389,30390,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.4585629,7.9391375,10,0,-32.436501,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.9924593,8.5178766,44.57,52.34,57.16,56.15,1.666666666666667,1,1,0,0,11,9,3,1,2007.5,1185605.9,805921.75,261939.09,0,0,0,1537.0146 +13961,17047,30390,30389,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,10,0,-94.027695,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4584785,0,57.16,56.15,44.57,52.34,8.333333333333334,1,1,0,0,7,9,3,1,2007.5,1185605.9,805921.75,261939.09,0,0,0,1537.0146 +13962,17048,30391,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.9914408,7.0538044,0,0,-1009.54,0,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.265275,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,473,104989.95,100732.16,0,0,0,0,654.14453 +13963,17049,30392,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.7929325,8.6648493,0,0,0,-1061.6356,0,-9,-9,2021,8,0,45,49,1,0,0,15.632442,15.632442,.05,.05,0,0,0,0,0,0,1,0,1,1.1446869,0,48.74,60.18,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,412.5,56667.246,44054.453,0,0,0,0,2534.7766 +13963,17049,30393,-9,30394,30392,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.3943,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,412.5,56667.246,44054.453,0,0,0,0,2534.7766 +13963,17050,30394,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,5.7901807,5.7234449,0,0,0,-879.16382,0,-9,-9,2021,22,8,10,32,1,8,0,4.3525448,4.3525448,0,0,0,0,0,0,0,0,1,0,1,0,0,38.83,37.82,-9,-9,5,1,1,0,1,10,13,2,1,249,58092.652,0,0,0,0,873.40887,510.85312 +13964,17051,30395,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.3528075,6.4891758,0,0,-1087.2377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6855927,55.85,44.94,-9,-9,10,1,1,0,0,0,7,2,1,163,55064.531,37812.344,72933,0,0,0,1744.052 +13965,17052,30396,30397,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.9983621,8.305233,6,0,-42.360107,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3684707,8.2347841,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,10,11,3,1,833,2517601.8,1395243,292298.38,0,0,0,5080.958 +13965,17052,30397,30396,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,6,0,-70.220146,0,2,2,2021,9,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2896719,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,13,11,3,1,833,2517601.8,1395243,292298.38,0,0,0,5080.958 +13966,17053,30398,30399,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3170691,8.3427286,43,1,-96.677673,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0427227,54.77,55.87,60.02,56.42,8.333333333333334,1,1,0,0,11,12,4,1,635,4229881,3298770,533248.44,0,0,862.698,4173.689 +13966,17053,30399,30398,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,7.8256845,7.4552951,43,-1,51.258728,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5423746,60.02,56.42,54.77,55.87,10,1,1,0,0,6,12,4,1,635,4229881,3298770,533248.44,0,0,862.698,4173.689 +13967,17054,30400,30401,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.9335275,8.0316095,5.8148499,40,0,43.501705,0,2,3,2021,10,0,25,30,1,0,0,11.577671,11.577671,0,0,0,0,0,0,0,0,1,1,0,0,5.5313711,53.16,54.06,50.51,48.51,8.333333333333334,1,1,0,0,11,13,3,0,168.5,731176.63,519512.69,233904.75,0,0,0,1835.2876 +13967,17054,30401,30400,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.3248739,5.7983179,40,9,-75.037315,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.339632,50.51,48.51,53.16,54.06,8.333333333333334,1,1,0,0,5,13,3,0,168.5,731176.63,519512.69,233904.75,0,0,0,1835.2876 +13967,17055,30402,-9,30400,30401,1,0,34,0,0,0,1,1,-9,0,3,8.0358963,8.2969313,0,0,0,-1021.0252,0,1,2,2021,16,4,44,44,1,4,0,10.533303,10.533303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.04,48.85,-9,-9,3.333333333333333,1,1,0,0,10,13,4,0,1653,166122.83,49973.742,164830.5,105346.73,0,0,1461.8717 +13968,17056,30403,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0787354,8.2307482,0,0,0,-981.82581,0,-9,-9,2021,21,6,65,65,1,6,0,4.6623888,4.6623888,0,0,0,0,0,0,0,0,0,0,0,.32717186,0,32.13,54.99,-9,-9,5,1,1,0,0,10,7,4,0,60,0,0,0,0,0,0,907.04376 +13969,17057,30404,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1072.1749,0,3,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,5,1,0,806,453629.88,37044.273,225108.73,0,0,0,313.84103 +13970,17058,30405,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.3008213,6.1367254,0,0,-1109.1592,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2474041,59.48,25.86,-9,-9,5,1,1,0,0,0,11,2,1,1303,277762.69,62151.109,0,0,0,0,1838.8583 +13971,17059,30406,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,5,0,7.1429682,7.306828,0,0,-885.62628,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3056312,56.67,53.83,-9,-9,10,1,1,0,0,0,7,2,0,311,990998.19,-12536.313,726663.88,0,0,0,1571.8362 +13972,17060,30407,-9,30408,-9,1,1,20,0,0,0,2,2,-9,0,2,5.7512155,5.9357476,0,0,0,-1081.6465,0,2,-9,2021,8,1,4,7,1,1,1,11.063092,11.063092,0,0,0,0,0,0,0,0,0,0,0,0,0,55.25,48.17,-9,-9,1.666666666666667,1,1,0,1,2,5,2,1,718,24089.164,0,0,0,0,0,183.59555 +13972,17061,30408,30409,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0294285,7.9208131,0,6,-4,-13.143106,0,2,3,2021,5,0,40,37,1,0,0,7.7413955,7.7413955,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,48.29,47.3,8.333333333333334,1,1,0,0,8,5,4,1,1274.5,174157.61,23756.953,44803.375,-15016.794,15188.966,0,1740.9712 +13972,17061,30409,30408,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8797874,7.8488073,0,6,4,53.783428,0,-9,-9,2021,9,1,37,37,1,1,0,8.0383453,8.0383453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.29,47.3,46.4,59.87,8.333333333333334,1,1,0,0,7,5,4,1,1274.5,174157.61,23756.953,44803.375,-15016.794,15188.966,0,1740.9712 +13973,17062,30410,30411,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5446949,8.7749519,0,11,0,-39.776382,0,2,3,2021,6,0,37,40,1,0,0,20.316582,20.316582,.05,.05,0,0,0,0,0,0,0,0,0,1.8366957,0,57.57,49.69,53.1,52.62,8.333333333333334,1,1,0,0,13,6,5,1,528.5,470201.75,318583.47,114414.27,0,0,0,2465.5942 +13973,17062,30411,30410,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9381204,7.9280519,0,11,0,55.480236,0,2,3,2021,9,0,30,30,1,0,0,11.19219,11.19219,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.1,52.62,57.57,49.69,8.333333333333334,1,1,0,0,10,6,5,1,528.5,470201.75,318583.47,114414.27,0,0,0,2465.5942 +13974,17063,30412,30413,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.7500081,7.6269455,46,-23,-121.33041,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.115811,7.9921017,55.53,51.55,43.34,22.34,8.333333333333334,1,1,0,0,0,10,3,1,498.5,691007.69,213891.22,398592.81,0,0,0,3108.7168 +13974,17063,30413,30412,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,5.4430399,5.5447216,46,23,-64.230042,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2772334,5.5213575,43.34,22.34,55.53,51.55,6.666666666666667,1,1,0,0,0,10,3,1,498.5,691007.69,213891.22,398592.81,0,0,0,3108.7168 +13975,17064,30414,30416,-9,-9,1,0,32,0,1,0,2,2,-9,0,1,6.7594724,6.7091303,0,6,0,-56.168262,0,-9,-9,2021,33,11,19,13,1,11,0,6.5645375,6.5645375,0,0,0,0,0,0,0,0,0,0,0,0,0,12.84,51.54,34.57,55.98,1.666666666666667,1,1,0,0,5,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13975,17064,30415,-9,30414,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4034,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13975,17064,30416,30414,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.4013853,8.3673515,0,6,0,-45.390305,0,2,2,2021,13,2,64,52,1,2,0,9.2685137,9.2685137,0,0,0,0,0,0,0,14.5,0,0,0,0,0,34.57,55.98,12.84,51.54,3.333333333333333,1,1,0,0,8,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13976,17065,30417,30418,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.5551672,6.4297519,8,1,.93242759,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4376726,6.2118177,43.65,58.28,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,579,-50124.496,0,0,0,0,0,1039.6708 +13976,17065,30418,30417,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,18,-1,-17.649628,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.709949,0,57.16,56.15,43.65,58.28,10,1,1,0,0,0,12,2,1,579,-50124.496,0,0,0,0,0,1039.6708 +13977,17066,30419,30420,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.7678738,8.8159714,0,20,0,45.272148,0,2,2,2021,11,0,52,40,1,0,0,11.182516,11.182516,0,0,.05,0,0,0,0,0,0,0,0,7.4045863,0,57.16,56.15,53.05,26.88,8.333333333333334,1,1,0,0,8,4,5,1,1056,145475.06,72042.586,89597.422,27138.973,0,0,3577.5537 +13977,17066,30420,30419,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1908441,7.4139919,0,18,0,-49.876228,0,2,2,2021,3,0,10,10,1,0,0,15.262004,15.262004,0,0,0,0,0,0,0,2,0,0,0,2.0363045,0,53.05,26.88,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,1056,145475.06,72042.586,89597.422,27138.973,0,0,3577.5537 +13978,17067,30421,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.444097,7.5703363,0,0,-1080.9819,-9,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5475688,7.7692571,54.37,54.8,-9,-9,8.333333333333334,4,2,0,0,4,10,3,1,2102,403137.75,291040.81,0,0,0,0,1728.2432 +13979,17068,30422,-9,30423,30424,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.2749,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17068,30423,30424,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.2088833,7.1358337,0,6,14,79.759506,0,2,3,2021,6,0,28,32,1,0,0,4.7105289,4.7105289,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17068,30424,30423,-9,-9,1,1,31,0,1,0,1,1,-9,0,4,8.7125244,8.4415522,0,6,-14,78.843277,0,2,2,2021,6,0,40,50,1,0,0,15.327664,15.327664,0,0,0,0,0,0,0,0,1,1,0,5.1249146,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,6,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17069,30425,-9,30423,30424,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1084.1302,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,0,916,-94460.93,0,0,0,0,0,0 +13980,17070,30426,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.5098085,7.8294849,0,0,-986.47705,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0777102,7.2892194,34.26,58.61,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,473,115577.7,48468.121,0,0,0,0,2281.156 +13981,17071,30427,30428,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7372127,7.4286685,0,29,-4,90.877594,0,3,3,2021,16,6,26,30,1,6,0,10.145971,10.145971,.05,.05,.05,0,0,0,0,0,0,0,0,7.8993368,0,32.88,47.18,60.02,56.42,6.666666666666667,2,3,0,0,12,5,5,1,503,1021115.1,401118.56,473609.44,7985.5195,9187.585,0,9392.208 +13981,17071,30428,30427,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5610752,9.8435688,0,10,4,-46.83815,0,2,2,2021,9,0,40,40,1,0,0,51.106262,51.106262,.05,.05,.05,0,0,0,0,0,0,0,0,4.7139258,0,60.02,56.42,32.88,47.18,8.333333333333334,2,3,0,0,8,5,5,1,503,1021115.1,401118.56,473609.44,7985.5195,9187.585,0,9392.208 +13981,17072,30429,-9,30427,30428,1,1,23,0,0,0,1,1,1,0,5,8.0838032,7.9075036,0,0,0,-1006.117,-9,2,1,2021,10,0,37,0,1,0,1,11.240976,11.240976,.05,.05,0,0,0,0,0,0,0,0,0,2.4283862,0,59.04,32.46,-9,-9,5,2,3,0,0,3,5,4,1,288,38701.512,-28591.271,217771.31,126344.89,13761.929,0,1043.1289 +13981,17073,30430,-9,30427,30428,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-993.49176,-9,2,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,8.333333333333334,2,3,1,0,0,5,1,1,8891,163392.73,0,0,0,0,0,0 +13982,17074,30431,30432,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.3050442,7.8566337,0,5,-3,-10.955294,0,-9,-9,2021,11,0,30,21,1,0,0,10.500351,10.500351,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49,59,45.43,45.17,6.666666666666667,1,1,0,0,8,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13982,17074,30432,30431,-9,-9,1,1,33,0,1,0,2,2,-9,0,5,8.166832,8.3760548,0,5,3,30.894474,-9,3,3,2021,10,2,41,0,1,2,0,8.3203659,8.3203659,.05,.05,0,0,0,0,.1453097,0,1,1,0,4.8843107,0,45.43,45.17,49,59,1.666666666666667,1,1,0,0,10,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13982,17074,30433,-9,30431,30432,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.28,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13983,17075,30434,30435,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,67,2,85.170929,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.99,38.05,58.91,35.36,6.666666666666667,1,1,0,0,0,4,2,1,792.5,34471.93,137673.72,0,0,0,0,1377.2629 +13983,17075,30435,30434,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.8888292,6.8865147,67,-2,38.387619,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5654187,58.91,35.36,52.99,38.05,6.666666666666667,1,1,0,0,0,4,2,1,792.5,34471.93,137673.72,0,0,0,0,1377.2629 +13984,17076,30436,-9,-9,-9,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-874.64001,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,4,6,-9,0,0,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17076,30437,30438,-9,-9,1,0,51,1,0,0,2,2,-9,0,4,8.0463047,8.1178312,0,4,1,18.948469,0,-9,-9,2021,8,1,37,40,1,1,0,8.1110039,8.1110039,0,0,0,0,0,0,0,7,1,0,1,0,0,41.65,60.41,39.98,29.03,6.666666666666667,1,1,0,0,6,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17076,30438,30437,-9,-9,1,1,50,1,0,0,3,3,-9,1,2,0,0,0,4,-1,-41.837795,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,42,1,0,1,2.1663978,0,39.98,29.03,41.65,60.41,5,1,1,0,0,0,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17077,30439,-9,30437,30438,1,1,23,1,0,0,2,2,-9,0,5,8.3441753,8.1099129,0,0,0,-1039.6079,0,2,3,2021,8,0,69,48,1,0,1,7.9588733,7.9588733,.05,.05,0,0,0,0,0,2,1,0,1,0,0,62.29,49.94,-9,-9,6.666666666666667,1,1,0,0,5,9,5,0,587,-169411.39,-93160,0,0,5613.4824,0,1913.2859 +13985,17078,30440,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,7.4630709,7.5270958,5.5847216,0,0,-1054.0553,0,3,2,2021,7,0,33,33,1,0,0,6.7508774,6.7508774,0,0,0,0,0,0,0,0,1,1,0,5.7524033,0,43.55,39.41,-9,-9,5,1,1,0,0,6,1,3,0,168.5,180303.88,0,87580.563,53383.367,-252.17433,0,917.13245 +13985,17078,30441,-9,30440,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.585,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,168.5,180303.88,0,87580.563,53383.367,-252.17433,0,917.13245 +13986,17079,30442,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,9.3202868,9.0328207,0,0,0,-977.67468,0,2,2,2021,7,1,35,35,1,1,0,25.585905,25.585905,.05,.05,0,0,0,0,0,2,0,0,0,3.4797132,0,63.23,48.07,-9,-9,10,1,1,0,0,13,10,5,1,165,59624.789,94552.633,0,0,0,0,4181.3521 +13987,17080,30443,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7700777,6.2248225,0,0,-1153.9679,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.159368,6.941371,57.68,42.36,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,946,326125.91,26092.967,151223,0,38109.289,0,1639.8622 +13988,17081,30444,30445,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,0,5.6571999,5.6996231,34,7,-22.671328,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3810534,31.9,19.36,55.37,40.83,1.666666666666667,2,3,0,0,0,6,3,1,1104.5,29483.549,223218.69,0,0,0,0,2665.6694 +13988,17081,30445,30444,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1646557,8.3434639,0,8,-7,11.603453,0,3,3,2021,11,0,38,32,1,0,0,10.855728,10.855728,0,0,0,0,0,0,0,2,1,1,0,6.5786705,0,55.37,40.83,31.9,19.36,5,2,3,0,0,11,6,3,1,1104.5,29483.549,223218.69,0,0,0,0,2665.6694 +13988,17082,30446,-9,30445,30444,1,0,33,0,0,0,2,2,-9,0,4,8.0093536,8.2702961,0,0,0,-991.96533,0,2,2,2021,13,3,41,45,1,3,1,9.6820736,9.6820736,.05,.05,0,0,0,0,0,2,1,1,0,1.3867368,0,42.69,50.73,-9,-9,3.333333333333333,2,3,0,0,8,6,4,1,963,1698.9779,-72837.859,0,0,0,7649.9214,2256.2817 +13988,17083,30447,-9,30445,30444,1,0,31,0,0,0,1,1,-9,0,4,7.48595,7.7351432,0,0,0,-1063.6847,0,2,3,2021,13,1,20,20,1,1,1,12.328431,12.328431,.05,.05,0,0,0,0,0,7,1,1,0,0,0,43.68,53.03,-9,-9,8.333333333333334,2,3,0,0,4,6,3,1,110,-10677.396,5964.7153,0,0,0,0,1146.8671 +13988,17084,30448,-9,30445,30444,1,1,28,0,0,0,1,1,-9,0,4,8.2639437,8.2853909,0,0,0,-978.383,0,2,2,2021,26,10,38,38,1,10,1,11.643642,11.643642,.05,.05,0,0,0,0,0,7,1,1,0,.70201004,0,17.89,59.26,-9,-9,0,2,3,0,0,5,6,4,1,3782,42317.582,-34438.141,0,0,0,0,1172.1542 +13989,17085,30449,-9,30451,30452,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-956.91852,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,0,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30450,-9,30451,30452,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1240.083,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30451,30452,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,8.3513651,8.468194,0,31,-1,-7.5750995,0,2,2,2021,13,1,35,35,1,1,0,12.824146,12.824146,.05,.05,0,0,0,0,0,0,1,1,0,2.6594002,0,46.01,43.43,39.66,51.77,3.333333333333333,1,1,0,0,11,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30452,30451,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.6411572,8.3436127,0,31,1,-128.56067,0,2,3,2021,12,0,37,37,1,0,0,19.955647,19.955647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.66,51.77,46.01,43.43,5,1,1,0,0,11,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13990,17086,30453,30454,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3036356,8.4688587,0,29,-1,76.967056,0,3,2,2021,7,0,37,39,1,0,0,14.84508,14.84508,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,45.92,36.22,10,2,3,0,0,13,5,4,1,505.5,659332.88,196438.16,264755.72,0,0,0,3392.783 +13990,17086,30454,30453,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,30,1,-65.244896,0,3,1,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.92,36.22,57.16,56.15,0,4,2,0,0,0,5,4,1,505.5,659332.88,196438.16,264755.72,0,0,0,3392.783 +13990,17087,30455,-9,30454,30453,1,1,24,0,0,0,2,2,-9,0,5,4.8055105,5.0078654,0,0,0,-1078.5302,0,2,2,2021,9,0,6,6,1,0,1,2.7979782,2.7979782,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,2,0,0,5,5,2,1,1166,0,0,0,0,0,0,133.56136 +13991,17088,30456,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4473562,8.5395975,0,0,0,-845.50012,0,-9,-9,2021,26,12,85,43,1,12,0,6.1494851,6.1494851,.05,.05,0,0,0,0,0,0,0,0,0,.68182236,0,37.87,61.03,-9,-9,3.333333333333333,1,1,0,0,13,11,5,1,647,-86006.781,71293.367,185227.97,86936.109,18525.516,1135.941,1495.8959 +13992,17089,30457,30458,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,6.7477679,6.5559998,62,2,-17.739241,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.5443652,47.774651,27.831043,0,1,1,0,0,6.2250934,31.38,27.98,54.92,22.2,6.666666666666667,1,1,0,0,0,2,2,1,1358.5,574700.88,152912.63,203958.86,0,0,0,1423.9316 +13992,17089,30458,30457,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,5.4508529,5.5176926,62,-2,-65.994415,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,14.766725,0,14.5,1,1,0,0,5.4277472,54.92,22.2,31.38,27.98,6.666666666666667,1,1,0,0,0,2,2,1,1358.5,574700.88,152912.63,203958.86,0,0,0,1423.9316 +13992,17090,30459,-9,30458,30457,1,1,50,0,0,0,2,2,-9,0,5,3.3273153,3.2826655,0,0,0,-1081.5585,0,2,2,2021,8,0,40,40,1,0,0,.097021878,.097021878,0,0,0,0,0,0,0,86,1,1,0,0,0,52.72,55.58,-9,-9,6.666666666666667,1,1,0,0,7,2,2,1,662,158494.39,-64744.16,58723.379,40923.215,0,0,112.18302 +13993,17091,30460,30461,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,5.7556205,5.4224296,38,7,72.612579,0,3,3,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.4724422,31.58,19.71,38.24,25.76,6.666666666666667,2,3,0,1,0,6,4,1,1417,95394.594,-24271.914,145986.98,0,2811.47,153.2112,2987.9849 +13993,17091,30461,30460,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.4556561,8.0534573,0,12,-7,-110.5675,0,3,3,2021,13,2,37,37,1,2,0,13.990461,13.990461,0,0,0,0,0,0,0,74.5,1,1,0,7.6163893,0,38.24,25.76,31.58,19.71,5,2,3,0,1,15,6,4,1,1417,95394.594,-24271.914,145986.98,0,2811.47,153.2112,2987.9849 +13993,17092,30462,-9,30461,30460,1,1,32,0,0,0,1,1,-9,0,3,8.1823807,8.5592213,0,0,0,-966.7132,0,2,2,2021,10,1,38,46,1,1,1,15.128796,15.128796,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,45.9,41.18,-9,-9,3.333333333333333,2,3,0,0,9,6,4,1,105,82785.18,77496.563,0,0,0,0,1982.026 +13994,17093,30463,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.4411974,6.5817327,0,0,-863.83704,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5075307,51,46,-9,-9,8,3,4,0,0,0,8,2,0,216,432440.31,-44531.836,331772.44,0,0,0,991.19598 +13995,17094,30464,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,6.8529563,7.0664849,0,0,0,-1037.3733,-9,-9,-9,2021,9,0,38,0,1,0,0,2.9109485,2.9109485,0,0,0,0,0,0,0,0,0,0,0,3.3501558,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,2,0,173,-25369.197,0,0,0,0,0,678.56042 +13995,17095,30465,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.2339621,7.3480325,0,0,0,-927.55438,-9,-9,-9,2021,10,0,36,0,1,0,0,4.1962919,4.1962919,.05,.05,0,0,0,0,0,0,0,0,0,1.2814008,0,62.39,56.71,-9,-9,10,1,1,0,0,7,11,3,0,158,21302.621,-87535.648,0,0,7046.1113,0,289.90756 +13995,17096,30466,-9,30465,-9,1,0,23,0,0,0,2,2,-9,0,4,2.8986473,3.0875399,0,0,0,-1102.3345,-9,2,-9,2021,11,0,30,0,1,2,1,.065164343,.065164343,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,10,1,1,0,0,1,11,2,0,2143,-98928.367,0,0,0,2014.678,0,-90.578407 +13995,17097,30467,-9,30465,-9,1,0,18,0,0,0,2,2,-9,0,3,7.8509221,7.8468404,0,0,0,-920.99164,-9,2,-9,2021,31,12,37,0,1,12,1,7.1497755,7.1497755,0,0,0,0,0,0,0,0,0,0,0,0,0,28.71,61.83,-9,-9,5,1,1,0,0,1,11,3,0,492,-152073.06,0,0,0,0,0,1837.1489 +13996,17098,30468,30469,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.8618126,7.9023919,45,7,110.76722,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9695954,7.9224405,56.66,29.23,52.6,52.88,6.666666666666667,1,1,0,0,6,6,4,1,206.5,883243.44,660582.13,212829.84,0,2011.946,0,2722.2632 +13996,17098,30469,30468,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.4539104,7.6185174,45,-7,20.91736,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4704471,52.6,52.88,56.66,29.23,8.333333333333334,2,3,0,0,0,6,4,1,206.5,883243.44,660582.13,212829.84,0,2011.946,0,2722.2632 +13997,17099,30470,30471,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,8.5810499,8.4290705,7,1,-148.12779,0,2,1,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.242867,8.0480709,45.03,43.24,50.97,49.75,8.333333333333334,1,1,0,0,7,12,4,1,1311.5,306080.91,88116.805,231590.45,123499.58,0,0,4977.8516 +13997,17099,30471,30470,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.3143506,6.9863577,0,7,-1,54.841721,0,2,1,2021,12,3,20,20,1,3,0,8.1632452,8.1632452,0,0,0,0,0,0,0,2,0,0,0,6.3950644,0,50.97,49.75,45.03,43.24,8.333333333333334,1,1,0,0,8,12,4,1,1311.5,306080.91,88116.805,231590.45,123499.58,0,0,4977.8516 +13997,17100,30472,-9,30471,30470,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-893.33362,0,1,1,2021,22,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.96,63.01,-9,-9,1.666666666666667,1,1,1,0,4,12,1,1,782,0,0,0,0,0,0,926.81213 +13998,17101,30473,-9,30475,30474,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.83093,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13998,17101,30474,30475,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.2698021,8.1304712,0,8,2,-12.025279,0,-9,-9,2021,11,0,65,60,1,0,0,9.3019037,9.3019037,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.05,56.68,52.57,52.89,8.333333333333334,1,1,0,0,7,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13998,17101,30475,30474,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.2896552,7.6661048,0,8,-2,-74.705025,0,2,3,2021,11,1,30,35,1,1,0,6.3033657,6.3033657,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.57,52.89,50.05,56.68,8.333333333333334,1,1,0,0,11,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13999,17102,30476,30477,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,8.0536594,8.2067785,0,30,-3,22.366337,0,3,3,2021,8,0,38,38,1,0,0,9.469573,9.469573,0,0,0,0,0,0,0,7,0,0,0,2.814235,0,48.2,52.06,53,54,6.666666666666667,1,1,0,0,6,12,5,1,436,293159.91,205653.66,196127.89,151146.83,0,0,3200.355 +13999,17102,30477,30476,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3431158,8.4398193,0,7,3,15.618608,-9,-9,-9,2021,9,0,38,0,1,1,0,12.806257,12.806257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,48.2,52.06,8,1,1,0,0,1,12,5,1,436,293159.91,205653.66,196127.89,151146.83,0,0,3200.355 +13999,17103,30478,-9,30476,30477,1,0,26,0,0,0,2,2,-9,0,2,7.263813,7.1057153,0,0,0,-1135.4426,0,3,2,2021,19,7,30,15,1,7,1,5.7074265,5.7074265,0,0,0,0,0,0,0,2,0,0,0,0,0,36.79,40.21,-9,-9,5,1,1,0,0,6,12,3,1,369,135806.84,0,0,0,0,0,596.18951 +13999,17104,30479,-9,30476,30477,1,0,19,0,0,0,2,2,-9,0,3,7.8365111,7.6353664,0,0,0,-1007.9846,0,3,2,2021,13,3,35,35,1,3,1,8.9907293,8.9907293,0,0,0,0,0,0,0,7,0,0,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,1326,-179573.95,0,0,0,0,0,438.62061 +14000,17105,30480,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.4597087,5.1988535,0,0,-943.08276,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.1982064,55.74,51.41,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,250,185205.75,0,0,0,0,0,1693.1583 +14001,17106,30481,30482,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.0356112,7.2471509,0,18,-3,-58.066116,0,-9,-9,2021,11,0,20,27,1,2,0,7.736268,7.736268,0,0,0,0,0,0,0,0,0,0,0,.055783883,0,49,56,43.54,59.6,7,2,3,0,0,1,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14001,17106,30482,30481,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.6310883,8.5172634,0,18,3,-1.8165354,0,1,1,2021,11,1,36,40,1,1,0,18.98045,18.98045,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,49,56,6.666666666666667,2,3,0,0,9,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14001,17106,30483,-9,30481,30482,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.06396,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14002,17107,30484,30485,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.0583158,6.1057882,49,1,-198.61861,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7054529,5.991684,49.33,27.69,51,46,1.666666666666667,1,1,0,0,5,5,2,1,288.5,391947.25,194875.59,176452.28,0,0,0,2866.4033 +14002,17107,30485,30484,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-1,162.43285,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,49.33,27.69,7,1,1,0,0,0,5,2,1,288.5,391947.25,194875.59,176452.28,0,0,0,2866.4033 +14003,17108,30486,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1077.4963,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,13.986855,0,126.20033,0,1,1,0,3.3720548,0,46.89,15.25,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,470,-38284.273,0,0,0,0,0,1429.4379 +14003,17109,30487,-9,-9,30486,1,1,24,0,0,0,2,2,-9,0,4,7.7220654,8.0247717,0,0,0,-1006.9996,0,-9,2,2021,11,0,48,40,1,0,0,6.1083016,6.1083016,0,0,0,0,0,0,0,2,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,105,109121.07,0,0,0,0,0,1211.7349 +14004,17110,30488,30489,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,5.3596668,6.9578843,6.5535436,12,-7,62.830902,0,2,2,2021,10,0,10,8,1,0,0,2.4064288,2.4064288,0,0,0,0,0,0,0,0,1,1,0,6.916008,6.8203077,49.41,58.28,55.96,49.93,8.333333333333334,1,1,0,0,15,7,2,1,1119.5,431528.56,163066.84,365249,0,0,0,3102.7544 +14004,17110,30489,30488,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,12,7,8.8564186,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.96,49.93,49.41,58.28,8.333333333333334,4,2,0,0,4,7,2,1,1119.5,431528.56,163066.84,365249,0,0,0,3102.7544 +14005,17111,30490,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.7330265,7.8877416,0,0,0,-1065.7308,0,2,2,2021,7,0,38,38,1,0,0,9.386076,9.386076,0,0,0,0,0,0,0,0,1,1,0,3.9579117,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,1847,342962.16,40660.273,319954.09,0,0,0,774.48694 +14006,17112,30491,-9,30493,30494,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.14288,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30492,-9,30493,30494,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.46509,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30493,30494,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.6301527,6.4988346,0,14,1,13.417679,0,3,2,2021,14,2,15,14,1,2,0,5.2158184,5.2158184,0,0,0,0,0,0,0,7,1,1,0,0,0,36.66,50.85,48.2,47.33,6.666666666666667,2,3,0,0,6,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30494,30493,-9,-9,1,1,32,0,2,0,2,2,-9,0,1,7.469871,7.2482491,0,14,-1,-55.183281,0,3,2,2021,9,0,30,45,1,0,0,6.368063,6.368063,0,0,0,0,0,0,0,0,1,1,0,0,0,48.2,47.33,36.66,50.85,6.666666666666667,2,3,0,0,9,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14007,17113,30495,30496,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2556248,8.1498528,0,9,-3,-51.45245,0,2,3,2021,19,8,35,35,1,8,0,17.746771,17.746771,.05,.05,0,0,0,0,0,0,0,0,0,7.8964324,0,34.23,62.3,35.93,55.1,3.333333333333333,2,3,0,0,9,8,5,1,1327.5,189421.52,-18644.023,380056.81,200470.28,6174.8804,1731.2284,4768.3096 +14007,17113,30496,30495,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3730392,8.2992048,0,9,3,-51.925343,0,2,2,2021,12,0,38,38,1,0,0,14.339022,14.339022,.05,.05,0,0,0,0,0,0,0,0,0,4.2589989,0,35.93,55.1,34.23,62.3,6.666666666666667,1,1,0,0,12,8,5,1,1327.5,189421.52,-18644.023,380056.81,200470.28,6174.8804,1731.2284,4768.3096 +14008,17114,30497,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,9.1540575,8.7743511,0,0,0,-913.19543,0,2,2,2021,11,0,48,38,1,0,0,19.477453,19.477453,0,0,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,1.666666666666667,2,3,0,0,5,8,5,0,381,100853.8,0,0,0,0,1056.5414,1947.8009 +14009,17115,30498,-9,30499,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1059.3297,0,1,-9,2021,26,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.17,57.37,-9,-9,3.333333333333333,1,1,1,1,11,7,1,1,1073,155920.34,0,0,0,0,0,0 +14009,17116,30499,30500,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.3202729,7.7232871,0,2,-2,30.390696,0,2,2,2021,5,0,12,27,1,0,0,15.072905,15.072905,0,0,0,0,0,0,0,7,0,0,0,0,0,61.12,51.57,57.16,56.15,10,1,1,0,0,11,7,4,1,2784.5,782300,155946.83,502096.78,67553.32,0,0,2590.0601 +14009,17116,30500,30499,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.3312855,8.4605093,0,2,2,-118.86833,0,-9,-9,2021,7,0,35,30,1,0,0,16.111824,16.111824,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,7,4,1,2784.5,782300,155946.83,502096.78,67553.32,0,0,2590.0601 +14010,17117,30501,30502,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,8,0,0,0,3,3,2021,9,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.95,49.07,50.76,46.32,8.333333333333334,1,1,0,0,9,12,1,1,1761.5,362236.63,-62163.285,157120.91,0,0,0,660.08594 +14010,17117,30502,30501,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,47,0,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.76,46.32,57.95,49.07,8.333333333333334,1,1,0,0,0,12,1,1,1761.5,362236.63,-62163.285,157120.91,0,0,0,660.08594 +14011,17118,30503,-9,30505,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.95239,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14011,17118,30504,-9,30505,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.86475,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14011,17118,30505,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.8477621,9.0235529,5.6195426,0,0,-1002.1117,0,-9,-9,2021,26,10,30,0,1,10,0,30.861078,30.861078,.05,.05,0,0,0,0,0,0,1,0,1,5.2595353,0,25.44,65.40000000000001,-9,-9,1.666666666666667,1,1,0,0,3,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14012,17119,30506,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.3046288,7.5839181,0,0,0,-1138.6592,0,-9,-9,2021,4,0,32,35,1,0,0,6.2849479,6.2849479,0,0,0,0,0,0,0,0,0,0,0,.67511237,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,10,3,0,218,58242.801,0,0,0,0,0,880.49921 +14013,17120,30507,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.1913829,8.3637323,8.2338095,0,0,-921.03174,0,-9,-9,2021,13,2,30,27,1,2,0,3.7461081,3.7461081,.05,.05,0,0,0,0,0,14.5,1,1,0,0,7.9608779,55.08,48.98,-9,-9,10,1,1,0,0,14,8,4,0,350,362078.28,87657.102,230001.97,0,0,0,1028.129 +14014,17121,30508,30509,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,8.134388,7.9984541,0,4,-11,-131.64528,0,-9,-9,2021,7,0,37,38,1,0,0,11.267327,11.267327,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14014,17121,30509,30508,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.9135971,8.595314,0,4,11,30.915892,0,-9,-9,2021,7,0,42,39,1,0,0,21.249052,21.249052,.05,.05,0,0,0,0,0,0,1,1,0,3.3081205,0,54.79,55.86,49.04,55.86,8.333333333333334,1,1,0,0,6,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14014,17121,30510,-9,30508,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.2529,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14015,17122,30511,30512,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.6195269,8.7412567,0,19,0,37.460274,0,3,2,2021,7,0,47,48,1,0,0,18.123327,18.123327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14015,17122,30512,30511,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.9903183,8.856616,0,19,0,-23.358242,0,2,2,2021,12,1,40,35,1,1,0,20.643097,20.643097,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,6,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14015,17122,30513,-9,30512,30511,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.31903,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14016,17123,30514,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.0885124,6.3939462,0,0,-922.82495,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2016907,44.09,39.14,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,187,-61122.445,68850.125,0,0,0,0,621.41553 +14017,17124,30515,30516,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,7.9462848,7.8392715,18,4,61.661877,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54736811,7.6298852,60.12,54.8,36.18,48.3,10,1,1,0,0,9,7,3,1,1123,1242530.1,883404.19,489735.88,9202.4561,5808.7534,0,2338.5706 +14017,17124,30516,30515,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,6.9344478,6.8969698,18,-4,-25.899866,0,3,3,2021,18,6,0,25,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6794419,6.868597,36.18,48.3,60.12,54.8,1.666666666666667,1,1,0,0,10,7,3,1,1123,1242530.1,883404.19,489735.88,9202.4561,5808.7534,0,2338.5706 +14018,17125,30517,30518,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.0055485,9.0072842,0,10,-1,152.98587,0,2,1,2021,7,0,50,50,1,0,0,17.497078,17.497078,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.62,52.91,69.87,19,8.333333333333334,1,1,0,0,8,9,5,1,564.5,1003260.5,95670.508,331149.44,0,0,132.66161,3038.833 +14018,17125,30518,30517,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,1,136.89691,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.4343701,0,69.87,19,58.62,52.91,6.666666666666667,1,1,0,1,1,9,5,1,564.5,1003260.5,95670.508,331149.44,0,0,132.66161,3038.833 +14018,17126,30519,-9,30518,30517,1,0,28,0,0,0,2,2,-9,0,4,7.8697815,7.6845078,0,0,0,-912.57336,0,2,1,2021,11,0,40,40,1,2,1,6.835043,6.835043,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,57,-9,-9,7,1,1,0,0,1,9,4,1,526,166245.27,-74128.32,0,0,0,0,1894.5474 +14018,17127,30520,-9,30518,30517,1,0,25,0,0,0,2,2,-9,0,4,7.6061196,7.4802914,0,0,0,-1026.1147,0,2,1,2021,11,0,50,60,1,2,1,4.6310754,4.6310754,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,1,388,42186.758,0,0,0,0,457.18433,1549.8296 +14018,17128,30521,-9,30518,30517,1,0,22,0,0,0,1,1,1,1,3,8.022027,7.893549,0,0,0,-918.48413,-9,2,1,2021,14,2,38,0,1,2,1,8.5451269,8.5451269,.05,.05,0,0,0,0,0,0,1,1,0,.86979091,0,51.91,27.41,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,3263,-183562.89,-113448.44,0,0,5416.4395,0,1249.3231 +14018,17129,30522,-9,30518,30517,1,1,19,0,0,0,2,2,-9,0,4,8.6537685,8.5850668,0,0,0,-1119.801,0,2,1,2021,18,6,45,55,1,6,1,14.439781,14.439781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.79,58.33,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,301,-104736.64,32648.744,0,0,0,0,2143.9937 +14019,17130,30523,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7739792,7.0551906,0,0,-1162.9725,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.87681025,0,15.638598,0,1,1,0,4.7317071,7.152801,62.57,35.9,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,115,356913.19,93654.766,201750.47,0,0,0,1478.5641 +14020,17131,30524,-9,30525,30526,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-927.41833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30525,30526,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9946442,7.2606239,5.9494004,1,-3,-14.349515,-9,2,2,2021,6,0,20,0,1,0,0,7.0376663,7.0376663,.05,.05,0,0,0,0,0,0,1,1,0,5.5444427,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,9,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30526,30525,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.3040218,8.5623007,0,1,3,6.4838858,-9,3,2,2021,9,0,43,0,1,0,0,9.4857407,9.4857407,.05,.05,0,0,0,0,0,0,1,1,0,3.3387198,0,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30527,-9,30525,30526,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.93378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17132,30528,-9,30525,30526,1,0,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1044.6815,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,55.44,-9,-9,8.333333333333334,1,1,0,0,2,2,1,0,499,18170.488,0,0,0,0,0,368.5574 +14021,17133,30529,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-932.5022,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.72,40.61,-9,-9,6.666666666666667,1,1,0,1,0,10,1,1,176,432329.03,305811.25,0,0,0,0,970.72601 +14021,17134,30530,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,8.0539532,8.1316214,6.7773151,0,0,-1057.3468,0,-9,-9,2021,6,0,18,37,1,0,0,22.16143,22.16143,.05,.05,0,0,0,0,0,108,1,1,0,4.2646246,6.7725821,57.73,36.13,-9,-9,10,1,1,0,0,8,10,4,1,108,386667,327870.31,0,0,0,0,2389.3491 +14022,17135,30531,30532,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.7604456,7.3458505,0,39,-7,10.988085,0,2,3,2021,7,0,40,37,1,0,0,5.3451629,5.3451629,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52.03,39.57,5,1,1,0,0,11,1,3,1,253.5,381757.34,95217.016,197840.84,0,0,0,1644.2976 +14022,17135,30532,30531,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,38,7,31.87734,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.1056504,0,2,1,1,0,1.0020385,0,52.03,39.57,54.96,53.17,6.666666666666667,1,1,0,0,11,1,3,1,253.5,381757.34,95217.016,197840.84,0,0,0,1644.2976 +14023,17136,30533,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3774261,7.2874207,0,0,-1073.6073,0,2,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,.6468665,0,0,1,1,0,1.4938947,7.2910447,52.81,19.32,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,439,653659.38,192498.03,604418.81,0,0,0,2444.6963 +14024,17137,30534,-9,30535,30536,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.085,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14024,17137,30535,30536,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.8778253,7.819828,0,6,1,51.311707,0,-9,-9,2021,11,1,20,37,1,1,0,16.51226,16.51226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14024,17137,30536,30535,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,9.0974684,8.9395714,0,6,-1,67.995285,0,-9,-9,2021,6,0,40,40,1,0,0,23.412287,23.412287,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.44,55.46,8.333333333333334,1,1,0,0,6,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14025,17138,30537,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0573773,5.8551474,0,0,-980.64075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5858741,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,92,131468.78,54052.012,11331.279,0,0,0,461.34503 +14026,17139,30538,30539,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,42,-4,-.54999256,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,4.4202981,0,2,1,1,0,0,0,59.31,36.46,60.02,56.42,6.666666666666667,1,1,0,0,0,13,2,1,731.5,431926.22,-42205.133,208565.14,0,0,0,824.04956 +14026,17139,30539,30538,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.1648445,5.5007787,42,4,-113.23528,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7486401,5.0134583,60.02,56.42,59.31,36.46,8.333333333333334,1,1,0,0,0,13,2,1,731.5,431926.22,-42205.133,208565.14,0,0,0,824.04956 +14027,17140,30540,30541,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.4036889,5.5558605,47,0,-52.569099,0,2,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3994188,5.7360034,43.37,55.66,37.55,37.1,8.333333333333334,1,1,0,0,1,2,2,1,904,130524.35,170827.75,0,0,0,0,1684.0062 +14027,17140,30541,30540,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.964498,6.6675072,47,0,51.077553,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,5.2501035,0,0,1,1,0,3.9706404,6.6281142,37.55,37.1,43.37,55.66,5,1,1,0,0,8,2,2,1,904,130524.35,170827.75,0,0,0,0,1684.0062 +14028,17141,30542,-9,30544,30543,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.79614,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14028,17141,30543,30544,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.0889835,8.2742596,0,4,1,27.529085,0,-9,-9,2021,12,1,40,40,1,1,0,9.8667641,9.8667641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,58.72,51.29,8.333333333333334,1,1,0,0,11,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14028,17141,30544,30543,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,9.3216963,9.6764812,0,4,-1,19.262089,0,-9,-9,2021,6,1,25,24,1,1,0,72.500343,72.500343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,52.99,51.28,10,1,1,0,0,10,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14029,17142,30545,30546,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.6814613,7.7505865,47,-4,72.26429,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.9062929,41.07,60.93,40.21,27.65,10,1,1,0,0,9,4,3,1,596.5,866855.13,616001.81,238989.19,0,-942.86633,0,2548.1973 +14029,17142,30546,30545,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,2.1843247,2.08816,11,4,81.018387,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,140.78047,0,0,1,1,0,0,2.1684523,40.21,27.65,41.07,60.93,6.666666666666667,1,1,0,0,0,4,3,1,596.5,866855.13,616001.81,238989.19,0,-942.86633,0,2548.1973 +14030,17143,30547,30548,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.4871149,8.5112648,43,1,-107.70961,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4830999,8.3589554,52.38,55.6,43.2,55.71,8.333333333333334,1,1,0,0,0,12,4,1,660,1077275.9,599151.75,214649.03,0,2088.199,0,2979.9785 +14030,17143,30548,30547,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8724022,6.9500961,43,-1,36.811592,0,2,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.4905958,6.9982271,43.2,55.71,52.38,55.6,8.333333333333334,1,1,0,0,0,12,4,1,660,1077275.9,599151.75,214649.03,0,2088.199,0,2979.9785 +14031,17144,30549,30550,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0152512,8.960144,0,15,3,34.199757,0,2,2,2021,6,0,46,46,1,0,0,17.577879,17.577879,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,42.35,36.31,10,1,1,0,0,10,6,5,1,548,1053179.3,370938.44,293969.66,0,9296.2578,2222.3572,5756.582 +14031,17144,30550,30549,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.222723,8.8579159,0,15,-3,-10.3771,0,2,2,2021,16,4,47,43,1,4,0,19.199406,19.199406,0,0,.05,0,0,0,0,0,0,0,0,0,0,42.35,36.31,60.12,54.8,3.333333333333333,1,1,0,0,9,6,5,1,548,1053179.3,370938.44,293969.66,0,9296.2578,2222.3572,5756.582 +14031,17145,30551,-9,30550,30549,1,0,24,0,0,0,3,3,-9,0,4,7.7264681,7.8541193,0,0,0,-971.41803,0,2,2,2021,12,2,30,16,1,2,1,7.2809157,7.2809157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,-9,-9,5,1,1,0,0,7,6,3,1,669,53965.691,131015.71,0,0,0,0,2029.0615 +14032,17146,30552,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.0204344,5.8623872,0,0,-1040.6404,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.139153,0,0,1,1,0,0,5.813364,72.59,14.07,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,648,393790.66,55276.684,236253.94,0,0,0,3694.5891 +14033,17147,30553,30555,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.5146542,8.9269695,0,6,-7,-3.4539161,0,2,3,2021,6,0,22,20,1,0,0,30.278772,30.278772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.36,51.57,10,1,1,0,0,7,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30554,-9,30553,30555,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1143.7368,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30555,30553,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.0050945,8.8460541,0,6,7,-33.42403,0,2,1,2021,8,0,30,47,1,0,0,31.228798,31.228798,.05,.05,0,0,0,0,0,0,1,1,0,6.7229815,0,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30556,-9,30553,30555,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.8866,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14034,17148,30557,30558,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9908633,7.9442267,0,1,-1,23.425772,-9,-9,-9,2021,10,0,46,0,1,0,0,9.4701443,9.4701443,.05,.05,0,0,0,0,0,0,0,0,0,2.977834,0,47.89,51.08,52,54.51,8.333333333333334,1,1,0,0,0,4,5,0,594.5,28741.539,87759.234,157690.92,95652.18,0,0,3222.9941 +14034,17148,30558,30557,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.6778898,8.3791628,0,1,1,68.765488,0,2,2,2021,10,0,40,40,1,0,0,13.994314,13.994314,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.89,51.08,8.333333333333334,1,1,0,0,6,4,5,0,594.5,28741.539,87759.234,157690.92,95652.18,0,0,3222.9941 +14035,17149,30559,30560,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2622757,8.1379242,0,6,-2,59.006027,0,-9,-9,2021,14,2,45,49,1,2,0,10.432005,10.432005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.05,57.87,45.31,34.97,5,1,1,0,0,14,11,5,1,1344,60111.648,99752.242,73014.75,46520.363,2679.6426,657.18652,3303.707 +14035,17149,30560,30559,-9,-9,1,1,35,0,0,0,3,3,-9,0,2,8.4943542,8.3863888,0,6,2,4.9910131,0,2,-9,2021,2,0,50,48,1,0,0,10.487746,10.487746,.05,.05,0,0,0,0,0,0,0,0,0,2.667331,0,45.31,34.97,33.05,57.87,6.666666666666667,1,1,0,0,12,11,5,1,1344,60111.648,99752.242,73014.75,46520.363,2679.6426,657.18652,3303.707 +14036,17150,30561,30562,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8332024,7.6341619,7,12,66.592804,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.2434382,7.9880652,64.55,36.47,57.06,57.76,8.333333333333334,1,1,0,0,0,11,4,1,404,1270243.8,1090588.6,118827.09,0,0,0,4263.5488 +14036,17150,30562,30561,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.0210629,7.9040685,5.1856599,7,-12,-128.95158,0,3,3,2021,6,0,35,37,1,0,0,12.905904,12.905904,0,0,0,0,0,0,0,0,1,1,0,4.2574162,5.0740156,57.06,57.76,64.55,36.47,10,1,1,0,0,7,11,4,1,404,1270243.8,1090588.6,118827.09,0,0,0,4263.5488 +14037,17151,30563,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,5.5892134,5.1421819,0,0,-985.68121,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9893212,5.3217607,52.97,48.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,274,418166.16,0,370639.94,0,0,0,1328.0092 +14038,17152,30564,30565,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,49,-1,19.903236,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2837472,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,397,720172.75,691794.63,227589.31,106886.58,0,0,4070.6189 +14038,17152,30565,30564,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,8.4059811,8.7413511,49,1,10.424377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2712007,8.3814249,57.06,57.76,49.04,55.86,10,1,1,0,0,5,13,3,1,397,720172.75,691794.63,227589.31,106886.58,0,0,4070.6189 +14039,17153,30566,30567,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,8,-5,0,0,-9,-9,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,6.8397336,0,0,1,1,0,0,0,31.61,19.7,57.19,34.69,3.333333333333333,1,1,0,0,0,2,1,1,1254,-134949.42,0,0,0,3417.5532,917.70703,156.99658 +14039,17153,30567,30566,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,57.19,34.69,31.61,19.7,6.666666666666667,1,1,0,0,0,2,1,1,1254,-134949.42,0,0,0,3417.5532,917.70703,156.99658 +14040,17154,30568,30569,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7245049,7.654635,19,-2,104.54427,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0265965,7.735384,56.86,50.75,38.9,48.23,8.333333333333334,1,1,0,0,0,2,4,1,311.5,1187486,872713.25,148334.27,0,0,0,4779.8584 +14040,17154,30569,30568,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.052578,8.0715504,19,2,110.42908,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.4411776,0,0,1,1,0,4.3985958,8.1454744,38.9,48.23,56.86,50.75,8.333333333333334,1,1,0,0,0,2,4,1,311.5,1187486,872713.25,148334.27,0,0,0,4779.8584 +14041,17155,30570,30571,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,0,0,0,15,-2,91.193779,0,2,1,2021,24,12,0,39,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4543445,0,37.09,62.57,54.2,57.49,6.666666666666667,1,1,1,0,5,10,4,0,456.5,1880679.5,1690065.5,124404.79,0,4694.8965,0,2352.4224 +14041,17155,30571,30570,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.3710327,8.0739183,0,16,2,-11.782097,0,2,2,2021,8,0,47,55,1,0,0,9.9073915,9.9073915,0,0,0,0,0,0,.13534872,0,0,0,0,.416866,0,54.2,57.49,37.09,62.57,8.333333333333334,1,1,0,0,8,10,4,0,456.5,1880679.5,1690065.5,124404.79,0,4694.8965,0,2352.4224 +14042,17156,30572,30574,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.2103653,9.6809425,0,1,2,-1.3990101,-9,1,1,2021,10,0,15,0,1,0,0,79.439232,79.439232,.05,.05,0,0,0,0,0,0,1,1,0,7.1065507,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,11,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30573,-9,30574,30572,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.07965,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30574,30572,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,9.0059433,9.1278334,0,1,-2,-31.427607,-9,1,1,2021,9,0,34,0,1,0,0,32.044678,32.044678,.05,.05,0,0,0,0,0,0,1,1,0,6.9838099,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,13,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30575,-9,30574,30572,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4487,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14043,17157,30576,-9,30578,30577,1,1,20,0,1,0,2,2,-9,0,4,5.616045,5.7754607,0,0,0,-959.22351,-9,3,1,2021,10,0,2,0,1,0,1,17.035742,17.035742,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,5,3,4,0,1,0,8,2,0,3109,33818.02,64571.508,0,0,0,0,151.00296 +14043,17158,30577,30578,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,0,0,0,8,6,11.71395,-9,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.83,59.68,55.21,15.17,3.333333333333333,3,4,1,0,8,8,2,0,376,-98066.313,0,0,0,0,0,1497.1475 +14043,17158,30578,30577,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,0,4.3052592,4.4419322,37,-6,-77.397682,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,4.382957,55.21,15.17,40.83,59.68,5,3,4,0,0,7,8,2,0,376,-98066.313,0,0,0,0,0,1497.1475 +14044,17159,30579,30580,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.8418326,6.0964904,14,12,-52.59185,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1578846,41.61,44.94,48,49,3.333333333333333,1,1,0,1,0,7,2,0,936.5,304451.88,194193.95,253360.75,0,0,0,1831.3651 +14044,17159,30580,30579,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,14,-12,-58.193409,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,41.61,44.94,7,2,3,0,1,0,7,2,0,936.5,304451.88,194193.95,253360.75,0,0,0,1831.3651 +14045,17160,30581,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.0291109,8.3362684,0,0,0,-1031.3987,0,2,1,2021,15,4,38,38,1,4,0,9.0457563,9.0457563,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,456,-183199,46361.145,62954.004,36584.68,0,0,1132.371 +14046,17161,30582,30583,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-8,24.608076,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,51.19,38.44,56.27,10.51,10,1,1,0,0,0,5,2,1,764.5,94028.391,50241.426,66770.828,0,3360.8364,0,2641.1611 +14046,17161,30583,30582,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.2315354,7.3919415,59,8,4.249568,0,3,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9363766,56.27,10.51,51.19,38.44,8.333333333333334,1,1,0,0,0,5,2,1,764.5,94028.391,50241.426,66770.828,0,3360.8364,0,2641.1611 +14047,17162,30584,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.0814,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.67,38.02,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,342,69274.555,0,0,0,0,0,1744.785 +14048,17163,30585,30586,30587,-9,1,0,49,0,0,0,1,1,-9,0,3,8.5080957,8.5700788,0,15,-14,-115.32439,0,3,3,2021,10,0,44,39,1,0,0,11.227142,11.227142,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,1,685,725919.63,458299.31,366477.16,24013.23,7848.6694,0,3318.8208 +14048,17163,30586,30585,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3850498,8.7503815,0,15,14,110.63673,0,3,2,2021,6,0,38,38,1,0,0,13.876785,13.876785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,8,5,1,685,725919.63,458299.31,366477.16,24013.23,7848.6694,0,3318.8208 +14048,17164,30587,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.5426188,5.448729,0,0,-1086.4083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1101265,57.93,46.29,-9,-9,10,3,4,0,0,0,8,2,1,243,69728.602,-88590.477,0,0,0,0,227.63205 +14049,17165,30588,-9,30590,30589,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.3028,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30589,30590,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.425169,7.0032659,0,7,3,21.806524,0,-9,-9,2021,3,0,50,70,1,0,0,3.302664,3.302664,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,48.83,57.34,8.333333333333334,1,1,0,0,8,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30590,30589,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.5911493,8.4636927,0,7,-3,-144.63358,0,-9,-9,2021,5,0,31,30,1,0,0,16.072966,16.072966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.83,57.34,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30591,-9,30590,30589,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.1888,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14050,17166,30592,30593,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3040524,8.2406063,0,19,2,56.375759,0,-9,-9,2021,7,0,37,37,1,0,0,11.10662,11.10662,.05,.05,0,0,0,0,0,0,0,0,0,1.7050714,0,58.32,50.22,62.49,55.09,8.333333333333334,1,1,0,0,9,2,5,1,750,203663.31,34706.242,169774.91,30481.506,15876.25,537.68488,3580.2852 +14050,17166,30593,30592,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6566601,8.6190319,0,20,-2,171.67599,0,2,1,2021,6,0,36,41,1,0,0,20.612112,20.612112,.05,.05,0,0,0,0,0,0,0,0,0,1.3564996,0,62.49,55.09,58.32,50.22,10,1,1,0,0,9,2,5,1,750,203663.31,34706.242,169774.91,30481.506,15876.25,537.68488,3580.2852 +14050,17167,30594,-9,30593,30592,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-965.53802,-9,2,2,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,515,-137291.02,0,0,0,44829.574,0,183.99696 +14051,17168,30595,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.43924,4.4403424,0,0,-1072.2695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6791215,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1715,-55902.375,82957.703,0,0,0,-1633.0975,678.70135 +14052,17169,30596,30598,-9,-9,1,1,44,0,1,0,1,1,-9,1,3,8.2307034,8.0679674,0,12,2,77.947525,0,2,2,2021,9,0,37,37,1,0,0,11.587178,11.587178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,56.5,27.07,6.666666666666667,1,1,0,1,13,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14052,17169,30597,-9,30598,30596,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-991.86346,-9,2,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,60,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14052,17169,30598,30596,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,5.9746847,5.4810495,0,12,-2,.17216779,0,-9,-9,2021,11,0,8,7,1,0,0,7.0300865,7.0300865,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,27.07,56.35,51.16,10,1,1,0,0,11,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14053,17170,30599,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,6.7234435,6.8374023,0,0,0,-838.01483,0,2,2,2021,12,0,40,40,1,0,0,1.9050461,1.9050461,0,0,0,0,0,0,0,0,0,0,0,1.7980753,0,49.23,55.95,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,143,42754.559,0,0,0,0,0,1687.886 +14054,17171,30600,30601,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,55,-5,-104.40754,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.38,57.97,10,1,1,0,0,0,6,2,1,374.5,112461.21,98975.273,59372.898,36276.313,0,1723.8141,2153.8804 +14054,17171,30601,30600,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.9814787,5.5232482,55,5,170.00841,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0557203,38.38,57.97,62.39,56.71,8.333333333333334,1,1,0,0,0,6,2,1,374.5,112461.21,98975.273,59372.898,36276.313,0,1723.8141,2153.8804 +14055,17172,30602,-9,30603,30604,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.4874,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30603,30604,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.9917207,7.7713742,0,21,-2,-29.10393,0,2,2,2021,8,0,23,21,1,0,0,18.731628,18.731628,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.13,58.45,8.333333333333334,1,1,0,0,10,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30604,30603,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.028594,9.0937567,0,19,2,183.82123,0,2,1,2021,11,0,46,41,1,0,0,21.425659,21.425659,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.13,58.45,57.33,53.46,3.333333333333333,1,1,0,0,10,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30605,-9,30603,30604,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2089,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14056,17173,30606,30607,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.2131577,4.1954303,48,-2,-42.059975,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.1726406,0,14.5,1,1,0,0,3.8558602,50.51,32.45,57.74,22.56,8.333333333333334,1,1,0,0,6,12,2,0,1091.5,174925.84,69540.563,76243.609,0,0,0,1713.9191 +14056,17173,30607,30606,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.7935076,5.7030749,9,2,23.025606,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5906377,57.74,22.56,50.51,32.45,8.333333333333334,1,1,0,0,0,12,2,0,1091.5,174925.84,69540.563,76243.609,0,0,0,1713.9191 +14057,17174,30608,30610,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,7.7628689,7.6713824,0,7,9,36.961567,0,-9,-9,2021,7,0,50,35,1,0,0,5.8699274,5.8699274,.05,.05,0,0,0,0,0,0,1,1,0,1.3661097,0,58.3,52.91,59.43,58.05,8.333333333333334,1,1,0,0,9,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14057,17174,30609,-9,30610,30608,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.4528,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14057,17174,30610,30608,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,7.4893212,7.7417235,0,23,0,56.639721,0,3,3,2021,6,0,40,40,1,0,0,7.2930794,7.2930794,.05,.05,0,0,0,0,0,2,1,1,0,1.6345984,0,59.43,58.05,58.3,52.91,8.333333333333334,1,1,0,0,8,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14058,17175,30611,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1117.7614,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,13,2,0,695,27367.018,0,76750.273,0,0,3905.0728,688.26331 +14059,17176,30612,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.0708771,8.5611773,0,0,0,-851.0144,0,-9,-9,2021,22,10,40,40,1,10,0,10.319644,10.319644,0,0,0,0,0,0,0,0,0,0,0,0,0,27.38,48.9,-9,-9,3.333333333333333,1,1,0,0,5,4,4,0,236,68289.484,0,0,0,0,0,2730.5479 +14060,17177,30613,30614,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9762635,8.0117149,0,5,-1,13.392811,0,-9,-9,2021,13,2,38,40,1,2,0,9.4326706,9.4326706,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.13,38.11,25.25,29.42,8.333333333333334,1,1,0,0,3,2,4,0,361.5,305745.72,111338.22,177588.66,0,0,0,2915.3838 +14060,17177,30614,30613,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,8.1193714,8.1154537,0,5,1,-62.724789,0,2,2,2021,28,12,37,43,1,12,0,9.3712664,9.3712664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.25,29.42,44.13,38.11,3.333333333333333,1,1,0,0,13,2,4,0,361.5,305745.72,111338.22,177588.66,0,0,0,2915.3838 +14061,17178,30615,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.2234898,9.1072493,0,0,0,-930.27551,0,2,2,2021,12,4,43,45,1,4,0,23.405689,23.405689,.05,.05,0,0,0,0,0,0,0,0,0,4.120379,0,42.79,64.22,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,334,73119.719,223133.8,157918.69,17877.68,0,0,3552.8416 +14062,17179,30616,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.5409894,7.8206072,0,0,-1024.4169,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2774334,8.1678209,43.7,37.11,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,389,665604.38,205831.86,86216.336,0,0,0,3476.7424 +14063,17180,30617,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1658306,6.8989763,0,0,-1063.0365,0,3,2,2021,17,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.38570341,6.7756724,51.75,33.06,-9,-9,5,1,1,0,0,9,9,2,0,2921,-101861.26,-24057.992,0,0,366.66623,0,70.17984 +14064,17181,30618,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.1311069,6.1072822,0,0,-996.29596,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.1404448,6.4052649,55.3,39.26,-9,-9,3.333333333333333,1,1,0,1,3,9,2,0,322,1175930.4,71182.117,851543.5,0,0,0,1294.4015 +14065,17182,30619,-9,30620,30621,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-948.76416,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14065,17182,30620,30621,-9,-9,1,0,33,1,1,0,2,2,-9,0,5,8.4255791,8.1916275,0,11,-10,157.2502,0,-9,-9,2021,16,5,39,-9,1,5,0,11.877794,11.877794,0,0,0,0,0,0,0,2,0,0,0,3.1582348,0,35.55,60.18,37.53,54.63,8.333333333333334,1,1,0,0,13,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14065,17182,30621,30620,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,9.1158133,8.9394951,0,11,10,79.571556,0,3,2,2021,24,12,38,40,1,12,0,22.711716,22.711716,.05,.05,0,0,0,0,0,0,0,0,0,3.8597059,0,37.53,54.63,35.55,60.18,6.666666666666667,1,1,0,0,14,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14066,17183,30622,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4342213,8.4565468,0,0,0,-921.86841,0,-9,-9,2021,17,5,37,38,1,5,0,12.654287,12.654287,.05,.05,0,0,0,0,0,2,0,0,0,1.6026158,0,38.99,59.25,-9,-9,5,1,1,0,0,9,5,5,1,2253,7333.9526,158795.97,0,0,6462.4761,0,1753.4127 +14067,17184,30623,30624,-9,-9,1,1,66,1,2,0,1,1,-9,0,3,0,4.2585354,4.3443294,7,2,37.087662,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,5.135354,0,0,1,1,0,1.7633392,4.4677248,34.76,59.69,48.69,41.09,6.666666666666667,1,1,0,0,6,12,2,1,1285,875570.63,298224.25,286032.56,0,0,2028.7849,1231.9441 +14067,17184,30624,30623,-9,-9,1,0,64,1,2,0,2,2,-9,0,3,0,6.2088237,6.4582815,7,-2,18.605244,0,3,2,2021,14,2,0,11,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9616671,6.3399091,48.69,41.09,34.76,59.69,5,1,1,0,0,8,12,2,1,1285,875570.63,298224.25,286032.56,0,0,2028.7849,1231.9441 +14067,17185,30625,-9,30628,30627,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.793,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30626,-9,30628,30627,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-860.66528,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30627,30628,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.0288162,9.1964588,0,7,5,-32.315037,0,-9,-9,2021,9,0,38,38,1,1,0,23.127953,23.127953,.05,.05,0,0,0,0,0,0,1,1,0,4.0343661,0,51,56,40.4,46.19,8,4,1,0,0,1,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30628,30627,30624,30623,1,0,35,1,2,0,1,1,-9,0,3,8.8218784,8.7629318,0,7,-5,65.551239,0,2,2,2021,11,0,32,34,1,0,0,20.034401,20.034401,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,46.19,51,56,8.333333333333334,1,1,0,0,8,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14068,17186,30629,-9,-9,-9,1,0,44,0,0,0,1,1,-9,1,3,8.5322056,8.5664816,6.6714196,15,0,56.020905,0,2,2,2021,21,10,50,43,1,10,0,12.320297,12.320297,.05,.05,0,0,0,0,0,7,1,1,0,0,7.0718222,39.96,41.03,48,49,8.333333333333334,1,1,0,0,11,6,4,1,1127,611474.63,242168.95,188414.72,90903.891,0,2658.7324,3380.7224 +14069,17187,30630,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.82416,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2878966,0,0,1,1,0,0,0,47.03,38.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,263,0,0,0,0,0,0,1486.95 +14070,17188,30631,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.8866658,6.1139774,0,0,-1023.9224,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9062078,5.895782,46.2,33,-9,-9,5,1,1,0,0,2,9,2,0,1109,243394.83,-38475.434,0,0,0,0,898.63263 +14071,17189,30632,-9,30633,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.07288,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,177.5,99980.391,0,0,0,0,0,964.0022 +14071,17189,30633,-9,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,0,0,0,0,0,-964.27881,0,2,-9,2021,10,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,5,4,1,0,177.5,99980.391,0,0,0,0,0,964.0022 +14072,17190,30634,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.43507,8.2052021,0,0,0,-880.06622,0,-9,-9,2021,19,6,50,42,1,6,0,10.914182,10.914182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.24,68.01000000000001,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,1724,-45576.082,146706.31,0,0,0,0,2182.7126 +14073,17191,30635,30636,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.6569338,7.6599336,53,-5,-23.961842,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1169225,7.5950565,52.4,52.91,55.27,39.27,8.333333333333334,1,1,0,0,9,1,3,1,2063,695779.5,266307.34,191757.13,0,0,0,3506.1973 +14073,17191,30636,30635,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.6422114,6.4259672,13,5,19.408054,-9,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58336204,6.8075485,55.27,39.27,52.4,52.91,8.333333333333334,1,1,0,0,0,1,3,1,2063,695779.5,266307.34,191757.13,0,0,0,3506.1973 +14074,17192,30637,-9,30638,30639,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.36243,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14074,17192,30638,30639,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,5.7010112,6.0334072,0,23,-2,73.69487,0,2,2,2021,6,0,8,10,1,0,0,5.0383077,5.0383077,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,52,56,8.333333333333334,1,1,0,0,3,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14074,17192,30639,30638,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.9734125,9.0554972,0,13,2,102.87219,0,2,1,2021,9,0,40,40,1,1,0,25.811537,25.811537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,56,60.02,56.42,8,1,1,0,0,1,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14075,17193,30640,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.4245949,8.4771557,0,0,0,-966.94629,0,-9,-9,2021,9,0,40,43,1,0,0,13.342988,13.342988,.05,.05,0,0,0,0,0,0,0,0,0,.80882037,0,56.51,40.62,-9,-9,6.666666666666667,1,1,0,0,10,11,5,0,649,-148582.92,30166.389,0,0,0,0,1300.6846 +14076,17194,30641,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1804533,8.3392944,0,0,0,-1127.2764,0,2,2,2021,14,4,38,37,1,4,0,10.532171,10.532171,0,0,0,0,0,0,0,7,1,1,0,6.0223284,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,7,7,4,1,445,389970.59,21104.051,259956.8,0,0,0,1260.8911 +14077,17195,30642,30646,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,9.050354,9.1929359,0,8,-2,-15.049642,0,-9,-9,2021,8,0,36,34,1,0,0,21.564871,21.564871,.05,.05,0,0,0,0,0,0,0,0,0,1.9907359,0,49.3,59.89,62.39,56.71,10,1,1,0,0,11,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30643,-9,30642,30646,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.9034,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30644,-9,30642,30646,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.29169,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30645,-9,30642,30646,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.5348,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30646,30642,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,9.427701,9.2267551,0,8,2,87.358162,0,2,1,2021,7,0,42,42,1,0,0,31.350023,31.350023,.05,.05,0,0,0,0,0,0,0,0,0,2.4411185,0,62.39,56.71,49.3,59.89,10,1,1,0,0,9,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14078,17196,30647,30648,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.3184423,7.3732638,0,6,-1,23.195509,0,2,2,2021,13,1,45,45,1,1,0,4.4234753,4.4234753,0,0,0,0,0,0,0,0,1,1,0,0,0,48.32,50.46,53.1,52.62,8.333333333333334,1,1,0,0,11,13,3,1,1142.5,137464.39,111218.72,0,0,0,0,966.27393 +14078,17196,30648,30647,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.4553928,7.6547184,0,6,1,26.053717,0,3,3,2021,6,0,14,0,1,0,0,14.056236,14.056236,0,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,48.32,50.46,8.333333333333334,1,1,0,0,9,13,3,1,1142.5,137464.39,111218.72,0,0,0,0,966.27393 +14078,17197,30649,-9,30648,30647,1,0,22,0,0,0,2,2,-9,0,2,7.8417854,7.7133398,0,0,0,-974.20166,0,2,2,2021,14,3,10,30,1,3,1,37.403477,37.403477,0,0,0,0,0,0,0,0,1,1,0,0,0,30.61,51.03,-9,-9,5,1,1,0,0,6,13,3,1,2980,-13641.766,0,0,0,3309.6343,-26.215097,1172.6001 +14079,17198,30650,-9,30652,30651,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.7366,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17198,30651,30652,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.5742989,7.5640788,0,24,4,148.83028,0,2,2,2021,11,2,40,40,1,2,0,8.1043272,8.1043272,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.91,59.89,13.92,30.46,8.333333333333334,1,1,0,0,9,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17198,30652,30651,-9,-9,1,0,42,0,1,0,3,3,-9,1,1,0,0,0,24,-4,-21.647648,0,3,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.92,30.46,45.91,59.89,0,1,1,0,0,0,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17199,30653,-9,30652,30651,1,0,21,0,1,0,1,1,1,0,2,7.4861465,7.3290486,0,0,0,-883.1767,-9,3,2,2021,8,1,35,0,1,1,1,7.2727408,7.2727408,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.56,46.45,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,646,114276.99,-12837.421,0,0,0,0,524.25031 +14080,17200,30654,30655,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1488814,8.266758,6.8337603,8,-10,-94.618401,0,2,2,2021,10,2,21,22,1,2,0,8.2126522,8.2126522,0,0,0,0,0,0,0,0,1,1,0,0,6.9541831,48.87,58.55,54.79,55.86,8.333333333333334,1,1,0,0,12,10,3,0,425.5,534562.38,430464.63,0,0,0,19540.391,1434.4186 +14080,17200,30655,30654,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.4020181,6.6342816,8,10,-55.607121,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5190287,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,0,10,3,0,425.5,534562.38,430464.63,0,0,0,19540.391,1434.4186 +14081,17201,30656,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6764355,8.4646511,0,0,0,-961.25641,0,3,3,2021,12,0,37,35,1,0,0,20.172733,20.172733,.05,.05,0,0,0,0,0,0,0,0,0,1.9441653,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,8,5,1,729,1098288.5,760587.88,274738.66,-34355.641,0,0,2632.5566 +14081,17202,30657,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3272324,8.6438255,0,0,0,-1126.575,0,-9,3,2021,15,4,77,43,1,4,0,7.499001,7.499001,.05,.05,0,0,0,0,0,0,0,0,0,.25536665,0,43.42,62.33,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,683,1064751,745414.06,260052.88,12783.304,0,0,2279.3599 +14082,17203,30658,30659,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.7196689,7.8672347,53,4,142.3851,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6650281,7.6295438,59.08,32.67,60.12,54.8,8.333333333333334,1,1,0,0,0,5,3,1,680,1103764,367665.19,309848.63,0,0,0,2206.4951 +14082,17203,30659,30658,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,53,-4,142.59291,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0557904,0,60.12,54.8,59.08,32.67,1.666666666666667,1,1,0,0,0,5,3,1,680,1103764,367665.19,309848.63,0,0,0,2206.4951 +14083,17204,30660,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,.14410284,0,0,0,0,-950.88568,0,2,2,2021,11,0,15,0,1,0,0,.00099644472,.00099644472,0,0,0,0,0,0,0,0,1,1,0,7.0304341,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,475,-82049.172,0,0,0,0,0,51.00349 +14084,17205,30661,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.8627996,6.0571313,0,0,-1029.3324,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.748261,50,47,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,640,6336.647,0,0,0,0,0,1231.9454 +14085,17206,30662,30663,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.9421659,7.8357587,49,-5,7.6225443,0,2,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,20.320301,0,0,1,1,0,7.3644905,8.2211361,19.84,27.77,52,54.51,3.333333333333333,1,1,0,0,4,12,3,0,304.5,1485812.5,1218763.5,158237.92,0,0,0,3776.8735 +14085,17206,30663,30662,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.9004941,6.5053005,49,5,-70.613922,0,3,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7648993,6.8785772,52,54.51,19.84,27.77,10,1,1,0,0,0,12,3,0,304.5,1485812.5,1218763.5,158237.92,0,0,0,3776.8735 +14086,17207,30664,-9,30667,30665,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.56323,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30665,30667,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,6.3071151,6.6124344,0,8,3,-7.3880138,0,3,3,2021,9,0,40,40,1,1,0,1.9984288,1.9984288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,52.57,52.89,8,1,1,0,0,1,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30666,-9,30667,30665,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-928.81964,-9,2,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30667,30665,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3220987,8.3456669,0,8,-3,11.884974,0,3,3,2021,9,0,40,40,1,0,0,13.187556,13.187556,.05,.05,0,0,0,0,0,0,1,1,0,6.6315155,0,52.57,52.89,52,55,0,1,1,0,0,10,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17208,30668,-9,30667,30665,1,1,25,0,1,0,2,2,-9,0,4,8.4412308,8.4481707,0,0,0,-1121.0781,0,2,2,2021,10,0,40,40,1,1,1,14.077872,14.077872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,5,1,1905,100539.95,13113.914,0,0,6654.8594,0,1457.8708 +14087,17209,30669,-9,-9,-9,1,1,52,0,0,0,1,1,-9,1,4,0,5.0932064,5.461997,0,0,-823.54755,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1450906,0,59.53,56.44,-9,-9,3.333333333333333,3,4,1,1,1,9,2,0,175,1224368.6,224216,131405.53,0,0,0,1661.2354 +14088,17210,30670,30672,-9,-9,1,0,37,0,1,0,1,1,1,1,1,0,6.4028583,6.4568954,6,-1,5.3758812,-9,2,2,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.4329143,0,33.23,20.18,55.81,39.4,3.333333333333333,1,1,0,1,3,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14088,17210,30671,-9,-9,30672,1,1,17,0,1,1,2,0,0,1,3,0,0,0,0,0,-896.95966,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.65,63.2,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14088,17210,30672,30670,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.4630423,7.5655284,0,6,1,19.372711,0,-9,-9,2021,8,0,27,38,1,0,0,8.4404383,8.4404383,0,0,0,0,0,0,0,0,1,0,1,0,0,55.81,39.4,33.23,20.18,8.333333333333334,1,1,0,1,8,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14089,17211,30673,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,5.9477801,5.9650507,0,0,-1040.3264,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6329265,5.5988107,43.26,44.86,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,1627,176942.73,-37051.789,189975.03,43069.707,9400.75,599.75482,397.80823 +14090,17212,30674,30675,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.3229456,8.791667,0,10,-1,-18.302355,0,-9,-9,2021,10,0,38,38,1,0,0,13.938374,13.938374,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.14,53.42,28.77,66.88,5,1,1,0,0,7,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14090,17212,30675,30674,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.0783715,7.6502733,0,17,1,-42.313267,0,2,3,2021,29,9,31,12,1,9,0,4.7888942,4.7888942,0,0,0,0,0,0,0,0,1,1,0,0,0,28.77,66.88,48.14,53.42,1.666666666666667,1,1,0,0,11,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14090,17212,30676,-9,30675,30674,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-819.42053,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14091,17213,30677,30679,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,9.3307486,9.0581455,0,7,7,29.705353,0,2,-9,2021,7,0,40,45,1,0,0,37.002068,37.002068,.05,.05,0,0,0,0,0,0,1,1,0,2.8693612,0,52,54.51,53.64,27.15,6.666666666666667,1,1,0,0,9,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30678,-9,30679,30677,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-827.59729,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.023223836,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30679,30677,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,7.203371,7.3335638,0,7,-7,57.354855,0,2,-9,2021,11,2,20,20,1,2,0,8.6763563,8.6763563,.05,.05,0,0,0,0,0,0,1,1,0,4.6134672,0,53.64,27.15,52,54.51,8.333333333333334,1,1,0,0,8,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30680,-9,30679,30677,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.504,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14092,17214,30681,-9,30684,30682,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.5542,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30682,30684,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.426734,8.433485,0,11,1,210.23578,0,-9,-9,2021,8,0,39,39,1,0,0,13.83754,13.83754,.05,.05,0,0,0,0,0,0,1,1,0,4.8493357,0,48.48,54.62,48.71,61.53,6.666666666666667,1,1,0,0,10,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30683,-9,30684,30682,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.975,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30684,30682,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.8410578,8.6042967,0,11,-1,-68.789391,0,-9,-9,2021,6,0,30,30,1,0,0,22.490456,22.490456,.05,.05,0,0,0,0,0,0,1,1,0,4.8839598,0,48.71,61.53,48.48,54.62,8.333333333333334,1,1,0,0,12,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14093,17215,30685,-9,-9,-9,1,1,41,0,0,0,1,1,-9,1,2,7.5210505,7.1539693,0,0,0,-890.93701,0,2,2,2021,10,1,10,15,1,1,0,17.700279,17.700279,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.33,48.7,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,978,18247.416,70377.141,0,0,0,0,1455.8594 +14094,17216,30686,30687,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.9604468,7.969193,0,7,0,-47.411545,0,3,3,2021,7,0,9,40,1,0,0,38.882244,38.882244,.05,.05,0,0,0,0,0,0,0,0,0,6.4278865,0,57.16,56.15,54.2,57.49,10,1,1,0,0,10,9,4,1,614.5,1506521.3,1195707,426261.94,0,0,4680.9941,3020.6619 +14094,17216,30687,30686,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.5521955,7.6758008,0,7,0,97.152992,0,3,3,2021,6,0,21,20,1,0,0,9.6963825,9.6963825,0,0,0,0,0,0,0,0,0,0,0,7.6534724,0,54.2,57.49,57.16,56.15,10,1,1,0,0,10,9,4,1,614.5,1506521.3,1195707,426261.94,0,0,4680.9941,3020.6619 +14095,17217,30688,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,2.7665579,2.4759855,0,0,-949.4425,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,2.4167554,32.42,36.67,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,583,409572.53,40175.727,320674.75,137773.14,0,0,935.36737 +14096,17218,30689,30690,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,10,0,19.773632,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,.35289648,0,2,1,1,0,6.9682875,0,44.64,17.75,62.42,32.41,6.666666666666667,2,3,0,0,0,8,2,1,644.5,363165.19,-36063.387,261940.28,86700.344,0,251.80869,1346.0757 +14096,17218,30690,30689,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,4.5316181,4.9118824,10,0,-90.845772,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8464079,4.9045262,62.42,32.41,44.64,17.75,8.333333333333334,2,3,0,0,4,8,2,1,644.5,363165.19,-36063.387,261940.28,86700.344,0,251.80869,1346.0757 +14096,17219,30691,-9,30689,30690,1,1,54,0,0,0,1,1,-9,0,2,9.3645515,9.4269733,0,0,0,-943.3512,0,2,2,2021,23,11,50,55,1,11,0,24.726694,24.726694,.05,.05,0,0,0,0,0,0,1,1,0,4.2974777,0,35.04,49.04,-9,-9,3.333333333333333,2,3,0,0,11,8,5,1,515,1397613.3,735303.44,356304.34,0,0,0,3862.3875 +14097,17220,30692,30697,-9,-9,1,1,50,0,4,0,1,1,-9,0,4,8.054471,8.0937939,0,7,2,-64.409401,0,-9,-9,2021,8,0,40,0,1,0,0,10.403491,10.403491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.39,42.39,52.09,50.4,6.666666666666667,3,4,0,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30693,-9,30697,30692,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-999.59241,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30694,-9,30697,30692,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-930.47858,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30695,-9,30697,30692,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-909.71295,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30696,-9,30697,30692,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.6213,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30697,30692,-9,-9,1,0,48,0,4,0,2,2,-9,0,4,7.6422544,7.1919365,0,19,-2,54.288651,0,2,2,2021,6,0,20,20,1,0,0,9.9355993,9.9355993,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.09,50.4,63.39,42.39,8.333333333333334,3,4,0,0,5,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14098,17221,30698,30699,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4299874,6.419868,63,4,18.946873,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,21.270317,0,120,1,1,0,0,6.3521571,39.63,21.25,32.8,21.51,5,2,3,0,0,0,9,2,1,1147.5,273482.22,94941.344,386093.31,0,0,0,2895.4548 +14098,17221,30699,30698,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,11,-4,-15.421678,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,27.392267,71.484245,249.44505,2,1,1,0,0,0,32.8,21.51,39.63,21.25,5,2,3,0,0,0,9,2,1,1147.5,273482.22,94941.344,386093.31,0,0,0,2895.4548 +14099,17222,30700,30701,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,4.0300899,4.5009789,57,1,-57.19302,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.2443347,51.83,57.2,57.16,56.15,10,1,1,0,0,8,7,2,0,729,741048.13,42243.082,786516.69,0,0,0,891.43951 +14099,17222,30701,30700,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,-1,38.715809,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,7,2,0,729,741048.13,42243.082,786516.69,0,0,0,891.43951 +14100,17223,30702,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.7818227,7.7063622,0,0,-980.6969,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5889666,7.7630901,64.43000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,356,130443.41,0,0,0,0,0,1840.9724 +14101,17224,30703,30704,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0701418,8.8327885,0,39,1,141.30452,0,2,2,2021,6,0,28,45,1,0,0,31.456308,31.456308,.05,.05,0,0,0,0,0,0,0,0,0,7.9524584,0,57.16,56.15,35.8,59.5,8.333333333333334,2,3,0,0,14,8,5,1,727.5,1057488.1,246564.56,655079.13,32096.346,0,0,4712.4863 +14101,17224,30704,30703,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,0,0,39,-1,-75.890816,0,-9,-9,2021,25,12,0,30,3,12,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,35.8,59.5,57.16,56.15,8.333333333333334,1,1,1,0,11,8,5,1,727.5,1057488.1,246564.56,655079.13,32096.346,0,0,4712.4863 +14101,17225,30705,-9,30703,30704,1,1,23,0,0,0,1,1,1,0,5,0,4.4533286,4.434999,0,0,-996.18188,-9,1,1,2021,16,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.936553,0,38.18,65.09,-9,-9,3.333333333333333,4,2,1,0,5,8,2,1,610,-94092.164,0,0,0,0,0,-530.92053 +14102,17226,30706,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.56659,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,1.3744965,5.3257122,22.79497,0,1,1,0,0,0,22.47,38.77,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,82,190059.66,0,234260.91,0,0,0,62.25597 +14103,17227,30707,30708,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1605916,7.4877028,57,5,53.234474,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3319712,58.92,48.59,55.79,52.62,8.333333333333334,1,1,0,0,0,12,2,1,876,184863.63,181146.22,159060,0,0,0,2194.0728 +14103,17227,30708,30707,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.2795291,5.9648032,57,-5,-39.477257,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4258175,55.79,52.62,58.92,48.59,8.333333333333334,1,1,0,0,9,12,2,1,876,184863.63,181146.22,159060,0,0,0,2194.0728 +14104,17228,30709,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.1511154,7.3591514,0,0,-1073.4178,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5551124,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,7501,569727.94,246722.28,61154.191,0,0,0,1879.7239 +14104,17229,30710,-9,-9,30709,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1141.2291,-9,-9,3,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0027915,0,50.41,42.98,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,906,0,0,0,0,0,0,-376.43573 +14105,17230,30711,30712,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,7.5884366,7.7302465,22,6,19.504929,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7466254,7.7898707,58.56,46.45,54.37,54.8,8.333333333333334,1,1,0,0,9,9,4,1,530,1067356.3,490344.69,429398.56,0,0,0,1857.1626 +14105,17230,30712,30711,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7150869,7.7329569,0,22,-6,45.616112,0,2,1,2021,11,0,30,75,1,0,0,10.675645,10.675645,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.56,46.45,8.333333333333334,1,1,0,0,10,9,4,1,530,1067356.3,490344.69,429398.56,0,0,0,1857.1626 +14106,17231,30713,30714,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,4,-5,-12.884165,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,60.21,34.28,8.333333333333334,1,1,0,0,10,5,2,1,622,374074.56,171455.34,195910.8,0,0,0,2013.4303 +14106,17231,30714,30713,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.9156299,6.9673667,4,5,-11.743225,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.802619,6.7664652,60.21,34.28,33.32,18.46,8.333333333333334,1,1,0,0,9,5,2,1,622,374074.56,171455.34,195910.8,0,0,0,2013.4303 +14107,17232,30715,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.9182053,8.9583225,0,3,-1,-126.99548,0,2,1,2021,7,0,43,57,1,0,0,20.478006,20.478006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.29,54.84,54.69,57.47,8.333333333333334,4,2,0,0,5,8,5,0,247,453314.06,118066.98,259415.5,72310.883,0,0,2147.741 +14107,17233,30716,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.1517458,7.751472,0,3,1,-26.15942,0,-9,-9,2021,10,0,35,37,1,0,0,12.071063,12.071063,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.29,54.84,8.333333333333334,1,1,0,0,5,8,5,0,2766,7113.0225,0,0,0,0,0,-65.857307 +14108,17234,30717,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9293604,8.1663446,5.0178847,0,0,-991.79779,0,3,2,2021,10,0,32,15,1,0,0,9.0631609,9.0631609,0,0,0,0,0,0,0,0,0,0,0,5.3727064,5.3301015,52.37,43.52,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,331,197068.69,3928.7637,246162.53,137347.23,0,0,1103.1387 +14109,17235,30718,30719,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.3651638,8.4780302,0,23,2,118.71087,0,2,2,2021,6,0,47,41,1,0,0,7.8702912,7.8702912,.05,.05,0,0,0,0,0,0,1,1,0,2.9549105,0,56.82,56.51,46.28,62.6,10,1,1,0,0,8,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30719,30718,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.7204762,7.6104016,0,23,-2,-13.275643,0,2,2,2021,14,2,29,29,1,2,0,7.1240034,7.1240034,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,56.82,56.51,6.666666666666667,1,1,0,0,8,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30720,-9,30719,30718,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.8994,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30721,-9,30719,30718,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1102.1139,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14110,17236,30722,-9,30723,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-950.76031,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,0,1182.5,121822.6,-92755.383,107216.91,30739.979,0,0,834.31281 +14110,17236,30723,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.2920103,7.0832248,0,0,0,-1055.2335,0,3,3,2021,13,1,28,0,1,1,0,4.8257356,4.8257356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.27,37.24,-9,-9,6.666666666666667,3,4,0,0,0,2,2,0,1182.5,121822.6,-92755.383,107216.91,30739.979,0,0,834.31281 +14111,17237,30724,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.0843792,8.1919088,0,0,0,-1034.4756,0,1,2,2021,9,0,38,35,1,0,0,12.501822,12.501822,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,1629,-51604.52,-3710.928,78750.844,81879.742,0,558.44214,1686.5851 +14112,17238,30725,-9,30728,30727,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30726,-9,30728,30727,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.9633,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30727,30728,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.2695756,6.9196339,0,22,4,10.800254,0,-9,2,2021,11,0,34,35,1,0,0,5.0121007,5.0121007,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,2,3,0,0,14,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30728,30727,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,22,-4,86.406914,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,6.666666666666667,2,3,1,0,9,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30729,-9,30728,30727,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.92542,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30730,-9,30728,30727,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1135.4426,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.89,59.2,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14113,17239,30731,30732,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.6176281,8.6409473,36,6,24.173679,0,2,1,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7838883,8.4094276,53.38,52.51,50.05,55.41,8.333333333333334,1,1,0,0,7,10,5,1,518.5,1711268.3,419623.81,479125.13,0,0,0,6929.6328 +14113,17239,30732,30731,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8473272,9.3843832,7.8089991,34,-6,56.738411,0,3,2,2021,6,0,45,20,1,0,0,23.334425,23.334425,0,0,0,0,0,0,0,0,1,1,0,4.5640211,8.1897879,50.05,55.41,53.38,52.51,10,1,1,0,0,6,10,5,1,518.5,1711268.3,419623.81,479125.13,0,0,0,6929.6328 +14114,17240,30733,30734,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.6272283,7.2576718,5.1509786,42,-3,27.378811,0,2,2,2021,17,6,14,14,1,6,0,6.3276563,6.3276563,0,0,0,0,0,0,0,0,0,0,0,5.6440973,5.2432928,44.48,46.03,34.88,60.95,5,1,1,0,0,12,5,3,1,638,360396.06,30378.475,99025.25,0,0,0,2369.9966 +14114,17240,30734,30733,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,7.5997496,7.5822144,0,42,3,-137.35443,0,2,1,2021,25,12,25,30,1,12,0,11.228622,11.228622,0,0,0,0,0,0,0,0,0,0,0,7.5064397,0,34.88,60.95,44.48,46.03,3.333333333333333,1,1,0,0,11,5,3,1,638,360396.06,30378.475,99025.25,0,0,0,2369.9966 +14115,17241,30735,30738,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,0,0,0,6,-11,114.00905,0,3,3,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.75,41.28,46.82,45.62,6.666666666666667,1,1,0,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30736,-9,30735,30738,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.53247,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30737,-9,30735,30738,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.6864,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30738,30735,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.7451606,7.8018579,0,6,11,30.997374,0,3,3,2021,10,1,35,32,1,1,0,7.8303428,7.8303428,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.82,45.62,53.75,41.28,10,1,1,0,0,9,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14116,17242,30739,-9,30740,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.28687,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1835.5,-5232.0977,-54656.293,169582.27,84293.344,-1607.2485,0,2399.2104 +14116,17242,30740,-9,-9,-9,1,0,46,0,2,0,1,1,-9,1,4,7.9349756,8.2775993,5.6269541,0,0,-985.60651,0,2,3,2021,19,7,22,22,1,7,0,22.344534,22.344534,.05,.05,0,0,0,0,0,104,1,1,0,5.6610513,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,1835.5,-5232.0977,-54656.293,169582.27,84293.344,-1607.2485,0,2399.2104 +14117,17243,30741,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9877796,6.8892412,0,0,-1098.326,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8576455,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,1188,628335.31,144316.16,371095.5,0,0,0,278.37073 +14118,17244,30742,30743,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3634157,8.1576586,52,3,20.178862,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,6.7740979,0,0,1,1,0,0,8.2805691,52.32,38.44,59.14,52.5,8.333333333333334,1,1,0,0,3,8,3,1,1160,707574.75,376901.78,232356.19,0,0,0,3570.3887 +14118,17244,30743,30742,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,9,-3,5.9992728,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3900337,0,59.14,52.5,52.32,38.44,8.333333333333334,1,1,0,0,0,8,3,1,1160,707574.75,376901.78,232356.19,0,0,0,3570.3887 +14119,17245,30744,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-945.0968,0,3,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,24.49,-9,-9,0,1,1,1,1,3,6,1,0,110,-83930.766,0,0,0,0,-523.23462,435.07309 +14120,17246,30745,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,10.200161,10.230085,0,0,0,-1095.7451,0,2,2,2021,4,0,60,65,1,0,0,44.763596,44.763596,.05,.05,0,0,0,0,0,0,0,0,0,6.0450048,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,10,5,1,790,131341.45,64157.84,195366.59,90187.758,6088.5952,0,24112.518 +14121,17247,30746,30750,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.4984741,9.8367796,0,20,5,26.096891,0,2,1,2021,8,0,58,51,1,0,0,31.222767,31.222767,.05,.05,0,0,0,0,0,2,0,0,0,3.322464,0,48.14,53.42,41.39,36.7,6.666666666666667,2,3,0,0,12,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30747,-9,30750,30746,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-870.66211,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30748,-9,30750,30746,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-996.08099,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30749,-9,30750,30746,1,0,15,0,3,1,3,0,-9,0,2,0,0,0,0,0,-948.38403,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30750,30746,-9,-9,1,0,41,0,3,0,1,1,-9,0,2,0,0,0,20,-5,-67.230812,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,1.5681733,0,41.39,36.7,48.14,53.42,6.666666666666667,2,3,0,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14122,17248,30751,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7617435,7.9814601,4.9805045,0,0,-1009.748,0,3,2,2021,10,0,35,35,1,0,0,9.3094034,9.3094034,.05,.05,0,0,0,0,0,0,1,1,0,0,5.1813059,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,12,11,4,1,111,260238.8,395983.47,0,0,-1337.8856,2174.8357,1369.083 +14123,17249,30752,30753,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,39,-1,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,26,33.55,31.06,0,1,1,0,0,0,2,2,1,503,-11312.913,0,0,0,0,0,2327.8555 +14123,17249,30753,30752,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,39,1,0,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.55,31.06,37,26,3.333333333333333,1,1,0,0,0,2,2,1,503,-11312.913,0,0,0,0,0,2327.8555 +14124,17250,30754,30755,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.2132835,7.9467854,7.3669524,28,7,-201.83456,0,3,3,2021,24,12,35,40,1,12,0,4.8769202,4.8769202,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6731019,36.19,42.77,36.85,61.32,3.333333333333333,1,1,0,0,10,9,5,1,937,1088396,1020273.4,237266.06,154172.41,9244.2285,3057.8762,3865.7734 +14124,17250,30755,30754,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.7192087,8.4591856,0,28,-7,52.202221,0,2,3,2021,16,4,35,40,1,4,0,18.811699,18.811699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.85,61.32,36.19,42.77,1.666666666666667,1,1,0,0,10,9,5,1,937,1088396,1020273.4,237266.06,154172.41,9244.2285,3057.8762,3865.7734 +14125,17251,30756,-9,30757,30759,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9841,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30757,30759,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.2287207,7.8681979,0,17,-4,27.463764,0,2,2,2021,10,0,34,32,1,0,0,11.569294,11.569294,.05,.05,0,0,0,0,0,0,1,1,0,.63911372,0,50.4,55.04,51.24,58.84,6.666666666666667,1,1,0,0,10,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30758,-9,30757,30759,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.00696,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30759,30757,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.2747822,8.2725363,0,17,4,-40.317757,0,2,2,2021,18,6,35,49,1,6,0,12.943144,12.943144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.4,55.04,6.666666666666667,1,1,0,0,9,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14126,17252,30760,30761,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.9220281,7.9416776,0,8,3,173.44063,0,3,3,2021,9,0,60,75,1,1,0,6.4253826,6.4253826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,26.93,61.8,8,1,1,0,0,1,13,4,1,2052,388185.44,398237.94,79177.375,0,2353.7314,0,3968.7129 +14126,17252,30761,30760,-9,-9,1,0,48,0,0,0,2,2,-9,1,4,8.0003958,8.0834789,0,8,-3,74.339485,0,3,3,2021,18,7,40,40,1,7,0,8.1439104,8.1439104,0,0,0,0,0,0,0,0,1,1,0,0,0,26.93,61.8,53,55,8.333333333333334,1,1,0,0,7,13,4,1,2052,388185.44,398237.94,79177.375,0,2353.7314,0,3968.7129 +14126,17253,30762,-9,30761,30760,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1089.0553,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,56.16,-9,-9,5,1,1,0,0,2,13,1,1,1056.6666,0,0,0,0,0,0,0 +14126,17253,30763,-9,30762,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1122.2905,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,1,1,1056.6666,0,0,0,0,0,0,0 +14126,17253,30764,-9,30762,-9,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-920.12103,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,1,1,1056.6666,0,0,0,0,0,0,0 +14127,17254,30765,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7108507,7.6082835,3.6823013,0,0,-1020.5829,0,2,2,2021,18,6,48,48,1,6,0,4.6984901,4.6984901,0,0,0,0,0,0,0,0,1,1,0,3.3229771,0,32.32,63.9,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,279,11528.339,-38242.242,0,0,0,0,2156.5825 +14127,17255,30766,-9,30765,-9,1,1,20,0,0,0,2,2,-9,0,3,7.1465139,7.5686383,0,0,0,-1013.1015,0,2,-9,2021,15,3,32,0,1,3,1,5.7034745,5.7034745,0,0,0,0,0,0,0,0,1,1,0,.027061965,0,37.32,52.38,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,192,-6615.1377,0,0,0,0,0,351.33078 +14127,17256,30767,-9,30765,-9,1,1,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-978.90161,-9,2,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,39.65,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2692,-38428.559,0,0,0,0,0,588.1427 +14128,17257,30768,30769,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,17,0,-101.79845,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,57.33,53.46,10,2,3,0,0,8,9,3,1,461.5,1564257.8,1373399.5,259769.55,0,9570.7314,0,2198.6655 +14128,17257,30769,30768,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.4323425,8.1956272,16,9,51.502388,0,-9,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6342769,8.7121172,57.33,53.46,55.96,49.93,10,1,1,0,0,9,9,3,1,461.5,1564257.8,1373399.5,259769.55,0,9570.7314,0,2198.6655 +14129,17258,30770,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.0393958,7.2450743,0,0,-1146.8254,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,4.6993937,0,0,1,1,0,.87995541,7.0282578,33.14,29.8,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,527,-177715.55,15319.224,0,0,0,0,1298.0524 +14130,17259,30771,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.3232,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.92,29.16,-9,-9,6.666666666666667,4,5,0,1,0,5,1,1,1134,54403.691,0,0,0,0,0,240.27271 +14131,17260,30772,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,7.4833374,7.3970237,4.84026,0,0,-985.45734,0,2,2,2021,6,0,18,18,1,0,0,9.9024057,9.9024057,.05,.05,0,0,0,0,0,0,0,0,0,4.156292,0,69.65000000000001,12.73,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,937,-46525.418,83328.219,0,0,3317.6348,516.76337,897.5022 +14132,17261,30773,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1068.4882,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.52,49.66,-9,-9,5,1,1,0,0,0,9,2,0,1360,57457.973,0,0,0,0,0,2108.522 +14133,17262,30774,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,5.9793315,5.8394847,0,0,0,-1083.8973,0,2,-9,2021,5,0,40,36,1,0,0,1.2490907,1.2490907,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,2,3,0,0,4,4,2,0,552,-67335.023,0,148086.63,0,0,6774.0977,244.22241 +14134,17263,30775,30776,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,5.0551081,5.1901164,0,1,-2,-56.109863,-9,2,2,2021,14,2,30,0,1,2,0,.57163048,.57163048,0,0,0,0,0,0,0,0,1,0,1,0,0,30.46,58.83,33.01,63.17,8.333333333333334,1,1,0,1,13,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14134,17263,30776,30775,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.2575941,7.6848035,6.4167337,1,2,75.873665,-9,-9,-9,2021,10,0,40,0,1,0,0,4.6509938,4.6509938,0,0,0,0,0,0,0,0,1,0,1,7.1267071,0,33.01,63.17,30.46,58.83,6.666666666666667,1,1,0,1,4,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14134,17263,30777,-9,30775,30776,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.049,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14135,17264,30778,30779,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.0638132,8.4563799,0,12,-4,-127.90245,0,3,3,2021,9,0,23,23,1,0,0,18.955061,18.955061,0,0,0,0,0,0,0,0,0,0,0,3.9232061,0,49.28,52.09,54.37,54.8,6.666666666666667,1,1,0,0,13,6,5,1,1134,881911.5,678520.13,79059.641,0,0,2319.6633,4229.4927 +14135,17264,30779,30778,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.1918621,9.0183325,0,12,4,-.71992725,0,2,2,2021,12,0,37,36,1,0,0,20.665222,20.665222,.05,.05,0,0,0,0,0,0,0,0,0,1.5874676,0,54.37,54.8,49.28,52.09,6.666666666666667,1,1,0,0,13,6,5,1,1134,881911.5,678520.13,79059.641,0,0,2319.6633,4229.4927 +14136,17265,30780,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,7.6688862,7.4394827,0,0,0,-927.49457,0,-9,-9,2021,20,8,38,38,1,8,0,7.9250193,7.9250193,0,0,0,0,0,0,0,0,0,0,0,0,0,26.89,47.24,-9,-9,3.333333333333333,1,1,0,0,5,7,3,0,425,-5050.8467,0,0,0,0,0,1610.3479 +14136,17266,30781,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.56018,0,-9,-9,2021,23,9,0,38,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.85,59.17,-9,-9,5,1,1,1,0,0,7,1,0,761,-137072.09,0,0,0,0,277.746,0 +14137,17267,30782,-9,30784,30783,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-923.86176,-9,3,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.109797,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,0,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14137,17267,30783,30784,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.127717,8.444169,0,23,6,40.393631,0,-9,-9,2021,8,0,48,48,1,0,0,9.9301481,9.9301481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,5,2,3,0,0,10,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14137,17267,30784,30783,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.4683366,7.874896,0,23,-6,-12.491813,0,2,2,2021,11,0,38,8,1,0,0,7.809411,7.809411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,9,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14138,17268,30785,30788,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9328384,8.7950392,0,23,2,-24.046858,0,3,2,2021,10,0,35,55,1,1,0,19.882767,19.882767,.05,.05,0,0,0,0,0,0,1,1,0,2.2909045,0,51,54,56.92,49.39,8,1,1,0,0,2,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30786,-9,30785,30788,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.19159,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30787,-9,30785,30788,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.59,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30788,30785,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0377102,8.873415,0,6,-2,93.208855,0,-9,-9,2021,6,0,60,70,1,0,0,20.186478,20.186478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,51,54,5,1,1,0,0,6,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14139,17269,30789,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.902503,9.0742064,0,0,0,-927.75256,0,2,3,2021,12,2,43,46,1,2,0,18.284323,18.284323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,285,1070793.8,920706.06,125326.98,62162.527,0,0,3031.4382 +14140,17270,30790,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1026.3011,0,3,3,2021,20,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,55.32,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,153,-118566.88,0,0,0,0,0,269.86029 +14141,17271,30791,30792,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.6283178,7.8120036,10,3,-93.347717,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0691152,7.7454572,39.07,53.41,52.93,52.64,8.333333333333334,1,1,0,0,10,6,5,1,1308,830370.88,0,259425.75,0,4130.542,-541.23932,3686.1445 +14141,17271,30792,30791,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.8582249,8.8174658,0,10,-3,84.993454,0,3,3,2021,8,0,37,37,1,0,0,17.405024,17.405024,0,0,0,0,0,0,0,0,0,0,0,1.4632034,0,52.93,52.64,39.07,53.41,8.333333333333334,1,1,0,0,10,6,5,1,1308,830370.88,0,259425.75,0,4130.542,-541.23932,3686.1445 +14142,17272,30793,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.3408871,7.2479687,0,0,-1015.3234,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1146984,7.5309434,32.5,55.55,-9,-9,5,1,1,0,0,0,8,3,1,598,811682.38,212812.61,670332.56,0,-1399.9462,0,897.02539 +14143,17273,30794,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.0545959,7.5300884,7.0033817,0,0,-920.4436,0,3,3,2021,8,2,20,20,1,2,0,3.1034396,3.1034396,0,0,0,0,0,0,0,0,1,1,0,7.1544189,6.821353,62.26,37.6,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,143,325597.13,-18048.908,0,0,0,0,2307.8823 +14144,17274,30795,30796,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,6.3759093,6.1265678,8,4,94.546242,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.4913793,6.6930914,58.66,16.32,51.83,57.2,5,1,1,0,0,1,10,3,1,1007.5,835107.88,410912.88,18599.242,0,0,0,2019.9729 +14144,17274,30796,30795,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5375051,7.1377964,8,-4,-113.66194,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7194738,6.8096266,51.83,57.2,58.66,16.32,8.333333333333334,1,1,0,0,1,10,3,1,1007.5,835107.88,410912.88,18599.242,0,0,0,2019.9729 +14145,17275,30797,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.21033,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,47.32,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,908,180470.88,0,0,0,0,0,1421.4696 +14146,17276,30798,-9,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1033.1554,0,-9,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,693,-53464.457,0,0,0,0,0,1343.8524 +14147,17277,30799,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.2319651,8.305459,0,0,0,-976.75629,0,3,2,2021,7,0,40,38,1,0,0,13.062142,13.062142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,386,245633.22,114013.12,113053.73,28056.639,0,4078.0112,2467.4131 +14148,17278,30800,30801,-9,-9,1,0,42,0,1,0,2,2,-9,1,4,7.0153656,7.1020808,0,25,-6,-64.229767,0,2,2,2021,10,0,15,0,1,1,0,8.7173243,8.7173243,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,65.62,37.83,8,2,3,0,0,5,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17278,30801,30800,-9,-9,1,1,48,0,1,0,1,1,-9,1,2,0,0,0,25,6,52.803516,0,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,65.62,37.83,49,55,8.333333333333334,2,3,0,0,0,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17278,30802,-9,30800,30801,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.21472,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17279,30803,-9,30800,30801,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1162.2803,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,0,8,1,0,639,51530.258,0,0,0,0,0,252.47435 +14149,17280,30804,30805,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,68,-2,-6.5580621,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.4,23.24,39.37,21.77,8.333333333333334,1,1,0,0,1,8,2,1,510.5,321528.69,23396.668,224186.56,0,0,0,2010.9221 +14149,17280,30805,30804,-9,-9,1,1,89,0,0,0,3,3,-9,0,1,0,6.1031227,6.2394352,68,2,43.635651,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,15.305605,0,131.20525,0,1,1,0,2.8846862,6.2952676,39.37,21.77,55.4,23.24,0,1,1,0,0,6,8,2,1,510.5,321528.69,23396.668,224186.56,0,0,0,2010.9221 +14150,17281,30806,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.9716825,7.589437,0,2,-3,-49.261459,0,2,2,2021,10,2,45,40,1,2,0,7.1804438,7.1804438,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,57.03,39.65,42.5,8.333333333333334,1,1,0,0,9,6,4,0,654,52001.566,0,0,0,3620.7478,0,1313.2456 +14150,17282,30807,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.1836901,8.001545,0,2,3,154.7216,0,-9,-9,2021,15,4,38,15,1,4,0,7.1844959,7.1844959,0,0,0,0,0,0,0,0,0,0,0,0,0,39.65,42.5,46.8,57.03,5,1,1,0,0,3,6,4,0,371,-4217.8521,0,0,0,0,0,1256.6805 +14151,17283,30808,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.4623585,6.2479939,0,0,-995.26306,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0668788,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,798,461010.03,-49085.461,219881.56,0,0,-94.640923,1455.0886 +14152,17284,30809,30810,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,4,1,94.284111,0,3,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,3.1143682,6.2123713,21.323227,0,1,1,0,0,0,45.39,38.38,52.62,39.54,6.666666666666667,1,1,0,0,0,2,2,1,1587.5,213280.19,75265.266,0,0,0,0,1677.6583 +14152,17284,30810,30809,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.6253724,5.7653947,4,-1,147.31125,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,28.689529,0,0,1,1,0,5.8196836,5.4549446,52.62,39.54,45.39,38.38,6.666666666666667,1,1,0,0,3,2,2,1,1587.5,213280.19,75265.266,0,0,0,0,1677.6583 +14153,17285,30811,-9,30814,30813,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.51337,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30812,-9,30814,30813,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.5623,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30813,30814,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.9315395,8.7153263,0,6,3,-77.789001,0,2,1,2021,8,1,37,37,1,1,0,19.90086,19.90086,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,7,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30814,30813,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.0863714,8.3196764,0,6,-3,30.684057,0,2,2,2021,3,0,37,30,1,0,0,11.647749,11.647749,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,10,1,1,0,0,7,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14154,17286,30815,-9,-9,-9,1,0,26,0,0,0,3,3,-9,0,3,7.9397488,7.5619683,0,0,0,-988.20178,0,-9,-9,2021,11,0,37,16,1,0,0,8.0651827,8.0651827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,127,4781.478,67880.93,0,0,688.32898,0,603.09412 +14155,17287,30816,30817,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.4418178,7.5576782,0,7,-3,-55.027641,0,2,2,2021,8,0,23,23,1,0,0,9.2890902,9.2890902,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.12,54.8,6.666666666666667,1,1,0,0,8,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30817,30816,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1849966,8.9693804,0,7,3,93.580681,0,-9,-9,2021,10,0,41,39,1,0,0,22.465267,22.465267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30818,-9,30816,30817,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0798,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30819,-9,30816,30817,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.66992,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14156,17288,30820,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9176097,6.9762812,0,0,-859.98035,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6235094,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,131,258651.84,282522.5,0,0,0,0,1294.2251 +14157,17289,30821,-9,30823,30824,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.8421,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30822,-9,30823,30824,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.04144,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30823,30824,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,6.8844919,6.8535004,0,4,-7,-137.12198,0,-9,-9,2021,16,3,21,26,1,3,0,6.959425,6.959425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,57,10,1,1,0,0,9,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30824,30823,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.296771,8.2839069,0,4,7,72.532913,0,3,2,2021,10,0,40,40,1,1,0,11.955791,11.955791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,54.79,55.86,7,1,1,0,0,1,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14158,17290,30825,30826,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,25,-3,-108.2458,-9,2,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,19.76,38.48,54.54,38.41,1.666666666666667,1,1,0,0,0,11,4,1,589.5,773506,753979.88,176855.84,0,0,0,1653.6469 +14158,17290,30826,30825,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2097826,8.2480431,0,25,3,-132.11476,-9,-9,-9,2021,12,0,44,0,1,0,0,9.8716068,9.8716068,.05,.05,0,0,0,0,0,2,0,0,0,1.2852184,0,54.54,38.41,19.76,38.48,6.666666666666667,1,1,0,0,10,11,4,1,589.5,773506,753979.88,176855.84,0,0,0,1653.6469 +14158,17291,30827,-9,30825,30826,1,0,23,0,0,0,1,1,-9,0,3,7.6738172,7.561079,0,0,0,-908.66986,-9,2,2,2021,12,3,38,0,1,3,1,7.5288177,7.5288177,.05,.05,0,0,0,0,0,0,0,0,0,.64077801,0,49.44,54.26,-9,-9,6.666666666666667,1,1,0,0,2,11,3,1,381,-138879.69,-21459.73,0,0,2293.5356,0,122.63034 +14159,17292,30828,30829,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8276119,7.6012621,39,4,-85.380806,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.8460784,7.7888346,57.33,53.46,57.16,56.15,10,1,1,0,0,8,12,4,1,1411.5,84313.602,45498.789,0,0,340.06268,755.27075,2813.7417 +14159,17292,30829,30828,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1490326,7.9559765,0,9,-4,97.349304,0,3,3,2021,6,0,30,30,1,0,0,10.503656,10.503656,0,0,0,0,0,0,0,0,1,1,0,.93258297,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,1411.5,84313.602,45498.789,0,0,340.06268,755.27075,2813.7417 +14160,17293,30830,30831,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,8.999361,8.9626713,0,2,-6,0,0,2,2,2021,7,0,35,40,1,0,0,23.054253,23.054253,.05,.05,0,0,0,0,0,0,1,1,0,6.9365211,0,54.69,57.47,57.06,57.76,10,4,2,0,0,9,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14160,17293,30831,30830,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,8.9323692,8.8950939,0,2,6,0,0,-9,-9,2021,5,0,35,35,1,0,0,24.065544,24.065544,.05,.05,0,0,0,0,0,0,1,1,0,4.6672955,0,57.06,57.76,54.69,57.47,10,4,2,0,0,9,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14160,17293,30832,-9,30830,30831,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.43103,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14161,17294,30833,-9,30838,30839,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1023.6859,-9,1,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,58.52,-9,-9,5,1,1,0,0,2,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30834,-9,30838,30839,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1138.9456,-9,1,2,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,-9,-9,10,1,1,0,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30835,-9,30838,30839,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.77997,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30836,-9,30838,30839,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1065.5281,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30837,-9,30838,30839,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1100.0295,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30838,30839,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,7.8881483,8.3702126,0,21,-5,103.83235,0,2,2,2021,24,10,23,19,1,10,0,17.827684,17.827684,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.35,31.45,52,55,5,1,1,0,0,9,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30839,30838,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.2487783,8.3929205,0,6,5,-55.198135,0,-9,-9,2021,9,0,40,42,1,1,0,11.936491,11.936491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49.35,31.45,7,1,1,0,0,1,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14162,17295,30840,30841,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.6986589,7.8384113,0,10,-2,101.9151,0,3,2,2021,25,12,35,40,1,12,0,8.1049709,8.1049709,.05,.05,0,0,0,0,0,0,0,0,0,.29809654,0,29.79,46.35,62.39,56.71,5,1,1,0,0,14,5,4,1,714.5,464069.81,186005.19,186833.67,0,421.13254,0,2648.6978 +14162,17295,30841,30840,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4411964,8.2176094,0,10,2,-42.517391,0,-9,-9,2021,2,1,60,60,1,1,0,8.1915369,8.1915369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,29.79,46.35,6.666666666666667,1,1,0,0,14,5,4,1,714.5,464069.81,186005.19,186833.67,0,421.13254,0,2648.6978 +14163,17296,30842,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,4.633884,4.5057611,0,0,-1093.516,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2329516,4.566453,51.5,41.45,-9,-9,10,1,1,0,0,0,2,2,1,304,127167.14,-28743.463,0,0,0,0,1032.9127 +14164,17297,30843,30844,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,36,25,-135.74348,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.1434369,0,24.92,56.43,47.96,49.83,0,1,1,0,0,12,6,2,0,692,425370.63,219930.22,129876.03,0,0,0,1440.0254 +14164,17297,30844,30843,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.9990973,7.171401,0,36,-25,114.87075,0,-9,-9,2021,12,0,16,16,1,0,0,7.4446464,7.4446464,0,0,0,0,0,0,0,0,1,0,1,0,0,47.96,49.83,24.92,56.43,5,4,2,0,0,14,6,2,0,692,425370.63,219930.22,129876.03,0,0,0,1440.0254 +14164,17298,30845,-9,30844,-9,1,0,22,0,0,0,2,2,-9,0,3,7.9978104,7.9608741,0,0,0,-971.50769,0,3,-9,2021,14,0,38,38,1,3,1,8.5449514,8.5449514,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,0,4,2,0,0,4,6,4,0,806,137057.02,26519.084,0,0,3360.7122,0,2025.3877 +14165,17299,30846,30847,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.04,48.86,41.51,52.78,6.666666666666667,1,1,0,0,0,13,1,1,158.5,199580.33,0,210699.44,0,0,0,0 +14165,17299,30847,30846,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,6,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,3.1458397,0,0,0,0,0,0,41.51,52.78,55.04,48.86,1.666666666666667,1,1,0,0,12,13,1,1,158.5,199580.33,0,210699.44,0,0,0,0 +14165,17300,30848,-9,30846,30847,1,1,30,0,0,0,3,3,-9,0,3,7.1135459,6.9304028,0,0,0,-962.25537,0,2,3,2021,12,0,32,32,1,2,0,4.3557081,4.3557081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45,53,-9,-9,5,1,1,0,0,11,13,2,1,633,87039.469,32636.723,23453.299,0,0,0,778.03412 +14166,17301,30849,30851,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,35,5,-19.523924,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.08,52.64,41.76,59.08,6.666666666666667,1,1,0,0,8,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14166,17301,30850,-9,30851,30849,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1122.8263,-9,1,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.02,65.59,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14166,17301,30851,30849,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0027962,8.3283339,0,37,-5,142.46188,0,2,1,2021,12,1,54,51,1,1,0,6.1851635,6.1851635,0,0,0,0,0,0,0,0,1,1,0,0,0,41.76,59.08,53.08,52.64,6.666666666666667,1,1,0,0,8,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14167,17302,30852,30853,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.3038464,8.3145132,0,10,0,-25.968769,0,-9,-9,2021,12,0,30,30,1,0,0,14.256419,14.256419,.05,.05,0,0,0,0,0,0,0,0,0,2.1784811,0,38.51,59.43,43.11,51.97,5,1,1,0,1,11,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14167,17302,30853,30852,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.0776997,7.9001598,0,10,0,107.86918,0,2,2,2021,5,0,38,42,1,0,0,10.313224,10.313224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.11,51.97,38.51,59.43,8.333333333333334,1,1,0,0,11,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14167,17302,30854,-9,30852,30853,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.3591,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14168,17303,30855,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.5107813,5.3750219,0,0,-1030.6218,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.833689,5.2460723,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,842,-2014.2007,88511.984,0,0,0,0,1041.7249 +14169,17304,30856,-9,30857,30860,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.7985,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30857,30860,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,6.2899866,6.6100669,0,16,-2,-28.099669,0,2,2,2021,14,4,25,0,1,4,0,2.1917806,2.1917806,.05,.05,0,0,0,0,0,0,1,1,0,8.8943224,0,37.4,66.64,52,55,8.333333333333334,1,1,0,1,1,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30858,-9,30857,30860,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.33704,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30859,-9,30857,30860,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.58972,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30860,30857,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.2456951,9.3728113,0,6,2,66.728241,0,-9,-9,2021,9,0,55,70,1,1,0,27.216976,27.216976,.05,.05,0,0,0,0,0,0,1,1,0,4.5735192,0,52,55,37.4,66.64,7,1,1,0,0,1,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14170,17305,30861,30862,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,24,1,61.013149,0,2,2,2021,11,0,0,29,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5825086,0,49.3,59.89,48.05,56.38,5,1,1,1,0,9,1,4,1,1489.5,939072.81,500079.94,523902.06,0,0,0,3056.6709 +14170,17305,30862,30861,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.7081661,8.6140604,0,24,-1,9.6767015,0,2,1,2021,14,4,50,50,1,4,0,14.71501,14.71501,.05,.05,0,0,0,0,0,2,1,1,0,2.4044523,0,48.05,56.38,49.3,59.89,3.333333333333333,1,1,0,0,9,1,4,1,1489.5,939072.81,500079.94,523902.06,0,0,0,3056.6709 +14171,17306,30863,30864,-9,-9,1,1,67,0,0,0,2,2,-9,1,3,8.1207848,8.2710629,0,7,1,-64.490776,0,-9,-9,2021,10,1,40,40,1,1,0,10.97508,10.97508,.05,.05,0,1,0,0,0,0,1,1,0,3.8500741,0,55.77,39.23,57.16,56.15,6.666666666666667,1,1,0,0,8,10,4,1,764,-129169.3,46475.539,0,0,0,0,2547.5664 +14171,17306,30864,30863,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.9048123,7.7655759,6.2179484,7,-1,77.177452,0,3,3,2021,6,0,14,11,1,0,0,8.7022371,8.7022371,0,0,0,0,0,0,0,0,1,1,0,2.1242778,6.0716629,57.16,56.15,55.77,39.23,8.333333333333334,1,1,0,0,8,10,4,1,764,-129169.3,46475.539,0,0,0,0,2547.5664 +14172,17307,30865,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.2117343,6.4847779,0,0,-969.4939,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6583014,6.5929608,60.24,30.88,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,324,353791.41,149996.61,188885.97,0,0,0,2110.4829 +14173,17308,30866,30867,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.7452388,7.6790085,0,39,-1,-.21120122,0,3,3,2021,11,0,30,30,1,0,0,9.2501354,9.2501354,0,0,0,0,0,0,0,0,0,0,0,0,0,49.5,54.11,50.03,52.62,8.333333333333334,1,1,0,0,9,2,4,1,1931,1290127.5,756957.88,234124.77,0,6254.0449,0,1732.6572 +14173,17308,30867,30866,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.9125786,8.0626221,39,1,110.32172,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2519016,50.03,52.62,49.5,54.11,8.333333333333334,1,1,0,0,8,2,4,1,1931,1290127.5,756957.88,234124.77,0,6254.0449,0,1732.6572 +14173,17309,30868,-9,30866,30867,1,1,24,0,0,0,1,1,-9,0,4,8.0089397,8.0762548,0,0,0,-1027.4678,0,3,2,2021,6,0,35,39,1,0,1,9.6426067,9.6426067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,534,57956.52,-30241.971,0,0,0,0,1465.9073 +14174,17310,30869,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.0715494,9.0168123,0,0,0,-1171.2698,0,2,-9,2021,9,0,36,37,1,0,0,33.625084,33.625084,.05,.05,.05,0,0,0,0,0,0,0,0,2.6054413,0,35.93,55.1,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,611,108222.69,392313.97,0,0,0,0,2473.5662 +14175,17311,30870,-9,30871,30873,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03113,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30871,30873,-9,-9,1,0,39,0,2,0,3,3,-9,1,2,0,0,0,23,-8,-8.0259533,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.04,39.85,56.43,49.75,10,2,3,0,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30872,-9,30871,30873,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.17023,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30873,30871,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.2754245,7.3095098,0,9,8,94.542679,0,3,3,2021,4,0,24,48,1,0,0,8.0431271,8.0431271,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,56.43,49.75,53.04,39.85,10,2,3,0,0,5,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17312,30874,-9,30871,30873,1,1,19,0,2,0,2,2,1,0,2,5.9814386,6.1658115,0,0,0,-1013.5095,-9,3,2,2021,15,0,32,0,1,4,1,1.4683193,1.4683193,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,330,-9592.7139,0,0,0,0,-434.86136,864.16272 +14176,17313,30875,30876,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,-8,10.342441,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9130731,0,51,46,54,45,7,1,1,0,0,0,11,2,1,623,321882.84,234172.28,145552.63,0,0,0,2882.5425 +14176,17313,30876,30875,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.210803,7.2068467,4,8,41.259457,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,1.8735315,0,14.5,1,1,0,7.7974296,7.1590085,54,45,51,46,8,1,1,0,0,0,11,2,1,623,321882.84,234172.28,145552.63,0,0,0,2882.5425 +14177,17314,30877,30878,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.7262115,8.7002344,0,8,0,-30.645128,0,-9,-9,2021,6,0,40,37,1,0,0,19.613461,19.613461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,57.17,50.61,8.333333333333334,1,1,0,0,10,12,5,1,643,1441727.5,1038858.3,519016.13,92672.008,0,0,3731.96 +14177,17314,30878,30877,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.8722668,7.8955593,0,8,0,118.84191,0,2,3,2021,6,0,35,35,1,0,0,10.338934,10.338934,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.17,50.61,56.94,49.53,8.333333333333334,1,1,0,0,9,12,5,1,643,1441727.5,1038858.3,519016.13,92672.008,0,0,3731.96 +14178,17315,30879,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1031.8621,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.6,50.69,-9,-9,10,1,1,0,0,3,1,1,0,820,-52120.266,0,117051.78,0,0,0,554.80627 +14179,17316,30880,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,9.9807425,9.9537535,0,0,-942.52075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,10.286789,9.8081627,52,48,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,1133,1441343.4,780242.44,477791.78,0,0,0,12630.022 +14180,17317,30881,-9,30883,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-888.5603,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30882,-9,30883,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-930.89722,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30883,-9,-9,-9,1,0,37,0,3,0,1,1,-9,1,2,6.7973971,8.1680031,7.4808726,0,0,-974.6756,0,3,2,2021,27,10,18,0,1,10,0,5.9637752,5.9637752,0,0,0,0,0,0,0,42,1,1,0,7.7025695,0,12.59,58.19,-9,-9,3.333333333333333,1,1,0,0,2,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30884,-9,30883,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-865.82886,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14181,17318,30885,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-995.11865,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,13.674627,0,0,1,1,0,4.134449,0,53,44,-9,-9,8,1,1,0,0,0,9,2,1,627,-14731.171,0,0,0,0,0,577.24023 +14181,17319,30886,-9,30885,-9,1,1,61,0,0,0,1,1,-9,0,2,0,7.5450497,7.5026383,0,0,-1203.0807,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,8.217124,7.7138739,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,211,912266.75,394208.22,285346.25,0,0,0,2355.8005 +14182,17320,30887,30888,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.114625,8.1888657,40,21,96.487022,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.6977887,0,0,1,1,0,3.8401589,8.0688038,56,44,62.39,56.71,8,1,1,0,0,0,7,4,1,1174,3723155,682288.69,1113897.9,0,0,0,3654.5281 +14182,17320,30888,30887,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.059804,8.5557585,40,-21,3.8527968,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4123659,8.107502,62.39,56.71,56,44,8.333333333333334,1,1,0,0,0,7,4,1,1174,3723155,682288.69,1113897.9,0,0,0,3654.5281 +14183,17321,30889,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.5321665,7.6828046,0,0,-1019.7405,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1934724,7.5533609,40.37,37.25,-9,-9,5,1,1,0,0,3,7,3,1,2327,1090632.6,772059.31,213716.08,0,249.39188,2042.8683,912.18384 +14184,17322,30890,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3428335,8.9605341,6.4512,9,0,36.197029,0,2,2,2021,13,1,35,35,1,1,0,15.545828,15.545828,.05,.05,0,0,0,0,0,0,1,1,0,6.3552966,0,30.47,60.56,51.39,59.18,8.333333333333334,1,1,0,0,11,5,5,0,848,-59464.738,57951.129,0,0,0,0,1894.0437 +14184,17323,30891,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,8.3462429,8.1655798,0,9,0,-87.785225,0,-9,-9,2021,12,0,40,40,1,0,0,13.453013,13.453013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,30.47,60.56,8.333333333333334,1,1,0,0,10,5,5,0,92,-32885.344,17001.318,0,0,0,0,1581.3317 +14185,17324,30892,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3403549,6.7091665,0,0,-956.84906,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.391593,39.64,38.88,-9,-9,10,1,1,0,0,0,1,2,1,745,497508.38,224297.14,195928.95,0,0,0,1403.3273 +14186,17325,30893,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.427237,5.6112838,0,0,-977.70905,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.6621609,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,781,324187.72,94258.695,62280.18,0,0,0,1437.032 +14187,17326,30894,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9672151,7.8842211,0,0,-896.66699,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0610709,7.621675,49.8,56.68,-9,-9,6.666666666666667,3,4,0,0,13,6,3,1,1289,633826.06,334571.66,195082.25,0,0,0,1979.7697 +14188,17327,30895,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,6.1523542,6.0698342,0,0,0,-1001.6603,0,3,3,2021,17,6,30,25,1,6,0,1.8657714,1.8657714,0,0,0,0,0,0,0,0,1,1,0,0,0,38.81,54.3,-9,-9,6.666666666666667,1,1,0,1,6,9,2,0,263,-12569.98,88293.211,0,0,0,0,994.01379 +14189,17328,30896,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.092907,5.9072151,0,0,-965.63446,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8725204,52,54.51,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,541,280272.13,142919.13,59420.555,0,0,0,1760.1259 +14190,17329,30897,30898,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.1677628,8.0714159,0,7,2,-112.81124,0,-9,-9,2021,13,2,40,40,1,2,0,10.859065,10.859065,.05,.05,0,0,0,0,0,0,1,1,0,.66312641,0,46.19,42.17,32.71,55.43,3.333333333333333,1,1,0,0,11,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30898,30897,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.2340336,8.2242041,0,7,-2,62.833416,-9,1,1,2021,16,4,28,0,1,4,0,16.287922,16.287922,.05,.05,0,0,0,0,0,0,1,1,0,2.0382335,0,32.71,55.43,46.19,42.17,6.666666666666667,1,1,0,1,11,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30899,-9,30898,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.5776,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30900,-9,30898,30897,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.60406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14191,17330,30901,30902,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.4299707,7.8310852,16,-4,49.608467,0,2,2,2021,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2524657,7.4100938,54.2,57.49,37.02,37.37,8.333333333333334,1,1,0,0,8,10,4,1,386,1213474.4,620048.63,367012.28,0,0,0,2945.155 +14191,17330,30902,30901,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.6848845,7.7336826,16,4,-8.3964996,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7342362,8.0230999,37.02,37.37,54.2,57.49,3.333333333333333,1,1,0,0,6,10,4,1,386,1213474.4,620048.63,367012.28,0,0,0,2945.155 +14192,17331,30903,30904,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.7888374,7.8744106,0,4,-4,-3.6553397,0,-9,-9,2021,13,2,20,18,1,2,0,12.391062,12.391062,.05,.05,0,0,0,0,0,0,1,1,0,.84605193,0,55.76,52.64,57.06,57.76,8.333333333333334,2,3,0,0,7,2,5,1,1269,464861.25,352280.34,97940.656,43322.414,15671.918,0,2628.0454 +14192,17331,30904,30903,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.2397852,8.4303226,0,4,4,175.31393,0,2,2,2021,10,0,37,37,1,0,0,13.980918,13.980918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,2,3,0,0,11,2,5,1,1269,464861.25,352280.34,97940.656,43322.414,15671.918,0,2628.0454 +14193,17332,30905,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.6311455,8.3554621,0,0,0,-1059.2465,0,-9,-9,2021,14,2,40,50,1,2,0,10.533957,10.533957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,50.95,-9,-9,3.333333333333333,1,1,0,0,9,5,4,0,879,43869.707,55238.094,0,0,0,0,2133.8792 +14194,17333,30906,-9,30907,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1016.1431,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0190625,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,1,6,3,1,598,186972.84,109917.98,247947.22,92717.758,0,-536.61035,1263.0657 +14194,17333,30907,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.1332569,8.0392008,0,0,0,-1062.7097,0,3,3,2021,6,0,37,25,1,0,0,11.109803,11.109803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,12,6,3,1,598,186972.84,109917.98,247947.22,92717.758,0,-536.61035,1263.0657 +14195,17334,30908,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1064.2219,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3596106,0,49,48,-9,-9,1.666666666666667,1,1,0,0,6,5,1,1,364,139149.94,0,0,0,0,0,970.38672 +14196,17335,30909,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.8292942,9.177165,8.7039051,0,0,-925.48029,0,-9,-9,2021,12,1,39,38,1,1,0,6.4039683,6.4039683,0,0,0,0,0,0,0,0,0,0,0,8.881279,8.5897951,52.01,48.98,-9,-9,8.333333333333334,1,1,0,0,9,7,5,0,504,-9291.9775,0,0,0,0,-725.34344,5347.1777 +14197,17336,30910,30911,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.5899148,6.4830761,11,0,8.8170309,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4218941,6.7998886,52.34,56.95,61.68,34.04,8.333333333333334,1,1,0,0,8,5,3,1,621,632829.81,471381.75,119610.75,0,236.5007,560.85211,3105.3896 +14197,17336,30911,30910,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6646004,8.13381,50,0,115.04106,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,6.4933119,7.7032118,61.68,34.04,52.34,56.95,8.333333333333334,1,1,0,0,10,5,3,1,621,632829.81,471381.75,119610.75,0,236.5007,560.85211,3105.3896 +14198,17337,30912,-9,30914,30915,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.3792,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30913,-9,30914,30915,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.1333,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30914,30915,-9,-9,1,0,31,1,4,0,2,2,-9,0,4,7.0993981,7.2179279,0,1,-6,129.32231,0,2,2,2021,12,0,24,0,1,0,0,9.2500429,9.2500429,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51,57,3.333333333333333,1,1,0,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30915,30914,-9,-9,1,1,37,1,4,0,3,3,-9,0,4,0,0,0,1,6,34.576641,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,45.91,59.89,7,1,1,0,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30916,-9,30914,30915,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.7152,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14199,17338,30917,30918,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.1095319,5.6362357,48,1,-135.88304,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8292751,53,47,51,46,8,1,1,0,0,0,11,2,1,1760,199578.03,37279.238,172436.84,0,0,0,2669.5261 +14199,17338,30918,30917,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,47,-1,-97.069008,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,.32060689,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,11,2,1,1760,199578.03,37279.238,172436.84,0,0,0,2669.5261 +14200,17339,30919,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.1835432,7.0669446,0,0,-1098.4846,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4124317,6.7816687,54,43,-9,-9,8,1,1,0,0,0,6,2,0,2341,122126.47,25101.889,0,0,0,0,1945.1075 +14201,17340,30920,30921,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.3773899,7.4606881,44,-2,-35.898056,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,13.475002,0,0,1,1,0,0,7.3209906,40.95,24.93,47.2,58.1,3.333333333333333,1,1,0,0,4,1,4,1,3047,3108000.5,937414.38,312531.69,0,0,0,3059.0386 +14201,17340,30921,30920,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8795857,7.6054902,44,2,-.095416568,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6029639,47.2,58.1,40.95,24.93,8.333333333333334,1,1,0,0,7,1,4,1,3047,3108000.5,937414.38,312531.69,0,0,0,3059.0386 +14202,17341,30922,-9,30923,30924,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1134.2032,0,2,3,2021,29,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,1,7,1,1,1072,-148964.56,0,0,0,0,0,495.82068 +14202,17342,30923,30924,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,8,6,2.4142005,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.78,34.44,46.55,58.3,6.666666666666667,1,1,0,0,9,7,3,1,9340,467221.88,121991.69,240454.53,0,0,0,1740.1199 +14202,17342,30924,30923,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0338011,7.8474102,0,8,-6,49.342579,0,-9,-9,2021,10,0,40,40,1,0,0,6.8673959,6.8673959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,54.78,34.44,8.333333333333334,1,1,0,1,9,7,3,1,9340,467221.88,121991.69,240454.53,0,0,0,1740.1199 +14203,17343,30925,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.531251,8.5353975,0,0,-1056.1517,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.2695882,0,24.117453,0,1,1,0,5.3958135,8.4841318,52.76,47.46,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,193,1367744,413125.03,0,0,0,0,2123.3936 +14204,17344,30926,30927,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,10,-5,-105.89091,0,3,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7704477,0,42.5,30.78,57.34,42.72,3.333333333333333,1,1,0,0,2,7,2,1,1196.5,984672.31,224294.17,418448.66,0,0,0,3078.4463 +14204,17344,30927,30926,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,4.8261909,5.0647454,10,5,-10.912557,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.8606095,5.196034,57.34,42.72,42.5,30.78,8.333333333333334,1,1,0,0,5,7,2,1,1196.5,984672.31,224294.17,418448.66,0,0,0,3078.4463 +14205,17345,30928,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,7.2158799,7.8149152,6.1591759,0,0,-1012.0582,0,3,3,2021,6,0,23,22,1,0,0,9.524313,9.524313,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8665867,52.94,53.98,-9,-9,6.666666666666667,1,1,0,0,13,13,3,0,443,196639.7,27870.625,0,0,0,0,797.05927 +14206,17346,30929,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-931.55597,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.42,55.96,-9,-9,3.333333333333333,1,1,0,0,5,13,1,1,2247,243527.97,0,0,0,0,0,0 +14207,17347,30930,30931,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.1241407,7.0776339,38,8,-5.4327364,0,2,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.754703,7.4608941,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,1,2,4,1,886.5,742235.31,590461.06,120154,0,13978.113,0,2598.593 +14207,17347,30931,30930,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2498074,7.792069,0,37,-8,31.55131,0,3,2,2021,6,0,38,35,1,0,0,10.456903,10.456903,0,0,0,0,0,0,0,0,1,1,0,5.6538177,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,886.5,742235.31,590461.06,120154,0,13978.113,0,2598.593 +14208,17348,30932,30933,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2718239,8.8300381,0,8,14,23.59923,0,2,1,2021,3,0,38,60,1,0,0,24.861614,24.861614,0,0,0,0,0,0,0,0,1,0,1,7.7933292,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,12,9,5,1,2098.5,106254.04,155829.58,0,0,0,691.15039,5762.6563 +14208,17348,30933,30932,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,7.9267941,8.4238987,0,8,-14,37.848736,0,-9,-9,2021,9,1,38,41,1,1,0,12.188784,12.188784,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,0,0,9,9,5,1,2098.5,106254.04,155829.58,0,0,0,691.15039,5762.6563 +14208,17349,30934,-9,30932,30933,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-955.396,0,1,2,2021,30,12,0,38,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.31,59.27,-9,-9,3.333333333333333,1,1,1,0,2,9,1,1,730,82808.477,0,0,0,0,0,1113.2932 +14209,17350,30935,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.6571484,8.6832047,0,0,0,-895.88837,0,-9,-9,2021,11,1,45,47,1,1,0,14.741297,14.741297,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,2284,-212740.42,129876.07,169996.73,140493.5,2663.7393,0,2281.9026 +14210,17351,30936,-9,30937,30938,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1161.2706,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30937,30938,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,10,-13,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30938,30937,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,0,0,0,15,13,0,0,3,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,0,12,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30939,-9,30937,30938,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-906.44012,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30940,-9,30937,30938,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1783,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14211,17352,30941,30942,-9,-9,1,1,66,0,1,0,1,1,-9,0,3,0,8.1221123,8.2613707,11,20,20.66387,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.6167583,8.5397301,43.65,58.28,46.61,56.93,6.666666666666667,1,1,0,0,8,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17352,30942,30941,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,0,0,0,11,-20,27.052099,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.1961975,0,46.61,56.93,43.65,58.28,6.666666666666667,2,3,0,0,2,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17352,30943,-9,30942,30941,1,0,16,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1062.812,-9,-9,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,49.99,-9,-9,3.333333333333333,4,2,0,0,0,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17353,30944,-9,30942,30941,1,1,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-877.22693,1,-9,1,2021,6,0,0,34,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.565433,0,56.47,59.4,-9,-9,8.333333333333334,4,2,0,0,1,8,2,1,497,0,0,0,0,0,0,241.54175 +14212,17354,30945,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.7349067,6.1922417,0,0,-972.35529,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1905732,4.9225497,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1983,-36335.668,20910.43,0,0,0,0,-241.49741 +14213,17355,30946,30947,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.008544,6.469213,30,6,-88.083549,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8955736,6.7531857,53.22,48.44,57.16,56.15,8.333333333333334,1,1,0,0,8,10,3,1,605,1204296.9,135952.3,330692.44,0,0,0,1819.4681 +14213,17355,30947,30946,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,6.4278927,6.6216598,5.5656433,35,-6,84.148842,0,3,3,2021,10,0,10,0,1,0,0,7.2892976,7.2892976,0,0,0,0,0,0,0,0,1,1,0,0,5.114356,57.16,56.15,53.22,48.44,8.333333333333334,1,1,0,0,11,10,3,1,605,1204296.9,135952.3,330692.44,0,0,0,1819.4681 +14214,17356,30948,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.9083266,7.7146077,0,0,0,-1007.6964,0,3,3,2021,7,0,55,55,1,0,0,5.9310908,5.9310908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,380,-40936.125,-76957.461,0,0,0,0,1362.6676 +14215,17357,30949,30950,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.4538584,9.3237114,0,8,-8,-32.801769,-9,2,1,2021,10,0,78,0,1,0,0,16.480406,16.480406,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,4,2,0,0,7,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14215,17357,30950,30949,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.1464081,7.393146,0,7,8,-57.65012,-9,3,2,2021,14,1,30,0,1,1,0,5.856708,5.856708,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,5,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14215,17357,30951,-9,30950,30949,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.55933,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14216,17358,30952,30953,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.2097578,6.7594299,0,2,6,-117.95338,0,3,3,2021,10,0,50,60,1,0,0,2.6677043,2.6677043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,52,54.51,6.666666666666667,1,1,0,0,7,13,2,1,465,444332.19,153832.86,118868.38,0,439.45203,0,370.74811 +14216,17358,30953,30952,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,2,-6,135.87872,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52.82,53.97,8.333333333333334,1,1,0,0,0,13,2,1,465,444332.19,153832.86,118868.38,0,439.45203,0,370.74811 +14216,17359,30954,-9,30953,30952,1,0,29,0,0,0,1,1,-9,0,4,8.1989861,8.2418957,0,0,0,-1003.5131,0,2,3,2021,11,0,37,60,1,2,1,9.0915613,9.0915613,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,4,1,3233,-61627.184,0,0,0,0,0,1133.6034 +14216,17360,30955,-9,30953,30952,1,1,27,0,0,0,2,2,-9,0,4,7.615911,7.5455856,0,0,0,-1112.6494,0,2,3,2021,10,0,50,70,1,1,1,4.3315716,4.3315716,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,74,-15818.713,0,0,0,0,0,2.194572 +14216,17361,30956,-9,30953,30952,1,1,25,0,0,0,3,3,-9,0,4,7.0417457,6.4824848,0,0,0,-892.59064,0,2,3,2021,10,0,16,16,1,1,1,5.4848566,5.4848566,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,316,81597.664,0,0,0,0,0,224.16515 +14217,17362,30957,30958,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.6457176,8.2559423,0,12,2,80.038208,0,-9,-9,2021,7,0,42,42,1,0,0,13.215843,13.215843,.05,.05,0,1,0,0,0,0,1,1,0,4.8146081,0,56.86,50.75,52.05,55.95,8.333333333333334,1,1,0,0,13,13,4,1,526,425196.13,185097.19,194800.14,0,0,0,4334.229 +14217,17362,30958,30957,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4279437,7.3520865,44,-2,69.371574,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4702263,7.5789089,52.05,55.95,56.86,50.75,8.333333333333334,1,1,0,0,9,13,4,1,526,425196.13,185097.19,194800.14,0,0,0,4334.229 +14217,17363,30959,-9,30958,30957,1,0,28,0,0,0,1,1,-9,0,3,8.0940943,8.2059755,0,0,0,-1000.1477,0,2,2,2021,6,0,35,35,1,0,0,12.245195,12.245195,.05,.05,0,0,0,0,0,0,1,1,0,2.0163841,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,394,529082.88,17596.615,249795.25,0,0,0,2419.1177 +14218,17364,30960,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1048.663,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.98,28.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,2754,-113295.17,0,0,0,2099.1816,0,1995.6296 +14219,17365,30961,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1091.8499,0,-9,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.13,28.96,-9,-9,1.666666666666667,1,1,0,1,6,6,1,0,151,201730.23,0,98875.438,0,0,0,1196.3762 +14219,17366,30962,-9,30961,-9,1,1,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-994.11914,0,3,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.28,28.02,-9,-9,5,1,1,0,1,4,6,1,0,773,113530.14,32493.531,0,0,0,0,1206.3157 +14220,17367,30963,30964,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.466382,6.8212829,0,8,1,-97.775116,0,2,2,2021,15,5,16,12,1,5,0,6.6660805,6.6660805,0,0,0,0,0,0,0,0,1,1,0,0,0,41.12,43.31,43.25,49.27,8.333333333333334,1,1,0,0,6,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30964,30963,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,9.4400473,9.3807974,0,8,-1,-27.916986,0,-9,-9,2021,17,5,45,46,1,5,0,32.967621,32.967621,.05,.05,0,0,0,0,0,0,1,1,0,6.2227578,0,43.25,49.27,41.12,43.31,6.666666666666667,1,1,0,0,10,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30965,-9,30963,30964,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79724,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30966,-9,30963,30964,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5121,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14221,17368,30967,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1132.0554,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9814785,0,57.16,56.15,-9,-9,10,1,1,0,0,3,5,1,1,1527,158013.94,0,0,0,0,0,799.5097 +14222,17369,30968,-9,30970,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-998.35535,1,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14222,17369,30969,-9,30970,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1010.7397,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14222,17369,30970,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.870903,8.9978628,0,0,0,-1030.7988,0,1,2,2021,10,0,47,48,1,0,0,19.441442,19.441442,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,6.666666666666667,1,1,0,0,14,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14223,17370,30971,-9,30972,30973,1,0,34,2,2,0,1,1,-9,0,4,6.9792595,6.8427067,0,0,0,-998.6684,0,3,3,2021,10,3,40,54,1,3,1,4.1689878,4.1689878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.58,49.75,-9,-9,10,2,3,0,0,9,8,3,1,107,225121.69,-47478.633,0,0,0,0,619.28027 +14223,17371,30972,30973,-9,-9,1,0,60,2,2,0,3,3,-9,0,2,0,0,0,7,-12,98.603912,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,29.25,50.33,32.15,8.333333333333334,2,3,0,0,0,8,2,1,755.5,681513.69,412205.19,286593.69,0,0,0,1041.3289 +14223,17371,30973,30972,-9,-9,1,1,72,2,2,0,3,3,-9,0,3,0,7.4893103,7.2632508,7,12,85.437149,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.4099047,0,0,1,1,0,0,7.1617031,50.33,32.15,48.28,29.25,8.333333333333334,2,3,0,0,0,8,2,1,755.5,681513.69,412205.19,286593.69,0,0,0,1041.3289 +14223,17372,30974,-9,30977,30975,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-991.70483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30975,30977,30972,30973,1,1,35,2,2,0,2,2,-9,0,4,7.8514004,7.6689901,0,5,8,-198.4593,0,3,3,2021,5,0,40,48,1,0,0,8.7627144,8.7627144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.03,51.4,49.49,59.98,3.333333333333333,2,3,0,0,5,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30976,-9,30977,30975,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.7556,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30977,30975,-9,-9,1,0,27,2,2,0,2,2,-9,0,5,0,0,0,5,-8,30.642845,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,35.03,51.4,8.333333333333334,2,3,0,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17373,30978,-9,30972,30973,1,1,33,2,2,0,2,2,-9,0,4,7.796741,7.8142691,0,0,0,-935.23798,0,3,3,2021,6,0,40,11,1,0,1,6.4773173,6.4773173,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,9,8,3,1,1642,118241.67,29150.225,0,0,0,0,1092.8984 +14224,17374,30979,30980,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.9519773,8.0690823,59,-1,-188.04645,0,2,2,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,21.235304,0,0,1,1,0,0,8.6142254,15.04,35.59,32.77,36.55,0,1,1,0,0,0,10,5,1,385,651388,210441.47,307847.13,0,8454.3828,0,4907.9448 +14224,17374,30980,30979,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,8.0910769,8.3141308,59,1,-13.225443,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.3453441,8.3927011,32.77,36.55,15.04,35.59,3.333333333333333,1,1,0,0,0,10,5,1,385,651388,210441.47,307847.13,0,8454.3828,0,4907.9448 +14225,17375,30981,30982,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5495663,8.3283272,8,-1,-91.473999,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8066878,8.478157,48.13,40.19,46.54,47.42,6.666666666666667,1,1,0,0,8,6,4,1,898.5,1885397.5,1282343.4,206033.69,0,0,1258.7526,4802.7891 +14225,17375,30982,30981,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0791717,7.0374212,5,1,60.018105,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9176393,46.54,47.42,48.13,40.19,10,1,1,0,0,8,6,4,1,898.5,1885397.5,1282343.4,206033.69,0,0,1258.7526,4802.7891 +14226,17376,30983,30984,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.6591129,5.9340553,12,3,-109.88537,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.78142148,5.8681059,43.83,43.24,45.89,53.15,8.333333333333334,1,1,0,0,9,4,4,1,658.5,2484643,723773.44,494983.94,0,0,0,2357.7434 +14226,17376,30984,30983,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4124947,8.4990826,6.7372637,12,-3,-15.494711,0,2,1,2021,12,0,37,37,1,0,0,13.949491,13.949491,0,0,0,0,0,0,0,2,0,0,0,.89550328,7.2486429,45.89,53.15,43.83,43.24,8.333333333333334,1,1,0,0,13,4,4,1,658.5,2484643,723773.44,494983.94,0,0,0,2357.7434 +14227,17377,30985,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,1,7.7530961,7.6898456,0,0,0,-1020.723,0,3,3,2021,20,6,16,0,1,6,0,17.999949,17.999949,0,0,0,0,0,0,0,0,1,1,0,0,0,40.99,34.43,-9,-9,1.666666666666667,3,4,0,0,5,12,3,0,5449,-96484.07,0,0,0,3855.7456,0,932.00818 +14228,17378,30986,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,6.8249865,6.5724707,0,0,-941.15271,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7193441,47.63,51.62,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,208,867980.63,157261.45,533372.94,0,0,0,776.51074 +14229,17379,30987,30988,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.189683,5.9146824,11,3,-91.31501,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0188422,5.8359714,39.61,50.97,33.25,49.63,8.333333333333334,1,1,0,0,11,12,2,1,242,927896,492975.38,188706.63,0,0,11019.07,2115.7021 +14229,17379,30988,30987,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.9022861,7.2738962,11,-3,-63.708992,0,2,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0775118,7.3420682,33.25,49.63,39.61,50.97,8.333333333333334,1,1,0,0,0,12,2,1,242,927896,492975.38,188706.63,0,0,11019.07,2115.7021 +14230,17380,30989,30990,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.87,37.67,45.5,33.16,10,1,1,0,0,0,5,1,1,1017,171659.81,0,86623.227,0,0,0,169.15588 +14230,17380,30990,30989,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.5,33.16,59.87,37.67,8.333333333333334,1,1,0,0,0,5,1,1,1017,171659.81,0,86623.227,0,0,0,169.15588 +14231,17381,30991,30992,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,8.7330837,8.7499228,58,5,6.4289875,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4763985,9.0746727,55.36,51.57,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,357,2197283,-32591.178,0,0,0,0,6157.6338 +14231,17381,30992,30991,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.4995427,7.68786,57,-5,45.430748,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0028796,7.3974805,48.28,60.18,55.36,51.57,8.333333333333334,1,1,0,0,0,7,5,1,357,2197283,-32591.178,0,0,0,0,6157.6338 +14232,17382,30993,30994,-9,-9,1,1,54,0,2,0,2,2,-9,0,2,8.2700911,7.7917552,0,8,8,-30.611963,0,-9,-9,2021,19,5,36,40,1,5,0,13.205651,13.205651,.05,.05,0,0,0,0,0,0,1,1,0,7.0917392,0,30.05,55.26,61.68,47.24,3.333333333333333,1,1,0,1,10,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30994,30993,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.4100814,7.3391795,0,8,-8,-56.136143,0,3,3,2021,6,0,28,28,1,0,0,7.0168433,7.0168433,.05,.05,0,0,0,0,0,2,1,1,0,6.6235681,0,61.68,47.24,30.05,55.26,6.666666666666667,1,1,0,0,10,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30995,-9,30994,30993,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30996,-9,30994,30993,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.24133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14233,17383,30997,30998,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.1415882,8.0095196,50,5,57.757374,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9455214,59.55,40.52,51.2,41.78,6.666666666666667,1,1,0,0,12,7,3,0,598,975189.38,181296.23,791195.5,0,0,0,2843.5444 +14233,17383,30998,30997,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.1268277,5.27039,50,-5,-43.16201,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1089463,51.2,41.78,59.55,40.52,5,1,1,0,0,1,7,3,0,598,975189.38,181296.23,791195.5,0,0,0,2843.5444 +14234,17384,30999,31000,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.2787867,6.4501462,1,2,12.465314,-9,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,1,4.6558471,2.1375129,47.699707,120,1,1,0,2.5126245,6.1324005,35.45,24.41,19.01,22.64,0,1,1,0,0,0,9,2,1,400,418703.97,25336.275,174902.52,0,0,0,2146.938 +14234,17384,31000,30999,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,4.4118638,3.9810982,1,-2,-72.429993,-9,-9,-9,2021,33,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.084435,19.01,22.64,35.45,24.41,0,1,1,0,1,0,9,2,1,400,418703.97,25336.275,174902.52,0,0,0,2146.938 +14235,17385,31001,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9195743,7.8046651,0,0,-946.16577,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4103371,7.7598786,47.83,52.32,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,1330,256406.83,159022.39,0,0,0,0,3139.2163 +14236,17386,31002,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7295971,8.7492924,0,0,0,-893.59326,0,-9,-9,2021,6,0,38,35,1,0,0,17.700748,17.700748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,615,-1886.0856,80402,104286.52,121555.84,0,0,2077.1516 +14237,17387,31003,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.472743,8.6606836,0,0,0,-1039.9873,0,2,2,2021,9,0,40,44,1,0,1,13.442019,13.442019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,1,5,1,106,-62063.938,-12244.876,121849.89,117903.2,0,0,2165.5149 +14238,17388,31004,31005,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,46,3,0,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,44.3,29.89,48.89,40.26,6.666666666666667,2,3,0,1,0,6,1,1,319.5,-100812.67,0,0,0,0,0,815.36481 +14238,17388,31005,31004,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,46,-3,0,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.89,40.26,44.3,29.89,5,2,3,0,0,0,6,1,1,319.5,-100812.67,0,0,0,0,0,815.36481 +14239,17389,31006,31007,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.0760584,7.2652097,8,-1,-19.931341,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8699732,6.8302426,57.16,56.15,59.43,58.05,10,1,1,0,0,0,11,4,1,709,1519578.6,748209.06,449289.38,0,0,0,2645.2405 +14239,17389,31007,31006,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.3327045,8.0950594,8,1,-82.238182,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7182531,8.2220583,59.43,58.05,57.16,56.15,10,1,1,0,0,0,11,4,1,709,1519578.6,748209.06,449289.38,0,0,0,2645.2405 +14240,17390,31008,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3994341,8.0177193,0,0,0,-881.18353,-9,2,2,2021,11,1,35,0,1,1,0,13.014041,13.014041,.05,.05,0,0,0,0,0,0,0,0,0,2.4678082,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,461,1132120.5,866423.75,206135.05,0,-1107.4697,991.52203,1053.5848 +14241,17391,31009,31010,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,11,0,-103.69423,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7008486,0,41.36,34.01,56.07,23.03,6.666666666666667,1,1,0,0,0,4,2,1,330.5,776471.63,324317.34,164604.45,0,0,0,1590.114 +14241,17391,31010,31009,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.7474356,7.002233,11,0,42.941391,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,90.868355,0,0,1,1,0,5.649363,6.9487023,56.07,23.03,41.36,34.01,8.333333333333334,1,1,0,0,0,4,2,1,330.5,776471.63,324317.34,164604.45,0,0,0,1590.114 +14242,17392,31011,31013,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.2476392,7.1672559,0,9,-3,7.4773245,0,3,2,2021,15,3,20,0,1,3,0,6.2581635,6.2581635,.05,.05,0,0,0,0,0,2,1,1,0,6.835959,0,26.58,62.16,34.59,47.69,3.333333333333333,1,1,0,0,9,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17392,31012,-9,31011,31013,1,0,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-910.61145,1,2,3,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0805407,0,32.68,49.94,-9,-9,5,1,1,0,0,1,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17392,31013,31011,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,7.8528328,7.8488736,5.3334413,9,3,24.40271,0,3,3,2021,16,4,11,35,1,4,0,20.010021,20.010021,.05,.05,0,0,0,0,0,0,1,1,0,.42303908,5.6021109,34.59,47.69,26.58,62.16,5,1,1,0,0,9,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17393,31014,-9,31011,31013,1,1,20,0,0,0,2,2,-9,0,5,7.87711,7.7359085,0,0,0,-1041.1571,0,2,3,2021,5,0,40,32,1,0,1,8.6239576,8.6239576,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,2,9,3,1,124,140486.23,0,0,0,0,0,-280.51285 +14243,17394,31015,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,8.3121433,8.3330822,0,0,-1024.525,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,6.9861474,8.4151745,65.176949,0,1,1,0,5.0501275,7.9338703,42.45,29.18,-9,-9,3.333333333333333,1,1,0,0,0,6,4,1,212,564093,262776.16,228304.31,0,0,0,2497.1958 +14244,17395,31016,31017,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9783678,8.6340466,0,4,1,84.681068,0,3,2,2021,16,7,37,37,1,7,0,18.172705,18.172705,.05,.05,0,0,0,0,0,0,0,0,0,2.2971725,0,47.38,57.75,40.18,62.68,8.333333333333334,1,1,0,0,9,10,5,1,682.5,312646.91,-14212.431,409919.56,187762,0,0,3712.9709 +14244,17395,31017,31016,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.4345713,8.3617268,0,4,-1,64.194786,0,-9,-9,2021,23,11,39,50,1,11,0,12.517606,12.517606,0,0,0,0,0,0,0,0,0,0,0,2.4457142,0,40.18,62.68,47.38,57.75,8.333333333333334,1,1,0,0,4,10,5,1,682.5,312646.91,-14212.431,409919.56,187762,0,0,3712.9709 +14245,17396,31018,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,6.584868,6.5568867,0,0,0,-1169.6619,0,3,2,2021,6,0,40,40,1,0,0,1.9733387,1.9733387,0,0,0,0,0,0,0,0,0,0,0,1.0695422,0,52.24,58.56,-9,-9,10,1,1,0,0,9,2,2,1,2026,36073.254,0,0,0,0,0,10.376321 +14246,17397,31019,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.6226935,7.4932699,0,0,-1009.3153,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.9732113,0,46.328136,0,1,1,0,0,7.0540304,70.59,24.06,-9,-9,10,1,1,0,0,0,12,3,1,434,-6482.0908,81306.32,67259.695,0,0,0,666.51764 +14247,17398,31020,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-895.40472,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.02,22.13,-9,-9,3.333333333333333,1,1,0,1,8,10,1,0,1738,-8419.4082,-137338.38,0,0,0,-306.51065,1656.9717 +14248,17399,31021,31024,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.9877195,9.0902119,0,10,4,-12.131173,0,2,1,2021,7,0,38,38,1,0,0,24.092848,24.092848,.05,.05,0,0,0,0,0,0,0,0,0,7.8584404,0,52,54.51,43.29,55.57,8.333333333333334,1,1,0,0,11,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31022,-9,31024,31021,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.6746,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31023,-9,31024,31021,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8372,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31024,31021,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.5698452,8.4796629,0,10,-4,-8.1362972,0,2,2,2021,10,2,45,45,1,2,0,13.922066,13.922066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.29,55.57,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14249,17400,31025,31026,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.2529922,5.3089733,11,17,-17.802393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5040841,5.0983858,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,2,5,3,1,433.5,856186.56,600957.88,199228.77,0,0,0,2031.4658 +14249,17400,31026,31025,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7204895,7.8046918,0,11,-17,-90.479439,0,3,2,2021,6,0,35,40,1,0,0,6.2896638,6.2896638,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,12,5,3,1,433.5,856186.56,600957.88,199228.77,0,0,0,2031.4658 +14250,17401,31027,31028,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,42,2,-3.497905,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88073975,0,51.91,42.22,56.77,52.22,6.666666666666667,1,1,0,0,0,10,3,1,2126,1189203.3,611274.75,293320.13,0,0,0,2778.7517 +14250,17401,31028,31027,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.1613245,8.2185869,8,-2,61.667767,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1369777,8.2950687,56.77,52.22,51.91,42.22,8.333333333333334,1,1,0,0,7,10,3,1,2126,1189203.3,611274.75,293320.13,0,0,0,2778.7517 +14251,17402,31029,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.8793597,7.862534,4.7663012,0,0,-1071.1587,0,3,2,2021,7,0,36,36,1,0,0,7.5634766,7.5634766,.05,.05,0,0,0,0,0,0,0,0,0,0,5.4030094,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,553,815771.31,448705,61886.41,0,0,0,1525.8256 +14252,17403,31030,31031,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.6315951,7.3818583,61,0,-10.6514,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9154725,7.3430958,53,45,55,45,8,1,1,0,0,0,9,4,1,200,1682128.5,213591.81,565031.88,0,0,0,3130.2607 +14252,17403,31031,31030,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.2163401,8.4529886,61,0,148.54486,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.399682,8.4129429,55,45,53,45,8,1,1,0,0,0,9,4,1,200,1682128.5,213591.81,565031.88,0,0,0,3130.2607 +14253,17404,31032,31033,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,7.8737659,7.9827089,0,6,-5,26.768389,0,2,1,2021,8,0,42,0,1,0,0,11.170652,11.170652,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.35,59.64,10,4,2,0,0,8,2,5,1,954,60531.734,-19590.055,109608.66,20056.076,0,15691.465,3118.9658 +14253,17404,31033,31032,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7591581,9.0779285,0,6,5,-16.346746,0,-9,-9,2021,13,1,47,0,1,1,0,10.599494,10.599494,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.1,59.11,6.666666666666667,1,1,0,0,4,2,5,1,954,60531.734,-19590.055,109608.66,20056.076,0,15691.465,3118.9658 +14254,17405,31034,31035,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,62.58,34.57,8.333333333333334,1,1,0,0,0,4,2,1,221,200989.75,0,185006.63,0,0,0,993.45642 +14254,17405,31035,31034,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.58,34.57,57.16,56.15,8.333333333333334,1,1,0,0,3,4,2,1,221,200989.75,0,185006.63,0,0,0,993.45642 +14255,17406,31036,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.6886292,8.6922045,0,0,0,-1004.1461,0,-9,-9,2021,12,0,37,42,1,0,0,16.562006,16.562006,0,0,0,0,0,0,0,0,0,0,0,2.8866692,0,46.91,51.8,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,535,260133.17,212131.47,150654.41,0,0,0,2847.0049 +14255,17407,31037,-9,-9,31036,1,1,26,0,0,0,1,1,-9,0,2,6.878983,6.9660807,0,0,0,-962.31122,0,-9,2,2021,10,2,25,24,1,2,1,6.712296,6.712296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.79,54.53,-9,-9,6.666666666666667,1,1,0,0,4,4,3,1,672,51443.852,-27611.074,0,0,0,0,546.13007 +14255,17408,31038,-9,-9,31036,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1046.1869,-9,-9,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.88756931,0,58.49,50.2,-9,-9,10,1,1,0,0,0,4,1,1,32,200156.78,0,0,0,0,0,-995.04993 +14256,17409,31039,31040,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.218369,6.3084874,43,-7,45.192898,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.2924037,56.72,58.13,39.87,30.72,10,1,1,0,0,0,7,2,1,595.5,867720.75,229104.56,425231.13,0,0,0,2438.9185 +14256,17409,31040,31039,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.2299838,6.1244111,43,7,-121.48492,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.26273558,0,0,1,1,0,1.5509189,5.7792807,39.87,30.72,56.72,58.13,10,1,1,0,0,0,7,2,1,595.5,867720.75,229104.56,425231.13,0,0,0,2438.9185 +14257,17410,31041,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.0476084,7.2127423,0,0,-1041.7679,0,2,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0515585,44.79,37.58,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,5135,171674.69,195505.25,65785.883,44038.703,0,2135.9983,1768.3453 +14258,17411,31042,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2629323,7.1675348,0,0,0,-1024.7598,0,2,2,2021,14,3,20,20,1,3,0,7.9098272,7.9098272,.05,.05,0,0,0,0,0,2,1,1,0,6.8040414,0,47.94,48.26,-9,-9,5,1,1,0,0,12,12,3,1,714,-14819.347,-57666.703,0,0,0,0,821.41913 +14259,17412,31043,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,2,0,8.2524385,7.9149818,0,0,-1068.7483,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8877015,8.1219339,47.32,28.39,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,729,940719.5,257768.75,360504.63,0,0,0,1633.2324 +14260,17413,31044,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9405804,6.803823,0,0,-1007.6509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1868658,6.8794203,55.96,49.93,-9,-9,10,1,1,0,0,6,9,2,1,345,433459.5,135750.53,319608.59,0,0,0,706.18713 +14261,17414,31045,31046,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,8.8966799,8.6674786,0,22,2,36.706726,-9,3,2,2021,7,0,50,0,1,0,0,14.449537,14.449537,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,11,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31046,31045,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.849081,8.6792717,0,24,-2,59.937996,-9,-9,-9,2021,9,0,40,0,1,1,0,18.586483,18.586483,.05,.05,0,0,0,0,0,0,1,1,0,2.3838527,0,53,55,57.06,57.76,8,3,4,0,0,1,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31047,-9,31045,31046,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-889.31866,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31048,-9,31045,31046,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.03436,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14262,17415,31049,31050,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.8963566,8.8682308,0,18,1,49.174038,0,2,1,2021,9,0,40,40,1,1,0,22.591377,22.591377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,54.13,48.04,7,1,1,0,0,8,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14262,17415,31050,31049,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,0,7.2567792,7.2864985,18,-1,20.053619,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9028044,0,54.13,48.04,52,55,6.666666666666667,1,1,0,0,0,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14262,17415,31051,-9,31050,31049,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-834.64941,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14263,17416,31052,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.130518,7.9745827,5.9495764,0,0,-999.2113,0,2,2,2021,7,0,31,37,1,0,0,10.052912,10.052912,.05,.05,0,0,0,0,0,0,0,0,0,5.6496859,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,120,284131.97,282758.97,79366.617,64374.027,0,0,1442.2959 +14263,17417,31053,-9,31052,-9,1,1,25,0,0,0,1,1,-9,0,5,7.9806933,7.9094434,0,0,0,-1113.1193,0,2,2,2021,9,0,36,37,1,0,1,13.207899,13.207899,.05,.05,0,0,0,0,0,0,0,0,0,2.5279553,0,57.06,57.76,-9,-9,10,1,1,0,0,4,2,4,1,245,242943.17,31025.881,0,0,0,0,1354.7073 +14263,17418,31054,-9,31052,-9,1,0,20,0,0,1,2,0,0,0,4,0,4.7833076,4.6764927,0,0,-910.70428,-9,2,-9,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3616138,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,3152,-98915.789,0,0,0,0,0,704.84308 +14264,17419,31055,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,0,0,-977.92963,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6169388,0,47,49,-9,-9,7,1,1,0,1,5,13,1,1,860,0,0,0,0,0,0,351.215 +14264,17420,31056,-9,31055,-9,1,0,26,0,0,0,1,1,-9,0,4,7.6172986,7.8331714,0,0,0,-976.50623,0,2,-9,2021,12,0,16,20,1,0,1,17.511805,17.511805,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,1,5,13,3,1,416,123263.99,63187.496,0,0,4113.5322,0,1056.3507 +14265,17421,31057,31058,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.3395524,7.2773438,0,30,0,176.6931,0,2,2,2021,9,0,14,14,1,0,0,12.344625,12.344625,0,0,0,0,0,0,0,0,0,0,0,5.3813457,0,57.06,57.76,54,54,1.666666666666667,1,1,0,0,8,6,5,1,674,81175.813,106900.86,245100.38,157277.34,0,0,4413.7842 +14265,17421,31058,31057,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2703085,9.4030237,0,6,0,-78.948364,0,-9,-9,2021,9,0,60,38,1,1,0,23.246162,23.246162,.05,.05,0,0,0,0,0,0,0,0,0,1.7592003,0,54,54,57.06,57.76,8,1,1,0,0,1,6,5,1,674,81175.813,106900.86,245100.38,157277.34,0,0,4413.7842 +14265,17422,31059,-9,31057,31058,1,0,24,0,0,0,2,2,-9,0,4,8.3423004,8.3145609,0,0,0,-1005.8898,0,2,1,2021,11,0,45,52,1,2,1,8.7197971,8.7197971,.05,.05,0,0,0,0,0,0,0,0,0,.55732167,0,47,57,-9,-9,7,1,1,0,0,1,6,4,1,1883,8679.0859,29770.215,0,0,0,0,1750.6058 +14265,17423,31060,-9,31057,31058,1,1,21,0,0,0,2,2,-9,0,4,8.0086193,7.9770303,0,0,0,-991.54755,0,2,1,2021,10,0,37,38,1,1,1,6.749022,6.749022,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,4,1,351,-110267.84,0,0,0,0,0,752.48956 +14266,17424,31061,31062,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.0578399,6.3980002,44,5,-161.44794,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96548319,6.9599214,38.94,40.16,66.44,47.81,6.666666666666667,1,1,0,0,4,1,2,1,268.5,609511.63,294713.5,127107.8,0,0,0,1462.9824 +14266,17424,31062,31061,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.9001284,5.5676608,44,-5,-101.15273,0,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0490692,5.927403,66.44,47.81,38.94,40.16,10,1,1,0,0,0,1,2,1,268.5,609511.63,294713.5,127107.8,0,0,0,1462.9824 +14267,17425,31063,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.0475101,8.2298231,0,0,0,-1031.3881,0,-9,-9,2021,9,1,40,38,1,1,0,9.0440445,9.0440445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.12,52.11,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,290,566914.06,48833.754,527914.25,0,0,0,738.34424 +14268,17426,31064,31066,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.6267996,8.7248716,0,16,2,46.702351,0,3,3,2021,17,5,60,45,1,5,0,14.310268,14.310268,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.34,49.81,38.67,45.86,3.333333333333333,1,1,0,0,13,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14268,17426,31065,-9,31066,31064,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.52948,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14268,17426,31066,31064,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,0,0,0,16,-2,-3.0415227,0,-9,-9,2021,11,0,0,32,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.67,45.86,27.34,49.81,6.666666666666667,1,1,0,0,15,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14269,17427,31067,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.4999385,6.2871976,0,0,-847.02502,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9432325,6.2561474,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,761,177782.84,112328.32,105862.44,0,0,0,1807.7916 +14270,17428,31068,31069,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,36,1,145.66885,0,3,3,2021,20,8,0,39,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.53,50.82,47.66,52.33,1.666666666666667,1,1,1,0,8,6,2,0,1397,51993.859,0,0,0,0,247.68845,156.18671 +14270,17428,31069,31068,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.4323697,6.8848419,0,7,-1,205.32314,0,-9,-9,2021,13,1,15,10,1,1,0,4.6310101,4.6310101,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,49.53,50.82,10,1,1,0,1,8,6,2,0,1397,51993.859,0,0,0,0,247.68845,156.18671 +14271,17429,31070,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.0466018,7.3704324,0,0,-951.74927,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0570579,50.4,43.21,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,7051,312090.78,180828.91,190312.73,0,0,2656.6143,1619.8226 +14272,17430,31071,31072,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.6773968,8.5931129,0,1,-6,-45.035496,-9,-9,-9,2021,10,0,40,0,1,0,0,18.528214,18.528214,.05,.05,0,0,0,0,0,0,0,0,0,.61678445,0,64.40000000000001,25.94,43.2,39.65,6.666666666666667,1,1,0,0,8,9,5,1,702,1517228,1031076.4,515455.16,139328.39,0,0,3479.7529 +14272,17430,31072,31071,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.4953747,7.967114,0,1,6,115.92398,-9,3,3,2021,10,0,38,0,1,0,0,12.401882,12.401882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.2,39.65,64.40000000000001,25.94,6.666666666666667,1,1,0,0,8,9,5,1,702,1517228,1031076.4,515455.16,139328.39,0,0,3479.7529 +14273,17431,31073,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.1397967,7.0375175,0,0,-827.35211,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4936361,7.3729057,48.97,42.09,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,259,542253.5,63223.984,402369.81,0,0,0,1890.8137 +14273,17432,31074,-9,31073,-9,1,1,54,0,0,0,2,2,-9,0,3,8.1415272,8.3941908,0,0,0,-991.85962,0,3,-9,2021,11,0,35,35,1,0,0,15.817885,15.817885,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.13,48.65,-9,-9,5,1,1,0,0,12,10,4,1,600,122628.43,130322.75,193153.41,0,0,0,1828.785 +14274,17433,31075,31077,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2263546,8.3498697,0,26,1,-170.3895,0,1,2,2021,6,0,51,46,1,0,0,10.182636,10.182636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.45,57.21,8.333333333333334,1,1,0,0,8,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14274,17433,31076,-9,31075,31077,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-991.26239,-9,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14274,17433,31077,31075,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.3750038,9.5447378,0,26,-1,20.459846,0,2,2,2021,9,0,47,60,1,0,0,32.150967,32.150967,.05,.05,0,0,0,0,0,0,0,0,0,5.0611954,0,48.45,57.21,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14275,17434,31078,31079,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.1190281,9.3457098,7.5908508,9,20,-3.692467,0,-9,-9,2021,10,0,50,50,1,1,0,22.765013,22.765013,.05,.05,.05,0,0,0,0,0,1,1,0,8.0819101,7.6661568,52,48,42.61,49.31,7,1,1,0,0,1,4,5,1,896,983361.06,266573.63,432507.44,0,-90.692375,0,13652.824 +14275,17434,31079,31078,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.1522131,9.0235443,0,26,-20,140.30798,0,3,2,2021,16,6,35,35,1,6,0,25.282707,25.282707,0,0,.05,0,0,0,0,0,1,1,0,8.4506969,0,42.61,49.31,52,48,10,1,1,0,0,10,4,5,1,896,983361.06,266573.63,432507.44,0,-90.692375,0,13652.824 +14276,17435,31080,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,9.01824,8.9615669,0,0,0,-878.40967,-9,2,2,2021,8,0,50,0,1,1,0,20.931112,20.931112,.05,.05,0,0,0,0,0,0,0,0,0,4.0999899,0,54,58,-9,-9,10,3,4,0,0,7,8,5,0,1678,121535.48,9049.9023,0,0,0,0,3195.6255 +14277,17436,31081,31082,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.373929,8.803297,54,2,-36.803921,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0472031,8.3324537,59.53,56.44,61.12,51.57,10,1,1,0,0,0,5,4,1,348.5,1223695.1,849703.06,294563.31,0,8037.2598,0,3894.2275 +14277,17436,31082,31081,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.1302328,7.2185159,54,-2,-83.366768,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1750035,7.0687318,61.12,51.57,59.53,56.44,10,1,1,0,0,0,5,4,1,348.5,1223695.1,849703.06,294563.31,0,8037.2598,0,3894.2275 +14278,17437,31083,-9,31086,-9,1,0,37,0,3,0,2,2,-9,0,4,6.6281939,6.7554717,0,0,0,-1174.0852,0,2,2,2021,12,0,25,25,1,0,0,3.5211425,3.5211425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,-9,-9,5,1,1,0,0,3,4,2,0,970,-94790.305,-2172.0242,89612.992,0,0,735.38782,606.32495 +14278,17438,31084,-9,31086,-9,1,1,31,0,3,0,2,2,-9,0,2,8.0087223,7.8303914,0,0,0,-1018.7754,-9,2,-9,2021,36,12,37,0,1,12,0,10.047112,10.047112,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,679,-125425.29,82359.492,0,0,0,0,790.46637 +14278,17439,31085,-9,31086,-9,1,1,33,0,3,0,2,2,-9,1,1,0,0,0,0,0,-995.01459,-9,2,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.81,32.36,-9,-9,0,1,1,0,1,0,4,2,0,247,0,0,0,0,0,0,-111.80624 +14278,17440,31086,-9,-9,-9,1,0,60,0,3,0,2,2,-9,0,1,0,5.1264615,5.2893958,0,0,-1020.296,0,-9,-9,2021,19,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7301354,37,26,-9,-9,5,1,1,0,0,4,4,2,0,1736,112319.83,21632.822,63200.805,0,0,0,1254.4082 +14278,17441,31087,-9,-9,31089,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.67993,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31088,-9,-9,31089,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.07642,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31089,-9,31086,-9,1,1,35,0,3,0,2,2,-9,0,5,0,0,0,0,0,-958.78894,-9,2,-9,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,10,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31090,-9,-9,31089,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1113.797,-9,-9,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17442,31091,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,2,0,0,0,0,0,-1032.0745,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,43.98,-9,-9,5,1,1,1,1,0,4,2,0,1930,167259.14,-73049.875,112203.11,0,-4469.6748,0,481.30673 +14279,17443,31092,-9,31093,31095,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.48309,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31093,31095,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.9592767,7.4339542,0,16,-1,28.264444,0,1,1,2021,18,7,22,22,1,7,0,10.830388,10.830388,.05,.05,0,0,0,0,0,0,1,1,0,5.7620277,0,44.19,58.01,41.49,55.01,8.333333333333334,1,1,0,0,13,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31094,-9,31093,31095,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.07147,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31095,31093,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,7.433218,7.476335,0,14,1,-62.610889,0,1,2,2021,17,5,23,15,1,5,0,8.4479437,8.4479437,.05,.05,0,0,0,0,0,0,1,1,0,7.9454789,0,41.49,55.01,44.19,58.01,6.666666666666667,1,1,0,0,12,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14280,17444,31096,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-836.46545,-9,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,25.73,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,602,175676.28,0,0,0,-606.04114,0,1624.2272 +14281,17445,31097,31098,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.0049558,6.9889712,63,6,17.949936,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,82.403687,0,0,1,1,0,0,7.2221189,63.01,30.77,61.28,48.88,8.333333333333334,1,1,0,0,0,5,2,1,272,278727.31,92100.266,0,0,0,0,1855.7379 +14281,17445,31098,31097,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4247222,6.3965025,11,-6,-4.2754526,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5731711,0,0,1,1,0,0,6.1567674,61.28,48.88,63.01,30.77,8.333333333333334,1,1,0,0,0,5,2,1,272,278727.31,92100.266,0,0,0,0,1855.7379 +14282,17446,31099,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-981.21667,0,2,2,2021,18,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94512731,0,37,28,-9,-9,4,1,1,0,0,0,7,1,0,837,48806.281,0,0,0,0,0,412.41635 +14283,17447,31100,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.7685986,5.7492156,0,0,-977.76031,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3316941,5.4085402,37.11,55.92,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,900,265891.31,-25664.328,98493.969,0,0,0,1083.2208 +14284,17448,31101,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.6681471,9.2610216,0,0,0,-1117.4879,0,1,2,2021,6,0,40,40,1,0,0,30.727324,30.727324,.05,.05,0,0,0,0,0,0,0,0,0,2.8096094,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,15,9,5,1,894,445436.84,-49904.641,361003.44,177953.41,1229.327,7265.9131,3698.2285 +14285,17449,31102,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.0507975,6.8419242,0,0,0,-1085.579,0,3,2,2021,12,0,20,16,1,0,0,4.9266162,4.9266162,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,51.96,-9,-9,8.333333333333334,3,4,0,0,7,8,2,0,495,178338.17,0,0,0,0,0,1128.2899 +14285,17450,31103,-9,31102,-9,1,0,25,0,1,0,1,1,1,0,4,8.0236511,7.8493013,0,0,0,-832.43939,-9,2,1,2021,1,0,40,0,1,0,1,8.6814232,8.6814232,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,3,4,0,0,6,8,4,0,88,134868.5,-5689.8032,0,0,0,0,2214.4426 +14285,17451,31104,-9,31102,-9,1,1,24,0,1,0,2,2,-9,0,5,7.9521437,8.0859623,0,0,0,-1033.4692,0,2,-9,2021,6,0,48,20,1,0,1,6.4283199,6.4283199,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,3,4,0,0,8,8,4,0,399,-42287.93,0,0,0,0,0,1294.3486 +14285,17452,31105,-9,31102,-9,1,1,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.33728,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,588,0,0,0,0,0,0,0 +14285,17453,31106,-9,31102,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-881.14154,-9,2,-9,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,3,4,0,0,0,8,1,0,392,-1938.6918,0,0,0,0,0,0 +14286,17454,31107,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.2769089,7.9847455,0,0,-1019.3079,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.6992872,7.6978192,52.88,56.68,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,855,720578.94,493375.72,176406.66,0,0,0,1536.1523 +14287,17455,31108,-9,31109,31111,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.85291,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.4661053,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31109,31111,-9,-9,1,0,26,2,2,0,2,2,-9,0,3,0,0,0,5,-10,-212.8308,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.68,49.74,48,38.99,5,2,3,0,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31110,-9,31109,31111,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-972.28009,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31111,31109,-9,-9,1,1,36,2,2,0,2,2,-9,1,3,8.5215445,8.7123461,0,5,10,30.892353,0,2,-9,2021,17,5,45,46,1,5,0,11.992949,11.992949,0,0,.05,0,0,0,0,7,1,1,0,0,0,48,38.99,44.68,49.74,5,2,3,0,1,9,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14288,17456,31112,31113,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3909588,7.5189862,7,4,-5.3661165,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5364676,46.39,60.99,54.96,53.17,8.333333333333334,1,1,0,0,0,10,2,1,876,608053.19,325017.81,234172.56,0,0,0,1989.2321 +14288,17456,31113,31112,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,-4,26.005108,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1700253,0,54.96,53.17,46.39,60.99,10,1,1,0,0,0,10,2,1,876,608053.19,325017.81,234172.56,0,0,0,1989.2321 +14289,17457,31114,31115,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,44,2,39.396019,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1386015,0,41.58,40.35,55.51,46.03,3.333333333333333,1,1,0,0,0,9,4,1,783,1666040.5,825799.5,770784.5,0,0,0,5290.5327 +14289,17457,31115,31114,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,9.1463127,8.5486145,44,-2,28.836864,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4021115,8.5843143,55.51,46.03,41.58,40.35,3.333333333333333,1,1,0,0,0,9,4,1,783,1666040.5,825799.5,770784.5,0,0,0,5290.5327 +14290,17458,31116,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,2,7.5138488,7.8575473,5.77034,0,0,-1106.4906,0,-9,-9,2021,12,0,38,35,1,0,0,5.8392205,5.8392205,0,0,0,0,0,0,0,0,1,1,0,5.5837045,0,42.38,44.45,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,1078,-35178.438,-50111.719,0,0,0,0,1599.6608 +14290,17458,31117,-9,31116,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4519,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1078,-35178.438,-50111.719,0,0,0,0,1599.6608 +14290,17459,31118,-9,31119,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.21277,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1028,274003.19,56622.113,0,0,8161.1133,516.00739,562.12537 +14290,17459,31119,-9,31116,-9,1,0,24,0,2,0,2,2,-9,0,3,7.2252417,7.5005193,0,0,0,-1074.2067,0,2,-9,2021,7,0,25,25,1,0,1,7.1897402,7.1897402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,1028,274003.19,56622.113,0,0,8161.1133,516.00739,562.12537 +14291,17460,31120,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,2,0,0,0,0,0,-884.57489,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.19,37.62,-9,-9,3.333333333333333,1,1,0,0,2,1,2,0,223,79447.484,0,0,0,0,0,869.8653 +14291,17461,31121,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.6889925,8.3948994,0,0,0,-984.12616,0,-9,-9,2021,7,0,45,57,1,0,0,10.961824,10.961824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,49.92,-9,-9,6.666666666666667,1,1,0,0,2,1,4,0,242,120109.52,26936.941,0,0,0,0,1764.12 +14292,17462,31122,31123,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,4.6191406,4.7403364,61,1,-99.495506,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8359127,48.59,41.43,60.65,24.95,8.333333333333334,1,1,0,0,0,5,2,1,250.5,-52276.227,0,120848.03,0,0,0,3144.8184 +14292,17462,31123,31122,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,61,-1,32.964542,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.0385542,0,0,1,1,0,0,0,60.65,24.95,48.59,41.43,8.333333333333334,1,1,0,0,0,5,2,1,250.5,-52276.227,0,120848.03,0,0,0,3144.8184 +14293,17463,31124,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.9504566,8.9365654,0,0,0,-1020.4002,0,2,2,2021,11,1,55,50,1,1,0,13.08727,13.08727,.05,.05,0,0,0,0,0,0,0,0,0,5.0711575,0,52.46,38.12,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,443,334334.25,165330.3,0,0,0,0,1878.6742 +14294,17464,31125,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.2988,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.7338836,0,28.62512,0,1,1,0,4.5523019,0,57.16,27.01,-9,-9,10,1,1,0,0,0,10,1,1,523,154249.89,0,0,0,0,0,1069.2869 +14295,17465,31126,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.6819344,7.7831206,0,0,-930.16364,0,3,1,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1770487,55.87,37.96,-9,-9,6.666666666666667,2,3,0,0,0,11,3,1,584,623514.25,525382.38,224907.39,0,0,0,2641.7488 +14296,17466,31127,31128,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.9829679,8.0282164,0,7,4,-32.89827,0,-9,-9,2021,9,0,39,51,1,0,0,10.974625,10.974625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.38,50.77,46.16,58.62,8.333333333333334,1,1,0,0,9,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14296,17466,31128,31127,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,6.8615537,6.8230782,0,7,-4,-19.797249,0,3,3,2021,12,0,16,0,1,0,0,7.6278224,7.6278224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,63.38,50.77,8.333333333333334,1,1,0,0,9,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14296,17466,31129,-9,31128,31127,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.39502,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14297,17467,31130,31131,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.2457762,7.5198441,44,0,112.37132,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.232852,7.7642488,63.24,42.39,54.2,57.49,10,1,1,0,0,5,1,4,1,776,1648056.3,1203681.9,512132.47,156654.83,1547.4015,0,3748.8911 +14297,17467,31131,31130,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.8171253,7.9272923,8,0,-3.5305324,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1718221,8.3879623,54.2,57.49,63.24,42.39,10,1,1,0,0,0,1,4,1,776,1648056.3,1203681.9,512132.47,156654.83,1547.4015,0,3748.8911 +14298,17468,31132,31133,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.2106609,6.6497169,11,0,102.80637,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,18.204624,0,0,1,1,0,3.4691532,7.0275583,39.32,17.47,58.08,22.2,8.333333333333334,1,1,0,0,0,11,2,1,1119.5,394282.63,339029.06,199295.55,0,2717.3184,0,2069.835 +14298,17468,31133,31132,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,11,0,-43.129208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8328048,0,2,1,1,0,3.6188891,0,58.08,22.2,39.32,17.47,8.333333333333334,1,1,0,0,0,11,2,1,1119.5,394282.63,339029.06,199295.55,0,2717.3184,0,2069.835 +14299,17469,31134,31135,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.1014948,7.6136093,63,-2,22.433386,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2358809,7.3863168,44.18,42.87,47.53,45.46,8.333333333333334,1,1,0,0,0,12,4,1,2324,980567.88,680453.5,245688.55,0,0,0,3930.0286 +14299,17469,31135,31134,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.2036533,8.0173101,63,2,103.52154,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0357487,8.0709763,47.53,45.46,44.18,42.87,8.333333333333334,1,1,0,0,0,12,4,1,2324,980567.88,680453.5,245688.55,0,0,0,3930.0286 +14300,17470,31136,31137,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.3033905,9.6701126,8.8834066,10,2,-86.538155,0,-9,-9,2021,6,0,40,50,1,0,0,25.84346,25.84346,0,0,0,0,0,0,0,0,0,0,0,8.5902185,9.0861444,62.39,56.71,54.79,55.86,10,1,1,0,0,13,8,5,1,503,1182058.3,28360.162,1394806.8,126215.52,34056.828,6852.7568,9756.8906 +14300,17470,31137,31136,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.8231287,8.8202534,0,10,-2,1.924458,0,-9,-9,2021,11,0,40,35,1,0,0,20.934744,20.934744,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,62.39,56.71,8.333333333333334,1,1,0,0,13,8,5,1,503,1182058.3,28360.162,1394806.8,126215.52,34056.828,6852.7568,9756.8906 +14300,17471,31138,31139,31137,31136,1,0,26,0,0,0,1,1,-9,0,4,8.2807169,8.4702797,0,2,-2,30.512417,-9,1,1,2021,14,3,12,0,1,3,0,46.738468,46.738468,.05,.05,0,0,0,0,.27262506,2,0,0,0,0,0,45.81,58.99,43.12,54.59,8.333333333333334,1,1,0,0,9,8,5,1,758.5,368450,66900.461,435686.44,154573.06,0,0,3252.46 +14300,17471,31139,31138,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5662861,8.9740667,0,2,2,24.89798,-9,-9,-9,2021,13,2,40,0,1,2,0,11.785203,11.785203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.12,54.59,45.81,58.99,5,1,1,0,0,3,8,5,1,758.5,368450,66900.461,435686.44,154573.06,0,0,3252.46 +14301,17472,31140,31141,-9,-9,1,1,52,0,0,0,3,3,-9,0,1,5.6693687,5.6919079,0,11,4,124.34751,0,-9,-9,2021,25,7,8,0,1,7,0,4.907186,4.907186,0,0,0,0,0,0,0,0,0,0,0,0,0,14.49,31.55,54.2,57.49,1.666666666666667,1,1,0,0,2,5,4,1,667.5,395378.66,-24092.252,85842.547,0,0,0,1430.0206 +14301,17472,31141,31140,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3424921,8.2621851,0,11,-4,-59.232704,0,-9,-9,2021,11,0,46,46,1,0,0,8.205781,8.205781,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,14.49,31.55,8.333333333333334,2,3,0,0,13,5,4,1,667.5,395378.66,-24092.252,85842.547,0,0,0,1430.0206 +14302,17473,31142,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.5933309,7.9979291,0,0,0,-968.07538,0,2,2,2021,7,0,35,35,1,0,0,8.4053135,8.4053135,0,0,.05,0,0,0,0,0,0,0,0,3.3097131,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,14,9,3,1,686,596583.31,-57321.867,362029.88,0,0,0,1576.3112 +14303,17474,31143,31144,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.3214045,8.5117607,0,12,2,-83.365364,0,-9,-9,2021,15,3,48,47,1,3,0,9.0279922,9.0279922,0,0,0,0,0,0,0,7,0,0,0,0,0,47.15,55.39,36.24,36.08,3.333333333333333,1,1,0,0,14,10,4,1,688,2660633.5,1677795.4,696835.63,0,0,0,2890.7915 +14303,17474,31144,31143,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,7.3970337,7.3327436,0,12,-2,16.780296,0,2,2,2021,25,8,43,0,1,8,0,3.8279431,3.8279431,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.24,36.08,47.15,55.39,0,1,1,0,1,14,10,4,1,688,2660633.5,1677795.4,696835.63,0,0,0,2890.7915 +14304,17475,31145,31146,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.2804022,8.363512,0,7,-6,52.12241,0,-9,-9,2021,14,3,44,40,1,3,0,11.754762,11.754762,.05,.05,0,0,0,0,0,0,0,0,0,3.8186655,0,40.94,58.35,48.87,58.55,8.333333333333334,1,1,0,0,8,2,5,1,1143.5,427363.66,441519.03,169050.86,143984.98,2312.1997,1596.8768,6124.6484 +14304,17475,31146,31145,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.1548815,9.1597414,0,7,6,53.703491,0,2,2,2021,11,2,48,48,1,2,0,28.072935,28.072935,.05,.05,0,0,0,0,0,0,0,0,0,7.9591885,0,48.87,58.55,40.94,58.35,8.333333333333334,2,3,0,0,13,2,5,1,1143.5,427363.66,441519.03,169050.86,143984.98,2312.1997,1596.8768,6124.6484 +14305,17476,31147,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.3576,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.968173,0,54.36,46.43,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,537.5,128838.31,0,100789.01,0,0,0,1077.498 +14305,17476,31148,-9,31147,-9,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-950.37384,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,537.5,128838.31,0,100789.01,0,0,0,1077.498 +14305,17477,31149,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.4389,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1959128,0,55,45,-9,-9,8,4,6,0,0,0,4,1,0,500,-30928.549,0,0,0,17570.678,0,362.63815 +14306,17478,31150,31152,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,7.9462662,8.310297,0,8,3,-13.713018,0,2,2,2021,7,0,38,35,1,0,0,12.13212,12.13212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.69,53.27,6.666666666666667,1,1,0,0,8,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31151,-9,31152,31150,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.5985,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31152,31150,31154,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5521688,8.1898165,0,8,-3,-37.293037,0,2,-9,2021,9,2,66,30,1,2,0,8.2973471,8.2973471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,57.33,53.46,6.666666666666667,1,1,0,0,6,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31153,-9,31152,31150,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.74768,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17479,31154,-9,-9,-9,1,0,65,0,2,0,2,2,-9,0,4,0,8.2392054,7.9045076,0,0,-1071.2334,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2564818,8.3097429,63.66,46.31,-9,-9,1.666666666666667,1,1,0,0,3,11,3,1,413,189357.95,0,168404.59,0,0,0,2971.4233 +14307,17480,31155,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.6398349,8.3155622,7.328248,0,0,-1077.6998,0,1,2,2021,11,0,20,20,1,0,0,14.261325,14.261325,.05,.05,0,0,0,0,0,0,1,1,0,7.1267223,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14307,17480,31156,-9,31155,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.272,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14307,17480,31157,-9,31155,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.5754,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14308,17481,31158,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4779749,8.5994873,0,0,0,-932.8064,0,-9,-9,2021,11,0,47,47,1,2,0,12.306699,12.306699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,4,8,5,0,178,122488.48,-42390.734,0,0,1202.0481,3778.5264,1391.4056 +14309,17482,31159,31160,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.6960893,5.9703436,8,0,63.745075,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4355412,5.5318923,51.79,46.28,42.22,45.38,8.333333333333334,1,1,0,0,7,4,2,1,692,592135.63,353026.19,160834.2,0,0,0,1592.6848 +14309,17482,31160,31159,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3496561,7.314836,8,0,95.551079,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8283244,7.1134367,42.22,45.38,51.79,46.28,8.333333333333334,1,1,0,0,6,4,2,1,692,592135.63,353026.19,160834.2,0,0,0,1592.6848 +14310,17483,31161,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.5244608,9.5356388,0,0,0,-1108.1515,-9,-9,-9,2021,11,0,40,0,1,0,0,33.298973,33.298973,0,0,.05,0,0,0,1.9746774,0,0,0,0,0,0,42.28,54.75,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,1018,106774.91,281115.41,395832.13,241239.06,0,0,4476.8784 +14311,17484,31162,-9,31164,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.2397,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17484,31163,-9,31164,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.78217,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17484,31164,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,3,0,5.778224,5.6811337,0,0,-928.00531,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,6.03655,0,39.19,45.81,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17485,31165,-9,31164,-9,1,1,18,0,2,0,2,2,1,0,1,7.6180172,7.4211841,0,0,0,-1088.3323,-9,2,-9,2021,28,9,41,0,1,9,1,5.9266648,5.9266648,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,44.06,-9,-9,1.666666666666667,1,1,0,1,2,2,3,0,314,50707.168,-106675.78,0,0,0,0,339.93439 +14312,17486,31166,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-984.48096,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.76299,0,43.57,52.96,-9,-9,8.333333333333334,1,1,1,0,11,10,1,0,139,229134.98,-61814.82,199853.59,79694.281,12757.491,0,-200.08966 +14313,17487,31167,31168,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.4070511,8.5016832,0,2,-3,-21.791361,0,-9,-9,2021,7,0,68,44,1,0,0,7.9015036,7.9015036,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,8,9,5,0,605,226244.81,179180.03,178196.38,101778.58,886.48059,0,2763.8726 +14313,17487,31168,31167,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.7951522,7.9562912,0,2,3,-82.859772,0,2,-9,2021,5,0,44,46,1,0,0,7.6347637,7.6347637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,57.06,57.76,10,1,1,0,0,8,9,5,0,605,226244.81,179180.03,178196.38,101778.58,886.48059,0,2763.8726 +14314,17488,31169,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2584729,8.1300163,7.5728631,0,0,-1048.2203,0,2,2,2021,10,0,24,3,1,0,0,5.3794618,5.3794618,.05,.05,0,0,0,0,0,0,0,0,0,4.7248602,7.9323521,44.37,49.63,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,99,95615.438,107692.12,0,0,0,0,2060.6655 +14315,17489,31170,31171,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.8400407,7.711411,0,11,1,-120.37796,0,-9,-9,2021,3,0,24,30,1,0,0,7.4519434,7.4519434,.05,.05,0,0,0,0,.47040215,2,0,0,0,3.9789228,0,56.18,51.02,51.56,51.79,8.333333333333334,1,1,0,0,12,11,4,1,907.5,485791.66,186186.84,23459.012,0,0,0,2691.7593 +14315,17489,31171,31170,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.8555403,8.4685154,0,11,-1,29.514742,0,3,3,2021,10,0,37,37,1,0,0,9.8791714,9.8791714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.56,51.79,56.18,51.02,8.333333333333334,1,1,0,0,12,11,4,1,907.5,485791.66,186186.84,23459.012,0,0,0,2691.7593 +14316,17490,31172,31173,-9,-9,1,0,37,1,1,0,2,2,-9,0,5,9.2216444,9.3962936,0,10,-7,-103.34165,0,-9,-9,2021,7,0,60,30,1,0,0,24.211544,24.211544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.33,55.31,8.333333333333334,1,1,0,0,11,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14316,17490,31173,31172,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,8.6368799,8.6439152,0,10,7,-71.000412,0,2,3,2021,11,0,38,38,1,0,0,18.771072,18.771072,.05,.05,0,0,0,0,0,0,0,0,0,1.8296092,0,50.33,55.31,54.1,59.11,8.333333333333334,1,1,0,0,11,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14316,17490,31174,-9,31172,31173,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-895.65833,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14317,17491,31175,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.281177,7.0661206,0,0,-981.29773,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4067664,7.3099656,53.07,45.73,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,419,122639.3,135467.64,98948.797,0,0,0,499.35135 +14318,17492,31176,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.5325928,6.1905413,0,0,-952.52252,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9211764,7.0413709,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,2426,82667.727,286811.59,0,0,0,0,331.23245 +14319,17493,31177,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,0,0,0,0,0,-995.34308,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1042,336467.69,0,0,0,0,0,0 +14320,17494,31178,-9,31179,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.45612,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14320,17494,31179,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.8117256,8.5031805,0,0,0,-992.27209,0,2,-9,2021,29,12,46,40,1,12,0,13.266326,13.266326,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.06,65.69,-9,-9,1.666666666666667,4,2,0,1,9,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14320,17494,31180,-9,31179,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0782,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14321,17495,31181,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.944468,7.6009483,0,0,0,-1090.2628,0,2,2,2021,8,0,39,42,1,0,0,10.035808,10.035808,.05,.05,0,0,0,0,0,0,1,1,0,2.4607234,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,15,12,4,1,1740,685035.69,399744.47,205200.31,0,0,0,1528.4993 +14322,17496,31182,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0569363,6.5892839,0,0,-1151.1902,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8169022,6.4913435,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,560,124216.13,173733.47,-3634.2632,0,0,0,999.91101 +14323,17497,31183,31186,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,11,-1,-3.6167793,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0576756,0,46.67,55.57,49.29,54.59,8.333333333333334,1,1,0,0,5,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31184,-9,31183,31186,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.22784,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31185,-9,31183,31186,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.89563,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31186,31183,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,7.9388199,7.8396707,0,11,1,75.039032,0,2,2,2021,10,1,38,39,1,1,0,10.271055,10.271055,.05,.05,0,0,0,0,0,0,1,1,0,2.7092841,0,49.29,54.59,46.67,55.57,6.666666666666667,1,1,0,0,9,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14324,17498,31187,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-928.17889,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.41,54.88,-9,-9,10,2,3,0,0,0,4,1,0,503,-42883.461,0,0,0,0,0,-676.48083 +14325,17499,31188,31190,-9,-9,1,1,36,1,1,0,2,2,-9,0,5,8.1779985,8.2733727,0,4,3,72.794891,0,-9,-9,2021,12,0,57,57,1,0,0,8.9244642,8.9244642,0,0,0,0,0,0,0,0,1,1,0,0,0,44.8,45.74,51.73,58.82,8.333333333333334,1,1,0,0,8,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14325,17499,31189,-9,31190,31188,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1163.0054,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14325,17499,31190,31188,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.7195797,8.7594967,0,4,-3,-66.268799,0,2,3,2021,6,0,34,-9,1,0,0,23.795586,23.795586,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,44.8,45.74,10,1,1,0,0,7,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14326,17500,31191,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,3,6.7416191,6.8519998,0,0,0,-923.31384,-9,-9,-9,2021,4,0,34,0,1,0,0,2.9462078,2.9462078,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,4,5,0,0,2,5,2,1,282,19301.996,0,0,0,0,0,796.34283 +14327,17501,31192,31193,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,7.224215,7.5484147,67,2,-32.437065,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.3325014,.013450122,19.958048,0,1,1,0,3.9893522,6.9450488,53.61,38.02,54.18,25.54,5,1,1,0,0,0,11,2,1,1347.5,600957.38,302152.75,228820.67,0,0,0,1478.5637 +14327,17501,31193,31192,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,67,-2,-40.078884,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.8940217,0,23.936724,0,1,1,0,2.7571788,0,54.18,25.54,53.61,38.02,6.666666666666667,1,1,0,0,0,11,2,1,1347.5,600957.38,302152.75,228820.67,0,0,0,1478.5637 +14328,17502,31194,31195,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.9887514,8.9774408,0,31,2,-128.7085,0,3,2,2021,8,0,126,60,1,0,0,6.6246285,6.6246285,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,45.89,29.22,8.333333333333334,1,1,0,0,8,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14328,17502,31195,31194,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,7.3886919,7.3730812,0,30,-2,35.65395,0,3,3,2021,15,3,25,25,1,3,0,8.8501148,8.8501148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.89,29.22,48.53,58.91,8.333333333333334,1,1,0,0,8,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14328,17502,31196,-9,31195,31194,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-712.66534,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14329,17503,31197,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6099529,8.9652719,0,0,0,-1165.2245,0,2,2,2021,7,0,54,35,1,0,0,12.831208,12.831208,.05,.05,0,0,0,0,0,0,0,0,0,7.4226851,0,46.08,57.2,-9,-9,6.666666666666667,2,3,0,0,12,9,5,0,1102,627566.63,66364.195,539807.56,0,0,0,3472.5713 +14330,17504,31198,31199,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.4980307,6.4143748,4,1,126.18411,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3964872,58.5,44.67,46.63,24.26,8.333333333333334,1,1,0,0,0,12,2,1,699,491720.44,178028.83,133124.73,0,0,0,1756.9924 +14330,17504,31199,31198,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,4,-1,-12.315639,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,24.26,58.5,44.67,5,1,1,0,0,0,12,2,1,699,491720.44,178028.83,133124.73,0,0,0,1756.9924 +14331,17505,31200,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.1180267,9.0982761,6.7250586,0,0,-1056.9723,0,-9,-9,2021,8,0,45,50,1,0,0,24.562016,24.562016,.05,.05,0,0,0,0,0,0,0,0,0,6.195756,7.1410866,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,265,369930.38,24556.996,86895.305,0,0,0,3040.707 +14331,17506,31201,-9,-9,31200,1,1,24,0,0,0,2,2,-9,0,5,7.8950768,8.0461407,0,0,0,-934.44592,0,-9,2,2021,5,0,45,40,1,0,1,8.1215563,8.1215563,.05,.05,0,0,0,0,0,0,0,0,0,1.082515,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,950,256326.13,-32034.705,0,0,0,0,1099.4263 +14332,17507,31202,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4071093,6.6961555,0,0,-1143.3646,-9,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4541068,6.0958228,57.03,48.06,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,885,228719.75,182642.73,0,0,0,0,1053.1583 +14333,17508,31203,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.8732219,4.693202,0,0,-983.9024,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.651319,51,46,-9,-9,7,1,1,0,0,4,11,2,1,235,461715.81,0,370251.91,0,0,0,512.60126 +14334,17509,31204,-9,31205,31206,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.0269,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17509,31205,31206,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.1189642,8.6407471,0,26,0,-1.600318,0,2,3,2021,9,0,37,32,1,0,0,11.793307,11.793307,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,54,10,1,1,0,0,9,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17509,31206,31205,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.5606451,8.1906967,0,7,0,-43.24762,0,2,3,2021,9,0,40,40,1,1,0,15.304115,15.304115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,57.06,57.76,8,1,1,0,0,1,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17510,31207,-9,31205,31206,1,0,23,0,1,0,2,2,-9,0,4,7.889039,8.1554918,0,0,0,-882.15497,0,1,2,2021,7,0,37,37,1,0,1,8.601532,8.601532,.05,.05,0,0,0,0,0,0,1,1,0,3.0015969,0,59.53,56.44,-9,-9,10,1,1,0,0,7,2,4,1,997,-221915.92,-67660.188,0,0,0,0,1593.3282 +14334,17511,31208,-9,31205,31206,1,0,22,0,1,0,2,2,-9,0,4,6.9567847,7.1840835,0,0,0,-945.15265,0,2,2,2021,11,0,37,45,1,2,1,3.3768992,3.3768992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,2,1,657,12100.729,0,68100.227,111319.66,13502.806,0,93.073318 +14335,17512,31209,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,1,0,0,0,0,0,-880.09875,-9,-9,-9,2021,24,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,24.73,25.52,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1797,0,0,0,0,0,0,1074.7422 +14336,17513,31210,31211,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,0,0,0,10,-1,0,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.98,47.92,49,48,8.333333333333334,1,1,0,0,9,12,1,0,358,111440.74,173664.47,80672.141,42392.57,0,0,1153.0969 +14336,17513,31211,31210,-9,-9,1,0,64,0,0,0,2,2,-9,1,3,0,0,0,10,1,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,40.98,47.92,7,1,1,0,0,0,12,1,0,358,111440.74,173664.47,80672.141,42392.57,0,0,1153.0969 +14337,17514,31212,31213,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.1304483,8.2480745,3.9943738,12,8,-42.422035,0,3,3,2021,16,4,47,47,1,4,0,8.9776525,8.9776525,0,0,0,0,0,0,0,14.5,0,0,0,0,3.8254995,38.15,31.43,51.89,54.38,3.333333333333333,1,1,0,0,14,7,5,1,727,669816.25,678053.63,333624.09,267718.47,0,12813.592,4716.2549 +14337,17514,31213,31212,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2656593,9.0164738,0,12,-8,-36.593563,-9,2,2,2021,12,1,43,0,1,1,0,25.810455,25.810455,.05,.05,0,0,0,0,0,0,0,0,0,4.1896634,0,51.89,54.38,38.15,31.43,8.333333333333334,1,1,0,0,14,7,5,1,727,669816.25,678053.63,333624.09,267718.47,0,12813.592,4716.2549 +14338,17515,31214,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.8792248,6.9331465,0,0,-1034.8326,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9176173,47.2,34.16,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,542,890420.31,236028.05,355594.03,0,0,0,1254.543 +14339,17516,31215,-9,31216,31218,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-955.31421,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31216,31218,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,8.0351343,8.101532,0,5,-2,62.668552,0,1,2,2021,10,0,24,28,1,0,0,18.864603,18.864603,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50,57,8.333333333333334,1,1,0,0,9,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31217,-9,31216,31218,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.3545,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31218,31216,-9,-9,1,1,35,2,2,0,2,2,-9,0,4,9.3839426,9.1707478,0,5,2,-58.176758,0,-9,2,2021,10,0,35,37,1,1,0,28.909323,28.909323,.05,.05,0,0,0,0,0,0,1,1,0,5.7569785,0,50,57,51.83,57.2,7,1,1,0,0,1,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14340,17517,31219,-9,31220,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.43829,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,8,2,0,978.5,457583.31,-15934.361,367260.84,31192.031,0,0,1607.2292 +14340,17517,31220,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,6.7652149,6.7991834,0,0,0,-814.48822,0,2,2,2021,11,1,16,16,1,1,0,7.5188084,7.5188084,0,0,0,0,0,0,0,7,1,1,0,0,0,38.57,58.06,-9,-9,10,3,4,0,0,10,8,2,0,978.5,457583.31,-15934.361,367260.84,31192.031,0,0,1607.2292 +14340,17518,31221,-9,31220,-9,1,1,19,0,1,0,2,2,-9,0,4,7.3720202,6.9601679,0,0,0,-989.23083,-9,2,-9,2021,8,0,36,0,1,0,1,4.5133638,4.5133638,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,60.25,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1086,0,0,0,0,0,0,1168.5182 +14341,17519,31222,31223,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.190156,8.3419065,6,1,.60511804,0,3,3,2021,3,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,6.57479,7.9982224,59.54,48.41,61.68,49.95,10,1,1,0,0,4,12,3,1,2575,575609.25,580970.63,0,0,0,0,2722.7725 +14341,17519,31223,31222,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,4.633956,4.6859426,6,-1,-137.56364,0,3,3,2021,4,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.9104586,4.2421799,61.68,49.95,59.54,48.41,10,1,1,0,0,7,12,3,1,2575,575609.25,580970.63,0,0,0,0,2722.7725 +14341,17520,31224,-9,31223,31222,1,1,25,0,0,0,1,1,-9,0,4,8.5066528,8.4714165,0,0,0,-990.7522,0,3,1,2021,10,0,40,36,1,1,0,15.501237,15.501237,.05,.05,0,0,0,0,0,0,0,0,0,1.6312611,0,49,58,-9,-9,7,1,1,0,0,1,12,5,1,3624,70053.547,42951.781,0,0,6783.2827,0,1491.9834 +14342,17521,31225,31226,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6535182,7.4369669,12,-5,-3.3531799,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.553364,7.338273,45.18,33.51,57.33,53.46,8.333333333333334,1,1,0,0,11,2,4,1,784,1310397.1,983638.88,200535.16,-4746.5566,0,651.59558,4465.5156 +14342,17521,31226,31225,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2818403,9.0721016,12,5,-23.628517,0,3,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,8.7562056,57.33,53.46,45.18,33.51,10,1,1,0,0,10,2,4,1,784,1310397.1,983638.88,200535.16,-4746.5566,0,651.59558,4465.5156 +14343,17522,31227,-9,31229,-9,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-904.67303,-9,1,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,1.666666666666667,1,1,0,0,0,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14343,17522,31228,-9,31229,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.6515,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14343,17522,31229,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.5996504,8.5803814,6.647903,0,0,-1016.2293,0,3,2,2021,13,2,42,40,1,2,0,21.428198,21.428198,.05,.05,0,0,0,0,0,0,1,1,0,6.9243302,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14344,17523,31230,-9,31232,31231,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.1919,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17523,31231,31232,-9,-9,1,1,38,0,1,0,3,3,-9,0,2,7.2853451,7.4965715,0,21,0,.75062674,0,3,3,2021,12,0,40,40,1,0,0,3.7745171,3.7745171,0,0,0,0,0,0,0,0,1,1,0,0,0,47.42,46.01,49.04,55.86,5,1,1,0,0,7,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17523,31232,31231,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,24,0,6.5937562,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,47.42,46.01,6.666666666666667,1,1,0,0,0,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17524,31233,-9,31232,31231,1,0,18,0,1,0,2,2,0,0,4,0,0,0,0,0,-920.19391,-9,2,3,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.25,59.59,-9,-9,5,1,1,0,0,1,9,1,0,277,-55827.27,0,0,0,0,0,0 +14345,17525,31234,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,9.0463266,8.9037237,0,0,0,-911.28882,0,2,2,2021,7,0,48,53,1,0,0,17.265924,17.265924,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,1293,592392.44,409681.59,116770.37,72226.586,0,3548.896,3291.6465 +14345,17526,31235,-9,31234,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3734999,8.3580112,0,0,0,-959.09326,-9,2,-9,2021,7,0,43,0,1,0,1,10.361528,10.361528,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,311,168623.08,0,0,0,0,0,1603.407 +14346,17527,31236,31238,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.4095936,7.6564965,0,5,0,23.440498,0,-9,-9,2021,21,8,28,15,1,8,0,9.2816496,9.2816496,0,0,0,0,0,0,0,0,1,1,0,0,0,35.22,61.89,44.79,49.51,1.666666666666667,1,1,0,0,3,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14346,17527,31237,-9,31236,31238,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.81982,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14346,17527,31238,31236,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.2556477,8.2358694,0,5,9,54.608852,0,-9,2,2021,17,5,6,45,1,5,0,76.051804,76.051804,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.79,49.51,35.22,61.89,6.666666666666667,1,1,0,0,7,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14347,17528,31239,31240,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.6937532,7.860672,48,-7,-95.567574,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1770544,7.5192337,61.69,36.86,52,47,10,1,1,0,0,3,8,3,1,132.5,1504985.3,203745,877646.38,0,0,0,2570.3508 +14347,17528,31240,31239,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,48,7,-5.1757054,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,61.69,36.86,7,1,1,0,0,0,8,3,1,132.5,1504985.3,203745,877646.38,0,0,0,2570.3508 +14348,17529,31241,-9,31242,31243,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1072.3403,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31242,31243,-9,-9,1,0,37,1,5,0,1,1,-9,0,3,0,0,0,20,3,-91.34111,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.08,33.76,51,56,8.333333333333334,2,3,0,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31243,31242,-9,-9,1,1,34,1,5,0,2,2,-9,0,4,7.7634373,7.6704545,0,6,-3,155.00406,0,-9,-9,2021,10,0,37,30,1,1,0,7.6855755,7.6855755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,50.08,33.76,7,2,3,0,0,1,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31244,-9,31242,31243,1,1,14,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1032.9899,-9,1,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31245,-9,31242,31243,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-986.31049,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31246,-9,31242,31243,1,1,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-817.67316,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31247,-9,31242,31243,1,1,13,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.8175,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14349,17530,31248,-9,-9,-9,1,0,41,0,2,0,3,3,-9,0,2,0,0,0,0,0,-1067.9934,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,39.27,-9,-9,6.666666666666667,2,3,0,1,0,7,1,1,90,-88893.945,0,0,0,0,0,1459.3445 +14350,17531,31249,31250,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.3377104,8.3245592,0,4,-4,96.916153,0,2,2,2021,7,0,55,55,1,0,0,8.9434662,8.9434662,0,0,0,0,0,0,0,0,0,0,0,.6154694,0,54.79,55.86,45.97,54.57,0,1,1,0,0,5,4,5,1,868.5,78237.813,-19810.736,139049.66,111605.12,5843.8428,0,2746.0986 +14350,17531,31250,31249,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.31359,8.0904551,0,4,4,-19.736528,0,-9,-9,2021,10,1,39,38,1,1,0,10.639941,10.639941,.05,.05,0,0,0,0,0,0,0,0,0,3.5062006,0,45.97,54.57,54.79,55.86,6.666666666666667,1,1,0,0,2,4,5,1,868.5,78237.813,-19810.736,139049.66,111605.12,5843.8428,0,2746.0986 +14351,17532,31251,31252,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,4.3933792,3.9684386,0,31,-7,-24.014511,0,2,2,2021,7,0,40,60,1,0,0,.26323855,.26323855,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.73,42.63,57.3,52.09,8.333333333333334,1,1,0,0,10,11,4,1,415,1912782.4,395223.69,475190.41,367762.59,0,0,2031.0952 +14351,17532,31252,31251,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1886702,8.5427427,6.592679,30,7,-10.377625,0,3,2,2021,9,0,37,47,1,0,0,12.330069,12.330069,.05,.05,0,0,0,0,0,0,0,0,0,6.8552866,6.8193111,57.3,52.09,59.73,42.63,10,1,1,0,0,10,11,4,1,415,1912782.4,395223.69,475190.41,367762.59,0,0,2031.0952 +14351,17533,31253,-9,31251,31252,1,1,20,0,0,0,2,2,-9,0,4,8.0124636,8.0394258,0,0,0,-1055.2479,0,1,1,2021,11,0,41,41,1,2,1,5.513329,5.513329,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,2,11,3,1,1953,158180.03,0,0,0,0,0,1167.5365 +14352,17534,31254,31255,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3489885,9.3876553,0,11,6,65.066994,0,-9,-9,2021,11,0,45,48,1,0,0,27.431833,27.431833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,11,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14352,17534,31255,31254,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.3931785,7.211956,0,11,-6,-89.130257,0,2,2,2021,5,0,22,0,1,0,0,8.1678286,8.1678286,0,0,0,0,0,0,0,0,1,1,0,.16142915,0,54.79,55.86,57.06,57.76,8.333333333333334,4,2,0,0,11,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14352,17534,31256,-9,31255,31254,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1149.6733,-9,2,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.34,46.92,-9,-9,6.666666666666667,1,1,0,0,0,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14353,17535,31257,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.6804113,9.751296,0,8,-5,151.46828,0,-9,-9,2021,6,0,45,50,1,0,0,32.293205,32.293205,0,0,.05,0,0,0,0,0,0,0,0,8.3691645,0,54.79,55.86,52,55,8.333333333333334,1,1,0,0,11,8,5,1,582,798373.69,65441.727,941950.63,342380.13,0,0,5694.0547 +14354,17536,31258,31259,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.7626977,6.7352486,47,3,-70.371826,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.822289,0,48.45874,0,1,1,0,0,6.698875,65.88,11.6,53,47,8.333333333333334,1,1,0,0,0,13,2,1,578,333179.75,236918.48,235945.53,0,0,0,1933.2903 +14354,17536,31259,31258,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,47,-3,109.79273,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,65.88,11.6,7,1,1,0,0,0,13,2,1,578,333179.75,236918.48,235945.53,0,0,0,1933.2903 +14355,17537,31260,31261,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3060322,8.5284462,0,8,-12,20.350458,0,-9,-9,2021,9,0,46,49,1,0,0,11.374783,11.374783,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.25,50.81,54.46,13.02,6.666666666666667,4,2,0,0,11,4,4,1,423,935974.63,416366.25,261981.83,27177.719,6733.293,0,2410.2886 +14355,17537,31261,31260,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.0370193,6.2227483,27,12,-120.39706,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2613854,54.46,13.02,51.25,50.81,8.333333333333334,1,1,0,0,8,4,4,1,423,935974.63,416366.25,261981.83,27177.719,6733.293,0,2410.2886 +14356,17538,31262,-9,31263,31264,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.10791,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17538,31263,31264,-9,-9,1,0,43,0,2,0,3,3,-9,0,1,0,0,0,29,-4,-44.685421,0,3,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,29.93,59.7,53.75,6.666666666666667,2,3,0,0,2,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17538,31264,31263,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1268921,8.193984,0,27,4,43.17709,0,-9,-9,2021,6,0,45,41,1,0,0,6.7971272,6.7971272,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,43.72,29.93,10,2,3,0,1,9,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17539,31265,-9,31263,31264,1,0,19,0,2,0,2,2,0,0,5,0,0,0,0,0,-851.40845,-9,3,2,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,3,8,1,1,249,-1325.4222,0,0,0,0,0,0 +14357,17540,31266,-9,31267,31269,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-964.41522,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31267,31269,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,16,8,-58.830746,0,2,-9,2021,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5131068,0,49.25,61.25,54.32,57.85,8.333333333333334,1,1,0,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31268,-9,31267,31269,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.1424,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31269,31267,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.752696,9.6479836,0,16,-8,-26.429731,0,2,2,2021,5,1,80,50,1,1,0,21.44194,21.44194,0,0,0,0,0,0,0,0,0,0,0,0,0,54.32,57.85,49.25,61.25,8.333333333333334,2,3,0,0,12,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14358,17541,31270,31273,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.4426365,9.1450024,0,29,-1,-72.010635,0,2,1,2021,11,2,40,42,1,2,0,44.568798,44.568798,.05,.05,.05,0,0,0,0,0,0,0,0,1.7181538,0,35.3,62.04,54.2,57.49,5,1,1,0,0,9,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31271,-9,31273,31270,1,1,17,0,2,0,2,2,-9,0,3,0,0,0,0,0,-986.271,-9,2,1,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.17,41.43,-9,-9,5,1,1,1,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31272,-9,31273,31270,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4127,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31273,31270,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0195847,8.0796881,0,9,1,-51.624104,0,2,2,2021,7,0,27,29,1,0,0,12.641748,12.641748,.05,.05,0,0,0,0,0,0,0,0,0,3.7343271,0,54.2,57.49,35.3,62.04,6.666666666666667,1,1,0,0,7,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31274,-9,31273,31270,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.50281,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14359,17542,31275,31276,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,5.128891,5.3549104,26,0,-31.001833,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5596042,5.410943,29.07,30.07,46.53,61.33,3.333333333333333,1,1,0,0,0,9,5,1,1174,2902693.5,730152.31,1371222.8,956638.38,0,0,4745.9541 +14359,17542,31276,31275,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.5007315,9.5855227,0,26,0,37.129921,0,2,3,2021,12,4,43,45,1,4,0,30.020115,30.020115,.05,.05,0,0,0,0,0,2,1,1,0,3.1078284,0,46.53,61.33,29.07,30.07,8.333333333333334,1,1,0,0,8,9,5,1,1174,2902693.5,730152.31,1371222.8,956638.38,0,0,4745.9541 +14360,17543,31277,31279,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,5,1,94.065819,0,2,2,2021,7,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.53625441,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,7,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14360,17543,31278,-9,31277,31279,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.8291,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14360,17543,31279,31277,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.7566366,8.8136768,0,5,-1,-55.090607,-9,-9,-9,2021,10,0,35,0,1,1,0,25.758005,25.758005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,7,4,1,0,0,1,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14361,17544,31280,31281,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5848532,8.6331444,0,5,-1,-173.2886,0,-9,-9,2021,6,0,41,37,1,0,0,16.16671,16.16671,0,0,0,0,0,0,0,0,0,0,0,0,0,52.9,50.37,57.9,51.84,8.333333333333334,2,3,0,0,6,7,5,1,519,330865.25,269180.44,0,0,0,0,4709.3789 +14361,17544,31281,31280,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,9.183732,9.0446386,0,5,1,23.646358,0,3,1,2021,10,0,37,39,1,0,0,27.743092,27.743092,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,52.9,50.37,8.333333333333334,2,3,0,0,7,7,5,1,519,330865.25,269180.44,0,0,0,0,4709.3789 +14362,17545,31282,-9,31283,31284,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.68304,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14362,17545,31283,31284,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,2,-7,10.922548,1,2,-9,2021,10,0,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,35.82,47.1,6.666666666666667,1,1,0,0,6,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14362,17545,31284,31283,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.8131876,8.6268158,0,2,7,-42.515888,-9,-9,-9,2021,14,3,47,0,1,3,0,16.308784,16.308784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.82,47.1,47.77,56.48,5,1,1,0,0,6,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14363,17546,31285,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,7.5022197,8.6719551,8.5163336,0,0,-994.34418,0,2,1,2021,19,7,38,38,1,7,0,3.6374018,3.6374018,0,0,0,1,1.0533059,0,22.773222,0,1,1,0,8.8691339,6.3530416,46.42,35.92,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,612,943284.94,-26721.922,883925.25,24463.678,0,0,5421.46 +14364,17547,31286,-9,31287,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.97736,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14364,17547,31287,-9,-9,-9,1,0,34,1,3,0,3,3,-9,0,3,0,0,0,0,0,-900.93652,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,58.41,-9,-9,1.666666666666667,3,4,0,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14364,17547,31288,-9,31287,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2055,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14365,17548,31289,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.4903264,7.6797328,0,0,-1000.3171,0,3,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,48.445423,0,474.33105,0,1,1,0,0,7.5477028,36.76,28.36,-9,-9,3.333333333333333,1,1,0,0,0,8,3,0,564,-98832.719,155045.14,0,0,0,0,2420.8477 +14366,17549,31290,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7299323,7.9159999,0,0,0,-1025.2347,0,-9,-9,2021,8,1,40,40,1,1,0,7.2468119,7.2468119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,925,105373.99,78877.555,0,0,0,0,1564.4906 +14367,17550,31291,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-907.92694,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.92,38.28,-9,-9,7,2,3,0,0,0,8,1,0,1767,-18054.076,0,116785.14,0,0,0,1235.8851 +14368,17551,31292,31293,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.0550056,7.157856,33,3,223.10263,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7156806,6.6741138,57.16,56.15,61.28,48.88,8.333333333333334,1,1,0,0,6,9,3,1,2441,1116120,834514.88,267245.13,0,0,0,991.35364 +14368,17551,31293,31292,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.9807429,7.848928,9,-3,114.75848,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4844508,61.28,48.88,57.16,56.15,8.333333333333334,1,1,0,0,4,9,3,1,2441,1116120,834514.88,267245.13,0,0,0,991.35364 +14368,17552,31294,-9,31292,31293,1,1,26,0,0,0,1,1,-9,0,3,7.7284799,7.8469191,0,0,0,-1086.4622,0,2,2,2021,8,0,38,21,1,0,0,6.9906573,6.9906573,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,229,99384.898,0,0,0,0,0,1118.2595 +14369,17553,31295,31296,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,0,0,0,3,7,0,0,-9,-9,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.07,32.67,30.31,40.35,5,3,4,1,1,1,8,1,0,667,55697.039,0,0,0,0,0,83.184662 +14369,17553,31296,31295,-9,-9,1,0,29,0,1,0,2,2,-9,1,3,0,0,0,3,-7,0,0,3,-9,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,30.31,40.35,60.07,32.67,5,3,4,1,0,1,8,1,0,667,55697.039,0,0,0,0,0,83.184662 +14370,17554,31297,31298,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5126057,8.6354847,0,6,-4,-8.083868,0,2,3,2021,8,0,42,44,1,0,0,18.176678,18.176678,0,0,0,0,0,0,0,2,0,0,0,0,0,53.89,38.58,61.28,48.88,6.666666666666667,1,1,0,0,8,12,5,1,402.5,85071.672,64985.297,154581.22,133914.47,0,0,3772.7314 +14370,17554,31298,31297,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3456192,7.9995465,0,6,4,-33.723305,0,2,2,2021,7,0,38,38,1,0,0,12.817712,12.817712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,53.89,38.58,8.333333333333334,1,1,0,0,7,12,5,1,402.5,85071.672,64985.297,154581.22,133914.47,0,0,3772.7314 +14371,17555,31299,31300,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,6.3064437,6.3365393,0,30,-10,109.76342,0,3,3,2021,10,0,20,4,1,0,0,3.8946109,3.8946109,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,54.1,59.11,8.333333333333334,1,1,0,0,9,5,3,1,777.5,1040635.9,912848.13,178852.28,0,0,481.22098,1952.9885 +14371,17555,31300,31299,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,7.5601006,7.8506474,30,10,57.896824,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6208262,7.4359279,54.1,59.11,57.57,49.69,8.333333333333334,1,1,0,0,7,5,3,1,777.5,1040635.9,912848.13,178852.28,0,0,481.22098,1952.9885 +14372,17556,31301,-9,31304,31303,1,1,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-965.68311,-9,2,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.08,43.2,-9,-9,10,1,1,0,0,2,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31302,-9,31304,31303,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.05359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31303,31304,-9,-9,1,1,48,1,3,0,2,2,-9,0,4,6.2210069,6.0110903,0,18,11,67.741814,0,2,-9,2021,5,0,12,0,1,0,0,4.5691481,4.5691481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,51.83,57.2,10,1,1,0,0,1,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31304,31303,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,8.1990442,8.3371,0,18,-11,49.978073,0,-9,-9,2021,9,0,24,24,1,0,0,19.515793,19.515793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,53.61,59.13,6.666666666666667,1,1,0,0,12,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31305,-9,31304,31303,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.6737,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17557,31306,-9,31304,31303,1,0,19,1,3,0,2,2,-9,0,3,7.2301221,7.3454108,0,0,0,-962.8783,0,2,2,2021,6,1,19,0,1,1,1,12.422071,12.422071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,48.61,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,399,-222539.88,6052.875,0,0,0,0,671.85645 +14373,17558,31307,31309,-9,-9,1,1,25,1,1,0,1,1,-9,0,5,8.4347639,8.3807611,0,5,-1,-126.58024,0,1,1,2021,29,11,51,55,1,11,0,13.113181,13.113181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.08,52.95,46.86,39.6,5,1,1,0,0,11,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14373,17558,31308,-9,31309,31307,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.18365,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14373,17558,31309,31307,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,6.3621645,6.8708143,0,5,1,2.8793232,0,-9,-9,2021,10,0,15,0,1,0,0,4.7770801,4.7770801,.05,.05,0,0,0,0,0,0,1,1,0,.63857573,0,46.86,39.6,44.08,52.95,6.666666666666667,1,1,0,0,3,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14374,17559,31310,-9,31313,31311,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.377,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31311,31313,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.0136251,8.9193983,0,12,-1,-8.89886,0,2,2,2021,11,0,60,50,1,0,0,16.688429,16.688429,.05,.05,0,0,0,0,0,0,0,0,0,2.7671261,0,51.24,58.84,49.25,61.25,8.333333333333334,1,1,0,0,9,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31312,-9,31313,31311,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.1309,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31313,31311,-9,-9,1,0,40,1,2,0,1,1,-9,0,5,0,0,0,12,1,-13.383202,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.05949,0,49.25,61.25,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14375,17560,31314,31315,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.2105513,8.1457624,8,7,-14.595132,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6341543,8.5884142,53.38,41.98,50.51,47.24,8.333333333333334,1,1,0,0,0,1,5,1,794,1459122.5,117833.3,592838.63,0,0,0,5056.8267 +14375,17560,31315,31314,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4255047,8.3656473,44,-7,19.358053,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3168759,8.3603086,50.51,47.24,53.38,41.98,6.666666666666667,1,1,0,0,0,1,5,1,794,1459122.5,117833.3,592838.63,0,0,0,5056.8267 +14376,17561,31316,31318,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.5945425,8.8071442,0,20,0,-90.267685,0,1,2,2021,18,6,35,35,1,6,0,20.930433,20.930433,.05,.05,.05,0,0,0,0,0,1,1,0,4.023849,0,31.83,59.68,46.28,62.6,3.333333333333333,1,1,0,0,8,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14376,17561,31317,-9,31318,31316,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.9681,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14376,17561,31318,31316,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.2615967,8.1206713,0,18,0,-27.840717,0,2,1,2021,15,3,24,24,1,3,0,23.703201,23.703201,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,31.83,59.68,8.333333333333334,1,1,0,0,8,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14377,17562,31319,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2162313,8.4013214,3.0455792,0,0,-1007.6505,0,3,3,2021,11,2,42,41,1,2,0,10.7465,10.7465,.05,.05,0,0,0,0,0,0,1,1,0,7.0364537,3.5280159,42.1,45.61,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,946,579208.25,334560.88,228954.69,76485.328,0,166.62001,2904.3921 +14378,17563,31320,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.17432,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.83,36.93,-9,-9,8.333333333333334,1,1,0,0,11,9,1,1,82,-32080.85,0,0,0,0,0,903.62646 +14379,17564,31321,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1018.8005,0,1,1,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.094852,0,37.58,48.2,-9,-9,5,1,1,0,0,7,1,1,1,405,340520.78,132952.39,185914.59,0,0,0,244.85918 +14380,17565,31322,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,8.2497692,8.537158,0,0,-1057.7885,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1444149,8.1244812,55,45,-9,-9,8,1,1,0,0,0,11,4,1,637,832592.94,250154.58,164192.42,0,0,0,2258.7756 +14381,17566,31323,31324,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.5823355,8.4878454,0,31,1,7.3160157,0,2,2,2021,9,0,41,37,1,0,0,11.547378,11.547378,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,60.74,8.333333333333334,1,1,0,0,10,12,5,1,763,343963.38,187718.91,86808.859,0,0,914.00793,9436.0391 +14381,17566,31324,31323,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.6618586,9.6013899,0,31,-1,-115.65276,0,2,3,2021,7,0,75,75,1,0,0,25.27051,25.27051,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,57.16,56.15,10,1,1,0,0,12,12,5,1,763,343963.38,187718.91,86808.859,0,0,914.00793,9436.0391 +14381,17567,31325,-9,31323,31324,1,0,25,0,0,0,2,2,-9,0,4,8.0829239,8.3500977,0,0,0,-957.88757,0,1,2,2021,7,0,40,20,1,0,1,9.3521423,9.3521423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1067,76121,-43207.031,0,0,0,0,1154.7887 +14381,17568,31326,-9,31323,31324,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-995.55273,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1310,28689.229,0,0,0,0,0,0 +14382,17569,31327,31328,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,10,-12,69.463142,0,2,1,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,7.3181572,0,62.747509,120,1,1,0,3.9684889,0,37.93,22.1,54,45,1.666666666666667,1,1,0,0,0,1,3,1,916.5,721786.69,304929.19,341535.31,0,0,0,2821.0024 +14382,17569,31328,31327,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.0754032,7.9588528,10,12,96.235786,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0101471,54,45,37.93,22.1,8,1,1,0,0,0,1,3,1,916.5,721786.69,304929.19,341535.31,0,0,0,2821.0024 +14383,17570,31329,31330,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,9,-5,-7.8488379,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.1297789,0,47.94,28.58,57.34,47.92,3.333333333333333,2,3,1,1,0,6,2,1,582,617455.38,-37759.859,356104.44,0,0,0,1865.7771 +14383,17570,31330,31329,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,5.2189589,4.7801485,0,9,5,110.15124,0,3,3,2021,12,0,16,25,1,0,0,.99737102,.99737102,.05,.05,0,0,0,0,0,0,1,1,0,8.2192469,0,57.34,47.92,47.94,28.58,8.333333333333334,2,3,0,0,11,6,2,1,582,617455.38,-37759.859,356104.44,0,0,0,1865.7771 +14384,17571,31331,-9,31335,31337,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1018.3599,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.96,46.76,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31332,-9,31335,31337,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-965.51178,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31333,-9,31335,31337,1,1,15,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1078.5247,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31334,-9,31335,31337,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-790.30792,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31335,31337,-9,-9,1,0,38,0,4,0,2,2,-9,0,1,0,0,0,2,-4,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.84,27.72,50,57,5,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31336,-9,31335,31337,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-992.37262,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31337,31335,-9,-9,1,1,42,0,4,0,3,3,-9,0,4,0,0,0,2,4,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,57,34.84,27.72,6.666666666666667,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14385,17572,31338,31339,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,0,0,0,7,4,-36.757866,0,2,2,2021,13,2,0,37,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.04,53.77,45.43,53.5,8.333333333333334,1,1,1,0,3,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14385,17572,31339,31338,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.646409,7.7019596,0,7,-4,-46.963608,0,3,-9,2021,11,0,33,36,1,0,0,7.8639779,7.8639779,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,53.5,45.04,53.77,6.666666666666667,4,2,0,0,6,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14385,17572,31340,-9,31339,31338,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.9886,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14386,17573,31341,31342,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.3200092,8.954196,0,25,-12,-71.116432,0,2,2,2021,12,1,45,44,1,1,0,27.269068,27.269068,0,0,0,0,0,0,0,0,0,0,0,0,0,35.26,59.77,51.83,57.2,6.666666666666667,1,1,0,0,9,12,5,1,1324,972496.38,191976.33,461059.25,74013.555,0,0,7502.8916 +14386,17573,31342,31341,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4397821,9.243639,0,25,12,73.595619,0,3,2,2021,8,0,44,43,1,0,0,40.716476,40.716476,.05,.05,0,0,0,0,0,0,0,0,0,5.7473855,0,51.83,57.2,35.26,59.77,8.333333333333334,1,1,0,0,9,12,5,1,1324,972496.38,191976.33,461059.25,74013.555,0,0,7502.8916 +14387,17574,31343,31344,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.380609,7.5321474,0,21,-1,-10.800071,0,3,2,2021,20,7,26,24,1,7,0,5.449914,5.449914,0,0,0,0,0,0,0,100,1,1,0,0,0,23.2,54.42,58.56,6.27,5,1,1,0,1,12,2,2,0,921.5,-54787.707,0,0,0,0,0,1753.7207 +14387,17574,31344,31343,-9,-9,1,1,40,0,2,0,2,2,-9,1,1,0,0,0,20,1,-72.820808,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,6.27,23.2,54.42,6.666666666666667,1,1,1,1,0,2,2,0,921.5,-54787.707,0,0,0,0,0,1753.7207 +14387,17575,31345,-9,31343,31344,1,0,19,0,2,0,2,2,-9,0,2,6.3907924,6.7045674,0,0,0,-881.77631,0,2,2,2021,16,0,11,0,1,4,1,6.1389256,6.1389256,0,0,0,0,0,0,0,2,1,1,0,3.6286564,0,38,44,-9,-9,5,1,1,0,0,1,2,2,0,477,249186.08,0,0,0,0,0,1719.0466 +14388,17576,31346,31347,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.2686462,8.8846769,41,8,11.951392,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5302057,8.9306173,57.06,57.76,51.94,55.88,1.666666666666667,1,1,0,0,0,2,4,1,1261,2340214.3,607857.63,421326.75,0,0,0,6112.895 +14388,17576,31347,31346,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,41,-8,2.5345061,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.810689,0,51.94,55.88,57.06,57.76,10,1,1,0,0,0,2,4,1,1261,2340214.3,607857.63,421326.75,0,0,0,6112.895 +14389,17577,31348,31350,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6079092,8.2010784,7.2016597,22,-10,-155.03593,0,2,2,2021,8,0,42,23,1,0,0,8.7383928,8.7383928,0,0,0,0,0,0,0,0,1,1,0,7.7353792,0,51.24,58.84,46.1,59.99,6.666666666666667,1,1,0,0,9,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14389,17577,31349,-9,31348,31350,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1053.1771,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43995637,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14389,17577,31350,31348,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,9.2180309,9.0998096,0,22,10,-15.314014,0,2,2,2021,13,1,57,70,1,1,0,13.684064,13.684064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,51.24,58.84,6.666666666666667,1,1,0,0,7,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14390,17578,31351,-9,31352,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.60498,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,969,129369.13,145770.98,0,0,9885.6289,0,3411.6052 +14390,17578,31352,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.8272066,8.9084635,6.2701249,0,0,-971.58203,0,3,-9,2021,19,6,32,32,1,6,0,22.97547,22.97547,.05,.05,0,0,0,0,0,42,1,1,0,7.0635962,0,35.39,55.38,-9,-9,3.333333333333333,3,4,0,0,12,6,5,1,969,129369.13,145770.98,0,0,9885.6289,0,3411.6052 +14391,17579,31353,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.6970701,7.4281893,0,0,-959.09424,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3522248,30.96,36.23,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,2003,788049.13,343113.69,192961.84,0,0,0,763.44104 +14392,17580,31354,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1015.2701,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.74,22.01,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,768,45707.082,-9111.6719,162319.66,0,0,0,456.05499 +14393,17581,31355,31356,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.5978975,8.261508,0,3,9,27.097338,0,-9,-9,2021,6,0,43,45,1,0,0,13.193076,13.193076,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.71,50.89,8.333333333333334,1,1,0,0,11,1,5,1,870,229991.72,135405.06,210688.41,0,16490.262,0,3019.7988 +14393,17581,31356,31355,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0514278,7.9148569,0,3,0,34.531754,-9,-9,-9,2021,7,0,38,0,1,0,0,10.105724,10.105724,0,0,0,0,0,0,0,0,0,0,0,0,0,59.71,50.89,57.16,56.15,6.666666666666667,1,1,0,0,5,1,5,1,870,229991.72,135405.06,210688.41,0,16490.262,0,3019.7988 +14394,17582,31357,31358,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.9796576,6.9275532,54,6,95.207932,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9062552,46.29,24.63,52,45,3.333333333333333,1,1,0,0,7,7,2,1,436,322682.44,0,232923.59,0,6024.2959,0,1165.3456 +14394,17582,31358,31357,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,6,-6,7.30934,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.436753,0,52,45,46.29,24.63,7,1,1,0,0,0,7,2,1,436,322682.44,0,232923.59,0,6024.2959,0,1165.3456 +14395,17583,31359,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1234226,8.6258173,0,0,0,-1060.4263,0,3,2,2021,9,0,45,12,1,0,0,12.931654,12.931654,.05,.05,0,0,0,0,0,0,0,0,0,2.5324464,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,11,2,5,0,746,210483.3,56330.766,138061.66,91163.469,0,841.7981,1412.9407 +14396,17584,31360,31361,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2473621,8.0691881,0,9,-4,-45.894047,0,2,3,2021,14,3,40,40,1,3,0,12.342357,12.342357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.67,54.09,52.99,51.28,6.666666666666667,1,1,0,0,10,12,5,1,549.5,224487.72,44032.035,113233.25,-1956.4033,0,0,3110.5332 +14396,17584,31361,31360,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.24226,8.1206541,0,9,4,-148.31393,0,3,2,2021,8,0,45,40,1,0,0,8.8171291,8.8171291,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.99,51.28,35.67,54.09,8.333333333333334,1,1,0,0,10,12,5,1,549.5,224487.72,44032.035,113233.25,-1956.4033,0,0,3110.5332 +14397,17585,31362,-9,-9,-9,1,1,28,0,0,0,1,1,1,0,5,7.3500023,7.2679029,0,0,0,-991.03723,-9,-9,-9,2021,11,2,25,0,1,2,0,6.787466,6.787466,0,0,0,0,0,0,0,2,0,0,0,0,0,46.94,58.27,-9,-9,8.333333333333334,1,1,0,0,6,12,3,0,1239,92650.539,0,0,0,0,0,1245.8488 +14398,17586,31363,-9,-9,-9,1,0,32,0,0,0,1,1,-9,1,4,0,0,0,0,0,-1039.3741,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,61.07,-9,-9,6.666666666666667,1,1,0,0,4,4,2,0,99,209349.41,24569.41,209759.45,0,4602.8506,0,591.95325 +14399,17587,31364,31365,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.6734362,9.5680647,0,30,-1,23.9505,0,2,3,2021,7,0,75,70,1,0,0,17.585203,17.585203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,6.666666666666667,1,1,0,0,11,12,5,1,279.5,1772097.8,1441621,301164,0,4792.9536,0,6933.9775 +14399,17587,31365,31364,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6669283,8.5235815,0,30,1,11.453019,0,2,2,2021,9,0,37,38,1,0,0,11.855732,11.855732,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,279.5,1772097.8,1441621,301164,0,4792.9536,0,6933.9775 +14399,17588,31366,-9,31365,31364,1,0,24,0,0,0,2,2,-9,0,4,7.1204104,7.0159779,0,0,0,-1116.7882,0,1,2,2021,8,0,20,25,1,0,1,7.6550903,7.6550903,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,862,0,0,0,0,0,0,1387.4856 +14399,17589,31367,-9,31365,31364,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1150.8751,1,1,2,2021,6,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,12,2,1,1124,187191.72,80827.258,0,0,0,0,0 +14400,17590,31368,31371,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.2450471,7.2004285,0,24,-4,-84.871712,0,2,3,2021,11,0,20,20,1,0,0,8.6122293,8.6122293,.05,.05,0,0,0,0,0,0,0,0,0,1.1557244,0,51.24,58.84,58.47,50.22,8.333333333333334,1,1,0,0,12,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31369,-9,31368,31371,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.5288,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31370,-9,31368,31371,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6848,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31371,31368,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.7344036,9.1236153,0,24,4,-136.87427,0,2,3,2021,10,0,45,48,1,0,0,20.021332,20.021332,.05,.05,0,0,0,0,0,0,0,0,0,5.4421449,0,58.47,50.22,51.24,58.84,8.333333333333334,1,1,0,0,13,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17591,31372,-9,31368,31371,1,1,18,0,2,0,2,2,1,0,4,6.0093298,6.3611412,0,0,0,-980.35327,-9,2,2,2021,12,0,9,0,1,0,1,7.7088289,7.7088289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.48,59.49,-9,-9,5,1,1,0,0,2,5,2,1,521,-11761.275,66268.164,0,0,0,0,-90.787704 +14401,17592,31373,31374,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5705242,8.5086117,0,1,0,7.4172921,0,2,3,2021,11,0,44,38,1,0,0,12.474593,12.474593,0,0,0,0,0,0,0,0,0,0,0,0,0,59.04,51.29,54.69,57.47,5,1,1,0,0,10,2,5,1,1125.5,228979.58,159606.39,321569.53,164940.34,0,7004.0713,4041.8296 +14401,17592,31374,31373,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.8900003,8.702713,0,1,0,-76.080208,-9,-9,-9,2021,12,0,55,0,1,0,0,13.931831,13.931831,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,59.04,51.29,6.666666666666667,1,1,0,0,1,2,5,1,1125.5,228979.58,159606.39,321569.53,164940.34,0,7004.0713,4041.8296 +14402,17593,31375,31376,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.977459,6.7782078,0,21,-2,-24.599964,0,2,2,2021,9,0,16,20,1,0,0,7.3181915,7.3181915,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.57,40.11,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,0,1318.5,72312.672,-69230.125,179223.59,0,0,3246.1895,1307.0947 +14402,17593,31376,31375,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.9781561,8.3086195,0,29,2,-96.239021,0,3,3,2021,12,1,55,49,1,1,0,7.2348566,7.2348566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.57,40.11,8.333333333333334,1,1,0,0,8,12,4,0,1318.5,72312.672,-69230.125,179223.59,0,0,3246.1895,1307.0947 +14403,17594,31377,-9,31378,31379,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-978.0274,-9,2,2,2021,27,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.56,25.09,-9,-9,1.666666666666667,1,1,0,1,0,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14403,17594,31378,31379,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.8769608,8.0303612,5.8636098,6,-5,112.11995,0,3,3,2021,11,0,52,45,1,0,0,7.1368566,7.1368566,0,0,0,0,0,0,0,42,1,1,0,6.0362339,0,45.38,42.8,38.56,43.06,10,1,1,0,0,8,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14403,17594,31379,31378,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.8035111,8.18859,0,6,5,66.324379,0,-9,-9,2021,11,0,42,40,1,0,0,7.1060424,7.1060424,.05,.05,0,0,0,0,0,42,1,1,0,0,0,38.56,43.06,45.38,42.8,8.333333333333334,1,1,0,0,8,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14404,17595,31380,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.3948188,7.2971401,0,0,-1086.5022,0,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,7.6764331,43.54,59.6,-9,-9,5,1,1,0,0,0,8,3,1,1852,715893.56,366422.03,355476.69,0,0,0,646.64838 +14405,17596,31381,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3168707,6.4082737,0,0,-1162.1226,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,5.2829781,0,0,1,1,0,.14345397,6.1819725,66.54000000000001,22.28,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,328,462345.25,73363.867,356819.03,0,0,0,1152.8359 +14405,17597,31382,-9,31381,-9,1,1,54,0,0,0,2,2,-9,0,3,6.8422666,6.9989567,0,0,0,-1006.2265,0,3,-9,2021,10,0,61,40,1,1,0,2.0500176,2.0500176,0,0,0,0,0,0,0,0,1,1,0,6.81636,0,50,49,-9,-9,7,1,1,0,0,1,1,2,0,893,49804.535,0,0,0,0,0,978.28198 +14406,17598,31383,-9,31386,31384,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.5451,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31384,31386,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,5.7974925,5.5997362,0,4,2,67.139282,0,2,2,2021,10,0,40,48,1,0,0,.88397908,.88397908,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,46.63,59.72,8.333333333333334,1,1,0,0,7,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31385,-9,31386,31384,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.2181,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31386,31384,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,0,0,0,4,-2,43.777046,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,61.27,46.03,8.333333333333334,1,1,0,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14407,17599,31387,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1057.8177,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,1000,-30587.445,0,88172.852,0,0,0,1346.4156 +14408,17600,31388,-9,31391,31389,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.0787,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31389,31391,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.2158079,8.2127352,0,11,2,-30.664106,0,2,2,2021,9,0,35,40,1,1,0,8.8679733,8.8679733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,57.16,56.15,7,3,4,0,0,9,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31390,-9,31391,31389,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.9183,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31391,31389,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.1290274,8.2509775,0,11,-2,16.288687,0,1,1,2021,8,0,30,33,1,0,0,13.806437,13.806437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,56,6.666666666666667,3,4,0,0,9,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14409,17601,31392,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.4582844,7.4829383,0,0,-951.12091,0,1,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0214281,7.2785969,40.87,44.58,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,1069,678612.06,200488.39,347241.34,0,0,0,881.18427 +14410,17602,31393,31394,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.8137531,7.7267094,37,-1,71.413673,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5263009,7.9067245,57.34,50.6,40.93,43.22,8.333333333333334,1,1,0,0,4,9,3,1,2835,1203162.8,824118.63,222170.95,0,0,0,3012.606 +14410,17602,31394,31393,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.1568012,7.3169465,37,1,-16.016146,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3020725,6.9020724,40.93,43.22,57.34,50.6,8.333333333333334,1,1,0,0,0,9,3,1,2835,1203162.8,824118.63,222170.95,0,0,0,3012.606 +14411,17603,31395,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2650642,8.2530565,0,0,-1034.8363,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7250662,8.1991758,62.49,55.09,-9,-9,10,1,1,0,0,0,9,4,1,672,823329.25,270725.03,351102.94,0,0,0,2973.3455 +14412,17604,31396,31397,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.3200121,8.2280941,0,32,-1,131.2809,0,2,2,2021,17,6,35,35,1,6,0,12.900881,12.900881,.05,.05,0,0,0,0,0,0,1,1,0,1.3206471,0,47.45,40.06,33.13,53.82,1.666666666666667,1,1,0,0,12,6,5,1,598,450773.44,177411.98,225248.59,105170.14,0,0,3867.8855 +14412,17604,31397,31396,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.5532961,8.4535179,0,32,1,-15.429015,0,2,3,2021,13,1,74,37,1,1,0,9.8950243,9.8950243,.05,.05,0,0,0,0,0,2,1,1,0,0,0,33.13,53.82,47.45,40.06,3.333333333333333,1,1,0,0,12,6,5,1,598,450773.44,177411.98,225248.59,105170.14,0,0,3867.8855 +14413,17605,31398,31400,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.5755777,8.4954395,0,9,0,86.371864,0,2,2,2021,13,2,37,37,1,2,0,20.867577,20.867577,0,0,0,0,0,0,0,0,1,1,0,6.8774238,0,49.91,58.02,50,57,8.333333333333334,1,1,0,0,10,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14413,17605,31399,-9,31398,31400,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.87054,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14413,17605,31400,31398,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,7.9483552,7.7868843,0,9,0,-19.512928,0,-9,-9,2021,10,0,37,37,1,1,0,9.5160971,9.5160971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49.91,58.02,7,4,1,0,0,1,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14414,17606,31401,-9,31402,31404,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.3226,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31402,31404,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.166255,8.0642776,0,9,2,-50.388119,0,2,2,2021,21,9,30,30,1,9,0,15.279396,15.279396,0,0,0,0,0,0,0,0,0,0,0,0,0,44.11,44.58,41.34,35.49,3.333333333333333,1,1,0,0,10,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31403,-9,31402,31404,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.70728,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31404,31402,-9,-9,1,1,38,1,2,0,1,1,-9,0,2,9.5716219,9.4637527,0,9,-2,44.775707,0,-9,-9,2021,24,10,37,37,1,10,0,33.44791,33.44791,.05,.05,0,0,0,0,0,0,0,0,0,1.8048105,0,41.34,35.49,44.11,44.58,5,1,1,0,0,13,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14415,17607,31405,31406,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.8597155,8.4767618,0,1,-3,57.910088,-9,-9,-9,2021,12,1,38,0,1,1,0,18.26148,18.26148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.93,51.64,43.69,57.43,8.333333333333334,1,1,0,0,10,1,5,1,507.5,401793.88,135629.56,129322.47,0,0,0,3903.4614 +14415,17607,31406,31405,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.7014351,8.4935398,0,1,3,7.9792609,-9,2,2,2021,11,1,38,0,1,1,0,22.473457,22.473457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.69,57.43,42.93,51.64,6.666666666666667,1,1,0,0,12,1,5,1,507.5,401793.88,135629.56,129322.47,0,0,0,3903.4614 +14416,17608,31407,31408,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,58,-10,0,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.403038,0,43.19,50.71,59.7,53.75,6.666666666666667,1,1,0,0,0,10,1,0,962,37845.25,0,277800.66,0,0,0,1117.8497 +14416,17608,31408,31407,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,58,10,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.7,53.75,43.19,50.71,3.333333333333333,1,1,0,0,0,10,1,0,962,37845.25,0,277800.66,0,0,0,1117.8497 +14417,17609,31409,31410,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,43,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.6990786,0,1,1,0,0,0,55.96,49.93,33,33.51,8.333333333333334,1,1,0,0,0,2,1,0,572.5,-28459.41,0,0,0,2272.2791,0,2173.2463 +14417,17609,31410,31409,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-4,0,0,-9,-9,2021,30,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,33.51,55.96,49.93,0,1,1,0,0,0,2,1,0,572.5,-28459.41,0,0,0,2272.2791,0,2173.2463 +14417,17610,31411,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9711909,7.9175057,0,0,0,-948.62653,0,-9,-9,2021,9,1,40,40,1,1,0,8.7844877,8.7844877,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,10,1,1,0,0,2,2,3,0,725,73174.531,0,0,0,0,0,1426.1892 +14417,17611,31412,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-964.14954,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.83,35.97,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,341,23550.406,0,0,0,0,0,509.17526 +14418,17612,31413,31414,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.2752652,6.7765918,7,-7,8.862956,-9,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0584354,6.5072188,58.9,45.74,53.57,46.8,8.333333333333334,1,1,0,0,0,12,2,1,566,83622.242,20360.35,0,0,59.190674,2844.8027,1775.9685 +14418,17612,31414,31413,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,7,7,55.204781,-9,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.367362,0,53.57,46.8,58.9,45.74,8.333333333333334,1,1,0,0,0,12,2,1,566,83622.242,20360.35,0,0,59.190674,2844.8027,1775.9685 +14419,17613,31415,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8243504,8.7941933,6.0016804,0,0,-1034.2205,0,3,3,2021,5,0,40,35,1,0,0,12.832297,12.832297,0,0,0,0,0,0,0,0,0,0,0,0,6.3740678,55.9,51.29,-9,-9,10,1,1,0,0,9,5,5,1,724,71736.961,-2431.5605,0,0,0,0,2742.3838 +14419,17614,31416,-9,-9,31415,1,1,28,0,0,0,2,2,-9,0,4,8.0065384,8.1850138,0,0,0,-1014.7296,0,2,2,2021,24,11,50,53,1,11,1,7.9259849,7.9259849,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,55.48,-9,-9,5,1,1,0,0,8,5,4,1,2232,-74314.484,0,0,0,2172.9541,0,1586.8795 +14420,17615,31417,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.1411657,7.8491087,0,0,0,-1085.7177,0,3,3,2021,9,0,40,40,1,0,0,8.6569223,8.6569223,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1396,243686.95,231000.05,182687.3,74980.586,6423.8706,0,1865.8092 +14421,17616,31418,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.9499516,6.5703926,0,0,-1049.8252,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.748311,44.59,45.67,-9,-9,8.333333333333334,1,1,0,1,10,2,2,0,280,236677.88,93097.906,0,0,0,0,1445.9969 +14422,17617,31419,31420,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.5009766,8.1757851,0,5,-7,-36.845917,0,3,3,2021,3,0,55,35,1,0,0,12.450404,12.450404,.05,.05,.05,0,0,0,0,0,0,0,0,6.5754504,0,61.43,40.64,49.59,46.23,8.333333333333334,3,4,0,0,12,8,4,1,538,621030.38,255637.33,353869.75,53175.633,0,0,2480.4128 +14422,17617,31420,31419,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.6713848,6.6317701,5,7,33.724476,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5610442,6.4970708,49.59,46.23,61.43,40.64,6.666666666666667,3,4,0,0,9,8,4,1,538,621030.38,255637.33,353869.75,53175.633,0,0,2480.4128 +14423,17618,31421,31422,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4576859,5.620286,10,-1,22.711784,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8423423,5.5503316,52,45,51.26,50.95,8,4,5,0,0,0,2,2,1,439,363434.88,65145.031,143029.14,27091.863,0,0,1589.16 +14423,17618,31422,31421,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,5.468153,5.1856008,10,1,-19.481045,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5682344,5.0992312,51.26,50.95,52,45,8.333333333333334,2,3,0,0,0,2,2,1,439,363434.88,65145.031,143029.14,27091.863,0,0,1589.16 +14424,17619,31423,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,7.3726707,7.1793509,0,0,-1027.394,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.2200346,.67692071,23.696609,0,1,1,0,0,7.4160242,54,44,-9,-9,8,1,1,0,0,0,8,3,1,1409,340121.66,198123.92,213300.69,0,0,0,2599.2659 +14425,17620,31424,31425,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.9706633,4.1642804,34,2,65.410278,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0735106,53.07,30.04,56.86,50.75,8.333333333333334,1,1,0,0,0,2,2,0,563.5,42806.309,0,50491.043,0,0,0,1069.0496 +14425,17620,31425,31424,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,.17295374,.29464957,0,34,-2,43.324352,0,-9,-9,2021,7,0,20,0,1,0,0,.00091522053,.00091522053,0,0,0,0,0,0,0,106,1,1,0,0,0,56.86,50.75,53.07,30.04,8.333333333333334,1,1,0,0,8,2,2,0,563.5,42806.309,0,50491.043,0,0,0,1069.0496 +14425,17621,31426,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.4407506,7.3971295,0,0,0,-1057.7377,0,-9,-9,2021,9,0,32,0,1,0,0,6.0059495,6.0059495,0,0,0,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1900,186115.91,0,0,0,0,0,565.07928 +14426,17622,31427,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1072.2261,-9,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.85,32.5,-9,-9,5,1,1,0,0,0,12,1,0,370,132659.22,0,172994.78,39389.844,0,2216.6287,2914.7004 +14427,17623,31428,31429,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5035305,8.5542898,0,9,2,-46.231316,0,3,2,2021,11,0,35,30,1,0,0,15.701261,15.701261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.18,36.18,6.666666666666667,1,1,0,0,11,2,4,1,606.5,169332,113261.98,138675.22,98233.555,10537.432,0,2524.7903 +14427,17623,31429,31428,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.1859555,7.416904,0,9,-2,-8.8729296,0,2,3,2021,11,1,40,45,1,1,0,4.9844718,4.9844718,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,1,606.5,169332,113261.98,138675.22,98233.555,10537.432,0,2524.7903 +14428,17624,31430,-9,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,0,0,0,0,-1057.3394,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.48,64.66,-9,-9,6.666666666666667,1,1,0,0,5,6,1,1,377,-101652.9,0,0,0,30230.973,0,44.26368 +14429,17625,31431,-9,31432,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.6971,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,713,6375.9199,-49624.797,0,0,0,0,920.9975 +14429,17625,31432,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.5950708,7.3855724,4.5547853,0,0,-874.79584,0,2,2,2021,11,0,15,18,1,0,0,12.154648,12.154648,.05,.05,0,0,0,0,0,0,1,1,0,4.2282972,0,41.76,57.81,-9,-9,5,1,1,0,0,6,7,3,1,713,6375.9199,-49624.797,0,0,0,0,920.9975 +14429,17626,31433,-9,31432,-9,1,1,21,0,1,0,2,2,-9,0,4,8.1240177,7.5137897,0,0,0,-1007.8934,0,3,-9,2021,17,5,58,48,1,5,1,5.4042578,5.4042578,0,0,0,0,0,0,0,0,1,1,0,0,0,30.66,67.07000000000001,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,693,-203629.05,0,0,0,0,0,374.34717 +14430,17627,31434,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9746919,7.7896285,0,0,0,-985.1889,0,3,-9,2021,2,0,34,30,1,0,0,10.893016,10.893016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.96,36.21,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,750,46855.336,49183.848,151532.88,56655.785,0,750.87701,574.41699 +14431,17628,31435,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1102.1689,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.11,21.31,-9,-9,1.666666666666667,2,3,0,0,4,10,1,1,576,91691.703,0,0,0,0,-339.57718,2562.3008 +14432,17629,31436,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3090715,8.5488558,0,0,0,-854.09259,0,-9,-9,2021,11,0,40,50,1,2,0,12.425971,12.425971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,9,5,1,898,-40313.277,-60195.238,0,0,712.90851,0,2010.178 +14433,17630,31437,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.2671585,7.1619959,0,0,0,-935.78888,0,-9,-9,2021,9,0,19,18,1,0,0,9.8889179,9.8889179,.05,.05,0,0,0,0,0,0,1,1,0,3.1605935,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,2221,-98169.336,64793.055,-81321.781,0,0,0,724.69409 +14434,17631,31438,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.191802,6.9124231,0,0,0,-1059.2717,0,2,2,2021,15,4,24,16,1,4,0,9.1995306,9.1995306,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,29.75,-9,-9,6.666666666666667,1,1,0,0,7,9,2,0,589,-27330.063,0,0,0,0,0,1821.17 +14435,17632,31439,31440,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,38,-4,36.200161,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,1.5893711,0,42.57,46.92,56.78,41.83,6.666666666666667,1,1,0,0,0,9,5,1,954,792143.19,297078.44,417158.13,37973.711,0,0,2475.4795 +14435,17632,31440,31439,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.8898067,9.0014057,0,38,4,-90.868469,0,3,3,2021,7,0,36,35,1,0,0,28.812273,28.812273,.05,.05,0,0,0,0,0,0,0,0,0,1.8914862,0,56.78,41.83,42.57,46.92,6.666666666666667,1,1,0,0,8,9,5,1,954,792143.19,297078.44,417158.13,37973.711,0,0,2475.4795 +14435,17633,31441,-9,31439,31440,1,0,22,0,0,0,1,1,-9,0,4,7.9139938,8.0492353,0,0,0,-1063.1506,-9,2,3,2021,17,5,37,0,1,5,1,8.2239075,8.2239075,.05,.05,0,0,0,0,0,0,0,0,0,.25292233,0,42.11,57.44,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,1959,-89760.891,86683.641,0,0,3579.3367,0,1217.6409 +14436,17634,31442,31443,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9158525,7.9931345,0,17,-2,97.964798,0,2,3,2021,10,0,53,22,1,0,0,5.7949834,5.7949834,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,35.43,42.24,0,1,1,0,0,11,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17634,31443,31442,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.9130034,8.1701612,0,10,2,89.655159,0,-9,-9,2021,12,0,35,35,1,0,0,8.4854717,8.4854717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.43,42.24,49,55,6.666666666666667,1,1,0,0,11,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17634,31444,-9,31442,31443,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.5251,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17635,31445,-9,31442,31443,1,1,19,0,1,0,1,1,-9,0,2,7.3578973,7.3007436,0,0,0,-1005.181,0,2,2,2021,17,7,35,35,1,7,1,5.2811866,5.2811866,0,0,0,0,0,0,1.2363507,0,1,1,0,2.1621118,0,37.93,54.93,-9,-9,5,1,1,0,0,3,10,3,1,203,-104388.15,0,0,0,0,0,1690.9128 +14437,17636,31446,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.4317102,8.2736053,0,0,0,-908.06726,0,2,3,2021,17,5,40,34,1,5,0,11.986256,11.986256,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,0,1,10,9,4,1,542,397210.78,128045.4,206222.17,233465.44,0,0,1435.0018 +14438,17637,31447,31448,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,2.8254516,2.4706032,27,0,9.2363453,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9822643,2.7583926,51.53,14.8,22.33,24,3.333333333333333,1,1,0,0,0,5,2,0,418.5,-56481.227,68553.414,0,0,0,0,1540.2368 +14438,17637,31448,31447,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,5.5913024,5.5333381,27,0,54.115822,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2715359,22.33,24,51.53,14.8,3.333333333333333,1,1,0,0,0,5,2,0,418.5,-56481.227,68553.414,0,0,0,0,1540.2368 +14439,17638,31449,-9,31450,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.5613,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1204,135706.66,12711.553,123661.47,172938.83,0,0,1400.3751 +14439,17638,31450,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.4064207,7.3874617,0,0,0,-947.36823,-9,2,2,2021,12,2,26,0,1,2,0,7.5228,7.5228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,1204,135706.66,12711.553,123661.47,172938.83,0,0,1400.3751 +14440,17639,31451,31452,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,10,3,157.17172,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.99,41.32,53,47,6.666666666666667,1,1,0,0,0,5,3,1,470.5,673384.69,563922.75,357244.94,115296.84,18101.715,0,1665.5706 +14440,17639,31452,31451,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.6784401,8.109437,10,-3,103.85525,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,3.0320227,7.9692383,53,47,62.99,41.32,7,1,1,0,0,0,5,3,1,470.5,673384.69,563922.75,357244.94,115296.84,18101.715,0,1665.5706 +14440,17640,31453,-9,31451,31452,1,0,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1067.8597,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,34.14,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,1033,50672.391,0,0,0,0,0,1597.5338 +14441,17641,31454,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.6791682,7.8298173,0,0,0,-1112.8628,0,2,2,2021,16,5,38,37,1,5,0,5.9420037,5.9420037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.86,64.55,-9,-9,6.666666666666667,1,1,0,0,12,5,3,0,1474,268106.38,-44596.211,0,0,0,721.21576,813.24005 +14442,17642,31455,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,5.6141176,5.8794479,0,0,-904.18219,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,5.5954227,42.28,16.13,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,395,394174.72,-20885.352,270357.03,0,0,0,1199.0323 +14442,17643,31456,31457,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0577812,8.2034483,0,7,3,-82.80439,0,3,3,2021,10,0,40,40,1,1,0,8.1568251,8.1568251,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,51,49,27.08,47.33,7,1,1,0,0,8,11,4,1,909,1059445.4,724653.75,167428,0,0,0,2182.8271 +14442,17643,31457,31456,31455,-9,1,0,56,0,0,0,1,1,-9,0,2,7.9419785,7.9950004,0,7,-3,135.55638,0,2,3,2021,19,7,37,37,1,7,0,9.799737,9.799737,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,47.33,51,49,3.333333333333333,1,1,0,0,8,11,4,1,909,1059445.4,724653.75,167428,0,0,0,2182.8271 +14443,17644,31458,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.3634415,7.1417837,0,0,-1019.0909,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.2585609,0,28.314917,0,1,1,0,0,7.7789159,67.38,39.42,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,215,450028.47,149679.55,229357.06,0,0,0,1977.0012 +14444,17645,31459,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.482862,6.5582228,0,0,-1046.8193,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.4713778,5.7930059,56.77,52.22,-9,-9,10,1,1,0,0,0,2,2,1,416,297012.63,75948.188,104541.69,0,690.21387,0,2420.7268 +14445,17646,31460,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.1120591,6.5801392,0,0,-995.4483,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2931788,7.2118168,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1330,335668.06,126943.93,160602.69,0,0,2359.488,964.80969 +14446,17647,31461,31462,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.8400855,7.7094908,51,-5,53.352337,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7433968,8.2159119,51,46,53,46,7,3,4,0,0,0,8,3,1,804.5,2702235.5,639299.19,1425931.9,0,0,0,2829.9995 +14446,17647,31462,31461,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3664627,5.4110646,8,5,-66.90509,0,2,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1954141,53,46,51,46,8,1,1,0,0,2,8,3,1,804.5,2702235.5,639299.19,1425931.9,0,0,0,2829.9995 +14447,17648,31463,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3711414,8.216259,0,0,0,-970.34326,0,2,2,2021,12,0,27,27,1,0,0,16.610195,16.610195,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,47,49,-9,-9,5,1,1,0,0,10,12,4,1,283,179189.47,93166.578,53002.988,0,0,0,1091.7891 +14448,17649,31464,31465,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.8980818,8.1144743,0,7,6,98.300323,0,-9,-9,2021,12,0,40,41,1,0,0,8.1146736,8.1146736,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.94,41.91,56.94,49.53,5,1,1,0,0,12,11,5,1,1991.5,-3232.6379,9764.9463,0,0,1785.9714,0,2818.1016 +14448,17649,31465,31464,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.2771502,8.2922373,0,7,-6,-115.05677,0,2,2,2021,11,2,48,43,1,2,0,12.851149,12.851149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,52.94,41.91,6.666666666666667,1,1,0,0,12,11,5,1,1991.5,-3232.6379,9764.9463,0,0,1785.9714,0,2818.1016 +14449,17650,31466,-9,31467,31468,1,0,13,2,3,1,3,0,-9,0,3,0,0,0,0,0,-1009.8644,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31467,31468,-9,-9,1,0,36,2,3,0,1,1,-9,0,1,8.3220806,8.0211535,0,4,-2,-73.039993,0,1,1,2021,32,12,17,17,1,12,0,24.03838,24.03838,0,0,0,0,0,0,0,0,1,1,0,0,0,19.91,34.22,24.56,56.78,3.333333333333333,1,1,0,1,8,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31468,31467,-9,-9,1,1,38,2,3,0,1,1,-9,0,2,8.3540478,8.4322414,0,4,2,-42.949757,0,-9,-9,2021,18,6,38,38,1,6,0,10.154189,10.154189,.05,.05,0,0,0,0,0,0,1,1,0,3.0953438,0,24.56,56.78,19.91,34.22,1.666666666666667,1,1,0,1,8,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31469,-9,31467,31468,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-947.50983,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31470,-9,31467,31468,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.7166,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14450,17651,31471,31473,-9,-9,1,1,39,0,3,0,2,2,-9,0,1,0,0,0,7,2,-12.665933,0,2,-9,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.24,45.2,30.77,64.34,5,1,1,0,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31472,-9,31473,31471,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59705,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31473,31471,-9,-9,1,0,37,0,3,0,1,1,-9,0,4,8.7300014,8.82829,0,7,-2,59.728603,0,2,3,2021,18,6,37,37,1,6,0,22.801651,22.801651,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.77,64.34,32.24,45.2,6.666666666666667,1,1,0,0,9,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31474,-9,31473,31471,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.95105,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31475,-9,31473,31471,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-866.13159,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14451,17652,31476,-9,-9,-9,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1018.9476,0,3,3,2021,33,12,0,4,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,29,-9,-9,5,1,1,1,1,3,4,1,0,334,-10915.025,0,0,0,0,0,857.39032 +14452,17653,31477,31478,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.6605821,7.9595284,52,1,103.62707,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8415484,7.6657095,62.85,38.46,60.12,54.8,8.333333333333334,1,1,0,0,0,4,4,1,479.5,1769983,830072.5,383005.25,0,0,0,3917.6992 +14452,17653,31478,31477,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9821043,8.1151695,52,-1,127.93887,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2895117,8.0096369,60.12,54.8,62.85,38.46,10,1,1,0,0,0,4,4,1,479.5,1769983,830072.5,383005.25,0,0,0,3917.6992 +14453,17654,31479,31480,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.3343902,7.4217949,11,1,167.12993,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,3.9039629,7.3390226,55.9,52.64,47.62,57.75,6.666666666666667,1,1,0,1,8,9,2,1,742.5,727442.38,419543.69,264321.16,14512.229,0,3033.8618,872.47107 +14453,17654,31480,31479,-9,-9,1,0,61,0,0,0,3,3,-9,1,3,0,0,0,11,-1,-24.560476,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.62,57.75,55.9,52.64,6.666666666666667,1,1,1,0,0,9,2,1,742.5,727442.38,419543.69,264321.16,14512.229,0,3033.8618,872.47107 +14453,17655,31481,-9,31480,31479,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1085.8811,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.49,53.7,-9,-9,8.333333333333334,1,1,1,0,6,9,1,1,265,-201698.84,0,0,0,0,0,949.3324 +14453,17656,31482,-9,31480,-9,1,1,25,0,0,0,2,2,-9,0,3,7.4662046,7.677743,0,0,0,-1038.8224,0,3,-9,2021,16,4,37,-9,1,4,1,5.9775858,5.9775858,.05,.05,0,0,0,0,0,0,1,0,1,4.6921926,0,53.48,33.65,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,1166,-64517.129,-51229.613,0,0,0,0,1107.6445 +14454,17657,31483,31485,-9,-9,1,1,37,0,3,0,3,3,-9,0,4,7.224215,7.4123249,0,5,-3,17.070911,0,-9,-9,2021,10,0,18,18,1,1,0,12.086891,12.086891,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,54.67,23.84,7,2,3,0,0,1,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31484,-9,31485,31483,1,1,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-951.08466,-9,2,3,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,67.36,32.42,-9,-9,10,2,3,0,0,0,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31485,31483,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,17,3,-91.478821,0,3,3,2021,11,1,0,7,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,23.84,51,57,5,2,3,0,1,4,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31486,-9,31485,31483,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.7906,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17658,31487,-9,31485,31483,1,1,18,0,3,1,2,0,0,0,2,0,0,0,0,0,-1099.4272,-9,2,3,2021,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,45.67,-9,-9,3.333333333333333,2,3,0,0,2,6,1,1,696,118678.83,0,0,0,0,0,0 +14454,17659,31488,-9,31485,31483,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1030.1292,-9,2,3,2021,25,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.21,57.32,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,466,127078.57,0,0,0,0,0,0 +14455,17660,31489,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.6957026,7.0445242,0,0,0,-964.9751,-9,3,2,2021,29,10,25,0,1,10,1,5.5213223,5.5213223,0,0,0,0,0,0,0,0,1,1,0,0,0,6.83,63.37,-9,-9,5,2,3,0,0,7,8,2,0,247,0,0,0,0,0,0,598.32953 +14456,17661,31490,-9,31491,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0164,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,252.5,64807.449,12805.005,0,0,0,1182.1355,2107.0432 +14456,17661,31491,-9,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,7.9216094,7.9365644,0,0,0,-1010.7067,0,2,2,2021,11,2,30,30,1,2,0,10.341253,10.341253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,44.24,-9,-9,3.333333333333333,1,1,0,0,13,13,3,1,252.5,64807.449,12805.005,0,0,0,1182.1355,2107.0432 +14456,17662,31492,-9,31491,-9,1,1,20,0,1,0,2,2,-9,0,4,6.925487,6.8388815,0,0,0,-922.45001,0,2,-9,2021,12,1,32,32,1,1,1,5.0455799,5.0455799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.67,55.51,-9,-9,1.666666666666667,1,1,0,0,4,13,2,1,138,-171379.39,14823.981,0,0,0,0,564.6297 +14457,17663,31493,31495,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.329874,8.6049461,0,16,1,-70.40815,0,3,3,2021,7,0,46,48,1,0,0,13.483725,13.483725,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,13,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31494,-9,31495,31493,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.24091,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31495,31493,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.1344433,8.1308823,0,16,-1,113.1584,0,3,3,2021,6,0,34,22,1,0,0,10.591236,10.591236,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,13,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31496,-9,31495,31493,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.9494,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14458,17664,31497,31498,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,73.684753,0,0,1,1,0,3.6953671,0,50,47,51.24,58.84,7,1,1,0,0,0,4,1,1,1124,159154.23,74492.344,116713.55,0,0,0,1430.4301 +14458,17664,31498,31497,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5546088,0,51.24,58.84,50,47,5,1,1,0,0,0,4,1,1,1124,159154.23,74492.344,116713.55,0,0,0,1430.4301 +14459,17665,31499,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.9537387,5.8126779,0,0,-1024.5542,-9,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.007762,61.58,37.81,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,612,211512.94,76892.969,0,0,0,1146.8378,1699.6681 +14460,17666,31500,31501,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.7100401,8.4999361,8,2,7.0048108,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1397848,8.8880959,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,7,8,5,1,799.5,2779986.5,1781318,616536.63,0,0,0,5626.5488 +14460,17666,31501,31500,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.0101299,8.0168171,43,-2,-19.900599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0749609,8.2573709,57.73,54.53,57.16,56.15,10,1,1,0,0,4,8,5,1,799.5,2779986.5,1781318,616536.63,0,0,0,5626.5488 +14461,17667,31502,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,4.5033798,4.7010756,0,0,-1004.4124,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7854481,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,396,-165798.03,52211.188,0,0,0,1642.1124,789.31824 +14462,17668,31503,31505,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.4518452,8.1373129,0,7,5,29.808844,0,2,2,2021,8,0,38,38,1,0,0,12.193937,12.193937,.05,.05,.05,0,0,0,0,0,1,1,0,5.9374661,0,51.14,60.45,52.37,56.93,8.333333333333334,1,1,0,0,9,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14462,17668,31504,-9,31505,31503,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-828.9472,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14462,17668,31505,31503,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,6.634943,6.3322392,0,7,-5,46.398773,0,2,2,2021,5,1,13,13,1,1,0,5.8108811,5.8108811,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,51.14,60.45,10,1,1,0,0,9,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14463,17669,31506,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.45496,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3635979,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,8,1,1,195,194656.77,0,332654.75,7243.2129,0,0,7295.208 +14464,17670,31507,-9,31508,-9,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-976.45477,-9,2,-9,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,10,2,0,507,23625.309,0,0,0,0,0,1233.5825 +14464,17670,31508,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,6.7231226,7.2616119,6.0884852,0,0,-988.97241,0,2,2,2021,19,7,20,20,1,7,0,4.8407812,4.8407812,0,0,0,0,0,0,0,0,1,1,0,5.8728361,0,22.21,33.44,-9,-9,1.666666666666667,1,1,0,0,6,10,2,0,507,23625.309,0,0,0,0,0,1233.5825 +14465,17671,31509,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.0328102,8.1436472,0,0,-899.01251,0,3,2,2021,4,0,0,54,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.8119149,64.23,44.69,-9,-9,10,1,1,0,0,11,5,4,1,305,1911409.6,589453.44,452417.75,0,0,0,1596.1908 +14466,17672,31510,31511,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.1743102,7.2869291,0,7,-2,70.489975,-9,-9,-9,2021,9,0,40,0,1,1,0,3.6597614,3.6597614,.05,.05,0,0,0,0,0,0,0,0,0,5.053297,0,53,55,43.91,47.36,8,4,1,0,0,1,13,3,1,388.5,597862.88,291502.44,214594.09,0,0,0,793.76581 +14466,17672,31511,31510,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.8451066,7.0621305,0,7,2,66.738464,0,2,2,2021,10,0,30,35,1,0,0,3.7956955,3.7956955,0,0,0,0,0,0,0,0,0,0,0,0,0,43.91,47.36,53,55,1.666666666666667,1,1,0,0,8,13,3,1,388.5,597862.88,291502.44,214594.09,0,0,0,793.76581 +14467,17673,31512,-9,31516,31513,1,1,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-778.45935,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31513,31516,31518,-9,1,1,45,1,5,0,1,1,-9,0,3,8.6256037,8.7077837,0,24,5,112.76273,0,3,3,2021,14,2,40,20,1,2,0,17.475622,17.475622,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.81,44.71,50,55,8.333333333333334,2,3,0,0,8,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31514,-9,31516,31513,1,0,14,1,5,1,3,0,-9,0,2,0,0,0,0,0,-918.50171,-9,3,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31515,-9,31516,31513,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-914.97357,-9,3,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31516,31513,-9,-9,1,0,40,1,5,0,3,3,-9,0,4,0,0,0,24,-5,10.890405,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,43.81,44.71,7,2,3,0,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31517,-9,31516,31513,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1043.9451,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17674,31518,-9,-9,-9,1,0,77,1,5,0,2,2,-9,0,3,0,0,0,0,0,-985.73273,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,1247,0,0,0,0,0,0,1239.2678 +14467,17675,31519,-9,31516,31513,1,1,19,1,5,1,2,0,0,0,4,0,0,0,0,0,-983.05585,-9,3,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,795,0,0,0,0,0,0,352.15234 +14467,17676,31520,-9,31516,31513,1,0,18,1,5,1,3,0,0,0,4,0,0,0,0,0,-924.67804,-9,3,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,378,-152313.27,0,0,0,0,0,218.91422 +14468,17677,31521,31522,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.2630835,7.8976593,12,0,79.155861,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5860949,8.3753262,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1090,1077310,672018.63,240584.83,0,0,0,3909.8755 +14468,17677,31522,31521,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.1993289,8.476161,7.7182283,12,0,61.04557,0,3,3,2021,12,3,14,24,1,3,0,9.3514738,9.3514738,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8766427,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,14,2,5,1,1090,1077310,672018.63,240584.83,0,0,0,3909.8755 +14469,17678,31523,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.41119,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.52,35.72,-9,-9,0,1,1,0,0,8,12,1,0,311,-154112.78,0,0,0,0,0,804.6955 +14470,17679,31524,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0531244,7.2862854,5.899404,0,0,-986.83447,0,2,2,2021,10,1,16,16,1,1,0,9.2539473,9.2539473,.05,.05,0,0,0,0,0,42,0,0,0,6.1114669,6.1956315,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,431,327569.09,-114141.11,236723.38,0,0,-1232.1654,1344.3853 +14471,17680,31525,31526,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.242074,7.9445667,0,6,-1,-51.65654,0,-9,-9,2021,8,0,50,40,1,0,0,7.7147527,7.7147527,.05,.05,0,0,0,0,0,0,1,1,0,5.4128642,0,55,52,30.45,64.19,8,2,3,0,0,1,9,4,1,973,2325874.5,1067866.5,697368.19,0,0,0,3653.9834 +14471,17680,31526,31525,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3660345,7.1022472,39,1,-142.46815,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.822794,7.1549864,30.45,64.19,55,52,10,2,3,0,0,0,9,4,1,973,2325874.5,1067866.5,697368.19,0,0,0,3653.9834 +14472,17681,31527,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.616025,7.8588276,0,0,-1088.0736,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6128769,7.9199939,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,546,851887.44,224691.66,187337.94,0,0,0,1855.8121 +14473,17682,31528,31529,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.2102842,8.0762091,0,6,-3,48.108734,0,3,3,2021,9,0,41,41,1,0,0,12.067725,12.067725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.29,55.07,52.95,40.58,6.666666666666667,1,1,0,0,7,6,4,0,1190.5,50210.582,-43687.637,0,0,0,0,2296.0867 +14473,17682,31529,31528,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.2363834,7.2340593,0,6,3,-14.966006,0,3,3,2021,10,1,32,35,1,1,0,6.2594185,6.2594185,0,0,0,0,0,0,0,0,0,0,0,0,0,52.95,40.58,37.29,55.07,1.666666666666667,1,1,0,0,7,6,4,0,1190.5,50210.582,-43687.637,0,0,0,0,2296.0867 +14473,17683,31530,-9,31529,31528,1,0,18,0,0,0,2,2,-9,0,3,7.4757171,7.3379908,0,0,0,-958.38715,0,3,2,2021,9,1,41,0,1,1,1,4.4887695,4.4887695,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,1,6,3,0,116,-154311.8,0,0,0,0,0,1302.5837 +14474,17684,31531,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.7341275,6.7355452,0,0,-991.77667,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8688579,44.74,48.37,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,202,404128.38,142090.42,223362.33,0,0,0,1103.3594 +14475,17685,31532,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,5.7625809,5.4417186,0,0,-969.98633,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6253076,57.75,22.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,606,186639.33,51516.883,259171.41,0,0,0,569.07361 +14476,17686,31533,31534,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.157104,0,0,1,1,0,2.0263717,0,50.22,29.55,54,46,8.333333333333334,1,1,0,0,0,13,1,1,331,70882.586,0,0,0,0,0,2767.1665 +14476,17686,31534,31533,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,50.22,29.55,8,1,1,0,0,0,13,1,1,331,70882.586,0,0,0,0,0,2767.1665 +14476,17687,31535,-9,31533,31534,1,0,47,0,0,0,2,2,-9,0,5,6.63585,6.5921588,0,0,0,-1002.1972,0,3,3,2021,12,0,12,12,1,0,0,6.888236,6.888236,0,0,0,0,0,0,0,42,1,1,0,2.6994977,0,46.08,50.54,-9,-9,8.333333333333334,1,1,0,0,8,13,2,1,700,-110052.11,0,0,0,0,0,288.4744 +14477,17688,31536,31537,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9670792,8.7105017,0,6,0,-39.447922,0,-9,-9,2021,9,0,37,40,1,1,0,21.628395,21.628395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,52,54.51,7,1,1,0,0,1,7,4,1,370,835774,778980.13,232324.84,111997.95,1137.5525,0,3882.3779 +14477,17688,31537,31536,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5586467,7.8894844,0,21,0,-43.645355,0,2,2,2021,12,1,30,26,1,1,0,7.2092295,7.2092295,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52,55,6.666666666666667,1,1,0,0,7,7,4,1,370,835774,778980.13,232324.84,111997.95,1137.5525,0,3882.3779 +14478,17689,31538,31541,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.9813967,7.9940238,0,10,-1,13.460799,-9,2,2,2021,10,0,40,0,1,0,0,6.3358054,6.3358054,.05,.05,0,0,0,0,0,0,0,0,0,6.2797828,0,45.49,50.81,53.61,51.1,8.333333333333334,1,1,0,0,11,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31539,-9,31541,31538,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.40131,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31540,-9,31541,31538,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.3316,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31541,31538,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.0939913,8.1571083,0,10,1,31.84688,0,1,2,2021,8,0,39,41,1,0,0,7.415092,7.415092,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,45.49,50.81,8.333333333333334,1,1,0,0,10,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14479,17690,31542,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-890.77966,0,-9,-9,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,10,1,1,1,1,0,11,1,0,989,-181294.16,0,0,0,0,-145.95984,508.73599 +14479,17691,31543,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,0,0,0,0,0,-937.00641,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.89,42.61,-9,-9,5,1,1,1,1,2,11,1,0,463,117412.95,0,0,0,0,0,625.14038 +14480,17692,31544,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-876.6709,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,0,20.641079,0,0,1,1,0,0,0,39.38,22.52,-9,-9,3.333333333333333,4,5,0,0,0,11,1,0,644,279257.66,0,263931.28,0,0,0,1766.0403 +14481,17693,31545,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.6697707,5.8582907,0,0,-1060.3326,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4652381,5.6732364,42.79,55.84,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,723,533637,283212,346367.78,0,0,0,1401.2523 +14482,17694,31546,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3112192,8.3983326,0,0,0,-959.13367,0,3,3,2021,7,0,37,37,1,0,0,11.992822,11.992822,.05,.05,.05,0,0,0,0,0,0,0,0,2.5720768,0,62.1,37.75,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,2176,167861.23,76731.648,127327.21,0,0,0,1663.4385 +14482,17695,31547,-9,31546,-9,1,1,21,0,0,0,2,2,-9,0,3,7.3450627,7.4292612,0,0,0,-943.2688,0,2,-9,2021,21,7,40,45,1,7,1,5.2844777,5.2844777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,3,13,3,0,1741,-75246.797,-26665.883,0,0,0,0,740.18127 +14483,17696,31548,31549,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.2615075,7.4096684,47,-4,148.05423,0,2,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4517493,53.73,49.64,58.32,50.22,8.333333333333334,1,1,0,0,0,12,5,1,229.5,1519597.6,589339.38,716346.44,0,0,0,4437.1211 +14483,17696,31549,31548,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.8456402,8.502738,47,4,-50.819309,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3895764,8.7873344,58.32,50.22,53.73,49.64,8.333333333333334,1,1,0,0,0,12,5,1,229.5,1519597.6,589339.38,716346.44,0,0,0,4437.1211 +14484,17697,31550,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.10185,6.3025346,0,0,-1024.5061,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8128395,6.1388974,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,506,52319.039,84227.789,0,0,0,0,1927.5522 +14484,17698,31551,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.130106,8.0411215,0,0,0,-997.66357,0,3,3,2021,11,0,30,30,1,0,0,11.121781,11.121781,.05,.05,0,0,0,0,0,0,1,1,0,.12192947,0,50.74,46.8,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,316,171315.23,120206.12,124777.3,0,0,0,978.70001 +14485,17699,31552,31554,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.0745983,8.5926962,0,20,-1,73.498276,0,1,2,2021,11,0,45,48,1,0,0,17.879705,17.879705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.34,59.43,48.87,58.55,8.333333333333334,1,1,0,0,14,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14485,17699,31553,-9,31554,31552,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.3796,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14485,17699,31554,31552,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,9.1450367,8.7953739,0,20,1,-12.259047,0,2,1,2021,13,2,48,43,1,2,0,19.72151,19.72151,.05,.05,0,0,0,0,0,0,1,1,0,1.2239226,0,48.87,58.55,41.34,59.43,6.666666666666667,1,1,0,0,13,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14486,17700,31555,-9,-9,-9,1,1,23,0,2,0,1,1,1,0,4,0,0,0,0,0,-950.89795,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,-9,-9,5,3,4,1,0,1,8,1,0,332,19503.41,0,0,0,0,0,0 +14487,17701,31556,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.7149653,6.7135048,0,0,-909.14258,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,1.2696438,10.703453,24.70455,0,1,1,0,3.2527905,6.7737122,62.24,16.18,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,232,86632.656,13573.22,144780.05,0,0,0,566.23077 +14488,17702,31557,-9,31560,31558,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-903.82709,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31558,31560,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,9.7900562,9.9540043,0,13,3,-18.905754,-9,2,1,2021,11,1,47,0,1,1,0,40.568253,40.568253,0,0,0,0,0,0,0,27,1,1,0,0,0,57.08,36.15,49.52,55.68,6.666666666666667,2,3,0,0,11,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31559,-9,31560,31558,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31560,31558,-9,-9,1,0,36,1,2,0,1,1,-9,1,4,8.574007,8.6382484,0,13,-3,-18.474932,-9,2,1,2021,11,0,28,0,1,0,0,19.699043,19.699043,0,0,0,0,0,0,0,98,1,1,0,0,0,49.52,55.68,57.08,36.15,6.666666666666667,2,3,0,0,9,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14489,17703,31561,31562,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.0184307,7.9421039,31,4,45.325783,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,8.0368919,55.53,51.55,61.43,43.34,6.666666666666667,2,3,0,0,9,7,4,1,1608.5,1168126.9,759417,234958.83,0,0,0,2757.0684 +14489,17703,31562,31561,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.5714531,7.9012766,30,-4,-118.26571,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.022131,7.5474191,61.43,43.34,55.53,51.55,8.333333333333334,1,1,0,0,11,7,4,1,1608.5,1168126.9,759417,234958.83,0,0,0,2757.0684 +14489,17704,31563,-9,31562,31561,1,0,25,0,0,0,1,1,-9,0,3,7.9317503,7.8017359,0,0,0,-1005.5022,0,1,1,2021,12,0,32,37,1,0,0,10.40709,10.40709,.05,.05,0,0,0,0,0,0,1,1,0,2.9350276,0,40.65,57.36,-9,-9,8.333333333333334,4,2,0,0,5,7,4,1,654,-47172.844,-1199.0192,0,0,0,0,766.79749 +14489,17705,31564,-9,31562,31561,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-983.98901,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,6.666666666666667,4,2,0,0,0,7,1,1,1056,0,0,0,0,0,0,3206.8367 +14490,17706,31565,-9,31566,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.23944,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,423.5,53190.789,0,0,0,9732.7383,0,2698.54 +14490,17706,31566,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,0,0,-902.44281,-9,3,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.42,33.27,-9,-9,5,1,1,1,0,0,11,1,0,423.5,53190.789,0,0,0,9732.7383,0,2698.54 +14491,17707,31567,-9,31569,31570,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.264,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31568,-9,31569,31570,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.95905,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31569,31570,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.9821358,8.792078,0,7,0,140.25775,0,2,2,2021,9,0,60,55,1,0,0,13.649235,13.649235,0,0,0,0,0,0,0,0,1,1,0,2.6169746,0,51.41,56.15,56.43,47.05,8.333333333333334,1,1,0,0,8,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31570,31569,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,6.9503794,7.2466593,0,7,9,75.839859,0,-9,-9,2021,11,0,16,17,1,0,0,11.271482,11.271482,0,0,0,0,0,0,0,2,1,1,0,0,0,56.43,47.05,51.41,56.15,8.333333333333334,1,1,0,0,6,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14492,17708,31571,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.3763466,7.7815614,0,0,-933.914,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3539915,7.3495317,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1692,911682.94,280908.84,5427.3374,0,0,0,2373.3682 +14493,17709,31572,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-895.92755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.54,48.69,-9,-9,8.333333333333334,1,1,0,0,5,2,1,0,433,94557.867,0,0,0,0,0,403.51859 +14494,17710,31573,31574,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.7881188,6.6403732,8,1,-188.4548,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3008862,6.9071465,52.82,53.97,58.15,52.91,8.333333333333334,1,1,0,0,0,11,2,1,717,319272.03,160365.34,107839.34,0,0,0,1436.3667 +14494,17710,31574,31573,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,8,-1,-90.64476,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6296296,0,58.15,52.91,52.82,53.97,8.333333333333334,1,1,0,0,6,11,2,1,717,319272.03,160365.34,107839.34,0,0,0,1436.3667 +14495,17711,31575,31576,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.9753103,7.033648,62,-1,31.021692,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,4.3399024,0,0,1,1,0,0,7.024128,55,45,54.36,39.67,8,1,1,0,0,0,9,2,1,131.5,734509,135052.8,616018.88,0,0,0,973.89648 +14495,17711,31576,31575,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.0725646,5.9562173,6,1,18.562614,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3238816,6.0368237,54.36,39.67,55,45,8.333333333333334,1,1,0,0,1,9,2,1,131.5,734509,135052.8,616018.88,0,0,0,973.89648 +14496,17712,31577,-9,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,6.4010916,6.0992584,0,0,0,-1062.464,0,-9,2,2021,8,0,20,21,1,0,0,3.3843169,3.3843169,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,10,2,0,238,36766.109,0,0,0,0,0,1997.2201 +14497,17713,31578,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1053.218,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,4.6746411,1.6570743,44.110161,0,1,1,0,5.1637497,0,51,46,-9,-9,7,1,1,0,0,0,4,1,0,791,196400.59,0,0,0,0,0,835.31262 +14498,17714,31579,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.2247849,8.3120737,0,0,-1058.7412,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3191819,8.4937267,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,348,1170970,685919.38,376390,0,0,0,2499.8501 +14499,17715,31580,31581,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9446688,8.0152178,0,12,11,-133.64749,0,3,2,2021,6,0,25,25,1,0,0,14.492333,14.492333,0,0,0,0,0,0,0,42,0,0,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,14,9,4,1,878,760212.38,49190.551,679344.94,97739.43,0,8219.2129,2029.2363 +14499,17715,31581,31580,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2181988,7.9815664,0,12,-11,-48.502899,0,2,2,2021,6,0,35,40,1,0,0,11.120098,11.120098,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,14,9,4,1,878,760212.38,49190.551,679344.94,97739.43,0,8219.2129,2029.2363 +14500,17716,31582,-9,31583,31585,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.5831,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31583,31585,-9,-9,1,0,39,0,2,0,1,1,1,0,4,6.9610157,6.7148619,0,6,-2,132.81441,-9,3,3,2021,9,0,10,0,1,0,0,16.602577,16.602577,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,49.25,61.25,8.333333333333334,1,1,0,0,3,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31584,-9,31583,31585,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.4725,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31585,31583,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.7355547,9.2164297,0,6,2,133.79453,0,2,2,2021,11,0,38,38,1,0,0,16.519333,16.519333,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.25,61.25,51.77,58.57,8.333333333333334,1,1,0,0,6,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14501,17717,31586,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,7.6507754,7.4514422,0,0,-1039.4009,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,.90407157,0,20.496626,0,1,1,0,2.0324693,6.9344206,59.02,37.89,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,348,485983.16,190606.34,146617.5,0,0,0,1150.4946 +14502,17718,31587,31588,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.0917301,7.9046998,41,-1,-171.61424,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3269563,8.0239134,57.16,56.15,61.68,49.95,8.333333333333334,1,1,0,0,6,5,4,1,515.5,877905.25,640617,173965.2,0,2632.5671,0,3988.0891 +14502,17718,31588,31587,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,6.6551547,8.1929989,7.2711439,41,1,33.095234,0,3,3,2021,6,0,15,22,1,0,0,6.9729834,6.9729834,.05,.05,0,0,0,0,0,0,0,0,0,3.6164825,7.0998988,61.68,49.95,57.16,56.15,10,1,1,0,0,9,5,4,1,515.5,877905.25,640617,173965.2,0,2632.5671,0,3988.0891 +14503,17719,31589,-9,31590,31591,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.9001,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14503,17719,31590,31591,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,8.3965044,8.5861788,0,6,-2,-34.3311,0,1,3,2021,12,0,25,40,1,0,0,26.132051,26.132051,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51,56,6.666666666666667,1,1,0,0,7,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14503,17719,31591,31590,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,9.6069803,8.9974194,0,6,2,-24.305679,0,-9,-9,2021,9,0,35,40,1,1,0,37.493824,37.493824,.05,.05,0,0,0,0,0,0,0,0,0,7.7412534,0,51,56,49.04,55.86,8,3,4,0,0,8,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14504,17720,31592,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,8.040514,7.7548571,0,0,0,-1081.9431,0,3,2,2021,12,0,39,38,1,0,0,9.9999218,9.9999218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,-9,-9,5,1,1,0,1,5,8,4,0,1616,-215187.36,-65308.773,0,0,0,0,2599.1602 +14505,17721,31593,31594,-9,-9,1,0,32,0,0,0,3,3,-9,1,1,0,0,0,6,-5,0,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,22.72,23.73,14.06,30.46,0,1,1,0,1,0,4,2,0,700.5,78779.461,0,86536.609,28395.932,0,0,1099.4722 +14505,17721,31594,31593,-9,-9,1,1,37,0,0,0,3,3,-9,1,1,0,0,0,6,5,0,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.06,30.46,22.72,23.73,0,4,2,0,1,0,4,2,0,700.5,78779.461,0,86536.609,28395.932,0,0,1099.4722 +14506,17722,31595,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1097.2047,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,6.1731377,14.414269,60.563519,0,1,1,0,0,0,57.98,18.59,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1312,-17280.414,0,0,0,0,0,392.07867 +14507,17723,31596,31597,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,0,0,2,-5,-73.19323,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.6076512,0,57.67,10.41,57.69,39.53,6.666666666666667,1,1,0,0,0,13,4,1,1143.5,585393.13,272201.66,247133.5,0,0,0,3364.3936 +14507,17723,31597,31596,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,8.4449158,8.2692451,2,5,-135.8398,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.8039513,5.1904716,57.69,39.53,57.67,10.41,8.333333333333334,1,1,0,0,0,13,4,1,1143.5,585393.13,272201.66,247133.5,0,0,0,3364.3936 +14507,17724,31598,-9,31596,31597,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-962.94617,0,2,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.86,49.68,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2425,115853.57,0,0,0,0,0,844.49817 +14508,17725,31599,31602,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.0526686,8.3966389,0,15,1,30.853699,0,3,2,2021,10,0,40,48,1,1,0,10.096118,10.096118,.05,.05,0,0,0,0,0,0,1,1,0,7.9479542,0,50,57,59.55,43.22,7,2,3,0,0,1,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31600,-9,31602,31599,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.1195,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31601,-9,31602,31599,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-813.68817,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31602,31599,-9,-9,1,0,35,0,3,0,1,1,-9,0,2,9.1466789,8.6708298,0,15,-1,-3.7282445,0,3,2,2021,6,0,60,39,1,0,0,18.948242,18.948242,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.55,43.22,50,57,8.333333333333334,2,3,0,0,11,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17726,31603,-9,31604,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.51147,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,896.5,49915.168,5130.5938,0,0,3525.1973,0,939.68127 +14508,17726,31604,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.2433524,7.2533894,0,0,0,-1041.6158,0,-9,-9,2021,11,0,20,20,1,2,0,6.2123666,6.2123666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,0,1,6,2,1,896.5,49915.168,5130.5938,0,0,3525.1973,0,939.68127 +14509,17727,31605,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,3,0,6.1558146,6.1840076,0,0,-994.55426,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6040154,0,26.09,63.8,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,348,77199.789,0,0,0,0,0,346.48618 +14510,17728,31606,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.8814545,6.8904519,0,0,-1131.4686,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6545091,6.9299531,56.15,41.66,-9,-9,10,1,1,0,0,0,9,2,0,386,329112.75,157830.83,171611.33,0,0,0,1397.2485 +14511,17729,31607,-9,31608,-9,1,1,31,0,0,0,2,2,-9,0,5,8.3710461,8.1472797,0,0,0,-1073.149,0,1,-9,2021,8,0,50,40,1,0,1,13.485624,13.485624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,2199,111329.77,88689.055,113760.21,55509.875,0,0,2029.1581 +14511,17730,31608,31609,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7649279,8.7631674,0,1,2,14.602066,-9,-9,-9,2021,10,0,47,0,1,0,0,11.235363,11.235363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.59,44.11,48.53,50.88,8.333333333333334,1,1,0,0,3,6,5,1,494.5,958524.75,567189.31,181706.28,33648.977,0,0,3508.3254 +14511,17730,31609,31608,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.4558945,8.1097937,0,1,-2,-4.067852,-9,-9,-9,2021,8,0,48,0,1,0,0,10.561123,10.561123,.05,.05,0,0,0,0,0,0,0,0,0,2.9751472,0,48.53,50.88,53.59,44.11,6.666666666666667,1,1,0,0,9,6,5,1,494.5,958524.75,567189.31,181706.28,33648.977,0,0,3508.3254 +14512,17731,31610,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-981.20514,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,35.34,-9,-9,8.333333333333334,1,1,0,0,8,1,1,0,674,22433.725,0,111223.63,0,-1157.3685,0,224.34003 +14513,17732,31611,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.2491226,9.0436049,0,0,0,-1007.0387,0,2,2,2021,21,9,38,38,1,9,0,22.845913,22.845913,.05,.05,0,0,0,0,0,2,0,0,0,2.7874498,0,23.02,66.47,-9,-9,3.333333333333333,1,1,0,0,14,8,5,0,526,182256.47,-135448.92,0,0,0,0,2889.6013 +14514,17733,31612,31613,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.9307933,7.9293728,11,1,37.265762,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2849388,57.33,53.46,58.31,42.52,8.333333333333334,1,1,0,0,7,9,3,1,366.5,1356071.8,675464.94,358984.5,0,0,0,2245.5994 +14514,17733,31613,31612,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.7072053,5.8581519,49,-1,64.190315,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9863999,5.8053055,58.31,42.52,57.33,53.46,5,1,1,0,0,0,9,3,1,366.5,1356071.8,675464.94,358984.5,0,0,0,2245.5994 +14515,17734,31614,-9,31616,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.1223,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14515,17734,31615,-9,31616,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.85388,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14515,17734,31616,-9,-9,-9,1,0,33,0,2,0,3,3,-9,0,3,7.0453091,7.1424537,0,0,0,-999.44916,0,-9,2,2021,20,8,20,27,1,8,0,5.7073526,5.7073526,0,0,0,0,0,0,0,0,1,0,1,0,0,36.66,54.81,-9,-9,3.333333333333333,1,1,0,0,2,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14516,17735,31617,31618,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.7806306,7.6204,12,0,-34.64035,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.7076735,7.3259583,61.12,51.57,39.76,22.71,8.333333333333334,1,1,0,0,0,9,4,1,1900.5,1002556.8,394579.69,453435.44,0,0,0,4049.876 +14516,17735,31618,31617,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.7687011,7.5911474,12,0,10.206765,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,12.392205,26.36553,149.60402,0,1,1,0,4.8073463,7.6722498,39.76,22.71,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,1900.5,1002556.8,394579.69,453435.44,0,0,0,4049.876 +14517,17736,31619,31620,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.4443064,7.2912717,4,0,-14.839415,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4156442,55.71,40.47,52,54.51,8.333333333333334,1,1,0,0,3,4,4,1,1602,1850766.4,1275991.3,195420.06,0,0,0,4359.061 +14517,17736,31620,31619,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.3871536,8.5504656,4,0,-60.724632,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5646464,8.2866478,52,54.51,55.71,40.47,8.333333333333334,1,1,0,0,0,4,4,1,1602,1850766.4,1275991.3,195420.06,0,0,0,4359.061 +14518,17737,31621,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1032.7782,-9,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9056926,0,47.83,62.16,-9,-9,10,1,1,0,0,5,9,1,0,433,372915.88,0,242364.14,21972.447,0,0,-437.83496 +14519,17738,31622,31623,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4148893,7.5911698,0,30,-1,26.294249,0,3,3,2021,11,0,22,23,1,0,0,8.4216194,8.4216194,0,0,0,0,0,0,0,0,0,0,0,3.5976536,0,54.1,50.73,43.02,57.64,6.666666666666667,1,1,0,0,11,10,5,1,826.5,550565.31,401896.81,163064.2,0,0,0,3051.7949 +14519,17738,31623,31622,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.3936386,8.9009438,6.9522533,30,1,-117.97114,0,-9,2,2021,13,1,38,37,1,1,0,15.772766,15.772766,.05,.05,.05,0,0,0,0,0,0,0,0,3.7775316,7.3232059,43.02,57.64,54.1,50.73,5,1,1,0,0,9,10,5,1,826.5,550565.31,401896.81,163064.2,0,0,0,3051.7949 +14519,17739,31624,-9,31622,31623,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-997.39148,1,2,2,2021,17,6,0,39,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4836624,0,43.32,63.94,-9,-9,10,1,1,0,0,5,10,1,1,289,42097.625,0,0,0,0,0,-299.08218 +14519,17740,31625,-9,31622,31623,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1157.673,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.15933128,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,1798,0,0,0,0,0,0,1284.2284 +14520,17741,31626,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.47308,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,28.52,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1542,-88555.758,0,0,0,0,0,1292.0184 +14521,17742,31627,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1002.4838,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1705,241716.91,0,110154.59,0,0,0,498.5611 +14522,17743,31628,-9,31630,31629,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.1483,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14522,17743,31629,31630,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,19,-10,0,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,45.08,53.02,53.93,5,1,1,1,0,1,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14522,17743,31630,31629,-9,-9,1,0,59,0,1,0,3,3,-9,0,4,0,0,0,19,10,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.02,53.93,46.39,45.08,8.333333333333334,1,1,0,0,0,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14523,17744,31631,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3312435,8.0507002,0,0,0,-958.90277,0,3,3,2021,12,0,38,38,1,0,0,12.192143,12.192143,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.71,54.5,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,159,181880.89,103467.94,106138.95,0,0,0,1299.4725 +14524,17745,31632,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-948.82422,0,2,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,19.87,56.29,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,255,-63091.402,0,-5864.5386,0,0,0,1004.206 +14525,17746,31633,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.4038105,8.0436678,4.9057546,0,0,-1159.7931,0,2,2,2021,23,11,39,39,1,11,0,15.420978,15.420978,.05,.05,0,0,0,0,0,0,1,1,0,5.6344366,5.0803409,37.11,31.98,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,851,291448.13,-52959.488,23443.752,22919.02,0,1211.7795,2617.1689 +14526,17747,31634,31635,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.2820158,8.0870428,36,-8,-121.4248,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2598596,8.1038313,52.99,51.28,58.27,48.72,10,1,1,0,0,0,9,5,1,530.5,6891996,1569957,594214.5,0,0,0,5126.4941 +14526,17747,31635,31634,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.5559273,8.1531057,29,8,-8.4787455,0,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7409017,0,0,1,1,0,5.4782529,8.4826603,58.27,48.72,52.99,51.28,8.333333333333334,1,1,0,0,0,9,5,1,530.5,6891996,1569957,594214.5,0,0,0,5126.4941 +14527,17748,31636,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0645399,7.1009994,0,0,-906.03735,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8857336,49.38,34.36,-9,-9,3.333333333333333,3,4,0,1,7,8,3,0,728,1446297.1,306976.31,564488.56,0,0,0,817.76129 +14527,17749,31637,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.1902,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,29.08,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,903,1090595.8,0,1151472.1,0,0,0,1006.5474 +14528,17750,31638,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8366451,9.138402,0,0,0,-977.46088,0,2,2,2021,12,0,41,45,1,0,0,25.607838,25.607838,.05,.05,0,0,0,0,0,2,0,0,0,3.0207636,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,497,31384.324,251348.97,15814.295,0,0,0,2494.6763 +14528,17751,31639,-9,31638,-9,1,1,24,0,0,0,1,1,-9,0,5,4.5211363,4.1716504,0,0,0,-974.30011,0,2,-9,2021,6,0,30,35,1,0,1,.42322868,.42322868,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,6,12,2,1,460,0,0,0,0,0,0,-204.47061 +14528,17752,31640,-9,31638,-9,1,0,19,0,0,0,2,2,-9,0,5,7.2628012,7.4120955,0,0,0,-921.54749,0,2,-9,2021,7,0,32,12,1,0,1,6.5135226,6.5135226,0,0,0,0,0,0,0,0,0,0,0,1.9913867,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,424,0,0,0,0,0,0,182.01247 +14529,17753,31641,31642,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,32,2,92.885994,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6460147,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,1614.5,768797.25,385290.06,361147.38,0,2139.947,0,1895.9465 +14529,17753,31642,31641,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.616281,7.4402061,28,-2,21.157295,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2741232,7.6441741,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,0,7,3,1,1614.5,768797.25,385290.06,361147.38,0,2139.947,0,1895.9465 +14530,17754,31643,31644,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.6662126,7.6362305,0,36,0,45.115227,0,3,3,2021,12,1,10,8,1,1,0,22.158798,22.158798,0,0,0,0,0,0,0,0,0,0,0,5.5875678,0,43.54,54.88,44.59,45.67,6.666666666666667,1,1,0,0,7,11,4,1,588,1079054.3,737115.31,169119.41,0,0,0,2774.2451 +14530,17754,31644,31643,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4212523,8.3936205,0,36,0,-60.66243,0,2,2,2021,20,8,25,60,1,8,0,16.705391,16.705391,.05,.05,.05,0,0,0,0,0,0,0,0,4.0942826,0,44.59,45.67,43.54,54.88,5,1,1,0,0,10,11,4,1,588,1079054.3,737115.31,169119.41,0,0,0,2774.2451 +14531,17755,31645,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1071.9315,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8743148,0,0,1,1,0,0,0,37.83,33.82,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1909,24951.695,0,147571.42,0,0,0,1243.9304 +14532,17756,31646,31647,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,32,0,-46.62685,0,2,2,2021,10,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5315785,0,57.33,53.46,50,49,0,1,1,0,0,10,6,5,1,1318,1613289.9,991488.63,419599.38,7780.7813,0,8748.2314,3577.4011 +14532,17756,31647,31646,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3760748,9.3959208,0,8,0,-81.466797,0,-9,-9,2021,10,0,50,60,1,1,0,24.334764,24.334764,.05,.05,0,0,0,0,0,0,0,0,0,3.5029671,0,50,49,57.33,53.46,7,1,1,0,0,1,6,5,1,1318,1613289.9,991488.63,419599.38,7780.7813,0,8748.2314,3577.4011 +14532,17757,31648,-9,31646,31647,1,1,23,0,0,0,2,2,-9,0,4,8.1805191,7.9263778,0,0,0,-1079.4501,0,2,1,2021,10,0,38,37,1,1,1,10.320849,10.320849,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,463,-136916.91,0,0,0,0,0,1207.63 +14533,17758,31649,-9,31651,31650,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-993.53687,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3705976,0,60.12,54.8,-9,-9,10,1,1,0,0,0,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31650,31651,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.1129065,9.040535,0,8,-2,-108.42261,0,2,2,2021,10,1,50,45,1,1,0,20.197359,20.197359,.05,.05,0,0,0,0,0,0,1,1,0,1.1022305,0,54.37,54.8,31.94,46.56,6.666666666666667,1,1,0,0,9,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31651,31650,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,8.7106829,8.8240471,0,8,2,-23.240759,0,2,2,2021,17,5,48,52,1,5,0,16.271667,16.271667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.94,46.56,54.37,54.8,3.333333333333333,1,1,0,0,9,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31652,-9,31651,31650,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-932.45996,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3428211,0,43.96,55.64,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17759,31653,-9,31651,31650,1,0,20,0,2,0,1,1,0,0,3,0,0,0,0,0,-1010.4586,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6991982,0,44.49,55.37,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,986,64446.156,0,0,0,1912.2134,0,-432.12207 +14534,17760,31654,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.8962069,8.5809765,0,0,0,-1048.5568,0,3,3,2021,11,3,36,36,1,3,0,20.65863,20.65863,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,50.76,-9,-9,5,1,1,0,0,11,13,5,1,589,431063.34,135317.78,0,0,0,0,2978.5808 +14535,17761,31655,31656,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.9907618,9.1810169,0,11,0,-106.55332,0,3,3,2021,8,0,42,40,1,0,0,21.97246,21.97246,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.19,51.92,8.333333333333334,1,1,0,0,12,9,5,1,515.5,585476.25,279638.94,333345.06,-8659.8281,5606.4683,0,5213.0381 +14535,17761,31656,31655,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.8895121,8.360878,0,11,0,23.22093,0,-9,-9,2021,8,0,32,32,1,0,0,13.936632,13.936632,.05,.05,.05,0,0,0,0,0,0,0,0,1.1388701,0,55.19,51.92,57.33,53.46,8.333333333333334,1,1,0,0,5,9,5,1,515.5,585476.25,279638.94,333345.06,-8659.8281,5606.4683,0,5213.0381 +14536,17762,31657,31659,-9,-9,1,0,33,2,2,0,2,2,-9,0,3,8.664011,8.8008757,0,5,1,83.901817,0,-9,-9,2021,8,0,40,-9,1,0,0,18.40394,18.40394,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,44.59,48.37,8.333333333333334,1,1,0,0,4,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31658,-9,31657,31659,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-915.76172,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31659,31657,-9,-9,1,1,32,2,2,0,2,2,-9,0,3,9.7264585,9.7011194,0,5,-1,21.217863,0,-9,-9,2021,15,3,10,13,1,3,0,170.96674,170.96674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,48.37,40.75,58.26,8.333333333333334,1,1,0,0,9,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31660,-9,31657,31659,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6842,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14537,17763,31661,31662,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,5.9719963,6.1966372,11,9,1.1050835,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1070242,43.78,60.98,24.6,57.93,8.333333333333334,1,1,0,0,7,10,3,1,1564,-37518.121,22996.684,0,0,0,0,2596.0168 +14537,17763,31662,31661,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.9090438,7.9381976,0,11,0,-51.301285,0,2,2,2021,22,10,39,39,1,10,0,12.345991,12.345991,0,0,.05,0,0,0,0,0,1,1,0,0,0,24.6,57.93,43.78,60.98,3.333333333333333,1,1,0,0,13,10,3,1,1564,-37518.121,22996.684,0,0,0,0,2596.0168 +14538,17764,31663,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,5.9714322,6.0884657,0,0,-984.24756,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4413209,28.54,22.31,-9,-9,3.333333333333333,1,1,0,1,0,1,2,1,347,397637.81,37580.781,0,0,0,0,917.96796 +14539,17765,31664,31665,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2400484,8.1027451,0,10,-3,-62.820621,0,-9,3,2021,6,0,36,51,1,0,0,20.017857,20.017857,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51.47,53.17,10,1,1,0,0,11,11,4,0,496,1190533.3,1085357.6,87840.711,0,0,544.82172,2114.9751 +14539,17765,31665,31664,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,6.6202049,6.4315648,10,3,38.261787,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.4726896,6.5798488,51.47,53.17,48,49,8.333333333333334,1,1,0,0,10,11,4,0,496,1190533.3,1085357.6,87840.711,0,0,544.82172,2114.9751 +14539,17766,31666,-9,31664,31665,1,1,35,0,0,0,2,2,-9,1,2,0,0,0,0,0,-920.96924,0,3,3,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.85,44.64,-9,-9,6.666666666666667,1,1,0,0,1,11,1,0,630,0,0,0,0,0,0,190.24832 +14540,17767,31667,31669,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.6211147,8.8230219,0,6,1,0,0,-9,-9,2021,6,0,48,40,1,0,0,11.495721,11.495721,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.1,59.11,6.666666666666667,1,1,0,0,7,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14540,17767,31668,-9,31669,31667,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.032,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14540,17767,31669,31667,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,8.4012451,8.0172672,0,6,-1,0,0,2,2,2021,8,1,41,35,1,1,0,13.888718,13.888718,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,7,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14541,17768,31670,31671,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.6827416,7.7554755,43,-6,180.7018,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7176986,7.6271405,60.02,56.42,57.06,57.76,10,1,1,0,0,6,11,4,1,141.5,2942704.5,2418251.5,419955.56,0,0,0,4112.6113 +14541,17768,31671,31670,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.9414034,7.9168525,39,6,-33.75835,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2182527,7.9935274,57.06,57.76,60.02,56.42,10,1,1,0,0,6,11,4,1,141.5,2942704.5,2418251.5,419955.56,0,0,0,4112.6113 +14542,17769,31672,31673,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7573309,7.874176,0,41,-2,-59.775425,0,3,3,2021,20,8,12,25,1,8,0,25.822138,25.822138,0,0,0,0,0,0,0,0,0,0,0,4.9732842,0,25.14,57.3,56.33,51.02,3.333333333333333,1,1,0,0,11,10,4,1,1403,616199.25,342335.94,412515.81,104724.09,0,0,3234.7275 +14542,17769,31673,31672,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.450747,7.5381441,0,41,2,-118.32124,0,3,3,2021,12,0,21,24,1,0,0,8.8539667,8.8539667,.05,.05,0,0,0,0,0,0,0,0,0,7.021276,0,56.33,51.02,25.14,57.3,8.333333333333334,1,1,0,0,11,10,4,1,1403,616199.25,342335.94,412515.81,104724.09,0,0,3234.7275 +14543,17770,31674,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.9884043,9.5249043,7.6858568,0,0,-1108.0306,0,2,2,2021,11,0,49,52,1,0,0,20.260727,20.260727,.05,.05,0,0,0,0,0,0,1,1,0,8.0143061,0,43.91,55.39,-9,-9,6.666666666666667,4,5,0,0,8,2,5,1,495,546631.69,164019.56,252788.91,0,-1052.2506,4073.3589,2972.9636 +14544,17771,31675,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3072281,7.2827015,0,0,0,-978.992,0,2,3,2021,10,1,21,22,1,1,0,8.0836983,8.0836983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.85,41.17,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,2546,195300.19,-90541.336,304276.81,0,0,0,774.56018 +14544,17772,31676,-9,31675,-9,1,1,26,0,0,0,2,2,-9,0,4,8.3257437,7.819994,0,0,0,-1046.204,0,2,-9,2021,10,0,40,45,1,1,1,10.30273,10.30273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,1,1,0,0,1,7,4,0,1509,-67059.711,-32561.67,0,0,0,0,1653.9084 +14545,17773,31677,31678,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5033951,8.280632,0,4,0,87.825737,0,-9,-9,2021,33,12,8,39,1,12,0,43.425884,43.425884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,4.2,72.44,46.31,51.53,6.666666666666667,2,3,0,0,5,4,4,1,296.5,146093.38,59871.609,0,0,0,382.12271,3590.3203 +14545,17773,31678,31677,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.1734543,8.0690079,0,4,0,-54.025806,0,1,1,2021,13,1,41,37,1,1,0,12.76599,12.76599,.05,.05,0,0,0,0,0,0,0,0,0,1.6002765,0,46.31,51.53,4.2,72.44,6.666666666666667,1,1,0,0,6,4,4,1,296.5,146093.38,59871.609,0,0,0,382.12271,3590.3203 +14546,17774,31679,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.4935045,8.512228,0,0,0,-1041.5238,0,3,3,2021,9,1,42,37,1,1,0,14.483062,14.483062,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,176,237271.66,73987.211,0,0,0,0,2301.7104 +14547,17775,31680,-9,31682,31683,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.11816,-9,3,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31681,-9,31682,31683,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.53809,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31682,31683,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,8.048995,8.0030413,0,20,-22,-16.315344,0,3,3,2021,9,0,43,46,1,0,0,8.7403927,8.7403927,0,0,0,0,0,0,0,0,1,1,0,0,0,54.92,50.34,59.91,42.65,8.333333333333334,2,3,0,0,6,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31683,31682,-9,-9,1,1,66,0,2,0,2,2,-9,0,3,0,4.9498501,4.7304182,20,22,-7.8992162,0,3,2,2021,11,0,0,39,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,4.6771164,59.91,42.65,54.92,50.34,5,1,1,0,0,11,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14548,17776,31684,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.3237681,7.5196466,0,0,-1074.7953,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,6.6958723,10.617723,66.566147,0,1,1,0,3.0890403,7.2925925,54.7,11.76,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,227,415941.66,108022.25,254452.16,0,0,0,1198.4572 +14549,17777,31685,31686,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.0702925,8.308217,0,6,1,-71.331741,0,-9,-9,2021,7,0,39,39,1,0,0,9.9208956,9.9208956,.05,.05,0,0,0,0,0,0,0,0,0,8.0141869,0,44.66,37.84,57.34,50.6,5,1,1,0,0,7,10,5,1,558,926420.63,245925.39,185411.58,31495.17,200.48181,5463.9238,10303.492 +14549,17777,31686,31685,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.9675465,9.293026,0,6,-1,40.971169,0,2,2,2021,8,0,40,40,1,0,0,34.2094,34.2094,.05,.05,0,0,0,0,0,0,0,0,0,7.4453683,0,57.34,50.6,44.66,37.84,5,1,1,0,0,12,10,5,1,558,926420.63,245925.39,185411.58,31495.17,200.48181,5463.9238,10303.492 +14550,17778,31687,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-913.01343,0,3,-9,2021,13,1,0,21,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5099336,0,22.21,57.66,-9,-9,1.666666666666667,4,2,0,1,5,9,1,0,757,0,0,0,0,0,0,1774.068 +14551,17779,31688,31689,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.9463639,6.5494642,58,-3,36.07679,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.5582113,6.0269661,53.08,47.16,30.59,26.9,6.666666666666667,1,1,0,0,0,9,2,1,576,308179,154814.28,230762.47,0,0,0,1310.1997 +14551,17779,31689,31688,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.5414734,5.8145108,58,3,-15.143018,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,125.00317,0,0,1,1,0,5.1285663,5.3030505,30.59,26.9,53.08,47.16,0,1,1,0,0,0,9,2,1,576,308179,154814.28,230762.47,0,0,0,1310.1997 +14552,17780,31690,31691,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,5.888689,5.916739,0,10,-1,-34.299755,0,1,2,2021,12,0,35,35,1,0,0,1.1979434,1.1979434,.05,.05,0,0,0,0,0,0,0,0,0,.28212979,0,52.99,51.28,51.28,50.73,8.333333333333334,1,1,0,0,11,11,4,0,314,784254.25,247039.83,373528.75,0,0,0,2415.2937 +14552,17780,31691,31690,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.9433136,8.6790962,7.0492554,10,1,31.359375,0,2,3,2021,8,0,60,0,1,0,0,7.3821106,7.3821106,.05,.05,0,0,0,0,0,0,0,0,0,0,7.3430238,51.28,50.73,52.99,51.28,8.333333333333334,1,1,0,0,11,11,4,0,314,784254.25,247039.83,373528.75,0,0,0,2415.2937 +14553,17781,31692,31693,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8900509,8.8305683,0,6,-4,106.52712,0,2,2,2021,9,1,70,70,1,1,0,12.528522,12.528522,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,46.08,57.2,6.666666666666667,1,1,0,0,7,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14553,17781,31693,31692,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,6.9373617,7.0802436,0,6,4,-45.997536,0,2,2,2021,12,0,42,45,1,0,0,2.47596,2.47596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,46.44,59.62,5,1,1,0,0,7,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14553,17781,31694,-9,31692,31693,1,1,17,0,0,1,2,0,0,0,5,0,5.1417193,5.5965977,0,0,-1028.1724,-9,1,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1606965,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14554,17782,31695,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.7060409,6.3295989,0,0,-977.04175,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0038218,6.3254776,47.3,43.1,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,2226,-114335.79,-24663.727,215833.05,0,0,0,1395.1199 +14555,17783,31696,31697,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6667323,7.1685224,46,2,-36.433079,0,-9,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,125.21468,0,0,1,1,0,4.7297001,6.9337435,54,46,45.01,54.76,8,1,1,0,0,0,6,2,1,353.5,461767.69,150586.14,191803.77,0,0,0,1923.4734 +14555,17783,31697,31696,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,46,-2,-58.916847,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,2.5795457,0,45.01,54.76,54,46,0,1,1,0,0,0,6,2,1,353.5,461767.69,150586.14,191803.77,0,0,0,1923.4734 +14556,17784,31698,-9,31699,31701,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.93756,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31699,31701,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,0,0,0,4,-1,15.793626,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.5,44.29,57.16,56.15,10,1,1,0,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31700,-9,31699,31701,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1203.948,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31701,31699,-9,-9,1,1,24,1,2,0,2,2,-9,0,4,7.885993,7.8649292,0,4,1,-15.372767,0,-9,-9,2021,6,0,42,42,1,0,0,7.4457059,7.4457059,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.5,44.29,10,1,1,0,0,4,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14557,17785,31702,31703,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.191885,8.3296452,0,2,5,-19.292866,0,-9,-9,2021,8,0,38,38,1,0,0,11.988862,11.988862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.56,53.97,50.28,51.35,8.333333333333334,1,1,0,0,5,2,4,1,458,46125.617,7319.627,114735.08,128719.2,1694.3215,7801.3926,2329.8972 +14557,17785,31703,31702,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.6558504,7.5010509,0,2,-5,-56.376431,0,2,2,2021,7,1,37,37,1,1,0,6.4949641,6.4949641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,51.56,53.97,8.333333333333334,1,1,0,0,7,2,4,1,458,46125.617,7319.627,114735.08,128719.2,1694.3215,7801.3926,2329.8972 +14558,17786,31704,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,6.4390793,6.7569127,0,0,-952.91895,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0215755,4.928328,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,4,6,2,1,665,-159578.06,0,0,0,666.89679,0,1158.7701 +14559,17787,31705,31708,-9,-9,1,1,40,2,2,0,2,2,-9,0,4,8.51513,8.6808138,0,10,3,55.814671,0,3,3,2021,7,0,37,37,1,0,0,14.514803,14.514803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31706,-9,31708,31705,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.7687,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31707,-9,31708,31705,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5978,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31708,31705,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.5737677,8.6114597,0,10,-3,91.034767,0,2,3,2021,10,1,40,37,1,1,0,18.176439,18.176439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14560,17788,31709,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.42255,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,16.31,-9,-9,5,1,1,0,0,0,13,1,0,137,-195686.61,0,0,0,0,0,1744.3696 +14561,17789,31710,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1051.4602,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,27.72,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,687,-44858.512,0,0,0,0,368.23807,2443.5015 +14562,17790,31711,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.6108394,5.6366105,0,0,-1174.4503,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5283628,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,267,460727.56,145307.69,234984.14,0,1520.7811,5351.0269,499.38367 +14563,17791,31712,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.678299,8.0160933,0,0,0,-1002.9665,0,3,2,2021,9,0,46,46,1,1,0,5.5319948,5.5319948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,-9,-9,8,3,4,0,0,8,8,3,0,1187,18660.646,-115665.89,0,0,3161.5032,0,1525.9756 +14564,17792,31713,31714,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.2150898,8.2322655,45,3,-26.860685,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0792594,8.0097933,54.2,57.49,58.15,52.91,10,1,1,0,0,3,5,4,1,780.5,1176388.8,828856.88,453628.38,0,3264.6567,0,3854.4343 +14564,17792,31714,31713,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7549047,7.6427994,45,-3,92.483833,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6121669,7.4338226,58.15,52.91,54.2,57.49,10,1,1,0,0,4,5,4,1,780.5,1176388.8,828856.88,453628.38,0,3264.6567,0,3854.4343 +14565,17793,31715,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-889.04919,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.3373318,0,0,1,1,0,0,0,60.07,13.02,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,2608,24761.891,0,43000.863,0,0,0,1725.8813 +14566,17794,31716,-9,31718,31719,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.6239,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31717,-9,31718,31719,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.10968,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31718,31719,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.833333,7.7248678,0,7,-5,-82.243988,-9,2,2,2021,2,0,49,0,1,0,0,8.7247658,8.7247658,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.15,52.91,10,3,4,0,0,6,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31719,31718,-9,-9,1,1,44,1,3,0,1,1,-9,0,4,9.0530558,9.0349617,0,7,5,-10.442031,-9,3,2,2021,7,0,41,0,1,0,0,25.163372,25.163372,0,0,0,0,0,0,0,0,0,0,0,.31720787,0,58.15,52.91,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14567,17795,31720,-9,31721,31722,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.48639,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17795,31721,31722,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.3659878,8.1027899,0,2,-2,68.577576,0,2,1,2021,10,1,32,30,1,1,0,11.171009,11.171009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,10,1,1,0,0,8,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17795,31722,31721,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.0857363,8.8749695,0,2,2,3.8620675,-9,2,1,2021,9,0,40,0,1,1,0,18.591251,18.591251,.05,.05,0,0,0,0,0,0,1,1,0,1.1073755,0,52,55,54.37,54.8,8,4,2,0,0,1,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17796,31723,-9,31721,31722,1,1,19,0,1,0,2,2,1,0,4,8.4376469,8.1361485,0,0,0,-1033.2546,-9,2,1,2021,10,0,35,0,1,2,1,13.484068,13.484068,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,4,1,536,359526.5,0,261356.98,150506.86,0,0,2246.4614 +14568,17797,31724,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.3066244,7.385622,0,0,0,-954.78577,0,2,2,2021,19,6,24,24,1,6,0,8.0205364,8.0205364,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,39.45,-9,-9,6.666666666666667,1,1,0,0,6,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14568,17797,31725,-9,31724,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3497,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14568,17797,31726,-9,31724,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1251.4479,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14569,17798,31727,31728,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.4228888,7.169836,0,12,-5,45.806194,0,-9,2,2021,6,0,30,30,1,0,0,7.3734765,7.3734765,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,62.19,33.35,8.333333333333334,1,1,0,0,13,6,4,1,610,2632890.5,481762,779690.63,0,0,0,2771.6685 +14569,17798,31728,31727,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9427137,8.5461359,7.5605774,12,5,146.4819,0,3,2,2021,7,1,24,22,1,1,0,13.927487,13.927487,0,0,0,0,0,0,0,0,0,0,0,4.3664584,7.4332767,62.19,33.35,51.83,57.2,8.333333333333334,1,1,0,0,13,6,4,1,610,2632890.5,481762,779690.63,0,0,0,2771.6685 +14570,17799,31729,31730,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.7179942,6.6402721,34,12,-2.3283274,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.238204,6.7057505,57.16,56.15,48,48,10,1,1,0,0,11,7,3,1,252,1227847,589342.63,638032.75,0,0,0,2584.6636 +14570,17799,31730,31729,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9287848,8.3642139,6.2258601,10,-12,152.93227,0,-9,-9,2021,11,0,37,38,1,2,0,6.7345252,6.7345252,0,0,0,0,0,0,0,0,1,1,0,2.6775541,6.1271996,48,48,57.16,56.15,7,1,1,0,0,1,7,3,1,252,1227847,589342.63,638032.75,0,0,0,2584.6636 +14571,17800,31731,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.4675875,7.9851303,0,0,0,-985.05518,0,3,3,2021,33,12,36,42,1,12,0,17.560667,17.560667,0,0,0,0,0,0,0,0,0,0,0,0,0,9.960000000000001,48.45,-9,-9,3.333333333333333,1,1,0,0,14,9,5,0,867,2466820.3,1005730.8,1486530.8,0,3501.9578,0,605.47699 +14572,17801,31732,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,2.9139791,3.1696563,0,0,-1008.5194,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.9961872,63.55,39.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,418,13483.979,-110135.63,0,0,0,0,839.72131 +14573,17802,31733,31734,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7785792,7.8116131,0,39,-3,78.537529,0,3,3,2021,12,0,35,35,1,0,0,8.3459673,8.3459673,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,51,49,5,1,1,0,0,10,7,5,1,794,5674448,948820.63,3313531,0,0,0,3680.1196 +14573,17802,31734,31733,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,9.0738754,9.1231632,0,39,3,-9.9955683,-9,-9,-9,2021,10,0,40,0,1,1,0,17.633484,17.633484,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,49.29,54.59,7,1,1,0,0,1,7,5,1,794,5674448,948820.63,3313531,0,0,0,3680.1196 +14574,17803,31735,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-929.17188,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,16.133684,0,0,1,1,0,0,0,44.09,20.38,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,380,180070.38,0,0,0,0,0,2526.7046 +14574,17804,31736,-9,31735,-9,1,0,33,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1003.9385,0,3,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.26,53.86,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,277,27765.975,0,0,0,2481.6545,0,339.15762 +14575,17805,31737,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.4770279,6.6813726,0,0,-884.88763,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5120199,6.7052507,64.40000000000001,36.46,-9,-9,10,1,1,0,0,4,9,2,0,506,556900.13,6142.9658,381046.53,0,0,0,1245.7542 +14576,17806,31738,-9,31739,31740,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1023.3776,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.98,52.59,-9,-9,8.333333333333334,2,3,0,0,0,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17806,31739,31740,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8480196,7.7810068,0,12,-3,-96.205429,-9,-9,-9,2021,10,0,50,0,1,0,0,5.9735932,5.9735932,0,0,0,0,0,0,0,0,1,1,0,2.9963343,0,41.12,43.31,42.68,38.46,6.666666666666667,2,3,0,0,10,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17806,31740,31739,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2158108,8.0309868,0,19,3,-59.978436,-9,-9,-9,2021,10,0,45,0,1,0,0,13.004729,13.004729,.05,.05,0,0,0,0,0,0,1,1,0,4.8957582,0,42.68,38.46,41.12,43.31,6.666666666666667,2,3,0,0,12,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17807,31741,-9,31739,31740,1,0,25,0,1,0,2,2,-9,0,3,7.6035047,7.7337632,0,0,0,-1067.7489,-9,2,2,2021,11,0,42,0,1,0,1,7.6070838,7.6070838,.05,.05,0,0,0,0,0,0,1,1,0,1.1252496,0,39.15,41.42,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,2161,231383.67,-80810.484,8198.1924,72720.82,0,293.5018,1226.6206 +14576,17808,31742,-9,31739,31740,1,0,21,0,1,0,2,2,-9,0,4,6.521987,6.4205518,0,0,0,-1065.8696,-9,2,2,2021,18,5,34,0,1,5,1,1.9180497,1.9180497,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,37.8,-9,-9,6.666666666666667,2,3,0,0,5,6,2,1,479,-9613.0879,0,0,0,16669.441,0,125.10791 +14577,17809,31743,-9,31744,31745,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-837.49725,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14577,17809,31744,31745,-9,-9,1,0,43,1,1,0,1,1,-9,0,4,8.2198267,8.7645388,0,7,-6,17.836994,-9,-9,-9,2021,10,0,40,0,1,1,0,15.224157,15.224157,0,0,0,0,0,0,0,0,0,0,0,.36793277,0,50,55,50.54,33.6,8,1,1,0,0,1,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14577,17809,31745,31744,-9,-9,1,1,49,1,1,0,3,3,-9,0,2,7.2041402,7.258708,0,7,6,46.789227,0,3,2,2021,19,7,26,34,1,7,0,8.4758692,8.4758692,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,33.6,50,55,3.333333333333333,1,1,0,0,8,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14578,17810,31746,-9,31748,31747,1,1,28,0,0,0,2,2,-9,1,4,0,0,0,0,0,-954.0874,0,2,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.17,47.54,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,429,-217255.81,0,0,0,0,0,458.49149 +14578,17811,31747,31748,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,5,-96.07695,0,3,3,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.01649,0,46.16,54.36,24.23,35.35,10,1,1,0,0,0,2,3,0,1900,1417269.8,1093448.9,76643.039,0,0,0,3051.2661 +14578,17811,31748,31747,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,8.2476349,8.3399401,5.5974951,7,-5,-8.7472305,0,-9,-9,2021,16,6,40,-9,1,6,0,8.720768,8.720768,0,0,0,0,0,0,0,2,1,1,0,0,5.6922235,24.23,35.35,46.16,54.36,6.666666666666667,1,1,0,1,2,2,3,0,1900,1417269.8,1093448.9,76643.039,0,0,0,3051.2661 +14579,17812,31749,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,4.1186342,4.2020445,0,0,-1030.8506,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.1576385,0,21.960297,0,1,1,0,0,4.0843072,43.34,22.68,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,2262,-9137.2754,0,83443.609,0,0,0,929.00122 +14580,17813,31750,-9,31751,31753,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5089,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31751,31753,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4773479,7.8168941,0,10,-8,-62.770008,0,2,2,2021,13,4,15,15,1,4,0,18.221382,18.221382,0,0,0,0,0,0,0,0,1,1,0,7.0447478,0,46.5,58.26,52.23,55.6,8.333333333333334,1,1,0,0,7,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31752,-9,31751,31753,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5103,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31753,31751,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.980876,8.8562727,0,10,8,-64.878983,0,-9,-9,2021,4,0,42,42,1,0,0,23.71191,23.71191,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,46.5,58.26,8.333333333333334,1,1,0,0,8,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14581,17814,31754,31755,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,40,-6,68.808502,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.476727,0,47.81,49.37,39.52,27.84,8.333333333333334,1,1,0,0,7,4,3,1,900.5,748004,309257.94,406880.31,0,3026.4458,0,1970.0063 +14581,17814,31755,31754,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.8063464,7.6764574,39,6,-48.346081,0,3,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,122.78623,121.69814,1158.0682,0,1,1,0,6.7848892,7.5640936,39.52,27.84,47.81,49.37,6.666666666666667,1,1,0,0,6,4,3,1,900.5,748004,309257.94,406880.31,0,3026.4458,0,1970.0063 +14582,17815,31756,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.7469401,6.876914,0,0,-955.64301,0,-9,-9,2021,29,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6489449,23.54,24.46,-9,-9,3.333333333333333,3,4,0,1,1,8,2,0,235,229160.63,168026.33,181570.06,0,0,0,975.50934 +14582,17816,31757,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,6.3060908,6.2740636,0,0,-996.55212,0,-9,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,14.666123,0,2,1,1,0,0,6.2199569,38.23,32.88,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,1394,12454.094,-37289.34,0,0,0,0,883.06921 +14583,17817,31758,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,6.3661251,6.2974515,0,0,0,-1036.704,0,-9,-9,2021,12,0,14,0,1,2,0,5.7008314,5.7008314,0,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,2,2,0,104,166973.38,0,0,0,0,0,-312.8389 +14584,17818,31759,31760,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,13,-1,127.97545,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9676223,0,59.43,58.05,59.43,58.05,10,1,1,0,0,8,10,2,1,884.5,262751.88,-32289.531,125263.2,10604.043,0,0,3629.7588 +14584,17818,31760,31759,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,6.7303963,6.8542495,0,33,1,38.218616,0,2,2,2021,10,1,5,15,1,1,0,15.492358,15.492358,0,0,0,0,0,0,0,2,0,0,0,0,0,59.43,58.05,59.43,58.05,8.333333333333334,1,1,0,0,14,10,2,1,884.5,262751.88,-32289.531,125263.2,10604.043,0,0,3629.7588 +14585,17819,31761,-9,-9,-9,1,0,48,0,1,0,1,1,-9,1,4,7.2935252,7.6898522,0,0,0,-933.22638,0,2,2,2021,11,0,16,8,1,0,0,9.4109459,9.4109459,.05,.05,0,0,0,0,0,110,1,1,0,0,0,44.53,56.37,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,1626.5,-183891.91,92281.516,0,0,0,0,592.11646 +14585,17819,31762,-9,31761,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-930.55432,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,2,1,1626.5,-183891.91,92281.516,0,0,0,0,592.11646 +14585,17820,31763,-9,31761,-9,1,0,22,0,1,0,1,1,1,0,4,0,0,0,0,0,-1145.3745,-9,1,-9,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6768026,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,1352,-149523.95,0,0,0,0,0,35.428352 +14586,17821,31764,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-973.71472,0,3,3,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,24.41,-9,-9,6.666666666666667,1,1,0,0,6,8,1,0,410,-48436.828,0,0,0,0,0,634.41333 +14587,17822,31765,31766,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-8,0,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.61,46.62,56.58,49.75,8.333333333333334,1,1,0,0,0,9,2,1,432.5,381874.69,0,319399.03,0,0,0,1048.7638 +14587,17822,31766,31765,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,7,8,0,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.58,49.75,45.61,46.62,8.333333333333334,1,1,0,0,3,9,2,1,432.5,381874.69,0,319399.03,0,0,0,1048.7638 +14588,17823,31767,31769,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.7497368,9.0782614,0,1,0,50.958706,-9,-9,-9,2021,9,0,45,0,1,1,0,19.043005,19.043005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,52,54.51,8,1,1,0,0,1,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31768,-9,31769,31767,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.5176,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31769,31767,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,1,0,53.589893,-9,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51,56,6.666666666666667,1,1,0,0,3,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31770,-9,31769,31767,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.6816,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17824,31771,-9,31769,31767,1,1,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1005.372,-9,2,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6152198,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,1082,0,0,0,0,0,0,137.42995 +14589,17825,31772,-9,31773,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.12445,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,474,-31720.074,0,0,0,0,0,1122.5441 +14589,17825,31773,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,6.8309221,6.9390502,0,0,0,-1002.8314,0,-9,-9,2021,9,1,16,16,1,1,0,8.3315277,8.3315277,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,-9,-9,10,1,1,0,0,7,13,2,0,474,-31720.074,0,0,0,0,0,1122.5441 +14590,17826,31774,31775,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.8253555,8.695384,30,8,-185.34973,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5845461,57.16,56.15,50,47,10,1,1,0,0,0,1,5,1,199.5,1358662.6,725565.88,450409.13,0,1146.8066,13596.541,4530.6016 +14590,17826,31775,31774,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5465827,7.8625135,7.6308451,6,-8,-59.278313,-9,-9,-9,2021,11,0,24,0,1,2,0,7.5417638,7.5417638,0,0,0,0,0,0,0,0,1,1,0,4.6249681,6.9955692,50,47,57.16,56.15,7,1,1,0,0,1,1,5,1,199.5,1358662.6,725565.88,450409.13,0,1146.8066,13596.541,4530.6016 +14591,17827,31776,-9,31778,31777,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0714,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14591,17827,31777,31778,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.5341473,8.7004709,0,22,3,-176.7187,0,3,2,2021,21,9,40,40,1,9,0,13.906878,13.906878,0,0,.05,0,0,0,0,0,0,0,0,8.1383724,0,36.76,56.28,30.94,61.65,3.333333333333333,2,3,0,0,11,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14591,17827,31778,31777,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.9979467,9.1639452,0,22,-3,-34.707825,0,3,3,2021,24,12,38,8,1,12,0,26.91963,26.91963,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,36.76,56.28,3.333333333333333,2,3,0,0,12,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14592,17828,31779,-9,31780,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.9388,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31780,31781,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.4815474,7.6450458,6.1112556,1,4,-84.224396,0,3,3,2021,12,0,30,30,1,0,0,7.7230473,7.7230473,0,0,0,0,0,0,0,0,1,1,0,6.2109404,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,6,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31781,31780,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.2928581,8.546196,0,1,-4,12.944684,-9,-9,-9,2021,7,0,42,0,1,0,0,9.8202229,9.8202229,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,0,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31782,-9,31780,-9,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1061.9626,-9,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.36,57.34,-9,-9,8.333333333333334,1,1,0,0,1,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14593,17829,31783,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.076551,6.8619184,0,0,-967.56036,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,17.191282,11.21863,145.32852,0,1,1,0,.60823619,7.2223215,32.41,44.91,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,231,91232.766,92398.781,114762.9,0,0,0,1244.1957 +14594,17830,31784,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1419535,8.129653,0,0,0,-895.36224,0,2,2,2021,11,0,40,46,1,0,0,9.2756701,9.2756701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,759,-44664.855,30803.453,0,0,0,0,1722.5387 +14595,17831,31785,31786,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.144506,7.7130752,6.6902294,42,-3,-27.683704,0,3,3,2021,13,2,16,15,1,2,0,12.255736,12.255736,0,0,0,0,0,0,0,0,0,0,0,0,6.2657814,47.47,41.63,57.16,56.15,6.666666666666667,4,2,0,0,13,9,4,1,1250,1562084.5,1130670,437193.44,31237.117,0,0,3325.9309 +14595,17831,31786,31785,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,7.918222,8.7085571,7.2860394,42,3,-1.2397697,0,3,3,2021,7,0,55,55,1,0,0,8.1766605,8.1766605,0,0,0,0,0,0,0,0,0,0,0,0,7.7418208,57.16,56.15,47.47,41.63,8.333333333333334,1,1,0,0,13,9,4,1,1250,1562084.5,1130670,437193.44,31237.117,0,0,3325.9309 +14596,17832,31787,-9,-9,-9,1,0,64,0,0,0,1,1,-9,1,1,0,0,0,0,0,-989.24408,0,2,2,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56895375,0,54.63,10.83,-9,-9,1.666666666666667,4,2,0,0,0,4,1,0,801,649807.31,259030.22,495843.03,10397.711,0,0,1330.4967 +14597,17833,31788,-9,-9,31789,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.3149,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,915.5,191278.48,75830.703,0,0,0,0,2390.1018 +14597,17833,31789,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.905098,8.6273699,0,0,0,-942.74683,-9,2,2,2021,10,0,50,0,1,0,0,15.819496,15.819496,.05,.05,0,0,0,0,0,0,0,0,0,2.3343596,0,49.04,55.86,-9,-9,5,1,1,0,0,12,11,5,1,915.5,191278.48,75830.703,0,0,0,0,2390.1018 +14598,17834,31790,31791,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,0,0,43,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,47.87,20.38,10,1,1,0,0,0,6,1,1,434.5,172954.63,0,180052.16,0,0,0,1560.9834 +14598,17834,31791,31790,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,43,3,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.8431687,0,23.620687,0,1,1,0,0,0,47.87,20.38,62.39,56.71,10,1,1,0,0,0,6,1,1,434.5,172954.63,0,180052.16,0,0,0,1560.9834 +14599,17835,31792,31793,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.6695728,7.4757466,33,0,-127.75929,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2568526,7.8019986,57.33,53.46,60.47,41.03,8.333333333333334,1,1,0,0,11,10,3,1,724.5,970519.13,704951,337679.81,0,0,0,1677.7137 +14599,17835,31793,31792,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.1688313,7.078413,33,0,-22.633244,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0676966,6.9385467,60.47,41.03,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,724.5,970519.13,704951,337679.81,0,0,0,1677.7137 +14600,17836,31794,31795,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,1,5,166.83905,0,-9,-9,2021,8,0,0,37,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.1665311,0,52.6,52.88,64.64,45.93,6.666666666666667,1,1,1,0,10,4,3,1,542.5,333599.31,87802.883,196568.13,0,0,0,842.50348 +14600,17836,31795,31794,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8384385,7.8990421,0,1,-5,-112.46848,-9,-9,-9,2021,6,0,30,0,1,0,0,11.622261,11.622261,0,0,0,0,0,0,0,0,1,1,0,0,0,64.64,45.93,52.6,52.88,8.333333333333334,1,1,0,0,3,4,3,1,542.5,333599.31,87802.883,196568.13,0,0,0,842.50348 +14600,17837,31796,-9,-9,31794,1,1,27,0,0,0,1,1,0,0,4,0,0,0,0,0,-1119.5576,-9,-9,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,4,1,1,749,-35678.98,0,0,0,0,0,722.79724 +14600,17838,31797,-9,-9,31794,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-990.88721,-9,-9,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,267,214588.39,0,0,0,0,0,0 +14601,17839,31798,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2137127,8.0656548,0,0,0,-931.04779,0,2,2,2021,13,3,37,37,1,3,0,11.660169,11.660169,0,0,0,0,0,0,0,0,1,1,0,4.0607448,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,285,208509.23,-76929.516,0,0,0,0,1413.5054 +14602,17840,31799,-9,31800,31801,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.44855,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.0172077,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31800,31801,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.8788528,8.6752996,0,7,4,10.815691,0,1,1,2021,22,11,74,31,1,11,0,7.5395308,7.5395308,.05,.05,0,0,0,0,0,0,1,1,0,2.0172412,0,28.33,62.63,45.86,53.23,6.666666666666667,4,5,0,0,6,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31801,31800,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,8.9227839,9.4271355,0,7,-4,-79.449791,0,2,2,2021,5,0,39,35,1,0,0,26.441147,26.441147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.86,53.23,28.33,62.63,8.333333333333334,3,4,0,0,6,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31802,-9,31800,31801,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.27368,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14603,17841,31803,-9,31805,31804,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.1206,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14603,17841,31804,31805,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,9.19417,9.2722998,0,10,3,-7.904655,0,2,2,2021,15,4,70,60,1,4,0,13.859959,13.859959,.05,.05,0,0,0,0,0,0,1,1,0,1.2655265,0,46.73,54.33,48.74,51.67,6.666666666666667,1,1,0,0,10,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14603,17841,31805,31804,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.645668,8.5307274,0,10,-3,140.17314,0,2,2,2021,6,0,17,16,1,0,0,33.357918,33.357918,.05,.05,0,0,0,0,0,0,1,1,0,1.4833448,0,48.74,51.67,46.73,54.33,8.333333333333334,1,1,0,0,12,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14604,17842,31806,31807,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.4233332,8.3495531,0,6,0,-137.89302,0,2,2,2021,10,0,45,40,1,0,0,15.787741,15.787741,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,0,431,130619.89,41131.656,117576.4,76257.875,4101.8853,4608.8647,3278.4902 +14604,17842,31807,31806,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.832058,7.7318606,0,6,0,23.833572,0,-9,-9,2021,4,0,40,40,1,0,0,8.338213,8.338213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,431,130619.89,41131.656,117576.4,76257.875,4101.8853,4608.8647,3278.4902 +14605,17843,31808,-9,31810,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.4472,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14605,17843,31809,-9,31810,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1177.8552,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14605,17843,31810,-9,-9,-9,1,0,31,0,2,0,1,1,1,0,2,8.2123566,8.2369919,0,0,0,-1049.0557,-9,3,2,2021,24,12,40,0,1,12,0,10.575982,10.575982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.81,57.6,-9,-9,3.333333333333333,1,1,0,0,6,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14606,17844,31811,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.57806,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,30.444387,6.5134144,264.8642,0,1,1,0,0,0,43.57,24.7,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,297,25192.834,0,0,0,0,2298.4075,2165.9573 +14607,17845,31812,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.2253747,7.1543365,0,0,0,-1041.7961,0,1,1,2021,12,0,6,6,1,0,1,27.344679,27.344679,.05,.05,0,0,0,0,0,0,1,1,0,5.0496154,0,39.65,56.19,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,466,-282341.97,-75023.828,0,0,0,0,1033.9313 +14608,17846,31813,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-953.76648,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,1,890,-48900.297,0,0,0,0,0,1001.5208 +14609,17847,31814,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.1754751,8.2051258,0,0,0,-778.19238,0,2,2,2021,15,4,37,37,1,4,0,10.609587,10.609587,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.5,51.25,-9,-9,6.666666666666667,1,1,0,0,13,10,4,1,369,662465.5,55703.707,0,0,0,0,2055.9402 +14610,17848,31815,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.1079273,9.0490189,0,0,0,-992.8512,0,2,2,2021,7,0,38,38,1,0,0,25.321665,25.321665,.05,.05,0,0,0,0,0,0,0,0,0,1.3327734,0,57.06,57.76,-9,-9,10,1,1,0,0,9,8,5,1,2080,127045.21,-20164.592,0,0,0,0,2898.9104 +14611,17849,31816,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.8920536,7.6544695,7.4368167,0,0,-1078.4695,0,3,3,2021,12,2,14,10,1,2,0,7.196372,7.196372,0,0,0,0,0,0,0,2,1,1,0,7.0257783,0,36.8,42.82,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,1034.5,817408.44,356581.81,226849.56,0,0,0,2399.9238 +14611,17849,31817,-9,31816,-9,1,0,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1081.6841,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,3,0,1034.5,817408.44,356581.81,226849.56,0,0,0,2399.9238 +14612,17850,31818,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.065589,6.7008181,0,0,-981.29132,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48878273,7.1343613,64.40000000000001,15.2,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,276,2148709,1948407,0,0,0,0,1170.3534 +14613,17851,31819,31820,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,15,-1,-131.86382,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,46.31,51.53,8.333333333333334,1,1,0,0,0,9,4,1,291,2017173.9,620054.38,455552.81,0,0,0,1930.2649 +14613,17851,31820,31819,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.3376513,8.4084244,0,15,1,8.0661459,0,2,2,2021,13,2,51,47,1,2,0,11.623788,11.623788,.05,.05,0,0,0,0,0,0,0,0,0,3.0587697,0,46.31,51.53,54.38,46.77,8.333333333333334,1,1,0,0,9,9,4,1,291,2017173.9,620054.38,455552.81,0,0,0,1930.2649 +14613,17852,31821,-9,31819,31820,1,0,22,0,0,0,2,2,-9,0,2,7.6486959,7.3550606,0,0,0,-1101.1428,0,2,2,2021,15,3,32,37,1,3,1,7.7982607,7.7982607,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,43.29,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,428,117387.84,-76271.047,0,0,1021.0743,0,1145.6459 +14614,17853,31822,31824,-9,-9,1,1,30,0,1,0,3,3,-9,0,3,0,0,0,8,2,0,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,62.9,48.63,3.333333333333333,1,1,1,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14614,17853,31823,-9,31824,31822,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.0028,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14614,17853,31824,31822,-9,-9,1,0,28,0,1,0,3,3,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.9,48.63,40.65,57.36,10,4,1,1,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14615,17854,31825,31826,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.1741867,7.9292002,0,25,5,12.086176,0,3,3,2021,11,0,30,34,1,2,0,11.949931,11.949931,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49,50,46,50,7,2,3,0,0,13,8,3,0,810,476667.81,4124.6016,390949.75,0,0,0,2833.8303 +14615,17854,31826,31825,-9,-9,1,0,47,0,1,0,3,3,-9,1,3,0,0,0,25,-5,-157.30673,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46,50,49,50,7,2,3,0,0,0,8,3,0,810,476667.81,4124.6016,390949.75,0,0,0,2833.8303 +14615,17855,31827,31828,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,7.7691946,7.8828831,0,4,0,-44.201916,0,-9,-9,2021,12,0,37,37,1,2,0,9.6055288,9.6055288,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,48.91,42.54,7,2,3,0,0,6,8,4,0,898.5,-24007.801,-34321.25,0,0,5173.5503,0,3352.5242 +14615,17855,31828,31827,31826,31825,1,1,28,0,1,0,1,1,-9,0,3,8.2570009,8.4227257,0,4,0,-11.114987,0,3,3,2021,12,1,35,40,1,1,0,12.082799,12.082799,.05,.05,0,0,0,0,0,7,1,1,0,0,0,48.91,42.54,46,58,8.333333333333334,2,3,0,0,8,8,4,0,898.5,-24007.801,-34321.25,0,0,5173.5503,0,3352.5242 +14615,17856,31829,-9,31826,31825,1,0,24,0,1,0,1,1,-9,0,4,8.4565258,7.9213901,0,0,0,-1021.8708,0,3,3,2021,11,2,40,20,1,2,1,10.153407,10.153407,0,0,0,0,0,0,0,7,1,1,0,0,0,37.99,47.35,-9,-9,5,2,3,0,0,5,8,4,0,515,105882.84,0,0,0,0,0,946.57623 +14615,17857,31830,-9,31826,31825,1,1,25,0,1,0,1,1,-9,0,5,7.4020247,6.8686838,0,0,0,-1111.075,0,3,3,2021,5,0,15,10,1,0,1,13.133244,13.133244,.05,.05,0,0,0,0,0,27,1,1,0,0,0,48.87,53.15,-9,-9,10,2,3,0,0,3,8,3,0,136,20829.445,-5034.98,0,0,0,0,1345.6014 +14616,17858,31831,31833,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,8.6656227,8.7844315,0,7,-15,81.918907,0,2,3,2021,19,7,48,54,1,7,0,17.221346,17.221346,0,0,0,0,0,0,0,0,1,1,0,0,0,40.61,64.02,57.06,57.76,3.333333333333333,1,1,0,1,9,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31832,-9,31831,31833,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.15094,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31833,31831,-9,-9,1,1,56,1,2,0,2,2,-9,0,5,6.4645014,6.7661915,0,7,15,-5.1088963,0,2,-9,2021,6,0,30,25,1,0,0,2.9233105,2.9233105,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,40.61,64.02,8.333333333333334,4,2,0,0,8,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31834,-9,31831,31833,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.24518,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14617,17859,31835,31837,-9,-9,1,1,38,1,1,0,1,1,-9,0,5,8.9299994,8.8184834,0,6,5,-49.980751,0,-9,-9,2021,9,0,37,42,1,0,0,21.635372,21.635372,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,48.77,60.16,8.333333333333334,1,1,0,0,8,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14617,17859,31836,-9,31837,31835,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.19446,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14617,17859,31837,31835,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.5035505,9.1415644,0,6,-5,-99.90844,0,2,2,2021,10,0,52,52,1,0,0,14.513176,14.513176,0,0,0,0,0,0,0,0,1,1,0,1.9271357,0,48.77,60.16,48.18,61.8,8.333333333333334,1,1,0,0,8,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14618,17860,31838,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.6660976,8.6333637,0,0,0,-1030.2061,0,-9,-9,2021,10,0,38,38,1,0,0,23.497168,23.497168,.05,.05,0,0,0,0,0,0,1,1,0,5.465755,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1097,96734.984,96472.602,0,0,0,0,1573.2156 +14619,17861,31839,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.3125,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,1713,9540.1221,-36023.617,58144.934,20672.025,8412.21,354.93036,-131.33479 +14620,17862,31840,31841,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,7.6088343,7.435432,0,5,-2,-131.46455,0,-9,-9,2021,25,9,31,32,1,9,0,8.4585524,8.4585524,0,0,0,0,0,0,0,0,1,1,0,0,0,39.99,24.96,57.06,57.76,3.333333333333333,1,1,0,0,11,10,3,1,206.5,338441.69,181259.97,172409.47,0,7168.5708,0,1293.4172 +14620,17862,31841,31840,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,6.252914,6.4694586,0,5,2,12.792291,0,2,2,2021,7,0,45,50,1,0,0,1.3988527,1.3988527,.05,.05,0,0,0,0,0,0,1,1,0,1.6464959,0,57.06,57.76,39.99,24.96,8.333333333333334,1,1,0,0,9,10,3,1,206.5,338441.69,181259.97,172409.47,0,7168.5708,0,1293.4172 +14621,17863,31842,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.1973829,5.0221772,0,0,-984.4198,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1561242,4.9966421,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,161,220559.28,0,98935.313,0,0,0,604.37311 +14622,17864,31843,31844,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.6726432,6.3323526,49,7,-26.045219,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6027479,61.78,37.78,60.04,36.97,8.333333333333334,1,1,0,0,0,7,2,1,1419,460592.5,258821,268059.5,0,0,0,1347.3417 +14622,17864,31844,31843,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.518259,6.5970955,49,-7,-7.6281304,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6352205,5.9861774,60.04,36.97,61.78,37.78,8.333333333333334,1,1,0,0,4,7,2,1,1419,460592.5,258821,268059.5,0,0,0,1347.3417 +14622,17865,31845,-9,31844,31843,1,1,35,0,0,0,2,2,-9,0,3,7.9938469,7.8798242,0,0,0,-1026.1229,0,1,2,2021,11,0,37,40,1,0,0,8.2450924,8.2450924,0,0,0,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,9,7,4,1,3449,137052.69,0,0,0,0,0,1177.3372 +14623,17866,31846,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.75183,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,407,451133.56,0,282637.22,0,0,0,1246.1538 +14624,17867,31847,31848,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.3689833,8.6149187,0,3,-3,88.649918,0,2,2,2021,11,0,25,40,1,2,0,17.335241,17.335241,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.06,58.64,10,1,1,0,0,6,9,5,1,688.5,2881544.5,630772.81,557264.25,0,0,0,4392.5879 +14624,17867,31848,31847,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.707078,9.0832338,0,3,3,-131.53528,0,2,2,2021,12,0,50,60,1,0,0,12.842508,12.842508,.05,.05,0,0,0,0,0,0,0,0,0,7.7429929,0,49.06,58.64,54.2,57.49,6.666666666666667,1,1,0,0,9,9,5,1,688.5,2881544.5,630772.81,557264.25,0,0,0,4392.5879 +14625,17868,31849,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,7.8592806,8.3198643,0,7,-8,63.323246,0,2,3,2021,13,1,40,0,1,1,0,9.5766916,9.5766916,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.19,58.01,29.19,19.44,8.333333333333334,1,1,0,1,7,13,3,0,724,-100617.47,-61651.402,0,0,0,0,1487.0856 +14625,17869,31850,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,7,8,13.084919,0,-9,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,44.19,58.01,0,1,1,0,0,2,13,3,0,334,96685.352,0,0,0,2758.2314,0,419.79126 +14625,17870,31851,-9,31850,-9,1,1,21,0,0,0,2,2,-9,0,3,7.421504,7.8437157,0,0,0,-1027.3784,0,2,-9,2021,12,2,42,36,1,2,1,4.818047,4.818047,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,1,13,3,0,785,-217784.03,0,0,0,0,0,850.16833 +14626,17871,31852,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.4742851,8.2250919,0,0,0,-908.63947,0,1,1,2021,7,0,42,42,1,0,0,10.051025,10.051025,0,0,0,0,0,0,0,0,0,0,0,4.3720107,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1016,0,0,0,0,0,0,2693.6001 +14627,17872,31853,31854,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.3251753,7.17869,6,6,28.650196,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9952064,7.5593491,48.36,52.17,42.28,50.79,8.333333333333334,1,1,0,0,0,13,3,1,369.5,1619396,461528.19,1042981.3,0,0,0,2985.5735 +14627,17872,31854,31853,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.4968624,7.2625575,6,-6,-.67946857,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5975904,7.1879749,42.28,50.79,48.36,52.17,8.333333333333334,1,1,0,0,0,13,3,1,369.5,1619396,461528.19,1042981.3,0,0,0,2985.5735 +14628,17873,31855,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.6896625,7.9046326,0,0,0,-967.68402,0,3,2,2021,12,0,27,28,1,0,0,12.756835,12.756835,0,0,0,0,0,0,0,2,0,0,0,4.5761704,0,49.34,58.54,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,7274,607237,0,325893.84,0,0,0,1043.9406 +14629,17874,31856,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1007.9175,0,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.59,29.04,-9,-9,0,1,1,0,0,0,1,1,0,153,70255.234,130055.3,0,0,0,0,898.0155 +14630,17875,31857,-9,31859,31858,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.64508,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31858,31859,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,9.310813,9.4156046,0,16,8,31.261021,0,-9,-9,2021,8,0,50,50,1,0,0,23.241974,23.241974,.05,.05,0,0,0,0,0,0,0,0,0,6.9989085,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31859,31858,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.228796,8.0620975,0,16,-8,34.51152,0,3,-9,2021,6,0,26,33,1,0,0,12.321507,12.321507,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.37,54.8,8.333333333333334,4,2,0,0,4,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31860,-9,31859,31858,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.05286,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14631,17876,31861,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9009328,7.1636152,0,0,-1006.8129,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.038938,7.2726326,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,528,1106524,950568.75,75518.461,0,0,0,1112.0032 +14632,17877,31862,31864,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.8306351,8.6998959,0,25,-5,61.298779,0,3,3,2021,10,0,45,45,1,0,0,15.716576,15.716576,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,57.75,46.08,57.2,10,1,1,0,0,12,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14632,17877,31863,-9,31862,31864,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.40906,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14632,17877,31864,31862,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.1495275,8.0253439,0,25,5,12.197324,0,-9,-9,2021,11,0,60,60,1,0,0,7.926703,7.926703,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,47.52,57.75,5,1,1,0,0,12,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14633,17878,31865,-9,31866,31867,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1032.1708,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31866,31867,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,36,-7,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,54,51,49,8,2,3,0,1,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31867,31866,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,7,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51,54,7,2,3,0,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31868,-9,31866,31867,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.82593,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17879,31869,-9,31866,31867,1,0,28,0,1,0,2,2,-9,0,5,0,0,0,0,0,-990.79663,0,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.72,45.62,-9,-9,8.333333333333334,2,3,1,1,0,4,1,0,851,258.14667,0,0,0,0,0,759.70459 +14633,17880,31870,-9,31866,31867,1,0,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-943.33478,0,3,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.09,61.58,-9,-9,5,2,3,1,1,0,4,1,0,331,-100912.52,0,94279.367,84396.156,0,0,-192.70801 +14633,17881,31871,-9,31866,31867,1,0,26,0,1,0,2,2,-9,0,3,7.6618161,7.2942219,0,0,0,-1090.1259,0,3,2,2021,12,1,38,50,1,1,1,6.4429359,6.4429359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,4,3,0,271,109006.31,-47756.078,0,0,0,0,761.77319 +14634,17882,31872,31874,-9,-9,1,1,24,0,1,0,3,3,-9,0,5,7.7957382,7.4042687,0,4,-6,18.764351,0,-9,-9,2021,6,0,39,30,1,0,0,5.7174234,5.7174234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44,52,10,1,1,0,0,2,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14634,17882,31873,-9,31874,31872,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.75348,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14634,17882,31874,31872,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.4471354,6.4900913,0,4,6,1.5359567,0,3,3,2021,7,0,10,0,1,0,0,7.3464127,7.3464127,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,62.39,56.71,6.666666666666667,1,1,0,0,6,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14635,17883,31875,31876,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,7.4131217,7.886972,5.8473883,50,1,-146.15002,0,3,3,2021,8,0,40,40,1,0,0,5.8220453,5.8220453,.05,.05,0,0,0,0,0,7,1,1,0,4.7370496,6.4269528,59.73,42.63,33.07,41.95,5,1,1,0,0,7,9,3,0,1645,754237.31,408455.38,325399.47,0,0,0,2449.0796 +14635,17883,31876,31875,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.6243415,5.6013227,50,-1,47.528099,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2920938,33.07,41.95,59.73,42.63,3.333333333333333,1,1,0,0,6,9,3,0,1645,754237.31,408455.38,325399.47,0,0,0,2449.0796 +14636,17884,31877,31878,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.6537647,8.600481,0,11,-3,-43.380436,0,3,3,2021,11,2,30,37,1,2,0,14.830881,14.830881,0,0,0,0,0,0,0,0,0,0,0,3.0989709,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,548,466728.06,193314.47,150070.97,75320.344,0,0,2861.8325 +14636,17884,31878,31877,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.9945564,8.0715523,0,11,3,-23.515163,0,3,3,2021,10,0,40,40,1,0,0,11.032443,11.032443,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,13,5,1,548,466728.06,193314.47,150070.97,75320.344,0,0,2861.8325 +14637,17885,31879,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6314325,7.7907906,0,0,-1007.1614,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6121497,7.6419234,44.33,41.95,-9,-9,6.666666666666667,1,1,0,0,13,9,3,1,2073,927400.69,0,830185.38,0,0,0,389.3064 +14637,17886,31880,-9,31879,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3137274,8.1903906,0,0,0,-949.31854,-9,1,-9,2021,19,7,35,0,1,7,0,13.760112,13.760112,0,0,0,0,0,0,0,0,0,0,0,0,0,35.37,53.86,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,402,55814.496,0,0,0,0,0,1937.7074 +14638,17887,31881,31882,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.9427643,9.1859608,5.5784626,20,-8,65.224434,0,2,2,2021,7,0,83,47,1,0,0,12.505777,12.505777,.05,.05,0,0,0,0,0,0,0,0,0,5.4809117,0,47.49,55.02,49,50,8.333333333333334,1,1,0,0,10,2,5,1,1570,418424.75,500524.44,203940.23,145664.66,2415.719,336.64691,5010.7822 +14638,17887,31882,31881,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7662029,8.9108019,0,20,8,52.273079,0,2,2,2021,12,0,37,35,1,0,0,17.11747,17.11747,.05,.05,0,0,0,0,0,0,0,0,0,3.3250585,0,49,50,47.49,55.02,5,1,1,0,0,12,2,5,1,1570,418424.75,500524.44,203940.23,145664.66,2415.719,336.64691,5010.7822 +14639,17888,31883,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1041.3912,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1854,103647.09,0,0,0,0,0,496.30115 +14639,17889,31884,-9,31883,-9,1,0,42,0,0,0,2,2,-9,0,3,7.4435763,7.4244847,0,0,0,-941.76666,0,3,-9,2021,8,0,12,12,1,0,0,13.156523,13.156523,0,0,0,0,0,0,0,0,1,0,1,0,0,57.09,46.7,-9,-9,5,1,1,0,1,7,7,3,0,237,9079.1963,122618.57,0,0,-1022.5488,0,1087.4049 +14640,17890,31885,-9,31888,31886,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-983.43304,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31886,31888,-9,-9,1,1,50,2,2,0,2,2,-9,0,3,8.7482882,9.1000004,6.7509217,9,14,129.56473,0,2,2,2021,8,1,39,40,1,1,0,23.96664,23.96664,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3139472,55.36,51.57,43.15,45.27,8.333333333333334,1,1,0,0,11,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31887,-9,31888,31886,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.0802,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31888,31886,-9,-9,1,0,36,2,2,0,1,1,-9,0,4,0,0,0,9,-14,17.479078,0,-9,-9,2021,12,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,45.27,55.36,51.57,8.333333333333334,1,1,0,0,6,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14641,17891,31889,-9,31890,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.6014,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,847,-79110.023,0,0,0,0,0,784.39966 +14641,17891,31890,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,0,0,-868.04352,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.56,52.97,-9,-9,1.666666666666667,1,1,1,0,0,11,1,0,847,-79110.023,0,0,0,0,0,784.39966 +14642,17892,31891,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.7089491,6.7287617,0,0,-947.36859,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,38.855637,0,0,1,1,0,0,6.6793799,45.43,14.88,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,500,43397.625,76696.336,99042.656,0,0,0,1577.623 +14643,17893,31892,31893,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.3808422,9.2636967,0,26,1,-23.541918,0,2,1,2021,11,1,48,56,1,1,0,25.417662,25.417662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.22,49.35,58.32,50.22,10,1,1,0,0,9,13,5,1,582,1097297,1099948.5,132776.75,83848.375,2400.8921,381.76669,7689.126 +14643,17893,31893,31892,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.5282917,9.4297295,0,26,-1,-161.1566,0,1,2,2021,8,0,45,54,1,0,0,38.551922,38.551922,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.22,49.35,8.333333333333334,1,1,0,0,9,13,5,1,582,1097297,1099948.5,132776.75,83848.375,2400.8921,381.76669,7689.126 +14643,17894,31894,-9,31892,31893,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.3816,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.01,58.07,-9,-9,10,1,1,0,0,0,13,1,1,993,181676.77,67244.352,0,0,0,0,0 +14644,17895,31895,31896,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.704237,9.2069912,8.0904732,37,3,34.361263,0,2,3,2021,8,0,43,40,1,0,0,14.339712,14.339712,.05,.05,0,0,0,0,0,0,0,0,0,0,8.0141363,44.17,49.99,51.41,56.15,5,1,1,0,0,15,9,5,1,634.5,13393044,4532969.5,2259953.5,0,5148.2202,0,3979.2144 +14644,17895,31896,31895,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.8602171,7.7103901,35,-3,-21.386732,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1744487,7.5168204,51.41,56.15,44.17,49.99,8.333333333333334,1,1,0,0,15,9,5,1,634.5,13393044,4532969.5,2259953.5,0,5148.2202,0,3979.2144 +14645,17896,31897,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.8239207,6.6953044,0,0,-903.63855,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,3.4363348,6.8301377,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,2,1,585,386349.44,220521.58,194417.47,0,6375.7642,0,1417.9701 +14646,17897,31898,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.715704,8.3516531,0,0,0,-953.38342,0,1,1,2021,8,0,35,39,1,0,0,19.859804,19.859804,.05,.05,0,0,0,0,0,0,1,1,0,1.9022732,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,247,-33797.777,-101957.14,0,0,0,0,1646.1539 +14647,17898,31899,31900,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3419981,8.100316,0,31,4,-55.543556,0,2,2,2021,6,0,38,38,1,0,0,11.517572,11.517572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,62.39,56.71,8.333333333333334,1,1,0,0,9,4,4,1,4583,331907.06,147749.88,157296.02,61498.039,10101.256,0,2758.894 +14647,17898,31900,31899,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.4996161,7.4598165,0,31,-4,17.531315,0,2,2,2021,6,0,30,30,1,0,0,7.2305613,7.2305613,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.96,53.17,8.333333333333334,1,1,0,0,10,4,4,1,4583,331907.06,147749.88,157296.02,61498.039,10101.256,0,2758.894 +14648,17899,31901,31902,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,9.3589249,9.3858185,10,2,99.118866,0,-9,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6792254,9.2230778,60.93,36.01,60.12,54.8,8.333333333333334,1,1,0,0,13,2,5,1,1274,1728119.5,1395932.5,207549.06,0,0,0,6406.5854 +14648,17899,31902,31901,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.8130064,7.7394896,10,-2,-4.6857414,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4996257,7.7410936,60.12,54.8,60.93,36.01,10,1,1,0,0,7,2,5,1,1274,1728119.5,1395932.5,207549.06,0,0,0,6406.5854 +14649,17900,31903,31904,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.0040464,7.3386598,7,-3,34.695839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,25.43795,0,0,1,1,0,5.7427325,7.0916653,38.75,19.09,58.77,35.36,8.333333333333334,1,1,0,0,0,4,3,1,336,721476.63,337518.94,156772.69,0,0,0,3810.2397 +14649,17900,31904,31903,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.5607224,6.2355828,7,3,15.960437,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.5329838,6.3053303,58.77,35.36,38.75,19.09,8.333333333333334,1,1,0,0,0,4,3,1,336,721476.63,337518.94,156772.69,0,0,0,3810.2397 +14650,17901,31905,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6741724,8.6551237,0,0,0,-943.12738,0,2,2,2021,10,1,37,0,1,1,0,21.908751,21.908751,.05,.05,0,0,0,0,0,0,0,0,0,3.7193437,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,2265,480973.34,297275.63,235346.08,0,47791.441,0,1723.5319 +14651,17902,31906,-9,31909,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.28479,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31907,-9,31909,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-953.58063,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31908,-9,31909,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.9313,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31909,-9,-9,-9,1,0,47,0,3,0,2,2,-9,1,2,0,7.8126292,7.6437397,0,0,-972.29303,0,2,3,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8105659,43.05,32.08,-9,-9,3.333333333333333,1,1,0,0,12,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14652,17903,31910,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3057594,8.3544283,0,0,0,-1027.9816,-9,2,2,2021,12,0,45,0,1,0,0,9.6730843,9.6730843,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,7,10,4,1,1113,-18105.816,81931.75,0,0,0,0,1967.4823 +14652,17904,31911,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.6236124,8.7114744,0,0,0,-1054.1685,-9,-9,-9,2021,22,8,45,0,1,8,0,15.78299,15.78299,.05,.05,0,0,0,0,0,0,0,0,0,4.1087036,0,23.89,59.55,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,249,271959.59,14740.681,0,0,2589.4727,0,2270.2163 +14653,17905,31912,31913,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.0871067,8.1011782,5.0795088,28,-3,-57.863594,0,3,3,2021,9,0,42,48,1,0,0,9.255558,9.255558,.05,.05,0,0,0,0,0,14.5,1,1,0,5.1820879,5.1729283,58.16,55.87,23.86,20.5,8.333333333333334,1,1,0,0,8,5,3,1,985.5,288314.91,217672.09,0,0,0,0,1823.6296 +14653,17905,31913,31912,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,28,3,-93.442734,0,3,3,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,58.16,55.87,6.666666666666667,1,1,0,0,0,5,3,1,985.5,288314.91,217672.09,0,0,0,0,1823.6296 +14654,17906,31914,31915,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4136801,8.3899584,0,6,1,-7.8008294,0,2,2,2021,6,0,45,38,1,0,0,15.404573,15.404573,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.8,56.68,8.333333333333334,1,1,0,0,5,7,5,1,1175.5,-59964.922,-20540.621,156420.59,177323.63,0,0,3885.7473 +14654,17906,31915,31914,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.5390148,8.2595758,0,6,-1,-143.48047,0,-9,-9,2021,6,0,38,51,1,0,0,13.465971,13.465971,.05,.05,0,0,0,0,0,0,0,0,0,2.8388224,0,49.8,56.68,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,1175.5,-59964.922,-20540.621,156420.59,177323.63,0,0,3885.7473 +14655,17907,31916,31917,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.4787607,8.4106731,0,1,5,5.305737,-9,-9,-9,2021,7,0,54,0,1,0,0,9.8434982,9.8434982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.1,45.09,49.27,56.95,8.333333333333334,1,1,0,0,1,12,5,1,175,55573.086,119124.03,113314.66,74161.375,5678.1455,0,2967.8853 +14655,17907,31917,31916,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.3390169,8.2632246,0,1,-5,-80.428604,-9,2,2,2021,7,0,40,0,1,0,0,9.1167669,9.1167669,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.27,56.95,63.1,45.09,8.333333333333334,1,1,0,0,8,12,5,1,175,55573.086,119124.03,113314.66,74161.375,5678.1455,0,2967.8853 +14655,17908,31918,-9,31917,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7247005,7.678483,0,0,0,-1166.853,-9,2,-9,2021,8,0,40,0,1,0,1,7.0970764,7.0970764,0,0,0,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,844,33376.133,0,0,0,0,0,989.61743 +14655,17909,31919,-9,31917,-9,1,1,19,0,0,0,2,2,-9,0,4,7.8279991,7.8005037,0,0,0,-1011.1581,-9,2,-9,2021,7,0,35,0,1,0,1,8.84307,8.84307,0,0,0,0,0,0,0,0,0,0,0,2.134542,0,58.55,46.11,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,373,85088.586,0,0,0,0,0,2161.5938 +14656,17910,31920,31921,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,7.6309543,7.4877501,6.0637121,54,-7,-183.32053,0,3,3,2021,7,0,48,15,1,0,0,5.6800108,5.6800108,0,0,0,1,3.3418996,0,16.556644,0,1,1,0,8.2609615,6.178154,53.38,52.51,50.65,53.71,8.333333333333334,1,1,0,0,9,4,3,1,5615.5,772074.69,271552.59,285933.69,0,0,0,3489.3899 +14656,17910,31921,31920,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.033741,7.1390634,54,7,4.3962402,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2232513,7.2631316,50.65,53.71,53.38,52.51,8.333333333333334,1,1,0,0,9,4,3,1,5615.5,772074.69,271552.59,285933.69,0,0,0,3489.3899 +14657,17911,31922,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.44593,7.7357664,0,0,-1054.2302,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0761819,7.5221815,41.3,45.64,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,401,577373.63,212389,255940.23,0,0,0,2210.8286 +14658,17912,31923,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.2923355,4.205863,0,0,-1102.3165,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5439506,4.0578074,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,1784,32374.518,0,178200.45,0,0,0,1903.196 +14659,17913,31924,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.6363621,7.5288372,0,0,0,-984.34625,0,2,2,2021,9,0,45,45,1,0,0,5.5983911,5.5983911,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,3,4,0,0,6,8,3,0,1006,-20067.869,0,0,0,0,0,476.05255 +14660,17914,31925,-9,31927,31928,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.95776,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31926,-9,31927,31928,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.9471,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31927,31928,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8247614,7.8220854,0,11,-3,-25.686159,0,-9,2,2021,11,0,25,26,1,0,0,9.4908037,9.4908037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,46.63,59.72,8.333333333333334,1,1,0,0,13,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31928,31927,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8027945,8.8956423,0,11,3,-17.254749,0,2,2,2021,11,0,38,40,1,0,0,15.862154,15.862154,.05,.05,.05,0,0,0,0,0,1,1,0,1.6829008,0,46.63,59.72,46.39,60.99,8.333333333333334,1,1,0,0,13,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14661,17915,31929,-9,31931,31933,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1048.2432,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31930,-9,31931,31933,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1063.1926,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31931,31933,-9,-9,1,0,32,1,4,0,2,2,-9,1,4,6.8339987,6.9037895,0,7,-13,-42.01656,0,2,2,2021,7,0,16,16,1,0,0,6.7648916,6.7648916,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,52.23,55.6,8.333333333333334,1,1,0,0,9,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31932,-9,31931,31933,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-925.8877,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31933,31931,-9,-9,1,1,45,1,4,0,2,2,-9,0,4,7.7767129,7.946485,0,7,13,19.575603,0,2,-9,2021,11,0,38,38,1,0,0,8.9287167,8.9287167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.73,54.53,8.333333333333334,1,1,0,0,8,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14662,17916,31934,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.4613543,8.4580784,0,0,0,-878.66724,-9,2,2,2021,13,2,37,0,1,2,0,15.911785,15.911785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,1.666666666666667,1,1,0,0,8,8,4,0,683,570147.63,170587.47,233818.17,0,3434.99,0,1331.6167 +14663,17917,31935,31936,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.6843729,5.4337749,11,-3,103.09428,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7893867,46.45,50.13,42.71,32.91,6.666666666666667,1,1,0,0,0,12,2,1,166.5,-27347.594,0,0,0,0,0,1500.6044 +14663,17917,31936,31935,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,11,3,24.299427,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.71,32.91,46.45,50.13,5,1,1,0,0,7,12,2,1,166.5,-27347.594,0,0,0,0,0,1500.6044 +14664,17918,31937,31939,-9,-9,1,1,59,0,1,0,2,2,-9,1,3,0,2.7154438,2.4156551,13,14,66.587021,0,-9,-9,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,2.4309187,29.13,25.53,48.35,46.53,5,1,1,0,0,0,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14664,17918,31938,-9,31939,31937,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05267,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14664,17918,31939,31937,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.4249535,8.3717594,0,14,-14,29.86595,0,2,2,2021,15,4,37,41,1,4,0,12.762673,12.762673,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.35,46.53,29.13,25.53,6.666666666666667,1,1,0,0,8,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14665,17919,31940,-9,31942,31941,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0995,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31941,31942,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4127893,8.4749765,0,16,0,7.7954116,0,2,3,2021,11,0,35,37,1,0,0,17.197668,17.197668,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31942,31941,-9,-9,1,0,41,0,2,0,1,1,-9,1,5,7.7252278,7.4104385,0,20,0,-22.130657,0,1,3,2021,6,0,15,14,1,0,0,16.719824,16.719824,.05,.05,0,0,0,0,0,2,1,1,0,5.8441653,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31943,-9,31942,31941,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.66986,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14666,17920,31944,31945,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,8,1,42.501709,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.54852629,0,52.41,42.18,35.39,35.11,10,1,1,0,0,0,1,2,1,1298.5,550901.38,274620.5,129885.19,0,0,0,1692.2877 +14666,17920,31945,31944,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.9772024,7.081275,8,-1,43.02293,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3460788,6.9308701,35.39,35.11,52.41,42.18,3.333333333333333,1,1,0,0,0,1,2,1,1298.5,550901.38,274620.5,129885.19,0,0,0,1692.2877 +14667,17921,31946,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.86823,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,8.130000000000001,41.39,-9,-9,0,1,1,0,0,8,12,1,0,761,7739.7139,0,0,0,2383.3054,0,1344.2026 +14668,17922,31947,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6482472,7.7770395,0,0,0,-933.18231,0,3,3,2021,9,1,10,40,1,1,0,28.859842,28.859842,0,0,0,0,0,0,0,0,1,1,0,6.0861659,0,49.66,55.68,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,1334,-11862.649,0,40232.996,0,0,160.18065,1120.3253 +14669,17923,31948,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.2517,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3883543,0,53.23,42.9,-9,-9,5,1,1,0,0,12,7,1,1,1087,-44190.23,0,0,0,0,0,-387.27335 +14670,17924,31949,31950,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6172862,8.0234528,0,9,0,-27.223845,0,2,2,2021,11,0,25,35,1,0,0,11.281351,11.281351,0,0,0,0,0,0,0,0,1,1,0,0,0,52.09,39.82,50,49,1.666666666666667,1,1,0,0,9,7,3,0,544,678753.31,0,606836.25,0,0,0,2452.8564 +14670,17924,31950,31949,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,6.4503884,6.5980344,0,9,9,-130.57764,-9,-9,-9,2021,10,0,40,0,1,1,0,2.1161585,2.1161585,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,52.09,39.82,7,4,1,0,0,1,7,3,0,544,678753.31,0,606836.25,0,0,0,2452.8564 +14671,17925,31951,31952,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.5506392,8.5046511,0,10,-3,-14.872809,0,-9,2,2021,15,3,45,45,1,3,0,16.760941,16.760941,.05,.05,0,0,0,0,0,0,0,0,0,1.9109266,0,39.37,50.78,52.23,30.07,6.666666666666667,1,1,0,0,13,10,5,1,655,1729609.8,1306890,223582.95,0,39722.578,130.5433,4384.1401 +14671,17925,31952,31951,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.7628422,8.9387035,0,10,3,95.09845,0,3,2,2021,15,3,35,35,1,3,0,21.888348,21.888348,.05,.05,0,0,0,0,0,0,0,0,0,.61284608,0,52.23,30.07,39.37,50.78,8.333333333333334,1,1,0,0,13,10,5,1,655,1729609.8,1306890,223582.95,0,39722.578,130.5433,4384.1401 +14672,17926,31953,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1094.4327,0,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.98,27.16,-9,-9,5,1,1,0,1,0,13,1,0,820,106281.75,0,0,0,0,0,1343.7015 +14672,17927,31954,-9,31953,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-890.86493,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,2319,201700.7,0,0,0,0,0,0 +14673,17928,31955,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,6.9210639,7.2765708,5.2301321,0,0,-1017.4708,-9,3,3,2021,11,0,16,0,1,2,0,8.9976492,8.9976492,0,0,.05,0,0,0,0,0,1,1,0,0,5.2689462,50,47,-9,-9,6.666666666666667,2,3,0,0,8,5,2,1,965,585491.19,129672.95,171911.56,0,0,0,-108.97444 +14674,17929,31956,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6034822,7.5244794,0,0,-948.18896,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2049332,7.9001975,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,902,345156.59,244553.73,-19474.115,0,0,0,2154.2698 +14675,17930,31957,31958,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.4989238,7.2736025,59,1,70.88797,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2320385,7.3029075,58.29,37.01,53,45,8.333333333333334,1,1,0,0,0,2,2,1,2717,1030960,331979,337136.72,0,0,0,1572.7295 +14675,17930,31958,31957,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,4,-1,-30.292171,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4896464,0,53,45,58.29,37.01,8,1,1,0,0,0,2,2,1,2717,1030960,331979,337136.72,0,0,0,1572.7295 +14676,17931,31959,31960,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,39.74,41.69,7,2,3,0,1,0,6,1,1,1865.5,163303.47,0,49748.789,0,0,0,1255.9744 +14676,17931,31960,31959,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,41.69,50,47,6.666666666666667,2,3,0,1,0,6,1,1,1865.5,163303.47,0,49748.789,0,0,0,1255.9744 +14677,17932,31961,-9,31962,31963,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.65686,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14677,17932,31962,31963,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,8.1820145,8.3638535,0,6,5,54.69352,0,-9,-9,2021,11,0,51,39,1,0,0,11.918857,11.918857,0,0,0,0,0,0,0,0,1,1,0,2.8079779,0,50.01,55.66,31.16,51.92,8.333333333333334,1,1,0,0,8,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14677,17932,31963,31962,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,0,0,0,6,-5,36.116798,0,3,3,2021,18,6,0,43,3,6,0,0,0,.05,.05,.05,0,0,0,0,2,1,1,0,9.7688522,0,31.16,51.92,50.01,55.66,6.666666666666667,3,4,1,0,5,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14678,17933,31964,-9,-9,-9,1,0,35,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1158.2037,0,2,-9,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.37,46.82,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,2598.5,52177.926,0,0,0,0,0,1162.9495 +14678,17933,31965,-9,31964,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.6313,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,2598.5,52177.926,0,0,0,0,0,1162.9495 +14679,17934,31966,-9,31970,31969,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1166.8754,1,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.04,67.13,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,609,0,0,0,0,0,0,-392.69113 +14679,17935,31967,-9,31970,31969,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-961.60266,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.25,64.48999999999999,-9,-9,8.333333333333334,4,2,0,1,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31968,-9,31970,31969,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.6272,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31969,31970,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.023098,8.1702747,0,7,1,-103.41433,0,-9,-9,2021,17,5,24,40,1,5,0,12.725295,12.725295,.05,.05,0,0,0,0,0,2,1,0,1,0,0,26.98,52.69,44.42,59.09,3.333333333333333,1,1,0,1,12,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31970,31969,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,7,-1,-45.658463,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,44.42,59.09,26.98,52.69,6.666666666666667,3,4,1,0,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14680,17936,31971,-9,31974,31975,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.6663,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31972,-9,31974,31975,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.00812,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31973,-9,31974,31975,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.8797,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31974,31975,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.8580427,7.8163581,0,10,-3,.67227107,0,-9,-9,2021,13,3,21,21,1,3,0,16.864073,16.864073,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,8.333333333333334,1,1,0,1,11,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31975,31974,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.9175482,8.5265169,0,10,3,-28.799435,0,2,2,2021,12,2,35,55,1,2,0,28.531498,28.531498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.95,61.24,6.666666666666667,1,1,0,1,11,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14681,17937,31976,31977,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2771397,8.2094517,0,5,-5,-55.350422,0,-9,-9,2021,11,0,35,37,1,0,0,15.366055,15.366055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,23.51,55.4,8.333333333333334,1,1,0,0,7,9,5,1,481.5,2606266,1485768.3,618337.75,0,0,0,4988.9502 +14681,17937,31977,31976,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.494153,8.6716251,0,5,5,-29.066595,0,3,3,2021,19,7,59,48,1,7,0,8.5966625,8.5966625,.05,.05,0,0,0,0,0,0,0,0,0,8.5627632,0,23.51,55.4,54.96,53.17,3.333333333333333,1,1,0,0,11,9,5,1,481.5,2606266,1485768.3,618337.75,0,0,0,4988.9502 +14681,17938,31978,-9,31976,31977,1,0,22,0,0,1,2,0,0,0,4,0,6.1710229,6.4075837,0,0,-1084.6693,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4303164,0,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,998,279801.28,56825.688,0,0,0,0,1426.5439 +14682,17939,31979,-9,31982,31980,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.30365,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31980,31982,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.697154,8.7973146,5.7509546,25,0,-36.68055,0,1,3,2021,7,0,40,40,1,0,0,19.761147,19.761147,0,0,0,0,0,0,0,0,1,1,0,6.1219463,0,42.46,41.62,51.56,50.61,6.666666666666667,1,1,0,0,13,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31981,-9,31982,31980,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.7049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31982,31980,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.9328642,7.4751453,0,25,0,1.9405029,0,2,1,2021,12,0,28,28,1,0,0,11.411725,11.411725,0,0,0,0,0,0,0,0,1,1,0,0,0,51.56,50.61,42.46,41.62,6.666666666666667,1,1,0,0,13,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14683,17940,31983,-9,31984,-9,1,0,17,0,1,1,2,0,0,0,2,0,5.368546,5.5758982,0,0,-934.74396,-9,3,-9,2021,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7200036,0,7.76,59.2,-9,-9,0,1,1,0,1,0,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14683,17940,31984,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.2766423,7.5386019,6.0778561,0,0,-1039.4398,0,3,3,2021,10,1,23,23,1,1,0,7.1878891,7.1878891,.05,.05,0,0,0,0,0,0,1,1,0,6.2227216,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14683,17940,31985,-9,31984,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9985,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14684,17941,31986,31987,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.9517803,9.1151886,0,19,4,39.94276,0,2,2,2021,19,6,42,37,1,6,0,15.063988,15.063988,.05,.05,.05,0,0,0,0,0,1,1,0,6.5990663,0,40.32,53.3,49.31,48.84,3.333333333333333,1,1,0,0,14,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14684,17941,31987,31986,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.2294941,7.2823839,0,19,-4,144.48575,0,3,2,2021,18,6,23,23,1,6,0,9.3419361,9.3419361,.05,.05,0,0,0,0,0,0,1,1,0,5.0492916,0,49.31,48.84,40.32,53.3,6.666666666666667,1,1,0,0,7,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14684,17941,31988,-9,31987,31986,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.34326,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14685,17942,31989,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.6442413,7.7227087,6.9941335,0,0,-1037.9744,0,3,3,2021,5,0,20,38,1,0,0,10.285628,10.285628,.05,.05,0,0,0,0,0,14.5,1,1,0,4.7446747,6.5866585,59.04,54.12,-9,-9,10,1,1,0,0,9,1,4,1,649,137665,27574.07,109736.18,54180.227,0,0,1407.3181 +14686,17943,31990,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,7.9995909,7.9029016,0,0,0,-882.39771,-9,2,2,2021,11,0,38,0,1,0,0,9.6033859,9.6033859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.89,55.56,-9,-9,0,2,3,0,0,1,7,4,0,836,31842.811,-119070.96,0,0,0,0,2214.2146 +14687,17944,31991,31992,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-94.898659,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2042677,0,56.94,49.53,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,908,1013325.7,938398.25,174172.78,0,10899.399,0,3039.7495 +14687,17944,31992,31991,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2113829,8.601429,45,1,189.51099,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1881461,8.5269127,57.16,56.15,56.94,49.53,10,1,1,0,0,0,5,4,1,908,1013325.7,938398.25,174172.78,0,10899.399,0,3039.7495 +14687,17945,31993,-9,31991,31992,1,1,40,0,0,0,2,2,-9,0,4,6.8927312,7.2263265,0,0,0,-951.00592,0,2,2,2021,6,0,5,5,1,0,0,22.665812,22.665812,0,0,0,0,0,0,0,0,1,1,0,.48773086,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,673,-26017.348,-6600.5166,0,0,0,0,-187.45142 +14688,17946,31994,31995,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,28,-1,26.936842,0,2,3,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.36,18.88,59.49,23.03,0,1,1,0,0,3,10,3,0,642.5,339052.16,0,223587.38,0,0,0,2432.0923 +14688,17946,31995,31994,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,7.8140516,7.8741884,0,28,1,101.53201,0,-9,-9,2021,12,0,40,40,1,0,0,7.8081431,7.8081431,0,0,0,0,0,0,0,27,1,0,1,0,0,59.49,23.03,27.36,18.88,6.666666666666667,1,1,0,0,11,10,3,0,642.5,339052.16,0,223587.38,0,0,0,2432.0923 +14688,17947,31996,-9,31994,31995,1,1,33,0,0,0,2,2,-9,0,2,7.899878,7.9560513,0,0,0,-1064.6741,0,3,2,2021,11,3,38,38,1,3,1,7.9990387,7.9990387,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.09,51.96,-9,-9,1.666666666666667,1,1,0,1,14,10,4,0,341,224774.17,-117555.63,0,0,0,0,1752.9447 +14689,17948,31997,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.1544991,8.4220896,0,0,0,-927.78278,0,2,2,2021,11,1,46,37,1,1,0,8.6950331,8.6950331,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,13,7,4,1,165,11675.513,0,0,0,0,0,1686.7012 +14690,17949,31998,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1168.5433,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,47.3,-9,-9,8.333333333333334,3,4,1,1,4,6,2,0,370,-76195.039,0,0,0,2269.3083,548.15668,75.49855 +14690,17949,31999,-9,31998,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.73608,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,2,0,370,-76195.039,0,0,0,2269.3083,548.15668,75.49855 +14691,17950,32000,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.152523,7.5510139,0,0,-1136.261,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0193999,7.4290752,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,432,501668.47,311546.97,180537.05,0,0,0,1675.7368 +14692,17951,32001,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4231224,8.3000021,0,8,6,-11.449885,0,3,3,2021,9,1,37,37,1,1,0,17.445612,17.445612,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,54.91,49,50.05,55.41,8.333333333333334,1,1,0,0,9,12,5,1,118,775604.56,312784.47,282479.41,0,3107.7175,0,1671.4258 +14692,17952,32002,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7729063,8.4141636,0,8,-6,-39.075584,0,3,3,2021,14,4,48,85,1,4,0,14.539637,14.539637,.05,.05,0,0,0,0,0,2,0,0,0,0,0,50.05,55.41,54.91,49,8.333333333333334,1,1,0,0,9,12,5,1,887,88477.438,65262.512,157978.81,78814.945,0,0,2490.1724 +14693,17953,32003,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.258009,8.2270069,0,0,0,-967.42267,0,2,2,2021,17,5,50,40,1,5,0,9.2289286,9.2289286,0,0,0,0,0,0,0,0,0,0,0,2.3312197,0,24.03,57.05,-9,-9,5,1,1,0,0,7,7,4,1,2293,275756.34,32314.105,0,0,0,5118.4507,1340.5551 +14694,17954,32004,32005,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.021493,8.2864122,11,-6,35.769802,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1763487,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,4,13,4,1,292.5,1855021.1,871818.75,382705.25,0,0,0,4283.0137 +14694,17954,32005,32004,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1990328,7.9232674,11,6,-5.890357,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8635182,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,0,13,4,1,292.5,1855021.1,871818.75,382705.25,0,0,0,4283.0137 +14694,17955,32006,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-999.36328,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2912402,0,57.06,57.76,-9,-9,10,4,2,0,0,1,13,2,1,275,253424.86,0,0,0,0,0,297.60321 +14695,17956,32007,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.4180288,8.4266739,0,0,0,-1045.036,0,-9,-9,2021,8,0,55,55,1,0,0,8.5151339,8.5151339,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,15,10,4,1,598,-127367.03,-32277.279,0,0,800.96899,546.24792,1778.7026 +14696,17957,32008,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-991.63031,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,0,13,1,1,883,183326.42,0,0,0,0,93.597725,-91.964066 +14697,17958,32009,32010,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.4743137,4.60958,48,-2,6.7929945,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5070834,4.137814,48.28,60.18,61.12,51.57,10,1,1,0,0,0,1,2,1,1016.5,563876.13,488576.63,277702.88,0,3492.23,0,2018.4905 +14697,17958,32010,32009,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.0135193,7.3156266,48,2,-4.6306834,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1878963,7.2936082,61.12,51.57,48.28,60.18,8.333333333333334,1,1,0,0,5,1,2,1,1016.5,563876.13,488576.63,277702.88,0,3492.23,0,2018.4905 +14698,17959,32011,-9,32012,32013,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.38739,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14698,17959,32012,32013,-9,-9,1,0,32,0,3,0,3,3,-9,0,3,0,0,0,16,-12,-8.2169561,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,52,55,5,2,3,0,0,0,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14698,17959,32013,32012,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,6.4029055,6.6906724,0,7,12,-44.519989,-9,-9,-9,2021,9,0,40,0,1,1,0,2.1241672,2.1241672,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,41.34,56.62,8,2,3,0,0,1,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14699,17960,32014,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.49365,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,282,0,0,0,0,0,0,-217.26421 +14700,17961,32015,-9,32017,32016,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1043.6924,-9,1,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14700,17961,32016,32017,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3049145,8.5092449,0,17,0,-110.85129,0,3,-9,2021,12,0,40,45,1,0,0,8.8577375,8.8577375,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.48,54.33,6.666666666666667,1,1,0,0,13,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14700,17961,32017,32016,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5258827,8.5313139,0,17,0,117.51598,0,2,2,2021,11,0,34,34,1,0,0,21.896845,21.896845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,49.04,55.86,8.333333333333334,1,1,0,0,15,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14701,17962,32018,-9,32021,32020,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.3225,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32019,-9,32021,32020,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.097,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32020,32021,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,0,7.4228721,7.577878,14,4,19.685146,0,2,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.1611719,7.4802499,57.46,56.16,51.67,60.18,8.333333333333334,1,1,0,0,6,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32021,32020,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.6459627,8.7353125,0,15,-4,-31.888103,0,2,2,2021,9,2,34,23,1,2,0,22.631603,22.631603,0,0,0,0,0,0,0,0,0,0,0,4.7777138,0,51.67,60.18,57.46,56.16,8.333333333333334,1,1,0,0,9,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14702,17963,32022,32023,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0438271,7.9899001,0,8,4,-19.699217,0,2,2,2021,10,1,40,80,1,1,0,10.826903,10.826903,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,30.22,61.23,26.91,54.17,5,1,1,0,0,7,4,4,0,788.5,537812.56,439690.22,164923.06,38472.328,0,0,2062.022 +14702,17963,32023,32022,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.4133286,7.611052,0,8,-4,-.67364901,0,-9,-9,2021,14,3,21,35,1,3,0,8.6565514,8.6565514,0,0,0,0,0,0,0,0,1,1,0,0,0,26.91,54.17,30.22,61.23,6.666666666666667,1,1,0,0,5,4,4,0,788.5,537812.56,439690.22,164923.06,38472.328,0,0,2062.022 +14702,17964,32024,-9,32023,32022,1,0,23,0,0,0,2,2,-9,0,4,7.2730503,7.4079099,0,0,0,-1014.1642,0,2,2,2021,12,0,20,31,1,2,1,8.4185801,8.4185801,.05,.05,0,0,0,0,0,0,1,1,0,2.4331417,0,46,58,-9,-9,7,1,1,0,0,6,4,3,0,183,17025.199,-4694.8838,0,0,0,0,304.14111 +14702,17965,32025,-9,32023,32022,1,0,25,0,0,0,2,2,-9,0,5,7.3825588,7.4073443,0,0,0,-955.38916,0,2,2,2021,12,0,25,37,1,0,1,6.8462052,6.8462052,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,8,4,3,0,1075,29891.783,0,0,0,0,0,1239.7992 +14702,17966,32026,-9,32023,32022,1,1,21,0,0,0,2,2,1,0,4,7.9464159,7.8852172,0,0,0,-1102.9844,-9,2,2,2021,6,0,20,0,1,0,1,12.036342,12.036342,.05,.05,0,0,0,0,0,0,1,1,0,1.3654733,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,1,4,4,0,241,73593.883,46001.816,0,0,0,0,1593.3584 +14702,17967,32027,-9,32023,32022,1,1,18,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1134.4104,0,2,2,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8852683,0,29.38,48.1,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,543,-94721.594,0,0,0,0,0,294.08453 +14703,17968,32028,32029,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6118984,7.2067971,0,29,-6,-85.341293,0,-9,-9,2021,12,0,30,30,1,0,0,6.0076518,6.0076518,0,0,0,0,0,0,0,0,1,1,0,4.4592967,0,42.8,39.35,33.94,56.25,5,1,1,0,0,15,11,3,1,848.5,189107.47,43295.281,182296.41,0,0,0,1787.6406 +14703,17968,32029,32028,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,5.7651682,6.0675898,1,6,-189.79007,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,.68331128,5.8704123,33.94,56.25,42.8,39.35,5,1,1,0,0,5,11,3,1,848.5,189107.47,43295.281,182296.41,0,0,0,1787.6406 +14704,17969,32030,-9,32031,-9,1,0,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-847.75031,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,611.5,-30698.234,-1387.2852,0,0,0,0,2066.8523 +14704,17969,32031,-9,-9,-9,1,0,42,1,3,0,3,3,-9,0,3,7.2714825,7.5075388,0,0,0,-1088.2394,-9,-9,-9,2021,10,0,20,0,1,0,0,9.8422489,9.8422489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.22,56.12,-9,-9,5,3,4,0,0,7,8,2,0,611.5,-30698.234,-1387.2852,0,0,0,0,2066.8523 +14704,17970,32032,-9,32033,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.65131,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,5,0,2861,58461.938,-15318.152,0,0,0,0,1759.8125 +14704,17970,32033,-9,32031,-9,1,0,23,1,3,0,1,1,1,0,5,8.4176979,8.5760908,0,0,0,-851.32159,-9,3,-9,2021,13,4,42,0,1,4,1,11.612398,11.612398,.05,.05,0,0,0,0,0,0,1,1,0,.569121,0,46,61.6,-9,-9,5,3,4,0,0,7,8,5,0,2861,58461.938,-15318.152,0,0,0,0,1759.8125 +14704,17971,32034,-9,32031,-9,1,0,21,1,3,0,2,2,1,0,3,7.1665215,7.4318538,0,0,0,-1044.3927,-9,3,-9,2021,15,4,31,0,1,4,1,4.377388,4.377388,0,0,0,0,0,0,0,0,1,1,0,0,0,41,37.57,-9,-9,8.333333333333334,3,4,0,1,5,8,2,0,999,0,0,0,0,0,0,825.20129 +14704,17972,32035,-9,32031,-9,1,1,18,1,3,1,2,0,-9,0,5,0,0,0,0,0,-1043.5997,-9,3,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.54,59.33,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1371,62589.313,0,0,0,0,0,0 +14705,17973,32036,32038,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.7699461,7.7925,0,11,2,45.360821,0,2,2,2021,7,0,84,84,1,0,0,3.6140828,3.6140828,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.73,58.82,8.333333333333334,1,1,0,0,11,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32037,-9,32038,32036,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7556,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32038,32036,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.501811,8.0474052,0,11,-2,34.843094,0,2,2,2021,10,0,17,18,1,0,0,12.155718,12.155718,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.73,58.82,57.33,53.46,6.666666666666667,1,1,0,0,11,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32039,-9,32038,32036,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5493,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14706,17974,32040,32044,-9,-9,1,0,43,0,3,0,3,3,-9,0,4,0,0,0,27,2,-33.422211,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50,55,46.04,35.51,8,2,3,0,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32041,-9,32040,32044,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1015.299,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32042,-9,32040,32044,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.989,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32043,-9,32040,32044,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1025.5428,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32044,32040,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,7.802784,7.7488556,0,27,-2,-97.900932,0,3,3,2021,12,0,37,37,1,0,0,8.962203,8.962203,0,0,0,0,0,0,0,0,1,0,1,0,0,46.04,35.51,50,55,5,2,3,0,0,11,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17975,32045,-9,32040,32044,1,0,21,0,3,0,2,2,-9,0,5,8.0467606,7.8548903,0,0,0,-912.82635,0,3,2,2021,2,0,25,25,1,0,1,9.5955153,9.5955153,.05,.05,0,0,0,0,0,0,1,0,1,0,0,67.48,46.19,-9,-9,10,2,3,0,0,2,4,3,1,228,-110322.77,-47229.707,0,0,1893.0228,665.0282,796.84399 +14706,17976,32046,-9,32040,32044,1,0,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1099.5961,0,3,2,2021,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,10,2,3,1,1,0,4,2,1,655,17548.488,0,0,0,0,0,-164.9093 +14707,17977,32047,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1049881,8.287035,0,0,0,-915.15576,-9,2,2,2021,13,1,42,0,1,1,0,11.895714,11.895714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1988,84489.891,149759.77,79476.641,2961.3398,418.53964,0,1571.7203 +14708,17978,32048,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.0098066,7.4093561,0,0,-983.08075,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3496981,7.9040465,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,14,10,3,1,235,390817.44,-5615.7056,334452.06,0,0,0,1144.2246 +14709,17979,32049,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.3290358,8.3286295,0,0,0,-1075.8403,-9,-9,-9,2021,7,0,55,0,1,0,0,7.7585149,7.7585149,0,0,0,0,0,0,0,0,0,0,0,0,0,40.69,59.62,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,2637,-41088,17427.369,0,0,20545.574,-1375.7471,1287.7805 +14710,17980,32050,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1152.5018,0,3,3,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.07,15.4,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,708,-110662.51,0,0,0,0,941.17291,1662.2083 +14710,17981,32051,-9,32050,-9,1,0,26,0,0,0,2,2,-9,0,5,8.1547337,7.8336382,0,0,0,-1051.0764,0,3,3,2021,10,0,48,40,1,0,1,7.1314054,7.1314054,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,12,3,0,1705,-170731.63,0,0,0,12391.36,0,1155.6316 +14711,17982,32052,-9,32053,32054,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.6223,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32053,32054,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,7.4788756,7.3580804,0,12,1,-60.935509,0,2,2,2021,9,0,29,29,1,0,0,6.7660513,6.7660513,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,54.49,50.46,8.333333333333334,1,1,0,0,5,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32054,32053,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.6159554,9.8627071,0,12,-1,56.350594,0,2,-9,2021,7,0,42,42,1,0,0,38.987549,38.987549,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.49,50.46,45.56,60.26,8.333333333333334,1,1,0,0,14,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32055,-9,32053,32054,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.9979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32056,-9,32053,32054,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.2487,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14712,17983,32057,32058,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,4,-6,122.58244,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.47,47.17,41.57,53.76,8.333333333333334,1,1,0,0,0,13,2,1,502,352156.56,60599.867,209418.53,0,0,0,1193.9011 +14712,17983,32058,32057,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,4.6699195,4.8332725,0,4,6,87.219612,0,3,3,2021,8,0,60,70,1,0,0,.21532537,.21532537,0,0,0,1,0,0,0,0,1,0,1,0,0,41.57,53.76,47.47,47.17,5,1,1,0,1,8,13,2,1,502,352156.56,60599.867,209418.53,0,0,0,1193.9011 +14712,17984,32059,-9,32057,32058,1,0,31,0,0,0,1,1,-9,0,4,8.1109619,7.8879318,0,0,0,-925.9176,0,2,3,2021,10,0,7,35,1,0,0,54.807713,54.807713,0,0,0,0,0,0,0,0,1,0,1,3.8380966,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,224,147016.31,74404.016,0,0,0,0,1190.2627 +14712,17985,32060,-9,32057,32058,1,1,29,0,0,0,2,2,-9,0,4,8.5159969,8.6353197,0,0,0,-957.96228,0,2,3,2021,12,1,60,50,1,1,0,11.431703,11.431703,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,5,1,1,0,0,8,13,5,1,759,88338.844,30957.547,0,0,0,0,2040.7966 +14712,17986,32061,-9,32057,32058,1,1,26,0,0,0,3,3,-9,1,3,6.7701001,6.7107878,0,0,0,-969.77106,0,2,3,2021,11,0,16,16,1,0,0,6.9623632,6.9623632,0,0,0,0,0,0,0,0,1,0,1,6.8531394,0,54.37,54.8,-9,-9,3.333333333333333,1,1,0,0,7,13,2,1,732,-108539.66,0,0,0,0,0,1701.4642 +14713,17987,32062,32063,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,4.8987164,5.3785267,61,-4,-2.9878268,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1610084,0,0,1,1,0,2.446861,5.3959365,62.59,26.86,61.12,51.57,10,1,1,0,0,0,9,2,0,1527,355474.94,19305.926,237451.19,0,0,0,2045.0828 +14713,17987,32063,32062,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,60,4,6.1867647,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7393212,0,61.12,51.57,62.59,26.86,8.333333333333334,1,1,0,0,0,9,2,0,1527,355474.94,19305.926,237451.19,0,0,0,2045.0828 +14714,17988,32064,-9,32065,-9,1,1,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-978.17639,-9,3,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32065,-9,-9,-9,1,0,29,1,3,0,3,3,-9,1,3,0,6.0096474,5.9540606,0,0,-1111.0902,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.8725905,0,35.8,59.5,-9,-9,5,1,1,0,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32066,-9,32065,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.7051,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32067,-9,32065,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.93896,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14715,17989,32068,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.0716724,7.1527987,0,0,-992.89648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1934843,6.9695816,64.07000000000001,47.52,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,310,350182.66,237518.3,121490.55,0,0,0,734.63806 +14716,17990,32069,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-920.72144,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,6.2653117,4.6213746,44.661583,74.5,1,1,0,0,0,44.24,35.2,-9,-9,5,1,1,0,0,0,7,2,1,930,-247676.31,-37552.473,0,0,-614.6261,0,279.91309 +14716,17991,32070,-9,-9,32069,1,1,45,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.0801,0,-9,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,39.18,-9,-9,6.666666666666667,1,1,1,0,0,7,1,1,3540,-52499.73,0,0,0,0,0,1784.1075 +14716,17992,32071,-9,-9,32069,1,1,34,0,0,0,3,3,-9,1,2,0,0,0,0,0,-979.17389,0,-9,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.95,37.91,-9,-9,6.666666666666667,1,1,1,0,0,7,1,1,468,-285571.44,0,0,0,0,0,615.69769 +14717,17993,32072,32073,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.1086559,7.9368706,0,4,2,-21.597868,0,-9,-9,2021,11,0,48,50,1,0,0,7.0331402,7.0331402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14717,17993,32073,32072,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,8.0797691,7.6143126,0,4,-2,-49.09713,0,-9,-9,2021,9,0,40,33,1,0,0,8.6529961,8.6529961,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,8,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14717,17993,32074,-9,32073,32072,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.32709,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14718,17994,32075,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.5125794,8.066021,0,0,-1078.9939,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.385838,7.6786394,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,359,227348.7,120819.47,137737.02,0,0,0,2827.5479 +14719,17995,32076,32077,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,18,-11,-103.73675,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3833888,0,42.65,41.71,38.91,42.1,6.666666666666667,1,1,0,0,2,6,2,1,136.5,28852.627,99610.922,0,0,0,0,1004.1464 +14719,17995,32077,32076,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.8051505,5.9211607,10,11,167.58766,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.3702083,0,2,1,1,0,6.0992751,5.7886777,38.91,42.1,42.65,41.71,6.666666666666667,1,1,0,0,6,6,2,1,136.5,28852.627,99610.922,0,0,0,0,1004.1464 +14720,17996,32078,-9,32081,32079,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.0913,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32079,32081,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,9.636344,9.6223392,7.5233288,4,10,50.642723,0,-9,-9,2021,6,0,24,44,1,0,0,55.007664,55.007664,.05,.05,0,0,0,0,0,0,0,0,0,3.552983,7.5850911,52.97,53.97,55.79,52.62,6.666666666666667,1,1,0,0,6,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32080,-9,32081,32079,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.58417,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32081,32079,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.5725832,9.697197,6.2622876,4,-10,69.176308,0,3,3,2021,9,0,60,40,1,0,0,24.445192,24.445192,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0513682,55.79,52.62,52.97,53.97,8.333333333333334,1,1,0,0,14,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14721,17997,32082,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-920.80548,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.69,30.2,-9,-9,8.333333333333334,1,1,0,0,8,12,2,0,648,-23057.979,0,0,0,0,0,833.80383 +14722,17998,32083,-9,32084,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-844.31366,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,460,-12578.243,0,0,0,0,0,853.06653 +14722,17998,32084,-9,-9,-9,1,0,40,1,3,0,2,2,-9,0,4,0,6.1103311,6.1581426,0,0,-904.9975,-9,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.4736147,0,38.4,60.75,-9,-9,3.333333333333333,1,1,1,0,6,2,2,1,460,-12578.243,0,0,0,0,0,853.06653 +14722,17999,32085,-9,32084,-9,1,0,20,1,3,0,2,2,-9,0,4,6.7222056,6.8304214,0,0,0,-1007.5729,-9,2,-9,2021,5,1,12,0,1,1,1,8.4229927,8.4229927,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,2253.5,-64177.703,0,0,0,1122.2761,2320.3213,1583.176 +14722,17999,32086,-9,32085,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.4531,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,1,2253.5,-64177.703,0,0,0,1122.2761,2320.3213,1583.176 +14723,18000,32087,32088,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.5939102,4.642333,57,6,8.7985897,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3068919,4.7338252,57.33,40.23,53.71,48.6,8.333333333333334,1,1,0,0,0,4,2,1,366,91560.375,25405.848,51277.051,0,0,0,1372.5635 +14723,18000,32088,32087,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-6,-122.99671,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,48.6,57.33,40.23,8.333333333333334,1,1,0,0,0,4,2,1,366,91560.375,25405.848,51277.051,0,0,0,1372.5635 +14724,18001,32089,-9,32091,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.56793,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14724,18001,32090,-9,32091,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6716,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14724,18001,32091,-9,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,8.3179398,8.9873514,7.7354007,0,0,-966.86566,0,2,2,2021,14,4,38,38,1,4,0,10.96551,10.96551,.05,.05,0,0,0,0,0,0,1,1,0,7.9270444,0,40.64,42.43,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14725,18002,32092,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.4231815,8.5567083,6.5598965,0,0,-1079.2777,0,2,2,2021,3,0,39,40,1,0,0,13.222891,13.222891,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7994547,54.2,57.49,-9,-9,10,1,1,0,0,10,9,5,1,439,356859.13,170764.03,113492.84,0,0,-289.80743,2373.6279 +14726,18003,32093,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5628009,5.1219764,0,0,-958.8714,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,2.5238776,0,0,1,1,0,0,5.2241244,55.77,26,-9,-9,10,1,1,0,0,0,8,2,0,255,785806.06,0,623593.75,0,0,0,857.14935 +14727,18004,32094,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.5152307,5.5339117,0,0,-1058.0906,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1084542,5.4620233,42.45,51.95,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1407,324099.75,0,128112.18,0,0,0,18.999313 +14728,18005,32095,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.8437166,7.6276722,0,0,-999.62836,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3552823,7.6706328,47.55,44.33,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,410,601158,701417.44,0,0,0,0,1618.267 +14729,18006,32096,32097,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.147172,6.9719148,30,18,-34.10738,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.37778,7.0465317,54.22,44.61,57.06,57.76,8.333333333333334,1,1,0,0,0,9,2,1,821.5,329112.13,276600.28,205486.47,0,0,0,3427.4666 +14729,18006,32097,32096,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,0,0,30,-18,114.85978,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,54.22,44.61,8.333333333333334,1,1,0,0,3,9,2,1,821.5,329112.13,276600.28,205486.47,0,0,0,3427.4666 +14730,18007,32098,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.3311205,5.9219675,0,0,-951.98431,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5881639,5.7952595,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,629,155850.98,65474.574,87410.016,0,0,2056.3308,1368.8951 +14731,18008,32099,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0355854,7.8431129,0,0,0,-864.11176,0,3,3,2021,13,1,38,30,1,1,0,13.348964,13.348964,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.64,58.32,-9,-9,5,1,1,0,1,9,5,4,1,1532,-15508.738,86776.055,26954.58,0,2261.2795,0,1130.3276 +14732,18009,32100,32101,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.4682684,7.4729891,0,11,1,-38.899155,0,2,2,2021,26,11,14,14,1,11,0,14.291822,14.291822,0,0,0,0,0,0,0,2,0,0,0,0,0,22.31,64.42,33.12,61.85,3.333333333333333,1,1,0,0,15,7,3,1,6562.5,56566.348,29616.875,0,0,1917.574,0,1183.3293 +14732,18009,32101,32100,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,5.2321277,5.2260523,0,11,-1,-2.0205662,0,-9,-9,2021,23,9,40,40,1,9,0,.62980837,.62980837,.05,.05,0,0,0,0,0,0,0,0,0,2.2294998,0,33.12,61.85,22.31,64.42,5,1,1,0,0,15,7,3,1,6562.5,56566.348,29616.875,0,0,1917.574,0,1183.3293 +14733,18010,32102,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.0726919,8.4368696,7.3800812,0,0,-806.71936,0,3,2,2021,19,7,37,30,1,7,0,9.5961485,9.5961485,.05,.05,0,0,0,0,0,0,1,1,0,7.1022058,6.7060275,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,1351.5,480335.69,284082.59,106861.3,44637.758,0,0,2949.9729 +14733,18010,32103,-9,32102,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.29883,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1351.5,480335.69,284082.59,106861.3,44637.758,0,0,2949.9729 +14734,18011,32104,32105,-9,-9,1,0,22,0,0,1,1,0,-9,0,3,0,0,0,1,-3,3.5696654,-9,-9,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.01,55.94,39.15,43.33,6.666666666666667,1,1,0,0,0,13,3,1,2233,-82503.008,0,0,0,0,595.83691,1611.1006 +14734,18011,32105,32104,-9,-9,1,1,25,0,0,0,2,2,1,0,2,8.0361786,7.5630875,0,1,3,-54.736843,-9,-9,-9,2021,12,2,40,0,1,2,0,7.0929456,7.0929456,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,43.33,40.01,55.94,6.666666666666667,1,1,0,0,7,13,3,1,2233,-82503.008,0,0,0,0,595.83691,1611.1006 +14735,18012,32106,-9,32108,32107,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.0502,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14735,18012,32107,32108,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3559999,8.8862257,0,16,-3,-84.971947,0,3,2,2021,10,0,35,35,1,0,0,16.584263,16.584263,.05,.05,0,0,0,0,0,14.5,1,1,0,3.9022694,0,49.29,49.06,54.2,57.49,5,1,1,0,0,7,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14735,18012,32108,32107,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,6.8722181,6.7427292,0,15,3,44.722862,0,2,2,2021,7,0,25,24,1,0,0,3.478807,3.478807,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,49.29,49.06,8.333333333333334,1,1,0,0,6,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14736,18013,32109,32110,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.336453,7.2436051,5.5456381,9,11,64.963547,0,-9,-9,2021,10,0,25,24,1,0,0,6.3430305,6.3430305,0,0,0,0,0,0,0,0,1,1,0,5.2125978,0,57.16,56.15,54.2,57.49,5,1,1,0,0,8,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32110,32109,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.5919609,8.614747,0,9,-11,-34.60944,0,-9,-9,2021,7,0,50,50,1,0,0,12.239959,12.239959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32111,-9,32109,32110,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.5924,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32112,-9,32109,32110,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-967.4259,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14737,18014,32113,32114,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.2542734,9.3117247,0,11,3,-18.410887,0,2,3,2021,12,0,40,40,1,0,0,24.249743,24.249743,0,0,0,0,0,0,0,2,0,0,0,0,0,56.33,51.02,52.99,51.28,8.333333333333334,1,1,0,0,12,11,5,1,531,880905,578495,313140.69,10921.574,0,0,3326.0757 +14737,18014,32114,32113,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,6.142858,6.0564384,11,-3,77.771652,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3491983,0,52.99,51.28,56.33,51.02,8.333333333333334,1,1,0,0,2,11,5,1,531,880905,578495,313140.69,10921.574,0,0,3326.0757 +14738,18015,32115,32116,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.2269707,8.3287201,0,2,-4,54.222015,0,-9,-9,2021,6,0,38,11,1,0,0,11.578612,11.578612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.55,54.68,60.36,46.43,8.333333333333334,1,1,0,0,7,2,5,0,470,276123.38,20829.824,202631.19,147853.28,3273.9463,0,3530.1953 +14738,18015,32116,32115,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.2118492,8.1696615,0,2,4,98.706657,0,-9,-9,2021,6,0,38,39,1,0,0,11.426247,11.426247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.36,46.43,46.55,54.68,10,1,1,0,0,4,2,5,0,470,276123.38,20829.824,202631.19,147853.28,3273.9463,0,3530.1953 +14739,18016,32117,32118,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,8.5847855,8.3773737,10,1,-48.480453,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6813507,8.8906193,44.32,32.67,39.13,44.46,5,1,1,0,0,0,9,4,1,1508.5,2509162,270135.88,783854.5,0,0,0,4972.3452 +14739,18016,32118,32117,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.2548189,6.5709066,10,-1,-25.758604,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4885025,7.407537,39.13,44.46,44.32,32.67,5,1,1,0,0,0,9,4,1,1508.5,2509162,270135.88,783854.5,0,0,0,4972.3452 +14740,18017,32119,32120,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.1725502,8.3826656,7.5187259,7,0,104.31673,0,3,3,2021,12,0,20,20,1,0,0,17.271223,17.271223,.05,.05,0,0,0,0,0,7,1,1,0,2.1648338,7.539938,54.2,57.49,37.26,18.29,8.333333333333334,1,1,0,0,9,2,4,1,712,590714.94,464285.91,130357.3,52053.063,0,0,2835.1309 +14740,18017,32120,32119,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,7,0,-249.2854,0,3,3,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6462722,0,37.26,18.29,54.2,57.49,3.333333333333333,1,1,0,0,8,2,4,1,712,590714.94,464285.91,130357.3,52053.063,0,0,2835.1309 +14741,18018,32121,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.1971512,7.0267658,0,0,0,-1182.4587,0,2,-9,2021,10,0,56,7,1,0,0,2.6809392,2.6809392,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,204,56390.352,0,0,0,0,0,304.3161 +14742,18019,32122,32123,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.9986162,7.9394116,0,9,-3,-32.946411,0,-9,3,2021,9,0,40,46,1,0,0,7.2795024,7.2795024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.99,36.18,54.62,53.53,6.666666666666667,1,1,0,0,9,8,4,0,275,326436.63,26268.668,410474.5,5293.9653,0,0,2710.9722 +14742,18019,32123,32122,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5915618,7.7768517,0,9,3,4.5305309,0,-9,-9,2021,11,1,38,38,1,1,0,9.3131971,9.3131971,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,56.99,36.18,6.666666666666667,1,1,0,0,10,8,4,0,275,326436.63,26268.668,410474.5,5293.9653,0,0,2710.9722 +14742,18020,32124,-9,32123,32122,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1184.0198,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,0,8,1,0,394,0,0,0,0,0,0,423.30692 +14743,18021,32125,32126,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,0,0,0,27,-3,0,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,32.86,46.5,58.26,3.333333333333333,2,3,0,0,0,2,1,0,715,1816078.3,1192064,507519.75,0,0,0,-5.6947327 +14743,18021,32126,32125,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,27,3,0,0,3,2,2021,8,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.4,32.86,6.666666666666667,2,3,1,0,3,2,1,0,715,1816078.3,1192064,507519.75,0,0,0,-5.6947327 +14743,18022,32127,-9,32125,32126,1,1,23,0,0,0,2,2,-9,0,4,7.8310776,7.5020032,0,0,0,-1081.8002,0,1,1,2021,19,6,37,10,1,6,1,9.3084955,9.3084955,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,44.27,-9,-9,5,2,3,0,0,4,2,3,0,2389,188167.91,0,0,0,0,0,1110.4886 +14743,18023,32128,-9,32125,32126,1,1,20,0,0,0,2,2,-9,0,5,7.1496549,7.0561929,0,0,0,-1067.2163,0,1,1,2021,0,0,30,31,1,0,1,5.234581,5.234581,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,2,3,0,0,2,2,2,0,1071,223949.61,0,0,0,0,0,793.54437 +14744,18024,32129,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1025.9738,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.24256048,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,702,-26245.654,671.74432,0,0,0,0,184.46152 +14745,18025,32130,32132,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.3080025,7.2379999,0,9,-2,86.888947,0,3,3,2021,8,0,25,25,1,0,0,7.561861,7.561861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.5,57.5,0,1,1,0,0,11,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32131,-9,32130,32132,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.33368,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32132,32130,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,7.4550591,7.6186347,0,9,2,87.31118,0,2,2,2021,7,0,35,30,1,0,0,4.794981,4.794981,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.5,57.5,54.1,59.11,8.333333333333334,1,1,0,0,11,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32133,-9,32130,32132,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.86499,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14746,18026,32134,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,8.7360697,8.5599451,0,0,-1139.3478,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,8.986721,0,92.039719,2,1,1,0,0,8.5768976,55.42,23.87,-9,-9,10,1,1,0,0,1,10,5,1,1085,1197605.5,549299.5,307947.06,0,0,0,3542.626 +14747,18027,32135,32136,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.4180098,8.0786114,0,11,-5,107.46557,0,2,2,2021,7,0,49,83,1,0,0,9.1454554,9.1454554,0,0,0,0,0,0,0,2,0,0,0,0,0,53.86,43.07,57.33,53.46,8.333333333333334,1,1,0,0,13,2,5,1,383,2608840,2201728,456384.31,0,3666.5728,10180.59,4884.6597 +14747,18027,32136,32135,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.4135485,9.2554884,0,11,5,-25.236887,0,3,3,2021,6,0,43,43,1,0,0,25.013798,25.013798,.05,.05,0,0,0,0,0,0,0,0,0,5.7914572,0,57.33,53.46,53.86,43.07,8.333333333333334,1,1,0,0,13,2,5,1,383,2608840,2201728,456384.31,0,3666.5728,10180.59,4884.6597 +14747,18028,32137,-9,32135,32136,1,0,26,0,0,0,1,1,-9,0,3,7.4323182,7.4021869,0,0,0,-966.9295,0,2,2,2021,13,2,23,22,1,2,1,5.5205007,5.5205007,.05,.05,0,0,0,0,0,0,0,0,0,3.14605,0,32.08,58.42,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,2098,-173049.31,-218799.56,0,0,0,0,1094.9615 +14747,18029,32138,-9,32135,32136,1,0,23,0,0,0,2,2,-9,0,3,7.9518366,8.1743393,0,0,0,-1086.1779,-9,1,2,2021,11,0,44,0,1,0,1,8.1068068,8.1068068,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,2208,36134.391,-10784.563,0,0,2872.8789,3333.2458,1849.2797 +14748,18030,32139,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1885047,7.1302633,0,0,-1058.2114,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,3.8575583,0,0,1,1,0,0,6.9393091,55.76,18.3,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,130,-21637.939,-10033.522,0,0,0,0,919.17303 +14749,18031,32140,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1093.0952,-9,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.46,32.83,-9,-9,1.666666666666667,1,1,0,1,0,13,2,0,843,78946.664,0,0,0,4247.3081,0,735.6557 +14750,18032,32141,32142,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,4.6393023,4.2345128,4,10,40.74612,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.7463207,40.87,34.06,19.01,22.64,1.666666666666667,1,1,0,1,5,5,2,0,993,-93722.484,0,0,0,0,0,809.76019 +14750,18032,32142,32141,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,4,-10,-83.346367,0,-9,-9,2021,31,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,40.87,34.06,3.333333333333333,1,1,0,1,3,5,2,0,993,-93722.484,0,0,0,0,0,809.76019 +14750,18033,32143,-9,32141,32142,1,0,30,0,0,0,3,3,-9,0,4,7.0658245,7.2397923,0,0,0,-1017.6922,-9,2,2,2021,7,1,27,0,1,1,1,5.5579734,5.5579734,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,1035,125977.35,28289.443,0,0,0,0,520.73932 +14751,18034,32144,32145,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,32,-3,-72.815666,0,3,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,54.15,48.02,57.16,56.15,8.333333333333334,1,1,0,0,11,12,3,1,151,99766.328,-153.57227,125473.09,22065.996,0,193.10872,1647.3009 +14751,18034,32145,32144,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.0855045,8.236289,0,32,3,-19.130423,0,-9,3,2021,9,0,10,15,1,0,0,43.842522,43.842522,.05,.05,0,0,0,0,0,0,0,0,0,2.9098535,0,57.16,56.15,54.15,48.02,8.333333333333334,1,1,0,0,12,12,3,1,151,99766.328,-153.57227,125473.09,22065.996,0,193.10872,1647.3009 +14752,18035,32146,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,7.8770556,7.6429334,0,0,0,-906.19,0,2,2,2021,23,11,37,37,1,11,0,5.8567247,5.8567247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.78,30.9,-9,-9,3.333333333333333,1,1,0,0,12,12,3,0,2152,-77884.781,3647.7021,0,0,0,0,1094.7634 +14753,18036,32147,32148,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.8517523,5.5688863,53,3,26.749607,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3559699,5.7722707,57.24,41.16,47.08,32.36,6.666666666666667,1,1,0,0,0,4,2,1,636,340018,250382.84,122995.8,0,0,0,2191.3853 +14753,18036,32148,32147,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.7648287,6.9407191,53,-3,-132.49205,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7618861,47.08,32.36,57.24,41.16,6.666666666666667,1,1,0,0,3,4,2,1,636,340018,250382.84,122995.8,0,0,0,2191.3853 +14754,18037,32149,32151,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.1339788,8.2212887,0,23,-4,-108.68282,0,3,2,2021,16,4,22,22,1,4,0,16.961498,16.961498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.25,49.02,57.91,46.31,5,1,1,0,0,12,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14754,18037,32150,-9,32149,32151,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1009.4638,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14754,18037,32151,32149,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.1691618,8.2526951,0,10,4,120.34324,0,-9,-9,2021,7,0,35,35,1,0,0,9.7483702,9.7483702,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.91,46.31,40.25,49.02,6.666666666666667,1,1,0,0,12,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14755,18038,32152,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5418787,8.3933878,0,0,0,-1011.8278,0,2,2,2021,7,0,50,45,1,0,0,11.781961,11.781961,0,0,0,0,0,0,0,0,0,0,0,.043435376,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1271,36869.438,0,0,0,0,0,2526.1917 +14756,18039,32153,32154,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6568499,7.6767445,0,31,-4,62.932159,0,2,2,2021,0,0,43,28,1,0,0,5.2939143,5.2939143,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,10,1,1,0,0,9,10,4,0,1639,6017.7969,30029.672,0,0,0,0,2933.1597 +14756,18039,32154,32153,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2504082,8.4745035,0,7,4,-108.51736,0,2,2,2021,6,0,50,40,1,0,0,11.957575,11.957575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,9,10,4,0,1639,6017.7969,30029.672,0,0,0,0,2933.1597 +14757,18040,32155,32156,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.506402,8.364933,0,29,-1,-28.881674,0,-9,-9,2021,6,0,50,50,1,0,0,9.5557566,9.5557566,.05,.05,0,0,0,0,0,0,1,0,1,4.9353576,0,63.6,47.67,47.15,55.39,8.333333333333334,3,4,0,0,6,8,5,0,1006.5,1630524.6,1432441.3,339487.75,253293.22,19221.785,9006.2031,4437.79 +14757,18040,32156,32155,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8580608,9.1051931,0,29,1,-176.40814,0,-9,-9,2021,10,3,60,50,1,3,0,14.786818,14.786818,.05,.05,0,0,0,0,0,7,1,0,1,0,0,47.15,55.39,63.6,47.67,8.333333333333334,3,4,0,0,11,8,5,0,1006.5,1630524.6,1432441.3,339487.75,253293.22,19221.785,9006.2031,4437.79 +14757,18041,32157,-9,32156,32155,1,0,26,0,0,0,2,2,-9,0,4,7.9804697,7.8709545,0,0,0,-1161.782,-9,1,1,2021,11,0,35,0,1,2,1,7.5585098,7.5585098,0,0,0,0,0,0,0,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,7,8,3,0,629,182680.58,0,0,0,0,0,2235.4343 +14757,18042,32158,-9,32156,32155,1,0,26,0,0,0,1,1,-9,0,4,7.9104695,7.8331413,0,0,0,-847.66003,-9,1,1,2021,11,0,40,0,1,2,1,7.2675567,7.2675567,0,0,0,0,0,0,.56736761,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,3,8,3,0,6320,-4667.8794,0,0,0,0,0,1372.3485 +14757,18043,32159,-9,32156,32155,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-889.39899,-9,1,1,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,160,113479.81,0,0,0,0,0,-101.09753 +14758,18044,32160,32161,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.1467953,8.1008816,12,2,-68.648987,0,1,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9780159,8.0893936,48.17,52.08,52.05,55.95,6.666666666666667,1,1,0,0,5,1,3,1,803,1881108.8,1059786.3,666712.5,0,0,0,3443.3105 +14758,18044,32161,32160,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.8021226,6.0789642,12,-2,-8.3224697,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2179754,5.6913719,52.05,55.95,48.17,52.08,8.333333333333334,1,1,0,0,5,1,3,1,803,1881108.8,1059786.3,666712.5,0,0,0,3443.3105 +14759,18045,32162,32163,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.6495695,8.7340689,0,3,3,124.93825,0,-9,-9,2021,6,0,45,40,1,0,0,14.907611,14.907611,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,37.79,59.6,8.333333333333334,1,1,0,0,5,9,5,0,221,201280.06,-12290.306,246431.88,169470.41,0,0,3495.5168 +14759,18045,32163,32162,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.1777058,8.3174076,0,3,-3,-98.360947,0,3,3,2021,20,8,82,37,1,8,0,6.0715532,6.0715532,.05,.05,0,0,0,0,0,7,0,0,0,2.9359584,0,37.79,59.6,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,0,221,201280.06,-12290.306,246431.88,169470.41,0,0,3495.5168 +14760,18046,32164,32165,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,55,-8,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.1,51.16,66.40000000000001,32.81,10,1,1,0,0,0,7,1,1,1017,-17732.102,0,0,0,0,0,1453.8339 +14760,18046,32165,32164,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,55,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.40000000000001,32.81,62.1,51.16,10,1,1,0,0,0,7,1,1,1017,-17732.102,0,0,0,0,0,1453.8339 +14761,18047,32166,-9,-9,-9,1,1,45,0,0,0,1,1,1,0,4,0,0,0,0,0,-957.03723,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.67,49.54,-9,-9,8.333333333333334,3,4,1,1,0,8,1,0,599,-147653.97,0,67016.102,18687.576,0,0,13.170557 +14762,18048,32167,32168,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.3706255,8.3989286,0,1,0,39.824097,-9,-9,-9,2021,13,1,40,0,1,1,0,14.046557,14.046557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.61,62.71,55.19,54.26,5,1,1,0,0,2,12,5,1,452.5,222789.41,100548.43,148535.91,109921.39,9741.5332,0,4279.2329 +14762,18048,32168,32167,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.8986244,8.5678215,0,1,0,-62.178795,0,2,3,2021,9,0,42,42,1,0,0,18.053127,18.053127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,25.61,62.71,8.333333333333334,1,1,0,0,9,12,5,1,452.5,222789.41,100548.43,148535.91,109921.39,9741.5332,0,4279.2329 +14763,18049,32169,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8663116,8.121172,0,0,-975.61737,0,-9,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9865532,56.11,44.4,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1354,894807,522961.41,352420.03,0,0,0,2404.3552 +14764,18050,32170,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.5639644,5.4573936,0,0,-938.57416,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.9609981,13.227651,66.793823,0,1,1,0,0,5.6450639,43.04,32.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,662,177712.81,438.44568,121483.82,54863.055,0,0,1776.5325 +14765,18051,32171,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.0552216,8.0061035,0,0,0,-1154.4764,0,2,2,2021,16,5,40,38,1,5,0,7.8240223,7.8240223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.27,36.96,-9,-9,3.333333333333333,1,1,0,0,6,5,4,0,1357,298193.88,228736.27,0,0,0,0,1729.3486 +14765,18052,32172,-9,32171,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-886.19781,-9,2,-9,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,1015,-12623.263,0,0,0,0,0,0 +14766,18053,32173,32174,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.6560054,6.8697152,0,36,1,57.611702,0,3,2,2021,12,3,20,22,1,3,0,5.3155732,5.3155732,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.85,50.47,55.36,51.57,6.666666666666667,2,3,0,0,12,8,3,1,552.5,493025.72,328502.75,195652.69,0,0,0,1663.0145 +14766,18053,32174,32173,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0232763,7.9395537,0,36,-1,64.700058,0,3,2,2021,11,0,40,40,1,0,0,7.9011645,7.9011645,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,55.36,51.57,49.85,50.47,6.666666666666667,2,3,0,0,10,8,3,1,552.5,493025.72,328502.75,195652.69,0,0,0,1663.0145 +14766,18054,32175,-9,32173,32174,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1061.0153,0,2,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,3.333333333333333,2,3,1,1,7,8,1,1,254,-64325.848,0,0,0,0,0,342.0459 +14766,18055,32176,-9,32173,32174,1,0,20,0,0,0,2,2,1,0,4,6.6615891,7.5653334,6.7353954,0,0,-1063.9233,-9,3,3,2021,5,1,44,0,1,1,1,1.9314944,1.9314944,0,0,0,0,0,0,0,0,1,0,1,5.9292746,0,70.39,40.52,-9,-9,10,2,3,0,0,4,8,3,1,684,17408.309,0,0,0,0,0,1973.1151 +14767,18056,32177,32178,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5281935,9.097086,0,23,-4,-86.61499,-9,2,3,2021,6,0,40,0,1,0,0,17.595264,17.595264,.05,.05,.05,0,0,0,0,0,0,0,0,4.0874743,0,58.08,40.76,61.04,39.41,8.333333333333334,1,1,0,0,9,13,5,1,168,280688.34,85252.172,334573.75,141824.69,2113.7046,4888.374,2807.9414 +14767,18056,32178,32177,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.3820806,7.3601551,0,23,4,8.2800074,-9,3,3,2021,7,0,20,0,1,0,0,10.191329,10.191329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.04,39.41,58.08,40.76,8.333333333333334,1,1,0,0,9,13,5,1,168,280688.34,85252.172,334573.75,141824.69,2113.7046,4888.374,2807.9414 +14767,18057,32179,-9,32178,32177,1,0,25,0,0,0,1,1,-9,0,3,7.633306,7.8430109,0,0,0,-882.45898,-9,3,2,2021,7,0,39,0,1,0,1,6.0463948,6.0463948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.02,52.22,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,1671,38976.449,-304.0524,0,0,0,0,901.74176 +14767,18058,32180,-9,32178,32177,1,0,24,0,0,0,1,1,-9,0,4,7.9566016,7.5746469,0,0,0,-943.19196,-9,3,2,2021,6,0,37,0,1,0,1,7.1159062,7.1159062,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,235,-175133.16,0,0,0,0,0,349.85797 +14768,18059,32181,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,9.0923519,9.0799456,0,0,0,-1192.1555,-9,1,1,2021,22,8,55,0,1,8,0,20.654222,20.654222,0,0,0,0,0,0,0,0,0,0,0,5.6436124,0,33.49,64.26000000000001,-9,-9,6.666666666666667,1,1,0,0,5,10,5,0,1499,-57549.848,-30141.98,0,0,0,0,3978.7573 +14769,18060,32182,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,5.979784,6.6332893,6.0713634,0,0,-1058.0886,0,3,2,2021,12,0,21,21,1,0,0,1.70188,1.70188,0,0,0,0,0,0,0,0,1,1,0,0,5.8690305,49.53,24.62,-9,-9,6.666666666666667,3,4,0,0,2,8,2,1,946,252055.39,34034.113,159538.13,0,0,0,1165.8873 +14770,18061,32183,32184,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.6184311,8.1399145,8.3219318,22,-4,33.414677,-9,2,2,2021,10,0,30,0,1,1,0,.83609313,.83609313,0,0,0,0,0,0,0,0,1,1,0,7.2742887,8.4590921,50,49,57.09,46.7,7,1,1,0,0,1,9,4,1,249,1713292.5,973600.31,691610.88,0,0,0,4569.0381 +14770,18061,32184,32183,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.2214408,7.2804794,22,4,-54.734192,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6671619,7.3770432,57.09,46.7,50,49,8.333333333333334,1,1,0,0,0,9,4,1,249,1713292.5,973600.31,691610.88,0,0,0,4569.0381 +14771,18062,32185,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,8.768364,8.7558708,0,8,1,-148.63609,0,2,2,2021,24,11,38,44,1,11,0,18.257576,18.257576,.05,.05,0,0,0,0,0,0,0,0,0,4.1187844,0,32.1,50.37,53.36,50.02,6.666666666666667,1,1,0,0,8,8,5,1,3135,925836.44,467442.34,278435.44,36237.395,0,190.57423,2493.8337 +14771,18063,32186,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6874838,8.4968882,0,8,-1,167.65855,0,-9,-9,2021,9,0,53,43,1,0,0,10.315735,10.315735,.05,.05,0,0,0,0,0,0,0,0,0,6.9848552,0,53.36,50.02,32.1,50.37,8.333333333333334,2,3,0,0,11,8,5,1,432,211700.88,72123.977,153479.75,80717.414,0,0,2954.8716 +14772,18064,32187,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.165803,8.2768879,0,0,0,-1046.0681,0,2,3,2021,9,0,39,37,1,0,0,10.550819,10.550819,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.43,48.2,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,1021,239658.39,149245.05,173290.31,58363.383,0,0,2018.2473 +14773,18065,32188,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.0336514,7.6991472,0,0,0,-1064.4987,0,1,2,2021,24,12,21,22,1,12,0,13.779321,13.779321,.05,.05,0,0,0,0,0,0,1,1,0,.12054127,0,40.46,45.27,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,1196,168370.61,36819.82,141832.2,39342.215,0,0,1358.4412 +14773,18065,32189,-9,32188,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05121,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3971728,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,1196,168370.61,36819.82,141832.2,39342.215,0,0,1358.4412 +14774,18066,32190,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,4,7.8103805,7.7480698,0,0,0,-979.55566,-9,-9,-9,2021,13,2,40,0,1,2,0,9.4112091,9.4112091,.05,.05,0,0,0,0,0,0,0,0,0,2.164453,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,4,4,0,849,233578.13,70984.578,0,0,0,0,2277.4712 +14775,18067,32191,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.5041599,5.1558414,0,0,-920.69482,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0409675,53,47,-9,-9,7,1,1,0,0,0,2,2,0,139,248778.34,43191.359,113747.43,0,0,0,657.20306 +14776,18068,32192,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1065.4531,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.72,42.5,-9,-9,1.666666666666667,2,3,1,0,0,6,1,0,187,111210.55,0,0,0,0,1774.1168,771.98462 +14776,18069,32193,-9,32192,-9,1,0,27,0,1,0,1,1,-9,0,4,8.2690306,8.1868219,0,0,0,-938.6709,0,3,-9,2021,16,3,39,39,1,3,1,13.352105,13.352105,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.55,58.34,-9,-9,3.333333333333333,2,3,0,0,6,6,4,0,552,-183388.08,103379.88,0,0,0,1966.2263,1250.9739 +14776,18070,32194,-9,32192,-9,1,0,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-929.58765,-9,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.55,34.05,-9,-9,6.666666666666667,2,3,0,0,3,6,1,0,547,143869.19,-80633.859,97029.219,0,0,0,1178.4399 +14776,18071,32195,-9,32192,-9,1,0,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-1092.042,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.4,54.12,-9,-9,8.333333333333334,2,3,0,0,4,6,1,0,285,0,0,0,0,0,0,0 +14777,18072,32196,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.3964224,5.5877423,0,0,-1017.4409,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0865216,53,45,-9,-9,8,1,1,0,0,0,12,2,0,285,376979.88,0,181501.41,0,0,0,123.07309 +14778,18073,32197,32199,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7422729,7.2375269,0,22,-3,8.7173815,0,-9,-9,2021,24,10,38,0,1,10,0,5.8628716,5.8628716,0,0,0,0,0,0,0,0,1,1,0,.66842955,0,46.9,56.66,33.69,55,3.333333333333333,2,3,0,1,11,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32198,-9,32197,32199,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1056.7264,-9,2,1,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.56,52.4,-9,-9,5,2,3,0,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32199,32197,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5174675,8.1169558,0,22,3,-49.59959,0,1,1,2021,13,1,36,0,1,1,0,13.099267,13.099267,.05,.05,0,0,0,0,3.3211956,2,1,1,0,0,0,33.69,55,46.9,56.66,3.333333333333333,2,3,0,1,12,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32200,-9,32197,32199,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.42859,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32201,-9,32197,32199,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.3141,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14779,18074,32202,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.0728598,4.975915,0,0,-923.32922,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1879382,4.7999001,38,36.96,-9,-9,1.666666666666667,1,1,0,0,3,6,2,0,646,475020.69,0,217989.91,0,0,0,1518.8931 +14780,18075,32203,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.1797686,7.698452,0,0,0,-959.43433,0,3,3,2021,6,0,25,32,1,0,0,14.839132,14.839132,0,0,0,0,0,0,0,0,0,0,0,4.5698256,0,62.42,45.64,-9,-9,10,1,1,0,0,15,13,4,1,1924,865283.88,558631.5,99975.375,0,11329.578,0,1148.6489 +14781,18076,32204,-9,32205,-9,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-865.75525,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32205,-9,-9,-9,1,0,33,1,4,0,2,2,-9,1,1,0,0,0,0,0,-1036.1251,-9,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,3,4,0,1,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32206,-9,32205,-9,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.4995,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32207,-9,32205,-9,1,0,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1018.2569,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32208,-9,32205,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1098.3109,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14782,18077,32209,32210,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,5.3430767,5.4306016,0,29,-5,63.317463,0,3,2,2021,8,1,40,24,1,1,0,.44421723,.44421723,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,27.34,51,54,8.333333333333334,1,1,0,0,7,10,2,0,1169.5,25313.393,0,0,0,2895.1543,0,1007.2725 +14782,18077,32210,32209,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.4259162,6.2171302,0,29,5,31.176926,0,2,-9,2021,10,0,40,10,1,1,0,1.7300845,1.7300845,0,0,0,0,0,0,0,0,1,1,0,5.3829618,0,51,54,58.89,27.34,8,1,1,0,0,1,10,2,0,1169.5,25313.393,0,0,0,2895.1543,0,1007.2725 +14782,18078,32211,-9,32210,32209,1,1,21,0,0,0,2,2,-9,0,5,7.9762626,8.0345812,0,0,0,-1077.8535,-9,3,2,2021,6,0,38,0,1,0,1,7.3680296,7.3680296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,725,-31091.615,83336.617,0,0,0,0,1280.8275 +14783,18079,32212,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6302052,8.7197113,0,0,0,-1043.9088,0,3,3,2021,7,0,50,50,1,0,0,12.15486,12.15486,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,2514,837379.44,301492.34,102999.27,0,9514.1055,0,1956.8048 +14784,18080,32213,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.6057615,8.3218203,0,0,0,-903.4082,0,-9,-9,2021,20,8,50,47,1,8,0,9.3009663,9.3009663,.05,.05,0,0,0,0,0,0,1,1,0,4.855525,0,27.51,68.32000000000001,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,1394,-78375.141,-19708.498,0,0,0,0,1359.5632 +14785,18081,32214,-9,32217,32215,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.634,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32215,32217,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,19,6,64.36776,0,3,3,2021,30,11,0,80,3,11,0,0,0,0,0,0,0,0,0,0,42,1,0,1,3.3170168,0,20,69.18000000000001,18.2,55.57,1.666666666666667,1,1,1,0,11,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32216,-9,32217,32215,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2892,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32217,32215,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.29568,7.7079048,0,12,-6,-113.4435,0,-9,-9,2021,28,11,58,29,1,11,0,6.838563,6.838563,0,0,0,0,0,0,0,0,1,0,1,3.3698423,0,18.2,55.57,20,69.18000000000001,5,1,1,0,0,14,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14786,18082,32218,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.1484842,8.4877377,0,0,0,-899.69464,0,2,2,2021,3,0,43,38,1,0,1,10.695841,10.695841,0,0,0,0,0,0,1.829326,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1422,-63146.469,0,0,0,0,0,2061.4966 +14787,18083,32219,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,8.2422009,8.0314779,0,0,-1000.2227,0,3,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5576379,7.9111691,35.41,22.15,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,521,688261.81,535633.69,221264.7,0,0,0,2436.4851 +14788,18084,32220,32221,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,0,0,56,-1,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.66,50.44,8.333333333333334,1,1,0,0,0,4,1,0,564,217010.61,0,231598.67,0,0,0,1961.3152 +14788,18084,32221,32220,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,0,0,56,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.416853,0,54.66,50.44,57.16,56.15,8.333333333333334,1,1,0,0,0,4,1,0,564,217010.61,0,231598.67,0,0,0,1961.3152 +14789,18085,32222,32223,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.981431,8.573782,0,10,1,-134.84351,0,2,2,2021,16,4,43,43,1,4,0,17.327089,17.327089,0,0,0,0,0,0,0,0,0,0,0,1.0553888,0,46.45,35.69,49.25,61.25,6.666666666666667,1,1,0,0,13,4,5,1,493.5,742519.5,217550.11,370591.19,46143.328,0,0,5150.1777 +14789,18085,32223,32222,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,9.5133715,9.0198917,0,10,-1,-26.414387,0,1,2,2021,9,1,48,47,1,1,0,20.122675,20.122675,.05,.05,.05,0,0,0,0,0,0,0,0,3.9491658,0,49.25,61.25,46.45,35.69,6.666666666666667,1,1,0,0,13,4,5,1,493.5,742519.5,217550.11,370591.19,46143.328,0,0,5150.1777 +14790,18086,32224,-9,32227,32226,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.9928,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32225,-9,32227,32226,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8898,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32226,32227,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.4356108,8.4071665,0,11,1,1.0481359,0,2,2,2021,10,0,42,42,1,0,0,11.732474,11.732474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.72,49.75,8.333333333333334,1,1,0,0,11,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32227,32226,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,7.4752817,7.2347345,0,11,-1,-11.908167,0,2,2,2021,8,1,13,17,1,1,0,19.085649,19.085649,0,0,0,0,0,0,0,0,1,1,0,0,0,56.72,49.75,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32228,-9,32227,32226,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.79736,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14791,18087,32229,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,8.2254744,8.1594553,0,0,0,-1040.3069,0,3,-9,2021,9,0,45,46,1,0,0,10.760142,10.760142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,858.5,92139.477,61667.391,0,0,15875.549,0,1232.7305 +14791,18087,32230,-9,32229,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1005.0773,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,0,5,3,0,858.5,92139.477,61667.391,0,0,15875.549,0,1232.7305 +14792,18088,32231,32232,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.4512281,8.3676939,43,4,8.4640684,0,3,2,2021,12,3,0,45,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1788969,8.5897131,54.86,47.5,57.06,57.76,8.333333333333334,1,1,0,0,5,11,4,1,1239.5,1692825,1557785.5,292252.41,0,0,0,4091.769 +14792,18088,32232,32231,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,6.4779305,6.7976036,43,-4,-16.933435,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4452281,6.5889106,57.06,57.76,54.86,47.5,10,1,1,0,0,4,11,4,1,1239.5,1692825,1557785.5,292252.41,0,0,0,4091.769 +14793,18089,32233,32234,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,6.707571,6.5135798,0,7,-8,21.720367,0,3,2,2021,12,0,25,24,1,0,0,3.3577943,3.3577943,0,0,0,0,0,0,0,42,1,1,0,0,0,41.58,52.86,33.27,27.15,6.666666666666667,1,1,0,0,8,12,2,1,1507.5,247490.8,174006.45,177635.2,0,0,0,669.96472 +14793,18089,32234,32233,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,7,8,-141.91109,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.27,27.15,41.58,52.86,6.666666666666667,1,1,0,0,0,12,2,1,1507.5,247490.8,174006.45,177635.2,0,0,0,669.96472 +14793,18090,32235,-9,32234,32233,1,1,38,0,0,0,1,1,-9,0,4,7.9842925,8.0082655,0,0,0,-978.72156,0,3,3,2021,30,11,46,40,1,11,1,7.4017019,7.4017019,.05,.05,0,0,0,0,0,2,1,1,0,0,0,32.49,48.42,-9,-9,3.333333333333333,1,1,0,0,8,12,3,1,203,162518.36,-29309.939,0,0,0,0,732.64404 +14793,18091,32236,-9,32234,32233,1,1,37,0,0,0,3,3,-9,1,2,0,0,0,0,0,-954.8833,0,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.2,21.12,-9,-9,10,1,1,0,0,0,12,1,1,791,177641.39,0,0,0,0,0,534.00024 +14793,18092,32237,-9,32234,32233,1,1,22,0,0,0,2,2,-9,0,3,8.1173782,8.1781759,0,0,0,-908.36346,0,3,3,2021,26,11,50,37,1,11,1,8.1629906,8.1629906,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.45,66.57000000000001,-9,-9,3.333333333333333,1,1,0,0,2,12,4,1,532,-20118.266,31509.395,0,0,0,0,1527.4027 +14794,18093,32238,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.6874866,8.2176676,0,0,0,-1031.8589,0,-9,-9,2021,29,9,37,43,1,9,0,6.7953238,6.7953238,0,0,0,0,0,0,0,0,1,0,1,4.8564086,0,23.56,34.28,-9,-9,5,1,1,0,1,3,9,3,0,769,-13201.605,0,0,0,0,0,1382.8115 +14795,18094,32239,32240,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.7158351,7.9782715,0,9,-2,-25.36875,0,2,2,2021,9,0,38,38,1,0,0,6.5868835,6.5868835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.87,53.99,58.72,51.29,8.333333333333334,1,1,0,0,10,13,3,1,2996.5,305143.38,40628.102,77173.578,20105.709,0,485.73309,294.86374 +14795,18094,32240,32239,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,9,2,-43.947174,0,3,3,2021,10,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,55.87,53.99,8.333333333333334,1,1,1,0,9,13,3,1,2996.5,305143.38,40628.102,77173.578,20105.709,0,485.73309,294.86374 +14796,18095,32241,32242,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,9,-7,0,0,3,2,2021,12,1,0,70,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.45,41.05,57.9,51.84,8.333333333333334,1,1,1,0,9,6,1,1,438.5,-44645.16,-17117.525,0,0,0,0,763.4071 +14796,18095,32242,32241,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,9,7,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.735682,0,57.9,51.84,60.45,41.05,8.333333333333334,1,1,0,0,6,6,1,1,438.5,-44645.16,-17117.525,0,0,0,0,763.4071 +14797,18096,32243,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.8317013,8.8424482,0,0,0,-901.47687,0,3,3,2021,12,0,50,50,1,0,0,19.402861,19.402861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,14,6,5,1,542,2074176.1,1833770.4,233383.11,56642.953,0,0,2755.0974 +14797,18097,32244,-9,32243,-9,1,1,25,0,0,0,1,1,-9,0,4,0,6.1204529,6.3898401,0,0,-1038.0872,1,1,-9,2021,16,5,0,36,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6893277,0,43.44,58.7,-9,-9,6.666666666666667,4,2,0,0,8,6,2,1,2328,-87800.258,0,0,0,0,0,134.18413 +14797,18098,32245,-9,32243,-9,1,1,24,0,0,0,2,2,0,0,5,0,0,0,0,0,-1129.9478,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6270633,0,54.63,58.83,-9,-9,6.666666666666667,4,2,0,0,6,6,1,1,579,-35384.777,0,0,0,0,0,147.1304 +14797,18099,32246,-9,32243,-9,1,1,24,0,0,0,1,1,-9,0,5,5.9818997,6.1302772,0,0,0,-870.96649,0,1,-9,2021,6,0,12,36,1,0,1,3.6262612,3.6262612,0,0,0,0,0,0,0,0,0,0,0,0,0,58.62,52.91,-9,-9,10,4,2,0,0,7,6,2,1,235,21052.967,0,0,0,0,1240.8025,-135.91824 +14798,18100,32247,32248,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,6.5438871,6.6060195,0,7,0,-1.8085003,0,1,2,2021,20,7,30,6,1,7,0,2.3107905,2.3107905,0,0,0,0,0,0,0,0,1,1,0,0,0,39.85,53.12,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32248,32247,-9,-9,1,1,29,1,2,0,1,1,-9,0,4,8.9595861,8.8358898,0,7,0,-2.9583554,0,2,2,2021,6,1,45,55,1,1,0,18.379591,18.379591,.05,.05,0,0,0,0,0,0,1,1,0,1.9201899,0,51.83,57.2,39.85,53.12,8.333333333333334,1,1,0,0,6,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32249,-9,32247,32248,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.698,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32250,-9,32247,32248,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.49609,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14799,18101,32251,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.602951,9.5175543,0,0,0,-1022.7982,0,2,1,2021,7,0,48,50,1,0,0,37.118179,37.118179,0,0,0,0,0,0,0,0,1,1,0,6.788918,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,1607,652359.06,55571.672,722670.63,75276.125,0,0,9491.3145 +14800,18102,32252,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,7.0852265,7.3916101,5.0240889,0,0,-1038.5033,0,2,-9,2021,9,0,30,-9,1,0,0,5.3279738,5.3279738,0,0,0,0,0,0,0,0,1,1,0,5.0625443,0,42.95,54.48,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,544.5,114767.12,10646.969,0,0,0,0,926.04266 +14800,18102,32253,-9,32252,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8494,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,544.5,114767.12,10646.969,0,0,0,0,926.04266 +14800,18103,32254,-9,32252,-9,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1055.9543,-9,1,-9,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0831914,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,236,53075.504,0,0,0,0,0,-436.22012 +14801,18104,32255,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.9588623,7.9208064,0,0,-1118.5378,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0413876,7.8506861,55.43,48.59,-9,-9,8.333333333333334,2,3,0,0,5,8,3,1,1202,1141663.1,88207.375,542752.38,0,0,0,2357.3086 +14802,18105,32256,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.1195741,7.3063993,0,0,-951.27832,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.2903632,4.3515444,22.164488,0,1,1,0,5.7553215,7.1452708,52,45,-9,-9,8,1,1,0,0,0,9,3,1,3022,1203043.6,342658.16,284810.44,0,2848.6331,0,1494.3015 +14803,18106,32257,32258,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,0,0,0,38,-3,29.303413,0,3,3,2021,14,4,0,21,3,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.6391394,0,40.35,58.72,58.27,40.85,8.333333333333334,1,1,1,0,8,10,5,1,322,2818895.5,1237344.3,804205.13,0,7120.0254,0,3049.4194 +14803,18106,32258,32257,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.0178328,8.7765903,0,38,3,118.48627,0,3,3,2021,7,0,55,40,1,0,0,21.756641,21.756641,0,0,0,0,0,0,0,7,0,0,0,3.5739155,0,58.27,40.85,40.35,58.72,8.333333333333334,1,1,0,0,8,10,5,1,322,2818895.5,1237344.3,804205.13,0,7120.0254,0,3049.4194 +14804,18107,32259,32260,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,6,5,-144.3427,0,3,3,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,52,54.51,1.666666666666667,1,1,0,0,0,2,5,1,469,75931.242,141295.77,99115.406,16518.389,0,0,4047.1548 +14804,18107,32260,32259,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.065711,9.3336134,0,6,-5,-75.645393,0,3,3,2021,6,0,50,60,1,0,0,18.171907,18.171907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,19.01,22.64,8.333333333333334,1,1,0,0,7,2,5,1,469,75931.242,141295.77,99115.406,16518.389,0,0,4047.1548 +14805,18108,32261,32262,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8455057,9.0204077,0,11,1,-44.864262,0,2,3,2021,14,5,42,43,1,5,0,20.692396,20.692396,0,0,0,0,0,0,0,0,0,0,0,8.1578579,0,45.91,59.89,54.37,54.8,8.333333333333334,1,1,0,0,13,11,5,1,830,414938.63,40376.371,42830.227,70145.531,27379.742,0,6659.5601 +14805,18108,32262,32261,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3874283,8.8207188,0,11,-1,61.026657,0,2,2,2021,11,1,37,37,1,1,0,19.607527,19.607527,.05,.05,0,0,0,0,0,0,0,0,0,7.419827,0,54.37,54.8,45.91,59.89,8.333333333333334,1,1,0,0,13,11,5,1,830,414938.63,40376.371,42830.227,70145.531,27379.742,0,6659.5601 +14806,18109,32263,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1133.5922,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.89,44.4,-9,-9,5,1,1,0,0,0,12,1,0,627,0,0,0,0,0,0,1757.3356 +14807,18110,32264,32265,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.3317342,7.1707225,57,3,-68.007973,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0256577,54,46,52,46,8,1,1,0,0,0,11,2,1,1805,629207.88,312376.63,335375.19,0,0,0,1989.9045 +14807,18110,32265,32264,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.007236,6.375946,7,-3,-47.169506,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,8.2348557,0,0,1,1,0,0,6.3284059,52,46,54,46,8,1,1,0,0,0,11,2,1,1805,629207.88,312376.63,335375.19,0,0,0,1989.9045 +14807,18111,32266,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.1833153,7.9964409,0,0,0,-888.05603,0,-9,-9,2021,10,0,35,40,1,1,0,10.034098,10.034098,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,11,4,1,541,0,0,0,0,0,0,1285.6791 +14808,18112,32267,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-932.86951,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.11,27.71,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,2973,20709.5,0,0,0,0,0,1442.4338 +14809,18113,32268,-9,32269,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.43549,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14809,18113,32269,-9,-9,-9,1,0,47,0,1,0,1,1,-9,1,3,0,5.6768966,5.8742366,0,0,-1162.8682,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.3371773,0,41.04,46.15,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14809,18113,32270,-9,32269,-9,1,1,17,0,1,1,2,0,0,1,4,0,0,0,0,0,-1060.6661,-9,1,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.61,46.82,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14810,18114,32271,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5497017,8.5511646,0,0,0,-978.11603,0,2,2,2021,11,1,41,42,1,1,0,16.194683,16.194683,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,56.11,-9,-9,6.666666666666667,1,1,0,0,13,10,5,1,851,-28169.375,68138.031,0,0,5757.5366,0,2468.9495 +14811,18115,32272,32273,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.6606221,6.8681135,46,-5,-80.615654,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,7.0772357,6.8849163,45.41,22.46,58.15,52.91,5,1,1,0,0,1,10,2,1,1494,1102565,-31647.887,551972,0,0,0,3053.7324 +14811,18115,32273,32272,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.0181732,6.836966,46,5,-124.40662,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.7340555,6.7058897,58.15,52.91,45.41,22.46,8.333333333333334,1,1,0,0,5,10,2,1,1494,1102565,-31647.887,551972,0,0,0,3053.7324 +14812,18116,32274,32275,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.5436854,4.8734255,44,-6,1.4478421,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,5.0414042,36.87,37.37,37.34,31.49,8.333333333333334,1,1,0,0,0,4,2,0,664,-77648.617,0,28686.594,0,0,0,1518.5815 +14812,18116,32275,32274,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,6,-18.451548,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.34,31.49,36.87,37.37,3.333333333333333,1,1,0,0,0,4,2,0,664,-77648.617,0,28686.594,0,0,0,1518.5815 +14813,18117,32276,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6782694,8.5593843,0,0,0,-846.3208,0,2,2,2021,12,2,23,23,1,2,0,24.00617,24.00617,.05,.05,0,0,0,0,0,0,1,1,0,2.1922109,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,4038,959795.88,435156.53,466362.66,0,0,0,1672.9252 +14814,18118,32277,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.67316,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,37.53,-9,-9,0,1,1,0,1,0,13,1,0,2452,-39811.789,-66067.039,82318.086,0,0,0,492.46927 +14815,18119,32278,32279,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.4155092,4.3736739,52,-3,87.712219,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9703199,4.6313128,57.16,56.15,55.36,51.57,0,1,1,0,0,0,4,2,1,443,106027.31,35482.52,151492.38,0,0,0,1248.7531 +14815,18119,32279,32278,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,52,3,-144.25906,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,443,106027.31,35482.52,151492.38,0,0,0,1248.7531 +14816,18120,32280,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1084.0342,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.1234565,0,0,1,1,0,.48931327,0,51,46,-9,-9,8,1,1,0,0,0,4,1,0,756,-36406.762,0,0,0,0,-1357.5719,1912.4642 +14817,18121,32281,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.5261793,5.1035523,0,0,-998.17877,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0040357,5.4257617,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,2647,265910.75,29244.162,0,0,0,0,952.29846 +14817,18122,32282,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.5861764,7.7686319,0,0,0,-947.43866,-9,-9,-9,2021,22,9,45,0,1,9,0,5.0835695,5.0835695,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,58.03,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,505,223535.31,0,0,0,0,0,1566.741 +14818,18123,32283,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.029355,7.9972181,0,0,0,-964.11731,0,-9,-9,2021,11,0,38,53,1,0,0,11.324984,11.324984,0,0,0,0,0,0,0,0,0,0,0,0,0,19.4,56.24,-9,-9,3.333333333333333,2,3,0,0,12,6,4,1,1082,125464.61,0,43887.055,0,0,1463.0054,907.2652 +14819,18124,32284,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,8.0883713,7.7288342,0,0,-925.9527,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4363356,7.6802692,54,46,-9,-9,8,1,1,0,0,0,7,3,1,4934,854122.38,171415.66,527377.38,0,0,0,2859.0786 +14820,18125,32285,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-873.66376,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,26,-9,-9,0,1,1,0,0,0,6,2,0,202,-849.42578,0,0,0,0,0,1325.1184 +14821,18126,32286,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1015.1326,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,429,39220.148,0,0,0,1869.5061,-21.640867,952.48376 +14822,18127,32287,32288,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8269935,7.5552945,0,42,-2,-3.6391225,0,3,2,2021,9,0,21,21,1,0,0,11.192526,11.192526,.05,.05,0,0,0,0,0,0,0,0,0,5.0992017,0,56.75,49.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,3681,879119.63,836428.13,184281.08,0,0,0,4467.1328 +14822,18127,32288,32287,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.9006176,9.0587807,6.9837275,42,2,-125.16259,0,-9,3,2021,6,0,15,38,1,0,0,64.819443,64.819443,.05,.05,0,0,0,0,0,0,0,0,0,5.3652716,7.5658531,60.12,54.8,56.75,49.4,8.333333333333334,1,1,0,0,8,4,5,1,3681,879119.63,836428.13,184281.08,0,0,0,4467.1328 +14823,18128,32289,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,4.8596315,5.222733,0,0,-1013.3456,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6598372,5.0321965,60.12,54.8,-9,-9,10,1,1,0,0,0,12,2,1,880,-23185.725,55249.574,0,0,0,0,1328.5277 +14824,18129,32290,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,9.5007658,9.3348026,6.0530114,0,0,-937.37054,0,2,2,2021,16,4,60,70,1,4,0,19.241289,19.241289,.05,.05,0,0,0,0,0,0,0,0,0,6.3256893,6.2984281,46.78,35.78,-9,-9,3.333333333333333,1,1,0,0,12,9,5,1,2973,1193129.6,749338.44,534558.69,0,1240.6443,0,3621.4766 +14825,18130,32291,-9,32293,32292,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.168,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18130,32292,32293,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,7.0426655,7.0660377,0,26,1,52.080418,-9,3,3,2021,17,5,24,0,1,5,0,5.0285969,5.0285969,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.43,39,54.96,53.17,3.333333333333333,2,3,0,0,6,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18130,32293,32292,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,36,-1,-97.975143,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,36.43,39,8.333333333333334,2,3,0,0,0,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18131,32294,-9,32293,32292,1,0,20,0,2,0,2,2,-9,0,3,7.6745939,7.6327643,0,0,0,-736.60742,0,3,2,2021,12,1,60,60,1,1,1,2.9162378,2.9162378,0,0,0,0,0,0,0,0,1,1,0,.72299862,0,53.14,51.28,-9,-9,1.666666666666667,2,3,0,0,1,6,3,1,623,-91796.695,-1531.8364,0,0,1900.2267,3761.0566,906.06305 +14825,18132,32295,-9,32293,32292,1,0,19,0,2,0,2,2,-9,0,2,6.1823792,6.1913939,0,0,0,-1002.6281,-9,3,2,2021,6,0,24,0,1,0,1,1.7426521,1.7426521,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,36.05,-9,-9,8.333333333333334,2,3,0,0,1,6,2,1,472,7963.7437,0,174023.39,115146.91,16924.371,0,738.03131 +14826,18133,32296,32297,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4761868,8.8708429,6.9436202,7,5,-101.7309,0,-9,-9,2021,9,0,42,48,1,0,0,16.06222,16.06222,.05,.05,0,0,0,0,0,0,0,0,0,1.2447786,7.5297542,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,11,5,1,329,361109,155704.13,122010.59,57317.664,0,7478.8369,4293.8789 +14826,18133,32297,32296,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2711535,8.0531969,5.0173607,7,-5,26.744715,0,2,-9,2021,12,0,30,30,1,0,0,9.9999619,9.9999619,.05,.05,0,0,0,0,0,0,0,0,0,0,5.0910649,54.96,53.17,57.33,53.46,6.666666666666667,1,1,0,0,12,11,5,1,329,361109,155704.13,122010.59,57317.664,0,7478.8369,4293.8789 +14827,18134,32298,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,9.1097631,9.4869499,0,0,0,-973.18011,0,1,1,2021,11,0,38,39,1,0,0,27.32935,27.32935,.05,.05,0,0,0,0,0,0,0,0,0,2.6881528,0,37.17,52.5,-9,-9,5,1,1,0,0,10,8,5,1,2528,247241.19,67847.141,0,0,69.979332,493.98221,3888.9131 +14828,18135,32299,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,9.1349392,9.2192287,0,0,0,-1041.5333,0,2,2,2021,12,0,60,60,1,0,0,18.99667,18.99667,.05,.05,0,0,0,0,0,0,1,1,0,2.344959,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,718,1456567.9,1082262.8,270733.69,0,0,0,3581.1628 +14829,18136,32300,-9,-9,-9,1,1,72,0,1,0,2,2,-9,0,2,0,7.2715945,7.2446437,0,0,-1077.7856,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.2685714,39.41,35.87,-9,-9,0,1,1,0,1,0,9,2,0,272,438442.84,173018.2,214098.58,9184.2109,0,0,1173.0244 +14830,18137,32301,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.4012,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,11,1,1,565,-17263.574,0,0,0,0,3432.8403,293.03583 +14831,18138,32302,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.8266993,5.6464648,0,0,-884.10388,0,3,2,2021,25,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7489038,17.81,49.93,-9,-9,6.666666666666667,1,1,0,1,0,10,2,0,986,160329.53,49159.793,0,0,0,0,856.53455 +14832,18139,32303,32305,-9,-9,1,0,57,0,1,0,1,1,-9,0,5,8.5067358,8.7185259,0,9,3,13.840179,0,2,2,2021,9,0,35,35,1,0,0,16.604506,16.604506,.05,.05,0,0,0,0,0,0,1,1,0,.24062589,0,54.1,59.11,39.38,60.5,6.666666666666667,1,1,0,0,6,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18139,32304,-9,32303,32305,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.6804,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18139,32305,32303,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.0630207,9.1198959,0,9,-3,102.41412,0,3,1,2021,13,3,46,45,1,3,0,21.004784,21.004784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.38,60.5,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18140,32306,-9,32303,32305,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1016.9772,-9,1,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.59786195,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,646,-24940.596,0,0,0,0,0,180.16252 +14833,18141,32307,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4924393,8.9387236,0,0,0,-942.41058,0,2,2,2021,11,0,37,41,1,0,0,19.372089,19.372089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.52,53.3,-9,-9,5,1,1,0,0,10,10,5,1,906,659083,135871.92,538290.44,108562.27,10003.117,0,1913.7581 +14834,18142,32308,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,9.0448093,8.8563147,0,0,0,-1066.0676,0,2,1,2021,6,0,39,40,1,0,0,16.784254,16.784254,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,2538,-126119.27,-53268.117,0,0,0,450.94174,1991.0314 +14835,18143,32309,-9,32310,32311,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.28821,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32310,32311,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.1809707,7.2968998,0,11,-1,3.8441961,0,1,1,2021,7,0,30,30,1,0,0,4.8795328,4.8795328,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,32.08,47.89,8.333333333333334,1,1,0,0,12,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32311,32310,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.6938467,9.0030518,0,11,1,24.237112,0,2,2,2021,11,1,40,29,1,1,0,19.024645,19.024645,.05,.05,0,0,0,0,0,0,1,1,0,5.6812873,0,32.08,47.89,54.2,57.49,6.666666666666667,1,1,0,0,12,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32312,-9,32310,32311,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.397,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14836,18144,32313,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-957.8916,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8512549,0,52,45,-9,-9,8,1,1,0,0,5,4,1,1,380,-11298.181,0,0,0,0,0,878.7608 +14837,18145,32314,32315,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,10,-8,42.656982,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9961925,0,59.07,43.05,48.95,43.28,8.333333333333334,1,1,0,0,2,13,2,0,528,306165.72,34242.043,244929.91,23714.822,0,0,1414.251 +14837,18145,32315,32314,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.8368087,4.9699597,10,8,90.696724,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8038397,48.95,43.28,59.07,43.05,8.333333333333334,1,1,0,1,0,13,2,0,528,306165.72,34242.043,244929.91,23714.822,0,0,1414.251 +14838,18146,32316,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1044.4535,0,3,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,6.3946524,0,1,0,1,0,0,36.02,22.8,-9,-9,0,4,2,1,1,0,9,1,0,1197,-112648.02,0,0,0,0,0,220.58669 +14839,18147,32317,32318,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.2179804,8.2900629,48,-1,-124.50262,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6317739,8.1678038,58.32,50.22,41.13,37.19,10,2,3,0,0,0,9,5,1,617.5,2768205.5,617072.19,1069650.3,0,0,0,5343.8115 +14839,18147,32318,32317,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.1923676,8.4383173,48,1,70.728897,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6734462,8.4038162,41.13,37.19,58.32,50.22,8.333333333333334,2,3,0,0,2,9,5,1,617.5,2768205.5,617072.19,1069650.3,0,0,0,5343.8115 +14840,18148,32319,32320,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.179297,7.1803765,4.6963072,7,-2,90.653214,0,3,3,2021,12,0,26,26,1,0,0,5.5256171,5.5256171,0,0,0,0,0,0,0,7,0,0,0,2.6565263,4.4889159,55.71,40.47,56.11,44.4,8.333333333333334,1,1,0,0,8,5,5,1,312,20645.539,25986.982,182344.09,62979.156,0,0,2510.4897 +14840,18148,32320,32319,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.8527184,8.8885632,5.0390978,7,2,33.723171,0,3,3,2021,7,0,43,44,1,0,0,17.565533,17.565533,.05,.05,0,0,0,0,0,2,0,0,0,5.6178417,5.1106648,56.11,44.4,55.71,40.47,8.333333333333334,1,1,0,0,8,5,5,1,312,20645.539,25986.982,182344.09,62979.156,0,0,2510.4897 +14841,18149,32321,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3996477,6.3519979,0,0,-889.78308,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.506865,39.54,48.59,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,4319,195241.52,91189.117,212674.2,0,0,0,1430.5616 +14842,18150,32322,32323,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,5.8652554,5.9090972,0,8,-2,-31.977806,0,1,1,2021,7,0,5,7,1,0,0,9.9392147,9.9392147,0,0,0,0,0,0,0,2,0,0,0,0,0,60.84,47.65,63.26,42.53,8.333333333333334,2,3,0,0,10,8,4,1,1302,248542.84,87886.484,287835.81,34622.504,11871.194,14233.131,2306.5256 +14842,18150,32323,32322,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3894672,8.264411,0,35,2,50.55217,0,2,1,2021,8,0,40,45,1,0,0,12.6319,12.6319,0,0,.05,0,0,0,0,7,0,0,0,6.3291688,0,63.26,42.53,60.84,47.65,8.333333333333334,2,3,0,0,10,8,4,1,1302,248542.84,87886.484,287835.81,34622.504,11871.194,14233.131,2306.5256 +14842,18151,32324,-9,32322,32323,1,1,26,0,0,0,1,1,1,0,4,8.2351704,8.8366814,0,0,0,-993.6532,-9,1,1,2021,6,0,40,0,1,0,1,14.082928,14.082928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,1,8,5,1,1492,16876.605,127286.88,0,0,0,0,1062.8241 +14843,18152,32325,32326,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,9.031044,9.1786709,0,13,0,30.611008,0,2,2,2021,14,3,45,45,1,3,0,26.277512,26.277512,.05,.05,0,0,0,0,0,0,0,0,0,4.6280813,0,41.98,51.26,55.19,54.26,5,2,3,0,0,6,8,5,1,1268.5,310117.19,36312.188,218735.11,202608.25,16331.921,0,7750.7031 +14843,18152,32326,32325,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.6848745,8.8194895,0,8,0,-22.595655,0,-9,-9,2021,11,1,43,42,1,1,0,16.796614,16.796614,.05,.05,0,0,0,0,0,0,0,0,0,8.4707794,0,55.19,54.26,41.98,51.26,5,2,3,0,0,4,8,5,1,1268.5,310117.19,36312.188,218735.11,202608.25,16331.921,0,7750.7031 +14844,18153,32327,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6378317,6.787075,0,0,-960.57666,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,5.3254919,0,0,1,1,0,3.5991201,6.612205,47.26,52.47,-9,-9,5,1,1,0,0,0,5,2,0,405,171035.2,136931.52,157980.39,0,0,0,2073.5811 +14845,18154,32328,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6023502,8.6798401,0,0,0,-942.91077,0,2,3,2021,8,0,38,37,1,0,0,18.969501,18.969501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,370,284891.22,251435.17,238103.03,174621.41,0,2608.1445,1213.2091 +14846,18155,32329,-9,32330,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1174.6804,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,759.5,142368.69,0,153219.83,0,0,0,1644.2275 +14846,18155,32330,-9,-9,-9,1,0,36,1,1,0,2,2,-9,0,2,0,5.7151775,5.7856011,0,0,-914.89758,0,2,-9,2021,8,2,0,48,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4493747,0,52.64,38.41,-9,-9,6.666666666666667,1,1,0,0,8,13,2,1,759.5,142368.69,0,153219.83,0,0,0,1644.2275 +14847,18156,32331,32332,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,9.1880369,9.1012268,6.1322331,11,0,137.04988,0,3,3,2021,6,0,30,30,1,0,0,35.863815,35.863815,0,0,0,0,0,0,0,0,1,1,0,5.981091,6.3299246,64.23999999999999,44.83,62.26,42.8,10,1,1,0,0,12,9,5,1,1715,4388537.5,1737940,1013602.9,0,0,0,6298.4707 +14847,18156,32332,32331,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7769461,7.0700536,11,0,3.6315734,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4877839,6.8612552,62.26,42.8,64.23999999999999,44.83,10,1,1,0,0,3,9,5,1,1715,4388537.5,1737940,1013602.9,0,0,0,6298.4707 +14848,18157,32333,32335,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,8.3157816,8.0809765,0,8,-2,-23.426521,0,2,1,2021,10,0,50,44,1,1,0,7.2760673,7.2760673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,54.37,54.8,7,1,1,0,0,1,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32334,-9,32335,32333,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.5439,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32335,32333,-9,-9,1,0,31,0,2,0,2,2,-9,1,3,7.3539987,7.2248001,0,8,2,-117.51228,0,2,2,2021,7,0,48,0,1,0,0,3.2782965,3.2782965,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,49,58,8.333333333333334,1,1,0,0,1,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32336,-9,32335,32333,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1271,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14849,18158,32337,-9,32340,32339,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.63574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32338,-9,32340,32339,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.59174,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32339,32340,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.7836852,7.8194718,0,10,-1,115.62536,0,-9,-9,2021,9,0,80,0,1,0,0,4.5532675,4.5532675,0,0,0,0,0,0,0,0,1,1,0,0,0,56.89,50.73,54.55,34.44,3.333333333333333,1,1,0,0,4,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32340,32339,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,10,1,22.093544,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,34.44,56.89,50.73,8.333333333333334,1,1,0,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18159,32341,-9,32340,32339,1,1,19,0,2,0,2,2,-9,0,4,3.5457308,3.7651258,0,0,0,-1041.9091,-9,2,2,2021,11,0,2,0,1,2,1,2.0289576,2.0289576,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,2,2,2,0,558,166091.58,0,0,0,0,0,11.068087 +14849,18160,32342,-9,32340,32339,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1055.7839,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,42.32,-9,-9,5,1,1,0,0,0,2,1,0,461,0,0,0,0,0,0,-986.18854 +14850,18161,32343,32344,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6833944,7.773582,0,11,-5,86.797058,0,-9,3,2021,12,3,30,43,1,3,0,8.200201,8.200201,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,55.57,52.77,37.94,8.333333333333334,1,1,0,0,11,5,4,0,786,369339.63,240275.78,132657.08,0,0,0,2114.6221 +14850,18161,32344,32343,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.793241,7.9449296,6.8094487,11,5,-16.131094,0,3,3,2021,7,0,42,40,1,0,0,7.2626996,7.2626996,.05,.05,0,0,0,0,0,0,0,0,0,5.8819904,7.2430086,52.77,37.94,43.18,55.57,8.333333333333334,1,1,0,0,10,5,4,0,786,369339.63,240275.78,132657.08,0,0,0,2114.6221 +14851,18162,32345,32346,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.3206978,8.3490591,0,6,-2,25.520555,0,2,2,2021,22,10,53,51,1,10,0,11.340093,11.340093,.05,.05,0,0,0,0,0,0,1,1,0,2.296597,0,35.91,63.19,55.34,54.6,3.333333333333333,1,1,0,0,7,6,5,1,418,713800.25,598943.13,181508.63,338715.34,0,0,4436.4424 +14851,18162,32346,32345,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.7711897,8.8263884,0,6,2,52.787399,0,-9,-9,2021,9,1,40,40,1,1,0,21.800097,21.800097,.05,.05,0,0,0,0,0,0,1,1,0,3.9858143,0,55.34,54.6,35.91,63.19,8.333333333333334,1,1,0,0,7,6,5,1,418,713800.25,598943.13,181508.63,338715.34,0,0,4436.4424 +14851,18163,32347,-9,32345,32346,1,1,18,0,0,0,2,2,1,0,5,5.7367725,5.500895,0,0,0,-1043.8479,-9,1,2,2021,8,0,6,0,1,0,1,4.821527,4.821527,0,0,0,0,0,0,0,0,1,1,0,1.2928729,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,786,-37495.438,0,0,0,0,0,272.55347 +14852,18164,32348,32349,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,0,0,12,2,57.146561,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,65.447243,0,0,1,1,0,2.6501629,0,35.7,23.15,42.85,60.33,5,1,1,0,0,0,2,2,1,333.5,883762.25,446968.94,169758.13,0,0,5091.9751,2650.1333 +14852,18164,32349,32348,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.3379545,7.3614926,12,-2,-134.97638,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4359789,7.3093591,42.85,60.33,35.7,23.15,6.666666666666667,1,1,0,0,0,2,2,1,333.5,883762.25,446968.94,169758.13,0,0,5091.9751,2650.1333 +14853,18165,32350,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,8.0815105,7.7309647,0,0,-791.23602,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5478144,7.2957559,55.84,25.86,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,100,215651.05,-18665.006,246929.16,0,0,0,2038.9865 +14854,18166,32351,32352,-9,-9,1,1,59,0,1,0,3,3,-9,0,4,7.0768957,7.1916738,0,43,-2,31.029869,0,3,3,2021,8,0,37,30,1,0,0,4.1160712,4.1160712,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.46,41.51,8.333333333333334,2,3,0,0,6,2,2,1,613.5,-160837.78,73805.594,83381.305,54512.945,0,-313.37943,572.8916 +14854,18166,32352,32351,-9,-9,1,0,61,0,1,0,2,2,-9,0,3,0,0,0,43,2,42.163715,0,3,3,2021,9,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,41.51,54.79,55.86,1.666666666666667,2,3,0,0,4,2,2,1,613.5,-160837.78,73805.594,83381.305,54512.945,0,-313.37943,572.8916 +14854,18167,32353,-9,-9,32354,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.62518,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,606,71001.117,17376.57,0,0,0,0,950.19537 +14854,18167,32354,-9,32352,32351,1,1,40,0,1,0,2,2,-9,0,4,7.843452,7.8602343,0,0,0,-933.17206,0,2,3,2021,11,0,42,40,1,0,1,7.4302816,7.4302816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,51.55,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,606,71001.117,17376.57,0,0,0,0,950.19537 +14855,18168,32355,32356,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.6265726,8.4910088,0,3,2,-62.985092,0,1,1,2021,12,0,40,38,1,0,0,15.648619,15.648619,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,38.88,61.85,8.333333333333334,1,1,0,0,8,12,5,1,752,126922.83,16465.566,293406,330998.53,0,0,3956.1616 +14855,18168,32356,32355,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6204071,8.9688349,0,3,-2,-48.486481,0,-9,-9,2021,12,1,40,40,1,1,0,20.530306,20.530306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,38.59,60.85,8.333333333333334,1,1,0,0,5,12,5,1,752,126922.83,16465.566,293406,330998.53,0,0,3956.1616 +14856,18169,32357,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.2002978,5.0171685,0,0,-942.3172,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.824017,46.48,55.6,-9,-9,10,1,1,0,0,8,9,2,1,981,606655.19,160516.67,283742.41,0,4894.7314,0,235.40135 +14857,18170,32358,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.4861546,9.5563211,0,0,0,-1005.3674,0,3,2,2021,5,1,45,45,1,1,0,34.530876,34.530876,0,0,0,0,0,0,0,0,0,0,0,3.1738391,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,91,-5348.5718,0,0,0,0,0,2696.9211 +14858,18171,32359,32360,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,6.4921284,6.3620014,6,7,-24.545517,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166955,6.0591145,56.33,51.02,56.45,41.66,8.333333333333334,1,1,0,0,5,12,3,1,645,1086879.6,508958.69,414826.88,0,0,0,519.34509 +14858,18171,32360,32359,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3820357,7.3175545,0,6,-7,43.023045,0,3,3,2021,11,0,30,35,1,0,0,5.6367202,5.6367202,0,0,0,0,0,0,0,0,0,0,0,0,0,56.45,41.66,56.33,51.02,8.333333333333334,1,1,0,0,7,12,3,1,645,1086879.6,508958.69,414826.88,0,0,0,519.34509 +14858,18172,32361,-9,32360,32359,1,1,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-983.48035,-9,2,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.61,47,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,1265,-67477.867,0,0,0,0,0,0 +14859,18173,32362,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1052.386,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.85,34.03,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,821,-130235.52,0,0,0,-905.28162,0,1214.3088 +14860,18174,32363,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.6372013,5.7107258,0,0,-1001.8008,-9,-9,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6484427,0,57.39,45.42,-9,-9,10,3,4,0,0,0,4,2,0,142,45684.949,0,0,0,0,0,356.7934 +14860,18175,32364,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.6984692,5.7968655,0,0,-841.37268,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0950589,0,47.66,53.55,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,377,25141.035,0,0,0,0,0,-160.43518 +14861,18176,32365,32366,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,45,1,0,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,15.280666,0,0,1,1,0,8.0832491,0,45.34,40.41,41.45,60.44,6.666666666666667,1,1,0,0,0,6,1,1,609,261220.69,194789.78,55429.758,0,20255.865,0,3190.0459 +14861,18176,32366,32365,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-1,0,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5487995,0,41.45,60.44,45.34,40.41,6.666666666666667,1,1,0,0,1,6,1,1,609,261220.69,194789.78,55429.758,0,20255.865,0,3190.0459 +14862,18177,32367,32369,-9,-9,1,1,29,0,1,0,2,2,-9,1,2,0,0,0,6,1,-2.3565283,0,-9,-9,2021,15,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.74,25.67,40.58,60.95,3.333333333333333,1,1,0,1,6,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14862,18177,32368,-9,32369,32367,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.0899,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14862,18177,32369,32367,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,7.857801,7.581039,0,6,-1,106.74397,0,2,-9,2021,11,2,40,30,1,2,0,8.2074022,8.2074022,0,0,0,0,0,0,0,27,1,1,0,0,0,40.58,60.95,50.74,25.67,5,1,1,0,1,10,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14863,18178,32370,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,7.9251037,7.5390401,0,0,-943.88464,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3425121,60.12,54.8,-9,-9,10,1,1,0,0,0,7,4,1,308,781420.5,260658.69,217078.53,0,0,0,2402.2258 +14864,18179,32371,32372,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,5.890871,5.9826384,12,-3,21.722231,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2853744,5.9191966,55.48,44.52,44.07,39.47,8.333333333333334,1,1,0,0,0,4,2,1,949,402321.66,125842.98,132721.94,0,0,-546.41559,1569.1617 +14864,18179,32372,32371,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,4.746799,4.9989924,53,3,129.38264,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5719974,4.6659293,44.07,39.47,55.48,44.52,6.666666666666667,1,1,0,0,0,4,2,1,949,402321.66,125842.98,132721.94,0,0,-546.41559,1569.1617 +14865,18180,32373,32378,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.7354856,8.033884,0,8,2,54.435905,0,-9,-9,2021,7,0,39,39,1,0,0,9.9886894,9.9886894,0,0,0,0,0,0,0,0,1,0,1,0,0,47.33,53.7,57.16,56.15,10,1,1,0,0,10,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32374,-9,32378,32373,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1007.6869,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32375,-9,32378,32373,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.0951,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32376,-9,32378,32373,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-985.83972,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32377,-9,32378,32373,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.82764,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32378,32373,-9,-9,1,0,34,0,4,0,2,2,-9,0,4,6.076261,6.0996561,0,8,-2,-177.78224,0,2,2,2021,7,0,18,8,1,0,0,2.3725412,2.3725412,0,0,0,0,0,0,0,0,1,0,1,5.0728717,0,57.16,56.15,47.33,53.7,5,1,1,0,0,2,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14866,18181,32379,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1065.6445,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,1,13,2,0,410,54843.531,-79969.43,0,0,0,-439.6207,1239.9213 +14866,18182,32380,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3051338,8.4747257,0,0,0,-1089.7574,0,3,2,2021,8,0,40,40,1,0,0,8.3890572,8.3890572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,8,13,4,0,1848,46956.168,167665.47,166223.42,0,0,3558.6643,1713.0657 +14866,18183,32381,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.7766013,7.6242547,0,0,0,-911.35284,0,-9,-9,2021,10,0,40,40,1,1,0,6.1379743,6.1379743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,6,13,3,0,694,-31879.094,-9038.5088,0,0,0,493.29636,1879.639 +14866,18184,32382,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2110205,8.3827887,0,0,0,-1166.1124,0,-9,-9,2021,10,0,45,40,1,1,0,11.126747,11.126747,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,11,13,5,0,455,115625.84,-93895.742,171489.83,112912.7,0,11249.895,1783.1654 +14867,18185,32383,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.482296,8.7637491,0,0,0,-1046.342,0,1,1,2021,16,5,53,40,1,5,0,11.794997,11.794997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.96,54.15,-9,-9,5,3,4,0,0,5,8,5,0,914,129944.47,136984.7,0,0,14485.795,0,3255.0415 +14868,18186,32384,32386,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.9012108,8.861042,0,24,-1,128.66795,0,-9,2,2021,14,2,50,45,1,2,0,13.866552,13.866552,0,0,0,0,0,0,0,0,1,1,0,0,0,31.15,49.43,52.69,48.71,1.666666666666667,1,1,0,0,12,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18186,32385,-9,32386,32384,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.8958,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18186,32386,32384,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.3188763,8.7000122,0,24,1,-42.396545,0,-9,2,2021,7,0,30,30,1,0,0,17.56426,17.56426,0,0,0,0,0,0,0,0,1,1,0,1.3165456,0,52.69,48.71,31.15,49.43,6.666666666666667,1,1,0,0,9,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18187,32387,-9,32386,32384,1,1,18,0,1,0,2,2,-9,0,2,7.4186516,7.8568063,0,0,0,-994.85974,0,1,2,2021,8,0,45,0,1,0,1,4.4300966,4.4300966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.31,36.43,-9,-9,5,1,1,0,0,4,7,3,1,667,131139.38,-142978.63,0,0,0,0,1207.1144 +14869,18188,32388,32389,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.8840551,9.2582617,0,11,-13,-63.480431,0,1,2,2021,6,1,65,43,1,1,0,14.426595,14.426595,0,0,0,0,0,0,0,2,0,0,0,0,0,58.72,51.29,59.43,58.05,8.333333333333334,4,2,0,0,8,8,5,1,448.5,3171641.5,567411,528995.5,0,0,0,6436.7178 +14869,18188,32389,32388,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7754402,9.3448038,8.125679,11,13,-108.77536,0,-9,-9,2021,5,0,37,35,1,0,0,20.026129,20.026129,0,0,0,0,0,0,3.0658875,0,0,0,0,0,8.9585791,59.43,58.05,58.72,51.29,8.333333333333334,1,1,0,0,6,8,5,1,448.5,3171641.5,567411,528995.5,0,0,0,6436.7178 +14869,18189,32390,-9,32388,32389,1,1,22,0,0,0,2,2,1,0,4,5.683712,5.347528,0,0,0,-1075.6504,-9,1,1,2021,10,0,20,0,1,1,1,1.4247435,1.4247435,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,2,1,730,96049.516,0,0,0,0,0,-288.12253 +14869,18190,32391,-9,32388,32389,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-967.8891,-9,1,1,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,1,0,0,8,1,1,409,0,0,0,0,0,0,0 +14870,18191,32392,32393,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.3229709,7.6464238,0,8,-2,39.953587,0,-9,-9,2021,12,0,24,26,1,0,0,6.5881181,6.5881181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,5,1,1,0,0,8,1,4,1,622.5,120157.95,86753.609,0,0,0,0,1982.1099 +14870,18191,32393,32392,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9572392,8.0449438,0,8,2,-44.517872,0,2,2,2021,6,0,39,39,1,0,0,9.3506403,9.3506403,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,8.333333333333334,1,1,0,0,8,1,4,1,622.5,120157.95,86753.609,0,0,0,0,1982.1099 +14870,18192,32394,-9,32392,32393,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-936.14832,1,2,2,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.74295992,0,39.28,55.39,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,555,28007.986,0,0,0,0,0,229.03413 +14871,18193,32395,32396,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.572258,8.6746416,0,16,3,76.99704,0,-9,-9,2021,9,0,40,40,1,0,0,19.134323,19.134323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.48,54.94,46.92,44.25,6.666666666666667,3,4,0,0,10,7,4,0,909,-33376.809,-914.51172,0,0,0,4877.4404,3198.48 +14871,18193,32396,32395,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.9122176,6.8262992,0,18,-3,-67.204948,0,2,2,2021,4,0,30,30,1,0,0,5.1506534,5.1506534,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,44.25,45.48,54.94,6.666666666666667,3,4,0,0,5,7,4,0,909,-33376.809,-914.51172,0,0,0,4877.4404,3198.48 +14872,18194,32397,-9,-9,-9,1,0,88,1,3,0,2,2,-9,0,1,0,0,0,0,0,-1056.4677,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,5.0657644,0,0,1,1,0,0,0,48.65,18.5,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,766,16884.684,0,0,0,0,0,1685.9573 +14872,18195,32398,32399,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,0,0,2,-4,8.6923542,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.25,52.88,58.47,50.22,6.666666666666667,2,3,0,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32399,32398,32397,-9,1,1,36,1,3,0,1,1,-9,0,3,8.5809202,8.6786718,0,2,4,19.477076,0,3,3,2021,9,0,35,42,1,0,0,19.801809,19.801809,0,0,0,0,0,0,0,42,1,1,0,0,0,58.47,50.22,49.25,52.88,8.333333333333334,2,3,0,0,9,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32400,-9,32398,32399,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-776.1886,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1.1374947,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32401,-9,32398,32399,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.4102,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32402,-9,32398,32399,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.86615,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14873,18196,32403,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.4087372,8.2884808,0,0,0,-1004.0884,0,2,2,2021,9,0,45,42,1,1,0,9.7271547,9.7271547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,10,7,4,1,1794,78958.547,13297.133,0,0,13153.14,0,780.16351 +14874,18197,32404,32405,-9,-9,1,0,35,0,0,0,3,3,-9,0,4,6.9963641,6.7828722,0,5,3,130.12733,0,-9,-9,2021,2,0,5,5,1,0,0,25.687532,25.687532,0,0,0,0,0,0,0,0,1,1,0,0,0,62.11,45.63,57.06,57.76,8.333333333333334,2,3,0,0,2,6,3,0,716,-18489.891,0,0,0,0,0,2747.2737 +14874,18197,32405,32404,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.8606534,8.4252949,0,5,-3,-107.77477,0,3,2,2021,1,0,30,0,1,0,0,12.354127,12.354127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.11,45.63,8.333333333333334,2,3,0,0,11,6,3,0,716,-18489.891,0,0,0,0,0,2747.2737 +14875,18198,32406,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.3343248,6.5225134,0,0,-945.79919,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.4110262,0,18.576387,0,1,1,0,4.4546514,6.5821786,63.08,37.55,-9,-9,8.333333333333334,1,1,0,0,9,4,2,1,1007,344027,0,188261.06,0,0,0,805.92273 +14876,18199,32407,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.7178826,5.6558008,0,0,-1060.8333,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5882034,67.5,24.59,-9,-9,10,1,1,0,0,0,7,2,1,430,91090.25,40089.574,0,0,0,0,655.49036 +14877,18200,32408,32410,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,8.8619165,8.7344532,0,26,3,74.941986,0,2,3,2021,9,0,36,41,1,0,0,26.683788,26.683788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.42,35.65,57.16,56.15,8.333333333333334,2,3,0,0,14,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32409,-9,32410,32408,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.0675,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32410,32408,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1245556,8.0026922,0,26,-3,-50.894428,0,3,3,2021,12,0,25,25,1,0,0,13.951556,13.951556,0,0,0,0,0,0,0,0,1,1,0,.93706179,0,57.16,56.15,61.42,35.65,8.333333333333334,2,3,0,0,15,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32411,-9,32410,32408,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1033.2091,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,2,3,-9,0,0,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14878,18201,32412,32413,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.817852,9.2719994,0,13,5,40.713387,0,3,2,2021,24,8,40,45,1,8,0,23.090521,23.090521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.66,60.3,52.4,55.58,6.666666666666667,1,1,0,0,8,10,5,1,582,871867.13,467509.94,279379.22,141543.63,0,0,11848.909 +14878,18201,32413,32412,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,10.007086,10.139078,0,13,-5,231.33691,0,2,3,2021,11,1,40,45,1,1,0,77.609238,77.609238,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,33.66,60.3,8.333333333333334,1,1,0,0,7,10,5,1,582,871867.13,467509.94,279379.22,141543.63,0,0,11848.909 +14879,18202,32414,32415,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.3324094,7.6532826,0,7,-2,3.325166,0,2,3,2021,10,1,70,50,1,1,0,3.1775942,3.1775942,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,50,54,8.333333333333334,1,1,0,0,8,11,4,1,475.5,151400.05,136805.69,145370.39,118948.61,11635.657,4710.6465,2629.7969 +14879,18202,32415,32414,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.1546097,8.0493155,0,7,2,34.155121,-9,-9,-9,2021,10,0,30,0,1,1,0,16.033253,16.033253,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,49.28,52.09,8,4,1,0,0,1,11,4,1,475.5,151400.05,136805.69,145370.39,118948.61,11635.657,4710.6465,2629.7969 +14880,18203,32416,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.421072,8.4000168,0,0,-1125.2156,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2867093,8.3619013,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,4194,34852.129,0,177588,0,0,0,2159.9519 +14881,18204,32417,32418,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,9.0533123,8.9023237,0,17,2,22.530771,0,2,2,2021,12,0,41,53,1,0,0,17.087219,17.087219,0,0,0,0,0,0,0,7,1,1,0,0,0,40.26,35.46,41.93,27.2,6.666666666666667,1,1,0,0,9,2,5,1,732.5,36937.844,0,0,0,0,4487.2036,3064.5703 +14881,18204,32418,32417,-9,-9,1,0,33,0,0,0,1,1,-9,1,2,0,0,0,17,-2,78.677505,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2294865,0,41.93,27.2,40.26,35.46,6.666666666666667,1,1,0,0,7,2,5,1,732.5,36937.844,0,0,0,0,4487.2036,3064.5703 +14882,18205,32419,32420,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.6810694,8.8046312,0,29,0,-60.973312,0,2,3,2021,12,0,47,44,1,0,0,13.989687,13.989687,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.82,35.78,58.08,43.46,8.333333333333334,1,1,0,0,13,4,5,1,173.5,213702.81,92089.227,92894.875,63460.984,237.78519,-685.43335,3570.7891 +14882,18205,32420,32419,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3219795,8.5493422,0,29,0,-57.207844,0,1,2,2021,7,0,38,38,1,0,0,10.549592,10.549592,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.08,43.46,51.82,35.78,6.666666666666667,1,1,0,0,14,4,5,1,173.5,213702.81,92089.227,92894.875,63460.984,237.78519,-685.43335,3570.7891 +14882,18206,32421,-9,32419,32420,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1061.9509,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6073365,0,43.02,57.64,-9,-9,5,1,1,0,0,0,4,2,1,554,-163710.03,0,0,0,0,0,-190.00093 +14883,18207,32422,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,7.0556026,7.3470788,0,0,-1102.9296,0,2,3,2021,19,7,0,0,4,7,0,0,0,.05,.05,0,1,2.2964599,0,21.142906,0,1,1,0,5.6504135,6.9107661,37.54,15.68,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,1438,565939.75,62571.074,417955.16,-763.87915,0,0,1420.3273 +14884,18208,32423,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.4469337,8.1919498,0,0,0,-1003.7829,0,3,3,2021,17,6,37,38,1,6,0,16.436255,16.436255,.05,.05,0,0,0,0,0,0,0,0,0,3.9836488,0,36.21,32.22,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,433,526786.44,288476.63,0,0,0,0,1426.432 +14885,18209,32424,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.6153889,8.7953291,5.8468099,0,0,-1088.2101,0,2,2,2021,6,0,36,30,1,0,0,18.392679,18.392679,0,0,0,0,0,0,0,0,1,1,0,0,5.9716907,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,112,1016013.2,608146,327123.44,0,13671.464,0,3988.3164 +14886,18210,32425,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.5966682,8.4575825,0,0,0,-1061.3044,0,2,2,2021,18,6,40,40,1,6,0,20.147066,20.147066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,975,28467.861,44662.188,0,0,0,0,2838.1294 +14887,18211,32426,32427,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.5675755,8.9042845,0,16,-1,-104.00368,0,2,2,2021,18,6,38,38,1,6,0,21.684277,21.684277,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.08,53.8,37.92,53.03,3.333333333333333,1,1,0,0,12,2,5,0,1709,187363.41,105832.9,104940,38496.988,-359.49463,310.89337,3531.3647 +14887,18211,32427,32426,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.0443602,8.1518679,0,16,1,-67.688339,-9,2,1,2021,11,0,38,0,1,0,0,7.6034522,7.6034522,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,30.08,53.8,6.666666666666667,1,1,0,0,3,2,5,0,1709,187363.41,105832.9,104940,38496.988,-359.49463,310.89337,3531.3647 +14887,18212,32428,-9,32427,32426,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-908.40674,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,2,1,0,223,-39547.566,0,0,0,0,0,0 +14888,18213,32429,-9,32430,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.1479,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,4,2,-9,0,0,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14888,18213,32430,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8099852,7.9130163,0,0,0,-1139.8728,0,2,2,2021,12,0,40,28,1,0,0,8.9003658,8.9003658,.05,.05,0,0,0,0,0,2,1,0,1,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,13,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14888,18213,32431,-9,32430,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.348,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14889,18214,32432,32433,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,30.35,42.02,35.87,43.12,5,1,1,1,0,0,6,1,0,1047,-30185.723,0,0,0,0,0,241.55806 +14889,18214,32433,32432,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,8,2,0,0,3,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.87,43.12,30.35,42.02,1.666666666666667,1,1,1,0,0,6,1,0,1047,-30185.723,0,0,0,0,0,241.55806 +14889,18215,32434,-9,32433,32432,1,1,28,0,0,0,2,2,-9,0,3,8.3603582,8.4223328,0,0,0,-1005.5768,0,2,2,2021,7,0,56,21,1,0,1,8.1993389,8.1993389,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.57,46.8,-9,-9,5,1,1,0,0,3,6,4,0,362,-20325.359,143604.03,0,0,4498.2485,0,1203.1442 +14889,18216,32435,-9,32433,32432,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1068.4163,0,2,2,2021,6,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,38.86,51.72,-9,-9,10,1,1,1,0,0,6,1,0,413,55837.191,0,0,0,0,0,-814.65411 +14890,18217,32436,-9,32437,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.74335,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,1508.5,74074.875,14676.987,0,0,2417.0083,1676.9404,1574.3647 +14890,18217,32437,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.0465336,7.1183906,0,0,0,-1030.7207,0,3,3,2021,8,0,24,23,1,0,0,4.6837692,4.6837692,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,13,2,0,1508.5,74074.875,14676.987,0,0,2417.0083,1676.9404,1574.3647 +14891,18218,32438,32439,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.3896952,9.2119026,0,24,3,-33.854485,0,2,2,2021,11,3,39,37,1,3,0,42.961433,42.961433,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.74,57.22,10,1,1,0,0,10,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18218,32439,32438,-9,-9,1,0,55,0,1,0,1,1,-9,0,4,8.9693804,8.7658901,0,27,-3,4.5431576,0,1,1,2021,7,0,31,26,1,0,0,26.101503,26.101503,0,0,0,0,0,0,0,0,1,1,0,3.8155973,0,54.74,57.22,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18218,32440,-9,32439,32438,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.8342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18219,32441,-9,32439,32438,1,0,19,0,1,1,2,0,0,0,5,0,7.5579658,7.0740342,0,0,-1047.1718,-9,1,1,2021,16,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.8009701,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,193,-60375.063,-122727.8,0,0,0,0,1895.9821 +14892,18220,32442,32443,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3168669,8.6374016,0,2,-8,53.509129,0,-9,-9,2021,3,0,35,40,1,0,0,15.356162,15.356162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.27,53.98,10,1,1,0,0,4,9,5,1,252,287238.78,103253.02,337284.53,195674.03,-29.967102,0,3938.8179 +14892,18220,32443,32442,-9,-9,1,0,36,0,0,0,1,1,1,0,5,7.8878689,8.1008101,0,2,8,44.248524,-9,1,1,2021,8,0,24,0,1,0,0,12.544093,12.544093,0,0,0,0,0,0,0,0,0,0,0,7.362709,0,53.27,53.98,57.16,56.15,8.333333333333334,1,1,0,0,1,9,5,1,252,287238.78,103253.02,337284.53,195674.03,-29.967102,0,3938.8179 +14892,18221,32444,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9651318,7.7050571,0,0,0,-1071.1835,0,2,2,2021,6,0,38,39,1,0,0,8.0893373,8.0893373,0,0,0,0,0,0,0,0,0,0,0,.5456211,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,99,-63799.539,96689.148,0,0,0,0,947.5791 +14893,18222,32445,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1117.2933,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.75,38.42,-9,-9,0,1,1,0,1,0,8,1,0,980,120029.12,63879.746,0,0,0,0,439.26028 +14894,18223,32446,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1612406,7.0699167,0,0,-883.89532,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0828352,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,6,7,2,1,555,268238.28,81162.875,0,0,0,35.4105,868.66632 +14895,18224,32447,32449,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,6.5455165,6.9668841,0,7,1,55.154209,0,2,2,2021,12,0,12,12,1,0,0,7.7513061,7.7513061,.05,.05,0,0,0,0,0,0,1,1,0,6.0795174,0,50.01,55.31,54.1,59.11,8.333333333333334,1,1,0,0,11,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32448,-9,32447,32449,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.99213,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32449,32447,-9,-9,1,1,31,0,2,0,2,2,-9,0,5,8.5683327,8.6961203,0,7,-1,-9.7119226,0,-9,-9,2021,8,0,50,35,1,0,0,17.691572,17.691572,.05,.05,0,0,0,0,0,0,1,1,0,1.9046948,0,54.1,59.11,50.01,55.31,8.333333333333334,1,1,0,0,13,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32450,-9,32447,32449,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.18414,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14896,18225,32451,-9,32452,32453,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5758,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18225,32452,32453,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.2918406,7.3143172,0,6,3,-58.915516,0,3,2,2021,5,0,20,20,1,0,0,8.4147873,8.4147873,.05,.05,0,0,0,0,0,0,0,0,0,1.7402837,0,57.16,56.15,53.82,45.88,8.333333333333334,1,1,0,0,7,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18225,32453,32452,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,9.9381247,9.8606691,0,6,-3,-79.871536,0,-9,-9,2021,8,0,84,0,1,0,0,22.88188,22.88188,.05,.05,0,0,0,0,0,0,0,0,0,2.9440415,0,53.82,45.88,57.16,56.15,6.666666666666667,1,1,0,0,7,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18226,32454,-9,32452,32453,1,1,22,0,1,0,2,2,-9,0,4,7.8996196,8.2239265,0,0,0,-1062.5134,0,2,2,2021,6,0,48,45,1,0,1,8.2890167,8.2890167,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,3170,-100248.94,0,0,0,0,0,2718.0964 +14896,18227,32455,-9,32452,32453,1,0,18,0,1,0,2,2,-9,0,3,7.1955657,6.9054475,0,0,0,-966.25562,0,2,2,2021,11,0,30,0,1,0,1,5.1163845,5.1163845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,397,54195.398,-11259.696,0,0,0,0,711.39435 +14897,18228,32456,32457,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.0911608,7.9831533,0,6,-1,-92.039063,0,2,2,2021,7,0,21,21,1,0,0,12.377878,12.377878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,46.88,60.96,1.666666666666667,1,1,0,0,7,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14897,18228,32457,32456,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.1078444,8.589407,7.3750305,6,1,75.477615,0,1,1,2021,9,0,25,25,1,0,0,16.088228,16.088228,0,0,0,0,0,0,0,0,1,1,0,7.8687963,0,46.88,60.96,46.63,59.72,10,1,1,0,0,7,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14897,18228,32458,-9,32457,32456,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-832.93048,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14898,18229,32459,32460,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,29,-2,-25.941406,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,2,3,0,0,1,6,2,1,631,584050.25,695620.19,0,0,0,0,894.04248 +14898,18229,32460,32459,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.6606393,7.1841073,0,29,2,-24.85726,-9,3,3,2021,8,0,36,0,1,0,0,5.5787997,5.5787997,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,2,3,0,0,9,6,2,1,631,584050.25,695620.19,0,0,0,0,894.04248 +14898,18230,32461,32462,32459,32460,1,1,28,0,0,0,2,2,-9,0,5,7.9419408,7.8368449,0,1,1,67.768356,-9,3,3,2021,9,1,45,0,1,1,0,5.2561154,5.2561154,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.21,59.91,8.333333333333334,2,3,0,0,9,6,3,1,1081,25234.121,68300.625,0,0,12819.383,0,1113.5375 +14898,18230,32462,32461,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,1,-1,110.62383,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,57.06,57.76,8.333333333333334,2,3,0,0,0,6,3,1,1081,25234.121,68300.625,0,0,12819.383,0,1113.5375 +14898,18231,32463,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.1682043,7.8634133,0,0,0,-1149.7039,-9,-9,-9,2021,10,1,36,0,1,1,0,9.4105892,9.4105892,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,2,3,0,0,11,6,4,1,384,71906.641,65540.633,53629.145,-7414.2759,11588.56,0,718.50555 +14899,18232,32464,-9,-9,-9,1,0,19,0,0,1,1,0,0,1,2,0,0,0,0,0,-880.13715,-9,-9,-9,2021,26,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.22,48.57,-9,-9,5,1,1,0,1,0,5,1,1,232,-134102.48,0,0,0,0,0,1122.6125 +14899,18233,32465,32466,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,3,3,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,1.5258915,0,27.93,36.35,34.83,23.32,1.666666666666667,1,1,0,1,0,5,1,1,555.5,-16442.398,0,0,0,0,0,1552.5522 +14899,18233,32466,32465,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,-9,-9,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.83,23.32,27.93,36.35,0,1,1,0,0,11,5,1,1,555.5,-16442.398,0,0,0,0,0,1552.5522 +14900,18234,32467,32469,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.3234768,8.0821295,0,8,-1,52.590893,0,2,2,2021,9,0,25,24,1,0,0,19.91831,19.91831,0,0,0,0,0,0,0,0,1,1,0,.31786886,0,51.41,56.15,56.33,51.02,8.333333333333334,1,1,0,0,9,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14900,18234,32468,-9,32467,32469,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.24792,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14900,18234,32469,32467,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.6464787,8.5236959,0,8,1,36.442833,0,1,1,2021,6,0,40,47,1,0,0,14.440742,14.440742,.05,.05,0,0,0,0,0,0,1,1,0,6.9601684,0,56.33,51.02,51.41,56.15,8.333333333333334,1,1,0,0,10,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14901,18235,32470,32471,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,44,-1,77.949013,0,3,3,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,30.36,39.19,56.38,29.55,5,1,1,0,0,9,12,3,0,833,1010289.6,758558.25,165481.73,0,0,0,2288.8887 +14901,18235,32471,32470,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.867435,8.2410755,0,12,1,4.9067268,0,-9,-9,2021,7,0,40,35,1,0,0,6.8693871,6.8693871,0,0,0,0,0,0,0,0,1,0,1,0,0,56.38,29.55,30.36,39.19,8.333333333333334,1,1,0,0,13,12,3,0,833,1010289.6,758558.25,165481.73,0,0,0,2288.8887 +14902,18236,32472,32473,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.9074397,6.7214131,7,-1,39.030113,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9067049,58.32,50.22,65.83,35.92,8.333333333333334,1,1,0,0,0,13,2,1,3568.5,250919.66,108608.06,142534.91,0,0,0,1818.0322 +14902,18236,32473,32472,-9,-9,1,1,84,0,0,0,2,2,-9,0,5,0,6.1759224,6.0944152,7,1,101.1893,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2026272,65.83,35.92,58.32,50.22,8.333333333333334,1,1,0,0,0,13,2,1,3568.5,250919.66,108608.06,142534.91,0,0,0,1818.0322 +14903,18237,32474,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.37924,9.5116262,0,0,0,-1019.657,0,1,1,2021,11,0,55,55,1,0,0,25.491369,25.491369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,8.333333333333334,4,2,0,0,7,4,5,1,623,299280.13,26090.258,0,0,0,0,3437.5315 +14904,18238,32475,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4039555,8.6966219,0,0,0,-1002.604,0,1,1,2021,19,7,53,48,1,7,0,13.88537,13.88537,.05,.05,0,0,0,0,0,0,0,0,0,6.7567916,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,4,4,5,1,714,164695.22,24173.291,0,0,0,0,2463.4688 +14905,18239,32476,32477,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9850025,7.7903838,0,35,0,36.007832,0,-9,-9,2021,10,1,38,29,1,1,0,10.672085,10.672085,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,12,9,4,1,1077.5,142291.42,163600,299674.31,158794.81,0,0,2618.0977 +14905,18239,32477,32476,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.9002094,8.2794685,35,0,77.638588,0,-9,-9,2021,6,0,0,32,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.4354324,8.2584438,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,11,9,4,1,1077.5,142291.42,163600,299674.31,158794.81,0,0,2618.0977 +14906,18240,32478,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1033.1567,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.19,5.98,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,323,434336.66,325038.44,355757.94,40675.902,0,0,336.6622 +14907,18241,32479,32480,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,34,-5,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.33,53.46,30.57,31.96,8.333333333333334,1,1,0,0,8,1,1,1,1029.5,122977.34,0,0,0,0,0,755.19092 +14907,18241,32480,32479,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,34,5,0,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.57,31.96,57.33,53.46,3.333333333333333,1,1,0,0,0,1,1,1,1029.5,122977.34,0,0,0,0,0,755.19092 +14908,18242,32481,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.2184672,7.3949199,0,0,0,-858.73175,0,2,2,2021,16,4,30,29,1,4,0,5.864913,5.864913,0,0,0,0,0,0,0,0,1,1,0,.39268458,0,46.16,58.62,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,725,-213517.45,-67904.234,0,0,5087.6665,0,735.41791 +14909,18243,32482,32483,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,9.3005838,9.2797508,9,2,60.242104,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6399624,8.9041777,63.24,42.39,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,2489.5,2671173,1236273.8,407109.19,0,0,0,6904.3975 +14909,18243,32483,32482,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.7308383,7.4883122,9,-2,-54.777798,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1967869,7.6609125,54.79,55.86,63.24,42.39,10,1,1,0,0,7,2,5,1,2489.5,2671173,1236273.8,407109.19,0,0,0,6904.3975 +14909,18244,32484,-9,32483,32482,1,0,23,0,0,0,1,1,-9,0,5,8.5222464,8.4899664,0,0,0,-896.69385,0,1,1,2021,7,0,38,0,1,0,0,15.962314,15.962314,.05,.05,0,0,0,0,0,0,0,0,0,5.8162036,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,689,26798.559,-57664.711,0,0,18310.768,0,1725.766 +14910,18245,32485,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.1732445,5.007719,0,0,-1020.3505,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7175298,5.3029933,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,421,346536.84,0,300524.44,0,0,0,659.2738 +14911,18246,32486,32487,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7659235,7.6763453,0,6,0,63.739067,0,3,3,2021,11,0,31,30,1,0,0,7.2861056,7.2861056,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,53.82,50.73,8.333333333333334,1,1,0,0,11,10,5,1,2457.5,108430.83,23629.73,125328.23,58667.242,9117.7568,0,3664.3486 +14911,18246,32487,32486,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7023802,8.802762,0,6,0,28.40336,0,3,2,2021,9,0,45,45,1,0,0,15.104306,15.104306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.82,50.73,51.24,58.84,8.333333333333334,1,1,0,0,11,10,5,1,2457.5,108430.83,23629.73,125328.23,58667.242,9117.7568,0,3664.3486 +14911,18247,32488,-9,32486,32487,1,1,28,0,0,0,2,2,-9,0,4,8.1283836,8.2775564,0,0,0,-970.31256,0,2,2,2021,11,0,40,40,1,0,1,10.390724,10.390724,0,0,0,0,0,0,0,0,1,1,0,1.5338681,0,44.24,59.44,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,262,-27112.277,0,0,0,0,0,986.55615 +14911,18248,32489,-9,32486,32487,1,1,18,0,0,1,3,0,0,0,2,0,0,0,0,0,-1045.2574,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.34,54.03,-9,-9,3.333333333333333,1,1,0,0,12,10,1,1,183,85937.57,0,0,0,0,-748.05121,0 +14912,18249,32490,-9,32492,32491,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.0892,1,2,2,2021,3,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,5,6,1,1,784,116661.14,0,0,0,0,0,0 +14912,18250,32491,32492,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,7.9219751,7.905757,3,0,28.740049,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.98565662,8.0425119,45.65,57.42,36.85,53.44,8.333333333333334,1,1,0,0,8,6,3,1,1380.5,1069334.5,737808.81,220460.47,0,0,0,1731.2029 +14912,18250,32492,32491,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,4.4536343,4.3788257,26,0,172.84468,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.60858542,4.6579566,36.85,53.44,45.65,57.42,3.333333333333333,1,1,0,0,8,6,3,1,1380.5,1069334.5,737808.81,220460.47,0,0,0,1731.2029 +14913,18251,32493,32495,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,6.3170638,6.3432217,0,1,1,33.036701,-9,-9,-9,2021,18,6,12,0,1,6,0,4.799304,4.799304,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,55.9,66.73999999999999,26.24,3.333333333333333,1,1,0,0,3,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32494,-9,32493,32495,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8338,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32495,32493,-9,-9,1,1,23,1,2,0,2,2,-9,0,2,0,0,0,1,-1,-31.403023,-9,-9,-9,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.73999999999999,26.24,46.4,55.9,5,1,1,0,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32496,-9,32493,32495,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.94135,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14914,18252,32497,32498,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.520627,7.4219694,61,1,-72.58017,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,45.652378,0,0,1,1,0,0,7.684042,45.35,35.99,52.37,56.93,8.333333333333334,1,1,0,0,0,1,4,1,420.5,1545617.8,496581.13,527669.56,0,0,0,3815.041 +14914,18252,32498,32497,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.1518364,7.51931,61,-1,76.389,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.2489719,7.9650688,52.37,56.93,45.35,35.99,8.333333333333334,1,1,0,0,4,1,4,1,420.5,1545617.8,496581.13,527669.56,0,0,0,3815.041 +14915,18253,32499,32500,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.271956,5.6297774,51,0,21.123594,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.282094,5.9886827,60.42,42.39,50.02,42.55,8.333333333333334,1,1,0,0,6,4,5,1,988.5,714129.13,105044.37,517259.09,0,0,0,8053.2744 +14915,18253,32500,32499,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.992691,8.9840517,51,0,104.66872,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0561275,8.9989653,50.02,42.55,60.42,42.39,8.333333333333334,1,1,0,0,5,4,5,1,988.5,714129.13,105044.37,517259.09,0,0,0,8053.2744 +14916,18254,32501,32502,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.6571789,8.4746065,0,5,1,-10.575954,0,-9,-9,2021,4,0,39,44,1,0,0,15.901322,15.901322,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,55.68,43.68,53.03,8.333333333333334,1,1,0,0,6,2,5,1,270,-157993.28,0,0,0,0,0,2801.2373 +14916,18254,32502,32501,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.8703575,8.0619078,0,5,-1,93.078255,0,-9,-9,2021,14,3,41,40,1,3,0,6.1725416,6.1725416,0,0,0,0,0,0,0,0,0,0,0,0,0,43.68,53.03,49.52,55.68,8.333333333333334,1,1,0,0,9,2,5,1,270,-157993.28,0,0,0,0,0,2801.2373 +14917,18255,32503,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.08075,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,283,-80547.75,54011.68,0,0,0,0,831.98767 +14918,18256,32504,32505,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,8,4,27.103157,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.77423424,0,57.33,53.46,46.52,45.04,8.333333333333334,1,1,0,0,6,5,5,1,660.5,319330.94,191651.39,138989.22,0,0,0,4994.9658 +14918,18256,32505,32504,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.537591,9.6151104,0,8,-4,-36.916145,0,3,3,2021,10,0,90,60,1,0,0,13.588876,13.588876,.05,.05,0,0,0,0,0,2,1,1,0,1.398671,0,46.52,45.04,57.33,53.46,6.666666666666667,1,1,0,0,9,5,5,1,660.5,319330.94,191651.39,138989.22,0,0,0,4994.9658 +14919,18257,32506,32507,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.1025,8.2225122,47,0,68.400299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6469498,8.2167635,57.4,50.48,62.1,51.16,10,1,1,0,0,6,9,3,1,366.5,1527084.6,844160.13,726816.31,0,10610.408,5139.9678,3711.0732 +14919,18257,32507,32506,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.1529064,6.039073,47,0,-74.720779,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9881821,6.0542941,62.1,51.16,57.4,50.48,10,1,1,0,0,5,9,3,1,366.5,1527084.6,844160.13,726816.31,0,10610.408,5139.9678,3711.0732 +14920,18258,32508,32509,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-1,-66.885803,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2902203,0,54.19,42.36,58.72,51.29,8.333333333333334,1,1,0,0,1,2,2,1,789,767614.88,396488.69,216445.19,0,0,0,2118.51 +14920,18258,32509,32508,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.129653,7.0718441,44,1,23.655617,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0367951,7.1985955,58.72,51.29,54.19,42.36,8.333333333333334,1,1,0,0,5,2,2,1,789,767614.88,396488.69,216445.19,0,0,0,2118.51 +14921,18259,32510,32511,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2096672,6.2197266,46,0,-133.09889,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8388448,6.3636923,59.47,44.13,56.29,52.37,8.333333333333334,1,1,0,0,6,4,5,1,137,1461275.8,328920.75,261239.31,0,0,0,4694.6851 +14921,18259,32511,32510,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.955513,8.9820023,46,0,19.777012,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.3402748,56.29,52.37,59.47,44.13,10,1,1,0,0,5,4,5,1,137,1461275.8,328920.75,261239.31,0,0,0,4694.6851 +14922,18260,32512,32513,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.2025428,6.3456359,47,3,-89.157578,0,2,3,2021,33,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.5012956,6.2248607,33.98,39.05,48.17,45.42,5,1,1,0,0,0,2,3,1,365.5,919203.56,371073.5,285526.75,0,0,0,2649.231 +14922,18260,32513,32512,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.3618164,7.1982284,47,-3,87.501373,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7457185,7.441782,48.17,45.42,33.98,39.05,8.333333333333334,1,1,0,0,0,2,3,1,365.5,919203.56,371073.5,285526.75,0,0,0,2649.231 +14923,18261,32514,-9,32515,32517,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1182.8792,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32515,32517,-9,-9,1,0,40,0,4,0,1,1,-9,0,4,6.9889379,6.9528108,0,15,-1,4.8610139,0,2,2,2021,7,0,40,15,1,0,0,3.4750121,3.4750121,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,13,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32516,-9,32515,32517,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-897.77081,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32517,32515,-9,-9,1,1,41,0,4,0,1,1,-9,0,4,8.6243725,8.9551268,0,15,1,41.97266,0,2,2,2021,10,0,42,82,1,0,0,19.168591,19.168591,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,15,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14924,18262,32518,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.4673228,5.3773975,0,0,-993.09894,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6676211,5.4394231,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2244,147221.88,0,0,0,0,0,1529.2196 +14925,18263,32519,32520,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4497252,8.3661499,0,3,-4,112.81779,0,-9,-9,2021,9,0,62,53,1,0,0,7.4595709,7.4595709,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,50.01,55.31,8.333333333333334,1,1,0,0,4,4,5,1,1551,-96270.359,-4497.3242,0,0,-186.05414,0,3504.3911 +14925,18263,32520,32519,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6283073,8.5291567,0,3,4,-76.736168,0,-9,-9,2021,8,1,52,48,1,1,0,13.349553,13.349553,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,46.16,58.62,8.333333333333334,1,1,0,0,8,4,5,1,1551,-96270.359,-4497.3242,0,0,-186.05414,0,3504.3911 +14926,18264,32521,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.7005,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.22,35.73,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,768,221061.36,0,481124.47,107592.54,0,0,1814.9019 +14927,18265,32522,32523,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.450592,8.2762766,31,-3,32.80769,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1679072,8.1160135,60.12,54.8,56.74,52.23,10,1,1,0,0,7,10,4,1,3165.5,2240192,1097829.3,532179,0,2963.5261,0,4560.8857 +14927,18265,32523,32522,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5829878,7.6468797,31,3,94.295303,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8301401,7.6601744,56.74,52.23,60.12,54.8,10,1,1,0,0,2,10,4,1,3165.5,2240192,1097829.3,532179,0,2963.5261,0,4560.8857 +14928,18266,32524,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.01727,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,7.8332858,0,0,1,1,0,0,0,61.58,24.58,-9,-9,10,1,1,0,0,0,2,1,0,3321,76749.453,0,0,0,0,0,1353.1796 +14929,18267,32525,32526,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.364594,7.3083377,57,5,41.395725,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8991084,7.8508658,42.57,45.02,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,472.5,476588.94,137280.36,262769.25,0,0,0,2862.521 +14929,18267,32526,32525,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,57,-5,37.421921,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98000312,0,57.16,56.15,42.57,45.02,6.666666666666667,1,1,0,0,9,9,2,1,472.5,476588.94,137280.36,262769.25,0,0,0,2862.521 +14930,18268,32527,-9,32529,32530,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-926.17889,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32528,-9,32529,32530,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.09814,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32529,32530,-9,-9,1,0,30,0,4,0,3,3,-9,0,3,0,0,0,10,-7,79.160378,0,2,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.69,64.23,35.12,51.86,5,1,1,0,1,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32530,32529,-9,-9,1,1,37,0,4,0,2,2,-9,0,2,8.3109665,8.1967726,0,10,7,-34.661758,0,-9,-9,2021,20,7,55,49,1,7,0,7.4608107,7.4608107,0,0,0,0,0,0,0,0,1,1,0,0,0,35.12,51.86,18.69,64.23,5,1,1,0,1,9,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32531,-9,32529,32530,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.2507,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14931,18269,32532,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,3,7.6834998,7.7117705,0,0,0,-984.90173,0,2,3,2021,15,3,25,25,1,3,0,12.263373,12.263373,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.43,47.05,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1270.5,239508.89,115252.45,0,0,0,0,1606.2502 +14931,18269,32533,-9,32532,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1145.3839,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,-9,-9,10,4,2,0,0,0,8,3,0,1270.5,239508.89,115252.45,0,0,0,0,1606.2502 +14932,18270,32534,-9,32535,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-835.54645,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,1,0,593,0,0,0,0,0,0,1289.3398 +14932,18270,32535,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1007.1984,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,593,0,0,0,0,0,0,1289.3398 +14933,18271,32536,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,6.9225054,7.3458562,0,0,0,-1005.4808,-9,2,2,2021,23,10,20,0,1,10,0,7.0155077,7.0155077,0,0,0,0,0,0,0,0,1,1,0,0,0,25.43,35.95,-9,-9,0,1,1,0,1,7,6,2,0,658,-42793.211,0,0,0,0,0,284.69742 +14934,18272,32537,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3395205,8.0867548,0,0,0,-1082.6561,0,-9,-9,2021,9,0,40,0,1,1,0,8.6208124,8.6208124,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,1,9,4,0,653,361954.69,-34993.152,199302.69,0,0,0,1142.9421 +14934,18273,32538,-9,32539,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.5297,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,832.5,-21178,0,0,0,0,0,911.3728 +14934,18273,32539,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,6.7003517,6.7250752,0,0,0,-922.8537,0,1,1,2021,18,4,15,20,1,4,0,6.5995946,6.5995946,0,0,0,0,0,0,0,0,1,1,0,0,0,54.41,38.49,-9,-9,6.666666666666667,3,4,0,0,6,9,2,0,832.5,-21178,0,0,0,0,0,911.3728 +14934,18274,32540,-9,32539,-9,1,1,25,0,1,0,2,2,-9,0,4,8.077136,8.1251364,0,0,0,-860.70996,0,3,-9,2021,3,0,40,37,1,0,1,10.013428,10.013428,0,0,0,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,8.333333333333334,3,4,0,1,3,9,4,0,700,35910.746,0,0,0,55.51289,0,1300.3312 +14934,18275,32541,-9,32539,-9,1,1,22,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.3413,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.98,49.42,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,881,0,0,0,0,0,0,1380.1501 +14935,18276,32542,32543,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.6473122,7.4167647,9,2,28.887159,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3396125,7.7310481,48.45,57.49,38.32,55.38,10,1,1,0,0,0,8,3,0,2202,640951,427590.25,273136.31,0,0,0,2569.0811 +14935,18276,32543,32542,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.9117961,5.7597442,9,-2,86.651161,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1381631,38.32,55.38,48.45,57.49,1.666666666666667,1,1,0,0,0,8,3,0,2202,640951,427590.25,273136.31,0,0,0,2569.0811 +14936,18277,32544,32545,-9,-9,1,1,56,0,2,0,3,3,-9,1,1,0,0,0,8,27,0,0,-9,-9,2021,17,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.65,26.17,22.92,33.1,6.666666666666667,1,1,1,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32545,32544,-9,-9,1,0,29,0,2,0,2,2,-9,0,1,0,0,0,8,-27,0,0,-9,-9,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,22.92,33.1,37.65,26.17,3.333333333333333,1,1,0,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32546,-9,32545,32544,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1155.344,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32547,-9,32545,32544,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.05798,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14937,18278,32548,32549,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,33,6,0,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,26.38,33.28,29.52,3.333333333333333,1,1,0,0,0,13,2,1,994,121202.88,124616.61,46939.328,0,0,0,1376.5671 +14937,18278,32549,32548,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,33,-6,0,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,29.52,34.46,26.38,5,1,1,0,0,0,13,2,1,994,121202.88,124616.61,46939.328,0,0,0,1376.5671 +14938,18279,32550,32551,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.7695084,8.9033031,0,7,1,53.994915,0,2,1,2021,5,0,38,38,1,0,0,14.951716,14.951716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.38,54.63,54.79,55.86,8.333333333333334,1,1,0,0,9,2,5,1,390,1121247,1044028.3,236311.34,158403.81,1768.9617,22291.48,5345.8184 +14938,18279,32551,32550,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5842056,8.8653431,0,7,-1,64.156738,0,-9,-9,2021,7,0,45,37,1,0,0,13.454489,13.454489,.05,.05,0,0,0,0,0,0,0,0,0,6.9950347,0,54.79,55.86,51.38,54.63,8.333333333333334,1,1,0,0,8,2,5,1,390,1121247,1044028.3,236311.34,158403.81,1768.9617,22291.48,5345.8184 +14939,18280,32552,32553,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.4513845,9.407548,6.2508688,11,5,-140.15154,0,3,3,2021,13,1,49,45,1,1,0,29.172157,29.172157,.05,.05,0,0,0,0,0,0,0,0,0,4.2826152,6.4542685,51.05,54.79,57.16,56.15,1.666666666666667,1,1,0,0,12,2,5,1,942,1493617,908596,393408.22,12540.678,0,0,4522.2236 +14939,18280,32553,32552,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.966125,6.9278326,0,11,-5,-21.401365,0,2,2,2021,6,0,18,18,1,0,0,6.3868604,6.3868604,.05,.05,0,0,0,0,0,0,0,0,0,3.6370447,0,57.16,56.15,51.05,54.79,10,1,1,0,0,11,2,5,1,942,1493617,908596,393408.22,12540.678,0,0,4522.2236 +14940,18281,32554,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.0170007,5.9299412,0,0,-941.28156,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3573194,6.1414776,62.39,56.71,-9,-9,10,1,1,0,0,0,13,2,1,1262,243628.42,55131.996,0,0,0,0,1235.4883 +14941,18282,32555,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9839215,8.1338758,6.4473724,0,0,-1030.4897,0,3,3,2021,17,6,50,50,1,6,0,6.4910264,6.4910264,.05,.05,0,0,0,0,0,0,0,0,0,0,6.1660218,45.34,35.67,-9,-9,8.333333333333334,1,1,0,0,8,11,4,0,304,50625.723,-2575.2263,0,0,0,0,1131.5569 +14942,18283,32556,-9,-9,-9,1,0,58,0,1,0,2,2,-9,1,1,0,0,0,0,0,-996.63629,0,3,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.95,52.9,-9,-9,3.333333333333333,1,1,0,0,7,12,1,1,599.5,84404.125,29946.305,0,0,0,434.60699,1345.615 +14942,18283,32557,-9,32556,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1056.2823,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,599.5,84404.125,29946.305,0,0,0,434.60699,1345.615 +14943,18284,32558,-9,32560,32559,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-818.48309,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14943,18284,32559,32560,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,46,2,62.457031,0,3,1,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,159.72984,0,0,1,1,0,0,0,22.6,36.15,50,47,3.333333333333333,2,3,0,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14943,18284,32560,32559,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.6517048,5.6224275,7,-2,-20.906523,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73750365,5.4405928,50,47,22.6,36.15,7,2,3,0,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14944,18285,32561,-9,32562,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.4142,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,912.5,6665.2207,8422.6367,182160.89,63115.117,5405.7095,0,3389.4072 +14944,18285,32562,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,9.329484,9.4014063,5.903821,0,0,-870.65332,0,2,3,2021,14,3,35,40,1,3,0,37.968128,37.968128,0,0,0,0,0,0,0,0,0,0,0,7.0484247,0,42.85,62.85,-9,-9,5,1,1,0,0,9,4,5,1,912.5,6665.2207,8422.6367,182160.89,63115.117,5405.7095,0,3389.4072 +14944,18286,32563,-9,32562,-9,1,1,19,0,1,0,2,2,-9,0,5,7.2966323,7.5114431,0,0,0,-1030.4622,-9,2,-9,2021,17,6,40,0,1,6,1,5.4635196,5.4635196,0,0,0,0,0,0,0,0,0,0,0,0,0,22.45,54.67,-9,-9,3.333333333333333,1,1,0,0,0,4,3,1,621,-54984.25,0,0,0,0,0,113.57855 +14945,18287,32564,32565,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,50,-3,.69793171,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.36,27.07,60.55,29.25,8.333333333333334,1,1,0,0,0,11,2,1,1024,742256.13,553998.94,247347.34,0,0,0,1438.7404 +14945,18287,32565,32564,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.8882856,7.1325068,11,3,32.159973,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9785833,60.55,29.25,56.36,27.07,8.333333333333334,1,1,0,0,7,11,2,1,1024,742256.13,553998.94,247347.34,0,0,0,1438.7404 +14946,18288,32566,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,7.2140079,7.6752634,0,0,-1172.8789,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.5293903,7.6077123,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,842,0,0,0,0,0,0,480.15469 +14947,18289,32567,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.9598293,7.3272204,0,0,-1055.3445,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2915006,34.88,39.44,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,698,568752.38,283350.34,163693.13,0,0,0,1013.4415 +14948,18290,32568,32569,-9,-9,1,0,83,0,0,0,1,1,-9,0,2,0,4.3759589,4.3856082,10,0,129.84941,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.2856718,4.0501308,55.05,44,32.68,35.19,8.333333333333334,1,1,0,0,0,2,3,1,1372,589577,142935.56,145571.03,0,0,0,2344.3398 +14948,18290,32569,32568,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.2880316,7.6950798,10,0,1.804026,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,5.1079388,0,0,1,1,0,0,7.5867429,32.68,35.19,55.05,44,3.333333333333333,1,1,0,0,0,2,3,1,1372,589577,142935.56,145571.03,0,0,0,2344.3398 +14949,18291,32570,32571,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,12,0,-52.836155,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.5482125,0,27,1,1,0,3.9618311,0,47.1,23.2,46.32,16.87,10,1,1,0,0,0,11,2,1,2686.5,-22056.434,-33456.078,0,0,0,0,2681.0215 +14949,18291,32571,32570,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.1586976,6.7572579,12,0,23.492214,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,1,0,32.670467,0,0,1,1,0,0,7.0065851,46.32,16.87,47.1,23.2,8.333333333333334,1,1,0,0,0,11,2,1,2686.5,-22056.434,-33456.078,0,0,0,0,2681.0215 +14950,18292,32572,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.4701872,8.7009983,6.8321743,0,0,-872.36719,0,2,2,2021,9,0,40,45,1,0,0,13.751697,13.751697,0,0,0,0,0,0,0,7,0,0,0,5.3654227,6.8613462,44.28,45.81,-9,-9,8.333333333333334,1,1,0,0,14,6,5,0,1613,980358.81,925345.06,219113.8,0,0,0,1902.5051 +14951,18293,32573,32574,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.3804564,7.3338184,61,-3,-41.543381,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7808247,7.0949273,51.24,58.84,51.03,42.6,10,1,1,0,0,9,6,2,1,666,992080.38,-45366.059,271170.06,0,0,0,2101.8723 +14951,18293,32574,32573,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.0087752,4.9984198,12,3,24.982611,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,3.9039111,0,0,1,1,0,3.9499128,4.7857165,51.03,42.6,51.24,58.84,10,1,1,0,0,0,6,2,1,666,992080.38,-45366.059,271170.06,0,0,0,2101.8723 +14952,18294,32575,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,5.4322715,5.5760484,0,0,-940.84839,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.7060206,5.4499073,25.800905,0,1,1,0,1.932353,5.3723893,65.32000000000001,23.75,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,846,40286.527,18860.451,162948.63,0,0,0,1323.3055 +14953,18295,32576,-9,32579,32577,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.8016,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32577,32579,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0317974,8.0382261,0,18,6,-115.48819,0,3,3,2021,8,0,80,40,1,0,0,3.539006,3.539006,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,38.77,63.46,5,1,1,0,0,10,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32578,-9,32579,32577,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.8081,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32579,32577,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.1830254,7.9785061,0,11,-6,-16.946842,0,-9,-9,2021,10,2,29,29,1,2,0,17.117466,17.117466,0,0,0,0,0,0,0,0,1,0,1,2.9189324,0,38.77,63.46,57.33,53.46,6.666666666666667,1,1,0,0,13,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14954,18296,32580,32581,-9,-9,1,1,33,0,2,0,2,2,-9,0,2,7.5192175,7.9123363,0,15,-1,15.683666,0,3,2,2021,11,0,24,30,1,0,0,10.264864,10.264864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,47.04,41.04,47.27,5,2,3,0,0,10,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32581,32580,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.6171646,6.6094036,0,15,1,-26.51169,0,3,2,2021,16,4,15,15,1,4,0,6.5242028,6.5242028,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.04,47.27,48.66,47.04,3.333333333333333,2,3,0,0,7,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32582,-9,32581,32580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.56647,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32583,-9,32581,32580,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.03546,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14955,18297,32584,32585,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.6489372,7.8091068,50,2,-49.101677,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,2.4193368,123.48398,24.704206,0,1,1,0,0,7.8328171,54,46,52,46,8,2,3,0,0,7,4,3,1,639.5,702854.31,291065.44,315060.75,0,0,0,3123.2292 +14955,18297,32585,32584,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.0200706,7.0713677,50,-2,-48.751842,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.7982001,52,46,54,46,8,1,1,0,0,0,4,3,1,639.5,702854.31,291065.44,315060.75,0,0,0,3123.2292 +14956,18298,32586,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.4993305,7.7939968,0,0,0,-1130.2037,0,2,2,2021,12,2,30,30,1,2,0,7.294848,7.294848,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,5,1,1,0,0,12,7,3,1,369,19952.592,-98438.156,0,0,0,0,955.75592 +14956,18299,32587,-9,32586,-9,1,1,22,0,0,0,1,1,1,0,5,8.0495977,8.1856546,0,0,0,-1003.5967,-9,2,-9,2021,6,0,36,0,1,0,1,10.061092,10.061092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,7,4,1,202,42356.008,-2922.1641,0,0,0,0,986.39099 +14957,18300,32588,32589,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.9573259,7.2243848,0,8,6,-35.406322,0,3,3,2021,6,0,24,24,1,0,0,4.9261456,4.9261456,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.66,52.4,41.45,60.44,8.333333333333334,1,1,0,0,10,9,5,1,814.5,1110629.6,822379.25,191028.78,0,0,6032.0723,3658.7344 +14957,18300,32589,32588,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6264715,8.8835335,0,8,-6,16.994867,0,3,3,2021,17,5,55,60,1,5,0,11.295887,11.295887,.05,.05,0,0,0,0,0,2,0,0,0,3.1762486,0,41.45,60.44,62.66,52.4,8.333333333333334,1,1,0,0,10,9,5,1,814.5,1110629.6,822379.25,191028.78,0,0,6032.0723,3658.7344 +14958,18301,32590,32591,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0197811,8.0301981,0,5,1,-53.419662,0,-9,-9,2021,7,0,39,39,1,0,0,7.7318316,7.7318316,0,0,0,0,0,0,0,0,0,0,0,0,0,47.49,55.02,31.83,59.68,10,1,1,0,0,4,2,4,1,915.5,28648.352,-26565.674,0,0,0,0,2655.574 +14958,18301,32591,32590,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.7959285,7.5587635,4.4906373,5,-1,40.81406,0,2,2,2021,18,6,33,33,1,6,0,7.3493018,7.3493018,.05,.05,0,0,0,0,0,0,0,0,0,4.791122,0,31.83,59.68,47.49,55.02,6.666666666666667,1,1,0,0,6,2,4,1,915.5,28648.352,-26565.674,0,0,0,0,2655.574 +14959,18302,32592,32593,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.6049609,7.7996149,0,32,11,-136.21416,0,2,2,2021,5,0,40,40,1,0,0,6.4547892,6.4547892,.05,.05,0,0,0,0,0,2,1,1,0,5.7743163,0,57.73,54.53,49,48,8.333333333333334,2,3,0,0,10,5,5,1,701,771074.13,499751.69,132664.13,0,0,0,5166.2539 +14959,18302,32593,32592,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7546129,8.8185415,0,7,-11,-187.33604,0,-9,-9,2021,11,0,40,40,1,2,0,19.047997,19.047997,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,57.73,54.53,7,2,3,0,0,1,5,5,1,701,771074.13,499751.69,132664.13,0,0,0,5166.2539 +14959,18303,32594,-9,32593,32592,1,1,25,0,0,0,1,1,-9,0,4,5.7076631,5.8026218,0,0,0,-1103.1912,0,1,1,2021,15,4,30,20,1,4,1,1.0695819,1.0695819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.62,46.46,-9,-9,5,2,3,0,0,3,5,2,1,232,-204017.41,0,0,0,0,0,592.13141 +14960,18304,32595,32596,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,57,2,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,7.234787,124.25896,66.155136,0,1,1,0,0,0,54,45,52,45,8,4,5,0,0,0,8,2,0,286,508822.75,0,324763.72,0,0,0,2103.8337 +14960,18304,32596,32595,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,57,-2,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52,45,54,45,8,4,5,0,0,0,8,2,0,286,508822.75,0,324763.72,0,0,0,2103.8337 +14961,18305,32597,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,0,0,0,0,-998.73633,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.0434399,0,51.8,40.09,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,659,0,0,0,0,0,0,628.33746 +14962,18306,32598,32599,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.9358773,7.0069423,0,42,-1,58.005234,0,3,3,2021,7,0,49,30,1,0,0,2.3624926,2.3624926,0,0,0,0,0,0,0,0,0,0,0,7.6084604,0,57.33,53.46,59.71,40.18,8.333333333333334,1,1,0,1,11,5,3,0,399.5,291313.38,72494.047,0,0,0,0,3490.4736 +14962,18306,32599,32598,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.4058781,7.5523486,0,42,1,52.107857,0,2,3,2021,10,0,90,90,1,0,0,2.2792296,2.2792296,.05,.05,.05,0,0,0,0,0,0,0,0,7.5686178,0,59.71,40.18,57.33,53.46,8.333333333333334,1,1,0,0,11,5,3,0,399.5,291313.38,72494.047,0,0,0,0,3490.4736 +14963,18307,32600,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.420804,8.4410009,0,0,0,-1073.9023,0,2,2,2021,12,0,36,36,1,0,0,9.5379801,9.5379801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.23,50.71,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,506,42185.039,-26036.998,0,0,0,0,885.47168 +14963,18308,32601,-9,-9,32600,1,0,25,0,0,0,2,2,-9,0,2,8.1445313,7.9840069,0,0,0,-937.74915,0,2,2,2021,12,0,35,35,1,0,1,8.8102427,8.8102427,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,62,96427.797,0,0,0,3293.2744,2441.7571,933.42328 +14964,18309,32602,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.9723,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,8,1,0,2716,-103751.43,0,0,0,0,0,798.18719 +14964,18310,32603,32604,32602,-9,1,1,33,0,0,0,1,1,-9,0,3,8.5741539,8.4246883,0,3,5,115.29408,0,3,3,2021,11,0,35,35,1,0,0,16.045826,16.045826,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.28,50.19,32.71,51.14,8.333333333333334,2,3,0,0,11,8,5,0,240.5,-81513.453,155197.52,0,0,8757.293,0,2842.4014 +14964,18310,32604,32603,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.9814916,7.8776293,0,3,-5,124.0289,0,-9,-9,2021,11,2,38,41,1,2,0,9.776186,9.776186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.71,51.14,49.28,50.19,3.333333333333333,2,3,0,0,11,8,5,0,240.5,-81513.453,155197.52,0,0,8757.293,0,2842.4014 +14965,18311,32605,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.3797178,7.4729424,0,0,-1059.9949,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.6365395,0,23.736954,0,1,1,0,.61767286,7.4312963,66.32000000000001,31.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,1957,364072.59,103717.48,61832.305,45758.422,0,1813.4813,1500.0977 +14966,18312,32606,32607,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.715519,9.9335766,0,6,3,-74.943756,0,2,2,2021,10,0,50,50,1,0,0,32.912949,32.912949,.05,.05,0,0,0,0,0,0,0,0,0,1.8003581,0,52,54.51,44.02,50.32,5,1,1,0,0,9,11,5,1,990.5,5799046,4711103.5,974585.5,0,10743.046,0,8153.8213 +14966,18312,32607,32606,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.1992817,8.185463,0,6,-3,-40.972786,0,1,1,2021,8,0,48,38,1,0,0,9.2739782,9.2739782,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,50.32,52,54.51,8.333333333333334,1,1,0,0,9,11,5,1,990.5,5799046,4711103.5,974585.5,0,10743.046,0,8153.8213 +14966,18313,32608,-9,32607,32606,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-945.7998,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,51.43,-9,-9,5,1,1,0,0,0,11,1,1,523,-76196.508,0,0,0,0,0,0 +14967,18314,32609,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1002.0357,0,2,-9,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.64,39.03,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,538,-21067.539,154067,69257.563,0,0,0,986.42682 +14968,18315,32610,32611,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2744741,8.2635345,0,4,4,-3.8026226,0,-9,-9,2021,21,7,38,38,1,7,0,10.10383,10.10383,.05,.05,0,0,0,0,0,0,0,0,0,2.6344235,0,43.36,46.75,43.88,51.23,5,1,1,0,0,8,10,5,1,680.5,296945.56,60681.598,387830.38,175670.86,0,0,2922.7563 +14968,18315,32611,32610,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6121101,8.5349226,0,4,-4,-24.925837,0,2,2,2021,11,3,37,37,1,3,0,16.174915,16.174915,0,0,0,0,0,0,0,0,0,0,0,1.1290952,0,43.88,51.23,43.36,46.75,8.333333333333334,1,1,0,0,7,10,5,1,680.5,296945.56,60681.598,387830.38,175670.86,0,0,2922.7563 +14969,18316,32612,32613,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,6.7788968,7.1269059,4.9173999,19,11,-128.30029,0,3,3,2021,6,0,14,12,1,0,0,7.0599222,7.0599222,.05,.05,0,0,0,0,0,112,1,0,1,0,4.39219,67.43000000000001,44.57,52.23,55.6,10,1,1,0,0,13,4,4,0,1436,112283.77,49071.887,192194.28,75410.695,0,10443.068,3196.3694 +14969,18316,32613,32612,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,8.7027702,8.5774183,0,19,-11,12.893589,0,3,3,2021,8,0,48,54,1,0,0,12.681339,12.681339,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,52.23,55.6,67.43000000000001,44.57,10,1,1,0,0,14,4,4,0,1436,112283.77,49071.887,192194.28,75410.695,0,10443.068,3196.3694 +14969,18317,32614,-9,32612,32613,1,0,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1099.6548,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,4,2,0,443,286939.41,0,0,0,0,0,801.52594 +14969,18318,32615,-9,32612,32613,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1160.1488,0,2,2,2021,11,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.48,23.1,-9,-9,10,1,1,1,0,0,4,1,0,169,0,0,0,0,0,0,2010.9491 +14970,18319,32616,32617,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.245223,8.3624659,0,3,2,-13.486345,0,-9,-9,2021,6,0,8,46,1,0,0,60.467072,60.467072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,2,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14970,18319,32617,32616,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.5339479,6.9111948,0,3,-2,-13.177993,0,2,-9,2021,7,0,14,39,1,0,0,7.7241631,7.7241631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,8,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14970,18319,32618,-9,32617,32616,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.8989,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14971,18320,32619,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.8150549,6.6971121,0,0,-883.19574,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5419488,46.71,44.73,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1755,692444.25,113599.99,157104.63,0,0,0,824.32465 +14972,18321,32620,32621,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.6523085,7.244154,0,8,0,56.528629,0,3,-9,2021,12,0,38,39,1,0,0,5.6667786,5.6667786,0,0,0,0,0,0,0,0,0,0,0,0,0,36.02,46.73,44.42,43.19,3.333333333333333,1,1,0,0,9,11,4,0,457,123407.92,77789.5,129322.78,0,0,2641.9993,1545.4655 +14972,18321,32621,32620,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.9404583,7.4001846,0,8,0,87.983139,0,3,-9,2021,12,0,40,40,1,0,0,8.2833977,8.2833977,0,0,0,0,0,0,0,0,0,0,0,0,0,44.42,43.19,36.02,46.73,5,1,1,0,0,9,11,4,0,457,123407.92,77789.5,129322.78,0,0,2641.9993,1545.4655 +14973,18322,32622,32623,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,8.8532715,9.1866398,7.2235942,7,2,26.053068,0,-9,-9,2021,9,0,44,50,1,0,0,20.365341,20.365341,.05,.05,0,0,0,0,0,0,1,1,0,4.008368,7.2719498,58.47,44.69,18.34,43.34,6.666666666666667,1,1,0,0,6,10,5,1,660.5,1068601.9,594049.63,456270.63,111566.62,0,0,5498.0928 +14973,18322,32623,32622,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.854661,8.9009838,0,40,-2,-30.859997,0,2,2,2021,27,10,60,47,1,10,0,16.14216,16.14216,.05,.05,0,0,0,0,0,7,1,1,0,0,0,18.34,43.34,58.47,44.69,3.333333333333333,1,1,0,0,7,10,5,1,660.5,1068601.9,594049.63,456270.63,111566.62,0,0,5498.0928 +14974,18323,32624,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-903.22778,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.129107,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,714,-1984.6108,0,48146.859,0,0,0,238.67082 +14975,18324,32625,32626,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.7228379,6.80897,2,-1,-69.818687,0,3,3,2021,10,2,0,24,4,2,0,0,0,0,0,0,1,7.4354992,56.589977,64.785767,0,1,1,0,0,6.7326541,64.3,16.47,38.56,23.07,10,1,1,0,0,8,12,2,0,599.5,1418479.9,138469.14,405357.63,0,0,0,2820.0474 +14975,18324,32626,32625,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,2,1,60.451611,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,51.684422,0,0,1,1,0,0,0,38.56,23.07,64.3,16.47,5,1,1,0,0,0,12,2,0,599.5,1418479.9,138469.14,405357.63,0,0,0,2820.0474 +14976,18325,32627,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,2,8.7714653,8.8911972,6.871376,0,0,-961.73175,0,2,3,2021,13,1,37,38,1,1,0,19.352234,19.352234,0,0,0,0,0,0,0,0,1,1,0,7.3899264,0,34.54,45.47,-9,-9,5,1,1,0,1,10,13,4,1,276,1023570,189269.7,386497.72,35468.676,0,0,2463.1909 +14977,18326,32628,-9,32630,32631,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.76709,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32629,-9,32630,32631,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.8105,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32630,32631,-9,-9,1,0,30,1,3,0,2,2,-9,0,2,0,0,0,14,-2,-13.521985,0,2,2,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,32.67,57.95,38.49,8.333333333333334,1,1,0,0,8,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32631,32630,-9,-9,1,1,32,1,3,0,2,2,-9,0,2,8.6914368,8.8098831,0,7,2,43.888622,0,-9,-9,2021,8,1,54,52,1,1,0,14.481063,14.481063,0,0,0,0,0,0,0,0,1,1,0,0,0,57.95,38.49,55.59,32.67,10,1,1,0,0,9,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32632,-9,32630,32631,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2516,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14978,18327,32633,32634,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7644296,7.9609113,0,7,-2,88.778778,0,3,3,2021,11,0,40,70,1,0,0,7.4588685,7.4588685,0,0,0,0,0,0,0,7,0,0,0,4.1150446,0,50.03,52.62,59.32,49.66,8.333333333333334,1,1,0,0,8,9,5,1,588,1041552.8,486289.78,488296.19,79035.453,0,0,8782.6904 +14978,18327,32634,32633,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.6595535,9.6290836,0,7,2,-10.143785,0,2,2,2021,6,0,30,42,1,0,0,62.40855,62.40855,.05,.05,.05,0,0,0,0,2,0,0,0,7.5607715,0,59.32,49.66,50.03,52.62,8.333333333333334,1,1,0,0,8,9,5,1,588,1041552.8,486289.78,488296.19,79035.453,0,0,8782.6904 +14978,18328,32635,-9,32633,32634,1,1,24,0,0,0,2,2,-9,0,4,6.659771,6.7284274,0,0,0,-1062.6793,0,3,2,2021,4,0,35,30,1,0,1,3.5609837,3.5609837,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,793,-74918.125,-54308.02,0,0,41211.027,0,294.40909 +14978,18329,32636,-9,32633,32634,1,1,23,0,0,0,2,2,-9,0,3,4.4415627,4.5327377,0,0,0,-1101.1494,0,3,2,2021,12,0,40,32,1,0,1,.28275123,.28275123,0,0,0,0,0,0,0,0,0,0,0,2.946054,0,58.47,50.22,-9,-9,1.666666666666667,1,1,0,0,5,9,2,1,645,0,0,0,0,0,0,451.18549 +14979,18330,32637,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.05127,-9,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.058408882,0,40.35,59.99,-9,-9,8.333333333333334,1,1,0,0,11,9,1,0,240,255706.67,200776.88,0,0,931.13965,3547.2063,179.91167 +14980,18331,32638,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.6573954,8.4863672,0,0,0,-1072.6411,0,2,2,2021,18,6,38,42,1,6,0,13.160466,13.160466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.47,55.44,-9,-9,6.666666666666667,3,4,0,0,10,8,5,1,593,1267909.9,980788.31,214747.38,2748.854,0,0,1582.1713 +14981,18332,32639,32640,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,8.3946705,8.136282,0,17,2,26.125999,0,-9,-9,2021,20,5,42,39,1,5,0,11.830979,11.830979,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.42,60.08,30.59,51.49,3.333333333333333,1,1,0,0,13,8,5,1,542,394111.13,252375.69,396394.44,210559.89,0,0,3626.2329 +14981,18332,32640,32639,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,8.6696949,8.6593075,0,12,-2,-52.256783,0,2,1,2021,9,2,42,42,1,2,0,13.199677,13.199677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.59,51.49,14.42,60.08,3.333333333333333,4,5,0,0,10,8,5,1,542,394111.13,252375.69,396394.44,210559.89,0,0,3626.2329 +14982,18333,32641,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.3870993,5.3223224,0,0,-1021.2551,-9,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1378164,56.94,49.53,-9,-9,10,1,1,0,0,0,6,2,1,1177,219998.08,0,206925.56,0,0,0,949.58704 +14983,18334,32642,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,8.9516573,8.9712524,0,0,-1023.1243,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.0411329,9.2389555,59.04,51.29,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1280,750360.13,0,437217.5,0,0,0,12103.57 +14984,18335,32643,-9,32644,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.27625,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,320,204656.63,204018.03,240383.09,90263.484,0,0,2327.4761 +14984,18335,32644,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9759636,7.6377487,0,0,0,-1037.2992,0,2,-9,2021,20,8,40,35,1,8,0,7.6919899,7.6919899,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,29.02,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,320,204656.63,204018.03,240383.09,90263.484,0,0,2327.4761 +14985,18336,32645,32646,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,9.5338392,9.2714176,0,5,0,-14.681265,-9,2,3,2021,8,0,80,0,1,0,0,14.846546,14.846546,0,0,0,0,0,0,0,0,1,1,0,6.5440559,0,54.1,59.11,46.8,55.75,1.666666666666667,1,1,0,0,9,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14985,18336,32646,32645,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,7.717145,7.6536479,0,5,0,79.8162,0,1,3,2021,13,1,32,29,1,1,0,5.7701926,5.7701926,0,0,0,0,0,0,0,0,1,1,0,7.2333674,0,46.8,55.75,54.1,59.11,8.333333333333334,1,1,0,0,7,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14985,18336,32647,-9,32646,32645,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1167.4495,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14986,18337,32648,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1130.8615,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.41,45.11,-9,-9,1.666666666666667,1,1,0,0,9,12,1,1,393,172821.98,0,153330.81,0,0,0,579.18536 +14987,18338,32649,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,9.0704689,9.020155,0,0,0,-1027.3429,0,1,2,2021,12,0,42,42,1,0,0,20.305092,20.305092,.05,.05,0,0,0,0,0,0,0,0,0,1.4867967,0,46.23,49.17,-9,-9,1.666666666666667,2,3,0,0,6,8,5,0,257,462582.16,94956.125,460598.25,0,0,0,3687.1638 +14987,18339,32650,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.7473121,7.5608191,0,0,0,-915.05817,-9,-9,-9,2021,11,0,40,0,1,2,0,6.8735909,6.8735909,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,4,6,0,0,1,8,3,0,1426,44174.309,0,0,0,0,0,1366.0723 +14988,18340,32651,-9,32653,32652,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1052.9243,-9,2,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1879449,0,58.47,50.22,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14988,18340,32652,32653,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,9.581893,9.7333298,8.3068933,39,5,60.567944,0,2,2,2021,9,0,49,49,1,0,0,38.588299,38.588299,0,0,0,0,0,0,0,0,0,0,0,7.428371,8.9588842,47.41,56.4,61.43,43.34,8.333333333333334,1,1,0,0,7,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14988,18340,32653,32652,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,0,0,0,39,-5,-62.800591,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.325959,0,61.43,43.34,47.41,56.4,10,1,1,0,0,0,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14989,18341,32654,32655,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8357162,8.8511314,0,27,-1,63.153526,0,2,1,2021,10,1,64,60,1,1,0,14.63081,14.63081,.05,.05,0,0,0,0,0,0,1,1,0,5.5951056,0,52.99,51.28,45.91,59.89,6.666666666666667,1,1,0,0,6,5,4,1,452,263589.19,42140.563,347854.19,208443.55,0,0,3931.3032 +14989,18341,32655,32654,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.9052758,7.6661243,0,27,1,-85.684906,0,2,2,2021,7,0,37,35,1,0,0,10.435781,10.435781,.05,.05,.05,0,0,0,0,0,1,1,0,1.1369259,0,45.91,59.89,52.99,51.28,6.666666666666667,1,1,0,0,6,5,4,1,452,263589.19,42140.563,347854.19,208443.55,0,0,3931.3032 +14990,18342,32656,32657,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4701748,8.6690674,0,7,5,-105.48901,0,-9,-9,2021,11,0,47,47,1,0,0,15.910013,15.910013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,52.27,58.55,6.666666666666667,1,1,0,0,5,2,5,1,303,236568.28,202008.33,226116.23,173093.69,5101.6748,0,4638.3838 +14990,18342,32657,32656,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.3068743,8.0317955,0,7,-5,80.738831,0,2,1,2021,7,0,40,42,1,0,0,12.370559,12.370559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.27,58.55,44.19,56.73,8.333333333333334,4,2,0,0,9,2,5,1,303,236568.28,202008.33,226116.23,173093.69,5101.6748,0,4638.3838 +14991,18343,32658,32659,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,9.3185263,9.7145176,8.4317055,7,14,-105.16734,0,2,2,2021,6,0,35,35,1,0,0,30.921944,30.921944,0,0,.05,0,0,0,0,0,0,0,0,1.9379238,8.6102962,62.39,56.71,58.89,48.6,8.333333333333334,1,1,0,0,14,8,5,1,1635,6929679,1750503.5,2981696,0,0,0,6002.3047 +14991,18343,32659,32658,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.1842518,8.5399952,0,7,-14,-13.218,-9,-9,-9,2021,8,0,20,0,1,0,0,22.412159,22.412159,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,62.39,56.71,8.333333333333334,1,1,0,0,4,8,5,1,1635,6929679,1750503.5,2981696,0,0,0,6002.3047 +14992,18344,32660,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.1210003,7.1906772,0,0,-941.67523,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.12597083,6.7908483,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,820,195698.86,236254.05,0,0,0,0,968.19135 +14993,18345,32661,-9,32662,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1092.2015,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,1,0,1283,94255.656,0,0,0,4071.7627,360.99817,0 +14993,18345,32662,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1096.0923,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.27,19.65,-9,-9,3.333333333333333,1,1,0,0,6,9,1,0,1283,94255.656,0,0,0,4071.7627,360.99817,0 +14994,18346,32663,32664,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9947605,9.3224688,0,8,-1,-115.94061,0,2,2,2021,15,3,38,36,1,3,0,32.015682,32.015682,.05,.05,0,0,0,0,0,0,0,0,0,3.2620203,0,31.63,63.72,45.91,59.89,5,1,1,0,0,10,8,5,1,611,1076587,894676.63,0,0,0,409.91666,5573.27 +14994,18346,32664,32663,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.5501709,8.8496695,0,8,1,-6.5590539,0,2,1,2021,10,0,46,37,1,0,0,17.169329,17.169329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.63,63.72,1.666666666666667,1,1,0,0,8,8,5,1,611,1076587,894676.63,0,0,0,409.91666,5573.27 +14995,18347,32665,32667,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,8.7124319,7.9796104,0,3,-5,-128.02135,0,-9,-9,2021,8,1,40,35,1,1,0,18.979158,18.979158,.05,.05,0,0,0,0,0,0,1,1,0,4.4577579,0,58.05,54.52,31.38,54.62,8.333333333333334,1,1,0,0,10,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14995,18347,32666,-9,32667,32665,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.8899,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14995,18347,32667,32665,-9,-9,1,0,40,1,1,0,1,1,-9,0,3,8.6317749,8.678462,0,3,5,-76.744774,0,-9,-9,2021,18,7,32,37,1,7,0,21.230999,21.230999,.05,.05,0,0,0,0,0,0,1,1,0,3.0152545,0,31.38,54.62,58.05,54.52,8.333333333333334,1,1,0,0,14,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14996,18348,32668,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-968.05792,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.38,25.53,-9,-9,10,1,1,0,0,0,13,1,0,2817,217579.02,0,0,0,0,0,2522.3945 +14997,18349,32669,32670,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8136387,8.8049173,0,28,-2,-67.908821,0,2,2,2021,19,7,45,45,1,7,0,18.276657,18.276657,.05,.05,0,0,0,0,0,0,0,0,0,2.9245389,0,39.33,58.88,47.78,44.19,8.333333333333334,1,1,0,0,10,5,5,1,692.5,1855098.8,1505020.8,330829.38,0,0,0,5154.8818 +14997,18349,32670,32669,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8971081,8.8627567,0,28,2,-44.888443,0,2,2,2021,11,1,49,47,1,1,0,17.135456,17.135456,.05,.05,0,0,0,0,0,0,0,0,0,2.3566477,0,47.78,44.19,39.33,58.88,8.333333333333334,1,1,0,0,10,5,5,1,692.5,1855098.8,1505020.8,330829.38,0,0,0,5154.8818 +14998,18350,32671,-9,32673,32672,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.1791,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14998,18350,32672,32673,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8280945,7.8558984,0,19,9,133.06136,0,-9,-9,2021,13,2,40,40,1,2,0,7.9468498,7.9468498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.65,56.19,43.93,58.46,6.666666666666667,1,1,0,0,7,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14998,18350,32673,32672,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.5370793,7.5687103,0,19,0,-31.199015,0,2,2,2021,14,2,40,44,1,2,0,7.5688558,7.5688558,0,0,0,0,0,0,0,0,1,1,0,0,0,43.93,58.46,39.65,56.19,6.666666666666667,1,1,0,0,9,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14999,18351,32674,32675,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.4418879,6.262012,48,10,-14.760199,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4810071,59.89,42.51,55.37,48.71,8.333333333333334,1,1,0,0,0,7,4,1,503,1677322.3,426738.44,860340.38,0,26310.979,0,3803.124 +14999,18351,32675,32674,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.4579058,8.5008307,48,-10,15.262157,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1701493,8.239234,55.37,48.71,59.89,42.51,8.333333333333334,1,1,0,0,9,7,4,1,503,1677322.3,426738.44,860340.38,0,26310.979,0,3803.124 +15000,18352,32676,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,1,8.4596195,8.1261749,0,0,0,-974.17145,0,3,3,2021,23,8,39,40,1,8,1,13.509538,13.509538,0,0,0,0,0,0,0,2,1,0,1,0,0,41.56,21.5,-9,-9,3.333333333333333,2,3,0,0,13,8,5,0,757.5,60382.047,0,0,0,0,0,1759.6854 +15000,18352,32677,-9,32676,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1139.6433,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,0,757.5,60382.047,0,0,0,0,0,1759.6854 +15000,18353,32678,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-953.25909,-9,3,3,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.8961959,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,2,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18353,32679,-9,-9,32678,1,1,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1043.2592,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18353,32680,-9,-9,32678,1,0,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-967.64587,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18354,32681,-9,-9,-9,1,0,19,0,0,0,1,1,1,0,3,0,0,0,0,0,-1089.3904,-9,3,3,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41,55,-9,-9,5,2,3,1,0,0,8,2,0,1326,62890.57,0,0,0,0,0,1241.0875 +15001,18355,32682,32683,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.0791063,7.0185938,37,1,-40.657352,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,76.904739,0,0,1,0,1,0,7.1293535,51.41,56.15,54.96,53.17,10,1,1,0,0,7,2,3,1,2182.5,790750.13,335356.13,267061.94,0,0,0,1017.1886 +15001,18355,32683,32682,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1810846,7.0326734,37,-1,-87.248718,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.1698275,54.96,53.17,51.41,56.15,6.666666666666667,1,1,0,0,0,2,3,1,2182.5,790750.13,335356.13,267061.94,0,0,0,1017.1886 +15001,18356,32684,-9,32683,32682,1,1,35,0,0,0,1,1,-9,0,3,7.785728,7.25385,0,0,0,-1127.6475,0,2,2,2021,9,1,10,10,1,1,0,24.761282,24.761282,.05,.05,0,0,0,0,0,0,1,0,1,2.7608724,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,1,8,2,3,1,1363,-22240.516,-25436.592,0,0,0,0,1509.9218 +15001,18357,32685,-9,32683,32682,1,1,34,0,0,0,1,1,-9,0,3,6.1656184,6.3402095,0,0,0,-1036.2793,0,2,2,2021,30,10,40,40,1,10,0,1.210101,1.210101,0,0,0,0,0,0,0,0,1,0,1,0,0,16.21,63.38,-9,-9,0,1,1,0,1,10,2,2,1,402,-175874.23,0,0,0,0,0,541.27112 +15002,18358,32686,32687,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.5220003,8.6329346,0,3,-2,-104.33964,0,-9,-9,2021,20,9,36,36,1,9,0,15.930533,15.930533,0,0,0,0,0,0,0,0,0,0,0,5.8213148,0,31.75,58.32,25.08,62.98,5,1,1,0,0,8,9,4,1,4540,2376140.5,1365961.8,1292982,310917.75,0,0,1567.6355 +15002,18358,32687,32686,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,3,2,52.630539,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.0793028,0,25.08,62.98,31.75,58.32,3.333333333333333,1,1,1,0,3,9,4,1,4540,2376140.5,1365961.8,1292982,310917.75,0,0,1567.6355 +15003,18359,32688,32689,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.0648537,8.0262041,0,9,-4,5.6064434,0,3,2,2021,19,7,35,35,1,7,0,10.080188,10.080188,0,0,0,0,0,0,0,0,1,1,0,2.2647114,0,39.25,52.26,54.78,45.49,3.333333333333333,1,1,0,0,10,12,5,1,534.5,1421664.5,1179828.9,280837.94,0,0,0,4014.7358 +15003,18359,32689,32688,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.3479052,8.634923,0,9,4,32.124557,0,3,3,2021,12,0,40,40,1,0,0,13.289404,13.289404,.05,.05,0,0,0,0,0,0,1,1,0,2.7391877,0,54.78,45.49,39.25,52.26,3.333333333333333,1,1,0,0,10,12,5,1,534.5,1421664.5,1179828.9,280837.94,0,0,0,4014.7358 +15004,18360,32690,32691,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8111887,6.949945,35,3,9.1878281,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8377156,6.8046451,53.54,49.68,56.01,27.43,8.333333333333334,1,1,0,0,0,6,3,1,601,923354.06,619664.88,199304.75,0,3238.9668,16377.49,3193.2671 +15004,18360,32691,32690,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.5924811,7.7532015,34,-3,23.046518,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8056355,7.7203622,56.01,27.43,53.54,49.68,8.333333333333334,1,1,0,0,0,6,3,1,601,923354.06,619664.88,199304.75,0,3238.9668,16377.49,3193.2671 +15005,18361,32692,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8713484,9.0728254,0,0,0,-1071.6516,0,2,3,2021,20,7,55,55,1,7,0,13.124238,13.124238,.05,.05,0,0,0,0,0,7,0,0,0,0,0,31.15,45.61,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,585,522065.91,103396.36,234232.47,0,0,0,2783.2275 +15005,18362,32693,-9,32692,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9360409,8.0243769,0,0,0,-1113.4771,0,1,-9,2021,15,3,40,8,1,3,1,8.0392809,8.0392809,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.26,50.66,-9,-9,1.666666666666667,1,1,0,0,7,11,4,1,4510,-86263.992,92717.078,0,0,0,0,1613.6975 +15006,18363,32694,32695,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.3383322,8.3780346,46,7,7.6151056,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6368132,8.2882738,55.96,49.93,64.23,44.69,8.333333333333334,1,1,0,0,0,4,4,1,1934,1451319.9,829684,324214.06,0,0,0,3732.6611 +15006,18363,32695,32694,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.3204355,6.5903869,46,-7,-5.9809241,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0451519,6.3552799,64.23,44.69,55.96,49.93,8.333333333333334,1,1,0,0,8,4,4,1,1934,1451319.9,829684,324214.06,0,0,0,3732.6611 +15007,18364,32696,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.8705192,6.7185168,0,0,-974.97137,0,-9,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5737026,6.638854,31.63,53.07,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1299,0,0,0,0,0,0,1129.9156 +15008,18365,32697,32698,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.5290594,8.6433849,41,1,22.479622,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2814736,8.8244581,50.54,62.09,57.16,56.15,6.666666666666667,1,1,0,0,5,7,4,1,447.5,2293283.3,1382469.3,569821.5,0,0,0,2979.5854 +15008,18365,32698,32697,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,4.8871651,5.1411223,41,-1,50.651142,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8223352,4.9952369,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,5,7,4,1,447.5,2293283.3,1382469.3,569821.5,0,0,0,2979.5854 +15009,18366,32699,32700,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.2548428,7.0813985,0,20,-8,-40.686459,0,2,2,2021,11,0,15,8,1,0,0,12.443261,12.443261,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.58,22.16,40.7,49.98,8.333333333333334,1,1,0,0,12,2,5,1,377.5,379719.56,274985.94,143129.16,49805.422,3494.8801,3317.6938,2928.2979 +15009,18366,32700,32699,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.85217,9.0522594,0,20,8,-18.157955,0,2,2,2021,17,6,30,38,1,6,0,25.228767,25.228767,.05,.05,0,0,0,0,0,0,0,0,0,6.1480041,0,40.7,49.98,58.58,22.16,8.333333333333334,1,1,0,0,15,2,5,1,377.5,379719.56,274985.94,143129.16,49805.422,3494.8801,3317.6938,2928.2979 +15010,18367,32701,32702,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,50,-5,-83.815659,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.55,47.38,48.68,32.15,8.333333333333334,1,1,0,0,0,11,3,1,471.5,1153322.8,418387.03,398410.88,0,0,0,2321.0823 +15010,18367,32702,32701,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.7332191,7.4950132,50,5,-6.3087354,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6601973,48.68,32.15,52.55,47.38,8.333333333333334,1,1,0,0,0,11,3,1,471.5,1153322.8,418387.03,398410.88,0,0,0,2321.0823 +15011,18368,32703,32705,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5574636,8.794302,0,3,1,-17.366693,0,2,2,2021,10,0,45,42,1,1,0,11.619607,11.619607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,53.5,51,52.08,8.333333333333334,1,1,0,0,12,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32704,-9,32705,32703,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5741,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32705,32703,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1343598,7.0636086,0,3,-1,-40.187054,0,2,-9,2021,12,0,17,17,1,0,0,8.0833015,8.0833015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,52.08,45.32,53.5,6.666666666666667,1,1,0,0,11,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32706,-9,32705,32703,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.4587,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15012,18369,32707,32708,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-1,-3.5705192,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,51,60.12,54.8,6.666666666666667,1,1,0,0,0,7,2,0,431.5,878174.75,0,864241.25,0,0,0,566.89331 +15012,18369,32708,32707,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,4.3370333,4.1424513,58,1,-81.331718,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8136077,0,0,1,1,0,0,4.4217405,60.12,54.8,54,51,8.333333333333334,1,1,0,0,8,7,2,0,431.5,878174.75,0,864241.25,0,0,0,566.89331 +15013,18370,32709,-9,32712,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.2397,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32710,-9,32712,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.63196,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32711,-9,32712,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.9291,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32712,-9,-9,-9,1,0,27,1,3,0,3,3,-9,0,4,0,0,0,0,0,-1069.1245,0,2,2,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.32,59.62,-9,-9,8.333333333333334,3,4,1,1,1,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15014,18371,32713,32714,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,1.8583591,1.7540233,52,-4,31.277534,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.4053302,2.0616038,55.56,51.53,50,47,10,2,3,0,0,8,4,2,1,330,384273.5,146469.13,138481.73,0,0,0,1031.0775 +15014,18371,32714,32713,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5344958,6.603559,10,4,95.379448,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.970171,50,47,55.56,51.53,7,2,3,0,0,0,4,2,1,330,384273.5,146469.13,138481.73,0,0,0,1031.0775 +15015,18372,32715,32716,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8202581,8.6807089,0,9,9,-58.446777,0,2,2,2021,12,0,37,45,1,0,0,24.007996,24.007996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,32.83,24.48,3.333333333333333,1,1,0,0,12,7,5,1,1413.5,183264.8,149018.09,255525.78,32333.473,0,0,3530.4348 +15015,18372,32716,32715,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,7.8280892,7.8456211,0,26,0,14.024414,0,2,3,2021,16,4,15,10,1,4,0,18.494829,18.494829,.05,.05,0,0,0,0,0,0,1,1,0,5.340476,0,32.83,24.48,48.87,58.55,3.333333333333333,1,1,0,1,12,7,5,1,1413.5,183264.8,149018.09,255525.78,32333.473,0,0,3530.4348 +15016,18373,32717,-9,-9,-9,1,1,34,0,0,0,2,2,-9,1,5,0,0,0,0,0,-971.31055,-9,2,2,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.49,62.46,-9,-9,10,1,1,0,1,0,10,1,0,348,35620,0,0,0,0,0,1079.1549 +15017,18374,32718,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.6140442,8.1337929,0,0,0,-1108.5977,0,2,2,2021,12,1,38,40,1,1,0,11.582185,11.582185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,283,6917.1841,89520.781,0,0,2715.3047,2875.769,2420.3577 +15018,18375,32719,-9,32720,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.83136,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,281,-172888.91,0,0,0,7740.4385,0,868.07574 +15018,18375,32720,-9,-9,-9,1,0,33,1,3,0,2,2,-9,1,4,0,0,0,0,0,-1066.3246,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,18.87,64.38,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,281,-172888.91,0,0,0,7740.4385,0,868.07574 +15019,18376,32721,-9,32722,32724,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.5451,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32722,32724,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,6.8094964,6.3586378,0,9,1,29.352757,-9,3,3,2021,11,0,15,0,1,0,0,5.3289967,5.3289967,0,0,0,0,0,0,0,0,0,0,0,0,0,48,52.43,54.2,57.49,8.333333333333334,1,1,0,0,8,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32723,-9,32722,32724,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.71228,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32724,32722,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.3864994,10.189513,0,8,-1,7.4681296,-9,2,2,2021,7,0,52,0,1,0,0,36.662632,36.662632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,52.43,8.333333333333334,1,1,0,0,12,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15020,18377,32725,32726,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.8093443,9.0428581,0,32,-3,-61.675629,0,2,3,2021,6,0,34,34,1,0,0,23.091457,23.091457,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.69,57.47,56.4,37.77,8.333333333333334,1,1,0,0,9,9,5,1,797.5,941205.38,344014.88,410781.56,0,0,0,3160.5129 +15020,18377,32726,32725,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2081261,8.3133211,0,7,3,-39.878078,0,-9,-9,2021,8,0,60,60,1,0,0,6.6754289,6.6754289,.05,.05,0,0,0,0,1.5050762,0,0,0,0,0,0,56.4,37.77,54.69,57.47,8.333333333333334,1,1,0,0,6,9,5,1,797.5,941205.38,344014.88,410781.56,0,0,0,3160.5129 +15021,18378,32727,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.1796341,7.4486017,0,0,-1099.0853,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.262089,0,21.045738,0,1,1,0,0,7.6849542,45.95,24.87,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,293,359604.78,141725.66,0,0,0,0,579.82507 +15022,18379,32728,32729,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.7995949,7.4832077,0,10,-2,-16.043808,0,3,3,2021,14,2,36,36,1,2,0,6.924808,6.924808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.9,48.23,48,51,6.666666666666667,1,1,0,0,11,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18379,32729,32728,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,7.0479541,7.1111951,0,10,2,-52.959442,0,2,2,2021,11,0,43,43,1,2,0,3.390697,3.390697,.05,.05,0,0,0,0,0,0,1,1,0,1.48752,0,48,51,38.9,48.23,7,1,1,0,0,1,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18379,32730,-9,32728,32729,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1012.6304,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18380,32731,-9,32728,32729,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1094.1641,1,3,3,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,236,0,0,0,0,0,0,0 +15023,18381,32732,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.2596521,6.7994056,0,0,-964.12323,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1403332,52,41.28,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,154,736978.75,24312.809,388078.53,0,0,0,1699.1155 +15024,18382,32733,32734,-9,-9,1,1,67,0,0,0,2,2,-9,1,2,8.3187895,8.4704008,6.1317558,31,5,-53.15744,0,3,3,2021,12,0,47,55,1,0,0,9.5879269,9.5879269,0,0,0,1,0,0,0,0,1,1,0,6.2302446,6.5382981,47.2,34.16,39.98,36.02,6.666666666666667,1,1,0,0,12,1,4,0,504.5,1107160.8,906209,215557.53,0,10115.103,0,2049.604 +15024,18382,32734,32733,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,28,-5,150.12424,0,3,3,2021,12,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,47.2,34.16,3.333333333333333,1,1,1,1,13,1,4,0,504.5,1107160.8,906209,215557.53,0,10115.103,0,2049.604 +15025,18383,32735,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.5914512,5.7756863,0,0,-987.99951,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0351925,47.01,34.07,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,988,349521.22,73064.094,242853.16,0,0,0,656.11566 +15026,18384,32736,32739,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.7738237,8.8298693,0,10,2,78.241386,0,3,3,2021,15,5,45,45,1,5,0,18.600527,18.600527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.44,56.93,8.333333333333334,1,1,0,0,11,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32737,-9,32739,32736,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-974.01385,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32738,-9,32739,32736,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8715,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32739,32736,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,7.8820853,7.8671174,0,10,-2,19.443184,0,2,3,2021,12,0,29,16,1,0,0,12.860153,12.860153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,38.59,60.85,8.333333333333334,1,1,0,0,11,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32740,-9,32739,32736,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.8444,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15027,18385,32741,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.068531,7.7048936,0,0,0,-1038.9307,0,-9,-9,2021,11,1,40,40,1,1,0,7.6564555,7.6564555,.05,.05,0,0,0,0,0,0,0,0,0,1.782951,0,56.02,37.81,-9,-9,8.333333333333334,1,1,0,0,3,10,4,0,547,33519.086,62244.094,0,0,0,0,519.5788 +15028,18386,32742,32743,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,50,-2,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.39,28.77,59.14,52.5,8.333333333333334,1,1,0,0,9,12,2,0,843.5,-149149.77,4992.2236,0,0,0,0,1356.1494 +15028,18386,32743,32742,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,2,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,64.39,28.77,0,1,1,0,0,7,12,2,0,843.5,-149149.77,4992.2236,0,0,0,0,1356.1494 +15029,18387,32744,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.898633,8.8875141,0,0,0,-1093.959,0,2,2,2021,12,0,48,50,1,0,0,17.861324,17.861324,.05,.05,0,0,0,0,0,0,1,1,0,3.1058285,0,37.02,49.8,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,1051,224287.31,149455.73,0,0,1566.9922,1009.0504,1630.8929 +15030,18388,32745,32748,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.591713,8.4396553,0,9,-2,20.491049,0,3,3,2021,9,0,40,52,1,0,0,20.326519,20.326519,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.34,54.26,53.22,55.2,8.333333333333334,1,1,0,0,11,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32746,-9,32748,32745,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.56854,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32747,-9,32748,32745,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3893,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32748,32745,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9337468,7.6677694,0,9,2,34.809509,0,3,2,2021,14,2,22,22,1,2,0,11.286427,11.286427,.05,.05,0,0,0,0,0,7,1,1,0,0,0,53.22,55.2,55.34,54.26,8.333333333333334,1,1,0,0,11,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15031,18389,32749,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.3478,-9,-9,-9,2021,24,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.52,54.34,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,1965,245478.73,0,0,0,0,423.95169,-414.12054 +15031,18390,32750,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1124.0005,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,32.26,48.92,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,563,-103303.77,0,0,0,0,0,1741.0913 +15031,18391,32751,-9,32750,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.0092,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,45.05,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,886,0,0,0,0,0,0,500.74045 +15032,18392,32752,32755,-9,-9,1,0,41,0,3,0,3,3,-9,0,3,0,0,0,14,2,23.508879,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,52.77,50.48,8.333333333333334,1,1,1,0,2,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32753,-9,32752,32755,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1047.2738,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32754,-9,32752,32755,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1046.9337,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32755,32752,-9,-9,1,1,39,0,3,0,1,1,-9,0,2,9.3511362,9.4238749,0,16,-2,86.235893,0,2,3,2021,9,0,40,40,1,0,0,45.123802,45.123802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,50.48,52.99,51.28,5,1,1,0,0,9,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32756,-9,32752,32755,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.7519,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15033,18393,32757,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.436439,7.5538497,0,0,-1114.6484,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7989187,7.4038067,55.53,51.55,-9,-9,5,1,1,0,0,4,7,3,1,508,736732.06,188698.95,467123.97,0,0,0,1211.5455 +15034,18394,32758,32759,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,5.3111348,5.1547203,2,0,-83.969749,0,3,-9,2021,8,1,0,32,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4932132,54.37,54.8,52.65,48.94,8.333333333333334,1,1,1,0,7,5,2,0,610.5,262944.22,166363.86,210376.61,120034.69,0,0,561.67737 +15034,18394,32759,32758,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.228075,7.3296824,0,2,0,-67.962128,0,-9,-9,2021,11,0,23,0,1,0,0,6.8266006,6.8266006,0,0,0,0,0,0,0,0,0,0,0,1.2411287,0,52.65,48.94,54.37,54.8,8.333333333333334,1,1,0,0,0,5,2,0,610.5,262944.22,166363.86,210376.61,120034.69,0,0,561.67737 +15035,18395,32760,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.8809,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.5248036,0,51.53,51.8,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,4263,697262.81,276510.91,150121.42,0,0,0,1068.8843 +15036,18396,32761,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3831501,8.5236855,0,0,0,-965.47205,0,2,2,2021,11,0,43,43,1,0,0,10.134864,10.134864,.05,.05,0,0,0,0,0,0,0,0,0,.47899583,0,46.88,46.3,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,2510,180533.67,88764.867,30541.148,0,3134.8132,2260.9031,1795.4109 +15037,18397,32762,32763,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,37,6,-3.257354,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,55.94,23.15,0,1,1,0,0,2,7,2,0,960.5,629479.19,116358.34,171758.09,0,0,0,1332.7332 +15037,18397,32763,32762,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.9493208,5.8012547,35,-6,-98.677284,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.852809,55.94,23.15,62.66,52.4,3.333333333333333,1,1,0,0,0,7,2,0,960.5,629479.19,116358.34,171758.09,0,0,0,1332.7332 +15038,18398,32764,32765,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.4391766,8.4752092,0,3,0,7.2052326,0,-9,-9,2021,10,0,44,37,1,0,0,13.128719,13.128719,.05,.05,.05,0,0,0,0,0,0,0,0,1.3497381,0,51.49,57.57,46.44,59.62,8.333333333333334,1,1,0,0,10,6,5,1,1386,-48262.914,-12701.662,54559.781,86018.328,576.2124,0,3243.7639 +15038,18398,32765,32764,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7570171,8.8534861,0,3,0,-16.628664,0,-9,-9,2021,6,0,47,47,1,0,0,13.847527,13.847527,.05,.05,0,0,0,0,0,0,0,0,0,3.2247105,0,46.44,59.62,51.49,57.57,8.333333333333334,1,1,0,0,6,6,5,1,1386,-48262.914,-12701.662,54559.781,86018.328,576.2124,0,3243.7639 +15039,18399,32766,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.021081,7.3479385,0,0,-943.46155,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0964131,43.96,55.64,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1315,548076.81,323127.59,239864.33,0,0,0,2058.3843 +15039,18400,32767,-9,32766,-9,1,1,32,0,0,0,2,2,-9,0,3,8.3192883,8.5157089,0,0,0,-1055.5181,-9,3,-9,2021,19,6,42,0,1,6,0,10.890027,10.890027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.83,57.61,-9,-9,3.333333333333333,1,1,0,0,4,9,5,1,349,142392.48,83089.367,0,0,0,0,1917.7009 +15040,18401,32768,-9,32769,32770,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.8793,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32769,32770,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,5,-13,-52.366146,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,57.33,53.46,8.333333333333334,1,1,0,0,4,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32770,32769,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.3489628,8.2098103,0,5,13,-76.756828,0,3,3,2021,9,1,39,40,1,1,0,9.8034525,9.8034525,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.41,56.15,8.333333333333334,1,1,0,0,8,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32771,-9,32769,32770,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.26428,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32772,-9,32769,32770,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.1259,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15041,18402,32773,32774,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.8382826,8.982583,8,0,-166.56329,0,2,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,42,0,0,0,.82135725,8.674777,40.22,56.91,31.28,55.61,3.333333333333333,1,1,0,0,0,10,5,1,1038.5,1500648,1198204.3,467541.84,31621.137,0,0,4522.5884 +15041,18402,32774,32773,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.130578,7.9355111,8,0,102.64959,0,1,1,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,4.2728915,7.4211602,31.28,55.61,40.22,56.91,6.666666666666667,1,1,0,0,0,10,5,1,1038.5,1500648,1198204.3,467541.84,31621.137,0,0,4522.5884 +15042,18403,32775,32777,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.9178877,8.7325029,0,7,1,25.66132,0,-9,-9,2021,7,0,53,44,1,0,0,13.959838,13.959838,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32776,-9,32775,32777,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4789,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32777,32775,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.5912762,8.9831867,0,19,-1,66.25695,0,1,1,2021,6,0,35,40,1,0,0,18.461008,18.461008,.05,.05,0,0,0,0,.2180351,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32778,-9,32775,32777,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1259,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15043,18404,32779,32780,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6335526,8.8637762,0,32,1,5.1489944,0,-9,2,2021,10,0,43,38,1,0,0,15.483098,15.483098,.05,.05,0,0,0,0,0,0,0,0,0,2.2482078,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,387.5,1469167,963752,362582.25,0,0,0,3180.4795 +15043,18404,32780,32779,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4808865,7.3575745,0,32,-1,28.25235,0,2,2,2021,9,0,25,28,1,0,0,8.432312,8.432312,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,387.5,1469167,963752,362582.25,0,0,0,3180.4795 +15043,18405,32781,-9,32780,32779,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-903.90747,0,2,2,2021,12,2,0,30,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3224274,0,44.22,59.68,-9,-9,8.333333333333334,1,1,0,0,5,9,1,1,808,63385.746,0,0,0,0,0,-887.27283 +15044,18406,32782,32784,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,9.3782701,9.1473598,0,12,1,66.541031,0,3,1,2021,8,0,30,24,1,0,0,39.519466,39.519466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15044,18406,32783,-9,32782,32784,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1188.7257,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15044,18406,32784,32782,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,9.7082987,9.5509033,0,12,-1,1.9855648,0,2,2,2021,8,0,55,45,1,0,0,32.548416,32.548416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,9,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15045,18407,32785,-9,32787,32786,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.1449,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32786,32787,-9,-9,1,1,32,2,2,0,1,1,-9,0,5,9.2603102,9.4294853,0,9,0,96.301468,0,-9,-9,2021,7,0,50,70,1,0,0,23.464699,23.464699,.05,.05,0,0,0,0,0,0,0,0,0,7.6502814,0,59.43,58.05,57.16,56.15,10,1,1,0,0,10,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32787,32786,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,0,0,0,9,0,13.947973,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.954715,0,57.16,56.15,59.43,58.05,10,1,1,0,0,9,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32788,-9,32787,32786,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-735.27551,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15046,18408,32789,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3435888,8.4668913,0,0,0,-1098.0222,-9,-9,-9,2021,17,4,45,0,1,4,0,8.2450905,8.2450905,.05,.05,0,0,0,0,0,0,0,0,0,1.2527294,0,40.8,59.7,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,1407,215660.88,95499.297,137859.28,105135.53,0,0,2123.999 +15047,18409,32790,32791,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.8663168,8.1011381,13,0,-78.654144,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2591858,8.3268003,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,4,1,1839,1379598.8,703182.44,342849.75,0,6384.0342,0,3595.116 +15047,18409,32791,32790,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.624732,7.3681335,49,0,43.765579,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9094195,7.6759329,58.15,52.91,57.16,56.15,10,1,1,0,0,5,1,4,1,1839,1379598.8,703182.44,342849.75,0,6384.0342,0,3595.116 +15048,18410,32792,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.1628513,8.23594,0,0,0,-981.63892,0,2,2,2021,6,0,50,48,1,0,0,8.2920609,8.2920609,.05,.05,0,0,0,0,0,0,0,0,0,1.042299,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,712,582913.19,-1269.3406,310990.91,0,4130.2437,0,1729.6025 +15049,18411,32793,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.4701524,4.5856495,0,0,-941.52557,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6626043,17.59,56.04,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,1406,430045.94,52545.922,158273.05,0,0,0,723.24658 +15050,18412,32794,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1116.9387,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,2014,204093.02,0,0,0,0,0,1729.0806 +15051,18413,32795,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6650333,8.2804861,0,0,0,-924.92633,0,3,3,2021,22,9,38,38,1,9,0,15.260665,15.260665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.04,56.44,-9,-9,5,1,1,0,0,11,13,5,1,527,1810551.5,1123889.9,230457.14,0,0,0,2459.6575 +15052,18414,32796,32797,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0471077,9.0065775,0,9,-10,47.54974,0,2,2,2021,7,0,45,45,1,0,0,21.478964,21.478964,.05,.05,0,0,0,0,0,0,0,0,0,1.986622,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,1,5,1,244.5,294999.19,61844.516,339207.56,88654.984,0,-83.727188,4342.4902 +15052,18414,32797,32796,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,7.9196272,8.1389408,0,9,10,-92.177505,0,3,3,2021,6,0,32,45,1,0,0,11.787741,11.787741,0,0,0,0,0,0,0,0,0,0,0,3.1591637,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,1,5,1,244.5,294999.19,61844.516,339207.56,88654.984,0,-83.727188,4342.4902 +15053,18415,32798,32799,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.1797113,9.080945,0,31,2,.67331666,0,2,2,2021,12,0,70,84,1,0,0,12.324828,12.324828,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,41.47,58.08,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,1642,244253.63,306129.31,192008.27,82519.68,3341.2056,6325.4453,6045.5254 +15053,18415,32799,32798,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.0200062,9.2145967,0,31,-2,-16.568369,0,-9,-9,2021,7,0,37,38,1,0,0,25.809378,25.809378,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.47,58.08,10,1,1,0,0,10,12,5,1,1642,244253.63,306129.31,192008.27,82519.68,3341.2056,6325.4453,6045.5254 +15054,18416,32800,32801,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.741188,8.5871201,0,12,-10,63.216827,-9,3,3,2021,9,0,43,0,1,0,0,15.464382,15.464382,0,0,0,0,0,0,0,0,0,0,0,5.5925679,0,53.78,56.44,38.83,48.55,8.333333333333334,1,1,0,0,13,12,5,1,1900.5,295450.06,104947.53,208414.45,107993.74,8204.3223,3953.1633,4248.7319 +15054,18416,32801,32800,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.5632086,8.7256432,0,12,10,63.676727,0,-9,-9,2021,11,1,50,65,1,1,0,14.085835,14.085835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.83,48.55,53.78,56.44,3.333333333333333,1,1,0,0,14,12,5,1,1900.5,295450.06,104947.53,208414.45,107993.74,8204.3223,3953.1633,4248.7319 +15055,18417,32802,32803,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.4666147,7.7139792,0,32,-1,-18.274542,0,2,-9,2021,6,0,7,8,1,0,0,24.948473,24.948473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,14,11,4,1,646.5,1420075.6,1161501.9,144371.75,14816.533,36134.313,0,2737.7043 +15055,18417,32803,32802,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.7216878,8.4917974,7.5553341,32,1,97.770699,0,-9,3,2021,9,0,38,35,1,0,0,8.2858849,8.2858849,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6192136,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,14,11,4,1,646.5,1420075.6,1161501.9,144371.75,14816.533,36134.313,0,2737.7043 +15056,18418,32804,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-885.5116,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.42448595,0,49.91,42.12,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,652,151958,0,0,0,0,0,811.10736 +15057,18419,32805,32806,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9117684,8.3418293,0,11,1,-48.342468,0,2,2,2021,14,4,22,22,1,4,0,17.148491,17.148491,.05,.05,0,0,0,0,0,2,0,0,0,3.9413147,0,54.74,57.22,49.52,21.37,8.333333333333334,1,1,0,0,12,12,5,1,868.5,807204.63,741088.94,89487.688,17723.242,0,0,2833.5283 +15057,18419,32806,32805,-9,-9,1,0,56,0,0,0,1,1,-9,0,1,8.3802137,8.6313181,0,11,-1,53.199669,0,2,2,2021,15,4,18,18,1,4,0,35.723476,35.723476,.05,.05,0,0,0,0,0,0,0,0,0,1.9888146,0,49.52,21.37,54.74,57.22,6.666666666666667,1,1,0,0,12,12,5,1,868.5,807204.63,741088.94,89487.688,17723.242,0,0,2833.5283 +15058,18420,32807,32808,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,18,-4,-125.48006,0,-9,-9,2021,15,5,0,18,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.41,58.46,52,54.51,3.333333333333333,1,1,0,0,2,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32808,32807,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.0772963,8.6143122,0,19,4,47.430721,0,-9,-9,2021,14,2,38,47,1,2,0,24.521357,24.521357,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,37.41,58.46,8.333333333333334,2,3,0,0,9,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32809,-9,32807,32808,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3612,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32810,-9,32807,32808,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-821.42761,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15059,18421,32811,32812,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.8244371,8.7069931,0,11,-2,-71.883278,0,-9,-9,2021,16,5,60,70,1,5,0,11.429495,11.429495,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.88,51.79,51.83,57.2,3.333333333333333,1,1,0,1,11,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15059,18421,32812,32811,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.7927351,7.6239071,0,28,2,104.54335,0,3,2,2021,13,1,22,14,1,1,0,12.263557,12.263557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.88,51.79,8.333333333333334,1,1,0,0,7,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15059,18421,32813,-9,32812,32811,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-928.60132,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,1,0,0,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15060,18422,32814,-9,32817,32819,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.336,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32815,-9,32817,32819,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-966.67096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32816,-9,32817,32819,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1220.2258,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32817,32819,-9,-9,1,0,37,1,4,0,2,2,-9,0,3,0,0,0,11,-1,-190.91898,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5128591,0,36.49,58.77,36.97,58.53,3.333333333333333,1,1,0,0,6,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32818,-9,32817,32819,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.823,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32819,32817,-9,-9,1,1,38,1,4,0,2,2,-9,0,3,8.4416094,8.5102768,0,11,1,-14.90838,0,2,3,2021,15,5,55,55,1,5,0,9.9250784,9.9250784,.05,.05,0,0,0,0,0,0,1,1,0,.68458122,0,36.97,58.53,36.49,58.77,3.333333333333333,1,1,0,0,13,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15061,18423,32820,32821,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.4503446,5.8364563,43,-5,31.526478,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9654346,6.6401076,37.62,44.93,54.45,56.22,6.666666666666667,2,3,0,0,0,8,2,1,681,556909.25,388102.34,251252.03,0,0,0,3325.5645 +15061,18423,32821,32820,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7468848,6.8002934,43,5,-84.821144,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2613869,6.8088894,54.45,56.22,37.62,44.93,10,2,3,0,0,6,8,2,1,681,556909.25,388102.34,251252.03,0,0,0,3325.5645 +15062,18424,32822,32823,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.9121685,7.6014404,39,2,195.47726,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.059330273,42,1,1,0,7.3667579,7.7058702,53.14,51.28,57.62,23.86,8.333333333333334,1,1,0,0,7,9,3,1,228.5,1032132.4,731623.38,293639.94,0,146.53735,0,2895.96 +15062,18424,32823,32822,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,5.5370727,4.932713,39,-2,-1.9006771,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.377619,5.4532213,57.62,23.86,53.14,51.28,10,1,1,0,0,0,9,3,1,228.5,1032132.4,731623.38,293639.94,0,146.53735,0,2895.96 +15063,18425,32824,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.844439,7.8824162,0,0,0,-885.20459,0,2,2,2021,25,8,36,40,1,8,0,9.7121754,9.7121754,.05,.05,.05,0,0,0,0,0,0,0,0,6.3829961,0,44.46,47.36,-9,-9,0,4,2,0,0,10,5,4,0,371,14468.002,77191.234,0,0,1919.584,0,1837.6033 +15064,18426,32825,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1159.6219,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,32.81,25.91,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1761,2863.6182,0,0,0,0,0,1580.1599 +15065,18427,32826,32827,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7839508,8.637702,0,31,-2,-85.183197,0,2,2,2021,6,0,39,43,1,0,0,19.811546,19.811546,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.09,58.02,52.38,42.19,8.333333333333334,1,1,0,0,13,5,5,1,1158.5,637496,374799.13,223835.19,72764.594,9239.0869,0,4473.1675 +15065,18427,32827,32826,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7083874,8.4295015,0,32,2,13.807489,0,2,3,2021,12,0,53,53,1,0,0,14.50477,14.50477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.38,42.19,47.09,58.02,8.333333333333334,1,1,0,0,13,5,5,1,1158.5,637496,374799.13,223835.19,72764.594,9239.0869,0,4473.1675 +15066,18428,32828,32831,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,3,14,0,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.93,28.59,57.06,57.76,8.333333333333334,1,1,0,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32829,-9,32828,32831,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1075.3019,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32830,-9,32828,32831,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.24884,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32831,32828,-9,-9,1,1,27,0,3,0,2,2,-9,0,5,0,0,0,3,-14,0,0,-9,-9,2021,7,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,37.93,28.59,8.333333333333334,1,1,1,0,1,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32832,-9,32828,32831,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1086.6572,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15067,18429,32833,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.832747,7.936666,0,0,0,-902.97803,0,1,3,2021,12,0,40,37,1,0,0,7.818974,7.818974,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,57.54,-9,-9,5,1,1,0,0,9,2,4,0,3642,-173724.58,0,0,0,0,0,757.05615 +15068,18430,32834,32835,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,2.1939054,2.2542915,56,0,-62.983234,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3110943,1.9253817,43.54,34.21,56,52,8.333333333333334,1,1,0,0,0,7,2,1,531,399540.75,0,387830.19,0,0,0,1361.4402 +15068,18430,32835,32834,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.2600689,6.3139224,56,0,19.012653,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.019984,6.7097239,56,52,43.54,34.21,10,1,1,0,0,0,7,2,1,531,399540.75,0,387830.19,0,0,0,1361.4402 +15069,18431,32836,-9,32837,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.35815,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18431,32837,-9,-9,-9,1,0,48,0,2,0,3,3,-9,0,5,6.4440999,7.092207,0,0,0,-1005.9136,0,3,2,2021,7,0,16,16,1,0,0,4.7894201,4.7894201,0,0,0,0,0,0,0,0,1,1,0,0,0,64.66,50.23,-9,-9,5,4,5,0,0,3,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18431,32838,-9,32837,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.14453,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,5,-9,0,0,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18432,32839,-9,32837,-9,1,1,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-996.2948,-9,3,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.05,52.09,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,112,0,0,0,0,0,0,0 +15069,18433,32840,-9,32837,-9,1,1,19,0,2,0,2,2,-9,0,5,6.4999866,6.599823,0,0,0,-1060.5701,0,2,1,2021,3,0,21,8,1,0,1,3.435703,3.435703,0,0,0,0,0,0,0,0,1,1,0,0,0,52.68,61,-9,-9,8.333333333333334,4,5,0,0,2,8,2,0,2431,139741.91,0,0,0,0,0,-206.79552 +15070,18434,32841,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-977.57349,-9,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.91,28.34,-9,-9,1.666666666666667,4,5,0,0,0,7,1,0,216,-34997.5,0,0,0,0,0,815.85699 +15071,18435,32842,-9,32843,32844,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.8113,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32843,32844,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,8.3672733,8.2790699,0,17,-3,-.16721337,0,2,2,2021,8,0,44,44,1,0,0,9.4021549,9.4021549,0,0,0,0,0,0,0,2,1,1,0,0,0,56.07,32.51,57.16,56.15,6.666666666666667,1,1,0,0,12,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32844,32843,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.2795811,8.2349634,0,12,3,18.730125,0,-9,-9,2021,7,0,58,55,1,0,0,8.563097,8.563097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.07,32.51,6.666666666666667,1,1,0,0,8,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32845,-9,32843,32844,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15072,18436,32846,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.9983,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,71.2939,0,120,1,1,0,0,0,53.66,25.67,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,804,-68665.953,0,0,0,0,0,749.12537 +15072,18437,32847,-9,32846,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-995.98694,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.34,25.4,-9,-9,3.333333333333333,1,1,0,0,5,4,1,0,231,55191.07,0,0,0,3358.9746,0,652.89984 +15073,18438,32848,32849,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,35,2,0,0,3,3,2021,8,0,0,54,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,45.06,44.3,35.42,5,2,3,1,0,5,6,1,1,233.5,0,0,0,0,0,0,757.06384 +15073,18438,32849,32848,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,0,0,0,35,-2,0,0,3,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,35.42,35.38,45.06,5,2,3,0,0,0,6,1,1,233.5,0,0,0,0,0,0,757.06384 +15073,18439,32850,-9,32849,32848,1,1,24,0,0,0,2,2,-9,0,4,7.4161711,7.4135647,0,0,0,-996.09711,0,3,3,2021,10,0,38,40,1,1,1,5.2135472,5.2135472,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,262,-70583.633,0,0,0,0,0,894.18231 +15073,18440,32851,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,7.9197345,8.0461378,0,0,0,-1019.4147,0,-9,-9,2021,9,0,40,40,1,1,0,8.6051521,8.6051521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,0,0,1,6,4,1,1487,158464.92,204037.88,107433.62,14010.694,0,0,1839.7559 +15074,18441,32852,32853,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.8458643,8.8371878,0,7,-6,-85.331718,0,2,2,2021,7,0,32,30,1,0,0,29.389624,29.389624,.05,.05,0,0,0,0,0,0,1,1,0,6.9460635,0,64.96000000000001,43.19,47.78,52.35,8.333333333333334,1,1,0,0,9,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32853,32852,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.490613,8.6070986,0,7,6,-14.165648,0,3,3,2021,15,6,90,40,1,6,0,7.1688399,7.1688399,.05,.05,.05,0,0,0,0,0,1,1,0,3.352376,0,47.78,52.35,64.96000000000001,43.19,5,1,1,0,0,9,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32854,-9,32852,32853,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2046,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32855,-9,32852,32853,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.68494,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15075,18442,32856,32857,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.9188714,7.9160957,0,12,2,-.21460409,0,3,3,2021,12,0,42,42,1,0,0,6.5413365,6.5413365,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,58.32,50.22,6.666666666666667,1,1,0,0,13,13,3,1,466,60721.898,57845.637,0,0,0,0,1593.3552 +15075,18442,32857,32856,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,4.8302879,5.3129153,0,12,-2,-107.3589,0,-9,-9,2021,12,0,40,42,1,0,0,.39470232,.39470232,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,6.666666666666667,1,1,0,0,14,13,3,1,466,60721.898,57845.637,0,0,0,0,1593.3552 +15076,18443,32858,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1012.1672,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,26.45,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,426,-59140.422,142724.97,0,0,0,0,749.91327 +15077,18444,32859,-9,32860,32862,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.1131,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32860,32862,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.313797,7.2387962,0,8,-1,-38.171051,0,2,3,2021,10,0,30,30,1,0,0,5.6771049,5.6771049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,54.79,55.86,6.666666666666667,1,1,0,0,9,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32861,-9,32860,32862,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.59644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32862,32860,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.284605,8.6248474,0,8,1,-51.334511,0,2,2,2021,2,0,42,40,1,0,0,12.093861,12.093861,.05,.05,0,0,0,0,0,0,1,1,0,7.2213879,0,54.79,55.86,56.5,48.33,8.333333333333334,1,1,0,0,10,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15078,18445,32863,-9,32867,32864,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.75824,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32864,32867,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,7.1717353,7.3324099,0,20,-1,130.65105,0,3,3,2021,9,0,20,20,1,0,0,8.196557,8.196557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.3,44.82,33.79,46.44,6.666666666666667,1,1,0,0,5,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32865,-9,32867,32864,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.07013,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32866,-9,-9,32864,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.46509,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32867,32864,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.8525882,7.6365376,0,20,1,-83.357338,-9,3,3,2021,11,0,32,0,1,0,0,9.8905239,9.8905239,.05,.05,0,0,0,0,0,0,1,1,0,5.3346319,0,33.79,46.44,59.3,44.82,6.666666666666667,1,1,0,0,10,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15079,18446,32868,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.0481148,7.6670184,0,0,-1065.3127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6719217,7.6107087,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1158,545660.5,362696.41,275825.28,0,4312.1704,0,1350.9115 +15080,18447,32869,32870,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7701607,8.9686546,0,2,-2,16.827295,0,2,2,2021,11,0,38,38,1,0,0,24.126434,24.126434,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.06,62.04,54.2,57.49,6.666666666666667,1,1,0,0,11,2,5,0,446.5,-43559.961,21150.455,195074.5,73372.563,0,0,5256.9277 +15080,18447,32870,32869,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.1343374,8.5586195,0,2,2,-176.08038,0,-9,-9,2021,8,0,50,55,1,0,0,19.654518,19.654518,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.06,62.04,8.333333333333334,2,3,0,0,6,2,5,0,446.5,-43559.961,21150.455,195074.5,73372.563,0,0,5256.9277 +15081,18448,32871,-9,32872,32873,1,1,35,0,0,0,2,2,-9,0,4,7.9340701,7.6655283,0,0,0,-945.14288,0,2,2,2021,10,0,42,38,1,1,0,6.9673095,6.9673095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,3,1,459,-170952.98,-60112.961,0,0,39.34333,0,878.16614 +15081,18449,32872,32873,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-2,-1.6235454,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.24,34.35,60.12,54.8,0,1,1,0,0,2,13,4,1,1795.5,287013.81,34207.512,225916.47,2893.5024,0,4112.48,3026.3259 +15081,18449,32873,32872,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4837303,8.4685383,0,7,2,52.176601,0,3,3,2021,6,0,37,37,1,0,0,13.977935,13.977935,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.24,34.35,10,1,1,0,0,8,13,4,1,1795.5,287013.81,34207.512,225916.47,2893.5024,0,4112.48,3026.3259 +15082,18450,32874,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.4978967,7.4002981,0,0,-1053.8256,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6241846,7.6222291,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,488,305737,341765.72,137773.55,0,0,0,1595.4541 +15083,18451,32875,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,6.571064,7.6091394,6.5331745,0,0,-948.26398,0,2,2,2021,32,11,23,16,1,11,0,3.3072698,3.3072698,.05,.05,0,0,0,0,0,0,1,1,0,7.46948,0,12.93,62.24,-9,-9,3.333333333333333,1,1,0,0,8,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15083,18451,32876,-9,32875,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.9351,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15083,18451,32877,-9,32875,-9,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-921.02222,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15084,18452,32878,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,6.175077,6.4064445,0,0,-993.48108,0,2,2,2021,7,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21418017,6.4066315,68.48999999999999,23.51,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,323,947691.56,378765.81,624825.31,0,0,0,1003.1699 +15085,18453,32879,32880,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6010761,8.2903442,7.4576402,8,-2,71.511391,0,-9,-9,2021,6,0,10,24,1,0,0,25.199497,25.199497,.05,.05,0,0,0,0,0,14.5,0,0,0,3.1222477,7.3682313,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,9,7,5,1,1823.5,1022352.9,199519.05,580595.75,0,0,0,5669.8301 +15085,18453,32880,32879,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.7034359,8.6439171,6.0508943,42,2,92.569221,0,3,3,2021,5,0,36,37,1,0,0,11.870864,11.870864,.05,.05,0,0,0,0,0,2,0,0,0,8.3975182,6.2484617,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,1823.5,1022352.9,199519.05,580595.75,0,0,0,5669.8301 +15086,18454,32881,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0587378,8.43328,0,0,0,-929.12775,0,3,3,2021,8,0,36,46,1,0,0,13.49584,13.49584,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,1,7,9,4,1,789,178984.13,21907.77,0,0,0,833.31152,576.72284 +15087,18455,32882,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.8386898,8.6349745,0,0,0,-947.68732,0,2,3,2021,25,9,50,50,1,9,0,12.357709,12.357709,0,0,.05,0,0,0,0,2,0,0,0,2.5378416,0,29.43,54.74,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,1128,20808.717,30533.326,131211.61,72972.82,0,0,2914.3262 +15088,18456,32883,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.8482823,7.6349678,0,0,-995.17926,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.888854,7.6873183,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,378,498900.16,222669.38,157232.78,0,0,11152.097,2780.05 +15089,18457,32884,32885,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4252119,6.1306586,45,-2,-72.070854,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5829415,6.5494299,57.16,56.15,52,48,8.333333333333334,1,1,0,0,1,1,2,1,567.5,162759.33,85626.977,141383.66,0,0,0,2495.3 +15089,18457,32885,32884,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,8,2,10.303278,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1179738,0,52,48,57.16,56.15,7,1,1,0,0,0,1,2,1,567.5,162759.33,85626.977,141383.66,0,0,0,2495.3 +15090,18458,32886,-9,32889,32888,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-950.56775,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32887,-9,32889,32888,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.5491,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32888,32889,-9,-9,1,1,37,1,4,0,1,1,-9,0,3,8.2515211,8.1442776,0,8,3,-49.736427,0,-9,-9,2021,10,0,40,40,1,0,0,9.7181816,9.7181816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,46.61,60.32,38.33,6.666666666666667,2,3,0,0,7,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32889,32888,-9,-9,1,0,34,1,4,0,3,3,-9,0,3,0,0,0,15,-3,78.666428,0,3,3,2021,10,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.32,38.33,39.32,46.61,6.666666666666667,2,3,0,1,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32890,-9,32889,32888,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.0109,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32891,-9,32889,32888,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.5612,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15091,18459,32892,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,0,7.5226316,7.5147581,0,0,-1109.1193,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,7,1,1,0,6.3263679,7.7139864,57.06,57.76,-9,-9,10,1,1,0,0,6,9,3,1,670,-81715.789,-61162.508,0,0,0,0,1493.8384 +15092,18460,32893,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1019.2717,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,37.31,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,221,225778.19,0,0,0,0,0,1279.3682 +15093,18461,32894,32895,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.0229378,6.2959614,50,-2,-57.580578,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1640768,5.9255543,53.06,45.59,61.84,39.56,8.333333333333334,1,1,0,0,0,7,4,1,798.5,1952650,903904.13,762197.88,0,0,0,4506.1465 +15093,18461,32895,32894,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.5758038,8.5939751,50,2,12.810162,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7853203,8.9028254,61.84,39.56,53.06,45.59,10,1,1,0,0,0,7,4,1,798.5,1952650,903904.13,762197.88,0,0,0,4506.1465 +15094,18462,32896,32897,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.7590041,8.2985449,58,2,151.96838,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.3389759,7.9374843,57.04,19.68,57.34,47.92,8.333333333333334,1,1,0,0,11,10,4,1,1105.5,857648.13,480392.94,269437.88,0,0,0,3319.1709 +15094,18462,32897,32896,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.2997327,7.3840947,58,-2,-41.07468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5216808,57.34,47.92,57.04,19.68,6.666666666666667,1,1,0,0,0,10,4,1,1105.5,857648.13,480392.94,269437.88,0,0,0,3319.1709 +15095,18463,32898,32899,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,-2,113.36359,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,13.625262,0,0,1,1,0,4.7194147,0,48.03,29.36,51.17,47.77,6.666666666666667,1,1,0,0,0,12,3,1,339.5,1099694.6,316983.66,263840.97,0,36570.602,0,3230.2134 +15095,18463,32899,32898,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8460083,7.9788809,6.5950627,9,2,.25904751,0,3,3,2021,8,0,20,45,1,0,0,15.49623,15.49623,0,0,0,1,0,0,0,0,1,1,0,4.8133173,6.5471587,51.17,47.77,48.03,29.36,8.333333333333334,1,1,0,0,10,12,3,1,339.5,1099694.6,316983.66,263840.97,0,36570.602,0,3230.2134 +15096,18464,32900,32901,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,6.5579176,6.4137468,0,10,-1,-69.752518,0,-9,-9,2021,15,5,10,10,1,5,0,8.5278034,8.5278034,0,0,0,0,0,0,0,0,0,0,0,0,0,42.42,50.43,46.08,57.2,5,1,1,0,0,11,6,3,0,1230,532467.38,89769.133,170707.97,0,0,0,1590.8713 +15096,18464,32901,32900,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.9996848,7.8364773,0,39,1,-60.34737,0,3,3,2021,12,0,38,30,1,0,0,7.1212502,7.1212502,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,42.42,50.43,5,1,1,0,0,10,6,3,0,1230,532467.38,89769.133,170707.97,0,0,0,1590.8713 +15097,18465,32902,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,5.621429,7.4500408,6.9451962,0,0,-1094.9551,0,3,3,2021,12,0,25,6,1,0,0,1.239412,1.239412,0,0,0,0,0,0,0,0,1,1,0,0,7.5064197,37.17,50.6,-9,-9,6.666666666666667,1,1,0,0,11,12,3,0,91,388295.03,56216.344,250436.28,0,0,394.64069,2502.1558 +15098,18466,32903,32904,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.3135891,7.486455,9,3,-14.110838,0,3,-9,2021,10,0,0,84,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8248243,7.2711682,51,48,59.02,30.85,7,1,1,0,0,0,13,2,1,339,374141.34,280392.06,257311.06,0,-615.74725,0,1680.9075 +15098,18466,32904,32903,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,9,-3,89.024422,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1048698,0,59.02,30.85,51,48,8.333333333333334,1,1,0,0,0,13,2,1,339,374141.34,280392.06,257311.06,0,-615.74725,0,1680.9075 +15099,18467,32905,32906,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3874679,7.6130252,0,4,-5,92.796822,0,2,-9,2021,12,0,26,15,1,0,0,8.5801735,8.5801735,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.45,49.46,28.57,61.36,6.666666666666667,1,1,0,0,4,4,4,0,474.5,91642.531,-29491.426,45229.984,44366.688,448.62823,0,2697.395 +15099,18467,32906,32905,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.1798468,7.9200444,0,4,5,106.87122,0,-9,-9,2021,9,0,18,20,1,0,0,20.732456,20.732456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.57,61.36,48.45,49.46,8.333333333333334,4,2,0,0,8,4,4,0,474.5,91642.531,-29491.426,45229.984,44366.688,448.62823,0,2697.395 +15100,18468,32907,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.23181,0,3,3,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,6.4674067,0,0,1,1,0,0,0,20.97,24.53,-9,-9,1.666666666666667,1,1,0,0,0,12,1,1,194,258337.27,0,215757.97,0,0,0,1257.8265 +15100,18469,32908,-9,32907,-9,1,0,57,0,0,0,3,3,-9,0,2,7.3020835,7.3022966,0,0,0,-933.78748,0,3,3,2021,11,0,29,29,1,0,0,8.8724566,8.8724566,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.46,37.62,-9,-9,5,1,1,0,0,10,12,3,1,771,334261.28,-98892.68,0,0,449.80936,497.33322,404.18738 +15101,18470,32909,32910,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.227706,8.0127525,43,2,-12.106277,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0508041,8.2955236,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,1714,2186062,633827.25,844466.31,0,0,0,4159.8657 +15101,18470,32910,32909,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.7467556,7.7078691,43,-2,-39.250397,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3536611,8.012537,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,3,9,4,1,1714,2186062,633827.25,844466.31,0,0,0,4159.8657 +15102,18471,32911,32912,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.3339643,6.4534426,6,4,-96.312706,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3533936,54.96,53.17,46.87,23.34,8.333333333333334,1,1,0,0,1,13,2,1,337,455543.88,107556.23,273842.91,0,0,0,1430.2869 +15102,18471,32912,32911,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,6,-4,66.539406,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.87,23.34,54.96,53.17,5,1,1,0,0,0,13,2,1,337,455543.88,107556.23,273842.91,0,0,0,1430.2869 +15103,18472,32913,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1037.7885,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.35,51.96,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,582,-95086.633,0,0,0,528.26013,0,522.06927 +15104,18473,32914,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.776598,8.6817513,0,0,0,-910.28314,0,2,2,2021,13,4,42,40,1,4,0,11.07387,11.07387,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.15,59.64,-9,-9,10,1,1,0,0,10,5,5,1,630,-256157.97,168498.67,0,0,0,0,2138.741 +15105,18474,32915,-9,32916,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.38177,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,679.5,200209.27,-13474.109,292981.72,100217.14,7445.5542,10033.478,2354.4417 +15105,18474,32916,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.6731348,8.7068081,0,0,0,-949.33057,0,2,2,2021,18,8,42,41,1,8,0,16.748781,16.748781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.87,57.73,-9,-9,3.333333333333333,1,1,0,1,11,8,5,1,679.5,200209.27,-13474.109,292981.72,100217.14,7445.5542,10033.478,2354.4417 +15106,18475,32917,32918,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.5693045,4.8150134,59,-5,-109.78336,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,4.2747121,4.2973771,60.12,54.8,43.45,40.09,8.333333333333334,1,1,0,0,0,4,3,1,910,687983,326543.56,416593.19,0,0,0,3376.1182 +15106,18475,32918,32917,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.650403,7.8040462,59,5,92.687065,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,5.4144354,0,0,1,1,0,2.4825037,7.8185935,43.45,40.09,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,910,687983,326543.56,416593.19,0,0,0,3376.1182 +15107,18476,32919,32920,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,6.4205294,6.1339164,8,8,-12.891259,0,-9,-9,2021,12,5,0,0,4,5,0,0,0,0,0,0,1,5.1735282,0,66.216492,0,1,1,0,0,6.3726025,64.89,14.84,46.29,24.63,10,2,3,0,0,0,6,2,1,1075,72644.484,18834.795,180458.34,0,0,0,1325.8438 +15107,18476,32920,32919,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,8,-8,-119.65129,0,-9,-9,2021,16,8,0,0,4,8,0,0,0,0,0,0,1,0,20.330545,0,0,1,1,0,0,0,46.29,24.63,64.89,14.84,10,2,3,0,0,0,6,2,1,1075,72644.484,18834.795,180458.34,0,0,0,1325.8438 +15108,18477,32921,32922,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0852461,8.2638073,4.9549236,6,-3,33.286537,0,-9,-9,2021,11,0,20,30,1,1,0,22.269804,22.269804,0,0,0,0,0,0,0,0,1,1,0,4.1926832,5.5153847,50,47,43.59,59.64,7,1,1,0,0,1,8,5,0,787.5,1903637.1,701077.13,905107.25,0,0,0,7874.1787 +15108,18477,32922,32921,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,9.0161028,8.9145412,5.8292365,6,3,-.75968862,0,2,2,2021,21,9,45,40,1,9,0,19.99559,19.99559,0,0,0,0,0,0,0,0,1,1,0,8.5923738,5.7994547,43.59,59.64,50,47,3.333333333333333,1,1,0,1,7,8,5,0,787.5,1903637.1,701077.13,905107.25,0,0,0,7874.1787 +15109,18478,32923,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.3356199,6.3929448,0,0,-1072.1965,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,3.5030029,0,19.711437,0,1,1,0,6.3767753,6.4244018,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,2,0,339,406436.03,0,169785.09,0,-3181.8079,0,1707.5369 +15110,18479,32924,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.9357,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,18.756958,15.680363,186.1731,0,1,1,0,2.8858848,0,54,46,-9,-9,8,1,1,0,0,0,2,1,1,533,-161009.34,0,60926.262,0,-453.76474,777.75305,2359.8884 +15111,18480,32925,32926,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.5050435,7.6634588,54,0,58.086433,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6080942,48.24,45.43,57.49,34.36,8.333333333333334,1,1,0,0,0,13,3,1,309.5,869484.06,539510.38,135617.88,0,0,0,2326.2927 +15111,18480,32926,32925,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.5662966,6.3707566,11,0,72.567581,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2730989,0,0,1,1,0,4.6674528,5.9325147,57.49,34.36,48.24,45.43,8.333333333333334,1,1,0,0,12,13,3,1,309.5,869484.06,539510.38,135617.88,0,0,0,2326.2927 +15112,18481,32927,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.12012,5.6985888,0,0,-1036.4233,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,10.83666,0,0,1,1,0,4.7183409,5.919642,48,35,-9,-9,10,1,1,0,0,0,11,2,1,675,444587.94,67477.891,140360.42,0,0,0,740.08484 +15113,18482,32928,-9,32931,32929,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.9859,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32929,32931,-9,-9,1,1,41,1,2,0,1,1,-9,0,5,0,0,0,11,2,0,0,1,2,2021,11,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8034229,0,38.59,63.37,54.96,53.17,6.666666666666667,1,1,0,0,10,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32930,-9,32931,32929,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.8938,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32931,32929,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,13,-2,0,0,1,1,2021,7,1,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5834503,0,54.96,53.17,38.59,63.37,6.666666666666667,1,1,0,0,11,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15114,18483,32932,32933,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.1075888,9.4844942,0,31,2,9.9351654,0,2,2,2021,7,0,40,40,1,0,0,33.830902,33.830902,.05,.05,.05,0,0,0,0,0,0,0,0,4.9065723,0,55.17,58.56,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,1522,319021.38,141589.78,130728.17,12814.131,-319.59406,0,3787.7881 +15114,18483,32933,32932,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6612678,7.2763524,0,7,-2,-60.477386,0,-9,-9,2021,6,0,30,30,1,0,0,7.0855036,7.0855036,.05,.05,.05,0,0,0,0,0,0,0,0,3.8688295,0,57.16,56.15,55.17,58.56,8.333333333333334,1,1,0,0,8,13,5,1,1522,319021.38,141589.78,130728.17,12814.131,-319.59406,0,3787.7881 +15114,18484,32934,-9,32933,32932,1,1,26,0,0,0,1,1,-9,0,4,7.8616023,7.9055862,0,0,0,-1125.347,0,1,1,2021,10,0,40,40,1,1,1,7.9999847,7.9999847,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,744,-81209.008,0,0,0,0,0,1035.9613 +15114,18485,32935,-9,32933,32932,1,1,23,0,0,0,1,1,1,0,4,7.9926586,8.0273542,0,0,0,-1099.2916,-9,1,1,2021,10,0,40,0,1,1,1,6.5318155,6.5318155,0,0,0,0,0,0,0,0,0,0,0,3.582068,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,264,-207721.72,0,0,0,0,0,1250.067 +15115,18486,32936,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3586769,8.3920813,0,0,0,-912.05237,0,2,2,2021,7,0,40,42,1,0,0,11.371789,11.371789,.05,.05,0,0,0,0,0,2,0,0,0,1.3915039,0,53.56,49.66,-9,-9,6.666666666666667,1,1,0,0,6,6,4,1,417,320773.47,124184.76,112200.06,0,8476.3848,0,1640.4706 +15116,18487,32937,32938,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,54,-5,-32.467148,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.14,18.77,59.8,39.25,5,1,1,0,0,0,5,2,0,818,210777.13,0,256590.97,0,0,0,2138.9561 +15116,18487,32938,32937,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.3067269,4.6783128,7,5,109.19208,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1611114,59.8,39.25,65.14,18.77,6.666666666666667,1,1,0,0,0,5,2,0,818,210777.13,0,256590.97,0,0,0,2138.9561 +15117,18488,32939,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.5532107,7.9453335,0,0,0,-1047.2946,-9,3,3,2021,17,5,44,0,1,5,0,5.1270647,5.1270647,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,27.98,41.86,-9,-9,6.666666666666667,1,1,0,1,9,9,3,0,1872,-34424.777,8264.0664,0,0,0,0,965.2254 +15118,18489,32940,32941,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.1229377,7.2334895,11,1,17.828802,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.1012068,6.9712229,57.57,44.16,57.51,42.37,8.333333333333334,1,1,0,0,7,4,4,1,1019,1272724.8,974911.63,238964.38,0,0,0,4468.8276 +15118,18489,32941,32940,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.1193209,7.856545,11,-1,1.0725237,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5151558,8.0613594,57.51,42.37,57.57,44.16,8.333333333333334,1,1,0,0,5,4,4,1,1019,1272724.8,974911.63,238964.38,0,0,0,4468.8276 +15119,18490,32942,32943,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6510539,7.3693805,0,6,-4,81.260704,0,2,3,2021,7,0,51,35,1,0,0,4.9447808,4.9447808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,10,1,1,0,0,7,5,4,1,332,436364.41,359890.88,138158.91,0,6969.0742,0,1286.8741 +15119,18490,32943,32942,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.7541733,7.8452783,0,6,4,149.12753,0,2,2,2021,4,0,32,48,1,0,0,9.8779745,9.8779745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.15,52.91,0,1,1,0,0,7,5,4,1,332,436364.41,359890.88,138158.91,0,6969.0742,0,1286.8741 +15119,18491,32944,-9,32942,32943,1,1,20,0,0,0,2,2,-9,0,4,7.4539018,7.1757703,0,0,0,-974.0047,0,2,3,2021,5,0,35,40,1,0,1,4.6923137,4.6923137,.05,.05,0,0,0,0,0,0,0,0,0,3.0104239,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,913,184842.55,81283.609,0,0,0,0,1123.262 +15120,18492,32945,-9,32947,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.58557,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15120,18492,32946,-9,32947,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-915.44769,-9,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.71,63.08,-9,-9,6.666666666666667,3,4,1,0,0,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15120,18492,32947,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9838591,8.1470852,0,0,0,-1185.3112,0,3,3,2021,20,9,21,20,1,9,0,19.595287,19.595287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.3,43.01,-9,-9,5,3,4,0,0,6,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15121,18493,32948,32950,-9,-9,1,0,64,0,2,0,1,1,-9,0,5,8.4457827,8.2965698,0,25,7,-46.449368,0,1,1,2021,7,0,29,29,1,0,0,24.508001,24.508001,0,0,0,0,0,0,0,2,1,1,0,3.1119878,0,48.18,61.8,60.12,54.8,6.666666666666667,1,1,0,0,12,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32949,-9,32948,32950,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2972,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32950,32948,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,8.9830713,9.2367239,0,25,-7,22.566677,0,2,2,2021,6,0,38,35,1,0,0,25.535561,25.535561,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.18,61.8,8.333333333333334,2,3,0,0,11,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32951,-9,32948,32950,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-989.10669,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15122,18494,32952,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.23016,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,9.3787823,0,0,1,1,0,1.6015434,0,68.34,24.19,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1129,-162876.2,0,0,0,0,0,635.14948 +15123,18495,32953,32954,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9468536,8.672266,0,12,-3,102.10633,0,2,2,2021,6,0,45,45,1,0,0,17.40519,17.40519,.05,.05,0,0,0,0,0,0,0,0,0,1.5516131,0,51.49,57.57,62.39,56.71,8.333333333333334,1,1,0,0,12,12,5,0,286.5,1102434,812095.25,242027.5,97865.625,0,0,6444.9902 +15123,18495,32954,32953,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.3195572,9.5159407,0,12,3,-14.755182,0,2,2,2021,6,0,80,50,1,0,0,18.441776,18.441776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.49,57.57,10,1,1,0,0,13,12,5,0,286.5,1102434,812095.25,242027.5,97865.625,0,0,6444.9902 +15124,18496,32955,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.9315901,7.967196,0,0,0,-995.80212,-9,3,1,2021,4,0,52,0,1,0,0,7.1562228,7.1562228,0,0,0,0,0,0,0,7,1,1,0,6.5162706,0,55.9,52.64,-9,-9,9,4,2,0,0,10,8,4,0,816,-42850.535,0,0,0,0,1425.9329,2139.271 +15124,18496,32956,-9,32955,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1018.946,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,0,8,4,0,816,-42850.535,0,0,0,0,1425.9329,2139.271 +15125,18497,32957,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.3605,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,2.3846416,0,23.212143,0,1,1,0,0,0,40.38,23.69,-9,-9,1.666666666666667,2,3,0,0,5,8,1,0,560,195153.3,0,0,0,0,0,1610.8958 +15126,18498,32958,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.192163,6.4146824,0,0,-988.63501,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.1707063,0,0,1,1,0,0,5.8821697,38.24,25.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1353,253528.88,34745.875,69429.625,0,0,0,1668.0381 +15127,18499,32959,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.4641886,8.5005617,0,0,0,-1075.687,0,3,3,2021,11,0,40,40,1,0,0,13.614183,13.614183,0,0,0,0,0,0,0,0,0,0,0,5.4195695,0,56.01,44.41,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,184,1384456.8,656160.06,-1769.6106,0,0,0,2244.0073 +15128,18500,32960,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-932.67346,-9,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.78,34.25,-9,-9,6.666666666666667,1,1,0,1,0,6,1,0,116,132749.02,0,154066.14,0,0,0,1376.9496 +15128,18501,32961,-9,32960,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-929.54138,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.7,25.29,-9,-9,5,1,1,0,0,2,6,1,0,214,-123042.97,0,0,0,-1697.6727,0,1044.8112 +15129,18502,32962,-9,32963,32964,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.10876,0,2,2,2021,11,0,0,36,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,0,328,-14532.153,0,0,0,0,0,1391.6921 +15129,18503,32963,32964,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7238493,8.7364016,0,6,-4,-47.320015,0,3,3,2021,8,0,38,37,1,0,0,20.939392,20.939392,0,0,0,0,0,0,0,0,1,1,0,.66879499,0,57.16,56.15,52.77,55.33,8.333333333333334,1,1,0,0,8,9,5,0,925.5,1041840.3,822957.38,284472.63,-10449.259,10029.509,0,4178.9072 +15129,18503,32964,32963,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9780121,8.8356609,0,6,4,107.93462,0,-9,-9,2021,9,1,43,45,1,1,0,17.579716,17.579716,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.77,55.33,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,0,925.5,1041840.3,822957.38,284472.63,-10449.259,10029.509,0,4178.9072 +15130,18504,32965,32966,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.1974845,6.7606478,0,11,5,3.5001733,0,2,2,2021,8,1,36,34,1,1,0,3.9471953,3.9471953,0,0,0,0,0,0,0,0,0,0,0,8.8617125,0,56.33,44.26,49.04,55.86,8.333333333333334,1,1,0,0,14,10,5,1,1223,1380075.1,138878.91,0,0,0,0,8423.9648 +15130,18504,32966,32965,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.6725979,9.5366602,0,32,-5,-43.045696,0,2,2,2021,12,0,51,50,1,0,0,32.618614,32.618614,0,0,0,0,0,0,0,0,0,0,0,1.1452314,0,49.04,55.86,56.33,44.26,8.333333333333334,1,1,0,0,14,10,5,1,1223,1380075.1,138878.91,0,0,0,0,8423.9648 +15130,18505,32967,-9,32966,32965,1,0,25,0,0,0,1,1,-9,0,4,8.9403944,8.7436285,0,0,0,-1078.3401,-9,1,2,2021,11,3,45,0,1,3,1,15.015544,15.015544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,3722,39166.742,75352.93,243542.92,87452.688,3721.2498,1693.1586,2065.397 +15131,18506,32968,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.1461,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.55,32.53,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1560,0,0,0,0,0,0,1342.4694 +15132,18507,32969,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.7753878,8.7044258,0,15,-4,20.427116,0,2,3,2021,9,0,53,63,1,0,0,18.418333,18.418333,.05,.05,0,0,0,0,0,7,0,0,0,3.8113446,0,54.96,53.17,63.41,37,6.666666666666667,1,1,0,0,10,4,5,1,607,293297.06,154307.22,164875.13,86823.789,0,0,2289.7134 +15132,18508,32970,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0380297,8.1961012,0,15,4,-70.894066,0,-9,-9,2021,13,1,45,44,1,1,0,6.552825,6.552825,.05,.05,0,0,0,0,0,2,0,0,0,2.2205076,0,63.41,37,54.96,53.17,6.666666666666667,1,1,0,0,8,4,5,1,843,-42856.711,-94896.609,0,0,0,-151.5145,1479.5637 +15133,18509,32971,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-885.80731,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.03,43.33,-9,-9,1.666666666666667,1,1,1,1,0,9,1,0,442,166753.27,0,0,0,0,0,1540.3638 +15134,18510,32972,32973,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.1449471,9.0261517,0,6,-1,-1.1815437,0,2,3,2021,7,0,35,35,1,0,0,28.494802,28.494802,.05,.05,.05,0,0,0,0,0,0,0,0,9.2484655,0,51.24,58.84,42.05,58.8,8.333333333333334,1,1,0,0,7,1,5,1,336,3435123.8,1984769.8,475564.56,180732.03,6501.2266,0,8417.4189 +15134,18510,32973,32972,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1320114,8.8841257,0,6,1,29.517145,0,2,2,2021,18,6,38,38,1,6,0,19.518782,19.518782,0,0,.05,0,0,0,0,2,0,0,0,5.8259039,0,42.05,58.8,51.24,58.84,3.333333333333333,1,1,0,0,7,1,5,1,336,3435123.8,1984769.8,475564.56,180732.03,6501.2266,0,8417.4189 +15135,18511,32974,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0116072,8.0821772,0,0,0,-1096.7177,0,2,3,2021,19,7,38,38,1,7,0,8.3642902,8.3642902,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.46,51.26,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,524,-43380.906,-124636.69,0,0,0,736.60742,1310.2511 +15136,18512,32975,32976,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.832747,5.9784288,46,-3,-65.624176,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,3.0444689,27,1,1,0,6.3902178,5.9333572,57.79,24.97,46,36,8.333333333333334,1,1,0,0,5,9,2,0,269.5,505523.28,118057.66,202368.81,0,0,0,3050.0869 +15136,18512,32976,32975,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,3.245415,2.9979415,46,3,34.857048,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,1.5784105,20.092348,27.959118,0,1,1,0,4.0828619,3.0948598,46,36,57.79,24.97,6.666666666666667,1,1,0,0,5,9,2,0,269.5,505523.28,118057.66,202368.81,0,0,0,3050.0869 +15137,18513,32977,32978,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,49,0,-15.311051,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5571675,0,60.8,22.12,56.27,37.01,8.333333333333334,1,1,0,0,0,2,2,1,750.5,40594.137,0,0,0,0,0,1305.3604 +15137,18513,32978,32977,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,4.4794464,4.5515447,49,0,93.685448,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2829351,4.4486938,56.27,37.01,60.8,22.12,5,1,1,0,0,6,2,2,1,750.5,40594.137,0,0,0,0,0,1305.3604 +15138,18514,32979,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.9317632,7.8554335,0,0,0,-1024.3806,0,3,3,2021,20,7,45,44,1,7,0,7.4774375,7.4774375,0,0,0,0,0,0,0,0,0,0,0,0,0,16.99,53.15,-9,-9,1.666666666666667,1,1,0,1,7,12,4,0,1077,278148.94,0,235294.22,0,0,0,2121.4187 +15138,18515,32980,-9,32979,-9,1,0,23,0,0,0,2,2,-9,0,2,7.3991499,7.0973477,0,0,0,-983.20605,0,2,-9,2021,13,1,29,29,1,1,1,6.1577606,6.1577606,0,0,0,0,0,0,0,0,0,0,0,0,0,25.5,59.31,-9,-9,6.666666666666667,1,1,0,0,3,12,3,0,1147,15332.244,0,0,0,2488.7942,0,324.94962 +15139,18516,32981,-9,32984,32982,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4254,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32982,32984,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.0130367,9.2440405,0,19,4,122.51929,0,2,2,2021,12,0,35,45,1,0,0,26.421448,26.421448,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,62.39,56.71,8.333333333333334,1,1,0,0,14,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32983,-9,32984,32982,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-916.76227,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32984,32982,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.0970511,7.136764,0,18,-4,109.69073,0,3,2,2021,10,0,22,22,1,0,0,7.9518819,7.9518819,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.48,51.85,5,1,1,0,0,14,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15140,18517,32985,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-933.48248,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,74,20516.93,0,148431.69,0,0,0,1173.4475 +15141,18518,32986,32987,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7147398,8.0367098,6.5989552,8,2,100.82893,0,2,2,2021,8,0,24,19,1,0,0,9.8850002,9.8850002,0,0,0,0,0,0,0,0,0,0,0,4.2908626,6.7937951,57.33,53.46,52.12,34.27,8.333333333333334,1,1,0,0,8,11,5,1,554,4161755.3,2574183.5,819723.88,0,0,0,5373.7021 +15141,18518,32987,32986,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.7915134,9.5226288,0,8,-2,-84.058983,0,2,2,2021,14,2,40,37,1,2,0,42.212307,42.212307,0,0,0,0,0,0,0,0,0,0,0,6.3561087,0,52.12,34.27,57.33,53.46,6.666666666666667,1,1,0,0,8,11,5,1,554,4161755.3,2574183.5,819723.88,0,0,0,5373.7021 +15142,18519,32988,32989,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4472961,8.5161295,0,28,-7,127.52493,0,3,2,2021,7,1,50,50,1,1,0,9.2731333,9.2731333,.05,.05,0,0,0,0,0,14.5,1,1,0,3.7844803,0,57.33,53.46,55.63,15.42,8.333333333333334,1,1,0,0,13,13,4,1,912.5,529738,346178.38,197118.09,14210.875,1622.2014,21229.398,2925.9512 +15142,18519,32989,32988,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,0,0,28,7,11.015361,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,1,0,18.854025,0,0,1,1,0,0,0,55.63,15.42,57.33,53.46,8.333333333333334,1,1,0,0,7,13,4,1,912.5,529738,346178.38,197118.09,14210.875,1622.2014,21229.398,2925.9512 +15143,18520,32990,32991,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6514769,8.816268,0,36,-1,-48.068016,0,2,2,2021,11,0,35,45,1,0,0,26.390587,26.390587,0,0,0,0,0,0,0,0,0,0,0,3.098829,0,54.62,48,38.63,55.24,8.333333333333334,1,1,0,0,12,7,5,1,2284.5,162927.78,101892.77,0,0,5117.1089,2309.3979,3516.9094 +15143,18520,32991,32990,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0108147,8.0227299,0,36,1,106.56914,0,-9,2,2021,17,5,31,30,1,5,0,9.4791918,9.4791918,0,0,0,0,0,0,0,2,0,0,0,4.5379243,0,38.63,55.24,54.62,48,6.666666666666667,1,1,0,0,10,7,5,1,2284.5,162927.78,101892.77,0,0,5117.1089,2309.3979,3516.9094 +15144,18521,32992,32993,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.4502449,8.6822271,0,30,-1,136.68851,0,1,1,2021,15,3,40,40,1,3,0,18.372343,18.372343,.05,.05,0,0,0,0,0,0,0,0,0,2.6580346,0,48.71,61.53,35.75,66.17,6.666666666666667,1,1,0,0,13,11,5,1,999,739170.13,795512,96302.453,3545.4346,0,0,3094.8467 +15144,18521,32993,32992,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.1469116,8.1791935,0,31,1,47.167557,0,3,3,2021,12,4,60,60,1,4,0,6.757123,6.757123,.05,.05,0,0,0,0,0,0,0,0,0,2.8370848,0,35.75,66.17,48.71,61.53,6.666666666666667,1,1,0,0,12,11,5,1,999,739170.13,795512,96302.453,3545.4346,0,0,3094.8467 +15144,18522,32994,-9,32992,32993,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-895.58032,-9,1,1,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,5,1,1,0,0,3,11,1,1,933,-68973.914,0,0,0,0,0,575.78772 +15145,18523,32995,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,4.0040722,3.9283974,0,0,-1091.8839,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6914359,4.1099348,51.26,50.95,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,551,289673.31,46542.156,74945.977,0,0,0,-188.19385 +15146,18524,32996,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.1710796,8.3844566,0,2,9,76.711288,0,2,2,2021,14,2,40,39,1,2,0,10.707391,10.707391,0,0,0,0,0,0,0,0,0,0,0,0,0,35.31,54.01,46,58,3.333333333333333,1,1,0,0,10,4,3,0,755,-160077.28,-24098.602,0,0,583.3158,904.89038,982.56183 +15147,18525,32997,32998,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,5,-2,-55.007797,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.97,30.71,51.49,57.57,5,1,1,1,0,0,11,2,0,625.5,3155216.3,116203.23,3294326,189361.47,63557.121,0,583.09332 +15147,18525,32998,32997,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,.82563728,1.0198117,0,5,2,58.950928,0,3,2,2021,12,0,44,45,1,0,0,.0065178745,.0065178745,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,42.97,30.71,6.666666666666667,1,1,0,0,11,11,2,0,625.5,3155216.3,116203.23,3294326,189361.47,63557.121,0,583.09332 +15147,18526,32999,-9,32997,32998,1,0,25,0,0,0,2,2,-9,0,4,7.6500487,8.0632477,0,0,0,-1078.0469,0,2,2,2021,12,0,43,0,1,0,1,7.2203965,7.2203965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,1236,76817.969,-23425.926,0,0,0,0,2197.896 +15147,18527,33000,-9,32997,32998,1,0,23,0,0,0,2,2,-9,0,5,6.1501412,6.4626732,0,0,0,-886.96252,0,2,2,2021,12,0,34,0,1,0,1,2.0584264,2.0584264,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,1,4,11,2,0,531,-290049.84,0,0,0,0,0,1115.8541 +15148,18528,33001,33002,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0710759,7.2239428,46,-1,131.01633,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9584808,7.1499596,53,47,51,46,7,1,1,0,0,0,1,2,1,387.5,545537.63,291510.66,131132.25,0,0,0,2089.5798 +15148,18528,33002,33001,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,1,-84.504318,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,1,2,1,387.5,545537.63,291510.66,131132.25,0,0,0,2089.5798 +15148,18529,33003,33004,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.1353207,8.0932178,0,2,0,-61.592445,0,-9,-9,2021,9,0,40,45,1,1,0,13.300044,13.300044,.05,.05,0,0,0,0,0,0,1,1,0,4.0246496,0,52,55,54.21,47.1,7,1,1,0,0,1,1,4,1,1669.5,59176.336,-14399.5,0,0,0,0,2361.9429 +15148,18529,33004,33003,33002,33001,1,0,44,0,0,0,2,2,-9,0,2,6.4521656,6.7334704,0,2,0,-104.99694,0,3,2,2021,12,1,24,29,1,1,0,2.7769544,2.7769544,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,47.1,52,55,6.666666666666667,1,1,0,0,9,1,4,1,1669.5,59176.336,-14399.5,0,0,0,0,2361.9429 +15149,18530,33005,-9,33008,33006,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.11096,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33006,33008,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.4927826,8.9652843,0,12,-13,-53.629288,0,2,2,2021,14,2,37,37,1,2,0,18.499598,18.499598,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.28,53.83,51.83,57.2,6.666666666666667,1,1,0,0,15,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33007,-9,33008,33006,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.6484,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33008,33006,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8851714,7.7410007,0,12,13,-58.786182,0,2,2,2021,10,1,19,19,1,1,0,16.962856,16.962856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.28,53.83,6.666666666666667,1,1,0,0,15,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15150,18531,33009,-9,33011,33012,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.7915,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33010,-9,33011,33012,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.777,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33011,33012,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,8.4374475,8.7764435,0,12,-1,84.254913,0,3,3,2021,25,11,29,29,1,11,0,25.429834,25.429834,.05,.05,0,0,0,0,0,7,0,0,0,0,0,20.72,56.86,43.26,35.91,6.666666666666667,1,1,0,0,12,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33012,33011,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.4990683,8.4255037,0,12,1,.64072961,0,-9,-9,2021,15,3,37,37,1,3,0,12.484418,12.484418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.26,35.91,20.72,56.86,5,1,1,0,1,13,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15151,18532,33013,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.8117604,4.9924445,0,0,-1022.5764,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6578665,5.3141851,40.23,47.45,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,549,116415.88,0,0,0,0,0,1464.4169 +15152,18533,33014,-9,33017,33016,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.45465,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33015,-9,33017,33016,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1004.0671,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33016,33017,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.1685667,8.3650198,0,10,7,114.39548,0,2,2,2021,11,0,39,40,1,0,0,13.065319,13.065319,.05,.05,0,0,0,0,0,42,1,1,0,0,0,49.04,55.86,51.41,56.15,5,1,1,0,0,11,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33017,33016,-9,-9,1,0,29,0,3,0,2,2,-9,1,3,0,0,0,10,-7,-97.262413,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,49.04,55.86,6.666666666666667,1,1,0,0,1,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33018,-9,33017,33016,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.3876,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15153,18534,33019,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.0444,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,53.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,757,-201538.33,0,0,0,0,401.38373,480.12012 +15154,18535,33020,-9,33021,-9,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.2081,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33021,-9,-9,-9,1,0,38,0,4,0,2,2,-9,0,5,6.861166,6.4959669,0,0,0,-1103.1892,0,3,3,2021,4,0,16,16,1,0,0,7.4910097,7.4910097,0,0,0,0,0,0,0,0,1,1,0,0,0,42.42,58.81,-9,-9,0,3,4,0,0,7,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33022,-9,33021,-9,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-959.15717,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33023,-9,33021,-9,1,1,16,0,4,1,2,0,-9,0,5,0,4.0508385,5.0445676,0,0,-953.62695,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9857097,0,54.1,59.11,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33024,-9,33021,-9,1,1,16,0,4,1,2,0,-9,0,5,0,3.9838071,4.0580592,0,0,-1128.5918,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.921257,0,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15155,18536,33025,33026,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.8385849,9.0357084,0,17,5,-67.97596,0,2,2,2021,5,0,39,40,1,0,0,22.17477,22.17477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.63,58.83,8.333333333333334,1,1,0,0,8,5,5,1,325,962244.56,855031.5,170301.47,47153.758,18619.268,0,5996.7539 +15155,18536,33026,33025,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.859684,9.2937136,0,16,-5,-25.965263,0,3,3,2021,7,0,37,37,1,0,0,27.72843,27.72843,.05,.05,0,0,0,0,0,0,0,0,0,4.3635287,0,54.63,58.83,57.06,57.76,8.333333333333334,1,1,0,0,5,5,5,1,325,962244.56,855031.5,170301.47,47153.758,18619.268,0,5996.7539 +15156,18537,33027,33028,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.6023369,6.9707742,53,-3,-1.9760889,0,2,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3941588,7.1390519,37.36,54.65,41.47,42.02,3.333333333333333,1,1,0,0,0,2,3,1,441,1322319,898941.5,279944.69,100126.56,0,0,3199.1509 +15156,18537,33028,33027,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.929554,7.7185187,11,3,-31.837036,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1783295,7.7068548,41.47,42.02,37.36,54.65,8.333333333333334,1,1,0,0,5,2,3,1,441,1322319,898941.5,279944.69,100126.56,0,0,3199.1509 +15157,18538,33029,33030,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8075829,8.6790724,4.7890258,6,3,-99.218307,0,2,3,2021,7,0,49,60,1,0,0,17.838863,17.838863,0,0,0,0,0,0,0,0,1,1,0,5.1901889,5.0159092,61.04,39.41,53.2,18.99,8.333333333333334,1,1,0,0,8,11,4,1,1567,684828,98962.055,241330.53,0,11793.34,0,2416.6826 +15157,18538,33030,33029,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,6,-3,10.888972,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,18.99,61.04,39.41,5,1,1,0,0,0,11,4,1,1567,684828,98962.055,241330.53,0,11793.34,0,2416.6826 +15158,18539,33031,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1052.6016,0,2,2,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,19.99,33.18,-9,-9,5,1,1,0,0,0,12,2,1,1873,-108341.38,0,0,0,0,0,1184.3871 +15159,18540,33032,33033,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,8.0137901,8.280035,0,28,2,-129.88708,0,3,3,2021,8,0,55,60,1,0,0,7.8926716,7.8926716,.05,.05,0,0,0,0,0,0,0,0,0,3.2068658,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,8,13,4,1,658.5,736202.63,574300,150296.06,68918.672,10432.62,-293.65921,3432.8281 +15159,18540,33033,33032,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.5015364,8.4668465,0,28,-2,86.8647,0,2,2,2021,8,0,37,44,1,0,0,17.186895,17.186895,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,11,13,4,1,658.5,736202.63,574300,150296.06,68918.672,10432.62,-293.65921,3432.8281 +15160,18541,33034,33035,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.2566147,8.3610868,0,34,-4,78.174141,0,2,2,2021,8,0,37,37,1,0,0,13.686289,13.686289,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.83,57.2,41.17,59.31,8.333333333333334,1,1,0,0,8,5,5,1,2466.5,433907.13,39110.707,271946.47,0,0,0,4425.1113 +15160,18541,33035,33034,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5334482,8.4463148,0,34,4,88.356125,0,3,3,2021,12,0,42,42,1,0,0,16.302677,16.302677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51.83,57.2,5,1,1,0,0,8,5,5,1,2466.5,433907.13,39110.707,271946.47,0,0,0,4425.1113 +15160,18542,33036,-9,33034,33035,1,0,20,0,0,0,2,2,-9,0,3,8.1122236,8.2701969,0,0,0,-863.39136,0,1,2,2021,18,6,39,0,1,6,1,10.845611,10.845611,.05,.05,0,0,0,0,0,0,0,0,0,1.8285801,0,40.27,45.06,-9,-9,5,1,1,0,0,4,5,4,1,555,41314.859,52816.742,0,0,3814.8604,0,1692.7568 +15160,18543,33037,-9,33034,33035,1,1,18,0,0,0,2,2,-9,0,3,8.1347504,7.9398885,0,0,0,-995.71118,0,1,2,2021,5,0,38,40,1,0,1,9.3801718,9.3801718,0,0,0,0,0,0,0,0,0,0,0,7.7446775,0,54.89,46.52,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,218,74813.68,0,0,0,0,0,1871.7863 +15161,18544,33038,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.1589117,6.2025361,0,0,-1025.0023,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2667322,52,47,-9,-9,7,1,1,0,0,0,8,2,0,4127,717263.31,181268.67,372832.59,0,0,1943.6925,548.20544 +15162,18545,33039,33040,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.8484507,7.1467924,0,15,-4,22.384077,0,3,3,2021,3,0,20,27,1,0,0,6.1952333,6.1952333,0,0,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,52.99,51.28,1.666666666666667,1,1,0,0,8,7,5,1,996.5,658406.13,192556.91,551071.75,61688.148,0,0,3167.9734 +15162,18545,33040,33039,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8855114,8.6256952,0,15,4,-4.5955114,0,3,2,2021,9,0,35,40,1,0,0,23.924828,23.924828,.05,.05,0,0,0,0,0,2,0,0,0,1.2149271,0,52.99,51.28,47.37,55.41,6.666666666666667,1,1,0,0,8,7,5,1,996.5,658406.13,192556.91,551071.75,61688.148,0,0,3167.9734 +15163,18546,33041,-9,33042,33043,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-888.84497,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33042,33043,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.6388283,8.7740164,0,14,-1,-51.279781,0,2,1,2021,11,0,44,50,1,0,0,13.488046,13.488046,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,38.04,58.33,8.333333333333334,1,1,0,0,11,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33043,33042,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.6753731,9.7418022,0,14,1,.66901195,0,2,3,2021,13,2,54,40,1,2,0,28.521479,28.521479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.04,58.33,40.77,61.04,6,1,1,0,0,10,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33044,-9,33042,33043,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.1494,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15164,18547,33045,-9,33046,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7128,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15164,18547,33046,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1042.208,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.73,42.82,-9,-9,5,1,1,1,1,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15164,18547,33047,-9,33046,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.9249,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15165,18548,33048,33049,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.5545468,7.6852384,3,5,40.019859,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0124278,7.271019,54.21,49.46,59.29,49.68,10,1,1,0,0,1,12,3,1,1068,1520921.9,1120734.5,184934.73,0,0,0,4554.4883 +15165,18548,33049,33048,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.5484219,7.4961491,3,-5,56.069904,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5278792,7.2881489,59.29,49.68,54.21,49.46,8.333333333333334,1,1,0,0,11,12,3,1,1068,1520921.9,1120734.5,184934.73,0,0,0,4554.4883 +15166,18549,33050,-9,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.8186741,8.227108,6.8032012,0,0,-900.54974,0,1,1,2021,27,11,32,32,1,11,0,10.000904,10.000904,.05,.05,0,0,0,0,0,0,1,1,0,6.702538,0,23.64,60.82,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,2763.5,-31052.506,9695.5029,0,0,0,2965.5818,2360.147 +15166,18549,33051,-9,33050,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.66028,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,2763.5,-31052.506,9695.5029,0,0,0,2965.5818,2360.147 +15167,18550,33052,33053,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,27,7,41.929188,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.599771,5.0405531,22.021618,0,1,1,0,4.3576579,0,58.03,31.39,57.06,57.76,8.333333333333334,1,1,0,0,7,13,4,1,644.5,1016202.8,725071,266890.72,37480.938,0,5600.0859,2799.6968 +15167,18550,33053,33052,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,8.6496868,8.4712019,0,27,-7,9.5640163,0,3,2,2021,6,0,50,50,1,0,0,10.641397,10.641397,.05,.05,0,0,0,0,0,2,1,1,0,4.8408694,0,57.06,57.76,58.03,31.39,8.333333333333334,1,1,0,0,12,13,4,1,644.5,1016202.8,725071,266890.72,37480.938,0,5600.0859,2799.6968 +15168,18551,33054,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1105.6417,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.72,27.41,-9,-9,6.666666666666667,1,1,0,0,8,6,2,0,199,-321567.88,0,0,0,10.892514,0,1674.7278 +15169,18552,33055,33056,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,8,80.209541,0,3,2,2021,11,1,0,10,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,49.35,59.64,8.333333333333334,1,1,0,0,10,7,3,1,1174,970481.75,340240.47,431223.94,0,0,0,2142.5925 +15169,18552,33056,33055,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.1077232,8.092762,6.0069842,46,-8,3.5123565,0,3,3,2021,16,6,26,0,1,6,0,13.329665,13.329665,0,0,0,0,0,0,0,0,1,1,0,2.2470391,5.9543943,49.35,59.64,53,47,8.333333333333334,1,1,0,0,10,7,3,1,1174,970481.75,340240.47,431223.94,0,0,0,2142.5925 +15170,18553,33057,-9,-9,-9,1,0,50,0,2,0,3,3,-9,0,4,7.602951,7.8531165,0,0,0,-949.96796,0,-9,-9,2021,9,0,35,35,1,0,0,6.9289823,6.9289823,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,237,47237.734,0,0,0,0,0,522.3891 +15170,18553,33058,-9,33057,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.90436,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,237,47237.734,0,0,0,0,0,522.3891 +15171,18554,33059,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.1286707,9.0583467,1.890659,0,0,-951.16077,0,3,3,2021,6,0,50,50,1,0,0,19.907124,19.907124,.05,.05,0,0,0,0,0,2,0,0,0,0,2.2423172,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,269,625502.38,286708.44,345643.66,63403.797,0,0,3251.4607 +15172,18555,33060,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-921.32343,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,35.97,32.23,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1480,0,0,0,0,0,0,-127.71276 +15172,18556,33061,33062,33060,-9,1,0,58,0,0,0,3,3,-9,0,3,7.961904,7.8650513,0,4,0,92.058609,0,3,2,2021,12,0,38,38,1,0,0,7.7413106,7.7413106,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.15,41.42,57.33,53.46,5,2,3,0,0,10,9,4,1,1509,1541335.5,1215820.5,316280.53,118178.81,283.82834,1664.2351,2461.0415 +15172,18556,33062,33061,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.2956648,7.7975755,0,4,0,4.4553275,0,-9,-9,2021,8,0,38,38,1,0,0,9.4287558,9.4287558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.15,41.42,8.333333333333334,2,3,0,0,8,9,4,1,1509,1541335.5,1215820.5,316280.53,118178.81,283.82834,1664.2351,2461.0415 +15173,18557,33063,33064,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,8.8845291,9.1689425,6.4595423,37,-1,33.550804,0,-9,-9,2021,2,1,60,60,1,1,0,13.63796,13.63796,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8454103,30.43,52.53,59.14,52.5,0,1,1,0,0,9,8,5,1,446,776408.25,397654,337443.59,0,0,0,3804.3306 +15173,18557,33064,33063,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7677321,8.0332966,5.462235,37,1,65.134644,0,3,3,2021,8,0,43,42,1,0,0,5.9139252,5.9139252,.05,.05,0,0,0,0,0,0,0,0,0,0,5.664012,59.14,52.5,30.43,52.53,1.666666666666667,1,1,0,0,7,8,5,1,446,776408.25,397654,337443.59,0,0,0,3804.3306 +15174,18558,33065,33066,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.2730899,7.8514504,7.30374,45,0,-18.87402,0,3,2,2021,13,1,12,13,1,1,0,16.793554,16.793554,0,0,0,0,0,0,0,2,1,1,0,6.0642862,6.8548985,54.37,54.8,55.27,44.81,8.333333333333334,1,1,0,0,6,9,3,0,1403,821103.5,611655.44,257287.5,0,0,0,2727.833 +15174,18558,33066,33065,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.1301994,6.994566,44,0,72.311241,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.8485751,6.448266,55.27,44.81,54.37,54.8,8.333333333333334,1,1,0,1,6,9,3,0,1403,821103.5,611655.44,257287.5,0,0,0,2727.833 +15175,18559,33067,33068,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.2212763,7.0117898,0,3,3,11.576077,0,2,3,2021,12,0,18,20,1,0,0,9.3186007,9.3186007,.05,.05,0,0,0,0,0,2,0,0,0,2.2274806,0,54.38,41.24,54.79,55.86,8.333333333333334,1,1,0,0,7,13,4,1,1483,173131.13,129153.83,73455.172,26533.344,1672.8135,0,2125.78 +15175,18559,33068,33067,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.421361,8.3569794,0,3,-3,-55.704872,0,2,2,2021,7,0,37,37,1,0,0,10.701838,10.701838,.05,.05,0,0,0,0,0,0,0,0,0,1.174582,0,54.79,55.86,54.38,41.24,8.333333333333334,1,1,0,0,10,13,4,1,1483,173131.13,129153.83,73455.172,26533.344,1672.8135,0,2125.78 +15176,18560,33069,33070,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9052343,7.86309,0,33,5,103.42105,0,3,3,2021,16,4,29,28,1,4,0,9.0908813,9.0908813,0,0,0,0,0,0,0,7,0,0,0,0,0,48.53,58.91,57.16,56.15,8.333333333333334,1,1,0,0,9,8,4,1,377,713108.94,33095.703,702629.38,6881.9243,0,0,2476.8916 +15176,18560,33070,33069,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.8679872,7.7358756,0,31,-5,130.20151,0,2,2,2021,6,0,30,40,1,0,0,12.318324,12.318324,0,0,0,0,0,0,0,2,0,0,0,4.222755,0,57.16,56.15,48.53,58.91,8.333333333333334,1,1,0,0,9,8,4,1,377,713108.94,33095.703,702629.38,6881.9243,0,0,2476.8916 +15176,18561,33071,-9,33069,33070,1,0,26,0,0,0,1,1,-9,0,4,8.0587835,8.163414,0,0,0,-1063.1874,0,2,2,2021,9,0,40,0,1,0,1,9.4103518,9.4103518,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,852,-68781.656,158526.09,0,0,0,0,777.6571 +15177,18562,33072,33073,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9609756,7.6256866,0,29,0,-102.55611,0,2,1,2021,8,0,40,40,1,0,0,5.8997445,5.8997445,.05,.05,0,0,0,0,0,0,0,0,0,6.4231,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,11,4,5,1,897.5,660683,473603.81,149831.72,0,0,0,3687.1982 +15177,18562,33073,33072,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.5770769,8.5732298,0,29,0,144.2234,0,-9,-9,2021,7,0,46,49,1,0,0,12.275437,12.275437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.37,54.8,6.666666666666667,1,1,0,0,11,4,5,1,897.5,660683,473603.81,149831.72,0,0,0,3687.1982 +15177,18563,33074,-9,33072,33073,1,1,26,0,0,0,2,2,-9,0,4,8.5878286,8.3301086,0,0,0,-934.2489,-9,2,2,2021,10,0,39,0,1,1,1,16.316023,16.316023,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,5,1,322,-160728.84,18033.551,94709.891,166492.06,1150.1184,1267.2397,1373.1207 +15178,18564,33075,33076,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.8841867,7.821219,0,6,-1,21.475977,0,-9,-9,2021,9,0,40,30,1,1,0,6.3166928,6.3166928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,39.66,50.06,8,4,1,0,0,1,13,5,1,484.5,668037.38,524094.25,201117.09,35785.938,0,0,2993.3359 +15178,18564,33076,33075,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.3341255,8.3429422,0,6,1,-29.539421,0,3,3,2021,13,2,62,45,1,2,0,8.654974,8.654974,.05,.05,0,0,0,0,0,0,1,1,0,6.7410488,0,39.66,50.06,53,54,6.666666666666667,1,1,0,0,6,13,5,1,484.5,668037.38,524094.25,201117.09,35785.938,0,0,2993.3359 +15178,18565,33077,-9,33076,33075,1,0,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-1068.3118,-9,2,2,2021,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.84,59.45,-9,-9,1.666666666666667,1,1,0,0,2,13,1,1,126,123755.56,0,0,0,0,0,0 +15179,18566,33078,33079,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.12286,5.098208,56,-1,-38.830921,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6692765,5.7207546,52.34,56.95,60.7,47.65,10,1,1,0,0,0,9,2,1,614,440799.03,100296.45,385867.13,0,0,0,2052.9739 +15179,18566,33079,33078,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,6.8112211,6.9365716,56,1,93.842522,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3124096,6.9342208,60.7,47.65,52.34,56.95,10,1,1,0,0,0,9,2,1,614,440799.03,100296.45,385867.13,0,0,0,2052.9739 +15180,18567,33080,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3759632,7.8471465,0,0,0,-1096.1858,0,2,2,2021,11,0,38,39,1,0,0,11.570068,11.570068,0,0,0,0,0,0,0,0,1,1,0,.33524925,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,1449,27438.996,0,0,0,0,0,1153.1803 +15181,18568,33081,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.3352084,7.2073808,0,0,-976.78986,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.5497842,7.167697,61.05,31.38,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,1310,484031.78,331887.34,140590.86,0,0,0,1801.4763 +15182,18569,33082,33086,-9,-9,1,1,34,0,4,0,2,2,-9,0,2,0,0,0,11,1,-65.819023,0,-9,-9,2021,30,11,0,45,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,7.28,63.64,26.14,55.77,5,1,1,1,0,6,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33083,-9,33086,33082,1,1,16,0,4,0,1,1,-9,0,4,0,0,0,0,0,-906.3905,1,2,2,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,5,1,1,0,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33084,-9,33086,33082,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.3286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33085,-9,33086,33082,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-916.50812,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33086,33082,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.5858326,7.8813186,0,11,-1,-104.37374,0,2,2,2021,20,8,36,35,1,8,0,6.5323033,6.5323033,0,0,0,0,0,0,0,0,1,0,1,0,0,26.14,55.77,7.28,63.64,5,1,1,0,0,4,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15183,18570,33087,33088,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0910144,6.6752305,52,-2,54.343685,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0497222,6.8983402,50,47,49.41,58.28,7,1,1,0,0,0,7,2,1,527.5,515551.03,219233.42,308296.13,0,0,0,2480.5581 +15183,18570,33088,33087,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.54182,6.8136058,52,2,28.598799,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6454954,6.6045485,49.41,58.28,50,47,6.666666666666667,1,1,0,0,1,7,2,1,527.5,515551.03,219233.42,308296.13,0,0,0,2480.5581 +15184,18571,33089,-9,33090,33091,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4029,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15184,18571,33090,33091,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.9495516,8.7814493,0,12,-1,-11.820761,0,-9,-9,2021,20,8,44,42,1,8,0,22.287294,22.287294,0,0,0,0,0,0,0,0,1,1,0,1.2137858,0,41.04,43.32,52.4,52.91,6.666666666666667,1,1,0,0,14,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15184,18571,33091,33090,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.7377129,8.2551804,0,22,1,-42.665318,0,2,2,2021,10,0,50,50,1,0,0,12.316709,12.316709,0,0,0,0,0,0,0,0,1,1,0,3.330617,0,52.4,52.91,41.04,43.32,8.333333333333334,1,1,0,0,11,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15185,18572,33092,33093,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.4177847,6.4553485,54,4,-17.585392,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.1100969,6.366569,56.74,44.56,64.03,8.390000000000001,8.333333333333334,1,1,0,0,0,5,3,1,875,558676.38,366056.75,249422.73,0,0,0,5718.0273 +15185,18572,33093,33092,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.3972378,7.4446979,54,-4,10.660556,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.070999,0,0,1,1,0,8.5488281,0,64.03,8.390000000000001,56.74,44.56,8.333333333333334,1,1,0,0,0,5,3,1,875,558676.38,366056.75,249422.73,0,0,0,5718.0273 +15186,18573,33094,33095,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,2.1735425,2.0962875,23,-11,-51.224937,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7311389,2.0100908,51,47,54,46,7,1,1,0,0,0,5,2,0,1083,110966.13,0,77186.531,0,0,0,979.51294 +15186,18573,33095,33094,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,22,11,98.461082,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,51,47,8,1,1,0,0,0,5,2,0,1083,110966.13,0,77186.531,0,0,0,979.51294 +15187,18574,33096,33097,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.2948809,7.3971243,68,4,-12.83217,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,1.443511,0,1,1,0,4.8923521,7.5353718,53.7,48.13,52,45,8.333333333333334,1,1,0,0,0,5,3,1,756,616082.75,291689.22,104390.45,0,13257.813,0,2724.6985 +15187,18574,33097,33096,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9194417,6.8298564,11,-4,85.604988,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2375951,52,45,53.7,48.13,8,1,1,0,0,0,5,3,1,756,616082.75,291689.22,104390.45,0,13257.813,0,2724.6985 +15188,18575,33098,33099,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,6,2,49.99931,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,43.72,51.38,1.666666666666667,1,1,0,0,0,11,3,1,1136,318708.75,31335.428,142492.81,8644.4766,0,0,1737.5087 +15188,18575,33099,33098,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3413658,8.505044,0,6,-2,120.06148,0,-9,-9,2021,10,0,45,49,1,0,0,10.621502,10.621502,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.72,51.38,24.93,19.95,5,1,1,0,0,9,11,3,1,1136,318708.75,31335.428,142492.81,8644.4766,0,0,1737.5087 +15188,18576,33100,-9,33098,33099,1,1,24,0,0,0,1,1,-9,0,3,8.5749407,8.7596111,0,0,0,-889.76721,0,2,2,2021,12,1,47,48,1,1,1,14.650158,14.650158,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.38,46.77,-9,-9,1.666666666666667,1,1,0,0,7,11,5,1,551,187986.7,25440.137,0,0,0,0,2577.3833 +15188,18577,33101,-9,33098,33099,1,0,21,0,0,0,2,2,-9,0,3,7.2626624,7.2030311,0,0,0,-1023.1937,0,2,2,2021,11,2,40,10,1,2,1,3.780313,3.780313,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,505,-75140.492,0,0,0,0,0,983.82477 +15189,18578,33102,33103,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.6793642,5.2997837,7,-3,-106.78509,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8825228,5.0700154,48.23,50.71,54.96,53.17,0,1,1,0,0,5,8,2,1,1175.5,589608.88,280700.88,163288.8,0,0,0,2589.3442 +15189,18578,33103,33102,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9011202,7.1029582,7,3,138.29858,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7394109,6.8631697,54.96,53.17,48.23,50.71,10,1,1,0,0,5,8,2,1,1175.5,589608.88,280700.88,163288.8,0,0,0,2589.3442 +15190,18579,33104,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.8898292,8.3894987,0,0,0,-1112.7711,0,3,3,2021,10,0,37,37,1,0,0,10.508007,10.508007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,2775,238060.23,179566.55,235297.52,76956.563,3247.5774,0,1939.3018 +15191,18580,33105,33106,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,13,-1,0,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,35.844093,0,0,1,1,0,0,0,59.03,14.12,43.78,53.93,8.333333333333334,1,1,0,0,0,5,1,1,899,79075.008,0,0,0,0,0,1032.7419 +15191,18580,33106,33105,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,13,1,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.78,53.93,59.03,14.12,1.666666666666667,1,1,0,0,0,5,1,1,899,79075.008,0,0,0,0,0,1032.7419 +15192,18581,33107,33108,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,8.3815413,8.5558786,1,2,30.270546,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.6559024,8.4847536,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,9,9,5,1,457.5,1624437,139248.88,811811.38,0,0,0,6769.6011 +15192,18581,33108,33107,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.2035217,9.2036657,0,21,-2,-68.32032,-9,2,2,2021,11,0,50,0,1,0,0,22.824087,22.824087,.05,.05,.05,0,0,0,0,0,0,0,0,4.4320774,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,457.5,1624437,139248.88,811811.38,0,0,0,6769.6011 +15193,18582,33109,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.2710361,8.1730204,0,0,0,-1025.6378,0,-9,-9,2021,25,10,16,0,1,10,0,27.339491,27.339491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,479,1034845.6,635507.44,129132.17,56922.688,0,2053.2566,1332.156 +15193,18583,33110,-9,33109,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1052.9333,1,2,-9,2021,20,8,0,14,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,2438,88591.75,0,0,0,0,0,0 +15193,18584,33111,-9,33109,-9,1,1,27,0,0,0,2,2,-9,0,4,5.2119994,5.196137,0,0,0,-922.02673,0,2,-9,2021,10,0,50,50,1,1,1,.53694421,.53694421,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,2,1,464,22112.861,0,0,0,0,0,-12.216546 +15194,18585,33112,33113,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.989809,7.2432494,58,1,31.767664,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94706672,7.2217674,61.19,36.58,58.23,43.46,0,1,1,0,0,0,11,3,1,327,647589.38,469181.44,44591.156,0,0,0,3276.3867 +15194,18585,33113,33112,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.913476,7.2817049,58,-1,-38.439194,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1020631,7.2784419,58.23,43.46,61.19,36.58,8.333333333333334,1,1,0,0,0,11,3,1,327,647589.38,469181.44,44591.156,0,0,0,3276.3867 +15195,18586,33114,-9,33116,33117,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.86676,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33115,-9,33116,33117,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.6006,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33116,33117,-9,-9,1,0,39,0,3,0,2,2,-9,0,5,6.8055615,6.7316899,0,14,6,99.730141,0,3,2,2021,9,0,12,12,1,0,0,8.1389608,8.1389608,0,0,0,0,0,0,0,0,1,1,0,0,0,53.4,55.31,50,57,8.333333333333334,2,3,0,1,9,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33117,33116,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,8.4463768,8.4928265,0,14,-6,66.194847,0,3,2,2021,10,0,16,16,1,1,0,39.739555,39.739555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,53.4,55.31,7,2,3,0,0,1,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33118,-9,33116,33117,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.071,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15196,18587,33119,33120,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.8792319,6.2602491,12,2,-50.091881,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4589963,6.0085669,55.36,51.57,54.2,57.49,8.333333333333334,1,1,0,0,12,11,2,1,336,411612.19,24422.484,274342.31,0,62235.508,0,2001.6914 +15196,18587,33120,33119,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.928257,5.8900189,12,-2,-183.92705,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.750134,5.9163013,54.2,57.49,55.36,51.57,8.333333333333334,1,1,0,0,12,11,2,1,336,411612.19,24422.484,274342.31,0,62235.508,0,2001.6914 +15197,18588,33121,33122,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.0306249,6.7781758,6.5447421,35,2,-25.923653,0,3,2,2021,11,0,15,15,1,2,0,3.1067569,3.1067569,0,0,0,0,0,0,0,0,1,1,0,0,6.7134733,49,48,50.6,51,7,1,1,0,0,1,7,3,1,409,1189574.9,957205,317898.41,0,0,0,1861.0708 +15197,18588,33122,33121,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1496897,7.855588,35,-2,-91.274071,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9775796,50.6,51,49,48,8.333333333333334,1,1,0,0,5,7,3,1,409,1189574.9,957205,317898.41,0,0,0,1861.0708 +15198,18589,33123,33124,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6268597,7.5037322,0,6,-10,-22.834738,0,3,2,2021,11,0,17,18,1,2,0,16.504789,16.504789,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.3,52.91,7,1,1,0,0,1,2,3,1,996,540348.06,371457.38,116165.64,0,0,0,2851.905 +15198,18589,33124,33123,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,6.7092142,6.7113357,4.0491776,6,10,-73.03875,0,-9,2,2021,8,0,12,15,1,0,0,8.6210403,8.6210403,.05,.05,0,0,0,0,0,0,1,1,0,4.5340347,3.9626851,58.3,52.91,50,47,8.333333333333334,1,1,0,0,8,2,3,1,996,540348.06,371457.38,116165.64,0,0,0,2851.905 +15199,18590,33125,-9,33128,33127,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.0438,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33126,-9,33128,33127,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1061.1467,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,5,-9,0,0,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33127,33128,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.5054245,8.6789188,0,1,4,13.060418,-9,-9,-9,2021,12,0,48,0,1,0,0,12.660806,12.660806,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,43.12,58.55,6.666666666666667,4,5,0,0,11,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33128,33127,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8902264,7.9327435,0,24,-4,-3.9773831,-9,3,3,2021,7,0,30,0,1,0,0,11.08968,11.08968,.05,.05,0,0,0,0,0,0,1,1,0,1.4071032,0,43.12,58.55,58.32,50.22,1.666666666666667,4,5,0,0,11,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18591,33129,-9,33128,33127,1,1,26,0,2,0,1,1,-9,0,4,8.1224022,8.2571802,0,0,0,-961.53687,-9,1,2,2021,10,0,40,0,1,0,1,10.283507,10.283507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,3,6,4,1,182,210429.91,5276.5146,0,0,0,0,1606.0768 +15199,18592,33130,-9,33128,33127,1,1,21,0,2,1,2,0,-9,0,5,0,0,0,0,0,-990.00946,-9,1,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.54,58.85,-9,-9,8.333333333333334,4,5,0,0,0,6,1,1,542,-236090.66,0,0,0,0,0,0 +15200,18593,33131,33132,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.3773375,8.3001842,0,5,-1,69.484604,0,2,2,2021,17,5,52,44,1,5,0,9.8680954,9.8680954,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.03,55.84,12.29,51.23,3.333333333333333,1,1,0,0,7,7,4,0,605.5,305484.66,143434.11,303845.88,128455.8,5550.5039,0,2309.6221 +15200,18593,33132,33131,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.7585697,7.0924335,0,5,1,-7.6339135,0,-9,-9,2021,26,9,13,25,1,9,0,5.396534,5.396534,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.29,51.23,38.03,55.84,1.666666666666667,1,1,0,0,3,7,4,0,605.5,305484.66,143434.11,303845.88,128455.8,5550.5039,0,2309.6221 +15201,18594,33133,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.2109833,8.0307837,0,0,-1052.3525,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.6871316,7.9844303,74.43000000000001,18.13,-9,-9,10,1,1,0,0,2,2,4,1,265,765737.81,389228.44,105312.35,0,2321.1128,0,2800.8975 +15202,18595,33134,-9,33136,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.46906,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15202,18595,33135,-9,33136,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.1325,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15202,18595,33136,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.6092796,7.8840418,0,0,0,-1087.2141,0,2,2,2021,14,2,36,32,1,2,0,8.6601887,8.6601887,0,0,0,0,0,0,0,0,1,1,0,0,0,25,67.38,-9,-9,3.333333333333333,2,3,0,0,3,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15203,18596,33137,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.3129978,8.4583445,0,0,0,-1011.5942,0,-9,-9,2021,6,0,43,33,1,0,0,8.8531828,8.8531828,0,0,0,0,0,0,0,0,0,0,0,1.9427969,0,41.95,59.17,-9,-9,6.666666666666667,4,2,0,0,6,2,4,0,370,-202276.25,0,0,0,0,0,2451.6794 +15203,18597,33138,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2058439,8.2523594,0,0,0,-998.24542,0,-9,-9,2021,12,1,43,43,1,1,0,14.325952,14.325952,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,-9,-9,5,1,1,0,0,4,2,4,0,932,-227087.09,0,0,0,0,0,2096.0703 +15204,18598,33139,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,7.8405747,7.794035,4,-2,13.00969,0,-9,-9,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.2658491,0,35.02,59.43,42.44,57.88,6.666666666666667,1,1,0,0,13,6,3,1,338,-33609.492,91352.172,0,0,7330.9443,0,2009.3088 +15204,18599,33140,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,6.10078,6.3313446,0,4,2,-23.469809,0,-9,-9,2021,12,1,5,15,1,1,0,10.658519,10.658519,0,0,0,0,0,0,0,0,0,0,0,1.4942756,0,42.44,57.88,35.02,59.43,8.333333333333334,1,1,0,0,4,6,3,1,1379,113247.02,53265.207,173121.44,104107.09,0,0,814.5376 +15205,18600,33141,33142,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0050611,8.2548857,0,6,1,-99.249382,0,-9,-9,2021,6,0,42,42,1,0,0,7.9590664,7.9590664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,28.9,61.01,8.333333333333334,1,1,0,0,6,12,5,1,522.5,261361.92,175419.63,245881.09,126655.88,4015.0986,432.97156,3177.2783 +15205,18600,33142,33141,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5942583,8.5664005,0,6,-1,25.030325,0,2,2,2021,17,5,41,41,1,5,0,13.013789,13.013789,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.9,61.01,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,522.5,261361.92,175419.63,245881.09,126655.88,4015.0986,432.97156,3177.2783 +15206,18601,33143,33145,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5327091,8.619792,0,24,-3,-148.87347,0,1,1,2021,15,3,49,42,1,3,0,13.604568,13.604568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.13,51.34,56.74,44.56,5,2,3,0,0,7,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18601,33144,-9,33143,33145,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.2061,-9,1,1,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2727971,0,30.66,53.18,-9,-9,8.333333333333334,2,3,0,0,0,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18601,33145,33143,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,7.9768772,7.7949119,0,24,3,-77.680351,0,2,2,2021,11,0,42,45,1,0,0,8.2591343,8.2591343,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,44.56,44.13,51.34,3.333333333333333,2,3,0,0,11,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18602,33146,-9,33143,33145,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1058.8718,-9,1,1,2021,22,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.2,51.4,-9,-9,3.333333333333333,2,3,1,0,0,10,1,1,3462,-9106.6592,0,0,0,0,0,0 +15207,18603,33147,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3537683,8.3364296,0,0,0,-1039.5878,0,2,2,2021,6,0,34,36,1,0,0,16.620327,16.620327,.05,.05,0,0,0,0,0,0,0,0,0,2.7206836,0,57.06,57.76,-9,-9,10,1,1,0,0,14,4,4,1,1444,443413.78,291247.78,315735.28,83273.367,0,0,2184.0308 +15207,18604,33148,-9,33147,-9,1,1,20,0,0,0,2,2,-9,0,3,7.3844233,7.4238043,0,0,0,-1008.96,0,2,-9,2021,6,0,32,2,1,0,1,4.9060092,4.9060092,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,1788,-163315.98,0,0,0,0,0,603.45715 +15208,18605,33149,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.6710262,6.3046212,0,0,-939.6983,0,2,1,2021,8,0,0,35,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0366755,6.6375732,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,11,1,2,1,119,389995.19,161047.73,69254.57,0,0,0,1072.0654 +15209,18606,33150,33151,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,8.3528347,8.4958057,33,11,-34.937969,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,6.5987749,0,0,1,1,0,8.8581038,8.5821743,35.76,46.65,45.98,56.3,8.333333333333334,1,1,0,0,0,2,5,1,1994.5,2381812.8,633779.25,474325.44,0,0,0,7796.1265 +15209,18606,33151,33150,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.6198096,8.1139116,6.7991548,37,-11,37.907421,-9,3,3,2021,13,2,38,0,1,2,0,8.0098324,8.0098324,0,0,0,0,0,0,0,0,1,1,0,0,6.7847118,45.98,56.3,35.76,46.65,8.333333333333334,1,1,0,0,13,2,5,1,1994.5,2381812.8,633779.25,474325.44,0,0,0,7796.1265 +15210,18607,33152,33153,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,35,-10,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,36.07,25.51,5,1,1,0,0,0,9,1,0,552,65267.109,64361.363,0,0,0,1771.2363,1950.2065 +15210,18607,33153,33152,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,35,10,0,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.07,25.51,39.15,41.42,5,1,1,0,0,0,9,1,0,552,65267.109,64361.363,0,0,0,1771.2363,1950.2065 +15210,18608,33154,-9,33152,33153,1,0,24,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1004.7729,0,2,3,2021,20,0,0,0,3,7,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.63,29.25,-9,-9,5,1,1,0,0,1,9,1,0,301,43189.789,0,0,0,16340.969,0,945.1106 +15210,18609,33155,-9,33152,33153,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-981.44366,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,45.73,-9,-9,5,1,1,0,0,0,9,1,0,1023,-23204.445,0,0,0,0,0,739.52539 +15211,18610,33156,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.5446429,5.2184148,0,0,-924.90985,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6793303,5.3935895,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,494,46920.82,-2551.6248,139760.55,35851.059,0,0,2079.2473 +15212,18611,33157,-9,33159,33158,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1057.3817,-9,3,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33158,33159,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,7.6312551,7.8830371,0,7,17,-94.408104,0,-9,-9,2021,10,0,40,40,1,1,0,5.3206687,5.3206687,.05,.05,0,0,0,0,0,0,1,1,0,6.7137127,0,51,48,50,55,7,4,1,0,0,1,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33159,33158,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,7,-17,-21.430593,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,51,48,8,1,1,0,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33160,-9,33159,33158,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.6991,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18612,33161,-9,33159,33158,1,1,24,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1103.9081,0,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,1,0,557,3855.5417,0,0,0,0,0,-71.936699 +15213,18613,33162,33163,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.3008749,2.1025441,7,5,-22.219152,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9125161,1.8248779,46.22,29.37,58.91,32.18,5,1,1,0,0,0,4,2,1,683,0,0,0,0,0,0,857.50806 +15213,18613,33163,33162,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-5,-17.351099,0,3,3,2021,9,1,0,8,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,32.18,46.22,29.37,8.333333333333334,1,1,0,0,9,4,2,1,683,0,0,0,0,0,0,857.50806 +15214,18614,33164,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-974.72931,0,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,39.62,29.29,-9,-9,5,1,1,1,1,0,9,1,0,1004,0,0,0,0,0,0,793.77887 +15214,18615,33165,-9,-9,33164,1,1,19,0,0,0,2,2,1,0,1,0,0,0,0,0,-1008.2579,-9,-9,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.63,46.13,-9,-9,1.666666666666667,1,1,1,0,0,9,1,0,565,204342.67,0,0,0,0,0,317.82605 +15215,18616,33166,-9,33169,33168,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.619,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33167,-9,33169,33168,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.43762,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33168,33169,-9,-9,1,1,42,0,3,0,3,3,-9,0,3,6.1738634,6.1558237,0,7,10,38.629128,0,2,2,2021,13,1,25,25,1,1,0,2.5504637,2.5504637,0,0,0,0,0,0,0,0,1,1,0,0,0,36.82,54.92,48,57,6.666666666666667,1,1,0,0,8,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33169,33168,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,7,-10,-15.812025,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,36.82,54.92,7,1,1,0,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33170,-9,33169,33168,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.24536,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15216,18617,33171,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,6.73984,6.9522595,0,0,-941.37878,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,.88528377,0,16.82589,0,1,1,0,6.001009,6.7524657,64.40000000000001,42,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,3556,1120787.3,201482.72,619402.63,0,0,0,1239.2593 +15217,18618,33172,33173,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.2300677,6.1441121,50,-3,-14.721623,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.1020417,5.9109139,36.42,44.54,47.3,17.7,3.333333333333333,1,1,0,0,6,4,2,1,1290.5,227454.41,108465.27,104385.69,0,0,0,1953.5449 +15217,18618,33173,33172,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,50,3,-96.506348,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,120.22957,0,0,1,1,0,3.4663815,0,47.3,17.7,36.42,44.54,6.666666666666667,1,1,0,0,0,4,2,1,1290.5,227454.41,108465.27,104385.69,0,0,0,1953.5449 +15217,18619,33174,-9,33172,33173,1,1,47,0,0,0,2,2,-9,1,4,0,0,0,0,0,-950.32782,-9,2,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,4,1,1,367,-23715.836,-59451.125,0,0,0,0,329.202 +15218,18620,33175,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.30371,0,3,3,2021,19,8,0,45,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.06,27.09,-9,-9,1.666666666666667,1,1,0,1,4,7,1,0,1534,40861.039,0,0,0,0,432.8688,0 +15219,18621,33176,33177,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.4203095,7.0612893,49,-1,-36.185848,0,3,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.326005,6.9050946,45.58,55.84,56.33,51.02,8.333333333333334,1,1,0,0,0,10,3,1,135,887952.63,609465.88,315720.41,0,0,0,3174.8721 +15219,18621,33177,33176,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.2205744,7.4297071,49,1,-92.788834,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1471868,7.2828069,56.33,51.02,45.58,55.84,8.333333333333334,1,1,0,0,0,10,3,1,135,887952.63,609465.88,315720.41,0,0,0,3174.8721 +15220,18622,33178,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1060.6587,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,49,-9,-9,7,1,1,0,0,0,13,1,0,1486,38002.934,0,0,0,0,0,2558.8516 +15221,18623,33179,33180,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.6402655,6.9564595,51,1,23.914989,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.744503,0,0,1,1,0,0,6.6080012,67.43000000000001,24.02,55.62,32.65,10,1,1,0,0,4,6,2,0,1230.5,221885.97,-24301.559,262585.13,0,0,0,1967.8792 +15221,18623,33180,33179,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,-1,-13.101137,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,7.7953577,18.067398,66.796799,7,1,1,0,0,0,55.62,32.65,67.43000000000001,24.02,8.333333333333334,1,1,0,0,0,6,2,0,1230.5,221885.97,-24301.559,262585.13,0,0,0,1967.8792 +15222,18624,33181,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.1976633,8.9526081,0,0,0,-985.67773,0,2,1,2021,12,0,8,43,1,0,0,109.61981,109.61981,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,386,799855.75,445191.13,281646.03,61359.73,0,0,3042.0215 +15223,18625,33182,33183,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6108522,8.3735342,0,16,-1,-92.535919,0,2,3,2021,12,1,38,37,1,1,0,14.516703,14.516703,.05,.05,0,0,0,0,1.8873733,0,1,1,0,0,0,45.18,54.77,45.46,52.15,6.666666666666667,1,1,0,0,9,6,5,1,1492,174058.77,211571.33,175347.2,121371,1035.8132,0,4316.9351 +15223,18625,33183,33182,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.9154663,8.9866867,0,16,1,-39.289433,0,1,1,2021,7,0,58,50,1,0,0,14.78863,14.78863,.05,.05,0,0,0,0,0,0,1,1,0,2.6131961,0,45.46,52.15,45.18,54.77,6.666666666666667,1,1,0,0,9,6,5,1,1492,174058.77,211571.33,175347.2,121371,1035.8132,0,4316.9351 +15224,18626,33184,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.9139824,8.7312241,0,0,0,-933.38739,0,3,3,2021,10,0,60,65,1,1,0,14.034684,14.034684,0,0,.05,0,0,0,0,2,1,1,0,1.1863675,0,52,48,-9,-9,7,1,1,0,0,11,9,5,1,423,1541973,224427.7,531408.56,89760.336,0,0,3604.4731 +15225,18627,33185,-9,33186,33188,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2319,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33186,33188,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,12,0,-35.79995,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,1,1,0,0,4,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33187,-9,33186,33188,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.2958,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33188,33186,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,8.2451611,8.6007099,0,13,0,-97.503838,0,2,1,2021,10,0,40,45,1,1,0,13.667255,13.667255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,48,56,7,1,1,0,0,9,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15226,18628,33189,33192,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1595078,8.747817,6.1497216,9,8,-88.026474,0,2,2,2021,8,0,48,48,1,0,0,15.7515,15.7515,0,0,.05,0,0,0,0,0,1,1,0,6.4003711,0,61.12,51.57,49.04,55.86,8.333333333333334,1,1,0,0,10,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33190,-9,33192,33189,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-992.40735,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33191,-9,33192,33189,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.6038,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33192,33189,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-5.9217477,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33193,-9,33192,33189,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5879,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18629,33194,-9,33192,33189,1,1,20,0,2,0,2,2,-9,0,4,7.5436578,7.3293357,0,0,0,-1104.3549,0,2,2,2021,6,0,45,45,1,0,1,3.7526512,3.7526512,0,0,0,0,0,0,0,0,1,1,0,5.5039763,0,54.2,57.49,-9,-9,10,1,1,0,0,10,9,3,1,634,3248.5024,0,0,0,0,0,1056.4143 +15227,18630,33195,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.440228,7.4108853,0,0,0,-931.60223,0,3,-9,2021,5,0,38,30,1,0,0,4.3381052,4.3381052,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,3,0,2005,686199.06,196176.53,228442.41,0,0,0,978.48346 +15228,18631,33196,-9,-9,-9,1,1,63,0,3,0,2,2,-9,0,1,0,6.3169866,6.1584225,0,0,-971.43201,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,3.6341572,6.4730868,44.14,16.67,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,731,73693.25,107564.74,131438.48,0,0,0,110.60519 +15229,18632,33197,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4490871,8.4820433,0,0,0,-1094.4987,0,1,2,2021,13,4,37,37,1,4,0,14.764958,14.764958,.05,.05,0,0,0,0,0,0,0,0,0,.014968646,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,185,486032.75,178612.55,235233.52,45251.441,0,0,2078.9063 +15230,18633,33198,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.3425231,7.4902282,0,0,-996.38202,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8790088,7.4121428,31.1,40.06,-9,-9,1.666666666666667,1,1,0,0,3,9,3,1,1068,65061.734,124765.18,0,0,0,0,2170.0151 +15231,18634,33199,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,4.6849251,4.8568826,0,0,-1039.9928,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3528171,57.92,51.82,-9,-9,5,1,1,0,0,0,5,2,0,1909,309613.22,11063.009,144101.3,0,0,0,667.69073 +15232,18635,33200,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,.011922249,0,0,0,-930.32941,0,2,2,2021,9,0,30,38,1,0,0,.00054535823,.00054535823,0,0,0,0,0,0,0,0,1,1,0,.47836816,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,288,-75975.227,0,0,0,0,790.367,-661.28723 +15233,18636,33201,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,6.5056925,7.929378,7.120491,0,0,-1032.7173,0,3,3,2021,30,10,10,13,1,10,0,9.5072956,9.5072956,0,0,0,0,0,0,0,0,1,1,0,2.1510599,7.0737562,17.4,60.21,-9,-9,1.666666666666667,1,1,0,0,14,12,3,0,236,1140452,723410.94,270412.19,0,0,0,1957.0132 +15234,18637,33202,-9,33205,33203,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.26,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33203,33205,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.8386469,8.0858965,0,6,0,-31.928144,0,1,2,2021,8,0,40,47,1,0,0,10.151775,10.151775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.8,45.82,0,1,1,0,0,7,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33204,-9,33205,33203,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.543,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33205,33203,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3441162,8.5785933,0,6,0,38.163227,0,2,2,2021,12,1,70,60,1,1,0,6.7228808,6.7228808,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,45.82,57.06,57.76,6.666666666666667,1,1,0,0,7,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15235,18638,33206,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.1197133,5.3184247,0,0,-1056.0452,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,.57177156,0,17.635139,0,1,1,0,0,5.1513972,53.73,30.88,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,2509,-164632.09,-23914.08,0,0,0,0,1625.5485 +15236,18639,33207,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,7.5262709,7.5918531,0,0,0,-814.41473,0,3,2,2021,23,10,36,36,1,10,0,6.3287683,6.3287683,0,0,0,0,0,0,0,0,0,0,0,0,0,35,27,-9,-9,5,2,3,0,0,12,6,3,1,2375,-19412.188,31290.094,0,0,0,0,559.33606 +15237,18640,33208,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3335433,7.7674804,0,0,-1017.6119,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6570678,7.4638243,50.67,42.05,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1458,639136.63,374431.19,378904.97,0,0,0,2207.0969 +15237,18641,33209,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.5668044,7.9858441,0,0,-1010.7035,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0322256,7.5031638,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,472,841384.63,314120.88,531161.13,0,-2917.8892,0,1655.8627 +15238,18642,33210,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0858374,7.2587738,0,0,-1047.549,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2896285,7.2951689,47.8,32.53,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,804,688781.25,392463.69,43821.531,3595.9504,10226.967,0,2542.2434 +15239,18643,33211,-9,33212,-9,1,0,35,0,0,0,2,2,-9,0,3,8.2549791,8.3579645,0,0,0,-1077.0327,0,2,2,2021,11,0,37,36,1,0,0,9.5661325,9.5661325,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,615,85572.563,-110016.9,0,0,8369.2246,0,1848.1595 +15239,18644,33212,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.7166729,5.5069742,0,0,-981.41791,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3848681,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,397,53038.969,22010.859,155588.72,-17446.107,0,0,836.92584 +15240,18645,33213,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,0,6.8073125,6.8700867,0,0,-1121.7656,-9,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1314421,0,47.1,59.71,-9,-9,6.666666666666667,2,3,1,0,1,7,2,1,598,226385.53,0,0,0,0,0,18.937393 +15241,18646,33214,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-969.83752,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.5535336,0,0,1,1,0,0,0,44.71,31.4,-9,-9,5,3,4,0,0,0,8,1,0,1828,0,0,0,0,0,0,1178.2789 +15241,18647,33215,-9,-9,33214,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,0,0,-996.40094,-9,-9,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,0,948,0,0,0,0,0,0,1656.1906 +15242,18648,33216,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.3278666,8.8522282,0,0,0,-985.96161,0,1,3,2021,10,0,34,27,1,0,0,16.973631,16.973631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,293,11586.608,30524.047,133139.53,57425.977,-872.55536,1878.6088,2387.9158 +15243,18649,33217,33218,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.9778562,8.3871393,0,9,0,108.50275,0,2,2,2021,12,0,24,50,1,0,0,18.190147,18.190147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.02,44.38,57.16,56.15,6.666666666666667,1,1,0,0,10,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33218,33217,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.3547163,8.5854626,0,9,0,16.874311,0,-9,-9,2021,9,0,45,90,1,0,0,18.393951,18.393951,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,48.02,44.38,6.666666666666667,1,1,0,0,10,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33219,-9,33217,33218,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.795,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33220,-9,33217,33218,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.60193,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15244,18650,33221,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.4721131,6.7988772,0,0,-1027.6975,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.662318,7.2432961,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,526,612567.63,153926.34,184627.94,0,0,1254.639,1046.7979 +15245,18651,33222,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.2664719,8.5625858,0,0,0,-1002.7758,0,2,2,2021,10,0,37,37,1,0,0,15.84008,15.84008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,840,-53617.543,12944.236,0,0,18265.74,0,1223.1357 +15246,18652,33223,33224,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,4,1,2.360333,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53.48,53.71,31.77,31.97,8.333333333333334,1,1,0,0,8,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15246,18652,33224,33223,-9,-9,1,1,36,1,1,0,1,1,-9,0,2,9.4254751,9.2908192,0,4,-1,-102.68298,0,2,2,2021,20,7,38,40,1,7,0,29.30406,29.30406,0,0,0,0,0,0,0,0,0,0,0,3.0295749,0,31.77,31.97,53.48,53.71,8.333333333333334,1,1,0,0,11,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15246,18652,33225,-9,33223,33224,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.49231,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15247,18653,33226,-9,33227,33228,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8912,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15247,18653,33227,33228,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,7.7787099,7.7234187,27,-5,-18.339556,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,8.5762167,0,55.9,30.03,61.28,48.88,8.333333333333334,1,1,0,0,5,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15247,18653,33228,33227,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.5245199,8.3204222,0,27,5,102.92797,0,2,2,2021,8,0,40,40,1,0,0,11.008263,11.008263,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.28,48.88,55.9,30.03,8.333333333333334,1,1,0,0,7,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15248,18654,33229,33231,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.6093874,8.1836767,0,10,1,138.09174,0,2,2,2021,9,0,47,47,1,0,0,12.408236,12.408236,.05,.05,.05,0,0,0,0,2,1,1,0,6.4010119,0,60.13,46.57,39,54.39,6.666666666666667,1,1,0,1,12,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33230,-9,33231,33229,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.5961,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33231,33229,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.6144366,8.0774117,6.3658953,10,-1,-74.936378,0,2,3,2021,26,8,27,35,1,8,0,8.3587599,8.3587599,.05,.05,0,0,0,0,0,0,1,1,0,5.9315047,0,39,54.39,60.13,46.57,6.666666666666667,1,1,0,1,11,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33232,-9,33231,33229,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-961.21002,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15249,18655,33233,33234,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1781693,8.2624054,50,0,71.444435,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1622162,8.3000717,63.41,39.7,56.33,51.02,8.333333333333334,1,1,0,0,0,1,3,1,799,1212597.3,588124.5,319775.56,0,3392.5564,0,3150.5249 +15249,18655,33234,33233,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.0684872,4.6657281,9,0,48.201214,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1796465,5.0567756,56.33,51.02,63.41,39.7,8.333333333333334,1,1,0,0,0,1,3,1,799,1212597.3,588124.5,319775.56,0,3392.5564,0,3150.5249 +15250,18656,33235,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6147022,8.6701126,0,0,0,-1083.4524,0,2,2,2021,12,0,97,98,1,0,0,6.767313,6.767313,0,0,0,0,0,0,0,29,1,1,0,7.0975075,0,52,54.51,-9,-9,5,1,1,0,0,14,11,5,1,2025,1211043.8,1134707.8,91434.398,0,1444.6997,0,3751.3833 +15250,18657,33236,-9,33235,-9,1,1,29,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1003.1317,0,1,-9,2021,25,12,0,30,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.4,49.85,-9,-9,3.333333333333333,1,1,1,1,6,11,1,1,1235,-190284.41,0,0,0,0,0,0 +15250,18658,33237,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-983.95264,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,10,1,1,0,0,0,11,1,1,827,464158.22,107529.27,181930.41,0,0,0,959.74866 +15250,18659,33238,-9,-9,-9,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-857.76385,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,0,11,1,1,364,-224021.75,0,0,0,0,0,1564.1152 +15251,18660,33239,33240,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,0,0,31,3,0,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.2,59.97,21.19,35.47,1.666666666666667,1,1,0,0,0,6,1,0,1192,31100.994,50843.914,0,0,0,0,2185.2842 +15251,18660,33240,33239,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,30,-3,0,-9,-9,-9,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.19,35.47,43.2,59.97,0,2,3,0,0,0,6,1,0,1192,31100.994,50843.914,0,0,0,0,2185.2842 +15252,18661,33241,33242,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,4.9435925,4.8627949,10,3,-37.727314,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,137.26933,0,0,1,1,0,0,4.7744274,36.27,24.23,52.3,39.89,8.333333333333334,1,1,0,0,0,2,2,1,722,191807.09,-15538.684,99298.258,0,0,0,2108.6206 +15252,18661,33242,33241,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,10,-3,-79.964035,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,52.3,39.89,36.27,24.23,10,1,1,0,0,0,2,2,1,722,191807.09,-15538.684,99298.258,0,0,0,2108.6206 +15253,18662,33243,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.6566963,8.3805933,0,0,0,-1049.5939,0,3,2,2021,11,1,45,39,1,1,0,11.882213,11.882213,.05,.05,0,0,0,0,0,0,0,0,0,6.8352165,0,40.52,39.95,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1526,431931.81,317626.63,139517.03,118938.9,1463.0669,0,2236.6116 +15254,18663,33244,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-935.82007,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,9.8524151,0,0,1,1,0,0,0,34.46,27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,722,-45927.371,0,0,0,0,0,813.63745 +15255,18664,33245,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,5.7276235,8.1354904,8.0349703,0,0,-879.66681,0,2,-9,2021,6,0,16,21,1,0,0,2.2920113,2.2920113,0,0,0,0,0,0,0,0,1,1,0,0,7.9603848,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,118,-24597.578,0,-16871.768,0,0,0,1309.1323 +15256,18665,33246,33247,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.7863579,6.9258318,0,16,0,-10.253794,0,2,2,2021,7,0,15,26,1,0,0,5.7847428,5.7847428,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,43.51,61.01,53.18,8.333333333333334,1,1,0,0,6,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15256,18665,33247,33246,-9,-9,1,1,31,0,1,0,2,2,-9,0,5,8.4315968,8.4879398,0,16,0,98.438591,0,2,2,2021,7,0,38,38,1,0,0,16.408348,16.408348,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,49.47,43.51,10,1,1,0,0,8,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15256,18665,33248,-9,33246,33247,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.3831,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15257,18666,33249,33250,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.301424,9.0917072,0,11,-8,11.311945,0,1,1,2021,11,3,42,52,1,3,0,28.755842,28.755842,.05,.05,0,0,0,0,0,0,0,0,0,4.0193844,0,55.19,54.26,41.69,49.57,8.333333333333334,1,1,0,0,12,9,5,1,592.5,450283.38,204012.75,562048.81,327406.91,12878.219,0,4613.2451 +15257,18666,33250,33249,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.4131775,8.6442995,0,11,8,121.72598,0,3,-9,2021,25,12,32,32,1,12,0,18.743547,18.743547,.05,.05,0,0,0,0,0,2,0,0,0,.69055837,0,41.69,49.57,55.19,54.26,8.333333333333334,1,1,0,0,12,9,5,1,592.5,450283.38,204012.75,562048.81,327406.91,12878.219,0,4613.2451 +15258,18667,33251,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1098.3512,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,1,6,2,0,3817,-15614.011,0,0,0,977.6297,0,0 +15259,18668,33252,33253,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,2,-3,0,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.16,68.97,40.56,23.34,1.666666666666667,1,1,1,0,0,6,1,0,1056,0,0,0,0,0,0,1506.3733 +15259,18668,33253,33252,-9,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,2,1,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,23.34,9.16,68.97,6.666666666666667,1,1,0,0,5,6,1,0,1056,0,0,0,0,0,0,1506.3733 +15260,18669,33254,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.2142916,7.4878759,0,0,-997.11414,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88074815,7.4580564,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,800,537312.13,222030.52,172055.38,0,0,0,1662.8926 +15261,18670,33255,-9,33256,33258,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5667,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33256,33258,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.7024693,8.0716162,0,13,4,-24.834656,0,2,3,2021,4,0,30,25,1,0,0,9.611948,9.611948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,9,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33257,-9,33256,33258,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3687,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33258,33256,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.9379711,9.0427618,0,6,-4,114.74578,0,-9,-9,2021,10,0,45,45,1,1,0,21.892048,21.892048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,7,1,1,0,0,1,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15262,18671,33259,33260,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1599474,8.4836998,0,12,-3,-70.769272,0,1,2,2021,14,3,38,44,1,3,0,10.22729,10.22729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,60.12,54.8,8.333333333333334,1,1,0,0,13,4,5,1,702.5,944122.44,824667.31,141975.33,26118.08,0,5230.2158,3688.219 +15262,18671,33260,33259,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7760868,8.7882242,0,12,3,-46.807571,0,2,1,2021,6,0,38,42,1,0,0,16.780134,16.780134,.05,.05,0,0,0,0,0,0,0,0,0,2.5719352,0,60.12,54.8,28.33,62.63,8.333333333333334,1,1,0,0,13,4,5,1,702.5,944122.44,824667.31,141975.33,26118.08,0,5230.2158,3688.219 +15263,18672,33261,33262,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3415971,7.3478122,0,31,1,-35.729542,0,2,2,2021,8,0,33,20,1,0,0,5.0331478,5.0331478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.98,43.8,48,51,6.666666666666667,2,3,0,0,12,2,4,1,1372,115041.19,8100.1563,0,0,0,1220.95,1617.5631 +15263,18672,33262,33261,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.071023,8.1145792,0,31,-1,-78.162979,0,2,2,2021,11,0,35,35,1,2,0,11.296733,11.296733,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,51,51.98,43.8,7,2,3,0,0,1,2,4,1,1372,115041.19,8100.1563,0,0,0,1220.95,1617.5631 +15263,18673,33263,-9,33261,33262,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1117.5402,0,2,3,2021,11,0,0,10,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,5,2,1,1,2128,-194173.56,0,0,0,0,0,-456.9455 +15263,18674,33264,-9,33261,33262,1,1,23,0,0,0,1,1,1,0,5,8.7027988,8.4803963,0,0,0,-940.70892,-9,2,2,2021,12,0,38,0,1,0,1,15.679055,15.679055,.05,.05,0,0,0,0,0,0,0,0,0,1.4564674,0,37.48,61.3,-9,-9,5,2,3,0,0,5,2,5,1,715,109532.33,158959.81,0,0,5300.6694,0,2198.4175 +15264,18675,33265,33266,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7645946,7.5440707,44,0,-67.418777,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9989476,6.8693233,52,53,57.06,57.76,8.333333333333334,1,1,0,0,3,12,4,1,157,2403290.3,1317772.3,404923.03,0,2290.2478,0,4133.6167 +15264,18675,33266,33265,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.263958,7.7797556,8,0,56.989765,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,8.3205481,57.06,57.76,52,53,8.333333333333334,1,1,0,0,6,12,4,1,157,2403290.3,1317772.3,404923.03,0,2290.2478,0,4133.6167 +15265,18676,33267,33268,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8490396,7.768971,0,11,-2,22.113098,0,3,2,2021,8,0,24,22,1,0,0,14.103784,14.103784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,60.53,48.35,8.333333333333334,1,1,0,0,10,11,4,0,786,634165.75,266918.78,190452,0,0,0,1870.5381 +15265,18676,33268,33267,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.958333,7.9515619,6.8653131,18,2,-112.92946,0,3,3,2021,7,1,27,26,1,1,0,10.675204,10.675204,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0680237,60.53,48.35,59.29,49.68,8.333333333333334,1,1,0,0,10,11,4,0,786,634165.75,266918.78,190452,0,0,0,1870.5381 +15266,18677,33269,33270,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,7,-4,-11.717917,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,57.33,53.46,10,1,1,0,0,5,4,2,1,1065,410058.63,211282.25,226752.47,0,0,0,1916.1899 +15266,18677,33270,33269,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.1613536,6.3509755,7,4,3.8586574,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4664743,6.5527277,57.33,53.46,53.61,59.13,10,1,1,0,0,3,4,2,1,1065,410058.63,211282.25,226752.47,0,0,0,1916.1899 +15267,18678,33271,-9,33273,33274,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.76501,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33272,-9,33273,33274,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3207,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33273,33274,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,8.5596371,8.6174116,0,11,-5,38.585072,-9,-9,-9,2021,10,0,50,0,1,0,0,15.774064,15.774064,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,52.6,52.88,5,1,1,0,0,14,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33274,33273,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.099906,8.9272509,6.811307,11,5,-11.014965,0,2,2,2021,7,0,45,47,1,0,0,19.826796,19.826796,.05,.05,0,0,0,0,0,0,1,1,0,6.9410906,0,52.6,52.88,49.28,52.09,5,1,1,0,0,12,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15268,18679,33275,33276,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.6183014,8.1599855,0,6,-1,-68.360535,0,2,2,2021,10,1,32,33,1,1,0,21.520248,21.520248,.05,.05,0,0,0,0,0,0,1,1,0,7.1646342,0,45.32,54.77,53.96,50.73,8.333333333333334,1,1,0,0,7,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15268,18679,33276,33275,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.8784065,8.8280306,0,6,1,-20.12417,0,2,2,2021,8,0,50,45,1,0,0,15.660491,15.660491,.05,.05,0,0,0,0,0,0,1,1,0,3.7121327,0,53.96,50.73,45.32,54.77,6.666666666666667,1,1,0,0,7,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15268,18679,33277,-9,33275,33276,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-859.086,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15269,18680,33278,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.779501,9.0992918,0,0,0,-1114.8126,-9,2,2,2021,11,2,48,0,1,2,0,15.453502,15.453502,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,51.44,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,877,560183.88,304353.66,311493.22,66655.234,7459.5024,4619.3022,3278.9419 +15270,18681,33279,33280,-9,-9,1,1,58,0,1,0,2,2,-9,1,1,0,0,0,8,2,59.954685,0,-9,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,26.25,20.77,44.55,60.42,1.666666666666667,3,4,0,0,0,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18681,33280,33279,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.4112797,8.2048941,7.6307979,8,-2,-8.9479465,0,2,2,2021,11,1,15,15,1,1,0,16.44385,16.44385,0,0,0,0,0,0,0,27,1,1,0,0,7.2722378,44.55,60.42,26.25,20.77,6.666666666666667,3,4,0,0,10,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18681,33281,-9,33280,33279,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1187.3804,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18682,33282,-9,33280,33279,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1124.2443,-9,2,2,2021,22,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.37,66.34999999999999,-9,-9,6.666666666666667,3,4,0,0,1,6,2,1,146,-78075.086,0,0,0,0,0,0 +15271,18683,33283,33284,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.1825047,7.141592,11,0,67.218918,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8336322,6.9607711,58.72,51.29,53.68,45.47,8.333333333333334,1,1,0,0,4,9,4,1,1125,1771908.5,981380,560040.56,0,-237.34454,0,4654.6172 +15271,18683,33284,33283,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6389313,8.4954014,11,0,58.618103,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3280773,8.5812674,53.68,45.47,58.72,51.29,8.333333333333334,1,1,0,0,3,9,4,1,1125,1771908.5,981380,560040.56,0,-237.34454,0,4654.6172 +15272,18684,33285,33286,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.679184,5.8541975,11,2,-43.565109,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6981888,54.61,18.73,53.23,47.51,8.333333333333334,1,1,0,0,8,8,4,1,408,888715.69,372837.38,251754.8,-2817.1189,0,0,2859.0442 +15272,18684,33286,33285,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.1965752,8.0770769,0,11,-2,-117.26862,0,3,3,2021,10,0,40,43,1,0,0,12.009316,12.009316,0,0,0,0,0,0,0,2,1,1,0,0,0,53.23,47.51,54.61,18.73,8.333333333333334,1,1,0,0,12,8,4,1,408,888715.69,372837.38,251754.8,-2817.1189,0,0,2859.0442 +15272,18685,33287,-9,33285,33286,1,0,36,0,0,0,1,1,-9,0,5,7.7092671,7.7703476,0,0,0,-1097.0527,0,2,2,2021,17,5,35,35,1,5,0,7.9902234,7.9902234,0,0,0,0,0,0,0,7,1,1,0,0,0,41.2,62.39,-9,-9,6.666666666666667,1,1,0,0,12,8,3,1,1560,-116254.79,0,0,0,0,0,482.50912 +15273,18686,33288,33291,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.2621059,7.5798602,5.4508867,9,3,-86.647247,0,1,2,2021,12,2,21,21,1,2,0,8.342454,8.342454,.05,.05,0,0,0,0,0,0,1,1,0,5.4128718,0,33.66,61.57,41.71,52.41,6.666666666666667,1,1,0,0,10,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33289,-9,33288,33291,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.72644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33290,-9,33288,33291,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.6296,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33291,33288,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.6209469,8.3997498,0,9,-3,13.97401,0,2,2,2021,13,2,40,38,1,2,0,16.544317,16.544317,.05,.05,0,0,0,0,0,0,1,1,0,7.2155166,0,41.71,52.41,33.66,61.57,3.333333333333333,1,1,0,0,9,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15274,18687,33292,-9,33293,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.41241,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,8,1,0,366,-505.32227,3742.1191,0,0,0,0,2249.4429 +15274,18687,33293,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,0,0,0,0,0,-870.78308,-9,2,1,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,3,4,1,0,5,8,1,0,366,-505.32227,3742.1191,0,0,0,0,2249.4429 +15275,18688,33294,33295,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9973679,8.9702148,7.7433128,8,-2,84.086494,-9,-9,-9,2021,9,0,35,0,1,1,0,25.646074,25.646074,0,0,.05,0,0,0,0,0,0,0,0,7.4078708,7.6803508,53,54,62.39,56.71,8,1,1,0,0,1,10,5,1,871.5,1132607.5,944014.63,184113.84,38409.98,12819.265,1250.3832,6516.7192 +15275,18688,33295,33294,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.5156832,8.5719166,0,26,2,-117.1627,0,2,1,2021,6,0,20,16,1,0,0,31.125587,31.125587,0,0,0,0,0,0,0,0,0,0,0,7.9906235,0,62.39,56.71,53,54,10,1,1,0,0,11,10,5,1,871.5,1132607.5,944014.63,184113.84,38409.98,12819.265,1250.3832,6516.7192 +15276,18689,33296,33297,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9279852,8.0056849,0,30,-3,61.000599,0,3,2,2021,20,6,42,40,1,6,0,8.920701,8.920701,.05,.05,0,0,0,0,0,0,0,0,0,3.6910408,0,46.87,47.3,35.44,44.94,10,1,1,0,0,9,2,5,1,597,155298.38,52464.75,0,0,0,5732.002,3162.0759 +15276,18689,33297,33296,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.4745903,8.299819,0,30,3,-58.299988,0,3,-9,2021,22,6,39,45,1,6,0,9.8895426,9.8895426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.44,44.94,46.87,47.3,5,1,1,0,0,8,2,5,1,597,155298.38,52464.75,0,0,0,5732.002,3162.0759 +15276,18690,33298,-9,33296,33297,1,0,23,0,0,0,2,2,-9,0,2,7.6075797,7.5898581,0,0,0,-942.6933,0,2,2,2021,14,2,36,40,1,2,1,4.3495717,4.3495717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.64,41.4,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,569,55382.59,-10049.338,0,0,2694.1548,0,812.63678 +15277,18691,33299,33301,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,7.8078628,7.7640281,0,6,-7,46.530148,0,-9,-9,2021,9,0,41,39,1,0,0,7.2180901,7.2180901,0,0,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,18.76,23.91,8.333333333333334,1,1,0,0,7,12,3,0,785,0,0,0,0,0,0,1709.4824 +15277,18691,33300,-9,33299,33301,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.11212,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,785,0,0,0,0,0,0,1709.4824 +15277,18691,33301,33299,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,0,0,0,6,7,240.06209,0,2,1,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.76,23.91,54.1,59.11,8.333333333333334,1,1,0,0,5,12,3,0,785,0,0,0,0,0,0,1709.4824 +15278,18692,33302,33303,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,8.3494043,8.7310381,45,-1,4.4466028,0,2,-9,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,12.763137,0,0,1,1,0,2.6063223,8.5996475,43.99,21.65,58.2,36.57,3.333333333333333,1,1,0,0,0,12,4,1,1051,1237944.3,1030528.4,133917.47,0,0,0,3196.7031 +15278,18692,33303,33302,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,45,1,-67.863113,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.2,36.57,43.99,21.65,6.666666666666667,1,1,0,0,6,12,4,1,1051,1237944.3,1030528.4,133917.47,0,0,0,3196.7031 +15279,18693,33304,-9,33308,33307,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-952.97723,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33305,-9,33308,33307,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4485,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33306,-9,33308,33307,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-987.31464,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33307,33308,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.2352676,7.9219608,0,7,9,-103.78859,0,2,2,2021,7,0,40,45,1,0,0,11.359037,11.359037,.05,.05,0,0,0,0,0,0,1,1,0,.88576156,0,57.16,56.15,39.14,50.91,8.333333333333334,1,1,0,0,8,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33308,33307,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.1468763,7.9872141,0,7,0,-40.999447,0,2,2,2021,24,10,38,38,1,10,0,9.2015553,9.2015553,.05,.05,0,0,0,0,0,0,1,1,0,2.4890862,0,39.14,50.91,57.16,56.15,3.333333333333333,1,1,0,0,8,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15280,18694,33309,-9,33310,33311,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1009.5617,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18694,33310,33311,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,7.6139359,7.6424298,0,23,-2,48.014622,0,3,3,2021,12,0,35,35,1,0,0,6.0659552,6.0659552,0,0,0,0,0,0,0,0,1,1,0,0,0,41.75,50.17,52,54.51,1.666666666666667,1,1,0,0,11,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18694,33311,33310,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.3102608,7.2142901,0,18,2,3.7022543,0,3,3,2021,12,0,50,40,1,0,0,2.6463661,2.6463661,0,0,.05,0,0,0,0,0,1,1,0,0,0,52,54.51,41.75,50.17,5,1,1,0,0,11,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18695,33312,-9,33310,33311,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-949.94812,1,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0311661,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,4,1,1,392,74742.156,0,0,0,0,0,102.32065 +15281,18696,33313,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.0883875,8.2110395,0,0,0,-1037.735,0,2,2,2021,12,0,45,60,1,0,0,8.9258537,8.9258537,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,592,123959.41,0,0,0,0,0,1000.0696 +15282,18697,33314,33315,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.7740636,7.0021696,36,1,-135.07399,0,3,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0616379,6.574544,33.96,51.97,51.24,58.84,5,1,1,0,0,0,4,3,1,696.5,1007363.2,634951.63,359879.88,0,0,0,3074.2285 +15282,18697,33315,33314,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6326408,7.6450868,36,-1,-33.100208,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8520412,7.7176375,51.24,58.84,33.96,51.97,8.333333333333334,1,1,0,0,0,4,3,1,696.5,1007363.2,634951.63,359879.88,0,0,0,3074.2285 +15282,18698,33316,-9,33314,33315,1,0,45,0,0,0,2,2,-9,0,3,7.736217,7.6965942,0,0,0,-1060.1707,0,2,2,2021,3,0,40,40,1,0,0,5.6873283,5.6873283,.05,.05,0,0,0,0,0,0,1,1,0,6.9117494,0,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,522,-102134.98,-6195.6616,0,0,0,0,910.1134 +15283,18699,33317,33318,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.3995647,6.6528325,61,2,-62.415012,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,6.8222899,25.94,54.33,25.55,25,3.333333333333333,1,1,0,0,0,11,2,1,1365,362753.97,178727.72,100451.65,0,0,0,1986.012 +15283,18699,33318,33317,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,6.1766248,6.6082568,61,-2,-72.28067,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2571168,25.55,25,25.94,54.33,1.666666666666667,1,1,0,0,0,11,2,1,1365,362753.97,178727.72,100451.65,0,0,0,1986.012 +15284,18700,33319,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,5.5333362,5.5629883,0,0,-1052.0485,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0592444,5.9348068,60.87,39.4,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,996,110558.77,128662.97,374979.47,0,0,0,746.32782 +15285,18701,33320,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6647873,7.4214082,0,0,0,-1057.5215,0,3,3,2021,14,3,30,29,1,3,0,7.9192734,7.9192734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,14,5,3,1,428,-118558.21,0,0,0,3864.8264,1782.9866,1083.7579 +15285,18702,33321,-9,33320,-9,1,0,21,0,0,0,2,2,-9,0,4,7.8953772,7.9995904,0,0,0,-978.1864,0,2,-9,2021,14,2,39,46,1,2,1,7.7531357,7.7531357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,10,1,1,0,0,3,5,4,1,2391,-10958.892,-137678.09,0,0,0,0,850.35858 +15285,18703,33322,-9,33320,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-836.69391,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,1,0,0,5,1,1,300,-68766.297,0,0,0,0,0,0 +15286,18704,33323,33324,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.6452374,6.7968125,57,-3,94.402527,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,39.166111,0,0,1,1,0,1.1417741,6.3276048,52,45,55,45,8,1,1,0,0,0,13,3,1,5088,447575.75,131927.13,139422.63,0,0,0,2406.491 +15286,18704,33324,33323,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9402761,7.9226995,57,3,-.27880189,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,8.1546659,55,45,52,45,8,1,1,0,0,0,13,3,1,5088,447575.75,131927.13,139422.63,0,0,0,2406.491 +15287,18705,33325,33326,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.3235922,7.2227793,0,7,0,64.586082,0,2,2,2021,10,1,30,30,1,1,0,5.8719578,5.8719578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,57.16,56.15,5,1,1,0,0,9,9,5,0,181.5,153076.47,89130.156,0,0,0,0,1098.7599 +15287,18705,33326,33325,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6862669,8.9279842,0,7,0,128.0032,0,2,2,2021,6,0,40,45,1,0,0,14.871543,14.871543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.67,55.57,8.333333333333334,1,1,0,0,9,9,5,0,181.5,153076.47,89130.156,0,0,0,0,1098.7599 +15288,18706,33327,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.7506423,8.2739592,8.4008884,0,0,-910.80682,0,2,2,2021,6,0,16,18,1,0,0,6.192347,6.192347,0,0,0,0,0,0,0,27,0,0,0,0,8.1942186,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,872,-214685.77,0,0,0,0,1791.532,2318.4912 +15289,18707,33328,-9,33329,33330,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.42206,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15289,18707,33329,33330,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,8.1244307,8.1522188,0,6,-2,-195.12489,0,3,2,2021,12,0,39,37,1,0,0,10.977242,10.977242,0,0,0,0,0,0,0,0,1,1,0,0,0,45.75,18.48,51.24,58.84,5,1,1,0,0,7,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15289,18707,33330,33329,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.811697,8.5356264,0,6,2,-22.107735,0,2,2,2021,11,0,50,50,1,0,0,14.028101,14.028101,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,45.75,18.48,8.333333333333334,1,1,0,0,7,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15290,18708,33331,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1029.8055,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0701103,0,50.65,15.15,-9,-9,6.666666666666667,2,3,0,0,0,6,1,0,113,-35675.656,0,0,0,0,0,291.29785 +15291,18709,33332,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.1587429,6.2923107,0,0,-952.86121,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7802517,6.2340517,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1230,162097.19,33018.734,0,0,0,0,679.72424 +15292,18710,33333,33334,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,6.7901525,6.4439359,0,6,5,25.105137,-9,3,2,2021,22,9,32,0,1,9,0,2.5093327,2.5093327,0,0,0,0,0,0,0,2,1,0,1,0,0,41.21,51.34,21.59,40.32,3.333333333333333,1,1,0,1,10,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15292,18710,33334,33333,-9,-9,1,0,27,0,2,0,2,2,-9,0,1,0,0,0,6,-5,6.9570827,0,-9,-9,2021,30,12,0,16,3,12,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,21.59,40.32,41.21,51.34,5,1,1,0,1,0,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15292,18710,33335,-9,33334,33333,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.7334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15293,18711,33336,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,4,8.1414623,7.6093922,0,2,12,43.462524,0,3,2,2021,13,6,30,37,1,6,0,11.104517,11.104517,.05,.05,0,0,0,0,0,0,1,1,0,6.7956743,0,40.95,43.3,49,57,3.333333333333333,1,1,0,0,14,12,3,1,97,-7150.252,9317.3096,0,0,0,1784.6915,1018.9759 +15294,18712,33337,-9,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,8.1305342,8.3208094,0,0,0,-1002.6085,-9,3,-9,2021,21,7,39,0,1,7,0,12.282941,12.282941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.72,30.66,-9,-9,3.333333333333333,1,1,0,1,6,9,4,0,514,237585.59,75219.391,92385.828,84410.648,0,0,2168.3604 +15295,18713,33338,33339,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.435782,7.3015084,0,10,0,45.844406,0,-9,-9,2021,13,1,23,23,1,1,0,7.9352818,7.9352818,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.81,46.8,46.5,58.26,6.666666666666667,1,1,0,0,11,4,4,1,1080,823240,528041.63,237743.95,39489.445,0,0,2283.6484 +15295,18713,33339,33338,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.3222532,8.3018274,0,10,0,6.5165682,0,-9,-9,2021,11,0,38,39,1,0,0,10.82768,10.82768,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,47.81,46.8,6.666666666666667,1,1,0,0,11,4,4,1,1080,823240,528041.63,237743.95,39489.445,0,0,2283.6484 +15295,18714,33340,-9,33338,33339,1,0,26,0,0,0,2,2,-9,0,5,6.7025504,6.8329234,0,0,0,-962.31714,0,2,3,2021,8,0,12,12,1,0,1,9.5975676,9.5975676,0,0,0,0,0,0,0,0,0,0,0,0,0,46.59,59.97,-9,-9,6.666666666666667,1,1,0,0,5,4,2,1,423,-3847.1753,0,0,0,6295.8955,0,79.155785 +15296,18715,33341,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.5762815,7.768507,0,0,0,-1108.7042,0,3,3,2021,8,0,27,27,1,0,0,9.3044567,9.3044567,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.77,20.12,-9,-9,10,1,1,0,0,12,13,3,0,2077,-31355.826,-66573.5,0,0,0,0,552.67596 +15297,18716,33342,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,4.9036322,5.2727089,0,0,-921.80615,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,26.538332,18.951988,234.4736,0,1,1,0,5.0532913,5.1699166,35.92,25.84,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,655,256806.22,-42827.801,156154.84,0,0,0,2229.345 +15297,18717,33343,-9,-9,33342,1,1,54,0,0,0,2,2,-9,0,3,7.9800253,7.7814069,0,0,0,-995.1048,0,-9,3,2021,8,1,44,47,1,1,0,6.444797,6.444797,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,63.26,42.53,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,166,97455.141,60091.301,0,0,-374.08063,0,2200.811 +15298,18718,33344,-9,33345,33347,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7847,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33345,33347,-9,-9,1,0,40,1,4,0,2,2,-9,0,3,0,0,0,7,-3,33.16291,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,35.32,64.83,3.333333333333333,1,1,0,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33346,-9,33345,33347,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-863.13989,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33347,33345,-9,-9,1,1,43,1,4,0,1,1,-9,0,4,8.4766197,8.3108931,0,23,3,16.573874,0,2,2,2021,19,6,44,37,1,6,0,10.554367,10.554367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.32,64.83,51.02,49.39,1.666666666666667,1,1,0,0,3,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33348,-9,33345,33347,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1214.8158,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33349,-9,33345,33347,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.8572,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15299,18719,33350,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7104397,8.7709198,0,0,0,-1000.1761,0,2,2,2021,13,2,50,55,1,2,0,11.751419,11.751419,.05,.05,0,0,0,0,0,0,0,0,0,6.6848359,0,48.26,53.44,-9,-9,6.666666666666667,1,1,0,0,13,7,5,1,513,628946.75,-29535.891,284017.13,0,0,0,2802.6086 +15300,18720,33351,33352,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.1139526,9.3240166,0,9,-1,-22.579248,0,-9,-9,2021,10,1,43,43,1,1,0,18.283228,18.283228,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,38.21,55.44,52.99,8.333333333333334,1,1,0,0,8,7,5,1,612.5,98399.211,15016.008,340052.5,227068.56,0,0,6067.5771 +15300,18720,33352,33351,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7877398,8.8476791,0,9,1,-13.823172,0,2,3,2021,8,0,46,48,1,0,0,14.613469,14.613469,0,0,0,0,0,0,0,0,0,0,0,7.7002974,0,55.44,52.99,55.79,38.21,8.333333333333334,2,3,0,0,7,7,5,1,612.5,98399.211,15016.008,340052.5,227068.56,0,0,6067.5771 +15301,18721,33353,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1044.9078,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.83,31.85,-9,-9,5,1,1,0,1,0,2,2,0,476,189652.88,0,0,0,-1659.8175,0,1309.6984 +15302,18722,33354,-9,33356,33355,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.261,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18722,33355,33356,-9,-9,1,1,59,0,1,0,2,2,-9,0,1,0,0,0,26,8,-86.788841,0,2,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.54,25.38,33.89,42.68,6.666666666666667,1,1,0,0,0,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18722,33356,33355,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.6999087,7.5854225,0,16,-8,42.192387,0,2,2,2021,22,10,34,27,1,10,0,6.4952745,6.4952745,0,0,0,0,0,0,0,0,1,1,0,0,0,33.89,42.68,45.54,25.38,6.666666666666667,1,1,0,0,12,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18723,33357,-9,33356,33355,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1065.0444,-9,2,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.28,63.48,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,429,-11876.926,0,0,0,0,0,0 +15303,18724,33358,33359,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7327247,7.5913978,26,-3,-16.130663,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.783226,56.76,44.55,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,407,1161836.3,224399.11,452910,0,0,0,3384.019 +15303,18724,33359,33358,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.9453683,6.9123955,26,3,-34.971096,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3626952,7.0160193,57.16,56.15,56.76,44.55,10,1,1,0,0,0,10,3,1,407,1161836.3,224399.11,452910,0,0,0,3384.019 +15304,18725,33360,33361,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,11,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.42470989,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,0,7,1,1,190.5,422147.81,0,233200.69,0,0,0,1057.4568 +15304,18725,33361,33360,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,11,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.446068,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,10,7,1,1,190.5,422147.81,0,233200.69,0,0,0,1057.4568 +15305,18726,33362,-9,33364,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.02722,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15305,18726,33363,-9,33364,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.75977,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15305,18726,33364,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.1049662,7.9917698,0,0,0,-1061.9548,-9,3,2,2021,13,1,20,0,1,1,0,12.326133,12.326133,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,5,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15306,18727,33365,33366,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.0627809,6.8113866,0,20,-8,4.5743833,0,-9,-9,2021,7,0,15,5,1,0,0,10.039132,10.039132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,10,2,3,0,0,11,2,3,1,3612,960053.56,265572.5,544455.63,41332.516,2534.0986,1922.6665,810.51563 +15306,18727,33366,33365,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.537672,7.49507,0,20,8,43.722939,0,-9,-9,2021,9,1,37,36,1,1,0,6.259275,6.259275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,6.666666666666667,2,3,0,0,13,2,3,1,3612,960053.56,265572.5,544455.63,41332.516,2534.0986,1922.6665,810.51563 +15306,18728,33367,-9,33365,33366,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-965.60419,-9,3,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,66.46000000000001,-9,-9,10,2,3,0,0,4,2,1,1,827,33883.41,0,0,0,0,0,0 +15306,18729,33368,-9,33365,33366,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.0566,-9,3,3,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,2,3,0,0,3,2,1,1,926,0,0,0,0,0,0,0 +15307,18730,33369,33370,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.4797959,5.8308182,61,-5,136.2235,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,5.50842,58.9,45.74,62.32,36.18,8.333333333333334,1,1,0,0,0,10,3,0,1133.5,200909.34,0,123395.33,0,0,0,2199.1775 +15307,18730,33370,33369,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.565793,7.6877699,61,5,42.340038,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.31868681,7.6532769,62.32,36.18,58.9,45.74,10,1,1,0,0,0,10,3,0,1133.5,200909.34,0,123395.33,0,0,0,2199.1775 +15308,18731,33371,-9,-9,-9,1,1,38,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1071.1792,0,1,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6488376,0,48,52,-9,-9,7,2,3,0,0,2,6,2,0,1416,35046.559,0,0,0,0,0,-106.92251 +15309,18732,33372,-9,33374,33373,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4657,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33373,33374,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.4853511,7.5184445,0,5,-4,117.69398,0,2,2,2021,17,4,30,30,1,4,0,10.945917,10.945917,.05,.05,0,0,0,0,0,0,1,1,0,2.7518814,0,42.98,55.94,42.6,50.45,5,1,1,0,0,13,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33374,33373,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.7305956,7.6003613,0,5,4,68.167252,0,-9,-9,2021,10,0,27,27,1,0,0,8.542717,8.542717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.6,50.45,42.98,55.94,6.666666666666667,1,1,0,0,9,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33375,-9,33374,33373,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.26215,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15310,18733,33376,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.4270859,6.5034409,0,0,-886.05493,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,2.7430966,9.9403305,44.203823,0,1,1,0,1.2718067,6.2108026,46.4,19.56,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,106,239140.95,128841.88,0,0,0,0,1746.9547 +15311,18734,33377,-9,33378,33380,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.721,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33378,33380,-9,-9,1,0,27,2,4,0,2,2,-9,0,4,0,0,0,13,-11,115.3436,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.44,62.16,51,56,1.666666666666667,2,3,0,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33379,-9,33378,33380,1,1,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.7256,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33380,33378,-9,-9,1,1,38,2,4,0,2,2,-9,0,4,7.8194408,7.8016992,0,8,11,116.76687,0,-9,-9,2021,10,0,24,24,1,1,0,9.5821247,9.5821247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,26.44,62.16,7,2,3,0,0,1,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33381,-9,33378,33380,1,1,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-960.1239,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33382,-9,33378,33380,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.8136,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15312,18735,33383,33384,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,7.2809358,7.3410621,0,44,0,24.684952,0,2,2,2021,19,7,21,21,1,7,0,7.5876536,7.5876536,0,0,0,1,0,0,0,2,0,0,0,0,0,46.96,40.63,53.14,51.28,8.333333333333334,1,1,0,0,12,10,3,1,314,1064059.5,32240.109,947807.25,0,0,0,1459.2004 +15312,18735,33384,33383,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.3144546,7.7796168,0,44,0,32.553444,0,2,2,2021,8,0,32,35,1,0,0,4.4636431,4.4636431,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,46.96,40.63,8.333333333333334,1,1,0,0,12,10,3,1,314,1064059.5,32240.109,947807.25,0,0,0,1459.2004 +15313,18736,33385,-9,33387,33386,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6537,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33386,33387,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.1918077,8.529685,0,7,3,-22.736807,0,-9,-9,2021,6,0,48,48,1,0,0,11.543543,11.543543,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.91,59.89,36.34,53.7,3.333333333333333,1,1,0,0,12,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33387,33386,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.3841143,8.6716232,0,7,-3,-8.8976526,0,2,2,2021,20,8,38,38,1,8,0,14.171176,14.171176,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.34,53.7,45.91,59.89,6.666666666666667,1,1,0,0,12,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33388,-9,33387,33386,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.40204,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15314,18737,33389,33390,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,7.24369,7.2877865,0,7,7,136.64566,0,3,1,2021,14,4,28,28,1,4,0,6.2474403,6.2474403,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,37.55,38.71,6.666666666666667,2,3,0,0,9,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15314,18737,33390,33389,-9,-9,1,0,29,1,1,0,1,1,-9,0,1,0,0,0,7,-7,-125.01405,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.55,38.71,42.61,54.85,10,2,3,0,1,4,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15314,18737,33391,-9,33390,33389,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.38361,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15315,18738,33392,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.2046657,6.4761539,0,0,-996.44165,-9,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,2.4869077,2.1857831,23.223238,0,1,1,0,0,6.3384576,30.11,56.52,-9,-9,1.666666666666667,1,1,0,0,4,9,2,1,931,495241.09,177299.73,183553.88,0,4472.04,0,1239.3141 +15316,18739,33393,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.0729208,5.0459824,0,0,-1093.6655,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9129653,54.18,45.3,-9,-9,10,1,1,0,0,0,6,2,0,282,-17274.301,91537.023,0,0,0,0,-163.66608 +15317,18740,33394,33395,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,6,-3,50.742168,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.9,38.98,54.2,57.49,10,1,1,0,0,2,11,4,1,938,35377.41,99713.07,93263.594,0,6822.9941,0,3086.1836 +15317,18740,33395,33394,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.5583105,8.9032354,0,6,3,52.158936,0,2,3,2021,10,1,50,50,1,1,0,12.015224,12.015224,.05,.05,0,0,0,0,0,0,0,0,0,7.2760396,0,54.2,57.49,52.9,38.98,8.333333333333334,1,1,0,0,7,11,4,1,938,35377.41,99713.07,93263.594,0,6822.9941,0,3086.1836 +15318,18741,33396,33397,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,7.5905666,7.6383657,0,23,-8,111.7613,0,3,3,2021,17,5,30,26,1,5,0,6.0491581,6.0491581,0,0,0,0,0,0,0,0,0,0,0,0,0,54.06,17.65,60.3,46.58,5,1,1,0,0,4,4,4,0,1592.5,949260.81,361628.69,414118.44,0,0,0,1934.1296 +15318,18741,33397,33396,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.8099418,8.0311775,0,23,8,63.744759,0,3,3,2021,4,0,58,60,1,0,0,4.9165926,4.9165926,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.06,17.65,6.666666666666667,1,1,0,0,5,4,4,0,1592.5,949260.81,361628.69,414118.44,0,0,0,1934.1296 +15319,18742,33398,-9,33399,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2303,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15319,18742,33399,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.9420319,9.2192631,7.1265111,0,0,-993.78052,0,1,1,2021,5,1,45,43,1,1,0,26.314081,26.314081,.05,.05,0,0,0,0,0,0,1,1,0,6.9328957,0,42.58,58.53,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15319,18742,33400,-9,33399,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-895.15131,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15320,18743,33401,-9,33403,33404,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1051.9939,-9,2,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.78,56.37,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33402,-9,33403,33404,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.717,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33403,33404,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3517075,8.3358908,6.2149186,8,1,92.489426,0,2,1,2021,11,2,20,4,1,2,0,27.834635,27.834635,0,0,0,0,0,0,0,2,1,1,0,6.3802452,0,42.8,29.29,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33404,33403,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,9.2807264,9.154007,0,8,-1,-69.469841,0,-9,-9,2021,9,0,50,50,1,0,0,22.192055,22.192055,0,0,0,0,0,0,0,2,1,1,0,6.8359685,0,57.06,57.76,42.8,29.29,8.333333333333334,1,1,0,0,10,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15321,18744,33405,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.7331347,8.4273052,7.2218223,0,0,-1076.408,0,3,3,2021,21,9,27,25,1,9,0,10.936435,10.936435,.05,.05,0,1,0,0,0,0,1,1,0,6.4477291,7.1229978,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1901,613082.38,317537.69,125790.83,0,0,0,2063.6404 +15322,18745,33406,33407,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.1039972,7.8200755,0,8,-5,-68.004921,0,2,3,2021,7,0,24,12,1,0,0,12.27324,12.27324,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,56.1,49.93,8.333333333333334,1,1,0,0,9,9,4,0,303.5,463685.69,153618.97,464928.25,43944.387,6374.853,4070.9392,3472.7646 +15322,18745,33407,33406,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.566123,7.473702,0,8,5,46.691589,0,-9,-9,2021,11,0,40,40,1,0,0,6.0546975,6.0546975,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.1,49.93,58.32,50.22,6.666666666666667,1,1,0,0,7,9,4,0,303.5,463685.69,153618.97,464928.25,43944.387,6374.853,4070.9392,3472.7646 +15323,18746,33408,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.2488489,7.9994831,0,0,0,-867.29144,0,3,2,2021,11,2,50,18,1,2,0,8.900238,8.900238,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.88,52.43,-9,-9,6.666666666666667,1,1,0,1,5,2,3,0,875,54109.23,-3707.8926,0,0,0,0,2202.6582 +15323,18746,33409,-9,33408,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.697,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,875,54109.23,-3707.8926,0,0,0,0,2202.6582 +15323,18747,33410,-9,33408,-9,1,1,19,0,2,0,2,2,1,0,4,6.0818954,5.9505024,0,0,0,-1022.6727,-9,2,-9,2021,10,0,37,0,1,0,1,1.4084841,1.4084841,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,1838,-16729.984,0,0,0,0,0,626.55493 +15324,18748,33411,-9,33412,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.2626,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,2,1,919.5,-129192.11,0,0,0,2328.8418,0,854.82416 +15324,18748,33412,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,0,0,0,0,0,-988.4502,0,2,1,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,1,3,5,2,1,919.5,-129192.11,0,0,0,2328.8418,0,854.82416 +15325,18749,33413,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.5938759,8.470212,0,0,-1056.6908,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,16.642328,0,0,1,1,0,0,8.7141514,61.43,38.14,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,246,731950.13,232987.48,315204.41,0,0,0,2943.1506 +15325,18750,33414,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.4106092,7.0970716,0,0,-867.92981,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.9071031,0,20.051519,0,1,1,0,6.9855738,7.1408062,45.6,57.67,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,891,154389.13,-96651.836,47871.559,0,0,0,2126.6379 +15326,18751,33415,33416,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3916721,8.6470041,12,7,8.3440351,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3109379,48.14,53.42,42.3,57.54,8.333333333333334,1,1,0,0,0,1,5,1,743,1653101.5,554120.75,507195.44,0,0,0,5658.1177 +15326,18751,33416,33415,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.1919727,8.5931034,48,-7,62.321827,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6368258,8.4292879,42.3,57.54,48.14,53.42,6.666666666666667,1,1,0,0,0,1,5,1,743,1653101.5,554120.75,507195.44,0,0,0,5658.1177 +15327,18752,33417,33418,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.3503046,8.6151085,0,9,0,-106.1329,0,3,2,2021,8,0,35,35,1,0,0,17.778189,17.778189,0,0,0,0,0,0,0,0,0,0,0,4.6405702,0,51.24,58.84,48.18,61.8,5,1,1,0,0,12,8,5,1,846,2423871.3,1526832,457898.75,0,5487.3833,0,5143.1724 +15327,18752,33418,33417,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.6487589,8.7981033,6.6456547,9,0,-10.928896,0,3,2,2021,11,0,40,50,1,0,0,17.566303,17.566303,0,0,0,0,0,0,0,0,0,0,0,3.7481303,6.7121391,48.18,61.8,51.24,58.84,8.333333333333334,1,1,0,0,12,8,5,1,846,2423871.3,1526832,457898.75,0,5487.3833,0,5143.1724 +15327,18753,33419,-9,33418,33417,1,0,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-1094.7091,-9,1,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.53672105,0,40.77,61.04,-9,-9,6.666666666666667,1,1,1,0,0,8,2,1,362,107301.13,52593.68,0,0,0,0,466.25269 +15328,18754,33420,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.6719832,7.9850755,0,0,-1021.499,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.9490657,7.5452557,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1119,593762.06,281648.66,240606.63,0,0,0,3339.3662 +15329,18755,33421,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1026.8557,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.31,51.83,-9,-9,5,4,5,0,0,0,7,1,0,644,-11127.875,0,0,0,0,0,377.22922 +15330,18756,33422,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1049.604,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.5334935,0,58.22,54.51,-9,-9,10,1,1,0,0,0,10,1,1,486,-49934.648,0,0,0,0,0,749.63129 +15331,18757,33423,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1023.0574,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.88,34.89,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,5048,53322.207,0,0,0,0,1743.5156,1066.9767 +15332,18758,33424,33425,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0811396,9.0569057,0,32,5,159.13863,0,-9,-9,2021,5,0,45,43,1,0,0,21.761213,21.761213,0,0,.05,0,0,0,0,2,0,0,0,2.1888628,0,54.2,57.49,23.69,33.92,8.333333333333334,1,1,0,0,12,7,5,1,795.5,2154325.5,140845.72,1062632.8,0,0,0,3422.1628 +15332,18758,33425,33424,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,32,-5,-128.10399,0,-9,-9,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.8756354,0,23.69,33.92,54.2,57.49,3.333333333333333,1,1,0,0,6,7,5,1,795.5,2154325.5,140845.72,1062632.8,0,0,0,3422.1628 +15333,18759,33426,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,2,0,7.9125333,8.073308,0,0,-987.04346,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4830022,7.8769884,39.83,30.82,-9,-9,5,1,1,0,0,0,9,3,1,3576,732952.44,321671.34,332390.97,0,0,0,2160.5488 +15334,18760,33427,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.3588171,5.8175616,0,0,-898.53442,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8204608,39.43,42.75,-9,-9,10,1,1,0,0,4,7,2,0,435,673242.19,153114,426198.41,0,0,1030.673,560.19971 +15335,18761,33428,-9,33430,33429,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.8324,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33429,33430,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.6219034,9.9446259,0,9,1,63.316605,0,1,1,2021,7,0,53,50,1,0,0,32.040585,32.040585,.05,.05,0,0,0,0,0,0,0,0,0,5.5995703,0,57.16,56.15,51.13,50.73,8.333333333333334,2,3,0,0,10,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33430,33429,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.3224692,7.3852043,0,9,-1,-78.381226,0,-9,-9,2021,6,0,10,0,1,0,0,21.234346,21.234346,.05,.05,0,0,0,0,0,0,0,0,0,1.0321999,0,51.13,50.73,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33431,-9,33430,33429,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.9719,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15336,18762,33432,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,6.714674,7.1039677,0,0,-896.17542,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5196786,7.0505362,50.57,55.02,-9,-9,10,1,1,0,0,0,13,2,0,1271,364171.13,82079.938,221895.11,0,0,0,204.98824 +15337,18763,33433,33434,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.4245148,6.559618,12,8,76.520409,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,6.4137783,48.8,43.43,43.35,27.54,5,1,1,0,0,4,11,2,0,1717.5,282127.84,376061.78,0,0,0,4374.5439,2966.7769 +15337,18763,33434,33433,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,12,-8,33.175694,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.35,27.54,48.8,43.43,5,1,1,0,1,0,11,2,0,1717.5,282127.84,376061.78,0,0,0,4374.5439,2966.7769 +15338,18764,33435,33436,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9567604,7.1928439,9,-3,-89.06723,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2873379,6.8130865,59.31,49.81,54.96,53.17,8.333333333333334,1,1,0,0,3,13,2,1,1112,508126,195069.78,322424.69,0,0,-598.99506,2196.8306 +15338,18764,33436,33435,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.196907,6.2382278,9,3,126.337,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9556491,6.5452185,54.96,53.17,59.31,49.81,8.333333333333334,1,1,0,0,2,13,2,1,1112,508126,195069.78,322424.69,0,0,-598.99506,2196.8306 +15339,18765,33437,33438,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.264555,9.0363445,0,18,1,-18.705582,-9,2,1,2021,6,0,45,0,1,0,0,19.11915,19.11915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,0,459.5,197880.89,22304.855,143379.56,86214.672,0,0,2800.9612 +15339,18765,33438,33437,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,1.8110996,2.0269144,0,18,-1,-30.827576,0,1,1,2021,6,0,12,0,1,0,0,.10762022,.10762022,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.86,55.31,8.333333333333334,1,1,0,0,4,6,5,0,459.5,197880.89,22304.855,143379.56,86214.672,0,0,2800.9612 +15340,18766,33439,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9703012,8.2571125,5.64187,0,0,-968.98419,0,3,2,2021,12,0,21,21,1,0,0,17.143143,17.143143,.05,.05,0,0,0,0,0,0,1,1,0,5.8370728,0,46.82,47.67,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,300.5,89452.758,49769.078,0,0,3525.8359,0,2362.209 +15340,18766,33440,-9,33439,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.76282,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,10,1,1,0,0,0,7,3,1,300.5,89452.758,49769.078,0,0,3525.8359,0,2362.209 +15340,18767,33441,-9,33439,-9,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1067.7867,-9,2,-9,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2005924,0,48,59,-9,-9,7,1,1,0,0,0,7,2,1,1449,0,0,0,0,0,0,206.38257 +15341,18768,33442,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-890.03925,0,2,1,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5601749,0,38.49,59.44,-9,-9,3.333333333333333,1,1,0,0,4,12,1,1,1101,96026.992,0,0,0,0,0,967.38019 +15342,18769,33443,33444,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,9.5527868,9.7060699,4.2303724,19,0,142.75508,0,-9,-9,2021,13,3,30,30,1,3,0,73.121323,73.121323,0,0,0,0,0,0,0,0,1,1,0,6.4774904,3.7046781,53.6,43.99,41.13,42.39,8.333333333333334,1,1,0,0,13,5,5,1,350.5,259379.34,0,226935.06,0,4908.6348,0,15759.797 +15342,18769,33444,33443,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.4323397,7.7685504,21,0,51.657166,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1870463,7.7046719,41.13,42.39,53.6,43.99,8.333333333333334,1,1,0,0,6,5,5,1,350.5,259379.34,0,226935.06,0,4908.6348,0,15759.797 +15343,18770,33445,-9,33447,33446,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2454,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15343,18770,33446,33447,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,7.460155,7.2071357,0,18,2,-37.866974,0,2,3,2021,8,0,50,40,1,0,0,4.7653174,4.7653174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.31,58.29,8.333333333333334,1,1,0,0,11,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15343,18770,33447,33446,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8106184,8.8017845,0,18,-2,-4.4817085,0,2,2,2021,7,0,37,37,1,0,0,19.99992,19.99992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,57.33,53.46,8.333333333333334,1,1,0,0,11,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15344,18771,33448,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1003.3823,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,13.18,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1067,-107262.9,0,0,0,749.3667,0,746.42993 +15345,18772,33449,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,1,0,6.8232403,6.4215231,0,0,-966.29376,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,1.3487884,0,23.968344,0,1,1,0,.57537997,6.4935231,52.22,18.93,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,588,173070.75,-38378.043,0,0,0,0,367.27258 +15346,18773,33450,33451,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.8761392,7.0082984,11,-2,-72.138107,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2567186,7.0682597,59.07,43.05,61.94,29.41,8.333333333333334,1,1,0,0,0,12,5,1,956,1224113,866434.31,307218.94,0,8599.1211,0,6716.0469 +15346,18773,33451,33450,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.7501087,8.6701002,11,2,-60.585743,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6038055,8.9282446,61.94,29.41,59.07,43.05,8.333333333333334,1,1,0,0,0,12,5,1,956,1224113,866434.31,307218.94,0,8599.1211,0,6716.0469 +15347,18774,33452,-9,33455,33454,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.26166,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33453,-9,33455,33454,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.209,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33454,33455,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.5434294,9.5019703,0,24,0,-102.80959,0,2,2,2021,7,0,35,30,1,0,0,65.314804,65.314804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33455,33454,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5542355,8.3824987,0,24,0,-95.374039,0,2,2,2021,8,0,24,28,1,0,0,23.372555,23.372555,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15348,18775,33456,33457,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.1876736,7.7313752,38,7,131.14705,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0037265,7.91471,56.22,40.21,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,366.5,2292653.5,1589607.8,548318.06,0,0,0,9364.3594 +15348,18775,33457,33456,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,9.4557562,9.4171324,10,-7,-36.688725,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5729275,9.2515907,57.16,56.15,56.22,40.21,10,1,1,0,0,0,6,5,1,366.5,2292653.5,1589607.8,548318.06,0,0,0,9364.3594 +15349,18776,33458,33460,-9,-9,1,0,29,1,2,0,2,2,-9,0,2,7.0493178,7.1058917,0,6,3,30.49379,0,-9,-9,2021,15,3,24,24,1,3,0,4.8958297,4.8958297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,53.22,57.06,57.76,5,1,1,0,0,9,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33459,-9,33458,33460,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.3291,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33460,33458,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,8.0820456,7.9134417,0,6,-3,-87.824593,0,-9,-9,2021,8,0,45,42,1,0,0,8.5199785,8.5199785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.23,53.22,8.333333333333334,1,1,0,0,7,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33461,-9,33458,33460,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.1727,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15350,18777,33462,33463,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6680355,8.6065245,0,8,4,-63.461132,0,2,2,2021,7,0,36,38,1,0,0,18.110765,18.110765,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.06,62.04,52.92,55.55,8.333333333333334,1,1,0,0,12,12,5,1,725,162477.67,12185.119,294256.56,97786.391,10103.863,23137.211,4524.0103 +15350,18777,33463,33462,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7553101,8.7263184,0,8,-4,-10.392535,0,-9,-9,2021,6,0,40,40,1,0,0,16.552744,16.552744,.05,.05,0,0,0,0,0,0,0,0,0,5.7308612,0,52.92,55.55,41.06,62.04,10,1,1,0,0,14,12,5,1,725,162477.67,12185.119,294256.56,97786.391,10103.863,23137.211,4524.0103 +15351,18778,33464,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-989.9754,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7604704,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,420,241052.63,0,0,0,0,0,582.7229 +15352,18779,33465,33466,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,18,0,0,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.18,61.8,54,54,6.666666666666667,1,1,1,0,0,1,1,0,511.5,149534.36,0,0,0,0,0,1394.1646 +15352,18779,33466,33465,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,33,0,0,0,3,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48.18,61.8,8,1,1,0,0,0,1,1,0,511.5,149534.36,0,0,0,0,0,1394.1646 +15352,18780,33467,-9,33465,33466,1,1,27,0,0,0,2,2,-9,0,4,8.00317,8.0162334,0,0,0,-1087.1378,0,2,3,2021,10,0,60,60,1,1,1,5.881041,5.881041,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,1,4,0,666,-174095.36,0,0,0,0,0,1847.0952 +15352,18781,33468,-9,33465,33466,1,1,26,0,0,0,2,2,-9,0,4,7.6695552,7.5709953,0,0,0,-857.77045,0,2,3,2021,10,0,50,20,1,1,1,5.5292716,5.5292716,0,0,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,1,1,4,0,419,170934.47,0,0,0,0,0,1459.5265 +15353,18782,33469,-9,33471,33472,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.65662,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33470,-9,33471,33472,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.02734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33471,33472,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.4468904,7.2096224,6.0408874,3,-1,18.295305,0,-9,-9,2021,15,3,10,5,1,3,0,8.4976273,8.4976273,.05,.05,0,0,0,0,0,0,1,1,0,5.6737218,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33472,33471,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.6452589,8.768218,0,3,1,-30.976027,0,2,2,2021,13,1,38,39,1,1,0,17.859455,17.859455,.05,.05,0,0,0,0,0,0,1,1,0,4.1417937,0,54.13,48.04,48.28,60.18,6.666666666666667,1,1,0,0,9,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33473,-9,33471,33472,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-908.48816,-9,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15354,18783,33474,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,2,0,8.2570601,8.3102245,0,0,-1095.8784,0,1,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7058263,8.3902807,64.14,24.84,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1088,1139792.3,198754,319757.16,0,0,0,3165.2991 +15355,18784,33475,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8543892,8.5267744,6.6902094,0,0,-922.64569,0,3,3,2021,12,0,42,45,1,0,0,15.199781,15.199781,0,0,0,0,0,0,0,0,1,1,0,6.9103146,6.7438793,31.37,62.71,-9,-9,3.333333333333333,3,4,0,0,9,8,5,0,342,921510.25,22449.096,888883.56,19823.645,0,0,1675.8979 +15356,18785,33476,-9,33477,-9,1,1,23,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1016.9909,1,2,3,2021,28,11,0,24,2,11,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,5.14,65.71000000000001,-9,-9,0,1,1,0,1,6,11,1,0,1296,85146.125,0,0,0,0,0,0 +15356,18786,33477,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.1820083,7.5141454,0,0,0,-1132.2384,0,-9,-9,2021,20,8,20,45,1,8,0,10.354904,10.354904,.05,.05,0,0,0,0,0,42,1,0,1,0,0,36.51,56.83,-9,-9,3.333333333333333,1,1,0,0,8,11,3,0,266,33331.277,-20099.428,0,0,0,0,1336.9723 +15357,18787,33478,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.8472123,4.8083816,0,0,-843.88867,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6677081,5.1232595,27.99,44.23,-9,-9,5,1,1,0,0,11,9,2,1,1108,343974.56,0,249788.2,0,0,0,1426.4094 +15358,18788,33479,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5130033,6.6167884,0,0,-996.89459,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4065779,6.8220878,52.51,19.65,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,112,232053.52,129474.33,202078.03,0,0,0,825.78979 +15359,18789,33480,33481,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.0938387,8.4820023,6.41752,5,-10,112.10168,0,2,2,2021,7,0,40,40,1,0,0,12.984452,12.984452,.05,.05,0,0,0,0,0,0,1,1,0,6.6295214,0,45.91,59.89,60.12,54.8,8.333333333333334,1,1,0,0,9,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15359,18789,33481,33480,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3153267,8.0912371,0,5,10,59.728188,0,-9,-9,2021,7,0,40,40,1,0,0,13.055018,13.055018,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.91,59.89,8.333333333333334,1,1,0,0,9,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15359,18789,33482,-9,33480,33481,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-842.50275,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15360,18790,33483,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.1536632,6.892437,0,0,-1076.2557,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6389761,7.2174301,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,115,1432623.8,546250.38,814955.81,0,0,0,257.25909 +15361,18791,33484,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.376277,5.418993,0,0,-1055.0875,0,3,2,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1998692,5.5669994,46.67,26.4,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,6278,-29801.537,31363.906,38093.418,0,0,0,1313.0972 +15362,18792,33485,33487,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,7.4540706,7.563344,0,3,-3,-47.376442,0,-9,-9,2021,8,0,43,-9,1,0,0,4.994123,4.994123,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,52,44.75,45.86,8.333333333333334,1,1,0,0,15,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15362,18792,33486,-9,33485,33487,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.37872,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15362,18792,33487,33485,-9,-9,1,1,41,1,1,0,2,2,-9,0,2,8.8691931,8.6621618,0,3,3,-18.073196,0,2,2,2021,19,8,41,37,1,8,0,14.145437,14.145437,.05,.05,0,0,0,0,0,0,0,0,0,7.3355203,0,44.75,45.86,44,52,6.666666666666667,1,1,0,0,15,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15363,18793,33488,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.655941,8.3850412,0,0,0,-1011.433,0,1,1,2021,15,4,47,30,1,4,0,12.8001,12.8001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.39,41.18,-9,-9,1.666666666666667,4,2,0,0,8,4,5,0,355,194594.81,-32742.803,0,0,4617.7915,0,1956.4055 +15364,18794,33489,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.9201188,6.0076022,0,0,-941.05725,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6421423,0,0,1,1,0,3.7784662,5.9686341,55.62,23.5,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1400,464997.34,91114.242,379104.19,0,0,0,1528.9153 +15365,18795,33490,33491,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,2,3,.92166156,0,1,-9,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.54425025,0,43.65,58.28,10.2,55.24,5,1,1,0,0,6,11,2,0,905.5,35294.922,-47465.238,0,0,0,0,69.067017 +15365,18795,33491,33490,-9,-9,1,0,23,0,0,0,1,1,1,0,1,6.8943977,6.6894064,0,2,-3,14.09289,-9,-9,-9,2021,31,11,16,0,1,11,0,4.9364877,4.9364877,0,0,0,0,0,0,0,7,0,0,0,0,0,10.2,55.24,43.65,58.28,0,1,1,0,1,1,11,2,0,905.5,35294.922,-47465.238,0,0,0,0,69.067017 +15366,18796,33492,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.9206181,8.8519669,0,0,0,-1069.2217,-9,2,1,2021,13,1,50,0,1,1,0,15.197415,15.197415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.2,58.1,-9,-9,8.333333333333334,1,1,0,0,2,8,5,0,3344,228903.44,-71200.188,201290.28,173528.08,3181.6174,2581.8904,2044.2576 +15367,18797,33493,33495,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.6297369,8.6984835,0,24,-2,-13.141596,0,2,3,2021,9,0,39,41,1,0,0,14.449565,14.449565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,1.666666666666667,1,1,0,0,14,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15367,18797,33494,-9,33493,33495,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1048.3892,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1727743,0,45.51,52.15,-9,-9,8.333333333333334,1,1,1,0,1,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15367,18797,33495,33493,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.4530907,8.3855762,0,24,2,-15.037537,0,2,2,2021,6,0,39,39,1,0,0,13.052858,13.052858,.05,.05,0,0,0,0,0,0,1,1,0,1.8691288,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,13,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15368,18798,33496,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8117595,7.8366446,0,0,-1023.4199,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0649056,7.7654495,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,1951,505547.09,485497.03,155127.13,0,0,0,2122.5972 +15369,18799,33497,33498,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.3504286,7.7183437,7.3952713,7,-2,-62.838043,0,-9,-9,2021,7,0,7,7,1,0,0,26.755735,26.755735,.05,.05,0,0,0,0,0,2,0,0,0,0,7.0374241,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,1633.5,2269267,1327316.3,501784.31,0,0,0,15640.236 +15369,18799,33498,33497,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.8177156,9.6654234,0,35,2,-16.16415,0,3,3,2021,10,0,30,30,1,0,0,63.75666,63.75666,.05,.05,0,0,0,0,0,0,0,0,0,3.5833645,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1633.5,2269267,1327316.3,501784.31,0,0,0,15640.236 +15370,18800,33499,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,9.0336285,9.1501446,0,0,0,-1000.6644,-9,3,-9,2021,6,0,50,0,1,0,0,18.269611,18.269611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.89,53.59,-9,-9,5,1,1,0,0,10,4,5,0,1272,262219.63,290214.28,0,0,23.389603,845.7998,4653.6162 +15371,18801,33500,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.2982,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,10,1,1,0,0,0,10,1,1,156,69323.547,0,56910.273,32598.334,0,0,1596.3179 +15372,18802,33501,-9,33503,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6005745,7.8960462,6.2825723,0,0,-1043.3168,0,3,2,2021,30,9,29,26,1,9,0,8.5766392,8.5766392,0,0,0,0,0,0,0,0,1,1,0,6.2934389,0,16.75,63.11,-9,-9,0,1,1,0,1,6,10,3,1,529,-33936.469,0,0,0,684.78589,0,2464.582 +15372,18802,33502,-9,33501,-9,1,0,16,0,1,1,3,0,-9,1,5,0,0,0,0,0,-982.45673,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,5,1,1,0,0,0,10,3,1,529,-33936.469,0,0,0,684.78589,0,2464.582 +15372,18803,33503,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,0,0,0,0,-995.52368,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,38.44,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,752,34581.457,0,216486.27,0,0,975.54608,218.94939 +15373,18804,33504,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1107.7715,0,3,3,2021,7,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,38,-9,-9,10,1,1,0,0,9,6,1,1,798,44065.375,0,0,0,0,0,0 +15373,18805,33505,-9,-9,33504,1,1,32,0,0,0,3,3,-9,0,3,7.4720964,7.3511496,0,0,0,-1141.2832,0,-9,3,2021,6,0,30,30,1,0,0,6.3549452,6.3549452,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,394,0,0,0,0,0,0,1983.7848 +15374,18806,33506,33508,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.9064188,7.4845757,0,6,-2,-15.016855,0,2,2,2021,12,0,39,37,1,0,0,7.4727592,7.4727592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,60.02,56.42,6.666666666666667,1,1,0,0,7,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15374,18806,33507,-9,33506,33508,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-997.09546,-9,2,2,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15374,18806,33508,33506,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.5568218,8.7068882,0,6,2,80.63562,0,2,2,2021,7,0,48,48,1,0,0,10.46308,10.46308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49.28,52.09,8.333333333333334,1,1,0,0,6,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15375,18807,33509,33510,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.3485651,8.1521406,0,9,3,6.9033518,0,2,2,2021,10,1,28,34,1,1,0,15.670132,15.670132,.05,.05,0,0,0,0,0,0,0,0,0,2.462343,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,12,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33510,33509,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,8.9842567,9.0049801,0,9,-3,-171.62184,0,2,1,2021,6,0,45,45,1,0,0,16.628489,16.628489,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33511,-9,33509,33510,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3942,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33512,-9,33509,33510,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.28552,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15376,18808,33513,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,5.9817657,6.2977805,4.7758288,0,0,-1103.9692,0,2,2,2021,10,0,8,8,1,0,0,5.5046363,5.5046363,0,0,0,0,0,0,0,0,1,0,1,5.0643568,4.9500079,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1428,94349.336,0,0,0,0,0,1478.9744 +15376,18809,33514,-9,33513,-9,1,0,20,0,1,0,2,2,-9,0,4,7.3555379,7.4493947,0,0,0,-1061.3615,0,2,-9,2021,9,0,30,0,1,0,1,7.6540828,7.6540828,0,0,0,0,0,0,0,0,1,0,1,0,0,45.51,53.59,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,616,144041.56,0,0,0,4131.9521,0,-704.54437 +15377,18810,33515,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.8925695,6.8626685,0,0,-1043.4413,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6791167,6.2723064,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,261,20986.16,29556.793,0,0,0,0,1849.9785 +15378,18811,33516,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6540537,8.4097099,0,5,-16,-58.009033,0,2,2,2021,10,2,38,38,1,2,0,16.602821,16.602821,.05,.05,0,0,0,0,0,0,0,0,0,3.3126056,0,26.45,66.22,35.91,58.14,8.333333333333334,1,1,0,0,6,9,5,1,993,140080.64,16836.258,0,0,0,0,2060.2146 +15378,18812,33517,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,8.0677891,8.4418421,0,5,16,-16.547115,0,-9,-9,2021,11,1,37,37,1,1,0,8.1306543,8.1306543,0,0,.05,0,0,0,0,0,0,0,0,7.4191866,0,35.91,58.14,26.45,66.22,8.333333333333334,1,1,0,0,4,9,5,1,331,67868.688,-6761.9292,214554.91,93066.438,15460.998,0,2252.9688 +15379,18813,33518,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3146381,8.3048973,0,0,0,-990.7865,0,3,2,2021,8,0,30,21,1,0,0,19.107275,19.107275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,164,1294615.1,604492,288776.81,0,0,0,2158.9519 +15380,18814,33519,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.70227,0,3,3,2021,20,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,367,-28133.727,0,0,0,0,797.83862,1020.942 +15381,18815,33520,33521,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,7.5054069,7.6556582,0,20,6,29.681484,0,3,2,2021,8,0,40,40,1,0,0,5.8289037,5.8289037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,35.4,44.5,6.666666666666667,1,1,0,0,11,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33521,33520,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8649993,7.5195556,0,20,-6,-44.357063,0,2,2,2021,12,1,40,40,1,1,0,5.759409,5.759409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.4,44.5,52,54.51,5,1,1,0,0,10,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33522,-9,33521,33520,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1048.9473,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33523,-9,33521,33520,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.6142,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15382,18816,33524,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,5.7992368,5.6262498,0,0,0,-919.80859,-9,2,-9,2021,6,0,12,0,1,0,0,3.1682599,3.1682599,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,1,6,2,1,273,-76722.828,0,0,0,0,0,1022.9741 +15383,18817,33525,33526,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.8791065,7.7085471,56,-3,55.83683,0,3,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.74475801,7.8517604,35.28,53.3,38.39,48.48,6.666666666666667,1,1,0,0,0,12,3,1,648,656369.81,78328.797,484962.56,0,0,0,2606.759 +15383,18817,33526,33525,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,4.200727,3.7182672,56,3,-118.00031,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6286234,3.7629511,38.39,48.48,35.28,53.3,6.666666666666667,1,1,0,0,0,12,3,1,648,656369.81,78328.797,484962.56,0,0,0,2606.759 +15384,18818,33527,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1020.17,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9223197,0,53.44,55.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,989,64700.367,0,277822.59,0,0,0,940.68958 +15385,18819,33528,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1062.1393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.55,43.22,-9,-9,10,1,1,0,0,9,13,1,1,1957,123719.93,0,0,0,0,0,506.11264 +15386,18820,33529,33530,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-3,-83.89061,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1751699,0,57.33,53.46,60.87,42.1,10,1,1,0,0,0,11,3,1,668,329124.19,177548.14,152698.25,0,0,0,2542.9624 +15386,18820,33530,33529,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.0192041,7.8002048,58,3,-25.251041,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9782019,7.8951316,60.87,42.1,57.33,53.46,10,1,1,0,0,0,11,3,1,668,329124.19,177548.14,152698.25,0,0,0,2542.9624 +15387,18821,33531,33532,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.6614075,8.825305,45,0,61.909256,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9200354,54.13,48.04,50.01,52.64,8.333333333333334,1,1,0,0,2,5,5,1,769.5,723154.5,501840.44,158283.2,0,0,0,3357.5093 +15387,18821,33532,33531,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.871294,5.9670095,45,0,31.641714,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9193449,50.01,52.64,54.13,48.04,6.666666666666667,1,1,0,0,0,5,5,1,769.5,723154.5,501840.44,158283.2,0,0,0,3357.5093 +15388,18822,33533,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,8.6188936,8.3542862,0,0,-938.28058,0,2,2,2021,12,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,7.0036054,8.4118366,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1820,439338.28,489672.28,182630.3,9442.3037,0,3601.7783,3446.9578 +15388,18823,33534,-9,33533,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7963581,7.6789732,0,0,0,-977.05133,-9,2,-9,2021,7,0,50,0,1,0,0,5.0760293,5.0760293,0,0,0,0,0,0,0,0,0,0,0,.18385194,0,51.81,57.22,-9,-9,5,1,1,0,0,2,9,3,1,2859,17114.436,0,0,0,0,0,1296.9795 +15389,18824,33535,33536,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,10,-6,70.926147,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,60.7,42.48,8.333333333333334,1,1,0,0,0,13,2,1,1615.5,472263.94,241035.09,110171.04,0,0,0,2283.7158 +15389,18824,33536,33535,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8619547,6.8352261,10,6,-35.843746,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2300253,60.7,42.48,39.74,39.79,8.333333333333334,1,1,0,0,3,13,2,1,1615.5,472263.94,241035.09,110171.04,0,0,0,2283.7158 +15389,18825,33537,-9,33535,33536,1,1,40,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1002.2141,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,0,0,13,1,1,163,51339.285,0,0,0,0,0,-76.926491 +15390,18826,33538,33539,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.3633318,7.6810389,46,5,-127.52551,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8752625,7.3512349,36.28,44.53,51,46,6.666666666666667,1,1,0,0,0,5,2,1,452.5,331998.63,123548.22,168267.41,0,0,0,2120.3633 +15390,18826,33539,33538,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-5,-45.261646,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5907927,0,51,46,36.28,44.53,7,1,1,0,0,0,5,2,1,452.5,331998.63,123548.22,168267.41,0,0,0,2120.3633 +15391,18827,33540,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.6848202,7.8118439,0,0,-801.65009,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5946026,7.7819996,50.57,52.35,-9,-9,10,1,1,0,0,0,10,3,1,1128,345330.38,226913.31,0,0,0,0,3170.9915 +15392,18828,33541,33542,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.334774,6.1574693,51,3,36.994724,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4489317,6.3308988,61.26,51.57,58.74,40.91,10,1,1,0,0,5,6,2,1,313.5,1587818.4,210099.75,918089.38,0,4085.0962,0,2004.8827 +15392,18828,33542,33541,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.6622143,6.5311942,51,-3,-120.96571,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.038983494,0,0,1,1,0,7.2556801,6.6880898,58.74,40.91,61.26,51.57,8.333333333333334,1,1,0,0,0,6,2,1,313.5,1587818.4,210099.75,918089.38,0,4085.0962,0,2004.8827 +15393,18829,33543,33544,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.5332346,8.9960051,0,25,6,59.352856,0,3,3,2021,7,0,45,44,1,0,0,10.800984,10.800984,.05,.05,.05,0,0,0,0,0,0,0,0,4.352879,0,64.83,34.85,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,905.5,381077.94,220267.91,274222.38,88938.563,0,0,4374.6523 +15393,18829,33544,33543,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,9.2034197,9.2213726,0,25,-6,47.007397,0,2,3,2021,11,2,45,45,1,2,0,27.189449,27.189449,0,0,0,0,0,0,0,0,0,0,0,4.5295544,0,54.2,57.49,64.83,34.85,8.333333333333334,1,1,0,0,10,9,5,1,905.5,381077.94,220267.91,274222.38,88938.563,0,0,4374.6523 +15394,18830,33545,-9,-9,-9,1,0,70,0,1,0,2,2,-9,0,2,0,7.0340824,7.2873316,0,0,-1101.6079,0,-9,-9,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,17.345375,0,0,1,1,0,0,7.1139007,22.54,34.78,-9,-9,5,1,1,0,0,0,12,2,1,964,274297.66,70665.305,0,0,0,0,1031.9678 +15394,18831,33546,33548,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.3805418,8.2520123,0,4,6,2.5103879,0,2,2,2021,13,2,40,40,1,2,0,14.206964,14.206964,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.57,42.37,40.58,60.95,6.666666666666667,1,1,0,1,11,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33547,-9,33548,33546,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1084.882,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33548,33546,33545,-9,1,0,40,0,1,0,2,2,-9,0,4,8.6182737,8.8211145,0,4,-6,7.2212424,0,2,1,2021,10,3,42,43,1,3,0,14.714957,14.714957,.05,.05,0,0,0,0,0,42,1,1,0,0,0,40.58,60.95,52.57,42.37,8.333333333333334,1,1,0,0,11,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33549,-9,33548,33546,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.0745,-9,2,2,2021,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,37.55,-9,-9,10,1,1,0,0,3,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15395,18832,33550,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,7.4512467,7.3213124,0,0,0,-950.59528,0,-9,-9,2021,4,1,40,30,1,1,0,5.1738343,5.1738343,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,3,8,3,0,1828,0,0,0,0,0,0,1145.302 +15396,18833,33551,33552,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.7414045,6.3727446,3,-1,104.33253,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3296256,6.6487203,54.2,57.49,57.06,57.76,10,1,1,0,0,10,11,4,1,145.5,318403.84,-4198.6914,138742.55,-4216.6416,0,0,3229.3755 +15396,18833,33552,33551,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,8.3696795,8.2710972,3,1,35.79174,0,3,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,6.5379372,8.2616167,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,6,11,4,1,145.5,318403.84,-4198.6914,138742.55,-4216.6416,0,0,3229.3755 +15397,18834,33553,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.25946,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,-9,-9,10,1,1,0,0,0,11,1,1,1935,135321.53,0,0,0,0,0,613.04999 +15398,18835,33554,33555,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.6235681,8.3259239,7.5555282,38,0,36.391449,0,2,2,2021,12,0,39,39,1,0,0,5.4465814,5.4465814,.05,.05,0,0,0,0,0,0,0,0,0,0,7.5094132,46.39,60.99,48.87,58.55,8.333333333333334,1,1,0,0,14,1,4,1,210.5,360701.47,74554.797,297925.13,0,0,0,2275.2339 +15398,18835,33555,33554,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.5416598,7.8983488,0,38,0,31.554661,0,3,2,2021,10,1,35,33,1,1,0,7.7739387,7.7739387,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.87,58.55,46.39,60.99,8.333333333333334,1,1,0,0,14,1,4,1,210.5,360701.47,74554.797,297925.13,0,0,0,2275.2339 +15398,18836,33556,-9,33555,33554,1,0,33,0,0,0,2,2,-9,0,3,7.896235,8.1981249,0,0,0,-1054.2701,0,2,2,2021,13,1,50,42,1,1,1,9.0614166,9.0614166,0,0,0,0,0,0,0,0,0,0,0,2.1295156,0,46.92,54.3,-9,-9,6.666666666666667,1,1,0,0,14,1,4,1,661,22209.379,49862.133,0,0,1588.5507,1820.2263,981.41205 +15399,18837,33557,33558,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7649179,6.7445512,51,0,130.0986,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9674206,6.9036765,57.63,46.42,56.57,57.78,6.666666666666667,1,1,0,0,4,2,3,1,393.5,724663.5,352493.56,313123.75,0,0,0,3026.2534 +15399,18837,33558,33557,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.8027453,6.9929409,51,0,69.177635,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1091604,7.1665463,56.57,57.78,57.63,46.42,10,1,1,0,0,7,2,3,1,393.5,724663.5,352493.56,313123.75,0,0,0,3026.2534 +15400,18838,33559,33560,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,1,-55.720272,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0446792,0,53,47,24.64,34.86,7,1,1,0,0,0,6,2,1,329,179175.05,136633.34,0,0,-213.16626,0,1703.98 +15400,18838,33560,33559,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7679629,5.5032797,52,-1,73.150627,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,3.3970389,0,0,1,1,0,0,5.7533708,24.64,34.86,53,47,1.666666666666667,1,1,0,0,4,6,2,1,329,179175.05,136633.34,0,0,-213.16626,0,1703.98 +15401,18839,33561,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.243525,6.949223,0,0,-1049.3735,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0470858,60.83,37.28,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,267,227894.44,116592.74,0,0,0,0,2158.5271 +15402,18840,33562,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.8598752,6.0792189,0,0,-950.3139,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7482448,45.12,45.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,995,272302.69,64427.008,177713.09,40776.227,0,0,1505.8497 +15403,18841,33563,33564,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.938262,7.7271571,0,32,10,-54.015778,0,2,1,2021,11,0,40,39,1,0,0,7.6151428,7.6151428,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,48.13,45.31,45.17,5,1,1,0,0,11,7,5,1,737.5,583103.38,76186.641,320024.81,0,0,8658.0234,2680.9438 +15403,18841,33564,33563,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6674938,8.0614853,0,32,-10,-20.356611,0,2,2,2021,10,0,43,43,1,0,0,11.17888,11.17888,0,0,0,0,0,0,0,0,0,0,0,0,0,45.31,45.17,51.39,48.13,8.333333333333334,1,1,0,0,13,7,5,1,737.5,583103.38,76186.641,320024.81,0,0,8658.0234,2680.9438 +15403,18842,33565,-9,33564,33563,1,1,23,0,0,0,2,2,0,0,3,0,0,0,0,0,-1043.3958,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,55.3,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,578,-43828.992,0,0,0,0,0,-705.48938 +15404,18843,33566,33567,-9,-9,1,1,47,0,0,0,1,1,-9,0,1,0,0,0,1,5,0,-9,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,19.4,26.58,38.42,15.04,0,1,1,0,1,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15404,18843,33567,33566,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,1,-5,0,-9,3,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.42,15.04,19.4,26.58,1.666666666666667,1,1,0,0,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15404,18843,33568,-9,33567,-9,1,1,17,0,0,1,3,0,-9,0,3,0,0,0,0,0,-962.22076,-9,3,-9,2021,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.28,50.97,-9,-9,5,1,1,0,0,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15405,18844,33569,33570,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2250309,8.1280565,0,1,-2,28.695459,-9,-9,-9,2021,10,0,37,0,1,1,0,8.8903933,8.8903933,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,46.5,58.26,7,4,1,0,0,1,1,4,1,380,28253.598,0,37576.156,51555.859,0,0,2627.7446 +15405,18844,33570,33569,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.0363894,7.9185901,0,1,2,38.588654,0,2,2,2021,6,0,38,37,1,0,0,10.938855,10.938855,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,50,57,8.333333333333334,1,1,0,0,7,1,4,1,380,28253.598,0,37576.156,51555.859,0,0,2627.7446 +15406,18845,33571,33572,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.2131538,9.0277586,0,10,-1,59.420971,0,2,1,2021,5,0,46,46,1,0,0,17.840185,17.840185,.05,.05,0,0,0,0,0,0,0,0,0,5.9515085,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,13,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15406,18845,33572,33571,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,1.3753715,1.1254935,0,10,1,5.3814902,0,-9,-9,2021,12,0,4,4,1,0,0,.073936671,.073936671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15406,18845,33573,-9,33572,33571,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.47614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15407,18846,33574,-9,33575,33576,1,0,51,0,0,0,2,2,-9,0,3,7.6705952,8.26756,0,0,0,-927.9054,0,3,3,2021,11,1,40,35,1,1,0,8.8668127,8.8668127,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,7,6,3,1,277,87976.164,175347.86,146693.16,136637.7,0,0,604.78265 +15407,18847,33575,33576,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,2,-2,-95.91391,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.71,27.24,57.35,40.21,6.666666666666667,1,1,0,0,0,6,2,1,633.5,8819.4355,0,164665.69,-6548.4795,0,0,1789.0481 +15407,18847,33576,33575,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,2.9724669,2.8845832,2,2,-66.724327,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,3.4125242,3.1482396,57.35,40.21,55.71,27.24,6.666666666666667,1,1,0,0,0,6,2,1,633.5,8819.4355,0,164665.69,-6548.4795,0,0,1789.0481 +15408,18848,33577,33578,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5234394,8.5794363,0,29,1,-43.524216,0,2,2,2021,8,0,38,38,1,0,0,15.218239,15.218239,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,57.06,57.76,6.666666666666667,1,1,0,0,8,12,4,1,372.5,678968.75,282285.88,282660.47,43333.887,0,0,1352.3466 +15408,18848,33578,33577,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,6.394578,6.2514954,0,29,-1,103.23734,0,2,3,2021,8,0,70,70,1,0,0,1.0442449,1.0442449,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,61.12,51.57,8.333333333333334,1,1,0,0,10,12,4,1,372.5,678968.75,282285.88,282660.47,43333.887,0,0,1352.3466 +15408,18849,33579,-9,33577,33578,1,0,23,0,0,0,2,2,-9,0,4,6.9976807,6.9980464,0,0,0,-964.50531,0,1,2,2021,8,0,25,26,1,0,1,7.1404376,7.1404376,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1206,-16803.82,0,0,0,0,0,1470.4012 +15408,18850,33580,-9,33577,33578,1,1,19,0,0,0,2,2,1,0,5,7.3562031,7.1772223,0,0,0,-935.40216,-9,1,2,2021,5,0,38,0,1,0,1,3.6875131,3.6875131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,189,48035.418,-5790.8306,0,0,0,0,459.84137 +15409,18851,33581,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.5570345,8.6947718,0,0,0,-1121.6201,-9,-9,-9,2021,6,0,37,0,1,0,0,24.104092,24.104092,.05,.05,0,0,0,0,0,0,0,0,0,6.8473363,0,62.39,56.71,-9,-9,10,1,1,0,0,12,4,5,1,397,70983.648,-27064.016,129554.69,79446.555,0,0,3670.1672 +15410,18852,33582,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.7963514,6.9316773,0,0,-993.58405,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5799956,7.026679,45.58,47.97,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,548,409322.56,0,457116.31,0,0,0,382.81512 +15411,18853,33583,33584,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,59,2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2129929,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,0,2,1,1,1053.5,112153.48,0,0,0,793.31604,1423.2706,1987.5391 +15411,18853,33584,33583,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,59,-2,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.28632417,0,54.2,57.49,58.32,50.22,10,1,1,0,0,3,2,1,1,1053.5,112153.48,0,0,0,793.31604,1423.2706,1987.5391 +15412,18854,33585,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,4.0146289,4.2005639,0,0,-885.74109,0,2,1,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1314101,3.8848209,41.61,16.05,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,365,22480.027,103971.7,0,0,0,0,126.60363 +15413,18855,33586,33587,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,8.2735653,8.4621267,7.0320244,31,-2,65.815193,0,2,3,2021,14,4,38,36,1,4,0,8.2715626,8.2715626,0,0,0,0,0,0,0,0,1,1,0,4.0817318,7.4690366,50.63,46.26,46.39,37.05,8.333333333333334,1,1,0,0,11,2,4,1,1650,1285207.6,355385.72,221956.73,0,0,0,2044.4102 +15413,18855,33587,33586,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,31,2,18.964947,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,37.05,50.63,46.26,8.333333333333334,1,1,0,0,0,2,4,1,1650,1285207.6,355385.72,221956.73,0,0,0,2044.4102 +15414,18856,33588,33589,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.7481985,7.0293241,9,8,-85.617371,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9316912,6.8097467,46.63,59.72,51,49,8.333333333333334,1,1,0,0,0,7,5,1,1342.5,1747405.5,1037234.9,478850.56,0,937.0047,0,4927.7222 +15414,18856,33589,33588,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6657763,8.8558607,0,9,-8,-55.761189,-9,-9,-9,2021,10,0,10,0,1,1,0,77.456436,77.456436,.05,.05,0,0,0,0,.51345539,0,1,1,0,0,0,51,49,46.63,59.72,7,1,1,0,0,1,7,5,1,1342.5,1747405.5,1037234.9,478850.56,0,937.0047,0,4927.7222 +15415,18857,33590,33591,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,7.9351301,8.1430855,0,12,-2,-147.53584,0,2,2,2021,12,0,45,30,1,0,0,7.5269208,7.5269208,0,0,0,0,0,0,0,0,1,1,0,0,0,55.91,47.11,39.08,53.85,8.333333333333334,1,1,0,0,6,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15415,18857,33591,33590,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,0,0,0,12,2,-67.973663,0,-9,-9,2021,12,0,0,30,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.08,53.85,55.91,47.11,6.666666666666667,1,1,1,0,9,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15415,18857,33592,-9,33590,33591,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1328,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15416,18858,33593,33594,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3361044,8.1558952,0,5,0,54.976822,0,-9,-9,2021,7,0,50,56,1,0,0,9.6679678,9.6679678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,46.16,58.62,8.333333333333334,1,1,0,0,4,5,5,1,1308.5,229926.73,129807.3,0,0,1052.5686,16150.24,3389.3743 +15416,18858,33594,33593,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7903261,8.6729994,0,5,0,41.217342,0,-9,-9,2021,12,0,52,50,1,0,0,12.813171,12.813171,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,43.73,59.7,6.666666666666667,1,1,0,0,11,5,5,1,1308.5,229926.73,129807.3,0,0,1052.5686,16150.24,3389.3743 +15417,18859,33595,33596,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.7321444,8.5077572,43,-4,107.08144,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7055445,8.646306,44.6,52.77,55.79,52.62,10,1,1,0,0,0,12,5,1,617.5,839338.19,677308.19,109210.55,0,0,0,6840.1929 +15417,18859,33596,33595,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.5846167,8.5772524,43,4,4.9651942,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6914864,8.5549288,55.79,52.62,44.6,52.77,10,1,1,0,0,0,12,5,1,617.5,839338.19,677308.19,109210.55,0,0,0,6840.1929 +15418,18860,33597,33598,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9084239,7.4930415,48,-2,-73.205559,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.864778,7.5638299,50.55,42.75,46,36,10,1,1,0,0,15,9,4,1,722.5,1378709,823103.38,274666.69,0,0,0,3921.8838 +15418,18860,33598,33597,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,8.0264254,8.2500706,48,2,76.198738,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2564287,46,36,50.55,42.75,6.666666666666667,2,3,0,0,0,9,4,1,722.5,1378709,823103.38,274666.69,0,0,0,3921.8838 +15419,18861,33599,33600,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.5163946,8.8485794,0,6,-1,-30.659216,0,1,2,2021,12,0,38,38,1,0,0,17.586548,17.586548,.05,.05,0,0,0,0,0,0,0,0,0,2.8702774,0,39.1,57.79,52.23,55.6,3.333333333333333,4,5,0,0,5,8,5,1,570.5,110127.47,65134.766,0,0,0,0,3770.311 +15419,18861,33600,33599,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.4636135,8.5609055,0,6,1,111.88526,0,1,1,2021,5,0,20,35,1,0,0,25.424608,25.424608,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,39.1,57.79,8.333333333333334,4,5,0,0,7,8,5,1,570.5,110127.47,65134.766,0,0,0,0,3770.311 +15420,18862,33601,33602,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1013689,8.2453661,0,31,-11,43.20739,0,2,3,2021,6,0,21,23,1,0,0,22.049067,22.049067,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,61.01,53.18,8.333333333333334,1,1,0,0,11,12,4,1,1910,849717,755246.25,0,0,0,1230.5944,2596.002 +15420,18862,33602,33601,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.1156421,7.2687812,11,11,95.43679,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3595443,7.1121659,61.01,53.18,60.02,56.42,10,1,1,0,0,5,12,4,1,1910,849717,755246.25,0,0,0,1230.5944,2596.002 +15421,18863,33603,33604,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9681945,7.5569286,28,11,-94.590088,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,3.8352916,7.8468056,54.13,48.04,52,54.51,6.666666666666667,1,1,0,0,9,9,5,1,597,1701026.3,901955.25,842222.81,55527.637,0,1396.8927,4766.4023 +15421,18863,33604,33603,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4238958,8.549922,0,7,-11,-51.561302,0,-9,-9,2021,12,0,42,38,1,0,0,12.243245,12.243245,0,0,0,0,0,0,0,7,1,1,0,3.1879809,0,52,54.51,54.13,48.04,5,1,1,0,0,12,9,5,1,597,1701026.3,901955.25,842222.81,55527.637,0,1396.8927,4766.4023 +15422,18864,33605,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,6.8804922,6.8765216,0,0,0,-1011.0614,0,-9,-9,2021,11,0,40,35,1,0,0,2.8333521,2.8333521,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,10,2,0,2844,127707.48,0,0,0,0,0,795.77606 +15423,18865,33606,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.0671244,7.0442519,0,0,-1029.9658,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8189974,6.8484759,37.84,27.36,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,1196,212098.64,-37821.266,87262.313,0,0,0,108.23327 +15424,18866,33607,33609,-9,-9,1,0,32,1,4,0,2,2,-9,0,3,0,5.2689719,5.6911354,2,-1,84.70874,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.894908,0,37.69,58.7,49.12,57.28,8.333333333333334,1,1,1,0,3,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33608,-9,33607,33609,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-946.86377,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33609,33607,-9,-9,1,1,33,1,4,0,2,2,-9,0,4,8.2675486,8.4382601,0,2,1,59.414642,0,-9,-9,2021,12,1,46,42,1,1,0,9.7638359,9.7638359,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.12,57.28,37.69,58.7,8.333333333333334,1,1,0,0,1,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33610,-9,33607,33609,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.835,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15425,18867,33611,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.662487,8.2568436,7.2923613,0,0,-1021.5953,0,2,3,2021,15,3,34,32,1,3,0,7.7916818,7.7916818,0,0,0,0,0,0,0,0,0,0,0,.63427591,7.4788399,45.6,47.95,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,233,639554.69,369799.78,0,0,0,0,2168.7488 +15425,18868,33612,-9,33611,-9,1,0,27,0,0,0,1,1,-9,0,4,8.1729689,7.8975015,2.6198287,0,0,-993.70612,0,1,-9,2021,11,0,35,35,1,0,1,9.3810577,9.3810577,.05,.05,0,0,0,0,0,0,0,0,0,2.9585423,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,183,38007.715,-33589.973,0,0,0,0,1165.2594 +15426,18869,33613,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1159649,7.9239073,0,0,0,-1018.7231,0,2,3,2021,3,0,38,40,1,0,0,8.8198347,8.8198347,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,8,7,4,0,920,168776.47,26180.754,0,0,0,0,2173.3696 +15427,18870,33614,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.81824,0,2,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.28,26.5,-9,-9,0,1,1,1,1,3,11,1,0,274,125921.88,0,0,0,0,0,1234.1849 +15428,18871,33615,33616,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.0304632,7.0611806,32,0,55.052151,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3867064,6.7574124,53.9,52.09,54.2,57.49,8.333333333333334,1,1,0,0,0,1,4,1,3030,2127766,1037237.8,154268.84,0,0,0,5011.7295 +15428,18871,33616,33615,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.6707478,8.3776598,32,0,62.195141,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8651562,54.2,57.49,53.9,52.09,8.333333333333334,1,1,0,0,6,1,4,1,3030,2127766,1037237.8,154268.84,0,0,0,5011.7295 +15429,18872,33617,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,1,0,0,0,0,0,-1047.8301,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.37,21.72,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,225,-116597.27,-25781.023,0,0,0,0,1644.491 +15429,18873,33618,-9,33620,33619,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-886.1969,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33619,33620,33617,-9,1,1,32,1,2,0,3,3,-9,1,2,0,0,0,3,2,0,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,32.18,48.12,49,59,5,1,1,0,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33620,33619,-9,-9,1,0,30,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,49,59,32.18,48.12,8.333333333333334,1,1,0,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33621,-9,33620,33619,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.7631,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15430,18874,33622,33623,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,3,44.657475,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7624818,0,52,45,60.46,18.23,8,1,1,0,0,0,2,2,1,1084,295441.38,267495.78,119030.12,2135.2219,3038.7168,4661.5635,2155.9331 +15430,18874,33623,33622,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.6286621,7.5366144,57,-3,-15.450373,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.46849191,0,1,1,0,.89308435,7.3826194,60.46,18.23,52,45,8.333333333333334,1,1,0,0,0,2,2,1,1084,295441.38,267495.78,119030.12,2135.2219,3038.7168,4661.5635,2155.9331 +15431,18875,33624,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.7081509,7.3992715,0,0,-1001.5347,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8291187,7.496026,61.27,41.18,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,612,246697.8,141891.97,225578.83,0,0,0,1933.8129 +15432,18876,33625,33626,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.0196977,6.4472561,9,5,-24.060675,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3631649,6.4356637,58.1,28.75,34.69,21.98,8.333333333333334,1,1,0,0,0,2,2,1,834.5,402193.06,156363.06,81962.641,0,0,0,1405.4368 +15432,18876,33626,33625,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,9,-5,5.3738518,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,7.585845,0,0,1,1,0,0,0,34.69,21.98,58.1,28.75,3.333333333333333,1,1,0,1,0,2,2,1,834.5,402193.06,156363.06,81962.641,0,0,0,1405.4368 +15433,18877,33627,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.4786382,6.6950407,0,0,0,-1036.6818,0,3,3,2021,12,0,16,16,1,0,0,5.6140356,5.6140356,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15433,18877,33628,-9,33627,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.4781,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15433,18877,33629,-9,33627,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.39124,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15434,18878,33630,33631,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7994785,8.807559,0,33,3,45.294949,0,2,2,2021,10,0,12,20,1,1,0,44.66724,44.66724,.05,.05,0,0,0,0,0,0,0,0,0,1.5117352,0,52,47,57.06,57.76,7,1,1,0,0,1,11,5,1,614,1332697,1167400.5,298165.94,184496.11,0,0,3382.2224 +15434,18878,33631,33630,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.3021154,7.4823155,0,35,-3,-1.6926991,0,2,2,2021,12,0,25,28,1,0,0,7.5166483,7.5166483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,47,8.333333333333334,1,1,0,0,8,11,5,1,614,1332697,1167400.5,298165.94,184496.11,0,0,3382.2224 +15435,18879,33632,33633,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,28,3,-111.77444,0,2,2,2021,20,7,0,16,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,34.6,57.06,57.76,6.666666666666667,1,1,0,0,13,4,3,1,441.5,908856.44,23755.285,420309.38,0,15365.699,12228.856,2103.5466 +15435,18879,33633,33632,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.119051,8.3872929,0,28,-3,39.961906,0,2,-9,2021,10,0,42,37,1,0,0,10.80382,10.80382,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.06,57.76,39.76,34.6,10,1,1,0,0,13,4,3,1,441.5,908856.44,23755.285,420309.38,0,15365.699,12228.856,2103.5466 +15435,18880,33634,-9,33632,33633,1,1,30,0,0,0,2,2,-9,0,3,7.9182715,8.0040207,0,0,0,-1084.4745,0,2,2,2021,12,0,45,40,1,0,1,8.0126791,8.0126791,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,46.15,-9,-9,1.666666666666667,1,1,0,0,8,4,4,1,109,-31963.922,0,107499.75,91817.406,0,0,1066.3553 +15436,18881,33635,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,7.7267256,7.6614885,0,0,-1016.9586,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1591592,7.7478342,39.89,64.2,-9,-9,5,1,1,0,0,0,9,3,1,681,555406.81,106092.82,381724.94,0,0,0,1293.5786 +15437,18882,33636,33637,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.6591125,6.9490938,0,7,-1,66.982834,0,3,3,2021,7,0,13,13,1,0,0,7.8188882,7.8188882,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,6,3,1,2271.5,653222.5,274857.84,182631.03,48083.063,0,-96.474869,1572.9497 +15437,18882,33637,33636,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.788547,8.074048,4.3824334,7,1,32.687065,0,3,3,2021,6,0,40,40,1,0,0,8.750679,8.750679,.05,.05,0,0,0,0,0,0,0,0,0,0,4.6623073,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,6,3,1,2271.5,653222.5,274857.84,182631.03,48083.063,0,-96.474869,1572.9497 +15438,18883,33638,33639,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.3599453,8.7166319,0,9,-2,109.43266,0,-9,-9,2021,15,4,37,37,1,4,0,16.646637,16.646637,.05,.05,.05,0,0,0,0,0,0,0,0,3.6049283,0,36.16,53.39,36.08,60.5,3.333333333333333,1,1,0,0,14,9,5,1,606.5,1803606.3,456538.38,1267078.4,206519.81,0,0,3669.2617 +15438,18883,33639,33638,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8834782,8.6541052,0,9,2,-103.68649,0,3,3,2021,23,11,38,38,1,11,0,19.0364,19.0364,0,0,0,0,0,0,0,0,0,0,0,5.2189698,0,36.08,60.5,36.16,53.39,6.666666666666667,1,1,0,0,9,9,5,1,606.5,1803606.3,456538.38,1267078.4,206519.81,0,0,3669.2617 +15439,18884,33640,33641,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3998604,7.3319917,0,16,-8,-121.53391,0,3,3,2021,8,0,32,12,1,0,0,5.4238114,5.4238114,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,30.66,60.65,8.333333333333334,2,3,0,0,10,9,5,0,461,1324364,291099.25,832510.38,150605.44,0,0,4119.5186 +15439,18884,33641,33640,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.0847216,9.074091,0,15,8,71.096428,0,3,3,2021,13,2,41,41,1,2,0,28.909977,28.909977,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.66,60.65,55.9,52.64,5,1,1,0,0,12,9,5,0,461,1324364,291099.25,832510.38,150605.44,0,0,4119.5186 +15440,18885,33642,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0188451,7.0002403,0,0,-1108.1334,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.8521638,0,24.976612,0,1,1,0,3.1294377,6.5986052,54.62,37.47,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,741,96170.383,273156.19,52617.383,0,0,0,-338.80902 +15441,18886,33643,-9,33644,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1170.6213,-9,3,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,661,1122590,687011.38,353759.59,0,7834.0254,0,4275.4907 +15441,18886,33644,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.7451391,9.1985531,0,0,0,-949.59625,0,2,2,2021,7,0,20,20,1,0,0,50.084774,50.084774,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,661,1122590,687011.38,353759.59,0,7834.0254,0,4275.4907 +15441,18887,33645,-9,33644,-9,1,1,19,0,0,0,2,2,-9,0,4,7.8116584,7.92204,0,0,0,-1081.7753,0,3,-9,2021,19,8,40,0,1,8,1,7.6198831,7.6198831,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,53.79,-9,-9,5,1,1,0,1,1,7,3,0,175,18467.697,0,0,0,0,0,1613.3621 +15442,18888,33646,33647,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.478415,7.3325682,0,7,-2,-60.673515,0,2,3,2021,9,2,20,20,1,2,0,7.9684157,7.9684157,0,0,0,0,0,0,0,0,0,0,0,4.4872127,0,55.3,55.6,54.37,54.8,8.333333333333334,1,1,0,0,8,10,3,1,1305,593792.31,221392.7,326562.19,0,0,0,1899.7112 +15442,18888,33647,33646,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.4475465,7.5158358,7,2,-48.575699,0,3,2,2021,10,1,0,42,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8011241,7.4710665,54.37,54.8,55.3,55.6,8.333333333333334,1,1,0,0,7,10,3,1,1305,593792.31,221392.7,326562.19,0,0,0,1899.7112 +15443,18889,33648,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.4924,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.65,37.27,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1339,76091.75,0,236952.25,0,0,0,1189.0256 +15444,18890,33649,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,3,0,0,0,0,0,-1085.9949,-9,1,-9,2021,29,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.29,57.33,-9,-9,3.333333333333333,1,1,1,0,0,9,1,1,4810,152995.75,0,0,0,0,0,388.48071 +15445,18891,33650,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4044166,7.603394,0,0,-1004.0203,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0261784,7.5603452,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,139,606751.31,398887.53,-9860.2686,0,0,0,1882.094 +15446,18892,33651,33652,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,5.1741457,5.8515997,4.649972,10,-4,-68.432983,0,2,2,2021,17,5,4,4,1,5,0,5.1893859,5.1893859,0,0,0,0,0,0,0,0,1,1,0,5.0056701,0,31.29,61.29,39.23,52.28,3.333333333333333,1,1,0,1,2,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33652,33651,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,6.4357662,6.2499228,0,10,4,128.7097,0,2,2,2021,21,9,45,30,1,9,0,1.5626453,1.5626453,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,52.28,31.29,61.29,3.333333333333333,1,1,0,1,8,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33653,-9,33651,33652,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.3362,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33654,-9,33651,33652,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.95056,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15447,18893,33655,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.8580875,8.5271492,0,0,0,-1072.1145,0,2,2,2021,13,1,57,67,1,1,0,17.20076,17.20076,0,0,0,0,0,0,0,0,1,1,0,2.7568429,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,950,-35226.879,0,0,0,0,0,3290.8225 +15448,18894,33656,33657,-9,-9,1,1,62,0,0,0,1,1,-9,0,1,0,7.577641,7.6372914,13,1,39.50116,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.2748899,7.5166583,21.23,37.74,24.43,57.95,1.666666666666667,1,1,0,0,13,1,3,1,1830.5,326087.56,111830.66,250654.19,0,0,0,2313.6035 +15448,18894,33657,33656,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.0668044,7.0915356,13,-1,-23.367891,0,1,1,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.077354,24.43,57.95,21.23,37.74,1.666666666666667,1,1,0,0,8,1,3,1,1830.5,326087.56,111830.66,250654.19,0,0,0,2313.6035 +15449,18895,33658,33659,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4485922,8.6366854,0,5,-11,23.971317,0,2,2,2021,11,0,40,45,1,0,0,13.707313,13.707313,.05,.05,0,0,0,0,0,0,0,0,0,1.6901456,0,54.2,57.49,52.82,53.97,6.666666666666667,1,1,0,0,9,5,5,1,1049.5,291556.28,464986.53,169941.03,131914.02,-258.75916,0,3909.3704 +15449,18895,33659,33658,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.2661219,8.4377651,0,5,11,1.0572834,0,3,2,2021,8,0,37,37,1,0,0,12.153475,12.153475,.05,.05,0,0,0,0,0,0,0,0,0,2.0984211,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,1049.5,291556.28,464986.53,169941.03,131914.02,-258.75916,0,3909.3704 +15450,18896,33660,-9,33662,33661,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.2949,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33661,33662,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.5384312,8.744873,0,19,-2,-60.684254,0,2,1,2021,6,1,48,-9,1,1,0,16.951088,16.951088,.05,.05,0,0,0,0,0,0,1,1,0,.32253781,0,62.39,56.71,52,54.51,10,4,2,0,0,10,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33662,33661,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.7031956,7.6006026,0,21,2,-36.985661,0,-9,2,2021,12,0,22,22,1,0,0,11.198003,11.198003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,62.39,56.71,8.333333333333334,1,1,0,0,10,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33663,-9,33662,33661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.40344,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15451,18897,33664,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.4676523,6.3011122,0,0,-957.51648,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2013054,6.5079994,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,1,337,325993.31,80015.945,192324.92,0,0,0,1337.7347 +15452,18898,33665,33666,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.2282658,9.1733255,0,14,-4,-46.694962,0,3,1,2021,8,0,60,55,1,0,0,15.527625,15.527625,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.59,38.88,37.58,43.78,8.333333333333334,1,1,0,0,14,9,5,1,602.5,2238633.5,1612015,347628.88,0,0,0,3701.7544 +15452,18898,33666,33665,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,14,4,-29.792259,0,3,1,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.58,43.78,62.59,38.88,5,1,1,1,0,8,9,5,1,602.5,2238633.5,1612015,347628.88,0,0,0,3701.7544 +15453,18899,33667,-9,33669,33668,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.1133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18899,33668,33669,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.5622997,8.5506268,0,10,6,-13.062597,-9,-9,-9,2021,6,0,40,0,1,0,0,17.725292,17.725292,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.36,54.24,8.333333333333334,1,1,0,0,12,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18899,33669,33668,33670,33671,1,0,33,0,3,0,2,2,-9,0,4,8.1664848,7.9534459,0,16,-6,55.544918,0,2,3,2021,7,0,43,20,1,0,0,6.7702875,6.7702875,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,57.16,56.15,10,1,1,0,0,6,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18900,33670,33671,-9,-9,1,0,54,0,3,0,2,2,-9,0,5,8.4527597,8.4841385,0,36,-4,97.206581,0,2,2,2021,8,0,45,49,1,0,0,8.4560165,8.4560165,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,11,11,3,1,1824.5,69303.813,165933.09,0,0,0,0,1515.3564 +15453,18900,33671,33670,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,6.2172761,6.2667742,36,4,37.787361,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7933435,6.4168682,52,54.51,57.06,57.76,10,1,1,0,0,6,11,3,1,1824.5,69303.813,165933.09,0,0,0,0,1515.3564 +15454,18901,33672,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-947.22534,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.3293762,0,0,1,1,0,0,0,53.11,14.78,-9,-9,10,1,1,0,0,0,5,1,0,1142,-15879.838,0,0,0,0,153.87724,1590.9968 +15455,18902,33673,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.2649112,7.0488334,0,0,-880.3562,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8171492,7.1565127,55.71,37.76,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,535,238058.47,292484.06,172693.91,0,0,0,3092.8767 +15456,18903,33674,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,8.0882769,7.8183813,0,0,-882.29254,0,3,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9372151,7.2980638,62.39,56.71,-9,-9,10,1,1,0,0,0,4,3,1,1174,729384.38,540037.69,95330.422,0,0,0,2002.4335 +15457,18904,33675,33676,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.3523631,7.381741,0,15,-17,-81.368874,0,2,2,2021,8,0,29,23,1,0,0,6.3199587,6.3199587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33676,33675,-9,-9,1,1,57,0,3,0,2,2,-9,0,4,8.8680229,8.8768759,0,14,17,-37.054657,0,2,2,2021,11,0,40,39,1,0,0,19.490736,19.490736,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33677,-9,33675,33676,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1070.246,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33678,-9,33675,33676,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-921.93011,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33679,-9,33675,33676,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-996.37933,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15458,18905,33680,33682,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.9113045,8.2280226,6.0930333,2,-5,29.37538,0,-9,-9,2021,7,0,30,0,1,0,0,11.187561,11.187561,.05,.05,.05,0,0,0,0,0,1,1,0,5.1896667,0,43.38,62.58,50.05,55.41,8.333333333333334,1,1,0,0,3,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15458,18905,33681,-9,33680,33682,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.6756,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15458,18905,33682,33680,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.2784834,8.496007,6.1441488,2,5,-22.620209,0,3,2,2021,9,0,50,50,1,0,0,8.0722008,8.0722008,.05,.05,.05,0,0,0,0,0,1,1,0,8.4739761,0,50.05,55.41,43.38,62.58,5,1,1,0,0,8,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15459,18906,33683,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7562752,8.4637966,7.2705722,0,0,-903.87231,-9,-9,-9,2021,5,0,38,0,1,0,0,15.496652,15.496652,.05,.05,0,0,0,0,0,0,1,1,0,7.6467881,0,52.97,53.97,-9,-9,8.333333333333334,2,3,0,0,11,9,4,1,174,808552.88,450188.09,343325.84,154604.83,0,0,2003.4314 +15460,18907,33684,-9,33685,33687,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6692,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33685,33687,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.366312,7.4479847,0,19,-6,28.82719,0,3,2,2021,6,0,45,48,1,0,0,4.3756533,4.3756533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33686,-9,33685,33687,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.35278,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33687,33685,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.5537176,8.4974041,0,21,6,-40.334789,0,3,3,2021,9,0,45,48,1,0,0,14.575104,14.575104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15461,18908,33688,33689,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,7,-3,93.214935,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3072562,0,53,47,51,46,7,1,1,0,0,0,13,2,1,816.5,350246.5,217746.22,115276.89,0,0,0,1399.1871 +15461,18908,33689,33688,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.495862,5.3746481,7,3,41.888077,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,11.956466,0,0,1,1,0,0,5.2671361,51,46,53,47,7,1,1,0,0,0,13,2,1,816.5,350246.5,217746.22,115276.89,0,0,0,1399.1871 +15462,18909,33690,-9,-9,-9,1,0,40,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1079.0491,0,3,3,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.05,30.31,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,694,64651.781,56112.832,0,0,1877.2367,0,545.92426 +15462,18909,33691,-9,33690,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.5621,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,694,64651.781,56112.832,0,0,1877.2367,0,545.92426 +15463,18910,33692,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.6088848,6.5859432,0,0,-1155.6503,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5460262,54,44,-9,-9,8,1,1,0,0,0,6,2,0,2347,431344.09,138550.39,180609.27,0,0,0,738.45276 +15464,18911,33693,33694,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7846146,7.7008586,0,10,5,63.915848,0,3,2,2021,12,0,25,20,1,0,0,11.137883,11.137883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,60.79,38.71,3.333333333333333,1,1,0,0,11,12,5,1,543,648781,222521.7,202106.48,0,0,0,2216.3003 +15464,18911,33694,33693,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.6625156,8.5662651,0,10,-5,46.452358,0,1,1,2021,2,0,39,40,1,0,0,16.365688,16.365688,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.79,38.71,47.15,55.39,8.333333333333334,1,1,0,0,13,12,5,1,543,648781,222521.7,202106.48,0,0,0,2216.3003 +15465,18912,33695,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.4636035,7.1231618,0,0,-1125.241,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,7.6204395,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,9,8,3,1,913,448403.28,293170.09,233580.58,0,0,0,966.88849 +15466,18913,33696,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,6.2310781,6.2187181,0,0,-897.38458,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4623694,6.3250113,58.22,40.76,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,410,146524.09,49558.426,253626.64,0,0,0,804.8587 +15467,18914,33697,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.4160175,9.7736788,0,7,0,28.192152,0,1,1,2021,12,1,47,47,1,1,0,39.50948,39.50948,.05,.05,0,0,0,0,0,0,0,0,0,3.3639863,0,45.81,61.51,41.53,63.13,8.333333333333334,1,1,0,0,8,7,5,1,445,28208.666,42595.816,0,0,0,0,4546.0151 +15467,18915,33698,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.0884371,8.2787819,0,7,0,16.17844,0,2,1,2021,12,0,36,36,1,0,0,10.157422,10.157422,.05,.05,0,0,0,0,0,0,0,0,0,4.8797517,0,41.53,63.13,45.81,61.51,8.333333333333334,1,1,0,0,7,7,5,1,377,-76976.078,107875.8,0,0,0,0,1777.6719 +15468,18916,33699,33701,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.9596109,8.8239641,0,10,10,125.01004,0,-9,-9,2021,8,0,52,55,1,0,0,12.735205,12.735205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.82,57.72,8.333333333333334,1,1,0,0,12,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15468,18916,33700,-9,33701,33699,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.8429,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15468,18916,33701,33699,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.3374801,7.4673963,0,27,-10,1.8063678,0,2,2,2021,12,0,23,22,1,0,0,7.4952846,7.4952846,.05,.05,0,0,0,0,0,0,1,1,0,1.7919481,0,41.82,57.72,57.33,53.46,8.333333333333334,1,1,0,0,12,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15469,18917,33702,33703,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.2795582,6.2915039,61,-1,-36.001606,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,27.087246,0,0,1,1,0,3.4177375,6.1528263,49.97,43.12,57.09,24.97,10,1,1,0,0,0,6,2,1,712,460217.75,46134.102,358058.22,0,0,0,1939.7255 +15469,18917,33703,33702,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,61,1,119.82528,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.09,24.97,49.97,43.12,10,1,1,0,0,0,6,2,1,712,460217.75,46134.102,358058.22,0,0,0,1939.7255 +15470,18918,33704,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.1635151,6.0677876,0,0,-1012.8217,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.2911625,0,0,1,1,0,0,6.5480223,65.73999999999999,22.13,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,670,256297.36,128624.17,147754.09,0,0,0,1569.0062 +15471,18919,33705,-9,33706,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-973.28076,-9,3,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.08,50.51,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,376,-41973.973,0,0,0,0,0,1816.2419 +15471,18919,33706,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1051.6906,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,1.666666666666667,1,1,1,1,0,6,1,0,376,-41973.973,0,0,0,0,0,1816.2419 +15471,18920,33707,-9,33706,-9,1,0,20,0,1,0,2,2,-9,0,2,0,0,0,0,0,-873.47815,-9,3,-9,2021,21,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.71,46.76,-9,-9,3.333333333333333,1,1,1,0,0,6,1,0,367,150320.3,0,0,0,0,0,1410.1078 +15471,18921,33708,33709,33706,-9,1,1,22,0,1,0,3,3,-9,0,4,8.432848,8.3253946,0,2,3,25.751234,0,3,-9,2021,11,0,30,0,1,0,0,13.429328,13.429328,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,56.1,49.93,5,1,1,0,0,0,6,3,0,710,-18364.695,0,0,0,18035.449,0,1888.7512 +15471,18921,33709,33708,-9,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,2,-3,-15.192385,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,45.91,59.89,8.333333333333334,1,1,1,0,0,6,3,0,710,-18364.695,0,0,0,18035.449,0,1888.7512 +15472,18922,33710,-9,-9,-9,1,0,29,0,0,0,1,1,-9,1,1,0,0,0,0,0,-883.39355,0,-9,-9,2021,31,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.36,18.82,-9,-9,1.666666666666667,1,1,0,0,6,8,1,1,276,-21869.604,0,0,0,0,0,-1433.7014 +15473,18923,33711,33712,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2579889,8.7070379,0,32,-6,-104.52023,0,1,1,2021,6,0,37,47,1,0,0,14.853807,14.853807,0,0,0,0,0,0,0,7,0,0,0,1.3347764,0,43.05,44.78,48.45,49.46,6.666666666666667,1,1,0,0,9,11,4,1,383.5,1435712.5,915011.25,376389.81,0,0,0,1592.9586 +15473,18923,33712,33711,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,34,6,-15.736822,0,2,2,2021,1,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0455742,0,48.45,49.46,43.05,44.78,8.333333333333334,1,1,0,0,9,11,4,1,383.5,1435712.5,915011.25,376389.81,0,0,0,1592.9586 +15474,18924,33713,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.2720151,6.9256306,0,0,-1041.5775,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6617336,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,257,53947.602,136064.08,129570.03,0,0,0,1023.9099 +15475,18925,33714,33715,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.008822,5.7423692,21,-2,-38.51931,0,3,3,2021,24,12,0,28,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6287184,26.23,44.72,54.64,47.79,8.333333333333334,1,1,0,0,10,1,3,1,438.5,803775.25,373155.75,272608.28,0,0,0,1011.7347 +15475,18925,33715,33714,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.3367496,7.1477108,7,2,-33.878113,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0557709,7.4232054,54.64,47.79,26.23,44.72,0,1,1,0,0,0,1,3,1,438.5,803775.25,373155.75,272608.28,0,0,0,1011.7347 +15476,18926,33716,33719,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.2213087,8.4485359,0,2,8,50.863499,-9,-9,-9,2021,11,0,60,0,1,0,0,6.570178,6.570178,.05,.05,0,0,0,0,0,0,1,1,0,6.7757864,0,50.91,46.91,26.77,49.77,6.666666666666667,3,4,0,0,1,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33717,-9,33719,33716,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1027.057,-9,1,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,3.333333333333333,3,4,1,0,0,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33718,-9,33719,33716,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.89117,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.011529217,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33719,33716,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.0337124,9.0098162,0,2,-8,-88.889099,0,3,1,2021,14,2,48,18,1,2,0,15.967722,15.967722,0,0,0,0,0,0,0,0,1,1,0,0,0,26.77,49.77,50.91,46.91,5,3,4,0,1,13,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15477,18927,33720,33721,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.0263128,8.9516611,0,12,2,-5.3129215,0,3,3,2021,9,1,39,45,1,1,0,22.131275,22.131275,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.6,51.61,32.24,50.05,6.666666666666667,1,1,0,0,13,11,5,1,196.5,454150.75,283190.72,202509.75,56797.551,0,0,3445.0203 +15477,18927,33721,33720,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.9975367,7.0741682,0,12,-2,-84.516701,0,1,2,2021,10,0,16,16,1,0,0,6.9926109,6.9926109,0,0,0,0,0,0,0,0,0,0,0,0,0,32.24,50.05,43.6,51.61,8.333333333333334,1,1,0,0,13,11,5,1,196.5,454150.75,283190.72,202509.75,56797.551,0,0,3445.0203 +15478,18928,33722,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.0129547,7.1080065,0,0,-1004.5608,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6489196,7.0556779,60.02,56.42,-9,-9,10,1,1,0,0,0,10,2,1,338,473294.44,98438.422,342825.97,0,0,0,1781.3008 +15479,18929,33723,-9,33726,33725,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-808.51147,-9,2,1,2021,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.06,60.84,-9,-9,10,1,1,0,0,0,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33724,-9,33726,33725,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.5127,-9,2,1,2021,23,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.55,68.68000000000001,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33725,33726,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.6560221,9.447608,0,13,-4,-71.807777,0,-9,-9,2021,7,0,40,40,1,0,0,46.606071,46.606071,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.18,49.48,8.333333333333334,1,1,0,0,14,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33726,33725,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,0,0,22,4,50.842796,0,2,1,2021,14,3,0,15,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.18,49.48,54.69,57.47,8.333333333333334,1,1,0,0,11,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15480,18930,33727,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,8.5565205,8.7362585,0,0,0,-826.55377,-9,-9,-9,2021,11,4,51,0,1,4,0,9.8015451,9.8015451,0,0,0,0,0,0,0,0,0,0,0,5.0091448,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,3,2,5,0,249,43215.574,0,0,0,0,0,1729.718 +15481,18931,33728,33729,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.56005,8.4498911,0,23,1,-47.434669,0,2,2,2021,11,1,40,60,1,1,0,15.425081,15.425081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,33.31,56.08,8.333333333333334,1,1,0,0,12,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15481,18931,33729,33728,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,6.6010141,6.5749011,0,23,-1,-45.27713,0,2,2,2021,16,4,25,32,1,4,0,2.7048128,2.7048128,0,0,0,0,0,0,0,0,0,0,0,2.2062435,0,33.31,56.08,44.19,58.01,8.333333333333334,1,1,0,0,12,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15481,18931,33730,-9,33729,33728,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.3619,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.045182191,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15482,18932,33731,33732,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.9389281,5.6486797,48,0,-68.11042,0,3,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3111094,5.572823,28.88,53,29.66,59.03,3.333333333333333,1,1,0,0,3,11,2,1,559,447507.19,0,248796.28,0,0,0,1859.1665 +15482,18932,33732,33731,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,48,0,50.297855,0,3,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.66,59.03,28.88,53,6.666666666666667,1,1,0,0,0,11,2,1,559,447507.19,0,248796.28,0,0,0,1859.1665 +15483,18933,33733,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,4.1190977,4.6149902,0,0,-1104.2295,0,-9,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,6.0180273,6.7063713,62.906433,0,1,1,0,0,4.5207076,58.22,25.35,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1283,100855.67,-53098.117,58377.523,0,0,0,396.18756 +15484,18934,33734,-9,33737,33736,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.2635,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33735,-9,33737,33736,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.25122,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33736,33737,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.4846106,8.7201529,0,1,0,-19.93741,0,-9,-9,2021,25,10,60,45,1,10,0,9.3921642,9.3921642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.39,45.65,36.33,59.23,6.666666666666667,1,1,0,0,7,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33737,33736,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.2314963,7.599112,0,1,0,15.378397,-9,-9,-9,2021,10,0,30,0,1,0,0,8.2375889,8.2375889,0,0,0,0,0,0,0,42,1,1,0,0,0,36.33,59.23,38.39,45.65,8.333333333333334,1,1,0,0,8,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15485,18935,33738,-9,33740,33739,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-933.72754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15485,18935,33739,33740,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.8721647,8.8212032,7.0756445,20,-2,115.86713,0,2,2,2021,14,3,45,44,1,3,0,14.110615,14.110615,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0348887,39.09,60.15,45.69,38.37,8.333333333333334,1,1,0,0,11,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15485,18935,33740,33739,-9,-9,1,0,55,0,1,0,2,2,-9,0,5,7.2657485,7.7170029,0,22,2,97.293159,0,2,2,2021,11,2,33,35,1,2,0,6.7406664,6.7406664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,38.37,39.09,60.15,8.333333333333334,1,1,0,0,11,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15486,18936,33741,33742,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.7054749,7.0241055,10,-3,-45.754948,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6605983,49.6,40.69,57.33,53.46,8.333333333333334,1,1,0,0,2,9,3,1,1531.5,1150682,343163.84,617141.38,0,0,0,3067.7568 +15486,18936,33742,33741,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.679935,7.6336317,10,3,-2.4108222,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9073915,7.9331236,57.33,53.46,49.6,40.69,8.333333333333334,1,1,0,0,4,9,3,1,1531.5,1150682,343163.84,617141.38,0,0,0,3067.7568 +15487,18937,33743,33744,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.2761707,8.2641106,0,1,3,119.31665,0,-9,-9,2021,14,3,44,43,1,3,0,10.084118,10.084118,.05,.05,.05,0,0,0,0,0,0,0,0,4.3345022,0,31.04,62.55,48.87,58.55,5,1,1,0,0,7,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15487,18937,33744,33743,-9,-9,1,0,27,0,1,0,1,1,-9,0,4,8.3292542,8.5851936,0,1,-3,7.3756313,-9,-9,-9,2021,8,2,43,0,1,2,0,11.872803,11.872803,.05,.05,0,0,0,0,0,0,0,0,0,4.3449244,0,48.87,58.55,31.04,62.55,8.333333333333334,1,1,0,0,0,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15487,18937,33745,-9,-9,33743,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.40814,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15488,18938,33746,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.6533804,7.7001882,0,0,0,-1088.2432,0,3,2,2021,5,0,21,21,1,0,0,9.1755619,9.1755619,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,11,11,3,1,640,-132684.16,72836.898,0,0,0,0,1704.5867 +15489,18939,33747,33749,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.6590819,7.6140466,0,19,1,137.25133,0,2,2,2021,6,0,23,23,1,0,0,11.801582,11.801582,.05,.05,0,0,0,0,0,0,1,1,0,.49265546,0,57.06,57.76,49.34,58.54,6.666666666666667,1,1,0,0,12,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15489,18939,33748,-9,33747,33749,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.56824,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15489,18939,33749,33747,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,9.0067148,8.8015461,0,10,-1,-22.093576,0,-9,-9,2021,8,0,45,36,1,0,0,19.618099,19.618099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,57.06,57.76,8.333333333333334,1,1,0,0,12,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15490,18940,33750,-9,33751,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0349,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15490,18940,33751,-9,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,6.9626274,7.0168819,0,0,0,-1103.1636,0,2,2,2021,0,0,16,16,1,0,0,8.785305,8.785305,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,13,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15490,18940,33752,-9,33751,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5486,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15491,18941,33753,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.1606,0,3,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,2,4,1,0,1474,159625.95,0,0,0,0,0,1016.6389 +15491,18942,33754,-9,-9,33757,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1041.1095,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33755,-9,-9,33757,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-903.46912,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33756,-9,-9,33757,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1078.3138,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33757,-9,33753,-9,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-931.89679,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15492,18943,33758,33759,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,6.7750444,6.8424292,0,7,-11,-93.097649,0,-9,-9,2021,9,1,25,25,1,1,0,3.974504,3.974504,0,0,0,0,0,0,0,0,1,1,0,0,0,48.96,60.26,35.68,56.37,8.333333333333334,1,1,0,0,8,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33759,33758,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,9.5004511,9.8341494,0,7,11,-108.90775,0,1,2,2021,14,4,45,43,1,4,0,28.187258,28.187258,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.68,56.37,48.96,60.26,6.666666666666667,1,1,0,0,13,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33760,-9,33758,33759,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.78784,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33761,-9,33758,33759,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7838,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15493,18944,33762,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,3.9943843,3.9613321,0,0,-1014.2623,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7141933,3.8548293,59.46,46.99,-9,-9,10,1,1,0,0,0,7,2,1,297,539206.56,0,508055.44,0,0,517.08728,899.77094 +15494,18945,33763,-9,33765,33766,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.3844,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33764,-9,33765,33766,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7175,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33765,33766,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,6.6497555,6.6925297,0,5,-1,57.427883,0,-9,-9,2021,13,2,16,0,1,2,0,6.5045371,6.5045371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,2,3,0,0,2,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33766,33765,-9,-9,1,1,28,1,3,0,1,1,-9,0,4,9.079093,8.9745884,0,5,1,13.339643,0,3,3,2021,7,0,38,37,1,0,0,23.107471,23.107471,.05,.05,.05,0,0,0,0,0,1,1,0,7.2871251,0,57.16,56.15,54.79,55.86,8.333333333333334,2,3,0,0,10,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33767,-9,33765,33766,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-927.12244,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.25780478,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15495,18946,33768,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1116.8015,0,-9,-9,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,39,-9,-9,6,2,3,0,1,0,8,2,0,517,-53482.344,0,0,0,0,0,47.250309 +15495,18947,33769,-9,33768,-9,1,1,27,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1073.6013,-9,3,-9,2021,36,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,45.72,37.22,-9,-9,2,2,3,0,0,0,8,1,0,3623,-25136.59,0,0,0,0,0,0 +15496,18948,33770,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-966.39697,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.48,31.91,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,487,23127.166,0,0,0,0,145.72356,677.01495 +15497,18949,33771,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9477339,7.8316631,0,0,0,-1049.3618,0,2,3,2021,18,6,47,43,1,6,0,7.0041747,7.0041747,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.54,57.54,-9,-9,5,1,1,0,0,7,13,4,0,3000,75627.719,-18556.365,0,0,0,0,1585.1987 +15498,18950,33772,33773,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6849518,7.4194551,48,3,-56.604855,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.3818903,7.8671732,57.16,56.15,53.9,52.09,8.333333333333334,1,1,0,0,4,7,3,1,321,503237.16,273215.47,0,0,0,1115.1555,2752.1055 +15498,18950,33773,33772,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.5896616,7.5109048,48,-3,-17.626812,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.14794227,7.3534627,53.9,52.09,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,321,503237.16,273215.47,0,0,0,1115.1555,2752.1055 +15499,18951,33774,33775,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.023716,7.1924415,46,-2,85.89492,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5341773,6.7946858,60.06,39.82,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,349,1175446,605907.88,468307.41,0,0,0,2779.562 +15499,18951,33775,33774,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.7295122,7.7004108,46,2,60.132526,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8304152,7.4572659,57.16,56.15,60.06,39.82,8.333333333333334,1,1,0,0,0,9,3,1,349,1175446,605907.88,468307.41,0,0,0,2779.562 +15500,18952,33776,33777,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9895158,5.1840606,40,-4,-79.824966,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.9384007,5.3044348,46.65,55.59,51.24,58.84,6.666666666666667,1,1,0,0,6,9,3,1,450,843855.5,172402.91,541885.5,0,0,0,2916.2754 +15500,18952,33777,33776,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1317978,7.6103497,40,4,140.42778,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,7.1341457,7.7508297,51.24,58.84,46.65,55.59,10,1,1,0,0,5,9,3,1,450,843855.5,172402.91,541885.5,0,0,0,2916.2754 +15501,18953,33778,33779,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.2486567,7.5636163,0,34,7,-74.577873,0,3,3,2021,11,0,24,24,1,0,0,6.4632716,6.4632716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.97,49.09,51,54,8.333333333333334,2,3,0,0,8,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18953,33779,33778,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,34,-7,83.02478,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,52.97,49.09,8,2,3,0,0,0,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18953,33780,-9,33779,33778,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.10315,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18954,33781,-9,33779,33778,1,0,23,0,1,0,2,2,-9,0,3,8.2055054,8.6857491,0,0,0,-1034.7806,0,3,3,2021,11,2,48,40,1,2,1,10.961309,10.961309,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,59.59,-9,-9,5,2,3,0,0,5,8,5,1,1556,-12346.693,168276.48,0,0,0,0,648.27368 +15501,18955,33782,-9,33779,33778,1,0,29,0,1,0,1,1,-9,0,5,7.671946,7.5972915,0,0,0,-901.96338,-9,3,3,2021,12,3,22,0,1,3,1,13.898204,13.898204,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.88,61.57,-9,-9,8.333333333333334,2,3,0,0,9,8,3,1,87,-108582.95,-55790.398,0,0,1078.4753,0,426.91022 +15502,18956,33783,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1020.3285,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.473112,0,0,1,1,0,0,0,55.19,39.8,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,339,329186.56,0,0,0,0,685.77032,807.26605 +15503,18957,33784,33785,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.88095,8.8367224,0,10,0,41.224487,-9,2,2,2021,10,0,37,0,1,0,0,21.23506,21.23506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,49.61,54.24,8.333333333333334,1,1,0,0,13,10,5,1,1186.5,503080,256137.16,123427.81,65496.531,5967.9893,0,4461.7354 +15503,18957,33785,33784,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.551878,8.4361076,0,10,0,38.38884,0,2,2,2021,9,0,40,38,1,0,0,14.699504,14.699504,.05,.05,0,0,0,0,0,0,0,0,0,6.5345807,0,49.61,54.24,51.94,55.88,8.333333333333334,1,1,0,0,12,10,5,1,1186.5,503080,256137.16,123427.81,65496.531,5967.9893,0,4461.7354 +15503,18958,33786,-9,33784,33785,1,1,23,0,0,0,1,1,1,0,4,8.3932848,8.3241224,5.6841059,0,0,-1056.2203,-9,2,1,2021,4,0,25,0,1,0,1,15.540603,15.540603,0,0,0,0,0,0,0,0,0,0,0,5.8556876,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,918,-103355.5,0,0,0,0,0,952.26202 +15504,18959,33787,-9,33788,33789,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2634,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18959,33788,33789,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,8,-3,30.94269,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.07,51.46,48.87,58.55,5,1,1,0,0,0,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18959,33789,33788,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3269453,9.2965527,0,8,3,61.646072,0,2,2,2021,7,0,35,40,1,0,0,43.307323,43.307323,.05,.05,0,0,0,0,0,0,1,1,0,6.8772697,0,48.87,58.55,44.07,51.46,8.333333333333334,1,1,0,0,11,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18960,33790,-9,33788,33789,1,0,19,0,2,0,2,2,-9,0,3,8.0301437,8.038393,0,0,0,-955.29785,0,2,2,2021,11,0,40,18,1,0,1,10.916763,10.916763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,657,-107328.77,-11629.092,0,0,0,0,994.56738 +15505,18961,33791,-9,33792,33793,1,0,20,0,0,0,2,2,-9,0,3,7.6512218,7.8820314,0,0,0,-1062.9968,0,2,3,2021,12,0,40,35,1,0,1,6.7161794,6.7161794,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,49.31,-9,-9,5,2,3,0,0,3,8,3,0,702,125130.25,0,0,0,0,0,1010.525 +15505,18962,33792,33793,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9882979,8.3085299,0,8,-13,-65.180786,0,-9,3,2021,11,2,35,45,1,2,0,10.942926,10.942926,0,0,0,0,0,0,0,27,1,1,0,0,0,57.27,33.21,46.26,18.23,3.333333333333333,2,3,0,1,11,8,3,0,1487.5,613804.38,51333.961,519122.03,57190.398,0,0,2005.9771 +15505,18962,33793,33792,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,8,13,52.62532,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.26,18.23,57.27,33.21,8.333333333333334,2,3,1,1,0,8,3,0,1487.5,613804.38,51333.961,519122.03,57190.398,0,0,2005.9771 +15506,18963,33794,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.4285059,8.4893436,0,0,0,-1133.1323,0,2,2,2021,8,0,43,41,1,0,0,14.076885,14.076885,.05,.05,0,0,0,0,0,2,0,0,0,6.5926838,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,13,10,5,1,363,80048.766,88141.672,0,0,4527.6382,0,1673.0314 +15507,18964,33795,33796,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3621674,8.5613832,6.4661193,12,0,-7.4583807,0,2,2,2021,10,2,40,42,1,2,0,17.363617,17.363617,0,0,0,0,0,0,0,7,0,0,0,1.7682842,6.6904216,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,13,12,5,1,1372,735953.25,314505.25,299884.75,0,0,0,3522.845 +15507,18964,33796,33795,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.934545,7.9153333,6.4595294,12,0,-119.78565,0,3,3,2021,6,0,36,45,1,0,0,8.4838028,8.4838028,.05,.05,.05,0,0,0,0,0,0,0,0,0,6.7005892,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,13,12,5,1,1372,735953.25,314505.25,299884.75,0,0,0,3522.845 +15508,18965,33797,33798,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7819176,8.0988874,0,10,15,-118.78069,0,-9,-9,2021,10,0,60,60,1,1,0,4.76091,4.76091,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,50.55,16.08,7,1,1,0,0,13,8,3,1,222,841799.88,255630.44,364319.53,0,0,0,1930.3503 +15508,18965,33798,33797,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,18,-15,1.4231468,0,1,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.55,16.08,50,49,8.333333333333334,4,2,1,0,9,8,3,1,222,841799.88,255630.44,364319.53,0,0,0,1930.3503 +15508,18966,33799,-9,33798,33797,1,1,20,0,0,0,2,2,-9,0,4,8.0505247,8.335928,0,0,0,-953.60449,0,1,1,2021,11,0,40,0,1,2,1,9.6758795,9.6758795,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,1,8,4,1,364,-162611.75,-7534.3237,0,0,0,0,2206.5759 +15509,18967,33800,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.9313235,7.9008813,0,0,0,-1054.6655,0,2,2,2021,8,0,40,40,1,0,0,8.0050659,8.0050659,0,0,0,0,0,0,0,0,0,0,0,3.6958148,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,1008,112931.84,232899.14,51447.148,121927.73,0,0,1004.8403 +15509,18968,33801,-9,33800,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4550958,7.6764088,0,0,0,-950.20587,0,2,-9,2021,11,3,35,35,1,3,1,6.997632,6.997632,0,0,0,0,0,0,0,0,0,0,0,2.5393629,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,550,-17324.102,0,0,0,0,0,597.86957 +15510,18969,33802,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.8342357,8.297533,7.7080407,0,0,-942.76556,0,3,3,2021,8,0,39,39,1,0,0,8.3911352,8.3911352,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5114818,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,502,1443286.4,958184.94,359568.63,0,0,0,2355.1572 +15511,18970,33803,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-895.03821,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.73,35.38,-9,-9,10,1,1,0,0,0,10,1,0,1115,-37769.598,0,0,0,0,0,1192.5623 +15512,18971,33804,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1048.4492,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5560974,0,21.310408,0,1,1,0,0,0,35.46,15.4,-9,-9,0,1,1,0,0,0,13,1,0,559,0,0,0,0,0,0,1380.4 +15513,18972,33805,33806,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.3233347,9.4939556,0,28,12,-28.710413,0,3,2,2021,6,0,38,38,1,0,0,34.127529,34.127529,.05,.05,0,0,0,0,0,0,0,0,0,6.0643411,0,51.83,57.2,41.76,57.81,8.333333333333334,1,1,0,0,12,12,5,1,814,1985561,968631.38,510474.94,97416.148,0,0,7081.6777 +15513,18972,33806,33805,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.1947851,9.3316545,0,28,-12,-67.506874,0,2,2,2021,9,0,41,43,1,0,0,29.485193,29.485193,0,0,0,0,0,0,0,0,0,0,0,1.4734887,0,41.76,57.81,51.83,57.2,6.666666666666667,1,1,0,0,12,12,5,1,814,1985561,968631.38,510474.94,97416.148,0,0,7081.6777 +15514,18973,33807,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1021891,8.3688049,8.6452503,0,0,-1025.7125,0,2,2,2021,7,0,25,25,1,0,0,5.7426829,5.7426829,0,0,0,0,0,0,0,0,0,0,0,0,8.0785284,45.17,51.16,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,2905,41444.836,0,0,0,0,0,2399.7117 +15515,18974,33808,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.4971042,7.6629062,0,0,-984.55573,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7862844,7.7540903,46.26,42.16,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1815,464794.81,146771.73,163591.45,0,0,0,2556.8357 +15516,18975,33809,33811,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,7.8840752,7.9120994,0,5,-8,-45.259373,0,-9,-9,2021,7,0,36,36,1,0,0,6.2045212,6.2045212,0,0,0,0,0,0,0,2,1,1,0,0,0,47.33,58,60.02,56.42,8.333333333333334,1,1,0,0,5,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15516,18975,33810,-9,33809,33811,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.42743,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15516,18975,33811,33809,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,9.0130787,9.0893688,0,5,8,38.564404,0,2,2,2021,10,0,40,45,1,0,0,24.927906,24.927906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,47.33,58,8.333333333333334,1,1,0,0,6,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15517,18976,33812,33813,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.7400908,7.7368398,0,12,1,8.376996,0,3,3,2021,18,6,30,31,1,6,0,8.9408092,8.9408092,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,36.78,61.12,51.57,6.666666666666667,1,1,0,0,13,11,4,0,850,2283076.5,1339336.3,419581.28,0,0,0,2317.4045 +15517,18976,33813,33812,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8780713,8.2540846,5.178237,12,-1,-59.599941,0,2,2,2021,6,0,25,25,1,0,0,15.214618,15.214618,0,0,.05,0,0,0,0,0,0,0,0,0,5.575716,61.12,51.57,35.75,36.78,8.333333333333334,1,1,0,0,12,11,4,0,850,2283076.5,1339336.3,419581.28,0,0,0,2317.4045 +15518,18977,33814,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.233151,6.2825899,0,0,-972.63019,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4074187,39.21,56.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,608,271329.72,40606.922,0,0,0,0,221.36563 +15519,18978,33815,33816,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.1338987,6.0289755,7,17,30.912144,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3777218,43.33,55.91,19.21,61.32,8.333333333333334,1,1,0,0,7,4,2,1,1978,615006.63,373204.38,216254.7,0,0,0,1201.0608 +15519,18978,33816,33815,-9,-9,1,0,52,0,0,0,1,1,-9,1,4,0,0,0,7,-17,25.632242,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73320508,0,19.21,61.32,43.33,55.91,6.666666666666667,1,1,0,0,0,4,2,1,1978,615006.63,373204.38,216254.7,0,0,0,1201.0608 +15520,18979,33817,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7851558,6.8296847,0,0,-962.83978,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7395635,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,2,9,2,1,2504,872318.63,178607.25,381569.28,0,0,0,541.62152 +15521,18980,33818,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.6807704,7.9563923,0,0,0,-1036.1366,0,2,3,2021,13,1,35,35,1,1,0,9.0777864,9.0777864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,50.6,-9,-9,5,2,3,0,0,12,2,3,1,850,32667.648,-7058.9326,91101.703,7681.8032,0,0,1730.5713 +15521,18980,33819,-9,33818,-9,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-968.95929,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.92,38.1,-9,-9,5,2,3,1,0,0,2,3,1,850,32667.648,-7058.9326,91101.703,7681.8032,0,0,1730.5713 +15521,18981,33820,-9,33818,-9,1,1,32,0,1,0,2,2,-9,0,3,7.8292632,8.379282,0,0,0,-1004.8244,-9,2,2,2021,6,0,45,0,1,0,1,7.2631154,7.2631154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,14,2,4,1,509,140446.81,121386.75,0,0,0,0,991.00806 +15521,18982,33821,-9,33818,-9,1,1,30,0,1,0,1,1,-9,0,2,8.4845829,8.6619921,0,0,0,-956.29126,-9,2,2,2021,6,0,45,0,1,0,1,10.185312,10.185312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.52,42.41,-9,-9,8.333333333333334,2,3,0,0,13,2,4,1,612,102630.95,51580.023,190609.31,70450.594,4945.4849,1423.7303,2756.0439 +15521,18983,33822,-9,33818,-9,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-837.25006,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3466864,0,48.73,45.06,-9,-9,5,2,3,0,0,4,2,1,1,1819,0,0,0,0,0,0,1050.444 +15522,18984,33823,33825,-9,-9,1,0,41,0,0,0,3,3,-9,0,3,8.5499859,8.2369633,0,1,-8,21.900774,-9,-9,-9,2021,11,0,37,0,1,0,0,12.964581,12.964581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,40.64,52.96,6.666666666666667,1,1,0,0,1,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15522,18984,33824,-9,33823,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1011.7045,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.24,62.14,-9,-9,8.333333333333334,4,2,0,0,1,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15522,18984,33825,33823,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,9.3813753,8.9749441,0,1,8,-1.8749323,-9,-9,-9,2021,18,6,50,0,1,6,0,17.699787,17.699787,.05,.05,0,0,0,0,0,0,1,1,0,7.3413439,0,40.64,52.96,52.65,51.64,6.666666666666667,1,1,0,0,13,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15523,18985,33826,-9,33827,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1086.2982,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,920.5,104633.66,69015.445,0,0,0,0,2157.8267 +15523,18985,33827,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.260705,8.38902,0,0,0,-888.77069,0,3,2,2021,12,0,40,38,1,0,0,10.959836,10.959836,.05,.05,0,0,0,0,0,7,1,1,0,4.8899932,0,47.24,53.95,-9,-9,6.666666666666667,1,1,0,0,13,5,4,1,920.5,104633.66,69015.445,0,0,0,0,2157.8267 +15524,18986,33828,-9,-9,33829,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1115.0735,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,2164.5,783652.25,288990.81,469006.44,0,0,0,862.07648 +15524,18986,33829,-9,-9,-9,1,1,66,0,1,0,2,2,-9,0,4,0,6.2854476,6.1602736,0,0,-1017.3425,0,3,1,2021,6,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8900604,62.49,55.09,-9,-9,6.666666666666667,3,4,0,0,11,8,2,0,2164.5,783652.25,288990.81,469006.44,0,0,0,862.07648 +15525,18987,33830,33832,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.9543724,8.4678478,0,10,1,-161.55016,0,3,3,2021,18,7,56,48,1,7,0,7.3761039,7.3761039,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,35.43,53.94,18.78,5,1,1,0,0,10,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15525,18987,33831,-9,33830,33832,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1035.1564,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15525,18987,33832,33830,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0972586,8.5379181,0,10,-1,-94.421127,0,2,1,2021,11,4,38,37,1,4,0,12.238923,12.238923,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,53.94,18.78,46.95,35.43,3.333333333333333,1,1,0,0,11,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15526,18988,33833,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.172327,8.4233246,6.6380458,0,0,-961.15228,0,3,2,2021,8,0,33,18,1,0,0,10.487516,10.487516,.05,.05,0,0,0,0,0,0,0,0,0,6.6813717,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,994,258394.33,284978.03,138406.97,0,0,0,1991.1229 +15526,18989,33834,-9,33833,-9,1,1,23,0,0,0,2,2,-9,0,3,6.3033118,6.1847672,0,0,0,-929.84827,0,2,2,2021,17,6,30,8,1,6,1,2.2462192,2.2462192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,-9,-9,5,1,1,0,1,3,12,2,1,1303,-106645.7,22670.654,0,0,0,0,943.66302 +15526,18990,33835,-9,33833,-9,1,0,19,0,0,0,2,2,-9,0,3,6.1473637,6.1885557,0,0,0,-1093.139,0,2,-9,2021,18,5,12,0,1,5,1,4.0527253,4.0527253,0,0,0,0,0,0,0,0,0,0,0,3.2223282,0,26.09,63.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,336,65544.516,0,0,0,0,0,41.491398 +15527,18991,33836,33838,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.1980915,8.0732746,0,9,-6,-29.722635,0,2,-9,2021,9,0,21,44,1,0,0,16.375326,16.375326,.05,.05,0,0,0,0,0,0,1,1,0,2.3020799,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,10,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15527,18991,33837,-9,33836,33838,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1045.5353,-9,1,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15527,18991,33838,33836,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8542519,8.9848213,0,9,6,34.1707,0,3,3,2021,6,0,104,48,1,0,0,7.9985085,7.9985085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,10,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15528,18992,33839,33840,-9,-9,1,0,37,0,0,0,3,3,-9,1,4,0,0,0,6,-2,51.93462,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,2,0,350,1019.7656,0,0,0,0,0,2347.0122 +15528,18992,33840,33839,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.3902407,7.4564037,0,6,2,-60.635506,-9,-9,-9,2021,9,0,30,0,1,1,0,6.5625095,6.5625095,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,5,2,0,350,1019.7656,0,0,0,0,0,2347.0122 +15529,18993,33841,33842,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,0,0,0,13,4,-4.2872844,0,3,2,2021,23,11,0,11,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.13,61.81,55.36,51.57,3.333333333333333,2,3,1,0,11,5,3,1,268,174465.06,59939.531,130616.35,12670.145,0,0,1802.553 +15529,18993,33842,33841,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.0059614,8.2300301,0,9,-4,163.18777,0,3,2,2021,12,0,40,60,1,0,0,9.8684254,9.8684254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,22.13,61.81,6.666666666666667,2,3,0,0,10,5,3,1,268,174465.06,59939.531,130616.35,12670.145,0,0,1802.553 +15530,18994,33843,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.1273155,8.9387846,0,0,0,-856.95673,0,1,2,2021,16,4,42,49,1,4,0,25.446095,25.446095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,520,296381.34,177094.84,0,0,2471.8928,718.24243,2694.0352 +15531,18995,33844,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6604137,8.8803568,7.2480063,0,0,-1129.3011,0,2,1,2021,8,0,49,50,1,0,0,11.470224,11.470224,.05,.05,0,0,0,0,0,7,1,1,0,7.0681462,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,227,1508388.5,1203080.9,193963.13,0,0,0,3422.6677 +15532,18996,33845,33846,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,59,-1,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,6.5393882,0,0,1,1,0,0,0,42.61,46.91,48.75,47.6,1.666666666666667,1,1,0,0,0,2,1,0,475.5,236260.81,0,133758.95,0,0,0,1455.8671 +15532,18996,33846,33845,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.75,47.6,42.61,46.91,1.666666666666667,1,1,0,0,0,2,1,0,475.5,236260.81,0,133758.95,0,0,0,1455.8671 +15533,18997,33847,33848,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,7.7077808,7.82971,52,3,149.16811,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96623391,8.0345078,60.02,56.42,57.06,57.76,10,1,1,0,0,0,5,3,1,360,1076314.8,727710.13,242040.97,0,0,135.2892,2165.4199 +15533,18997,33848,33847,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,52,-3,84.334854,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.02,56.42,10,1,1,0,0,0,5,3,1,360,1076314.8,727710.13,242040.97,0,0,135.2892,2165.4199 +15534,18998,33849,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1056.632,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.92,27.93,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,202,29186.602,0,0,0,0,0,1310.649 +15534,18999,33850,-9,-9,33849,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1021.894,1,-9,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,2645,-33367.016,0,0,0,0,0,341.04102 +15535,19000,33851,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.6842761,7.2738252,0,0,-1067.649,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.827528,6.9635057,47.53,49.72,-9,-9,10,1,1,0,0,0,11,2,1,605,187923.19,37179.281,171760.23,0,0,0,1337.5374 +15536,19001,33852,33853,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,12,1,-61.194981,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3246274,0,61.46,32.8,47.74,22.5,8.333333333333334,1,1,0,0,0,2,2,1,1012.5,110838.32,107726.07,80883.836,0,0,0,1547.1453 +15536,19001,33853,33852,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.1584368,5.137517,12,-1,-55.817719,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5682821,47.74,22.5,61.46,32.8,5,1,1,0,0,0,2,2,1,1012.5,110838.32,107726.07,80883.836,0,0,0,1547.1453 +15537,19002,33854,33855,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.0616312,8.2192507,0,19,-4,-17.356815,0,2,1,2021,9,1,37,40,1,1,0,10.887073,10.887073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.18,41.36,43.86,45.12,6.666666666666667,1,1,0,1,8,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15537,19002,33855,33854,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,8.3601704,8.3963032,0,10,4,37.914238,0,1,1,2021,14,4,12,55,1,4,0,54.513279,54.513279,.05,.05,0,0,0,0,0,0,1,1,0,1.101969,0,43.86,45.12,51.18,41.36,3.333333333333333,1,1,0,1,10,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15537,19002,33856,-9,33855,33854,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.87286,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15538,19003,33857,33858,-9,-9,1,1,31,0,1,0,3,3,-9,1,3,0,0,0,9,2,0,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.69,45,36.02,21.52,3.333333333333333,1,1,0,0,2,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15538,19003,33858,33857,-9,-9,1,0,29,0,1,0,2,2,-9,1,2,0,0,0,9,-2,0,0,-9,-9,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.02,21.52,28.69,45,1.666666666666667,1,1,0,0,0,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15538,19003,33859,-9,33858,33857,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.6731,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15539,19004,33860,33861,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0498381,9.3432846,0,7,1,-131.94797,0,-9,-9,2021,9,0,35,35,1,1,0,28.536001,28.536001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33861,33860,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.9175825,8.8891897,0,13,-1,-123.8312,0,-9,-9,2021,6,0,35,30,1,0,0,29.080791,29.080791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,9,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33862,-9,33861,33860,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.1543,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33863,-9,33861,33860,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.04132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15540,19005,33864,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.6071,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,11.423546,0,0,1,1,0,0,0,42.1,28.12,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1139,-12411.338,0,86741.406,0,0,0,833.22931 +15541,19006,33865,33866,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.2289162,8.3914776,0,36,0,12.488426,0,3,3,2021,11,0,24,24,1,2,0,21.9974,21.9974,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,57.73,41.33,7,3,4,0,1,12,4,5,0,1656.5,1159909.9,724543.81,334181.97,0,0,0,2762.8369 +15541,19006,33866,33865,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.9455314,8.108633,0,11,0,97.71933,0,3,3,2021,11,1,60,48,1,1,0,6.4567432,6.4567432,0,0,0,0,0,0,0,2,0,0,0,0,0,57.73,41.33,49,48,5,3,4,0,0,13,4,5,0,1656.5,1159909.9,724543.81,334181.97,0,0,0,2762.8369 +15541,19007,33867,-9,33865,33866,1,1,29,0,0,0,2,2,-9,0,2,8.250845,8.1747065,0,0,0,-999.74219,0,3,3,2021,19,7,54,50,1,7,0,7.6925969,7.6925969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.54,54.87,-9,-9,3.333333333333333,3,4,0,1,6,4,4,0,474,358542.63,45306.641,89609.969,30869.678,8062.9395,1879.2097,942.58673 +15542,19008,33868,33870,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.2966976,8.1059456,0,6,0,-59.324013,0,1,1,2021,12,1,22,38,1,1,0,21.762531,21.762531,0,0,0,0,0,0,0,0,1,1,0,3.8401618,0,45.81,61.51,31.93,61.09,8.333333333333334,1,1,0,0,12,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15542,19008,33869,-9,33868,33870,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.4796,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15542,19008,33870,33868,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.0795279,8.6522837,0,6,0,103.91983,0,-9,-9,2021,17,5,38,38,1,5,0,17.862104,17.862104,0,0,0,0,0,0,0,0,1,1,0,4.5140162,0,31.93,61.09,45.81,61.51,5,1,1,0,0,10,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15543,19009,33871,33872,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,0,0,0,25,-1,44.229328,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,58.08,60.76,47.53,6.666666666666667,1,1,0,0,0,8,5,1,875,1591190.5,384234.69,821872.13,0,0,0,7425.1855 +15543,19009,33872,33871,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.7039146,9.8703594,0,24,1,-26.095623,0,3,2,2021,6,0,37,55,1,0,0,57.421394,57.421394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.76,47.53,38.54,58.08,10,1,1,0,0,10,8,5,1,875,1591190.5,384234.69,821872.13,0,0,0,7425.1855 +15543,19010,33873,-9,33871,33872,1,1,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-980.21112,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,8,1,1,680,0,0,0,0,0,0,-224.99194 +15544,19011,33874,33875,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.5908298,7.7758079,0,10,1,69.865974,-9,-9,-9,2021,18,7,45,0,1,7,0,6.5982776,6.5982776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.56,61.79,47.52,54.14,5,1,1,0,0,10,8,4,1,301.5,598152.75,29622.291,395986.63,48540.48,1072.0443,0,1494.6802 +15544,19011,33875,33874,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6852555,7.6572628,0,37,-1,-67.347824,0,2,2,2021,12,1,23,23,1,1,0,10.760935,10.760935,0,0,0,0,0,0,0,0,0,0,0,2.721736,0,47.52,54.14,41.56,61.79,6.666666666666667,4,2,0,0,11,8,4,1,301.5,598152.75,29622.291,395986.63,48540.48,1072.0443,0,1494.6802 +15545,19012,33876,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.2514391,7.5295906,0,0,-1019.8287,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2312851,46.21,58.07,-9,-9,1.666666666666667,1,1,0,0,8,11,3,1,159,1074927.6,155083.06,416848.88,0,0,0,1214.3138 +15546,19013,33877,33878,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,1,4,0,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.54,52.62,35.61,22.34,3.333333333333333,1,1,0,0,3,9,1,0,1069.5,430199.69,612804.25,0,0,0,0,103.57539 +15546,19013,33878,33877,-9,-9,1,1,44,0,0,0,3,3,-9,1,2,0,0,0,1,-4,0,-9,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.61,22.34,46.54,52.62,8.333333333333334,1,1,0,0,0,9,1,0,1069.5,430199.69,612804.25,0,0,0,0,103.57539 +15546,19014,33879,-9,33877,33878,1,1,20,0,0,0,2,2,-9,0,3,7.9213901,7.9198155,0,0,0,-978.51947,0,2,3,2021,15,2,56,40,1,2,1,5.5067244,5.5067244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.38,52.51,-9,-9,6.666666666666667,1,1,0,0,3,9,4,0,347,154562.44,-31201.543,0,0,0,0,1000.3688 +15547,19015,33880,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.688777,7.7642603,0,0,0,-958.21185,-9,-9,-9,2021,6,0,41,0,1,0,0,7.9910941,7.9910941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,1188,-4370.0684,19082.711,0,0,0,0,1140.0831 +15548,19016,33881,33882,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.3701248,8.4852219,0,6,3,86.773262,0,-9,-9,2021,9,0,30,30,1,1,0,18.031029,18.031029,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,46.29,54.22,8,1,1,0,0,1,12,4,0,468.5,528042.44,295893,205354.13,40216.395,11067.187,0,2583.2642 +15548,19016,33882,33881,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.5814381,7.52139,0,6,-3,74.252716,0,-9,3,2021,7,0,39,30,1,0,0,6.3490644,6.3490644,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.29,54.22,52,55,8.333333333333334,1,1,0,0,3,12,4,0,468.5,528042.44,295893,205354.13,40216.395,11067.187,0,2583.2642 +15549,19017,33883,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.7636867,5.2599783,0,0,-1068.068,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2872676,5.6375222,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,1226,621396.63,47415.059,269765.88,0,0,0,1395.5022 +15550,19018,33884,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0601988,8.2562923,0,0,0,-897.64557,0,2,2,2021,6,0,40,42,1,0,0,10.53766,10.53766,.05,.05,0,0,0,0,0,0,1,1,0,5.0083766,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,150,197763.98,-6592.1685,0,0,0,0,1588.9026 +15551,19019,33885,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,0,0,-900.59381,0,3,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,813,-86852.219,0,0,0,0,1060.2208,1584.6537 +15552,19020,33886,33889,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,2.0875335,2.3450043,0,1,1,30.642569,-9,2,2,2021,12,0,50,0,1,0,0,.023485426,.023485426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,44.02,60.7,8.333333333333334,1,1,0,0,11,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33887,-9,33889,33886,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.80511,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33888,-9,33889,33886,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.89783,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33889,33886,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.2967253,7.477253,0,1,-1,7.9357991,-9,-9,-9,2021,11,1,22,0,1,1,0,8.6882668,8.6882668,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,54.77,55.87,8.333333333333334,1,1,0,0,11,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15553,19021,33890,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,7.5960407,7.7863336,0,0,-911.08875,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,1,5.8436012,0,47.097427,0,1,1,0,3.5056322,7.6366134,27.26,25.55,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,6697,1384242.8,396089.06,581370.5,0,0,0,3116.1277 +15554,19022,33891,-9,33892,33894,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.93414,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33892,33894,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.7196436,8.3388653,0,7,3,32.399204,0,2,3,2021,17,6,54,70,1,6,0,8.6127205,8.6127205,0,0,0,0,0,0,0,0,1,1,0,0,0,45.65,55.86,63.41,29.17,6.666666666666667,1,1,0,0,7,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33893,-9,33892,33894,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.29456,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33894,33892,-9,-9,1,1,45,0,2,0,3,3,-9,1,2,0,0,0,7,-3,37.411156,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,63.41,29.17,45.65,55.86,8.333333333333334,1,1,0,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15555,19023,33895,33896,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,1.5659007,1.5257677,50,4,42.001789,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.6341866,62.42,45.64,48.69,41.09,8.333333333333334,1,1,0,0,3,2,2,1,1265,45908.602,0,0,0,0,0,1022.375 +15555,19023,33896,33895,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,50,-4,110.12642,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4379603,0,48.69,41.09,62.42,45.64,8.333333333333334,1,1,0,1,5,2,2,1,1265,45908.602,0,0,0,0,0,1022.375 +15556,19024,33897,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,6.2897673,5.9050283,0,0,-1119.0631,-9,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0185065,49,48,-9,-9,7,2,3,0,0,0,8,2,0,603,203716.31,0,237400.97,0,0,0,-530.3197 +15556,19025,33898,-9,33897,-9,1,1,25,0,0,0,2,2,-9,0,3,8.405654,8.0049982,0,0,0,-896.89221,-9,2,2,2021,17,8,40,0,1,8,0,10.640994,10.640994,.05,.05,0,0,0,0,0,0,0,0,0,.11025828,0,28.66,58.78,-9,-9,3.333333333333333,2,3,0,1,6,8,4,0,828,-74647.469,-5714.2109,0,0,0,0,2508.0183 +15557,19026,33899,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1110.0378,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,10,1,0,837,3763.2544,95602.586,0,0,9109.0654,0,1303.3782 +15558,19027,33900,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.7411485,7.8556266,0,0,0,-993.15979,0,-9,-9,2021,6,0,25,45,1,0,0,11.882539,11.882539,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,241,-231147.58,-52000.84,0,0,2857.3679,0,1771.4303 +15559,19028,33901,-9,-9,-9,1,0,48,0,1,0,1,1,-9,1,2,0,6.924655,7.1082344,0,0,-931.68994,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9461651,58.31,26.72,-9,-9,3.333333333333333,1,1,0,0,8,11,2,1,280,123476.12,143417.67,0,0,0,0,2007.9017 +15560,19029,33902,33903,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.094214,5.6778316,49,6,96.403664,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9655418,5.7499089,54.9,54.53,51.14,47.87,5,1,1,0,0,0,5,2,1,217,1095581.8,0,263918.19,0,0,0,1784.1525 +15560,19029,33903,33902,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.1490784,5.1528111,49,-6,126.70224,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5633807,5.0890718,51.14,47.87,54.9,54.53,8.333333333333334,1,1,0,0,0,5,2,1,217,1095581.8,0,263918.19,0,0,0,1784.1525 +15561,19030,33904,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.6585426,8.8183165,0,0,0,-965.75336,0,-9,-9,2021,13,1,20,17,1,1,0,31.558479,31.558479,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,942,228004.58,30431.201,0,0,0,0,1758.2443 +15562,19031,33905,33906,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,0,0,48,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9110303,0,51.83,57.2,51.83,57.2,10,1,1,0,0,0,12,2,1,1193,988574.69,580724.81,314947.88,0,0,0,1516.9739 +15562,19031,33906,33905,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,48,1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,2,1,1193,988574.69,580724.81,314947.88,0,0,0,1516.9739 +15563,19032,33907,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-956.93115,0,3,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.2,23.25,-9,-9,5,2,3,0,1,0,8,1,0,4343,-146403.92,0,0,0,0,0,2134.531 +15564,19033,33908,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9133029,7.7662635,0,0,0,-1110.0842,0,-9,2,2021,6,0,21,35,1,0,0,16.249008,16.249008,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.77,39.97,-9,-9,10,1,1,0,0,10,12,4,0,163,-75495.883,-5972.1172,0,0,0,0,1433.4005 +15565,19034,33909,-9,33910,33911,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.298,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33910,33911,-9,-9,1,0,30,1,2,0,1,1,-9,0,4,8.2119837,7.7583694,0,7,-1,25.342398,0,2,2,2021,6,1,4,4,1,1,0,90.958656,90.958656,0,0,0,0,0,0,0,0,1,1,0,0,0,56.68,42.62,60.52,53.2,8.333333333333334,3,4,0,0,7,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33911,33910,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.803607,7.6261644,0,7,1,50.752262,0,-9,-9,2021,4,0,36,34,1,0,0,6.7979679,6.7979679,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.52,53.2,56.68,42.62,8.333333333333334,1,1,0,0,6,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33912,-9,33910,33911,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.43524,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15566,19035,33913,33914,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1557722,7.8013453,0,10,-6,-37.82296,0,3,3,2021,16,4,44,39,1,4,0,8.4432459,8.4432459,0,0,0,0,0,0,0,42,1,1,0,3.9173224,0,27.8,37.35,25.68,22.39,5,1,1,0,1,15,12,3,0,301.5,2011818.3,1504020.8,215748.97,0,0,3109.5278,2273.6196 +15566,19035,33914,33913,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,0,0,10,6,11.825194,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.68,22.39,27.8,37.35,1.666666666666667,1,1,0,1,6,12,3,0,301.5,2011818.3,1504020.8,215748.97,0,0,3109.5278,2273.6196 +15567,19036,33915,33916,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.1519761,7.1708407,0,5,-15,28.891781,0,2,2,2021,12,3,21,22,1,3,0,5.9626374,5.9626374,0,0,0,0,0,0,0,0,1,1,0,2.6193633,0,43.71,56.91,38.04,58.33,6.666666666666667,1,1,0,0,7,12,2,0,594,-71903.578,0,194877.94,133565,11080.865,0,1332.5637 +15567,19036,33916,33915,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,5,15,36.314415,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,58.33,43.71,56.91,5,1,1,1,0,1,12,2,0,594,-71903.578,0,194877.94,133565,11080.865,0,1332.5637 +15568,19037,33917,33918,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.3834038,8.3236141,0,7,-2,50.788986,0,2,3,2021,7,2,37,43,1,2,0,10.904722,10.904722,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.93,50.55,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,0,911,137135.34,-25470.633,0,0,0,0,2730.6025 +15568,19037,33918,33917,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.1132517,8.1506071,0,7,2,-88.091736,0,-9,-9,2021,10,0,50,37,1,1,0,7.722548,7.722548,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.93,50.55,6.666666666666667,1,1,0,0,6,9,5,0,911,137135.34,-25470.633,0,0,0,0,2730.6025 +15569,19038,33919,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.3711348,8.7804308,6.2219276,0,0,-959.67224,0,3,2,2021,11,1,41,47,1,1,0,13.409047,13.409047,.05,.05,0,0,0,0,0,0,0,0,0,5.9606757,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,709,281062.19,-50939.973,111264.78,18614.621,0,4978.1895,2424.8374 +15570,19039,33920,33921,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2655849,8.3606548,43,-3,7.2474194,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4327164,7.8002553,54.37,54.8,58.33,47.36,8.333333333333334,1,1,0,0,6,12,3,1,939,931668.69,887152.63,194172.5,0,13024.77,0,3118.7156 +15570,19039,33921,33920,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.7971458,6.5511298,43,3,22.22241,0,1,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0154924,5.9529939,58.33,47.36,54.37,54.8,8.333333333333334,1,1,0,0,6,12,3,1,939,931668.69,887152.63,194172.5,0,13024.77,0,3118.7156 +15571,19040,33922,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-954.25128,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,10.14827,0,0,1,1,0,0,0,24.39,20.22,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1330,-51961.871,0,0,0,0,0,1504.5542 +15572,19041,33923,33924,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9279857,8.1095352,7.0401263,5,7,-80.808968,0,3,2,2021,6,0,37,37,1,0,0,11.95979,11.95979,.05,.05,0,0,0,0,0,0,0,0,0,5.8490877,7.0248132,58.89,48.6,51.73,56.3,6.666666666666667,1,1,0,0,11,4,5,1,208,1186882.3,882208.25,95154.141,0,0,0,3253.3616 +15572,19041,33924,33923,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.2044659,8.4289017,0,5,-7,24.196676,0,2,2,2021,11,3,39,30,1,3,0,13.132038,13.132038,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.73,56.3,58.89,48.6,5,1,1,0,1,11,4,5,1,208,1186882.3,882208.25,95154.141,0,0,0,3253.3616 +15573,19042,33925,-9,-9,-9,1,0,40,0,3,0,1,1,-9,1,4,7.5537653,7.7851558,0,0,0,-986.20135,0,3,1,2021,20,8,18,19,1,8,0,13.858138,13.858138,.05,.05,0,0,0,0,0,42,1,1,0,0,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,5,9,3,1,539.5,195228.3,-27620.867,0,0,0,0,2669.9146 +15573,19042,33926,-9,33925,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.4566,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,539.5,195228.3,-27620.867,0,0,0,0,2669.9146 +15574,19043,33927,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.7580094,7.5005794,0,0,0,-950.34546,0,3,3,2021,7,0,40,8,1,0,1,7.3662601,7.3662601,0,0,0,0,0,0,0,0,0,0,0,2.2676542,0,59.53,56.44,-9,-9,10,2,3,0,0,7,7,3,1,1375,0,0,0,0,0,0,1623.1404 +15574,19044,33928,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1124.6705,-9,3,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,7,2,1,2461,61954.895,0,0,0,0,0,0 +15574,19045,33929,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.7118826,8.2895222,0,0,0,-977.48938,0,3,3,2021,6,0,40,40,1,0,1,14.258927,14.258927,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,10,2,3,0,0,3,7,5,1,179,136448.44,-87113.297,0,0,0,0,1517.616 +15575,19046,33930,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1034.9552,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,.16499835,2.3836734,24.026096,2,1,1,0,4.3781219,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,610,0,0,0,0,0,0,1231.2318 +15576,19047,33931,33932,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.1391525,8.2136135,0,2,0,-2.7695456,0,-9,-9,2021,18,6,44,47,1,6,0,8.0562983,8.0562983,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.37,52.74,46.79,41.89,3.333333333333333,1,1,0,0,11,10,5,1,1430.5,123344.31,18147.254,261858.38,84736.773,0,1885.433,3146.7778 +15576,19047,33932,33931,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1275682,8.0974236,0,2,0,-128.8452,-9,-9,-9,2021,12,0,40,0,1,0,0,7.9973683,7.9973683,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.79,41.89,30.37,52.74,6.666666666666667,1,1,0,0,2,10,5,1,1430.5,123344.31,18147.254,261858.38,84736.773,0,1885.433,3146.7778 +15577,19048,33933,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,7.4663787,7.4659805,0,0,0,-1075.681,0,2,2,2021,13,2,20,20,1,2,0,9.9026871,9.9026871,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,58.96,-9,-9,5,1,1,0,0,6,13,3,0,171,242907.27,0,183743.31,12620.198,0,0,701.20935 +15577,19049,33934,-9,33933,-9,1,0,22,0,1,0,2,2,-9,0,4,7.9141569,7.8887825,0,0,0,-927.70709,0,3,-9,2021,6,0,37,45,1,0,1,8.5423098,8.5423098,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,1362,-19954.9,-18980.941,0,0,0,-99.060257,1074.8545 +15578,19050,33935,-9,33936,33937,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1150.1791,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33936,33937,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.5928593,8.5897474,0,16,-1,-6.0602174,0,2,2,2021,20,8,37,38,1,8,0,21.992764,21.992764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.98,40.81,52.16,46.15,5,1,1,0,0,11,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33937,33936,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4319887,8.1488094,0,9,1,47.649742,0,2,2,2021,8,0,10,45,1,0,0,65.066406,65.066406,.05,.05,0,0,0,0,0,0,1,1,0,1.6518807,0,52.16,46.15,34.98,40.81,5,1,1,0,0,11,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33938,-9,33936,33937,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.9526,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15579,19051,33939,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7471075,8.540513,0,0,0,-1047.8092,0,2,2,2021,10,0,50,40,1,0,0,17.582586,17.582586,.05,.05,.05,0,0,0,.58064473,0,0,0,0,2.7263029,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,297,3762057.8,3303487.3,148216.23,0,0,0,2014.3191 +15580,19052,33940,33941,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,6.8897176,7.3309183,0,17,6,11.611534,0,2,2,2021,6,0,15,25,1,0,0,8.7877226,8.7877226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.87,51.29,43.85,44.81,8.333333333333334,1,1,0,0,13,10,4,1,266,275824.97,2431.8203,188310.64,-3889.0381,1791.1443,0,2816.282 +15580,19052,33941,33940,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.439991,8.3429708,0,12,-6,-45.507404,0,-9,-9,2021,11,1,45,48,1,1,0,12.588036,12.588036,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.85,44.81,58.87,51.29,5,1,1,0,0,13,10,4,1,266,275824.97,2431.8203,188310.64,-3889.0381,1791.1443,0,2816.282 +15581,19053,33942,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.6018901,7.7265296,0,0,0,-1049.2388,0,3,3,2021,15,3,30,0,1,3,0,8.8176317,8.8176317,0,0,.05,0,0,0,0,0,0,0,0,0,0,40.58,54.32,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,1446,351094.16,130528.81,0,0,0,0,946.33032 +15582,19054,33943,33944,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,6.7883201,6.9292455,5.1023459,36,6,-103.30749,0,2,2,2021,24,11,10,30,1,11,0,10.361546,10.361546,0,0,0,0,0,0,0,7,1,1,0,5.645503,5.5389977,31.1,29.35,53,52,1.666666666666667,1,1,0,0,9,9,3,1,950.5,1443376.8,1084729.3,289738.81,0,0,0,1645.4443 +15582,19054,33944,33943,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7285056,7.6907411,0,6,-6,28.641708,0,2,2,2021,10,0,45,45,1,1,0,5.8111949,5.8111949,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,31.1,29.35,8,1,1,0,0,1,9,3,1,950.5,1443376.8,1084729.3,289738.81,0,0,0,1645.4443 +15583,19055,33945,33947,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.1159201,7.2332687,0,6,-1,-13.462941,0,-9,-9,2021,10,0,35,20,1,1,0,5.810636,5.810636,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,45.97,51.9,8,3,4,0,0,1,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15583,19055,33946,-9,33945,33947,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.8099,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15583,19055,33947,33945,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,7.0788569,6.9741912,0,24,1,-14.847772,0,2,2,2021,15,3,30,60,1,3,0,5.1930118,5.1930118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,51,54,3.333333333333333,3,4,0,1,8,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15584,19056,33948,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.2554145,7.5947437,0,0,-999.33569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7412605,7.5493159,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1108,547999.75,396775,80450.648,0,0,0,1500.0504 +15585,19057,33949,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3308716,8.4054461,0,0,0,-919.4552,0,2,2,2021,8,0,70,50,1,0,0,6.682538,6.682538,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,52.35,-9,-9,8.333333333333334,1,1,0,0,11,4,4,0,305,400404.59,-111301.38,68604.961,0,0,0,1319.9404 +15586,19058,33950,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,0,0,0,0,-945.55396,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.14,44.01,-9,-9,10,1,1,0,0,0,5,1,0,571,160386.14,0,0,0,0,0,1001.5778 +15587,19059,33951,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.5193725,7.6244736,0,0,-1072.6504,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71794838,8.0006189,58.15,52.91,-9,-9,10,1,1,0,0,0,12,3,1,252,496237.63,196706.72,234393.66,0,0,0,1219.2927 +15588,19060,33952,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.5874262,8.7709064,0,0,0,-1073.2419,0,2,2,2021,12,0,50,55,1,0,0,15.732002,15.732002,.05,.05,0,0,0,0,0,0,1,1,0,5.2892914,0,49.71,42.44,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,680,315193.97,3305.6248,168414.59,0,0,0,2271.7771 +15589,19061,33953,-9,-9,-9,1,0,34,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1101.6636,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,32.11,-9,-9,0,1,1,0,1,0,6,1,0,184,123126.73,0,0,0,.8000055,0,1771.9636 +15590,19062,33954,33955,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,0,0,0,4,7,0,0,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,52,59,31.67,40.94,8.333333333333334,3,4,1,0,1,8,1,0,840.5,8022.5635,0,0,0,0,0,324.38599 +15590,19062,33955,33954,-9,-9,1,0,30,0,1,0,2,2,-9,1,3,0,0,0,4,-7,0,0,3,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,31.67,40.94,52,59,5,3,4,0,0,1,8,1,0,840.5,8022.5635,0,0,0,0,0,324.38599 +15591,19063,33956,-9,33957,33959,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1038.3771,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33957,33959,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3096128,7.085505,4.6993389,20,-1,-49.904701,0,3,2,2021,16,4,24,24,1,4,0,5.1810594,5.1810594,0,0,0,0,0,0,0,0,1,0,1,5.0996714,0,42.7,58.55,33.15,21.15,1.666666666666667,1,1,0,0,11,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33958,-9,33957,33959,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.7375,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33959,33957,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,0,0,0,19,1,-52.666393,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.15,21.15,42.7,58.55,3.333333333333333,1,1,0,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19064,33960,-9,33957,33959,1,0,18,0,2,0,2,2,-9,0,1,0,0,0,0,0,-1025.4617,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.62590277,0,27.16,53.01,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,552,17190.445,0,0,0,0,0,316.19061 +15592,19065,33961,33962,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6870432,7.8571811,0,2,-23,169.43591,0,-9,-9,2021,15,4,31,29,1,4,0,6.2514696,6.2514696,0,0,0,0,0,0,0,0,1,1,0,1.1930226,0,44.81,57.83,35.78,41.87,1.666666666666667,1,1,0,0,8,7,4,1,912,184044.78,57393.594,0,0,0,0,3161.5396 +15592,19065,33962,33961,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,8.3841562,8.1572399,2,23,134.58455,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7554955,35.78,41.87,44.81,57.83,6.666666666666667,1,1,0,0,0,7,4,1,912,184044.78,57393.594,0,0,0,0,3161.5396 +15593,19066,33963,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,5,0,5.8966427,5.9298725,0,0,-970.22882,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4131169,5.76509,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,380,447595.31,129381.78,182762.25,42181.301,2406.6597,0,756.67859 +15594,19067,33964,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,9.3677301,9.4053383,0,0,0,-1127.2875,0,1,1,2021,8,0,50,44,1,0,0,33.139896,33.139896,0,0,0,0,0,0,0,0,0,0,0,5.5898614,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1454,-221790.23,-45.226101,0,0,4656.2339,0,5247.064 +15595,19068,33965,33966,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,7.7673173,7.5892472,0,9,12,19.355148,0,3,3,2021,7,0,40,40,1,0,0,6.0970674,6.0970674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,2,3,0,0,8,9,2,1,333,108653.03,-4359.54,0,0,0,232.11395,1414.1427 +15595,19068,33966,33965,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,9,-12,-103.61126,-9,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,2,3,0,0,0,9,2,1,333,108653.03,-4359.54,0,0,0,232.11395,1414.1427 +15596,19069,33967,-9,33969,33968,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-947.12659,-9,2,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8654609,0,57.06,57.76,-9,-9,10,1,1,0,0,1,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15596,19069,33968,33969,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.7952328,8.8947802,0,20,-1,-46.122108,0,3,2,2021,5,0,45,35,1,0,0,22.88858,22.88858,.05,.05,.05,0,0,0,0,2,1,1,0,3.5564187,0,52.43,55.57,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15596,19069,33969,33968,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.1985617,8.1518221,0,20,1,110.20112,0,3,2,2021,11,1,43,39,1,1,0,9.494339,9.494339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,11,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15597,19070,33970,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.1298561,6.1102562,0,0,-970.25421,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9670753,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,456,415794.13,111689.44,0,0,0,0,265.27411 +15597,19071,33971,-9,33970,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8887806,7.9397907,0,0,0,-946.33374,0,3,3,2021,0,0,56,40,1,0,0,6.5977798,6.5977798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,901,147176.38,24979.859,0,0,0,0,909.46893 +15597,19072,33972,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.03497,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,45.6,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,1202,461906.66,0,341081.56,11780.191,0,0,400.62259 +15598,19073,33973,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.5662,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8308805,0,51.49,31.73,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,133,82493.297,0,0,0,0,0,-266.51685 +15599,19074,33974,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,8.4754934,8.617548,0,0,-992.5683,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0866954,8.6467552,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,0,12,5,0,487,700648.81,197049.75,297806.09,0,0,0,3649.7693 +15600,19075,33975,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,7.3960304,7.0634847,0,0,-1035.1614,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5136518,6.8024273,47.72,28.25,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1193,583496,395979.34,221383.73,0,6314.7573,0,2243.908 +15601,19076,33976,33977,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.0034094,8.9951735,0,1,-2,37.297504,-9,-9,-9,2021,11,0,38,0,1,0,0,23.971127,23.971127,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,48,49,5,1,1,0,1,9,10,4,1,2026.5,11116.018,4659.4111,155679.25,116629.39,1833.6433,0,2711.6436 +15601,19076,33977,33976,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.4234481,7.1220307,0,1,2,-101.59354,-9,-9,-9,2021,12,0,23,0,1,0,0,7.200655,7.200655,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,55.19,54.26,5,1,1,0,1,9,10,4,1,2026.5,11116.018,4659.4111,155679.25,116629.39,1833.6433,0,2711.6436 +15601,19077,33978,-9,33977,33976,1,1,27,0,1,0,2,2,-9,0,5,7.2681017,7.0611248,0,0,0,-1007.9461,-9,2,2,2021,12,0,30,0,1,0,1,5.2104931,5.2104931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.5,64.2,-9,-9,8.333333333333334,1,1,0,1,6,10,3,1,563,171632.78,34051.594,0,0,0,0,895.6734 +15601,19078,33979,-9,33977,33976,1,1,26,0,1,0,2,2,-9,0,4,7.3289056,7.6088376,0,0,0,-886.02515,-9,2,2,2021,6,0,37,0,1,0,1,4.7389092,4.7389092,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,1,8,10,3,1,546,337451.34,48023.152,0,0,0,0,780.87207 +15602,19079,33980,33981,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,27,-8,-13.947098,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,60.29,52.11,10,1,1,0,0,9,9,5,1,1947,4073926.3,2296337,729349.88,0,6304.2354,0,6406.1758 +15602,19079,33981,33980,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,9.4826994,9.401248,26,8,93.743301,0,1,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.5357409,9.2673092,60.29,52.11,54.37,54.8,10,1,1,0,0,13,9,5,1,1947,4073926.3,2296337,729349.88,0,6304.2354,0,6406.1758 +15602,19080,33982,-9,33980,33981,1,1,20,0,0,1,2,0,0,0,3,0,7.6830473,7.5121922,0,0,-867.07318,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0388136,0,41.95,59.17,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,210,-76747.766,0,0,0,0,0,1360.41 +15603,19081,33983,33984,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.8940897,6.6647043,31,0,128.14781,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.1707826,6.889689,42.05,58.8,39.63,50.08,8.333333333333334,1,1,0,0,10,1,5,1,569,1104265.3,846993.38,345719.19,30639.66,7169.7842,171.01012,3367.144 +15603,19081,33984,33983,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,8.7945576,8.288867,31,0,-9.4386396,0,2,3,2021,22,11,0,0,4,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1824818,7.7882466,39.63,50.08,42.05,58.8,8.333333333333334,1,1,0,0,9,1,5,1,569,1104265.3,846993.38,345719.19,30639.66,7169.7842,171.01012,3367.144 +15604,19082,33985,33987,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.391345,7.3031168,0,6,6,188.27357,0,-9,-9,2021,9,0,60,60,1,1,0,3.4405234,3.4405234,.05,.05,0,0,0,0,0,0,1,1,0,1.1648335,0,54,54,57.06,57.76,8,1,1,0,0,1,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15604,19082,33986,-9,33987,33985,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.08673,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15604,19082,33987,33985,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,7.6018982,7.6099358,0,26,-6,8.1421938,0,2,2,2021,6,0,30,30,1,0,0,7.0368233,7.0368233,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54,54,10,1,1,0,0,5,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15605,19083,33988,33989,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,8.5646963,8.955657,0,11,4,69.876808,0,1,2,2021,12,0,40,40,1,0,0,13.352475,13.352475,0,0,.05,0,0,0,0,0,0,0,0,6.9440651,0,46.08,57.2,37.42,59.57,8.333333333333334,1,1,0,0,12,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15605,19083,33989,33988,-9,-9,1,0,40,1,1,0,2,2,-9,0,4,9.458931,9.343565,0,11,-4,-33.590385,0,-9,-9,2021,9,0,25,41,1,0,0,47.758396,47.758396,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,59.57,46.08,57.2,5,1,1,0,0,12,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15605,19083,33990,-9,33989,33988,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1159.5181,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15606,19084,33991,-9,33993,33994,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-965.88538,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33992,-9,33993,33994,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6782,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33993,33994,-9,-9,1,0,35,2,2,0,1,1,-9,0,3,8.6903019,8.5306911,0,9,-5,-19.821562,0,-9,-9,2021,12,0,27,25,1,0,0,20.153999,20.153999,0,0,0,0,0,0,0,0,1,1,0,0,0,51.31,49.39,46.08,57.2,6.666666666666667,1,1,0,0,12,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33994,33993,-9,-9,1,1,40,2,2,0,1,1,-9,0,3,9.0587358,9.1750765,0,9,5,61.072601,0,-9,-9,2021,11,0,42,40,1,0,0,27.644402,27.644402,.05,.05,0,0,0,0,0,0,1,1,0,3.2016163,0,46.08,57.2,51.31,49.39,6.666666666666667,1,1,0,0,10,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15607,19085,33995,33998,-9,-9,1,1,51,0,2,0,3,3,-9,0,4,7.8715253,8.3080864,0,17,15,-67.102074,0,3,3,2021,8,0,48,48,1,0,0,8.0755291,8.0755291,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,38.67,49.48,8.333333333333334,1,1,0,0,11,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33996,-9,33998,33995,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.8521,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33997,-9,33998,33995,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1060.3149,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33998,33995,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.8927732,7.9861832,0,17,-15,-116.27682,0,2,2,2021,15,3,33,44,1,3,0,12.577622,12.577622,0,0,0,0,0,0,0,7,1,1,0,0,0,38.67,49.48,51.24,58.84,6.666666666666667,1,1,0,0,11,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15608,19086,33999,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.3376217,6.5444436,0,0,-1022.749,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4913702,6.5407901,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,406,367911.91,47183.129,243451.83,0,0,0,657.8559 +15609,19087,34000,-9,34002,34001,1,1,16,0,1,1,3,0,-9,0,2,0,3.9201014,3.8567646,0,0,-870.00201,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5488367,0,42.02,36.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15609,19087,34001,34002,-9,-9,1,1,48,0,1,0,2,2,-9,0,1,8.5686903,8.3712301,0,8,-1,-20.255922,0,2,3,2021,15,5,38,42,1,5,0,11.852787,11.852787,.05,.05,0,0,0,0,0,2,1,1,0,1.2434101,0,48.18,47.22,25.58,23.66,8.333333333333334,1,1,0,0,8,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15609,19087,34002,34001,-9,-9,1,0,49,0,1,0,2,2,-9,1,1,0,0,0,8,1,-98.246529,0,1,1,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.58,23.66,48.18,47.22,0,1,1,0,0,0,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15610,19088,34003,-9,34005,34006,1,1,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1059.9791,1,1,1,2021,9,0,0,18,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.223474,0,58.3,52.91,-9,-9,8.333333333333334,2,3,0,0,3,8,1,1,1115,-51409.738,0,0,0,0,0,-419.40771 +15610,19089,34004,-9,-9,-9,1,0,77,0,1,0,1,1,-9,0,3,0,4.8366022,5.1796312,0,0,-1058.7632,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5269462,4.7321157,51,46,-9,-9,7,2,3,0,0,0,8,2,1,145,815469.25,3498.2646,655038.44,0,0,0,8.5820332 +15610,19090,34005,34006,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.1338553,7.1304421,0,20,-6,-10.130898,0,1,1,2021,8,1,15,13,1,1,0,9.351717,9.351717,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,51.41,56.15,8.333333333333334,2,3,0,0,12,8,4,1,858,534705.44,2068.8242,575386.94,123897.43,0,1388.1101,2022.1704 +15610,19090,34006,34005,34004,-9,1,1,50,0,1,0,1,1,-9,0,3,8.546834,8.4614391,0,20,6,45.911022,0,1,1,2021,11,0,37,58,1,0,0,17.090605,17.090605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,46,50,6.666666666666667,2,3,0,0,13,8,4,1,858,534705.44,2068.8242,575386.94,123897.43,0,1388.1101,2022.1704 +15611,19091,34007,34008,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.0474825,8.0985413,0,6,-6,20.283028,0,-9,-9,2021,7,1,38,39,1,1,0,7.4296899,7.4296899,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.98,57.55,58.32,50.22,8.333333333333334,1,1,0,0,8,2,5,1,904.5,109975.92,45976.754,0,0,6556.4326,18343.227,3467.9658 +15611,19091,34008,34007,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.6586485,8.9389658,0,6,6,.2587336,0,2,2,2021,10,0,39,37,1,0,0,18.860357,18.860357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.98,57.55,8.333333333333334,1,1,0,0,8,2,5,1,904.5,109975.92,45976.754,0,0,6556.4326,18343.227,3467.9658 +15612,19092,34009,-9,34010,34011,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.47754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15612,19092,34010,34011,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.7950592,6.5690174,0,27,1,47.578857,0,3,-9,2021,10,0,18,6,1,0,0,5.1734891,5.1734891,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,38.73,47.65,8.333333333333334,1,1,0,0,9,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15612,19092,34011,34010,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,0,0,0,27,-1,-113.18305,0,2,2,2021,12,0,0,49,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.65855,0,38.73,47.65,54.67,57.49,6.666666666666667,1,1,1,0,8,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15613,19093,34012,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.7804837,6.98523,0,0,-999.35175,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8549023,6.5793285,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,80,536306.56,99693.297,240819.48,0,0,0,1036.2927 +15614,19094,34013,34014,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0122461,8.0296364,0,7,5,40.111782,-9,-9,-9,2021,10,0,40,0,1,1,0,10.192571,10.192571,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,32.84,60.85,7,4,1,0,0,1,6,4,1,600.5,90457.773,72133.641,138079.14,31629.883,0,7565.2417,2203.835 +15614,19094,34014,34013,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.8004994,7.3996959,0,7,-5,-76.233109,0,3,2,2021,18,7,21,1,1,7,0,6.4687119,6.4687119,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.85,51,49,8.333333333333334,1,1,0,0,4,6,4,1,600.5,90457.773,72133.641,138079.14,31629.883,0,7565.2417,2203.835 +15615,19095,34015,-9,34017,34018,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.13812,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34016,-9,34017,34018,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.18738,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34017,34018,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.4512715,5.9500523,0,8,1,-29.699018,-9,-9,2,2021,22,10,16,0,1,10,0,4.8341303,4.8341303,0,0,0,0,0,0,0,2,1,1,0,1.1297588,0,43.48,60.97,41.86,46.88,8.333333333333334,1,1,0,0,13,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34018,34017,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.8827877,9.1495609,0,7,-1,81.891151,-9,2,-9,2021,11,0,45,0,1,0,0,18.255013,18.255013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.86,46.88,43.48,60.97,6.666666666666667,1,1,0,0,13,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15616,19096,34019,34020,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,10,3,26.881432,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.0957618,0,2,1,1,0,0,0,38.56,23.07,33.7,50.91,3.333333333333333,1,1,0,0,4,12,2,0,469.5,861795.25,605048,181595.09,0,0,91.700165,2396.8804 +15616,19096,34020,34019,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.5258322,5.6266499,10,-3,50.123039,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2278852,5.5926037,33.7,50.91,38.56,23.07,6.666666666666667,1,1,0,0,4,12,2,0,469.5,861795.25,605048,181595.09,0,0,91.700165,2396.8804 +15617,19097,34021,34022,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.5952797,9.4505663,0,8,13,7.1934128,0,2,2,2021,6,0,50,40,1,0,0,33.89492,33.89492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.21,50.73,8.333333333333334,1,1,0,0,10,5,5,1,10068,741206,688638.44,340007.22,215142.39,9538.2588,0,7237.9004 +15617,19097,34022,34021,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.7978458,8.6953135,0,8,-13,33.912689,0,3,3,2021,18,6,48,45,1,6,0,14.617501,14.617501,0,0,0,0,0,0,0,0,0,0,0,0,0,48.21,50.73,54.2,57.49,3.333333333333333,2,3,0,0,10,5,5,1,10068,741206,688638.44,340007.22,215142.39,9538.2588,0,7237.9004 +15618,19098,34023,34024,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.9242406,6.1225386,52,1,-12.049381,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,15.540937,10.633625,126.30474,0,1,1,0,5.6714048,6.3182602,54.71,36.04,49.68,50.49,8.333333333333334,1,1,0,0,0,5,2,1,496.5,67492.813,83336.477,0,0,0,0,1650.7976 +15618,19098,34024,34023,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.6455469,4.7664833,6,-1,-29.94178,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0147543,4.5350556,49.68,50.49,54.71,36.04,8.333333333333334,1,1,0,0,0,5,2,1,496.5,67492.813,83336.477,0,0,0,0,1650.7976 +15619,19099,34025,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.5014658,8.6249599,0,0,0,-1059.8063,-9,2,2,2021,3,0,38,0,1,0,0,14.840339,14.840339,.05,.05,0,0,0,0,0,0,0,0,0,5.6197062,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,5,8,5,0,630,-94274.773,-22705.594,0,0,684.22375,0,2438.7239 +15620,19100,34026,34027,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.810183,7.9665365,0,32,2,29.76973,0,2,3,2021,5,0,35,32,1,0,0,7.2875423,7.2875423,.05,.05,0,0,0,0,0,0,0,0,0,3.9492133,0,60.12,54.8,54.2,57.49,10,1,1,0,0,11,9,5,1,442.5,994435.75,624112.88,294449,116243.42,0,13982.133,5505.2358 +15620,19100,34027,34026,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.3148651,9.4366951,0,32,-2,-39.527431,0,2,2,2021,9,0,48,48,1,0,0,41.699059,41.699059,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,10,1,1,0,0,10,9,5,1,442.5,994435.75,624112.88,294449,116243.42,0,13982.133,5505.2358 +15621,19101,34028,34029,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,65,-1,60.499031,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,40.62,29.22,8.333333333333334,1,1,0,0,0,1,2,1,1014,241906.97,-73583.703,200707.44,0,0,0,866.70935 +15621,19101,34029,34028,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,6.5140805,6.6125484,65,1,-38.676945,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.8330743,16.117672,19.410553,0,1,1,0,0,6.6349177,40.62,29.22,56.77,52.22,6.666666666666667,1,1,0,0,0,1,2,1,1014,241906.97,-73583.703,200707.44,0,0,0,866.70935 +15622,19102,34030,34031,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.9815803,7.5414853,0,8,7,63.403618,0,3,3,2021,10,0,30,50,1,1,0,9.2093601,9.2093601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,57.33,53.46,7,2,3,0,0,1,5,4,1,1200.5,163427.63,62884.207,56076.086,13356.131,0,304.41461,1636.1477 +15622,19102,34031,34030,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5910301,7.2573447,0,30,-7,-34.214939,0,3,3,2021,9,0,33,39,1,0,0,6.9225416,6.9225416,.05,.05,0,0,0,0,0,0,1,1,0,.16925366,0,57.33,53.46,50,49,5,2,3,0,0,10,5,4,1,1200.5,163427.63,62884.207,56076.086,13356.131,0,304.41461,1636.1477 +15623,19103,34032,34033,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.7308493,8.8376341,0,7,3,-12.936018,0,3,2,2021,14,3,33,33,1,3,0,24.051739,24.051739,0,0,0,0,0,0,0,2,0,0,0,0,0,47.9,43.96,52.31,58.29,6.666666666666667,1,1,0,0,8,10,5,1,319.5,512395.59,638965.75,0,0,0,0,4024.2539 +15623,19103,34033,34032,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.5441475,8.4274359,0,7,-3,155.7086,0,3,2,2021,5,0,37,37,1,0,0,19.249424,19.249424,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,52.31,58.29,47.9,43.96,8.333333333333334,1,1,0,0,7,10,5,1,319.5,512395.59,638965.75,0,0,0,0,4024.2539 +15624,19104,34034,-9,34036,34035,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.8459,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15624,19104,34035,34036,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.2267532,8.2371998,0,22,6,74.11879,0,-9,-9,2021,6,0,48,48,1,0,0,8.1943178,8.1943178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,6.666666666666667,2,3,0,0,9,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15624,19104,34036,34035,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.1598325,7.3799448,0,22,-6,-102.19827,0,2,2,2021,7,0,8,0,1,0,0,17.08803,17.08803,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,8,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15625,19105,34037,34038,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.1525412,9.2991142,0,13,-1,.82354772,0,-9,-9,2021,6,0,53,47,1,0,0,21.628983,21.628983,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.73,54.53,48.18,61.8,8.333333333333334,1,1,0,0,14,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19105,34038,34037,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.8156047,7.8851781,0,22,1,-90.481453,0,3,3,2021,11,0,28,28,1,0,0,9.4413977,9.4413977,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.73,54.53,6.666666666666667,1,1,0,0,15,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19105,34039,-9,34038,34037,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1008.8385,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,-9,-9,10,1,1,0,0,15,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19106,34040,-9,34038,34037,1,0,19,0,0,0,2,2,-9,0,3,8.1418381,8.0541067,0,0,0,-1123.3983,0,2,2,2021,16,5,38,38,1,5,1,6.8722892,6.8722892,.05,.05,0,0,0,0,0,0,0,0,0,.317054,0,23.7,63.53,-9,-9,5,1,1,0,0,3,8,4,1,3223,1827.1559,49144.039,0,0,0,0,1672.6713 +15626,19107,34041,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.2534704,8.1798029,0,0,0,-990.9447,0,1,-9,2021,12,2,40,40,1,2,0,11.90374,11.90374,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,11,8,4,0,164,7251.3037,39366.969,0,0,0,0,1549.7681 +15627,19108,34042,-9,-9,-9,1,0,70,0,0,0,2,2,-9,1,3,7.017962,7.2588592,0,0,0,-1125.6073,0,3,-9,2021,11,1,16,30,1,1,0,10.465828,10.465828,0,0,0,1,0,0,0,0,1,1,0,0,0,46.72,39.2,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,600,401610.88,241377.11,304057.47,0,0,0,1733.7842 +15628,19109,34043,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.3269658,7.7669544,0,0,0,-963.40381,0,3,-9,2021,15,4,28,28,1,4,0,7.8930459,7.8930459,.05,.05,0,0,0,0,0,0,0,0,0,5.3010163,0,50.77,40.78,-9,-9,5,1,1,0,0,11,4,3,1,1866,370109.72,-4893.5078,339466.19,85729.477,0,0,337.72842 +15629,19110,34044,34045,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9166427,8.1430206,0,47,0,8.7704487,0,3,2,2021,15,5,20,35,1,5,0,13.93031,13.93031,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,50.71,60.29,52.11,6.666666666666667,1,1,0,0,14,12,4,1,865,1812443.6,1595265,194733.98,0,0,0,1758.8962 +15629,19110,34045,34044,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.7077584,7.6703248,0,47,0,108.16144,0,3,3,2021,6,0,39,32,1,0,0,6.7739396,6.7739396,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,48.23,50.71,10,1,1,0,0,14,12,4,1,865,1812443.6,1595265,194733.98,0,0,0,1758.8962 +15630,19111,34046,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,1,7.6842642,7.8643522,0,0,0,-1004.0496,-9,-9,-9,2021,19,0,38,0,1,6,0,7.8899059,7.8899059,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,8.140000000000001,38.56,-9,-9,0,1,1,0,1,0,4,4,0,921,248355.02,294986.06,0,0,0,0,1092.5007 +15631,19112,34047,34048,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.917625,6.9816122,56,-3,116.91379,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.038203,6.9553428,60.2,39.82,60.69,29.25,8.333333333333334,1,1,0,0,0,5,3,1,646,1293861.3,426728.94,357751.81,0,0,0,2362.4583 +15631,19112,34048,34047,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.1908488,7.2534561,56,3,-60.043804,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0113947,7.3693113,60.69,29.25,60.2,39.82,8.333333333333334,1,1,0,0,0,5,3,1,646,1293861.3,426728.94,357751.81,0,0,0,2362.4583 +15632,19113,34049,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,6.1996851,6.3450055,0,0,0,-974.45532,0,3,2,2021,19,0,18,18,1,6,0,3.2981348,3.2981348,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,5,2,3,0,1,8,9,2,0,1009,-143438.95,0,0,0,0,0,548.14227 +15633,19114,34050,34051,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,0,0,50,1,0,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0298899,0,60.7,47.65,50,47,10,1,1,0,0,2,10,1,1,888,143517.03,32014.512,211532.75,0,0,0,1289.7969 +15633,19114,34051,34050,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,7,-1,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,60.7,47.65,7,1,1,0,0,0,10,1,1,888,143517.03,32014.512,211532.75,0,0,0,1289.7969 +15634,19115,34052,34054,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,0,0,0,9,-3,-125.42075,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.37,52.37,44.52,36.48,10,2,3,0,0,0,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15634,19115,34053,-9,34052,34054,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7486,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15634,19115,34054,34052,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.8402281,8.7378712,0,9,3,82.45594,0,3,3,2021,7,0,50,25,1,0,0,15.276745,15.276745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.52,36.48,50.37,52.37,8.333333333333334,2,3,0,0,11,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15635,19116,34055,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1084.8622,0,2,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,226,73679.219,0,117412.69,0,0,0,1021.5623 +15636,19117,34056,34057,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,8.6487751,8.3349218,41,2,-185.22115,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.6103945,8.4780884,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,1,660,364510.13,200138.52,290839.13,0,0,0,5918.751 +15636,19117,34057,34056,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.6651068,8.4853926,6.0320916,38,-2,-33.211845,0,2,2,2021,11,2,10,10,1,2,0,52.771473,52.771473,.05,.05,0,0,0,0,0,0,0,0,0,8.479104,6.2914376,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,660,364510.13,200138.52,290839.13,0,0,0,5918.751 +15637,19118,34058,34059,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9559307,7.0303979,0,33,-3,-35.680492,0,-9,2,2021,28,12,20,20,1,12,0,5.9088678,5.9088678,0,0,0,0,0,0,0,0,0,0,0,6.7944922,0,23.92,56.42,54.2,57.49,6.666666666666667,1,1,0,0,12,4,5,1,951,-23356.648,65508.531,131137.14,7863.8452,0,0,4325.8042 +15637,19118,34059,34058,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.072711,9.2349443,0,9,3,-34.38588,0,-9,-9,2021,11,0,42,38,1,0,0,31.629074,31.629074,.05,.05,0,0,0,0,0,0,0,0,0,1.2519604,0,54.2,57.49,23.92,56.42,8.333333333333334,1,1,0,0,12,4,5,1,951,-23356.648,65508.531,131137.14,7863.8452,0,0,4325.8042 +15637,19119,34060,-9,34058,34059,1,1,20,0,0,0,2,2,-9,0,5,7.6937089,7.85498,0,0,0,-972.52069,0,3,2,2021,7,0,40,40,1,0,1,8.1927881,8.1927881,.05,.05,0,0,0,0,0,0,0,0,0,4.1820979,0,51.38,44.05,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,1478,-41881.133,27847.246,0,0,-1438.442,1029.0621,1525.0305 +15638,19120,34061,34062,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.961175,8.0713482,0,2,-1,-30.949202,0,-9,-9,2021,6,0,43,43,1,0,0,8.7144251,8.7144251,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,57.06,57.76,8.333333333333334,1,1,0,0,5,5,5,0,1165.5,57000.313,80647.047,0,0,6770.1475,0,3462.6475 +15638,19120,34062,34061,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.7030706,8.7143126,0,2,1,23.042101,-9,-9,-9,2021,8,0,38,0,1,0,0,20.316723,20.316723,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.76,54.51,8.333333333333334,1,1,0,0,0,5,5,0,1165.5,57000.313,80647.047,0,0,6770.1475,0,3462.6475 +15639,19121,34063,34064,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,2.9314001,3.0553045,51,0,-16.272589,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9748061,30.34,48.15,39.5,41.06,10,1,1,0,0,0,5,2,1,557.5,1079032.3,195724.33,474339.41,0,0,0,809.90411 +15639,19121,34064,34063,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.1639838,7.0567737,51,0,59.845757,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2854667,6.9424582,39.5,41.06,30.34,48.15,6.666666666666667,1,1,0,0,0,5,2,1,557.5,1079032.3,195724.33,474339.41,0,0,0,809.90411 +15640,19122,34065,-9,34066,34067,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3851,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34066,34067,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,9.3726683,9.4376497,0,2,-1,-9.7751217,0,2,2,2021,10,0,40,35,1,0,0,40.076099,40.076099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,2,3,0,0,12,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34067,34066,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.5653429,9.7001143,0,2,1,-69.378723,-9,-9,-9,2021,3,0,35,0,1,0,0,45.663784,45.663784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,5,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34068,-9,34066,34067,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.50031,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15641,19123,34069,34070,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.550159,7.7239118,0,29,4,114.98056,0,3,3,2021,11,0,63,63,1,2,0,5.2884488,5.2884488,.05,.05,0,0,0,0,0,0,0,0,0,2.3281136,0,48,51,41.12,27.25,7,1,1,0,0,1,6,3,1,1095.5,262054.16,-12020.992,230637.47,0,0,0,911.22314 +15641,19123,34070,34069,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,0,0,0,29,-4,-24.330717,0,3,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.12,27.25,48,51,6.666666666666667,2,3,0,1,0,6,3,1,1095.5,262054.16,-12020.992,230637.47,0,0,0,911.22314 +15641,19124,34071,-9,34070,34069,1,1,27,0,0,0,1,1,-9,0,4,9.1664324,9.3405981,0,0,0,-1168.1982,0,2,3,2021,11,0,40,48,1,2,1,25.952063,25.952063,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,5,1,2561,4075.1711,18476.713,82536.125,103375.48,3662.614,0,2891.3086 +15641,19125,34072,-9,34070,34069,1,1,25,0,0,0,1,1,-9,0,5,6.9105182,7.1769638,0,0,0,-918.21979,0,3,3,2021,6,0,12,34,1,0,1,11.690781,11.690781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,6,2,1,496,-23957.75,-25148.676,0,0,0,0,425.47513 +15641,19126,34073,-9,34070,34069,1,0,25,0,0,0,1,1,-9,0,5,7.0292053,7.0800796,0,0,0,-1051.6263,0,3,3,2021,8,1,16,0,1,1,1,8.3633652,8.3633652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,1047,72754.297,-41916.305,0,0,0,0,867.44885 +15642,19127,34074,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.3878231,7.6410217,0,0,-996.67426,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6639709,7.6981349,51.98,54.53,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,379,592385.63,445523.56,166342.27,0,6565.1553,0,1739.8146 +15643,19128,34075,34076,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,7.8676376,7.9860487,0,9,5,-5.0025959,0,-9,-9,2021,9,1,50,45,1,1,0,7.1431656,7.1431656,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,0,9,12,5,1,864.5,177685.78,438855.5,0,0,0,3394.2256,3435.1729 +15643,19128,34076,34075,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.647193,8.74226,0,9,-5,-69.219299,0,-9,-9,2021,12,1,45,43,1,1,0,14.37801,14.37801,0,0,0,0,0,0,0,0,0,0,0,5.5367594,0,51.77,58.57,62.39,56.71,6.666666666666667,1,1,0,0,12,12,5,1,864.5,177685.78,438855.5,0,0,0,3394.2256,3435.1729 +15644,19129,34077,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-888.60083,0,-9,-9,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,4.6527743,6.3160567,67.579681,0,1,1,0,0,0,15.05,27.23,-9,-9,0,1,1,0,0,0,12,1,0,181,11207.468,0,112152.7,0,0,0,2524.4871 +15645,19130,34078,34079,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,0,0,59,-5,-28.172735,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1030056,0,58.33,39.49,51.15,49.9,8.333333333333334,1,1,0,0,12,1,4,1,1376,1317099.6,576703.38,527016.63,0,0,0,2814.5864 +15645,19130,34079,34078,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,8.4587269,8.2880821,59,5,112.24398,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3207321,51.15,49.9,58.33,39.49,10,1,1,0,0,0,1,4,1,1376,1317099.6,576703.38,527016.63,0,0,0,2814.5864 +15646,19131,34080,-9,34083,34081,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9575,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34081,34083,-9,-9,1,1,56,0,2,0,2,2,-9,0,2,8.5457382,8.1287432,0,11,17,114.24982,0,2,3,2021,17,5,24,36,1,5,0,23.828026,23.828026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.86,51.77,37.59,51.94,0,1,1,0,0,12,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34082,-9,34083,34081,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-822.71393,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34083,34081,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.9217191,7.9253855,0,11,-17,34.323898,0,1,2,2021,7,0,27,22,1,0,0,11.500323,11.500323,.05,.05,0,0,0,0,0,0,1,1,0,.37855795,0,37.59,51.94,31.86,51.77,8.333333333333334,1,1,0,0,12,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15647,19132,34084,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.3944426,8.4695568,0,0,0,-1019.6306,0,3,-9,2021,10,0,48,44,1,0,0,7.1643581,7.1643581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,1.666666666666667,1,1,0,0,12,2,4,1,175,261849.09,-44572.715,-12648.824,58187.188,0,1299.7357,1208.7032 +15648,19133,34085,34086,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,7.8782148,8.2928686,0,2,-14,9.223011,0,2,2,2021,12,3,34,34,1,3,0,11.42135,11.42135,.05,.05,0,0,0,0,0,0,0,0,0,2.3289719,0,34.82,37.09,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,864.5,631608.88,421412.81,0,0,0,0,2998.2407 +15648,19133,34086,34085,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.4870167,8.6243277,0,2,14,-131.49257,-9,-9,-9,2021,6,0,50,0,1,0,0,13.677958,13.677958,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,34.82,37.09,10,1,1,0,0,12,10,5,1,864.5,631608.88,421412.81,0,0,0,0,2998.2407 +15649,19134,34087,-9,-9,34088,1,0,21,0,0,0,2,2,-9,0,4,8.1118269,7.7700205,0,0,0,-1012.0136,0,-9,2,2021,5,0,40,40,1,0,1,8.183629,8.183629,.05,.05,0,0,0,0,0,0,0,0,0,2.0084798,0,54.2,57.49,-9,-9,10,1,1,0,0,4,2,4,1,378,-30317.537,162879.17,0,0,8239.417,0,983.48297 +15649,19135,34088,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.1443338,7.9545131,0,0,0,-967.5965,0,-9,-9,2021,9,0,40,40,1,1,0,8.8376045,8.8376045,.05,.05,0,0,0,0,0,0,0,0,0,1.7618778,0,52,55,-9,-9,8,4,6,0,0,1,2,4,1,575,392952.56,106961.08,0,0,0,0,1722.5569 +15650,19136,34089,-9,34093,34090,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.55524,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34090,34093,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.4466295,9.5217962,0,20,1,-50.975811,0,-9,2,2021,7,0,50,50,1,0,0,38.233936,38.233936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.54,57.19,57.16,56.15,8.333333333333334,1,1,0,0,8,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34091,-9,34093,34090,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.61182,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34092,-9,34093,34090,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-988.57971,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34093,34090,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,5.8648949,6.1201534,0,20,-1,74.943176,0,3,3,2021,7,0,7,0,1,0,0,6.3567505,6.3567505,.05,.05,0,0,0,0,0,0,0,0,0,1.0707533,0,57.16,56.15,45.54,57.19,8.333333333333334,1,1,0,0,1,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34094,-9,34093,34090,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.6701,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19137,34095,-9,34093,34090,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-948.19812,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.21380407,0,54.69,57.47,-9,-9,10,1,1,0,0,3,6,1,1,1001,53421.402,0,0,0,0,0,-454.85764 +15651,19138,34096,-9,34099,34097,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.1654,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34097,34099,-9,-9,1,1,40,1,2,0,1,1,-9,0,5,8.3301849,8.8729057,0,5,-2,72.955688,0,-9,-9,2021,9,1,27,27,1,1,0,21.957352,21.957352,.05,.05,0,0,0,0,0,0,0,0,0,7.3702826,0,49.25,61.25,37.92,61.06,3.333333333333333,1,1,0,1,8,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34098,-9,34099,34097,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5734,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34099,34097,-9,-9,1,0,42,1,2,0,1,1,-9,0,3,7.7024636,7.5625758,0,5,2,-56.799294,0,2,2,2021,11,2,50,60,1,2,0,4.8090229,4.8090229,.05,.05,0,0,0,0,0,0,0,0,0,7.7536077,0,37.92,61.06,49.25,61.25,3.333333333333333,1,1,0,0,9,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15652,19139,34100,-9,34102,34101,1,1,16,0,1,1,2,0,-9,0,4,0,3.7072558,3.8853531,0,0,-918.93848,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.443152,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19139,34101,34102,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.2892151,8.3070517,0,9,0,-88.06926,0,2,3,2021,16,5,70,60,1,5,0,5.5738487,5.5738487,.05,.05,0,0,0,0,0,0,1,1,0,6.865983,0,38.07,54.03,54.1,59.11,3.333333333333333,1,1,0,0,10,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19139,34102,34101,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,7.2035084,7.7186866,0,9,0,24.984751,0,3,2,2021,15,4,39,45,1,4,0,5.7321286,5.7321286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.07,54.03,3.333333333333333,1,1,0,1,10,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19140,34103,-9,34102,34101,1,0,22,0,1,0,1,1,-9,0,2,8.0973043,7.9361868,0,0,0,-1034.2679,0,2,2,2021,20,8,39,40,1,8,1,10.020595,10.020595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,37.08,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,1819,-116144.2,-121334.41,0,0,24893.541,0,1394.5714 +15653,19141,34104,34105,-9,-9,1,1,41,1,4,0,3,3,-9,0,2,7.357842,7.2571654,0,8,5,-36.257263,-9,-9,-9,2021,9,0,35,0,1,0,0,6.8773336,6.8773336,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,36.16,49.93,31.73,5,2,3,0,0,1,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34105,34104,-9,-9,1,0,36,1,4,0,1,1,-9,0,1,0,0,0,12,-5,-68.884865,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.93,31.73,47.78,36.16,3.333333333333333,2,3,0,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34106,-9,34105,34104,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1255.9136,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34107,-9,34105,34104,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.7032,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34108,-9,34105,34104,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.95764,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34109,-9,34105,34104,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1035.8345,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15654,19142,34110,34111,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.5441847,9.4920292,7.123044,37,3,56.465992,0,2,2,2021,7,0,40,40,1,0,0,28.494183,28.494183,0,0,0,0,0,0,0,0,1,1,0,3.2782109,7.5518503,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,395,2635500,1437472.3,922285.38,0,0,0,7459.7588 +15654,19142,34111,34110,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.3984432,8.0828676,3.2135406,37,-3,-98.148018,0,3,2,2021,8,0,40,43,1,0,0,11.627995,11.627995,0,0,0,1,0,0,0,0,1,1,0,0,3.2342479,54.2,57.49,54.1,59.11,10,1,1,0,0,12,7,5,1,395,2635500,1437472.3,922285.38,0,0,0,7459.7588 +15655,19143,34112,34113,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.8667145,8.797369,0,13,-1,125.59025,0,-9,-9,2021,13,2,42,44,1,2,0,20.238255,20.238255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,51.24,58.84,8.333333333333334,1,1,0,0,15,8,5,1,2878.5,1363014.3,1158579.8,267374.94,122415.72,20758.908,0,5438.2061 +15655,19143,34113,34112,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0415707,8.6324282,0,23,1,31.415796,0,2,2,2021,10,0,50,-9,1,0,0,16.890511,16.890511,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,47.15,56.66,8.333333333333334,1,1,0,0,12,8,5,1,2878.5,1363014.3,1158579.8,267374.94,122415.72,20758.908,0,5438.2061 +15656,19144,34114,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.5023851,8.5827665,0,5,-16,-53.236641,0,-9,-9,2021,9,1,42,50,1,1,0,17.728306,17.728306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.34,52.06,48.76,38.46,6.666666666666667,1,1,0,0,8,12,5,0,487,118192.66,1530.1564,73439.539,69828.055,21167.008,1052.5769,1384.8461 +15656,19145,34115,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.4899406,8.8891487,0,5,16,9.7411785,0,-9,-9,2021,5,0,37,43,1,0,0,16.121326,16.121326,0,0,0,0,0,0,0,0,0,0,0,7.8081508,0,48.76,38.46,48.34,52.06,5,1,1,0,0,13,12,5,0,177,-101580.41,2923.425,0,0,0,733.12207,3107.082 +15657,19146,34116,34117,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,37,-8,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0930928,0,64.01000000000001,32.53,54,46,10,1,1,0,0,0,10,1,0,1195,408731.09,43146.492,344061.44,0,0,0,2025.5322 +15657,19146,34117,34116,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,37,8,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,64.01000000000001,32.53,8,1,1,0,0,0,10,1,0,1195,408731.09,43146.492,344061.44,0,0,0,2025.5322 +15658,19147,34118,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,.94894058,1.1038505,0,0,0,-972.46674,0,1,1,2021,20,7,40,40,1,7,0,.0067064189,.0067064189,0,0,0,0,0,0,0,42,1,0,1,0,0,32.14,39.53,-9,-9,1.666666666666667,1,1,0,1,13,10,2,0,994,44570.438,0,0,0,0,0,297.48279 +15658,19148,34119,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,0,0,0,0,-967.30273,0,-9,-9,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,33.03,17.46,-9,-9,3.333333333333333,1,1,0,1,0,10,1,0,3806,-120640.98,0,0,0,0,370.80444,2253.3418 +15659,19149,34120,34121,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.2439585,8.2007761,6.1590533,38,1,-84.976173,0,3,2,2021,9,1,30,30,1,1,0,16.173349,16.173349,.05,.05,0,0,0,0,0,0,1,1,0,8.5848064,6.2575984,51.84,47.71,57.16,56.15,8.333333333333334,1,1,0,0,10,8,4,1,593,936663.25,810727.13,142488.17,93416.906,0,0,3983.7383 +15659,19149,34121,34120,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,4.8103566,4.6194263,38,-1,-4.520227,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5160742,57.16,56.15,51.84,47.71,8.333333333333334,1,1,0,0,0,8,4,1,593,936663.25,810727.13,142488.17,93416.906,0,0,3983.7383 +15660,19150,34122,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,2,8.1679525,8.2618999,0,0,0,-1044.0634,0,2,3,2021,14,5,42,38,1,5,1,12.429222,12.429222,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.06,51.53,-9,-9,10,1,1,0,0,9,11,4,1,336,143177.66,48106.133,0,0,0,0,1120.0502 +15661,19151,34123,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3834085,8.6211443,6.7886181,0,0,-1044.5305,0,2,2,2021,6,0,36,36,1,0,0,15.460714,15.460714,.05,.05,0,0,0,0,0,0,0,0,0,3.1710842,7.3095379,57.16,56.15,-9,-9,10,3,4,0,0,7,8,5,0,1092,207319.95,-98178.922,0,0,1554.8722,0,1504.7633 +15661,19152,34124,-9,34123,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8389759,8.9208384,0,0,0,-999.15436,0,2,2,2021,8,0,37,40,1,0,1,22.801151,22.801151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,294,116519.59,-48775.176,0,0,0,0,2299.7373 +15662,19153,34125,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.43784,7.4349794,0,0,0,-1067.7689,0,3,3,2021,9,3,28,28,1,3,0,7.1122522,7.1122522,0,0,0,0,0,0,0,2,0,0,0,3.7984443,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,388,-161350.42,0,170310.77,115284.34,2932.7437,0,183.7041 +15663,19154,34126,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.607626,6.6924834,0,0,-1079.7382,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2137022,6.5816479,43.1,38.74,-9,-9,5,1,1,0,0,1,4,2,1,852,275244.19,86314.164,119861.05,0,0,0,1101.2069 +15664,19155,34127,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4524307,8.3256369,0,0,0,-1079.4108,0,-9,-9,2021,12,0,40,49,1,0,0,11.473802,11.473802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,577,93941.086,-56950.805,227355.14,78168.414,0,0,1357.9277 +15665,19156,34128,-9,34129,34131,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.87756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34129,34131,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,8.2017345,7.9425511,0,8,0,112.00899,0,-9,-9,2021,6,0,40,40,1,0,0,8.6989536,8.6989536,0,0,0,0,0,0,0,0,1,1,0,6.3770895,0,52.54,54.24,38.56,55.57,10,1,1,0,0,12,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34130,-9,34129,34131,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.6217,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34131,34129,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,7.2507873,7.260725,0,8,0,-91.792694,0,2,2,2021,17,6,40,28,1,6,0,4.8965116,4.8965116,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,38.56,55.57,52.54,54.24,5,1,1,0,0,12,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15666,19157,34132,-9,34135,34134,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.3203,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34133,-9,34135,34134,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.489,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34134,34135,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.4064856,8.5786047,0,11,-2,53.576023,0,2,2,2021,7,0,43,41,1,0,0,10.45372,10.45372,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.72,52.59,55.36,51.57,5,1,1,0,1,13,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34135,34134,-9,-9,1,0,40,0,3,0,1,1,-9,0,3,7.9037285,8.0240164,0,11,2,-67.849533,0,-9,-9,2021,8,0,30,31,1,0,0,13.795421,13.795421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,29.72,52.59,6.666666666666667,1,1,0,0,13,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34136,-9,34135,34134,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.38788,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15667,19158,34137,34138,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.6737156,7.7992086,0,6,-3,-36.42667,0,2,2,2021,35,12,32,36,1,12,0,7.2793779,7.2793779,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,35.52,53,54,1.666666666666667,1,1,0,0,8,1,3,0,919.5,286107.28,192315.22,71033.609,67640.438,0,0,1798.5087 +15667,19158,34138,34137,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.8285999,6.5951123,0,6,3,-50.997963,0,-9,-9,2021,9,0,32,32,1,1,0,4.2060447,4.2060447,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,23.29,35.52,8,1,1,0,0,1,1,3,0,919.5,286107.28,192315.22,71033.609,67640.438,0,0,1798.5087 +15668,19159,34139,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.916081,7.1628375,0,0,0,-1100.8601,0,3,3,2021,6,0,20,18,1,0,0,7.9204025,7.9204025,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,11,6,3,0,1113,187892.17,0,123703.71,48793.715,3429.0652,1358.7848,1582.0226 +15669,19160,34140,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8399401,6.6579909,0,0,-998.0047,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9508481,44.43,56.74,-9,-9,6.666666666666667,1,1,0,0,6,9,2,0,1870,502329.22,59645.453,268136.53,0,0,0,1839.5281 +15670,19161,34141,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3240881,8.3151588,5.8516331,0,0,-991.26868,0,2,2,2021,12,1,39,37,1,1,0,12.005638,12.005638,.05,.05,0,0,0,0,0,0,1,1,0,5.8631897,0,37.17,55.77,-9,-9,5,1,1,0,0,5,9,4,1,128,236398.19,187616.69,0,0,0,0,1756.3818 +15671,19162,34142,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,7.6230702,7.4682393,0,0,-1060.1068,0,2,-9,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,7.7908797,7.2905159,36.02,51.34,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1726,55721.098,162584.94,0,0,0,1005.1389,2217.5833 +15672,19163,34143,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.5898781,8.5858603,0,0,0,-992.08386,0,3,3,2021,29,12,40,45,1,12,0,14.868392,14.868392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.42,52.4,-9,-9,1.666666666666667,2,3,0,0,15,7,5,1,643,-62767.391,99158.281,0,0,0,354.66061,2249.656 +15673,19164,34144,34145,-9,-9,1,0,39,1,1,0,2,2,-9,1,1,0,0,0,9,-22,75.442619,0,-9,-9,2021,15,3,0,6,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,53.29,45.74,5,1,1,1,0,7,6,4,1,938.5,42275.449,124072.09,0,0,1358.9484,0,3347.8018 +15673,19164,34145,34144,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,8.825386,8.9015503,6.1724653,9,22,112.13519,0,3,3,2021,14,2,47,55,1,2,0,12.393432,12.393432,0,0,0,0,0,0,0,2,1,1,0,0,6.929318,53.29,45.74,32.5,17.73,6.666666666666667,1,1,0,0,13,6,4,1,938.5,42275.449,124072.09,0,0,1358.9484,0,3347.8018 +15673,19165,34146,-9,34147,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.0196,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,1,1,1032,39357.516,0,0,0,0,0,518.66632 +15673,19165,34147,-9,34144,34145,1,0,18,1,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.7814,-9,2,2,2021,24,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.23,48.87,-9,-9,5,1,1,0,0,0,6,1,1,1032,39357.516,0,0,0,0,0,518.66632 +15674,19166,34148,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,7.0110421,6.9209456,0,0,-947.35834,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0060802,7.0648861,49.5,30.73,-9,-9,10,1,1,0,0,0,2,2,1,391,316933.97,94241,0,0,0,0,451.32776 +15675,19167,34149,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.782671,8.6743069,0,0,0,-1007.1494,0,2,1,2021,11,0,38,38,1,0,0,13.504534,13.504534,.05,.05,0,0,0,0,0,0,0,0,0,4.1783166,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,805,209144.67,-17573.963,0,0,0,0,1564.7177 +15676,19168,34150,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.8468814,7.6104002,0,0,0,-984.52142,-9,3,3,2021,11,0,38,0,1,0,0,8.4986725,8.4986725,0,0,0,0,0,0,0,2,0,0,0,0,0,48,49,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,301,-68695.586,1813.754,195982.28,23990.404,0,0,1340.8925 +15676,19169,34151,-9,34150,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8202648,8.107439,0,0,0,-1032.2898,-9,3,-9,2021,12,1,37,0,1,1,1,5.4160781,5.4160781,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,13,4,1,1158,-164131.95,0,0,0,0,-2382.3091,1211.9775 +15677,19170,34152,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,0,5.3776917,5.2978864,0,0,-944.0282,0,2,2,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0361552,0,47.71,51.43,-9,-9,6.666666666666667,1,1,1,0,10,9,2,1,1064,91138.875,0,0,0,0,0,377.88052 +15678,19171,34153,34157,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,20,-3,17.554338,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.63,53.99,8.333333333333334,2,3,0,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34154,-9,34153,34157,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.8955,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34155,-9,34153,34157,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-996.29547,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34156,-9,34153,34157,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-969.32599,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34157,34153,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,5.3080664,5.4832201,0,20,3,86.611786,0,3,3,2021,7,0,38,38,1,0,0,.68185735,.68185735,0,0,0,0,0,0,0,0,1,1,0,0,0,52.63,53.99,57.33,53.46,8.333333333333334,2,3,0,0,12,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19172,34158,-9,34153,34157,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1135.6582,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.8,47,-9,-9,10,2,3,0,0,0,6,1,1,323,102492.43,0,0,0,0,0,0 +15679,19173,34159,34160,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.4794431,8.3578453,7.7158465,8,8,23.072433,0,-9,-9,2021,14,2,5,50,1,2,0,47.485176,47.485176,.05,.05,0,0,0,0,0,0,0,0,0,7.2927551,8.2382097,52.41,47.5,52.31,40.62,5,1,1,0,0,10,11,4,1,134.5,426531.59,440233.44,156480.67,83506.555,6412.2949,3356.0571,2846.6548 +15679,19173,34160,34159,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.7906356,6.794167,0,8,-8,94.789154,0,3,2,2021,7,0,16,0,1,0,0,6.4971128,6.4971128,.05,.05,0,0,0,0,0,7,0,0,0,1.2646158,0,52.31,40.62,52.41,47.5,1.666666666666667,1,1,0,0,9,11,4,1,134.5,426531.59,440233.44,156480.67,83506.555,6412.2949,3356.0571,2846.6548 +15680,19174,34161,34163,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.8143158,8.8010168,0,9,-3,8.416604,0,2,2,2021,12,0,43,43,1,0,0,18.644094,18.644094,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.55,57.37,52.34,56.95,6.666666666666667,1,1,0,0,8,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15680,19174,34162,-9,34163,34161,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.75604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15680,19174,34163,34161,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4771476,7.6436443,0,9,3,-11.786849,0,-9,-9,2021,7,0,26,27,1,0,0,9.1542902,9.1542902,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,43.55,57.37,6.666666666666667,1,1,0,0,12,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15681,19175,34164,34165,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,46,-1,58.611771,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1289151,0,62.41,29.71,57.38,40.19,8.333333333333334,1,1,0,0,0,6,2,1,1109,376858.38,173651.59,225191.03,0,0,0,1655.9414 +15681,19175,34165,34164,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.0562119,7.3005905,45,1,-34.259159,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4652066,6.9422188,57.38,40.19,62.41,29.71,10,1,1,0,0,0,6,2,1,1109,376858.38,173651.59,225191.03,0,0,0,1655.9414 +15682,19176,34166,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,5,9.0234461,9.0208941,0,0,0,-1089.5844,0,2,2,2021,6,0,45,45,1,0,0,25.766628,25.766628,.05,.05,0,0,0,0,0,0,1,1,0,7.0825262,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,256,434393.59,207716.55,98770.695,10222.45,17288.932,0,2733.6501 +15683,19177,34167,34168,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,8.0091486,8.433342,0,8,0,47.841972,0,2,2,2021,10,0,37,42,1,1,0,12.760218,12.760218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,40.38,61.66,7,1,1,0,0,1,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34168,34167,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,0,0,0,8,0,10.549014,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,50,57,5,1,1,1,0,7,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34169,-9,34168,34167,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3311,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34170,-9,34168,34167,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.80273,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15684,19178,34171,34172,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4499083,7.3226819,55,3,-71.024406,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,17.241121,0,0,1,1,0,3.4769747,7.4527082,57,29.53,50.54,49.66,6.666666666666667,1,1,0,0,0,2,2,1,853,1043624,287419.72,462095.53,0,0,0,9780.3057 +15684,19178,34172,34171,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.6968126,5.7742662,55,-3,69.561989,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,1.4740324,0,0,1,1,0,9.6321716,5.6303525,50.54,49.66,57,29.53,8.333333333333334,1,1,0,0,0,2,2,1,853,1043624,287419.72,462095.53,0,0,0,9780.3057 +15685,19179,34173,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,5.8540397,5.6844869,0,0,-1097.8262,0,3,3,2021,2,0,0,0,4,0,0,0,0,0,0,0,1,3.4183946,126.07317,49.116421,2,1,1,0,4.4446831,5.5974026,41.64,36.34,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,772,539769.19,69318.547,380485.41,0,0,0,236.10316 +15685,19180,34174,-9,34173,-9,1,0,51,0,0,0,2,2,-9,0,2,0,7.5416493,7.5135546,0,0,-1153.8303,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.9066997,48.02,34.89,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,303,591092.94,818332.88,0,0,0,0,1390.4114 +15686,19181,34175,-9,34177,34176,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5533,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15686,19181,34176,34177,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.3588171,8.2735872,0,6,-1,14.344504,0,2,2,2021,12,2,42,41,1,2,0,11.20647,11.20647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,60.13,49.27,8.333333333333334,1,1,0,0,11,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15686,19181,34177,34176,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.4648247,8.4636755,0,6,1,19.519428,0,2,2,2021,7,0,30,21,1,0,0,18.887299,18.887299,0,0,0,0,0,0,0,0,1,1,0,0,0,60.13,49.27,47.46,52.7,8.333333333333334,1,1,0,0,11,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15687,19182,34178,34181,-9,-9,1,1,46,1,2,0,1,1,-9,0,5,9.5826235,9.7034721,0,6,4,66.795158,0,-9,-9,2021,7,0,50,49,1,0,0,30.485622,30.485622,.05,.05,0,0,0,0,0,0,0,0,0,8.0140123,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,8,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34179,-9,34181,34178,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.7235,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34180,-9,34181,34178,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.49646,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34181,34178,-9,-9,1,0,42,1,2,0,1,1,-9,0,4,0,0,0,6,-4,-99.90332,0,2,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,6.666666666666667,1,1,0,0,9,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15688,19183,34182,-9,34184,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.2351,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15688,19183,34183,-9,34184,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-861.01892,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15688,19183,34184,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,5.1263785,5.0294137,0,0,-1047.5618,-9,2,-9,2021,1,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.4297485,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,5,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15689,19184,34185,34187,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.1916828,8.1151648,0,18,1,-2.1627522,0,2,2,2021,11,0,40,43,1,0,0,10.384862,10.384862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,51.83,57.2,6.666666666666667,1,1,0,0,8,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34186,-9,34187,34185,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.25378,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34187,34185,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,4.4301858,4.2314987,0,18,-1,87.090347,0,3,3,2021,5,0,20,20,1,0,0,.42042127,.42042127,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,50.48,56.4,8.333333333333334,1,1,0,0,7,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34188,-9,34187,34185,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.84668,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15690,19185,34189,-9,34190,34192,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1103.0366,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,0,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34190,34192,-9,-9,1,0,45,0,1,0,1,1,-9,1,2,8.0956697,8.1480379,0,7,-1,.59838676,0,3,1,2021,14,2,17,29,1,2,0,17.717798,17.717798,.05,.05,0,0,0,0,0,0,1,1,0,7.7027607,0,41.36,36.72,57.33,53.46,6.666666666666667,4,2,0,0,7,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34191,-9,34190,34192,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.5773,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34192,34190,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.3538027,9.4893398,0,7,1,-17.84375,0,2,2,2021,6,0,40,37,1,0,0,21.269556,21.269556,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.36,36.72,8.333333333333334,4,2,0,0,7,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15691,19186,34193,34196,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.8751879,8.2984962,0,6,-7,4.8080988,0,-9,-9,2021,6,0,37,40,1,0,0,10.991124,10.991124,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,38.11,59.76,10,3,4,0,0,3,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34194,-9,34193,34196,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.7212,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34195,-9,34193,34196,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-863.82935,-9,2,3,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3019507,0,36.03,51.13,-9,-9,5,3,4,0,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34196,34193,-9,-9,1,1,48,0,3,0,3,3,-9,0,4,9.6781549,9.7438726,0,6,7,3.1376383,0,2,2,2021,15,5,39,40,1,5,0,43.358101,43.358101,.05,.05,0,0,0,0,0,0,1,0,1,9.365942,0,38.11,59.76,60.12,54.8,6.666666666666667,1,1,0,0,14,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34197,-9,34193,34196,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1241.0211,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,3,4,-9,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15692,19187,34198,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8076944,9.1909409,0,0,0,-1028.2761,0,1,2,2021,10,1,40,28,1,1,0,22.198986,22.198986,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,4,8,5,1,1460,48136.629,132545.72,0,0,0,0,2266.4946 +15693,19188,34199,34200,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.9104419,8.0945177,0,18,4,-48.829849,0,2,-9,2021,10,0,39,39,1,0,0,10.957531,10.957531,0,0,.05,0,0,0,0,2,1,1,0,3.2843108,0,46.37,50.17,48.89,38.67,6.666666666666667,1,1,0,0,11,11,4,1,574,117534,54997.098,215314.69,91573.547,0,11494.162,3074.4326 +15693,19188,34200,34199,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.6581407,7.8497272,0,18,-4,-23.411877,0,2,1,2021,5,1,30,0,1,1,0,8.8044538,8.8044538,0,0,0,0,0,0,0,0,1,1,0,2.6638672,0,48.89,38.67,46.37,50.17,3.333333333333333,1,1,0,0,11,11,4,1,574,117534,54997.098,215314.69,91573.547,0,11494.162,3074.4326 +15694,19189,34201,-9,34204,-9,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.8782,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34202,-9,34204,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.17987,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34203,-9,34204,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.38263,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34204,-9,-9,-9,1,0,35,1,3,0,2,2,0,0,3,0,0,0,0,0,-1035.1621,-9,3,3,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.98,52.59,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15695,19190,34205,34206,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.9545321,7.5167398,52,5,-96.008972,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9775894,7.1900597,57.16,56.15,52.84,35.8,10,1,1,0,0,0,2,3,1,4135.5,941161.25,317051.31,255898.66,0,0,0,2213.7769 +15695,19190,34206,34205,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.2661195,6.889679,52,-5,-25.041557,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8192239,6.7611637,52.84,35.8,57.16,56.15,8.333333333333334,1,1,0,0,5,2,3,1,4135.5,941161.25,317051.31,255898.66,0,0,0,2213.7769 +15696,19191,34207,34209,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.1122847,7.9151378,9,3,34.2976,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36876953,8.1589746,66.2,41.05,57.16,56.15,10,1,1,0,0,8,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15696,19191,34208,-9,34209,34207,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.922,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.45522442,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15696,19191,34209,34207,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,68.1091,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.99185944,0,57.16,56.15,66.2,41.05,8.333333333333334,1,1,0,0,0,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15697,19192,34210,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.2399139,8.3652744,0,0,-934.15973,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.7063537,0,40.712841,0,1,1,0,5.4760351,8.276597,48.07,37.94,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,412,1230589.6,1094366.9,0,0,0,10318.711,3310.6919 +15698,19193,34211,34213,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.3303232,7.4647474,0,7,-3,95.103073,0,-9,-9,2021,7,0,30,30,1,0,0,6.0781679,6.0781679,0,0,0,0,0,0,0,0,1,1,0,0,0,61.88,41.68,37.88,15.31,8.333333333333334,1,1,0,0,9,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19193,34212,-9,34211,34213,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.39282,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19193,34213,34211,-9,-9,1,1,56,0,1,0,2,2,-9,0,1,0,0,0,30,3,-36.917149,0,2,2,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,15.31,61.88,41.68,5,1,1,0,0,0,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19194,34214,-9,34211,34213,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1016.2007,0,2,2,2021,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,2,1,1,1,26,5467.5449,0,0,0,0,0,-597.70599 +15698,19195,34215,-9,34211,34213,1,0,23,0,1,0,2,2,-9,0,3,7.8103113,7.8270721,0,0,0,-983.53827,0,2,2,2021,17,5,47,52,1,5,1,6.7593846,6.7593846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.48,52.55,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,1825,122992.16,38347.52,0,0,0,0,645.73877 +15699,19196,34216,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.2768936,7.8905673,0,0,0,-972.45874,0,3,2,2021,6,0,38,41,1,0,0,11.075934,11.075934,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1603,-127529.01,-68026.391,0,0,0,0,698.87421 +15700,19197,34217,34218,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.4679785,7.4560304,9,2,-19.947348,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1017177,7.6002102,51.48,43.71,49.75,32.52,8.333333333333334,1,1,0,0,0,11,3,0,288.5,2178233,732728.63,261277.25,0,0,0,1846.9672 +15700,19197,34218,34217,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.654995,7.3331165,9,-2,-20.829882,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.827926,0,0,1,1,0,3.3094518,7.670012,49.75,32.52,51.48,43.71,6.666666666666667,1,1,0,0,0,11,3,0,288.5,2178233,732728.63,261277.25,0,0,0,1846.9672 +15701,19198,34219,-9,-9,-9,1,0,74,2,2,0,1,1,-9,0,3,0,0,0,0,0,-900.5636,-9,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.168395,0,51,46,-9,-9,7,1,1,0,0,2,8,1,1,279,-13602.377,0,0,0,0,0,-184.50955 +15702,19199,34220,34221,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.6125965,8.3658447,5.2484498,2,0,-53.389404,0,-9,-9,2021,8,0,41,41,1,0,0,14.49685,14.49685,0,0,0,0,0,0,0,0,1,1,0,5.2047544,0,52.21,59.91,57.06,57.76,1.666666666666667,1,1,0,0,9,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15702,19199,34221,34220,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.5730143,8.6502342,0,2,0,-41.630573,0,-9,-9,2021,6,0,56,40,1,0,0,10.218009,10.218009,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.21,59.91,10,1,1,0,0,1,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15702,19199,34222,-9,34220,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.62048,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15703,19200,34223,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.83588,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.8465919,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,1,0,2,1,0,3540,112275.28,75976.813,0,0,0,0,1433.6244 +15704,19201,34224,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,6.7263622,6.7910781,0,0,0,-1022.5179,0,3,3,2021,21,9,15,0,1,9,0,6.9096661,6.9096661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.89,51.11,-9,-9,8.333333333333334,2,3,0,0,1,6,2,0,681,104719.87,-41028.551,0,0,0,0,-7.7929387 +15704,19202,34225,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.8532991,7.561892,0,0,0,-1042.2954,0,3,3,2021,11,0,15,0,1,2,0,20.587763,20.587763,0,0,0,0,0,0,0,7,1,1,0,1.9075687,0,54.77,55.87,-9,-9,10,2,3,0,0,1,6,3,0,382,73469.023,0,0,0,0,0,1589.4933 +15704,19203,34226,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-962.55115,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,7.6622539,39.749084,68.433067,0,1,1,0,0,0,39.08,22.93,-9,-9,3.333333333333333,2,3,0,0,0,6,1,0,596,-16145.528,-85506.852,0,0,0,0,1201.4468 +15705,19204,34227,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.2144279,7.2311578,0,0,0,-933.47632,0,3,3,2021,6,0,30,50,1,0,0,5.6979446,5.6979446,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,859,59256.645,0,0,0,0,0,898.65808 +15706,19205,34228,34229,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.6303358,9.0084257,0,2,-7,75.612396,0,-9,-9,2021,12,1,43,37,1,1,0,21.296301,21.296301,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.14,60.45,6.666666666666667,4,2,0,0,1,7,5,1,342,132906.34,-85157.242,396727.22,283101.09,1846.5093,0,4468.6797 +15706,19205,34229,34228,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.8411446,8.779892,0,2,7,68.604874,0,3,2,2021,10,2,42,42,1,2,0,15.432776,15.432776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,342,132906.34,-85157.242,396727.22,283101.09,1846.5093,0,4468.6797 +15707,19206,34230,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.5457788,6.3799582,0,0,-986.08698,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3614972,6.3189044,48.31,18.87,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,1519,127055.84,183618.8,243347.03,0,0,10856.942,680.64044 +15708,19207,34231,-9,34233,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.9238,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34232,-9,34233,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.52533,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34233,-9,-9,-9,1,0,35,1,4,0,2,2,-9,0,2,0,5.2074609,5.1572886,0,0,-1173.1259,-9,3,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1589131,0,30.74,41.75,-9,-9,3.333333333333333,1,1,0,1,2,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34234,-9,34233,-9,1,1,17,1,4,1,2,0,-9,0,3,0,0,0,0,0,-929.35864,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.31,46.66,-9,-9,10,1,1,0,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34235,-9,34233,-9,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.1172,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15709,19208,34236,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.4863091,7.2734218,0,0,-974.00305,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.178605,7.6184077,58.32,50.22,-9,-9,10,1,1,0,0,3,5,3,1,421,563685.88,274664.94,72744.586,0,0,0,1822.6053 +15710,19209,34237,34238,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,15,-2,-37.119377,0,3,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,54,16.04,23.99,3.333333333333333,1,1,0,0,0,4,2,1,1228,102070.37,201406.44,0,0,2535.7156,1347.731,3089.9634 +15710,19209,34238,34237,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,5.5029073,5.5366445,15,2,-5.658596,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60540646,5.2833114,16.04,23.99,50,54,0,1,1,0,1,0,4,2,1,1228,102070.37,201406.44,0,0,2535.7156,1347.731,3089.9634 +15711,19210,34239,-9,34240,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.19135,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15711,19210,34240,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.1349306,7.1767545,0,0,0,-1031.6454,0,2,3,2021,8,2,10,10,1,2,0,13.89351,13.89351,0,0,0,0,0,0,0,0,1,0,1,0,0,65.5,31.87,-9,-9,5,1,1,0,0,15,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15711,19210,34241,-9,34240,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.79492,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15712,19211,34242,34243,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,7.9235072,7.983304,5.4743447,2,0,56.941582,0,-9,-9,2021,8,0,40,0,1,0,0,8.8675251,8.8675251,.05,.05,0,0,0,0,0,0,0,0,0,7.5000196,0,57.06,57.76,43.38,62.58,8.333333333333334,1,1,0,0,0,8,5,0,818.5,164552.78,18744.355,310372.97,220734.16,8876.8086,0,4512.8555 +15712,19211,34243,34242,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.3384094,8.4579916,5.7929535,2,0,101.81123,0,1,1,2021,12,0,25,16,1,0,0,18.989937,18.989937,.05,.05,0,0,0,0,0,0,0,0,0,5.8377047,0,43.38,62.58,57.06,57.76,8.333333333333334,1,1,0,0,5,8,5,0,818.5,164552.78,18744.355,310372.97,220734.16,8876.8086,0,4512.8555 +15712,19212,34244,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9831176,8.1540203,0,0,0,-928.54138,-9,-9,-9,2021,6,0,36,0,1,0,0,10.285155,10.285155,0,0,0,0,0,0,0,0,0,0,0,3.5091693,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,997,-86846.617,0,0,0,0,0,787.87427 +15713,19213,34245,34246,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,7.9241481,7.7594209,5.735445,23,8,-20.348202,0,3,3,2021,11,0,40,60,1,2,0,8.3617754,8.3617754,0,0,0,0,0,0,0,0,1,0,1,6.0750623,0,48,51,45,51,5,2,3,0,0,13,6,3,1,924.5,128511.98,0,0,0,0,0,1910.0742 +15713,19213,34246,34245,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,23,-8,24.294764,0,3,3,2021,13,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,51,48,51,5,2,3,1,0,0,6,3,1,924.5,128511.98,0,0,0,0,0,1910.0742 +15713,19214,34247,-9,34246,34245,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.3018,-9,2,1,2021,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.55,60.42,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,1055,0,0,0,0,0,0,0 +15714,19215,34248,-9,34251,34250,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6532,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34249,-9,34251,34250,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.76056,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34250,34251,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.4939723,7.8737621,0,14,2,17.849796,0,3,3,2021,11,0,45,40,1,0,0,4.1906056,4.1906056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,43.37,57.28,6.666666666666667,1,1,0,0,11,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34251,34250,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.1521301,7.9581065,0,14,-2,-78.930008,0,2,3,2021,9,1,33,36,1,1,0,12.428969,12.428969,0,0,0,0,0,0,0,2,1,1,0,0,0,43.37,57.28,51.83,57.2,8.333333333333334,1,1,0,0,10,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15715,19216,34252,34253,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.2928762,8.4957457,0,12,5,76.120697,0,3,2,2021,7,0,40,25,1,0,0,11.4648,11.4648,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.12,54.8,51.73,58.82,8.333333333333334,1,1,0,0,13,2,4,1,2388.5,396733.13,187679,281380.16,-17546.439,1216.2517,6158.9731,2353.9849 +15715,19216,34253,34252,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.0709748,7.0365758,0,12,-5,54.550735,0,3,3,2021,11,0,28,15,1,0,0,4.6199226,4.6199226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,60.12,54.8,8.333333333333334,1,1,0,0,10,2,4,1,2388.5,396733.13,187679,281380.16,-17546.439,1216.2517,6158.9731,2353.9849 +15715,19217,34254,-9,34253,34252,1,1,20,0,0,0,3,3,-9,0,2,0,5.1852131,5.302186,0,0,-965.04102,1,2,1,2021,7,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6288695,0,25.72,53.53,-9,-9,5,1,1,0,0,1,2,2,1,359,-198591.61,0,0,0,0,3189.574,335.84683 +15716,19218,34255,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.0875993,7.2749949,0,0,0,-964.17468,0,3,3,2021,26,10,24,20,1,10,0,6.0841765,6.0841765,0,0,0,0,0,0,0,0,1,1,0,0,0,29.6,59.45,-9,-9,1.666666666666667,1,1,0,1,5,9,2,0,806,190500.38,81077.055,266199.22,99124.875,0,0,945.3324 +15716,19218,34256,-9,34255,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.995,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,2,0,806,190500.38,81077.055,266199.22,99124.875,0,0,945.3324 +15716,19219,34257,-9,34255,-9,1,0,23,0,1,0,2,2,-9,0,4,7.9845877,8.2558174,0,0,0,-873.55377,0,2,-9,2021,6,0,42,43,1,0,1,8.0910759,8.0910759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,212,-103679.12,48879.301,0,0,0,0,1330.45 +15716,19220,34258,-9,34255,-9,1,1,21,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1056.8656,0,2,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4206498,0,48,59,-9,-9,7,1,1,0,0,0,9,1,0,205,-192376.48,0,0,0,0,0,-81.622734 +15717,19221,34259,-9,-9,-9,1,0,26,0,0,0,2,2,1,0,4,7.706285,7.8078856,0,0,0,-1118.4666,-9,1,2,2021,16,4,37,0,1,4,0,6.5848055,6.5848055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.19,62.45,-9,-9,5,1,1,0,0,7,1,3,0,1489,-127758.9,70372.227,0,0,0,322.30884,384.85614 +15718,19222,34260,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.970767,7.8266191,0,0,-908.37317,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9597483,56.67,48.31,-9,-9,10,1,1,0,0,1,7,3,0,373,678901.69,501453.38,325995.47,0,0,0,2194.9011 +15719,19223,34261,34264,-9,-9,1,1,46,1,2,0,1,1,-9,0,3,8.5915995,8.2737932,0,6,9,-49.738762,0,-9,-9,2021,12,2,37,36,1,2,0,10.407855,10.407855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.69,59.62,57.32,42.58,8.333333333333334,1,1,0,0,7,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34262,-9,34264,34261,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.771,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34263,-9,34264,34261,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.17169,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34264,34261,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5765915,8.5853214,0,6,0,176.84482,0,2,2,2021,10,2,36,36,1,2,0,14.561793,14.561793,0,0,0,0,0,0,0,0,1,1,0,2.2505558,0,57.32,42.58,40.69,59.62,8.333333333333334,1,1,0,0,7,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15720,19224,34265,34266,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,8.5930977,8.5624294,61,6,-15.853036,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8676481,8.4741478,54.56,43.56,59.53,56.44,8.333333333333334,1,1,0,0,0,4,4,1,320.5,1310657.8,396983.09,317459.81,0,0,0,3947.6396 +15720,19224,34266,34265,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.7064528,6.7747159,61,-6,-133.04796,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6056104,7.1422772,59.53,56.44,54.56,43.56,8.333333333333334,1,1,0,0,0,4,4,1,320.5,1310657.8,396983.09,317459.81,0,0,0,3947.6396 +15721,19225,34267,-9,34270,34271,1,0,14,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1016.8954,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34268,-9,34270,34271,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.6898,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34269,-9,34270,34271,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.8782,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34270,34271,-9,-9,1,0,46,0,4,0,3,3,-9,0,3,0,0,0,18,-14,54.601627,0,3,3,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,56.19,51,49,8.333333333333334,2,3,0,1,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34271,34270,-9,-9,1,1,60,0,4,0,3,3,-9,0,3,8.2555246,8.2344437,0,18,14,74.582756,0,-9,-9,2021,10,0,38,44,1,1,0,10.43284,10.43284,0,0,.05,0,0,0,0,0,1,1,0,5.0098357,0,51,49,39.5,56.19,7,2,3,0,0,1,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15722,19226,34272,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.6029816,4.4131346,0,0,-1060.6709,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7512519,4.6712451,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,441,134415.53,25305.926,0,0,0,0,1289.9198 +15723,19227,34273,34274,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.4801064,8.5805502,0,24,-4,28.647955,0,3,3,2021,11,0,44,42,1,0,0,13.576081,13.576081,0,0,.05,0,0,0,0,0,1,1,0,5.9469323,0,58.24,41.84,53,55,8.333333333333334,2,3,0,0,8,8,5,1,481,772811.06,83327.102,678804.06,109092.42,0,0,4836.5771 +15723,19227,34274,34273,34275,-9,1,1,47,0,0,0,1,1,-9,0,4,8.4948931,9.0081177,0,6,4,-27.952148,0,2,-9,2021,9,0,40,42,1,1,0,18.65704,18.65704,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,55,58.24,41.84,8,2,3,0,0,1,8,5,1,481,772811.06,83327.102,678804.06,109092.42,0,0,4836.5771 +15723,19228,34275,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1045.2336,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,1,332,-77635.891,0,0,0,0,0,946.88477 +15724,19229,34276,34278,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,7.4140477,7.4515901,0,13,-2,-62.465996,0,2,3,2021,8,0,20,19,1,0,0,11.555369,11.555369,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,29.22,47.96,8.333333333333334,2,3,0,0,8,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34277,-9,34276,34278,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.3757,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34278,34276,-9,-9,1,1,37,0,4,0,1,1,-9,0,2,8.9136848,8.9746284,0,13,2,64.37188,0,3,3,2021,26,11,45,46,1,11,0,19.57547,19.57547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.22,47.96,58.15,52.91,1.666666666666667,2,3,0,0,9,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34279,-9,34276,34278,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.1412,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34280,-9,34276,34278,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-988.42053,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15725,19230,34281,34282,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,9.1934729,9.1338463,0,24,-6,185.21133,0,2,2,2021,2,0,40,40,1,0,0,22.049814,22.049814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,54.69,33.19,8.333333333333334,1,1,0,0,14,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15725,19230,34282,34281,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,8.8526659,8.7670298,0,26,6,29.430487,0,3,3,2021,8,1,65,54,1,1,0,11.289167,11.289167,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,33.19,57.65,56.13,6.666666666666667,1,1,0,0,12,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15725,19230,34283,-9,34282,34281,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-885.53339,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15726,19231,34284,-9,34286,-9,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1085.761,0,2,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.71,46.65,-9,-9,3.333333333333333,1,1,0,0,1,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19231,34285,-9,34286,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.4165,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19231,34286,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.2983508,7.2529893,0,0,0,-924.27203,0,2,2,2021,8,0,20,17,1,0,0,7.6427789,7.6427789,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.04,52.8,-9,-9,6.666666666666667,1,1,0,0,9,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19232,34287,-9,34286,-9,1,0,20,0,1,0,2,2,-9,0,3,7.1068239,7.1407814,0,0,0,-944.92963,0,2,-9,2021,8,1,25,23,1,1,1,5.3470821,5.3470821,0,0,0,0,0,0,0,0,1,1,0,0,0,45.35,54.75,-9,-9,8.333333333333334,1,1,0,0,1,9,2,0,230,-88806.773,0,0,0,173.03275,390.12305,738.12238 +15727,19233,34288,34289,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.2984872,6.6147685,51,-3,40.609322,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0912042,6.3148117,52.98,41.68,46.2,43.53,8.333333333333334,1,1,0,0,0,4,2,1,1310,741022.5,299835.88,368427.34,0,0,0,2468.8691 +15727,19233,34289,34288,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.0834413,7.0296326,51,3,-.13492879,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7699752,7.0419679,46.2,43.53,52.98,41.68,8.333333333333334,1,1,0,0,6,4,2,1,1310,741022.5,299835.88,368427.34,0,0,0,2468.8691 +15728,19234,34290,-9,-9,34292,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1040.8442,-9,-9,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.9855399,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19234,34291,-9,-9,34292,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-852.1438,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19234,34292,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.4456663,7.9369364,0,0,0,-1143.1827,0,3,3,2021,9,0,40,40,1,0,0,8.7625999,8.7625999,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.12,54.85,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19235,34293,-9,-9,34292,1,0,20,0,1,0,2,2,-9,0,4,7.4049315,7.4240093,0,0,0,-991.39227,0,-9,2,2021,19,6,40,55,1,6,1,4.0208931,4.0208931,0,0,0,0,0,0,0,0,1,0,1,2.2749739,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,947,-33176.887,0,0,0,0,0,766.9895 +15729,19236,34294,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4846029,8.3008871,0,0,0,-1027.7089,-9,-9,-9,2021,10,1,39,0,1,1,0,14.064137,14.064137,.05,.05,.05,0,0,0,0,0,0,0,0,7.8875728,0,54.36,45.2,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,235,178207.69,410477.78,206248.69,87637,0,215.55786,3176.7273 +15729,19237,34295,-9,34294,-9,1,1,28,0,0,0,1,1,-9,0,4,8.609849,8.7779398,0,0,0,-832.98047,0,1,-9,2021,7,0,45,30,1,0,1,11.54806,11.54806,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,8.333333333333334,3,4,0,0,9,8,5,1,556,-33800.195,-60397.238,0,0,0,0,3222.1736 +15729,19238,34296,-9,34294,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3800001,8.2690639,0,0,0,-1066.9027,0,1,-9,2021,12,0,35,37,1,0,1,16.458281,16.458281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.04,40.97,-9,-9,8.333333333333334,3,4,0,0,6,8,5,1,844,2391.6692,-103726.87,0,0,0,0,2405.3376 +15730,19239,34297,34298,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.884737,8.0664387,53,2,50.303471,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8914335,7.6943569,58.32,50.22,58.89,48.6,8.333333333333334,1,1,0,0,0,2,3,1,1375.5,935384.38,655176.88,145650.27,0,0,0,2043.8536 +15730,19239,34298,34297,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,53,-2,-20.547102,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2672033,0,58.89,48.6,58.32,50.22,8.333333333333334,1,1,0,0,0,2,3,1,1375.5,935384.38,655176.88,145650.27,0,0,0,2043.8536 +15731,19240,34299,-9,-9,-9,1,1,25,0,0,0,1,1,0,0,3,0,0,0,0,0,-1025.2102,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463645,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,1,0,596,20923.539,0,0,0,0,0,946.26837 +15732,19241,34300,34301,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6321888,8.6471777,0,11,-1,18.645725,0,2,3,2021,6,0,48,95,1,0,0,13.656751,13.656751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,38.34,62.12,8.333333333333334,1,1,0,0,12,1,5,1,569.5,311042.75,120863.61,255674.16,52144.352,8003.1973,1049.7915,3516.7266 +15732,19241,34301,34300,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4083624,8.3514261,0,11,1,58.698441,0,1,2,2021,14,4,40,35,1,4,0,11.784318,11.784318,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,38.34,62.12,60.29,52.11,6.666666666666667,1,1,0,0,12,1,5,1,569.5,311042.75,120863.61,255674.16,52144.352,8003.1973,1049.7915,3516.7266 +15733,19242,34302,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4403625,7.9485621,0,0,-945.02826,0,1,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5774302,7.3862705,50.41,45.68,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,1189,861199.75,264093.06,330432.25,0,0,0,2202.0703 +15734,19243,34303,34304,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.8974495,7.6048059,18,-2,-36.926388,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1617069,7.6486802,59.14,52.5,46.78,39.4,10,1,1,0,0,0,2,4,1,540.5,1050506.4,443215.19,342072.44,0,0,0,3709.3721 +15734,19243,34304,34303,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.7762609,7.6662784,18,2,2.7022445,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4467239,7.5272694,46.78,39.4,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,540.5,1050506.4,443215.19,342072.44,0,0,0,3709.3721 +15735,19244,34305,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.2084455,8.2469835,0,0,0,-919.26416,0,-9,-9,2021,12,1,40,45,1,1,0,11.127925,11.127925,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,510,473148.19,23199.73,167159.59,0,0,0,2105.9275 +15736,19245,34306,34307,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.3728566,7.4585562,0,5,-7,-122.35292,0,-9,-9,2021,6,0,50,50,1,0,0,3.4415267,3.4415267,.05,.05,0,0,0,0,0,0,0,0,0,.67105585,0,57.16,56.15,54.38,46.77,10,1,1,0,0,4,9,3,0,857.5,-107054.39,-44536.012,0,0,7529.063,0,1214.6941 +15736,19245,34307,34306,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.6133618,7.4335084,0,5,7,-117.9966,0,1,-9,2021,5,1,44,49,1,1,0,6.9926777,6.9926777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,0,857.5,-107054.39,-44536.012,0,0,7529.063,0,1214.6941 +15737,19246,34308,34309,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,9.2504854,9.5464697,36,-2,-116.23047,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,10.030839,9.335578,49.41,58.28,35.03,51.4,8.333333333333334,1,1,0,0,3,9,5,1,1186,2505622.5,1777350.3,508525.75,0,0,0,13776.352 +15737,19246,34309,34308,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,35,2,-27.933601,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6067386,0,35.03,51.4,49.41,58.28,6.666666666666667,2,3,0,0,0,9,5,1,1186,2505622.5,1777350.3,508525.75,0,0,0,13776.352 +15738,19247,34310,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.3553658,6.3175173,0,0,0,-960.81091,0,1,1,2021,11,0,30,25,1,0,0,2.3458433,2.3458433,0,0,0,0,0,0,0,0,1,1,0,0,0,53.31,33.62,-9,-9,10,4,2,0,0,11,10,2,0,280,-208126.22,0,0,0,0,0,1498.6428 +15739,19248,34311,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,0,0,0,0,0,-963.43591,1,1,1,2021,13,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.73,46.9,-9,-9,5,3,4,0,0,8,8,1,0,689.5,-29169.016,0,0,0,-1002.5954,0,1278.0007 +15739,19248,34312,-9,34311,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.06683,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,689.5,-29169.016,0,0,0,-1002.5954,0,1278.0007 +15740,19249,34313,34314,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,-2,91.83075,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,56.07,55.46,8.333333333333334,1,1,0,0,0,7,3,1,452,1346598.3,717093.19,408491.63,0,0,0,2428.6318 +15740,19249,34314,34313,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,8.2649698,7.9720259,4,2,-46.910458,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.141398,8.1369486,56.07,55.46,55.96,49.93,8.333333333333334,1,1,0,0,7,7,3,1,452,1346598.3,717093.19,408491.63,0,0,0,2428.6318 +15740,19250,34315,-9,34313,34314,1,1,29,0,0,0,2,2,-9,0,3,8.0214863,8.0852928,0,0,0,-1012.2715,0,2,3,2021,14,3,58,44,1,3,0,6.2982049,6.2982049,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,-9,-9,5,1,1,0,0,12,7,4,1,1985,-74157.797,0,0,0,0,0,1523.8541 +15741,19251,34316,-9,34319,34317,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.97302,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34317,34319,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,6.1043358,6.1912241,0,17,5,43.645115,0,-9,-9,2021,6,0,25,24,1,0,0,2.3741198,2.3741198,0,0,0,0,0,0,0,0,1,0,1,0,0,63.48,51.85,66.44,47.81,8.333333333333334,1,1,0,0,7,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34318,-9,34319,34317,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.8904,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34319,34317,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-69.256744,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.4284199,0,66.44,47.81,63.48,51.85,8.333333333333334,1,1,0,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15742,19252,34320,34321,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.6790514,8.6805439,6.3482437,11,1,6.5801072,0,2,-9,2021,15,3,45,-9,1,3,0,12.163681,12.163681,0,0,0,0,0,0,0,2,0,0,0,7.1105661,6.6782241,52,53,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,390,1081927,655607.88,420379.94,0,0,0,5891.7896 +15742,19252,34321,34320,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4575672,8.8727379,0,35,-1,-219.72212,0,2,2,2021,10,0,40,40,1,0,0,31.577129,31.577129,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,53,8.333333333333334,1,1,0,0,13,7,5,1,390,1081927,655607.88,420379.94,0,0,0,5891.7896 +15742,19253,34322,-9,34320,34321,1,0,27,0,0,0,1,1,-9,0,3,8.5661259,8.2567272,0,0,0,-954.57428,0,2,2,2021,17,6,46,47,1,6,1,12.261564,12.261564,.05,.05,0,0,0,0,0,0,0,0,0,2.913178,0,33.9,60.31,-9,-9,6.666666666666667,1,1,0,0,4,7,5,1,347,-28807.809,-98390.313,0,0,0,0,2385.2593 +15743,19254,34323,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.8830347,6.7467995,0,0,-871.43005,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7282486,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,298,111186.95,95746.336,134609.95,0,0,0,766.35498 +15744,19255,34324,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1751099,7.9090085,0,0,0,-949.84534,0,2,2,2021,11,3,37,38,1,3,0,10.809793,10.809793,.05,.05,0,0,0,0,0,0,0,0,0,3.8749259,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,6,1,4,0,669,128608.99,-56237.277,0,0,0,0,1347.4247 +15744,19256,34325,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.7123961,7.6219344,0,0,0,-1031.8687,-9,-9,-9,2021,11,0,37,0,1,2,0,7.9151812,7.9151812,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,6,0,0,1,1,3,0,659,211368.39,-19592.873,0,0,6301.2681,0,1785.0573 +15745,19257,34326,-9,34329,-9,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-989.2049,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34327,-9,34329,-9,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.254,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34328,-9,34329,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-926.10571,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34329,-9,-9,-9,1,0,35,1,4,0,2,2,-9,1,3,0,0,0,0,0,-911.87872,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.2,48.71,-9,-9,5,3,4,0,1,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34330,-9,34329,-9,1,1,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-841.53632,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15746,19258,34331,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.0542278,7.1978016,0,0,-1004.3851,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,1.8384645,0,0,1,1,0,8.2717123,6.7134981,52,45,-9,-9,8,3,4,0,0,0,8,2,1,635,143282.11,17288.467,166996.97,0,0,0,1946.5686 +15747,19259,34332,34333,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,9.188261,8.9441757,0,9,0,-38.488426,0,2,2,2021,12,0,45,85,1,0,0,18.184042,18.184042,0,0,0,0,0,0,0,0,0,0,0,2.9112632,0,48.14,52.15,45.91,59.89,6.666666666666667,1,1,0,0,11,5,5,1,440.5,764914.25,703772.75,0,0,0,0,4478.8398 +15747,19259,34333,34332,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.634388,8.6898432,0,9,9,-15.526217,0,3,3,2021,13,1,46,46,1,1,0,15.85429,15.85429,0,0,.05,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.14,52.15,5,1,1,0,0,11,5,5,1,440.5,764914.25,703772.75,0,0,0,0,4478.8398 +15748,19260,34334,34335,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6926918,8.3803835,0,1,-3,98.444656,-9,-9,-9,2021,10,0,40,0,1,1,0,17.153461,17.153461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,42.64,57.17,7,4,1,0,0,1,8,5,1,511.5,362694.56,88057.828,240096.33,21443.992,0,0,4346.5127 +15748,19260,34335,34334,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.8498306,8.7010403,0,1,3,-23.094902,0,2,2,2021,9,0,45,45,1,0,0,14.83684,14.83684,0,0,0,0,0,0,0,0,0,0,0,1.5527102,0,42.64,57.17,49,58,8.333333333333334,1,1,0,0,6,8,5,1,511.5,362694.56,88057.828,240096.33,21443.992,0,0,4346.5127 +15749,19261,34336,34337,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7947569,8.8369837,2,11,-58.666584,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,23.489889,0,0,1,1,0,6.4623437,8.9045115,54.2,57.49,54.7,40.89,10,1,1,0,0,0,7,5,1,1090,2965560.5,1255568.6,763110.56,0,0,0,8359.8447 +15749,19261,34337,34336,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,8.7497511,8.9975929,2,-11,-69.228363,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8232284,8.7115326,54.7,40.89,54.2,57.49,6.666666666666667,1,1,0,0,7,7,5,1,1090,2965560.5,1255568.6,763110.56,0,0,0,8359.8447 +15750,19262,34338,34341,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.2355042,8.3706684,0,11,-6,191.68387,0,2,-9,2021,7,0,33,22,1,0,0,11.715341,11.715341,.05,.05,0,0,0,0,0,0,1,1,0,2.9238076,0,51.83,57.2,52,55,8.333333333333334,1,1,0,0,11,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34339,-9,34338,34341,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.9529,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34340,-9,34338,34341,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.57593,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34341,34338,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.3220119,8.227869,0,8,6,65.264351,0,-9,-9,2021,9,0,45,40,1,1,0,10.995614,10.995614,.05,.05,.05,0,0,0,0,0,1,1,0,.10624797,0,52,55,51.83,57.2,8,1,1,0,0,1,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15751,19263,34342,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.1679134,7.4621315,0,0,-1105.1116,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0736222,7.009974,63.66,46.31,-9,-9,10,1,1,0,0,0,12,3,1,2221,211632.5,166080.64,127393.3,35243.609,7461.769,0,2166.1897 +15752,19264,34343,34344,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,0,0,0,2,-1,38.728954,0,3,3,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3321753,0,55.54,43.16,57.16,56.15,10,1,1,0,0,7,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34344,34343,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,7.3911581,7.5088692,0,2,1,79.786545,0,2,2,2021,8,1,65,40,1,1,0,3.0072186,3.0072186,.05,.05,0,0,0,0,0,0,1,1,0,6.7467537,0,57.16,56.15,55.54,43.16,8.333333333333334,1,1,0,0,8,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34345,-9,34343,34344,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-857.48236,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34346,-9,34343,34344,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-978.21075,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15753,19265,34347,34349,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,7.6158214,7.970212,0,9,0,-67.45137,0,-9,-9,2021,6,0,40,40,1,0,0,6.1237354,6.1237354,.05,.05,0,0,0,0,0,0,1,1,0,5.6384306,0,41.34,56.62,45.18,54.77,5,4,2,0,1,9,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34348,-9,34349,34347,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3245,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34349,34347,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.3242121,8.1856279,0,9,0,-102.70676,0,2,2,2021,8,0,30,30,1,0,0,14.995188,14.995188,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,41.34,56.62,8.333333333333334,1,1,0,1,11,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34350,-9,34349,34347,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.13495,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15754,19266,34351,34352,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8945255,9.367115,6.2746687,6,11,-41.636147,0,1,1,2021,9,0,40,35,1,0,0,22.538975,22.538975,.05,.05,0,0,0,0,0,0,0,0,0,0,6.3814287,58.15,52.91,44.44,55.46,8.333333333333334,1,1,0,0,7,9,5,1,3108.5,2087626.9,1453382.8,445091.69,89317.844,0,0,3724.8152 +15754,19266,34352,34351,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.841011,7.8237791,0,6,-11,-91.828407,0,2,3,2021,11,0,24,24,1,0,0,12.426587,12.426587,0,0,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,58.15,52.91,8.333333333333334,1,1,0,0,7,9,5,1,3108.5,2087626.9,1453382.8,445091.69,89317.844,0,0,3724.8152 +15754,19267,34353,-9,34352,34351,1,0,19,0,0,0,2,2,-9,0,4,2.7686687,2.7012401,0,0,0,-1019.7614,0,2,1,2021,11,0,37,0,1,2,1,.069041513,.069041513,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,2,1,643,261632.23,0,0,0,0,0,536.61285 +15755,19268,34354,34355,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,9,-5,-54.494541,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6666191,0,45.13,50.72,44.3,34.15,8.333333333333334,1,1,0,0,0,5,2,1,681.5,622321.69,112997.15,227441.28,0,0,0,1827.4646 +15755,19268,34355,34354,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.3735642,7.5566807,9,5,-35.841507,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,26.748859,0,0,1,1,0,6.2847238,7.3196225,44.3,34.15,45.13,50.72,5,1,1,0,0,0,5,2,1,681.5,622321.69,112997.15,227441.28,0,0,0,1827.4646 +15756,19269,34356,34357,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,0,0,0,2,-4,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.99,43.48,37.92,30.47,5,1,1,0,0,0,11,1,0,1070.5,-17789.998,0,0,0,564.17603,0,859.87122 +15756,19269,34357,34356,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,2,4,0,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.92,30.47,44.99,43.48,1.666666666666667,1,1,1,0,0,11,1,0,1070.5,-17789.998,0,0,0,564.17603,0,859.87122 +15757,19270,34358,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,5.1124301,5.4518781,0,0,-903.84174,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.79934269,5.2580829,29.24,54.65,-9,-9,1.666666666666667,1,1,1,0,10,7,2,1,1159,-56864.246,145706.59,0,0,0,0,441.40024 +15758,19271,34359,34360,-9,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,2,-21,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.49,43.6,24.52,39.05,8.333333333333334,1,1,0,0,0,9,1,0,239,-32768.828,0,0,0,0,0,2053.8281 +15758,19271,34360,34359,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,2,21,0,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.52,39.05,43.49,43.6,3.333333333333333,1,1,0,0,0,9,1,0,239,-32768.828,0,0,0,0,0,2053.8281 +15759,19272,34361,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,6.5826182,6.7948427,0,0,-938.11182,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,14.860763,0,0,1,1,0,0,6.6126904,37.67,23.76,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,1628,-94196.383,32517.342,0,0,0,0,1140.3214 +15759,19273,34362,-9,34361,-9,1,0,51,0,0,0,3,3,-9,0,5,7.1445756,7.2113438,0,0,0,-1031.3175,0,3,-9,2021,7,0,21,21,1,0,0,7.7689676,7.7689676,0,0,0,0,0,0,0,27,1,1,0,2.6167917,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,1018,-23240.119,0,0,0,0,8298.2881,580.53845 +15760,19274,34363,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.991477,8.7509155,0,0,0,-1023.0256,0,-9,-9,2021,19,8,37,38,1,8,0,24.948866,24.948866,.05,.05,0,0,0,0,0,0,1,1,0,6.549448,0,37.77,45.33,-9,-9,5,1,1,0,0,8,12,5,1,545,2568613.3,2392398.5,317086.66,71885.281,0,0,2732.4934 +15761,19275,34364,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9644103,8.0292912,0,0,0,-1170.2776,0,3,2,2021,12,1,37,38,1,1,0,9.6352549,9.6352549,0,0,0,0,0,0,0,0,0,0,0,.90602851,0,36.93,56.27,-9,-9,1.666666666666667,1,1,0,0,13,6,4,1,120,-3258.967,0,0,0,0,66.304962,1038.0756 +15762,19276,34365,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.6489568,7.9446826,0,0,-887.86023,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6820097,7.4342427,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,119,341898.38,303534.66,132620.3,0,0,0,1971.6804 +15763,19277,34366,34367,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.3448524,8.0158701,44,7,82.439888,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2342997,8.0189257,54.96,53.17,61.04,39.41,8.333333333333334,1,1,0,0,0,7,3,1,506,1136724,575878.25,280765.31,0,0,438.2843,5081.1724 +15763,19277,34367,34366,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6773567,6.0585251,44,-7,45.838352,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4168959,5.7150607,61.04,39.41,54.96,53.17,8.333333333333334,1,1,0,0,0,7,3,1,506,1136724,575878.25,280765.31,0,0,438.2843,5081.1724 +15764,19278,34368,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,1,0,0,0,0,0,-847.68542,0,3,2,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,32.71,-9,-9,0,1,1,1,0,0,7,1,0,436,33803.605,-33633.766,0,0,0,0,1029.8843 +15765,19279,34369,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,4.5679269,4.6236038,0,0,-939.62921,-9,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.193383,4.7808328,54.04,60.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,827,-207.58238,-29375.234,115591.34,0,0,0,1540.8987 +15766,19280,34370,34371,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,6.9761124,6.8684788,46,-4,49.846821,0,2,2,2021,15,4,0,35,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8762056,6.6846976,50.16,17.69,55.34,54.26,8.333333333333334,1,1,0,0,9,5,5,1,786,1671850,764656,348176.13,0,0,0,4716.8857 +15766,19280,34371,34370,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.8985863,9.0990477,46,4,-20.260542,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.5850058,55.34,54.26,50.16,17.69,10,1,1,0,0,10,5,5,1,786,1671850,764656,348176.13,0,0,0,4716.8857 +15767,19281,34372,34373,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.6727486,8.6240597,6,1,-93.478294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3230343,62.39,56.71,54.96,53.17,10,1,1,0,0,2,11,5,1,117,106565.95,0,188768.72,76150.609,0,0,4150.8799 +15767,19281,34373,34372,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1180468,8.0726213,0,6,-1,-10.494783,0,2,2,2021,6,0,10,42,1,0,0,43.987709,43.987709,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,62.39,56.71,8.333333333333334,1,1,0,0,7,11,5,1,117,106565.95,0,188768.72,76150.609,0,0,4150.8799 +15768,19282,34374,34375,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.4786954,7.7864556,36,9,67.10022,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3336813,7.7662063,40.76,56.64,47.22,45.94,10,1,1,0,0,0,9,3,1,1055.5,947048.13,470482,284830.31,0,0,0,3253.2412 +15768,19282,34375,34374,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5511861,7.1418271,36,0,56.762993,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5490754,7.2606683,47.22,45.94,40.76,56.64,6.666666666666667,1,1,0,0,0,9,3,1,1055.5,947048.13,470482,284830.31,0,0,0,3253.2412 +15769,19283,34376,34377,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.4929204,6.4696274,10,1,65.284828,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0069995,62.27,42.94,60.29,52.11,10,1,1,0,0,0,13,3,1,760,563183.5,353522.88,217775.19,0,11893.729,0,3081.6973 +15769,19283,34377,34376,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,8.1111202,8.109725,10,-1,-128.33853,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2486105,60.29,52.11,62.27,42.94,10,1,1,0,0,0,13,3,1,760,563183.5,353522.88,217775.19,0,11893.729,0,3081.6973 +15770,19284,34378,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-896.86841,0,3,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.63,23.34,-9,-9,5,1,1,0,0,0,13,1,1,194,161174.02,0,0,0,0,-630.30817,1533.4395 +15771,19285,34379,34380,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-2,-27.903929,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0176811,0,52,46,45.82,26.03,8,1,1,0,0,0,9,2,1,1129.5,449667.84,274959.94,196893.23,0,0,0,1571.2542 +15771,19285,34380,34379,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.2503386,7.2086186,57,2,3.1648185,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2763128,6.7328382,45.82,26.03,52,46,8.333333333333334,1,1,0,0,6,9,2,1,1129.5,449667.84,274959.94,196893.23,0,0,0,1571.2542 +15772,19286,34381,-9,34382,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1133.2201,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,1,0,1256.5,-45554.059,0,0,0,0,0,1857.3776 +15772,19286,34382,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,1,0,0,0,0,0,-877.5824,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,0,3,4,0,1,0,8,1,0,1256.5,-45554.059,0,0,0,0,0,1857.3776 +15772,19287,34383,-9,34382,-9,1,0,25,0,1,0,1,1,-9,0,4,7.803834,7.8734894,0,0,0,-891.48511,0,3,2,2021,11,0,35,0,1,2,1,5.8267155,5.8267155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,3978,117774.32,93748.367,0,0,0,0,2220.4292 +15772,19288,34384,-9,34382,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1157.6754,-9,3,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,0,8,1,0,478,55785.367,0,0,0,0,0,0 +15773,19289,34385,34386,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0282259,6.6079698,8,0,-80.160767,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0950284,6.790154,54,46,52.93,39.41,8,1,1,0,0,0,9,2,1,1147.5,619390.13,113865.02,299958.38,0,0,0,1395.7151 +15773,19289,34386,34385,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.4644461,6.3170056,8,0,-26.055157,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3871622,52.93,39.41,54,46,8.333333333333334,1,1,0,0,0,9,2,1,1147.5,619390.13,113865.02,299958.38,0,0,0,1395.7151 +15774,19290,34387,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.7769508,7.5743484,0,0,0,-986.90198,0,3,3,2021,6,0,50,35,1,0,0,4.9904709,4.9904709,0,0,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,1,3,0,372,-37030.238,0,0,0,0,0,1363.7489 +15775,19291,34388,34389,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,8.2509565,7.8131342,48,1,-119.59427,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4640522,8.2424345,45.43,37.82,36.14,61.94,6.666666666666667,1,1,0,0,4,9,4,1,1189.5,1184478.8,756762.75,580025,0,0,0,2715.1924 +15775,19291,34389,34388,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.6372323,6.8405199,48,-1,91.303177,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.92320907,6.6573534,36.14,61.94,45.43,37.82,8.333333333333334,1,1,0,0,0,9,4,1,1189.5,1184478.8,756762.75,580025,0,0,0,2715.1924 +15776,19292,34390,-9,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1084.9418,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,127,0,0,0,0,0,0,1038.8953 +15777,19293,34391,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.0496478,6.186554,0,0,-1069.3997,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.1385264,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,1137,19943.93,96315.695,0,0,0,0,1268.7726 +15778,19294,34392,-9,34396,34394,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3303,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34393,-9,34396,34394,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.63959,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34394,34396,-9,-9,1,1,41,1,3,0,3,3,-9,0,3,7.4377346,7.1044393,0,18,5,81.382858,0,3,3,2021,9,1,37,35,1,1,0,5.6537476,5.6537476,0,0,0,0,0,0,0,2,1,1,0,0,0,37.13,40.77,50.58,53.69,5,1,1,0,1,6,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34395,-9,34396,34394,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.079,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34396,34394,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,7,-5,-45.503212,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,53.69,37.13,40.77,8.333333333333334,4,5,0,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15779,19295,34397,34398,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,8,-3,0,0,3,2,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.47,17.14,57.16,56.15,0,1,1,0,1,0,1,1,0,567.5,-186897.91,6636.7402,0,0,0,0,1198.869 +15779,19295,34398,34397,-9,-9,1,1,60,0,0,0,3,3,-9,1,4,0,0,0,8,3,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.16,56.15,39.47,17.14,10,1,1,0,0,0,1,1,0,567.5,-186897.91,6636.7402,0,0,0,0,1198.869 +15780,19296,34399,34400,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,19.637661,0,0,1,1,0,2.9815316,0,63.11,26.8,47.62,50.74,6.666666666666667,1,1,0,0,0,5,1,1,876,-31637.02,0,80045.5,0,0,0,672.14893 +15780,19296,34400,34399,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,3,2,2021,7,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.62,50.74,63.11,26.8,10,1,1,0,0,0,5,1,1,876,-31637.02,0,80045.5,0,0,0,672.14893 +15781,19297,34401,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.6694293,7.9724412,0,0,-1081.1187,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,2.7951484,0,23.301064,0,1,1,0,2.3177099,7.8502297,50.73,22.52,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1609,416337.69,45314.953,264852.06,0,0,0,2030.9785 +15782,19298,34402,34403,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,4.6967087,4.346549,9,0,-73.686653,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5156507,53,44,56.1,49.93,8,1,1,0,0,0,11,2,1,545.5,341555.5,0,150886.47,0,0,0,934.77521 +15782,19298,34403,34402,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,4.9121342,5.4414539,9,0,89.606941,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.180541,5.7405586,56.1,49.93,53,44,8.333333333333334,1,1,0,0,0,11,2,1,545.5,341555.5,0,150886.47,0,0,0,934.77521 +15783,19299,34404,34405,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0584326,7.9766469,0,8,0,-21.891912,0,3,3,2021,6,0,45,39,1,0,0,7.1298862,7.1298862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.3,46.58,8.333333333333334,2,3,0,0,9,9,4,1,457.5,1425740.8,1290334,364986.56,118284.59,-1852.8268,585.59894,2852.9688 +15783,19299,34405,34404,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.258646,7.8239188,0,8,0,.42109799,0,3,3,2021,7,0,34,34,1,0,0,13.203085,13.203085,0,0,0,0,0,0,0,0,0,0,0,1.6960173,0,60.3,46.58,62.49,55.09,8.333333333333334,2,3,0,0,9,9,4,1,457.5,1425740.8,1290334,364986.56,118284.59,-1852.8268,585.59894,2852.9688 +15783,19300,34406,-9,34405,34404,1,0,23,0,0,0,1,1,-9,0,4,8.3950129,8.2779608,0,0,0,-1026.7002,0,3,2,2021,3,0,42,48,1,0,1,10.166396,10.166396,0,0,0,0,0,0,0,0,0,0,0,3.9577911,0,49.71,55.64,-9,-9,5,2,3,0,0,6,9,4,1,271,36817.188,0,0,0,0,0,2372.0491 +15783,19301,34407,-9,34405,34404,1,1,28,0,0,0,1,1,-9,0,2,8.5516939,8.393487,0,0,0,-894.27667,0,3,2,2021,19,6,37,35,1,6,1,15.16124,15.16124,.05,.05,0,0,0,0,0,0,0,0,0,6.9818463,0,31.05,56.43,-9,-9,5,2,3,0,0,7,9,5,1,632,157248.81,171272.94,0,0,0,0,2826.043 +15784,19302,34408,-9,34411,34409,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-988.58661,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34409,34411,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.7794199,8.7694588,0,20,0,22.386366,0,2,3,2021,7,0,35,35,1,0,0,14.658057,14.658057,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.44,50.17,8.333333333333334,1,1,0,0,13,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34410,-9,34411,34409,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.94275,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34411,34409,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.6146955,7.6505189,0,20,0,-39.025684,0,2,2,2021,6,0,27,26,1,0,0,8.1331472,8.1331472,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.44,50.17,57.33,53.46,8.333333333333334,3,4,0,0,13,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15785,19303,34412,34413,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0883808,9.0174551,0,14,-1,50.8246,-9,3,3,2021,6,0,38,0,1,0,0,23.998392,23.998392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,35.44,44.94,8.333333333333334,2,3,0,0,13,12,5,1,511,1897570.3,1593707.6,414283.94,159133.84,6561.5605,5755.96,6284.4531 +15785,19303,34413,34412,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,8.1828575,8.0416861,0,14,1,80.030983,-9,2,2,2021,14,2,38,0,1,2,0,14.088735,14.088735,.05,.05,0,0,0,0,0,0,0,0,0,8.8146286,0,35.44,44.94,54.2,57.49,8.333333333333334,2,3,0,0,12,12,5,1,511,1897570.3,1593707.6,414283.94,159133.84,6561.5605,5755.96,6284.4531 +15786,19304,34414,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-968.95398,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,53.81,-9,-9,8.333333333333334,1,1,1,0,2,6,1,0,494,148802.86,0,0,0,0,0,1213.582 +15786,19304,34415,-9,34414,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.5682,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,1,0,494,148802.86,0,0,0,0,0,1213.582 +15787,19305,34416,34417,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.2285523,7.1594644,51,3,24.776634,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4404564,6.8099227,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,2,1,712.5,440758,247815.59,124696.48,0,0,0,1504.6272 +15787,19305,34417,34416,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.9682045,5.7158523,51,-3,78.336914,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0299697,5.3908682,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,1,712.5,440758,247815.59,124696.48,0,0,0,1504.6272 +15788,19306,34418,34419,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.6075454,7.7439299,0,8,0,-4.139751,0,3,3,2021,10,0,42,38,1,0,0,6.1971502,6.1971502,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,50.12,33.72,8.333333333333334,1,1,0,0,6,11,3,0,409,61855.664,-25012.98,0,0,2363.6213,0,891.2229 +15788,19306,34419,34418,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.1732149,7.1561055,0,31,0,-2.1043525,0,-9,1,2021,8,0,23,23,1,0,0,6.2680149,6.2680149,0,0,0,0,0,0,0,2,0,0,0,0,0,50.12,33.72,52,54.51,6.666666666666667,1,1,0,0,4,11,3,0,409,61855.664,-25012.98,0,0,2363.6213,0,891.2229 +15788,19307,34420,-9,34419,34418,1,1,22,0,0,0,2,2,-9,0,3,7.6254511,7.7147427,0,0,0,-953.18927,0,3,3,2021,3,0,36,38,1,0,1,6.2533989,6.2533989,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.54,54.24,-9,-9,10,1,1,0,0,2,11,3,0,238,-304239.94,0,0,0,4061.5522,0,449.22131 +15789,19308,34421,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,7.4438252,7.1632528,0,0,-991.01733,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,1.5891523,0,19.94729,0,1,1,0,0,7.3078756,39.5,42.96,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,713,442928.81,131381.17,338859.72,0,0,0,2996.2559 +15790,19309,34422,34423,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0085497,7.8856864,0,39,0,-108.71194,0,3,3,2021,7,0,42,37,1,0,0,8.3082285,8.3082285,0,0,0,0,0,0,0,2,0,0,0,1.2676001,0,54.2,57.49,49.49,43.74,8.333333333333334,1,1,0,0,11,5,3,1,537,1093863.8,860039.75,266974.16,0,0,2197.3765,1237.0916 +15790,19309,34423,34422,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,39,0,-143.63519,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4475291,0,49.49,43.74,54.2,57.49,3.333333333333333,1,1,0,0,5,5,3,1,537,1093863.8,860039.75,266974.16,0,0,2197.3765,1237.0916 +15791,19310,34424,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8879247,7.7290254,0,0,0,-971.54553,0,2,1,2021,16,4,70,70,1,4,0,3.5762539,3.5762539,.05,.05,0,0,0,0,0,27,0,0,0,1.6749252,0,33.27,53.82,-9,-9,6.666666666666667,1,1,0,1,12,11,3,1,343,21938.799,82716.328,0,0,0,0,1052.4269 +15792,19311,34425,-9,34428,34426,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0924,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34426,34428,-9,34429,1,1,48,0,2,0,1,1,-9,0,2,8.4371605,8.6642656,0,10,11,43.892353,0,2,1,2021,9,0,36,0,1,0,0,14.007917,14.007917,.05,.05,0,0,0,0,0,2,1,1,0,3.7550061,0,47.2,39.7,60.02,56.42,6.666666666666667,2,3,0,1,11,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34427,-9,34428,34426,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.65863,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34428,34426,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.3724456,7.2193127,0,3,-11,-68.033005,0,2,1,2021,11,2,38,38,1,2,0,4.9635239,4.9635239,.05,.05,0,0,0,0,0,27,1,1,0,0,0,60.02,56.42,47.2,39.7,6.666666666666667,4,2,0,0,11,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19312,34429,-9,-9,-9,1,1,88,0,2,0,1,1,-9,0,2,0,0,0,0,0,-960.08411,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,117.88747,0,0,1,1,0,0,0,55.84,20.66,-9,-9,5,2,3,0,0,0,8,1,1,410,1170713.8,0,798789.06,0,0,0,1265.4296 +15793,19313,34430,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,8.1674852,8.5428753,0,0,0,-1045.035,0,3,2,2021,29,12,44,43,1,12,0,11.333697,11.333697,0,0,0,0,0,0,0,0,1,1,0,0,0,33.64,63.28,-9,-9,3.333333333333333,1,1,0,0,14,9,4,1,1594,628032.13,40825.125,472188.28,22646.922,16640.342,0,1977.2698 +15793,19314,34431,-9,34430,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-976.45544,1,1,-9,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.07,51.57,-9,-9,1.666666666666667,1,1,0,1,6,9,2,1,285,79968.656,0,0,0,0,0,-674.83612 +15794,19315,34432,-9,34433,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.0424213,6.9102521,0,0,-962.57855,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1540008,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,240,-101286.54,159453.42,0,0,0,0,330.46936 +15794,19316,34433,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.7904148,8.1576929,0,0,-910.57886,-9,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,25.781952,0,235.06461,0,1,1,0,7.642487,7.7835894,53.37,32.26,-9,-9,10,1,1,0,0,0,5,3,1,959,516922.41,78234.938,169652.3,0,0,0,1670.6309 +15795,19317,34434,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1081.6826,0,2,2,2021,18,6,0,50,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.97,62.43,-9,-9,3.333333333333333,1,1,1,1,7,5,1,1,1444,97747.578,188169.61,0,0,0,0,260.23383 +15795,19317,34435,-9,34434,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-851.56335,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,1,1,1444,97747.578,188169.61,0,0,0,0,260.23383 +15796,19318,34436,-9,34439,34438,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.5769,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34437,-9,34439,34438,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-984.79462,-9,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,2,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34438,34439,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.1115017,8.7520351,0,26,5,-36.610329,0,1,2,2021,7,0,42,46,1,0,0,15.457084,15.457084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,24.09,52.96,6.666666666666667,1,1,0,1,8,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34439,34438,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.2673063,8.2834425,0,26,-5,-11.404927,0,-9,2,2021,33,12,30,22,1,12,0,12.261389,12.261389,0,0,0,0,0,0,0,0,1,1,0,0,0,24.09,52.96,46.63,59.72,3.333333333333333,1,1,0,1,3,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15797,19319,34440,34441,-9,-9,1,0,49,0,2,0,2,2,-9,1,4,7.7334237,7.8141422,0,6,7,90.902939,0,1,1,2021,7,0,35,0,1,0,0,8.4703226,8.4703226,0,0,0,0,0,0,0,0,1,1,0,0,0,40.07,57.25,50.82,57.78,6.666666666666667,3,4,0,0,3,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34441,34440,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,5.7603865,5.5725083,0,6,-7,68.187775,0,-9,-9,2021,16,4,25,25,1,4,0,1.3184857,1.3184857,0,0,0,0,0,0,2.0476978,0,1,1,0,0,0,50.82,57.78,40.07,57.25,3.333333333333333,3,4,0,1,9,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34442,-9,34440,34441,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1173.4047,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34443,-9,34440,34441,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.254,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34444,-9,34440,34441,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1034.0422,-9,2,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.099079765,0,32.31,59.5,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15798,19320,34445,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.2351651,6.3012524,0,0,-994.73303,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5193582,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,291,326449.44,201369.78,80146.055,37953.93,0,0,1212.1719 +15798,19321,34446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-987.83716,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,1,0,8,2,1,1,870,-41512.711,0,0,0,0,0,0 +15799,19322,34447,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.2098145,5.5674248,0,0,-1015.722,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9118581,5.2578278,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,467,818445.88,0,260991.38,0,0,0,677.30853 +15800,19323,34448,-9,34450,34451,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.55536,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34449,-9,34450,34451,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1017.0132,0,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,2,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34450,34451,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.2423458,8.2310581,4.9041324,10,-2,209.82317,0,2,-9,2021,12,0,38,38,1,0,0,12.246412,12.246412,.05,.05,0,0,0,0,0,0,1,1,0,5.2941194,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,11,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34451,34450,-9,-9,1,1,38,0,1,0,2,2,-9,0,5,8.4859333,8.480505,0,10,2,-37.185089,0,3,3,2021,7,0,47,49,1,0,0,11.140048,11.140048,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15801,19324,34452,34453,-9,-9,1,0,61,0,1,0,3,3,-9,0,2,6.8883777,7.0262313,0,7,-2,-37.75573,0,3,2,2021,6,0,25,30,1,0,0,5.0453234,5.0453234,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,31.14,60.68,40.91,8.333333333333334,1,1,0,0,6,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15801,19324,34453,34452,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,6.7200394,6.7028837,0,7,2,-81.279533,0,3,3,2021,6,0,20,20,1,0,0,4.2897954,4.2897954,.05,.05,0,0,0,0,0,0,1,1,0,1.6649987,0,60.68,40.91,62.66,31.14,0,1,1,0,0,1,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15801,19324,34454,-9,34452,34453,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-996.08258,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15802,19325,34455,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,.69921553,1.0304964,0,0,0,-1014.5944,0,2,2,2021,6,0,50,50,1,0,0,.0044981847,.0044981847,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,14,10,2,0,429,212131.89,0,0,0,0,0,87.823135 +15803,19326,34456,34457,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.5241294,7.2951508,47,-1,-21.432142,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5505633,7.7563939,25.9,43.97,44.96,24.16,1.666666666666667,1,1,0,0,0,6,3,1,492.5,49077.348,0,0,0,0,174.50764,2643.4165 +15803,19326,34457,34456,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.2081065,5.3929148,45,1,47.90596,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,6.3709273,0,7,1,1,0,4.2405634,5.318078,44.96,24.16,25.9,43.97,3.333333333333333,1,1,0,0,4,6,3,1,492.5,49077.348,0,0,0,0,174.50764,2643.4165 +15804,19327,34458,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.4457002,7.3840857,0,0,0,-976.70123,0,-9,-9,2021,12,0,37,37,1,0,0,4.980422,4.980422,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,0,1,1,0,0,4,7,3,0,494,167341.14,10879.337,0,0,0,0,1181.9841 +15805,19328,34459,34460,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.5179062,6.5087943,59,-3,-39.534096,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9730582,6.5459619,50.38,33.62,51.96,40.73,8.333333333333334,1,1,0,0,0,9,3,1,984,432606.28,377637.78,133650.36,0,6703.5142,5817.2813,2904.012 +15805,19328,34460,34459,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.7840037,8.1095161,59,3,17.263803,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0738764,7.5129747,51.96,40.73,50.38,33.62,8.333333333333334,1,1,0,0,0,9,3,1,984,432606.28,377637.78,133650.36,0,6703.5142,5817.2813,2904.012 +15806,19329,34461,34462,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,7.6035752,8.2876434,7.6190825,42,0,-39.368046,-9,2,2,2021,6,0,4,0,1,0,0,44.751472,44.751472,0,0,0,0,0,0,0,7,1,1,0,0,7.725204,59.43,58.05,56.5,48.33,10,1,1,0,0,10,9,5,1,366.5,493925.56,117548.14,194224,0,0,0,5336.3237 +15806,19329,34462,34461,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2369938,8.3450117,40,0,56.17527,-9,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.7119193,8.321928,56.5,48.33,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,366.5,493925.56,117548.14,194224,0,0,0,5336.3237 +15807,19330,34463,34464,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.7092452,7.6215229,0,4,-1,50.259552,0,-9,-9,2021,12,0,35,38,1,0,0,7.5989032,7.5989032,0,0,0,0,0,0,0,0,0,0,0,1.9293427,0,50.34,56.4,55.34,54.26,8.333333333333334,1,1,0,0,3,8,4,0,563.5,51302.328,-9401.0908,0,0,0,0,2732.0225 +15807,19330,34464,34463,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5667763,8.3300152,0,4,1,-66.306831,0,-9,-9,2021,14,3,45,45,1,3,0,13.451871,13.451871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,50.34,56.4,8.333333333333334,1,1,0,0,4,8,4,0,563.5,51302.328,-9401.0908,0,0,0,0,2732.0225 +15808,19331,34465,34466,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.3120737,7.8760428,46,0,-135.97,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.854497,7.857183,58.07,46.29,60.12,54.8,8.333333333333334,1,1,0,0,3,12,3,1,722.5,2031255.3,1351856,167994.11,0,0,0,3792.1924 +15808,19331,34466,34465,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.3266888,5.703527,6,0,93.047585,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.8896651,5.3848095,60.12,54.8,58.07,46.29,10,1,1,0,0,0,12,3,1,722.5,2031255.3,1351856,167994.11,0,0,0,3792.1924 +15808,19332,34467,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,0,0,-923.05389,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4752057,0,53,52,-9,-9,8,1,1,0,0,0,12,1,1,3465,334163.66,0,15944.914,0,9783.1162,0,778.49731 +15809,19333,34468,34470,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,8.6729288,8.9721117,0,14,-11,67.388367,0,2,3,2021,7,0,30,35,1,0,0,25.044016,25.044016,0,0,0,0,0,0,0,0,1,1,0,7.7501531,0,51.59,26.51,62.49,55.09,8.333333333333334,1,1,0,0,9,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15809,19333,34469,-9,34468,34470,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-988.89276,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,0,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15809,19333,34470,34468,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4319277,8.3915005,0,14,11,-98.390785,0,-9,-9,2021,6,0,44,44,1,0,0,9.17348,9.17348,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.59,26.51,1.666666666666667,1,1,0,0,9,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15810,19334,34471,34474,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,5.7719131,5.7865477,0,9,4,32.242344,0,2,2,2021,7,0,30,0,1,0,0,1.4813451,1.4813451,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,44.08,59.33,8.333333333333334,1,1,0,0,8,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34472,-9,34474,34471,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9931,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.79855508,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34473,-9,34474,34471,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.26904,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34474,34471,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,5.107717,5.4065499,0,9,-4,66.094933,0,2,2,2021,13,2,4,0,1,2,0,5.1466308,5.1466308,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,53.98,50.87,8.333333333333334,1,1,0,0,1,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15811,19335,34475,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.777276,7.8244572,0,0,0,-1003.3501,0,2,2,2021,6,0,39,37,1,0,0,8.4405432,8.4405432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,10,4,4,1,563,46519.594,113041.08,113010.19,0,0,1758.7653,426.82834 +15812,19336,34476,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,8.1073809,7.8839831,0,0,-915.45343,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.5850921,8.0325794,55.92,36.72,-9,-9,5,1,1,0,0,2,7,4,1,393,394191.53,15858.723,392066.44,0,295.38913,-101.99015,1312.6023 +15813,19337,34477,-9,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8270073,8.7813959,0,12,-2,52.516567,0,2,2,2021,8,0,36,36,1,0,0,20.461462,20.461462,0,0,0,0,0,0,0,0,1,1,0,10.022893,0,51.83,57.2,39.26,49.43,8.333333333333334,1,1,0,0,13,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19337,34478,-9,-9,34477,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.99707,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19337,34479,-9,-9,34477,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.57825,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,6,-9,0,0,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19338,34480,-9,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.062294,8.1749649,0,12,2,78.488022,0,-9,-9,2021,20,8,39,41,1,8,0,14.279067,14.279067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.26,49.43,51.83,57.2,6.666666666666667,1,1,0,0,13,12,5,1,813,110519.77,-15834.683,0,0,0,0,1484.0007 +15814,19339,34481,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1030.7,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.94,42.23,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,1540,67198.164,0,104237.63,0,0,0,1023.6071 +15815,19340,34482,34483,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1639585,7.8192835,0,9,-7,4.7402563,0,3,3,2021,9,0,41,38,1,0,0,6.3517847,6.3517847,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.5,41.04,57.16,56.15,8.333333333333334,1,1,0,1,9,11,5,1,693,320586.13,80004.984,335992.81,51084.391,19347.887,547.19763,5847.5 +15815,19340,34483,34482,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.5022678,9.100646,0,9,7,-14.389421,0,2,2,2021,7,0,50,50,1,0,0,30.997183,30.997183,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.5,41.04,8.333333333333334,1,1,0,0,9,11,5,1,693,320586.13,80004.984,335992.81,51084.391,19347.887,547.19763,5847.5 +15815,19341,34484,-9,34482,34483,1,1,25,0,0,0,1,1,-9,0,3,7.6633272,7.7197685,0,0,0,-905.46594,0,2,2,2021,6,0,38,0,1,0,1,7.1852379,7.1852379,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,3,11,3,1,1863,-21123.359,0,0,0,0,0,1919.918 +15816,19342,34485,34486,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,45,-5,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,27.9,62.39,56.71,6.666666666666667,2,3,0,0,0,8,1,1,1326,581079.13,0,462432.31,0,0,0,1139.6598 +15816,19342,34486,34485,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,0,0,45,5,0,0,2,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9222078,0,62.39,56.71,63.65,27.9,10,2,3,0,0,0,8,1,1,1326,581079.13,0,462432.31,0,0,0,1139.6598 +15817,19343,34487,34489,-9,-9,1,0,21,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,3,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,43.43,53.39,52.35,10,1,1,0,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34488,-9,34487,34489,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-912.4455,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34489,34487,-9,-9,1,1,23,1,2,0,3,3,-9,0,4,0,0,0,3,2,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,49.02,43.43,8.333333333333334,1,1,1,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34490,-9,34487,34489,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.93427,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15818,19344,34491,34492,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9720459,6.9264259,40,0,-25.113249,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8977575,5.8184781,37.17,50.6,57.06,57.76,6.666666666666667,4,2,0,0,2,7,3,1,342.5,1407947.6,952800.38,349775.97,0,0,0,2986.0215 +15818,19344,34492,34491,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.6280675,7.4425993,40,0,41.072922,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6781831,7.8047261,57.06,57.76,37.17,50.6,10,1,1,0,0,5,7,3,1,342.5,1407947.6,952800.38,349775.97,0,0,0,2986.0215 +15819,19345,34493,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,5.3982573,5.4713111,0,0,-954.01324,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2164536,5.3831301,47.2,34.16,-9,-9,5,1,1,0,0,0,10,2,1,790,116091.06,0,195084.59,0,0,0,44.369938 +15820,19346,34494,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.184804,8.378046,0,0,0,-1020.1645,0,3,2,2021,29,10,37,37,1,10,0,12.325087,12.325087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.8,61.53,-9,-9,5,1,1,0,1,13,12,4,0,1734,345564.66,171320.91,148330.36,58962.855,0,718.33398,1882.7687 +15821,19347,34495,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,6.9024625,7.1512966,0,0,-880.40558,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1439376,6.9894547,57.06,57.76,-9,-9,10,1,1,0,0,0,7,2,1,995,453458.88,95016.461,292470.06,0,0,0,448.1756 +15822,19348,34496,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,7.4074783,7.442389,0,0,0,-1056.2206,0,2,2,2021,20,7,18,1,1,7,0,10.255242,10.255242,0,0,0,0,0,0,0,0,1,1,0,1.6667123,0,38.68,43.35,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,3314.5,729208.44,499934.56,213835.73,0,0,0,1500.0938 +15822,19348,34497,-9,34496,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1051.9148,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,5,3,1,3314.5,729208.44,499934.56,213835.73,0,0,0,1500.0938 +15823,19349,34498,34499,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.8244629,4.5329018,8,-3,42.785412,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.4717746,4.8135843,57.16,56.15,61.12,51.57,10,1,1,0,0,2,10,2,1,1369,651542.19,353482.75,180516.27,0,6336.2407,0,2000.4634 +15823,19349,34499,34498,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.7076898,7.5569735,8,3,51.977715,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4447989,7.2845764,61.12,51.57,57.16,56.15,10,1,1,0,0,2,10,2,1,1369,651542.19,353482.75,180516.27,0,6336.2407,0,2000.4634 +15824,19350,34500,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.1903582,6.8642988,0,0,-1061.781,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7234905,0,0,1,1,0,3.5682034,7.0947442,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,506,7485.75,73198.945,0,0,0,0,1342.2086 +15825,19351,34501,34502,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,3,1,-9.6722898,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,33.94,52.18,5,1,1,1,0,0,4,3,0,916.5,271989.44,287816.78,138618.88,0,6592.3115,0,1402.8379 +15825,19351,34502,34501,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7294846,7.4607186,0,3,-1,75.50148,0,3,2,2021,9,2,39,39,1,2,0,8.3642321,8.3642321,0,0,0,0,0,0,0,0,1,1,0,0,0,33.94,52.18,50.65,60.47,8.333333333333334,1,1,0,0,8,4,3,0,916.5,271989.44,287816.78,138618.88,0,6592.3115,0,1402.8379 +15826,19352,34503,34504,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.8751507,9.9788723,0,1,5,-59.143795,-9,-9,-9,2021,11,0,84,0,1,0,0,28.918655,28.918655,.05,.05,0,0,0,0,0,0,0,0,0,.31213814,0,37,53.29,57.33,53.46,6.666666666666667,1,1,0,0,8,12,5,1,1148.5,1771863.1,1243509.8,372596.56,34644.32,0,0,9631.252 +15826,19352,34504,34503,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6634159,8.3345566,0,1,-5,-24.883972,-9,-9,-9,2021,6,0,30,0,1,0,0,14.465049,14.465049,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37,53.29,6.666666666666667,1,1,0,0,8,12,5,1,1148.5,1771863.1,1243509.8,372596.56,34644.32,0,0,9631.252 +15827,19353,34505,-9,34507,34508,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.6066,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34506,-9,34507,34508,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-960.09821,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34507,34508,-9,-9,1,0,52,0,2,0,2,2,-9,1,4,0,0,0,21,-5,54.67247,0,3,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34508,34507,-9,-9,1,1,57,0,2,0,2,2,-9,0,4,8.8706255,8.4939117,0,21,5,-58.026257,0,-9,-9,2021,6,0,25,24,1,0,0,28.523792,28.523792,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15828,19354,34509,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.6124411,9.4609957,0,9,-2,-156.53406,0,-9,-9,2021,9,0,51,53,1,0,0,35.447197,35.447197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,27.52,35.05,8.333333333333334,1,1,0,0,7,11,5,1,1421,184044.31,121382.04,120891.35,32602.064,0,1367.8762,3656.9309 +15828,19355,34510,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,1,8.9333277,8.853014,0,9,2,-16.118311,0,2,2,2021,13,1,44,45,1,1,0,18.700691,18.700691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.52,35.05,54.2,57.49,5,1,1,0,0,13,11,5,1,1612,458481.59,131124.17,194304.83,21818.039,0,-153.20361,3072.406 +15829,19356,34511,34512,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,7,3,2.6647508,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,13.416185,0,0,1,1,0,2.4094753,0,49.12,31.76,53.83,53.69,8.333333333333334,1,1,0,0,0,13,3,1,627.5,515084.53,592972.56,65225.5,0,0,0,3568.6697 +15829,19356,34512,34511,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.7098918,7.8928561,7,-3,-17.91341,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8268142,7.8086801,53.83,53.69,49.12,31.76,8.333333333333334,1,1,0,0,5,13,3,1,627.5,515084.53,592972.56,65225.5,0,0,0,3568.6697 +15830,19357,34513,34514,-9,-9,1,1,56,1,1,0,2,2,-9,0,4,6.340836,6.2105765,0,27,8,-3.3667402,-9,2,3,2021,19,7,16,0,1,7,0,3.3440349,3.3440349,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,30.23,53.8,3.333333333333333,1,1,0,0,12,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19357,34514,34513,-9,-9,1,0,48,1,1,0,1,1,-9,0,3,8.5824633,8.7935076,0,25,-8,-105.72684,0,2,2,2021,12,0,98,16,1,0,0,6.1358852,6.1358852,0,0,0,0,0,0,0,28,1,1,0,0,0,30.23,53.8,46.9,56.66,3.333333333333333,1,1,0,0,10,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19357,34515,-9,-9,34513,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-866.41608,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19358,34516,-9,-9,34517,1,1,10,1,1,1,3,0,-9,0,3,0,0,0,0,0,-929.37115,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,1,1,452,176658.63,0,166935.83,0,0,0,0 +15830,19358,34517,-9,34514,34513,1,1,20,1,1,0,2,2,-9,0,2,0,0,0,0,0,-883.41046,1,1,2,2021,18,6,0,24,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.65,53.52,-9,-9,5,1,1,0,0,3,2,1,1,452,176658.63,0,166935.83,0,0,0,0 +15831,19359,34518,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,7.9706798,7.9681721,0,0,0,-1020.0166,0,2,2,2021,6,0,50,45,1,0,0,6.2373486,6.2373486,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,584,115558.51,-2059.9431,333653.16,0,0,0,500.17868 +15832,19360,34519,34520,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.825634,7.7728548,29,1,-56.186028,0,2,1,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1908917,8.0785055,48.08,35.88,32.32,63.9,8.333333333333334,1,1,0,0,0,2,4,1,1478,1373710.8,679485.5,272901.59,0,0,0,3602.3328 +15832,19360,34520,34519,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.9096894,7.1858788,29,-1,-6.8594213,0,1,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2974966,7.2131863,32.32,63.9,48.08,35.88,8.333333333333334,1,1,0,0,0,2,4,1,1478,1373710.8,679485.5,272901.59,0,0,0,3602.3328 +15833,19361,34521,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-896.44391,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,-9,-9,10,1,1,0,0,0,10,1,0,501,158252.36,-41080.652,0,0,0,0,153.20177 +15834,19362,34522,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.4503298,7.6306434,4.2774582,0,0,-949.42529,0,3,3,2021,28,11,38,35,1,11,0,5.4476924,5.4476924,0,0,0,0,0,0,0,0,1,1,0,4.4072442,0,42.78,32.12,-9,-9,3.333333333333333,1,1,0,0,9,7,3,1,894.5,14720.074,0,0,0,4694.124,0,1692.9348 +15834,19362,34523,-9,34522,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1037.4281,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.113525,0,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,894.5,14720.074,0,0,0,4694.124,0,1692.9348 +15835,19363,34524,-9,-9,-9,1,1,36,0,0,0,1,1,-9,1,2,7.2558551,7.318027,0,0,0,-911.07233,0,2,2,2021,22,10,13,20,1,10,0,13.637817,13.637817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.36,47.96,-9,-9,3.333333333333333,1,1,0,0,6,9,3,0,246,37986.805,-80405.953,0,0,0,0,413.44492 +15836,19364,34525,34526,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1342669,8.4878597,8,1,-88.051445,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5058441,8.1329765,52.24,50.75,54.1,59.11,8.333333333333334,1,1,0,0,0,12,5,1,564.5,1138296.5,931087.75,142367.48,0,0,0,6156.0894 +15836,19364,34526,34525,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.9381762,8.7393618,8,-1,-93.489891,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5982606,8.835845,54.1,59.11,52.24,50.75,8.333333333333334,1,1,0,0,0,12,5,1,564.5,1138296.5,931087.75,142367.48,0,0,0,6156.0894 +15837,19365,34527,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.2170687,7.6986699,0,0,0,-989.61884,0,-9,-9,2021,15,3,41,36,1,3,0,10.651914,10.651914,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,5,7,4,0,113,-136766.42,46204.117,0,0,30157.768,0,2131.4141 +15838,19366,34528,-9,34529,-9,1,0,49,0,0,0,1,1,-9,0,2,6.8573818,6.7807035,0,0,0,-848.5946,0,2,2,2021,13,1,14,40,1,1,0,8.1412182,8.1412182,0,0,0,0,0,0,0,27,1,1,0,.49851552,0,49.18,40.45,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,77,-126174.62,0,0,0,0,0,484.10754 +15838,19367,34529,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.7927942,6.874578,0,0,-1011.6112,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,5.9996743,0,0,1,1,0,6.9697313,6.9710917,30.16,55.62,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,406,812916.63,290290.25,407855.72,0,6658.8813,0,-136.74088 +15839,19368,34530,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5197392,8.2803764,0,0,0,-1131.4281,0,2,3,2021,12,0,35,37,1,0,0,16.988234,16.988234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.41,57.84,-9,-9,3.333333333333333,1,1,0,0,12,6,5,1,786,879131.81,658795.19,330178.44,123380.39,0,4799.041,2130.1011 +15839,19369,34531,-9,34530,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7967353,8.1458845,0,0,0,-927.7522,-9,1,2,2021,2,0,35,0,1,0,1,8.8723888,8.8723888,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.61,58.85,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,956,202222.38,-90765.195,0,0,694.77826,73.630577,1087.7356 +15840,19370,34532,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.0922914,7.2943873,0,0,-1013.2515,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.800642,7.1922617,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,317,382670.59,-85905.5,71067.086,0,0,0,855.03357 +15841,19371,34533,34534,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,8.4537096,8.2619324,0,19,13,-78.419701,0,2,-9,2021,7,0,40,40,1,0,0,8.8722086,8.8722086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,8.333333333333334,1,1,0,0,8,8,5,0,1245.5,210015.36,119338.27,488342,352998.75,0,0,4278.5146 +15841,19371,34534,34533,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.9487743,9.4582253,0,19,-13,8.7618179,0,-9,-9,2021,7,0,40,35,1,0,0,24.350197,24.350197,.05,.05,0,0,0,0,0,0,1,1,0,2.2553403,0,62.49,55.09,61.12,51.57,10,1,1,0,0,10,8,5,0,1245.5,210015.36,119338.27,488342,352998.75,0,0,4278.5146 +15842,19372,34535,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.47113,0,2,2,2021,13,1,0,50,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,49.67,-9,-9,6.666666666666667,1,1,1,0,9,13,1,0,3574,-225571.66,0,0,0,0,0,0 +15843,19373,34536,34537,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,7,-1,-84.948311,0,-9,-9,2021,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1481056,0,57.06,57.76,58.15,52.91,10,1,1,0,0,8,9,2,1,616.5,777000.38,78323.641,497376.75,0,0,0,962.83197 +15843,19373,34537,34536,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.0839825,5.6968799,40,1,-69.694115,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1028852,58.15,52.91,57.06,57.76,10,1,1,0,0,3,9,2,1,616.5,777000.38,78323.641,497376.75,0,0,0,962.83197 +15844,19374,34538,34539,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0016022,8.0033674,0,10,-3,114.75381,0,-9,-9,2021,12,0,34,34,1,0,0,11.431849,11.431849,0,0,0,0,0,0,0,2,0,0,0,0,0,42.84,55.93,42.23,53.85,6.666666666666667,1,1,0,0,11,12,4,0,440.5,1383301.9,870882.25,435345.03,0,4795.4766,0,2060.1953 +15844,19374,34539,34538,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.4420967,7.6776023,0,10,3,-23.982212,0,2,3,2021,9,0,37,36,1,0,0,5.5843024,5.5843024,0,0,0,0,0,0,0,0,0,0,0,0,0,42.23,53.85,42.84,55.93,10,1,1,0,0,11,12,4,0,440.5,1383301.9,870882.25,435345.03,0,4795.4766,0,2060.1953 +15845,19375,34540,34541,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.6823921,8.9201241,0,21,-18,-11.945659,0,1,1,2021,10,0,40,40,1,0,0,17.923338,17.923338,0,0,0,0,0,0,0,0,0,0,0,2.3503883,0,52,54.51,49.71,39.74,8.333333333333334,1,1,0,0,15,10,5,1,878,1551125.5,975079.94,548177.88,0,0,0,3546.624 +15845,19375,34541,34540,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.4552803,7.8072734,5.7992167,21,18,-23.6059,0,3,1,2021,6,0,60,60,1,0,0,4.8004246,4.8004246,0,0,.05,0,0,0,0,0,0,0,0,5.7086258,5.7626414,49.71,39.74,52,54.51,6.666666666666667,1,1,0,0,12,10,5,1,878,1551125.5,975079.94,548177.88,0,0,0,3546.624 +15846,19376,34542,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.639523,7.4744267,0,0,0,-1048.7223,0,3,3,2021,8,0,25,25,1,0,0,8.1042366,8.1042366,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,116,-104186.45,0,0,0,0,0,1305.0696 +15847,19377,34543,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4964113,8.999897,0,0,0,-1033.5455,0,2,2,2021,1,0,44,44,1,0,0,20.496506,20.496506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6.666666666666667,2,3,0,0,6,8,5,1,1505,273917.75,144823.45,248280.23,188269.67,0,0,3293.2461 +15848,19378,34544,34545,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1917095,7.5415058,39,6,80.661011,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4193077,8.0826597,52,47,37.88,50.64,7,1,1,0,0,0,6,4,1,408.5,1052230.9,574252.5,294641.56,0,5626.792,0,3804.9214 +15848,19378,34545,34544,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2123528,7.0238261,39,-6,-5.0289249,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4898624,6.9627976,37.88,50.64,52,47,5,1,1,0,0,0,6,4,1,408.5,1052230.9,574252.5,294641.56,0,5626.792,0,3804.9214 +15849,19379,34546,34547,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,0,0,0,24,-7,-71.914276,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.2476213,0,57.06,57.76,41.47,40.12,10,1,1,0,0,5,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19379,34547,34546,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.7011118,9.6612244,0,25,7,1.5658741,0,2,2,2021,12,0,50,35,1,0,0,41.372017,41.372017,.05,.05,0,0,0,0,0,0,0,0,0,1.8761778,0,41.47,40.12,57.06,57.76,8.333333333333334,1,1,0,0,10,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19379,34548,-9,34546,34547,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.06079,-9,2,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.30758676,0,55.69,51.72,-9,-9,10,1,1,0,0,0,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19380,34549,-9,34546,34547,1,1,19,0,1,0,2,2,-9,0,2,7.547833,7.6238642,0,0,0,-931.04266,0,2,1,2021,20,8,35,20,1,8,1,4.9859943,4.9859943,0,0,0,0,0,0,0,0,0,0,0,.55539107,0,37.35,52.15,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,514,91992.117,0,0,0,0,0,1807.9697 +15850,19381,34550,-9,34552,34551,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1185.5223,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34551,34552,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.4448042,8.5603724,0,15,5,-17.320877,0,2,2,2021,9,0,40,40,1,0,0,12.2986,12.2986,.05,.05,0,0,0,0,0,2,1,1,0,.0099828122,0,33.37,60.58,35,55.7,8.333333333333334,2,3,0,0,11,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34552,34551,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.1801491,8.2398233,0,15,-5,46.406956,0,2,3,2021,12,1,46,48,1,1,0,11.908154,11.908154,.05,.05,0,0,0,0,0,7,1,1,0,0,0,35,55.7,33.37,60.58,8.333333333333334,2,3,0,0,11,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34553,-9,34552,34551,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.33362,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15851,19382,34554,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.3764296,8.2503204,5.4866109,0,0,-985.10461,0,2,2,2021,11,0,36,36,1,0,0,12.059663,12.059663,0,0,0,0,0,0,0,0,1,1,0,5.1813221,0,47.77,56.48,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,780,-18838.84,140673.63,155572.8,75944.344,8471.6133,0,1615.562 +15852,19383,34555,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.80829,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.21,16.44,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,181,21580.422,0,0,0,0,0,775.42719 +15853,19384,34556,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.3840437,7.4525633,0,0,-1003.915,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0446546,7.1409841,57.53,20.23,-9,-9,8.333333333333334,1,1,0,0,1,5,3,1,1334,547119.06,459318.09,255736.17,0,0,0,1714.3828 +15854,19385,34557,-9,34558,34559,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-901.76971,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15854,19385,34558,34559,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,7.6925244,7.3579998,0,5,-2,21.571312,0,2,1,2021,8,1,28,29,1,1,0,8.9294167,8.9294167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,57.16,56.15,10,1,1,0,0,7,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15854,19385,34559,34558,-9,-9,1,1,36,0,1,0,1,1,-9,0,4,8.6648979,8.2915821,0,5,2,85.390381,0,-9,-9,2021,10,0,48,58,1,0,0,12.801153,12.801153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.34,54.26,8.333333333333334,1,1,0,0,9,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15855,19386,34560,34561,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.8221531,8.7172966,0,23,3,49.247322,-9,2,1,2021,12,0,40,0,1,0,0,18.62159,18.62159,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,44.66,42.69,43.62,50.48,5,1,1,0,0,11,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19386,34561,34560,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1547747,8.0528917,0,23,-3,50.42902,0,-9,3,2021,17,5,45,0,1,5,0,6.4952855,6.4952855,.05,.05,0,0,0,0,0,27,1,0,1,0,0,43.62,50.48,44.66,42.69,3.333333333333333,1,1,0,1,11,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19386,34562,-9,34561,34560,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1013.8771,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.88,42.09,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19387,34563,-9,34561,34560,1,1,23,0,1,0,2,2,-9,0,3,6.6876726,6.641067,0,0,0,-1056.2152,0,2,2,2021,16,4,10,0,1,4,1,10.037624,10.037624,0,0,0,0,0,0,0,0,1,0,1,0,0,51.44,48.1,-9,-9,6.666666666666667,1,1,0,1,3,11,2,1,302,0,0,0,0,0,0,844.58038 +15855,19388,34564,-9,34561,34560,1,1,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-919.00378,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.67641962,0,60.02,56.42,-9,-9,10,1,1,0,0,2,11,1,1,1124,-181311.81,0,0,0,0,0,-542.44379 +15856,19389,34565,34566,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2568474,9.0448675,0,27,-1,38.901207,0,2,2,2021,4,0,52,47,1,0,0,21.070013,21.070013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.81,53.56,8.333333333333334,1,1,0,0,11,6,5,1,2865.5,2255085.8,1893623.3,333930.5,86697.672,16393.895,0,4215.9561 +15856,19389,34566,34565,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.9605575,6.8257942,0,27,1,30.12557,0,2,3,2021,9,0,15,15,1,0,0,7.1970677,7.1970677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.81,53.56,57.33,53.46,8.333333333333334,1,1,0,0,11,6,5,1,2865.5,2255085.8,1893623.3,333930.5,86697.672,16393.895,0,4215.9561 +15856,19390,34567,-9,34566,34565,1,0,21,0,0,0,2,2,1,0,4,7.539073,7.6715307,0,0,0,-1002.1646,-9,1,1,2021,18,6,30,0,1,6,1,7.1429958,7.1429958,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.17,56.33,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,895,58006.969,-108830.91,0,0,2895.5642,0,954.29181 +15856,19391,34568,-9,34566,34565,1,1,19,0,0,0,2,2,-9,0,3,7.0247307,7.0544958,0,0,0,-826.44537,0,1,1,2021,11,1,16,0,1,1,1,7.7927628,7.7927628,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,2,6,2,1,5066,-182786.33,0,0,0,0,0,219.97697 +15857,19392,34569,34570,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7054758,8.8340359,0,11,-1,75.845947,0,2,2,2021,10,0,26,33,1,0,0,31.798527,31.798527,0,0,0,0,0,0,0,2,0,0,0,0,0,45.91,59.89,47.44,56.39,8.333333333333334,1,1,0,0,12,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19392,34570,34569,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.3079958,9.3735218,0,11,1,21.291586,0,2,1,2021,12,0,50,50,1,0,0,32.325737,32.325737,.05,.05,.05,0,0,0,0,0,0,0,0,2.0234308,0,47.44,56.39,45.91,59.89,8.333333333333334,1,1,0,0,12,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19392,34571,-9,34569,34570,1,0,16,0,1,1,3,0,-9,0,5,0,2.8297737,2.7272854,0,0,-1135.7797,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7659552,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19393,34572,-9,34569,34570,1,0,20,0,1,1,2,0,0,0,5,0,6.1359911,5.9093828,0,0,-840.03577,-9,1,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8207884,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,358,-331627,0,0,0,0,0,1141.9434 +15858,19394,34573,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.0474043,8.4939089,7.7225604,0,0,-1024.1179,0,3,3,2021,32,12,21,28,1,12,0,24.791307,24.791307,.05,.05,0,0,0,0,0,0,1,1,0,4.1082907,7.5418458,36.33,34.94,-9,-9,5,1,1,0,0,9,12,5,0,151,219056.08,193775.13,30755.914,9176.3281,-135.10286,1312.5446,2174.2742 +15859,19395,34574,34575,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.2412629,6.2807183,6,3,-60.118095,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5277071,6.1349912,41.07,60.93,47.39,56.64,0,1,1,0,0,0,12,2,1,3162,604720.31,169531.28,356408.75,0,0,0,928.95245 +15859,19395,34575,34574,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.2940917,6.2967033,6,-3,-177.02979,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3212447,47.39,56.64,41.07,60.93,8.333333333333334,1,1,0,0,0,12,2,1,3162,604720.31,169531.28,356408.75,0,0,0,928.95245 +15860,19396,34576,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,1,7.8376451,7.7590761,0,0,0,-995.31128,0,2,3,2021,22,9,37,37,1,9,0,7.5834761,7.5834761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.51,36.1,-9,-9,1.666666666666667,1,1,0,0,15,5,3,1,1504,259999,75451.633,170103.91,12697.063,0,0,1629.4438 +15861,19397,34577,34578,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.6978388,7.9884253,0,13,-5,-28.413006,0,2,1,2021,8,0,5,0,1,0,0,53.832253,53.832253,0,0,0,0,0,0,0,0,0,0,0,7.7331905,0,63.39,45.09,48.87,58.55,10,2,3,0,0,6,7,5,1,533.5,555997.13,203873.44,484484.25,100307.72,5170.5645,0,6200.6836 +15861,19397,34578,34577,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.5994663,8.7196102,0,10,5,-8.9428301,0,-9,-9,2021,12,0,40,40,1,0,0,20.150467,20.150467,.05,.05,0,0,0,0,0,0,0,0,0,6.8448558,0,48.87,58.55,63.39,45.09,5,1,1,0,0,13,7,5,1,533.5,555997.13,203873.44,484484.25,100307.72,5170.5645,0,6200.6836 +15862,19398,34579,34580,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.3288183,7.108005,45,-1,-84.766556,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8409829,6.7839622,60.02,56.42,48.45,57.49,8.333333333333334,1,1,0,0,0,5,4,1,1046.5,1091620.8,878944.94,193267.64,0,11734.052,0,2853.5154 +15862,19398,34580,34579,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0747652,8.1536179,45,1,14.649218,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9732943,8.2615337,48.45,57.49,60.02,56.42,10,1,1,0,0,7,5,4,1,1046.5,1091620.8,878944.94,193267.64,0,11734.052,0,2853.5154 +15863,19399,34581,34582,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,6,10,-149.28847,0,-9,-9,2021,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5281248,0,62.49,55.09,50,54,10,2,3,1,0,5,8,4,0,512,1115214.8,656628.56,570860.25,0,0,0,2533.4619 +15863,19399,34582,34581,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6024494,8.9750967,0,6,-10,93.975533,0,-9,-9,2021,10,0,38,38,1,1,0,18.827942,18.827942,0,0,0,0,0,0,0,0,0,0,0,2.4065468,0,50,54,62.49,55.09,8,2,3,0,0,10,8,4,0,512,1115214.8,656628.56,570860.25,0,0,0,2533.4619 +15864,19400,34583,34584,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.9782052,6.112895,49,4,-47.459942,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7972984,57.8,45.08,49.63,54.22,8.333333333333334,1,1,0,0,8,9,3,1,1192,1733965.5,1137622.9,485568.31,0,10240.518,0,3135.4922 +15864,19400,34584,34583,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.4758658,7.1440177,0,48,-4,-33.108784,0,-9,3,2021,10,1,30,30,1,1,0,7.2291737,7.2291737,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,57.8,45.08,10,1,1,0,0,13,9,3,1,1192,1733965.5,1137622.9,485568.31,0,10240.518,0,3135.4922 +15865,19401,34585,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.7955308,6.8649325,0,0,-982.4187,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.4974627,57.11,43.98,-9,-9,5,1,1,0,0,7,11,2,1,401,125569.1,95340.555,59058.848,0,0,0,2014.6176 +15866,19402,34586,34587,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9037671,7.803545,0,7,0,-32.794853,0,3,3,2021,22,9,35,35,1,9,0,8.6844978,8.6844978,0,0,0,0,0,0,0,27,0,0,0,0,0,36.71,46.99,54.2,57.49,3.333333333333333,1,1,0,1,13,12,5,1,1068.5,427171.91,170469.91,205752.97,68741.781,0,0,3304.0562 +15866,19402,34587,34586,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.777894,8.9607954,0,7,0,-105.27549,-9,2,2,2021,8,0,44,0,1,0,0,15.386668,15.386668,0,0,.05,0,0,0,0,7,0,0,0,0,0,54.2,57.49,36.71,46.99,8.333333333333334,1,1,0,0,15,12,5,1,1068.5,427171.91,170469.91,205752.97,68741.781,0,0,3304.0562 +15866,19403,34588,-9,34586,34587,1,0,21,0,0,1,1,0,0,0,3,0,0,0,0,0,-1071.8682,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3618684,0,23.75,62.16,-9,-9,3.333333333333333,1,1,0,0,4,12,1,1,1419,64121.762,0,0,0,0,0,160.65849 +15867,19404,34589,34592,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.8997726,9.022481,0,14,-12,-80.425125,0,1,2,2021,8,0,38,38,1,0,0,24.145281,24.145281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,41.11,60.68,8.333333333333334,1,1,0,0,9,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34590,-9,34589,34592,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.86047,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34591,-9,34589,34592,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8933,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34592,34589,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.7089977,8.6730146,5.1360931,15,12,-105.76112,0,1,1,2021,15,4,70,37,1,4,0,9.648818,9.648818,.05,.05,0,0,0,0,0,0,0,0,0,6.0027394,0,41.11,60.68,52,54.51,3.333333333333333,1,1,0,0,12,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15868,19405,34593,-9,34594,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.5327,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1344,213837.25,147123.69,0,0,4876.9087,606.42145,2275.0549 +15868,19405,34594,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1372309,8.1190319,6.3850832,0,0,-1009.1127,0,2,2,2021,17,6,30,33,1,6,0,9.6676865,9.6676865,.05,.05,0,0,0,0,0,2,1,1,0,6.8205886,0,32.42,58.05,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,1344,213837.25,147123.69,0,0,4876.9087,606.42145,2275.0549 +15869,19406,34595,34596,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,7.7371721,7.5746207,5.1664863,41,2,20.626661,0,3,3,2021,9,0,10,12,1,0,0,25.986959,25.986959,0,0,0,0,0,0,0,14.5,1,1,0,4.7199507,5.183526,64.40000000000001,42,57.27,41.15,8.333333333333334,1,1,0,0,11,10,3,1,349,1713344.3,953525.63,519135.63,0,0,0,3661.0664 +15869,19406,34596,34595,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.2658291,7.3562703,41,-2,101.84734,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.261066,7.0645742,57.27,41.15,64.40000000000001,42,8.333333333333334,1,1,0,0,11,10,3,1,349,1713344.3,953525.63,519135.63,0,0,0,3661.0664 +15870,19407,34597,34598,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,2,-13,86.568237,0,-9,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.12,60.92,51,57,1.666666666666667,1,1,0,0,2,4,4,0,284.5,76501.313,46211.41,237089.06,142583.59,14862.533,0,2612.0146 +15870,19407,34598,34597,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.8074837,8.8032703,0,2,13,26.473749,0,-9,-9,2021,10,0,40,48,1,1,0,17.511826,17.511826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,57,30.12,60.92,7,1,1,0,0,1,4,4,0,284.5,76501.313,46211.41,237089.06,142583.59,14862.533,0,2612.0146 +15871,19408,34599,34600,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1052341,8.0275373,0,21,-5,29.742214,0,3,3,2021,23,10,41,40,1,10,0,10.419085,10.419085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.97,59.76,52.24,50.75,8.333333333333334,1,1,0,0,8,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34600,34599,-9,-9,1,1,52,0,2,0,3,3,-9,0,2,8.102211,8.1436567,0,21,5,-41.11721,0,2,2,2021,9,0,44,45,1,0,0,9.4492397,9.4492397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,28.97,59.76,5,1,1,0,0,8,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34601,-9,34599,34600,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.2511,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34602,-9,34599,34600,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-805.88995,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15872,19409,34603,34604,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7476926,8.0682764,46,2,-52.07851,-9,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8980746,44.7,53.68,49.19,39.8,0,4,2,0,0,0,10,3,1,675,468329.88,386808.25,227256.88,0,12554.656,0,2416.3123 +15872,19409,34604,34603,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,6.0675969,6.5984178,0,1,-2,-53.645279,-9,2,2,2021,11,1,8,0,1,1,0,8.3225975,8.3225975,0,0,0,0,0,0,0,0,1,1,0,0,0,49.19,39.8,44.7,53.68,8.333333333333334,1,1,0,0,10,10,3,1,675,468329.88,386808.25,227256.88,0,12554.656,0,2416.3123 +15873,19410,34605,34607,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.7112322,8.9237118,0,15,4,-33.815037,0,2,2,2021,9,0,40,42,1,0,0,24.383963,24.383963,.05,.05,.05,0,0,0,0,0,1,1,0,4.7192068,0,58.89,48.6,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15873,19410,34606,-9,34607,34605,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.94165,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15873,19410,34607,34605,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.5807142,7.411942,0,15,-4,-57.230148,0,3,2,2021,11,0,23,0,1,0,0,8.953927,8.953927,.05,.05,0,0,0,0,0,0,1,1,0,6.9994559,0,54.2,57.49,58.89,48.6,8.333333333333334,1,1,0,0,3,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15874,19411,34608,34609,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.4137182,7.7173634,60,-3,-65.579742,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,42,1,1,0,1.1402391,7.425251,61.93,22.04,51.84,17.36,8.333333333333334,1,1,0,0,0,8,3,1,248,589733.13,173822.5,429110.5,0,0,0,2006.2119 +15874,19411,34609,34608,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,60,3,-49.005943,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,17.313673,0,0,1,1,0,0,0,51.84,17.36,61.93,22.04,1.666666666666667,1,1,0,0,0,8,3,1,248,589733.13,173822.5,429110.5,0,0,0,2006.2119 +15875,19412,34610,-9,34613,34612,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3827,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34611,-9,34613,34612,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.591,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34612,34613,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.2859516,8.4046001,0,18,5,-15.228787,0,2,2,2021,7,0,53,47,1,0,0,11.453497,11.453497,.05,.05,0,0,0,0,0,0,1,1,0,.59387773,0,57.33,53.46,46.98,59.35,8.333333333333334,1,1,0,0,12,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34613,34612,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.805397,8.969718,0,20,-5,-84.794655,0,2,3,2021,14,3,53,48,1,3,0,13.479365,13.479365,0,0,0,0,0,0,0,0,1,1,0,3.2347598,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,12,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15876,19413,34614,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.1776123,7.7616892,0,0,-1072.5684,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.02987,7.7719383,51.79,37.13,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,1433,712294,448729.88,297395.94,0,0,0,1478.5563 +15877,19414,34615,34616,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.7405615,8.8544588,0,8,-1,-64.629364,0,-9,-9,2021,10,0,48,45,1,0,0,18.142019,18.142019,.05,.05,0,0,0,0,0,0,1,1,0,8.2070456,0,47.66,52.33,44.45,57.75,6.666666666666667,1,1,0,0,7,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34616,34615,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.5470943,8.4651775,0,21,1,-9.6474962,0,1,2,2021,12,3,70,58,1,3,0,11.537052,11.537052,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.45,57.75,47.66,52.33,6.666666666666667,1,1,0,0,6,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34617,-9,34616,34615,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1073.9706,-9,1,1,2021,15,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34618,-9,34616,34615,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.83868,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34619,-9,34616,34615,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-996.28247,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15878,19415,34620,34622,-9,-9,1,0,28,1,1,0,1,1,-9,0,5,8.0598974,7.966053,0,1,0,136.05237,-9,1,1,2021,15,3,45,0,1,3,0,6.3023686,6.3023686,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.99,65,20.76,64.84999999999999,8.333333333333334,1,1,0,0,7,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15878,19415,34621,-9,34620,34622,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.784,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15878,19415,34622,34620,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,9.1623859,8.9273615,0,1,0,-36.26178,-9,-9,-9,2021,30,10,40,0,1,10,0,30.348806,30.348806,.05,.05,0,0,0,0,0,0,1,1,0,3.8306377,0,20.76,64.84999999999999,37.99,65,1.666666666666667,1,1,0,0,0,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15879,19416,34623,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3370142,8.4025059,0,0,0,-948.21277,-9,2,3,2021,7,0,55,0,1,0,0,11.165159,11.165159,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,504,9822.502,0,0,0,0,0,2356.262 +15880,19417,34624,34625,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.5969305,8.5231924,0,6,7,94.563156,0,-9,-9,2021,7,0,95,65,1,0,0,4.6162724,4.6162724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,57.9,51.84,5,1,1,0,0,6,2,4,1,520,991556.56,736001.25,207110.22,73113.523,2779.0166,0,2926.2778 +15880,19417,34625,34624,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.0924997,7.8299608,0,6,-7,27.209507,0,2,2,2021,11,0,37,43,1,0,0,11.103292,11.103292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,55.2,49.4,8.333333333333334,1,1,0,0,8,2,4,1,520,991556.56,736001.25,207110.22,73113.523,2779.0166,0,2926.2778 +15881,19418,34626,-9,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1060.6492,-9,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,41.39,-9,-9,1.666666666666667,2,3,1,1,2,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 +15881,19418,34627,-9,34626,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 +15881,19418,34628,-9,34626,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.74908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 diff --git a/input/reg_socialcare.xlsx b/input/reg_socialcare.xlsx index 67e7f3107..d88086565 100644 Binary files a/input/reg_socialcare.xlsx and b/input/reg_socialcare.xlsx differ diff --git a/src/main/java/simpaths/data/ManagerRegressions.java b/src/main/java/simpaths/data/ManagerRegressions.java index d2d57d14e..2b29f9e87 100644 --- a/src/main/java/simpaths/data/ManagerRegressions.java +++ b/src/main/java/simpaths/data/ManagerRegressions.java @@ -79,12 +79,6 @@ public static LinearRegression getLinearRegression(RegressionName regression) { case SocialCareS2e -> { return Parameters.getRegFormalCareHoursS2e(); } - case SocialCareS3c -> { - return Parameters.getRegCareHoursProvS3c(); - } - case SocialCareS3d -> { - return Parameters.getRegCareHoursProvS3d(); - } // case SocialCareS1b -> { // return Parameters.getRegCareHoursS1b(); // } @@ -199,6 +193,12 @@ public static OrderedRegression getOrderedRegression(RegressionName regression) case HealthHM1Case -> { return Parameters.getRegHealthHM1Case(); } + case SocialCareS3c -> { + return Parameters.getRegCareHoursProvS3c(); + } + case SocialCareS3d -> { + return Parameters.getRegCareHoursProvS3d(); + } default -> { throw new RuntimeException("unrecognised regression (1)"); } @@ -386,7 +386,7 @@ public static & IntegerValuedEnum> Map getProbabil public static & IntegerValuedEnum> E getEvent(Map probs, double rand) { - List eventList = (List) probs.keySet(); + List eventList = new ArrayList<>(probs.keySet()); eventList.sort(Comparator.comparingInt(IntegerValuedEnum::getValue)); double prob = 0.0; diff --git a/src/main/java/simpaths/data/Parameters.java b/src/main/java/simpaths/data/Parameters.java index 3e6dfd4cd..ac40f8372 100644 --- a/src/main/java/simpaths/data/Parameters.java +++ b/src/main/java/simpaths/data/Parameters.java @@ -300,7 +300,7 @@ else if(numberOfChildren <= 5) { public static final double MIN_HOURLY_WAGE_RATE = 1.5; public static final double MAX_HOURLY_WAGE_RATE = 150.0; public static final double MAX_HOURS_WEEKLY_FORMAL_CARE = 150.0; - public static final double MAX_HOURS_WEEKLY_INFORMAL_CARE = 16 * 7; + public static final double MAX_HOURS_WEEKLY_INFORMAL_CARE = HOURS_IN_WEEK; public static final double CHILDCARE_COST_EARNINGS_CAP = 0.5; // maximum share of earnings payable as childcare (for benefit units with some earnings) public static final int MIN_DIFFERENCE_AGE_MOTHER_CHILD_IN_ALIGNMENT = 15; //When assigning children to mothers in the population alignment, specify how much older (at the minimum) the mother must be than the child public static final int MAX_EM_DONOR_RATIO = 3; // Used by BenefitUnit => convertGrossToDisposable() to decide whether gross-to-net ratio should be applied or disposable income from the donor used directly @@ -740,8 +740,8 @@ else if(numberOfChildren <= 5) { // private static LinearRegression regFormalCareHoursS2k; // retired process private static BinomialRegression regCarePartnerProvCareToOtherS3a; private static BinomialRegression regNoCarePartnerProvCareToOtherS3b; - private static LinearRegression regCareHoursProvS3c; - private static LinearRegression regCareHoursProvS3d; + private static OrderedRegression regCareHoursProvS3c; + private static OrderedRegression regCareHoursProvS3d; // private static LinearRegression regCareHoursProvS3e; // retired process //Unemployment @@ -1429,8 +1429,8 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab // regFormalCareHoursS2k = new LinearRegression(coeffCovarianceSocialCareS2k); // retired process regCarePartnerProvCareToOtherS3a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3a); regNoCarePartnerProvCareToOtherS3b = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3b); - regCareHoursProvS3c = new LinearRegression(coeffCovarianceSocialCareS3c); - regCareHoursProvS3d = new LinearRegression(coeffCovarianceSocialCareS3d); + regCareHoursProvS3c = new OrderedRegression<>(RegressionType.OrderedLogit, CareHoursProvidedCategory.class, coeffCovarianceSocialCareS3c); + regCareHoursProvS3d = new OrderedRegression<>(RegressionType.OrderedLogit, CareHoursProvidedCategory.class, coeffCovarianceSocialCareS3d); // regCareHoursProvS3e = new LinearRegression(coeffCovarianceSocialCareS3e); // retired process //lifetime incomes @@ -1954,8 +1954,8 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen // public static LinearRegression getRegFormalCareHoursS2k() { return regFormalCareHoursS2k; } // retired process public static BinomialRegression getRegCarePartnerProvCareToOtherS3a() { return regCarePartnerProvCareToOtherS3a; } public static BinomialRegression getRegNoCarePartnerProvCareToOtherS3b() { return regNoCarePartnerProvCareToOtherS3b; } - public static LinearRegression getRegCareHoursProvS3c() { return regCareHoursProvS3c; } - public static LinearRegression getRegCareHoursProvS3d() { return regCareHoursProvS3d; } + public static OrderedRegression getRegCareHoursProvS3c() { return regCareHoursProvS3c; } + public static OrderedRegression getRegCareHoursProvS3d() { return regCareHoursProvS3d; } // public static LinearRegression getRegCareHoursProvS3e() { return regCareHoursProvS3e; } // retired process public static LinearRegression getRegEquivalisedIncomeMales() {return regEquivalisedIncomeMales;} diff --git a/src/main/java/simpaths/data/RegressionName.java b/src/main/java/simpaths/data/RegressionName.java index c594fe03f..5f0c3b25d 100644 --- a/src/main/java/simpaths/data/RegressionName.java +++ b/src/main/java/simpaths/data/RegressionName.java @@ -59,8 +59,8 @@ public enum RegressionName { SocialCareS2k(RegressionType.Linear), SocialCareS3a(RegressionType.Probit), SocialCareS3b(RegressionType.Probit), - SocialCareS3c(RegressionType.Linear), - SocialCareS3d(RegressionType.Linear), + SocialCareS3c(RegressionType.OrderedLogit), + SocialCareS3d(RegressionType.OrderedLogit), SocialCareS3e(RegressionType.Linear), UnemploymentU1a(RegressionType.Probit), diff --git a/src/main/java/simpaths/model/Person.java b/src/main/java/simpaths/model/Person.java index 4cb1cfe5c..208dac809 100644 --- a/src/main/java/simpaths/model/Person.java +++ b/src/main/java/simpaths/model/Person.java @@ -1613,21 +1613,10 @@ public void evaluateSocialCareProvision(double probitAdjustment) { boolean provideCare = (statInnovations.getDoubleDraw(37) < probProvideAny); if (!Parameters.flagSuppressSocialCareCosts && provideCare) { - double score; - double rmse; - if (partner == null) { - - // S3c: informal care hours provided, singles (conditional on providing care). - score = Parameters.getRegCareHoursProvS3c().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3c"); - } else { - - // S3d: informal care hours provided, partnered (conditional on providing care). - score = Parameters.getRegCareHoursProvS3d().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3d"); - } - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(14)); - careHrsProvidedWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.sinh(score + rmse * gauss)); + // S3c/S3d: ordered-logit category of informal care hours, conditional on providing care. + RegressionName regression = (partner == null) ? RegressionName.SocialCareS3c : RegressionName.SocialCareS3d; + CareHoursProvidedCategory category = ManagerRegressions.getEvent(this, regression, statInnovations.getDoubleDraw(14)); + careHrsProvidedWeek = category.getRepresentativeHours(); careProvidedFlag = Indicator.True; } } diff --git a/src/main/java/simpaths/model/decisions/Expectations.java b/src/main/java/simpaths/model/decisions/Expectations.java index 7d4c43122..88ddd86e5 100644 --- a/src/main/java/simpaths/model/decisions/Expectations.java +++ b/src/main/java/simpaths/model/decisions/Expectations.java @@ -1,6 +1,7 @@ package simpaths.model.decisions; import java.security.InvalidParameterException; +import java.util.Map; import simpaths.data.ManagerRegressions; import simpaths.data.Parameters; @@ -502,15 +503,12 @@ private double evalSocialCareHoursProvidedWeekly() { Indicator status = currentStates.getSocialCareProvisionState(); if (!Indicator.False.equals(status)) { - double score, rmse; - if (cohabitation) { - score = Parameters.getRegCareHoursProvS3d().getScore(personProxyThisPeriod,Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3d"); - } else { - score = Parameters.getRegCareHoursProvS3c().getScore(personProxyThisPeriod,Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3c"); + RegressionName regression = cohabitation ? RegressionName.SocialCareS3d : RegressionName.SocialCareS3c; + Map probabilities = + ManagerRegressions.getProbabilities(personProxyThisPeriod, regression); + for (Map.Entry entry : probabilities.entrySet()) { + socialCareHoursProvidedWeekly += entry.getKey().getRepresentativeHours() * entry.getValue(); } - socialCareHoursProvidedWeekly = Math.min(80.0, Math.exp(score + rmse*rmse/2.0)); } } return socialCareHoursProvidedWeekly; diff --git a/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java b/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java new file mode 100644 index 000000000..7a96db4f8 --- /dev/null +++ b/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java @@ -0,0 +1,38 @@ +package simpaths.model.enums; + +import microsim.statistics.regression.IntegerValuedEnum; + +/** + * Ordered categories for weekly informal-care hours provided. + * + *

The integer values match the S3c/S3d ordered-logit outcome categories. + * Representative hours reproduce the values assigned in the source-data + * preparation and regression-estimation scripts.

+ */ +public enum CareHoursProvidedCategory implements IntegerValuedEnum { + + Hours2(1, 2.0), + Hours7(2, 7.0), + Hours14_5(3, 14.5), + Hours27(4, 27.0), + Hours42(5, 42.0), + Hours74_5(6, 74.5), + Hours120(7, 120.0); + + private final int value; + private final double representativeHours; + + CareHoursProvidedCategory(int value, double representativeHours) { + this.value = value; + this.representativeHours = representativeHours; + } + + @Override + public int getValue() { + return value; + } + + public double getRepresentativeHours() { + return representativeHours; + } +} diff --git a/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv b/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv index dd4b5d986..9651197fc 100644 --- a/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv +++ b/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv @@ -1,9 +1,9 @@ run,time,id_AlignmentStatistics,empShareSimACFemales,empShareSimACMales,empShareSimCouples,empShareSimSingleDepFemales,empShareSimSingleDepMales,empShareSimSingleFemales,empShareSimSingleMales,empShareTgtACFemales,empShareTgtACMales,empShareTgtCouples,empShareTgtSingleDepFemales,empShareTgtSingleDepMales,empShareTgtSingleFemales,empShareTgtSingleMales,fertilityAdjFactor,fertilityRateSim,fertilityRateTgt,inSchoolAdjFactor,inSchoolShareSim,inSchoolShareTgt,partnershipAdjFactor,shareCohabitingSim,shareCohabitingTgt,utilityAdjACFemales,utilityAdjACMales,utilityAdjCouples,utilityAdjSingleDepFemales,utilityAdjSingleDepMales,utilityAdjSingleFemales,utilityAdjSingleMales -1,2019.0,1,0.5623931623931624,0.5619047619047619,0.8590878148400273,0.3333333333333333,0.44308943089430897,0.43822697265011,0.5445244410761653,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.05029585798816568,0.05113363440615968,0.0,0.281711358843025,0.3023858368396759,0.0,0.5387792565396972,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2020.0,1,0.4456066945606695,0.5435606060606061,0.9005011792452831,0.4628975265017668,0.4928571428571429,0.3304608467590858,0.42528195488721804,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.049143708116157855,0.04996578478889472,0.0,0.2924012158054711,0.2760101854801178,1.5821116748810904,0.6224217580844558,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2021.0,1,0.4796747967479675,0.5254545454545455,0.9192601291837933,0.48623853211009177,0.5,0.38683602771362585,0.4620655898188938,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.0511166253101737,0.04833442666835588,0.0,0.3289594140982606,0.2792655229568481,0.7169224098724992,0.6320015541021822,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2022.0,1,0.48877374784110533,0.5664556962025317,0.9273952095808383,0.4984709480122324,0.4919678714859438,0.42327650111193477,0.4901593252108716,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.04852216748768473,0.04938041570024613,0.0,0.31217734588521107,0.2648949027061462,0.0,0.6123051260665939,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2019.0,1,0.5623931623931624,0.5625990491283677,0.8589656345695815,0.3341584158415842,0.4426229508196721,0.44052863436123346,0.5452823039029936,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.05025868440502587,0.05113363440615968,0.0,0.28154170430593195,0.3023858368396759,0.0,0.5392124746118063,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2020.0,1,0.4904051172707889,0.5196998123827392,0.898868036937742,0.46539792387543255,0.49333333333333335,0.32415333085225156,0.42240975152367555,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.05357142857142857,0.04996578478889472,0.0,0.29526123936816523,0.2760101854801178,1.612974117630252,0.6215548621944877,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2021.0,1,0.5145833333333333,0.5353901996370236,0.9143775569842197,0.4888888888888889,0.4980694980694981,0.37547600913937546,0.4616511968734734,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.06047889410022217,0.04833442666835588,0.0,0.31671732522796353,0.2792655229568481,0.7340164516985729,0.6316673124112101,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2022.0,1,0.5009009009009009,0.5664556962025317,0.9255222524977293,0.4952978056426332,0.49607843137254903,0.4153225806451613,0.48303114830311483,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.04878652798415057,0.04938041570024613,0.0,0.3192202254035943,0.2648949027061462,0.0,0.61000385752861,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2019.0,1,0.5017182130584192,0.567524115755627,0.877972027972028,0.3619047619047619,0.43356643356643354,0.4658780709736124,0.5353901996370236,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.049877149877149876,0.05113363440615968,0.0,0.2955160999097201,0.3023858368396759,0.0,0.5256896326317165,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,0.43312101910828027,0.5306122448979592,0.9078327444051826,0.47128378378378377,0.48026315789473684,0.3220149253731343,0.4368347987043036,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.049367402629620444,0.04996578478889472,0.0,0.2982028632348462,0.2760101854801178,1.6784928515650515,0.6225113858165257,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2021.0,1,0.45417515274949083,0.5142314990512334,0.9229081334113517,0.4868421052631579,0.48084291187739464,0.38556067588325654,0.4810187409899087,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.04747700720855083,0.04833442666835588,0.0,0.333027803238619,0.2792655229568481,0.6593871275540656,0.6310886862022123,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2022.0,1,0.46678321678321677,0.5377207062600321,0.9290780141843972,0.49420289855072463,0.4889867841409692,0.4170650974623023,0.48663594470046084,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.048296151017406225,0.04938041570024613,0.0,0.3152634766807995,0.2648949027061462,0.1264374109098567,0.6110969061621069,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2019.0,1,0.5008576329331046,0.567524115755627,0.8775831873905429,0.3632075471698113,0.43617021276595747,0.46504559270516715,0.5347826086956522,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.049926217412690606,0.05113363440615968,0.0,0.29627403846153844,0.3023858368396759,0.0,0.525599947688485,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,0.461038961038961,0.5132382892057027,0.9080357142857143,0.4685430463576159,0.4911504424778761,0.323781168589505,0.42994505494505497,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.049838026414153996,0.04996578478889472,0.0,0.3029286150091519,0.2760101854801178,1.7347871913004633,0.6206357477853048,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2021.0,1,0.4891304347826087,0.5209923664122137,0.9225455614344503,0.484375,0.4885057471264368,0.39113971980310486,0.4810187409899087,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.05320735952262556,0.04833442666835588,0.0,0.31098867462503826,0.2792655229568481,0.8022430892446019,0.630488278720373,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2022.0,1,0.48518518518518516,0.5364667747163695,0.9302117506710409,0.49449035812672176,0.4955555555555556,0.4186558942343004,0.48984302862419205,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.04865398863917016,0.04938041570024613,0.0,0.31907794965119807,0.2648949027061462,0.0,0.6119383825417202,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv b/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv index 725e562e5..e060d9931 100644 --- a/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv +++ b/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv @@ -1,9 +1,9 @@ run,time,id_DemographicStatistics,demMarried18to29Share,demMarried30to54Share,demMarried55to74Share,demNChild18to29Avg,demNChild30to54Avg,demNChild55to74Avg,demPop18to29N,demPop30to54N,demPop55to74N -1,2019.0,1,0.2620357634112792,0.6720496894409937,0.5969519343493552,0.29332874828060523,0.9503105590062112,0.07409144196951935,2908.0,6440.0,4265.0 -1,2020.0,1,0.4320083682008368,0.7601499063085572,0.6444393170281495,0.32391910739191077,0.9761086820737039,0.08121827411167512,2868.0,6404.0,4334.0 -1,2021.0,1,0.43254667136315605,0.7767398411957029,0.6551331664010926,0.33110250088059173,0.973688307644403,0.08559071249715457,2839.0,6423.0,4393.0 -1,2022.0,1,0.3804347826086957,0.7568864128752708,0.6534181240063593,0.31661991584852733,0.9571340142370783,0.08766749943220531,2852.0,6462.0,4403.0 -2,2019.0,1,0.26082474226804125,0.6719428926132837,0.5978439184438715,0.2934707903780069,0.9497206703910615,0.07429107101007734,2910.0,6444.0,4267.0 -2,2020.0,1,0.427725531173807,0.7568157033805889,0.646963749711383,0.332985022640195,0.9691540738432778,0.08335257446317247,2871.0,6419.0,4331.0 -2,2021.0,1,0.4349807220469681,0.7736931906313014,0.6553056123608271,0.3480546792849632,0.9640142702031953,0.0897523290161327,2853.0,6447.0,4401.0 -2,2022.0,1,0.3694581280788177,0.7533032799626924,0.6564486830154405,0.3346235045742435,0.9417068241877817,0.09082652134423251,2842.0,6433.0,4404.0 +1,2019.0,1,0.24441388793399793,0.6560854753793744,0.5961178671655754,0.2743210725335167,0.933106224837411,0.07881197380729654,2909.0,6458.0,4276.0 +1,2020.0,1,0.4400977995110024,0.7572074177964782,0.6537927844588344,0.3328676213761788,0.9501324606513948,0.08464384828862165,2863.0,6417.0,4324.0 +1,2021.0,1,0.43946346629015176,0.7648980861988486,0.6626533393911859,0.33603953406283094,0.9394740936673409,0.09336665152203544,2833.0,6427.0,4402.0 +1,2022.0,1,0.37985309548793283,0.7480012300123001,0.6591683708248125,0.3196922000699545,0.9377306273062731,0.0924789820495342,2859.0,6504.0,4401.0 +2,2019.0,1,0.2449330127104088,0.6559256390395043,0.5952715355805244,0.2741326004809344,0.9344694035631294,0.07911985018726592,2911.0,6455.0,4272.0 +2,2020.0,1,0.43212036389083275,0.7521100343857455,0.655268022181146,0.33484954513645904,0.952172553923101,0.08456561922365989,2858.0,6398.0,4328.0 +2,2021.0,1,0.43840451817860926,0.7624318004676539,0.6642435256701499,0.3363925167666784,0.9457521434138737,0.09450249886415266,2833.0,6415.0,4402.0 +2,2022.0,1,0.38431921596079804,0.7467784505511567,0.6618982742960945,0.3227161358067903,0.9326191585157584,0.09673024523160763,2857.0,6441.0,4404.0 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv b/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv index 9b4f3e144..2c5c636d7 100644 --- a/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv +++ b/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv @@ -1,9 +1,9 @@ run,time,id_HealthStatistics,healthDsbl18to29Share,healthDsbl30to54Share,healthDsbl55to74Share,healthScore18to29Avg,healthScore30to54Avg,healthScore55to74Avg -1,2019.0,1,0.05811554332874828,0.09130434782608696,0.06236811254396248,3.69050894085282,3.4482919254658384,3.092379835873388 -1,2020.0,1,0.05788005578800558,0.09618988132417239,0.06991232118135672,3.584379358437936,3.38632104934416,3.050299953853253 -1,2021.0,1,0.06305036984853822,0.09917484041725051,0.06442066924652856,3.4945403311025007,3.3051533551300016,2.9927156840427953 -1,2022.0,1,0.06486676016830295,0.1053853296193129,0.0685895980013627,3.414095371669004,3.28149179820489,2.9280036338859867 -2,2019.0,1,0.05807560137457045,0.09109248913718188,0.0625732364659011,3.689347079037801,3.450651769087523,3.089289899226623 -2,2020.0,1,0.05886450714036921,0.09689982863374358,0.07134610944354652,3.582375478927203,3.3785636391961367,3.0374047564072963 -2,2021.0,1,0.06239046617595514,0.10469986040018614,0.06771188366280391,3.5033298282509637,3.3108422522103305,2.9820495341967734 -2,2022.0,1,0.06685432793807178,0.1027514378983367,0.06766575840145322,3.418015482054891,3.2928649152805844,2.9314259763851043 +1,2019.0,1,0.044001375042970095,0.08237844533911427,0.06711880261927035,3.655895496734273,3.476618148033447,3.055659494855005 +1,2020.0,1,0.044009779951100246,0.08991740688795387,0.06938020351526364,3.5745721271393642,3.388187626616799,3.0353839037927846 +1,2021.0,1,0.03882809742322626,0.09506768321145169,0.06428895956383462,3.5135898340981293,3.3304807841916912,3.0165833711949115 +1,2022.0,1,0.04686953480237845,0.10654981549815498,0.061576914337650536,3.4249737670514167,3.261992619926199,2.9529652351738243 +2,2019.0,1,0.04397114393679148,0.082571649883811,0.0671816479400749,3.6561319134318104,3.475445391169636,3.055945692883895 +2,2020.0,1,0.04443666899930021,0.092841512972804,0.06816081330868762,3.5675297410776765,3.3740231322288214,3.0309611829944547 +2,2021.0,1,0.04376985527709142,0.10023382696804364,0.06519763743752839,3.522414401694317,3.3178487918939985,3.002044525215811 +2,2022.0,1,0.04585229261463073,0.10588417947523676,0.060626702997275204,3.4441722086104307,3.272938984629716,2.9439146230699365 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv b/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv index d25bcd4f1..8c9645eaa 100644 --- a/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv +++ b/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv @@ -1,9 +1,9 @@ run,time,id_LabourStatistics,labEmpShare,labEmpToNotEmpShare,labNotEmpToEmpShare,labUnempShare,labWorkFullTime18to29Share,labWorkFullTime30to54Share,labWorkFullTime55to74Share,labWorkPartTime18to29Share,labWorkPartTime30to54Share,labWorkPartTime55to74Share -1,2019.0,1,0.712445288628293,0.0,0.0,0.15533900404657694,0.561554332874828,0.6751552795031056,0.2797186400937866,0.09353507565337002,0.140527950310559,0.08253223915592028 -1,2020.0,1,0.7175225336971802,0.07746719908727895,0.40664556962025317,0.15248490862482428,0.49860529986053,0.7409431605246721,0.3204891555145362,0.148186889818689,0.09509681449094316,0.06045223811721274 -1,2021.0,1,0.7493414553836022,0.019795298616578562,0.3625668449197861,0.10833058939743168,0.5223670306445932,0.7884166277440449,0.3530616890507626,0.13983797111659035,0.08438424412268411,0.06191668563623947 -1,2022.0,1,0.7627409343351845,0.023156546793298476,0.293470286133529,0.1002123489055864,0.5150771388499299,0.7977406375735067,0.37815126050420167,0.15427769985974754,0.08882698854843701,0.06495571201453554 -2,2019.0,1,0.7128238983330583,0.0,0.0,0.15514111239478462,0.5618556701030928,0.675667287399131,0.28005624560581205,0.09347079037800687,0.1404407200496586,0.0824935551910007 -2,2020.0,1,0.7114321089558399,0.08077709611451943,0.3876464323748669,0.15674783326454808,0.49738766980146293,0.7387443527029133,0.32302008773955204,0.14071752002786486,0.0900451783766942,0.05749249595936273 -2,2021.0,1,0.7445638795437761,0.020495980070207226,0.3470015376729882,0.11717403790924756,0.5331230283911672,0.7839305103148752,0.3565098841172461,0.12828601472134596,0.07910656119125174,0.06089525107930016 -2,2022.0,1,0.7559796854521625,0.02496771416272062,0.28796169630642954,0.10493119266055045,0.5087966220971147,0.7909218094201772,0.38033605812897364,0.15235749472202675,0.08767293642157625,0.06335149863760219 +1,2019.0,1,0.7223091493041258,0.0,0.0,0.14568063905130527,0.5472671020969405,0.70548157324249,0.2778297474275023,0.10175317978686833,0.13084546299163827,0.09494855004677269 +1,2020.0,1,0.7217721937510332,0.07681940700808626,0.3997754070746771,0.14572656637460737,0.4966818023052742,0.7472339099267571,0.3348751156336725,0.15263709395738737,0.09085242325074022,0.05735430157261795 +1,2021.0,1,0.7530417625780993,0.023785594639865997,0.39060773480662986,0.10662610983229201,0.5171196611366043,0.7885483118095534,0.3759654702407996,0.13907518531591953,0.08588766142834915,0.057928214447978195 +1,2022.0,1,0.7617886178861789,0.02887249736564805,0.29992576095025986,0.10382113821138211,0.5124169289961525,0.7919741697416974,0.3965007952738014,0.15389996502273523,0.08825338253382534,0.05998636673483299 +2,2019.0,1,0.7212750185322461,0.0,0.0,0.14611646487109795,0.5475781518378564,0.7039504260263362,0.2778558052434457,0.1016832703538303,0.13121611154144075,0.09363295880149813 +2,2020.0,1,0.7183774834437087,0.07982909826849562,0.4,0.14908940397350992,0.4940517844646606,0.7463269771803689,0.33964879852125696,0.14485654303708886,0.08690215692403876,0.05822550831792976 +2,2021.0,1,0.7551255660765748,0.020894181082902717,0.3797740720817644,0.11082750102923014,0.5301800211789622,0.7861262665627435,0.3736937755565652,0.14401694316978467,0.08448947778643803,0.05929123125851885 +2,2022.0,1,0.7635278731404284,0.027689706193193827,0.3020908435472242,0.1015203531142717,0.5110255512775639,0.7904052165812762,0.3994096276112625,0.15960798039901994,0.08927185219686384,0.06085376930063579 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv b/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv index c18d7d9ad..9dec122e7 100644 --- a/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv +++ b/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv @@ -1,9 +1,9 @@ run,time,id_WealthIncomeStatistics,edi_p50,sIndex_p50,statInvestLoss18to29Avg,statInvestLoss30to54Avg,statInvestLoss55to74Avg,statYDispGrossOfLosses18to29Avg,statYDispGrossOfLosses30to54Avg,statYDispGrossOfLosses55to74Avg,statYHhDispEquivNatGini,statYInvest18to29Avg,statYInvest30to54Avg,statYInvest55to74Avg,statYLabWeeklyPerWorker18to29Avg,statYLabWeeklyPerWorker30to54Avg,statYLabWeeklyPerWorker55to74Avg,statYMktNatGini,statYPens18to29Avg,statYPens30to54Avg,statYPens55to74Avg,wealth18to29Avg,wealth30to54Avg,wealth55to74Avg,yHhDispEquivP50,yHhQuintilesC5P20,yHhQuintilesC5P40,yHhQuintilesC5P60,yHhQuintilesC5P80,yLabP20,yLabP40,yLabP60,yLabP80 -1,2019.0,1,15256.953965109053,0.0,0.0,0.0,0.0,1065.2273871330394,1640.3078493710213,1515.844915690792,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15456.781759590931,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2020.0,1,16119.066872374478,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16129.72630833212,5.997389884919279,7.394922857422421,8.078973936071074,8.649142774188165,612.853998418908,1475.812630658663,2413.2991570066556,4026.9686662800973 -1,2021.0,1,16337.381934465468,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16341.40638345253,6.19575206913986,7.479898249188221,8.137283526961198,8.667823335150644,761.7160762448344,1552.2277698172436,2506.1965007862987,4205.060950837364 -1,2022.0,1,16735.686442500453,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16735.686442500453,6.30062263955924,7.504318586574002,8.158116700463072,8.705904729945416,771.8870426726536,1587.2975498739725,2573.930114975904,4278.7424505628105 -2,2019.0,1,15256.926298340906,0.0,0.0,0.0,0.0,1065.9152301814306,1641.3573685478896,1518.4882118397204,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15450.417507924612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2020.0,1,16554.655397121354,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16576.06298009438,5.8284126015846285,7.4169537948386495,8.167204065415012,8.778919329603015,636.091382752494,1641.6535944202692,2759.059708827611,4755.0859162751185 -2,2021.0,1,16996.704858073164,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17004.73744579676,6.162783794831017,7.522395468942314,8.239455842426766,8.813859000686413,816.5079741103967,1806.1840129592013,2956.7425837871924,5024.540314408093 -2,2022.0,1,17181.42643997675,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17182.898056438837,6.256537694204756,7.542778208913781,8.2458452074943,8.8430740407387,870.165648435097,1845.0648975953288,3031.602987561176,5072.080778186041 +1,2019.0,1,15462.037199999999,0.0,0.0,0.0,0.0,1031.2494710491426,1657.7406238267768,1562.9547541500126,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15751.617600000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,16262.495660525805,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16283.058028118841,5.977584300385669,7.396355354574935,8.108897415752347,8.665867672167579,624.6825800939089,1486.1130942772668,2471.8220406055743,4151.642488756834 +1,2021.0,1,16364.101131236677,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16379.967347473626,6.177813108214614,7.45310922629252,8.1410107648745,8.694185148382058,762.3502620718175,1572.2382052866676,2544.74016172959,4210.789651944029 +1,2022.0,1,16678.95857695898,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16679.467668613863,6.268615570294203,7.504785946786127,8.16541164625361,8.707906611672232,759.7176689744649,1590.5858294412774,2573.544415714072,4269.280704865495 +2,2019.0,1,15471.2418,0.0,0.0,0.0,0.0,1031.0741948715065,1656.383215316451,1567.405011984656,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15755.1816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,16915.319193668918,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16941.95449495689,5.913483264109271,7.4432276502538866,8.209969239951125,8.793580531823213,655.1606771183261,1695.724672045708,2872.7218327604787,4823.908522203283 +2,2021.0,1,17143.689727643847,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17144.59786664643,6.200487790558318,7.5221100308260915,8.249982108239418,8.81767529803498,817.8211845767195,1819.8519291966963,2979.2435430051496,4927.364252821702 +2,2022.0,1,17213.779257599344,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17213.779257599344,6.298369699763875,7.533738907132372,8.256738801983554,8.849786460591709,849.0814770119758,1856.641966032503,3018.7928994020353,4957.024082264723 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv b/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv index 098e97ae5..78b7af26f 100644 --- a/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv +++ b/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv @@ -1,25 +1,25 @@ run,time,id_WellbeingByGender,demLifeSatScore0to10Avg,demLifeSatScore0to10P10,demLifeSatScore0to10P25,demLifeSatScore0to10P50,demLifeSatScore0to10P75,demLifeSatScore0to10P90,demSex,healthLifeYearQualAdj,healthLifeYearWbAdj,healthMentalMcsAvg,healthMentalMcsP10,healthMentalMcsP25,healthMentalMcsP50,healthMentalMcsP75,healthMentalMcsP90,healthNObsSubGroup,healthPhysicalPcsAvg,healthPhysicalPcsP10,healthPhysicalPcsP25,healthPhysicalPcsP50,healthPhysicalPcsP75,healthPhysicalPcsP90,healthWbScore0to36Avg,healthWbScore0to36P10,healthWbScore0to36P25,healthWbScore0to36P50,healthWbScore0to36P75,healthWbScore0to36P90 -1,2019.0,1,6.798653101737303,3.33,5.0,8.0,8.33,8.33,Total,8313.63015908381,68496.43000000333,47.53391960297742,33.416,42.19,49.52,54.79,57.73,10075,51.020747394541296,36.17,47.59,54.51,57.49,59.64,11.50302729528536,6.0,8.0,10.0,13.0,19.0 -1,2019.0,2,6.82559311740912,3.33,5.0,8.0,8.33,8.33,Male,4178.113558218262,33718.430000001055,48.500955465587225,35.652,43.66,50.86,55.197500000000005,58.15,4940,51.79769838056671,39.08,49.0,54.77,57.49,59.31,10.857489878542511,6.0,8.0,10.0,12.0,17.0 -1,2019.0,3,6.77273612463507,3.33,5.0,8.0,8.33,8.33,Female,4135.516600865757,34778.000000001084,46.60360662122688,31.608,40.8,48.87,54.2,57.33,5135,50.27330087633859,34.18,45.74,54.03,57.49,59.89,12.124050632911393,6.0,8.0,11.0,14.0,21.0 -1,2020.0,1,6.614343173648092,3.7673938267618112,5.224833801024809,6.731434448324317,8.160719575058591,9.457309339437193,Total,8118.8729488302715,66639.50747450453,45.90143204066371,32.7683057555588,39.425043675855456,46.325525098761275,52.8810209880504,58.774128333292104,10075,51.31077132226472,37.47326358301152,45.45261644458717,52.34610639983128,58.467545749244444,63.46030752688753,12.65939977419208,5.735307131508612,8.791386996005345,12.31887635317693,16.184984736403532,19.99149237019376 -1,2020.0,2,6.625101701321662,3.8056206106042305,5.292611907139637,6.745633917313371,8.136619038905035,9.44359110091957,Male,4087.799061181768,32741.252607931652,47.15320366382042,34.71945249590269,40.92282886558376,47.458416987304986,53.81040353243567,59.60973562473427,4942,51.9843399038461,39.07229618863303,46.133042903756866,52.75770773128015,58.7913040917291,63.83540475615289,11.927578008118777,5.278346567220785,8.213741343245175,11.646232224856133,15.334865087314665,18.973071607253818 -1,2020.0,3,6.603984973031977,3.747831379897769,5.148729925566929,6.715307692232705,8.192587350912472,9.470102221514226,Female,4031.0738876484943,33898.25486657314,44.69623910054222,31.33747291704018,38.149980415415335,45.13701543706767,51.82911509049414,57.61668912314837,5133,50.66226636801291,35.88844421434575,44.56819620732443,51.91266522854012,58.110819531507815,63.08207428883149,13.363990299797626,6.194953958833854,9.443237354809021,12.988032507306416,16.88314569629756,20.97037703449789 -1,2021.0,1,6.519741366178884,3.737309510888481,5.102799138442432,6.631579490392801,8.043622307597126,9.32550929554482,Total,8088.540690025105,65966.74314299795,45.50675633450632,32.22443221623415,38.682473313396514,45.68561460226394,52.627663848149766,58.57996189323169,10118,51.2517289093541,37.50333414614319,44.654192699288835,51.8164214939361,58.543925947296984,64.25163671542873,12.984405142943267,5.908722358257907,9.118038911240667,12.870246031355961,16.68215825109998,20.126796068411167 -1,2021.0,2,6.565373951874154,3.809407844046896,5.139494537311274,6.64616903355617,8.128766577103217,9.373735586110659,Male,4053.835621136736,32511.73180968081,46.789077544132624,33.83225371106578,40.140704160485235,46.90815491644721,53.626965613155576,59.63839297964015,4952,51.756420688613936,38.665207191879745,45.34180765715038,52.210383986885276,58.623259096721426,64.321333433627,12.385162176706212,5.277503646166561,8.664960759322,12.245478446734413,15.985013373389805,19.55910942782332 -1,2021.0,3,6.475999096654474,3.6841427108210727,5.054969921719168,6.609139710291585,7.985569708096013,9.265595472585433,Female,4034.705068888363,33455.01133331701,44.27755489624316,30.854326279849186,37.038202579908514,44.36947931979076,51.536187989066995,57.63565809677335,5166,50.7679438356229,36.2510986192866,43.87476702379648,51.43654865169447,58.48094251164159,64.13981748799053,13.558824649100059,6.52767468226942,9.604222036805384,13.443469240268568,17.279032199659547,20.61065262084467 -1,2022.0,1,6.407112329202824,3.5591975411651884,5.030376672562341,6.478123488598226,7.9452285436878425,9.29016739449783,Total,8041.137436968183,65371.76709485641,45.27728755709288,32.012073148338956,38.423118021877634,45.29268076626191,52.284470263887755,58.35506141392193,10203,50.629269753071135,36.64122268703434,43.81767394578006,50.98525302019895,57.91649921454609,64.14946879037824,12.965536931198697,5.924038291223649,9.200912284990988,12.858730694539283,16.56299597885553,20.097069644402936 -1,2022.0,2,6.434347202394327,3.5821301440153905,5.046403890897049,6.485968053842665,7.990174933169709,9.29766056416159,Male,4030.776041918261,32088.08949834051,46.45839314353888,33.20188110828096,39.596487784344525,46.52893479768995,53.24605533276998,59.620658042728564,4987,51.316682842176455,37.89075099955374,44.65027906202246,51.553139488707565,58.29926743670151,64.54394546262073,12.396618700657829,5.5077083388076025,8.69693278606522,12.355674568251073,15.95294716507067,19.552685483540948 -1,2022.0,3,6.381073158841259,3.53079825844876,4.99843325209791,6.471587818274499,7.903183582220158,9.275574506047617,Female,4010.361395049879,33283.677596516005,44.14803649121762,30.715406591697242,37.36146565294054,44.21677548585288,51.13191013878331,57.0781316836152,5216,49.972036418068896,35.42498288459488,43.04807965661561,50.3941174136599,57.50228628337669,63.77732264493124,13.509477731756046,6.391327099736214,9.717697445684108,13.433192476547895,17.107696808824677,20.647364150504 -2,2019.0,1,6.799095596985654,3.33,5.0,8.0,8.33,8.33,Total,8323.349559890836,68562.08000000333,47.54007040856779,33.425,42.19,49.52,54.79,57.73,10084,51.027703292344626,36.18,47.605000000000004,54.51,57.49,59.64,11.495934153113843,6.0,8.0,10.0,13.0,19.0 -2,2019.0,2,6.828700485044678,3.33,5.0,8.0,8.33,8.33,Male,4185.2461878088,33788.410000001066,48.517956750202266,35.67,43.66,50.864999999999995,55.197500000000005,58.15,4948,51.791240905416245,39.079,49.0,54.77,57.49,59.31,10.851657235246565,6.0,8.0,10.0,12.0,17.0 -2,2019.0,3,6.770574376947251,3.33,5.0,8.0,8.33,8.33,Female,4138.103372082248,34773.67000000108,46.59797897196263,31.616000000000003,40.7925,48.835,54.2,57.33,5136,50.29211448598103,34.271,45.74,54.03,57.49,59.89,12.116627725856699,6.0,8.0,11.0,14.0,21.0 -2,2020.0,1,6.65122700145158,3.7955881217219716,5.250164636974346,6.767090697025257,8.220538826136679,9.500962811094164,Total,8160.6078687310555,67137.48535265225,45.993638454932885,32.826296034241466,39.45566162365272,46.34986257787925,53.02159773692086,58.843308091661335,10094,51.43715584019228,37.66293765015169,45.518886157595276,52.43960804129222,58.54615560852545,63.56882736852816,12.891066294769036,5.940577195894105,9.038272919185578,12.561827009224425,16.390034874283785,20.20758879855676 -2,2020.0,2,6.703026483445446,3.885758261174738,5.352144882653003,6.818788849638501,8.230374862646281,9.522191864671498,Male,4096.870496453217,33206.79319898874,47.225918185082556,34.720744972476545,41.05018018546298,47.55275963071286,53.86777278851161,59.69471885227874,4954,51.92226648872963,38.98883079344088,46.07926746199765,52.69395931517934,58.73459085192349,63.79051948863981,12.095738073305544,5.457704255587799,8.410077902091395,11.852767981968196,15.410900273154407,19.11259400690757 -2,2020.0,3,6.601301975420919,3.7528649033424504,5.1559931541522355,6.713516890327143,8.205193866198494,9.479641277609417,Female,4063.7373722778198,33930.69215366352,44.80595094848168,31.320752635587716,38.26933496922705,45.25828018021316,51.94214356687005,57.75426666445904,5140,50.969599779325264,36.27678628259033,44.922538793892215,52.16487628054035,58.34885463595633,63.32830361454692,13.657614156467512,6.5184101224653626,9.77944652966821,13.30301328540168,17.169558911253468,21.191422634777084 -2,2021.0,1,6.540441269595999,3.7638551614974154,5.119551172349292,6.637130978401336,8.074373928138296,9.38218473079134,Total,8147.576144508289,66424.72153401696,45.68488191492299,32.2928235060045,38.78892211799871,45.97401326974234,52.725169971469626,58.79094219217554,10156,51.37002848672754,37.669173976206615,44.804170878064355,51.906780319541895,58.62802331832169,64.29606117678014,13.15143261927154,6.076766364364619,9.304461504568724,12.98937361546246,16.835862859048955,20.341476161800323 -2,2021.0,2,6.657982440163124,3.932732368310472,5.245397479312301,6.738262367999283,8.189307850836435,9.493448507729003,Male,4066.3465458789433,33090.17272761073,46.92756287525745,33.976718111832035,40.237718008282684,47.197472167740784,53.758557716921885,59.81489111564177,4970,51.66492812717998,38.63015086123637,45.25597571107296,52.10887236368583,58.5425390187319,64.2436725542581,12.340082509028553,5.234990057659304,8.658908981944451,12.150955917136951,15.966568889412713,19.442893422472697 -2,2021.0,3,6.427795759044844,3.6193393428580514,4.998465077994077,6.535010860012584,7.947380269132849,9.252246385292716,Female,4081.229598629351,33334.54880640656,44.493959359415804,31.111179392096137,37.36551852148261,44.583181355440516,51.73400142243391,57.7741693478701,5186,51.08741159257954,36.668670578474966,44.33755417203841,51.73993156752771,58.670847502384305,64.38659061109824,13.928989512427723,7.000798517344519,9.987152150031811,13.813497482066545,17.6853044068614,21.036455471052836 -2,2022.0,1,6.429073637513578,3.5758476593462825,5.048962810128845,6.502306585610675,7.972860449597395,9.34202170715996,Total,8043.991488214346,65409.39518806314,45.3692186199609,32.05984999432958,38.50195355192413,45.41616771154332,52.35795129543123,58.65361383317145,10174,50.80244586481243,36.91613693754365,43.890723865425564,51.10404726687473,58.092794390935104,64.38634465947852,13.08104573137648,5.933651626927508,9.312438519835505,12.977503796511595,16.761993068327023,20.29352356804367 -2,2022.0,2,6.512082132976425,3.693297925447439,5.120479408186389,6.577473229962351,8.075315043790145,9.411015005772592,Male,4017.339535351904,32404.12069369069,46.42456592537975,32.984330253186656,39.49255831616798,46.46245559480755,53.36568897670705,59.782221879876104,4976,51.33494517920343,37.786445720246306,44.64490279410455,51.63989404620108,58.35499298474771,64.58267996083967,12.342621864099376,5.374290930563125,8.660913948184046,12.228374094858403,15.886592372959678,19.569598979805694 -2,2022.0,3,6.349610329813866,3.5199231492025107,4.982819347394621,6.423055941421658,7.875672817051153,9.245163905623617,Female,4026.6519528624503,33005.274494372476,44.358943862022514,30.855087275136043,37.54781369630366,44.37561425736084,51.358853247441786,57.56426693353996,5198,50.29268892206303,35.8938971224098,43.234572411516325,50.58591296992219,57.87742198826835,64.19331047813301,13.78793245003192,6.568443748570743,9.987505589272736,13.77925565148972,17.477246927078873,20.911326391415326 +1,2019.0,1,6.756175393447495,3.33,5.0,8.0,8.33,8.33,Total,8346.680086830402,68257.64000000327,47.14089280411759,32.09,41.3,49.13,54.79,57.92,10103,51.36303870137582,37.15,48.0,54.63,57.49,60.05,11.751855884390778,6.0,8.0,11.0,13.0,20.0 +1,2019.0,2,6.725988289925295,3.33,5.0,7.0,8.33,8.33,Male,4171.563445653993,33313.82000000077,48.062239047042205,33.472,42.86,50.33,55.565,58.22400000000002,4953,51.87814052089643,38.506,49.0,54.8,57.49,59.89,11.252170401776736,6.0,8.0,10.0,13.0,19.0 +1,2019.0,3,6.785207766990293,3.33,5.0,8.165,8.33,8.33,Female,4175.116641176408,34943.82000000122,46.25479029126213,30.94,40.47,48.28,54.2,57.33,5150,50.867640776699034,35.54,46.974999999999994,54.38,57.61,60.18,12.232427184466019,6.0,8.0,11.0,14.0,21.0 +1,2020.0,1,6.6135548926036725,3.7408615300142953,5.20746235137531,6.738993421026553,8.19460417082176,9.47118023958373,Total,8144.099203698618,66691.08753701567,45.83006855548575,32.15797404439278,39.10160160724462,46.34987763560427,53.077370491018534,58.85051827609748,10084,51.52147553280504,38.38323782231299,45.758100400979565,52.49343513495421,58.457079044134844,63.46943524623862,12.731139606848766,5.760445572589244,8.887756045809182,12.422862514541553,16.23253725993914,20.063649757519542 +1,2020.0,2,6.597821833914836,3.7243142197695094,5.219733407588199,6.710947327673868,8.159905302438416,9.419591428883331,Male,4074.7110498150046,32593.239859539284,47.082819474520456,33.61465769293,40.654655231300204,47.613577016304575,54.34524748024336,59.504460877530455,4940,51.999533090404725,39.348954803193585,46.46584433464587,52.90572421005392,58.58979925876683,63.74100888778429,12.07330702290265,5.247096392427416,8.255378633450018,11.747879026541714,15.560527724525501,19.2221175576465 +1,2020.0,3,6.62866401195104,3.7555183474700207,5.184500360914294,6.754586690026169,8.237761945366604,9.517381713117345,Female,4069.3881538836135,34097.8476774762,44.6269990492588,31.06527837907814,37.770936356271314,45.06789894041008,51.710708535415804,57.94444127196678,5144,51.06237671193754,37.2597016179,44.97196493352142,52.02197449733886,58.28673262460657,63.25968932751248,13.362883962349118,6.3815716786190455,9.49138146082011,13.037325088403001,16.884158806874346,20.752284715280204 +1,2021.0,1,6.551045326822757,3.7370575171076945,5.146432616511683,6.661141704711037,8.07105391283681,9.367707215848778,Total,8142.341724326387,66434.15065930951,45.517491946476575,32.001385190172556,38.66689415554784,45.62800616261879,52.639420346566524,58.769774995290156,10141,51.50014556229936,37.95381252047378,44.68896451196224,51.97301400258788,58.95074796704476,64.37442661527727,13.052326290418002,6.146663617192843,9.230692501111776,12.887096233050846,16.644904568016972,20.154805077987373 +1,2021.0,2,6.533671431940558,3.7442550100646295,5.109716436454889,6.6365613343267205,8.066447579655328,9.290895840053771,Male,4076.0246777116204,32478.880688176614,46.79741414915698,33.49025498563218,40.08846867350861,46.9071211795649,53.79917750384438,59.87242470445621,4971,51.91819486015358,38.668810886592716,45.36918724008264,52.419869892927146,59.12502473187696,64.37818412833347,12.516554709536514,5.605657177611228,8.743460608435715,12.341655677381342,16.160599005134294,19.56695274646869 +1,2021.0,3,6.567750477975447,3.7298715059013348,5.167336702369599,6.682241998036636,8.075213892868222,9.449217314146034,Female,4066.3170466147662,33955.26997113304,44.28683560807728,31.01434587431847,37.32871879196249,44.32978584964574,51.30761554111863,57.532470636125375,5170,51.09818752368557,37.17096000793924,44.117614933793675,51.57224673888308,58.71946972220316,64.34904918292412,13.567475328824553,6.7220897738998096,9.737382102614687,13.47139059141549,17.17640260510093,20.733839537503474 +1,2022.0,1,6.466753600079206,3.7116359178514307,5.032600006368673,6.561144216600892,7.996557722044543,9.288518605506537,Total,8119.762071219679,66361.82544401288,45.32125333130359,32.056880853145024,38.388647439610324,45.505559350960596,52.26663439902998,58.34852073190471,10262,50.80905304477684,36.87910744410754,44.00543379425421,51.158015543685956,58.06553393236512,64.21083196726823,12.950071626029683,5.901332799443898,9.085003940456655,12.885273643713532,16.69812370884248,19.976072539963884 +1,2022.0,2,6.462579799710827,3.725889337500369,5.018167890813484,6.544333944049834,7.9616586424561095,9.294150807957232,Male,4054.193620034069,32416.30027534949,46.46964284620754,33.182668954894545,39.78225069500215,46.70835022131587,53.354580443256864,59.2468358824234,5016,51.32421192610889,38.11274208376965,44.63496331981919,51.64483409105593,58.44791274501242,64.3770063203758,12.43488410304338,5.452391232932519,8.660333750067046,12.349521479312997,16.160748603171516,19.39101776027707 +1,2022.0,3,6.470744408818775,3.698532349298335,5.041958437375135,6.582662836151028,8.027705617155554,9.273152362447458,Female,4065.56845118561,33945.52516866326,44.22321257515448,31.063654307707075,37.31117336301573,44.40775355662339,50.96358638793197,57.34679394721924,5246,50.31648023715931,36.08172739133687,43.334995900401076,50.809124864939676,57.76540604363788,64.0834565394696,13.44267181956748,6.317004432788039,9.579013432704684,13.433880873183995,17.210704812534484,20.488947907038494 +2,2019.0,1,6.755340200059429,3.33,5.0,8.0,8.33,8.33,Total,8340.271508342477,68208.67000000326,47.12877587402199,32.08,41.3,49.11,54.79,57.92,10097,51.36335446172131,37.144,48.0,54.69,57.54,60.08,11.75408537189264,6.0,8.0,11.0,13.0,20.0 +2,2019.0,2,6.724623612512618,3.33,5.0,7.0,8.33,8.33,Male,4172.040611994369,33320.51000000076,48.037731584258324,33.358,42.79,50.27,55.56,58.21600000000002,4955,51.882038345105954,38.482,49.0,54.8,57.49,59.89,11.261553985872848,6.0,8.0,10.0,13.0,19.0 +2,2019.0,3,6.784939712174252,3.33,5.0,8.0,8.33,8.33,Female,4168.230896348108,34888.16000000122,46.25287631271879,30.94,40.46,48.28,54.2,57.33,5142,50.8635336444963,35.54,46.8975,54.465,57.61,60.18,12.228704784130692,6.0,8.0,11.0,14.0,21.0 +2,2020.0,1,6.649898366619695,3.8061648193325652,5.254168179471878,6.7840663746888445,8.225344652147854,9.512923974833987,Total,8141.119471324132,66937.87695839381,45.81617701687895,32.16849163007635,39.005949641215324,46.31728871496223,53.0774887552752,58.90025503279414,10066,51.618446608437154,38.524612908368226,45.79221431310007,52.569425459701876,58.530996891151446,63.6150521144817,12.984442478320803,5.957053954618807,9.159817768710198,12.655671696274819,16.477046345778728,20.3531294762337 +2,2020.0,2,6.654403254506229,3.8399881559104845,5.285200517207464,6.781246684087717,8.212586648017398,9.496731734396674,Male,4058.1441001356507,32839.48006098828,47.00743274410231,33.50342815318687,40.47584197759136,47.488851478772126,54.252562580141024,59.53435926841552,4935,51.859025442972104,39.20799724156667,46.21813961483735,52.83587690623675,58.43235127222917,63.612310917523,12.274545602841497,5.389134479982179,8.503614329632317,11.940893351152786,15.775884127979133,19.422301201074138 +2,2020.0,3,6.645565561762934,3.769876931349322,5.227743651972633,6.788685327528539,8.239668727451823,9.524643867679716,Female,4082.975371188482,34098.39689740564,44.67042628332852,31.147620953091455,37.79473037468961,45.05146366749269,51.728102609858254,58.01735599285098,5131,51.387057688454696,37.5939494562262,45.29570091501165,52.32383743509163,58.62296101255498,63.619500887571796,13.667221874245646,6.628917920999526,9.821335680010128,13.328775960913157,17.188030889714145,21.034090033287217 +2,2021.0,1,6.581860788612988,3.7845361647226206,5.164943066777251,6.689310073375769,8.114591298132694,9.413855310638107,Total,8134.375230566831,66641.3404847066,45.63288031928133,32.110810135644016,38.728429995313306,45.76371274819867,52.71096091943345,58.906778261713725,10125,51.51298509156969,37.941861650691244,44.74895881574689,52.09423641081538,58.907584064363974,64.47684278446538,13.239355660141612,6.206795711017258,9.373248185566037,13.077119624496568,16.855010933215503,20.377494138957275 +2,2021.0,2,6.638664489102274,3.8721207553830674,5.2312592361956085,6.751174164731447,8.198209466451601,9.42762568427134,Male,4051.5968827412294,32914.49853696898,46.81770898955625,33.393570974644376,40.01432574408417,46.96152201822847,53.866237936585996,59.97468464017027,4958,51.739368413780205,38.44804202025027,45.16308695597863,52.29490108445856,59.0073551263508,64.40789717341252,12.479716714831252,5.497386663911917,8.71845807740002,12.299833138321365,16.16301423983729,19.54193862742913 +2,2021.0,3,6.527354741191683,3.691226939490055,5.117330762109283,6.649982178225147,8.027332968258547,9.397180006296296,Female,4082.778347825602,33726.84194773747,44.495976787788564,31.089627166618417,37.52254466653446,44.64431863732558,51.65314487834755,57.757840244438725,5167,51.29575874910409,37.525820544381666,44.3924904295155,51.829498856331604,58.79391389620286,64.56756756120136,13.968267967253816,7.060817853556014,10.085832637142712,13.85291234538754,17.549570625099754,21.152705527450408 +2,2022.0,1,6.4812982776568315,3.7024221997558926,5.030710294510082,6.564965556089741,8.012393997183715,9.361961132020571,Total,8088.91482490903,66102.761133822,45.42827864318316,32.193649892119694,38.48741693414672,45.62576408156959,52.34867709869488,58.54669884686165,10199,50.93115829932625,37.1248274144288,44.02648574034228,51.33933417626778,58.2146120716324,64.34329708702212,13.05992362908522,5.891322908454027,9.18971992693785,13.026146210787516,16.828218337545557,20.1726413958251 +2,2022.0,2,6.532323378197319,3.7413843826703865,5.076189945243078,6.60773985575197,8.052501567416687,9.444537397351542,Male,4026.1590177309613,32609.358303961042,46.39422690530224,33.05884403849508,39.7574148324242,46.701545029935566,53.39890116300504,59.262074642822114,4992,51.26901243823052,38.13654593292096,44.549273412966315,51.64829015681717,58.29509794984891,64.34097980241319,12.368524487235973,5.368965602525099,8.62414894896972,12.305587830472755,16.079428382953907,19.325908809813022 +2,2022.0,3,6.4323800326216665,3.6429332939631363,4.986290665896133,6.512122619213386,7.9710896754653024,9.265804428149165,Female,4062.7558071780695,33493.402829861036,44.50221493577037,31.23621209713921,37.5900450565491,44.67839708084409,51.21820961917776,57.69566538175109,5207,50.60725435052461,36.305938111961176,43.54992095305396,51.10371551328898,58.03806680054555,64.35343338737796,13.722774506003109,6.427332478714938,9.763468454428022,13.730108069794912,17.534572339328577,20.928919002629122 \ No newline at end of file